From fc63e9010cf2d0507877db402735df8c1f75acff Mon Sep 17 00:00:00 2001 From: buenosairesam Date: Wed, 31 Dec 2025 08:21:07 -0300 Subject: [PATCH] updated deploy scripts and locations --- CLAUDE.md | 43 +- artery/room/README.md | 79 + artery/room/__init__.py | 77 + artery/room/ctrl/build.sh | 44 + artery/room/ctrl/logs.sh | 43 + artery/room/ctrl/start.sh | 52 + artery/room/ctrl/status.sh | 22 + artery/room/ctrl/stop.sh | 38 + build.py | 192 +- cfg/amar/.env | 104 + cfg/amar/Dockerfile.backend | 71 + cfg/amar/Dockerfile.frontend | 80 + cfg/amar/ctrl/logs.sh | 33 + cfg/amar/ctrl/start.sh | 40 + cfg/amar/ctrl/status.sh | 7 + cfg/amar/ctrl/stop.sh | 25 + cfg/amar/ctrl/xtras/reload-db.sh | 117 + cfg/amar/dumps/dev.sql | 159267 +++++++++++++++ cfg/amar/soleprint/.env | 35 + cfg/amar/soleprint/docker-compose.yml | 34 + mainroom/soleprint/.env | 3 +- mainroom/soleprint/ctrl/README.md | 157 - mainroom/soleprint/ctrl/local/commit.sh | 34 - mainroom/soleprint/ctrl/local/deploy.sh | 24 - mainroom/soleprint/ctrl/local/init.sh | 28 - mainroom/soleprint/ctrl/local/push.sh | 66 - mainroom/soleprint/ctrl/local/status.sh | 33 - .../soleprint/ctrl/server/install-deps.sh | 55 - mainroom/soleprint/ctrl/server/restart.sh | 24 - mainroom/soleprint/ctrl/server/setup-cert.sh | 24 - mainroom/soleprint/ctrl/server/setup-nginx.sh | 54 - .../soleprint/ctrl/server/setup-service.sh | 54 - mainroom/soleprint/ctrl/sync-tests.sh | 82 - 33 files changed, 160283 insertions(+), 758 deletions(-) create mode 100644 artery/room/README.md create mode 100644 artery/room/__init__.py create mode 100755 artery/room/ctrl/build.sh create mode 100755 artery/room/ctrl/logs.sh create mode 100755 artery/room/ctrl/start.sh create mode 100755 artery/room/ctrl/status.sh create mode 100755 artery/room/ctrl/stop.sh create mode 100644 cfg/amar/.env create mode 100644 cfg/amar/Dockerfile.backend create mode 100644 cfg/amar/Dockerfile.frontend create mode 100755 cfg/amar/ctrl/logs.sh create mode 100755 cfg/amar/ctrl/start.sh create mode 100755 cfg/amar/ctrl/status.sh create mode 100755 cfg/amar/ctrl/stop.sh create mode 100755 cfg/amar/ctrl/xtras/reload-db.sh create mode 100644 cfg/amar/dumps/dev.sql create mode 100644 cfg/amar/soleprint/.env create mode 100644 cfg/amar/soleprint/docker-compose.yml delete mode 100644 mainroom/soleprint/ctrl/README.md delete mode 100755 mainroom/soleprint/ctrl/local/commit.sh delete mode 100755 mainroom/soleprint/ctrl/local/deploy.sh delete mode 100755 mainroom/soleprint/ctrl/local/init.sh delete mode 100755 mainroom/soleprint/ctrl/local/push.sh delete mode 100755 mainroom/soleprint/ctrl/local/status.sh delete mode 100755 mainroom/soleprint/ctrl/server/install-deps.sh delete mode 100755 mainroom/soleprint/ctrl/server/restart.sh delete mode 100755 mainroom/soleprint/ctrl/server/setup-cert.sh delete mode 100755 mainroom/soleprint/ctrl/server/setup-nginx.sh delete mode 100755 mainroom/soleprint/ctrl/server/setup-service.sh delete mode 100755 mainroom/soleprint/ctrl/sync-tests.sh diff --git a/CLAUDE.md b/CLAUDE.md index 3b30dbf..f1f0a28 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -27,7 +27,7 @@ spr/ ├── artery/ # VERSIONED - Vital connections │ ├── veins/ # Single-responsibility connectors │ ├── pulses/ # Composed: Vein + Room + Depot -│ ├── rooms/ # Environment configs +│ ├── room/ # Base room code and ctrl templates │ └── depots/ # Data storage │ ├── atlas/ # VERSIONED - Documentation system @@ -54,18 +54,19 @@ spr/ │ ├── requirements.txt # Dependencies │ └── dataloader/ # Data loading module │ -├── gen/ # RUNNABLE instance (gitignored, symlinks) -│ ├── main.py # → ../soleprint/main.py -│ ├── run.py # → ../soleprint/run.py -│ ├── index.html # → ../soleprint/index.html -│ ├── requirements.txt # → ../soleprint/requirements.txt -│ ├── dataloader/ # → ../soleprint/dataloader/ -│ ├── artery/ # → ../artery/ -│ ├── atlas/ # → ../atlas/ -│ ├── station/ # → ../station/ -│ ├── data/ # → ../data/ -│ ├── cfg/ # Copied config -│ └── models/ # GENERATED (one-time per client) +├── gen/ # RUNNABLE instance (gitignored, copies) +│ ├── main.py +│ ├── run.py +│ ├── index.html +│ ├── requirements.txt +│ ├── Dockerfile +│ ├── dataloader/ +│ ├── artery/ +│ ├── atlas/ +│ ├── station/ +│ ├── data/ +│ ├── cfg/ +│ └── models/ # Generated by modelgen │ └── pydantic/ │ └── mainroom/ # Orchestration: soleprint ↔ managed room @@ -110,10 +111,8 @@ A **Room** is an environment with soleprint context, features, and conventions: ### Mainroom The **mainroom** orchestrates interaction between soleprint and managed rooms: - `sbwrapper/` - Sidebar UI overlay for any managed app (quick login, Jira info, etc.) -- `soleprint/` - Docker configs + ctrl scripts for running soleprint services - - `ctrl/local/` - Local deployment scripts (push.sh, deploy.sh) - - `ctrl/server/` - Server setup scripts -- `ctrl/` - Mainroom-level orchestration commands +- `soleprint/` - Docker configs for running soleprint services +- `ctrl/` - Mainroom-level orchestration commands (start.sh, stop.sh, etc.) Soleprint can run without a managed room (for testing veins, etc.). @@ -125,11 +124,10 @@ Soleprint can run without a managed room (for testing veins, etc.). ### soleprint/ vs gen/ - `soleprint/` = Versioned core files (main.py, run.py, dataloader, index.html) -- `gen/` = Gitignored runnable instance with symlinks to soleprint/ + systems -- `gen/models/` = Generated models (one-time per client, like an install) +- `gen/` = Gitignored runnable instance (copies, not symlinks - Docker compatible) +- `gen/models/` = Generated models -**Development:** Edit in soleprint/, artery/, atlas/, station/, data/ → run from gen/ -**Production:** Copy everything (resolve symlinks) +**Development:** Edit source → `python build.py dev` → run from gen/ ### Modelgen (Generic Tool) Lives in `station/tools/modelgen/`. It: @@ -146,8 +144,7 @@ The build script at spr root handles both development and deployment builds: ```bash # From spr/ -python build.py --help -python build.py dev # Build with symlinks (soleprint only) +python build.py dev # Build gen/ from source (copies) python build.py dev --cfg amar # Include amar room config python build.py deploy --output /path/ # Build for production python build.py models # Only regenerate models diff --git a/artery/room/README.md b/artery/room/README.md new file mode 100644 index 0000000..1c65f35 --- /dev/null +++ b/artery/room/README.md @@ -0,0 +1,79 @@ +# Room - Runtime Environment Configuration + +A **Room** defines connection details for a managed environment (hosts, ports, domains, credentials). + +## Usage + +Rooms are used in composed types: +- `Pulse = Vein + Room + Depot` (artery) +- `Desk = Cabinet + Room + Depots` (station) + +## Structure + +``` +artery/room/ +├── __init__.py # Room model (Pydantic) +├── ctrl/ # Base ctrl script templates +│ ├── start.sh # Start services +│ ├── stop.sh # Stop services +│ ├── status.sh # Show status +│ ├── logs.sh # View logs +│ └── build.sh # Build images +└── README.md +``` + +## Room Data + +Room instances are stored in `data/rooms.json`: + +```json +{ + "items": [ + { + "name": "soleprint-local", + "slug": "soleprint-local", + "title": "Soleprint Local", + "status": "dev", + "config_path": "mainroom/soleprint" + } + ] +} +``` + +## ctrl/ Templates + +The scripts in `ctrl/` are templates for room management. Copy them to your room's `ctrl/` folder and customize. + +All scripts: +- Auto-detect services (directories with `docker-compose.yml`) +- Support targeting specific services: `./start.sh myservice` +- Load `.env` from the room root + +### Usage + +```bash +# Start +./ctrl/start.sh # All services (foreground) +./ctrl/start.sh -d # Detached +./ctrl/start.sh --build # With rebuild + +# Stop +./ctrl/stop.sh # All services +./ctrl/stop.sh myservice # Specific service + +# Status +./ctrl/status.sh + +# Logs +./ctrl/logs.sh # All +./ctrl/logs.sh -f # Follow +./ctrl/logs.sh myservice # Specific service + +# Build +./ctrl/build.sh # All +./ctrl/build.sh --no-cache # Force rebuild +``` + +## CI/CD + +For production deployments, use Woodpecker CI/CD instead of manual ctrl scripts. diff --git a/artery/room/__init__.py b/artery/room/__init__.py new file mode 100644 index 0000000..8eb25aa --- /dev/null +++ b/artery/room/__init__.py @@ -0,0 +1,77 @@ +""" +Room - Runtime environment configuration. + +A Room defines connection details for a managed environment (hosts, ports, domains, credentials). +Used by Pulse (Vein + Room + Depot) and Desk (Cabinet + Room + Depots). + +Room instances are stored in data/rooms.json. +""" + +from enum import Enum +from typing import Optional +from pydantic import BaseModel, Field + + +class RoomStatus(str, Enum): + PENDING = "pending" + PLANNED = "planned" + BUILDING = "building" + DEV = "dev" + LIVE = "live" + READY = "ready" + + +class RoomConfig(BaseModel): + """Environment-specific configuration for a room.""" + + # Network + host: Optional[str] = Field(None, description="Primary host/domain") + port: Optional[int] = Field(None, description="Primary port") + + # Paths + config_path: Optional[str] = Field(None, description="Path to room config folder") + deploy_path: Optional[str] = Field(None, description="Deployment target path") + + # Docker + network_name: Optional[str] = Field(None, description="Docker network name") + deployment_name: Optional[str] = Field(None, description="Container name prefix") + + # Database (when room has DB access) + db_host: Optional[str] = None + db_port: Optional[int] = Field(None, ge=1, le=65535) + db_name: Optional[str] = None + db_user: Optional[str] = None + # Note: db_password should come from env vars, not stored in config + + +class Room(BaseModel): + """Runtime environment configuration.""" + + name: str = Field(..., description="Unique identifier") + slug: str = Field(..., description="URL-friendly identifier") + title: str = Field(..., description="Display title for UI") + status: RoomStatus = Field(RoomStatus.PENDING, description="Current status") + + # Optional extended config + config: Optional[RoomConfig] = Field(None, description="Environment configuration") + + # Legacy field for backwards compatibility + config_path: Optional[str] = Field(None, description="Path to room config folder") + + class Config: + use_enum_values = True + + +def load_rooms(data_path: str = "data/rooms.json") -> list[Room]: + """Load rooms from data file.""" + import json + from pathlib import Path + + path = Path(data_path) + if not path.exists(): + return [] + + with open(path) as f: + data = json.load(f) + + return [Room(**item) for item in data.get("items", [])] diff --git a/artery/room/ctrl/build.sh b/artery/room/ctrl/build.sh new file mode 100755 index 0000000..c580dcf --- /dev/null +++ b/artery/room/ctrl/build.sh @@ -0,0 +1,44 @@ +#!/bin/bash +# Build room Docker images +# +# Usage: +# ./build.sh # Build all +# ./build.sh # Build specific service +# ./build.sh --no-cache # Force rebuild +# +# This is a TEMPLATE. Copy to your room's ctrl/ and customize. + +set -e + +cd "$(dirname "$0")/.." + +NO_CACHE="" +TARGET="all" +SERVICE_DIRS=() + +for dir in */; do + [ -f "$dir/docker-compose.yml" ] && SERVICE_DIRS+=("${dir%/}") +done + +for arg in "$@"; do + case $arg in + --no-cache) NO_CACHE="--no-cache" ;; + *) [[ " ${SERVICE_DIRS[*]} " =~ " ${arg} " ]] && TARGET="$arg" ;; + esac +done + +build_service() { + local svc=$1 + echo "Building $svc..." + (cd "$svc" && docker compose build $NO_CACHE) +} + +if [ "$TARGET" = "all" ]; then + for svc in "${SERVICE_DIRS[@]}"; do + build_service "$svc" + done +else + build_service "$TARGET" +fi + +echo "Done." diff --git a/artery/room/ctrl/logs.sh b/artery/room/ctrl/logs.sh new file mode 100755 index 0000000..9ef79d9 --- /dev/null +++ b/artery/room/ctrl/logs.sh @@ -0,0 +1,43 @@ +#!/bin/bash +# View room service logs +# +# Usage: +# ./logs.sh # All logs +# ./logs.sh # Service compose logs +# ./logs.sh # Specific container logs +# ./logs.sh -f # Follow mode +# +# This is a TEMPLATE. Copy to your room's ctrl/ and customize. + +set -e + +cd "$(dirname "$0")/.." + +FOLLOW="" +TARGET="" +SERVICE_DIRS=() + +for dir in */; do + [ -f "$dir/docker-compose.yml" ] && SERVICE_DIRS+=("${dir%/}") +done + +for arg in "$@"; do + case $arg in + -f|--follow) FOLLOW="-f" ;; + *) TARGET="$arg" ;; + esac +done + +if [ -z "$TARGET" ]; then + # Show all logs + for svc in "${SERVICE_DIRS[@]}"; do + echo "=== $svc ===" + (cd "$svc" && docker compose logs --tail=20 $FOLLOW) || true + done +elif [[ " ${SERVICE_DIRS[*]} " =~ " ${TARGET} " ]]; then + # Service compose logs + (cd "$TARGET" && docker compose logs $FOLLOW) +else + # Specific container + docker logs $FOLLOW "$TARGET" +fi diff --git a/artery/room/ctrl/start.sh b/artery/room/ctrl/start.sh new file mode 100755 index 0000000..56d5e23 --- /dev/null +++ b/artery/room/ctrl/start.sh @@ -0,0 +1,52 @@ +#!/bin/bash +# Start room services +# +# Usage: +# ./start.sh # Start all (foreground) +# ./start.sh -d # Start all (detached) +# ./start.sh --build # Start with rebuild +# ./start.sh # Start specific service +# +# This is a TEMPLATE. Copy to your room's ctrl/ and customize. + +set -e + +cd "$(dirname "$0")/.." + +# Load environment +[ -f ".env" ] && set -a && source .env && set +a + +DETACH="" +BUILD="" +TARGET="all" +SERVICE_DIRS=() + +# Auto-detect services (dirs with docker-compose.yml) +for dir in */; do + [ -f "$dir/docker-compose.yml" ] && SERVICE_DIRS+=("${dir%/}") +done + +for arg in "$@"; do + case $arg in + -d|--detached) DETACH="-d" ;; + --build) BUILD="--build" ;; + *) [[ " ${SERVICE_DIRS[*]} " =~ " ${arg} " ]] && TARGET="$arg" ;; + esac +done + +start_service() { + local svc=$1 + echo "Starting $svc..." + (cd "$svc" && docker compose up $DETACH $BUILD) + [ -n "$DETACH" ] && echo " $svc started" +} + +if [ "$TARGET" = "all" ]; then + for svc in "${SERVICE_DIRS[@]}"; do + start_service "$svc" + done +else + start_service "$TARGET" +fi + +[ -n "$DETACH" ] && docker ps --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}" diff --git a/artery/room/ctrl/status.sh b/artery/room/ctrl/status.sh new file mode 100755 index 0000000..112215c --- /dev/null +++ b/artery/room/ctrl/status.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# Show room service status +# +# Usage: +# ./status.sh +# +# This is a TEMPLATE. Copy to your room's ctrl/ and customize. + +set -e + +cd "$(dirname "$0")/.." + +[ -f ".env" ] && source .env + +NAME="${DEPLOYMENT_NAME:-room}" + +echo "=== Docker Containers ===" +docker ps --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}" | grep -E "($NAME|NAMES)" || echo "No containers running" + +echo "" +echo "=== Networks ===" +docker network ls | grep -E "(${NETWORK_NAME:-$NAME}|NETWORK)" || echo "No matching networks" diff --git a/artery/room/ctrl/stop.sh b/artery/room/ctrl/stop.sh new file mode 100755 index 0000000..8c51eb2 --- /dev/null +++ b/artery/room/ctrl/stop.sh @@ -0,0 +1,38 @@ +#!/bin/bash +# Stop room services +# +# Usage: +# ./stop.sh # Stop all +# ./stop.sh # Stop specific service +# +# This is a TEMPLATE. Copy to your room's ctrl/ and customize. + +set -e + +cd "$(dirname "$0")/.." + +TARGET="all" +SERVICE_DIRS=() + +# Auto-detect services +for dir in */; do + [ -f "$dir/docker-compose.yml" ] && SERVICE_DIRS+=("${dir%/}") +done + +[ -n "$1" ] && [[ " ${SERVICE_DIRS[*]} " =~ " $1 " ]] && TARGET="$1" + +stop_service() { + local svc=$1 + echo "Stopping $svc..." + (cd "$svc" && docker compose down) +} + +if [ "$TARGET" = "all" ]; then + for svc in "${SERVICE_DIRS[@]}"; do + stop_service "$svc" + done +else + stop_service "$TARGET" +fi + +echo "Done." diff --git a/build.py b/build.py index 494df54..aec4b4a 100644 --- a/build.py +++ b/build.py @@ -4,31 +4,29 @@ Soleprint Build Tool Builds the soleprint instance using modelgen for model generation. -Modes: -- dev: Uses symlinks for quick development (edit source, run from gen/) -- deploy: Copies everything for production deployment (no symlinks) +Both dev and deploy modes copy files (no symlinks) for Docker compatibility. +After editing source files, re-run `python build.py dev` to update gen/. Usage: - python build.py dev - python build.py dev --cfg amar - python build.py deploy --output /path/to/deploy/ - python build.py models + python build.py dev # Build gen/ from source + python build.py dev --cfg amar # Include amar room config + python build.py deploy --output /path/ # Build for production + python build.py models # Only regenerate models Examples: - # Set up dev environment (soleprint only) + # Set up dev environment python build.py dev + cd gen && .venv/bin/python run.py - # Set up dev environment with amar room config + # With room config python build.py dev --cfg amar # Build for deployment python build.py deploy --output ../deploy/soleprint/ - - # Only regenerate models - python build.py models """ import argparse +import logging import os import shutil import subprocess @@ -38,31 +36,24 @@ from pathlib import Path # SPR root is where this script lives SPR_ROOT = Path(__file__).resolve().parent +# Configure logging +logging.basicConfig( + level=logging.INFO, + format="%(message)s", +) +log = logging.getLogger(__name__) + def ensure_dir(path: Path): """Create directory if it doesn't exist.""" path.mkdir(parents=True, exist_ok=True) -def create_symlink(source: Path, target: Path): - """Create a symlink, removing existing if present.""" - if target.exists() or target.is_symlink(): - if target.is_symlink(): - target.unlink() - elif target.is_dir(): - shutil.rmtree(target) - else: - target.unlink() - - # Make relative symlink - rel_source = os.path.relpath(source, target.parent) - target.symlink_to(rel_source) - print(f" Linked: {target.name} -> {rel_source}") - - def copy_path(source: Path, target: Path): """Copy file or directory, resolving symlinks.""" - if target.exists(): + if target.is_symlink(): + target.unlink() + elif target.exists(): if target.is_dir(): shutil.rmtree(target) else: @@ -70,10 +61,10 @@ def copy_path(source: Path, target: Path): if source.is_dir(): shutil.copytree(source, target, symlinks=False) - print(f" Copied: {target.name}/ ({count_files(target)} files)") + log.info(f" Copied: {target.name}/ ({count_files(target)} files)") else: shutil.copy2(source, target) - print(f" Copied: {target.name}") + log.info(f" Copied: {target.name}") def count_files(path: Path) -> int: @@ -90,7 +81,7 @@ def generate_models(output_dir: Path): config_path = SPR_ROOT / "cfg" / "soleprint.config.json" if not config_path.exists(): - print(f"Warning: Config not found at {config_path}") + log.warning(f"Config not found at {config_path}") return False # Soleprint-specific: models go in models/pydantic/__init__.py @@ -134,7 +125,7 @@ def copy_cfg(output_dir: Path, cfg_name: str | None): if cfg_name: room_cfg = SPR_ROOT / "cfg" / cfg_name if room_cfg.exists() and room_cfg.is_dir(): - print(f"\nCopying {cfg_name} room config...") + log.info(f"\nCopying {cfg_name} room config...") for item in room_cfg.iterdir(): if item.name == ".env.example": # Copy .env.example to output root as template @@ -145,97 +136,100 @@ def copy_cfg(output_dir: Path, cfg_name: str | None): ensure_dir(cfg_dir / cfg_name) copy_path(item, cfg_dir / cfg_name / item.name) else: - print(f"Warning: Room config '{cfg_name}' not found at {room_cfg}") + log.warning(f"Room config '{cfg_name}' not found at {room_cfg}") def build_dev(output_dir: Path, cfg_name: str | None = None): """ - Build for development using symlinks. + Build for development using copies (Docker-compatible). Structure: gen/ - ├── main.py -> ../soleprint/main.py - ├── run.py -> ../soleprint/run.py - ├── index.html -> ../soleprint/index.html - ├── requirements.txt -> ../soleprint/requirements.txt - ├── dataloader/ -> ../soleprint/dataloader/ - ├── artery/ -> ../artery/ - ├── atlas/ -> ../atlas/ - ├── station/ -> ../station/ - ├── data/ -> ../data/ - ├── cfg/ # Copied config + ├── main.py + ├── run.py + ├── index.html + ├── requirements.txt + ├── Dockerfile + ├── dataloader/ + ├── artery/ + ├── atlas/ + ├── station/ + ├── data/ + ├── cfg/ ├── .env.example # From cfg//.env.example └── models/ # Generated + + After editing source files, re-run `python build.py dev` to update gen/. """ - print(f"\n=== Building DEV environment ===") - print(f"SPR root: {SPR_ROOT}") - print(f"Output: {output_dir}") + log.info("\n=== Building DEV environment ===") + log.info(f"SPR root: {SPR_ROOT}") + log.info(f"Output: {output_dir}") if cfg_name: - print(f"Room cfg: {cfg_name}") + log.info(f"Room cfg: {cfg_name}") ensure_dir(output_dir) - # Soleprint core files (symlinks) - print("\nLinking soleprint files...") + # Soleprint core files + log.info("\nCopying soleprint files...") soleprint = SPR_ROOT / "soleprint" - create_symlink(soleprint / "main.py", output_dir / "main.py") - create_symlink(soleprint / "run.py", output_dir / "run.py") - create_symlink(soleprint / "index.html", output_dir / "index.html") - create_symlink(soleprint / "requirements.txt", output_dir / "requirements.txt") - create_symlink(soleprint / "dataloader", output_dir / "dataloader") + copy_path(soleprint / "main.py", output_dir / "main.py") + copy_path(soleprint / "run.py", output_dir / "run.py") + copy_path(soleprint / "index.html", output_dir / "index.html") + copy_path(soleprint / "requirements.txt", output_dir / "requirements.txt") + copy_path(soleprint / "dataloader", output_dir / "dataloader") if (soleprint / "Dockerfile").exists(): - create_symlink(soleprint / "Dockerfile", output_dir / "Dockerfile") + copy_path(soleprint / "Dockerfile", output_dir / "Dockerfile") - # System directories (symlinks) - print("\nLinking systems...") + # System directories + log.info("\nCopying systems...") for system in ["artery", "atlas", "station"]: source = SPR_ROOT / system if source.exists(): - create_symlink(source, output_dir / system) + copy_path(source, output_dir / system) - # Data directory (symlink) - print("\nLinking data...") - create_symlink(SPR_ROOT / "data", output_dir / "data") + # Data directory + log.info("\nCopying data...") + copy_path(SPR_ROOT / "data", output_dir / "data") - # Config (copy, not symlink - may be customized) - print("\nCopying config...") + # Config + log.info("\nCopying config...") copy_cfg(output_dir, cfg_name) - # Models (generated) - pass output_dir, modelgen adds models/pydantic - print("\nGenerating models...") + # Models (generated) + log.info("\nGenerating models...") if not generate_models(output_dir): - print(" Warning: Model generation failed, you may need to run it manually") + log.warning("Model generation failed, you may need to run it manually") - print("\n✓ Dev build complete!") - print(f"\nTo run:") - print(f" cd {output_dir}") - print(f" python3 -m venv .venv") - print(f" .venv/bin/pip install -r requirements.txt") - print(f" .venv/bin/python main.py # Multi-port (production-like)") - print(f" .venv/bin/python run.py # Single-port (bare-metal dev)") + log.info("\n✓ Dev build complete!") + log.info(f"\nTo run:") + log.info(f" cd {output_dir}") + log.info(f" python3 -m venv .venv") + log.info(f" .venv/bin/pip install -r requirements.txt") + log.info(f" .venv/bin/python run.py # Single-port bare-metal dev") + log.info(f"\nAfter editing source, rebuild with: python build.py dev") def build_deploy(output_dir: Path, cfg_name: str | None = None): """ Build for deployment by copying all files (no symlinks). """ - print(f"\n=== Building DEPLOY package ===") - print(f"SPR root: {SPR_ROOT}") - print(f"Output: {output_dir}") + log.info("\n=== Building DEPLOY package ===") + log.info(f"SPR root: {SPR_ROOT}") + log.info(f"Output: {output_dir}") if cfg_name: - print(f"Room cfg: {cfg_name}") + log.info(f"Room cfg: {cfg_name}") if output_dir.exists(): response = input(f"\nOutput directory exists. Overwrite? [y/N] ") if response.lower() != "y": - print("Aborted.") + log.info("Aborted.") return shutil.rmtree(output_dir) ensure_dir(output_dir) # Soleprint core files (copy) - print("\nCopying soleprint files...") + log.info("\nCopying soleprint files...") soleprint = SPR_ROOT / "soleprint" copy_path(soleprint / "main.py", output_dir / "main.py") copy_path(soleprint / "run.py", output_dir / "run.py") @@ -246,31 +240,31 @@ def build_deploy(output_dir: Path, cfg_name: str | None = None): copy_path(soleprint / "Dockerfile", output_dir / "Dockerfile") # System directories (copy) - print("\nCopying systems...") + log.info("\nCopying systems...") for system in ["artery", "atlas", "station"]: source = SPR_ROOT / system if source.exists(): copy_path(source, output_dir / system) # Data directory (copy) - print("\nCopying data...") + log.info("\nCopying data...") copy_path(SPR_ROOT / "data", output_dir / "data") # Config (copy) - print("\nCopying config...") + log.info("\nCopying config...") copy_cfg(output_dir, cfg_name) # Models (generate fresh) - pass output_dir, modelgen adds models/pydantic - print("\nGenerating models...") + log.info("\nGenerating models...") if not generate_models(output_dir): # Fallback: copy from gen if exists existing = SPR_ROOT / "gen" / "models" if existing.exists(): - print(" Using existing models from gen/") + log.info(" Using existing models from gen/") copy_path(existing, output_dir / "models") # Copy schema.json for reference - print("\nCopying schema...") + log.info("\nCopying schema...") copy_path(SPR_ROOT / "schema.json", output_dir / "schema.json") # Create run script @@ -289,29 +283,29 @@ echo "Starting soleprint on http://localhost:12000" .venv/bin/python main.py """) run_script.chmod(0o755) - print(" Created: start.sh") + log.info(" Created: start.sh") total_files = count_files(output_dir) - print(f"\n✓ Deploy build complete! ({total_files} files)") - print(f"\nTo run:") - print(f" cd {output_dir}") - print(f" ./start.sh") - print(f"\nOr deploy to server:") - print(f" rsync -av {output_dir}/ server:/app/soleprint/") - print(f" ssh server 'cd /app/soleprint && ./start.sh'") + log.info(f"\n✓ Deploy build complete! ({total_files} files)") + log.info(f"\nTo run:") + log.info(f" cd {output_dir}") + log.info(f" ./start.sh") + log.info(f"\nOr deploy to server:") + log.info(f" rsync -av {output_dir}/ server:/app/soleprint/") + log.info(f" ssh server 'cd /app/soleprint && ./start.sh'") def build_models(): """Only regenerate models.""" - print(f"\n=== Generating models only ===") + log.info("\n=== Generating models only ===") output_dir = SPR_ROOT / "gen" ensure_dir(output_dir) if generate_models(output_dir): - print("\n✓ Models generated!") + log.info("\n✓ Models generated!") else: - print("\nError: Model generation failed", file=sys.stderr) + log.error("Model generation failed") sys.exit(1) @@ -325,7 +319,7 @@ def main(): subparsers = parser.add_subparsers(dest="command", required=True) # dev command - dev_parser = subparsers.add_parser("dev", help="Build for development (symlinks)") + dev_parser = subparsers.add_parser("dev", help="Build for development (copies)") dev_parser.add_argument( "--output", "-o", diff --git a/cfg/amar/.env b/cfg/amar/.env new file mode 100644 index 0000000..91997da --- /dev/null +++ b/cfg/amar/.env @@ -0,0 +1,104 @@ +# ============================================================================= +# AMAR - Local Development Configuration +# ============================================================================= + +# ============================================================================= +# DEPLOYMENT +# ============================================================================= +DEPLOYMENT_NAME=amar + +# ============================================================================= +# NETWORK (shared with soleprint) +# ============================================================================= +NETWORK_NAME=soleprint_network + +# ============================================================================= +# PATHS (local code locations) +# ============================================================================= +BACKEND_PATH=/home/mariano/wdir/ama/amar_django_back +FRONTEND_PATH=/home/mariano/wdir/ama/amar_frontend +DOCKERFILE_BACKEND=/home/mariano/wdir/spr/cfg/amar/Dockerfile.backend +DOCKERFILE_FRONTEND=/home/mariano/wdir/spr/cfg/amar/Dockerfile.frontend + +# ============================================================================= +# DATABASE +# ============================================================================= +DB_DUMP=dev.sql + +# ============================================================================= +# PORTS +# ============================================================================= +BACKEND_PORT=8000 +FRONTEND_PORT=3000 + +# ============================================================================= +# BACKEND SERVER (Uvicorn) +# ============================================================================= +BACKEND_WORKERS=1 +BACKEND_RELOAD=--reload + +# Database connection +POSTGRES_DB=amarback +POSTGRES_USER=postgres +POSTGRES_PASSWORD=localdev123 + +# ============================================================================= +# DJANGO +# ============================================================================= +SECRET_KEY=local-dev-key +DEBUG=True +DJANGO_ENV=development +ALLOWED_HOSTS=* + +# ============================================================================= +# CORS +# ============================================================================= +CORS_ALLOW_ALL=true +CORS_ALLOWED_ORIGINS= + +# ============================================================================= +# GOOGLE SERVICES +# ============================================================================= +SUBJECT_CALENDAR= +SHEET_ID= +RANGE_NAME= +GOOGLE_MAPS_API_KEY= + +# ============================================================================= +# ANALYTICS +# ============================================================================= +GA4_MEASUREMENT_ID= +AMPLITUDE_API_KEY= +HOTJAR_API_KEY= + +# ============================================================================= +# MERCADO PAGO +# ============================================================================= +ACCESS_TOKEN_MERCADO_PAGO= +MP_PLATFORM_ACCESS_TOKEN= +USER_ID= + +# ============================================================================= +# WEB PUSH +# ============================================================================= +WEBPUSH_VAPID_PUBLIC_KEY= +WEBPUSH_VAPID_PRIVATE_KEY= +WEBPUSH_VAPID_ADMIN_EMAIL= + +# ============================================================================= +# INIT +# ============================================================================= +USER_PASSWORD=initial_admin_password + +# ============================================================================= +# FRONTEND +# ============================================================================= +NEXT_PUBLIC_APP_API_URL_BACKOFFICE= +NEXT_PUBLIC_APP_API_URL_STAGE= +NEXT_PUBLIC_IS_STAGE=false +NEXT_PUBLIC_FB_PIXEL_ID= +NEXT_PUBLIC_TAG_MANAGER= +NEXT_PUBLIC_WHATSAPP_CONTACT= +NEXT_PUBLIC_API_KEY= +NEXT_PUBLIC_AMPLITUDE_API_KEY= +NEXT_PUBLIC_GMAPS_API_KEY= diff --git a/cfg/amar/Dockerfile.backend b/cfg/amar/Dockerfile.backend new file mode 100644 index 0000000..c0f757b --- /dev/null +++ b/cfg/amar/Dockerfile.backend @@ -0,0 +1,71 @@ +# ============================================================================= +# Dockerfile for Django Backend with Uvicorn +# ============================================================================= +# Usage: +# Development: WORKERS=1 RELOAD=--reload (source mounted, hot reload) +# Production: WORKERS=4 RELOAD="" (no reload, multiple workers) + +# ============================================================================= +# Stage 1: Base with system dependencies +# ============================================================================= +FROM python:3.11-slim AS base + +ENV PYTHONDONTWRITEBYTECODE=1 +ENV PYTHONUNBUFFERED=1 + +WORKDIR /app + +# Install system dependencies (cached layer) +RUN apt-get update && apt-get install -y --no-install-recommends \ + build-essential \ + libpq-dev \ + gdal-bin \ + libgdal-dev \ + libgeos-dev \ + libproj-dev \ + postgresql-client \ + # WeasyPrint dependencies (for django-afip PDF generation) + libglib2.0-0 \ + libpango-1.0-0 \ + libpangocairo-1.0-0 \ + libgdk-pixbuf-2.0-0 \ + libffi-dev \ + libcairo2 \ + libgirepository1.0-dev \ + gir1.2-pango-1.0 \ + fonts-dejavu-core \ + && rm -rf /var/lib/apt/lists/* + +# ============================================================================= +# Stage 2: Dependencies (cached layer) +# ============================================================================= +FROM base AS deps + +# Copy only requirements for dependency installation +COPY requirements.txt . + +# Install Python dependencies +RUN pip install --no-cache-dir -r requirements.txt + +# ============================================================================= +# Stage 3: Runtime (uvicorn with configurable workers) +# ============================================================================= +FROM base AS runtime + +# Copy dependencies from deps stage +COPY --from=deps /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages +COPY --from=deps /usr/local/bin /usr/local/bin + +# Copy requirements (for reference) +COPY requirements.txt . + +# Create directories +RUN mkdir -p /var/etc/static /app/media + +# Note: Source code mounted at runtime for dev, copied for prod +EXPOSE 8000 + +# Uvicorn with configurable workers and reload +# Dev: WORKERS=1 RELOAD=--reload +# Prod: WORKERS=4 RELOAD="" +CMD uvicorn amar_django_back.asgi:application --host 0.0.0.0 --port 8000 --workers ${WORKERS:-1} ${RELOAD} diff --git a/cfg/amar/Dockerfile.frontend b/cfg/amar/Dockerfile.frontend new file mode 100644 index 0000000..eadd474 --- /dev/null +++ b/cfg/amar/Dockerfile.frontend @@ -0,0 +1,80 @@ +# ============================================================================= +# Multi-stage Dockerfile for Next.js Frontend +# ============================================================================= +# Usage: +# Development: docker compose up (mounts source, hot reload) +# Production: docker compose -f docker-compose.yml -f docker-compose.prod.yml up + +# ============================================================================= +# Stage 1: Dependencies (cached layer) +# ============================================================================= +FROM node:18-alpine AS deps + +WORKDIR /app + +# Copy only package files for dependency installation +COPY package*.json ./ + +# Install ALL dependencies (including devDependencies for dev mode) +RUN npm ci + +# ============================================================================= +# Stage 2: Development (hot reload, source mounted) +# ============================================================================= +FROM node:18-alpine AS development + +WORKDIR /app + +# Copy dependencies from deps stage +COPY --from=deps /app/node_modules ./node_modules + +# Copy package files (for npm scripts) +COPY package*.json ./ + +# Copy config files +COPY next.config.js postcss.config.js tailwind.config.js tsconfig.json ./ + +# Note: src/ and public/ are mounted at runtime for hot reload +# Start dev server +EXPOSE 3000 +CMD ["npm", "run", "dev"] + +# ============================================================================= +# Stage 3: Builder (compile for production) +# ============================================================================= +FROM node:18-alpine AS builder + +WORKDIR /app + +# Copy dependencies +COPY --from=deps /app/node_modules ./node_modules + +# Copy all source files +COPY . . + +# Build for production +RUN npm run build + +# ============================================================================= +# Stage 4: Production (optimized, minimal) +# ============================================================================= +FROM node:18-alpine AS production + +WORKDIR /app + +ENV NODE_ENV=production + +# Copy only production dependencies +COPY package*.json ./ +RUN npm ci --only=production && npm cache clean --force + +# Copy built application from builder +COPY --from=builder /app/.next ./.next +COPY --from=builder /app/public ./public +COPY --from=builder /app/next.config.js ./ + +EXPOSE 3000 + +USER node + +CMD ["npm", "run", "start"] diff --git a/cfg/amar/ctrl/logs.sh b/cfg/amar/ctrl/logs.sh new file mode 100755 index 0000000..45fd969 --- /dev/null +++ b/cfg/amar/ctrl/logs.sh @@ -0,0 +1,33 @@ +#!/bin/bash +# View amar room logs +# +# Usage: +# ./logs.sh # All logs (tail) +# ./logs.sh -f # Follow mode +# ./logs.sh backend # Specific container +# ./logs.sh soleprint # Soleprint logs + +set -e +cd "$(dirname "$0")/.." + +FOLLOW="" +TARGET="" + +for arg in "$@"; do + case $arg in + -f|--follow) FOLLOW="-f" ;; + *) TARGET="$arg" ;; + esac +done + +if [ -z "$TARGET" ]; then + echo "=== Amar ===" + docker compose logs --tail=20 $FOLLOW + echo "" + echo "=== Soleprint ===" + (cd soleprint && docker compose logs --tail=20 $FOLLOW) +elif [ "$TARGET" = "soleprint" ]; then + (cd soleprint && docker compose logs $FOLLOW) +else + docker logs $FOLLOW "amar_$TARGET" 2>/dev/null || docker logs $FOLLOW "$TARGET" +fi diff --git a/cfg/amar/ctrl/start.sh b/cfg/amar/ctrl/start.sh new file mode 100755 index 0000000..4e91a99 --- /dev/null +++ b/cfg/amar/ctrl/start.sh @@ -0,0 +1,40 @@ +#!/bin/bash +# Start amar room (managed app + soleprint) +# +# Usage: +# ./start.sh # Start all (foreground) +# ./start.sh -d # Start all (detached) +# ./start.sh amar # Start only amar +# ./start.sh soleprint # Start only soleprint +# ./start.sh --build # Rebuild images + +set -e +cd "$(dirname "$0")/.." + +BUILD="" +DETACH="" +TARGET="all" + +for arg in "$@"; do + case $arg in + -d|--detached) DETACH="-d" ;; + --build) BUILD="--build" ;; + amar) TARGET="amar" ;; + soleprint) TARGET="soleprint" ;; + esac +done + +if [ "$TARGET" = "all" ] || [ "$TARGET" = "amar" ]; then + echo "Starting amar..." + docker compose up $DETACH $BUILD +fi + +if [ "$TARGET" = "all" ] || [ "$TARGET" = "soleprint" ]; then + echo "Starting soleprint..." + (cd soleprint && docker compose up $DETACH $BUILD) +fi + +if [ -n "$DETACH" ]; then + echo "" + docker ps --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}" | grep -E "(amar|soleprint|NAMES)" +fi diff --git a/cfg/amar/ctrl/status.sh b/cfg/amar/ctrl/status.sh new file mode 100755 index 0000000..31b92f9 --- /dev/null +++ b/cfg/amar/ctrl/status.sh @@ -0,0 +1,7 @@ +#!/bin/bash +# Show amar room status + +cd "$(dirname "$0")/.." + +echo "=== Containers ===" +docker ps --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}" | grep -E "(amar|soleprint|NAMES)" || echo "No containers running" diff --git a/cfg/amar/ctrl/stop.sh b/cfg/amar/ctrl/stop.sh new file mode 100755 index 0000000..857c78d --- /dev/null +++ b/cfg/amar/ctrl/stop.sh @@ -0,0 +1,25 @@ +#!/bin/bash +# Stop amar room (managed app + soleprint) +# +# Usage: +# ./stop.sh # Stop all +# ./stop.sh amar # Stop only amar +# ./stop.sh soleprint # Stop only soleprint + +set -e +cd "$(dirname "$0")/.." + +TARGET="all" +[ -n "$1" ] && TARGET="$1" + +if [ "$TARGET" = "all" ] || [ "$TARGET" = "soleprint" ]; then + echo "Stopping soleprint..." + (cd soleprint && docker compose down) +fi + +if [ "$TARGET" = "all" ] || [ "$TARGET" = "amar" ]; then + echo "Stopping amar..." + docker compose down +fi + +echo "Done." diff --git a/cfg/amar/ctrl/xtras/reload-db.sh b/cfg/amar/ctrl/xtras/reload-db.sh new file mode 100755 index 0000000..f82f627 --- /dev/null +++ b/cfg/amar/ctrl/xtras/reload-db.sh @@ -0,0 +1,117 @@ +#!/bin/bash +# Smart database reload - only swaps if DB_DUMP changed +# +# Tracks which dump is currently loaded and only reloads if different. +# Edit DB_DUMP in .env and run this script - it handles the rest. +# +# Usage: +# ./reload-db.sh # Reload if DB_DUMP changed +# ./reload-db.sh --force # Force reload even if same + +set -e + +cd "$(dirname "$0")/../.." + +FORCE=false +if [ "$1" = "--force" ]; then + FORCE=true +fi + +# Get config from .env +DEPLOYMENT_NAME=$(grep "^DEPLOYMENT_NAME=" .env 2>/dev/null | cut -d'=' -f2 || echo "amar") +POSTGRES_DB=$(grep "^POSTGRES_DB=" .env 2>/dev/null | cut -d'=' -f2 || echo "amarback") +POSTGRES_USER=$(grep "^POSTGRES_USER=" .env 2>/dev/null | cut -d'=' -f2 || echo "postgres") +DB_DUMP=$(grep "^DB_DUMP=" .env 2>/dev/null | cut -d'=' -f2) + +if [ -z "$DB_DUMP" ]; then + echo "Error: DB_DUMP not set in .env" + echo "" + echo "Add to .env:" + echo " DB_DUMP=dev.sql" + echo "" + echo "Available dumps:" + ls -1 dumps/*.sql 2>/dev/null | sed 's/dumps\// /' || echo " No dumps found in dumps/" + exit 1 +fi + +DUMP_FILE="dumps/${DB_DUMP}" +if [ ! -f "$DUMP_FILE" ]; then + echo "Error: Dump file not found: $DUMP_FILE" + echo "" + echo "Available dumps:" + ls -1 dumps/*.sql 2>/dev/null | sed 's/dumps\// /' || echo " No dumps found in dumps/" + exit 1 +fi + +DB_CONTAINER="${DEPLOYMENT_NAME}_db" +BACKEND_CONTAINER="${DEPLOYMENT_NAME}_backend" +STATE_FILE=".db_state" + +# Check if db container is running +if ! docker ps --format "{{.Names}}" | grep -q "^${DB_CONTAINER}$"; then + echo "Error: Database container not running: $DB_CONTAINER" + echo "Start services first with: ./ctrl/start.sh -d" + exit 1 +fi + +# Check current state +if [ -f "$STATE_FILE" ] && [ "$FORCE" = false ]; then + CURRENT_DUMP=$(cat "$STATE_FILE") + if [ "$CURRENT_DUMP" = "$DB_DUMP" ]; then + echo "Database already loaded with: $DB_DUMP" + echo "Use --force to reload anyway" + exit 0 + fi + echo "Database dump changed: $CURRENT_DUMP → $DB_DUMP" +else + if [ "$FORCE" = true ]; then + echo "Force reloading database with: $DB_DUMP" + else + echo "Loading database with: $DB_DUMP" + fi +fi + +echo "" +read -p "Continue with database reload? (y/N) " -n 1 -r +echo "" +if [[ ! $REPLY =~ ^[Yy]$ ]]; then + echo "Cancelled." + exit 0 +fi + +echo "" +echo "[1/5] Stopping backend and celery services..." +docker compose stop backend celery celery-beat 2>/dev/null || true + +echo "" +echo "[2/5] Dropping and recreating database..." +docker exec "$DB_CONTAINER" psql -U "$POSTGRES_USER" -d postgres -c "DROP DATABASE IF EXISTS $POSTGRES_DB WITH (FORCE);" +docker exec "$DB_CONTAINER" psql -U "$POSTGRES_USER" -d postgres -c "CREATE DATABASE $POSTGRES_DB;" +docker exec "$DB_CONTAINER" psql -U "$POSTGRES_USER" -d "$POSTGRES_DB" -c "CREATE EXTENSION IF NOT EXISTS postgis_topology;" + +echo "" +echo "[3/5] Loading dump: $DB_DUMP..." +docker exec -i "$DB_CONTAINER" psql -U "$POSTGRES_USER" -d "$POSTGRES_DB" < "$DUMP_FILE" + +echo "" +echo "[4/5] Restarting services and running migrations..." +docker compose start backend celery celery-beat + +echo "Waiting for backend to start..." +sleep 3 + +echo "Running migrations..." +docker exec "$BACKEND_CONTAINER" python manage.py migrate --noinput + +echo "" +echo "[5/5] Updating state..." +echo "$DB_DUMP" > "$STATE_FILE" + +echo "" +echo "==========================================" +echo " Database Reloaded Successfully" +echo "==========================================" +echo "" +echo "Current dump: $DB_DUMP" +echo "Database: $POSTGRES_DB" +echo "" diff --git a/cfg/amar/dumps/dev.sql b/cfg/amar/dumps/dev.sql new file mode 100644 index 0000000..614a276 --- /dev/null +++ b/cfg/amar/dumps/dev.sql @@ -0,0 +1,159267 @@ +-- +-- PostgreSQL database dump +-- + + +-- Dumped from database version 15.14 (Debian 15.14-0+deb12u1) +-- Dumped by pg_dump version 15.14 (Debian 15.14-0+deb12u1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: public; Type: SCHEMA; Schema: -; Owner: postgres +-- + +-- *not* creating schema, since initdb creates it + + + +-- +-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres +-- + +COMMENT ON SCHEMA public IS ''; + + +-- +-- Name: postgis; Type: EXTENSION; Schema: -; Owner: - +-- + +CREATE EXTENSION IF NOT EXISTS postgis WITH SCHEMA public; + + +-- +-- Name: EXTENSION postgis; Type: COMMENT; Schema: -; Owner: +-- + +COMMENT ON EXTENSION postgis IS 'PostGIS geometry and geography spatial types and functions'; + + +SET default_tablespace = ''; + +SET default_table_access_method = heap; + +-- +-- Name: afip_authticket; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_authticket ( + id integer NOT NULL, + unique_id integer NOT NULL, + generated timestamp with time zone NOT NULL, + expires timestamp with time zone NOT NULL, + service character varying(34) NOT NULL, + token text NOT NULL, + signature text NOT NULL, + owner_id integer NOT NULL +); + + + +-- +-- Name: afip_authticket_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_authticket ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_authticket_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_clientvatcondition; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_clientvatcondition ( + id integer NOT NULL, + code character varying(3) NOT NULL, + description character varying(250) NOT NULL, + cmp_clase character varying(10) NOT NULL +); + + + +-- +-- Name: afip_clientvatcondition_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_clientvatcondition ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_clientvatcondition_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_concepttype; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_concepttype ( + id integer NOT NULL, + code character varying(3) NOT NULL, + description character varying(250) NOT NULL, + valid_from date, + valid_to date +); + + + +-- +-- Name: afip_concepttype_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_concepttype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_concepttype_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_currencytype; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_currencytype ( + id integer NOT NULL, + code character varying(3) NOT NULL, + description character varying(250) NOT NULL, + valid_from date, + valid_to date +); + + + +-- +-- Name: afip_currencytype_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_currencytype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_currencytype_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_documenttype; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_documenttype ( + id integer NOT NULL, + code character varying(3) NOT NULL, + description character varying(250) NOT NULL, + valid_from date, + valid_to date +); + + + +-- +-- Name: afip_documenttype_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_documenttype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_documenttype_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_observation; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_observation ( + id integer NOT NULL, + code smallint NOT NULL, + message character varying(255) NOT NULL, + CONSTRAINT afip_observation_code_check CHECK ((code >= 0)) +); + + + +-- +-- Name: afip_observation_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_observation ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_observation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_optional; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_optional ( + id integer NOT NULL, + value character varying(250) NOT NULL, + optional_type_id integer NOT NULL, + receipt_id integer NOT NULL +); + + + +-- +-- Name: afip_optional_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_optional ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_optional_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_optionaltype; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_optionaltype ( + id integer NOT NULL, + code character varying(4) NOT NULL, + description character varying(250) NOT NULL, + valid_from date, + valid_to date +); + + + +-- +-- Name: afip_optionaltype_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_optionaltype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_optionaltype_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_pointofsales; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_pointofsales ( + id integer NOT NULL, + number smallint NOT NULL, + issuance_type character varying(200) NOT NULL, + blocked boolean NOT NULL, + drop_date date, + owner_id integer NOT NULL, + gross_income_condition character varying(48), + issuing_address text, + issuing_email character varying(128), + issuing_name character varying(128), + sales_terms character varying(48), + vat_condition character varying(48), + CONSTRAINT afip_pointofsales_number_check CHECK ((number >= 0)) +); + + + +-- +-- Name: afip_pointofsales_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_pointofsales ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_pointofsales_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_receipt; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_receipt ( + id integer NOT NULL, + document_number bigint NOT NULL, + receipt_number integer, + issued_date date NOT NULL, + total_amount numeric(15,2) NOT NULL, + net_untaxed numeric(15,2) NOT NULL, + net_taxed numeric(15,2) NOT NULL, + exempt_amount numeric(15,2) NOT NULL, + service_start date, + service_end date, + expiration_date date, + currency_quote numeric(10,6) NOT NULL, + concept_id integer NOT NULL, + currency_id integer NOT NULL, + document_type_id integer NOT NULL, + point_of_sales_id integer NOT NULL, + receipt_type_id integer NOT NULL, + client_vat_condition_id integer, + CONSTRAINT afip_receipt_receipt_number_check CHECK ((receipt_number >= 0)) +); + + + +-- +-- Name: afip_receipt_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_receipt ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_receipt_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_receipt_related_receipts; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_receipt_related_receipts ( + id bigint NOT NULL, + from_receipt_id integer NOT NULL, + to_receipt_id integer NOT NULL +); + + + +-- +-- Name: afip_receipt_related_receipts_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_receipt_related_receipts ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_receipt_related_receipts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_receiptentry; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_receiptentry ( + id integer NOT NULL, + description character varying(128) NOT NULL, + quantity numeric(15,2) NOT NULL, + unit_price numeric(15,2) NOT NULL, + receipt_id integer NOT NULL, + vat_id integer, + discount numeric(15,2) NOT NULL, + CONSTRAINT discount_less_than_total CHECK ((discount <= ((quantity)::numeric * unit_price))), + CONSTRAINT discount_positive_value CHECK ((discount >= 0.0)) +); + + + +-- +-- Name: afip_receiptentry_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_receiptentry ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_receiptentry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_receiptpdf; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_receiptpdf ( + id integer NOT NULL, + pdf_file character varying(100), + issuing_name character varying(128) NOT NULL, + issuing_address text NOT NULL, + issuing_email character varying(128), + vat_condition character varying(48) NOT NULL, + gross_income_condition character varying(48) NOT NULL, + client_name character varying(128) NOT NULL, + client_address text NOT NULL, + client_vat_condition character varying(48) NOT NULL, + sales_terms character varying(48) NOT NULL, + receipt_id integer NOT NULL +); + + + +-- +-- Name: afip_receiptpdf_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_receiptpdf ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_receiptpdf_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_receipttype; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_receipttype ( + id integer NOT NULL, + code character varying(3) NOT NULL, + description character varying(250) NOT NULL, + valid_from date, + valid_to date +); + + + +-- +-- Name: afip_receipttype_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_receipttype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_receipttype_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_receiptvalidation; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_receiptvalidation ( + id integer NOT NULL, + result character varying(1) NOT NULL, + processed_date timestamp with time zone NOT NULL, + cae character varying(14) NOT NULL, + cae_expiration date NOT NULL, + receipt_id integer NOT NULL +); + + + +-- +-- Name: afip_receiptvalidation_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_receiptvalidation ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_receiptvalidation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_receiptvalidation_observations; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_receiptvalidation_observations ( + id bigint NOT NULL, + receiptvalidation_id integer NOT NULL, + observation_id integer NOT NULL +); + + + +-- +-- Name: afip_receiptvalidation_observations_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_receiptvalidation_observations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_receiptvalidation_observations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_tax; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_tax ( + id integer NOT NULL, + description character varying(80) NOT NULL, + base_amount numeric(15,2) NOT NULL, + aliquot numeric(5,2) NOT NULL, + amount numeric(15,2) NOT NULL, + receipt_id integer NOT NULL, + tax_type_id integer NOT NULL +); + + + +-- +-- Name: afip_tax_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_tax ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_tax_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_taxpayer; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_taxpayer ( + id integer NOT NULL, + name character varying(32) NOT NULL, + key character varying(100), + certificate character varying(100), + cuit bigint NOT NULL, + is_sandboxed boolean NOT NULL, + certificate_expiration timestamp with time zone, + active_since date NOT NULL, + logo character varying(100) +); + + + +-- +-- Name: afip_taxpayer_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_taxpayer ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_taxpayer_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_taxtype; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_taxtype ( + id integer NOT NULL, + code character varying(3) NOT NULL, + description character varying(250) NOT NULL, + valid_from date, + valid_to date +); + + + +-- +-- Name: afip_taxtype_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_taxtype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_taxtype_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_vat; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_vat ( + id integer NOT NULL, + base_amount numeric(15,2) NOT NULL, + amount numeric(15,2) NOT NULL, + receipt_id integer NOT NULL, + vat_type_id integer NOT NULL +); + + + +-- +-- Name: afip_vat_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_vat ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_vat_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: afip_vattype; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.afip_vattype ( + id integer NOT NULL, + code character varying(3) NOT NULL, + description character varying(250) NOT NULL, + valid_from date, + valid_to date +); + + + +-- +-- Name: afip_vattype_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.afip_vattype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.afip_vattype_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_group; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.auth_group ( + id integer NOT NULL, + name character varying(150) NOT NULL +); + + + +-- +-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.auth_group_permissions ( + id bigint NOT NULL, + group_id integer NOT NULL, + permission_id integer NOT NULL +); + + + +-- +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_group_permissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_permission; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.auth_permission ( + id integer NOT NULL, + name character varying(255) NOT NULL, + content_type_id integer NOT NULL, + codename character varying(100) NOT NULL +); + + + +-- +-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_permission_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_user; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.auth_user ( + id integer NOT NULL, + password character varying(128) NOT NULL, + last_login timestamp with time zone, + is_superuser boolean NOT NULL, + username character varying(150) NOT NULL, + first_name character varying(150) NOT NULL, + last_name character varying(150) NOT NULL, + email character varying(254) NOT NULL, + is_staff boolean NOT NULL, + is_active boolean NOT NULL, + date_joined timestamp with time zone NOT NULL +); + + + +-- +-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.auth_user_groups ( + id bigint NOT NULL, + user_id integer NOT NULL, + group_id integer NOT NULL +); + + + +-- +-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.auth_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_user_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.auth_user ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_user_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.auth_user_user_permissions ( + id bigint NOT NULL, + user_id integer NOT NULL, + permission_id integer NOT NULL +); + + + +-- +-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.auth_user_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.auth_user_user_permissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: authtoken_token; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.authtoken_token ( + key character varying(40) NOT NULL, + created timestamp with time zone NOT NULL, + user_id integer NOT NULL +); + + + +-- +-- Name: common_apikey; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_apikey ( + id bigint NOT NULL, + key character varying(64) NOT NULL, + name character varying(255) NOT NULL, + created_at timestamp with time zone NOT NULL, + is_active boolean NOT NULL +); + + + +-- +-- Name: common_apikey_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_apikey ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_apikey_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_browserpushsubscription; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_browserpushsubscription ( + id bigint NOT NULL, + endpoint character varying(200) NOT NULL, + p256dh character varying(255) NOT NULL, + auth character varying(255) NOT NULL, + browser character varying(64) NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + user_id integer NOT NULL +); + + + +-- +-- Name: common_browserpushsubscription_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_browserpushsubscription ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_browserpushsubscription_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_campaign; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_campaign ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + description text, + start_date timestamp with time zone, + end_date timestamp with time zone, + utm_source character varying(100), + utm_medium character varying(100), + utm_campaign character varying(100), + is_active boolean NOT NULL, + user_id integer +); + + + +-- +-- Name: common_campaign_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_campaign ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_campaign_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_groupstudy; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_groupstudy ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + user_id integer +); + + + +-- +-- Name: common_groupstudy_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_groupstudy ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_groupstudy_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_individualturnfeegroup; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_individualturnfeegroup ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(150) NOT NULL, + fee_percentage numeric(5,2) NOT NULL, + user_id integer +); + + + +-- +-- Name: common_individualturnfeegroup_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_individualturnfeegroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_individualturnfeegroup_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_individualturnfeegroupmembership; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_individualturnfeegroupmembership ( + id bigint NOT NULL, + group_id bigint NOT NULL, + veterinarian_id bigint NOT NULL +); + + + +-- +-- Name: common_individualturnfeegroupmembership_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_individualturnfeegroupmembership ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_individualturnfeegroupmembership_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_locality; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_locality ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(150) NOT NULL, + user_id integer, + province_id bigint NOT NULL +); + + + +-- +-- Name: common_locality_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_locality ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_locality_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_medication; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_medication ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + company character varying(100), + description text, + pet_type character varying(15) NOT NULL, + user_id integer, + group_id bigint, + medication_type_id bigint NOT NULL, + presentation_id bigint +); + + + +-- +-- Name: common_medication_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_medication ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_medication_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_medicationgeneralname; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_medicationgeneralname ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + user_id integer, + medication_type_id bigint NOT NULL +); + + + +-- +-- Name: common_medicationgeneralname_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_medicationgeneralname ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_medicationgeneralname_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_medicationpresentation; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_medicationpresentation ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + user_id integer +); + + + +-- +-- Name: common_medicationpresentation_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_medicationpresentation ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_medicationpresentation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_medicationtype; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_medicationtype ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + user_id integer +); + + + +-- +-- Name: common_medictaiontype_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_medicationtype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_medictaiontype_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_neighborhood; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_neighborhood ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + user_id integer, + distance_coefficient numeric(5,2) NOT NULL, + coverage_area public.geography(Polygon,4326) +); + + + +-- +-- Name: common_neighborhood_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_neighborhood ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_neighborhood_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_petbreed; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_petbreed ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + pet_type character varying(5) NOT NULL, + user_id integer +); + + + +-- +-- Name: common_petbreed_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_petbreed ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_petbreed_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_province; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_province ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(150) NOT NULL, + user_id integer +); + + + +-- +-- Name: common_province_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_province ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_province_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_specialty; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_specialty ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + user_id integer +); + + + +-- +-- Name: common_specialty_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_specialty ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_specialty_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_study; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_study ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + pet_type character varying(5) NOT NULL, + description text, + user_id integer, + company character varying(100), + group_study_id bigint +); + + + +-- +-- Name: common_study_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_study ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_study_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_tag; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_tag ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + user_id integer +); + + + +-- +-- Name: common_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_tag ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_tag_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: common_vaccine; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.common_vaccine ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + pet_type character varying(5) NOT NULL, + description text, + periodicity integer NOT NULL, + user_id integer, + CONSTRAINT common_vaccine_periodicity_check CHECK ((periodicity >= 0)) +); + + + +-- +-- Name: common_vaccine_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.common_vaccine ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.common_vaccine_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: comprobantes_receiptpayproof; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.comprobantes_receiptpayproof ( + id uuid NOT NULL, + file character varying(100) NOT NULL, + mime_type character varying(150) NOT NULL, + ocr_text text NOT NULL, + detected_bank character varying(80) NOT NULL, + fields jsonb NOT NULL, + confidence double precision NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL +); + + + +-- +-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.django_admin_log ( + id integer NOT NULL, + action_time timestamp with time zone NOT NULL, + object_id text, + object_repr character varying(200) NOT NULL, + action_flag smallint NOT NULL, + change_message text NOT NULL, + content_type_id integer, + user_id integer NOT NULL, + CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0)) +); + + + +-- +-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.django_admin_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.django_admin_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: django_content_type; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.django_content_type ( + id integer NOT NULL, + app_label character varying(100) NOT NULL, + model character varying(100) NOT NULL +); + + + +-- +-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.django_content_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: django_migrations; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.django_migrations ( + id bigint NOT NULL, + app character varying(255) NOT NULL, + name character varying(255) NOT NULL, + applied timestamp with time zone NOT NULL +); + + + +-- +-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.django_migrations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: django_session; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.django_session ( + session_key character varying(40) NOT NULL, + session_data text NOT NULL, + expire_date timestamp with time zone NOT NULL +); + + + +-- +-- Name: mascotas_availability; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_availability ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + start_day integer NOT NULL, + end_day integer NOT NULL, + start_time time without time zone NOT NULL, + end_time time without time zone NOT NULL, + user_id integer, + veterinarian_id bigint NOT NULL +); + + + +-- +-- Name: mascotas_availability_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_availability ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_availability_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_followupimage; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_followupimage ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + image character varying(100) NOT NULL, + user_id integer, + follow_up_id bigint NOT NULL +); + + + +-- +-- Name: mascotas_followupimage_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_followupimage ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_followupimage_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_pet; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_pet ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + pet_type character varying(15) NOT NULL, + age integer, + weight numeric(5,2), + height numeric(5,2), + is_neutered boolean NOT NULL, + allergies text, + birth_date date, + last_checkup_date date, + last_deworming_date date, + last_vaccination_date date, + gender character varying(6), + notes text, + profile_picture character varying(100), + state character varying(10), + is_deceased boolean NOT NULL, + breed_id bigint, + user_id integer, + owner_id bigint NOT NULL, + CONSTRAINT mascotas_pet_age_check CHECK ((age >= 0)) +); + + + +-- +-- Name: mascotas_pet_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_pet ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_pet_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_petowner; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_petowner ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + first_name character varying(100) NOT NULL, + last_name character varying(100) NOT NULL, + email character varying(254) NOT NULL, + phone character varying(20) NOT NULL, + address character varying(200), + address_road character varying(200), + address_number character varying(200), + address_details character varying(200), + address_postal_code character varying(10), + gender character varying(6), + birth_date date, + profile_picture character varying(100), + geo_latitude character varying(30), + geo_longitude character varying(30), + neighborhood_id bigint, + user_id integer, + campaign_id bigint, + alias character varying(120) +); + + + +-- +-- Name: mascotas_petowner_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_petowner ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_petowner_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_petowner_tags; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_petowner_tags ( + id bigint NOT NULL, + petowner_id bigint NOT NULL, + tag_id bigint NOT NULL +); + + + +-- +-- Name: mascotas_petowner_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_petowner_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_petowner_tags_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_petstudy; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_petstudy ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + date date NOT NULL, + result text NOT NULL, + image_1 character varying(100), + image_2 character varying(100), + image_3 character varying(100), + pet_id bigint NOT NULL, + pet_owner_id bigint NOT NULL, + study_type_id bigint NOT NULL, + user_id integer +); + + + +-- +-- Name: mascotas_petstudy_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_petstudy ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_petstudy_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_petstudyfile; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_petstudyfile ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + file character varying(100) NOT NULL, + uploaded_at timestamp with time zone NOT NULL, + study_id bigint NOT NULL, + user_id integer +); + + + +-- +-- Name: mascotas_petstudyfile_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_petstudyfile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_petstudyfile_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_petvaccine; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_petvaccine ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + application_date date NOT NULL, + next_application_date date, + pet_id bigint NOT NULL, + pet_owner_id bigint NOT NULL, + user_id integer, + vaccine_id bigint NOT NULL +); + + + +-- +-- Name: mascotas_petvaccine_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_petvaccine ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_petvaccine_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_privatenote; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_privatenote ( + id bigint NOT NULL, + note_body text NOT NULL, + created_at timestamp with time zone NOT NULL, + pet_owner_id bigint NOT NULL, + vet_visit_id bigint NOT NULL +); + + + +-- +-- Name: mascotas_privatenote_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_privatenote ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_privatenote_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_unavailability; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_unavailability ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + start_day integer NOT NULL, + end_day integer NOT NULL, + start_time time without time zone NOT NULL, + end_time time without time zone NOT NULL, + start_date date NOT NULL, + end_date date NOT NULL, + user_id integer, + veterinarian_id bigint NOT NULL, + reason text +); + + + +-- +-- Name: mascotas_unavailability_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_unavailability ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_unavailability_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_veterinarian; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_veterinarian ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + first_name character varying(100) NOT NULL, + last_name character varying(100) NOT NULL, + email character varying(254), + phone character varying(20) NOT NULL, + address character varying(200) NOT NULL, + medical_license character varying(50) NOT NULL, + profile_picture character varying(100), + user_id integer, + alias character varying(120) +); + + + +-- +-- Name: mascotas_veterinarian_coverage_areas; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_veterinarian_coverage_areas ( + id bigint NOT NULL, + veterinarian_id bigint NOT NULL, + veterinariancoveragearea_id bigint NOT NULL +); + + + +-- +-- Name: mascotas_veterinarian_coverage_areas_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_veterinarian_coverage_areas ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_veterinarian_coverage_areas_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_veterinarian_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_veterinarian ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_veterinarian_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_veterinarian_neighborhood; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_veterinarian_neighborhood ( + id bigint NOT NULL, + veterinarian_id bigint NOT NULL, + neighborhood_id bigint NOT NULL +); + + + +-- +-- Name: mascotas_veterinarian_neighborhood_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_veterinarian_neighborhood ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_veterinarian_neighborhood_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_veterinarian_specialization; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_veterinarian_specialization ( + id bigint NOT NULL, + veterinarian_id bigint NOT NULL, + specialty_id bigint NOT NULL +); + + + +-- +-- Name: mascotas_veterinarian_specialization_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_veterinarian_specialization ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_veterinarian_specialization_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_veterinariancoveragearea; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_veterinariancoveragearea ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(150) NOT NULL, + polygon public.geography(Polygon,4326) NOT NULL, + user_id integer, + polygon_type character varying(10) NOT NULL, + province_id bigint, + locality_id bigint +); + + + +-- +-- Name: mascotas_veterinariancoveragearea_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_veterinariancoveragearea ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_veterinariancoveragearea_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_vetvisit; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_vetvisit ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + date date NOT NULL, + hour time without time zone NOT NULL, + visit_state character varying(30) NOT NULL, + visit_type character varying(100) NOT NULL, + reason text, + observations text, + price numeric(10,2) NOT NULL, + deposit numeric(10,2) NOT NULL, + vet_fee numeric(10,2) NOT NULL, + visit_datetime timestamp with time zone, + pay_transaction character varying(30), + owner_id bigint NOT NULL, + pet_id bigint NOT NULL, + user_id integer, + veterinarian_id bigint NOT NULL, + google_calendar_event_id character varying(255), + afip_receipt_id integer, + service_request_id bigint +); + + + +-- +-- Name: mascotas_vetvisit_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_vetvisit ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_vetvisit_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_vetvisit_pets; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_vetvisit_pets ( + id bigint NOT NULL, + vetvisit_id bigint NOT NULL, + pet_id bigint NOT NULL +); + + + +-- +-- Name: mascotas_vetvisit_pets_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_vetvisit_pets ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_vetvisit_pets_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_vetvisitfollowup; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_vetvisitfollowup ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + comments text NOT NULL, + follow_up_state character varying(20) NOT NULL, + new_symptoms boolean NOT NULL, + new_symptom_details text, + pet_id bigint NOT NULL, + user_id integer, + visit_id bigint NOT NULL +); + + + +-- +-- Name: mascotas_vetvisitfollowup_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_vetvisitfollowup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_vetvisitfollowup_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_vetvisitpetreason; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_vetvisitpetreason ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + user_id integer, + pet_id bigint NOT NULL, + visit_id bigint NOT NULL, + reason text NOT NULL +); + + + +-- +-- Name: mascotas_vetvisitpetreason_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_vetvisitpetreason ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_vetvisitpetreason_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: mascotas_vetvisitreport; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.mascotas_vetvisitreport ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + diagnosis text NOT NULL, + recommendation text, + treatment text, + physical_exam text, + observations text, + next_visit_date date, + owner_id bigint, + pet_id bigint, + user_id integer, + vet_id bigint, + visit_id bigint NOT NULL, + aditional_fields jsonb +); + + + +-- +-- Name: mascotas_vetvisitreport_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.mascotas_vetvisitreport ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.mascotas_vetvisitreport_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: payments_mercadopagoaccount; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.payments_mercadopagoaccount ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + seller_id bigint NOT NULL, + access_token text NOT NULL, + refresh_token text NOT NULL, + scope character varying(255) NOT NULL, + expires_at timestamp with time zone NOT NULL, + user_id integer, + veterinarian_id bigint NOT NULL +); + + + +-- +-- Name: payments_mercadopagoaccount_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.payments_mercadopagoaccount ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.payments_mercadopagoaccount_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: payments_mercadopagonotification; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.payments_mercadopagonotification ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + notification_id character varying(255) NOT NULL, + topic character varying(100) NOT NULL, + action character varying(150) NOT NULL, + data_id character varying(255) NOT NULL, + resource character varying(500) NOT NULL, + api_version character varying(50) NOT NULL, + live_mode boolean NOT NULL, + mp_user_id bigint, + raw_query jsonb NOT NULL, + raw_body jsonb NOT NULL, + headers jsonb NOT NULL, + status character varying(20) NOT NULL, + fetched_payload jsonb NOT NULL, + fetched_at timestamp with time zone, + last_error text NOT NULL, + user_id integer +); + + + +-- +-- Name: payments_mercadopagonotification_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.payments_mercadopagonotification ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.payments_mercadopagonotification_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: productos_cart; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.productos_cart ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + petowner_id bigint NOT NULL, + user_id integer, + veterinarian_id bigint, + apply_individual_turn_fee boolean NOT NULL, + use_veterinarian_prices boolean NOT NULL +); + + + +-- +-- Name: productos_cart_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.productos_cart ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.productos_cart_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: productos_cartitem; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.productos_cartitem ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + price numeric(10,2) NOT NULL, + quantity integer NOT NULL, + total numeric(10,2) NOT NULL, + cart_id bigint NOT NULL, + service_id bigint NOT NULL, + user_id integer, + pet_id bigint +); + + + +-- +-- Name: productos_cartitem_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.productos_cartitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.productos_cartitem_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: productos_cartpetreason; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.productos_cartpetreason ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + reason text, + cart_id bigint NOT NULL, + pet_id bigint NOT NULL, + active boolean NOT NULL, + deleted boolean NOT NULL, + user_id integer +); + + + +-- +-- Name: productos_cartpetreason_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.productos_cartpetreason ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.productos_cartpetreason_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: productos_cartresumeitem; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.productos_cartresumeitem ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + concept character varying(100) NOT NULL, + amount numeric(10,2) NOT NULL, + "order" integer NOT NULL, + cart_id bigint NOT NULL, + user_id integer +); + + + +-- +-- Name: productos_cartresumeitem_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.productos_cartresumeitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.productos_cartresumeitem_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: productos_category; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.productos_category ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + description text, + user_id integer, + group_id bigint NOT NULL, + value integer NOT NULL +); + + + +-- +-- Name: productos_category_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.productos_category ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.productos_category_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: productos_categoryservice; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.productos_categoryservice ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + category_id bigint NOT NULL, + service_id bigint NOT NULL, + user_id integer +); + + + +-- +-- Name: productos_categoryservice_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.productos_categoryservice ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.productos_categoryservice_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: productos_discounts; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.productos_discounts ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + discount numeric(10,2) NOT NULL, + from_date date, + to_date date, + user_id integer, + service_id bigint NOT NULL +); + + + +-- +-- Name: productos_discounts_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.productos_discounts ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.productos_discounts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: productos_group; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.productos_group ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + description text, + user_id integer +); + + + +-- +-- Name: productos_group_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.productos_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.productos_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: productos_prices; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.productos_prices ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + price numeric(10,2) NOT NULL, + professional_fee numeric(15,2) NOT NULL, + from_date date, + to_date date, + user_id integer, + service_id bigint NOT NULL, + payment_sign numeric(10,2) NOT NULL, + veterinarian_id bigint +); + + + +-- +-- Name: productos_prices_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.productos_prices ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.productos_prices_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: productos_service; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.productos_service ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + description text, + payment_sign_required boolean NOT NULL, + speciality_id bigint NOT NULL, + user_id integer, + duration integer, + category_id bigint, + pet_age character varying(15) NOT NULL, + pet_gender character varying(15) NOT NULL, + pet_type character varying(15) NOT NULL, + pet_weight_max numeric(5,2), + pet_weight_min numeric(5,2), + modality character varying(20) NOT NULL +); + + + +-- +-- Name: productos_service_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.productos_service ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.productos_service_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: productos_servicecombo; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.productos_servicecombo ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(100) NOT NULL, + description text, + discount_percent numeric(10,2), + discount_fixed numeric(10,2), + user_id integer +); + + + +-- +-- Name: productos_servicecombo_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.productos_servicecombo ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.productos_servicecombo_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: productos_servicecomboitem; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.productos_servicecomboitem ( + id bigint NOT NULL, + item_type character varying(100) NOT NULL, + quantity integer NOT NULL, + category_id bigint, + combo_id bigint NOT NULL, + service_id bigint NOT NULL, + active boolean NOT NULL, + created_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + updated_at timestamp with time zone NOT NULL, + user_id integer +); + + + +-- +-- Name: productos_servicecomboitem_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.productos_servicecomboitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.productos_servicecomboitem_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: solicitudes_paymentreminder; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.solicitudes_paymentreminder ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + scheduled_for timestamp with time zone NOT NULL, + processed_at timestamp with time zone, + status character varying(20) NOT NULL, + status_detail character varying(255) NOT NULL, + celery_task_id character varying(255) NOT NULL, + attempts integer NOT NULL, + payload jsonb NOT NULL, + last_error text NOT NULL, + last_response jsonb NOT NULL, + service_request_id bigint NOT NULL, + user_id integer, + CONSTRAINT solicitudes_paymentreminder_attempts_check CHECK ((attempts >= 0)) +); + + + +-- +-- Name: solicitudes_paymentreminder_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.solicitudes_paymentreminder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.solicitudes_paymentreminder_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: solicitudes_scheduledveterinarianreminder; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.solicitudes_scheduledveterinarianreminder ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + scheduled_for timestamp with time zone NOT NULL, + processed_at timestamp with time zone, + status character varying(20) NOT NULL, + status_detail character varying(255) NOT NULL, + celery_task_id character varying(255) NOT NULL, + attempts integer NOT NULL, + payload jsonb NOT NULL, + last_error text NOT NULL, + last_response jsonb NOT NULL, + user_id integer, + veterinarian_asked_id bigint NOT NULL, + CONSTRAINT solicitudes_scheduledveterinarianreminder_attempts_check CHECK ((attempts >= 0)) +); + + + +-- +-- Name: solicitudes_scheduledveterinarianreminder_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.solicitudes_scheduledveterinarianreminder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.solicitudes_scheduledveterinarianreminder_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: solicitudes_servicerequest; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.solicitudes_servicerequest ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + days_requested jsonb NOT NULL, + state character varying(20), + cart_id bigint NOT NULL, + petowner_id bigint NOT NULL, + user_id integer, + reason text, + attended_by_id integer, + date_coordinated timestamp with time zone, + hour_coordinated time without time zone, + pay_number character varying(50), + veterinarian_id bigint, + campaign_id bigint +); + + + +-- +-- Name: solicitudes_servicerequest_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.solicitudes_servicerequest ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.solicitudes_servicerequest_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: solicitudes_servicerequest_tags; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.solicitudes_servicerequest_tags ( + id bigint NOT NULL, + servicerequest_id bigint NOT NULL, + tag_id bigint NOT NULL +); + + + +-- +-- Name: solicitudes_servicerequest_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.solicitudes_servicerequest_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.solicitudes_servicerequest_tags_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: solicitudes_servicerequeststatehistory; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.solicitudes_servicerequeststatehistory ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + state character varying(20) NOT NULL, + additional_data character varying(255), + service_request_id bigint NOT NULL, + user_id integer +); + + + +-- +-- Name: solicitudes_servicerequeststatehistory_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.solicitudes_servicerequeststatehistory ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.solicitudes_servicerequeststatehistory_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: solicitudes_veterinarianasked; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.solicitudes_veterinarianasked ( + id bigint NOT NULL, + date_asked timestamp with time zone NOT NULL, + date_answered timestamp with time zone, + accepted boolean NOT NULL, + service_request_id bigint NOT NULL, + veterinarian_id bigint NOT NULL +); + + + +-- +-- Name: solicitudes_veterinarianasked_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.solicitudes_veterinarianasked ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.solicitudes_veterinarianasked_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: storage_filestorage; Type: TABLE; Schema: public; Owner: mariano +-- + +CREATE TABLE public.storage_filestorage ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + deleted boolean NOT NULL, + active boolean NOT NULL, + name character varying(255) NOT NULL, + file character varying(100) NOT NULL, + object_id integer, + content_type_id integer, + user_id integer, + description text, + CONSTRAINT storage_filestorage_object_id_check CHECK ((object_id >= 0)) +); + + + +-- +-- Name: storage_filestorage_id_seq; Type: SEQUENCE; Schema: public; Owner: mariano +-- + +ALTER TABLE public.storage_filestorage ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.storage_filestorage_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Data for Name: afip_authticket; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_authticket (id, unique_id, generated, expires, service, token, signature, owner_id) FROM stdin; +1 948572797 2025-09-19 20:01:07.836955+00 2025-09-20 08:01:07.836973+00 wsfe PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9InllcyI/Pgo8c3NvIHZlcnNpb249IjIuMCI+CiAgICA8aWQgc3JjPSJDTj13c2FhLCBPPUFGSVAsIEM9QVIsIFNFUklBTE5VTUJFUj1DVUlUIDMzNjkzNDUwMjM5IiBkc3Q9IkNOPXdzZmUsIE89QUZJUCwgQz1BUiIgdW5pcXVlX2lkPSIyNDExMTM3MTM1IiBnZW5fdGltZT0iMTc1ODMxMjAwOCIgZXhwX3RpbWU9IjE3NTgzNTUyNjgiLz4KICAgIDxvcGVyYXRpb24gdHlwZT0ibG9naW4iIHZhbHVlPSJncmFudGVkIj4KICAgICAgICA8bG9naW4gZW50aXR5PSIzMzY5MzQ1MDIzOSIgc2VydmljZT0id3NmZSIgdWlkPSJTRVJJQUxOVU1CRVI9Q1VJVCAzMDcxNzQyMDY5OCwgQ049YW1hcm1hc2NvdGFzYmFja2VuZCIgYXV0aG1ldGhvZD0iY21zIiByZWdtZXRob2Q9IjIyIj4KICAgICAgICAgICAgPHJlbGF0aW9ucz4KICAgICAgICAgICAgICAgIDxyZWxhdGlvbiBrZXk9IjMwNzE3NDIwNjk4IiByZWx0eXBlPSI0Ii8+CiAgICAgICAgICAgIDwvcmVsYXRpb25zPgogICAgICAgIDwvbG9naW4+CiAgICA8L29wZXJhdGlvbj4KPC9zc28+Cg== Ml1frz/ThT7o250KBj2HMgnClJa//oy57+wM96WrdQ1MqRTnlsm0eE65rYs7LcoBFLOdXJyozJhhWmdPXTwOX6lzxeZ+OX6jZxRMX6cRuCs2DLb+x7wS2qqwXo0r911TLeRNk4jFl/TaL1Qi9E0ZXTX8dVo/JIY0dbAD5z/zL70= 1 +\. + + +-- +-- Data for Name: afip_clientvatcondition; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_clientvatcondition (id, code, description, cmp_clase) FROM stdin; +1 1 IVA Responsable Inscripto A,M,C +2 4 IVA Sujeto Exento B,C +3 5 Consumidor Final B,C,49 +4 6 Responsable Monotributo A,M,C +5 7 Sujeto No Categorizado B,C +6 8 Proveedor del Exterior B,C +7 9 Cliente del Exterior B,C +8 10 IVA Liberado – Ley N° 19.640 B,C +9 13 Monotributista Social A,M,C +10 15 IVA No Alcanzado B,C +11 16 Monotributo Trabajador Independiente Promovido A,M,C +\. + + +-- +-- Data for Name: afip_concepttype; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_concepttype (id, code, description, valid_from, valid_to) FROM stdin; +1 1 Producto 2010-09-17 \N +2 2 Servicios 2010-09-17 \N +3 3 Productos y Servicios 2010-09-17 \N +\. + + +-- +-- Data for Name: afip_currencytype; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_currencytype (id, code, description, valid_from, valid_to) FROM stdin; +1 PES Pesos Argentinos 2009-04-03 \N +2 DOL Dólar Estadounidense 2009-04-03 \N +3 002 Dólar Libre EEUU 2009-04-16 \N +4 010 Pesos Mejicanos 2009-04-03 \N +5 011 Pesos Uruguayos 2009-04-03 \N +6 014 Coronas Danesas 2009-04-03 \N +7 015 Coronas Noruegas 2009-04-03 \N +8 016 Coronas Suecas 2009-04-03 \N +9 018 Dólar Canadiense 2009-04-03 \N +10 019 Yens 2009-04-03 \N +11 021 Libra Esterlina 2009-04-03 \N +12 023 Bolívar Venezolano 2009-04-03 \N +13 024 Corona Checa 2009-04-03 \N +14 025 Dinar Serbio 2009-04-03 \N +15 026 Dólar Australiano 2009-04-03 \N +16 028 Florín (Antillas Holandesas) 2009-04-03 \N +17 029 Güaraní 2009-04-03 \N +18 031 Peso Boliviano 2009-04-03 \N +19 032 Peso Colombiano 2009-04-03 \N +20 033 Peso Chileno 2009-04-03 \N +21 034 Rand Sudafricano 2009-04-03 \N +22 051 Dólar de Hong Kong 2009-04-03 \N +23 052 Dólar de Singapur 2009-04-03 \N +24 053 Dólar de Jamaica 2009-04-03 \N +25 054 Dólar de Taiwan 2009-04-03 \N +26 055 Quetzal Guatemalteco 2009-04-03 \N +27 056 Forint (Hungría) 2009-04-03 \N +28 057 Baht (Tailandia) 2009-04-03 \N +29 059 Dinar Kuwaiti 2009-04-03 \N +30 012 Real 2009-04-03 \N +31 030 Shekel (Israel) 2009-04-03 \N +32 035 Nuevo Sol Peruano 2009-04-03 \N +33 060 Euro 2009-04-03 \N +34 040 Leu Rumano 2009-04-15 \N +35 042 Peso Dominicano 2009-04-15 \N +36 043 Balboas Panameñas 2009-04-15 \N +37 044 Córdoba Nicaragüense 2009-04-15 \N +38 045 Dirham Marroquí 2009-04-15 \N +39 046 Libra Egipcia 2009-04-15 \N +40 047 Riyal Saudita 2009-04-15 \N +41 061 Zloty Polaco 2009-04-15 \N +42 062 Rupia Hindú 2009-04-15 \N +43 063 Lempira Hondureña 2009-04-15 \N +44 064 Yuan (Rep. Pop. China) 2009-04-15 \N +45 009 Franco Suizo 2009-11-10 \N +46 041 Derechos Especiales de Giro 2010-01-25 \N +47 049 Gramos de Oro Fino 2010-01-25 \N +48 RUB Rublo (Rusia) 2025-01-15 \N +49 NZD Dólar Neozelandes 2025-01-15 \N +\. + + +-- +-- Data for Name: afip_documenttype; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_documenttype (id, code, description, valid_from, valid_to) FROM stdin; +1 80 CUIT 2008-07-25 \N +2 86 CUIL 2008-07-25 \N +3 87 CDI 2008-07-25 \N +4 89 LE 2008-07-25 \N +5 90 LC 2008-07-25 \N +6 91 CI Extranjera 2008-07-25 \N +7 92 en trámite 2008-07-25 \N +8 93 Acta Nacimiento 2008-07-25 \N +9 95 CI Bs. As. RNP 2008-07-25 \N +10 96 DNI 2008-07-25 \N +11 94 Pasaporte 2008-07-25 \N +12 0 CI Policía Federal 2008-07-25 \N +13 1 CI Buenos Aires 2008-07-25 \N +14 2 CI Catamarca 2008-07-25 \N +15 3 CI Córdoba 2008-07-25 \N +16 4 CI Corrientes 2008-07-28 \N +17 5 CI Entre Ríos 2008-07-28 \N +18 6 CI Jujuy 2008-07-28 \N +19 7 CI Mendoza 2008-07-28 \N +20 8 CI La Rioja 2008-07-28 \N +21 9 CI Salta 2008-07-28 \N +22 10 CI San Juan 2008-07-28 \N +23 11 CI San Luis 2008-07-28 \N +24 12 CI Santa Fe 2008-07-28 \N +25 13 CI Santiago del Estero 2008-07-28 \N +26 14 CI Tucumán 2008-07-28 \N +27 16 CI Chaco 2008-07-28 \N +28 17 CI Chubut 2008-07-28 \N +29 18 CI Formosa 2008-07-28 \N +30 19 CI Misiones 2008-07-28 \N +31 20 CI Neuquén 2008-07-28 \N +32 21 CI La Pampa 2008-07-28 \N +33 22 CI Río Negro 2008-07-28 \N +34 23 CI Santa Cruz 2008-07-28 \N +35 24 CI Tierra del Fuego 2008-07-28 \N +36 99 Doc. (Otro) 2008-07-28 \N +\. + + +-- +-- Data for Name: afip_observation; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_observation (id, code, message) FROM stdin; +\. + + +-- +-- Data for Name: afip_optional; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_optional (id, value, optional_type_id, receipt_id) FROM stdin; +\. + + +-- +-- Data for Name: afip_optionaltype; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_optionaltype (id, code, description, valid_from, valid_to) FROM stdin; +1 2 RG Empresas Promovidas - Indentificador de proyecto vinculado a Régimen de Promoción Industrial 2010-09-17 \N +2 91 RG Bienes Usados 3411 - Nombre y Apellido o Denominación del vendedor del bien usado. 2013-04-01 \N +3 92 RG Bienes Usados 3411 - Nacionalidad del vendedor del bien usado. 2013-04-01 \N +4 93 RG Bienes Usados 3411 - Domicilio del vendedor del bien usado. 2013-04-01 \N +5 5 Excepcion computo IVA Credito Fiscal 2014-10-16 \N +6 61 RG 3668 Impuesto al Valor Agregado - Art.12 IVA Firmante Doc Tipo 2014-10-16 \N +7 62 RG 3668 Impuesto al Valor Agregado - Art.12 IVA Firmante Doc Nro 2014-10-16 \N +8 7 RG 3668 Impuesto al Valor Agregado - Art.12 IVA Carácter del Firmante 2014-10-16 \N +9 10 RG 3.368 Establecimientos de educación pública de gestión privada - Actividad Comprendida 2015-06-05 \N +10 1011 RG 3.368 Establecimientos de educación pública de gestión privada - Tipo de Documento 2015-06-05 \N +11 1012 RG 3.368 Establecimientos de educación pública de gestión privada - Número de Documento 2015-06-05 \N +12 11 RG 2.820 Operaciones económicas vinculadas con bienes inmuebles - Actividad Comprendida 2015-06-05 \N +13 12 RG 3.687 Locación temporaria de inmuebles con fines turísticos - Actividad Comprendida 2015-06-05 \N +14 13 RG 2.863 Representantes de Modelos 2016-01-01 \N +15 14 RG 2.863 Agencias de publicidad 2016-01-01 \N +16 15 RG 2.863 Personas físicas que desarrollen actividad de modelaje 2016-01-01 \N +17 17 RG 4004-E Locación de inmuebles destino 'casa-habitación'. Dato 2 (dos) = facturación directa / Dato 1 (uno) = facturación a través de intermediario 2017-03-09 \N +18 1801 RG 4004-E Locación de inmuebles destino 'casa-habitación'. Clave Única de Identificación Tributaria (CUIT). 2017-03-09 \N +19 1802 RG 4004-E Locación de inmuebles destino 'casa-habitación'. Apellido y nombres, denominación y/o razón social. 2017-03-09 \N +20 2101 Factura de Crédito Electrónica MiPyMEs (FCE) - CBU del Emisor 2018-12-26 \N +21 2102 Factura de Crédito Electrónica MiPyMEs (FCE) - Alias del Emisor 2018-12-26 \N +22 22 Factura de Crédito Electrónica MiPyMEs (FCE) - Anulación 2018-12-26 \N +23 23 Factura de Crédito Electrónica MiPyMEs (FCE) - Referencia Comercial 2019-03-08 \N +24 27 Factura de Credito Electronica MiPyMEs (FCE) - Transferencia 2020-11-26 \N +\. + + +-- +-- Data for Name: afip_pointofsales; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_pointofsales (id, number, issuance_type, blocked, drop_date, owner_id, gross_income_condition, issuing_address, issuing_email, issuing_name, sales_terms, vat_condition) FROM stdin; +1 5 CAE f \N 1 Inscripto Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com AMAR MASCOTAS S.A. inscripto IVA Responsable Inscripto +\. + + +-- +-- Data for Name: afip_receipt; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_receipt (id, document_number, receipt_number, issued_date, total_amount, net_untaxed, net_taxed, exempt_amount, service_start, service_end, expiration_date, currency_quote, concept_id, currency_id, document_type_id, point_of_sales_id, receipt_type_id, client_vat_condition_id) FROM stdin; +1 0 2 2025-09-19 10400.00 0.00 8595.04 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +21 0 22 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-17 2025-09-17 2025-09-19 1.000000 2 1 36 1 4 3 +2 0 3 2025-09-19 28000.00 0.00 23140.50 0.00 2025-09-22 2025-09-22 2025-09-22 1.000000 2 1 36 1 4 3 +3 0 4 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-19 2025-09-19 2025-09-19 1.000000 2 1 36 1 4 3 +34 0 35 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +4 0 5 2025-09-19 48960.00 0.00 40462.81 0.00 2025-09-19 2025-09-19 2025-09-19 1.000000 2 1 36 1 4 3 +22 0 23 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-17 2025-09-17 2025-09-19 1.000000 2 1 36 1 4 3 +5 0 6 2025-09-19 48960.00 0.00 40462.81 0.00 2025-09-19 2025-09-19 2025-09-19 1.000000 2 1 36 1 4 3 +6 0 7 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-19 2025-09-19 2025-09-19 1.000000 2 1 36 1 4 3 +7 0 8 2025-09-19 21400.00 0.00 17685.95 0.00 2025-09-19 2025-09-19 2025-09-19 1.000000 2 1 36 1 4 3 +23 0 24 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-17 2025-09-17 2025-09-19 1.000000 2 1 36 1 4 3 +8 0 9 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +9 0 10 2025-09-19 13000.00 0.00 10743.80 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +10 0 11 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +24 0 25 2025-09-19 13200.00 0.00 10909.09 0.00 2025-09-17 2025-09-17 2025-09-19 1.000000 2 1 36 1 4 3 +11 0 12 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +12 0 13 2025-09-19 30400.00 0.00 25123.97 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +35 0 36 2025-09-19 27000.00 0.00 22314.05 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +13 0 14 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +25 0 26 2025-09-19 13000.00 0.00 10743.80 0.00 2025-09-17 2025-09-17 2025-09-19 1.000000 2 1 36 1 4 3 +14 0 15 2025-09-19 13000.00 0.00 10743.80 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +15 0 16 2025-09-19 1300.00 0.00 1074.38 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +16 0 17 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +26 0 27 2025-09-19 13700.00 0.00 11322.31 0.00 2025-09-17 2025-09-17 2025-09-19 1.000000 2 1 36 1 4 3 +17 0 18 2025-09-19 61900.00 0.00 51157.02 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +18 0 19 2025-09-19 36700.00 0.00 30330.58 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +43 0 44 2025-09-19 296000.00 0.00 244628.10 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +19 0 20 2025-09-19 110000.00 0.00 90909.09 0.00 2025-09-18 2025-09-18 2025-09-19 1.000000 2 1 36 1 4 3 +27 0 28 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-17 2025-09-17 2025-09-19 1.000000 2 1 36 1 4 3 +20 0 21 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-17 2025-09-17 2025-09-19 1.000000 2 1 36 1 4 3 +36 0 37 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +28 0 29 2025-09-19 27500.00 0.00 22727.27 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +29 0 30 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +30 0 31 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +37 0 38 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +31 0 32 2025-09-19 20900.00 0.00 17272.73 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +32 0 33 2025-09-19 21500.00 0.00 17768.60 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +33 0 34 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +38 0 39 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +44 0 45 2025-09-19 13500.00 0.00 11157.02 0.00 2025-09-15 2025-09-15 2025-09-19 1.000000 2 1 36 1 4 3 +39 0 40 2025-09-19 10000.00 0.00 8264.46 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +40 0 41 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +49 0 50 2025-09-19 10000.00 0.00 8264.46 0.00 2025-09-15 2025-09-15 2025-09-19 1.000000 2 1 36 1 4 3 +41 0 42 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +45 0 46 2025-09-19 16200.00 0.00 13388.43 0.00 2025-09-15 2025-09-15 2025-09-19 1.000000 2 1 36 1 4 3 +42 0 43 2025-09-19 13700.00 0.00 11322.31 0.00 2025-09-16 2025-09-16 2025-09-19 1.000000 2 1 36 1 4 3 +46 0 47 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-15 2025-09-15 2025-09-19 1.000000 2 1 36 1 4 3 +55 0 56 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-13 2025-09-13 2025-09-19 1.000000 2 1 36 1 4 3 +47 0 48 2025-09-19 13000.00 0.00 10743.80 0.00 2025-09-15 2025-09-15 2025-09-19 1.000000 2 1 36 1 4 3 +50 0 51 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-15 2025-09-15 2025-09-19 1.000000 2 1 36 1 4 3 +48 0 49 2025-09-19 13000.00 0.00 10743.80 0.00 2025-09-15 2025-09-15 2025-09-19 1.000000 2 1 36 1 4 3 +53 0 54 2025-09-19 25500.00 0.00 21074.38 0.00 2025-09-13 2025-09-13 2025-09-19 1.000000 2 1 36 1 4 3 +51 0 52 2025-09-19 12000.00 0.00 9917.36 0.00 2025-09-14 2025-09-14 2025-09-19 1.000000 2 1 36 1 4 3 +52 0 53 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-14 2025-09-14 2025-09-19 1.000000 2 1 36 1 4 3 +54 0 55 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-13 2025-09-13 2025-09-19 1.000000 2 1 36 1 4 3 +57 0 58 2025-09-19 214900.00 0.00 177603.31 0.00 2025-09-13 2025-09-13 2025-09-19 1.000000 2 1 36 1 4 3 +56 0 57 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-13 2025-09-13 2025-09-19 1.000000 2 1 36 1 4 3 +58 0 59 2025-09-19 27500.00 0.00 22727.27 0.00 2025-09-12 2025-09-12 2025-09-19 1.000000 2 1 36 1 4 3 +59 0 60 2025-09-19 143000.00 0.00 118181.82 0.00 2025-09-12 2025-09-12 2025-09-19 1.000000 2 1 36 1 4 3 +60 0 61 2025-09-19 28000.00 0.00 23140.50 0.00 2025-09-12 2025-09-12 2025-09-19 1.000000 2 1 36 1 4 3 +61 0 62 2025-09-19 10000.00 0.00 8264.46 0.00 2025-09-12 2025-09-12 2025-09-19 1.000000 2 1 36 1 4 3 +62 0 63 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-12 2025-09-12 2025-09-19 1.000000 2 1 36 1 4 3 +63 0 64 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-12 2025-09-12 2025-09-19 1.000000 2 1 36 1 4 3 +64 0 65 2025-09-19 12800.00 0.00 10578.51 0.00 2025-09-12 2025-09-12 2025-09-19 1.000000 2 1 36 1 4 3 +65 0 66 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-12 2025-09-12 2025-09-19 1.000000 2 1 36 1 4 3 +91 0 92 2025-09-19 12000.00 0.00 9917.36 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +66 0 67 2025-09-19 90000.00 0.00 74380.17 0.00 2025-09-12 2025-09-12 2025-09-19 1.000000 2 1 36 1 4 3 +86 0 87 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +67 0 68 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-12 2025-09-12 2025-09-19 1.000000 2 1 36 1 4 3 +92 0 93 2025-09-19 21500.00 0.00 17768.60 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +68 0 69 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-12 2025-09-12 2025-09-19 1.000000 2 1 36 1 4 3 +93 0 94 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +69 0 70 2025-09-19 24200.00 0.00 20000.00 0.00 2025-09-12 2025-09-12 2025-09-19 1.000000 2 1 36 1 4 3 +87 0 88 2025-09-19 10000.00 0.00 8264.46 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +70 0 71 2025-09-19 13000.00 0.00 10743.80 0.00 2025-09-11 2025-09-11 2025-09-19 1.000000 2 1 36 1 4 3 +94 0 95 2025-09-19 9800.00 0.00 8099.17 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +71 0 72 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-11 2025-09-11 2025-09-19 1.000000 2 1 36 1 4 3 +104 0 105 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-08 2025-09-08 2025-09-19 1.000000 2 1 36 1 4 3 +72 0 73 2025-09-19 4900.00 0.00 4049.59 0.00 2025-09-11 2025-09-11 2025-09-19 1.000000 2 1 36 1 4 3 +95 0 96 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +88 0 89 2025-09-19 27400.00 0.00 22644.63 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +73 0 74 2025-09-19 2200.00 0.00 1818.18 0.00 2025-09-11 2025-09-11 2025-09-19 1.000000 2 1 36 1 4 3 +74 0 75 2025-09-19 13200.00 0.00 10909.09 0.00 2025-09-11 2025-09-11 2025-09-19 1.000000 2 1 36 1 4 3 +96 0 97 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +75 0 76 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-11 2025-09-11 2025-09-19 1.000000 2 1 36 1 4 3 +89 0 90 2025-09-19 53400.00 0.00 44132.23 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +76 0 77 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +97 0 98 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +77 0 78 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +105 0 106 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-08 2025-09-08 2025-09-19 1.000000 2 1 36 1 4 3 +98 0 99 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +78 0 79 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +90 0 91 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +79 0 80 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +80 0 81 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +99 0 100 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +112 0 113 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-07 2025-09-07 2025-09-19 1.000000 2 1 36 1 4 3 +81 0 82 2025-09-19 21200.00 0.00 17520.66 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +106 0 107 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-08 2025-09-08 2025-09-19 1.000000 2 1 36 1 4 3 +82 0 83 2025-09-19 27000.00 0.00 22314.05 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +100 0 101 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +83 0 84 2025-09-19 85200.00 0.00 70413.22 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +101 0 102 2025-09-19 21500.00 0.00 17768.60 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +84 0 85 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +85 0 86 2025-09-19 45900.00 0.00 37933.88 0.00 2025-09-10 2025-09-10 2025-09-19 1.000000 2 1 36 1 4 3 +102 0 103 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +107 0 108 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-08 2025-09-08 2025-09-19 1.000000 2 1 36 1 4 3 +103 0 104 2025-09-19 43630.00 0.00 36057.85 0.00 2025-09-09 2025-09-09 2025-09-19 1.000000 2 1 36 1 4 3 +123 0 124 2025-09-19 4000.00 0.00 3305.79 0.00 2025-09-06 2025-09-06 2025-09-19 1.000000 2 1 36 1 4 3 +108 0 109 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-07 2025-09-07 2025-09-19 1.000000 2 1 36 1 4 3 +113 0 114 2025-09-19 27400.00 0.00 22644.63 0.00 2025-09-07 2025-09-07 2025-09-19 1.000000 2 1 36 1 4 3 +109 0 110 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-07 2025-09-07 2025-09-19 1.000000 2 1 36 1 4 3 +110 0 111 2025-09-19 28250.00 0.00 23347.11 0.00 2025-09-07 2025-09-07 2025-09-19 1.000000 2 1 36 1 4 3 +117 0 118 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-06 2025-09-06 2025-09-19 1.000000 2 1 36 1 4 3 +111 0 112 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-07 2025-09-07 2025-09-19 1.000000 2 1 36 1 4 3 +114 0 115 2025-09-19 75000.00 0.00 61983.47 0.00 2025-09-07 2025-09-07 2025-09-19 1.000000 2 1 36 1 4 3 +115 0 116 2025-09-19 13000.00 0.00 10743.80 0.00 2025-09-06 2025-09-06 2025-09-19 1.000000 2 1 36 1 4 3 +120 0 121 2025-09-19 15.00 0.00 12.40 0.00 2025-09-06 2025-09-06 2025-09-19 1.000000 2 1 36 1 4 3 +116 0 117 2025-09-19 9200.00 0.00 7603.31 0.00 2025-09-06 2025-09-06 2025-09-19 1.000000 2 1 36 1 4 3 +118 0 119 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-06 2025-09-06 2025-09-19 1.000000 2 1 36 1 4 3 +119 0 120 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-06 2025-09-06 2025-09-19 1.000000 2 1 36 1 4 3 +122 0 123 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-06 2025-09-06 2025-09-19 1.000000 2 1 36 1 4 3 +121 0 122 2025-09-19 19000.00 0.00 15702.48 0.00 2025-09-06 2025-09-06 2025-09-19 1.000000 2 1 36 1 4 3 +124 0 125 2025-09-19 15000.00 0.00 12396.69 0.00 2025-09-06 2025-09-06 2025-09-19 1.000000 2 1 36 1 4 3 +125 0 126 2025-09-19 15000.00 0.00 12396.69 0.00 2025-09-06 2025-09-06 2025-09-19 1.000000 2 1 36 1 4 3 +126 0 127 2025-09-19 12800.00 0.00 10578.51 0.00 2025-09-05 2025-09-05 2025-09-19 1.000000 2 1 36 1 4 3 +127 0 128 2025-09-19 28000.00 0.00 23140.50 0.00 2025-09-05 2025-09-05 2025-09-19 1.000000 2 1 36 1 4 3 +128 0 129 2025-09-19 30000.00 0.00 24793.39 0.00 2025-09-05 2025-09-05 2025-09-19 1.000000 2 1 36 1 4 3 +129 0 130 2025-09-19 26000.00 0.00 21487.60 0.00 2025-09-05 2025-09-05 2025-09-19 1.000000 2 1 36 1 4 3 +130 0 131 2025-09-19 52000.00 0.00 42975.21 0.00 2025-09-05 2025-09-05 2025-09-19 1.000000 2 1 36 1 4 3 +131 0 132 2025-09-19 7700.00 0.00 6363.64 0.00 2025-09-05 2025-09-05 2025-09-19 1.000000 2 1 36 1 4 3 +152 0 153 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-03 2025-09-03 2025-09-19 1.000000 2 1 36 1 4 3 +132 0 133 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-05 2025-09-05 2025-09-19 1.000000 2 1 36 1 4 3 +153 0 154 2025-09-19 26500.00 0.00 21900.83 0.00 2025-09-03 2025-09-03 2025-09-19 1.000000 2 1 36 1 4 3 +268 0 269 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-23 2025-08-23 2025-09-19 1.000000 2 1 36 1 4 3 +133 0 134 2025-09-19 24200.00 0.00 20000.00 0.00 2025-09-05 2025-09-05 2025-09-19 1.000000 2 1 36 1 4 3 +154 0 155 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-02 2025-09-02 2025-09-19 1.000000 2 1 36 1 4 3 +134 0 135 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-05 2025-09-05 2025-09-19 1.000000 2 1 36 1 4 3 +175 0 176 2025-09-19 13000.00 0.00 10743.80 0.00 2025-09-01 2025-09-01 2025-09-19 1.000000 2 1 36 1 4 3 +135 0 136 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-05 2025-09-05 2025-09-19 1.000000 2 1 36 1 4 3 +155 0 156 2025-09-19 10000.00 0.00 8264.46 0.00 2025-09-02 2025-09-02 2025-09-19 1.000000 2 1 36 1 4 3 +136 0 137 2025-09-19 20000.00 0.00 16528.93 0.00 2025-09-05 2025-09-05 2025-09-19 1.000000 2 1 36 1 4 3 +167 0 168 2025-09-19 9500.00 0.00 7851.24 0.00 2025-09-01 2025-09-01 2025-09-19 1.000000 2 1 36 1 4 3 +156 0 157 2025-09-19 10000.00 0.00 8264.46 0.00 2025-09-02 2025-09-02 2025-09-19 1.000000 2 1 36 1 4 3 +137 0 138 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-04 2025-09-04 2025-09-19 1.000000 2 1 36 1 4 3 +138 0 139 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-04 2025-09-04 2025-09-19 1.000000 2 1 36 1 4 3 +157 0 158 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-02 2025-09-02 2025-09-19 1.000000 2 1 36 1 4 3 +139 0 140 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-04 2025-09-04 2025-09-19 1.000000 2 1 36 1 4 3 +158 0 159 2025-09-19 47700.00 0.00 39421.49 0.00 2025-09-02 2025-09-02 2025-09-19 1.000000 2 1 36 1 4 3 +140 0 141 2025-09-19 13000.00 0.00 10743.80 0.00 2025-09-04 2025-09-04 2025-09-19 1.000000 2 1 36 1 4 3 +168 0 169 2025-09-19 70500.00 0.00 58264.46 0.00 2025-09-01 2025-09-01 2025-09-19 1.000000 2 1 36 1 4 3 +141 0 142 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-04 2025-09-04 2025-09-19 1.000000 2 1 36 1 4 3 +159 0 160 2025-09-19 9500.00 0.00 7851.24 0.00 2025-09-02 2025-09-02 2025-09-19 1.000000 2 1 36 1 4 3 +142 0 143 2025-09-19 15000.00 0.00 12396.69 0.00 2025-09-04 2025-09-04 2025-09-19 1.000000 2 1 36 1 4 3 +160 0 161 2025-09-19 121500.00 0.00 100413.22 0.00 2025-09-02 2025-09-02 2025-09-19 1.000000 2 1 36 1 4 3 +143 0 144 2025-09-19 71060.00 0.00 58727.27 0.00 2025-09-04 2025-09-04 2025-09-19 1.000000 2 1 36 1 4 3 +144 0 145 2025-09-19 13000.00 0.00 10743.80 0.00 2025-09-03 2025-09-03 2025-09-19 1.000000 2 1 36 1 4 3 +161 0 162 2025-09-19 7700.00 0.00 6363.64 0.00 2025-09-02 2025-09-02 2025-09-19 1.000000 2 1 36 1 4 3 +145 0 146 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-03 2025-09-03 2025-09-19 1.000000 2 1 36 1 4 3 +169 0 170 2025-09-19 27500.00 0.00 22727.27 0.00 2025-09-01 2025-09-01 2025-09-19 1.000000 2 1 36 1 4 3 +162 0 163 2025-09-19 49500.00 0.00 40909.09 0.00 2025-09-02 2025-09-02 2025-09-19 1.000000 2 1 36 1 4 3 +146 0 147 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-03 2025-09-03 2025-09-19 1.000000 2 1 36 1 4 3 +147 0 148 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-03 2025-09-03 2025-09-19 1.000000 2 1 36 1 4 3 +163 0 164 2025-09-19 43700.00 0.00 36115.70 0.00 2025-09-02 2025-09-02 2025-09-19 1.000000 2 1 36 1 4 3 +148 0 149 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-03 2025-09-03 2025-09-19 1.000000 2 1 36 1 4 3 +176 0 177 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-31 2025-08-31 2025-09-19 1.000000 2 1 36 1 4 3 +164 0 165 2025-09-19 19000.00 0.00 15702.48 0.00 2025-09-01 2025-09-01 2025-09-19 1.000000 2 1 36 1 4 3 +149 0 150 2025-09-19 11000.00 0.00 9090.91 0.00 2025-09-03 2025-09-03 2025-09-19 1.000000 2 1 36 1 4 3 +170 0 171 2025-09-19 10000.00 0.00 8264.46 0.00 2025-09-01 2025-09-01 2025-09-19 1.000000 2 1 36 1 4 3 +150 0 151 2025-09-19 10000.00 0.00 8264.46 0.00 2025-09-03 2025-09-03 2025-09-19 1.000000 2 1 36 1 4 3 +165 0 166 2025-09-19 9500.00 0.00 7851.24 0.00 2025-09-01 2025-09-01 2025-09-19 1.000000 2 1 36 1 4 3 +151 0 152 2025-09-19 10000.00 0.00 8264.46 0.00 2025-09-03 2025-09-03 2025-09-19 1.000000 2 1 36 1 4 3 +166 0 167 2025-09-19 9500.00 0.00 7851.24 0.00 2025-09-01 2025-09-01 2025-09-19 1.000000 2 1 36 1 4 3 +171 0 172 2025-09-19 72500.00 0.00 59917.36 0.00 2025-09-01 2025-09-01 2025-09-19 1.000000 2 1 36 1 4 3 +181 0 182 2025-09-19 24000.00 0.00 19834.71 0.00 2025-08-31 2025-08-31 2025-09-19 1.000000 2 1 36 1 4 3 +172 0 173 2025-09-19 23500.00 0.00 19421.49 0.00 2025-09-01 2025-09-01 2025-09-19 1.000000 2 1 36 1 4 3 +177 0 178 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-31 2025-08-31 2025-09-19 1.000000 2 1 36 1 4 3 +173 0 174 2025-09-19 15000.00 0.00 12396.69 0.00 2025-09-01 2025-09-01 2025-09-19 1.000000 2 1 36 1 4 3 +174 0 175 2025-09-19 9500.00 0.00 7851.24 0.00 2025-09-01 2025-09-01 2025-09-19 1.000000 2 1 36 1 4 3 +187 0 188 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-30 2025-08-30 2025-09-19 1.000000 2 1 36 1 4 3 +178 0 179 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-31 2025-08-31 2025-09-19 1.000000 2 1 36 1 4 3 +182 0 183 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-31 2025-08-31 2025-09-19 1.000000 2 1 36 1 4 3 +179 0 180 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-31 2025-08-31 2025-09-19 1.000000 2 1 36 1 4 3 +180 0 181 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-31 2025-08-31 2025-09-19 1.000000 2 1 36 1 4 3 +185 0 186 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-31 2025-08-31 2025-09-19 1.000000 2 1 36 1 4 3 +183 0 184 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-31 2025-08-31 2025-09-19 1.000000 2 1 36 1 4 3 +184 0 185 2025-09-19 26500.00 0.00 21900.83 0.00 2025-08-31 2025-08-31 2025-09-19 1.000000 2 1 36 1 4 3 +186 0 187 2025-09-19 78000.00 0.00 64462.81 0.00 2025-08-30 2025-08-30 2025-09-19 1.000000 2 1 36 1 4 3 +189 0 190 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-30 2025-08-30 2025-09-19 1.000000 2 1 36 1 4 3 +188 0 189 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-30 2025-08-30 2025-09-19 1.000000 2 1 36 1 4 3 +190 0 191 2025-09-19 13750.00 0.00 11363.64 0.00 2025-08-30 2025-08-30 2025-09-19 1.000000 2 1 36 1 4 3 +191 0 192 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-30 2025-08-30 2025-09-19 1.000000 2 1 36 1 4 3 +192 0 193 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-30 2025-08-30 2025-09-19 1.000000 2 1 36 1 4 3 +193 0 194 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-30 2025-08-30 2025-09-19 1.000000 2 1 36 1 4 3 +194 0 195 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-30 2025-08-30 2025-09-19 1.000000 2 1 36 1 4 3 +195 0 196 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-30 2025-08-30 2025-09-19 1.000000 2 1 36 1 4 3 +196 0 197 2025-09-19 17000.00 0.00 14049.59 0.00 2025-08-30 2025-08-30 2025-09-19 1.000000 2 1 36 1 4 3 +389 0 390 2025-09-19 12000.00 0.00 9917.36 0.00 2025-08-11 2025-08-11 2025-09-19 1.000000 2 1 36 1 4 3 +197 0 198 2025-09-19 12200.00 0.00 10082.64 0.00 2025-08-29 2025-08-29 2025-09-19 1.000000 2 1 36 1 4 3 +217 0 218 2025-09-19 48200.00 0.00 39834.71 0.00 2025-08-28 2025-08-28 2025-09-19 1.000000 2 1 36 1 4 3 +198 0 199 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-29 2025-08-29 2025-09-19 1.000000 2 1 36 1 4 3 +199 0 200 2025-09-19 11800.00 0.00 9752.07 0.00 2025-08-29 2025-08-29 2025-09-19 1.000000 2 1 36 1 4 3 +200 0 201 2025-09-19 11800.00 0.00 9752.07 0.00 2025-08-29 2025-08-29 2025-09-19 1.000000 2 1 36 1 4 3 +218 0 219 2025-09-19 5300.00 0.00 4380.17 0.00 2025-08-28 2025-08-28 2025-09-19 1.000000 2 1 36 1 4 3 +201 0 202 2025-09-19 11800.00 0.00 9752.07 0.00 2025-08-29 2025-08-29 2025-09-19 1.000000 2 1 36 1 4 3 +202 0 203 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-29 2025-08-29 2025-09-19 1.000000 2 1 36 1 4 3 +203 0 204 2025-09-19 15000.00 0.00 12396.69 0.00 2025-08-29 2025-08-29 2025-09-19 1.000000 2 1 36 1 4 3 +219 0 220 2025-09-19 28500.00 0.00 23553.72 0.00 2025-08-28 2025-08-28 2025-09-19 1.000000 2 1 36 1 4 3 +204 0 205 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-29 2025-08-29 2025-09-19 1.000000 2 1 36 1 4 3 +205 0 206 2025-09-19 53700.00 0.00 44380.17 0.00 2025-08-29 2025-08-29 2025-09-19 1.000000 2 1 36 1 4 3 +231 0 232 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +206 0 207 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-29 2025-08-29 2025-09-19 1.000000 2 1 36 1 4 3 +220 0 221 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-27 2025-08-27 2025-09-19 1.000000 2 1 36 1 4 3 +207 0 208 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-29 2025-08-29 2025-09-19 1.000000 2 1 36 1 4 3 +208 0 209 2025-09-19 5300.00 0.00 4380.17 0.00 2025-08-28 2025-08-28 2025-09-19 1.000000 2 1 36 1 4 3 +209 0 210 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-28 2025-08-28 2025-09-19 1.000000 2 1 36 1 4 3 +221 0 222 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-27 2025-08-27 2025-09-19 1.000000 2 1 36 1 4 3 +210 0 211 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-28 2025-08-28 2025-09-19 1.000000 2 1 36 1 4 3 +211 0 212 2025-09-19 90000.00 0.00 74380.17 0.00 2025-08-28 2025-08-28 2025-09-19 1.000000 2 1 36 1 4 3 +212 0 213 2025-09-19 17000.00 0.00 14049.59 0.00 2025-08-28 2025-08-28 2025-09-19 1.000000 2 1 36 1 4 3 +222 0 223 2025-09-19 40500.00 0.00 33471.07 0.00 2025-08-27 2025-08-27 2025-09-19 1.000000 2 1 36 1 4 3 +213 0 214 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-28 2025-08-28 2025-09-19 1.000000 2 1 36 1 4 3 +214 0 215 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-28 2025-08-28 2025-09-19 1.000000 2 1 36 1 4 3 +232 0 233 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +215 0 216 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-28 2025-08-28 2025-09-19 1.000000 2 1 36 1 4 3 +223 0 224 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-27 2025-08-27 2025-09-19 1.000000 2 1 36 1 4 3 +216 0 217 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-28 2025-08-28 2025-09-19 1.000000 2 1 36 1 4 3 +240 0 241 2025-09-19 20000.00 0.00 16528.93 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +224 0 225 2025-09-19 20200.00 0.00 16694.21 0.00 2025-08-27 2025-08-27 2025-09-19 1.000000 2 1 36 1 4 3 +233 0 234 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +225 0 226 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +226 0 227 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +227 0 228 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +234 0 235 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +228 0 229 2025-09-19 23600.00 0.00 19504.13 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +229 0 230 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +249 0 250 2025-09-19 42500.00 0.00 35123.97 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +230 0 231 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +235 0 236 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +241 0 242 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +236 0 237 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +237 0 238 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +246 0 247 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +238 0 239 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +242 0 243 2025-09-19 5000.00 0.00 4132.23 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +239 0 240 2025-09-19 31500.00 0.00 26033.06 0.00 2025-08-26 2025-08-26 2025-09-19 1.000000 2 1 36 1 4 3 +243 0 244 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +244 0 245 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +247 0 248 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +245 0 246 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +248 0 249 2025-09-19 65700.00 0.00 54297.52 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +253 0 254 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +250 0 251 2025-09-19 54000.00 0.00 44628.10 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +252 0 253 2025-09-19 11500.00 0.00 9504.13 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +251 0 252 2025-09-19 146000.00 0.00 120661.16 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +254 0 255 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +255 0 256 2025-09-19 51400.00 0.00 42479.34 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +256 0 257 2025-09-19 61000.00 0.00 50413.22 0.00 2025-08-25 2025-08-25 2025-09-19 1.000000 2 1 36 1 4 3 +257 0 258 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-24 2025-08-24 2025-09-19 1.000000 2 1 36 1 4 3 +258 0 259 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-24 2025-08-24 2025-09-19 1.000000 2 1 36 1 4 3 +259 0 260 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-24 2025-08-24 2025-09-19 1.000000 2 1 36 1 4 3 +260 0 261 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-24 2025-08-24 2025-09-19 1.000000 2 1 36 1 4 3 +261 0 262 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-24 2025-08-24 2025-09-19 1.000000 2 1 36 1 4 3 +539 0 540 2025-09-19 11800.00 0.00 9752.07 0.00 2025-07-25 2025-07-25 2025-09-19 1.000000 2 1 36 1 4 3 +262 0 263 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-24 2025-08-24 2025-09-19 1.000000 2 1 36 1 4 3 +269 0 270 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-23 2025-08-23 2025-09-19 1.000000 2 1 36 1 4 3 +263 0 264 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-24 2025-08-24 2025-09-19 1.000000 2 1 36 1 4 3 +287 0 288 2025-09-19 11700.00 0.00 9669.42 0.00 2025-08-21 2025-08-21 2025-09-19 1.000000 2 1 36 1 4 3 +270 0 271 2025-09-19 15000.00 0.00 12396.69 0.00 2025-08-23 2025-08-23 2025-09-19 1.000000 2 1 36 1 4 3 +264 0 265 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-24 2025-08-24 2025-09-19 1.000000 2 1 36 1 4 3 +265 0 266 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-23 2025-08-23 2025-09-19 1.000000 2 1 36 1 4 3 +271 0 272 2025-09-19 65000.00 0.00 53719.01 0.00 2025-08-23 2025-08-23 2025-09-19 1.000000 2 1 36 1 4 3 +266 0 267 2025-09-19 5000.00 0.00 4132.23 0.00 2025-08-23 2025-08-23 2025-09-19 1.000000 2 1 36 1 4 3 +299 0 300 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +272 0 273 2025-09-19 35500.00 0.00 29338.84 0.00 2025-08-23 2025-08-23 2025-09-19 1.000000 2 1 36 1 4 3 +267 0 268 2025-09-19 16500.00 0.00 13636.36 0.00 2025-08-23 2025-08-23 2025-09-19 1.000000 2 1 36 1 4 3 +288 0 289 2025-09-19 72000.00 0.00 59504.13 0.00 2025-08-21 2025-08-21 2025-09-19 1.000000 2 1 36 1 4 3 +273 0 274 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-23 2025-08-23 2025-09-19 1.000000 2 1 36 1 4 3 +274 0 275 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-23 2025-08-23 2025-09-19 1.000000 2 1 36 1 4 3 +275 0 276 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-22 2025-08-22 2025-09-19 1.000000 2 1 36 1 4 3 +289 0 290 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-21 2025-08-21 2025-09-19 1.000000 2 1 36 1 4 3 +276 0 277 2025-09-19 11700.00 0.00 9669.42 0.00 2025-08-22 2025-08-22 2025-09-19 1.000000 2 1 36 1 4 3 +277 0 278 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-22 2025-08-22 2025-09-19 1.000000 2 1 36 1 4 3 +307 0 308 2025-09-19 95000.00 0.00 78512.40 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +278 0 279 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-22 2025-08-22 2025-09-19 1.000000 2 1 36 1 4 3 +290 0 291 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-21 2025-08-21 2025-09-19 1.000000 2 1 36 1 4 3 +279 0 280 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-22 2025-08-22 2025-09-19 1.000000 2 1 36 1 4 3 +280 0 281 2025-09-19 205060.00 0.00 169471.07 0.00 2025-08-22 2025-08-22 2025-09-19 1.000000 2 1 36 1 4 3 +300 0 301 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +281 0 282 2025-09-19 11700.00 0.00 9669.42 0.00 2025-08-22 2025-08-22 2025-09-19 1.000000 2 1 36 1 4 3 +291 0 292 2025-09-19 55130.00 0.00 45561.98 0.00 2025-08-21 2025-08-21 2025-09-19 1.000000 2 1 36 1 4 3 +282 0 283 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-22 2025-08-22 2025-09-19 1.000000 2 1 36 1 4 3 +283 0 284 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-21 2025-08-21 2025-09-19 1.000000 2 1 36 1 4 3 +284 0 285 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-21 2025-08-21 2025-09-19 1.000000 2 1 36 1 4 3 +292 0 293 2025-09-19 171700.00 0.00 141900.83 0.00 2025-08-21 2025-08-21 2025-09-19 1.000000 2 1 36 1 4 3 +285 0 286 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-21 2025-08-21 2025-09-19 1.000000 2 1 36 1 4 3 +286 0 287 2025-09-19 40500.00 0.00 33471.07 0.00 2025-08-21 2025-08-21 2025-09-19 1.000000 2 1 36 1 4 3 +301 0 302 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +293 0 294 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +294 0 295 2025-09-19 68000.00 0.00 56198.35 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +312 0 313 2025-09-19 5300.00 0.00 4380.17 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +295 0 296 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +302 0 303 2025-09-19 5300.00 0.00 4380.17 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +296 0 297 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +297 0 298 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +308 0 309 2025-09-19 11700.00 0.00 9669.42 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +298 0 299 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +303 0 304 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +304 0 305 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +309 0 310 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +305 0 306 2025-09-19 29700.00 0.00 24545.45 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +306 0 307 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-20 2025-08-20 2025-09-19 1.000000 2 1 36 1 4 3 +313 0 314 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +310 0 311 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +311 0 312 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +319 0 320 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +316 0 317 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +314 0 315 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +315 0 316 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +318 0 319 2025-09-19 70000.00 0.00 57851.24 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +317 0 318 2025-09-19 24750.00 0.00 20454.55 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +320 0 321 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +321 0 322 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +322 0 323 2025-09-19 5300.00 0.00 4380.17 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +323 0 324 2025-09-19 7700.00 0.00 6363.64 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +324 0 325 2025-09-19 35400.00 0.00 29256.20 0.00 2025-08-19 2025-08-19 2025-09-19 1.000000 2 1 36 1 4 3 +325 0 326 2025-09-19 29250.00 0.00 24173.55 0.00 2025-08-18 2025-08-18 2025-09-19 1.000000 2 1 36 1 4 3 +326 0 327 2025-09-19 14050.00 0.00 11611.57 0.00 2025-08-18 2025-08-18 2025-09-19 1.000000 2 1 36 1 4 3 +327 0 328 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-18 2025-08-18 2025-09-19 1.000000 2 1 36 1 4 3 +783 0 784 2025-09-19 17000.00 0.00 14049.59 0.00 2025-06-26 2025-06-26 2025-09-19 1.000000 2 1 36 1 4 3 +328 0 329 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-18 2025-08-18 2025-09-19 1.000000 2 1 36 1 4 3 +390 0 391 2025-09-19 7700.00 0.00 6363.64 0.00 2025-08-11 2025-08-11 2025-09-19 1.000000 2 1 36 1 4 3 +348 0 349 2025-09-19 48000.00 0.00 39669.42 0.00 2025-08-16 2025-08-16 2025-09-19 1.000000 2 1 36 1 4 3 +329 0 330 2025-09-19 11800.00 0.00 9752.07 0.00 2025-08-18 2025-08-18 2025-09-19 1.000000 2 1 36 1 4 3 +330 0 331 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-18 2025-08-18 2025-09-19 1.000000 2 1 36 1 4 3 +391 0 392 2025-09-19 37350.00 0.00 30867.77 0.00 2025-08-10 2025-08-10 2025-09-19 1.000000 2 1 36 1 4 3 +331 0 332 2025-09-19 21500.00 0.00 17768.60 0.00 2025-08-18 2025-08-18 2025-09-19 1.000000 2 1 36 1 4 3 +392 0 393 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-10 2025-08-10 2025-09-19 1.000000 2 1 36 1 4 3 +349 0 350 2025-09-19 17000.00 0.00 14049.59 0.00 2025-08-15 2025-08-15 2025-09-19 1.000000 2 1 36 1 4 3 +332 0 333 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-17 2025-08-17 2025-09-19 1.000000 2 1 36 1 4 3 +393 0 394 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-10 2025-08-10 2025-09-19 1.000000 2 1 36 1 4 3 +333 0 334 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-17 2025-08-17 2025-09-19 1.000000 2 1 36 1 4 3 +370 0 371 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-13 2025-08-13 2025-09-19 1.000000 2 1 36 1 4 3 +334 0 335 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-17 2025-08-17 2025-09-19 1.000000 2 1 36 1 4 3 +350 0 351 2025-09-19 134190.00 0.00 110900.83 0.00 2025-08-15 2025-08-15 2025-09-19 1.000000 2 1 36 1 4 3 +335 0 336 2025-09-19 25500.00 0.00 21074.38 0.00 2025-08-17 2025-08-17 2025-09-19 1.000000 2 1 36 1 4 3 +336 0 337 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-17 2025-08-17 2025-09-19 1.000000 2 1 36 1 4 3 +362 0 363 2025-09-19 5700.00 0.00 4710.74 0.00 2025-08-14 2025-08-14 2025-09-19 1.000000 2 1 36 1 4 3 +337 0 338 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-17 2025-08-17 2025-09-19 1.000000 2 1 36 1 4 3 +351 0 352 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-15 2025-08-15 2025-09-19 1.000000 2 1 36 1 4 3 +338 0 339 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-17 2025-08-17 2025-09-19 1.000000 2 1 36 1 4 3 +339 0 340 2025-09-19 25000.00 0.00 20661.16 0.00 2025-08-17 2025-08-17 2025-09-19 1.000000 2 1 36 1 4 3 +340 0 341 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-16 2025-08-16 2025-09-19 1.000000 2 1 36 1 4 3 +352 0 353 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-15 2025-08-15 2025-09-19 1.000000 2 1 36 1 4 3 +341 0 342 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-16 2025-08-16 2025-09-19 1.000000 2 1 36 1 4 3 +342 0 343 2025-09-19 5720.00 0.00 4727.27 0.00 2025-08-16 2025-08-16 2025-09-19 1.000000 2 1 36 1 4 3 +343 0 344 2025-09-19 149400.00 0.00 123471.07 0.00 2025-08-16 2025-08-16 2025-09-19 1.000000 2 1 36 1 4 3 +353 0 354 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-15 2025-08-15 2025-09-19 1.000000 2 1 36 1 4 3 +344 0 345 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-16 2025-08-16 2025-09-19 1.000000 2 1 36 1 4 3 +345 0 346 2025-09-19 5000.00 0.00 4132.23 0.00 2025-08-16 2025-08-16 2025-09-19 1.000000 2 1 36 1 4 3 +363 0 364 2025-09-19 61000.00 0.00 50413.22 0.00 2025-08-14 2025-08-14 2025-09-19 1.000000 2 1 36 1 4 3 +346 0 347 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-16 2025-08-16 2025-09-19 1.000000 2 1 36 1 4 3 +354 0 355 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-15 2025-08-15 2025-09-19 1.000000 2 1 36 1 4 3 +347 0 348 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-16 2025-08-16 2025-09-19 1.000000 2 1 36 1 4 3 +355 0 356 2025-09-19 64400.00 0.00 53223.14 0.00 2025-08-15 2025-08-15 2025-09-19 1.000000 2 1 36 1 4 3 +364 0 365 2025-09-19 15000.00 0.00 12396.69 0.00 2025-08-14 2025-08-14 2025-09-19 1.000000 2 1 36 1 4 3 +356 0 357 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-14 2025-08-14 2025-09-19 1.000000 2 1 36 1 4 3 +357 0 358 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-14 2025-08-14 2025-09-19 1.000000 2 1 36 1 4 3 +371 0 372 2025-09-19 5300.00 0.00 4380.17 0.00 2025-08-13 2025-08-13 2025-09-19 1.000000 2 1 36 1 4 3 +358 0 359 2025-09-19 7700.00 0.00 6363.64 0.00 2025-08-14 2025-08-14 2025-09-19 1.000000 2 1 36 1 4 3 +365 0 366 2025-09-19 24750.00 0.00 20454.55 0.00 2025-08-13 2025-08-13 2025-09-19 1.000000 2 1 36 1 4 3 +359 0 360 2025-09-19 6200.00 0.00 5123.97 0.00 2025-08-14 2025-08-14 2025-09-19 1.000000 2 1 36 1 4 3 +360 0 361 2025-09-19 7000.00 0.00 5785.12 0.00 2025-08-14 2025-08-14 2025-09-19 1.000000 2 1 36 1 4 3 +361 0 362 2025-09-19 23500.00 0.00 19421.49 0.00 2025-08-14 2025-08-14 2025-09-19 1.000000 2 1 36 1 4 3 +366 0 367 2025-09-19 24750.00 0.00 20454.55 0.00 2025-08-13 2025-08-13 2025-09-19 1.000000 2 1 36 1 4 3 +376 0 377 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-12 2025-08-12 2025-09-19 1.000000 2 1 36 1 4 3 +367 0 368 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-13 2025-08-13 2025-09-19 1.000000 2 1 36 1 4 3 +372 0 373 2025-09-19 291700.00 0.00 241074.38 0.00 2025-08-13 2025-08-13 2025-09-19 1.000000 2 1 36 1 4 3 +368 0 369 2025-09-19 17000.00 0.00 14049.59 0.00 2025-08-13 2025-08-13 2025-09-19 1.000000 2 1 36 1 4 3 +369 0 370 2025-09-19 11800.00 0.00 9752.07 0.00 2025-08-13 2025-08-13 2025-09-19 1.000000 2 1 36 1 4 3 +382 0 383 2025-09-19 42200.00 0.00 34876.03 0.00 2025-08-12 2025-08-12 2025-09-19 1.000000 2 1 36 1 4 3 +373 0 374 2025-09-19 49000.00 0.00 40495.87 0.00 2025-08-12 2025-08-12 2025-09-19 1.000000 2 1 36 1 4 3 +377 0 378 2025-09-19 11000.00 0.00 9090.91 0.00 2025-08-12 2025-08-12 2025-09-19 1.000000 2 1 36 1 4 3 +374 0 375 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-12 2025-08-12 2025-09-19 1.000000 2 1 36 1 4 3 +375 0 376 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-12 2025-08-12 2025-09-19 1.000000 2 1 36 1 4 3 +380 0 381 2025-09-19 24500.00 0.00 20247.93 0.00 2025-08-12 2025-08-12 2025-09-19 1.000000 2 1 36 1 4 3 +378 0 379 2025-09-19 26000.00 0.00 21487.60 0.00 2025-08-12 2025-08-12 2025-09-19 1.000000 2 1 36 1 4 3 +379 0 380 2025-09-19 500.00 0.00 413.22 0.00 2025-08-12 2025-08-12 2025-09-19 1.000000 2 1 36 1 4 3 +381 0 382 2025-09-19 11980.00 0.00 9900.83 0.00 2025-08-12 2025-08-12 2025-09-19 1.000000 2 1 36 1 4 3 +384 0 385 2025-09-19 11700.00 0.00 9669.42 0.00 2025-08-11 2025-08-11 2025-09-19 1.000000 2 1 36 1 4 3 +383 0 384 2025-09-19 12400.00 0.00 10247.93 0.00 2025-08-11 2025-08-11 2025-09-19 1.000000 2 1 36 1 4 3 +385 0 386 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-11 2025-08-11 2025-09-19 1.000000 2 1 36 1 4 3 +386 0 387 2025-09-19 5000.00 0.00 4132.23 0.00 2025-08-11 2025-08-11 2025-09-19 1.000000 2 1 36 1 4 3 +387 0 388 2025-09-19 6200.00 0.00 5123.97 0.00 2025-08-11 2025-08-11 2025-09-19 1.000000 2 1 36 1 4 3 +388 0 389 2025-09-19 12000.00 0.00 9917.36 0.00 2025-08-11 2025-08-11 2025-09-19 1.000000 2 1 36 1 4 3 +394 0 395 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-10 2025-08-10 2025-09-19 1.000000 2 1 36 1 4 3 +414 0 415 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-08 2025-08-08 2025-09-19 1.000000 2 1 36 1 4 3 +395 0 396 2025-09-19 23250.00 0.00 19214.88 0.00 2025-08-10 2025-08-10 2025-09-19 1.000000 2 1 36 1 4 3 +396 0 397 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-10 2025-08-10 2025-09-19 1.000000 2 1 36 1 4 3 +397 0 398 2025-09-19 5000.00 0.00 4132.23 0.00 2025-08-10 2025-08-10 2025-09-19 1.000000 2 1 36 1 4 3 +415 0 416 2025-09-19 34000.00 0.00 28099.17 0.00 2025-08-08 2025-08-08 2025-09-19 1.000000 2 1 36 1 4 3 +398 0 399 2025-09-19 5000.00 0.00 4132.23 0.00 2025-08-10 2025-08-10 2025-09-19 1.000000 2 1 36 1 4 3 +399 0 400 2025-09-19 5000.00 0.00 4132.23 0.00 2025-08-10 2025-08-10 2025-09-19 1.000000 2 1 36 1 4 3 +400 0 401 2025-09-19 5000.00 0.00 4132.23 0.00 2025-08-10 2025-08-10 2025-09-19 1.000000 2 1 36 1 4 3 +416 0 417 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-07 2025-08-07 2025-09-19 1.000000 2 1 36 1 4 3 +401 0 402 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-09 2025-08-09 2025-09-19 1.000000 2 1 36 1 4 3 +402 0 403 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-09 2025-08-09 2025-09-19 1.000000 2 1 36 1 4 3 +428 0 429 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-06 2025-08-06 2025-09-19 1.000000 2 1 36 1 4 3 +403 0 404 2025-09-19 58150.00 0.00 48057.85 0.00 2025-08-09 2025-08-09 2025-09-19 1.000000 2 1 36 1 4 3 +417 0 418 2025-09-19 30000.00 0.00 24793.39 0.00 2025-08-07 2025-08-07 2025-09-19 1.000000 2 1 36 1 4 3 +404 0 405 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-09 2025-08-09 2025-09-19 1.000000 2 1 36 1 4 3 +405 0 406 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-09 2025-08-09 2025-09-19 1.000000 2 1 36 1 4 3 +406 0 407 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-09 2025-08-09 2025-09-19 1.000000 2 1 36 1 4 3 +418 0 419 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-07 2025-08-07 2025-09-19 1.000000 2 1 36 1 4 3 +407 0 408 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-08 2025-08-08 2025-09-19 1.000000 2 1 36 1 4 3 +408 0 409 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-08 2025-08-08 2025-09-19 1.000000 2 1 36 1 4 3 +442 0 443 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-04 2025-08-04 2025-09-19 1.000000 2 1 36 1 4 3 +409 0 410 2025-09-19 6300.00 0.00 5206.61 0.00 2025-08-08 2025-08-08 2025-09-19 1.000000 2 1 36 1 4 3 +419 0 420 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-07 2025-08-07 2025-09-19 1.000000 2 1 36 1 4 3 +410 0 411 2025-09-19 21200.00 0.00 17520.66 0.00 2025-08-08 2025-08-08 2025-09-19 1.000000 2 1 36 1 4 3 +411 0 412 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-08 2025-08-08 2025-09-19 1.000000 2 1 36 1 4 3 +429 0 430 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-05 2025-08-05 2025-09-19 1.000000 2 1 36 1 4 3 +412 0 413 2025-09-19 17000.00 0.00 14049.59 0.00 2025-08-08 2025-08-08 2025-09-19 1.000000 2 1 36 1 4 3 +420 0 421 2025-09-19 11700.00 0.00 9669.42 0.00 2025-08-07 2025-08-07 2025-09-19 1.000000 2 1 36 1 4 3 +413 0 414 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-08 2025-08-08 2025-09-19 1.000000 2 1 36 1 4 3 +437 0 438 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-04 2025-08-04 2025-09-19 1.000000 2 1 36 1 4 3 +421 0 422 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-07 2025-08-07 2025-09-19 1.000000 2 1 36 1 4 3 +430 0 431 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-05 2025-08-05 2025-09-19 1.000000 2 1 36 1 4 3 +422 0 423 2025-09-19 123000.00 0.00 101652.89 0.00 2025-08-07 2025-08-07 2025-09-19 1.000000 2 1 36 1 4 3 +423 0 424 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-07 2025-08-07 2025-09-19 1.000000 2 1 36 1 4 3 +424 0 425 2025-09-19 10600.00 0.00 8760.33 0.00 2025-08-07 2025-08-07 2025-09-19 1.000000 2 1 36 1 4 3 +431 0 432 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-05 2025-08-05 2025-09-19 1.000000 2 1 36 1 4 3 +425 0 426 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-06 2025-08-06 2025-09-19 1.000000 2 1 36 1 4 3 +426 0 427 2025-09-19 12000.00 0.00 9917.36 0.00 2025-08-06 2025-08-06 2025-09-19 1.000000 2 1 36 1 4 3 +427 0 428 2025-09-19 23400.00 0.00 19338.84 0.00 2025-08-06 2025-08-06 2025-09-19 1.000000 2 1 36 1 4 3 +432 0 433 2025-09-19 24750.00 0.00 20454.55 0.00 2025-08-05 2025-08-05 2025-09-19 1.000000 2 1 36 1 4 3 +438 0 439 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-04 2025-08-04 2025-09-19 1.000000 2 1 36 1 4 3 +433 0 434 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-05 2025-08-05 2025-09-19 1.000000 2 1 36 1 4 3 +434 0 435 2025-09-19 60500.00 0.00 50000.00 0.00 2025-08-05 2025-08-05 2025-09-19 1.000000 2 1 36 1 4 3 +448 0 449 2025-09-19 22350.00 0.00 18471.07 0.00 2025-08-03 2025-08-03 2025-09-19 1.000000 2 1 36 1 4 3 +435 0 436 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-04 2025-08-04 2025-09-19 1.000000 2 1 36 1 4 3 +439 0 440 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-04 2025-08-04 2025-09-19 1.000000 2 1 36 1 4 3 +436 0 437 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-04 2025-08-04 2025-09-19 1.000000 2 1 36 1 4 3 +443 0 444 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-04 2025-08-04 2025-09-19 1.000000 2 1 36 1 4 3 +440 0 441 2025-09-19 44100.00 0.00 36446.28 0.00 2025-08-04 2025-08-04 2025-09-19 1.000000 2 1 36 1 4 3 +441 0 442 2025-09-19 11800.00 0.00 9752.07 0.00 2025-08-04 2025-08-04 2025-09-19 1.000000 2 1 36 1 4 3 +446 0 447 2025-09-19 41800.00 0.00 34545.45 0.00 2025-08-04 2025-08-04 2025-09-19 1.000000 2 1 36 1 4 3 +444 0 445 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-04 2025-08-04 2025-09-19 1.000000 2 1 36 1 4 3 +445 0 446 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-04 2025-08-04 2025-09-19 1.000000 2 1 36 1 4 3 +447 0 448 2025-09-19 5000.00 0.00 4132.23 0.00 2025-08-03 2025-08-03 2025-09-19 1.000000 2 1 36 1 4 3 +450 0 451 2025-09-19 50000.00 0.00 41322.31 0.00 2025-08-03 2025-08-03 2025-09-19 1.000000 2 1 36 1 4 3 +449 0 450 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-03 2025-08-03 2025-09-19 1.000000 2 1 36 1 4 3 +451 0 452 2025-09-19 23600.00 0.00 19504.13 0.00 2025-08-03 2025-08-03 2025-09-19 1.000000 2 1 36 1 4 3 +452 0 453 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-03 2025-08-03 2025-09-19 1.000000 2 1 36 1 4 3 +453 0 454 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-03 2025-08-03 2025-09-19 1.000000 2 1 36 1 4 3 +454 0 455 2025-09-19 27500.00 0.00 22727.27 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +455 0 456 2025-09-19 23500.00 0.00 19421.49 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +456 0 457 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +457 0 458 2025-09-19 29700.00 0.00 24545.45 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +458 0 459 2025-09-19 24900.00 0.00 20578.51 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +540 0 541 2025-09-19 17000.00 0.00 14049.59 0.00 2025-07-25 2025-07-25 2025-09-19 1.000000 2 1 36 1 4 3 +459 0 460 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +479 0 480 2025-09-19 5300.00 0.00 4380.17 0.00 2025-08-01 2025-08-01 2025-09-19 1.000000 2 1 36 1 4 3 +460 0 461 2025-09-19 23600.00 0.00 19504.13 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +461 0 462 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +492 0 493 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-30 2025-07-30 2025-09-19 1.000000 2 1 36 1 4 3 +462 0 463 2025-09-19 10000.00 0.00 8264.46 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +480 0 481 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-31 2025-07-31 2025-09-19 1.000000 2 1 36 1 4 3 +463 0 464 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +464 0 465 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +465 0 466 2025-09-19 47700.00 0.00 39421.49 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +481 0 482 2025-09-19 5500.00 0.00 4545.45 0.00 2025-07-31 2025-07-31 2025-09-19 1.000000 2 1 36 1 4 3 +466 0 467 2025-09-19 14000.00 0.00 11570.25 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +467 0 468 2025-09-19 10550.00 0.00 8719.01 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +501 0 502 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +468 0 469 2025-09-19 12000.00 0.00 9917.36 0.00 2025-08-02 2025-08-02 2025-09-19 1.000000 2 1 36 1 4 3 +482 0 483 2025-09-19 24750.00 0.00 20454.55 0.00 2025-07-31 2025-07-31 2025-09-19 1.000000 2 1 36 1 4 3 +469 0 470 2025-09-19 13000.00 0.00 10743.80 0.00 2025-08-01 2025-08-01 2025-09-19 1.000000 2 1 36 1 4 3 +470 0 471 2025-09-19 9500.00 0.00 7851.24 0.00 2025-08-01 2025-08-01 2025-09-19 1.000000 2 1 36 1 4 3 +493 0 494 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-30 2025-07-30 2025-09-19 1.000000 2 1 36 1 4 3 +471 0 472 2025-09-19 89150.00 0.00 73677.69 0.00 2025-08-01 2025-08-01 2025-09-19 1.000000 2 1 36 1 4 3 +483 0 484 2025-09-19 15000.00 0.00 12396.69 0.00 2025-07-31 2025-07-31 2025-09-19 1.000000 2 1 36 1 4 3 +472 0 473 2025-09-19 11500.00 0.00 9504.13 0.00 2025-08-01 2025-08-01 2025-09-19 1.000000 2 1 36 1 4 3 +473 0 474 2025-09-19 4630.00 0.00 3826.45 0.00 2025-08-01 2025-08-01 2025-09-19 1.000000 2 1 36 1 4 3 +474 0 475 2025-09-19 26460.00 0.00 21867.77 0.00 2025-08-01 2025-08-01 2025-09-19 1.000000 2 1 36 1 4 3 +484 0 485 2025-09-19 15000.00 0.00 12396.69 0.00 2025-07-31 2025-07-31 2025-09-19 1.000000 2 1 36 1 4 3 +475 0 476 2025-09-19 5300.00 0.00 4380.17 0.00 2025-08-01 2025-08-01 2025-09-19 1.000000 2 1 36 1 4 3 +476 0 477 2025-09-19 23600.00 0.00 19504.13 0.00 2025-08-01 2025-08-01 2025-09-19 1.000000 2 1 36 1 4 3 +477 0 478 2025-09-19 5800.00 0.00 4793.39 0.00 2025-08-01 2025-08-01 2025-09-19 1.000000 2 1 36 1 4 3 +485 0 486 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-31 2025-07-31 2025-09-19 1.000000 2 1 36 1 4 3 +478 0 479 2025-09-19 19000.00 0.00 15702.48 0.00 2025-08-01 2025-08-01 2025-09-19 1.000000 2 1 36 1 4 3 +494 0 495 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-30 2025-07-30 2025-09-19 1.000000 2 1 36 1 4 3 +486 0 487 2025-09-19 117600.00 0.00 97190.08 0.00 2025-07-31 2025-07-31 2025-09-19 1.000000 2 1 36 1 4 3 +487 0 488 2025-09-19 59530.00 0.00 49198.35 0.00 2025-07-31 2025-07-31 2025-09-19 1.000000 2 1 36 1 4 3 +495 0 496 2025-09-19 28500.00 0.00 23553.72 0.00 2025-07-30 2025-07-30 2025-09-19 1.000000 2 1 36 1 4 3 +488 0 489 2025-09-19 11700.00 0.00 9669.42 0.00 2025-07-31 2025-07-31 2025-09-19 1.000000 2 1 36 1 4 3 +489 0 490 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-30 2025-07-30 2025-09-19 1.000000 2 1 36 1 4 3 +502 0 503 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +490 0 491 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-30 2025-07-30 2025-09-19 1.000000 2 1 36 1 4 3 +496 0 497 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-30 2025-07-30 2025-09-19 1.000000 2 1 36 1 4 3 +491 0 492 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-30 2025-07-30 2025-09-19 1.000000 2 1 36 1 4 3 +507 0 508 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +497 0 498 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +503 0 504 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +498 0 499 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +499 0 500 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +500 0 501 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +513 0 514 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-28 2025-07-28 2025-09-19 1.000000 2 1 36 1 4 3 +504 0 505 2025-09-19 15000.00 0.00 12396.69 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +508 0 509 2025-09-19 83600.00 0.00 69090.91 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +505 0 506 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +506 0 507 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +511 0 512 2025-09-19 44700.00 0.00 36942.15 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +509 0 510 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +510 0 511 2025-09-19 4630.00 0.00 3826.45 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +512 0 513 2025-09-19 57700.00 0.00 47685.95 0.00 2025-07-29 2025-07-29 2025-09-19 1.000000 2 1 36 1 4 3 +515 0 516 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-28 2025-07-28 2025-09-19 1.000000 2 1 36 1 4 3 +514 0 515 2025-09-19 24750.00 0.00 20454.55 0.00 2025-07-28 2025-07-28 2025-09-19 1.000000 2 1 36 1 4 3 +516 0 517 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-28 2025-07-28 2025-09-19 1.000000 2 1 36 1 4 3 +517 0 518 2025-09-19 23600.00 0.00 19504.13 0.00 2025-07-28 2025-07-28 2025-09-19 1.000000 2 1 36 1 4 3 +518 0 519 2025-09-19 19200.00 0.00 15867.77 0.00 2025-07-28 2025-07-28 2025-09-19 1.000000 2 1 36 1 4 3 +519 0 520 2025-09-19 46000.00 0.00 38016.53 0.00 2025-07-28 2025-07-28 2025-09-19 1.000000 2 1 36 1 4 3 +520 0 521 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-27 2025-07-27 2025-09-19 1.000000 2 1 36 1 4 3 +521 0 522 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-27 2025-07-27 2025-09-19 1.000000 2 1 36 1 4 3 +522 0 523 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-27 2025-07-27 2025-09-19 1.000000 2 1 36 1 4 3 +523 0 524 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-27 2025-07-27 2025-09-19 1.000000 2 1 36 1 4 3 +524 0 525 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-27 2025-07-27 2025-09-19 1.000000 2 1 36 1 4 3 +541 0 542 2025-09-19 44700.00 0.00 36942.15 0.00 2025-07-25 2025-07-25 2025-09-19 1.000000 2 1 36 1 4 3 +525 0 526 2025-09-19 6430.00 0.00 5314.05 0.00 2025-07-27 2025-07-27 2025-09-19 1.000000 2 1 36 1 4 3 +556 0 557 2025-09-19 7700.00 0.00 6363.64 0.00 2025-07-23 2025-07-23 2025-09-19 1.000000 2 1 36 1 4 3 +526 0 527 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-26 2025-07-26 2025-09-19 1.000000 2 1 36 1 4 3 +542 0 543 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-25 2025-07-25 2025-09-19 1.000000 2 1 36 1 4 3 +527 0 528 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-26 2025-07-26 2025-09-19 1.000000 2 1 36 1 4 3 +543 0 544 2025-09-19 56700.00 0.00 46859.50 0.00 2025-07-25 2025-07-25 2025-09-19 1.000000 2 1 36 1 4 3 +528 0 529 2025-09-19 5300.00 0.00 4380.17 0.00 2025-07-26 2025-07-26 2025-09-19 1.000000 2 1 36 1 4 3 +566 0 567 2025-09-19 30000.00 0.00 24793.39 0.00 2025-07-22 2025-07-22 2025-09-19 1.000000 2 1 36 1 4 3 +529 0 530 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-26 2025-07-26 2025-09-19 1.000000 2 1 36 1 4 3 +544 0 545 2025-09-19 120500.00 0.00 99586.78 0.00 2025-07-25 2025-07-25 2025-09-19 1.000000 2 1 36 1 4 3 +530 0 531 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-26 2025-07-26 2025-09-19 1.000000 2 1 36 1 4 3 +557 0 558 2025-09-19 11700.00 0.00 9669.42 0.00 2025-07-23 2025-07-23 2025-09-19 1.000000 2 1 36 1 4 3 +545 0 546 2025-09-19 11000.00 0.00 9090.91 0.00 2025-07-25 2025-07-25 2025-09-19 1.000000 2 1 36 1 4 3 +531 0 532 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-26 2025-07-26 2025-09-19 1.000000 2 1 36 1 4 3 +532 0 533 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-26 2025-07-26 2025-09-19 1.000000 2 1 36 1 4 3 +546 0 547 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-24 2025-07-24 2025-09-19 1.000000 2 1 36 1 4 3 +533 0 534 2025-09-19 11700.00 0.00 9669.42 0.00 2025-07-26 2025-07-26 2025-09-19 1.000000 2 1 36 1 4 3 +547 0 548 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-24 2025-07-24 2025-09-19 1.000000 2 1 36 1 4 3 +534 0 535 2025-09-19 45000.00 0.00 37190.08 0.00 2025-07-26 2025-07-26 2025-09-19 1.000000 2 1 36 1 4 3 +558 0 559 2025-09-19 66500.00 0.00 54958.68 0.00 2025-07-23 2025-07-23 2025-09-19 1.000000 2 1 36 1 4 3 +535 0 536 2025-09-19 24000.00 0.00 19834.71 0.00 2025-07-26 2025-07-26 2025-09-19 1.000000 2 1 36 1 4 3 +548 0 549 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-24 2025-07-24 2025-09-19 1.000000 2 1 36 1 4 3 +536 0 537 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-25 2025-07-25 2025-09-19 1.000000 2 1 36 1 4 3 +549 0 550 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-24 2025-07-24 2025-09-19 1.000000 2 1 36 1 4 3 +537 0 538 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-25 2025-07-25 2025-09-19 1.000000 2 1 36 1 4 3 +577 0 578 2025-09-19 23400.00 0.00 19338.84 0.00 2025-07-21 2025-07-21 2025-09-19 1.000000 2 1 36 1 4 3 +538 0 539 2025-09-19 26600.00 0.00 21983.47 0.00 2025-07-25 2025-07-25 2025-09-19 1.000000 2 1 36 1 4 3 +550 0 551 2025-09-19 7700.00 0.00 6363.64 0.00 2025-07-24 2025-07-24 2025-09-19 1.000000 2 1 36 1 4 3 +559 0 560 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-23 2025-07-23 2025-09-19 1.000000 2 1 36 1 4 3 +551 0 552 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-24 2025-07-24 2025-09-19 1.000000 2 1 36 1 4 3 +552 0 553 2025-09-19 26500.00 0.00 21900.83 0.00 2025-07-24 2025-07-24 2025-09-19 1.000000 2 1 36 1 4 3 +567 0 568 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-22 2025-07-22 2025-09-19 1.000000 2 1 36 1 4 3 +553 0 554 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-24 2025-07-24 2025-09-19 1.000000 2 1 36 1 4 3 +560 0 561 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-23 2025-07-23 2025-09-19 1.000000 2 1 36 1 4 3 +554 0 555 2025-09-19 59400.00 0.00 49090.91 0.00 2025-07-24 2025-07-24 2025-09-19 1.000000 2 1 36 1 4 3 +555 0 556 2025-09-19 11700.00 0.00 9669.42 0.00 2025-07-23 2025-07-23 2025-09-19 1.000000 2 1 36 1 4 3 +561 0 562 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-23 2025-07-23 2025-09-19 1.000000 2 1 36 1 4 3 +573 0 574 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-21 2025-07-21 2025-09-19 1.000000 2 1 36 1 4 3 +562 0 563 2025-09-19 49700.00 0.00 41074.38 0.00 2025-07-23 2025-07-23 2025-09-19 1.000000 2 1 36 1 4 3 +568 0 569 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-22 2025-07-22 2025-09-19 1.000000 2 1 36 1 4 3 +563 0 564 2025-09-19 83100.00 0.00 68677.69 0.00 2025-07-23 2025-07-23 2025-09-19 1.000000 2 1 36 1 4 3 +564 0 565 2025-09-19 22500.00 0.00 18595.04 0.00 2025-07-23 2025-07-23 2025-09-19 1.000000 2 1 36 1 4 3 +565 0 566 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-22 2025-07-22 2025-09-19 1.000000 2 1 36 1 4 3 +569 0 570 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-22 2025-07-22 2025-09-19 1.000000 2 1 36 1 4 3 +570 0 571 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-22 2025-07-22 2025-09-19 1.000000 2 1 36 1 4 3 +574 0 575 2025-09-19 17000.00 0.00 14049.59 0.00 2025-07-21 2025-07-21 2025-09-19 1.000000 2 1 36 1 4 3 +571 0 572 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-22 2025-07-22 2025-09-19 1.000000 2 1 36 1 4 3 +572 0 573 2025-09-19 5300.00 0.00 4380.17 0.00 2025-07-21 2025-07-21 2025-09-19 1.000000 2 1 36 1 4 3 +580 0 581 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-19 2025-07-19 2025-09-19 1.000000 2 1 36 1 4 3 +575 0 576 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-21 2025-07-21 2025-09-19 1.000000 2 1 36 1 4 3 +578 0 579 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-21 2025-07-21 2025-09-19 1.000000 2 1 36 1 4 3 +576 0 577 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-21 2025-07-21 2025-09-19 1.000000 2 1 36 1 4 3 +582 0 583 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-19 2025-07-19 2025-09-19 1.000000 2 1 36 1 4 3 +579 0 580 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-20 2025-07-20 2025-09-19 1.000000 2 1 36 1 4 3 +581 0 582 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-19 2025-07-19 2025-09-19 1.000000 2 1 36 1 4 3 +583 0 584 2025-09-19 24400.00 0.00 20165.29 0.00 2025-07-19 2025-07-19 2025-09-19 1.000000 2 1 36 1 4 3 +584 0 585 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-19 2025-07-19 2025-09-19 1.000000 2 1 36 1 4 3 +585 0 586 2025-09-19 24000.00 0.00 19834.71 0.00 2025-07-19 2025-07-19 2025-09-19 1.000000 2 1 36 1 4 3 +586 0 587 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-19 2025-07-19 2025-09-19 1.000000 2 1 36 1 4 3 +587 0 588 2025-09-19 18700.00 0.00 15454.55 0.00 2025-07-19 2025-07-19 2025-09-19 1.000000 2 1 36 1 4 3 +588 0 589 2025-09-19 15000.00 0.00 12396.69 0.00 2025-07-19 2025-07-19 2025-09-19 1.000000 2 1 36 1 4 3 +589 0 590 2025-09-19 15000.00 0.00 12396.69 0.00 2025-07-19 2025-07-19 2025-09-19 1.000000 2 1 36 1 4 3 +590 0 591 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-18 2025-07-18 2025-09-19 1.000000 2 1 36 1 4 3 +784 0 785 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-26 2025-06-26 2025-09-19 1.000000 2 1 36 1 4 3 +591 0 592 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-18 2025-07-18 2025-09-19 1.000000 2 1 36 1 4 3 +611 0 612 2025-09-19 23600.00 0.00 19504.13 0.00 2025-07-16 2025-07-16 2025-09-19 1.000000 2 1 36 1 4 3 +592 0 593 2025-09-19 45000.00 0.00 37190.08 0.00 2025-07-18 2025-07-18 2025-09-19 1.000000 2 1 36 1 4 3 +593 0 594 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-18 2025-07-18 2025-09-19 1.000000 2 1 36 1 4 3 +594 0 595 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +612 0 613 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-16 2025-07-16 2025-09-19 1.000000 2 1 36 1 4 3 +595 0 596 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +596 0 597 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +597 0 598 2025-09-19 5100.00 0.00 4214.88 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +613 0 614 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-16 2025-07-16 2025-09-19 1.000000 2 1 36 1 4 3 +598 0 599 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +599 0 600 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +625 0 626 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-15 2025-07-15 2025-09-19 1.000000 2 1 36 1 4 3 +600 0 601 2025-09-19 15000.00 0.00 12396.69 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +614 0 615 2025-09-19 29250.00 0.00 24173.55 0.00 2025-07-16 2025-07-16 2025-09-19 1.000000 2 1 36 1 4 3 +601 0 602 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +602 0 603 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +603 0 604 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +615 0 616 2025-09-19 34560.00 0.00 28561.98 0.00 2025-07-16 2025-07-16 2025-09-19 1.000000 2 1 36 1 4 3 +604 0 605 2025-09-19 11700.00 0.00 9669.42 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +605 0 606 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +639 0 640 2025-09-19 11500.00 0.00 9504.13 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +606 0 607 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +616 0 617 2025-09-19 25000.00 0.00 20661.16 0.00 2025-07-16 2025-07-16 2025-09-19 1.000000 2 1 36 1 4 3 +607 0 608 2025-09-19 11700.00 0.00 9669.42 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +608 0 609 2025-09-19 73000.00 0.00 60330.58 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +626 0 627 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-15 2025-07-15 2025-09-19 1.000000 2 1 36 1 4 3 +609 0 610 2025-09-19 7700.00 0.00 6363.64 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +617 0 618 2025-09-19 42000.00 0.00 34710.74 0.00 2025-07-16 2025-07-16 2025-09-19 1.000000 2 1 36 1 4 3 +610 0 611 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-17 2025-07-17 2025-09-19 1.000000 2 1 36 1 4 3 +634 0 635 2025-09-19 70300.00 0.00 58099.17 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +618 0 619 2025-09-19 24000.00 0.00 19834.71 0.00 2025-07-15 2025-07-15 2025-09-19 1.000000 2 1 36 1 4 3 +627 0 628 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +619 0 620 2025-09-19 5300.00 0.00 4380.17 0.00 2025-07-15 2025-07-15 2025-09-19 1.000000 2 1 36 1 4 3 +620 0 621 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-15 2025-07-15 2025-09-19 1.000000 2 1 36 1 4 3 +621 0 622 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-15 2025-07-15 2025-09-19 1.000000 2 1 36 1 4 3 +628 0 629 2025-09-19 23000.00 0.00 19008.26 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +622 0 623 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-15 2025-07-15 2025-09-19 1.000000 2 1 36 1 4 3 +623 0 624 2025-09-19 17000.00 0.00 14049.59 0.00 2025-07-15 2025-07-15 2025-09-19 1.000000 2 1 36 1 4 3 +624 0 625 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-15 2025-07-15 2025-09-19 1.000000 2 1 36 1 4 3 +629 0 630 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +635 0 636 2025-09-19 15000.00 0.00 12396.69 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +630 0 631 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +631 0 632 2025-09-19 30000.00 0.00 24793.39 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +645 0 646 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-13 2025-07-13 2025-09-19 1.000000 2 1 36 1 4 3 +632 0 633 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +636 0 637 2025-09-19 11700.00 0.00 9669.42 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +633 0 634 2025-09-19 17100.00 0.00 14132.23 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +640 0 641 2025-09-19 11500.00 0.00 9504.13 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +637 0 638 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +638 0 639 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-14 2025-07-14 2025-09-19 1.000000 2 1 36 1 4 3 +643 0 644 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-13 2025-07-13 2025-09-19 1.000000 2 1 36 1 4 3 +641 0 642 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-13 2025-07-13 2025-09-19 1.000000 2 1 36 1 4 3 +642 0 643 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-13 2025-07-13 2025-09-19 1.000000 2 1 36 1 4 3 +644 0 645 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-13 2025-07-13 2025-09-19 1.000000 2 1 36 1 4 3 +647 0 648 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-12 2025-07-12 2025-09-19 1.000000 2 1 36 1 4 3 +646 0 647 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-12 2025-07-12 2025-09-19 1.000000 2 1 36 1 4 3 +648 0 649 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-12 2025-07-12 2025-09-19 1.000000 2 1 36 1 4 3 +649 0 650 2025-09-19 26300.00 0.00 21735.54 0.00 2025-07-12 2025-07-12 2025-09-19 1.000000 2 1 36 1 4 3 +650 0 651 2025-09-19 11800.00 0.00 9752.07 0.00 2025-07-12 2025-07-12 2025-09-19 1.000000 2 1 36 1 4 3 +651 0 652 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-12 2025-07-12 2025-09-19 1.000000 2 1 36 1 4 3 +652 0 653 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-12 2025-07-12 2025-09-19 1.000000 2 1 36 1 4 3 +653 0 654 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-12 2025-07-12 2025-09-19 1.000000 2 1 36 1 4 3 +654 0 655 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-12 2025-07-12 2025-09-19 1.000000 2 1 36 1 4 3 +655 0 656 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-11 2025-07-11 2025-09-19 1.000000 2 1 36 1 4 3 +656 0 657 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-11 2025-07-11 2025-09-19 1.000000 2 1 36 1 4 3 +676 0 677 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-09 2025-07-09 2025-09-19 1.000000 2 1 36 1 4 3 +657 0 658 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-11 2025-07-11 2025-09-19 1.000000 2 1 36 1 4 3 +658 0 659 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-11 2025-07-11 2025-09-19 1.000000 2 1 36 1 4 3 +659 0 660 2025-09-19 11000.00 0.00 9090.91 0.00 2025-07-11 2025-07-11 2025-09-19 1.000000 2 1 36 1 4 3 +677 0 678 2025-09-19 24000.00 0.00 19834.71 0.00 2025-07-09 2025-07-09 2025-09-19 1.000000 2 1 36 1 4 3 +660 0 661 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-11 2025-07-11 2025-09-19 1.000000 2 1 36 1 4 3 +661 0 662 2025-09-19 13700.00 0.00 11322.31 0.00 2025-07-11 2025-07-11 2025-09-19 1.000000 2 1 36 1 4 3 +662 0 663 2025-09-19 42000.00 0.00 34710.74 0.00 2025-07-11 2025-07-11 2025-09-19 1.000000 2 1 36 1 4 3 +678 0 679 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-09 2025-07-09 2025-09-19 1.000000 2 1 36 1 4 3 +663 0 664 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-10 2025-07-10 2025-09-19 1.000000 2 1 36 1 4 3 +664 0 665 2025-09-19 5000.00 0.00 4132.23 0.00 2025-07-10 2025-07-10 2025-09-19 1.000000 2 1 36 1 4 3 +690 0 691 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-08 2025-07-08 2025-09-19 1.000000 2 1 36 1 4 3 +665 0 666 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-10 2025-07-10 2025-09-19 1.000000 2 1 36 1 4 3 +679 0 680 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-09 2025-07-09 2025-09-19 1.000000 2 1 36 1 4 3 +666 0 667 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-10 2025-07-10 2025-09-19 1.000000 2 1 36 1 4 3 +667 0 668 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-10 2025-07-10 2025-09-19 1.000000 2 1 36 1 4 3 +668 0 669 2025-09-19 24000.00 0.00 19834.71 0.00 2025-07-10 2025-07-10 2025-09-19 1.000000 2 1 36 1 4 3 +680 0 681 2025-09-19 33000.00 0.00 27272.73 0.00 2025-07-09 2025-07-09 2025-09-19 1.000000 2 1 36 1 4 3 +669 0 670 2025-09-19 47230.00 0.00 39033.06 0.00 2025-07-10 2025-07-10 2025-09-19 1.000000 2 1 36 1 4 3 +670 0 671 2025-09-19 20000.00 0.00 16528.93 0.00 2025-07-10 2025-07-10 2025-09-19 1.000000 2 1 36 1 4 3 +671 0 672 2025-09-19 13650.00 0.00 11280.99 0.00 2025-07-10 2025-07-10 2025-09-19 1.000000 2 1 36 1 4 3 +681 0 682 2025-09-19 21200.00 0.00 17520.66 0.00 2025-07-09 2025-07-09 2025-09-19 1.000000 2 1 36 1 4 3 +672 0 673 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-10 2025-07-10 2025-09-19 1.000000 2 1 36 1 4 3 +673 0 674 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-09 2025-07-09 2025-09-19 1.000000 2 1 36 1 4 3 +691 0 692 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-08 2025-07-08 2025-09-19 1.000000 2 1 36 1 4 3 +674 0 675 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-09 2025-07-09 2025-09-19 1.000000 2 1 36 1 4 3 +682 0 683 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-08 2025-07-08 2025-09-19 1.000000 2 1 36 1 4 3 +675 0 676 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-09 2025-07-09 2025-09-19 1.000000 2 1 36 1 4 3 +699 0 700 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-05 2025-07-05 2025-09-19 1.000000 2 1 36 1 4 3 +683 0 684 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-08 2025-07-08 2025-09-19 1.000000 2 1 36 1 4 3 +692 0 693 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-07 2025-07-07 2025-09-19 1.000000 2 1 36 1 4 3 +684 0 685 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-08 2025-07-08 2025-09-19 1.000000 2 1 36 1 4 3 +685 0 686 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-08 2025-07-08 2025-09-19 1.000000 2 1 36 1 4 3 +686 0 687 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-08 2025-07-08 2025-09-19 1.000000 2 1 36 1 4 3 +693 0 694 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-07 2025-07-07 2025-09-19 1.000000 2 1 36 1 4 3 +687 0 688 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-08 2025-07-08 2025-09-19 1.000000 2 1 36 1 4 3 +688 0 689 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-08 2025-07-08 2025-09-19 1.000000 2 1 36 1 4 3 +689 0 690 2025-09-19 30000.00 0.00 24793.39 0.00 2025-07-08 2025-07-08 2025-09-19 1.000000 2 1 36 1 4 3 +694 0 695 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-07 2025-07-07 2025-09-19 1.000000 2 1 36 1 4 3 +700 0 701 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-05 2025-07-05 2025-09-19 1.000000 2 1 36 1 4 3 +695 0 696 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-07 2025-07-07 2025-09-19 1.000000 2 1 36 1 4 3 +696 0 697 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-07 2025-07-07 2025-09-19 1.000000 2 1 36 1 4 3 +705 0 706 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-05 2025-07-05 2025-09-19 1.000000 2 1 36 1 4 3 +697 0 698 2025-09-19 20000.00 0.00 16528.93 0.00 2025-07-06 2025-07-06 2025-09-19 1.000000 2 1 36 1 4 3 +701 0 702 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-05 2025-07-05 2025-09-19 1.000000 2 1 36 1 4 3 +698 0 699 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-06 2025-07-06 2025-09-19 1.000000 2 1 36 1 4 3 +702 0 703 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-05 2025-07-05 2025-09-19 1.000000 2 1 36 1 4 3 +711 0 712 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-04 2025-07-04 2025-09-19 1.000000 2 1 36 1 4 3 +703 0 704 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-05 2025-07-05 2025-09-19 1.000000 2 1 36 1 4 3 +706 0 707 2025-09-19 35000.00 0.00 28925.62 0.00 2025-07-05 2025-07-05 2025-09-19 1.000000 2 1 36 1 4 3 +704 0 705 2025-09-19 72000.00 0.00 59504.13 0.00 2025-07-05 2025-07-05 2025-09-19 1.000000 2 1 36 1 4 3 +709 0 710 2025-09-19 53000.00 0.00 43801.65 0.00 2025-07-04 2025-07-04 2025-09-19 1.000000 2 1 36 1 4 3 +707 0 708 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-04 2025-07-04 2025-09-19 1.000000 2 1 36 1 4 3 +708 0 709 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-04 2025-07-04 2025-09-19 1.000000 2 1 36 1 4 3 +710 0 711 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-04 2025-07-04 2025-09-19 1.000000 2 1 36 1 4 3 +713 0 714 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-04 2025-07-04 2025-09-19 1.000000 2 1 36 1 4 3 +712 0 713 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-04 2025-07-04 2025-09-19 1.000000 2 1 36 1 4 3 +714 0 715 2025-09-19 15000.00 0.00 12396.69 0.00 2025-07-04 2025-07-04 2025-09-19 1.000000 2 1 36 1 4 3 +715 0 716 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-04 2025-07-04 2025-09-19 1.000000 2 1 36 1 4 3 +716 0 717 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +717 0 718 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +718 0 719 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +719 0 720 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +720 0 721 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +721 0 722 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +785 0 786 2025-09-19 27500.00 0.00 22727.27 0.00 2025-06-26 2025-06-26 2025-09-19 1.000000 2 1 36 1 4 3 +741 0 742 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +722 0 723 2025-09-19 17000.00 0.00 14049.59 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +723 0 724 2025-09-19 26400.00 0.00 21818.18 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +786 0 787 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-26 2025-06-26 2025-09-19 1.000000 2 1 36 1 4 3 +724 0 725 2025-09-19 15900.00 0.00 13140.50 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +787 0 788 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-26 2025-06-26 2025-09-19 1.000000 2 1 36 1 4 3 +742 0 743 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +725 0 726 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +726 0 727 2025-09-19 200100.00 0.00 165371.90 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +727 0 728 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +743 0 744 2025-09-19 23400.00 0.00 19338.84 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +728 0 729 2025-09-19 9900.00 0.00 8181.82 0.00 2025-07-03 2025-07-03 2025-09-19 1.000000 2 1 36 1 4 3 +729 0 730 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-02 2025-07-02 2025-09-19 1.000000 2 1 36 1 4 3 +755 0 756 2025-09-19 27500.00 0.00 22727.27 0.00 2025-06-30 2025-06-30 2025-09-19 1.000000 2 1 36 1 4 3 +730 0 731 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-02 2025-07-02 2025-09-19 1.000000 2 1 36 1 4 3 +744 0 745 2025-09-19 7700.00 0.00 6363.64 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +731 0 732 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-02 2025-07-02 2025-09-19 1.000000 2 1 36 1 4 3 +732 0 733 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-02 2025-07-02 2025-09-19 1.000000 2 1 36 1 4 3 +733 0 734 2025-09-19 10600.00 0.00 8760.33 0.00 2025-07-02 2025-07-02 2025-09-19 1.000000 2 1 36 1 4 3 +745 0 746 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +734 0 735 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-02 2025-07-02 2025-09-19 1.000000 2 1 36 1 4 3 +735 0 736 2025-09-19 20000.00 0.00 16528.93 0.00 2025-07-02 2025-07-02 2025-09-19 1.000000 2 1 36 1 4 3 +736 0 737 2025-09-19 45000.00 0.00 37190.08 0.00 2025-07-02 2025-07-02 2025-09-19 1.000000 2 1 36 1 4 3 +746 0 747 2025-09-19 11500.00 0.00 9504.13 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +737 0 738 2025-09-19 11700.00 0.00 9669.42 0.00 2025-07-02 2025-07-02 2025-09-19 1.000000 2 1 36 1 4 3 +738 0 739 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +756 0 757 2025-09-19 45000.00 0.00 37190.08 0.00 2025-06-30 2025-06-30 2025-09-19 1.000000 2 1 36 1 4 3 +739 0 740 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +747 0 748 2025-09-19 12000.00 0.00 9917.36 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +740 0 741 2025-09-19 9500.00 0.00 7851.24 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +764 0 765 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-28 2025-06-28 2025-09-19 1.000000 2 1 36 1 4 3 +748 0 749 2025-09-19 27500.00 0.00 22727.27 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +757 0 758 2025-09-19 23400.00 0.00 19338.84 0.00 2025-06-30 2025-06-30 2025-09-19 1.000000 2 1 36 1 4 3 +749 0 750 2025-09-19 10000.00 0.00 8264.46 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +750 0 751 2025-09-19 5800.00 0.00 4793.39 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +751 0 752 2025-09-19 144000.00 0.00 119008.26 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +758 0 759 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-30 2025-06-30 2025-09-19 1.000000 2 1 36 1 4 3 +752 0 753 2025-09-19 19000.00 0.00 15702.48 0.00 2025-07-01 2025-07-01 2025-09-19 1.000000 2 1 36 1 4 3 +753 0 754 2025-09-19 25500.00 0.00 21074.38 0.00 2025-06-30 2025-06-30 2025-09-19 1.000000 2 1 36 1 4 3 +773 0 774 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-27 2025-06-27 2025-09-19 1.000000 2 1 36 1 4 3 +754 0 755 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-30 2025-06-30 2025-09-19 1.000000 2 1 36 1 4 3 +759 0 760 2025-09-19 17000.00 0.00 14049.59 0.00 2025-06-30 2025-06-30 2025-09-19 1.000000 2 1 36 1 4 3 +765 0 766 2025-09-19 19000.00 0.00 15702.48 0.00 2025-06-28 2025-06-28 2025-09-19 1.000000 2 1 36 1 4 3 +760 0 761 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-30 2025-06-30 2025-09-19 1.000000 2 1 36 1 4 3 +761 0 762 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-29 2025-06-29 2025-09-19 1.000000 2 1 36 1 4 3 +770 0 771 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-27 2025-06-27 2025-09-19 1.000000 2 1 36 1 4 3 +762 0 763 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-29 2025-06-29 2025-09-19 1.000000 2 1 36 1 4 3 +766 0 767 2025-09-19 4000.00 0.00 3305.79 0.00 2025-06-28 2025-06-28 2025-09-19 1.000000 2 1 36 1 4 3 +763 0 764 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-28 2025-06-28 2025-09-19 1.000000 2 1 36 1 4 3 +767 0 768 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-28 2025-06-28 2025-09-19 1.000000 2 1 36 1 4 3 +768 0 769 2025-09-19 15000.00 0.00 12396.69 0.00 2025-06-28 2025-06-28 2025-09-19 1.000000 2 1 36 1 4 3 +771 0 772 2025-09-19 11500.00 0.00 9504.13 0.00 2025-06-27 2025-06-27 2025-09-19 1.000000 2 1 36 1 4 3 +769 0 770 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-27 2025-06-27 2025-09-19 1.000000 2 1 36 1 4 3 +772 0 773 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-27 2025-06-27 2025-09-19 1.000000 2 1 36 1 4 3 +777 0 778 2025-09-19 50000.00 0.00 41322.31 0.00 2025-06-27 2025-06-27 2025-09-19 1.000000 2 1 36 1 4 3 +774 0 775 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-27 2025-06-27 2025-09-19 1.000000 2 1 36 1 4 3 +776 0 777 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-27 2025-06-27 2025-09-19 1.000000 2 1 36 1 4 3 +775 0 776 2025-09-19 19000.00 0.00 15702.48 0.00 2025-06-27 2025-06-27 2025-09-19 1.000000 2 1 36 1 4 3 +778 0 779 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-27 2025-06-27 2025-09-19 1.000000 2 1 36 1 4 3 +779 0 780 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-27 2025-06-27 2025-09-19 1.000000 2 1 36 1 4 3 +780 0 781 2025-09-19 106350.00 0.00 87892.56 0.00 2025-06-27 2025-06-27 2025-09-19 1.000000 2 1 36 1 4 3 +781 0 782 2025-09-19 42000.00 0.00 34710.74 0.00 2025-06-26 2025-06-26 2025-09-19 1.000000 2 1 36 1 4 3 +782 0 783 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-26 2025-06-26 2025-09-19 1.000000 2 1 36 1 4 3 +788 0 789 2025-09-19 27000.00 0.00 22314.05 0.00 2025-06-25 2025-06-25 2025-09-19 1.000000 2 1 36 1 4 3 +808 0 809 2025-09-19 19000.00 0.00 15702.48 0.00 2025-06-23 2025-06-23 2025-09-19 1.000000 2 1 36 1 4 3 +789 0 790 2025-09-19 5500.00 0.00 4545.45 0.00 2025-06-25 2025-06-25 2025-09-19 1.000000 2 1 36 1 4 3 +790 0 791 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-25 2025-06-25 2025-09-19 1.000000 2 1 36 1 4 3 +791 0 792 2025-09-19 27500.00 0.00 22727.27 0.00 2025-06-25 2025-06-25 2025-09-19 1.000000 2 1 36 1 4 3 +809 0 810 2025-09-19 5300.00 0.00 4380.17 0.00 2025-06-23 2025-06-23 2025-09-19 1.000000 2 1 36 1 4 3 +792 0 793 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-25 2025-06-25 2025-09-19 1.000000 2 1 36 1 4 3 +793 0 794 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-25 2025-06-25 2025-09-19 1.000000 2 1 36 1 4 3 +830 0 831 2025-09-19 64500.00 0.00 53305.79 0.00 2025-06-18 2025-06-18 2025-09-19 1.000000 2 1 36 1 4 3 +794 0 795 2025-09-19 23600.00 0.00 19504.13 0.00 2025-06-25 2025-06-25 2025-09-19 1.000000 2 1 36 1 4 3 +810 0 811 2025-09-19 34700.00 0.00 28677.69 0.00 2025-06-23 2025-06-23 2025-09-19 1.000000 2 1 36 1 4 3 +795 0 796 2025-09-19 94500.00 0.00 78099.17 0.00 2025-06-25 2025-06-25 2025-09-19 1.000000 2 1 36 1 4 3 +796 0 797 2025-09-19 135450.00 0.00 111942.15 0.00 2025-06-24 2025-06-24 2025-09-19 1.000000 2 1 36 1 4 3 +822 0 823 2025-09-19 19000.00 0.00 15702.48 0.00 2025-06-19 2025-06-19 2025-09-19 1.000000 2 1 36 1 4 3 +797 0 798 2025-09-19 15000.00 0.00 12396.69 0.00 2025-06-24 2025-06-24 2025-09-19 1.000000 2 1 36 1 4 3 +811 0 812 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-22 2025-06-22 2025-09-19 1.000000 2 1 36 1 4 3 +798 0 799 2025-09-19 24000.00 0.00 19834.71 0.00 2025-06-24 2025-06-24 2025-09-19 1.000000 2 1 36 1 4 3 +799 0 800 2025-09-19 23600.00 0.00 19504.13 0.00 2025-06-24 2025-06-24 2025-09-19 1.000000 2 1 36 1 4 3 +800 0 801 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-24 2025-06-24 2025-09-19 1.000000 2 1 36 1 4 3 +812 0 813 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-22 2025-06-22 2025-09-19 1.000000 2 1 36 1 4 3 +801 0 802 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-24 2025-06-24 2025-09-19 1.000000 2 1 36 1 4 3 +802 0 803 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-24 2025-06-24 2025-09-19 1.000000 2 1 36 1 4 3 +803 0 804 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-24 2025-06-24 2025-09-19 1.000000 2 1 36 1 4 3 +813 0 814 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-21 2025-06-21 2025-09-19 1.000000 2 1 36 1 4 3 +804 0 805 2025-09-19 42000.00 0.00 34710.74 0.00 2025-06-24 2025-06-24 2025-09-19 1.000000 2 1 36 1 4 3 +805 0 806 2025-09-19 95000.00 0.00 78512.40 0.00 2025-06-23 2025-06-23 2025-09-19 1.000000 2 1 36 1 4 3 +823 0 824 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-19 2025-06-19 2025-09-19 1.000000 2 1 36 1 4 3 +806 0 807 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-23 2025-06-23 2025-09-19 1.000000 2 1 36 1 4 3 +814 0 815 2025-09-19 27500.00 0.00 22727.27 0.00 2025-06-21 2025-06-21 2025-09-19 1.000000 2 1 36 1 4 3 +807 0 808 2025-09-19 12100.00 0.00 10000.00 0.00 2025-06-23 2025-06-23 2025-09-19 1.000000 2 1 36 1 4 3 +815 0 816 2025-09-19 19000.00 0.00 15702.48 0.00 2025-06-20 2025-06-20 2025-09-19 1.000000 2 1 36 1 4 3 +824 0 825 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-19 2025-06-19 2025-09-19 1.000000 2 1 36 1 4 3 +816 0 817 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-20 2025-06-20 2025-09-19 1.000000 2 1 36 1 4 3 +817 0 818 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-20 2025-06-20 2025-09-19 1.000000 2 1 36 1 4 3 +831 0 832 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-18 2025-06-18 2025-09-19 1.000000 2 1 36 1 4 3 +818 0 819 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-20 2025-06-20 2025-09-19 1.000000 2 1 36 1 4 3 +825 0 826 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-19 2025-06-19 2025-09-19 1.000000 2 1 36 1 4 3 +819 0 820 2025-09-19 27500.00 0.00 22727.27 0.00 2025-06-20 2025-06-20 2025-09-19 1.000000 2 1 36 1 4 3 +820 0 821 2025-09-19 194400.00 0.00 160661.16 0.00 2025-06-20 2025-06-20 2025-09-19 1.000000 2 1 36 1 4 3 +821 0 822 2025-09-19 23600.00 0.00 19504.13 0.00 2025-06-20 2025-06-20 2025-09-19 1.000000 2 1 36 1 4 3 +826 0 827 2025-09-19 19000.00 0.00 15702.48 0.00 2025-06-19 2025-06-19 2025-09-19 1.000000 2 1 36 1 4 3 +836 0 837 2025-09-19 42000.00 0.00 34710.74 0.00 2025-06-18 2025-06-18 2025-09-19 1.000000 2 1 36 1 4 3 +827 0 828 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-19 2025-06-19 2025-09-19 1.000000 2 1 36 1 4 3 +832 0 833 2025-09-19 27500.00 0.00 22727.27 0.00 2025-06-18 2025-06-18 2025-09-19 1.000000 2 1 36 1 4 3 +828 0 829 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-19 2025-06-19 2025-09-19 1.000000 2 1 36 1 4 3 +829 0 830 2025-09-19 50000.00 0.00 41322.31 0.00 2025-06-19 2025-06-19 2025-09-19 1.000000 2 1 36 1 4 3 +842 0 843 2025-09-19 24500.00 0.00 20247.93 0.00 2025-06-17 2025-06-17 2025-09-19 1.000000 2 1 36 1 4 3 +833 0 834 2025-09-19 11700.00 0.00 9669.42 0.00 2025-06-18 2025-06-18 2025-09-19 1.000000 2 1 36 1 4 3 +837 0 838 2025-09-19 40000.00 0.00 33057.85 0.00 2025-06-17 2025-06-17 2025-09-19 1.000000 2 1 36 1 4 3 +834 0 835 2025-09-19 50000.00 0.00 41322.31 0.00 2025-06-18 2025-06-18 2025-09-19 1.000000 2 1 36 1 4 3 +835 0 836 2025-09-19 25500.00 0.00 21074.38 0.00 2025-06-18 2025-06-18 2025-09-19 1.000000 2 1 36 1 4 3 +840 0 841 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-17 2025-06-17 2025-09-19 1.000000 2 1 36 1 4 3 +838 0 839 2025-09-19 19000.00 0.00 15702.48 0.00 2025-06-17 2025-06-17 2025-09-19 1.000000 2 1 36 1 4 3 +839 0 840 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-17 2025-06-17 2025-09-19 1.000000 2 1 36 1 4 3 +841 0 842 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-17 2025-06-17 2025-09-19 1.000000 2 1 36 1 4 3 +843 0 844 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-16 2025-06-16 2025-09-19 1.000000 2 1 36 1 4 3 +844 0 845 2025-09-19 23600.00 0.00 19504.13 0.00 2025-06-16 2025-06-16 2025-09-19 1.000000 2 1 36 1 4 3 +845 0 846 2025-09-19 50000.00 0.00 41322.31 0.00 2025-06-16 2025-06-16 2025-09-19 1.000000 2 1 36 1 4 3 +846 0 847 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-16 2025-06-16 2025-09-19 1.000000 2 1 36 1 4 3 +847 0 848 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-16 2025-06-16 2025-09-19 1.000000 2 1 36 1 4 3 +848 0 849 2025-09-19 11000.00 0.00 9090.91 0.00 2025-06-16 2025-06-16 2025-09-19 1.000000 2 1 36 1 4 3 +849 0 850 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-16 2025-06-16 2025-09-19 1.000000 2 1 36 1 4 3 +850 0 851 2025-09-19 15000.00 0.00 12396.69 0.00 2025-06-16 2025-06-16 2025-09-19 1.000000 2 1 36 1 4 3 +851 0 852 2025-09-19 17000.00 0.00 14049.59 0.00 2025-06-16 2025-06-16 2025-09-19 1.000000 2 1 36 1 4 3 +852 0 853 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-16 2025-06-16 2025-09-19 1.000000 2 1 36 1 4 3 +853 0 854 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-14 2025-06-14 2025-09-19 1.000000 2 1 36 1 4 3 +854 0 855 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-14 2025-06-14 2025-09-19 1.000000 2 1 36 1 4 3 +855 0 856 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-14 2025-06-14 2025-09-19 1.000000 2 1 36 1 4 3 +874 0 875 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-12 2025-06-12 2025-09-19 1.000000 2 1 36 1 4 3 +856 0 857 2025-09-19 17000.00 0.00 14049.59 0.00 2025-06-14 2025-06-14 2025-09-19 1.000000 2 1 36 1 4 3 +857 0 858 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-14 2025-06-14 2025-09-19 1.000000 2 1 36 1 4 3 +887 0 888 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-10 2025-06-10 2025-09-19 1.000000 2 1 36 1 4 3 +858 0 859 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-14 2025-06-14 2025-09-19 1.000000 2 1 36 1 4 3 +875 0 876 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-12 2025-06-12 2025-09-19 1.000000 2 1 36 1 4 3 +859 0 860 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-13 2025-06-13 2025-09-19 1.000000 2 1 36 1 4 3 +860 0 861 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-13 2025-06-13 2025-09-19 1.000000 2 1 36 1 4 3 +861 0 862 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-13 2025-06-13 2025-09-19 1.000000 2 1 36 1 4 3 +876 0 877 2025-09-19 119500.00 0.00 98760.33 0.00 2025-06-12 2025-06-12 2025-09-19 1.000000 2 1 36 1 4 3 +862 0 863 2025-09-19 24750.00 0.00 20454.55 0.00 2025-06-13 2025-06-13 2025-09-19 1.000000 2 1 36 1 4 3 +863 0 864 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-13 2025-06-13 2025-09-19 1.000000 2 1 36 1 4 3 +864 0 865 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-13 2025-06-13 2025-09-19 1.000000 2 1 36 1 4 3 +877 0 878 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-11 2025-06-11 2025-09-19 1.000000 2 1 36 1 4 3 +865 0 866 2025-09-19 15000.00 0.00 12396.69 0.00 2025-06-13 2025-06-13 2025-09-19 1.000000 2 1 36 1 4 3 +866 0 867 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-13 2025-06-13 2025-09-19 1.000000 2 1 36 1 4 3 +888 0 889 2025-09-19 5300.00 0.00 4380.17 0.00 2025-06-10 2025-06-10 2025-09-19 1.000000 2 1 36 1 4 3 +867 0 868 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-13 2025-06-13 2025-09-19 1.000000 2 1 36 1 4 3 +878 0 879 2025-09-19 13200.00 0.00 10909.09 0.00 2025-06-11 2025-06-11 2025-09-19 1.000000 2 1 36 1 4 3 +868 0 869 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-12 2025-06-12 2025-09-19 1.000000 2 1 36 1 4 3 +869 0 870 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-12 2025-06-12 2025-09-19 1.000000 2 1 36 1 4 3 +870 0 871 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-12 2025-06-12 2025-09-19 1.000000 2 1 36 1 4 3 +879 0 880 2025-09-19 10250.00 0.00 8471.07 0.00 2025-06-11 2025-06-11 2025-09-19 1.000000 2 1 36 1 4 3 +871 0 872 2025-09-19 23600.00 0.00 19504.13 0.00 2025-06-12 2025-06-12 2025-09-19 1.000000 2 1 36 1 4 3 +872 0 873 2025-09-19 6300.00 0.00 5206.61 0.00 2025-06-12 2025-06-12 2025-09-19 1.000000 2 1 36 1 4 3 +896 0 897 2025-09-19 19000.00 0.00 15702.48 0.00 2025-06-09 2025-06-09 2025-09-19 1.000000 2 1 36 1 4 3 +873 0 874 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-12 2025-06-12 2025-09-19 1.000000 2 1 36 1 4 3 +880 0 881 2025-09-19 50000.00 0.00 41322.31 0.00 2025-06-11 2025-06-11 2025-09-19 1.000000 2 1 36 1 4 3 +889 0 890 2025-09-19 7700.00 0.00 6363.64 0.00 2025-06-10 2025-06-10 2025-09-19 1.000000 2 1 36 1 4 3 +881 0 882 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-11 2025-06-11 2025-09-19 1.000000 2 1 36 1 4 3 +882 0 883 2025-09-19 13100.00 0.00 10826.45 0.00 2025-06-11 2025-06-11 2025-09-19 1.000000 2 1 36 1 4 3 +883 0 884 2025-09-19 17000.00 0.00 14049.59 0.00 2025-06-11 2025-06-11 2025-09-19 1.000000 2 1 36 1 4 3 +890 0 891 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-10 2025-06-10 2025-09-19 1.000000 2 1 36 1 4 3 +884 0 885 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-11 2025-06-11 2025-09-19 1.000000 2 1 36 1 4 3 +885 0 886 2025-09-19 84100.00 0.00 69504.13 0.00 2025-06-11 2025-06-11 2025-09-19 1.000000 2 1 36 1 4 3 +886 0 887 2025-09-19 19000.00 0.00 15702.48 0.00 2025-06-10 2025-06-10 2025-09-19 1.000000 2 1 36 1 4 3 +891 0 892 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-10 2025-06-10 2025-09-19 1.000000 2 1 36 1 4 3 +897 0 898 2025-09-19 27500.00 0.00 22727.27 0.00 2025-06-09 2025-06-09 2025-09-19 1.000000 2 1 36 1 4 3 +892 0 893 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-10 2025-06-10 2025-09-19 1.000000 2 1 36 1 4 3 +893 0 894 2025-09-19 5300.00 0.00 4380.17 0.00 2025-06-10 2025-06-10 2025-09-19 1.000000 2 1 36 1 4 3 +902 0 903 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-08 2025-06-08 2025-09-19 1.000000 2 1 36 1 4 3 +894 0 895 2025-09-19 19000.00 0.00 15702.48 0.00 2025-06-10 2025-06-10 2025-09-19 1.000000 2 1 36 1 4 3 +898 0 899 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-09 2025-06-09 2025-09-19 1.000000 2 1 36 1 4 3 +895 0 896 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-09 2025-06-09 2025-09-19 1.000000 2 1 36 1 4 3 +899 0 900 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-09 2025-06-09 2025-09-19 1.000000 2 1 36 1 4 3 +908 0 909 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-07 2025-06-07 2025-09-19 1.000000 2 1 36 1 4 3 +900 0 901 2025-09-19 65700.00 0.00 54297.52 0.00 2025-06-09 2025-06-09 2025-09-19 1.000000 2 1 36 1 4 3 +903 0 904 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-08 2025-06-08 2025-09-19 1.000000 2 1 36 1 4 3 +901 0 902 2025-09-19 25000.00 0.00 20661.16 0.00 2025-06-08 2025-06-08 2025-09-19 1.000000 2 1 36 1 4 3 +906 0 907 2025-09-19 8500.00 0.00 7024.79 0.00 2025-06-08 2025-06-08 2025-09-19 1.000000 2 1 36 1 4 3 +904 0 905 2025-09-19 24000.00 0.00 19834.71 0.00 2025-06-08 2025-06-08 2025-09-19 1.000000 2 1 36 1 4 3 +905 0 906 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-08 2025-06-08 2025-09-19 1.000000 2 1 36 1 4 3 +907 0 908 2025-09-19 35650.00 0.00 29462.81 0.00 2025-06-07 2025-06-07 2025-09-19 1.000000 2 1 36 1 4 3 +909 0 910 2025-09-19 12800.00 0.00 10578.51 0.00 2025-06-07 2025-06-07 2025-09-19 1.000000 2 1 36 1 4 3 +910 0 911 2025-09-19 23600.00 0.00 19504.13 0.00 2025-06-07 2025-06-07 2025-09-19 1.000000 2 1 36 1 4 3 +911 0 912 2025-09-19 23600.00 0.00 19504.13 0.00 2025-06-07 2025-06-07 2025-09-19 1.000000 2 1 36 1 4 3 +912 0 913 2025-09-19 15500.00 0.00 12809.92 0.00 2025-06-07 2025-06-07 2025-09-19 1.000000 2 1 36 1 4 3 +913 0 914 2025-09-19 15500.00 0.00 12809.92 0.00 2025-06-07 2025-06-07 2025-09-19 1.000000 2 1 36 1 4 3 +914 0 915 2025-09-19 24750.00 0.00 20454.55 0.00 2025-06-06 2025-06-06 2025-09-19 1.000000 2 1 36 1 4 3 +915 0 916 2025-09-19 11500.00 0.00 9504.13 0.00 2025-06-06 2025-06-06 2025-09-19 1.000000 2 1 36 1 4 3 +916 0 917 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-06 2025-06-06 2025-09-19 1.000000 2 1 36 1 4 3 +917 0 918 2025-09-19 20800.00 0.00 17190.08 0.00 2025-06-06 2025-06-06 2025-09-19 1.000000 2 1 36 1 4 3 +918 0 919 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-06 2025-06-06 2025-09-19 1.000000 2 1 36 1 4 3 +938 0 939 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-04 2025-06-04 2025-09-19 1.000000 2 1 36 1 4 3 +919 0 920 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-06 2025-06-06 2025-09-19 1.000000 2 1 36 1 4 3 +920 0 921 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-06 2025-06-06 2025-09-19 1.000000 2 1 36 1 4 3 +921 0 922 2025-09-19 15000.00 0.00 12396.69 0.00 2025-06-06 2025-06-06 2025-09-19 1.000000 2 1 36 1 4 3 +939 0 940 2025-09-19 15000.00 0.00 12396.69 0.00 2025-06-04 2025-06-04 2025-09-19 1.000000 2 1 36 1 4 3 +922 0 923 2025-09-19 57000.00 0.00 47107.44 0.00 2025-06-06 2025-06-06 2025-09-19 1.000000 2 1 36 1 4 3 +923 0 924 2025-09-19 23600.00 0.00 19504.13 0.00 2025-06-06 2025-06-06 2025-09-19 1.000000 2 1 36 1 4 3 +960 0 961 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-01 2025-06-01 2025-09-19 1.000000 2 1 36 1 4 3 +924 0 925 2025-09-19 10600.00 0.00 8760.33 0.00 2025-06-06 2025-06-06 2025-09-19 1.000000 2 1 36 1 4 3 +940 0 941 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-04 2025-06-04 2025-09-19 1.000000 2 1 36 1 4 3 +925 0 926 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-05 2025-06-05 2025-09-19 1.000000 2 1 36 1 4 3 +926 0 927 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-05 2025-06-05 2025-09-19 1.000000 2 1 36 1 4 3 +952 0 953 2025-09-19 27500.00 0.00 22727.27 0.00 2025-06-02 2025-06-02 2025-09-19 1.000000 2 1 36 1 4 3 +927 0 928 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-05 2025-06-05 2025-09-19 1.000000 2 1 36 1 4 3 +941 0 942 2025-09-19 27500.00 0.00 22727.27 0.00 2025-06-04 2025-06-04 2025-09-19 1.000000 2 1 36 1 4 3 +928 0 929 2025-09-19 5500.00 0.00 4545.45 0.00 2025-06-05 2025-06-05 2025-09-19 1.000000 2 1 36 1 4 3 +929 0 930 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-05 2025-06-05 2025-09-19 1.000000 2 1 36 1 4 3 +930 0 931 2025-09-19 102700.00 0.00 84876.03 0.00 2025-06-05 2025-06-05 2025-09-19 1.000000 2 1 36 1 4 3 +942 0 943 2025-09-19 10500.00 0.00 8677.69 0.00 2025-06-04 2025-06-04 2025-09-19 1.000000 2 1 36 1 4 3 +931 0 932 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-05 2025-06-05 2025-09-19 1.000000 2 1 36 1 4 3 +932 0 933 2025-09-19 45000.00 0.00 37190.08 0.00 2025-06-05 2025-06-05 2025-09-19 1.000000 2 1 36 1 4 3 +933 0 934 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-05 2025-06-05 2025-09-19 1.000000 2 1 36 1 4 3 +943 0 944 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-03 2025-06-03 2025-09-19 1.000000 2 1 36 1 4 3 +934 0 935 2025-09-19 137800.00 0.00 113884.30 0.00 2025-06-05 2025-06-05 2025-09-19 1.000000 2 1 36 1 4 3 +935 0 936 2025-09-19 55860.00 0.00 46165.29 0.00 2025-06-04 2025-06-04 2025-09-19 1.000000 2 1 36 1 4 3 +953 0 954 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-02 2025-06-02 2025-09-19 1.000000 2 1 36 1 4 3 +936 0 937 2025-09-19 5300.00 0.00 4380.17 0.00 2025-06-04 2025-06-04 2025-09-19 1.000000 2 1 36 1 4 3 +944 0 945 2025-09-19 4630.00 0.00 3826.45 0.00 2025-06-03 2025-06-03 2025-09-19 1.000000 2 1 36 1 4 3 +937 0 938 2025-09-19 34000.00 0.00 28099.17 0.00 2025-06-04 2025-06-04 2025-09-19 1.000000 2 1 36 1 4 3 +945 0 946 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-03 2025-06-03 2025-09-19 1.000000 2 1 36 1 4 3 +954 0 955 2025-09-19 10000.00 0.00 8264.46 0.00 2025-06-02 2025-06-02 2025-09-19 1.000000 2 1 36 1 4 3 +946 0 947 2025-09-19 28500.00 0.00 23553.72 0.00 2025-06-03 2025-06-03 2025-09-19 1.000000 2 1 36 1 4 3 +947 0 948 2025-09-19 5300.00 0.00 4380.17 0.00 2025-06-03 2025-06-03 2025-09-19 1.000000 2 1 36 1 4 3 +961 0 962 2025-09-19 9500.00 0.00 7851.24 0.00 2025-06-01 2025-06-01 2025-09-19 1.000000 2 1 36 1 4 3 +948 0 949 2025-09-19 17000.00 0.00 14049.59 0.00 2025-06-03 2025-06-03 2025-09-19 1.000000 2 1 36 1 4 3 +955 0 956 2025-09-19 23600.00 0.00 19504.13 0.00 2025-06-02 2025-06-02 2025-09-19 1.000000 2 1 36 1 4 3 +949 0 950 2025-09-19 45000.00 0.00 37190.08 0.00 2025-06-03 2025-06-03 2025-09-19 1.000000 2 1 36 1 4 3 +950 0 951 2025-09-19 10500.00 0.00 8677.69 0.00 2025-06-03 2025-06-03 2025-09-19 1.000000 2 1 36 1 4 3 +951 0 952 2025-09-19 12000.00 0.00 9917.36 0.00 2025-06-02 2025-06-02 2025-09-19 1.000000 2 1 36 1 4 3 +956 0 957 2025-09-19 27500.00 0.00 22727.27 0.00 2025-06-02 2025-06-02 2025-09-19 1.000000 2 1 36 1 4 3 +957 0 958 2025-09-19 80000.00 0.00 66115.70 0.00 2025-06-02 2025-06-02 2025-09-19 1.000000 2 1 36 1 4 3 +958 0 959 2025-09-19 59000.00 0.00 48760.33 0.00 2025-06-02 2025-06-02 2025-09-19 1.000000 2 1 36 1 4 3 +959 0 960 2025-09-19 31200.00 0.00 25785.12 0.00 2025-06-02 2025-06-02 2025-09-19 1.000000 2 1 36 1 4 3 +\. + + +-- +-- Data for Name: afip_receipt_related_receipts; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_receipt_related_receipts (id, from_receipt_id, to_receipt_id) FROM stdin; +\. + + +-- +-- Data for Name: afip_receiptentry; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_receiptentry (id, description, quantity, unit_price, receipt_id, vat_id, discount) FROM stdin; +1 Gestion de Servicio veterinario 1.00 10400.00 1 \N 0.00 +2 Gestion de Servicio veterinario 1.00 28000.00 2 \N 0.00 +3 Gestion de Servicio veterinario 1.00 30000.00 3 \N 0.00 +4 Gestion de Servicio veterinario 1.00 48960.00 4 \N 0.00 +5 Gestion de Servicio veterinario 1.00 48960.00 5 \N 0.00 +6 Gestion de Servicio veterinario 1.00 11000.00 6 \N 0.00 +7 Gestion de Servicio veterinario 1.00 21400.00 7 \N 0.00 +8 Gestion de Servicio veterinario 1.00 30000.00 8 \N 0.00 +9 Gestion de Servicio veterinario 1.00 13000.00 9 \N 0.00 +10 Gestion de Servicio veterinario 1.00 30000.00 10 \N 0.00 +11 Gestion de Servicio veterinario 1.00 11000.00 11 \N 0.00 +12 Gestion de Servicio veterinario 1.00 30400.00 12 \N 0.00 +13 Gestion de Servicio veterinario 1.00 11000.00 13 \N 0.00 +14 Gestion de Servicio veterinario 1.00 13000.00 14 \N 0.00 +15 Gestion de Servicio veterinario 1.00 1300.00 15 \N 0.00 +16 Gestion de Servicio veterinario 1.00 11000.00 16 \N 0.00 +17 Gestion de Servicio veterinario 1.00 61900.00 17 \N 0.00 +18 Gestion de Servicio veterinario 1.00 36700.00 18 \N 0.00 +19 Gestion de Servicio veterinario 1.00 110000.00 19 \N 0.00 +20 Gestion de Servicio veterinario 1.00 30000.00 20 \N 0.00 +21 Gestion de Servicio veterinario 1.00 11000.00 21 \N 0.00 +22 Gestion de Servicio veterinario 1.00 11000.00 22 \N 0.00 +23 Gestion de Servicio veterinario 1.00 11000.00 23 \N 0.00 +24 Gestion de Servicio veterinario 1.00 13200.00 24 \N 0.00 +25 Gestion de Servicio veterinario 1.00 13000.00 25 \N 0.00 +26 Gestion de Servicio veterinario 1.00 13700.00 26 \N 0.00 +27 Gestion de Servicio veterinario 1.00 11000.00 27 \N 0.00 +28 Gestion de Servicio veterinario 1.00 27500.00 28 \N 0.00 +29 Gestion de Servicio veterinario 1.00 11000.00 29 \N 0.00 +30 Gestion de Servicio veterinario 1.00 11000.00 30 \N 0.00 +31 Gestion de Servicio veterinario 1.00 20900.00 31 \N 0.00 +32 Gestion de Servicio veterinario 1.00 21500.00 32 \N 0.00 +33 Gestion de Servicio veterinario 1.00 11000.00 33 \N 0.00 +34 Gestion de Servicio veterinario 1.00 11000.00 34 \N 0.00 +35 Gestion de Servicio veterinario 1.00 27000.00 35 \N 0.00 +36 Gestion de Servicio veterinario 1.00 11000.00 36 \N 0.00 +37 Gestion de Servicio veterinario 1.00 11000.00 37 \N 0.00 +38 Gestion de Servicio veterinario 1.00 11000.00 38 \N 0.00 +39 Gestion de Servicio veterinario 1.00 10000.00 39 \N 0.00 +40 Gestion de Servicio veterinario 1.00 11000.00 40 \N 0.00 +41 Gestion de Servicio veterinario 1.00 11000.00 41 \N 0.00 +42 Gestion de Servicio veterinario 1.00 13700.00 42 \N 0.00 +43 Gestion de Servicio veterinario 1.00 296000.00 43 \N 0.00 +44 Gestion de Servicio veterinario 1.00 13500.00 44 \N 0.00 +45 Gestion de Servicio veterinario 1.00 16200.00 45 \N 0.00 +46 Gestion de Servicio veterinario 1.00 11000.00 46 \N 0.00 +47 Gestion de Servicio veterinario 1.00 13000.00 47 \N 0.00 +48 Gestion de Servicio veterinario 1.00 13000.00 48 \N 0.00 +49 Gestion de Servicio veterinario 1.00 10000.00 49 \N 0.00 +50 Gestion de Servicio veterinario 1.00 11000.00 50 \N 0.00 +51 Gestion de Servicio veterinario 1.00 12000.00 51 \N 0.00 +52 Gestion de Servicio veterinario 1.00 11000.00 52 \N 0.00 +53 Gestion de Servicio veterinario 1.00 25500.00 53 \N 0.00 +54 Gestion de Servicio veterinario 1.00 11000.00 54 \N 0.00 +55 Gestion de Servicio veterinario 1.00 11000.00 55 \N 0.00 +56 Gestion de Servicio veterinario 1.00 11000.00 56 \N 0.00 +57 Gestion de Servicio veterinario 1.00 214900.00 57 \N 0.00 +58 Gestion de Servicio veterinario 1.00 27500.00 58 \N 0.00 +59 Gestion de Servicio veterinario 1.00 143000.00 59 \N 0.00 +60 Gestion de Servicio veterinario 1.00 28000.00 60 \N 0.00 +61 Gestion de Servicio veterinario 1.00 10000.00 61 \N 0.00 +62 Gestion de Servicio veterinario 1.00 11000.00 62 \N 0.00 +63 Gestion de Servicio veterinario 1.00 11000.00 63 \N 0.00 +64 Gestion de Servicio veterinario 1.00 12800.00 64 \N 0.00 +65 Gestion de Servicio veterinario 1.00 11000.00 65 \N 0.00 +66 Gestion de Servicio veterinario 1.00 90000.00 66 \N 0.00 +67 Gestion de Servicio veterinario 1.00 11000.00 67 \N 0.00 +68 Gestion de Servicio veterinario 1.00 30000.00 68 \N 0.00 +69 Gestion de Servicio veterinario 1.00 24200.00 69 \N 0.00 +70 Gestion de Servicio veterinario 1.00 13000.00 70 \N 0.00 +71 Gestion de Servicio veterinario 1.00 11000.00 71 \N 0.00 +72 Gestion de Servicio veterinario 1.00 4900.00 72 \N 0.00 +73 Gestion de Servicio veterinario 1.00 2200.00 73 \N 0.00 +74 Gestion de Servicio veterinario 1.00 13200.00 74 \N 0.00 +75 Gestion de Servicio veterinario 1.00 30000.00 75 \N 0.00 +76 Gestion de Servicio veterinario 1.00 30000.00 76 \N 0.00 +77 Gestion de Servicio veterinario 1.00 30000.00 77 \N 0.00 +78 Gestion de Servicio veterinario 1.00 11000.00 78 \N 0.00 +79 Gestion de Servicio veterinario 1.00 11000.00 79 \N 0.00 +80 Gestion de Servicio veterinario 1.00 11000.00 80 \N 0.00 +81 Gestion de Servicio veterinario 1.00 21200.00 81 \N 0.00 +82 Gestion de Servicio veterinario 1.00 27000.00 82 \N 0.00 +83 Gestion de Servicio veterinario 1.00 85200.00 83 \N 0.00 +84 Gestion de Servicio veterinario 1.00 30000.00 84 \N 0.00 +85 Gestion de Servicio veterinario 1.00 45900.00 85 \N 0.00 +86 Gestion de Servicio veterinario 1.00 11000.00 86 \N 0.00 +87 Gestion de Servicio veterinario 1.00 10000.00 87 \N 0.00 +88 Gestion de Servicio veterinario 1.00 27400.00 88 \N 0.00 +89 Gestion de Servicio veterinario 1.00 53400.00 89 \N 0.00 +90 Gestion de Servicio veterinario 1.00 11000.00 90 \N 0.00 +91 Gestion de Servicio veterinario 1.00 12000.00 91 \N 0.00 +92 Gestion de Servicio veterinario 1.00 21500.00 92 \N 0.00 +93 Gestion de Servicio veterinario 1.00 11000.00 93 \N 0.00 +94 Gestion de Servicio veterinario 1.00 9800.00 94 \N 0.00 +95 Gestion de Servicio veterinario 1.00 11000.00 95 \N 0.00 +96 Gestion de Servicio veterinario 1.00 30000.00 96 \N 0.00 +97 Gestion de Servicio veterinario 1.00 11000.00 97 \N 0.00 +98 Gestion de Servicio veterinario 1.00 11000.00 98 \N 0.00 +99 Gestion de Servicio veterinario 1.00 11000.00 99 \N 0.00 +100 Gestion de Servicio veterinario 1.00 11000.00 100 \N 0.00 +101 Gestion de Servicio veterinario 1.00 21500.00 101 \N 0.00 +102 Gestion de Servicio veterinario 1.00 11000.00 102 \N 0.00 +103 Gestion de Servicio veterinario 1.00 43630.00 103 \N 0.00 +104 Gestion de Servicio veterinario 1.00 11000.00 104 \N 0.00 +105 Gestion de Servicio veterinario 1.00 11000.00 105 \N 0.00 +106 Gestion de Servicio veterinario 1.00 30000.00 106 \N 0.00 +107 Gestion de Servicio veterinario 1.00 11000.00 107 \N 0.00 +108 Gestion de Servicio veterinario 1.00 30000.00 108 \N 0.00 +109 Gestion de Servicio veterinario 1.00 11000.00 109 \N 0.00 +110 Gestion de Servicio veterinario 1.00 28250.00 110 \N 0.00 +111 Gestion de Servicio veterinario 1.00 11000.00 111 \N 0.00 +112 Gestion de Servicio veterinario 1.00 11000.00 112 \N 0.00 +113 Gestion de Servicio veterinario 1.00 27400.00 113 \N 0.00 +114 Gestion de Servicio veterinario 1.00 75000.00 114 \N 0.00 +115 Gestion de Servicio veterinario 1.00 13000.00 115 \N 0.00 +116 Gestion de Servicio veterinario 1.00 9200.00 116 \N 0.00 +117 Gestion de Servicio veterinario 1.00 11000.00 117 \N 0.00 +118 Gestion de Servicio veterinario 1.00 11000.00 118 \N 0.00 +119 Gestion de Servicio veterinario 1.00 11000.00 119 \N 0.00 +120 Gestion de Servicio veterinario 1.00 15.00 120 \N 0.00 +121 Gestion de Servicio veterinario 1.00 19000.00 121 \N 0.00 +122 Gestion de Servicio veterinario 1.00 11000.00 122 \N 0.00 +123 Gestion de Servicio veterinario 1.00 4000.00 123 \N 0.00 +124 Gestion de Servicio veterinario 1.00 15000.00 124 \N 0.00 +125 Gestion de Servicio veterinario 1.00 15000.00 125 \N 0.00 +126 Gestion de Servicio veterinario 1.00 12800.00 126 \N 0.00 +127 Gestion de Servicio veterinario 1.00 28000.00 127 \N 0.00 +128 Gestion de Servicio veterinario 1.00 30000.00 128 \N 0.00 +129 Gestion de Servicio veterinario 1.00 26000.00 129 \N 0.00 +130 Gestion de Servicio veterinario 1.00 52000.00 130 \N 0.00 +131 Gestion de Servicio veterinario 1.00 7700.00 131 \N 0.00 +132 Gestion de Servicio veterinario 1.00 11000.00 132 \N 0.00 +133 Gestion de Servicio veterinario 1.00 24200.00 133 \N 0.00 +134 Gestion de Servicio veterinario 1.00 11000.00 134 \N 0.00 +135 Gestion de Servicio veterinario 1.00 11000.00 135 \N 0.00 +136 Gestion de Servicio veterinario 1.00 20000.00 136 \N 0.00 +137 Gestion de Servicio veterinario 1.00 11000.00 137 \N 0.00 +138 Gestion de Servicio veterinario 1.00 11000.00 138 \N 0.00 +139 Gestion de Servicio veterinario 1.00 11000.00 139 \N 0.00 +140 Gestion de Servicio veterinario 1.00 13000.00 140 \N 0.00 +141 Gestion de Servicio veterinario 1.00 11000.00 141 \N 0.00 +142 Gestion de Servicio veterinario 1.00 15000.00 142 \N 0.00 +143 Gestion de Servicio veterinario 1.00 71060.00 143 \N 0.00 +144 Gestion de Servicio veterinario 1.00 13000.00 144 \N 0.00 +145 Gestion de Servicio veterinario 1.00 11000.00 145 \N 0.00 +146 Gestion de Servicio veterinario 1.00 11000.00 146 \N 0.00 +147 Gestion de Servicio veterinario 1.00 11000.00 147 \N 0.00 +148 Gestion de Servicio veterinario 1.00 11000.00 148 \N 0.00 +149 Gestion de Servicio veterinario 1.00 11000.00 149 \N 0.00 +150 Gestion de Servicio veterinario 1.00 10000.00 150 \N 0.00 +151 Gestion de Servicio veterinario 1.00 10000.00 151 \N 0.00 +152 Gestion de Servicio veterinario 1.00 11000.00 152 \N 0.00 +153 Gestion de Servicio veterinario 1.00 26500.00 153 \N 0.00 +154 Gestion de Servicio veterinario 1.00 11000.00 154 \N 0.00 +155 Gestion de Servicio veterinario 1.00 10000.00 155 \N 0.00 +156 Gestion de Servicio veterinario 1.00 10000.00 156 \N 0.00 +157 Gestion de Servicio veterinario 1.00 11000.00 157 \N 0.00 +158 Gestion de Servicio veterinario 1.00 47700.00 158 \N 0.00 +159 Gestion de Servicio veterinario 1.00 9500.00 159 \N 0.00 +160 Gestion de Servicio veterinario 1.00 121500.00 160 \N 0.00 +161 Gestion de Servicio veterinario 1.00 7700.00 161 \N 0.00 +162 Gestion de Servicio veterinario 1.00 49500.00 162 \N 0.00 +163 Gestion de Servicio veterinario 1.00 43700.00 163 \N 0.00 +164 Gestion de Servicio veterinario 1.00 19000.00 164 \N 0.00 +165 Gestion de Servicio veterinario 1.00 9500.00 165 \N 0.00 +166 Gestion de Servicio veterinario 1.00 9500.00 166 \N 0.00 +167 Gestion de Servicio veterinario 1.00 9500.00 167 \N 0.00 +168 Gestion de Servicio veterinario 1.00 70500.00 168 \N 0.00 +169 Gestion de Servicio veterinario 1.00 27500.00 169 \N 0.00 +170 Gestion de Servicio veterinario 1.00 10000.00 170 \N 0.00 +171 Gestion de Servicio veterinario 1.00 72500.00 171 \N 0.00 +172 Gestion de Servicio veterinario 1.00 23500.00 172 \N 0.00 +173 Gestion de Servicio veterinario 1.00 15000.00 173 \N 0.00 +174 Gestion de Servicio veterinario 1.00 9500.00 174 \N 0.00 +175 Gestion de Servicio veterinario 1.00 13000.00 175 \N 0.00 +176 Gestion de Servicio veterinario 1.00 13000.00 176 \N 0.00 +177 Gestion de Servicio veterinario 1.00 10000.00 177 \N 0.00 +178 Gestion de Servicio veterinario 1.00 10000.00 178 \N 0.00 +179 Gestion de Servicio veterinario 1.00 10000.00 179 \N 0.00 +180 Gestion de Servicio veterinario 1.00 10000.00 180 \N 0.00 +181 Gestion de Servicio veterinario 1.00 24000.00 181 \N 0.00 +182 Gestion de Servicio veterinario 1.00 10000.00 182 \N 0.00 +183 Gestion de Servicio veterinario 1.00 27500.00 183 \N 0.00 +184 Gestion de Servicio veterinario 1.00 26500.00 184 \N 0.00 +185 Gestion de Servicio veterinario 1.00 19000.00 185 \N 0.00 +186 Gestion de Servicio veterinario 1.00 78000.00 186 \N 0.00 +187 Gestion de Servicio veterinario 1.00 13000.00 187 \N 0.00 +188 Gestion de Servicio veterinario 1.00 13000.00 188 \N 0.00 +189 Gestion de Servicio veterinario 1.00 13000.00 189 \N 0.00 +190 Gestion de Servicio veterinario 1.00 13750.00 190 \N 0.00 +191 Gestion de Servicio veterinario 1.00 13000.00 191 \N 0.00 +192 Gestion de Servicio veterinario 1.00 9500.00 192 \N 0.00 +193 Gestion de Servicio veterinario 1.00 10000.00 193 \N 0.00 +194 Gestion de Servicio veterinario 1.00 19000.00 194 \N 0.00 +195 Gestion de Servicio veterinario 1.00 19000.00 195 \N 0.00 +196 Gestion de Servicio veterinario 1.00 17000.00 196 \N 0.00 +197 Gestion de Servicio veterinario 1.00 12200.00 197 \N 0.00 +198 Gestion de Servicio veterinario 1.00 27500.00 198 \N 0.00 +199 Gestion de Servicio veterinario 1.00 11800.00 199 \N 0.00 +200 Gestion de Servicio veterinario 1.00 11800.00 200 \N 0.00 +201 Gestion de Servicio veterinario 1.00 11800.00 201 \N 0.00 +202 Gestion de Servicio veterinario 1.00 10000.00 202 \N 0.00 +203 Gestion de Servicio veterinario 1.00 15000.00 203 \N 0.00 +204 Gestion de Servicio veterinario 1.00 10000.00 204 \N 0.00 +205 Gestion de Servicio veterinario 1.00 53700.00 205 \N 0.00 +206 Gestion de Servicio veterinario 1.00 9500.00 206 \N 0.00 +207 Gestion de Servicio veterinario 1.00 9500.00 207 \N 0.00 +208 Gestion de Servicio veterinario 1.00 5300.00 208 \N 0.00 +209 Gestion de Servicio veterinario 1.00 10000.00 209 \N 0.00 +210 Gestion de Servicio veterinario 1.00 10000.00 210 \N 0.00 +211 Gestion de Servicio veterinario 1.00 90000.00 211 \N 0.00 +212 Gestion de Servicio veterinario 1.00 17000.00 212 \N 0.00 +213 Gestion de Servicio veterinario 1.00 13000.00 213 \N 0.00 +214 Gestion de Servicio veterinario 1.00 10000.00 214 \N 0.00 +215 Gestion de Servicio veterinario 1.00 9500.00 215 \N 0.00 +216 Gestion de Servicio veterinario 1.00 13000.00 216 \N 0.00 +217 Gestion de Servicio veterinario 1.00 48200.00 217 \N 0.00 +218 Gestion de Servicio veterinario 1.00 5300.00 218 \N 0.00 +219 Gestion de Servicio veterinario 1.00 28500.00 219 \N 0.00 +220 Gestion de Servicio veterinario 1.00 10000.00 220 \N 0.00 +221 Gestion de Servicio veterinario 1.00 9500.00 221 \N 0.00 +222 Gestion de Servicio veterinario 1.00 40500.00 222 \N 0.00 +223 Gestion de Servicio veterinario 1.00 9500.00 223 \N 0.00 +224 Gestion de Servicio veterinario 1.00 20200.00 224 \N 0.00 +225 Gestion de Servicio veterinario 1.00 13000.00 225 \N 0.00 +226 Gestion de Servicio veterinario 1.00 13000.00 226 \N 0.00 +227 Gestion de Servicio veterinario 1.00 10000.00 227 \N 0.00 +228 Gestion de Servicio veterinario 1.00 23600.00 228 \N 0.00 +229 Gestion de Servicio veterinario 1.00 13000.00 229 \N 0.00 +230 Gestion de Servicio veterinario 1.00 19000.00 230 \N 0.00 +231 Gestion de Servicio veterinario 1.00 27500.00 231 \N 0.00 +232 Gestion de Servicio veterinario 1.00 10000.00 232 \N 0.00 +233 Gestion de Servicio veterinario 1.00 10000.00 233 \N 0.00 +234 Gestion de Servicio veterinario 1.00 10000.00 234 \N 0.00 +235 Gestion de Servicio veterinario 1.00 13000.00 235 \N 0.00 +236 Gestion de Servicio veterinario 1.00 10000.00 236 \N 0.00 +237 Gestion de Servicio veterinario 1.00 9500.00 237 \N 0.00 +238 Gestion de Servicio veterinario 1.00 10000.00 238 \N 0.00 +239 Gestion de Servicio veterinario 1.00 31500.00 239 \N 0.00 +240 Gestion de Servicio veterinario 1.00 20000.00 240 \N 0.00 +241 Gestion de Servicio veterinario 1.00 10000.00 241 \N 0.00 +242 Gestion de Servicio veterinario 1.00 5000.00 242 \N 0.00 +243 Gestion de Servicio veterinario 1.00 10000.00 243 \N 0.00 +244 Gestion de Servicio veterinario 1.00 9500.00 244 \N 0.00 +245 Gestion de Servicio veterinario 1.00 9500.00 245 \N 0.00 +246 Gestion de Servicio veterinario 1.00 10000.00 246 \N 0.00 +247 Gestion de Servicio veterinario 1.00 13000.00 247 \N 0.00 +248 Gestion de Servicio veterinario 1.00 65700.00 248 \N 0.00 +249 Gestion de Servicio veterinario 1.00 42500.00 249 \N 0.00 +250 Gestion de Servicio veterinario 1.00 54000.00 250 \N 0.00 +251 Gestion de Servicio veterinario 1.00 146000.00 251 \N 0.00 +252 Gestion de Servicio veterinario 1.00 11500.00 252 \N 0.00 +253 Gestion de Servicio veterinario 1.00 13000.00 253 \N 0.00 +254 Gestion de Servicio veterinario 1.00 10000.00 254 \N 0.00 +255 Gestion de Servicio veterinario 1.00 51400.00 255 \N 0.00 +256 Gestion de Servicio veterinario 1.00 61000.00 256 \N 0.00 +257 Gestion de Servicio veterinario 1.00 13000.00 257 \N 0.00 +258 Gestion de Servicio veterinario 1.00 10000.00 258 \N 0.00 +259 Gestion de Servicio veterinario 1.00 10000.00 259 \N 0.00 +260 Gestion de Servicio veterinario 1.00 10000.00 260 \N 0.00 +261 Gestion de Servicio veterinario 1.00 10000.00 261 \N 0.00 +262 Gestion de Servicio veterinario 1.00 10000.00 262 \N 0.00 +263 Gestion de Servicio veterinario 1.00 10000.00 263 \N 0.00 +264 Gestion de Servicio veterinario 1.00 10000.00 264 \N 0.00 +265 Gestion de Servicio veterinario 1.00 10000.00 265 \N 0.00 +266 Gestion de Servicio veterinario 1.00 5000.00 266 \N 0.00 +267 Gestion de Servicio veterinario 1.00 16500.00 267 \N 0.00 +268 Gestion de Servicio veterinario 1.00 19000.00 268 \N 0.00 +269 Gestion de Servicio veterinario 1.00 10000.00 269 \N 0.00 +270 Gestion de Servicio veterinario 1.00 15000.00 270 \N 0.00 +271 Gestion de Servicio veterinario 1.00 65000.00 271 \N 0.00 +272 Gestion de Servicio veterinario 1.00 35500.00 272 \N 0.00 +273 Gestion de Servicio veterinario 1.00 10000.00 273 \N 0.00 +274 Gestion de Servicio veterinario 1.00 19000.00 274 \N 0.00 +275 Gestion de Servicio veterinario 1.00 13000.00 275 \N 0.00 +276 Gestion de Servicio veterinario 1.00 11700.00 276 \N 0.00 +277 Gestion de Servicio veterinario 1.00 9500.00 277 \N 0.00 +278 Gestion de Servicio veterinario 1.00 19000.00 278 \N 0.00 +279 Gestion de Servicio veterinario 1.00 9500.00 279 \N 0.00 +280 Gestion de Servicio veterinario 1.00 205060.00 280 \N 0.00 +281 Gestion de Servicio veterinario 1.00 11700.00 281 \N 0.00 +282 Gestion de Servicio veterinario 1.00 9500.00 282 \N 0.00 +283 Gestion de Servicio veterinario 1.00 13000.00 283 \N 0.00 +284 Gestion de Servicio veterinario 1.00 13000.00 284 \N 0.00 +285 Gestion de Servicio veterinario 1.00 10000.00 285 \N 0.00 +286 Gestion de Servicio veterinario 1.00 40500.00 286 \N 0.00 +287 Gestion de Servicio veterinario 1.00 11700.00 287 \N 0.00 +288 Gestion de Servicio veterinario 1.00 72000.00 288 \N 0.00 +289 Gestion de Servicio veterinario 1.00 10000.00 289 \N 0.00 +290 Gestion de Servicio veterinario 1.00 10000.00 290 \N 0.00 +291 Gestion de Servicio veterinario 1.00 55130.00 291 \N 0.00 +292 Gestion de Servicio veterinario 1.00 171700.00 292 \N 0.00 +293 Gestion de Servicio veterinario 1.00 13000.00 293 \N 0.00 +294 Gestion de Servicio veterinario 1.00 68000.00 294 \N 0.00 +295 Gestion de Servicio veterinario 1.00 27500.00 295 \N 0.00 +296 Gestion de Servicio veterinario 1.00 19000.00 296 \N 0.00 +297 Gestion de Servicio veterinario 1.00 9500.00 297 \N 0.00 +298 Gestion de Servicio veterinario 1.00 10000.00 298 \N 0.00 +299 Gestion de Servicio veterinario 1.00 19000.00 299 \N 0.00 +300 Gestion de Servicio veterinario 1.00 9500.00 300 \N 0.00 +301 Gestion de Servicio veterinario 1.00 10000.00 301 \N 0.00 +302 Gestion de Servicio veterinario 1.00 5300.00 302 \N 0.00 +303 Gestion de Servicio veterinario 1.00 10000.00 303 \N 0.00 +304 Gestion de Servicio veterinario 1.00 10000.00 304 \N 0.00 +305 Gestion de Servicio veterinario 1.00 29700.00 305 \N 0.00 +306 Gestion de Servicio veterinario 1.00 9500.00 306 \N 0.00 +307 Gestion de Servicio veterinario 1.00 95000.00 307 \N 0.00 +308 Gestion de Servicio veterinario 1.00 11700.00 308 \N 0.00 +309 Gestion de Servicio veterinario 1.00 10000.00 309 \N 0.00 +310 Gestion de Servicio veterinario 1.00 19000.00 310 \N 0.00 +311 Gestion de Servicio veterinario 1.00 27500.00 311 \N 0.00 +312 Gestion de Servicio veterinario 1.00 5300.00 312 \N 0.00 +313 Gestion de Servicio veterinario 1.00 10000.00 313 \N 0.00 +314 Gestion de Servicio veterinario 1.00 9500.00 314 \N 0.00 +315 Gestion de Servicio veterinario 1.00 9500.00 315 \N 0.00 +316 Gestion de Servicio veterinario 1.00 10000.00 316 \N 0.00 +317 Gestion de Servicio veterinario 1.00 24750.00 317 \N 0.00 +318 Gestion de Servicio veterinario 1.00 70000.00 318 \N 0.00 +319 Gestion de Servicio veterinario 1.00 10000.00 319 \N 0.00 +320 Gestion de Servicio veterinario 1.00 10000.00 320 \N 0.00 +321 Gestion de Servicio veterinario 1.00 10000.00 321 \N 0.00 +322 Gestion de Servicio veterinario 1.00 5300.00 322 \N 0.00 +323 Gestion de Servicio veterinario 1.00 7700.00 323 \N 0.00 +324 Gestion de Servicio veterinario 1.00 35400.00 324 \N 0.00 +325 Gestion de Servicio veterinario 1.00 29250.00 325 \N 0.00 +326 Gestion de Servicio veterinario 1.00 14050.00 326 \N 0.00 +327 Gestion de Servicio veterinario 1.00 13000.00 327 \N 0.00 +328 Gestion de Servicio veterinario 1.00 10000.00 328 \N 0.00 +329 Gestion de Servicio veterinario 1.00 11800.00 329 \N 0.00 +330 Gestion de Servicio veterinario 1.00 9500.00 330 \N 0.00 +331 Gestion de Servicio veterinario 1.00 21500.00 331 \N 0.00 +332 Gestion de Servicio veterinario 1.00 10000.00 332 \N 0.00 +333 Gestion de Servicio veterinario 1.00 10000.00 333 \N 0.00 +334 Gestion de Servicio veterinario 1.00 10000.00 334 \N 0.00 +335 Gestion de Servicio veterinario 1.00 25500.00 335 \N 0.00 +336 Gestion de Servicio veterinario 1.00 10000.00 336 \N 0.00 +337 Gestion de Servicio veterinario 1.00 10000.00 337 \N 0.00 +338 Gestion de Servicio veterinario 1.00 10000.00 338 \N 0.00 +339 Gestion de Servicio veterinario 1.00 25000.00 339 \N 0.00 +340 Gestion de Servicio veterinario 1.00 10000.00 340 \N 0.00 +341 Gestion de Servicio veterinario 1.00 13000.00 341 \N 0.00 +342 Gestion de Servicio veterinario 1.00 5720.00 342 \N 0.00 +343 Gestion de Servicio veterinario 1.00 149400.00 343 \N 0.00 +344 Gestion de Servicio veterinario 1.00 10000.00 344 \N 0.00 +345 Gestion de Servicio veterinario 1.00 5000.00 345 \N 0.00 +346 Gestion de Servicio veterinario 1.00 27500.00 346 \N 0.00 +347 Gestion de Servicio veterinario 1.00 10000.00 347 \N 0.00 +348 Gestion de Servicio veterinario 1.00 48000.00 348 \N 0.00 +349 Gestion de Servicio veterinario 1.00 17000.00 349 \N 0.00 +350 Gestion de Servicio veterinario 1.00 134190.00 350 \N 0.00 +351 Gestion de Servicio veterinario 1.00 19000.00 351 \N 0.00 +352 Gestion de Servicio veterinario 1.00 10000.00 352 \N 0.00 +353 Gestion de Servicio veterinario 1.00 27500.00 353 \N 0.00 +354 Gestion de Servicio veterinario 1.00 19000.00 354 \N 0.00 +355 Gestion de Servicio veterinario 1.00 64400.00 355 \N 0.00 +356 Gestion de Servicio veterinario 1.00 13000.00 356 \N 0.00 +357 Gestion de Servicio veterinario 1.00 10000.00 357 \N 0.00 +358 Gestion de Servicio veterinario 1.00 7700.00 358 \N 0.00 +359 Gestion de Servicio veterinario 1.00 6200.00 359 \N 0.00 +360 Gestion de Servicio veterinario 1.00 7000.00 360 \N 0.00 +361 Gestion de Servicio veterinario 1.00 23500.00 361 \N 0.00 +362 Gestion de Servicio veterinario 1.00 5700.00 362 \N 0.00 +363 Gestion de Servicio veterinario 1.00 61000.00 363 \N 0.00 +364 Gestion de Servicio veterinario 1.00 15000.00 364 \N 0.00 +365 Gestion de Servicio veterinario 1.00 24750.00 365 \N 0.00 +366 Gestion de Servicio veterinario 1.00 24750.00 366 \N 0.00 +367 Gestion de Servicio veterinario 1.00 10000.00 367 \N 0.00 +368 Gestion de Servicio veterinario 1.00 17000.00 368 \N 0.00 +369 Gestion de Servicio veterinario 1.00 11800.00 369 \N 0.00 +370 Gestion de Servicio veterinario 1.00 9500.00 370 \N 0.00 +371 Gestion de Servicio veterinario 1.00 5300.00 371 \N 0.00 +372 Gestion de Servicio veterinario 1.00 291700.00 372 \N 0.00 +373 Gestion de Servicio veterinario 1.00 49000.00 373 \N 0.00 +374 Gestion de Servicio veterinario 1.00 10000.00 374 \N 0.00 +375 Gestion de Servicio veterinario 1.00 10000.00 375 \N 0.00 +376 Gestion de Servicio veterinario 1.00 10000.00 376 \N 0.00 +377 Gestion de Servicio veterinario 1.00 11000.00 377 \N 0.00 +378 Gestion de Servicio veterinario 1.00 26000.00 378 \N 0.00 +379 Gestion de Servicio veterinario 1.00 500.00 379 \N 0.00 +380 Gestion de Servicio veterinario 1.00 24500.00 380 \N 0.00 +381 Gestion de Servicio veterinario 1.00 11980.00 381 \N 0.00 +382 Gestion de Servicio veterinario 1.00 42200.00 382 \N 0.00 +383 Gestion de Servicio veterinario 1.00 12400.00 383 \N 0.00 +384 Gestion de Servicio veterinario 1.00 11700.00 384 \N 0.00 +385 Gestion de Servicio veterinario 1.00 9500.00 385 \N 0.00 +386 Gestion de Servicio veterinario 1.00 5000.00 386 \N 0.00 +387 Gestion de Servicio veterinario 1.00 6200.00 387 \N 0.00 +388 Gestion de Servicio veterinario 1.00 12000.00 388 \N 0.00 +389 Gestion de Servicio veterinario 1.00 12000.00 389 \N 0.00 +390 Gestion de Servicio veterinario 1.00 7700.00 390 \N 0.00 +391 Gestion de Servicio veterinario 1.00 37350.00 391 \N 0.00 +392 Gestion de Servicio veterinario 1.00 27500.00 392 \N 0.00 +393 Gestion de Servicio veterinario 1.00 10000.00 393 \N 0.00 +394 Gestion de Servicio veterinario 1.00 10000.00 394 \N 0.00 +395 Gestion de Servicio veterinario 1.00 23250.00 395 \N 0.00 +396 Gestion de Servicio veterinario 1.00 10000.00 396 \N 0.00 +397 Gestion de Servicio veterinario 1.00 5000.00 397 \N 0.00 +398 Gestion de Servicio veterinario 1.00 5000.00 398 \N 0.00 +399 Gestion de Servicio veterinario 1.00 5000.00 399 \N 0.00 +400 Gestion de Servicio veterinario 1.00 5000.00 400 \N 0.00 +401 Gestion de Servicio veterinario 1.00 10000.00 401 \N 0.00 +402 Gestion de Servicio veterinario 1.00 27500.00 402 \N 0.00 +403 Gestion de Servicio veterinario 1.00 58150.00 403 \N 0.00 +404 Gestion de Servicio veterinario 1.00 10000.00 404 \N 0.00 +405 Gestion de Servicio veterinario 1.00 10000.00 405 \N 0.00 +406 Gestion de Servicio veterinario 1.00 27500.00 406 \N 0.00 +407 Gestion de Servicio veterinario 1.00 9500.00 407 \N 0.00 +408 Gestion de Servicio veterinario 1.00 10000.00 408 \N 0.00 +409 Gestion de Servicio veterinario 1.00 6300.00 409 \N 0.00 +410 Gestion de Servicio veterinario 1.00 21200.00 410 \N 0.00 +411 Gestion de Servicio veterinario 1.00 9500.00 411 \N 0.00 +412 Gestion de Servicio veterinario 1.00 17000.00 412 \N 0.00 +413 Gestion de Servicio veterinario 1.00 10000.00 413 \N 0.00 +414 Gestion de Servicio veterinario 1.00 27500.00 414 \N 0.00 +415 Gestion de Servicio veterinario 1.00 34000.00 415 \N 0.00 +416 Gestion de Servicio veterinario 1.00 9500.00 416 \N 0.00 +417 Gestion de Servicio veterinario 1.00 30000.00 417 \N 0.00 +418 Gestion de Servicio veterinario 1.00 10000.00 418 \N 0.00 +419 Gestion de Servicio veterinario 1.00 9500.00 419 \N 0.00 +420 Gestion de Servicio veterinario 1.00 11700.00 420 \N 0.00 +421 Gestion de Servicio veterinario 1.00 27500.00 421 \N 0.00 +422 Gestion de Servicio veterinario 1.00 123000.00 422 \N 0.00 +423 Gestion de Servicio veterinario 1.00 9500.00 423 \N 0.00 +424 Gestion de Servicio veterinario 1.00 10600.00 424 \N 0.00 +425 Gestion de Servicio veterinario 1.00 10000.00 425 \N 0.00 +426 Gestion de Servicio veterinario 1.00 12000.00 426 \N 0.00 +427 Gestion de Servicio veterinario 1.00 23400.00 427 \N 0.00 +428 Gestion de Servicio veterinario 1.00 10000.00 428 \N 0.00 +429 Gestion de Servicio veterinario 1.00 27500.00 429 \N 0.00 +430 Gestion de Servicio veterinario 1.00 9500.00 430 \N 0.00 +431 Gestion de Servicio veterinario 1.00 27500.00 431 \N 0.00 +432 Gestion de Servicio veterinario 1.00 24750.00 432 \N 0.00 +433 Gestion de Servicio veterinario 1.00 10000.00 433 \N 0.00 +434 Gestion de Servicio veterinario 1.00 60500.00 434 \N 0.00 +435 Gestion de Servicio veterinario 1.00 13000.00 435 \N 0.00 +436 Gestion de Servicio veterinario 1.00 13000.00 436 \N 0.00 +437 Gestion de Servicio veterinario 1.00 10000.00 437 \N 0.00 +438 Gestion de Servicio veterinario 1.00 27500.00 438 \N 0.00 +439 Gestion de Servicio veterinario 1.00 9500.00 439 \N 0.00 +440 Gestion de Servicio veterinario 1.00 44100.00 440 \N 0.00 +441 Gestion de Servicio veterinario 1.00 11800.00 441 \N 0.00 +442 Gestion de Servicio veterinario 1.00 19000.00 442 \N 0.00 +443 Gestion de Servicio veterinario 1.00 9500.00 443 \N 0.00 +444 Gestion de Servicio veterinario 1.00 13000.00 444 \N 0.00 +445 Gestion de Servicio veterinario 1.00 9500.00 445 \N 0.00 +446 Gestion de Servicio veterinario 1.00 41800.00 446 \N 0.00 +447 Gestion de Servicio veterinario 1.00 5000.00 447 \N 0.00 +448 Gestion de Servicio veterinario 1.00 22350.00 448 \N 0.00 +449 Gestion de Servicio veterinario 1.00 10000.00 449 \N 0.00 +450 Gestion de Servicio veterinario 1.00 50000.00 450 \N 0.00 +451 Gestion de Servicio veterinario 1.00 23600.00 451 \N 0.00 +452 Gestion de Servicio veterinario 1.00 10000.00 452 \N 0.00 +453 Gestion de Servicio veterinario 1.00 10000.00 453 \N 0.00 +454 Gestion de Servicio veterinario 1.00 27500.00 454 \N 0.00 +455 Gestion de Servicio veterinario 1.00 23500.00 455 \N 0.00 +456 Gestion de Servicio veterinario 1.00 13000.00 456 \N 0.00 +457 Gestion de Servicio veterinario 1.00 29700.00 457 \N 0.00 +458 Gestion de Servicio veterinario 1.00 24900.00 458 \N 0.00 +459 Gestion de Servicio veterinario 1.00 10000.00 459 \N 0.00 +460 Gestion de Servicio veterinario 1.00 23600.00 460 \N 0.00 +461 Gestion de Servicio veterinario 1.00 19000.00 461 \N 0.00 +462 Gestion de Servicio veterinario 1.00 10000.00 462 \N 0.00 +463 Gestion de Servicio veterinario 1.00 19000.00 463 \N 0.00 +464 Gestion de Servicio veterinario 1.00 9500.00 464 \N 0.00 +465 Gestion de Servicio veterinario 1.00 47700.00 465 \N 0.00 +466 Gestion de Servicio veterinario 1.00 14000.00 466 \N 0.00 +467 Gestion de Servicio veterinario 1.00 10550.00 467 \N 0.00 +468 Gestion de Servicio veterinario 1.00 12000.00 468 \N 0.00 +469 Gestion de Servicio veterinario 1.00 13000.00 469 \N 0.00 +470 Gestion de Servicio veterinario 1.00 9500.00 470 \N 0.00 +471 Gestion de Servicio veterinario 1.00 89150.00 471 \N 0.00 +472 Gestion de Servicio veterinario 1.00 11500.00 472 \N 0.00 +473 Gestion de Servicio veterinario 1.00 4630.00 473 \N 0.00 +474 Gestion de Servicio veterinario 1.00 26460.00 474 \N 0.00 +475 Gestion de Servicio veterinario 1.00 5300.00 475 \N 0.00 +476 Gestion de Servicio veterinario 1.00 23600.00 476 \N 0.00 +477 Gestion de Servicio veterinario 1.00 5800.00 477 \N 0.00 +478 Gestion de Servicio veterinario 1.00 19000.00 478 \N 0.00 +479 Gestion de Servicio veterinario 1.00 5300.00 479 \N 0.00 +480 Gestion de Servicio veterinario 1.00 10000.00 480 \N 0.00 +481 Gestion de Servicio veterinario 1.00 5500.00 481 \N 0.00 +482 Gestion de Servicio veterinario 1.00 24750.00 482 \N 0.00 +483 Gestion de Servicio veterinario 1.00 15000.00 483 \N 0.00 +484 Gestion de Servicio veterinario 1.00 15000.00 484 \N 0.00 +485 Gestion de Servicio veterinario 1.00 10000.00 485 \N 0.00 +486 Gestion de Servicio veterinario 1.00 117600.00 486 \N 0.00 +487 Gestion de Servicio veterinario 1.00 59530.00 487 \N 0.00 +488 Gestion de Servicio veterinario 1.00 11700.00 488 \N 0.00 +489 Gestion de Servicio veterinario 1.00 10000.00 489 \N 0.00 +490 Gestion de Servicio veterinario 1.00 12000.00 490 \N 0.00 +491 Gestion de Servicio veterinario 1.00 12000.00 491 \N 0.00 +492 Gestion de Servicio veterinario 1.00 12000.00 492 \N 0.00 +493 Gestion de Servicio veterinario 1.00 9500.00 493 \N 0.00 +494 Gestion de Servicio veterinario 1.00 9500.00 494 \N 0.00 +495 Gestion de Servicio veterinario 1.00 28500.00 495 \N 0.00 +496 Gestion de Servicio veterinario 1.00 12000.00 496 \N 0.00 +497 Gestion de Servicio veterinario 1.00 9500.00 497 \N 0.00 +498 Gestion de Servicio veterinario 1.00 12000.00 498 \N 0.00 +499 Gestion de Servicio veterinario 1.00 27500.00 499 \N 0.00 +500 Gestion de Servicio veterinario 1.00 10000.00 500 \N 0.00 +501 Gestion de Servicio veterinario 1.00 12000.00 501 \N 0.00 +502 Gestion de Servicio veterinario 1.00 10000.00 502 \N 0.00 +503 Gestion de Servicio veterinario 1.00 12000.00 503 \N 0.00 +504 Gestion de Servicio veterinario 1.00 15000.00 504 \N 0.00 +505 Gestion de Servicio veterinario 1.00 12000.00 505 \N 0.00 +506 Gestion de Servicio veterinario 1.00 10000.00 506 \N 0.00 +507 Gestion de Servicio veterinario 1.00 27500.00 507 \N 0.00 +508 Gestion de Servicio veterinario 1.00 83600.00 508 \N 0.00 +509 Gestion de Servicio veterinario 1.00 27500.00 509 \N 0.00 +510 Gestion de Servicio veterinario 1.00 4630.00 510 \N 0.00 +511 Gestion de Servicio veterinario 1.00 44700.00 511 \N 0.00 +512 Gestion de Servicio veterinario 1.00 57700.00 512 \N 0.00 +513 Gestion de Servicio veterinario 1.00 10000.00 513 \N 0.00 +514 Gestion de Servicio veterinario 1.00 24750.00 514 \N 0.00 +515 Gestion de Servicio veterinario 1.00 9500.00 515 \N 0.00 +516 Gestion de Servicio veterinario 1.00 10000.00 516 \N 0.00 +517 Gestion de Servicio veterinario 1.00 23600.00 517 \N 0.00 +518 Gestion de Servicio veterinario 1.00 19200.00 518 \N 0.00 +519 Gestion de Servicio veterinario 1.00 46000.00 519 \N 0.00 +520 Gestion de Servicio veterinario 1.00 10000.00 520 \N 0.00 +521 Gestion de Servicio veterinario 1.00 10000.00 521 \N 0.00 +522 Gestion de Servicio veterinario 1.00 27500.00 522 \N 0.00 +523 Gestion de Servicio veterinario 1.00 10000.00 523 \N 0.00 +524 Gestion de Servicio veterinario 1.00 10000.00 524 \N 0.00 +525 Gestion de Servicio veterinario 1.00 6430.00 525 \N 0.00 +526 Gestion de Servicio veterinario 1.00 19000.00 526 \N 0.00 +527 Gestion de Servicio veterinario 1.00 10000.00 527 \N 0.00 +528 Gestion de Servicio veterinario 1.00 5300.00 528 \N 0.00 +529 Gestion de Servicio veterinario 1.00 10000.00 529 \N 0.00 +530 Gestion de Servicio veterinario 1.00 10000.00 530 \N 0.00 +531 Gestion de Servicio veterinario 1.00 10000.00 531 \N 0.00 +532 Gestion de Servicio veterinario 1.00 19000.00 532 \N 0.00 +533 Gestion de Servicio veterinario 1.00 11700.00 533 \N 0.00 +534 Gestion de Servicio veterinario 1.00 45000.00 534 \N 0.00 +535 Gestion de Servicio veterinario 1.00 24000.00 535 \N 0.00 +536 Gestion de Servicio veterinario 1.00 27500.00 536 \N 0.00 +537 Gestion de Servicio veterinario 1.00 19000.00 537 \N 0.00 +538 Gestion de Servicio veterinario 1.00 26600.00 538 \N 0.00 +539 Gestion de Servicio veterinario 1.00 11800.00 539 \N 0.00 +540 Gestion de Servicio veterinario 1.00 17000.00 540 \N 0.00 +541 Gestion de Servicio veterinario 1.00 44700.00 541 \N 0.00 +542 Gestion de Servicio veterinario 1.00 10000.00 542 \N 0.00 +543 Gestion de Servicio veterinario 1.00 56700.00 543 \N 0.00 +544 Gestion de Servicio veterinario 1.00 120500.00 544 \N 0.00 +545 Gestion de Servicio veterinario 1.00 11000.00 545 \N 0.00 +546 Gestion de Servicio veterinario 1.00 12000.00 546 \N 0.00 +547 Gestion de Servicio veterinario 1.00 12000.00 547 \N 0.00 +548 Gestion de Servicio veterinario 1.00 10000.00 548 \N 0.00 +549 Gestion de Servicio veterinario 1.00 12000.00 549 \N 0.00 +550 Gestion de Servicio veterinario 1.00 7700.00 550 \N 0.00 +551 Gestion de Servicio veterinario 1.00 10000.00 551 \N 0.00 +552 Gestion de Servicio veterinario 1.00 26500.00 552 \N 0.00 +553 Gestion de Servicio veterinario 1.00 27500.00 553 \N 0.00 +554 Gestion de Servicio veterinario 1.00 59400.00 554 \N 0.00 +555 Gestion de Servicio veterinario 1.00 11700.00 555 \N 0.00 +556 Gestion de Servicio veterinario 1.00 7700.00 556 \N 0.00 +557 Gestion de Servicio veterinario 1.00 11700.00 557 \N 0.00 +558 Gestion de Servicio veterinario 1.00 66500.00 558 \N 0.00 +559 Gestion de Servicio veterinario 1.00 9500.00 559 \N 0.00 +560 Gestion de Servicio veterinario 1.00 9500.00 560 \N 0.00 +561 Gestion de Servicio veterinario 1.00 9500.00 561 \N 0.00 +562 Gestion de Servicio veterinario 1.00 49700.00 562 \N 0.00 +563 Gestion de Servicio veterinario 1.00 83100.00 563 \N 0.00 +564 Gestion de Servicio veterinario 1.00 22500.00 564 \N 0.00 +565 Gestion de Servicio veterinario 1.00 9500.00 565 \N 0.00 +566 Gestion de Servicio veterinario 1.00 30000.00 566 \N 0.00 +567 Gestion de Servicio veterinario 1.00 10000.00 567 \N 0.00 +568 Gestion de Servicio veterinario 1.00 9500.00 568 \N 0.00 +569 Gestion de Servicio veterinario 1.00 10000.00 569 \N 0.00 +570 Gestion de Servicio veterinario 1.00 12000.00 570 \N 0.00 +571 Gestion de Servicio veterinario 1.00 27500.00 571 \N 0.00 +572 Gestion de Servicio veterinario 1.00 5300.00 572 \N 0.00 +573 Gestion de Servicio veterinario 1.00 27500.00 573 \N 0.00 +574 Gestion de Servicio veterinario 1.00 17000.00 574 \N 0.00 +575 Gestion de Servicio veterinario 1.00 12000.00 575 \N 0.00 +576 Gestion de Servicio veterinario 1.00 12000.00 576 \N 0.00 +577 Gestion de Servicio veterinario 1.00 23400.00 577 \N 0.00 +578 Gestion de Servicio veterinario 1.00 9500.00 578 \N 0.00 +579 Gestion de Servicio veterinario 1.00 10000.00 579 \N 0.00 +580 Gestion de Servicio veterinario 1.00 12000.00 580 \N 0.00 +581 Gestion de Servicio veterinario 1.00 10000.00 581 \N 0.00 +582 Gestion de Servicio veterinario 1.00 10000.00 582 \N 0.00 +583 Gestion de Servicio veterinario 1.00 24400.00 583 \N 0.00 +584 Gestion de Servicio veterinario 1.00 10000.00 584 \N 0.00 +585 Gestion de Servicio veterinario 1.00 24000.00 585 \N 0.00 +586 Gestion de Servicio veterinario 1.00 10000.00 586 \N 0.00 +587 Gestion de Servicio veterinario 1.00 18700.00 587 \N 0.00 +588 Gestion de Servicio veterinario 1.00 15000.00 588 \N 0.00 +589 Gestion de Servicio veterinario 1.00 15000.00 589 \N 0.00 +590 Gestion de Servicio veterinario 1.00 19000.00 590 \N 0.00 +591 Gestion de Servicio veterinario 1.00 12000.00 591 \N 0.00 +592 Gestion de Servicio veterinario 1.00 45000.00 592 \N 0.00 +593 Gestion de Servicio veterinario 1.00 19000.00 593 \N 0.00 +594 Gestion de Servicio veterinario 1.00 10000.00 594 \N 0.00 +595 Gestion de Servicio veterinario 1.00 10000.00 595 \N 0.00 +596 Gestion de Servicio veterinario 1.00 10000.00 596 \N 0.00 +597 Gestion de Servicio veterinario 1.00 5100.00 597 \N 0.00 +598 Gestion de Servicio veterinario 1.00 27500.00 598 \N 0.00 +599 Gestion de Servicio veterinario 1.00 12000.00 599 \N 0.00 +600 Gestion de Servicio veterinario 1.00 15000.00 600 \N 0.00 +601 Gestion de Servicio veterinario 1.00 10000.00 601 \N 0.00 +602 Gestion de Servicio veterinario 1.00 12000.00 602 \N 0.00 +603 Gestion de Servicio veterinario 1.00 9500.00 603 \N 0.00 +604 Gestion de Servicio veterinario 1.00 11700.00 604 \N 0.00 +605 Gestion de Servicio veterinario 1.00 12000.00 605 \N 0.00 +606 Gestion de Servicio veterinario 1.00 10000.00 606 \N 0.00 +607 Gestion de Servicio veterinario 1.00 11700.00 607 \N 0.00 +608 Gestion de Servicio veterinario 1.00 73000.00 608 \N 0.00 +609 Gestion de Servicio veterinario 1.00 7700.00 609 \N 0.00 +610 Gestion de Servicio veterinario 1.00 10000.00 610 \N 0.00 +611 Gestion de Servicio veterinario 1.00 23600.00 611 \N 0.00 +612 Gestion de Servicio veterinario 1.00 27500.00 612 \N 0.00 +613 Gestion de Servicio veterinario 1.00 27500.00 613 \N 0.00 +614 Gestion de Servicio veterinario 1.00 29250.00 614 \N 0.00 +615 Gestion de Servicio veterinario 1.00 34560.00 615 \N 0.00 +616 Gestion de Servicio veterinario 1.00 25000.00 616 \N 0.00 +617 Gestion de Servicio veterinario 1.00 42000.00 617 \N 0.00 +618 Gestion de Servicio veterinario 1.00 24000.00 618 \N 0.00 +619 Gestion de Servicio veterinario 1.00 5300.00 619 \N 0.00 +620 Gestion de Servicio veterinario 1.00 9500.00 620 \N 0.00 +621 Gestion de Servicio veterinario 1.00 10000.00 621 \N 0.00 +622 Gestion de Servicio veterinario 1.00 10000.00 622 \N 0.00 +623 Gestion de Servicio veterinario 1.00 17000.00 623 \N 0.00 +624 Gestion de Servicio veterinario 1.00 10000.00 624 \N 0.00 +625 Gestion de Servicio veterinario 1.00 9500.00 625 \N 0.00 +626 Gestion de Servicio veterinario 1.00 9500.00 626 \N 0.00 +627 Gestion de Servicio veterinario 1.00 12000.00 627 \N 0.00 +628 Gestion de Servicio veterinario 1.00 23000.00 628 \N 0.00 +629 Gestion de Servicio veterinario 1.00 10000.00 629 \N 0.00 +630 Gestion de Servicio veterinario 1.00 10000.00 630 \N 0.00 +631 Gestion de Servicio veterinario 1.00 30000.00 631 \N 0.00 +632 Gestion de Servicio veterinario 1.00 9500.00 632 \N 0.00 +633 Gestion de Servicio veterinario 1.00 17100.00 633 \N 0.00 +634 Gestion de Servicio veterinario 1.00 70300.00 634 \N 0.00 +635 Gestion de Servicio veterinario 1.00 15000.00 635 \N 0.00 +636 Gestion de Servicio veterinario 1.00 11700.00 636 \N 0.00 +637 Gestion de Servicio veterinario 1.00 9500.00 637 \N 0.00 +638 Gestion de Servicio veterinario 1.00 9500.00 638 \N 0.00 +639 Gestion de Servicio veterinario 1.00 11500.00 639 \N 0.00 +640 Gestion de Servicio veterinario 1.00 11500.00 640 \N 0.00 +641 Gestion de Servicio veterinario 1.00 19000.00 641 \N 0.00 +642 Gestion de Servicio veterinario 1.00 10000.00 642 \N 0.00 +643 Gestion de Servicio veterinario 1.00 10000.00 643 \N 0.00 +644 Gestion de Servicio veterinario 1.00 10000.00 644 \N 0.00 +645 Gestion de Servicio veterinario 1.00 19000.00 645 \N 0.00 +646 Gestion de Servicio veterinario 1.00 12000.00 646 \N 0.00 +647 Gestion de Servicio veterinario 1.00 12000.00 647 \N 0.00 +648 Gestion de Servicio veterinario 1.00 12000.00 648 \N 0.00 +649 Gestion de Servicio veterinario 1.00 26300.00 649 \N 0.00 +650 Gestion de Servicio veterinario 1.00 11800.00 650 \N 0.00 +651 Gestion de Servicio veterinario 1.00 10000.00 651 \N 0.00 +652 Gestion de Servicio veterinario 1.00 19000.00 652 \N 0.00 +653 Gestion de Servicio veterinario 1.00 19000.00 653 \N 0.00 +654 Gestion de Servicio veterinario 1.00 10000.00 654 \N 0.00 +655 Gestion de Servicio veterinario 1.00 9500.00 655 \N 0.00 +656 Gestion de Servicio veterinario 1.00 27500.00 656 \N 0.00 +657 Gestion de Servicio veterinario 1.00 10000.00 657 \N 0.00 +658 Gestion de Servicio veterinario 1.00 19000.00 658 \N 0.00 +659 Gestion de Servicio veterinario 1.00 11000.00 659 \N 0.00 +660 Gestion de Servicio veterinario 1.00 9500.00 660 \N 0.00 +661 Gestion de Servicio veterinario 1.00 13700.00 661 \N 0.00 +662 Gestion de Servicio veterinario 1.00 42000.00 662 \N 0.00 +663 Gestion de Servicio veterinario 1.00 10000.00 663 \N 0.00 +664 Gestion de Servicio veterinario 1.00 5000.00 664 \N 0.00 +665 Gestion de Servicio veterinario 1.00 9500.00 665 \N 0.00 +666 Gestion de Servicio veterinario 1.00 9500.00 666 \N 0.00 +667 Gestion de Servicio veterinario 1.00 10000.00 667 \N 0.00 +668 Gestion de Servicio veterinario 1.00 24000.00 668 \N 0.00 +669 Gestion de Servicio veterinario 1.00 47230.00 669 \N 0.00 +670 Gestion de Servicio veterinario 1.00 20000.00 670 \N 0.00 +671 Gestion de Servicio veterinario 1.00 13650.00 671 \N 0.00 +672 Gestion de Servicio veterinario 1.00 12000.00 672 \N 0.00 +673 Gestion de Servicio veterinario 1.00 12000.00 673 \N 0.00 +674 Gestion de Servicio veterinario 1.00 12000.00 674 \N 0.00 +675 Gestion de Servicio veterinario 1.00 10000.00 675 \N 0.00 +676 Gestion de Servicio veterinario 1.00 10000.00 676 \N 0.00 +677 Gestion de Servicio veterinario 1.00 24000.00 677 \N 0.00 +678 Gestion de Servicio veterinario 1.00 12000.00 678 \N 0.00 +679 Gestion de Servicio veterinario 1.00 9500.00 679 \N 0.00 +680 Gestion de Servicio veterinario 1.00 33000.00 680 \N 0.00 +681 Gestion de Servicio veterinario 1.00 21200.00 681 \N 0.00 +682 Gestion de Servicio veterinario 1.00 9500.00 682 \N 0.00 +683 Gestion de Servicio veterinario 1.00 19000.00 683 \N 0.00 +684 Gestion de Servicio veterinario 1.00 12000.00 684 \N 0.00 +685 Gestion de Servicio veterinario 1.00 27500.00 685 \N 0.00 +686 Gestion de Servicio veterinario 1.00 10000.00 686 \N 0.00 +687 Gestion de Servicio veterinario 1.00 10000.00 687 \N 0.00 +688 Gestion de Servicio veterinario 1.00 10000.00 688 \N 0.00 +689 Gestion de Servicio veterinario 1.00 30000.00 689 \N 0.00 +690 Gestion de Servicio veterinario 1.00 10000.00 690 \N 0.00 +691 Gestion de Servicio veterinario 1.00 9500.00 691 \N 0.00 +692 Gestion de Servicio veterinario 1.00 12000.00 692 \N 0.00 +693 Gestion de Servicio veterinario 1.00 10000.00 693 \N 0.00 +694 Gestion de Servicio veterinario 1.00 10000.00 694 \N 0.00 +695 Gestion de Servicio veterinario 1.00 10000.00 695 \N 0.00 +696 Gestion de Servicio veterinario 1.00 10000.00 696 \N 0.00 +697 Gestion de Servicio veterinario 1.00 20000.00 697 \N 0.00 +698 Gestion de Servicio veterinario 1.00 19000.00 698 \N 0.00 +699 Gestion de Servicio veterinario 1.00 10000.00 699 \N 0.00 +700 Gestion de Servicio veterinario 1.00 10000.00 700 \N 0.00 +701 Gestion de Servicio veterinario 1.00 10000.00 701 \N 0.00 +702 Gestion de Servicio veterinario 1.00 10000.00 702 \N 0.00 +703 Gestion de Servicio veterinario 1.00 10000.00 703 \N 0.00 +704 Gestion de Servicio veterinario 1.00 72000.00 704 \N 0.00 +705 Gestion de Servicio veterinario 1.00 10000.00 705 \N 0.00 +706 Gestion de Servicio veterinario 1.00 35000.00 706 \N 0.00 +707 Gestion de Servicio veterinario 1.00 27500.00 707 \N 0.00 +708 Gestion de Servicio veterinario 1.00 9500.00 708 \N 0.00 +709 Gestion de Servicio veterinario 1.00 53000.00 709 \N 0.00 +710 Gestion de Servicio veterinario 1.00 9500.00 710 \N 0.00 +711 Gestion de Servicio veterinario 1.00 10000.00 711 \N 0.00 +712 Gestion de Servicio veterinario 1.00 10000.00 712 \N 0.00 +713 Gestion de Servicio veterinario 1.00 10000.00 713 \N 0.00 +714 Gestion de Servicio veterinario 1.00 15000.00 714 \N 0.00 +715 Gestion de Servicio veterinario 1.00 9500.00 715 \N 0.00 +716 Gestion de Servicio veterinario 1.00 10000.00 716 \N 0.00 +717 Gestion de Servicio veterinario 1.00 10000.00 717 \N 0.00 +718 Gestion de Servicio veterinario 1.00 10000.00 718 \N 0.00 +719 Gestion de Servicio veterinario 1.00 9500.00 719 \N 0.00 +720 Gestion de Servicio veterinario 1.00 10000.00 720 \N 0.00 +721 Gestion de Servicio veterinario 1.00 10000.00 721 \N 0.00 +722 Gestion de Servicio veterinario 1.00 17000.00 722 \N 0.00 +723 Gestion de Servicio veterinario 1.00 26400.00 723 \N 0.00 +724 Gestion de Servicio veterinario 1.00 15900.00 724 \N 0.00 +725 Gestion de Servicio veterinario 1.00 9500.00 725 \N 0.00 +726 Gestion de Servicio veterinario 1.00 200100.00 726 \N 0.00 +727 Gestion de Servicio veterinario 1.00 10000.00 727 \N 0.00 +728 Gestion de Servicio veterinario 1.00 9900.00 728 \N 0.00 +729 Gestion de Servicio veterinario 1.00 10000.00 729 \N 0.00 +730 Gestion de Servicio veterinario 1.00 27500.00 730 \N 0.00 +731 Gestion de Servicio veterinario 1.00 9500.00 731 \N 0.00 +732 Gestion de Servicio veterinario 1.00 12000.00 732 \N 0.00 +733 Gestion de Servicio veterinario 1.00 10600.00 733 \N 0.00 +734 Gestion de Servicio veterinario 1.00 9500.00 734 \N 0.00 +735 Gestion de Servicio veterinario 1.00 20000.00 735 \N 0.00 +736 Gestion de Servicio veterinario 1.00 45000.00 736 \N 0.00 +737 Gestion de Servicio veterinario 1.00 11700.00 737 \N 0.00 +738 Gestion de Servicio veterinario 1.00 10000.00 738 \N 0.00 +739 Gestion de Servicio veterinario 1.00 9500.00 739 \N 0.00 +740 Gestion de Servicio veterinario 1.00 9500.00 740 \N 0.00 +741 Gestion de Servicio veterinario 1.00 9500.00 741 \N 0.00 +742 Gestion de Servicio veterinario 1.00 27500.00 742 \N 0.00 +743 Gestion de Servicio veterinario 1.00 23400.00 743 \N 0.00 +744 Gestion de Servicio veterinario 1.00 7700.00 744 \N 0.00 +745 Gestion de Servicio veterinario 1.00 10000.00 745 \N 0.00 +746 Gestion de Servicio veterinario 1.00 11500.00 746 \N 0.00 +747 Gestion de Servicio veterinario 1.00 12000.00 747 \N 0.00 +748 Gestion de Servicio veterinario 1.00 27500.00 748 \N 0.00 +749 Gestion de Servicio veterinario 1.00 10000.00 749 \N 0.00 +750 Gestion de Servicio veterinario 1.00 5800.00 750 \N 0.00 +751 Gestion de Servicio veterinario 1.00 144000.00 751 \N 0.00 +752 Gestion de Servicio veterinario 1.00 19000.00 752 \N 0.00 +753 Gestion de Servicio veterinario 1.00 25500.00 753 \N 0.00 +754 Gestion de Servicio veterinario 1.00 9500.00 754 \N 0.00 +755 Gestion de Servicio veterinario 1.00 27500.00 755 \N 0.00 +756 Gestion de Servicio veterinario 1.00 45000.00 756 \N 0.00 +757 Gestion de Servicio veterinario 1.00 23400.00 757 \N 0.00 +758 Gestion de Servicio veterinario 1.00 10000.00 758 \N 0.00 +759 Gestion de Servicio veterinario 1.00 17000.00 759 \N 0.00 +760 Gestion de Servicio veterinario 1.00 10000.00 760 \N 0.00 +761 Gestion de Servicio veterinario 1.00 10000.00 761 \N 0.00 +762 Gestion de Servicio veterinario 1.00 12000.00 762 \N 0.00 +763 Gestion de Servicio veterinario 1.00 12000.00 763 \N 0.00 +764 Gestion de Servicio veterinario 1.00 10000.00 764 \N 0.00 +765 Gestion de Servicio veterinario 1.00 19000.00 765 \N 0.00 +766 Gestion de Servicio veterinario 1.00 4000.00 766 \N 0.00 +767 Gestion de Servicio veterinario 1.00 10000.00 767 \N 0.00 +768 Gestion de Servicio veterinario 1.00 15000.00 768 \N 0.00 +769 Gestion de Servicio veterinario 1.00 9500.00 769 \N 0.00 +770 Gestion de Servicio veterinario 1.00 9500.00 770 \N 0.00 +771 Gestion de Servicio veterinario 1.00 11500.00 771 \N 0.00 +772 Gestion de Servicio veterinario 1.00 12000.00 772 \N 0.00 +773 Gestion de Servicio veterinario 1.00 12000.00 773 \N 0.00 +774 Gestion de Servicio veterinario 1.00 10000.00 774 \N 0.00 +775 Gestion de Servicio veterinario 1.00 19000.00 775 \N 0.00 +776 Gestion de Servicio veterinario 1.00 9500.00 776 \N 0.00 +777 Gestion de Servicio veterinario 1.00 50000.00 777 \N 0.00 +778 Gestion de Servicio veterinario 1.00 10000.00 778 \N 0.00 +779 Gestion de Servicio veterinario 1.00 9500.00 779 \N 0.00 +780 Gestion de Servicio veterinario 1.00 106350.00 780 \N 0.00 +781 Gestion de Servicio veterinario 1.00 42000.00 781 \N 0.00 +782 Gestion de Servicio veterinario 1.00 10000.00 782 \N 0.00 +783 Gestion de Servicio veterinario 1.00 17000.00 783 \N 0.00 +784 Gestion de Servicio veterinario 1.00 10000.00 784 \N 0.00 +785 Gestion de Servicio veterinario 1.00 27500.00 785 \N 0.00 +786 Gestion de Servicio veterinario 1.00 10000.00 786 \N 0.00 +787 Gestion de Servicio veterinario 1.00 10000.00 787 \N 0.00 +788 Gestion de Servicio veterinario 1.00 27000.00 788 \N 0.00 +789 Gestion de Servicio veterinario 1.00 5500.00 789 \N 0.00 +790 Gestion de Servicio veterinario 1.00 10000.00 790 \N 0.00 +791 Gestion de Servicio veterinario 1.00 27500.00 791 \N 0.00 +792 Gestion de Servicio veterinario 1.00 12000.00 792 \N 0.00 +793 Gestion de Servicio veterinario 1.00 10000.00 793 \N 0.00 +794 Gestion de Servicio veterinario 1.00 23600.00 794 \N 0.00 +795 Gestion de Servicio veterinario 1.00 94500.00 795 \N 0.00 +796 Gestion de Servicio veterinario 1.00 135450.00 796 \N 0.00 +797 Gestion de Servicio veterinario 1.00 15000.00 797 \N 0.00 +798 Gestion de Servicio veterinario 1.00 24000.00 798 \N 0.00 +799 Gestion de Servicio veterinario 1.00 23600.00 799 \N 0.00 +800 Gestion de Servicio veterinario 1.00 9500.00 800 \N 0.00 +801 Gestion de Servicio veterinario 1.00 9500.00 801 \N 0.00 +802 Gestion de Servicio veterinario 1.00 10000.00 802 \N 0.00 +803 Gestion de Servicio veterinario 1.00 12000.00 803 \N 0.00 +804 Gestion de Servicio veterinario 1.00 42000.00 804 \N 0.00 +805 Gestion de Servicio veterinario 1.00 95000.00 805 \N 0.00 +806 Gestion de Servicio veterinario 1.00 10000.00 806 \N 0.00 +807 Gestion de Servicio veterinario 1.00 12100.00 807 \N 0.00 +808 Gestion de Servicio veterinario 1.00 19000.00 808 \N 0.00 +809 Gestion de Servicio veterinario 1.00 5300.00 809 \N 0.00 +810 Gestion de Servicio veterinario 1.00 34700.00 810 \N 0.00 +811 Gestion de Servicio veterinario 1.00 10000.00 811 \N 0.00 +812 Gestion de Servicio veterinario 1.00 10000.00 812 \N 0.00 +813 Gestion de Servicio veterinario 1.00 12000.00 813 \N 0.00 +814 Gestion de Servicio veterinario 1.00 27500.00 814 \N 0.00 +815 Gestion de Servicio veterinario 1.00 19000.00 815 \N 0.00 +816 Gestion de Servicio veterinario 1.00 10000.00 816 \N 0.00 +817 Gestion de Servicio veterinario 1.00 10000.00 817 \N 0.00 +818 Gestion de Servicio veterinario 1.00 10000.00 818 \N 0.00 +819 Gestion de Servicio veterinario 1.00 27500.00 819 \N 0.00 +820 Gestion de Servicio veterinario 1.00 194400.00 820 \N 0.00 +821 Gestion de Servicio veterinario 1.00 23600.00 821 \N 0.00 +822 Gestion de Servicio veterinario 1.00 19000.00 822 \N 0.00 +823 Gestion de Servicio veterinario 1.00 10000.00 823 \N 0.00 +824 Gestion de Servicio veterinario 1.00 9500.00 824 \N 0.00 +825 Gestion de Servicio veterinario 1.00 9500.00 825 \N 0.00 +826 Gestion de Servicio veterinario 1.00 19000.00 826 \N 0.00 +827 Gestion de Servicio veterinario 1.00 10000.00 827 \N 0.00 +828 Gestion de Servicio veterinario 1.00 12000.00 828 \N 0.00 +829 Gestion de Servicio veterinario 1.00 50000.00 829 \N 0.00 +830 Gestion de Servicio veterinario 1.00 64500.00 830 \N 0.00 +831 Gestion de Servicio veterinario 1.00 9500.00 831 \N 0.00 +832 Gestion de Servicio veterinario 1.00 27500.00 832 \N 0.00 +833 Gestion de Servicio veterinario 1.00 11700.00 833 \N 0.00 +834 Gestion de Servicio veterinario 1.00 50000.00 834 \N 0.00 +835 Gestion de Servicio veterinario 1.00 25500.00 835 \N 0.00 +836 Gestion de Servicio veterinario 1.00 42000.00 836 \N 0.00 +837 Gestion de Servicio veterinario 1.00 40000.00 837 \N 0.00 +838 Gestion de Servicio veterinario 1.00 19000.00 838 \N 0.00 +839 Gestion de Servicio veterinario 1.00 10000.00 839 \N 0.00 +840 Gestion de Servicio veterinario 1.00 10000.00 840 \N 0.00 +841 Gestion de Servicio veterinario 1.00 12000.00 841 \N 0.00 +842 Gestion de Servicio veterinario 1.00 24500.00 842 \N 0.00 +843 Gestion de Servicio veterinario 1.00 10000.00 843 \N 0.00 +844 Gestion de Servicio veterinario 1.00 23600.00 844 \N 0.00 +845 Gestion de Servicio veterinario 1.00 50000.00 845 \N 0.00 +846 Gestion de Servicio veterinario 1.00 10000.00 846 \N 0.00 +847 Gestion de Servicio veterinario 1.00 10000.00 847 \N 0.00 +848 Gestion de Servicio veterinario 1.00 11000.00 848 \N 0.00 +849 Gestion de Servicio veterinario 1.00 10000.00 849 \N 0.00 +850 Gestion de Servicio veterinario 1.00 15000.00 850 \N 0.00 +851 Gestion de Servicio veterinario 1.00 17000.00 851 \N 0.00 +852 Gestion de Servicio veterinario 1.00 10000.00 852 \N 0.00 +853 Gestion de Servicio veterinario 1.00 12000.00 853 \N 0.00 +854 Gestion de Servicio veterinario 1.00 10000.00 854 \N 0.00 +855 Gestion de Servicio veterinario 1.00 10000.00 855 \N 0.00 +856 Gestion de Servicio veterinario 1.00 17000.00 856 \N 0.00 +857 Gestion de Servicio veterinario 1.00 9500.00 857 \N 0.00 +858 Gestion de Servicio veterinario 1.00 10000.00 858 \N 0.00 +859 Gestion de Servicio veterinario 1.00 10000.00 859 \N 0.00 +860 Gestion de Servicio veterinario 1.00 10000.00 860 \N 0.00 +861 Gestion de Servicio veterinario 1.00 9500.00 861 \N 0.00 +862 Gestion de Servicio veterinario 1.00 24750.00 862 \N 0.00 +863 Gestion de Servicio veterinario 1.00 9500.00 863 \N 0.00 +864 Gestion de Servicio veterinario 1.00 10000.00 864 \N 0.00 +865 Gestion de Servicio veterinario 1.00 15000.00 865 \N 0.00 +866 Gestion de Servicio veterinario 1.00 12000.00 866 \N 0.00 +867 Gestion de Servicio veterinario 1.00 9500.00 867 \N 0.00 +868 Gestion de Servicio veterinario 1.00 12000.00 868 \N 0.00 +869 Gestion de Servicio veterinario 1.00 9500.00 869 \N 0.00 +870 Gestion de Servicio veterinario 1.00 10000.00 870 \N 0.00 +871 Gestion de Servicio veterinario 1.00 23600.00 871 \N 0.00 +872 Gestion de Servicio veterinario 1.00 6300.00 872 \N 0.00 +873 Gestion de Servicio veterinario 1.00 10000.00 873 \N 0.00 +874 Gestion de Servicio veterinario 1.00 10000.00 874 \N 0.00 +875 Gestion de Servicio veterinario 1.00 12000.00 875 \N 0.00 +876 Gestion de Servicio veterinario 1.00 119500.00 876 \N 0.00 +877 Gestion de Servicio veterinario 1.00 10000.00 877 \N 0.00 +878 Gestion de Servicio veterinario 1.00 13200.00 878 \N 0.00 +879 Gestion de Servicio veterinario 1.00 10250.00 879 \N 0.00 +880 Gestion de Servicio veterinario 1.00 50000.00 880 \N 0.00 +881 Gestion de Servicio veterinario 1.00 10000.00 881 \N 0.00 +882 Gestion de Servicio veterinario 1.00 13100.00 882 \N 0.00 +883 Gestion de Servicio veterinario 1.00 17000.00 883 \N 0.00 +884 Gestion de Servicio veterinario 1.00 9500.00 884 \N 0.00 +885 Gestion de Servicio veterinario 1.00 84100.00 885 \N 0.00 +886 Gestion de Servicio veterinario 1.00 19000.00 886 \N 0.00 +887 Gestion de Servicio veterinario 1.00 10000.00 887 \N 0.00 +888 Gestion de Servicio veterinario 1.00 5300.00 888 \N 0.00 +889 Gestion de Servicio veterinario 1.00 7700.00 889 \N 0.00 +890 Gestion de Servicio veterinario 1.00 12000.00 890 \N 0.00 +891 Gestion de Servicio veterinario 1.00 10000.00 891 \N 0.00 +892 Gestion de Servicio veterinario 1.00 12000.00 892 \N 0.00 +893 Gestion de Servicio veterinario 1.00 5300.00 893 \N 0.00 +894 Gestion de Servicio veterinario 1.00 19000.00 894 \N 0.00 +895 Gestion de Servicio veterinario 1.00 12000.00 895 \N 0.00 +896 Gestion de Servicio veterinario 1.00 19000.00 896 \N 0.00 +897 Gestion de Servicio veterinario 1.00 27500.00 897 \N 0.00 +898 Gestion de Servicio veterinario 1.00 9500.00 898 \N 0.00 +899 Gestion de Servicio veterinario 1.00 9500.00 899 \N 0.00 +900 Gestion de Servicio veterinario 1.00 65700.00 900 \N 0.00 +901 Gestion de Servicio veterinario 1.00 25000.00 901 \N 0.00 +902 Gestion de Servicio veterinario 1.00 10000.00 902 \N 0.00 +903 Gestion de Servicio veterinario 1.00 10000.00 903 \N 0.00 +904 Gestion de Servicio veterinario 1.00 24000.00 904 \N 0.00 +905 Gestion de Servicio veterinario 1.00 10000.00 905 \N 0.00 +906 Gestion de Servicio veterinario 1.00 8500.00 906 \N 0.00 +907 Gestion de Servicio veterinario 1.00 35650.00 907 \N 0.00 +908 Gestion de Servicio veterinario 1.00 12000.00 908 \N 0.00 +909 Gestion de Servicio veterinario 1.00 12800.00 909 \N 0.00 +910 Gestion de Servicio veterinario 1.00 23600.00 910 \N 0.00 +911 Gestion de Servicio veterinario 1.00 23600.00 911 \N 0.00 +912 Gestion de Servicio veterinario 1.00 15500.00 912 \N 0.00 +913 Gestion de Servicio veterinario 1.00 15500.00 913 \N 0.00 +914 Gestion de Servicio veterinario 1.00 24750.00 914 \N 0.00 +915 Gestion de Servicio veterinario 1.00 11500.00 915 \N 0.00 +916 Gestion de Servicio veterinario 1.00 10000.00 916 \N 0.00 +917 Gestion de Servicio veterinario 1.00 20800.00 917 \N 0.00 +918 Gestion de Servicio veterinario 1.00 9500.00 918 \N 0.00 +919 Gestion de Servicio veterinario 1.00 9500.00 919 \N 0.00 +920 Gestion de Servicio veterinario 1.00 9500.00 920 \N 0.00 +921 Gestion de Servicio veterinario 1.00 15000.00 921 \N 0.00 +922 Gestion de Servicio veterinario 1.00 57000.00 922 \N 0.00 +923 Gestion de Servicio veterinario 1.00 23600.00 923 \N 0.00 +924 Gestion de Servicio veterinario 1.00 10600.00 924 \N 0.00 +925 Gestion de Servicio veterinario 1.00 9500.00 925 \N 0.00 +926 Gestion de Servicio veterinario 1.00 10000.00 926 \N 0.00 +927 Gestion de Servicio veterinario 1.00 9500.00 927 \N 0.00 +928 Gestion de Servicio veterinario 1.00 5500.00 928 \N 0.00 +929 Gestion de Servicio veterinario 1.00 10000.00 929 \N 0.00 +930 Gestion de Servicio veterinario 1.00 102700.00 930 \N 0.00 +931 Gestion de Servicio veterinario 1.00 9500.00 931 \N 0.00 +932 Gestion de Servicio veterinario 1.00 45000.00 932 \N 0.00 +933 Gestion de Servicio veterinario 1.00 9500.00 933 \N 0.00 +934 Gestion de Servicio veterinario 1.00 137800.00 934 \N 0.00 +935 Gestion de Servicio veterinario 1.00 55860.00 935 \N 0.00 +936 Gestion de Servicio veterinario 1.00 5300.00 936 \N 0.00 +937 Gestion de Servicio veterinario 1.00 34000.00 937 \N 0.00 +938 Gestion de Servicio veterinario 1.00 10000.00 938 \N 0.00 +939 Gestion de Servicio veterinario 1.00 15000.00 939 \N 0.00 +940 Gestion de Servicio veterinario 1.00 9500.00 940 \N 0.00 +941 Gestion de Servicio veterinario 1.00 27500.00 941 \N 0.00 +942 Gestion de Servicio veterinario 1.00 10500.00 942 \N 0.00 +943 Gestion de Servicio veterinario 1.00 12000.00 943 \N 0.00 +944 Gestion de Servicio veterinario 1.00 4630.00 944 \N 0.00 +945 Gestion de Servicio veterinario 1.00 9500.00 945 \N 0.00 +946 Gestion de Servicio veterinario 1.00 28500.00 946 \N 0.00 +947 Gestion de Servicio veterinario 1.00 5300.00 947 \N 0.00 +948 Gestion de Servicio veterinario 1.00 17000.00 948 \N 0.00 +949 Gestion de Servicio veterinario 1.00 45000.00 949 \N 0.00 +950 Gestion de Servicio veterinario 1.00 10500.00 950 \N 0.00 +951 Gestion de Servicio veterinario 1.00 12000.00 951 \N 0.00 +952 Gestion de Servicio veterinario 1.00 27500.00 952 \N 0.00 +953 Gestion de Servicio veterinario 1.00 10000.00 953 \N 0.00 +954 Gestion de Servicio veterinario 1.00 10000.00 954 \N 0.00 +955 Gestion de Servicio veterinario 1.00 23600.00 955 \N 0.00 +956 Gestion de Servicio veterinario 1.00 27500.00 956 \N 0.00 +957 Gestion de Servicio veterinario 1.00 80000.00 957 \N 0.00 +958 Gestion de Servicio veterinario 1.00 59000.00 958 \N 0.00 +959 Gestion de Servicio veterinario 1.00 31200.00 959 \N 0.00 +960 Gestion de Servicio veterinario 1.00 9500.00 960 \N 0.00 +961 Gestion de Servicio veterinario 1.00 9500.00 961 \N 0.00 +\. + + +-- +-- Data for Name: afip_receiptpdf; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_receiptpdf (id, pdf_file, issuing_name, issuing_address, issuing_email, vat_condition, gross_income_condition, client_name, client_address, client_vat_condition, sales_terms, receipt_id) FROM stdin; +1 afip/receipts/e5/fc/e5fcd9a847a5439c94725544b7323834.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 1 +2 afip/receipts/16/63/166335d292774f5ab4c53dad10c1724e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 2 +3 afip/receipts/41/fd/41fd2fada391465fb529209b5934da69.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 3 +4 afip/receipts/c0/1a/c01a58f636284703b879124a626b9d7c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 4 +5 afip/receipts/40/2b/402bb36be8764ebcbab27f48c6ca6608.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 5 +6 afip/receipts/3b/37/3b37dcbd52284f488d85dba312b73e40.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 6 +7 afip/receipts/e8/01/e801134a7964415e81f053317d89f1d0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 7 +8 afip/receipts/07/da/07da18ed39aa45008998591468515146.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 8 +9 afip/receipts/e9/b3/e9b39b75d11d47ca90aa2ea79b6a5e83.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 9 +10 afip/receipts/73/01/73017ae679244eaa9c9fce5b4f1492b1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 10 +11 afip/receipts/32/1f/321f45ae5c834831a2de17ec17851ea2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 11 +12 afip/receipts/3a/fc/3afcf7d7c1dc43f5801159664397ce00.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 12 +13 afip/receipts/1d/b6/1db6bfb444f04707b023e6eeaca0be6a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 13 +14 afip/receipts/70/64/7064e63ade4847119cc94ba1eb5cfabd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 14 +15 afip/receipts/28/1e/281ed3f5fe2041528467e69aedc2ff6a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 15 +16 afip/receipts/f9/79/f97946ce967d4e3ab411661c219d7ce4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 16 +17 afip/receipts/cf/15/cf15b23a70734302bf1cf44a46632380.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 17 +18 afip/receipts/83/e0/83e0106e23694f26945d351b76cab56d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 18 +19 afip/receipts/74/ba/74bae2b49ffe40d28216999099e65bbe.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 19 +20 afip/receipts/96/54/965454cc004944eaa5b5b99976b9f176.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 20 +21 afip/receipts/6b/f3/6bf331677f1b4a9985b002e4a55fd418.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 21 +22 afip/receipts/60/0b/600bba6be75d4775915a4cc51e0dd617.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 22 +23 afip/receipts/23/16/2316f406c3904918b2573ab09ca1ddc3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 23 +24 afip/receipts/37/f0/37f02f05088b43ecabe88d138948c9c2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 24 +25 afip/receipts/0c/18/0c18a73706df40f28b37d7dd6956451f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 25 +26 afip/receipts/af/fb/affb7f98e6194feebd8cca80454b7a83.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 26 +27 afip/receipts/01/84/0184f333d9f04430a71a409a731f48ca.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 27 +28 afip/receipts/7f/5a/7f5ab9186df849c6a7e56ae1a8f2d074.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 28 +29 afip/receipts/95/a5/95a5100bbf4e4eb2897ac76ff529ad19.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 29 +30 afip/receipts/77/4e/774eb6572fa143438ac2687d5091823c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 30 +31 afip/receipts/ec/1e/ec1e172c49eb4a14a039d7c74fe69669.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 31 +32 afip/receipts/03/21/0321d61793dd41de98796d7b547719fd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 32 +33 afip/receipts/77/07/77074f1bab2845229ef0db0f103b31ac.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 33 +34 afip/receipts/89/1c/891c6cee734f46d896f826c898e9a867.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 34 +35 afip/receipts/b6/3b/b63bf40ae4734a7e971537e61a66594f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 35 +36 afip/receipts/40/b0/40b05509693e425c87ced2e0e97cffa9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 36 +37 afip/receipts/e2/e8/e2e898e623e442fb9a13fe132252f5e7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 37 +38 afip/receipts/91/ea/91ea12cef80c43d09c7a8e5552f62249.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 38 +39 afip/receipts/ec/69/ec692e3cb90f4ed3b9d2a0401b72f1e6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 39 +40 afip/receipts/99/81/99811ac30abd4b5cadd2fefa1fe2953c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 40 +41 afip/receipts/42/bb/42bbcef0cc9f472490df9f1198efde90.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 41 +42 afip/receipts/55/e9/55e95ccdff164ff3a5f0c8047686bcf4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 42 +43 afip/receipts/69/a2/69a253288480426e9b45ae2b9d0804d9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 43 +44 afip/receipts/96/a7/96a74e401878499e8400fac0c50b15c3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 44 +45 afip/receipts/e9/b4/e9b460f2f37b4d4e98e0768b0b0e52b6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 45 +46 afip/receipts/c6/86/c686c714825e42bea5ce73f93dacfdaa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 46 +47 afip/receipts/b7/2d/b72d1f8a310a4a4b98a10ceeb97b86ac.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 47 +48 afip/receipts/0d/50/0d50bb5fc101467180a294a740a70dde.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 48 +49 afip/receipts/26/9a/269a8d56885f4a0a96d0f5884d4d1cfe.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 49 +50 afip/receipts/73/25/73253bbec4984066b668b38cf1f8ba70.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 50 +51 afip/receipts/29/2e/292e2c2528f0456dbfe3edef65200d36.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 51 +52 afip/receipts/85/97/85973b9a94da4c95842c4e25ffb2f8b9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 52 +53 afip/receipts/ac/a1/aca19a1149d8424ea8a52b276786cd98.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 53 +54 afip/receipts/c9/4a/c94a57253b2b4cc6a90eae83a2cb9ea6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 54 +55 afip/receipts/16/56/165696660b7142ee86e93f35616f5581.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 55 +56 afip/receipts/79/ad/79ad6a9dccae47a59be639cd52813ac6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 56 +57 afip/receipts/9f/52/9f523ac10d3e4ee0b5b7509819e980b1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 57 +58 afip/receipts/81/02/81025f26bd6b44c48510af32c479ba97.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 58 +59 afip/receipts/2b/4b/2b4bf64c2353456781760da8ca99c4ac.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 59 +60 afip/receipts/c3/56/c35697ecf61b4750b69ca53d2bb3003a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 60 +61 afip/receipts/95/94/9594467f781e436e880c594a2f31fddf.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 61 +62 afip/receipts/6e/35/6e35afed59f6459ebf16818df7d935e9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 62 +63 afip/receipts/f3/9a/f39aaf1b2e0a4cb0b23553809d815ef0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 63 +64 afip/receipts/bc/58/bc58021a54b54898816e128017478f9a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 64 +65 afip/receipts/8d/17/8d17040d52da4ec3b64cfdb9bd507bc8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 65 +66 afip/receipts/98/f3/98f3766217bc4caf952d41b7d710d183.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 66 +67 afip/receipts/3c/51/3c51e451284b4938916925aaeb012693.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 67 +68 afip/receipts/f1/f3/f1f34b9165234f63bf9b884f6730325a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 68 +69 afip/receipts/20/5e/205ec81731774a9ca2dc3ddb55965ef7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 69 +70 afip/receipts/27/16/271681d1d8984ad48bb4479e15ebf00b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 70 +71 afip/receipts/2d/ab/2dab64f4e03d45f5925fd280ad25c398.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 71 +72 afip/receipts/b4/32/b4327265045e4e3a95ab710eaa7439a7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 72 +73 afip/receipts/58/07/5807f3f45ff74c269c63f0abfb72bb87.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 73 +74 afip/receipts/45/30/453010002c784b01a9b720281d4a6213.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 74 +75 afip/receipts/f4/4b/f44b284489b3407aaed80d100c81c58e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 75 +76 afip/receipts/24/0f/240fad9d18564592a32e82cacb349496.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 76 +77 afip/receipts/88/82/8882849d14794a65b91f5f6debf3e5e3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 77 +78 afip/receipts/6e/9d/6e9dafd537154bbd8a13616bc65425c7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 78 +79 afip/receipts/a2/44/a2443f445554409a88008f9a31ff2604.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 79 +80 afip/receipts/0b/32/0b3221d8f0694c66a37968d556e2703d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 80 +81 afip/receipts/69/98/69981d1045764e969b0ff8712b1d0387.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 81 +82 afip/receipts/ca/24/ca24591cf30b4ee58d463ca5a7356d5b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 82 +83 afip/receipts/af/93/af939c549e6c46ae90f4806f58837d17.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 83 +84 afip/receipts/9f/42/9f4240a5260d4c4fb7c51749e8502fcc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 84 +85 afip/receipts/d3/9f/d39ff5b4d6c5445f9de863dbc9abc3fd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 85 +86 afip/receipts/40/52/4052c068d7f547fcb9847c1805743150.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 86 +87 afip/receipts/bb/0e/bb0eb70a5e4d4049968761cb8ddc2546.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 87 +88 afip/receipts/f4/75/f4753ac6e5ca4b8ebd3375a70ffb88e3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 88 +89 afip/receipts/73/5a/735ab7e9c75d49b7b8bf6b6373cc6d05.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 89 +90 afip/receipts/53/d6/53d6ceb5e31e4662adf09a02df43a8db.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 90 +91 afip/receipts/40/80/4080782a5a1f44e78757155c5cd62846.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 91 +92 afip/receipts/eb/49/eb4915135c7143f58d21469f8510c3d3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 92 +93 afip/receipts/71/b9/71b9c0bd685149d6896ddde0c2a8c835.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 93 +94 afip/receipts/10/05/100599eb311949aaa863c25968bd8787.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 94 +95 afip/receipts/12/aa/12aa07889c6a44e48ffd7691c185ef08.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 95 +96 afip/receipts/ef/d2/efd2fc36db454fb694947b4f6b84f22f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 96 +97 afip/receipts/96/36/9636c868768547a28699a4586e743346.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 97 +98 afip/receipts/ea/d1/ead1baa9e07746558fb6a33b8b8428a5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 98 +99 afip/receipts/32/de/32de52a3df85424c934a4c7b322b495c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 99 +100 afip/receipts/bd/e9/bde951ee575a495b90acbf493d0de1ce.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 100 +101 afip/receipts/64/d2/64d292ce72134f65bdfad2240cb2de20.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 101 +102 afip/receipts/5f/72/5f7269547d174d62bebc1adf2d71a648.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 102 +103 afip/receipts/01/0a/010a2b0aec474bd3bd2b4b53bcb3019a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 103 +104 afip/receipts/7d/8f/7d8fc956f3074b0eae2100260a6a456d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 104 +105 afip/receipts/48/e5/48e5e78747a0481db393270c93746148.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 105 +106 afip/receipts/88/f4/88f426c48df64ba996a2d4954e6cdfe0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 106 +107 afip/receipts/19/0d/190d82c3473947ac8e2918b4b3b69121.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 107 +108 afip/receipts/13/0f/130f7526fe534c4382b414dd351a9995.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 108 +109 afip/receipts/ae/34/ae34ddcd80054d8ead4470aa305bd419.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 109 +110 afip/receipts/7f/29/7f29122e8fde47d093fd79eb22965a8f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 110 +111 afip/receipts/2d/1e/2d1ee9c7c3a5418c8c1a43a843013230.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 111 +112 afip/receipts/d8/e7/d8e7d0062eeb43bbb4786070e6ff36fe.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 112 +113 afip/receipts/fe/1d/fe1ddb68e6454fc78b17debd9bf19602.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 113 +114 afip/receipts/7e/cf/7ecf95cc93744e73bbb3f8037924ed06.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 114 +115 afip/receipts/2b/7f/2b7f4572779a4eeb9ee9c4a09142c1b2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 115 +116 afip/receipts/fe/7e/fe7e759990a04077be3ae2c4ac336f4b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 116 +117 afip/receipts/38/7e/387e1b41b1364be9bb950d7de1b7528f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 117 +118 afip/receipts/ac/8a/ac8a76d961044e1e940d5c6d921d2a59.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 118 +119 afip/receipts/9f/16/9f16dedd942c4cbd86b0ef86ad452475.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 119 +120 afip/receipts/4e/79/4e793ca779ba44d788fdbccf704193de.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 120 +121 afip/receipts/ca/cf/cacf1741f1844620a7f83b14b38121b0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 121 +122 afip/receipts/cf/42/cf42cfb0348b44b3a060223a517b9d8c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 122 +123 afip/receipts/9a/70/9a70e11846d941b7832222339cc3ed68.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 123 +124 afip/receipts/20/03/2003366f65ab44b59782284395fd6400.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 124 +125 afip/receipts/f8/a6/f8a678271e9e488ea890bf5dc6b3b895.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 125 +126 afip/receipts/a8/a5/a8a549d9c868459b84654057cb38fbcb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 126 +127 afip/receipts/f7/a0/f7a0bb558e604889a7577ee18c165686.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 127 +128 afip/receipts/3a/46/3a46f650df9c463db005174c9acbce4e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 128 +129 afip/receipts/b4/d6/b4d6ea1bc5b346eab936ed30b4ca34f3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 129 +130 afip/receipts/0b/32/0b324dcfc1a5494d832fcb2d9eff18c0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 130 +131 afip/receipts/27/de/27de10d1bf4042ebad3d63bcf8dcd4b4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 131 +132 afip/receipts/db/ca/dbca34a7e1784d63af0d8503c6e706aa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 132 +133 afip/receipts/d5/2d/d52dc620fd11442d8bcf9fffd0e73b53.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 133 +134 afip/receipts/d7/f8/d7f86cfc90284208957467966e74a57b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 134 +135 afip/receipts/60/0b/600be02fff804a989e79ba6ed5d30661.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 135 +136 afip/receipts/b1/88/b1885ed1ec1e47f4b2b36346ad032c14.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 136 +137 afip/receipts/36/d7/36d7fc6ba332464987f4b3d96905a2c3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 137 +138 afip/receipts/7b/8e/7b8e8aad5071402f963c17b56075a0eb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 138 +139 afip/receipts/f5/59/f559d7b2508248b29e1157627a2b945b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 139 +140 afip/receipts/e2/d8/e2d81acc4b54493c841e7d62242dbaa7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 140 +141 afip/receipts/78/2f/782f772f70cf433393f9e87bd125578c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 141 +142 afip/receipts/97/ac/97ac96148b6e41d2968e60b4fe1ad7bb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 142 +143 afip/receipts/7b/33/7b336043b66b4767b333e0b1ee2a856e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 143 +144 afip/receipts/fb/7a/fb7afcbee2a24c2298e8d0f0119b2588.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 144 +145 afip/receipts/b7/6b/b76bd23dfd634f5dbac706eae8184892.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 145 +146 afip/receipts/aa/20/aa20503283e84e7c90a5d0bcda7c5e82.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 146 +147 afip/receipts/b0/86/b08646702ddc46a1ac7e4387df1af197.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 147 +148 afip/receipts/5a/f0/5af083ac894843e3a0c68cf320e2b557.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 148 +149 afip/receipts/57/6d/576d27adb5374d5d8018c9bbd253b979.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 149 +150 afip/receipts/f2/46/f246ec8ee23e4847aac70f687ff97de2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 150 +151 afip/receipts/e6/92/e692c39f8eb146c2ac4b3b816af981a0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 151 +152 afip/receipts/3d/bb/3dbb94c6ec0141a9b83e58ad4f783a0f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 152 +153 afip/receipts/d5/22/d522648721604e519b5474387b6e6c46.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 153 +154 afip/receipts/20/59/205930b577214937aa928499457531a3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 154 +155 afip/receipts/ed/d5/edd5798b94fb467f9abf7c444dc55376.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 155 +156 afip/receipts/4a/df/4adfe56951b6417c8050cc387356d678.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 156 +157 afip/receipts/26/ef/26ef415939484aafbd6a4355860fee55.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 157 +158 afip/receipts/64/3b/643b2fc4f2b5470dbb2a324a5982cbc1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 158 +159 afip/receipts/d3/6b/d36bc9bc46c44195bb4fd0b7f5a41d98.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 159 +160 afip/receipts/a6/85/a685c7bad06244548d73013a8e8a4b79.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 160 +161 afip/receipts/67/09/670921a3abaf4decbd7f4aeca58e4040.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 161 +162 afip/receipts/0f/90/0f90f806893443048a0d65262349a41b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 162 +163 afip/receipts/f5/30/f530d0cc4dea47f7ac0d41336cc9544c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 163 +164 afip/receipts/9b/4a/9b4a57198dfc41f0880fada55b0e9349.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 164 +165 afip/receipts/6a/f8/6af81bd153864893b8cc71696df64188.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 165 +166 afip/receipts/63/43/6343e3e67b3b42fea6587e099a0398f6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 166 +167 afip/receipts/1d/e1/1de1247002fd4d6187b3f76a123d46d7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 167 +168 afip/receipts/78/53/78535df4fc614d9581d059821aa6efb6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 168 +169 afip/receipts/c7/ad/c7adb0b9e7264ec19d2d7dfcafcf063e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 169 +170 afip/receipts/bc/50/bc5013968b404afdbbfdc8d485178701.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 170 +171 afip/receipts/38/37/3837dadf4e0a4ed29b129e4b68d0f832.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 171 +172 afip/receipts/41/a4/41a40cd791fb4e46bdc0e2a59e7686be.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 172 +173 afip/receipts/c0/78/c078db78485d4b6593ac7aae55f817f5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 173 +174 afip/receipts/fd/cd/fdcd6ac35db04f899e1e3d5a832649b4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 174 +175 afip/receipts/87/0f/870f83da8ce849d08a43ccefcc110df4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 175 +176 afip/receipts/20/f6/20f6c289c8274d8bade44e3ae1a889d1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 176 +177 afip/receipts/7e/d9/7ed9bfdadbb6457ba4a2548d8f6a6a86.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 177 +178 afip/receipts/8b/6c/8b6c685cbdf141b0bb42450c5e05c289.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 178 +179 afip/receipts/b8/41/b8410845c33948f4a4434cadb96a23ba.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 179 +180 afip/receipts/95/61/9561f18ca7c440da903e25ff42acaade.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 180 +181 afip/receipts/9a/4d/9a4dfffe35ad46eab403e8e9a66baf97.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 181 +182 afip/receipts/ee/46/ee464554064742feb267de6af82e0686.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 182 +183 afip/receipts/f7/f0/f7f09f87c2c24305a69b31d96bfa365b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 183 +184 afip/receipts/c3/66/c366855054d747119a9e2b7f1c1e1b55.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 184 +185 afip/receipts/01/16/0116342169374877905852a11fde12c6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 185 +186 afip/receipts/76/2d/762d8fa1b9da47df9b87aa03ec790bf0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 186 +187 afip/receipts/1f/d9/1fd9e0a877d14bc0a01114493fb207fc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 187 +188 afip/receipts/1f/96/1f96503209814c7e85fbac4186ee8198.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 188 +189 afip/receipts/85/e2/85e2602e826642cdb5b7f069674da2f1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 189 +190 afip/receipts/86/08/8608b038ae514b368399f071f59fa13d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 190 +191 afip/receipts/da/82/da825473c0494076904a17e47df52f27.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 191 +192 afip/receipts/b7/e4/b7e4d5bbc9a94b3b807f039f5f4501e4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 192 +193 afip/receipts/77/ae/77aec6c0e86e43618ebcaa8bf0a8140b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 193 +194 afip/receipts/25/44/2544547dd56449ff8fb2ff057163ba0d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 194 +195 afip/receipts/16/62/1662aa45221542749aba47c832d0b092.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 195 +196 afip/receipts/3c/e0/3ce0dea3c7e64b5d9c3e747726c3c12d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 196 +197 afip/receipts/df/89/df890ceba1184fb4b2ed44a22ea51e7a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 197 +198 afip/receipts/2c/67/2c674af0b56844caa3263f7d4a9e2bfa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 198 +199 afip/receipts/e7/d1/e7d1d329c9354143b383c5d9bcb2201e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 199 +200 afip/receipts/4d/d4/4dd48a77f59d478bb58eb7aca96c3997.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 200 +201 afip/receipts/0c/18/0c18be8f7e604c8683113f2effe352d2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 201 +202 afip/receipts/ac/8c/ac8cc32f63954b4c91fdcee5d69b982e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 202 +203 afip/receipts/6a/02/6a029aa6d7c44f63b8c8ca1735439a92.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 203 +204 afip/receipts/0d/a0/0da046bb93364b5cb5ed9e1999844537.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 204 +205 afip/receipts/bc/20/bc20775bbe434187b330c4a4cc7239c1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 205 +206 afip/receipts/71/51/715196563a8044d9b327aa80cc81223a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 206 +207 afip/receipts/4a/7f/4a7fc0210c104adea686bf4de624f10d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 207 +208 afip/receipts/40/6b/406b06d21b0848c489f10bd5bed3a16a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 208 +209 afip/receipts/11/1f/111fd3f70e9d464d991034be29ea6900.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 209 +210 afip/receipts/86/03/8603cf74bfbe4f18ba7def7b2cbb6fd7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 210 +211 afip/receipts/97/bf/97bfd0074c5446398362d17491569d0c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 211 +212 afip/receipts/5f/cb/5fcb922eff5e4af8800027eda673ab64.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 212 +213 afip/receipts/e6/90/e6905f21b77f4bfd8f47260069a2f952.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 213 +214 afip/receipts/c8/3c/c83cb6eb4ed44fbbab7b4f169b098568.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 214 +215 afip/receipts/cf/a8/cfa83c3030984a4294050113b4d627d1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 215 +216 afip/receipts/88/f0/88f00e4686224d6292357569f0828cca.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 216 +217 afip/receipts/6a/27/6a27f711f7f045efa63002601adf4f01.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 217 +218 afip/receipts/fa/b6/fab644b588e248019bc57531b6ef2459.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 218 +219 afip/receipts/d4/b7/d4b753b7c39d452391864d8a21ba2c06.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 219 +220 afip/receipts/49/db/49dbb120f38a4a01903816289f3facff.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 220 +221 afip/receipts/c6/37/c6378d3d21e1439a85311763019272b8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 221 +222 afip/receipts/5a/90/5a90558a46c74f5f99786e098bc050b6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 222 +223 afip/receipts/e2/83/e283955ee63d4cbabb956fcee77ae894.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 223 +224 afip/receipts/8e/13/8e1353792ee14750ba02830e86e9f26f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 224 +225 afip/receipts/d6/a9/d6a99a43deae4ddb82b0fae71ae2efe5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 225 +226 afip/receipts/9a/23/9a235d0f97c848f69cd66e724c2ec2a1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 226 +227 afip/receipts/12/b1/12b1500ae2744ea9bdbcd37f71343e9c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 227 +228 afip/receipts/00/59/00599756078945549fb5934b77711cdb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 228 +229 afip/receipts/71/02/71029ea6aa0e47e2becb870b97b5a777.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 229 +230 afip/receipts/8e/49/8e49dac3a4c044a68a43455cf3ab8471.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 230 +231 afip/receipts/ec/e0/ece0953641ed43d3bbf85e0b6028638b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 231 +232 afip/receipts/8f/f5/8ff59541418a43928589e56741cf0337.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 232 +233 afip/receipts/e2/27/e22748a5d9fa4932b090df63ea1bc624.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 233 +234 afip/receipts/73/eb/73eb17c5790745a6ae68e2fd8eec6a5b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 234 +235 afip/receipts/b0/29/b029a34996a34a9fb1986c1feb925b3a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 235 +236 afip/receipts/a5/9e/a59ed3f014824e90aa444e07166f597c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 236 +237 afip/receipts/a8/7e/a87ed2b2b2384158aac5c6dfd424ee0d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 237 +238 afip/receipts/e6/b6/e6b63badbe09407e9c2410ca30410b6d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 238 +239 afip/receipts/fd/53/fd535d529e644c4eae4ef0c2a5da2a5d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 239 +240 afip/receipts/e8/04/e8047f4ead594c1da3725f27acb67d39.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 240 +241 afip/receipts/6c/ee/6cee11590b944105a20239a582183cb5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 241 +242 afip/receipts/44/9e/449ed56291bb456789dfef8945b3e196.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 242 +243 afip/receipts/4e/3b/4e3b6a47c0794bec85138cfef401371f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 243 +244 afip/receipts/8a/4e/8a4e3e79f5914489ac84ca6d50f18d72.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 244 +245 afip/receipts/21/6d/216d2da552ae400d85218dbf6253f731.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 245 +246 afip/receipts/cb/d0/cbd05a8ecbb7438a81103997e92d176b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 246 +247 afip/receipts/5d/bb/5dbb282610554da2b1b9fb10609fadaa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 247 +248 afip/receipts/42/3d/423da7c8678e453eb677f511cc3d022d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 248 +249 afip/receipts/16/12/1612434d1f1f4d6594226258d2133a90.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 249 +250 afip/receipts/1c/63/1c630fe968f64eaeb4a624b6ce51f7a4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 250 +251 afip/receipts/a2/93/a293d7fae6c044819c419c72ca4ced1b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 251 +252 afip/receipts/e1/ee/e1eef792f71940388dd6f91e9f866b2c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 252 +253 afip/receipts/6f/ab/6fabe2c6a5bf4b26b598fb05a19f46ef.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 253 +254 afip/receipts/86/8e/868ecfab6ace45cd981f76380d7d4fc6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 254 +255 afip/receipts/08/b8/08b8d53bdf874e3f9b3cd550dc726673.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 255 +256 afip/receipts/b8/9c/b89c4924f4894d6883c593e9590f16e8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 256 +257 afip/receipts/66/10/6610ef63f35147b0bb4b52e61cd3b254.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 257 +258 afip/receipts/04/99/0499e8ab2bfa4ff5a2e9b2d31bd2d9d4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 258 +259 afip/receipts/02/4b/024b416e0aaf4f5db0997bd2b8d77084.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 259 +260 afip/receipts/c9/b9/c9b9d9531f2343e58bcbf9357e1ff10d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 260 +261 afip/receipts/25/1b/251b851aeb544c3a84f19b2779d237f8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 261 +262 afip/receipts/9e/97/9e978cb0067349fcad43c30ccf20d965.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 262 +263 afip/receipts/53/e7/53e776ef2b244aa5bc08401511202941.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 263 +264 afip/receipts/73/de/73de1f0bbbe24ca887e718ac82441c67.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 264 +265 afip/receipts/fe/4a/fe4aa214343f4f7a9b729d8ccc42f413.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 265 +266 afip/receipts/c4/78/c478ccc3f6c14694b1d10fe035983f45.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 266 +267 afip/receipts/05/85/0585a8e3c52141989b3df94c7514907a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 267 +268 afip/receipts/4e/f5/4ef5d0db8dc84a6296387b4e39f13331.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 268 +269 afip/receipts/7b/ff/7bff4f89dc524e96a5207a4990879d1f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 269 +270 afip/receipts/aa/03/aa032e0dc5c5479486e34c4a4bd68108.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 270 +271 afip/receipts/57/3f/573f087e1bcd446596b895a9aed2f35a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 271 +272 afip/receipts/88/6d/886d97ab54de41719692abaa1d0a7c34.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 272 +273 afip/receipts/30/e9/30e9ed8e8e0d4c43a17640ed8e7387aa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 273 +274 afip/receipts/cf/ef/cfefd072860241988869a62b8835d188.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 274 +275 afip/receipts/df/a6/dfa6dd26664a435585d093d248b4477c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 275 +276 afip/receipts/27/06/270676f8f158473c8d006805450207cc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 276 +277 afip/receipts/8c/c0/8cc0bc963d8d4d4a811f0dcc963de194.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 277 +278 afip/receipts/c0/d0/c0d00e6435c64b6d91acfc785f18eb8e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 278 +279 afip/receipts/bd/61/bd61f41bf15b4891a8bb06e23aaca23b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 279 +280 afip/receipts/16/4c/164c3036cd294df98cbc3c138dbc7efe.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 280 +281 afip/receipts/de/b3/deb369f0a6d640ad8ebab4a243a35d84.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 281 +282 afip/receipts/a8/d6/a8d661cebad8402498f5d61956fe35e0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 282 +283 afip/receipts/95/ae/95aee2401b6f496cb7894ab9c8e0616d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 283 +284 afip/receipts/eb/7b/eb7bb15f51e447a2956ed63a9145dac3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 284 +285 afip/receipts/b4/7e/b47e6e7c48454a61ab8bcf97fcde0faa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 285 +286 afip/receipts/31/e3/31e38876dcf94ecca62e0267872821ad.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 286 +287 afip/receipts/11/d5/11d51a9139ae4337873f97a659b01f99.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 287 +288 afip/receipts/e1/c4/e1c448e29b89461fa2ab56eed6a52178.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 288 +289 afip/receipts/2a/d7/2ad74b1f5fe241e8a0c54fd274fbe8e0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 289 +290 afip/receipts/65/11/651177c04e3f4802ac52ee4df206833d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 290 +291 afip/receipts/08/a9/08a90a61bce24283b68c1d1cefa0ced5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 291 +292 afip/receipts/53/4a/534a2816d7434e9daeab7eb038bbb9c6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 292 +293 afip/receipts/d4/b8/d4b8b7b4374244b9be09d950aa9dd6f1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 293 +294 afip/receipts/96/b7/96b7f0080d3a4fa29596dcc734158f75.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 294 +295 afip/receipts/15/c5/15c5e83eef914de3b4bebed895b86a52.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 295 +296 afip/receipts/8d/4e/8d4e073625334f299cbdc839d56180b4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 296 +297 afip/receipts/f3/89/f38911dfdf00473a8eb8a9ec9138c38a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 297 +298 afip/receipts/1c/65/1c65b85d578f4dc1a37732558352cbfe.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 298 +299 afip/receipts/04/c8/04c8741e98624ec897bd37856a5cc2c2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 299 +300 afip/receipts/46/32/46324bf7b2804a35a183e351b09846fd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 300 +301 afip/receipts/ea/b5/eab52067614b45a3942db42b39ad2743.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 301 +302 afip/receipts/4f/6d/4f6d7a64ac6e43949fa433c79124ddc5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 302 +303 afip/receipts/aa/ef/aaef8e81ad5b41aaaa9bf5b145d2c33b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 303 +304 afip/receipts/54/58/5458cbde74f340d3ae2a5e04a7fa68e6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 304 +305 afip/receipts/7e/91/7e919906a7b745429c4c025b30526a55.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 305 +306 afip/receipts/20/52/20529a1b88c543c5961ddf7a0e167357.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 306 +307 afip/receipts/c5/11/c511004b33ea4f6b83b4c14ba1749d2e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 307 +308 afip/receipts/3f/21/3f21668ec6e140008a5e5ac46e1cd1b9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 308 +309 afip/receipts/33/e2/33e216893ecc409e8b070fbb1214c8cf.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 309 +310 afip/receipts/3c/83/3c8312cc8a39421cbba3fa47374609f9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 310 +311 afip/receipts/0e/b4/0eb4b4304cbb487dbe6e8a293c1ba601.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 311 +312 afip/receipts/06/44/06449d5524634fddbfe2168d10bc800f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 312 +313 afip/receipts/a7/e0/a7e0867d168f406ea9aba32125b13aa3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 313 +314 afip/receipts/50/85/508594ad56334ee180fb4c9bf74fd6e8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 314 +315 afip/receipts/ba/88/ba88372fc0624696af7e32e0645746d9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 315 +316 afip/receipts/25/5c/255ce00d0b924e239ff6150e334577b1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 316 +317 afip/receipts/1d/f8/1df8a2d2e6284b708b54127dba15e87c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 317 +318 afip/receipts/a1/64/a164a0aee7d54bac998258fd8a3b3c64.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 318 +319 afip/receipts/7b/7f/7b7f0bd680c24bf8bd3346049baab8db.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 319 +320 afip/receipts/b3/61/b361f23b218445069c9c793a731e6a47.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 320 +321 afip/receipts/1d/5d/1d5dd54125b043f99522b60fbea6947b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 321 +322 afip/receipts/2f/f9/2ff9b1c2717d416ea6f0a4ce249bfe75.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 322 +323 afip/receipts/39/f3/39f38594cbee4f6aae8264f84cd332dd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 323 +324 afip/receipts/b6/8d/b68ddc2804754e86854e84c55e6e9349.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 324 +325 afip/receipts/c3/5b/c35b8c17871042f8ae7887377eb1a288.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 325 +326 afip/receipts/ee/b0/eeb0a877404e426daa64e67a9ea23be8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 326 +327 afip/receipts/2b/92/2b92e80221f049b39ea0530e054a8c07.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 327 +328 afip/receipts/2e/2d/2e2dbc2a44e647168f496a5da8a28532.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 328 +329 afip/receipts/e4/cc/e4cc966b34da4948abc1f2be87041869.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 329 +330 afip/receipts/9c/6f/9c6f5e10d1284d778c366d7b193cb15c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 330 +331 afip/receipts/3d/b7/3db777d7229a481b874d26e684526f43.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 331 +332 afip/receipts/e7/66/e7664e63255945bda8b849a973a024f1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 332 +333 afip/receipts/cd/c3/cdc3df0d5a43472d99b2f6a7f1286c4c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 333 +334 afip/receipts/bf/83/bf83abeda69e4141873cb4bce1760046.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 334 +335 afip/receipts/04/ba/04ba09b2cf4a4fe1b811815ecfec4f5d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 335 +336 afip/receipts/d1/b8/d1b8cf74e46346df87df6763b84c8f48.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 336 +337 afip/receipts/14/db/14db5abdaa2249cdbef05b92c8ddea56.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 337 +338 afip/receipts/a9/d4/a9d475079c074edda1968680252fbd66.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 338 +339 afip/receipts/e7/22/e722029134d447c785371ca2abae96fe.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 339 +340 afip/receipts/44/42/4442d0b68b534cd4987b03dd680f8b4a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 340 +341 afip/receipts/70/49/70498dd8d209418db2e5cb46e22f2434.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 341 +342 afip/receipts/19/4b/194bd0a03aa341bf9b8dec2f0c9911e6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 342 +343 afip/receipts/8b/8e/8b8e75c96a0c49c4bb4df23ca6bc7acc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 343 +344 afip/receipts/8c/b3/8cb3475645a34c0780a84c57d08a83d1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 344 +345 afip/receipts/d5/27/d5272a4cdc0f410990038fed8fab2e51.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 345 +346 afip/receipts/89/5e/895e8ee110bd4f3dbf7fb0e1c479ac95.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 346 +347 afip/receipts/3b/87/3b87bb2d5edd4a28b4165eadd461ff54.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 347 +348 afip/receipts/56/b8/56b8f5443c9943c084747062688b0f85.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 348 +349 afip/receipts/47/30/4730c5c157db4c6d993c9d8d5ddd56e3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 349 +350 afip/receipts/30/47/304763ba862c413b849f42fd4f56b1d5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 350 +351 afip/receipts/4f/99/4f99314cda534e78bf82b50f728fb8e1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 351 +352 afip/receipts/3a/c0/3ac0bb19c38b406b973e07241b289245.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 352 +353 afip/receipts/f3/af/f3afb9a083ef493e808aad354ed70e3a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 353 +354 afip/receipts/06/bb/06bb34fdc4ae4158bb9995f7c7ff16af.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 354 +355 afip/receipts/81/f4/81f416ce772f4a86b333f4ffe0f8e687.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 355 +356 afip/receipts/9e/a9/9ea9e3cb924c4e7981e18afbd64538d9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 356 +357 afip/receipts/1c/2c/1c2cebdb7e18473eb1a37b70e5276986.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 357 +358 afip/receipts/99/38/993864229d324107b7570f06a9f09782.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 358 +359 afip/receipts/5d/3d/5d3d75bd12bc4ddd841b458cad30feef.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 359 +360 afip/receipts/d7/d9/d7d941946a3349ddb1dc2b8f86104ee5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 360 +361 afip/receipts/92/0a/920ae670bc2249e59d18cc7d1a0ac8b9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 361 +362 afip/receipts/c6/2b/c62b3eddcedd4e72a4a606ca4ea661e9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 362 +363 afip/receipts/58/36/5836d0fc996d4029916aa32463196014.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 363 +364 afip/receipts/88/51/8851940066c142ec8f157afa102962fa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 364 +365 afip/receipts/9b/1e/9b1e8bffaa9945f9b11b085f884ecd34.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 365 +366 afip/receipts/08/32/0832e77a67304659a7fc647dd24c809b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 366 +367 afip/receipts/fc/b2/fcb29a79f3f647359ecefd1787ce8401.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 367 +368 afip/receipts/6d/5d/6d5ded497bae495aaec494789d2d377d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 368 +369 afip/receipts/f1/20/f1202ef90cbf4cd494fed86f0fb3c21b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 369 +370 afip/receipts/d4/f1/d4f1acb1b0c3494b90ab7cb64578561e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 370 +371 afip/receipts/33/08/33089c89d2514ca59cf6b37fc32afbb2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 371 +372 afip/receipts/45/e0/45e08245b6084bb4a3dda35e1ecbf259.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 372 +373 afip/receipts/9b/7c/9b7c7d65e0064e4a8cc0cd7bcfe4cbf7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 373 +374 afip/receipts/70/49/7049dc08e34346c090cd3ff3f8635805.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 374 +375 afip/receipts/e6/55/e655875830714683abfbf53ebfd6f903.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 375 +376 afip/receipts/ae/0f/ae0f7b1409254628b62466a6896946d8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 376 +377 afip/receipts/a4/8f/a48f40608e724b4c8bb66a1539e6f70c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 377 +378 afip/receipts/dd/2a/dd2a839f39d046b68cce06097fe9a0a6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 378 +379 afip/receipts/25/9c/259c4e9637eb4d768b4a861d8d43d70b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 379 +380 afip/receipts/d2/fb/d2fbd5afb0174433a5ec5afa6eda7c34.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 380 +381 afip/receipts/45/e3/45e3fa932d614a94b63dde3d8fab849d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 381 +382 afip/receipts/f7/26/f7262200258b4971bdfcac586e2c6301.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 382 +383 afip/receipts/bc/88/bc88456d13f740009c1dbb3bd08ef09f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 383 +384 afip/receipts/3b/82/3b827d238c4546588df123c05308a8bc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 384 +385 afip/receipts/f0/83/f08362e637a84ffa953d85e88309a958.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 385 +386 afip/receipts/5e/c5/5ec583b6ef98467699534316323c5beb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 386 +387 afip/receipts/99/84/9984a4aa79bf4ebc92f0b7733189d22a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 387 +388 afip/receipts/c7/3c/c73c87412d22449e87dc097f027c1cfa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 388 +389 afip/receipts/8a/1c/8a1cfec1ee3a4168b5e2146456fc45ea.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 389 +390 afip/receipts/55/df/55df00f1a8594b80aa6cc0abcf45b3ea.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 390 +391 afip/receipts/26/bd/26bd4ec3d93c412f9de88816c95141ed.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 391 +392 afip/receipts/9c/71/9c710e2a0c8641b49f4e7d56b8442819.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 392 +393 afip/receipts/f5/39/f53997df1de4421abedb69131628e80a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 393 +394 afip/receipts/e3/70/e370cbe12dce49618b4a896a4ebbed8b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 394 +395 afip/receipts/f7/d1/f7d1a896eebe40109578e6c261f0b1bd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 395 +396 afip/receipts/e6/08/e6084bf457124d2caa821934a35996d8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 396 +397 afip/receipts/d6/78/d67818e3fa6442968a73ddc16df8ebe0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 397 +398 afip/receipts/21/97/2197c7ee3ea242cab93dec612a9dc9fc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 398 +399 afip/receipts/e4/93/e49341bdbf2f43c6b607aaf2462a8909.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 399 +400 afip/receipts/44/b4/44b4a03f3df74b35a2434cb929a12c65.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 400 +401 afip/receipts/06/43/06432ee481054f73b8f81ad2718381d6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 401 +402 afip/receipts/2b/b7/2bb79c347ace411a93f5e59a397f68c3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 402 +403 afip/receipts/e7/2a/e72a5ef83c4b44249e5f178c2982c430.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 403 +404 afip/receipts/29/7f/297f3385305145138f4085e651007c61.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 404 +405 afip/receipts/b4/49/b4495d53da924821a2f10e158d18f2ad.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 405 +406 afip/receipts/89/f5/89f591c2c16d4d5b83b64d8bdf334acf.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 406 +407 afip/receipts/6c/32/6c322fd64c0140908ee6a3d4785c0376.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 407 +408 afip/receipts/68/60/68602387b1f34f54b8b520f5613d4c6a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 408 +409 afip/receipts/9f/d2/9fd22e98343547babd49a00bad45d862.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 409 +410 afip/receipts/34/1a/341a0a226d5640eb83dcef25aa906a2d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 410 +411 afip/receipts/f5/58/f5581a9310224186a957bf6ba11c316d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 411 +412 afip/receipts/c7/be/c7bebf3845c641efb4a124594291c61e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 412 +413 afip/receipts/37/1e/371e50ce340a424aadfeeb096eacb2bb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 413 +414 afip/receipts/a8/3b/a83b32308d384a27b1f92d2c6814aaa3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 414 +415 afip/receipts/9a/1f/9a1f7eb665514e83b6188d33c294f677.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 415 +416 afip/receipts/ed/33/ed335b583e4849729e9399d8f7db45ac.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 416 +417 afip/receipts/e3/85/e385004a34534e71a35d92091aaaeb0b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 417 +418 afip/receipts/91/aa/91aad7545b744b609166e4938d91b23a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 418 +419 afip/receipts/b8/0a/b80a1525406d44a7819883be7029e56a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 419 +420 afip/receipts/35/b1/35b1640651eb4bfc882794687d8860a1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 420 +421 afip/receipts/74/d1/74d13cfc82514002a6c5b37b78a142d4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 421 +422 afip/receipts/28/dd/28dd402f55ea4c42a76539ee322a83f8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 422 +423 afip/receipts/34/2e/342e9aacb6d84bd4bda47ac03d838c3c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 423 +424 afip/receipts/b5/14/b514682c59804896945c42f076daf535.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 424 +425 afip/receipts/63/42/6342f8ae65f442ed966815968f31d1fe.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 425 +426 afip/receipts/8e/0b/8e0b28947c0c45a0b06bf148aaae5f08.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 426 +427 afip/receipts/76/ff/76ff8498cb9444439e09883926b512fe.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 427 +428 afip/receipts/69/f2/69f29b64c1f34db2a0ee97747beccf01.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 428 +429 afip/receipts/eb/88/eb88c34aafa24de0a35abe88f4e73bfe.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 429 +430 afip/receipts/f2/03/f2037e73abe045bc837359e5917b7b5a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 430 +431 afip/receipts/0e/a9/0ea9465654754094910519b315e362d3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 431 +432 afip/receipts/f3/80/f380983ff6f144e9ab04956fd3a4c321.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 432 +433 afip/receipts/c6/f1/c6f147a0cf33487ca0dc0905eed7329b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 433 +434 afip/receipts/47/11/471184843f8747cd9d8903cfe35b3476.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 434 +435 afip/receipts/59/b5/59b5ca61836b446dbae9c52995bf0ec5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 435 +436 afip/receipts/cc/ea/ccea5cc8a9a34906a86e6e0bcb7df5c0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 436 +437 afip/receipts/2c/13/2c1342bc3ce940fc9f80ef9c7ee41127.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 437 +438 afip/receipts/17/e7/17e7ffc7bd44409483f02dace24339fd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 438 +439 afip/receipts/9c/1c/9c1c3b66b2d34eefaa198bbf7e89858e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 439 +440 afip/receipts/57/e8/57e8ab37a90a444b82c8600e8f46f7e8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 440 +441 afip/receipts/33/c2/33c29f40352d436887be6b6e4f028f65.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 441 +442 afip/receipts/f5/a1/f5a1ab6afcc045d482ffeb8ac7ac4022.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 442 +443 afip/receipts/ca/a7/caa753948c6142d98891261fc47b3fe9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 443 +444 afip/receipts/51/35/51352725ffdf4d10a8780f30b58d8f17.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 444 +445 afip/receipts/a3/16/a3167edc22c84b6d9c14cb0ce51b79bd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 445 +446 afip/receipts/5b/73/5b73b6f37d604cbe985d63fac24cd23e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 446 +447 afip/receipts/5b/11/5b1132c3c45e4fb5b75ba3ba4eed3184.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 447 +448 afip/receipts/35/b9/35b9df9a300140dbb41dec1c7a5bee77.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 448 +449 afip/receipts/5f/36/5f363475871845e9babfe71b9256c010.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 449 +450 afip/receipts/d1/da/d1da5d9f53b846df8ed01f26b0b936bd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 450 +451 afip/receipts/8a/41/8a41176175fe47f2b0a4817cdbf845b4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 451 +452 afip/receipts/29/a7/29a795e8b1f442b290cdd30c886ecdd0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 452 +453 afip/receipts/f1/4b/f14bca8dc23f485983f0d5fa7a7de32b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 453 +454 afip/receipts/cc/5f/cc5f71eea5c145b39c376faa82c260ad.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 454 +455 afip/receipts/69/26/6926b905191c45e899f14900582cbd6a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 455 +456 afip/receipts/2e/8a/2e8a14f1bfd34ab2a80018a07cadcb23.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 456 +457 afip/receipts/20/37/2037567cfaa64702899dfe59d9fbc860.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 457 +458 afip/receipts/76/c1/76c17b7edcfb48fc9983554be7ca61e7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 458 +459 afip/receipts/1b/63/1b6339c451ab41adb9aae8739d0c1bb7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 459 +460 afip/receipts/a9/2c/a92c030ecbd941feb8d832ef6ad0f2d2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 460 +461 afip/receipts/ec/28/ec28315b649c419898ade4b3e09057e5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 461 +462 afip/receipts/dd/79/dd7908c0cdf0410da35b7c06744a07d2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 462 +463 afip/receipts/9b/b5/9bb5df6c112e47db99f8dff6f0268609.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 463 +464 afip/receipts/3d/4e/3d4e05217e124de1ad21406dc1952ee3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 464 +465 afip/receipts/b3/8a/b38a1b6b8df0437c951ee1e81a1608ed.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 465 +466 afip/receipts/f6/64/f66412fa60d94e86b2c665b6845193dd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 466 +467 afip/receipts/d8/d9/d8d9039e9b744c84972ac61097c67943.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 467 +468 afip/receipts/86/23/8623e5d04ffb42e7bf0760d4876981ef.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 468 +469 afip/receipts/b5/ad/b5ad51a23e02468c9ae86f06745b2c68.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 469 +470 afip/receipts/cf/6e/cf6ef3f3e06a47518006eaa09f751418.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 470 +471 afip/receipts/93/f7/93f7fcfa30ae46be9e31cb5693bf0be2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 471 +472 afip/receipts/3a/ea/3aeaa4cf60c64c03ad78501aacbcf949.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 472 +473 afip/receipts/e9/76/e9767fdf31a547599c0ebfaaf58cca0d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 473 +474 afip/receipts/4e/f4/4ef4ba81f4e64faca49fbe6bc1d0127c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 474 +475 afip/receipts/ae/28/ae2892876e2e4458b35d343b360390d1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 475 +476 afip/receipts/f7/1e/f71ede845d3a41aabb77ff16a0b2bcce.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 476 +477 afip/receipts/21/88/2188465940524008b7a7efee5b4f0628.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 477 +478 afip/receipts/7e/c2/7ec205ec4f674125856caf4238092a47.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 478 +479 afip/receipts/31/b6/31b67d5617414e87aa090dbc26ffa4fc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 479 +480 afip/receipts/2c/e9/2ce907f82b93408f93a30f3c011179dc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 480 +481 afip/receipts/7f/9b/7f9bf338c0a5492aa7adcee3d0dd2d49.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 481 +482 afip/receipts/e0/5f/e05f729325af452fadfd7577a5076110.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 482 +483 afip/receipts/5f/c3/5fc38716b2924c4793e8ca990fd3f21b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 483 +484 afip/receipts/d7/e1/d7e13f4e020447e9ae8b59ab45931f85.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 484 +485 afip/receipts/a2/57/a2577587332a43249ef4868e910b93c4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 485 +486 afip/receipts/e0/23/e0231c0cd0d4431bb631893dbde69673.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 486 +487 afip/receipts/bd/da/bdda605a384545dc9e7789102bc6b0f5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 487 +488 afip/receipts/f7/67/f767fe94ce7644439dec6102459f2e0e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 488 +489 afip/receipts/59/a1/59a1fed533394a48a2bb64e1e2d87001.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 489 +490 afip/receipts/5a/ed/5aed0c7125064816914d0568bef95652.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 490 +491 afip/receipts/ad/cc/adcca322548847a79d1f694517f446dc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 491 +492 afip/receipts/fb/ed/fbedc7b7e9c243618253ededc121a5e3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 492 +493 afip/receipts/cb/84/cb84bad35e684c31968b0326b7570391.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 493 +494 afip/receipts/07/97/07976f11ca27450995cdbbd96970b30e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 494 +495 afip/receipts/cc/6e/cc6e5b9fae614367b7d618cbae20f8a4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 495 +496 afip/receipts/ec/76/ec7682630b48414f9a2e72643a49717e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 496 +497 afip/receipts/8e/81/8e813de23fb440449e20eace3b1a1583.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 497 +498 afip/receipts/26/60/2660e4685fc44cb8b282061910f48c4c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 498 +499 afip/receipts/74/8c/748c0eb5448c4e7db5337f5429154214.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 499 +500 afip/receipts/47/79/4779120b895444c9b3922ce2c986faaa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 500 +501 afip/receipts/c4/54/c454635b007447c8a94ff0d1b430dc3d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 501 +502 afip/receipts/1d/6f/1d6f93a89a2649e2ad765a50c2e65440.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 502 +503 afip/receipts/9a/90/9a90dc52788345e5900e028b2919c2c2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 503 +504 afip/receipts/be/55/be558640f9da40ea9875ee34290acc9a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 504 +505 afip/receipts/03/52/03520d74666546d68bf02ccd45f66e4d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 505 +506 afip/receipts/5c/8f/5c8f9853cf314e328cd95bf761f5f221.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 506 +507 afip/receipts/7c/a5/7ca56e7a9aa747b99e35c6252acd7923.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 507 +508 afip/receipts/13/b4/13b4b5edcb6e4186aa2ec1dda049875f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 508 +509 afip/receipts/29/d1/29d1d1610a394fd6ad5440dec6811ac6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 509 +510 afip/receipts/3f/e6/3fe6c8eaf8b44dbfbf5d456e0f1fd8ad.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 510 +511 afip/receipts/19/66/1966d5e959a34930a664fdf1db8cb4fe.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 511 +512 afip/receipts/ad/1a/ad1a57c9366848f39a6aa63277438156.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 512 +513 afip/receipts/9e/14/9e14450cf59b470ca269c85108cb62b9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 513 +514 afip/receipts/f9/dc/f9dc3e0fc4ee49419137cc9e52c6e4b4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 514 +515 afip/receipts/e1/e0/e1e02dfcde4e4fee90b294be84dd63d5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 515 +516 afip/receipts/f1/cb/f1cb949483254aa0952cebb8e4d4e6e8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 516 +517 afip/receipts/f8/5b/f85be99906ee4c929d202157b39bd673.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 517 +518 afip/receipts/58/cb/58cb06f3ede149a58e9d0a579318ebf0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 518 +519 afip/receipts/b7/68/b768829566d340b09ed6b185ab333e58.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 519 +520 afip/receipts/b8/c7/b8c7b63e2a1d44c1b939d5650e560964.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 520 +521 afip/receipts/dd/af/ddaf0ac167dd43ebb31a4cd1a0aac674.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 521 +522 afip/receipts/80/19/80197fc71bf24ef7a28b6e55be1cd1f7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 522 +523 afip/receipts/67/52/675225a923604f0c963796d1aed50c6b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 523 +524 afip/receipts/ee/c2/eec2a0ded9604c2890ecfc9fc468c2f5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 524 +525 afip/receipts/36/e6/36e6c52edf6f4eb39e986a26cbca1c9c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 525 +526 afip/receipts/c2/32/c2329471f62c495281b77400e4309e11.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 526 +527 afip/receipts/92/8b/928b7fbd0ccc46769c695247be3c633b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 527 +528 afip/receipts/ad/fe/adfef10d10bd45c0bdc77f9756e48bb5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 528 +529 afip/receipts/c0/61/c06155b3b2ab43479c3a51cca7729777.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 529 +530 afip/receipts/84/16/841633870ced435bbabdfbc8fb625a6f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 530 +531 afip/receipts/a8/b8/a8b84261449147c49a1f061b80526baf.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 531 +532 afip/receipts/7c/d2/7cd2a4ee113549399b49fc07d3195c35.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 532 +533 afip/receipts/4d/43/4d43926e633a46ab89096616b7404934.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 533 +534 afip/receipts/a1/b5/a1b51ff541a24a57ae5fa916afdf89c0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 534 +535 afip/receipts/4b/13/4b138f39ca24431bbf8279177d9c0134.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 535 +536 afip/receipts/5e/4d/5e4d5d6d931e40ff9379a7eb3fbe4e80.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 536 +537 afip/receipts/ed/13/ed13113432a040deafdba67db4f2593b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 537 +538 afip/receipts/bf/b4/bfb4ec7ea586430d99e32f4db1fc7dcc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 538 +539 afip/receipts/8e/c9/8ec9b14712da41fdac3024e3186be9c0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 539 +540 afip/receipts/c9/4a/c94a421e86ee4383965c8f070837509c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 540 +541 afip/receipts/30/05/3005f72546534577aff464a72b2d1b05.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 541 +542 afip/receipts/05/5d/055d54b55c0e4777956fd361dd441e43.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 542 +543 afip/receipts/98/04/98040612992f4752af6a07127a0ff28c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 543 +544 afip/receipts/b8/d8/b8d8b38e067540ee9bdc3cf6735699dc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 544 +545 afip/receipts/ea/6b/ea6b9a25f49b4a52a0937e61adc27966.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 545 +546 afip/receipts/ce/93/ce93648915c948c9b7a64f3ba20232a4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 546 +547 afip/receipts/4c/79/4c790b6d13ec44c0931a51de4fd742ce.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 547 +548 afip/receipts/77/60/77601601994c4ceb94d75eb435d49909.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 548 +549 afip/receipts/75/19/7519b043ca48461d9fa0b0a4bf785e28.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 549 +550 afip/receipts/3e/8f/3e8f0f3ec503454dbd7944ba9dff77a4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 550 +551 afip/receipts/56/d0/56d076861b164559b3d9cf5fc2dbfb22.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 551 +552 afip/receipts/bf/19/bf19b3334fba49b0ba4ac0010e47f0e4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 552 +553 afip/receipts/25/02/25025a8bf2c7482482914e62ea4a4894.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 553 +554 afip/receipts/58/8f/588f11a490a94bc3aef6387547d3eb4b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 554 +555 afip/receipts/29/30/29309b3e30124930b11629d74bd2b98a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 555 +556 afip/receipts/6b/25/6b25645880f8428e8137f4a32aaa6331.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 556 +557 afip/receipts/b3/31/b331d93811f74d9a971df62c1344a005.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 557 +558 afip/receipts/7a/39/7a3956094ba44a66b2681415c7bcd2aa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 558 +559 afip/receipts/f1/34/f1340bef536a438e848000c5564192db.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 559 +560 afip/receipts/f8/d2/f8d2c55a2a344c6cb10daaf6c0e492c0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 560 +561 afip/receipts/89/d6/89d639a6574d44aba74da763fa7a8516.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 561 +562 afip/receipts/97/a0/97a0a5983f3044bda258c956ad73deab.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 562 +563 afip/receipts/8a/61/8a61472d107c4d9cb53b69ea97afc8b9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 563 +564 afip/receipts/0e/2a/0e2af7fcebef4831a1c0581eb24fd916.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 564 +565 afip/receipts/1a/2f/1a2feb23487f4cf7aadf455f3fc52fe5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 565 +566 afip/receipts/53/49/53491796642d476dadc67d48c6d0c430.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 566 +567 afip/receipts/15/fe/15fe41444b1343b5a206031ccee6a3b9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 567 +568 afip/receipts/84/50/8450e4de56eb4479a871120f4cbfbefd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 568 +569 afip/receipts/58/bb/58bbb611d8fb452ca5ada829952898f4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 569 +570 afip/receipts/1f/a1/1fa1687df27c4be6805bc9a32ae16ce6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 570 +571 afip/receipts/41/a7/41a75b7f8c4b4d43b3d5663234a229d9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 571 +572 afip/receipts/5a/0e/5a0edcc0fb2f4f80aae8fb47236e8f83.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 572 +573 afip/receipts/31/82/3182ac8e14bb4cb4824a97c933bd46cf.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 573 +574 afip/receipts/bc/0d/bc0dfde3d1c7444eab3d395365513365.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 574 +575 afip/receipts/cf/5c/cf5ca99de73d49da975534c467ae3708.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 575 +576 afip/receipts/9c/15/9c157787f4404e94b2c96aae777ff0f2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 576 +577 afip/receipts/ab/30/ab30a286ae484528a163de4aed5f67fb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 577 +578 afip/receipts/ab/75/ab753f6005a94fedb0d7c866b4440c70.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 578 +579 afip/receipts/61/39/6139982b34594bea80c397e48d9d8620.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 579 +580 afip/receipts/8d/2b/8d2b351df4844fab80d66d7fc7e46e3a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 580 +581 afip/receipts/46/bc/46bc44ea7b0a4c9882d002f8cbb95dab.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 581 +582 afip/receipts/8a/d2/8ad296bf8df74087840483aa0c827b98.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 582 +583 afip/receipts/68/36/6836a4d08b4041daae0dcc00f4dcfcd8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 583 +584 afip/receipts/d8/5a/d85a269f275a4484b6f27a8d5a48db4b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 584 +585 afip/receipts/93/54/9354050048794b4c89fb30f44de43f52.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 585 +586 afip/receipts/d1/29/d12916d53cb74ba28b3ad4ce4b9f0d1e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 586 +587 afip/receipts/c7/c4/c7c406a124fa467eb460060990caa2ef.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 587 +588 afip/receipts/37/32/373232cb179b4f9183d5b0c81dc40b5e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 588 +589 afip/receipts/e5/0f/e50f070d90fc4d23b8f329834bfa4555.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 589 +590 afip/receipts/9f/86/9f867b7b833846c48446922f59081178.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 590 +591 afip/receipts/1e/9c/1e9c587089ec4cb58ed29f8b77a5864a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 591 +592 afip/receipts/2d/ef/2def93bb4bb24c52841f65cf0bb48ef0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 592 +593 afip/receipts/32/ee/32ee2978cfaf411a8f58d70923e92044.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 593 +594 afip/receipts/07/a0/07a0025cf1204efca73aa8f16b2af77f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 594 +595 afip/receipts/2f/27/2f27ae7796874af588582f6ebf93ebd7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 595 +596 afip/receipts/09/01/0901547ab2834c9aab093d7038b4adc2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 596 +597 afip/receipts/47/68/4768b534a1da4c1ea7be1fd21424d625.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 597 +598 afip/receipts/65/f3/65f3217e3f494968b11c215e040f9431.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 598 +599 afip/receipts/da/56/da56eb0730fd46e1b33bd68d8da91bde.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 599 +600 afip/receipts/2d/83/2d83d6a475384df8ad7bdcf8c82985ac.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 600 +601 afip/receipts/1f/fa/1ffa07fad1434ccb9ae4248e5d9d3c36.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 601 +602 afip/receipts/40/25/40250d3d290c481eacfc5d16415ed3c9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 602 +603 afip/receipts/6b/ed/6bed1d1db9bc4807b616a93454f46172.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 603 +604 afip/receipts/e2/c9/e2c9aea94214416baacccdc0b426b5bf.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 604 +605 afip/receipts/c8/2b/c82b666d5cbd4645a7915fe3b6f5d0ba.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 605 +606 afip/receipts/2e/18/2e180d35face48fc999dda0303f61089.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 606 +607 afip/receipts/55/a7/55a78911c3e142168311f7122ccc4fbc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 607 +608 afip/receipts/f9/68/f968889fa7844880bfcd870974cea03b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 608 +609 afip/receipts/96/cd/96cd2dbb8e5c4e35b35bc4bc3a0e705c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 609 +610 afip/receipts/2c/54/2c54ba6f769c4989b8f0e7c01adab1b3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 610 +611 afip/receipts/44/9a/449a8bbc15194551b0596fbb8cc60a83.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 611 +612 afip/receipts/b1/52/b15287b715e541a58d50a75fdbf5eea7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 612 +613 afip/receipts/ba/56/ba5600a024bb406ba65f126222881261.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 613 +614 afip/receipts/3a/ff/3aff3a6f43e5444eb5b5b640dc276869.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 614 +615 afip/receipts/c0/b8/c0b843440ca44d6482967a33d922b5b3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 615 +616 afip/receipts/a4/e7/a4e7279bd46a4c86bd9ab7f9c0225a50.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 616 +617 afip/receipts/7d/a8/7da8fa77df514da59e95ea0f13227391.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 617 +618 afip/receipts/33/44/33442b38098146d4ae9bda5ed31dd2cc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 618 +619 afip/receipts/64/72/64723c7640bc4fc7820b50a56f25bf8f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 619 +620 afip/receipts/a1/6f/a16f96ffb5b948eda1d22f1f7ac8f768.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 620 +621 afip/receipts/69/8c/698c5a6a27a1429b9196440c2eca6c62.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 621 +622 afip/receipts/65/21/6521e48724ba4d87b3676bfca5480545.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 622 +623 afip/receipts/a6/01/a601db89a1ff442390f78cd83e9ef9c7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 623 +624 afip/receipts/d5/d9/d5d93e3d1278469a8fc36023792f23bf.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 624 +625 afip/receipts/47/08/4708aacdfd6e4d009d2b900d03e40a30.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 625 +626 afip/receipts/4d/a7/4da772c8460b4d5c9f6c74a76f7d1055.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 626 +627 afip/receipts/2d/51/2d51abbc95bb40398cabd93c98e1c27d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 627 +628 afip/receipts/71/1a/711aa9e999144390afa0bf47cc7ada3f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 628 +629 afip/receipts/65/f2/65f231c4f600417c8c414309af58fe1e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 629 +630 afip/receipts/f4/f3/f4f3d2e955f84e76a8690aed857bff54.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 630 +631 afip/receipts/9c/20/9c2021f59b4a4c0fb9f21760aa3d3a58.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 631 +632 afip/receipts/71/1d/711d146a97de4caabd8f766f43eb1191.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 632 +633 afip/receipts/6f/e9/6fe92c67c55f43deb3300259798f4c2a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 633 +634 afip/receipts/a2/87/a287e79154da4662a1cf9711f6dc2d9e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 634 +635 afip/receipts/72/81/72816e2821f64bcbbe769d2740e4cfcd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 635 +636 afip/receipts/50/40/5040fb2d1bfe40c792987ce18afbf595.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 636 +637 afip/receipts/c0/6e/c06e37fcb5cf42588e5540061b30e020.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 637 +638 afip/receipts/4b/f9/4bf970a0461242828120279d82c49d95.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 638 +639 afip/receipts/40/3e/403eedb60b5e4ed0b21141e839f917ba.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 639 +640 afip/receipts/36/f9/36f9685e3e0644e2b53ceaf5b34a86e7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 640 +641 afip/receipts/b1/3f/b13fd3b8936b42bb9cdbae271df28c13.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 641 +642 afip/receipts/a9/87/a987ff21835b4be28e36376920927577.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 642 +643 afip/receipts/16/56/1656ffff480c49f194f6cf7d942a457a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 643 +644 afip/receipts/28/73/28731d3d03e64879bda6f3ed51c54416.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 644 +645 afip/receipts/94/38/9438ad7881064ec095835a342be0c194.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 645 +646 afip/receipts/f2/10/f2101c8a69b34d0f8cfd1ec16b526e97.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 646 +647 afip/receipts/42/2a/422a88ba865c4a85ade015f1e0058ad1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 647 +648 afip/receipts/f3/10/f310b95f09664ae5a49185a0768c82b1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 648 +649 afip/receipts/62/01/62012d4a2f8e426399d1828db4251e61.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 649 +650 afip/receipts/c3/a8/c3a846c1b0f64725b2e98b2666704892.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 650 +651 afip/receipts/ae/de/aede45345d2a483d86e0922ab10e9859.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 651 +652 afip/receipts/31/d0/31d01a7b305f42c3afbd0b09e794d3ba.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 652 +653 afip/receipts/7a/32/7a3276bca0764f3c96f1071dd1d8959a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 653 +654 afip/receipts/58/1d/581dd55e58074ffd87fbd64403cae97b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 654 +655 afip/receipts/d1/33/d1336bc5b2064f3abf08d8b9a699daec.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 655 +656 afip/receipts/10/50/1050237c2259433ead5293563896efa3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 656 +657 afip/receipts/01/16/011659a376104a229b5222c2f9ea7938.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 657 +658 afip/receipts/b8/fb/b8fbe8e3972047c19d0766327dcd81c1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 658 +659 afip/receipts/20/7e/207e179d987449c1b2696c26ecd90d7f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 659 +660 afip/receipts/de/21/de2111d5954d4e83bfe713edece9e4af.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 660 +661 afip/receipts/52/c7/52c7e0f008be4e1fbde2a951396a81a5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 661 +662 afip/receipts/b1/8c/b18c9d2ba26343679fdb4d97e942154b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 662 +663 afip/receipts/42/ba/42baf3de99734d5a9ff9059142909e6c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 663 +664 afip/receipts/7a/86/7a86bd1967314b169dd13a598bc78ab8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 664 +665 afip/receipts/7b/8f/7b8f3849aeaf4bf086d6b1f6aec0dcd6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 665 +666 afip/receipts/ae/fa/aefa2af9ae244f6392bb0518b3f304c7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 666 +667 afip/receipts/c1/42/c142bebe2f35430ea7f034dfaad80ed4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 667 +668 afip/receipts/47/fd/47fdb7095b3a480da88d28e639a2729c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 668 +669 afip/receipts/37/52/37526b9a1c284e6b9b2eb243e6bb8899.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 669 +670 afip/receipts/97/89/97899b6ce8ef401db1f560e147deb239.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 670 +671 afip/receipts/83/f7/83f73d09ef9f496094f12d177b66ec21.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 671 +672 afip/receipts/ab/6e/ab6e6365f5ba4a66a4c9b37138f751ac.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 672 +673 afip/receipts/34/c3/34c3ff15756c44ee81634af49b47c02c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 673 +674 afip/receipts/bb/13/bb13ba7874e24c5fb19b2f5b2b54d993.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 674 +675 afip/receipts/44/49/4449ce83cf0340b19e46fe17bab1ca59.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 675 +676 afip/receipts/87/00/8700bc9b45914d2b80bbde2a15dd921e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 676 +677 afip/receipts/cb/0e/cb0e876a44b840e382c350b198eca40f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 677 +678 afip/receipts/a6/c8/a6c8474749424e1e90901872e6f4a1f7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 678 +679 afip/receipts/7a/4a/7a4ab1f2f88f4edcb4a5577418cee417.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 679 +680 afip/receipts/e6/a8/e6a849aad60c44b19829e7910c171d92.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 680 +681 afip/receipts/f0/6d/f06d89b9e0004dddb0503f7f3e2e2fd0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 681 +682 afip/receipts/e9/bc/e9bc44ec5b4b4656a2a6f1dd94d790bf.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 682 +683 afip/receipts/b5/48/b5486b9b7b494e50adb2587c0340c4dd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 683 +684 afip/receipts/26/98/26986bc48b6943e3a18cb1d5adb98adb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 684 +685 afip/receipts/b5/90/b5905bc223d141c2bdac1ce8e053ded8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 685 +686 afip/receipts/fd/d5/fdd52185707240f490057bbac74b2c1b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 686 +687 afip/receipts/80/9f/809ffa3359064a4a88b50c97bf2bbaa0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 687 +688 afip/receipts/4f/8c/4f8c5bf6b28342c584e38b0b443ddb9f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 688 +689 afip/receipts/53/bf/53bf2783c77d4bee85e05538f6231336.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 689 +690 afip/receipts/0d/a6/0da6ed5c220e45e9b578937ff8644765.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 690 +691 afip/receipts/34/11/34112a7c1efa41b3bca3a93b2cfcc4fc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 691 +692 afip/receipts/55/30/5530708f2f074a66b002b7ccda98f307.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 692 +693 afip/receipts/e0/1a/e01a8026d00446b88a31403fad887f14.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 693 +694 afip/receipts/43/91/4391cdef0df948478fe9e5683c673324.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 694 +695 afip/receipts/5a/80/5a801795064b4a8a9582f7e2ec5cce0a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 695 +696 afip/receipts/a0/9d/a09d6fda2cf04a51b8391789c483e656.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 696 +697 afip/receipts/db/e8/dbe8467839e241049fca5161963ac7da.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 697 +698 afip/receipts/f5/43/f543626b07bd4c6c8d5d468c503e8cf7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 698 +699 afip/receipts/c5/27/c527cffe045d4857a3f423b262245d2f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 699 +700 afip/receipts/82/71/8271eb34fbe84249965d4af6df1d1100.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 700 +701 afip/receipts/37/bd/37bdfb5c1ed647beb20498c4efded7cd.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 701 +702 afip/receipts/86/18/86185d7b8e7445deb18ea2d7ecc0ec65.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 702 +703 afip/receipts/2a/14/2a14533244b84901a97f4753ead9cc18.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 703 +704 afip/receipts/f2/7a/f27a611498004b089dd3187768723b3f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 704 +705 afip/receipts/bd/34/bd341fd55d1c4a7e9addaa66d0db166f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 705 +706 afip/receipts/f8/2d/f82daf320f0b4d79838208bb748cf5df.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 706 +707 afip/receipts/bf/4e/bf4e34cb88a6474b94df7bb9fad66d5a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 707 +708 afip/receipts/ef/8f/ef8ff04219eb4d9991dcd4f23e63c1af.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 708 +709 afip/receipts/1c/41/1c41855cbe124669b907346d71c8718e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 709 +710 afip/receipts/f5/a5/f5a561f799c74728b237ab5e2fb6e426.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 710 +711 afip/receipts/47/62/4762b4fbab8540c1a364578235ff1f70.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 711 +712 afip/receipts/52/58/525882208e8f469a81da1deccad7b2d3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 712 +713 afip/receipts/d3/53/d353ba4ce4034978b14c1d5881d1c952.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 713 +714 afip/receipts/6b/e7/6be703b683584a21b133c300ab84f1bc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 714 +715 afip/receipts/af/f6/aff6d0e44fb647489ad42cce48a09307.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 715 +716 afip/receipts/c5/e5/c5e57aa00efb44bd9c4a4ef237b46bb6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 716 +717 afip/receipts/76/22/762221b33fc8458f8a4a936a59d282b4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 717 +718 afip/receipts/94/e3/94e360384c964459904941061b2a2f4f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 718 +719 afip/receipts/ef/f4/eff4cf4b80e748a181358993ea4a1c22.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 719 +720 afip/receipts/4c/ec/4cec12810c6549dfb0dcebf83992edc3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 720 +721 afip/receipts/35/62/356227fa91e24037ab627b70a1bfe21d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 721 +722 afip/receipts/7d/13/7d13262d9f6741e981302137b5b49273.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 722 +723 afip/receipts/51/0d/510d668da308478ab68f018977e065db.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 723 +724 afip/receipts/67/12/67128206af0d47d6b25ededd217726c9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 724 +725 afip/receipts/f8/7a/f87a452d4f0c48c483348e2b1e50a0fc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 725 +726 afip/receipts/57/f8/57f83cb669d04fe3b946cbb246342a5b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 726 +727 afip/receipts/36/3f/363f3603d80148bc8589464a983391ed.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 727 +728 afip/receipts/6b/06/6b062c3bbe74426d844df5d62705150a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 728 +729 afip/receipts/7c/08/7c083ebd684246c292d485025d647152.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 729 +730 afip/receipts/a0/22/a022c677b41a49aeb57c29b0859d260e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 730 +731 afip/receipts/d4/56/d456b2b1678a4638b495f04d209ae33b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 731 +732 afip/receipts/f6/48/f648a591356749b7a49a8102e8a9e230.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 732 +733 afip/receipts/6e/26/6e26c0ec39934d67a3690a21f2700536.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 733 +734 afip/receipts/ee/7a/ee7ac164e68f4dc29d2101935a1decf5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 734 +735 afip/receipts/39/cc/39cca48c06bb46528b76e1c9cc198061.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 735 +736 afip/receipts/c6/7f/c67fbdf3c6054709841553049ba3cd48.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 736 +737 afip/receipts/0d/60/0d6060f87d934980bb780ba2ff655f70.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 737 +738 afip/receipts/e9/40/e940fca2e0d64a58b3a3e95b16324b04.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 738 +739 afip/receipts/27/85/2785d0e7d36e4b3fa2a90b55c1aa0ad5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 739 +740 afip/receipts/42/13/4213f3c8dc7842bebaea23d6c38625d0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 740 +741 afip/receipts/6e/8a/6e8a285bc2634c68a64fea88dc0c24fc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 741 +742 afip/receipts/f8/64/f864be3b8b86425e85a68cef7ad163e9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 742 +743 afip/receipts/c8/e7/c8e7b218c62046108231ff7ff7bff366.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 743 +744 afip/receipts/d9/da/d9da72ac047f4dd2960c3ddb8587b627.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 744 +745 afip/receipts/03/a5/03a5755a3cd34967b7f16d8ae93540ee.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 745 +746 afip/receipts/47/a0/47a0e1241ff544c6a07983ab285f0228.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 746 +747 afip/receipts/5e/ed/5eedf3698b364254916de649f4d473df.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 747 +748 afip/receipts/f7/48/f74847988fa2424a83665c039e9c5036.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 748 +749 afip/receipts/46/e3/46e3d494611544b9bd5322eb321329aa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 749 +750 afip/receipts/49/40/494029c4e94f4c4aa174535e522a6930.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 750 +751 afip/receipts/5c/9c/5c9c7e95ab224a9d83e7daba642e7839.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 751 +752 afip/receipts/98/e7/98e79dbadf274780b6e82880e392d476.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 752 +753 afip/receipts/0d/1a/0d1a5c1f037144bb8a64080e188c78fe.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 753 +754 afip/receipts/68/6b/686b6e3ff7f54256b865f2879aca1717.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 754 +755 afip/receipts/f2/a4/f2a45cce627343138f67f5cc73e5eb12.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 755 +756 afip/receipts/ed/1a/ed1adbfd313c48fab7d07c5d0d74d35c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 756 +757 afip/receipts/e3/bb/e3bbda80e9634d3f8731dd8d1040fcc2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 757 +758 afip/receipts/26/a2/26a26cdd2e244bdb9986e68d6a0a87a5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 758 +759 afip/receipts/4a/2e/4a2eddbee2a54baca9ee8864f5900ad9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 759 +760 afip/receipts/b9/7b/b97b0c152f964538b3bc74ef32385048.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 760 +761 afip/receipts/58/0d/580dffe8f1d442d6a28ba61e8144f031.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 761 +762 afip/receipts/e2/03/e20371769c89483f85b6c15565892b12.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 762 +763 afip/receipts/25/b0/25b0be3ab039434b99e6626e47fc6a6d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 763 +764 afip/receipts/c5/98/c59801b7bb6e404b8c1ae579874631ad.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 764 +765 afip/receipts/6b/b0/6bb0f3cf602f45f1913d9ea1863c0c28.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 765 +766 afip/receipts/26/c3/26c31e7b2f9b4e9691563add5b22d31b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 766 +767 afip/receipts/18/96/1896ddf1db494ba0ac1878b9daf37af7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 767 +768 afip/receipts/58/43/5843019db4394fe4bbdc92b3d995b810.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 768 +769 afip/receipts/2a/ef/2aeffe9d7bb044c7b0032eeecea86eb1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 769 +770 afip/receipts/5f/b5/5fb50ce9492b4ed185e5cad738001512.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 770 +771 afip/receipts/03/10/031022f8d48f4e11a02ea3e7e49c1dc4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 771 +772 afip/receipts/e7/a4/e7a47710185645dd82fb79dde219e3c9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 772 +773 afip/receipts/f1/a4/f1a49f9c6462424facbf6fd2967071b0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 773 +774 afip/receipts/66/07/6607b5003e00440f9008cae4f49f91c9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 774 +775 afip/receipts/bb/14/bb14ee6ebd5642c484ecca19fff35f3f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 775 +776 afip/receipts/30/26/3026b0f701ae4bb697b926392cb93d3f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 776 +777 afip/receipts/8f/51/8f51fdc5da7b44c8b82c814edb573eb8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 777 +778 afip/receipts/f0/9b/f09b58a4c5174a458ff9b35bdf563fb3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 778 +779 afip/receipts/72/37/7237780e5162474c9570c99deba62a4d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 779 +780 afip/receipts/c7/15/c7155965de01423cbd46a77d7e0a2e3c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 780 +781 afip/receipts/e1/21/e121a5dd8f894901b1ce7d5747f87cff.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 781 +782 afip/receipts/4f/8c/4f8c769efed1409cbff3064448815f6c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 782 +783 afip/receipts/47/7f/477f84919aa24de7b9c671ca92e2e8b5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 783 +784 afip/receipts/e0/de/e0dede8cec664ea39a5e026e75a5f9e7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 784 +785 afip/receipts/45/a0/45a0e5977c00485bb26ad052d53ee1fa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 785 +786 afip/receipts/b3/78/b378378e0efc4ecf9c2e73d24f78f7db.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 786 +787 afip/receipts/be/97/be976a001c56426d9f13ba972337bb31.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 787 +788 afip/receipts/bb/de/bbde13eb94d94222998c476ef16088b2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 788 +789 afip/receipts/c4/68/c4687f509a5d4dfc8e5cb7bf8db607b6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 789 +790 afip/receipts/5d/89/5d89c74af65d434ba26eac3f6d315179.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 790 +791 afip/receipts/77/9a/779a24bb3d3c47ee895445df6827ccb4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 791 +792 afip/receipts/83/54/8354f6da142d443e9315d7e774c4a5cc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 792 +793 afip/receipts/e8/b6/e8b629fe072846eb83d5ba19e1fecb97.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 793 +794 afip/receipts/6b/52/6b5211a524fb485aaa6cce0846855d76.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 794 +795 afip/receipts/9b/06/9b06cb16ca0c4536873bf1a361b56464.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 795 +796 afip/receipts/a0/74/a074972e2e4f40ffb9e27173267be495.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 796 +797 afip/receipts/c7/16/c71691e762fe44af88668b8a437294cc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 797 +798 afip/receipts/40/04/4004950be13f4d3793fa9991a0f8daf6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 798 +799 afip/receipts/18/0d/180dfc1a60654156b7a96451781135ed.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 799 +800 afip/receipts/78/d2/78d21de832794addab1b9d8ff94d8db0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 800 +801 afip/receipts/0c/aa/0caa2975b63c424ca7e7165d566fffb1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 801 +802 afip/receipts/d1/c8/d1c8bae175b243a7a8730813ec206161.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 802 +803 afip/receipts/ed/ae/edae7e20a9734094ac150e592af301de.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 803 +804 afip/receipts/de/47/de47b116f12b4f0585f8f0c40c619d22.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 804 +805 afip/receipts/3a/fe/3afeab4dc59740a3922bfec66d053ab8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 805 +806 afip/receipts/5d/e5/5de51cd43fb54302942572e701f0a172.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 806 +807 afip/receipts/bf/d0/bfd0998c3caa4e24bdaf22dd38ef9445.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 807 +808 afip/receipts/43/7b/437be1e1f8da464e860eb07464a45b3a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 808 +809 afip/receipts/1a/74/1a749e1bf6b847a7898949c4c317685e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 809 +810 afip/receipts/2b/8d/2b8d67ff09ff4accadbb81d2ce1823c7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 810 +811 afip/receipts/30/e2/30e28d4538c64b24818c7f40e7840647.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 811 +812 afip/receipts/aa/88/aa88d324a2d548a1a3673225038ed745.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 812 +813 afip/receipts/73/1f/731fe084a41143e19edeea22da6b17d8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 813 +814 afip/receipts/ce/0d/ce0d5f0276b840d48d19cfb6068ca457.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 814 +815 afip/receipts/4b/4f/4b4fcaf929214a78a9261f2a0495cb68.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 815 +816 afip/receipts/7f/f8/7ff8994a8097411fbf874d4855c266e4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 816 +817 afip/receipts/dd/73/dd73a473d70a481c8382934ee4430545.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 817 +818 afip/receipts/36/f8/36f886bc9b85416f8b35cf15869674ac.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 818 +819 afip/receipts/b7/36/b7367ad982b54489b8aaaff9cbb6e40c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 819 +820 afip/receipts/83/5d/835df2bf3a914de6b2998540f0dfb27b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 820 +821 afip/receipts/93/dc/93dc1ac126d9487f9b49cad16c28513f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 821 +822 afip/receipts/99/66/99664ecd40a34efba773b882a8584510.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 822 +823 afip/receipts/8e/93/8e93b4021917404398178f1dc50a57ee.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 823 +824 afip/receipts/22/86/22861fc1daeb42a6b3f4d837e8c5670e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 824 +825 afip/receipts/b8/f4/b8f44966c0424f3ba2363a0f2e1882fc.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 825 +826 afip/receipts/73/2d/732d760e38f049ef997f00a85a683280.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 826 +827 afip/receipts/48/e3/48e3ef8917284760b61b95bbf0049598.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 827 +828 afip/receipts/6e/b2/6eb22818cb5a47b3aab9055955280a90.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 828 +829 afip/receipts/d8/30/d830241de8e44aa28ae6dedb706e32d9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 829 +830 afip/receipts/02/d9/02d966edfa1d46fd94e0c6bf8de02b93.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 830 +831 afip/receipts/16/51/16518b98a9e448cf866e5ff77a0ff981.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 831 +832 afip/receipts/e9/1c/e91c0ec635bc40dcb3a3f010346bf68d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 832 +833 afip/receipts/1e/73/1e73a26773c041e5afcb09d9377a2b20.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 833 +834 afip/receipts/6c/1c/6c1cc91de9064ed680a2dc25e0ec7479.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 834 +835 afip/receipts/c9/95/c9958caba0de441a8766af444ec14e02.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 835 +836 afip/receipts/d8/9f/d89f325db28a49dc84f2981b21ed1be1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 836 +837 afip/receipts/d0/97/d097996c03a74104983714f21fe1ab96.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 837 +838 afip/receipts/8f/29/8f2943c17417494584db0f7a1460843b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 838 +839 afip/receipts/4c/88/4c88c8d0e8474f55b872f3ea00b8b326.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 839 +840 afip/receipts/09/d4/09d44c619c3146c29ab33222bea537d9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 840 +841 afip/receipts/41/d5/41d5cbadc20240b4946336c4417cab99.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 841 +842 afip/receipts/5f/80/5f80fdf7daea4f7bbafb9fb91798b4b4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 842 +843 afip/receipts/81/42/8142321ea500424189d6aa039acb6559.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 843 +844 afip/receipts/71/b9/71b95557668b49c0adc55925a2b32c39.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 844 +845 afip/receipts/4c/53/4c53badb0e7f4b47a6db4316b8e0dec9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 845 +846 afip/receipts/d8/14/d8146f1690174fb4876af53e2eb741df.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 846 +847 afip/receipts/15/f7/15f7a5d0032c4aecbb77e44e938c308e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 847 +848 afip/receipts/79/7b/797bee30a3014b828e5c12155edd28e4.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 848 +849 afip/receipts/5d/3e/5d3e8ff5a64743b884dab48864984fe5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 849 +850 afip/receipts/b8/41/b841d987b38c46efb9d0c6facb20b83f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 850 +851 afip/receipts/62/55/6255d96c6eee4edd8c7250fae93031b7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 851 +852 afip/receipts/a9/38/a938265ed034465480bc4dcb25820efa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 852 +853 afip/receipts/bf/4f/bf4f67a9d2164003ac83660956418862.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 853 +854 afip/receipts/18/0b/180b77c45fa44cd8b0d9d5f8df16a8ef.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 854 +855 afip/receipts/81/67/8167b6d546a04090ab5bff9ce4e44c7e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 855 +856 afip/receipts/91/4a/914a6ead4bc943368d7b51afffbd89c3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 856 +857 afip/receipts/8f/b1/8fb12b6a3dfa4b3dbe4e4f131c6ae6ca.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 857 +858 afip/receipts/ed/f3/edf360e34fb545c2837dea71692a7f1a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 858 +859 afip/receipts/18/88/1888a731f5ea45be966bf3451aaddaaa.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 859 +860 afip/receipts/2a/fc/2afc2f55c9e944fca8d3025a130834ab.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 860 +861 afip/receipts/d9/e2/d9e230fb1f184d01b686d1a59e9b9e64.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 861 +862 afip/receipts/36/d1/36d1ce996f5b4720ba29c8b680a33d94.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 862 +863 afip/receipts/db/86/db86cc23850b47ab8efd5b0825932d36.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 863 +864 afip/receipts/88/05/88051448a46443e68e81b9512f963ca7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 864 +865 afip/receipts/a0/0a/a00abbe71b62488b99ee38d4b6cb1317.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 865 +866 afip/receipts/07/20/0720d008424040ceb2e12425bef56b49.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 866 +867 afip/receipts/1c/2a/1c2a244410614f3e9d916d309ae39827.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 867 +868 afip/receipts/4c/2a/4c2a6a8fac2549ccaeb5f64de627a2e0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 868 +869 afip/receipts/bf/d4/bfd4e1bad40f4c38ba643f05085428ac.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 869 +870 afip/receipts/39/e0/39e098779c344ffd834160e54b4eb98e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 870 +871 afip/receipts/25/7b/257bba3b2e43445f8bdde2c827e7af28.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 871 +872 afip/receipts/cb/0c/cb0cbdd01d574aafae8ca8b53aa925b7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 872 +873 afip/receipts/f8/14/f81427f9d4354b05901ab62b527ee3c8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 873 +874 afip/receipts/33/92/3392ebc621c541adb8b162a23631231b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 874 +875 afip/receipts/bc/81/bc81533ad71244eea64b110dc5220e63.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 875 +876 afip/receipts/13/4e/134ec17f3c3f4d5397a75fb5061654b2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 876 +877 afip/receipts/67/ed/67edeeded2284d48994509fbca0fe38b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 877 +878 afip/receipts/ce/51/ce51dc9e547a430983d95bf69bb427f1.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 878 +879 afip/receipts/5e/df/5edf0de3691d4f279222bad9f3151e65.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 879 +880 afip/receipts/36/04/36040b0563c7496a9b7a07a672bc31af.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 880 +881 afip/receipts/6f/ae/6fae012d356b486cabe3f1ccbb47773b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 881 +882 afip/receipts/40/d7/40d752332d874401a76e9e56f6c75dc6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 882 +883 afip/receipts/88/93/88935a4f56d7480ab58fb0408d881614.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 883 +884 afip/receipts/c5/02/c502175ab2074739b395167a2130e3de.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 884 +885 afip/receipts/da/05/da056c4c9b714e208407faa71c1d02d6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 885 +886 afip/receipts/7e/99/7e99420ee6b94f80b23c1d9907b02285.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 886 +887 afip/receipts/78/ce/78ce34a6e4c14086bd68feec96de3817.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 887 +888 afip/receipts/74/d6/74d65f3f32fe4de5bc22b94813c3d4d2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 888 +889 afip/receipts/18/20/1820ac9c62634a18b124e70b5381d3cb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 889 +890 afip/receipts/7a/06/7a06f78117e0408a9f5f48b55dff8bbb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 890 +891 afip/receipts/22/93/2293de3cb08847c08fb441bbc86ba70c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 891 +892 afip/receipts/f3/6e/f36e3df21af74e94ae5da95f79f28c15.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 892 +893 afip/receipts/c0/8b/c08bcf00aad1467584b48d869ddc3e23.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 893 +894 afip/receipts/db/65/db65243aea1d4785ba615f1c3cf6ceb0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 894 +895 afip/receipts/13/35/13352a0fbd164c2884018b570b9a9f01.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 895 +896 afip/receipts/4e/44/4e44ecec13b74101acf0796989114c3b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 896 +897 afip/receipts/01/e3/01e3bf9b21ee4926b4e6dcd333ae5012.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 897 +898 afip/receipts/cf/a6/cfa6cb640a76445b880148fe9e4f86c7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 898 +899 afip/receipts/19/c7/19c7c5c11ccc4f90ae42694091518a47.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 899 +900 afip/receipts/18/9c/189c54c894cc4c52b34f18f7549cca53.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 900 +901 afip/receipts/4d/c6/4dc6763a1ac047dfa222639ac9137de2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 901 +902 afip/receipts/d8/f4/d8f47e390a64447a9b58f7b1d877b252.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 902 +903 afip/receipts/6f/c6/6fc6d89660234086a9284e0340ea5024.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 903 +904 afip/receipts/a2/a8/a2a82cd131ac408e8785b5c7c158c494.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 904 +905 afip/receipts/a5/5b/a55bdbba993d4be28497a8a103ce5d46.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 905 +906 afip/receipts/da/04/da049e85b55b4f32bab79daa13c3b20d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 906 +907 afip/receipts/4a/43/4a43174ff8bb45b3973900c5f677cb28.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 907 +908 afip/receipts/65/e3/65e3a9a12c8f4afdabdcba2edda5ae37.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 908 +909 afip/receipts/36/42/3642f447aeb4407eabf6d98c3d54d1cb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 909 +910 afip/receipts/d3/0e/d30e067734dc44bdb2d79d0188c379a3.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 910 +911 afip/receipts/52/60/526018eb60bd4a3bb28213b276640826.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 911 +912 afip/receipts/66/dd/66ddc6b4ed594f11b854045d093ff7db.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 912 +913 afip/receipts/eb/da/ebda3ba152de4b7f8f5bbe05f3a818b6.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 913 +914 afip/receipts/a5/3c/a53cff1ff852443590b80ac6789e8e8f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 914 +915 afip/receipts/72/c1/72c10f3b27674e21bd2df951d5fd9c31.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 915 +916 afip/receipts/37/78/37783946c7c7448cb95cbe8a3fd873d2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 916 +917 afip/receipts/a5/58/a5580a8aa7e84227bee46b14d0537901.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 917 +918 afip/receipts/e4/41/e441dd51e7714e2398b50f655b184bf0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 918 +919 afip/receipts/78/bb/78bb285b3ccf4509807d619e000f000c.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 919 +920 afip/receipts/f1/7a/f17ad65814714ffda45134cfca059816.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 920 +921 afip/receipts/9e/97/9e976065008f4a0ab83ae06f4febd1ff.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 921 +922 afip/receipts/8c/55/8c556e382e224542a940708f0327194e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 922 +923 afip/receipts/85/a3/85a385e322494a02a0d953546d990a74.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 923 +924 afip/receipts/92/71/9271742008ce4a93b1cf6cf8d7c9d9c2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 924 +925 afip/receipts/61/3a/613a968b6a2f4a7089fc28d2de70790f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 925 +926 afip/receipts/2b/b2/2bb2e2d1de894e31bb910ea275e9c29d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 926 +927 afip/receipts/f9/9a/f99aa5bc575b40f48c661fbb1b027dd8.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 927 +928 afip/receipts/f9/50/f950296a24c7479a8e19bf0fb710551a.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 928 +929 afip/receipts/dc/a0/dca090db2ab5462dbec64d2de64bf392.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 929 +930 afip/receipts/a4/63/a463f493080f4170bd4aaf5bb3ff5b17.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 930 +931 afip/receipts/85/32/8532a354f4004bd6be3e3b26dd295507.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 931 +932 afip/receipts/f7/4c/f74c153722b64c4e85a764b66bb84542.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 932 +933 afip/receipts/a9/af/a9aff5206fcc464b9dc4b023a6d74557.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 933 +934 afip/receipts/54/59/5459952a2ee74956b47565f3a0e79358.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 934 +935 afip/receipts/82/c2/82c26a0d26fb429fb51db42dfa2a2455.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 935 +936 afip/receipts/63/49/6349725808be4222bcc85d5c9c932a84.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 936 +937 afip/receipts/81/66/8166ca05531c425288e2664071e88394.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 937 +938 afip/receipts/61/bb/61bbc0aef3f8425b82229f95b7d2aed5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 938 +939 afip/receipts/06/1b/061bb16db4e64ed0901e93e17aabd271.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 939 +940 afip/receipts/c0/bb/c0bbdb4b5e4c4d3faab8516f5d2a216d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 940 +941 afip/receipts/52/2d/522d6b3751304a00b7a9157b9fdaf743.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 941 +942 afip/receipts/58/43/5843e339fbe24a46952e5dd796cc01a7.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 942 +943 afip/receipts/72/6d/726d62630c49420193a79f336196abf9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 943 +944 afip/receipts/ee/0b/ee0b07609c0d47d6b669fb40f8dbfb5d.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 944 +945 afip/receipts/ae/fa/aefa4b0648064d9dbf9f1cbf46cc35eb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 945 +946 afip/receipts/7d/84/7d841d171c3c45918741831f76bee214.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 946 +947 afip/receipts/e7/a8/e7a82fcafe7e4bb4ab96a8543d993fd9.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 947 +948 afip/receipts/d8/52/d85234e74a8b4c3eba7e68bd531064a2.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 948 +949 afip/receipts/ad/8e/ad8ec324a0fb4dd2a9687d3854fd0852.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 949 +950 afip/receipts/31/fb/31fbe779ee644c72bb3a09613f635f13.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 950 +951 afip/receipts/cf/c9/cfc950f4e34c427a91ef159cb9a82ea0.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 951 +952 afip/receipts/ce/28/ce28e1e9acb34ea98c3b6d50dbe26acb.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 952 +953 afip/receipts/c2/fb/c2fba1bb5507478696ed21854ff4d901.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 953 +954 afip/receipts/fe/65/fe6581c642d043e7b06b9421a7347f8f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 954 +955 afip/receipts/d4/ee/d4eeb3884b314ee48e51cc57e9316d6f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 955 +956 afip/receipts/71/1c/711c03dab30c451eaa602a3365ca75b5.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 956 +957 afip/receipts/b0/2b/b02b798d358f4b64bb6e356c491aaa2f.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 957 +958 afip/receipts/15/58/155896e027784873b016cc9846c8811b.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 958 +959 afip/receipts/1f/eb/1feb691a587a46cab951d3f5290e870e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 959 +960 afip/receipts/e2/1b/e21b0fbe9aaf4e249cf15096fe533e6e.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 960 +961 afip/receipts/28/a6/28a6de5ebb7044339e6f3471ae223118.pdf AMAR MASCOTAS S.A. Olga Cossettini 1112 piso 3 depto. G, CABA. administracion@amarmascotas.com IVA Responsable Inscripto Inscripto inscripto 961 +\. + + +-- +-- Data for Name: afip_receipttype; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_receipttype (id, code, description, valid_from, valid_to) FROM stdin; +1 1 Factura A 2010-09-17 \N +2 2 Nota de Débito A 2010-09-17 \N +3 3 Nota de Crédito A 2010-09-17 \N +4 6 Factura B 2010-09-17 \N +5 7 Nota de Débito B 2010-09-17 \N +6 8 Nota de Crédito B 2010-09-17 \N +7 4 Recibos A 2010-09-17 \N +8 5 Notas de Venta al contado A 2010-09-17 \N +9 9 Recibos B 2010-09-17 \N +10 10 Notas de Venta al contado B 2010-09-17 \N +11 63 Liquidacion A 2010-09-17 \N +12 64 Liquidacion B 2010-09-17 \N +13 34 Cbtes. A del Anexo I, Apartado A,inc.f),R.G.Nro. 1415 2010-09-17 \N +14 35 Cbtes. B del Anexo I,Apartado A,inc. f),R.G. Nro. 1415 2010-09-17 \N +15 39 Otros comprobantes A que cumplan con R.G.Nro. 1415 2010-09-17 \N +16 40 Otros comprobantes B que cumplan con R.G.Nro. 1415 2010-09-17 \N +17 60 Cta de Vta y Liquido prod. A 2010-09-17 \N +18 61 Cta de Vta y Liquido prod. B 2010-09-17 \N +19 11 Factura C 2011-03-30 \N +20 12 Nota de Débito C 2011-03-30 \N +21 13 Nota de Crédito C 2011-03-30 \N +22 15 Recibo C 2011-03-30 \N +23 49 Comprobante de Compra de Bienes Usados a Consumidor Final 2013-04-01 \N +24 51 Factura M 2015-05-22 \N +25 52 Nota de Débito M 2015-05-22 \N +26 53 Nota de Crédito M 2015-05-22 \N +27 54 Recibo M 2015-05-22 \N +28 201 Factura de Crédito electrónica MiPyMEs (FCE) A 2018-12-26 \N +29 202 Nota de Débito electrónica MiPyMEs (FCE) A 2018-12-26 \N +30 203 Nota de Crédito electrónica MiPyMEs (FCE) A 2018-12-26 \N +31 206 Factura de Crédito electrónica MiPyMEs (FCE) B 2018-12-26 \N +32 207 Nota de Débito electrónica MiPyMEs (FCE) B 2018-12-26 \N +33 208 Nota de Crédito electrónica MiPyMEs (FCE) B 2018-12-26 \N +34 211 Factura de Crédito electrónica MiPyMEs (FCE) C 2018-12-26 \N +35 212 Nota de Débito electrónica MiPyMEs (FCE) C 2018-12-26 \N +36 213 Nota de Crédito electrónica MiPyMEs (FCE) C 2018-12-26 \N +\. + + +-- +-- Data for Name: afip_receiptvalidation; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_receiptvalidation (id, result, processed_date, cae, cae_expiration, receipt_id) FROM stdin; +1 A 2025-09-19 20:01:09+00 75388773423984 2025-09-29 1 +2 A 2025-09-19 20:56:25+00 75388781495532 2025-09-29 2 +3 A 2025-09-19 20:56:26+00 75388781497796 2025-09-29 3 +4 A 2025-09-19 20:56:27+00 75388781499829 2025-09-29 4 +5 A 2025-09-19 20:56:28+00 75388781502398 2025-09-29 5 +6 A 2025-09-19 20:56:29+00 75388781504696 2025-09-29 6 +7 A 2025-09-19 20:56:29+00 75388781507411 2025-09-29 7 +8 A 2025-09-19 20:56:30+00 75388781509793 2025-09-29 8 +9 A 2025-09-19 20:56:31+00 75388781511455 2025-09-29 9 +10 A 2025-09-19 20:56:32+00 75388781513444 2025-09-29 10 +11 A 2025-09-19 20:56:33+00 75388781515373 2025-09-29 11 +12 A 2025-09-19 20:56:34+00 75388781518025 2025-09-29 12 +13 A 2025-09-19 20:56:35+00 75388781520601 2025-09-29 13 +14 A 2025-09-19 20:56:35+00 75388781523073 2025-09-29 14 +15 A 2025-09-19 20:56:36+00 75388781525088 2025-09-29 15 +16 A 2025-09-19 20:56:37+00 75388781527124 2025-09-29 16 +17 A 2025-09-19 20:56:38+00 75388781529126 2025-09-29 17 +18 A 2025-09-19 20:56:39+00 75388781530934 2025-09-29 18 +19 A 2025-09-19 20:56:40+00 75388781533115 2025-09-29 19 +20 A 2025-09-19 20:56:40+00 75388781534810 2025-09-29 20 +21 A 2025-09-19 20:56:41+00 75388781537164 2025-09-29 21 +22 A 2025-09-19 20:56:42+00 75388781539124 2025-09-29 22 +23 A 2025-09-19 20:56:43+00 75388781541331 2025-09-29 23 +24 A 2025-09-19 20:56:44+00 75388781542918 2025-09-29 24 +25 A 2025-09-19 20:56:45+00 75388781545071 2025-09-29 25 +26 A 2025-09-19 20:56:46+00 75388781547162 2025-09-29 26 +27 A 2025-09-19 20:56:47+00 75388781549164 2025-09-29 27 +28 A 2025-09-19 20:56:48+00 75388781551795 2025-09-29 28 +29 A 2025-09-19 20:56:48+00 75388781553726 2025-09-29 29 +30 A 2025-09-19 20:56:49+00 75388781555799 2025-09-29 30 +31 A 2025-09-19 20:56:50+00 75388781557851 2025-09-29 31 +32 A 2025-09-19 20:56:51+00 75388781560310 2025-09-29 32 +33 A 2025-09-19 20:56:52+00 75388781562972 2025-09-29 33 +34 A 2025-09-19 20:56:53+00 75388781565226 2025-09-29 34 +35 A 2025-09-19 20:56:54+00 75388781567100 2025-09-29 35 +36 A 2025-09-19 20:56:55+00 75388781569542 2025-09-29 36 +37 A 2025-09-19 20:56:56+00 75388781572352 2025-09-29 37 +38 A 2025-09-19 20:56:57+00 75388781574930 2025-09-29 38 +39 A 2025-09-19 20:56:58+00 75388781577580 2025-09-29 39 +40 A 2025-09-19 20:56:58+00 75388781579935 2025-09-29 40 +41 A 2025-09-19 20:57:00+00 75388781582952 2025-09-29 41 +42 A 2025-09-19 20:57:01+00 75388781585468 2025-09-29 42 +43 A 2025-09-19 20:57:58+00 75388781723357 2025-09-29 43 +44 A 2025-09-19 20:57:59+00 75388781725859 2025-09-29 44 +45 A 2025-09-19 20:58:00+00 75388781728069 2025-09-29 45 +46 A 2025-09-19 20:58:01+00 75388781730690 2025-09-29 46 +47 A 2025-09-19 20:58:02+00 75388781732985 2025-09-29 47 +48 A 2025-09-19 20:58:03+00 75388781736183 2025-09-29 48 +49 A 2025-09-19 20:58:04+00 75388781739775 2025-09-29 49 +50 A 2025-09-19 20:58:05+00 75388781743688 2025-09-29 50 +51 A 2025-09-19 20:58:06+00 75388781745928 2025-09-29 51 +52 A 2025-09-19 20:58:07+00 75388781748183 2025-09-29 52 +53 A 2025-09-19 20:58:08+00 75388781750612 2025-09-29 53 +54 A 2025-09-19 20:58:09+00 75388781752936 2025-09-29 54 +55 A 2025-09-19 20:58:10+00 75388781755471 2025-09-29 55 +56 A 2025-09-19 20:58:11+00 75388781757591 2025-09-29 56 +57 A 2025-09-19 20:58:12+00 75388781760149 2025-09-29 57 +58 A 2025-09-19 20:58:13+00 75388781762447 2025-09-29 58 +59 A 2025-09-19 20:58:14+00 75388781764363 2025-09-29 59 +60 A 2025-09-19 20:58:15+00 75388781766001 2025-09-29 60 +61 A 2025-09-19 20:58:16+00 75388781768529 2025-09-29 61 +62 A 2025-09-19 20:58:17+00 75388781770338 2025-09-29 62 +63 A 2025-09-19 20:58:17+00 75388781772063 2025-09-29 63 +64 A 2025-09-19 20:58:18+00 75388781774594 2025-09-29 64 +65 A 2025-09-19 20:58:19+00 75388781776509 2025-09-29 65 +66 A 2025-09-19 20:58:20+00 75388781779264 2025-09-29 66 +67 A 2025-09-19 20:58:21+00 75388781781646 2025-09-29 67 +68 A 2025-09-19 20:58:22+00 75388781783931 2025-09-29 68 +69 A 2025-09-19 20:58:23+00 75388781785988 2025-09-29 69 +70 A 2025-09-19 20:58:24+00 75388781788012 2025-09-29 70 +71 A 2025-09-19 20:58:25+00 75388781790130 2025-09-29 71 +72 A 2025-09-19 20:58:26+00 75388781791835 2025-09-29 72 +73 A 2025-09-19 20:58:27+00 75388781794074 2025-09-29 73 +74 A 2025-09-19 20:58:27+00 75388781796050 2025-09-29 74 +75 A 2025-09-19 20:58:28+00 75388781798303 2025-09-29 75 +76 A 2025-09-19 20:58:29+00 75388781799964 2025-09-29 76 +77 A 2025-09-19 20:58:30+00 75388781802226 2025-09-29 77 +78 A 2025-09-19 20:58:31+00 75388781804228 2025-09-29 78 +79 A 2025-09-19 20:58:32+00 75388781806424 2025-09-29 79 +80 A 2025-09-19 20:58:33+00 75388781808308 2025-09-29 80 +81 A 2025-09-19 20:58:34+00 75388781810308 2025-09-29 81 +82 A 2025-09-19 20:58:35+00 75388781812766 2025-09-29 82 +83 A 2025-09-19 20:58:35+00 75388781815447 2025-09-29 83 +84 A 2025-09-19 20:58:36+00 75388781818097 2025-09-29 84 +85 A 2025-09-19 20:58:37+00 75388781820571 2025-09-29 85 +86 A 2025-09-19 20:58:38+00 75388781823278 2025-09-29 86 +87 A 2025-09-19 20:58:39+00 75388781825283 2025-09-29 87 +88 A 2025-09-19 20:58:40+00 75388781827581 2025-09-29 88 +89 A 2025-09-19 20:58:41+00 75388781829745 2025-09-29 89 +90 A 2025-09-19 20:58:42+00 75388781831614 2025-09-29 90 +91 A 2025-09-19 20:58:43+00 75388781833912 2025-09-29 91 +92 A 2025-09-19 20:58:44+00 75388781835430 2025-09-29 92 +93 A 2025-09-19 20:58:45+00 75388781837961 2025-09-29 93 +94 A 2025-09-19 20:58:46+00 75388781840019 2025-09-29 94 +95 A 2025-09-19 20:58:46+00 75388781842391 2025-09-29 95 +96 A 2025-09-19 20:58:47+00 75388781844408 2025-09-29 96 +97 A 2025-09-19 20:58:48+00 75388781846793 2025-09-29 97 +98 A 2025-09-19 20:58:49+00 75388781849063 2025-09-29 98 +99 A 2025-09-19 20:58:50+00 75388781850897 2025-09-29 99 +100 A 2025-09-19 20:58:51+00 75388781852857 2025-09-29 100 +101 A 2025-09-19 20:58:52+00 75388781854786 2025-09-29 101 +102 A 2025-09-19 20:58:53+00 75388781856746 2025-09-29 102 +103 A 2025-09-19 20:58:53+00 75388781858439 2025-09-29 103 +104 A 2025-09-19 20:58:54+00 75388781860675 2025-09-29 104 +105 A 2025-09-19 20:58:55+00 75388781862737 2025-09-29 105 +106 A 2025-09-19 20:58:56+00 75388781864899 2025-09-29 106 +107 A 2025-09-19 20:58:57+00 75388781866846 2025-09-29 107 +108 A 2025-09-19 20:58:58+00 75388781869234 2025-09-29 108 +109 A 2025-09-19 20:58:59+00 75388781871572 2025-09-29 109 +110 A 2025-09-19 20:59:00+00 75388781873765 2025-09-29 110 +111 A 2025-09-19 20:59:01+00 75388781876213 2025-09-29 111 +112 A 2025-09-19 20:59:02+00 75388781878202 2025-09-29 112 +113 A 2025-09-19 20:59:03+00 75388781881038 2025-09-29 113 +114 A 2025-09-19 20:59:04+00 75388781883234 2025-09-29 114 +115 A 2025-09-19 20:59:05+00 75388781886428 2025-09-29 115 +116 A 2025-09-19 20:59:06+00 75388781889078 2025-09-29 116 +117 A 2025-09-19 20:59:07+00 75388781891358 2025-09-29 117 +118 A 2025-09-19 20:59:08+00 75388781894039 2025-09-29 118 +119 A 2025-09-19 20:59:09+00 75388781895789 2025-09-29 119 +120 A 2025-09-19 20:59:10+00 75388781897901 2025-09-29 120 +121 A 2025-09-19 20:59:11+00 75388781899929 2025-09-29 121 +122 A 2025-09-19 20:59:12+00 75388781901824 2025-09-29 122 +123 A 2025-09-19 20:59:13+00 75388781903680 2025-09-29 123 +124 A 2025-09-19 20:59:14+00 75388781906421 2025-09-29 124 +125 A 2025-09-19 20:59:14+00 75388781908321 2025-09-29 125 +126 A 2025-09-19 20:59:15+00 75388781910261 2025-09-29 126 +127 A 2025-09-19 20:59:16+00 75388781912530 2025-09-29 127 +128 A 2025-09-19 20:59:17+00 75388781914147 2025-09-29 128 +129 A 2025-09-19 20:59:18+00 75388781916034 2025-09-29 129 +130 A 2025-09-19 20:59:19+00 75388781917577 2025-09-29 130 +131 A 2025-09-19 20:59:20+00 75388781920345 2025-09-29 131 +132 A 2025-09-19 20:59:20+00 75388781921951 2025-09-29 132 +133 A 2025-09-19 20:59:21+00 75388781924001 2025-09-29 133 +134 A 2025-09-19 20:59:22+00 75388781925900 2025-09-29 134 +135 A 2025-09-19 20:59:23+00 75388781927999 2025-09-29 135 +136 A 2025-09-19 20:59:24+00 75388781930209 2025-09-29 136 +137 A 2025-09-19 20:59:25+00 75388781932010 2025-09-29 137 +138 A 2025-09-19 20:59:26+00 75388781934407 2025-09-29 138 +139 A 2025-09-19 20:59:27+00 75388781936218 2025-09-29 139 +140 A 2025-09-19 20:59:28+00 75388781938532 2025-09-29 140 +141 A 2025-09-19 20:59:28+00 75388781940558 2025-09-29 141 +142 A 2025-09-19 20:59:29+00 75388781942783 2025-09-29 142 +143 A 2025-09-19 20:59:30+00 75388781944769 2025-09-29 143 +144 A 2025-09-19 20:59:31+00 75388781947466 2025-09-29 144 +145 A 2025-09-19 20:59:36+00 75388781959775 2025-09-29 145 +146 A 2025-09-19 20:59:37+00 75388781961911 2025-09-29 146 +147 A 2025-09-19 20:59:38+00 75388781964163 2025-09-29 147 +148 A 2025-09-19 20:59:39+00 75388781966021 2025-09-29 148 +149 A 2025-09-19 20:59:40+00 75388781967899 2025-09-29 149 +150 A 2025-09-19 20:59:41+00 75388781969731 2025-09-29 150 +151 A 2025-09-19 20:59:42+00 75388781971977 2025-09-29 151 +152 A 2025-09-19 20:59:42+00 75388781973911 2025-09-29 152 +153 A 2025-09-19 20:59:43+00 75388781976325 2025-09-29 153 +154 A 2025-09-19 20:59:44+00 75388781978403 2025-09-29 154 +155 A 2025-09-19 20:59:45+00 75388781980623 2025-09-29 155 +156 A 2025-09-19 20:59:46+00 75388781982858 2025-09-29 156 +157 A 2025-09-19 20:59:47+00 75388781985173 2025-09-29 157 +158 A 2025-09-19 20:59:48+00 75388781987222 2025-09-29 158 +159 A 2025-09-19 20:59:49+00 75388781989368 2025-09-29 159 +160 A 2025-09-19 20:59:50+00 75388781991457 2025-09-29 160 +161 A 2025-09-19 20:59:51+00 75388781993624 2025-09-29 161 +162 A 2025-09-19 20:59:52+00 75388781995786 2025-09-29 162 +163 A 2025-09-19 20:59:52+00 75388781997673 2025-09-29 163 +164 A 2025-09-19 20:59:53+00 75388781999573 2025-09-29 164 +165 A 2025-09-19 20:59:54+00 75388782001929 2025-09-29 165 +166 A 2025-09-19 20:59:55+00 75388782003947 2025-09-29 166 +167 A 2025-09-19 20:59:56+00 75388782005978 2025-09-29 167 +168 A 2025-09-19 20:59:57+00 75388782007881 2025-09-29 168 +169 A 2025-09-19 20:59:58+00 75388782009867 2025-09-29 169 +170 A 2025-09-19 20:59:58+00 75388782011838 2025-09-29 170 +171 A 2025-09-19 20:59:59+00 75388782013652 2025-09-29 171 +172 A 2025-09-19 21:00:00+00 75388782015976 2025-09-29 172 +173 A 2025-09-19 21:00:01+00 75388782018953 2025-09-29 173 +174 A 2025-09-19 21:00:03+00 75388782024253 2025-09-29 174 +175 A 2025-09-19 21:00:05+00 75388782030511 2025-09-29 175 +176 A 2025-09-19 21:00:06+00 75388782035781 2025-09-29 176 +177 A 2025-09-19 21:00:08+00 75388782039609 2025-09-29 177 +178 A 2025-09-19 21:00:10+00 75388782044453 2025-09-29 178 +179 A 2025-09-19 21:00:12+00 75388782048355 2025-09-29 179 +180 A 2025-09-19 21:00:13+00 75388782052140 2025-09-29 180 +181 A 2025-09-19 21:00:15+00 75388782056762 2025-09-29 181 +182 A 2025-09-19 21:00:16+00 75388782061312 2025-09-29 182 +183 A 2025-09-19 21:00:17+00 75388782066888 2025-09-29 183 +184 A 2025-09-19 21:00:18+00 75388782071378 2025-09-29 184 +185 A 2025-09-19 21:00:20+00 75388782076873 2025-09-29 185 +186 A 2025-09-19 21:00:21+00 75388782080799 2025-09-29 186 +187 A 2025-09-19 21:00:22+00 75388782085105 2025-09-29 187 +188 A 2025-09-19 21:00:23+00 75388782088682 2025-09-29 188 +189 A 2025-09-19 21:00:24+00 75388782092139 2025-09-29 189 +190 A 2025-09-19 21:00:25+00 75388782095412 2025-09-29 190 +191 A 2025-09-19 21:00:26+00 75388782098371 2025-09-29 191 +192 A 2025-09-19 21:00:28+00 75388782101808 2025-09-29 192 +193 A 2025-09-19 21:00:29+00 75388782105386 2025-09-29 193 +194 A 2025-09-19 21:00:30+00 75388782108876 2025-09-29 194 +195 A 2025-09-19 21:00:31+00 75388782111733 2025-09-29 195 +196 A 2025-09-19 21:00:32+00 75388782114867 2025-09-29 196 +197 A 2025-09-19 21:00:33+00 75388782117420 2025-09-29 197 +198 A 2025-09-19 21:00:34+00 75388782120387 2025-09-29 198 +199 A 2025-09-19 21:00:35+00 75388782123704 2025-09-29 199 +200 A 2025-09-19 21:00:36+00 75388782126121 2025-09-29 200 +201 A 2025-09-19 21:00:37+00 75388782129124 2025-09-29 201 +202 A 2025-09-19 21:00:38+00 75388782131695 2025-09-29 202 +203 A 2025-09-19 21:00:39+00 75388782134347 2025-09-29 203 +204 A 2025-09-19 21:00:40+00 75388782136645 2025-09-29 204 +205 A 2025-09-19 21:00:41+00 75388782139575 2025-09-29 205 +206 A 2025-09-19 21:00:42+00 75388782142254 2025-09-29 206 +207 A 2025-09-19 21:00:42+00 75388782144552 2025-09-29 207 +208 A 2025-09-19 21:00:44+00 75388782147686 2025-09-29 208 +209 A 2025-09-19 21:00:44+00 75388782150221 2025-09-29 209 +210 A 2025-09-19 21:00:45+00 75388782153460 2025-09-29 210 +211 A 2025-09-19 21:00:46+00 75388782155695 2025-09-29 211 +212 A 2025-09-19 21:00:47+00 75388782158274 2025-09-29 212 +213 A 2025-09-19 21:00:48+00 75388782160627 2025-09-29 213 +214 A 2025-09-19 21:00:49+00 75388782163324 2025-09-29 214 +215 A 2025-09-19 21:00:50+00 75388782165999 2025-09-29 215 +216 A 2025-09-19 21:00:51+00 75388782168594 2025-09-29 216 +217 A 2025-09-19 21:00:52+00 75388782171540 2025-09-29 217 +218 A 2025-09-19 21:00:53+00 75388782173995 2025-09-29 218 +219 A 2025-09-19 21:00:54+00 75388782176692 2025-09-29 219 +220 A 2025-09-19 21:00:55+00 75388782179373 2025-09-29 220 +221 A 2025-09-19 21:00:56+00 75388782181975 2025-09-29 221 +222 A 2025-09-19 21:00:57+00 75388782184512 2025-09-29 222 +223 A 2025-09-19 21:00:58+00 75388782187840 2025-09-29 223 +224 A 2025-09-19 21:00:59+00 75388782190692 2025-09-29 224 +225 A 2025-09-19 21:01:00+00 75388782193200 2025-09-29 225 +226 A 2025-09-19 21:01:01+00 75388782195464 2025-09-29 226 +227 A 2025-09-19 21:01:02+00 75388782198145 2025-09-29 227 +228 A 2025-09-19 21:01:03+00 75388782200773 2025-09-29 228 +229 A 2025-09-19 21:01:04+00 75388782203792 2025-09-29 229 +230 A 2025-09-19 21:01:05+00 75388782206326 2025-09-29 230 +231 A 2025-09-19 21:01:06+00 75388782208844 2025-09-29 231 +232 A 2025-09-19 21:01:07+00 75388782211743 2025-09-29 232 +233 A 2025-09-19 21:01:08+00 75388782214157 2025-09-29 233 +234 A 2025-09-19 21:01:09+00 75388782217147 2025-09-29 234 +235 A 2025-09-19 21:01:10+00 75388782220504 2025-09-29 235 +236 A 2025-09-19 21:01:11+00 75388782222988 2025-09-29 236 +237 A 2025-09-19 21:01:12+00 75388782226097 2025-09-29 237 +238 A 2025-09-19 21:01:13+00 75388782228468 2025-09-29 238 +239 A 2025-09-19 21:01:14+00 75388782231383 2025-09-29 239 +240 A 2025-09-19 21:01:15+00 75388782233814 2025-09-29 240 +241 A 2025-09-19 21:01:16+00 75388782236419 2025-09-29 241 +242 A 2025-09-19 21:01:17+00 75388782239098 2025-09-29 242 +243 A 2025-09-19 21:01:18+00 75388782241556 2025-09-29 243 +244 A 2025-09-19 21:01:19+00 75388782243634 2025-09-29 244 +245 A 2025-09-19 21:01:20+00 75388782245518 2025-09-29 245 +246 A 2025-09-19 21:01:21+00 75388782247727 2025-09-29 246 +247 A 2025-09-19 21:01:22+00 75388782249554 2025-09-29 247 +248 A 2025-09-19 21:01:23+00 75388782251818 2025-09-29 248 +249 A 2025-09-19 21:01:24+00 75388782254031 2025-09-29 249 +250 A 2025-09-19 21:01:25+00 75388782256279 2025-09-29 250 +251 A 2025-09-19 21:01:26+00 75388782258535 2025-09-29 251 +252 A 2025-09-19 21:01:27+00 75388782260679 2025-09-29 252 +253 A 2025-09-19 21:01:28+00 75388782263703 2025-09-29 253 +254 A 2025-09-19 21:01:29+00 75388782266104 2025-09-29 254 +255 A 2025-09-19 21:01:30+00 75388782269063 2025-09-29 255 +256 A 2025-09-19 21:01:31+00 75388782272022 2025-09-29 256 +257 A 2025-09-19 21:01:32+00 75388782275038 2025-09-29 257 +258 A 2025-09-19 21:01:33+00 75388782278662 2025-09-29 258 +259 A 2025-09-19 21:01:34+00 75388782282224 2025-09-29 259 +260 A 2025-09-19 21:01:35+00 75388782285036 2025-09-29 260 +261 A 2025-09-19 21:01:36+00 75388782287630 2025-09-29 261 +262 A 2025-09-19 21:01:37+00 75388782290408 2025-09-29 262 +263 A 2025-09-19 21:01:38+00 75388782292722 2025-09-29 263 +264 A 2025-09-19 21:01:39+00 75388782294693 2025-09-29 264 +265 A 2025-09-19 21:01:40+00 75388782296682 2025-09-29 265 +266 A 2025-09-19 21:01:41+00 75388782298859 2025-09-29 266 +267 A 2025-09-19 21:01:42+00 75388782300725 2025-09-29 267 +268 A 2025-09-19 21:01:43+00 75388782303011 2025-09-29 268 +269 A 2025-09-19 21:01:44+00 75388782305246 2025-09-29 269 +270 A 2025-09-19 21:01:44+00 75388782307175 2025-09-29 270 +271 A 2025-09-19 21:01:45+00 75388782309664 2025-09-29 271 +272 A 2025-09-19 21:01:46+00 75388782311839 2025-09-29 272 +273 A 2025-09-19 21:01:47+00 75388782314874 2025-09-29 273 +274 A 2025-09-19 21:01:48+00 75388782317393 2025-09-29 274 +275 A 2025-09-19 21:01:49+00 75388782320307 2025-09-29 275 +276 A 2025-09-19 21:01:51+00 75388782325797 2025-09-29 276 +277 A 2025-09-19 21:01:52+00 75388782328261 2025-09-29 277 +278 A 2025-09-19 21:01:53+00 75388782331348 2025-09-29 278 +279 A 2025-09-19 21:01:54+00 75388782334210 2025-09-29 279 +280 A 2025-09-19 21:01:56+00 75388782337713 2025-09-29 280 +281 A 2025-09-19 21:01:56+00 75388782339773 2025-09-29 281 +282 A 2025-09-19 21:01:57+00 75388782342070 2025-09-29 282 +283 A 2025-09-19 21:01:58+00 75388782344438 2025-09-29 283 +284 A 2025-09-19 21:01:59+00 75388782346558 2025-09-29 284 +285 A 2025-09-19 21:02:00+00 75388782348534 2025-09-29 285 +286 A 2025-09-19 21:02:01+00 75388782350725 2025-09-29 286 +287 A 2025-09-19 21:02:02+00 75388782353388 2025-09-29 287 +288 A 2025-09-19 21:02:03+00 75388782356250 2025-09-29 288 +289 A 2025-09-19 21:02:05+00 75388782359648 2025-09-29 289 +290 A 2025-09-19 21:02:06+00 75388782362665 2025-09-29 290 +291 A 2025-09-19 21:02:07+00 75388782366672 2025-09-29 291 +292 A 2025-09-19 21:02:08+00 75388782370174 2025-09-29 292 +293 A 2025-09-19 21:02:09+00 75388782373648 2025-09-29 293 +294 A 2025-09-19 21:02:10+00 75388782375771 2025-09-29 294 +295 A 2025-09-19 21:02:11+00 75388782378478 2025-09-29 295 +296 A 2025-09-19 21:02:12+00 75388782380732 2025-09-29 296 +297 A 2025-09-19 21:02:13+00 75388782382852 2025-09-29 297 +298 A 2025-09-19 21:02:14+00 75388782385606 2025-09-29 298 +299 A 2025-09-19 21:02:15+00 75388782388638 2025-09-29 299 +300 A 2025-09-19 21:02:16+00 75388782391079 2025-09-29 300 +301 A 2025-09-19 21:02:17+00 75388782393173 2025-09-29 301 +302 A 2025-09-19 21:02:18+00 75388782396105 2025-09-29 302 +303 A 2025-09-19 21:02:19+00 75388782398898 2025-09-29 303 +304 A 2025-09-19 21:02:20+00 75388782401396 2025-09-29 304 +305 A 2025-09-19 21:02:21+00 75388782403458 2025-09-29 305 +306 A 2025-09-19 21:02:22+00 75388782405581 2025-09-29 306 +307 A 2025-09-19 21:02:23+00 75388782407805 2025-09-29 307 +308 A 2025-09-19 21:02:24+00 75388782410144 2025-09-29 308 +309 A 2025-09-19 21:02:25+00 75388782412439 2025-09-29 309 +310 A 2025-09-19 21:02:26+00 75388782414782 2025-09-29 310 +311 A 2025-09-19 21:02:27+00 75388782417227 2025-09-29 311 +312 A 2025-09-19 21:02:28+00 75388782419703 2025-09-29 312 +313 A 2025-09-19 21:02:29+00 75388782421965 2025-09-29 313 +314 A 2025-09-19 21:02:30+00 75388782424002 2025-09-29 314 +315 A 2025-09-19 21:02:31+00 75388782427034 2025-09-29 315 +316 A 2025-09-19 21:02:32+00 75388782430242 2025-09-29 316 +317 A 2025-09-19 21:02:33+00 75388782432731 2025-09-29 317 +318 A 2025-09-19 21:02:34+00 75388782434893 2025-09-29 318 +319 A 2025-09-19 21:02:35+00 75388782436997 2025-09-29 319 +320 A 2025-09-19 21:02:35+00 75388782439050 2025-09-29 320 +321 A 2025-09-19 21:02:36+00 75388782441178 2025-09-29 321 +322 A 2025-09-19 21:02:38+00 75388782444011 2025-09-29 322 +323 A 2025-09-19 21:02:38+00 75388782446157 2025-09-29 323 +324 A 2025-09-19 21:02:39+00 75388782448015 2025-09-29 324 +325 A 2025-09-19 21:02:40+00 75388782450688 2025-09-29 325 +326 A 2025-09-19 21:02:41+00 75388782453018 2025-09-29 326 +327 A 2025-09-19 21:02:42+00 75388782455992 2025-09-29 327 +328 A 2025-09-19 21:02:43+00 75388782458733 2025-09-29 328 +329 A 2025-09-19 21:02:44+00 75388782461056 2025-09-29 329 +330 A 2025-09-19 21:02:45+00 75388782463396 2025-09-29 330 +331 A 2025-09-19 21:02:46+00 75388782465987 2025-09-29 331 +332 A 2025-09-19 21:02:47+00 75388782468126 2025-09-29 332 +333 A 2025-09-19 21:02:48+00 75388782470715 2025-09-29 333 +334 A 2025-09-19 21:02:49+00 75388782473323 2025-09-29 334 +335 A 2025-09-19 21:02:50+00 75388782475383 2025-09-29 335 +336 A 2025-09-19 21:02:51+00 75388782478051 2025-09-29 336 +337 A 2025-09-19 21:02:52+00 75388782479947 2025-09-29 337 +338 A 2025-09-19 21:02:53+00 75388782482024 2025-09-29 338 +339 A 2025-09-19 21:02:53+00 75388782484186 2025-09-29 339 +340 A 2025-09-19 21:02:54+00 75388782486719 2025-09-29 340 +341 A 2025-09-19 21:02:55+00 75388782488708 2025-09-29 341 +342 A 2025-09-19 21:02:56+00 75388782490562 2025-09-29 342 +343 A 2025-09-19 21:02:57+00 75388782493196 2025-09-29 343 +344 A 2025-09-19 21:02:58+00 75388782495216 2025-09-29 344 +345 A 2025-09-19 21:02:59+00 75388782497632 2025-09-29 345 +346 A 2025-09-19 21:03:00+00 75388782499867 2025-09-29 346 +347 A 2025-09-19 21:03:01+00 75388782502030 2025-09-29 347 +348 A 2025-09-19 21:03:02+00 75388782504443 2025-09-29 348 +349 A 2025-09-19 21:03:03+00 75388782506958 2025-09-29 349 +350 A 2025-09-19 21:03:04+00 75388782509579 2025-09-29 350 +351 A 2025-09-19 21:03:05+00 75388782512143 2025-09-29 351 +352 A 2025-09-19 21:03:06+00 75388782514556 2025-09-29 352 +353 A 2025-09-19 21:03:07+00 75388782517106 2025-09-29 353 +354 A 2025-09-19 21:03:08+00 75388782519975 2025-09-29 354 +355 A 2025-09-19 21:03:10+00 75388782522112 2025-09-29 355 +356 A 2025-09-19 21:03:11+00 75388782524818 2025-09-29 356 +357 A 2025-09-19 21:03:11+00 75388782526865 2025-09-29 357 +358 A 2025-09-19 21:03:12+00 75388782529004 2025-09-29 358 +359 A 2025-09-19 21:03:13+00 75388782531397 2025-09-29 359 +360 A 2025-09-19 21:03:14+00 75388782533637 2025-09-29 360 +361 A 2025-09-19 21:03:15+00 75388782536436 2025-09-29 361 +362 A 2025-09-19 21:03:16+00 75388782539219 2025-09-29 362 +363 A 2025-09-19 21:03:17+00 75388782542045 2025-09-29 363 +364 A 2025-09-19 21:03:18+00 75388782544505 2025-09-29 364 +365 A 2025-09-19 21:03:19+00 75388782547671 2025-09-29 365 +366 A 2025-09-19 21:03:20+00 75388782550436 2025-09-29 366 +367 A 2025-09-19 21:03:21+00 75388782552527 2025-09-29 367 +368 A 2025-09-19 21:03:22+00 75388782554516 2025-09-29 368 +369 A 2025-09-19 21:03:23+00 75388782556550 2025-09-29 369 +370 A 2025-09-19 21:03:24+00 75388782559095 2025-09-29 370 +371 A 2025-09-19 21:03:25+00 75388782561948 2025-09-29 371 +372 A 2025-09-19 21:03:26+00 75388782564750 2025-09-29 372 +373 A 2025-09-19 21:03:27+00 75388782566969 2025-09-29 373 +374 A 2025-09-19 21:03:28+00 75388782569302 2025-09-29 374 +375 A 2025-09-19 21:03:28+00 75388782571077 2025-09-29 375 +376 A 2025-09-19 21:03:29+00 75388782573317 2025-09-29 376 +377 A 2025-09-19 21:03:30+00 75388782575660 2025-09-29 377 +378 A 2025-09-19 21:03:31+00 75388782577900 2025-09-29 378 +379 A 2025-09-19 21:03:32+00 75388782580223 2025-09-29 379 +380 A 2025-09-19 21:03:33+00 75388782582403 2025-09-29 380 +381 A 2025-09-19 21:03:34+00 75388782584756 2025-09-29 381 +382 A 2025-09-19 21:03:35+00 75388782587068 2025-09-29 382 +383 A 2025-09-19 21:03:36+00 75388782589442 2025-09-29 383 +384 A 2025-09-19 21:03:37+00 75388782591280 2025-09-29 384 +385 A 2025-09-19 21:03:38+00 75388782593546 2025-09-29 385 +386 A 2025-09-19 21:03:39+00 75388782595682 2025-09-29 386 +387 A 2025-09-19 21:03:40+00 75388782598452 2025-09-29 387 +388 A 2025-09-19 21:03:42+00 75388782602697 2025-09-29 388 +389 A 2025-09-19 21:03:50+00 75388782620777 2025-09-29 389 +390 A 2025-09-19 21:03:51+00 75388782623649 2025-09-29 390 +391 A 2025-09-19 21:03:52+00 75388782626139 2025-09-29 391 +392 A 2025-09-19 21:03:52+00 75388782628542 2025-09-29 392 +393 A 2025-09-19 21:03:54+00 75388782632002 2025-09-29 393 +394 A 2025-09-19 21:03:55+00 75388782634677 2025-09-29 394 +395 A 2025-09-19 21:03:55+00 75388782636580 2025-09-29 395 +396 A 2025-09-19 21:03:56+00 75388782638715 2025-09-29 396 +397 A 2025-09-19 21:03:57+00 75388782641229 2025-09-29 397 +398 A 2025-09-19 21:03:58+00 75388782643234 2025-09-29 398 +399 A 2025-09-19 21:03:59+00 75388782646020 2025-09-29 399 +400 A 2025-09-19 21:04:00+00 75388782648297 2025-09-29 400 +401 A 2025-09-19 21:04:01+00 75388782650417 2025-09-29 401 +402 A 2025-09-19 21:04:02+00 75388782652715 2025-09-29 402 +403 A 2025-09-19 21:04:03+00 75388782655378 2025-09-29 403 +404 A 2025-09-19 21:04:04+00 75388782657370 2025-09-29 404 +405 A 2025-09-19 21:04:05+00 75388782659827 2025-09-29 405 +406 A 2025-09-19 21:04:06+00 75388782661974 2025-09-29 406 +407 A 2025-09-19 21:04:07+00 75388782664435 2025-09-29 407 +408 A 2025-09-19 21:04:08+00 75388782666937 2025-09-29 408 +409 A 2025-09-19 21:04:09+00 75388782669045 2025-09-29 409 +410 A 2025-09-19 21:04:10+00 75388782671443 2025-09-29 410 +411 A 2025-09-19 21:04:11+00 75388782673725 2025-09-29 411 +412 A 2025-09-19 21:04:12+00 75388782675667 2025-09-29 412 +413 A 2025-09-19 21:04:13+00 75388782677758 2025-09-29 413 +414 A 2025-09-19 21:04:14+00 75388782679763 2025-09-29 414 +415 A 2025-09-19 21:04:15+00 75388782682219 2025-09-29 415 +416 A 2025-09-19 21:04:15+00 75388782683985 2025-09-29 416 +417 A 2025-09-19 21:04:16+00 75388782685929 2025-09-29 417 +418 A 2025-09-19 21:04:17+00 75388782688168 2025-09-29 418 +419 A 2025-09-19 21:04:18+00 75388782690079 2025-09-29 419 +420 A 2025-09-19 21:04:19+00 75388782692131 2025-09-29 420 +421 A 2025-09-19 21:04:20+00 75388782694900 2025-09-29 421 +422 A 2025-09-19 21:04:21+00 75388782696779 2025-09-29 422 +423 A 2025-09-19 21:04:22+00 75388782698771 2025-09-29 423 +424 A 2025-09-19 21:04:23+00 75388782701020 2025-09-29 424 +425 A 2025-09-19 21:04:24+00 75388782702830 2025-09-29 425 +426 A 2025-09-19 21:04:25+00 75388782705184 2025-09-29 426 +427 A 2025-09-19 21:04:25+00 75388782707013 2025-09-29 427 +428 A 2025-09-19 21:04:26+00 75388782709133 2025-09-29 428 +429 A 2025-09-19 21:04:27+00 75388782711002 2025-09-29 429 +430 A 2025-09-19 21:04:28+00 75388782713224 2025-09-29 430 +431 A 2025-09-19 21:04:29+00 75388782715019 2025-09-29 431 +432 A 2025-09-19 21:04:30+00 75388782716874 2025-09-29 432 +433 A 2025-09-19 21:04:31+00 75388782718923 2025-09-29 433 +434 A 2025-09-19 21:04:31+00 75388782720876 2025-09-29 434 +435 A 2025-09-19 21:04:32+00 75388782722852 2025-09-29 435 +436 A 2025-09-19 21:04:33+00 75388782725017 2025-09-29 436 +437 A 2025-09-19 21:04:34+00 75388782727491 2025-09-29 437 +438 A 2025-09-19 21:04:35+00 75388782730065 2025-09-29 438 +439 A 2025-09-19 21:04:36+00 75388782732745 2025-09-29 439 +440 A 2025-09-19 21:04:37+00 75388782734967 2025-09-29 440 +441 A 2025-09-19 21:04:38+00 75388782736972 2025-09-29 441 +442 A 2025-09-19 21:04:39+00 75388782739108 2025-09-29 442 +443 A 2025-09-19 21:04:40+00 75388782740932 2025-09-29 443 +444 A 2025-09-19 21:04:41+00 75388782743113 2025-09-29 444 +445 A 2025-09-19 21:04:42+00 75388782745440 2025-09-29 445 +446 A 2025-09-19 21:04:43+00 75388782747824 2025-09-29 446 +447 A 2025-09-19 21:04:43+00 75388782749591 2025-09-29 447 +448 A 2025-09-19 21:04:44+00 75388782751782 2025-09-29 448 +449 A 2025-09-19 21:04:45+00 75388782753475 2025-09-29 449 +450 A 2025-09-19 21:04:46+00 75388782755346 2025-09-29 450 +451 A 2025-09-19 21:04:47+00 75388782757335 2025-09-29 451 +452 A 2025-09-19 21:04:48+00 75388782759162 2025-09-29 452 +453 A 2025-09-19 21:04:49+00 75388782761133 2025-09-29 453 +454 A 2025-09-19 21:04:49+00 75388782763384 2025-09-29 454 +455 A 2025-09-19 21:04:50+00 75388782765519 2025-09-29 455 +456 A 2025-09-19 21:04:51+00 75388782767642 2025-09-29 456 +457 A 2025-09-19 21:04:52+00 75388782770127 2025-09-29 457 +458 A 2025-09-19 21:04:53+00 75388782772307 2025-09-29 458 +459 A 2025-09-19 21:04:54+00 75388782774401 2025-09-29 459 +460 A 2025-09-19 21:04:55+00 75388782776505 2025-09-29 460 +461 A 2025-09-19 21:04:56+00 75388782778358 2025-09-29 461 +462 A 2025-09-19 21:04:57+00 75388782780670 2025-09-29 462 +463 A 2025-09-19 21:04:58+00 75388782783042 2025-09-29 463 +464 A 2025-09-19 21:04:59+00 75388782785235 2025-09-29 464 +465 A 2025-09-19 21:05:00+00 75388782787664 2025-09-29 465 +466 A 2025-09-19 21:05:01+00 75388782790209 2025-09-29 466 +467 A 2025-09-19 21:05:03+00 75388782795479 2025-09-29 467 +468 A 2025-09-19 21:05:05+00 75388782799355 2025-09-29 468 +469 A 2025-09-19 21:05:07+00 75388782804020 2025-09-29 469 +470 A 2025-09-19 21:05:08+00 75388782806022 2025-09-29 470 +471 A 2025-09-19 21:05:09+00 75388782808922 2025-09-29 471 +472 A 2025-09-19 21:05:10+00 75388782811156 2025-09-29 472 +473 A 2025-09-19 21:05:11+00 75388782814044 2025-09-29 473 +474 A 2025-09-19 21:05:12+00 75388782816180 2025-09-29 474 +475 A 2025-09-19 21:05:13+00 75388782818564 2025-09-29 475 +476 A 2025-09-19 21:05:14+00 75388782820519 2025-09-29 476 +477 A 2025-09-19 21:05:15+00 75388782822760 2025-09-29 477 +478 A 2025-09-19 21:05:16+00 75388782825483 2025-09-29 478 +479 A 2025-09-19 21:05:17+00 75388782827723 2025-09-29 479 +480 A 2025-09-19 21:05:17+00 75388782830062 2025-09-29 480 +481 A 2025-09-19 21:05:18+00 75388782832226 2025-09-29 481 +482 A 2025-09-19 21:05:19+00 75388782835389 2025-09-29 482 +483 A 2025-09-19 21:05:20+00 75388782838793 2025-09-29 483 +484 A 2025-09-19 21:05:21+00 75388782841621 2025-09-29 484 +485 A 2025-09-19 21:05:22+00 75388782844255 2025-09-29 485 +486 A 2025-09-19 21:05:23+00 75388782846537 2025-09-29 486 +487 A 2025-09-19 21:05:24+00 75388782849234 2025-09-29 487 +488 A 2025-09-19 21:05:25+00 75388782851365 2025-09-29 488 +489 A 2025-09-19 21:05:26+00 75388782854313 2025-09-29 489 +490 A 2025-09-19 21:05:27+00 75388782856899 2025-09-29 490 +491 A 2025-09-19 21:05:28+00 75388782860773 2025-09-29 491 +492 A 2025-09-19 21:05:29+00 75388782863454 2025-09-29 492 +493 A 2025-09-19 21:05:30+00 75388782865249 2025-09-29 493 +494 A 2025-09-19 21:05:30+00 75388782866826 2025-09-29 494 +495 A 2025-09-19 21:05:31+00 75388782868991 2025-09-29 495 +496 A 2025-09-19 21:05:32+00 75388782871418 2025-09-29 496 +497 A 2025-09-19 21:05:33+00 75388782873630 2025-09-29 497 +498 A 2025-09-19 21:05:34+00 75388782875747 2025-09-29 498 +499 A 2025-09-19 21:05:35+00 75388782878151 2025-09-29 499 +500 A 2025-09-19 21:05:36+00 75388782880622 2025-09-29 500 +501 A 2025-09-19 21:05:37+00 75388782882844 2025-09-29 501 +502 A 2025-09-19 21:05:38+00 75388782885041 2025-09-29 502 +503 A 2025-09-19 21:05:39+00 75388782887234 2025-09-29 503 +504 A 2025-09-19 21:05:40+00 75388782889309 2025-09-29 504 +505 A 2025-09-19 21:05:41+00 75388782891676 2025-09-29 505 +506 A 2025-09-19 21:05:42+00 75388782893754 2025-09-29 506 +507 A 2025-09-19 21:05:43+00 75388782895874 2025-09-29 507 +508 A 2025-09-19 21:05:44+00 75388782898084 2025-09-29 508 +509 A 2025-09-19 21:05:45+00 75388782900549 2025-09-29 509 +510 A 2025-09-19 21:05:45+00 75388782902761 2025-09-29 510 +511 A 2025-09-19 21:05:47+00 75388782905311 2025-09-29 511 +512 A 2025-09-19 21:05:47+00 75388782907122 2025-09-29 512 +513 A 2025-09-19 21:05:48+00 75388782909006 2025-09-29 513 +514 A 2025-09-19 21:05:49+00 75388782911933 2025-09-29 514 +515 A 2025-09-19 21:05:50+00 75388782913993 2025-09-29 515 +516 A 2025-09-19 21:05:51+00 75388782916645 2025-09-29 516 +517 A 2025-09-19 21:05:52+00 75388782918707 2025-09-29 517 +518 A 2025-09-19 21:05:53+00 75388782921135 2025-09-29 518 +519 A 2025-09-19 21:05:54+00 75388782924272 2025-09-29 519 +520 A 2025-09-19 21:05:55+00 75388782927602 2025-09-29 520 +521 A 2025-09-19 21:05:56+00 75388782930132 2025-09-29 521 +522 A 2025-09-19 21:05:57+00 75388782932781 2025-09-29 522 +523 A 2025-09-19 21:05:58+00 75388782935048 2025-09-29 523 +524 A 2025-09-19 21:05:59+00 75388782937566 2025-09-29 524 +525 A 2025-09-19 21:06:00+00 75388782939966 2025-09-29 525 +526 A 2025-09-19 21:06:01+00 75388782941995 2025-09-29 526 +527 A 2025-09-19 21:06:02+00 75388782945415 2025-09-29 527 +528 A 2025-09-19 21:06:50+00 75388783065150 2025-09-29 528 +529 A 2025-09-19 21:06:51+00 75388783067110 2025-09-29 529 +530 A 2025-09-19 21:06:52+00 75388783069138 2025-09-29 530 +531 A 2025-09-19 21:06:53+00 75388783071109 2025-09-29 531 +532 A 2025-09-19 21:06:54+00 75388783073850 2025-09-29 532 +533 A 2025-09-19 21:06:55+00 75388783076175 2025-09-29 533 +534 A 2025-09-19 21:06:56+00 75388783078208 2025-09-29 534 +535 A 2025-09-19 21:06:57+00 75388783080402 2025-09-29 535 +536 A 2025-09-19 21:06:58+00 75388783082742 2025-09-29 536 +537 A 2025-09-19 21:06:59+00 75388783085465 2025-09-29 537 +538 A 2025-09-19 21:06:59+00 75388783088264 2025-09-29 538 +539 A 2025-09-19 21:07:00+00 75388783091383 2025-09-29 539 +540 A 2025-09-19 21:07:01+00 75388783093814 2025-09-29 540 +541 A 2025-09-19 21:07:02+00 75388783096299 2025-09-29 541 +542 A 2025-09-19 21:07:03+00 75388783098704 2025-09-29 542 +543 A 2025-09-19 21:07:04+00 75388783101095 2025-09-29 543 +544 A 2025-09-19 21:07:05+00 75388783103526 2025-09-29 544 +545 A 2025-09-19 21:07:06+00 75388783105633 2025-09-29 545 +546 A 2025-09-19 21:07:07+00 75388783108301 2025-09-29 546 +547 A 2025-09-19 21:07:08+00 75388783110563 2025-09-29 547 +548 A 2025-09-19 21:07:09+00 75388783112450 2025-09-29 548 +549 A 2025-09-19 21:07:10+00 75388783114512 2025-09-29 549 +550 A 2025-09-19 21:07:11+00 75388783116912 2025-09-29 550 +551 A 2025-09-19 21:07:12+00 75388783118854 2025-09-29 551 +552 A 2025-09-19 21:07:13+00 75388783120778 2025-09-29 552 +553 A 2025-09-19 21:07:14+00 75388783122958 2025-09-29 553 +554 A 2025-09-19 21:07:15+00 75388783125244 2025-09-29 554 +555 A 2025-09-19 21:07:16+00 75388783127115 2025-09-29 555 +556 A 2025-09-19 21:07:16+00 75388783129104 2025-09-29 556 +557 A 2025-09-19 21:07:17+00 75388783131002 2025-09-29 557 +558 A 2025-09-19 21:07:18+00 75388783133122 2025-09-29 558 +559 A 2025-09-19 21:07:19+00 75388783135373 2025-09-29 559 +560 A 2025-09-19 21:07:20+00 75388783137980 2025-09-29 560 +561 A 2025-09-19 21:07:21+00 75388783140143 2025-09-29 561 +562 A 2025-09-19 21:07:22+00 75388783141979 2025-09-29 562 +563 A 2025-09-19 21:07:23+00 75388783144312 2025-09-29 563 +564 A 2025-09-19 21:07:24+00 75388783145986 2025-09-29 564 +565 A 2025-09-19 21:07:24+00 75388783148078 2025-09-29 565 +566 A 2025-09-19 21:07:25+00 75388783150052 2025-09-29 566 +567 A 2025-09-19 21:07:26+00 75388783152258 2025-09-29 567 +568 A 2025-09-19 21:07:27+00 75388783154292 2025-09-29 568 +569 A 2025-09-19 21:07:28+00 75388783156223 2025-09-29 569 +570 A 2025-09-19 21:07:29+00 75388783158416 2025-09-29 570 +571 A 2025-09-19 21:07:30+00 75388783160694 2025-09-29 571 +572 A 2025-09-19 21:07:31+00 75388783163008 2025-09-29 572 +573 A 2025-09-19 21:07:32+00 75388783166289 2025-09-29 573 +574 A 2025-09-19 21:07:33+00 75388783169148 2025-09-29 574 +575 A 2025-09-19 21:07:34+00 75388783171999 2025-09-29 575 +576 A 2025-09-19 21:07:35+00 75388783174329 2025-09-29 576 +577 A 2025-09-19 21:07:35+00 75388783176350 2025-09-29 577 +578 A 2025-09-19 21:07:37+00 75388783179484 2025-09-29 578 +579 A 2025-09-19 21:07:38+00 75388783182252 2025-09-29 579 +580 A 2025-09-19 21:07:40+00 75388783186654 2025-09-29 580 +581 A 2025-09-19 21:07:41+00 75388783189275 2025-09-29 581 +582 A 2025-09-19 21:07:42+00 75388783191173 2025-09-29 582 +583 A 2025-09-19 21:07:43+00 75388783193599 2025-09-29 583 +584 A 2025-09-19 21:07:44+00 75388783196343 2025-09-29 584 +585 A 2025-09-19 21:07:45+00 75388783198476 2025-09-29 585 +586 A 2025-09-19 21:07:46+00 75388783200800 2025-09-29 586 +587 A 2025-09-19 21:07:46+00 75388783202917 2025-09-29 587 +588 A 2025-09-19 21:07:47+00 75388783204697 2025-09-29 588 +589 A 2025-09-19 21:07:48+00 75388783206762 2025-09-29 589 +590 A 2025-09-19 21:07:49+00 75388783209074 2025-09-29 590 +591 A 2025-09-19 21:07:50+00 75388783211105 2025-09-29 591 +592 A 2025-09-19 21:07:51+00 75388783213241 2025-09-29 592 +593 A 2025-09-19 21:07:52+00 75388783215594 2025-09-29 593 +594 A 2025-09-19 21:07:53+00 75388783217436 2025-09-29 594 +595 A 2025-09-19 21:07:54+00 75388783219967 2025-09-29 595 +596 A 2025-09-19 21:07:55+00 75388783221881 2025-09-29 596 +597 A 2025-09-19 21:07:56+00 75388783224559 2025-09-29 597 +598 A 2025-09-19 21:07:57+00 75388783227489 2025-09-29 598 +599 A 2025-09-19 21:07:58+00 75388783230728 2025-09-29 599 +600 A 2025-09-19 21:08:00+00 75388783235090 2025-09-29 600 +601 A 2025-09-19 21:08:01+00 75388783238108 2025-09-29 601 +602 A 2025-09-19 21:08:03+00 75388783240608 2025-09-29 602 +603 A 2025-09-19 21:08:04+00 75388783242715 2025-09-29 603 +604 A 2025-09-19 21:08:05+00 75388783245467 2025-09-29 604 +605 A 2025-09-19 21:08:05+00 75388783248300 2025-09-29 605 +606 A 2025-09-19 21:08:06+00 75388783251534 2025-09-29 606 +607 A 2025-09-19 21:08:07+00 75388783254184 2025-09-29 607 +608 A 2025-09-19 21:08:08+00 75388783256495 2025-09-29 608 +609 A 2025-09-19 21:08:09+00 75388783258751 2025-09-29 609 +610 A 2025-09-19 21:08:10+00 75388783261074 2025-09-29 610 +611 A 2025-09-19 21:08:11+00 75388783262999 2025-09-29 611 +612 A 2025-09-19 21:08:12+00 75388783265492 2025-09-29 612 +613 A 2025-09-19 21:08:13+00 75388783268013 2025-09-29 613 +614 A 2025-09-19 21:08:14+00 75388783269454 2025-09-29 614 +615 A 2025-09-19 21:08:15+00 75388783271792 2025-09-29 615 +616 A 2025-09-19 21:08:16+00 75388783273972 2025-09-29 616 +617 A 2025-09-19 21:08:17+00 75388783275827 2025-09-29 617 +618 A 2025-09-19 21:08:17+00 75388783277890 2025-09-29 618 +619 A 2025-09-19 21:08:18+00 75388783280139 2025-09-29 619 +620 A 2025-09-19 21:08:19+00 75388783282042 2025-09-29 620 +621 A 2025-09-19 21:08:20+00 75388783284395 2025-09-29 621 +622 A 2025-09-19 21:08:21+00 75388783286737 2025-09-29 622 +623 A 2025-09-19 21:08:22+00 75388783288713 2025-09-29 623 +624 A 2025-09-19 21:08:23+00 75388783290700 2025-09-29 624 +625 A 2025-09-19 21:08:24+00 75388783292477 2025-09-29 625 +626 A 2025-09-19 21:08:24+00 75388783294542 2025-09-29 626 +627 A 2025-09-19 21:08:25+00 75388783296308 2025-09-29 627 +628 A 2025-09-19 21:08:26+00 75388783298795 2025-09-29 628 +629 A 2025-09-19 21:08:27+00 75388783301133 2025-09-29 629 +630 A 2025-09-19 21:08:28+00 75388783302809 2025-09-29 630 +631 A 2025-09-19 21:08:29+00 75388783305048 2025-09-29 631 +632 A 2025-09-19 21:08:30+00 75388783307079 2025-09-29 632 +633 A 2025-09-19 21:08:31+00 75388783309704 2025-09-29 633 +634 A 2025-09-19 21:08:32+00 75388783311584 2025-09-29 634 +635 A 2025-09-19 21:08:33+00 75388783313808 2025-09-29 635 +636 A 2025-09-19 21:08:34+00 75388783315800 2025-09-29 636 +637 A 2025-09-19 21:08:34+00 75388783317962 2025-09-29 637 +638 A 2025-09-19 21:08:35+00 75388783319922 2025-09-29 638 +639 A 2025-09-19 21:08:36+00 75388783321731 2025-09-29 639 +640 A 2025-09-19 21:08:37+00 75388783324218 2025-09-29 640 +641 A 2025-09-19 21:08:38+00 75388783327457 2025-09-29 641 +642 A 2025-09-19 21:08:39+00 75388783330487 2025-09-29 642 +643 A 2025-09-19 21:08:40+00 75388783332523 2025-09-29 643 +644 A 2025-09-19 21:08:41+00 75388783334601 2025-09-29 644 +645 A 2025-09-19 21:08:41+00 75388783336263 2025-09-29 645 +646 A 2025-09-19 21:08:42+00 75388783338192 2025-09-29 646 +647 A 2025-09-19 21:08:43+00 75388783339708 2025-09-29 647 +648 A 2025-09-19 21:08:44+00 75388783341664 2025-09-29 648 +649 A 2025-09-19 21:08:45+00 75388783343784 2025-09-29 649 +650 A 2025-09-19 21:08:45+00 75388783345715 2025-09-29 650 +651 A 2025-09-19 21:08:46+00 75388783347424 2025-09-29 651 +652 A 2025-09-19 21:08:47+00 75388783349188 2025-09-29 652 +653 A 2025-09-19 21:08:48+00 75388783351235 2025-09-29 653 +654 A 2025-09-19 21:08:49+00 75388783353106 2025-09-29 654 +655 A 2025-09-19 21:08:50+00 75388783355255 2025-09-29 655 +656 A 2025-09-19 21:08:50+00 75388783356934 2025-09-29 656 +657 A 2025-09-19 21:08:51+00 75388783358758 2025-09-29 657 +658 A 2025-09-19 21:08:52+00 75388783360745 2025-09-29 658 +659 A 2025-09-19 21:08:53+00 75388783362276 2025-09-29 659 +660 A 2025-09-19 21:08:54+00 75388783364058 2025-09-29 660 +661 A 2025-09-19 21:08:54+00 75388783365779 2025-09-29 661 +662 A 2025-09-19 21:08:55+00 75388783367768 2025-09-29 662 +663 A 2025-09-19 21:08:56+00 75388783369451 2025-09-29 663 +664 A 2025-09-19 21:08:57+00 75388783371639 2025-09-29 664 +665 A 2025-09-19 21:08:58+00 75388783373539 2025-09-29 665 +666 A 2025-09-19 21:08:58+00 75388783375442 2025-09-29 666 +667 A 2025-09-19 21:08:59+00 75388783377711 2025-09-29 667 +668 A 2025-09-19 21:09:00+00 75388783380021 2025-09-29 668 +669 A 2025-09-19 21:09:01+00 75388783382803 2025-09-29 669 +670 A 2025-09-19 21:09:03+00 75388783386616 2025-09-29 670 +671 A 2025-09-19 21:09:04+00 75388783389973 2025-09-29 671 +672 A 2025-09-19 21:09:05+00 75388783392898 2025-09-29 672 +673 A 2025-09-19 21:09:07+00 75388783395977 2025-09-29 673 +674 A 2025-09-19 21:09:08+00 75388783398470 2025-09-29 674 +675 A 2025-09-19 21:09:09+00 75388783400948 2025-09-29 675 +676 A 2025-09-19 21:09:10+00 75388783403467 2025-09-29 676 +677 A 2025-09-19 21:09:11+00 75388783405749 2025-09-29 677 +678 A 2025-09-19 21:09:12+00 75388783407987 2025-09-29 678 +679 A 2025-09-19 21:09:13+00 75388783409989 2025-09-29 679 +680 A 2025-09-19 21:09:14+00 75388783412540 2025-09-29 680 +681 A 2025-09-19 21:10:37+00 75388783613650 2025-09-29 681 +682 A 2025-09-19 21:10:39+00 75388783616344 2025-09-29 682 +683 A 2025-09-19 21:10:40+00 75388783618540 2025-09-29 683 +684 A 2025-09-19 21:10:40+00 75388783620537 2025-09-29 684 +685 A 2025-09-19 21:10:41+00 75388783622791 2025-09-29 685 +686 A 2025-09-19 21:10:42+00 75388783624599 2025-09-29 686 +687 A 2025-09-19 21:10:43+00 75388783626868 2025-09-29 687 +688 A 2025-09-19 21:10:44+00 75388783628742 2025-09-29 688 +689 A 2025-09-19 21:10:45+00 75388783631227 2025-09-29 689 +690 A 2025-09-19 21:10:46+00 75388783634217 2025-09-29 690 +691 A 2025-09-19 21:10:47+00 75388783636662 2025-09-29 691 +692 A 2025-09-19 21:10:48+00 75388783638588 2025-09-29 692 +693 A 2025-09-19 21:10:49+00 75388783641076 2025-09-29 693 +694 A 2025-09-19 21:10:50+00 75388783645101 2025-09-29 694 +695 A 2025-09-19 21:10:51+00 75388783648719 2025-09-29 695 +696 A 2025-09-19 21:10:53+00 75388783653270 2025-09-29 696 +697 A 2025-09-19 21:10:54+00 75388783656231 2025-09-29 697 +698 A 2025-09-19 21:10:55+00 75388783659381 2025-09-29 698 +699 A 2025-09-19 21:11:48+00 75388783787199 2025-09-29 699 +700 A 2025-09-19 21:11:49+00 75388783789073 2025-09-29 700 +701 A 2025-09-19 21:11:50+00 75388783790881 2025-09-29 701 +702 A 2025-09-19 21:11:51+00 75388783792854 2025-09-29 702 +703 A 2025-09-19 21:11:52+00 75388783794678 2025-09-29 703 +704 A 2025-09-19 21:11:53+00 75388783796730 2025-09-29 704 +705 A 2025-09-19 21:11:53+00 75388783798732 2025-09-29 705 +706 A 2025-09-19 21:11:54+00 75388783802053 2025-09-29 706 +707 A 2025-09-19 21:11:55+00 75388783805116 2025-09-29 707 +708 A 2025-09-19 21:11:56+00 75388783807498 2025-09-29 708 +709 A 2025-09-19 21:11:57+00 75388783809607 2025-09-29 709 +710 A 2025-09-19 21:11:58+00 75388783811636 2025-09-29 710 +711 A 2025-09-19 21:11:59+00 75388783813638 2025-09-29 711 +712 A 2025-09-19 21:12:00+00 75388783815627 2025-09-29 712 +713 A 2025-09-19 21:12:00+00 75388783817470 2025-09-29 713 +714 A 2025-09-19 21:12:01+00 75388783819998 2025-09-29 714 +715 A 2025-09-19 21:12:02+00 75388783822148 2025-09-29 715 +716 A 2025-09-19 21:12:03+00 75388783824446 2025-09-29 716 +717 A 2025-09-19 21:12:04+00 75388783826540 2025-09-29 717 +718 A 2025-09-19 21:12:05+00 75388783828982 2025-09-29 718 +719 A 2025-09-19 21:12:06+00 75388783831085 2025-09-29 719 +720 A 2025-09-19 21:12:07+00 75388783833029 2025-09-29 720 +721 A 2025-09-19 21:12:08+00 75388783835209 2025-09-29 721 +722 A 2025-09-19 21:12:09+00 75388783837170 2025-09-29 722 +723 A 2025-09-19 21:12:10+00 75388783839334 2025-09-29 723 +724 A 2025-09-19 21:12:10+00 75388783841198 2025-09-29 724 +725 A 2025-09-19 21:12:11+00 75388783843454 2025-09-29 725 +726 A 2025-09-19 21:12:12+00 75388783845074 2025-09-29 726 +727 A 2025-09-19 21:12:13+00 75388783846999 2025-09-29 727 +728 A 2025-09-19 21:12:14+00 75388783848755 2025-09-29 728 +729 A 2025-09-19 21:12:15+00 75388783850682 2025-09-29 729 +730 A 2025-09-19 21:12:16+00 75388783852980 2025-09-29 730 +731 A 2025-09-19 21:12:16+00 75388783855276 2025-09-29 731 +732 A 2025-09-19 21:12:17+00 75388783858457 2025-09-29 732 +733 A 2025-09-19 21:12:18+00 75388783860813 2025-09-29 733 +734 A 2025-09-19 21:12:19+00 75388783863272 2025-09-29 734 +735 A 2025-09-19 21:12:20+00 75388783864951 2025-09-29 735 +736 A 2025-09-19 21:12:21+00 75388783867085 2025-09-29 736 +737 A 2025-09-19 21:12:22+00 75388783869147 2025-09-29 737 +738 A 2025-09-19 21:12:22+00 75388783870853 2025-09-29 738 +739 A 2025-09-19 21:12:23+00 75388783872931 2025-09-29 739 +740 A 2025-09-19 21:12:24+00 75388783875329 2025-09-29 740 +741 A 2025-09-19 21:12:25+00 75388783877350 2025-09-29 741 +742 A 2025-09-19 21:12:26+00 75388783879292 2025-09-29 742 +743 A 2025-09-19 21:12:27+00 75388783882086 2025-09-29 743 +744 A 2025-09-19 21:12:28+00 75388783884740 2025-09-29 744 +745 A 2025-09-19 21:12:28+00 75388783887625 2025-09-29 745 +746 A 2025-09-19 21:12:29+00 75388783889494 2025-09-29 746 +747 A 2025-09-19 21:12:30+00 75388783891863 2025-09-29 747 +748 A 2025-09-19 21:12:31+00 75388783894324 2025-09-29 748 +749 A 2025-09-19 21:12:32+00 75388783896046 2025-09-29 749 +750 A 2025-09-19 21:12:33+00 75388783898239 2025-09-29 750 +751 A 2025-09-19 21:12:33+00 75388783900587 2025-09-29 751 +752 A 2025-09-19 21:12:34+00 75388783902607 2025-09-29 752 +753 A 2025-09-19 21:12:35+00 75388783904612 2025-09-29 753 +754 A 2025-09-19 21:12:36+00 75388783906672 2025-09-29 754 +755 A 2025-09-19 21:12:37+00 75388783908789 2025-09-29 755 +756 A 2025-09-19 21:12:38+00 75388783910425 2025-09-29 756 +757 A 2025-09-19 21:12:38+00 75388783912396 2025-09-29 757 +758 A 2025-09-19 21:12:39+00 75388783914076 2025-09-29 758 +759 A 2025-09-19 21:12:40+00 75388783916214 2025-09-29 759 +760 A 2025-09-19 21:12:41+00 75388783918070 2025-09-29 760 +761 A 2025-09-19 21:12:42+00 75388783920101 2025-09-29 761 +762 A 2025-09-19 21:12:42+00 75388783922027 2025-09-29 762 +763 A 2025-09-19 21:12:43+00 75388783924147 2025-09-29 763 +764 A 2025-09-19 21:12:44+00 75388783926021 2025-09-29 764 +765 A 2025-09-19 21:12:45+00 75388783927917 2025-09-29 765 +766 A 2025-09-19 21:12:46+00 75388783930196 2025-09-29 766 +767 A 2025-09-19 21:12:47+00 75388783931702 2025-09-29 767 +768 A 2025-09-19 21:12:48+00 75388783933628 2025-09-29 768 +769 A 2025-09-19 21:12:48+00 75388783935633 2025-09-29 769 +770 A 2025-09-19 21:12:49+00 75388783937622 2025-09-29 770 +771 A 2025-09-19 21:12:50+00 75388783939475 2025-09-29 771 +772 A 2025-09-19 21:12:51+00 75388783941548 2025-09-29 772 +773 A 2025-09-19 21:12:52+00 75388783943553 2025-09-29 773 +774 A 2025-09-19 21:12:53+00 75388783945806 2025-09-29 774 +775 A 2025-09-19 21:12:54+00 75388783947840 2025-09-29 775 +776 A 2025-09-19 21:12:54+00 75388783949973 2025-09-29 776 +777 A 2025-09-19 21:12:55+00 75388783951871 2025-09-29 777 +778 A 2025-09-19 21:12:56+00 75388783954816 2025-09-29 778 +779 A 2025-09-19 21:12:57+00 75388783958158 2025-09-29 779 +780 A 2025-09-19 21:12:58+00 75388783961002 2025-09-29 780 +781 A 2025-09-19 21:12:59+00 75388783963313 2025-09-29 781 +782 A 2025-09-19 21:13:00+00 75388783965179 2025-09-29 782 +783 A 2025-09-19 21:13:00+00 75388783967260 2025-09-29 783 +784 A 2025-09-19 21:13:01+00 75388783969657 2025-09-29 784 +785 A 2025-09-19 21:13:02+00 75388783972043 2025-09-29 785 +786 A 2025-09-19 21:13:03+00 75388783974309 2025-09-29 786 +787 A 2025-09-19 21:13:04+00 75388783976534 2025-09-29 787 +788 A 2025-09-19 21:13:05+00 75388783978743 2025-09-29 788 +789 A 2025-09-19 21:13:06+00 75388783980803 2025-09-29 789 +790 A 2025-09-19 21:13:07+00 75388783983217 2025-09-29 790 +791 A 2025-09-19 21:13:08+00 75388783986587 2025-09-29 791 +792 A 2025-09-19 21:13:09+00 75388783989886 2025-09-29 792 +793 A 2025-09-19 21:13:10+00 75388783993008 2025-09-29 793 +794 A 2025-09-19 21:13:11+00 75388783995013 2025-09-29 794 +795 A 2025-09-19 21:13:12+00 75388783997117 2025-09-29 795 +796 A 2025-09-19 21:13:13+00 75388783999253 2025-09-29 796 +797 A 2025-09-19 21:13:14+00 75388784001905 2025-09-29 797 +798 A 2025-09-19 21:13:15+00 75388784003850 2025-09-29 798 +799 A 2025-09-19 21:13:16+00 75388784005938 2025-09-29 799 +800 A 2025-09-19 21:13:17+00 75388784007901 2025-09-29 800 +801 A 2025-09-19 21:13:17+00 75388784009665 2025-09-29 801 +802 A 2025-09-19 21:13:18+00 75388784011725 2025-09-29 802 +803 A 2025-09-19 21:13:19+00 75388784013641 2025-09-29 803 +804 A 2025-09-19 21:13:20+00 75388784016217 2025-09-29 804 +805 A 2025-09-19 21:13:21+00 75388784018057 2025-09-29 805 +806 A 2025-09-19 21:13:22+00 75388784020382 2025-09-29 806 +807 A 2025-09-19 21:13:22+00 75388784022499 2025-09-29 807 +808 A 2025-09-19 21:13:24+00 75388784024946 2025-09-29 808 +809 A 2025-09-19 21:13:24+00 75388784026888 2025-09-29 809 +810 A 2025-09-19 21:13:25+00 75388784028822 2025-09-29 810 +811 A 2025-09-19 21:13:26+00 75388784031629 2025-09-29 811 +812 A 2025-09-19 21:13:27+00 75388784034680 2025-09-29 812 +813 A 2025-09-19 21:13:28+00 75388784037701 2025-09-29 813 +814 A 2025-09-19 21:13:29+00 75388784040299 2025-09-29 814 +815 A 2025-09-19 21:13:30+00 75388784042495 2025-09-29 815 +816 A 2025-09-19 21:13:31+00 75388784044308 2025-09-29 816 +817 A 2025-09-19 21:13:32+00 75388784046871 2025-09-29 817 +818 A 2025-09-19 21:13:32+00 75388784048755 2025-09-29 818 +819 A 2025-09-19 21:13:33+00 75388784050860 2025-09-29 819 +820 A 2025-09-19 21:13:34+00 75388784053232 2025-09-29 820 +821 A 2025-09-19 21:13:35+00 75388784054733 2025-09-29 821 +822 A 2025-09-19 21:13:36+00 75388784056837 2025-09-29 822 +823 A 2025-09-19 21:13:37+00 75388784058517 2025-09-29 823 +824 A 2025-09-19 21:13:38+00 75388784060842 2025-09-29 824 +825 A 2025-09-19 21:13:38+00 75388784062682 2025-09-29 825 +826 A 2025-09-19 21:13:39+00 75388784065570 2025-09-29 826 +827 A 2025-09-19 21:13:40+00 75388784067514 2025-09-29 827 +828 A 2025-09-19 21:13:41+00 75388784069710 2025-09-29 828 +829 A 2025-09-19 21:13:42+00 75388784072046 2025-09-29 829 +830 A 2025-09-19 21:13:43+00 75388784074051 2025-09-29 830 +831 A 2025-09-19 21:13:44+00 75388784076082 2025-09-29 831 +832 A 2025-09-19 21:13:44+00 75388784078186 2025-09-29 832 +833 A 2025-09-19 21:13:45+00 75388784080246 2025-09-29 833 +834 A 2025-09-19 21:13:46+00 75388784082219 2025-09-29 834 +835 A 2025-09-19 21:13:47+00 75388784084122 2025-09-29 835 +836 A 2025-09-19 21:13:48+00 75388784086108 2025-09-29 836 +837 A 2025-09-19 21:13:48+00 75388784087989 2025-09-29 837 +838 A 2025-09-19 21:13:49+00 75388784089952 2025-09-29 838 +839 A 2025-09-19 21:13:50+00 75388784091981 2025-09-29 839 +840 A 2025-09-19 21:13:51+00 75388784094366 2025-09-29 840 +841 A 2025-09-19 21:13:53+00 75388784098522 2025-09-29 841 +842 A 2025-09-19 21:14:04+00 75388784125240 2025-09-29 842 +843 A 2025-09-19 21:14:05+00 75388784127682 2025-09-29 843 +844 A 2025-09-19 21:14:06+00 75388784130141 2025-09-29 844 +845 A 2025-09-19 21:14:07+00 75388784132038 2025-09-29 845 +846 A 2025-09-19 21:14:07+00 75388784134441 2025-09-29 846 +847 A 2025-09-19 21:14:08+00 75388784137915 2025-09-29 847 +848 A 2025-09-19 21:14:09+00 75388784140770 2025-09-29 848 +849 A 2025-09-19 21:14:10+00 75388784143024 2025-09-29 849 +850 A 2025-09-19 21:14:11+00 75388784144821 2025-09-29 850 +851 A 2025-09-19 21:14:12+00 75388784146970 2025-09-29 851 +852 A 2025-09-19 21:14:13+00 75388784148838 2025-09-29 852 +853 A 2025-09-19 21:14:14+00 75388784151368 2025-09-29 853 +854 A 2025-09-19 21:14:15+00 75388784153179 2025-09-29 854 +855 A 2025-09-19 21:14:16+00 75388784156392 2025-09-29 855 +856 A 2025-09-19 21:14:17+00 75388784159366 2025-09-29 856 +857 A 2025-09-19 21:14:17+00 75388784162121 2025-09-29 857 +858 A 2025-09-19 21:14:18+00 75388784164254 2025-09-29 858 +859 A 2025-09-19 21:14:19+00 75388784166285 2025-09-29 859 +860 A 2025-09-19 21:14:20+00 75388784169848 2025-09-29 860 +861 A 2025-09-19 21:14:21+00 75388784172598 2025-09-29 861 +862 A 2025-09-19 21:14:22+00 75388784175431 2025-09-29 862 +863 A 2025-09-19 21:14:23+00 75388784177666 2025-09-29 863 +864 A 2025-09-19 21:14:24+00 75388784179919 2025-09-29 864 +865 A 2025-09-19 21:14:24+00 75388784182790 2025-09-29 865 +866 A 2025-09-19 21:14:25+00 75388784185913 2025-09-29 866 +867 A 2025-09-19 21:14:26+00 75388784187928 2025-09-29 867 +868 A 2025-09-19 21:14:27+00 75388784190107 2025-09-29 868 +869 A 2025-09-19 21:14:28+00 75388784192387 2025-09-29 869 +870 A 2025-09-19 21:14:29+00 75388784194525 2025-09-29 870 +871 A 2025-09-19 21:14:30+00 75388784197015 2025-09-29 871 +872 A 2025-09-19 21:14:31+00 75388784199062 2025-09-29 872 +873 A 2025-09-19 21:14:32+00 75388784200628 2025-09-29 873 +874 A 2025-09-19 21:14:32+00 75388784202866 2025-09-29 874 +875 A 2025-09-19 21:14:33+00 75388784205018 2025-09-29 875 +876 A 2025-09-19 21:14:34+00 75388784207125 2025-09-29 876 +877 A 2025-09-19 21:14:35+00 75388784208668 2025-09-29 877 +878 A 2025-09-19 21:14:36+00 75388784211096 2025-09-29 878 +879 A 2025-09-19 21:14:37+00 75388784213470 2025-09-29 879 +880 A 2025-09-19 21:14:38+00 75388784215532 2025-09-29 880 +881 A 2025-09-19 21:14:39+00 75388784217636 2025-09-29 881 +882 A 2025-09-19 21:14:40+00 75388784219489 2025-09-29 882 +883 A 2025-09-19 21:14:41+00 75388784221887 2025-09-29 883 +884 A 2025-09-19 21:14:41+00 75388784223758 2025-09-29 884 +885 A 2025-09-19 21:14:42+00 75388784225454 2025-09-29 885 +886 A 2025-09-19 21:14:43+00 75388784227558 2025-09-29 886 +887 A 2025-09-19 21:14:44+00 75388784229903 2025-09-29 887 +888 A 2025-09-19 21:14:45+00 75388784232166 2025-09-29 888 +889 A 2025-09-19 21:15:06+00 75388784281681 2025-09-29 889 +890 A 2025-09-19 21:15:07+00 75388784284875 2025-09-29 890 +891 A 2025-09-19 21:15:08+00 75388784288691 2025-09-29 891 +892 A 2025-09-19 21:15:10+00 75388784292211 2025-09-29 892 +893 A 2025-09-19 21:15:11+00 75388784294917 2025-09-29 893 +894 A 2025-09-19 21:15:12+00 75388784297601 2025-09-29 894 +895 A 2025-09-19 21:15:13+00 75388784299967 2025-09-29 895 +896 A 2025-09-19 21:15:14+00 75388784302952 2025-09-29 896 +897 A 2025-09-19 21:15:15+00 75388784305146 2025-09-29 897 +898 A 2025-09-19 21:15:16+00 75388784307091 2025-09-29 898 +899 A 2025-09-19 21:15:16+00 75388784308770 2025-09-29 899 +900 A 2025-09-19 21:15:17+00 75388784310610 2025-09-29 900 +901 A 2025-09-19 21:15:18+00 75388784313626 2025-09-29 901 +902 A 2025-09-19 21:15:19+00 75388784316807 2025-09-29 902 +903 A 2025-09-19 21:15:20+00 75388784319986 2025-09-29 903 +904 A 2025-09-19 21:15:21+00 75388784322089 2025-09-29 904 +905 A 2025-09-19 21:15:22+00 75388784324358 2025-09-29 905 +906 A 2025-09-19 21:15:23+00 75388784326216 2025-09-29 906 +907 A 2025-09-19 21:15:24+00 75388784328894 2025-09-29 907 +908 A 2025-09-19 21:15:25+00 75388784330909 2025-09-29 908 +909 A 2025-09-19 21:15:25+00 75388784332663 2025-09-29 909 +910 A 2025-09-19 21:15:26+00 75388784334694 2025-09-29 910 +911 A 2025-09-19 21:15:27+00 75388784336345 2025-09-29 911 +912 A 2025-09-19 21:15:28+00 75388784338596 2025-09-29 912 +913 A 2025-09-19 21:15:29+00 75388784340630 2025-09-29 913 +914 A 2025-09-19 21:15:29+00 75388784342661 2025-09-29 914 +915 A 2025-09-19 21:15:30+00 75388784344532 2025-09-29 915 +916 A 2025-09-19 21:15:31+00 75388784346754 2025-09-29 916 +917 A 2025-09-19 21:15:32+00 75388784348667 2025-09-29 917 +918 A 2025-09-19 21:15:33+00 75388784350578 2025-09-29 918 +919 A 2025-09-19 21:15:34+00 75388784352978 2025-09-29 919 +920 A 2025-09-19 21:15:34+00 75388784354645 2025-09-29 920 +921 A 2025-09-19 21:15:35+00 75388784356809 2025-09-29 921 +922 A 2025-09-19 21:15:36+00 75388784358636 2025-09-29 922 +923 A 2025-09-19 21:15:37+00 75388784360445 2025-09-29 923 +924 A 2025-09-19 21:15:38+00 75388784362201 2025-09-29 924 +925 A 2025-09-19 21:15:39+00 75388784364245 2025-09-29 925 +926 A 2025-09-19 21:15:39+00 75388784366310 2025-09-29 926 +927 A 2025-09-19 21:15:40+00 75388784368618 2025-09-29 927 +928 A 2025-09-19 21:15:41+00 75388784370854 2025-09-29 928 +929 A 2025-09-19 21:15:42+00 75388784373302 2025-09-29 929 +930 A 2025-09-19 21:15:43+00 75388784375537 2025-09-29 930 +931 A 2025-09-19 21:15:44+00 75388784377393 2025-09-29 931 +932 A 2025-09-19 21:15:45+00 75388784379395 2025-09-29 932 +933 A 2025-09-19 21:15:45+00 75388784381235 2025-09-29 933 +934 A 2025-09-19 21:15:46+00 75388784383240 2025-09-29 934 +935 A 2025-09-19 21:15:47+00 75388784385328 2025-09-29 935 +936 A 2025-09-19 21:15:48+00 75388784387095 2025-09-29 936 +937 A 2025-09-19 21:15:49+00 75388784389717 2025-09-29 937 +938 A 2025-09-19 21:15:50+00 75388784392276 2025-09-29 938 +939 A 2025-09-19 21:15:50+00 75388784395017 2025-09-29 939 +940 A 2025-09-19 21:15:51+00 75388784396738 2025-09-29 940 +941 A 2025-09-19 21:15:52+00 75388784398832 2025-09-29 941 +942 A 2025-09-19 21:15:53+00 75388784400740 2025-09-29 942 +943 A 2025-09-19 21:15:54+00 75388784402768 2025-09-29 943 +944 A 2025-09-19 21:15:54+00 75388784404480 2025-09-29 944 +945 A 2025-09-19 21:15:55+00 75388784406233 2025-09-29 945 +946 A 2025-09-19 21:15:56+00 75388784408235 2025-09-29 946 +947 A 2025-09-19 21:15:57+00 75388784410222 2025-09-29 947 +948 A 2025-09-19 21:15:58+00 75388784412062 2025-09-29 948 +949 A 2025-09-19 21:15:58+00 75388784413830 2025-09-29 949 +950 A 2025-09-19 21:15:59+00 75388784416244 2025-09-29 950 +951 A 2025-09-19 21:16:00+00 75388784418068 2025-09-29 951 +952 A 2025-09-19 21:16:01+00 75388784420097 2025-09-29 952 +953 A 2025-09-19 21:16:02+00 75388784422159 2025-09-29 953 +954 A 2025-09-19 21:16:03+00 75388784424339 2025-09-29 954 +955 A 2025-09-19 21:16:04+00 75388784426611 2025-09-29 955 +956 A 2025-09-19 21:16:05+00 75388784428799 2025-09-29 956 +957 A 2025-09-19 21:16:05+00 75388784430875 2025-09-29 957 +958 A 2025-09-19 21:16:06+00 75388784432657 2025-09-29 958 +959 A 2025-09-19 21:16:07+00 75388784434544 2025-09-29 959 +960 A 2025-09-19 21:16:08+00 75388784436664 2025-09-29 960 +961 A 2025-09-19 21:16:09+00 75388784439730 2025-09-29 961 +\. + + +-- +-- Data for Name: afip_receiptvalidation_observations; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_receiptvalidation_observations (id, receiptvalidation_id, observation_id) FROM stdin; +\. + + +-- +-- Data for Name: afip_tax; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_tax (id, description, base_amount, aliquot, amount, receipt_id, tax_type_id) FROM stdin; +\. + + +-- +-- Data for Name: afip_taxpayer; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_taxpayer (id, name, key, certificate, cuit, is_sandboxed, certificate_expiration, active_since, logo) FROM stdin; +1 Amar MAscotas S.A. afip/taxpayers/keys/amarmascotas.key afip/taxpayers/certs/AmarMascotasBackend_d378c0611273efd.crt 30717420698 f 2027-09-08 14:40:24+00 2021-11-25 +\. + + +-- +-- Data for Name: afip_taxtype; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_taxtype (id, code, description, valid_from, valid_to) FROM stdin; +1 1 Impuestos nacionales 2010-09-17 \N +2 2 Impuestos provinciales 2010-09-17 \N +3 3 Impuestos municipales 2010-09-17 \N +4 4 Impuestos Internos 2010-09-17 \N +5 99 Otro 2010-09-17 \N +6 5 IIBB 2017-07-19 \N +7 6 Percepción de IVA 2017-07-19 \N +8 7 Percepción de IIBB 2017-07-19 \N +9 8 Percepciones por Impuestos Municipales 2017-07-19 \N +10 9 Otras Percepciones 2017-07-19 \N +11 13 Percepción de IVA a no Categorizado 2017-07-19 \N +\. + + +-- +-- Data for Name: afip_vat; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_vat (id, base_amount, amount, receipt_id, vat_type_id) FROM stdin; +1 8595.04 1804.96 1 3 +2 23140.50 4859.50 2 3 +3 24793.39 5206.61 3 3 +4 40462.81 8497.19 4 3 +5 40462.81 8497.19 5 3 +6 9090.91 1909.09 6 3 +7 17685.95 3714.05 7 3 +8 24793.39 5206.61 8 3 +9 10743.80 2256.20 9 3 +10 24793.39 5206.61 10 3 +11 9090.91 1909.09 11 3 +12 25123.97 5276.03 12 3 +13 9090.91 1909.09 13 3 +14 10743.80 2256.20 14 3 +15 1074.38 225.62 15 3 +16 9090.91 1909.09 16 3 +17 51157.02 10742.98 17 3 +18 30330.58 6369.42 18 3 +19 90909.09 19090.91 19 3 +20 24793.39 5206.61 20 3 +21 9090.91 1909.09 21 3 +22 9090.91 1909.09 22 3 +23 9090.91 1909.09 23 3 +24 10909.09 2290.91 24 3 +25 10743.80 2256.20 25 3 +26 11322.31 2377.69 26 3 +27 9090.91 1909.09 27 3 +28 22727.27 4772.73 28 3 +29 9090.91 1909.09 29 3 +30 9090.91 1909.09 30 3 +31 17272.73 3627.27 31 3 +32 17768.60 3731.40 32 3 +33 9090.91 1909.09 33 3 +34 9090.91 1909.09 34 3 +35 22314.05 4685.95 35 3 +36 9090.91 1909.09 36 3 +37 9090.91 1909.09 37 3 +38 9090.91 1909.09 38 3 +39 8264.46 1735.54 39 3 +40 9090.91 1909.09 40 3 +41 9090.91 1909.09 41 3 +42 11322.31 2377.69 42 3 +43 244628.10 51371.90 43 3 +44 11157.02 2342.98 44 3 +45 13388.43 2811.57 45 3 +46 9090.91 1909.09 46 3 +47 10743.80 2256.20 47 3 +48 10743.80 2256.20 48 3 +49 8264.46 1735.54 49 3 +50 9090.91 1909.09 50 3 +51 9917.36 2082.64 51 3 +52 9090.91 1909.09 52 3 +53 21074.38 4425.62 53 3 +54 9090.91 1909.09 54 3 +55 9090.91 1909.09 55 3 +56 9090.91 1909.09 56 3 +57 177603.31 37296.69 57 3 +58 22727.27 4772.73 58 3 +59 118181.82 24818.18 59 3 +60 23140.50 4859.50 60 3 +61 8264.46 1735.54 61 3 +62 9090.91 1909.09 62 3 +63 9090.91 1909.09 63 3 +64 10578.51 2221.49 64 3 +65 9090.91 1909.09 65 3 +66 74380.17 15619.83 66 3 +67 9090.91 1909.09 67 3 +68 24793.39 5206.61 68 3 +69 20000.00 4200.00 69 3 +70 10743.80 2256.20 70 3 +71 9090.91 1909.09 71 3 +72 4049.59 850.41 72 3 +73 1818.18 381.82 73 3 +74 10909.09 2290.91 74 3 +75 24793.39 5206.61 75 3 +76 24793.39 5206.61 76 3 +77 24793.39 5206.61 77 3 +78 9090.91 1909.09 78 3 +79 9090.91 1909.09 79 3 +80 9090.91 1909.09 80 3 +81 17520.66 3679.34 81 3 +82 22314.05 4685.95 82 3 +83 70413.22 14786.78 83 3 +84 24793.39 5206.61 84 3 +85 37933.88 7966.12 85 3 +86 9090.91 1909.09 86 3 +87 8264.46 1735.54 87 3 +88 22644.63 4755.37 88 3 +89 44132.23 9267.77 89 3 +90 9090.91 1909.09 90 3 +91 9917.36 2082.64 91 3 +92 17768.60 3731.40 92 3 +93 9090.91 1909.09 93 3 +94 8099.17 1700.83 94 3 +95 9090.91 1909.09 95 3 +96 24793.39 5206.61 96 3 +97 9090.91 1909.09 97 3 +98 9090.91 1909.09 98 3 +99 9090.91 1909.09 99 3 +100 9090.91 1909.09 100 3 +101 17768.60 3731.40 101 3 +102 9090.91 1909.09 102 3 +103 36057.85 7572.15 103 3 +104 9090.91 1909.09 104 3 +105 9090.91 1909.09 105 3 +106 24793.39 5206.61 106 3 +107 9090.91 1909.09 107 3 +108 24793.39 5206.61 108 3 +109 9090.91 1909.09 109 3 +110 23347.11 4902.89 110 3 +111 9090.91 1909.09 111 3 +112 9090.91 1909.09 112 3 +113 22644.63 4755.37 113 3 +114 61983.47 13016.53 114 3 +115 10743.80 2256.20 115 3 +116 7603.31 1596.69 116 3 +117 9090.91 1909.09 117 3 +118 9090.91 1909.09 118 3 +119 9090.91 1909.09 119 3 +120 12.40 2.60 120 3 +121 15702.48 3297.52 121 3 +122 9090.91 1909.09 122 3 +123 3305.79 694.21 123 3 +124 12396.69 2603.31 124 3 +125 12396.69 2603.31 125 3 +126 10578.51 2221.49 126 3 +127 23140.50 4859.50 127 3 +128 24793.39 5206.61 128 3 +129 21487.60 4512.40 129 3 +130 42975.21 9024.79 130 3 +131 6363.64 1336.36 131 3 +132 9090.91 1909.09 132 3 +133 20000.00 4200.00 133 3 +134 9090.91 1909.09 134 3 +135 9090.91 1909.09 135 3 +136 16528.93 3471.07 136 3 +137 9090.91 1909.09 137 3 +138 9090.91 1909.09 138 3 +139 9090.91 1909.09 139 3 +140 10743.80 2256.20 140 3 +141 9090.91 1909.09 141 3 +142 12396.69 2603.31 142 3 +143 58727.27 12332.73 143 3 +144 10743.80 2256.20 144 3 +145 9090.91 1909.09 145 3 +146 9090.91 1909.09 146 3 +147 9090.91 1909.09 147 3 +148 9090.91 1909.09 148 3 +149 9090.91 1909.09 149 3 +150 8264.46 1735.54 150 3 +151 8264.46 1735.54 151 3 +152 9090.91 1909.09 152 3 +153 21900.83 4599.17 153 3 +154 9090.91 1909.09 154 3 +155 8264.46 1735.54 155 3 +156 8264.46 1735.54 156 3 +157 9090.91 1909.09 157 3 +158 39421.49 8278.51 158 3 +159 7851.24 1648.76 159 3 +160 100413.22 21086.78 160 3 +161 6363.64 1336.36 161 3 +162 40909.09 8590.91 162 3 +163 36115.70 7584.30 163 3 +164 15702.48 3297.52 164 3 +165 7851.24 1648.76 165 3 +166 7851.24 1648.76 166 3 +167 7851.24 1648.76 167 3 +168 58264.46 12235.54 168 3 +169 22727.27 4772.73 169 3 +170 8264.46 1735.54 170 3 +171 59917.36 12582.64 171 3 +172 19421.49 4078.51 172 3 +173 12396.69 2603.31 173 3 +174 7851.24 1648.76 174 3 +175 10743.80 2256.20 175 3 +176 10743.80 2256.20 176 3 +177 8264.46 1735.54 177 3 +178 8264.46 1735.54 178 3 +179 8264.46 1735.54 179 3 +180 8264.46 1735.54 180 3 +181 19834.71 4165.29 181 3 +182 8264.46 1735.54 182 3 +183 22727.27 4772.73 183 3 +184 21900.83 4599.17 184 3 +185 15702.48 3297.52 185 3 +186 64462.81 13537.19 186 3 +187 10743.80 2256.20 187 3 +188 10743.80 2256.20 188 3 +189 10743.80 2256.20 189 3 +190 11363.64 2386.36 190 3 +191 10743.80 2256.20 191 3 +192 7851.24 1648.76 192 3 +193 8264.46 1735.54 193 3 +194 15702.48 3297.52 194 3 +195 15702.48 3297.52 195 3 +196 14049.59 2950.41 196 3 +197 10082.64 2117.36 197 3 +198 22727.27 4772.73 198 3 +199 9752.07 2047.93 199 3 +200 9752.07 2047.93 200 3 +201 9752.07 2047.93 201 3 +202 8264.46 1735.54 202 3 +203 12396.69 2603.31 203 3 +204 8264.46 1735.54 204 3 +205 44380.17 9319.83 205 3 +206 7851.24 1648.76 206 3 +207 7851.24 1648.76 207 3 +208 4380.17 919.83 208 3 +209 8264.46 1735.54 209 3 +210 8264.46 1735.54 210 3 +211 74380.17 15619.83 211 3 +212 14049.59 2950.41 212 3 +213 10743.80 2256.20 213 3 +214 8264.46 1735.54 214 3 +215 7851.24 1648.76 215 3 +216 10743.80 2256.20 216 3 +217 39834.71 8365.29 217 3 +218 4380.17 919.83 218 3 +219 23553.72 4946.28 219 3 +220 8264.46 1735.54 220 3 +221 7851.24 1648.76 221 3 +222 33471.07 7028.93 222 3 +223 7851.24 1648.76 223 3 +224 16694.21 3505.79 224 3 +225 10743.80 2256.20 225 3 +226 10743.80 2256.20 226 3 +227 8264.46 1735.54 227 3 +228 19504.13 4095.87 228 3 +229 10743.80 2256.20 229 3 +230 15702.48 3297.52 230 3 +231 22727.27 4772.73 231 3 +232 8264.46 1735.54 232 3 +233 8264.46 1735.54 233 3 +234 8264.46 1735.54 234 3 +235 10743.80 2256.20 235 3 +236 8264.46 1735.54 236 3 +237 7851.24 1648.76 237 3 +238 8264.46 1735.54 238 3 +239 26033.06 5466.94 239 3 +240 16528.93 3471.07 240 3 +241 8264.46 1735.54 241 3 +242 4132.23 867.77 242 3 +243 8264.46 1735.54 243 3 +244 7851.24 1648.76 244 3 +245 7851.24 1648.76 245 3 +246 8264.46 1735.54 246 3 +247 10743.80 2256.20 247 3 +248 54297.52 11402.48 248 3 +249 35123.97 7376.03 249 3 +250 44628.10 9371.90 250 3 +251 120661.16 25338.84 251 3 +252 9504.13 1995.87 252 3 +253 10743.80 2256.20 253 3 +254 8264.46 1735.54 254 3 +255 42479.34 8920.66 255 3 +256 50413.22 10586.78 256 3 +257 10743.80 2256.20 257 3 +258 8264.46 1735.54 258 3 +259 8264.46 1735.54 259 3 +260 8264.46 1735.54 260 3 +261 8264.46 1735.54 261 3 +262 8264.46 1735.54 262 3 +263 8264.46 1735.54 263 3 +264 8264.46 1735.54 264 3 +265 8264.46 1735.54 265 3 +266 4132.23 867.77 266 3 +267 13636.36 2863.64 267 3 +268 15702.48 3297.52 268 3 +269 8264.46 1735.54 269 3 +270 12396.69 2603.31 270 3 +271 53719.01 11280.99 271 3 +272 29338.84 6161.16 272 3 +273 8264.46 1735.54 273 3 +274 15702.48 3297.52 274 3 +275 10743.80 2256.20 275 3 +276 9669.42 2030.58 276 3 +277 7851.24 1648.76 277 3 +278 15702.48 3297.52 278 3 +279 7851.24 1648.76 279 3 +280 169471.07 35588.93 280 3 +281 9669.42 2030.58 281 3 +282 7851.24 1648.76 282 3 +283 10743.80 2256.20 283 3 +284 10743.80 2256.20 284 3 +285 8264.46 1735.54 285 3 +286 33471.07 7028.93 286 3 +287 9669.42 2030.58 287 3 +288 59504.13 12495.87 288 3 +289 8264.46 1735.54 289 3 +290 8264.46 1735.54 290 3 +291 45561.98 9568.02 291 3 +292 141900.83 29799.17 292 3 +293 10743.80 2256.20 293 3 +294 56198.35 11801.65 294 3 +295 22727.27 4772.73 295 3 +296 15702.48 3297.52 296 3 +297 7851.24 1648.76 297 3 +298 8264.46 1735.54 298 3 +299 15702.48 3297.52 299 3 +300 7851.24 1648.76 300 3 +301 8264.46 1735.54 301 3 +302 4380.17 919.83 302 3 +303 8264.46 1735.54 303 3 +304 8264.46 1735.54 304 3 +305 24545.45 5154.55 305 3 +306 7851.24 1648.76 306 3 +307 78512.40 16487.60 307 3 +308 9669.42 2030.58 308 3 +309 8264.46 1735.54 309 3 +310 15702.48 3297.52 310 3 +311 22727.27 4772.73 311 3 +312 4380.17 919.83 312 3 +313 8264.46 1735.54 313 3 +314 7851.24 1648.76 314 3 +315 7851.24 1648.76 315 3 +316 8264.46 1735.54 316 3 +317 20454.55 4295.45 317 3 +318 57851.24 12148.76 318 3 +319 8264.46 1735.54 319 3 +320 8264.46 1735.54 320 3 +321 8264.46 1735.54 321 3 +322 4380.17 919.83 322 3 +323 6363.64 1336.36 323 3 +324 29256.20 6143.80 324 3 +325 24173.55 5076.45 325 3 +326 11611.57 2438.43 326 3 +327 10743.80 2256.20 327 3 +328 8264.46 1735.54 328 3 +329 9752.07 2047.93 329 3 +330 7851.24 1648.76 330 3 +331 17768.60 3731.40 331 3 +332 8264.46 1735.54 332 3 +333 8264.46 1735.54 333 3 +334 8264.46 1735.54 334 3 +335 21074.38 4425.62 335 3 +336 8264.46 1735.54 336 3 +337 8264.46 1735.54 337 3 +338 8264.46 1735.54 338 3 +339 20661.16 4338.84 339 3 +340 8264.46 1735.54 340 3 +341 10743.80 2256.20 341 3 +342 4727.27 992.73 342 3 +343 123471.07 25928.93 343 3 +344 8264.46 1735.54 344 3 +345 4132.23 867.77 345 3 +346 22727.27 4772.73 346 3 +347 8264.46 1735.54 347 3 +348 39669.42 8330.58 348 3 +349 14049.59 2950.41 349 3 +350 110900.83 23289.17 350 3 +351 15702.48 3297.52 351 3 +352 8264.46 1735.54 352 3 +353 22727.27 4772.73 353 3 +354 15702.48 3297.52 354 3 +355 53223.14 11176.86 355 3 +356 10743.80 2256.20 356 3 +357 8264.46 1735.54 357 3 +358 6363.64 1336.36 358 3 +359 5123.97 1076.03 359 3 +360 5785.12 1214.88 360 3 +361 19421.49 4078.51 361 3 +362 4710.74 989.26 362 3 +363 50413.22 10586.78 363 3 +364 12396.69 2603.31 364 3 +365 20454.55 4295.45 365 3 +366 20454.55 4295.45 366 3 +367 8264.46 1735.54 367 3 +368 14049.59 2950.41 368 3 +369 9752.07 2047.93 369 3 +370 7851.24 1648.76 370 3 +371 4380.17 919.83 371 3 +372 241074.38 50625.62 372 3 +373 40495.87 8504.13 373 3 +374 8264.46 1735.54 374 3 +375 8264.46 1735.54 375 3 +376 8264.46 1735.54 376 3 +377 9090.91 1909.09 377 3 +378 21487.60 4512.40 378 3 +379 413.22 86.78 379 3 +380 20247.93 4252.07 380 3 +381 9900.83 2079.17 381 3 +382 34876.03 7323.97 382 3 +383 10247.93 2152.07 383 3 +384 9669.42 2030.58 384 3 +385 7851.24 1648.76 385 3 +386 4132.23 867.77 386 3 +387 5123.97 1076.03 387 3 +388 9917.36 2082.64 388 3 +389 9917.36 2082.64 389 3 +390 6363.64 1336.36 390 3 +391 30867.77 6482.23 391 3 +392 22727.27 4772.73 392 3 +393 8264.46 1735.54 393 3 +394 8264.46 1735.54 394 3 +395 19214.88 4035.12 395 3 +396 8264.46 1735.54 396 3 +397 4132.23 867.77 397 3 +398 4132.23 867.77 398 3 +399 4132.23 867.77 399 3 +400 4132.23 867.77 400 3 +401 8264.46 1735.54 401 3 +402 22727.27 4772.73 402 3 +403 48057.85 10092.15 403 3 +404 8264.46 1735.54 404 3 +405 8264.46 1735.54 405 3 +406 22727.27 4772.73 406 3 +407 7851.24 1648.76 407 3 +408 8264.46 1735.54 408 3 +409 5206.61 1093.39 409 3 +410 17520.66 3679.34 410 3 +411 7851.24 1648.76 411 3 +412 14049.59 2950.41 412 3 +413 8264.46 1735.54 413 3 +414 22727.27 4772.73 414 3 +415 28099.17 5900.83 415 3 +416 7851.24 1648.76 416 3 +417 24793.39 5206.61 417 3 +418 8264.46 1735.54 418 3 +419 7851.24 1648.76 419 3 +420 9669.42 2030.58 420 3 +421 22727.27 4772.73 421 3 +422 101652.89 21347.11 422 3 +423 7851.24 1648.76 423 3 +424 8760.33 1839.67 424 3 +425 8264.46 1735.54 425 3 +426 9917.36 2082.64 426 3 +427 19338.84 4061.16 427 3 +428 8264.46 1735.54 428 3 +429 22727.27 4772.73 429 3 +430 7851.24 1648.76 430 3 +431 22727.27 4772.73 431 3 +432 20454.55 4295.45 432 3 +433 8264.46 1735.54 433 3 +434 50000.00 10500.00 434 3 +435 10743.80 2256.20 435 3 +436 10743.80 2256.20 436 3 +437 8264.46 1735.54 437 3 +438 22727.27 4772.73 438 3 +439 7851.24 1648.76 439 3 +440 36446.28 7653.72 440 3 +441 9752.07 2047.93 441 3 +442 15702.48 3297.52 442 3 +443 7851.24 1648.76 443 3 +444 10743.80 2256.20 444 3 +445 7851.24 1648.76 445 3 +446 34545.45 7254.55 446 3 +447 4132.23 867.77 447 3 +448 18471.07 3878.93 448 3 +449 8264.46 1735.54 449 3 +450 41322.31 8677.69 450 3 +451 19504.13 4095.87 451 3 +452 8264.46 1735.54 452 3 +453 8264.46 1735.54 453 3 +454 22727.27 4772.73 454 3 +455 19421.49 4078.51 455 3 +456 10743.80 2256.20 456 3 +457 24545.45 5154.55 457 3 +458 20578.51 4321.49 458 3 +459 8264.46 1735.54 459 3 +460 19504.13 4095.87 460 3 +461 15702.48 3297.52 461 3 +462 8264.46 1735.54 462 3 +463 15702.48 3297.52 463 3 +464 7851.24 1648.76 464 3 +465 39421.49 8278.51 465 3 +466 11570.25 2429.75 466 3 +467 8719.01 1830.99 467 3 +468 9917.36 2082.64 468 3 +469 10743.80 2256.20 469 3 +470 7851.24 1648.76 470 3 +471 73677.69 15472.31 471 3 +472 9504.13 1995.87 472 3 +473 3826.45 803.55 473 3 +474 21867.77 4592.23 474 3 +475 4380.17 919.83 475 3 +476 19504.13 4095.87 476 3 +477 4793.39 1006.61 477 3 +478 15702.48 3297.52 478 3 +479 4380.17 919.83 479 3 +480 8264.46 1735.54 480 3 +481 4545.45 954.55 481 3 +482 20454.55 4295.45 482 3 +483 12396.69 2603.31 483 3 +484 12396.69 2603.31 484 3 +485 8264.46 1735.54 485 3 +486 97190.08 20409.92 486 3 +487 49198.35 10331.65 487 3 +488 9669.42 2030.58 488 3 +489 8264.46 1735.54 489 3 +490 9917.36 2082.64 490 3 +491 9917.36 2082.64 491 3 +492 9917.36 2082.64 492 3 +493 7851.24 1648.76 493 3 +494 7851.24 1648.76 494 3 +495 23553.72 4946.28 495 3 +496 9917.36 2082.64 496 3 +497 7851.24 1648.76 497 3 +498 9917.36 2082.64 498 3 +499 22727.27 4772.73 499 3 +500 8264.46 1735.54 500 3 +501 9917.36 2082.64 501 3 +502 8264.46 1735.54 502 3 +503 9917.36 2082.64 503 3 +504 12396.69 2603.31 504 3 +505 9917.36 2082.64 505 3 +506 8264.46 1735.54 506 3 +507 22727.27 4772.73 507 3 +508 69090.91 14509.09 508 3 +509 22727.27 4772.73 509 3 +510 3826.45 803.55 510 3 +511 36942.15 7757.85 511 3 +512 47685.95 10014.05 512 3 +513 8264.46 1735.54 513 3 +514 20454.55 4295.45 514 3 +515 7851.24 1648.76 515 3 +516 8264.46 1735.54 516 3 +517 19504.13 4095.87 517 3 +518 15867.77 3332.23 518 3 +519 38016.53 7983.47 519 3 +520 8264.46 1735.54 520 3 +521 8264.46 1735.54 521 3 +522 22727.27 4772.73 522 3 +523 8264.46 1735.54 523 3 +524 8264.46 1735.54 524 3 +525 5314.05 1115.95 525 3 +526 15702.48 3297.52 526 3 +527 8264.46 1735.54 527 3 +528 4380.17 919.83 528 3 +529 8264.46 1735.54 529 3 +530 8264.46 1735.54 530 3 +531 8264.46 1735.54 531 3 +532 15702.48 3297.52 532 3 +533 9669.42 2030.58 533 3 +534 37190.08 7809.92 534 3 +535 19834.71 4165.29 535 3 +536 22727.27 4772.73 536 3 +537 15702.48 3297.52 537 3 +538 21983.47 4616.53 538 3 +539 9752.07 2047.93 539 3 +540 14049.59 2950.41 540 3 +541 36942.15 7757.85 541 3 +542 8264.46 1735.54 542 3 +543 46859.50 9840.50 543 3 +544 99586.78 20913.22 544 3 +545 9090.91 1909.09 545 3 +546 9917.36 2082.64 546 3 +547 9917.36 2082.64 547 3 +548 8264.46 1735.54 548 3 +549 9917.36 2082.64 549 3 +550 6363.64 1336.36 550 3 +551 8264.46 1735.54 551 3 +552 21900.83 4599.17 552 3 +553 22727.27 4772.73 553 3 +554 49090.91 10309.09 554 3 +555 9669.42 2030.58 555 3 +556 6363.64 1336.36 556 3 +557 9669.42 2030.58 557 3 +558 54958.68 11541.32 558 3 +559 7851.24 1648.76 559 3 +560 7851.24 1648.76 560 3 +561 7851.24 1648.76 561 3 +562 41074.38 8625.62 562 3 +563 68677.69 14422.31 563 3 +564 18595.04 3904.96 564 3 +565 7851.24 1648.76 565 3 +566 24793.39 5206.61 566 3 +567 8264.46 1735.54 567 3 +568 7851.24 1648.76 568 3 +569 8264.46 1735.54 569 3 +570 9917.36 2082.64 570 3 +571 22727.27 4772.73 571 3 +572 4380.17 919.83 572 3 +573 22727.27 4772.73 573 3 +574 14049.59 2950.41 574 3 +575 9917.36 2082.64 575 3 +576 9917.36 2082.64 576 3 +577 19338.84 4061.16 577 3 +578 7851.24 1648.76 578 3 +579 8264.46 1735.54 579 3 +580 9917.36 2082.64 580 3 +581 8264.46 1735.54 581 3 +582 8264.46 1735.54 582 3 +583 20165.29 4234.71 583 3 +584 8264.46 1735.54 584 3 +585 19834.71 4165.29 585 3 +586 8264.46 1735.54 586 3 +587 15454.55 3245.45 587 3 +588 12396.69 2603.31 588 3 +589 12396.69 2603.31 589 3 +590 15702.48 3297.52 590 3 +591 9917.36 2082.64 591 3 +592 37190.08 7809.92 592 3 +593 15702.48 3297.52 593 3 +594 8264.46 1735.54 594 3 +595 8264.46 1735.54 595 3 +596 8264.46 1735.54 596 3 +597 4214.88 885.12 597 3 +598 22727.27 4772.73 598 3 +599 9917.36 2082.64 599 3 +600 12396.69 2603.31 600 3 +601 8264.46 1735.54 601 3 +602 9917.36 2082.64 602 3 +603 7851.24 1648.76 603 3 +604 9669.42 2030.58 604 3 +605 9917.36 2082.64 605 3 +606 8264.46 1735.54 606 3 +607 9669.42 2030.58 607 3 +608 60330.58 12669.42 608 3 +609 6363.64 1336.36 609 3 +610 8264.46 1735.54 610 3 +611 19504.13 4095.87 611 3 +612 22727.27 4772.73 612 3 +613 22727.27 4772.73 613 3 +614 24173.55 5076.45 614 3 +615 28561.98 5998.02 615 3 +616 20661.16 4338.84 616 3 +617 34710.74 7289.26 617 3 +618 19834.71 4165.29 618 3 +619 4380.17 919.83 619 3 +620 7851.24 1648.76 620 3 +621 8264.46 1735.54 621 3 +622 8264.46 1735.54 622 3 +623 14049.59 2950.41 623 3 +624 8264.46 1735.54 624 3 +625 7851.24 1648.76 625 3 +626 7851.24 1648.76 626 3 +627 9917.36 2082.64 627 3 +628 19008.26 3991.74 628 3 +629 8264.46 1735.54 629 3 +630 8264.46 1735.54 630 3 +631 24793.39 5206.61 631 3 +632 7851.24 1648.76 632 3 +633 14132.23 2967.77 633 3 +634 58099.17 12200.83 634 3 +635 12396.69 2603.31 635 3 +636 9669.42 2030.58 636 3 +637 7851.24 1648.76 637 3 +638 7851.24 1648.76 638 3 +639 9504.13 1995.87 639 3 +640 9504.13 1995.87 640 3 +641 15702.48 3297.52 641 3 +642 8264.46 1735.54 642 3 +643 8264.46 1735.54 643 3 +644 8264.46 1735.54 644 3 +645 15702.48 3297.52 645 3 +646 9917.36 2082.64 646 3 +647 9917.36 2082.64 647 3 +648 9917.36 2082.64 648 3 +649 21735.54 4564.46 649 3 +650 9752.07 2047.93 650 3 +651 8264.46 1735.54 651 3 +652 15702.48 3297.52 652 3 +653 15702.48 3297.52 653 3 +654 8264.46 1735.54 654 3 +655 7851.24 1648.76 655 3 +656 22727.27 4772.73 656 3 +657 8264.46 1735.54 657 3 +658 15702.48 3297.52 658 3 +659 9090.91 1909.09 659 3 +660 7851.24 1648.76 660 3 +661 11322.31 2377.69 661 3 +662 34710.74 7289.26 662 3 +663 8264.46 1735.54 663 3 +664 4132.23 867.77 664 3 +665 7851.24 1648.76 665 3 +666 7851.24 1648.76 666 3 +667 8264.46 1735.54 667 3 +668 19834.71 4165.29 668 3 +669 39033.06 8196.94 669 3 +670 16528.93 3471.07 670 3 +671 11280.99 2369.01 671 3 +672 9917.36 2082.64 672 3 +673 9917.36 2082.64 673 3 +674 9917.36 2082.64 674 3 +675 8264.46 1735.54 675 3 +676 8264.46 1735.54 676 3 +677 19834.71 4165.29 677 3 +678 9917.36 2082.64 678 3 +679 7851.24 1648.76 679 3 +680 27272.73 5727.27 680 3 +681 17520.66 3679.34 681 3 +682 7851.24 1648.76 682 3 +683 15702.48 3297.52 683 3 +684 9917.36 2082.64 684 3 +685 22727.27 4772.73 685 3 +686 8264.46 1735.54 686 3 +687 8264.46 1735.54 687 3 +688 8264.46 1735.54 688 3 +689 24793.39 5206.61 689 3 +690 8264.46 1735.54 690 3 +691 7851.24 1648.76 691 3 +692 9917.36 2082.64 692 3 +693 8264.46 1735.54 693 3 +694 8264.46 1735.54 694 3 +695 8264.46 1735.54 695 3 +696 8264.46 1735.54 696 3 +697 16528.93 3471.07 697 3 +698 15702.48 3297.52 698 3 +699 8264.46 1735.54 699 3 +700 8264.46 1735.54 700 3 +701 8264.46 1735.54 701 3 +702 8264.46 1735.54 702 3 +703 8264.46 1735.54 703 3 +704 59504.13 12495.87 704 3 +705 8264.46 1735.54 705 3 +706 28925.62 6074.38 706 3 +707 22727.27 4772.73 707 3 +708 7851.24 1648.76 708 3 +709 43801.65 9198.35 709 3 +710 7851.24 1648.76 710 3 +711 8264.46 1735.54 711 3 +712 8264.46 1735.54 712 3 +713 8264.46 1735.54 713 3 +714 12396.69 2603.31 714 3 +715 7851.24 1648.76 715 3 +716 8264.46 1735.54 716 3 +717 8264.46 1735.54 717 3 +718 8264.46 1735.54 718 3 +719 7851.24 1648.76 719 3 +720 8264.46 1735.54 720 3 +721 8264.46 1735.54 721 3 +722 14049.59 2950.41 722 3 +723 21818.18 4581.82 723 3 +724 13140.50 2759.50 724 3 +725 7851.24 1648.76 725 3 +726 165371.90 34728.10 726 3 +727 8264.46 1735.54 727 3 +728 8181.82 1718.18 728 3 +729 8264.46 1735.54 729 3 +730 22727.27 4772.73 730 3 +731 7851.24 1648.76 731 3 +732 9917.36 2082.64 732 3 +733 8760.33 1839.67 733 3 +734 7851.24 1648.76 734 3 +735 16528.93 3471.07 735 3 +736 37190.08 7809.92 736 3 +737 9669.42 2030.58 737 3 +738 8264.46 1735.54 738 3 +739 7851.24 1648.76 739 3 +740 7851.24 1648.76 740 3 +741 7851.24 1648.76 741 3 +742 22727.27 4772.73 742 3 +743 19338.84 4061.16 743 3 +744 6363.64 1336.36 744 3 +745 8264.46 1735.54 745 3 +746 9504.13 1995.87 746 3 +747 9917.36 2082.64 747 3 +748 22727.27 4772.73 748 3 +749 8264.46 1735.54 749 3 +750 4793.39 1006.61 750 3 +751 119008.26 24991.74 751 3 +752 15702.48 3297.52 752 3 +753 21074.38 4425.62 753 3 +754 7851.24 1648.76 754 3 +755 22727.27 4772.73 755 3 +756 37190.08 7809.92 756 3 +757 19338.84 4061.16 757 3 +758 8264.46 1735.54 758 3 +759 14049.59 2950.41 759 3 +760 8264.46 1735.54 760 3 +761 8264.46 1735.54 761 3 +762 9917.36 2082.64 762 3 +763 9917.36 2082.64 763 3 +764 8264.46 1735.54 764 3 +765 15702.48 3297.52 765 3 +766 3305.79 694.21 766 3 +767 8264.46 1735.54 767 3 +768 12396.69 2603.31 768 3 +769 7851.24 1648.76 769 3 +770 7851.24 1648.76 770 3 +771 9504.13 1995.87 771 3 +772 9917.36 2082.64 772 3 +773 9917.36 2082.64 773 3 +774 8264.46 1735.54 774 3 +775 15702.48 3297.52 775 3 +776 7851.24 1648.76 776 3 +777 41322.31 8677.69 777 3 +778 8264.46 1735.54 778 3 +779 7851.24 1648.76 779 3 +780 87892.56 18457.44 780 3 +781 34710.74 7289.26 781 3 +782 8264.46 1735.54 782 3 +783 14049.59 2950.41 783 3 +784 8264.46 1735.54 784 3 +785 22727.27 4772.73 785 3 +786 8264.46 1735.54 786 3 +787 8264.46 1735.54 787 3 +788 22314.05 4685.95 788 3 +789 4545.45 954.55 789 3 +790 8264.46 1735.54 790 3 +791 22727.27 4772.73 791 3 +792 9917.36 2082.64 792 3 +793 8264.46 1735.54 793 3 +794 19504.13 4095.87 794 3 +795 78099.17 16400.83 795 3 +796 111942.15 23507.85 796 3 +797 12396.69 2603.31 797 3 +798 19834.71 4165.29 798 3 +799 19504.13 4095.87 799 3 +800 7851.24 1648.76 800 3 +801 7851.24 1648.76 801 3 +802 8264.46 1735.54 802 3 +803 9917.36 2082.64 803 3 +804 34710.74 7289.26 804 3 +805 78512.40 16487.60 805 3 +806 8264.46 1735.54 806 3 +807 10000.00 2100.00 807 3 +808 15702.48 3297.52 808 3 +809 4380.17 919.83 809 3 +810 28677.69 6022.31 810 3 +811 8264.46 1735.54 811 3 +812 8264.46 1735.54 812 3 +813 9917.36 2082.64 813 3 +814 22727.27 4772.73 814 3 +815 15702.48 3297.52 815 3 +816 8264.46 1735.54 816 3 +817 8264.46 1735.54 817 3 +818 8264.46 1735.54 818 3 +819 22727.27 4772.73 819 3 +820 160661.16 33738.84 820 3 +821 19504.13 4095.87 821 3 +822 15702.48 3297.52 822 3 +823 8264.46 1735.54 823 3 +824 7851.24 1648.76 824 3 +825 7851.24 1648.76 825 3 +826 15702.48 3297.52 826 3 +827 8264.46 1735.54 827 3 +828 9917.36 2082.64 828 3 +829 41322.31 8677.69 829 3 +830 53305.79 11194.21 830 3 +831 7851.24 1648.76 831 3 +832 22727.27 4772.73 832 3 +833 9669.42 2030.58 833 3 +834 41322.31 8677.69 834 3 +835 21074.38 4425.62 835 3 +836 34710.74 7289.26 836 3 +837 33057.85 6942.15 837 3 +838 15702.48 3297.52 838 3 +839 8264.46 1735.54 839 3 +840 8264.46 1735.54 840 3 +841 9917.36 2082.64 841 3 +842 20247.93 4252.07 842 3 +843 8264.46 1735.54 843 3 +844 19504.13 4095.87 844 3 +845 41322.31 8677.69 845 3 +846 8264.46 1735.54 846 3 +847 8264.46 1735.54 847 3 +848 9090.91 1909.09 848 3 +849 8264.46 1735.54 849 3 +850 12396.69 2603.31 850 3 +851 14049.59 2950.41 851 3 +852 8264.46 1735.54 852 3 +853 9917.36 2082.64 853 3 +854 8264.46 1735.54 854 3 +855 8264.46 1735.54 855 3 +856 14049.59 2950.41 856 3 +857 7851.24 1648.76 857 3 +858 8264.46 1735.54 858 3 +859 8264.46 1735.54 859 3 +860 8264.46 1735.54 860 3 +861 7851.24 1648.76 861 3 +862 20454.55 4295.45 862 3 +863 7851.24 1648.76 863 3 +864 8264.46 1735.54 864 3 +865 12396.69 2603.31 865 3 +866 9917.36 2082.64 866 3 +867 7851.24 1648.76 867 3 +868 9917.36 2082.64 868 3 +869 7851.24 1648.76 869 3 +870 8264.46 1735.54 870 3 +871 19504.13 4095.87 871 3 +872 5206.61 1093.39 872 3 +873 8264.46 1735.54 873 3 +874 8264.46 1735.54 874 3 +875 9917.36 2082.64 875 3 +876 98760.33 20739.67 876 3 +877 8264.46 1735.54 877 3 +878 10909.09 2290.91 878 3 +879 8471.07 1778.93 879 3 +880 41322.31 8677.69 880 3 +881 8264.46 1735.54 881 3 +882 10826.45 2273.55 882 3 +883 14049.59 2950.41 883 3 +884 7851.24 1648.76 884 3 +885 69504.13 14595.87 885 3 +886 15702.48 3297.52 886 3 +887 8264.46 1735.54 887 3 +888 4380.17 919.83 888 3 +889 6363.64 1336.36 889 3 +890 9917.36 2082.64 890 3 +891 8264.46 1735.54 891 3 +892 9917.36 2082.64 892 3 +893 4380.17 919.83 893 3 +894 15702.48 3297.52 894 3 +895 9917.36 2082.64 895 3 +896 15702.48 3297.52 896 3 +897 22727.27 4772.73 897 3 +898 7851.24 1648.76 898 3 +899 7851.24 1648.76 899 3 +900 54297.52 11402.48 900 3 +901 20661.16 4338.84 901 3 +902 8264.46 1735.54 902 3 +903 8264.46 1735.54 903 3 +904 19834.71 4165.29 904 3 +905 8264.46 1735.54 905 3 +906 7024.79 1475.21 906 3 +907 29462.81 6187.19 907 3 +908 9917.36 2082.64 908 3 +909 10578.51 2221.49 909 3 +910 19504.13 4095.87 910 3 +911 19504.13 4095.87 911 3 +912 12809.92 2690.08 912 3 +913 12809.92 2690.08 913 3 +914 20454.55 4295.45 914 3 +915 9504.13 1995.87 915 3 +916 8264.46 1735.54 916 3 +917 17190.08 3609.92 917 3 +918 7851.24 1648.76 918 3 +919 7851.24 1648.76 919 3 +920 7851.24 1648.76 920 3 +921 12396.69 2603.31 921 3 +922 47107.44 9892.56 922 3 +923 19504.13 4095.87 923 3 +924 8760.33 1839.67 924 3 +925 7851.24 1648.76 925 3 +926 8264.46 1735.54 926 3 +927 7851.24 1648.76 927 3 +928 4545.45 954.55 928 3 +929 8264.46 1735.54 929 3 +930 84876.03 17823.97 930 3 +931 7851.24 1648.76 931 3 +932 37190.08 7809.92 932 3 +933 7851.24 1648.76 933 3 +934 113884.30 23915.70 934 3 +935 46165.29 9694.71 935 3 +936 4380.17 919.83 936 3 +937 28099.17 5900.83 937 3 +938 8264.46 1735.54 938 3 +939 12396.69 2603.31 939 3 +940 7851.24 1648.76 940 3 +941 22727.27 4772.73 941 3 +942 8677.69 1822.31 942 3 +943 9917.36 2082.64 943 3 +944 3826.45 803.55 944 3 +945 7851.24 1648.76 945 3 +946 23553.72 4946.28 946 3 +947 4380.17 919.83 947 3 +948 14049.59 2950.41 948 3 +949 37190.08 7809.92 949 3 +950 8677.69 1822.31 950 3 +951 9917.36 2082.64 951 3 +952 22727.27 4772.73 952 3 +953 8264.46 1735.54 953 3 +954 8264.46 1735.54 954 3 +955 19504.13 4095.87 955 3 +956 22727.27 4772.73 956 3 +957 66115.70 13884.30 957 3 +958 48760.33 10239.67 958 3 +959 25785.12 5414.88 959 3 +960 7851.24 1648.76 960 3 +961 7851.24 1648.76 961 3 +\. + + +-- +-- Data for Name: afip_vattype; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.afip_vattype (id, code, description, valid_from, valid_to) FROM stdin; +1 3 0% 2009-02-20 \N +2 4 10.5% 2009-02-20 \N +3 5 21% 2009-02-20 \N +4 6 27% 2009-02-20 \N +5 8 5% 2014-10-20 \N +6 9 2.5% 2014-10-20 \N +\. + + +-- +-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.auth_group (id, name) FROM stdin; +19 Administrador +20 vets +21 owner +\. + + +-- +-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin; +829 19 1 +830 19 2 +831 19 3 +832 19 4 +833 19 5 +834 19 6 +835 19 7 +836 19 8 +837 19 9 +838 19 10 +839 19 11 +840 19 12 +841 19 13 +842 19 14 +843 19 15 +844 19 16 +845 19 17 +846 19 18 +847 19 19 +848 19 20 +849 19 21 +850 19 22 +851 19 23 +852 19 24 +853 19 25 +854 19 26 +855 19 27 +856 19 28 +857 19 29 +858 19 30 +859 19 31 +860 19 32 +861 19 33 +862 19 34 +863 19 35 +864 19 36 +865 19 37 +866 19 38 +867 19 39 +868 19 40 +869 19 41 +870 19 42 +871 19 43 +872 19 44 +873 19 45 +874 19 46 +875 19 47 +876 19 48 +877 19 49 +878 19 50 +879 19 51 +880 19 52 +881 19 53 +882 19 54 +883 19 55 +884 19 56 +885 19 57 +886 19 58 +887 19 59 +888 19 60 +889 19 61 +890 19 62 +891 19 63 +892 19 64 +893 19 65 +894 19 66 +895 19 67 +896 19 68 +897 19 69 +898 19 70 +899 19 71 +900 19 72 +901 19 73 +902 19 74 +903 19 75 +904 19 76 +905 19 81 +906 19 82 +907 19 83 +908 19 84 +909 19 85 +910 19 86 +911 19 87 +912 19 88 +913 20 9 +914 20 74 +915 20 76 +916 20 84 +917 20 85 +918 20 86 +919 20 87 +920 20 88 +\. + + +-- +-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin; +1 Can add Token 1 add_token +2 Can change Token 1 change_token +3 Can delete Token 1 delete_token +4 Can view Token 1 view_token +5 Can add Token 2 add_tokenproxy +6 Can change Token 2 change_tokenproxy +7 Can delete Token 2 delete_tokenproxy +8 Can view Token 2 view_tokenproxy +9 Can add log entry 3 add_logentry +10 Can change log entry 3 change_logentry +11 Can delete log entry 3 delete_logentry +12 Can view log entry 3 view_logentry +13 Can add permission 4 add_permission +14 Can change permission 4 change_permission +15 Can delete permission 4 delete_permission +16 Can view permission 4 view_permission +17 Can add group 5 add_group +18 Can change group 5 change_group +19 Can delete group 5 delete_group +20 Can view group 5 view_group +21 Can add user 6 add_user +22 Can change user 6 change_user +23 Can delete user 6 delete_user +24 Can view user 6 view_user +25 Can add content type 7 add_contenttype +26 Can change content type 7 change_contenttype +27 Can delete content type 7 delete_contenttype +28 Can view content type 7 view_contenttype +29 Can add session 8 add_session +30 Can change session 8 change_session +31 Can delete session 8 delete_session +32 Can view session 8 view_session +33 Can add Neighborhood 9 add_neighborhood +34 Can change Neighborhood 9 change_neighborhood +35 Can delete Neighborhood 9 delete_neighborhood +36 Can view Neighborhood 9 view_neighborhood +37 Can add pet breed 10 add_petbreed +38 Can change pet breed 10 change_petbreed +39 Can delete pet breed 10 delete_petbreed +40 Can view pet breed 10 view_petbreed +41 Can add Specialty 11 add_specialty +42 Can change Specialty 11 change_specialty +43 Can delete Specialty 11 delete_specialty +44 Can view Specialty 11 view_specialty +45 Can add study 12 add_study +46 Can change study 12 change_study +47 Can delete study 12 delete_study +48 Can view study 12 view_study +49 Can add vaccine 13 add_vaccine +50 Can change vaccine 13 change_vaccine +51 Can delete vaccine 13 delete_vaccine +52 Can view vaccine 13 view_vaccine +53 Can add Tutor 14 add_petowner +54 Can change Tutor 14 change_petowner +55 Can delete Tutor 14 delete_petowner +56 Can view Tutor 14 view_petowner +57 Can add Mascota 15 add_pet +58 Can change Mascota 15 change_pet +59 Can delete Mascota 15 delete_pet +60 Can view Mascota 15 view_pet +61 Can add pet study 16 add_petstudy +62 Can change pet study 16 change_petstudy +63 Can delete pet study 16 delete_petstudy +64 Can view pet study 16 view_petstudy +65 Can add pet study file 17 add_petstudyfile +66 Can change pet study file 17 change_petstudyfile +67 Can delete pet study file 17 delete_petstudyfile +68 Can view pet study file 17 view_petstudyfile +69 Can add pet vaccine 18 add_petvaccine +70 Can change pet vaccine 18 change_petvaccine +71 Can delete pet vaccine 18 delete_petvaccine +72 Can view pet vaccine 18 view_petvaccine +73 Can add Veterinario 19 add_veterinarian +74 Can change Veterinario 19 change_veterinarian +75 Can delete Veterinario 19 delete_veterinarian +76 Can view Veterinario 19 view_veterinarian +77 Can add Availability 20 add_availability +78 Can change Availability 20 change_availability +79 Can delete Availability 20 delete_availability +80 Can view Availability 20 view_availability +81 Can add Turno 21 add_vetvisit +82 Can change Turno 21 change_vetvisit +83 Can delete Turno 21 delete_vetvisit +84 Can view Turno 21 view_vetvisit +85 Can add Historia de Visita 22 add_vetvisitreport +86 Can change Historia de Visita 22 change_vetvisitreport +87 Can delete Historia de Visita 22 delete_vetvisitreport +88 Can view Historia de Visita 22 view_vetvisitreport +89 Can see available unavailability 23 view_unavailability +90 Can add Unavailability 23 add_unavailability +91 Can change Unavailability 23 change_unavailability +92 Can delete Unavailability 23 delete_unavailability +93 Can see available service 24 view_service +94 Can see available prices 25 view_prices +95 Can see available discounts 26 view_discounts +96 Can add Servicio 24 add_service +97 Can change Servicio 24 change_service +98 Can delete Servicio 24 delete_service +99 Can add Precio 25 add_prices +100 Can change Precio 25 change_prices +101 Can delete Precio 25 delete_prices +102 Can add Descuento 26 add_discounts +103 Can change Descuento 26 change_discounts +104 Can delete Descuento 26 delete_discounts +105 Can add medication general name 27 add_medicationgeneralname +106 Can change medication general name 27 change_medicationgeneralname +107 Can delete medication general name 27 delete_medicationgeneralname +108 Can view medication general name 27 view_medicationgeneralname +109 Can add medication 28 add_medication +110 Can change medication 28 change_medication +111 Can delete medication 28 delete_medication +112 Can view medication 28 view_medication +113 Can add medication type 29 add_medicationtype +114 Can change medication type 29 change_medicationtype +115 Can delete medication type 29 delete_medicationtype +116 Can view medication type 29 view_medicationtype +117 Can add medication presentation 30 add_medicationpresentation +118 Can change medication presentation 30 change_medicationpresentation +119 Can delete medication presentation 30 delete_medicationpresentation +120 Can view medication presentation 30 view_medicationpresentation +121 Can add private note 31 add_privatenote +122 Can change private note 31 change_privatenote +123 Can delete private note 31 delete_privatenote +124 Can view private note 31 view_privatenote +125 Can add api key 32 add_apikey +126 Can change api key 32 change_apikey +127 Can delete api key 32 delete_apikey +128 Can view api key 32 view_apikey +129 Can add Carrito 33 add_cart +130 Can change Carrito 33 change_cart +131 Can delete Carrito 33 delete_cart +132 Can view Carrito 33 view_cart +133 Can add Item de Carrito 34 add_cartitem +134 Can change Item de Carrito 34 change_cartitem +135 Can delete Item de Carrito 34 delete_cartitem +136 Can view Item de Carrito 34 view_cartitem +137 Can add category 35 add_category +138 Can change category 35 change_category +139 Can delete category 35 delete_category +140 Can view category 35 view_category +141 Can add Grupo 36 add_group +142 Can change Grupo 36 change_group +143 Can delete Grupo 36 delete_group +144 Can view Grupo 36 view_group +145 Can see available servicerequest 37 view_servicerequest +146 Can add cart resume item 38 add_cartresumeitem +147 Can change cart resume item 38 change_cartresumeitem +148 Can delete cart resume item 38 delete_cartresumeitem +149 Can view cart resume item 38 view_cartresumeitem +150 Can add Solicitud 37 add_servicerequest +151 Can change Solicitud 37 change_servicerequest +152 Can delete Solicitud 37 delete_servicerequest +153 Can add service request state history 39 add_servicerequeststatehistory +154 Can change service request state history 39 change_servicerequeststatehistory +155 Can delete service request state history 39 delete_servicerequeststatehistory +156 Can view service request state history 39 view_servicerequeststatehistory +157 Can add veterinarian asked 40 add_veterinarianasked +158 Can change veterinarian asked 40 change_veterinarianasked +159 Can delete veterinarian asked 40 delete_veterinarianasked +160 Can view veterinarian asked 40 view_veterinarianasked +161 Can add vet visit follow up 41 add_vetvisitfollowup +162 Can change vet visit follow up 41 change_vetvisitfollowup +163 Can delete vet visit follow up 41 delete_vetvisitfollowup +164 Can view vet visit follow up 41 view_vetvisitfollowup +165 Can add follow up image 42 add_followupimage +166 Can change follow up image 42 change_followupimage +167 Can delete follow up image 42 delete_followupimage +168 Can view follow up image 42 view_followupimage +169 Can see available servicecombo 43 view_servicecombo +170 Can see available servicecomboitem 44 view_servicecomboitem +171 Can see available categoryservice 45 view_categoryservice +172 Can add Dependencia Categoria-Servicio 45 add_categoryservice +173 Can change Dependencia Categoria-Servicio 45 change_categoryservice +174 Can delete Dependencia Categoria-Servicio 45 delete_categoryservice +175 Can add service combo 43 add_servicecombo +176 Can change service combo 43 change_servicecombo +177 Can delete service combo 43 delete_servicecombo +178 Can add Item de Combo 44 add_servicecomboitem +179 Can change Item de Combo 44 change_servicecomboitem +180 Can delete Item de Combo 44 delete_servicecomboitem +181 Can add Archivo 46 add_filestorage +182 Can change Archivo 46 change_filestorage +183 Can delete Archivo 46 delete_filestorage +184 Can view Archivo 46 view_filestorage +185 Can add group study 47 add_groupstudy +186 Can change group study 47 change_groupstudy +187 Can delete group study 47 delete_groupstudy +188 Can view group study 47 view_groupstudy +189 Can see available campaign 48 view_campaign +190 Can add campaign 48 add_campaign +191 Can change campaign 48 change_campaign +192 Can delete campaign 48 delete_campaign +193 Can add authorization ticket 49 add_authticket +194 Can change authorization ticket 49 change_authticket +195 Can delete authorization ticket 49 delete_authticket +196 Can view authorization ticket 49 view_authticket +197 Can add concept type 50 add_concepttype +198 Can change concept type 50 change_concepttype +199 Can delete concept type 50 delete_concepttype +200 Can view concept type 50 view_concepttype +201 Can add currency type 51 add_currencytype +202 Can change currency type 51 change_currencytype +203 Can delete currency type 51 delete_currencytype +204 Can view currency type 51 view_currencytype +205 Can add document type 52 add_documenttype +206 Can change document type 52 change_documenttype +207 Can delete document type 52 delete_documenttype +208 Can view document type 52 view_documenttype +209 Can add observation 53 add_observation +210 Can change observation 53 change_observation +211 Can delete observation 53 delete_observation +212 Can view observation 53 view_observation +213 Can add point of sales 54 add_pointofsales +214 Can change point of sales 54 change_pointofsales +215 Can delete point of sales 54 delete_pointofsales +216 Can view point of sales 54 view_pointofsales +217 Can add receipt 55 add_receipt +218 Can change receipt 55 change_receipt +219 Can delete receipt 55 delete_receipt +220 Can view receipt 55 view_receipt +221 Can add receipt entry 56 add_receiptentry +222 Can change receipt entry 56 change_receiptentry +223 Can delete receipt entry 56 delete_receiptentry +224 Can view receipt entry 56 view_receiptentry +225 Can add receipt pdf 57 add_receiptpdf +226 Can change receipt pdf 57 change_receiptpdf +227 Can delete receipt pdf 57 delete_receiptpdf +228 Can view receipt pdf 57 view_receiptpdf +229 Can add receipt type 58 add_receipttype +230 Can change receipt type 58 change_receipttype +231 Can delete receipt type 58 delete_receipttype +232 Can view receipt type 58 view_receipttype +233 Can add receipt validation 59 add_receiptvalidation +234 Can change receipt validation 59 change_receiptvalidation +235 Can delete receipt validation 59 delete_receiptvalidation +236 Can view receipt validation 59 view_receiptvalidation +237 Can add tax 60 add_tax +238 Can change tax 60 change_tax +239 Can delete tax 60 delete_tax +240 Can view tax 60 view_tax +241 Can add taxpayer 61 add_taxpayer +242 Can change taxpayer 61 change_taxpayer +243 Can delete taxpayer 61 delete_taxpayer +244 Can view taxpayer 61 view_taxpayer +245 Can add tax type 62 add_taxtype +246 Can change tax type 62 change_taxtype +247 Can delete tax type 62 delete_taxtype +248 Can view tax type 62 view_taxtype +249 Can add vat 63 add_vat +250 Can change vat 63 change_vat +251 Can delete vat 63 delete_vat +252 Can view vat 63 view_vat +253 Can add vat type 64 add_vattype +254 Can change vat type 64 change_vattype +255 Can delete vat type 64 delete_vattype +256 Can view vat type 64 view_vattype +257 Can add optional type 65 add_optionaltype +258 Can change optional type 65 change_optionaltype +259 Can delete optional type 65 delete_optionaltype +260 Can view optional type 65 view_optionaltype +261 Can add optional 66 add_optional +262 Can change optional 66 change_optional +263 Can delete optional 66 delete_optional +264 Can view optional 66 view_optional +265 Can add client VAT condition 67 add_clientvatcondition +266 Can change client VAT condition 67 change_clientvatcondition +267 Can delete client VAT condition 67 delete_clientvatcondition +268 Can view client VAT condition 67 view_clientvatcondition +269 Can add receipt pay proof 68 add_receiptpayproof +270 Can change receipt pay proof 68 change_receiptpayproof +271 Can delete receipt pay proof 68 delete_receiptpayproof +272 Can view receipt pay proof 68 view_receiptpayproof +273 Can add mercado pago account 69 add_mercadopagoaccount +274 Can change mercado pago account 69 change_mercadopagoaccount +275 Can delete mercado pago account 69 delete_mercadopagoaccount +276 Can view mercado pago account 69 view_mercadopagoaccount +277 Can see available tag 70 view_tag +278 Can add Tag 70 add_tag +279 Can change Tag 70 change_tag +280 Can delete Tag 70 delete_tag +281 Can add Grupo de recargo por turnero individual 71 add_individualturnfeegroup +282 Can change Grupo de recargo por turnero individual 71 change_individualturnfeegroup +283 Can delete Grupo de recargo por turnero individual 71 delete_individualturnfeegroup +284 Can view Grupo de recargo por turnero individual 71 view_individualturnfeegroup +285 Can add Asignación de veterinario a grupo de turnero individual 72 add_individualturnfeegroupmembership +286 Can change Asignación de veterinario a grupo de turnero individual 72 change_individualturnfeegroupmembership +287 Can delete Asignación de veterinario a grupo de turnero individual 72 delete_individualturnfeegroupmembership +288 Can view Asignación de veterinario a grupo de turnero individual 72 view_individualturnfeegroupmembership +289 Can see available mercadopagonotification 73 view_mercadopagonotification +290 Can add Browser push subscription 74 add_browserpushsubscription +291 Can change Browser push subscription 74 change_browserpushsubscription +292 Can delete Browser push subscription 74 delete_browserpushsubscription +293 Can view Browser push subscription 74 view_browserpushsubscription +294 Can add Notificación Mercado Pago 73 add_mercadopagonotification +295 Can change Notificación Mercado Pago 73 change_mercadopagonotification +296 Can delete Notificación Mercado Pago 73 delete_mercadopagonotification +297 Can see available scheduledveterinarianreminder 75 view_scheduledveterinarianreminder +298 Can add Provincia 76 add_province +299 Can change Provincia 76 change_province +300 Can delete Provincia 76 delete_province +301 Can view Provincia 76 view_province +302 Can add Localidad 77 add_locality +303 Can change Localidad 77 change_locality +304 Can delete Localidad 77 delete_locality +305 Can view Localidad 77 view_locality +306 Can add Zona de cobertura de veterinario 78 add_veterinariancoveragearea +307 Can change Zona de cobertura de veterinario 78 change_veterinariancoveragearea +308 Can delete Zona de cobertura de veterinario 78 delete_veterinariancoveragearea +309 Can view Zona de cobertura de veterinario 78 view_veterinariancoveragearea +310 Can add Motivo de consulta por mascota 79 add_vetvisitpetreason +311 Can change Motivo de consulta por mascota 79 change_vetvisitpetreason +312 Can delete Motivo de consulta por mascota 79 delete_vetvisitpetreason +313 Can view Motivo de consulta por mascota 79 view_vetvisitpetreason +314 Can add Motivo de Carrito por Mascota 80 add_cartpetreason +315 Can change Motivo de Carrito por Mascota 80 change_cartpetreason +316 Can delete Motivo de Carrito por Mascota 80 delete_cartpetreason +317 Can view Motivo de Carrito por Mascota 80 view_cartpetreason +318 Can add Recordatorio de disponibilidad 75 add_scheduledveterinarianreminder +319 Can change Recordatorio de disponibilidad 75 change_scheduledveterinarianreminder +320 Can delete Recordatorio de disponibilidad 75 delete_scheduledveterinarianreminder +321 Can add Recordatorio de pago 81 add_paymentreminder +322 Can change Recordatorio de pago 81 change_paymentreminder +323 Can delete Recordatorio de pago 81 delete_paymentreminder +324 Can view Recordatorio de pago 81 view_paymentreminder +\. + + +-- +-- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin; +122 pbkdf2_sha256$1000000$6sueawZ1mISaXlFVajfkZ1$7n7nYK3obrCrWr/EZnCDsI0dQ2rGoHE0ny/1IHperV0= 2025-11-03 20:03:20.833809+00 f martinpalladino@yahoo.com Martín Palladino martinpalladino@yahoo.com f t 2025-02-20 13:33:22+00 +1354 pbkdf2_sha256$720000$VO2zxUy480lazBQ4PvsVkM$ez5LXOnO+sEtiGjzwe5+K+CTw+i67fn8fC7ukiC5o2M= \N f eduarcasti@hotmail.com f t 2025-07-12 00:29:06.981985+00 +174 pbkdf2_sha256$720000$k5nELaN38z2SlX0qTJ8P5L$sCQVllzIQruJSzYipFtbm7RDUYIWKZ5Fuy6g0HkQvkQ= \N f mmpatitucci@hotmail.com mmpatitucci@hotmail.com f t 2025-05-13 21:47:14.322238+00 +130 pbkdf2_sha256$1000000$IgS9uRd9p0zjNLV2wWLxgy$BnMfcGYbg5Jr8zeLGWRfu0OX+ackBiXCSs/Udx2HZMY= 2025-06-19 20:08:34.374537+00 f vetemartin@yahoo.com.ar Javier Gilbert vetemartin@yahoo.com.ar f t 2025-02-20 15:06:44+00 +175 pbkdf2_sha256$720000$631WWhtZCrfjn8A5IwGJbi$Nnk5Y4LwBcBce8Lf6XM72OElL+QlrJWuVf9KUwIZkag= \N f pamfigliolo.94@live.com pamfigliolo.94@live.com f t 2025-05-13 21:47:15.167481+00 +132 pbkdf2_sha256$720000$zKK0vxkSHtGTvlFfP7nAoo$1cw0Bfw/vJg3JJHydTAiuPU7Vz2ZbxLpKiKQoaN+LJ4= 2025-10-11 12:23:59.099987+00 f javierpr15@hotmail.com Javier Robatto javierpr15@hotmail.com f t 2025-02-20 15:07:39+00 +1396 pbkdf2_sha256$720000$CGMKYbKqy7ia78iDBzYLa2$tUQxmnRRTHjo5Pyn7e8hb5/pKItZiRibgdJFQ6AbbeI= \N f sebaholzok@gmail.com f t 2025-07-17 17:31:55.14993+00 +140 pbkdf2_sha256$720000$bpvX4fZ92NMeZGfpGonsTF$U7xCFaKJgZgULZhQCgjlYmPLPi0HrNcBF0TsTeKyycY= 2025-05-28 22:04:06.293926+00 f durekaren@gmail.com Karen Duré durekaren@gmail.com f t 2025-03-13 19:48:53+00 +136 pbkdf2_sha256$720000$HCDvYEz1VUmHI4EvTIOlRv$xsZCd1FK1hckKnE2eZNqkV/WLjxdB6rXyCTtT1o+f3I= \N f gretonio2000@yahoo.com.ar Carmen María Gallo gretonio2000@yahoo.com.ar f f 2025-02-20 15:10:22+00 +134 pbkdf2_sha256$1000000$TQHJaXaGZwbCG5L4dx3Krf$V2+J1cLHK+yMZsm5nb0cbblDkwLwkV26BQ52osisoUY= 2025-11-11 22:42:18.320512+00 f mariavictoriagonzalez.mve@gmail.com Maria Victoria Gonzalez mariavictoriagonzalez.mve@gmail.com f t 2025-02-20 15:08:52+00 +176 pbkdf2_sha256$720000$qFFuVmnx8Uy1zSgSaEnhmy$U9tEP/iwfDbSqpL2+s2ICRP+7reAqbvAy8uYngWSaHA= \N f camilavessvessian@gmail.com camilavessvessian@gmail.com f t 2025-05-13 21:47:15.864424+00 +145 pbkdf2_sha256$1000000$uwc48Ytxq8OX9FCS76k1Yg$+6gbi/9J+HUjkPLprkS05afamDZsbvp/PglduoisE7U= \N f agustinviveros@hotmail.com agustinviveros@hotmail.com f t 2025-04-16 20:27:18+00 +121 pbkdf2_sha256$1000000$AKdDnEgx643AR7N14uWvSj$gUtBVPzxonCPz6/AzuULM9JkTJt/yM3rl+rhqCI4U7o= 2025-11-22 11:13:13.700104+00 t valentina@amarmascotas.com Valentina Cinat valentina@amarmascotas.com t t 2025-01-22 14:07:18+00 +177 pbkdf2_sha256$720000$TzSuHALaXOfSPyJKtumFPY$g97sM4K+qNJTLFjlpn6x5XDIqlbdXDUXa3aYJ7wfeP0= \N f guadacadiz@hotmail.com guadacadiz@hotmail.com f t 2025-05-13 21:47:16.519417+00 +128 pbkdf2_sha256$1000000$KcY4bqAcGt8HZhlGdxv3qK$z8XZa7r25skIWKbk84sn1oOwh5MVIAAshtlL33f97F4= 2025-11-03 14:45:33.747276+00 f marianapalummo22@gmail.com Mariana Palummo marianapalummo22@gmail.com f t 2025-02-20 15:05:55+00 +124 pbkdf2_sha256$1000000$IBq82R3NQYrfiiwJONb0oG$M8JanhBcjemQVUk2NmGIg2TwU+knf97bYjMr3vhno6s= 2025-09-23 13:55:21.941256+00 f mlgorostegui@gmail.com Maria Laura Gorostegui mlgorostegui@gmail.com f t 2025-02-20 15:03:36+00 +147 pbkdf2_sha256$1000000$Fnzpyu8INRvJsVPual8Y1p$Vbjxjxow77QhxL4vTDC2KbERPtHFq8+lbNNT3x41s5I= 2025-07-28 22:02:58.274111+00 f marceloggiangreco@hotmail.com Marcelo Giangreco marceloggiangreco@hotmail.com f t 2025-04-30 13:59:11+00 +150 pbkdf2_sha256$720000$qQFmclc8UufEDOmMlnKPjF$n6LKMBoUCMHAH8MCyzBku6YkwuQ/CSZyF3RCGDX4Tn4= \N f arteyreparte@gmail.com arteyreparte@gmail.com f t 2025-05-13 00:02:16.136364+00 +165 pbkdf2_sha256$720000$e1QSRjRpNmOgKkq7bV9Jyt$3GZNFXw8+cn20cgWq/u4XDFNy9tCCbFSkgkefaW+RJI= \N f acsm.antonio@gmail.com acsm.antonio@gmail.com f t 2025-05-13 21:47:07.689459+00 +178 pbkdf2_sha256$720000$ghS2oojqtecZkoUEBzmfmY$WWM91z096+rVQ81c4TkdqnrKgup4hm0l95fsmHxYrCE= \N f yulia.osharova@gmail.com yulia.osharova@gmail.com f t 2025-05-13 21:47:17.195263+00 +166 pbkdf2_sha256$720000$wG1R0kcHBVIJRkKwRRUUJr$8Io4SR/YtA4UyZOd1rkOBMsqOEtsXVZrazvLCAaI+nY= \N f vanesamancini14@gmail.com vanesamancini14@gmail.com f t 2025-05-13 21:47:08.508571+00 +169 pbkdf2_sha256$720000$xkG5gp8iCkTGec9eXgngQ6$U2+N9wENUixrR995hIdZ7boiTnjZL7Br6hw1v7PgW/A= 2025-09-12 18:24:02.846574+00 f noraraquelrojas@hotmail.es noraraquelrojas@hotmail.es f t 2025-05-13 21:47:10.964299+00 +143 pbkdf2_sha256$720000$pCMtnz2fX0fNI5Wl2hoOTb$qpJbLzNgQWipvA/j+fQW7FTy/Hx7zaxIWr+/P2UYMnc= \N f gastonfernandez1996@outlook.com Gaston Fernandez gastonfernandez1996@outlook.com f t 2025-04-16 19:17:29+00 +179 pbkdf2_sha256$720000$y7ZmS0VqY3Ml3ySBQwbcY7$i3AQnzahxGCnFngDK2EFE+W5K05hWiCUDGvbgPcLeWE= \N f pyhuberk@hotmail.com pyhuberk@hotmail.com f t 2025-05-13 21:47:17.825181+00 +180 pbkdf2_sha256$720000$TlnqOW6gjT36CgLIhjvlzR$OPSihD8uJuDrd2PWa6MV/bpoIf7DzZfppWEs8pV7t8Q= \N f juani.bagu@gmail.com juani.bagu@gmail.com f t 2025-05-13 21:47:18.420777+00 +167 pbkdf2_sha256$720000$soDfocuuzcE17BuOvR72ee$sGQaEZizhX8uEPZL9D1/L3PaZQ70lVlCDVY/0g/TPRM= \N f gabriela.sabella@gmail.com gabriela.sabella@gmail.com f t 2025-05-13 21:47:09.287523+00 +168 pbkdf2_sha256$720000$Kd8BO6NljYrTF6zx2dVewg$Cz1YK67P+UsjQBTpo5vgsZQfd673RrNsV3by7jW61yM= \N f narelcamil@hotmail.com narelcamil@hotmail.com f t 2025-05-13 21:47:10.196256+00 +181 pbkdf2_sha256$720000$qTeFCChQy6GU9nadIcT7Ac$CAuJxLnnag44bWRdTSZyPD5QsB9aL6KWugZsKkrkwYo= \N f gcpereda@gmail.com gcpereda@gmail.com f t 2025-05-13 21:47:19.063676+00 +170 pbkdf2_sha256$720000$y9aeF97XecjTVqMZWIaUzL$iKcn9Jw+ESEF9zMJQjIL78yUF/6M/olVbchj0CPq1Ag= \N f ignacio@ichibangroup.com ignacio@ichibangroup.com f t 2025-05-13 21:47:11.730353+00 +171 pbkdf2_sha256$720000$vCEyaLfa2lvuUIEWwcrS8C$3Ufsz2RLymRefzsldxi5yDG08XtrjliL2ustgM+KIHM= \N f tramitesamoroso@gmail.com tramitesamoroso@gmail.com f t 2025-05-13 21:47:12.386647+00 +141 pbkdf2_sha256$720000$6UhoAkZd7n4nOb3ZHjSfcf$EeiqAH/ar5ykQHOs5Qyzm6GMXwxJ6F/Bae0RMPRPubw= 2025-03-19 19:41:27+00 t Melisa Melisa t f 2025-03-18 17:22:46+00 +172 pbkdf2_sha256$720000$SuX5G48imTiKIP4t9yvJ37$dCEYyR/MafRe4H+Mrc5Ix0J5QvQ5QeO0D+cdrIw7A6o= \N f fedearacre98@gmail.com fedearacre98@gmail.com f t 2025-05-13 21:47:13.03906+00 +173 pbkdf2_sha256$720000$SJlM7vk0hHSvcP15juTR6P$2YZdWoigeg5zQJ04Ez6sS6L7xH2859LxSPtqvQQ2Qzg= \N f pardo1985@gmail.com pardo1985@gmail.com f t 2025-05-13 21:47:13.710096+00 +182 pbkdf2_sha256$720000$60TA2yb8o9YQWzyt7cnioJ$A9IL7rXkmAxK2ljdHPOQCYO5+WD2E2P5M6mTzh63fjI= \N f cieri.miguel@gmail.com cieri.miguel@gmail.com f t 2025-05-13 21:47:19.658121+00 +183 pbkdf2_sha256$720000$YHDownkNUysQnZKy87WJAu$qIOZhnwuPOY8Pct2ORr3D1BUhaivXIPXOLvhFG/CFgM= \N f gustavo.iseb@gmail.com gustavo.iseb@gmail.com f t 2025-05-13 21:47:20.258467+00 +184 pbkdf2_sha256$720000$DGR3s32f8czmwYSmzr7VZ2$u7XRA9YVMZZbDKnd6NMBYuMj60JH2LiKBDPTkyBzJ2k= \N f laubrocca@gmail.com laubrocca@gmail.com f t 2025-05-13 21:47:20.859115+00 +185 pbkdf2_sha256$720000$JDYVrm4p12e1ny47K2GPZ1$MFdlwuWxqdUbHRgAljMz4At1i6jGKgYGWhMMCGsruJw= \N f dvv90552@gmail.com dvv90552@gmail.com f t 2025-05-13 21:47:21.445297+00 +186 pbkdf2_sha256$720000$0PULWOyqFS93KOoVeofrOA$dN2+f0+D0vfGFYEfRQPGWF4PDrUex1xcRFGQKO55YIM= \N f todovaaestarbien1111@gmail.com todovaaestarbien1111@gmail.com f t 2025-05-13 21:47:22.036365+00 +187 pbkdf2_sha256$720000$Tlg67miJ3Z0QrSDDv74XPe$fK/+t1z6cr4JDy2klOsYpMEGYXD48x8KyB/HmSnkQX8= \N f ana_beatriz_lescano@hotmail.com ana_beatriz_lescano@hotmail.com f t 2025-05-13 21:47:22.633175+00 +151 pbkdf2_sha256$720000$dYSpYeObM1h8wv7mCOU6Fv$cgLQlL9XRyHL1flUZmrYnZq/bg2Ut4/JuC3yt69gfQE= \N f rochi_mazziotti@hotmail.com rochi_mazziotti@hotmail.com f t 2025-05-13 21:46:54.590351+00 +1373 pbkdf2_sha256$720000$8MXKJctiu3dw2oUYmDFdIk$5Dcf2WXswt+GrRcOTglkcCHlfaYDAPJBLaYOpa7n5Kg= \N f camilafraser8284@gmail.com f t 2025-07-14 21:19:01.511593+00 +152 pbkdf2_sha256$720000$MvCBtnY8Tq0q3tBBzkoG8B$mu07QkUylGPyes+/2xiwgRGxYJcRAIsbcS37gMi4d8c= \N f administracion@fenixpackaging.com.ar administracion@fenixpackaging.com.ar f t 2025-05-13 21:46:55.282642+00 +1355 pbkdf2_sha256$720000$RIDAn1xcQLG0HeuuSioWLt$lAFYaveRi9P45zwXI8Rr+Pjd4F5EDHd2Ok5tUb+4FzQ= \N f nazarethdezanzo@gmail.com nazarethdezanzo@gmail.com f t 2025-07-12 11:44:12.036477+00 +133 pbkdf2_sha256$720000$LWSdxNr25ytYxqajqClbhY$/++Q//0Phbm6MtyjH+9nYdc1yLskJH18l+YIAgF6iC0= 2025-10-26 10:53:31.029828+00 f julian_napoli@hotmail.com Julian Nápoli julian_napoli@hotmail.com f t 2025-02-20 15:08:25+00 +120 pbkdf2_sha256$720000$zCquZkbD7ZNEJ8M33VBeOU$2Vio7UdJHZ8T5OnpfSp/2uDRxtp2wahX4lUbDOUQgPg= 2025-01-13 16:59:20.563+00 f ggarciacordoba@gmail.com Gonzalo García Córdoba ggarciacordoba@gmail.com f t 2024-12-20 17:12:21+00 +137 pbkdf2_sha256$720000$FXFT23RajbC9rBM50Fqc0M$EaHRb+2uFEi+MKnqIun6gyElsEkJeyPtJhjngjjJtgI= \N f noeliamacias@live.com Noelia Macias Landro noeliamacias@live.com f f 2025-02-20 15:10:54+00 +131 pbkdf2_sha256$720000$kVX4af24jmNWNy5XA2ae5q$dSpkIFbck4aszi10gFmBdEC3Tnqynbihv/LEexlgifM= 2025-02-20 15:25:41.381245+00 f vet.magadecaro@gmail.com Gabriela de Caroli vet.magadecaro@gmail.com f t 2025-02-20 15:07:14+00 +112 pbkdf2_sha256$720000$1tmoL2j4MzkHF07ue22A72$NX2qN2ZRYmSCy4WKnKGp+WqM3w6ygPbjtEPMG6D0OA0= 2025-06-18 12:37:16.51317+00 t turnos@amarmascotas.com t t 2024-10-30 15:41:36+00 +153 pbkdf2_sha256$720000$fs1i1hokt3ZWOqpIH4athe$bSl2mZ8A6pnVMmkBxdCaRbkApuE+1JbBx/jZ/Q8pHog= \N f marycantisani@gmail.com marycantisani@gmail.com f t 2025-05-13 21:46:55.895818+00 +144 pbkdf2_sha256$720000$D2McSwmYrCTwEewAoYcNdh$i8bwpZs7EadzH78sQIEHD8Pk5j702FSZiF1e5QfEoQc= \N f agustin.viveros93@gmail.com agustin.viveros93@gmail.com f t 2025-04-16 20:18:25.565749+00 +123 pbkdf2_sha256$720000$tPM8JcCwgxWthST1f3DOci$+Y6J4OLQZJFpfA+5Eg2efpxVrM3GV//xYm0fbcICwUM= 2025-04-04 14:34:50.0552+00 f gerardodelfino@hotmail.com Gerardo Delfino gerardodelfino@hotmail.com f t 2025-02-20 15:02:43+00 +154 pbkdf2_sha256$720000$PCZEbt6m8AA0ZFsC3JaXas$0EDB29hnzgJgtzOYptzxcRrVCkvaViTzGE1uMvg3NQA= \N f marcelaivanaullman@hotmail.com.ar marcelaivanaullman@hotmail.com.ar f t 2025-05-13 21:46:56.508191+00 +149 pbkdf2_sha256$720000$Hu1iAHoSfiaXRmkZBgVGxl$iQ5yeOEThN7CgR+vsa+7z5Kg5P5G1I784xC/WRZp120= 2025-05-12 14:55:23.62818+00 f zaccheopablo1@gmail.com zaccheopablo1@gmail.com f t 2025-05-12 14:53:28.096305+00 +119 pbkdf2_sha256$720000$WabzUpYZpGYhI0IfvwpiH6$wTPW4XkgLeRHsUgQkN2FyyupRJfF8krzQSx9dWYII+I= 2025-09-30 18:45:39.116176+00 f esteban.caravello@hospitalitaliano.org.ar Esteban Caravello esteban.caravello@hospitalitaliano.org.ar f t 2024-11-28 11:47:09+00 +1399 pbkdf2_sha256$720000$5YXPFKVdmMBeeJ6hTJjqcH$BLrYgCaMyuYBv/KcyNC6KM4ziDfkfxAFLQlCFh14QiM= \N f caromesc@hotmail.com f t 2025-07-17 22:29:52.586493+00 +146 pbkdf2_sha256$720000$Yf9CbrIUgYZDLqZlEqDBuu$hYO7E/ZDqKVwyjhtyVDTyuwKn0lUB75w/zrF6P+yE/A= \N f dario.pirozzo@flydevs.com f t 2025-04-25 18:29:19.454249+00 +155 pbkdf2_sha256$720000$A83ORP8rll6ppLPsMWsKlp$DEf5j0P/hXfb20DWtKTbPXPycv77Were/yvBUcHGnYg= \N f ap@escribaniapineiro.com.ar ap@escribaniapineiro.com.ar f t 2025-05-13 21:46:57.145638+00 +156 pbkdf2_sha256$720000$malnZngnE20JJBwL7MDWJG$MNSlW/NrWw06zAUl7jP0O7RWX2VswEoEW1EbK00W7zw= \N f alisiamartin@hotmail.com alisiamartin@hotmail.com f t 2025-05-13 21:46:57.800966+00 +1401 pbkdf2_sha256$720000$rUkPzFbqmxAedkIJvJ0qnr$tVbj9qiQNUcx0rhho/A8n9EhHggzzYmcdoi7SqRQtAc= \N f vane2k3@hotmail.com f t 2025-07-18 14:26:25.817593+00 +1403 pbkdf2_sha256$720000$lbor4wOYZPBlDCNGkXtC4A$V9+BgcRCcOytmLH4c/TesEuU7aQSbvFH+ROAuMLtjqI= \N f marielav@gmail.com f t 2025-07-18 18:59:58.91337+00 +117 pbkdf2_sha256$720000$hNLhj4vri6G2y5d5JgPin1$9GSlNLg7ztzVPaT685yJIJ6rTu3ITbWEfKAArwyNmXs= 2025-09-27 16:39:13.833504+00 f nicolasguasco82@hotmail.com Nicolás Guasco nicolasguasco82@hotmail.com f t 2024-11-13 20:02:51+00 +127 pbkdf2_sha256$720000$AWf8Xybx88vWejoObAMZSn$qOsN+9aeTwnn7Y0/X0cel2LY18Tr2Nqhy0N3JDRETAk= \N f mi_saez@hotmail.com Maria Ines Saez mi_saez@hotmail.com f t 2025-02-20 15:05:28+00 +157 pbkdf2_sha256$720000$p77eOTRMAnRTyFlnCjjFsO$8YYwMRHV/w+AnSnWP7L/VerhabRc8gpK9BS9e3Jte0c= \N f administracion@rodamientosrodanor.com.ar administracion@rodamientosrodanor.com.ar f t 2025-05-13 21:46:58.42921+00 +125 pbkdf2_sha256$720000$3jBIY6nSyExGnWnmoB4DnQ$QhqEl/llZMkKqtXF6MNstdZ0ghFB2cOpDSxx/FX0pQQ= 2025-03-13 14:37:54.821822+00 f anachristophersen@hotmail.com Ana Christophersen anachristophersen@hotmail.com f t 2025-02-20 15:04:07+00 +1425 pbkdf2_sha256$720000$2RztdHmzWTWKY5GyB6TaYh$McqxL1502oVhYajeCHHNcVS+W+eBxb0MMidoVXNOPMA= \N f hilenmg@gmail.com f t 2025-07-22 22:15:35.292948+00 +111 pbkdf2_sha256$720000$Q6NkmkaHN6w3AkgQLnaPxH$RdYtooowrAnvdfFSsr8IWYx4F1/nGaD2lKS3qq82xWU= 2025-05-26 14:45:31+00 t Leila Leila Otazu leila@amarmascotas.com t f 2024-10-30 14:19:50+00 +142 pbkdf2_sha256$1000000$SMYAJRq1Gc962GqLtFaSA2$d83XsGEXaircBWWMiM8bb0u6mzybhyHFU9TjCrcoT8M= 2025-09-03 04:11:22.212278+00 f camila@provet.com.ar Camila Lorenzo camila@provet.com.ar f t 2025-03-18 18:20:12+00 +158 pbkdf2_sha256$720000$6ediFghyv3lqiyKmUJgtKs$Dt8MkNuylhQGgJMlub2W+NUf+aGjzuZUPImb65wGBqw= \N f layb_10@hotmail.com layb_10@hotmail.com f t 2025-05-13 21:46:59.149872+00 +109 pbkdf2_sha256$720000$eEaEhh2vHGm1BgUlGpYj1E$0sKeS3A3fAlUDkDqqzLkkG6dGw4h+b3HnJ7tsi17VdI= 2025-03-05 22:22:42.608148+00 t admin t t 2024-10-30 14:15:11+00 +159 pbkdf2_sha256$720000$BNjKyDNTLXgTXmeWDmRzcw$BURgY8HJ1NsYZACCjFQOCUAi1efHl3t6HchzsCkZZ18= \N f ornelasturlese@gmail.com ornelasturlese@gmail.com f t 2025-05-13 21:47:03.379142+00 +139 pbkdf2_sha256$1000000$IA8KFyykMFnckHogBjs6pG$/4WxB2aLo3LJ1XijWGOn03PGtGkxSz1hfwzfKxxro5Y= 2025-11-22 19:31:39.317817+00 f maralmartinez@yahoo.com.ar Mara Leila Martinez maralmartinez@yahoo.com.ar f t 2025-03-13 19:47:59+00 +160 pbkdf2_sha256$720000$tFWoKI5Cb6uSaH3daIx7VH$dIMoZUAsL/RUtNLkwWRvIv7Nl+LKZB1mNromFg2Gor4= \N f aldanascasati@gmail.com aldanascasati@gmail.com f t 2025-05-13 21:47:04.102108+00 +110 pbkdf2_sha256$720000$FtHzvU5CwwFwuzm8PDXOrz$X+m00AJc5n5frCoOgqkgu7ZKlWv+C0aBqeXcHkKflSs= 2025-10-02 11:11:09.433397+00 t Valen Valentina Cinat Maria valentina@amarmascotas.com t t 2024-10-30 14:17:50+00 +161 pbkdf2_sha256$720000$p1PfCvBV41dhiE3hoX7TF1$r67ZYXpSanRyZaqcEaf57WLODeCHRkPywqLIv1EhEvU= \N f blanca_tugues@live.com blanca_tugues@live.com f t 2025-05-13 21:47:04.810481+00 +162 pbkdf2_sha256$720000$g2SlifXKg48XjltvwrZsjG$sW4P5qHR86EvXsLOT1+wptmUxxHk/5AIuo3DWf5mgR4= \N f valeangel5871@gmail.com valeangel5871@gmail.com f t 2025-05-13 21:47:05.490461+00 +163 pbkdf2_sha256$720000$iPGJKRhwjnbiUPqynLuccS$QLLcYunTjGqOFsBz7bxwAhKao3w8kr3yEGVo3o3thaY= \N f vero.browning@gmail.com vero.browning@gmail.com f t 2025-05-13 21:47:06.326278+00 +164 pbkdf2_sha256$720000$krb8Br5osNwuHyP5UuaiOr$JRVIN97Vh2QY+qfVjJDd9JuT367HtU8TQl6L1Abi6uE= \N f ogfp57@gmail.com ogfp57@gmail.com f t 2025-05-13 21:47:07.006701+00 +1924 pbkdf2_sha256$720000$Vbae35lOQO7hy3EjdjEpWB$/0sLp+LB56s6Pp4TdiYsfPTfBQ5eFIgWykg3iPORwlg= \N f Pilargon07@gmail.com Pilargon07@gmail.com f t 2025-10-28 20:45:20.706747+00 +188 pbkdf2_sha256$720000$FpRdj6btR7Kl0SOmIpqP7L$GX0dtWO0cM77Ap/lN1TKfDlagxgQ1YQWYCtETu7hNMg= \N f priscicas@gmail.com priscicas@gmail.com f t 2025-05-13 21:47:23.292196+00 +189 pbkdf2_sha256$720000$JtZ6ThtPUyHlbO7WtOzMLX$9nWAXkOaHwPZjgQx1XNc+n9Mm+mMtd2o3ar3u54WFNg= \N f horacio.bujad@gmail.com horacio.bujad@gmail.com f t 2025-05-13 21:47:23.909359+00 +190 pbkdf2_sha256$720000$druEQqw3NlgAssrmgY1TC6$p19V8UFU/2t7R5qpb/2mVmH+kvcAD6oCzQd3sMogrK0= \N f eseavip@gmail.com eseavip@gmail.com f t 2025-05-13 21:47:24.645381+00 +191 pbkdf2_sha256$720000$8uBAWyjwLtFVfitmD9CvpN$Hi/vGMmMZbWagnTIJ8eJdQbGNJvIqtoLS+bpBWaBwjg= \N f acostasofiam@gmail.com acostasofiam@gmail.com f t 2025-05-13 21:47:25.511592+00 +192 pbkdf2_sha256$720000$Qt8JPDo0ZUU3Pm7AO4NgQw$kOdmk0ZTUiDif1s52qLYaNMYkkasUR6Ub2k7Iah4mvg= \N f hamarcial@yahoo.com.ar hamarcial@yahoo.com.ar f t 2025-05-13 21:47:26.364373+00 +193 pbkdf2_sha256$720000$8uZfJSKEFXSpGfg2sND6dv$kLok1rafI3hos5zUpc2JVxJrtm/eK+xqLCeqxAby43o= \N f jdccriado@gmail.com jdccriado@gmail.com f t 2025-05-13 21:47:26.985803+00 +194 pbkdf2_sha256$720000$NmPQec0Fyaub8ghNOiRJTV$4PiXhw0vKyxoiXUVmnArc5rvl4jum8qki4iMJki7mjs= \N f gonzalo.zenobi@gmail.com gonzalo.zenobi@gmail.com f t 2025-05-13 21:47:27.664347+00 +195 pbkdf2_sha256$720000$TlugSCycgTB07J9l9fkDJj$SMRSOdhrfur3jN6V4qX15lCr12Ov7BfoYmVKXThqLUI= \N f leonardoestar@hotmail.com leonardoestar@hotmail.com f t 2025-05-13 21:47:28.344046+00 +196 pbkdf2_sha256$720000$wEVNGEXBLQJGk1fUz7xaib$wMeTbYfEx5XJpPfBntq1f3zf42ChGAOkJy9BANlXaIc= \N f ammardiab@live.com ammardiab@live.com f t 2025-05-13 21:47:29.109822+00 +197 pbkdf2_sha256$720000$XadH5RgO4eI1V8El9IGg1w$suDctIxgQ/sI40cvFPsEBuoXIWEYXd5DcBENPZXFRfM= \N f maia.rosenbaum@gmail.com maia.rosenbaum@gmail.com f t 2025-05-13 21:47:29.803464+00 +198 pbkdf2_sha256$720000$tRf4wmE0vSfQ8WNAbJ2wyi$LzklefaDrMQhkY6X6qxSabJcBxx+A47qozbMPa2IZ04= \N f florenciaarodriguezz@gmail.com florenciaarodriguezz@gmail.com f t 2025-05-13 21:47:30.490559+00 +199 pbkdf2_sha256$720000$V0BTR74ZSlVdhfVjnbzYsd$ARusuCLJsLqlOBD5o1nGwJcUvCwA96kdMktsNMNGI20= \N f crissvillarroelc@gmail.com crissvillarroelc@gmail.com f t 2025-05-13 21:47:31.086328+00 +200 pbkdf2_sha256$720000$vHDZ6Zz8nBD5akgyEKblJ6$SXZddSnOH+SV5xOzpNbWMjCa9bI/emvBd52weglXBYc= \N f Thomasfinsterbusch@gmail.com Thomasfinsterbusch@gmail.com f t 2025-05-13 21:47:31.782231+00 +201 pbkdf2_sha256$720000$J1Vd15FM4bzryV40dUv6hb$Sjn6XXuMqJm1luRzoJGva7vWXr6eBFBIk6ABWcYFp4s= \N f bani_boyrich@hotmail.com bani_boyrich@hotmail.com f t 2025-05-13 21:47:32.402126+00 +202 pbkdf2_sha256$720000$xxoBoBOWp5HQOJE93XJnwn$AyntGjOfaeDOE3TuGTG0n4goYz3IqxtxdgPxFkcqRa4= \N f paurebello@yahoo.com paurebello@yahoo.com f t 2025-05-13 21:47:33.097058+00 +203 pbkdf2_sha256$720000$ptp13PGLW7277rNNuAmARF$UWvQJ5VhvIp5yd8T4cakCgEmG6z06/+fVyxpC/OMLg4= \N f mercedfrasca@gmail.com mercedfrasca@gmail.com f t 2025-05-13 21:47:33.817201+00 +204 pbkdf2_sha256$720000$flgCMjWNzPIbmpMB07HOrI$3JuItl+UFloRpxFQoUe/BVMdyibIdpOsxkFVlSRj1GQ= \N f ibzarquitecto@gmail.com ibzarquitecto@gmail.com f t 2025-05-13 21:47:34.507226+00 +205 pbkdf2_sha256$720000$yILwxhVIOvv2RyE9OQMBex$Wlqw/YGk1JP3dx9k+ro7JFbJ89VkRpn2slOibhC3j8w= \N f aldure65@hotmail.com aldure65@hotmail.com f t 2025-05-13 21:47:35.208501+00 +206 pbkdf2_sha256$720000$7dpWYdAxokkyLpxyITHt76$s1aUgULcZg30DkV2x4k25fQyxnOunmDnDUGRAOh0CnU= \N f gc@graficacorrientes.com.ar gc@graficacorrientes.com.ar f t 2025-05-13 21:47:35.88968+00 +207 pbkdf2_sha256$720000$ZBrvvotgO4vyQLkjoVLUfV$1zZmlYXn0AonwEzaxFvKOLgS86Eb/+oueBRfnLrrxnI= \N f umaru2000arg@gmail.com umaru2000arg@gmail.com f t 2025-05-13 21:47:36.527992+00 +208 pbkdf2_sha256$720000$waft7g9AB1dzjV4YXLpZ5t$+GLqlX+mSJRXVwvkGVW1prBWqkIPIdEIHY9DuhrHIgs= \N f angelinaquintana_13@hotmail.com angelinaquintana_13@hotmail.com f t 2025-05-13 21:47:37.289993+00 +209 pbkdf2_sha256$720000$9PdscS4Efhy3fMIu4E8mr7$LPGCdQK+YcNExYKldt5/UOpx2HzzDCexzUvZ950qFrw= \N f deff236@hotmail.com deff236@hotmail.com f t 2025-05-13 21:47:38.088603+00 +210 pbkdf2_sha256$720000$GYwF7ft6aNRZ8RHIIVtrOE$fx1OOBoBPlwVnXoNgkGRYb/YLNmtjAjDd6yxJxpIH9U= \N f malagio@hotmail.com malagio@hotmail.com f t 2025-05-13 21:47:39.097998+00 +211 pbkdf2_sha256$720000$At6YsRk1NhuXnCZDfJ7tlW$HQxZCT7Zzj3+n5KxCzSh75J1wZ/x2uy9Y8WNzOQIBos= \N f real.rg@gmail.com real.rg@gmail.com f t 2025-05-13 21:47:39.817252+00 +212 pbkdf2_sha256$720000$zYPWMGisYrUoqfYZgvgZsh$iSEqFGAIG4P9mtfG0cEGqLJED8TzFDMCif/Hcx0to1E= \N f sofiaarispon@gmail.com sofiaarispon@gmail.com f t 2025-05-13 21:47:40.886002+00 +213 pbkdf2_sha256$720000$BM8qcmcmUDk98iGZsL9AXm$sq+ECBT0BFezlZs0nUeN3gK0IZprSir3FAo+R0zBb1g= \N f sergio.back@outlook.com sergio.back@outlook.com f t 2025-05-13 21:47:41.942409+00 +214 pbkdf2_sha256$720000$PitgyipuflIoEIfTlFMPso$he9d22d9rAGPCfftEBN3j9UtG1Vym45IzfhvkiTwtuk= \N f victoriadarriba@hotmail.com victoriadarriba@hotmail.com f t 2025-05-13 21:47:42.549451+00 +215 pbkdf2_sha256$720000$lGmeb0eW3JlhomdCTey4rw$zJow2SrZRFPCgX+PxIVGc20vZsPECTfkgmrHrvWbrGA= \N f nadiabracco.88@gmail.com nadiabracco.88@gmail.com f t 2025-05-13 21:47:43.142732+00 +216 pbkdf2_sha256$720000$rwkPEKGAYhooc5CtKDEyd5$UoaMFk/55wYToLoHunAJ9I6Uthm50MOGW43406hsOu4= \N f fernandezsandrae@gmail.com fernandezsandrae@gmail.com f t 2025-05-13 21:47:43.732489+00 +217 pbkdf2_sha256$720000$gE35fqIR9hv8IHIMcUE2VQ$sQNS7C2W6Ms4q7dQ2VcGb2esGiN8rs/NBi0TPGWvoWU= \N f mariamdonadio03@gmail.com mariamdonadio03@gmail.com f t 2025-05-13 21:47:44.410003+00 +218 pbkdf2_sha256$720000$x5wgCiIts1s17aoFTe8ceq$CkrESjVGnBWx+MRxs2wE4aBB68VoK4R1LnfCaVmuidU= \N f juliomaidana4127@gmail.com juliomaidana4127@gmail.com f t 2025-05-13 21:47:45.077623+00 +219 pbkdf2_sha256$720000$QyKCUEgYt25kVE6GOyWPaJ$boCAoRbksPfBs3zficSgZXtJOuB2reVPTJv4ESfRfo0= \N f franciscomassa95@gmail.com franciscomassa95@gmail.com f t 2025-05-13 21:47:45.769313+00 +220 pbkdf2_sha256$720000$rlHHxRPPwmTtHBTWOgef9R$H66yQHAHoK6CBf0XLSWWTyDfOJtKYgcQWzzvDWBZpcI= \N f carladondero_91@hotmail.com carladondero_91@hotmail.com f t 2025-05-13 21:47:46.427404+00 +221 pbkdf2_sha256$720000$ys6MUxpsGcAMpMsbvMMJPL$D899MN/98iiAkcqcsJ4yeNJXOMLQ5ASDfHHPGKTJKuw= \N f mcorrales1812@gmail.com mcorrales1812@gmail.com f t 2025-05-13 21:47:47.145236+00 +222 pbkdf2_sha256$720000$QOAnSU5ckRdqwIcMAWYflT$dfLGSIXFtJi6xIL3ltJoXSzo90ask0JcjAedz8zsDME= \N f leandromdoldan@gmail.com leandromdoldan@gmail.com f t 2025-05-13 21:47:47.790143+00 +223 pbkdf2_sha256$720000$ahtITCtNXHdfQ6GhSGBrui$HjkBlEvwwSzKFm0cusb4IzAgiYPClQljHj8KVzqKoVw= \N f danyelamaydana@gmail.com danyelamaydana@gmail.com f t 2025-05-13 21:47:48.42664+00 +224 pbkdf2_sha256$720000$ZWSZhyNzuPEpN7b8Q1uJUo$wdCQ+fBGPVPBlIQmy5dHHFfEgfeH2iNLJs4v2j3ZSOM= \N f mpastore@rocketmail.com mpastore@rocketmail.com f t 2025-05-13 21:47:49.097683+00 +225 pbkdf2_sha256$720000$Y43bkyKTODhBHyK7bRntt5$Wv+gGcEYymx4NlUL82+KpC+HzbwYDf+EMXFE0aklJac= \N f ferminfd144@gmail.com ferminfd144@gmail.com f t 2025-05-13 21:47:50.078744+00 +226 pbkdf2_sha256$720000$c6rlZqRhqiZiBZkxNlw7p5$UG4q9zjPBz3me6vi00zdkqZ18EMCL73R1p6mMdpxepQ= \N f facumenendez15@hotmail.com facumenendez15@hotmail.com f t 2025-05-13 21:47:51.019057+00 +227 pbkdf2_sha256$720000$TzBYYBdN6wDSM3XD2ymEM8$Mta+B7vfX1sc1ASxK+rkgw+vO8v+85+Bt9Nrn1IKEFM= \N f Karenfernandezph@gmail.com Karenfernandezph@gmail.com f t 2025-05-13 21:47:51.733039+00 +228 pbkdf2_sha256$720000$m4auSEAbaZy1olx3IrZcep$iS82VwiCM884983wS5y1Qq+zEp4xL9i+ZscQCCZqhys= \N f marita.mara6@gmail.com marita.mara6@gmail.com f t 2025-05-13 21:47:52.393142+00 +229 pbkdf2_sha256$720000$RZrHBqoXEmeQPo75w9fsNN$4+ppEdVHwQrLsYYre91J/8DRp27Ox6G8+LjQXzv33I0= \N f marceduchi@hotmail.com marceduchi@hotmail.com f t 2025-05-13 21:47:53.154545+00 +230 pbkdf2_sha256$720000$zBVhDWCWRLcoJaYjByVM2d$ZQVHF7yFyNJm2X42piQA3JMU/gQ6mnwVx22QNI/Yj88= \N f kony_martin92@hotmail.com kony_martin92@hotmail.com f t 2025-05-13 21:47:53.809952+00 +231 pbkdf2_sha256$720000$FACXXM0pn8YY2cN9H6WT6t$sVPVoU3GweeTebb/zXX6XUjPy4YDpS/JqWWtwhWDFeU= \N f nataliavalenti6@gmail.com nataliavalenti6@gmail.com f t 2025-05-13 21:47:54.506541+00 +232 pbkdf2_sha256$720000$HkA8f9uiZ94TJbN0GeoPzU$Fppg6mk+XDJSG4jey6qrJ816rJTGpW98xgf9iCZIh9k= \N f maxi.haidar98@gmail.com maxi.haidar98@gmail.com f t 2025-05-13 21:47:55.174049+00 +233 pbkdf2_sha256$720000$VmYTo8QrKb4faMmjY4qXFv$TUl7p9bbtR+prJr/a117x31PN+qYd/yaNs7GK5/0DQU= \N f danimora43@gmail.com danimora43@gmail.com f t 2025-05-13 21:47:55.775784+00 +234 pbkdf2_sha256$720000$EFbU4G86Y2vByYtROWuBRe$S7OGLh+b6sHIEXRgTIJlbf8ywhCdp8GzA0WWPNsOQ0o= \N f R.floreenciia@gmail.com R.floreenciia@gmail.com f t 2025-05-13 21:47:56.410371+00 +235 pbkdf2_sha256$720000$OgjVo3kZEx5JPlzsXH7bdD$IfTEQgxP0D9Fg4r48lQNNDRtlK5PanGVAEDpQEgIzJQ= \N f gero.pardo@hotmail.com gero.pardo@hotmail.com f t 2025-05-13 21:47:57.132233+00 +236 pbkdf2_sha256$720000$ziLdFaHGU9pRIGo9xU9wUH$E5d6QtflZhouTvBDXkNP+uZr5eNMQd4ElUHqm/RgE/8= \N f migatoathy@gmail.com migatoathy@gmail.com f t 2025-05-13 21:47:57.812671+00 +238 pbkdf2_sha256$720000$788KLMI85aujaIrTrrh5wm$voEdmPvymRtGZ0bGYZrJhrVRltZPqIO0yTGGx2iW7BQ= \N f lauragarcia985@hotmail.com lauragarcia985@hotmail.com f t 2025-05-13 21:48:00.837902+00 +239 pbkdf2_sha256$720000$xV2sXNZze5mLqHsQKtuyb7$qrznV4XbrhgyQImpBr21in0yypyMEWM3t8Sk8SyVGkg= \N f marielaseo@hotmail.com marielaseo@hotmail.com f t 2025-05-13 21:48:01.441611+00 +240 pbkdf2_sha256$720000$K80IdslS0C4v0mUQypKzvx$sWNEmNlYIo2Cdi41TpFbfLTgYx/8W+kVkls7TW67XDM= \N f priantinicolas6@gmail.com priantinicolas6@gmail.com f t 2025-05-13 21:48:02.105273+00 +241 pbkdf2_sha256$720000$78D21aqVw0SgwvziDs2DiH$hZrQBMh15B1GN1sbddtK8NdYWRlgLyRc634U8Qzaujw= \N f emivw@hotmail.com emivw@hotmail.com f t 2025-05-13 21:48:02.846307+00 +242 pbkdf2_sha256$720000$tEht3771oodEd3csjUMUg7$KEV0DGvCUEhhZqxcnzQ4vQNMXI3TAd7VezI1R2dFXFY= \N f mercado.nico2021@gmail.com mercado.nico2021@gmail.com f t 2025-05-13 21:48:03.528594+00 +243 pbkdf2_sha256$720000$rzlRukG2CeQMJsMzYRO6bu$dhTaRLPKIXNDTZ0H57QQyY1DMNg9JoAMnkB3ib1th7M= \N f malenaarmani@gmail.com malenaarmani@gmail.com f t 2025-05-13 21:48:04.176532+00 +244 pbkdf2_sha256$720000$puc0pQtDT7JLPOwSTO3HA9$iiOBWz1LFxXyMtFKyCB5ReRHn32PRpptF3rcFwr26q4= \N f seacela64@yahoo.com.ar seacela64@yahoo.com.ar f t 2025-05-13 21:48:04.843984+00 +245 pbkdf2_sha256$720000$BP3gmimHEkuM9AlLngkjTL$bYSHHSuFYywSxy+nz0rPXoPPDzh8lh1sVc7kZXPmubw= \N f pachallamas@gmail.com pachallamas@gmail.com f t 2025-05-13 21:48:05.479834+00 +246 pbkdf2_sha256$720000$idGA81U1twkRepzhGjmXON$IEtqQUdy3nR1rlZrceT5H/Y/rld/kjEYBcHxPOI0Iqc= \N f joha_91@hotmail.com joha_91@hotmail.com f t 2025-05-13 21:48:06.134555+00 +247 pbkdf2_sha256$720000$5pCFMS9NQikHfzeHZJavgz$vbtAuJxEVlN3aBvoa1u/H/ce+QWUsV8St+33b9RxaDY= \N f ncamarasa@gmail.com ncamarasa@gmail.com f t 2025-05-13 21:48:06.731208+00 +248 pbkdf2_sha256$720000$y7f3XSwYJSiWTFz11gYIL4$wbViOVbGAk/NUx+4THptWsRuRJykB2f0tw6wGuQ6r5s= \N f mluisinaherrero@gmail.com mluisinaherrero@gmail.com f t 2025-05-13 21:48:07.416301+00 +249 pbkdf2_sha256$720000$xFFwzP4NGAgIeJZWtx6mRF$f8PAIRLHjERcY5qshdODohWguVOl5MtVCgVbrPxTlW8= \N f jebp2389@gmail.com jebp2389@gmail.com f t 2025-05-13 21:48:08.214673+00 +250 pbkdf2_sha256$720000$NNs5TRpa7njhI1rTJSlCaE$KMm8F4GFm6RDv+bGd+HJE0k/ezj2w9QelmzGRru6/V4= \N f flaviopampin@gmail.com flaviopampin@gmail.com f t 2025-05-13 21:48:08.825354+00 +251 pbkdf2_sha256$720000$GgQZ5sXF3xrfJUUFwcZLmO$0VOH+ZTvQ4mNhBTb2sQ8cfUWcyNd2hXtTFf/Ek0PNMg= \N f Candelaurdampilleta55@gmail.com Candelaurdampilleta55@gmail.com f t 2025-05-13 21:48:09.533031+00 +252 pbkdf2_sha256$720000$9d8UPTO9jxds1WXWV8lb7Q$8ph3uBNFSoxs1k6noF0s9pbzCLY6NErYA/UlH5srT0o= \N f ostaizakaren70@gmail.com ostaizakaren70@gmail.com f t 2025-05-13 21:48:10.19437+00 +253 pbkdf2_sha256$720000$miSV77NjRkJwQD595NJdoZ$mHOhzzD32gz9VB20VyUYEEKBRicg5pVhP3bXAx64KZg= \N f adrianacabilla@yahoo.com.ar adrianacabilla@yahoo.com.ar f t 2025-05-13 21:48:10.884677+00 +254 pbkdf2_sha256$720000$Qh80wV2dco3VKbLgQrr7gg$DKU4tqGnKs1kcyfcAEHCn/SZJfu7NS2yH5YbSFU/NZU= \N f milagrosgrandinetti@gmail.com milagrosgrandinetti@gmail.com f t 2025-05-13 21:48:11.665668+00 +255 pbkdf2_sha256$720000$S5fIf0rBTyPvRIx0FP77bS$rmxmd34sC+NTSWV3k/WYYL0GTMZOvSIwGtrCBE+YbJA= \N f Johannacoifman@gmail.com Johannacoifman@gmail.com f t 2025-05-13 21:48:12.366883+00 +256 pbkdf2_sha256$720000$hQb3a0H56r2upicTy8CCzK$QzOMFPmOwzRzlv8ctxIcR1P9+xhOhPWXw/tTX/jB+EY= \N f Riosluz.luz@gmail.com Riosluz.luz@gmail.com f t 2025-05-13 21:48:13.010488+00 +257 pbkdf2_sha256$720000$bAYtMFqdYZxFlr6iht0jIJ$FZvUxCYPZB+Ej/RtDb9mlIYE5iMUznX80uyyKJCzDhc= \N f mf_pena@me.com mf_pena@me.com f t 2025-05-13 21:48:13.597815+00 +258 pbkdf2_sha256$720000$iqOgz1f9QA81GLhbtb1nGi$GyZAlba+ToxOeomuy2IKoEtdjjJrQWoqVn5c8ooA9sM= \N f Caroghio@yahoo.com.ar Caroghio@yahoo.com.ar f t 2025-05-13 21:48:14.235725+00 +259 pbkdf2_sha256$720000$LCJJz3nCHy06eRyLdYP21N$n8Pc7Pgl9qENoP9CHNNlpPbvWhCuieVrqaQa+26eL28= \N f milunagatuna@gmail.com milunagatuna@gmail.com f t 2025-05-13 21:48:14.896431+00 +260 pbkdf2_sha256$720000$q3B0UQ8ToBozYDMmCayWho$YXEKKUuhwZ4DPFxTCTNhi7Hlkl5w/m0tFqwSTS94g44= \N f pablo@soto.com pablo@soto.com f t 2025-05-13 21:48:17.201711+00 +261 pbkdf2_sha256$720000$SqNC0I3IxgGI9QkZfDdLID$b7OEJmU8l5ybBy7GWCBJdwETi7xrvxyCJMjZnXcw2aA= \N f dianazamora.mercado@gmail.com dianazamora.mercado@gmail.com f t 2025-05-13 21:48:17.795992+00 +262 pbkdf2_sha256$720000$cuVU8JIWJoxk9gegqn8kQI$BPoq5iE0dLTSLUZrxatFE1QhRNIjT4e6nZIHYE9esFI= \N f margalunaferraro@hotmail.com margalunaferraro@hotmail.com f t 2025-05-13 21:48:18.432588+00 +263 pbkdf2_sha256$720000$ycrAO4nBG53DtjkhFlStNo$HjTdinJLv5atzoJ/H8Fkl3Dj8F6wY5zcUix4JK2Wp/s= \N f martinavelasquez53@gmail.com martinavelasquez53@gmail.com f t 2025-05-13 21:48:19.026088+00 +264 pbkdf2_sha256$720000$JuQpDPrYtgu8mlq1cUBAFe$KuSgXL5qZy5EJXo+ukfEwThRCsr1gUCplMNvbswUkeU= \N f pau.f.lencina@gmail.com pau.f.lencina@gmail.com f t 2025-05-13 21:48:19.643064+00 +265 pbkdf2_sha256$720000$pS8CNtHcdul71uCRQgbsJ7$7Q/Ytc1UglyPAuTU7oWxAS3rsQpZMECcA0rxAHGK0eY= \N f herdavaar@gmail.com herdavaar@gmail.com f t 2025-05-13 21:48:20.309296+00 +266 pbkdf2_sha256$720000$UxXRBqpmdKJHyvIxbJNfYP$P9dn78bbrrCOOGzyrOunmKffMA1VbHAFV31ZMcmhFPk= \N f sosa.melina@live.com.ar sosa.melina@live.com.ar f t 2025-05-13 21:48:20.938798+00 +267 pbkdf2_sha256$720000$1F99LEs1aIW02S254vXIp2$yx84ms8QJGeSe5znNYcb5EZ8LuJqoW38mtF6iDuwH3g= \N f lilian.echeverriaramirez@gmail.com lilian.echeverriaramirez@gmail.com f t 2025-05-13 21:48:21.54267+00 +268 pbkdf2_sha256$720000$LidGF4O1466RNKDZ04Lov2$3x7EOSHw6l6cFpiupynvlAAsgAvjN8WNKQiyxlLcnls= \N f Melissac0506@hotmail.com Melissac0506@hotmail.com f t 2025-05-13 21:48:22.276856+00 +269 pbkdf2_sha256$720000$OAXjuBcXMGEfsFsfPgZJW2$idr73h+zJNgLLoJ7QQdi916A0NpnxMldcqLxu0tm7i4= \N f solangefogante@gmail.com solangefogante@gmail.com f t 2025-05-13 21:48:22.91776+00 +270 pbkdf2_sha256$720000$Igu3MSerVUIC3Vr5KWJtjE$uy++Sd155b30XZuWrAJn+NaOw6zxZDxuLL5L1gKwpRg= \N f miguelezmonica@yahoo.com.ar miguelezmonica@yahoo.com.ar f t 2025-05-13 21:48:23.522257+00 +271 pbkdf2_sha256$720000$Z6ZyIgFEUzhqg0MdmvImIS$J4oNcHrX76n+UIf69ga1qqDnuCGSsiUtUENjgiuJSgY= \N f lauretis15@hotmail.coml lauretis15@hotmail.coml f t 2025-05-13 21:48:24.124127+00 +272 pbkdf2_sha256$720000$EeLvdPfGUvyRPUuHd5l2cU$UShr4lTmh/UChCpc+ByeGcGPyGrUx/+FTkvtDU97/v0= \N f guillermina.garcia.187@gmail.com guillermina.garcia.187@gmail.com f t 2025-05-13 21:48:25.163338+00 +273 pbkdf2_sha256$720000$JBktwkSytrPvBhKYJJQphF$Otf7vkT49FV5akKIlNm93sNAUnZnc3D9NucKU6lwZi0= \N f silpiras@hotmail.com silpiras@hotmail.com f t 2025-05-13 21:48:26.294596+00 +274 pbkdf2_sha256$720000$qhzBxhpNQ38CQ3xYAmcfYi$+kYZC3hw+tZrAOluB0xsG0y/3xFmTg3f03Wd0RoYXIU= \N f ivannasinopoli@hotmail.com ivannasinopoli@hotmail.com f t 2025-05-13 21:48:27.02482+00 +275 pbkdf2_sha256$720000$PKAmXznvq21eCh9iIUkwQj$2jT9R6lo0m04brWHke8RyahH03ZezBuYcRKy14SHMII= \N f albasoledad92@gmail.com albasoledad92@gmail.com f t 2025-05-13 21:48:27.653642+00 +276 pbkdf2_sha256$720000$MarAfbPETywoh1WTC8JwRn$pjV0NPRhWnHe2kXtvxVMtO9W2+x5ZTPGKni3jtnrTUk= \N f lauespinosa33@gmail.com lauespinosa33@gmail.com f t 2025-05-13 21:48:28.392323+00 +277 pbkdf2_sha256$720000$TFdddUzGTl9ZYZbZX7KdOA$mBu7Y7Sfjl4n68o9mdhxMavctk6ycnWScqykuvplka0= \N f valzya@gmail.com valzya@gmail.com f t 2025-05-13 21:48:29.223056+00 +278 pbkdf2_sha256$720000$ADuzqzLZDd4DYdq1KbVHAT$SuPFYKW9LeyvLSTg2VQOZ5wcfCRbw31l11QiV2RxEBE= \N f mcvalazza@yahoo.com.ar mcvalazza@yahoo.com.ar f t 2025-05-13 21:48:29.840391+00 +279 pbkdf2_sha256$720000$FyLupaQjpz6ucOAJEkMWza$+TSU3ijeuzKMPsBxgXlkdZ45xl/wiw+H4OCbDgIv1Bw= \N f Mora.urza@gmail.com Mora.urza@gmail.com f t 2025-05-13 21:48:30.528081+00 +280 pbkdf2_sha256$720000$GEfUu6Rgq7WFotU9WwIVZk$nPIwHu6e+Dh6ZJ1aSEzqJDf2V8RhAobdQ/Ho2hEB0Yo= \N f biancadaleo@gmail.com biancadaleo@gmail.com f t 2025-05-13 21:48:31.276989+00 +281 pbkdf2_sha256$720000$mO9uKuNNMmQ7y7jkCHEdye$+zo9wCLb8UfgIM9j68Nfqf0+BpbP9iAy9MbYLkK+SoI= \N f urdapilleta.analia@gmail.com urdapilleta.analia@gmail.com f t 2025-05-13 21:48:31.876308+00 +282 pbkdf2_sha256$720000$PneY7mnWrDCFGhmFm4xYpD$1ApprmD+Jp8Lg3W4IuIBDbf+IpLoESFqAqLD03wsli8= \N f pablogiam@outlook.com pablogiam@outlook.com f t 2025-05-13 21:48:32.49912+00 +283 pbkdf2_sha256$720000$2dXMXPJGQN1DgTFOsVWCp0$HO0mTxlZkp8M4RUSCiCam8rSLt1/vTHVokCvaI2O/kY= \N f ericabarrueco@gmail.com ericabarrueco@gmail.com f t 2025-05-13 21:48:33.086054+00 +284 pbkdf2_sha256$720000$K1GKlon77pZC2CgKM5ZXU3$XtiKB1uJ8T2OowTYPSPgtAcvLHX3jLg1owZ9cohpmRo= \N f micachini_1@hotmail.com micachini_1@hotmail.com f t 2025-05-13 21:48:33.719749+00 +285 pbkdf2_sha256$720000$hi7GqrtmllRoZgfssapaAI$6J0ZwmGBHVWTCcgUj3rkPN/W8Vtf1qINP5Qa4m9M4c4= \N f medubatalita@gmail.com medubatalita@gmail.com f t 2025-05-13 21:48:34.448909+00 +286 pbkdf2_sha256$720000$qoFS5rZ8exU7xDIL08uOzL$USykyeb/cRogGgc0q41RLXZ8PGhrLiTQnpNHZK6cFVc= \N f Torraagustina@gmail.com Torraagustina@gmail.com f t 2025-05-13 21:48:35.518588+00 +287 pbkdf2_sha256$720000$z75QfKAcnoUxm69HiFBZWf$zRnA2RdhdJjBIdKvyLYPoadL1+5drrpJLGsUYbICfVQ= \N f psicopedsusledesma@gmail.com psicopedsusledesma@gmail.com f t 2025-05-13 21:48:36.173744+00 +288 pbkdf2_sha256$720000$0zL2V6R0YJwQR7SNZW9nEe$mcn/YGtudQFHkI61m7M4e22ZN4DJnGmRnntZtEoYxa8= \N f marcemar2962@gmail.com marcemar2962@gmail.com f t 2025-05-13 21:48:37.039812+00 +289 pbkdf2_sha256$720000$EZbpe4FVlpYVfVgvmNAXsC$WJ4kNP9rZ6SkvGNuQcGQhGeGypHi28N0wNJJg4znwPQ= \N f rafael.villanueva.orsini@gmail.com rafael.villanueva.orsini@gmail.com f t 2025-05-13 21:48:37.700234+00 +290 pbkdf2_sha256$720000$bvWF3QVwneLKeQBEn9eimb$MSf13xAac/zuY9J7Ikpv61J3e1Z0tfRxf17DGIWRfgk= \N f Arianamedica@gmail.com Arianamedica@gmail.com f t 2025-05-13 21:48:38.349238+00 +291 pbkdf2_sha256$720000$qR0ZKpQDloufFfEXTCXqzv$qaQ4wFXGtvVMjRMyWhFqzugPBTfv6eoRXJW8KKbFiak= \N f rjalvaradr@gmail.com rjalvaradr@gmail.com f t 2025-05-13 21:48:38.965827+00 +292 pbkdf2_sha256$720000$iF0gLGJHS6uRDk9yIZRNW0$XN2xzuwxY9mNx+flfCC2/yX00FSFiPb9sYdEnt2VlIM= \N f cjfb72@gmail.com cjfb72@gmail.com f t 2025-05-13 21:48:41.253838+00 +293 pbkdf2_sha256$720000$d4oBY1gkZjfnqoOecKuKZL$ecGqIg1XXyFk42WRCVL1CVPONX38/vS/W2vOeHU7YxQ= \N f liamaraciotola@gmail.com liamaraciotola@gmail.com f t 2025-05-13 21:48:41.900379+00 +294 pbkdf2_sha256$720000$equHG7dlnUELtKUspc3M5O$HpPIjGda4qKMiByFVwqRL5q4AY2M3IKMlTQpCYNkiqc= \N f Marcela.gleiser@gmail.com Marcela.gleiser@gmail.com f t 2025-05-13 21:48:42.781917+00 +295 pbkdf2_sha256$720000$g5LzLE1HCLOzLMUoJbgdPV$ngodsF89lSj2e1UNap6iLx8IDCScp5nYBAI5g9R+8UI= \N f nazarenads@gmail.com nazarenads@gmail.com f t 2025-05-13 21:48:43.464612+00 +296 pbkdf2_sha256$720000$xwZ3Gll9yd9E2b65UCHZ7f$HR69Wp3C5YiFMPd/sygkioXX4UVJhMS6Pyy3IXtQI0k= \N f talitasouzapaulino@hotmail.com talitasouzapaulino@hotmail.com f t 2025-05-13 21:48:44.082759+00 +297 pbkdf2_sha256$720000$Omrsra1olNFJsMFL5NGIRt$dHIXDtG+ENg2rDh57WbpS6iLPTOXwq2NTftLRT/JKIc= \N f Valentinoa.lociski@gmail.com Valentinoa.lociski@gmail.com f t 2025-05-13 21:48:44.825602+00 +298 pbkdf2_sha256$720000$XSBv6HE4OtSX6cQdZdZo9h$h5csttBUzqartSc42/q9IPtBmw5ye3UPGj3r+lHwn3Y= \N f agustinaestors99@gmail.com agustinaestors99@gmail.com f t 2025-05-13 21:48:45.430547+00 +299 pbkdf2_sha256$720000$MF9UdJbXgEhx6qHYEEsGsZ$P8yMlr2zmtioNNyWYq0WeNVw7Nt6gLbtS5Vj1MhOoDY= \N f sofiblut@hotmail.com sofiblut@hotmail.com f t 2025-05-13 21:48:46.046184+00 +300 pbkdf2_sha256$720000$EEKSjxzkYxOwe2VRv7MU1B$dfJg248xF+Qg576KKEYdxJE+8agjz7ayv40OuQEOZ0Y= \N f ositaossa@gmail.com ositaossa@gmail.com f t 2025-05-13 21:48:46.6137+00 +301 pbkdf2_sha256$720000$hV5fugS5ANFG4D7dLdDD6T$PV8Y+vVoRQ2mdWvPIWWcivJ4cmuVK9PdHKKNO9zVGPk= \N f matelicamarta@gmail.com matelicamarta@gmail.com f t 2025-05-13 21:48:47.334399+00 +302 pbkdf2_sha256$720000$FFIf52xysrWiQxw4RBUgux$8aOAWYB4lyrhB4swDtGM3gzXc6H4nii+uRuO2CReEg0= \N f Osara0607@gmail.com Osara0607@gmail.com f t 2025-05-13 21:48:47.967017+00 +303 pbkdf2_sha256$720000$z05Z8AvnOETskjqYBnKgmO$sRhYkZawjljLgeZMXCkdpCQu7K0W4F33Gov7EVUXzbQ= \N f lucasutn@gmail.com lucasutn@gmail.com f t 2025-05-13 21:48:48.580538+00 +304 pbkdf2_sha256$720000$nyUa3xXwxdTnYy55k2dXKt$xAi48Spl7iRl1E983+3N2xsmTn6P1Hrj8Hu1U3DPyJM= \N f veronica_garciatunon@hotmail.com veronica_garciatunon@hotmail.com f t 2025-05-13 21:48:49.231801+00 +305 pbkdf2_sha256$720000$tNJL5z8T7YzZTw8CzyUd2t$vGDXymDhnJ448CyVbzztrXabwcGtueCDmFMdBYOb+Ns= \N f cejimedon@gmail.com cejimedon@gmail.com f t 2025-05-13 21:48:49.853984+00 +306 pbkdf2_sha256$720000$HjLKdfOmm7eZNFAJcxAqpL$BDr0CWY4MjZnQGvWCphxkk0LZD3Id3tliL+hkNUoS3E= \N f gracealeja1@gmail.com gracealeja1@gmail.com f t 2025-05-13 21:48:50.499124+00 +307 pbkdf2_sha256$720000$gUlJHmpwXBIyfLwvY7oJJL$u9FREXuY1dsl+mj91ItK0KJbeufsFR9nqyP8Uy8Vhxk= \N f ganemlucia@gmail.com ganemlucia@gmail.com f t 2025-05-13 21:48:52.794169+00 +308 pbkdf2_sha256$720000$DcKAppxd0eDYXzQxD5fqY4$WT+VvRoYaVOv8jezikFwylg0a7hn0rRTDRB3kJg/6tc= \N f Laarasequeira1@gmail.com Laarasequeira1@gmail.com f t 2025-05-13 21:48:53.414361+00 +309 pbkdf2_sha256$720000$P7PGp6WQMH9hFwxKnycUsP$bQyTK5A/HCtpFiYSiQaQvonge2GCFP/BcjshVyWQt8E= \N f adriana.vetere@gmail.com adriana.vetere@gmail.com f t 2025-05-13 21:48:54.00031+00 +310 pbkdf2_sha256$720000$a6jqfYeGZF7i4qZzCUjPPz$5QqKkYtCCY5sj1nvnTg6BZnoPj412XTNhiX8OwhSisE= \N f florenciambrajer@gmail.com florenciambrajer@gmail.com f t 2025-05-13 21:48:54.568207+00 +311 pbkdf2_sha256$720000$xCpUITEnaBdzUpaunEaXPh$+oDAc147f8hyM5ZqgFdi/4eStihCVh2mlDghuCmFkQQ= \N f gabiveigas@hotmail.com gabiveigas@hotmail.com f t 2025-05-13 21:48:55.170485+00 +312 pbkdf2_sha256$720000$hZFtcAOsRT5NEx76WsP42A$Ufn/uUtALlPwlgHFgrof8vYqVEGLIAqGidtxaACPdHg= \N f Sfernandezzp@gmail.com Sfernandezzp@gmail.com f t 2025-05-13 21:48:55.821897+00 +313 pbkdf2_sha256$720000$SLNkWQvovbxLZiDqge7x7v$CWP1qzeaqha6bTs4/D6mFhtUjgA9N3LxtzuOBUP05Ng= \N f carolinabroggi1981@gmail.com carolinabroggi1981@gmail.com f t 2025-05-13 21:48:56.472277+00 +314 pbkdf2_sha256$720000$6NZASyMaAzeLDlZSkmnbQT$SS99WvLPHxRLCYZJ4MYjelFR8Yhc6MErLM7JGCGf0RI= \N f vaamonde.claudia@gmail.com vaamonde.claudia@gmail.com f t 2025-05-13 21:48:57.16089+00 +315 pbkdf2_sha256$720000$MxD3sxW4aaJdYnj4FHyDsd$AdF5bBmL17xbb+5ZsU92Ux9EHiHdbVkCnbeB8hkQZtM= \N f mirtalib_2000@yahoo.com.ar mirtalib_2000@yahoo.com.ar f t 2025-05-13 21:48:57.85069+00 +319 pbkdf2_sha256$720000$PE326WvDIHvSKB5QH3Gc0h$hM3IBH3evs25N480K9hJXmM83ma22IQUJbjG4ooBb2A= \N f andreadrolim@gmail.com andreadrolim@gmail.com f t 2025-05-13 21:49:00.339798+00 +320 pbkdf2_sha256$720000$SHGBAniHq8JwNPbFMCHaJa$jZ0DUKSDXUvdsh/kNa0W66FkJreipqztRoYl2kzRpSo= \N f gmartinezcaceres@icloud.com gmartinezcaceres@icloud.com f t 2025-05-13 21:49:00.931029+00 +321 pbkdf2_sha256$720000$oIPSCUaeivVo4zX5UAvVXl$irrqWTTU/SUhqxKr5W8b4XvxRCmhNJiPc6UjPk4TxLA= \N f isabelgonbet@gmail.com isabelgonbet@gmail.com f t 2025-05-13 21:49:02.006204+00 +322 pbkdf2_sha256$720000$RGYKTu3ZOQCYfzqs57lKw2$HWAWBcJAcgUB6R+fNnAgR6yCnWN22TTeQ9s1ZJi6f88= \N f guidc68@gmail.com guidc68@gmail.com f t 2025-05-13 21:49:02.875517+00 +323 pbkdf2_sha256$720000$qLKDz1f8uirN2cqChc4feA$rrUP9RU7eugX7+7HSkcEkofA1kq6NVaB5wPf3LlfGsA= \N f marcheloveron@gmail.com marcheloveron@gmail.com f t 2025-05-13 21:49:03.62981+00 +324 pbkdf2_sha256$720000$HGFlPoqzGpYE00irfpR5kg$ONsAtMqsSsFfKMs6ThCoadSZonXG6zCkWvTrkG9ntzs= \N f sofiamigoya62@gmail.com sofiamigoya62@gmail.com f t 2025-05-13 21:49:04.241579+00 +325 pbkdf2_sha256$720000$NceJVsMxh5zwFiW1pBjWEX$4wWYL4IKY+1zGyis7nxyfhuhr/4uRJacGOi6FtJrT6o= \N f memipa69@gmail.com memipa69@gmail.com f t 2025-05-13 21:49:04.971816+00 +326 pbkdf2_sha256$720000$MDVTQjNJnHGlqIrjd1JaU0$3Wdra/MAbdetdlJw2ApetGLDxcFuyeR3G1pc+acEOu0= \N f mgergich@yahoo.com mgergich@yahoo.com f t 2025-05-13 21:49:05.784902+00 +327 pbkdf2_sha256$720000$jxusdK0L4rrsdu0ACc6zOO$/yxey0tlcJRJXEUy1+aBTg9yHN/6Uy5qjf7W4Pvq77o= \N f tincho.barrientos@hotmail.com tincho.barrientos@hotmail.com f t 2025-05-13 21:49:06.41796+00 +328 pbkdf2_sha256$720000$nrhwgVC92vZJSPgEQdaRC2$KC6knja5RQj1bMhTmLb3Eg0ecU5FKJsSDcxooEg2b/A= \N f Sebamezaa14@gmail.com Sebamezaa14@gmail.com f t 2025-05-13 21:49:07.014235+00 +329 pbkdf2_sha256$720000$PzkEhWMWGh5hewEFkJbqlF$LkFwOTFj7+/W1HEyZ39vrzrFC/3QLKujZHOEmXlTQv8= \N f Thaimed.joinville@gmail.com Thaimed.joinville@gmail.com f t 2025-05-13 21:49:07.66643+00 +330 pbkdf2_sha256$720000$gdBAefYhB82d5OnBqUojd8$JKrMlSaKQGL1MNfvTRy/I24hn2ol7lXUv+an2YGY2kE= \N f cynthia_binaghi@hotmail.com cynthia_binaghi@hotmail.com f t 2025-05-13 21:49:08.27171+00 +331 pbkdf2_sha256$720000$XPQkYmfCvvpv2pfnpdhKKd$KT5SZwmx3B/iZspk5yoEjsFdy64PY/7XgUVXwZWW72U= \N f mzazulina@gmail.com mzazulina@gmail.com f t 2025-05-13 21:49:08.948139+00 +332 pbkdf2_sha256$720000$ux9RZq4tUZ6aLRWTi9dt2G$Zi+G97UddrFB13STPMi0wH9WENQ6LVm6SvDTyg9bwFU= \N f pedemontibruno@gmail.com pedemontibruno@gmail.com f t 2025-05-13 21:49:09.554018+00 +333 pbkdf2_sha256$720000$djej8nv0945T4NS57UyKBr$NCZ8ElC8O+a+yn5txuu2uDQh5mLr/fPz9IVeZr21ueU= \N f maviru1990@gmail.com maviru1990@gmail.com f t 2025-05-13 21:49:10.146117+00 +334 pbkdf2_sha256$720000$j4ptLt2fKleP8UDBkK8CnZ$yqh7oQt1OeGSfpV0vLNGPqJbSerajf4XlLCku8wLX6U= \N f leontscarrasco@gmail.com leontscarrasco@gmail.com f t 2025-05-13 21:49:10.765441+00 +335 pbkdf2_sha256$720000$6q9zGcFGxaO3tq0e5ojOjH$74s6JqfV5NV3ln6Ijy9tKONzrx1RdeONw5q+svN0xHc= \N f jeanemiliano@live.com jeanemiliano@live.com f t 2025-05-13 21:49:11.371835+00 +336 pbkdf2_sha256$720000$gtQlspN8m7bv1caIHDUowf$bIlyxbTsEt4QPEB/Fby5ayw2+uk1oebK/kJt2Pt4HTk= \N f marcegullota@gmail.com marcegullota@gmail.com f t 2025-05-13 21:49:11.954188+00 +337 pbkdf2_sha256$720000$YUHaqjl27s49gBEVfLO8X2$w5w45M5EFJzmXdrn0wAdf9wJ00amKwNz4+TX/gL0OdA= \N f lucas.petringa@gmail.com lucas.petringa@gmail.com f t 2025-05-13 21:49:12.713964+00 +338 pbkdf2_sha256$720000$bHJ830zcRuW2SSXX6loECb$HM/KPhEvblvVvvcePEKFLdhm+yDRB40Ew752L1DEp/w= \N f hrangugni@gmail.com hrangugni@gmail.com f t 2025-05-13 21:49:13.332785+00 +339 pbkdf2_sha256$720000$UV0KeoAT6WC2BuVNUjLCfT$E3eADimm8Tw10+rI3xBb/vksukwmHkpsWlC1pahvMxo= \N f micaelalodeiromerino@gmail.com micaelalodeiromerino@gmail.com f t 2025-05-13 21:49:14.075994+00 +340 pbkdf2_sha256$720000$ewbTfx25Uzq1V5Jplxe7mA$kLA85bMoE+ButGkWky6feckO972lrQF83GaZU9O+lUo= \N f marathearchitect@gmail.com marathearchitect@gmail.com f t 2025-05-13 21:49:14.673227+00 +341 pbkdf2_sha256$720000$yQtP9LZnfJoZrMCAkYaG8n$SWa742kxMO47YdZWmEUrbDdmQRqf+EXohaSXNEeEBok= \N f anita125_@hotmail.es anita125_@hotmail.es f t 2025-05-13 21:49:15.323538+00 +342 pbkdf2_sha256$720000$IZItk8nj40cBK5AzBO6M4Z$LbGvGjCe3ERQOuk852miw1MmFlHMYSF63rxsgF6MPPI= \N f lucila.matrangolo@sandbox.game lucila.matrangolo@sandbox.game f t 2025-05-13 21:49:15.948915+00 +343 pbkdf2_sha256$720000$QKeHgsICOZ8PwGhzK1rsFY$3pgNnF9Zmp1/CEhp6H5GZqpMaC9Nns/rLCl8JT1zn/8= \N f Caroltibi@hotmail.com Caroltibi@hotmail.com f t 2025-05-13 21:49:16.586156+00 +344 pbkdf2_sha256$720000$1xq2IAizbHWW7F21lnUCLl$eW59xZjOzH//u7NKQvZpF7mpCgaR5eGUrUekJL+v4hI= \N f claudiapupillo@gmail.com claudiapupillo@gmail.com f t 2025-05-13 21:49:18.306942+00 +345 pbkdf2_sha256$720000$BN78yFesYvzxTLUCWegxNw$5LuGdHhlRS0kAyB2CH7YuDC7b/GsQKXCoNMh+AFOLGg= \N f nsaguayo@gmail.com nsaguayo@gmail.com f t 2025-05-13 21:49:22.665095+00 +346 pbkdf2_sha256$720000$GraVU1nYcepv8clOqJFsJK$MlA7crZdPzKfAlHuYjhsJfFg7/POFoR/zXxXzXNwEgM= \N f cristina.weiss.kuhn@gmail.com cristina.weiss.kuhn@gmail.com f t 2025-05-13 21:49:23.391958+00 +347 pbkdf2_sha256$720000$HqNQgTUsAuzSi7Ian8jl2A$PXXMzT/DRtZ84Xhx4u7cTamHtzbEfJSgeh/4nCdSxIU= \N f esteffi.15@hotmail.com esteffi.15@hotmail.com f t 2025-05-13 21:49:24.164014+00 +348 pbkdf2_sha256$720000$gwV4apww8kd9YavNVYzYmV$fqNpWqIhLClhtHPd+CmGhIhHrEY/QSpWw1gaO/eZuCw= \N f elisa.zoppi@gmail.com elisa.zoppi@gmail.com f t 2025-05-13 21:49:24.750379+00 +349 pbkdf2_sha256$720000$SYbbJTHapBEeXl4HUfaYX2$f9vGZ0NfUU9h5+iF8PvVH7OaGiqwztRb3SW+P1aWyuo= \N f emiliavilardo@yahoo.com.ar emiliavilardo@yahoo.com.ar f t 2025-05-13 21:49:25.317027+00 +350 pbkdf2_sha256$720000$Hf5nn4i2DINdMZN3aOUsuY$InHUgtjMMBQesy3O11qT7IE1A5AjeVCKM+xPT2zW+Ic= \N f Yanina.santino2508@gmail.com Yanina.santino2508@gmail.com f t 2025-05-13 21:49:26.047481+00 +351 pbkdf2_sha256$720000$ycWZhdmrPO9lreOgdNNi3g$j6tJ/ynTImTxQrcAO2sp5xBXU1l3+gDGHfU1+YevhlY= \N f sebavilas@gmail.com sebavilas@gmail.com f t 2025-05-13 21:49:26.652822+00 +352 pbkdf2_sha256$720000$IXEBs6PSKkCCwYkVJ7iwNg$I4OLuT9/BKXDgqtrJ4Wb7/Y7O/jNcXMQPiLd8Ao9dNI= \N f Enformapilates_mabel@hotmail.com Enformapilates_mabel@hotmail.com f t 2025-05-13 21:49:27.301869+00 +353 pbkdf2_sha256$720000$WIZHLg09wQRBuA7E6wFZEq$svp/7r1ubV4ZDKfyZCLTsJx3K7KyZZ6A6jHKvWTBsho= \N f Antonella.ainsaurralde@gmail.com Antonella.ainsaurralde@gmail.com f t 2025-05-13 21:49:28.584676+00 +354 pbkdf2_sha256$720000$AotHx36bNKITREbS5akmcj$jra2h6EGluTugfWod5kUNpm8ZA3g/86i1tKAJ9eS2Mc= \N f gabrielagrusc@gmail.com gabrielagrusc@gmail.com f t 2025-05-13 21:49:29.22233+00 +355 pbkdf2_sha256$720000$SMWFiFw8FhF1GsEOTXwaHR$jqw/T0l37r/2hxHVYskCs7gHfQIELuBQtJPuUxZUEQk= \N f lorai.jma@gmail.com lorai.jma@gmail.com f t 2025-05-13 21:49:29.834468+00 +317 pbkdf2_sha256$720000$J2Lc109M1Zd5Af6ijy1UWL$sZ+BJC1xdLocYWHjg+rYTQvlo5RaR43/9ImP1F8eyVU= 2025-06-19 04:54:33.064299+00 f alaraignee@gmail.com alaraignee@gmail.com f t 2025-05-13 21:48:59.143725+00 +356 pbkdf2_sha256$720000$I5Qywx3mH0Up1fLlNlAVCd$SYHu1nAL2NdbWuxPhLAqpZnORBr/HKy3zruJLJOx6Iw= \N f m_agus_tina@yahoo.com.ar m_agus_tina@yahoo.com.ar f t 2025-05-13 21:49:30.457354+00 +357 pbkdf2_sha256$720000$VYST9ke6M7hF1dxmEDo9w7$aUuDr9dihgU9k1kbKtcvQ/e8Si0HZSEJ/idIR4m3CTQ= \N f carolinamyriambianco@gmail.com carolinamyriambianco@gmail.com f t 2025-05-13 21:49:31.376275+00 +358 pbkdf2_sha256$720000$qS7NQkQnI7eHNnQSkZQxbb$MEGG1KSMONZEJsBO5MP0FeAHKSwmoFpgRMeP7RAaQIk= \N f Manololamas1946@gmail.com Manololamas1946@gmail.com f t 2025-05-13 21:49:32.138779+00 +359 pbkdf2_sha256$720000$Tt7bnLTwVOZoyyaLTeypQg$6hFT1fhK64knRMx1+K7jySvKdlfIT4VprVpz7k1jOzg= \N f ceci.grosso@hotmail.com.ar ceci.grosso@hotmail.com.ar f t 2025-05-13 21:49:32.846783+00 +360 pbkdf2_sha256$720000$N1FuQk7n4UC5e24ChQczCs$J1ustBOLVo2j5t9hf6YlN0xuYjyQ+BD0r5/ctu7LUAU= \N f clara.vasco@gmail.com clara.vasco@gmail.com f t 2025-05-13 21:49:33.459593+00 +361 pbkdf2_sha256$720000$2KKXVJ0aWb0U2uLfb96EVa$6WZuKwreHyTQRaPeMsZh3MGwA0koKsyTY/eLk+hzvP8= \N f eche1090@gmail.com eche1090@gmail.com f t 2025-05-13 21:49:34.061415+00 +362 pbkdf2_sha256$720000$xZYYGjx596m4bUlNB2RkTp$5vKLCWFqguQZGSQxrE0uSi68kAV5F/2Vy+3qKxjs9UU= \N f echegoyencristina@gmail.com echegoyencristina@gmail.com f t 2025-05-13 21:49:34.786042+00 +363 pbkdf2_sha256$720000$JwEIYLAJdn0H8Y2I1Dt5Dk$22kpSaPysV4tjXRCRYTM02bziSNF57X3aOjx8Sp3KuI= \N f lvillanddill@gmail.com lvillanddill@gmail.com f t 2025-05-13 21:49:35.690562+00 +364 pbkdf2_sha256$720000$nHdbZM0kAUEAyueUVgFy9x$7Qz+eoYfKobG1urplLxQEwdE5z+nk/mE1q+2IviBi3o= \N f marianievesperez@hotmail.com marianievesperez@hotmail.com f t 2025-05-13 21:49:36.296856+00 +365 pbkdf2_sha256$720000$QwF8lGh2K6iMEGiqXcqpA2$kpwlzgiCX+QsTfJ/vB7JEtF53/ITu13sk5kZlIGqkqM= \N f redpadres@yahoo.com.ar redpadres@yahoo.com.ar f t 2025-05-13 21:49:36.909714+00 +366 pbkdf2_sha256$720000$zWAt1EwgdV7NFzJVg6C7Np$VNPW/cfoeiyX7ilU1c52PtDOQeGGKGH3HGVbG19Cv0k= \N f sabricoto@gmail.com sabricoto@gmail.com f t 2025-05-13 21:49:37.836138+00 +367 pbkdf2_sha256$720000$gmkRAeH9p2rgObAvE4JUZF$3c6sJjpMNaX63Oh7N/WGKdD/3UTxXKYY0sujyPwMXS4= \N f claucesarhiga@gmail.com claucesarhiga@gmail.com f t 2025-05-13 21:49:38.813934+00 +368 pbkdf2_sha256$720000$Pz5iVSyxlJ8Asx44AUZXXe$5QNcySoomfnDPcEhqSaQDDa6WbwFw8SvYgXfeNvFmtY= \N f karenmargareth46578@gmail.com karenmargareth46578@gmail.com f t 2025-05-13 21:49:39.680354+00 +369 pbkdf2_sha256$720000$6VKwukgg9jh9E4mkUN2EoS$kmfZeSljsnHBW2RBQvqSzUvIUldXvPrwUnRHmfe0/Ok= \N f masefer6@hotmail.com masefer6@hotmail.com f t 2025-05-13 21:49:40.510325+00 +370 pbkdf2_sha256$720000$oR9CbCLd1y35bDe5I64KgS$DXpLasY4Oqqy4SAISO5h4T1v/n9W4dRHRXzTLIpCGbA= \N f andycmolina510@gmail.com andycmolina510@gmail.com f t 2025-05-13 21:49:41.173168+00 +371 pbkdf2_sha256$720000$0zr8f1qjklXqfryNALcKnu$5r8ZUJs9ogYPOpto6uYkZ4NzwHZam54owHj9lUWgYvg= \N f Agustinagomezloffreda@gmail.com Agustinagomezloffreda@gmail.com f t 2025-05-13 21:49:41.95868+00 +372 pbkdf2_sha256$720000$9ZtN2Ne1RnJMpvKyYj7mqX$ZbxKLvwrYMZUuwc0NJR8NAquitDuKez92VSVgO1q/tM= \N f nicolasmendezcasariego@gmail.com nicolasmendezcasariego@gmail.com f t 2025-05-13 21:49:42.689336+00 +373 pbkdf2_sha256$720000$5vkhvs53Hhhje3iiz6TQ5T$sQ9Jfln5ysiVFsPpzUTsCo3TcweCKjfaIksFsFYlE8I= \N f silviamarianabarreto@hotmail.com silviamarianabarreto@hotmail.com f t 2025-05-13 21:49:43.306745+00 +374 pbkdf2_sha256$720000$TGs93xVgCMmjzSNGmxGpiA$Na7NjhOOE3BoERVwRv+Su4BqoMZ7KBMdEBeZUdl5yWw= \N f luis.henriquep87@gmail.com luis.henriquep87@gmail.com f t 2025-05-13 21:49:43.916787+00 +375 pbkdf2_sha256$720000$yw3EQ42c62Ea6kYLLidlPB$KJfGaz0yyFGVmXvbBNztUuv9gFPN+reU4eR2ZiJf/U4= \N f mariaceciliaponce@hotmail.com mariaceciliaponce@hotmail.com f t 2025-05-13 21:49:44.528837+00 +376 pbkdf2_sha256$720000$IQY4cX0SU4OznfA9M6UA4F$Unz0UrLUA4oqgn6Y1V1nZPr/exd4eI+se6vYlYlQkBA= \N f Laura.bea.san@hotmail.com Laura.bea.san@hotmail.com f t 2025-05-13 21:49:45.16641+00 +378 pbkdf2_sha256$720000$ct0nXLi2wOqbkVFGe8CFDH$e3QL0V+C2z15Va958EqPvpZhlT/2KHAFQNV91UEkJd8= \N f mariansis09@gmail.com mariansis09@gmail.com f t 2025-05-13 21:49:46.522897+00 +379 pbkdf2_sha256$720000$jZavcQ9LiZ4tL0OuSvIahw$tafG92EEjmJ6cSr2kckJ573kHFoEZyUC5Smy88T39To= \N f mariagarolla@hotmail.com mariagarolla@hotmail.com f t 2025-05-13 21:49:47.122899+00 +380 pbkdf2_sha256$720000$ZAtNhVd53LKXnK5Kc3Zmjv$dRH8byMEyIEDdOqBY+eyitWCoj0RguUJmZQO2tgpt9Y= \N f michramer@gmail.com michramer@gmail.com f t 2025-05-13 21:49:47.810993+00 +381 pbkdf2_sha256$720000$E7SsmGgpjNFTz4HDYcj4uA$BLc6ThsTVwGL0IWcjlGPeBsKER88uwaGjvqjhm8nCEc= \N f patritesone@gmail.com patritesone@gmail.com f t 2025-05-13 21:49:48.475923+00 +382 pbkdf2_sha256$720000$LNT8F8rfnQZWni2F0aousR$e1V+kGLBR6RL8ddsOHGNBz7e7yMd0v4wkkEkIf5YT1o= \N f Ferchulan@hotmail.com Ferchulan@hotmail.com f t 2025-05-13 21:49:49.189522+00 +383 pbkdf2_sha256$720000$lFFFMZNzanS2kzJOjxgvtt$e8DEZlfwmS2xixlkqEyHIUngB8EaNRDinzcA2awcQDk= \N f gasparheber@gmail.com gasparheber@gmail.com f t 2025-05-13 21:49:49.896282+00 +384 pbkdf2_sha256$720000$yWL1d5UrRvYUYJdjn4H0gN$OV3E3M4ebrASWhkZzLajUu1aiy020ye/SDLvZMA0O4c= \N f andyjtoscano@gmail.com andyjtoscano@gmail.com f t 2025-05-13 21:49:50.529828+00 +385 pbkdf2_sha256$720000$5TOaN4z1yCavZ2de60dnuj$Tn8KIZVGhcYvDy/2oP2qwcjySCKacCTYrRvBelUVMUY= \N f belenbee@gmail.com belenbee@gmail.com f t 2025-05-13 21:49:51.195873+00 +386 pbkdf2_sha256$720000$BnABg4X4u896JuWdHANGEX$/napqkrFVf0wTdRQ8sg1Ezlu8564RJ8b7zOlS1gfz1s= \N f melorobak@gmail.com melorobak@gmail.com f t 2025-05-13 21:49:51.982447+00 +387 pbkdf2_sha256$720000$Vj8aICJ0rdOz16RZ5UwtpX$O056rxZAPIbLxH/awFewsYWllzDDdgOqjnJunxjrQeo= \N f pereyraortiznatalia@gmail.com pereyraortiznatalia@gmail.com f t 2025-05-13 21:49:52.88033+00 +388 pbkdf2_sha256$720000$QRa7cbHapm66GNWltXVlxi$8AfEgxLAtUFV5meW3idT5+YZlRa4lPzwhk9/M14Qb0k= \N f claudia_alanys@hotmail.com claudia_alanys@hotmail.com f t 2025-05-13 21:49:55.111048+00 +389 pbkdf2_sha256$720000$TRYG1IYn1rJKvBHsLOzOw2$44G8zfT9ppdzu9OcP0PS2x6L4uiYjVHtuIJxFcGU8Io= \N f juliluciani@gmail.com juliluciani@gmail.com f t 2025-05-13 21:49:55.807078+00 +390 pbkdf2_sha256$720000$ZP5DyxqvSmZCBZd8zzKG7e$wkVMDfJDtfANaI5S+MHZrHi6fmw+pMNsde5xvhONsyc= \N f agol85@live.com agol85@live.com f t 2025-05-13 21:49:56.529364+00 +391 pbkdf2_sha256$720000$JWvltuMztpEl3YcVHuC6ue$UE2LKN1wXR5RNE5OrtW8rQ9A9s7ZmQhVZVy2qJlxZxQ= \N f amaliafrontini@hotmail.com amaliafrontini@hotmail.com f t 2025-05-13 21:49:57.295011+00 +392 pbkdf2_sha256$720000$ZWQq5Cj10MhER31kw8b6mh$feHN/3zaCWV+7GoyvCrFd8fpNhS7+i4bMQAzQ8ffkGA= \N f aleariel128@gmail.com aleariel128@gmail.com f t 2025-05-13 21:49:57.98325+00 +393 pbkdf2_sha256$720000$ho7CYWSWnc39vp4dO1N4TY$E8Kvw9E3xujo4vcUfV3H0Z+8MuE3QOx50yT6QNKSaOM= \N f anitagimenez818@gmail.com anitagimenez818@gmail.com f t 2025-05-13 21:49:58.608276+00 +394 pbkdf2_sha256$720000$mrhn0jvACxwg44G07bgRnw$vz4Ucu+wCIQW+k6VufCOr8aDHzmtDHxMrto5MmE9OCU= \N f marra.victoria@gmail.com marra.victoria@gmail.com f t 2025-05-13 21:49:59.214313+00 +395 pbkdf2_sha256$720000$nhddOCK2uTtIAqQbtBlIeG$oBq/goTuyl6Pm5bh6u7Rq6twWLjR2hLdruesMsMA9wU= \N f tomi-tomi92@hotmail.com tomi-tomi92@hotmail.com f t 2025-05-13 21:49:59.843949+00 +396 pbkdf2_sha256$720000$kYGpBJwgwLFD0hO6pD6n4g$mUkxtQx1H1vC9sIaRvrMejReq6iR3/HblwMvlygb3P8= \N f featherinthewind@gmail.com featherinthewind@gmail.com f t 2025-05-13 21:50:00.474523+00 +397 pbkdf2_sha256$720000$r8Qtyd1RXglBrm3edcExLB$wki0DdFGVIuUfmUWxCdArhtLpsK7w0U21bbYDucq0iw= \N f vitoriacruzb@gmail.com vitoriacruzb@gmail.com f t 2025-05-13 21:50:01.179714+00 +398 pbkdf2_sha256$720000$qE7qUIacTHwsXTmYRkktE7$kLvNkTX5+CqKbVEozvt+uwWx7nYtuLGhR6HCqMBDuac= \N f Olga.Shkriabina@gmail.com Olga.Shkriabina@gmail.com f t 2025-05-13 21:50:02.168148+00 +399 pbkdf2_sha256$720000$OOMp9FbQ7Mry0oZD9ogSC7$0Bbz/RKOYqW8SJY9zWx0Jy84IQzjrUQrOBrLul5df9Q= \N f toril.agostina@gmail.com toril.agostina@gmail.com f t 2025-05-13 21:50:03.351644+00 +400 pbkdf2_sha256$720000$tyWQjRR4HAVQa4Zr2XeoBx$wh+hmPrhrduEGm3bqRSEzBzYCjChXdGU9FKqMI0TbJE= \N f licmflorencia.rodriguez@gmail.com licmflorencia.rodriguez@gmail.com f t 2025-05-13 21:50:04.505231+00 +402 pbkdf2_sha256$720000$Zh9SxosnOyH03KcbA25xAw$D7aEDLacS5s3l55nJ1N2HOQZ6ehyFVM5/HyQwq+cmEA= \N f suggeyrigio24@gmail.com suggeyrigio24@gmail.com f t 2025-05-13 21:50:06.41481+00 +403 pbkdf2_sha256$720000$twok9vVsnih8qV1EBrAuQH$ofxgiMY5EO75ECFZNDRzWZb7PwVUZtfcQdRuJi4CnjU= \N f juanignacioab@gmail.com juanignacioab@gmail.com f t 2025-05-13 21:50:07.452646+00 +404 pbkdf2_sha256$720000$0EDG660Z21Ew7dT9CSrZzQ$BsPGG+qxux6/qz5YX1fFcC9PAx0qwkkGitFI/T7Zzec= \N f Estebantangrendi@gmail.com Estebantangrendi@gmail.com f t 2025-05-13 21:50:08.504304+00 +405 pbkdf2_sha256$720000$OwFzTI9ugQUHBFXmP5BSWr$GA77ykho1TyucwJh58JqXUnpAAMZNDKLn12EAH4UuGE= \N f Yaninalaurafeldman@gmail.com Yaninalaurafeldman@gmail.com f t 2025-05-13 21:50:09.50979+00 +406 pbkdf2_sha256$720000$qeP9YUy5RrHQ9Pdxpy8Y0I$THnqB1ex6+U95mkxZ7/ZOtTypEM7TpRRX3YZb1N0nnk= \N f gasmant2002@gmail.com gasmant2002@gmail.com f t 2025-05-13 21:50:10.235844+00 +407 pbkdf2_sha256$720000$G1rdbwf8QBha47uSPaY5iT$/cnsgX3zOKeWIX4FRRWVkN4A/GTKxe/E3HQ07ZKxbIU= \N f Juana.benza08@gmail.com Juana.benza08@gmail.com f t 2025-05-13 21:50:11.129056+00 +408 pbkdf2_sha256$720000$NkYd66jcaWE5tVhtOX2e5W$2MY9vJG5FV6K6iUGhxDZWRM3BZhOl0P0yZdOGqb0ZFk= \N f solbarmat@gmail.com solbarmat@gmail.com f t 2025-05-13 21:50:11.793807+00 +409 pbkdf2_sha256$720000$FFmDOlsQxppfSzAThxSgnc$c/U0Xx5t6kOFGCxH7Wsx2pt5aKA1ViPQ/cIdwd28gSo= \N f raghuvara.ch@gmail.com raghuvara.ch@gmail.com f t 2025-05-13 21:50:12.49808+00 +410 pbkdf2_sha256$720000$9NNaYVLmdZcMdaWiox4BuB$iuJn6e+FuwC4K69hSBcPUol23ZwyFhzH5EtJzo4RdiY= \N f lucianasolcattaneo@outlook.com lucianasolcattaneo@outlook.com f t 2025-05-13 21:50:13.221139+00 +411 pbkdf2_sha256$720000$eOpXlHciX26pWnhDotUygn$9R7u8hnsPQd19QQfIHZK7qumqCMEkfmgBrUafjsbpQw= \N f lilianmarquez121@gmail.com lilianmarquez121@gmail.com f t 2025-05-13 21:50:14.020826+00 +412 pbkdf2_sha256$720000$qYfzB7bMsGmiWYmxnKq5Uw$RRafOnrV54oKCREFlEjpKN68cWyxdPOxZNVULJNftoM= \N f Paocal83@gmail.com Paocal83@gmail.com f t 2025-05-13 21:50:14.775901+00 +413 pbkdf2_sha256$720000$0xNnHofvGJgA1zxUHEEmyz$jXBORRQ8YYQbRuPB+7j1tI9onJXLO62vLIlOPcBir+s= \N f cardenaslozanomariana@gmail.com cardenaslozanomariana@gmail.com f t 2025-05-13 21:50:15.694574+00 +414 pbkdf2_sha256$720000$Nu14HesUQylsNv9CwxEBiR$N3KePZ7DBdKoswOY30Mm6DICc25DCn02w3Fg/8gF/Ys= \N f gergoga9@gmail.com gergoga9@gmail.com f t 2025-05-13 21:50:16.368132+00 +415 pbkdf2_sha256$720000$UMLeOJuCbbddmyIDFbhU8H$OPnUYcq3NF9G66JH+9A0rWKuMjdWs+kX3kccyT9UXpw= \N f rosanalodovico@gmail.com rosanalodovico@gmail.com f t 2025-05-13 21:50:17.251965+00 +416 pbkdf2_sha256$720000$NXGa4MECokCxt7OYpdfu9t$RzJ03ZHSC1G88hhI2a/XOEPdRPMkgIewe78NcW1JS9I= \N f batiguillermina@hotmail.com batiguillermina@hotmail.com f t 2025-05-13 21:50:18.006633+00 +417 pbkdf2_sha256$720000$M8ffLhbMN99fJQKhmvZc65$1XKCLnUdUyMghTXeqpvqg6vgPxE7+gaoMMZPkLvgZbE= \N f eliritacco@gmail.com eliritacco@gmail.com f t 2025-05-13 21:50:18.827287+00 +418 pbkdf2_sha256$720000$xQHzCcSn4I64SdrXuYG6xt$Sed0//YFHXpmOxaZz7a+hErxKGTua7Y0I/d2UB5WUMM= \N f roxinverso@gmail.com roxinverso@gmail.com f t 2025-05-13 21:50:19.591656+00 +419 pbkdf2_sha256$720000$q54nSoVAvmAR2SbrdsEyWg$UgVnd1Kpaly730V1plPbhgxGYXfsZDNq2wpKBCIRsJ4= \N f nbalderrama88@icloud.com nbalderrama88@icloud.com f t 2025-05-13 21:50:20.341193+00 +420 pbkdf2_sha256$720000$aHgdvcVZ47wARkL1aEdWZJ$4LrYGFXLcB3RrsKyhSWml0xHRvIQFM+pka1CsOx6Bbg= \N f lacuervac07@yahoo.com.ar lacuervac07@yahoo.com.ar f t 2025-05-13 21:50:21.175743+00 +421 pbkdf2_sha256$720000$HuFSdnIJ3Pv2lfMPQ2Nx9s$C5GOqOmwvYw8Z7/D1werfZRpE8XV5BbV1RIxeYtDOPU= \N f Klamaspasquino@gmail.com Klamaspasquino@gmail.com f t 2025-05-13 21:50:22.029075+00 +422 pbkdf2_sha256$720000$GitnG2ZueDCndRMVnzkMgO$XExhIKvWu8xSHp0uudA77/h3XIts/8c3nKEESZC8UPM= \N f mariaflorenciatodero@gmail.com mariaflorenciatodero@gmail.com f t 2025-05-13 21:50:22.73821+00 +423 pbkdf2_sha256$720000$AMB3NudCjXcggAQb7bK0iC$39AVkV4jeeIPgslUgeLGNJ4Pa2sqcXR8LC96yMkufiY= \N f djalmain54@gmail.com djalmain54@gmail.com f t 2025-05-13 21:50:23.595454+00 +424 pbkdf2_sha256$720000$SQgXl6kGGSPhT249pNMTwJ$ezbVYAZ7I12Wt2vsS1NvYaQgU7u31cvp95Sq4vxNrwo= \N f Santiago.menajovsky@gmail.com Santiago.menajovsky@gmail.com f t 2025-05-13 21:50:24.257765+00 +425 pbkdf2_sha256$720000$8BafKxkMdTELVcRQC5nRU3$Tuz/keyg3euZFoWMZG3DD9QngPHb1LAwjjQTKKuvdGE= \N f dario_bonheur@yahoo.com.ar dario_bonheur@yahoo.com.ar f t 2025-05-13 21:50:24.898295+00 +426 pbkdf2_sha256$720000$RC5skKAiV5BrlCFCJBKF8l$IV4+z3fLLGedkxrMTGJDbig19v3DhdD8vIWuYjYGCPc= \N f regipuc@yahoo.com regipuc@yahoo.com f t 2025-05-13 21:50:25.534845+00 +427 pbkdf2_sha256$720000$97jO3k7FFkRVamJrV4WMNq$ee5DU1NldVhtlFSD26XtBdWFRgpIiPQfEw47qbsChWk= \N f Julioandrescaprara@gmail.com Julioandrescaprara@gmail.com f t 2025-05-13 21:50:26.13416+00 +428 pbkdf2_sha256$720000$29hgEKGWYpKdcP7NvLaz86$5ZeC9hgkqzVDHQWhaZgo9Om5YNL0EFfFvPwPrcRveto= \N f Sailorlaly@gmail.com Sailorlaly@gmail.com f t 2025-05-13 21:50:26.812593+00 +429 pbkdf2_sha256$720000$FtS7KE2NP8tt8dmqeAfxBL$BTUk5fvfFjpvFGWcDdewPohBK6ao0v51oStZIU98Uhc= \N f Mflorlaya@gmail.com Mflorlaya@gmail.com f t 2025-05-13 21:50:27.510224+00 +430 pbkdf2_sha256$720000$4gRH0eXOCGU8UF14kjE91M$dgjBSLB8rTzMqr5qFIcyJh/O0WUsq33+YIEa9DuIn1A= \N f anto_maktub@hotmail.com anto_maktub@hotmail.com f t 2025-05-13 21:50:28.285835+00 +431 pbkdf2_sha256$720000$YCihhdwBKRfwqUUCFdm6hY$8/Wn2skjvaf/XuuGe28TsDEliFXJEVyJRkEP08u+PqE= \N f glopezrodriguez1971@gmail.com glopezrodriguez1971@gmail.com f t 2025-05-13 21:50:28.960129+00 +432 pbkdf2_sha256$720000$sZsdId9x97155qqN9hPI6y$Ty9w4KAulE+yYPD7GYsTWxkU3qPlxqKWz0QgeTGEjTk= \N f yalkedigital@gmail.com yalkedigital@gmail.com f t 2025-05-13 21:50:29.63168+00 +433 pbkdf2_sha256$720000$rvtUhZgV47f05O8rxXAaC5$yZFPLBQCyfJm2+HfkJ0TH66oIqg379AQjoGnFWB2UZ4= \N f Luciana90.carabajal@gmail.com Luciana90.carabajal@gmail.com f t 2025-05-13 21:50:30.242372+00 +434 pbkdf2_sha256$720000$QyEJsvLAUaWyks9YN12ad1$9hEfNJzEHAMlmLO5OKgfCvvKlJjrKk2IHN5Dnkc1IQE= \N f floflo_floflo@hotmail.com floflo_floflo@hotmail.com f t 2025-05-13 21:50:30.95269+00 +435 pbkdf2_sha256$720000$JhfN0hTWqPG7SP6KYZP7b0$i9FmsUku+XcLf8WkJDKQ4VkeGTYCpfHgI+FTjqhgg/k= \N f coronver@hotmail.com coronver@hotmail.com f t 2025-05-13 21:50:31.552942+00 +436 pbkdf2_sha256$720000$7V9L2Vb254BRd67DY8PhD9$r+WBHKKirX47/2EKzOnmaoLjMU0M5P/rEloHfl+mEzA= \N f marsolcabrera@gmail.com marsolcabrera@gmail.com f t 2025-05-13 21:50:32.267013+00 +438 pbkdf2_sha256$720000$3ZamP9uxCT7u5upcsL7ut6$W7hAHTEvSqbwetJbN28/Z6jSwz/n1GSgyGqpFKH6eJ0= \N f sil_ov@hotmail.com sil_ov@hotmail.com f t 2025-05-13 21:50:33.626052+00 +1022 pbkdf2_sha256$720000$5jV73mYAFpFPTq6RLBcTVW$p+v5IIBLWNSC1ZgC5p+PJdtobaCQUoQ5dO8FEW8O/u4= \N f lalyarias@gmail.com f t 2025-05-27 15:00:23.658537+00 +401 pbkdf2_sha256$720000$inMSVeKwRQMqHMITh80lG4$pwAbQ1rAv2SRC1cTZKXHpvC75tkcj7qPIe4sZBA5xSM= \N f fiorentinonico@gmail.com fiorentinonico@gmail.com f t 2025-05-13 21:50:05.550372+00 +439 pbkdf2_sha256$720000$Zw9VvxW7zeDv8RUPYFCl21$8pygA8PcPRY9Td/stXy51xwiE4haBBj2/b1ZtqyInQs= \N f frcruz688@gmail.com frcruz688@gmail.com f t 2025-05-13 21:50:34.316347+00 +440 pbkdf2_sha256$720000$JxH2S5vRyCm9VyxbkMKRpq$NVF9qpbtLMWMnHOBbq3uEfhUr+mBt67L/5IVGLuP64Q= \N f Cassius1955@gmail.com Cassius1955@gmail.com f t 2025-05-13 21:50:35.157145+00 +441 pbkdf2_sha256$720000$KnfS9Ybe77AeCb8rYg5PmF$PnVcy9PSSKGwsmvBwu1B21LY9rviEBs5b9YDAyp+4Qg= \N f eleonora.angles@gmail.com eleonora.angles@gmail.com f t 2025-05-13 21:50:35.773604+00 +442 pbkdf2_sha256$720000$lVIBtfDrXh8u5shXTOp9oF$GgUPB9z3rZvqTK6kAFjLhIj7euQRpspmXw25fK3nXdw= \N f pirisgysel5@gmail.com pirisgysel5@gmail.com f t 2025-05-13 21:50:36.51191+00 +443 pbkdf2_sha256$720000$oi2uUvmqQsFxXamVEG88kT$CRl0rNTRFADHuNon12O0Y5eIpZ8EmdNAn2qtroqg1yk= \N f mba-101@hotmail.com mba-101@hotmail.com f t 2025-05-13 21:50:37.240079+00 +444 pbkdf2_sha256$720000$2BfUtcBW98kfFIt9ESQOzC$tbK6UL8OUQ1ukYd+w1EfLAGhUbDvsZKUK35t3AzxGQI= \N f lucianogallardo1990@gmail.com lucianogallardo1990@gmail.com f t 2025-05-13 21:50:37.944797+00 +1435 pbkdf2_sha256$720000$oEUNEhMYqPEYW91mskCi1a$/eTYd6FYwSQC7vXCoYmCM2gVGi/ZXLFONDG+rMmbkvk= \N f jalfonsomp@gmail.com f t 2025-07-24 14:54:58.473962+00 +446 pbkdf2_sha256$720000$W2kAem76G9DQ4quhZax7Kz$ZdFogtIHm+iuA0UT87OQRw0aFvbPwcqiwA/C7ZtlKT4= \N f julian.zadu@gmail.com julian.zadu@gmail.com f t 2025-05-13 21:50:39.529561+00 +447 pbkdf2_sha256$720000$XvpWBwGIfU4u02sKbaQj0C$2BaKtER9uPBwEzkwBpFsSlqaYdpkcZ4XWFcGjAIAKTc= \N f Julietaherman@hotmail.com Julietaherman@hotmail.com f t 2025-05-13 21:50:41.563191+00 +448 pbkdf2_sha256$720000$KjAX1HlywNj9SDidjgPVVG$0pzrXg5o1IsJgkNDfDPZbBcIkUMh+czzIC2FvAnfRnM= \N f ldiroma@hotmail.com ldiroma@hotmail.com f t 2025-05-13 21:50:42.248748+00 +449 pbkdf2_sha256$720000$2cq1zqD9QpaNZ7e8k90puD$eTY2p9ipKZ9dBu3dI/gCMcylqij4EhqOlK/wxrKZLAc= \N f sofiiricciardi@gmail.com sofiiricciardi@gmail.com f t 2025-05-13 21:50:42.907611+00 +450 pbkdf2_sha256$720000$uyzdXQMS6oJQTgHN7EroZb$XuVi15dZpJ/GoZvwwaOpzPCJqizJfLIFD1oDqyPgXT8= \N f patrixia28@hotmail.com patrixia28@hotmail.com f t 2025-05-13 21:50:43.555039+00 +451 pbkdf2_sha256$720000$d1JwpyVNOFJNQkAzw2pBWA$0vLrhWeITI3e+g6U6NHVxQukML704ygXdCt5T4A/BL0= \N f rogerjorge2002@yahoo.com.ar rogerjorge2002@yahoo.com.ar f t 2025-05-13 21:50:44.336662+00 +452 pbkdf2_sha256$720000$Kx6dmWn9CfxM1VgE1rcdaH$eV3NzhKCNgDsyrpI86dai5irOOlPZwQs0WekoMOtbUc= \N f jimedelabarra@gmail.com jimedelabarra@gmail.com f t 2025-05-13 21:50:45.068342+00 +453 pbkdf2_sha256$720000$TPQLQmr1BmbvaLBFhaYRiN$rlit25ycIX+TvnGk9Yvk3YqEbSh4tFP4dpF1xuEpJOY= \N f florchi_b89@hotmail.com florchi_b89@hotmail.com f t 2025-05-13 21:50:45.737607+00 +454 pbkdf2_sha256$720000$0S5COPCsZvoC89CJFgOBN1$c1dcd7XuvpImyZe8uaparf+OKB4ymq7Mgw30Z7lNPzw= \N f sbperelis@hotmail.com sbperelis@hotmail.com f t 2025-05-13 21:50:46.7684+00 +455 pbkdf2_sha256$720000$Qq1bHeRmkZLycWV40QslB4$roZWkWNm3bVH4o4gaD7mtFUXPyZfBRMw+JibWtXnEf0= \N f maxieduardolo2018@gmail.com maxieduardolo2018@gmail.com f t 2025-05-13 21:50:47.540798+00 +456 pbkdf2_sha256$720000$OY4p3kzIC75a62EM0SonNb$ybJ9dhdmVzxN3htPBDzxZQ5CQmH39jx6584BksAryKU= \N f lauralipon@yahoo.com lauralipon@yahoo.com f t 2025-05-13 21:50:48.239828+00 +458 pbkdf2_sha256$720000$wTgrvsfUC5WJYKLjWxxzUK$Ph7NdtWpVAV4EwekivqKE9hD1n9b+RJWZvXCvNknfPE= \N f estuyvane@gmail.com estuyvane@gmail.com f t 2025-05-13 21:50:49.905212+00 +459 pbkdf2_sha256$720000$GC76Pk7tf5Cfe0SeexuAo3$dalv6VvgcArfARCd0uA+7SQKvMseFT9TG8Vps00moBM= \N f angieebaca@gmail.com angieebaca@gmail.com f t 2025-05-13 21:50:50.577344+00 +460 pbkdf2_sha256$720000$iQbCUr6rpiGdIIaBPvLJIy$Ffikv4FNksCRf0Wiz3b+nozkE5wQxVkU8Xpjax9jBFk= \N f miluromero1996@hotmail.com miluromero1996@hotmail.com f t 2025-05-13 21:50:51.225829+00 +461 pbkdf2_sha256$720000$B83whFjSthAIfq2EXpsbmv$5ewN7DIRRNc1CiUPd7LvdYqil3nBHXnTu65MDPi6t4U= \N f Ayelenarzaro@gmail.com Ayelenarzaro@gmail.com f t 2025-05-13 21:50:51.862625+00 +462 pbkdf2_sha256$720000$eyFw6XaOEMVbG9f5YoIY8y$41sXUG3Nn6b9ngjqRVT/9RHPQe4vFE/Ray6BOBcXfWI= \N f marlopezpardo@gmail.com marlopezpardo@gmail.com f t 2025-05-13 21:50:52.580323+00 +463 pbkdf2_sha256$720000$KD2GLL0whnpdUsxgwQYj63$6GJJxtkD4krK6GqKMyZVCWHGCjOKaA4xDJ12d2Og7GI= \N f Kari_rd@hotmail.com Kari_rd@hotmail.com f t 2025-05-13 21:50:53.473646+00 +464 pbkdf2_sha256$720000$SArQacWVRCMGQHmiJ5zj2F$MBV9PyScQBRDvtNMOolb73ORgjpHXEBBC/uRZUsdSCM= \N f cristinaebenitez@gmail.com cristinaebenitez@gmail.com f t 2025-05-13 21:50:54.263997+00 +465 pbkdf2_sha256$720000$EWLr4MQUv0qmnZ4PFbdfBI$TQfdoD8gmdyFkDutLU3ir78BuYaxx3LOGf9t22PXmjM= \N f yuleidyeherrera@gmail.com yuleidyeherrera@gmail.com f t 2025-05-13 21:50:54.938623+00 +466 pbkdf2_sha256$720000$vgNpdfjkKGkERsK5pUTuKF$9R0nHeMkUAKaqvqYSFzeAZLy3v6gDMY91VuB2vyNA/c= \N f info@lenceriaelektra.com.ar info@lenceriaelektra.com.ar f t 2025-05-13 21:50:55.622709+00 +467 pbkdf2_sha256$720000$sdzcCOmyqLBh9aqc2wBBKO$hl4hUAxXrzTs7MPvUefD2Y1N+jcXYM1RG3JHI3HozhU= \N f Luciaemilcebillubi@gmail.com Luciaemilcebillubi@gmail.com f t 2025-05-13 21:50:56.307835+00 +468 pbkdf2_sha256$720000$rhTE7DXUa4hDTv4ywoKTom$gvUl40VC1Htj+u9akIFISbg2mYZHEUOZjuyLvpw0mH4= \N f elianaroque07@gmail.com elianaroque07@gmail.com f t 2025-05-13 21:50:57.322683+00 +469 pbkdf2_sha256$720000$dr2HT576QRXtk1BTviGZEO$RLHOPY95aAkDlDZrZA5/e9JvnK8YNMU2fl+3lLdMkIA= \N f more.ribero1@gmail.com more.ribero1@gmail.com f t 2025-05-13 21:50:58.274047+00 +470 pbkdf2_sha256$720000$6jKgrekVQ8i4l7iZx2P3I9$ial/m5Ppbbbburw7Yl4XdB8eULENoKQfEOfLuhkXKyk= \N f lilian_gargiulo@yahoo.com.ar lilian_gargiulo@yahoo.com.ar f t 2025-05-13 21:50:59.104329+00 +471 pbkdf2_sha256$720000$J15VsloF0LXGhmKYDKkbeW$eTgx4C+EyaPCzs8508U8ppj76628MtaKYiEOoxDN+gA= \N f daiana@promoagencia.com.ar daiana@promoagencia.com.ar f t 2025-05-13 21:50:59.800172+00 +472 pbkdf2_sha256$720000$pZa2rsjtpsUiHYR73FVGZN$DfxCa9X8OJJyHGZq/JXkFfEF7qfXq3fK8U184+odvpE= \N f Lic.serafinimariana@gmail.com Lic.serafinimariana@gmail.com f t 2025-05-13 21:51:00.455203+00 +473 pbkdf2_sha256$720000$K3reainKnD559bFI8dj9n5$DVXoH4m0ZEwtJ+kmFsGbsC4aU9aM5nOh4eJmneOQqdE= \N f alepentagono2@gmail.com alepentagono2@gmail.com f t 2025-05-13 21:51:01.136317+00 +474 pbkdf2_sha256$720000$3IUPcLbWIb85XWt1cF6nCn$oqUdRjykc5k+XuJA0tseQ/Vb6mbaKqoarEdrdGwAsos= \N f Cornejagris@gmail.com Cornejagris@gmail.com f t 2025-05-13 21:51:01.902517+00 +475 pbkdf2_sha256$720000$7jge3t08kcQaQWIMbrjHgf$LzgIeIcqoS9NTK5hyx4sWraXX2GH/0dpPTwft0yZHaA= \N f parduvaleria@gmail.com parduvaleria@gmail.com f t 2025-05-13 21:51:02.828231+00 +476 pbkdf2_sha256$720000$0Fzf8Qp9Wvuw4qg2lXoeAT$ubqLxQumQaTjlpLk7REScrfYSvt7ilyEqZUWcW0dnrk= \N f Arecosantiago40@hotmail.com Arecosantiago40@hotmail.com f t 2025-05-13 21:51:03.870772+00 +477 pbkdf2_sha256$720000$Jd6sFS0MZr7l1SQ6sSAIpP$jx/J0RqpJg5+5HSTZC/s5W0A4Fopax2BaRO3L2THDWk= \N f julietasalman@gmail.com julietasalman@gmail.com f t 2025-05-13 21:51:04.915241+00 +478 pbkdf2_sha256$720000$3WBblFyULzTpqOpLGf8mnP$mXKWe9zMXZgAF9E2/OorEVPsD0Bkud5S8REWDAvyijw= \N f nropoz@yahoo.com.ar nropoz@yahoo.com.ar f t 2025-05-13 21:51:05.671651+00 +479 pbkdf2_sha256$720000$cOCqvy1YEErLSpAW6cKDDn$EC+fw9bePJkujl6jn8Cx+E+GI7YGvMhMUkeI7050sBk= \N f leandrocanete@hotmail.com leandrocanete@hotmail.com f t 2025-05-13 21:51:06.404899+00 +480 pbkdf2_sha256$720000$sNZwdSWmTiTsts7qzhAJ8w$/7wUY9d7N3vtPrNjFpuwudnxslRjEuX3nXbsX/1VJJ8= \N f Ricardotaboada1964@gmail.com Ricardotaboada1964@gmail.com f t 2025-05-13 21:51:07.177878+00 +481 pbkdf2_sha256$720000$h6LdetM64JEe3li3D8hSws$hXwoSddreIWeKEubCZHuga9IBrrdSzQMGFiaTRbF3dE= \N f silvanapaulapalladino@hotmail.com silvanapaulapalladino@hotmail.com f t 2025-05-13 21:51:08.072272+00 +482 pbkdf2_sha256$720000$C1SDV7UojtaFh2nRcLy6kH$YCCxJnPfxZBulRVf8K4W3KPYmDeDhVoQTgeWc5FgmIg= \N f myriamr@remax.com.ar myriamr@remax.com.ar f t 2025-05-13 21:51:08.786303+00 +483 pbkdf2_sha256$720000$nJ3liJHxSQTtSL2e1jfTcF$mWCNQRaAf4FgWRuSHiGaMKOnMMoqlrscMT7qV4LT7U8= \N f marcelagemin@hotmail.com marcelagemin@hotmail.com f t 2025-05-13 21:51:09.527518+00 +484 pbkdf2_sha256$720000$3DTJokumNsjTZeU7NNoxRp$dao7Nkyd8Sn/uY8hvWwCeCd2iVGYN5Q2YdcJbT4PIM0= \N f aliciafuriase@gmail.com aliciafuriase@gmail.com f t 2025-05-13 21:51:10.177562+00 +485 pbkdf2_sha256$720000$hEtZQvpYGFpk07jQi12DV6$5Ik2bWWZyLS92/AxUMcyi4iUyCAeXITDgbHPjPHBBi4= \N f monicaponce75@g.ail.com monicaponce75@g.ail.com f t 2025-05-13 21:51:10.858808+00 +486 pbkdf2_sha256$720000$TAqoyHtgU3wfMBo47RtdK2$SUJYzLlS+aXyi5c7wLH2QGAqQST/Ge1Hcl8OuIVqcSY= \N f lorgonzalezbender@gmail.com lorgonzalezbender@gmail.com f t 2025-05-13 21:51:11.476688+00 +487 pbkdf2_sha256$720000$ULqe8I8cmrUuBvH26Sf9mq$JK2mSJZusPsxRo0uo/8rBLCi9HUnzxLhdtfVpgc3FiI= \N f Victoriazalazar72@gmail.com Victoriazalazar72@gmail.com f t 2025-05-13 21:51:12.126092+00 +488 pbkdf2_sha256$720000$u1UfwgNnJmhqOfUgjgAS8K$0vbRJY57GbG0fDJPySLTDUuPR5jit+SRGJB2ZI2jjYs= \N f julieta-alban90@hotmail.com julieta-alban90@hotmail.com f t 2025-05-13 21:51:12.753813+00 +489 pbkdf2_sha256$720000$q8mmOZiQQhpa4ThH88rR9W$6L+9F24g4C4UgkvbgOEQPrzkk7SABH/9/OwjggmtIeQ= \N f hbrunacci@gmail.com hbrunacci@gmail.com f t 2025-05-13 21:51:13.541385+00 +490 pbkdf2_sha256$720000$EXwLUBWbS1pW6wsVrRdoW8$da6WipjdXoQzS46tceVAIKmbnxFsJ4ytKwawDJ2b6Vo= \N f vleserre@gmail.com vleserre@gmail.com f t 2025-05-13 21:51:14.268685+00 +491 pbkdf2_sha256$720000$1Lq8WthDZQD0m6HmH0aSuk$FIPjZETg35dfjW0LI6SqmgrXTuAiexlOttdDM/FqYLk= \N f omasmarquez@msn.com omasmarquez@msn.com f t 2025-05-13 21:51:15.028676+00 +492 pbkdf2_sha256$720000$8YsgTZjz7d9aDH7adJboTx$zJFIN7YqCMkuXoA6afA42HkhRzj9kZspi2MqP949USI= \N f marcelamoises531@gmail.com marcelamoises531@gmail.com f t 2025-05-13 21:51:15.712468+00 +493 pbkdf2_sha256$720000$GRSAtagrvEX9ViBANFkz3v$iZoQ21zHGo0ngvQYq0zYq881H89QaeyibR8Zp9V9zH4= \N f laura_boetto@yahoo.com.ar laura_boetto@yahoo.com.ar f t 2025-05-13 21:51:16.397592+00 +494 pbkdf2_sha256$720000$Nus0YHyZFJ9HtbWblTCO3f$mqxy0wNhtZ2hvSsMUYCU9lA5JxxhwhDNDO/z/lytX3U= \N f yaninacaballero26@gmail.com yaninacaballero26@gmail.com f t 2025-05-13 21:51:17.046035+00 +495 pbkdf2_sha256$720000$D9R2pQbAUmwemtKiLTjkiu$htpvsjunVITxL2Bnju5jotqyUAMNZz6sR+Q/TFY2wHU= \N f mariajose.giusti@bue.edu.ar mariajose.giusti@bue.edu.ar f t 2025-05-13 21:51:17.627484+00 +496 pbkdf2_sha256$720000$hE4DSbj9baehb5qLKZGq9s$Wd2oU2cVp9r8CQCrPkRT/gzb3o/cVtUxk090mBT/SqA= \N f elu.simonian@gmail.com elu.simonian@gmail.com f t 2025-05-13 21:51:18.232297+00 +497 pbkdf2_sha256$720000$6Zvx9GQE2Vd7iR2ZOkN3zB$ncpLQoaDdtw6Xo25CPnzUMoeuNUv2ZgUUPpGmWOsSIM= \N f lara.camparin@hotmail.com lara.camparin@hotmail.com f t 2025-05-13 21:51:18.824447+00 +498 pbkdf2_sha256$720000$eoQw5M5LWi5YDkRehfvnQb$XsKjfmBcxakxPWeFk4H9cneWSv47ijt6PZCGLvp+Toc= \N f analobeto@hotmail.com analobeto@hotmail.com f t 2025-05-13 21:51:19.432719+00 +499 pbkdf2_sha256$720000$ktALIkyaRPf8WYxO0Qc2m0$ZAHwtA8z7j4QVUBAPgT2lFzTfUHS48XCW6WWcTryEvc= \N f cabanas.maximiliano@gmail.com cabanas.maximiliano@gmail.com f t 2025-05-13 21:51:20.074283+00 +500 pbkdf2_sha256$720000$oo8OcSgs7ya1IsxpP76zAI$qMZzXYWqLuPl1W85Dp8fIjHOSOUMnME1pgsBYTpFnto= \N f audryantonini90@gmail.com audryantonini90@gmail.com f t 2025-05-13 21:51:20.82741+00 +501 pbkdf2_sha256$720000$jPAE7PfMBmTUht2YJ0vgcx$hRih8M+79leoA1+w1AmYlBPkXg5zcrFmLbhKbnThew8= \N f roy2602@gmail.com roy2602@gmail.com f t 2025-05-13 21:51:21.448411+00 +502 pbkdf2_sha256$720000$v3p86U4ZHhGWeNMHLPJDZ1$oX313BHILyHOTn32OnLKixiYRO/hH05aVWligtJvgk0= \N f victoriairupe@hotmail.com victoriairupe@hotmail.com f t 2025-05-13 21:51:22.102413+00 +503 pbkdf2_sha256$720000$x7moBUe40PRj0mhhu1NEHR$oMTHbPalhA3YRWqqW3TVLVGz5VirsfIdDJavzRfgpvA= \N f myrrielis46@gmail.com myrrielis46@gmail.com f t 2025-05-13 21:51:22.76213+00 +504 pbkdf2_sha256$720000$tYzzkDl0JVseiKJOthQNTu$EyjMFyU3INBiV5bO7vdr9YrJEvf8axsuoNBrrRuqfX0= \N f marianamastrovincenzo1985@gmail.com marianamastrovincenzo1985@gmail.com f t 2025-05-13 21:51:23.478234+00 +505 pbkdf2_sha256$720000$CAP78g50AezKfdexwJ3i7O$mYs5aO6su9SFAFhxIle9sHpjGV0y/xGEWNKoNJGi3P8= \N f aldanaarroyob15@gmail.com aldanaarroyob15@gmail.com f t 2025-05-13 21:51:24.068347+00 +506 pbkdf2_sha256$720000$AsvNBtVv76xSkzKGiSyki3$EM0y3VRFFpdMWJc9Z7EBbkBz07fmvtDr6cG9JhefuUY= \N f fjmontesi@hotmail.com fjmontesi@hotmail.com f t 2025-05-13 21:51:24.889409+00 +507 pbkdf2_sha256$720000$KLXDoH1GK5XF4cpX5Nqnr4$mKQSSK4lo8+Wa++1fp1Z+LLxdOezATGAZ6NZn7S+nD4= \N f betiana.haines@gmail.com betiana.haines@gmail.com f t 2025-05-13 21:51:25.626372+00 +508 pbkdf2_sha256$720000$kjSHWH96t0P3HtmifG4Kht$iKevtX35XF9wVQQ7J3KnQXijHhYdzm/Zgp2ypnSkxZ8= \N f jennifertilio93@hotmail.com.ar jennifertilio93@hotmail.com.ar f t 2025-05-13 21:51:26.45883+00 +509 pbkdf2_sha256$720000$E1ue0Ykn5qtj14hX9aF4P3$MhfUvkqy2fcviNHvKQbENWSwdSVxQJq978dmmiz0IMo= \N f marciaelianajuarez@gmail.com marciaelianajuarez@gmail.com f t 2025-05-13 21:51:27.102917+00 +510 pbkdf2_sha256$720000$paX8eoz2LUtyDF7y5BBSgn$KDw0LOuOIXecX6tABbu7iNU+6uUp08pULFmiTzQL/UU= \N f sacoeduardo@gmail.com sacoeduardo@gmail.com f t 2025-05-13 21:51:27.801204+00 +511 pbkdf2_sha256$720000$qS37X1YhXHCiR0TSe2ZHKf$WEDhG3nETONUlWNSl/K10ZtGwuBdTYYxKXrnGqkh3lM= \N f danusnina@gmail.com danusnina@gmail.com f t 2025-05-13 21:51:28.418902+00 +512 pbkdf2_sha256$720000$U5Kr4rt7jNj8DgNSsXTYJT$BG2yjNGaMjvK6Cwupd/I6OXUYUIVN3ocYI3i+MzCE+s= \N f albertobertana2019@gmail.com albertobertana2019@gmail.com f t 2025-05-13 21:51:29.009366+00 +513 pbkdf2_sha256$720000$D3eUE0fgNLayMlEaByRLGF$JlD1CRoHf0QRomXI4qt5rcJkgUbWYkMAVxFvWG+EXZo= \N f roxani.salcedo@gmail.com roxani.salcedo@gmail.com f t 2025-05-13 21:51:29.722524+00 +514 pbkdf2_sha256$720000$p9JEIYeJ3ojlekicSEmXG5$fNX/qgmOKKgx2mcujoG8BFvHjMXG8I8uGTct0DvPCek= \N f mtcholakian@gmail.com mtcholakian@gmail.com f t 2025-05-13 21:51:30.494205+00 +515 pbkdf2_sha256$720000$O1ekgINRy17uTnwgSLYJDS$v7n4zwjrOtge4ieUH1SzHHbxH+eXKXLSFs6hE0F2aSU= \N f patri2309sanjuan@gmail.com patri2309sanjuan@gmail.com f t 2025-05-13 21:51:31.214703+00 +516 pbkdf2_sha256$720000$ofG2u6A1Boe3JjpKKV9I1Y$uGIL/oIkYoXk6dfbV3WzIlcXauyOVONl8hmnKrtEcGw= \N f memaffioli@gmail.com memaffioli@gmail.com f t 2025-05-13 21:51:31.850124+00 +517 pbkdf2_sha256$720000$OzidGpgnocvFX0SGpxAga6$8dK9lemjnuEW3zQcJ6vhWwbqiRNX60jhfayk25Pbhns= \N f sologabyza@hotmail.com sologabyza@hotmail.com f t 2025-05-13 21:51:32.506066+00 +518 pbkdf2_sha256$720000$Tf9jMZ0iSv50PYj5GcIA7T$X1UuJIXMtSER0RyyLZ4d+faT09R54yHL15PMDkru7m8= \N f sabrinarlozada@gmail.com sabrinarlozada@gmail.com f t 2025-05-13 21:51:33.150676+00 +519 pbkdf2_sha256$720000$2gVfdjrrpH5Eu2NOswhNmu$fsr7ielDquRvnSEnDeHTmyGQ/hg5iGcNFft/8FOmH5c= \N f maria.canesa@yahoo.com.ar maria.canesa@yahoo.com.ar f t 2025-05-13 21:51:33.749575+00 +520 pbkdf2_sha256$720000$pfGco1EhQawJdFwkv9pRTd$Dy+4jQzR9gYcz44iKaEozSsjCMoDxYsLWmEaAvOKXpg= \N f mavirgiguma@gmail.com mavirgiguma@gmail.com f t 2025-05-13 21:51:34.36823+00 +521 pbkdf2_sha256$720000$3h9xNGvezUSkP48xA7KR5w$lZqCOF2dzPFA6ypagydiAPgiyY0tQNoGx44xnfDMguo= \N f autarocassouto@gmail.com autarocassouto@gmail.com f t 2025-05-13 21:51:34.940864+00 +522 pbkdf2_sha256$720000$cuMMJgye8uY3nRsRJGXYTH$54EzLRALTTfcyleLr5NNtjkq9ixumQanB4C+29aGtyQ= \N f patruvelez05@hotmail.com patruvelez05@hotmail.com f t 2025-05-13 21:51:36.69284+00 +523 pbkdf2_sha256$720000$6exrAhNxFHgSZzzmWSxVNt$MlTr6c+mDcsevf4tlu6AtuL5gxZEL5u3TkegGqqHm/E= \N f mel.cilia@hotmail.com mel.cilia@hotmail.com f t 2025-05-13 21:51:37.309961+00 +524 pbkdf2_sha256$720000$tO40mPLN7gHMaUoxuPkiKP$n/CC/wV74bAWqnMPy/wiwlt1AijovxKXhM5aEnOOAbg= \N f catupalma@gmail.com catupalma@gmail.com f t 2025-05-13 21:51:39.644351+00 +525 pbkdf2_sha256$720000$dSYKpOxrk68ylpaFo4OHYA$C/XEUCcdpctaBD4xrvciwyxRTeNgxXWSU3dQcKyeEVQ= \N f jasminlilen@gmail.com jasminlilen@gmail.com f t 2025-05-13 21:51:40.356515+00 +526 pbkdf2_sha256$720000$lLlJzyiA7uoREh2se6dap9$24lxK9RygIKafx0GJJcaCskF0cnrcIFo2Ro9U03ha+U= \N f marisaofeliafernandez@gmail.com marisaofeliafernandez@gmail.com f t 2025-05-13 21:51:41.111069+00 +527 pbkdf2_sha256$720000$JegdtTGlC9IyoUb4EU4lIk$J8VMcXncEAELnyuyCNcZRXZ0t0whr3cF++0kIQrN948= \N f gabrielanoguera3808@gmail.com gabrielanoguera3808@gmail.com f t 2025-05-13 21:51:41.836201+00 +528 pbkdf2_sha256$720000$IDNLV9yakoEgVthfsuNcBv$xXDTq2J5pWNuMpQnScIhz7/lsBAW8eTOxnvMkkwkCiw= \N f laraperezalmiron@gmail.com laraperezalmiron@gmail.com f t 2025-05-13 21:51:42.500355+00 +529 pbkdf2_sha256$720000$bNZ9XgdoLMNtpxi0neTYRP$6xWaB/mqCM1512BplL+KB0QtFxYhPekq0ZTCSmnbIxI= \N f namaste.vero@gmail.com namaste.vero@gmail.com f t 2025-05-13 21:51:43.134051+00 +530 pbkdf2_sha256$720000$vXRrQj8KkiMUZSTLN6W7rJ$iNJVcasNSauR5AiFyqMkCWtxK9hbr7cxDpNHiznm+EA= \N f carolinacampion@hotmail.com carolinacampion@hotmail.com f t 2025-05-13 21:51:43.812102+00 +531 pbkdf2_sha256$720000$Xks1HirS1kXucWb3xzfJHF$VHRn0dCPRU9OmGotT3jgV5b4Lgu61TJ0mCBbHIMYXTI= \N f amv311@hotmail.com amv311@hotmail.com f t 2025-05-13 21:51:44.744065+00 +532 pbkdf2_sha256$720000$KQE7NcIPrTJKkLTbhBnme7$zOt2lkWYJsxiRz32ktf3Ivor/s7BFtwexKOcVFSkJHQ= \N f kintanagustavo@gmail.com kintanagustavo@gmail.com f t 2025-05-13 21:51:45.67229+00 +533 pbkdf2_sha256$720000$WQKhlP6ScyIPJhh6R8kSdi$k1Gw2oyLdC6XsCQnzFrwbsbxYD+HqZxgXC11s+GMV2o= \N f aleperezbenchuga@gmail.com aleperezbenchuga@gmail.com f t 2025-05-13 21:51:46.595095+00 +534 pbkdf2_sha256$720000$t6EmTVYY7hcMQsDE2uDfXC$0NDF1HDLvfQ9q+DdQmHa464xh/haDRtnuYr2e5HHiLQ= \N f cebandera@gmail.com cebandera@gmail.com f t 2025-05-13 21:51:47.353814+00 +535 pbkdf2_sha256$720000$2kNDVu2PBMKLuhkEtgEFxC$rAjfpDCWqzH1QzPikcSrxDh9Ji7D0zexSKjswV1fPhg= \N f caterinascicchitanoiam@gmail.com caterinascicchitanoiam@gmail.com f t 2025-05-13 21:51:48.154305+00 +536 pbkdf2_sha256$720000$mvrvGvhs8E0FpsD20XP9F8$HYNeuLsU76K3iJiOFbkF4ahX2nThH4hOWWVnFvj3TTU= \N f carolinasighel@gmail.com carolinasighel@gmail.com f t 2025-05-13 21:51:48.955027+00 +537 pbkdf2_sha256$720000$OehR82F6ExKjvldZdF8UbN$cBQLyO66qXPGIBQIdeHmVKvyirWqvx5UbmWzFXPtTV0= \N f byeol.amino@gmail.com byeol.amino@gmail.com f t 2025-05-13 21:51:49.602824+00 +538 pbkdf2_sha256$720000$91qFLt2j0fzySSACOjTh7D$J+ITny/qGydHqzYrI4LWri7VZIKB+RNhIerXSXfVj2I= \N f berghellalucia@gmail.com berghellalucia@gmail.com f t 2025-05-13 21:51:50.290979+00 +539 pbkdf2_sha256$720000$NeOT0KbotoAxHKMeURCYGF$IghkIOzV7nf+cNvWbqekJWOF+he/YWdJbhVBF/EYk08= \N f matiasgreisert@hotmail.com matiasgreisert@hotmail.com f t 2025-05-13 21:51:51.02439+00 +540 pbkdf2_sha256$720000$drGGoZFMyHhqehkIoaumb1$iJ+59n6Nkrh1h07cYNxe1StAXJtKJPv+edE1f4eYYPE= \N f stephaniecorrado31@gmail.com stephaniecorrado31@gmail.com f t 2025-05-13 21:51:51.753906+00 +541 pbkdf2_sha256$720000$XAsQNbK4FJNyp74FU1luMB$7UWFD9/uCsh3DomXTJIvoPbaFdknh8FTWn70O1zmiUI= \N f marcelasilvanagimenez@gmail.com marcelasilvanagimenez@gmail.com f t 2025-05-13 21:51:53.804361+00 +542 pbkdf2_sha256$720000$3OFmsv9OpIVwhLjVrKbMMm$fa3i6M1WlAklAJmJWNsXsBg+3hpuKycv90IJIAT1IqE= \N f veroracing2012@gmail.com veroracing2012@gmail.com f t 2025-05-13 21:51:54.402538+00 +543 pbkdf2_sha256$720000$4ZyfqVopVg2sqdFzxYRBrw$c0B6l/JQNnhzB143tBd6qq2nFxxqaahIN5Vmh4jcxEM= \N f rominachaya@yahoo.com.ar rominachaya@yahoo.com.ar f t 2025-05-13 21:51:55.044757+00 +544 pbkdf2_sha256$720000$MBcVq7xf6NAmcADrEXYvb6$GW5LqvxgdERR3VyZJn3TBT9ZNP8Jb1o78N17IqlKg2g= \N f mariela_wonsiak@hotmail.com mariela_wonsiak@hotmail.com f t 2025-05-13 21:51:55.656521+00 +545 pbkdf2_sha256$720000$OLeoAxRmLFU45obWCbQZmI$W7BrlBPbB6qmvY4Rf55ibBCogeLc2IOm+6N1HEr92+k= \N f cintia86correa@gmail.com cintia86correa@gmail.com f t 2025-05-13 21:51:56.238923+00 +546 pbkdf2_sha256$720000$8AJX8KLUfc76UR9PdRbJGV$pn8Tp+Vf+SNfFnja6zCThXq6gUnU4SwxVJmm05t3rZw= \N f marafiorini94@gmail.com marafiorini94@gmail.com f t 2025-05-13 21:51:56.891742+00 +547 pbkdf2_sha256$720000$LFU8t7vv283mI8Swa3agmM$7veZJA2MFVwPIJtKwuyNG2Hx82xTIVxGzIM8Ozjtm1s= \N f rosa_lozano@hotmail.com rosa_lozano@hotmail.com f t 2025-05-13 21:51:57.526108+00 +548 pbkdf2_sha256$720000$ITKC9yQ6ORDuBfM35TMMw7$184/FvQ0yBcntQOwgJMnRFEZMMik9pAfhWRoFoZ+xQo= \N f marcelogschwind@hotmail.com marcelogschwind@hotmail.com f t 2025-05-13 21:52:01.304995+00 +549 pbkdf2_sha256$720000$FelT0JOEydSPd2BpIPwku4$ee/K3AVmY3vqWbhiKLNsWFwUs/OXuRCPtChe4cAbRqU= \N f lucas.pereyra7@hotmail.com lucas.pereyra7@hotmail.com f t 2025-05-13 21:52:02.052256+00 +550 pbkdf2_sha256$720000$LNu4MwrALsbOXepvKAs0Yr$M7N21+Bls2+ZwR6vs9lHuckeHO1ESCW8udf356XjGQc= \N f marianarbru@hotmail.com marianarbru@hotmail.com f t 2025-05-13 21:52:02.848285+00 +551 pbkdf2_sha256$720000$Y6XO2FJHboilDL1ew1aKya$HiFbFdTm8mrHQrBKCgppNOIe/a2WbkJ7g213LK1n+08= \N f silvitormos@hotmail.com silvitormos@hotmail.com f t 2025-05-13 21:52:03.555836+00 +552 pbkdf2_sha256$720000$7EIYd3bJFyIhe9OvVty9bC$9HAf0wcpRZcLGr4sKSjsPu5s43XqmkXkpSsXXc2rDUE= \N f andrea.patino@outlook.com.ar andrea.patino@outlook.com.ar f t 2025-05-13 21:52:06.824671+00 +553 pbkdf2_sha256$720000$XQ5NkKWtt2eDMYF2qgZgQm$5Z5dgKMXH6Zq5a5Tf5JFwM7mxpwM/Z70b8Sf68JVOZQ= \N f florespindola86@gmail.com florespindola86@gmail.com f t 2025-05-13 21:52:07.677809+00 +554 pbkdf2_sha256$720000$CG3Aw1iL5qvwy6aop9ahBT$m/dDSYjPYZqFbB3zqGj0ZW8A8CyVQkug5NjTRC5hZvI= \N f lauramersilian@gmail.com lauramersilian@gmail.com f t 2025-05-13 21:52:08.348675+00 +555 pbkdf2_sha256$720000$tcGOkR5tp9BrGbNjB61IDP$qkuw+YscEuYqsGbBKs0jnevC8TP6mjLub0suKihAX8M= \N f desconocido@gmail.com desconocido@gmail.com f t 2025-05-13 21:52:09.000453+00 +556 pbkdf2_sha256$720000$lSADFaA8ArjYDMJ1TNjinU$wZML9pxxDgUswM4Pcc7tZEdtRHx9O4JHVtNDmX+serI= \N f nanifreijo@gmail.com nanifreijo@gmail.com f t 2025-05-13 21:52:09.629477+00 +557 pbkdf2_sha256$720000$ggD0Q0Zwo2AVS0x8G6KcTz$gRvPhvhnSu4cTS0idukNWYnfaijT9PgPwtZMxPBmz+A= \N f giuli_dim@hotmail.com giuli_dim@hotmail.com f t 2025-05-13 21:52:10.267229+00 +558 pbkdf2_sha256$720000$3vcZPmalW5TafZ0gCmOZ9p$zvrjDWBUmD4ftOQIdj8jtOb2bRtJoUNnOMIUYf+930U= \N f emartorelli@hotmail.co emartorelli@hotmail.co f t 2025-05-13 21:52:10.915428+00 +559 pbkdf2_sha256$720000$XhLtqJd3MgnFBDh3HW0Ljy$44IJlh5UJEknVVBZncv3FlLYxAxBmdLqFpUMujFfJbY= \N f julian.ledesma95@gmail.com julian.ledesma95@gmail.com f t 2025-05-13 21:52:11.575607+00 +560 pbkdf2_sha256$720000$8jgClUczlfj8UAmDPhENUH$lTuTZ0p+5d9Y0hQQSiu3KHKWlAR7VslUwGeIYnp/bbI= \N f pilarmarsden2000@gmail.com pilarmarsden2000@gmail.com f t 2025-05-13 21:52:12.303281+00 +561 pbkdf2_sha256$720000$mGEbxPt844akr97LYq80No$TFNbwhj6gUCtoqr9dNg9kXNegF8Xl8cCygpfr7cTXAA= \N f profesoragabrielafernandez@hotmail.com profesoragabrielafernandez@hotmail.com f t 2025-05-13 21:52:13.026345+00 +562 pbkdf2_sha256$720000$gqCnG6FBOnJhQXjAM76JaU$5zcADLE2RLT9LgNyX+vOKlxhel++aI0WI928S/txjvc= \N f florenciasosa928@gmail.com florenciasosa928@gmail.com f t 2025-05-13 21:52:14.068154+00 +563 pbkdf2_sha256$720000$qhZckF89b3izctsnqlyHp8$xTT54fnjiesA6xw96PxBM29TKQB3cOGvDRKT0ZmYNvU= \N f madissonrojas@gmail.com madissonrojas@gmail.com f t 2025-05-13 21:52:14.839674+00 +564 pbkdf2_sha256$720000$ZEkUoaFUMogtEKSVli05po$19uxmWwYWkKvo4DxdhrbqS0OkQYEAXSTGxgQI2CrrRs= \N f plumere.natalia@gmail.com plumere.natalia@gmail.com f t 2025-05-13 21:52:15.484554+00 +565 pbkdf2_sha256$720000$7hxvJarIaPotZGLvqRmO40$Dj3Dks8omcMdl2nHO53MfRzHjVlFFaqA4VXAcZ0vgdk= \N f jimenaucha@hotmail.com jimenaucha@hotmail.com f t 2025-05-13 21:52:16.148172+00 +566 pbkdf2_sha256$720000$oSMmkVRcOLgEPQnHCJSZXo$FA+l/90lqIFQShpweg54GTHsildMBoAUclFwWxmfb0s= \N f nadiajovanovich@hotmail.com nadiajovanovich@hotmail.com f t 2025-05-13 21:52:16.73504+00 +567 pbkdf2_sha256$720000$fMuKzjNVN0sBv0YwJVEjGr$P8qTEgMhC/KarFjqpESg6UjhpmqZX0Zc+V80+Of6jos= \N f laylaaojeda@gmail.com laylaaojeda@gmail.com f t 2025-05-13 21:52:17.383415+00 +568 pbkdf2_sha256$720000$ZiosYOp22EoeCifLzjhhGM$zGjIlxULDKYu3cd2bO+TaoxlqvzXKFT062lRtt6L80Y= \N f romina.laura.abraham@gmail.com romina.laura.abraham@gmail.com f t 2025-05-13 21:52:18.152786+00 +569 pbkdf2_sha256$720000$CTWV0nDHIlR7jbQnF752oZ$WVIdCnSIFv+5QMpBzQk+IgFSGocLQUkRgJcHqo6ETLQ= \N f sofiaespinosa@hotmail.com sofiaespinosa@hotmail.com f t 2025-05-13 21:52:18.75764+00 +570 pbkdf2_sha256$720000$Dlz42CbVTojOnvBbPehI6K$UgtTDWJDIqIhIQk374n9WC3PqvJdT+2EbIyd8/zYm3g= \N f andre2992009@hotmail.com andre2992009@hotmail.com f t 2025-05-13 21:52:19.475531+00 +571 pbkdf2_sha256$720000$HOk8VXnC1wGVrR7ISwuXky$KM+CS7D8q6EJRNhTyhDLKSdhEzvojQtFY+wBwpDJIf4= \N f ariglait@gmail.com ariglait@gmail.com f t 2025-05-13 21:52:20.210132+00 +572 pbkdf2_sha256$720000$1oN1y95kS3W0uWpZf3ltmq$zsJapi+fuQm3hsxAkSTwBPoDhetxhwUp3SHGtI2XaCM= \N f dieguitorinaldi@hotmail.com dieguitorinaldi@hotmail.com f t 2025-05-13 21:52:20.879204+00 +573 pbkdf2_sha256$720000$UflnI1qdxSCDbTTClyoDs2$peQ/BJlbPABdNhHFlYMUcjs5YXbpSnGa1pBgQKgC+fQ= \N f mavibravogonzalez@gmail.com mavibravogonzalez@gmail.com f t 2025-05-13 21:52:21.617149+00 +574 pbkdf2_sha256$720000$JkRuhqBB9FsOTdLlY9h1SG$Q6NpcTdbMxGVc+7fv04gcNS3Wvf2+UPp6aZbahzuYiw= \N f myribosch@hotmail.com myribosch@hotmail.com f t 2025-05-13 21:52:22.25644+00 +1356 pbkdf2_sha256$720000$54PMioMX5GiIewfapQRiN9$gxVaRuTOGN0OqGJvdxuTBL1A7/YRoZH/5m1wzS4HxB8= \N f estrellaterzano@gmail.com f t 2025-07-12 17:16:11.425001+00 +576 pbkdf2_sha256$720000$51s5fsAC0D7yYMTRnHP4em$SJgsXCgE3Vj2DMbKmeFT2NegL1ozV0L3/9DKHjebCjU= \N f arakuyen@gmail.com arakuyen@gmail.com f t 2025-05-13 21:52:27.155132+00 +577 pbkdf2_sha256$720000$XltulilZH7GBqJZwofAsPl$n6XG4IdB6QLoHKS9LUe1OiWqi4I/FiPDjyPliMzM+qg= \N f martinadjdjfj@gmail.com martinadjdjfj@gmail.com f t 2025-05-13 21:52:27.765652+00 +578 pbkdf2_sha256$720000$2VCHbB4bqbl4UDhlqSvBq7$jwHpz9RbF5u2j6K1OFDTuG2DYNKi9/B+snT/d8Uv7AA= \N f victorcarbajal@gmail.com victorcarbajal@gmail.com f t 2025-05-13 21:52:28.399382+00 +579 pbkdf2_sha256$720000$IfkuavdqVhcwTEnXKkYJe1$Xx3arJlrr/VOSwDZbOviqt/0ENhhDIYw2WLZ2rBzGH0= \N f johanna.bmartinez@gmail.com johanna.bmartinez@gmail.com f t 2025-05-13 21:52:29.143171+00 +580 pbkdf2_sha256$720000$8SuiK1VMINkjYvT7y0C5Ej$c9p1IUjUTocF43x4uDqkR0PLSpESpncfTjfrcAWWQO4= \N f fabiantettamanti@hotmail.com fabiantettamanti@hotmail.com f t 2025-05-13 21:52:29.807643+00 +581 pbkdf2_sha256$720000$uTjGT2pVWMydSTvp1DLth1$37+OCeI9vCnkbDzUT2gGS81ert2GCzzJEh5DEmQeAGI= \N f amatodylan19@gmail.com amatodylan19@gmail.com f t 2025-05-13 21:52:30.446242+00 +582 pbkdf2_sha256$720000$4oHx4GY9qAioUPS9nHHLfB$VxF7weBrgCPloqX2Wui/P0dfyQKR3hHevsVTLrUbO00= \N f vdraghi@gmail.com vdraghi@gmail.com f t 2025-05-13 21:52:32.658518+00 +583 pbkdf2_sha256$720000$njwwSSYRMkVXnqUK1tDCjF$xOcM8LVJtqDERr7cob47WxvpwpLdqIfMAPzO2egyKU4= \N f fluekigers@gmail.com fluekigers@gmail.com f t 2025-05-13 21:52:35.14368+00 +584 pbkdf2_sha256$720000$f3WcydWj6gvUt4nse8lItO$szCPOaCrVV/THXfvw+h3HzMrAdKavGEAjjxppcEd43w= \N f fla_121297@hotmail.com fla_121297@hotmail.com f t 2025-05-13 21:52:35.748377+00 +585 pbkdf2_sha256$720000$MYeNP5Dv3SPQcCjzpC3ZJH$LQmlHsYLLFwqE2VbMUefEKAIi+BFu6p2x2Gjo5Q+Vhs= \N f granadillosally33@gmail.com granadillosally33@gmail.com f t 2025-05-13 21:52:36.3801+00 +586 pbkdf2_sha256$720000$Mw6lKpMKT0mfaWtX0Xx2yi$2NxZp8p9XZ3uHJbb9CgcwlV+gQfgeIPj21b6FSSNzTA= \N f mirandaminatta.he@gmail.com mirandaminatta.he@gmail.com f t 2025-05-13 21:52:36.976126+00 +587 pbkdf2_sha256$720000$nWag1xdNZqNIuU2iX0t1iW$9KUSrsfOty4VyWphRjDECLBaSGv7B+VnJrdtT9+uAKY= \N f alanrozental1@gmail.com alanrozental1@gmail.com f t 2025-05-13 21:52:37.806707+00 +588 pbkdf2_sha256$720000$37D6gmWTBrJGjrexBuA9kg$xR8JO74Auf7Wrvjk33jQcDRZZJDmK3Elnz/+PL7WRzE= \N f leonardo@iannello.com.ar leonardo@iannello.com.ar f t 2025-05-13 21:52:38.521974+00 +589 pbkdf2_sha256$720000$46LQet2PtXWnLY5aFC1WFZ$JQG2jG0cv1ZthH8C/b3+rDfdtaEXcOD30FzPz1m9K8M= \N f pastora.rezeck@gmail.com pastora.rezeck@gmail.com f t 2025-05-13 21:52:39.177922+00 +590 pbkdf2_sha256$720000$G85Kf6HImGbJjycncbCPqv$QzpwfDMhFwhp1+YwnuA5ZU2E149SbS0BwIbHVORjT2c= \N f brites544@gmail.com brites544@gmail.com f t 2025-05-13 21:52:39.865893+00 +591 pbkdf2_sha256$720000$RISPkyg7PfNSZhVATdPHxC$KZMUqK7FvuZ93bhj5XkHxL8lu41uTE6LaBxgXTQ9jI0= \N f vaneluig@hotmail.com vaneluig@hotmail.com f t 2025-05-13 21:52:40.585409+00 +592 pbkdf2_sha256$720000$8km9NjUcBujA6goREilVcD$bTDbLr9k/BtdcTevn1eAWiiKoSR4kjpYXuYmNDmzY+o= \N f agostina.imbe@gmail.com agostina.imbe@gmail.com f t 2025-05-13 21:52:41.218812+00 +593 pbkdf2_sha256$720000$yFSgmRuTkDr94GBCc9FK4I$9p7U7KbY8nrWePIh/7fhGxtdu43vo5y8/gY8MbFSipM= \N f stellamarisfloriani@gmail.com stellamarisfloriani@gmail.com f t 2025-05-13 21:52:41.901803+00 +1368 pbkdf2_sha256$720000$oqXKXfAclhor8yNcWbFdqV$2Amxyza5J6OjyTbssEXFUVhwmhA/Dij1BNk2exQ3D9A= \N f Kdayanagarcia@gmail.com Kdayanagarcia@gmail.com f t 2025-07-14 18:02:44.57905+00 +595 pbkdf2_sha256$720000$c7ghf9tZuXdnnjgUJhT189$pC5us6tXyG8UKoip4yYOP6VOPNnq9D92Lzaaj+Dd/j4= \N f sandjorge22@gmail.com sandjorge22@gmail.com f t 2025-05-13 21:52:43.334982+00 +596 pbkdf2_sha256$720000$waVgWyGYcL4uLWMA1btUGk$G9/nknnck5bs2aouh3am/9z8fZ0Z5A7S8hZjL7kxuV8= \N f andrevelmar@gmail.com andrevelmar@gmail.com f t 2025-05-13 21:52:43.93335+00 +597 pbkdf2_sha256$720000$KrhGdqaB1Kw38HW73lOnKM$bcVNkikrmwvuoZ+Rqb+0R/jwk8IxjOtto8vY+VB90Jo= \N f maldonado.jesica87@gmail.com maldonado.jesica87@gmail.com f t 2025-05-13 21:52:44.53619+00 +598 pbkdf2_sha256$720000$Ui44RQlxcPY9kVi0djFzlM$rF022nGSeWUVNVLZDD+AaD+/88VC2GAFIUUPqcTvlwA= \N f marcela.deleu@gmail.com marcela.deleu@gmail.com f t 2025-05-13 21:52:45.373973+00 +599 pbkdf2_sha256$720000$GIw2CPaGeCQhOyTo9lOjgq$a+m7kR7n7EzS4rmHGhMHuj/jMzz9yngR/pUAUb4IdoE= \N f samendiss011@gmail.com samendiss011@gmail.com f t 2025-05-13 21:52:45.954334+00 +600 pbkdf2_sha256$720000$KQbB0YIiwSJCmPz4XZUvyh$UFsvFIaYWsU24aoFue8xxYmXLDgnVMflOS9/GzScDWg= \N f saray.estudiointegral@hotmail.com saray.estudiointegral@hotmail.com f t 2025-05-13 21:52:46.547547+00 +601 pbkdf2_sha256$720000$F7nefhpLPid6TGiBcASsEd$ksZUzjLuMj48v4QP1lwAst9JkmTbx1KZftVsaOr48eA= \N f chrisagusdelgado@gmail.com chrisagusdelgado@gmail.com f t 2025-05-13 21:52:47.267586+00 +602 pbkdf2_sha256$720000$wScBbZNBji6sebHjPok4hP$fs9YQb9NU65TyNilJ3C2RLJ2WGzxtRzQkj/pubLMou8= \N f maiaromig@gmail.com maiaromig@gmail.com f t 2025-05-13 21:52:48.065935+00 +603 pbkdf2_sha256$720000$bTXvIrmRRNEUAWvAHky5xP$puCDM1K+d7Tygo8CVQOI77zlHw1K0o0BwfychtPAckA= \N f patricianiebla1957@gmail.com patricianiebla1957@gmail.com f t 2025-05-13 21:52:48.691801+00 +605 pbkdf2_sha256$720000$DsifOPNDBwEMy10AMYbhW1$2YzHRdTjBCylYiiZcXzbQWJgPR9ERChN5Wqy+UaddnI= \N f paulacic@hotmail.com paulacic@hotmail.com f t 2025-05-13 21:52:49.931549+00 +606 pbkdf2_sha256$720000$tIdTcRreIncSnIqoft0axG$A/yRimobBVryO6/nH2U/n7wEWkI3gA/0Clb9Ya/nkzY= \N f mirei.mirei.ra@gmail.com mirei.mirei.ra@gmail.com f t 2025-05-13 21:52:50.547189+00 +607 pbkdf2_sha256$720000$yeR2EK7cz3ADGGLptHnpSU$cndY2haIqELBXbfta4N0q9JftlxYxBh4XZY47z1pslc= \N f ivan.butera@hotmail.com ivan.butera@hotmail.com f t 2025-05-13 21:52:51.211834+00 +608 pbkdf2_sha256$720000$LlhjPgLCj3ZD7HkAqWQ4x5$1Gxpq405b60Dgls27DhaF61B4UALhqfsOAg99GKSbZ0= \N f valent.medina87@gmail.com valent.medina87@gmail.com f t 2025-05-13 21:52:51.840508+00 +1357 pbkdf2_sha256$720000$4DnLIvgV50vOJSsKk6cvLs$87uTx0h6Nv4vd/yJApB0hnwc3PjcvPg+hwyvUV9qlOQ= \N f joseacerrada@gmail.com f t 2025-07-12 20:32:25.085861+00 +610 pbkdf2_sha256$720000$JYolPriEm30s7swkn3VqG2$dByw7JJsyJ946Sa5BZVFWwyzZQNiZBaL+7mqP/FNnI4= \N f marac.alvez@gmail.com marac.alvez@gmail.com f t 2025-05-13 21:52:53.372639+00 +611 pbkdf2_sha256$720000$1ugJRAGdu2plUFPfwZw0X5$GvNtH9Hhl3Fjq3RhubaSJGEuFWJFQwE1scJj908gdKY= \N f agusdeangelis@gmail.com agusdeangelis@gmail.com f t 2025-05-13 21:52:53.973344+00 +612 pbkdf2_sha256$720000$tEbtcOdG6xvIw7qTGQFYSH$6BBdI5lVPEkhba6oYGBAF23kkqmjhf3rLdAelPjB0MM= \N f lucianacampanella@hotmail.com lucianacampanella@hotmail.com f t 2025-05-13 21:52:54.547682+00 +614 pbkdf2_sha256$720000$hzMmGrBeNTmrVGLgGb8RQM$y2sBMj48CQNm1hB1Y35zQmfjm4OrI51sSLJQ+qZ0/f0= \N f eslomba@gmail.com eslomba@gmail.com f t 2025-05-13 21:52:55.821752+00 +615 pbkdf2_sha256$720000$ITRdO3muz6YDDolpVHbO9t$yX24zbw4F8vofcgITcX0y9+X0tHnPuWlD0RTB/OuRfc= \N f griselcbw@yahoo.com.ar griselcbw@yahoo.com.ar f t 2025-05-13 21:52:56.470704+00 +616 pbkdf2_sha256$720000$o9Smhb07w3jX6fHGb8L6q8$0K8F9ptfyLLn8EhtUBj574yrwm53LGO2xhN3RadMs/E= \N f barbycu97@gmail.com barbycu97@gmail.com f t 2025-05-13 21:52:57.124319+00 +617 pbkdf2_sha256$720000$1b2W6WIdYl2m6X38AxyVeG$HL35nZqcObpbOspJEQkQCDLMGO9lIujQNJyoSg6Z+go= \N f christladyparra@gmail.com christladyparra@gmail.com f t 2025-05-13 21:52:57.815214+00 +618 pbkdf2_sha256$720000$1gKPGX4W8GBb80bgoHire2$5KHoVFRSAJj2be5W06+ba3L0KzY/NX0nED3P8ddt2+E= \N f zoemolina2018@icloud.com zoemolina2018@icloud.com f t 2025-05-13 21:52:58.425744+00 +619 pbkdf2_sha256$720000$dGkG8yUSm4YiXD6wGTZMjG$SoByKw+6iICctoHipeHUSXE201F4fkQ+Kjkr3YCCBXI= \N f diegojmrm7@gmail.com diegojmrm7@gmail.com f t 2025-05-13 21:52:59.054203+00 +620 pbkdf2_sha256$720000$9Gun1nQpifs0LSE2l5j0cH$MBEQjIyNyS7VCPucJsPOv5EAPlR4x94eWUow8QW21eI= \N f noe.cristel.r@gmail.com noe.cristel.r@gmail.com f t 2025-05-13 21:52:59.651518+00 +621 pbkdf2_sha256$720000$geC5xwatWUVXDN0d8riGg2$KLVVrtQKQBz2vs2wcvGmDhYOjV+bv7tT+19gUGtM8xk= \N f noye20@gmail.com noye20@gmail.com f t 2025-05-13 21:53:00.27387+00 +622 pbkdf2_sha256$720000$5MPnKphDBpKSsmDDzB5p4x$h6e6pvoczdkePJz12TE/LN2+VUOThyyZPXgJ7eMwppk= \N f betsabet.terrera@gmail.com betsabet.terrera@gmail.com f t 2025-05-13 21:53:00.90105+00 +623 pbkdf2_sha256$720000$Ark6ZSHeidH200EgwLTsvu$jPDacO5oAwoD4dSPCC8MxFfn8sNVypMZXVPEbaZHYcw= \N f sisimiguel44@gmail.com sisimiguel44@gmail.com f t 2025-05-13 21:53:01.520578+00 +624 pbkdf2_sha256$720000$SZPszRV3AYq6kB0b3RRM5i$/XWEnqpt+P5nL1QdvRX4yZBLFLF42BoyxahjukJJFHc= \N f x@x.com x@x.com f t 2025-05-13 21:53:02.134192+00 +625 pbkdf2_sha256$720000$zpe11yLhOaYmbls8HCoGYC$46L/AkDamRh2Rnyf3JeIfTsH33T2NrgjJBz2reGOszs= \N f mirnagutierrez978@gmail.com mirnagutierrez978@gmail.com f t 2025-05-13 21:53:02.846515+00 +626 pbkdf2_sha256$720000$6ztk8u1rVmwT28ah9RZfxJ$y1xh4TM0MQ8nDlZAJ1zfMg5v/kYcr2n/QMDtHYY7eMg= \N f eryjuarez@hotmail.com eryjuarez@hotmail.com f t 2025-05-13 21:53:03.538336+00 +627 pbkdf2_sha256$720000$95CNfdKmWPeHDQl9HQF1jj$5Q5WO4jmbXgJxnQiSSYycoRbzBtwdvu1kbnu8Okey/k= \N f j.a.balvidares@gmail.com j.a.balvidares@gmail.com f t 2025-05-13 21:53:04.196178+00 +628 pbkdf2_sha256$720000$l85elq1S8OJwhHi5mjUnIM$u5SqccABvG2zT7aVG5I7HL4iZ+jxZQRoadkkUKIv2/4= \N f irenenalpatian@yahoo.com.ar irenenalpatian@yahoo.com.ar f t 2025-05-13 21:53:04.812128+00 +629 pbkdf2_sha256$720000$jRalVbbSO30NuPykB6dvc9$XT2rGch4a4veengmYhVPG5Ncmhr6NFMlqObJSZtp+oo= \N f soledadibarraa20@gmail.com soledadibarraa20@gmail.com f t 2025-05-13 21:53:05.406596+00 +630 pbkdf2_sha256$720000$TJisr4NTI9cnsbSed9vwRJ$Y8fzWtBMoOe4GC7c8/B8L1MG/p4K9avED2C+DWVwXxc= \N f josefinadibhasan@gmail.com josefinadibhasan@gmail.com f t 2025-05-13 21:53:06.046338+00 +631 pbkdf2_sha256$720000$hwu1Db3LedS2k8EtX2c0R6$5c6jQihzhGlBi9M+DXH3Ae1FOtL54JFGRMHSmn4Ez4Q= \N f andreslencina07@gmail.com andreslencina07@gmail.com f t 2025-05-13 21:53:06.723645+00 +632 pbkdf2_sha256$720000$A92rrXbfjVbbc7cFCg2rkJ$o0CfKeqjAZcOmrC0/m8IYcvOpHynDUqzHJFu0fQmwI0= \N f inesmakoveckas@hotmail.com inesmakoveckas@hotmail.com f t 2025-05-13 21:53:07.366683+00 +633 pbkdf2_sha256$720000$pFvweGfdpPeMphTEkHKoYI$llbGY2B98d271AMa6x/abAZpOTqapxyAvukeOxa1Bl8= \N f vaninager@gmail.com vaninager@gmail.com f t 2025-05-13 21:53:07.964592+00 +634 pbkdf2_sha256$720000$EWGVF19S5JlX3MrIdZAZa9$fdksi/mD1IIGflcgRp5y1LC3BYUvrTK2F3dW1vOOYSA= \N f bellogracielaasunta@gmail.com bellogracielaasunta@gmail.com f t 2025-05-13 21:53:08.634959+00 +635 pbkdf2_sha256$720000$4K2nj8rAXEmShA21yppBfx$at1OwTfBLsL6hOL4zzWxUn1TIhevAbZnFdglSgdswgQ= \N f msol_3@hotmail.com msol_3@hotmail.com f t 2025-05-13 21:53:09.25156+00 +636 pbkdf2_sha256$720000$Y4RtPwRrNH9EucuYX7WA05$rwx00eKY10/UEUl0BO/NAX+tAdeMKRng3tlCi2CPOFs= \N f falcao12234@hotmail.com falcao12234@hotmail.com f t 2025-05-13 21:53:09.90347+00 +637 pbkdf2_sha256$720000$mK9sbDQjtRap9p1aOZhDD6$6p69IS5p9zK0hllXwtptkbPYxtSqnwIyuXY277hf7aI= \N f soriamaria349@gmail.com soriamaria349@gmail.com f t 2025-05-13 21:53:10.624197+00 +638 pbkdf2_sha256$720000$eUKbso88rKcaWughAP62YJ$/rNsLhQIqt7zV4sh/X/4PqkBQB0fJ+GkWcK1Pa0A4No= \N f melu88_6@hotmail.com melu88_6@hotmail.com f t 2025-05-13 21:53:11.318217+00 +639 pbkdf2_sha256$720000$BZYbe3c1xnxUhWPQLa36z4$MW3laxRkRiVD8TXO2x/47EFBr4nXxf9DVcuSfRHpYck= \N f illanes.k17@gmail.com illanes.k17@gmail.com f t 2025-05-13 21:53:11.944163+00 +640 pbkdf2_sha256$720000$GlhXMcqSHTxkw5653Y3y2a$AdgRR3W4OEhQ1vSZc84X7ZtcFB84B7CEJAAxbRWs20A= \N f pil.taboada@gmail.com pil.taboada@gmail.com f t 2025-05-13 21:53:12.574365+00 +641 pbkdf2_sha256$720000$GfNYqpjjXGSxMiMehQJszD$8VRHAY6xYPMCPQBbfxwTMM2V1P4QjO+hk7p2VTOUwKA= \N f sousaraquel616@gmail.com sousaraquel616@gmail.com f t 2025-05-13 21:53:13.295892+00 +642 pbkdf2_sha256$720000$ZgPpdLOiKfWjdIPlxFMHwT$Lk+9NLBhAaEe6BXECPEkx9lyTVfjyaJb569EJNTBWxk= \N f ssjaimez@gmail.com ssjaimez@gmail.com f t 2025-05-13 21:53:14.004426+00 +643 pbkdf2_sha256$720000$1AUUt2cFasziX7mJfAViVs$PEmej1lUaslvaIJZ2cRlANnEt8Pz0sdiDdwzd4nir+I= \N f gcentu74@gmail.com gcentu74@gmail.com f t 2025-05-13 21:53:14.658352+00 +644 pbkdf2_sha256$720000$J3Tv1DOVsL0JrkmyFy5v4W$LhmmuafD3iVCVNdx+2VxXfeVuNfWTLLUfsOxxxSIris= \N f 00000@gmail.com 00000@gmail.com f t 2025-05-13 21:53:15.423823+00 +645 pbkdf2_sha256$720000$2SY9bED9wN58Jdmn71zOPM$pevUGuSMIaTIvMtlu9O3jqZ+zSLAnIfCnkoXzaBNF4s= \N f joaquin.daniel.nunez@gmail.com joaquin.daniel.nunez@gmail.com f t 2025-05-13 21:53:16.130904+00 +646 pbkdf2_sha256$720000$A80WZ1PiF0n8p7hz2ftWQp$F0zN0x9pdj4NIbGUe+YSjq/MXHMbZswN0EzUvtNLDec= \N f mmariasch@gmail.com mmariasch@gmail.com f t 2025-05-13 21:53:17.103068+00 +1898 pbkdf2_sha256$720000$684xYcu18wiCl5gx3laVL2$OYfC8fHORToeh2w0ELmMfV6CbNslH4qULpeHdUuy7eI= \N f algon.asistente@gmail.com algon.asistente@gmail.com f t 2025-10-21 19:53:27.186372+00 +647 pbkdf2_sha256$720000$ccR2PMn4BlbaH5EWlCYsKD$n9BugvyjRE2CoKfQ1T1HKWmsRv5PgVcAmW4y7lMzYpQ= \N f luisgabriel.ace@gmail.com luisgabriel.ace@gmail.com f t 2025-05-13 21:53:17.953023+00 +648 pbkdf2_sha256$720000$wRGDouc7iCyNHfhNqTqr3K$lPaTIlvfoCUEriDxEDiq2yT2JqhwSWywflNOwtzlRw8= \N f abarcia9@gmail.com abarcia9@gmail.com f t 2025-05-13 21:53:18.549436+00 +649 pbkdf2_sha256$720000$KLEgJcKZ0HD4Yd6NFBTZeW$p6NSJCOI9kbMRmyRqJPlFIrVFIPZlQQzN0CZEW/VjPY= \N f fliastofen@gmail.com fliastofen@gmail.com f t 2025-05-13 21:53:19.124852+00 +650 pbkdf2_sha256$720000$NolplSULtZ5BlatI9fj9tp$bcWDXVUmTrB/meC6tdm1r0flu/j9+hAVsPZxlFPEaCI= \N f 000001@gmail.com 000001@gmail.com f t 2025-05-13 21:53:19.707561+00 +651 pbkdf2_sha256$720000$cBFo9FY379d4sxaD3fNbjq$uyHmcZn7p2JCCKUcGLUwWYlI3N3guwHE1TtqTtRSKjU= \N f mariavaleriamallo@gmail.com mariavaleriamallo@gmail.com f t 2025-05-13 21:53:20.426078+00 +652 pbkdf2_sha256$720000$4Ep9CwsuKZRCiwzESY5tVY$jK++/HLahP2tWLjBkDHJaz3IxOI9LHmYiSzRyLmleOo= \N f federico.velazquez@gmail.com federico.velazquez@gmail.com f t 2025-05-13 21:53:21.039501+00 +653 pbkdf2_sha256$720000$m7KO1wvwq0adud4tgY1DqO$G2vHL96MnRg2MiqA/W5qN4Jsj7DYEumzjJn4gGntdw0= \N f cadahiajavier@hotmail.com cadahiajavier@hotmail.com f t 2025-05-13 21:53:21.672908+00 +654 pbkdf2_sha256$720000$sz2TOiRRK4triMniFeFSSV$regJicwPbddUvAGGJkr9CfLYOJJHboi/79heyMM+DNM= \N f rosario.cuba.r@gmail.com rosario.cuba.r@gmail.com f t 2025-05-13 21:53:25.01131+00 +655 pbkdf2_sha256$720000$XKlFs9XrjH1iDYnYyP66Wk$F1uNRkrcgs8uL3vPuGiyZ4qII+es6Vr93W/NWw1/398= \N f anandiniperi@gmail.com anandiniperi@gmail.com f t 2025-05-13 21:53:25.729335+00 +656 pbkdf2_sha256$720000$9g9TU0ydwlt5vfIkUMKvkc$wRweiOTxkHQbMCPfZkbcp3RRCByAU1M4i8MAQiWjQqA= \N f blanca_gonzalez_chamorro@hotmail.com blanca_gonzalez_chamorro@hotmail.com f t 2025-05-13 21:53:26.347829+00 +657 pbkdf2_sha256$720000$JJPVLmMUuYWerHY88s1uyx$t8RaZUOcBvzpyFhW8uG8+IAoaLXQoOwT2Sz3BW+MdtM= \N f yaannuu14@gmail.com yaannuu14@gmail.com f t 2025-05-13 21:53:26.957401+00 +658 pbkdf2_sha256$720000$dK77OB0kBGJS7WOQWL9DCC$q9aaXlpyvj+EYoqq20X5jvtLZeioJhTLY6Tbi0PGC2c= \N f 00002@gmail.com 00002@gmail.com f t 2025-05-13 21:53:27.602629+00 +659 pbkdf2_sha256$720000$tzdRVzBKMHocnplKYB9NNb$Dz5DhM/+5myukcikZT7srboWuPN9lEHiJmNqEC5FVmY= \N f morenolalalandia@gmail.com morenolalalandia@gmail.com f t 2025-05-13 21:53:28.188108+00 +660 pbkdf2_sha256$720000$VimWotU5XLXLyNHGvJzZTV$DeByhGQuZmp0nFz2BqdofKCleWU/uOKuiVEIoYLFC8M= \N f elsafranco90@gmail.com elsafranco90@gmail.com f t 2025-05-13 21:53:28.779552+00 +661 pbkdf2_sha256$720000$bwaOZoqHg4rw1QFj741Umz$SBYfqpV6YdjLSx6jFdtAJA62zTzSVhj0tMMzhhT46so= \N f lu.pacheco87889@gmail.com lu.pacheco87889@gmail.com f t 2025-05-13 21:53:29.364569+00 +662 pbkdf2_sha256$720000$2Dcn6p5jYWegD4BILIpYnD$3FEGgQU1D9V1MWBrG58NeAneq5c8AT6/0ElQj2olYbw= \N f 0000001@gmail.com 0000001@gmail.com f t 2025-05-13 21:53:29.935834+00 +663 pbkdf2_sha256$720000$yoMsnTX9Z4nxKFcNc75tKi$uFXGQiZM61QZFsAVF4tslWgop0xuL4UuKJPqCFIr5Y4= \N f elisotomayor1967@hotmail.co elisotomayor1967@hotmail.co f t 2025-05-13 21:53:30.575874+00 +664 pbkdf2_sha256$720000$59MmTwJrpzD1lMjGrPHrEd$pHDsBGNATrTyEW+tno2iE7vzTSUHPN5ETsIqzYNjaZY= \N f pabloandrioli77@gmail.com pabloandrioli77@gmail.com f t 2025-05-13 21:53:31.218257+00 +665 pbkdf2_sha256$720000$3g1gtLqJ1k8nWVSeZ2AQv5$sViyM2nj9t7DcFHhM1GFH4V6VEbNfSE1YR7x+JKXTDk= \N f natalialibros@gmail.com natalialibros@gmail.com f t 2025-05-13 21:53:31.846463+00 +666 pbkdf2_sha256$720000$LLM9ghIL4zkCLtjNND6ztW$/Usg1XkJprsFb/kTRz9m5d+BaJCrPEGrPxLNp8Z4T7I= \N f barenbaumleonor@gmail.com barenbaumleonor@gmail.com f t 2025-05-13 21:53:32.505222+00 +667 pbkdf2_sha256$720000$5TdnZuTNzVoUgp809rxXyh$0VmDXyqPvhoxQKaaHOAXyqX+s6XCuc4UjmpvCCdh6r0= \N f lucia@pancara.com.ar lucia@pancara.com.ar f t 2025-05-13 21:53:33.29106+00 +668 pbkdf2_sha256$720000$yMt3dYq7KW1zbM2IuEor8N$Vwk/Vw7sbLbUjxX32rfL7NWUxmaF2zFAOSg5BIWaZw0= \N f dinaleti@hotmail.com dinaleti@hotmail.com f t 2025-05-13 21:53:34.243989+00 +669 pbkdf2_sha256$720000$ALzgFxPqnySpJrJqF5REwo$OKFrz+aPKI+Nhi7+qgl69zgjqgRnVXdfnQ235PNgBSA= \N f anacarolinasedano8@gmail.com anacarolinasedano8@gmail.com f t 2025-05-13 21:53:34.885337+00 +670 pbkdf2_sha256$720000$FyAtQNvex2ljgqpgli68AZ$AD/DPL/iySebISp6m1C7tr6XHcDXH4mdiNefMXf+XR0= \N f dietotten@gmail.com dietotten@gmail.com f t 2025-05-13 21:53:35.478944+00 +671 pbkdf2_sha256$720000$n2aTC3b84y3l96jSuTDC52$kjOwFGalg0Cz/Rzv7v2c1DIjpo8cC4hCJnVNwkkQ0qc= \N f danielgalanti@yahoo.com.ar danielgalanti@yahoo.com.ar f t 2025-05-13 21:53:36.168382+00 +672 pbkdf2_sha256$720000$aF5tYAwmTKpzpnVM16eeSa$beHsZikxcmbperb1Vxki02aDk0+AWW1EqTWKPqS4+AQ= \N f consuldof@yahoo.com.ar consuldof@yahoo.com.ar f t 2025-05-13 21:53:36.880682+00 +673 pbkdf2_sha256$720000$Ls52C7kJ9yGzIEGJZQX47n$VqJFyQrzNYXPGi+HAfdvMDBqn32Ne6fsDpWItOOpyE8= \N f d.landes@shion.com d.landes@shion.com f t 2025-05-13 21:53:37.506354+00 +674 pbkdf2_sha256$720000$vpWeTgEJtkVupsJGr7B78R$Vx982NPqB4XsWdnn5UCkuX7AwrkQqO8hvA+lbn2W7dY= \N f angerivero92@gmail.com angerivero92@gmail.com f t 2025-05-13 21:53:38.112194+00 +675 pbkdf2_sha256$720000$XEYZ2EiqlQB8rNdUx3ZAvI$cAmb2MPtD5ft6RHv0CJOO6r0o3nlHvpM7sPEIN/nK1w= \N f leonorhildameligrana@gmail.com leonorhildameligrana@gmail.com f t 2025-05-13 21:53:38.757283+00 +676 pbkdf2_sha256$720000$hopsx4PIpqPponvqD78UiR$HOyzQAa5y4LjmfX66GrfNQheShw+w8lOiUbOduDfzK4= \N f zoedomi19@gmail.com zoedomi19@gmail.com f t 2025-05-13 21:53:39.43302+00 +677 pbkdf2_sha256$720000$tQB3ngb6VZ8kG5GZDgmIAE$5PxCPLMpzhiOJKk03UjZutZN7iOCy2Ygp9gi6nmoIiE= \N f elisaargentina@hotmail.com elisaargentina@hotmail.com f t 2025-05-13 21:53:40.023242+00 +678 pbkdf2_sha256$720000$IAnK5EiQ4YD1mmWfsXR5IQ$FyWhXT0WPR9Jh+e/+ZL6kONXTnsW3K7CkjUoG4a8JT4= \N f becerracami27@gmail.com becerracami27@gmail.com f t 2025-05-13 21:53:40.66588+00 +679 pbkdf2_sha256$720000$djHa8NX5NISILlzkr9Q8TV$f3o93cIAQ+hG0AKFO30Vqoox8OeDAPXr1oAICNddqss= \N f oliveirateresa70@gmail.com oliveirateresa70@gmail.com f t 2025-05-13 21:53:41.38535+00 +680 pbkdf2_sha256$720000$dBmEwiLF4UMzQFEd2GcLoa$xnmHi9g0NyQmQ6NmcRvAfAatB5nVsl9Q6P4eQaJhFGU= \N f sancheznata86@gmail.com sancheznata86@gmail.com f t 2025-05-13 21:53:42.123201+00 +681 pbkdf2_sha256$720000$lqZ3jripVzUcNnkyHVaKy7$KshaeF6sHP6xdlntawQbvyXeQ+pxdfYVw/EuP6LWbGs= \N f ocampomaxi4@gmail.com ocampomaxi4@gmail.com f t 2025-05-13 21:53:42.838485+00 +682 pbkdf2_sha256$720000$r2fHkA1W1KntHM27OQfGWG$B+0TRuq8HgKg3LBkfZhKxTaT5jF0xk1DClSUtGBXNCY= \N f baras1217@hotmail.com baras1217@hotmail.com f t 2025-05-13 21:53:43.455454+00 +683 pbkdf2_sha256$720000$njFK3BaHrBfAI4KUXSjSdL$bGzRAj5h+Uo/3VoflCk0H765q3J9iyyx+zJ+DaNa6kU= \N f camila.i.bernardo@hotmail.com camila.i.bernardo@hotmail.com f t 2025-05-13 21:53:44.110805+00 +684 pbkdf2_sha256$720000$k67WfzHtDDN1k56WhrF4UI$Gzw3bcSVYT+n6mBU/Vj2iMjeGs66HrCkzfGNG00AM2A= \N f ldsmontiel@gmail.com ldsmontiel@gmail.com f t 2025-05-13 21:53:44.762506+00 +685 pbkdf2_sha256$720000$Fa46G5FDs7rTKDzEMSwp53$MlRufLTWQ9AmqgJtHwOv9Kchv/n4tJg+MzlcWOoNdoQ= \N f repartoscaba2024@gmail.com repartoscaba2024@gmail.com f t 2025-05-13 21:53:45.515198+00 +686 pbkdf2_sha256$720000$Qi1GMT1iV3vVh8SQSDaww3$nf22eNocmJSk7BHfE7ud0ppKOmpfCMqXhnch2MjxQbE= \N f alexandraagauna96@gmail.com alexandraagauna96@gmail.com f t 2025-05-13 21:53:46.508899+00 +687 pbkdf2_sha256$720000$qunwfVdcOtBFGyjm7EIZi3$mZA83p62f3tAK2Ui9N0esVR/5dllk/ewUAlBMkeXiOA= \N f krushenzkaarroyo@hotmail.com krushenzkaarroyo@hotmail.com f t 2025-05-13 21:53:47.193906+00 +688 pbkdf2_sha256$720000$iYcsXPQEUK0qaM5C8GfFBJ$KI7Dk+xY69bpMxKWWPo48FN3mSlB5/tQy7nGIooZewg= \N f clau2016ferrari@gmail.com clau2016ferrari@gmail.com f t 2025-05-13 21:53:47.906804+00 +689 pbkdf2_sha256$720000$kkb0mRYwGmaWvQxuH12ABU$Dv4idkHNjCfaLD/RnHDfhvRVoDlrVWLa6+WAJFivOfA= \N f florencia.cantero16@gmail.com florencia.cantero16@gmail.com f t 2025-05-13 21:53:48.981261+00 +690 pbkdf2_sha256$720000$yD9a6aJP9QjXInWk1aSpYm$XCt8eTVH/sY0KHZARbmu6i87ngERoTCwoP8+s2xryIo= \N f ger.olmedo@hotmail.com ger.olmedo@hotmail.com f t 2025-05-13 21:53:49.672495+00 +691 pbkdf2_sha256$720000$3M8nx6ymsxWv3odRzMd22U$GBlrRs9H3YjtU++g0GamcPXfSvTqaGh34at3VvTrUqM= \N f ulyflores10@hotmail.com ulyflores10@hotmail.com f t 2025-05-13 21:53:50.393557+00 +692 pbkdf2_sha256$720000$9bgGFbGVvlTnBNPA9iOj5L$JwyXFEdnMC4Ej5Sg/gglA/fycDvX2Kv3EHwd5+AKLqI= \N f antonelatango16@gmail.com antonelatango16@gmail.com f t 2025-05-13 21:53:51.061101+00 +693 pbkdf2_sha256$720000$B2Y8HVhUK5IKQePIslZmPJ$58Tucju9x1jIXl5NwECREUuMlSt5geo+xywPOx7/oT8= \N f mmhermida90@gmail.com mmhermida90@gmail.com f t 2025-05-13 21:53:51.779694+00 +694 pbkdf2_sha256$720000$JbjOGtHn2IAG5f7LlGqlmD$RsCxSDdmFGEi56u1VY8BhQQxPlD8p4Ikv+0ztO3OHME= \N f marianoelcardozobatalla@gmail.com marianoelcardozobatalla@gmail.com f t 2025-05-13 21:53:52.497777+00 +695 pbkdf2_sha256$720000$IzxQWfkqojIH6M6codraDG$53W4jjIezT9rJBomCtjIz+k1IcdZzGq4L9CMFN4hk3g= \N f caterinamaurenza@hotmail.com caterinamaurenza@hotmail.com f t 2025-05-13 21:53:53.247527+00 +696 pbkdf2_sha256$720000$aHajMwjpmZjJYoU8KFCGTC$VGQxC+m0SCR37AfxMwxkqRczpIYpZQd17l8HqqJz++o= \N f gmirandafpaso@gmail.com gmirandafpaso@gmail.com f t 2025-05-13 21:53:54.026362+00 +697 pbkdf2_sha256$720000$ie2vOUdXCPwBbLqqd88H6Y$i88pyMCUCynstUmB/NoUY1dulIYvq8Omfde7LJaxFpI= \N f doyapur@gmail.com doyapur@gmail.com f t 2025-05-13 21:53:54.69582+00 +698 pbkdf2_sha256$720000$eM617oeJJ9ZFMCY6hPg81v$YsQQb5blXg6lwYnHHkn5ue4ETz8gpo6Llh5/EZRFji8= \N f movie.juli@gmail.com movie.juli@gmail.com f t 2025-05-13 21:53:55.317376+00 +699 pbkdf2_sha256$720000$dKUO5hD5fhhQkI2x9CoI1P$JYgDqcZVo90HGPowP025GBUSLVLgcRhOOaNcbKvI7nQ= \N f ssaguero@yahoo.com.ar ssaguero@yahoo.com.ar f t 2025-05-13 21:53:55.934204+00 +700 pbkdf2_sha256$720000$rApAVZtcif8ozpzd27d5I7$0CU6NEqSxi73yRMcDpRFZ3uiJf6nUKzKz+G7LnA0DbY= \N f pablosubovsky@gmail.com pablosubovsky@gmail.com f t 2025-05-13 21:53:56.553299+00 +701 pbkdf2_sha256$720000$fX82jSyztO96xHfMTJbF7I$HPbu6UzCsVYTuBguQM1cpAIhQFih7YJ32tsekHfby30= \N f mercedesmason@gmail.com mercedesmason@gmail.com f t 2025-05-13 21:53:57.190343+00 +702 pbkdf2_sha256$720000$MsqA9Nqrjg5wZdvyaUTjws$7icsXjVuj80QpSQeudGcAxu3ROTOo4gGzuLpXdFos4k= \N f ayelenmendez34@gmail.com ayelenmendez34@gmail.com f t 2025-05-13 21:53:57.846978+00 +703 pbkdf2_sha256$720000$giIfBl81qPSLACm99ro3ET$f0u3CM/CXpkn45xB0Ya12fV1v3bVY+jgX6AiXN0Ddro= \N f floresaliciamabel@yahoo.com.ar floresaliciamabel@yahoo.com.ar f t 2025-05-13 21:53:58.416801+00 +705 pbkdf2_sha256$720000$y7Wamt4JTrWtwPQXkNaPA8$meDiT1MEgdUO/gAcy7E1TZp0luLiEVuJ6Lso1pASgBs= \N f lelitamartin@gmail.com lelitamartin@gmail.com f t 2025-05-13 21:53:59.608758+00 +706 pbkdf2_sha256$720000$s3aSLUFMHF0Gwo8pwbDQ6e$+E4rGGhBxpi9xeeSjJUKdhV7DAQizgCh09LQ3V0lWkA= \N f estela.calvino@gmail.com estela.calvino@gmail.com f t 2025-05-13 21:54:00.209255+00 +707 pbkdf2_sha256$720000$dmTXR7ZMa04rS696j4W0V9$l+ucqtQkWFRApaeS4xx+DrBwO3iQ70qpqT/i7EYCL6I= \N f cerrizuelaluis@gmail.com cerrizuelaluis@gmail.com f t 2025-05-13 21:54:00.803892+00 +708 pbkdf2_sha256$720000$0ornOY2qTQGVjWscXAJWRZ$MIgoeD/vGqgRBlZWBfplVQXms9wm3BDY7U2cadvrh1I= \N f f.alvarezarg@gmail.com f.alvarezarg@gmail.com f t 2025-05-13 21:54:01.443974+00 +709 pbkdf2_sha256$720000$hAh98INUHOByQ1mkYc3Up7$yO7xWrgnhSkcG3FieVs4SiInuOHsQqmIcdkKDTTer84= \N f barbara.alewaerts@gmail.com barbara.alewaerts@gmail.com f t 2025-05-13 21:54:02.058852+00 +711 pbkdf2_sha256$720000$0SFJ4kyGXIGN34txLMNn1N$PvaTYDeTdAl2mYqaJR7MymhESKbveri/LKEdznv2Gvc= \N f dragabrielapalladino@gmail.com dragabrielapalladino@gmail.com f t 2025-05-13 21:54:03.579501+00 +712 pbkdf2_sha256$720000$SgQugRhbTQxrvovGvh4Rca$8SqmhYFucJ/7EswcSj5uaBWZmLOFgejGGAnZNlckxRM= \N f araujofeix98@gmail.com araujofeix98@gmail.com f t 2025-05-13 21:54:04.428874+00 +713 pbkdf2_sha256$720000$45plpsPQqAZdeiHpz5tOnH$CYic4s/zXh5ID1I0EUpjF6QSWjHZwj0EUP5REM4twfo= \N f xiararw@gmail.com xiararw@gmail.com f t 2025-05-13 21:54:05.099636+00 +714 pbkdf2_sha256$720000$Hd2fjwfFR8U2bJYa1yXClu$4QMMIKkDnow79Zsvx4cEXDnYEBvstcFl0+e1T+PPjlk= \N f elisalaorden@gmail.com elisalaorden@gmail.com f t 2025-05-13 21:54:05.774709+00 +715 pbkdf2_sha256$720000$RrGU4ItY1j7yIOq2bfrsWP$8mRU/RnCN5TYSfdn1EPA5xztCC0EygrHw3cwPTwiK58= \N f rpuertaescorial@gmail.com rpuertaescorial@gmail.com f t 2025-05-13 21:54:06.396324+00 +716 pbkdf2_sha256$720000$1PiNlajmf8CjyoVUMg6x80$yILIawCCDjlUZbH1sooYU9OUzLndxGbZSU/+GTM2bgk= \N f julian.mgcr@gmail.com julian.mgcr@gmail.com f t 2025-05-13 21:54:07.007649+00 +718 pbkdf2_sha256$720000$hBOWv5rgSMvJz4ftwFKpeR$wUkjmQ/+W6XttxQbKhO+2OGMdDKYpzdedJ3sPD8Tb7s= \N f dsilvasilva99@gmail.com dsilvasilva99@gmail.com f t 2025-05-13 21:54:08.252275+00 +719 pbkdf2_sha256$720000$hUdKWAqP652bEgTuAz8mUY$PeT865rjKp9iyEA4pvrMfLiIiN1Qb747PqoADQ04Y2w= \N f tinchojurisic@gmail.com tinchojurisic@gmail.com f t 2025-05-13 21:54:08.876027+00 +720 pbkdf2_sha256$720000$lniS1frAgWtaGR6mWDIfmS$oLZ8HJdUBaECGP6M6kRJ5ckfDv3c2fUq9WkC/WvnpLY= \N f maris121094@gmail.com maris121094@gmail.com f t 2025-05-13 21:54:09.495851+00 +721 pbkdf2_sha256$720000$l783hz99NHodlqZey9j0Ep$aIrIB6E+/XKgumjB+VsGRQ/asgWi0loLTCoDMGa1tqQ= \N f gisetoledo88@gmail.com gisetoledo88@gmail.com f t 2025-05-13 21:54:10.107433+00 +722 pbkdf2_sha256$720000$FvfPDfZPc1pjBEEC0FkkaB$D18HIOSlqijm7spmdk4DcdbjcGlhkaqweghR8sg0gTM= \N f karhu8a@hotmail.com karhu8a@hotmail.com f t 2025-05-13 21:54:12.077199+00 +723 pbkdf2_sha256$720000$uyaJvy6aDhEDM8Q2GLsfzV$6fXWq4XbjUQjejjAfOv/eZWsGCO8KGbURMGewLgRFJs= \N f luciabmyn@gmail.com luciabmyn@gmail.com f t 2025-05-13 21:54:13.017813+00 +724 pbkdf2_sha256$720000$HpuLojaNUVVs4vw4IYozep$E6nH9V7nl8qV1s5GDVLos9l6vM3YUVVyzQvGYdRgmUA= \N f julianaescobar.loz@gmail.com julianaescobar.loz@gmail.com f t 2025-05-13 21:54:13.769889+00 +725 pbkdf2_sha256$720000$s12Oag6vpEyULlpvvam319$OLY5vCbhqzNOUg/qwKrJN9jnHQLWiKyHhwZoMjlRP0k= \N f m.bouvet@hotmail.com m.bouvet@hotmail.com f t 2025-05-13 21:54:16.150447+00 +726 pbkdf2_sha256$720000$dHSaMLaJWFuEEXovWPAclh$duid8SI0jDkykteo1wuYf/DQ6ZFgEjAmFF/7wJgbDzA= \N f macrieli@gmail.com macrieli@gmail.com f t 2025-05-13 21:54:17.155083+00 +727 pbkdf2_sha256$720000$zsTmw5GVp6jJfVpiazAqXI$qeSxCZIwcHnRFqkFrng2M1z1sukY+OHujgT84F4bvj0= \N f silvinabarletta@gmail.com silvinabarletta@gmail.com f t 2025-05-13 21:54:17.797094+00 +728 pbkdf2_sha256$720000$tX3Uf0M945TirTymJ2cGqz$wwiUDWpLjkMlO5Wb1FACSWDKTmRP8VkI2tkuj+6ayww= \N f kathykalabura@gmail.com kathykalabura@gmail.com f t 2025-05-13 21:54:18.412492+00 +729 pbkdf2_sha256$720000$NfXPhr0th1iuWRFjwNRWkU$CJSh5qfQqi5/T2LytRlSU9y+1GxxQSLTO8P1hDrfBzk= \N f noemidambrosio@hotmail.com noemidambrosio@hotmail.com f t 2025-05-13 21:54:19.011865+00 +730 pbkdf2_sha256$720000$psbWVGZwi8UMb2SZeTG8nx$FNirj2jFcEKSJ9qzAOUNy+YJ6KE5LPwRitaa3xIhtws= \N f andreamiscione@gmail.com andreamiscione@gmail.com f t 2025-05-13 21:54:19.660167+00 +710 pbkdf2_sha256$720000$LVzsQwnRwGua75g1Ie8A9x$JaP8XhRPi7d2XF/LjP2RZAkBZb178KfZK9bIiYwzjoE= \N f kexelcarla@gmail.com kexelcarla@gmail.com f t 2025-05-13 21:54:02.701265+00 +717 pbkdf2_sha256$720000$eht3NKmAzEtjSMBi2cLV2c$5yfL+pL2CBGZWMXZGHhg5UmMSg95IoMXAfakhncmjYI= 2025-09-02 12:28:37.28428+00 f angelescondoleo@gmail.com angelescondoleo@gmail.com f t 2025-05-13 21:54:07.648268+00 +731 pbkdf2_sha256$720000$7uISgAZEqaEDfSsnYHoi4y$DAQRLBrbXvi29ZOpgIdo0SGEvyHh30e38Q7NFlR2rKI= \N f fernanda.valenzuela@bue.edu.ar fernanda.valenzuela@bue.edu.ar f t 2025-05-13 21:54:20.322973+00 +732 pbkdf2_sha256$720000$Li3TxrNXdYLk7pHmNZR8lt$m+rCMhI0miONLBiZ9BuZqJ7qKgnAWEgrpklzVFhadpo= \N f jimenaabrahan@hotmail.co jimenaabrahan@hotmail.co f t 2025-05-13 21:54:20.931503+00 +733 pbkdf2_sha256$720000$vhuNdfP0oCIa1PmZZ2JmsS$cXQ8YopcXmP4mRhwFnayB6VJfLwX6EyPg1htFfrYc3o= \N f shirleyramirezarroyo.74@gmail.com shirleyramirezarroyo.74@gmail.com f t 2025-05-13 21:54:21.810111+00 +734 pbkdf2_sha256$720000$PLHxM54AwgOfYVK4txq88R$WyhEVooNkrmnwookhE+dC7HQs//+vUDgYomOaWP+Y1k= \N f camila.paula.franco@gmail.com camila.paula.franco@gmail.com f t 2025-05-13 21:54:22.451162+00 +735 pbkdf2_sha256$720000$ZfOkHP9hxKYMAE44XeoiHy$FAFkh/5Eshy7d9sgDfxxGXPvPlooduoVX/zE+VSjWRE= \N f pwilensky@hotmail.com pwilensky@hotmail.com f t 2025-05-13 21:54:23.080277+00 +736 pbkdf2_sha256$720000$a8aPRZOmW4rZsT90ryFcgp$F1uRREjap6RnlzTqSyKYPbChvExKWEAMQAhAeTU0wRY= \N f sandrakirzman@gmail.com sandrakirzman@gmail.com f t 2025-05-13 21:54:23.681909+00 +737 pbkdf2_sha256$720000$efY8loIMHb93lSqZTMME45$tR/z5Bc3s8uezwIlANKvjV8dKaZmIbgD1V6dKK3x1f4= \N f anyvero35@hotmail.com anyvero35@hotmail.com f t 2025-05-13 21:54:24.384623+00 +738 pbkdf2_sha256$720000$m93jFe1lRCY9GjPbLuzehX$L23b+rEoNcKgXAhXVJqm+M59Sgvuzff9o6ZIO49Rc8s= \N f meli.martinez89@gmail.com meli.martinez89@gmail.com f t 2025-05-13 21:54:24.969804+00 +739 pbkdf2_sha256$720000$fgmC7RyxGZF5OpzOddQ6os$4/67zdF5Pf+QaEZ08cbLBF7MvH3fl1bj6KLTm6YVW7c= \N f lauri_c.c@hotmail.com lauri_c.c@hotmail.com f t 2025-05-13 21:54:25.61393+00 +740 pbkdf2_sha256$720000$GUX3tfwhnpi1snt7JTCE5c$Au5FiKKuJCVQEaAKMO3vi00DV9YwNOnVRY1xCVIsoBw= \N f soficaste94@gmail.com soficaste94@gmail.com f t 2025-05-13 21:54:26.193244+00 +741 pbkdf2_sha256$720000$9HOsIUZG0jF79r73aXaPZQ$yx1iDr0MZW2Pl/EUAeModLemSdCrjp/xWLkBjrV8jGI= \N f lafinca@correopegasus.com.ar lafinca@correopegasus.com.ar f t 2025-05-13 21:54:26.807842+00 +742 pbkdf2_sha256$720000$FgJuSGK7CpUgZfhsxIL2Gm$EFTLPgRgvCNth1XQ74qn7v+5ryZUjr4j6yNtuMmZx5s= \N f claudiameza.contacto@gmail.com claudiameza.contacto@gmail.com f t 2025-05-13 21:54:28.605014+00 +743 pbkdf2_sha256$720000$xVjjlt6BSDGzezEEuoZoHN$5HiN2UviptSWKR6yX3YgxYc6hX4Nl0bQNxS8bKtdmQ8= \N f juli.fairchild@gmail.com juli.fairchild@gmail.com f t 2025-05-13 21:54:30.821488+00 +744 pbkdf2_sha256$720000$rpzoL7kKKLqWI8olBokDz8$4oG77Ehsl9GittBXN+3rvGYvifra5TmSsTaR6/QY6Cs= \N f maykoldpp@gmail.com maykoldpp@gmail.com f t 2025-05-13 21:54:31.442131+00 +745 pbkdf2_sha256$720000$z0bOFPOIetYNDcMgSB0CLj$tOM8qCWy1SvkknoyBjY3HY5O34as8bsGj/bYM4K3eQc= \N f vallerodrigiezamenabar@hotmail.com vallerodrigiezamenabar@hotmail.com f t 2025-05-13 21:54:32.110413+00 +746 pbkdf2_sha256$720000$twUBUbKtWSsptgL0NNzwDE$HuVuGQ98unCLlVMkwyCAC+ou9xu0ALoNii3ibFBWUGY= \N f 000002@gmail.com 000002@gmail.com f t 2025-05-13 21:54:32.815644+00 +747 pbkdf2_sha256$720000$p1qaLUKLZk1etzeqe0VfKn$uLEgUCb5G9nehX6itYlMm9ju4GNZ4MzY3m7aKOxki0w= \N f gomezlisette1@gmail.com gomezlisette1@gmail.com f t 2025-05-13 21:54:33.436681+00 +748 pbkdf2_sha256$720000$WC1b0TcnucjU4553B5kc6f$4AUI9XAJVTnYqWWH0Vp/natRgesxBTsAyuL2wXi1ixU= \N f ximenabarbarasolar@gmail.com ximenabarbarasolar@gmail.com f t 2025-05-13 21:54:34.041217+00 +749 pbkdf2_sha256$720000$z27j9N9FUBtjWVDXGDuSGW$Z9CyPSBmxoN3OaNJA04Cu8KXF75q9tgQCLkBDdFfAJo= \N f fiammamaria_chiarello@hotmail.com fiammamaria_chiarello@hotmail.com f t 2025-05-13 21:54:34.732134+00 +750 pbkdf2_sha256$720000$KD66xcEjtZNAfHT1ZnXjYY$keQ3S+uGDray05sDBzJLxmqeGefNHj8PoHPACS7NFh0= \N f alisamarzocco@gmail.com alisamarzocco@gmail.com f t 2025-05-13 21:54:35.345162+00 +751 pbkdf2_sha256$720000$xkYwnsjC1H30hX5y1pBoO3$iKs6TyC5IiDV0uUXCx6VVEwpL0swYunmLCMQP00bq7A= \N f martinezsantiago673@gmail.com martinezsantiago673@gmail.com f t 2025-05-13 21:54:35.913795+00 +752 pbkdf2_sha256$720000$ah2aVHNIS4g7hvM27q4Snp$F0ICSZNOvltOcVmvwa3RF9VT/eNn8ChCxFoKuy/n2AQ= \N f eduardofabiandominguez@gmail.com eduardofabiandominguez@gmail.com f t 2025-05-13 21:54:36.532213+00 +753 pbkdf2_sha256$720000$5hVEPYDVuEyVUcxIpeY0ok$9YccAi0I9URxkGCHW7Y6C851ls7dHjjoC01xRdUJEKk= \N f sollingerf@gmail.com sollingerf@gmail.com f t 2025-05-13 21:54:39.596981+00 +754 pbkdf2_sha256$720000$l0nZKvWRafMvfNRzIb2zyb$1oeyDtux6eb+fFGzFhIF5mXChThxdc6MuKbTudaLuvM= \N f bonomo.natalia@gmail.com bonomo.natalia@gmail.com f t 2025-05-13 21:54:40.343688+00 +755 pbkdf2_sha256$720000$6kRky1u1ZyHCds1MxqBb11$W6qmXET03tkrZuqW1upUt9Zs7dLUdDMpObTwueR8hq8= \N f j_gregoret@hotmail.com j_gregoret@hotmail.com f t 2025-05-13 21:54:41.116869+00 +756 pbkdf2_sha256$720000$971bKfew0BVIceXq0ZjarF$5YNAucAsT0TSGh3fW1cKANpJLTdVaR47Y/707NMHIlg= \N f andicsantoro@gmail.com andicsantoro@gmail.com f t 2025-05-13 21:54:41.860096+00 +757 pbkdf2_sha256$720000$c4GyuAPxwjq99rrBD19nfZ$F87cIH7J9nEfuvZGb0B8zkhzQfPcxOqNd9L7UjQ3cUM= \N f chabina1@gmail.com chabina1@gmail.com f t 2025-05-13 21:54:42.617946+00 +758 pbkdf2_sha256$720000$dFl4XdZn2Si9D80qvYxA4L$dU9+V9ZQ2Ed6FCbbkcq2bHm9T1kX9QUp99m1JMRjDfg= \N f maryanuchys@gmail.com maryanuchys@gmail.com f t 2025-05-13 21:54:43.38048+00 +759 pbkdf2_sha256$720000$lYNGPNoLjXlwV6VpRHED2j$z0m454jr45SiV74cktr14BEw9P5ILdPx855mJ2XOSUU= \N f marcosbaylac1@gmail.com marcosbaylac1@gmail.com f t 2025-05-13 21:54:44.096675+00 +760 pbkdf2_sha256$720000$Pb2we45glvTaULYt36UVTF$vugjcaTW96O4G+C6G8Kj1bkXQxFNlPadEf84uoW1VxU= \N f mar.celus@outlook.com mar.celus@outlook.com f t 2025-05-13 21:54:44.812214+00 +761 pbkdf2_sha256$720000$6wQEWrwfiOAc4EqBp7drju$LJEmsQI6SKiKvS6gtsMk2Lc1xs4GDG2zKLu1ElnWlm0= \N f macaespcarreno@gmail.com macaespcarreno@gmail.com f t 2025-05-13 21:54:45.540165+00 +762 pbkdf2_sha256$720000$czCR5IaR2g3WwqWtRd9Qfu$3L9cN8JlSyRf8KjfJugiRAQpYZIk1rM4wXcz5JWcgsk= \N f fma.92.21.27@gmail.com fma.92.21.27@gmail.com f t 2025-05-13 21:54:46.321078+00 +763 pbkdf2_sha256$720000$YDIxA0zvm4PIMutVT5XjuP$t+BMOOcZD7TLhnXU3PJORiO/Zz2kXrprXOSOSpFEuUs= \N f jessica_88_71@hotmail.com jessica_88_71@hotmail.com f t 2025-05-13 21:54:47.248269+00 +764 pbkdf2_sha256$720000$1NxWjrcIooG2fsXbB63sb5$TQLfEkK1tIoQKRF87fdhveCeTNj4xpaHGslMve1SHyk= \N f jcherbenco@gmail.com jcherbenco@gmail.com f t 2025-05-13 21:54:48.137079+00 +765 pbkdf2_sha256$720000$ggrrJ7cJxKt0JPZSkRPLTb$xFWOlr/0wzLk0PhkeVQfTF3aWBYu4Duku1Czi8MYDbc= \N f micaelarubino6@gmail.com micaelarubino6@gmail.com f t 2025-05-13 21:54:49.02226+00 +766 pbkdf2_sha256$720000$UbWyalyQ7K9MirDnAemDOb$My+VgqB9iXf9Gg607J1GZdC9RUVgYTkKVo3a+LzK+Zo= \N f ochoasantiagoe94@gmail.com ochoasantiagoe94@gmail.com f t 2025-05-13 21:54:50.225831+00 +767 pbkdf2_sha256$720000$pkocmIFXSARRkf2giZPrBf$Fzjpqe2qpREIDq8qfuHGd9+0n/+BvtEAywTz4WjYRIg= \N f marcemdeo@yahoo.com marcemdeo@yahoo.com f t 2025-05-13 21:54:51.306379+00 +768 pbkdf2_sha256$720000$Xvo24K10N2JCpaQGB0Fqwd$iL5L9NuwoQgDjoNWwtkbubz1bLAwmBXLzdiRA8G1rAY= \N f nataliae.pace@hospitalitaliano.org.ar nataliae.pace@hospitalitaliano.org.ar f t 2025-05-13 21:54:52.277159+00 +769 pbkdf2_sha256$720000$hVtSB5NfWYVjqyCbhc8waG$zkeCHifq8aWmQMOty8ShnRFRTJFcIDeswmF+hQa8x+g= \N f emmita17@icloud.com emmita17@icloud.com f t 2025-05-13 21:54:53.364062+00 +770 pbkdf2_sha256$720000$xV9AQzNiuJOIUW3agnuAzR$Jhdxce7REq+G9tj9Euz0Y5BxfDDH6576USnDrjuCFJg= \N f lauravairus_06@yahoo.com.ar lauravairus_06@yahoo.com.ar f t 2025-05-13 21:54:54.62287+00 +771 pbkdf2_sha256$720000$Vxn9s6ZLm26FqPam2oxR1G$5gGL8kFPbN/yqK8r64+1U6aOJMPTs6BLJ5Gt8lNgDCc= \N f jusol.ux@gmail.com jusol.ux@gmail.com f t 2025-05-13 21:54:57.421066+00 +772 pbkdf2_sha256$720000$Ya0G5197x80bQDcptHm1EX$7XD5hzVlV+i8YubLWLcgyssjlY4cqwDqz+6Y7YUY/Ao= \N f brisadaniela7@gmail.com brisadaniela7@gmail.com f t 2025-05-13 21:54:58.05442+00 +773 pbkdf2_sha256$720000$lPXno6USdeLdm8aEJQLgIG$oe5vtJwVMHixK539nUsJq7e25O3MeROeGm54z2wcgG4= \N f alexarojas4169@live.com.ar alexarojas4169@live.com.ar f t 2025-05-13 21:54:58.661024+00 +774 pbkdf2_sha256$720000$sBitJ9MHRk7EcAwDW40QdS$a2AmVFY1TK4x+rrdriF9m9JiXA4ueRGwu8jmJHMpMmM= \N f nicolebravo.1309@gmail.com nicolebravo.1309@gmail.com f t 2025-05-13 21:54:59.254616+00 +775 pbkdf2_sha256$720000$fuvFIax7GBCsKUkunAumES$iibHW99dlZVXmE2WFuziDUszeef7NorVuZRLG3MsNQs= \N f brunomartino@comasa.com.ar brunomartino@comasa.com.ar f t 2025-05-13 21:54:59.915031+00 +776 pbkdf2_sha256$720000$zPqj0u2AOI80IzPJIgr9xR$o/uQH87ZMRDl8zK5kAsQ6pNWwIXQTWnYFSanpulScQs= \N f marcela.gomez99@outlook.com marcela.gomez99@outlook.com f t 2025-05-13 21:55:00.686743+00 +777 pbkdf2_sha256$720000$qvlq48u5bOcWNZidpxXaQE$U0kNxJJN+9sIf1klWaumG8GXvHwf7/nGPVq6DZ/X9oc= \N f greconavarrofacudo@gmail.com greconavarrofacudo@gmail.com f t 2025-05-13 21:55:01.376748+00 +778 pbkdf2_sha256$720000$csSJYPB9g8qIXdhSEBo4RU$N9VhrTLNc7jaDA7Wd/0mCxTdcH+dx9gWHoYCpOffq7c= \N f lucia2005zr@gmail.com lucia2005zr@gmail.com f t 2025-05-13 21:55:02.409013+00 +779 pbkdf2_sha256$720000$TMwbZrSQfkxoxOqtk4b3tK$taOginNGKsZT8oOcAx0Y0aRWUKKd5e71kNOye1KNN+4= \N f rosiibeelsilva11@gmail.com rosiibeelsilva11@gmail.com f t 2025-05-13 21:55:03.506726+00 +780 pbkdf2_sha256$720000$WFq4vLx8uOamQfZYxaXIsB$iC7nssK79D6Cb8Xtti2JT6qC+unk7A5j+DQBMi98Jw0= \N f palazzo.luciana@gmail.com palazzo.luciana@gmail.com f t 2025-05-13 21:55:04.39976+00 +781 pbkdf2_sha256$720000$DG0KbFWHZ2EeQrNvmN0lil$C+AqMf1yJI9e/038+nUj4pscRMo6MVao3sOJyKiyI/w= \N f flor4943@hotmail.com flor4943@hotmail.com f t 2025-05-13 21:55:05.151445+00 +782 pbkdf2_sha256$720000$4AdNcSjCJztXxCD1wvsd4Z$AY/38vghSJBaqGsfDtemhkO2M9lw/YUrxhDUUUcYWXg= \N f psicafaro@gmail.com psicafaro@gmail.com f t 2025-05-13 21:55:05.971851+00 +783 pbkdf2_sha256$720000$cCxSZu1esHXQUfIds6ruBJ$YKAQDJwSZPhlLBXX2Yonq0VYg86R+7yh/ISfLqRc0qU= \N f fabriciox.fdp@gmail.com fabriciox.fdp@gmail.com f t 2025-05-13 21:55:06.699995+00 +784 pbkdf2_sha256$720000$YhG9UwNRIEf3jh6hUwzRFx$d9gNvqPD6OU2YskpcKzcoU+HN25ryQVggtUlOcjED94= \N f elisabethsoin09@gmail.com elisabethsoin09@gmail.com f t 2025-05-13 21:55:07.442948+00 +785 pbkdf2_sha256$720000$90ByK0aOzdYLcn8DBX276A$KdViI42McPg6Z/PvDX7s4uFT8NvpI71euaVDedQUtHQ= \N f ana.jilo.23@gmail.com ana.jilo.23@gmail.com f t 2025-05-13 21:55:08.248081+00 +786 pbkdf2_sha256$720000$Hwnnj9SS4u0eLGiRTigtFS$E5ZJjEUHXNhEVqI8MzLjdJJLzQOJi0rsrOnq2mDImFQ= \N f fioritiorne@gmail.com fioritiorne@gmail.com f t 2025-05-13 21:55:09.002975+00 +787 pbkdf2_sha256$720000$1v4cUA6uEvRyRrZ4cpJz9E$ts2wt7+oaATBgOcwF1pEk3+WQmTXeIKYV/3yJYo9N+E= \N f sofivarelaa@hotmail.com sofivarelaa@hotmail.com f t 2025-05-13 21:55:09.743091+00 +788 pbkdf2_sha256$720000$G8pYoIxiOnawb7tVDrHRTh$s9S2EAWfuVqcpSOl0Luqi96dCl5d/tJi/a0X2/9uJjI= \N f michellmendoza162202@gmail.com michellmendoza162202@gmail.com f t 2025-05-13 21:55:10.512316+00 +789 pbkdf2_sha256$720000$vydiXfYJrmX5684aKngPvj$3pgWCqtA8PmA2q7AemT4IoDoY/50FEm6M8h2KRqVyfA= \N f yosima@hotmail.com yosima@hotmail.com f t 2025-05-13 21:55:11.243715+00 +790 pbkdf2_sha256$720000$LO3MRILXoUTtaCS2Q7WwDl$GQs6IootVCTvo69U6sUmhyhl0BNby/QECXjMY2HCSPY= \N f leabekere@gmail.com leabekere@gmail.com f t 2025-05-13 21:55:11.910841+00 +791 pbkdf2_sha256$720000$MxVzko2FUgoeOTz3VSYBjm$LzSFd6NlPkSdxm/mtBeLsoJcqsnB2U/d+YmgrKv/oDg= \N f amielnichuk@gmail.com amielnichuk@gmail.com f t 2025-05-13 21:55:12.516048+00 +792 pbkdf2_sha256$720000$LpwmwU6LfHvcZAsBGvw3AR$PAqooY14xE52u670CzI6Txh6OSxfD8II0XQJGgZA0ww= \N f fischmansandra@gmail.com fischmansandra@gmail.com f t 2025-05-13 21:55:13.121241+00 +793 pbkdf2_sha256$720000$IwMYT48SkGtLSULVFZHzKl$6c6M5PxJ5p7h5dBY78a8s+jWKg8CVvxWodo2R0yHC18= \N f celesgianetti@gmail.com celesgianetti@gmail.com f t 2025-05-13 21:55:13.753032+00 +794 pbkdf2_sha256$720000$WeCPIMJC6jN2AIymI3IvKO$ExqGNYThokpdKwrNc0TDmG9Pvc0unXZmIVUxphzWehc= \N f s.sanes@gmail.com s.sanes@gmail.com f t 2025-05-13 21:55:14.371766+00 +796 pbkdf2_sha256$720000$N73tlXipH7ImESkChCjx25$8ao9gbcjUWD5pO6+nHYE7mT0BaUIizfUQ7rhgH+Lcag= \N f malena.pechersky@gmail.com malena.pechersky@gmail.com f t 2025-05-13 21:55:15.587448+00 +797 pbkdf2_sha256$720000$uSKxV7JyWtrjkX7ys1ExSK$xdkJsXZl+z8NJVfjutYbZDHrwZ8bpQQVWhk2bkNhE0E= \N f selma.ssa@hotmail.com selma.ssa@hotmail.com f t 2025-05-13 21:55:16.240296+00 +798 pbkdf2_sha256$720000$ng0t0RJ5co4ATbHRPgEHem$66PojA5scBnsRlWqhxk7y4pk2/2HiYD8Y5SpTdyEARI= \N f licpspsp@gmail.com licpspsp@gmail.com f t 2025-05-13 21:55:16.9574+00 +799 pbkdf2_sha256$720000$CHBjpdc9gl7BW6bO0GYktu$+qTfXzGiizOKMHv+BlUPnaMse6TNSDzWJBFRdivuOco= \N f gabriel625@gmail.com gabriel625@gmail.com f t 2025-05-13 21:55:17.80945+00 +1358 pbkdf2_sha256$720000$0IlHEgr049iYSnU85aEPlr$ctZI4Za9iqCofwragO5ZpRo5g2nruPXl0hAjzZteSHE= \N f nacy@gmail.com f t 2025-07-12 20:37:21.030624+00 +801 pbkdf2_sha256$720000$vE08zjK0wrwFJSwpDSNXsW$qr7PI65W+XxsAJnRCEEYKRa/JmqMEFdYo4w3TE5DRUE= \N f maneiroviviana037@gmail.com maneiroviviana037@gmail.com f t 2025-05-13 21:55:19.442707+00 +802 pbkdf2_sha256$720000$Cs1IYOmcgD4TpqNmy3CZQV$lbGCodyugYjJ7wSNy/0PalsKsJ1kaXl3qGyDza3UVpE= \N f annflaca@gmail.com annflaca@gmail.com f t 2025-05-13 21:55:20.146567+00 +803 pbkdf2_sha256$720000$o19BHbGfZScRWHu46oOjvA$gmpU6F8KZl0VWkI6uiv4RFT0I1GJUNrdmcQnYaldzH0= \N f barbarabelenpace@hotmail.com barbarabelenpace@hotmail.com f t 2025-05-13 21:55:20.8395+00 +804 pbkdf2_sha256$720000$Pe752LTA6oshCBZqx3JFc3$ZsEu8oRm/P7Iic1/Ud4DxJzpqslh8vyEf8G2d672w7U= \N f nataliamusso@outlook.com nataliamusso@outlook.com f t 2025-05-13 21:55:21.765398+00 +805 pbkdf2_sha256$720000$CIIGg8mJqUvGlN6sM7GBHk$R/HJf0fl+h6lnnkOuYJqML9j+elCSUqhMK1R23HPk7U= \N f patyro2010@live.com.ar patyro2010@live.com.ar f t 2025-05-13 21:55:22.395157+00 +806 pbkdf2_sha256$720000$9RuFtGmDpjtBWBAGuEPWf5$ToHBe0F/njacfockarfdQNyuSnvD4ZllQKuTF9sTaWg= \N f adita.dc@gmail.com adita.dc@gmail.com f t 2025-05-13 21:55:22.99814+00 +807 pbkdf2_sha256$720000$OCkYEFOiMQQZLU0pH86fMH$+UVGtMTee8TuT7PZrUwv/y1mlatHZStgl7E+im9//So= \N f ornedp@yahoo.com.ar ornedp@yahoo.com.ar f t 2025-05-13 21:55:23.750315+00 +808 pbkdf2_sha256$720000$wIvnZVWWl0IDvzPVT0lixN$75YcpFtMwM2pWZtiX4xNIL4ue8Y5TVqdz9NopS7rtCY= \N f noeliademichelli@yahoo.com.ar noeliademichelli@yahoo.com.ar f t 2025-05-13 21:55:24.380913+00 +809 pbkdf2_sha256$720000$0kSHqhbkyHTiBeJ9UOuZbz$PWEZekSOI1dmDWh3hkLsCFNpMI1UsX+YA5/AkS8y0f4= \N f cherry.kiwiix@gmail.com cherry.kiwiix@gmail.com f t 2025-05-13 21:55:25.011575+00 +810 pbkdf2_sha256$720000$tyLMQlCYedsrtZvMSwoOka$EgAfkd6PEmNN388/cwNtg2h6jj8/ayuV9LNSop5c3nY= \N f jaliffdiego@hotmail.com jaliffdiego@hotmail.com f t 2025-05-13 21:55:25.834784+00 +811 pbkdf2_sha256$720000$XLbSyLqWzSEpTxKJYzVC7h$5zPUtPpUHV8ZqWrJWY9ssyqyDbmcXfoTKRSaE9O9Rh4= \N f gramajoelianamalena@gmail.com gramajoelianamalena@gmail.com f t 2025-05-13 21:55:26.621999+00 +812 pbkdf2_sha256$720000$bkmcca2B8Rx2qh2bDnP4ks$uJ4PLTcsHOEodyG82nfEZqbMkXHLlrIsAhC86IvG6T0= \N f pipi@amarmascotas.com pipi@amarmascotas.com f t 2025-05-13 21:55:27.365215+00 +813 pbkdf2_sha256$720000$gYzmq3BCAS3sxEOoo3MHBw$gD3Ina4Jk1yad6Md5LqQ1GXHQNYAEZL156zwVPJdrqA= \N f hbrunacci+fp@gmail.com hbrunacci+fp@gmail.com f t 2025-05-13 21:55:28.034864+00 +795 pbkdf2_sha256$720000$ZKPbW4wgsaokyb8CC2AwpZ$e49Zx9q9CNXtL/lHzV5Rc3pm3P61JhEV6mwpB7gRkVs= \N f mlarrosamendez@gmail.com mlarrosamendez@gmail.com f t 2025-05-13 21:55:14.988286+00 +814 pbkdf2_sha256$720000$Wwj8WPxXRUFbpk1nSsJgWd$Eo/Kcc2Ak+LQegEfDjG4aK+VC3bGsCTXhs5rqvCOkTE= \N f barbarasslopes@gmail.com barbarasslopes@gmail.com f t 2025-05-13 21:55:28.705247+00 +815 pbkdf2_sha256$720000$Sh1uBcdXSIAbzXm4kuOGdK$wu3PN+e+z1+AG1r5nBQfFzZdyWTToeNcor1TH1zokqo= \N f mbelen.boetto@gmail.com mbelen.boetto@gmail.com f t 2025-05-13 21:55:29.317761+00 +816 pbkdf2_sha256$720000$zvaDDWnlIE3HPWKPNzZBdR$cIScK/QRdHTQtqjRnt5Reyi+ilV3V8FZDlGzf9EKQIs= \N f gabrieladavid2022@gmail.com gabrieladavid2022@gmail.com f t 2025-05-13 21:55:29.935956+00 +817 pbkdf2_sha256$720000$DEkltRdvdUSEaNVQt4rXWy$p3egLeNmbWRyaR/6l0aUMJU5JGjcllSYhxz4jpBuk9Q= \N f chuchip94@hotmail.com chuchip94@hotmail.com f t 2025-05-13 21:55:30.560952+00 +818 pbkdf2_sha256$720000$LBY7haBdTRX8jp18WnV2I3$pA0Dausoe0/gBkTr+5Pi6oF5MnMqkfjxycculhg4oR8= \N f euge.osler@gmail.com euge.osler@gmail.com f t 2025-05-13 21:55:31.454249+00 +819 pbkdf2_sha256$720000$billMecufYERXEY8NW7z17$eYWBFz+vxafxQ7xuTipI2oDckTqIL1dlUvD3Cw9wha8= \N f romina.areco@gmail.com romina.areco@gmail.com f t 2025-05-13 21:55:32.325303+00 +820 pbkdf2_sha256$720000$7MmDWjyg2EwLFtZvo8sHGe$qUlwUoUo+hhQIrEOXV61eLyN7B0JUDRos5arXCGUbhs= \N f dariopirozzo+12@gmail.com dariopirozzo+12@gmail.com f t 2025-05-13 21:55:33.112786+00 +821 pbkdf2_sha256$720000$YmwJZYbgNYoW2Bxqwqutp1$D+Hm/L2MejfXO24QkUQm6/Agf3a9+mPtgctaJxnAQ4w= \N f eugenia.osler@arionkoder.com eugenia.osler@arionkoder.com f t 2025-05-13 21:55:37.424373+00 +822 pbkdf2_sha256$720000$VXWw6lB1liTGEtRKZD7HOO$vO/2Hfjr52NfXFc2wTkoLYJEScqkJfD3ZGOxE9DQfIU= \N f juancarlos4c0st4@gmail.com juancarlos4c0st4@gmail.com f t 2025-05-13 21:55:38.083388+00 +823 pbkdf2_sha256$720000$4BJlQFL7a7eJgfoLkIPQGG$wVHSnOehuPmvBbyUTkVE8WEYp14YlxtnmilXs/IOLTE= \N f machado.ramiromiguel@gmail.com machado.ramiromiguel@gmail.com f t 2025-05-13 21:55:39.810338+00 +824 pbkdf2_sha256$720000$OOLkGUPOjVtlw3crfFpi4x$8h9yWPGC4hua066kR0AVp4NRox9viThuMLLqIwxAxsE= \N f spcurti@gmail.com spcurti@gmail.com f t 2025-05-13 21:55:40.502836+00 +825 pbkdf2_sha256$720000$3BA0ZgKzKGi59Y7zWt68Ym$66hvCACzMGxR2yFfJ9LLjTLRa/V+sPzGxvtxmM5tXUo= \N f terocco@agro.uba.ar terocco@agro.uba.ar f t 2025-05-13 21:55:41.224995+00 +826 pbkdf2_sha256$720000$dflxMyPUqPCQW6UUbORzpJ$i1CmlbhzBwoWyNOddat0Jbv5wKA+Rx9fddhQ2RuAZ1w= \N f cami.2109@hotmail.com cami.2109@hotmail.com f t 2025-05-13 21:55:41.943933+00 +827 pbkdf2_sha256$720000$hMoDfSQRzbjUOOpemP088E$BT+csvxic5+G7A1qD28RCHqC9EH93VBMDfJOR21h41o= \N f aldanamelissa67@gmail.com aldanamelissa67@gmail.com f t 2025-05-13 21:55:42.554869+00 +828 pbkdf2_sha256$720000$QTQW9fFwkUsblzHKRQjA2y$xkcjYyIgdeFsBm8PdsS8wx7ld4edcZ4tZeaEw3AyaVY= \N f jonatanbrun@hotmail.com jonatanbrun@hotmail.com f t 2025-05-13 21:55:43.236428+00 +829 pbkdf2_sha256$720000$BOS5rUzFfqJr5gpqmCthKT$Z9SascPUNbRgeAYVZqM22T3FFh6xsNZ3PmdCC/6Cpf4= \N f carlosluis2409@gmail.com carlosluis2409@gmail.com f t 2025-05-13 21:55:47.616913+00 +830 pbkdf2_sha256$720000$ZGG9cySv21nUAwowjTPbyW$6wvbcsni3ar6TYEycxx5bPW73Eyo789QCavp+hTgUQ8= \N f tercydelcandia@gmail.com tercydelcandia@gmail.com f t 2025-05-13 21:55:48.39413+00 +831 pbkdf2_sha256$720000$AeHYLwg6D3LhtORZ9Ccjt8$eCtPB1NtvbldgE9jBrLTIglRTZRQ46+uGvb+iAB4DPU= \N f nicda_02@hitmail.com nicda_02@hitmail.com f t 2025-05-13 21:55:49.175753+00 +832 pbkdf2_sha256$720000$YwhMpjnnTlLKUw1WMjkI1q$uUuZaQccOTcwXmnVNGncXHuf09ej79m0Bl/YAFto7sY= \N f nsilguero47@gmail.com nsilguero47@gmail.com f t 2025-05-13 21:55:49.953281+00 +833 pbkdf2_sha256$720000$85To95rvON4g7plFiwnux1$qo2x0C77mrKm5mqvVqcfwhm1p24djPfbhF46li+uduQ= \N f andie.gt@icloud.com andie.gt@icloud.com f t 2025-05-13 21:55:50.654013+00 +834 pbkdf2_sha256$720000$eecT4ilWBbXSxZy9XHXlBm$8kIKPtz5oCSV198C1lRqPE0k2h8N4/B0FJrC9yoJKoY= \N f natalia.ballester85@gmail.com natalia.ballester85@gmail.com f t 2025-05-13 21:55:51.387498+00 +1359 pbkdf2_sha256$720000$DLudNf98ZeyLknO6qGwtAh$/JDc5gsvww7SKk0df2KrnJ9lQ1lRLeXRaY4fUfa0pwA= \N f fmarche6@gmail.com f t 2025-07-12 20:42:04.193406+00 +836 pbkdf2_sha256$720000$BeyLTxK1zfVKmMwpiCruhY$36ILIL8wSbfGj5IsMz1sCCX738DmktkIMLXozomjBbw= \N f sol_agustina_alvarez@hotmail.com sol_agustina_alvarez@hotmail.com f t 2025-05-13 21:55:52.917757+00 +837 pbkdf2_sha256$720000$xd6N3YzBFNg8bR6s7w0Aog$ydzF5cOQcfm7MX5YfYfTb+3Q71EVBrh2UeOmv3wHQ4g= \N f caritabo4@gmail.com caritabo4@gmail.com f t 2025-05-13 21:55:53.693929+00 +838 pbkdf2_sha256$720000$X9lSyPEXjPR6sBGtTitlYP$TfxCu4EovShVbGm1KOC+mIPyHBIho0GkYsiMRYFPzIE= \N f michelaroxi@gmail.com michelaroxi@gmail.com f t 2025-05-13 21:55:54.451297+00 +839 pbkdf2_sha256$720000$uzBIFkLC7dT8KaPFk0Ciab$8UPJnOr9LmphzmEPthMFjIGt3n2TyiXnkwdSoeSfnIk= \N f florspahn@gmail.com florspahn@gmail.com f t 2025-05-13 21:55:55.192991+00 +840 pbkdf2_sha256$720000$fshoHUfDM3Q5Dg14AX0GI8$BDpoZgdjsotS+dGo6Ve+0zQEkfDaUPAPawsrP3vZoQU= \N f ayelen.dorola@hotmail.com ayelen.dorola@hotmail.com f t 2025-05-13 21:55:55.949882+00 +841 pbkdf2_sha256$720000$01avTmu5ii0U3AnXQKgsCh$zrnedLdol1Nglj6aNEDJyx0p/iXNeX7Ezs+FC42tgqY= \N f manuelborensztein@gmail.com manuelborensztein@gmail.com f t 2025-05-13 21:55:56.716765+00 +842 pbkdf2_sha256$720000$jjS2rQkedScI5DoJJtE8E1$l92pQWn0K3pk+GYlQ4znbs+US1cLAxsEvetX9vN4yKQ= \N f celestefamular@hotmail.com celestefamular@hotmail.com f t 2025-05-13 21:55:57.420262+00 +843 pbkdf2_sha256$720000$C6cmYLpzpLKUvcSt2QtRs8$NIhf3LqO8BbywyzO73ptV2vmP/ZoBrcRRhxMWYkjWUA= \N f luacastell77@gmail.com luacastell77@gmail.com f t 2025-05-13 21:55:58.186698+00 +844 pbkdf2_sha256$720000$Q2E3CmqRm9M8y9sMpUXENf$p6g5NmIfWUJ9/v5yW2UaxKWH7pHZog+RAWekHCusD/Y= \N f nicolas.lopez4500234527@gmail.com nicolas.lopez4500234527@gmail.com f t 2025-05-13 21:55:58.82882+00 +845 pbkdf2_sha256$720000$6lc8rcIT12H2e1THiAiD4j$5uO8MTpF7y8ngsTo+8F9YPYh6PaEIDkCzloN6W3U6Qk= \N f daiana.herrera25@gmail.com daiana.herrera25@gmail.com f t 2025-05-13 21:55:59.484845+00 +846 pbkdf2_sha256$720000$jOoc44RvdyHQAwpTo8DhFd$anRqNRr/10CfXPnU/JHT7psnB4gE72BNFaTqZep7Qt0= \N f c.piccicacco@gmail.com c.piccicacco@gmail.com f t 2025-05-13 21:56:00.228589+00 +847 pbkdf2_sha256$720000$aAKTBojWYYBOBYog1Dk4uL$phGKD0iDZ1GkL3D0BSnOGkpzL7RqfuU3sO+hLwJaWUU= \N f anappa57@yahoo.com.ar anappa57@yahoo.com.ar f t 2025-05-13 21:56:00.909505+00 +848 pbkdf2_sha256$720000$tTh8LNa4wiPUenBqN7CnVv$oA78NF0ANsD845aGh3kghOcXxJf48CopJKa6AZ8GuVo= \N f guillermina04102@gmail.com guillermina04102@gmail.com f t 2025-05-13 21:56:01.586714+00 +849 pbkdf2_sha256$720000$czvpvgofqbruO1n29ucUfG$dtnaW3IQqyU9uLzKc6N00X6El7zrQR3dm95aBNwesJ4= \N f leopiccioli@gmail.com leopiccioli@gmail.com f t 2025-05-13 21:56:02.378635+00 +850 pbkdf2_sha256$720000$dQySi4JX3RxlSoqBMRzf02$DlPkq7Sn+QElrzGHYmKsMHnnXe0JARQ6NdmxJBEkovo= \N f spencer@richardson.nyc spencer@richardson.nyc f t 2025-05-13 21:56:03.10239+00 +851 pbkdf2_sha256$720000$18LnlGQmrbfHyyM8ZqymC6$w+c+7Pu7+WaQPVJCmQ849ejZtCl04L9y17jRKdZ2Jmk= \N f lourdesbposse@gmail.com lourdesbposse@gmail.com f t 2025-05-13 21:56:03.824939+00 +852 pbkdf2_sha256$720000$J2fwZ65VkbzWTMKqNkJjRy$j3TsS2K5fKBcfYXfm4Jf2toKaUQD56Dv+xFR9h2fl28= \N f 77777@gmail.com 77777@gmail.com f t 2025-05-13 21:56:04.653424+00 +853 pbkdf2_sha256$720000$BCoLL8abgt7zCElRLtA38l$mD6ike2TzWBZgnI1d4uEbZOFAaqVEWP0MJpjb+nvpzY= \N f agusv91@gmail.com agusv91@gmail.com f t 2025-05-13 21:56:05.347429+00 +854 pbkdf2_sha256$720000$wkiL261nXyHabOLqu2Mqx9$SFzShxhWlX01kgQAu8/DlB9Gz5HB8xdB1Uxkzr8L18U= \N f mercedesmartinezchantada@hotmail.com mercedesmartinezchantada@hotmail.com f t 2025-05-13 21:56:06.045857+00 +855 pbkdf2_sha256$720000$XNK168Eou8cRxtGR5B8XTw$Tk8rbX389B/xsYnT03xsACUQfNEmiC8bVa4uP4Lx5lA= \N f ricardoalbertopaez60@gmail.com ricardoalbertopaez60@gmail.com f t 2025-05-13 21:56:06.774614+00 +856 pbkdf2_sha256$720000$ZsJAug5LSDX7cC8uQbcu8X$AvuBUaC76aB8tqMJ+4ZlQevypyTxEVG9JkNkSYxzJ3E= \N f katyyfran@gmail.com katyyfran@gmail.com f t 2025-05-13 21:56:07.459895+00 +857 pbkdf2_sha256$720000$TWAOs79IEhPQOEpbQy9wz3$YSmvsPQIoucgKdpYePSRZ+9QIJUfUZab3eP1xYFvpds= \N f email@yacanto.com email@yacanto.com f t 2025-05-13 21:56:08.170205+00 +858 pbkdf2_sha256$720000$hPNnQA0CPRHDL6uYjDXXBO$AKwzTQjav05dUKy1aVTH1eiUb8onqCxK1Z8A/i7z0aY= \N f tatiberonkeep@gmail.com tatiberonkeep@gmail.com f t 2025-05-13 21:56:08.855299+00 +859 pbkdf2_sha256$720000$NHAA7xvjPzJ4x133K7YiY9$lTsuxvoZ0Q+X9S6iqg/m7fJesdZpDxJyuoxUGFJFshY= \N f estudiocraguilera@hotmail.com estudiocraguilera@hotmail.com f t 2025-05-13 21:56:09.770428+00 +1360 pbkdf2_sha256$720000$OLu9YXMr8zg4LXODAMgbh4$mUrbQ4zlAQpvwQHE3vKDGHFnUtc8WjbgnkGwAC9Fr5I= \N f gustavorepetto@gmail.com f t 2025-07-13 12:17:29.01725+00 +861 pbkdf2_sha256$720000$UmhdmDreD4dKV7i2H5Hfe1$nrXV1yuBe6s4EjpzYc3M6xEkKzEtf5lFgQiH2jdmZ5c= \N f micaelasaini@hotmail.com micaelasaini@hotmail.com f t 2025-05-13 21:56:11.196743+00 +862 pbkdf2_sha256$720000$b3oAsdlw7dVfTHs8qkOU6k$u9W0rPIDAXzsMFV+myAYU3LTFvGaJNMJANd1OHQ/fGI= \N f paulamtozzi@gmail.com paulamtozzi@gmail.com f t 2025-05-13 21:56:11.853752+00 +863 pbkdf2_sha256$720000$9kGJRwofNXlKRw421ebm5Z$p6pIUD+uFnU11EaU3TjQjuIm5h19Ydv5+8XL4qS9Hzo= \N f brisar877@alu.bue.edu.ar brisar877@alu.bue.edu.ar f t 2025-05-13 21:56:12.534608+00 +864 pbkdf2_sha256$720000$sNX80Xi3zNLljskvwi5f3Y$VWwx/m8obyvXG/GoPrwH42r4yq5rgTjNBQRRN/gq31Y= \N f miriamminaberrigaray792@gmail.com miriamminaberrigaray792@gmail.com f t 2025-05-13 21:56:13.203626+00 +865 pbkdf2_sha256$720000$LmmtiNpqSMBy6e0d0F85HF$khygm/80XgGIVkv3tiJWGIrBuOHP8NV9KBEOzmtJFnI= \N f luly0907@live.com.ar luly0907@live.com.ar f t 2025-05-13 21:56:13.850038+00 +866 pbkdf2_sha256$720000$qk8iCCK59mN57NexCpqWff$DoXH7an2ji00QOiV5aa+lH8SqkcLZ8IqLQ5ZfopUkcU= \N f miriam.petrecca@yahoo.com miriam.petrecca@yahoo.com f t 2025-05-13 21:56:14.492404+00 +867 pbkdf2_sha256$720000$MoqPdnAxOgf4POKaxq1S2k$/hFMx5kw+Cpig8+sVk3o8+/ZFc27HHcQKP6110kf284= \N f lujanpirola@hotmail.com lujanpirola@hotmail.com f t 2025-05-13 21:56:15.251873+00 +868 pbkdf2_sha256$720000$xM1KWotblMnX0KhaCXOXVk$ygcM1TCnz+dahJUgVMfv0RryoF76YWrHF4daqEEc030= \N f rivadeneira_nancy@hotmail.com rivadeneira_nancy@hotmail.com f t 2025-05-13 21:56:15.873694+00 +869 pbkdf2_sha256$720000$Sl8XqkDNxoDL4b0cihoDwn$J0dtV2/LrxnVgYg4NOGJ6qUr1tdGmnQsEME9mc9XKm4= \N f marcelabarja@gmail.com marcelabarja@gmail.com f t 2025-05-13 21:56:16.542018+00 +870 pbkdf2_sha256$720000$HRvKyNGD55xVxHau1fP1Uz$3renrAIzy4AxwAT5mdBSoyeDLsl0+0ABk7NH7RsqveM= \N f mdtrainanoseda@hotmail.com.ar mdtrainanoseda@hotmail.com.ar f t 2025-05-13 21:56:17.344607+00 +871 pbkdf2_sha256$720000$12tmkwcmCAxKq1tXLaeQmy$nTAw89BeV/GvYYPtdCtY7NskW5uWtmlzD6sL6lDQ9Ts= \N f julietamaalt@gmail.com julietamaalt@gmail.com f t 2025-05-13 21:56:18.015229+00 +872 pbkdf2_sha256$720000$HJLTQJLGn82KnRGvmY6pNc$wsNV7T3zeCAoGYjo5VhlV0HOx+HuhgFvMPHBWCmxBtw= \N f antonelladetomasi@hotmail.com antonelladetomasi@hotmail.com f t 2025-05-13 21:56:18.84442+00 +873 pbkdf2_sha256$720000$xprd5JGntaiSEtRpRt8rkW$7/7q8bZkjafPDOpzJzQ8EklnYC9NiC8rAMfuWSQhiAc= \N f lucianamenghini.r@gmail.com lucianamenghini.r@gmail.com f t 2025-05-13 21:56:19.581248+00 +874 pbkdf2_sha256$720000$YXtdYYvbNLr9SnOPGWmwrY$nNp2aiA1U+sSKANc0Bf+yuKlOvL1EJQOZ2I2M0HgZwo= \N f micaelaromero25@homail.com micaelaromero25@homail.com f t 2025-05-13 21:56:20.196595+00 +875 pbkdf2_sha256$720000$BwH4IPrE1LC9veZsfVfLrH$1QCS70uWVo8KgkfDtEVumjDASL7drYQq6LFTX99PwS4= \N f lalopezmicale@gmail.com lalopezmicale@gmail.com f t 2025-05-13 21:56:20.857645+00 +876 pbkdf2_sha256$720000$gr8P89eLcTWOgfXTOB2Gsi$mbK1X1wLDFFrdkaDLvkybnsoE1nylxm1ybNH92lUuAs= \N f camimooraf@hotmail.com camimooraf@hotmail.com f t 2025-05-13 21:56:21.46857+00 +877 pbkdf2_sha256$720000$5w4MQXFc1RbiJ8e0P5koxG$4IL0AvWJyYEPHzFllmYnC9Gz6IkMk9MYjq+4BkdNHDw= \N f portajuan27@gmail.com portajuan27@gmail.com f t 2025-05-13 21:56:22.079065+00 +878 pbkdf2_sha256$720000$GcdCNUFUtIZDZ3hklXFw4q$P2iyndz+Vt0+/rMZLQg1YIMt+Ud5hXHiSXMoZGAKKJM= \N f paoladiaz.pd8@gmail.com paoladiaz.pd8@gmail.com f t 2025-05-13 21:56:22.7157+00 +879 pbkdf2_sha256$720000$3PZrERx7jqhbsH6gUOyZ1i$pvN3gutPTzJL9Dm/RjoPUL7Uk/7yI0VapPEVAmZpXYk= \N f crenzcarina@gmail.com crenzcarina@gmail.com f t 2025-05-13 21:56:23.31617+00 +880 pbkdf2_sha256$720000$10U9AVPUv4shHM3Qb3nWEl$tYB4QuNu+i2oq9Eq967iX8G/ybMhjo3WFzVjKj6CYrM= \N f chamomanuela@gmail.com chamomanuela@gmail.com f t 2025-05-13 21:56:23.968442+00 +881 pbkdf2_sha256$720000$mZuRf3QtitV9OBnaI9V3oC$EM4A/aQ7K6B/yebhgww6RYjIkAoxCJw21qSocbkE2xA= \N f felix.beccar@gmail.com felix.beccar@gmail.com f t 2025-05-13 21:56:24.928859+00 +882 pbkdf2_sha256$720000$bX4rnpWBOXSn2EJAcrYcf1$JuWIrpH78vVb8OQ/ylmLSQ/iYVrsPPk9XH95crJoqx8= \N f pamepaolini@gmail.com pamepaolini@gmail.com f t 2025-05-13 21:56:25.860485+00 +883 pbkdf2_sha256$720000$zUaumpPEj70DEA0OvHhFN8$ZclDeCF4uEylTtkD8HpSqRMxBWUj9EGKH8ZA7lZl4uM= \N f marmoralesba@gmail.com marmoralesba@gmail.com f t 2025-05-13 21:56:26.558804+00 +885 pbkdf2_sha256$720000$VRcjqzmly75fyMxHEQ13c7$71CkBPzy4pZiTZKEx0cPTl+ZVqF3XF3Zogq3ZjkGQGY= \N f malobite66@gmail.com malobite66@gmail.com f t 2025-05-13 21:56:27.951054+00 +886 pbkdf2_sha256$720000$RBUSiKkSBUANeCiDxuSdku$in2L6S6Sts8RPgAtkKuv4YNkqv3yKr7MjBlgMoTd+RI= \N f harumi.shinzato@gmail.com harumi.shinzato@gmail.com f t 2025-05-13 21:56:28.800082+00 +887 pbkdf2_sha256$720000$O60EgMUGSb5jKoQjVrXex4$CkkhvjHKVCHIaOLDeETPHRYno9cmrzcR2UNpytjnHWg= \N f bukypau75@hotmail.com bukypau75@hotmail.com f t 2025-05-13 21:56:29.479969+00 +888 pbkdf2_sha256$720000$swc2qaRIP6S5qhizlLXPcm$Cy00OXzP/tIm4gHPTbOGf/kFpnMzXAmupLP5KIIfhqs= \N f ayelen2016seba@gmail.com ayelen2016seba@gmail.com f t 2025-05-13 21:56:30.239557+00 +889 pbkdf2_sha256$720000$UYnRp6GWjbUudTclmSE3g4$MgimBrL3OKJIMYeBrvEl0zFhw6AK/fY2iCVoUbujkdw= \N f marianarego_20@hotmail.com marianarego_20@hotmail.com f t 2025-05-13 21:56:30.989143+00 +890 pbkdf2_sha256$720000$paqB4DpaG83ScD5r8z00y9$Cz3m6ys2m0x0mLlfPgIwrh1FObh0EdoidePprySn9iw= \N f silvanalaura27@gmail.com silvanalaura27@gmail.com f t 2025-05-13 21:56:31.614609+00 +891 pbkdf2_sha256$720000$Cy8JDlGHQDGXSLzalrNzjZ$ss3zhLnK/noZBHI+w0vBZLMaF4VJ4/LUO1QZeVGAae8= \N f gsofigalli@gmail.com gsofigalli@gmail.com f t 2025-05-13 21:56:32.317422+00 +892 pbkdf2_sha256$720000$JbvPJP0RdY6Awe7zEOByjz$XY/jJ0o3cyY5suxJ5lZ3tvKWQR+cMQsQkHAlygl7v3g= \N f mebravo_1@hotmail.com mebravo_1@hotmail.com f t 2025-05-13 21:56:32.944019+00 +893 pbkdf2_sha256$720000$dHzSelYZ2kjVwlmNzrz8fs$oqrnGNwR0oBPKDqkKFbFJ4vxn3Z9+dYM/3wjuCUF1Ac= \N f florenciaperezlascano@yahoo.com florenciaperezlascano@yahoo.com f t 2025-05-13 21:56:33.599856+00 +894 pbkdf2_sha256$720000$98GeYiigv0B9eblJMabPJw$shu8MmFd3w2EK0vDfcGYr8jBjQ0QhKuSTxhy5px82m8= \N f mariangear@yahoo.com.ar mariangear@yahoo.com.ar f t 2025-05-13 21:56:34.226582+00 +896 pbkdf2_sha256$720000$4VY53pOJQl6iguFeqpNRjF$GMavGnP6aRJsIZGbIsd+kv6/qh9NKHma4iNtAHA2BFY= \N f eugeprietoprensa@gmail.com eugeprietoprensa@gmail.com f t 2025-05-13 21:56:35.536288+00 +897 pbkdf2_sha256$720000$EExogQUhNpRZ6P5Jl6M71t$4IdxpZEzTxKohHGTMY5p2KA2m9iva7aIfw2X5mIYBW4= \N f nakabara_11@hotmail.com nakabara_11@hotmail.com f t 2025-05-13 21:56:36.109162+00 +895 pbkdf2_sha256$720000$jWuSuDZXRrcNQ6OGfJ2bkD$PBxkl0ufq1lo2eSHPUfm7M+A/chSYD8p15DgGbUUXBU= \N f adri270772@gmail.com adri270772@gmail.com f t 2025-05-13 21:56:34.876383+00 +898 pbkdf2_sha256$720000$KKAdSg78KB9P5R7dtxvVlL$ltTvsiF/mbOnvxVT6KTuYjpel0cT6ur6qdGrc2J5tV4= \N f anto_toro@hotmail.com anto_toro@hotmail.com f t 2025-05-13 21:56:36.685922+00 +899 pbkdf2_sha256$720000$FzDbEXeXoYb4xJ9WwmKGUm$s6LVVvFbfd0eoEiRF+7AGb+d6gVjrx8V0hVyBn4oUEs= \N f Gustavocarp1133@hotmail.com Gustavocarp1133@hotmail.com f t 2025-05-13 21:56:37.365427+00 +900 pbkdf2_sha256$720000$JH2X017aeBqx4krg3QGCFt$bcmrAfD6j/qodZcwzn4C2/JNJRuS2Udhn+YisSkXrEE= \N f marielachimales@gmail.com marielachimales@gmail.com f t 2025-05-13 21:56:38.004578+00 +901 pbkdf2_sha256$720000$XDDdlS4cd5XodZUfXvO38F$MrQ4WzCqQd/gzrFoDF71/DiwpTzPAnm8kwna6zn9igU= \N f solmazzeoql@gmail.com solmazzeoql@gmail.com f t 2025-05-13 21:56:38.573666+00 +902 pbkdf2_sha256$720000$7bZ3W23IVXfZEvlNRLkgWz$XSkGW6L3GjDM+dadHF250vcFjrz2DaeNnGNMw1TFkTU= \N f ysabelaulestia37@gmail.com ysabelaulestia37@gmail.com f t 2025-05-13 21:56:39.178897+00 +904 pbkdf2_sha256$720000$un7I1vpdhDAob4SqLluR4f$f4+k0tvYcCWV3JSpbtvKdmqnG05M1S/MdOZS1muMWXY= \N f marcela.mariotti@hotmail.com marcela.mariotti@hotmail.com f t 2025-05-13 21:56:40.441309+00 +905 pbkdf2_sha256$720000$dv9ZzGEw7gDRhssOq38VNn$Y3ZJacvB0aBuS2fO4HooAeUqcCP7+uGys3QtZEUICWQ= \N f rocioschmunck33@gmail.com rocioschmunck33@gmail.com f t 2025-05-13 21:56:41.111153+00 +906 pbkdf2_sha256$720000$b7vWa4L1vBUSyDX77eRIKA$Vvgb+mrNHov6fc6D3jMGCD5QBsn8bvE9ScxV2bbnplg= \N f emilia.riquelme@gmail.com emilia.riquelme@gmail.com f t 2025-05-13 21:56:41.711415+00 +908 pbkdf2_sha256$720000$rTaGyo1K0NuC5nV5O4pSCi$p7TnhwM6gmmODobC/s4WXQK50BVaURHtVDlAnQ1tgS0= \N f lavaridelfina@gmail.com lavaridelfina@gmail.com f t 2025-05-13 21:56:43.011844+00 +909 pbkdf2_sha256$720000$0uF6nN1EKsSZtUgO1nfylH$BRUqkezNySX8tXoYTqXJqAGQ8Iy6SkYnCbCl6ScV+i8= \N f andreasarna@gmail.com andreasarna@gmail.com f t 2025-05-13 21:56:45.307511+00 +910 pbkdf2_sha256$720000$lG1ISPI2BWdRwqfDjEWwq2$cxZrqF9KyXkVmh1GKQ8MbshiG63tWmXZGTtOudLhUqY= \N f justinaricciardi@gmail.com justinaricciardi@gmail.com f t 2025-05-13 21:56:46.03242+00 +911 pbkdf2_sha256$720000$8TIDNVKa5jKf0n0eLUUKeb$4f9bmOWKHGcI2R5NF/Wuw8xbjd4X9WZIaYCSr9DNidM= \N f lorilow@hotmail.com lorilow@hotmail.com f t 2025-05-13 21:56:51.591097+00 +912 pbkdf2_sha256$720000$rHhCpOzsUUiyuarJz7g0aK$eTbtbsatUKyk2lb0+5X8kUcYsbuMZKnepSMfx+D/t6E= \N f nadiahammer@hotmail.com nadiahammer@hotmail.com f t 2025-05-13 21:56:52.252458+00 +913 pbkdf2_sha256$720000$7CaTYZvLSHDKGbtQ5pst7h$+QwB/q5x5xVVDpzitOYQ1eZqfHdSQE6VDzt1+QveAn8= \N f maria_lloudet@hotmial.com maria_lloudet@hotmial.com f t 2025-05-13 21:56:52.962609+00 +914 pbkdf2_sha256$720000$Yw7C363skH0R2TLR2qrnCT$xixF/k2ZEo3q+YGMJYdBey+j6I4Fyb9ZWxVGBnjzh7M= \N f msdonato@gmail.com msdonato@gmail.com f t 2025-05-13 21:56:53.598537+00 +915 pbkdf2_sha256$720000$79JmOZ3soyQHWgA9ogQK04$IFAUdcg3q/jB85ZHZvA9hxZvFI5sYxyY5Pe3LSSlt4Y= \N f luciaacarti@gmail.com luciaacarti@gmail.com f t 2025-05-13 21:56:54.199632+00 +916 pbkdf2_sha256$720000$0fG3lEswSHDCSZgkTdzpIT$WzgMY7q/CbP+LwlCNWS5I8PFpkonU9EzQVdVdj2ZFJA= \N f cynlegui@gmail.com cynlegui@gmail.com f t 2025-05-13 21:56:54.793806+00 +917 pbkdf2_sha256$720000$16dS3j2fs8sSPeTPPSq4Sm$aZ5xyeK9C/DQ17/F5hiWzxW2BSYMiWPFC+IO9mxvmsU= \N f solcitobanes@gmail.com solcitobanes@gmail.com f t 2025-05-13 21:56:55.464862+00 +918 pbkdf2_sha256$720000$YW2okYEojIi24kmx7tt68h$r7wtAHGRqn2yH8nOrmZ51DX2AkrgogbBU57cLfTIDNQ= \N f romimassa@gmail.com romimassa@gmail.com f t 2025-05-13 21:56:56.174912+00 +919 pbkdf2_sha256$720000$r0fLVzm84mG9pYkOmLgXS6$5aEuJ4aFQ0vJSOqh6tB0V4Et94eThzzx1pzdyNlJBPA= \N f milroyale@gmail.com milroyale@gmail.com f t 2025-05-13 21:56:56.962015+00 +920 pbkdf2_sha256$720000$AwEgYbLFZa6UrbkDTyrPAW$KgMu+d8QXMTMOKpFgY7xgiDFCtwKQAl4otRiO29f9+c= \N f marianaperezdelcerro@gmail.com marianaperezdelcerro@gmail.com f t 2025-05-13 21:56:57.711742+00 +921 pbkdf2_sha256$720000$0aRpyeZfitTcNgCY5cFNtH$mOyIQw7Ooibem9rTMZQk8HifEAY+PJkU40ocOOXAR7s= \N f martinalotti90@gmail.com martinalotti90@gmail.com f t 2025-05-13 21:56:58.300948+00 +923 pbkdf2_sha256$720000$tisShA0g7AT6KQZ4owROHM$rGyNTguYQa9IlKYSKOsLNjFfsS517ZsKPH/JykzUIQY= \N f criselenasandoval@gmail.com criselenasandoval@gmail.com f t 2025-05-13 21:56:59.546307+00 +924 pbkdf2_sha256$720000$dUSEdUvddtCLzd8scFrAuD$8pKw1iH6G5rmA3SDz+17Qtb3Whwlfu7dKGUBDR3X0gA= \N f loesdondo@gmail.com loesdondo@gmail.com f t 2025-05-13 21:57:00.147417+00 +925 pbkdf2_sha256$720000$18L2Fqnj3cdDVOFK8ppK8y$VVSmpm+udR99ZAXiVGeLprPcWUYvmacVlnklrexSvfU= \N f valeria_0209@hotmail.com valeria_0209@hotmail.com f t 2025-05-13 21:57:00.783927+00 +926 pbkdf2_sha256$720000$wYjCG6nfh4UTSLndWpLTU3$KG/C0aCS1QVidH1tA/6HjyiynSJhGWE99+x9TzFCcWk= \N f kylieguzman109@gmail.com kylieguzman109@gmail.com f t 2025-05-13 21:57:01.476273+00 +927 pbkdf2_sha256$720000$iv1cTkrswcfm32Lc02zUGp$Qc9HFTD79CF45Ko1sv3zoqkO1b7OWc5FFOmlC+PsYm4= \N f jiiruffolo@gmail.com jiiruffolo@gmail.com f t 2025-05-13 21:57:02.177109+00 +1369 pbkdf2_sha256$720000$OBXjIxaVVjP2W2DdiSdxcu$4t5joe+3E/+utH/Tc4beaNbpL23gQ/4+EJCX5/tYH5w= \N f mhcmhalle@gmail.com f t 2025-07-14 18:02:54.176458+00 +929 pbkdf2_sha256$720000$Ca9mCGfSRv16SQJEnetoQ3$FHG8A1eYxpyx083RuQhtoAdo0JsDTN4SU7k/nlLGQcc= \N f juana.samperi.01@gmail.com juana.samperi.01@gmail.com f t 2025-05-13 21:57:03.459867+00 +931 pbkdf2_sha256$720000$B77Qi8nv7VMZyzCLsImoqL$zkki+TgOIhm1dAfaSkpIcJ9+R6kSIuhDHDw1HlU9gss= \N f anabella_iglesias@live.com.ar anabella_iglesias@live.com.ar f t 2025-05-13 21:57:04.926087+00 +932 pbkdf2_sha256$720000$CPpflUcsfkEIndYR4m8xWK$sSgJAW3/MO7QGmIwOt50NS0a8uBfxwp6bjBrEZcapAM= \N f federico.leivas6@gmail.com federico.leivas6@gmail.com f t 2025-05-13 21:57:05.685605+00 +933 pbkdf2_sha256$720000$wiSrpgCcrt7f8CfJHlwQT1$RAT+R6sz15/9M0bXNEu0Ya/o+gsJHugFZeUeIhH/nNw= \N f judithlagoria06@gmail.com judithlagoria06@gmail.com f t 2025-05-13 21:57:06.394913+00 +934 pbkdf2_sha256$720000$SoAqvm28188GEkDWHA9WTT$btI3J7EM8F8ZfjBjoeI1XwcyMfRQiqQmeJ82n8rCCBM= \N f barbara_bondarenco@hotmail.com barbara_bondarenco@hotmail.com f t 2025-05-13 21:57:11.970731+00 +935 pbkdf2_sha256$720000$W3AjcdN2hN1wuWFS7yJARK$4sjUA+NXLb4SYt4j/5qlQbqMKkPmqJuSrWFOVqeduTM= \N f sabridoro24@hotmail.com sabridoro24@hotmail.com f t 2025-05-13 21:57:12.696681+00 +936 pbkdf2_sha256$720000$bP2H0IvgorkUMCNgCyBpdH$eJFu19joS2V4A4/t5nPDbK3UUUuJw4IIxMBNeK/DEko= \N f nbasile@osdepym.com.ar nbasile@osdepym.com.ar f t 2025-05-13 21:57:13.536736+00 +937 pbkdf2_sha256$720000$aFw2OYTxRfdfGFCmW4LODj$o42pJhF5r6odo+jxnUnMoh62nbRzn3BGmhDMC37+vtQ= \N f anita_artemisa@hotmail.com anita_artemisa@hotmail.com f t 2025-05-13 21:57:14.211951+00 +938 pbkdf2_sha256$720000$jhYTFXR6115oGbf3mRRVTS$y8e45Zkmez694UqtVDapQ6QDoXIjihhNDDagyWC0dn8= \N f macdonnellmercedes@gmail.com macdonnellmercedes@gmail.com f t 2025-05-13 21:57:14.82332+00 +939 pbkdf2_sha256$720000$YSYOSwPXCLrAAxpYmiGLjl$lOI9go8MeYZkqFzS/Ue1s6WUYQcAykeB/Nms92i0bT8= \N f rojodemivid123@gmail.com rojodemivid123@gmail.com f t 2025-05-13 21:57:15.47421+00 +930 pbkdf2_sha256$720000$s1RmDoAwsNJj4hSCt0EHMr$cu4OoJ56kAG3WfR9TIrQHIOVuYwNt9cQuUHnDBmTnrA= \N f vickypd55@hotmail.com vickypd55@hotmail.com f t 2025-05-13 21:57:04.207699+00 +922 pbkdf2_sha256$720000$k2QltkKxrzNB1ZVJqjpRcR$+XRlw1InXzFcwAvCi5GenufHE4vPG9ueXoiLf/Weo80= 2025-07-07 14:59:38.109763+00 f lolezoeze@gmail.com lolezoeze@gmail.com f t 2025-05-13 21:56:58.909801+00 +903 pbkdf2_sha256$720000$pLMTgtCrrqsgnT9DafFHJL$aXH27uR9meqG7iR9mctrIFyzmFRrgqEvDkmbtWVFpkY= 2025-07-11 23:00:51.107643+00 f marian_alarcon@hotmail.com marian_alarcon@hotmail.com f t 2025-05-13 21:56:39.804787+00 +940 pbkdf2_sha256$720000$8RN9CZc1ju4A5DKvJNEkxH$aP9XaQBgSiMxk3jdcuHbLHpY72oUxOSxPd3CPyuTn+4= \N f vasco222@hotmail.com vasco222@hotmail.com f t 2025-05-13 21:57:16.118024+00 +941 pbkdf2_sha256$720000$Ycig5Vn6ZcjNMoCWD8jb2d$Rj8M0qxXh8JGMFEYCJatXG43pioykJ4rZZQJG6z7u20= \N f hawkinsmaria34@gmail.com hawkinsmaria34@gmail.com f t 2025-05-13 21:57:16.744655+00 +942 pbkdf2_sha256$720000$IHossAD0COsdAtDLcHIn45$s17Mcq7vPwa/1nIas+REfxBG17oEmKIcpkc3Yyu12c0= \N f sebastian.l.grun@gmail.com sebastian.l.grun@gmail.com f t 2025-05-13 21:57:17.385509+00 +943 pbkdf2_sha256$720000$dQgHuB3ircKYHumXBNu2KF$DPZScUPuG/MvzKGJbq26veuiRzrIOINsXm4H68I9wms= \N f kristelaguirre71@gmail.com kristelaguirre71@gmail.com f t 2025-05-13 21:57:17.99762+00 +944 pbkdf2_sha256$720000$L4xcFDUyDU3nw0egDVT2hG$YXp3lAmvSFt87I0maOwFtNdssN/evpMFEyt6ArTHpjc= \N f marisolhiges@gmail.com marisolhiges@gmail.com f t 2025-05-13 21:57:18.686954+00 +945 pbkdf2_sha256$720000$ktqgfxXs9c8Qgngmkmziat$5O3jRFKhM+5+HkCKkHFdva3nsYrViU4HIaNUOuTYPls= \N f plife.1986@gmail.com plife.1986@gmail.com f t 2025-05-13 21:57:20.894408+00 +946 pbkdf2_sha256$720000$iClcotsEQAaeJjYtOLhg98$1QrKa+5T8p5CYpzn1iIHy4yqZTCc1rQY/g9MimSQmrY= \N f chochetina@hotmail.com chochetina@hotmail.com f t 2025-05-13 21:57:21.530175+00 +947 pbkdf2_sha256$720000$hIXc5q63YWWcWpSNf07eTe$K+SvKBHuouteyxCjEP24nbtvHQ7fxwvywXdjyL3XaFU= \N f emiliano.sary@gmail.com emiliano.sary@gmail.com f t 2025-05-13 21:57:22.139628+00 +948 pbkdf2_sha256$720000$UKSEVh7wewEKdSu6WAHVid$YwWseqzsSOHYgJ9SuHc2CqGlfpIc6Gvu244miDo32vc= \N f imtjjv@gmail.com imtjjv@gmail.com f t 2025-05-13 21:57:22.828136+00 +949 pbkdf2_sha256$720000$95zy4tOVPoHkFNT1pv4u1D$SILNtaDtCeoESGBbcJzI8P5CbGxjaFXFow2LgNmdYxk= \N f miriamsasson18@gmail.com miriamsasson18@gmail.com f t 2025-05-13 21:57:23.612285+00 +950 pbkdf2_sha256$720000$Se36DILgdenlsV4ejUNBSX$TCnEi0VySpLgSmNUkuMrrOvXW10wGsh6ws3NPMN62ww= \N f javier__99@hotmail.com javier__99@hotmail.com f t 2025-05-13 21:57:24.216094+00 +951 pbkdf2_sha256$720000$xH6F8HmziFoTqEzdAlqFfZ$4ol+mlmh4Lo0mcRvctTOL9Pc78lU+8oqTGDhj1voGZw= \N f karinamtorrado@gmail.com karinamtorrado@gmail.com f t 2025-05-13 21:57:24.911422+00 +952 pbkdf2_sha256$720000$gPoFeI6AptR2KKLh6Dk9p3$P3umRwCNLGjvrL5wD6JBp/ADMvBK1GvUGjTTJHt8qXs= \N f rlourdes19@gmail.com rlourdes19@gmail.com f t 2025-05-13 21:57:25.576572+00 +954 pbkdf2_sha256$720000$fiI9pMk8rmoOJJElvB0GmR$UzZZ8x8vzoM3C7+lAKPW2hM7PXtb2lGnk8iwS7nz9xQ= \N f rubenpipo@hotmail.com rubenpipo@hotmail.com f t 2025-05-13 21:57:26.908271+00 +955 pbkdf2_sha256$720000$hA6ctSaPSyh7G429xUBREd$EADBAjckB88kkjQY/gETKxIsSvd51Cnej+jIJ33sIsM= \N f joseffrank@outlook.com joseffrank@outlook.com f t 2025-05-13 21:57:30.122324+00 +956 pbkdf2_sha256$720000$I99EYTyqpeYuybep6oRvZc$AvRREq5U/Wm7JdJojHlVOwQU4ELIi5NiQC0UcdOg8Qg= \N f daniloimperio@gmail.com daniloimperio@gmail.com f t 2025-05-13 21:57:30.86963+00 +957 pbkdf2_sha256$720000$MztYFNflsWMPyS9qtSerY3$MILRqE34f8g0j7mtnpZrjPG+3NZeLSff9gLTAogSPOs= \N f bestseiyuna@gmail.com bestseiyuna@gmail.com f t 2025-05-13 21:57:31.600473+00 +958 pbkdf2_sha256$720000$iEJDKpr24xnDAfEVMsju38$NWogqeJJL5eyzR8r/fB4bFiaPLNdDo2yrINtSQb4Jqw= \N f medilakok@hotmail.com medilakok@hotmail.com f t 2025-05-13 21:57:32.206255+00 +960 pbkdf2_sha256$720000$Gygkjyq9LgOc7LfFmUfJ1x$J1wbDeSDdEsdAPVmFHpQuSfaYn5Z7qKBXnrCAOPUHRs= \N f cabrejomariae@gmail.com cabrejomariae@gmail.com f t 2025-05-14 01:02:36.431688+00 +961 pbkdf2_sha256$720000$Q614V7CSREQqjlgNYlegcm$d4Cb34DQPOoKnZlksZQxPdZjKUYOkc+rMbicGgewBQQ= \N f cancinosalberto9@gmail.com cancinosalberto9@gmail.com f t 2025-05-14 02:38:59.175136+00 +962 pbkdf2_sha256$720000$Zq53TUgQJ2III3qoyLUFQ5$Tw4wb/uTAioQT1Y1k9SUly92ZtxKgl72mKG4d8LGZ9M= \N f clarys.23@gmail.com clarys.23@gmail.com f t 2025-05-14 16:46:49.436615+00 +963 pbkdf2_sha256$720000$q2Mlwp4X60KsuiqQI0RQn7$vmMT1zgsHonpnEbNWHWvq+IU8DsFWblfAMk5EdasKnI= \N f Camilataarr@gmail.com Camilataarr@gmail.com f t 2025-05-14 17:23:15.480812+00 +965 pbkdf2_sha256$720000$kxGjFfg5kMLBxExYj9GYvK$hxMoOHNWqsHMda+3Aqa4gM5WEv24WD3frhc991D4EGc= \N f bordonroxana@hotmail.com f t 2025-05-16 16:12:04.849837+00 +966 pbkdf2_sha256$720000$jYZWZO2virONAHHPtAMB2z$kNhPUtH/qRfbIO53N9pJC4Z6NOiix+dReqmfVPWt5+E= \N f schneider.estefania@gmail.com f t 2025-05-16 18:06:34.163663+00 +967 pbkdf2_sha256$720000$qEuNAqyxzcOhUM1FvREU9V$DahneQ6W42Jr9HdweCrLXn5r1k07jJ2uyZfm68ACPQQ= \N f mariahamor@gmail.com f t 2025-05-16 23:30:50.039492+00 +968 pbkdf2_sha256$720000$UBuJ1If1rUQd4DNLJi28P6$JTQ+fSI7Xy6RjdG6VAlSXeWCfoSbYM5crDHbOj+qNwU= 2025-05-20 10:47:41.500004+00 f agustin.paravic@gmail.com agustin.paravic@gmail.com f t 2025-05-17 15:41:01.383271+00 +969 pbkdf2_sha256$720000$dHOYfvUZrYaPGcHZvt2esp$R+ZCb0loEaxhm6gLCRH/f+fbqtrUZbx1H5eIydrUkDM= \N f ecatyfernandez@gmail.com f t 2025-05-17 20:56:53.933023+00 +970 pbkdf2_sha256$720000$mUsVIkLm1M5FxfJnPSldG3$8mUXjCGrjEsKDA1JwAGTnFAdMoaRMfYaI7LVbR/UBCE= \N f psilopezcarolina@gmail.com f t 2025-05-17 21:10:40.014764+00 +971 pbkdf2_sha256$720000$x0wce3GrGLhCfPozMOquEh$M3VsLZZq+MDQFIHXepuN5SwCMdF7JMUcK5K0nVNtosU= \N f colo_s06@hotmail.com f t 2025-05-17 21:28:47.147284+00 +972 pbkdf2_sha256$720000$wBumBMsfavyXZBtAIqKieb$xslsvUH8NlInhDBNx9kVtVaCzED/gmcdg29qKHKRYUo= \N f luciapini1977@gmail.com luciapini1977@gmail.com f t 2025-05-18 12:39:22.580745+00 +973 pbkdf2_sha256$720000$pqBfDpL2Q2AprNT2q1045J$UOWdC1iohrJjC2w+rKDxn8DPsJvihBioI3OQAdmRGxA= \N f andreasiritto@gmail.com f t 2025-05-18 21:27:43.608073+00 +974 pbkdf2_sha256$720000$FSubr4sqfKKjlHzePpdvPc$l3nMJBtZW0XTvZ+FC0/FpqfpOEbk2sVgcX4EAb4+hwI= \N f bautifelipetta@gmail.com f t 2025-05-18 21:44:21.725437+00 +975 pbkdf2_sha256$720000$aXDdq34SkoRaKuY5jVcWxi$omDHm4k88EWJaM1zWJI5gMN2SazGJfhU4ew1RR2+00c= \N f geraldinealali@gmail.com f t 2025-05-18 21:47:47.25189+00 +976 pbkdf2_sha256$720000$XAbjL9p0AedkzJtyidiDRS$3NAiGRPftatjhtIfOM0//+LrV15CRAaa2MLJYPvQy/w= \N f guzmanalemanalexandra@gmail.com f t 2025-05-18 21:51:44.691222+00 +977 pbkdf2_sha256$720000$BsvLSCJNRcMI7cxKXA9S21$0lSdgeZXBafHOcsku/ym9CceRTW64Og1y+ff1dwCYoE= \N f soledad_bidart@hotmail.com f t 2025-05-19 13:07:01.452385+00 +978 pbkdf2_sha256$720000$sXK1WWw6x9Ziw2QbCMq1rD$audosIK3pVAuv2CWAu98in+c1jgAT8igkU+KZWYHpZk= \N f marinasplausky@gmail.com f t 2025-05-19 15:53:58.412054+00 +860 pbkdf2_sha256$720000$rUm6uNeU3hvOtwTG59kHej$anSKVPeshdfx47PvAVND4hdRbJo1EQJ8uTAOPM4APRM= 2025-05-19 16:13:22.449427+00 f federicodipi@gmail.com federicodipi@gmail.com f t 2025-05-13 21:56:10.524332+00 +959 pbkdf2_sha256$720000$1lLsfi3UMONIUf8M7EPa07$etHtpILuzpLYXSAtFbOJShPsc7PFhqTjbU3F1Wv7X5Q= \N f tejeguada@gmail.com tejeguada@gmail.com f t 2025-05-13 21:57:32.852559+00 +114 pbkdf2_sha256$1000000$ECImoKRr6h3JtxXfWstGXC$Tg3rdTJphdOgAhdGghF6wXRTcwx6Zs0TUFmLC1A12MY= 2025-11-20 18:27:05.048487+00 t Pilar Pilar Guzman Luzpilarguzman@gmail.com t t 2024-10-31 21:12:51+00 +964 pbkdf2_sha256$720000$fCCMH5nvzJdfMgeU0Enxcy$+V/XqnZfyoVaCJUHt1d8tA551mHIxcuaLaUjne0sTn8= \N f catalinasimone97@gmail.com catalinasimone97@gmail.com f t 2025-05-15 15:11:18+00 +953 pbkdf2_sha256$720000$JtNLvRrTRHnpQFKDpVG7Cv$ktcQvXSLsUYqWaLfdHKHFiSlvfPIwMUGPj/sowW9Ov4= 2025-07-10 18:11:38.206628+00 f paula.pignatelli2@gmail.com paula.pignatelli2@gmail.com f t 2025-05-13 21:57:26.198995+00 +116 pbkdf2_sha256$1000000$ldrRa5msFITXPA0yjQhETt$b27QVqiJJsNs6Qs98UT4Ki/gxu1peewFMxJPHu4S+QY= 2025-11-12 13:55:24.206951+00 f poncelisandro@gmail.com Lisandro Ponce poncelisandro@gmail.com f t 2024-11-08 20:26:49+00 +800 pbkdf2_sha256$720000$ltt2e3u3Lv3GZZ59WQFxjk$UVkvRxC5/gzUwrU+themYLBWt05vPAfPGA+4Yky6/kY= 2025-05-19 16:16:40.966654+00 f natslopez@hotmail.com natslopez@hotmail.com f t 2025-05-13 21:55:18.670154+00 +979 pbkdf2_sha256$720000$WUZZsjN2iidITuKfEiwuda$9MWi9lRzt64SWIFrg8zKAQaSfeUmSEYwB+ZLJEbwH5o= \N f crisso9315@gmail.com f t 2025-05-19 16:46:57.657536+00 +980 pbkdf2_sha256$720000$8oBR6yDqPfBNNfmOE4EJSw$29SRXMUF3JjyH8KsJqp102yje+hz8bn4CPWOIK+1Yd4= \N f brussoaulet@gmail.com f t 2025-05-19 20:51:59.760177+00 +1015 pbkdf2_sha256$720000$1Y3OaivKNSAQOsHByA8lom$bRAFSFQOK1VOYVovWSTlVV2TiGiCj2MMNQhUGQahE8k= \N f soymoralescamila@gmail.com f t 2025-05-26 15:39:56.106191+00 +318 pbkdf2_sha256$720000$4Qe46iA7i7PWZ5u07gXr9V$sSvNUxI1dRtZGugQsPrYlVXxT3WFKNcVDmQXOvDXFe4= 2025-05-19 23:19:25.918319+00 f Silvia.rabughinii@gmail.com Silvia.rabughinii@gmail.com f t 2025-05-13 21:48:59.716287+00 +981 pbkdf2_sha256$720000$tVkVQY8fw3TOyS9cqA4WkK$aW6jYKyAelfAwA7m3I8oval3vd9m2HFnVvXdFKuwgE0= \N f pelucasolga@gmail.com f t 2025-05-20 14:28:46.679621+00 +982 pbkdf2_sha256$720000$NC9VC2u10GULHy9dCXGXoa$8kqxhsrNR2JHE4vVawlO+ScmhZtcZYKR05m6ASHbMvw= \N f estuonda@hotmail.es f t 2025-05-20 15:06:07.915632+00 +984 pbkdf2_sha256$720000$HvzOnWBMk1NdYW0vUQqvYo$hTjBBm3CFFoGL0hBf8G+yKQ8dNTegwg9NPzo19jETnI= \N f gracielaairaldi@hotmail.com f t 2025-05-20 15:35:34.460893+00 +985 pbkdf2_sha256$720000$HIHvYSPGAcBNYk8TE3abVG$ItWohXdb5oXYlw4Wsg8oWQh5nvgvhLnyO0BWg6x3roY= \N f sivetalejandra@gmail.com sivetalejandra@gmail.com f t 2025-05-20 15:55:50.058036+00 +986 pbkdf2_sha256$720000$yL5h14OR0eDYk1t2c0Ehp8$b90+kX9UMMsM+KWsokdaaL4ruQ/znWTP8Le5V/NxchA= \N f oliveradaiana@hotmail.com.ar f t 2025-05-20 16:12:39.105398+00 +987 pbkdf2_sha256$720000$kkBZyA6ePXXy2Gha283wfO$xpSIMBEG849OKvKNFO5ySatCNDox8HTE7LsctJYVdNc= \N f luermus1964@gmail.com f t 2025-05-20 16:53:48.724123+00 +988 pbkdf2_sha256$720000$4oo4GNxzcWTFZP9jo4u1sL$0/Ikql7861ptaVeoOI486WtAonZhnZt+1uEYC7pn4Mc= \N f gimenadiaz13@hotmail.com f t 2025-05-20 17:09:59.601755+00 +989 pbkdf2_sha256$720000$SkzyNgMr4VUV8DffBE88fW$b+QRs/d6bLzRqrmmoJzFmDodrdn5ieo82pFKniqhvtI= \N f nicolasaulicino@gmail.com f t 2025-05-20 17:41:35.071268+00 +990 pbkdf2_sha256$720000$lkciEelFSzzvKqfvb0Qwba$zY8qOCbsG+7syZmOazleauKbB83eyKBIs7AEIHBZPRA= \N f juancarlos123@gmail.com f t 2025-05-20 18:30:48.875068+00 +991 pbkdf2_sha256$720000$HLLdqEVnum8MDnix4nPxaP$KOkUsrK/BiHAAwW4nV08OVcqCl/eaBIbujWEmUouO4w= \N f zabalanacho22@gmail.com f t 2025-05-20 18:47:52.675934+00 +993 pbkdf2_sha256$720000$pGKfC4yTmk3yUvaLMiymsP$a0qJZpTdyNY0pKT3zVCcQ5E4h0tAci4vdjNUKGjEcxI= \N f ma_juliap@hotmail.com ma_juliap@hotmail.com f t 2025-05-20 20:58:37.411763+00 +994 pbkdf2_sha256$720000$VBcrGvaBQtZFnq8zdzg6qE$mp7QH/vcSezT/11fgb2viu6RAWbgVO2RqMpjDHfcuQw= \N f adrianagaray@gmail.com f t 2025-05-20 21:06:59.346678+00 +995 pbkdf2_sha256$720000$DGxOsTAGBY8EwnbAp60RMv$j51eA9zmQeEDjd7ASLKM+N0XrRjQN6cqdMUILOh6nTs= \N f rominacarriquiry@gmail.com f t 2025-05-21 00:53:17.045416+00 +928 pbkdf2_sha256$720000$Bl4UtB0Kh37Eo0lFTmR1iW$EXcxiUDhO3lTE9DBn+0ys4e+ccPmr7xk6oioDPkxpYM= \N f sabrina.emanuel@outlook.com sabrina.emanuel@outlook.com f t 2025-05-13 21:57:02.812224+00 +575 pbkdf2_sha256$720000$CRa1Bu98v4P087crhVACKL$ZjYz2RQgn4slagXz0ntscvfbvzccMY5yXTLTl1mS7zQ= \N f a.spinedi@outlook.com a.spinedi@outlook.com f t 2025-05-13 21:52:22.856813+00 +996 pbkdf2_sha256$720000$JKIA0Osr2qe7cVtd761pC1$vaqxnY1BP3Atamhiut4NvfxQMvleHh0PYjrsnNItOc4= \N f belenrosenfeld@gmail.com f t 2025-05-21 13:48:55.86211+00 +997 pbkdf2_sha256$720000$zkf4W4d5VQcTj0fsAM3vEc$VYirqX/alvw7v6Se7+nwke6rv5TKg+h0iUY9KMlN9Mg= \N f mazzeocb@gmail.com f t 2025-05-21 14:50:48.588576+00 +998 pbkdf2_sha256$720000$YHCR7mOGwhwFl6kSdkAJTk$BQGUjaS8/CyEvWnPKTDjrTXO7uXFX9xux7ZEvE9GSlo= \N f ycuberos93@gmail.com f t 2025-05-21 16:26:50.163292+00 +999 pbkdf2_sha256$720000$BoIwXOtHtSaS7cNXr4Qfza$uU0cWMyo4ZMcvTpA2ppPcFkRYarZ8cjO2g/Vc0G936w= \N f chiaramonteluciano@hotmail.com f t 2025-05-21 17:46:30.881664+00 +1000 pbkdf2_sha256$720000$mQNvYxvqk6ypPyQd3cMVj6$R4dia2ZqiFqjB2cqTsCBqfvL6K6RIZXFkgzMgdIwE2s= \N f lauramallea@gmail.com f t 2025-05-21 20:43:06.474142+00 +1001 pbkdf2_sha256$720000$ASRjQUSWPVMe8RCfl56BCV$jf6YffoeUaH+6aloPucg30MSQoJs86UekKQmThjlcgg= \N f gustavo.escudero.a@gmail.com f t 2025-05-22 13:41:51.094757+00 +1002 pbkdf2_sha256$720000$RVUlijG6bb4IXCYHaadkV1$tLEygD4hYRMDYww50ojZOEdUvO8uN0KA2mcldIRunHs= \N f mariana.aro@gmail.com f t 2025-05-22 14:12:38.186661+00 +1003 pbkdf2_sha256$720000$6WxnfkpdGdWzFFMpA5ZOAv$xJFGY2jQUxekyU36oHqn8W+NAfmHj8HO3BereDHkG2E= \N f barbuono@gmail.com f t 2025-05-22 16:10:06.265266+00 +1004 pbkdf2_sha256$720000$KoHJo3A4Hwb2TBeQkz6fio$A8SZjclm3LN+m9htF+jRd2CzHDf+yAQCZ8TcwUrbQHg= \N f dpicardi@agro.uba.ar f t 2025-05-22 16:58:43.198424+00 +1005 pbkdf2_sha256$720000$lZPeCkMIcfkfPpuJRSfph9$FJhzGOBWKNxBbIYRJutEHQZuwGkSmWybKP7AmMtM+wg= \N f pgsalerno2@gmail.com f t 2025-05-22 19:25:07.329983+00 +1006 pbkdf2_sha256$720000$2A34UWx7Sci0acAxmffA1u$NMrkybf8/n6P8ZQsbDGVB4qBl5emPefbdWTRwIzDuoE= \N f gmontesdeoca01@gmail.com f t 2025-05-22 20:55:36.925251+00 +1007 pbkdf2_sha256$720000$Q7hyFlWcIikL1iyThC8inZ$VgF2+UKQcB7NiYq/P/2S6pOoqDRyLjwXYPGzcAqtcPc= \N f giseleluna88@gmail.com f t 2025-05-23 14:27:46.128715+00 +1008 pbkdf2_sha256$720000$FEtfmCqAsZtPnW8GBSs4VL$5HEBFY4cUc1qUHsswAJI0PdFN/UDWLWAnU0iJQUhDro= \N f nicole_p_leyendecker@hotmail.com f t 2025-05-23 16:31:30.296316+00 +1009 pbkdf2_sha256$720000$qlYItshaJt6AXSuy703NHz$RkKf2u1/HPneyBoAeTyXsMGz/2VPKSXrkjFhL4650ls= \N f jeimar.mmm@gmail.com f t 2025-05-23 19:17:24.132513+00 +1010 pbkdf2_sha256$720000$4aQyANg77aIV5oGuEckgeb$cf3dpbpy1ZbpJMSRMcka2h/VJTl7oERjVXBmRYCVQEo= \N f aileen.q.rojas@gmail.com f t 2025-05-24 21:14:08.080188+00 +1011 pbkdf2_sha256$720000$sXwliAAwsQK27pJBxzCxdq$2iDQ+x61W0iMX6BwdlvdzxeZ62e5AwAN9ygMZd3+fJ4= \N f gracielahaene@gmail.com f t 2025-05-25 16:08:16.812347+00 +1012 pbkdf2_sha256$720000$CXjd2fzJ2vqvQ8UlghSKct$IvO9E8ZlyssT7O24L7N//wJjgDpEWi1nNt88V+I9l/k= \N f nicolas.trotvil@gmail.com f t 2025-05-25 20:42:58.238691+00 +1013 pbkdf2_sha256$720000$1R0PmcYlSXE04cJKWuiDMl$prXJyb4FBIl8IZBWfQjNyVaCOJl70y0FCZqiFmxMDvQ= \N f silvia_luconi@hotmail.com f t 2025-05-25 20:52:11.425233+00 +1014 pbkdf2_sha256$720000$Yda3kEbj7DjOOcQWUzakb8$Jgn5jZfnEw27wP6hMzAjLYrzxkktDYqQYg9cZ0Bgk+k= \N f fer55_2006@hotmail.com f t 2025-05-25 20:57:28.165099+00 +1016 pbkdf2_sha256$720000$PgisXQnKKadfFPe1fNWpHy$/MgCjzO4M/tGzCZMgAlNj3WyH1C3W0Gbx56ZccSOKws= \N f hnodelis@yahoo.com.ar f t 2025-05-26 17:05:27.880475+00 +1017 pbkdf2_sha256$720000$KlDNSbauLfwDSkza8TR0Mo$q37c7TUnliU7JIWly/yAiFr4j/aAO+8QyV2eCd2Ap5I= \N f gracielagomez1980.gg@gmail.com f t 2025-05-26 22:53:48.153759+00 +1018 pbkdf2_sha256$720000$a0T1cSQwUeCR1WTUqt3Qro$eK8ntyiHsvE8IAuZrKBZohyKSfPAAvTfZgj2OzEj89Q= \N f esolmi@yahoo.com f t 2025-05-26 23:28:16.082262+00 +1020 pbkdf2_sha256$720000$oTlUp692t9jH11fqOAaec0$MbKnKNFilpKjuL5RGNNPPhKFE74wpzIewZZNf7n4ONQ= \N f milli1975381@gmail.com milli1975381@gmail.com f t 2025-05-27 10:42:48.852989+00 +1019 pbkdf2_sha256$720000$ESITEvVDsNPpBzd1el4n0l$UKaxML0hb7NbZ+z4cclNuT5yFr7et1GS/1/sTMz8iZU= 2025-05-27 01:24:11.247485+00 f flo.gutie@yahoo.com flo.gutie@yahoo.com f t 2025-05-27 01:21:12.638598+00 +1021 pbkdf2_sha256$720000$ildV6RvJthkxregpnU6AiJ$LEihMkHAS7Uvbg6SBzukKwmZl/LX+K60nX5I7i8Nlp0= \N f Clali282008@hotmail.com Clali282008@hotmail.com f t 2025-05-27 14:42:15.388971+00 +1023 pbkdf2_sha256$720000$kAkz3Y4LeIVdvgIlrC23Js$3mgZQFogGf/PBH8IixLnyvSz4sM0e4hIF2A6ChUSfLU= \N f ariana.echeverria99@gmail.com f t 2025-05-27 16:04:54.863534+00 +1024 pbkdf2_sha256$720000$tiyvG7IO6jufOQUUm4CnoA$p8VXQL2P6zvPVkCkAGduCPuy/dGCRysdcT9N736BPbA= \N f leticiale63@hotmail.com f t 2025-05-27 17:48:13.236828+00 +1025 pbkdf2_sha256$720000$0UMI0DUqjC4tGc3s407Gmo$kI0S4LwmHQxWL1YQ4sAm5dyBAGZtcacBJVi6NdmgJp8= \N f aliciatavernelli@gmail.com f t 2025-05-27 19:27:01.27658+00 +1361 pbkdf2_sha256$720000$kNBmWSFlMlvNi8BzDG12rn$+aRMUcUdnZv3E3jYEKDSsWSJZo5ZuYpCagIQSpkpAy8= \N f lucavitale123456789@hotmail.com f t 2025-07-13 14:35:34.237931+00 +1053 pbkdf2_sha256$720000$LslhVuf4Mdfj4hCfgIOsoX$j1kMuJ+VPZ0dTB06c/CmOsqPHoJ06ld7EXNGHaeCVuc= \N f veronicagorgal@gmail.com f t 2025-05-31 21:52:03.760471+00 +1054 pbkdf2_sha256$720000$3ZxX9w6Ah34tw5M1fuuwVD$HGYPkA2W1ELFeMCgnNxMJLmRjcYJxu5PSubzVwc/i2c= \N f lizbethv7666@gmail.com f t 2025-05-31 22:04:56.350407+00 +1370 pbkdf2_sha256$720000$EatGvXYyuBvzxU76LH7Rzg$LX/Phn5GPL0SGqGKNr3mZedeJN0W2gCbPsKedre8rtk= \N f marcos.linari1@hotmail.com f t 2025-07-14 18:53:51.955588+00 +1027 pbkdf2_sha256$720000$AS1nV03R7rtqykfmEsoiH9$ITIs6YIynAnmMHBz87ZXN7cHmchw4ewtlzy3l43wiTE= \N f seguroszacarias@gmail.com f t 2025-05-27 21:01:00.312725+00 +1029 pbkdf2_sha256$720000$opJanjsgZLL4MYnjTicdWG$p3nr8g1zzJAcmZd/gJ1P8UUnbxQLe425sN4CZmmrkqU= \N f daitegliausal@gmail.com f t 2025-05-27 23:15:19.975668+00 +1055 pbkdf2_sha256$720000$qGpogrO4wfLw9JsSwi7R57$pHVVEOnz2oT0C06dX0KTxWSdCbCxk45WUVTaGtFYNWU= \N f cumbresdelasamericas@yahoo.com cumbresdelasamericas@yahoo.com f t 2025-06-01 13:58:39.890372+00 +1030 pbkdf2_sha256$720000$noKbyzJo0fIWVoxwWaO7K3$fXqgOP5VQVGuJyTQZBnuMPaRI+qE8M795iB694OCYRM= 2025-05-28 10:57:13.368579+00 f ficopithod@gmail.com ficopithod@gmail.com f t 2025-05-28 10:55:43.157566+00 +1031 pbkdf2_sha256$720000$3izKyHaJ0tX1bqLgDlj8Q4$ZycQZv/x/A6hgnOMotcXA+aG6EcwvVcxtfuwvWdACyc= \N f Fpithod@directsale.com.ar Fpithod@directsale.com.ar f t 2025-05-28 10:58:23.992198+00 +1032 pbkdf2_sha256$720000$T5ssldVTncYRljaTKOvxSG$HaHRjzILVIhcPa/xPOR07fmKqlzeFBW53Te0l0Cni8g= \N f testing@testing.com.ar f t 2025-05-28 12:29:14.636321+00 +1033 pbkdf2_sha256$720000$MsZksMctk1uiOIDggKsmxa$A7TAPU+AlOMYS1qKTvxxoVwn1D0fXmr/1CjrrCN6qyw= \N f carlos-n-guzman@hotmail.com carlos-n-guzman@hotmail.com f t 2025-05-28 16:31:44.818554+00 +1034 pbkdf2_sha256$720000$bv90NmE7MCFzvO5dJeTftb$s3mBFzE/FMbWzczlYnEOzEde3yGtGtycZ5l/y7VRyR8= \N f soniaaterragno77@hotmail.com f t 2025-05-28 21:24:45.615257+00 +1056 pbkdf2_sha256$720000$do4J76vmPIY0PxUDLtNI4n$QKzJyrQR7yxma8R3zmd21RW6ivN+LGaIFXOewta2Mk8= \N f jvchapu@gmail.com f t 2025-06-01 14:52:22.762861+00 +1035 pbkdf2_sha256$720000$uCaXQSdmvTgVtMGTZKcHFp$CjbOgs6t5Dgc543q2BqDnVuQhgjG869LcHrZtTOryzw= 2025-05-29 06:04:00.282798+00 f alexandrarami@gmail.com alexandrarami@gmail.com f t 2025-05-29 05:59:48.661213+00 +1036 pbkdf2_sha256$720000$2YU2hsK1DwLM7inAu3pnIl$igwIoO7y7slmPswqsLHMotV/Y9hhpjruS9axatEi+AQ= \N f giovannacamilacachoneperez@gmail.com f t 2025-05-29 13:09:36.942511+00 +1037 pbkdf2_sha256$720000$2KNTsNXpS6KMpimpYVD3iY$06hFrpQlZ+F5fAY9dsbw4R11grR9VPON7FaVxQVzp3k= \N f pbraimondo@gmail.com f t 2025-05-29 13:20:09.784516+00 +1038 pbkdf2_sha256$720000$EyrD4gvkYCEOD2ubfGeG4X$OWr70jZY5+DtdTN0owtxVGdmUc+7HToxT9F7oKfaHX8= \N f kmoreno28@gmail.com f t 2025-05-29 13:38:00.829714+00 +1039 pbkdf2_sha256$720000$zBOeCkw1xfnacYRz8orKzT$n7arpv9AQpAGA9kl420H78aT8WJMuf1YbYXQ+XWh/Zo= \N f sofiagiammarcoarce16@gmail.com f t 2025-05-29 14:34:06.928523+00 +1040 pbkdf2_sha256$720000$GPMVzaWwP4vMywswbF5zvD$isIlbQaPOWjlhk7cM419zGnRVn+a/oOKdPz81SZW+qg= \N f hebe.iervasi@gmail.com f t 2025-05-29 16:28:12.907846+00 +1041 pbkdf2_sha256$720000$GtZB3sTT7HFrllqiDmkciW$BL2xLLpJUqZMAQim7DsqhxEzqWPxqGaP4DiYXmtcxyI= \N f cristianarevalo.ar@gmail.com f t 2025-05-29 16:48:05.062903+00 +1042 pbkdf2_sha256$720000$jEUr4HFA6tzUw92QZbg7OW$m1UHyZfxc8AM/jhRQ8lh3WWYxbMncR9QqYPnRLpkWCc= \N f tatiana.agustina@gmail.com f t 2025-05-29 18:18:09.452431+00 +1057 pbkdf2_sha256$720000$HBTEzcJzKUOO4XrpG6DggE$kKSPAkDiRTdCs4ppLtcxiqszk0gSpdUpEJCkDepgx/4= \N f fedelemariela@gmail.com f t 2025-06-01 20:23:07.101532+00 +1043 pbkdf2_sha256$720000$dRHxkCCfzEu1Bg4o9m2FnD$jc1U3f4RIA47kz8rsvABnbIhTCc5Ll5sAlubjw3ic5Q= 2025-05-30 12:02:28.299986+00 f molly1063@gmail.com molly1063@gmail.com f t 2025-05-30 11:59:48.002568+00 +1044 pbkdf2_sha256$720000$cv2O4tjU83OlSNd5Q7pJ0i$1yO38PbOCKibicy/AitgLAa5kaZsJE07MVwkvycj008= \N f feragreda2023@gmail.com f t 2025-05-30 12:50:51.430832+00 +1046 pbkdf2_sha256$720000$DEroVrA75uLRI2uQokbm7k$7Yrb9Pasy5fO1iFV4aBt2AzX7jneO8EX7C8HW9gWHqQ= \N f fernandamegna@gmail.com f t 2025-05-30 17:06:09.033293+00 +1047 pbkdf2_sha256$720000$P0GrylTRZD7JUAQAVN3tiH$YhBShep7RdKqMPCyPvryJ0iWo86DUORy+SGRsMF6H2Y= \N f sarina@live.com.ar f t 2025-05-30 17:26:17.339307+00 +1048 pbkdf2_sha256$720000$K8hJqaFqc7Zr9ggjnReyYN$gwBLeedroHsyZghbfEKq3K/+AxMv18YVp+Rxe7dNoM8= \N f ddiazrios2@gmail.com f t 2025-05-30 22:20:12.317038+00 +1049 pbkdf2_sha256$720000$Ndki7WUTKyR6qxosZFGBPK$IwjNeLKKiG6nLDxZalTCvl6eZWUJWDw1G6yniXQjwbY= \N f gabu0023@gmail.com f t 2025-05-30 22:23:54.805321+00 +1050 pbkdf2_sha256$720000$Hh8IIZR5DixDMjqBqpdDBk$Wtl1N/wSR6LJMJFwQ/ke2MaHZ85OKnC5MNozupKMUGQ= \N f fcpystarea2@gmail.com f t 2025-05-30 23:58:30.596386+00 +1058 pbkdf2_sha256$720000$2t3edmww52gZXqCp2nzdPX$RUywXMxg3TzEmZl4kdhIL9pqNK2C8k1JgL7g0H5jSPk= \N f jiuspa@hotmail.com jiuspa@hotmail.com f t 2025-06-02 00:26:20.366756+00 +1051 pbkdf2_sha256$720000$fmu9Hj4VvZAJjv5HMqOcmf$gaSV84iB84qgUSRQVNOu9wpFtbmj0QBq5tJDthSep4c= 2025-05-31 11:55:49.543655+00 f carojuli24@gmail.com carojuli24@gmail.com f t 2025-05-31 11:53:12.125423+00 +1052 pbkdf2_sha256$720000$htevmue44gMlbZSv9W6bCY$kZK36kQXVRVmGKPRL4FZV0OJNCKA/E17KGE7yLcbJOk= \N f alebealopez49@gmail.com f t 2025-05-31 21:47:49.91098+00 +1059 pbkdf2_sha256$720000$bOchnW2tb6s6S7MVl73SXo$+zw7vn/W7wqxsb1dP68Mm0avTy0XOj0CdwL0cDlK4S0= \N f karinaredondo@gmail.com karinaredondo@gmail.com f t 2025-06-02 01:39:27.347055+00 +1062 pbkdf2_sha256$720000$6ryq7gnWYERNZxwgL0RWn6$oZKGQZTZD3UiPPxnOoNbHTw/rZgG0MesTps/BFdD0S8= \N f gabvena@hotmail.com f t 2025-06-02 14:44:45.387083+00 +1063 pbkdf2_sha256$720000$4KdQFQWknqq80q47EZXNfO$nQVKYDp8/MUUepx9YJEDLJzH91xcpWqlDRvtKtPY7xU= \N f myrianzorrilla.g@gmail.com f t 2025-06-02 14:52:51.364206+00 +1064 pbkdf2_sha256$720000$201WhbZdC8Felo7uz148gm$2MGXTZrw/ehoDCe38VZrfaR91r8ywU0zMom8t1sm9gY= \N f monbaumo@gmail.com monbaumo@gmail.com f t 2025-06-02 18:35:30.728515+00 +1065 pbkdf2_sha256$720000$UZSvqj8R9SqRXHFm89rD7o$59eeH2mWag54em4eRYOYg+WJPyp19U9e5q5jXcQzfLo= \N f dlferradas@gmail.com f t 2025-06-02 19:01:47.835668+00 +1067 pbkdf2_sha256$720000$6CeHXdJFwPvYZUx8Cldy3G$GvBk5kKBqcpF5Rvv0D/QbJVFlnfdJ5xJXAZM0gaZyS0= \N f laulaly89@gmail.com f t 2025-06-02 20:18:09.995863+00 +1066 pbkdf2_sha256$720000$32edTX6DQvyvAWP1b9dDwL$4+lt8ALEMMu5xGs/S1eDbg+IV1SwngPx90yVrQg/rJk= 2025-06-02 20:17:46.392967+00 f Brendumika271@gmail.com Brendumika271@gmail.com f t 2025-06-02 20:14:41.411539+00 +1068 pbkdf2_sha256$720000$N2IpjS9Mx09qyRBo0McuVt$d2SSGt8Xn9RT15wPzj7mZAmNhnBupm/Goe0U+LjeuLo= \N f gabycouselo@gmail.com f t 2025-06-02 20:23:26.629853+00 +1069 pbkdf2_sha256$720000$dJUeHnjuiiHbFXSgwh54bd$HP7qgZO8jve35y+++fPOulOzkk58E5i9TWElUh6DWdg= \N f nenamel_2005@hotmail.com f t 2025-06-03 00:33:29.595068+00 +1070 pbkdf2_sha256$720000$iVBVDZXFm2Us6FcXC8NoL1$JkX0EP9vw4+qvPeKrYP+qaWUyMBVo3cr/UV3/bjNpWY= \N f cynthiadepiero@outlook.com f t 2025-06-03 00:41:32.679455+00 +1362 pbkdf2_sha256$720000$igFZdp1XbuFjMOUo9frb0u$k+434yIeIj3b+/gcKf0A5hD6WwgNgJmfIIoqWA6jNug= \N f mjulialouis@fibertel.com.ar f t 2025-07-13 19:00:02.313372+00 +1072 pbkdf2_sha256$720000$Dm5rLHPkfBXnUQHAHBIwUq$pyEHtzmvQfXntJf0gP1BvknvXbwJgi6OGvFnWbULLlY= \N f iglesias.jesica.mabel@gmail.com f t 2025-06-03 15:48:31.680779+00 +1073 pbkdf2_sha256$720000$xQd8lMJgcRHi2gY6IRNDzd$w9zw/kaK7uc2N5A2tfO1Q99CStdHVhVsvPJBB4AdAH4= \N f jalexandra1993@hotmail.com f t 2025-06-03 16:58:28.552628+00 +1074 pbkdf2_sha256$720000$Z2wcq7UKOdbiUSkdliW9VJ$ZCH1j0sLQ9iZ/ePwG9p3he8fxRmDn5T49iOJfipIZZM= \N f claritacarrizi@gmail.com f t 2025-06-04 00:12:25.115873+00 +1075 pbkdf2_sha256$720000$X2Ng0qKwEppA07jayjfrw5$euYJB4qRn5QWr6KrRFSnQtdU/0fymZAvYsrvmYNXZhI= \N f acevedojulieta532@gmail.com f t 2025-06-04 00:17:23.057826+00 +1076 pbkdf2_sha256$720000$31hNsKAE0cnYqDKp7LImg3$Aa6R6kn3rwYsuYbmq0oaNKT9NC08MSL/t3akd1vLIB8= \N f sofiacalderon.bio@gmail.com sofiacalderon.bio@gmail.com f t 2025-06-04 11:23:11.373058+00 +1077 pbkdf2_sha256$720000$HQvnWyGAi7QPD3x0bhIHzL$n4WfU0Cl68CUj0nEH7fCa98d+Gr39uubeBE+DJKaC60= \N f gastonestevez13@gmail.com f t 2025-06-04 14:04:36.104278+00 +1078 pbkdf2_sha256$720000$U04H0GFff8bmvIb6NpbUET$uhbDc4jjWLhUhuNH2E8CEVxHt8oWOQb4VHTVzOdEzPk= \N f claudiaamarilla72@hotmail.com f t 2025-06-04 14:48:41.920476+00 +1026 pbkdf2_sha256$720000$KItQiWLpLSuqhzLx9PeEJI$AI7zeJZ7JSw2SnRlaEMdf4J6HO22FMMXuU/v++7351M= 2025-07-29 18:18:05.452184+00 t Milagros Milagros Quintero milagrosbelenquinteroarias@gmail.com t t 2025-05-27 20:12:28+00 +1080 pbkdf2_sha256$720000$cXiFwjKi3OgiGSOUDKsj2J$PDEkocDFa2V3e8Xyt3a1ttL53fUDzV4yzyNGERdUBqQ= \N f silraffe@gmail.com f t 2025-06-04 16:21:30.437423+00 +1081 pbkdf2_sha256$720000$tbuNoxUgRTvmbhsdYjxCJF$INXJNXHpXPcaZqoaqRZww6pY+AQL+KssG45JEMQlbSs= \N f andreadulzuras@gmail.com f t 2025-06-04 16:31:26.720358+00 +1082 pbkdf2_sha256$720000$jZiOgm7O2pTxOFy4Jwa8hg$YFdnxYKL1ILD7ULGhHpKB7CR7bB5FWnFk3832Ri3Cf4= \N f mariposamorfazul@hotmail.com f t 2025-06-04 18:10:54.838904+00 +1083 pbkdf2_sha256$720000$rf88aseEfmQONkP5KH2Noj$GgbEg4kIneDh8kyeWaEjy8cwKtzTid0DpiNVvLlTeSg= \N f camila.salgadomondaca@gmail.com f t 2025-06-04 18:34:18.251058+00 +1114 pbkdf2_sha256$720000$ToEXkchIn7NDM3UF5LnTpS$k7/cXuFYpwZofqSzJd8x8+q/umpRYLz7JHISG5r/i0w= \N f maitenasalvatierra@gmail.com f t 2025-06-08 19:40:14.373746+00 +1084 pbkdf2_sha256$720000$bAdKBKcqiwRsiuVKS1197d$9vv7bKC9i90pCL6tLkEXfzcIsE45PnHrJ6HBhfeGdes= 2025-06-04 23:43:47.087161+00 f rosaconte@gmail.com rosaconte@gmail.com f t 2025-06-04 23:41:10.550691+00 +1085 pbkdf2_sha256$720000$vF0EFgM6zPoVOYdvemW0Pm$gKH08QDK/WCK7nNXkMc8+xYnuMWjWpF1K96Tmide6VE= \N f elsigno12@gmail.com elsigno12@gmail.com f t 2025-06-05 00:23:35.628574+00 +1086 pbkdf2_sha256$720000$qbXneGFCU1KGIpwhm9YKKg$hPO93kW3kl8QhhOGDu966XQcS64f+M9uyVshy4zB99w= \N f ghiglieri.alexis@gmail.com f t 2025-06-05 13:29:32.646004+00 +1088 pbkdf2_sha256$720000$5aPZzrlQHzOBDn87rlBrY6$3FKc2JX2i+TS1uGXFhydimWDBOsTZr1E0javOjPhBus= \N f alejandrarebagliati@hotmail.com f t 2025-06-05 15:21:49.903143+00 +1089 pbkdf2_sha256$720000$v3LndFOciTHnNwaR1yMGbj$0irmbStLwKLpZxDIO/0lqwaV4gTkX3p518nTJUpyvwI= \N f belescudero@hotmail.com f t 2025-06-05 16:04:59.657606+00 +1371 pbkdf2_sha256$720000$g0EszqnK1HJ5PohKjZib1N$zcjOrtyWDcKWYXKCimkqaDEFinbCARBFXpoXkVm8Sg0= \N f patogaray2016@gmail.com f t 2025-07-14 19:54:40.235045+00 +1091 pbkdf2_sha256$720000$81tWWXYmQA5eWZ8G54xsEL$WenXuiy+EcZh4nXAhRNG3ITRkowOVl109H2Y1F8OKRA= \N f drudniezki@gmail.com f t 2025-06-05 19:14:18.674027+00 +1092 pbkdf2_sha256$720000$lVO4i5H5e4GzucGDuxf8CG$NHy3+MLGGYdESIgdBCUivk3c21x+RhzEwygzkrBnY8I= \N f codaro_ma@hotmail.com f t 2025-06-05 19:27:39.715934+00 +1093 pbkdf2_sha256$720000$VpgPURpHNvBE9vuG163LUF$YRlZ+wl6Y0O0ITd+RU/cOeyImvaOhflWy2/UELTnJ/A= \N f ivversilvia@gmail.com f t 2025-06-05 19:41:20.315711+00 +1094 pbkdf2_sha256$720000$422RcwOyCXCcvQxFVP6Z3O$YDm5cQtRKLDRBHVwfbp8660IPEJRcNTR1yZGvMDM3ys= \N f lucerati15@gmail.com f t 2025-06-05 20:52:40.3626+00 +1901 pbkdf2_sha256$720000$6VF0AFdwO8zfl1KkXdiayO$XYaIzoC0pXNPByvB5FjrtMPqyAKahT2d2O9DMH48swk= \N f abasemilia@hotmail.com abasemilia@hotmail.com f t 2025-10-22 12:24:41.958074+00 +1087 pbkdf2_sha256$720000$BAMl2HEaSGVQdOMVYw0q5P$Dc2fDa49MEcusKSP1pqJYYbHKLq5Fi67FwJk8adZCYQ= \N f jesica_schlofer@yahoo.com.ar jesica_schlofer@yahoo.com.ar f t 2025-06-05 14:26:15.563517+00 +1095 pbkdf2_sha256$720000$YNqOINir0Xb3CFDTwcONRK$lyzkzvPycyuMFFohudti7D9KfzPx7XEAhVLz0xmVq7Y= \N f florencia009@hotmail.com florencia009@hotmail.com f t 2025-06-06 00:28:26.695977+00 +1100 pbkdf2_sha256$720000$UzzPHh72dJNrIcz3SyKrTw$3UB91EL+doQRQjolBmf7kpKJQdbXqxQtOEihPYAybk0= \N f repemdejaah.87@gmail.com repemdejaah.87@gmail.com f t 2025-06-06 17:48:14.814994+00 +1101 pbkdf2_sha256$720000$LnJhbDHH30Ccv5RpLRmak7$rz4u68XB868dwZj0q2tjJh5G01WUV3jlbDBPaH2cf/Q= \N f Fernanda.Garcia@mirgor.com Fernanda.Garcia@mirgor.com f t 2025-06-06 17:55:19.793226+00 +1102 pbkdf2_sha256$720000$BKTh90lvTV99n44ImkYCfS$R7LN9m0txu71tsct4O6DHdRrj41yIrkJAY+4NVXXCRc= \N f Fernanda.Garcia@mirgor.com.ar Fernanda.Garcia@mirgor.com.ar f t 2025-06-06 17:56:53.638259+00 +1103 pbkdf2_sha256$720000$VeaWKbJ61k3jHMALjIjASn$U3rrkV8D9NNPvLDlq2GdosdoPug5VQzCGaAGxbX5yxU= \N f nadiamm8@gmail.com nadiamm8@gmail.com f t 2025-06-06 19:10:57.645584+00 +1104 pbkdf2_sha256$720000$iYKWZkv94WVEqlls3GsTsQ$ufRksdbz8bITn/XVJNVcv7ergQXdUtR7MKJOx9BKLWw= \N f hannacmariani01@gmail.com f t 2025-06-06 20:13:55.213697+00 +1115 pbkdf2_sha256$720000$mwiq8ieDfOXuYMVn1dvhWj$Wc7jFqPBFPayKjuNqKDlYjXo3BVhWA1BJpEeQo7dXUw= \N f cmirandanunez@gmail.com f t 2025-06-08 19:45:17.957629+00 +1105 pbkdf2_sha256$720000$E5hy5ohXum9yEHIJj6IsJL$VYdiVUeDjNWi2AP0FZs5PZxcaixvcYEMCGe4WSpXEYc= 2025-06-07 16:55:32.468966+00 f ornellamassoni@gmail.com ornellamassoni@gmail.com f t 2025-06-07 16:54:39.864172+00 +1106 pbkdf2_sha256$720000$BjSP2RkEEu37hgsf8tbVQ4$ZPNKJ1rUZRYIhhhHpyRun03jnfZ8ufSIxYJ5vfd1X3s= \N f edysangiaoh59@hotmail.com f t 2025-06-07 22:14:22.126428+00 +1107 pbkdf2_sha256$720000$UcwzMMlHjy4RpqwLFI8zyT$NTMVhVT8PhQgKY4wPLwJebK2aZPnAOQqKgR55G5wPKQ= \N f ellenquero@gmail.com f t 2025-06-07 22:19:08.514648+00 +1108 pbkdf2_sha256$720000$Ub2Iw2c7eIOmxUnquMh1ZS$udN7Rs5Zn+T4l7J/ZYw4TWJZI2O0i3Wrp5+8wRuP+2E= \N f joelmiller8702@gmail.com joelmiller8702@gmail.com f t 2025-06-08 00:58:30.990516+00 +1109 pbkdf2_sha256$720000$HGYJsZUh5I64YnpQ0BuEpy$9Al+648morwm7WVKIQsA66ciIof/sBRB508Bx5ygIJk= \N f fsrq26@gmail.com f t 2025-06-08 18:47:04.91539+00 +1110 pbkdf2_sha256$720000$pjITtPHxMi7qT4X0BiXR0d$NWnC+wCWCNWDrPE0lDw2D+rNALs/cBkCGguA5CPna70= \N f florentinagambettaz@gmail.com f t 2025-06-08 18:58:30.650614+00 +1111 pbkdf2_sha256$720000$7VWGtttLelETwKr4hfU9Zj$0hV/NA6fiU9EU87PQSQnrC/zXuA5uGx3itlgm770eLw= \N f valeriesteriolouzao@gmail.com f t 2025-06-08 19:18:30.332217+00 +1112 pbkdf2_sha256$720000$izMUsTCWvb6dD7dTivCKf8$TZgoBxphzvDRSCliq1NjOsm8krFH5iNYzLZo3h3Qfoc= \N f mirnafreitez@gmail.com f t 2025-06-08 19:21:59.953783+00 +1113 pbkdf2_sha256$720000$Lj0jjWaaWegjaUjbj3MtgQ$oW3DGdtEZutu3TPb3MwyUptedbFkbnP5Xw2gZ9glyAc= \N f alandavid9502@hotmail.com f t 2025-06-08 19:35:14.420627+00 +1116 pbkdf2_sha256$720000$mppTa9Fw4s0ARro6MXN2N6$f7U+ES+YKKgb3Omc5VcPL/PYQYj+5/j1cI8SDZn6Izk= \N f urrutiarey@gmail.com f t 2025-06-08 20:29:31.346364+00 +1117 pbkdf2_sha256$720000$NBKdOvKVFjP4WectZSrXPS$3F1JJRtuB8J2EX9MizIQsBz3ncSFZJClvN/N7CpPGx4= \N f normabruzzone@gmail.com f t 2025-06-09 20:49:10.2812+00 +1120 pbkdf2_sha256$720000$NZNiARzr1ckig7FKL2fi7Q$Hw83W+sMGG+Cfp1ZBqE+vmptvxBRQKqtvMXMZlJWwIs= \N f aguirrelauraagustina@gmail.com f t 2025-06-10 00:48:36.921687+00 +1121 pbkdf2_sha256$720000$y4D43TIDBrnJHYQdvR7kmC$oKs9/Z5Mc8D9S+6L368bpDUntM+yTOmuVsfOjuxJBa4= \N f paolaalecapristo@gmail.com f t 2025-06-10 00:54:48.266943+00 +1122 pbkdf2_sha256$720000$B0eU0NUWyc4BDf1XFJEJSj$2doKKAPW8QP3fqZzo5BVCm6wUhORGr8iliHPhrL0fOo= \N f mechaalonso@hotmail.com f t 2025-06-10 13:09:40.392514+00 +1123 pbkdf2_sha256$720000$DErV5dbXgupt9s5TQFVZM5$hl+e/hrpc04qjKFrbOXOF0pupM4eA+mSuSl7Bfa6rhY= \N f rocha.alejandra@hotmail.com f t 2025-06-10 13:47:45.822939+00 +1124 pbkdf2_sha256$720000$RoZDOV1JbcTVxWoEfxbuJr$krxDSivsG0uH7A3D7R3ke5KsvwpbtUCHbU+bRnnZzQw= \N f estebanjavierrb@gmail.com f t 2025-06-10 14:49:56.308673+00 +1125 pbkdf2_sha256$720000$uYEWg7VqrGkQjFToX7OxiX$qWJMSW4tR4h9osp/gNDGTRrK3iP013axeGbXZBKvMig= \N f facundo.barboza@live.com.ar f t 2025-06-10 15:15:35.387463+00 +1126 pbkdf2_sha256$720000$3PUsXzIcImT4X6YAXCJHmz$DSL8Z9+hQS1GGM6UHAr436xjb67olpEDMSDcuAjRsUM= \N f solagostina.coronel@gmail.com f t 2025-06-10 16:56:04.717714+00 +1127 pbkdf2_sha256$720000$59EczyGtaMlXtrwCuTeLBG$/yBsmUj3QLC/ICgbmCiwPNuZEKI7RvFX3weBaLDgxAE= \N f cecih@hmail.com f t 2025-06-11 13:20:00.655726+00 +1129 pbkdf2_sha256$720000$IHzUa94YsL0e94UBnBznC1$JEfUo8fB7ODuzt5L06KephhMCkzfO2V50bNbUao5Nu4= \N f calejandromarcello@gmail.com f t 2025-06-11 15:22:46.193737+00 +1130 pbkdf2_sha256$720000$G4RBDVZOWh3UMpehWuq8D4$ZIz9WDgyPow2xpLP/Ox6RoC3Ed5YojBzSx3wUg9yevU= \N f florenciarumbolo@gmail.com f t 2025-06-11 15:44:07.832996+00 +1131 pbkdf2_sha256$720000$4Eql0GaxS7FBMHoml0Aejt$YeUPFCg9UlAd/OAB9EhcKl0SJrtHlXHz3E9pgytbrcM= \N f vanesadiharce@gmail.com f t 2025-06-11 19:24:04.905808+00 +1132 pbkdf2_sha256$720000$VTzvZVLnJg2p1BdQ1CoQTb$jgv436lldl93EmsXFhXi+N8AEDaOf3Z5MzNjFQic2f8= \N f martaisosa@gmail.com f t 2025-06-12 00:38:12.425602+00 +1134 pbkdf2_sha256$720000$PvGyRkdgZlxNzVsB6bkN15$4g47I++UBG80f5TPCZMHXhkfASt+YW3iQFnn0ABXriA= \N f villanuevamf29@gmail.com f t 2025-06-12 13:22:01.515215+00 +1135 pbkdf2_sha256$720000$KSvqprZ5dpCxpNaDsIK4j1$LU7c9oNzhlAsOxDa0xuVtjSrMo/vF/FqR/lCYEyyghc= \N f laugonzalez123@gmail.com laugonzalez123@gmail.com f t 2025-06-12 13:46:07.38704+00 +1138 pbkdf2_sha256$720000$iVAzrx9VnagfRVSgl2Jlog$FOnqNdsyzs+mD84YKdPq0HWLvSMZC+VQPNuih95UoxI= \N f aaariel.imasak@gmail.com f t 2025-06-12 19:11:40.443341+00 +1139 pbkdf2_sha256$720000$YANHEBEgxdkFyCEz3suI0Z$0p8vTLzylYLCa1qFkheuTuTuDBguMvalGi5Q52Z+mV4= \N f johanacaseres92@hotmail.com f t 2025-06-12 19:39:19.356938+00 +1140 pbkdf2_sha256$720000$jtSPwEUQ78fEvXgMHn4lr8$f+D1uv8pqdOLcCl2BS27FQuBVW5VpgKvktC9v/mg1xM= \N f fuentesanaliav@gmail.com f t 2025-06-12 20:23:45.193043+00 +1141 pbkdf2_sha256$720000$bAHMexcIeomSooSw4ANAk7$Fe5/oi5IN9LcNo1ZGosl/izEN2z6/GWJJzGJGqmbnrc= \N f riverosdaniela32@gmail.com riverosdaniela32@gmail.com f t 2025-06-13 00:13:53.637568+00 +1142 pbkdf2_sha256$720000$AOREF6ndmWc8Q7qpXHSQiv$r79CeFpOerBXUGrw3JLI74qDkjulIBbjfl+mHp46I9U= \N f emilianopagella0@gmail.com f t 2025-06-13 00:20:38.245005+00 +1143 pbkdf2_sha256$720000$abtEfv4KzPEDzPZQo8oqSg$Q5fH44RK/EGjE949Nb4TBVo5j9sYN+qS06ONa4CiZb0= \N f cecifigueroa03@gmail.com cecifigueroa03@gmail.com f t 2025-06-13 02:58:21.504712+00 +1144 pbkdf2_sha256$720000$xKhJ9Lj4nSIvy5mPvOkecm$bKfpjcaLdR6uHjgAsvGUlBLIlWQNXNMW/T9vZPkiqRU= \N f jackita2107@gmail.com jackita2107@gmail.com f t 2025-06-13 08:49:01.862981+00 +1145 pbkdf2_sha256$720000$bxYXejyEoq8n0wTv5pI3Wl$Qu+wAGUp4oZJ/rnel/VKbFRWesUBRaIABbgZfDHGJ4k= \N f inesfernandezm@outlook.com.ar inesfernandezm@outlook.com.ar f t 2025-06-13 13:41:20.26762+00 +1146 pbkdf2_sha256$720000$TLYLnq74wge7O2Ke379QTz$C1lU2ahDcH4Iyo5Oid50EMyXl1STSXqBemmmV0kqAeo= \N f marischiavoni333@gmail.com marischiavoni333@gmail.com f t 2025-06-13 14:14:28.673533+00 +1147 pbkdf2_sha256$720000$CqH1dRmZRCDLNyt0r7lK8U$knf88D0TJkKZBZr/tCv9mnqhHqoc6T+QZfO3XxLqtGk= \N f mc@gmail.com f t 2025-06-13 14:43:04.911956+00 +1148 pbkdf2_sha256$720000$2xxuN8XVvkYG4OYl1Mm33U$asNXgN/SfqJ0+85R49/rIIP1XQzXfH1Wu3mIG6w81sA= \N f oade1220@gmail.com f t 2025-06-13 18:28:21.597425+00 +1149 pbkdf2_sha256$720000$k6wKpHG3GX4EnrYtHwSWzE$KM8RlCSLQa25oB5xSB1y3M1QGru72LZAdKA/FemFTy0= \N f gracielabeatriz662@gmail.com gracielabeatriz662@gmail.com f t 2025-06-14 16:39:51.524073+00 +1150 pbkdf2_sha256$720000$35RXWjWLcWrfg4VGKLNijK$52IzqRN5uj7iiaFUP5YM0yJEOk2uB0dx7HBJ3dqYP5Q= \N f joanafernandezcastro@yahoo.com f t 2025-06-14 20:39:59.603231+00 +1151 pbkdf2_sha256$720000$4GoDkOgYYGdioGxCZGRvVy$8zUv4lNorr46ue3ZF4ufrwZ7/1qMSgC+jsrMWxN8qYI= \N f patocaramelo@yahoo.com.ar f t 2025-06-14 20:49:17.544968+00 +1152 pbkdf2_sha256$720000$um1uPCiNcdjZLEy4gw6VCh$GrKeRP2L4rwp2YLaGkw59soWP3JvQ3TZGZhpagbO9cA= \N f mcgiovannucci@gmail.com f t 2025-06-14 20:55:03.17395+00 +1153 pbkdf2_sha256$720000$03pfRpUk7iAhE3YiDrYUwE$0p6TOrxlIlODxCBzhrS710eGDMy9WQm2sl4/jbxbJu8= \N f jairo.toledoo@gmail.com f t 2025-06-14 21:03:42.55148+00 +1154 pbkdf2_sha256$720000$2XVOM1DJHAjhApXOM7W6FK$wxbnTSLImsY5r3KZSpD6feeX+njPmPu+6cXOQSa9ZQs= \N f fmescobedo.28@gmail.com f t 2025-06-15 17:27:10.174251+00 +1155 pbkdf2_sha256$720000$FwAN9Fcy9QM9arUHHF1CtY$FS8hNqoWAS/8u9jq1lN0ZRkIQinsNG7gXW790mXlenw= \N f majo7965@hotmail.com f t 2025-06-15 20:04:51.524601+00 +1156 pbkdf2_sha256$720000$IuAxjgcXNwwnikQlUquV56$yTmuR2yNWP1B6FYWrMTChX0VDI6EoTcDzgqj9XeM7YA= \N f vickybrandani@gmail.com f t 2025-06-15 21:20:40.067061+00 +1157 pbkdf2_sha256$720000$tWW63xpvoeZYLPbUG45QXJ$VBqAqS6cZjy8Aw5TudAHtudMd8lMPua6hGn/OiiGgn8= \N f santiagoclinaz@gmail.com santiagoclinaz@gmail.com f t 2025-06-15 22:48:09.974718+00 +1158 pbkdf2_sha256$720000$cimu4JxKjKTKshvJGfLhzA$sGIDuHcz5E6JRZ9UCh1Uyf2AzChKv5iXuq4hJZTMsLc= \N f xaphira63@gmail.com xaphira63@gmail.com f t 2025-06-15 23:06:07.516969+00 +1159 pbkdf2_sha256$720000$kGqKJEwb7bOouYnr2Pz6LA$VN4lSIsTJyZV9ayt2gqPYXLjnVRMJH6le1bF0npAn7c= \N f nadia.casa@istea.com.ar nadia.casa@istea.com.ar f t 2025-06-15 23:08:10.918702+00 +1160 pbkdf2_sha256$720000$hvaHQ5STLibOtLDRgcYYg5$e+mIunTwmfhzvm68bbk9yfTucoZEixDBBEdnTx2wNX0= \N f paolaarss22@gmail.com paolaarss22@gmail.com f t 2025-06-16 15:18:46.800518+00 +1161 pbkdf2_sha256$720000$Xqe2Ds2J2BM4ZP7U6eWwaK$A2iZD0Qzv8CSdlMCB1AOglb4fBv+N+4sDwDAiNO/rCc= \N f solana-grandoso@hotmail.com solana-grandoso@hotmail.com f t 2025-06-16 16:43:18.104086+00 +1162 pbkdf2_sha256$720000$3ba9YosuLrIT8jVKfpRTmU$VJ3hHPxTRRM7QPjuVzkKRs+Ga6W82MYH8lnIanfCYaY= \N f susana.venditto@alvear.com.ar f t 2025-06-16 20:01:02.191071+00 +1163 pbkdf2_sha256$720000$oDqOiYlL81iPBpZk6FnHKt$k/dge6ciV+LZARAy7Xfv7u31LCflK+mCyb7ITz5DRpE= \N f aguilarmagali@yahoo.com.ar f t 2025-06-16 20:08:07.316557+00 +1164 pbkdf2_sha256$720000$p6RiR3AlMpkMP0lcAqMSw4$gOMZ+7SVSjVFa5U9r645KIwVW8xwAZw7Cu6bLjd/vjw= \N f palu.f@hotmail.com f t 2025-06-16 20:11:02.043427+00 +1165 pbkdf2_sha256$720000$NsyalVPOeDHVmaSY9HGsgB$GKhpgwiNlf62iDQ8ya0bTBeubeZ9I3ytBMyB6prLnEg= \N f cylonc@gmail.com f t 2025-06-16 20:17:46.562125+00 +1166 pbkdf2_sha256$720000$PDOHUvG0w0OB6slEM0qAkE$x4fUQIlXh/xUZJoZlrrFMaEt1mPRorapMpJedGEnXgM= \N f carolina.thumim@gmail.com f t 2025-06-16 20:20:31.329713+00 +1167 pbkdf2_sha256$720000$w5aLFhI7qvfwgoJoRqLmky$FCZSjluBbnMqxbf64syEbgHsh831eD8SkHtO+IaHrnU= \N f nickteperman@gmail.com f t 2025-06-16 21:47:05.39001+00 +1168 pbkdf2_sha256$720000$6TMfH4XPKfNJFY3G4oY9da$XPY6Vff5bzz9gOVC9jFYOlY6YkoEXzZelHffzByAqjg= \N f onaterapiasflorales@gmail.com onaterapiasflorales@gmail.com f t 2025-06-16 22:41:11.931242+00 +1169 pbkdf2_sha256$720000$TMktY5qiRqBx2ahKVhVoAp$z7AuGYJK2XCU7sYo23YagHv7kcOAjEXQrxtZZash7X8= \N f violetachauqui4@gmail.com f t 2025-06-17 14:28:30.634859+00 +1170 pbkdf2_sha256$720000$v9c3oXohtDd7I9g1mANLem$sacPcCdsVaEqO4tyvlZ20uBFgloXv8ZFueV4ojkWxPY= \N f mendozajesica2811@gmail.com mendozajesica2811@gmail.com f t 2025-06-17 14:42:09.842647+00 +1195 pbkdf2_sha256$720000$Hsa0RVhpWY0AAeB0ZKg4JS$ihXWHUJaK0VLA6UHlZ1O6nw+rn1eGEUGGXsm3OEco4M= \N f hermiraglia@gmail.com hermiraglia@gmail.com f t 2025-06-19 13:53:44.041498+00 +1171 pbkdf2_sha256$720000$A8QMc9UozS7Ot0M5GD7Uil$p6Lo0WOflgVaQiYoMse7AvSKFz3I2107sYZSDvVUzyI= 2025-06-17 15:20:50.85566+00 f maria.giovanaz@hiba.org.ar maria.giovanaz@hiba.org.ar f t 2025-06-17 15:19:20.069672+00 +1363 pbkdf2_sha256$720000$KC15NnBopgFLAntQJwk2GI$sxe5UuLBYMlnifsQsqzx8TfebuKVl6ewHMlRYKBeF0M= \N f malviale82@gmail.com f t 2025-07-13 19:28:06.58081+00 +1173 pbkdf2_sha256$720000$Ey4tPBJxT6eZwwLmADNbXG$VNKNklbaq39f6Hw61RILIZkUGtkk9uIxkm4YOroNsyc= \N f laukbarros@hotmail.com laukbarros@hotmail.com f t 2025-06-17 17:52:03.859089+00 +1174 pbkdf2_sha256$720000$y2ZZo0cJ5vLPiyDomDdiol$ZyWnecld3Z2ZNaulV8HIxFpy1iefJtkIdNvzazQWBW4= \N f tuti@lookoptic.com f t 2025-06-17 20:43:15.201358+00 +1175 pbkdf2_sha256$720000$gVSmqGEcDA4JmovFkWigp4$eKgtrQeg2YjDflfvjoz0njamJ1cfZ+c5w4O0yK9Ndtg= \N f maria.giovannaz@hiba.org.ar f t 2025-06-17 21:05:19.290976+00 +1176 pbkdf2_sha256$720000$xRRmj8kovRBRZRS2Wlb3yb$PM1LdR19IAbp/qIhK7h1jfmDYHlUo0hS1YGUS5wYVTg= \N f lobosheraldo@gmail.com f t 2025-06-18 01:17:42.702776+00 +1177 pbkdf2_sha256$720000$MYNVOaLlD9wZDDIDm9NIIn$NrrnCSOvGl2lXkmwe+ICcle6OWAm5VfPSjJjAmjsfgs= \N f mariana_b_horn@hotmail.com f t 2025-06-18 01:33:38.107477+00 +1178 pbkdf2_sha256$720000$tp2wXQLk96JrdLDzjl1qls$8BMzmC2nCHKmbWn9Y9GVgVM5zpyfqGdriCtg3V0lapA= \N f isabella.francobg@gmail.com f t 2025-06-18 01:40:59.071825+00 +1179 pbkdf2_sha256$720000$cvC0DdSyABspheX1WUoKGr$VOkhbggMKy3BlMJH8SBur9eFe8JhI6aKfUfBDJp3yAc= \N f vanu.med@gmail.com f t 2025-06-18 16:23:24.619346+00 +1203 pbkdf2_sha256$720000$auX398EbvgLhKa8RMBHLPd$axbgQYDa6eiDwrGwncamdBFLRB1J4+V2YUklKEcfhks= \N f soofividal@gmail.com f t 2025-06-22 22:03:02.859338+00 +1180 pbkdf2_sha256$1000000$YPR1BEnxavUbNRgUKHkDO6$UOEeBvIA4uu/n6DuaCCGXThJYv+WjLpO23fl9gPwaNk= 2025-06-20 02:14:19.010919+00 f ddirisio@fvet.uba.ar Daniela di Risio ddirisio@fvet.uba.ar f t 2025-06-18 19:40:14+00 +1184 pbkdf2_sha256$720000$Xp4tOS1AOjgu4m3U0z3l1v$ysvHBDrzHvi33wVu9dKgsP9P+3g5q8fEo4LoZkB8JL8= \N f melaniecuestas@hotmail.com Melanie Cuestas Canepa melaniecuestas@hotmail.com f t 2025-06-18 19:43:26+00 +1185 pbkdf2_sha256$720000$LI9KPtnRaHUkft53GpkU0N$sElOwuA0/IFUmLPIVqeEji2xl+b5IWfuR4J7Orvw83U= \N f silviaanacampo46@gmail.com Silvia Campo silviaanacampo46@gmail.com f t 2025-06-18 19:44:05+00 +1186 pbkdf2_sha256$720000$wn5DFQWbzN9EC2Np2Bblnz$Mtrfla9YKoAmwYpEOl1axxuPbmfQod7NzTEomESzMh4= \N f vethomebuenosaires@gmail.com Paula Cleves vethomebuenosaires@gmail.com f t 2025-06-18 19:44:45+00 +1181 pbkdf2_sha256$1000000$0CufraqbqdUOMgS8H6JbSn$pU3bOKrS3zFCnpiuTuVL6hjA+GnVV0mE9vWWBkb+Hrg= \N f estudiosecovet@hotmail.com Paola della Bianca estudiosecovet@hotmail.com f t 2025-06-18 19:41:23+00 +1188 pbkdf2_sha256$720000$8ICCx1A4JkiDsiALie3NiB$FmorlNSpmEeQu6cfYBOcr+NYjtdq/vwbcgDtwS6iV58= \N f time007@gmail.com f t 2025-06-18 23:50:40.991955+00 +1189 pbkdf2_sha256$720000$9sgXeAHS5KNsLNrzPTWCx1$xkFhca5jY4az0aRTKnEHwps7Ig5vhCPdQfAF/ZimZ40= \N f alejandrayaelbecerra@gmail.com f t 2025-06-19 00:09:13.520513+00 +1190 pbkdf2_sha256$720000$e7iAmDYRZAPCuKhFXGJ4yZ$pz0HHVRq7kyj+f2rn+FkaduPBKoprf5CjvXYQDR8tu0= \N f mariela.nicolini@gmail.com mariela.nicolini@gmail.com f t 2025-06-19 01:33:49.643936+00 +1192 pbkdf2_sha256$720000$4AVWTeXdzuFz9kZqpeCrC5$k85ebGXdU645kfoAbPWoy/UlgWxxw3cVwE98Z/VH80U= \N f martinpires@hotmail.com f t 2025-06-19 12:43:53.838704+00 +1191 pbkdf2_sha256$720000$MktTDDzNq3VItcfLljkOGb$0dusWdRI09VsNKtzi7nDYiZ0psA3YBkXvS3sHF7hwkw= \N f patofain@gmail.com patofain@gmail.com f t 2025-06-19 12:43:37.631783+00 +1193 pbkdf2_sha256$720000$a42SZXEHNNZyTnwXSfccLl$qA+eZCqOBm8Mq1mfSKK1wZERZVM/OpszkfY3g1STyBo= \N f ezequiel.luberriaga@gmail.com f t 2025-06-19 13:13:22.269304+00 +1194 pbkdf2_sha256$720000$aJEgpU0ujbE857tR3jskgU$nS4If/bgXdjWUT+jGuYEOv7we+5Zndj7i8IbvpnSvuw= \N f lsusanagh@gmail.com f t 2025-06-19 13:22:36.515263+00 +1204 pbkdf2_sha256$720000$ue3gPWmfF0JOF7FnGfib0f$04PCZVQiWdmJmDz3avFqAsE7GRfNl2bF6Y+X5KbDtPQ= \N f kroecksol@gmail.com f t 2025-06-22 22:11:29.446487+00 +1205 pbkdf2_sha256$720000$so5cVGqKFAQdj9dmQF5i0V$HuO/AweyTkfmOu04WBgBd8hdROJnnWIlPO+EnQNWAro= \N f everstmontero.m@gmail.com f t 2025-06-22 22:16:19.506313+00 +1196 pbkdf2_sha256$720000$K5vGYFAsahfFbPsvc0Dfak$dtsMq1/0fAQukYrG1JiR0xSVo3vu7auhU6TXCAuLepo= 2025-06-19 18:26:23.945423+00 f desiree.dddg@gmail.com desiree.dddg@gmail.com f t 2025-06-19 18:25:29.15712+00 +1200 pbkdf2_sha256$720000$5RsgUU8JHTAuOChIufQh11$KDsJ3QdF8kq6QhvaRJkdR0jSpuR3w8Sit1L5UN1zAd8= \N f alebrittocruz@gmail.com alebrittocruz@gmail.com f t 2025-06-21 21:54:26.262067+00 +1198 pbkdf2_sha256$720000$rGUHHOC3EpPlasW6oucYFU$QkjMNxOpMdgVMrUmR0ew0WA+92/XEu1NV8515tukQv4= \N f martasilvanamilagros@gmail.com f t 2025-06-20 21:03:34.508709+00 +1199 pbkdf2_sha256$720000$uz1AwP11pqKhFNbSqvCX0g$yVsKMXrM9+tr5k1u4UrVFnCsCrMwAy4AEEsh5Q43h/0= \N f maria_sartori@yahoo.com f t 2025-06-20 21:06:57.71348+00 +1201 pbkdf2_sha256$720000$yJjGh6JdhA1Slk0unUb8Pn$DRLI+09XM9TZke4iJ7a8emJoS2EFQHOEJ/2lG8HXoso= \N f cristabeltabriela.m@gmail.com f t 2025-06-21 21:59:25.342139+00 +1202 pbkdf2_sha256$720000$cFRy8n8r21aFym6zFX3QCI$a/YV3WCdC1qr4UAOWxGo7vMf6GVozoFsDzIOrfPfaQ8= \N f Carolina.curzi@egfa.com.ar Carolina.curzi@egfa.com.ar f t 2025-06-21 22:04:56.663718+00 +1206 pbkdf2_sha256$720000$n8huivIGj8NIg3sW6g4Tk5$5dJ4/UQbM2YkLNCym8vNY88kHIMMNUB7tJ+DAG07/cY= \N f c_yaki@hotmail.com c_yaki@hotmail.com f t 2025-06-23 02:55:39.033821+00 +1207 pbkdf2_sha256$720000$H0gkaCeYGLhuiWCIkS5xCU$TytUlvmAPrdHO/K+2qpdZIwoJSk9gs/gtcNOBxpbWIA= \N f moniquezonasur@yahoo.com.ar moniquezonasur@yahoo.com.ar f t 2025-06-23 02:57:41.629627+00 +1906 pbkdf2_sha256$720000$BEsjGcBAPDTrajwSTFJJu8$ixGMRbUBePdCsvpMiUQoJq7PNn0XoRJPwkKzPFh6n2Q= \N f hector.peretti@hotmail.com hector.peretti@hotmail.com f t 2025-10-24 13:59:26.55817+00 +1209 pbkdf2_sha256$720000$Dheq956KunFTFDE8ugEk8g$2CJTjg8IvgJ1z/bgLzC3UUAeoQtkAW0J2gCDw/VJMnQ= \N f betaniagiorasi@outlook.com f t 2025-06-23 14:01:16.358873+00 +1210 pbkdf2_sha256$720000$Lvp74Fbi6QO8gGl0op2XY7$K+YoOu8WvkZ6oNO2XSdXuvA2TV3cBdgnOh7l365xjWQ= \N f marec25@yahoo.com.ar f t 2025-06-23 15:25:50.340681+00 +1917 pbkdf2_sha256$720000$4WhBnXIELmK7u2LYF5DFFO$WDUfp3FoVaPePltlHhBo3cAmCkGCxn4xIPUH93Rw03c= \N f tamitedini@gmail.com tamitedini@gmail.com f t 2025-10-27 21:08:13.739288+00 +1182 pbkdf2_sha256$1000000$VFDmd1sFnRseez4kx0HVV2$ayjGeosgHWPkINf1JhnZ/kc5Sb5Fj9KADO1teqQZbXY= 2025-09-04 11:50:27.142812+00 f paulakumabe@hotmail.com Paula Kumabe paulakumabe@hotmail.com f t 2025-06-18 19:42:00+00 +1187 pbkdf2_sha256$1000000$Yz8KkMKmLS3sEaOP4GnAOu$3F7hnQThah9ep7Y5u679pbxpghPKsey8MoqSSftO6VE= 2025-08-07 14:32:44.864907+00 f nalcasena@gmail.com Nicolás Alcasena nalcasena@gmail.com f t 2025-06-18 19:45:19+00 +1241 pbkdf2_sha256$720000$lbakaqwNx4CEHDQ7pkI1lz$FRRCyDiUdG10/y8+hi5LMv7bNsqpsPNyWCcAlBOVrqY= \N f tefy25.ef@gmail.com f t 2025-06-27 18:37:11.300104+00 +1242 pbkdf2_sha256$720000$4DypWVLMxvQBCXHsgdaAzF$I8a5eRofWH64w4UK4pw/XpQKqznjseb4Y8mO3UJTszU= \N f julietaartecastells@gmail.com f t 2025-06-27 19:25:08.713175+00 +1211 pbkdf2_sha256$720000$xlKIo7wXOsIfA02oRvI6kg$+R20vqG7fUSpP3uKxmk369MV1Urp3grosDTKCSOlml0= 2025-06-23 17:58:43.342798+00 f nbardeci16@gmail.com nbardeci16@gmail.com f t 2025-06-23 17:53:19.230724+00 +1364 pbkdf2_sha256$720000$Knb74bC7goQIegFZ2EwX1d$eRpqhXjOgDZne0Sc9Gc2sw214jcoTa0zXrnRX0ziaR0= \N f mlmedeiro@hotmail.com mlmedeiro@hotmail.com f t 2025-07-13 20:18:45.75722+00 +1244 pbkdf2_sha256$720000$vPgZ8qGU9sCe60ChmFODCM$Y/iM9DtKr4CACL7Iaehn7CkyaY3wWVHJ1nXyaAAWRL4= \N f calderonviancha@gmail.com f t 2025-06-28 22:27:33.467839+00 +1245 pbkdf2_sha256$720000$V1nGzkP3WYfyccpJAjoZsf$Pt6zmERng7MAyE4XEDhIdeCUE6J9fgPKklzM+GiVrJc= \N f virginiacroatto@gmail.com f t 2025-06-28 22:32:01.819638+00 +1246 pbkdf2_sha256$720000$lOKrw43yGPtDCrnVvBBXd9$YwgFndtlYNG8CCKrKmiWQfNTNMAJjiigj4OlqeT59w8= \N f gabriiela.mi.vi@gmail.com f t 2025-06-28 22:36:18.597961+00 +1243 pbkdf2_sha256$720000$sERrqtNmuLhzh5xvzw3CYm$Ry8jCC0/cGEJQEFjhusQxmAgnvDzDoK+eXmgxt3EbWY= \N f anna.alarcon.97@gmail.com anna.alarcon.97@gmail.com f t 2025-06-28 21:20:27.504752+00 +1212 pbkdf2_sha256$720000$eOYOdslKDBwrRxFyRRF5aI$bui2Z+gEAQ3pTxzt/K739Hi6a9g7h9uRI4gtR04ISrI= \N f mariees.tsm@gmail.com f t 2025-06-23 19:36:42.283068+00 +1213 pbkdf2_sha256$720000$Ylc0heq0JFS6L52k9pN7D2$gR/unftMciXXUKbvHJqsHH712GgMNNJlJdCID1+sHNo= \N f piacanedo@yahoo.com.ar f t 2025-06-24 00:12:26.0792+00 +1214 pbkdf2_sha256$720000$V3aIcnJGztkhCG4CFDR7se$c+5dwS3+t/2Dyuv6Vyilj23qhwIzDVF3W5kYFBiwseQ= \N f pauvaleh@gmail.com f t 2025-06-24 00:50:24.553524+00 +1215 pbkdf2_sha256$720000$4XdsC5uQvwccei8D4UJNPn$uRl7J3jRe/j0YjwFzMPIHca3TXVtXpXOzcTREy6esEM= \N f rosas-adria@hotmail.com rosas-adria@hotmail.com f t 2025-06-24 11:26:57.815774+00 +1216 pbkdf2_sha256$720000$YVwsDYJ37imizhr3TWJ8jO$350YgXghHg9v/3bPas0s0W/krjlFqPSnD5iX0++mUKA= \N f malenaramoshiur@gmail.com f t 2025-06-24 14:30:16.616943+00 +1217 pbkdf2_sha256$720000$ENiyy76ib5PKMBNWpNwy8N$s1cdZGheCknjyTIzr/yT/GQlbuSbf/Sm0wg2i8Ua1Vg= \N f ginarowlans102@hotmail.com ginarowlans102@hotmail.com f t 2025-06-24 15:12:39.520018+00 +1218 pbkdf2_sha256$720000$zK0Vfud6yu5YwszwQa2KxH$Dt9ql6SHuCdIb9OfaPXiuX+eBYDufKhhS31w2qk1LAM= \N f marisolsolercouto@gmail.com marisolsolercouto@gmail.com f t 2025-06-24 20:03:34.234384+00 +1219 pbkdf2_sha256$720000$Tv5IcgYbZc0edNJjJtgf7E$a8i/YQNx+FIfDyix26P81f+WOVTY5bD2RJ2Ygky9tJU= \N f marimurias@hotmail.com marimurias@hotmail.com f t 2025-06-24 20:48:53.685358+00 +1220 pbkdf2_sha256$720000$AfIryWeBm4NhtNZ7bdmvs5$yXb/+mwP+yfYAMx40tvZX8JlixyfAqaVItKYMszWZu0= \N f aclbrasil@outlook.com f t 2025-06-24 23:50:04.062736+00 +1221 pbkdf2_sha256$720000$gawWGllaZvOlcedBhRIYYD$nlDmqbol5TbwHKKxG8VEG6vaYBaxdgQYNaBkDc3uGGs= \N f emmanuelavalle3b@gmail.com f t 2025-06-25 15:17:03.79863+00 +1222 pbkdf2_sha256$720000$CqxbHK4OKm3dZ2GJbPN3B6$+7eVFsHPTPBInK9foQh4w7eGp09WGRJbWJan5KO2xtk= \N f silviamgoldenberg@gmail.com f t 2025-06-25 15:32:43.377693+00 +1223 pbkdf2_sha256$720000$6Yv7LpDmQwmlxX5ThBAnGa$U0ZTkcN7nBA1XhMpO2BsTQrn1n2p2ifisNSHFUDecsU= \N f darochastefania512@gmail.com f t 2025-06-25 16:03:29.895653+00 +1224 pbkdf2_sha256$720000$H7AiP0p5oqL1lvtK5wHbIq$NfGeGBp0NKzKdcCYgQHDutbVHXm43g4IUUo9mNWf0fo= \N f mlorenamor@gmail.com f t 2025-06-25 16:27:26.252498+00 +1225 pbkdf2_sha256$720000$h2y1MDYhi8q6F6scHmyVS2$P6KcQGLIgql0ezK5I+NHeSWZKTmtvYceSKy4F0R3474= \N f lopezmer@gmail.com f t 2025-06-25 19:38:39.053707+00 +1226 pbkdf2_sha256$720000$SobnnrUJmcdF9tDdQCEC56$SHHxnAQNfYpND/EmIRN3TAu6gq2hoA0gqR0xMG1K/2s= \N f bizziemilse@gmail.com f t 2025-06-25 20:48:30.56173+00 +1227 pbkdf2_sha256$720000$xRODj0oV9zvFbUAQoGtiqM$xY2l2j5225KNAkFgCiL9h2p6nj4Pa2ySJg8X5QvnFv4= \N f japro66@gmail.com japro66@gmail.com f t 2025-06-26 02:23:07.840973+00 +1228 pbkdf2_sha256$720000$OZnYcv3izyMBE30LjoDPZs$ujKdLVsj8xZd5udzJguc21ylfi3KLHDhvAXaPbkUzhg= \N f nacha.2678@gmail.com f t 2025-06-26 11:06:12.045167+00 +1229 pbkdf2_sha256$720000$WcJVjXHK6vhchEnKlWJUNt$6Qp74PB7HVZavKB2YFEpJmPQAt0nfVO54UcHprS0pr0= \N f lesvanell@gmail.com f t 2025-06-26 11:10:34.358878+00 +1230 pbkdf2_sha256$720000$y1rRYZEEAN2e9duWYC0Csi$iqqJBG2+Vd7+63Ydr++6drr4dvG6YXvHQWiGHvAlQhk= \N f geraldine.rodrriguez@gmail.com f t 2025-06-26 12:29:05.943493+00 +1231 pbkdf2_sha256$720000$Db9WViYiUCjoEOjnoPc3aD$dc0yDt1jZIor1VuV5+UzWYhYkYKb6uHQ6aKj3I4jj34= \N f sofiaelisanchez@gmail.com f t 2025-06-26 14:37:49.047733+00 +1247 pbkdf2_sha256$720000$NDz5VvjmgEWl7lagC8axfs$Xvx9G9MS9NrLrmR6O7IbEz7bpde8Gk1CjgpYjPe+cY8= \N f marianne_rempel@hotmail.com f t 2025-06-28 22:40:45.619906+00 +1232 pbkdf2_sha256$720000$b4MP6BvL2ROpqrcFh29jA4$njgpnB7vc4pwoYFY85KDTz8ulcvpLBcnNOKPK4qN1ys= 2025-06-26 15:37:18.767826+00 f solzii.efron@hotmail.com solzii.efron@hotmail.com f t 2025-06-26 15:34:32.706937+00 +1233 pbkdf2_sha256$720000$qkmV9rbD5nfjI5sOb3GIiC$bqttxsL85x0oq+3I25Kf+Whcgw4NjzeqvjN0UdNXB8k= \N f notiene@gmail.com f t 2025-06-26 18:46:06.827449+00 +1235 pbkdf2_sha256$720000$GoJv1AZkJrlRK80mu5avxL$BPN92Wq9YIT9cP6uFcJOT5xgy5D2x34cBad3uyinIBA= \N f lisitrejo@gmail.com f t 2025-06-26 23:48:27.349707+00 +1236 pbkdf2_sha256$720000$7RojElzqMvt17ASKt2AexT$Fg7HSiY1+zLr93O07nV8wLH6UziMYuB18narHvwKr90= \N f maynaofolchi@gmail.com f t 2025-06-27 14:01:33.536046+00 +1237 pbkdf2_sha256$720000$LIAHfgudyhQm3pCX4eIUIM$JfJYcXAq2YhFh4cc+G9IfTcTeRgJNKmZagun/tzcfog= \N f abordenave.35@hotmail.com f t 2025-06-27 14:10:29.018923+00 +1238 pbkdf2_sha256$720000$MfGREhapVUzl8BehXgH1ns$SOtFFHevTkAIyPGTd2UeMb9TD32awIjCUBVy+Q7thtA= \N f demartinivictoria@gmail.com demartinivictoria@gmail.com f t 2025-06-27 14:50:12.356758+00 +1239 pbkdf2_sha256$720000$HqpD4Y0bRJKPqitlZL7Op4$Llx/2df0eSYt4LekXNPcvz2VQ5YzUSUlJTQ1Vhi94og= \N f cecilia.ross@hotmail.com f t 2025-06-27 15:07:46.542713+00 +1372 pbkdf2_sha256$720000$qcvNvXqT1sZasAKKKFS1mf$kVtCONJYABMxUWFO/WFxbqBAusIokxaACP6onL8oUNU= \N f aterlesky@gmail.com f t 2025-07-14 20:58:35.138511+00 +1248 pbkdf2_sha256$720000$DVig5QQLxlPfRnx8ClaVOQ$zF1TEPIFSI0Go2apXX/bjxtccujm0uJhrqYnj1sy0Bw= \N f ayee.n.m@hotmail.es ayee.n.m@hotmail.es f t 2025-06-29 03:35:23.295761+00 +1249 pbkdf2_sha256$720000$mauHdDmxe8RcCo4Z4kZTJn$ufFb/+YdQ1+gCbbEM7Ybit1BzdBdtNRpcD2ebz6OGao= \N f florenciaponzi@gmail.com f t 2025-06-29 21:57:29.834124+00 +1250 pbkdf2_sha256$720000$ndzSQDT8I6PLYOjdNCawCR$LcsVl6JTEOMBMHV2UlLYJYEKbBQja1cfryW/qPZ95XM= \N f camilafernandez1227@gmail.com f t 2025-06-29 22:05:00.787408+00 +1251 pbkdf2_sha256$720000$ao9dC8Srn846kjbGOVkStT$CrcMPSgNWjrfcOH2UFPtD42fFPbUO/CZzCpjptmtWoc= \N f myricaro21@hotmail.com f t 2025-06-30 12:48:54.527545+00 +1252 pbkdf2_sha256$720000$DhKE55WhnkHz49a7LdHwZn$MO94s1Umb87HrqNhIYyWdq2437FNoAIVm+Wer0e3lsk= 2025-06-30 13:54:17.345112+00 f betleme@hotmail.com betleme@hotmail.com f t 2025-06-30 13:37:13.534527+00 +1254 pbkdf2_sha256$720000$UCwAttGg13ij2QLXeJiOHW$FszTwT52fhefIlDUY0wpu61LUFL9OBWsccg4TuaRGM4= \N f agustinacarballoherrera@gmail.com f t 2025-06-30 23:58:24.515409+00 +1255 pbkdf2_sha256$720000$bRWfk8sU7IXFYzT8nvDrw6$0Uffqk6P73Y9yd4npuBy85nLJ3ltMMOSuFL7sl+td+U= \N f 0000000@gmail.com f t 2025-07-01 00:10:09.250821+00 +1256 pbkdf2_sha256$720000$82YduPB9pNbswg6H9EwdwQ$5dpl8A+w/i1oa3prv9TNZF+7cvZxIK5ozS0cNXc3s8I= \N f lulacomba@gmail.com f t 2025-07-01 12:51:39.590132+00 +1257 pbkdf2_sha256$720000$8lCrD1ZvvOUgCNkejEXFsW$0xFUe+kx14poorNhsecc5ME2SZDyostU5p8uxjVsEa4= \N f fersersonic@gmail.com f t 2025-07-01 12:58:49.861653+00 +1258 pbkdf2_sha256$720000$PAf2VN52GfkwoSk2X0ZdRo$hWVXeLOBL96vmGYbuFWR2+nyD0dm6Wv9+GdxRWT0jy0= \N f alevietri@hotmail.com f t 2025-07-01 13:43:17.057624+00 +1259 pbkdf2_sha256$720000$rfvTekLcUSh78uItonHgde$I7siKOS/ehkZixUV1Mji3vB2BKDprV1FZhzttqD18GM= \N f rsuarezgalan@hotmail.com f t 2025-07-01 14:15:09.146927+00 +1260 pbkdf2_sha256$720000$B23vDxpSlNX4GDBRQQ5nWB$ijQCmcQ6yOuCphtDc6jJGdid1wE3J+mDDU7aNQ/efJ0= \N f miri@hotmail.com f t 2025-07-01 15:01:50.653498+00 +1261 pbkdf2_sha256$720000$judwdwJ95Wn1dT4mfJ0m6q$3TXgAs+aLiN7jnFxqgxcCTR60FgYy70wyXzo/wjN/QA= \N f marsika70@hotmail.com f t 2025-07-01 15:18:45.826673+00 +1262 pbkdf2_sha256$720000$C1rvYjcHTGYEbD9q7tR0aF$jNVDyFxR8d91j0LtlEBZ16iuZjuEKsiW/fENYBNhZzc= \N f piccolinoycarlitos@gmail.com f t 2025-07-01 16:40:52.401944+00 +1263 pbkdf2_sha256$720000$btpnKhYUVgkSKCijHZTy4y$ThpW+fMCcdkgkWRkBPCmDKTNHCDeBn5RPu0UOh3rIG4= \N f ferzabal@gmail.com f t 2025-07-01 21:18:42.388614+00 +1264 pbkdf2_sha256$720000$th3XLijbrl64iun6qLgrwq$39Ynmp09tEOz2lN/98vbnfwsfmU0VhSNlYeIg51mslE= \N f kacorreo@gmail.com kacorreo@gmail.com f t 2025-07-02 03:11:13.018251+00 +1265 pbkdf2_sha256$720000$XVJY3si6I1svNaSUxK1PE5$U65wJ8hXJdFYYx1XAT1btYUb11fRP4wo+rRC6hwUA9k= \N f karina.st.dominguez@gmail.com f t 2025-07-02 13:20:40.302529+00 +1266 pbkdf2_sha256$720000$CO5BluK60HD0r1S9IAub0t$rStlKmQ01oBG26kjKta4pxCbfowC+tAx83+k9Z6xGMI= \N f alejandrocardozo@icentralmarket.com.ar f t 2025-07-02 13:54:17.504821+00 +1267 pbkdf2_sha256$720000$wXnQgK4IoeRBBIzvXyF8B5$2+t1FwDgS4h3c6o7gMPpE4Rlu2a0n8XAXEnFHkvUc7E= \N f emilianoezequiel.chamorro@gmail.com f t 2025-07-02 16:56:26.882537+00 +1268 pbkdf2_sha256$720000$NHwRIsM1JlRLP5OOv7U3Fm$SagefevSNkgwvpnLQ57BTQCj9PRZ+OGmBWgyXOQET8c= \N f johanamartinez904@gmail.com johanamartinez904@gmail.com f t 2025-07-02 17:11:15.195833+00 +1269 pbkdf2_sha256$720000$lBXY31vSWVu7iVtecLBsZs$0opLP5ldpxFUWeSIjApJaRkRf/KhrCqIq/MkHfVqhIw= \N f federicocaserotto@gmail.com f t 2025-07-02 17:14:46.13404+00 +1270 pbkdf2_sha256$720000$f9RqQGoKizohDm6j6yMaAc$HTAiQb7pVYVI7o4LWyNPLcGR/nHmJYf05ktOVbln6QU= \N f debo_canfora@hotmail.com f t 2025-07-02 20:00:42.634417+00 +1272 pbkdf2_sha256$720000$j8aX5IV2WiPtG1Pyb6RizB$eJ+kGswawj98FZzqX9Pa1+2ojjlxMDkPbOCAGc3YfMk= \N f correa.anae@gmail.com f t 2025-07-02 23:06:42.412469+00 +1273 pbkdf2_sha256$720000$XSNltUOcIWGPMQ9IkSW00r$b05SXRXR8rR6ItfWVropmW9FGj0NH44H73DancwwH9M= \N f maru_herrera_76@yahoo.com.ar f t 2025-07-02 23:14:22.412786+00 +1274 pbkdf2_sha256$720000$Kmr8K08nhxGK4NpUgtLN6n$pOdB06h/vE+y6fWBTzl+kTQlTUc3DbGHAUEHVkvHwRQ= \N f virdavalos@gmail.com f t 2025-07-02 23:16:56.145761+00 +1275 pbkdf2_sha256$720000$oC1N5HkkDhOiALFpwy6qwX$b5gb7YYOVnKEaEuc7XiwY1/If5wboX4R1J+Xu/FofDI= \N f roizuel@gmail.com f t 2025-07-02 23:36:30.416624+00 +1276 pbkdf2_sha256$720000$P0um1PCZQrLi4Jescql35m$uSanm1Ffh90YZmC7t+o1EUdefsj78XlryF0bD+5P7D8= \N f jero.rodrigo10@gmail.com f t 2025-07-03 13:27:22.656385+00 +1277 pbkdf2_sha256$720000$Vc00WYS1X03BPUUFZPlEG9$9SoOXXWyV6/6sDfwpJ04D5m7P2fEDiBYZDiualyaRQ4= \N f marquezabogados@hotmail.com f t 2025-07-03 15:48:12.195952+00 +1278 pbkdf2_sha256$720000$rhW6yAw7PHAb5yNDPvYSlq$+6W8h9sj1CpeleYOEvYNl4uAmoZX5NmXDgJs5f5fk9E= \N f mslateana@gmail.com f t 2025-07-03 18:03:54.796977+00 +1279 pbkdf2_sha256$720000$52xoFCMcTo7iSpLIqqj7Yq$7rLBOWpq+g+k8nK6a1mZ/pRC9h5jwPVu9bTWxCRK0YQ= \N f leandropomeraniec@gmail.com f t 2025-07-03 18:51:06.064813+00 +1280 pbkdf2_sha256$720000$WHKnDIdbMK6zawiP24qEgo$Xde7gWHeeaFrb8TOktU13dVa0tCSmMfZVZczo97E8xE= \N f wicce81@hotmail.com f t 2025-07-03 19:30:57.869438+00 +1281 pbkdf2_sha256$720000$No4iiTYcscVTx55M2YElG0$LbZR93PSL4EDpwGjlwoZU8274rgOw3ccn8+tIB5uOWY= \N f eleonora.bruno@gmail.com f t 2025-07-03 19:59:18.707038+00 +1282 pbkdf2_sha256$720000$pePEJzy7kaN6Tjdip8cDhI$r9E75ovp8CxPd+R24VIxDuz2XZsXYEc3PsdaDBQlYo0= \N f thestrotsen@gmail.com f t 2025-07-03 20:29:36.482239+00 +1283 pbkdf2_sha256$720000$KJN8n4owdWa0Xxajb2P7nM$XTian01TOeLV9MLiBMMC3nIx+rJyT+ooAfRKEueJsWc= \N f gabrielapalopoli22@gmail.com f t 2025-07-03 20:42:54.483383+00 +1365 pbkdf2_sha256$720000$6UyEP3qMY98DTe10ppzmX9$9xN0yQ8Lo6tBJRRK45bbl0emsq003a1B969mRHM5yCA= \N f ferskiarski@gmail.com ferskiarski@gmail.com f t 2025-07-14 13:52:48.833225+00 +1285 pbkdf2_sha256$720000$zIiTzdufkgVH6s9oWvfx9L$zLe03Nxekceq7Ht4ZrjevtSREmdWa56AcRGgG1z7U/0= \N f Javieraddamo@hotmail.com Javieraddamo@hotmail.com f t 2025-07-04 14:39:22.911336+00 +1286 pbkdf2_sha256$720000$ng2rMDeA1219g597yF1jIy$Zf+j8EcmI5mm9hgQrhqQud7fpa+sKbgBc19GYzKtp78= \N f lasalasdelangel2016@hotmail.com f t 2025-07-04 15:34:28.544678+00 +1287 pbkdf2_sha256$720000$ss6JsbbKAQ086jcVcgaWau$8rvXekqJaJBpGKcOEGB/XRYU1riCnqnGEPyT6Kbcv6I= \N f lsebastianezequiel@gmail.com f t 2025-07-04 16:46:19.924578+00 +1288 pbkdf2_sha256$720000$JbaI8oKwJ1y66aREaiBepJ$YWIIAHBIVRa4Q4kAE5ZvLMxG+Y6bpFzQZGZDkjnd10Q= \N f patribriola2@gmail.com f t 2025-07-04 17:38:50.5476+00 +1289 pbkdf2_sha256$720000$l4xIFT96kZDBV8shThX3vS$QPXhh0v4jTDvVkXS0+saYvK99bsCy8eXqM36KRRQ94g= \N f esteban_marino@yahoo.com.ar f t 2025-07-04 19:58:36.30611+00 +1290 pbkdf2_sha256$720000$JgnUH24kGeIXvXHzmZOM9n$GWN3X+wlZddk3befo0425CBMjURPpRzJxA88Y4+eMqY= \N f natuvram@gmail.com f t 2025-07-04 21:08:57.252402+00 +1291 pbkdf2_sha256$720000$6hkJZ82hcwaPUtUr1bbDVD$LXlCiBZFBr82xDozBKjScSolqpiSBahLa8E4QykqD7I= \N f veronicaderueda@gmail.com veronicaderueda@gmail.com f t 2025-07-04 23:28:59.920759+00 +1292 pbkdf2_sha256$720000$iVa3qjBN1PyzH2bptl1pYQ$zsllg5TCGV5/IJowTUv0zEOpDZRy+H5vL6Tj6KP1jUk= \N f caivanoanto@gmail.com f t 2025-07-04 23:38:19.701104+00 +1293 pbkdf2_sha256$720000$h9P9WjG2qISpcPCELPzJHy$bjLBzT1anpqJxaOaJYvBj/nWXwRGlaIiCHfxFqNJR4E= \N f vanesarosolen@gmail.com f t 2025-07-05 00:18:13.693405+00 +1294 pbkdf2_sha256$720000$RBOcTq8LH4cmOMwxFXzIbB$4xtGQtntPlFyADOMZiu6UOQ1qdjprHKqCBPq7V/IHp0= \N f rinconlinap85@gmail.com f t 2025-07-05 00:33:27.994559+00 +1295 pbkdf2_sha256$720000$IsvrxxMkWCp5OHAYyZ3xFw$IpPmu+d01t4VlOMgOiHn78XtTj29920uPpdWXifeFxQ= \N f carol_6810@hotmail.com carol_6810@hotmail.com f t 2025-07-05 11:47:55.515749+00 +1296 pbkdf2_sha256$720000$waGS4xsYgq3EY739KgGbay$Vwi/7tzQF6hlcX8LFPn16hPNhq1wACuMJEEI0qhc84o= \N f ceciliaiselli@gmail.com ceciliaiselli@gmail.com f t 2025-07-05 12:49:04.063447+00 +1297 pbkdf2_sha256$720000$01MGP6BcYBCvxfqyfO4BR5$mL8M3hDCp3QTrResrX7zcCkx/Y8phJ++yCxT51/Wi3A= \N f mgiambuzzi@gmail.com f t 2025-07-05 21:43:07.614551+00 +1299 pbkdf2_sha256$720000$7yYHDJnMqi6Jo4W8ZrltXy$k5nsmB24PgB0vLKZnpmNQUe0lL+ohEIB5xX48qbMlao= \N f tinachiodetti@gmail.com f t 2025-07-05 21:49:08.487307+00 +1301 pbkdf2_sha256$720000$1trG9WLAQEYeu4DGz7eRmA$Wh4TwNvJqZC0i0wLtdJEtJ0l0Pexh6F1pv0upQ8ahXM= \N f andrecap03@gmail.com f t 2025-07-06 20:37:07.056066+00 +1302 pbkdf2_sha256$720000$i1IEE7x2fuQnBQVPMEJehy$QNWATD/1CFjvjZqvxP6FM4BmBiqRe/02/v+KsGumzwE= \N f nazarethdezanzo@hotmail.com f t 2025-07-06 20:48:08.523449+00 +1303 pbkdf2_sha256$720000$oq0GMYbHdRJfS9qycEA2k6$3lsGTWFBYNjKfLGS+2DklX+Ip/PCcTenNSBexBV4aZk= \N f lecandanadia@gmail.com lecandanadia@gmail.com f t 2025-07-06 20:48:36.767591+00 +1304 pbkdf2_sha256$720000$pZH1Nbt63zgkTI3MuLjssK$qd5GFyS/dq6lxB3xnVYtIj04skdQ6mIfy8pTXAovfcQ= \N f antonella.ainsaurralde@gmail.com antonella.ainsaurralde@gmail.com f t 2025-07-07 15:14:40.202277+00 +1305 pbkdf2_sha256$720000$l0WbT255HZFTl8doDw3IMY$9a+HnnNw4TKeXs0CAgmeUeZWNc/xj36ZUIMqbZLQUog= \N f kvasalogarcia@gmail.com f t 2025-07-07 17:10:35.117903+00 +1306 pbkdf2_sha256$720000$ff422auJt9MtSkvmRgjhr3$1AaIl9D6h7mHC8zUUo1FQlCtFNAu8iIK59gLCG+m1Ug= \N f ramosbenjaminalexis@gmail.com f t 2025-07-07 17:13:24.714207+00 +1307 pbkdf2_sha256$720000$cih6AaeV5L4PHswoiZ9XaF$Kvqeztzg0GHE1HsIf6A1tpRFUplzkb4EV5SRVkjWJ4c= \N f maripose112@gmail.com f t 2025-07-07 17:18:16.125786+00 +1308 pbkdf2_sha256$720000$uU6rd4hQIXmcMH6EDl01k2$EeyeHrmCaiMtkz8itsFsv2cVl0dsk3qWIjDNEgHLcOg= \N f gonzalez.raul1986@gmail.com f t 2025-07-07 17:28:49.170575+00 +1309 pbkdf2_sha256$720000$2Ga2FS5tmURuAvQPVZGUhX$lX+QdA8UQ+3FrZVHH7GuDjPccWZFiU/sf+5DHEeyDL4= \N f florenciamulvihill@hotmail.com f t 2025-07-07 17:34:14.440639+00 +1310 pbkdf2_sha256$720000$uHv00zXRyRskxalpmErp5g$h/QVroyTdEQIngYlQPMG/PtEazf4L0ssxsDCTJ1oSHY= \N f magalisol22@hotmail.com f t 2025-07-07 22:04:22.523474+00 +1311 pbkdf2_sha256$720000$7X5KVgjEEZ682WFV3WTizP$rfGlq6Q+0CGSv+bvXkQu98j6l23gTaIhONr9k9/xT58= \N f myrianlujan@yahoo.com.ar f t 2025-07-07 22:12:24.828595+00 +1312 pbkdf2_sha256$720000$NGTfxGygH7BzV3UqJqEgex$NkxLFFhvPRBVoSGp+r2qFdUBQsKmoredgHeJ4zB8P4w= \N f andrecasaperu@gmail.com andrecasaperu@gmail.com f t 2025-07-07 22:50:58.213318+00 +1313 pbkdf2_sha256$720000$IUjBXdsSf7G702qo4dL3wg$e7jkFggOO6RPqNmAFdWhPd3R+x4CF0s1wgyqH373jb4= \N f tescobar1985@yahoo.com f t 2025-07-07 23:04:19.621324+00 +1314 pbkdf2_sha256$720000$Rx8Sg9U6lsVSATC5LgB009$JdO+HYfXJajegG1Adx5PKq6KCJCMpZdOQBdA1OuDVtY= \N f debohprieto@hotmail.com f t 2025-07-07 23:15:29.795387+00 +1315 pbkdf2_sha256$720000$PHFnESfbOVXN7XRVjM1JS8$NB2Mr+u3lEH6VFLY0f4em8FndpAzgcbfI8IAFAnVB8I= \N f xoana.s.gramajo@gmail.com f t 2025-07-07 23:42:53.215583+00 +1317 pbkdf2_sha256$720000$cYXKPSi9MmQxWz59V1s1cQ$uWBDE0Z4q4hNrCG73CJwoh8AyGPgQA3jh54OwKk47Uo= \N f barboza.soledad@gmail.com f t 2025-07-08 00:17:05.691261+00 +1318 pbkdf2_sha256$720000$5qr6weyFFyICqS3rvTMyqh$n4mtNyfVMpZ/zjOgdru9y17aG+GEWejR691KjMPrYug= \N f lilia_basso@yahoo.com f t 2025-07-08 12:51:15.2793+00 +1319 pbkdf2_sha256$720000$dsI4EEDnspW6ppWgDUQ1BT$UeOkFwXZlleozgj2fcLJY7Yh+x2mqZGnSe1VhXqCYog= \N f carlos123@gmail.com f t 2025-07-08 13:14:25.564943+00 +1320 pbkdf2_sha256$720000$oBH23Wnx8b3CV6DCU8PUMG$ki+o1y5uEOEW7x/jmjytgaxtYt29/GME7C3oO4zYy6w= \N f rfpc100795@gmail.com f t 2025-07-08 14:10:24.71022+00 +1321 pbkdf2_sha256$720000$KtXWk18SeY5aXskYp4EhWx$zXpddXZS+kMeyVwWhjVXjb1By2+np0EamOPKndklPto= \N f patobjuncos@hotmail.com f t 2025-07-08 15:12:09.650445+00 +1323 pbkdf2_sha256$720000$6ABm7JObczkc7tWNofcfGt$strcndXRX9FVWmbvTINJ0c/FFxSX1h1VlntLG8sJyw4= \N f Angiedandre@gmail.com f t 2025-07-08 17:38:18.132224+00 +1324 pbkdf2_sha256$720000$FUXIxJYZaaLP8PPY9Y2lqa$XnqDtz2fzm2AyOmv0iuEgO9sbt/ybWXThgQ8xU3a6QI= \N f fernandezagustinae@gmail.com f t 2025-07-08 22:59:08.426972+00 +1325 pbkdf2_sha256$720000$tIIvnzvYtncV4g31U4qSUy$C4ml1HckFiIKq90VTLhNDdoTUH+Awicdkz3ByIm2b+E= \N f ivanacaicedo42@gmail.com f t 2025-07-08 23:10:49.794624+00 +1326 pbkdf2_sha256$720000$sEqmisx1Mv0m1s0unJ8h91$aZKensP3GJiMcZaGEo5MYom7JOAvXHep+0N63Hfskhc= 2025-07-09 15:45:45.586702+00 f nikoitati2017@gmail.com nikoitati2017@gmail.com f t 2025-07-09 15:44:45.045843+00 +1327 pbkdf2_sha256$720000$rkz2ckC5iL3trGmJzxd1xW$zKQYb1WWtJ9VH8Tj+DVUA6HHx2X4RpubliILzuP3Vb8= \N f asensiojoaquin7@gmail.com asensiojoaquin7@gmail.com f t 2025-07-09 18:44:29.845135+00 +1328 pbkdf2_sha256$720000$PFJbF84r1D5WVHhXlAcIOl$0BOn+bu6p+Jw4+NRVa8PgsrDC8qz4cVY5YgRLfw+z6M= \N f roenystovar@gmail.com roenystovar@gmail.com f t 2025-07-09 19:44:36.453731+00 +1329 pbkdf2_sha256$720000$4Nyyb3aNl3eZ07rqpSOnkM$lH2vt62CqjophJGI08Br4vmvlxwRLBwdts5P71oq8lU= \N f gabrielalaporte1971@gmail.com f t 2025-07-09 21:40:24.330482+00 +1330 pbkdf2_sha256$720000$4HjK2nZ2JkbliRZFH2StqA$SXeyQJxi/g5iR7BG6z1eE8HAy7saswv28Ts4hGhuqxY= \N f anabella.ornatt@gmail.com f t 2025-07-09 21:48:09.510581+00 +1331 pbkdf2_sha256$720000$gkf2yDHjj7ROhae7NEjkmh$SR4uAhTHVrjRFosLEUwUEznXLwHNJIDpV6jbB8w8r88= \N f bisocava@hotmail.com f t 2025-07-09 21:54:00.194784+00 +1332 pbkdf2_sha256$720000$IbMMeX3FZzOD33hworN7Pe$Tt1jUP7lGgklel4XUyuOvU38QBiCIsFt3RjXZoQjgjg= \N f norbertopelliccioni05@gmail.com f t 2025-07-09 21:58:44.381023+00 +1333 pbkdf2_sha256$720000$9N0wzNfcDNwuhVIaJXZvfz$xD/QSN6gFQmbvIE6KCrbRq3+xaivUM9PSlPS4o/zM4g= \N f mavibacci@hotmail.com f t 2025-07-09 22:02:12.998979+00 +1344 pbkdf2_sha256$720000$pt2Nq6PcNhthp8FUKgoMaX$MMFJ4ZKtJhfBnxwaOjoZiHoq1c/D7xPg4xByrPBmMD8= \N f mlioppolo@hotmail.com f t 2025-07-10 18:19:00.081017+00 +1334 pbkdf2_sha256$720000$6VCdD43owNs0vCQKlOkDrc$YU36cPSL5Q0ccjPDJAoXXoWpkEb8+0ZI2P05f8Nhemk= 2025-07-09 22:33:47.345657+00 f mervazquez2019@gmail.com mervazquez2019@gmail.com f t 2025-07-09 22:30:01.788441+00 +1335 pbkdf2_sha256$720000$Nn4OoDHxpxUJvZFWo85X7l$CeiyluMsY9Pchkw2Rsbti64JhTPj9kx195Fv7vyNm/8= \N f urielpaolillo5@gmail.com f t 2025-07-09 22:37:25.43163+00 +1336 pbkdf2_sha256$720000$lxPlQpmAn4SzL4mVPsgO1W$xBDHTq0qd7OzZ3yIyqT0Ugulw0ekP+qMrgnAZQP08Pk= \N f tlascano@udesa.edu.ar f t 2025-07-10 13:05:29.465943+00 +1337 pbkdf2_sha256$720000$fAkZDJfR9CfTPVfN1Oxx2g$hgg5XwpylMzobH3krY5xXrN3dh+2ZZVK39txROTRWxk= \N f ferbence@hotmail.com f t 2025-07-10 13:33:28.300675+00 +1338 pbkdf2_sha256$720000$Urnyl6HdQgWYDvsB3cKRpt$sdbbjZ6j03jMFjtCNBWUlTrnfzZM+lzCIlne2r1Qu2k= \N f cesarp@gmail.com f t 2025-07-10 14:13:42.193101+00 +1339 pbkdf2_sha256$720000$etZRwk7r7XjAO5gQEKbiJY$Un9uYqplgsx5gPPpIW0Nronbv+o5TqZ6nNoFf99Euzs= \N f julietafrum.2002@gmail.com f t 2025-07-10 14:40:06.91185+00 +1340 pbkdf2_sha256$720000$WgYsSEFZb2IJx31VfQW5AA$v2cMgW6VpDw61xSMGOZ8kVaCen944h6/A7vWiOS/g88= \N f hdbernardez@gmail.com hdbernardez@gmail.com f t 2025-07-10 15:08:53.360364+00 +1341 pbkdf2_sha256$720000$fOoeW0S9VMYF4cSAko6ZMl$uEEErxn2NYSHUWwH+JkfWnvu4SX/Lp8i24Im5msgiZY= 2025-07-10 15:46:26.832698+00 f camilamarielaloza@gmail.com camilamarielaloza@gmail.com f t 2025-07-10 15:44:13.48182+00 +1342 pbkdf2_sha256$720000$BgwdU0Bug9SB2sM0qT8PwA$IaLS0fPiscmR1S+BOQvohGYCy3jT2j41qGhiY97ogcQ= \N f deb.modelli@gmail.com f t 2025-07-10 16:33:32.239599+00 +1343 pbkdf2_sha256$720000$RtDlxcQuwRJc5dgzmMDyjy$zNON+b27Ju3dU1K5DB89H8c7mkqmc59PSW8DRoSrzPc= \N f Gonzalomena02@gmail.com Gonzalomena02@gmail.com f t 2025-07-10 17:55:32.862731+00 +835 pbkdf2_sha256$720000$d26BfelC8SX71rroV3A7YX$KdGB4R4Fxn8vEx10SrY8rhl27rxAe7thwV9qPsJJKZ0= \N f gonzalomena02@gmail.com gonzalomena02@gmail.com f t 2025-05-13 21:55:52.142196+00 +609 pbkdf2_sha256$720000$VwdOInUoTQ5BnnRvEQmkch$t5z3mg8ew6wPnylJaoxJImJQmgv58ajGZ8ztRLHSRGE= \N f alejandroforte2@gmail.com alejandroforte2@gmail.com f t 2025-05-13 21:52:52.737627+00 +594 pbkdf2_sha256$720000$ywc62DzJxCqNdTLzK1bgF4$wWMTEf+pWf2PAxGsKJZ8Y5J50Y2kXva8bJOQNL8BIHU= 2025-07-10 18:59:54.035239+00 f analiadm02@gmail.com analiadm02@gmail.com f t 2025-05-13 21:52:42.562382+00 +1345 pbkdf2_sha256$720000$b1Cl7Yv4Nzvw13EHKsEGMD$jeYUOtdE737DR+E+T5ekeOxjK82nbutRSIjsNCEVYRM= \N f valeria0209@gmail.com f t 2025-07-10 20:49:16.008847+00 +1346 pbkdf2_sha256$720000$W6F3tjlBl04HYRuqykVSl4$6EDyW/lvhMX5FzN8T32VT2qSesSUbbFmkpvuCxpWzuo= \N f maceliaquiroga@gmail.com f t 2025-07-10 20:57:03.12288+00 +1907 pbkdf2_sha256$720000$0OXFPW1HdTdE7NUeTBfWeV$SChUdIYGly2w2QEOhqIzd06JzyqENc+T9cORyYoUi/U= \N f Auronica78@hotmail.com Auronica78@hotmail.com f t 2025-10-24 18:53:29.510752+00 +1347 pbkdf2_sha256$720000$ShQHVKHdkNAabW2kulO7uo$uFaHPDEpHCXjGhMWWR8jVAYVLTlBavLBNyb1eF2Ipvc= \N f monicamoyano2014@gmail.com f t 2025-07-10 21:09:52.696547+00 +1348 pbkdf2_sha256$720000$4zMDTIzKzNnt3aEYpUhN01$xMwCc4gIJhKYPt4BprE2MaYpUehQzHlJDGzgssuyoTU= \N f arqfedericoferrari@gmail.com f t 2025-07-10 21:32:26.601571+00 +1349 pbkdf2_sha256$720000$NitXnSAFjW2wG6waYHUcc0$d/IvseZJ3CSXTKhvPel0vgXuymDtlxqGWz3xpAcdUGo= \N f a.v.domini@gmail.com f t 2025-07-10 22:27:31.441517+00 +1350 pbkdf2_sha256$720000$75QN16czMiG9NEt5B7d5v4$aVE7ZNn29K66V28CfwNo/GPJTjwUa7j5PZPqUurHBSE= \N f mariangelesbarbagallo@hotmail.com f t 2025-07-10 22:52:46.536345+00 +1351 pbkdf2_sha256$720000$IcXY7g7TSHgr7V4w8grkv4$wUOfs2/nGqEzHau6dl/pJO7UWvwu7Wv+FQRopi2j37M= \N f camilakoenigstein@gmail.com f t 2025-07-11 20:58:28.827073+00 +445 pbkdf2_sha256$720000$VaHMHY1KRgjjHeY2AYlL2e$g2dMK8Ry5F4qyWsxdb4HuH5PV10bJrtsO3k7wKy7o5s= \N f noegapon1982@gmail.com noegapon1982@gmail.com f t 2025-05-13 21:50:38.694588+00 +1352 pbkdf2_sha256$720000$nrd9ZDXpB7dFocLicoeZQA$cUxQl1zIrJyyOt3WHCznQgzFEFrOhYdGo09wZxC5QQ4= \N f belenfalcone00@hotmail.com.ar f t 2025-07-11 23:56:20.884361+00 +1353 pbkdf2_sha256$720000$IUlTFhAZjyaSSEro1UwEkU$deccinIXEckipbLE0VoPDFJWj3w0bD4tx0RL/QKDTpo= \N f alitaconde@hotmail.com f t 2025-07-12 00:12:06.390023+00 +1392 pbkdf2_sha256$720000$slyUDC5jL1S9Er4vnCzEPu$UvCQu6j8yiuAdwJwaiw15uVX1aMxb6rLdAHug0+O2CE= \N f jotaliparoti@gmail.com f t 2025-07-17 14:34:04.020611+00 +1393 pbkdf2_sha256$720000$X9NG42l3sZIRt70ved1b9J$II5pcSkOfg4xEM36mIIpyeNaVI1Sgr+v5dh31DLOQ2M= \N f marcel_p06@hotmail.com f t 2025-07-17 15:08:48.049823+00 +135 pbkdf2_sha256$1000000$vbAuG9TGSP22JyYo0cp56x$E+tehyLRxDMRGsNj/1WA9Uj8sbg1joCac6+pY/V4vrU= 2025-10-10 15:06:36.538118+00 f katerinadubowik@hotmail.com Katerina Dubowik katerinadubowik@hotmail.com f t 2025-02-20 15:09:20+00 +1374 pbkdf2_sha256$720000$cS7CvgBr9dLMBMYOou5vBB$K0CGTyjl8gH7N7brO5OrdFAsYw/YI4Qp1tPbD9aAfLE= \N f candelalezama@gmail.com f t 2025-07-15 14:54:55.982032+00 +1375 pbkdf2_sha256$720000$oGDIwcTSVNMU91B6pFGQxR$YWN6Myh3C5w7qFUhGVKLIGXPovS1X+31yL+npScKqQ4= \N f florenciacardenas@live.com.ar f t 2025-07-15 16:17:23.127697+00 +1376 pbkdf2_sha256$720000$RAeCzxTew7jUoOmHgTDTPl$EYC9vTNTBMbBK9An1vHpjG07re/ce0SuEekbaXd+o9I= \N f dianamayhughes2@gmail.com f t 2025-07-15 16:37:04.466935+00 +1377 pbkdf2_sha256$720000$U7Cdpt2JHHX9pEAUKoxrPD$+jyJRBqMeGvJ8eFrDeK5NViKLw6iLY9EXqOltyr91qg= \N f antonelabianculli@gmail.com f t 2025-07-15 17:44:06.54319+00 +1378 pbkdf2_sha256$720000$lNIw7LzFfGKnFESzCrxaLh$jL6GAnwWom5Xhosw4prHDreIlT557XsmnlEPV1WukzA= \N f mar2005@hotmail.com.ar f t 2025-07-15 17:47:44.137169+00 +1379 pbkdf2_sha256$720000$q11B14HHiIaeaFvtS4z99T$8Ggtw3rqK2Q4kd3DmzMC9nvHPNI3pKbu4VE49Qhg3qg= \N f jhennifferpaolasilvatorres@gmail.com f t 2025-07-15 20:52:47.890966+00 +1380 pbkdf2_sha256$720000$ecACdHsWlLSUmaUQiJHyNq$l/a7bCps8LozbrXyi5cKRpPVy2qAOCxD4CsGXmqnOBk= \N f vale_damiani@hotmail.com f t 2025-07-15 21:26:00.533373+00 +1394 pbkdf2_sha256$720000$1w2dCYbvx2A0wR2xfVek6T$e6auY5LzwIpNAs/Zlj2gENM09SpvQtSihLcAUTvabWk= \N f valentinamolina101@gmail.com f t 2025-07-17 16:44:46.103696+00 +1381 pbkdf2_sha256$720000$pFeUn5peZXMAEKnZwviu7s$6uBDQVU4pT6bY5hIEAyei1eFdG5r/64nHQ7uEjTpRpA= \N f mariqui_82@hotmail.com mariqui_82@hotmail.com f t 2025-07-16 05:40:50.824853+00 +1382 pbkdf2_sha256$720000$J0b7i4c93Af0d8k8hBa1fT$VRcekr+kfx+0a8Y7tJcXQpPwm+92HLdEfLNexFAR42E= \N f pabloormaechea8@gmail.com f t 2025-07-16 12:57:15.271881+00 +1383 pbkdf2_sha256$720000$cQdmlfcWYxsIj2UycMUpKy$91Yx8T4M1n90LqwayR84ofMCr5o6D1pcRJRHINIKtYE= \N f martiin.vergara@gmail.com f t 2025-07-16 13:47:46.630209+00 +1384 pbkdf2_sha256$720000$lQSbBlT3FpywdIbmnwmGyI$aZV2qcm0AKGCNFbQbsWLWQe7gZW+Eb8tu4mMoqYJqjs= \N f marialauracacace@outlook.com f t 2025-07-16 14:28:34.681833+00 +1385 pbkdf2_sha256$720000$mVoKfW5zIl794dsMFGXzje$EwECRTSgSXYn6S1G2fd3W0ZFk/gXkbK5MFcsARO9dxI= \N f rodrigomvillarreal@gmail.com f t 2025-07-16 14:53:10.359761+00 +1386 pbkdf2_sha256$720000$6hbH0P0yczuYA8Lgq7yqqM$lK2IFMlXMmnJAtrTXSpAuu4YVmTGCajg019seTuMUGY= \N f romina_olivab@hotmail.com f t 2025-07-16 15:44:25.59135+00 +1395 pbkdf2_sha256$720000$y9N3mWwrDCnNEewYA7B1Sy$1yBuKtXQlnGXMiZpfoobF9LZRgR+BY+R8RgH3MVJNwk= \N f diego.freedman@gmail.com f t 2025-07-17 16:51:10.844287+00 +1397 pbkdf2_sha256$720000$q6Xws8LEIDxbdhSRWpwczZ$01kl+PX3vWenCUPIxHhCHFpBk+IN6iCyh3fr5+dJvS4= \N f sinrumborock2013@gmail.com f t 2025-07-17 19:48:34.483836+00 +1398 pbkdf2_sha256$720000$dAIb898LpdleoA3584UY9L$Vpo9lPgUMOYKLj8btIsNV9Z8v2RiFdh22S1HEf1lNGE= \N f thairycrinconq@gmail.com f t 2025-07-17 19:53:22.621341+00 +1387 pbkdf2_sha256$720000$gHGbizmoKjtKiWYhzVAIYh$0bHDIbGpx9i6AvQex6Kg9+lX5RjktyrPI7rSPEWMc80= 2025-07-16 18:52:31.458847+00 f alejandracanela@gmail.com alejandracanela@gmail.com f t 2025-07-16 18:48:29.491599+00 +1388 pbkdf2_sha256$720000$R796wOsg5Lz0JJ8H2gfds4$Y0ZD8chuau9KA4nH2ioYEaZo4Qe6ARYBVA4BEkDlaNk= \N f ruth.paileman@mirgor.com ruth.paileman@mirgor.com f t 2025-07-16 20:21:06.557458+00 +1389 pbkdf2_sha256$720000$QmfJTC3Hf8NdnJoEstQYvu$bC4R84ulCvmmC0p5b1QcI1eAvFIRZhNWfyPOmM6pHRo= \N f m.sol.estrada@outlook.com f t 2025-07-16 21:16:08.914306+00 +1402 pbkdf2_sha256$720000$FnMmMdouQbJhLORd0RnGgl$obs9H4Lk9F+0q1nywXpgb9xpmkvc5znyfQ/UEYwcsls= \N f mariel.alejandra.villa@gmail.com mariel.alejandra.villa@gmail.com f t 2025-07-18 17:41:06.51572+00 +1390 pbkdf2_sha256$720000$zreLttnKHQ7mrQiVR5UbwL$Tcqf9sUMCc23Eh6wgu+LG1HEFlNvby8vRk3yVvKeCn0= \N f claudiavpapaianni@gmail.com f t 2025-07-17 13:53:39.18531+00 +1391 pbkdf2_sha256$720000$FdeiqY6VI4guUvPugxeTQj$Fsx2LlnRuRraFX5LOYgb/rYZ4Mmapee9rGVMrtPW/xA= \N f candelamaidana@yahoo.com.ar f t 2025-07-17 14:16:18.326467+00 +1407 pbkdf2_sha256$720000$OmagACeM3CQ3ZbeDZC5XaZ$vfZZl4osuWWWnPPrd7KB3PVyygD5oy4sh1qQ6xbEf2E= \N f rivasflorenciarocio@gmail.com rivasflorenciarocio@gmail.com f t 2025-07-19 15:25:35.982917+00 +1400 pbkdf2_sha256$720000$Hqu2bw5dv8oJ9njsG3SVeh$TAbOF/lR3rV+qSiizqTo8sbg6VoOG/Tu15NLhoAnBIM= \N f gbesquerre@hotmail.com f t 2025-07-17 23:44:47.337287+00 +1436 pbkdf2_sha256$720000$2tgLuzxO6byoKh90vHW4xH$CucTWE/Om2l0JA2ItU/FgEAjQHgr1P9EKIMlKvCJklo= \N f abba_ana@hotmail.com f t 2025-07-24 15:54:22.823664+00 +1404 pbkdf2_sha256$720000$bX8AoBzFwKK04b6m0uWpqp$QHeYUQiqGIkPrx6K7Rt5m6ai3R8hhDNOQG3iQCWoUoU= \N f agustina.ct@gmail.com agustina.ct@gmail.com f t 2025-07-18 21:57:31.720835+00 +1405 pbkdf2_sha256$720000$ERmQQePvKENGMv75dgFSFM$TtxfRxM3DHIhwo/M2hwRTvMomJjQ0ITFT6aV5J0ck7I= \N f Yesyvancor@gmail.con Yesyvancor@gmail.con f t 2025-07-19 01:38:15.117152+00 +115 pbkdf2_sha256$720000$AqoklUjLZSH90HCBMnh1KW$k1JtUKms3LPthWWZJIe2Tnr26PLoMmpX0EoUGaaeUsU= 2025-10-08 15:03:54.683704+00 t Catalina Catalina Simone catalina@amarmascotas.com t t 2024-11-07 15:09:04+00 +1406 pbkdf2_sha256$720000$rDFTRaLCbeq5s7vb5jhPBk$CK4f/4Nv551QbPKDcegsSi24fd4853xluk3NZoHrFLc= \N f rolonnestor84@gmail.com f t 2025-07-19 15:18:20.729825+00 +1438 pbkdf2_sha256$720000$uLjzlT2F9FR05Erq7IwIXy$gLQQxyqoyjCSu0xL2e0ns0do5VIjn2RZV7CmzJPZ2Hg= \N f ivorburges@gmail.com f t 2025-07-24 16:08:00.486341+00 +1183 pbkdf2_sha256$720000$P4IvD6u2pbdpFx8GkD8uZP$Sojtello9d2WWRTbs7ACpH2hgE+/w3zcelVehip0YaU= 2025-08-27 20:26:13.193362+00 f antobt@hotmail.com.ar Antonella Battimo Totino antobt@hotmail.com.ar f t 2025-06-18 19:42:38+00 +1366 pbkdf2_sha256$1000000$XDcKaNoJYc4uCrcndffzQt$iuRvMRGO8OR/QcGm7kFWjXf8u2DlBNTedWdd/bddkmE= 2025-11-15 20:59:34.5597+00 f veterinariaprack@gmail.com Marcela Prack veterinariaprack@gmail.com f t 2025-07-14 15:24:41+00 +1408 pbkdf2_sha256$720000$4ihWQkG0BbffDFr3ciCrZL$0SesssYlvNcETwOOID5sBpEc2C6UOw0HpdY1lC15AsE= \N f bejaranocandela4@gmail.com bejaranocandela4@gmail.com f t 2025-07-19 18:03:29.405982+00 +1412 pbkdf2_sha256$720000$lEBFk4vLXdoM5Dg12vq6XG$9e4iSYcJBy4a2LoDRTcjmPVu2vN7+lYEWc+ZZUb0sSU= \N f andreatravieso20@gmail.com f t 2025-07-19 21:49:19.452987+00 +1413 pbkdf2_sha256$720000$0fdFNCJi79oyfLvs9jcfDO$/dxEPILFB4HSYYD7p5JTRq5pT+vjWv5jgybU2gRth8s= \N f fabianadominguez56@gmail.com f t 2025-07-19 21:53:48.154312+00 +1414 pbkdf2_sha256$720000$7t4Pb4WT6lxja9tqg1kD2q$lA94i1chqSDvM+A355puewNGGr0N/K8AHDLs4EH8JSk= \N f arizioestefania@gmail.com f t 2025-07-20 18:54:44.452317+00 +1415 pbkdf2_sha256$720000$czdilVL5cRnYhU0hqDtyFu$lSsOLMvMcNCQvI13T6fl9yekts/4IxgOPWN/kRoztiA= \N f Pqrstu97@yahoo.com.ar Pqrstu97@yahoo.com.ar f t 2025-07-21 00:44:11.875857+00 +1416 pbkdf2_sha256$720000$Wz22JKJ7mDJ94iwrQcpppu$Ie/vygRxdqozz266EZleAjBQoe2Uftr/Yqm+uJVIMu8= \N f diego1973615@gmail.com f t 2025-07-21 13:19:47.53548+00 +1417 pbkdf2_sha256$720000$BmfW2TSVQDnRRY9oLKXRnK$xtNzAZhCsz+xmAbH/liX2FnpUkxmtqkWbGeTQjVlEmc= \N f nballarescopel@gmail.com f t 2025-07-21 15:24:58.261866+00 +1418 pbkdf2_sha256$720000$pzHqoC3zSOWuvlUduWv1u7$oDxzp5sJSmY5AtByixVuexoGEEDqceLLnPUIU2jOyQY= \N f giselle.carrizo@bue.edu.ar f t 2025-07-21 15:58:34.725074+00 +1419 pbkdf2_sha256$720000$gCul2CYqpQhqa3NRJkcTqp$TbbTJzBHd7DEwPF5Z/azOdPCCeR7ZJbCiqMJjam/xLM= \N f alejandrabaezguy@gmail.com f t 2025-07-21 16:58:25.875004+00 +1420 pbkdf2_sha256$720000$42UCDZuA8b0wlencEHyIoT$O4mARS5j8qQr2rMStkBntSZSeMXX+wBkY7WBAgpaBQA= \N f lilianacrego54@gmail.com f t 2025-07-21 19:47:51.288123+00 +1421 pbkdf2_sha256$720000$Fp8mOUOdkpt3P0YaCMC4J5$7YwzECwyxvLh5/HFMWMh7JZFWvsU4klvUPWoM+0N+GM= \N f adriana_viola@hotmail.com f t 2025-07-21 23:18:27.006053+00 +1422 pbkdf2_sha256$720000$34u0u0b5kG8qCjZPoHXChU$R3kw80PJ4nxK34QFDxA0RrMmbcWAQ12qtBBQJ2l7TDs= \N f nahuel_xeneize94@hotmail.com f t 2025-07-22 14:32:57.240449+00 +1423 pbkdf2_sha256$720000$zbLNvsgDNURhPKHvcNKvLB$Ul0V/MV1aIf5Nd7A9zJgLAS2y4zyKF0iDEyxrDpKIXw= \N f elgatoazulado@gmail.com f t 2025-07-22 17:34:58.873564+00 +1424 pbkdf2_sha256$720000$kILax2IQ9jlGFUMm0K2t54$3VUcdXk+u7V+bxFGW019TTWGIY3/fquZB4hITk19fzU= \N f nadiaecuevas@gmail.com f t 2025-07-22 20:25:10.793027+00 +1433 pbkdf2_sha256$720000$yiCeCoVJQP2y7d4cslfCF6$8TW3LHXQMjvJdmGI12II+TSPmGq0F0VqaBnZK/SZjZo= \N f ursulapalmieri@gmail.com Ursula Palmieri ursulapalmieri@gmail.com f t 2025-07-24 14:06:56+00 +1426 pbkdf2_sha256$720000$UAqvDqPGQogFANCBXZzOpM$jXiGDAzOWWHuoKAtZqGTP4+3eImGrLg57JLWFsYpTQM= \N f amina.salespr@gmail.com f t 2025-07-22 23:43:30.9045+00 +1427 pbkdf2_sha256$720000$ZF1ivOca1JX9cYXTptirgZ$oGAlvMlDA0JWruqs2qoyTNPkjfuriRoUTn+AqK0AYXM= \N f artehugotonti@gmail.com f t 2025-07-23 00:35:37.15256+00 +1428 pbkdf2_sha256$720000$SjH9xRNAAKw2Twp0izvUoG$YUcJcLMNtHT0ShlCl30OdWZjKiHuoTQ4j+Rntz9/mFw= \N f monica.lima.maldonado@gmail.com f t 2025-07-23 13:31:18.530393+00 +1429 pbkdf2_sha256$720000$BwMvvwGv3ImzmY5v58KC1d$nH/qVdVma6F7Ipcuwppn1majDqHSYarV4yqJwhlBuHA= \N f crismilon@yahoo.com.ar f t 2025-07-23 15:56:24.840528+00 +1411 pbkdf2_sha256$720000$7VCTSDXBG1MztxCkiwqvYU$zwrySCMmcLyjDn5OeXPPMS1YCgHbA7a+5BYhlm4KDX8= \N f ramirorestifo20@gmail.com ramirorestifo20@gmail.com f t 2025-07-19 21:46:32.794868+00 +1430 pbkdf2_sha256$720000$0ntXuFiquv8Nid2feiplBH$po60hw8QD7il5/1mLzuQCgMc8u6S6PNePhPSb5GiRzU= \N f Azulponce6@gmail.com Azulponce6@gmail.com f t 2025-07-24 11:02:49.974259+00 +1431 pbkdf2_sha256$720000$j5UDZnkdES7I2EflyiXU2b$4K8WUqKtxDGQYuYdncOsQ0Jc9m89ViDPAwsXLbKDbcI= \N f noelia.v.vogel@gmail.com f t 2025-07-24 13:07:43.385404+00 +1432 pbkdf2_sha256$720000$JgI7TlvR1K7DOEEX4KEoiQ$aB++P4Su4eLLGP79ASngLRUPNecODCfjcFboxW/1KBI= \N f Fsantos1704@gmail.com Fsantos1704@gmail.com f t 2025-07-24 13:45:16.228227+00 +1434 pbkdf2_sha256$720000$ULllsbcw8FxjKibH3gJTBw$u0Vu3p2rXVGZK/Bpy6iaVDYJIkMoPzK2HjiAGy4xP1c= \N f dani_catanzaro@live.com.ar f t 2025-07-24 14:48:25.134089+00 +1437 pbkdf2_sha256$720000$XsmBHUR3vGziiHtSPZwKYu$qeDbyJQLn/f92vH/c5cB4XkYn3bEiG+4wHGDxAnePCo= \N f julietadg.0823@gmail.com julietadg.0823@gmail.com f t 2025-07-24 15:59:24.712036+00 +1079 pbkdf2_sha256$720000$siZYh2RqogZWtfajbuRYTK$w1ydMXEV5qLbKJrvswCxxSCDsuFUwt8BRfL6dqZ6AK8= 2025-07-24 18:02:54.932959+00 f chiqui2168@gmail.com chiqui2168@gmail.com f t 2025-06-04 16:14:38.576006+00 +1439 pbkdf2_sha256$720000$uHRRUm2C65VOSBl0bLM0Xe$8ZlZRjTRLg4gPlk4RI2uX9/ZG09A+g/sNuApTxunueY= \N f maxbengolea86@hotmail.com f t 2025-07-24 19:36:12.201352+00 +113 pbkdf2_sha256$1000000$Yf2L3Sn6WMAXbxGYwABcJ9$S5ASYIoqlnJd161I0kTe6FPdsS/EwRR4eF5owqohMiY= 2025-11-26 00:05:31.974778+00 t Milena Milena Colman colmanmilenacandelaria@gmail.com t t 2024-10-31 21:11:56+00 +126 pbkdf2_sha256$1000000$NbuFyNWW10H2apEt0if6ys$6mIMgnnicip/6VRjkM+GqroTWKKkYyMvF/9P93nyqQM= 2025-09-23 16:20:36.669231+00 f nelanonez@gmail.com Daniela Ordóñez nelanonez@gmail.com f t 2025-02-20 15:04:31+00 +1440 pbkdf2_sha256$720000$2ISui0milBRpZeeP43kbCJ$eGyKs9uk7yPkZgo2dF62cVXRrPFDR2o1CL+DSHGabh4= \N f rossi@gmail.com f t 2025-07-24 21:03:44.486696+00 +1441 pbkdf2_sha256$720000$Rtk0viLmwhRBFQF9uQ4q2N$AqUKSgoiaSYlLpIBki7O8DW3pxNijpk2yvcDTf+YkoM= \N f arielsilverobruno@gmail.com f t 2025-07-24 22:22:01.750316+00 +1449 pbkdf2_sha256$720000$JedC6YyKPNTv033iZuGIBC$rFkf2Yg9uPlNAIdU+1S9KTQSngXFdzWwaNrOZzjky1Y= \N f ericabarbera@hotmail.com ericabarbera@hotmail.com f t 2025-07-25 18:14:13.034343+00 +1442 pbkdf2_sha256$720000$rfwwRiBGCfMdXefVCBhmGV$U5v2QBUcCF3RJmJu7xN9AnOaPnb7R80epGT1W3wvAwA= \N f malesantos@gmail.com f t 2025-07-25 13:34:23.804162+00 +1443 pbkdf2_sha256$720000$RDKYvLwXXMa6kNpQDO3vyd$+/e8uKYj6OmAFGR0ZxHscUWuVFzeXa3sdG7GBqBp6A0= \N f nicooflores2015@gmail.com f t 2025-07-25 13:58:03.801087+00 +1468 pbkdf2_sha256$720000$Jpx7iG8PzDgAy4fDSkPOnG$xKWtL7/vwvclNhVLBTA4RFkAMnqLsErSL9KXcQ+Ivc4= \N f Jesicarojas320@gmail.com Jesicarojas320@gmail.com f t 2025-07-29 03:02:46.539108+00 +1444 pbkdf2_sha256$720000$JuQXNEAyEam4qyTebzX6yb$u1SOgfI3+4Jfq3Pj783trw7r+wanEqMy0bHfixhuqZk= 2025-07-25 14:32:34.318365+00 f sylviagadda@gmail.com sylviagadda@gmail.com f t 2025-07-25 14:30:06.819993+00 +1445 pbkdf2_sha256$720000$gsr9Qk6Ens3ANoPHW1bsmm$M6+Ijdxmw4GNejYjxBW1B7TZ3ddSJNfoOhy8OcihV5E= \N f sergiodamico@gmail.com f t 2025-07-25 15:43:37.011057+00 +1446 pbkdf2_sha256$720000$5GHQgo4TTQOpTwiVkCoKfi$tr+qJsmZZw5k4almDAX/+QXuWbZ/NXa29YaJ6P0WTzU= \N f esaideaproducciones@gmail.com esaideaproducciones@gmail.com f t 2025-07-25 17:01:33.138347+00 +1450 pbkdf2_sha256$720000$uxarAIXYRsamEAh4wfCSJf$S0365kQgwZTO0FWRs6goI3dTP/ISSNaWMTSuw+Q86wU= \N f cristinanleon@gmail.com f t 2025-07-25 22:11:29.601712+00 +1451 pbkdf2_sha256$720000$0xu9yqNXuqaroyRXpiZ51U$kPp3a1iq/MSCYFuCBRJcxLi/wpxIC1BKaWY2twXTVPc= \N f debolynch@gmail.com f t 2025-07-25 23:50:23.150692+00 +1452 pbkdf2_sha256$720000$ei7VsYzVEvY67qcMZ8xgTc$iuzMoPfLBZwix5ndxVbfT61PE0TmG6isOpiMF1YT+zU= \N f julieta.deangelis@gmail.com f t 2025-07-26 14:40:33.142143+00 +1453 pbkdf2_sha256$720000$G5uwLgyaH2TKyfE8tyhf7f$Y866mq9F8MMaSGRb2PTg/bEmOH5VoGWNOXxFXQ2pGp8= \N f jesi_1686@hotmail.com f t 2025-07-26 14:45:56.540226+00 +1454 pbkdf2_sha256$720000$Mo8Kh2eEYmKHyLTlOklLiX$AhBnyNHfukt6I2tibkxyma/90pobHLy1+ALtOBcOIx8= \N f jeronimoibaceta@hotmail.com jeronimoibaceta@hotmail.com f t 2025-07-26 15:31:45.896639+00 +457 pbkdf2_sha256$720000$JW0XS3o1Be2v6cwKGATULw$ScBwJRnzMBZE/hnsO0u73pRaXSAicf63rusZPRYvFNc= 2025-07-26 15:35:00.199296+00 f jeronimoibaceta@gmail.com jeronimoibaceta@gmail.com f t 2025-05-13 21:50:49.055329+00 +1455 pbkdf2_sha256$720000$eSzOvRXp4OjjvmA0cekRvW$tTeO3524//XsTCKFykt/cuReoD9kPxfgn4nuhlQGEvM= \N f rferpinks@gmail.com rferpinks@gmail.com f t 2025-07-26 15:45:44.477474+00 +1456 pbkdf2_sha256$720000$wBEfprBkWV0HhfOS3DKBEB$vxDhtgfNBsqCBHU8dzTSdrahpzluXg+SwiwrwIH9cCE= \N f biancaboninsegnaa@gmail.com f t 2025-07-26 20:01:36.955933+00 +1457 pbkdf2_sha256$720000$sNdOamCCSwTl04tzaNvJan$eYL0V1+fQDQwqzKYVReX3sEK2G1SBte8dHVLG/UdI0s= \N f rocioobrien6@gmail.com f t 2025-07-27 14:49:22.93011+00 +1458 pbkdf2_sha256$720000$gkUeDfowkrOT5hZMJt1XM3$8JQNYlMlZiDh0EVrYteQiEDEzl7YwfpZXlXS0fb3VA8= \N f rauldegiovanni@hotmail.com f t 2025-07-27 17:44:33.411561+00 +1459 pbkdf2_sha256$720000$JmYwtrheE6YXkcVbg839al$ig76q8dW6vWga1NyoUBNaUJJXN68TXD8mWN0xAtoIOk= \N f jorge.aulita@bue.edu.ar f t 2025-07-27 19:31:15.824278+00 +1460 pbkdf2_sha256$720000$iljJvS0HlRzObFTYiwzwX6$yoQ8N9QuAZaHBvIjKVqOTkQeZJo2xWUIOBbnyeekNJA= \N f martinaenriquez14@gmail.com f t 2025-07-27 19:47:52.774146+00 +1469 pbkdf2_sha256$720000$lwwDjP5FLVSbLyx93PLkY1$9VX20SduYjy45//+ggHushvwmJQjv39VxYKFnWxJnrQ= \N f garmacarmen@gmail.com garmacarmen@gmail.com f t 2025-07-29 10:44:50.876732+00 +1461 pbkdf2_sha256$720000$o7fjPKs12HqEO47vDHyAra$lKWjQs9s+vuFr+MXvt8osdrObbszU4tjQvyq0Joucdw= 2025-07-28 04:03:58.099083+00 f marcelaaruiz@gmail.com marcelaaruiz@gmail.com f t 2025-07-28 04:02:09.979451+00 +1462 pbkdf2_sha256$720000$eV1NGz5FW5GGd1Fn9Dcqp8$0yU7mcv6sYyFy900M1NZmvXc6B0SiJRu4t2H9i51/74= \N f gonzaloyrivero@gmail.com f t 2025-07-28 13:12:21.569449+00 +1463 pbkdf2_sha256$720000$aKwGhaBDletdinKBGzWSke$B3dj8R8KYcNX6IHYcV901gWbAMuB3ExFJm2q/U2U2Sc= \N f noelia_juarez@hotmail.com f t 2025-07-28 14:39:40.106529+00 +1464 pbkdf2_sha256$720000$D1WQGiq0zSf2MhT9WuEBsE$WJSbmmWKmWxLt9SY/YGCnI1lJHJFy1NlobqXNNlW4Pc= \N f meviejobueno@gmail.com f t 2025-07-28 15:52:23.677417+00 +1465 pbkdf2_sha256$720000$McmIaO6LJCfhlti7FRYuRl$i0/dM6aS/YcdDaFRZZoOrDHZ6S3Ge7ktG6jecbPqAs8= \N f Julian.ledesma95@gmail.com Julian.ledesma95@gmail.com f t 2025-07-28 17:30:51.605421+00 +1466 pbkdf2_sha256$720000$fBN2FVpf0fUmBuvCQjI0UD$c7GTJ/dAMGljBGvHOvRC0gHXKQbKDMplke72koAi8Oo= \N f marale888@gmail.com f t 2025-07-28 18:23:59.933768+00 +1467 pbkdf2_sha256$720000$ASM3CaWSq9chznQw9bCvtf$5HZFymfcdy8KQ+xMfMI5C5sIoYJFKNJ+YJXf0v6tNy0= \N f gis23total@gmail.com gis23total@gmail.com f t 2025-07-29 00:45:50.923485+00 +1471 pbkdf2_sha256$720000$1BJkxcbxBYTdzdXcsR430M$e+2+5c0QldssMG5dgVBedi6u17xPONxR6Vsnlq26kII= \N f ignaciopineyro@gmail.com f t 2025-07-29 13:11:50.911457+00 +1472 pbkdf2_sha256$720000$loyHT57onJsha3o7QDvVs0$LR35ZgmOILXfzSRLtTkaqMTckJ0781JhfmD0M46uo6k= \N f j.nottoli@gmail.com f t 2025-07-29 13:18:10.662879+00 +1473 pbkdf2_sha256$720000$3cGJatMqkg7tc4SqIZctC6$0FFjIMN82Tqr2i4D/G4ylrZ2GY6VJU4ybxiU3s+BH+Y= \N f maricarmeninda@gmail.com f t 2025-07-29 13:49:51.890846+00 +1474 pbkdf2_sha256$720000$Q57kQXs1laZ0cr8h0fJqZX$nNVTAYbVL42aNGIwubI7XSKO4Uz7OYQDYePBqeqK1AM= \N f jesicarojas320@gmail.com f t 2025-07-29 14:40:09.355899+00 +1475 pbkdf2_sha256$720000$0xazbz9slEXhvm4NWU5Ggx$YYsumHxyNBaFG1vmNTA+1L1FoCSvc5GmDyMoEghvn0c= \N f lucianagr@live.com.ar f t 2025-07-29 14:43:22.66324+00 +1476 pbkdf2_sha256$720000$0Kc12h9UMLAOL2rg0wjFw2$/eima5psnPnabTKabcXOD4kU9/7R4tkqiAOJ+mJ+jbQ= \N f contact@sergiobarbaro.com f t 2025-07-29 14:51:10.762074+00 +1477 pbkdf2_sha256$720000$gQGDvmleghs4qeR5csowFs$Hec34IaFg8IiCWSQ5FT8NWTuHI5NRyRM3hxRlkZwHgM= \N f maparusti@hotmail.com f t 2025-07-29 15:15:39.312548+00 +1478 pbkdf2_sha256$720000$aYNwkBE7gFPwan4PscXk03$gUfQ33LCLLaAsPeTleKaVn5UdSCfA9ZKqw4mVWWpSzU= \N f barbaranburgos@gmail.com barbaranburgos@gmail.com f t 2025-07-29 17:41:00.102652+00 +1479 pbkdf2_sha256$720000$BmX6llH2Ccbj3su0U0llRW$U4V8a06rhho0iYbmMp56NKcCjDqStGDZG4ZdBZqWT+M= \N f pizonga27@gmail.com pizonga27@gmail.com f t 2025-07-29 19:10:42.840795+00 +1480 pbkdf2_sha256$720000$sflt3It0oI5clt9mzOPrnW$beun7jh5sjCBKMlfqfZDMAsz4usV4uMm3wQrVmWEEZs= \N f cabulfon@hotmail.com.ar f t 2025-07-29 22:17:20.386679+00 +118 pbkdf2_sha256$1000000$1H0SAJWQygPqmSyTgp7QIT$wHJJVy+d2I8TikYTcmLJ79BitgF/aiue7mnOpQijEI0= 2025-11-25 16:15:46.994107+00 t Agus Agus Viveros agustin@amarmascotas.com t t 2024-11-26 14:45:17+00 +129 pbkdf2_sha256$1000000$lzpu9wpFopvVPCCGiAojW7$AeaGjJf5XOAu33Fa7Ql8NV6TO1InI8O2e53KsNP0dnw= 2025-09-12 19:20:47.984177+00 f colibria.terapiafloral@gmail.com María José Henjes colibria.terapiafloral@gmail.com f t 2025-02-20 15:06:21+00 +316 pbkdf2_sha256$720000$v3o1UgJpv5UCI1QNc8CgSj$5kaKisbCqRukkeBTZV4i55mu6X9TzPxjhqVfUOT6aRU= 2025-09-19 14:41:51.204504+00 f mirta287@gmail.com mirta287@gmail.com f t 2025-05-13 21:48:58.500168+00 +148 pbkdf2_sha256$720000$ipiphvpCE32RAvoAvjnZ0D$ScYSAABezdsPGp1EQqf/8/4mdiKFqqzGO5oyIoUVlLM= 2025-11-04 16:44:15.66478+00 f carolina.v.vecino@gmail.com Carolina Vecino carolina.v.vecino@gmail.com f t 2025-05-08 18:18:50+00 +1481 pbkdf2_sha256$720000$tGHWcrGxroLXA3LKHuXxQj$P7g7wCVws3zcKXc2knEAFDxeOMorYPLinh/IGqaKO3c= \N f pasqualini.florencia@gmail.com f t 2025-07-29 22:59:01.887919+00 +1483 pbkdf2_sha256$720000$55FKf5ggquAZVkpxN71zRr$USxcuYgGmcSwElYr9PsTH8t6/To57gEwZqiXQ1s/Hl4= \N f rinaldi.stefania09@gmail.com rinaldi.stefania09@gmail.com f t 2025-07-30 14:31:19.577179+00 +1484 pbkdf2_sha256$720000$S9BRjaRU1CNwjSxWF9BflU$4i99ZMKnG/NHQV1KdrGMHJwUVU2n0KcVxq1C+cTTC0g= \N f carladato@hotmail.com f t 2025-07-30 14:53:27.782638+00 +1485 pbkdf2_sha256$720000$1RMvQhWGG2R5BFvh54MOQN$rsobCllzVExaxsPlJNNnDDfYhk5MVBFHZ9PNGWnnyLg= \N f alexiam8@hotmail.com f t 2025-07-30 15:25:29.102038+00 +1486 pbkdf2_sha256$720000$1VE54uKIJnURkd0rhjySBS$Xz9idryCjkYYrx3ZjuGfhFHa0LMjFEPgd02UYS34L5Y= \N f samantafrangoudis@gmail.com f t 2025-07-30 16:27:52.347448+00 +1508 pbkdf2_sha256$720000$ooZXLy8qvO5cMJtpoi03qg$PHOWQQGVVeTbvhMEet2Pe2QB2ydhs6QDFK3IwtNiSG0= \N f marialorenacrocco@gmail.com f t 2025-08-02 18:18:05.48213+00 +1487 pbkdf2_sha256$1000000$KwdTv0rk53PA5y1GKV8s4E$7lwfczhBzRnX8d+xjXJcNQEaKPuVh+QnBlXid3oZ0rk= 2025-11-11 14:52:17.883741+00 f daniela.herrera@usal.edu.ar Daniela Herrera daniela.herrera@usal.edu.ar f t 2025-07-30 17:40:27+00 +1488 pbkdf2_sha256$720000$NQCknlnEMBotfX8EN1zx9P$9SrYS3jvSIAJIbcFBslP9jhAJ4wYypqrFMsMedx/4H4= \N f jimehenriques@gmail.com f t 2025-07-30 17:49:40.982886+00 +1489 pbkdf2_sha256$720000$QmJQZcQfnldKRJ01OiANlI$qROe2z6OWv1Vjp8fMO7MLavLFFSplrrOBU83uBUi3Fw= \N f hilsenratiara@gmail.com f t 2025-07-30 22:42:47.12989+00 +1491 pbkdf2_sha256$720000$bJI3pJCrUB500qOe7YIIDr$8931fOAYqGNES5jd7Ize0dade3dwnKLAoVVFoqMUCO4= \N f monihenao7@gmail.com f t 2025-07-31 13:10:08.380924+00 +1492 pbkdf2_sha256$720000$y11U2vieaXwiRIivw5WCLc$dZjyPl/lX0aMMNuB7g8MWmQ2FF3HXy3VEFIChXzAEEk= \N f andreamizda@gmail.com f t 2025-07-31 13:47:34.203971+00 +1493 pbkdf2_sha256$720000$ausnGLtpnmW97XclEorEor$7C3A6+ATvXdiLmxYqXXdtgaE3O43unZxsRv0jB5Kzj8= \N f mariana.casas2287@gmail.com f t 2025-07-31 14:37:51.13134+00 +1494 pbkdf2_sha256$720000$gZ5OZiEGgSEV9itqhp2x9F$DzuledkKEHMZ3PdpLWnEzI/x5E4uv6FXivfP2/FrrWg= \N f rodriguezdilucente@yahoo.com.ar f t 2025-07-31 17:40:15.125611+00 +1495 pbkdf2_sha256$720000$eyOe9yNRmJu7Sy3y4ZI4NR$go5G3xtEN5R6MCkwbSBBRensHDLYhS9raaGkHxQuHt4= \N f damian1257@icloud.com Damián Galiñanes damian1257@icloud.com f t 2025-07-31 18:18:47+00 +1509 pbkdf2_sha256$720000$QSWjdVSa6GJb7nZvRFFH2t$Zi/1KYmOD08fK2ffresrrSrWC6O6J0fxus3L27BhtbQ= \N f vimaaguero540@gmail.com f t 2025-08-02 18:29:56.744835+00 +1510 pbkdf2_sha256$720000$iDFDJhlNoNgsFYUli9ct73$Zm0ve9ePlmzKVQiA0uAOVHINBqtfsX5wLeWvDbo9+cs= \N f arianacyn@gmail.com f t 2025-08-02 19:12:01.137925+00 +1496 pbkdf2_sha256$720000$G3PbPYkMwyJgEQhREcRUQD$i3GSr5hY3nQMcgd0DZkdiIWPZ/J7I3c9EMvgE1zfMSc= 2025-07-31 18:56:40.4511+00 f Fariasbettiana@gmail.com Fariasbettiana@gmail.com f t 2025-07-31 18:55:04.616785+00 +1511 pbkdf2_sha256$720000$7AC2tu7LAJXCOblBABWtiN$0xAXepMxs3j9zWNPm7zPIEFDVbdml3CU2ZvuKNgOEFI= \N f eva_s04@hotmail.com f t 2025-08-02 19:50:17.85022+00 +1498 pbkdf2_sha256$720000$fpSnCM6n78lcKHIKQHKQUr$C2RMaAe7Dt0kb4U4CuOfsa8OgKCNmujOBSOHrsiiZHE= \N f florencia.mercedes.05@gmail.com f t 2025-07-31 19:30:32.199254+00 +1497 pbkdf2_sha256$720000$pRnv40sT54aCS6HH53XCO4$2hS4lMwhjN7yu7RNdtsTmQBx3KrC+zKenkl5MpvQovQ= 2025-10-07 16:57:12.487426+00 f ayee.salazar@gmail.com Ayelén Salazar ayee.salazar@gmail.com f t 2025-07-31 19:00:52+00 +1499 pbkdf2_sha256$720000$6feQtRuMsmd8kq8pXvLaZu$6cHZk/XSwrabx5iqgAovtDiSSeOpWTr4WWtfyVaKEnQ= \N f jimemuti@gmail.com f t 2025-07-31 22:48:00.907339+00 +1490 pbkdf2_sha256$720000$Vx491uZXSq4vK7tXL97U8O$6qzaNcoirLXmlunvPKevJpg9quY/U5UNkQr/Oe30kmA= \N f nico.nif.figueroa@gmail.com nico.nif.figueroa@gmail.com f t 2025-07-31 12:39:09.183972+00 +437 pbkdf2_sha256$720000$ZHr07L455gxaPHEDxjMmzp$wLRbusjSqD22FXX25zeta8CQoaB8zGdaO0xSEJ2kfGQ= \N f capdeviellecarlos@gmail.com capdeviellecarlos@gmail.com f t 2025-05-13 21:50:32.984092+00 +1500 pbkdf2_sha256$720000$1B2VE7CBYaaNl9Fm7NJUJC$S16MEqIiZx/GjumvgVb5WZUF8yNizxwJhG9hf8hZsJ4= \N f ccazzaniga@gmail.com ccazzaniga@gmail.com f t 2025-08-01 16:05:37.574531+00 +1502 pbkdf2_sha256$720000$xuR7L0xniafYc3f3EmGXrJ$hDCr9OK6TSCVeMLay56RT8K/CMaaKwXGTmc6R/qRp3Y= \N f marucomerci@gmail.com f t 2025-08-01 17:50:33.538494+00 +1503 pbkdf2_sha256$720000$D74HYyJjD2MJloAR1Dyoxs$DLt+UrpGDytlRiWnpEoT7v3zZTjmRH7jEqvb9DcObWE= \N f claudijuan2013@gmail.com f t 2025-08-01 21:22:30.650602+00 +1504 pbkdf2_sha256$720000$BMZ1vS47Lgw80vCwKT4XTe$ICxk4fZZcz8rdVJofCyNxYkAjb5yf5GTGalukHAhhIQ= \N f micaela.duncan77@gmail.com f t 2025-08-01 22:19:47.096495+00 +1512 pbkdf2_sha256$720000$WxmRCMuA475pSgw1jHFqrI$BbCx4Pcu2Hw7xsmTrG7iY2Stvt/2eTlqmrhKsGXWSJY= \N f yessik.1130@hotmail.com yessik.1130@hotmail.com f t 2025-08-03 08:10:11.132696+00 +1505 pbkdf2_sha256$720000$GkS1YKdt8R3Qylp0ErnyV9$Xli4i5em4AzZ+eAR5lK1AHlyel/HA9XPpY95X/prRbE= 2025-08-02 15:23:56.475089+00 f mnsanchezdebustamante@gmail.com mnsanchezdebustamante@gmail.com f t 2025-08-02 15:22:46.501073+00 +1507 pbkdf2_sha256$720000$CAibtPmh0r1dnc0sB7SWtf$Xu1G5NHzcskTULJqtH7wIjDVWXzcky0uHFgia06Lw0Y= \N f el.akdmiko@gmail.com f t 2025-08-02 16:33:03.810925+00 +1513 pbkdf2_sha256$720000$2jRy8R5RWzITxIrQsJDB9A$/F19gDhLN+tSSY9CLYVeymStdDeoCDTWJ7YpLhTMGGA= \N f memiliafruto@hotmail.com f t 2025-08-03 13:22:34.514184+00 +1515 pbkdf2_sha256$720000$KgEkV9pQqiIDZ73ruWF5E6$GRK2cHd8+V0mELGJhh1d26+7tl8ZSDWmss6fGSnvs0Y= \N f jessicaparragarcia@gmail.com f t 2025-08-03 15:50:21.515332+00 +1516 pbkdf2_sha256$720000$8hegulhbqvB0zHA9T0qqfz$bqUfo9/fErOIenZv/RCXeuj3PXe+Maxx3Frna7xKgXY= \N f laura_ffernandez@hotmail.com f t 2025-08-03 19:28:46.074337+00 +1517 pbkdf2_sha256$720000$kxDaV96nANDHp3bOdDuZrq$d/a5OAL4BVTlVIIsHlfJkPmKPOsr0eoR/DQJtWFHivI= \N f Melisa.acuna@mirgor.com.ar Melisa.acuna@mirgor.com.ar f t 2025-08-04 14:51:01.191377+00 +1518 pbkdf2_sha256$720000$JM7xS9qceWhdIo9tyBDmsO$n4EjZ8WKh1K/5ipG+xLAE6VLflw2KBQOY8Zkl36HwCw= \N f robertsmariom@hotmail.com f t 2025-08-04 15:18:33.552924+00 +1519 pbkdf2_sha256$720000$SBuDCBCUYORcuDI922Q0sv$oNuEp6N5YK/JMbnfItWCmqF3JWknl1KP4jYppRSdwfs= \N f roxanaramos191@gmail.com f t 2025-08-04 15:23:29.340915+00 +1520 pbkdf2_sha256$720000$07JLICKsv9eDuJHllRUdUt$EI3qFBnUsMgRNsJbh+1NUFBShErh2xSXzIuh8oisRzY= \N f mell.yacovenco@gmail.com f t 2025-08-04 16:44:15.534906+00 +1521 pbkdf2_sha256$720000$KxhXSIoKUKdEIryVDMZSvu$olYJGJZ6FAvBYAYKZoiqOZZVLs1I0DQtZ9Sp4PBgmNQ= \N f florenciabenteo@gmail.com f t 2025-08-04 17:22:42.285587+00 +1523 pbkdf2_sha256$720000$mjmwTwniDhx8EsI2qzi8Q5$sB2RD2N5CFh7tmKCTL9WeA/jUMI+Ht+RaiIP9fSb040= \N f guilloquiceno@gmail.com f t 2025-08-04 20:16:41.100803+00 +1522 pbkdf2_sha256$720000$D4zSue4vUhoxkTpflB4jq8$ioBBNdjMah5Qt6zp7hXwpuLBpuMzDhe+CtHfcF6UQ90= 2025-08-04 17:42:08.657025+00 f ceciliam.miguez@gmail.com ceciliam.miguez@gmail.com f t 2025-08-04 17:41:09.676119+00 +1524 pbkdf2_sha256$720000$rN7Vjp3pNTcx1GgERy2ysK$sGrcCFwSI8y8YCWi1oLP4LnT5g+YEgW5pio6AlnOaj8= \N f segolau75@gmail.com f t 2025-08-04 21:38:13.010858+00 +1482 pbkdf2_sha256$1000000$9EgSKXmJTL5s6MEO88qAKe$T7OoHJNnsq/FnlPksz47zQ4yX5tOf7t184FP7AjUiEs= \N f loustauf@gmail.com loustauf@gmail.com f t 2025-07-30 12:25:39.261157+00 +1908 pbkdf2_sha256$720000$JMppho4PgomoyB9f8Z99ap$5YavTy8urQF2KNDAJ1UOPA7/paKFOyaPojiqkixApjY= \N f daniela.cecilia.a@gmail.com daniela.cecilia.a@gmail.com f t 2025-10-25 15:34:20.894827+00 +237 pbkdf2_sha256$720000$7Xv8DOUMkNSZjK2i79wI7N$Zq8JKOV71lTdAFv28L30GzPq4t251GOqz3O08T1ISkM= \N f deluca.gaby@gmail.com deluca.gaby@gmail.com f t 2025-05-13 21:48:00.231449+00 +1525 pbkdf2_sha256$720000$y4hjdDDS1Fj0t2wwg6L4Rq$Ny+mATJog62fcaYmVHddSFTVBl0lATDNbNpCH9K6BuU= 2025-08-31 13:47:30.591761+00 f vanesarosolen39@gmail.com vanesarosolen39@gmail.com f t 2025-08-05 11:50:34.649437+00 +1526 pbkdf2_sha256$720000$TUzaoRdNgJgHtORO0X19WF$AmhHk8lH5QgUQimvz6SuhBMfGM0TAgSYPrep1HYqYes= \N f Marcela_perini@yahoo.com.ar f t 2025-08-05 13:16:12.410225+00 +1527 pbkdf2_sha256$720000$oYvcXPuMIiWig32DpJi5hD$EKowWYlfJiyH1p8RP3JQZvOhMkJVC7MaJmICvMYEP2w= \N f simonsjimena@gmail.com f t 2025-08-05 21:11:58.605201+00 +1528 pbkdf2_sha256$720000$b09AQKvmGshaG95Rangd0S$yFVAKHn/JvJ0wTc36wLM93xEo+VQGLcFQvMr+mHg6DE= \N f mogasi.78@hotmail.com.ar mogasi.78@hotmail.com.ar f t 2025-08-06 00:32:43.684809+00 +1529 pbkdf2_sha256$720000$LhO1igZjdBKJ1YkBE48Qmt$WEeFjUnwhUkBgFdoRlL8l5WciUGr3T7lCSEcsraYJcY= \N f dm_gabriela@yahoo.com.ar dm_gabriela@yahoo.com.ar f t 2025-08-06 02:19:33.243371+00 +1530 pbkdf2_sha256$720000$t9Eyees9lwid3rcJKbUan5$VlM4CmBjaWyQOMBSD7ypEnUfIB+Z/l7kQLZHOdOgr4s= \N f troconizgrecia@gmail.com f t 2025-08-06 20:14:14.778036+00 +1531 pbkdf2_sha256$720000$aVP2Erkcukas95dUYJuBty$0FJy0oJOD3OhqlWw+ja4fesE0nUx/clROXerpcks3xo= \N f gera.mlorenzo@gmail.com f t 2025-08-06 20:22:13.199232+00 +1532 pbkdf2_sha256$720000$etvb57DROZmZk1WkYAwAMz$q+xJdu6ImvV2MNUn7EQXrg24M6rbs6005HRFcd8+IPY= \N f julieta.bogado@hotmail.com f t 2025-08-06 20:27:55.295358+00 +1533 pbkdf2_sha256$720000$Uy12uDNirHV9S5hNuKzUDp$JcTIFIoCstTZOzHMiiukYW+1lmllUGR8wN7J5wNz4no= \N f ppallotta002@gmail.com f t 2025-08-06 20:38:41.295106+00 +1534 pbkdf2_sha256$720000$jgpPSFRFPPt28DA4RiDdB2$2F73DwriXKYnWjwQStgczIsT8hHpYuEAQdvBvLjEdrw= \N f natyprodan@gmail.com f t 2025-08-06 20:45:47.390523+00 +1535 pbkdf2_sha256$720000$ST6gEp3N7hFVS9w5LYPFc2$xTDqrMSbeju6LcLol8QYPJlQ13QDVCCaSyq2GV3LW8U= \N f thiagolmgsm@gmail.com f t 2025-08-06 20:48:35.539321+00 +1536 pbkdf2_sha256$720000$WFIASN5kzM4nJrOo8QudXy$KmqnAdKi+WRsP8GsvnSJPshGe+U6To4d3g7xsl0SqxE= \N f carlisflo15@gmail.com f t 2025-08-06 20:53:38.577057+00 +1537 pbkdf2_sha256$720000$LJM1iRcQyN274wMxKr7Zdp$NMhBmRnux+QlHk4iR9dM+ZFw7+ndq6aaW+5mcU7T4Lk= \N f eugemeza22@gmail.com f t 2025-08-06 20:58:26.965146+00 +1538 pbkdf2_sha256$720000$j3v037aCIxZEaRqzPJvLy9$OGzEqPSfku1EEsDU4ZlZrBSsULC6FYIvub8LIqFY3mE= \N f mathiasgabriel0011@gmail.com f t 2025-08-06 21:05:25.230327+00 +1540 pbkdf2_sha256$720000$mP4VB2jUmdCYxf0sNMGByN$wcyMq6zluVsVU1QuIEvQB9fDd1M9hjjpDiVGO6MyB4I= \N f moisespalacios1942@gmail.com f t 2025-08-06 23:19:01.78903+00 +1541 pbkdf2_sha256$720000$gVWKK7kjb57Wi5Ji4MBtGC$HYP6bg0rUl8ZxBieC03MjmljQJHa+fjXfmkiYfAYp48= \N f agusvizzolini@hotmail.com f t 2025-08-06 23:25:01.103286+00 +1558 pbkdf2_sha256$720000$NFxaYFavQqt1YxAZXAWscN$3of50m9fowsgBjQ8uB9llYDewqBexSJXs1Uu8NeaE7g= \N f yvonnelemus007@gmail.com f t 2025-08-10 18:59:04.8531+00 +1542 pbkdf2_sha256$720000$JXlNtqVRacJacQixgntZwp$fnJDgVm2Wx9cIe+RZSVyUFt7mntUhU8rsFdCWbxVeqs= \N f Aguilarmagali@yahoo.com.ar Aguilarmagali@yahoo.com.ar f t 2025-08-07 03:38:35.721081+00 +1543 pbkdf2_sha256$720000$yAmSAv3xq6yYC7Yv8mG5qI$S2SYww+0jnrh88Jy4i35yaHEFdkig8LowR++PNNkgso= \N f ari_devo@hotmail.com ari_devo@hotmail.com f t 2025-08-07 18:13:52.804039+00 +1544 pbkdf2_sha256$720000$cpAH9Vyp3oyWpKTLIc43tf$ZJJ3p5QYgji4dJt/VKLCajmYMmYQyAkvpnWoSYBdjl4= \N f 9999@gmail.com f t 2025-08-07 19:37:58.970201+00 +1546 pbkdf2_sha256$720000$f76evtYeiLcBSVcvCSlCYp$MIzUZeDrheLCB3jC8h9fHs1xSrSS8q29VMU6y7+EGDA= \N f keyla@mujeresalvolante.com keyla@mujeresalvolante.com f t 2025-08-08 13:18:55.629081+00 +1547 pbkdf2_sha256$720000$o50NQIAcpMeS6rBvyMmML1$j0E3QZ4GmlnVlRf1A8X5GFtUTHIysP7fNcnXVoT3oYM= \N f lapatas@aol.com lapatas@aol.com f t 2025-08-08 14:40:08.962083+00 +1548 pbkdf2_sha256$720000$6J7XkezuU8wuhmC8b4wMoF$4lSss6qNlndLjNfQTR8cXBfqLLGwO95eEuWLhlHmMOE= \N f rogerjalva@gmail.com rogerjalva@gmail.com f t 2025-08-08 17:37:19.89779+00 +1549 pbkdf2_sha256$720000$fPj50NKrYvH8UC7naIN0Cz$BwSfBTp0Gj4q5az1MdLGsrSrIU7Xa+o+igbPbo0kTg8= \N f franmifit@outlook.com f t 2025-08-08 20:59:39.347341+00 +1550 pbkdf2_sha256$720000$NpkJ6OiUi4PTkiPvoq7aMO$vDkhxzS90o/C5/MCzGhJ5MpApzK4k1GiPHkQchSfKw4= \N f magalinogueras@hotmail.com f t 2025-08-08 21:05:38.905211+00 +1551 pbkdf2_sha256$720000$FnrcwCCMIKrRAdGcrYGYCY$yovKpXr4xKjCLDG5LHJqOR+t9161ZysO8CnSj67aP9s= \N f marparedes1301@gmail.com f t 2025-08-08 21:09:44.471106+00 +1552 pbkdf2_sha256$720000$41qn9BnGeZbtbJDUfERYTo$bz7+Cq0UJNFmavrj/atFnme5dGvxobqjspOw8PU2lKo= \N f mfergh@hotmail.com f t 2025-08-09 15:51:52.484074+00 +1553 pbkdf2_sha256$720000$HtBWdYbqCAxWwEoOP9WA7Q$pMHYdHerj9kD5HZvKahDMc+Fo7B/rKBE/6vbFInh2RA= \N f aldidevirgiliis@gmail.com f t 2025-08-09 15:58:51.862747+00 +1554 pbkdf2_sha256$720000$kSSsZlN9UBJnTkC8bQv5VS$yoVD5gQOo3g0xXAF96S25DfYQ3ugld/BZN842N2TYPs= \N f briascomariapaula@gmail.com f t 2025-08-09 17:09:08.549687+00 +1555 pbkdf2_sha256$720000$a1JHuwDtvkIRskVuw08Xb7$hSB0wTMk/KuoUaqQ6RNayAKv94ISMk8FADOV1eR/M5A= \N f einmacao@gmail.com f t 2025-08-09 18:16:38.511661+00 +1556 pbkdf2_sha256$720000$uuGQrQhTYSLflW0PLJUfbM$0aP2UIjU9gKiCg7lHOyi+WCqPiUI9mhusG/XN71VfAc= \N f diana.visbal28@gmail.com diana.visbal28@gmail.com f t 2025-08-10 14:03:06.901849+00 +1557 pbkdf2_sha256$720000$e56vKPfVst1YJIHUDYRlms$VFthglV8/ndHm17GCWmmy8PWz8x/6i+s2XzE3ZBbKLE= \N f laurenti_sab@hotmail.com f t 2025-08-10 18:09:42.978244+00 +1559 pbkdf2_sha256$720000$PPItDmA2eZedb0JSkr6ZkC$zsXo51Bvfsjci0rByuIs3onyly8rKKIk7g03Qd3REu0= \N f jcnf19@gmail.com f t 2025-08-10 19:03:33.260048+00 +704 pbkdf2_sha256$720000$hDHDL5MyJWZgYcR3zdP2NN$RdUww8m+/RFtR3ruEGdN6FHeTK5RH9ofxp5gLemJvF8= \N f claucafe@gmail.com claucafe@gmail.com f t 2025-05-13 21:53:59.032013+00 +1560 pbkdf2_sha256$720000$XWOzMzqGkDiIuK8Yt3daKQ$IxVRSOkjHTNKx7Twy36wl2OcOa52AlBf1Bf5CPx/RXI= \N f josefinastl@gmail.com f t 2025-08-10 20:56:47.099507+00 +884 pbkdf2_sha256$720000$drNtzDudqRKgjQzneWM6ND$WV//61ANncEI01IcXjDT3AOp2M3wEiv0Zv0Y4qgi8Aw= \N f yuli.29288@gmail.com yuli.29288@gmail.com f t 2025-05-13 21:56:27.221453+00 +1561 pbkdf2_sha256$720000$5WsE3K75Y9CTqtJVgY4DqJ$GR8qTpzTuSqGKYxQiEQTJWUGIg5O02WRDB4GdFXGXcc= \N f damian_stasi@hotmail.com f t 2025-08-11 18:45:30.541092+00 +1562 pbkdf2_sha256$720000$aMOOdLVVeeDtLkpdieU1fK$+JD8vyu0okx5TPuEw0S4LHAiOheKKH3g53jeUN0xQtM= \N f sbearlfc@gmail.com f t 2025-08-11 19:19:16.477978+00 +1563 pbkdf2_sha256$720000$3oBHYxMpPORnVY80slMiDD$Cug2UYTNgWQblu8jwSKHaTQIrR8gPdDu2N3auJNCsJI= \N f lolaynahu@gmail.com f t 2025-08-11 20:18:13.864507+00 +1564 pbkdf2_sha256$720000$FVfEtDAibewxE9OqO3bREu$eXLVLWzh0KdEtxC/ldtNwdbpV2xJ/aUlFr73ss3BYkA= \N f coronilgi@gmail.com coronilgi@gmail.com f t 2025-08-11 22:55:40.066185+00 +1565 pbkdf2_sha256$720000$AHXJsCGyM27qFn5ct76pjo$rJzsfGd1Sgeb/TjUgVZAH6gjERvbM5K14nNnFTGkuNc= \N f giselleord@gmail.com f t 2025-08-12 13:19:13.889295+00 +1539 pbkdf2_sha256$720000$QhoOcjOd2RfDGFKrDBkWsf$J6t9ypKv69+D6OO4J6r/1mrfZ/tEQ09G6z3N3wfgfJM= \N f pacele16@hotmail.com pacele16@hotmail.com f t 2025-08-06 23:08:58.800038+00 +1566 pbkdf2_sha256$720000$cGSaIZmuHAB22nJWawjcxH$7WHDYxkuGalBsAM6Zz/jMsGNEVIE2eY8QVDzpmDSgl8= \N f sofisosa09@gmail.com sofisosa09@gmail.com f t 2025-08-12 18:36:18.640062+00 +1704 pbkdf2_sha256$720000$V1t8TpxOA81RIqsqTURuZ2$anfn0PeV/qRdmbLQnaY01Wf2vXJGiBjiw+dmOBNzoak= \N f b@a.com f t 2025-08-29 19:24:23.223868+00 +1568 pbkdf2_sha256$720000$fni0NX5ljgKZLBMrYjRK58$xi3MwCzuhLNBUXr3+f6sxceRmMHyihLc+6dvh5U+LUQ= \N f laurenciabozzo@gmail.com f t 2025-08-12 20:02:01.838869+00 +1569 pbkdf2_sha256$720000$fKiH8mHBJF1WcLv6uMu9Rr$g0T2Q4s5ercsgGNo6IiWqDINsP/BRvdebavVZHHezmw= \N f natalyagerber-1981@hotmail.com natalyagerber-1981@hotmail.com f t 2025-08-12 23:47:42.515012+00 +1570 pbkdf2_sha256$720000$QDFQaQ7TYMI8lvLdo35Q01$bzENg/y9qqNOnfjiRzTthO0SivZBI/SsTi8aS2VoDYs= \N f solossuna@hotmail.com f t 2025-08-13 00:15:41.092543+00 +1572 pbkdf2_sha256$720000$iWjYm5d77hkNFXQpxVGaqM$5hPMC/21cweQIm1NmOTFT2QCVrdHcOH9iwHPuS0wbqU= \N f paulsen.florencia@gmail.com f t 2025-08-13 17:51:16.384015+00 +1573 pbkdf2_sha256$720000$0yeT6XZC58anC2Lzo8X4bo$pwH14/kkrr8MmZu6S1PvUTaKx7XFjn32hfmKCoLl7HI= \N f vemontera@gmail.com f t 2025-08-14 00:11:07.561312+00 +1574 pbkdf2_sha256$720000$prkoLAqvuvVVv47CqDzymG$dlBYReQ6KgknT26/XBZgmpR+vhv1W2aA+DBua8B+mzg= \N f astridmorate@gmail.com f t 2025-08-14 00:19:03.459316+00 +1575 pbkdf2_sha256$720000$d93bACACg2CJefo8Ql7yqz$MyH9ZNPxI5FGCdTxSWP9d8om7rnKac18ODZCYbXQOM8= \N f ay@lanegan.net f t 2025-08-14 00:31:14.972778+00 +1576 pbkdf2_sha256$720000$L3tj9ai0Z354QrbcVPx96N$solmBtURRlNY4oQzOurjN/S2NOWGEZuQ+uQvuP1Vzcw= \N f victoriabtesta@gmail.com victoriabtesta@gmail.com f t 2025-08-14 11:31:29.121368+00 +1577 pbkdf2_sha256$720000$PFtp830hVI51j67qPqMuzO$W0XDGBRUMhTXA70IQDYvvz8ybGyIJYo2vbXCGUvLfos= \N f nanaquino@hotmail.com nanaquino@hotmail.com f t 2025-08-14 12:29:44.472703+00 +1594 pbkdf2_sha256$720000$xe1DT1S6TFJNzKA3kxBYNi$waTVxoUi10OeUutPNhtvWn7cSEFaCPWEll4oRCUzZGo= 2025-08-17 12:45:05.395194+00 f claracarponi@hotmail.com claracarponi@hotmail.com f t 2025-08-17 12:43:08.229903+00 +1578 pbkdf2_sha256$720000$fLHipgpO8PrTwyDdkiLcoz$5zIdsqxRjAsKp+GiTjYbw9TX1woiRiEkNEheg5dltnA= 2025-08-14 15:58:46.141948+00 f silvana.codino51@gmail.com silvana.codino51@gmail.com f t 2025-08-14 15:55:44.195831+00 +1579 pbkdf2_sha256$720000$EWtctJao689WGePtiIdsCW$vBN7lFThjrBuJoJjkrpc1UtWu0UUId+jhIqMlWgy1C8= \N f valenmarvaldi@gmail.com f t 2025-08-14 16:02:25.857524+00 +1580 pbkdf2_sha256$720000$RsO23Dcv1aPz1KoyUfUtQc$Se1jPFe9XN8ClxKF1VE6EOLYVF9sySLPbLMSIW4pz44= \N f mccoyo@hotmail.com f t 2025-08-14 20:42:00.486545+00 +1581 pbkdf2_sha256$720000$I0lV1wwW5txm2UnntLrPNa$mxKuuvx27El5Oef3loAGMoJeklESm3ePmWdiPkymNnc= \N f lucasfucek@gmail.com f t 2025-08-14 20:47:05.391342+00 +1582 pbkdf2_sha256$720000$ynEU6hfCVNYCcBHuyy6qQu$aaZsk3nzYsePWxV67D634ttDYbmFWj5Pui3Zl0ZFEXI= \N f fernandapastor.84@gmail.com f t 2025-08-14 20:55:46.18032+00 +1596 pbkdf2_sha256$720000$kpZLUqobyvFXxz41EOfhxy$w2EUElBr0G3qttE8nQ3VgQY5/CFrmbUWSqTC6lNP8h4= \N f mnela.maldonado@gmail.com f t 2025-08-17 19:49:02.764378+00 +1597 pbkdf2_sha256$720000$fe0vKjrkyLXSUA12OvJsm8$OrdVZs4iC10bbS4TROm4FTI0hnEsppWs8lXqvLTRSxU= \N f fedexq@me.com f t 2025-08-17 19:57:26.222798+00 +1604 pbkdf2_sha256$720000$zM32R4e35T5ID6rBg2mlcz$bmF2L/hPzbwBJ6vh5g2Siidn8mxte3ss4GVxA7inwRY= \N f crisplatz@hotmail.com f t 2025-08-18 21:29:29.82393+00 +1584 pbkdf2_sha256$720000$OiJKhIJOhPjvDlwyqHL3ZW$I0wcCMYuMNfnYIifxAAJsd2tkhRwOnkavwT/bgzbsbQ= \N f ygs7419@gmail.com f t 2025-08-15 15:43:20.919616+00 +1585 pbkdf2_sha256$720000$TH9RLB4dZTGgVne4jKnqGE$tHjsBKzEC/SpJ57gJS88EsKpQ0+tv9xZK0pkJ1T6h5s= \N f myriamarditi@gmail.com f t 2025-08-15 20:49:50.357566+00 +1586 pbkdf2_sha256$720000$PICJ4Wx3yW5HE1RgR9kfjX$eTxsgpbbfkQXcODDMgoA6t4ve4Yv1UDZ/EfExiFy5Io= \N f chc1967@gmail.com f t 2025-08-15 23:20:33.085346+00 +1587 pbkdf2_sha256$720000$cAh1Ul2eHf9sMOi9vCPMj1$utAxyPmv1X1SKau7+OT/F2aM1aVRFQfoxnHayQ0haLM= \N f martin.arman.darak@gmail.com f t 2025-08-15 23:27:32.52849+00 +1588 pbkdf2_sha256$720000$2fVusJy6ssOdzNxj9xhJaj$Tzu+LH07U3CfuJOO9ImN/G+p1YgkBjoAeWbjTT0kIFE= \N f herrerapamela.n@gmail.com f t 2025-08-15 23:29:34.292005+00 +1589 pbkdf2_sha256$720000$7Jej6Q5yy1htVJoFUoZDxW$ZZWRXz2p+jhxyi8XdNILckrxVUIPf+JLIS9Gxk3HNQI= \N f meligrace8@gmail.com meligrace8@gmail.com f t 2025-08-16 17:51:46.318245+00 +1590 pbkdf2_sha256$720000$1E1TiyDxlu5ICenfLgRjLB$vPcEGx7CrKkwlAYX29JM15QTDk/HrCNYXTaqASaSOHg= \N f lorenaruthmirandaok@gmail.com f t 2025-08-16 18:29:29.539403+00 +1591 pbkdf2_sha256$720000$6RmnjEpDIGvlzCrzfYJ8Ay$fST1JYHnZRmdS3ICOEHUk/vSZnUSTqs3DfFyEsu6OS0= \N f dra.agnethap@gmail.com f t 2025-08-16 18:42:21.58171+00 +1592 pbkdf2_sha256$720000$eFohomYSI07FxjZmnxRouH$LhlHPF5eT7a7NM6z+2rOCPUrmuhH+Kj0gIfuRr9P5oM= \N f Paola.soto.log@gmail.com Paola.soto.log@gmail.com f t 2025-08-16 19:25:25.214086+00 +1593 pbkdf2_sha256$720000$3KAWUMaL8o5RkJKf0IGyXg$TspvOu0p/DtG3D5EiVUUa6nDRe0lmjrdDkn1RIcqa/4= \N f eutoniaymovimiento@gmail.com f t 2025-08-16 23:07:35.624162+00 +1598 pbkdf2_sha256$720000$af2D5eNTaUSlwWANqba85W$0nws6pjOB+BTX9LXZv8w+LB1twRtm5cKgctxdBA2Vqc= \N f lalutreviso@gmail.com f t 2025-08-17 19:59:18.246211+00 +1599 pbkdf2_sha256$720000$5U4lhe3L3EqlWRzFagilux$958IlXPUeDpo04aYz5AzvR9CQr7mg4Eo5GkUXACpZbc= \N f mariasraik276@gmail.com f t 2025-08-17 20:04:46.975792+00 +1605 pbkdf2_sha256$720000$hTn2yrWxpavVLsvvDSdJ6u$XOKnezNA0ObGFcs2WkZRNwaR0fi/7KvUAFfQ+IdT1JY= \N f montanifern@gmail.com f t 2025-08-18 22:52:41.234285+00 +1600 pbkdf2_sha256$720000$8q1F2WwRij9GpkODUkbXj3$6CeNoq3Qqlva5L3cEMdlEH6hgdlJpaXWgsvlrgILioA= \N f agiusol@gmail.com f t 2025-08-18 16:33:50.806192+00 +1601 pbkdf2_sha256$720000$JLkjlDMmfNKuRhLhK1I5HM$0/lYt7U+CgkLQrBGKy3QuspCXBPO96cONqRHNw3Zn3s= \N f sofiaproduccion@gmail.com f t 2025-08-18 17:08:54.679872+00 +1602 pbkdf2_sha256$720000$ilikW0ncLZiw3QIYrCtFg3$ozUOE7ZPMu3Jkp9Ebe7vUsSe7x/80rq3HOjUc0AF5b0= \N f isvirdav@hotmail.com f t 2025-08-18 17:18:40.686705+00 +1606 pbkdf2_sha256$720000$3aVLqaxKxst3eW7XiIz2N2$fevwTt1QiwUHcrmr0ejmR4w4Jve9PQePKRc1K1yipNQ= \N f Renata20104@hotmail.com Renata20104@hotmail.com f t 2025-08-19 06:48:21.952087+00 +1607 pbkdf2_sha256$720000$whcc41Z8OCkEuAWoIe3hy8$yHFoQ9cZII9VL9BUvaDME5nt6F33tabMhhtgMxhhlDc= \N f RENATA20104@GMAIL.COM RENATA20104@gmail.com f t 2025-08-19 06:59:46.250684+00 +1608 pbkdf2_sha256$720000$FIlpv5yrunGALRYZ4rBVfx$+olnSBKXxXa2IyAXD9mcaK01JKHKy6GktvE6SsVRsmw= \N f manuelalemanchaparro@gmail.com f t 2025-08-19 13:32:06.210615+00 +1609 pbkdf2_sha256$720000$E7Sx7pL4SjNfPO2BiDf4CN$TnZhVgoJC9gqtg5f5fygE40yCk6nDht7t7xJZ7sSnRk= \N f dimareivana@gmail.com f t 2025-08-19 14:37:06.659905+00 +1610 pbkdf2_sha256$720000$agNY8qhj5h3UZt4wN214Vq$AgfoLC4t3KLY3EMx1swXrERV1V9ASeLp1Njj9Ngr3CA= \N f roxy.villegas74@gmail.com f t 2025-08-19 15:41:56.145817+00 +1567 pbkdf2_sha256$720000$hdMtAd5smbVyyNueQtvPB2$wYgBvHI2HvHM8Y/Vvqm0BSOYO7ecQNET4d1uaAq+zd8= 2025-08-12 19:14:27.997142+00 f bautistavarine@gmail.com bautistavarine@gmail.com f t 2025-08-12 19:13:21.383097+00 +1571 pbkdf2_sha256$720000$oZwrVNUkQoj5JfPEyZyfVD$8CDGU4qW70iQaG5TwAbf7R42MzQszCyX1lt1geZ+aSM= 2025-09-18 03:04:03.249359+00 f Majo7965@hotmail.com Majo7965@hotmail.com f t 2025-08-13 12:04:56.642698+00 +1909 pbkdf2_sha256$720000$3u8y46Q9MYIaZbIBZANolA$Nua+S+L5fQbFBNhqD3KGFb9gs1mB659kUqwsD8gP48Y= \N f Fercruzhigel@hotmail.com Fercruzhigel@hotmail.com f t 2025-10-25 17:34:46.550073+00 +1603 pbkdf2_sha256$720000$bFHRVps87v16AX9oEk3qmI$Jy+5OW+M4P+btcJFZ3CY1dBAkqmYtuX/EFrgNa/8BrU= \N f jipesce@gmail.com jipesce@gmail.com f t 2025-08-18 19:17:22.395568+00 +1611 pbkdf2_sha256$720000$FTrJSpEz2kGa6os4EAalGv$1yhQD+FOrSUh5SQYgqQnUMxvF4Gu1JELzii2wsYKJsY= \N f jesica.corigliano@gmail.com f t 2025-08-19 15:57:17.092046+00 +1612 pbkdf2_sha256$720000$pdl0YWpWccqi6xVMwRPeZU$v4rpg3HhwKh15NiZChpCyHX8gbQI76Wz//Ya5mlp1sk= \N f renata20104@hotmail.com f t 2025-08-19 15:59:39.468532+00 +1613 pbkdf2_sha256$720000$wyybuM9Ct9rvWg9zCYQUaO$SlLuWdkvnh4qMz5MBBEdz3ySETM+RQafxmW2sLSrXTA= \N f rochyyaz@hotmail.com f t 2025-08-19 17:52:48.277798+00 +1614 pbkdf2_sha256$720000$psDj37mThvyafVyWtjykna$0w43K6z5j+IvxN3dXA0VNU11zNZ48c/tm9Aukl7I9Dw= \N f antonella_b_13@hotmail.com antonella_b_13@hotmail.com f t 2025-08-19 18:31:32.782047+00 +1615 pbkdf2_sha256$720000$oj4zex2u0jruoexbgkJYYf$6r1wLRgWwdxV0EwkW4ZTs9nxuCz56LiUMtaGBTTICV0= \N f antonellab112@gmail.com antonellab112@gmail.com f t 2025-08-19 18:42:49.713611+00 +1616 pbkdf2_sha256$720000$GirOzQdhCiy1hYkAGXkzc8$QuwzaEH/7BHLLzpGPPmO7oA385YieE4QiV+0sC84upU= 2025-08-19 21:28:04.042351+00 f mica.b.rold@gmail.com mica.b.rold@gmail.com f t 2025-08-19 21:26:56.110768+00 +1646 pbkdf2_sha256$720000$fpHCaTXVBSVqDPOwajLMwl$jERzQiSORdetZBJl8YWln7WKcSMvd2akauFhQHdmY4Q= \N f arielb2480@gmail.com f t 2025-08-22 14:29:43.565619+00 +1755 pbkdf2_sha256$720000$KSK40Fbkjx6LhNWFOjYSpx$YCxw7D4w0yW2ixFJWKGsWPjLEJDL4asoLkMXH4gLkiw= \N f noefattori@gmail.com f t 2025-09-06 15:28:32.565849+00 +1619 pbkdf2_sha256$720000$XWmQfUJ3PZTgeTpLTPONI8$OCfRkcUfhKnJkVdALn9icm2dQ0BuUEN4gpp3A2X3Edg= \N f rodriguez.nadiabeatriz@gmail.com f t 2025-08-19 23:32:40.888955+00 +1621 pbkdf2_sha256$720000$1pbBnvNJmB4vTmaFsi8I0m$d3iR9QqTtR4SverHKt7BZarLN7pQFQeVS934i2RupBw= \N f nellbor@yahoo.com.ar f t 2025-08-19 23:39:14.005532+00 +1622 pbkdf2_sha256$720000$obinJ3R3gkuKmL74FKE7Er$1eNgqsjshsg6uN2XQjeeSoFbPrdZDxi9t07Uniy3h+I= \N f vanesaelias@hotmail.com f t 2025-08-19 23:40:51.943769+00 +1623 pbkdf2_sha256$720000$1DtvIrBvqSvybSK2Lli7Qx$5pv9M8vb78AseThBW6uuO9NjYzi+o3cbeymoz6dvvF0= \N f anisegal7@gmail.com f t 2025-08-19 23:56:08.152511+00 +1624 pbkdf2_sha256$720000$fBOr6L5yMSGDh8oRlzmKv5$W/b/aXxnEd3EqfExaDLcrv5RHCkjX/4uxmFiDibR1Ho= \N f everaguero573@gmail.com f t 2025-08-20 00:00:39.585597+00 +1625 pbkdf2_sha256$720000$8L7oxClTthOzJLzIhkmsKj$B4IWMumfVqHXHWuSXBh0s50qM20zKFR9udqkgW+qExA= \N f celina.sereno@gmail.com f t 2025-08-20 13:29:32.181306+00 +1626 pbkdf2_sha256$720000$uvd3bGvo7M0CwgSIEbUH84$QM0fTDkK79AD7BqtzO05hmdorKjgz8bkcygfk7SEsns= \N f laupico@hotmail.com f t 2025-08-20 15:16:47.010136+00 +1627 pbkdf2_sha256$720000$SMAnJ36Mrbe5TT7g4L5dWg$fTgGGPsIhJ55mEmbt5WQ/FcpaloRSnOnHDIjk+gJfd4= \N f lucianampiantieri@gmail.com f t 2025-08-20 15:26:26.211343+00 +1628 pbkdf2_sha256$720000$tXEJnEazIx9goxPoaBjq8D$lCwy/BwrCjMiLjahkRsLhmZ2JeT0cr+Wz9v+R6rRUnw= \N f silvigmuras@gmail.com f t 2025-08-20 15:45:47.969624+00 +1629 pbkdf2_sha256$720000$FumcQSgI7AtIiYgRZF0F5y$Esba9wmwXxTHuIojlSoW2i7QBvXOlCowSrGXl57kd2w= \N f isabelchiaramonte@gmail.com f t 2025-08-20 15:55:05.847039+00 +1631 pbkdf2_sha256$720000$VVGfVV02j3fLb5fDSQugTW$RkKmjrKU1f+xnyCm4Z7p5DqtMUO1SVebDq5zbRNUEKs= \N f micaespeso@hotmail.com f t 2025-08-20 23:52:09.014301+00 +1632 pbkdf2_sha256$720000$hlaFJamfx0XWNMdJcRwSUZ$NR9z5bj6QU0MNE5nPG2INFuvRidt2Xf5/JFC5uB9U4s= \N f Micaespeso@hotmail.com Micaespeso@hotmail.com f t 2025-08-21 02:11:33.208073+00 +1633 pbkdf2_sha256$720000$fN0VKEJ7hDInjzZ7R1CKMq$gRL9eVz1ywy8ZaOSid8KIGe1dXBwNKzKtXL0LIYVDUc= \N f nadia.jd@hotmail.com f t 2025-08-21 14:38:29.969822+00 +1634 pbkdf2_sha256$720000$OChKLsINPQynhuxS3h3AOZ$ObJ9EVCzzjqL0pjWLbQ7zdenkcM+TlxmFyZettNgh3M= \N f roovitale@hotmail.com f t 2025-08-21 14:40:54.512452+00 +1635 pbkdf2_sha256$720000$VaOlWQJXwAXwY2WYQBHGuC$ydOL95aQaFkCdSE8p/YO5SwmInvfZ+6IzVHwK5DF7AI= \N f medina.alejandra46@gmail.com f t 2025-08-21 14:54:43.279334+00 +1636 pbkdf2_sha256$720000$C5a8xjNE9xfuLueZZ26TWU$pQ4/crHw6B15x3nQYG6cg41pKIP13x5M+s4Bn6vqquI= \N f rociobelenmiguel.22@gmail.com f t 2025-08-21 16:14:51.78625+00 +1637 pbkdf2_sha256$720000$AJtNWKM35Rubsz1Oh5fDon$fxeR+f7BbrL4YNp+G8QOS0fXL3en09Af3QXYHmScLtU= \N f noelialmotta@gmail.com f t 2025-08-21 16:24:34.015676+00 +1638 pbkdf2_sha256$720000$NfCbnALvXmxGJmwnu0DItS$lAlsTcfAsIj0Gyi9T/waQRTry3Vt/2MZkQ45ugiTVPI= \N f carolinadulbecco2@gmail.com f t 2025-08-21 17:58:14.522739+00 +1639 pbkdf2_sha256$720000$EYXrZcrYkrQcsTTFl8WcqS$hkunGW4D1GEraGNkQXOlv0DU6HM7omjsIZXlYVSLIas= \N f vogtcristinalucia@gmail.com f t 2025-08-21 22:17:47.536338+00 +1640 pbkdf2_sha256$720000$337oofOV762UPbEOojkd9C$PCWYW9EtS+noBGONR1W/T4LkoIVAy1m1Dnlh53ZSD+Y= \N f nahiraragonorfois@gmail.com f t 2025-08-21 23:24:42.556695+00 +1641 pbkdf2_sha256$720000$5nwbOxbGjz5WbKq5aktNS4$jR5RwOh73uzR1oSLgj+bpjNoOg1opbQRkcJL4lQswVk= \N f mlilianamirta@yahoo.com.ar f t 2025-08-21 23:29:45.303322+00 +1642 pbkdf2_sha256$720000$ZKUJdvcHlHcvufzVc0vcaL$UzSEcDqP9kaSr0qvgwV4ayYVg6O+b4vF9gklrv0+Uew= \N f frankyruizdiaz77@gmail.com frankyruizdiaz77@gmail.com f t 2025-08-21 23:34:15.018426+00 +1643 pbkdf2_sha256$720000$irvYYNMDWlfsTrXTLPwSMi$RZPrwmWoWLEEY//FMUO+DxcuJWJHNOuv4IuO2dvyowU= \N f clauhimidian@gmail.com f t 2025-08-21 23:55:15.806115+00 +1644 pbkdf2_sha256$720000$FoLriKZjpNVE4lKusAhvAb$0zDJb3PoBbMhBUnV4hBbjX7v0t3f6SNPCIkODsiEIWI= \N f lupuglia54@gmail.com f t 2025-08-22 00:06:00.468795+00 +1652 pbkdf2_sha256$720000$O92tMXUYs8uNKTCz6Bke09$eiRYlXDMJzxzQ3LNHixKXfDhr9Cjxt/FYj1U8Sa7Y3w= \N f raquelariasmontes@hotmail.com f t 2025-08-22 20:07:57.431459+00 +1647 pbkdf2_sha256$720000$c8Qa1ijg2ymU7ucBoy7sy5$li1O4VaVVGBuej0/5mWMuZ+gxjwJbVED6Mu5vUcOcko= \N f mvallejos@isalud.edu.ar f t 2025-08-22 17:17:06.887039+00 +1648 pbkdf2_sha256$720000$Ru9xBwo7V9f3wWyYTD0oaD$jH/GxKT7JO2+o58MKSZtCpJfFE+FudI5wmvpVXfXrkM= \N f Fkenigsman@hotmail.com Fkenigsman@hotmail.com f t 2025-08-22 17:37:19.650139+00 +1649 pbkdf2_sha256$720000$xCYTcaEpM3jsHUx0x4dXYS$1LlA7aLxJyOnPrUkIzWeGNvzLh+viF0O8WB+AsX9O+Q= \N f genia92@hotmail.com f t 2025-08-22 17:38:47.524364+00 +1650 pbkdf2_sha256$720000$tc8Q03QHgKTmS4avLG4sKo$dUYXpLtTfaui446zbExGcMb7VT4Hnd/UQckTkveWIAk= \N f mcelinagomez92@gmail.com f t 2025-08-22 19:57:22.900643+00 +1651 pbkdf2_sha256$720000$U5A52NBwSEcMTiHHv32AXU$g9/67A7wdtJfzGgaDxHpmdSWIqoJ3RTDydox3mdqRDQ= \N f marcam2557@hotmail.com f t 2025-08-22 20:02:44.184058+00 +1653 pbkdf2_sha256$720000$q7f8T5yYIkEpQOIGlF68fK$aVwHCP5mZuPljlo8+kfDL3oJSCTrP1tIe03gGinnAEA= \N f sotoedith65@gmail.com f t 2025-08-22 21:01:05.436545+00 +1654 pbkdf2_sha256$720000$FoUhwLQZXxbNyeIJvS5iSy$YaN9pVEVNQHA9lXmbriK6WZY0O93UeDPXN70YQ3SH+0= \N f jandresbrasales@gmail.com f t 2025-08-22 22:25:46.284975+00 +1617 pbkdf2_sha256$1000000$muvgiZVMaDH25Bdv4BBIjt$bsOhLOUUCjFCPoowX45x/9aa+Mu/QufyBX1/WsItlUs= 2025-11-16 16:12:40.278794+00 f laupassio@gmail.com Laura Passio laupassio@gmail.com f t 2025-08-19 22:41:00+00 +1656 pbkdf2_sha256$720000$0o8ouGbJFL1eW4aj7q53wD$MBA0Ji0AqFUgopg7HeAyOiN5mEHqiuDt0SsFoT9pT+k= \N f natachaforciniti@hotmail.com natachaforciniti@hotmail.com f t 2025-08-23 02:58:59.241024+00 +1630 pbkdf2_sha256$720000$pwRaQi6VHs2ZDJuxrhlJog$0NN1nxHN52/sWtMWhF4SmxTVWERIH10Joisss+Pl5Cs= \N f a@a.com a@a.com f t 2025-08-20 17:31:39.822311+00 +1645 pbkdf2_sha256$1000000$WKUTUnJrLH4RWZG1hBe89e$6c8LmFfOBN/SCnWzn4lPfJAF2rBXER2ux4FLaAC9T4k= 2025-08-25 12:57:03.389145+00 f nicotisato@gmail.com Nicolás Tisato nicotisato@gmail.com f t 2025-08-22 12:44:49+00 +1655 pbkdf2_sha256$720000$aZqSKK4H4rlpfMCEZCc7Jw$OwJOknFEOBeD665YBs81fsLpUzAk2Vt5tufodp54GgY= 2025-08-23 03:06:21.931002+00 f Natachaforciniti@gmail.com Natachaforciniti@gmail.com f t 2025-08-23 02:55:01.413247+00 +1657 pbkdf2_sha256$720000$O1GzBQLAyjOgI1Ojm2DO9i$egb29s4YnYDOxCKM3mQYlWdUEndd+OSHCtK6NXa4qOQ= \N f natachaforciniti@gmail.com f t 2025-08-23 14:00:13.961965+00 +1658 pbkdf2_sha256$720000$X5UU7sO11fmEiBxCUM1FTh$u6PS+B9XhW6IZ0iKO9s0UX7rM+iVqGx/HrNK9r2+kDQ= \N f valenmiranda218@gmail.com valenmiranda218@gmail.com f t 2025-08-23 14:20:30.246321+00 +1659 pbkdf2_sha256$720000$NSuicTpVTGdORy0rBJga5z$Bv6dgWCINxK1x9VezHEahd0wAQ12jA1tezFcZFwyUow= \N f stellalereo@gmail.com stellalereo@gmail.com f t 2025-08-23 14:55:48.753537+00 +1660 pbkdf2_sha256$720000$g32LVuC62yqyA7xnJTxG6J$aO+kSVijTOKWlbJAIf7DiL7pcgOiSLpmtXcDuVVkeog= \N f dmg.sofi@gmail.com f t 2025-08-23 17:27:29.237048+00 +1661 pbkdf2_sha256$720000$dEeNq4knJrdsOa1xqQfBOH$+WQyvsARiGv7S+cGq2HSrhyL7FXFJL7M66lmCol3hJM= \N f laura_zangara@yahoo.com.ar f t 2025-08-23 18:04:21.490921+00 +1662 pbkdf2_sha256$720000$IW4VhTifan9akJLw52boDq$msTOdcTQdvdTm50LBFMwM9f/qPvlpJrQBjaGV3OZ4Z0= \N f zulmacrino@hotmail.com f t 2025-08-23 18:54:17.044318+00 +1663 pbkdf2_sha256$720000$mbMIg6QXTyf22NZoKVzklv$v3iyxv/JtfABbKJSSEKYx90AlLAkitqwBvMIHhhaaT8= \N f er.fernandez@hotmail.com f t 2025-08-23 19:55:57.082404+00 +1665 pbkdf2_sha256$720000$o6cxIedUy941H4fpUBzz5V$S/3eNoQ94hfZCNBIwsyy9kCRrjzXnKLoVIPewaGN+wY= \N f alymdq@gmail.com alymdq@gmail.com f t 2025-08-24 15:57:54.580229+00 +1666 pbkdf2_sha256$720000$7rBpPoAgeNVwDbhZ5EYb6Q$ny28phj6olc/YhS3V6WQI2qJxyWC/2GkcCo9cU2ZKho= \N f maritapalacios57@gmail.com f t 2025-08-24 18:43:25.649053+00 +1667 pbkdf2_sha256$720000$AmB0zO3PkgAhu98z5JUQtj$26jE9CDNa/PCtlhAJYv0Odan7KAmKjez2ZAVo2hhr28= \N f mariarosapinto@hotmail.com f t 2025-08-24 19:00:55.098296+00 +1668 pbkdf2_sha256$720000$wx1H0pRPMzpt6IMps7uMD7$ivNa7xpvr+SZ/Gm0T6fTA+vA9Noo8sLX1ZrVr6k1pc0= \N f lauplans@gmail.com f t 2025-08-24 19:07:38.725032+00 +1669 pbkdf2_sha256$720000$PKSMWjuWfFwW336m2nLPiC$OS8M+2f3vce26o0T9ILDfteaRCMiHtXor9I2GkGkncE= \N f prili029@hotmail.com f t 2025-08-24 19:15:08.045864+00 +1670 pbkdf2_sha256$720000$I4SZu5LhDFVfVfTcuXxPFX$fhM+nJlSgFTAsMwgb7FUhrqHL9g40PH431glGGwZJc4= \N f ceciliadiazdesouza@gmail.com f t 2025-08-24 19:19:34.855123+00 +1671 pbkdf2_sha256$720000$ut8v50rIa5wGZPOAxtK3IM$NkeL2zc+omuH5VzaB+1BhDQIOo6u+Gr/qHjArCFeN00= \N f jesicamarianaorlando@gmail.comj f t 2025-08-24 19:26:11.358183+00 +1672 pbkdf2_sha256$720000$558EcK5s5TVHC0txXcrS0c$jln8w5dXOf60JerZIKVnQt60zAPHf9IO4RoSgIRnSBQ= \N f antovg1989@gmail.com f t 2025-08-24 19:34:12.028905+00 +1674 pbkdf2_sha256$720000$OfW02JnsYb1SAseRcUWodT$CuFptGoq04SjfU2yagxYLtJ2V6T9J8nWEfv80P5svtE= \N f silviago-28@hotmail.com f t 2025-08-25 13:59:06.549778+00 +1676 pbkdf2_sha256$720000$AtSZnREn6hXt543rhxI37X$pcdG34xs3CiqmUoEMeI0OzZL3z5VRUoyDXrIcwnzIcY= \N f claudegoitia@hotmail.com.ar f t 2025-08-25 15:48:56.805116+00 +1677 pbkdf2_sha256$720000$cUnUuadI3P2SWqxLBdwwje$3nN9yYSJyrvM62XMSIb3MJkyYF4bAFpZSHZbUERQauI= \N f sol.andersen@gmail.com f t 2025-08-25 16:26:57.360047+00 +1679 pbkdf2_sha256$720000$7585T0O8f8JnmJIyClrkdD$Kk0T6kwPQFNOYlNsJCz8C+cEwj58U59V8O3FgdD6/9E= \N f veroespo34@gmail.com f t 2025-08-25 17:25:06.798077+00 +1680 pbkdf2_sha256$720000$1gaoU5wyvNRwZwK0HllrTj$5gFsA5qP7t9i56/zbt2cQvIXpWCmsccNaybRN1U3jSU= \N f marcelasaid@hotmail.com f t 2025-08-25 19:05:24.353801+00 +1681 pbkdf2_sha256$720000$TD1edFkAcd1hDMtweGojxw$59sxKtbNmc9HdWyL6g47Bf1Z+ITyQZBLvh2X/ikljow= \N f massiorne94@gmail.com massiorne94@gmail.com f t 2025-08-25 19:45:08.949567+00 +1682 pbkdf2_sha256$720000$NYRcoUorggtGYPnOeygtP2$szkVm62vJXmaq4SDF/9MbRHzHiAz7FHncISl/2/ZIZg= \N f vanesaastrid@hotmail.comom f t 2025-08-25 21:42:27.253411+00 +1696 pbkdf2_sha256$720000$LDXmSBGo4MNcZIY12ZwggD$yGCJGyP6OSwFxsZQtgGKhjCqE4mh8JN9453kpr+b5AI= \N f jose1candia2@gmail.com f t 2025-08-28 23:45:39.059877+00 +1673 pbkdf2_sha256$720000$Qfte058cFPz2aYOE4X0Y1n$nAqbPCSOV+HIP0B2Rx9i01X4GwOqblsMVG0gk1a5vFs= 2025-08-26 01:30:34.658656+00 f biancanseron@gmail.com biancanseron@gmail.com f t 2025-08-25 12:13:12.666437+00 +1683 pbkdf2_sha256$720000$NsYArefU1zlL9R2rlibYAk$4n3sTSklHngU6DBBHMHjM6fLZsq0LvytfDd4WCvp1N0= \N f 00000012@gmail.com f t 2025-08-26 12:04:53.895058+00 +1684 pbkdf2_sha256$720000$vs0UTVvsWQbufNvclljiMZ$nQCm7Iv4+eZ6ZCmt3nnot7huL5gJDfoxxa7RuSPeaWA= \N f gonzalezlucia2896@gmail.com f t 2025-08-26 13:39:19.901667+00 +1685 pbkdf2_sha256$720000$kcS07uigSm3TNsmZE24qPl$3XA3r6y4zktgJLfZdxyJHch8XQjZjEMzVPfBTnamE4s= \N f cecilevati@gmail.com f t 2025-08-26 14:10:08.895692+00 +1686 pbkdf2_sha256$720000$7i5mED5LUTv8yZ6UIzMN8F$TeNcaIPF02ZHmE3MIpoS47NSywWWdRMmiOjej5F/QmY= \N f 83calex@gmail.com f t 2025-08-26 15:05:27.48604+00 +1687 pbkdf2_sha256$720000$cAKmXfeiZ1zyrgDCdsjFcZ$6IPopQcjAf6jYlxePz83Z8ygYiWFrS37Svhle4Ed/H4= \N f sabinabulcourf@gmail.com f t 2025-08-27 00:00:43.728435+00 +1688 pbkdf2_sha256$720000$ryZf2Ns0rXOXUm2wUNqRQU$vHeBnlICPqQIaYM7Uh9f5NfO+wCoPZz7TEg+vJODbY4= \N f alejandraroehrich@gmail.com alejandraroehrich@gmail.com f t 2025-08-27 00:03:44.706441+00 +1689 pbkdf2_sha256$720000$6b3oJQgyNT5zjRjouyINCj$6dMexyM6j8U0y1d8Xo40+JsnZoIYV55FM0m8i0hbYSM= \N f clmillan2022@gmail.com clmillan2022@gmail.com f t 2025-08-27 12:45:07.089695+00 +1690 pbkdf2_sha256$720000$Hm0ABwtj47bmvyvbgz1p8Z$MeckpCu3A3SxQbCNaFjUq5DEH4ht6JupZ3epQNr+3Ko= \N f emeguillan@gmail.com f t 2025-08-27 16:43:02.954879+00 +1692 pbkdf2_sha256$720000$RoflKQP2kBcRh59m5o33J9$vuHjdgMRPKij+KyeHLGohTtpmJwxUaIy37JdWW/3cuE= \N f luisa.e.c.lopez@gmail.com f t 2025-08-27 23:16:29.864595+00 +1694 pbkdf2_sha256$720000$cYzKFKrJpQ2ppFrjlQtyTl$8JMjZ2hTC/GrvZpvD08nph49efJ58dzTyVoIGv9rAtw= \N f claudio.arce.97@gmail.com f t 2025-08-27 23:56:37.888375+00 +1698 pbkdf2_sha256$720000$99QQTBQJTtHu60LlVBuLCP$zq4UF+fip1U8rI3oYrSrn9dFTEdAsGaDfnsUlLTSx9E= \N f ing.lauramillan@gmail.com f t 2025-08-29 14:14:33.402849+00 +1697 pbkdf2_sha256$720000$CDhtun81Sfzu7akXjTE8xT$WgR7sYutauqlLazuaykJMBOU2Yq7ScLZpFmzOmQXcG8= 2025-08-29 02:44:50.208296+00 f cecimaceri@gmail.com cecimaceri@gmail.com f t 2025-08-29 02:42:36.033652+00 +1699 pbkdf2_sha256$720000$MwKtirtFenTocqSciJYp64$5+JUGloSchFDjTtpBnGOslaAdAj5RDXeE3T8hwTwIoY= \N f lulivaldez901@gmail.com lulivaldez901@gmail.com f t 2025-08-29 16:07:08.839444+00 +1700 pbkdf2_sha256$720000$5vFinI4ryOHNWsq2KrwJOr$iSehMaActml7GLzvOjGpfT7ry1eRrinwCj68bhCbObc= \N f naprego@gmail.com f t 2025-08-29 17:12:27.516582+00 +1701 pbkdf2_sha256$720000$V0uW8oyiWh4Zp806c6rzjc$o8m4zUAfIdCneZi+UC8PwvzRDfWEtUQIGs35UE/AxfA= \N f martinmferrari1@gmail.com f t 2025-08-29 17:27:58.335597+00 +1702 pbkdf2_sha256$720000$qabyR1iPCorM0PRvLVG5s4$joh7WoTVrCvohoBuekBfBAoXrnniG9ebvs1Mso86kJ0= \N f noraaltman@gmail.com f t 2025-08-29 19:17:24.12964+00 +1703 pbkdf2_sha256$720000$DPHkNH5NXBKsrPUfMJeTNy$0/7uRFKTjrpVxzGqYoh2j/wepN9OCwsxYku1x4Mifvw= \N f fede.couget@gmail.com f t 2025-08-29 19:22:17.957037+00 +1678 pbkdf2_sha256$720000$fsRvLiTn8Xk2BfHQQmAJzU$+mmW/Kjis3tEQmgSTtoUUkLuMHcsLKyJMEmrhwo4Fy8= \N f griludi62@gmail.com griludi62@gmail.com f t 2025-08-25 17:16:02.756224+00 +1675 pbkdf2_sha256$720000$LI1uIufo3dgBbFnFuVf3fj$umQzt/xyAUzp72HCzf+y/r5nd6yhxQIB76mwqnpZSBo= \N f carladopazo@hotmail.com carladopazo@hotmail.com f t 2025-08-25 14:16:31.939826+00 +1695 pbkdf2_sha256$720000$GxDHilZzUYFoloLeaHbwmg$M9yKzPxkvuSooLn8EXB99+5X6Yy9DXip/V30LZgI/do= \N f carolagger@hotmail.com carolagger@hotmail.com f t 2025-08-28 18:34:07.188716+00 +1706 pbkdf2_sha256$720000$0uqQM0dNo6v6Cng1rcFGwz$2anliaKRLcldF3+WrcKQ4/JzlVq9g9KRJ0qLbS6ETSY= \N f laugon23@gmail.com laugon23@gmail.com f t 2025-08-30 02:07:50.977125+00 +1707 pbkdf2_sha256$720000$9BJONHbqnarx7urO2OI62m$+UrTLLTrx2yCy/kJHCwmnBbZYl9IRUvhWQPDQPhuZzc= \N f lulub.rodez@gmail.com f t 2025-08-30 19:17:02.285675+00 +1708 pbkdf2_sha256$720000$YApnW3yhCB4Zh2bLejFFPx$PSCd3mGon4tLrpUIEYzsQ0KWpJGB3xGmVAQLYBQD5Os= \N f juanvigo97@hotmail.com juanvigo97@hotmail.com f t 2025-08-30 19:20:12.922872+00 +1709 pbkdf2_sha256$720000$mEgjSDbSBacVVF9hkCLJgf$lP3fi4h856SUS6jVHb+CC/W1QKYhq6pBmVu6Y1GZU3U= \N f laborges@live.com f t 2025-08-30 20:25:06.145902+00 +1710 pbkdf2_sha256$720000$OXCAEDHfKdBkODynBFTGvd$anKTO7W7Lysai7+3uDGqbEGLPYYYH/6P7+ZM1kj9X4s= \N f williamcaceres1996@gmail.com f t 2025-08-30 20:35:25.892131+00 +1711 pbkdf2_sha256$720000$a20QdINGuguJGK8ghUMyk6$cLAVUi+tkLFqIoLWnZDwlsIDckTerK0W708ocwkIOv8= \N f cakulina77@gmail.com f t 2025-08-30 20:49:37.598127+00 +1741 pbkdf2_sha256$720000$Ut35oCgglN9WRtNm57DEcr$dcL/U4Ki/1Uat7C9t3aij3QeuD4cKOjdrRPbHIPvyPY= \N f camilaenmuchosbits@gmail.com f t 2025-09-03 18:53:09.669835+00 +1712 pbkdf2_sha256$720000$nvZOC1JNZiIYPw5Nyl5SLl$bWLyho33bqIaDqAm542HgM3Et34Nr5YT1SgwA6H07+A= 2025-08-30 22:17:59.565016+00 f jyelitzarome@gmail.com jyelitzarome@gmail.com f t 2025-08-30 22:15:22.646449+00 +1713 pbkdf2_sha256$720000$WpbB0FtRdcV18xiZk6WR6F$kmQGsdfU7U8XRLv6zXaZubtu/OpQ3gL40lPSFbbKqAY= \N f Gbelio@fibertel.com.ar f t 2025-08-31 20:01:27.719379+00 +1714 pbkdf2_sha256$720000$pmvKVas0QF1QezW0iWLzwd$DpCMhEH1Ibp4uEiEWZWEBv7BC9IInMcvMHrOVqBeDX0= \N f nicolascerbo508@gmail.com f t 2025-08-31 20:07:36.348298+00 +1717 pbkdf2_sha256$720000$0wBI6bIlRs2JId9TpLmtki$Ma2LXk6Okahs8DTS+UrgwT+g1rIBYFh5fQBFhB8obL8= \N f limpisec2@gmail.com f t 2025-08-31 20:18:21.521498+00 +1718 pbkdf2_sha256$720000$SswHFojOD1TtCg2qcjnUJU$CZlsS6icqTolRgLFHPMgRP4FriZdalnS8Mj8bO3NZk4= \N f claudioguidotti@gmail.com claudioguidotti@gmail.com f t 2025-08-31 20:23:39.803203+00 +1719 pbkdf2_sha256$720000$kJwMKx1SJx9jW0Nkf8Wfji$8rIv8rF4ZVxTjjr//nx9iC8fPX28saULvU3fKtoCOfU= \N f letipperuf@hotmail.com f t 2025-08-31 20:25:58.312863+00 +1720 pbkdf2_sha256$720000$F3RV9y1o2PNA9Yfrh4CAi5$VigSNIl60kyXzKsnJcMcUIK2HpEJqdPJbAZsqXZ2HCY= \N f carerigraciela@gmail.com f t 2025-08-31 20:30:36.433131+00 +1722 pbkdf2_sha256$720000$x3GonhRFFW2QsHXQJlEZ5w$uDr9Fmr5JpONPui5+TmsARRczl4xn36GRyZNi4RaJWg= \N f leguizamonamargarita@gmail.com f t 2025-09-01 15:06:45.699999+00 +1723 pbkdf2_sha256$720000$jHRHIyaErYGYWmRlTcaSTr$FVoLCtD9HWRzujFCWPWErJb/4tx5tWOGYwrB/CEMJa4= \N f troshina.ks@gmail.com troshina.ks@gmail.com f t 2025-09-01 15:40:40.307564+00 +1724 pbkdf2_sha256$720000$TWk1x7DhpzHFUYbc3HqaEK$qkYvuQO5wkWRMf9n+o6bu6ny5ejAvTSzuAX5fZQDZ9Y= 2025-09-01 16:23:21.333898+00 f lbidondo89@gmail.com lbidondo89@gmail.com f t 2025-09-01 16:22:07.430096+00 +1725 pbkdf2_sha256$720000$KZg5fE3JZqWdrCgNjc9bVX$y2wTMISgNa5HBkhci0AZalOqxTFf7vFURGjZehtAsSA= \N f srosalia.1986@gmail.com f t 2025-09-01 19:43:46.417174+00 +1727 pbkdf2_sha256$720000$tRr9P2jIrCH4Hj7HWRcewv$4fODSMe7erl0wus5ZbkccYqLfeuT7qz8usjYoG2Sxfs= \N f juanabrosntein1@gmail.com f t 2025-09-01 23:35:22.236138+00 +1728 pbkdf2_sha256$720000$w5li8gIs87SH4IzJsep30C$rMhqcgkofwysPDMTBEfAxF8GP6aO/1gyYooiinG27Rg= \N f coakleyhl@gmail.com f t 2025-09-01 23:46:32.309211+00 +1729 pbkdf2_sha256$720000$TQNvL8UnYClnMNQ3XNHmWy$u+lAmNoezgAFgprrgi/1CHuwTms8T72FdQkJ39pVP0M= \N f supertramp925@gmail.com f t 2025-09-01 23:52:04.992474+00 +1730 pbkdf2_sha256$720000$7Hpn6TpxZZWAgt6WZIaJV4$w+JNAtitKKird2BxNqG8QluaUcTtfpsmRE6IWn3bUMk= \N f janicelerner@hotmail.com f t 2025-09-01 23:58:48.503672+00 +1731 pbkdf2_sha256$720000$GX6v1VuUrGoWIZuXQVFRhQ$6E2sOVVoAuCDlzQpxUpLBp5YUwoXZhd7WjxICFyaDys= \N f saracaballero816@gmail.com saracaballero816@gmail.com f t 2025-09-02 13:41:15.131347+00 +1732 pbkdf2_sha256$720000$p04iqDvp2Rj1NYXMvSv0DQ$y8gb4hPku8hWTiitZfgaUuIVi/lchodtCuXj+KSCWDk= \N f md_maydurante@hotmail.com f t 2025-09-02 16:39:51.88176+00 +1733 pbkdf2_sha256$720000$Phmo4HX397FiQPtqn97Xha$DNK/kIRId4h1PsaC/Wj8SXL4ttGLoXaOQ+P4fRBRIa8= \N f alxim192@gmail.com f t 2025-09-02 20:21:41.870552+00 +1734 pbkdf2_sha256$720000$bVm2DnHQtRJrrRYNViNdCd$PhGzodrMeuICifIRfiZQUQUkmF4AE3DOf75s+pagVmM= \N f emilseacosta52@gmail.com f t 2025-09-02 20:55:35.588292+00 +1735 pbkdf2_sha256$720000$Fvcugr1xxLjClZRfbbkydy$tKlxNVEbyOtEDBwiPvXwliFSDcuTrKqGCK9+gbWg6+s= \N f gfraquelli@hotmail.com f t 2025-09-02 22:06:55.898639+00 +1745 pbkdf2_sha256$720000$iVZjKVr7zCgRN21GZxCGiP$7zeIpGbHCoAaE6xbdQFYe3ddslNBS4T4URg2wATUN+M= \N f lara.burgos.lb@gmail.com f t 2025-09-04 20:09:50.792134+00 +1736 pbkdf2_sha256$720000$fQ9EQOAr6UJrlgVoqmVlvE$RcAlb3qdPHTp3hDf2Bm17+KHBtfU9+Kg/X/JWnNS1zo= 2025-09-02 23:21:29.237933+00 f sofia.esteves.10@gmail.com sofia.esteves.10@gmail.com f t 2025-09-02 23:19:39.040677+00 +1738 pbkdf2_sha256$720000$upyTelBoQaeYIapjhRxEee$NscXpql2jP4svDN3l7r3VfTJ0ihxMApK3xzPaaiqyyA= \N f luciadana@gmail.com f t 2025-09-03 14:46:07.446212+00 +1739 pbkdf2_sha256$720000$EYP4EcJQJ9irZOaRZHagz9$fBt7Cvg3QVwCxlfC9ow5In0E88kHuni5qk4UIcs8Slk= \N f francolevington@gmail.com f t 2025-09-03 15:36:06.598403+00 +1740 pbkdf2_sha256$720000$yUY9oFANzIjleoC97W9YKf$cAXZ0A8PhU4B9omX6ae5yhq0HuUja4jB1bF6P+K+Q6Q= \N f yamila.piru@gmail.com f t 2025-09-03 17:36:43.342545+00 +1744 pbkdf2_sha256$720000$oIIt6cIthFGS85rK6r9f4N$o0c8oH9LtHuu7CrvxQaj7dqxOUaLGUcKzsnQ+niZAnw= \N f natu-reynoso@hotmail.com natu-reynoso@hotmail.com f t 2025-09-04 20:08:14.801244+00 +1743 pbkdf2_sha256$720000$XHgNpgNUGygpeuD5t1jivD$Y45ula1ZUlISSKVruQlPJwIqK8K2zB8rVmUfEhjLbIk= \N f yosandiveronica@gmail.com yosandiveronica@gmail.com f t 2025-09-04 12:30:27.3205+00 +1746 pbkdf2_sha256$720000$joyX8GRZfMLzEpLyJxjyBP$HSChTE+LrF6R3nTMujUCEjGROvlcRteb+8VcSNdB1WY= \N f francopincus2601@gmail.com f t 2025-09-04 20:59:55.689183+00 +1747 pbkdf2_sha256$720000$ZPlqkO6v1ogDEvarD563Kb$Ky1bR5WzJB08l76B89e2jRvcZLUuLG8vOFThDsgUlI8= \N f mena_brenda@hotmail.com.ar f t 2025-09-05 12:40:16.066026+00 +1748 pbkdf2_sha256$720000$TkLpF9Pv52rXb6JYVfaLhd$llG3CiUWHUtDvuDkvH227yqQNLw8x+czmv5cArgE4lc= \N f hugochazarreta@hotmail.com f t 2025-09-05 13:23:24.861206+00 +1742 pbkdf2_sha256$720000$KvJXEqg7qw6LKh65SkMaYJ$U0TxqDOqrZKRX3fB0eRWJBOl6Wrl6hr8dteT/ldNovg= 2025-09-04 15:59:11.149959+00 f sandra-maldonado@live.com sandra-maldonado@live.com f t 2025-09-04 12:16:32.405543+00 +1749 pbkdf2_sha256$720000$hF6m7WxX9p09zimc2lIE1f$bfbQyqq4anyHWd38PSbMnr3YFSOvc4b+ozzbluedGCE= \N f guillegimenez1994@gmail.com f t 2025-09-05 15:49:51.717132+00 +1750 pbkdf2_sha256$720000$0IXn3qGDq9Vzkxagg4QxOi$XgKbUKrFM+Hw5BVsxGw3zjx2V1Mfo1PWfBMdI2mqIng= \N f mica.tm@hotmail.com f t 2025-09-05 16:04:17.726738+00 +1751 pbkdf2_sha256$720000$e5vS0nFmC7xolqCX9bK46K$5nhyQf29zlwHukZUPG/Rb42K/T7klXo0z5no8xD/cs0= \N f cordascoantonella14@gmail.com cordascoantonella14@gmail.com f t 2025-09-05 16:48:16.690365+00 +1752 pbkdf2_sha256$720000$LOTY3k5x5Kdm7SKTQWI4ie$ZdNQ/jMXGfdX3D+gtzHu6UXdUM9tJB0FuJQ0dnD3DwM= \N f andrea_murguia@yahoo.com.ar andrea_murguia@yahoo.com.ar f t 2025-09-05 19:19:39.490241+00 +1753 pbkdf2_sha256$720000$JYsK2XART25zG5bbmOInA0$BS1YJGZioXZxLEZZdfHj/Wz1RnD0XZ/A9YJo+hpzGrI= \N f gnzlestevez@gmail.com f t 2025-09-05 20:05:01.973869+00 +1754 pbkdf2_sha256$720000$r7qyPHExdREAkPhMH5lJdk$kDQC1oXoi+k6vyNR6+zaTFvl2R0pgaiay5MxyLYnexc= \N f rpilsantamarina@hotmail.com f t 2025-09-05 21:20:24.914224+00 +1756 pbkdf2_sha256$720000$cVvl2ULbI7emYt5qaNmw5x$AMC9+MxdKksomf6rm6mwK5Y5m9etsSUL86EPLXlSvec= \N f emiladronis@gmail.com f t 2025-09-06 16:40:33.562694+00 +1757 pbkdf2_sha256$720000$4WRGp7e47ZQuTPHJNb9rgH$dqfoYAfNGK5k8jLDOQx4oGVtRSv76ht5/Gi6/fIIuGA= \N f sofipedicone00@gmail.com f t 2025-09-06 19:41:03.902041+00 +1758 pbkdf2_sha256$720000$5IAGifJkpnN53GsJTXmqxE$yr0aIBNGnDRszkQ5jYp7ArkN6bWEKwaF51hkv1+VAs8= \N f gabrielaversari584@gmail.com f t 2025-09-07 19:00:11.649599+00 +1759 pbkdf2_sha256$720000$ic9WhxjWWpOIXWrrWU2ydX$kHBYwONNQDpKkQqyVHfeqyVgWmBpOl83x4IrvkjzpnA= \N f sergiogarciastyle@gmail.com f t 2025-09-07 19:11:45.216008+00 +1760 pbkdf2_sha256$720000$WhV5xDuDSklwvceR0F9Adl$4jLBFHhE3dxDVsBiKq3PyiwDuHeob6P1IXJAN5/LE/4= \N f lucianofontanarrosa@hotmail.com f t 2025-09-07 19:23:05.908692+00 +1762 pbkdf2_sha256$720000$e8rwFOuvSNG1HLBTGum7xX$YVjBFqLUBXwg/Hn4a8m9aD4TXw+KZm1q792Ha9VKK5Q= \N f dra.cellagrois@gmail.com f t 2025-09-07 20:42:32.372156+00 +1763 pbkdf2_sha256$720000$Ri9L8d5HTsxhXgrxGWNTr6$Z7+H8pXRgof02YyrIScjO/5bdeGscDrk9Or4UTrRZ70= \N f chvossler@gmail.com chvossler@gmail.com f t 2025-09-08 05:50:44.190384+00 +1764 pbkdf2_sha256$720000$juBTUeP0YuSTEPcdmI28Sc$XBY3vvHAS6xiURcmsuZ8yu8f/0c6uALFPQwHG8bOs+M= \N f info@chvossler.com info@chvossler.com f t 2025-09-08 05:55:55.145301+00 +1766 pbkdf2_sha256$720000$vW66VHNUNtdhKo6GkdspHa$CR/53trsgoA6gAPWXu3J2aNAEX21XfTaD5+6IcggzHg= \N f julianleonc@gmail.com f t 2025-09-08 16:11:10.152452+00 +1767 pbkdf2_sha256$720000$NFQMoOjq8LbwkA8TG7WEWY$g/GcI++n3ujbS2u2kXNYwIcJRrAk4f6ZEZlyES3WT7w= \N f Caballeropr12@gmail.com Caballeropr12@gmail.com f t 2025-09-08 17:01:03.350657+00 +1768 pbkdf2_sha256$720000$yaJx8NxVomdZzfyQ1oCjo7$HKzT62fxQQBe+nXXdWa84pKyWPVyIaC7InyD73HRxkA= \N f ssmenelle@gmail.com f t 2025-09-08 17:01:13.60074+00 +1769 pbkdf2_sha256$720000$zkOTiE6bkXq6tRTQI2KgVd$LdEgiSPiCq/j3nUjn6FrKZJ5NE43wZJ4pb8ys+apCPM= \N f nabboud08@gmail.com f t 2025-09-08 20:04:49.069091+00 +1770 pbkdf2_sha256$720000$Q0wQN3vLCdwICLmQKwQu5Z$tOU+hnBDo6QKjyJiXPjNGIXajd7/OAi6/EzldsbruZc= \N f carlabattista@yahoo.com.ar f t 2025-09-08 23:23:49.801695+00 +1771 pbkdf2_sha256$720000$vge6UxnoGoNpBTXskDTdC4$4Cu65SjVTsAzFF2F1W7U5gnq2Tg9CUcdon1vA7KjqJo= \N f sabrinaarru@gmail.com sabrinaarru@gmail.com f t 2025-09-09 13:04:46.982161+00 +1772 pbkdf2_sha256$720000$N4xytvuCm5WOrOneU8qJZg$vk1FYISGncFGZJABrLAqgrhq/xz2uLmj99X9Wj3LLp0= \N f sebastiandemarcoit@yahoo.com.ar f t 2025-09-09 13:25:06.496706+00 +1773 pbkdf2_sha256$720000$dFP7fGYgp8z9KkLeFVfsJP$O0AksNpj26hGzlyldB6Gue4FHE0VJ4XpHE43KirLF+c= \N f carlamarinac@hotmail.com f t 2025-09-09 14:29:31.673722+00 +1794 pbkdf2_sha256$720000$NECJgQY5eAwcNtCFn0SmKb$nfvRYZa41sYe16FWxzZ6tfDDVS45uQFYo49pigXuoO4= \N f estudiobertolinofuentes@gmail.com f t 2025-09-11 18:52:41.741166+00 +1775 pbkdf2_sha256$720000$u0MyI9y797thrMZaGgToVR$XJ+yXWUf9X7GJeDET99cobyi5377UIXXLxsSeu1UWr0= \N f florenciabelen_99@hotmail.com f t 2025-09-09 19:08:06.069935+00 +1776 pbkdf2_sha256$720000$IAsJ8HiaJJFlfzvYYgkiFh$Q4U8uMVhQd1830aHZRT6w5aD+udfO8ANaF+azZUXguU= \N f maffulloleonardo@gmail.com f t 2025-09-09 19:10:25.194747+00 +1777 pbkdf2_sha256$720000$mZ2o4zZlylVGyOL2rGWzgc$5O7R4jOKRuL1DGnhwOKlQOeinoYXhvWzbPCLruF/Hgo= \N f johanadeniseojeda@gmail.com f t 2025-09-09 19:19:58.720838+00 +1778 pbkdf2_sha256$720000$tFHgjAiGg8q87QNY0V0meJ$wYxwhHkJmCPZjHYnf5j5snhhXaSjdTq8ewC09Wyh6AM= \N f mechiabajo@gmail.com f t 2025-09-10 13:48:10.838465+00 +1779 pbkdf2_sha256$720000$16iNUJSFXsiBqMIz9PDh8G$3O/A6Y/AwNpfm+JiaYbX2WUQVqr13B3n2fjan6/Bmj4= \N f marcelodesande59@gmail.com f t 2025-09-10 15:20:19.634325+00 +1780 pbkdf2_sha256$720000$5c3CTr1s9pKHr2FM49nFBv$TM9YRwVhInoTfFUDLW/kh3fW6vb8IlyDKrCBoRaLaqk= \N f menchisabrina@gmail.com f t 2025-09-10 17:05:51.250391+00 +1787 pbkdf2_sha256$720000$nwVQFAg26qK8cBjv3ohxpQ$VkMibQMaY2Ac0HLxuE6XgIhvWsnmuFu4HEbMuUbIlRE= \N f Sanzobrenda@gmail.com Sanzobrenda@gmail.com f t 2025-09-10 21:56:56.063313+00 +1782 pbkdf2_sha256$720000$KpEcTbSVEfyUev4bWTGubg$xlev9+66o75YEtoy1mHcYEYMX8j09vLd4b4ZX/+9Q+E= \N f marcos.a.prol@gmail.com f t 2025-09-10 18:16:49.791081+00 +1784 pbkdf2_sha256$720000$g2vdOaU62pMmItvyMkQtrf$D/VF0BwVJqcb/lpG5nLdC3enJfESUkJhKzSSaZkKtiI= \N f noheliaseda77@gmail.com f t 2025-09-10 20:26:10.878905+00 +1786 pbkdf2_sha256$720000$Ui73BDgZTMXXFsNyUm0scr$qFSr46vMFOtF+kPioFUmbAbz6Mbn327bN44u1IpahlE= \N f fabiana.josse@gmail.com f t 2025-09-10 21:13:46.062956+00 +1788 pbkdf2_sha256$720000$TpHXPVaE0K8tHAR6AB5BCp$n3yDGXyCayecAMqdH4kvCHDH6olYCQ6gtLOYF7OoUD8= \N f kariirosamedi@gmail.com f t 2025-09-10 23:41:07.195688+00 +1789 pbkdf2_sha256$720000$VW6vGFktd24OzPP3t5WuK2$FSTSoxjAXCRRbQgjuKUGNlRPmJStjUlf1WWHoLiDIuk= \N f mjpagoto@gmail.com f t 2025-09-10 23:54:31.560289+00 +1790 pbkdf2_sha256$720000$rMb1HVYBW51YSNJBx4WmV6$kzrmOB8yb4WZqyKUBk2maJr51pFF7kZLz2COPOtB3bM= \N f eloso51@hotmail.com f t 2025-09-11 14:18:17.769318+00 +1791 pbkdf2_sha256$720000$gk8k7ndgGFvydIvYlV25lB$4vkpk+17ZczuLjaCO4HqBLS3pZY/kJSzZfScdqZ2P2Q= \N f top3_3@yahoo.com.ar f t 2025-09-11 15:28:36.267082+00 +1795 pbkdf2_sha256$720000$AYl3AtZeTvPxlzNHtv6qyw$j/ai6CnSTXhEkd9py73A3guj70A6f//oE5KJxzR8o58= \N f baldeonpedro122@gmail.com f t 2025-09-11 23:31:08.78555+00 +1796 pbkdf2_sha256$720000$gG9s91vvbLGYgKcUpr8bYs$dABE2k+F+6/IKanPEu6qO1/lT/YZO/5Fe+1Ld2rKENc= \N f jessicatangel1@hotmail.com f t 2025-09-11 23:34:22.380634+00 +1797 pbkdf2_sha256$720000$wr3AtPurReFoAzUxa3VRUO$8RWvSeSNdEW9jH1Jwa28M+IqJWiwn/M35HSPJDKkLMc= \N f milagrosduran2409@gmail.com f t 2025-09-11 23:40:12.076798+00 +1798 pbkdf2_sha256$720000$oV0pvLoBhd24zaStwfA7C0$VTcou4l5ZUpFNKqxtiNGV1Eq696ijOkFbFpQTjn9ATQ= \N f camiblankb@gmail.com f t 2025-09-12 13:03:38.936646+00 +1800 pbkdf2_sha256$720000$ka5vbrbi2eRbLKdLgAwIaY$o4akwF4eZwZO90P2crtTfaG/kI8ZVCeZzp7DdTUGY5o= \N f mavictoria.ferrari@gmail.com f t 2025-09-12 17:39:39.829208+00 +1801 pbkdf2_sha256$720000$UlSw1slNGRWRd3suhwWi4S$Ufe8kXsM0WetzKZgiJaOoLqiebRhs4aC31WK2O2LCLA= \N f paula.alpog@gmail.com f t 2025-09-12 18:22:21.074803+00 +1802 pbkdf2_sha256$720000$Hnsy1u7soaOwBJoo4E9pAf$ESwFrXiT2haIyUCiErTaaTaUJ0+oTWr7TITTRGIsp/8= \N f travascio.r@gmail.com f t 2025-09-12 19:46:16.04738+00 +1803 pbkdf2_sha256$720000$IpCxvDpnojcBLtAneKQwC9$Km7zXNEcENRaJ+ffCZYN2YUuUGR0Npiae+o49JYYY58= \N f rochiambros@gmail.com rochiambros@gmail.com f t 2025-09-12 22:45:40.524019+00 +1894 pbkdf2_sha256$720000$151Zyi3dBNsgw64JpzEJaL$et5SrUQ88LyekJpk4ZbSENBkZRD+0Ep53DmilGMI7BI= \N f rodrigoale.gallegos@gmail.com rodrigoale.gallegos@gmail.com f t 2025-10-21 18:33:46.697834+00 +1911 pbkdf2_sha256$720000$uqMtYScbqdtvnQKWjxCoSH$HBs3lJ16/HBZ9Kij3ltlDnTHIuypqPBdyiE0QaEcwfA= \N f ujhg.uw2017@gmail.com ujhg.uw2017@gmail.com f t 2025-10-26 18:54:56.077198+00 +1923 pbkdf2_sha256$720000$s60li1UnP8BADJ2LhUyRdg$1SKlMtDqoHEWda568i8CmGXkWOph0Af6XXbd+4TgbaU= \N f Valen_mtz_14@hotmail.com Valen_mtz_14@hotmail.com f t 2025-10-28 16:36:27.14487+00 +1765 pbkdf2_sha256$720000$jckRkCnZAfJ2tYIAq5JloD$tJo+UcR2vvoNto+bkRJtDjowBVHpqCBhQbsEQiJbMcQ= \N f b@b.com b@b.com f t 2025-09-08 15:47:20.057337+00 +1781 pbkdf2_sha256$1000000$aUhfQL6swM89yDUDcPDwgS$iLleSc6Pb5bod+fRBmobO4Yqx3JJZcqQWDasWtIyxAs= \N f marialuisao2005@yahoo.com.ar Maria Luisa Oviedo marialuisao2005@yahoo.com.ar f t 2025-09-10 17:28:15+00 +1804 pbkdf2_sha256$720000$yhGv0Im8Wi4yOYPcb6yZnl$lTxxEjBy/tovJqC9M2GfnsSv762VcU7AiBTq1KULTjA= \N f luaraneda06@gmail.com luaraneda06@gmail.com f t 2025-09-13 16:23:11.526703+00 +1805 pbkdf2_sha256$720000$tnSDLNbnGE2k8lCKQ5alXp$sNql+6+uM248Uz3s0CNCiaABrP0p7jGpchDFKmVWWuA= \N f silvanafarolfi@gmail.com f t 2025-09-13 21:30:26.269983+00 +1806 pbkdf2_sha256$720000$wUNMuPkYAWzUtZqWFBYnXv$ewt/LXQU8WXgyaU4bxVHzNo/wIZkHMYu9qIXsWVkbOk= \N f marycuchi@yahoo.com.ar f t 2025-09-14 19:01:13.326093+00 +1807 pbkdf2_sha256$720000$D0Ezxmfok4hN5bO30lrqrR$e355dLPAX+Rm0sppvUkp0rkCOuba385v+whDQWBYTN8= \N f danyromero1508@gmail.com f t 2025-09-14 19:08:06.164509+00 +1808 pbkdf2_sha256$720000$IZB6bVd0Rx4j237T8t2ebK$eSPlxVKTO7EJ363eXB2HOO8Bfp3pO9dKw3mrl5QCUHA= \N f carito_p789@hotmail.com f t 2025-09-14 19:26:03.037149+00 +1809 pbkdf2_sha256$720000$h5sj6jvBjg2MKhqXifBB17$kpzSAZth3hOliddUlT2LRJp66Sbr8OdgZLUoL7q1G5I= \N f giustolia96@gmail.com f t 2025-09-14 19:33:51.82637+00 +1810 pbkdf2_sha256$720000$UynkOEqwp2GK3cxsAuJnL5$BcEOkyt6VpSiexs3mei00QeD4EC4pD378Z3HpSK8NZk= \N f sierraeris@hotmail.com f t 2025-09-15 12:49:42.310452+00 +1811 pbkdf2_sha256$720000$Auq8i1Qm1rtk6IFTCiQlNS$EPieQQYO/0rUMAs7Bsh3SoffarGqXHRst9yCnECkKw4= \N f lolariasfotografia@gmail.com f t 2025-09-15 15:11:27.566836+00 +1813 pbkdf2_sha256$720000$zyHll0ahdBub74Gn7pHZXV$kx5Hlnt4KeSR9Lw5EafFkY1Cc2gUkjrKwtB3pxBHpXs= \N f juliagovaskia@gmail.com f t 2025-09-15 18:18:27.126113+00 +1814 pbkdf2_sha256$720000$zI2J5gTuOFzNLLN2JpoBAz$jPcBDrBLhHJd1ORHlWo/mm+Uq2Atxy3GgrLikWU/dM4= \N f Noefattori@gmail.com Noefattori@gmail.com f t 2025-09-15 19:43:24.010617+00 +1815 pbkdf2_sha256$720000$uFA0T1WJ5kjZkjMihZ7kYd$vP7+cADOA8AMT6yFeLGCWpnxaIhR5k9G4owRDeBAmJk= \N f c@a.com f t 2025-09-15 20:01:01.607357+00 +1816 pbkdf2_sha256$720000$5LxIgpcN0pkLnMRKrMU5il$ZR1F6Q0eOaV92KZZc3UdJ0/DbCzxW8TQHoiRVXvjaJ0= \N f lauravoliverio@gmail.com f t 2025-09-15 21:35:10.620886+00 +1817 pbkdf2_sha256$720000$eWaH8dNy4eJmd1xqD6nVid$hks4iDT3s0UXa4zCEcgubCDDcNXJWzzG9JHjyN9WwAs= \N f antonellasofiavila@gmail.com f t 2025-09-16 00:14:25.358528+00 +1818 pbkdf2_sha256$720000$KIMIJ33igouXVZTnPiI43M$UUtWKZVZSx/gwuNRTSDAaumP7IM4h1XpwgBkdEmp1h8= \N f Luanaparanderi049@gmail.com Luanaparanderi049@gmail.com f t 2025-09-16 06:13:56.126134+00 +1812 pbkdf2_sha256$720000$KAiXF37r7jdRJ0lMa7qqPT$VZ71DQoSWvB6NlmZTaujx0SADr22eRZnAC3AoFk2RjA= \N f ezequiel.falabella@gmail.com ezequiel.falabella@gmail.com f t 2025-09-15 15:37:31.934877+00 +1819 pbkdf2_sha256$720000$xF4ARsIXDdJX2C5EsKMxSJ$xfhqKefzB3xEyAmAa2Pel14E5O1C1rUIjFCApncfAWw= \N f majigo@hotmail.com f t 2025-09-16 15:39:39.552351+00 +1820 pbkdf2_sha256$720000$T0sCRAyEr2jgrxZVh4KiLx$oCQuOgf0Av3TpJ1ZVYNfZ0Yqwj7w9ygyqjlNa+OXNdk= \N f neomarinoneo@gmail.com f t 2025-09-16 15:43:27.510815+00 +1821 pbkdf2_sha256$720000$A8nwjQGdNA7LtS2xteBSah$n04BnnCuQh2xpJPztQy9Wyn8un3XjYidLdpVoawEf2k= \N f drafarfanc@gmail.com f t 2025-09-16 15:57:38.603251+00 +1822 pbkdf2_sha256$720000$q8SuUfjqrQUMP72qauXxMr$vdPABzJXgOIY/v6iJS+E5ZWk5utTXoajbsKapK+PJs4= \N f brunella.21@gmail.com f t 2025-09-16 16:19:15.652826+00 +1823 pbkdf2_sha256$720000$buGNAL6rMT78OtdSbMywWd$zzK8ZYmkxtTtBP3D15/kU8669aC9Jmv44CcSxfFcfNA= \N f zunny_198@outlook.com f t 2025-09-16 17:17:53.073351+00 +1824 pbkdf2_sha256$720000$wuIQE49iDnVXo1xS3PssFK$gzRc58q5Wy77k98CXXXmB1FxdlMicxlrdDtyvIGT95Y= \N f fotoscompartidas11@gmail.com f t 2025-09-16 17:44:35.879646+00 +1825 pbkdf2_sha256$720000$IAjh72B9WmE7hhSjv6aqku$QTiDmcbDAbZmNLHN4Q7uzjHVINwbEuFvZIw/JQmy3hk= \N f pandi2107@hotmail.com f t 2025-09-16 22:02:55.678672+00 +377 pbkdf2_sha256$720000$PCu2vm2DVEm9TDzrTHBWW1$WGbDW0qY95KVwkXZOO+BZop3EPwkH/S6u2+ljSFIO8g= \N f micaustaran4@gmail.com micaustaran4@gmail.com f t 2025-05-13 21:49:45.867779+00 +1826 pbkdf2_sha256$720000$YZYpukXQ2XpjTigSJZ1v11$nve5u2hpIvYS3AHtJflp0O+R1REmLDf9PG66RAFkrkI= \N f juangonzalez.cdv@gmail.com f t 2025-09-17 15:02:21.841265+00 +1827 pbkdf2_sha256$720000$1yZ8y94LbJvSzJmY3rK10y$4hzUnHQVgsbPZR917a6QRiTQTEIUHucWH81Cy17MENU= \N f leofara00@gmail.com f t 2025-09-17 16:18:00.609599+00 +1828 pbkdf2_sha256$720000$hBLOgimHnZP11yNRtYCJlO$+KZr+WwtFhY92ckzJ9aykmAr+dboUZs2P3cjb4PLbd8= \N f apourtale@yahoo.com f t 2025-09-17 16:30:31.505403+00 +1829 pbkdf2_sha256$720000$9LBz49igcWlU8d9pBL0lwy$Wrs/mMk/X6C1uv9pOzlqAvKwLhVaX+hULP5EJjRRHcg= \N f mailin.alfonso@mirgor.com mailin.alfonso@mirgor.com f t 2025-09-17 18:00:07.08939+00 +1837 pbkdf2_sha256$720000$EEPfn3YQq1LL6hhtvrLMyh$MJ3IOxG9l1ndJOIrIBNtIErfKWWwA9YOy4OTtAG3x44= \N f ivanasperoni27@live.com.ar f t 2025-09-18 14:53:39.218693+00 +1830 pbkdf2_sha256$720000$XXrxRftsNXWFV87mfzHWCG$+8sKuDrw+71xBZb87xcW7m31ceBiAnB/sMQ/vSyBz8w= 2025-09-17 20:16:10.368875+00 f maroman@live.com.ar maroman@live.com.ar f t 2025-09-17 20:07:47.525345+00 +1831 pbkdf2_sha256$720000$V8fDRvOWhokZZPk0704Vie$VPITqEDG1ssu8cEkK5FZXBslqF91m+YDHU+e/+ylB/4= \N f micamanzione6824@gmail.com f t 2025-09-17 20:58:09.120543+00 +1832 pbkdf2_sha256$720000$Pqe27zeYxWjcqSW86AdBER$WHG97xM1Hsc+pc9VO4Yerde8+FYPUEnFEQ2NjbKqnlQ= \N f onapalacio047@gmail.com f t 2025-09-17 22:13:05.633135+00 +1834 pbkdf2_sha256$720000$xOU5tJnZkN0UEIiEcsM5OP$T5bnpiRGFxvLjRd0YonY3r55B+uh+XOmfKOLjiztt1Q= \N f jennyfespitia1903@gmail.com f t 2025-09-18 00:16:23.298074+00 +1835 pbkdf2_sha256$720000$cqUXdqXkwnedIw8yHrFmmo$gaYc7XVuZLGtMm6EGiY8sLxesJxTyZBY1tMZerZpR3U= \N f mairaeugenia@outlook.com mairaeugenia@outlook.com f t 2025-09-18 06:35:13.957989+00 +1838 pbkdf2_sha256$720000$a3dLm8Er7LB5ceAkHfMzRZ$opr2rLskN6b5rkkzrIOsPCyKIWx2FcplcP+vp9PiRL8= \N f betsabez@miastral.com f t 2025-09-18 15:31:48.407215+00 +1836 pbkdf2_sha256$720000$OTMSEy0CBxVH9JwhvuE3fE$BfetkyqQoP22AYZgaNbO7bT1F0DqJH16MgE6bTiflFc= \N f adriiana86@hotmail.com adriiana86@hotmail.com f t 2025-09-18 06:36:57.05395+00 +907 pbkdf2_sha256$720000$pBgwyYqog3usWEVo3Gcg8e$HTxhhKrfAc1wG+qgwFioY1T2r2HxSbhjAaNkTq8elR0= 2025-09-18 13:24:40.409779+00 f carduscamila@gmail.com carduscamila@gmail.com f t 2025-05-13 21:56:42.377947+00 +1839 pbkdf2_sha256$720000$hnOfzH1holLY38KNu19lVK$+9v5oiQD8ejbSwq/qSYNsekkOBiMeGrH8oNzawYudog= \N f matcat73@gmail.com f t 2025-09-18 15:39:22.331773+00 +1841 pbkdf2_sha256$720000$NWMs1ZZjKrYONWNkm33y34$1HW6bz8pX9/3KcNubTIhP/RPcK+3N15lQb8U1HBjCQA= \N f gabymedina33@hotmail.com f t 2025-09-18 17:52:32.006854+00 +1842 pbkdf2_sha256$720000$QRxCxaYctMqhsaRx2REwKR$5RabrZ7wppxEz+SqHk0WJLMiuXSqBs+4bKWMPQQBmCg= \N f deluca.antonino@gmail.com deluca.antonino@gmail.com f t 2025-09-18 18:12:29.58297+00 +1843 pbkdf2_sha256$720000$dd2gdTMBpNwS35nLMseKPV$UPm8boqyW9tXkeqnaupfoxZMhGh4+0w3EjnQIbS8/2c= \N f candeg234@gmail.com f t 2025-09-18 19:30:15.572628+00 +1844 pbkdf2_sha256$720000$JxoX9vOy7dYrRSRnH5AW1U$rVGAANFMDT2Ix8PR+Qaza5u3q1iuy7WVS2nOjqkSFmk= \N f marinagalansky@yahoo.com.ar f t 2025-09-18 21:26:45.363301+00 +1840 pbkdf2_sha256$720000$p4D1iXlv4HQ2QPKZ3rkyIq$U1f01/fdzq377ArjLDIA4r4Eq6jnrnahKWS8pNPYHD0= \N f martaelenaochoa14@gmail.com martaelenaochoa14@gmail.com f t 2025-09-18 17:12:50.045817+00 +1845 pbkdf2_sha256$720000$DeHbGImBWe1ItV6SFna9wt$41zda7o/INZ1+R4RJfC0feCmi2bO34tm8mY7j6S2PAs= \N f caramelosabrina@gmail.com f t 2025-09-18 23:59:06.071046+00 +1846 pbkdf2_sha256$720000$LEsgDTC26HA6eDzY8yAne3$m9qYbDsInDBc3JvIKrpfscckvTq1pcHB1wF7qOEt8rw= \N f fercaraballo1989@gmail.com f t 2025-09-19 15:30:08.774896+00 +1833 pbkdf2_sha256$720000$ALt5HcM3w5s6w9VSPupuuH$dE4rcMZIMgxDtvWAw7FlTUxMcSzPxRa4toki1beHlXY= 2025-09-27 14:10:34.477845+00 f mlasarte4@gmail.com mlasarte4@gmail.com f t 2025-09-17 22:57:11.236772+00 +1847 pbkdf2_sha256$720000$BkTHbAHZrKlPAS5LnVtbzw$vUyZKO7z4H9HvVrqcST++tQAWGV3nB75i9IQsWaCzqU= \N f edujmaa@gmail.com edujmaa@gmail.com f t 2025-09-19 15:56:48.498321+00 +613 pbkdf2_sha256$720000$MNv8GMApfb5c8Lu0ofNSBG$y+uj4XmPXNh0ZG/PKcPwI/y/vT56OXW/gJnV7cYsveU= 2025-09-19 19:14:09.713378+00 f giselemurua@gmail.com giselemurua@gmail.com f t 2025-05-13 21:52:55.189311+00 +1848 pbkdf2_sha256$720000$FTMWb9HQX3nKEvpvmDFniI$Zg2umQq2Ga6LT3HE4FAbfOus8ZrGTfoMrgNM4UcL6yU= \N f ycarrizo.contadora@gmail.com ycarrizo.contadora@gmail.com f t 2025-09-20 15:27:56.051866+00 +1849 pbkdf2_sha256$720000$j1hj1cRodXFvencFzL6vr7$LXB+WmpoZ9xWHO8JSJAZRrS7pIIyTsoOBFbijGriqko= \N f victorialarregle@gmail.com victorialarregle@gmail.com f t 2025-09-23 16:50:51.464601+00 +1850 pbkdf2_sha256$720000$EAP7Atmg5jkQvYWWVfFUMb$dgQp7YKv5jHnDnazPMHyNMVleHuCFKGyqFZRBNrqdYY= \N f yesica.rp05987@gmail.com yesica.rp05987@gmail.com f t 2025-09-24 01:04:19.036054+00 +604 pbkdf2_sha256$720000$HwY6ydo3YtOHnWuNnRy6Dv$5gHHtP1XBV0HLHpkMabXG26SazS38cPOhYZIS1dUODw= 2025-09-24 22:54:01.504381+00 f maby.ra1977@gmail.com maby.ra1977@gmail.com f t 2025-05-13 21:52:49.310517+00 +1852 pbkdf2_sha256$720000$Fihh6g4qOQvrWexSaUKTxt$uxgdJLd7kYyt44uR1g/VFB2Wk77YjG+dssrmscp8bIs= \N f nahuellautarog@gmail.com nahuellautarog@gmail.com f t 2025-09-25 11:19:55.145562+00 +1853 pbkdf2_sha256$720000$aS2kWAegxTqnOuMxE5K78d$akIGX86zMlNMXIVAm1fnjvX7ebwn04Y0Lm2dCdATehE= \N f veraquince@hotmail.com Vera Hualde veraquince@hotmail.com f t 2025-09-25 20:49:40+00 +1855 pbkdf2_sha256$720000$Ng8QGnpzo6fIfvy8vDPtft$JImQHNAS7rU2a3xK07RlVHjKfEnRDGu+ASys+UT+sLc= \N f mariapazfrontini@live.com.ar María Paz Frontini mariapazfrontini@live.com.ar f t 2025-09-25 20:50:49+00 +1856 pbkdf2_sha256$720000$Vh8aX8ND79O2jxhhyKDkWC$XlJd0D1IznTQRwsn8Dhwoa2g4/pk7m3WW6gxkuk1GeM= \N f martinezjuanma39@gmail.com martinezjuanma39@gmail.com f t 2025-09-26 13:21:34.635613+00 +1864 pbkdf2_sha256$720000$YtBpUQcj07w7N7f54Oz8yB$HULIqvZQ+8HJr5RMsuZU34Azowb0UnYV2oFFNPyl0yg= 2025-10-01 23:21:43.300842+00 f guada1730alonso@hotmail.com guada1730alonso@hotmail.com f t 2025-10-01 23:15:57.029552+00 +1859 pbkdf2_sha256$720000$8S5vBsVIWYSQrTxWf1Ipfg$SvS4M3YZQY9MY4vFzyAtNJjZNHGA36P/TSR0WaMXS+k= \N f tmayoral@uca.edu.ar tmayoral@uca.edu.ar f t 2025-09-27 18:24:23.347255+00 +1858 pbkdf2_sha256$720000$RciOKm0WTyTBAlX0P9nQp1$Zpi/mqg1xeXnIdNgre04TSVnD+Ep2CG4vDy752pjHAE= \N f tomasmayoral@hotmail.com tomasmayoral@hotmail.com f t 2025-09-27 14:59:25.87787+00 +1875 pbkdf2_sha256$720000$pXTROgu43I5dUe0CSiy5FJ$tBSOSYO6Uezxp3myqiKXnY74IiK941D2KEC27hHHgMw= \N f carlaa1604@gmail.com carlaa1604@gmail.com f t 2025-10-04 16:51:43.766653+00 +1865 pbkdf2_sha256$720000$mjZbytCpern2fhfRtUU747$gQRyKmqNfTCIulm1DFYaRZg6xmSgB/XvegmYHc5F3AM= 2025-10-02 01:04:21.73201+00 f lupanovero@gmail.com lupanovero@gmail.com f t 2025-10-02 00:52:55.215459+00 +1860 pbkdf2_sha256$720000$7mZoRnr5iczUKNw0ESHUuL$mRIcEMMXCphPPaAfk30RM2rywybiv7f1NcsWpI6aq4A= \N f rociobelengalarza87@gmail.com rociobelengalarza87@gmail.com f t 2025-09-28 16:45:03.513166+00 +1861 pbkdf2_sha256$720000$Mtj2ywrwXKIce4Ixgcoaxg$CX3quLAPJNBK0UTTJlZ/CL0vSng5668bf/jmR9r3tlg= \N f juferrari910@gmail.com juferrari910@gmail.com f t 2025-09-29 18:22:38.260539+00 +1862 pbkdf2_sha256$720000$dR8Vvnm8SfuBNr3DohwRPI$df6L2i8Zr4r9HEEaS+KOLx6dF6e7YAaQjKQ9or/0cbg= \N f sofii.toibero@gmail.com sofii.toibero@gmail.com f t 2025-09-29 20:04:54.578396+00 +1863 pbkdf2_sha256$720000$RIzcfqjhtQNZr0psc4d7mB$Uu36pEkLk71iJ8AyuzZh5db9oBIGiemzOMeFIW+3DTY= \N f eugeniatolosa@gmail.com eugeniatolosa@gmail.com f t 2025-10-01 20:51:58.650451+00 +1866 pbkdf2_sha256$720000$JsyzDxgp5uXSS3i6JuViZ3$h/w7UEVmzYjN23HXc4r6JdhNgsB9E7UTj1D9LdC2IqA= \N f pfcontadora@gmail.com pfcontadora@gmail.com f t 2025-10-02 06:21:16.443893+00 +1867 pbkdf2_sha256$720000$p05ThwXTjGfjBHyTPOzS5J$XGeUCPuOJREiuuOA6mSYJjNECyk/KXtNMpdIH/0uHi0= \N f valencinat@hotmail.com valencinat@hotmail.com f t 2025-10-02 12:47:17.052052+00 +1868 pbkdf2_sha256$720000$VYkKswrrALMGsXFiqbL2nM$nqCCN+Los1ZsRlnhK75gRXwb5EI6/w78EZ1ci0bFY5Y= \N f giulicinat@gmail.com giulicinat@gmail.com f t 2025-10-02 12:49:05.64088+00 +1876 pbkdf2_sha256$720000$YlrowUU1AdQqVBC9gBz2R0$QLDGEtWAOqZkVlrLnyzkpxI9UuzGhJxoTuIEy5OYgh4= \N f analiabondanza@gmail.com analiabondanza@gmail.com f t 2025-10-07 02:35:45.359047+00 +1869 pbkdf2_sha256$720000$kMXTPAgFtgQjIU05LxCHui$2hx4k3z8ATF1bI7h+i/DsN23WGpRYMTs6fpU0PxjaiA= \N f adrianezequielc24@gmail.com adrianezequielc24@gmail.com f t 2025-10-02 17:44:02.777837+00 +1870 pbkdf2_sha256$720000$EmU4UMJws7zvTfTI6a1lGS$CR9A9JcVJ/Q+MSJwIFpnI8Wx9IumIB7oUwoCngw/dMk= \N f canufloress@gmail.com canufloress@gmail.com f t 2025-10-02 19:36:28.882387+00 +1871 pbkdf2_sha256$720000$HZxDLRManCDYgLqYpnlwDT$x//5H7OmzbUJyys23wPKO33oA6US6/KYUETDVW0M3Ks= \N f lauragomez.9124@hotmail.com lauragomez.9124@hotmail.com f t 2025-10-03 06:04:55.298233+00 +1872 pbkdf2_sha256$720000$eBaBcWvUWRypba8VvQ96br$RFF8DYyjgdIgSm3SRSCgrV9LYze9EK5m1C84MTlbqbw= \N f sowamiafiorella49@gmail.com sowamiafiorella49@gmail.com f t 2025-10-03 12:11:47.569895+00 +1854 pbkdf2_sha256$1000000$CX4xEgDwXgcbfTVpaQxXpB$gAfkkPFQzjmtWkahIksD+r1iVmBj2e7LOmq2mPmYugU= \N f drlevisman@gmail.com Damián Levisman drlevisman@gmail.com f t 2025-09-25 20:50:17+00 +1874 pbkdf2_sha256$720000$MosT45ABcsZ848t69gsb3n$jUTsXtlJuT5Z60dokJkC112aOUiead1AAy1MGy68Mts= \N f grilliecografiaveterinaria@gmail.com Adrian Grilli grilliecografiaveterinaria@gmail.com f t 2025-10-03 13:32:38+00 +1877 pbkdf2_sha256$720000$4Jc0cCdvEQTryoCJU1Pgbq$os0F+yuJRbKU6yNaBNYiIWFSOXOAXqikTtyU8iG/efU= \N f franceschivictoria@gmail.com franceschivictoria@gmail.com f t 2025-10-07 13:05:31.896937+00 +1857 pbkdf2_sha256$720000$aEzkIeiiDwEwNQrxvbfAvQ$7fInh9ua0bBQKjI6Mft+5UYmvpczTDWl/siMFAPDDV4= 2025-10-07 04:56:25.302796+00 f fkrecul@gmail.com fkrecul@gmail.com f t 2025-09-26 22:01:21.137424+00 +1878 pbkdf2_sha256$720000$lf196mXMjWSm40TKyudaJL$rixOcTRGWXDjuS+zCXlrQTkYrJkqcpyQoSSECKZCQoo= \N f dgarzilli@gmail.com dgarzilli@gmail.com f t 2025-10-08 09:22:35.223426+00 +1873 pbkdf2_sha256$1000000$cQXrQ7zrAwpAiUtTq8Fvcu$mF+BTNTj0eXZLE40j4n9ndyUMb6fhpWznIGJRs9L5jg= \N f zeriodas@hotmail.com Juan Manuel Gallardo Zeriodas@hotmail.com f t 2025-10-03 13:06:35+00 +1880 pbkdf2_sha256$720000$QfUdN77kbkyQSHptQ59EC1$V/KFOiz2eah2ZuKG744ceFaiuZX+mqcBZTcYnNxqomc= \N f azuuboedo@gmail.com azuuboedo@gmail.com f t 2025-10-08 22:41:49.580556+00 +1879 pbkdf2_sha256$720000$AY5dQkEIdPNjlHRn8mxhZr$jM/esCX2Yb6tgW7PI/2xgsDTsJt+kJSMv5dwchv0yQA= \N f clinica.burgess@gmail.com Clínica Burgess clinica.burgess@gmail.com f t 2025-10-08 19:01:59+00 +1881 pbkdf2_sha256$720000$oDFySc3VqalyZvziRaPVHr$f2+Zsq8Ak7oFCaO9bCPue2/rsQ6bB5vP1/ePIQXF+/w= \N f gibriozzo@hotmail.com gibriozzo@hotmail.com f t 2025-10-08 22:43:30.561646+00 +1882 pbkdf2_sha256$720000$B1kPUhaxVbMZzHcWUkc3QU$GlRJWBWCrNNHG0zLMvt0nNMNqqohd3U4sLDl7eDoN8Q= \N f ricardohgualdi@gmail.com ricardohgualdi@gmail.com f t 2025-10-10 15:56:40.246567+00 +1895 pbkdf2_sha256$720000$ktKeuQOI3T4Q8HbMUBbRtb$J1tnJjIY+iBnl+j0rxkuGTsjLVSSo/AIFaepgVB9qXE= \N f Yasminperibeltran@gmail.com Yasminperibeltran@gmail.com f t 2025-10-21 19:04:41.315069+00 +1851 pbkdf2_sha256$1000000$IFaYSagiroFRG0SXGm5dK6$2qiN9+ctpR7oJpQtysHr0WbNs8OkukRxovRjVhkOVu8= 2025-11-09 10:43:22.988211+00 f marianalasartebolognini@gmail.com marianalasartebolognini@gmail.com f t 2025-09-24 22:22:40.715937+00 +1884 pbkdf2_sha256$720000$ozVG3ilZ744g7B1tD1Q3GP$S/zWG56sK0qhiLzbLFcqxX2c5JDIjku2US8o7nZIoHs= 2025-10-12 17:11:11.035337+00 f vivianarigabert@gmail.com vivianarigabert@gmail.com f t 2025-10-12 17:06:05.643815+00 +1885 pbkdf2_sha256$720000$MA32gydbNQ9ZI7msWu8cuw$kzbFcPtcFTbXW+qyKoNw+OBYHnPkQ4jdBpi4T2pM1dY= 2025-10-12 21:55:58.796888+00 f mariana.coga@gmail.com mariana.coga@gmail.com f t 2025-10-12 21:53:44.212142+00 +1886 pbkdf2_sha256$720000$kYpR81seAfAn4ImjVCCkYJ$MsHE0n4AfhsSnbvKeBbqeePbs+SvnPaqPu8iP3CsP/o= 2025-10-13 18:41:52.491378+00 f grisafios@gmail.com grisafios@gmail.com f t 2025-10-13 18:39:21.482361+00 +1887 pbkdf2_sha256$720000$WfQSAZKIsx6Gvocmk8Tvvm$TR0oW3q4g+wpNY/AkOaXwWQCiyVSQ2Yy0QmuCY4eHsg= \N f gonza-rulo@hotmail.com gonza-rulo@hotmail.com f t 2025-10-14 18:18:46.256978+00 +1888 pbkdf2_sha256$720000$nnUfXNNK6b2AQ5w9Rm7AlN$YmaTfe37kNdhQYy/+bvLCU7r8g7w0zsPUSNXQeHDR5I= 2025-10-14 20:58:45.607089+00 f julispannen@gmail.com julispannen@gmail.com f t 2025-10-14 20:57:24.297015+00 +1890 pbkdf2_sha256$720000$FcEHbpWb2M4QZnPwSj058M$65ZvRRff2qRkFx+KgRexLXwr0TWceFI9w7oehUWVe/w= \N f caballeropaula@hotmail.com caballeropaula@hotmail.com f t 2025-10-18 12:39:46.992128+00 +1891 pbkdf2_sha256$720000$u6dqzleI7MBdhZF0Yroxkc$mGER06P3GkiiP6vC3Vfjt6vrKZ96K4ekoZ5ENSkQink= \N f Moirabarron97@gmail.com Moirabarron97@gmail.com f t 2025-10-20 18:00:11.952609+00 +1883 pbkdf2_sha256$1000000$HQPaKHmsFs75QXIoP4OaPx$prOZVx40zHaw7VMt9oVY1rCBqR2KC53WaJKNU2E3RNM= \N f marinaschulze5@gmail.com marinaschulze5@gmail.com f t 2025-10-10 22:53:58.052805+00 +1889 pbkdf2_sha256$1000000$jEFc72LCvALBezWhuLWdZI$2T0VFrPV3n+Wwc65VhPw3Lvx1fjSeIzmqUxWDxuqb2M= 2025-10-19 09:53:00.612234+00 f vickyromvaz@gmail.com vickyromvaz@gmail.com f t 2025-10-18 11:31:14.890374+00 +1892 pbkdf2_sha256$720000$LlRdjsFmMpDV3ZEVGrsvJx$wcb0zrSo04jBwCEOwqNhOyCq+RoUxThb3yZr1w2DDzA= \N f franco.fi@hotmail.com franco.fi@hotmail.com f t 2025-10-21 14:39:32.647499+00 +1893 pbkdf2_sha256$720000$6qKQJt4DEYwKUKFo3lrE8l$Be7wlT2okBSgXKmMvAlOAP5/kbk33rwpQN6Bh6ph45c= \N f Valeriadefelippe7@gmail.com Valeriadefelippe7@gmail.com f t 2025-10-21 15:20:59.426326+00 +1583 pbkdf2_sha256$1000000$bPx4fDqCXvEAGR3uqCgCAL$k+kuZIRs6co5FkPkLkAVeUQyj0ZJUls6fR2jq6YcBJQ= 2025-11-18 16:17:15.295168+00 t Ingrassia Aldana Ingrassia aldu.ing@gmail.com t t 2025-08-15 14:35:38+00 +1896 pbkdf2_sha256$720000$RcaQuB891hfg6wqBtIHF7W$JyxT57fbgvib7Wjvgm5qYr+3EBfbSWgvK7vT3p+5muI= \N f santiagobeccaria@gmail.com santiagobeccaria@gmail.com f t 2025-10-21 19:30:06.437924+00 +1897 pbkdf2_sha256$720000$QbI3i7mAv9xrV4rYlDlf3o$xj6ZisUswWJ9tbqXL9Y46lfGaa1CchmQdSb1wkfBxWg= \N f jorabal56@gmail.com jorabal56@gmail.com f t 2025-10-21 19:45:59.604645+00 +1899 pbkdf2_sha256$720000$fQOZpkw6Fi1U05V8IJ8sl2$1eIGOieRuu3fr5sW0i4YfQhlvpa7k5NLo0P2nhet74Y= \N f Lourdess.cainzos@gmail.com Lourdess.cainzos@gmail.com f t 2025-10-21 20:55:02.936099+00 +1900 pbkdf2_sha256$720000$xREOXQMsI44AjfocGWLxvT$E/HpvPfSndmu9tbN2EqVTQoaj2NHlckWN7boJx5C/z4= \N f am.santi1918@gmail.com am.santi1918@gmail.com f t 2025-10-22 07:30:47.851019+00 +1902 pbkdf2_sha256$720000$KhTQ0Kbn6mVwPahQepiQuP$DFZK4LmKwvIIShaarxvsy9JzdaTbFZy1ZK3WFNVZrqI= \N f florenciafollino@hotmail.com florenciafollino@hotmail.com f t 2025-10-22 18:01:58.384743+00 +1903 pbkdf2_sha256$720000$eSVxzpJC4S3DQ2PxME59zZ$eotyff2S0cDHSCgM1kGsL6q3cv3fTyv/jfDvycu+/Tg= \N f karemincarnato@gmail.com karemincarnato@gmail.com f t 2025-10-23 11:43:17.606262+00 +1904 pbkdf2_sha256$720000$UzTIJgj77TOVRpIc0jW03c$PSSGMN0AcMG2miCdlSb4KU9QkRZ1aApf/33LfcFW9ZE= \N f Stellas2010.es@gmail.com Stellas2010.es@gmail.com f t 2025-10-23 13:14:46.500916+00 +1905 pbkdf2_sha256$720000$bdD9EoAaCEPJL79arwIbmt$vATqEwG+VlvSvzPK6zNpH0vxHagh5aqTAidfOCcsiOU= \N f jotarosli@gmail.com jotarosli@gmail.com f t 2025-10-23 17:09:01.645816+00 +1071 pbkdf2_sha256$1000000$3QTi46NRCGYqtn8ka8MuZm$P70t+5fWI+rlL1FDkgqh95tXg2AaJg2LQ4Ou3PYsC0o= 2025-11-22 17:56:55.554952+00 f nestordanielmemed@gmail.com Nestor Memed nestordanielmemed@gmail.com f t 2025-06-03 12:43:33+00 +1910 pbkdf2_sha256$720000$lJHd4pVUNyRkvebnXpK4H5$hmoAsyLKmW3YCAb3Zu84/sNGFJ6PLrmGtn4X/xSgFLM= \N f Sebasgroetzner@gmail.com Sebasgroetzner@gmail.com f t 2025-10-26 18:48:01.262134+00 +1912 pbkdf2_sha256$720000$6EMVedO0nkzTML1U5Wi43r$NP+utEGyAly8598PF7NVZ7Yf57U3i8C4Oq28tsS95K8= 2025-10-27 12:50:40.126815+00 f pblancorivas@gmail.com pblancorivas@gmail.com f t 2025-10-27 12:49:15.816934+00 +1913 pbkdf2_sha256$720000$L7wVBHHvDv4WL71Y8UKEbh$k65Ukv0K5pi8LzQnJ9Mvifc1Wcdr34UFX3HG+pRmQJA= \N f luciadallura@hotmail.com luciadallura@hotmail.com f t 2025-10-27 16:10:34.024657+00 +1914 pbkdf2_sha256$720000$6pqaWPHu4BkVxnrI6KwpLg$BV024Z2dZ6Xq7pu4MHtaqUXdpxuznIbcQ/LfwzF1zIo= \N f marielceciliaeugui@gmail.com marielceciliaeugui@gmail.com f t 2025-10-27 16:57:10.85975+00 +1915 pbkdf2_sha256$720000$7LPSvTA8UuVNjyyop4UOXw$C8ogotTdX9AXDQFoQ36PraDiL9CiSrjLtE0Tkn5ZNBA= \N f caro.marras@gmail.com Carolina Margarita Marras caro.marras@gmail.com f t 2025-10-27 17:35:09+00 +1916 pbkdf2_sha256$720000$6T9BBsCkYWBIJPcOP4pyJE$GU4bO2gAFi/II+4Qh7Lm41EhtmOC/bLYE6y5n1OdI3M= \N f LUCAS.ZECCHIN@HOTMAIL.COM.AR LUCAS.ZECCHIN@HOTMAIL.COM.AR f t 2025-10-27 19:06:32.817069+00 +1918 pbkdf2_sha256$720000$hddCh8GtRlXG4skgXuLIll$Juudq0rBU5jheja24SC2kjpyuaCPIBgei45PfuZ0i5g= \N f alexfiguerasilva@gmail.com alexfiguerasilva@gmail.com f t 2025-10-27 23:01:38.454108+00 +1919 pbkdf2_sha256$720000$rT0pL6TBIV6CBVgbZcqxtH$UsD/V88zRbaE19sY1sOpoQwRqD5w8i26oZ2UPNMS26Y= \N f sol.rodriguez.1319@gmail.com sol.rodriguez.1319@gmail.com f t 2025-10-28 08:58:19.695828+00 +1920 pbkdf2_sha256$720000$fWYtKFbrIzzRt1woAW7p7v$Ex9b7LhYhsELZ36d44ceBwh5uegdZ5OvBVP9Rfclekk= \N f gmvalle71@gmail.com gmvalle71@gmail.com f t 2025-10-28 14:55:57.154973+00 +1921 pbkdf2_sha256$720000$KzaRuALNEJWpV6Dm5eMWkS$3WJLlFqJamejw2HgzHmZlLA7Hxe2hmC4rFxCsuZ4d7Y= \N f florenciamas.cba@gmail.com florenciamas.cba@gmail.com f t 2025-10-28 15:14:12.051761+00 +1922 pbkdf2_sha256$720000$Qf8u2SXoS4QPXA4QkqVTYO$C6n0T3L2G2YpFlv6yqRNLVLXQShVaLHlY0JS2tOHU5A= \N f mvalen75@gmail.com mvalen75@gmail.com f t 2025-10-28 15:18:44.323596+00 +1925 pbkdf2_sha256$720000$ELaNjU39XntXqqTeb9yXAt$eCxJ95mbbOMe8hYOK8aU4OnPdbMGn9rcaa7LHTVa9so= \N f genesismarquezas@gmail.com genesismarquezas@gmail.com f t 2025-10-28 21:02:36.99284+00 +1926 pbkdf2_sha256$720000$PXNegnC0h7TeybPnALXptR$Q3s/egMVJO7AUq84fOFsVIIVIue34poi5UkpFxaIU78= \N f Vivi_zbn@hotmail.com Vivi_zbn@hotmail.com f t 2025-10-28 21:56:02.570462+00 +1927 pbkdf2_sha256$720000$lKxY2BxFLjgpaKGXI06ML0$IHKauBdblnK7ugJVpLfVZcH4J7vaC4YYlwtl8IVrL50= \N f silvinabruzzo@gmail.com silvinabruzzo@gmail.com f t 2025-10-28 22:02:06.965016+00 +1928 pbkdf2_sha256$1000000$IxpTxvPvwVPomPjwj7Il8i$ZtxXa8b56k/HHcmW/CZ1QoGK1vyg99J1WIKP9oiEXU8= \N f arielrodas.vete@gmail.com Ariel Rodas arielrodas.vete@gmail.com f t 2025-10-29 12:57:10+00 +1929 pbkdf2_sha256$720000$gyikFrTfoQdf8DFyDYXue8$er9qolkS6j9m7UDwsWF/gAjWS1/7+lHNKplnnQeGIOw= \N f erbinmanuela@gmail.com erbinmanuela@gmail.com f t 2025-10-29 15:03:33.660545+00 +1119 pbkdf2_sha256$720000$ywlVk3khuZGRkBguwVFeIy$rq5W2dkBLb0dApJLFABnmxFP8KN+jC91m3DP8zEpqkg= \N f edigonzalezpe@gmail.com f t 2025-06-10 00:44:15.200007+00 +1930 pbkdf2_sha256$720000$UftH1gVqfwUQmTefQ5dJco$ZN5M5zdGTnq0ux8ttMFQLQuvBIKB6F5UgBpfZRExHtE= \N f angiemairu123@hotmail.com angiemairu123@hotmail.com f t 2025-10-29 15:16:42.995954+00 +1931 pbkdf2_sha256$720000$bRBf4sAxM5chq9PGKm3MlH$DlSz2KrmgIgL3dybI9PTUmiCMkU0YLOmt9zP/jASpC0= \N f celiaaschieri@gmail.com celiaaschieri@gmail.com f t 2025-10-29 16:15:45.255413+00 +1933 pbkdf2_sha256$720000$LiNZpDaTODvZQsoYX43PLT$Ch6+PWhCbserraWGEBJvQcw4xxMdhMmLTIXpt1YP4y8= \N f pineironatasha0@gmail.com pineironatasha0@gmail.com f t 2025-10-29 17:53:12.719073+00 +1934 pbkdf2_sha256$720000$ZIQPbRVPsY50Hsyf09y1Ih$PDYGdZnDHL870fdAn/ZdCAVWGQ0X1nJTajA/ITjABMQ= \N f nataliafernandaluchini@gmail.com nataliafernandaluchini@gmail.com f t 2025-10-29 19:23:20.934709+00 +1935 pbkdf2_sha256$720000$rHQy1GkTaMWuuIP4QBPbKr$1Xnk2xFSglQQeOD8Fx8dSvUc1B6hlISgYgo5g6JXno8= \N f gabriel@maffia.me Gabriel gabriel@maffia.me f t 2025-10-29 22:20:13+00 +1936 pbkdf2_sha256$720000$HzhalquvicsqnZsVZ5dmaC$2bXAgJmuu8wh5AP9+putSZ+4GKGwlpC1vIOp3X904vw= \N f iszenliser@hotmail.com iszenliser@hotmail.com f t 2025-10-30 01:03:02.239197+00 +1932 pbkdf2_sha256$1000000$OkyJVgRgu6mXjL07AwaRQg$Ljev2p2oaSeajcFJ4UTFPEPjN1cXaGJdAzUQ2QFIMCs= \N f memeromero67@gmail.com memeromero67@gmail.com f t 2025-10-29 17:13:07.065963+00 +1937 pbkdf2_sha256$720000$fY4VZdoo3WTcKnzZV5git9$99qSjS6eDc8JeKdWtO12ABqcWqWYuthX2T59dgvY4lQ= \N f Grachuu53@hotmail.com Grachuu53@hotmail.com f t 2025-10-30 13:26:06.550306+00 +1938 pbkdf2_sha256$720000$3EYhJ2HmQhHvgVmEZKNn5F$9xVbPwz/cApFbWfGfs4Vnre73KILRemFr2fnlpZvgmo= \N f mirianeveiga@yahoo.com.ar mirianeveiga@yahoo.com.ar f t 2025-10-30 14:22:41.393509+00 +1939 pbkdf2_sha256$720000$AYn0L0ExkmaiXYNiKt12Lk$oKyoAo4i5xT2bLynr8lN3FQUGdNLcywZ84anz4MwW6E= \N f futalaufquen2020@gmail.com futalaufquen2020@gmail.com f t 2025-10-30 14:36:34.327461+00 +1940 pbkdf2_sha256$720000$DbhR6qgdKCCwddIeypVsC9$IMTr1xItXmvg/pVl3+TUqwm7+8ZAhvoOv2CHF/LpLxM= \N f y.aas@hotmail.com y.aas@hotmail.com f t 2025-10-30 16:39:21.799885+00 +1941 pbkdf2_sha256$720000$XgLDsxVMpp6P4TiJ5edkDg$Zne16eplcCUl6IwhEnVd7P2oZHWLgxMs0kr3xXu3bmQ= \N f Lorenalibramento5@gmail.com Lorenalibramento5@gmail.com f t 2025-10-30 17:44:06.228603+00 +1133 pbkdf2_sha256$720000$L8TVxpTluS0jmUt2Vk9vnr$8QuQAZUXCjpRjrctx6NRVYad768EzccIGsL8NavjfK8= \N f defey.vane@hotmail.com defey.vane@hotmail.com f t 2025-06-12 00:42:17.052069+00 +1942 pbkdf2_sha256$720000$2hWnCEgarGdhR15Tq5vYNP$DluCiKSmalWY6kjO84nnj1A2W4uUSHYD3oiDI+T3vGE= \N f sebastianvictovich@gmail.com sebastianvictovich@gmail.com f t 2025-10-30 22:29:48.238629+00 +1943 pbkdf2_sha256$720000$Az8x3rDnrIclI7jQisdW6g$rPJPYDymX74T15+Wxd9oXz+gRTsgtU+w+D5jVyCI0rk= \N f mmmvillar@gmail.com mmmvillar@gmail.com f t 2025-10-30 23:30:53.626133+00 +1944 pbkdf2_sha256$720000$HTFwujaQpjDmq3bz3Ve9YL$ODwjyjR8y2KwsWj/QMnW1eD/pyPdOAoWlLawbagWM10= \N f florencia.cifarelli@gmail.com florencia.cifarelli@gmail.com f t 2025-10-31 00:54:53.688935+00 +1945 pbkdf2_sha256$720000$bapxKlsnYikQGxEXQwsZC7$Y1MnypjYlKO+nJc+ms69V+2tovZ5U+VxB/5ic1sDbj8= \N f carolinabramirez018@gmail.com carolinabramirez018@gmail.com f t 2025-10-31 02:40:38.934386+00 +1946 pbkdf2_sha256$720000$fNnisPitpprnMprTqOENzJ$6VxOWpajE8vo6BVziDT2+LTSOjI+sPrAWexQPwi0nPY= \N f iaranizza5@gmail.com iaranizza5@gmail.com f t 2025-10-31 12:31:07.581282+00 +1947 pbkdf2_sha256$720000$K29BufpngtDvgGG2FcYf59$XgkdKT5ODawjQanp4nbS4XIRIRdQN9O8zOsJiNKpvZI= \N f iuro.monica@gmail.com iuro.monica@gmail.com f t 2025-10-31 13:06:37.377295+00 +1948 pbkdf2_sha256$720000$XVpnKm9uuu51ibeSJNFInI$WJzzhsalNK97g/09en8GhkHLtLQAwWnRHdwhDEsyn8I= \N f karinagalvan724@gmail.com karinagalvan724@gmail.com f t 2025-10-31 13:38:30.849064+00 +1950 pbkdf2_sha256$720000$NnzGcOziO53Wu92u3WXtqs$KL4PnT9JYQ2AQGIQXv3aluD+cqmhS8HOtiUqKaRKq8M= \N f adrisil1803@hotmail.com adrisil1803@hotmail.com f t 2025-10-31 15:18:46.424377+00 +1951 pbkdf2_sha256$720000$EF65WPjNpXJvQBPBc4Qa9a$FouTVjcuA5o2ZH41U/xHy9d4UOHPXH2bOhjRi9bRy24= \N f livia.durante71@gmail.com livia.durante71@gmail.com f t 2025-10-31 16:22:32.222681+00 +1952 pbkdf2_sha256$720000$zTVz6104AcdRoRwvd7xBKd$YI2mTFsWRl5FJTA38FLfbvbuHBhntFT6KP1pUn3Jnwg= \N f vickygarcia83@gmail.com vickygarcia83@gmail.com f t 2025-10-31 16:55:04.649399+00 +1367 pbkdf2_sha256$1000000$LoPNpOxH8wFdrUX6j7vmaa$KQFesrXLoRrD/hFpBXA7lyus/5g/PedHvlzbtmuZChg= 2025-11-17 15:53:59.61346+00 f vir_osso@hotmail.com Virginia Osso vir_osso@hotmail.com f t 2025-07-14 15:47:22+00 +1949 pbkdf2_sha256$1000000$rbzwKUGBgjiHar1jqggR5D$XxvC9p39vUCYMKv3diNLEVtp8quHu7BROa879tM2uXE= 2025-11-04 18:55:15.584045+00 f galiwer@hotmail.com.ar galiwer@hotmail.com.ar f t 2025-10-31 14:17:33.699909+00 +1953 pbkdf2_sha256$720000$uERmCzpNYisRLq7r3nVMwI$rfDHSKwwQYF8mLmjP/fImnIC6Vhmfp65B6r7Vex3UYM= \N f salomejury@gmail.com salomejury@gmail.com f t 2025-10-31 16:57:14.88153+00 +1954 pbkdf2_sha256$720000$W424xTAlk1PHWpporFy3n3$5y0sBKq5g0DByhJsJKu0YgLQGt2bXlyx4Hts8HSw+w8= \N f n_pezzi@hotmail.com n_pezzi@hotmail.com f t 2025-10-31 17:06:54.916296+00 +1197 pbkdf2_sha256$720000$peT9b90lPbnjZTfihGXPUI$UnbyDtq30l5Ghg7mEUsL/L99sGV3KAbyHh7YSA329pU= \N f mcdosilvana@gmail.com mcdosilvana@gmail.com f t 2025-06-19 20:33:30.84026+00 +1955 pbkdf2_sha256$720000$6hnwm2MDFQ4K29tDhUcHWt$jSJJUGN2UeeWovVNLczYqTVGE3vWw9LbuncAJkDaAY8= \N f js@coninpro.com.ar js@coninpro.com.ar f t 2025-10-31 17:15:39.926108+00 +1956 pbkdf2_sha256$720000$AwuE7c46KzmMgcQS6Z3t42$ef10G6hjt6erwIUwx5tUEzwZ9sKrkNAi5WZQz7a+Lsc= \N f luciana.rizzo@live.com.ar luciana.rizzo@live.com.ar f t 2025-10-31 18:12:05.706865+00 +1957 pbkdf2_sha256$720000$JXJhEJOXsSJgRC2imAilM7$D1tDN6oCRcviWgclvzUTyZfSyS6UAqaJSbZXvBx26hw= \N f rociosilvinaperalta@gmail.com rociosilvinaperalta@gmail.com f t 2025-10-31 20:06:38.042231+00 +1958 pbkdf2_sha256$720000$CLslRzRLKVP80y7gf7EgC0$khjG62b0xLyVsE8gVOHtYR/GA1D4tiZ7yV0XMhltk3Q= \N f Daianarojasyfran@gmail.com Daianarojasyfran@gmail.com f t 2025-10-31 20:32:17.828785+00 +1959 pbkdf2_sha256$720000$l0r4Q5BQYx43KLSxcPenm0$YGxS3RorSEENdcbm/HToF9fvlk90FPNMmdYkqbM85jQ= \N f carla.cabrera96@hotmail.com carla.cabrera96@hotmail.com f t 2025-10-31 21:46:11.523408+00 +1960 pbkdf2_sha256$720000$8aSH0ihZfBryQv2OkYCypS$bjH58nsQqCxhsNLUuSYfOJVI+qVzukZFYYv0AxYlqsA= 2025-10-31 21:53:24.432944+00 f josevalentinsp@gmail.com josevalentinsp@gmail.com f t 2025-10-31 21:49:34.144637+00 +1961 pbkdf2_sha256$720000$eDwuwp3IaprMND0rELZeuT$mn4E67dNACiMbmdxd/tYv8AmLFVl3G6Ue682Sev+iZs= \N f flgomez@itba.edu.ar flgomez@itba.edu.ar f t 2025-10-31 22:23:57.542472+00 +1962 pbkdf2_sha256$720000$C1oL0ZtppKwgZeY0DRxHTV$CR1c0hU2mCPXd22BSitFbOG9B1578OmtOLOh4hMWpx8= \N f bmarianalaura@gmail.com bmarianalaura@gmail.com f t 2025-10-31 22:40:49.666232+00 +1963 pbkdf2_sha256$720000$8A4ztoGeZ7mlns6qJG4sUU$7EOq5O2SzXXq+iDoYxz7LtqWMAS8AG/L95qPD9YsCqY= \N f lucianazignago@gmail.com lucianazignago@gmail.com f t 2025-10-31 22:46:58.959492+00 +1964 pbkdf2_sha256$720000$6w9L5wDMa28aOKu1KV5MEM$zdyOEHmAJ8jdPAFYRfR7HHNxor+LCjvEW8wH+EwrVmY= \N f Theclonejr@gmail.com Theclonejr@gmail.com f t 2025-10-31 23:03:35.786176+00 +1965 pbkdf2_sha256$720000$M8iz281vabfvkXpJskZ0xt$H7X9TYE4QkD5EImo5d1M9P/Yj693YYFvtYJJMR8YVK8= \N f ximenarisso1976@gmail.com ximenarisso1976@gmail.com f t 2025-11-01 00:47:53.172496+00 +1966 pbkdf2_sha256$720000$zByAfWkUXXgafBQAHXWIPz$2HmO+BigqW9qU/cxW1mwLMUVqAB1Hb0VOnlxdl1KFtE= \N f oliverarevalo23@gmail.com oliverarevalo23@gmail.com f t 2025-11-01 13:06:02.213454+00 +1967 pbkdf2_sha256$720000$l7v4dGAMt7QcuVj0aK90uR$HdIwWXoAqUG4F7jj17COOE03UQG5O1c9rS2lpXSIA5g= \N f melisabettendorff@gmail.com melisabettendorff@gmail.com f t 2025-11-01 13:30:15.560508+00 +1968 pbkdf2_sha256$720000$b61VHKU2yRSKNw7sXVTdYy$GKtym4R2w3dTQBMg2op2gYQXxkBybJKh0XAoPk98poE= \N f mariavictoriacarbone@gmail.com mariavictoriacarbone@gmail.com f t 2025-11-01 13:48:02.535373+00 +1208 pbkdf2_sha256$1000000$OP1r9I6OzPT0wgb5meiBQs$1aKgKKcjUZKuwDRYjsC37r1dNf6Hl5xVwaW1appJ3k0= 2025-11-25 21:18:23.250458+00 t Aldana Aldana Segoviaa aldanasegoviaa@gmail.com t t 2025-06-23 13:25:19+00 +1969 pbkdf2_sha256$720000$wKo04XGMCi68kao2AJ7p8f$+PgKlZ5h1e6T+4YAboJ5kHvHbKJD7LmxZ75abYampAM= \N f Brad.stein@gmail.com Brad.stein@gmail.com f t 2025-11-01 14:45:39.293573+00 +1970 pbkdf2_sha256$720000$yg1nF6JPXBG0WP5HNqDKBe$sOp7+fYGxys1Lg0csL9VTrRMP8SvYisNh9xZBu+eYJA= \N f ezecohen2@gmail.com ezecohen2@gmail.com f t 2025-11-01 15:05:36.159413+00 +1971 pbkdf2_sha256$720000$7ywLJqJ1UphnN4QJ8icJlg$j8tv1/tl/GMlp1OC6Jy2lyEIa3ehVE+7zbXQCm+60HY= \N f kiaro.koustas@gmail.com kiaro.koustas@gmail.com f t 2025-11-01 15:07:25.573927+00 +1972 pbkdf2_sha256$720000$eMGnvTHrsO0QP6AS2ksdTE$aLC2XrwVaJN9bukeIa8LK4nLNwJlln62KB+VqwoqqSo= \N f brad.stein@gmail.com brad.stein@gmail.com f t 2025-11-01 16:20:48.863516+00 +1973 pbkdf2_sha256$720000$nrhG6VaMIqc7E7IFzWVpor$2OxRajKFpsKgN+u2xVszk+PudzFLC0LkSap+g/R2SEw= \N f aliciabarracchia@yahoo.com.ar aliciabarracchia@yahoo.com.ar f t 2025-11-01 16:45:54.129317+00 +1974 pbkdf2_sha256$720000$duHq5LBtLPcN6tcSWniZ8g$nnY1ttVpuEpF1wAmPPfh9Adu3oJK57AAplWfVUs5Bgk= \N f aldopsi15@gmail.com aldopsi15@gmail.com f t 2025-11-01 16:46:16.559685+00 +1975 pbkdf2_sha256$720000$rpSuAvOpQlBSfyqLMQ7qOW$ndp4I3r7mjDhCToy7lvEuFDVtQ6t1kem6p4eb1i/D6A= \N f md6856922@gmail.com md6856922@gmail.com f t 2025-11-01 19:06:03.862213+00 +1976 pbkdf2_sha256$720000$AuriA6zxcP4fk67V8mtx37$8ggbVTECvJjdn4Qd7MOgaXqOR6Ersqmvv+gpVT362uc= \N f kevinruiz1333@gmail.com kevinruiz1333@gmail.com f t 2025-11-01 21:36:47.896539+00 +1977 pbkdf2_sha256$720000$eZu0nTnIOA1IyHk6IVkiBi$t6ivBIwGkSVyrrvgJwTLniJojseqzpZyYWNAyTT1OG8= \N f memaybank@hotmail.com memaybank@hotmail.com f t 2025-11-01 22:24:35.549285+00 +1978 pbkdf2_sha256$720000$9c1ySt5xVaqCEqM5P2ZeUC$TtSD+UzHOnw5cxlhZrzNgdZV1ufo8EpcTGSn7BccGD8= \N f Agostina.v.alvarez@gmail.com Agostina.v.alvarez@gmail.com f t 2025-11-02 17:48:17.564959+00 +1595 pbkdf2_sha256$720000$cxREmn7JxAELQJLPkcZ2sk$1tV8Aryhhtst81DWDzCeOc6DLjy9i0wweslRltd8juM= \N f agostina.v.alvarez@gmail.com agostina.v.alvarez@gmail.com f t 2025-08-17 19:47:33.993483+00 +1979 pbkdf2_sha256$720000$46LpwLJ2vVjwcP6ccyhwjg$h4+24Z6b4ywPxb8Lwfv56iFw+wWkKha+sVrKyADgmg8= \N f buttiveronica3@gmail.com buttiveronica3@gmail.com f t 2025-11-02 18:51:59.136973+00 +1980 pbkdf2_sha256$720000$9m8j79IUqwzuvHXJm1phWv$cEPmYXz+fSbB2lk90BI4apDGWdIASWr/CJCmRCcRyH4= \N f mariandam.us@gmail.com mariandam.us@gmail.com f t 2025-11-02 19:51:28.298296+00 +1981 pbkdf2_sha256$720000$Ga6hzeeL3fr20Mr2z0rBy5$hR4Cawz/s5i1rV9RDUj4SjL7ZquttdabpVcafjUCGro= \N f manuelapalazuelos0@gmail.com manuelapalazuelos0@gmail.com f t 2025-11-03 10:12:56.821128+00 +1982 pbkdf2_sha256$720000$ddlXelyvDus41POpN16a62$iBKMgJ3OH3S8ld+tdrAU2RUBswCtxqB6St+vB6H2e04= \N f grachuu53@hotmail.com grachuu53@hotmail.com f t 2025-11-03 12:52:09.860085+00 +1983 pbkdf2_sha256$720000$3hS1eIBosyXyigrGIRQXdU$NvncSGS4QzXk709Yc1z90Kraoe5DEtMDhTVJisKYKFs= \N f silascher75@gmail.com silascher75@gmail.com f t 2025-11-03 13:52:38.048153+00 +1984 pbkdf2_sha256$720000$FaEm6fuTsuX92LxQf6RzSk$3V4YTNiispiLqMno0Yzlb+7B3/by+MUU8yZWokn08KE= \N f georgina.s.bejarano@gmail.com georgina.s.bejarano@gmail.com f t 2025-11-03 14:03:43.199393+00 +1985 pbkdf2_sha256$720000$gNaVlJBwF8D21CKaNgoMDO$4EOym3Kzy+2q8Xu8m4vuqfCX7LE+wbIQSHY71n8Ketg= \N f diego.gomez.1967@gmail.com diego.gomez.1967@gmail.com f t 2025-11-03 14:14:50.474534+00 +1705 pbkdf2_sha256$720000$ptNG5SKvfo304eJ0R2mKbY$kcTaJ9hsl5nMm4DuDVkCaPFEbIUijbFNJ9UQpZbe14E= \N f nataliagallego20@gmail.com nataliagallego20@gmail.com f t 2025-08-29 19:45:27.241348+00 +1986 pbkdf2_sha256$720000$s1IHon7K9zOijpHWi5aUu5$t5sfX4XCIxAlIkvPup7nynKpc9wRfChHJ8XWa2NPlCA= \N f pamelalist@hotmail.com pamelalist@hotmail.com f t 2025-11-03 15:12:44.472665+00 +1987 pbkdf2_sha256$720000$0AcVSGZwSozc6XKeWMZ4Sh$4J9Sb9RgTPDHSPvl1YR9xMeWOCUeLFctCfgcBD21ApI= \N f jalegre.work94@gmail.com jalegre.work94@gmail.com f t 2025-11-03 16:31:49.108478+00 +1988 pbkdf2_sha256$720000$D08zhXvTj0Uq0P44tNNFOT$z3C8jXA7wTm1MOnW67uV1VIOpZJh0OeSUE0tqwVCc6g= \N f jesicamarianaorlando@gmail.com jesicamarianaorlando@gmail.com f t 2025-11-03 17:04:13.9087+00 +1989 pbkdf2_sha256$720000$GyvwdodXuvcveiyt0OUNdm$srl+KhFKwHvDNLcenqaqp4lgTfr62Y0WQiBEPH+Zoak= \N f kellystaino95@gmail.com kellystaino95@gmail.com f t 2025-11-03 17:10:41.5372+00 +1990 pbkdf2_sha256$720000$U7uBdUw0NeLJ9x4DFpiS6H$q5BydwFnhVjF9maXXZa6zA29SA9OuqYWLetsbms3Acg= \N f crcynthia@hotmail.com crcynthia@hotmail.com f t 2025-11-03 17:12:46.707221+00 +1991 pbkdf2_sha256$720000$MkBJ1AeECFRcJkA75kywA4$sqqxB7g47xdCQHYq2fXlJST+WEjEPzULBc9psXEDBCA= \N f lourdess.cainzos@gmail.com lourdess.cainzos@gmail.com f t 2025-11-03 17:17:14.174682+00 +1322 pbkdf2_sha256$720000$Q44kVj22q91EViXRcMXdB5$qwOON2FIqg4woKYvSF6LcQnh0XH4dtRkorngw+Qjzbo= \N f juanigonza@gmail.com juanigonza@gmail.com f t 2025-07-08 15:16:39.585335+00 +1992 pbkdf2_sha256$720000$asHDKbAxaUx0XpZoiGtF2W$eGzWtUnyGU66WLy1LYBzQhSrpaNTWxg9mZl8B1ndvq0= \N f tami.navarro2@gmail.com tami.navarro2@gmail.com f t 2025-11-03 17:50:11.62093+00 +1993 pbkdf2_sha256$720000$hZfdUyIdFVUD0FH8Bfm6tk$YTZcK87zOSHMLm4RlX6QhjA2wF3OvGwbUe9JXKGvO8w= \N f tomas.agustinnunez@gmail.com tomas.agustinnunez@gmail.com f t 2025-11-03 17:51:44.40507+00 +1994 pbkdf2_sha256$720000$llmFhv0LEFuRfHEjfQyIHA$iYbUa+mCIiojS65MqGQLY7GsaZZrxZZSLHNqFiElAMQ= \N f marianoschh@gmail.com marianoschh@gmail.com f t 2025-11-03 18:06:40.478409+00 +1995 pbkdf2_sha256$720000$PKhgQxZeTzfIOUj6Xq9Ulj$FRbRnbv5+CrIw/VgFJytveyL5w2k5h91HFDyjInCot4= \N f quemera666@gmail.com quemera666@gmail.com f t 2025-11-03 18:09:52.371075+00 +2004 pbkdf2_sha256$1000000$j0IGtQv0rpDHsevPMzaI1T$FZa8Vgo2Eca+Y5+sk+/tYJJKRz4p6/hqWhOXIhHlKks= \N f kaaaren.fernandez@gmail.com kaaaren.fernandez@gmail.com f t 2025-11-04 03:53:39.554573+00 +1997 pbkdf2_sha256$720000$agjVwSH4NG28vrOw47W8LG$Tl+WluIQ1lstSqIb2yX2i0oVD9xspI6ULbM1nQXSJxQ= \N f veronicaflaviaacosta@yahoo.com veronicaflaviaacosta@yahoo.com f t 2025-11-03 18:31:31.847484+00 +1998 pbkdf2_sha256$720000$THfoIaXB4Kl7WHxzhJF3eW$xIS6JY7zX2T2VsBO3vTAmvxACjtUtzDF2K990WSJybg= \N f clavelvanessa83@gmail.com clavelvanessa83@gmail.com f t 2025-11-03 18:40:15.905733+00 +1999 pbkdf2_sha256$720000$e2SnDtmEjuwJrYIdiFsKCW$FTj12FoL0OulUkb9c45id5IeFPNSMLoBDoyQxy0Fhbo= \N f pslupsky@gmail.com pslupsky@gmail.com f t 2025-11-03 19:01:59.957406+00 +2000 pbkdf2_sha256$720000$jKMTeeak5G7PqO1YwFEuEy$a2Uwk51wW0HGfp1Z9nPabHcgIP1iOtgSietGWd8AGMs= \N f monsa68.3@gmail.com monsa68.3@gmail.com f t 2025-11-03 19:26:00.256148+00 +2001 pbkdf2_sha256$720000$o4bNmvTpEXho3d9jLsVJ7j$SsZoAri0wJ6a2F0wmZpGjjoaRbh61ThhcFWmhV8bIq8= \N f Hlertora@gmail.com Hlertora@gmail.com f t 2025-11-03 20:01:15.090827+00 +2002 pbkdf2_sha256$720000$YWHdBk1DgtuqFUyYfgnXP5$HYtR07m3PFx8u68/ARLrwVv2raKIgoLADmcNKsbLVZ4= \N f belu12cardone@gmail.com belu12cardone@gmail.com f t 2025-11-04 01:08:33.398077+00 +2005 pbkdf2_sha256$720000$pHvufDHbZbTaGo5bHR0b48$FdldtHGVHz8Nr5LiBMzg08smd7tC1OddEyKKAXTxHBA= \N f costeluciana@gmail.com costeluciana@gmail.com f t 2025-11-04 04:16:40.628431+00 +2006 pbkdf2_sha256$720000$JDUBQEfyBoVPDTzpa8fw30$IC3ndVwksYBBScAvAoZsQC2WfAccCmn1wmG1/RfrUiw= \N f mitulunar@gmail.com mitulunar@gmail.com f t 2025-11-04 04:17:58.948857+00 +1761 pbkdf2_sha256$720000$2jBo91SekSrCoKaxOPbDzR$1zJmfZaZpjr+9NOGmOfQuVrAy2iWvA6I0jEn9VUMWEo= \N f salinisadora797@gmail.com salinisadora797@gmail.com f t 2025-09-07 20:29:43.54264+00 +2003 pbkdf2_sha256$1000000$yJmiI0NGvJS5MJ0Asj76CW$xvODl18BViWnYawzYo9gGDyG0EDVuSOsu7lmemJfqCo= \N f kaaren.fernandez@hotmail.com kaaren.fernandez@hotmail.com f t 2025-11-04 03:15:13.991193+00 +2007 pbkdf2_sha256$720000$C2J69wqCYe6ZwT6BTDk3yv$33/ZkX2ORKt4xYntigGMTu/9Hk9EIQM58wSAmTCnrcU= \N f agustinadroz@gmail.com agustinadroz@gmail.com f t 2025-11-04 04:21:39.00752+00 +2008 pbkdf2_sha256$720000$u4MVUzi2oZ8WhiOfjeYm26$NCOCdz4TwaTOFLLs7PpYnNj9ICv2GEq91j9JRGonMXA= \N f jesicaardemagni@gmail.com jesicaardemagni@gmail.com f t 2025-11-04 04:22:29.715259+00 +2009 pbkdf2_sha256$720000$BTGCD7HsHLyXtPdLsiAiSu$06r23p2PAbMhp7Wm2KG475M01i7mlTF0r3APrXsryew= \N f anacarolinaosores@gmail.com anacarolinaosores@gmail.com f t 2025-11-04 04:50:24.935586+00 +2010 pbkdf2_sha256$720000$wForNe971kvXouhrHrKivb$spqPuN3hgWrBixLVlPSgA38GQ2PR0qykwwvr5G475gk= \N f mvaf2111@gmail.com mvaf2111@gmail.com f t 2025-11-04 13:13:44.820452+00 +2011 pbkdf2_sha256$720000$AQHFH5y4w2xQrPHixQd71P$JgU1zRnEslB2oiY4Qi+jI54aF3LjxkFXZ9VMP+HUHpY= \N f daniela_dvr@yahoo.com.ar daniela_dvr@yahoo.com.ar f t 2025-11-04 14:08:01.772623+00 +2012 pbkdf2_sha256$720000$nk29iRSAbeNJObmudWOjZ7$UBR0O5uyCfV4TRDnmT14zBZmtMP9cy1xA8dVELK6R8Y= \N f gabycesarini@gmail.com gabycesarini@gmail.com f t 2025-11-04 14:33:35.64952+00 +1996 pbkdf2_sha256$720000$YMzNju3MDn6VG5lp8C6eRP$RyepTQThjVhaSWkniXsoiGWFcqFqtxZK7OMnpS9Bg4Q= \N f sapo.minici@gmail.com sapo.minici@gmail.com f t 2025-11-03 18:22:24.691694+00 +1693 pbkdf2_sha256$720000$dc2v5My5ENkbZQHBYYu7g1$ZUW/Ye+AjGDBgtNPynQok63GK54wRNQrx+zqMPG5Pj4= \N f koreanmakeupbsas@gmail.com koreanmakeupbsas@gmail.com f t 2025-08-27 23:21:32.071019+00 +2013 pbkdf2_sha256$720000$PbszdIAaRZUUpiygmTAnvL$bKYidYXaLqxKi3aRVXA/NtHwmdZz+HiJrWQD4dhjDwI= \N f silvia_daud@hotmail.com silvia_daud@hotmail.com f t 2025-11-04 15:34:12.829149+00 +2014 pbkdf2_sha256$720000$3DTeGH5VvCLU4ZTFyLBpJE$0HkQzXOwHSZTrXLWkmZtrNftrhZkMlu3iA0Ti/Ip9MU= \N f apizarrocm02@gmail.com apizarrocm02@gmail.com f t 2025-11-04 15:34:17.456118+00 +2015 pbkdf2_sha256$720000$3OfMARylBSAizw0hJu1QW1$wPyaMWBMcMEATuNxKm33TFS9Rdna+UmwvXoedA4uMdM= \N f Ddecruz3@gmail.com Ddecruz3@gmail.com f t 2025-11-04 16:16:44.869142+00 +2016 pbkdf2_sha256$720000$zrJKhr3npt39eq5oYwUFvX$xxOcIfIuAo5eQODcR1XtPOhlnTVF7QDdZHAdnX1LuRk= \N f cristian.callozzo@gmail.com cristian.callozzo@gmail.com f t 2025-11-04 17:08:28.092304+00 +2017 pbkdf2_sha256$720000$2vxnN18NVnBIhP4UT75105$Que6PS82OTKiZmlD4N0vgn7iLV8lueSTBM74VmUwD9c= \N f sofia@soficestari.com sofia@soficestari.com f t 2025-11-04 18:21:24.218965+00 +2018 pbkdf2_sha256$720000$2YyuvvlqJWFJHyWoKuwZLe$w3mIA1SLsW7hTBeB9qikkNX7b6uQ2RuU2Bn4gST7G5k= \N f hernan540@yahoo.com.ar hernan540@yahoo.com.ar f t 2025-11-04 18:57:29.696777+00 +2019 pbkdf2_sha256$720000$NW832XrD6qYXrZVrzFpBpn$p0Dq+Xupz55+QvGWSkU4mNt8TrFxhtw3vkBHzf/23S4= \N f daianarojasyfran@gmail.com daianarojasyfran@gmail.com f t 2025-11-04 19:19:54.082734+00 +2020 pbkdf2_sha256$720000$1Zho6mGahCvsyanRRUn7b8$NKN0Lfd5atxVqKI75M/p9XTZmtY40TC353Tw/jB8gAQ= \N f chirinosebastian38@gmail.com chirinosebastian38@gmail.com f t 2025-11-04 19:34:15.38723+00 +2021 pbkdf2_sha256$720000$sIXACrBWuWa34lPgPB57gu$b6NvwoACT2xiXW5zelAa3ylXD6d1eh7ohl5QzLHU8pQ= \N f yaninameyer444@gmail.com yaninameyer444@gmail.com f t 2025-11-04 19:41:48.195517+00 +2022 pbkdf2_sha256$720000$lfr17qKqPyQvuxkCh2OPw3$cmgzGp0LYXIS65kKdu/q/+M9gcZ3qv1+0HTfEiJ0Kgo= \N f gb.bruno97@gmail.com gb.bruno97@gmail.com f t 2025-11-04 19:47:05.248705+00 +2023 pbkdf2_sha256$720000$XJBGbmNGh1gMkIHVFu0Az4$7fLYsELIaz5nBv9dM8RC/ShIy6puhKeMLteYAqy/v9s= \N f leoalabone@gmail.com leoalabone@gmail.com f t 2025-11-04 20:33:36.618562+00 +2024 pbkdf2_sha256$720000$OvAcKNuDOWWuEetQ30DJU6$Zhae+xFCxrEdFk79KJNGGWt/Nb7LZl+iSgAPQ/X058Y= \N f agusgrupico2@live.com.ar agusgrupico2@live.com.ar f t 2025-11-04 20:37:11.379097+00 +2025 pbkdf2_sha256$720000$1sBxD5wng4syYs0h2TJwaF$/jiX+T/zZFBt5XOh/NHkXzch/qOIP5lEzm1MwvDq38E= 2025-11-05 11:57:52.336461+00 f marielalujanfunes@gmail.com marielalujanfunes@gmail.com f t 2025-11-05 11:53:20.420797+00 +2026 pbkdf2_sha256$720000$1oj5S7He9kbTXHVp8skiwh$N3GVIKx1Atu3hbw59rKx3obYrqOTZ+CBhzivmk0F8+g= \N f dayra_cassandra@hotmail.com dayra_cassandra@hotmail.com f t 2025-11-05 13:22:42.692599+00 +2027 pbkdf2_sha256$720000$HBfDlggr5QG2XoRHEBlpX1$FiUbCWoRIvKJ3ka01cm36egsFAtkdyJw2U8Ncm4FU50= \N f Flaviabarraud@gmail.com Flaviabarraud@gmail.com f t 2025-11-05 14:25:25.665437+00 +2028 pbkdf2_sha256$720000$YL87VuyuXOE5UTQ5UyEGkP$VPeGKrMka6ufg55bs2422A+aOPTXarKRxw8zLnGxZig= \N f Cintiakiernanmorriello@gmail.com Cintiakiernanmorriello@gmail.com f t 2025-11-05 14:30:41.924215+00 +2029 pbkdf2_sha256$720000$diUcA4TydgRbv2K7LnRAGX$JnVpSXPRxSgGsJbA1jJndFbjd/q043fhZYTmkpi9hU4= \N f Anfossiclaudia@hotmail.com Anfossiclaudia@hotmail.com f t 2025-11-05 15:03:54.834923+00 +2030 pbkdf2_sha256$720000$TGpU0BtYO2J9LalvMWtyy0$FyENM2BBYJDIRVgIiv1pJeoXpXI/xXYagNWWGgoPdjc= \N f cintiakiernanmorriello@gmail.com cintiakiernanmorriello@gmail.com f t 2025-11-05 15:37:29.162979+00 +2031 pbkdf2_sha256$720000$JxcIkiwQfDknr7kdTDIDzn$8NS3MJqUcXKlPjRSiMKtopGY0g54EWwGH8v1g3JppSE= \N f augustoalfredoramos@gmail.com augustoalfredoramos@gmail.com f t 2025-11-05 15:50:13.536502+00 +2032 pbkdf2_sha256$720000$3KtoiaU0Vkn4MSLA7xu4fE$AcqrIxeMSrhcOBYeaeVuN3zMmATbvkFji7rMx/ZpJhM= \N f flaviabarraud@gmail.com flaviabarraud@gmail.com f t 2025-11-05 16:15:53.596075+00 +2033 pbkdf2_sha256$720000$7Vp0X7RHBnVUlEgOnsaZTy$fc4ySkjVWZZ2YajSEc1qkZ8mzliYglzF/PaMzDVgsqA= \N f anfossiclaudia@hotmail.com anfossiclaudia@hotmail.com f t 2025-11-05 17:43:55.023851+00 +2034 pbkdf2_sha256$720000$VpkZyzkTn7Hlv9hKEG5gyi$ctKi/mNX0ynX/NIphivFpDl4WCBmC6ZmY9726zVQwMU= \N f muniz.micaela208@gmail.com muniz.micaela208@gmail.com f t 2025-11-05 18:08:05.064796+00 +2035 pbkdf2_sha256$720000$Zolg5YXXJQ6yUGUPNxua4n$dhpyXV2dIJR/1UJiBaJIy1qGnSWexo7dMcCyN0DsPnQ= \N f drapastore@gmail.com drapastore@gmail.com f t 2025-11-05 19:49:57.226952+00 +2036 pbkdf2_sha256$720000$OpTz8GvFhTtEz1krr4kcGw$Y/HBes8NOWuyD5q2Lr7Q/jkrQbf2LGJUlkHRODznCek= \N f lucia.gilardoni@hotmail.com.ar lucia.gilardoni@hotmail.com.ar f t 2025-11-05 20:07:25.909677+00 +2037 pbkdf2_sha256$720000$y34QvVtkbPBvYzXe2duMnV$TWwWQXr1N4hb5F314HEuuo1516/pLG9gCSakd6edidk= \N f luislam96@gmail.com luislam96@gmail.com f t 2025-11-05 20:39:11.28358+00 +2038 pbkdf2_sha256$720000$9yVN7aUcZwE49E20d9dteM$QBGFaSCt/S3NqTpAnPd0FUaPq2GZfeRKD26X/Ye+tTs= \N f Calendarioplanetario@gmail.com Calendarioplanetario@gmail.com f t 2025-11-05 21:05:39.715162+00 +2039 pbkdf2_sha256$720000$fBCqsIw5NItHauo595zfnF$/li/YWigVtsdJeV9J5bTp5GHZUuqqmpH9aYkLAOk64Y= \N f calendarioplanetario@gmail.com calendarioplanetario@gmail.com f t 2025-11-05 21:07:07.101533+00 +2040 pbkdf2_sha256$720000$LOBIr28AvnjYPrlH1QIztJ$2qDZ2UYiorRmM9P1NQUzQXEoFPhJkkHU/KDja1TKKjk= \N f amalvaradop@hotmail.com amalvaradop@hotmail.com f t 2025-11-06 00:49:18.896627+00 +2041 pbkdf2_sha256$720000$aVeF4wBDiHWwhYripsUmBh$NLN3anRQkoc14vr9vuCHFpR7GK9DUetQKBoV3PunP00= \N f arimar68@hotmail.com arimar68@hotmail.com f t 2025-11-06 00:54:06.955958+00 +2042 pbkdf2_sha256$720000$6YVkGnQbm5Wo5hdWnWFb4y$Pfmow99huJuo6BW5NEKyvgomE2BysRJlv++YV9qcsD8= \N f carlalpalacios@yahoo.com.ar carlalpalacios@yahoo.com.ar f t 2025-11-06 01:30:38.791745+00 +2043 pbkdf2_sha256$720000$sBeG0K63Uop3Mm05cq4M25$mHClEsPkeKq1U15ZsMGzkJ995oLSyT5Q//0UrrPQoNk= \N f rodrigosobrino22@hotmail.com rodrigosobrino22@hotmail.com f t 2025-11-06 03:00:03.560971+00 +2044 pbkdf2_sha256$720000$CQdjnRvgEGFcn36tIuckGp$AyElFqGE9x09sGpynCqEu4uzq0XRkRnSGBxpvbgYLFU= \N f luciana.danquis@bue.edu.ar luciana.danquis@bue.edu.ar f t 2025-11-06 03:29:29.507874+00 +2045 pbkdf2_sha256$720000$etofhJNrKyxA6zpK1q2dQN$1w3ol0EMfwMS6z3a/5TxrQke23hY4OkfVwiSOc9Dn7g= \N f angeles.contegrand@gmail.com angeles.contegrand@gmail.com f t 2025-11-06 12:18:33.221015+00 +2046 pbkdf2_sha256$1000000$D6NNPB25kMtoEidrQYv8kJ$1cY+IE2vnKrxrLSh4ef435fou+aiGJynXEX/GI6F6xk= \N f lucassoto2382@gmail.com lucassoto2382@gmail.com f t 2025-11-06 13:14:03.732959+00 +1298 pbkdf2_sha256$720000$OTl9yp0dq4d9o8SqZFZsGz$Ns3QHmLozXsYVIbXjOUEjfQ0prBJDBaYwcx8uKyegSM= \N f gcuadrado@bagala.com.ar gcuadrado@bagala.com.ar f t 2025-07-05 21:47:30.117332+00 +2047 pbkdf2_sha256$1000000$bDq6077Q6WFXH8MF27Rd8t$6zzfDl5pqG+Ho/LGSPQcEk0Tv4C/yYzXU0NXjz9By4Y= \N f Robertoezequielheredia@gamil.com Robertoezequielheredia@gamil.com f t 2025-11-06 16:15:30.033222+00 +2049 pbkdf2_sha256$1000000$ZAJQpM1dd8b99FO1URJpig$zVtUjnrCz5iYxKF4EBKjBkTeWXpg6TsTvMc8ufO0vzc= \N f litzaqueline@gmail.com litzaqueline@gmail.com f t 2025-11-06 16:33:09.430687+00 +2050 pbkdf2_sha256$1000000$SIVTz7F4Lk5IlHKCFStIZR$ghB4v0IUwQFAF3aGX0HjDwBC/bOmrqW6z8cs17kfJDI= \N f fabianamorales94@live.com.ar fabianamorales94@live.com.ar f t 2025-11-06 16:37:52.143634+00 +2051 pbkdf2_sha256$1000000$TIw6thgn50PZpzW8gUSWsp$zKLa21Zt/9Gyjc5hz0zK/TlAI4miwXWyrFR44+Lp+B8= \N f rosanaesposito6@gmail.com rosanaesposito6@gmail.com f t 2025-11-06 19:19:06.077257+00 +2052 pbkdf2_sha256$1000000$0fBBVqdlIleqBCA3fSSGTm$/70RURH634O8awKFEoRCHNlK3gxf3/vLCtYmYz0MYZU= \N f manuelasaenz2505@gmail.com manuelasaenz2505@gmail.com f t 2025-11-06 19:57:12.578513+00 +2053 pbkdf2_sha256$1000000$chKzB1l5vPNxvEI115yEUp$PqC0lz/gItPVChBo+XsB0mCEJEblEQ0Nv+F7bwDhATg= \N f zulma.mujica@hotmail.com zulma.mujica@hotmail.com f t 2025-11-06 21:26:21.621782+00 +1774 pbkdf2_sha256$1000000$v8iBOS76b5ReHgYPgyiQAO$wkm8zSvNZlkQbpaGqAerrBNdMemWPQE4ZrUwQ4uHK0Y= 2025-10-07 23:45:22.051279+00 f guadacastro.vet@gmail.com Guadalupe Castro guadacastro.vet@gmail.com f t 2025-09-09 17:43:58+00 +2054 pbkdf2_sha256$1000000$8Ej6TWp6saAK3rP5FQkpVU$tbOUWhckMzZElpUAiGObMiDMzxejy66Om0AmnPbKqI8= \N f cicciamercedes@gmail.com cicciamercedes@gmail.com f t 2025-11-07 00:57:53.289976+00 +2055 pbkdf2_sha256$1000000$lLyfNGTWvSbJ2QOcu9vP6k$SHezuITW4kA/2ZtXtg/oECjiP7ywxkPPv0756QjBhzc= \N f jesolari@gmail.com jesolari@gmail.com f t 2025-11-07 01:41:17.11938+00 +2056 pbkdf2_sha256$1000000$4H52x7IoD4mcD9qPCDt0aE$C8h+OzTpItxYOOLFBUZrEigjDEEthL/oSFK8DGIPCYk= \N f catinialejandra@gmail.com catinialejandra@gmail.com f t 2025-11-07 04:54:34.871082+00 +2057 pbkdf2_sha256$1000000$qqReiTM9ngB20d0iGexnxR$3m7SXEnQnmqAz7QM4C3SfpUmsAReq/FJ0SwlO1efTLs= \N f Lecandanadia@gmail.com Lecandanadia@gmail.com f t 2025-11-07 12:40:31.379447+00 +2058 pbkdf2_sha256$1000000$qYkveOu7onNvUCcuu4lB5h$vMiHzH9z3Qb6SguBsGAVa+gZM47gQNN0GFWuOtsB6p4= \N f agustinaccamila2002@gmail.com agustinaccamila2002@gmail.com f t 2025-11-07 12:55:37.869596+00 +1028 pbkdf2_sha256$720000$SgoXTROyfVVvGx1EOWNuD8$Q3Yp634Qc2N/2sr7Qp0J7iAm2m9lDrPNZnc29o2Uho8= \N f valentinadariomerlo@gmail.com valentinadariomerlo@gmail.com f t 2025-05-27 23:06:53.316269+00 +2059 pbkdf2_sha256$1000000$UHYGi0urbLkxy43pZ37PI9$zJYExpoD9PbbNtuDlXeBxuyAx9NmXjoLHxqDv3ARrWI= \N f Gracie.9863@gmail.com Gracie.9863@gmail.com f t 2025-11-07 13:55:42.457619+00 +2066 pbkdf2_sha256$1000000$eZjic1hKg2wtHjqScKrdXn$lG5NPLYEf/Ks2tTC5iB7zbmheYGBwhizx6lnPF2DZLg= \N f santiago-espil@hotmail.com santiago-espil@hotmail.com f t 2025-11-08 12:27:23.945318+00 +1234 pbkdf2_sha256$720000$TyKVYC7xdgZgAbKO9tvpmi$mp9q7IEi2XX0SrCNi5ap6TaLmBvBh8XsKFJKhIDsYBI= \N f daianacabrera2026@gmail.com daianacabrera2026@gmail.com f t 2025-06-26 18:53:13.22152+00 +2060 pbkdf2_sha256$1000000$B1E7Ny3PuN1GoebE6p0R7i$XRC6pxZ6f9BJxUoWyzMt5btICFs0k1YhEHw4QqNxDzM= 2025-11-07 14:16:19.300029+00 f julietaschoijet@hotmail.com julietaschoijet@hotmail.com f t 2025-11-07 14:09:03.495767+00 +2061 pbkdf2_sha256$1000000$aDgNlQ3ITdjvTcRdZka7xc$KirqXyZUl4irTccB8Ic0dZeLZJrUtwEUKr8mXQbetyA= \N f gptonsich@gmail.com gptonsich@gmail.com f t 2025-11-07 16:44:45.485797+00 +2062 pbkdf2_sha256$1000000$yrWSSlvnH3jpKrSGFYT2ET$YxXUzFIUc5yN4pF2Lpn5ws7FTEXuVyLrpEZoTv0kWcI= \N f blanchard.leticia@gmail.com blanchard.leticia@gmail.com f t 2025-11-07 17:17:17.258219+00 +2063 pbkdf2_sha256$1000000$wv6iRMYlqqAonrVfwOxxoF$0FMMKIsQ7AjvMjavhMyItg/l62+bMHuUdUM6uVq+YZQ= \N f clarahidra@gmail.com clarahidra@gmail.com f t 2025-11-07 18:18:33.34172+00 +2048 pbkdf2_sha256$1000000$sCoNBUbhRezi67rfo28zx1$nxoixJHL3jjgdXY7yhDEx+Ip1pEHXc4inXrEDcJH8no= 2025-11-07 21:27:06.731373+00 f josimendez.31@gmail.com josimendez.31@gmail.com f t 2025-11-06 16:15:51.005481+00 +2064 pbkdf2_sha256$1000000$gsIYM4RzMLURuVTHCLWKnY$VkP13hOxqqzNZXI1FD+DA7q1JmcLHQylfmHXA2eZcmg= \N f mariagoizueta@yahoo.com.ar mariagoizueta@yahoo.com.ar f t 2025-11-07 21:52:41.132231+00 +2065 pbkdf2_sha256$1000000$a0fUpONtY6MLDKTHDDRr6W$gPwfoZHRPclMPf1GFKUcJxJw08xvFjPwrneGUlp8WBM= \N f pabloam_63@hotmail.com pabloam_63@hotmail.com f t 2025-11-07 23:10:51.78378+00 +2067 pbkdf2_sha256$1000000$RiObh1486YbGfnBHFl7rtZ$GKr+fu+9IQnJzsLRD1N2Jq4lOsMaVsURVyxA5c0sLz8= \N f paganoayelen@gmail.com paganoayelen@gmail.com f t 2025-11-08 13:22:49.847071+00 +2068 pbkdf2_sha256$1000000$xpgDSkVE6enQGJciKMWeGa$FhPxcZuG125e5EcnXhSfSl4GewkW396oBeXq4Y5pcCk= \N f mariavillamayorv@gmail.com mariavillamayorv@gmail.com f t 2025-11-08 14:11:30.951665+00 +138 pbkdf2_sha256$1000000$xSUiK29bvE4xkgRb46zzV1$C/5DcBC7aThx9jshjbHwzX86k6bjIazYJxQvvicUHOM= 2025-09-18 16:41:47.70267+00 f veros_sk@hotmail.com Verónica Carolina Szczurek veros_sk@hotmail.com f t 2025-02-27 12:04:07+00 +2069 pbkdf2_sha256$1000000$62yL3BG53LUhCquVoGnPdT$0sRG2sDLn1A0eQJJvQYGQ7kfHWYnO6LMtHE/bZAiSFw= \N f mariaflorenciaibz@gmail.com mariaflorenciaibz@gmail.com f t 2025-11-08 14:46:35.628215+00 +2070 pbkdf2_sha256$1000000$Z3RkrQWDWIQmiRc7cOlicq$oQQu93IOg1beP9HCLQHMUOhLuy2A6ngDWvZ0wRAnm6c= \N f smzapa1@gmail.com smzapa1@gmail.com f t 2025-11-08 17:15:04.112712+00 +2071 pbkdf2_sha256$1000000$7O07MMCibJ1tzUGN3E65vY$9BqwWuV/JlQi8dGwUdUofpYz3AOvafVvHfitLkjyXDE= \N f msb@chgabogados.com.ar msb@chgabogados.com.ar f t 2025-11-08 17:20:01.744074+00 +2072 pbkdf2_sha256$1000000$UkdA8GkTesxzKlyHRWFtDM$5A0uxczjZ7gGXhedCRvQZ/64x1GeyOQ+Pzis3U43K3k= \N f craimondo2014@gmail.com craimondo2014@gmail.com f t 2025-11-08 17:21:31.625282+00 +2073 pbkdf2_sha256$1000000$bZG46VXszOtPlweFnS74Jv$ps7wzm7bzy+9Z2aExtOz+02lHMMcOlp4IP3bTHsrN7k= \N f danielucastefano@gmail.com danielucastefano@gmail.com f t 2025-11-08 18:23:05.589911+00 +2074 pbkdf2_sha256$1000000$eLR8OH7dnNWUl3DuUnNZDi$C0tpYtjwkecitxSjLyPz9NXvEztLQgbpv+YFemT8S8o= \N f ddecruz3@gmail.com ddecruz3@gmail.com f t 2025-11-09 13:10:43.746154+00 +2075 pbkdf2_sha256$1000000$UaGPWdvLsWU9hw6UlhEv48$kHyhP2B+fON2QaO3buauzLAQti9JxUYzhe4peU34sdY= 2025-11-09 13:39:53.695396+00 f gz-diego@outlook.com gz-diego@outlook.com f t 2025-11-09 13:35:32.093848+00 +2076 pbkdf2_sha256$1000000$w6cJFi4HxI1AghWaz2aZ3s$5pBpTcb/YGXcvjl8LhHeJlI4MLmuvgP9yzOvUD/ETig= \N f mpaula.politis@gmail.com mpaula.politis@gmail.com f t 2025-11-09 14:55:29.10405+00 +2077 pbkdf2_sha256$1000000$eof7WZlllNsUcEMzDChIX4$mux54W6Z3SbSA89yaNDizQ6tjijA7B5u17pWhv6ifJ8= \N f santinototorio@gmail.com santinototorio@gmail.com f t 2025-11-09 15:03:34.597604+00 +2078 pbkdf2_sha256$1000000$HSxeZgqS0x4rO6RBCsO6Fu$7L7q8pHlbhLPCpx7pZZApQceFrTp4wrOYLSDtWNh9vE= \N f solbeatlera27@gmail.com solbeatlera27@gmail.com f t 2025-11-09 19:28:34.493142+00 +2079 pbkdf2_sha256$1000000$m0qHOkVXVVUjGgAWrAgjuc$0c+VgD8SdhzV5dyB0zDPgzFVPCtvk1hg7XcVKzWcolQ= \N f vigencia07@gmail.com vigencia07@gmail.com f t 2025-11-09 19:42:08.947631+00 +2080 pbkdf2_sha256$1000000$noLJWFfkdoJKZJGdIEKQTu$IAr1ByN3GdQENtiKy0PY1j/eullu+XAZAzju9OUERK8= \N f nailethaularp@gmail.com nailethaularp@gmail.com f t 2025-11-09 19:57:00.190137+00 +2081 pbkdf2_sha256$1000000$FK5btX3FPjNdJFThmLPUJT$BTv4JNSQNwx42ckCspHVXSyB+dTbitlH5pCEQdFXsgU= \N f rakelle.rk@gmail.com rakelle.rk@gmail.com f t 2025-11-09 19:59:09.485885+00 +2082 pbkdf2_sha256$1000000$n6jWNLl8IkxpfOAaMIDDMW$RLDfvWJ4tG9eOUIu+KYuSgdCPmERrIDSxMor5tneJtU= \N f aelebe@yahoo.com aelebe@yahoo.com f t 2025-11-09 20:03:48.388033+00 +2083 pbkdf2_sha256$1000000$xlIbzFnHTwmSKS5x2MUA57$OEktXjWLzlDck2UzN3oe1aSALA4FMF00zjBasHVTbGs= \N f b.alfuso@gmail.com b.alfuso@gmail.com f t 2025-11-09 20:09:16.931323+00 +2084 pbkdf2_sha256$1000000$9F2WOF9ZeKMQT3XGVVA7mA$DJH4wxb4RrQQrIbNI0ILyo2DPZDUrBOtPI5isSoDC5k= \N f macotti69@gmail.com macotti69@gmail.com f t 2025-11-10 00:27:51.661839+00 +2085 pbkdf2_sha256$1000000$Y4UaYazm5HRvNFF4LJZhNU$P10cEQNIYzLPzGXUcivr9LtMasbnjA+wITYT2jXIg/Q= \N f montielvirginialilian@gmail.com montielvirginialilian@gmail.com f t 2025-11-10 01:37:30.227193+00 +2086 pbkdf2_sha256$1000000$kEgavvquH7o4UUKuoCr69O$1Y1D1VMuVeS//3chooDH7lxcgID70eynupRw4sJKGDQ= \N f zoevitale11@gmail.com zoevitale11@gmail.com f t 2025-11-10 04:00:07.102492+00 +2087 pbkdf2_sha256$1000000$HAQTlMH9EjMme3ydMzC35a$V52QZduwzzwbKIOAmKAItZpRuYq3+DxI/ZTJqb+0/FU= \N f iorgiaguatina@hotmail.com iorgiaguatina@hotmail.com f t 2025-11-10 08:14:04.503642+00 +2088 pbkdf2_sha256$1000000$9U8Y6rbZi575WkjX3kXMI5$A5ne8bvzwZ1LrzdNacU/vdaqplgV9KFk2faJiLxMdIM= \N f lorena_aap@hotmail.com lorena_aap@hotmail.com f t 2025-11-10 11:00:56.222207+00 +2089 pbkdf2_sha256$1000000$bMMvWR9btfsH61hWlPKnbb$RtOZD8pkc3Uo2dVvRvoKFKVvm68DFqsi3WJoZ0Xhvp8= \N f gestorializet@gmail.com gestorializet@gmail.com f t 2025-11-10 13:02:40.835677+00 +2105 pbkdf2_sha256$1000000$IYHvs2Frphpn8x5WEXkaQo$4uiqFAgHa99X9GyabKsMsrN3wuitFwTHe7rlL+4SjhY= \N f cebiglieri@gmail.com cebiglieri@gmail.com f t 2025-11-11 15:14:35.772241+00 +2090 pbkdf2_sha256$1000000$kpEZiYZEOtkDw0LIK9M4xo$8yXKg8mUv1+Qo1idnmszocXr2H08K+LVI9OKnlIBLs0= \N f r.valentini.v@gmail.com r.valentini.v@gmail.com f t 2025-11-10 14:37:20.236796+00 +2091 pbkdf2_sha256$1000000$s90sochW0CZaGmLAPR4WLW$u3NzL2N4FochBkXhSnoePsmjlGma1If/zUFNi3Fr8Gk= \N f chelosalado@hotmail.com chelosalado@hotmail.com f t 2025-11-10 15:19:23.891455+00 +2092 pbkdf2_sha256$1000000$47V0KRdKTIP76h0AgMWd5m$3ZuSrvIlZHyMvF+bpw6a6WCBy8gY7A2q2BdMOjPQuiA= \N f galvanoren@gmail.com galvanoren@gmail.com f t 2025-11-10 15:31:01.752587+00 +2093 pbkdf2_sha256$1000000$6H470mGEo01nxHlDgc2Ddp$6bMEQNLcMmvEl52y9idyIGA8NfePP5U4vXCd5pT/P+4= \N f marialaurasemhan@gmail.com marialaurasemhan@gmail.com f t 2025-11-10 16:39:26.022351+00 +2094 pbkdf2_sha256$1000000$5aoNOwOqlSRPdvVlrw6ejS$Y7O+2syJjFaYfaufV1jxiRjG5f26rzTF+jA/RQYuJxM= \N f k_dwolinski@hotmail.com k_dwolinski@hotmail.com f t 2025-11-10 20:17:29.157362+00 +2095 pbkdf2_sha256$1000000$FIVOjpEXXvoBB324w4ITo7$O6dZDwjcvH29Y/oa9hnZGJdXTwERegvaCkFgx4GRczw= \N f meugefil@gmail.com meugefil@gmail.com f t 2025-11-10 20:18:48.508979+00 +2096 pbkdf2_sha256$1000000$O5ucUKowWkgRcMvBjrzWVv$FejuW0sZU8S3fs7rwQPlZuWB1MugyAbd7BKQpOIxi1U= \N f cdilui@protonmail.com cdilui@protonmail.com f t 2025-11-10 20:44:01.718195+00 +2097 pbkdf2_sha256$1000000$MEfcbCQyDShvD4be4wmwfK$yUjrGvmNc+Dx8Vpzi43APX8TGeq8N3Is2M6GxD9jzl8= \N f mariantoabogado@gmail.com mariantoabogado@gmail.com f t 2025-11-10 23:47:38.600118+00 +2098 pbkdf2_sha256$1000000$h30gxNi2rRjnYrEzPw9H9q$t060gn4yzboC+/sEuT2fsYfq4HFS5XD4QiwYo0r9WdQ= \N f fariaskika61@gmail.com fariaskika61@gmail.com f t 2025-11-11 03:02:41.523556+00 +2099 pbkdf2_sha256$1000000$5J2VHY1ER7n7y3zGsW8TuE$yqqx2BjUbN4dI8KOOsb149sUnQAOV3ZodIHlBK0Lexw= \N f cristiangarciasp@gmail.com cristiangarciasp@gmail.com f t 2025-11-11 05:59:00.492476+00 +2100 pbkdf2_sha256$1000000$nPjY49Vbckde8LrXk5hEfS$v1NPnGWjJZ0V4Ol244uk4rY9KWpuGA4BGbuGJsO2AZA= \N f barbra.rodriguez@gmail.com barbra.rodriguez@gmail.com f t 2025-11-11 10:43:33.920001+00 +2101 pbkdf2_sha256$1000000$hCeFYddYLSJcmdcAUtFwbh$/8rcVPhD7UqlqOzgE4j6Q6cyAmqCsdGFsBmXsn8TrOQ= \N f adribeabello@gmail.com adribeabello@gmail.com f t 2025-11-11 14:17:52.549179+00 +2102 pbkdf2_sha256$1000000$OYcWaX0Df7BJ2M2Ey0mL93$+m4ktikG5WB8tua6F6sgkptrq0nFfjOMsf1+U/q3duU= \N f inesichazo@gmail.com inesichazo@gmail.com f t 2025-11-11 14:28:23.402525+00 +2103 pbkdf2_sha256$1000000$QnIjR0A0oBqOT1VeOolBPW$QFjFUPoNblouS7sn73FkI5HcEm/ECNvDwcemZnPzWAE= \N f florencialedezma97@gmail.com florencialedezma97@gmail.com f t 2025-11-11 14:54:35.406993+00 +2104 pbkdf2_sha256$1000000$6STLGStBiPkUC98H1Pplnh$t8erbkTy7SRiy0tIOG4RarJwbtEESn+ZvUQgKUNkJDI= \N f mocrizu@hotmail.com mocrizu@hotmail.com f t 2025-11-11 15:12:02.331258+00 +2106 pbkdf2_sha256$1000000$iMy3PshSIa5vDncsp1ZkVt$q0DK6Ng6wawwTEkqZzmzfmiP1uEmjmMmgnDU8dAsuYY= \N f juliantiempo73@gmail.com juliantiempo73@gmail.com f t 2025-11-11 19:09:47.714047+00 +2107 pbkdf2_sha256$1000000$tx0KoZMgLA20GMl2B1jnmL$HXnFyOxcqpuoaEg3X1R4C6/BH8P3TybtCoY+5mQR7mE= \N f mariiana1992.med@gmail.com mariiana1992.med@gmail.com f t 2025-11-11 20:31:55.403457+00 +2108 pbkdf2_sha256$1000000$64vv7mmLRZDC04b7Dl7uiC$HUoTA79rIyaQrDtxBgrC75DckqHXtH/ShbBUfxWWmW0= \N f clauramirezfotografia@gmail.com clauramirezfotografia@gmail.com f t 2025-11-11 22:44:46.407235+00 +2109 pbkdf2_sha256$1000000$SooZ5c1eLkN1gpzdMXqjrS$sX+bgDvI5ftS/3ISLCJozAqQxjJPTmQOgNdZ44LXIag= \N f elisabetmartinz@hotmail.com elisabetmartinz@hotmail.com f t 2025-11-12 01:07:08.665132+00 +2110 pbkdf2_sha256$1000000$8ksfBYM7QfR8cRbUpltQPk$BLDQ230HEWeWnBelMIuaPB/jwMMQBBOtOyYTBhDa07w= \N f cris.emp.008@gmail.com cris.emp.008@gmail.com f t 2025-11-12 01:37:39.889626+00 +2111 pbkdf2_sha256$1000000$7QIhLbnl841KqSUzSVVhnJ$Bo6pZeMHYlKul6HFPOJl5qgTgNN3ph5ODkqi3la8XHk= 2025-11-12 02:07:09.47411+00 f ashllysilvagonzales@gmail.com ashllysilvagonzales@gmail.com f t 2025-11-12 02:03:27.127426+00 +2112 pbkdf2_sha256$1000000$5gzNgwYEdpsemI2Ic8n5ll$Z2ErWt8/HJXUH+UgsmHz51yLnX1I38zf3oANUd/8ot4= \N f Uruguayoalonzo@gmail.com Uruguayoalonzo@gmail.com f t 2025-11-12 14:03:11.79746+00 +2113 pbkdf2_sha256$1000000$FzA2RPDwNTmynwVPeL5lkj$ena/4oNRbfEi5vBTagM0DvTE1qXbe5IU5pRaum6FwFU= \N f porreca@agro.uba.ar porreca@agro.uba.ar f t 2025-11-12 14:16:07.922105+00 +2114 pbkdf2_sha256$1000000$6njSsMG0UEhwpccOxBEmin$LpljsoOPqwDivculoPQNIL8rbBH6bFGl6ZqNjr40NvY= \N f analiasola@gmail.com analiasola@gmail.com f t 2025-11-12 15:21:00.568655+00 +2115 pbkdf2_sha256$1000000$fCiFwaC3e5SdFYkAAWXlmQ$rO/q7SIN1LEPcLNijD1y9ar/0rGDotwTEeCaAbJFcbY= \N f uruguayoalonzo@gmail.com uruguayoalonzo@gmail.com f t 2025-11-12 15:27:49.175565+00 +2116 pbkdf2_sha256$1000000$gAokpqZJSM97l2rSjlGKUT$ryYTQUhP4830/KeMFmuHlaFqvYHsE/W/IK2YrUFYN5U= \N f eugefernandezhayon@gmail.com eugefernandezhayon@gmail.com f t 2025-11-12 16:31:46.108536+00 +2117 pbkdf2_sha256$1000000$JMH5r8LpMat1Aq1p19fatO$eWdWsWcTYqYZ84eCXkWD1zkB2o1B0p1Ra3ZG5d2DtWo= \N f matoscecilia.22@hotmail.com matoscecilia.22@hotmail.com f t 2025-11-12 17:09:39.820902+00 +2118 pbkdf2_sha256$1000000$9H9A1dcAb15QiIsJOtydwI$y3P/m/Nfh5kSuThexIt4Q9V4xfRwc/V9O+HGTjE5lj8= \N f Tamarapelozo@gmail.com Tamarapelozo@gmail.com f t 2025-11-12 17:44:19.731751+00 +2119 pbkdf2_sha256$1000000$w9gG6pD1duCLVUD0JXeAMj$WCULToB4TB3b4iwNrxZblVvhAvdfCD/kHEQahrT9HJA= \N f verardoce@gmail.com verardoce@gmail.com f t 2025-11-12 19:31:35.124599+00 +2120 pbkdf2_sha256$1000000$lwtl5W45ynIiIizgEyW8N1$jT7oHsfUtZvGN54L6pqsZ91/gpMSNafoU4wUpUZ8gio= \N f chloeolivero05@gmail.com chloeolivero05@gmail.com f t 2025-11-12 20:56:52.407493+00 +2121 pbkdf2_sha256$1000000$ABKqmPFDwCG9XOjot4cHAR$HSRXFGDWeIpRBtMcrcLiQ9Rs/F/YhY2FHgGDKbDiIvU= \N f sandrademian8@gmail.com sandrademian8@gmail.com f t 2025-11-12 21:10:39.195319+00 +2122 pbkdf2_sha256$1000000$P897xjaO4rmZg3kq72zu6w$yCRUetg9XwWaOI3cyzobgiX9NNoXeZXaBv3paZPWXIM= \N f paulamaneyro@gmail.com paulamaneyro@gmail.com f t 2025-11-12 21:51:49.392475+00 +2123 pbkdf2_sha256$1000000$HN5PSA7KQrgwgWsDzwfgyW$jFJ/Yj8cUJ82aLcZJxzP93MiP95vhWQR1a4p/1rdD4c= \N f buireolucia@gmail.com buireolucia@gmail.com f t 2025-11-12 22:31:48.717392+00 +2124 pbkdf2_sha256$1000000$uPEd7SQbfbtJURbfmMCcx9$U54cqDGlK8E39veW7477Zz5NWcdUV1b+UW0hUZVedrs= \N f ciglesiasgarma@gmail.com ciglesiasgarma@gmail.com f t 2025-11-13 13:14:53.669715+00 +2125 pbkdf2_sha256$1000000$AE9pmDREL3E77ZytHh26cc$ucz77REx+wqKISoje61FlTuOYY9JoxMMm6g8K17GDS8= \N f Irerodriari@gmail.com Irerodriari@gmail.com f t 2025-11-13 14:26:12.764252+00 +2126 pbkdf2_sha256$1000000$cf22zm7RBItkESnteChVFt$3Uz1YM/55JTge9TpsV/P2KYykcnq35mPXVneTuRneEM= \N f irerodriari@gmail.com irerodriari@gmail.com f t 2025-11-13 14:33:02.853217+00 +2127 pbkdf2_sha256$1000000$w7RFcRLX3pDl0b2j5igSVD$UDy9SVlXbxXJSvgiVSAsLcuSeG6b03iJxmpERd/q/RY= \N f Lilianita.93@hotmail.com Lilianita.93@hotmail.com f t 2025-11-13 16:21:13.650958+00 +2128 pbkdf2_sha256$1000000$K8YMCPiYG0AjHI8AXS9lBX$DV6nwHAn3QqeJ8ho10gMpyntTFKZU6W6Jk75xQm0G1k= \N f lopettinato@gmail.com lopettinato@gmail.com f t 2025-11-13 16:52:23.320028+00 +2129 pbkdf2_sha256$1000000$jFmifCESdOnacgXlXeltdi$QJT8GuEJcIRzaVvN0qwN1ocBYoUXeumhM7nlUoIhve4= \N f maira.lecoque13@gmail.com maira.lecoque13@gmail.com f t 2025-11-13 16:57:18.820159+00 +2130 pbkdf2_sha256$1000000$tTY6EtTNlD1iKXDyllt40p$NjHEqVzr3CWXrsY/fr6czITCF7UykUOVzvvukQ9TrSM= \N f julio.fridman@gmail.con julio.fridman@gmail.con f t 2025-11-13 17:05:25.435644+00 +2131 pbkdf2_sha256$1000000$Mhn5E93Gu1fZRn7AqCNkV3$DybNEI5gNBThGjI2CuVNrVKENo4jGBY406qaKHxOqgk= \N f imoreno39@yahoo.con.ar imoreno39@yahoo.con.ar f t 2025-11-13 17:32:01.75653+00 +2132 pbkdf2_sha256$1000000$3FaCcUotoj1P6zGmhQqeeL$0QNGanc7aVy3iq34VPAlxl0ihxHYBh7qTgB5wY1QmWc= \N f tomasigoncalves@hotmail.com Tomas Ignacio Goncalves tomasigoncalves@hotmail.com f t 2025-11-13 17:52:12+00 +2133 pbkdf2_sha256$1000000$nuf3n135plBCHErhaxkJ6x$vcBR/P5l8T4VVYZ8dzDj+eXkbFbFTcB/SoH/zqWK7Eo= \N f garbarinoserena@gmail.com garbarinoserena@gmail.com f t 2025-11-13 18:29:13.182585+00 +2134 pbkdf2_sha256$1000000$H29Z5912jU2FItzeqzz4ML$et2V7Art8Ocp3DQR3183QfqNbvjl3bocUwH7LQyMDLU= \N f noeliabelenzoppi99@gmail.com noeliabelenzoppi99@gmail.com f t 2025-11-13 19:22:24.03677+00 +2135 pbkdf2_sha256$1000000$mf9dQGzk2FUzvQ78ijt6EH$NJSqKLwEAeeiT5wmb5OArIrqdS3f3o4LXhy3CqbGHuQ= \N f florcruzadovelarde@gmail.com florcruzadovelarde@gmail.com f t 2025-11-13 22:51:29.921553+00 +2136 pbkdf2_sha256$1000000$X9dC9WbVsml6XNs2dtb6cC$fi9PzIwRRF0tk1/MWdcUHL0QuWARgmqqlPH3dTFj8C4= \N f iaranicoleleogrande@gmail.com iaranicoleleogrande@gmail.com f t 2025-11-14 00:16:40.065413+00 +2137 pbkdf2_sha256$1000000$p2TOivMjqSKxCwwqQrDjQm$ErD1V8RxCy5hbrPwxfpd1Yp7FEptnfxWkc34F49sh9o= \N f paolapanizza@gmail.com paolapanizza@gmail.com f t 2025-11-14 00:24:08.256235+00 +2138 pbkdf2_sha256$1000000$TE6KunQMCK8pEIy5TDMyUc$nafMETOeGQp74WOOdk3f7r5ca/i545wcuRCxMmHNkwI= \N f salomemartinie@gmail.com salomemartinie@gmail.com f t 2025-11-14 00:57:46.975981+00 +2139 pbkdf2_sha256$1000000$Rp5PRNqL99fcU9tZKLVkVs$1DnX0lfn6EOLqkOYtfawjMW/QRq+BLAiD6dl1exIZB8= \N f rcgonlosa@gmail.com rcgonlosa@gmail.com f t 2025-11-14 01:07:52.141912+00 +2140 pbkdf2_sha256$1000000$g4etcNkWpRcO8XgZq4ida5$TXn0ZVugtQagJS3hjVyJdlmvrGOIyTJmNXZuZhyLiPc= \N f carocodina2001@gmail.com carocodina2001@gmail.com f t 2025-11-14 01:22:27.374791+00 +2151 pbkdf2_sha256$1000000$YkrL2ZxtvFFr9ZPQpfAgyA$RuSA09v+XYqehvObKPkuxl0XuUgA6YDvGZnSlQvVRNo= \N f luis.caceres@live.com.ar luis.caceres@live.com.ar f t 2025-11-14 22:03:45.441711+00 +2141 pbkdf2_sha256$1000000$AFc0Xh5asd9A0qUcxVsVWH$2bBXmKUQ3jIgkn2FBhTrktIgkWoUU6AdsQ3FNY1aHYQ= 2025-11-14 01:31:35.710968+00 f Nat.cabj@gmail.com Nat.cabj@gmail.com f t 2025-11-14 01:27:53.011653+00 +2142 pbkdf2_sha256$1000000$2IAu3OD0tGVnrlNF17Pxb5$tKfoWt0Z90YpgfW1p6IVwmd71u/eeugUXS7Fvf8ZudA= \N f paolaveronicafurtado@gmail.com paolaveronicafurtado@gmail.com f t 2025-11-14 03:23:54.490292+00 +2143 pbkdf2_sha256$1000000$no61N9V6D9ArRnwkaE8WoP$EbFvQYJeYL4OvZc37IafjrxWjfOf6zNw2HQ7sRbS4e4= \N f fabroana@gmail.com fabroana@gmail.com f t 2025-11-14 12:33:13.057386+00 +2144 pbkdf2_sha256$1000000$W02jgiJErAZmbutnpl0MBR$61g6tRMuyGGFwU+7cwRuTIUD308K1xZWPlIiaVzl8OY= \N f barbieriflor@gmail.com barbieriflor@gmail.com f t 2025-11-14 13:47:27.007108+00 +2145 pbkdf2_sha256$1000000$ohk5F5Vq9f0V1CzlelKb7n$rfl3Cig1PsryFJo3lSHOxARpMFG7K2hwhJxrP5t01lw= \N f enoqueborges@gmail.com enoqueborges@gmail.com f t 2025-11-14 14:11:47.59294+00 +2146 pbkdf2_sha256$1000000$e2mDNixIS86DIaYjkPLwud$+V0gTgh0YZLfguHyFkeGLEINJ7qwYDhAOanPna4tjxU= \N f sofii_612@hotmail.com sofii_612@hotmail.com f t 2025-11-14 15:25:30.458909+00 +2147 pbkdf2_sha256$1000000$sDHeldnfXt4fN0zNQ71q7A$OQ6/vCAIUcS2w0HkpwCAOVoBHdtd/yeS0Ovug6478V4= \N f sanzobrenda@gmail.com sanzobrenda@gmail.com f t 2025-11-14 16:12:01.931514+00 +2148 pbkdf2_sha256$1000000$448exIcfWy4UvETGsARpzR$i5sblq/ug/e4JFwmVYCC0EdDGZ32dWfV7M/R8/kx82o= \N f aiwagalaxy@gmail.com aiwagalaxy@gmail.com f t 2025-11-14 16:34:00.721495+00 +2149 pbkdf2_sha256$1000000$3fDMrxbHm0E8I4Vkv8yh0d$kDGVTOQa9NSOT2upECgMp2yFlraUlNWio+fFUFXrOyU= \N f escrgarro@yahoo.com.ar escrgarro@yahoo.com.ar f t 2025-11-14 16:43:26.180536+00 +2150 pbkdf2_sha256$1000000$vCIH74MNFR7cDzxpOz0wRL$w20qFgeLwuO095tl9QEP25kltROhm5EXCuIhsa/Z2Ko= \N f stephy_kim89@hotmail.com stephy_kim89@hotmail.com f t 2025-11-14 17:49:50.039067+00 +2152 pbkdf2_sha256$1000000$w3eJnymU93ZdaHQXxVdOuH$2vrJS6cqH7CBTUErRslLrRRXVh+x4AZy+763Qj3geCk= \N f saldanyta@hotmail.com saldanyta@hotmail.com f t 2025-11-15 00:11:29.020429+00 +2153 pbkdf2_sha256$1000000$oAhuaVACpLBwyrmYoOwPjL$YuFOMIoO7tA5SUUMRQG/iZws6LploWXVPWQ/5h+Dgbs= \N f greciabeatriz.hm@gmail.com greciabeatriz.hm@gmail.com f t 2025-11-15 01:48:24.105007+00 +2154 pbkdf2_sha256$1000000$J8FLcHDXhVvV6QFhzrSqzB$vD+hztj5mMUuSt/1Laq/DcGMZmoPQGgLMPUlEcpmtus= \N f dita.sp.0807@gmail.com dita.sp.0807@gmail.com f t 2025-11-15 11:19:06.673884+00 +2155 pbkdf2_sha256$1000000$qsIXKheiI2f5EYZsgUHsLR$90s1y/eISXYwK+Wd1tEwrceLFp2lXSbOV1/DngsGAf8= 2025-11-15 14:04:09.689841+00 f rosleidys96@gmail.com rosleidys96@gmail.com f t 2025-11-15 14:00:20.112599+00 +2156 pbkdf2_sha256$1000000$cuDHBYYxIeYAy8A7nFrAhZ$J1KMPnAeFh3guKpUo3IbuAw0SLxWxoeQKszU3MOzv2s= \N f Verokaty05@yahoo.com.ar Verokaty05@yahoo.com.ar f t 2025-11-15 16:16:13.3101+00 +2157 pbkdf2_sha256$1000000$Sqc4j35j0axAMxcymTvuUB$sS2lXjfahkZRK+ElBREV07TknJxkatwLLL3Zr13ymD8= \N f labordis4@gmail.com labordis4@gmail.com f t 2025-11-15 17:24:42.900694+00 +2158 pbkdf2_sha256$1000000$tfcRIWa7UPfBOPTV8rqLTy$7jbrD4mKpczBEtVMEDsYnOtshjBGE2CAlSU83hmwf2A= \N f lcaro5606@gmail.com lcaro5606@gmail.com f t 2025-11-15 18:13:17.734064+00 +2159 pbkdf2_sha256$1000000$b5XfejpHmGmAv640q6Og8u$66W29gNgWG0XmT9WyTku53zzcs8QPLW7hOWtAqvtBkU= \N f mancinelli.gloria@gmail.com mancinelli.gloria@gmail.com f t 2025-11-15 19:13:52.655238+00 +2160 pbkdf2_sha256$1000000$IidhUiHajBwFUB4OMr0fkI$bdMbtWprvicH/nZM/X8suuSHXbWfQmETxuKzM0H5w/Q= \N f martinaconstanzapasini@gmail.com martinaconstanzapasini@gmail.com f t 2025-11-16 02:25:14.585367+00 +2161 pbkdf2_sha256$1000000$g0zJ6lasmfPDG9abgLVMBl$w3enFHISYe/SJWMKNSESVjMiv7YXEWNEwqYj8WDgbh0= \N f fuh.violeta@gmail.com fuh.violeta@gmail.com f t 2025-11-16 14:18:12.774633+00 +2162 pbkdf2_sha256$1000000$vZ3NsFUKI3G3NlrbfhEizf$enrcR3xsIkxcYYS7710BM4V4vYjIwyZzjGNDDBFKV6I= \N f canocarlot@gmail.com canocarlot@gmail.com f t 2025-11-16 14:37:55.723121+00 +2163 pbkdf2_sha256$1000000$LL6lxdVgCF8t2kn6uMhONl$OqIDkTN6h7uu7hmZf+ENq6mD9IkuYnAeryok5TeHs8M= \N f gomezsebastianemanuel@gmail.com gomezsebastianemanuel@gmail.com f t 2025-11-16 19:08:57.284012+00 +2164 pbkdf2_sha256$1000000$Eq89Ftw4fOPyRIFj7pXlzd$1AfT1pAYV2vJPSl1zlUPUIh8QLbbLVRGSRcLAIDvHYM= \N f Kenley.cole@gmail.com Kenley.cole@gmail.com f t 2025-11-16 20:13:01.041497+00 +2165 pbkdf2_sha256$1000000$gtrBAPM5CcqdafbDzWlU0z$5lDAvTTSUzcV+BOzqSxmEHS7QTsDw0aiDVonQcy17tU= \N f Kenley.cole@gmails.com Kenley.cole@gmails.com f t 2025-11-16 20:20:13.944137+00 +2166 pbkdf2_sha256$1000000$RAYlByUp11fdA1QhLygpIS$ATXrbnPMhpoMfFlLCaTF6bb6iXneSoUs64uJZBIxOzw= \N f kenley.cole@gmails.com kenley.cole@gmails.com f t 2025-11-16 20:23:06.903499+00 +2182 pbkdf2_sha256$1000000$AWEyEr0uZjKhgl8HIND3Fu$LJBBfqbe4PUD5hBATjLKVVzwRx1U+mjHDbR6GbwUE28= \N f felipesoli@gmail.com felipesoli@gmail.com f t 2025-11-18 19:51:21.279001+00 +2167 pbkdf2_sha256$1000000$n30tnSiZnlgK1p04UkpZPi$am2IHvfIzyZIe5eCUBV6wHOcbjpJe4ElITD/E7uvRJc= \N f nicole1212figueroa@gmail.com nicole1212figueroa@gmail.com f t 2025-11-17 13:12:49.236135+00 +2168 pbkdf2_sha256$1000000$eLH4HjqOTcQIWhXcpkmwX6$twANY1L8aDaoyXReUSJgTlQMBtUyzQy4cCO5D+/m250= \N f valeriavmateu@gmail.com valeriavmateu@gmail.com f t 2025-11-17 14:21:11.923873+00 +2169 pbkdf2_sha256$1000000$H6gDq7quFbwYUFEIcpm9Un$KPJg6qGnb/MmKeBwFKk658kbm0AFXSpDVpGwfaNF47c= \N f barbanerica5@gmail.com barbanerica5@gmail.com f t 2025-11-17 17:01:40.0214+00 +2170 pbkdf2_sha256$1000000$sb96cr16y5jUdIYZvlhVfS$fcx20++1QGvoO45z82+SL7fuQ+5yz0aniDSEWcStzQw= \N f julyanasanchez.js@gmail.com julyanasanchez.js@gmail.com f t 2025-11-17 20:02:41.985622+00 +2171 pbkdf2_sha256$1000000$GiWz5b7MDkM6IqaYh9gVtv$CUwVCsJJxelCOMJoie2wJDnsNV3nwpUDWWnIYYxC0XA= \N f orianaroll@gmail.com orianaroll@gmail.com f t 2025-11-17 20:02:48.458868+00 +2183 pbkdf2_sha256$1000000$BTcJtLBMBtamGVaULoaBXi$BsRakiulfWTqmaAMrmxEtJlcXLcRoIcUV+e+0y2krQQ= \N f normagramajo09@gmail.com normagramajo09@gmail.com f t 2025-11-18 19:52:20.226797+00 +2173 pbkdf2_sha256$1000000$kctmkNSZ49T1fgaFeE18WH$ehTfrtOPgceytOp36TrcPUD8bq/gcHj8TeGSMOi+nVg= 2025-11-17 21:29:41.255667+00 f lailagriecco@hotmail.com lailagriecco@hotmail.com f t 2025-11-17 21:23:23.204402+00 +2172 pbkdf2_sha256$1000000$3Ctwp5eB3Wx1PCBH7xYVDj$tF57tTDyv9H98oe5xVxc/uDpyxk2a4mHXmtcgM5ym9A= \N f gramajobrenda95@gmail.com gramajobrenda95@gmail.com f t 2025-11-17 21:20:53.432191+00 +2174 pbkdf2_sha256$1000000$5PsueMC9pIGYFk5dNRwzA9$o+vRtDS4rEcDhjwLguNN1YWIk4EWsQUXGpQwGvaDU14= \N f A.sole.gutierrez@gmail.com A.sole.gutierrez@gmail.com f t 2025-11-17 23:11:46.514626+00 +2175 pbkdf2_sha256$1000000$ZzENCIOPLAmewMShfS8wrr$accHssknnoy+3v5FjMqQv5XE7SORsecv4N44hss9ATk= \N f lfgmatta@gmail.com lfgmatta@gmail.com f t 2025-11-18 00:03:43.509643+00 +2176 pbkdf2_sha256$1000000$jF8yQfDRwhi5C4G8hrwOCN$9SDk/jUEKL8Xzq0nlG2jBQi6gltP9QCS6jkBf0x8lu8= \N f fito@enzona.com fito@enzona.com f t 2025-11-18 01:17:16.115633+00 +2177 pbkdf2_sha256$1000000$6OI6kiGuIbzTjm4WWmrTPF$Zi31roRx2kcRVh/azQvYc8veVX7RL0R2bP/D5lNNeOg= \N f abrattey@gmail.com abrattey@gmail.com f t 2025-11-18 06:36:13.053207+00 +2178 pbkdf2_sha256$1000000$epy9v9QhzmJSwc7RyR1agB$/yx3zGj4OJUXTSqimAuQlpETK2xoI21Qrpmywk9uNrg= \N f vitoria.alroz@gmail.com vitoria.alroz@gmail.com f t 2025-11-18 10:53:46.433475+00 +2179 pbkdf2_sha256$1000000$p27Yu3n2fyrxy5TNWkvjRn$dQcDzCErLeYY9vDkpurXx1zQuihN86OB0fXRZfECc1k= \N f elvet2001@hotmail.com elvet2001@hotmail.com f t 2025-11-18 15:17:56.06641+00 +1545 pbkdf2_sha256$1000000$BdQfBLnc7uRHYlQEiGWisV$GmsRStPJ2V7XC2VjQoKmTzyp/1KBn26iGw6mT6ZnEk0= \N f cecitiratel@yahoo.com.ar cecitiratel@yahoo.com.ar f t 2025-08-07 23:53:54.631415+00 +2180 pbkdf2_sha256$1000000$GJs6fZHPIuMGKM9bV6cPra$5U1Oe8uxobDsQFFUgxDMSM+oORZugJ6IDitjt8yqZ7I= \N f leila.kozak@gmail.com leila.kozak@gmail.com f t 2025-11-18 18:48:14.106439+00 +2181 pbkdf2_sha256$1000000$5yPl8yqSJbBfLm9LcAq0o8$wJs+w4iLOj+gJCRGx2FgnWiUJMMYEJiVChbI+ymLbG4= \N f eugerodriguez23@gmail.com eugerodriguez23@gmail.com f t 2025-11-18 18:55:44.563209+00 +2184 pbkdf2_sha256$1000000$nhfNPYaEwVcuBN5bD21K8Q$LggoeZxNmNkyd52QWTsLzWnRP8ImJ3duyjQEOV4VEtw= \N f yesicarobertaflor@gmail.com yesicarobertaflor@gmail.com f t 2025-11-18 19:56:14.70825+00 +2185 pbkdf2_sha256$1000000$c87zjdMCIKQ87HUXjcEGu8$MV9LUUgx2NlLsLqqInooLH9DvDHCSoWL75jFMXC7SRQ= \N f maylisesquivel@gmail.com maylisesquivel@gmail.com f t 2025-11-18 21:39:24.150223+00 +2186 pbkdf2_sha256$1000000$pwv2ktH30jji2PtFmKj5iU$AedE41WBVqbt4CuI5f20hYZ0c8mESdtJGHs9J22VE4w= \N f mahia.matias@gmail.com mahia.matias@gmail.com f t 2025-11-19 02:06:05.00728+00 +2187 pbkdf2_sha256$1000000$qah2IYsueLxsbgqWtJ46GG$NYMK23fVuiapLQKqmPRHvc29D5Rrz3rZE3Fp+dd+Fmc= \N f daniel.zappia10@gmail.com daniel.zappia10@gmail.com f t 2025-11-19 02:31:38.113715+00 +2188 pbkdf2_sha256$1000000$zp7SXrfws9HoE51eWl4iSy$gH5R9EuUlDT26yoyORC+txgd4/EUUcQZ3lVJUaNNP/g= \N f joaquinaraya2227@gmail.com joaquinaraya2227@gmail.com f t 2025-11-19 05:46:49.539811+00 +2189 pbkdf2_sha256$1000000$t6IrbLGQdW41hcTHTRPgET$Z97Z19uOfQboHJNQn1rCRBh3lzFgC3HVyxtKRjp+/L0= \N f reinzen@gmail.com reinzen@gmail.com f t 2025-11-19 11:38:22.961958+00 +2190 pbkdf2_sha256$1000000$O2qO8OrdozYHUsl1c8cng8$v1+aK0VYvxssqw/JMYkMcnFRMyCD6LFFcp4ULIkFc28= \N f rominavalenzuelaflorencianez@gmail.com rominavalenzuelaflorencianez@gmail.com f t 2025-11-19 12:39:03.961327+00 +2191 pbkdf2_sha256$1000000$vQM1p31hmWIBJB5smNPcwP$BWohuIsDudDI6l9uWcwHYs1ZkA+usdxFkeUhz8xqmBw= \N f arriagadadayana760@gmail.com arriagadadayana760@gmail.com f t 2025-11-19 13:04:43.305614+00 +2192 pbkdf2_sha256$1000000$ehjAxJK2e70K93iXVU0sRZ$KzFZwN1Cs810JuvEEMdK+Li7pbnZ1YKT6iQyCYXyvSU= \N f ljpereira86@gmail.com ljpereira86@gmail.com f t 2025-11-19 13:13:13.943905+00 +2193 pbkdf2_sha256$1000000$t1CR6biaUKT3C003LtvmAM$sVYb/5QGbRhukjhPd6f1Kj4lvHmWWQ06/W7ZoJvimE0= \N f danielablutrach@gmail.com danielablutrach@gmail.com f t 2025-11-19 13:13:26.444992+00 +2194 pbkdf2_sha256$1000000$vYv1rwhC4q0wfpIDlaTx7j$mjYjz0d5B8InlLnFopAzc5qkjVRMPFwcThtWr1jEKJQ= \N f rominagiaconi@gmail.com rominagiaconi@gmail.com f t 2025-11-19 13:41:09.153551+00 +2195 pbkdf2_sha256$1000000$L19WdzYimkH9io6M3Cjz7l$49qPJnt7UYeLAPzKtbt3rLkkixXUFM45P7S/RLIkm4w= \N f nvelozo58@gmail.com nvelozo58@gmail.com f t 2025-11-19 14:29:29.825328+00 +2196 pbkdf2_sha256$1000000$YDuLlYrOvQIkyRhtfBmxPG$CwjQx4AcDzFi05PD2Me/ZSaYis7GxRCHHI1SUYOoqOE= \N f mgoitea_2012@hotmail.com mgoitea_2012@hotmail.com f t 2025-11-19 17:07:04.619075+00 +2197 pbkdf2_sha256$1000000$P1IfZwytcdutukv2RAyzZd$5fIbeTr9aL97E/K25WjqY9QozP6PT5kHiRQhSFFDWvo= \N f maruu.canales@gmail.com maruu.canales@gmail.com f t 2025-11-19 18:29:42.46727+00 +2198 pbkdf2_sha256$1000000$qxBwTPLhWWllaCKEFnJK52$IuCFreEZuYPuDpLrLSIP93auaW3K6vj8mUNavArbR+c= \N f Lorepaquete15@gmail.com Lorepaquete15@gmail.com f t 2025-11-19 18:51:45.773737+00 +2199 pbkdf2_sha256$1000000$rUgoHri3Kn1JUBy7h7kRiJ$mIHRjQJDxkx42byG/BO29YonhNinNhkRBbHrmAguHXM= \N f jazmin.93f@gmail.com jazmin.93f@gmail.com f t 2025-11-19 19:01:43.113921+00 +2200 pbkdf2_sha256$1000000$08oPmIlknhIrT3pZXV9yji$pvZzsQU9xclHPcPVNLA2W2xBoCEzqd6soZ3joD676F4= \N f paau.gimenez@gmail.com paau.gimenez@gmail.com f t 2025-11-19 19:21:25.640328+00 +2201 pbkdf2_sha256$1000000$tXhqZ2jofTwMP1e81rzz4y$mUgBw66XHmtEUUqvJ2BBUTxOu1eqQ6gUIinVULMKcuc= \N f marinojoaquinaraya@gmail.com marinojoaquinaraya@gmail.com f t 2025-11-19 20:23:36.99639+00 +2202 pbkdf2_sha256$1000000$AGpv038w2mWDZedYsCBWml$P7eIB9OYHFGrPq5z4stDVkQHNvGIvqE5atWojdVeAg4= \N f melinabenialgo@gmail.com melinabenialgo@gmail.com f t 2025-11-19 21:00:05.776631+00 +2203 pbkdf2_sha256$1000000$SuDEJxd5pMsnPpX7gxpYj6$fIW5+6UsijVykmgZ9ip/Ui1ZvEgjH9Nyu9VEL+96xR8= \N f vivianaadriaoberst@gmail.com vivianaadriaoberst@gmail.com f t 2025-11-19 23:51:48.378176+00 +2204 pbkdf2_sha256$1000000$09Ni8e5m2slVmjGcazdGRq$ElR8tGypL9zGhTF5AZJLHmtMFEXYIuII7O+SNhjhEfY= \N f nataliainguanti@gmail.com nataliainguanti@gmail.com f t 2025-11-20 01:15:28.250078+00 +2205 pbkdf2_sha256$1000000$qMkVQzEGeoAhI2nMRIQcfJ$sUn0U9Wsx4xmwgFwl37Tncp7jjw5q2QmPOG2h0CmJ/Q= \N f claudia_mol67@yahoo.com.ar claudia_mol67@yahoo.com.ar f t 2025-11-20 11:26:11.56421+00 +2206 pbkdf2_sha256$1000000$BprqgZlN4kywmfeN0nuJsV$mLUshJZv/oSlX5JVJ1C+1xEGY6BkIz6F+1lpvPYhnm8= \N f davidsubero94@gmail.com davidsubero94@gmail.com f t 2025-11-20 11:33:49.282471+00 +2207 pbkdf2_sha256$1000000$8KjXimDFivbfKaxoFL8G7R$BJ3foEEwGXSBPt2jOkWKoGim6+yBTyBrtgbtADX4c08= \N f ariadnehernandezr@gmail.com ariadnehernandezr@gmail.com f t 2025-11-20 15:08:52.138458+00 +2208 pbkdf2_sha256$1000000$uo3p7QYubkD7rNMSHcVaCE$BRYyqicEIs/ciFq1ce48VkTndz2HIOGZvpmmub3X2Qs= \N f raguirre@mvl.edu.ar raguirre@mvl.edu.ar f t 2025-11-20 16:20:16.816218+00 +2209 pbkdf2_sha256$1000000$nTV2ewRkufXtFlO4kDQKx1$TsP1Ku9NIdgeDAGbad+pJkOHgtMt6Ke/vKoIHPuYo2Q= \N f Camilarubiog@gmail.com Camilarubiog@gmail.com f t 2025-11-20 16:37:18.589618+00 +2210 pbkdf2_sha256$1000000$OkMTxQjBAgs96fsfesEqNv$/BIZP/7ElDoCW/R4n3q5y5rl22kGaqiDeDrftdYht5w= \N f thaiszygmunt@gmail.com thaiszygmunt@gmail.com f t 2025-11-20 17:49:16.863533+00 +2211 pbkdf2_sha256$1000000$isA9MwGEHefrCVAsOAGKFL$StGqxdYMMaaTsmSNAcQzJEhb4gGHO4YtCJafcasMsdY= \N f javierllorentee@gmail.com javierllorentee@gmail.com f t 2025-11-20 17:55:32.827544+00 +2212 pbkdf2_sha256$1000000$ad325COIy4G3BOgV18ZMgW$EMjhxzlXZospRVBIhuDPRn6LQ3gZuryeDoLWQCcygIo= \N f prilu15103@gmail.com prilu15103@gmail.com f t 2025-11-20 21:26:14.076403+00 +2213 pbkdf2_sha256$1000000$tFIDKNsOqolc7nmZieItek$GYa2k1OMVtnGZGSEEm7Bk+DH7hpKCbI3vzWT6aHH3cE= \N f atomizada@yahoo.com.ar atomizada@yahoo.com.ar f t 2025-11-20 23:18:23.301559+00 +2214 pbkdf2_sha256$1000000$a4N0cODZ8vq7ADaF3UY9bZ$EltNHa8nmyQRy1g31x3Z7uDKrhE73ZlUoTMuiFZwu4I= \N f mgmansill@yahoo.com.ar mgmansill@yahoo.com.ar f t 2025-11-20 23:40:14.979052+00 +2215 pbkdf2_sha256$1000000$OKAOLClXJpmAeiYPjk1FND$kSR5nLABKkEMGEiZ6YwcDKj60XKrj39snve7Cz9aE3w= \N f isabelsauce@gmail.com isabelsauce@gmail.com f t 2025-11-21 01:57:18.418053+00 +2216 pbkdf2_sha256$1000000$NTXktWTw15OszoUKgpnH8T$z2c+Mq/7DjUa7vhiAAoKiMoHdw9sDGnp8M0PfFPuoJg= \N f micaelamotta98@gmail.com micaelamotta98@gmail.com f t 2025-11-21 11:18:01.149326+00 +2217 pbkdf2_sha256$1000000$uKeLbzEwaxodTQrFGN5p7M$NIN8JlEcZE17mLfMpCduhhjJeIxdLe0kzEFGB3BLVyo= \N f carolinadrrusso@gmail.com carolinadrrusso@gmail.com f t 2025-11-21 13:28:15.668721+00 +2218 pbkdf2_sha256$1000000$HOz5qVr91IYL0VLDC5tgPJ$wVrovcsN4MYSvsF8ZQ/TrBKOMa8Td4W5zrdL5JT2bzw= \N f scanete695@gmail.com scanete695@gmail.com f t 2025-11-21 13:35:04.283471+00 +2219 pbkdf2_sha256$1000000$oMe8mADL4bTDzl3anvv1ZV$CmOXwrnd5ZZ6SW4hzCcAKU3Qr+H8k0zLRgg/VoNbf/c= \N f infoarimedina@gmail.com infoarimedina@gmail.com f t 2025-11-21 13:46:24.394494+00 +2220 pbkdf2_sha256$1000000$yB0bqQpWtGgJ4yZUvVwltq$Z5nj3LS7ja5G5TfX76UeG9kY+hvc7JMRJnZ6k96EcQk= \N f victoriaaloisio95@gmail.com victoriaaloisio95@gmail.com f t 2025-11-21 15:00:39.548941+00 +2221 pbkdf2_sha256$1000000$KEuEcA6ST5hIBEfkwOkqlF$Sa0ojx9rJpLf8VCBc8YozAP5/GqmY5rGRg4BBambKPY= \N f paula.belen.novas@gmail.com paula.belen.novas@gmail.com f t 2025-11-21 15:14:40.982075+00 +2222 pbkdf2_sha256$1000000$tjtCcxWvoVg5nPSWHKpAVV$A5nlSvDA9xQaPC94xJTQ7QOV9/AwKapqDAJcaoj2nho= \N f santimiguel2002@gmail.com santimiguel2002@gmail.com f t 2025-11-21 15:32:42.547709+00 +2223 pbkdf2_sha256$1000000$OizonaWAHEW4V7RMHIHEKq$KiXOlVHqGM66EPbOGHRkI8Z+hgkI0KmoUTqnhPk0t9E= \N f Ale-martin1@hotmail.com Ale-martin1@hotmail.com f t 2025-11-21 15:50:26.303013+00 +2224 pbkdf2_sha256$1000000$GmNFpXueNPO9zLoS87SB6i$F8QmPHE+O/gmH/UIigzqOCu2PHVVsMJlxfNToN2/sI0= \N f kradgger@gmail.com kradgger@gmail.com f t 2025-11-21 16:08:50.635645+00 +2225 pbkdf2_sha256$1000000$z773NKIVcOecU66CwGbNEm$7mgy1HUM01RrRM22HNSjBa2upAJNVZVL7Sbrvt4zPLU= \N f giuli.leocata@gmail.com giuli.leocata@gmail.com f t 2025-11-21 16:20:38.068558+00 +2226 pbkdf2_sha256$1000000$25bU0iIX82kICEOWlWd0N9$s3rSNmaEkPuf5LVr3V4FBHkHkyTHzWK4pxKKUKKP+x8= \N f gonza.diz@hotmail.com gonza.diz@hotmail.com f t 2025-11-21 17:41:28.914386+00 +2227 pbkdf2_sha256$1000000$dgAzPs0MmzRVkZ8xRLjjef$jxZh37Psv8dlz+rFnVlRTrUwIbpkFO+SXLGnAH5IFzk= \N f belengnoelia@gmail.com belengnoelia@gmail.com f t 2025-11-21 19:48:57.24219+00 +2228 pbkdf2_sha256$1000000$7mlPyQpnhP9danAJK8cLcY$vlm+brzBDHwY5ucLa9JHSmb3T1S6f6e+Yp8bMSj8D1Q= \N f solesilveyra@live.con.ar solesilveyra@live.con.ar f t 2025-11-21 22:41:20.467843+00 +2229 pbkdf2_sha256$1000000$7m1Bw7k4tHo8cv3ErA9if1$e2FH89xWFKq8TYW8yfkVfqxE7EBf6/mW/IQiPCmvGD0= \N f nikoanunez@gmail.com nikoanunez@gmail.com f t 2025-11-21 23:37:08.974638+00 +2230 pbkdf2_sha256$1000000$XUsxT9bCxpzlsaWYHSHLUn$gFwC6VOZhHzNXc0xB0GOsMThi5XqTJOwpeMC5xdjLW4= \N f Abieoy@gmail.com Abieoy@gmail.com f t 2025-11-22 01:18:25.680802+00 +2231 pbkdf2_sha256$1000000$oggvN7x9VwhSUFIZzIwJ1e$mM4WrC4DbrELU9BMUnhHT0yGJQm7n6k1FGJS2qtCM6A= \N f paolicano1995@gmail.com paolicano1995@gmail.com f t 2025-11-22 02:24:40.988829+00 +2232 pbkdf2_sha256$1000000$EGJT9E07OKlYber4ntsksa$NGRe3euVhLRkDiEj5Rl8eqBG6h/m0FULr0r/v9p/GUo= \N f antoniogiammatteo@hotmail.com antoniogiammatteo@hotmail.com f t 2025-11-22 02:28:28.410976+00 +2233 pbkdf2_sha256$1000000$TjdEahMOGBsSQCXCAD5FU9$wpdVjRcj5ZzOodBYSuUJJ5pr/1+sJWixvN4+CVZQSs8= \N f adriandevota@gmail.com adriandevota@gmail.com f t 2025-11-22 11:40:13.225284+00 +2234 pbkdf2_sha256$1000000$3G8yMHiXzy4OT5HYLpY2tO$IAIVWlemwsS/etRPslpElNWxkLZqQOcUFZoB/p4SCMs= \N f soler_laura@yahoo.com.ar soler_laura@yahoo.com.ar f t 2025-11-22 13:35:56.342043+00 +2235 pbkdf2_sha256$1000000$PmDBATjHHoAR0PK9loN5Gz$8CaF+KP8rA4JyHzt3/VE5i+21vSXIpDJsePoagp7rwE= \N f sofia.burgos1999@gmail.com sofia.burgos1999@gmail.com f t 2025-11-22 14:43:23.349975+00 +2236 pbkdf2_sha256$1000000$KKl1WpP4Lf2DEHBOFv8t43$Mo1wDJDGqgqDWUG0JfnK0q/kasTCpeKGzvl/433JhKo= \N f Pablokamalian@gmail.com Pablokamalian@gmail.com f t 2025-11-22 16:29:01.947769+00 +2237 pbkdf2_sha256$1000000$zENAuBmB3fnHs34II04tjd$7A0+GZi7ayLow+cNn8QozJZHSuo5dhz/VkWLUTruUN0= \N f barbarini18091993@gmail.com barbarini18091993@gmail.com f t 2025-11-22 16:58:58.680478+00 +2238 pbkdf2_sha256$1000000$CzHVa7LCJWgxZgPpYVCZfS$w+NQZCFDGhvqFsu8PEnPpseBOnoZLMyKzRRMx+75KQ8= \N f ary.perticsro@gmail.com ary.perticsro@gmail.com f t 2025-11-22 17:06:51.544116+00 +2239 pbkdf2_sha256$1000000$uDENf012xPolHrnN0GE3jv$EcTT2dd+C7HQOl8MIYtdIsET9eskr/PnN4+5lTgA9VE= \N f rjbolivar76@gmail.com rjbolivar76@gmail.com f t 2025-11-22 18:41:09.094146+00 +2240 pbkdf2_sha256$1000000$6yiVDcBs4xJvi217BcJY5H$ipCdgSINd3bex27NPcwOww5t82DrEwD+EbauoKWjMYM= \N f rociorgd@hotmail.com rociorgd@hotmail.com f t 2025-11-23 10:23:27.771835+00 +2241 pbkdf2_sha256$1000000$o76aWikZKVtpfEAkTnojU6$unVoDbiC0bJMg+AqjXoSDexGLLO93ed2j9wKjiK7iTI= \N f adrilay973@gmail.com adrilay973@gmail.com f t 2025-11-23 12:59:47.645847+00 +2242 pbkdf2_sha256$1000000$Shr1KyESAsPlQf01SOkIUV$aY0Vq6+uHJyaqQVAO7+HMF6RpMaJgLj4QBo6U1an3KQ= \N f chaves.felipe@gmail.com chaves.felipe@gmail.com f t 2025-11-23 14:50:53.109577+00 +2243 pbkdf2_sha256$1000000$qqrgpoVK34W4VURIW04luj$L0EByjm2qu1+tAvziK0eLzxQb8iOkrbsw5Hmjh/H0HE= \N f matiasadrian161@gmail.com matiasadrian161@gmail.com f t 2025-11-23 17:17:34.000036+00 +2244 pbkdf2_sha256$1000000$NZh73UdqOqszWjRd4RLAWB$26+NChXi8UCpoxqObn2/qLzxIJFTW7PZHdiyH/wY0zA= \N f m.belen.farroni@gmail.com m.belen.farroni@gmail.com f t 2025-11-23 20:56:12.166512+00 +2245 pbkdf2_sha256$1000000$93oyzf6FT7s4Inrv3HcSVj$JiiyhBKs5Ibe+aZPxN/HxzHC+OjDfcWZ++cavsdUaWo= \N f marcelovelazquez1972@gmail.com marcelovelazquez1972@gmail.com f t 2025-11-23 21:37:18.078778+00 +2246 pbkdf2_sha256$1000000$5nugqkcWOfxvjK9xs5tUAf$JN+8x9bWwYF++fsseKFMh8EfVGwX25rfFkSyVNadNC4= \N f nicolasamatogarcia@gmail.com nicolasamatogarcia@gmail.com f t 2025-11-24 07:23:00.233368+00 +2247 pbkdf2_sha256$1000000$3C6ExBTJU8M11yFwuI6Zt6$Cd5jwx1EBEHgyzHHAG/P+sPpmCxuR7MksVHDemLyows= \N f veroosolana@gmail.com veroosolana@gmail.com f t 2025-11-24 09:57:22.878993+00 +2248 pbkdf2_sha256$1000000$9oME5uSNjMrbZN3AaddPTc$VtBbmZe3QSNbI1Npf76qAyrm6hVZgdZiykIb5sKQKHU= \N f juliettplos@gmail.com juliettplos@gmail.com f t 2025-11-24 12:42:00.866668+00 +2249 pbkdf2_sha256$1000000$E95pcwPOry476McU05wr2u$MXa7N37i9sU9zT2MMOmeG0Va5qP8zTQWhKguBqXr7dU= \N f leandrojromeeo1982@gmail.com leandrojromeeo1982@gmail.com f t 2025-11-24 13:20:04.823484+00 +2250 pbkdf2_sha256$1000000$EYnsMFogHIcLjRZooMDSiR$6Mc7EbV2z/KLlXXScf2Qb8DmG+UxV7jva7MsqcA0OEY= \N f carlosdeniri@gmail.com carlosdeniri@gmail.com f t 2025-11-24 13:39:52.633547+00 +2251 pbkdf2_sha256$1000000$0MsrKPnkDD10vRc0H5uuaW$+jQLZlZMKYrO4EiXDFucRAasYmt17OPv+PYIzO495Jc= \N f sofiperisse@gmail.com sofiperisse@gmail.com f t 2025-11-24 14:23:44.099153+00 +2252 pbkdf2_sha256$1000000$vbvcmGVXNxf31EOzioLZi0$0LKUS0pttn2YDg0nt0Bc9ZgoINTk5a9ZjU34VD2ub30= \N f veronica_parasco@hotmail.com veronica_parasco@hotmail.com f t 2025-11-24 14:27:14.790434+00 +2253 pbkdf2_sha256$1000000$H5IRJfC3Lo7es0h6JCBMri$ZALDTl+WHl9S5cgr6qhDBqot3vlzVn8qrthy42nNk/c= \N f Daianaveronicasilva1@gmail.com Daianaveronicasilva1@gmail.com f t 2025-11-24 15:03:27.087253+00 +2254 pbkdf2_sha256$1000000$zPbjmsE2tP6JArd9kfFeGa$ii52pY4voZzwpJhQkM6xPgC1i6Z7mV9jdMuqxM+K3DA= \N f ambrosnonorma@gmail.com ambrosnonorma@gmail.com f t 2025-11-24 21:59:29.197595+00 +2255 pbkdf2_sha256$1000000$tCummgddP9H1dLnaNeDnIL$C7uYqj9XPRxJknNm+QRl7ctnMtBtsr2nPun1HaqW1xs= \N f alerodri038@gmail.com alerodri038@gmail.com f t 2025-11-24 22:14:27.929296+00 +2256 pbkdf2_sha256$1000000$78RJk80cogABJzsLKG2xy9$7gHyi4jKT7qW1D9sLnZ7o76XmOMDecvrQ62fIatA7vM= \N f shei_15@hotmail.com shei_15@hotmail.com f t 2025-11-25 00:40:32.243248+00 +2257 pbkdf2_sha256$1000000$WzYXbfjtTVln63RtDB8bmS$tRfMOJlRxoPEagisVK3gKKbI2HxgbgHd9NckqxCa1Sc= \N f sheilarina234@gmail.com sheilarina234@gmail.com f t 2025-11-25 01:04:18.32627+00 +2258 pbkdf2_sha256$1000000$nSubQGgL7zzZ58M7XyvN4S$nkpk4/iKG3ILWcHo5FGnz5zS+xVoYpWu8/nT2zuLuSY= \N f rominavanesaperez@gmail.com rominavanesaperez@gmail.com f t 2025-11-25 01:34:58.044864+00 +2259 pbkdf2_sha256$1000000$tSObgQkuh8s7KJkJwdZPjE$DiJ5CPu02fZ+HRp3NgPxz9OCgB6/tfj2b1YkjXtNpSE= \N f abipicassomansilla@gmail.com abipicassomansilla@gmail.com f t 2025-11-25 01:43:48.583454+00 +2260 pbkdf2_sha256$1000000$6cQ1o6lbDG7jctKt5OjRsZ$V7UrJRosjzyjhPGQRfTyL08Ym7ADCXdUrJ6kVdDGIyo= \N f mfarguelles13@hotmail.com mfarguelles13@hotmail.com f t 2025-11-25 02:08:17.165335+00 +2261 pbkdf2_sha256$1000000$OIQxgXmRPCrKIrJnA8gf8T$MCVvgoaramPK6sCL3knhF/1eHxkB2y4fPE5ojemn/jg= \N f rominamartadoraburela@gmail.com rominamartadoraburela@gmail.com f t 2025-11-25 09:45:39.350249+00 +2262 pbkdf2_sha256$1000000$7s9BE9gPLxZQ6LgriTGkg3$x0aA11pTCBSXMtxsRwOesMxiGShF5oPet5XGu4/Q1zY= \N f ssergio62@icloud.com ssergio62@icloud.com f t 2025-11-25 12:30:57.45456+00 +2263 pbkdf2_sha256$1000000$pVLMJHd5GUK2I36COJEU76$LKbCN3B9eph3IcT+G1SF/yVYZyC2LIN5c9CAA0+lxSE= \N f klamaspasquino@gmail.com klamaspasquino@gmail.com f t 2025-11-25 12:41:22.754248+00 +2264 pbkdf2_sha256$1000000$Z9XOBR7bWMFGkSLFyojwk8$aGmnYAONwgLUyYLXin0Fqx6kd9qr3Chy13IYeD7WlAk= \N f lucasecabrera@gmail.com lucasecabrera@gmail.com f t 2025-11-25 13:17:33.821653+00 +2265 pbkdf2_sha256$1000000$mHR8QMLZfbCtAE2jphi24Q$1A5j/UdR5KY4xdrdARRaPoLsWp4VfINRz2LtRC97dp0= \N f admipaulaylaura@gmail.com admipaulaylaura@gmail.com f t 2025-11-25 14:08:23.898179+00 +2266 pbkdf2_sha256$1000000$wVdm4GyLHt3oQpwHEAZG0z$krP5nrEIWaumMR4Jp15M4NCWsoqz2lBBXBz2CRC4tgU= \N f ivanaroxanapaz@gmail.com ivanaroxanapaz@gmail.com f t 2025-11-25 14:24:49.777241+00 +2267 pbkdf2_sha256$1000000$QCfWCRzOsV9EqaIirdsJjx$CvWaIDWK6iU/N/DOIBe2b6jkuedj2ZeSRYM4Ykrketg= \N f Nsilva2eme@gmail.com Nsilva2eme@gmail.com f t 2025-11-25 14:27:25.528795+00 +2268 pbkdf2_sha256$1000000$Zb1gLX4vPwuZSJTRYdBTpg$hN2MtAl9yK5TKh6SJ9sdsMP2Gyu1a3727uOlYpNtCbY= \N f florserigos@icloud.com florserigos@icloud.com f t 2025-11-25 14:52:04.231266+00 +983 pbkdf2_sha256$1000000$2193znvxh0zPINKvHNcryt$ScH2ms1cT5V6ppyjndO2q43+ELDPu2QpbxTfiwXZHCo= \N f gabivallone@hotmail.com f t 2025-05-20 15:30:11.409293+00 +2269 pbkdf2_sha256$1000000$Pgb2jhNPv51OVcVANTHJbG$2kKfmflSEZ5oqtMowvOSNnE/6nbYGpMu2R6PmiqCZ0Q= \N f nataliavera@outlook.com nataliavera@outlook.com f t 2025-11-25 15:21:44.621483+00 +2270 pbkdf2_sha256$1000000$OOI7aJlH7svpKyzeW0eQR8$Wo1YSqVd3C1R0q+WymQNx9/SoSQhDe8wfSt0bCukH2Y= \N f fox.gam@gmail.com fox.gam@gmail.com f t 2025-11-25 16:21:09.906177+00 +2271 pbkdf2_sha256$1000000$ZLAabEbZSS5KmQ1RSYdQO4$spEdgTrlEf/nsRyPN9dlO4+31eAPPM7St69Mmebscek= \N f marielavgarcia82@gmail.com marielavgarcia82@gmail.com f t 2025-11-25 16:31:42.648505+00 +2272 pbkdf2_sha256$1000000$wlkhXPaonxJY9EkF5Btb33$YAJABNWvg8+I1OqAra32EsepHIJylyqGjVfj3ep2Wbs= \N f judit61barrionuevo@gmail.com judit61barrionuevo@gmail.com f t 2025-11-25 16:38:23.050519+00 +2273 pbkdf2_sha256$1000000$YZhWQrg6wgVDPkc4BQQm6g$gWT38y+DNL/yvIjtO6ZdhcGUna52YqGG8wfxUhUoTd8= \N f zaitseva.russia@gmail.com zaitseva.russia@gmail.com f t 2025-11-25 17:25:35.660759+00 +2274 pbkdf2_sha256$1000000$ltMTZ5bnwgXOCfQXG13b3y$9pV5EcVnNu8d5/jU+mZsXeTXlkdGImm/XDqY/Nx4ZY8= \N f marianog.ramon@gmail.com marianog.ramon@gmail.com f t 2025-11-25 19:15:09.542059+00 +2275 pbkdf2_sha256$1000000$41tV0SxlFptl6PN8NZesw5$xr4ZjIZjko+hPtCCYsbpYuSdRxoo2GG16XvbZiZDygQ= \N f bf.brendafunes@gmail.com bf.brendafunes@gmail.com f t 2025-11-25 19:58:23.950487+00 +2276 pbkdf2_sha256$1000000$v7yJXBd9v7r5Hjc4l5eMQ0$iz7klIZgtt4eDOEsaDwpEgYrZJhWZf73CwZE19C0Z6A= \N f sarabence@hotmail.com sarabence@hotmail.com f t 2025-11-25 20:07:32.824852+00 +2277 pbkdf2_sha256$1000000$BCZaxSosbJ1wUrBOwWIOAX$kStU/49PbVIKGbqFTcZzvE4h8Lhq4SfkqR8v6dhnnqY= \N f adrianozuccarelli@hotmail.com adrianozuccarelli@hotmail.com f t 2025-11-25 22:22:04.380889+00 +2278 pbkdf2_sha256$1000000$OJaQ4lc3T51R2it2vRcVZv$oThSa0TH1vsSCQwbkDTShBUZ6LJyKnDAKklrIM6Zv94= \N f marina87hernandez@gmail.com marina87hernandez@gmail.com f t 2025-11-25 22:50:09.620434+00 +2279 pbkdf2_sha256$1000000$DwzV8yGtY3v6Wmxp39XheF$8Y7K3Upt0o/fdPD9gaUlbvNjknlnMSevUT60sNSkZ/c= \N f miranda.b@hotmail.com.ar miranda.b@hotmail.com.ar f t 2025-11-25 23:17:11.297527+00 +2280 pbkdf2_sha256$1000000$fqwMCUDZApSeN2tCBdo1LP$nUXSHgR0Jyarg0WJJIeOVMOkaGAWgAvuMuIANXd6TG4= \N f rakypugliese@hotmail.com rakypugliese@hotmail.com f t 2025-11-25 23:18:33.543147+00 +\. + + +-- +-- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.auth_user_groups (id, user_id, group_id) FROM stdin; +28 117 20 +29 118 19 +30 119 20 +31 121 19 +32 121 20 +33 122 20 +34 123 20 +35 124 20 +36 125 20 +37 126 20 +38 127 20 +39 128 20 +40 129 20 +41 130 20 +42 131 20 +43 132 20 +44 133 20 +45 134 20 +46 135 20 +47 136 20 +48 137 20 +49 138 20 +50 116 20 +51 139 20 +52 140 20 +53 141 19 +54 142 20 +55 143 20 +56 147 20 +57 148 20 +58 151 21 +59 152 21 +60 153 21 +61 154 21 +62 155 21 +63 156 21 +64 157 21 +65 158 21 +66 159 21 +67 160 21 +68 161 21 +69 162 21 +70 163 21 +71 164 21 +72 165 21 +73 166 21 +74 167 21 +75 168 21 +76 169 21 +77 170 21 +78 171 21 +79 172 21 +80 173 21 +81 174 21 +82 175 21 +83 176 21 +84 177 21 +85 178 21 +86 179 21 +87 180 21 +88 181 21 +89 182 21 +90 183 21 +91 184 21 +92 185 21 +93 186 21 +94 187 21 +95 188 21 +96 189 21 +97 190 21 +98 191 21 +99 192 21 +100 193 21 +101 194 21 +102 195 21 +103 196 21 +104 197 21 +105 198 21 +106 199 21 +107 200 21 +108 201 21 +109 202 21 +110 203 21 +111 204 21 +112 205 21 +113 206 21 +114 207 21 +115 208 21 +116 209 21 +117 210 21 +118 211 21 +119 212 21 +120 213 21 +121 214 21 +122 215 21 +123 216 21 +124 217 21 +125 218 21 +126 219 21 +127 220 21 +128 221 21 +129 222 21 +130 223 21 +131 224 21 +132 225 21 +133 226 21 +134 227 21 +135 228 21 +136 229 21 +137 230 21 +138 231 21 +139 232 21 +140 233 21 +141 234 21 +142 235 21 +143 236 21 +144 237 21 +145 238 21 +146 239 21 +147 240 21 +148 241 21 +149 242 21 +150 243 21 +151 244 21 +152 245 21 +153 246 21 +154 247 21 +155 248 21 +156 249 21 +157 250 21 +158 251 21 +159 252 21 +160 253 21 +161 254 21 +162 255 21 +163 256 21 +164 257 21 +165 258 21 +166 259 21 +167 260 21 +168 261 21 +169 262 21 +170 263 21 +171 264 21 +172 265 21 +173 266 21 +174 267 21 +175 268 21 +176 269 21 +177 270 21 +178 271 21 +179 272 21 +180 273 21 +181 274 21 +182 275 21 +183 276 21 +184 277 21 +185 278 21 +186 279 21 +187 280 21 +188 281 21 +189 282 21 +190 283 21 +191 284 21 +192 285 21 +193 286 21 +194 287 21 +195 288 21 +196 289 21 +197 290 21 +198 291 21 +199 292 21 +200 293 21 +201 294 21 +202 295 21 +203 296 21 +204 297 21 +205 298 21 +206 299 21 +207 300 21 +208 301 21 +209 302 21 +210 303 21 +211 304 21 +212 305 21 +213 306 21 +214 307 21 +215 308 21 +216 309 21 +217 310 21 +218 311 21 +219 312 21 +220 313 21 +221 314 21 +222 315 21 +223 316 21 +224 317 21 +225 318 21 +226 319 21 +227 320 21 +228 321 21 +229 322 21 +230 323 21 +231 324 21 +232 325 21 +233 326 21 +234 327 21 +235 328 21 +236 329 21 +237 330 21 +238 331 21 +239 332 21 +240 333 21 +241 334 21 +242 121 21 +243 335 21 +244 336 21 +245 337 21 +246 338 21 +247 339 21 +248 340 21 +249 341 21 +250 342 21 +251 343 21 +252 344 21 +253 345 21 +254 346 21 +255 347 21 +256 348 21 +257 349 21 +258 350 21 +259 351 21 +260 352 21 +261 353 21 +262 354 21 +263 355 21 +264 356 21 +265 357 21 +266 358 21 +267 359 21 +268 360 21 +269 361 21 +270 362 21 +271 363 21 +272 364 21 +273 365 21 +274 366 21 +275 367 21 +276 368 21 +277 369 21 +278 370 21 +279 371 21 +280 372 21 +281 373 21 +282 374 21 +283 375 21 +284 376 21 +285 377 21 +286 378 21 +287 379 21 +288 380 21 +289 381 21 +290 382 21 +291 383 21 +292 384 21 +293 385 21 +294 386 21 +295 387 21 +296 388 21 +297 389 21 +298 390 21 +299 391 21 +300 392 21 +301 393 21 +302 394 21 +303 395 21 +304 396 21 +305 397 21 +306 398 21 +307 399 21 +308 400 21 +309 401 21 +310 402 21 +311 403 21 +312 404 21 +313 405 21 +314 406 21 +315 407 21 +316 408 21 +317 409 21 +318 410 21 +319 145 21 +320 411 21 +321 412 21 +322 413 21 +323 414 21 +324 415 21 +325 416 21 +326 417 21 +327 418 21 +328 419 21 +329 420 21 +330 421 21 +331 422 21 +332 423 21 +333 424 21 +334 425 21 +335 426 21 +336 427 21 +337 428 21 +338 429 21 +339 430 21 +340 431 21 +341 432 21 +342 433 21 +343 434 21 +344 435 21 +345 436 21 +346 437 21 +347 438 21 +348 439 21 +349 440 21 +350 441 21 +351 442 21 +352 443 21 +353 444 21 +354 445 21 +355 446 21 +356 447 21 +357 448 21 +358 449 21 +359 450 21 +360 451 21 +361 452 21 +362 453 21 +363 454 21 +364 455 21 +365 456 21 +366 457 21 +367 458 21 +368 459 21 +369 460 21 +370 461 21 +371 462 21 +372 463 21 +373 464 21 +374 465 21 +375 466 21 +376 467 21 +377 468 21 +378 469 21 +379 470 21 +380 471 21 +381 472 21 +382 473 21 +383 474 21 +384 475 21 +385 476 21 +386 477 21 +387 478 21 +388 479 21 +389 480 21 +390 481 21 +391 482 21 +392 483 21 +393 484 21 +394 485 21 +395 486 21 +396 487 21 +397 488 21 +398 489 21 +399 490 21 +400 491 21 +401 492 21 +402 493 21 +403 494 21 +404 495 21 +405 496 21 +406 497 21 +407 498 21 +408 499 21 +409 500 21 +410 501 21 +411 502 21 +412 503 21 +413 504 21 +414 505 21 +415 506 21 +416 507 21 +417 508 21 +418 509 21 +419 510 21 +420 511 21 +421 512 21 +422 513 21 +423 514 21 +424 515 21 +425 516 21 +426 517 21 +427 518 21 +428 519 21 +429 520 21 +430 521 21 +431 522 21 +432 523 21 +433 524 21 +434 525 21 +435 526 21 +436 527 21 +437 528 21 +438 529 21 +439 530 21 +440 531 21 +441 532 21 +442 533 21 +443 534 21 +444 535 21 +445 536 21 +446 537 21 +447 538 21 +448 539 21 +449 540 21 +450 541 21 +451 542 21 +452 543 21 +453 544 21 +454 545 21 +455 546 21 +456 547 21 +457 548 21 +458 549 21 +459 550 21 +460 551 21 +461 552 21 +462 553 21 +463 554 21 +464 555 21 +465 556 21 +466 557 21 +467 558 21 +468 559 21 +469 560 21 +470 561 21 +471 562 21 +472 563 21 +473 564 21 +474 565 21 +475 566 21 +476 567 21 +477 568 21 +478 569 21 +479 570 21 +480 571 21 +481 572 21 +482 573 21 +483 574 21 +484 575 21 +485 576 21 +486 577 21 +487 578 21 +488 579 21 +489 580 21 +490 581 21 +491 582 21 +492 583 21 +493 584 21 +494 585 21 +495 586 21 +496 587 21 +497 588 21 +498 589 21 +499 590 21 +500 591 21 +501 592 21 +502 593 21 +503 594 21 +504 595 21 +505 596 21 +506 597 21 +507 598 21 +508 599 21 +509 600 21 +510 601 21 +511 602 21 +512 603 21 +513 604 21 +514 605 21 +515 606 21 +516 607 21 +517 608 21 +518 609 21 +519 610 21 +520 611 21 +521 612 21 +522 613 21 +523 614 21 +524 615 21 +525 616 21 +526 617 21 +527 618 21 +528 619 21 +529 620 21 +530 621 21 +531 622 21 +532 623 21 +533 624 21 +534 625 21 +535 626 21 +536 627 21 +537 628 21 +538 629 21 +539 630 21 +540 631 21 +541 632 21 +542 633 21 +543 634 21 +544 635 21 +545 636 21 +546 637 21 +547 638 21 +548 639 21 +549 640 21 +550 641 21 +551 642 21 +552 643 21 +553 644 21 +554 645 21 +555 646 21 +556 647 21 +557 648 21 +558 649 21 +559 650 21 +560 651 21 +561 652 21 +562 653 21 +563 654 21 +564 655 21 +565 656 21 +566 657 21 +567 658 21 +568 659 21 +569 660 21 +570 661 21 +571 662 21 +572 663 21 +573 664 21 +574 665 21 +575 666 21 +576 667 21 +577 668 21 +578 669 21 +579 670 21 +580 671 21 +581 672 21 +582 673 21 +583 674 21 +584 675 21 +585 676 21 +586 677 21 +587 678 21 +588 679 21 +589 680 21 +590 681 21 +591 682 21 +592 683 21 +593 684 21 +594 685 21 +595 686 21 +596 687 21 +597 688 21 +598 689 21 +599 690 21 +600 691 21 +601 692 21 +602 693 21 +603 694 21 +604 695 21 +605 696 21 +606 697 21 +607 698 21 +608 699 21 +609 700 21 +610 701 21 +611 702 21 +612 703 21 +613 704 21 +614 705 21 +615 706 21 +616 707 21 +617 708 21 +618 709 21 +619 710 21 +620 711 21 +621 712 21 +622 713 21 +623 714 21 +624 715 21 +625 716 21 +626 717 21 +627 718 21 +628 719 21 +629 720 21 +630 721 21 +631 722 21 +632 723 21 +633 724 21 +634 725 21 +635 726 21 +636 727 21 +637 728 21 +638 729 21 +639 730 21 +640 731 21 +641 732 21 +642 733 21 +643 734 21 +644 735 21 +645 736 21 +646 737 21 +647 738 21 +648 739 21 +649 740 21 +650 741 21 +651 742 21 +652 743 21 +653 744 21 +654 745 21 +655 746 21 +656 747 21 +657 748 21 +658 749 21 +659 750 21 +660 751 21 +661 752 21 +662 753 21 +663 754 21 +664 755 21 +665 756 21 +666 757 21 +667 758 21 +668 759 21 +669 760 21 +670 761 21 +671 762 21 +672 763 21 +673 764 21 +674 765 21 +675 766 21 +676 767 21 +677 768 21 +678 769 21 +679 770 21 +680 771 21 +681 772 21 +682 773 21 +683 774 21 +684 775 21 +685 776 21 +686 777 21 +687 778 21 +688 779 21 +689 780 21 +690 781 21 +691 782 21 +692 783 21 +693 784 21 +694 785 21 +695 786 21 +696 787 21 +697 788 21 +698 789 21 +699 790 21 +700 791 21 +701 792 21 +702 793 21 +703 794 21 +704 795 21 +705 796 21 +706 797 21 +707 798 21 +708 799 21 +709 800 21 +710 801 21 +711 802 21 +712 803 21 +713 804 21 +714 805 21 +715 806 21 +716 807 21 +717 808 21 +718 809 21 +719 810 21 +720 811 21 +721 812 21 +722 813 21 +723 814 21 +724 815 21 +725 816 21 +726 817 21 +727 818 21 +728 819 21 +729 820 21 +730 821 21 +731 822 21 +732 823 21 +733 824 21 +734 825 21 +735 826 21 +736 827 21 +737 828 21 +738 829 21 +739 830 21 +740 831 21 +741 832 21 +742 833 21 +743 834 21 +744 835 21 +745 836 21 +746 837 21 +747 838 21 +748 839 21 +749 840 21 +750 841 21 +751 842 21 +752 843 21 +753 844 21 +754 845 21 +755 846 21 +756 847 21 +757 848 21 +758 849 21 +759 850 21 +760 851 21 +761 852 21 +762 853 21 +763 854 21 +764 855 21 +765 856 21 +766 857 21 +767 858 21 +768 859 21 +769 860 21 +770 861 21 +771 862 21 +772 863 21 +773 864 21 +774 865 21 +775 866 21 +776 867 21 +777 868 21 +778 869 21 +779 870 21 +780 871 21 +781 872 21 +782 873 21 +783 874 21 +784 875 21 +785 876 21 +786 877 21 +787 878 21 +788 879 21 +789 880 21 +790 881 21 +791 882 21 +792 883 21 +793 884 21 +794 885 21 +795 886 21 +796 887 21 +797 888 21 +798 889 21 +799 890 21 +800 891 21 +801 892 21 +802 893 21 +803 894 21 +804 895 21 +805 896 21 +806 897 21 +807 898 21 +808 899 21 +809 900 21 +810 901 21 +811 902 21 +812 903 21 +813 904 21 +814 905 21 +815 906 21 +816 907 21 +817 908 21 +818 909 21 +819 910 21 +820 911 21 +821 912 21 +822 913 21 +823 914 21 +824 915 21 +825 916 21 +826 917 21 +827 918 21 +828 919 21 +829 920 21 +830 921 21 +831 922 21 +832 923 21 +833 924 21 +834 925 21 +835 926 21 +836 927 21 +837 928 21 +838 929 21 +839 930 21 +840 931 21 +841 932 21 +842 933 21 +843 934 21 +844 935 21 +845 936 21 +846 937 21 +847 938 21 +848 939 21 +849 940 21 +850 941 21 +851 942 21 +852 943 21 +853 944 21 +854 945 21 +855 946 21 +856 947 21 +857 948 21 +858 949 21 +859 950 21 +860 951 21 +861 952 21 +862 953 21 +863 954 21 +864 955 21 +865 956 21 +866 957 21 +867 958 21 +868 959 21 +869 1071 20 +870 1180 20 +871 1181 20 +872 1182 20 +873 1183 20 +874 1184 20 +875 1185 20 +876 1186 20 +877 1187 20 +878 1208 19 +879 1366 20 +880 1367 20 +881 1433 20 +882 1487 20 +883 1495 20 +884 1497 20 +886 1617 20 +887 1645 20 +888 1774 20 +889 1781 20 +890 1853 20 +891 1854 20 +892 1855 20 +893 1873 20 +894 1874 20 +895 1879 20 +896 1915 20 +897 1928 20 +898 1935 21 +899 2132 20 +\. + + +-- +-- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin; +1131 141 1 +1132 141 2 +1133 141 3 +1134 141 4 +1135 141 5 +1136 141 6 +1137 141 7 +1138 141 8 +1139 141 9 +1140 141 10 +1141 141 11 +1142 141 12 +1143 141 13 +1144 141 14 +1145 141 15 +1146 141 16 +1147 141 17 +1148 141 18 +1149 141 19 +1150 141 20 +1151 141 21 +1152 141 22 +1153 141 23 +1154 141 24 +1155 141 25 +1156 141 26 +1157 141 27 +1158 141 28 +1159 141 29 +1160 141 30 +1161 141 31 +1162 141 32 +1163 141 33 +1164 141 34 +1165 141 35 +1166 141 36 +1167 141 37 +1168 141 38 +1169 141 39 +1170 141 40 +1171 141 41 +1172 141 42 +1173 141 43 +1174 141 44 +1175 141 45 +1176 141 46 +1177 141 47 +1178 141 48 +1179 141 49 +1180 141 50 +1181 141 51 +1182 141 52 +1183 141 53 +1184 141 54 +1185 141 55 +1186 141 56 +1187 141 57 +1188 141 58 +1189 141 59 +1190 141 60 +1191 141 61 +1192 141 62 +1193 141 63 +1194 141 64 +1195 141 65 +1196 141 66 +1197 141 67 +1198 141 68 +1199 141 69 +1200 141 70 +1201 141 71 +1202 141 72 +1203 141 73 +1204 141 74 +1205 141 75 +1206 141 76 +1207 141 77 +1208 141 78 +1209 141 79 +1210 141 80 +1211 141 81 +1212 141 82 +1213 141 83 +1214 141 84 +1215 141 85 +1216 141 86 +1217 141 87 +1218 141 88 +1219 141 89 +1220 141 90 +1221 141 91 +1222 141 92 +1223 141 93 +1224 141 94 +1225 141 95 +1226 141 96 +1227 141 97 +1228 141 98 +1229 141 99 +1230 141 100 +1231 141 101 +1232 141 102 +1233 141 103 +1234 141 104 +1235 141 105 +1236 141 106 +1237 141 107 +1238 141 108 +1239 141 109 +1240 141 110 +1241 141 111 +1242 141 112 +1243 141 113 +1018 115 1 +1019 115 2 +1020 115 3 +1021 115 4 +1022 115 5 +1023 115 6 +1024 115 7 +1025 115 8 +1026 115 9 +1027 115 10 +1028 115 11 +1029 115 12 +1030 115 13 +1031 115 14 +1032 115 15 +1033 115 16 +1034 115 17 +1035 115 18 +1036 115 19 +1037 115 20 +1038 115 21 +1039 115 22 +1040 115 23 +1041 115 24 +1042 115 25 +1043 115 26 +1044 115 27 +1045 115 28 +1046 115 29 +1047 115 30 +1048 115 31 +1049 115 32 +1050 115 33 +1051 115 34 +1052 115 35 +1053 115 36 +1054 115 37 +1055 115 38 +1056 115 39 +1057 115 40 +1058 115 41 +1059 115 42 +1060 115 43 +1061 115 44 +1062 115 45 +1063 115 46 +1064 115 47 +1065 115 48 +1066 115 49 +1067 115 50 +1068 115 51 +1069 115 52 +1070 115 53 +1071 115 54 +1072 115 55 +1073 115 56 +1074 115 57 +1075 115 58 +1076 115 59 +1077 115 60 +1078 115 61 +1079 115 62 +1080 115 63 +1081 115 64 +1082 115 65 +1083 115 66 +1084 115 67 +1085 115 68 +1086 115 69 +1087 115 70 +1088 115 71 +1089 115 72 +1090 115 73 +1091 115 74 +1092 115 75 +1093 115 76 +1094 115 81 +1095 115 82 +1096 115 83 +1097 115 84 +1098 115 85 +1099 115 86 +1100 115 87 +1101 115 88 +1102 120 12 +1103 120 28 +1104 120 33 +1105 120 36 +1106 120 37 +1107 120 40 +1108 120 41 +1109 120 44 +1110 120 45 +1111 120 48 +1112 120 49 +1113 120 52 +1114 120 53 +1115 120 56 +1116 120 57 +1117 120 60 +1118 120 61 +1119 120 64 +1120 120 65 +1121 120 68 +1122 120 69 +1123 120 72 +1124 120 73 +1125 120 76 +1126 120 77 +1127 120 81 +1128 120 84 +1129 120 85 +1130 120 88 +1244 141 114 +1245 141 115 +1246 141 116 +1247 141 117 +1248 141 118 +1249 141 119 +1250 141 120 +1251 141 121 +1252 141 122 +1253 141 123 +1254 141 124 +1255 1208 160 +1256 1208 145 +1257 1208 150 +1258 1208 151 +1259 1208 152 +1260 1208 153 +1261 1208 154 +1262 1208 155 +1263 1208 156 +1264 1208 157 +1265 1208 158 +1266 1208 159 +\. + + +-- +-- Data for Name: authtoken_token; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.authtoken_token (key, created, user_id) FROM stdin; +\. + + +-- +-- Data for Name: common_apikey; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_apikey (id, key, name, created_at, is_active) FROM stdin; +1 118b1fcca089496919f0d82df2c4c89d35126793dfc3ea645366ae09d931f49f turnos 2025-04-15 21:11:43.522786+00 t +\. + + +-- +-- Data for Name: common_browserpushsubscription; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_browserpushsubscription (id, endpoint, p256dh, auth, browser, created_at, updated_at, user_id) FROM stdin; +\. + + +-- +-- Data for Name: common_campaign; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_campaign (id, created_at, updated_at, deleted, active, name, description, start_date, end_date, utm_source, utm_medium, utm_campaign, is_active, user_id) FROM stdin; +1 2025-09-19 14:14:45.371027+00 2025-09-19 14:14:45.371041+00 f t 120207081525230745 Campaña generada automáticamente con UTM: fb, paid \N \N fb paid 120207081525230745 t \N +2 2025-09-19 14:17:03.370845+00 2025-09-19 14:17:03.370855+00 f t Generica Campaña generada automáticamente con UTM: google, cpc \N \N google cpc Generica t \N +3 2025-09-19 14:19:24.323558+00 2025-09-19 14:19:24.323567+00 f t sin_nombre Campaña generada automáticamente con UTM: , \N \N sin_nombre t \N +4 2025-09-19 14:20:02.759604+00 2025-09-19 14:20:02.75962+00 f t ARG_ACQ_GO_MAX_CONVERSIONS_ALL_ALL_PROS_AO_NA_AMAR Campaña generada automáticamente con UTM: google, cpc \N \N google cpc ARG_ACQ_GO_MAX_CONVERSIONS_ALL_ALL_PROS_AO_NA_AMAR t \N +5 2025-09-19 15:25:24.502479+00 2025-09-19 15:25:24.502491+00 f t Nuevos 2024 Campaña generada automáticamente con UTM: facebook, cpc \N \N facebook cpc Nuevos 2024 t \N +6 2025-09-19 17:36:18.450972+00 2025-09-19 17:36:18.450982+00 f t Brand Campaña generada automáticamente con UTM: google, cpc \N \N google cpc Brand t \N +7 2025-09-19 18:00:11.872121+00 2025-09-19 18:00:11.872137+00 f t ARG_ACQ_FB_DISPLAY_LEADS_ALL_ALL_PROS_AO_NA_ADDTOCART Campaña generada automáticamente con UTM: facebook, cpc \N \N facebook cpc ARG_ACQ_FB_DISPLAY_LEADS_ALL_ALL_PROS_AO_NA_ADDTOCART t \N +8 2025-09-19 22:07:19.933692+00 2025-09-19 22:07:19.933702+00 f t GenerciaVet Campaña generada automáticamente con UTM: google, cpc \N \N google cpc GenerciaVet t \N +9 2025-09-21 03:23:49.728825+00 2025-09-21 03:23:49.728838+00 f t Vacunacion Campaña generada automáticamente con UTM: google, cpc \N \N google cpc Vacunacion t \N +10 2025-09-23 20:36:15.866706+00 2025-09-23 20:36:15.866716+00 f t {{campaign.name}} Campaña generada automáticamente con UTM: facebook, cpc \N \N facebook cpc {{campaign.name}} t \N +11 2025-10-28 15:26:38.429369+00 2025-10-28 15:26:38.42938+00 f t DDAmigo Campaña generada automáticamente con UTM: iman, QR \N \N iman QR DDAmigo t \N +12 2025-10-31 21:44:07.877069+00 2025-10-31 21:44:07.877078+00 f t Nuevos2024 Campaña generada automáticamente con UTM: facebook, cpc \N \N facebook cpc Nuevos2024 t \N +\. + + +-- +-- Data for Name: common_groupstudy; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_groupstudy (id, created_at, updated_at, deleted, active, name, user_id) FROM stdin; +\. + + +-- +-- Data for Name: common_individualturnfeegroup; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_individualturnfeegroup (id, created_at, updated_at, deleted, active, name, fee_percentage, user_id) FROM stdin; +2 2025-10-27 13:45:18+00 2025-10-27 13:45:18+00 f t Tarifa_8% 8.00 \N +3 2025-10-27 13:45:38+00 2025-10-27 13:45:38+00 f t Tarifa_onboarding_5% 5.00 \N +1 2025-10-27 12:46:02+00 2025-10-27 12:46:02+00 t f Bonificacion_2025 0.00 \N +\. + + +-- +-- Data for Name: common_individualturnfeegroupmembership; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_individualturnfeegroupmembership (id, group_id, veterinarian_id) FROM stdin; +1 1 68 +2 1 1 +\. + + +-- +-- Data for Name: common_locality; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_locality (id, created_at, updated_at, deleted, active, name, user_id, province_id) FROM stdin; +\. + + +-- +-- Data for Name: common_medication; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_medication (id, created_at, updated_at, deleted, active, name, company, description, pet_type, user_id, group_id, medication_type_id, presentation_id) FROM stdin; +1 2025-02-20 11:17:48.937539+00 2025-02-20 11:17:48.937548+00 f t ADVANTAGE G8 Pipeta antipulgas y garrapatas CAT \N 1 1 1 +2 2025-02-20 11:17:48.94336+00 2025-02-20 11:17:48.943368+00 f t ADVANTIX 10 CELESTE Pipeta antipulgas y garrapatas DOG \N 1 1 1 +3 2025-02-20 11:17:48.948367+00 2025-02-20 11:17:48.948374+00 f t ADVANTIX 25 ROJA Pipeta antipulgas y garrapatas DOG \N 1 1 1 +4 2025-02-20 11:17:48.953528+00 2025-02-20 11:17:48.953535+00 f t ADVANTIX 40 AZUL Pipeta antipulgas y garrapatas DOG \N 1 1 1 +5 2025-02-20 11:17:48.959657+00 2025-02-20 11:17:48.959665+00 f t ADVOCATE CANINO 04 10 KG (1.0ml) Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +6 2025-02-20 11:17:48.96458+00 2025-02-20 11:17:48.964588+00 f t ADVOCATE CANINO 10 25 KG (2.5ml) Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +7 2025-02-20 11:17:48.969437+00 2025-02-20 11:17:48.969446+00 f t ADVOCATE CANINO 25 40 KG (4.0ml) Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +8 2025-02-20 11:17:48.974433+00 2025-02-20 11:17:48.974441+00 f t ADVOCATE FELINO 00 04 KG (0.4ml) Pipeta antipulgas, garrapatas y parásitos internos CAT \N 2 1 1 +9 2025-02-20 11:17:48.979268+00 2025-02-20 11:17:48.979275+00 f t ADVOCATE FELINO 04 08 KG (0.8ml) Pipeta antipulgas, garrapatas y parásitos internos CAT \N 2 1 1 +10 2025-02-20 11:17:48.986184+00 2025-02-20 11:17:48.986191+00 f t ALBENDAZOL gotas x 20 ml RUMINAL Antiparasitario en gotas ALL \N 3 1 2 +11 2025-02-20 11:17:48.992212+00 2025-02-20 11:17:48.99222+00 f t ALBENDAZOL POTEN. x 50 comp. Vetanco Comprimido antiparasitario ALL \N 3 1 3 +12 2025-02-20 11:17:48.996985+00 2025-02-20 11:17:48.996992+00 f t ALBEX x 300 comp. (Alb.-Prazicuantel) (30 bl) Zoovet Comprimido antiparasitario ALL \N 3 1 3 +13 2025-02-20 11:17:49.001811+00 2025-02-20 11:17:49.001818+00 f t ANCYLOS GOTAS x 15 ml Lumai Antiparasitario en gotas ALL \N 3 1 2 +14 2025-02-20 11:17:49.007535+00 2025-02-20 11:17:49.007542+00 f t ANTIPARASITARIO INT. x 20 ml Paraqueños Paraqueños ALL \N 3 1 4 +15 2025-02-20 11:17:49.012257+00 2025-02-20 11:17:49.012265+00 f t APRAX 10 kg RAZAS MED. x 60 comp. Richmond Comprimido antiparasitario DOG \N 3 1 3 +16 2025-02-20 11:17:49.016887+00 2025-02-20 11:17:49.016894+00 f t APRAX 20 kg RAZAS GRANDE x 60 comp. Richmond Comprimido antiparasitario DOG \N 3 1 3 +17 2025-02-20 11:17:49.021509+00 2025-02-20 11:17:49.021517+00 f t APRAX ECTOPILLS 10 a 20 kg Comprimido antiparasitario DOG \N 1 1 3 +18 2025-02-20 11:17:49.026829+00 2025-02-20 11:17:49.026837+00 f t APRAX ECTOPILLS 2,5 a 10 kg Comprimido antiparasitario DOG \N 1 1 3 +19 2025-02-20 11:17:49.03156+00 2025-02-20 11:17:49.031568+00 f t APRAX ECTOPILLS 20 a 30 kg Comprimido antiparasitario DOG \N 1 1 3 +20 2025-02-20 11:17:49.036139+00 2025-02-20 11:17:49.036147+00 f t APRAX ECTOPILLS 30 a 50 kg Comprimido antiparasitario DOG \N 1 1 3 +21 2025-02-20 11:17:49.04146+00 2025-02-20 11:17:49.041467+00 f t APRAX SUSPENSION x 20 ml Richmond DOG \N 3 1 5 +22 2025-02-20 11:17:49.046054+00 2025-02-20 11:17:49.046061+00 f t APTO 3D 40 KG x 4 comp. Comprimido antiparasitario DOG \N 3 1 3 +23 2025-02-20 11:17:49.050566+00 2025-02-20 11:17:49.050574+00 f t APTO MAX 40 x 4 COMP Comprimido antiparasitario DOG \N 3 1 3 +24 2025-02-20 11:17:49.055179+00 2025-02-20 11:17:49.055188+00 f t APTO MAX SUSPENSION x 15 ml DOG \N 3 1 5 +25 2025-02-20 11:17:49.060805+00 2025-02-20 11:17:49.060812+00 f t APTO Polvo x 150 g Polvo antipulgas y garrapatas ALL \N 1 1 6 +26 2025-02-20 11:17:49.065643+00 2025-02-20 11:17:49.065651+00 f t APTO x 160 comp. Comprimido antiparasitario DOG \N 3 1 3 +27 2025-02-20 11:17:49.070303+00 2025-02-20 11:17:49.070311+00 f t APTO x 40 comp. Comprimido antiparasitario DOG \N 3 1 3 +28 2025-02-20 11:17:49.074916+00 2025-02-20 11:17:49.074924+00 f t ASCARICIDA GOTAS x 15 ml J.M. Antiparasitario en gotas ALL \N 3 1 2 +29 2025-02-20 11:17:49.079818+00 2025-02-20 11:17:49.079826+00 f t ASCARICIDA KUALCOS x 15 ml Antiparasitario en gotas ALL \N 3 1 2 +30 2025-02-20 11:17:49.084486+00 2025-02-20 11:17:49.084494+00 f t ATOMO LINDAVET x 50 g Imvi Polvo antipulgas y garrapatas ALL \N 1 1 6 +31 2025-02-20 11:17:49.089942+00 2025-02-20 11:17:49.089949+00 f t BACTROVET ORO AM x 250 ml Konig Solución antipulgas y garrapatas ALL \N 1 1 7 +32 2025-02-20 11:17:49.09439+00 2025-02-20 11:17:49.094397+00 f t BACTROVET ORO DUALTAP x 420 ml Konig Solución antipulgas y garrapatas ALL \N 1 1 7 +33 2025-02-20 11:17:49.09894+00 2025-02-20 11:17:49.098948+00 f t BACTROVET PLATA AM PET x 228 ml Konig Solución antipulgas y garrapatas ALL \N 1 1 7 +34 2025-02-20 11:17:49.103566+00 2025-02-20 11:17:49.103574+00 f t BACTROVET PLATA AM x 420 ml Konig Solución antipulgas y garrapatas ALL \N 1 1 7 +35 2025-02-20 11:17:49.108068+00 2025-02-20 11:17:49.108076+00 f t BACTROVET PLATA DUALTAP x 420 ml Konig Solución antipulgas y garrapatas ALL \N 1 1 7 +36 2025-02-20 11:17:49.113359+00 2025-02-20 11:17:49.113366+00 f t BACTROVET Plata PASTA x 455 g Konig Pasta antipulgas y garrapatas ALL \N 1 1 8 +37 2025-02-20 11:17:49.117922+00 2025-02-20 11:17:49.117929+00 f t BACTROVET POMO x 150 g Konig Pasta antipulgas y garrapatas ALL \N 1 1 8 +38 2025-02-20 11:17:49.122474+00 2025-02-20 11:17:49.122481+00 f t BASKEN 4 ACTIVE 10 KG x 4 comp. Konig Comprimido antiparasitario DOG \N 3 1 3 +39 2025-02-20 11:17:49.126987+00 2025-02-20 11:17:49.126995+00 f t BASKEN 4 ACTIVE 20 KG x 3 comp. Konig Comprimido antiparasitario DOG \N 3 1 3 +40 2025-02-20 11:17:49.132257+00 2025-02-20 11:17:49.132266+00 f t BASKEN 4 ACTIVE 40 KG x 4 comp. Konig Comprimido antiparasitario DOG \N 3 1 3 +41 2025-02-20 11:17:49.136943+00 2025-02-20 11:17:49.136951+00 f t BASKEN 4 ACTIVE 60 KG x 4 comp. Konig Comprimido antiparasitario DOG \N 3 1 3 +42 2025-02-20 11:17:49.141737+00 2025-02-20 11:17:49.141744+00 f t BASKEN PLUS 10 x 4 comp. (2.5kg) Konig Comprimido antiparasitario DOG \N 3 1 3 +43 2025-02-20 11:17:49.146435+00 2025-02-20 11:17:49.146442+00 f t BASKEN PLUS DOBLE 20 x 4 comp. Konig Comprimido antiparasitario DOG \N 3 1 3 +44 2025-02-20 11:17:49.151119+00 2025-02-20 11:17:49.151127+00 f t BASKEN PLUS DOBLE 40 x 4 comp. Konig Comprimido antiparasitario DOG \N 3 1 3 +45 2025-02-20 11:17:49.15594+00 2025-02-20 11:17:49.155948+00 f t BASKEN PLUS DOBLE 40 x 60 comp.HOSPITALARIO Konig Comprimido antiparasitario DOG \N 3 1 3 +46 2025-02-20 11:17:49.160609+00 2025-02-20 11:17:49.160617+00 f t BASKEN PLUS DOBLE 60 x 3 comp. Konig Comprimido antiparasitario DOG \N 3 1 3 +47 2025-02-20 11:17:49.165237+00 2025-02-20 11:17:49.165245+00 f t BASKEN PLUS DOBLE 60 x 60 comp.HOSPITALARIO Konig Comprimido antiparasitario DOG \N 3 1 3 +48 2025-02-20 11:17:49.16982+00 2025-02-20 11:17:49.169829+00 f t BASKEN PLUS GATOS x 4 comp. Konig Comprimido antiparasitario CAT \N 3 1 3 +49 2025-02-20 11:17:49.174404+00 2025-02-20 11:17:49.174411+00 f t BASKEN SUSP. x 15 ml Konig DOG \N 3 1 5 +50 2025-02-20 11:17:49.179528+00 2025-02-20 11:17:49.179536+00 f t BAYCOX x 1000 ml ALL \N 3 1 4 +51 2025-02-20 11:17:49.184195+00 2025-02-20 11:17:49.184204+00 f t BICHERON CURABICHERAS PLATA FORTE x 440 ml Paraqueños Solución antipulgas y garrapatas ALL \N 1 1 7 +52 2025-02-20 11:17:49.188847+00 2025-02-20 11:17:49.188855+00 f t BICHERON NF pulg.-garr. x 50 ml Paraqueños Solución antipulgas y garrapatas ALL \N 1 1 7 +516 2025-02-20 11:17:51.243713+00 2025-02-20 11:17:51.243719+00 f t ACEDERM x 20 ml Crema dermatológica ALL \N 4 2 20 +53 2025-02-20 11:17:49.19375+00 2025-02-20 11:17:49.193757+00 f t BLOCK FIPRO 04 a 10 S x 0.67ml JM Pipeta antipulgas y garrapatas DOG \N 1 1 1 +54 2025-02-20 11:17:49.198672+00 2025-02-20 11:17:49.198681+00 f t BLOCK FIPRO 10 a 20 M x 1.34ml JM Pipeta antipulgas y garrapatas DOG \N 1 1 1 +55 2025-02-20 11:17:49.203232+00 2025-02-20 11:17:49.20324+00 f t BLOCK FIPRO 20 a 40 L x 2.68ml JM Pipeta antipulgas y garrapatas DOG \N 1 1 1 +56 2025-02-20 11:17:49.20784+00 2025-02-20 11:17:49.207847+00 f t BLOCK FIPRO 40 a 60 XL x 4.02ml JM Pipeta antipulgas y garrapatas DOG \N 1 1 1 +57 2025-02-20 11:17:49.212447+00 2025-02-20 11:17:49.212455+00 f t BLOCK FIPRO GATOS x 0.5ml JM Pipeta antipulgas y garrapatas CAT \N 1 1 1 +58 2025-02-20 11:17:49.216974+00 2025-02-20 11:17:49.216982+00 f t BLOCK SPINO 10 a 20Kg M Comprimido antiparasitario DOG \N 1 1 3 +59 2025-02-20 11:17:49.221735+00 2025-02-20 11:17:49.221743+00 f t BLOCK SPINO 2.5 a 5Kg XS Comprimido antiparasitario CAT \N 1 1 3 +60 2025-02-20 11:17:49.226292+00 2025-02-20 11:17:49.226299+00 f t BLOCK SPINO 20 a 30Kg L Comprimido antiparasitario DOG \N 1 1 3 +61 2025-02-20 11:17:49.230883+00 2025-02-20 11:17:49.23089+00 f t BLOCK SPINO 30 a 40Kg XL Comprimido antiparasitario DOG \N 1 1 3 +62 2025-02-20 11:17:49.235509+00 2025-02-20 11:17:49.235517+00 f t BLOCK SPINO 5 a 10Kg S Comprimido antiparasitario DOG \N 1 1 3 +63 2025-02-20 11:17:49.240216+00 2025-02-20 11:17:49.240224+00 f t BOVICINE I x 50 cc (Ivermectina) Richmond ALL \N 3 1 4 +64 2025-02-20 11:17:49.244946+00 2025-02-20 11:17:49.244954+00 f t BRAVECTO 02 a 04.5 KG MSD Intervet Comprimido antiparasitario DOG \N 1 1 3 +65 2025-02-20 11:17:49.249513+00 2025-02-20 11:17:49.24952+00 f t BRAVECTO 04 a 10 KG MSD Intervet Comprimido antiparasitario DOG \N 1 1 3 +66 2025-02-20 11:17:49.254096+00 2025-02-20 11:17:49.254104+00 f t BRAVECTO 10 a 20 KG MSD Intervet Comprimido antiparasitario DOG \N 1 1 3 +67 2025-02-20 11:17:49.258619+00 2025-02-20 11:17:49.258628+00 f t BRAVECTO 20 a 40 KG MSD Intervet Comprimido antiparasitario DOG \N 1 1 3 +68 2025-02-20 11:17:49.263264+00 2025-02-20 11:17:49.263272+00 f t BRAVECTO 40 a 56 KG MSD Intervet Comprimido antiparasitario DOG \N 1 1 3 +69 2025-02-20 11:17:49.267806+00 2025-02-20 11:17:49.267814+00 f t BRAVECTO SPOT ON CHICO h2.8kg MSD Intervet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +70 2025-02-20 11:17:49.272441+00 2025-02-20 11:17:49.272449+00 f t BRAVECTO SPOT ON GRANDE hkg MSD Intervet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +71 2025-02-20 11:17:49.27713+00 2025-02-20 11:17:49.277139+00 f t BRAVECTO SPOT ON MEDIANO h6.25kg MSD Intervet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +72 2025-02-20 11:17:49.282795+00 2025-02-20 11:17:49.282803+00 f t CANIS ENDO SPOT 00 a 04 KG Labyes DOG \N 3 1 9 +73 2025-02-20 11:17:49.287502+00 2025-02-20 11:17:49.28751+00 f t CANIS ENDO SPOT 05 a 10 KG Labyes DOG \N 3 1 9 +74 2025-02-20 11:17:49.292218+00 2025-02-20 11:17:49.292226+00 f t CANIS ENDO SPOT 11 a 25 KG Labyes DOG \N 3 1 9 +75 2025-02-20 11:17:49.296862+00 2025-02-20 11:17:49.296871+00 f t CANIS ENDO SPOT 26 a 40 KG Labyes DOG \N 3 1 9 +76 2025-02-20 11:17:49.301536+00 2025-02-20 11:17:49.301544+00 f t CANIS ENDO SPOT 41 a 60 KG Labyes DOG \N 3 1 9 +77 2025-02-20 11:17:49.306134+00 2025-02-20 11:17:49.306143+00 f t CANIS FULL SPOT 00 a 04 KG Labyes Labyes Pipeta antipulgas y garrapatas DOG \N 2 1 1 +78 2025-02-20 11:17:49.310675+00 2025-02-20 11:17:49.310683+00 f t CANIS FULL SPOT 05 a 10 KG Labyes Labyes Pipeta antipulgas y garrapatas DOG \N 2 1 1 +79 2025-02-20 11:17:49.31529+00 2025-02-20 11:17:49.315299+00 f t CANIS FULL SPOT 11 a 25 KG Labyes Labyes Pipeta antipulgas y garrapatas DOG \N 2 1 1 +80 2025-02-20 11:17:49.319965+00 2025-02-20 11:17:49.319974+00 f t CANIS FULL SPOT 26 a 40 KG Labyes Labyes Pipeta antipulgas y garrapatas DOG \N 2 1 1 +81 2025-02-20 11:17:49.324692+00 2025-02-20 11:17:49.324699+00 f t CANIS FULL SPOT 41 a 60 KG Labyes Labyes Pipeta antipulgas y garrapatas DOG \N 2 1 1 +82 2025-02-20 11:17:49.330256+00 2025-02-20 11:17:49.330263+00 f t CESTODAN INY. INDOLORO x 10 cc Konig Inyectable antiparasitario ALL \N 3 1 10 +83 2025-02-20 11:17:49.335161+00 2025-02-20 11:17:49.33517+00 f t CESTODAN x 4 comp. Konig Comprimidos antiparasitarios (20Kg) DOG \N 3 1 3 +84 2025-02-20 11:17:49.340727+00 2025-02-20 11:17:49.340735+00 f t COLLAR ECTHOL GATOS Holliday Collar antipulgas y garrapatas CAT \N 1 1 11 +85 2025-02-20 11:17:49.345558+00 2025-02-20 11:17:49.345566+00 f t COLLAR ECTHOL PERROS CHICO 40 cm Holliday Collar antipulgas y garrapatas DOG \N 1 1 11 +86 2025-02-20 11:17:49.350068+00 2025-02-20 11:17:49.350075+00 f t COLLAR ECTHOL PERROS MED. y GRANDE Holliday Collar antipulgas y garrapatas DOG \N 1 1 11 +87 2025-02-20 11:17:49.354514+00 2025-02-20 11:17:49.354521+00 f t COLOMBO COCCIDIOL C/ELECTR x 100 Ruminal Anticoccidial con electrolitos ALL \N 3 1 5 +88 2025-02-20 11:17:49.359167+00 2025-02-20 11:17:49.359175+00 f t COMFORTIS 02 a 04 KG Comprimido antiparasitario DOG \N 1 1 3 +89 2025-02-20 11:17:49.363865+00 2025-02-20 11:17:49.363873+00 f t COMFORTIS 04 a 09 KG Comprimido antiparasitario DOG \N 1 1 3 +90 2025-02-20 11:17:49.368486+00 2025-02-20 11:17:49.368494+00 f t COMFORTIS 09 a 18 KG Comprimido antiparasitario DOG \N 1 1 3 +91 2025-02-20 11:17:49.373093+00 2025-02-20 11:17:49.3731+00 f t COMFORTIS 18 a 27 KG Comprimido antiparasitario DOG \N 1 1 3 +92 2025-02-20 11:17:49.37761+00 2025-02-20 11:17:49.377618+00 f t COMFORTIS 27 a 54 KG Comprimido antiparasitario DOG \N 1 1 3 +93 2025-02-20 11:17:49.382159+00 2025-02-20 11:17:49.382166+00 f t CREDELIO 112 mg Comprimido antiparasitario DOG \N 1 1 3 +94 2025-02-20 11:17:49.386593+00 2025-02-20 11:17:49.386601+00 f t CREDELIO 225 mg Comprimido antiparasitario DOG \N 1 1 3 +95 2025-02-20 11:17:49.391315+00 2025-02-20 11:17:49.391323+00 f t CREDELIO 450 mg Comprimido antiparasitario DOG \N 1 1 3 +96 2025-02-20 11:17:49.396126+00 2025-02-20 11:17:49.396134+00 f t CREDELIO 56 mg Comprimido antiparasitario DOG \N 1 1 3 +97 2025-02-20 11:17:49.400623+00 2025-02-20 11:17:49.400631+00 f t CREDELIO 900 mg Comprimido antiparasitario DOG \N 1 1 3 +98 2025-02-20 11:17:49.405099+00 2025-02-20 11:17:49.405107+00 f t CREDELIO X 3 112 mg Comprimido antiparasitario DOG \N 1 1 3 +99 2025-02-20 11:17:49.410029+00 2025-02-20 11:17:49.410036+00 f t CREDELIO X 3 225 mg Comprimido antiparasitario DOG \N 1 1 3 +100 2025-02-20 11:17:49.414691+00 2025-02-20 11:17:49.414698+00 f t CREDELIO X 3 450 mg Comprimido antiparasitario DOG \N 1 1 3 +101 2025-02-20 11:17:49.419258+00 2025-02-20 11:17:49.419267+00 f t CREDELIO X 3 56 mg Comprimido antiparasitario DOG \N 1 1 3 +102 2025-02-20 11:17:49.423929+00 2025-02-20 11:17:49.423937+00 f t CREDELIO X 3 900 mg Comprimido antiparasitario DOG \N 1 1 3 +103 2025-02-20 11:17:49.428541+00 2025-02-20 11:17:49.428549+00 f t CURABICHERA PLATA NORT x 480 cc Nort Solución antipulgas y garrapatas ALL \N 1 1 7 +104 2025-02-20 11:17:49.433313+00 2025-02-20 11:17:49.433321+00 f t CURABICHERA PLATA PAUL x 440 cc Solución antipulgas y garrapatas ALL \N 1 1 7 +105 2025-02-20 11:17:49.437976+00 2025-02-20 11:17:49.437984+00 f t DECTOMAX x 50 cc Zoetis Endectocida inyectable ALL \N 2 1 10 +106 2025-02-20 11:17:49.442586+00 2025-02-20 11:17:49.442593+00 f t DECTOMAX x 500 cc Zoetis Endectocida inyectable ALL \N 2 1 10 +107 2025-02-20 11:17:49.447157+00 2025-02-20 11:17:49.447165+00 f t DERMOKIL PIPETA Fipronil 00 a 10 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +108 2025-02-20 11:17:49.451823+00 2025-02-20 11:17:49.451831+00 f t DERMOKIL PIPETA Fipronil 10 a 20 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +109 2025-02-20 11:17:49.456464+00 2025-02-20 11:17:49.456472+00 f t DERMOKIL PIPETA Fipronil 20 a 40 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +110 2025-02-20 11:17:49.460981+00 2025-02-20 11:17:49.460989+00 f t DERMOKIL PIPETA Fipronil 40 a 60 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +111 2025-02-20 11:17:49.46553+00 2025-02-20 11:17:49.465537+00 f t DERMOKIL PIPETA Fipronil Gatos Pipeta antipulgas y garrapatas CAT \N 1 1 1 +112 2025-02-20 11:17:49.470017+00 2025-02-20 11:17:49.470025+00 f t DERRAMIN POUR-ON x 1 Lt Brouwer Solución antipulgas y garrapatas ALL \N 1 1 7 +113 2025-02-20 11:17:49.474561+00 2025-02-20 11:17:49.474568+00 f t DESPARASIT x 100 comp. Aton Comprimidos antiparasitarios DOG \N 3 1 3 +114 2025-02-20 11:17:49.479203+00 2025-02-20 11:17:49.479211+00 f t DESPARASIT x 4 comp. Aton Comprimidos antiparasitarios DOG \N 3 1 3 +115 2025-02-20 11:17:49.4839+00 2025-02-20 11:17:49.483908+00 f t DESPARASIT x 8 comp. Aton Comprimidos antiparasitarios DOG \N 3 1 3 +116 2025-02-20 11:17:49.488553+00 2025-02-20 11:17:49.488561+00 f t DKL5 Pasta POMO x 100 g Von Franken Pasta antipulgas y garrapatas ALL \N 1 1 8 +117 2025-02-20 11:17:49.493233+00 2025-02-20 11:17:49.49324+00 f t DKL5 PLATA x 440 ml Von Franken Solución antipulgas y garrapatas ALL \N 1 1 7 +118 2025-02-20 11:17:49.497768+00 2025-02-20 11:17:49.497775+00 f t DOMINAL MAX GATO HASTA 4 KG Konig Pipeta antipulgas y garrapatas CAT \N 1 1 1 +119 2025-02-20 11:17:49.502298+00 2025-02-20 11:17:49.502306+00 f t DOMINAL MAX GATO MAS DE 4 KG Konig Pipeta antipulgas y garrapatas CAT \N 1 1 1 +120 2025-02-20 11:17:49.50694+00 2025-02-20 11:17:49.506948+00 f t DOMINAL MAX PERRO 00 a 05 KG Konig Pipeta antipulgas y garrapatas DOG \N 1 1 1 +121 2025-02-20 11:17:49.511471+00 2025-02-20 11:17:49.511479+00 f t DOMINAL MAX PERRO 05 a 10 KG Konig Pipeta antipulgas y garrapatas DOG \N 1 1 1 +122 2025-02-20 11:17:49.516046+00 2025-02-20 11:17:49.516054+00 f t DOMINAL MAX PERRO 10 a 25 KG Konig Pipeta antipulgas y garrapatas DOG \N 1 1 1 +123 2025-02-20 11:17:49.520724+00 2025-02-20 11:17:49.520732+00 f t DOMINAL MAX PERRO 25 a 40 KG Konig Pipeta antipulgas y garrapatas DOG \N 1 1 1 +124 2025-02-20 11:17:49.525395+00 2025-02-20 11:17:49.525403+00 f t DOMINAL MAX PERRO 40 a 60 KG Konig Pipeta antipulgas y garrapatas DOG \N 1 1 1 +125 2025-02-20 11:17:49.531283+00 2025-02-20 11:17:49.531306+00 f t DOMINAL SHAMPOO x 250 ml Konig Shampoo antipulgas y garrapatas ALL \N 1 1 12 +126 2025-02-20 11:17:49.537228+00 2025-02-20 11:17:49.537235+00 f t DOMINAL SPRAY x 100 cc Konig Spray antipulgas y garrapatas ALL \N 1 1 13 +127 2025-02-20 11:17:49.542018+00 2025-02-20 11:17:49.542026+00 f t DOMINAL SPRAY x 250 cc Konig Spray antipulgas y garrapatas ALL \N 1 1 13 +128 2025-02-20 11:17:49.546749+00 2025-02-20 11:17:49.546756+00 f t DRONTAL GATOS x 2 comp. - Comprimidos antiparasitarios para gatos CAT \N 3 1 3 +129 2025-02-20 11:17:49.551946+00 2025-02-20 11:17:49.551954+00 f t DRONTAL PLUS 35 KG x 1 comp. - Comprimidos antiparasitarios para perros grandes DOG \N 3 1 3 +130 2025-02-20 11:17:49.556781+00 2025-02-20 11:17:49.556788+00 f t DRONTAL PLUS x 2 comp. - Comprimidos antiparasitarios DOG \N 3 1 3 +131 2025-02-20 11:17:49.561334+00 2025-02-20 11:17:49.561341+00 f t ECTHOL 5 AP x 120 ml Solución antipulgas y garrapatas ALL \N 1 1 7 +132 2025-02-20 11:17:49.566032+00 2025-02-20 11:17:49.56604+00 f t ECTHOL 5 AP x 70 ml Solución antipulgas y garrapatas ALL \N 1 1 7 +133 2025-02-20 11:17:49.570735+00 2025-02-20 11:17:49.570743+00 f t ECTHOL AMBIENTAL PERROS x 100 ml Solución antipulgas y garrapatas DOG \N 1 1 7 +134 2025-02-20 11:17:49.57541+00 2025-02-20 11:17:49.575417+00 f t ECTHOL AMBIENTAL PERROS x 1000 ml Solución antipulgas y garrapatas DOG \N 1 1 7 +135 2025-02-20 11:17:49.580131+00 2025-02-20 11:17:49.580139+00 f t ECTHOL GMP 00 a 05 ROSA Holliday Holliday Pipeta antipulgas y garrapatas DOG \N 1 1 1 +136 2025-02-20 11:17:49.584897+00 2025-02-20 11:17:49.584905+00 f t ECTHOL GMP 05 a 10 FUCSIA Holliday Holliday Pipeta antipulgas y garrapatas DOG \N 1 1 1 +137 2025-02-20 11:17:49.58951+00 2025-02-20 11:17:49.589518+00 f t ECTHOL GMP 10 a 20 VIOLETA Holliday Holliday Pipeta antipulgas y garrapatas DOG \N 1 1 1 +138 2025-02-20 11:17:49.593982+00 2025-02-20 11:17:49.59399+00 f t ECTHOL GMP 20 a 40 VERDE Holliday Holliday Pipeta antipulgas y garrapatas DOG \N 1 1 1 +139 2025-02-20 11:17:49.598532+00 2025-02-20 11:17:49.59854+00 f t ECTHOL GMP 40 a 60 AZUL Holliday Holliday Pipeta antipulgas y garrapatas DOG \N 1 1 1 +140 2025-02-20 11:17:49.603104+00 2025-02-20 11:17:49.603112+00 f t ECTHOL GMP GATOS 00 a 05 AMARILLO Holliday Holliday Pipeta antipulgas y garrapatas CAT \N 1 1 1 +141 2025-02-20 11:17:49.607743+00 2025-02-20 11:17:49.607751+00 f t ECTHOL GMP GATOS 05 a 10 ROJO Holliday Holliday Pipeta antipulgas y garrapatas CAT \N 1 1 1 +142 2025-02-20 11:17:49.612383+00 2025-02-20 11:17:49.61239+00 f t ECTHOL HALO CHICO 40 cm -10 kg COLLAR Holliday Holliday Collar antipulgas y garrapatas DOG \N 1 1 11 +143 2025-02-20 11:17:49.617096+00 2025-02-20 11:17:49.617104+00 f t ECTHOL HALO GRANDE 65 cm +10 kg COLLAR Holliday Holliday Collar antipulgas y garrapatas DOG \N 1 1 11 +144 2025-02-20 11:17:49.622153+00 2025-02-20 11:17:49.622161+00 f t ECTHONIL GATOS 02-04 KG AMARILLO Holliday Holliday Pipeta antipulgas y garrapatas CAT \N 1 1 1 +145 2025-02-20 11:17:49.626985+00 2025-02-20 11:17:49.626993+00 f t ECTHONIL GATOS 04-07 KG NARANJA Holliday Holliday Pipeta antipulgas y garrapatas CAT \N 1 1 1 +146 2025-02-20 11:17:49.631759+00 2025-02-20 11:17:49.631769+00 f t ECTHONIL PERROS 02-05 KG ROSA Holliday Holliday Pipeta antipulgas y garrapatas DOG \N 1 1 1 +147 2025-02-20 11:17:49.636678+00 2025-02-20 11:17:49.636686+00 f t ECTHONIL PERROS 06-10 KG ROJO Holliday Holliday Pipeta antipulgas y garrapatas DOG \N 1 1 1 +148 2025-02-20 11:17:49.641325+00 2025-02-20 11:17:49.641332+00 f t ECTHONIL PERROS 11-15 KG VIOLETA Holliday Holliday Pipeta antipulgas y garrapatas DOG \N 1 1 1 +149 2025-02-20 11:17:49.646171+00 2025-02-20 11:17:49.646179+00 f t ECTHONIL PERROS 16-25 KG VERDE Holliday Holliday Pipeta antipulgas y garrapatas DOG \N 1 1 1 +150 2025-02-20 11:17:49.650757+00 2025-02-20 11:17:49.650765+00 f t ECTHONIL PERROS 26-35 KG CELESTE Holliday Holliday Pipeta antipulgas y garrapatas DOG \N 1 1 1 +151 2025-02-20 11:17:49.65542+00 2025-02-20 11:17:49.655429+00 f t ECTHONIL PERROS 35-50 KG TURQUESA Holliday Holliday Pipeta antipulgas y garrapatas DOG \N 1 1 1 +152 2025-02-20 11:17:49.660019+00 2025-02-20 11:17:49.660027+00 f t ECTOCAN 100 ml. Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +153 2025-02-20 11:17:49.664596+00 2025-02-20 11:17:49.664603+00 f t ECTOFIN x 100 ml Von Franken Pipeta antipulgas y garrapatas DOG \N 1 1 1 +154 2025-02-20 11:17:49.66911+00 2025-02-20 11:17:49.669117+00 f t ENDECTOCIDA 6 blister x 10 comp. Holliday Comprimidos antiparasitarios DOG \N 3 1 3 +155 2025-02-20 11:17:49.673649+00 2025-02-20 11:17:49.673656+00 f t ENDOFOUR 100 x 5 comp. (1bl.) 20kg/comp. Triton Comprimidos antiparasitarios para perros de 20kg DOG \N 3 1 3 +156 2025-02-20 11:17:49.678294+00 2025-02-20 11:17:49.678312+00 f t ENDOFOUR 100 x 50 comp. (10bls.) 20kg/comp. Triton Comprimidos antiparasitarios para perros de 20kg DOG \N 3 1 3 +157 2025-02-20 11:17:49.682892+00 2025-02-20 11:17:49.6829+00 f t ENDOFOUR 40 x 4 comp. (1bl.) 10kg/comp. Triton Comprimidos antiparasitarios para perros de 10kg DOG \N 3 1 3 +158 2025-02-20 11:17:49.687601+00 2025-02-20 11:17:49.687608+00 f t ENDOFOUR 40 x 40 comp. (10bls.) 10kg/comp. Triton Comprimidos antiparasitarios para perros de 10kg DOG \N 3 1 3 +159 2025-02-20 11:17:49.692323+00 2025-02-20 11:17:49.692331+00 f t ENDOGARD Clinic 10 Palatable 24 X 10 KG Virbac Comprimidos palatables antiparasitarios para perros DOG \N 3 1 3 +160 2025-02-20 11:17:49.696871+00 2025-02-20 11:17:49.696878+00 f t ENDOGARD Clinic 30 Palatable 24 X 30 KG Virbac Comprimidos palatables antiparasitarios para perros DOG \N 3 1 3 +161 2025-02-20 11:17:49.701318+00 2025-02-20 11:17:49.701326+00 f t ENDORAL FULL x 40 comp. Von Franken Comprimidos antiparasitarios DOG \N 3 1 3 +162 2025-02-20 11:17:49.705827+00 2025-02-20 11:17:49.705835+00 f t EQUALAN JGA. x 20 unidades (IVERMECTINA) Endectocida inyectable ALL \N 2 1 10 +163 2025-02-20 11:17:49.710347+00 2025-02-20 11:17:49.710357+00 f t ESENCIAL SH. PUL-GAR x 2000 ml Shampoo antipulgas y garrapatas ALL \N 1 1 12 +164 2025-02-20 11:17:49.715052+00 2025-02-20 11:17:49.71506+00 f t ESENCIAL SH. PUL-GAR x 260 ml Shampoo antipulgas y garrapatas ALL \N 1 1 12 +165 2025-02-20 11:17:49.719801+00 2025-02-20 11:17:49.719809+00 f t ESENCIAL SH. PUL-GAR x 40 ml Shampoo antipulgas y garrapatas ALL \N 1 1 12 +166 2025-02-20 11:17:49.724384+00 2025-02-20 11:17:49.724392+00 f t ESENCIAL SH. PUL-GAR x 5000 ml Shampoo antipulgas y garrapatas ALL \N 1 1 12 +167 2025-02-20 11:17:49.729104+00 2025-02-20 11:17:49.729112+00 f t FELINE ENDO SPOT 00 a 02 KG Spot-on antiparasitario para gatos pequeños CAT \N 3 1 1 +168 2025-02-20 11:17:49.734154+00 2025-02-20 11:17:49.734162+00 f t FELINE ENDO SPOT 02 a 05 KG Spot-on antiparasitario para gatos medianos CAT \N 3 1 1 +169 2025-02-20 11:17:49.738712+00 2025-02-20 11:17:49.73872+00 f t FELINE ENDO SPOT 05 a 08 KG Spot-on antiparasitario para gatos grandes CAT \N 3 1 1 +170 2025-02-20 11:17:49.743296+00 2025-02-20 11:17:49.743304+00 f t FELINE FULL SPOT 00 a 02 KG Pipeta antipulgas y garrapatas CAT \N 2 1 1 +171 2025-02-20 11:17:49.747947+00 2025-02-20 11:17:49.747955+00 f t FELINE FULL SPOT 02 a 05 KG Pipeta antipulgas y garrapatas CAT \N 2 1 1 +172 2025-02-20 11:17:49.752698+00 2025-02-20 11:17:49.752707+00 f t FELINE FULL SPOT 05 a 08 KG Pipeta antipulgas y garrapatas CAT \N 2 1 1 +173 2025-02-20 11:17:49.757451+00 2025-02-20 11:17:49.757459+00 f t FENTEL MAX 10 KG x 30 comp. (10bl) Palatable Kualcos Comprimidos palatables antiparasitarios para perros DOG \N 3 1 3 +174 2025-02-20 11:17:49.762127+00 2025-02-20 11:17:49.762135+00 f t FENTEL MAX 20 KG x 30 comp. (10bl) Palatable Kualcos Comprimidos palatables antiparasitarios para perros DOG \N 3 1 3 +175 2025-02-20 11:17:49.766853+00 2025-02-20 11:17:49.76686+00 f t FENTEL MAX 5 KG x 30 comp. (10bl) Palatable Kualcos Comprimidos palatables antiparasitarios para perros DOG \N 3 1 3 +176 2025-02-20 11:17:49.771458+00 2025-02-20 11:17:49.771465+00 f t FENTEL MAX SUSP. x 100 ml Kualcos Suspensión antiparasitaria ALL \N 3 1 5 +177 2025-02-20 11:17:49.77605+00 2025-02-20 11:17:49.776057+00 f t FENTEL MAX SUSP. x 20 ml Kualcos Suspensión antiparasitaria ALL \N 3 1 5 +178 2025-02-20 11:17:49.780675+00 2025-02-20 11:17:49.780682+00 f t FEQUANTEL x 200 comp. Paraqueños Comprimidos antiparasitarios DOG \N 3 1 3 +179 2025-02-20 11:17:49.785227+00 2025-02-20 11:17:49.785235+00 f t FIDER POINT 02-10 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +180 2025-02-20 11:17:49.789943+00 2025-02-20 11:17:49.789951+00 f t FIDER POINT 11-20 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +181 2025-02-20 11:17:49.795027+00 2025-02-20 11:17:49.795034+00 f t FIDER POINT 21-40 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +182 2025-02-20 11:17:49.800069+00 2025-02-20 11:17:49.800077+00 f t FIDER POINT 41-60 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +183 2025-02-20 11:17:49.804802+00 2025-02-20 11:17:49.80481+00 f t FIPRO 01 a 10 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +184 2025-02-20 11:17:49.80992+00 2025-02-20 11:17:49.809929+00 f t FIPRO 10 a 20 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +185 2025-02-20 11:17:49.814858+00 2025-02-20 11:17:49.814867+00 f t FIPRO 20 a 40 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +186 2025-02-20 11:17:49.819483+00 2025-02-20 11:17:49.819491+00 f t FIPRO 40 a 60 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +187 2025-02-20 11:17:49.824119+00 2025-02-20 11:17:49.824128+00 f t FIPRO GATO Labyes Pipeta antipulgas y garrapatas CAT \N 1 1 1 +188 2025-02-20 11:17:49.82875+00 2025-02-20 11:17:49.828758+00 f t FIT F 00 a 04 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +189 2025-02-20 11:17:49.833459+00 2025-02-20 11:17:49.833467+00 f t FIT F 04 a 10 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +190 2025-02-20 11:17:49.838251+00 2025-02-20 11:17:49.838259+00 f t FIT F 10 a 25 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +191 2025-02-20 11:17:49.84295+00 2025-02-20 11:17:49.842958+00 f t FIT F 25 a 40 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +192 2025-02-20 11:17:49.847727+00 2025-02-20 11:17:49.847735+00 f t FIT F 40 a 60 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +193 2025-02-20 11:17:49.852421+00 2025-02-20 11:17:49.852428+00 f t FIT GATOS Spot ON Pipeta antipulgas y garrapatas CAT \N 1 1 1 +194 2025-02-20 11:17:49.857044+00 2025-02-20 11:17:49.857052+00 f t FIT SOLUCION x 120 ml Solución antipulgas y garrapatas ALL \N 1 1 7 +195 2025-02-20 11:17:49.861521+00 2025-02-20 11:17:49.861528+00 f t FIT UP 04 a 10 kg Afford Pipeta antipulgas y garrapatas DOG \N 1 1 1 +196 2025-02-20 11:17:49.866165+00 2025-02-20 11:17:49.866172+00 f t FIT UP 10 a 20 kg Afford Pipeta antipulgas y garrapatas DOG \N 1 1 1 +197 2025-02-20 11:17:49.870678+00 2025-02-20 11:17:49.870686+00 f t FIT UP 20 a 40 kg Afford Pipeta antipulgas y garrapatas DOG \N 1 1 1 +198 2025-02-20 11:17:49.875288+00 2025-02-20 11:17:49.875295+00 f t FIT UP 40 a 60 kg Afford Pipeta antipulgas y garrapatas DOG \N 1 1 1 +199 2025-02-20 11:17:49.880104+00 2025-02-20 11:17:49.880111+00 f t FIT UP GATOS Afford Pipeta antipulgas y garrapatas CAT \N 1 1 1 +200 2025-02-20 11:17:49.884633+00 2025-02-20 11:17:49.884641+00 f t FLEANET AG x 440 ml Richmond Spray antipulgas y garrapatas ALL \N 1 1 13 +201 2025-02-20 11:17:49.889135+00 2025-02-20 11:17:49.889142+00 f t FLEANET CAT x 5 Richmond Pipeta antipulgas y garrapatas CAT \N 1 1 1 +202 2025-02-20 11:17:49.893777+00 2025-02-20 11:17:49.893785+00 f t FLEANET DOG 02 a 10 x 3 Richmond Pipeta antipulgas y garrapatas DOG \N 1 1 1 +203 2025-02-20 11:17:49.898337+00 2025-02-20 11:17:49.898344+00 f t FLEANET DOG 11 a 20 x 3 Richmond Pipeta antipulgas y garrapatas DOG \N 1 1 1 +204 2025-02-20 11:17:49.902913+00 2025-02-20 11:17:49.902921+00 f t FLEANET DOG 21 a 40 x 3 Richmond Pipeta antipulgas y garrapatas DOG \N 1 1 1 +205 2025-02-20 11:17:49.90747+00 2025-02-20 11:17:49.907477+00 f t FLEANET DOG 41 a 60 x 3 Richmond Pipeta antipulgas y garrapatas DOG \N 1 1 1 +206 2025-02-20 11:17:49.912065+00 2025-02-20 11:17:49.912074+00 f t FLEE SPRAY x 400 ml Ambiental Spray antipulgas y garrapatas ALL \N 1 1 13 +207 2025-02-20 11:17:49.916764+00 2025-02-20 11:17:49.916772+00 f t Frontline PLUS 00 a 10 kg VERDE Pipeta antipulgas y garrapatas DOG \N 1 1 1 +208 2025-02-20 11:17:49.921652+00 2025-02-20 11:17:49.92166+00 f t Frontline PLUS 10 a 20 kg VERDE Pipeta antipulgas y garrapatas DOG \N 1 1 1 +209 2025-02-20 11:17:49.926545+00 2025-02-20 11:17:49.926553+00 f t Frontline PLUS 20 a 40 kg VERDE Pipeta antipulgas y garrapatas DOG \N 1 1 1 +210 2025-02-20 11:17:49.931181+00 2025-02-20 11:17:49.93119+00 f t Frontline PLUS 40 a 60 kg VERDE Pipeta antipulgas y garrapatas DOG \N 1 1 1 +211 2025-02-20 11:17:49.936208+00 2025-02-20 11:17:49.936215+00 f t Frontline PLUS GATO VERDE Pipeta antipulgas y garrapatas CAT \N 1 1 1 +212 2025-02-20 11:17:49.940973+00 2025-02-20 11:17:49.940981+00 f t Frontline SPOT ON 10 a 20 kg AZUL Pipeta antipulgas y garrapatas DOG \N 1 1 1 +213 2025-02-20 11:17:49.945637+00 2025-02-20 11:17:49.945645+00 f t Frontline SPOT ON 20 a 40 kg AZUL Pipeta antipulgas y garrapatas DOG \N 1 1 1 +214 2025-02-20 11:17:49.950449+00 2025-02-20 11:17:49.950457+00 f t Frontline SPOT ON GATO AZUL Pipeta antipulgas y garrapatas CAT \N 1 1 1 +215 2025-02-20 11:17:49.955205+00 2025-02-20 11:17:49.955213+00 f t Frontline SPRAY x 100 ml Spray antipulgas y garrapatas ALL \N 1 1 13 +216 2025-02-20 11:17:49.960098+00 2025-02-20 11:17:49.960106+00 f t Frontline SPRAY x 250 ml Spray antipulgas y garrapatas ALL \N 1 1 13 +217 2025-02-20 11:17:49.965513+00 2025-02-20 11:17:49.965521+00 f t FUMIGATOR FOGGER x 410 cc Aerosol antipulgas y garrapatas ALL \N 1 1 14 +218 2025-02-20 11:17:49.970298+00 2025-02-20 11:17:49.970305+00 f t GALMETRIN PLUS SPRAY x 440 cc Biogenesis Spray antipulgas y garrapatas ALL \N 1 1 13 +219 2025-02-20 11:17:49.974975+00 2025-02-20 11:17:49.974982+00 f t GETS Palatable 01 a 2.7 Kg IDV Comprimido antiparasitario DOG \N 1 1 3 +220 2025-02-20 11:17:49.979517+00 2025-02-20 11:17:49.979524+00 f t GETS Palatable 02 a 05 KG IDV Comprimido antiparasitario CAT \N 1 1 3 +221 2025-02-20 11:17:49.984163+00 2025-02-20 11:17:49.984171+00 f t GETS Palatable 05 a 10 KG IDV Comprimido antiparasitario CAT \N 1 1 3 +222 2025-02-20 11:17:49.988676+00 2025-02-20 11:17:49.988685+00 f t GETS Palatable 10 a 21 KG IDV Comprimido antiparasitario CAT \N 1 1 3 +223 2025-02-20 11:17:49.993228+00 2025-02-20 11:17:49.993236+00 f t GETS Palatable 21 a 42 Kg IDV Comprimido antiparasitario DOG \N 1 1 3 +224 2025-02-20 11:17:49.998047+00 2025-02-20 11:17:49.998055+00 f t GETS Palatable 42 a 63 KG IDV Comprimido antiparasitario DOG \N 1 1 3 +225 2025-02-20 11:17:50.002706+00 2025-02-20 11:17:50.002714+00 f t GETS spot on 05-10 PIPETA Pipeta antipulgas y garrapatas DOG \N 1 1 1 +226 2025-02-20 11:17:50.007471+00 2025-02-20 11:17:50.007479+00 f t GETS spot on 10-20 PIPETA Pipeta antipulgas y garrapatas DOG \N 1 1 1 +227 2025-02-20 11:17:50.012108+00 2025-02-20 11:17:50.012116+00 f t GETS spot on 20-40 PIPETA Pipeta antipulgas y garrapatas DOG \N 1 1 1 +228 2025-02-20 11:17:50.016702+00 2025-02-20 11:17:50.01671+00 f t GETS spot on 40-60 PIPETA Pipeta antipulgas y garrapatas DOG \N 1 1 1 +229 2025-02-20 11:17:50.02124+00 2025-02-20 11:17:50.021247+00 f t GETS spot on Felinos PIPETA Pipeta antipulgas y garrapatas CAT \N 1 1 1 +230 2025-02-20 11:17:50.025768+00 2025-02-20 11:17:50.025776+00 f t GIACOCCIDE 1 kg x 100 comp.AMARILLO (5 bl.) Mayor Comprimidos antiparasitarios para perros (1kg) DOG \N 3 1 3 +231 2025-02-20 11:17:50.030399+00 2025-02-20 11:17:50.030406+00 f t GIACOCCIDE 10 kg x 50 comp. VERDE (5 bl.) Mayor Comprimidos antiparasitarios para perros (10kg) DOG \N 3 1 3 +232 2025-02-20 11:17:50.035036+00 2025-02-20 11:17:50.035044+00 f t GIACOCCIDE 20 kg x 50 comp. ROJO (5 bl.) Mayor Comprimidos antiparasitarios para perros (20kg) DOG \N 3 1 3 +233 2025-02-20 11:17:50.039666+00 2025-02-20 11:17:50.039675+00 f t GOLD 1 mes POWER 10.1 a 20 kg Comprimido antiparasitario DOG \N 1 1 3 +234 2025-02-20 11:17:50.044285+00 2025-02-20 11:17:50.044292+00 f t GOLD 1 mes POWER 2 a 4.5 kg Comprimido antiparasitario DOG \N 1 1 3 +235 2025-02-20 11:17:50.048895+00 2025-02-20 11:17:50.048903+00 f t GOLD 1 mes POWER 20.1 a 40 kg Comprimido antiparasitario DOG \N 1 1 3 +236 2025-02-20 11:17:50.053488+00 2025-02-20 11:17:50.053497+00 f t GOLD 1 mes POWER 4.6 a 10 kg Comprimido antiparasitario DOG \N 1 1 3 +237 2025-02-20 11:17:50.058161+00 2025-02-20 11:17:50.058168+00 f t GOLD 1 mes POWER 40.1 a 56 kg Comprimido antiparasitario DOG \N 1 1 3 +238 2025-02-20 11:17:50.06277+00 2025-02-20 11:17:50.062778+00 f t HELMEX x 4 comp. Lumai Comprimidos antiparasitarios DOG \N 3 1 3 +239 2025-02-20 11:17:50.067467+00 2025-02-20 11:17:50.067475+00 f t HELMINTEX Susp. Cach. x 15 ml Paraqueños Suspensión antiparasitaria para cachorros DOG \N 3 1 5 +240 2025-02-20 11:17:50.072154+00 2025-02-20 11:17:50.072161+00 f t HELMINTEX Susp. Cach. x 150 ml Paraqueños Suspensión antiparasitaria para cachorros DOG \N 3 1 5 +241 2025-02-20 11:17:50.07678+00 2025-02-20 11:17:50.076789+00 f t IDOCARB12 x 20 cc Zoovet Antiprotozoario inyectable DOG \N 3 1 10 +242 2025-02-20 11:17:50.081337+00 2025-02-20 11:17:50.081344+00 f t IMIZOL x 100 cc MSD Intervet Antiprotozoario inyectable DOG \N 3 1 10 +243 2025-02-20 11:17:50.086002+00 2025-02-20 11:17:50.086009+00 f t IMMITICIDE 5 FCO x 2 ml Merial Tratamiento para dirofilariosis DOG \N 3 1 10 +244 2025-02-20 11:17:50.090625+00 2025-02-20 11:17:50.090634+00 f t IVERMECTINA 250 mg x 6 comp. Holliday Comprimidos antiparasitarios de amplio espectro DOG \N 2 1 3 +245 2025-02-20 11:17:50.095271+00 2025-02-20 11:17:50.095278+00 f t IVERSOL x 50 cc Von Franken Endectocida inyectable ALL \N 2 1 10 +246 2025-02-20 11:17:50.099731+00 2025-02-20 11:17:50.099739+00 f t IVERVET x 50 cc Vetanco Endectocida inyectable ALL \N 2 1 10 +247 2025-02-20 11:17:50.104343+00 2025-02-20 11:17:50.104352+00 f t IVERVET x 500 ml Vetanco Endectocida inyectable ALL \N 2 1 10 +248 2025-02-20 11:17:50.109051+00 2025-02-20 11:17:50.109059+00 f t IVOMEC x 50 cc Endectocida inyectable ALL \N 2 1 10 +249 2025-02-20 11:17:50.113703+00 2025-02-20 11:17:50.113712+00 f t IVOMEC x 500 cc Endectocida inyectable ALL \N 2 1 10 +250 2025-02-20 11:17:50.118352+00 2025-02-20 11:17:50.118365+00 f t K-OTHRINA FOG PRO x 426 ml Aerosol antipulgas y garrapatas ALL \N 1 1 14 +251 2025-02-20 11:17:50.123031+00 2025-02-20 11:17:50.123041+00 f t K-OTHRINA LPU x 500 ml Solución antipulgas y garrapatas ALL \N 1 1 7 +252 2025-02-20 11:17:50.128555+00 2025-02-20 11:17:50.128563+00 f t K-OTHRINA x 24 SACHETS 15 ml Sachets antipulgas y garrapatas ALL \N 1 1 15 +253 2025-02-20 11:17:50.13316+00 2025-02-20 11:17:50.133169+00 f t K-OTHRINA x 60 ml Solución antipulgas y garrapatas ALL \N 1 1 7 +254 2025-02-20 11:17:50.138665+00 2025-02-20 11:17:50.138673+00 f t KIL AG x 440 ml Spray antipulgas y garrapatas ALL \N 1 1 13 +255 2025-02-20 11:17:50.143305+00 2025-02-20 11:17:50.143313+00 f t KIL AMBIENTAL AEROSOL x 440 ml Aerosol antipulgas y garrapatas ALL \N 1 1 14 +256 2025-02-20 11:17:50.148053+00 2025-02-20 11:17:50.148061+00 f t KIL AMITRAZ x 20 ml Solución antipulgas y garrapatas ALL \N 1 1 7 +257 2025-02-20 11:17:50.153551+00 2025-02-20 11:17:50.153559+00 f t KIL P-G TALCO x 100 g Talco antipulgas y garrapatas ALL \N 1 1 16 +258 2025-02-20 11:17:50.158339+00 2025-02-20 11:17:50.158347+00 f t KNOCK OUT 00 - 04 x 0.5 ml LAMAR Pipeta antipulgas y garrapatas DOG \N 1 1 1 +259 2025-02-20 11:17:50.163165+00 2025-02-20 11:17:50.163173+00 f t KNOCK OUT 04 - 10 x 1 ml LAMAR Pipeta antipulgas y garrapatas DOG \N 1 1 1 +260 2025-02-20 11:17:50.167714+00 2025-02-20 11:17:50.167721+00 f t KNOCK OUT 10 - 25 x 2.5 ml LAMAR Pipeta antipulgas y garrapatas DOG \N 1 1 1 +261 2025-02-20 11:17:50.172357+00 2025-02-20 11:17:50.172365+00 f t KNOCK OUT 25 - 40 x 4 ml LAMAR Pipeta antipulgas y garrapatas DOG \N 1 1 1 +262 2025-02-20 11:17:50.17715+00 2025-02-20 11:17:50.177158+00 f t KNOCK OUT 40 - 60 x 6 ml LAMAR Pipeta antipulgas y garrapatas DOG \N 1 1 1 +263 2025-02-20 11:17:50.18166+00 2025-02-20 11:17:50.181685+00 f t KNOCK OUT GATOS 0 - 4 x 0.4 ml LAMAR Pipeta antipulgas y garrapatas CAT \N 1 1 1 +264 2025-02-20 11:17:50.186244+00 2025-02-20 11:17:50.186253+00 f t KNOCK OUT GATOS 4 - 8 x 0.8 ml LAMAR Pipeta antipulgas y garrapatas CAT \N 1 1 1 +265 2025-02-20 11:17:50.190923+00 2025-02-20 11:17:50.190931+00 f t KNOCK OUT GATOS x 10 ml LAMAR Pipeta antipulgas y garrapatas CAT \N 1 1 1 +266 2025-02-20 11:17:50.195569+00 2025-02-20 11:17:50.195578+00 f t KNOCK OUT PERROS x 50 ml LAMAR Pipeta antipulgas y garrapatas DOG \N 1 1 1 +267 2025-02-20 11:17:50.200266+00 2025-02-20 11:17:50.200274+00 f t KOBRA x 400 ml Konig Spray antipulgas y garrapatas ALL \N 1 1 13 +268 2025-02-20 11:17:50.204895+00 2025-02-20 11:17:50.204902+00 f t LAPASTILLA OSSPRET 02 a 05 kg Comprimido antiparasitario DOG \N 1 1 3 +269 2025-02-20 11:17:50.209584+00 2025-02-20 11:17:50.209592+00 f t LAPASTILLA OSSPRET 05 a 10 kg Comprimido antiparasitario DOG \N 1 1 3 +270 2025-02-20 11:17:50.214259+00 2025-02-20 11:17:50.214268+00 f t LAPASTILLA OSSPRET 10 a 20 kg Comprimido antiparasitario DOG \N 1 1 3 +271 2025-02-20 11:17:50.21877+00 2025-02-20 11:17:50.218777+00 f t LAPASTILLA OSSPRET 20 a 40 kg Comprimido antiparasitario DOG \N 1 1 3 +272 2025-02-20 11:17:50.223304+00 2025-02-20 11:17:50.223312+00 f t LAPASTILLA OSSPRET 40 a 80 kg Comprimido antiparasitario DOG \N 1 1 3 +273 2025-02-20 11:17:50.22792+00 2025-02-20 11:17:50.227927+00 f t LAPIPETA OSSPRET 02 a 10 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +274 2025-02-20 11:17:50.232636+00 2025-02-20 11:17:50.232644+00 f t LAPIPETA OSSPRET 10 a 20 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +275 2025-02-20 11:17:50.237344+00 2025-02-20 11:17:50.237352+00 f t LAPIPETA OSSPRET 20 a 40 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +276 2025-02-20 11:17:50.242029+00 2025-02-20 11:17:50.242036+00 f t LAPIPETA OSSPRET 40 a 60 kg Pipeta antipulgas y garrapatas DOG \N 1 1 1 +277 2025-02-20 11:17:50.246722+00 2025-02-20 11:17:50.24673+00 f t LAPIPETA OSSPRET GATO 02 a 04 kg Pipeta antipulgas y garrapatas CAT \N 1 1 1 +278 2025-02-20 11:17:50.251389+00 2025-02-20 11:17:50.251397+00 f t LAPIPETA OSSPRET GATO 04 a 08 kg Pipeta antipulgas y garrapatas CAT \N 1 1 1 +279 2025-02-20 11:17:50.256307+00 2025-02-20 11:17:50.256315+00 f t LEVAMISOL 50 mg x 10 comp. LAMAR Comprimidos antiparasitarios DOG \N 3 1 3 +280 2025-02-20 11:17:50.260903+00 2025-02-20 11:17:50.26091+00 f t LEVAMISOL 50 mg x 100 comp. LAMAR Comprimidos antiparasitarios DOG \N 3 1 3 +281 2025-02-20 11:17:50.265412+00 2025-02-20 11:17:50.265419+00 f t LEVAMISOL GOTAS 2 % x 15 ml LAMAR Antiparasitario en gotas ALL \N 3 1 2 +282 2025-02-20 11:17:50.270213+00 2025-02-20 11:17:50.270221+00 f t LEVAMISOL GOTAS 2.5 % x 20 ml Kualcos Antiparasitario en gotas ALL \N 3 1 2 +283 2025-02-20 11:17:50.274864+00 2025-02-20 11:17:50.274873+00 f t LEVAMISOL GOTERO 2 % x 20 ml INTERBIOL Antiparasitario en gotas ALL \N 3 1 2 +284 2025-02-20 11:17:50.279377+00 2025-02-20 11:17:50.279386+00 f t LEVAMISOL INY. 8 % x 50 cc INTERBIOL Antiparasitario inyectable ALL \N 3 1 10 +285 2025-02-20 11:17:50.283905+00 2025-02-20 11:17:50.283913+00 f t MELTRA ENDECTOCIDA x 50 cc - Endectocida inyectable ALL \N 2 1 10 +286 2025-02-20 11:17:50.288502+00 2025-02-20 11:17:50.288511+00 f t MELTRA ENDECTOCIDA x 500 cc - Endectocida inyectable ALL \N 2 1 10 +287 2025-02-20 11:17:50.29309+00 2025-02-20 11:17:50.293097+00 f t MELTRA GOLD 20 kg x 2 comp. (1 blister) - Comprimidos antiparasitarios para perros grandes DOG \N 3 1 3 +288 2025-02-20 11:17:50.297833+00 2025-02-20 11:17:50.297842+00 f t MELTRA GOLD 60 kg x 3 comp. (1 blister) - Comprimidos antiparasitarios para perros grandes DOG \N 3 1 3 +289 2025-02-20 11:17:50.302472+00 2025-02-20 11:17:50.30248+00 f t MELTRA PLUS SUSPENSION x 15 ml - Suspensión antiparasitaria ALL \N 3 1 5 +290 2025-02-20 11:17:50.307007+00 2025-02-20 11:17:50.307015+00 f t MOKSHA SH.PULGUICIDA x 1000 Interbiol Shampoo antipulgas y garrapatas ALL \N 1 1 12 +291 2025-02-20 11:17:50.311524+00 2025-02-20 11:17:50.311532+00 f t MOKSHA SH.PULGUICIDA x 250 Interbiol Shampoo antipulgas y garrapatas ALL \N 1 1 12 +292 2025-02-20 11:17:50.315944+00 2025-02-20 11:17:50.315952+00 f t MOKSHA SH.PULGUICIDA x 5000 Interbiol Shampoo antipulgas y garrapatas ALL \N 1 1 12 +293 2025-02-20 11:17:50.32048+00 2025-02-20 11:17:50.320487+00 f t NEXGARD 02 a 04 KG NEXGARD Comprimido antiparasitario DOG \N 1 1 3 +294 2025-02-20 11:17:50.325068+00 2025-02-20 11:17:50.325075+00 f t NEXGARD 04 a 10 KG NEXGARD Comprimido antiparasitario DOG \N 1 1 3 +295 2025-02-20 11:17:50.329556+00 2025-02-20 11:17:50.329564+00 f t MOXIDEX PLUS x 15 comp. (5 bls.) Mayors Comprimidos antiparasitarios DOG \N 3 1 3 +296 2025-02-20 11:17:50.33396+00 2025-02-20 11:17:50.333968+00 f t MOXIDEX PLUS x 6 comp. (2 bls.) Mayors Comprimidos antiparasitarios DOG \N 3 1 3 +297 2025-02-20 11:17:50.338692+00 2025-02-20 11:17:50.338699+00 f t NEXGARD 10 a 25 KG NEXGARD Comprimido antiparasitario DOG \N 1 1 3 +298 2025-02-20 11:17:50.343154+00 2025-02-20 11:17:50.343162+00 f t NEXGARD 25 a 50 KG NEXGARD Comprimido antiparasitario DOG \N 1 1 3 +299 2025-02-20 11:17:50.348504+00 2025-02-20 11:17:50.348511+00 f t NEXGARD COMBO 0.8 a 2.5 kg NEXGARD Pipeta antipulgas y garrapatas + comprimido DOG \N 1 1 17 +300 2025-02-20 11:17:50.353063+00 2025-02-20 11:17:50.353092+00 f t NEXGARD COMBO 2.5 a 7.5 kg NEXGARD Pipeta antipulgas y garrapatas + comprimido DOG \N 1 1 17 +301 2025-02-20 11:17:50.357686+00 2025-02-20 11:17:50.357697+00 f t NOCTOLIN x 100 ml MSD Intervet Solución antipulgas y garrapatas ALL \N 1 1 7 +302 2025-02-20 11:17:50.363157+00 2025-02-20 11:17:50.363164+00 f t OSS. CERA INSECTICIDA x 5000 ml OSSPRET Cera antipulgas y garrapatas ALL \N 1 1 18 +303 2025-02-20 11:17:50.368145+00 2025-02-20 11:17:50.368153+00 f t OSS. CERA INSECTICIDA x 950 ml OSSPRET Cera antipulgas y garrapatas ALL \N 1 1 18 +304 2025-02-20 11:17:50.372914+00 2025-02-20 11:17:50.372921+00 f t OSS.SH. AMITRAZ 0.25% x 250 ml OSSPRET Shampoo antipulgas y garrapatas ALL \N 1 1 12 +305 2025-02-20 11:17:50.377328+00 2025-02-20 11:17:50.377335+00 f t OSS.SH. DOUBLE x 1000 ml OSSPRET Shampoo antipulgas y garrapatas ALL \N 1 1 12 +306 2025-02-20 11:17:50.38192+00 2025-02-20 11:17:50.381927+00 f t OSS.SH. DOUBLE x 250 ml OSSPRET Shampoo antipulgas y garrapatas ALL \N 1 1 12 +307 2025-02-20 11:17:50.386382+00 2025-02-20 11:17:50.386389+00 f t OSS.SH. DOUBLE x 5000 ml OSSPRET Shampoo antipulgas y garrapatas ALL \N 1 1 12 +308 2025-02-20 11:17:50.390814+00 2025-02-20 11:17:50.390821+00 f t OSS.SH. PULG. GARRAP. x 1000 ml OSSPRET Shampoo antipulgas y garrapatas ALL \N 1 1 12 +309 2025-02-20 11:17:50.395184+00 2025-02-20 11:17:50.395191+00 f t OSS.SH. PULG. GARRAP. x 250 ml OSSPRET Shampoo antipulgas y garrapatas ALL \N 1 1 12 +310 2025-02-20 11:17:50.39958+00 2025-02-20 11:17:50.399587+00 f t OSS.SH. PULG. GARRAP. x 5000 ml OSSPRET Shampoo antipulgas y garrapatas ALL \N 1 1 12 +311 2025-02-20 11:17:50.403842+00 2025-02-20 11:17:50.403849+00 f t OSS.SH. PULG. GATOS x 1000 ml OSSPRET Shampoo antipulgas y garrapatas CAT \N 1 1 12 +312 2025-02-20 11:17:50.408173+00 2025-02-20 11:17:50.40818+00 f t OSS.SH. PULG. GATOS x 250 ml OSSPRET Shampoo antipulgas y garrapatas CAT \N 1 1 12 +313 2025-02-20 11:17:50.412929+00 2025-02-20 11:17:50.412936+00 f t P.I. GATO/PERRO H/4 KG - FP Zoovet Pipeta antipulgas y garrapatas ALL \N 1 1 1 +314 2025-02-20 11:17:50.417449+00 2025-02-20 11:17:50.417456+00 f t P.I. GATO/PERRO H/8 KG - FP Zoovet Pipeta antipulgas y garrapatas ALL \N 1 1 1 +315 2025-02-20 11:17:50.421763+00 2025-02-20 11:17:50.42177+00 f t PERFOS CAN. MAX 02-05 MINI Kualcos Pipeta antipulgas y garrapatas DOG \N 1 1 1 +316 2025-02-20 11:17:50.426231+00 2025-02-20 11:17:50.426238+00 f t PERFOS CAN. MAX 05-10 CHICO Kualcos Pipeta antipulgas y garrapatas DOG \N 1 1 1 +317 2025-02-20 11:17:50.430734+00 2025-02-20 11:17:50.430741+00 f t PANACUR 500 mg x 10 comp. (1 bl.) MSD Intervet Comprimidos antiparasitarios de amplio espectro DOG \N 3 1 3 +318 2025-02-20 11:17:50.436165+00 2025-02-20 11:17:50.436172+00 f t PARASINORT D JERINGA x 22 g Jeringa antiparasitaria ALL \N 3 1 19 +319 2025-02-20 11:17:50.440728+00 2025-02-20 11:17:50.440735+00 f t PARMAX SUSPENSION CACHORROS x 20 ml Suspensión antiparasitaria para cachorros DOG \N 3 1 5 +320 2025-02-20 11:17:50.445342+00 2025-02-20 11:17:50.44535+00 f t PAULVERMIN SUSPENSION x 15 ml Paul Suspensión antiparasitaria ALL \N 3 1 5 +321 2025-02-20 11:17:50.450103+00 2025-02-20 11:17:50.450111+00 f t PERFOS CAN. MAX 10-20 MEDIANO Kualcos Pipeta antipulgas y garrapatas DOG \N 1 1 1 +322 2025-02-20 11:17:50.454771+00 2025-02-20 11:17:50.454779+00 f t PERFOS CAN. MAX 20-40 GRANDE Kualcos Pipeta antipulgas y garrapatas DOG \N 1 1 1 +323 2025-02-20 11:17:50.459419+00 2025-02-20 11:17:50.459427+00 f t PERFOS CAN. MAX 40-60 GIGANTE Kualcos Pipeta antipulgas y garrapatas DOG \N 1 1 1 +324 2025-02-20 11:17:50.464764+00 2025-02-20 11:17:50.464772+00 f t PERFOS CAN. MAX x 75 ml Kualcos Pipeta antipulgas y garrapatas DOG \N 1 1 1 +325 2025-02-20 11:17:50.469543+00 2025-02-20 11:17:50.469551+00 f t PERFOS FELINO 00-04 CHICO Kualcos Pipeta antipulgas y garrapatas CAT \N 1 1 1 +326 2025-02-20 11:17:50.47414+00 2025-02-20 11:17:50.474147+00 f t PERFOS FELINO 04-08 GRANDE Kualcos Pipeta antipulgas y garrapatas CAT \N 1 1 1 +327 2025-02-20 11:17:50.478652+00 2025-02-20 11:17:50.47866+00 f t PERFOS FELINO x 10 ml Kualcos Pipeta antipulgas y garrapatas CAT \N 1 1 1 +328 2025-02-20 11:17:50.483136+00 2025-02-20 11:17:50.483143+00 f t PERFOS LIQUIDO x 100 ml Kualcos Solución antipulgas y garrapatas ALL \N 1 1 7 +329 2025-02-20 11:17:50.487576+00 2025-02-20 11:17:50.487584+00 f t PERFOS TALCO PERFUMADO x 100 g Kualcos Talco antipulgas y garrapatas ALL \N 1 1 16 +330 2025-02-20 11:17:50.492018+00 2025-02-20 11:17:50.492025+00 f t PETS PROTECTOR 90 02 a 04.4 KG Ceva Comprimido antiparasitario DOG \N 1 1 3 +331 2025-02-20 11:17:50.496497+00 2025-02-20 11:17:50.496505+00 f t PETS PROTECTOR 90 04.5 a 10 KG Ceva Comprimido antiparasitario DOG \N 1 1 3 +332 2025-02-20 11:17:50.501097+00 2025-02-20 11:17:50.501105+00 f t PETS PROTECTOR 90 10.1 a 20 KG Ceva Comprimido antiparasitario DOG \N 1 1 3 +333 2025-02-20 11:17:50.505647+00 2025-02-20 11:17:50.505654+00 f t PETS PROTECTOR 90 20.1 a 32 KG Ceva Comprimido antiparasitario DOG \N 1 1 3 +334 2025-02-20 11:17:50.510407+00 2025-02-20 11:17:50.510415+00 f t PETS PROTECTOR 90 32.1 a 64 KG Ceva Comprimido antiparasitario DOG \N 1 1 3 +335 2025-02-20 11:17:50.515098+00 2025-02-20 11:17:50.515105+00 f t PETS PROTECTOR MAX 02 a 05 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +336 2025-02-20 11:17:50.51956+00 2025-02-20 11:17:50.519567+00 f t PETS PROTECTOR MAX 05 a 10 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +337 2025-02-20 11:17:50.524183+00 2025-02-20 11:17:50.524191+00 f t PETS PROTECTOR MAX 10 a 20 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +338 2025-02-20 11:17:50.528962+00 2025-02-20 11:17:50.528969+00 f t PETS PROTECTOR MAX 20 a 40 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +339 2025-02-20 11:17:50.533527+00 2025-02-20 11:17:50.533534+00 f t PETS PROTECTOR MAX 40 a 60 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +340 2025-02-20 11:17:50.538473+00 2025-02-20 11:17:50.538481+00 f t PETS PROTECTOR MAX GATOS 4 KG Zoovet Pipeta antipulgas y garrapatas CAT \N 1 1 1 +341 2025-02-20 11:17:50.543023+00 2025-02-20 11:17:50.543031+00 f t PETS PROTECTOR MAX SPRAY 100 ml Zoovet Spray antipulgas y garrapatas ALL \N 1 1 13 +342 2025-02-20 11:17:50.547585+00 2025-02-20 11:17:50.547592+00 f t PETS PROTECTOR MAX SPRAY 250 ml Zoovet Spray antipulgas y garrapatas ALL \N 1 1 13 +343 2025-02-20 11:17:50.552134+00 2025-02-20 11:17:50.552142+00 f t PIRECORT SHAMPOO x 1000 ml Triton Shampoo antipulgas y garrapatas ALL \N 1 1 12 +344 2025-02-20 11:17:50.556673+00 2025-02-20 11:17:50.55668+00 f t PIRECORT SHAMPOO x 250 ml Triton Shampoo antipulgas y garrapatas ALL \N 1 1 12 +345 2025-02-20 11:17:50.561206+00 2025-02-20 11:17:50.561213+00 f t Power COMP. 02 a 05 kg Comprimido antiparasitario DOG \N 1 1 3 +346 2025-02-20 11:17:50.56575+00 2025-02-20 11:17:50.565757+00 f t Power COMP. 05 a 10 kg Comprimido antiparasitario DOG \N 1 1 3 +347 2025-02-20 11:17:50.570608+00 2025-02-20 11:17:50.570614+00 f t Power COMP. 10 a 20 kg Comprimido antiparasitario DOG \N 1 1 3 +348 2025-02-20 11:17:50.575159+00 2025-02-20 11:17:50.575166+00 f t Power COMP. 20 a 30 kg Comprimido antiparasitario DOG \N 1 1 3 +349 2025-02-20 11:17:50.579655+00 2025-02-20 11:17:50.579663+00 f t Power COMP. 30 a 40 kg Comprimido antiparasitario DOG \N 1 1 3 +350 2025-02-20 11:17:50.583925+00 2025-02-20 11:17:50.583933+00 f t POWER F SPRAY x 100 Spray antipulgas y garrapatas ALL \N 1 1 13 +351 2025-02-20 11:17:50.588423+00 2025-02-20 11:17:50.58843+00 f t POWER F SPRAY x 250 Spray antipulgas y garrapatas ALL \N 1 1 13 +352 2025-02-20 11:17:50.592661+00 2025-02-20 11:17:50.592669+00 f t POWER GOLD 10.1 a 20 kg Comprimido antiparasitario DOG \N 1 1 3 +353 2025-02-20 11:17:50.596649+00 2025-02-20 11:17:50.596655+00 f t POWER GOLD 2 a 4.5 kg Comprimido antiparasitario DOG \N 1 1 3 +354 2025-02-20 11:17:50.601089+00 2025-02-20 11:17:50.601096+00 f t POWER GOLD 20.1 a 40 kg Comprimido antiparasitario DOG \N 1 1 3 +355 2025-02-20 11:17:50.606323+00 2025-02-20 11:17:50.606331+00 f t POWER GOLD 4.6 a 10 kg Comprimido antiparasitario DOG \N 1 1 3 +356 2025-02-20 11:17:50.611159+00 2025-02-20 11:17:50.611167+00 f t POWER GOLD 40.1 a 56 kg Comprimido antiparasitario DOG \N 1 1 3 +357 2025-02-20 11:17:50.615196+00 2025-02-20 11:17:50.615202+00 f t Power MET 00 a 04 Gatos Pipeta antipulgas y garrapatas CAT \N 1 1 1 +358 2025-02-20 11:17:50.619037+00 2025-02-20 11:17:50.619046+00 f t Power MET 04 a 08 Gatos Pipeta antipulgas y garrapatas CAT \N 1 1 1 +359 2025-02-20 11:17:50.623287+00 2025-02-20 11:17:50.623296+00 f t Power SPOT ON 00 a 04 Gatos Pipeta antipulgas y garrapatas CAT \N 1 1 1 +360 2025-02-20 11:17:50.627573+00 2025-02-20 11:17:50.627581+00 f t Power SPOT ON 04 a 08 Gatos Pipeta antipulgas y garrapatas CAT \N 1 1 1 +361 2025-02-20 11:17:50.631587+00 2025-02-20 11:17:50.631595+00 f t Power ULTRA 02 a 04 kg Perro Pipeta antipulgas y garrapatas DOG \N 1 1 1 +362 2025-02-20 11:17:50.635954+00 2025-02-20 11:17:50.63596+00 f t Power ULTRA 04 a 10 kg Perro Pipeta antipulgas y garrapatas DOG \N 1 1 1 +363 2025-02-20 11:17:50.640243+00 2025-02-20 11:17:50.640248+00 f t Power ULTRA 10 a 20 kg Perro Pipeta antipulgas y garrapatas DOG \N 1 1 1 +364 2025-02-20 11:17:50.644004+00 2025-02-20 11:17:50.64401+00 f t Power ULTRA 20 a 40 kg Perro Pipeta antipulgas y garrapatas DOG \N 1 1 1 +365 2025-02-20 11:17:50.648018+00 2025-02-20 11:17:50.648024+00 f t Power ULTRA 40 a 60 kg Perro Pipeta antipulgas y garrapatas DOG \N 1 1 1 +366 2025-02-20 11:17:50.652387+00 2025-02-20 11:17:50.652394+00 f t PROPOLVET LOC. CURAB.atom. x 60 ml Aerosol antipulgas y garrapatas ALL \N 1 1 14 +367 2025-02-20 11:17:50.656223+00 2025-02-20 11:17:50.656229+00 f t PROTECH GATO 00-02 Kg Labyes Pipeta antipulgas y garrapatas CAT \N 1 1 1 +368 2025-02-20 11:17:50.660211+00 2025-02-20 11:17:50.660219+00 f t PRAZIQUANTEL 50 x 2 comp. LAMAR Comprimidos antiparasitarios (praziquantel) ALL \N 3 1 3 +369 2025-02-20 11:17:50.66447+00 2025-02-20 11:17:50.664476+00 f t PRAZIQUANTEL 50 x 20 comp. LAMAR Comprimidos antiparasitarios (praziquantel) ALL \N 3 1 3 +370 2025-02-20 11:17:50.668726+00 2025-02-20 11:17:50.668733+00 f t PRIUS x 50 cc (doramectina 1%) - Endectocida inyectable ALL \N 2 1 10 +371 2025-02-20 11:17:50.673301+00 2025-02-20 11:17:50.673306+00 f t PROMECTINA x 50 cc (IVERMECTINA 1%) Paraqueños Endectocida inyectable ALL \N 2 1 10 +372 2025-02-20 11:17:50.677346+00 2025-02-20 11:17:50.677352+00 f t PROTECH GATO 02-05 Kg Labyes Pipeta antipulgas y garrapatas CAT \N 1 1 1 +373 2025-02-20 11:17:50.681033+00 2025-02-20 11:17:50.681038+00 f t PROTECH GATO 05-08 Kg Labyes Pipeta antipulgas y garrapatas CAT \N 1 1 1 +374 2025-02-20 11:17:50.684579+00 2025-02-20 11:17:50.684585+00 f t PROTECH SPOT ON 01-04 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +375 2025-02-20 11:17:50.688301+00 2025-02-20 11:17:50.688307+00 f t PROTECH SPOT ON 05-10 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +376 2025-02-20 11:17:50.692058+00 2025-02-20 11:17:50.692069+00 f t PROTECH SPOT ON 11-25 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +377 2025-02-20 11:17:50.695817+00 2025-02-20 11:17:50.695823+00 f t PROTECH SPOT ON 26-40 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +378 2025-02-20 11:17:50.699446+00 2025-02-20 11:17:50.699452+00 f t PROTECH SPOT ON 41-60 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +379 2025-02-20 11:17:50.703044+00 2025-02-20 11:17:50.703049+00 f t PROTECH SPRAY x 100 ml Labyes Spray antipulgas y garrapatas ALL \N 1 1 13 +380 2025-02-20 11:17:50.706791+00 2025-02-20 11:17:50.706796+00 f t PROTECH TriPACK GATO 00-02 Kg Labyes Pipeta antipulgas y garrapatas CAT \N 1 1 1 +381 2025-02-20 11:17:50.710803+00 2025-02-20 11:17:50.710808+00 f t PROTECH TriPACK GATO 02-05 Kg Labyes Pipeta antipulgas y garrapatas CAT \N 1 1 1 +382 2025-02-20 11:17:50.714614+00 2025-02-20 11:17:50.71462+00 f t PROTECH TriPACK GATO 05-08 Kg Labyes Pipeta antipulgas y garrapatas CAT \N 1 1 1 +383 2025-02-20 11:17:50.718754+00 2025-02-20 11:17:50.71876+00 f t PROTECH TriPACK SPOT ON 02-05 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +384 2025-02-20 11:17:50.722638+00 2025-02-20 11:17:50.722644+00 f t PROTECH TriPACK SPOT ON 05-10 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +385 2025-02-20 11:17:50.727008+00 2025-02-20 11:17:50.727016+00 f t PROTECH TriPACK SPOT ON 11-25 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +386 2025-02-20 11:17:50.731013+00 2025-02-20 11:17:50.731021+00 f t PROTECH TriPACK SPOT ON 26-40 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +387 2025-02-20 11:17:50.734961+00 2025-02-20 11:17:50.734966+00 f t PROTECH TriPACK SPOT ON 41-60 Kg Labyes Pipeta antipulgas y garrapatas DOG \N 1 1 1 +388 2025-02-20 11:17:50.739369+00 2025-02-20 11:17:50.739375+00 f t PULGAR 02 a 05 KG Comprimido antiparasitario DOG \N 1 1 3 +389 2025-02-20 11:17:50.743194+00 2025-02-20 11:17:50.7432+00 f t PULGAR 05 a 10 KG Comprimido antiparasitario DOG \N 1 1 3 +390 2025-02-20 11:17:50.747287+00 2025-02-20 11:17:50.747294+00 f t PULGAR 10 a 20 KG Comprimido antiparasitario DOG \N 1 1 3 +391 2025-02-20 11:17:50.750809+00 2025-02-20 11:17:50.750814+00 f t PULGAR 20 a 40 KG Comprimido antiparasitario DOG \N 1 1 3 +392 2025-02-20 11:17:50.754713+00 2025-02-20 11:17:50.754719+00 f t PULGAR 40 a 80 KG Comprimido antiparasitario DOG \N 1 1 3 +393 2025-02-20 11:17:50.758302+00 2025-02-20 11:17:50.758308+00 f t PULGAR 20 a 40 KG x 2 comp.1600 mg CELESTE Comprimido antiparasitario DOG \N 1 1 3 +394 2025-02-20 11:17:50.762061+00 2025-02-20 11:17:50.762069+00 f t PULGAR 40 a 80 KG x 4 comp.1600 mg AMARILLA Comprimido antiparasitario DOG \N 1 1 3 +395 2025-02-20 11:17:50.765749+00 2025-02-20 11:17:50.765755+00 f t PULGAR Spray x 150 ml Paraqueños Spray antipulgas y garrapatas ALL \N 1 1 13 +396 2025-02-20 11:17:50.769524+00 2025-02-20 11:17:50.76953+00 f t PUNTA OREJA RUMINAL x 10 ml Ruminal Solución antipulgas y garrapatas ALL \N 1 1 7 +397 2025-02-20 11:17:50.773517+00 2025-02-20 11:17:50.773523+00 f t REPEXXIN 25 A 60 KG COLLAR Konig Collar antipulgas y garrapatas DOG \N 1 1 11 +398 2025-02-20 11:17:50.777332+00 2025-02-20 11:17:50.777338+00 f t REPEXXIN 4 A 25 KG COLLAR Konig Collar antipulgas y garrapatas DOG \N 1 1 11 +399 2025-02-20 11:17:50.781645+00 2025-02-20 11:17:50.781653+00 f t REVOLUTION 12% 10.1-20 KG ROJO x 1 Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +400 2025-02-20 11:17:50.785898+00 2025-02-20 11:17:50.785904+00 f t REVOLUTION 12% 2.6- 5 KG PURPURA x 1 Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +401 2025-02-20 11:17:50.790282+00 2025-02-20 11:17:50.790289+00 f t REVOLUTION 12% 20.1-40 KG VERDE Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +402 2025-02-20 11:17:50.794587+00 2025-02-20 11:17:50.794593+00 f t REVOLUTION 12% 5.1-10 KG MARRON x1 Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +403 2025-02-20 11:17:50.798938+00 2025-02-20 11:17:50.798946+00 f t REVOLUTION 6% 00- 2.5KG ROSA(cachorros) x1 Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +404 2025-02-20 11:17:50.802827+00 2025-02-20 11:17:50.802833+00 f t REVOLUTION 6% 2.6- 7.5KG AZUL(gatos) x 1 Pipeta antipulgas, garrapatas y parásitos internos CAT \N 2 1 1 +405 2025-02-20 11:17:50.806796+00 2025-02-20 11:17:50.806802+00 f t ROCHY Aerosol x 267 g Zoovet Aerosol antipulgas y garrapatas ALL \N 1 1 14 +406 2025-02-20 11:17:50.810981+00 2025-02-20 11:17:50.810988+00 f t ROCHY CREMA 15 gr pomo Crema antipulgas y garrapatas ALL \N 1 1 20 +407 2025-02-20 11:17:50.814735+00 2025-02-20 11:17:50.81474+00 f t ROCHY CREMA 60 gr pomo Crema antipulgas y garrapatas ALL \N 1 1 20 +408 2025-02-20 11:17:50.818531+00 2025-02-20 11:17:50.818536+00 f t Frontline SPOT ON 00 a 10 kg AZUL Pipeta antipulgas y garrapatas DOG \N 1 1 1 +409 2025-02-20 11:17:50.822283+00 2025-02-20 11:17:50.822288+00 f t RUMICONEX x 100 ml Ruminal Solución antipulgas y garrapatas ALL \N 1 1 7 +410 2025-02-20 11:17:50.825798+00 2025-02-20 11:17:50.825805+00 f t RUMINAL 88 x 100 ml Ruminal Solución antipulgas y garrapatas ALL \N 1 1 7 +411 2025-02-20 11:17:50.82953+00 2025-02-20 11:17:50.829537+00 f t RUMIVET 02 a 10 KG Ruminal Solución antipulgas y garrapatas DOG \N 1 1 7 +412 2025-02-20 11:17:50.833421+00 2025-02-20 11:17:50.833429+00 f t SCALIBOR COLLAR MSD Intervet Collar antipulgas y garrapatas DOG \N 1 1 11 +413 2025-02-20 11:17:50.837568+00 2025-02-20 11:17:50.837574+00 f t SERESTO PERROS + 8KG ROJO Collar antipulgas y garrapatas DOG \N 1 1 11 +414 2025-02-20 11:17:50.841236+00 2025-02-20 11:17:50.841241+00 f t SERESTO PERROS y GATOS - 8KG VERDE Collar antipulgas y garrapatas ALL \N 1 1 11 +415 2025-02-20 11:17:50.844855+00 2025-02-20 11:17:50.844861+00 f t SHAMPOO AP x 350 ml Zoovet Shampoo antipulgas y garrapatas ALL \N 1 1 12 +416 2025-02-20 11:17:50.849266+00 2025-02-20 11:17:50.849274+00 f t SHAMPOO ATON x 250 ml Shampoo antipulgas y garrapatas ALL \N 1 1 12 +417 2025-02-20 11:17:50.854219+00 2025-02-20 11:17:50.854224+00 f t SILATOX DIP x 250 ml Paul Espuma antipulgas y garrapatas ALL \N 1 1 21 +418 2025-02-20 11:17:50.858067+00 2025-02-20 11:17:50.858073+00 f t SILATOX DIRIGIDO x 440 ml Paul Solución antipulgas y garrapatas ALL \N 1 1 7 +419 2025-02-20 11:17:50.862054+00 2025-02-20 11:17:50.86206+00 f t SILATOX FOGGER AEROSOL x 278 ml Paul Aerosol antipulgas y garrapatas ALL \N 1 1 14 +420 2025-02-20 11:17:50.865741+00 2025-02-20 11:17:50.865747+00 f t SILATOX Plus 00 a 10 Pipeta Paul Pipeta antipulgas y garrapatas DOG \N 1 1 1 +421 2025-02-20 11:17:50.869846+00 2025-02-20 11:17:50.869852+00 f t SILATOX Plus 11 a 20 Pipeta Paul Pipeta antipulgas y garrapatas DOG \N 1 1 1 +422 2025-02-20 11:17:50.87356+00 2025-02-20 11:17:50.873564+00 f t SILATOX Plus 21 a 40 Pipeta Paul Pipeta antipulgas y garrapatas DOG \N 1 1 1 +423 2025-02-20 11:17:50.877204+00 2025-02-20 11:17:50.877209+00 f t SILATOX Plus 41 a 60 Pipeta Paul Pipeta antipulgas y garrapatas DOG \N 1 1 1 +424 2025-02-20 11:17:50.881023+00 2025-02-20 11:17:50.881031+00 f t SILATOX Plus GATOS Pipeta Paul Pipeta antipulgas y garrapatas CAT \N 1 1 1 +425 2025-02-20 11:17:50.884971+00 2025-02-20 11:17:50.884979+00 f t SIMPARICA TAB 10mg (2.5-5 KG) Comprimido antiparasitario DOG \N 1 1 3 +426 2025-02-20 11:17:50.888523+00 2025-02-20 11:17:50.888529+00 f t SIMPARICA TAB 120mg (40-60 KG) Comprimido antiparasitario DOG \N 1 1 3 +427 2025-02-20 11:17:50.892204+00 2025-02-20 11:17:50.892209+00 f t SIMPARICA TAB 20mg (5-10 KG) Comprimido antiparasitario DOG \N 1 1 3 +428 2025-02-20 11:17:50.895737+00 2025-02-20 11:17:50.895742+00 f t SIMPARICA TAB 40mg (10-20 KG) Comprimido antiparasitario DOG \N 1 1 3 +429 2025-02-20 11:17:50.899334+00 2025-02-20 11:17:50.899339+00 f t SIMPARICA TAB 5mg (1.3-2.5 KG) Comprimido antiparasitario DOG \N 1 1 3 +430 2025-02-20 11:17:50.903368+00 2025-02-20 11:17:50.903373+00 f t SIMPARICA TAB 80mg (20-40 KG) Comprimido antiparasitario DOG \N 1 1 3 +431 2025-02-20 11:17:50.907071+00 2025-02-20 11:17:50.907076+00 f t SIN PAR 10 x 20 comp. (10 bl) Estuche LAMAR Comprimidos antiparasitarios DOG \N 3 1 3 +432 2025-02-20 11:17:50.911017+00 2025-02-20 11:17:50.911021+00 f t SIN PAR 20 x 20 comp. (10 bl) Estuche LAMAR Comprimidos antiparasitarios DOG \N 3 1 3 +433 2025-02-20 11:17:50.914557+00 2025-02-20 11:17:50.914562+00 f t SIN PAR 40 x 40 comp. (10 bl) Estuche LAMAR Comprimidos antiparasitarios DOG \N 3 1 3 +434 2025-02-20 11:17:50.918289+00 2025-02-20 11:17:50.918296+00 f t SIN PAR 60 x 60 comp. (10 bl) Estuche LAMAR Comprimidos antiparasitarios DOG \N 3 1 3 +435 2025-02-20 11:17:50.922206+00 2025-02-20 11:17:50.922211+00 f t SIN PAR GATOS x 20 comp. (10 bl) Estuche LAMAR Comprimidos antiparasitarios para gatos CAT \N 3 1 3 +436 2025-02-20 11:17:50.925776+00 2025-02-20 11:17:50.925782+00 f t SINACARO-A LIQ. x 100 ml Ruminal Solución antiparasitaria interna ALL \N 1 1 7 +437 2025-02-20 11:17:50.929388+00 2025-02-20 11:17:50.929396+00 f t SPECTRA NEXGARD 02 a 03.5 KG PP (NARANJA) NEXGARD Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +438 2025-02-20 11:17:50.933191+00 2025-02-20 11:17:50.933197+00 f t SPECTRA NEXGARD 03.6 a 07.5 KG P (AMARILLO) NEXGARD Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +439 2025-02-20 11:17:50.936962+00 2025-02-20 11:17:50.936967+00 f t SPECTRA NEXGARD 07.6 a 15 KG M (VERDE) NEXGARD Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +440 2025-02-20 11:17:50.941146+00 2025-02-20 11:17:50.941153+00 f t SPECTRA NEXGARD 15.1 a 30 KG G (VIOLETA) NEXGARD Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +441 2025-02-20 11:17:50.945384+00 2025-02-20 11:17:50.945389+00 f t SPECTRA NEXGARD 30.1 a 60 KG GG (ROJO) NEXGARD Pipeta antipulgas, garrapatas y parásitos internos DOG \N 2 1 1 +442 2025-02-20 11:17:50.949629+00 2025-02-20 11:17:50.949636+00 f t SPINOMAX DUO 18 a 36 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +443 2025-02-20 11:17:50.953951+00 2025-02-20 11:17:50.953959+00 f t SPINOMAX DUO 2 a 4 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +444 2025-02-20 11:17:50.958918+00 2025-02-20 11:17:50.958923+00 f t SPINOMAX DUO 36 a 70 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +445 2025-02-20 11:17:50.962841+00 2025-02-20 11:17:50.962849+00 f t SPINOMAX DUO 4 a 9 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +446 2025-02-20 11:17:50.966479+00 2025-02-20 11:17:50.966487+00 f t SPINOMAX DUO 9 a 18 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +447 2025-02-20 11:17:50.970222+00 2025-02-20 11:17:50.970227+00 f t SPOTMAX 02-10 CHICOS 1.5 ml Pipeta antipulgas y garrapatas DOG \N 1 1 1 +448 2025-02-20 11:17:50.974099+00 2025-02-20 11:17:50.974106+00 f t SPOTMAX 10-20 MEDIANOS 3 ml Pipeta antipulgas y garrapatas DOG \N 1 1 1 +449 2025-02-20 11:17:50.97806+00 2025-02-20 11:17:50.978066+00 f t SPOTMAX 20-40 GRANDES 6 ml Pipeta antipulgas y garrapatas DOG \N 1 1 1 +450 2025-02-20 11:17:50.981664+00 2025-02-20 11:17:50.981687+00 f t SPOTMAX 40-60 GRANDES 9 ml Pipeta antipulgas y garrapatas DOG \N 1 1 1 +451 2025-02-20 11:17:50.98579+00 2025-02-20 11:17:50.985798+00 f t SPOTMAX GATO 00-04 CHICOS 0.5 ml Pipeta antipulgas y garrapatas CAT \N 1 1 1 +452 2025-02-20 11:17:50.989775+00 2025-02-20 11:17:50.989783+00 f t SPOTMAX GATO 04-08 Grande 1 ml Pipeta antipulgas y garrapatas CAT \N 1 1 1 +453 2025-02-20 11:17:50.994571+00 2025-02-20 11:17:50.994578+00 f t STRONG 10 x 1 compr. (5,1 a 10 kg) Comprimido antiparasitario DOG \N 1 1 3 +454 2025-02-20 11:17:50.998576+00 2025-02-20 11:17:50.998582+00 f t STRONG 20 x 2 compr. (10,1 a 20 kg) Comprimido antiparasitario DOG \N 1 1 3 +455 2025-02-20 11:17:51.002526+00 2025-02-20 11:17:51.002532+00 f t STRONG 40 x 4 compr. (20,1 a 40 kg) Comprimido antiparasitario DOG \N 1 1 3 +456 2025-02-20 11:17:51.00657+00 2025-02-20 11:17:51.006578+00 f t STRONG 60 x 6 compr. (40,1 a 60 kg) Comprimido antiparasitario DOG \N 1 1 3 +457 2025-02-20 11:17:51.010546+00 2025-02-20 11:17:51.010554+00 f t SYNAL POLVO x 75 g Aton Polvo antipulgas y garrapatas ALL \N 1 1 6 +458 2025-02-20 11:17:51.014295+00 2025-02-20 11:17:51.0143+00 f t SYNAL x 100 ml Aton Solución antipulgas y garrapatas ALL \N 1 1 7 +459 2025-02-20 11:17:51.01775+00 2025-02-20 11:17:51.017755+00 f t SYNAL x 50 ml Aton Solución antipulgas y garrapatas ALL \N 1 1 7 +460 2025-02-20 11:17:51.021165+00 2025-02-20 11:17:51.02117+00 f t TALCO ANTIPARASITARIO x 100 g Ruminal Talco antipulgas y garrapatas ALL \N 1 1 16 +461 2025-02-20 11:17:51.024613+00 2025-02-20 11:17:51.024618+00 f t TALCO MLS Antip. Ext. x 100 g Nort Talco antipulgas y garrapatas ALL \N 1 1 16 +462 2025-02-20 11:17:51.028387+00 2025-02-20 11:17:51.028392+00 f t TEA 327 AEROSOL x 170 ml. Konig Aerosol antipulgas y garrapatas ALL \N 1 1 14 +463 2025-02-20 11:17:51.032147+00 2025-02-20 11:17:51.032153+00 f t TEA 327 COLLAR 13 g CACHORRO Konig Collar antipulgas y garrapatas DOG \N 1 1 11 +464 2025-02-20 11:17:51.035897+00 2025-02-20 11:17:51.035902+00 f t TEA 327 COLLAR 13 g GATO Konig Collar antipulgas y garrapatas CAT \N 1 1 11 +465 2025-02-20 11:17:51.039897+00 2025-02-20 11:17:51.039905+00 f t TEA 327 COLLAR 28 g MEDIANO Konig Collar antipulgas y garrapatas DOG \N 1 1 11 +466 2025-02-20 11:17:51.043757+00 2025-02-20 11:17:51.043763+00 f t TEA 327 COLLAR 38 g GRANDE Konig Collar antipulgas y garrapatas DOG \N 1 1 11 +467 2025-02-20 11:17:51.047737+00 2025-02-20 11:17:51.047742+00 f t TEA 327 COLLAR 45 g EXTRA GRANDE Konig Collar antipulgas y garrapatas DOG \N 1 1 11 +468 2025-02-20 11:17:51.051857+00 2025-02-20 11:17:51.051863+00 f t TEA 327 LIQUIDO x 120 ml Konig Solución antipulgas y garrapatas ALL \N 1 1 7 +469 2025-02-20 11:17:51.055392+00 2025-02-20 11:17:51.055397+00 f t TEA 327 LIQUIDO x 70 ml Konig Solución antipulgas y garrapatas ALL \N 1 1 7 +470 2025-02-20 11:17:51.059486+00 2025-02-20 11:17:51.059492+00 f t TEA 327 pipeta GATO 02 a 05 KG Konig Pipeta antipulgas y garrapatas CAT \N 1 1 1 +471 2025-02-20 11:17:51.063135+00 2025-02-20 11:17:51.063143+00 f t TEA 327 pipeta PERRO 02 a 05 KG Konig Pipeta antipulgas y garrapatas DOG \N 1 1 1 +472 2025-02-20 11:17:51.066992+00 2025-02-20 11:17:51.066998+00 f t TEA 327 pipeta PERRO 05 a 10 KG Konig Pipeta antipulgas y garrapatas DOG \N 1 1 1 +473 2025-02-20 11:17:51.071009+00 2025-02-20 11:17:51.071018+00 f t TEA 327 pipeta PERRO 10 a 20 KG Konig Pipeta antipulgas y garrapatas DOG \N 1 1 1 +474 2025-02-20 11:17:51.075524+00 2025-02-20 11:17:51.07553+00 f t TEA 327 pipeta PERRO 20 a 40 KG Konig Pipeta antipulgas y garrapatas DOG \N 1 1 1 +475 2025-02-20 11:17:51.080369+00 2025-02-20 11:17:51.080377+00 f t TEA 327 pipeta PERRO 40 a 60 KG Konig Pipeta antipulgas y garrapatas DOG \N 1 1 1 +476 2025-02-20 11:17:51.084909+00 2025-02-20 11:17:51.084935+00 f t TEA 327 POLVO x 80 g Konig Polvo antipulgas y garrapatas ALL \N 1 1 6 +477 2025-02-20 11:17:51.088579+00 2025-02-20 11:17:51.088587+00 f t TEA DERMASOFT x 120 ml Konig Solución antipulgas y garrapatas ALL \N 1 1 7 +478 2025-02-20 11:17:51.09242+00 2025-02-20 11:17:51.092426+00 f t TEA LARVOX FOGGER x 419 ml Konig Aerosol antipulgas y garrapatas ALL \N 1 1 14 +479 2025-02-20 11:17:51.096212+00 2025-02-20 11:17:51.096218+00 f t TEA LARVOX x 419 ml Konig Solución antipulgas y garrapatas ALL \N 1 1 7 +480 2025-02-20 11:17:51.100136+00 2025-02-20 11:17:51.100142+00 f t TERPAN 1000 E x 1 LITRO Solución antipulgas y garrapatas ALL \N 1 1 7 +481 2025-02-20 11:17:51.103926+00 2025-02-20 11:17:51.103932+00 f t TERPAN 1000 E x 100 ml Solución antipulgas y garrapatas ALL \N 1 1 7 +482 2025-02-20 11:17:51.107521+00 2025-02-20 11:17:51.107529+00 f t TIPERTOX x 145 ml Solución antipulgas y garrapatas ALL \N 1 1 7 +483 2025-02-20 11:17:51.111071+00 2025-02-20 11:17:51.111076+00 f t TOLTRAZOL SUSP PLUS x 10 ml Mayors Suspensión antiparasitaria ALL \N 3 1 5 +484 2025-02-20 11:17:51.114704+00 2025-02-20 11:17:51.11471+00 f t TOLTRAZOL SUSP PLUS x 5 ml Mayors Suspensión antiparasitaria ALL \N 3 1 5 +485 2025-02-20 11:17:51.118307+00 2025-02-20 11:17:51.118312+00 f t TOLTRAZOL SUSP x 10 ml Mayors Suspensión antiparasitaria ALL \N 3 1 5 +486 2025-02-20 11:17:51.121765+00 2025-02-20 11:17:51.121774+00 f t TOLTRAZOL SUSP x 25 ml Mayors Suspensión antiparasitaria ALL \N 3 1 5 +487 2025-02-20 11:17:51.125392+00 2025-02-20 11:17:51.125397+00 f t TOLTRAZOL x 15 comp. (5 bl) Mayors Comprimidos antiparasitarios ALL \N 3 1 3 +488 2025-02-20 11:17:51.128952+00 2025-02-20 11:17:51.128958+00 f t TOLTRAZOL x 3 comp. Mayors Comprimidos antiparasitarios ALL \N 3 1 3 +489 2025-02-20 11:17:51.132659+00 2025-02-20 11:17:51.132665+00 f t TOLZURIL x 3 comp. JM Comprimidos antiparasitarios ALL \N 3 1 3 +490 2025-02-20 11:17:51.136164+00 2025-02-20 11:17:51.136169+00 f t TOTAL FULL CACHORROS SUSPENSION x 15 ml Holliday Suspensión antiparasitaria para cachorros DOG \N 3 1 5 +491 2025-02-20 11:17:51.139706+00 2025-02-20 11:17:51.139712+00 f t TOTAL FULL CG x 15 ml Holliday Suspensión antiparasitaria ALL \N 3 1 5 +492 2025-02-20 11:17:51.143974+00 2025-02-20 11:17:51.144007+00 f t TOTAL FULL CG x 150 ml Holliday Suspensión antiparasitaria ALL \N 3 1 5 +493 2025-02-20 11:17:51.148389+00 2025-02-20 11:17:51.1484+00 f t TOTAL FULL GATOS SUSPENSION x 15 ml Holliday Suspensión antiparasitaria para gatos CAT \N 3 1 5 +494 2025-02-20 11:17:51.152623+00 2025-02-20 11:17:51.152631+00 f t TOTAL FULL LC GATOS x 2 comp. Holliday Comprimidos antiparasitarios para gatos CAT \N 3 1 3 +495 2025-02-20 11:17:51.157106+00 2025-02-20 11:17:51.157115+00 f t TOTAL FULL LC H. 10 KG x 2 comp. Holliday Comprimidos antiparasitarios para perros (10 kg) DOG \N 3 1 3 +496 2025-02-20 11:17:51.161865+00 2025-02-20 11:17:51.161873+00 f t TOTAL FULL LC H. 20 KG x 2 comp. Holliday Comprimidos antiparasitarios para perros (20 kg) DOG \N 3 1 3 +497 2025-02-20 11:17:51.166297+00 2025-02-20 11:17:51.166306+00 f t TOTAL FULL LC H. 60 KG x 3 comp. Holliday Comprimidos antiparasitarios para perros (60 kg) DOG \N 3 1 3 +498 2025-02-20 11:17:51.170382+00 2025-02-20 11:17:51.170388+00 f t Trat. Integ. FIP + LPA 04 a 09 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +499 2025-02-20 11:17:51.174496+00 2025-02-20 11:17:51.174503+00 f t Trat. Integ. FIP + LPA 09 a 24 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +500 2025-02-20 11:17:51.178544+00 2025-02-20 11:17:51.178551+00 f t Trat. Integ. FIP + LPA 24 a 40 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +501 2025-02-20 11:17:51.182951+00 2025-02-20 11:17:51.182959+00 f t Trat. Integ. FIP + LPA 40 a 60 KG Zoovet Pipeta antipulgas y garrapatas DOG \N 1 1 1 +502 2025-02-20 11:17:51.187168+00 2025-02-20 11:17:51.187174+00 f t TRIIIPLEX x 160 comp. (40 Bl. 1600kg) Ruminal Comprimidos antiparasitarios de amplio espectro DOG \N 3 1 3 +503 2025-02-20 11:17:51.190777+00 2025-02-20 11:17:51.190785+00 f t TRIIIPLEX x 4 comp. (1 Bl. 40kg.) Ruminal Comprimidos antiparasitarios de amplio espectro DOG \N 3 1 3 +504 2025-02-20 11:17:51.194983+00 2025-02-20 11:17:51.19499+00 f t TRIVERMEX - 20kg.PREMIUM 4 comp. Zoovet Comprimidos antiparasitarios para perros grandes DOG \N 3 1 3 +505 2025-02-20 11:17:51.198775+00 2025-02-20 11:17:51.198781+00 f t TRIVERMEX - 40kg.PREMIUM 4 comp. Zoovet Comprimidos antiparasitarios para perros grandes DOG \N 3 1 3 +506 2025-02-20 11:17:51.202936+00 2025-02-20 11:17:51.202941+00 f t TRIVERMEX - 60kg.-12 bl 3 comp. Zoovet Comprimidos antiparasitarios para perros grandes DOG \N 3 1 3 +507 2025-02-20 11:17:51.207127+00 2025-02-20 11:17:51.207133+00 f t TRIVERMEX - 60kg.PREMIUM 3 comp. Zoovet Comprimidos antiparasitarios para perros grandes DOG \N 3 1 3 +508 2025-02-20 11:17:51.210972+00 2025-02-20 11:17:51.210979+00 f t TRIVERMEX SUSPENSION x 100 ml Zoovet Suspensión antiparasitaria ALL \N 3 1 5 +509 2025-02-20 11:17:51.214618+00 2025-02-20 11:17:51.214626+00 f t TRIVERMEX SUSPENSION x 15 ml. x 6 fco Zoovet Suspensión antiparasitaria ALL \N 3 1 5 +510 2025-02-20 11:17:51.218451+00 2025-02-20 11:17:51.218459+00 f t VENGANCE AEROSOL x 415 cc Aerosol antipulgas y garrapatas ALL \N 1 1 14 +511 2025-02-20 11:17:51.222038+00 2025-02-20 11:17:51.222043+00 f t VERMIPLEX PLUS 500 jga. x 26 g Konig Jeringa antiparasitaria DOG \N 3 1 19 +512 2025-02-20 11:17:51.227012+00 2025-02-20 11:17:51.227018+00 f t 12 P 15 AMP. x 10 cc Nort Solución inyectable ALL \N 4 2 10 +513 2025-02-20 11:17:51.23142+00 2025-02-20 11:17:51.231427+00 f t A VOLAR Aplic. Drirec. x 500 ml Solución desinfectante ALL \N 5 2 7 +514 2025-02-20 11:17:51.235487+00 2025-02-20 11:17:51.235492+00 f t ACEDAN GOTAS x 10 ml Holliday Gotas sedantes ALL \N 4 2 2 +515 2025-02-20 11:17:51.239558+00 2025-02-20 11:17:51.239569+00 f t ACEDAN INYECTABLE x 50 cc Holliday Solución inyectable sedante ALL \N 4 2 10 +517 2025-02-20 11:17:51.248418+00 2025-02-20 11:17:51.248423+00 f t ACONDICIONADOR x 250 Puro Acuarium Acondicionador para piel ALL \N 5 2 22 +518 2025-02-20 11:17:51.252645+00 2025-02-20 11:17:51.252653+00 f t ACS 16% iny. x 25 cc. Ltf Inyección de sulfato de condroitina ALL \N 4 2 10 +519 2025-02-20 11:17:51.25678+00 2025-02-20 11:17:51.256787+00 f t ACS CONDROVITAMINA LTF x 60 comp. Ltf Comprimidos de condroitina ALL \N 4 2 3 +520 2025-02-20 11:17:51.260884+00 2025-02-20 11:17:51.260889+00 f t ACS CONDROVITAMINA LTF x120 comp. Ltf Comprimidos de condroitina saborizados ALL \N 4 2 3 +521 2025-02-20 11:17:51.265223+00 2025-02-20 11:17:51.265228+00 f t ACS x 40 cap. Ltf Cápsulas de sulfato de condroitina ALL \N 4 2 23 +522 2025-02-20 11:17:51.269374+00 2025-02-20 11:17:51.269389+00 f t ACTINAL 20 mg x 200 comp. Richmond Comprimidos de prednisolona ALL \N 4 2 3 +523 2025-02-20 11:17:51.273337+00 2025-02-20 11:17:51.273342+00 f t ADE CAPS POMO x 30 g IDV Cápsulas vitamínicas ALL \N 4 2 23 +524 2025-02-20 11:17:51.277472+00 2025-02-20 11:17:51.277483+00 f t AGUA OXIGENADA 10 V. 100 ml Solución desinfectante ALL \N 5 2 7 +525 2025-02-20 11:17:51.281754+00 2025-02-20 11:17:51.281762+00 f t AGUA OXIGENADA 10 V. 1000 ml Solución desinfectante ALL \N 5 2 7 +526 2025-02-20 11:17:51.285923+00 2025-02-20 11:17:51.28593+00 f t ALCOHOL 96 grados 1000 ml Alcohol desinfectante ALL \N 5 2 7 +527 2025-02-20 11:17:51.290542+00 2025-02-20 11:17:51.290549+00 f t ALCOHOL BORICADO 1000 ml Solución desinfectante ALL \N 5 2 7 +528 2025-02-20 11:17:51.295183+00 2025-02-20 11:17:51.295188+00 f t Alcohol en Gel x 250 ml Gel desinfectante ALL \N 5 2 24 +529 2025-02-20 11:17:51.299084+00 2025-02-20 11:17:51.299089+00 f t Alcohol en Gel x 5000 ml Gel desinfectante ALL \N 5 2 24 +530 2025-02-20 11:17:51.303024+00 2025-02-20 11:17:51.30303+00 f t ALERGIL PET 10 MG x 10 comp. Paraqueños Comprimidos antialérgicos ALL \N 4 2 3 +531 2025-02-20 11:17:51.306643+00 2025-02-20 11:17:51.306648+00 f t ALGEN 20 mg x 120 comp. Richmond Comprimidos de tramadol ALL \N 4 2 3 +532 2025-02-20 11:17:51.310185+00 2025-02-20 11:17:51.31019+00 f t ALGEN 60 mg x 120 comp. Richmond Comprimidos de tramadol ALL \N 4 2 3 +533 2025-02-20 11:17:51.314406+00 2025-02-20 11:17:51.314414+00 f t ALGEN iny. 20 x 20 cc Richmond Inyección de tramadol ALL \N 4 2 10 +534 2025-02-20 11:17:51.318446+00 2025-02-20 11:17:51.318456+00 f t ALGEN iny. LD 60 x 50 cc Richmond Inyección de tramadol ALL \N 4 2 10 +535 2025-02-20 11:17:51.32281+00 2025-02-20 11:17:51.322817+00 f t ALGICAM PETS INY. 0,5 % 50 cc Zoovet Inyección analgésica ALL \N 4 2 10 +536 2025-02-20 11:17:51.327048+00 2025-02-20 11:17:51.327059+00 f t ALGIDOL 50 mg INYECTABLE x 50 cc Zoovet Inyección analgésica ALL \N 4 2 10 +537 2025-02-20 11:17:51.330912+00 2025-02-20 11:17:51.330918+00 f t ALGUICIDA x 250 ml Solución algicida ALL \N 5 2 7 +538 2025-02-20 11:17:51.334823+00 2025-02-20 11:17:51.334829+00 f t AMBITUS x 1 LITROS Nieser Solución desinfectante ALL \N 5 2 7 +539 2025-02-20 11:17:51.339167+00 2025-02-20 11:17:51.339174+00 f t AMBITUS x 10 LITROS Nieser Solución desinfectante ALL \N 5 2 7 +540 2025-02-20 11:17:51.344257+00 2025-02-20 11:17:51.344266+00 f t AMLODIPINA CAT x 20 comp. Janvier Comprimidos para gatos CAT \N 4 2 3 +541 2025-02-20 11:17:51.348965+00 2025-02-20 11:17:51.348973+00 f t AMONIO 10 x 5 Litros Nieser Solución desinfectante ALL \N 5 2 7 +542 2025-02-20 11:17:51.353653+00 2025-02-20 11:17:51.353661+00 f t ANAVIMIN COAT x 21 comp. Holliday Comprimidos para piel sana ALL \N 4 2 3 +543 2025-02-20 11:17:51.358387+00 2025-02-20 11:17:51.358395+00 f t ANCYLOS PLUS x 180 comp. Lumai Comprimidos antiparasitarios ALL \N 4 2 3 +544 2025-02-20 11:17:51.362755+00 2025-02-20 11:17:51.362763+00 f t ANEMI-BYE x 20 comp. Triton Comprimidos antianémicos ALL \N 4 2 3 +545 2025-02-20 11:17:51.367366+00 2025-02-20 11:17:51.367374+00 f t ANTICLORO x 125 ml Solución anticloro ALL \N 5 2 7 +546 2025-02-20 11:17:51.372057+00 2025-02-20 11:17:51.372065+00 f t ANTIEMETICO Gotas 0.4 % x 20 ml INTERBIOL Gotas antieméticas ALL \N 4 2 2 +547 2025-02-20 11:17:51.376693+00 2025-02-20 11:17:51.376702+00 f t ANTIEMETICO Gotas x 15 ml Lumai Gotas antieméticas ALL \N 4 2 2 +548 2025-02-20 11:17:51.381261+00 2025-02-20 11:17:51.381269+00 f t ANTIEMETICO INY. 0.5 % x 50 cc INTERBIOL Inyección antiemética ALL \N 4 2 10 +549 2025-02-20 11:17:51.386074+00 2025-02-20 11:17:51.386083+00 f t ANTIEMETICO INY. x 25 cc Lumai Inyección antiemética ALL \N 4 2 10 +550 2025-02-20 11:17:51.39046+00 2025-02-20 11:17:51.390467+00 f t APETIL GOTAS x 10 ml Holliday Gotas estimulantes del apetito ALL \N 4 2 2 +551 2025-02-20 11:17:51.395276+00 2025-02-20 11:17:51.395281+00 f t APLONAL 1% INY. x 12 cc Konig Inyección antiinflamatoria ALL \N 6 2 10 +552 2025-02-20 11:17:51.399529+00 2025-02-20 11:17:51.399535+00 f t APLONAL 5 mg x 12 comp. Konig Comprimidos antiinflamatorios ALL \N 6 2 3 +553 2025-02-20 11:17:51.40361+00 2025-02-20 11:17:51.403618+00 f t APLONAL 5% INY. x 50 cc Konig Inyección antiinflamatoria ALL \N 6 2 10 +554 2025-02-20 11:17:51.407788+00 2025-02-20 11:17:51.407797+00 f t APOQUEL 16 mg x 20 comp. Zoetis Comprimidos antipruríticos DOG \N 6 2 3 +555 2025-02-20 11:17:51.411828+00 2025-02-20 11:17:51.411836+00 f t APOQUEL 3.6 mg x 20 comp. Zoetis Comprimidos antipruríticos DOG \N 6 2 3 +556 2025-02-20 11:17:51.416215+00 2025-02-20 11:17:51.416222+00 f t APOQUEL 5.4 mg x 20 comp. Zoetis Comprimidos antipruríticos DOG \N 6 2 3 +557 2025-02-20 11:17:51.420846+00 2025-02-20 11:17:51.420851+00 f t AQUADENT x 250 ml Solución para higiene bucal ALL \N 7 2 7 +558 2025-02-20 11:17:51.424978+00 2025-02-20 11:17:51.424985+00 f t ARTRIN PLUS x 18 comp. Comprimidos para articulaciones ALL \N 6 2 3 +559 2025-02-20 11:17:51.429276+00 2025-02-20 11:17:51.429283+00 f t ARTRIN x 30 comp. Comprimidos para articulaciones ALL \N 6 2 3 +560 2025-02-20 11:17:51.43324+00 2025-02-20 11:17:51.433246+00 f t ARTROFEN x 21 comp. Aton Comprimidos antiinflamatorios ALL \N 6 2 3 +561 2025-02-20 11:17:51.437649+00 2025-02-20 11:17:51.437654+00 f t ARTROGLYCAN GRANULADO x 300 g. Syntex Granulado para articulaciones ALL \N 6 2 25 +562 2025-02-20 11:17:51.441335+00 2025-02-20 11:17:51.44134+00 f t ARTROGLYCAN ORAL x 90 comp. Comprimidos para articulaciones ALL \N 6 2 3 +563 2025-02-20 11:17:51.445379+00 2025-02-20 11:17:51.445385+00 f t ARTROGLYCAN PLUS x 60 comp. Comprimidos para articulaciones ALL \N 6 2 3 +564 2025-02-20 11:17:51.449175+00 2025-02-20 11:17:51.44918+00 f t ARTROSAN x 10 cc Konig Inyección antiinflamatoria ALL \N 6 2 10 +565 2025-02-20 11:17:51.453404+00 2025-02-20 11:17:51.453411+00 f t ARTROVET 9 bl.x 10 comp. Zoovet Comprimidos para articulaciones ALL \N 6 2 3 +566 2025-02-20 11:17:51.457458+00 2025-02-20 11:17:51.457463+00 f t ARTROVET PLUS Hospitalario 30 bl.x 5 c Zoovet Comprimidos para articulaciones ALL \N 6 2 3 +567 2025-02-20 11:17:51.46112+00 2025-02-20 11:17:51.461126+00 f t ATOMO DERMASUL x 100 g Imvi Polvo desinfectante ALL \N 7 2 6 +568 2025-02-20 11:17:51.464787+00 2025-02-20 11:17:51.464796+00 f t ATOMO DESINFLAM. x 100 g Imvi Polvo antiinflamatorio ALL \N 6 2 6 +569 2025-02-20 11:17:51.468786+00 2025-02-20 11:17:51.468792+00 f t ATOMO DESINFLAM. x 200 g Imvi Polvo antiinflamatorio ALL \N 6 2 6 +570 2025-02-20 11:17:51.47305+00 2025-02-20 11:17:51.473059+00 f t ATOMO DESINFLAM. x 400 g Imvi Polvo antiinflamatorio ALL \N 6 2 6 +571 2025-02-20 11:17:51.476982+00 2025-02-20 11:17:51.476988+00 f t ATOMO DESINFLAM.. x 30 g Imvi Polvo antiinflamatorio ALL \N 6 2 6 +572 2025-02-20 11:17:51.481392+00 2025-02-20 11:17:51.481397+00 f t ATOMO PAPILOMATOSIS x 30 g Imvi Polvo para papilomatosis ALL \N 8 2 6 +573 2025-02-20 11:17:51.485047+00 2025-02-20 11:17:51.485052+00 f t ATONIL Fco.Amp. x 100 cc Aton Solución hepática ALL \N 8 2 7 +574 2025-02-20 11:17:51.489602+00 2025-02-20 11:17:51.489608+00 f t ATRIBEN INY. x 20 cc Holliday Inyección antibiótica ALL \N 9 2 10 +575 2025-02-20 11:17:51.493362+00 2025-02-20 11:17:51.493368+00 f t ATROPINA SULFATO AL 1% x 10 ml J.M. Solución de atropina ALL \N 8 2 7 +576 2025-02-20 11:17:51.497079+00 2025-02-20 11:17:51.497085+00 f t ATROPINA SULFATO AL 1% x 50 ml J.M. Solución de atropina ALL \N 8 2 7 +577 2025-02-20 11:17:51.501493+00 2025-02-20 11:17:51.5015+00 f t ATROPINA SULFATO x 10 cc Von Franken Solución de atropina ALL \N 8 2 7 +578 2025-02-20 11:17:51.507635+00 2025-02-20 11:17:51.507643+00 f t B-COMPLEX 6 polvos + 6 diluyentes Richmond Polvos vitamínicos ALL \N 10 2 26 +579 2025-02-20 11:17:51.51215+00 2025-02-20 11:17:51.512158+00 f t BACTOFAGO x 6 amp. x 3 cc Aton Solución para flora intestinal ALL \N 9 2 7 +580 2025-02-20 11:17:51.518466+00 2025-02-20 11:17:51.518473+00 f t BETAMETASONA 0.5% LOCION x 30 ml INTERBIOL Loción de betametasona ALL \N 11 2 27 +581 2025-02-20 11:17:51.523084+00 2025-02-20 11:17:51.523089+00 f t BIO CLIN x 250 ml Holliday Enjuague bucal ALL \N 7 2 28 +582 2025-02-20 11:17:51.526804+00 2025-02-20 11:17:51.526812+00 f t BISOLVON F INYECTABLE x 50 cc Inyección para problemas respiratorios ALL \N 8 2 10 +583 2025-02-20 11:17:51.531361+00 2025-02-20 11:17:51.531368+00 f t BRO K 300 x 150 comp. Janvier Comprimidos para bronquios ALL \N 8 2 3 +584 2025-02-20 11:17:51.535742+00 2025-02-20 11:17:51.535752+00 f t BRO K 300 x 20 comp. Janvier Comprimidos para bronquios ALL \N 8 2 3 +585 2025-02-20 11:17:51.539828+00 2025-02-20 11:17:51.539836+00 f t BRO K 600 x 120 comp. Janvier Comprimidos para bronquios ALL \N 8 2 3 +586 2025-02-20 11:17:51.544347+00 2025-02-20 11:17:51.544355+00 f t BRO K 600 x 20 comp. Janvier Comprimidos para bronquios ALL \N 8 2 3 +587 2025-02-20 11:17:51.548899+00 2025-02-20 11:17:51.548905+00 f t BRONCO TOS FORTE JBE. x 100 ml LAMAR Jarabe para la tos ALL \N 8 2 29 +588 2025-02-20 11:17:51.553054+00 2025-02-20 11:17:51.553066+00 f t BRONCO TOS JARABE x 100 ml LAMAR Jarabe para la tos ALL \N 8 2 29 +589 2025-02-20 11:17:51.55692+00 2025-02-20 11:17:51.556925+00 f t BRONQUIBEST x 100 ml Nort Solución para problemas respiratorios ALL \N 8 2 7 +590 2025-02-20 11:17:51.560862+00 2025-02-20 11:17:51.560869+00 f t BRONQUINORT x 50 ml Solución para problemas respiratorios ALL \N 8 2 7 +591 2025-02-20 11:17:51.564995+00 2025-02-20 11:17:51.565004+00 f t BUCAL VET x 100 ml Zoovet Solución para higiene bucal ALL \N 7 2 7 +592 2025-02-20 11:17:51.56891+00 2025-02-20 11:17:51.568916+00 f t BUCAL VET x 250 ml Zoovet Solución para higiene bucal ALL \N 7 2 7 +593 2025-02-20 11:17:51.572955+00 2025-02-20 11:17:51.572961+00 f t BUSCAPINA INYECTABLE x 50 cc Inyección antiespasmódica ALL \N 8 2 10 +594 2025-02-20 11:17:51.576691+00 2025-02-20 11:17:51.576699+00 f t BUTORMIN INY. x 10 ml Holliday Inyección para problemas respiratorios ALL \N 8 2 10 +595 2025-02-20 11:17:51.581022+00 2025-02-20 11:17:51.581029+00 f t CAL SODADA x 1 KG Cal sodada ALL \N 8 2 6 +596 2025-02-20 11:17:51.585195+00 2025-02-20 11:17:51.585201+00 f t CALCICOMPLEX 3000mg x 30 comp. Kualcos Comprimidos de calcio ALL \N 10 2 3 +597 2025-02-20 11:17:51.589234+00 2025-02-20 11:17:51.58924+00 f t CALCIFICANTE INTEGRAL sobre x 100 g Paraqueños Polvo calcificante ALL \N 8 2 6 +598 2025-02-20 11:17:51.593262+00 2025-02-20 11:17:51.593268+00 f t CALCIFICANTE P-G x 60 comp. Comprimidos calcificantes ALL \N 8 2 3 +599 2025-02-20 11:17:51.597626+00 2025-02-20 11:17:51.597632+00 f t CALCIO JARABE x 100 cc J.M. Jarabe de calcio ALL \N 10 2 29 +600 2025-02-20 11:17:51.60196+00 2025-02-20 11:17:51.601967+00 f t CALCIVET FORTE x 150 g Aton Suplemento de calcio ALL \N 10 2 6 +601 2025-02-20 11:17:51.605807+00 2025-02-20 11:17:51.605812+00 f t CALCIVET FORTE x 250 g Aton Suplemento de calcio ALL \N 10 2 6 +602 2025-02-20 11:17:51.609765+00 2025-02-20 11:17:51.609773+00 f t CALCIVET x 100 comp. Aton Comprimidos de calcio ALL \N 10 2 3 +603 2025-02-20 11:17:51.61409+00 2025-02-20 11:17:51.614096+00 f t CALCIVET x 50 comp. Aton Comprimidos de calcio ALL \N 10 2 3 +604 2025-02-20 11:17:51.618194+00 2025-02-20 11:17:51.618201+00 f t CALMAVET K x 50 cc Vetanco Solución calmante ALL \N 8 2 7 +605 2025-02-20 11:17:51.62248+00 2025-02-20 11:17:51.622488+00 f t CARDIAL B 10 mg x 20 comp. Holliday Comprimidos cardíacos ALL \N 8 2 3 +606 2025-02-20 11:17:51.626797+00 2025-02-20 11:17:51.626805+00 f t CARDIAL B 2.5 mg x 20 comp. Holliday Comprimidos cardíacos ALL \N 8 2 3 +607 2025-02-20 11:17:51.631245+00 2025-02-20 11:17:51.631252+00 f t CARDIAL B 5 mg x 20 comp. Holliday Comprimidos cardíacos ALL \N 8 2 3 +608 2025-02-20 11:17:51.63506+00 2025-02-20 11:17:51.635066+00 f t CARDIAL PALATABLE 5 mg x 30 comp. Holliday Comprimidos cardíacos ALL \N 8 2 3 +609 2025-02-20 11:17:51.638936+00 2025-02-20 11:17:51.638942+00 f t CARDIO 3 10 Kg x 20 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +610 2025-02-20 11:17:51.643261+00 2025-02-20 11:17:51.643267+00 f t CARDIO 3 20 Kg x 20 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +611 2025-02-20 11:17:51.647393+00 2025-02-20 11:17:51.647399+00 f t CARDIO 3 40 Kg x 20 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +612 2025-02-20 11:17:51.651392+00 2025-02-20 11:17:51.651397+00 f t CARDIO 3 5 Kg x 20 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +613 2025-02-20 11:17:51.655323+00 2025-02-20 11:17:51.655328+00 f t CARDIOBENDAN 10 mg x 100 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +614 2025-02-20 11:17:51.659115+00 2025-02-20 11:17:51.65912+00 f t CARDIOBENDAN 2,5 mg x 100 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +615 2025-02-20 11:17:51.662878+00 2025-02-20 11:17:51.662883+00 f t CARDIOBENDAN 5 mg x 100 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +616 2025-02-20 11:17:51.666807+00 2025-02-20 11:17:51.666813+00 f t CARDIODARONA 200 mg x 20 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +617 2025-02-20 11:17:51.670864+00 2025-02-20 11:17:51.67087+00 f t CARDIODARONA 50 mg x 20 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +618 2025-02-20 11:17:51.674879+00 2025-02-20 11:17:51.674885+00 f t CARDIONAFIL 25 mg x 10 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +619 2025-02-20 11:17:51.679017+00 2025-02-20 11:17:51.679025+00 f t CARDIONAFIL 50 mg x 10 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +620 2025-02-20 11:17:51.683203+00 2025-02-20 11:17:51.683209+00 f t CARDIOTENOL 12,50 mg x 20 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +621 2025-02-20 11:17:51.687163+00 2025-02-20 11:17:51.687169+00 f t CARDIOTENOL 25 mg x 20 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +622 2025-02-20 11:17:51.691358+00 2025-02-20 11:17:51.691364+00 f t CARDIOTENOL 6,25 mg x 20 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +623 2025-02-20 11:17:51.69541+00 2025-02-20 11:17:51.695416+00 f t CARDIOVIER 2.5 x 100 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +624 2025-02-20 11:17:51.699394+00 2025-02-20 11:17:51.6994+00 f t CARDIOVIER 2.5 x 20 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +625 2025-02-20 11:17:51.703237+00 2025-02-20 11:17:51.703243+00 f t CARDIOVIER E 10 x 100 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +626 2025-02-20 11:17:51.707039+00 2025-02-20 11:17:51.707045+00 f t CARDIOVIER E 10 x 20 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +627 2025-02-20 11:17:51.710624+00 2025-02-20 11:17:51.710632+00 f t CARDIOVIER E 20 x 100 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +628 2025-02-20 11:17:51.714458+00 2025-02-20 11:17:51.714464+00 f t CARDIOVIER E 20 x 20 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +629 2025-02-20 11:17:51.718246+00 2025-02-20 11:17:51.718251+00 f t CARDIOZEPRIL 10 mg x 20 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +630 2025-02-20 11:17:51.722167+00 2025-02-20 11:17:51.722174+00 f t CARDIOZEPRIL 2.5 mg x 20 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +631 2025-02-20 11:17:51.726115+00 2025-02-20 11:17:51.726121+00 f t CARDIOZEPRIL 5 mg x 20 comp. Kualcos Comprimidos cardíacos ALL \N 8 2 3 +632 2025-02-20 11:17:51.7299+00 2025-02-20 11:17:51.729905+00 f t CARTIGEN x 100 comp. Von Franken Comprimidos para articulaciones ALL \N 8 2 3 +633 2025-02-20 11:17:51.733967+00 2025-02-20 11:17:51.733974+00 f t CARTILAGO FORTE CD x 64 comp. Janvier Comprimidos para articulaciones ALL \N 8 2 3 +634 2025-02-20 11:17:51.737741+00 2025-02-20 11:17:51.737746+00 f t CARTILAGO FORTE CLASSIC x 120 comp. Janvier Comprimidos para articulaciones ALL \N 8 2 3 +635 2025-02-20 11:17:51.74191+00 2025-02-20 11:17:51.741919+00 f t CARTILAGO FORTE CLASSIC x 32 comp. Janvier Comprimidos para articulaciones ALL \N 8 2 3 +636 2025-02-20 11:17:51.746565+00 2025-02-20 11:17:51.746571+00 f t CARTILAGO Forte SENIOR x 120 comp. Janvier Comprimidos para articulaciones ALL \N 8 2 3 +637 2025-02-20 11:17:51.750587+00 2025-02-20 11:17:51.750593+00 f t CARTILAGO Forte SENIOR x 32 comp. Janvier Comprimidos para articulaciones ALL \N 8 2 3 +638 2025-02-20 11:17:51.754724+00 2025-02-20 11:17:51.75473+00 f t CEFALEXINA - RIFAMPICINA x 30 comp. Idv Comprimidos antibióticos ALL \N 9 2 3 +639 2025-02-20 11:17:51.758653+00 2025-02-20 11:17:51.758659+00 f t CEFALEXINA PYO 500 x 100 comp. Idv Comprimidos antibióticos ALL \N 9 2 3 +640 2025-02-20 11:17:51.76293+00 2025-02-20 11:17:51.762936+00 f t CEFALEXINA PYO 500 x 500 comp. Idv Comprimidos antibióticos ALL \N 9 2 3 +641 2025-02-20 11:17:51.766515+00 2025-02-20 11:17:51.766521+00 f t CERENIA x 20 cc Zoetis Solución antiemética ALL \N 8 2 10 +642 2025-02-20 11:17:51.770076+00 2025-02-20 11:17:51.770081+00 f t CISTICALM x 60 comp. Bechlab Comprimidos para problemas urinarios ALL \N 8 2 3 +643 2025-02-20 11:17:51.773816+00 2025-02-20 11:17:51.773823+00 f t CLARIFICADOR x 250 ml Solución clarificadora ALL \N 8 2 7 +644 2025-02-20 11:17:51.777844+00 2025-02-20 11:17:51.77785+00 f t CLORALEN x 5 ml Holliday Solución antibiótica ALL \N 9 2 7 +645 2025-02-20 11:17:51.781648+00 2025-02-20 11:17:51.781657+00 f t CLORHEXIDINA x 1000 ml Holliday Solución antiséptica ALL \N 7 2 7 +646 2025-02-20 11:17:51.786097+00 2025-02-20 11:17:51.786102+00 f t CLORMADINONA 2 mg x 100 comp. LAMAR Comprimidos hormonales ALL \N 8 2 3 +647 2025-02-20 11:17:51.789888+00 2025-02-20 11:17:51.789894+00 f t CLORMADINONA 2 mg x 400 comp. Kualcos Comprimidos hormonales ALL \N 8 2 3 +648 2025-02-20 11:17:51.793732+00 2025-02-20 11:17:51.793739+00 f t CLORMADINONA 4 mg x 100 comp. Kualcos Comprimidos hormonales ALL \N 8 2 3 +649 2025-02-20 11:17:51.797793+00 2025-02-20 11:17:51.797799+00 f t CLOROXILENOL 5% x 1000 ml Solución antiséptica ALL \N 7 2 7 +650 2025-02-20 11:17:51.801913+00 2025-02-20 11:17:51.80192+00 f t CLOROXILENOL 5% x 5000 ml Solución antiséptica ALL \N 7 2 7 +651 2025-02-20 11:17:51.806193+00 2025-02-20 11:17:51.806202+00 f t COAGULANTE PAUL x 10 cc Solución coagulante ALL \N 8 2 7 +652 2025-02-20 11:17:51.810195+00 2025-02-20 11:17:51.810201+00 f t COLOMBO ANTIP. INT x 50 g Ruminal Polvo antiparasitario ALL \N 8 2 6 +653 2025-02-20 11:17:51.814281+00 2025-02-20 11:17:51.814288+00 f t COLOMBO HEPAT plus x 100 g Ruminal Polvo hepático ALL \N 8 2 6 +654 2025-02-20 11:17:51.818512+00 2025-02-20 11:17:51.818518+00 f t COLOMBO MICOL x 100 g Ruminal Polvo antimicótico ALL \N 8 2 6 +655 2025-02-20 11:17:51.822427+00 2025-02-20 11:17:51.822432+00 f t COLOMBO REPLUME x 100 g Ruminal Polvo para plumaje ALL \N 8 2 6 +656 2025-02-20 11:17:51.826071+00 2025-02-20 11:17:51.826077+00 f t COLOMBO REPRODUCTOR x 100 g Ruminal Polvo para reproducción ALL \N 8 2 6 +657 2025-02-20 11:17:51.829566+00 2025-02-20 11:17:51.829573+00 f t COLOMBO SPORT x 100 g Ruminal Polvo para rendimiento deportivo ALL \N 8 2 6 +658 2025-02-20 11:17:51.833096+00 2025-02-20 11:17:51.833102+00 f t COLOMBO TOL x 100 ml Ruminal Solución para problemas digestivos ALL \N 8 2 7 +659 2025-02-20 11:17:51.837167+00 2025-02-20 11:17:51.837175+00 f t COLOMBO TRICHOMONICIDA x 100 g Ruminal Polvo antiparasitario ALL \N 8 2 6 +660 2025-02-20 11:17:51.841095+00 2025-02-20 11:17:51.8411+00 f t COLOMBO TRICHONAZOL x 100 g Ruminal Polvo antimicótico ALL \N 8 2 6 +661 2025-02-20 11:17:51.845208+00 2025-02-20 11:17:51.845216+00 f t COLOMBO VITARRESPIRATORIO x 100 g Ruminal Polvo vitamínico respiratorio ALL \N 8 2 6 +662 2025-02-20 11:17:51.849124+00 2025-02-20 11:17:51.849129+00 f t COLOTRIN +HA CAT PASTA x 80 g JM Pasta para gatos CAT \N 8 2 8 +663 2025-02-20 11:17:51.853282+00 2025-02-20 11:17:51.853287+00 f t COLOTRIN +HA DOG PASTA x 200 g JM Pasta para perros DOG \N 8 2 8 +664 2025-02-20 11:17:51.857001+00 2025-02-20 11:17:51.857007+00 f t COLOTRIN +HA DOG PASTA x 80 g JM Pasta para perros DOG \N 8 2 8 +665 2025-02-20 11:17:51.861215+00 2025-02-20 11:17:51.861221+00 f t COLOTRIN x 30 comp. JM Comprimidos palatables ALL \N 8 2 3 +666 2025-02-20 11:17:51.865233+00 2025-02-20 11:17:51.865238+00 f t COMPLEJO VITAM.HIDRO.x10 cc Von Franken Solución vitamínica hidratante ALL \N 10 2 7 +667 2025-02-20 11:17:51.869974+00 2025-02-20 11:17:51.86998+00 f t COMPLEJO VITAMINICO x 100 cc J.M. Solución vitamínica ALL \N 10 2 7 +668 2025-02-20 11:17:51.874879+00 2025-02-20 11:17:51.874889+00 f t COMPLEMIN 3000mg x 30 comp. Kualcos Comprimidos vitamínicos ALL \N 10 2 3 +669 2025-02-20 11:17:51.879372+00 2025-02-20 11:17:51.879378+00 f t CONDROITIN iny. x 5 cc Labyes Inyección para articulaciones ALL \N 8 2 10 +670 2025-02-20 11:17:51.883656+00 2025-02-20 11:17:51.883662+00 f t CONDROVET FORCE HA x 10 comp. Vetanco Comprimidos para articulaciones ALL \N 8 2 3 +671 2025-02-20 11:17:51.887746+00 2025-02-20 11:17:51.887752+00 f t CONDROVITAL POLVO x 110 g Bechlab Polvo para articulaciones ALL \N 8 2 6 +672 2025-02-20 11:17:51.891768+00 2025-02-20 11:17:51.891778+00 f t CONTAL 15 mg x 100 comp. Janvier Comprimidos para problemas digestivos ALL \N 8 2 3 +673 2025-02-20 11:17:51.895889+00 2025-02-20 11:17:51.895895+00 f t CONTAL 15 mg x 25 comp. Janvier Comprimidos para problemas digestivos ALL \N 8 2 3 +674 2025-02-20 11:17:51.900194+00 2025-02-20 11:17:51.900201+00 f t CONTAL 15 mg x 300 comp. Janvier Comprimidos para problemas digestivos ALL \N 8 2 3 +675 2025-02-20 11:17:51.904037+00 2025-02-20 11:17:51.904043+00 f t CONTAL 150 mg x 100 comp. Janvier Comprimidos para problemas digestivos ALL \N 8 2 3 +676 2025-02-20 11:17:51.907957+00 2025-02-20 11:17:51.907963+00 f t CONTAL 150 mg x 20 comp. Janvier Comprimidos para problemas digestivos ALL \N 8 2 3 +1192 2025-09-22 17:07:12+00 2025-09-22 17:07:12+00 f t Tribiotic \N Antibiótico de amplio espectro ALL \N 9 2 10 +677 2025-02-20 11:17:51.911978+00 2025-02-20 11:17:51.912012+00 f t CONTAL 60 mg x 180 comp. Janvier Comprimidos para problemas digestivos ALL \N 8 2 3 +678 2025-02-20 11:17:51.915814+00 2025-02-20 11:17:51.91582+00 f t CONTAL 60 mg x 30 comp. Janvier Comprimidos para problemas digestivos ALL \N 8 2 3 +679 2025-02-20 11:17:51.919798+00 2025-02-20 11:17:51.919804+00 f t COPROBECH PLUS POLVO x 100 g BechLab Polvo para problemas digestivos ALL \N 8 2 6 +680 2025-02-20 11:17:51.923757+00 2025-02-20 11:17:51.923764+00 f t COPRODIGEST x 21 comp. Aton Comprimidos digestivos ALL \N 8 2 3 +681 2025-02-20 11:17:51.927867+00 2025-02-20 11:17:51.927873+00 f t CORTI-DURAL 20 x 5 cc Konig Inyección de corticoide ALL \N 11 2 10 +682 2025-02-20 11:17:51.93188+00 2025-02-20 11:17:51.931887+00 f t CYTOPOINT 20 mg x 2 frasco x 1ml Zoetis Solución inyectable para alergias DOG \N 6 2 10 +683 2025-02-20 11:17:51.935752+00 2025-02-20 11:17:51.935758+00 f t CYTOPOINT 40 mg x 2 frasco x 1ml Zoetis Solución inyectable para alergias DOG \N 6 2 10 +684 2025-02-20 11:17:51.939973+00 2025-02-20 11:17:51.939981+00 f t DAVITAN-C x 60 comp. Aton Comprimidos vitamínicos ALL \N 10 2 3 +685 2025-02-20 11:17:51.944394+00 2025-02-20 11:17:51.9444+00 f t DAZAM (Diazepam 5 mg) x 20 cc Richmond Solución de diazepam ALL \N 8 2 10 +686 2025-02-20 11:17:51.948794+00 2025-02-20 11:17:51.9488+00 f t DENTA-FRESH x 250 ml Solución para higiene bucal ALL \N 7 2 7 +687 2025-02-20 11:17:51.952874+00 2025-02-20 11:17:51.95288+00 f t DENTAL PLAX x 250 ml Solución para higiene bucal ALL \N 7 2 7 +688 2025-02-20 11:17:51.956544+00 2025-02-20 11:17:51.95655+00 f t DERM CAPS POMO x 30 g IDV Pasta dermatológica ALL \N 8 2 8 +689 2025-02-20 11:17:51.960451+00 2025-02-20 11:17:51.960457+00 f t DERMIL INY 3 fco. x 10 ml Inyección antihistamínica ALL \N 8 2 10 +690 2025-02-20 11:17:51.964957+00 2025-02-20 11:17:51.964966+00 f t DERMIL x 100 comp. Comprimidos antihistamínicos ALL \N 8 2 3 +691 2025-02-20 11:17:51.969592+00 2025-02-20 11:17:51.9696+00 f t DERMIL x 400 comp. Comprimidos antihistamínicos ALL \N 8 2 3 +692 2025-02-20 11:17:51.974018+00 2025-02-20 11:17:51.974025+00 f t DERMODENE LOCION x 100 ml Mayor Loción dermatológica ALL \N 8 2 27 +693 2025-02-20 11:17:51.977991+00 2025-02-20 11:17:51.977997+00 f t DERMOSEDAN Clorhexidina 4% x 50 ml IDV Solución antiséptica ALL \N 7 2 7 +694 2025-02-20 11:17:51.981685+00 2025-02-20 11:17:51.981692+00 f t DERMOSEDAN MRSA Nano Ag SPRAY x 200 ml IDV Spray antiséptico ALL \N 7 2 13 +695 2025-02-20 11:17:51.985462+00 2025-02-20 11:17:51.985468+00 f t DERMOSEDAN MRSA NANO AG x 50 g IDV Solución antiséptica ALL \N 7 2 7 +696 2025-02-20 11:17:51.989353+00 2025-02-20 11:17:51.989361+00 f t DERMOSEDAN Sol. Clorhexidina 4% x 1000 g IDV Solución antiséptica ALL \N 7 2 7 +697 2025-02-20 11:17:51.99305+00 2025-02-20 11:17:51.993056+00 f t DERMOSEDAN Spray Sol. Clorhexidina 4% x 200 g IDV Spray antiséptico ALL \N 7 2 13 +698 2025-02-20 11:17:51.996755+00 2025-02-20 11:17:51.996761+00 f t DERTRISOLE CREMA x 100 g Syntex Crema dermatológica ALL \N 8 2 20 +699 2025-02-20 11:17:52.000341+00 2025-02-20 11:17:52.000346+00 f t DESMOPRESINA 5 ug/ml x 10 cc Biogenesis Solución de desmopresina ALL \N 8 2 7 +700 2025-02-20 11:17:52.004083+00 2025-02-20 11:17:52.004088+00 f t DETOR 0,5 mg x 10 cc Richmond Solución de medetomidina ALL \N 8 2 7 +701 2025-02-20 11:17:52.007885+00 2025-02-20 11:17:52.007891+00 f t DETOR 0,5 mg x 50 cc Richmond Solución de medetomidina ALL \N 8 2 7 +702 2025-02-20 11:17:52.01157+00 2025-02-20 11:17:52.011576+00 f t DEXA 20 mg/ml x 20 cc Richmond Inyección de dexametasona ALL \N 11 2 10 +703 2025-02-20 11:17:52.015128+00 2025-02-20 11:17:52.015134+00 f t DEXA 2000 x 25 cc SHOCK Inyección de dexametasona ALL \N 11 2 10 +704 2025-02-20 11:17:52.018876+00 2025-02-20 11:17:52.018882+00 f t DEXA 4 iny x 50 cc BechLab Inyección de dexametasona ALL \N 11 2 10 +705 2025-02-20 11:17:52.022366+00 2025-02-20 11:17:52.022372+00 f t DEXA 4 iny x 50 cc JM Inyección de dexametasona ALL \N 11 2 10 +706 2025-02-20 11:17:52.026032+00 2025-02-20 11:17:52.026037+00 f t DEXA 400 x 50 cc Inyección de dexametasona ALL \N 11 2 10 +707 2025-02-20 11:17:52.029798+00 2025-02-20 11:17:52.029803+00 f t DEXAMAI x 50 cc Lumai Inyección de dexametasona ALL \N 11 2 10 +708 2025-02-20 11:17:52.033274+00 2025-02-20 11:17:52.033279+00 f t DEXAMETASONA 0.5 mg x 100 comp. Aton Comprimidos de dexametasona ALL \N 11 2 3 +709 2025-02-20 11:17:52.037159+00 2025-02-20 11:17:52.037164+00 f t DEXAMETASONA 0.5 mg x 100 comp. Kualcos Comprimidos de dexametasona ALL \N 11 2 3 +710 2025-02-20 11:17:52.040714+00 2025-02-20 11:17:52.04072+00 f t DEXAMETASONA 0.5 mg x 100 comp. LAMAR Comprimidos de dexametasona ALL \N 11 2 3 +711 2025-02-20 11:17:52.044231+00 2025-02-20 11:17:52.044237+00 f t DEXAMETASONA 0.5 mg x 20 comp. LAMAR Comprimidos de dexametasona ALL \N 11 2 3 +712 2025-02-20 11:17:52.048187+00 2025-02-20 11:17:52.048192+00 f t DEXAMETASONA 2 mg x 50 cc J.M. Inyección de dexametasona ALL \N 11 2 10 +713 2025-02-20 11:17:52.051905+00 2025-02-20 11:17:52.051913+00 f t DEXAMETASONA 4 mg 2 fcos x 20 cc LAMAR Inyección de dexametasona ALL \N 11 2 10 +714 2025-02-20 11:17:52.055519+00 2025-02-20 11:17:52.055525+00 f t DEXAMETASONA 4 mg x 20 cc INTERBIOL Inyección de dexametasona ALL \N 11 2 10 +715 2025-02-20 11:17:52.059269+00 2025-02-20 11:17:52.059275+00 f t DEXAMETASONA 4 mg x 50 cc INTERBIOL Inyección de dexametasona ALL \N 11 2 10 +716 2025-02-20 11:17:52.063165+00 2025-02-20 11:17:52.063171+00 f t DEXAMETASONA 4 mg x 50 cc Kualcos Inyección de dexametasona ALL \N 11 2 10 +717 2025-02-20 11:17:52.066896+00 2025-02-20 11:17:52.066902+00 f t DEXAMETASONA VF 2mg 2x20 cc Von Franken Inyección de dexametasona ALL \N 11 2 10 +718 2025-02-20 11:17:52.070676+00 2025-02-20 11:17:52.070681+00 f t DEXASHOCK 20 mg x 25 cc J.M. Inyección de dexametasona ALL \N 11 2 10 +719 2025-02-20 11:17:52.074307+00 2025-02-20 11:17:52.074313+00 f t DIAFIN 2 x 20 cc Konig Solución para problemas digestivos ALL \N 8 2 7 +720 2025-02-20 11:17:52.078178+00 2025-02-20 11:17:52.078184+00 f t DIAFIN N x 20 cc Konig Solución para problemas digestivos ALL \N 8 2 7 +721 2025-02-20 11:17:52.082185+00 2025-02-20 11:17:52.082191+00 f t DIAZEPAM Zoovet x 50 cc Zoovet Solución de diazepam ALL \N 8 2 10 +722 2025-02-20 11:17:52.085766+00 2025-02-20 11:17:52.085772+00 f t DIAZEPAN INY. 2 fcos 5 mg x 10 cc LAMAR Inyección de diazepam ALL \N 8 2 10 +723 2025-02-20 11:17:52.089945+00 2025-02-20 11:17:52.089951+00 f t DIAZEPET 0.5% x 10 ml Solución de diazepam ALL \N 8 2 7 +724 2025-02-20 11:17:52.093388+00 2025-02-20 11:17:52.093394+00 f t DIGITALICO gotas x 20 ml Paraqueños Gotas cardíacas ALL \N 8 2 2 +725 2025-02-20 11:17:52.097282+00 2025-02-20 11:17:52.097288+00 f t DIPIRONA CHINFIELD iny. x 100 ml Inyección de dipirona ALL \N 6 2 10 +726 2025-02-20 11:17:52.10097+00 2025-02-20 11:17:52.100975+00 f t DIURENE 40 mg x 100 comp. Holliday Comprimidos diuréticos ALL \N 8 2 3 +727 2025-02-20 11:17:52.104515+00 2025-02-20 11:17:52.104524+00 f t DIURENE 40 mg x 30 comp. Holliday Comprimidos diuréticos ALL \N 8 2 3 +728 2025-02-20 11:17:52.108631+00 2025-02-20 11:17:52.108636+00 f t DIURETIC x 50 cc Chienfield Solución diurética ALL \N 8 2 7 +729 2025-02-20 11:17:52.112383+00 2025-02-20 11:17:52.112388+00 f t DOLOPROFEN x 60 comp. Afford Comprimidos antiinflamatorios ALL \N 6 2 3 +730 2025-02-20 11:17:52.116252+00 2025-02-20 11:17:52.116261+00 f t DOMPERIDONA GOTAS x 20 ml Kualcos Gotas para problemas digestivos ALL \N 8 2 2 +731 2025-02-20 11:17:52.119893+00 2025-02-20 11:17:52.119899+00 f t DOMPERIDONA INY. x 50 cc Kualcos Inyección para problemas digestivos ALL \N 8 2 10 +732 2025-02-20 11:17:52.123941+00 2025-02-20 11:17:52.123946+00 f t DOZILAM x 10 ml Holliday Solución de midazolam ALL \N 8 2 7 +733 2025-02-20 11:17:52.127886+00 2025-02-20 11:17:52.127895+00 f t DRIPTOL 100 mg x 20 comp. Comprimidos antiinflamatorios ALL \N 6 2 3 +734 2025-02-20 11:17:52.131667+00 2025-02-20 11:17:52.131673+00 f t DRIPTOL 25 mg x 20 comp. Comprimidos antiinflamatorios ALL \N 6 2 3 +735 2025-02-20 11:17:52.135604+00 2025-02-20 11:17:52.135609+00 f t DUOSECRETINA x 10 comp. Zoovet Comprimidos antidiarreicos ALL \N 8 2 3 +736 2025-02-20 11:17:52.13918+00 2025-02-20 11:17:52.139185+00 f t DYNAMIDE x 30 comp. Comprimidos para problemas digestivos ALL \N 8 2 3 +737 2025-02-20 11:17:52.142792+00 2025-02-20 11:17:52.142798+00 f t ECP ESTRADIOL x 10 cc Konig Solución de estradiol ALL \N 8 2 7 +738 2025-02-20 11:17:52.146335+00 2025-02-20 11:17:52.146341+00 f t ELECTROLITOS x 32 g Lumai Polvo de electrolitos ALL \N 10 2 6 +739 2025-02-20 11:17:52.150129+00 2025-02-20 11:17:52.150134+00 f t ENALACTON 10 mg x 100 comp. JENNER Comprimidos cardíacos ALL \N 8 2 3 +740 2025-02-20 11:17:52.15415+00 2025-02-20 11:17:52.15416+00 f t ENALACTON 10 mg x 20 comp. JENNER Comprimidos cardíacos ALL \N 8 2 3 +741 2025-02-20 11:17:52.15811+00 2025-02-20 11:17:52.158117+00 f t ENALACTON 5 mg x 100 comp. JENNER Comprimidos cardíacos ALL \N 8 2 3 +742 2025-02-20 11:17:52.161884+00 2025-02-20 11:17:52.161889+00 f t ENALACTON 5 mg x 20 comp. JENNER Comprimidos cardíacos ALL \N 8 2 3 +743 2025-02-20 11:17:52.165712+00 2025-02-20 11:17:52.16572+00 f t ENERGIA VITAL x 30 comp. Mayor Comprimidos energizantes ALL \N 8 2 3 +744 2025-02-20 11:17:52.16931+00 2025-02-20 11:17:52.169316+00 f t ENTERO RELAX DUO 50 cc Zoovet Solución para problemas digestivos ALL \N 8 2 7 +745 2025-02-20 11:17:52.17315+00 2025-02-20 11:17:52.173156+00 f t ENTERO SULFATRIM fco x 100 ml LAMAR Solución antibiótica ALL \N 9 2 7 +746 2025-02-20 11:17:52.177258+00 2025-02-20 11:17:52.177265+00 f t ENTEROLECTROL x 100 ml Ruminal Solución de electrolitos ALL \N 10 2 7 +747 2025-02-20 11:17:52.181445+00 2025-02-20 11:17:52.181454+00 f t ENTEROPASMO x 100 ml Aton Solución antidiarreica ALL \N 8 2 7 +748 2025-02-20 11:17:52.186151+00 2025-02-20 11:17:52.186158+00 f t ENTEROSEPT JARABE fr. x 100 ml Kualcos Jarabe antidiarreico ALL \N 8 2 29 +749 2025-02-20 11:17:52.190147+00 2025-02-20 11:17:52.190154+00 f t ENZIMAX x 20 comp. Holliday Comprimidos enzimáticos ALL \N 8 2 3 +750 2025-02-20 11:17:52.194297+00 2025-02-20 11:17:52.194303+00 f t ENZIMOL x 25 comp. Comprimidos enzimáticos ALL \N 8 2 3 +751 2025-02-20 11:17:52.19877+00 2025-02-20 11:17:52.198777+00 f t ENZYM COMPLEX x 21 comp. Aton Comprimidos enzimáticos ALL \N 8 2 3 +752 2025-02-20 11:17:52.2029+00 2025-02-20 11:17:52.202907+00 f t EPIFEN 640mg x 100 comp. Kualcos Comprimidos para problemas urinarios ALL \N 8 2 3 +753 2025-02-20 11:17:52.20729+00 2025-02-20 11:17:52.207299+00 f t EPISOL x 18 comp. Konig Comprimidos para problemas digestivos ALL \N 8 2 3 +754 2025-02-20 11:17:52.211552+00 2025-02-20 11:17:52.211559+00 f t ESTREPTOCARBOCAFTIAZOL x 1000 ml Biogenesis Solución antibiótica ALL \N 9 2 7 +755 2025-02-20 11:17:52.215573+00 2025-02-20 11:17:52.215579+00 f t EUTANASICO ZOOVET x 15 cc Zoovet Solución eutanásica ALL \N 8 2 7 +756 2025-02-20 11:17:52.219607+00 2025-02-20 11:17:52.219618+00 f t EUTHANYLE x 15 cc Solución eutanásica ALL \N 8 2 7 +757 2025-02-20 11:17:52.223895+00 2025-02-20 11:17:52.223905+00 f t EVITOX CRIADORES x 10 LITRO Nieser Solución desinfectante ALL \N 7 2 7 +758 2025-02-20 11:17:52.227815+00 2025-02-20 11:17:52.227821+00 f t FELIFAT x 30 ml Richmond Solución de L-Carnitina CAT \N 8 2 7 +759 2025-02-20 11:17:52.231394+00 2025-02-20 11:17:52.2314+00 f t FELILAX x 40 g JM Pasta laxante CAT \N 8 2 8 +760 2025-02-20 11:17:52.234939+00 2025-02-20 11:17:52.234944+00 f t FENOBARBITAL P-100 x 30 comp. Comprimidos de fenobarbital ALL \N 8 2 3 +761 2025-02-20 11:17:52.238604+00 2025-02-20 11:17:52.23861+00 f t FENOBARBITAL PG x 30 comp. Comprimidos de fenobarbital ALL \N 8 2 3 +762 2025-02-20 11:17:52.242195+00 2025-02-20 11:17:52.242201+00 f t FERROGLOBIN jarabe x 90 ml JENNER Jarabe de hierro ALL \N 10 2 29 +763 2025-02-20 11:17:52.246347+00 2025-02-20 11:17:52.246355+00 f t FLEXAPET x 30 comp. JM Comprimidos de colágeno y magnesio ALL \N 8 2 3 +764 2025-02-20 11:17:52.251061+00 2025-02-20 11:17:52.25107+00 f t FLUNIXIN 5% iny x 20 ml PAUL Inyección antiinflamatoria ALL \N 6 2 10 +765 2025-02-20 11:17:52.260307+00 2025-02-20 11:17:52.260317+00 f t FLUXIMIN 5% x 50 ml Solución antiinflamatoria ALL \N 6 2 7 +766 2025-02-20 11:17:52.266617+00 2025-02-20 11:17:52.266623+00 f t FORMULA ANTIARTROSICA SUSP. x 100 ml Aton Suspensión para articulaciones ALL \N 8 2 5 +767 2025-02-20 11:17:52.270535+00 2025-02-20 11:17:52.270543+00 f t FORMULA ANTIARTROSICA SUSP. x 30 ml Aton Suspensión para articulaciones ALL \N 8 2 5 +768 2025-02-20 11:17:52.274482+00 2025-02-20 11:17:52.27449+00 f t FORMULA ANTIARTROSICA SUSP. x 50 ml Aton Suspensión para articulaciones ALL \N 8 2 5 +769 2025-02-20 11:17:52.278879+00 2025-02-20 11:17:52.278888+00 f t FORTEKOR 5 MG x 28 comp Comprimidos cardíacos ALL \N 8 2 3 +770 2025-02-20 11:17:52.28381+00 2025-02-20 11:17:52.283819+00 f t FOSF-OUT x 200 ml Triton Solución para problemas urinarios ALL \N 8 2 7 +771 2025-02-20 11:17:52.288813+00 2025-02-20 11:17:52.288822+00 f t FOSF-OUT x 500 ml Triton Solución para problemas urinarios ALL \N 8 2 7 +772 2025-02-20 11:17:52.293565+00 2025-02-20 11:17:52.293573+00 f t FRANKAINA x 100 cc Von Franken Solución para problemas digestivos ALL \N 8 2 7 +773 2025-02-20 11:17:52.298229+00 2025-02-20 11:17:52.298236+00 f t FULL HEPAT 100mg x 30 comp. Zoovet Comprimidos hepáticos ALL \N 8 2 3 +774 2025-02-20 11:17:52.302797+00 2025-02-20 11:17:52.302804+00 f t FULL HEPAT 50mg x 30 comp. Zoovet Comprimidos hepáticos ALL \N 8 2 3 +775 2025-02-20 11:17:52.307638+00 2025-02-20 11:17:52.307646+00 f t FUROSEMIDA 40 mg x 20 comp Janvier Comprimidos diuréticos ALL \N 8 2 3 +776 2025-02-20 11:17:52.312302+00 2025-02-20 11:17:52.31231+00 f t FUROSEMIDA 40 mg x 200 comp Janvier Comprimidos diuréticos ALL \N 8 2 3 +777 2025-02-20 11:17:52.316875+00 2025-02-20 11:17:52.316883+00 f t FUROSEMIDA GOTAS 2% x 20 ml Paraqueños Gotas diuréticas ALL \N 8 2 2 +778 2025-02-20 11:17:52.321547+00 2025-02-20 11:17:52.321555+00 f t GASTRINE iny. x 50 cc Richmond Inyección para problemas digestivos ALL \N 8 2 10 +779 2025-02-20 11:17:52.326137+00 2025-02-20 11:17:52.326145+00 f t GEL ANTIPLACAS x 20 ml Bioclin Holliday Gel para higiene bucal ALL \N 7 2 24 +780 2025-02-20 11:17:52.331094+00 2025-02-20 11:17:52.331104+00 f t GERIOOX x 30 comp. Labyes Comprimidos para mascotas mayores ALL \N 8 2 3 +781 2025-02-20 11:17:52.335414+00 2025-02-20 11:17:52.33542+00 f t GLUCO B x 500 ml NORT Solución de glucosa ALL \N 10 2 7 +782 2025-02-20 11:17:52.339226+00 2025-02-20 11:17:52.339233+00 f t GLUCOSA HIPERTONICA 25% x 50 cc LAMAR Solución de glucosa hipertónica ALL \N 10 2 7 +783 2025-02-20 11:17:52.342861+00 2025-02-20 11:17:52.342866+00 f t GRISEOFULVINA 250 mg x 100 comp. LAMAR Comprimidos antimicóticos ALL \N 9 2 3 +784 2025-02-20 11:17:52.347233+00 2025-02-20 11:17:52.347239+00 f t GRISEOFULVINA 250 mg x 20 comp. HOLLYDAY Comprimidos antimicóticos ALL \N 9 2 3 +785 2025-02-20 11:17:52.351315+00 2025-02-20 11:17:52.35132+00 f t GRISEOFULVINA 250 mg x 20 comp. LAMAR Comprimidos antimicóticos ALL \N 9 2 3 +786 2025-02-20 11:17:52.355412+00 2025-02-20 11:17:52.355419+00 f t GRISEOFULVINA 500 mg x 20 comp. HOLLYDAY Comprimidos antimicóticos ALL \N 9 2 3 +787 2025-02-20 11:17:52.359688+00 2025-02-20 11:17:52.359695+00 f t GRUPO B TOTAL 5000 x 50 cc J.M. Solución de vitaminas del grupo B ALL \N 10 2 7 +788 2025-02-20 11:17:52.36354+00 2025-02-20 11:17:52.363546+00 f t HEMOSPEED x 100 ml BechLab Jarabe para problemas sanguíneos ALL \N 8 2 29 +789 2025-02-20 11:17:52.367196+00 2025-02-20 11:17:52.367203+00 f t HEMOVIT 2 g x 100 comp. Comprimidos para problemas sanguíneos ALL \N 8 2 3 +790 2025-02-20 11:17:52.37099+00 2025-02-20 11:17:52.370997+00 f t HEMOVIT 2 g x 30 comp. Comprimidos para problemas sanguíneos ALL \N 8 2 3 +791 2025-02-20 11:17:52.374764+00 2025-02-20 11:17:52.37477+00 f t HEPAGEN x 100 ml Von Franken Solución hepática ALL \N 8 2 7 +792 2025-02-20 11:17:52.378755+00 2025-02-20 11:17:52.378762+00 f t HEPATONE LARGE x 250 cc Richmond Solución hepática ALL \N 8 2 7 +793 2025-02-20 11:17:52.382787+00 2025-02-20 11:17:52.382798+00 f t HEPATONE x 100 cc Richmond Solución hepática ALL \N 8 2 7 +794 2025-02-20 11:17:52.387115+00 2025-02-20 11:17:52.387123+00 f t HEPATOPLUS 1 g x 100 comp. Comprimidos hepáticos ALL \N 8 2 3 +795 2025-02-20 11:17:52.391336+00 2025-02-20 11:17:52.391342+00 f t HEPATOPLUS 1 g x 30 comp. Comprimidos hepáticos ALL \N 8 2 3 +796 2025-02-20 11:17:52.395351+00 2025-02-20 11:17:52.395357+00 f t HEPATOPLUS 2 g x 100 comp. Comprimidos hepáticos ALL \N 8 2 3 +797 2025-02-20 11:17:52.399191+00 2025-02-20 11:17:52.399197+00 f t HEPATOPROTECTOR GOTAS x 15 ml J.M. Gotas hepáticas ALL \N 8 2 2 +798 2025-02-20 11:17:52.403043+00 2025-02-20 11:17:52.40305+00 f t HIDRODERMYL x 120 ml Triton Solución dermatológica ALL \N 8 2 7 +799 2025-02-20 11:17:52.407202+00 2025-02-20 11:17:52.407209+00 f t HIDROXICINA 50 mg x 150 comp. LAMAR Comprimidos antihistamínicos ALL \N 8 2 3 +800 2025-02-20 11:17:52.410924+00 2025-02-20 11:17:52.41093+00 f t HIDROXICINA 50 mg x 30 comp. LAMAR Comprimidos antihistamínicos ALL \N 8 2 3 +801 2025-02-20 11:17:52.414899+00 2025-02-20 11:17:52.414908+00 f t HORTAL F. HORMIGUICIDA POLVO x 250 grs. Polvo antihormigas ALL \N 7 2 6 +802 2025-02-20 11:17:52.419816+00 2025-02-20 11:17:52.419824+00 f t HORTAL MIX. HORM. CEBO x 100 grs. Cebo antihormigas ALL \N 7 2 30 +803 2025-02-20 11:17:52.424135+00 2025-02-20 11:17:52.424141+00 f t HORTAL MIX. HORM. CEBO x 250 grs. Cebo antihormigas ALL \N 7 2 30 +804 2025-02-20 11:17:52.428077+00 2025-02-20 11:17:52.428087+00 f t HORTAL x 120 ml Solución antihormigas ALL \N 7 2 7 +805 2025-02-20 11:17:52.432167+00 2025-02-20 11:17:52.432174+00 f t HORTAL x 60 ml Solución antihormigas ALL \N 7 2 7 +806 2025-02-20 11:17:52.435639+00 2025-02-20 11:17:52.435645+00 f t INADRIM 1% iny. x 50 ml Richmond Inyección para problemas respiratorios ALL \N 8 2 10 +807 2025-02-20 11:17:52.43949+00 2025-02-20 11:17:52.439496+00 f t INCURIN x 30 comp. MSD Intervet Comprimidos para problemas urinarios ALL \N 8 2 3 +808 2025-02-20 11:17:52.443152+00 2025-02-20 11:17:52.443164+00 f t INELTANO VET x 100 cc Richmond Solución anestésica ALL \N 8 2 7 +809 2025-02-20 11:17:52.44684+00 2025-02-20 11:17:52.446847+00 f t INERAN x 50 cc Richmond Solución de oxitocina ALL \N 8 2 7 +810 2025-02-20 11:17:52.450498+00 2025-02-20 11:17:52.450524+00 f t INTERTOCINE-S x 50 ml MSD Intervet Solución de oxitocina ALL \N 8 2 7 +811 2025-02-20 11:17:52.45444+00 2025-02-20 11:17:52.454449+00 f t IODOPOVIDONA 10 % SOL. 1000 ml Solución antiséptica ALL \N 7 2 7 +812 2025-02-20 11:17:52.4583+00 2025-02-20 11:17:52.458309+00 f t IODOPOVIDONA 10 % SOL. 5000 ml Solución antiséptica ALL \N 7 2 7 +813 2025-02-20 11:17:52.462272+00 2025-02-20 11:17:52.462277+00 f t IODOPOVIDONA 5% SOL.JABON. x 1000 ml Solución antiséptica ALL \N 7 2 7 +814 2025-02-20 11:17:52.46653+00 2025-02-20 11:17:52.466537+00 f t IODOPOVIDONA 5% SOL.JABON. x 5000 ml Solución antiséptica ALL \N 7 2 7 +815 2025-02-20 11:17:52.470922+00 2025-02-20 11:17:52.470931+00 f t IONOMAX x 1000 cc Richmond Solución de electrolitos ALL \N 10 2 7 +816 2025-02-20 11:17:52.475382+00 2025-02-20 11:17:52.475388+00 f t IQ 180 x 21 comp. Holliday Comprimidos para la mente ALL \N 8 2 3 +817 2025-02-20 11:17:52.479694+00 2025-02-20 11:17:52.4797+00 f t ISIQUICK x 4 g J.M. Polvo para problemas digestivos ALL \N 8 2 6 +818 2025-02-20 11:17:52.484081+00 2025-02-20 11:17:52.484089+00 f t ITRACONAZOL 100 mg x 10 comp Zoovet Comprimidos antimicóticos ALL \N 9 2 3 +819 2025-02-20 11:17:52.488879+00 2025-02-20 11:17:52.488888+00 f t ITRACONAZOL 100 mg x 120 comp Zoovet Comprimidos antimicóticos ALL \N 9 2 3 +820 2025-02-20 11:17:52.492901+00 2025-02-20 11:17:52.492907+00 f t ITRACONAZOL SUSPENSION ORAL x 15 ml Zoovet Suspensión antimicótica ALL \N 9 2 5 +821 2025-02-20 11:17:52.497754+00 2025-02-20 11:17:52.497761+00 f t JERINGA CANINSULIN 40 Ul x 30 und. Safebox Jeringas para insulina DOG \N 8 2 31 +822 2025-02-20 11:17:52.501843+00 2025-02-20 11:17:52.501849+00 f t JUVENIA x 150 g Pasta para problemas digestivos ALL \N 8 2 8 +823 2025-02-20 11:17:52.505829+00 2025-02-20 11:17:52.505835+00 f t KA-PE LIQUIDO x 100 ml Ruminal Solución para problemas digestivos ALL \N 8 2 7 +824 2025-02-20 11:17:52.510073+00 2025-02-20 11:17:52.510081+00 f t KARSIVAN 100 (propentofilina) x 60 comp. MSD Intervet Comprimidos para problemas circulatorios ALL \N 8 2 3 +825 2025-02-20 11:17:52.514624+00 2025-02-20 11:17:52.514632+00 f t KENSOL 2% x 10 cc Konig Solución para problemas respiratorios ALL \N 8 2 7 +826 2025-02-20 11:17:52.519033+00 2025-02-20 11:17:52.519042+00 f t KETAFINE 5% x 50 cc Solución para problemas respiratorios ALL \N 8 2 7 +827 2025-02-20 11:17:52.524121+00 2025-02-20 11:17:52.524127+00 f t KETAMINA 50 x 50 cc HOLLIDAY Solución anestésica ALL \N 12 2 10 +828 2025-02-20 11:17:52.527977+00 2025-02-20 11:17:52.528005+00 f t KETOCONAZOL 2% crema x 30 g Janvier Crema antimicótica ALL \N 9 2 20 +829 2025-02-20 11:17:52.531842+00 2025-02-20 11:17:52.531847+00 f t KETOCONAZOL 200 mg x 10 comp. Janvier Comprimidos antimicóticos ALL \N 9 2 3 +830 2025-02-20 11:17:52.53569+00 2025-02-20 11:17:52.535696+00 f t KETOCONAZOL 200 mg x 100 comp. Janvier Comprimidos antimicóticos ALL \N 9 2 3 +831 2025-02-20 11:17:52.53944+00 2025-02-20 11:17:52.539445+00 f t KETOCONAZOL KUALCOS 200 mg x 50 comp. Kualcos Comprimidos antimicóticos ALL \N 9 2 3 +832 2025-02-20 11:17:52.543442+00 2025-02-20 11:17:52.543448+00 f t KETOCONAZOL SOL. SPRAY x 40 ml Janvier Spray antimicótico ALL \N 9 2 13 +833 2025-02-20 11:17:52.547576+00 2025-02-20 11:17:52.547582+00 f t KETOCREM (+ omega 6) x 50 g IDV Crema dermatológica ALL \N 8 2 20 +834 2025-02-20 11:17:52.551676+00 2025-02-20 11:17:52.551682+00 f t KETONAL 100 mg x 50 cc Richmond Inyección antiinflamatoria ALL \N 6 2 10 +835 2025-02-20 11:17:52.555654+00 2025-02-20 11:17:52.55566+00 f t KOPROFAGIA TALQUERA x 60 g Paraqueños Talco para coprofagia ALL \N 8 2 16 +836 2025-02-20 11:17:52.559869+00 2025-02-20 11:17:52.559876+00 f t KUALCOHEPAT 10kg x 200 comp. Comprimidos hepáticos ALL \N 8 2 3 +837 2025-02-20 11:17:52.564217+00 2025-02-20 11:17:52.564224+00 f t KUALCOHEPAT 20kg x 100 comp. Comprimidos hepáticos ALL \N 8 2 3 +838 2025-02-20 11:17:52.568768+00 2025-02-20 11:17:52.568774+00 f t KUALCOHEPAT INY. x 50 cc Kualcos Inyección hepática ALL \N 8 2 10 +839 2025-02-20 11:17:52.572862+00 2025-02-20 11:17:52.572872+00 f t KUALCOVIT B JARABE fr. x 100 ml Jarabe vitamínico ALL \N 10 2 29 +840 2025-02-20 11:17:52.577023+00 2025-02-20 11:17:52.577029+00 f t KUALCOVIT INY. fco. x 50 cc Inyección vitamínica ALL \N 10 2 10 +841 2025-02-20 11:17:52.580739+00 2025-02-20 11:17:52.580745+00 f t KURADERM AEROSOL x 100 g Konig Aerosol dermatológico ALL \N 8 2 14 +842 2025-02-20 11:17:52.584464+00 2025-02-20 11:17:52.584473+00 f t KURADERM AEROSOL x 250 g Konig Aerosol dermatológico ALL \N 8 2 14 +843 2025-02-20 11:17:52.588548+00 2025-02-20 11:17:52.588553+00 f t LABYDERM BIOFORCE x 100 ml Loción dermatológica ALL \N 8 2 27 +844 2025-02-20 11:17:52.592346+00 2025-02-20 11:17:52.592352+00 f t LABYDERM PREMIUM COVER x 2 ml Pipeta dermatológica ALL \N 8 2 1 +845 2025-02-20 11:17:52.596304+00 2025-02-20 11:17:52.59631+00 f t LABYDERM PREMIUM COVER x 4 ml Pipeta dermatológica ALL \N 8 2 1 +846 2025-02-20 11:17:52.600132+00 2025-02-20 11:17:52.60014+00 f t LABYDERM SKIN SOLDIER x 220 ml Shampoo dermatológico ALL \N 8 2 12 +847 2025-02-20 11:17:52.603897+00 2025-02-20 11:17:52.603903+00 f t LAXAVET x 40 g Pasta laxante ALL \N 8 2 8 +848 2025-02-20 11:17:52.607674+00 2025-02-20 11:17:52.60768+00 f t LEGEND INY x 4 cc Inyección para problemas articulares ALL \N 8 2 10 +849 2025-02-20 11:17:52.611576+00 2025-02-20 11:17:52.611582+00 f t LER GEL DENTIFRICO MAX PETS x 50 g Gel dentífrico ALL \N 7 2 24 +850 2025-02-20 11:17:52.615204+00 2025-02-20 11:17:52.615209+00 f t LIDOCAINA 2 % x 100 cc Paul Solución anestésica ALL \N 12 2 7 +851 2025-02-20 11:17:52.61907+00 2025-02-20 11:17:52.619075+00 f t LIDOCAINE 2% x 100 cc Richmond Solución anestésica ALL \N 12 2 7 +852 2025-02-20 11:17:52.622836+00 2025-02-20 11:17:52.622841+00 f t LURICIDE x 120 ml Lumai Solución para problemas digestivos ALL \N 8 2 7 +853 2025-02-20 11:17:52.626553+00 2025-02-20 11:17:52.626558+00 f t MAYOR 10 x 150 comp. Comprimidos para problemas digestivos ALL \N 8 2 3 +854 2025-02-20 11:17:52.630258+00 2025-02-20 11:17:52.630266+00 f t MAYOR 10 x 50 comp. Comprimidos para problemas digestivos ALL \N 8 2 3 +855 2025-02-20 11:17:52.634123+00 2025-02-20 11:17:52.634128+00 f t MEDROXYL 50 mg 10 amp. x 1 cc Paraqueños Inyección para problemas hormonales ALL \N 8 2 10 +856 2025-02-20 11:17:52.63796+00 2025-02-20 11:17:52.637967+00 f t MEGESTROL 20 mg x 8 comp. LAMAR Comprimidos hormonales ALL \N 8 2 3 +857 2025-02-20 11:17:52.641928+00 2025-02-20 11:17:52.641935+00 f t MEGESTROL 20 mg x 80 comp. LAMAR Comprimidos hormonales ALL \N 8 2 3 +858 2025-02-20 11:17:52.645901+00 2025-02-20 11:17:52.645907+00 f t MEGLUMAI INY. x 25 cc Lumai Inyección para problemas digestivos ALL \N 8 2 10 +859 2025-02-20 11:17:52.650047+00 2025-02-20 11:17:52.650053+00 f t MELOXICAM DERMOVET 0.5 mg x 10 comp. Dermovet Comprimidos antiinflamatorios ALL \N 6 2 3 +860 2025-02-20 11:17:52.653991+00 2025-02-20 11:17:52.654+00 f t MELOXICAM DERMOVET 0.5 mg x 100 comp. Dermovet Comprimidos antiinflamatorios ALL \N 6 2 3 +861 2025-02-20 11:17:52.657981+00 2025-02-20 11:17:52.657988+00 f t MELOXICAM DERMOVET 2 mg x 10 comp. Dermovet Comprimidos antiinflamatorios ALL \N 6 2 3 +862 2025-02-20 11:17:52.662047+00 2025-02-20 11:17:52.662054+00 f t MELOXICAM DERMOVET 2 mg x 100 comp. Dermovet Comprimidos antiinflamatorios ALL \N 6 2 3 +863 2025-02-20 11:17:52.666316+00 2025-02-20 11:17:52.666324+00 f t MELOXICAM DERMOVET 4 mg x 10 comp. Dermovet Comprimidos antiinflamatorios ALL \N 6 2 3 +864 2025-02-20 11:17:52.670236+00 2025-02-20 11:17:52.670248+00 f t MELOXICAM DERMOVET 4 mg x 100 comp. Dermovet Comprimidos antiinflamatorios ALL \N 6 2 3 +865 2025-02-20 11:17:52.674117+00 2025-02-20 11:17:52.674122+00 f t MELOXICAM JENNER 2 mg x 10 comp. JENNER Comprimidos antiinflamatorios ALL \N 6 2 3 +866 2025-02-20 11:17:52.678058+00 2025-02-20 11:17:52.678066+00 f t MELOXICAM JENNER 2 mg x 100 comp. JENNER Comprimidos antiinflamatorios ALL \N 6 2 3 +867 2025-02-20 11:17:52.681881+00 2025-02-20 11:17:52.681889+00 f t MELOXICAM JENNER 4 mg x 10 comp. JENNER Comprimidos antiinflamatorios ALL \N 6 2 3 +868 2025-02-20 11:17:52.685811+00 2025-02-20 11:17:52.685819+00 f t MELOXICAM JENNER 4 mg x 100 comp. JENNER Comprimidos antiinflamatorios ALL \N 6 2 3 +869 2025-02-20 11:17:52.689837+00 2025-02-20 11:17:52.689843+00 f t MELOXIVET 0.5 mg GOTAS x 10 ml JM Gotas antiinflamatorias ALL \N 6 2 2 +870 2025-02-20 11:17:52.693862+00 2025-02-20 11:17:52.693867+00 f t MELOXIVET 4 mg x 10 comp. JM Comprimidos antiinflamatorios ALL \N 6 2 3 +871 2025-02-20 11:17:52.697588+00 2025-02-20 11:17:52.697593+00 f t MELOXIVET 4 mg x 100 comp. JM Comprimidos antiinflamatorios ALL \N 6 2 3 +872 2025-02-20 11:17:52.701414+00 2025-02-20 11:17:52.701419+00 f t MELOXIVET 5 mg INY. x 10 cc JM Inyección antiinflamatoria ALL \N 6 2 10 +873 2025-02-20 11:17:52.705638+00 2025-02-20 11:17:52.705646+00 f t MEPROMAZIN 10 mg x 10 comp. Triton Comprimidos sedantes ALL \N 8 2 3 +874 2025-02-20 11:17:52.709489+00 2025-02-20 11:17:52.709495+00 f t MEPROMAZIN 10 mg x 100 comp. Triton Comprimidos sedantes ALL \N 8 2 3 +875 2025-02-20 11:17:52.713032+00 2025-02-20 11:17:52.713038+00 f t MEPROMAZIN 25 mg x 8 comp. Triton Comprimidos sedantes ALL \N 8 2 3 +876 2025-02-20 11:17:52.717363+00 2025-02-20 11:17:52.717369+00 f t MEPROMAZIN 25 mg x 80 comp. Triton Comprimidos sedantes ALL \N 8 2 3 +877 2025-02-20 11:17:52.721225+00 2025-02-20 11:17:52.721234+00 f t METABOLASE x 100 cc Von Franken Solución para problemas metabólicos ALL \N 8 2 7 +878 2025-02-20 11:17:52.725317+00 2025-02-20 11:17:52.725325+00 f t METABOLASE x 500 cc Von Franken Solución para problemas metabólicos ALL \N 8 2 7 +879 2025-02-20 11:17:52.729312+00 2025-02-20 11:17:52.729323+00 f t METFORMINA 200 PERROS x 100 comp. Triton Comprimidos para diabetes DOG \N 8 2 3 +880 2025-02-20 11:17:52.733572+00 2025-02-20 11:17:52.733577+00 f t METFORMINA 400 PERROS x 80 comp. Triton Comprimidos para diabetes DOG \N 8 2 3 +881 2025-02-20 11:17:52.737482+00 2025-02-20 11:17:52.737491+00 f t METFORMINA GATOS x 100 comp. Triton Comprimidos para diabetes CAT \N 8 2 3 +882 2025-02-20 11:17:52.741256+00 2025-02-20 11:17:52.741261+00 f t METOCLOPRAMIDA GOTAS 4 % x 15 ml LAMAR Gotas para problemas digestivos ALL \N 8 2 2 +883 2025-02-20 11:17:52.745131+00 2025-02-20 11:17:52.745138+00 f t METOCLOPRAMIDA INY. 5 % x 50 cc LAMAR Inyección para problemas digestivos ALL \N 8 2 10 +884 2025-02-20 11:17:52.749357+00 2025-02-20 11:17:52.749362+00 f t MICONAZOL LOCION 2% x 60 ml INTERBIOL Loción antimicótica ALL \N 9 2 27 +885 2025-02-20 11:17:52.753282+00 2025-02-20 11:17:52.753288+00 f t MIDAZOLAM 5 mg x 20 cc Richmond Solución de midazolam ALL \N 8 2 7 +886 2025-02-20 11:17:52.757148+00 2025-02-20 11:17:52.757157+00 f t NALBUFINE 10 mg x 20 cc Richmond Inyección analgésica ALL \N 6 2 10 +887 2025-02-20 11:17:52.761002+00 2025-02-20 11:17:52.761008+00 f t NATURAL CARE 1 g x 100 comp. Comprimidos naturales ALL \N 8 2 3 +888 2025-02-20 11:17:52.764907+00 2025-02-20 11:17:52.764913+00 f t NATURAL CARE 1 g x 30 comp. Comprimidos naturales ALL \N 8 2 3 +889 2025-02-20 11:17:52.768744+00 2025-02-20 11:17:52.768763+00 f t NATURAL CARE 2 g x 100 comp. Comprimidos naturales ALL \N 8 2 3 +890 2025-02-20 11:17:52.772992+00 2025-02-20 11:17:52.772998+00 f t NATURAL CARE 2 g x 30 comp. Comprimidos naturales ALL \N 8 2 3 +891 2025-02-20 11:17:52.776592+00 2025-02-20 11:17:52.776598+00 f t NEO VITAPEL x 30 comp. Comprimidos vitamínicos ALL \N 8 2 3 +892 2025-02-20 11:17:52.78041+00 2025-02-20 11:17:52.780416+00 f t NEOVITA x 21 comp. Holliday Comprimidos para terapias oncológicas ALL \N 8 2 3 +893 2025-02-20 11:17:52.784231+00 2025-02-20 11:17:52.784239+00 f t NERBIOL INY. 1 % x 10 cc INTERBIOL Inyección para problemas nerviosos ALL \N 8 2 10 +894 2025-02-20 11:17:52.788307+00 2025-02-20 11:17:52.788315+00 f t NEUMOFLOGIN x 16 comp. Triton Comprimidos para problemas respiratorios ALL \N 8 2 3 +895 2025-02-20 11:17:52.792414+00 2025-02-20 11:17:52.792419+00 f t NEUMOFLOGIN x 8 comp. Triton Comprimidos para problemas respiratorios ALL \N 8 2 3 +896 2025-02-20 11:17:52.7963+00 2025-02-20 11:17:52.796305+00 f t NEUROALIVIO x 30 comp. Comprimidos para problemas nerviosos ALL \N 8 2 3 +897 2025-02-20 11:17:52.800072+00 2025-02-20 11:17:52.800078+00 f t NEUROGREEN x 60 comp. Janvier Comprimidos para problemas nerviosos ALL \N 8 2 3 +898 2025-02-20 11:17:52.803618+00 2025-02-20 11:17:52.803623+00 f t NITROFURAZONA x 1000 ml Solución antibiótica ALL \N 9 2 7 +899 2025-02-20 11:17:52.807361+00 2025-02-20 11:17:52.807367+00 f t NOFLOG INY. 20 mg x 10 cc INTERBIOL Inyección antiinflamatoria ALL \N 6 2 10 +900 2025-02-20 11:17:52.811098+00 2025-02-20 11:17:52.811104+00 f t NOFLOG INY. 20 mg x 20 cc INTERBIOL Inyección antiinflamatoria ALL \N 6 2 10 +901 2025-02-20 11:17:52.814796+00 2025-02-20 11:17:52.814801+00 f t NOGASTROL 10 mg x 10 comp. Mayors Comprimidos para problemas digestivos ALL \N 8 2 3 +902 2025-02-20 11:17:52.818711+00 2025-02-20 11:17:52.818716+00 f t NOGASTROL 10 mg x 50 comp. Mayors Comprimidos para problemas digestivos ALL \N 8 2 3 +903 2025-02-20 11:17:52.822149+00 2025-02-20 11:17:52.822157+00 f t NOGASTROL 30 mg x 10 comp. Mayors Comprimidos para problemas digestivos ALL \N 8 2 3 +904 2025-02-20 11:17:52.825502+00 2025-02-20 11:17:52.825515+00 f t NOGASTROL 30 mg x 25 comp. Mayors Comprimidos para problemas digestivos ALL \N 8 2 3 +905 2025-02-20 11:17:52.828875+00 2025-02-20 11:17:52.82888+00 f t NOVOTIOC 50 x 20 comp. JM Comprimidos para problemas metabólicos ALL \N 8 2 3 +906 2025-02-20 11:17:52.832501+00 2025-02-20 11:17:52.832508+00 f t NOVOTIOC 50 x 60 comp. JM Comprimidos para problemas metabólicos ALL \N 8 2 3 +907 2025-02-20 11:17:52.836248+00 2025-02-20 11:17:52.836255+00 f t NOVOTIOC INY. x 50 cc JM Inyección para problemas metabólicos ALL \N 8 2 10 +908 2025-02-20 11:17:52.840113+00 2025-02-20 11:17:52.840119+00 f t NOVUL INY. x 1 ml x 12 un Inyección anticonceptiva ALL \N 8 2 10 +909 2025-02-20 11:17:52.844069+00 2025-02-20 11:17:52.844074+00 f t NOVUL x 100 comp. Comprimidos anticonceptivos ALL \N 8 2 3 +910 2025-02-20 11:17:52.848035+00 2025-02-20 11:17:52.848042+00 f t NOVUL x 400 comp. Comprimidos anticonceptivos ALL \N 8 2 3 +911 2025-02-20 11:17:52.852227+00 2025-02-20 11:17:52.852234+00 f t NUTRAPRO ANTIAGE x 30 comp. Paraqueños Comprimidos antienvejecimiento ALL \N 8 2 3 +912 2025-02-20 11:17:52.855947+00 2025-02-20 11:17:52.855956+00 f t NUTRAPRO ARTRIUM x 30 comp. Paraqueños Comprimidos para articulaciones ALL \N 8 2 3 +913 2025-02-20 11:17:52.859797+00 2025-02-20 11:17:52.859806+00 f t NUTRAPRO GERONTIUM x 30 comp. Paraqueños Comprimidos para mascotas mayores ALL \N 8 2 3 +914 2025-02-20 11:17:52.863538+00 2025-02-20 11:17:52.863544+00 f t NUTRAPRO HEPATIUM x 30 comp. Paraqueños Comprimidos hepáticos ALL \N 8 2 3 +915 2025-02-20 11:17:52.867331+00 2025-02-20 11:17:52.867336+00 f t NUTRAPRO RELAXIUM x 30 comp. Paraqueños Comprimidos relajantes ALL \N 8 2 3 +916 2025-02-20 11:17:52.871147+00 2025-02-20 11:17:52.871155+00 f t NUTREMAI P.A. x 150 g Lumai Pasta para problemas digestivos ALL \N 8 2 8 +917 2025-02-20 11:17:52.875492+00 2025-02-20 11:17:52.875499+00 f t NUTRICAL (EUTAZUM) x 120 ml Konig Solución nutritiva ALL \N 8 2 7 +918 2025-02-20 11:17:52.880082+00 2025-02-20 11:17:52.88009+00 f t NUTRIMIN x 530 cc Richmond Solución nutritiva ALL \N 8 2 7 +919 2025-02-20 11:17:52.883944+00 2025-02-20 11:17:52.883949+00 f t NUTRIPET x 40 g JM Pasta nutritiva ALL \N 8 2 8 +920 2025-02-20 11:17:52.88744+00 2025-02-20 11:17:52.887445+00 f t NUTRIPET x 80 g JM Pasta nutritiva ALL \N 8 2 8 +921 2025-02-20 11:17:52.891102+00 2025-02-20 11:17:52.891107+00 f t OCLADERM 16 mg x 20 ml Solución dermatológica ALL \N 8 2 7 +922 2025-02-20 11:17:52.895222+00 2025-02-20 11:17:52.895228+00 f t OCLADERM 3.6 mg x 20 ml Solución dermatológica ALL \N 8 2 7 +923 2025-02-20 11:17:52.898861+00 2025-02-20 11:17:52.898868+00 f t OCLADERM 5.4 mg x 20 ml Solución dermatológica ALL \N 8 2 7 +924 2025-02-20 11:17:52.90286+00 2025-02-20 11:17:52.902865+00 f t ODONTOBIOTIC x 10 comp. Janvier Comprimidos para problemas bucales ALL \N 9 2 3 +925 2025-02-20 11:17:52.906578+00 2025-02-20 11:17:52.906583+00 f t ODONTOBIOTIC x 100 comp. Janvier Comprimidos para problemas bucales ALL \N 9 2 3 +926 2025-02-20 11:17:52.909924+00 2025-02-20 11:17:52.909929+00 f t ODONTOLIMP NOVO x 60 ml Janvier Solución para higiene bucal ALL \N 7 2 7 +927 2025-02-20 11:17:52.913222+00 2025-02-20 11:17:52.913227+00 f t OHM Pasta Gatos x 7g Holliday Pasta para gatos CAT \N 8 2 8 +928 2025-02-20 11:17:52.916854+00 2025-02-20 11:17:52.916859+00 f t OHM x 21 comp. Holliday Comprimidos para problemas digestivos ALL \N 8 2 3 +929 2025-02-20 11:17:52.920223+00 2025-02-20 11:17:52.920228+00 f t OL-TRANS FLEX x 21 comp. Holliday Comprimidos para articulaciones ALL \N 8 2 3 +930 2025-02-20 11:17:52.923778+00 2025-02-20 11:17:52.923783+00 f t OL-TRANS FLEX x 70 comp. Holliday Comprimidos para articulaciones ALL \N 8 2 3 +931 2025-02-20 11:17:52.927186+00 2025-02-20 11:17:52.927191+00 f t OL-TRANS POLVO x 80 g Holliday Polvo para articulaciones ALL \N 8 2 6 +932 2025-02-20 11:17:52.930573+00 2025-02-20 11:17:52.930579+00 f t OSS. DESINFLAMANTE crema x 100 g OSSPRET Crema antiinflamatoria ALL \N 6 2 20 +933 2025-02-20 11:17:52.934124+00 2025-02-20 11:17:52.934129+00 f t OSS. DESINFLAMANTE crema x 500 g OSSPRET Crema antiinflamatoria ALL \N 6 2 20 +934 2025-02-20 11:17:52.938326+00 2025-02-20 11:17:52.938331+00 f t OSS. DESINFLAMANTE ROLL-ON x 90 g OSSPRET Roll-on antiinflamatorio ALL \N 6 2 32 +935 2025-02-20 11:17:52.942+00 2025-02-20 11:17:52.942008+00 f t OSS. IODOPOVIDONA SOLUC.5% x 100 c/atomizador OSSPRET Solución antiséptica ALL \N 7 2 7 +936 2025-02-20 11:17:52.945961+00 2025-02-20 11:17:52.945966+00 f t OSS. IODOPOVIDONA SOLUC.5% x 100 Repuesto OSSPRET Solución antiséptica ALL \N 7 2 7 +937 2025-02-20 11:17:52.950146+00 2025-02-20 11:17:52.950151+00 f t OSS. IODOPOVIDONA SOLUC.5% x 1000 Repuesto OSSPRET Solución antiséptica ALL \N 7 2 7 +938 2025-02-20 11:17:52.953943+00 2025-02-20 11:17:52.953949+00 f t OSTEOCART PLUS x 30 comp. Labyes Comprimidos para articulaciones ALL \N 8 2 3 +939 2025-02-20 11:17:52.957473+00 2025-02-20 11:17:52.957479+00 f t OVUSYN x 10 cc Syntex Solución para problemas reproductivos ALL \N 8 2 7 +940 2025-02-20 11:17:52.961088+00 2025-02-20 11:17:52.961093+00 f t OXICAM B12 x 120 comp. Comprimidos antiinflamatorios ALL \N 6 2 3 +941 2025-02-20 11:17:52.964656+00 2025-02-20 11:17:52.964662+00 f t OXITOCINA SYNKRO XY x 10 cc Paraqueños Solución de oxitocina ALL \N 8 2 7 +942 2025-02-20 11:17:52.968497+00 2025-02-20 11:17:52.968502+00 f t OXITOCINA SYNKRO XY x 50 cc Proagro Solución de oxitocina ALL \N 8 2 7 +943 2025-02-20 11:17:52.972204+00 2025-02-20 11:17:52.972211+00 f t PACHY DERM 100 x 30 gr. IDV Crema dermatológica ALL \N 8 2 20 +944 2025-02-20 11:17:52.97586+00 2025-02-20 11:17:52.975865+00 f t PANTOVIER 10 mg x 10 comp. Janvier Comprimidos para problemas digestivos ALL \N 8 2 3 +945 2025-02-20 11:17:52.979222+00 2025-02-20 11:17:52.979227+00 f t PANTOVIER 10 mg x 100 comp. Janvier Comprimidos para problemas digestivos ALL \N 8 2 3 +946 2025-02-20 11:17:52.982581+00 2025-02-20 11:17:52.982588+00 f t PASTA DENTAL "PET-O-DENT" 125 g Porta Pasta dental ALL \N 7 2 8 +947 2025-02-20 11:17:52.986006+00 2025-02-20 11:17:52.986011+00 f t PAULDERM GEL DERMICO x 50 ml Paul Gel dermatológico ALL \N 8 2 24 +948 2025-02-20 11:17:52.989556+00 2025-02-20 11:17:52.989561+00 f t PAULHEPAT x 100 ml Paul Solución hepática ALL \N 8 2 7 +949 2025-02-20 11:17:52.993483+00 2025-02-20 11:17:52.993488+00 f t PENTOVET (TIOPENTAL SODICO 1 g) Richmond Solución anestésica ALL \N 8 2 7 +950 2025-02-20 11:17:52.997188+00 2025-02-20 11:17:52.997193+00 f t PILERAN INY. x 50 cc Holliday Inyección para problemas digestivos ALL \N 8 2 10 +951 2025-02-20 11:17:53.001064+00 2025-02-20 11:17:53.001072+00 f t PILERAN ORAL x 20 ml Holliday Solución para problemas digestivos ALL \N 8 2 7 +952 2025-02-20 11:17:53.005192+00 2025-02-20 11:17:53.005198+00 f t PIMOBENDAN 10 mg x 20 comp. Brouwer Comprimidos cardíacos ALL \N 8 2 3 +953 2025-02-20 11:17:53.009299+00 2025-02-20 11:17:53.009305+00 f t PIMOBENDAN 2,5 mg x 20 comp. Brouwer Comprimidos cardíacos ALL \N 8 2 3 +954 2025-02-20 11:17:53.013315+00 2025-02-20 11:17:53.013322+00 f t PIMOBENDAN 5 mg x 20 comp. Brouwer Comprimidos cardíacos ALL \N 8 2 3 +955 2025-02-20 11:17:53.017966+00 2025-02-20 11:17:53.017972+00 f t PIMOCARD 1.25 mg x 20 comp. Holliday Comprimidos cardíacos ALL \N 8 2 3 +956 2025-02-20 11:17:53.022023+00 2025-02-20 11:17:53.022031+00 f t PIMOCARD 10 mg CLINIC. x 100 comp. Holliday Comprimidos cardíacos ALL \N 8 2 3 +957 2025-02-20 11:17:53.026027+00 2025-02-20 11:17:53.026033+00 f t PIMOCARD 10 mg x 20 comp. Holliday Comprimidos cardíacos ALL \N 8 2 3 +958 2025-02-20 11:17:53.029905+00 2025-02-20 11:17:53.029914+00 f t PIMOCARD 2.50 mg CINIC. x 100 comp. Holliday Comprimidos cardíacos ALL \N 8 2 3 +959 2025-02-20 11:17:53.034355+00 2025-02-20 11:17:53.034362+00 f t PIMOCARD 2.50 mg x 20 comp. Holliday Comprimidos cardíacos ALL \N 8 2 3 +960 2025-02-20 11:17:53.038207+00 2025-02-20 11:17:53.038213+00 f t PIMOCARD 5 mg CINIC. x 100 comp. Holliday Comprimidos cardíacos ALL \N 8 2 3 +961 2025-02-20 11:17:53.041727+00 2025-02-20 11:17:53.041733+00 f t PIMOCARD 5 mg x 20 comp. Holliday Comprimidos cardíacos ALL \N 8 2 3 +962 2025-02-20 11:17:53.045371+00 2025-02-20 11:17:53.045376+00 f t PIMODEN 10 mg x 100 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +963 2025-02-20 11:17:53.049597+00 2025-02-20 11:17:53.049602+00 f t PIMODEN 10 mg x 20 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +964 2025-02-20 11:17:53.053071+00 2025-02-20 11:17:53.053076+00 f t PIMODEN 2.5 mg x 100 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +965 2025-02-20 11:17:53.056767+00 2025-02-20 11:17:53.056773+00 f t PIMODEN 2.5 mg x 20 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +966 2025-02-20 11:17:53.060242+00 2025-02-20 11:17:53.060248+00 f t PIMODEN 5 mg x 100 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +967 2025-02-20 11:17:53.063718+00 2025-02-20 11:17:53.063724+00 f t PIMODEN 5 mg x 20 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +968 2025-02-20 11:17:53.067612+00 2025-02-20 11:17:53.067618+00 f t PIMODEN-COMPLEX 10 mg x 100 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +969 2025-02-20 11:17:53.071564+00 2025-02-20 11:17:53.071571+00 f t PIMODEN-COMPLEX 10 mg x 20 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +970 2025-02-20 11:17:53.075892+00 2025-02-20 11:17:53.075899+00 f t PIMODEN-COMPLEX 20 mg x 100 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +971 2025-02-20 11:17:53.079788+00 2025-02-20 11:17:53.079796+00 f t PIMODEN-COMPLEX 20 mg x 20 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +972 2025-02-20 11:17:53.083798+00 2025-02-20 11:17:53.083804+00 f t PIMODEN-COMPLEX 5 mg x 100 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +973 2025-02-20 11:17:53.087878+00 2025-02-20 11:17:53.087884+00 f t PIMODEN-COMPLEX 5 mg x 20 comp. Janvier Comprimidos cardíacos ALL \N 8 2 3 +974 2025-02-20 11:17:53.091521+00 2025-02-20 11:17:53.091527+00 f t POLADIN CACHORROS SUSP x 100 ml Suspensión para cachorros DOG \N 8 2 5 +975 2025-02-20 11:17:53.095272+00 2025-02-20 11:17:53.095278+00 f t POLADIN GERIATRICO x 30 comp. Kualcos Comprimidos para mascotas mayores ALL \N 8 2 3 +976 2025-02-20 11:17:53.099135+00 2025-02-20 11:17:53.099141+00 f t POLADIN MAX CACH. x 50 comp. Comprimidos para cachorros DOG \N 8 2 3 +977 2025-02-20 11:17:53.103079+00 2025-02-20 11:17:53.103085+00 f t POLADIN MAX FORTE x 30 comp. Comprimidos para problemas digestivos ALL \N 8 2 3 +978 2025-02-20 11:17:53.106929+00 2025-02-20 11:17:53.106934+00 f t POLADIN MAX x 30 comp. Comprimidos para problemas digestivos ALL \N 8 2 3 +979 2025-02-20 11:17:53.110788+00 2025-02-20 11:17:53.110797+00 f t POLFEN 20 mg x 100 comp. Kualcos Comprimidos para problemas digestivos ALL \N 8 2 3 +980 2025-02-20 11:17:53.114554+00 2025-02-20 11:17:53.11456+00 f t POTEN PET Pasta Gatos x 7g Holliday Pasta para gatos CAT \N 8 2 8 +981 2025-02-20 11:17:53.118348+00 2025-02-20 11:17:53.118354+00 f t POTEN PET x 21 comp. Holliday Comprimidos para problemas digestivos ALL \N 8 2 3 +982 2025-02-20 11:17:53.122214+00 2025-02-20 11:17:53.122219+00 f t PRAGMA 10 mg x 20 comp. Brouwer Comprimidos cardíacos ALL \N 8 2 3 +983 2025-02-20 11:17:53.126512+00 2025-02-20 11:17:53.126518+00 f t PRAGMA 2,5 mg x 20 comp. Brouwer Comprimidos cardíacos ALL \N 8 2 3 +984 2025-02-20 11:17:53.130419+00 2025-02-20 11:17:53.130425+00 f t PRAGMA 5 mg x 20 comp. Brouwer Comprimidos cardíacos ALL \N 8 2 3 +985 2025-02-20 11:17:53.134121+00 2025-02-20 11:17:53.134126+00 f t PREDNI 10 mg x 100 comp. Bechlab Comprimidos de prednisolona ALL \N 11 2 3 +986 2025-02-20 11:17:53.137984+00 2025-02-20 11:17:53.13799+00 f t PREDNI 20 mg x 100 comp. Bechlab Comprimidos de prednisolona ALL \N 11 2 3 +987 2025-02-20 11:17:53.141441+00 2025-02-20 11:17:53.141447+00 f t PREDNISOL GOTAS x 15 ml JM Gotas de prednisolona ALL \N 11 2 2 +988 2025-02-20 11:17:53.145513+00 2025-02-20 11:17:53.145519+00 f t PREDNISOLONA 10 mg 100 comp. Kualcos Comprimidos de prednisolona ALL \N 11 2 3 +989 2025-02-20 11:17:53.149654+00 2025-02-20 11:17:53.149659+00 f t PREDNISOLONA 10 mg 200 comp. Kualcos Comprimidos de prednisolona ALL \N 11 2 3 +990 2025-02-20 11:17:53.153904+00 2025-02-20 11:17:53.153911+00 f t PREDNISOLONA 20 mg x 10 comp. HOLLIDAY Comprimidos de prednisolona ALL \N 11 2 3 +991 2025-02-20 11:17:53.158275+00 2025-02-20 11:17:53.158281+00 f t PREDNISOLONA 20 mg x 100 comp. Aton Comprimidos de prednisolona ALL \N 11 2 3 +992 2025-02-20 11:17:53.162368+00 2025-02-20 11:17:53.162374+00 f t PREDNISOLONA 20 mg x 100 comp. Kualcos Comprimidos de prednisolona ALL \N 11 2 3 +993 2025-02-20 11:17:53.166886+00 2025-02-20 11:17:53.166895+00 f t PREDNISOLONA 20 mg x 100 comp. Ruminal Comprimidos de prednisolona ALL \N 11 2 3 +994 2025-02-20 11:17:53.171171+00 2025-02-20 11:17:53.171177+00 f t PREDNISOLONA 20 mg x 200 comp. Kualcos Comprimidos de prednisolona ALL \N 11 2 3 +995 2025-02-20 11:17:53.174941+00 2025-02-20 11:17:53.174946+00 f t PREDNISOLONA 20 mg x 200 comp. LAMAR Comprimidos de prednisolona ALL \N 11 2 3 +996 2025-02-20 11:17:53.178632+00 2025-02-20 11:17:53.178637+00 f t PREDNISOLONA 20 mg x 200 comp. Paraqueños Comprimidos de prednisolona ALL \N 11 2 3 +997 2025-02-20 11:17:53.183019+00 2025-02-20 11:17:53.183052+00 f t PREDNISOLONA PYO 10 x 100 comp. Idv Comprimidos de prednisolona ALL \N 11 2 3 +998 2025-02-20 11:17:53.186963+00 2025-02-20 11:17:53.186969+00 f t PREDNISOLONA PYO 10 x 500 comp. Idv Comprimidos de prednisolona ALL \N 11 2 3 +999 2025-02-20 11:17:53.190789+00 2025-02-20 11:17:53.190795+00 f t PREDNISOLONA PYO 20 x 100 comp. Idv Comprimidos de prednisolona ALL \N 11 2 3 +1000 2025-02-20 11:17:53.194702+00 2025-02-20 11:17:53.194707+00 f t PREDNISOLONA PYO 20 x 500 comp. Idv Comprimidos de prednisolona ALL \N 11 2 3 +1001 2025-02-20 11:17:53.1984+00 2025-02-20 11:17:53.198405+00 f t PREDNISOLONA PYO 40 x 40 comp. Idv Comprimidos de prednisolona ALL \N 11 2 3 +1002 2025-02-20 11:17:53.202123+00 2025-02-20 11:17:53.202129+00 f t PREDNISOLONA PYO 5 x 12 comp. Idv Comprimidos de prednisolona ALL \N 11 2 3 +1003 2025-02-20 11:17:53.205908+00 2025-02-20 11:17:53.205913+00 f t PREDNISOLONA PYO 5 x 180 comp. Idv Comprimidos de prednisolona ALL \N 11 2 3 +1004 2025-02-20 11:17:53.209699+00 2025-02-20 11:17:53.209708+00 f t PREDNISOLONA sabor. 10 mg x 200 comp. Syntex Comprimidos de prednisolona saborizados ALL \N 11 2 3 +1005 2025-02-20 11:17:53.213501+00 2025-02-20 11:17:53.213509+00 f t PREDNISOLONA sabor. 40 mg x 100 comp. Syntex Comprimidos de prednisolona saborizados ALL \N 11 2 3 +1006 2025-02-20 11:17:53.217334+00 2025-02-20 11:17:53.21734+00 f t PREDNOVET 20 mg x 300 comp Zoovet Comprimidos de prednisolona ALL \N 11 2 3 +1007 2025-02-20 11:17:53.221235+00 2025-02-20 11:17:53.221241+00 f t PREGALBECH x 30 ml Bechlab Solución para problemas digestivos ALL \N 8 2 7 +1008 2025-02-20 11:17:53.225163+00 2025-02-20 11:17:53.225168+00 f t PREVICOX 227 mg x 30 comp. Comprimidos antiinflamatorios ALL \N 6 2 3 +1009 2025-02-20 11:17:53.229323+00 2025-02-20 11:17:53.229328+00 f t PREVICOX 57 mg x 30 comp. Comprimidos antiinflamatorios ALL \N 6 2 3 +1010 2025-02-20 11:17:53.233142+00 2025-02-20 11:17:53.233148+00 f t PRIMEVIT 15 x 100 ml Paul Solución vitamínica ALL \N 10 2 7 +1011 2025-02-20 11:17:53.236799+00 2025-02-20 11:17:53.236806+00 f t PRIVAPROL x 1 cc Von Franken Solución abortiva no hormonal ALL \N 8 2 7 +1012 2025-02-20 11:17:53.240505+00 2025-02-20 11:17:53.240513+00 f t PRIVAPROL x 2 cc Von Franken Solución abortiva no hormonal ALL \N 8 2 7 +1013 2025-02-20 11:17:53.244092+00 2025-02-20 11:17:53.244099+00 f t PROFEDYL 100 x 60 comp. Aton Comprimidos antiinflamatorios ALL \N 6 2 3 +1014 2025-02-20 11:17:53.248118+00 2025-02-20 11:17:53.248125+00 f t PROFEDYL 25 x 60 comp. Aton Comprimidos antiinflamatorios ALL \N 6 2 3 +1015 2025-02-20 11:17:53.252413+00 2025-02-20 11:17:53.25242+00 f t PROFEDYL 75 x 60 comp. Aton Comprimidos antiinflamatorios ALL \N 6 2 3 +1016 2025-02-20 11:17:53.256798+00 2025-02-20 11:17:53.256804+00 f t PROMAFINE x 10 ml Solución para problemas digestivos ALL \N 8 2 7 +1017 2025-02-20 11:17:53.261093+00 2025-02-20 11:17:53.261098+00 f t PRONAL x 6 amp. x 1 cc Aton Solución anticonceptiva ALL \N 8 2 7 +1018 2025-02-20 11:17:53.264945+00 2025-02-20 11:17:53.264951+00 f t PROPANTELINA x 16 comp. Triton Comprimidos para problemas digestivos ALL \N 8 2 3 +1019 2025-02-20 11:17:53.26895+00 2025-02-20 11:17:53.268956+00 f t PROPANTELINA x 80 comp. Triton Comprimidos para problemas digestivos ALL \N 8 2 3 +1020 2025-02-20 11:17:53.272428+00 2025-02-20 11:17:53.272433+00 f t PROPOLVET LOC. CICATRIZ.atom. x 60 ml Loción cicatrizante ALL \N 8 2 27 +1021 2025-02-20 11:17:53.27629+00 2025-02-20 11:17:53.276295+00 f t PROPOVET 10 mg x 20 cc Richmond Solución para problemas digestivos ALL \N 8 2 7 +1022 2025-02-20 11:17:53.279833+00 2025-02-20 11:17:53.279839+00 f t PROPOVET 10 mg x 50 cc Richmond Solución para problemas digestivos ALL \N 8 2 7 +1023 2025-02-20 11:17:53.28379+00 2025-02-20 11:17:53.283797+00 f t PROTE-CIS x 60 comp. Comprimidos para problemas digestivos ALL \N 8 2 3 +1024 2025-02-20 11:17:53.28726+00 2025-02-20 11:17:53.287265+00 f t PROTELIV GTS. PERROS x 15 ml Holliday Gotas para problemas digestivos DOG \N 8 2 2 +1025 2025-02-20 11:17:53.290866+00 2025-02-20 11:17:53.290872+00 f t PROTELIV Pasta Gatos x 7g Holliday Pasta para problemas digestivos CAT \N 8 2 8 +1026 2025-02-20 11:17:53.295724+00 2025-02-20 11:17:53.295733+00 f t PROTELIV PERROS x 21 comp Holliday Comprimidos para problemas digestivos DOG \N 8 2 3 +1027 2025-02-20 11:17:53.300472+00 2025-02-20 11:17:53.30048+00 f t PROTHEMAI INY. x 100 cc Lumai Inyección para problemas digestivos ALL \N 8 2 10 +1028 2025-02-20 11:17:53.304743+00 2025-02-20 11:17:53.304751+00 f t PROTHEMAI INY. x 50 cc Lumai Inyección para problemas digestivos ALL \N 8 2 10 +1029 2025-02-20 11:17:53.309837+00 2025-02-20 11:17:53.309845+00 f t PROTHEMAI x 150 comp. Lumai Comprimidos para problemas digestivos ALL \N 8 2 3 +1030 2025-02-20 11:17:53.314587+00 2025-02-20 11:17:53.314593+00 f t PROTHEMAI x 30 comp. Lumai Comprimidos para problemas digestivos ALL \N 8 2 3 +1031 2025-02-20 11:17:53.319382+00 2025-02-20 11:17:53.319389+00 f t PRURICILONA SPRAY x 15 ml Mayor Spray para problemas dermatológicos ALL \N 8 2 13 +1032 2025-02-20 11:17:53.324027+00 2025-02-20 11:17:53.324033+00 f t PUPPYLINE x 80 g JM Pasta para cachorros DOG \N 8 2 8 +1033 2025-02-20 11:17:53.328896+00 2025-02-20 11:17:53.328905+00 f t RANITIDINA 2 % x 50 cc KUALCOS Solución para problemas digestivos ALL \N 8 2 7 +1034 2025-02-20 11:17:53.333071+00 2025-02-20 11:17:53.333077+00 f t RANITIDINA 20MG iny x 50 cc JM Inyección para problemas digestivos ALL \N 8 2 10 +1035 2025-02-20 11:17:53.336944+00 2025-02-20 11:17:53.33695+00 f t RANITIDINA 40MG x 100 comp. KUALCOS Comprimidos para problemas digestivos ALL \N 8 2 3 +1036 2025-02-20 11:17:53.340544+00 2025-02-20 11:17:53.34055+00 f t RANITIDINA 50MG x 10 comp. JM Comprimidos para problemas digestivos ALL \N 8 2 3 +1037 2025-02-20 11:17:53.344903+00 2025-02-20 11:17:53.344909+00 f t RANITIDINA 50MG x 100 comp. JM Comprimidos para problemas digestivos ALL \N 8 2 3 +1038 2025-02-20 11:17:53.348676+00 2025-02-20 11:17:53.348683+00 f t RANITIDINA gotas x 30 ml JM Gotas para problemas digestivos ALL \N 8 2 2 +1039 2025-02-20 11:17:53.353229+00 2025-02-20 11:17:53.353237+00 f t RANIVET 2 g x 50 cc Vetanco Solución para problemas digestivos ALL \N 8 2 7 +1040 2025-02-20 11:17:53.357259+00 2025-02-20 11:17:53.357266+00 f t RANIVET 40 mg x 10 comp. Vetanco Comprimidos para problemas digestivos ALL \N 8 2 3 +1041 2025-02-20 11:17:53.36129+00 2025-02-20 11:17:53.361298+00 f t RELAY C x 10 comp. Holliday Comprimidos no hormonales ALL \N 8 2 3 +1042 2025-02-20 11:17:53.365656+00 2025-02-20 11:17:53.365663+00 f t RESVITAL x 120 ml Bechlab Solución revitalizante ALL \N 8 2 7 +1043 2025-02-20 11:17:53.369606+00 2025-02-20 11:17:53.369612+00 f t REXILEN 0.2% x 20 cc Vetanco Solución para problemas digestivos ALL \N 8 2 7 +1044 2025-02-20 11:17:53.37324+00 2025-02-20 11:17:53.373246+00 f t RIMADYL 100 mg x 60 comp. Zoetis Comprimidos antiinflamatorios ALL \N 6 2 3 +1045 2025-02-20 11:17:53.376923+00 2025-02-20 11:17:53.376928+00 f t RIMADYL 25 mg x 60 comp. Zoetis Comprimidos antiinflamatorios ALL \N 6 2 3 +1046 2025-02-20 11:17:53.380975+00 2025-02-20 11:17:53.380982+00 f t RIMADYL 75 mg x 60 comp. Zoetis Comprimidos antiinflamatorios ALL \N 6 2 3 +1047 2025-02-20 11:17:53.384738+00 2025-02-20 11:17:53.384744+00 f t ROLENAL 50 mg INY. x 20 cc Inyección analgésica ALL \N 6 2 10 +1048 2025-02-20 11:17:53.38858+00 2025-02-20 11:17:53.388588+00 f t ROLENAL 50 mg x 20 comp. Comprimidos analgésicos ALL \N 6 2 3 +1049 2025-02-20 11:17:53.392218+00 2025-02-20 11:17:53.392223+00 f t RUMISAN - Desinfectante x 1000 ml Solución desinfectante ALL \N 7 2 7 +1050 2025-02-20 11:17:53.396361+00 2025-02-20 11:17:53.396369+00 f t RUMIVITAL FORTE Grandes 800 mg x 100 comp Comprimidos para problemas digestivos ALL \N 8 2 3 +1051 2025-02-20 11:17:53.400361+00 2025-02-20 11:17:53.400367+00 f t RUMIVITAL FORTE Pequeños 120 mg x 100 comp Comprimidos para problemas digestivos ALL \N 8 2 3 +1052 2025-02-20 11:17:53.40476+00 2025-02-20 11:17:53.404767+00 f t Sales Isotonic Full. 10 Sobres x 20 g Bechlab Sales rehidratantes ALL \N 10 2 33 +1053 2025-02-20 11:17:53.408663+00 2025-02-20 11:17:53.408668+00 f t SALES REHIDRATANTES SOB. x 27.5 g Paraqueños Sales rehidratantes ALL \N 10 2 33 +1054 2025-02-20 11:17:53.412723+00 2025-02-20 11:17:53.412731+00 f t SALIX x 10 cc MSD Intervet Solución para problemas digestivos ALL \N 8 2 7 +1055 2025-02-20 11:17:53.416709+00 2025-02-20 11:17:53.416716+00 f t SARRI 500 x 200 ml Bechlab Solución para problemas digestivos ALL \N 8 2 7 +1056 2025-02-20 11:17:53.420459+00 2025-02-20 11:17:53.420465+00 f t SEDAGOTAS x 15ml LAMAR Gotas sedantes ALL \N 8 2 2 +1057 2025-02-20 11:17:53.425029+00 2025-02-20 11:17:53.425037+00 f t SEPTICARE MASTER FARM x 5000 ml Richmond Solución antiséptica ALL \N 7 2 7 +1058 2025-02-20 11:17:53.429687+00 2025-02-20 11:17:53.429698+00 f t SEPTON x 1 LITROS Nieser Solución antiséptica ALL \N 7 2 7 +1059 2025-02-20 11:17:53.434423+00 2025-02-20 11:17:53.434433+00 f t SERAQUIN x 60 comp. Comprimidos para problemas digestivos ALL \N 8 2 3 +1060 2025-02-20 11:17:53.439312+00 2025-02-20 11:17:53.439321+00 f t SILIHEPATIC x 30 comp. JM Comprimidos hepáticos ALL \N 8 2 3 +1061 2025-02-20 11:17:53.444282+00 2025-02-20 11:17:53.44429+00 f t SINGESTAR MP HI-JECT JERINGA x 1 cc Konig Inyectable ALL \N 8 2 10 +1062 2025-02-20 11:17:53.449456+00 2025-02-20 11:17:53.449463+00 f t SINGESTAR MP x 3 cc Konig Inyectable ALL \N 8 2 10 +1063 2025-02-20 11:17:53.453616+00 2025-02-20 11:17:53.453624+00 f t SINGESTAR x 8 comp. Konig Comprimidos ALL \N 8 2 3 +1064 2025-02-20 11:17:53.457505+00 2025-02-20 11:17:53.457513+00 f t SOL. AGUA P/INYECCIONES x 500 ml. - Solución inyectable ALL \N 10 2 10 +1065 2025-02-20 11:17:53.461576+00 2025-02-20 11:17:53.461585+00 f t SOL. DEXTROSA 5 % EN AGUA x 500 ml - Solución inyectable ALL \N 10 2 10 +1066 2025-02-20 11:17:53.465974+00 2025-02-20 11:17:53.465981+00 f t SOL. DEXTROSA 5 % EN SOL. SALINA x 500 ml - Solución inyectable ALL \N 10 2 10 +1067 2025-02-20 11:17:53.469731+00 2025-02-20 11:17:53.469737+00 f t SOL. FISIOLOGICA DE CLORURO DE SODIO x 500 ml - Solución inyectable ALL \N 10 2 10 +1068 2025-02-20 11:17:53.474282+00 2025-02-20 11:17:53.474291+00 f t SOL. MANITOL 15 % EN AGUA x 500 - Solución inyectable ALL \N 10 2 10 +1069 2025-02-20 11:17:53.478761+00 2025-02-20 11:17:53.478767+00 f t SOL. RINGER LACTATO x 500 ml. - Solución inyectable ALL \N 10 2 10 +1070 2025-02-20 11:17:53.48335+00 2025-02-20 11:17:53.483358+00 f t SOLUBRON 20 x 30 comp. (3 bl) Holliday Comprimidos ALL \N 7 2 3 +1071 2025-02-20 11:17:53.48806+00 2025-02-20 11:17:53.488066+00 f t SOSTEN ART. 25 x 100 comp. Mayor Comprimidos ALL \N 8 2 3 +1072 2025-02-20 11:17:53.491832+00 2025-02-20 11:17:53.491839+00 f t SOSTEN ART. 25 x 30 comp. Mayor Comprimidos ALL \N 8 2 3 +1073 2025-02-20 11:17:53.495844+00 2025-02-20 11:17:53.49585+00 f t SOSTEN ART. 25 x 60 comp. Mayor Comprimidos ALL \N 8 2 3 +1074 2025-02-20 11:17:53.500054+00 2025-02-20 11:17:53.50006+00 f t SOSTEN CG inyec. x 5 cc Mayor Inyectable ALL \N 8 2 10 +1075 2025-02-20 11:17:53.503973+00 2025-02-20 11:17:53.50398+00 f t SOSTEN CG INYEC. x 5 cc x 5 FRASCOS Mayor Inyectable ALL \N 8 2 10 +1076 2025-02-20 11:17:53.507851+00 2025-02-20 11:17:53.507857+00 f t SOSTEN CG ORAL x 80 comp. (8 blisters) Mayor Comprimidos ALL \N 8 2 3 +1077 2025-02-20 11:17:53.51285+00 2025-02-20 11:17:53.512861+00 f t SPRAY BUCAL PET O DENT x 125 ml Porta Spray bucal ALL \N 7 2 34 +1078 2025-02-20 11:17:53.517325+00 2025-02-20 11:17:53.517333+00 f t SRE x 50 cc Von Franken Inyectable ALL \N 8 2 10 +1079 2025-02-20 11:17:53.521963+00 2025-02-20 11:17:53.521971+00 f t STERILON x 1000 ml Paraqueños Solución antiséptica ALL \N 7 2 34 +1080 2025-02-20 11:17:53.526247+00 2025-02-20 11:17:53.526253+00 f t STOMAGYL x 100 comp. Triton Comprimidos ALL \N 9 2 3 +1081 2025-02-20 11:17:53.52998+00 2025-02-20 11:17:53.529985+00 f t STOMAGYL x 20 comp. Triton Comprimidos ALL \N 9 2 3 +1082 2025-02-20 11:17:53.534583+00 2025-02-20 11:17:53.534588+00 f t SUCRAVET x 100 ml Vetanco Solución oral ALL \N 8 2 35 +1083 2025-02-20 11:17:53.538465+00 2025-02-20 11:17:53.53847+00 f t SULFAX SOLUBRE x 50 g Ruminal Polvo ALL \N 9 2 35 +1084 2025-02-20 11:17:53.542756+00 2025-02-20 11:17:53.542762+00 f t T4 0.4mg x 100 comp. (10 bl.) Triton Comprimidos ALL \N 8 2 3 +1085 2025-02-20 11:17:53.546865+00 2025-02-20 11:17:53.546869+00 f t T4 0.8mg x 100 comp. (10 bl.) Triton Comprimidos ALL \N 8 2 3 +1086 2025-02-20 11:17:53.551155+00 2025-02-20 11:17:53.551161+00 f t T4 F x 100 comp. (10 bl.) LAMAR Comprimidos ALL \N 8 2 3 +1087 2025-02-20 11:17:53.555407+00 2025-02-20 11:17:53.555416+00 f t T4 F x 250 comp. (25 bl.) LAMAR Comprimidos ALL \N 8 2 3 +1088 2025-02-20 11:17:53.559542+00 2025-02-20 11:17:53.559549+00 f t T4 F x 500 comp. (50 bl.) LAMAR Comprimidos ALL \N 8 2 3 +1089 2025-02-20 11:17:53.563559+00 2025-02-20 11:17:53.563565+00 f t T4 x 100 comp. (10 bl.) LAMAR Comprimidos ALL \N 8 2 3 +1090 2025-02-20 11:17:53.567645+00 2025-02-20 11:17:53.567654+00 f t T4 x 500 comp. (50 bl.) LAMAR Comprimidos ALL \N 8 2 3 +1091 2025-02-20 11:17:53.57189+00 2025-02-20 11:17:53.571895+00 f t TIROIDIN 4 (0.6mg) x 100 comp. Interbiol Comprimidos ALL \N 8 2 3 +1092 2025-02-20 11:17:53.576023+00 2025-02-20 11:17:53.576029+00 f t TIU x 30 comp. (3 bl) Zoovet Comprimidos ALL \N 8 2 3 +1093 2025-02-20 11:17:53.580716+00 2025-02-20 11:17:53.580721+00 f t TONICO TOTAL CAT PASTA x 80 ml - Pasta oral CAT \N 8 2 36 +1094 2025-02-20 11:17:53.58444+00 2025-02-20 11:17:53.584447+00 f t TONICO TOTAL DOG PASTA x 80 ml - Pasta oral DOG \N 8 2 36 +1095 2025-02-20 11:17:53.588185+00 2025-02-20 11:17:53.58819+00 f t TONICO TOTAL JARABE x 200 ml - Jarabe ALL \N 8 2 36 +1096 2025-02-20 11:17:53.591615+00 2025-02-20 11:17:53.59162+00 f t TONICO TOTAL JARABE x 900 ml - Jarabe ALL \N 8 2 36 +1097 2025-02-20 11:17:53.595225+00 2025-02-20 11:17:53.59523+00 f t TONIPET x 21 comp. Holliday Suplemento ALL \N 8 2 3 +1098 2025-02-20 11:17:53.598778+00 2025-02-20 11:17:53.598782+00 f t TORACARD X 10 ml Holliday Inyectable ALL \N 8 2 10 +1099 2025-02-20 11:17:53.602374+00 2025-02-20 11:17:53.602379+00 f t TOTALVET X 10 Comp. - CHICO.X 30 Fp. Zoovet Comprimidos ALL \N 8 2 3 +1100 2025-02-20 11:17:53.606083+00 2025-02-20 11:17:53.606089+00 f t TOTALVET X 5 Comp. - GRANDE X 30 Fp. Zoovet Comprimidos ALL \N 8 2 3 +1101 2025-02-20 11:17:53.609971+00 2025-02-20 11:17:53.609976+00 f t TOTALVET X 8 Comp. - MED.X 30 Fp. Zoovet Comprimidos ALL \N 8 2 3 +1102 2025-02-20 11:17:53.614552+00 2025-02-20 11:17:53.614556+00 f t TRAMADOL 100 mg GOTAS x 10 ml JM Gotas ALL \N 13 2 35 +1103 2025-02-20 11:17:53.618315+00 2025-02-20 11:17:53.61832+00 f t TRAMADOL 20 mg x 10 comp. (1 bl.) JM Comprimidos ALL \N 13 2 3 +1104 2025-02-20 11:17:53.622263+00 2025-02-20 11:17:53.622271+00 f t TRAMADOL 20 mg x 60 comp. (6 bl.) JM Comprimidos ALL \N 13 2 3 +1105 2025-02-20 11:17:53.625987+00 2025-02-20 11:17:53.625991+00 f t TRAMADOL 50 mg INY x 50 cc JM Inyectable ALL \N 13 2 10 +1106 2025-02-20 11:17:53.6299+00 2025-02-20 11:17:53.629905+00 f t TRAMADOL 75 mg x 120 comp. (12 bl.) JM Comprimidos ALL \N 13 2 3 +1107 2025-02-20 11:17:53.633686+00 2025-02-20 11:17:53.633696+00 f t TRAMADOL 75 mg x 20 comp. (2 bl.) JM Comprimidos ALL \N 13 2 3 +1108 2025-02-20 11:17:53.637622+00 2025-02-20 11:17:53.637628+00 f t TRAMAVIER 80 mg x 120 comp (12 bl.) - Comprimidos ALL \N 13 2 3 +1109 2025-02-20 11:17:53.641329+00 2025-02-20 11:17:53.641334+00 f t TRAMAVIER 80 mg x 20 comp (2 bl.) - Comprimidos ALL \N 13 2 3 +1110 2025-02-20 11:17:53.645393+00 2025-02-20 11:17:53.645399+00 f t TRIAM-RETARD x 20 cc Von Franken Inyectable ALL \N 11 2 10 +1111 2025-02-20 11:17:53.649372+00 2025-02-20 11:17:53.64938+00 f t TRICINAL x 50 cc INTERBIOL Inyectable ALL \N 8 2 10 +1112 2025-02-20 11:17:53.654202+00 2025-02-20 11:17:53.65421+00 f t TRICORTI-K x 50 cc Paraqueños Inyectable ALL \N 11 2 10 +1113 2025-02-20 11:17:53.659114+00 2025-02-20 11:17:53.659121+00 f t TRIDOL INY 5 amp. x 10 cc Aton Inyectable ALL \N 13 2 10 +1114 2025-02-20 11:17:53.66393+00 2025-02-20 11:17:53.663937+00 f t TRIHEPAT JARABE x 100 ml Labyes Jarabe ALL \N 8 2 35 +1115 2025-02-20 11:17:53.668721+00 2025-02-20 11:17:53.668728+00 f t TRITOHEXIDIN x 1000 ml SPRAY Triton Spray ALL \N 7 2 34 +1116 2025-02-20 11:17:53.673451+00 2025-02-20 11:17:53.673458+00 f t TRITOHEXIDIN x 5000 ml Triton Solución ALL \N 7 2 34 +1117 2025-02-20 11:17:53.678339+00 2025-02-20 11:17:53.678347+00 f t TROCOXIL TAB 30 MG x 2 tabletas - Tabletas ALL \N 13 2 35 +1118 2025-02-20 11:17:53.683195+00 2025-02-20 11:17:53.683203+00 f t TROCOXIL TAB 75 MG x 2 tabletas - Tabletas ALL \N 13 2 35 +1119 2025-02-20 11:17:53.688061+00 2025-02-20 11:17:53.688068+00 f t TROCOXIL TAB 95 MG x 2 tabletas - Tabletas ALL \N 13 2 35 +1120 2025-02-20 11:17:53.693012+00 2025-02-20 11:17:53.693019+00 f t TYNDALAC C x 8 amp. Lumai Inyectable ALL \N 8 2 10 +1121 2025-02-20 11:17:53.697845+00 2025-02-20 11:17:53.697854+00 f t U DERM OMEGA GEL x 50 g Dermovet Urano Gel ALL \N 8 2 35 +1122 2025-02-20 11:17:53.70297+00 2025-02-20 11:17:53.702978+00 f t UROFLOGIN comp. (x16 comp. Cipro + 8 comp. Propa) Triton Comprimidos ALL \N 9 2 3 +1123 2025-02-20 11:17:53.707752+00 2025-02-20 11:17:53.70776+00 f t URSOLIV x 75 ml JM Solución oral ALL \N 8 2 35 +1124 2025-02-20 11:17:53.712663+00 2025-02-20 11:17:53.71267+00 f t URSOMARINA 10 Kg x 50 comp. (5bs) Bechlab Comprimidos ALL \N 8 2 3 +1125 2025-02-20 11:17:53.717652+00 2025-02-20 11:17:53.71766+00 f t URSOMARINA 20 Kg x 50 comp. (5bs) Bechlab Comprimidos ALL \N 8 2 3 +1126 2025-02-20 11:17:53.722493+00 2025-02-20 11:17:53.7225+00 f t URSOMARINA SUSPENSION x 100 ml Bechlab Suspensión ALL \N 8 2 35 +1127 2025-02-20 11:17:53.728323+00 2025-02-20 11:17:53.728331+00 f t VASELINA LIQ.MEDICINAL 1000 ml - Vaselina líquida ALL \N 8 2 37 +1128 2025-02-20 11:17:53.733221+00 2025-02-20 11:17:53.733229+00 f t VASELINA LIQ.MEDICINAL 125 ml - Vaselina líquida ALL \N 8 2 37 +1129 2025-02-20 11:17:53.738201+00 2025-02-20 11:17:53.738208+00 f t VASELINA x 125 ml LAMAR Vaselina líquida ALL \N 8 2 37 +1130 2025-02-20 11:17:53.743223+00 2025-02-20 11:17:53.743231+00 f t VETALGINA 50% x 100 cc Vetanco Inyectable ALL \N 13 2 10 +1131 2025-02-20 11:17:53.748253+00 2025-02-20 11:17:53.748262+00 f t VETMEDIN 1.25 mg x 50 comp. - Comprimidos ALL \N 8 2 3 +1132 2025-02-20 11:17:53.75344+00 2025-02-20 11:17:53.753448+00 f t VETMEDIN 5 mg x 50 comp. - Comprimidos ALL \N 8 2 3 +1133 2025-02-20 11:17:53.758548+00 2025-02-20 11:17:53.758556+00 f t VILISIN H 25% x 30 ml Mayor Inyectable ALL \N 8 2 10 +1134 2025-02-20 11:17:53.763589+00 2025-02-20 11:17:53.763598+00 f t VITA PLUS CHICO x 20 comp. Zoovet Suplemento ALL \N 8 2 3 +1135 2025-02-20 11:17:53.768641+00 2025-02-20 11:17:53.768648+00 f t VITA PLUS GRANDE x 21 comp. Zoovet Suplemento ALL \N 8 2 3 +1136 2025-02-20 11:17:53.773645+00 2025-02-20 11:17:53.773653+00 f t VITA PLUS MEDIANO x 20 comp. Zoovet Suplemento ALL \N 8 2 3 +1137 2025-02-20 11:17:53.778696+00 2025-02-20 11:17:53.778704+00 f t VITAMINA B 12 x 50000 AMP.x 50 cc NORT Inyectable ALL \N 8 2 10 +1138 2025-02-20 11:17:53.783652+00 2025-02-20 11:17:53.78366+00 f t VITAMINA B-12 50000 mcg INY. x 50 cc CHINFIELD Inyectable ALL \N 8 2 10 +1139 2025-02-20 11:17:53.788765+00 2025-02-20 11:17:53.788773+00 f t VITAMINA K 10 mg x 10 cc Von Franken Inyectable ALL \N 8 2 10 +1140 2025-02-20 11:17:53.793638+00 2025-02-20 11:17:53.793645+00 f t VITAMINA K1 10 MG x 10 cc fco amp. JM Inyectable ALL \N 8 2 10 +1141 2025-02-20 11:17:53.798538+00 2025-02-20 11:17:53.798546+00 f t VITAMINICO 12-15 x 10 ml Nort Inyectable ALL \N 8 2 10 +1142 2025-02-20 11:17:53.803383+00 2025-02-20 11:17:53.80339+00 f t VIVIRAM-V INY. x 10 cc Holliday Inyectable ALL \N 8 2 10 +1143 2025-02-20 11:17:53.808278+00 2025-02-20 11:17:53.808286+00 f t XILACINA 100 10% x 50 cc Richmond Inyectable ALL \N 8 2 10 +1144 2025-02-20 11:17:53.813239+00 2025-02-20 11:17:53.813247+00 f t XILACINA 20 2% x 20 cc Richmond Inyectable ALL \N 8 2 10 +1145 2025-02-20 11:17:53.818241+00 2025-02-20 11:17:53.818248+00 f t XILAZINA 2% x 20 cc Aton Inyectable ALL \N 8 2 10 +1146 2025-02-20 11:17:53.822907+00 2025-02-20 11:17:53.822915+00 f t Xmile GEL x 50 g Dermovet Urano Gel ALL \N 8 2 35 +1147 2025-02-20 11:17:53.827748+00 2025-02-20 11:17:53.827755+00 f t YOHIMBINE VET x 10 ml Richmond Inyectable ALL \N 8 2 10 +1148 2025-02-20 11:17:53.834712+00 2025-02-20 11:17:53.834719+00 f t NOBIVAC RL MSD Intervet Vacuna contra rabia y leptospirosis DOG \N 14 3 10 +1149 2025-02-20 11:17:53.840515+00 2025-02-20 11:17:53.840522+00 f t BAGOVAC RABIA Biogenesis Vacuna contra la rabia ALL \N 15 3 10 +1150 2025-02-20 11:17:53.84554+00 2025-02-20 11:17:53.845547+00 f t CULTIVAC RABIA Vacuna contra la rabia ALL \N 15 3 10 +1151 2025-02-20 11:17:53.850524+00 2025-02-20 11:17:53.850531+00 f t DEFENSOR (RABIA) Vacuna contra la rabia ALL \N 15 3 10 +1152 2025-02-20 11:17:53.855454+00 2025-02-20 11:17:53.855462+00 f t NOBIVAC RABIES MSD Intervet Vacuna contra la rabia ALL \N 15 3 10 +1153 2025-02-20 11:17:53.860418+00 2025-02-20 11:17:53.860426+00 f t PAUL - ANTIRRABICA PAUL Vacuna contra la rabia ALL \N 15 3 10 +1154 2025-02-20 11:17:53.865432+00 2025-02-20 11:17:53.86544+00 f t PROVIDEAN BH - RABIA Tecnovax Vacuna contra la rabia ALL \N 15 3 10 +1155 2025-02-20 11:17:53.870691+00 2025-02-20 11:17:53.870699+00 f t RABISIN Boehringer Vacuna contra la rabia ALL \N 15 3 10 +1156 2025-02-20 11:17:53.87654+00 2025-02-20 11:17:53.876547+00 f t CANIGEN MHA2PPI (5º PLE) Virbac Vacuna múltiple para perros DOG \N 16 3 10 +1157 2025-02-20 11:17:53.881501+00 2025-02-20 11:17:53.881508+00 f t FELIGEN CRP Virbac Vacuna múltiple para gatos CAT \N 16 3 10 +1158 2025-02-20 11:17:53.886518+00 2025-02-20 11:17:53.886526+00 f t FELOCELL CVR Zoetis Vacuna múltiple para gatos CAT \N 16 3 10 +1159 2025-02-20 11:17:53.891569+00 2025-02-20 11:17:53.891576+00 f t NOBIVAC DHPPI MSD Intervet Vacuna múltiple para perros DOG \N 16 3 10 +1160 2025-02-20 11:17:53.896587+00 2025-02-20 11:17:53.896595+00 f t NOBIVAC Edge DAPPv+L4 MSD Intervet Vacuna múltiple para perros DOG \N 16 3 10 +1161 2025-02-20 11:17:53.901577+00 2025-02-20 11:17:53.901586+00 f t NOBIVAC TRICAT TRIO MSD Intervet Vacuna múltiple para gatos CAT \N 16 3 10 +1162 2025-02-20 11:17:53.90662+00 2025-02-20 11:17:53.906628+00 f t PAUL - 6 SEXTUPLE PAUL Vacuna múltiple para perros DOG \N 16 3 10 +1163 2025-02-20 11:17:53.911523+00 2025-02-20 11:17:53.911532+00 f t PROVIDEAN VIRATEC 10 CV 4L Tecnovax Vacuna múltiple para perros DOG \N 16 3 10 +1164 2025-02-20 11:17:53.916491+00 2025-02-20 11:17:53.916498+00 f t PROVIDEAN VIRATEC 5 Tecnovax Vacuna múltiple para perros DOG \N 16 3 10 +1165 2025-02-20 11:17:53.921317+00 2025-02-20 11:17:53.921324+00 f t PROVIDEAN VIRATEC 6 CV Tecnovax Vacuna múltiple para perros DOG \N 16 3 10 +1166 2025-02-20 11:17:53.926289+00 2025-02-20 11:17:53.926297+00 f t PROVIDEAN VIRATEC 9 4L Tecnovax Vacuna múltiple para perros DOG \N 16 3 10 +1167 2025-02-20 11:17:53.931113+00 2025-02-20 11:17:53.931121+00 f t PUREVAX RCPCH (QUINTUPLE FELINA) Vacuna múltiple para gatos CAT \N 16 3 10 +1168 2025-02-20 11:17:53.936275+00 2025-02-20 11:17:53.936282+00 f t QUANTUM DA2PPVL (5+L) MSD Intervet Vacuna múltiple para perros DOG \N 16 3 10 +1169 2025-02-20 11:17:53.941257+00 2025-02-20 11:17:53.941268+00 f t RECOMBITEK C4 Vacuna múltiple para perros DOG \N 16 3 10 +1170 2025-02-20 11:17:53.945977+00 2025-02-20 11:17:53.945985+00 f t RECOMBITEK C6 Vacuna múltiple para perros DOG \N 16 3 10 +1171 2025-02-20 11:17:53.950487+00 2025-02-20 11:17:53.950494+00 f t RECOMBITEK C8 Vacuna múltiple para perros DOG \N 16 3 10 +1172 2025-02-20 11:17:53.955261+00 2025-02-20 11:17:53.955269+00 f t VANGUARD DA2P+L Zoetis Vacuna múltiple para perros DOG \N 16 3 10 +1173 2025-02-20 11:17:53.959898+00 2025-02-20 11:17:53.959905+00 f t VANGUARD PLUS 5 Zoetis Vacuna múltiple para perros DOG \N 16 3 10 +1174 2025-02-20 11:17:53.964476+00 2025-02-20 11:17:53.964482+00 f t VANGUARD PLUS 5 + 4L + CV Zoetis Vacuna múltiple para perros DOG \N 16 3 10 +1175 2025-02-20 11:17:53.969117+00 2025-02-20 11:17:53.969124+00 f t VANGUARD PLUS 5 + CV Zoetis Vacuna múltiple para perros DOG \N 16 3 10 +1176 2025-02-20 11:17:53.973908+00 2025-02-20 11:17:53.973915+00 f t VANGUARD PLUS 5 + L4 Zoetis Vacuna múltiple para perros DOG \N 16 3 10 +1177 2025-02-20 11:17:53.979565+00 2025-02-20 11:17:53.97957+00 f t VANGUARD PLUS CPV+CV Zoetis Vacuna contra el parvovirus y coronavirus DOG \N 17 3 10 +1178 2025-02-20 11:17:53.985083+00 2025-02-20 11:17:53.985089+00 f t QUANTUM PV MSD Intervet Vacuna contra el parvovirus DOG \N 18 3 10 +1179 2025-02-20 11:17:53.989872+00 2025-02-20 11:17:53.98988+00 f t VANGUARD PLUS CPV Zoetis Vacuna contra el parvovirus DOG \N 18 3 10 +1180 2025-02-20 11:17:53.995856+00 2025-02-20 11:17:53.995863+00 f t PUREVAX Fel V (LEUCEMIA FELINA) Vacuna contra la leucemia felina CAT \N 19 3 10 +1181 2025-02-20 11:17:54.001866+00 2025-02-20 11:17:54.001874+00 f t NOBIVAC LEPTO MSD Intervet Vacuna contra la leptospirosis DOG \N 20 3 10 +1182 2025-02-20 11:17:54.006528+00 2025-02-20 11:17:54.006535+00 f t PROVIDEAN LEPTOTEC Tecnovax Vacuna contra la leptospirosis DOG \N 20 3 10 +1183 2025-02-20 11:17:54.01259+00 2025-02-20 11:17:54.012597+00 f t CANILEISH x 3 DOSIS Virbac Vacuna contra la leishmaniosis DOG \N 21 3 10 +1184 2025-02-20 11:17:54.018691+00 2025-02-20 11:17:54.018697+00 f t CANINSULIN 40 Ul x 10 cc MSD Intervet Insulina para perros con diabetes ALL \N 22 3 10 +1185 2025-02-20 11:17:54.023345+00 2025-02-20 11:17:54.023353+00 f t CANINSULIN 40 Ul x unidosis 2.5 cc MSD Intervet Insulina para perros con diabetes ALL \N 22 3 10 +1186 2025-02-20 11:17:54.028708+00 2025-02-20 11:17:54.028715+00 f t GIARDIA VAX Vacuna contra la giardiasis DOG \N 23 3 10 +1187 2025-02-20 11:17:54.034412+00 2025-02-20 11:17:54.034418+00 f t NOBIVAC PUPPY DP MSD Intervet Vacuna para cachorros DOG \N 24 3 10 +1188 2025-02-20 11:17:54.039107+00 2025-02-20 11:17:54.039114+00 f t PROVIDEAN VIRATEC DP Tecnovax Vacuna múltiple para perros DOG \N 24 3 10 +1189 2025-02-20 11:17:54.044637+00 2025-02-20 11:17:54.044645+00 f t COUGHGUARD PLUS (Bordetella) Zoetis Vacuna contra la tos de las perreras DOG \N 25 3 10 +1190 2025-02-20 11:17:54.049217+00 2025-02-20 11:17:54.049225+00 f t NOBIVAC KC MSD Intervet Vacuna contra la tos de las perreras DOG \N 25 3 10 +1191 2025-09-22 17:05:57+00 2025-09-22 17:05:57+00 f t Enrofloxacina \N Es un antibiótico bactericida de amplio espectro. ALL \N 9 2 10 +\. + + +-- +-- Data for Name: common_medicationgeneralname; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_medicationgeneralname (id, created_at, updated_at, deleted, active, name, user_id, medication_type_id) FROM stdin; +1 2025-02-20 11:17:48.933803+00 2025-02-20 11:17:48.933814+00 f t Antiparasitario externo \N 1 +2 2025-02-20 11:17:48.957266+00 2025-02-20 11:17:48.957274+00 f t Antiparasitario externo + interno \N 1 +3 2025-02-20 11:17:48.983706+00 2025-02-20 11:17:48.983714+00 f t Antiparasitario interno \N 1 +4 2025-02-20 11:17:51.225354+00 2025-02-20 11:17:51.225359+00 f t Fármaco \N 2 +5 2025-02-20 11:17:51.229518+00 2025-02-20 11:17:51.229523+00 f t Antiséptico \N 2 +6 2025-02-20 11:17:51.393328+00 2025-02-20 11:17:51.393334+00 f t Analgésicos / antinflamatorios \N 2 +7 2025-02-20 11:17:51.419173+00 2025-02-20 11:17:51.419182+00 f t Antisépticos \N 2 +8 2025-02-20 11:17:51.479678+00 2025-02-20 11:17:51.479684+00 f t Otro \N 2 +9 2025-02-20 11:17:51.487938+00 2025-02-20 11:17:51.487944+00 f t Antibióticos \N 2 +10 2025-02-20 11:17:51.505485+00 2025-02-20 11:17:51.505492+00 f t Hidratación \N 2 +11 2025-02-20 11:17:51.516282+00 2025-02-20 11:17:51.516289+00 f t Corticoides \N 2 +12 2025-02-20 11:17:52.522074+00 2025-02-20 11:17:52.522082+00 f t Anestésico \N 2 +13 2025-02-20 11:17:53.612691+00 2025-02-20 11:17:53.612696+00 f t Analgésicos \N 2 +14 2025-02-20 11:17:53.832246+00 2025-02-20 11:17:53.832254+00 f t Rabia+leptospirosis \N 3 +15 2025-02-20 11:17:53.83819+00 2025-02-20 11:17:53.838197+00 f t Rabia \N 3 +16 2025-02-20 11:17:53.874166+00 2025-02-20 11:17:53.874173+00 f t Polivalente \N 3 +17 2025-02-20 11:17:53.977306+00 2025-02-20 11:17:53.977313+00 f t Parvovirus+corona \N 3 +18 2025-02-20 11:17:53.982811+00 2025-02-20 11:17:53.982819+00 f t Parvovirus \N 3 +19 2025-02-20 11:17:53.993341+00 2025-02-20 11:17:53.993348+00 f t Leucemia felina \N 3 +20 2025-02-20 11:17:53.999469+00 2025-02-20 11:17:53.999476+00 f t Leptospirosis \N 3 +21 2025-02-20 11:17:54.009997+00 2025-02-20 11:17:54.010006+00 f t Leishmaniasis \N 3 +22 2025-02-20 11:17:54.016149+00 2025-02-20 11:17:54.016157+00 f t Insulina \N 3 +23 2025-02-20 11:17:54.026526+00 2025-02-20 11:17:54.026534+00 f t Giardia \N 3 +24 2025-02-20 11:17:54.032139+00 2025-02-20 11:17:54.032147+00 f t Distemper+parvo \N 3 +25 2025-02-20 11:17:54.042388+00 2025-02-20 11:17:54.042395+00 f t Bordetella \N 3 +\. + + +-- +-- Data for Name: common_medicationpresentation; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_medicationpresentation (id, created_at, updated_at, deleted, active, name, user_id) FROM stdin; +1 2025-02-20 11:17:48.930859+00 2025-02-20 11:17:48.930869+00 f t Pipeta \N +2 2025-02-20 11:17:48.981779+00 2025-02-20 11:17:48.981786+00 f t Gotas \N +3 2025-02-20 11:17:48.988857+00 2025-02-20 11:17:48.988865+00 f t Comprimidos \N +4 2025-02-20 11:17:49.004313+00 2025-02-20 11:17:49.00432+00 f t Líquido \N +5 2025-02-20 11:17:49.038524+00 2025-02-20 11:17:49.038531+00 f t Suspensión \N +6 2025-02-20 11:17:49.057701+00 2025-02-20 11:17:49.057709+00 f t Polvo \N +7 2025-02-20 11:17:49.086877+00 2025-02-20 11:17:49.086884+00 f t Solución \N +8 2025-02-20 11:17:49.110496+00 2025-02-20 11:17:49.110504+00 f t Pasta \N +9 2025-02-20 11:17:49.279635+00 2025-02-20 11:17:49.279642+00 f t Spot on \N +10 2025-02-20 11:17:49.327187+00 2025-02-20 11:17:49.327194+00 f t Inyectable \N +11 2025-02-20 11:17:49.337703+00 2025-02-20 11:17:49.337711+00 f t Collar \N +12 2025-02-20 11:17:49.528072+00 2025-02-20 11:17:49.528079+00 f t Shampoo \N +13 2025-02-20 11:17:49.534085+00 2025-02-20 11:17:49.534093+00 f t Spray \N +14 2025-02-20 11:17:49.962523+00 2025-02-20 11:17:49.962531+00 f t Aerosol \N +15 2025-02-20 11:17:50.125452+00 2025-02-20 11:17:50.12546+00 f t Sachets \N +16 2025-02-20 11:17:50.150457+00 2025-02-20 11:17:50.150465+00 f t Talco \N +17 2025-02-20 11:17:50.345543+00 2025-02-20 11:17:50.34555+00 f t Pipeta + comprimido \N +18 2025-02-20 11:17:50.360237+00 2025-02-20 11:17:50.360245+00 f t Cera \N +19 2025-02-20 11:17:50.43308+00 2025-02-20 11:17:50.433088+00 f t Pasta oral \N +20 2025-02-20 11:17:50.808727+00 2025-02-20 11:17:50.808733+00 f t Crema \N +21 2025-02-20 11:17:50.851549+00 2025-02-20 11:17:50.851555+00 f t Espuma \N +22 2025-02-20 11:17:51.24572+00 2025-02-20 11:17:51.245728+00 f t Acondicionador \N +23 2025-02-20 11:17:51.262827+00 2025-02-20 11:17:51.262832+00 f t Cápsulas \N +24 2025-02-20 11:17:51.292652+00 2025-02-20 11:17:51.29266+00 f t Gel \N +25 2025-02-20 11:17:51.435316+00 2025-02-20 11:17:51.435325+00 f t Granulado \N +26 2025-02-20 11:17:51.503794+00 2025-02-20 11:17:51.503801+00 f t Polvos \N +27 2025-02-20 11:17:51.51456+00 2025-02-20 11:17:51.514568+00 f t Loción \N +28 2025-02-20 11:17:51.520514+00 2025-02-20 11:17:51.52052+00 f t Enjuague bucal \N +29 2025-02-20 11:17:51.546371+00 2025-02-20 11:17:51.54638+00 f t Jarabe \N +30 2025-02-20 11:17:52.417279+00 2025-02-20 11:17:52.417286+00 f t Cebo \N +31 2025-02-20 11:17:52.495253+00 2025-02-20 11:17:52.495259+00 f t Jeringas \N +32 2025-02-20 11:17:52.936116+00 2025-02-20 11:17:52.936121+00 f t Roll-on \N +33 2025-02-20 11:17:53.402244+00 2025-02-20 11:17:53.402249+00 f t Sobres \N +34 2025-02-20 11:17:53.51006+00 2025-02-20 11:17:53.510069+00 f t Antiséptico \N +35 2025-02-20 11:17:53.531885+00 2025-02-20 11:17:53.531893+00 f t Medicamento \N +36 2025-02-20 11:17:53.578018+00 2025-02-20 11:17:53.578025+00 f t Suplemento \N +37 2025-02-20 11:17:53.724967+00 2025-02-20 11:17:53.724975+00 f t Hidratación \N +\. + + +-- +-- Data for Name: common_medicationtype; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_medicationtype (id, created_at, updated_at, deleted, active, name, user_id) FROM stdin; +1 2025-02-20 11:17:48.927332+00 2025-02-20 11:17:48.927346+00 f t antiparasitario \N +2 2025-02-20 11:17:51.22343+00 2025-02-20 11:17:51.223435+00 f t medicamento \N +3 2025-02-20 11:17:53.829566+00 2025-02-20 11:17:53.829574+00 f t vacuna \N +\. + + +-- +-- Data for Name: common_neighborhood; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_neighborhood (id, created_at, updated_at, deleted, active, name, user_id, distance_coefficient, coverage_area) FROM stdin; +156 2025-09-09 17:37:03+00 2025-09-09 17:37:03+00 f t Munro 118 1.00 \N +79 2025-02-11 19:02:18+00 2025-02-11 19:02:18+00 f t Villa Ballester \N 1.00 \N +83 2025-02-21 20:28:51+00 2025-02-21 20:28:51+00 f t Villa Adelina \N 1.00 \N +81 2025-02-21 20:28:35+00 2025-02-21 20:28:35+00 t t Villa Martelli \N 1.00 \N +84 2025-03-18 18:17:30+00 2025-03-18 18:17:30+00 f t Adrogué \N 1.00 \N +86 2025-04-06 15:35:34+00 2025-04-06 15:35:34+00 f t Congreso \N 1.00 \N +88 2025-04-16 19:20:59+00 2025-04-16 19:20:59+00 f t Caseros \N 1.00 \N +90 2025-04-16 19:28:11+00 2025-04-16 19:28:11+00 f t Lomas del Mirador \N 1.00 \N +92 2025-04-16 19:33:37+00 2025-04-16 19:33:37+00 f t José Ingenieros \N 1.00 \N +102 2025-04-18 03:41:47+00 2025-04-18 03:41:47+00 t t 1ero de mayo \N 1.00 \N +145 2025-05-28 21:52:50.229598+00 2025-05-28 21:52:50.229609+00 t t Desconocidol \N 1.00 \N +158 2025-10-17 03:06:41.084365+00 2025-10-17 03:06:41.08438+00 f t Palermon \N 1.00 \N +96 2025-04-16 20:38:24.698226+00 2025-04-16 20:38:24.698232+00 t t APalermoo \N 1.00 \N +153 2025-09-07 17:52:12+00 2025-09-07 17:52:12+00 f t Nordelta 114 1.50 \N +160 2025-10-31 21:08:19+00 2025-10-31 21:08:19+00 f t Santa Bárbara 118 1.50 \N +111 2025-05-01 12:10:35.514877+00 2025-05-01 12:10:35.514887+00 f t Dique lujan \N 1.00 \N +162 2025-11-12 14:23:37+00 2025-11-12 14:23:37+00 f t General Pacheco 118 1.50 \N +113 2025-05-01 18:24:31+00 2025-05-01 18:24:31+00 f t 1. Otro barrio de GBA \N 1.00 \N +77 2025-02-11 18:59:37+00 2025-02-11 18:59:37+00 f t San Isidro \N 1.00 \N +42 2024-11-19 21:30:30+00 2024-11-19 21:30:30+00 f t Wilde \N 1.00 \N +147 2025-07-31 19:02:22+00 2025-07-31 19:02:22+00 f t La Plata 118 1.00 \N +149 2025-07-31 19:02:36+00 2025-07-31 19:02:36+00 f t Tolosa 118 1.00 \N +151 2025-07-31 19:02:49+00 2025-07-31 19:02:49+00 f t City Bell 118 1.00 \N +155 2025-09-07 18:09:05+00 2025-09-07 18:09:05+00 f t Beccar 114 1.00 \N +1 2024-10-30 14:13:08.281+00 2024-10-30 14:13:08.281+00 f t Palermo \N 1.00 \N +2 2024-10-30 14:13:08.293+00 2024-10-30 14:13:08.293+00 f t Desconocido \N 1.00 \N +3 2024-10-30 14:13:08.309+00 2024-10-30 14:13:08.309+00 f t Belgrano \N 1.00 \N +4 2024-10-30 14:13:08.317+00 2024-10-30 14:13:08.317+00 f t Flores \N 1.00 \N +5 2024-10-30 14:13:08.331+00 2024-10-30 14:13:08.331+00 f t Parque Avellaneda \N 1.00 \N +6 2024-10-30 14:13:08.338+00 2024-10-30 14:13:08.338+00 f t Martinez \N 1.00 \N +7 2024-10-30 14:13:08.346+00 2024-10-30 14:13:08.346+00 f t Canning \N 1.00 \N +8 2024-10-30 14:13:08.353+00 2024-10-30 14:13:08.353+00 f t Berazategui \N 1.00 \N +9 2024-10-30 14:13:08.37+00 2024-10-30 14:13:08.37+00 f t Recoleta \N 1.00 \N +10 2024-10-30 14:13:08.406+00 2024-10-30 14:13:08.406+00 f t 9 de abril \N 1.00 \N +11 2024-10-30 14:13:08.413+00 2024-10-30 14:13:08.413+00 f t Boedo \N 1.00 \N +12 2024-10-30 14:13:08.421+00 2024-10-30 14:13:08.421+00 f t San Cristóbal \N 1.00 \N +13 2024-10-30 14:13:08.429+00 2024-10-30 14:13:08.429+00 f t San Nicolás \N 1.00 \N +14 2024-10-30 14:13:08.457+00 2024-10-30 14:13:08.457+00 f t Caballito \N 1.00 \N +15 2024-10-30 14:13:08.465+00 2024-10-30 14:13:08.465+00 f t San Telmo \N 1.00 \N +16 2024-10-30 14:13:08.519+00 2024-10-30 14:13:08.519+00 f t Floresta \N 1.00 \N +17 2024-10-30 14:13:08.539+00 2024-10-30 14:13:08.539+00 f t Villa del Parque \N 1.00 \N +18 2024-10-30 14:13:08.572+00 2024-10-30 14:13:08.572+00 f t Balvanera \N 1.00 \N +19 2024-10-30 14:13:08.607+00 2024-10-30 14:13:08.607+00 f t Mataderos \N 1.00 \N +20 2024-10-30 14:13:08.663+00 2024-10-30 14:13:08.663+00 f t Parque Chacabuco \N 1.00 \N +21 2024-10-30 14:13:08.727+00 2024-10-30 14:13:08.727+00 f t Villa Devoto \N 1.00 \N +22 2024-10-30 14:13:08.752+00 2024-10-30 14:13:08.752+00 f t Tigre \N 1.00 \N +23 2024-10-30 14:13:08.772+00 2024-10-30 14:13:08.772+00 f t Almagro \N 1.00 \N +24 2024-10-30 14:13:08.797+00 2024-10-30 14:13:08.797+00 f t Villa Ortúzar \N 1.00 \N +25 2024-10-30 14:13:08.835+00 2024-10-30 14:13:08.835+00 f t Nuñez \N 1.00 \N +26 2024-10-30 14:13:08.901+00 2024-10-30 14:13:08.901+00 f t Villa Crespo \N 1.00 \N +27 2024-10-30 14:13:08.955+00 2024-10-30 14:13:08.955+00 f t Villa Martelli \N 1.00 \N +28 2024-10-30 14:13:09.022+00 2024-10-30 14:13:09.022+00 f t Monte Castro \N 1.00 \N +29 2024-10-30 14:13:09.029+00 2024-10-30 14:13:09.029+00 f t Villa Urquiza \N 1.00 \N +30 2024-10-30 14:13:09.079+00 2024-10-30 14:13:09.079+00 f t Puerto Madero \N 1.00 \N +31 2024-10-30 14:13:09.232+00 2024-10-30 14:13:09.232+00 f t Saavedra \N 1.00 \N +32 2024-10-30 14:13:09.42+00 2024-10-30 14:13:09.42+00 f t Barracas \N 1.00 \N +33 2024-10-30 14:13:09.467+00 2024-10-30 14:13:09.467+00 f t La Boca \N 1.00 \N +34 2024-10-30 14:13:09.556+00 2024-10-30 14:13:09.556+00 f t La Paternal \N 1.00 \N +35 2024-10-30 14:13:09.709+00 2024-10-30 14:13:09.709+00 f t Chacarita \N 1.00 \N +36 2024-10-30 14:13:09.794+00 2024-10-30 14:13:09.794+00 f t Velez Sarsfield \N 1.00 \N +37 2024-10-30 14:13:09.861+00 2024-10-30 14:13:09.861+00 f t Retiro \N 1.00 \N +38 2024-10-30 14:13:09.906+00 2024-10-30 14:13:09.906+00 f t Colegiales \N 1.00 \N +39 2024-11-06 18:08:09+00 2024-11-06 18:08:09+00 f t Olivos \N 1.00 \N +40 2024-11-08 12:30:37+00 2024-11-08 12:30:37+00 f t Nueva Pompeya \N 1.00 \N +41 2024-11-19 20:10:09+00 2024-11-19 20:10:09+00 f t Villa Santa Rita \N 1.00 \N +43 2024-11-19 22:03:00+00 2024-11-19 22:03:00+00 f t Agronomía \N 1.00 \N +44 2024-12-02 21:04:26+00 2024-12-02 21:04:26+00 f t Parque Patricios \N 1.00 \N +45 2024-12-02 21:08:24+00 2024-12-02 21:08:24+00 f t Coghlan \N 1.00 \N +46 2024-12-05 14:25:39+00 2024-12-05 14:25:39+00 f t San Martin 111 1.00 \N +47 2024-12-05 14:26:03+00 2024-12-05 14:26:03+00 f t Jose Leon Suarez 111 1.00 \N +48 2024-12-05 14:39:33+00 2024-12-05 14:39:33+00 f t Villa Soldati 111 1.00 \N +49 2024-12-05 16:03:42+00 2024-12-05 16:03:42+00 f t Monserrat \N 1.00 \N +50 2024-12-06 13:30:36+00 2024-12-06 13:30:36+00 f t Ramos Mejía \N 1.00 \N +51 2024-12-09 16:00:06+00 2024-12-09 16:00:06+00 f t Villa Pueyrredón \N 1.00 \N +52 2024-12-10 20:45:01+00 2024-12-10 20:45:01+00 f t Liniers \N 1.00 \N +53 2024-12-10 20:45:50+00 2024-12-10 20:45:50+00 f t Merlo \N 1.00 \N +54 2024-12-10 20:46:03+00 2024-12-10 20:46:03+00 f t Castelar \N 1.00 \N +55 2024-12-10 20:46:21+00 2024-12-10 20:46:21+00 f t Morón \N 1.00 \N +56 2024-12-10 20:46:25+00 2024-12-10 20:46:25+00 f t El Palomar \N 1.00 \N +57 2024-12-10 20:47:59+00 2024-12-10 20:47:59+00 f t Haedo \N 1.00 \N +58 2024-12-12 16:52:12+00 2024-12-12 16:52:12+00 f t Boulogne \N 1.00 \N +152 2025-09-01 15:47:52.987173+00 2025-09-01 15:47:52.987184+00 t t Palerm \N 1.00 \N +60 2024-12-12 18:05:56+00 2024-12-12 18:05:56+00 f t Constitución \N 1.00 \N +61 2024-12-12 18:06:34+00 2024-12-12 18:06:34+00 f t Parque Chas \N 1.00 \N +62 2024-12-12 18:07:13+00 2024-12-12 18:07:13+00 f t Versalles \N 1.00 \N +63 2024-12-12 18:07:57+00 2024-12-12 18:07:57+00 f t Villa General Mitre \N 1.00 \N +64 2024-12-12 18:08:10+00 2024-12-12 18:08:10+00 f t Villa Lugano \N 1.00 \N +65 2024-12-12 18:08:14+00 2024-12-12 18:08:14+00 f t Villa Luro \N 1.00 \N +66 2024-12-12 18:08:18+00 2024-12-12 18:08:18+00 f t Villa Real \N 1.00 \N +67 2024-12-12 18:08:31+00 2024-12-12 18:08:31+00 f t Villa Riachuelo \N 1.00 \N +68 2024-12-19 13:06:13+00 2024-12-19 13:06:13+00 f t Acassuso \N 1.00 \N +69 2024-12-19 13:06:38+00 2024-12-19 13:06:38+00 f t La Lucila \N 1.00 \N +70 2024-12-19 15:11:12+00 2024-12-19 15:11:12+00 f t Lanús \N 1.00 \N +71 2024-12-19 15:11:17+00 2024-12-19 15:11:17+00 f t Lomas de Zamora \N 1.00 \N +72 2024-12-19 15:11:27+00 2024-12-19 15:11:27+00 f t Banfield \N 1.00 \N +73 2024-12-19 15:11:35+00 2024-12-19 15:11:35+00 f t Avellaneda \N 1.00 \N +74 2025-01-15 17:30:07+00 2025-01-15 17:30:07+00 f t San Fernando \N 1.00 \N +75 2025-01-15 17:31:23+00 2025-01-15 17:31:23+00 f t Victoria \N 1.00 \N +78 2025-02-11 19:00:48+00 2025-02-11 19:00:48+00 f t Ituzaingó \N 1.00 \N +80 2025-02-11 19:02:34+00 2025-02-11 19:02:34+00 f t Hurlingham \N 1.00 \N +82 2025-02-21 20:28:45+00 2025-02-21 20:28:45+00 f t Florida \N 1.00 \N +85 2025-03-18 18:17:36+00 2025-03-18 18:17:36+00 f t Temperley \N 1.00 \N +87 2025-04-16 19:20:52+00 2025-04-16 19:20:52+00 f t San Justo \N 1.00 \N +89 2025-04-16 19:21:18+00 2025-04-16 19:21:18+00 f t Tres de febrero \N 1.00 \N +91 2025-04-16 19:30:40+00 2025-04-16 19:30:40+00 f t Ciudadela \N 1.00 \N +157 2025-10-10 16:19:00+00 2025-10-10 16:19:00+00 f t Villa Madero 118 1.00 \N +159 2025-10-17 03:07:26.087243+00 2025-10-17 03:07:26.087254+00 f t Púñez alermon \N 1.00 \N +99 2025-04-16 21:09:12.618321+00 2025-04-16 21:09:12.618336+00 f t Marcos paz \N 1.00 \N +161 2025-11-06 15:21:38+00 2025-11-06 15:21:38+00 f t Villa Lynch 118 1.00 \N +112 2025-05-01 13:59:48+00 2025-05-01 13:59:48+00 f t 1. Otro barrio de CABA \N 1.00 \N +59 2024-12-12 17:16:56+00 2024-12-12 17:16:56+00 f t Vicente López \N 1.00 \N +142 2025-05-13 16:13:32+00 2025-05-13 16:13:32+00 f t Burzaco 110 1.00 \N +146 2025-06-10 20:22:50+00 2025-06-10 20:22:50+00 f t Rafael Castillo 110 1.00 \N +148 2025-07-31 19:02:30+00 2025-07-31 19:02:30+00 f t Gonnet 118 1.00 \N +150 2025-07-31 19:02:43+00 2025-07-31 19:02:43+00 f t Ringuelet 118 1.00 \N +154 2025-09-07 18:02:45+00 2025-09-07 18:02:45+00 f t Moreno 114 1.00 \N +\. + + +-- +-- Data for Name: common_petbreed; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_petbreed (id, created_at, updated_at, deleted, active, name, pet_type, user_id) FROM stdin; +63 2025-02-02 17:54:48+00 2025-02-02 17:54:48+00 f t Dogo Argentino DOG \N +64 2025-02-25 19:24:11+00 2025-02-25 19:24:11+00 f t Carey CAT \N +66 2025-03-30 21:45:33+00 2025-03-30 21:45:33+00 f t Tekel DOG \N +67 2025-10-20 14:45:53+00 2025-10-20 14:45:53+00 f t Basset Hound DOG 118 +1 2024-10-30 14:14:10.432+00 2024-10-30 14:14:10.432+00 f t Mezcla DOG \N +2 2024-10-30 14:14:10.438+00 2024-10-30 14:14:10.438+00 f t Labrador Retriever DOG \N +3 2024-10-30 14:14:10.443+00 2024-10-30 14:14:10.443+00 f t Golden Retriever DOG \N +4 2024-10-30 14:14:10.446+00 2024-10-30 14:14:10.446+00 f t Pastor Alemán DOG \N +5 2024-10-30 14:14:10.45+00 2024-10-30 14:14:10.45+00 f t Bulldog Francés DOG \N +6 2024-10-30 14:14:10.454+00 2024-10-30 14:14:10.454+00 f t Bulldog Inglés DOG \N +7 2024-10-30 14:14:10.457+00 2024-10-30 14:14:10.457+00 f t Beagle DOG \N +8 2024-10-30 14:14:10.461+00 2024-10-30 14:14:10.461+00 f t Poodle (Caniche) DOG \N +9 2024-10-30 14:14:10.464+00 2024-10-30 14:14:10.464+00 f t Chihuahua DOG \N +10 2024-10-30 14:14:10.468+00 2024-10-30 14:14:10.468+00 f t Dachshund (Perro Salchicha) DOG \N +11 2024-10-30 14:14:10.471+00 2024-10-30 14:14:10.471+00 f t Rottweiler DOG \N +12 2024-10-30 14:14:10.475+00 2024-10-30 14:14:10.475+00 f t Shih Tzu DOG \N +13 2024-10-30 14:14:10.478+00 2024-10-30 14:14:10.478+00 f t Cocker Spaniel DOG \N +14 2024-10-30 14:14:10.481+00 2024-10-30 14:14:10.481+00 f t Pomerania DOG \N +15 2024-10-30 14:14:10.485+00 2024-10-30 14:14:10.485+00 f t Boxer DOG \N +16 2024-10-30 14:14:10.488+00 2024-10-30 14:14:10.488+00 f t Husky Siberiano DOG \N +17 2024-10-30 14:14:10.492+00 2024-10-30 14:14:10.492+00 f t Border Collie DOG \N +18 2024-10-30 14:14:10.495+00 2024-10-30 14:14:10.495+00 f t Schnauzer DOG \N +19 2024-10-30 14:14:10.498+00 2024-10-30 14:14:10.498+00 f t Doberman DOG \N +20 2024-10-30 14:14:10.502+00 2024-10-30 14:14:10.502+00 f t Bichón Frisé DOG \N +21 2024-10-30 14:14:10.505+00 2024-10-30 14:14:10.505+00 f t Jack Russell Terrier DOG \N +22 2024-10-30 14:14:10.509+00 2024-10-30 14:14:10.509+00 f t Akita Inu DOG \N +23 2024-10-30 14:14:10.512+00 2024-10-30 14:14:10.512+00 f t Yorkshire Terrier DOG \N +24 2024-10-30 14:14:10.516+00 2024-10-30 14:14:10.516+00 f t Boston Terrier DOG \N +25 2024-10-30 14:14:10.519+00 2024-10-30 14:14:10.519+00 f t Maltés DOG \N +26 2024-10-30 14:14:10.522+00 2024-10-30 14:14:10.522+00 f t Cavalier King Charles Spaniel DOG \N +27 2024-10-30 14:14:10.526+00 2024-10-30 14:14:10.526+00 f t Comun europeo CAT \N +28 2024-10-30 14:14:10.529+00 2024-10-30 14:14:10.529+00 f t Persa CAT \N +29 2024-10-30 14:14:10.532+00 2024-10-30 14:14:10.532+00 f t Siamés CAT \N +30 2024-10-30 14:14:10.536+00 2024-10-30 14:14:10.536+00 f t Maine Coon CAT \N +31 2024-10-30 14:14:10.539+00 2024-10-30 14:14:10.539+00 f t Bengalí CAT \N +32 2024-10-30 14:14:10.543+00 2024-10-30 14:14:10.543+00 f t Sphynx CAT \N +33 2024-10-30 14:14:10.546+00 2024-10-30 14:14:10.546+00 f t Ragdoll CAT \N +34 2024-10-30 14:14:10.55+00 2024-10-30 14:14:10.55+00 f t Scottish Fold CAT \N +35 2024-10-30 14:14:10.553+00 2024-10-30 14:14:10.553+00 f t British Shorthair CAT \N +36 2024-10-30 14:14:10.556+00 2024-10-30 14:14:10.556+00 f t Abisinio CAT \N +37 2024-10-30 14:14:10.56+00 2024-10-30 14:14:10.56+00 f t Birmano CAT \N +38 2024-10-30 14:14:10.563+00 2024-10-30 14:14:10.563+00 f t Azul Ruso CAT \N +39 2024-10-30 14:14:10.567+00 2024-10-30 14:14:10.567+00 f t American Shorthair CAT \N +40 2024-10-30 14:14:10.57+00 2024-10-30 14:14:10.57+00 f t Exotic Shorthair CAT \N +41 2024-10-30 14:14:10.573+00 2024-10-30 14:14:10.573+00 f t Noruego de Bosque CAT \N +42 2024-10-30 14:14:10.577+00 2024-10-30 14:14:10.577+00 f t Angora Turco CAT \N +43 2024-10-30 14:14:10.58+00 2024-10-30 14:14:10.58+00 f t Manx CAT \N +44 2024-10-30 14:14:10.583+00 2024-10-30 14:14:10.583+00 f t Chartreux CAT \N +45 2024-10-30 14:14:10.586+00 2024-10-30 14:14:10.586+00 f t Devon Rex CAT \N +46 2024-10-30 14:14:10.589+00 2024-10-30 14:14:10.589+00 f t Cornish Rex CAT \N +47 2024-10-30 14:14:10.593+00 2024-10-30 14:14:10.593+00 f t Oriental Shorthair CAT \N +48 2024-11-08 15:33:25+00 2024-11-08 15:33:25+00 f t Braco DOG \N +49 2024-11-13 13:37:43+00 2024-11-13 13:37:43+00 f t Scottish straight CAT \N +50 2024-11-19 21:49:49+00 2024-11-19 21:49:49+00 f t American Bully DOG \N +51 2024-11-28 15:18:53+00 2024-11-28 15:18:53+00 f t Pekinés DOG \N +52 2024-11-29 13:49:54+00 2024-11-29 13:49:54+00 f t Galgo DOG \N +53 2024-12-02 13:54:53+00 2024-12-02 13:54:53+00 f t Shar Pei DOG \N +54 2024-12-03 19:43:31+00 2024-12-03 19:43:31+00 f t Weimaraner DOG \N +55 2024-12-03 20:55:16+00 2024-12-03 20:55:16+00 f t Pug DOG \N +56 2024-12-05 15:36:09+00 2024-12-05 15:36:09+00 f t Calico CAT \N +58 2024-12-05 21:16:19+00 2024-12-05 21:16:19+00 f t Pitbull DOG \N +60 2024-12-06 16:17:22+00 2024-12-06 16:17:22+00 f t Bombay CAT 111 +61 2024-12-10 14:50:56+00 2024-12-10 14:50:56+00 f t Stafforshire Bullterrier DOG 111 +62 2025-01-10 19:32:32+00 2025-01-10 19:32:32+00 f t Chow Chow DOG \N +65 2025-03-04 19:18:28+00 2025-03-04 19:18:28+00 f t Shiba inu DOG \N +\. + + +-- +-- Data for Name: common_province; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_province (id, created_at, updated_at, deleted, active, name, user_id) FROM stdin; +\. + + +-- +-- Data for Name: common_specialty; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_specialty (id, created_at, updated_at, deleted, active, name, user_id) FROM stdin; +76 2025-02-05 16:13:37+00 2025-02-05 16:13:37+00 f t Laboratorio \N +78 2025-04-15 20:41:42.755182+00 2025-04-15 20:41:42.755189+00 f t Fisioterapia \N +79 2025-04-15 20:41:43.045118+00 2025-04-15 20:41:43.045124+00 f t Cirugía \N +53 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f f Oftalmología \N +77 2025-04-15 20:41:42+00 2025-04-15 20:41:42+00 f f Oftalmologia \N +80 2025-09-23 16:15:27+00 2025-09-23 16:15:27+00 f t Nefrología 118 +81 2025-09-24 13:20:03+00 2025-09-24 13:20:03+00 f t Cremación 110 +82 2025-09-24 17:40:25+00 2025-09-24 17:40:25+00 f t Ecografía (GBA) 118 +83 2025-10-08 17:56:16+00 2025-10-08 17:56:16+00 f t Derivación Burgess 118 +84 2025-10-27 18:00:14+00 2025-10-27 18:00:14+00 f t Gerontología 118 +3 2024-10-30 14:12:33.312+00 2024-10-30 14:12:33.312+00 f t Urgencias \N +4 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f t Telemedicina \N +6 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f t Radiología \N +8 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f t Cardiología \N +23 2024-10-30 14:12:33.579+00 2024-10-30 14:12:33.579+00 f t Eutanasia \N +34 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f t Etología \N +41 2024-10-30 14:12:33.757+00 2024-10-30 14:12:33.757+00 f t Ecografía \N +42 2024-10-30 14:12:33.762+00 2024-10-30 14:12:33.762+00 f t Reproducción \N +43 2024-10-30 14:12:33.774+00 2024-10-30 14:12:33.774+00 f t Fisioterapia y kinesiologia \N +54 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f t Nutrición \N +59 2024-10-30 14:12:34+00 2024-10-30 14:12:34+00 f t Traumatología \N +70 2024-11-10 21:56:31+00 2024-11-10 21:56:31+00 f t Clínica \N +71 2024-11-28 18:19:49+00 2024-11-28 18:19:49+00 f t Dermatología \N +72 2024-11-28 18:19:58+00 2024-11-28 18:19:58+00 f t Endocrinología \N +73 2024-11-28 18:21:54+00 2024-11-28 18:21:54+00 f t Neurología \N +74 2024-12-02 18:55:49+00 2024-12-02 18:55:49+00 f t Enfermería \N +75 2024-12-26 14:35:05+00 2024-12-26 14:35:05+00 f t Colocación microchip \N +\. + + +-- +-- Data for Name: common_study; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_study (id, created_at, updated_at, deleted, active, name, pet_type, description, user_id, company, group_study_id) FROM stdin; +1 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Ecografia DOG \N \N \N +5 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Test rapido VILEF / Leucemia Felina CAT \N \N \N +6 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Perfil General Básico DOG \N \N \N +7 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Perfil General Completo con Orina DOG \N \N \N +8 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Perfil General Completo sin Orina DOG \N \N \N +3 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Ecocardiograma DOG \N \N \N +12 2025-02-13 19:52:36+00 2025-02-13 19:52:36+00 f t Electrocardiograma DOG \N \N \N +11 2025-02-13 19:52:36+00 2025-02-13 19:52:36+00 t t Electrocardiograma DOG \N \N \N +4 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Medicion de glucemia DOG \N \N \N +2 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Radiografía DOG \N \N \N +10 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t PCR Leucemia Felina ViLeF DOG \N \N \N +9 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Perfil Prequirúrgico Hemostático DOG \N \N \N +\. + + +-- +-- Data for Name: common_tag; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_tag (id, created_at, updated_at, deleted, active, name, user_id) FROM stdin; +1 2025-10-21 13:10:40.495602+00 2025-10-21 13:10:40.495613+00 f t amar \N +\. + + +-- +-- Data for Name: common_vaccine; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.common_vaccine (id, created_at, updated_at, deleted, active, name, pet_type, description, periodicity, user_id) FROM stdin; +1 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Rabia Gato CAT 12 \N +2 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Triple Felina (V3) CAT 12 \N +3 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Leucemia Felina (FeLV) CAT 12 \N +4 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Cuádruple Felina (V4) CAT 12 \N +5 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Peritonitis Infecciosa Felina (PIF) CAT 12 \N +6 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Bordetella CAT 12 \N +7 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Vacuna séxtuple (DHPPiL) DOG 12 \N +8 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Rabia Perro DOG 12 \N +9 2024-10-30 14:14:10+00 2024-10-30 14:14:10+00 f t Tos de las perreras (KC) DOG 12 \N +\. + + +-- +-- Data for Name: comprobantes_receiptpayproof; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.comprobantes_receiptpayproof (id, file, mime_type, ocr_text, detected_bank, fields, confidence, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin; +154 2025-01-22 14:07:19.372143+00 121 valentina@amarmascotas.com 1 [{"added": {}}] 6 109 +158 2025-01-30 19:52:20.072269+00 72 Noelia Macias Landro 2 [{"changed": {"fields": ["Active"]}}] 19 118 +159 2025-02-13 19:52:33.484043+00 3 Ecocardiograma 2 [{"changed": {"fields": ["Name"]}}] 12 118 +163 2025-02-13 19:53:52.403605+00 4 Medicion de glucemia 2 [] 12 118 +167 2025-02-20 15:02:43.964446+00 123 gerardodelfino@hotmail.com 1 [{"added": {}}] 6 118 +171 2025-02-20 15:04:07.593517+00 125 anachristophersen@hotmail.com 1 [{"added": {}}] 6 118 +175 2025-02-20 15:05:29.13844+00 127 mi_saez@hotmail.com 1 [{"added": {}}] 6 118 +179 2025-02-20 15:06:21.771234+00 129 colibria.terapiafloral@gmail.com 1 [{"added": {}}] 6 118 +183 2025-02-20 15:07:14.660923+00 131 vet.magadecaro@gmail.com 1 [{"added": {}}] 6 118 +187 2025-02-20 15:08:26.26341+00 133 Julian_napoli@hotmail.com 1 [{"added": {}}] 6 118 +191 2025-02-20 15:09:20.845357+00 135 katerinadubowik@hotmail.com 1 [{"added": {}}] 6 118 +195 2025-02-20 15:10:55.087225+00 137 noeliamacias@live.com 1 [{"added": {}}] 6 118 +199 2025-02-21 20:29:00.143731+00 83 Villa Adelina 1 [{"added": {}}] 9 118 +203 2025-02-26 14:18:35.466001+00 134 Mariavictoriagonzalez.mve@gmail.com 2 [{"changed": {"fields": ["Email address"]}}] 6 118 +207 2025-02-27 11:56:03.012492+00 117 nicolasguasco82@hotmail.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +211 2025-02-27 12:06:30.634808+00 130 vetemartin@yahoo.com.ar 2 [{"changed": {"fields": ["Username", "Email address"]}}] 6 118 +214 2025-03-07 12:40:06.808507+00 10 PCR Leucemia Felina ViLeF 2 [{"changed": {"fields": ["Name"]}}] 12 118 +217 2025-03-07 19:22:01.166708+00 116 Lisandro 2 [{"changed": {"fields": ["password"]}}] 6 118 +220 2025-03-13 19:47:59.665887+00 139 maralmartinez@yahoo.com.ar 1 [{"added": {}}] 6 118 +224 2025-03-16 16:33:39.485216+00 117 nicolasguasco82@hotmail.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +225 2025-03-17 21:04:39.418945+00 139 maralmartinez@yahoo.com.ar 2 [{"changed": {"fields": ["password"]}}] 6 118 +228 2025-03-18 17:22:46.632032+00 141 Melisa 1 [{"added": {}}] 6 110 +231 2025-03-18 17:25:37.429123+00 141 Melisa 2 [{"changed": {"fields": ["Last login"]}}] 6 110 +234 2025-03-18 17:25:38.115858+00 141 Melisa 2 [] 6 110 +237 2025-03-18 17:25:38.80369+00 141 Melisa 2 [] 6 110 +240 2025-03-18 18:17:35.815215+00 84 Adrogué 1 [{"added": {}}] 9 118 +243 2025-03-18 18:20:30.987968+00 142 camila@provet.com.ar 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +246 2025-04-16 18:04:18.183972+00 85 Antonella Battimo Totino 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +249 2025-04-16 18:07:02.68867+00 71 Ana Christophersen 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +252 2025-04-16 18:12:40.912049+00 7 Carolina Cullari 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +255 2025-04-16 18:13:53.447263+00 89 Katerina Dubowik 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +258 2025-04-16 18:15:21.134832+00 9 Nicolás Guasco 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +261 2025-04-16 18:16:14.322777+00 21 Maria Laura Gorostegui 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +264 2025-04-16 18:18:29.641109+00 92 Mara Leila Martinez 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +267 2025-04-16 18:20:31.065533+00 68 Daniela Ordóñez 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +270 2025-04-16 18:21:34.550205+00 8 Maria Victoria Poisson 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +273 2025-04-16 18:22:30.063637+00 81 María Inés Saez 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +276 2025-04-16 18:23:11.254198+00 90 Daniela di Risio 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +279 2025-04-16 19:20:58.203269+00 87 San Justo 1 [{"added": {}}] 9 118 +282 2025-04-16 19:28:17.576349+00 90 Lomas del Mirador 1 [{"added": {}}] 9 118 +285 2025-04-21 16:53:54.043788+00 96 APalermoo 3 9 118 +289 2025-05-05 14:31:27.677112+00 19 Castración (Derivación) 2 [{"changed": {"fields": ["Activo"]}}] 35 118 +320 2025-05-08 12:32:39.037959+00 107 HAEDO 3 9 118 +322 2025-05-08 12:34:44.053108+00 106 El barrio 3 9 118 +324 2025-05-08 12:37:12.200366+00 105 La isla de la paternal 3 9 118 +326 2025-05-08 12:40:27.030166+00 76 Provincia 3 9 118 +328 2025-05-08 12:41:28.514767+00 108 San cristobal 3 9 118 +332 2025-05-08 12:43:00.343674+00 101 palermo 3 9 118 +333 2025-05-08 12:43:00.34626+00 104 palrmo 3 9 118 +334 2025-05-08 12:43:00.347583+00 100 test 3 9 118 +336 2025-05-08 12:44:35.006775+00 59 Vicente López 2 [{"changed": {"fields": ["Name"]}}] 9 118 +338 2025-05-08 18:19:06.458845+00 148 carolina.v.vecino@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +340 2025-05-09 20:14:05.348304+00 97 Villa Urquiza 3 9 118 +343 2025-05-26 18:11:49.798381+00 111 Leila 2 [{"changed": {"fields": ["password"]}}] 6 121 +345 2025-05-27 20:09:06.617364+00 118 Agus 2 [{"changed": {"fields": ["Username"]}}] 6 110 +346 2025-05-27 20:09:21.321105+00 111 Leila 2 [{"changed": {"fields": ["Active"]}}] 6 110 +347 2025-05-27 20:09:39.297452+00 141 Melisa 2 [{"changed": {"fields": ["Active"]}}] 6 110 +348 2025-05-27 20:10:08.858297+00 111 Leila 2 [] 6 110 +349 2025-05-27 20:10:11.115671+00 141 Melisa 2 [] 6 110 +350 2025-05-27 20:11:07.953852+00 114 Pilar 2 [{"changed": {"fields": ["First name", "Last name", "Email address"]}}] 6 110 +351 2025-05-27 20:12:29.167708+00 1026 Milagros 1 [{"added": {}}] 6 110 +352 2025-05-27 20:13:16.876086+00 1026 Milagros 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Staff status", "Superuser status"]}}] 6 110 +353 2025-05-27 20:15:15.335476+00 1026 Milagros 2 [] 6 110 +354 2025-06-03 12:43:34.543348+00 1071 nestordanielmemed@gmail.com 1 [{"added": {}}] 6 118 +355 2025-06-03 12:43:45.962552+00 1071 nestordanielmemed@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +356 2025-06-10 13:38:02.75308+00 118 Agus 2 [{"changed": {"fields": ["password"]}}] 6 110 +357 2025-06-10 13:46:10.038695+00 118 Agus 2 [{"changed": {"fields": ["password"]}}] 6 110 +358 2025-06-12 17:58:41.884237+00 964 catalinasimone97@gmail.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +359 2025-06-12 17:58:50.287822+00 964 catalinasimone97@gmail.com 2 [] 6 118 +360 2025-06-12 18:03:34.967576+00 145 agustinviveros@hotmail.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +361 2025-06-12 18:03:37.52438+00 145 agustinviveros@hotmail.com 2 [] 6 118 +362 2025-06-18 19:40:15.508386+00 1180 ddirisio@fvet.uba.ar 1 [{"added": {}}] 6 118 +363 2025-06-18 19:40:50.951617+00 1180 ddirisio@fvet.uba.ar 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +364 2025-06-18 19:41:24.255765+00 1181 estudiosecovet@hotmail.com 1 [{"added": {}}] 6 118 +365 2025-06-18 19:41:36.308963+00 1181 estudiosecovet@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +155 2025-01-22 14:07:31.02891+00 121 valentina@amarmascotas.com 2 [{"changed": {"fields": ["Staff status", "Superuser status", "Groups"]}}] 6 109 +160 2025-02-13 19:52:51.141042+00 11 Electrocardiograma 1 [{"added": {}}] 12 118 +164 2025-02-13 19:54:17.460651+00 2 Radiografía 2 [{"changed": {"fields": ["Name"]}}] 12 118 +168 2025-02-20 15:02:57.887186+00 123 gerardodelfino@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +172 2025-02-20 15:04:19.43307+00 125 anachristophersen@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +176 2025-02-20 15:05:39.917002+00 127 mi_saez@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +180 2025-02-20 15:06:31.816716+00 129 colibria.terapiafloral@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +184 2025-02-20 15:07:25.530574+00 131 vet.magadecaro@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +188 2025-02-20 15:08:38.092953+00 133 Julian_napoli@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +192 2025-02-20 15:09:39.895734+00 135 katerinadubowik@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +196 2025-02-20 15:11:06.346232+00 137 noeliamacias@live.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Active", "Groups"]}}] 6 118 +200 2025-02-21 20:30:18.86675+00 81 Villa Martelli 3 9 118 +204 2025-02-26 14:18:48.682973+00 134 mariavictoriagonzalez.mve@gmail.com 2 [{"changed": {"fields": ["Username"]}}] 6 118 +208 2025-02-27 11:58:59.889968+00 116 Lisandro 2 [{"changed": {"fields": ["password"]}}] 6 118 +212 2025-02-27 12:11:10.196911+00 130 vetemartin@yahoo.com.ar 2 [{"changed": {"fields": ["password"]}}] 6 118 +215 2025-03-07 12:40:45.741235+00 9 Perfil Prequirúrgico Hemostático 2 [{"changed": {"fields": ["Name"]}}] 12 118 +218 2025-03-07 19:27:10.686342+00 116 Lisandro 2 [{"changed": {"fields": ["Groups"]}}] 6 118 +221 2025-03-13 19:48:18.729473+00 139 maralmartinez@yahoo.com.ar 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +226 2025-03-17 21:06:18.188331+00 133 julian_napoli@hotmail.com 2 [{"changed": {"fields": ["Username", "Email address"]}}] 6 118 +229 2025-03-18 17:22:59.106194+00 141 Melisa 2 [{"changed": {"fields": ["Groups"]}}] 6 110 +232 2025-03-18 17:25:37.933506+00 141 Melisa 2 [] 6 110 +235 2025-03-18 17:25:38.529544+00 141 Melisa 2 [] 6 110 +238 2025-03-18 17:54:19.946157+00 141 Melisa 2 [{"changed": {"fields": ["Staff status"]}}] 6 118 +241 2025-03-18 18:17:42.895446+00 85 Temperley 1 [{"added": {}}] 9 118 +244 2025-04-15 21:11:43.524751+00 1 turnos 1 [{"added": {}}] 32 121 +247 2025-04-16 18:04:51.393368+00 84 Silvia Campo 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +250 2025-04-16 18:11:44.89295+00 11 Paula Cleves 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +253 2025-04-16 18:12:54.667147+00 2 Gerardo Delfino 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +256 2025-04-16 18:14:15.49862+00 78 Javier Gilbert 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +259 2025-04-16 18:15:34.242081+00 79 María José Henjes 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +262 2025-04-16 18:16:35.56314+00 94 Camila Lorenzo 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +265 2025-04-16 18:18:48.872566+00 67 Yanina Medvuidenur 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +268 2025-04-16 18:20:46.771679+00 70 Martín Palladino 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +271 2025-04-16 18:21:50.138503+00 1 Lisandro Ponce 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +274 2025-04-16 18:22:44.433354+00 91 Verónica Carolina Szczurek 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +277 2025-04-16 19:17:30.154276+00 143 gastonfernandez1996@outlook.com 1 [{"added": {}}] 6 118 +280 2025-04-16 19:21:17.942743+00 88 Caseros 1 [{"added": {}}] 9 118 +283 2025-04-16 19:30:54.711173+00 91 Ciudadela 1 [{"added": {}}] 9 118 +286 2025-04-25 18:29:19.776051+00 146 dario.pirozzo@flydevs.com 1 [{"added": {}}] 6 110 +287 2025-04-30 13:59:12.577297+00 147 marceloggiangreco@hotmail.com 1 [{"added": {}}] 6 118 +290 2025-05-05 14:31:32.784519+00 18 Limpieza dental (Derivación) 2 [{"changed": {"fields": ["Activo"]}}] 35 118 +292 2025-05-08 12:23:11.780837+00 128 1 3 9 110 +293 2025-05-08 12:23:11.783446+00 134 103 3 9 110 +294 2025-05-08 12:23:11.784841+00 115 109 3 9 110 +295 2025-05-08 12:23:11.785846+00 135 11 3 9 110 +296 2025-05-08 12:23:11.786878+00 117 112 3 9 110 +297 2025-05-08 12:23:11.787957+00 133 113 3 9 110 +298 2025-05-08 12:23:11.789008+00 137 135 3 9 110 +299 2025-05-08 12:23:11.789821+00 138 137 3 9 110 +300 2025-05-08 12:23:11.790541+00 127 14 3 9 110 +301 2025-05-08 12:23:11.791294+00 120 15 3 9 110 +302 2025-05-08 12:23:11.792151+00 114 17 3 9 110 +303 2025-05-08 12:23:11.793169+00 121 18 3 9 110 +304 2025-05-08 12:23:11.794223+00 130 22 3 9 110 +305 2025-05-08 12:23:11.79519+00 131 23 3 9 110 +306 2025-05-08 12:23:11.796024+00 139 26 3 9 110 +307 2025-05-08 12:23:11.79676+00 122 29 3 9 110 +308 2025-05-08 12:23:11.797412+00 116 3 3 9 110 +309 2025-05-08 12:23:11.798055+00 119 4 3 9 110 +310 2025-05-08 12:23:11.798708+00 129 41 3 9 110 +311 2025-05-08 12:23:11.799462+00 118 43 3 9 110 +312 2025-05-08 12:23:11.800387+00 125 46 3 9 110 +313 2025-05-08 12:23:11.801287+00 126 56 3 9 110 +314 2025-05-08 12:23:11.802282+00 141 58 3 9 110 +315 2025-05-08 12:23:11.803312+00 136 60 3 9 110 +316 2025-05-08 12:23:11.804219+00 132 68 3 9 110 +317 2025-05-08 12:23:11.805136+00 123 70 3 9 110 +318 2025-05-08 12:23:11.806266+00 140 83 3 9 110 +319 2025-05-08 12:23:11.807623+00 124 9 3 9 110 +321 2025-05-08 12:33:39.157428+00 95 APalermo 3 9 118 +323 2025-05-08 12:35:40.273434+00 109 Constitución 3 9 118 +325 2025-05-08 12:38:11.332433+00 98 La lucila 3 9 118 +327 2025-05-08 12:40:55.600694+00 77 San Isidro 2 [{"changed": {"fields": ["Name"]}}] 9 118 +329 2025-05-08 12:42:39.482994+00 110 Villa urquiza 3 9 118 +330 2025-05-08 12:42:39.485887+00 93 belgrano 3 9 118 +331 2025-05-08 12:42:39.487279+00 94 la lucila 3 9 118 +335 2025-05-08 12:43:10.992833+00 42 Wilde 2 [{"changed": {"fields": ["Name"]}}] 9 118 +337 2025-05-08 18:18:51.714875+00 148 carolina.v.vecino@gmail.com 1 [{"added": {}}] 6 118 +339 2025-05-09 20:11:56.001213+00 103 Puerto madero 3 9 118 +341 2025-05-19 19:36:06.256153+00 143 Palermow 3 9 118 +342 2025-05-19 19:36:06.262365+00 144 Palermowa 3 9 118 +344 2025-05-26 19:24:34.476604+00 118 agustin@amarmascotas.com 2 [{"changed": {"fields": ["Username", "Email address"]}}] 6 118 +156 2025-01-22 14:47:10.448606+00 76 BUSCAR VETE 2 [{"changed": {"fields": ["Email"]}}] 19 110 +161 2025-02-13 19:52:51.541546+00 12 Electrocardiograma 1 [{"added": {}}] 12 118 +165 2025-02-20 13:33:23.21153+00 122 martinpalladino@yahoo.com 1 [{"added": {}}] 6 118 +169 2025-02-20 15:03:36.741141+00 124 mlgorostegui@gmail.com 1 [{"added": {}}] 6 118 +173 2025-02-20 15:04:32.215096+00 126 nelanonez@gmail.com 1 [{"added": {}}] 6 118 +177 2025-02-20 15:05:56.027049+00 128 marianapalummo22@gmail.com 1 [{"added": {}}] 6 118 +181 2025-02-20 15:06:45.19175+00 130 Vetemartin@yahoo.com.ar 1 [{"added": {}}] 6 118 +185 2025-02-20 15:07:39.576431+00 132 javierpr15@hotmail.com 1 [{"added": {}}] 6 118 +189 2025-02-20 15:08:52.703506+00 134 Mariavictoriagonzalez.mve@gmail.com 1 [{"added": {}}] 6 118 +193 2025-02-20 15:10:22.852071+00 136 gretonio2000@yahoo.com.ar 1 [{"added": {}}] 6 118 +197 2025-02-21 20:28:45.05274+00 81 Villa Martelli 1 [{"added": {}}] 9 118 +1 2024-10-30 14:17:51.461+00 2 valentina@amarmascotas.com 1 [{"added": {}}] 6 109 +2 2024-10-30 14:19:16.478+00 2 valentina@amarmascotas.com 2 [{"changed": {"fields": ["Staff status", "Superuser status"]}}] 6 109 +3 2024-10-30 14:19:51.22+00 3 leila@amarmascotas.com 1 [{"added": {}}] 6 109 +4 2024-10-30 14:20:01.438+00 3 leila@amarmascotas.com 2 [{"changed": {"fields": ["Staff status", "Superuser status"]}}] 6 109 +5 2024-10-30 15:41:36.899+00 4 turnos@amarmascotas.com 1 [{"added": {}}] 6 110 +6 2024-10-30 17:27:04.977+00 4 turnos@amarmascotas.com 2 [{"changed": {"fields": ["Staff status", "Superuser status"]}}] 6 110 +7 2024-10-31 21:11:56.875+00 5 colmanmilenacandelaria@gmail.com 1 [{"added": {}}] 6 110 +8 2024-10-31 21:12:23.338+00 5 colmanmilenacandelaria@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Staff status", "Superuser status"]}}] 6 110 +9 2024-10-31 21:12:52.342+00 6 florescandela.ok@gmail.com 1 [{"added": {}}] 6 110 +10 2024-10-31 21:13:09.734+00 6 florescandela.ok@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address"]}}] 6 110 +11 2024-10-31 21:13:25.287+00 5 colmanmilenacandelaria@gmail.com 2 [{"changed": {"fields": ["Email address"]}}] 6 110 +12 2024-10-31 21:57:34.147+00 6 florescandela.ok@gmail.com 2 [{"changed": {"fields": ["Staff status", "Superuser status"]}}] 6 110 +13 2024-10-31 21:59:46.243+00 4 Medicion de glucemia 2 [{"changed": {"fields": ["Name", "Pet type"]}}] 12 110 +14 2024-10-31 21:59:58.134+00 5 Test rapido VILEF / Leucemia Felina 2 [{"changed": {"fields": ["Pet type"]}}] 12 110 +15 2024-11-01 12:37:44.525+00 54 Dr. Gustavo Martinez 2 [{"changed": {"fields": ["First name", "Last name"]}}] 19 110 +16 2024-11-01 13:02:49.984+00 66 Dr. "Melanie Belén Cuestas Cánepa 1 [{"added": {}}] 19 111 +17 2024-11-01 13:03:54.556+00 66 Dr. Melanie Belén Cuestas Cánepa 2 [{"changed": {"fields": ["First name"]}}] 19 111 +18 2024-11-01 13:04:12.346+00 66 Dr. Melanie Belén Cuestas Cánepa 2 [{"changed": {"fields": ["Address"]}}] 19 111 +19 2024-11-04 17:22:32.773+00 9 Tos de las perreras (KC) 2 [{"changed": {"fields": ["Periodicity"]}}] 13 110 +20 2024-11-04 17:31:38.592+00 8 Rabia 2 [{"changed": {"fields": ["Periodicity"]}}] 13 110 +21 2024-11-04 17:31:48.211+00 7 Vacuna séxtuple (DHPPiL) 2 [{"changed": {"fields": ["Periodicity"]}}] 13 110 +22 2024-11-04 17:31:53.749+00 6 Bordetella 2 [{"changed": {"fields": ["Periodicity"]}}] 13 110 +23 2024-11-04 17:31:58.446+00 5 Peritonitis Infecciosa Felina (PIF) 2 [{"changed": {"fields": ["Periodicity"]}}] 13 110 +24 2024-11-04 17:32:04.009+00 4 Cuádruple Felina (V4) 2 [{"changed": {"fields": ["Periodicity"]}}] 13 110 +25 2024-11-04 17:53:00.397+00 3 Leucemia Felina (FeLV) 2 [{"changed": {"fields": ["Periodicity"]}}] 13 110 +26 2024-11-04 17:53:05.957+00 1 Rabia 2 [{"changed": {"fields": ["Periodicity"]}}] 13 110 +27 2024-11-04 17:53:11.408+00 2 Triple Felina (V3) 2 [{"changed": {"fields": ["Periodicity"]}}] 13 110 +28 2024-11-04 17:54:17.245+00 2 valentina@amarmascotas.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address"]}}] 6 110 +29 2024-11-05 13:07:22.505+00 1 admin 2 [] 6 110 +30 2024-11-06 13:21:42.744+00 67 Dr. Yanina Medvuidenur 1 [{"added": {}}] 19 111 +31 2024-11-06 13:22:06.512+00 67 Dr. Yanina Medvuidenur 2 [{"changed": {"fields": ["Address"]}}] 19 111 +32 2024-11-06 18:08:17.688+00 39 Olivos 1 [{"added": {}}] 9 111 +33 2024-11-06 18:09:13.038+00 68 Dr. Daniela Ordóñez 1 [{"added": {}}] 19 111 +34 2024-11-06 22:01:39.887+00 3 Leila 2 [{"changed": {"fields": ["Username", "First name", "Last name", "Email address"]}}] 6 110 +35 2024-11-06 22:01:50.076+00 2 Valen 2 [{"changed": {"fields": ["Username"]}}] 6 110 +36 2024-11-06 22:02:02.841+00 6 Candela 2 [{"changed": {"fields": ["Username"]}}] 6 110 +37 2024-11-06 22:02:10.893+00 5 Milena 2 [{"changed": {"fields": ["Username"]}}] 6 110 +38 2024-11-07 15:09:05.094+00 7 catalina@amarmascotas.com 1 [{"added": {}}] 6 110 +39 2024-11-07 15:09:33.431+00 7 contacto@amarmascotas.com 2 [{"changed": {"fields": ["Username", "First name", "Last name", "Email address", "User permissions"]}}] 6 110 +40 2024-11-07 15:09:52.88+00 7 Catalina 2 [{"changed": {"fields": ["Username"]}}] 6 110 +41 2024-11-07 15:10:04.923+00 7 Catalina 2 [{"changed": {"fields": ["Staff status", "Superuser status"]}}] 6 110 +42 2024-11-07 19:55:41.767+00 69 Dr. María Gabriela de Caroli 1 [{"added": {}}] 19 111 +43 2024-11-07 20:19:24.338+00 70 Dr. Martín Palladino 1 [{"added": {}}] 19 111 +44 2024-11-07 20:21:33.234+00 71 Dr. Ana Christophersen 1 [{"added": {}}] 19 111 +45 2024-11-08 12:30:47.634+00 40 Nueva Pompeya 1 [{"added": {}}] 9 110 +46 2024-11-08 15:33:35.305+00 48 Braco 1 [{"added": {}}] 10 110 +47 2024-11-08 18:28:21.756+00 4 Dr. BURCAR VETE 2 [{"changed": {"fields": ["First name", "Last name", "Phone"]}}] 19 110 +48 2024-11-08 18:33:51.725+00 4 Dr. BUSCAR VETE 2 [{"changed": {"fields": ["First name"]}}] 19 110 +49 2024-11-08 20:26:50.155+00 8 Lisandro 1 [{"added": {}}] 6 110 +50 2024-11-08 20:27:04.572+00 8 Lisandro 2 [{"changed": {"fields": ["First name", "Last name", "Email address"]}}] 6 110 +51 2024-11-08 20:27:42.612+00 8 Lisandro 2 [] 6 110 +52 2024-11-08 20:27:58.568+00 1 Administrador 1 [{"added": {}}] 5 110 +53 2024-11-10 21:56:49.686+00 70 Clínica 1 [{"added": {}}] 11 111 +54 2024-11-10 21:57:17.523+00 67 Análisis clínicos 2 [{"changed": {"fields": ["Deleted", "Active"]}}] 11 111 +55 2024-11-10 21:57:28.356+00 28 Atencion clínica 2 [{"changed": {"fields": ["Deleted", "Active"]}}] 11 111 +201 2025-02-24 19:08:44.32261+00 128 marianapalummo22@gmail.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +205 2025-02-27 11:55:38.31326+00 126 nelanonez@gmail.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +209 2025-02-27 12:04:07.628389+00 138 veros_sk@hotmail.com 1 [{"added": {}}] 6 118 +222 2025-03-13 19:48:53.489992+00 140 durekaren@gmail.com 1 [{"added": {}}] 6 118 +56 2024-11-10 21:58:06.591+00 44 Vacunación y ecografía 2 [{"changed": {"fields": ["Deleted", "Active"]}}] 11 111 +57 2024-11-10 21:58:19.332+00 25 Atención clínica 2 [{"changed": {"fields": ["Deleted", "Active"]}}] 11 111 +58 2024-11-10 21:58:31.566+00 12 Clinica 2 [{"changed": {"fields": ["Deleted", "Active"]}}] 11 111 +59 2024-11-10 21:58:45.562+00 49 Clinica / acupuntura / fisioterapia 2 [{"changed": {"fields": ["Deleted", "Active"]}}] 11 111 +60 2024-11-10 21:58:53.671+00 49 Clinica / acupuntura / fisioterapia 2 [] 11 111 +61 2024-11-10 21:59:03.907+00 48 Clinica / fisioterapia 2 [{"changed": {"fields": ["Deleted", "Active"]}}] 11 111 +62 2024-11-10 21:59:14.705+00 62 Clinica / vacunación / fitoterapia / terapia cannabica / microchip / televet 2 [{"changed": {"fields": ["Deleted", "Active"]}}] 11 111 +63 2024-11-10 21:59:48.264+00 64 Clinica/ vacunacion (clinica / vacunación / fitoterapia / terapia cannabica / microchip / televet/ asesoramiento viajes al exterior 3 11 111 +64 2024-11-10 22:00:10.959+00 67 Análisis clínicos 3 11 111 +65 2024-11-10 22:00:19.967+00 67 Análisis clínicos 3 11 111 +66 2024-11-10 22:00:39.826+00 25 Atención clínica 3 11 111 +67 2024-11-10 22:01:01.303+00 52 Vacunación/ consultas clínicas/toma de muestras para citología. 3 11 111 +68 2024-11-10 22:01:12.428+00 52 Vacunación/ consultas clínicas/toma de muestras para citología. 2 [{"changed": {"fields": ["Active"]}}] 11 111 +69 2024-11-10 22:01:50.85+00 58 Clinica general 2 [{"changed": {"fields": ["Deleted", "Active"]}}] 11 111 +70 2024-11-10 22:02:00.363+00 39 Clinica/ vacunas/certificados de viaje/servicios laboratorio/homeopatia/ terapia cannabis 2 [{"changed": {"fields": ["Deleted", "Active"]}}] 11 111 +71 2024-11-10 22:02:33.61+00 16 Vacunaciones 2 [{"changed": {"fields": ["Deleted", "Active"]}}] 11 111 +72 2024-11-10 22:02:42.901+00 2 Vacunacion 2 [{"changed": {"fields": ["Deleted", "Active"]}}] 11 111 +73 2024-11-12 15:47:47.902+00 2 valentina@amarmascotas.com 2 [{"changed": {"fields": ["Username"]}}] 6 109 +74 2024-11-12 19:19:48.138+00 2 Valen 2 [{"changed": {"fields": ["Username"]}}] 6 110 +75 2024-11-13 13:37:48.426+00 49 Scottish straight 1 [{"added": {}}] 10 110 +76 2024-11-13 20:02:51.603+00 9 nicolasguasco82@hotmail.com 1 [{"added": {}}] 6 111 +77 2024-11-13 20:04:45.904+00 9 nicolasguasco82@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address"]}}] 6 111 +78 2024-11-15 18:17:19.169+00 72 Dr. Noelia Macias Landro 1 [{"added": {}}] 19 111 +79 2024-11-19 20:10:15.935+00 41 Villa Santa Rita 1 [{"added": {}}] 9 110 +80 2024-11-19 21:30:43.964+00 42 Wilde - Zona Sur 1 [{"added": {}}] 9 110 +81 2024-11-19 21:49:56.84+00 50 American Bully 1 [{"added": {}}] 10 110 +82 2024-11-19 22:03:08.919+00 43 Agronomía 1 [{"added": {}}] 9 110 +83 2024-11-21 15:38:08.753+00 3 leila@amarmascotas.com 2 [{"changed": {"fields": ["Username"]}}] 6 109 +84 2024-11-22 12:41:39.83+00 2 vets 1 [{"added": {}}] 5 109 +85 2024-11-22 12:44:52.362+00 9 nicolasguasco82@hotmail.com 2 [{"changed": {"fields": ["Groups"]}}] 6 111 +86 2024-11-22 12:48:18.538+00 9 Dr. Nicolás Guasco 2 [{"changed": {"fields": ["User"]}}] 19 111 +87 2024-11-22 12:54:17.109+00 9 Dr. Nicolás Guasco 2 [{"changed": {"fields": ["Email"]}}] 19 111 +88 2024-11-26 14:45:17.971+00 10 contacto@amarmascotas.com 1 [{"added": {}}] 6 111 +89 2024-11-26 14:45:52.782+00 10 contacto@amarmascotas.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Staff status", "Superuser status", "Groups"]}}] 6 111 +90 2024-11-26 14:48:53.101+00 73 Dr. Nicolás Porta 1 [{"added": {}}] 19 118 +91 2024-11-28 11:47:09.739+00 11 esteban.caravello@hospitalitaliano.org.ar 1 [{"added": {}}] 6 118 +92 2024-11-28 11:47:45.987+00 14 Dr. Esteban Caravello 2 [{"changed": {"fields": ["Email"]}}] 19 118 +93 2024-11-28 11:48:24.654+00 11 esteban.caravello@hospitalitaliano.org.ar 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +94 2024-11-28 11:48:35.559+00 14 Dr. Esteban Caravello 2 [{"changed": {"fields": ["User"]}}] 19 118 +95 2024-11-29 13:23:27.391+00 2 valentina@amarmascotas.com 2 [{"changed": {"fields": ["Username"]}}] 6 109 +96 2024-12-06 12:54:45.449+00 7 Dr. Carolina Cullari 2 [{"changed": {"fields": ["Medical license"]}}] 19 118 +97 2024-12-06 13:30:51.19+00 50 Ramos Mejía 1 [{"added": {}}] 9 118 +98 2024-12-06 13:31:17.115+00 74 Dr. Javier Robatto 1 [{"added": {}}] 19 118 +99 2024-12-06 13:31:59.388+00 75 Dr. Paula Kumabe 1 [{"added": {}}] 19 118 +100 2024-12-10 15:55:39.761+00 2 Valen 2 [{"changed": {"fields": ["Username"]}}] 6 110 +101 2024-12-10 15:55:59.954+00 3 Leila 2 [{"changed": {"fields": ["Username"]}}] 6 110 +102 2024-12-10 20:39:20.357+00 71 Ana Christophersen 2 [{"changed": {"fields": ["Neighborhood"]}}] 19 118 +103 2024-12-10 20:44:15.629+00 75 Paula Kumabe 2 [{"changed": {"fields": ["Neighborhood"]}}] 19 118 +104 2024-12-10 20:45:08.357+00 52 Liniers 1 [{"added": {}}] 9 118 +105 2024-12-10 20:45:55.607+00 53 Merlo 1 [{"added": {}}] 9 118 +106 2024-12-10 20:46:07.82+00 54 Castelar 1 [{"added": {}}] 9 118 +107 2024-12-10 20:46:25.602+00 55 Morón 1 [{"added": {}}] 9 118 +108 2024-12-10 20:46:37.487+00 56 El Palomar 1 [{"added": {}}] 9 118 +109 2024-12-10 20:48:04.301+00 57 Haedo 1 [{"added": {}}] 9 118 +110 2024-12-10 20:56:09.236+00 74 Javier Robatto 2 [{"changed": {"fields": ["Neighborhood"]}}] 19 118 +111 2024-12-12 18:06:04.438+00 60 Constitución 1 [{"added": {}}] 9 118 +112 2024-12-12 18:06:39.836+00 61 Parque Chas 1 [{"added": {}}] 9 118 +113 2024-12-12 18:07:16.587+00 62 Versalles 1 [{"added": {}}] 9 118 +114 2024-12-12 18:08:00.671+00 63 Villa General Mitre 1 [{"added": {}}] 9 118 +115 2024-12-12 18:08:13.944+00 64 Villa Lugano 1 [{"added": {}}] 9 118 +116 2024-12-12 18:08:18.716+00 65 Villa Luro 1 [{"added": {}}] 9 118 +117 2024-12-12 18:08:31.145+00 66 Villa Real 1 [{"added": {}}] 9 118 +118 2024-12-12 18:08:38.21+00 67 Villa Riachuelo 1 [{"added": {}}] 9 118 +119 2024-12-13 12:35:22.114+00 73 Nicolás Porta 2 [{"changed": {"fields": ["Neighborhood"]}}] 19 118 +120 2024-12-13 12:38:13.522+00 70 Martín Palladino 2 [{"changed": {"fields": ["Neighborhood"]}}] 19 118 +121 2024-12-13 12:39:26.777+00 68 Daniela Ordóñez 2 [{"changed": {"fields": ["Neighborhood"]}}] 19 118 +122 2024-12-13 12:44:01.413+00 72 Noelia Macias Landro 2 [{"changed": {"fields": ["Neighborhood"]}}] 19 118 +123 2024-12-13 12:44:51.904+00 72 Noelia Macias Landro 2 [] 19 118 +124 2024-12-13 12:44:58.863+00 74 Javier Robatto 2 [] 19 118 +125 2024-12-13 12:45:33.605+00 75 Paula Kumabe 2 [{"changed": {"fields": ["Specialization"]}}] 19 118 +126 2024-12-13 12:57:17.102+00 66 Melanie Belén Cuestas Cánepa 2 [{"changed": {"fields": ["Neighborhood"]}}] 19 118 +127 2024-12-13 13:09:05.649+00 7 Carolina Cullari 2 [{"changed": {"fields": ["Neighborhood"]}}] 19 118 +128 2024-12-18 20:12:21.925+00 13 Celeste Fourmental 3 19 118 +129 2024-12-18 20:14:36.058+00 6 Carmen Maria Gayo 2 [{"changed": {"fields": ["Neighborhood"]}}] 19 118 +130 2024-12-19 12:35:26.904+00 14 Esteban Caravello 2 [{"changed": {"fields": ["Neighborhood"]}}] 19 118 +131 2024-12-19 13:06:38.317+00 68 Acassuso 1 [{"added": {}}] 9 118 +132 2024-12-19 13:06:49.267+00 69 La Lucila 1 [{"added": {}}] 9 118 +133 2024-12-19 13:10:29.921+00 8 Maria Victoria Poisson 2 [{"changed": {"fields": ["Neighborhood"]}}] 19 118 +134 2024-12-19 13:11:34.192+00 45 Coghlan 2 [{"changed": {"fields": ["Name"]}}] 9 118 +135 2024-12-19 15:11:16.897+00 70 Lanús 1 [{"added": {}}] 9 118 +136 2024-12-19 15:11:27.407+00 71 Lomas de Zamora 1 [{"added": {}}] 9 118 +137 2024-12-19 15:11:35.466+00 72 Banfield 1 [{"added": {}}] 9 118 +138 2024-12-19 15:12:32.209+00 73 Avellaneda 1 [{"added": {}}] 9 118 +139 2024-12-20 17:12:22.046+00 12 ggarciacordoba@gmail.com 1 [{"added": {}}] 6 118 +140 2024-12-20 17:14:28.597+00 12 ggarciacordoba@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "User permissions"]}}] 6 118 +141 2025-01-15 17:30:13.497+00 74 San Fernando 1 [{"added": {}}] 9 118 +142 2025-01-15 17:31:28.359+00 75 Victoria 1 [{"added": {}}] 9 118 +143 2025-01-17 19:49:27.65+00 6 Pilar 2 [{"changed": {"fields": ["Username"]}}] 6 110 +144 2025-01-20 16:20:29.421+00 3 Ecocardio 2 [{"changed": {"fields": ["Pet type"]}}] 12 110 +145 2025-01-20 16:20:34.98+00 1 Ecografia 2 [{"changed": {"fields": ["Pet type"]}}] 12 110 +146 2025-01-20 16:20:41.783+00 10 PCR Leucemia Felina Vlef 2 [{"changed": {"fields": ["Pet type"]}}] 12 110 +147 2025-01-20 16:20:46.802+00 6 Perfil General Básico 2 [{"changed": {"fields": ["Pet type"]}}] 12 110 +148 2025-01-20 16:20:51.784+00 7 Perfil General Completo con Orina 2 [{"changed": {"fields": ["Pet type"]}}] 12 110 +149 2025-01-20 16:20:57.045+00 8 Perfil General Completo sin Orina 2 [{"changed": {"fields": ["Pet type"]}}] 12 110 +150 2025-01-20 16:21:01.447+00 9 Perfil Prequirúrgico Hemostático 1 2 [{"changed": {"fields": ["Pet type"]}}] 12 110 +151 2025-01-20 16:21:06.832+00 2 Rayos 2 [{"changed": {"fields": ["Pet type"]}}] 12 110 +152 2025-01-20 18:02:38.343+00 8 Vet visit of Mascota de Andrea Gonzalez by BUSCAR VETE on 2024-01-27 2 [{"changed": {"fields": ["Veterinario", "Tipo Visita", "Motivo"]}}] 21 109 +153 2025-01-20 18:17:02.67+00 10 Vet visit of Mascota de Ornella Sturlese by BUSCAR VETE on 2024-01-30 2 [{"changed": {"fields": ["Veterinario", "Tipo Visita", "Observaciones"]}}] 21 110 +157 2025-01-23 19:53:01.340635+00 25 Nahuel Ezquieta 2 [{"changed": {"fields": ["Active"]}}] 19 118 +162 2025-02-13 19:53:25.568387+00 11 Electrocardiograma 3 12 118 +166 2025-02-20 13:33:49.469693+00 122 martinpalladino@yahoo.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +170 2025-02-20 15:03:49.699737+00 124 mlgorostegui@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +174 2025-02-20 15:04:42.134422+00 126 nelanonez@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +178 2025-02-20 15:06:07.585089+00 128 marianapalummo22@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +182 2025-02-20 15:06:56.207655+00 130 Vetemartin@yahoo.com.ar 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +186 2025-02-20 15:07:52.389097+00 132 javierpr15@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +190 2025-02-20 15:09:06.123969+00 134 Mariavictoriagonzalez.mve@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +194 2025-02-20 15:10:41.68638+00 136 gretonio2000@yahoo.com.ar 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Active", "Groups"]}}] 6 118 +198 2025-02-21 20:28:50.647678+00 82 Florida 1 [{"added": {}}] 9 118 +202 2025-02-25 13:06:06.071907+00 6 Carmen Maria Gayo 2 [{"changed": {"fields": ["Active"]}}] 19 118 +206 2025-02-27 11:55:51.090694+00 122 martinpalladino@yahoo.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +210 2025-02-27 12:04:32.372628+00 138 veros_sk@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +213 2025-03-06 00:17:51.411182+00 111 Leila 2 [{"changed": {"fields": ["password"]}}] 6 109 +216 2025-03-07 15:25:39.388808+00 109 admin 2 [{"changed": {"fields": ["password"]}}] 6 110 +219 2025-03-07 19:27:47.531016+00 116 poncelisandro@gmail.com 2 [{"changed": {"fields": ["Username"]}}] 6 118 +223 2025-03-13 19:49:11.867593+00 140 durekaren@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +227 2025-03-17 21:06:33.45624+00 140 durekaren@gmail.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +230 2025-03-18 17:24:10.474553+00 141 Melisa 2 [{"changed": {"fields": ["First name", "User permissions"]}}] 6 110 +233 2025-03-18 17:25:38.077345+00 141 Melisa 2 [] 6 110 +236 2025-03-18 17:25:38.649104+00 141 Melisa 2 [] 6 110 +239 2025-03-18 17:54:52.190093+00 141 Melisa 2 [{"changed": {"fields": ["Superuser status"]}}] 6 118 +242 2025-03-18 18:20:12.564155+00 142 camila@provet.com.ar 1 [{"added": {}}] 6 118 +245 2025-04-16 18:03:51.646597+00 82 Nicolas Alcasena 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +248 2025-04-16 18:06:38.906786+00 14 Esteban Caravello 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +251 2025-04-16 18:12:15.335927+00 66 Melanie Belén Cuestas Cánepa 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +254 2025-04-16 18:13:31.314632+00 5 Paola Della Bianca 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +257 2025-04-16 18:15:02.146117+00 88 Maria Victoria Gonzalez 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +260 2025-04-16 18:16:03.497852+00 75 Paula Kumabe 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +263 2025-04-16 18:17:06.524332+00 3 Gerardo Mallo 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +266 2025-04-16 18:19:43.587602+00 87 Julian Nápoli 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +269 2025-04-16 18:21:12.572123+00 80 Mariana Palummo 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +272 2025-04-16 18:22:14.751951+00 74 Javier Robatto 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +275 2025-04-16 18:23:03.751982+00 77 Gabriela de Caroli 2 [{"changed": {"fields": ["Telefono"]}}] 19 118 +278 2025-04-16 19:17:52.6499+00 143 gastonfernandez1996@outlook.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +281 2025-04-16 19:22:53.452576+00 89 Tres de febrero 1 [{"added": {}}] 9 118 +284 2025-04-16 19:33:46.199357+00 92 José Ingenieros 1 [{"added": {}}] 9 118 +288 2025-04-30 13:59:27.618522+00 147 marceloggiangreco@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +291 2025-05-05 14:31:38.476284+00 17 Cardiología (Derivación) 2 [{"changed": {"fields": ["Activo"]}}] 35 118 +366 2025-06-18 19:42:01.611085+00 1182 paulakumabe@hotmail.com 1 [{"added": {}}] 6 118 +367 2025-06-18 19:42:14.887587+00 1182 paulakumabe@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +368 2025-06-18 19:42:38.818246+00 1183 antobt@hotmail.com.ar 1 [{"added": {}}] 6 118 +369 2025-06-18 19:43:03.80111+00 1183 antobt@hotmail.com.ar 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +370 2025-06-18 19:43:27.763726+00 1184 melaniecuestas@hotmail.com 1 [{"added": {}}] 6 118 +371 2025-06-18 19:43:39.236705+00 1184 melaniecuestas@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +372 2025-06-18 19:44:06.219391+00 1185 silviaanacampo46@gmail.com 1 [{"added": {}}] 6 118 +373 2025-06-18 19:44:16.002388+00 1185 silviaanacampo46@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +374 2025-06-18 19:44:45.760681+00 1186 vethomebuenosaires@gmail.com 1 [{"added": {}}] 6 118 +375 2025-06-18 19:44:55.422651+00 1186 vethomebuenosaires@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +376 2025-06-18 19:45:19.985427+00 1187 nalcasena@gmail.com 1 [{"added": {}}] 6 118 +377 2025-06-18 19:45:31.572204+00 1187 nalcasena@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +378 2025-06-19 13:00:55.345447+00 123 gerardodelfino@hotmail.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +379 2025-06-19 17:12:11.033728+00 130 vetemartin@yahoo.com.ar 2 [{"changed": {"fields": ["password"]}}] 6 118 +380 2025-06-23 13:25:20.242934+00 1208 Aldana 1 [{"added": {}}] 6 110 +381 2025-06-23 13:25:39.45256+00 1208 Aldana 2 [{"changed": {"fields": ["First name", "Last name", "Email address"]}}] 6 110 +382 2025-06-23 18:34:29.184315+00 1208 Aldana 2 [{"changed": {"fields": ["Staff status", "Groups"]}}] 6 118 +383 2025-06-23 18:55:18.945651+00 1208 Aldana 2 [{"changed": {"fields": ["User permissions"]}}] 6 118 +384 2025-06-23 19:03:26.358425+00 1208 Aldana 2 [{"changed": {"fields": ["Superuser status", "Last login"]}}] 6 121 +385 2025-07-03 19:55:11.61355+00 132 javierpr15@hotmail.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +386 2025-07-11 18:31:25.40255+00 1243 anna.alarcon.97@gmail.com 2 [{"changed": {"fields": ["password"]}}] 6 110 +387 2025-07-14 15:24:42.381437+00 1366 veterinariaprack@gmail.com 1 [{"added": {}}] 6 118 +388 2025-07-14 15:24:54.4059+00 1366 veterinariaprack@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +389 2025-07-14 15:47:22.768658+00 1367 vir_osso@hotmail.com 1 [{"added": {}}] 6 118 +390 2025-07-14 15:47:33.531324+00 1367 vir_osso@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +391 2025-07-17 13:59:23.892343+00 1183 antobt@hotmail.com.ar 2 [{"changed": {"fields": ["password"]}}] 6 118 +392 2025-07-21 20:39:28.174504+00 1182 paulakumabe@hotmail.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +393 2025-07-24 14:06:57.23917+00 1433 ursulapalmieri@gmail.com 1 [{"added": {}}] 6 118 +394 2025-07-24 14:07:08.400739+00 1433 ursulapalmieri@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +395 2025-07-30 17:40:27.763211+00 1487 daniela.herrera@usal.edu.ar 1 [{"added": {}}] 6 118 +396 2025-07-30 17:40:36.842051+00 1487 daniela.herrera@usal.edu.ar 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +397 2025-07-31 18:18:48.139937+00 1495 damian1257@icloud.com 1 [{"added": {}}] 6 118 +398 2025-07-31 18:19:08.107052+00 1495 damian1257@icloud.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +399 2025-07-31 19:00:53.674758+00 1497 ayee.salazar@gmail.com 1 [{"added": {}}] 6 118 +400 2025-07-31 19:01:03.856251+00 1497 ayee.salazar@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +401 2025-08-04 12:40:55.550012+00 117 nicolasguasco82@hotmail.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +402 2025-08-15 14:35:39.374888+00 1583 Aldu 1 [{"added": {}}] 6 110 +403 2025-08-15 14:36:11.104732+00 1583 Ingrassia 2 [{"changed": {"fields": ["Username", "First name", "Last name", "Email address", "Groups"]}}] 6 110 +404 2025-08-15 14:38:29.899466+00 1583 Ingrassia 2 [{"changed": {"fields": ["Staff status"]}}] 6 110 +405 2025-08-15 14:39:50.137739+00 1583 Ingrassia 2 [{"changed": {"fields": ["Superuser status", "Groups"]}}] 6 110 +406 2025-08-19 22:41:01.945545+00 1617 laupassio@gmail.com 1 [{"added": {}}] 6 118 +407 2025-08-19 22:41:13.307596+00 1617 laupassio@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +408 2025-08-22 12:44:49.914085+00 1645 nicotisato@gmail.com 1 [{"added": {}}] 6 118 +409 2025-08-22 12:45:01.339668+00 1645 nicotisato@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +410 2025-08-29 19:05:11.13537+00 119 esteban.caravello@hospitalitaliano.org.ar 2 [{"changed": {"fields": ["password"]}}] 6 118 +411 2025-08-29 19:05:26.623889+00 119 esteban.caravello@hospitalitaliano.org.ar 2 [] 6 118 +412 2025-09-03 20:35:14.272337+00 7 Carolina Cullari 2 [{"changed": {"fields": ["Activo"]}}] 19 118 +413 2025-09-09 17:43:59.079082+00 1774 guadacastro.vet@gmail.com 1 [{"added": {}}] 6 118 +414 2025-09-09 17:44:10.723846+00 1774 guadacastro.vet@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +415 2025-09-10 17:28:15.811161+00 1781 marialuisao2005@yahoo.com.ar 1 [{"added": {}}] 6 118 +416 2025-09-10 17:28:34.190325+00 1781 marialuisao2005@yahoo.com.ar 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +417 2025-09-19 19:58:13.872352+00 1 Amar MAscotas S.A. 1 [{"added": {}}] 61 121 +418 2025-09-19 19:59:48.488538+00 1 5 1 [{"added": {}}] 54 121 +419 2025-09-22 17:07:12.247665+00 1191 Enrofloxacina 1 [{"added": {}}] 28 110 +420 2025-09-22 17:07:50.39095+00 1192 Tribiotic 1 [{"added": {}}] 28 110 +421 2025-09-23 15:52:45.990477+00 66 Melanie Belén Cuestas Cánepa 2 [{"changed": {"fields": ["Activo"]}}] 19 118 +422 2025-09-25 15:59:27.839559+00 134 mariavictoriagonzalez.mve@gmail.com 2 [{"changed": {"fields": ["password"]}}] 6 118 +423 2025-09-25 16:00:28.970001+00 134 mariavictoriagonzalez.mve@gmail.com 2 [] 6 118 +424 2025-09-25 18:23:11.016669+00 4 Adicionales (Clínica) - Consulta general clínica programada 2 [{"changed": {"fields": ["Activo"]}}] 45 118 +425 2025-09-25 20:49:41.224037+00 1853 veraquince@hotmail.com 1 [{"added": {}}] 6 118 +426 2025-09-25 20:49:53.451904+00 1853 veraquince@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +427 2025-09-25 20:50:18.253912+00 1854 drlevisman@gmail.com 1 [{"added": {}}] 6 118 +428 2025-09-25 20:50:28.616179+00 1854 drlevisman@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +429 2025-09-25 20:50:50.21084+00 1855 mariapazfrontini@live.com.ar 1 [{"added": {}}] 6 118 +430 2025-09-25 20:50:59.960511+00 1855 mariapazfrontini@live.com.ar 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +431 2025-09-26 12:28:03.596737+00 88 Maria Victoria Gonzalez 2 [{"changed": {"fields": ["Email"]}}] 19 110 +432 2025-09-26 12:38:58.135707+00 88 Maria Victoria Gonzalez 2 [{"changed": {"fields": ["Email"]}}] 19 110 +433 2025-09-26 12:40:30.327245+00 88 Maria Victoria Gonzalez 2 [{"changed": {"fields": ["Email"]}}] 19 110 +434 2025-09-30 18:42:36.073007+00 134 mariavictoriagonzalez.mve@gmail.com 2 [{"changed": {"fields": ["password"]}}] 6 110 +435 2025-10-02 18:40:57.907126+00 75 Paula Kumabe 2 [{"changed": {"fields": ["Email"]}}] 19 121 +436 2025-10-02 19:19:25.65508+00 1487 daniela.herrera@usal.edu.ar 2 [{"changed": {"fields": ["Email address"]}}] 6 121 +437 2025-10-02 19:25:45.350794+00 121 valentina@amarmascotas.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address"]}}] 6 121 +438 2025-10-02 19:27:45.489616+00 3 Gerardo Mallo 2 [{"changed": {"fields": ["Activo"]}}] 19 118 +439 2025-10-02 19:27:56.354913+00 8 Maria Victoria Poisson 2 [{"changed": {"fields": ["Activo"]}}] 19 118 +440 2025-10-02 19:28:06.239552+00 76 BUSCAR VETE 2 [{"changed": {"fields": ["Activo"]}}] 19 118 +441 2025-10-02 19:28:26.898192+00 77 Gabriela de Caroli 2 [{"changed": {"fields": ["Activo"]}}] 19 118 +442 2025-10-02 19:28:51.849348+00 73 Nicolás Porta 2 [{"changed": {"fields": ["Activo"]}}] 19 118 +443 2025-10-03 13:06:35.617776+00 1873 zeriodas@hotmail.com 1 [{"added": {}}] 6 118 +444 2025-10-03 13:06:48.27605+00 1873 zeriodas@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +445 2025-10-03 13:32:39.381864+00 1874 grilliecografiaveterinaria@gmail.com 1 [{"added": {}}] 6 118 +446 2025-10-03 13:32:54.138413+00 1874 grilliecografiaveterinaria@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +447 2025-10-03 14:03:15.933606+00 134 mariavictoriagonzalez.mve@gmail.com 2 [{"changed": {"fields": ["password"]}}] 6 121 +448 2025-10-03 15:36:20.911162+00 83 Marianela Rius 2 [{"changed": {"fields": ["Activo"]}}] 19 118 +449 2025-10-04 17:34:17.9138+00 11 Laboratorio (Laboratorio) - Extraccion de sangre 2 [{"changed": {"fields": ["Activo"]}}] 45 118 +450 2025-10-07 13:31:04.706147+00 9310 Franco Krecul 2 [{"changed": {"fields": ["Usuario"]}}] 14 121 +451 2025-10-08 19:02:00.25743+00 1879 burgess 1 [{"added": {}}] 6 118 +452 2025-10-08 19:02:11.910692+00 1879 burgess 2 [{"changed": {"fields": ["First name", "Last name", "Groups"]}}] 6 118 +453 2025-10-08 19:36:25.659019+00 1879 clinica.burgess@gmail.com 2 [{"changed": {"fields": ["Username", "Email address"]}}] 6 118 +454 2025-10-27 13:40:15.256311+00 1 Bonificacion_2025 (0%) 1 [{"added": {}}, {"added": {"name": "Asignaci\\u00f3n de veterinario a grupo de turnero individual", "object": "Lisandro Ponce \\u2192 Bonificacion_2025 (0%)"}}] 71 118 +455 2025-10-27 13:41:07.089249+00 1 Bonificacion_2025 (0.00%) 2 [{"changed": {"name": "Asignaci\\u00f3n de veterinario a grupo de turnero individual", "object": "Daniela Ord\\u00f3\\u00f1ez \\u2192 Bonificacion_2025 (0.00%)", "fields": ["Veterinario"]}}] 71 118 +456 2025-10-27 13:41:20.026453+00 1 Bonificacion_2025 (0.00%) 2 [{"added": {"name": "Asignaci\\u00f3n de veterinario a grupo de turnero individual", "object": "Lisandro Ponce \\u2192 Bonificacion_2025 (0.00%)"}}] 71 118 +457 2025-10-27 13:45:35.497127+00 2 Tarifa_8% (8%) 1 [{"added": {}}] 71 118 +458 2025-10-27 13:46:05.125694+00 3 Tarifa_onboarding_5% (5%) 1 [{"added": {}}] 71 118 +459 2025-10-27 17:35:10.636667+00 1915 caro.marras@gmail.com 1 [{"added": {}}] 6 118 +460 2025-10-27 17:35:20.415623+00 1915 caro.marras@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +461 2025-10-28 18:04:13.513187+00 1 Bonificacion_2025 (0.00%) 2 [{"changed": {"fields": ["Activo"]}}] 71 118 +462 2025-10-28 18:14:41.562369+00 1 Bonificacion_2025 (0.00%) 3 71 118 +463 2025-10-29 12:57:11.080165+00 1928 arielrodas.vete@gmail.com 1 [{"added": {}}] 6 118 +464 2025-10-29 12:57:21.576144+00 1928 arielrodas.vete@gmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +465 2025-10-29 15:19:32.277079+00 1119 edigonzalezpe@gmail.com 2 [{"changed": {"fields": ["password"]}}] 6 121 +466 2025-10-29 22:20:13.801491+00 1935 gabriel@maffia.me 1 [{"added": {}}] 6 121 +467 2025-10-29 22:21:10.869097+00 1935 gabriel@maffia.me 2 [{"changed": {"fields": ["First name", "Email address", "Groups"]}}] 6 121 +468 2025-10-29 22:25:14.131635+00 1935 gabriel@maffia.me 2 [] 6 121 +469 2025-11-04 18:52:23.040081+00 1949 galiwer@hotmail.com.ar 2 [{"changed": {"fields": ["password"]}}] 6 118 +470 2025-11-13 17:52:13.158676+00 2132 tomasigoncalves@hotmail.com 1 [{"added": {}}] 6 118 +471 2025-11-13 17:52:23.896003+00 2132 tomasigoncalves@hotmail.com 2 [{"changed": {"fields": ["First name", "Last name", "Email address", "Groups"]}}] 6 118 +\. + + +-- +-- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.django_content_type (id, app_label, model) FROM stdin; +1 authtoken token +2 authtoken tokenproxy +3 admin logentry +4 auth permission +5 auth group +6 auth user +7 contenttypes contenttype +8 sessions session +9 common neighborhood +10 common petbreed +11 common specialty +12 common study +13 common vaccine +14 mascotas petowner +15 mascotas pet +16 mascotas petstudy +17 mascotas petstudyfile +18 mascotas petvaccine +19 mascotas veterinarian +20 mascotas availability +21 mascotas vetvisit +22 mascotas vetvisitreport +23 mascotas unavailability +24 productos service +25 productos prices +26 productos discounts +27 common medicationgeneralname +28 common medication +29 common medicationtype +30 common medicationpresentation +31 mascotas privatenote +32 common apikey +33 productos cart +34 productos cartitem +35 productos category +36 productos group +37 solicitudes servicerequest +38 productos cartresumeitem +39 solicitudes servicerequeststatehistory +40 solicitudes veterinarianasked +41 mascotas vetvisitfollowup +42 mascotas followupimage +43 productos servicecombo +44 productos servicecomboitem +45 productos categoryservice +46 storage filestorage +47 common groupstudy +48 common campaign +49 afip authticket +50 afip concepttype +51 afip currencytype +52 afip documenttype +53 afip observation +54 afip pointofsales +55 afip receipt +56 afip receiptentry +57 afip receiptpdf +58 afip receipttype +59 afip receiptvalidation +60 afip tax +61 afip taxpayer +62 afip taxtype +63 afip vat +64 afip vattype +65 afip optionaltype +66 afip optional +67 afip clientvatcondition +68 comprobantes receiptpayproof +69 payments mercadopagoaccount +70 common tag +71 common individualturnfeegroup +72 common individualturnfeegroupmembership +73 payments mercadopagonotification +74 common browserpushsubscription +75 solicitudes scheduledveterinarianreminder +76 common province +77 common locality +78 mascotas veterinariancoveragearea +79 mascotas vetvisitpetreason +80 productos cartpetreason +81 solicitudes paymentreminder +\. + + +-- +-- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.django_migrations (id, app, name, applied) FROM stdin; +1 contenttypes 0001_initial 2025-01-21 03:25:57.474416+00 +2 auth 0001_initial 2025-01-21 03:25:57.576536+00 +3 admin 0001_initial 2025-01-21 03:25:57.606434+00 +4 admin 0002_logentry_remove_auto_add 2025-01-21 03:25:57.614386+00 +5 admin 0003_logentry_add_action_flag_choices 2025-01-21 03:25:57.622209+00 +6 contenttypes 0002_remove_content_type_name 2025-01-21 03:25:57.640532+00 +7 auth 0002_alter_permission_name_max_length 2025-01-21 03:25:57.648837+00 +8 auth 0003_alter_user_email_max_length 2025-01-21 03:25:57.656379+00 +9 auth 0004_alter_user_username_opts 2025-01-21 03:25:57.663633+00 +10 auth 0005_alter_user_last_login_null 2025-01-21 03:25:57.67339+00 +11 auth 0006_require_contenttypes_0002 2025-01-21 03:25:57.675175+00 +12 auth 0007_alter_validators_add_error_messages 2025-01-21 03:25:57.682717+00 +13 auth 0008_alter_user_username_max_length 2025-01-21 03:25:57.697868+00 +14 auth 0009_alter_user_last_name_max_length 2025-01-21 03:25:57.710067+00 +15 auth 0010_alter_group_name_max_length 2025-01-21 03:25:57.722173+00 +16 auth 0011_update_proxy_permissions 2025-01-21 03:25:57.733231+00 +17 auth 0012_alter_user_first_name_max_length 2025-01-21 03:25:57.742855+00 +18 authtoken 0001_initial 2025-01-21 03:25:57.763739+00 +19 authtoken 0002_auto_20160226_1747 2025-01-21 03:25:57.801585+00 +20 authtoken 0003_tokenproxy 2025-01-21 03:25:57.805234+00 +21 authtoken 0004_alter_tokenproxy_options 2025-01-21 03:25:57.812785+00 +22 common 0001_initial 2025-01-21 03:25:57.939725+00 +23 mascotas 0001_initial 2025-01-21 03:25:58.44109+00 +24 sessions 0001_initial 2025-01-21 03:25:58.461297+00 +25 common 0002_alter_study_pet_type 2025-01-21 03:30:17.773012+00 +26 mascotas 0002_alter_vetvisit_visit_type 2025-01-21 03:30:17.80064+00 +27 common 0003_alter_petbreed_pet_type_alter_vaccine_pet_type 2025-01-23 12:06:56.557882+00 +28 mascotas 0003_alter_availability_end_day_and_more 2025-01-23 12:06:56.723232+00 +29 mascotas 0004_alter_pet_pet_type_alter_vetvisit_visit_type 2025-01-23 12:06:56.769429+00 +30 mascotas 0005_unavailability_reason 2025-01-23 12:06:56.800632+00 +31 common 0004_alter_specialty_options 2025-01-24 18:18:53.78888+00 +32 productos 0001_initial 2025-01-24 18:18:54.014567+00 +33 mascotas 0006_vetvisit_google_calendar_event_id 2025-01-31 17:25:20.22644+00 +34 common 0005_medictaiontype_medicationgeneralname_medication 2025-02-20 10:41:53.518941+00 +35 common 0006_rename_medictaiontype_medicationtype 2025-02-20 10:41:53.610622+00 +36 common 0007_alter_medication_group 2025-02-20 10:41:53.64441+00 +37 common 0008_medicationpresentation_medication_presentation 2025-02-20 10:41:53.710562+00 +38 mascotas 0007_vetvisitreport_aditional_fields 2025-02-20 10:41:53.750659+00 +39 mascotas 0008_privatenote 2025-02-20 10:41:53.805043+00 +40 common 0009_apikey 2025-03-20 15:58:55.678486+00 +41 common 0009_alter_medication_active_alter_medication_created_at_and_more 2025-03-20 15:58:57.455006+00 +42 common 0010_merge_20250312_0819 2025-03-20 15:58:57.45756+00 +43 mascotas 0009_alter_availability_active_and_more 2025-03-20 15:58:59.312061+00 +44 mascotas 0010_alter_petowner_gender 2025-03-20 15:58:59.343545+00 +45 productos 0002_cart_cartitem 2025-03-20 15:58:59.430714+00 +46 productos 0003_remove_service_duration 2025-03-20 15:58:59.468751+00 +47 productos 0004_service_duration 2025-03-20 15:58:59.502976+00 +48 productos 0002_alter_discounts_active_alter_discounts_created_at_and_more 2025-03-20 15:59:00.262583+00 +49 productos 0005_merge_20250312_0819 2025-03-20 15:59:00.2639+00 +50 productos 0006_remove_prices_profitability_and_more 2025-03-20 15:59:01.008623+00 +51 productos 0007_cartitem_pet_alter_category_name 2025-03-20 15:59:01.089315+00 +52 mascotas 0011_alter_petowner_neighborhood 2025-04-15 20:07:19.790061+00 +53 productos 0008_cartresumeitem 2025-04-15 20:07:19.932269+00 +54 productos 0009_rename_valor_cartresumeitem_amount_and_more 2025-04-15 20:07:20.220291+00 +55 solicitudes 0001_initial 2025-04-15 20:07:20.348763+00 +56 solicitudes 0002_servicerequest_reason 2025-04-15 20:07:20.4325+00 +57 solicitudes 0003_alter_servicerequest_state_and_more 2025-04-15 20:07:20.652807+00 +58 solicitudes 0004_servicerequest_attended_by 2025-04-15 20:07:20.709096+00 +59 solicitudes 0005_alter_servicerequest_options_and_more 2025-04-15 20:07:21.233688+00 +60 solicitudes 0006_servicerequest_date_coordinated_and_more 2025-04-15 20:07:21.533755+00 +61 solicitudes 0007_alter_servicerequest_state_and_more 2025-04-17 13:39:21.357011+00 +62 mascotas 0012_alter_vetvisit_user 2025-04-29 16:01:10.322442+00 +63 mascotas 0013_vetvisitfollowup_followupimage 2025-04-29 16:01:10.431578+00 +64 mascotas 0014_vetvisit_pets 2025-04-29 16:01:10.486395+00 +65 mascotas 0015_alter_petowner_user 2025-05-08 12:42:59.467842+00 +66 productos 0010_category_value 2025-05-08 12:43:05.81385+00 +67 productos 0011_alter_category_options 2025-05-09 16:11:59.667277+00 +68 productos 0012_categoryservice_servicecombo_servicecomboitem 2025-05-09 16:11:59.894629+00 +69 productos 0013_alter_servicecomboitem_item_type 2025-05-09 16:11:59.911908+00 +70 productos 0014_alter_prices_service_and_more 2025-05-09 16:14:30.847685+00 +71 productos 0015_alter_servicecombo_discount_fixed_and_more 2025-05-09 18:33:41.368369+00 +72 productos 0016_servicecomboitem_active_servicecomboitem_created_at_and_more 2025-05-09 18:33:41.54508+00 +73 productos 0017_service_pet_age_service_pet_gender_service_pet_type_and_more 2025-05-09 18:33:41.978247+00 +74 productos 0018_alter_service_pet_weight_max_and_more 2025-05-09 18:33:42.075196+00 +75 productos 0019_alter_servicecomboitem_item_type 2025-05-20 20:23:39.28233+00 +76 mascotas 0016_alter_vetvisitreport_options 2025-05-31 19:15:33.978114+00 +77 productos 0020_alter_servicecomboitem_item_type 2025-05-31 19:15:34.026776+00 +78 storage 0001_initial 2025-06-02 13:32:27.3829+00 +79 storage 0002_filestorage_description 2025-06-05 19:52:17.132308+00 +80 common 0011_study_company_alter_study_pet_type_groupstudy_and_more 2025-06-12 17:34:10.450435+00 +81 productos 0021_alter_servicecomboitem_item_type 2025-07-07 15:37:35.963653+00 +82 common 0012_campaign 2025-08-08 13:45:00.901775+00 +83 common 0013_alter_campaign_end_date_alter_campaign_start_date 2025-08-08 13:45:00.995484+00 +84 common 0014_alter_campaign_name 2025-08-08 13:45:01.04897+00 +85 mascotas 0017_petowner_campaing 2025-08-08 13:45:01.108258+00 +86 productos 0022_alter_servicecomboitem_item_type 2025-08-08 13:45:01.160778+00 +87 productos 0023_alter_servicecomboitem_item_type 2025-08-08 13:45:01.212307+00 +88 productos 0024_alter_servicecomboitem_item_type 2025-08-08 13:45:01.372962+00 +89 afip 0001_initial 2025-08-11 09:09:47.756162+00 +90 afip 0002_auto_20150909_1837 2025-08-11 09:09:47.757989+00 +91 afip 0003_vat_tax_digits 2025-08-11 09:09:47.759118+00 +92 afip 0004_auto_20150916_1934 2025-08-11 09:09:47.76021+00 +93 afip 0005_auto_20150918_0115 2025-08-11 09:09:47.761174+00 +94 afip 0006_auto_20151212_1431 2025-08-11 09:09:47.762361+00 +95 afip 0007_auto_20151212_1754 2025-08-11 09:09:47.763406+00 +96 afip 0008_auto_20151212_1820 2025-08-11 09:09:47.764443+00 +97 afip 0009_auto_20151214_1836 2025-08-11 09:09:47.765378+00 +98 afip 0010_receiptpdf_pdffile_uploadto 2025-08-11 09:09:47.766266+00 +99 afip 0011_receipt_entry_vat 2025-08-11 09:09:47.767153+00 +100 afip 0012_taxpayer_profile_one_to_one 2025-08-11 09:09:47.768118+00 +101 afip 0013_taxpayer_is_sandboxed 2025-08-11 09:09:47.769269+00 +102 afip 0014_no_partially_validated_receiptvalidations 2025-08-11 09:09:47.77033+00 +103 afip 0015_receiptentry__amount_to_quantity 2025-08-11 09:09:47.77142+00 +104 afip 0016_auto_20170529_2012 2025-08-11 09:09:47.772583+00 +105 afip 0017_receipt_issued_date 2025-08-11 09:09:47.773692+00 +106 afip 0018_on_delete_fks 2025-08-11 09:09:47.774764+00 +107 afip 0019_receiptvalidation__processed_date 2025-08-11 09:09:47.775893+00 +108 afip 0020_backfill_receiptvalidation__processed_date 2025-08-11 09:09:47.776913+00 +109 afip 0021_drop_batches 2025-08-11 09:09:47.777781+00 +110 afip 0022_auto_misc_tweaks 2025-08-11 09:09:47.778849+00 +111 afip 0023_taxpayer__certs_blank 2025-08-11 09:09:47.779888+00 +112 afip 0024_taxpayer__certificate_expiration 2025-08-11 09:09:47.780981+00 +113 afip 0025_receipt__default_currency 2025-08-11 09:09:47.782037+00 +114 afip 0026_vat_conditions 2025-08-11 09:09:47.783042+00 +115 afip 0027_taxpayer__active_since 2025-08-11 09:09:47.784892+00 +116 afip 0028_taxpayer__copy_active_since 2025-08-11 09:09:47.786304+00 +117 afip 0029_drop__taxpayerprofile__active_since 2025-08-11 09:09:47.787424+00 +118 afip 0030_receiptpdf_client_vat_condition 2025-08-11 09:09:47.788635+00 +119 afip 0031_receiptpdf__copy_vat_condition 2025-08-11 09:09:47.789754+00 +120 afip 0032_receiptpdf__client_vat__notnull 2025-08-11 09:09:47.790802+00 +121 afip 0033_receiptpdf__pdf_file__help_text 2025-08-11 09:09:47.793428+00 +122 afip 0034_vat_condition_choices 2025-08-11 09:09:47.794873+00 +123 afip 0035_receiptentry__vat__blankable 2025-08-11 09:09:47.79637+00 +124 afip 0036_receiptpdf__client_address__blank 2025-08-11 09:09:47.7977+00 +125 afip 0002_taxpayerextras 2025-08-11 09:09:47.828203+00 +126 afip 0003_issuance_type_length 2025-08-11 09:09:47.840865+00 +127 afip 0004_storages_and_help_texts 2025-08-11 09:09:47.881483+00 +128 afip 0005_flatten_taxpayer_extras 2025-08-11 09:09:47.978953+00 +129 afip 0006_delete_taxpayerextras 2025-08-11 09:09:47.984742+00 +130 afip 0007_auto_20210409_1641 2025-08-11 09:09:48.384845+00 +131 afip 0008_move_taxpayerprofile_to_pos 2025-08-11 09:09:48.550904+00 +132 afip 0009_alter_pointofsales_issuance_type 2025-08-11 09:09:48.565079+00 +133 afip 0010_alter_authticket_service 2025-08-11 09:09:48.579943+00 +134 afip 0011_receiptentry_discount_and_more 2025-08-11 09:09:48.637775+00 +135 afip 0012_optionaltype_optional_alter_code_in_generics 2025-08-11 09:09:48.687229+00 +136 afip 0013_alter_receiptentry_quantity 2025-08-11 09:09:48.733051+00 +137 afip 0014_alter_pointofsales_blocked_alter_taxpayer_logo 2025-08-11 09:09:48.744012+00 +138 afip 0015_alter_taxpayer_logo 2025-08-11 09:09:48.752452+00 +139 afip 0016_clientvatcondition_receipt_client_vat_condition 2025-08-11 09:09:48.837337+00 +140 afip 0001_squashed_0036_receiptpdf__client_address__blank 2025-08-11 09:09:48.845218+00 +141 comprobantes 0001_initial 2025-08-19 11:34:59.145848+00 +142 comprobantes 0002_alter_receiptpayproof_file 2025-08-19 11:34:59.154121+00 +143 mascotas 0018_vetvisit_afip_receipt 2025-08-19 11:34:59.237175+00 +144 mascotas 0019_split_availability_ranges 2025-09-16 13:41:57.170223+00 +145 mascotas 0020_alter_veterinarian_user 2025-09-16 13:41:57.269845+00 +146 payments 0001_initial 2025-09-16 13:41:57.411336+00 +147 payments 0002_alter_mercadopagoaccount_veterinarian 2025-09-16 13:41:57.609192+00 +148 productos 0025_prices_veterinarian 2025-09-16 13:41:57.683231+00 +149 solicitudes 0008_rename_aditional_data_servicerequeststatehistory_additional_data_and_more 2025-09-19 15:12:31.905722+00 +150 solicitudes 0009_alter_servicerequest_state_and_more 2025-09-19 15:23:03.587734+00 +151 mascotas 0021_petowner_alias 2025-09-30 19:27:16.06366+00 +152 mascotas 0022_rename_campaing_petowner_campaign_and_more 2025-09-30 19:27:16.178123+00 +153 productos 0026_alter_service_managers 2025-09-30 19:27:16.232067+00 +154 mascotas 0023_vetvisit_service_request 2025-10-01 10:11:07.690957+00 +155 mascotas 0024_veterinarian_alias 2025-10-02 13:08:43.771497+00 +156 mascotas 0025_alter_petowner_alias 2025-10-02 13:20:48.027087+00 +157 mascotas 0026_alter_petowner_alias 2025-10-02 13:27:30.478301+00 +158 common 0015_tag 2025-10-21 12:46:47.0796+00 +159 common 0016_neighborhood_distance_coefficient 2025-10-21 12:46:47.144933+00 +160 mascotas 0027_alter_veterinarian_alias 2025-10-21 12:46:47.198504+00 +161 mascotas 0028_alter_petowner_alias 2025-10-21 12:46:47.258447+00 +162 mascotas 0029_petowner_tags 2025-10-21 12:46:47.347369+00 +163 productos 0027_cart_veterinarian 2025-10-21 12:46:47.516285+00 +164 solicitudes 0010_servicerequest_tags 2025-10-21 12:46:47.589349+00 +165 common 0017_individualturnfeegroup 2025-10-24 23:31:25.659322+00 +166 productos 0028_cart_apply_individual_turn_fee 2025-10-29 13:27:20.41312+00 +167 productos 0028_alter_cartresumeitem_concept 2025-10-29 13:27:20.465037+00 +168 productos 0029_merge_20251028_2354 2025-10-29 13:27:20.467551+00 +169 solicitudes 0011_servicerequest_campaign 2025-10-29 13:27:20.539003+00 +170 common 0018_browserpushsubscription_and_more 2025-10-30 19:44:04.405331+00 +171 payments 0003_mercadopagonotification 2025-10-30 19:44:04.480165+00 +172 productos 0028_service_modality 2025-10-30 19:44:04.534381+00 +173 productos 0030_merge_0028_service_modality_0029_merge_20251028_2354 2025-10-30 19:44:04.536284+00 +174 productos 0031_cart_use_veterinarian_prices 2025-10-30 19:44:04.697266+00 +175 mascotas 0030_alter_vetvisitreport_diagnosis_and_more 2025-11-17 14:41:12.099864+00 +176 common 0019_neighborhood_coverage_area 2025-11-22 01:25:14.588547+00 +177 common 0020_province_locality 2025-11-22 01:25:14.898398+00 +178 mascotas 0030_veterinarian_coverage_areas 2025-11-22 01:25:15.064249+00 +179 mascotas 0031_veterinariancoveragearea_polygon_type 2025-11-22 01:25:15.124192+00 +180 common 0020_alter_individualturnfeegroup_veterinarians 2025-11-22 01:25:15.187656+00 +181 common 0021_merge_20251107_0743 2025-11-22 01:25:15.189621+00 +182 common 0022_alter_locality_active_alter_locality_created_at_and_more 2025-11-22 01:25:15.793122+00 +183 mascotas 0032_veterinariancoveragearea_location_fields 2025-11-22 01:25:15.900852+00 +184 mascotas 0033_veterinariancoveragearea_location_relations 2025-11-22 01:25:16.495312+00 +185 mascotas 0034_vetvisitpetreason 2025-11-22 01:25:32.394574+00 +186 mascotas 0035_merge_20251117_2237 2025-11-22 01:25:32.396783+00 +187 mascotas 0036_alter_vetvisitpetreason_id 2025-11-22 01:25:32.519482+00 +188 mascotas 0035_merge_20251117_1311 2025-11-22 01:25:32.523861+00 +189 mascotas 0037_merge_20251119_1138 2025-11-22 01:25:32.525612+00 +190 productos 0032_cartitem_reason 2025-11-22 01:25:32.608519+00 +191 productos 0033_cartpetreason_remove_cartitem_reason 2025-11-22 01:25:32.783726+00 +192 productos 0034_cartpetreason_active_cartpetreason_deleted_and_more 2025-11-22 01:25:33.241546+00 +193 solicitudes 0012_scheduledveterinarianreminder 2025-11-22 01:25:33.31781+00 +194 solicitudes 0013_paymentreminder 2025-11-22 01:25:33.39278+00 +\. + + +-- +-- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.django_session (session_key, session_data, expire_date) FROM stdin; +fz6uoddnuxyqpugv6rki70aoo71au2u4 .eJxVjEEOwiAQRe_C2pARGCgu3XsGMsAgVUOT0q6Md7dNutDtf-_9twi0LjWsnecwZnERZ_Di9LtGSk9uO8oPavdJpqkt8xjlrsiDdnmbMr-uh_t3UKnXrbacMykoZEAjJo0JlNeG8uAjoi9u2IyS2Fl0rK3hxF4ZzcUoBE0gPl83FzhF:1ta5EE:cYOha5aKxqwlYvM0f_F_E5N-0gJDrr1xACw-UA4HfJI 2025-02-04 03:47:02.450577+00 +7lqdyvzgv2z547dr3xfdfcsh09p7wh92 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1taFOt:6ZW1KXKK5T0Hv0fap4lH3tPxc7y1P55gwOXVJ2fcKZc 2025-02-04 14:38:43.671259+00 +6lhzf9u6vjudpfl5abfkrvbv68ity8fd .eJxVjEEOwiAQRe_C2hBHYIou3fcMBGamUjWQlHZlvLuSdKHb_977LxXituawNVnCzOqiAIw6_K4p0kNKR3yP5VY11bIuc9Jd0Ttteqwsz-vu_h3k2PK3dpYkIrBnpAmZjsl7K2dvjThBSmk4DeyAxCYgYwg8IqCgxR5MrN4fSZU5CA:1te0Gy:KMujaqv7_ytKYftVxiS4Bh7RjaRol6ama_6VJItt9-A 2025-02-14 23:18:04.978605+00 +vis6p4lnojojdvoi27yvo4hu8tdow2o2 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1thp0s:t31kQgKKjCy0fbybec0UBtDVpiWDxymQ9tqCvnMk30E 2025-02-25 12:05:14.149213+00 +l0zhkg3mvn7mfb4jdedcfgz9xlaj6cor .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1tndGF:qg1Gpiq60nn11-b49vEh8IwCcuM20znePsHh3BT3qTg 2025-03-13 12:45:07.16121+00 +zsr2ep8i3fdkm5lo1vye3252sngxv098 .eJxVjDsOwjAQBe_iGllZJ9nYlPScIdqfSQDFUj4V4u4QKQW0b2bey_W0rUO_LTb3o7qzA-jc6XdlkodNO9I7TbfipUzrPLLfFX_QxV-L2vNyuH8HAy3Dtw5ZW46MwLU0oYrBIgbNAoEtGtaW6iymDBVmVWi6NjGKtA2Spi6Te38ARqQ5MA:1tl6d2:9mqS9OK-j1hjSDxwVmAseURK-agWdqDVHHhXNigFiRI 2025-03-06 13:30:12.078051+00 +6pnwm1dzidjjs12tubspd8eir846ra0a .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1tndLJ:_15UhB0_Tz_MOto55kZ8k5ev8NJ-9zh2ywWYq6XpLRU 2025-03-13 12:50:21.991268+00 +hig22fxem04lqz471mpdx16vcfvkjxec .eJxVjEEOwiAQRe_C2pARGCgu3XsGMsAgVUOT0q6Md7dNutDtf-_9twi0LjWsnecwZnERZ_Di9LtGSk9uO8oPavdJpqkt8xjlrsiDdnmbMr-uh_t3UKnXrbacMykoZEAjJo0JlNeG8uAjoi9u2IyS2Fl0rK3hxF4ZzcUoBE0gPl83FzhF:1tfiwX:uzmJS8NqB3GU0JIJJNpP1tQISfZTBMHPeM7uzZzWXgA 2025-02-19 17:12:05.792053+00 +wfkr03ghd0t9hcvq6tadm8jfn31t265r .eJxVjDsOwjAQBe_iGln-ZNeGkj5niNbeNQ6gRIqTCnF3iJQC2jcz76UG2tY6bE2WYWR1UdZFdfpdE-WHTDviO023Wed5Wpcx6V3RB226n1me18P9O6jU6rd2xrF3sbA4jsWWHDFACCAhWQTxMZBhEATKSBQ7QI_GAhifusBnVO8PI3g3iw:1tlXEa:Btp1HxwTAO-LSGrC1tt0YfkSI9_CWyiAUgWt3yALWsw 2025-03-07 17:54:44.518128+00 +wpaoq8iyiuykyo4v3jlypzd5mp3bzljr .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1tgQLl:PWeaZNULZTm2NXiaS_lmf4Qda5riue8Z1bgFx9k7AAI 2025-02-21 15:33:01.322451+00 +lhyskx5mu5lcph66gstwj7u3j0vhzsb6 .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tndxj:jqYvaaELWTkS309KO-4gCu_L1ddAFcoPR81ZV05-gwY 2025-03-13 13:30:03.928101+00 +7d2v9x8jnks2omfmy4bubd132kzg9dup .eJxVjMsOwiAQRf-FtSFAebp07zcQGGakaiAp7cr479qkC93ec859sZi2tcZt4BLnws5MSs9Ov2tO8MC2o3JP7dY59LYuc-a7wg86-LUXfF4O9--gplG_tQhWgAdQQmsCMkGCQzLonFFWSKW0kZoQShIa0SkjJwHOB7IOMdPE3h8eRjgR:1tuHfN:mgOvMDk28J8ufJ_S0dl2jXZVkZGL1vmsmngqyJ5oo2Y 2025-03-31 21:06:33.463314+00 +d2qtwog7i1lrywerbhe4u47ze0g3g5zy .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tneRD:rV4ZVZtfLuQye0yJ2JVBrPYACKpEkRw2nJqOhrb16NA 2025-03-13 14:00:31.157904+00 +dd7hjsly5s9asowo22urb9oyzk951mgv .eJxVjEEOwiAQRe_C2pBCC0xduvcMZGYYpGrapLQr492VpAvd_vfef6mI-1biXmWNU1JnZaxVp9-VkB8yN5TuON8Wzcu8rRPppuiDVn1dkjwvh_t3ULCWVhMDjJIzZXaC4AF66kM_sM9jDkOwHXtjknGOvh6FznmyyCA8CECn3h9O5Di3:1tnII1:T5PznvO3iJu7_h2HaYTk1AqWCkR_OKIlQwxCOHm1g8A 2025-03-12 14:21:33.22551+00 +c08vz7vu700spb52kw99qhk3aewtnjir .eJxVjMsOwiAQRf-FtSFAebp07zcQGGakaiAp7cr479qkC93ec859sZi2tcZt4BLnws5MSs9Ov2tO8MC2o3JP7dY59LYuc-a7wg86-LUXfF4O9--gplG_tQhWgAdQQmsCMkGCQzLonFFWSKW0kZoQShIa0SkjJwHOB7IOMdPE3h8eRjgR:1tneUG:HglbbKfr-sM2lPX6l6dPkXeYl_cQLFVjq15RVyjDOzA 2025-03-13 14:03:40.156399+00 +zg9mb3rspkowsl6r19p393hg3ye2b30z .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1tnhEq:aAdBN6Byj_eq2glTNicVMlQfZA_5OtVgzoTeEjARC-k 2025-03-13 16:59:56.283171+00 +z28ki1ldug5v4w9tigr4vsxt5nyc29rx .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1tnctm:fspiw0T2J6YFdNP3-nEt0PaosGMEbaRbg_2f3oxXblQ 2025-03-13 12:21:54.499339+00 +2xtsyf4ef17aois3g4ukas5erck9dkus .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1tutHV:XvzQdXjaTdyNAk3IlBNLJM5wgjIiIcgDLGoivQ_j-iw 2025-04-02 13:16:25.152128+00 +drwbdyei28zteed1fv7jh0tr3oqwa9yy .eJxVjEEOwiAQRe_C2hBmKAgu3fcMZBimUjVtUtqV8e7apAvd_vfef6lE21rT1mRJY1EXBdao0--aiR8y7ajcabrNmudpXcasd0UftOl-LvK8Hu7fQaVWv_WQndhoIwFakODQBOMLeZ8DCwIOCMDnzAYEWUJE7DrkGKwDF4FEvT8TdDdm:1tnkiN:06c1nf7ljy75Ho72QPTSQUba4ygbaVaa7Ceey29N3oY 2025-03-13 20:42:39.106372+00 +554jud01limsqq5bqknrudids62ho35q .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1tovhT:6MrIWGIgDUXyIJqsxj2W0lF1GU8fOFpK8nvSJYEKbms 2025-03-17 02:38:35.129851+00 +buyzk5eutdldb5h3r9o537mq25k7ps0s .eJxVjMsOwiAQRf-FtSFAebp07zcQGGakaiAp7cr479qkC93ec859sZi2tcZt4BLnws5MSs9Ov2tO8MC2o3JP7dY59LYuc-a7wg86-LUXfF4O9--gplG_tQhWgAdQQmsCMkGCQzLonFFWSKW0kZoQShIa0SkjJwHOB7IOMdPE3h8eRjgR:1tvJgm:mAFfWnelQx8DiLoEwT18zo-7cX64U3rROyFnPHrELFs 2025-04-03 17:28:16.544502+00 +lar4w600k1982rxa45ui1py3d093rvje .eJxVjEsOwjAMBe-SNYrqmiQNS_Y9Q2THDimgVupnhbg7VOoCtm9m3ssk2taatkXnNIi5GAAwp9-VKT903JHcabxNNk_jOg9sd8UedLH9JPq8Hu7fQaWlfusciubiKLuisWFAwAxAELzz7Fo4B_ZeWdChhKbpsA1RqNMYi2DLaN4fOWQ4MQ:1tvdC9:IAq9KvX6tCmgfGxCHemdO9oFY_53SUB41chMO_jUQBM 2025-04-04 14:17:57.176113+00 +7va8okuqvtfwiibd198vi5r6i6nurut7 .eJxVjEsOwjAMBe-SNYrqmiQNS_Y9Q2THDimgVupnhbg7VOoCtm9m3ssk2taatkXnNIi5GAAwp9-VKT903JHcabxNNk_jOg9sd8UedLH9JPq8Hu7fQaWlfusciubiKLuisWFAwAxAELzz7Fo4B_ZeWdChhKbpsA1RqNMYi2DLaN4fOWQ4MQ:1tqIqo:QaRGoKCcxhIWxgE4OgtasuvGEQoJX74u6_p3EJ0qRZg 2025-03-20 21:33:54.043245+00 +vy4r4sdyubhoa746rnxmst4t4vrckfu5 .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1tw15W:MW4nlPXaBjg7oYk8AjzMpDIDDAq2nMwLL3unbok6JRI 2025-04-05 15:48:42.705646+00 +twwh0j2l02v2x1bg890n0o6eywq6dubk .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1tqdRu:fsM1cNgJJML-KGdunUY1YPClMr3CGrdtdiGIHzb65c0 2025-03-21 19:33:34.049702+00 +sx3efutg99evr2sqbk7ig67klzh2wb2a .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1tsm8V:hJbd3fCn9sk5GREhIqdcSpb5fIs3L3isQDUZf18_Amo 2025-03-27 17:14:23.8892+00 +p8bpo61kvhzeo3k7ork4jc98xsk2ioq5 .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1u5FvZ:KCtB_mVrNA-hTZ1ft7N9LOiWyCQPB3aods1TrhyRpBI 2025-05-01 03:28:37.637473+00 +eag3zuwipqs61jo1jt4socfa57sixfcd .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1thsiM:F4FhVimH0qKttJ_pVxXpTcQvCruAgY_Ca9-UZiXL5IQ 2025-02-25 16:02:22.342842+00 +97slmgze9s6tiuit8nn9vdcvlqunz1zb .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1tndHN:YsbEyVZICiVx0gTjAaO34psL9lYnIQKFXjTdQjnBfLQ 2025-03-13 12:46:17.058353+00 +lxkszvpzn6pnm6rrh64yty358m09ajaj .eJxVjEEOwiAQRe_C2pBCC0xduvcMZGYYpGrapLQr492VpAvd_vfef6mI-1biXmWNU1JnZaxVp9-VkB8yN5TuON8Wzcu8rRPppuiDVn1dkjwvh_t3ULCWVhMDjJIzZXaC4AF66kM_sM9jDkOwHXtjknGOvh6FznmyyCA8CECn3h9O5Di3:1tl6hC:z1OYAkIQUEmuvV09VoEPPHjU0jpUXPOZ1KIpYd4lUW4 2025-03-06 13:34:30.523938+00 +jay367oemodiughpfc88gawj06q6dgym .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1tuHgX:gjPw1r98LrBs8arDijYpc-2HFOfVqyLOyeA-ZhaTQQw 2025-03-31 21:07:45.390078+00 +kj4xji5xbun43kllkyrn0pfc9nnelgjo .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1tndLh:Ahqi0FoDPN1MQgQIShodYS2w3kZ-oh05IKO8AOZwkl4 2025-03-13 12:50:45.03232+00 +k6e8mc1q6cduj6i8mgeyn32em5uhudux .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1tmdp9:Uv-tfk3kGJhXVQOMK3bWQQdRMQL-sCxYq4o3v9PFen0 2025-03-10 19:09:03.120981+00 +fs6eagyvpgwp225uvld3m25f1qtf0oh5 .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tneJU:WLMAZKgvat2vBisy3AOiSQedJO-c-yd-rjshzDbLP-Y 2025-03-13 13:52:32.027911+00 +j8xiskhnlediwm5h6nav4yd60wft0x1y .eJxVjDsOwjAQBe_iGlm24x-U9DmDtbve4ACypTipEHeHSCmgfTPzXiLBtpa0dV7SnMVFaGvE6XdFoAfXHeU71FuT1Oq6zCh3RR60y7Flfl4P9--gQC_fmsE6HZnATNlbRHZkyakYwBHFM6mAhj0D4oBGD9mDIR_RZ0VqwiGI9wdc2zlw:1tufLq:JdTlA5blLzCO7nJjqnG-PtoBCrv4VgFDU0BhYUOz5pQ 2025-04-01 22:23:58.253274+00 +evkkfi5894s412p64pgx6sy8glcjylze .eJxVjEEOwiAQRe_C2pBCC0xduvcMZGYYpGrapLQr492VpAvd_vfef6mI-1biXmWNU1JnZaxVp9-VkB8yN5TuON8Wzcu8rRPppuiDVn1dkjwvh_t3ULCWVhMDjJIzZXaC4AF66kM_sM9jDkOwHXtjknGOvh6FznmyyCA8CECn3h9O5Di3:1tnI4q:MxzuadFAqiIYVECesKDj4pu0KSZqO9W-WnSg-5bcFeU 2025-03-12 14:07:56.340124+00 +rkkm0qp83aj63rmeywlbii4dlm99a4pu .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tneRc:EuYJ6dTpWh3qX7CV8KQ6Bqtc8ML0_e1tSwJBHQ-vlqI 2025-03-13 14:00:56.404033+00 +pwk7yf9jaqeqm3rwfok5cea600jn5w0p .eJxVjEEOwiAQRe_C2pBCC0xduvcMZGYYpGrapLQr492VpAvd_vfef6mI-1biXmWNU1JnZaxVp9-VkB8yN5TuON8Wzcu8rRPppuiDVn1dkjwvh_t3ULCWVhMDjJIzZXaC4AF66kM_sM9jDkOwHXtjknGOvh6FznmyyCA8CECn3h9O5Di3:1tnIop:Q80soLpp984H-n_ELFl3wErr1SttJ_P8aXO0q-isdBU 2025-03-12 14:55:27.675699+00 +k1krb96dt0zuzfmnjxaktiii9qh97uzu .eJxVjEEOwiAQRe_C2pARGCgu3XsGMsAgVUOT0q6Md7dNutDtf-_9twi0LjWsnecwZnERZ_Di9LtGSk9uO8oPavdJpqkt8xjlrsiDdnmbMr-uh_t3UKnXrbacMykoZEAjJo0JlNeG8uAjoi9u2IyS2Fl0rK3hxF4ZzcUoBE0gPl83FzhF:1teM6Q:ZEHXOW_9ng597fLwb1IdlHp71IKwYvb4JvQzjwW_iFE 2025-02-15 22:36:38.352929+00 +00lik3cy2av9yo7t7r6hok6hzpghug2t .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1tvFi2:k0iKVKwmxk039kvfnA0AxvE7FOPBqqLp-ee5zZy-ws4 2025-04-03 13:13:18.987088+00 +i3gtyegqwmmtth15tc85hb3c742tr2wo .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tneeb:jaq3yi4Io8_Uczq5VVYHfUJA33fyUNjQl6fMhdiM49s 2025-03-13 14:14:21.961653+00 +yyfkgwa3xktzat679db5jf6ti6ayh3p8 .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1tfNS2:b89GI1x5QOCTCqrjYeSr_t1z5ollY9cp1hDxloPJnpg 2025-02-18 18:15:10.702492+00 +59p1fh4rta8ugaj1fxgdebefet2yio4x .eJxVjEEOwiAQRe_C2hBmKAgu3fcMZBimUjVtUtqV8e7apAvd_vfef6lE21rT1mRJY1EXBdao0--aiR8y7ajcabrNmudpXcasd0UftOl-LvK8Hu7fQaVWv_WQndhoIwFakODQBOMLeZ8DCwIOCMDnzAYEWUJE7DrkGKwDF4FEvT8TdDdm:1tncvd:GOOFrb15F3OQLuBZAQuunNKLwf1dvUXa3_d3lLd5glI 2025-03-13 12:23:49.045085+00 +0pvi6si839482v84maaa8mrzpiy9jc59 .eJxVjMsOwiAQRf-FtSFAebp07zcQGGakaiAp7cr479qkC93ec859sZi2tcZt4BLnws5MSs9Ov2tO8MC2o3JP7dY59LYuc-a7wg86-LUXfF4O9--gplG_tQhWgAdQQmsCMkGCQzLonFFWSKW0kZoQShIa0SkjJwHOB7IOMdPE3h8eRjgR:1tfjTI:uxTfrn3-EGrZuDNeyBQfRE9-9BsTa8XtipKVtsToS1M 2025-02-19 17:45:56.621335+00 +6ui9nb1kp4178t1bamwkdltewb1mn66y .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1tni6t:M0tx-Nt7uFyBdMB5ZP5SuaBddGJJaCiGczBwOgUTsNQ 2025-03-13 17:55:47.792759+00 +7mcyoee3l1ubns46jgdl710nd3fmw81h .eJxVjDsOwjAQBe_iGllZJ9nYlPScIdqfSQDFUj4V4u4QKQW0b2bey_W0rUO_LTb3o7qzA-jc6XdlkodNO9I7TbfipUzrPLLfFX_QxV-L2vNyuH8HAy3Dtw5ZW46MwLU0oYrBIgbNAoEtGtaW6iymDBVmVWi6NjGKtA2Spi6Te38ARqQ5MA:1thVoM:NzUDrmbP7I7IK4R5qGFkIUjy-Ppk7Si0GVOaKJMeT2U 2025-02-24 15:35:02.035227+00 +w4cobrozhozr4lh5dwi48vsn5xevgo03 .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1tnoqq:F-koKc-W77Ekv2q_xz4q1OPIXMUBuFyk5n1lv6BLjkU 2025-03-14 01:07:40.596524+00 +tydkuriduf2jtgxgxquyz7z9wwkrdswd .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1tpFrq:eqjXDGYx5c0CUn8YZzlMykb7F30r4oJWto1o0TfPuvE 2025-03-18 00:10:38.1688+00 +6n486l6rjko173peete2fcdenoldrgv0 .eJxVjEEOwiAQRe_C2pARGCgu3XsGMsAgVUOT0q6Md7dNutDtf-_9twi0LjWsnecwZnERZ_Di9LtGSk9uO8oPavdJpqkt8xjlrsiDdnmbMr-uh_t3UKnXrbacMykoZEAjJo0JlNeG8uAjoi9u2IyS2Fl0rK3hxF4ZzcUoBE0gPl83FzhF:1tpyvv:mqahCiWizwjJD2tW7E9v_L6RTOGbz-XSgiVup32mvqk 2025-03-20 00:17:51.42014+00 +ou3s4kgja9d31mjqy90nrw7fdi93ljb7 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1tqXSR:tSOJqkYoCFz7hMChhG0KWsnDBBf0X5SkSoCtxFcKTLM 2025-03-21 13:09:43.590126+00 +6mihvbiijlacjipo48unr5eacnc69kxo .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1tqdMZ:B0zi4xm47YVNbM60gwgJ_4PFmEqxA6uoFsEIGNCoqkI 2025-03-21 19:28:03.274955+00 +me1uyk6qw2e858mklgntw45gjsaanq74 .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1tt6SK:vS42hJGtSiF3PQwev7jW9GHej3wi8Vs2lgYcgrL9iGc 2025-03-28 14:56:12.879124+00 +u2aj8v8lh6tfzc86lscllhk300617cbi .eJxVjMsOwiAQRf-FtSFAebp07zcQGGakaiAp7cr479qkC93ec859sZi2tcZt4BLnws5MSs9Ov2tO8MC2o3JP7dY59LYuc-a7wg86-LUXfF4O9--gplG_tQhWgAdQQmsCMkGCQzLonFFWSKW0kZoQShIa0SkjJwHOB7IOMdPE3h8eRjgR:1taDJP:N2tsr5Vn37KbI3ciHY7q1ykBNvX-0U7Nt2Sz0zcnQs4 2025-02-04 12:24:55.177879+00 +j3ea0zeqeb3rsyc5ez0lrk9mssskln8q .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1tabyW:IP5HkGMUFDNTaCRqTVHJXhZxY_YwghDemARxwUk8y7k 2025-02-05 14:45:00.549396+00 +5aip466yz4rd6w381algfxa582hjssi6 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1uFbEx:uABj42AMhzMj2I2eSuTt-Om7FnKSnGSPIk-BRd8UxPA 2025-05-29 16:15:23.930286+00 +izytzwe3thebqlpeayrc8nkuo1tdj7xc .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1tndHo:ZKDJBNTHnEwYnoUanqlsp-0f5EfGZdAIvZ9G7vfuDPs 2025-03-13 12:46:44.580505+00 +ul6sppl1cdbofnvnmdch9olia76q150u .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1tndPV:q2k99QTm6TQtB56RSMYpFslKss-ZWvLyKEVSTgGL13w 2025-03-13 12:54:41.515192+00 +vomk3rtt62mi0k84aqyg3c6rc5jzzs3o .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1tibAt:h87SHhy7T-xJb-whuyCis7bT-KzGD7CehWSfK0Nqn80 2025-02-27 15:30:47.671847+00 +dpzq294ha1iya6j8h2bsow9vookzyfb9 .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1tfmMu:w90S87EONR-eRIRn4Kvi2Iy646SrGwfvWmFOiSrtspE 2025-02-19 20:51:32.072414+00 +w1vp597rl1q9bxlc1hpgn8dk1sfbphwd .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tneOY:olmN8_FlECWqwwpfc9qnhiLbH8OSECIqqub9snYlDyk 2025-03-13 13:57:46.732073+00 +x7fx5eapub4qnpj9h7ukvvdt40dwhovj .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tneSB:HL0d8Z2IY1iDD4omBciGlNhrJ-m00pZjPMLb2lJt7pg 2025-03-13 14:01:31.584689+00 +zxwvoy15x5ur6lnzytkbfupkg3jcurv8 .eJxVjDsOwjAQBe_iGln-J6ak5wyWd9eLA8iR4qRC3B0ipYD2zcx7iZS3taatlyVNJM5COy1OvytkfJS2I7rndpslzm1dJpC7Ig_a5XWm8rwc7t9Bzb1-axsYfWRyFn1wqmSPNDrLVHQc0SiwoBR75iGwA9SROMAQjC9gCHQQ7w9DZjj8:1tuzI7:IL96PBq5CPf1ofw6wKE2wSptRhpB_HXp2y6EVQLdTeU 2025-04-02 19:41:27.50374+00 +7fjkrhyfneepy34f2wn5oxz5ue1lg449 .eJxVjEEOwiAQRe_C2pBCC0xduvcMZGYYpGrapLQr492VpAvd_vfef6mI-1biXmWNU1JnZaxVp9-VkB8yN5TuON8Wzcu8rRPppuiDVn1dkjwvh_t3ULCWVhMDjJIzZXaC4AF66kM_sM9jDkOwHXtjknGOvh6FznmyyCA8CECn3h9O5Di3:1tl8Pq:1AVbdW7z21Zw6uQBbZjUzvT5_YOIO-bWpl5RpQ_myBk 2025-03-06 15:24:42.297339+00 +tc0hdt6kli83995t1omt9e12drg06uqb .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tnefg:WMTb7WSn4c_YGOJT6Ej7GodDvbb5W_djxzlYcE5civI 2025-03-13 14:15:28.925259+00 +y93mnjwkvnbqxfnap7dqs51u2xa8tfcc .eJxVjEEOwiAQRe_C2hBmYARcuvcMZCggVUOT0q6MdzckXej2v_f-WwTetxr2ntcwJ3ERgFqcftfI0zO3gdKD232R09K2dY5yKPKgXd6WlF_Xw_07qNzrqNmXFItHBuU4ebKcNWFk0BYtFyyRlDYE4NAZQoNnxY6Sz85rQBKfLzVNN3E:1tniMl:TnqFbQvelseDE0n7Wba9OyOPQwg5tmR_oIu8YEv8lak 2025-03-13 18:12:11.657956+00 +53m80aqtfh2yfp6066o15bi59l53kvu2 .eJxVjEEOwiAQRe_C2pBCC0xduvcMZGYYpGrapLQr492VpAvd_vfef6mI-1biXmWNU1JnZaxVp9-VkB8yN5TuON8Wzcu8rRPppuiDVn1dkjwvh_t3ULCWVhMDjJIzZXaC4AF66kM_sM9jDkOwHXtjknGOvh6FznmyyCA8CECn3h9O5Di3:1tmvoc:Y1-WNU9Uh1nEK1FJTwHyhoXR2sOVbrEEJLWMPL5d2kE 2025-03-11 14:21:42.161876+00 +g0g495ubbv4hgnofav7q6iz8v024iu0x .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tnxzt:87CcocrPVL8Axd9jne0Acp3U9gDq0pGrc3kRcPJUvLM 2025-03-14 10:53:37.667365+00 +84wn3rx4wn7xos0epof9cr48lk9uuohd .eJxVjMsOwiAQRf-FtSFAebp07zcQGGakaiAp7cr479qkC93ec859sZi2tcZt4BLnws5MSs9Ov2tO8MC2o3JP7dY59LYuc-a7wg86-LUXfF4O9--gplG_tQhWgAdQQmsCMkGCQzLonFFWSKW0kZoQShIa0SkjJwHOB7IOMdPE3h8eRjgR:1tnICd:ipl-TB8o7afY0VYn0RALGO3ilM3DrYhL_7-540nRxzo 2025-03-12 14:15:59.604545+00 +txhkvte4z9lexwp1ugt7320cqhq8kegr .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1tpnZ7:QU5enb8pAKH5ui3RRZ06yBEczjKQ4cls7HB2j3pHqcE 2025-03-19 12:09:33.405328+00 +guy6s644qv5fyeb7h6ett50igiumua7r .eJxVjEEOwiAQRe_C2pBCC0xduvcMZGYYpGrapLQr492VpAvd_vfef6mI-1biXmWNU1JnZaxVp9-VkB8yN5TuON8Wzcu8rRPppuiDVn1dkjwvh_t3ULCWVhMDjJIzZXaC4AF66kM_sM9jDkOwHXtjknGOvh6FznmyyCA8CECn3h9O5Di3:1tnIwY:2UPPAwE8PmIQ6508aKUQywFHPROc3ZYLaFcvyFPm1oI 2025-03-12 15:03:26.523927+00 +b4mm1liback3ef748wjkrpz2om1fnq8d .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1tq9dw:OVW61yv2jQNtXsftoCwWigOCU5zbslfAoUMYZGjIC7w 2025-03-20 11:44:00.171368+00 +asmu62kqiqmsuw7zzfjm2efrw7x9vo51 .eJxVjEsOwjAMBe-SNYrqmiQNS_Y9Q2THDimgVupnhbg7VOoCtm9m3ssk2taatkXnNIi5GAAwp9-VKT903JHcabxNNk_jOg9sd8UedLH9JPq8Hu7fQaWlfusciubiKLuisWFAwAxAELzz7Fo4B_ZeWdChhKbpsA1RqNMYi2DLaN4fOWQ4MQ:1tqYLt:k6Swwum-Pp2WCOpz9fLPF-Wjdcludb_9rYG90JUDr3I 2025-03-21 14:07:01.927963+00 +ru9s9ghfnb7lkjuywgzs8g9w9jedvvbn .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1tnczU:sctXI60HQw-eqOCAwx5KuevFe6XkzlNb8KEDckE-z90 2025-03-13 12:27:48.821556+00 +3x0xt60fj8k5m0nnyy1wq2r2m7kav1h9 .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1tqdMs:Ibz0FCf0qQZPYS35NpR4ep9MI2DIVSPNFpC8JSvOPws 2025-03-21 19:28:22.564811+00 +dndp3v77hdxkyymsshv9s6iu4u8qodq4 .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1ts6By:W0zVOFCN1qzEuY7ZsdymyLMllPI76QfNQOY3OxAC2Y8 2025-03-25 20:27:10.589194+00 +z8aiavhhqwbswfcpia0wu3da33urjmgs .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1ttTxe:O6BocGGaBrCmSpYSRmGBmW1S18Q3ebaX3msEBnJJ-wY 2025-03-29 16:02:06.250121+00 +cxngnsyjh8qqvi1hlydllci8dey75wgq .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1ttu1y:e5kKyKvXftCL3DjkN9nxwcByMmEaffrXnIG8GY6R6Og 2025-03-30 19:52:18.587371+00 +g9on54us9m7x5u8wjsva5ltsn2nkqrqc .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1tuHdo:RAtlJr8M1C2cyElg-n1GHDAjvzl7M6JnDkvX_wX6AFc 2025-03-31 21:04:56.206402+00 +plik70acqe25p59tybq4bzonton9jfyt .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1taExD:mznRrBC0m5l7CLfl_bUu0lbOaSvD0bIswlGpUnqIGqU 2025-02-04 14:10:07.10386+00 +wi0n7ev74pkwzqh4kj1238xvlbwuizk0 .eJxVjMsOwiAQRf-FtSGMHXm4dN9vIMMAUjWQlHZl_HfbpAvd3nPOfQtP61L82tPspyiuAs4oTr9rIH6muqP4oHpvkltd5inIXZEH7XJsMb1uh_t3UKiXraaog3LAkC1dOAfOOSRr0BjNCh0BITJTtJggA0e7STA4UINJLugsPl9guTla:1u5N4O:Xz3EAymzvcbiqopVFNnDG4RcqTcOLsQA6_bOR8imVME 2025-05-01 11:06:12.85655+00 +2n3kw707u60vhnxa0u3fuetmiiqrmza0 .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1tndIH:P28KVw60gyoDiZgY6PhXdFn5cbODiYsYvU-Mdyp0WuY 2025-03-13 12:47:13.309831+00 +7kwxhfrikcwx91ulk5xudcdkvf2d85xz .eJxVjEEOwiAQRe_C2hBmYARcuvcMZCggVUOT0q6MdzckXej2v_f-WwTetxr2ntcwJ3ERgFqcftfI0zO3gdKD232R09K2dY5yKPKgXd6WlF_Xw_07qNzrqNmXFItHBuU4ebKcNWFk0BYtFyyRlDYE4NAZQoNnxY6Sz85rQBKfLzVNN3E:1tuaop:-K-Bi3PM1XkUex8qANakBaqN7WTUyV5NneTrPlbcIBQ 2025-04-01 17:33:35.438703+00 +qwq4mz34zghp6cc156kvjk2a6yfk8l3c .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1tfeVT:NrlH6Lwmy93Ugkt6PyX-LUKxwPTi9QpCvceYRytsGg8 2025-02-19 12:27:51.621464+00 +2tqfi4v9im9mn337hrg73n3j9v79w7zl .eJxVjMsOwiAQRf-FtSEFRh4u3fcbyHQYpGogKe3K-O_apAvd3nPOfYmI21ri1nmJcxIXoYwSp991Qnpw3VG6Y701Sa2uyzzJXZEH7XJsiZ_Xw_07KNjLt2bvGTwNmsGgstkRQSY0zkMIRA6cUZZ1Zm2BM7LLiPach5CMmxhZvD89azk-:1tl8Qn:ObcdZYIcjJjjnPkUbWP6gmmtSAMGv_s0d1b6F7OIAFs 2025-03-06 15:25:41.383627+00 +x7ybq7xn1yxcj7zwhpdekzlodlnigoa3 .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1tg3Br:Beuh8h38RjkoRRVtQrWtSyo3UyZwwmYzJrzCXTZmV6M 2025-02-20 14:49:15.219023+00 +j55sava68sbx5r7cyuidfyyia90rt5x8 .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1tnddc:z3D0-3SMDUcvxH74tJKK9sgSUmonNWh2xjWGxKFmOqk 2025-03-13 13:09:16.34196+00 +sa2690mpdzocdifjoauoh1gw6oj8ykqz .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1tufUb:0sygkLFTLKKkayCNJwOyWGB0at7dVCoFTTcmxpsIuBI 2025-04-01 22:33:01.896844+00 +ciji9mzxceagc67fpvo1ivghi19vzrmd .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tneQo:41mBgSEsU5YYGHpJEDBJNKXEvPwq1KqPO5xvFxXZoJI 2025-03-13 14:00:06.375305+00 +cw4xg4apl0rjv3d3x80643i3sdrlzymd .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1tvIyr:1mIgBsGqoFE9wduKJFYNLsMS3w3xDquwduLnWvx1B3k 2025-04-03 16:42:53.73078+00 +uw4zgpcjgw4scznwf3m6axzpkyj2wbto .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tneSx:0UbURY69iGapyUU3IOYM4eAdyVFqPvL4rQ_DFuziobM 2025-03-13 14:02:19.127213+00 +g0d3gbjpnwhpxuzkcnfqumk6holpn7sc .eJxVjEEOwiAQRe_C2pBCC0xduvcMZGYYpGrapLQr492VpAvd_vfef6mI-1biXmWNU1JnZaxVp9-VkB8yN5TuON8Wzcu8rRPppuiDVn1dkjwvh_t3ULCWVhMDjJIzZXaC4AF66kM_sM9jDkOwHXtjknGOvh6FznmyyCA8CECn3h9O5Di3:1tmyYq:GlIsFeAJdDiSltmHbgWBzna2y7TiHw8S8WNi9N5SEtM 2025-03-11 17:17:36.733367+00 +2jq01d6czxl6iceu8klrontuo13u28yf .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1tvMxn:TwN3mfhvYsu_xG9SWfswa6YKR-qMUv9kc3tqdGq6Mp4 2025-04-03 20:58:03.730637+00 +l1ysl8r4h75lthleoxqmuhgdc5u00s88 .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tnegO:RqMwDovtqqyo2JwoJFVKOVlNWr4DyyVCbqULl-v2o7g 2025-03-13 14:16:12.179663+00 +5hnuyepyn8fiwhw45dl1y6fbmd2z6yoc .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1tnIEY:L9iES26pVHbsfk23FztJhslWNoWTcfIXokU4jdMBA3c 2025-03-12 14:17:58.441174+00 +k8xq84zfa4x7i114f1be26qq3e97zvba .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1tnJcR:BMj_2Df-9Jvvhb_7mdwVwRsxNSQskPjz4E02k6OHI98 2025-03-12 15:46:43.671693+00 +zgtl9vx8rq84vkzlxwzl023zcyuxj1pb .eJxVjMsOwiAQRf-FtSGMHXm4dN9vIMMAUjWQlHZl_HfbpAvd3nPOfQtP61L82tPspyiuAs4oTr9rIH6muqP4oHpvkltd5inIXZEH7XJsMb1uh_t3UKiXraaog3LAkC1dOAfOOSRr0BjNCh0BITJTtJggA0e7STA4UINJLugsPl9guTla:1to1Wg:K02kkx-a3hKEdFa6DAKMUIuC3ivyj630BylzA_X33Ew 2025-03-14 14:39:42.535364+00 +nwuaadbn0vko630hqacrr0kgkfv9p4w2 .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1tpqw1:HokGht7q3nFBYawtk9wx6x2pSrxtDvSaoMmSVi-7LX8 2025-03-19 15:45:25.641895+00 +9om821jqw73vp6qy90zywt86p2v3bam8 .eJxVjEsOwjAMBe-SNYrqmiQNS_Y9Q2THDimgVupnhbg7VOoCtm9m3ssk2taatkXnNIi5GAAwp9-VKT903JHcabxNNk_jOg9sd8UedLH9JPq8Hu7fQaWlfusciubiKLuisWFAwAxAELzz7Fo4B_ZeWdChhKbpsA1RqNMYi2DLaN4fOWQ4MQ:1tqAAP:RfxOU645KFtissS7naAij_AsHsCeIi97Fr32oFpecN0 2025-03-20 12:17:33.566295+00 +0k9fx227q0xiv6vufrtzlroe1r71py5u .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tPoSo:vN0rpQhiam8pYSamDAv87HzB8weZnbC7Q47_qq75WlY 2025-01-06 19:51:38.862+00 +p9cuo9esr2lchf9yajawqshrhtb2wqij .eJxVjEEOwiAQRe_C2hBmKAgu3fcMZBimUjVtUtqV8e7apAvd_vfef6lE21rT1mRJY1EXBdao0--aiR8y7ajcabrNmudpXcasd0UftOl-LvK8Hu7fQaVWv_WQndhoIwFakODQBOMLeZ8DCwIOCMDnzAYEWUJE7DrkGKwDF4FEvT8TdDdm:1tncth:BmfDmqTI33Y66RNsVsGbfymUaIjguVssnFtZ8tH-cmk 2025-03-13 12:21:49.739889+00 +pwqqh03u0wagdk9e8lt1jy1gq94w1uek .eJxVjEEOwiAQRe_C2hBmKAgu3fcMZBimUjVtUtqV8e7apAvd_vfef6lE21rT1mRJY1EXBdao0--aiR8y7ajcabrNmudpXcasd0UftOl-LvK8Hu7fQaVWv_WQndhoIwFakODQBOMLeZ8DCwIOCMDnzAYEWUJE7DrkGKwDF4FEvT8TdDdm:1tnd2l:odSv4bf03WtbianEOTJeB0z2b64DzCskm2U9y3ajLPg 2025-03-13 12:31:11.559166+00 +n67mckxdoxmdr18ge740odj1fe7zm1b8 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1tqZZz:QMhT9V8QWOy62W9gPU_-7tYMmG2EJvkHncRgDPby1vM 2025-03-21 15:25:39.39615+00 +h9bt2w5374pn8y2ni6uyfachqr67fss6 .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1tqdPA:q4PLIT8wnOQCdaZW9HxZO5Ju5Xq4vS51onpcRGNuxxg 2025-03-21 19:30:44.546814+00 +wg38h60mykgk3svs87cb9cka4xzct9mw .eJxVjDkOwjAUBe_iGln58RKHkp4zWH8LCSBbylIh7g6RUkD7Zua9TMZtHfO26JwnMWcDbTCn35WQH1p2JHcst2q5lnWeyO6KPehir1X0eTncv4MRl_FbB-9AXXRhSK7piSKwgw6SNDoIgu9YAqVE0EgU7oXUC4BT33Pr2aN5fwAcdDhZ:1tsjh4:pp_n3iK7QHtqIZOqUrGPcqjeBwWiGfJQ0bmTH7oNWDI 2025-03-27 14:37:54.824267+00 +0nq86ri18mid4da8cl2zt4tzcimhpk87 .eJxVjDsOwyAQBe9CHSEwP5Myvc-All0ITiKQjF1FuXuE5CJp38y8Nwtw7CUcPW1hJXZlil1-twj4THUAekC9N46t7tsa-VD4STtfGqXX7XT_Dgr0MmrlMlBEYUh78kKD1FlmjDNhttqb5K2RSQMZh0JYhWQnVNNsk_LZOvb5AgXuOEI:1tE9NT:Y1cAIxTq-C2zRgCFIoF0vDbKkaUUdPMsVyrQbGBh7Cg 2024-12-05 15:45:55.364+00 +1iwk3ka50bmvtzpdh2x1yt5okov67t8i .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tOJOU:cxKvEmUuj5So8iIm545KTKpuqrAkWMc5M_U_Ir6Rw5Q 2025-01-02 16:28:58.361+00 +2bnasqhm7zzvcx3zbkgm3a84zoy7s19v .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tIDEz:qhSmXDz-5g_P0LRskQlRMAdXluGgN2PqarNLt3jCNKw 2024-12-16 20:41:57.429+00 +2cxzbzzytgrn1g4bjsrofqrpr1qlbeoq .eJxVjE0OwiAYBe_C2pBCgYJL956B8P0gVQNJaVfGu2uTLnT7Zua9REzbWuLWeYkzibMI4vS7QcIH1x3QPdVbk9jquswgd0UetMtrI35eDvfvoKRevrXOZMGDUzCi0YPX7J2mjEoDe3YjhzEjE6jBZSJlJhvAIVrjEoUpJ_H-AP-0ONA:1tETBM:QP7Ns49lSD9LunkgHi3ULSiHhpvfIiI-YOqxhz9Qsg0 2024-12-06 12:54:44.838+00 +2qaked84ulx1w35jbzorida21556rzbk .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tNtvs:du8f772x9w45GS6RV2CFPmdEH6pDljrnBVtmpV3zmKE 2025-01-01 13:17:44.3+00 +3e9i6pmjqen1ftgfcfh3h0dqfko0njth .eJxVjEEOwiAQRe_C2hAEBopL956BDMwgVUOT0q6Md7dNutDtf-_9t4i4LjWunec4kriIszj9bgnzk9sO6IHtPsk8tWUek9wVedAubxPx63q4fwcVe91qx0SoVUGrDEA2kJUOxiINIQGE4ofNKJm9A8_GWc4ctDVcrAZlUInPF-rHN9w:1tB9uH:RJHKcMyfShV557-YafL-8XDPe6i5ryOemIw2YRYmuEM 2024-11-27 09:43:25.262+00 +42p2o4n7paec1hcvxsp45qgx7029547q .eJxVjE0OwiAYBe_C2pBCgYJL956B8P0gVQNJaVfGu2uTLnT7Zua9REzbWuLWeYkzibMI4vS7QcIH1x3QPdVbk9jquswgd0UetMtrI35eDvfvoKRevrXOZMGDUzCi0YPX7J2mjEoDe3YjhzEjE6jBZSJlJhvAIVrjEoUpJ_H-AP-0ONA:1tETmZ:dUDmFxEByUwfhmBoOOWb0sWp6vJkHFfO9YdzeNGI3is 2024-12-06 13:33:11.11+00 +4kmd6v6lujx4ujalnafgirzs4s8egbpy .eJxVjE0OwiAYBe_C2pBCgYJL956B8P0gVQNJaVfGu2uTLnT7Zua9REzbWuLWeYkzibMI4vS7QcIH1x3QPdVbk9jquswgd0UetMtrI35eDvfvoKRevrXOZMGDUzCi0YPX7J2mjEoDe3YjhzEjE6jBZSJlJhvAIVrjEoUpJ_H-AP-0ONA:1tET2n:Zn_4wdPkkjYD8bjNSFl7kvmJSHbsLhHdUL1Ppbix1cY 2024-12-06 12:45:53.889+00 +z8kgbo3npdnc7nisnepsdsy9svxcaso4 .eJxVjDsOwyAQBe9CHSEwP5Myvc-All0ITiKQjF1FuXuE5CJp38y8Nwtw7CUcPW1hJXZlUkp2-V0j4DPVgegB9d44trpva-RD4SftfGmUXrfT_Tso0MuolctAEYUh7ckLDVJnmTHOhNlqb5K3RiYNZBwKYRWSnVBNs03KZ-vY5wtMzzii:1tkSkM:vSdr7cmtuTGuJy1fqdp-qm4sJwnXnK8Ue0IXYpDl7MQ 2025-03-04 18:55:06.055869+00 +50y2wu4ctmvsh6glk8t67j4ej3a2qgzh .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tGoXM:LeSd_xgxdk0y4AJ8g5kozCL186jicwmAKL4qsKdrVyE 2024-12-13 00:07:08.369+00 +547o7r3ywehjlvxy3tek05zokun5z5ak .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tKzng:nALh8gUdAoG-_HHETtGUx-VJCojp7TDGGfMmX-_pjBE 2024-12-24 12:57:16.164+00 +59psgatfb2v1xbghou4axux2naa7z7ev .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1t6CSy:Gs41zttifL_0iIlOXKDF6DOijnUsJrWHCYYQ_PD7ZOk 2024-11-13 17:26:44.473+00 +5jo3sn9a6tq61m8pfelulatao9f2buxg .eJxVjEEOwiAQRe_C2hAEBopL956BDMwgVUOT0q6Md7dNutDtf-_9t4i4LjWunec4kriIszj9bgnzk9sO6IHtPsk8tWUek9wVedAubxPx63q4fwcVe91qx0SoVUGrDEA2kJUOxiINIQGE4ofNKJm9A8_GWc4ctDVcrAZlUInPF-rHN9w:1tOgL4:QDiISHYy0w-srtrCKtbz0_jMdff3hThOJPj4GhybAl4 2025-01-03 16:58:58.691+00 +5nz8w37rokdns3hd6nm3zqqz9hfbtta9 .eJxVjMsOwiAQRf-FtSHDG1y69xvIAKNUDSSlXRn_3TbpQrf3nHPfLOK61LgOmuNU2JlZdvrdEuYntR2UB7Z757m3ZZ4S3xV-0MGvvdDrcrh_BxVH3WqRnKSickgKvPUarbbBZPLBSC_RG2EByN2S16BCQAIJJIqTm56lA_b5AsDoNoo:1t6dBu:uzAdcVAIx7oCQYjc6KZJ52UXaKsIOFF-l4XaaVBvXDc 2024-11-14 21:58:54.298+00 +6cevibdskbd6w2g4nxc4m4em84jztvl1 .eJxVjDsOwyAQBe9CHSEwP5Myvc-All0ITiKQjF1FuXuE5CJp38y8Nwtw7CUcPW1hJXZlil1-twj4THUAekC9N46t7tsa-VD4STtfGqXX7XT_Dgr0MmrlMlBEYUh78kKD1FlmjDNhttqb5K2RSQMZh0JYhWQnVNNsk_LZOvb5AgXuOEI:1tTjiV:UYYheSLgp5q9kOYXbSxJNS2-5AiFibX-PP1fv8qMjzw 2025-01-17 15:36:03.247+00 +6yy1uj61uvy1jh8uma6b6eckbscjonn8 .eJxVjEEOwiAQRe_C2pBBQKhL9z0DGWZGqRpISrsy3l2bdKHb_977L5VwXUpau8xpYnVWQR1-t4z0kLoBvmO9NU2tLvOU9abonXY9NpbnZXf_Dgr28q2dcA7BCoGzBkyOCCYO4IAIAp3IGhbLMZqjZ-8CRUCD3g5XInE5e_X-ANUvN7s:1t94CN:FzXgSYyhkUIXZni2yqu3X7QgQuuLg4bAVLngYYI8y80 2024-11-21 15:13:27.615+00 +7uujcvp92lydt8ziv9f9y8p9ns1ffyrb .eJxVjE0OwiAYBe_C2pBCgYJL956B8P0gVQNJaVfGu2uTLnT7Zua9REzbWuLWeYkzibMI4vS7QcIH1x3QPdVbk9jquswgd0UetMtrI35eDvfvoKRevrXOZMGDUzCi0YPX7J2mjEoDe3YjhzEjE6jBZSJlJhvAIVrjEoUpJ_H-AP-0ONA:1tET60:1oGVIqzr22YDI325zILKVMYOOlDayDhgDu2YXUQDnZY 2024-12-06 12:49:12.124+00 +7vl7gb5w8kd3hpqol6g3dy9skl1hdrgi .eJxVjEEOwiAQRe_C2pAwBYZx6d4zkAGmUjU0Ke3KeHdt0oVu_3vvv1Tkba1x67LEqaizMqBOv2Pi_JC2k3Lndpt1ntu6TEnvij5o19e5yPNyuH8HlXv91oGEhoBiEEexOSdAYDvm5AkAKQAzOs-CTA6CybYYS84NFGxAz1a9P_1vN0M:1tXNma:jPg39xhgmewb50eGLoA3Noxu2ehdszELqgLPl1doyqQ 2025-01-27 16:59:20.57+00 +7zau29l5r08fup5qt9vl7gjg6aap3wjg .eJxVjEEOwiAQRe_C2pBBQKhL9z0DGWZGqRpISrsy3l2bdKHb_977L5VwXUpau8xpYnVWQR1-t4z0kLoBvmO9NU2tLvOU9abonXY9NpbnZXf_Dgr28q2dcA7BCoGzBkyOCCYO4IAIAp3IGhbLMZqjZ-8CRUCD3g5XInE5e_X-ANUvN7s:1tTNWv:VwSI5dvk8-0lTOvxp7PjqsA2PO5Qst40jXZ62abiLBE 2025-01-16 15:54:37.519+00 +88om1ru81z0z1jsacajnbog2qk0cy3md .eJxVjEEOwiAQRe_C2pBBQKhL9z0DGWZGqRpISrsy3l2bdKHb_977L5VwXUpau8xpYnVWQR1-t4z0kLoBvmO9NU2tLvOU9abonXY9NpbnZXf_Dgr28q2dcA7BCoGzBkyOCCYO4IAIAp3IGhbLMZqjZ-8CRUCD3g5XInE5e_X-ANUvN7s:1tNCQ9:3nem07PegXZAKSKaSrHrTw9lxIMKHkM-D_nmBZxFtgs 2024-12-30 14:50:05.403+00 +8hddqswo15pfkm7bsoqbua63lm545779 .eJxVjMsOwiAQRf-FtSHDG1y69xvIAKNUDSSlXRn_3TbpQrf3nHPfLOK61LgOmuNU2JlZdvrdEuYntR2UB7Z757m3ZZ4S3xV-0MGvvdDrcrh_BxVH3WqRnKSickgKvPUarbbBZPLBSC_RG2EByN2S16BCQAIJJIqTm56lA_b5AsDoNoo:1tQo7O:ZHoXDiKBf9SEurH8C8v8Jtfb1KV1DJtwnSd2st3tHuU 2025-01-09 13:41:38.405+00 +8hxra4wc78d0u9ucastvhm6hu2stc0ti .eJxVjDsOwyAQBe9CHSEwP5Myvc-All0ITiKQjF1FuXuE5CJp38y8Nwtw7CUcPW1hJXZlil1-twj4THUAekC9N46t7tsa-VD4STtfGqXX7XT_Dgr0MmrlMlBEYUh78kKD1FlmjDNhttqb5K2RSQMZh0JYhWQnVNNsk_LZOvb5AgXuOEI:1tJEqy:S96o6uWgE-quqr637GeEQSs-RXexqJ1OoxXyd7O-0Pg 2024-12-19 16:37:24.573+00 +91h8o5oymzvfeueja54504tj5qf7i30d .eJxVjDsOwyAQBe9CHSEwP5Myvc-All0ITiKQjF1FuXuE5CJp38y8Nwtw7CUcPW1hJXZlil1-twj4THUAekC9N46t7tsa-VD4STtfGqXX7XT_Dgr0MmrlMlBEYUh78kKD1FlmjDNhttqb5K2RSQMZh0JYhWQnVNNsk_LZOvb5AgXuOEI:1tE9Ge:xK-hY4Ectg5pS0dhndzETo4uZ7ZAgygnGcf1iodGirU 2024-12-05 15:38:52.671+00 +9e4ofb89n074s10945sbpmncppgeaeva .eJxVjEEOwiAQRe_C2hAEBopL956BDMwgVUOT0q6Md7dNutDtf-_9t4i4LjWunec4kriIszj9bgnzk9sO6IHtPsk8tWUek9wVedAubxPx63q4fwcVe91qx0SoVUGrDEA2kJUOxiINIQGE4ofNKJm9A8_GWc4ctDVcrAZlUInPF-rHN9w:1tOflr:g1aKSwvChwDnidiPa7ycunB_S2m7tghfSgoQf9EJ2AM 2025-01-03 16:22:35.766+00 +wl0gukxajutqelftl4ozlwo9bm7v7oso .eJxVjMsOwiAQRf-FtSFAebp07zcQGGakaiAp7cr479qkC93ec859sZi2tcZt4BLnws5MSs9Ov2tO8MC2o3JP7dY59LYuc-a7wg86-LUXfF4O9--gplG_tQhWgAdQQmsCMkGCQzLonFFWSKW0kZoQShIa0SkjJwHOB7IOMdPE3h8eRjgR:1tfJ9o:RztY60wi5VTvCS3PXcEHS_HtGqf_liRnkbAJ6sXHEF0 2025-02-18 13:40:04.818298+00 +fi3yaqe4bt8n8um869wop0lg5yvwvee3 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1tg3CE:4-Qpj0M7kHXeAKbSP8A5zS69FzjfHvEoEMMWu1125EM 2025-02-20 14:49:38.665973+00 +a2krp6gi3z8fyt21g4q0bq0f4b8tnru6 .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tKjXT:oz-emvbzaBs0prKluCQj3IEQYR9U4gURSvOXKIA-uXg 2024-12-23 19:35:27.842+00 +a3lrpqozl0irlln5kxh2bf2wi702t0b7 .eJxVjMsOwiAQRf-FtSED5VFcuvcbCAwzUjU0Ke3K-O_apAvd3nPOfYmYtrXGrdMSpyLOQoE4_Y454YPaTso9tdsscW7rMmW5K_KgXV7nQs_L4f4d1NTrt4bgAEdEDcYwsg0KPbEl7612oLQ2VhkmLAkMkddWDYB-DOw8UeZBvD_1TTfY:1tL3z7:hdzYYap4nVVQ6qJZ-UxOJVhNQRcU61_ejHGyfnyYTeA 2024-12-24 17:25:21.345+00 +ahjedeuik20qgs7ckq6jxohraafxxuuq .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tNwh7:tMyfvPybegejeRHS_ItQFJcKvkQY6vLfcfkcP3xC1Tg 2025-01-01 16:14:41.894+00 +b591nuf1aftzuayvxg4ot3v7g5srdaif .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tHn46:8XjMEmkgutcXVn9Nj0k2kGNrnh42SHs7RHI3M-ggesw 2024-12-15 16:44:58.617+00 +b9juy0qph86nr3ryxgi5e0f6t3j8d2s5 .eJxVjMsOwiAQRf-FtSED5VFcuvcbCAwzUjU0Ke3K-O_apAvd3nPOfYmYtrXGrdMSpyLOQoE4_Y454YPaTso9tdsscW7rMmW5K_KgXV7nQs_L4f4d1NTrt4bgAEdEDcYwsg0KPbEl7612oLQ2VhkmLAkMkddWDYB-DOw8UeZBvD_1TTfY:1tFwpU:fXE_H24KcMmycNOHDiyep5SvEBJgoQptxE4DO22IYhc 2024-12-10 14:46:16.86+00 +bkilbz21ci2q02re1derumwhrzl141cf .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tOjyl:zBFqTlmmW9lrkoK6UpEKkKAlzdodYrf3B8c9hX4pihI 2025-01-03 20:52:11.815+00 +bkl2jfs6rfvaxmhrcnpez077ryd44d2p .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tRxIy:ERaGDokz_bZPu8gfKixi5f1LNu2ATQOrDSGOI_5DR2w 2025-01-12 17:42:20.077+00 +c45jfb61khntief6qvmf2lvepqljlwxw .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tUWXn:EerURUEjh5y6g6zE7ukmwFxAxYd3LnyQX3mtyJ2yZO4 2025-01-19 19:44:15.361+00 +c6wuom5878mqxmcq0pcc6i5pxmibv7st .eJxVjDsOwjAQBe_iGllO_Emckp4zWOvddRJAsWQ7FeLuECkFtG_mzUsE2NsS9solrCQmocXld4uAD94OQHfY5iwxb62sUR6KPGmVt0z8vJ7uX2CBuhxvPSSgiMqS8eSVgc6kLmEcCZMz3rJ3tmMDZAdUymkk16PuR8faJzd8oy3P85NDXYkjFDG1svP7AzQZQGc:1tAFwL:0algC9OXML17KM1AkmsouSY1o521Cdkjs6xGxM2e0Ng 2024-11-24 21:57:49.685+00 +cfow1s8bxmlq8wh5wlhor8ko55rqb76l .eJxVjMsOwiAQRf-FtSHDG1y69xvIAKNUDSSlXRn_3TbpQrf3nHPfLOK61LgOmuNU2JlZdvrdEuYntR2UB7Z757m3ZZ4S3xV-0MGvvdDrcrh_BxVH3WqRnKSickgKvPUarbbBZPLBSC_RG2EByN2S16BCQAIJJIqTm56lA_b5AsDoNoo:1tKdQL:JrMSrD7LjQF8hY9sw4ixqyEx5kCbZERSKaF1cfnpSTs 2024-12-23 13:03:41.94+00 +d3s5z6g6s04qtvbaltcza81qw0drfaxo .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tGjIX:3yM-Aw4TkrTxeidHE8hT-vNLqOvD7apUpDuLFH8yLSg 2024-12-12 18:31:29.402+00 +d5knxdz0fcvlf8y0degik3syaex6slbi .eJxVjEEOwiAQRe_C2hAEBopL956BDMwgVUOT0q6Md7dNutDtf-_9t4i4LjWunec4kriIszj9bgnzk9sO6IHtPsk8tWUek9wVedAubxPx63q4fwcVe91qx0SoVUGrDEA2kJUOxiINIQGE4ofNKJm9A8_GWc4ctDVcrAZlUInPF-rHN9w:1tGf2z:XdJc0ydkhHVufuM0_YuT2Dliue1eqbFzY0MAWyxFAi0 2024-12-12 13:59:09.151+00 +dhln3nijm83scug38p6lbb0kpmeyj14k .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tVsP8:i5F6NPE9J05CBG8s4vyqvB5_1LiwUY7DnqaMIImQdEc 2025-01-23 13:16:54.773+00 +fbbz6ftjq2ucg8uq5ne7ukg2fojfwkt5 .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tQuSd:ut9wrq1kDEGbp2PND888BGppYliQ4VUiJmhR2fqsJNM 2025-01-09 20:27:59.517+00 +ffgpihplod7yzb0vrfijztl406l94xg2 .eJxVjMsOwiAQRf-FtSHDG1y69xvIAKNUDSSlXRn_3TbpQrf3nHPfLOK61LgOmuNU2JlZdvrdEuYntR2UB7Z757m3ZZ4S3xV-0MGvvdDrcrh_BxVH3WqRnKSickgKvPUarbbBZPLBSC_RG2EByN2S16BCQAIJJIqTm56lA_b5AsDoNoo:1t6ctR:IfMqdzJ5m_MjyETXzMjuutPjr4JFh4R1c8EywHjep4s 2024-11-14 21:39:49.935+00 +fq17obv9twuqg2o7oeu1pd0ih57pp0t3 .eJxVjE0OwiAYBe_C2pBCgYJL956B8P0gVQNJaVfGu2uTLnT7Zua9REzbWuLWeYkzibMI4vS7QcIH1x3QPdVbk9jquswgd0UetMtrI35eDvfvoKRevrXOZMGDUzCi0YPX7J2mjEoDe3YjhzEjE6jBZSJlJhvAIVrjEoUpJ_H-AP-0ONA:1tHQgv:im7ydau-xEAAVQ3ejg1rHjCUQN2pZca5-FvUzehIn7Q 2024-12-14 16:51:33.89+00 +g1zobkdln440ag9wahu4vxk1lj2vcrtt .eJxVjDsOwyAQBe9CHSEwP5Myvc-All0ITiKQjF1FuXuE5CJp38y8Nwtw7CUcPW1hJXZlil1-twj4THUAekC9N46t7tsa-VD4STtfGqXX7XT_Dgr0MmrlMlBEYUh78kKD1FlmjDNhttqb5K2RSQMZh0JYhWQnVNNsk_LZOvb5AgXuOEI:1t8gvG:Qv7QjPm64wnVUZOY1stp0V1tpRVCvXBGOAugk9WXnJE 2024-11-20 14:22:14.957+00 +g802w3nkab9br1pn2g031neaziiml2l8 .eJxVjE0OwiAYBe_C2pBCgYJL956B8P0gVQNJaVfGu2uTLnT7Zua9REzbWuLWeYkzibMI4vS7QcIH1x3QPdVbk9jquswgd0UetMtrI35eDvfvoKRevrXOZMGDUzCi0YPX7J2mjEoDe3YjhzEjE6jBZSJlJhvAIVrjEoUpJ_H-AP-0ONA:1tEW5t:Wljn3yQbJMZCL4EUhHni2L6HojRjfLyTq1Sf-_k1MwY 2024-12-06 16:01:17.106+00 +gbxjlklha3h3hpkp9pki3gsw7jbz3lgn .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tTlOn:KiltNMgO9kwlOpClGtcbQM2xxvn7GykVrok0L1Wpbd8 2025-01-17 17:23:49.071+00 +8p68lt4fzfa3r38luaty40dz6venl5eo .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1tkniI:NV5LvMHPi6XfHbpSfSxSQ6fM9WcTtkltEPGyV9d7pWY 2025-03-05 17:18:22.497366+00 +h0j3wgd8dpnip221cb8gndmvlhq1f8c8 .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tVzQl:6xBaVaiC-i974Ub56WvGLxbSTuZXGDgaV88S3WG2vmU 2025-01-23 20:47:03.086+00 +hrnjdttoqd314hgwamdf3fcjorlc7p46 .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1t9Smq:1OD__7m-nY5IZU3aLS-4M4zBs-5LP3bpxMnypZl2Gf4 2024-11-22 17:28:44.111+00 +hxv526s7q9izhvat9vl7luci551pxv8u .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tQAQr:5NDZGgW4AlQ2xT9LvYIPTCjQ2jmx9g7S2JrOgDeoxiQ 2025-01-07 19:19:05.189+00 +ic7ddpss2nuegagxo035rlg8fqdvtojd .eJxVjE0OwiAYBe_C2pBCgYJL956B8P0gVQNJaVfGu2uTLnT7Zua9REzbWuLWeYkzibMI4vS7QcIH1x3QPdVbk9jquswgd0UetMtrI35eDvfvoKRevrXOZMGDUzCi0YPX7J2mjEoDe3YjhzEjE6jBZSJlJhvAIVrjEoUpJ_H-AP-0ONA:1tEWUJ:Dl8P1nw0N0jHWNleNgcehBaAf4QB48yXyu--RJvMRME 2024-12-06 16:26:31.821+00 +j14jo6l0zq09re16swdrcs33e7gakz3p .eJxVjMsOwiAQRf-FtSHDG1y69xvIAKNUDSSlXRn_3TbpQrf3nHPfLOK61LgOmuNU2JlZdvrdEuYntR2UB7Z757m3ZZ4S3xV-0MGvvdDrcrh_BxVH3WqRnKSickgKvPUarbbBZPLBSC_RG2EByN2S16BCQAIJJIqTm56lA_b5AsDoNoo:1tYsW4:JUK4sIMN-HM8U3KGB7nALk713EprXwVf1UqTsEnEJWQ 2025-01-31 20:00:28.502+00 +1qrml99q7vzfhpey547w76pekuu6vl7x .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1tfK6H:uwmg2rzXmhCFqFX7oNjNq6AvsSxLWtI958vEB3Oz2Xw 2025-02-18 14:40:29.927759+00 +j2ehpr14hbf1laudt0weapyev0vwizis .eJxVjE0OwiAYBe_C2pBCgYJL956B8P0gVQNJaVfGu2uTLnT7Zua9REzbWuLWeYkzibMI4vS7QcIH1x3QPdVbk9jquswgd0UetMtrI35eDvfvoKRevrXOZMGDUzCi0YPX7J2mjEoDe3YjhzEjE6jBZSJlJhvAIVrjEoUpJ_H-AP-0ONA:1tRCOW:OQ7R6diDZIcMGhjgdCrwVdlzpUsnCvT14PlMcXeWcTE 2025-01-10 15:36:56.215+00 +jmtz6w9vwt4fykjzyw3a2oxjx9y54q6u .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tFua9:8oC1oZioG9YG1Sgpc4he74QaJedR7mSx1bk8xy3DcPY 2024-12-10 12:22:17.757+00 +jyi8t7dj9p4jo3kfqhu05tcz2lo67455 .eJxVjMsOwiAQRf-FtSE4MEBduu83kBkYpGrapI-V8d-1SRe6veec-1KJtrWlbZE5DUVdlFOn340pP2TcQbnTeJt0nsZ1Hljvij7oovupyPN6uH8HjZb2rT3HAIWNgeoLQizm7Dggo7fGkhjM0PkqzoLEKkFi11FlCyFTRQRU7w_TnDer:1t6cOO:xRhKd__LrBfSXHZsY-kXWbnlCeqAI_ctVGtdEKczyzY 2024-11-14 21:07:44.762+00 +khk4xqw7qwpzu2htioqe8dfujibo8mxp .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tWK2N:hZQDvEMqZc-nbyAnLhuYugetiPKtsobwPKGIjsuZVKA 2025-01-24 18:47:15.1+00 +ktt89jrcu8gkux8kkrlr1f3r9u84ixv1 .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tOOTB:n-cWpx6Bvq3RgqzrgMysGaPXiF03sfebcw9Seym9TEI 2025-01-02 21:54:09.213+00 +kx87qiibkwtwlceq69tarqoz5awnncru .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tQxvm:Hal4CitNWZZ2cFjt2NSYzvNet_f_6ZsGvzzZGjVQwak 2025-01-10 00:10:18.432+00 +l9jhixc0pzaux1r45b0787qbzuf6pg80 .eJxVjMsOwiAQRf-FtSED5VFcuvcbCAwzUjU0Ke3K-O_apAvd3nPOfYmYtrXGrdMSpyLOQoE4_Y454YPaTso9tdsscW7rMmW5K_KgXV7nQs_L4f4d1NTrt4bgAEdEDcYwsg0KPbEl7612oLQ2VhkmLAkMkddWDYB-DOw8UeZBvD_1TTfY:1tJZOV:MyFEswyNxKq5BYoMrj0-zmIH2jlle6fxX5xnN6KpiJY 2024-12-20 14:33:23.877+00 +lzpmxevwq4fjkt2inuq9rl7z09mj6606 .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tGhim:SLDje4TpKiGVtnIKcaHpeJo5XY9wnUdOpVFEUXRdq7U 2024-12-12 16:50:28.752+00 +m4mhdtsjoi0v01c6exwijbe2rgiuj9wa .eJxVjEEOwiAQRe_C2hAEBopL956BDMwgVUOT0q6Md7dNutDtf-_9t4i4LjWunec4kriIszj9bgnzk9sO6IHtPsk8tWUek9wVedAubxPx63q4fwcVe91qx0SoVUGrDEA2kJUOxiINIQGE4ofNKJm9A8_GWc4ctDVcrAZlUInPF-rHN9w:1tE9E3:zVtS2mry4tpkUENnCPIQmul4OlES9E2pyXTKD74hegk 2024-12-05 15:36:11.27+00 +mbw8qz8fatq5y8cw7lipttoqadejsbm7 .eJxVjE0OwiAYBe_C2pBCgYJL956B8P0gVQNJaVfGu2uTLnT7Zua9REzbWuLWeYkzibMI4vS7QcIH1x3QPdVbk9jquswgd0UetMtrI35eDvfvoKRevrXOZMGDUzCi0YPX7J2mjEoDe3YjhzEjE6jBZSJlJhvAIVrjEoUpJ_H-AP-0ONA:1tH609:5fYF6-fbmlrqguDz37Qhc11Ds_tg4AKzUE3hP1ZMgYs 2024-12-13 18:46:01.406+00 +mnzatcepe8w37rwqr6avdeqvoilbunzx .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tRK26:OXztSjXmA0ZU4tJ8fKreBn5YPcu0aPUBHNmlYNO541M 2025-01-10 23:46:18.768+00 +ngb20uwu3kz9u80dp4y59vmul3sfne0e .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1t6C4c:kwlcUgpmu9DGcgCbsFTS7QRu1IlDrupaWLu7nN6-WLo 2024-11-13 17:01:34.327+00 +nmy0lcxtkzrvh96dc439jswcza64cfh3 .eJxVjEEOwiAQRe_C2hAEBopL956BDMwgVUOT0q6Md7dNutDtf-_9t4i4LjWunec4kriIszj9bgnzk9sO6IHtPsk8tWUek9wVedAubxPx63q4fwcVe91qx0SoVUGrDEA2kJUOxiINIQGE4ofNKJm9A8_GWc4ctDVcrAZlUInPF-rHN9w:1tNwgM:fAOg-8_Nl5rQVaH3XW2IVUCchMGHH9M5Fjk4YlU4TIA 2025-01-01 16:13:54.386+00 +nqtis8a7lr31f8505069gcjjtdhndzma .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tGzWM:sHivlL40IeZ9T05TzLOgDYV-9VWB3xDxeLhhILXBcsw 2024-12-13 11:50:50.154+00 +nrox8zwfvf1co4twyt4narh50thhj7gb .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tP2yG:r5H7kFp7R9b2CbmfGRnvI_gVfU7iVdzs9-1_q2HhO3Y 2025-01-04 17:08:56.389+00 +o7hdfarrc59ok3hc4taff3val79f9q45 .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tIRQf:AZIPQ3zBfdb_Muq02KW7CJDxc1TZ5VXPBsBHDzx-EH4 2024-12-17 11:50:57.386+00 +oe87isfg1gsqq8335o301manbsxf70v2 .eJxVjEEOwiAQRe_C2hAEBopL956BDMwgVUOT0q6Md7dNutDtf-_9t4i4LjWunec4kriIszj9bgnzk9sO6IHtPsk8tWUek9wVedAubxPx63q4fwcVe91qx0SoVUGrDEA2kJUOxiINIQGE4ofNKJm9A8_GWc4ctDVcrAZlUInPF-rHN9w:1tGdAQ:BhlQzukp6sHCT1NEkKLpISEJO00u3jELd85qYpZaBDk 2024-12-12 11:58:42.87+00 +on3mgpt12u9u3oxf3znhltvrx3e0w0gx .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tAwR8:A9uQx-1oKu_3pA_gM-QQ0ZhvS4ljf0xc6KlAsB-M6K4 2024-11-26 19:20:26.348+00 +pmuqsihzpu0qzaysnph3mchso6gymr5e .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1t8JFr:P3rSx9cJDXHoiXP7AvFYXDc7koRJeozuJ79v-msKk-8 2024-11-19 13:05:55.014+00 +q2r2bf93qpx70z9b0oq31jcp3h454oma .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tBvP8:WDEeJCwc4-rhNbv_67zmuJcmGTxsRBzOM9zwMYNsOGg 2024-11-29 12:26:26.809+00 +qd4urw1ibha16d66yv9spdbb388b66ny .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tSjhD:Eco9FMjr2_yXSWslAo3HGyH2x5z_72gRg9_NXYU3QTo 2025-01-14 21:22:35.418+00 +rap5u9n4i4d0ehr5afdeekh9q9skpkcm .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tUtoF:JteH2UBnQcs0Bfls2se2Owf-q5TItyXmp3TMFvnBr3Q 2025-01-20 20:34:47.814+00 +rmyupf2umfe5ru53b9z2obw4tx2uxvpw .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tO3qj:qhXgIrrK5QfYeM01QaRETtgytELds2QYrFF0r78ZsUM 2025-01-01 23:53:05.64+00 +s91xwflk0ugyqm10hgvng3g6xlqa29e4 .eJxVjDsOwyAQBe9CHSEwP5Myvc-All0ITiKQjF1FuXuE5CJp38y8Nwtw7CUcPW1hJXZlil1-twj4THUAekC9N46t7tsa-VD4STtfGqXX7XT_Dgr0MmrlMlBEYUh78kKD1FlmjDNhttqb5K2RSQMZh0JYhWQnVNNsk_LZOvb5AgXuOEI:1tIwcR:bVJzc5A-5PWdowpcpSwPZ2Zlb4FuCUSdiGswAeo17qM 2024-12-18 21:09:11.002+00 +swpx61u02ovlvsxiuvpok8awmr874k9v .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tOdJz:K7SLF8u2Udhpfl7CFStpj73HCS1DP025gw9fvYAEl64 2025-01-03 13:45:39.866+00 +t0zvr6tr04hrmw7nw4zrkb1bcvvz89hc .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tQXEP:mmTNYbL-F5zyXGL4vnUWR92qWv6JTRw-84UhmhduvnQ 2025-01-08 19:39:45.625+00 +jwuaeb7utn0i36dxbfndko3mut75le2c eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjd2M3ZTgtYzhlYWQ2ZDU1ZDViOTVkZDE1MjY2YjhmMmNiN2ViMTUifQ:1uzLmz:2-RaFpaFVr4uWx6WTzj6Vd70SOfLOQhcJfi6PaRtLdE 2025-10-02 21:03:37.964123+00 +tbn3u9bzkihmhhqrwod16nzt6d4u3fd1 .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tNh5C:svokPSh_JMxidu3MgMH9X6Sq8Ilmgw7w98omBVP-GMc 2024-12-31 23:34:30.751+00 +ti1e7iv7682p2jvwwx47vopae3pgr3ey .eJxVjE0OwiAYBe_C2pBCgYJL956B8P0gVQNJaVfGu2uTLnT7Zua9REzbWuLWeYkzibMI4vS7QcIH1x3QPdVbk9jquswgd0UetMtrI35eDvfvoKRevrXOZMGDUzCi0YPX7J2mjEoDe3YjhzEjE6jBZSJlJhvAIVrjEoUpJ_H-AP-0ONA:1tEU59:mc-30TOuHxzNQ02YJLeMVcYkgLo9ySLgh7-llca0XSw 2024-12-06 13:52:23.732+00 +ti1vydglp1c91u24l26vl67fuq5c84is .eJxVjEEOwiAQRe_C2pBBQKhL9z0DGWZGqRpISrsy3l2bdKHb_977L5VwXUpau8xpYnVWQR1-t4z0kLoBvmO9NU2tLvOU9abonXY9NpbnZXf_Dgr28q2dcA7BCoGzBkyOCCYO4IAIAp3IGhbLMZqjZ-8CRUCD3g5XInE5e_X-ANUvN7s:1t94C9:v60a_JbhGn7WVDn0YfeeX8rY9_ZaATG3WLhE4EOp-Ho 2024-11-21 15:13:13.606+00 +tis7csaj1ivczjjwtq0vrlqgvw87nhoh .eJxVjE0OwiAYBe_C2pBCgYJL956B8P0gVQNJaVfGu2uTLnT7Zua9REzbWuLWeYkzibMI4vS7QcIH1x3QPdVbk9jquswgd0UetMtrI35eDvfvoKRevrXOZMGDUzCi0YPX7J2mjEoDe3YjhzEjE6jBZSJlJhvAIVrjEoUpJ_H-AP-0ONA:1tEU1z:V1Mm6yZJByL6UT7mDT8icEt7BsfuyQp5a5Z50phwXfM 2024-12-06 13:49:07.85+00 +tn9s5q4uwp3d6fccj7ae6iw74qgttakn .eJxVjEEOwiAQRe_C2hAEBopL956BDMwgVUOT0q6Md7dNutDtf-_9t4i4LjWunec4kriIszj9bgnzk9sO6IHtPsk8tWUek9wVedAubxPx63q4fwcVe91qx0SoVUGrDEA2kJUOxiINIQGE4ofNKJm9A8_GWc4ctDVcrAZlUInPF-rHN9w:1t69UD:eED1qk3mcPeAztm8Da96vhaUI9c6c-JadJUbacAWhfk 2024-11-13 14:15:49.938+00 +uayf9df9x49dbnetw8j5koqb5194n3p4 .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tNheW:macP9gEYnz_wsedBbf2WndIAS5lx9URiUR1O6tb3eDU 2025-01-01 00:11:00.676+00 +ul4hk1rhcyl067rsd73zgcjymnj168w4 .eJxVjMsOwiAQRf-FtSHDG1y69xvIAKNUDSSlXRn_3TbpQrf3nHPfLOK61LgOmuNU2JlZdvrdEuYntR2UB7Z757m3ZZ4S3xV-0MGvvdDrcrh_BxVH3WqRnKSickgKvPUarbbBZPLBSC_RG2EByN2S16BCQAIJJIqTm56lA_b5AsDoNoo:1tH1BC:jF0IXyyjoyD-gFHivGJEE4EkJYvP00ygzs04urI_cTE 2024-12-13 13:37:06.051+00 +6eg44nqfneqt60zkces1l8aiofagbtrn .eJxVjDsOwjAQBe_iGlm24x-U9DmDtbve4ACypTipEHeHSCmgfTPzXiLBtpa0dV7SnMVFaGvE6XdFoAfXHeU71FuT1Oq6zCh3RR60y7Flfl4P9--gQC_fmsE6HZnATNlbRHZkyakYwBHFM6mAhj0D4oBGD9mDIR_RZ0VqwiGI9wdc2zlw:1tubah:_Yp_CHS3EiRKqXJTgfMxDRux97MhP72LA8Ej0ARwk64 2025-04-01 18:23:03.655711+00 +0xsddlpbdamwg79qv58mgcxfafi0urb8 e30:1uZvRp:O-XXWz93in0cv6UE64VN21kTuPVTCjMUv2JUVuyrkQw 2025-07-24 17:52:41.815281+00 +wa91xkbnqljbt14lyou5p6h72frfc8qb .eJxVjDsOwyAQBe9CHSEwP5Myvc-All0ITiKQjF1FuXuE5CJp38y8Nwtw7CUcPW1hJXZlil1-twj4THUAekC9N46t7tsa-VD4STtfGqXX7XT_Dgr0MmrlMlBEYUh78kKD1FlmjDNhttqb5K2RSQMZh0JYhWQnVNNsk_LZOvb5AgXuOEI:1tOeVv:zj6F9RYu138YUqDCG-b6F1nBmAgzKQ5eT-xn6PPlz60 2025-01-03 15:02:03.896+00 +wbk8zw45oxxuiyqh7ff4nl6x208xjrp1 .eJxVjEEOwiAQRe_C2pBBQKhL9z0DGWZGqRpISrsy3l2bdKHb_977L5VwXUpau8xpYnVWQR1-t4z0kLoBvmO9NU2tLvOU9abonXY9NpbnZXf_Dgr28q2dcA7BCoGzBkyOCCYO4IAIAp3IGhbLMZqjZ-8CRUCD3g5XInE5e_X-ANUvN7s:1tFcBN:7LYRz04m6jVkap2pWZATxiu5XSTpggXeZ0YZuUs5PBM 2024-12-09 16:43:29.38+00 +wkadwaajgd3ekbpf1d4r9ewjczpx7kqc .eJxVjEEOwiAQRe_C2pBBQKhL9z0DGWZGqRpISrsy3l2bdKHb_977L5VwXUpau8xpYnVWQR1-t4z0kLoBvmO9NU2tLvOU9abonXY9NpbnZXf_Dgr28q2dcA7BCoGzBkyOCCYO4IAIAp3IGhbLMZqjZ-8CRUCD3g5XInE5e_X-ANUvN7s:1t94B0:6dGrN4XAdJSigQdUmLW7C6jEX5XpEcI_gjsaOpwlMcU 2024-11-21 15:12:02.747+00 +wtmzse70uz3xf6nyso042g8r2qmbor7u .eJxVjDsOwjAQBe_iGln-rbVLSc8ZrF3bwgEUS3FSIe4OkVJA-2bmvVTibW1pG3VJU1FnZa06_Y7C-VHnnZQ7z7euc5_XZRK9K_qgQ197qc_L4f4dNB7tW4uJZClSZhAXvEUMgZmMD85CNJirFHZUg0EjDpwnLAhoiTGTAKj3B9TwNrs:1tGd17:CkY1iA8phEaeX3Ec2Zyz9c7kdMihXmJhDUaNuU-qxeY 2024-12-12 11:49:05.034+00 +x9ef26kn1twy3xwam5i3l8fuz3u902a2 .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tPlRy:mxoCZcTqttzpDIuHR2v04c7jOCh-9cS9Q4aD2AE9aV8 2025-01-06 16:38:34.334+00 +xbzdqydr11nkqerw8rex36ym4xvcl67l .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1t6CSy:Gs41zttifL_0iIlOXKDF6DOijnUsJrWHCYYQ_PD7ZOk 2024-11-13 17:26:44.28+00 +xjv9at10b75egs3upttivwavoyyznq6y .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tJDs9:s-DBB8kVJlCcuQgjFdwKndhcVlRgxaZBg3PkAnKPb9w 2024-12-19 15:34:33.349+00 +xu1faazhyz5auzvjdlu4fgqbphpx8a94 .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tGoaE:FURUkyfQ9ue3Zs-2bnk_l0IUzRpq1gS-ySVo8jpbALk 2024-12-13 00:10:06.575+00 +y0nvkwfodk5xvm4pgv3c1060nlu41bnx .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1tBAxt:ac2VQgQ5lDui-NytK3IaPKDyMOCQJ-tzNffiw0aj67c 2024-11-27 10:51:13.871+00 +y67fp9lyr18bdig5bmjsuzw37vyoh9kv .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tRtrR:Bc4GcfvQpe6nZWxsHsJ1xE2bR1M7P9Y4G1WPr8jceKo 2025-01-12 14:01:41.709+00 +yltfpez1kqx4i2vhippdqd6ogi6tpgx6 .eJxVjE0OwiAYBe_C2pBCgYJL956B8P0gVQNJaVfGu2uTLnT7Zua9REzbWuLWeYkzibMI4vS7QcIH1x3QPdVbk9jquswgd0UetMtrI35eDvfvoKRevrXOZMGDUzCi0YPX7J2mjEoDe3YjhzEjE6jBZSJlJhvAIVrjEoUpJ_H-AP-0ONA:1tFcKu:DNclC5j35oya_JNTgMHqnfpp2Iapq1fGrpCYzKdFHLw 2024-12-09 16:53:20.978+00 +zk4xd6bexp7yz81l1ijbw6474ekw5rxh .eJxVjMsOwiAQRf-FtSED5VFcuvcbCAwzUjU0Ke3K-O_apAvd3nPOfYmYtrXGrdMSpyLOQoE4_Y454YPaTso9tdsscW7rMmW5K_KgXV7nQs_L4f4d1NTrt4bgAEdEDcYwsg0KPbEl7612oLQ2VhkmLAkMkddWDYB-DOw8UeZBvD_1TTfY:1tQoww:fLQuq8EW8MesOWq2q8XVvB3ol1cCo8lEhlZltx5isB8 2025-01-09 14:34:54.662+00 +zp3dvd3lelzx5t8g195m65ehyvy9ax3d .eJxVjDsOwjAQBe_iGlnOOv5R0nMGa71e4wBypDipEHeHSCmgfTPzXiLitta4dV7ilMVZgDj9bgnpwW0H-Y7tNkua27pMSe6KPGiX1znz83K4fwcVe_3WOijwmlJg6_Jo0OvCQUMwSMAE3ipLmHh0PgykAHLKRRlnQQfUfiji_QHVYzd9:1t6rfH:6-7PPfTuBEl8K0t2Yn49pse_1CJ1x1vTek0MSPt8oMQ 2024-11-15 13:26:11.256+00 +zphm6cmzyl7nhr63q39vm6rr7np9kvus .eJxVjMsOwiAUBf-FtSEicIsu3fsNhPuoVA0kpV2Z_ntD0oVuz8yZr4ppXXJcm8xxYnVTXp1-N0z0ltIBv1J5Vk21LPOEuiv6oE0_Ksvnfrh_gZxa7llHksBwYKARmM4YgpNrcFa8ACEOl4G9IXFoyFoyAcCAgIN-GFltOwK0OKg:1tKg5v:epKeGas_WOf19uotC2OO1F6nkHpiIq7aWlyLYECz6B4 2024-12-23 15:54:47.005+00 +p0q6uc87baavg0dfy211w13skhmnidhl .eJxVjDsOwyAQBe9CHSEwP5Myvc-All0ITiKQjF1FuXuE5CJp38y8Nwtw7CUcPW1hJXZlUkp2-V0j4DPVgegB9d44trpva-RD4SftfGmUXrfT_Tso0MuolctAEYUh7ckLDVJnmTHOhNlqb5K3RiYNZBwKYRWSnVBNs03KZ-vY5wtMzzii:1taF3I:F5xMaIRzApM97_SIe3POzS41OtlgfM0OsDiguma9oeI 2025-02-04 14:16:24.176819+00 +mwiojzgyf1vk15vul0dvxfjfztblxq3q .eJxVjDsOwyAQBe9CHSEwP5Myvc-All0ITiKQjF1FuXuE5CJp38y8Nwtw7CUcPW1hJXZlUkp2-V0j4DPVgegB9d44trpva-RD4SftfGmUXrfT_Tso0MuolctAEYUh7ckLDVJnmTHOhNlqb5K3RiYNZBwKYRWSnVBNs03KZ-vY5wtMzzii:1tfKiD:NpLe-D9dzHHxX4JA1c6VamEw-Bi6FEaHvI2Kbq27p9E 2025-02-18 15:19:41.692291+00 +qhy9joj4v9k6xp4r600wap1duxmtngif .eJxVjEEOwiAQRe_C2pBCC0xduvcMZGYYpGrapLQr492VpAvd_vfef6mI-1biXmWNU1JnZaxVp9-VkB8yN5TuON8Wzcu8rRPppuiDVn1dkjwvh_t3ULCWVhMDjJIzZXaC4AF66kM_sM9jDkOwHXtjknGOvh6FznmyyCA8CECn3h9O5Di3:1tlXDP:UcftIoaT4io5FkcPmgKQTXXYztIzhlVyh5u1lQeTj78 2025-03-07 17:53:31.688891+00 +jd7xfip3vokzjrpnnsmui9mtpsairecr .eJxVjEEOwiAQRe_C2pBCC0xduvcMZGYYpGrapLQr492VpAvd_vfef6mI-1biXmWNU1JnZaxVp9-VkB8yN5TuON8Wzcu8rRPppuiDVn1dkjwvh_t3ULCWVhMDjJIzZXaC4AF66kM_sM9jDkOwHXtjknGOvh6FznmyyCA8CECn3h9O5Di3:1tnIFY:v8u2Z3_Gw9frAXV4V1T-bI93JeH1frxXa-RnEk8ncJA 2025-03-12 14:19:00.087864+00 +bxhl5oievd0tjt5sm2ffpably0smpsy6 .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1uFbX8:RgzFvpbnpg5ebClBY2xXMwLdrE9kIaNoH5x1NQywHds 2025-05-29 16:34:10.519832+00 +enfbke3em8bxeiuoxbrsmn4rq2njuu2k .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1uK411:MeRp38DwLjoM3BTi70314gZqBCvd4X6s-yN5qV8LxWw 2025-06-10 23:47:27.631538+00 +gpk3w2du57xq7a8v5ouz5mgji2ab5n9d .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1u9uhf:7GGhgGxFSjGEzNejWkyVda-WO3UbaeostkPEURPRZHE 2025-05-13 23:49:31.325914+00 +tz12rkjhaxuyatgdl4igdvwofkx58d5c .eJxVjDsOwjAQBe_iGll2ss56Kek5Q7TrDw4gR4qTCnF3iJQC2jcz76VG3tYybi0t4xTVWVnjQZ1-Z-HwSHVn8c71Nusw13WZRO-KPmjT1zmm5-Vw_w4Kt_KtCS1Bb9CJJ28HQfQkJtiYeuowO8l9CkAJDbkOZAAIDAOyCWxcZqfeHycPN8M:1uMxlr:FTEcgl-1pA5cPSHMDaJtGVv9oIG5gsZ7ZqYW_WHSFPQ 2025-06-18 23:43:47.089773+00 +bqkgthsj81dljvfwbjy6l5l765ojkr8l .eJxVjDsOgzAQBe_iOrJ2Af9SpucMaNeLA0lkSxiqKHcPSBRJOzPvvdVA2zoNWx2XYRZ1Vdhaqy6_mCk-x3w4eVC-Fx1LXpeZ9ZHo01bdFxlft7P9O5ioTvsaHKCEZHy0pkmpFTSEwq4LDUYfdgJi0Qs4BySdGNNGZiabGvaAoD5fS5g4YQ:1ubRVC:TMkOYWDktAPZUcyzNtVxcS4ygH9p6IYA0L5r1qrpJWs 2025-07-28 22:18:26.749363+00 +r2ujpgmxke3bpha6cnwtf72gud1fh954 .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1uWMqY:3PIlovj7-t-KEq4ICsCelz6iwVhqAO0OSiL6omKqj5g 2025-07-14 22:19:30.495219+00 +zltxrfy0boak0ui7md4600r3goweaivp .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1ubgY4:3aRCiZ8rzvc1IdcxM5mwdEwRmCzs6ejUFiqf39h916o 2025-07-29 14:22:24.884+00 +8phz6agqsml8zs130s23cxgq1h6a6n2z e30:1uZvVe:npbDamRTLTZZHFENkPvzZ734HkO_rfE86nV4_lT11zM 2025-07-24 17:56:38.900889+00 +3151zm4ld7zu1nj2tjownd8j1xktvaqd .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1uebCV:HidhCaEZIz066SFFTg8lnuO2NNy1yzhdyGz8ccxAibg 2025-08-06 15:16:11.061576+00 +190e3aaehe6ce36u66thcd0r0qj22ijl e30:1uhhUU:YbR-rKrcqrmaPyZTKWsWyL-kIraYt5b_vXwhevJKzrE 2025-08-15 04:35:34.686634+00 +rs1276rdpxza0rv34g3p9te9etzxq8p4 e30:1ulTCb:3HCZCbHIBeN_HM7ZWSuKGAMA18YUcZ6Dacm_0zRGXHE 2025-08-25 14:08:41.398738+00 +wbmo8q6q19vamv2s0ax88k2bpydkh9xn .eJxVjDEOwjAMRe-SGUUOsWnMyM4ZKiduSAGlUtNOiLtDpQ6w_vfef5le1qX0axvmflRzNo6CN4ffOUp6DHVjepd6m2ya6jKP0W6K3Wmz10mH52V3_w6KtPKtiSJw4gQ5YA4kAj50yMjRYyaQYyRAJD455yGCoHcps4oCd6oumfcHNiM31Q:1uo50P:XsPNyJqAuTxIfzLpUCIysrOwhcvD3I_dWYjyv5zhAyI 2025-09-01 18:54:53.497843+00 +nupbumoh7qliwoccm44ulc8j1o095zen e30:1urzOw:lbqEyG9MF6WT02xYvfL02-s-9R0VQp0ZZYnCaI9AMJo 2025-09-12 13:44:22.06885+00 +157d3hse8ri3hljls2jir1j0hxnh1wyg .eJxVjEEOwiAQRe_C2hBAQMal-56BDMwgVUOT0q6Md7dNutDte-__t4i4LjWunec4krgKbVQQp1-cMD-57Y4e2O6TzFNb5jHJPZGH7XKYiF-3o_07qNjrtgYVTLlY5V06F0rBGs2MmVVGBGIksJi0BwXe6uTAFQtcNozsyHMWny9n4jmX:1uuLz3:1n99Nd-AyLy-EU1t_Gya96-BOFo7kBg0madz1cKclzk 2025-09-19 02:15:25.383418+00 +1h1gxfy03ptopudvwlnuawdz4hdnatsa .eJxVjEEOgjAQRe_StWmYgdLWpXvPQGaYqUVNSSisjHdXEha6_e-9_zIDbWsetqrLMIk5G8BoTr8r0_jQsiO5U7nNdpzLukxsd8UetNrrLPq8HO7fQaaavzWpaxMxUktJIflGBRVFfRN6dqEj11MTOwSWSBGAIzjWSOKDV-zQvD9YNzjD:1ux9KB:NjDJ52iRl6zzizmFCJujYTknjpEE77PerLVtrH-KezE 2025-09-26 19:20:47.220992+00 +kgobxf784zvkqcbd1yt6eqlwsn8k9gcn .eJxVjMsOgyAURP-FdWMQfIDL7vsN5AKXSjWYAtqF8d-LiYt2OTNnzk4UrHlUa8KovCUDqWtKbr-tBjNhOCf7gvBcKrOEHL2uTqS61lQ9Fovz_WL_BCOksby5pExwoyV2vW1aENyh5Ey2YBgaJjraGdDY9ELWhjJmtXW07TvGJXBRuyLdMG8--aycnzPGRIadWMhY7Hn0SX0Qp4K9S3YYAwS7kOP4Aj0zSyQ:1ubK50:IjeIuXPO704Njfi_Pku5ZuMHKp_7IfQsjAPPwKcVW0M 2025-07-28 14:22:54.540112+00 +7rpefmqz75lecd2o7a4regg9gsfx543r .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1v5utu:OsP2_uyS304qyOemDj-VAruugDw1Zxq__WRrsHgalnA 2025-10-20 23:45:54.655475+00 +273ck7aodbm13b0vz4vqm0nz5txota6q .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1vFvoL:kcorDk86PyxaHZpnGbiiVZ8PDBIFLqwa8vE8hGUbj08 2025-11-17 14:45:33.749987+00 +p1btqy2s2kkfht2wvqex3ekkb7jnxp6j .eJxVjMsOwiAQRf-FtSGMHXm4dN9vIMMAUjWQlHZl_HfbpAvd3nPOfQtP61L82tPspyiuAs4oTr9rIH6muqP4oHpvkltd5inIXZEH7XJsMb1uh_t3UKiXraaog3LAkC1dOAfOOSRr0BjNCh0BITJTtJggA0e7STA4UINJLugsPl9guTla:1twe33:Jw3w7iRNE3M5c9y97vam7l_OzomLg5gp5Jq3l3v0zvA 2025-04-07 09:24:45.883247+00 +0ykhu6v3nzkj3zpn40fq9agtgdtflmbd eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeGE1YzgtYmMwZmQ3NzA3YjNhYjU4ZjhkNDkyZDJiMTUxNTQ1ZmEifQ:1v5zk8:4cGX2Ub0vrXgZKgiXLeEMBzUjKT2lOA_VrDLNZADbdo 2025-10-21 04:56:08.242179+00 +gwfla00y0adinvsdsz3zz65lfxmj2nro .eJxVjMsOwiAQRf-FtSEgz3Hp3m8gA0OlaiAp7cr479KkC93ec859s4DbWsLW8xJmYhcmtWen3zVieua6I3pgvTeeWl2XOfJd4Qft_NYov66H-3dQsJdRxzQN2WULCpyXqHwyQhuwADmqMw1mJrLKYARQNjmnDekoUZAg8op9vkEpOII:1uFv6Z:fZ8vxDdrXtphnMEG9kPT8dRJMzyg6PixqczyU0nSAKU 2025-05-30 13:28:03.570142+00 +mifas48oj4j1ie8tb4qp3qjw4d8nfnd6 .eJxVjMsOwiAQRf-FtSFAebp07zcQGGakaiAp7cr479qkC93ec859sZi2tcZt4BLnws5MSs9Ov2tO8MC2o3JP7dY59LYuc-a7wg86-LUXfF4O9--gplG_tQhWgAdQQmsCMkGCQzLonFFWSKW0kZoQShIa0SkjJwHOB7IOMdPE3h8eRjgR:1uA7bf:rWvtr2_fMH7xMYPpE8EfZMZpy8Gfe4XyKQGJBsZvaCM 2025-05-14 13:36:11.083903+00 +lma1k3ja7fsen1wiczofp22ydd3v02zf .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uWaCH:mkNOhFI20B-QoysXd7q0h61MvJ-6CAJnHcAGgxkSBNA 2025-07-15 12:34:49.596275+00 +5jeh2rnu38yzuun3313gh50ut34hv941 .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1uCQ6b:5PlWjLy6UpWbd8R_wAK-0w56_FL6pF0vAS6OlM_WS8M 2025-05-20 21:45:37.885783+00 +0qvy7rkjn9pmr8woo6dq6y2yxjvflcxy .eJxVjDsOgzAQBe_iOrJ2Af9SpucMaNeLA0lkSxiqKHcPSBRJOzPvvdVA2zoNWx2XYRZ1Vdhaqy6_mCk-x3w4eVC-Fx1LXpeZ9ZHo01bdFxlft7P9O5ioTvsaHKCEZHy0pkmpFTSEwq4LDUYfdgJi0Qs4BySdGNNGZiabGvaAoD5fS5g4YQ:1ubL6t:TzQg29mmKGcrHMWuPpgD_ZrVxFSDiIQi2Jl6etzOi0I 2025-07-28 15:28:55.236978+00 +1qszbs51x9tnupipijkwgp6d7ou3nsf5 .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1uPjp4:pvFG6lu9hSAeNN45epsbQHVaVvYxYeJHreLlCb5u4Fg 2025-06-26 15:26:34.669044+00 +8jsqv7hx8r3pshi834msei5ie2caozv7 .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1ubhyX:IJsQjVxczFdVo_GJFvRrwZgYGoc0s4Ktm4B2wupO7BQ 2025-07-29 15:53:49.240546+00 +n6i9uxdviv2dusu8iq4p96wly8b1n0gu .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1uoN5F:v36xa5EpDL-Wo7saWfvzJfNZz8VT2IaF3WUsY0epVnQ 2025-09-02 14:13:05.265208+00 +p30agt8du09htpwiveve151h09p5d9uz .eJxVjEEOgjAQRe_StWmYgdLWpXvPQGaYqUVNSSisjHdXEha6_e-9_zIDbWsetqrLMIk5G8BoTr8r0_jQsiO5U7nNdpzLukxsd8UetNrrLPq8HO7fQaaavzWpaxMxUktJIflGBRVFfRN6dqEj11MTOwSWSBGAIzjWSOKDV-zQvD9YNzjD:1ux9KB:NjDJ52iRl6zzizmFCJujYTknjpEE77PerLVtrH-KezE 2025-09-26 19:20:47.986385+00 +kf9wp9vmo4uu2cpsi9kv5ml38vpn3obb .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1us0bm:__K7z-rRWs_-yYQp4sX1im2yV4ObesZcpWY2pqR0wBQ 2025-09-12 15:01:42.190495+00 +lpfg2da1eei4cvzcicw1rrktexfm3f57 e30:1uhqqI:TLXa6FVhmPbwq1hWA-OQQkHc3Uk0OBsPkyW3ft1brGQ 2025-08-15 14:34:42.648733+00 +531twd4mljg9y7y6ussm74vezkgvy4lo eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeHdyMWktY2M5NTdjNzY2ZmM4YmM4MDUyMDYyNDE0MGQ0MWRjYzIifQ:1vAQ4o:XF5-jU0P6Eg5jvQ1Nmvf9c5fYjFHsPGYZDX8f95Wvt8 2025-11-02 09:51:46.151393+00 +45i1a1iyt33ivvnqfvemugr32p9scaxi .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1ulTzY:pOE4jJsO2ajurDaORW1Pkq3icV067xa5Z7eIYIPPJJU 2025-08-25 14:59:16.946929+00 +pp9rb2h9xcai3yb58txbmmrwstbxmsde .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1uuWfi:IERJZsAHDWNjqzebBlhei4AHiHIZFoHPsXZ3kvybMcM 2025-09-19 13:40:10.899391+00 +jsfbhp0vxk0yj1nx0qin2rw5os5uqeac e30:1uvUo0:St5-FY-BtcsVjPdQPXDLZg5wmtcPGGkmwLtukx4UB0M 2025-09-22 05:52:44.101289+00 +rw1g341gythoe2zv3vy95d82ozx59wqi .eJxVjDsOwjAQRO_iGlne9Qebkp4zWGt7gwPIkeKkQtydREoBzRTz3sxbRFqXGtfOcxyLuAgEAHH6rRPlJ7edlQe1-yTz1JZ5THJX5EG7vE2FX9fD_Tuo1Ou29pBVsNo4BwOT0Yk1Gac8a0fKDuQSYkaDwQY4E5EPCRxYMIRbFhCfLy91N1c:1vJ0GL:BfsRLy1O1vj0qaZEaFQGtDIYxkK6EEADs_LsbEqXq-g 2025-11-26 02:07:09.476479+00 +t6p5oefodjk2cs62ag0cqif5wt658hd8 .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1v2VVh:BZ31jDkXhwMnLu3OLX_USHwpqCk7zHCDb-qy6viKLMM 2025-10-11 14:02:49.430836+00 +kz6suwlae3btgwmvxfeuyz2f7lgz1kkr .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1vG0ls:et4Ywjf9HKyQBymPNdd7e4acL2J3PO5WbRen2uRUfME 2025-11-17 20:03:20.837003+00 +duyep095mzn1b8yk1gcdrkhw4efek50b .eJxVjEEOgjAQRe_StWk6QynUpXvOQGY6xaKmTSisjHcXEha6_e-9_1YjbWsatxqXcRZ1VWi6Vl1-Z6bwjPlg8qB8LzqUvC4z60PRJ616KBJft9P9O0hU016z620MTB1MsFfQQgAOhhjRWe-lsX1L6AUBnYuNoJ-YPBgjnWfqWX2-ZVI4tQ:1vI5e5:ulQPekwAfy7U3Dgz27NnpJh4wnwQMBojPWzxzg-RuBM 2025-11-23 13:39:53.697411+00 +7s8358clvynl5q0s6qo0mof6o1kffg8d .eJxVjDsOwjAQBe_iGlm24x-U9DmDtbve4ACypTipEHeHSCmgfTPzXiLBtpa0dV7SnMVFaGvE6XdFoAfXHeU71FuT1Oq6zCh3RR60y7Flfl4P9--gQC_fmsE6HZnATNlbRHZkyakYwBHFM6mAhj0D4oBGD9mDIR_RZ0VqwiGI9wdc2zlw:1txBml:WuGPmr71nXOlXzdZFAMbWRwKJvBiepVfWPCw-q6bmzQ 2025-04-08 21:26:11.256815+00 +qumwyalvgh20bfxo3ob6kn3o4tkn0xpf eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjcjE1YmwtNjdmNDkxMzJkMTc0M2YxYmZjYTUyNzM4ZGM1MzcxNTYifQ:1uNwpE:LSUUAEcKiIUKRnxaYX6cBIqrVJGdW8vuCKfHYP8EGdo 2025-06-21 16:55:20.362991+00 +2stlx5bvt69zr0emdffdeo4qnbun8v7x e30:1uGJkd:n239lOy8HTv8-tS3RFDLy2bAz5lTDQ4F_vnS0lCI3Rk 2025-05-31 15:47:03.523855+00 +j3kxm7ukbwmf3u8lo5fst6vtc7uiw2zd .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1uGkMT:0QDHLOQgkLPbkDgOmuEkyVpbmbMbZNxhAYFTem_EE2M 2025-06-01 20:11:53.128706+00 +8sw88rkpk3k3sf2s62qy7mrvnrao63pc .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1uACYA:3Znj6ZzL68zmrby-FnlooNR6h3sSsWHjmaxES4qSCUw 2025-05-14 18:52:54.356161+00 +pp5hwp9iaqz0b36xrgbsoxy5a0kwmddf .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1uWb98:oHh3drvA4lHfSW3BxbjkRGHTozLdQMXfavdhFYjTF54 2025-07-15 13:35:38.485859+00 +v820b8wf11s5b4bcuxcqn4ive9k41tny .eJxVjEsOwiAUAO_C2pAH5evSfc9AHvCUqoGktCvj3ZWkC93OTObFAu5bCXunNSyZnZkQip1-acT0oDpUvmO9NZ5a3dYl8pHww3Y-t0zPy9H-DQr2MsbRSspT8nECZ5xCo4zXiZzX0kl0WhgAstfoFEzeI4EEEtnKb56kBfb-AAfYNuo:1uCR2r:HnkGSKUgMPTRMpONJDo8T8padm71NHCjeaZWMdcuPew 2025-05-20 22:45:49.30409+00 +33zvcnrauuht3y0fc5r37s20j11z7z4o .eJxVjDsOwyAQRO9CHSGDl1_K9D4DWlgITiKQjF1FuXtsyUUiTTXvzbyZx20tfutp8TOxKxPDOLDLbx0wPlM9GD2w3huPra7LHPih8JN2PjVKr9vp_h0U7GVfj4JQZSmyiDaDphwDOA0G5AiJlLbOyuySQsCgkEhZQxiM2gPGSGSfL1jJOKs:1uKETB:1WFFxjwGfgig6g5EO7M75FmWOqeLwKto9QLXaMhm2nI 2025-06-11 10:57:13.37132+00 +vojyhzx9evmcpmdt3aofwxu1u1oq6meq .eJxVjDsOwjAQRO_iGlnxd72U9DmDZXvXOIASKZ8KcXcSKQV0o3lv5i1i2tYWt4XnOJC4CtUBistvnVN58ngweqTxPskyjes8ZHko8qSL7Cfi1-10_w5aWtq-ZrTaci65IkBH2qANJgSGANpBRcNKYyWiAoRB7amgc5Rtsga99-LzBVWyOH4:1uf0HO:sB-sHHzwto0SMFlpOQDuQFObXJ-5jjIPxkqeIKMakcU 2025-08-07 18:02:54.935831+00 +lybghnl6sbbbzq8fl5rz18p633tgi976 e30:1uZvde:qF0D0HN71tJyi0oYa4vTzzM20igix2w8lclr-TIBqro 2025-07-24 18:04:54.457305+00 +xpcvjkud3svpnt6n9uppuvmgrk94j6e8 .eJxVjEEOgjAQRe_StWko04Hi0r1nIDPTqaCmTSisjHdXEha6_e-9_zIjbes0blWXcY7mbFzrnDn9zkzy0LyzeKd8K1ZKXpeZ7a7Yg1Z7LVGfl8P9O5ioTt9afEoDN9JQGKIgRQnOK7jgEVm0JebQJgDuQTF5Yg2Dhx6hi146BPP-AHdOOPk:1uTlOo:Fogb9csUTklScvMJuNPf7XfVVaVdVm6k8pP4ZiH2CMY 2025-07-07 17:56:06.586735+00 +3t01uu5ow8wzgi3s1umsmflksjdujy3u .eJxVjEFvwjAMRv8KyhlVy5qajNt234175NjumrVKtSSAEOK_k2gc4Gi_972rcngskztmSS6w2iute7V9_nqkWWJD_IvxZ-1ojSUF3zWle9Dcfa8sy9fDfQlMmKe6HgwJgmbLQCMwvXlrjXxY08sgQN7v3nc8aBLjNfU9aQugQcBAG4wtepJyCjkUN4alSMpqf1WMRWq9TCG7s8hctb96f3IKGHFzkLRIni__a0khYgPVsFrdbneHJlWE:1uboJG:0yO1v0AzYoUJrNXnbkSCMLe6Ar-vOeXnPrjrZRt0eLk 2025-07-29 22:39:38.138478+00 +9qsdwf2r1p473pdh1s6uqk3dijnipscn .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1uxDpS:fFRWldNRDqmU7_yrjSeCfSUVkhdug8i05zZo1hxgrwA 2025-09-27 00:09:22.719991+00 +3x6nek759gr09k6d33laaxfp07z9qmp5 .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1us4PP:ujcZaNk98PqQBA9hVkTAKd-XPIutqeeTzWseyQdVZsc 2025-09-12 19:05:11.147226+00 +5xbuo5r6iu47gwyn0smtrrpgqfq853m1 .eJxVjEsOwjAMBe-SNYrq1DExS_Y9Q5U4Di2gVOpnhbg7VOoCtm9m3sv0cVuHflt07sdsLgaAzOl3TVEeWneU77HeJitTXecx2V2xB11sN2V9Xg_372CIy_CtEXyIXjy3EQixcYmLoCI3gCiKlAJDU8Rl5bMjUfGBCxC0FEiKmPcHDBc3uQ:1vJBJk:xuFC4NYvNHlxOxmKufS1VfVVO4GQNN235UAEhMhX-eg 2025-11-26 13:55:24.209859+00 +07zilugv22dsqjzvijl5a2t61bejqt5k .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1uleTs:ZtPlN5OWDaTDw7OQfV3Ux_txZ5T7zd6je54E0Vj2TfA 2025-08-26 02:11:16.088513+00 +dwklgq7l5v9yji4th2c014280qv4443v .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1uuWfk:rs0SuLqwNxZQI4IPf_oij1677Rc0jV_dMla_chyjkt4 2025-09-19 13:40:12.066662+00 +rdx4tpih3vr3cwsecjsbjau6hnb81wy0 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdnNpbWstZjIwYjEyZGIzYWFkM2FkYTk1NWEzMTY5ZTc3OTllNTYifQ:1uvUne:GCiJlFCiEIBep2W89_8TdH7e8x0TkZK5nOO8pYYoJCQ 2025-09-22 05:52:22.885279+00 +e2f951anjhj5x3n1xqk9wt3j1spw97j1 .eJxVjDsOwyAQRO9CHSFg8YJTpvcZ0PILTiKQjF1FuXtsyUWi6ea9mTdztK3FbT0tbo7sykAiu_y2nsIz1QPFB9V746HVdZk9PxR-0s6nFtPrdrp_B4V62dcIIJQQkiyaUVqryURhaDDJKsTkVVQAQwxBjuiNVJkwB6Q9kIMGzT5f92g3dQ:1uzcJ5:XeLuTfq3aaOvl-LcWNzJG3VMxlWEPKDzxHGV3lprb9E 2025-10-03 14:41:51.206515+00 +ziyuvjblrk1296owvyrct3ixy5tzxejo .eJxVjEsOgkAQBe8yazPp-TWNS_eegXTTM4IaSBhYGe-uJCx0-6rqvUzH2zp0W81LN6o5G0fUmtPvLNw_8rQzvfN0m20_T-syit0Ve9Bqr7Pm5-Vw_w4GrsO3DhECtp5RoaA2KSh6YomBnMPel5SpgC_ckBYoCTCiqhMBFSSUaN4fQXA4Rg:1vAQ60:fOjO0fB-3sKfCmvzvFNgYKNVm36Vhv7sd6Vv5zX0sG0 2025-11-02 09:53:00.614648+00 +qpx11v0rojk1ygj9ue9to7mnvuhl6fc0 e30:1vGIBW:Twg-lGasMcw4GxMb3z4bskhNIGTf4qjEJXz6zmNcLI4 2025-11-18 14:38:58.80457+00 +yszs12qfg8xdhe4swxqq4qt6xky1kuhw e30:1vITWu:bPTtRe6Lk7L_SRTXaj6-5TzkRpk0gYQ8Kja134FDYHw 2025-11-24 15:10:04.375384+00 +h4zlvg26ffykvbvgrd2yl7uahpawc9ay .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1txV9H:lI9Vugjm3gjM4Ls0cCEoQgHOSKg4Cipmw3EsCG5LaEg 2025-04-09 18:06:43.878396+00 +orge9ex4lskzcnstsi3npvka09adp2z1 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeGE1ZmktMWVlOGIxYjAyZmZkODU3ODYzMmI0NjExNWY4YjFmNzEifQ:1v5zlV:OVugRXTQy6XFdOb8Y1WjTKlORxhP2NmG1XWEF1FvFuQ 2025-10-21 04:57:33.179391+00 +oakk9o2aj88drjp0c2ahwmy5f78ih3gd .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1u5oOm:iKOjZK8E97hJUqvEL_NIp5yj76BdXWI3yfUU1UgXqZM 2025-05-02 16:17:04.569136+00 +4trm42qp409ft896ocu8d8ebg2bpngss .eJxVjMEOwiAQRP-FsyEuhQU8evcbCAtbqRpISnsy_rtt0oMeZ96beYsQ16WEtfMcpiwuAuBsxOm3ppieXHeWH7Hem0ytLvNEclfkQbu8tcyv6-H-HZTYy7ZWRAZG9sYgecABFBOi1UQ4kLZjBDTWKXBpcAl4CwicfNZgPEEk8fkCOhI33g:1uNwpP:fiywc1GnstmrcelS8GMYcXmOMbdyNSx0r_wZMc8pX_E 2025-06-21 16:55:31.326652+00 +gc3etgxobip2aze1nroo29f9ya07ui1x .eJxVjDsOwjAQBe_iGlm24x-U9DmDtbve4ACypTipEHeHSCmgfTPzXiLBtpa0dV7SnMVFaGvE6XdFoAfXHeU71FuT1Oq6zCh3RR60y7Flfl4P9--gQC_fmsE6HZnATNlbRHZkyakYwBHFM6mAhj0D4oBGD9mDIR_RZ0VqwiGI9wdc2zlw:1uGwdy:VNQdfoJMQWRF5wvT0bt3aW1Vz_PveC3dPOrCM0IvgV8 2025-06-02 09:18:46.642217+00 +0339h2c5q1wqz9u6by3uayl4wytu9qbx .eJxVjMsOwiAQRf-FtSEgz3Hp3m8gA0OlaiAp7cr479KkC93ec859s4DbWsLW8xJmYhcmtWen3zVieua6I3pgvTeeWl2XOfJd4Qft_NYov66H-3dQsJdRxzQN2WULCpyXqHwyQhuwADmqMw1mJrLKYARQNjmnDekoUZAg8op9vkEpOII:1uX1M6:rbzw68lQKBJzAI8KD-bNpnybNyWxdo0gQ4kGudcbc_s 2025-07-16 17:34:46.076064+00 +irmnc6cdvgatgavbplniz94pk4e2vkqe .eJxVjEEOwiAQRe_C2hAggIxL956BzMAgVQNJaVeNd9cmXej2v_f-JiKuS43r4DlOWVyEtkqcflfC9OS2o_zAdu8y9bbME8ldkQcd8tYzv66H-3dQcdRvbRSyVoRAKngEBxbO5AMS26JVAo8ZcwAOLqNJxqO1waViVSFDQF68PzYXOMY:1uKOsY:IKFfsP5qEq5QxbDwydzqlA5oETAZWxCAjY2YQszWsnk 2025-06-11 22:04:06.296994+00 +z4eoas2leoblwjsaodi1wdgdjbbpijuz .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1uxpb2:wlMaQfYdH2YuAEsOcXovnyineWN7bbKKH_v_fO6t5T0 2025-09-28 16:29:00.808667+00 +yr0a1dr946uvtam3trom1ia87pdn7p6z .eJxVjMsOwiAQRf-FtSGMHXm4dN9vIMMAUjWQlHZl_HfbpAvd3nPOfQtP61L82tPspyiuAs4oTr9rIH6muqP4oHpvkltd5inIXZEH7XJsMb1uh_t3UKiXraaog3LAkC1dOAfOOSRr0BjNCh0BITJTtJggA0e7STA4UINJLugsPl9guTla:1uD2cm:gkeR4JgnGptay67Eg2iPsiXWxjBGuAncS76Ur0GO5tQ 2025-05-22 14:53:24.750961+00 +42q7r5k58x2o8e2rbygdoq9guz8h1sc8 .eJxVjEEOwiAQRe_C2pAyBQou3XsGwsyAVA0kpV0Z765NutDtf-_9lwhxW0vYelrCzOIsvBnF6XfFSI9Ud8T3WG9NUqvrMqPcFXnQLq-N0_NyuH8HJfbyrZUdLEzkSI0Gs_VMpCFzHiAyJQduIpMwZrDkvfGWWIF3YDRqBIso3h89iziq:1uZvkA:i4VAguJYV5i5Stnzvct_8cl6asmgiQwrJlVIBE-bkus 2025-07-24 18:11:38.208591+00 +a4xrfn3u6vy0g8ib36l0lwba19c82gj7 .eJxVjEEOgjAQRe_StWko04Hi0r1nIDPTqaCmTSisjHdXEha6_e-9_zIjbes0blWXcY7mbFzrnDn9zkzy0LyzeKd8K1ZKXpeZ7a7Yg1Z7LVGfl8P9O5ioTt9afEoDN9JQGKIgRQnOK7jgEVm0JebQJgDuQTF5Yg2Dhx6hi146BPP-AHdOOPk:1uTlRL:okI6wZH-FesrSw5JbUMJvJjQxhLEk6Q0O1RmKBLWSdc 2025-07-07 17:58:43.345663+00 +96f9u2ytt66sm0y45724pgib9yg62ukb .eJxVjEEOgjAQRe_StWmYgdLWpXvPQGaYqUVNSSisjHdXEha6_e-9_zIDbWsetqrLMIk5G8BoTr8r0_jQsiO5U7nNdpzLukxsd8UetNrrLPq8HO7fQaaavzWpaxMxUktJIflGBRVFfRN6dqEj11MTOwSWSBGAIzjWSOKDV-zQvD9YNzjD:1uf8mG:xR2owkKZ0osFwLOvdUnbUcWrZCgNoJEmt65tiX08h58 2025-08-08 03:07:20.893144+00 +k0e8asfu0ode74au49wjfbjk62mg4mk6 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdHdxZXEtOWIyODg5YWMxYzUxMzRiNGVhNGZkNWNjYzczZGEzNTQifQ:1uiE5F:IqbrZN_TA3upT2wWA6ebaRhw4bIRR2g9w3Vslv5P9SQ 2025-08-16 15:23:41.219917+00 +8zyjxl7ynr1i0scum1v40189fm07n5n9 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1uloaU:zUXzI8BRDafoOgSW49X8WuaUa0shPpyQc4olPoogvqw 2025-08-26 12:58:46.045634+00 +eop0bubszfu8isp9caig60hqlblv4r9d e30:1uzdUq:SHdOAKfZQJK20iUscy52A9_4fAGFKQarIsT-1yLWT8Y 2025-10-03 15:58:04.853279+00 +tpg447whakzv0ewoyus40mjomiblq3lz .eJxVjMEOwiAQRP-FsyEgFKhH734DWXYXqRpISnsy_rtt0oPeJvPezFtEWJcS185znEhchNajOP22CfDJdUf0gHpvEltd5inJXZEH7fLWiF_Xw_07KNDLtgbWCJkcOGczcyLPAYkRrPEZHaczsfbBGjVs2QAr7YZMqDBYAh7F5wuISDpF:1us4jM:aVJwpBjyEgGHRBcVS7XNzD46akk8YDbBcME19Bx9oOE 2025-09-12 19:25:48.654469+00 +ornql7trtie4zeaghn8jr5o0andmlv4m .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1vAUqo:pLzGrsEuRjeuZ298v9a3kOAa4oI3m8ZUMP8IWMoy2dE 2025-11-02 14:57:38.711055+00 +4z4j3gov4heb6zw4g0lk5bdgs9pncibj .eJxVjMsOwiAQRf-FtSGMHXm4dN9vIMMAUjWQlHZl_HfbpAvd3nPOfQtP61L82tPspyiuAs4oTr9rIH6muqP4oHpvkltd5inIXZEH7XJsMb1uh_t3UKiXraaog3LAkC1dOAfOOSRr0BjNCh0BITJTtJggA0e7STA4UINJLugsPl9guTla:1uvcam:AvX1Z2RwcDdyjaLHWDTo3w5YvLu7kn0NQGoHTvEbvMU 2025-09-22 14:11:36.422222+00 +rewlaijs0h0fwppy4ok5hk6vnl783832 .eJxVjLEOAiEQRP-F2hDgBLKW9n4DWZZFTg0kx11l_He55Aptppj3Zt4i4LaWsHVewpzERWjtxem3jUhPrjtKD6z3JqnVdZmj3BV50C5vLfHrerh_BwV7GWvI2WcGqzIAETMgOZpcTATg2IDxiTI5N6E1Q_BWRTUCYeJz0jaLzxdgwjkh:1v2Xx3:ReB4s7cisArcsq_OgKlvC41sZvA8MyOA5--DiIkGL8s 2025-10-11 16:39:13.836126+00 +fi5oghhf3nmvwn7pmujnxaiklgmtpr78 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeXFxenEtZmYxYTM4ZTZlMDA4ZWRhYzJkYTdiYzY1NmIzMWQ1MjAifQ:1vGIBV:9hzj-O6BFDNydGcRIxFxFCVe5k_DINkUfPyqtuuCQGA 2025-11-18 14:38:57.391448+00 +z2aoeaqtkgvkqr0cddvvaltmtsyzrjzi .eJxVjMEOwiAQRP-FsyFAZQsevfsNZLu7SNXQpLQn47_bJj3ocea9mbdKuC4lrU3mNLK6KOusOv22A9JT6o74gfU-aZrqMo-D3hV90KZvE8vrerh_BwVb2dYAntDG3oghOmMEYyWQYwjR5WyNMAOiD12gniBQZMjOZxeZsNuy-nwBLw44qg:1vJEHK:T12SpEVJUGdN70Dk-W7NFQQFZFwVdio_w0yfF6SGgK4 2025-11-26 17:05:06.058243+00 +kxos5kcec7b8yo7j69hmn8g05a12sgi6 .eJxVjDEOAiEQRe9CbQgwMKClvWcgA4yyaiBZdivj3XWTLbT9773_EpHWpcZ18BynIk5CGxXE4XdOlB_cNlbu1G5d5t6WeUpyU-ROh7z0ws_z7v4dVBr1WztKzrI1qEiDS8UABKsZM3rQ3oUrQVCIxqLKiY_Ini347Ekzq4Ak3h8s9Teo:1vO0QZ:X1DkuJ6GDvkV_XrGaOE3nVJQI9qZptvBCFevNnlISXM 2025-12-09 21:18:23.252832+00 +dviz4vtmlhai8nastfi9vghae4dn80q6 .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1txwnE:cmQcKpGOi6u16CR5yaC3DhoscPDOJxd1O-Y6pCCTmfU 2025-04-10 23:37:48.978072+00 +e2pia1q066ehn6gh4chgkrmlxec3m6ex eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdXNvbDctZjMwN2FhMTRjMTUzOTFjYzk5MmY3YmY4NDc3ZjJjOTgifQ:1uoTrh:2FetLlWUyeMHzHZINXfH0q2Tb3x6Oyn77nGXxSZozy8 2025-09-02 21:27:33.563251+00 +2w1q6cdfjssvn96877z9t3n0g8co6ff9 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1u5oOn:M5czXlvDfgcLiDo8QFTb41GigMJSwlgAdyZ4W47-jt0 2025-05-02 16:17:05.421506+00 +jrww061qmcowow89idxhi1kc2kkuiwjb .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1uGNrp:oOsxjszZwqfVHmedI9kFK1J1gfnjsf6UZqB4K-Tz44k 2025-05-31 20:10:45.911855+00 +0h9mvwa2yb43g89op9t8htpzk1usske1 .eJxVjDsOwjAQBe_iGlm24x-U9DmDtbve4ACypTipEHeHSCmgfTPzXiLBtpa0dV7SnMVFaGvE6XdFoAfXHeU71FuT1Oq6zCh3RR60y7Flfl4P9--gQC_fmsE6HZnATNlbRHZkyakYwBHFM6mAhj0D4oBGD9mDIR_RZ0VqwiGI9wdc2zlw:1uAaaZ:4BsE2mTbQByqike6hXvMphD5f8KMlR9jZzLuMeoLGEM 2025-05-15 20:32:59.559938+00 +mcb68ljvejj3r6yyi4tj0rtbzsydz9pj .eJxVjMEOwiAQRP-FsyEuhQU8evcbCAtbqRpISnsy_rtt0oMeZ96beYsQ16WEtfMcpiwuAuBsxOm3ppieXHeWH7Hem0ytLvNEclfkQbu8tcyv6-H-HZTYy7ZWRAZG9sYgecABFBOi1UQ4kLZjBDTWKXBpcAl4CwicfNZgPEEk8fkCOhI33g:1uNwpQ:o8pzX5UweQ6RVq0TK6WjAqbj95Kp-SPoLzBjO9E2_ds 2025-06-21 16:55:32.472766+00 +ltp5xd0hmu9eqjp2l7lpqjkhuh9rvr5y .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1uH18S:QF9QegINOiH7mO-OPrT11C0zi8VfVzj1qXXJo8VAiM0 2025-06-02 14:06:32.247291+00 +bjnjnrd3yo5l3y766bk7pkr5r2d37naf .eJxVjMsOwiAQRf-FtSEgz3Hp3m8gA0OlaiAp7cr479KkC93ec859s4DbWsLW8xJmYhcmtWen3zVieua6I3pgvTeeWl2XOfJd4Qft_NYov66H-3dQsJdRxzQN2WULCpyXqHwyQhuwADmqMw1mJrLKYARQNjmnDekoUZAg8op9vkEpOII:1ufJH9:cgGm7qAob6oXP23aG-BxD8p09fVWEl8DQAdY3yFZVZs 2025-08-08 14:19:55.198004+00 +z4o30d5dtri531ne97xvn926aiosyzdi .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1uPpfH:xHdxQG1jJTIGogdS4cdSz0zmc2Sfvj0TsFGYvjNz5-8 2025-06-26 21:40:51.515593+00 +nebkiarhexubpdswqvpeyvlpc2jechqn .eJxVjEEOwiAQRe_C2hBAQMal-56BDMwgVUOT0q6Md7dNutDte-__t4i4LjWunec4krgKbVQQp1-cMD-57Y4e2O6TzFNb5jHJPZGH7XKYiF-3o_07qNjrtgYVTLlY5V06F0rBGs2MmVVGBGIksJi0BwXe6uTAFQtcNozsyHMWny9n4jmX:1uTlyw:YOVknZKhx0-6ydNrnNi0C6rpb2EjmJYHJfmqXsZJPFs 2025-07-07 18:33:26.031401+00 +47vfmv0vtgnl38fb84wm700t1eo40cyq e30:1uZwNh:FgCG9Sj-niCDhiSeIzwfTB8KRYZ49R4dDtcgrLfFwys 2025-07-24 18:52:29.443366+00 +hif12tnxa6h664vi1fvc7zd27dfzjlid .eJxVjEsOwjAMBe-SNYqS2G0CS_Y9Q2UnNi2gVOpnhbg7VOoCtm9m3sv0tK1Dvy0y92MxF-Mb15jT78yUH1J3Vu5Ub5PNU13nke2u2IMutpuKPK-H-3cw0DJ8a_KikVqEeA4-iIs-KWDkAgAYnGsZlUElQuDGYU5ekydJmJCV2Jn3BzZiN_k:1uiE5U:Eg3RYWB9BTv9lNqlq9GzEvh34P_4SxckCiTnQsrww08 2025-08-16 15:23:56.478261+00 +kvsv1yu582n9w83cdtrg54aer3d0j5vj .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1usKAe:TFCYL4bUU3H7jjORIPww7MaZmHiNHSEWXj9ulMs-Sko 2025-09-13 11:55:00.244731+00 +vqcmx8mdh6252wc0b380vysnyeuwgppy .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1ultgA:-8POI9nTW_1aQL0-DDxOhQO7xIa2-zM80KhvOzkPmKg 2025-08-26 18:24:58.556839+00 +g3pf7of3d5b75nxr9pfo0sd5ex2t3a7u .eJxVjEEOwiAQRe_C2hAoQwWX7nsGMjCDVA0kpV0Z765NutDtf-_9lwi4rSVsnZcwk7gIbcazOP3OEdOD687ojvXWZGp1XeYod0UetMupET-vh_t3ULCXb42eFTAAM6uBcPAjeKNBGZ9tzn6MGRxEHa1GZ110yRAyaD-Q0WTRifcHV0Y4eA:1uxvUE:j9CLOyTIImNxq2IoxbOaFSQjkBVSP2NvbT96bBmRxMg 2025-09-28 22:46:22.30954+00 +r94eq0c6thjg0ayp5hrq3zolcvmav935 .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uveav:CH-woL_kPFwsbFWpvO87qPqNql-W0QPcsrPejvRHteY 2025-09-22 16:19:53.267303+00 +0fmgnmqnt0u3smjhuh32bcc8omen7we0 e30:1v67R2:PexGF2DcZ8v_YvaAH-t3lDsr2lQSvcAV61-tMtyC_3c 2025-10-21 13:08:56.084987+00 +rkdjz248ntgwawok55stbeahdtpazphh .eJxVjEEOwiAQRe_C2hBAQMal-56BDMwgVUOT0q6Md7dNutDte-__t4i4LjWunec4krgKbVQQp1-cMD-57Y4e2O6TzFNb5jHJPZGH7XKYiF-3o_07qNjrtgYVTLlY5V06F0rBGs2MmVVGBGIksJi0BwXe6uTAFQtcNozsyHMWny9n4jmX:1uzf50:_mldGkTvq-FAQe4HGbcY0oQWCvIpUictCiMfHjHV_dw 2025-10-03 17:39:30.12086+00 +9wnqarr69qct0vj51jvf7ei1u2pbutp1 .eJxVjEEOwiAQRe_C2pAZKAgu3fcMzTCAVA0kpV0Z765NutDtf-_9l5hoW8u09bRMcxQXgQrF6XcNxI9UdxTvVG9NcqvrMge5K_KgXY4tpuf1cP8OCvXyrTPwYEI0AOQGFSAyo_YpIybHkE3OykXrMQXQmq2zpDWBwuAdc3Zn8f4AOck4hA:1vJEHL:U9fvxDTLXyIS6obtIodJfyDDRqBYhYRU6UpepPAmfyI 2025-11-26 17:05:07.542571+00 +0mc5im4390u7cpw2fadovwkbgwgp3euv e30:1v2Zbe:K60gygoQ_duE5YLWCDCoJGgpgU8tbCaF-9OhZu8cEpA 2025-10-11 18:25:14.334891+00 +i4t6xq568c9n8wi34iq14sr0jbakbh8l .eJxVjDEOwjAMRe-SGUUOsWnMyM4ZKiduSAGlUtNOiLtDpQ6w_vfef5le1qX0axvmflRzNo6CN4ffOUp6DHVjepd6m2ya6jKP0W6K3Wmz10mH52V3_w6KtPKtiSJw4gQ5YA4kAj50yMjRYyaQYyRAJD455yGCoHcps4oCd6oumfcHNiM31Q:1vGJfe:eehVW3LEqbR6-apEQof3NqPMHskrNvgYMcUAxQnLB7Y 2025-11-18 16:14:10.132873+00 +2o14k8yiyht2mvcowf9u8okak1p5x4jm .eJxVjEEOgjAQRe_StWk6nbEFl-45A5l2poIaSCisjHdXEha6_e-9_zI9b-vQb1WXfhRzMUBNNKffOXF-6LQzufN0m22ep3UZk90Ve9Bqu1n0eT3cv4OB6_CtET0EQkDJgCWeIXgMbasQkJGlkAZwErk4KZG8yx6IJDFm0ohNMu8PJ0U3yg:1vIpjF:p0ASvRvCw2QzanjrlFpA_4sLwXe6BXA5n0_8PlIcGkk 2025-11-25 14:52:17.886258+00 +64nynvbvbukv6lv3g6mfed7ai58l9oho .eJxVjDsOgzAQBe_iOrLWYcGYMn3OYPmzjh0QSNiQAnH3gESRtG_mzca0WUrUS6ZZJ886Ju6C3X5Xa1xP44n824yvibtpLHOy_FT4RTN_Tp6Gx-X-BaLJ8XhDowIgCgO2qhwIDIakVEpKIsBgZRMCAtVekbIYKlE3iC1CSxIq5cwRXamsKaeiQxoKzZl1G_Om0FEvMWX9IerZvn8B825GTw:1ubloy:DGJmqA74btG6yu_xFKNY5PR64kVj-qJ-rxHrsLKJXDg 2025-07-29 20:00:12.933808+00 +3mmigg5k0t2xcs76k6qclr82p272158r .eJxVjDsOwjAQBe_iGlnrn9ahpOcMlr1e4wBypDipIu5OIqWA9s3M20SI61LD2nkOYxZXoYxHcfmdU6QXt4PlZ2yPSdLUlnlM8lDkSbu8T5nft9P9O6ix171m0AVI2ciEGUpiRE-FyZAHoweHO04uRe09krUGUGWjQWVgdmbw4vMFbhY4Zg:1uc7F1:Z00CYygy2UPPTzkXyY5PNds-i0USPnsnxSQ6Gw4ulVc 2025-07-30 18:52:31.460845+00 +lpgaqeer9pmteipbc6mzwyruv0386qde .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1tyCGy:1LDEwhLZOWbvHvpXT5Ztg02jW-oZxp2dd0qJMHIei38 2025-04-11 16:09:32.311493+00 +5njo2dld0nmf948qayca4z2ulisae9ax eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdXNvbDctZjMwN2FhMTRjMTUzOTFjYzk5MmY3YmY4NDc3ZjJjOTgifQ:1uoTrh:2FetLlWUyeMHzHZINXfH0q2Tb3x6Oyn77nGXxSZozy8 2025-09-02 21:27:33.588402+00 +ttt91mxwe2l8103wqgeksua16tg7u5fb .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uOi1T:aWDBzzjZGZZnIK9uz7iaxcha7rB3NsKUVHDe2DWIf9I 2025-06-23 19:19:07.073414+00 +ab56mfyzdd4cdh3dudkzk5tv2s5v7rl2 .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1uBB5b:FzSDGTfNUeWcvwutKVFhjpIZ-yLKm0W4iIP4x_NDSBg 2025-05-17 11:31:27.654682+00 +4ejsphpviq6mnrkmlbbo3c1u08io3wnk .eJxVjDsOwyAQRO9CHSE-NmZTpvcZ0AJLcBKBZOwqyt2DJRdJNdKbN_NmDvctu73R6pbIrkwKZdjlF3sMTypHFx9Y7pWHWrZ18fxQ-Nk2PtdIr9vp_h1kbLmvlQZNZpAQJiWkNYM3gDpJK1WakMYRyAYQkcB02gMRtUpeQ1c9SPb5Ai4sOBw:1uX4be:yIULPKo6ETPdTgDYlkPdttek0ifpizglwRNFiaa-lGU 2025-07-16 21:03:02.741605+00 +jobt28uscd1lztfrslfvdkc4d68vuurj .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1uDMsG:UroujEuWSYceIATNdM6kMdD_O2T_MonyKxqyHlIzEts 2025-05-23 12:30:44.822424+00 +u96evvtxrfhycqox0vfm2f26jrael16e .eJxVjDkOwjAUBe_iGln-eMGmpOcM1l9sEkCxFCcV4u4QKQW0b2beS2VclyGvvcx5FHVWYKxXh9-ZkB9l2pjccbo1zW1a5pH0puiddn1tUp6X3f07GLAP3_rosLJIRE4OAxCABbaA1SQSR6EgsXhK4WRcrMEhkU-psCkRiBKq9wd7vjmn:1uKWMy:jNvocnY0NsI60_8ROp405IOfPTDpsmovxyWaedCQfFc 2025-06-12 06:04:00.285714+00 +dosyzhm49mh8ihs2b4lmi27od51g51xt .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1uQoOg:JCRBhxxUvQScRpQqzPgL3Bqd6J1NIR1WLGAhbNSO28M 2025-06-29 14:31:46.006932+00 +d5b2gnrfh36jo5gi071uhni2j7j4x2xc .eJxVjEEOwiAQRe_C2hAoQwWX7nsGMjCDVA0kpV0Z765NutDtf-_9lwi4rSVsnZcwk7gIbcazOP3OEdOD687ojvXWZGp1XeYod0UetMupET-vh_t3ULCXb42eFTAAM6uBcPAjeKNBGZ9tzn6MGRxEHa1GZ110yRAyaD-Q0WTRifcHV0Y4eA:1ucBZ0:38DBZArP45_9CJc6ERp43QRMMUa6QMhsUrIiFJZuobI 2025-07-30 23:29:26.666665+00 +e1dk78f50dqcxcfqey4z1rc4xedih3d4 .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1uTmQN:oVh71HJes7hS9nC0NkPXunwykAxkI8oFXWb7HidGB1U 2025-07-07 19:01:47.470994+00 +qpiyu3eww9tjtaiq7194bplb1wfzcgi7 e30:1usOow:igItORIhdI7gerRDtII9prs0z9mn-OmAHH0z66wLGT4 2025-09-13 16:52:54.821047+00 +p15jzo1gau19utva6d42eeijuomhwbr2 .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1uiPF9:Q1g2TGQiTSATeIKLJ5vfyOFYd8-HMqXVjY1j2HJMZ7M 2025-08-17 03:18:39.333914+00 +0vys7srqmrvi69e30zxuds7fqlr4cgo0 .eJxVjDEOwjAMRe-SGUUOsWnMyM4ZKiduSAGlUtNOiLtDpQ6w_vfef5le1qX0axvmflRzNo6CN4ffOUp6DHVjepd6m2ya6jKP0W6K3Wmz10mH52V3_w6KtPKtiSJw4gQ5YA4kAj50yMjRYyaQYyRAJD455yGCoHcps4oCd6oumfcHNiM31Q:1v6AIu:blODW65c8sRsfEHr7aKRslkCwCQsPcb_0Ev_bYfKt74 2025-10-21 16:12:44.07593+00 +90kc4dxc5s9hotkzecxrl0ea0wq1qogo .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1uvyEj:U61CQtrt1EPJLX1YTpxwRComM3aMqCBtyHk-xexiK-A 2025-09-23 13:18:17.407944+00 +9pjpjtl3nejotcy880ik81fcspv6s7si .eJxVjEEOwiAQRe_C2pAZKAgu3fcMzTCAVA0kpV0Z765NutDtf-_9l5hoW8u09bRMcxQXgQrF6XcNxI9UdxTvVG9NcqvrMge5K_KgXY4tpuf1cP8OCvXyrTPwYEI0AOQGFSAyo_YpIybHkE3OykXrMQXQmq2zpDWBwuAdc3Zn8f4AOck4hA:1vJGAp:ZJb2jX14UDrt0qmYWQJnxvFq5fqby5pWqgWBCNxIbOo 2025-11-26 19:06:31.309042+00 +lqryzrcfgi4uuivgbcqvzn507lx117wk .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1uzgFa:bq7-3qnBxWbkTA0i0bNIvS7yR5TIln92TuVhynKjdtM 2025-10-03 18:54:30.282809+00 +mp41hw1m9fgofbc3qz93790n8vsvajbk .eJxVjMsOwiAQRf-FtSEgz3Hp3m8gA0OlaiAp7cr479KkC93ec859s4DbWsLW8xJmYhcmtWen3zVieua6I3pgvTeeWl2XOfJd4Qft_NYov66H-3dQsJdRxzQN2WULCpyXqHwyQhuwADmqMw1mJrLKYARQNjmnDekoUZAg8op9vkEpOII:1vGK8l:aUjTwyFOM_SMo4EDjh-oQEiw1Uy_9qb9KkttZ5nDox4 2025-11-18 16:44:15.668637+00 +kvt3g24yeckokkhhu0uqdua6bshnnikj .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1tyD0V:siZOtZSDSs9G8QDhampeueeYg1N6O6wW35LqtRE4q1o 2025-04-11 16:56:35.983692+00 +yfzc65ehmziwp92oedx30x2s5ap2z04w .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1u6ph3:S2MGLG795LEm8NrFWEiay38BzMRAM4RESXQTsajPHOU 2025-05-05 11:52:09.430325+00 +inzk3rwrd51qyhpbdkn69qnxaxuvzmty .eJxVjMsOwiAQRf-FtSGAQ2Fcuu83EB4zUjU0Ke3K-O_apAvd3nPOfYkQt7WGrdMSpiIuwg9KnH7XFPOD2o7KPbbbLPPc1mVKclfkQbsc50LP6-H-HdTY67eGmJhAE6iByVmD6Kw_owZCXbK1DM57BUYx6WyM0qxLcoTeUmJ0Rbw_IDo3-w:1uH37C:fsX8cArOQ1PiVmA_SO6uN4vhi4mDRhG04arOn32kRqg 2025-06-02 16:13:22.45173+00 +5mwvtvgtyrigtf1jdrwaa2kgn1bhymfi .eJxVjMsOgjAQRf-la9OUtsxYl-75hmYeRVADCYWV8d-VhIVu7znnvkymbR3yVsuSRzUX00Q0p9-VSR5l2pHeabrNVuZpXUa2u2IPWm03a3leD_fvYKA6fGsq2hMzN8oNqAvOQwitcsIeoiB6UO8xiUh0GoJzqRU8RwboMUUP5v0BSok4CQ:1uBDRM:G3xGshwq8wCRzhNWXqDIHt025SvUvovE4KS1QvrF4TI 2025-05-17 14:02:04.544565+00 +k3sqdud3gpfn5k0uj8l81xhakw9dc8o8 .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1uOmhg:0ROFMsIYzPx3jTwsCITMR6uku50YUKffSAZFog89sK4 2025-06-24 00:19:00.846171+00 +grkonw5dgbketd0ikfpk0hslaozkbp9a .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uDQvy:sRyzMK4A-vlepNN_AWxNvtAu5ilh6ewGu6kaOFGsXMY 2025-05-23 16:50:50.447781+00 +cqlheajyd4tsodhbf2so72m869x6kwn7 .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1uKill:ndqqcOC8_tjSBaJ2WrksMoNzH8OjRV6QbG4XgNJo5oM 2025-06-12 19:18:25.939672+00 +uea5w60vr8xjehut317a83ed5f1tozji .eJxVjDEOwjAMRe-SGUVOaieFkZ0zRHac0gJqpaadEHdHkTrA-t97_20S79uY9lrWNKm5GIeI5vQ7C-dnmRvTB8_3xeZl3tZJbFPsQau9LVpe18P9Oxi5jq1GDT15QnWRh9wJR0cUfQSUQXI--15C8BkIyHcigAhaQJnEQVEwny9KKzhF:1ufJTO:VNHJpBEhzglVcg9KqYKi3j0kebgtQ4Svpnq4eS7Zltk 2025-08-08 14:32:34.320435+00 +gthvkj7hpg7hyhtbynggpaueng9pxk9e e30:1uQwRM:kMR8KUC7KcTeW2G3WbOgSIme8SmeildX2aa649gxpGE 2025-06-29 23:07:04.809056+00 +1jorvlc96yeu9uto32yji3nic1jedmj3 .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uXJF0:N9nuOkaMukox1SR8a6VXy7B2c0stLxrblEqMCZPBVrg 2025-07-17 12:40:38.515626+00 +8kq5nyjr32dn32ceobbwehzs3506myu0 .eJxVjEEOwiAQRe_C2hBAQMal-56BDMwgVUOT0q6Md7dNutDte-__t4i4LjWunec4krgKbVQQp1-cMD-57Y4e2O6TzFNb5jHJPZGH7XKYiF-3o_07qNjrtgYVTLlY5V06F0rBGs2MmVVGBGIksJi0BwXe6uTAFQtcNozsyHMWny9n4jmX:1uTmRe:ts5k6FDlZuZVWSbIGFJRSmxs5nixaa007WDMiBbDqow 2025-07-07 19:03:06.028742+00 +2054yg2davnajl9yq4g5oro8etoit0t9 .eJxVjEsOgzAMBe-SdRVhYifQZfecAdk4KbRVIvFZVb17QWLRbt_MvLfpeVvHflvi3E9qrgY8eHP5nYWHZ8wH0wfne7FDyes8iT0Ue9LFdkXj63a6fwcjL-NeU4ORCLEFoBRcCOKFAqu2WleQtN5ZUzFyDCqkg2AgdJJEHSCgM58vOYs4Cw:1uoTsC:u6yotDumn9bscoRSzmv2XgQooJ5Dk-66Rm6mIXRNa8s 2025-09-02 21:28:04.046142+00 +sixs1abejnl0jxgg4sa9ab8oe6z5evky .eJxVjMsOwiAQRf-FtSFQ3i7d-w1kYAapGkhKuzL-uzbpQrf3nHNfLMK21rgNWuKM7MxM0Oz0uybID2o7wju0W-e5t3WZE98VftDBrx3peTncv4MKo35rMB5AJNK6KCUEOjcpX8BqkQPZglKLFCgnlJImJIteGRMwK0dGWHDs_QE_kzib:1uZwUs:lEsPCotYLI33QWQz-4xB6pCK7vB049nIA_K57t4NS84 2025-07-24 18:59:54.037293+00 +0n911vfwy5aglgtehjkeqmvzy3gtbtuu .eJxVjMEOgyAQRP-Fc2NABbXH3vsNZNldK63RFNCkMf57MfHQHmfmzduEhSUNdokcrCdxFUq14vLbOsAXT8dET5gec4HzlIJ3xYEU5xqL-0w83k72TzBAHI43OFPWBhuFjppWspZAvZaIlSPqKtehqhCwaanW0hlGA2VX922PqmPNWbpyWn30yfZ-TByiuG5Zmzjb0-Cj_TCEjL1zhpFjhIkCiH3_AnKaTaM:1uiuUp:ezNllJA1ptEEdxXZjiYj7tE1oSznrwjWEZHFE7oweVk 2025-08-18 12:40:55.56056+00 +s2zub7m8x61jrmnuysc84muxi10yqe1r .eJxVjDEOwjAMRe-SGUUOsWnMyM4ZKiduSAGlUtNOiLtDpQ6w_vfef5le1qX0axvmflRzNo6CN4ffOUp6DHVjepd6m2ya6jKP0W6K3Wmz10mH52V3_w6KtPKtiSJw4gQ5YA4kAj50yMjRYyaQYyRAJD455yGCoHcps4oCd6oumfcHNiM31Q:1uy82E:NWM0FHFzP_rFXmkAf3PwZBY_m9YUFaaIil40BLJ4KP8 2025-09-29 12:10:18.748388+00 +ayk2keb2kdt8igs7tu8u9rpf717ly7cr .eJxVjDsOwjAQBe_iGlm2bO-Hkp4zRGuvgwMokfKpEHeHSCmgfTPzXqaTbW3dttS5G9ScjY-M5vQ7ZymPOu5M7zLeJlumcZ2HbHfFHnSx10nr83K4fwdNlvatIQm4QBhUelJJMYIyZ6RQoCpqTxjZKYv3QEAlRYfsOKAAZQjJvD9GHjeG:1v6Azv:UfLoMO6MnTWfk0Kz-tmSFSK9jedsJU04OBQLkcPk_H0 2025-10-21 16:57:11.687573+00 +tm5ed8erwhtijfw53nronds9sf2ihyd9 .eJxVjDsOwjAQBe_iGlnZ-LuU9JzBWnttHECxFCcV4u4QKQW0b2beSwTa1hq2npcwsTgLUNaK0-8cKT3yvDO-03xrMrV5XaYod0UetMtr4_y8HO7fQaVev3UaE7uo0QIrnUblTSJlfPGMCAMSxGKArGNkX4ql0WM04DQ4VGooUbw_Uv44Jg:1vJVQE:qgkPgT5hU4iXwVHrlHeKqj2Sgi58-urf_YUEj1-eGZU 2025-11-27 11:23:26.360881+00 +at9mmm4pqxgf12rbc72chkofip5yhxhb .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1uvyob:GrY8egVyWOtzRknB16GmXYIX_n8jJUxONFVXyawVHTg 2025-09-23 13:55:21.770022+00 +wojhlivi47u0irx0nkpd81c6qkuqikq5 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjd3Q0ZW0tYmIxZGE0YzA5ZWQ4Mjk1OTBiMDU5NDkwOTFkM2U3ODIifQ:1v2f5m:E694-nMfv9qXr2UmT8T38AdSNL4Y5A6FbyKL10O2Y54 2025-10-12 00:16:42.060886+00 +gwgduw2ggx4n7ng723t17jh77xmi4spm .eJxVjDEOwjAMRe-SGUUOsWnMyM4ZKiduSAGlUtNOiLtDpQ6w_vfef5le1qX0axvmflRzNo6CN4ffOUp6DHVjepd6m2ya6jKP0W6K3Wmz10mH52V3_w6KtPKtiSJw4gQ5YA4kAj50yMjRYyaQYyRAJD455yGCoHcps4oCd6oumfcHNiM31Q:1vBEzY:jbx6LhM_SRLCS7PYvGgop5YuGDX_y210WOGBNkzL4VA 2025-11-04 16:13:44.945144+00 +8hriugo5oeaq7z01p7f1vviswwpvfn8a .eJxVjDsOwjAQBe_iGlle-aM1JT1nsOz1Lg6gWIqTCnF3iJQC2jcz76VS3taWtsFLmqo6K7BOnX7XkunB847qPc-3rqnP6zIVvSv6oENfe-Xn5XD_Dloe7VsLSSDrMXigAkBoMBAyeEGpXAIZqhBttc6iR0chkpESHXMRARb1_gBCQjk_:1vIx46:yAVDsuk9W4DUEMHj2S0TzPkrICLK5WFMh4sq96Eq9Nw 2025-11-25 22:42:18.323257+00 +8utlfneon3walhjyvtpyzti5maztn7b1 .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1tyYFB:JLImvmxDqWQ-BVJ_Pfp1tpU21d0N2wuMaMN4j3voek0 2025-04-12 15:37:09.393099+00 +gbocle8a8ruo217fwqar6ne3py7w2bg3 .eJxVjEsOwjAMBe-SNYrqmiQNS_Y9Q2THDimgVupnhbg7VOoCtm9m3ssk2taatkXnNIi5GAAwp9-VKT903JHcabxNNk_jOg9sd8UedLH9JPq8Hu7fQaWlfusciubiKLuisWFAwAxAELzz7Fo4B_ZeWdChhKbpsA1RqNMYi2DLaN4fOWQ4MQ:1u6q5w:d7JKXw6ENDnVQRjBAksq4EnlH9syK4-fmbwveqS-4LI 2025-05-05 12:17:52.373994+00 +1xlku27ayjf35o4mmvm663o0ddyjbr51 .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uXNiH:IkLNGdghYa54p_-8zMA4ho43fOznnwkjUwjuFOxfpN4 2025-07-17 17:27:09.445859+00 +937f6iqv3ppzqpn7yndz1gs0vukqb57w .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1uBwHQ:quqb0cSq-BtmxpYcnGJvO4wST7Kup4prIjK4Rm5Uuyg 2025-05-19 13:54:48.026905+00 +eb2p7vxrn2ad2lq7fx4xecchkmr6up4h eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjcmdmdXotZjIxM2ZmMzFiYWZhMGNiYTBiMmE3OTMzNWUwNTk2NjYifQ:1uQwRD:KanSsqTf3qFgpxE9i99iQvZqEYVmmbIrNZKHmx6nK78 2025-06-29 23:06:55.565802+00 +2mtkjeedifv169fx42t5y04gahm9b01r .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1uDjyx:M92--nZ3SeZIIFm49v4xBDXF3c841qNNQY-_dCJDhpE 2025-05-24 13:11:11.90046+00 +ikd0cjd7w2r3c5xmb31y1hwww43yaq5l .eJxVjMEOwiAQBf-FsyFQoIBH7_0GssuCVA1NSnsy_rsl6UGvM_PemwXYtxL2ltYwE7syKZ1il1-MEJ-pdkcPqPeFx6Vu64y8J_y0jU8LpdftbP8OCrTS144smQGlEV6THQfrHQjUySYrctRSKX9QMxoBQhr0zh9IobJa5OyAfb4tuDco:1ucWnQ:eAdrwcavBFAab2LlRDdobNMNGoQJyBVJWupXbC5LCuA 2025-07-31 22:09:44.68565+00 +1rr5cu81dlc2to5vu8p5r8qa7p0ch6l4 .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1uTrUO:uLD8SqiCG_0NBUF_QL8t4zXk4BUKZe4ArBn_ua-SSOo 2025-07-08 00:26:16.700766+00 +oyv52c13vfmtbrhm3difw5vfs7ley9gp .eJxVjMsOgjAQRf-la9OUtsxYl-75hmYeRVADCYWV8d-VhIVu7znnvkymbR3yVsuSRzUX00Q0p9-VSR5l2pHeabrNVuZpXUa2u2IPWm03a3leD_fvYKA6fGsq2hMzN8oNqAvOQwitcsIeoiB6UO8xiUh0GoJzqRU8RwboMUUP5v0BSok4CQ:1uaGts:_zl_RwH1MHdnfwCeYxMjm9LI0qlMWnYDmVkjFmg6JdI 2025-07-25 16:47:04.607587+00 +lsqzpuc0m67l8ip4b5047tfk4d1ezr9i .eJxVjDsOwjAQBe_iGlm24x-U9DmDtbve4ACypTipEHeHSCmgfTPzXiLBtpa0dV7SnMVFaGvE6XdFoAfXHeU71FuT1Oq6zCh3RR60y7Flfl4P9--gQC_fmsE6HZnATNlbRHZkyakYwBHFM6mAhj0D4oBGD9mDIR_RZ0VqwiGI9wdc2zlw:1ufKDJ:CeFQPA54jHs_6QdyGkMlilDAYoIQu06C5u0N-5rVvwU 2025-08-08 15:20:01.960971+00 +dtsf8z9pifibty66fprkmmqo80yu1jhm e30:1vJhco:kE6X5m_HXyEGIx-qiQrpTxQKroHBYyXTunmCd7zpDQY 2025-11-28 00:25:14.95976+00 +3exeug77ysvyt34uxlamm8w1xplm5n7c .eJxVjDsOwjAQBe_iGlm2bO-Hkp4zRGuvgwMokfKpEHeHSCmgfTPzXqaTbW3dttS5G9ScjY-M5vQ7ZymPOu5M7zLeJlumcZ2HbHfFHnSx10nr83K4fwdNlvatIQm4QBhUelJJMYIyZ6RQoCpqTxjZKYv3QEAlRYfsOKAAZQjJvD9GHjeG:1v6Azw:pd5VPA7d7cXW1lhKSpHmo7i-QWLkMs3ndVBPfxmU9Ds 2025-10-21 16:57:12.492634+00 +yaxekcesn2g5m5pxkz7l0fbp47ldoj3n .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1ulxDW:X8xjW_bde_7YnRAg1VXeyBiDfMpWgbfI4cF_3-_UTlQ 2025-08-26 22:11:38.215627+00 +j856pw1pczhveila5ytanfty8vu6sq3n .eJxVjMEOwiAQRP-FsyEFFtz16N1vINuFStXQpLQn47_bJj3oaZJ5b-atIq9LiWvLcxyTuqhgnDr9tj3LM9cdpQfX-6Rlqss89npX9EGbvk0pv66H-3dQuJVtnQHIdJtvEqAl9kzO05YD-fMg4kPosEcBNtg5J0DCFq0ADggmZ_X5AiCaN-w:1uzgYb:TlJqapP5PZr19eJjwRbojf1mkDCXoYvmTK0KhOwBZT8 2025-10-03 19:14:09.716199+00 +67msr647k9acyfrps555lf44n275htc4 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeXIybzEtYzEyODE5ZjRjNjcyZmFiMjk0ZTk1Y2ZhMmI0MTk1ZWEifQ:1vGM88:3u4bJTw_R13_gzsfFyQZhhg6cGK2P15Vq73Pg9KV2T4 2025-11-18 18:51:44.733058+00 +opsxrddipd6jccbnqqnzgortzkw91fdl eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdmQ0NzgtMmY2NDQzMmIxNTE2ZjI4ODk4M2UyOGIwMTJjMGYxYzMifQ:1usTse:P2Jr7kyUAFlnMqoVAk8C1VjZ5IMWOnlBaAw80FZ8Ai8 2025-09-13 22:17:04.574119+00 +xva7mepqnkt0h83jv7bhlesdvio7sdi3 .eJxVjDEOwjAMRe-SGUUOsWnMyM4ZKiduSAGlUtNOiLtDpQ6w_vfef5le1qX0axvmflRzNo6CN4ffOUp6DHVjepd6m2ya6jKP0W6K3Wmz10mH52V3_w6KtPKtiSJw4gQ5YA4kAj50yMjRYyaQYyRAJD455yGCoHcps4oCd6oumfcHNiM31Q:1uw0nc:BSpx46_-tNd6wwrjqE13yJ3SgwUPq2Bqc-mbhyuPGcM 2025-09-23 16:02:28.660674+00 +y50l3n8ibgw663ui966k49csdnmvw526 .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1tyie6:-I4LLY0RqEejG4OcgVw1vba_bvg40U3TMOjnGe95u2Y 2025-04-13 02:43:34.3972+00 +ycs2zokybambn5cm6f4ta4h5nha53pfk .eJxVjMsOgyAUBf-FdUN4KEKX3fcbyAUuhWo0EbQL479XExft9syc2YiFpSa7FJxtDuROOGfk9rs68D2OJwpvGF8T9dNY5-zoqdCLFvqcAg6Py_0LJCjpeEvDhJbeGVRdaFrQMqKRwrTgBXqhFVMeHDadNtwzIYILkbWdEtKA1Dwe0RXrmkuuNuah4lzIfSMBKh71mnKxH8Se7PsX_15GeA:1ubJyw:M32SRzxPhPb9COWIfPEvDzj-SqRCaW9VMhEE4dXQQ7U 2025-07-28 14:16:38.507708+00 +71rnlbkrd42m5newa3v05e9fx2gkgmsu .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1u6wMC:w9DKhAFZi1_Le1bKc8jj7gMqN6KjZ66Dj87fSAz2i5M 2025-05-05 18:59:04.170797+00 +r8e0wvmulva8scmn2ndygpk0it1lzl88 .eJxVjEEOwiAQRe_C2pChdARcuvcMZJgBqZo2Ke3KeHfbpAvdvvf-f6tI61Lj2vIcB1EX5QHU6Zcm4mcedyUPGu-T5mlc5iHpPdGHbfo2SX5dj_bvoFKr27qwExaPDsEQhp57G5IEEyxaNEjJsjiAUjKULtszddbDRn3P6ExA9fkCKy831w:1uH3AO:VDMyz5l_EBMGsPVVFwf1K0uLheRl4SPgYDH_xjJzfTw 2025-06-02 16:16:40.970038+00 +m4495362ubuwpof471q7kntqfvzgjfg7 .eJxVjEsOwjAMBe-SNYrqmiQNS_Y9Q2THDimgVupnhbg7VOoCtm9m3ssk2taatkXnNIi5GAAwp9-VKT903JHcabxNNk_jOg9sd8UedLH9JPq8Hu7fQaWlfusciubiKLuisWFAwAxAELzz7Fo4B_ZeWdChhKbpsA1RqNMYi2DLaN4fOWQ4MQ:1uBxtD:KW1WzG1c5LhnTdetyDAYcHe64B1TV8Oj8M_k4Rcwmlo 2025-05-19 15:37:55.889799+00 +hstkc3ilymiy6sn3eb6pykg85aw95wba eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjcWx5ZTgtZDVjMGQ5MTMwOGY0YjY5NmM4ZTczNmM4ZDQxZWUwNTYifQ:1uKyQv:sM0UH1CU7c4ZoqjzmgVk0wBtYC6Sk2spZ4sh_EuU0fw 2025-06-13 12:01:57.427569+00 +my3g9lldaiz4v9ius9vd6s13yasucb6h .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1uE8NV:iR72Re8KL8-1Ai7u5ZaOPIgM50weoDwzStVHpiVApso 2025-05-25 15:14:09.168779+00 +t70moje8x06hn6pfgzv1cybp3878nwm8 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1uOzIo:ryK8_HWQyGBsrAxazSqfiZqrelH6X6vpkYjXlD4jTkg 2025-06-24 13:46:10.046429+00 +8rr1qm0usvqkoiknxl4c22ujp8fwbk41 .eJxVjEEOwiAQRe_C2hCgUsCle89AhplBqgaS0q6Md7dNutDte-__t4iwLiWunec4kbgIPRhx-qUJ8Ml1V_SAem8SW13mKck9kYft8taIX9ej_Tso0Mu2zok9W_SWgiNNg8PEmGzmQbsMQW2UR7IqW_Ceg9FWq3MGoxgoEI7i8wViADlq:1uoUYI:eGHhkQzXCnM0p2PIMfQKf77HGHZTHobXKQUWe2Sk3bE 2025-09-02 22:11:34.598509+00 +i5b3y694st3f67e0blz0zaxt9x61h0dy .eJxVjEsOAiEQBe_C2hA-DahL956BQHcjowaSYWZlvLtOMgvdvqp6LxHTutS4Dp7jROIsdAggDr9zTvjgtjG6p3brEntb5inLTZE7HfLaiZ-X3f07qGnUb12082CBuCAdmR2yC5mtsVCgqJxY6WBOjJ5AKw0eDKH2hMUr4xOSeH8AdBo5JA:1v6HMv:4DQFz3pnbqx1Wrja6O0RW13dcQLUve3LazS4Y3JhSok 2025-10-21 23:45:21.601105+00 +vinerau0uyjwb4x9movh1zj3cdc2ws8m e30:1ufL99:cHdpJHnu4_XzhcnOeUQDwaFbAQhczKT5_mr_Ni8NN74 2025-08-08 16:19:47.947661+00 +on3gcru0hpu2a0p06sjne8v57515yylm .eJxVjMsOwiAQRf-FtSEw5enSvd9ABgakaiAp7cr479qkC93ec859sYDbWsM28hJmYmcmrQR2-p0jpkduO6M7tlvnqbd1mSPfFX7Qwa-d8vNyuH8HFUf91nGKgADeEJgCHqwn8joV0iqCVTmRQJHLJJyLWLQyQk3opTbWOkQN7P0BVaU4PQ:1usTtX:vxqpRS-jG8ieUl1SHlh2Eom2WU0JOAcH5PoeocyMxww 2025-09-13 22:17:59.567199+00 +l7lurbq4skiystcchz2hs73wtlztd4uz eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdzZqd3ctN2M1ZTI3ZTQ1MzJjMThjYmUzM2I0Y2M1ODhhMzBjNTEifQ:1uyFA1:PKlNvZU7b-L-rqrxl7LQBhjJT04ha6dCX6K-qq9tjMo 2025-09-29 19:46:49.831229+00 +qt9n2y6eqdxhhdglfawyp3lo19ukst35 e30:1vJiXf:X6QBH5GeFIOwcROI9gWrZqsKV7w7d5f5zBKWQq8YRWY 2025-11-28 01:23:59.004843+00 +l23zpxi1earrz2fv1lu0naxkmrzgrvu6 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1uU4MW:sZanI082T9uEXQWQQGVDOkGFWon8kTFSVrmy8U0KEUk 2025-07-08 14:11:00.663389+00 +sx7hosj5011ls5euc4toutbuf579wqwl e30:1v00bp:9YucbRd3Z2kK8uitryVYB1H63z3mTr1edFqHwUCWp2s 2025-10-04 16:38:49.352764+00 +jpabqq3p17febp4jrdf48dslf84ojv5k .eJxVjMEOwiAQRP-FsyF0Fyjx6N1vILssStXQpLQn479Lkx70MpnMm5m3irStJW4tL3ESdVaDA1Cn35gpPXPdmTyo3med5rouE-u9og_a9HWW_Loc3b-DQq30tUV05MmxR9c9jHAT432yIHYQNg4TAIu34AImY43BLoHQB2Yes_p8ARw4NyA:1uizCK:Nx9u_npOLepI4NmFqjznT3PQlpi7BMAyKpddepMiB8s 2025-08-18 17:42:08.660487+00 +botmhrajl0ouccn1wql5d8ub6efilwze .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1ucokw:7FvuGUzGLxuSK4EF3TOb7TfwGFm-IJnFRM_ByBrnacY 2025-08-01 17:20:22.575689+00 +ytjxd14ppr1yklew39libdt1jagmr3wa .eJxVjEEOgjAQRe_StWmYgdLWpXvPQGaYqUVNSSisjHdXEha6_e-9_zIDbWsetqrLMIk5G8BoTr8r0_jQsiO5U7nNdpzLukxsd8UetNrrLPq8HO7fQaaavzWpaxMxUktJIflGBRVFfRN6dqEj11MTOwSWSBGAIzjWSOKDV-zQvD9YNzjD:1um5E7:5vT9aXf4_PZVIdKo7vRhalf7uZo94KLroz-zfzbPz4o 2025-08-27 06:44:47.705654+00 +xmmt8q95562mq0uzhttphth9sfhks6at .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1tzMrz:Xko3fzQz_beTZLqo_69g-UIfRGKurLfERvZYl2NHjTQ 2025-04-14 21:40:35.856169+00 +pn0cbqzkkxmkaa0g3f5p6jxkngrkitfp eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdzZqdGMtMTI4M2I4ZjZkNmFhM2E1MmJiMmNlOTY4ZjNkN2NlODAifQ:1uyF7u:b5Pwp8evI80Vq83WBi7ugICNbr8e7_VG2If5mUtP5vQ 2025-09-29 19:44:38.668294+00 +z65b7ocncihj491d354wan59gkj68y4u .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1uOzJ8:33JwOGPV2CFzw0gomElK73bB1JOQGjr2L16jDbqIt_M 2025-06-24 13:46:30.357801+00 +zgybn4ady2ozhrqdiq3wjojne9bw65k2 .eJxVjMsOwiAQRf-FtSE8JhRcuvcbyAwDUjWQlHZl_Hdt0oVu7znnvkTEba1xG3mJM4uz0AqsOP3OhOmR2874ju3WZeptXWaSuyIPOuS1c35eDvfvoOKo3zqhYVBBWaBJWXaaUoCpaDIOVQrB21yKd5gNeqScggJmKAwAWpM34v0BVXs4vA:1uKyRQ:oetClyz24lktwMWQpLdacD6q-hi4B9yCrfPqUFffPus 2025-06-13 12:02:28.303615+00 +gyr68warilinty1vxdfre02af33jo6fc .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uXNnW:xSsuTtvw1lGabp4OrJfEwPhkVJXpIs2bA9fObBGr49M 2025-07-17 17:32:34.909822+00 +bapt0w0b3blonvzblnngj627767dm841 .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uRDxh:owNrE-e91YB7NWemHT7Ihtr1r5tr304do7_6-V2IFWk 2025-06-30 17:49:37.644522+00 +1yquprdrmjxwdu2sn6e4yzdbjmvdvt9j .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uEU5O:hwQZG7-b2l0Do4Fytr7LEpgT7uDDW3vR4UI50Fa25fs 2025-05-26 14:24:54.110853+00 +ax3kqr5bx6xit8llxli1lu99wnleq7a9 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjc3NpMjgtOGQ2MDMxZTRiMGRkOTExYzJkNmZlZjZkY2I5MmUyZTIifQ:1uaLm8:6qec7-iQDnOVVDA80U3Wib5HFLLE73TMq6xH9fx4dn0 2025-07-25 21:59:24.333982+00 +1tm06yrp0z2vdhmydrfbcaz65pm8gdu6 .eJxVjMsOgjAQRf-la9OUtsxYl-75hmYeRVADCYWV8d-VhIVu7znnvkymbR3yVsuSRzUX00Q0p9-VSR5l2pHeabrNVuZpXUa2u2IPWm03a3leD_fvYKA6fGsq2hMzN8oNqAvOQwitcsIeoiB6UO8xiUh0GoJzqRU8RwboMUUP5v0BSok4CQ:1uUBWM:4CEbLriff86-EfoiJPfH3sIE1WyQ3akj83JdJYzbHDk 2025-07-08 21:49:38.661428+00 +jl57vdflcpym15qfqe1q7qhfocse0v89 e30:1ucp62:u5TuPwCZLcQIzWKJZ8o8e9HVuJLq4FAop1Sy-51OijQ 2025-08-01 17:42:10.714571+00 +t3sz5ew9objtu3xa1x7oi9epd2xmrtn0 .eJxVjEEOwiAQRe_C2hCgUsCle89AhplBqgaS0q6Md7dNutDte-__t4iwLiWunec4kbgIPRhx-qUJ8Ml1V_SAem8SW13mKck9kYft8taIX9ej_Tso0Mu2zok9W_SWgiNNg8PEmGzmQbsMQW2UR7IqW_Ceg9FWq3MGoxgoEI7i8wViADlq:1uoUYJ:2osoLDqoUb5NAOL3ALTPlGb5M2RggR_BZaa0oaaN_2g 2025-09-02 22:11:35.621821+00 +bpe5i1a4lk4hw286kq6e12lebyy4vur6 .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1usWyg:Ep_a3spi8cIZPx_px3DcBnCXcNYQXCcviMS2iC20tdE 2025-09-14 01:35:30.887948+00 +cd133yfiln1kb4rjl304o39dqxa4x0gq .eJxVjEsOAiEQBe_C2hA-DahL956BQHcjowaSYWZlvLtOMgvdvqp6LxHTutS4Dp7jROIsdAggDr9zTvjgtjG6p3brEntb5inLTZE7HfLaiZ-X3f07qGnUb12082CBuCAdmR2yC5mtsVCgqJxY6WBOjJ5AKw0eDKH2hMUr4xOSeH8AdBo5JA:1v6HMw:TUid1PTZ6hFUlmOZWAXU4U_eejiwJjgpnp0TqY6PKL4 2025-10-21 23:45:22.053664+00 +p1n101xmqpv8ebmy2erc01tsjvj0uisy .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1vBXcV:Iuhgrxgedv4Vu8Z8zGkr6MabE_bWwmDs80NSZuq5IHQ 2025-11-05 12:07:11.268554+00 +4irs2jbxew4gr3i7k6pjuz07kf7m0ltp .eJxVjMsOwiAQRf-FtSEMDC24dO83kOExUjU0Ke3K-O_apAvd3nPOfYlA21rD1ssSpizOAsBpcfqdI6VHaTvLd2q3Waa5rcsU5a7Ig3Z5nXN5Xg7376BSr9_aMFjQHhWmVLRxzAN5GsniEMlor8jpkZWxERTGki3nxE4ReiJAy-L9AUcvOIo:1umBUh:EZEGfcWQ9hPC29WOJflum7QWDPg9XEAux5h4GQOqGE8 2025-08-27 13:26:19.246221+00 +fpznps8jfhdnuwo5jmhxtsy9bmq0yn8h .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1vGM8l:6uk6sUUhLVrQhKFgOSHJNXSzIDZxo0TlHIORSYpmkmg 2025-11-18 18:52:23.047591+00 +1xeudvpqlhq3ydttuzgu57f80rc42ivo .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1v0N1u:VXSjHsOArdJIx77YKUsel7RR84sRkOVATlQOWhbL5WQ 2025-10-05 16:35:14.181475+00 +sna233ngwasthf0orjb8ltgxvbqi7rqt e30:1v3IXX:q8Xhtf-ytNpqXnL03CHNIPWumi1fTRrhJOXRXmYtjlU 2025-10-13 18:23:59.487778+00 +zy2di29a6mu9ur7bfw3n5r2xmfdjzj17 .eJxVjDsOwjAQBe_iGlm24x-U9DmDtbve4ACypTipEHeHSCmgfTPzXiLBtpa0dV7SnMVFaGvE6XdFoAfXHeU71FuT1Oq6zCh3RR60y7Flfl4P9--gQC_fmsE6HZnATNlbRHZkyakYwBHFM6mAhj0D4oBGD9mDIR_RZ0VqwiGI9wdc2zlw:1tznKW:dCkdLNH8JvlqFYWrJw0LhlWFLUUf3qHrXgWEarOdGvo 2025-04-16 01:55:48.986475+00 +vf8hyf2jngozc9lv3u9da2pub1cjsaac eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdzZqd3ctN2M1ZTI3ZTQ1MzJjMThjYmUzM2I0Y2M1ODhhMzBjNTEifQ:1uyFA6:bAn_sI6PITbtEBCDt3OyNiSRjOuMnQrDHu7FvpiM_nw 2025-09-29 19:46:54.11098+00 +q0l5ftgkqjirqcd7nbf7scrf8ewh8rzz .eJxVjEEOgjAQRe_StWmcMrXg0j1naGY6U4saSCisjHcXEha6_e-9_zaR1qXEteocBzFXgz6Y0-_KlJ467kgeNN4nm6ZxmQe2u2IPWm0_ib5uh_t3UKiWrQbfNRAysQBfIJ8TpoYYgRxuJIN6Dc7lDnIrLYmisGMvGBQQHLH5fAE4XDi3:1ufgvM:RoX_HtvGEkJMByIWAVErkl2xBvP8l2Mu_NNddAcKCDw 2025-08-09 15:35:00.201759+00 +vx9r9esgn321n98faxmgi2ub57p5cygk eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdTIwbDEtNDA2ODUyZjY3MzVkNmQwMGYwMTEwNzA0ZTRkMzcwNDMifQ:1ujGCT:Ri63wXy1ciZRaI0tkkuYtIxS7uuvoZyylxyBndes8Es 2025-08-19 11:51:25.401845+00 +pts8npmrmqduzq2pyi84se8g2cjn4pln .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1uRFRF:t-Gb48j_HJ3gGLVGsnucMPWLr8VZG8gpuw22TMmZ4SA 2025-06-30 19:24:13.236591+00 +zrsj46ni82khvs7ac72vu95a4z2id5nq e30:1uaLn1:1Azsh4tX0JIetYLIHxJjvP1E9kboSHmH5r8IuMSq-Dc 2025-07-25 22:00:19.630797+00 +1c7j2tyxol1jfr8twpq5hirns6ibprvh .eJxVjEEOgjAQRe_StWmYgdLWpXvPQGaYqUVNSSisjHdXEha6_e-9_zIDbWsetqrLMIk5G8BoTr8r0_jQsiO5U7nNdpzLukxsd8UetNrrLPq8HO7fQaaavzWpaxMxUktJIflGBRVFfRN6dqEj11MTOwSWSBGAIzjWSOKDV-zQvD9YNzjD:1uUCWt:TiZl_HIBu8Gj-PpvVtwCbHBxWG1M_OoixudvrX8iznE 2025-07-08 22:54:15.913188+00 +c3amsbpn1uy9pjregkmkvevkogiaifgn .eJxVjMsOwiAQRf-FtSGMHXm4dN9vIMMAUjWQlHZl_HfbpAvd3nPOfQtP61L82tPspyiuAs4oTr9rIH6muqP4oHpvkltd5inIXZEH7XJsMb1uh_t3UKiXraaog3LAkC1dOAfOOSRr0BjNCh0BITJTtJggA0e7STA4UINJLugsPl9guTla:1uoUwa:FKlHPWZ0ndfFY0lXxD-OC4Zr8SNgToQTB_a837izSwc 2025-09-02 22:36:40.637192+00 +o5vfjhnip2wu8qxorg9yokrub3nj8qeq .eJxVjMsOwiAQRf-FtSGMHXm4dN9vIMMAUjWQlHZl_HfbpAvd3nPOfQtP61L82tPspyiuAs4oTr9rIH6muqP4oHpvkltd5inIXZEH7XJsMb1uh_t3UKiXraaog3LAkC1dOAfOOSRr0BjNCh0BITJTtJggA0e7STA4UINJLugsPl9guTla:1uKyqb:s9Fd0Ye6XmuZSqanCq34iLHfaeaHP_tD7l80rr8mt88 2025-06-13 12:28:29.777501+00 +awx8e11g1m6igboleu4mmfsttgvd4ypq .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1umgMv:mBzbE1Bn9r876d2Y_V8aN_01fuD0AWv0-cvHBNGX2Dw 2025-08-28 22:24:21.49524+00 +x0he8w2nico0ub9herigiaqwlevl3h0f .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1ud7gE:VLVhuBWLW-TYVXFCWspr0CuZR_uabJ7_Y6cbEu5got4 2025-08-02 13:32:46.855239+00 +k1dyuet926gs0n9wkij3z5rvtd9xu0lq .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1v0nki:h_yo7g1php5zvPeBfj6oqSqHhGaJuMrU-EJp4D-3-Pk 2025-10-06 21:07:16.054064+00 +nxs7denx02n2z6n19oqvijlbvwrd3v0j eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjd3dkZXotMmY3MzEwMzNjNjRkOGEzNGM5MDhkM2UzZWYxZDE1MDYifQ:1v3IXU:rklnTB3g92WoaIZy4FfSztZMxopJl4GUxk9-roynfKo 2025-10-13 18:23:56.786694+00 +kxtmt2oqdzpk9otbv728crrl9tveguu1 .eJxVjMsOgjAQRf-la9OUtsxYl-75hmYeRVADCYWV8d-VhIVu7znnvkymbR3yVsuSRzUX00Q0p9-VSR5l2pHeabrNVuZpXUa2u2IPWm03a3leD_fvYKA6fGsq2hMzN8oNqAvOQwitcsIeoiB6UO8xiUh0GoJzqRU8RwboMUUP5v0BSok4CQ:1uCLOF:i8fkRVOAfiRHXmVrDIS17XuW8gpP3vddJDxmnu7KdfM 2025-05-20 16:43:31.354726+00 +p3hw3l9tech5h0lresvv6rla9mdfq74c .eJxVjEsOAiEQBe_C2hA-DahL956BQHcjowaSYWZlvLtOMgvdvqp6LxHTutS4Dp7jROIsdAggDr9zTvjgtjG6p3brEntb5inLTZE7HfLaiZ-X3f07qGnUb12082CBuCAdmR2yC5mtsVCgqJxY6WBOjJ5AKw0eDKH2hMUr4xOSeH8AdBo5JA:1uw2OS:yA-dNquz_hFmtLzGZq1RokuSGI-NPrwMvA3eF_C-vLk 2025-09-23 17:44:36.999338+00 +zd2y42kkeiujbwax6sqn6epbcq7dsh5n .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1v6Vhq:b9rNJXzFVBoR6D_tmbVYmyML1betxiqpQ81YNHUcY-Q 2025-10-22 15:03:54.686792+00 +5goga72wm052mug2tm0j1ny6hmt21wu1 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1u0JFA:ypjeeYsIVAGajuePE7QpoAB0mON1Md00QLs5nGlp58k 2025-04-17 12:00:24.24963+00 +wvj6r6cx5cfsfhztz419auqteajar5yu eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdzZqd3ctN2M1ZTI3ZTQ1MzJjMThjYmUzM2I0Y2M1ODhhMzBjNTEifQ:1uyFRG:LaI38z2oXM4jYlVgWhuhEY_r6kfOrYrJ2jxeNWWYVB4 2025-09-29 20:04:38.273853+00 +3nc3ygv1i20qa5dedrokxedcacd2tey0 .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1u71j3:FlFT7ebjGsdeBB8RHyKckNtuEwRO5Ws3RcHKNj1zpIA 2025-05-06 00:43:01.754112+00 +h2g5tttfmon2wcxtdrb8lem79v3y1ejx eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjcG91ZWktYWViZThiZmIzYmYyODU5ZDIxNDg2NDE4Yzc3ODBiOWUifQ:1uEUYT:Q77Jn9d_CKpLbA1EWuj_b58XcbyHIJCxsO3JErMP4Sw 2025-05-26 14:54:57.639145+00 +0cmc1ljm63ee5vtrdkbkqcgcm97f3gsr .eJxVjDsOwjAQBe_iGlm24x-U9DmDtbve4ACypTipEHeHSCmgfTPzXiLBtpa0dV7SnMVFaGvE6XdFoAfXHeU71FuT1Oq6zCh3RR60y7Flfl4P9--gQC_fmsE6HZnATNlbRHZkyakYwBHFM6mAhj0D4oBGD9mDIR_RZ0VqwiGI9wdc2zlw:1uP0NL:IaxtTa0_2f-DWaMpseW4zM7z2blldbyDF_GtGY7WKIk 2025-06-24 14:54:55.494096+00 +arhbpqs8oyfsstgw9en1qps7zw861wat .eJxVjEEOwiAQRe_C2hCgUsCle89AhplBqgaS0q6Md7dNutDte-__t4iwLiWunec4kbgIPRhx-qUJ8Ml1V_SAem8SW13mKck9kYft8taIX9ej_Tso0Mu2zok9W_SWgiNNg8PEmGzmQbsMQW2UR7IqW_Ceg9FWq3MGoxgoEI7i8wViADlq:1uXQBt:ZX8tCxgujBdfSXzBMz2AoFGH8x0tnUQFidTojF1TYwA 2025-07-17 20:05:53.587593+00 +ilexe2512kxe3bax1a74jedjsbnptz5g .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1uL8kI:mloK3qjo-kcsY_xSsixudgKFeqL5Kb52vVOnazHJEDI 2025-06-13 23:02:38.78694+00 +8n3l868sruaxaxn8po7oczp9i38wqh99 .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1ud7gF:7cTUvoWX8dmwM0S3N-kmOf171mUO7j41jj1rhxbkhKw 2025-08-02 13:32:47.653325+00 +0nkdzdlire808a5fqonjg0tu1euny16x .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1uaLoU:GuQRw1OrJilGF6NFzwplKQN7h64WgV4ArrkLcZ_I5Gw 2025-07-25 22:01:50.389297+00 +rknk074usyn5r8hbzg3gscbj0rfxuu4r .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1uRG7k:9-Ts7TAvqyYNth75W_TmGdTai9g6-WiBpbc5scXtr9c 2025-06-30 20:08:08.432105+00 +k709ndodr976k1tz5la3rhy58ydm6w4t .eJxVjEEOgjAQRe_StWmYgdLWpXvPQGaYqUVNSSisjHdXEha6_e-9_zIDbWsetqrLMIk5G8BoTr8r0_jQsiO5U7nNdpzLukxsd8UetNrrLPq8HO7fQaaavzWpaxMxUktJIflGBRVFfRN6dqEj11MTOwSWSBGAIzjWSOKDV-zQvD9YNzjD:1uUCWu:9OnyCKCMw1QE-lz0hHq4XsjJYf1v5C4MjtjJG8qvTb8 2025-07-08 22:54:16.611689+00 +sz3kwzjf4pmxfsv6qrl5naef72ozjbuk eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdTIwbnAtODQwODQyOGUxOTNkZmU2YTgzNWQwOWIxMDdiMjU0OTgifQ:1ujGDz:WuK9Epz9tp7Pt7aYbkDUVETgkghwvB4vVtc7niRWc6A 2025-08-19 11:52:59.066464+00 +huf6hqzrxgty7t9bzvrlg1tnc23kbkwz e30:1umX8t:FEJnrMqGYQltBY1SXjgfhfL81XjcS5qi3rRTIjpU74o 2025-08-28 12:33:15.512816+00 +cp81zbkhotusm9o61ekg0qbcflq1znf5 e30:1vJim8:15ee-Qnme65_QaqDlRPBl1CnrFk7JSnIU9OESseXE84 2025-11-28 01:38:56.464531+00 +0mg2zuq1sckz4au2oz8ilu0dew4ivjnj .eJxVjEEOwiAQRe_C2hBAQMal-56BDMwgVUOT0q6Md7dNutDte-__t4i4LjWunec4krgKbVQQp1-cMD-57Y4e2O6TzFNb5jHJPZGH7XKYiF-3o_07qNjrtgYVTLlY5V06F0rBGs2MmVVGBGIksJi0BwXe6uTAFQtcNozsyHMWny9n4jmX:1v6tZA:-ld-vY47cqJ0FAoi3tAtK4rIlMrFool0ZJ6-fLQwFSY 2025-10-23 16:32:32.125351+00 +7wpbhx8jgaoi2l2gtoz427azf6l7txu7 .eJxVjMsOwiAQRf-FtSEgz3Hp3m8gA0OlaiAp7cr479KkC93ec859s4DbWsLW8xJmYhcmtWen3zVieua6I3pgvTeeWl2XOfJd4Qft_NYov66H-3dQsJdRxzQN2WULCpyXqHwyQhuwADmqMw1mJrLKYARQNjmnDekoUZAg8op9vkEpOII:1v0pT4:7GhZAAQwoi11A4OeEl9RLE4xESqIAslzF-AMH2vK39I 2025-10-06 22:57:10.24718+00 +vtj6i375ql725ofxmdn7uk204id80qph .eJxVjMEOwiAQBf-FsyFAgYJH734DWdhFqgaS0p5M_7026UGvb2behwVYlxLWTnOYkF2ZNMqwy-8cIb2oHgyfUB-Np1aXeYr8UPhJO783pPftdP8OCvTyrUEb460bCEl7lbwbUdisB0E2S5tRSCIvlVA0QgJhXIasHLpIWlqPiW07TJA4rw:1usiP4:bGCP8ChfKhSsffOw7upge-RB00W90CgwUXRKZKwnQwk 2025-09-14 13:47:30.594646+00 +anes71kjj3x5tv6ua8u9c38e4323x0ly .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1vBxFx:1QYUL63wUhEj_2SpeEaUTYztkEiNFCIyZW_fHjtqucE 2025-11-06 15:29:37.923913+00 +cy02zpswgf43dkrq07g7vpjb977iz6hi .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1v3aWe:8MuzBs_37vxLk5b_rQDoEHXj4UgYNopOeZGIXmUcx4E 2025-10-14 13:36:16.321971+00 +ulbmuq28xx0n6hquys0e1xg6usv350k8 .eJxVjEsOAiEQBe_C2hA-DahL956BQHcjowaSYWZlvLtOMgvdvqp6LxHTutS4Dp7jROIsdAggDr9zTvjgtjG6p3brEntb5inLTZE7HfLaiZ-X3f07qGnUb12082CBuCAdmR2yC5mtsVCgqJxY6WBOjJ5AKw0eDKH2hMUr4xOSeH8AdBo5JA:1uw2jf:qXaQSe7T6zsg2LWsxRJrWaNaUCsKGYqcqVKkyQMc-qQ 2025-09-23 18:06:31.445756+00 +zzrm4pfonn2cp1hl6ybv6mo9nv11y8zb .eJxVjEEOwiAQRe_C2hBAQMal-56BDMwgVUOT0q6Md7dNutDte-__t4i4LjWunec4krgKbVQQp1-cMD-57Y4e2O6TzFNb5jHJPZGH7XKYiF-3o_07qNjrtgYVTLlY5V06F0rBGs2MmVVGBGIksJi0BwXe6uTAFQtcNozsyHMWny9n4jmX:1vEscp:wHrFxa1HnSJw0iVVJ_BXk2nN6_V32-jXA3KbzA9yBjo 2025-11-14 17:09:19.000233+00 +y96irkexokhyswew97o9f6naj0qdmkuo .eJxVjEEOwiAQRe_C2hBmYARcuvcMZCggVUOT0q6MdzckXej2v_f-WwTetxr2ntcwJ3ERgFqcftfI0zO3gdKD232R09K2dY5yKPKgXd6WlF_Xw_07qNzrqNmXFItHBuU4ebKcNWFk0BYtFyyRlDYE4NAZQoNnxY6Sz85rQBKfLzVNN3E:1u0i8A:impdUJEPIJCICttGdB6SM1ZMaEiuyE5SEOF99yDLFqk 2025-04-18 14:34:50.057165+00 +koq3202a4ut0eoalo27mmsnxzu5c2tky eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjcTJnZDUtNmUxM2M4ZTFjOGIxOTAyN2E3ZWRlZTc4ZDJjZDM5OTcifQ:1uH9k6:YejYrvHaSAiDOPmV9ivceIwfLDoi64iXqfmfSgVrgoc 2025-06-02 23:17:58.052898+00 +7pmga6mn0bh20eo6roryv0rqqisy3bqz .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1u7FNq:U-6I1vosdnOsL2H2-uio7c_rRIm8I7GsAXRyJ2gz3RQ 2025-05-06 15:18:02.981293+00 +pbcl3euj58ceteapssfx8a00mkfor8iq .eJxVjcEOgjAQRP-lZ0OoVGg5mnhUDPHebLdbqRJIaOFC-HchctDrvDczM9MwxkaPgQbtLSsZPwp2-E0N4Ju6DdkXdM8-wb6LgzfJpiQ7Dcm1t9Sed_dvoIHQrG2wuUkVR-4knNAZdM6QLERR5JgKBRyEQAQrBXHH0cpV4pniaVaQMrlbRyeKkw8-aufbSENg5cy-QYgQaT25Vbq-3Kv6wZblA4UqShs:1ubh72:d03B7uE-T5-REKn8Ty0A1MEnR0AJeOS_eioPxO30nJc 2025-07-29 14:58:32.690687+00 +totlkac6y38610o96onzydr956mg3y3b .eJxVjEEOgjAQRe_StWlopx2oS_ecoZl2BkENJBRWxrtbEha6fe_9_1aR9m2Me5E1TqyuyrigLr80UX7KfCh-0HxfdF7mbZ2SPhJ92qL7heV1O9u_g5HKWNfAwh5tYykjDV2SFNC5AYMJNhmuTAJC02ZnWrIeAMLQsbeC4LEq9fkCON839A:1uEUYt:DoZX3Jw6MobhIILA6Zk72zENP_gNoGixobuvZ6rMunY 2025-05-26 14:55:23.630065+00 +wv8c7cwwh2tjk6mazzkergb9nznbl0dw .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1uPRVa:RFe0mjADtG1H4pmnbkUkCCabr1Z7qMSbw1zWOCpSVuo 2025-06-25 19:53:14.873122+00 +8rwodz1bt0f1juckj8ic3waqyus82zom .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1uRG7t:Qf24G_9saWcf84DUuPvdfyELxYoeId7S-Goi9taGhaE 2025-06-30 20:08:17.597789+00 +0gz6pq8ma568x680c07tz5b9tkdgq81g eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjc3NoYzYtOTg5NDE2ZWM1MjU1MzE0ZjhlNDlhYTAzODUwMTliNGMifQ:1uaMh5:4q3yZHcueZkaFeyMoB2ewj5dfVwu-scMOpbZrK8nBmg 2025-07-25 22:58:15.888042+00 +50k5cz4p82afbqkrjdn3bcam0hlbhhv2 .eJxVjMEOwiAQRP-FsyEsBQsevfsNZGEXqRpISnsy_rtt0oMmc5r3Zt4i4LqUsHaew0TiImDQ4vTbRkxPrjuiB9Z7k6nVZZ6i3BV50C5vjfh1Pdy_g4K9bGs0pElZMomJ8-gzAp6ZUREwJG8jGwWMQ3ZZeachghnVkNIW63L04vMFZsM5dg:1uURTj:EPa1-v4SUjwR1lJKMcpxnHRZHqw244eRohTAXyBgWSw 2025-07-09 14:51:59.789452+00 +zqrlnb08mujs9bqfwkg10ikf77lv4pex .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1udeaz:Vvq1WaWZd3uLcAf5_axEOrDzP-a78npH7IerD1jz0Ws 2025-08-04 00:41:33.685518+00 +qckzkiz36nhbtpahprhwp1e874zu2g4y .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1uoYkp:bAY2irK_KoczgEM_Z1gC-t3dzt93AvpcScC1Fg55kT0 2025-09-03 02:40:47.669733+00 +l1jl6vjdr81hz19rjn7ulhy66ihfqawm .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1v6vqC:4-DM2yNqxK6QPA-FXLBozAFE01bpQ8-bTzmMo9AlWS0 2025-10-23 18:58:16.143821+00 +rbdk0yzmk9likw1xwa4oi74pk22tqske .eJxVjEEOwiAQRe_C2hCETgGX7nsGMjCDVA0kpV0Z765NutDtf-_9lwi4rSVsnZcwk7iIM2gQp985Ynpw3Rndsd6aTK2uyxzlrsiDdjk14uf1cP8OCvbyrY2zGBUzZ88WtAPweUQEY7JxKtNgtAebrbMQR2VhIE6ONHmiQTlN4v0BVKk4Zg:1ujGEL:281Z9XxK83Z1SKKLoL3tD8PAha1I9DdIMhuHJRLs3V0 2025-08-19 11:53:21.489776+00 +01z4i9stqqwk3b4gtu5zptwmm3v5uyt7 .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1uskhC:0xscv1njA9cemh3maI-Fj5siPASGjI81puQG-Y9MZeE 2025-09-14 16:14:22.043062+00 +z0332a2uqrbdc7urrtp6kx6uy7902zri .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1uyGBY:dxY_tPeqGfLGRzan-MLLhW39PI1bdXYYu_2NrMB5HS8 2025-09-29 20:52:28.970247+00 +w8q36yk1onujl65eeebxzpe29uzmebor .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uw2oa:hNaGgZTgh3lNHLUWYKb8xqh67762lLGkjKOpAESimTI 2025-09-23 18:11:36.166795+00 +e02ob0otptzratp7yn3rhumj7q65gri2 .eJxVjEEOwiAQRe_C2hBomYG6dO8ZyDBMpGogKe3KeHdt0oVu_3vvv1SkbS1x67LEOauzGiyAOv3OifghdWf5TvXWNLe6LnPSu6IP2vW1ZXleDvfvoFAv39olKzZPwQ-OCB0ax2nywcJoyRCCHwSCzR5FvEEcBUGmxI4N8yge1PsDNLs34w:1vKGsr:oCnh8iGuDLvdD7x55DanIpiItn4DMUZvXxhx8iRm0Yo 2025-11-29 14:04:09.692953+00 +sgv67y89km2vium25fawemx4cw6laxhu e30:1vGQTk:TTlEFOr_j49aW3aoQodpv_O_RT26Y5IYyUSgBIW7tqM 2025-11-18 23:30:20.22685+00 +xaz5v9miynyuguw28zlyw49plakxxr7r .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1v3fJ6:tThf9S9zNIefRjCImElYXI1o8ghETdEvZDho70v9w2o 2025-10-14 18:42:36.226186+00 +u86enbqpphnt05fayc0k8onov12cy6la .eJxVjEsOwjAMBe-SNYrqmiQNS_Y9Q2THDimgVupnhbg7VOoCtm9m3ssk2taatkXnNIi5GAAwp9-VKT903JHcabxNNk_jOg9sd8UedLH9JPq8Hu7fQaWlfusciubiKLuisWFAwAxAELzz7Fo4B_ZeWdChhKbpsA1RqNMYi2DLaN4fOWQ4MQ:1u0jcl:i32dii8DzNKIU3gcqJsD3_kUCcPl_MK7inNpuW6TFM0 2025-04-18 16:10:31.145336+00 +rdo839h80v07eybuu7lb3bx2rpfhzdyt eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdG1sbDgtZTEzMGM5OTRiYjNjMTEwZjFlZGQzMWI4MzM0MmM2OWEifQ:1ugF5Q:pR0c4ntA02dsVXlQSAiSUnfufv9EYNbYQ52xRhodrx4 2025-08-11 04:03:40.770867+00 +f746qmn6wawskyg3bivc7ye7pige39sx .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1u7ddj:7YyIyOczMQKFAqQviwLxhUVEjJWg170RcZQozcZ4hwo 2025-05-07 17:12:03.944911+00 +av98m90j7dn9ir5zlmixrdv7v5il7rvd eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjc2ZubnItODM0Y2RmODJkNzE2YzMxMmU2MmU5ZDU5YzM0N2U2OGIifQ:1uXpuE:oDZQGhUPheYgmQ1l9rnzwoTDiNTbdrLSs4KRRcsaYU4 2025-07-18 23:33:22.313551+00 +5t0aljzdfe3jzbbm5obb7f1srlkt2o7k .eJxVjDEOwjAMRe-SGUUkIdhhZO8ZKttxSAG1UtNOiLtDpQ6w_vfef5me1qX2a9O5H7K5mODQHH5XJnnouKF8p_E2WZnGZR7YbordabPdlPV53d2_g0qtfmtgLxySpqwO4OQISnZEMQkEjViCFEEM7LxgJIhIxzN4LslhLMrZvD9FxTjj:1uH9lV:kIb_e9zZWq8E5HMIHJUO-y9UNrLD7NbEd04TqrX8_IM 2025-06-02 23:19:25.921224+00 +sfy1z9yu95ski5ovxxrd1mzqs0c4tp6q .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1uPRi8:VoqvIxFdX1S66aok3-1FF5htxlm965lJFTiMGX7RU4I 2025-06-25 20:06:12.208169+00 +q646rng0vmvynqgp8dxub96m20is05wu eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjc3NoYzYtOTg5NDE2ZWM1MjU1MzE0ZjhlNDlhYTAzODUwMTliNGMifQ:1uaMhO:fVtiCiGmCesReXVcAWU5NGULG_ykuTgNbkBOeBdefLM 2025-07-25 22:58:34.090502+00 +9wpaorzs54ms813p8vo7ekoo8pemw1gf .eJxVjMsOwiAQRf-FtSE8hra4dO83kIEZpGogKe3K-O_apAvd3nPOfYmA21rC1nkJM4mz0MppcfqdI6YH153RHeutydTqusxR7oo8aJfXRvy8HO7fQcFevvVEZnSGKKOiabCYNAAYjeSUMujIMzuy0RInhmwIrQJg760ZRsgM4v0BXEU4ug:1uLKoX:1NgMGaA45y_sTdWR0NzVqkUPbTnpRF1Ktj4QvCsdgJo 2025-06-14 11:55:49.546671+00 +oe4gdgak5nvr4p3l2y7rim8f45cvzow7 e30:1uRIX4:757O0sjgS69dvhDztPUiSyGtEx09neuSBxPUp7zHnt4 2025-06-30 22:42:26.260943+00 +kq867th1xdau81nvsd8uq7gk7xkcfkz0 .eJxVjDEOwjAMRe-SGUW0dpyGkZ0zVIntkAJqpaadEHdHkTrA-t97_23GuG9l3Kuu4yTmYjoAc_pdU-Snzg3JI873xfIyb-uUbFPsQau9LaKv6-H-HZRYS6tzkD5TRCQXQXDwmBXUsTAHpOHMlEETOK8pCzmfCdh16AUpuNCbzxdLNziQ:1uURUT:hwLwYInvYJkm7eDZUKrQGUCbbiX8eB-R5odTHuDfg2s 2025-07-09 14:52:45.195723+00 +4dilwe4hbv2g47f9tq3ons4onyeea2ox .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1up3qp:-z3ffF-RPI8xgM9Lcf_0h3zRmgfIbWRvyW3fiZ_dU6c 2025-09-04 11:53:03.931364+00 +evvkpr2udq4t7zrpy5cv59ztrk8wkmts .eJxVjLEOAiEQRP-F2hDgBLKW9n4DWZZFTg0kx11l_He55Aptppj3Zt4i4LaWsHVewpzERWjtxem3jUhPrjtKD6z3JqnVdZmj3BV50C5vLfHrerh_BwV7GWvI2WcGqzIAETMgOZpcTATg2IDxiTI5N6E1Q_BWRTUCYeJz0jaLzxdgwjkh:1ujI3H:kiTfpypfuMhUYgjrAgm-KlQ69RuZoBSnMNrosFMW9O4 2025-08-19 13:50:03.431856+00 +mq90240eyi2iahe4r72e2yisc9rwkxb6 .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1uyJTu:yIq8jgUFfN7vqRjwsCvnTBBJ-1mAhQ0L_9WVuaQReyk 2025-09-30 00:23:38.099547+00 +w82z5parjr4i7bidz9zedkdi4hgje0fa .eJxVjMsOwiAQRf-FtSGU5-DSvd9AGBikaiAp7cr479qkC93ec859sRC3tYZt0BLmzM5sMg7Y6XfGmB7Udpbvsd06T72ty4x8V_hBB7_2TM_L4f4d1Djqty4apCwWDCbwJlpFQKIkq3L2wsuJyJciyBjUCOh8FtaiUCicTJK0ZO8PXuA4hg:1umaLm:QcXCtuRji2tl6IS8VfJ3DR2cXqdiJbfa4omeCt0u28s 2025-08-28 15:58:46.145291+00 +g1ft46zhburikdly79g39jkg9zemesu6 .eJxVjDEOwjAMRe-SGUUOsWnMyM4ZKiduSAGlUtNOiLtDpQ6w_vfef5le1qX0axvmflRzNo6CN4ffOUp6DHVjepd6m2ya6jKP0W6K3Wmz10mH52V3_w6KtPKtiSJw4gQ5YA4kAj50yMjRYyaQYyRAJD455yGCoHcps4oCd6oumfcHNiM31Q:1ut3L3:i5_A8_dELzKxr1-ZfxjPYqKsXA4cVC18lS1T6LmTUcA 2025-09-15 12:08:45.024354+00 +zcgf8zif5o2wv48awqf5o0wcankjjaga .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1v7EhY:dfvk_R2P1MjlPvmG_InyDjX6C3P5LhEdjNzC85Pw0yQ 2025-10-24 15:06:36.540426+00 +ycv23i6cjpa66aekgo73745pvpdthzp0 .eJxVjDsOgzAQBe_iOrJ2Af9SpucMaNeLA0lkSxiqKHcPSBRJOzPvvdVA2zoNWx2XYRZ1Vdhaqy6_mCk-x3w4eVC-Fx1LXpeZ9ZHo01bdFxlft7P9O5ioTvsaHKCEZHy0pkmpFTSEwq4LDUYfdgJi0Qs4BySdGNNGZiabGvaAoD5fS5g4YQ:1uw4Yg:uiLhYaASbiVu0Q0ofPx_U-vsGqnodd8m45-cFeo2mNE 2025-09-23 20:03:18.129682+00 +9b5qw1s5nx3r2l32i7p1noe5xamsyrve .eJxVjDsOwjAQBe_iGlnZ-LuU9JzBWnttHECxFCcV4u4QKQW0b2beSwTa1hq2npcwsTgLUNaK0-8cKT3yvDO-03xrMrV5XaYod0UetMtr4_y8HO7fQaVev3UaE7uo0QIrnUblTSJlfPGMCAMSxGKArGNkX4ql0WM04DQ4VGooUbw_Uv44Jg:1vKNMs:Fpoux0p7WlqUU7L6zaQccY0IXlbYXle33p22_MS3vQE 2025-11-29 20:59:34.562325+00 +krbac5lxi1n1hzbfflxuhfq48l0bhflo .eJxVjEEOwiAQRe_C2hBAQMal-56BDMwgVUOT0q6Md7dNutDte-__t4i4LjWunec4krgKbVQQp1-cMD-57Y4e2O6TzFNb5jHJPZGH7XKYiF-3o_07qNjrtgYVTLlY5V06F0rBGs2MmVVGBGIksJi0BwXe6uTAFQtcNozsyHMWny9n4jmX:1vCKQk:8caVXPHiwMfZfSE6JI12lOvvmTZXJxNlARJ8cRFnC5Q 2025-11-07 16:14:18.080989+00 +zlamvbse9p9hr4u2pe6pp8es8qg3x5ny eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeXJmamQtNjNiZmFlZWM1MDQ5OTQ5NWNjZWMxOWM3MjljMjA2M2UifQ:1vGQT1:ofw5SeBLsrkRfxgv6sKQiqCj1hfxkvT4b8oMobQEQ6Y 2025-11-18 23:29:35.652064+00 +p2uopuxpginmp9a7b3hzttapwxetcodm .eJxVjMEOwiAQRP-FsyEgFKhH734DWXYXqRpISnsy_rtt0oPeJvPezFtEWJcS185znEhchNajOP22CfDJdUf0gHpvEltd5inJXZEH7fLWiF_Xw_07KNDLtgbWCJkcOGczcyLPAYkRrPEZHaczsfbBGjVs2QAr7YZMqDBYAh7F5wuISDpF:1v3fM3:eewBWQ6XOo7FEzWYNU-xBmYVTe3RNS7kQwH3r8_RgQk 2025-10-14 18:45:39.118825+00 +m15l6teo8fvqh2adi2xihiubju03y1y8 .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1u0m2k:Ckb7PVA3dGcdKA1ZW2R59ICrVK2KUD0MhuLy35ryNCI 2025-04-18 18:45:30.210458+00 +dih4wdyw3js4vvu0072c2kum2tfmjtb6 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1u80Zh:RmsE57fg0Exkiro0YtPj0klHhDV2GsItnAsZRaeGSXc 2025-05-08 17:41:25.264169+00 +lqm2opeq4q65oykfp986npljhi682up9 .eJxVjDsOwjAQBe_iGlm2_Kek5wzWrneNA8iR4qRC3B0ipYD2zcx7iQzb2vI2eMkTibPQKmhx-p0RyoP7zugO_TbLMvd1mVDuijzokNeZ-Hk53L-DBqN9ayZ0oWjyGI0JoKuJyZJ3KaApzmiogRQaX6vTNaLlxNEqVBGsLwq9eH8AXQ04ow:1uRMmz:jRnbJAKl3NO31Jupd6M4BF3oMvHnOVMzOczcEd5KdzI 2025-07-01 03:15:09.37764+00 +ldwkd395htks7vvmcfhc33c724vtru37 .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1uEflW:biQadyJJ6sdjh5p1fmtE83RMeC5ClltfvnOgCY7aeZw 2025-05-27 02:53:10.368877+00 +s2uae25b7hyx2myv0hmlpc9lw7pfueia e30:1uY2M9:5ahOq3xUUyILLUeXXhClCFp_4UJ_XMt3fsXXEZtIrIw 2025-07-19 12:51:01.558484+00 +fuw1adfwi5vlkngoqro2p8ijqccad5aj eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjc3NoYzYtOTg5NDE2ZWM1MjU1MzE0ZjhlNDlhYTAzODUwMTliNGMifQ:1uaMhO:fVtiCiGmCesReXVcAWU5NGULG_ykuTgNbkBOeBdefLM 2025-07-25 22:58:34.136044+00 +ovd2vudfwrbaqyon0bpswb17050fob00 .eJxVjMsOwiAQRf-FtSEMDC24dO83kOExUjU0Ke3K-O_apAvd3nPOfYlA21rD1ssSpizOAsBpcfqdI6VHaTvLd2q3Waa5rcsU5a7Ig3Z5nXN5Xg7376BSr9_aMFjQHhWmVLRxzAN5GsniEMlor8jpkZWxERTGki3nxE4ReiJAy-L9AUcvOIo:1udzMs:_zZQKT2HeTJLIe2xZzUJ9l0pt5ZIzlKVAtCpPmlmg_0 2025-08-04 22:52:22.920132+00 +fseivd4e2xqvjss7hwlmtzo55xqkq5kb .eJxVjDsOwyAQBe9CHSEwn4WU6X0GtMASnERYMnYV5e4RkoukfTPz3izgsddwdNrCktmVSW0lu_zOEdOT2mD5ge2-8rS2fVsiHwo_aefzmul1O92_g4q9jlphdjpOk3LGFUChLDivQKOOhoCM8MkWBAGJsnJoBHhTEhHKjGgS-3wBSLY42Q:1ugF5i:EYj9XjZcDMFTpkvMQp6fmG5pKx4o22Mnz9lFWvL4Ug0 2025-08-11 04:03:58.101537+00 +8ef7h1v02isegs4oaf2e6k8q2bchcnf7 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1up4UU:FgObqFAd-r9ygmx81wghol827q5Fl8G8Qf78eXByaNI 2025-09-04 12:34:02.325004+00 +ho55y1p96pq5lm3ugzjsjn6m2cjx30qh .eJxVjLEOAiEQRP-F2hDgBLKW9n4DWZZFTg0kx11l_He55Aptppj3Zt4i4LaWsHVewpzERWjtxem3jUhPrjtKD6z3JqnVdZmj3BV50C5vLfHrerh_BwV7GWvI2WcGqzIAETMgOZpcTATg2IDxiTI5N6E1Q_BWRTUCYeJz0jaLzxdgwjkh:1ujIA6:TMn01fdgB93rB_XuJXEX-XU6hkGyj7MGnohw2lHlMj4 2025-08-19 13:57:06.795907+00 +b87kzbnygjy8nyjsmq3vt3ooc3o53hmu e30:1uyUHT:EN9T8DnsWO3piIYzHMidWG3nXYzwBmXihKx8N4dN7Dw 2025-09-30 11:55:31.758403+00 +4ft9drj169ds4xxrkmhh3u0sic9p0lng .eJxVjDEOwjAMRe-SGUUOsWnMyM4ZKiduSAGlUtNOiLtDpQ6w_vfef5le1qX0axvmflRzNo6CN4ffOUp6DHVjepd6m2ya6jKP0W6K3Wmz10mH52V3_w6KtPKtiSJw4gQ5YA4kAj50yMjRYyaQYyRAJD455yGCoHcps4oCd6oumfcHNiM31Q:1umvZD:LZSWDflOBZau3MpcU3zk7D35TfgkDUkz8IETj76srCY 2025-08-29 14:38:03.867078+00 +apf0bm8qghgt5n2jzwrqzadweync48jb .eJxVjDEOwjAMRe-SGUUOsWnMyM4ZKiduSAGlUtNOiLtDpQ6w_vfef5le1qX0axvmflRzNo6CN4ffOUp6DHVjepd6m2ya6jKP0W6K3Wmz10mH52V3_w6KtPKtiSJw4gQ5YA4kAj50yMjRYyaQYyRAJD455yGCoHcps4oCd6oumfcHNiM31Q:1ut3L3:i5_A8_dELzKxr1-ZfxjPYqKsXA4cVC18lS1T6LmTUcA 2025-09-15 12:08:45.758484+00 +1z3klharp49nkjfp1ivihxqygfsfub6o e30:1v7M1e:fUMVyOSyhP-HLnPEhcktfC-ONrkuwfZ8squOHsLHPFs 2025-10-24 22:55:50.403704+00 +92n8gt6x1bl9n1kmt4gbcehol09ltrd2 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1uwJi2:5_3zMRSgDtzUo8W4lRyQuqjum7wVjSJzGUdONXgQpj0 2025-09-24 12:13:58.622253+00 +l2aqtb68xez0cae0hncim8n28whu4875 .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1v12uO:DwpS5_IUvOlnMLBXxXVctpAj4rmViagQHtRrqnj2gX4 2025-10-07 13:18:16.598227+00 +zfyvnyx7w1ol5tpygnqhzy499iy9nnwo .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1v3fjm:zZL3IaCh0pSjZwK069llvXhPYp8M2f_IK0fgs3F0mCE 2025-10-14 19:10:10.697928+00 +zvdn3ezygueabvhinaags6lbva5tpk5h .eJxVjDsOwjAQBe_iGlm2_Kek5wzWrneNA8iR4qRC3B0ipYD2zcx7iQzb2vI2eMkTibPQKmhx-p0RyoP7zugO_TbLMvd1mVDuijzokNeZ-Hk53L-DBqN9ayZ0oWjyGI0JoKuJyZJ3KaApzmiogRQaX6vTNaLlxNEqVBGsLwq9eH8AXQ04ow:1vCUM1:Rcugzowu2Za6x8J8NWucyqeh_881LluiHG18JSnZHBk 2025-11-08 02:50:05.187272+00 +u41h4yz4ywt2n53xle3xwt6hyu01uyms eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeXJmamQtNjNiZmFlZWM1MDQ5OTQ5NWNjZWMxOWM3MjljMjA2M2UifQ:1vGQT4:iqL4S70WN_yTmX4frG9lG1yvggO3a2sgHodZEIN6tJ0 2025-11-18 23:29:38.321322+00 +796jexqsokkfdvuk1mk2t89vmsl9tjtu .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1uRW6D:_dSPjFVLgBAo-ShkwC8V-c_nnL__8tVbF29idaS0mO0 2025-07-01 13:11:37.098925+00 +tcv8jiw9tszm3kufdcbgi13viuv6vz0y .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1u8J7e:pIozSHDHiWeTpFvXNrOPkwYw9g1tvyg6XGtGbarqd7w 2025-05-09 13:29:42.491501+00 +p66fwps81iqos4agzhndwtd1h77z7qz4 .eJxVjEEOwiAQRe_C2pAOUJhx6d4zkAEmUjU0Ke3KeHdt0oVu_3vvv1Tkba1x67LEqaizIo_q9Lsmzg9pOyp3brdZ57mty5T0ruiDdn2dizwvh_t3ULnXbx2QHRrPYFIolsgnyExCwpLF5REJPDs7gAk2wegpuEzeUhkQERyr9wcm3zdv:1uHKVZ:zGQ6u0F3fL0-t6oc--Vl4KDvvdj_0IrodIsOI-UJen0 2025-06-03 10:47:41.502621+00 +u3fnk5qa6eqpjxde0wk83tw7npk023s7 .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1ugPCp:E7NR-Em3L63ksOxEoRUbZUCAeJZJlaq_vclUQ9qnT6c 2025-08-11 14:51:59.008409+00 +mzcscu4ovgb3ovisfodwnaxcgra09tog .eJxVjUEOwiAURO_C2pDyC_zi0n3PQIAPUjWQlHZlvLs06UK3897MvJl1-5bt3uJqF2JXJmAEdvmNvQvPWA5GD1fulYdatnXx_FD4SRufK8XX7XT_BrJrubfR60gEiDSpMfQfp41K4HXoROlBgtTGyAmFJBxQoACQwfhE4CARss8XM-A3ig:1uUof8:y42G1SZsZXDGWKBJiKQqnMiYWe-RHkvFJJYP37h_X7U 2025-07-10 15:37:18.770218+00 +3nj7p6gv2zuq8nbsi5u17hfv0zzwo1sl .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1up50q:wm5WmZ-jQGNqJLBcHflTdek7du48w56hReqyNZWEHMM 2025-09-04 13:07:28.512803+00 +1avsqzppuve1nri13u47wz0t924m6lg0 .eJxVjDsOgzAQBe_iOkL4F9uU6XMGaxevgwMCCRtSIO4ekCiS9s282ZiHpXR-yTT7FFjDuNTs9rsitD2NJwpvGF9T1U5jmRNWp1JdNFfPKdDwuNy_QAe5O96KQGrQMhh-F9EGJaQBp2pCdNrUxgSUDgQ4rDGSEFE7shY5V0oKi-qIrlTWlFPxMQ2F5syajQUodNRLl7L_EPVs378G7kZ1:1ubmWB:jNa5GrJmT9DT7gTSTJvbeObasbMOItD6kSOSucUF5yY 2025-07-29 20:44:51.823808+00 +7t148vwf87bg110emq0ybend6dcgovjh .eJxVjLEOAiEQRP-F2hDgBLKW9n4DWZZFTg0kx11l_He55Aptppj3Zt4i4LaWsHVewpzERWjtxem3jUhPrjtKD6z3JqnVdZmj3BV50C5vLfHrerh_BwV7GWvI2WcGqzIAETMgOZpcTATg2IDxiTI5N6E1Q_BWRTUCYeJz0jaLzxdgwjkh:1ujIBJ:hLlMSETUUqtj4QuQRaafyZXj8B5AsobTPSKiBo7a_dk 2025-08-19 13:58:21.368421+00 +fdbny8jz4s3xogkwpkfy5jrm47yjy1hl .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1uyVyS:fTzJvzHkjXNSRTkaZociciPSl9ETuzc2CdDZhWX12AY 2025-09-30 13:44:00.083289+00 +zyd56mn90l0qf0in9508vfdma1mdisjc .eJxVjMsOwiAQRf-FtSEwdIC6dO83kBkYpGrapI-V8d-1SRe6veec-1KJtrWlbZE5DUWdlbWgTr8rU37IuKNyp_E26TyN6zyw3hV90EVfpyLPy-H-HTRa2rf2HAMUNgaqLwixGNtxQEbvjCMxmKH3VToHEqsEiX1PlR2ETBURUL0_Gow4Cw:1uI7It:pWVwegLzR5S9Vk6_MC-riipE_KqtlU1z51avAq85hpQ 2025-06-05 14:53:51.332401+00 +65h3eq7hdefp6e4ugqoqdiqi9debtn29 .eJxVjDEOwjAMRe-SGUUOsWnMyM4ZKiduSAGlUtNOiLtDpQ6w_vfef5le1qX0axvmflRzNo6CN4ffOUp6DHVjepd6m2ya6jKP0W6K3Wmz10mH52V3_w6KtPKtiSJw4gQ5YA4kAj50yMjRYyaQYyRAJD455yGCoHcps4oCd6oumfcHNiM31Q:1umvZu:P40vpU3q5j9vQBAN2lFbzUpc3ZEfnFb1skwTi6kTL4g 2025-08-29 14:38:46.620892+00 +845sbhx75lr9uqltuq46mfivhfdsdun1 .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1uEz6d:pfgvz17Lrig1L0sQF2H_gATPShNJTvmz5_fM1DOvOFo 2025-05-27 23:32:15.297214+00 +uygi7api5zu9uiecpu0yv30is4knxiy2 .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1v7WQF:77CHsfaU53JAVU6321z-vVnRHU_4NLwCchf1bbaNVss 2025-10-25 10:01:55.493604+00 +m3i9bbx6regrlvpxkcfshjdt2gzrpnj2 .eJxVjMsOwiAQRf-FtSGMHXm4dN9vIMMAUjWQlHZl_HfbpAvd3nPOfQtP61L82tPspyiuAs4oTr9rIH6muqP4oHpvkltd5inIXZEH7XJsMb1uh_t3UKiXraaog3LAkC1dOAfOOSRr0BjNCh0BITJTtJggA0e7STA4UINJLugsPl9guTla:1v13UH:xUIgWkO7SI34aKclsYgpbfcUwpCKmHv8LdYtBkJiXds 2025-10-07 13:55:21.944463+00 +c6n1imptbwxzghi6sjuozzgno9h05qtr .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1uwR1g:KWkZLevDcuT9yCX8XewC7tKoQ2k_IoqX207csQOWa-E 2025-09-24 20:02:44.532465+00 +hz5gfaorsxyvqtxg4xxoshrpeezjg8hp e30:1vKz76:k6YMNoq6komcvG3vPcKN6HMI_C7ihs7Ux2tT4n2gHj8 2025-12-01 13:17:48.50465+00 +88ebwbhx7awxjh9aeyf24k5r95le7seq .eJxVjEEOwiAQRe_C2hBHYIou3fcMBGamUjWQlHZlvLuSdKHb_977LxXituawNVnCzOqiAIw6_K4p0kNKR3yP5VY11bIuc9Jd0Ttteqwsz-vu_h3k2PK3dpYkIrBnpAmZjsl7K2dvjThBSmk4DeyAxCYgYwg8IqCgxR5MrN4fSZU5CA:1v3jyM:mBUNV_5C9qoaAeYUH-AR9zxupjPcMQC3k8cG1u-tTDg 2025-10-14 23:41:30.348317+00 +2wes0k1rdy2c6uh21w8odfgfzlzlqpll .eJxVjDEOwjAMRe-SGUW0dpyGkZ0zVIntkAJqpaadEHdHkTrA-t97_23GuG9l3Kuu4yTmYjoAc_pdU-Snzg3JI873xfIyb-uUbFPsQau9LaKv6-H-HZRYS6tzkD5TRCQXQXDwmBXUsTAHpOHMlEETOK8pCzmfCdh16AUpuNCbzxdLNziQ:1vCyNP:pNisfuM3bdQwLdtCxhhFlcJrV8jEQeU8KSKwbKBIelg 2025-11-09 10:53:31.033176+00 +nzvyis7rpwq34zs2ke1z5po3owyte1vl .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1u1Wu1:Zm0dAILXQ287K7dSagYk7de4UKN_cYxdOpFf01ABWVs 2025-04-20 20:47:37.507087+00 +o1os62sjk2jcunrfrduskcditabqll98 .eJxVzEsOgyAUheG9MG4IIPLosPOugVzgWqhGE0E7MO69mjhop-f8-TbiYKnJLQVnlyO5E84luf2uHkKP43nFN4yviYZprHP29Ezo9Rb6nCIOj6v9AxKUdMJeC4xNsL5hRhkJSirbBjS2FUaAabliDHXnjWSNtYBMMORRiyMPQrMDXbGuueTqujxUnAu5byRCxUOvKRf3QezJvn8BxOtFhQ:1ud9Eu:rrnClON-8MspALvbnrY94GkXqKDFeGYLtDXyGVSsbR8 2025-08-02 15:12:40.887428+00 +rdm0bvtd86n46tv37yydtax938mclqm0 e30:1uHXqq:LR4R05Fi17Ih9YRffpWODBI6XEuygI1jMRwqwxHxUJE 2025-06-04 01:02:32.492858+00 +vrp4xcrvjx59sbhji8czw7bbjqbwrp8m .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1ugSCb:rtGEzAgzOC21Q63lVuo2RmtiuutvA63xdwe2VkpuQdc 2025-08-11 18:03:57.742552+00 +urz3obg8vpmcmthy1dwstqu7h5279cau .eJxVjDsOwjAQBe_iGlm24x-U9DmDtbve4ACypTipEHeHSCmgfTPzXiLBtpa0dV7SnMVFaGvE6XdFoAfXHeU71FuT1Oq6zCh3RR60y7Flfl4P9--gQC_fmsE6HZnATNlbRHZkyakYwBHFM6mAhj0D4oBGD9mDIR_RZ0VqwiGI9wdc2zlw:1uEz8T:DeoOEHokd6mI18MpHjy0en1_sxJJL6mxXeV6LD4Czpg 2025-05-27 23:34:09.429734+00 +caay215ids7sr18o2f8v3zunf5h9srei .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1uYZ7i:uVAornCzgCPMVJGSMsr38fsTLSh4OfkRHbxqnkCF_AE 2025-07-20 23:50:18.098189+00 +gckaqd03glp6qk5y0yh9yo3ekk2fbl94 .eJxVjMsOwiAQRf-FtSHQDo-6dO83NDMDSNVAUtqV8d-VpAtd3ntOzkvMuG953ltc5yWIs9AWjDj93oT8iKWzcMdyq5Jr2daFZFfkQZu81hCfl8P9C2RsuZfT4DSDB0YAAmuMSpNGiKwIUAXjIkdNE4H_bj_a0XnLKYXEPDjw4v0BVKM40Q:1upR91:p3ESaRC7avxQn5IUl5YFFiDHjXziKqGjEwBz-CZBA1c 2025-09-05 12:45:23.240068+00 +18ewgzrq1g6ubz23hzmj1jeojw55lm0c e30:1uys5U:HPd-Su5Q9nUb9sPmJgWFrnQvfaMH9vPiXdtkqn1AX2U 2025-10-01 13:20:44.559462+00 +akmw2ej6wn0mv5g8iybh2r1jaea3x6aj .eJxVjDsOwjAQRO_iGll2_Kek5wzWbnbBAeRIcVIh7k4spYAp572Zt8iwrSVvjZc8kTgLHQYrTr81wvjk2hk9oN5nOc51XSaUXZEHbfI6E78uh_t3UKCVvjZAxBS8wgSeQCmjnDHe7Ul2iCa4qBwG7xk1hl0KVnM0XvNNU0ri8wVFDDe5:1ut7JR:24cmeek2UeA2QkwTghgn3rulqqnMCc9_zPze4R_XCqY 2025-09-15 16:23:21.335755+00 +ga61aa3iu2s33fnnl2cjwfa9soxg7rff eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdzB3MDItODUxZDAyMmJmMjkxOGUyMmJhMWRjNDBmYjlmODM1ZGEifQ:1ux8QH:cjDVsrslUmqqHLkEct5MM9NiOWptBmGVm6xleft5JiE 2025-09-26 18:23:01.387233+00 +4e3mn9crjli9u66agbvxusz8g6kkve5k .eJxVjEEOwiAQRe_C2pAJTGlx6d4zkBkGpWogKe2q8e5K0oVu33v_7yrQtuawtbSEWdRZebDq9EuZ4jOVruRB5V51rGVdZtY90Ydt-lolvS5H-3eQqeW-JoHo0LJFFrE3jMnhYJjc9EWGUhqciAcGcCNYImYzCkpEJBf9pN4fVAA5EA:1uaMjb:ivolgb3QwWIf_QK6hFnHxrEBF_O0O-kOQcr5l1XkXSA 2025-07-25 23:00:51.109373+00 +10chglv8puxzz2cxj8dsbz1o2rq1597f .eJxVjEEOwiAQRe_C2hCgUsCle89AhplBqgaS0q6Md7dNutDte-__t4iwLiWunec4kbgIPRhx-qUJ8Ml1V_SAem8SW13mKck9kYft8taIX9ej_Tso0Mu2zok9W_SWgiNNg8PEmGzmQbsMQW2UR7IqW_Ceg9FWq3MGoxgoEI7i8wViADlq:1v7Ydj:XWwOnNDF3s_FMvv7anfqLh7pkqAs1J9msT3Lkw6i49k 2025-10-25 12:23:59.10381+00 +mz9pikc304mswf3ybi0r8qqnjt4hy57q .eJxVjMEOwiAQRP-FsyFsy67g0bvfQIDd2qqBpLQn47_bJj3obTLvzbxViOsyhrXJHCZWF9WZDtXpt04xP6XsjB-x3KvOtSzzlPSu6IM2fassr-vh_h2MsY3b2gFYMgKWPUcTyWZLW0TqB5LOe2AjRI4ZzgYRk4B3PSYaEBAysPp8ATWpN7E:1vGc9A:VjuI30tCG6ZU42c1aMXt6Y9vkyVpBZcJo6pFd7meYdI 2025-11-19 11:57:52.338472+00 +q4ssisis39y757mklgocg2pr8eabfna8 e30:1unL6D:418NRzgeMXwjhdcEsXWJ8P3WR4jIXJ76piCsBo5Ka-M 2025-08-30 17:53:49.683957+00 +e45ti2pmjkar1aozcz7mxqdn68ycqcmz .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1uUyZq:7PJblAWhY06dsQjg8kjViXrZOyolyaM_6kMCP0oZzKA 2025-07-11 02:12:30.164154+00 +8bfdvbe898j1ieyvjmsaz311ml1qnhzu .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1u1nL2:E3biTzIAc4ga6q8l0VlsC3q5PTihrtipi5iIf7n-nXY 2025-04-21 14:20:36.797787+00 +udfvf45fd7us2tttoypq56e9c5lxz06p eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjd2FhYnQtZjdiNWM5MmNiMmFhNTk0ZDNjOTY2YjliMGY4MDM1ZWEifQ:1uyyWn:6mXpGZLHU3QpjKNIeT5gFctTI2fWP43nGlKgRwK0Ws4 2025-10-01 20:13:21.78276+00 +okcoalvtkxmauwok21zkn4gtcpb1yoic e30:1uHZaK:WKiMxkZOM5E-XyYZpz8iZOaXg9kShe7RxmPF9XsL1o8 2025-06-04 02:53:36.737579+00 +d84e8s24t78ww8e5vo5okcuqlgf53z74 .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1uEzFt:R7crOEFBo3VVYgF3MJ8CcGOZIrThbQzHzjAsbvmaXWk 2025-05-27 23:41:49.096612+00 +ekc4lo3b7g8ar2f7xeiqamoet6ui6zh0 .eJxVjM0OwiAQhN-FsyFdLAt49N5nIAu72KqhSX9OxndXkh70Npnvm3mpSPs2xn2VJU6sLgrAgTr91onyQ2pjfKd6m3We67ZMSTdFH3TVw8zyvB7u38FI69jW4LIXMGgEHZwDeAgckCwjOkmd9K444o4p2D55_GaD3hBaKVB6q94fPjM4JA:1uRY7G:Av6RIwD-YQd2nIOVhSyhfdDg6O3sV6EvAjstzt4c71s 2025-07-01 15:20:50.85944+00 +jkpkaobqs3llbk4lq8fvkjyfhji6kyk5 .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1uLO4F:HRdXxqHUpKJC7pgB43BAzVYaksKtLlNR6BHSQJkZsqk 2025-06-14 15:24:15.978467+00 +d6n4v9buhp95hv8223iegns6uu82h85j .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1uYmDb:z6WxdiiQVYsuWKeNrOuO4QpA2oN7ZOKrxAGV4Q8TMvo 2025-07-21 13:49:15.275341+00 +2d6z6tel7ugbdwhfoktsfqxlufl5cdjp .eJxVjDsOwjAQBe_iGlm24x-U9DmDtbve4ACypTipEHeHSCmgfTPzXiLBtpa0dV7SnMVFaGvE6XdFoAfXHeU71FuT1Oq6zCh3RR60y7Flfl4P9--gQC_fmsE6HZnATNlbRHZkyakYwBHFM6mAhj0D4oBGD9mDIR_RZ0VqwiGI9wdc2zlw:1uUzoh:ecgxaohGmch1zk3Z241BaGY7fF9ZlsSSpqh37m3RZGM 2025-07-11 03:31:55.950848+00 +lhw28ky7c6kyvsj4e0n15vf7q82rpdpf .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1ugSTj:b5IOlazwHmaXyD6huum4Bw2auKUYxEhJWYrwPciD5Kg 2025-08-11 18:21:39.221736+00 +csqnxe36mg33pz6lmlcz9ekrz2ewm1ok .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1upSEa:4FxF8KKYlN8Fyv6IK2UG3oznc2Mc7TDQfbVkEbykMis 2025-09-05 13:55:12.211694+00 +0woseuf3k47lexnnidpomr872p2bv72d .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1ujlqu:-mhUd7W4BMHPfZ9qbJHU-daHruyNSyFpPHgZV6oSE-U 2025-08-20 21:39:16.052306+00 +kfza9knyx55w31il4c61rx9x9yhlcgpi e30:1unMYG:mzG7ffJzHuewb6azwINvzsiqOMW3YgmK0Fki1rsitmE 2025-08-30 19:26:52.817683+00 +z78rgvdgr202y9xh25lpi7nxjs1ixm0t .eJxVjDEOwjAMRe-SGUUOsWnMyM4ZKiduSAGlUtNOiLtDpQ6w_vfef5le1qX0axvmflRzNo6CN4ffOUp6DHVjepd6m2ya6jKP0W6K3Wmz10mH52V3_w6KtPKtiSJw4gQ5YA4kAj50yMjRYyaQYyRAJD455yGCoHcps4oCd6oumfcHNiM31Q:1v15Y6:qWYzilzuXKZKkOIUzTwqkK_YI9Up8SUhfkQZC6--_Lg 2025-10-07 16:07:26.67818+00 +xh1uveso0rf51mwn4wvauzq67mgqenoy .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1u1nUg:_BhQJRU5bV5qC76W2NiOi4O7oSkIoYFSITyBbyD5mjQ 2025-04-21 14:30:34.220743+00 +zhbuixx6ais181093gwdomaepsgfwota eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeGtja2ktYTM1NDRhYjFhMTFiZWNhNTYyNmYwZWViZWVmMjc1ZGMifQ:1v7zYF:NLMHr6MnOKy8l5RvCaZMg4ReL4dyCqe4fwCCgZ2kqgk 2025-10-26 17:08:07.193272+00 +act5sr4yp43zdtratt94sxs5oyad55fi .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1u9mER:lTyjF7S4nM1X7fRxu87f_-6jJ5fPsLcRERtmmOLb0tc 2025-05-13 14:46:47.425927+00 +5nunfb5a1y035uqhaip430k11d8vjq9y .eJxVjEsOwjAMBe-SNYrqmiQNS_Y9Q2THDimgVupnhbg7VOoCtm9m3ssk2taatkXnNIi5GAAwp9-VKT903JHcabxNNk_jOg9sd8UedLH9JPq8Hu7fQaWlfusciubiKLuisWFAwAxAELzz7Fo4B_ZeWdChhKbpsA1RqNMYi2DLaN4fOWQ4MQ:1uHlLW:RsNbyg1qy0kvYTTRJudkvZDcPy2XVGJEsFz19qFQvMM 2025-06-04 15:27:06.18324+00 +znq0ll51lfsru5d8ieifrn9ba765xet2 .eJxVjMsOwiAQRf-FtSFAebp07zcQGGakaiAp7cr479qkC93ec859sZi2tcZt4BLnws5MSs9Ov2tO8MC2o3JP7dY59LYuc-a7wg86-LUXfF4O9--gplG_tQhWgAdQQmsCMkGCQzLonFFWSKW0kZoQShIa0SkjJwHOB7IOMdPE3h8eRjgR:1uFCdC:x3yMLDSbQXAy9rznIMxjsF1B7oIoBKMf7gdXiZmtG9M 2025-05-28 13:58:46.993234+00 +voeyj3lkl6hxwnomyi9qhv5nrrlx3xhk .eJxVjMsOwiAQRf-FtSEwdIC6dO83kBkYpGrapI-V8d-1SRe6veec-1KJtrWlbZE5DUWdlbWgTr8rU37IuKNyp_E26TyN6zyw3hV90EVfpyLPy-H-HTRa2rf2HAMUNgaqLwixGNtxQEbvjCMxmKH3VToHEqsEiX1PlR2ETBURUL0_Gow4Cw:1uRs2W:__EA_K-E2uDCVd5CobEzPxR-Fj8ilJTAKXyd-5gUq10 2025-07-02 12:37:16.516863+00 +ktlv665yrejklzknip5jniemonef28mp .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1uLO4G:9BKrPwvIHBhIdSeo3rxnwuF-OHwbw2ypWl4lv6n4ZDQ 2025-06-14 15:24:16.851073+00 +c3h1zf3p2wj03v8iz3g05umhw6sw6bb4 .eJxVjMsOgjAQRf-la9OUtsxYl-75hmYeRVADCYWV8d-VhIVu7znnvkymbR3yVsuSRzUX00Q0p9-VSR5l2pHeabrNVuZpXUa2u2IPWm03a3leD_fvYKA6fGsq2hMzN8oNqAvOQwitcsIeoiB6UO8xiUh0GoJzqRU8RwboMUUP5v0BSok4CQ:1ugVvu:DXLmizU8KBBdEsRCbemswHn7UOdHTr_SUOnWxMWQMhc 2025-08-11 22:02:58.276991+00 +lwl3o8cito6bqiv0hcswsztrlkj1bsgj .eJxVjEsOwiAUAO_C2pAH5evSfc9AHvCUqoGktCvj3ZWkC93OTObFAu5bCXunNSyZnZkQip1-acT0oDpUvmO9NZ5a3dYl8pHww3Y-t0zPy9H-DQr2MsbRSspT8nECZ5xCo4zXiZzX0kl0WhgAstfoFEzeI4EEEtnKb56kBfb-AAfYNuo:1upcow:c4HDj41clxNI5CI3CH_eE02MPYBx-LDd0EtoFEc0ecM 2025-09-06 01:13:26.219546+00 +meiuajko011hyzs9nahij9sam91h3zl4 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdW15emUtZWZhYjg4YTgzNzhkMDY3N2Y4MDM1OWFiNjk1YmU5OTgifQ:1unMXo:qseJoDfSGbHRIa86ZirE9tQ6nTOy-mdTLEM83BEGmyk 2025-08-30 19:26:24.734109+00 +js2qljym7o8k67wkca45elqav4ipulhu eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeWJzbXQtMDUyMDBjYmE0N2IyNGNkZmZkYWRjOGUxNDg5NmZjMTEifQ:1vDMg4:gEmZZEHszHIqZDwhTzE5t-5B8nDsGpu8skLFoPe67rI 2025-11-10 12:50:24.323248+00 +r8ovc8c92yofex5mtdfci04v9xl6qpaz .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1uVEXl:ib4jTOPsxaCbeF8_3X_p1790sXcBFjR1kibZZqgUamA 2025-07-11 19:15:25.617083+00 +i2nbqjr227symoigfsvg4hmh07mzs7oq .eJxVjDsOwjAQBe_iGln-xfZS0nMGa9e7IQGUSHFSIe4OkVJA-2bmvVTBbR3K1mQpI6uzSjap0-9KWB8y7YjvON1mXedpXUbSu6IP2vR1ZnleDvfvYMA2fGuK6BhiMgy-AwPRes6AxrIg2GDQBXA5UwxSfa6JvO1tCBShc71Ir94fEP83vg:1utQ7p:XfeWf8aQWgmj-G9-9oc_o1_UDo986WHs13L4hK3q8m8 2025-09-16 12:28:37.287182+00 +5n0bqn97nfaxy4h984jupz4t14tkk7k8 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdzB3MDItODUxZDAyMmJmMjkxOGUyMmJhMWRjNDBmYjlmODM1ZGEifQ:1ux8QU:vf-ZWlpOV9qGM5p0YkWHb2lsEkB0vDYn0Vuf8TStiCU 2025-09-26 18:23:14.634166+00 +nzg2v09sayrxi47f08jf1mfqvc2e6swt .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1v15kq:F-Y5_QyX-Qtyw1pO-3EjjxESoodDG1vp_xnJoJjsgXU 2025-10-07 16:20:36.671633+00 +rumz14bal7z8ls8hj8a00c2w4wihx3cq .eJxVjEsOwjAMBe-SNYqcuE1cluw5Q5XENimgVupnhbg7VOoCtm9m3sv0aVtrvy0y9wObs3HUOnP6nXMqDxl3xvc03iZbpnGdh2x3xR50sdeJ5Xk53L-Dmpb6rb130aGiNioKhJCJoGHEgF5RYscqLRUgAA4UlJGBRUrHUbnxrXl_AEDrOH0:1vH9OJ:l-dXp9WCKa4s4c4f84QxqjeYftdhWzuYqbk6f7UKTE8 2025-11-20 23:27:43.107944+00 +lon8d9qlq1lfnvjrc9ggod7s3sb2yo9u .eJxVjEsOwjAMBe-SNYrSOq5rluw5Q-UkDimgVOpnhbg7VOoCtm9m3ssMsq1l2BadhzGZs2kbAnP6nYPEh9adpbvU22TjVNd5DHZX7EEXe52SPi-H-3dQZCnf2gNnVKS2p0akc0CpI4ZE5B1C7jUwOdQMIQPGxjEhd9HH5EXRszPvDy2LN54:1vL6n7:jHUbwIXsAnD5Jl6LvUHvWoVR7LkA0aqgEqyVHBM5VDg 2025-12-01 21:29:41.257632+00 +pvkmzl5zhxhus7rp41akzxocs76mhzth .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1u1skH:3WhP9StLiOdIrgUDgWfwwCOnrdTk2wSlMNqR0sezrhw 2025-04-21 20:07:01.373454+00 +zd8qqwbb4rmh2ceontgrvjjulytqji35 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjd2FhYnQtZjdiNWM5MmNiMmFhNTk0ZDNjOTY2YjliMGY4MDM1ZWEifQ:1uyyXC:dnX9HZs1gp2HN2ahkIlOCjZYcV-aCGZ5hV84cOQHe3M 2025-10-01 20:13:46.589432+00 +8laa9d2r85rtjq5ciogbfnnlb46rxvqy .eJxVjDEOwjAMRe-SGUW0dpyGkZ0zVIntkAJqpaadEHdHkTrA-t97_23GuG9l3Kuu4yTmYjoAc_pdU-Snzg3JI873xfIyb-uUbFPsQau9LaKv6-H-HZRYS6tzkD5TRCQXQXDwmBXUsTAHpOHMlEETOK8pCzmfCdh16AUpuNCbzxdLNziQ:1u9nbR:yZt7Vc6x72K-3iIMQI4AKHB7iAelgvXTnvNEL--CRAo 2025-05-13 16:14:37.070426+00 +m3rjp7h98hc6pysyes33hvy6lb8kf9w6 .eJxVjMsOgjAQRf-la9OUtsxYl-75hmYeRVADCYWV8d-VhIVu7znnvkymbR3yVsuSRzUX00Q0p9-VSR5l2pHeabrNVuZpXUa2u2IPWm03a3leD_fvYKA6fGsq2hMzN8oNqAvOQwitcsIeoiB6UO8xiUh0GoJzqRU8RwboMUUP5v0BSok4CQ:1uHlkZ:9HhXF8PJ63c_jOfHXPzQrxWEYmywu-dle4jJ8gjPMQA 2025-06-04 15:52:59.407319+00 +04e034yykboa5hl86mvv7wee349vypeg .eJxVjDsOwyAQRO9CHSE-NmZTpvcZ0AJLcBKBZOwqyt2DJRdJNdKbN_NmDvctu73R6pbIrkwKZdjlF3sMTypHFx9Y7pWHWrZ18fxQ-Nk2PtdIr9vp_h1kbLmvlQZNZpAQJiWkNYM3gDpJK1WakMYRyAYQkcB02gMRtUpeQ1c9SPb5Ai4sOBw:1uRyoI:WosXR0z9PQNvIqwOaA4AL4szlrP6TUFtCLaHe0wNKQo 2025-07-02 19:51:02.270827+00 +09kvckvg83rkbr1q74tjf17km19c4c7b eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjczdoaXgtZjhmMDVkZjA3YTAwMzAzMDU0ODE5NjUzMTI0MDM5ZjcifQ:1uWEim:nE2_Fr1ZQOUcZ1fnedna83X8UAaiVEvT5Bj8-tPERuk 2025-07-14 13:38:56.399341+00 +bhwl9fy1otc7y9hb6tcf2c1pks2ck6sb .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1uLgdB:4yf30mFwuRMTMVxXXJ_1EF8RCP3DrcYpd5jPXUi-Omw 2025-06-15 11:13:33.305134+00 +dyqt6ew5y6xzmh8ahtk9zq4nt5drsthx .eJxVjEEOwiAQRe_C2hAcBhCX7j0DGWBGqqZNSrsy3l2bdKHb_977L5VoXVpaO89pqOqsIoA6_K6ZyoPHDdU7jbdJl2lc5iHrTdE77fo6VX5edvfvoFFv39pndJZCAQfRcLE-OmcDivFVihEKmDnGIyGgD-QRxJ-YrRgRBBJU7w8bTjga:1uYnJi:IVT23m-4GohyeUzMnQ0vfhZ3bun0xN7EvdTeGvIqhYo 2025-07-21 14:59:38.112342+00 +6yzwi9q7uqs9fdna3rr2y3yoj69goqxl .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1ugYD7:i32KC3H4oHDVb1cm0ujMvB9ZJeTXkfSa9Q5IJXLRgog 2025-08-12 00:28:53.094348+00 +l4l1qxe3foy2o8mw71kpswpdhmnmz34k .eJxVjEsOAiEQBe_C2hA-DahL956BQHcjowaSYWZlvLtOMgvdvqp6LxHTutS4Dp7jROIsdAggDr9zTvjgtjG6p3brEntb5inLTZE7HfLaiZ-X3f07qGnUb12082CBuCAdmR2yC5mtsVCgqJxY6WBOjJ5AKw0eDKH2hMUr4xOSeH8AdBo5JA:1v1ALI:w6O6qZQL4nQjEfPoy0CYz2ywYbo4Ik0osQSZ_KTjD3w 2025-10-07 21:14:32.525841+00 +ndhklxjjb5hjsrx8l3nv1uviszwrf1j2 .eJxVjEEOwiAQRe_C2hCGDlBcuvcMZIYBWzVtUtqV8e7apAvd_vfef6lE2zqkrZUljaLOCjof1Ol3ZsqPMu1M7jTdZp3naV1G1ruiD9r0dZbyvBzu38FAbfjWaDhb8Jyd7cQAFDQBonCxEaCL2AfjsM8Fe6TKJDFartUHcEKuiqj3BzpkOGk:1vL1YF:G3NS88znkqP_o38fBpIoFiRngvySyp0QaU680aVtwHE 2025-12-01 15:53:59.616332+00 +u5hv0oqtgr5rv86tpj8ugscer0txgig6 .eJxVjDsOAjEMBe-SGkUkcT5Q0nOGyGs7ZAEl0n4qxN1hpS2gfTPzXirjutS8zjLlkdVZmRRAHX7nAekhbWN8x3brmnpbpnHQm6J3OutrZ3ledvfvoOJcv3URQvBF4sAALoXCCYO1xkUxBhJC8WT5RAROxBfP6GLhaK2YIxEF9f4AefI5ZQ:1v468l:v0sTQRmSy7sPpvmW30PAJTQCP7Sc3oxCsb01i1vHxu4 2025-10-15 23:21:43.312169+00 +cg07qez0w1pmkyz56htdi93v6atay3j7 e30:1vL6sf:grMQ-DwIOVF4ltjKNGfLpMhNL70kzvbQQfXm2gKAUKc 2025-12-01 21:35:25.287939+00 +hmtqrwzooa01w3025tmced6xpz4swywx .eJxVjMsOwiAQRf-FtSHDABZcuu83kBkeUjU0Ke3K-O_apAvd3nPOfYlA21rD1vMSpiQuQnmF4vQ7M8VHbjtLd2q3Wca5rcvEclfkQbsc55Sf18P9O6jU67c2ygDykLwbrE4as4UI7ICwaIMMJmZtExYkpsxclDfeKA2O4IyaWbw_Oqo4EQ:1vDMgK:KbLxQi7olA8THfkRXO_PTwFx4OtmsOBBBhpgGAUSw1w 2025-11-10 12:50:40.12899+00 +jxrpouxm8r9siud8sg49ohqo12ayz3y8 .eJxVjEEOwiAQRe_C2hCm0inj0r1nIMMAUjU0Ke3KeHfbpAvd_vfefyvP61L82tLsx6guCpDU6XcNLM9UdxQfXO-Tlqku8xj0ruiDNn2bYnpdD_fvoHArW42UIUfsORIZCYMwUDYg1lq0zpABpiA0YMeE4NCY7MSFs3SbYfusPl8n4zeO:1ux8RG:T-22o6kPaIpE__aW-gOxVjz--acLX36cPH_FjwqraA8 2025-09-26 18:24:02.84974+00 +sfl4xffnt3zjjse20zd3zu8zfpoz900h .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1u1tZi:Z-tEVrFLBXnO_mK7ndo9K0EGZW_5NssN7ZVP27ue5IU 2025-04-21 21:00:10.471012+00 +5i1the598x18gwcy86rftwy66te5d9fd .eJxVjEEOwiAQRe_C2hBHYIou3fcMBGamUjWQlHZlvLuSdKHb_977LxXituawNVnCzOqiAIw6_K4p0kNKR3yP5VY11bIuc9Jd0Ttteqwsz-vu_h3k2PK3dpYkIrBnpAmZjsl7K2dvjThBSmk4DeyAxCYgYwg8IqCgxR5MrN4fSZU5CA:1u2EXl:lRqka0ElqlrFanRecLtSEfFl6D-lRUnVtPQjXbg6P2w 2025-04-22 19:23:33.092217+00 +ljq3ymijelz92oeu37ba8dwkztx8rdc4 .eJxVjDEOwjAMRe-SGUW0dpyGkZ0zVIntkAJqpaadEHdHkTrA-t97_23GuG9l3Kuu4yTmYjoAc_pdU-Snzg3JI873xfIyb-uUbFPsQau9LaKv6-H-HZRYS6tzkD5TRCQXQXDwmBXUsTAHpOHMlEETOK8pCzmfCdh16AUpuNCbzxdLNziQ:1uFLii:0bxHGdibO8s81Cm2878kWIjVvXdXFsSpLN020WIBWuQ 2025-05-28 23:41:04.068487+00 +61cmibb2hcuwsfkl1es7iv6fhw6i6m8k .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1uIU4a:7x3o7kbXvBuMeL-PEMj5KdREi1ljj6gmnbbn2QGpedw 2025-06-06 15:12:36.117582+00 +nryng0gq7k0uukp69brntc9r2xval0aw .eJxVjMsOwiAQRf-FtSEgz3Hp3m8gA0OlaiAp7cr479KkC93ec859s4DbWsLW8xJmYhcmtWen3zVieua6I3pgvTeeWl2XOfJd4Qft_NYov66H-3dQsJdRxzQN2WULCpyXqHwyQhuwADmqMw1mJrLKYARQNjmnDekoUZAg8op9vkEpOII:1uYrnH:_3IUtQd6lkqYkqDGPg_3xn2HC8jhZw_pByHfwAhHK6M 2025-07-21 19:46:27.587591+00 +xq9v6fas1ce0sih5cuvkqyb76zj4yvnx .eJxVjDsOwyAQRO9CHSE-NmZTpvcZ0AJLcBKBZOwqyt2DJRdJNdKbN_NmDvctu73R6pbIrkwKZdjlF3sMTypHFx9Y7pWHWrZ18fxQ-Nk2PtdIr9vp_h1kbLmvlQZNZpAQJiWkNYM3gDpJK1WakMYRyAYQkcB02gMRtUpeQ1c9SPb5Ai4sOBw:1ugotp:VebmFErafaubDIQJn2ZmStvJtaETSPERP4hF0vrUwCY 2025-08-12 18:18:05.457311+00 +edfp2nreczhcpr5zkl8pvipoy15s3xhf .eJxVjEEOwiAQRe_C2hCgQBiX7j0DGZhBqgaS0q6Md9cmXej2v_f-S0Tc1hq3wUucSZyF9s6J0--cMD-47Yzu2G5d5t7WZU5yV-RBh7x24uflcP8OKo76rYu17KwH49WEhm3R2WuVUyAMTmGi4AqlSSGgBUcEWmcAw4bAAqIW7w9Uwjid:1upeaD:04DDtW-aBC1OexDQl3Qub9jeS3HNoixwNNYQtEF_0Q8 2025-09-06 03:06:21.934441+00 +o3p3bcqtti5e2fuyfv93o35tx7qvteqr eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjczdoaXgtZjhmMDVkZjA3YTAwMzAzMDU0ODE5NjUzMTI0MDM5ZjcifQ:1uWEim:nE2_Fr1ZQOUcZ1fnedna83X8UAaiVEvT5Bj8-tPERuk 2025-07-14 13:38:56.989721+00 +vipnl46g10j8d57qpl3gazafyxdv1p9g .eJxVjEEOwiAQRe_C2hCElgGX7nuGZoaZStVAUtqV8e7apAvd_vfef6kRtzWPW5NlnFld1Dk4o06_M2F6SNkZ37Hcqk61rMtMelf0QZseKsvzerh_Bxlb_ta-BzQQCJBT1wuDF2eIHdJEaLydLDjuUiRPEwNB6EkSu8jkkoiN6v0BeLM58Q:1uyyZW:ulC1aNRUqzk6qj19viKI-ty3xrGTLrYCmEvwYQd2_Yw 2025-10-01 20:16:10.371313+00 +u85ioah0e8wlbsdzuew2x04z1d5n2ar7 .eJxVjMsOwiAURP-FtSFCebp07zeQC5crVQNJaVfGf5cmXehy5pyZNwuwrSVsPS9hRnZhwk6GnX7rCOmZ687wAfXeeGp1XebId4UftPNbw_y6Hu7fQYFexjonqbwCYVDIM0kJekQitAqjt8qjBjd5SWBMAnQ4ZbJueM6QcEkr9vkCVps4jQ:1utaJd:O49dnxqraaTje7WQ2RQINbMk_AdFD56T3rXtrihzYqg 2025-09-16 23:21:29.24066+00 +pxcy5xw4t2mndvdg12dcmeukv2fzaq5l e30:1ujrVq:A6-FMHBlN8yUhW0pOubESSQ6B4W_FbFxzuDr_Dc3WWM 2025-08-21 03:41:54.656914+00 +ovjodqqqoegpri89et7bnw7gr3j4smhz .eJxVjDsOwjAQBe_iGllevP4sJX3OYNm7DgmgRIqTCnF3iJQC2jcz76VS3tYhba0uaRR1URAjqtPvXDI_6rQzuefpNmuep3UZi94VfdCmu1nq83q4fwdDbsO3dv5sYkVgMOTEijgoxGJ6Bx5K9JYjAfpqmXsCGwxVCgZBCNEHdOr9ATWyNzQ:1v7zbD:jrDxcfFmiI6nziWKvRrvf3xCeoesBF-jM0-YjtgMKTQ 2025-10-26 17:11:11.038039+00 +qtmrept9urnxw7gome6ynrzij5ng2wpk .eJxVjDEOwjAMRe-SGUVpajcJIztniGzHIgXUSk07Ie4OlTrA-t97_2UybWvNW9Mlj8WcTYcJzOl3ZpKHTjsrd5pus5V5WpeR7a7YgzZ7nYs-L4f7d1Cp1W-NUHrvgiQsnpG8xIj9wIOCQ0D2SZzzSh0rgGrkMKgLFARBAJJ25v0BP4Y4DA:1uncky:i3GIlN8OWP3pqLnl0jumlfOKvvxo_ZA_npRqA6d46NE 2025-08-31 12:45:04.43975+00 +1mqqpki77fn5507t522on1ygtax3vpe9 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeWZvc3YtMTQxNzU1ODQxN2M1ZTZmMWRkNzhkMzFlYzFiM2ZkNTMifQ:1vE7xN:l-7dXj9e8q0rlLQAzPKxQtBYzc0Ao71NqNUA-uNdgas 2025-11-12 15:19:25.634085+00 +8s2v6tmzozd6rqj44uihlooc7efmcl2p e30:1vLKjQ:J_r3D4Ic9OF5bLD9oB0nSAN8NOJIkKaQ_68ZchEiurQ 2025-12-02 12:22:48.600987+00 +ekr1wt7xufctkixo6ecdu66nonrgkvvy .eJxVjEsOwjAMBe-SNYrquHEIS_Y9Q2XHKS2gROpnhbg7VOoCtm9m3sv0vK1jvy157ic1FwMYzel3FU6PXHakdy63alMt6zyJ3RV70MV2VfPzerh_ByMv47dOoAQeIjhsoBFpQ8MDIgs5JSUXCVsm76KojxpCcDIonokYfOaQzPsDCi43oQ:1vHMHE:GjuY0Pi2aH1rCzoAAXLnZp5JjtB-4vtnpanZkeDC6-M 2025-11-21 13:13:16.900991+00 +et5fv47gg6rg3j3bxkfalec14qjfh4tw eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjcm1mdzMtZTgyYjQxZTFmMmJkYmVkYzdkODdkZmZjN2YzODJlNDUifQ:1uS7HA:wynwGv9R6XL4t0H4ql3UcyTIGSH_uFkUtboQNa5cwcI 2025-07-03 04:53:24.318262+00 +zskm81c00shcvj4aqsvk9yirut5ha6fb eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjczdoaXgtZjhmMDVkZjA3YTAwMzAzMDU0ODE5NjUzMTI0MDM5ZjcifQ:1uWEx9:Ggtvd9xUGTdurvTPT37G4TORq_it1ahmGQrzdnfEdhA 2025-07-14 13:53:47.964453+00 +7qc6ksub74v8uwr2dcmsq3ct28kl4a7l .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1upyzM:Gak2kGoTKRwO0LbKBe_s-jhp8fz22PSZYx13H00IwnU 2025-09-07 00:53:40.983589+00 +e26ea9lxen0zgq6up3b7zdbkwwbyk20q .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uLthe:Cu_ddOxrBNM4DuHvzppD-izg5SW9bbC8DT1byeDQHWk 2025-06-16 01:11:02.131518+00 +d19zmr45jp8d7dkuhwz3godx3ul7agg0 .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1v82Iw:PFuWUvbgEvrFlSjR54k4gpHqeZhM8rr60tIH0EledVQ 2025-10-26 20:04:30.440972+00 +snct8ho5p4gatcvdl1prihw3s8w758ki .eJxVjEEOwiAQRe_C2hCgUsCle89AhplBqgaS0q6Md7dNutDte-__t4iwLiWunec4kbgIPRhx-qUJ8Ml1V_SAem8SW13mKck9kYft8taIX9ej_Tso0Mu2zok9W_SWgiNNg8PEmGzmQbsMQW2UR7IqW_Ceg9FWq3MGoxgoEI7i8wViADlq:1ugvAG:QFjpf6PhevAKKjtVFMwIn83TkrPJq_nTTYBkJm4Wm6w 2025-08-13 00:59:28.978467+00 +8fi67bvncvv95elt8y6e8pr4icxv3yd4 .eJxVjDsOwjAQBe_iGlm24x-U9DmDtbve4ACypTipEHeHSCmgfTPzXiLBtpa0dV7SnMVFaGvE6XdFoAfXHeU71FuT1Oq6zCh3RR60y7Flfl4P9--gQC_fmsE6HZnATNlbRHZkyakYwBHFM6mAhj0D4oBGD9mDIR_RZ0VqwiGI9wdc2zlw:1uteqA:vk1f385Wpjpu1duTDaQ5TZZuSNrmvYa0HlgLLsPHQj0 2025-09-17 04:11:22.215677+00 +vvvofbunagoki10e10orbzykoy9nky76 .eJxVjbEOgyAURf-FuTEQFNCxScfWxnQnPHhUWqOJoIvx36upQ7uee--5C9FmSq2eIo46OFIRRiUjp18Mxr6x3zP3Mv1zyOzQpzFAtleyI43ZdXDYnY_un6A1sd3W6KCQljkBinNpmOeqzJ0oSgncFpwZLx0FLrwvmFeQY4kqp0CVyYWlIDbpjGkOMSTtQ5dwjKRayBfEZBJuJ7daN5d73TzIun4AX-VJZA:1ub4eB:UOspTgW5J_FeoOUPZ4IJpzytsWxMaB1C4yQB6nXwRfg 2025-07-27 21:54:11.420124+00 +cfljkrbglhhyq0zmgxpple7eqlxs21oq .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uk1dP:yey_yfp5LKfM2DEMGsGlUcgaB7hKcdWSIuBc5-mSWgs 2025-08-21 14:30:23.385775+00 +uwj7kzecc4cpidsxtxsvienhopcwwjf7 .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1uz0f6:W7cZNdPYUEAc52BIPU5-lbGEFFFvCZ1XhNBuKrMb5Jc 2025-10-01 22:30:04.930076+00 +vknyjr2k3wg9hozf1tta5x9obm3e2hmi .eJxVjDEOwjAMRe-SGUVpajcJIztniGzHIgXUSk07Ie4OlTrA-t97_2UybWvNW9Mlj8WcTYcJzOl3ZpKHTjsrd5pus5V5WpeR7a7YgzZ7nYs-L4f7d1Cp1W-NUHrvgiQsnpG8xIj9wIOCQ0D2SZzzSh0rgGrkMKgLFARBAJJ25v0BP4Y4DA:1unckz:PIGaH6Jij_iAyxM-cDk2Nm6t7CjioVkwMQfnAcE1_bY 2025-08-31 12:45:05.399296+00 +a95vzv33k3u7zvv1pxbokrd4ftxq6tsk .eJxVjssOwiAURP-FtSFAeVxcuu83kMtLqgaS0q6M_y5NutDtnDOTeROH-1bc3tPqlkiuhCuYyOU39hieqR4sPrDeGw2tbuvi6aHQk3Y6t5het9P9GyjYy2hnK5maAJjxCRRwjUkqpW0wVnlkOmfNAmo9nJjHi5ijB8YteBGEkYJ8vjj2N9I:1vLOOJ:kKpqBUK117eqjVFCJg0wdt4CpJVtpjA2d0dqTZG08Ms 2025-12-02 16:17:15.29708+00 +02bqwummdlz53gydy8jh3e6p5ap1s7id e30:1vE85R:80GEPI9n5HhYZqVoE7Fufv1FP6nAHrHdo4Q2yjoc1lg 2025-11-12 15:27:45.915481+00 +kzntxtetslsowqn8he25gudq9p1muaa1 .eJxVjEEOwiAQRe_C2hCgQKlL956BDDNTqRpISrsy3l1JutDNX_z38l4iwr7luDde40LiLHTwTpx-7wT44NIZ3aHcqsRatnVJsivyoE1eK_Hzcrh_gQwt9zKPQ-DRmoCGBiZvJ2vQpwkIAnhHRilE7cCFYNTsvaKUwNr5u6xVEu8PVt847g:1v47k5:hRzHMNQTMWzUonWu_wkg6VT76S4NRKFz1jTUx3BNHlo 2025-10-16 01:04:21.73534+00 +wvmrhqamm2y2neewijgur9tc5mbfyyn8 .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1u2sLy:FV8AWsdxSLhnqnd0gprcoSehmDoX3G8HRQy7nTBN17U 2025-04-24 13:54:02.631253+00 +kna0jq95l081849ve6uercqodj8zuko6 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjd2F0ZGQtZTllN2RjYTUzNWIyMDE2ZjUyYzdhMGE3YTU5M2NlYTEifQ:1uz4tI:yrO-LkDqsQYK4DHA_BioF7v3HGcBXhJ6AdtYEil10cY 2025-10-02 03:01:00.066539+00 +qmn7bfopjgp9j6xm6g1yw9k4yr3u15ma .eJxVjMsOwiAQRf-FtSFAebp07zcQGGakaiAp7cr479qkC93ec859sZi2tcZt4BLnws5MSs9Ov2tO8MC2o3JP7dY59LYuc-a7wg86-LUXfF4O9--gplG_tQhWgAdQQmsCMkGCQzLonFFWSKW0kZoQShIa0SkjJwHOB7IOMdPE3h8eRjgR:1uJGwV:k-cJokCD359nl6pQOS08hXvfd3zOe5wobsEcXHy_vbg 2025-06-08 19:23:31.753551+00 +8fu2a2znpw2nmxe6xl8xlnuxftus7dq0 .eJxVjDsOwjAQBe_iGlm2_Kek5wzWrneNA8iR4qRC3B0ipYD2zcx7iQzb2vI2eMkTibPQKmhx-p0RyoP7zugO_TbLMvd1mVDuijzokNeZ-Hk53L-DBqN9ayZ0oWjyGI0JoKuJyZJ3KaApzmiogRQaX6vTNaLlxNEqVBGsLwq9eH8AXQ04ow:1uqL0w:uSipQrMKB9PMET0FdZ22_D2dmmfOdvHjy0OP2fkQbZI 2025-09-08 00:24:46.625969+00 +iqddam9eil5arv2qyb4m0slx85r5u0xy .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1uM88w:cFH8R6X4oQgjkmbFSmuErq_w768t0rXGBGVJPX8meLU 2025-06-16 16:36:10.75211+00 +7hcmi05e44ra3lx49yaf80s6vssca3af .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1ugvuP:Mkgw_vtnPTNO0xv-ch-WF7fGW8CqyB9PPZFnLIZN7cU 2025-08-13 01:47:09.472143+00 +a1l2sf5fxpy3p6lf8o77hnzylxc9jl3d eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjd25najYtZDA4MWZjNGE1NDE2ODhiYTJlN2YxMzRjMzllNzMxYWEifQ:1v1YM7:YnpnrcE4sdw4V7EYNs0MyR4mIltsw8u2TE8cW25nOIw 2025-10-08 22:52:59.940124+00 +nm05mudxpd3jagvw72tubmi8ck0ylfg6 .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uk1dV:Q9NM0fJnnFY4Xlm7Eqc46wVCiU4DAPcMG6Dc90JGe9o 2025-08-21 14:30:29.578452+00 +dvbvxy6txyz3wjdicz8ugs5evym2w84l .eJxVjDEOwjAMRe-SGUUOsWnMyM4ZKiduSAGlUtNOiLtDpQ6w_vfef5le1qX0axvmflRzNo6CN4ffOUp6DHVjepd6m2ya6jKP0W6K3Wmz10mH52V3_w6KtPKtiSJw4gQ5YA4kAj50yMjRYyaQYyRAJD455yGCoHcps4oCd6oumfcHNiM31Q:1unkjW:kXKxgroIZLwMRPa59G4s4-5s9AJFmwjJjVMYtlZgD0c 2025-08-31 21:16:06.325023+00 +esirdxfg95gzs895sh6cz9g7nf2f3keh e30:1vLgCy:4K4oPRy-nWNOHE1rmCdb8lUmgAcm0CC86cZDbVtpetE 2025-12-03 11:18:44.892382+00 +73mey0pkrcfyg7tyiixxnd9x683l8ovs .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1vE7xU:CkaVg6DR_bWaLT7lp-m5vauw9k-_X1xZzlPM5547kas 2025-11-12 15:19:32.284214+00 +xzs7xj5ilq62wscny9q3u1l97feb03nz .eJxVjEEOwiAQRe_C2hAcAnRcuvcMZIYBqRqalHZlvLtt0oVu_3v_vVWkdalx7XmOo6iLAuONOv3OTOmZ287kQe0-6TS1ZR5Z74o-aNe3SfLrerh_gUq9bm-2wC4jBpIQjKRiGcGfCxWTGNHDlvIpCwq4PKAfkEXEGkCxnotTny90zDly:1vHNGD:7oYPwBwu3oMRpMBiGC6NRvSpGLh-qqiFGR84Fh6mEgE 2025-11-21 14:16:17.381778+00 +sok3sddncsrhhmbgqphsb820ike8k42c .eJxVjMFuwjAQRP_FZxTFNpgsx0ocKRXibq3jTWOCHNV20gPi39kAh_a02pk37yYsTqW3U6Zkgxc7IWtlxOpv7LAdKC6dv2D8Hqt2jCUFVy1I9W5zdRg9XT_e7D9Bj7nntdKgyawltFtVy8asnQHUnWyk6rZImw1Q00LtCQynfBBRq85pYNSBZOlMZQ45FNuFa6GUxe4mPBZie-lDtr9EA2M__KNPASMuo-cilxf3ebSn_dfxdH7pKIWIC8kV1OJ-fwDhoVm6:1ubjyM:Q1gYDw8ucAFwXQSwIAh-RBkWkF2GFd1m8SWBc38rcKM 2025-07-29 18:01:46.12307+00 +gz07n4c7nzhiw2ohjoe8jjhac6stj6l3 .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1u4HJp:ankmWNnhCgMVjS9vp8gd9ci2eLO7ZyfAmnF3JCh6q8k 2025-04-28 10:45:37.541424+00 +7pylnv6hl65zov9i4h9qtxg7fvk9txjm eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjcm1nZHQtZWVmMmUyMjIyNmFkY2UzYjRjZDU3ZTNhM2RmYjQ5ZWIifQ:1uS7Se:q9_OYg6xqNTFmz0khBEO0DlfaMq5PdUafRGO2ncqcKs 2025-07-03 05:05:16.953651+00 +6sxw9ujsn4legs3znbqcuwyqwp6jpohi .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1uJI9X:nNQlpMEJtvigSt5-nXYerqO6MsIrMiIrUWBHmwSC4i4 2025-06-08 20:41:03.722071+00 +bkb5tdm3zksw3sd6s6i4yn7ud4x2a8we .eJxVjDEOwjAMRe-SGUWJnRLCyM4ZKie2SQG1UtNOiLtDpQ6w_vfef5me1qX2a5O5H9icjYcOzOF3zlQeMm6M7zTeJlumcZmHbDfF7rTZ68TyvOzu30GlVr_1UQVUFKWLjOp8kUyAOQXE5IoWDILsSsSQJJICiWOFUxTnuwSezfsDe8I5JA:1uWExd:RhjXEdpHlrvtmqyqP-uLU0wm8hZ9exASII-R2wzALbs 2025-07-14 13:54:17.347251+00 +wc0ule1n5e3ikbn2ak5wk6lmcbz1joj2 .eJxVjMsOwiAQRf-FtSGMHXm4dN9vIMMAUjWQlHZl_HfbpAvd3nPOfQtP61L82tPspyiuAs4oTr9rIH6muqP4oHpvkltd5inIXZEH7XJsMb1uh_t3UKiXraaog3LAkC1dOAfOOSRr0BjNCh0BITJTtJggA0e7STA4UINJLugsPl9guTla:1uh8gV:dHORBQzafeAHdcvvlBeokFY7hcaZhFnTHKILd932ucQ 2025-08-13 15:25:39.528648+00 +mpwojlwrwetgzgxshew82wvhiv32dghn .eJxVjMsOwiAQRf-FtSG8hoJL934DGRiQqoGktCvjv2uTLnR7zzn3xQJuaw3byEuYiZ2ZdA7Y6XeOmB657Yzu2G6dp97WZY58V_hBB792ys_L4f4dVBz1WxsjhHW2eNATCpggGgRNSiuZo8TiIxprcsGEioQAhGKkl6QoWZ_RsfcHO944Yg:1v842o:VRf-a1AYbOXZ0fszNlY9AqLNMjJFP1hLQLLxN74XEzE 2025-10-26 21:55:58.798919+00 +bqamgg5v6wvtfzw1gjivnx012b5b0hh1 .eJxVjDsOwjAQBe_iGlm248-Gkj5nsHb9wQFkS3FSIe5OIqWA9s3MezOP21r81tPi58iuTEpw7PI7E4ZnqgeLD6z3xkOr6zITPxR-0s6nFtPrdrp_BwV72WvIpESIkAPgEEA5FAZG5aTKOstBGQILYncsYFYwSK2DSCNFZ0CS1ezzBUlPN7Q:1uk1fg:E4eRmL4KupDGPZab3xcaf9Q68veWx0q1y0jYhm27rUw 2025-08-21 14:32:44.87091+00 +8g8z80xp5rq2dj65zgqpsf490aacyeub .eJxVjDsOwjAQRO_iGln-ZWMo6XMGa-1dcADZUpxUiLvjSCmgG817M28RcFtz2BovYSZxEVp7cfptI6Ynlx3RA8u9ylTLusxR7oo8aJNTJX5dD_fvIGPLfe2VcUCRwJHyms8KvUojJEiGjTOMCXmwZKwfLVrtuqzNABB1TzcA8fkCHik3nQ:1vLh8i:P52zFkouVN_tkVz1ZnvjNB-MjyrvVmDsVIrYLztyp-U 2025-12-03 12:18:24.312287+00 +y0ci7wd51085pagnfgj1qh7ybewo0z1r .eJxVjMsOwiAUBf-FtSG8Hy7d9xvIhQtSNZCUdmX8d9ukC93OzDlvEmBba9hGXsKM5EoMU-TySyOkZ26Hwge0e6ept3WZIz0SetpBp475dTvbv4MKo-7rEpX1HJPBIkU2WpdomedCcRcVIMhiMjrhWNYe3E51EVZyhk4qaSSQzxcwCjez:1v1YN7:Y7l03sziilLBHLjT5qc5PENQ4_pyGzsfPNX37oI9QG0 2025-10-08 22:54:01.50752+00 +kpxngixe56pn00h0wahptyc8f1l4gklc e30:1vEVLn:dQ4yL1oDS0Pz31qlX4gQIqjWOB3-1CG3Sd4MXCv_kwA 2025-11-13 16:18:11.438915+00 +3vqi1br9t7fbemb9rvw7whfrws5nkzfx .eJxVjMsOwiAQRf-FtSEMDC24dO83kOExUjU0Ke3K-O_apAvd3nPOfYlA21rD1ssSpizOAsBpcfqdI6VHaTvLd2q3Waa5rcsU5a7Ig3Z5nXN5Xg7376BSr9_aMFjQHhWmVLRxzAN5GsniEMlor8jpkZWxERTGki3nxE4ReiJAy-L9AUcvOIo:1uu2mn:mYhB7YpgM4fuBsUGtS0GBepjWOnCXfObOYL2EfxZ2RY 2025-09-18 05:45:29.18145+00 +e9izqipflf2nykwyfcjehfz9mdarlsxi .eJxVjEEOwiAQRe_C2hAcAnRcuvcMZIYBqRqalHZlvLtt0oVu_3v_vVWkdalx7XmOo6iLAuONOv3OTOmZ287kQe0-6TS1ZR5Z74o-aNe3SfLrerh_gUq9bm-2wC4jBpIQjKRiGcGfCxWTGNHDlvIpCwq4PKAfkEXEGkCxnotTny90zDly:1vHNGF:C-zkFhcHkUS_EHLnRAo1ya9m7D_RIvUUSFoRndvemBA 2025-11-21 14:16:19.302708+00 +dbnkvue53rprwh8awuc3rw6sj3dkfk0g .eJxVjMsOwiAQRf-FtSFAebp07zcQGGakaiAp7cr479qkC93ec859sZi2tcZt4BLnws5MSs9Ov2tO8MC2o3JP7dY59LYuc-a7wg86-LUXfF4O9--gplG_tQhWgAdQQmsCMkGCQzLonFFWSKW0kZoQShIa0SkjJwHOB7IOMdPE3h8eRjgR:1u51Ti:gd0q40p2n9-2xa2k4aWyy4QwkGNYuICGsOKOhJvM1vw 2025-04-30 12:02:54.281439+00 +7ul8bxhs7l1y48tfp3u3rgimide4sntv e30:1uSEdE:BY5m_FG1wmXnA05L4xxZZ0ux2yBKNDrY7-MpMSu6ASY 2025-07-03 12:44:40.732504+00 +93flpqv8ff5j280xp9zxrx41vawn5wvz .eJxVjDsOwjAQRO_iGlleh_hDSc8Zot31BgeQLcVJhbg7iZQCpKnmvZm3GnBd8rA2mYcpqYsC45w6_daE_JSys_TAcq-aa1nmifSu6IM2fatJXtfD_TvI2PK2DiTAEIxDNtaAEQ80MnBnqWM_QkSygIIikfs-9uDDFu_JnbuUbFSfL1k6OF0:1uMBbO:GLdLUFJvvqTfuR6bRGCzu9W86tZgLkdog7ws1XAu0tE 2025-06-16 20:17:46.395331+00 +zaftplunw0sj3duzg270fn00a6ezysu7 .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1uhApB:yz6y81QjkuqaJEc7nEDPY3574Q223ICDV6o4AJEE5GA 2025-08-13 17:42:45.731325+00 +hqisbp7qj9zd781x3kkk9cc3akpzi7re e30:1uWGCe:NYMc631kICx2XdKBTbobmCJNA2Z-UaTapHXp3uFdd04 2025-07-14 15:13:52.938619+00 +86u9p4z3as8nbciopdk56xo5q8ok3b06 .eJxVjMsOwiAQRf-FtSHQDo-6dO83NDMDSNVAUtqV8d-VpAtd3ntOzkvMuG953ltc5yWIs9AWjDj93oT8iKWzcMdyq5Jr2daFZFfkQZu81hCfl8P9C2RsuZfT4DSDB0YAAmuMSpNGiKwIUAXjIkdNE4H_bj_a0XnLKYXEPDjw4v0BVKM40Q:1uqWkx:M05JoyNhIu8hiwnmtd9Uy5TsOHnoclqeeIiT1cGREXY 2025-09-08 12:57:03.392531+00 +t0zphcde3zod6ex8mfh9w8ecjnrq1iw3 e30:1uk59A:XB1QjlDU8mba9kR81xgzFszGVAXyLgDNiWED4LilJZY 2025-08-21 18:15:24.55034+00 +fg1qnqplxzrrtngfay33jlsiqaf03rce .eJxVjMEOgyAQBf-Fc2PAApUee-83kIVdCtVoImgPxn8vJh7a68x7szELS4l2yTTbhOzORMs7dvnFDnxP4-HwDeNravw0ljm55pg0p83Nc0IaHuf2LxAhx_o2vGvDTXKt3DWg62QriMAT9wAGCdBIcEIbbrQUThkVpKFQMZBCTb5GVypryqnYkIZCc2b3jSEUqvUSU7Yfop7t-xeQDEgy:1ub1wy:BOgcxqwtqIBosIysbweOumI7KEs5_ThzgSF-TusLiX4 2025-07-27 19:01:24.466683+00 +3c35ldbr0kwxs5kmaqstpfwcc7twfs2i .eJxVjDkOwjAUBe_iGlnxEsempOcM0d-MAyiW4qRC3B0ipYD2zcx7qRG2tYxbk2WcWJ2VMV6dflcEesi8I77DfKua6rwuE-pd0Qdt-lpZnpfD_Tso0Mq39pEFbXSBkIBjFG96IOyyEUw4cOiAUhqC4UQ5ZTs47juOJMY6EQvq_QFXuzld:1vM3bY:6UZz0IlkBy64reGuBtXViO8WoNHqnSO6xeBbFe3IPYA 2025-12-04 12:17:40.040115+00 +hrffodwjx8uoow7g4sft0l1xpipygma4 .eJxVjMsOwiAQRf-FtSEMDC24dO83kOExUjU0Ke3K-O_apAvd3nPOfYlA21rD1ssSpizOAsBpcfqdI6VHaTvLd2q3Waa5rcsU5a7Ig3Z5nXN5Xg7376BSr9_aMFjQHhWmVLRxzAN5GsniEMlor8jpkZWxERTGki3nxE4ReiJAy-L9AUcvOIo:1uu2mo:_ApmM7ALiyqS2BLzfd7M3eiOK-w_VCm1QEC1OcaHrWU 2025-09-18 05:45:30.611028+00 +atcppuavc161hb5ee8r03hepvcv2yle0 .eJxVjEsOwjAMBe-SNYrstGkSluw5Q-XYDimgVupnhbg7VOoCtm9m3sv0tK213xad-0HM2aAPaE6_cyZ-6LgzudN4myxP4zoP2e6KPehir5Po83K4fweVlvqt2xZ8jORYwRMHzKlopxmCsoBSbDCXyBqTQJYOgJOEoNg4QFeCePP-AGqdOPY:1uz4tv:0-2_VA9OzgXb4KvrI-veTCPY3lm51IZ3w8uDVrLaFMY 2025-10-02 03:01:39.149492+00 +2xc73uad3xneanqfdnl5l7xyrhohfqzw eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeDFuZ2ctMjEyNWFiMTczZWFkMjg0NWRhYjYxNzEwZDNmYTcyODkifQ:1v4Kga:fcqBQjkwg46H9p8cd1PzwpVff0JzFGKLPqxob5BBFFc 2025-10-16 14:53:36.583626+00 +0rnpnv3tkantb8jero9y384u13symvyi eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeXd0dnEtMDE0M2YxN2JhMWE1NmM4NzE5NTlhODdhZDQ5MTJiNzEifQ:1vHTyj:WIjTqUo5Zx6j-EQISa-0g42EdnWTnELK6HgHx6AkQ94 2025-11-21 21:26:41.000683+00 +yzjhu4n5h17yb2zh2vdbzna8y7spafz5 .eJxVjDsOwyAQBe9CHSEvX5Myvc-AYFmCkwgkY1dR7h5bcpG0b2bem_mwrcVvnRY_J3ZlAIZdftcY8En1QOkR6r1xbHVd5sgPhZ-086klet1O9--ghF72mlTKwg4G0AkkVCgA1CiEDmbMEoFijmKQ2kmltFUYIVurNZndly5Y9vkCIfM3qg:1u4LWN:Bg7XPpe4BsbfeucPHqICtyzwuAuScYbP6UGVlaGOdDg 2025-04-28 15:14:51.879316+00 +t28i5d92uiam2y5gefd6fv8e1352x664 eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjd2F0aDEtMjVlY2M2MTAxZmFhNjNhODZlZTEzZTA4MzA0YmJhZTcifQ:1uz4vR:Nf8F4l7KkpIia9mGoHOgngrzfQKPJhdS6gfCStQmHxI 2025-10-02 03:03:13.424822+00 +ihagodqsxprp82q3j16bscet2k6cgz9b .eJxVjEEOgjAQRe_StWmYgdLWpXvPQGaYqUVNSSisjHdXEha6_e-9_zIDbWsetqrLMIk5G8BoTr8r0_jQsiO5U7nNdpzLukxsd8UetNrrLPq8HO7fQaaavzWpaxMxUktJIflGBRVFfRN6dqEj11MTOwSWSBGAIzjWSOKDV-zQvD9YNzjD:1uZHLC:TOZf7XLAXd81mARtx4NjuE2VeJmod9LyDYAPO4UV1wk 2025-07-22 23:03:10.733179+00 +piasoab6nvd45xluco4ilp1tkhi3veey .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1uhApl:Icctu_rXAKYMKbxKHxl0PWd5Fs2FHi4IxIg_0M4xItQ 2025-08-13 17:43:21.532712+00 +y9dk6ks253gvkusw5hcjngj6cr1po5xp .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1uMPew:OOxTub4_IOR22VIt9B5HE4KfGs627thIlWGgpNt-gro 2025-06-17 11:18:22.429542+00 +z5y7rtt3ogjtpbsru0vetsg9ll3xryxz .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1uWH0H:Nf28HaUUs-aFs5hiBpAhvG-JN2UnR3PUNxH9uhXIIF4 2025-07-14 16:05:09.094726+00 +cmekovx4ssg14orvh2fa29xkk1m0773v .eJxVjMsOwiAQRf-FtSEDLY-6dO83kBkGpGogKe3K-O_apAvd3nPOfYmA21rC1tMSZhZnoawbxOl3JoyPVHfGd6y3JmOr6zKT3BV50C6vjdPzcrh_BwV7-dbGGk9IYMyoKBOh1pacUdondACMaVKYNYPmwXECGlT0UXunYBozR_H-AFn7OLA:1uqiWA:RG0_M0w57EhMnQM29_mGFGJ7p_fqXWt4Vxp8Ub_UfrU 2025-09-09 01:30:34.661482+00 +n4405k5pvpmf41ez1g1s1owanxa105oi .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1ukMZA:c5plKr8aD0Sp8dC1Ti_wmMeDnEIx844TyqqI2SQopys 2025-08-22 12:51:24.212508+00 +7az013qpasu0d6qgm5ybgi7l21w770rr .eJxVjMsOwiAQRf-FtSEMDC24dO83kOExUjU0Ke3K-O_apAvd3nPOfYlA21rD1ssSpizOAsBpcfqdI6VHaTvLd2q3Waa5rcsU5a7Ig3Z5nXN5Xg7376BSr9_aMFjQHhWmVLRxzAN5GsniEMlor8jpkZWxERTGki3nxE4ReiJAy-L9AUcvOIo:1uu2nI:6BxbnfIKtET9Ejx83bRrY2GctCsHrdPbFT0Cp_qHzEE 2025-09-18 05:46:00.438479+00 +jjj98646w8zvtwouacai5p89nitywdti .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1v1oNT:N_m73SHPfrXsRB-zlB-A6SB0Ta0AaUqXzp2a8M13vs8 2025-10-09 15:59:27.848418+00 +49ypidkggrvlt15vsp3ibisnwjens92z e30:1vMRCU:puQx1822dzybpWeCtDicHmsR6S40Nm5aGX1yEt1G_8s 2025-12-05 13:29:22.357348+00 +ev8q3fqwkrkdrl9z4ls77163nr47d6ap .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1vEVc3:8NrD0VLZ5UMlwJlqtcfVg7h65jgsAWQoZZ8aprhdMWU 2025-11-13 16:34:59.975845+00 +9053vm8gn9u6i1wx5xf16h12xd9z3ptn .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1u4SE0:xq_0QNuHGQ7M9zr_Px2KTMknnipci3vyS2Wze5bNzgE 2025-04-28 22:24:20.199437+00 +hs40vsguk7afqhzqgifulnes2xfe1el3 .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1uSIo7:_LVj94TzA4-2xvw4SvqUoW4rXm4SgK51xXHhAZ-rXL8 2025-07-03 17:12:11.045654+00 +cd9c786sf0gj6bj7x8sqgt3jy7dzdq6p e30:1uMQHH:GzsZTZb19uouLFaf2xURsgDybz9ph9uNtU8Q-wFtAXc 2025-06-17 11:57:59.644539+00 +embp5kbuk8zcvkt6n2jt2orjijniuwv9 .eJxVjMEOwiAQRP-FsyEsBaEevfsNZHcBqRpISnsy_rtt0oPeJvPezFsEXJcS1p7mMEVxEWC8E6ffmpCfqe4sPrDem-RWl3kiuSvyoF3eWkyv6-H-HRTsZVsPA42UTM5MMSulXYLMllGj1qB4BDYuk4_sI3jUYC3as3aGtsAGvPh8AX8iOOs:1uhApn:H_GtOOgg6s2GjmhFBdvbO-aONGEXSQ9BpLHsmR3fOzs 2025-08-13 17:43:23.31101+00 +0md60dnh440aginq4e0u3rv4z72pleqb .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1uqzBb:BQk_FDKVkQLmzd4TRJ06g0AdbBNO9JiZ69dDr7w_H3U 2025-09-09 19:18:27.282555+00 +iog8tgd5b87dv3s5ydxz1yrri0k9gkoo .eJxVjLEOAiEQRP-F2hDgBLKW9n4DWZZFTg0kx11l_He55Aptppj3Zt4i4LaWsHVewpzERWjtxem3jUhPrjtKD6z3JqnVdZmj3BV50C5vLfHrerh_BwV7GWvI2WcGqzIAETMgOZpcTATg2IDxiTI5N6E1Q_BWRTUCYeJz0jaLzxdgwjkh:1ukOpt:oHZ-5fJnjU230UiHFCLp_lhzOrOi56qZ8PVxBKjV9nc 2025-08-22 15:16:49.500879+00 +t0x6ptkoc35ggn6rlx1hdpina7mbw14f .eJxVjssOwiAQRf-FtSEFCpQuTVz6iHFPeAyC1jYp6Mb472LsQrfnnntnnkibe4n6nmHWyaMeEabQ6pda464wfiJ_MeN5wm4ay5ws_ih4STPeTh6G9eL-DUSTY21zyRogjXOBc1CCglNCedtJaTknspOso8IZJaRobEsCaZWwPAClXlFmQx19QHmknIoOaSgwZ9Q_0RfkYgrUI7u9Pm4O--Op2v6LSkxZ3-rPEb1eb80hTyc:1ubRcz:WohyPvdn7T67MTBfnoIn2fzhdR8lG_jhWmj8q5iTXp0 2025-07-28 22:26:29.60201+00 +uvjoslvw0ae9m44xcmjevysbv5zgrh51 .eJxVjEEOwiAQRe_C2pAZKAgu3fcMzTCAVA0kpV0Z765NutDtf-_9l5hoW8u09bRMcxQXgQrF6XcNxI9UdxTvVG9NcqvrMge5K_KgXY4tpuf1cP8OCvXyrTPwYEI0AOQGFSAyo_YpIybHkE3OykXrMQXQmq2zpDWBwuAdc3Zn8f4AOck4hA:1vMlYH:afKx7asFmuNhtmVOO81oJ9yhJBPBf6DyR0my5n6ZsZQ 2025-12-06 11:13:13.702516+00 +p32m1eov4ldn4r582du0gdyja21b01wq .eJxVjMsOwiAQRf-FtSEMDC24dO83kOExUjU0Ke3K-O_apAvd3nPOfYlA21rD1ssSpizOAsBpcfqdI6VHaTvLd2q3Waa5rcsU5a7Ig3Z5nXN5Xg7376BSr9_aMFjQHhWmVLRxzAN5GsniEMlor8jpkZWxERTGki3nxE4ReiJAy-L9AUcvOIo:1uu8Tz:hru-39G7KbKQMCiDa1Cmeu78fQEZhY1mkSTbizB4nQo 2025-09-18 11:50:27.14794+00 +4k08gvliru95824jz7gfg1n207ai7fme .eJxVjMsOwiAQRf-FtSEM5enSvd9AGGCkaiAp7cr479qkC93ec859sRC3tYZtlCXMmZ0ZOGfY6XfGmB6l7SzfY7t1nnpblxn5rvCDDn7tuTwvh_t3UOOo35oMkFcaSVjtySmRQdkJSJJJaJNwJieDQgqPoMF5DXIig9mKqJJUnr0_RZ83uw:1v8NUW:bjbCOVREfowdgWoNf1KAIWekMgQoUeiI5WZmfwoJlj0 2025-10-27 18:41:52.494639+00 +i5s7on2goc7po2whwqjtlc90dekkedol e30:1v1sf0:UGQGFwrkPxt0XoSktZ5KlBe3WbOEz4MCmbX6t5eeCtw 2025-10-09 20:33:50.731532+00 +fh2q5qxexrgz0r9uhawj2omu3vsh4efb .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1v4ODP:Aggzw2bQ2Z6CfuvaAs840ZTfq_uvPEmdEhsFzzEuxuw 2025-10-16 18:39:43.198028+00 +xdsowc31b4hd0dvqnri602wnvoerjepa .eJxVjDkOwjAUBe_iGll24pWSPmew_hYSQLaUpULcHUVKAe2bmfdWBfZtKvsqS5lZXZW1SV1-VwR6Sj0QP6Dem6ZWt2VGfSj6pKseGsvrdrp_BxOs01EDhs4FipaQYzLiDfDoDVGPzLnHTLYnoJjYeYNBKECX3ZhGslm8qM8XWt05hg:1vEVc4:FjKvSPvTcBOVjTx3ed1nlwLBtpAkorLGqI0fl8z6lPA 2025-11-13 16:35:00.776374+00 +9a9n5mob78jcfa0p65q3i81ja882jugu eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeXd0dnEtMDE0M2YxN2JhMWE1NmM4NzE5NTlhODdhZDQ5MTJiNzEifQ:1vHTyu:HF8Wff0Z1MtO05aAWzAU2hA2yp_aPhN5-W4bvEey9fM 2025-11-21 21:26:52.473268+00 +duh3bhdqaharazb47xdfuz22bx7lm2m7 .eJxVjssOgyAURP-FdUN8IILL7vsN5MK9FFqriaAb478XExftds7MyezMwJqDWRMtJiIbWN0KdvtNLbg3TSfCF0zPmbt5yku0_Kzwiyb-mJHG-9X9EwRIoayV6CvZoLAIALXVPXTCkwBFvtZaOgktOKqUUI1E0QEqRPBY-c5iT1oV6UZ5iylm4-OYaUls2BlCpmLPISbzKc8CO44vsTVIew:1uboYl:cFGcoY7iy-Zn6jP9h9x3plKcR_S4GTKfJMgKl00zDhg 2025-07-29 22:55:39.53659+00 +2n23eitsont0ku8doalaqp8tg8wr859j .eJxVjEEOwiAQRe_C2hBgQMCl-56BzJRBqoYmpV0Z765NutDtf-_9l0i4rTVtnZc0ZXERGpw4_a6E44PbjvId222W49zWZSK5K_KgXQ5z5uf1cP8OKvb6rS0jOHSQvT6bErI14DFaxUTReeV9JohoMJKiwsYUFzkE0tpaMIGseH8AJEw32g:1u4V3j:Zlm3VWVBdWX4MrpFTEsOAhNHyeYrKQxJZYO9sR7P5pw 2025-04-29 01:25:55.285365+00 +lz5my4o53v4utwomxpm7uly0a5w6ctok .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1uJcIf:_mybCjiu0QXH7midOjJHL-3-Iw7n7FXrC9jBT6CqTHY 2025-06-09 18:11:49.807207+00 +ri3m7v18q39vfum0za5t0jtvkb7x19fa .eJxVjLsOwjAMAP8lM4poXnUY2fmGyo5dUkCJ1LQT4t9RpA6w3p3urSbctzztTdZpYXVRgz2r0y8lTE8pXfEDy73qVMu2LqR7og_b9K2yvK5H-zfI2HIfS7AuClpKPjEhYfRI7MHNAMYKJMLRkNCIAWxgmGEwESiy9xjZqc8XWmA5Og:1uSIp1:mCHpC1upr71FNkbZwB0QkDaPpmXeQPj2K--m6iKieKE 2025-07-03 17:13:07.873415+00 +mg4w600khtiw18hus6ce7dz9xedeencr .eJxVjDsOwjAQBe_iGlm24x-U9DmDtbve4ACypTipEHeHSCmgfTPzXiLBtpa0dV7SnMVFaGvE6XdFoAfXHeU71FuT1Oq6zCh3RR60y7Flfl4P9--gQC_fmsE6HZnATNlbRHZkyakYwBHFM6mAhj0D4oBGD9mDIR_RZ0VqwiGI9wdc2zlw:1uMYk9:apyYhrEw3HL07M97_ydF6wo1btCDwf67wgKB4irpPy8 2025-06-17 21:00:21.102089+00 +yd3ihwf8503uj1zzba1z3t4tou7kufi4 .eJxVjMsOwiAQRf-FtSFQ3i7d-w1kmAGpGkhKuzL-uzbpQrf3nHNfLMK21riNvMSZ2JlJNVl2-p0T4CO3ndEd2q1z7G1d5sR3hR908Gun_Lwc7t9BhVG_ddDaGSOtoKCKJSFNIJ-RlEcCrxSFAEkY1FajMzAhZJIOoVgJxThk7w9E9zjW:1uZWzR:kT2lNVjLMXrk10c7r3vsUzbKuzSjR45UB_iLVsB5x3E 2025-07-23 15:45:45.588795+00 +rwr0a19kga013ou0x0r0jxtu6pwzzojg .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1uhAyr:DNzpMcARF6_C9BJcy_PpucbnZVRj7l-F8dZUbM1Wsu8 2025-08-13 17:52:45.013242+00 +o6rwbo4ocyfgux7x30v04d6hnvlycho4 .eJxVjMEOwiAQBf-FsyFQoIBH7_0GssuCVA1NSnsy_rsl6UGvM_PemwXYtxL2ltYwE7syKZ1il1-MEJ-pdkcPqPeFx6Vu64y8J_y0jU8LpdftbP8OCrTS144smQGlEV6THQfrHQjUySYrctRSKX9QMxoBQhr0zh9IobJa5OyAfb4tuDco:1urMii:G89yDIMK7MxJYEv7QIOxE_jI1SaSmgpRna0ab5y-cxc 2025-09-10 20:26:12.108902+00 +ye1qayu5h4w8v4492ogzb0tzv8rq8j5g .eJxVjLEOAiEQRP-F2hDgBLKW9n4DWZZFTg0kx11l_He55Aptppj3Zt4i4LaWsHVewpzERWjtxem3jUhPrjtKD6z3JqnVdZmj3BV50C5vLfHrerh_BwV7GWvI2WcGqzIAETMgOZpcTATg2IDxiTI5N6E1Q_BWRTUCYeJz0jaLzxdgwjkh:1ukOy1:prGP11YgYbGbXE7jIuqdkVg8r1yf0Y_w5BUvApAWoYc 2025-08-22 15:25:13.033285+00 +uwz0xu2mtrpw6bn82y0cq25stiwsiit1 .eJxVjDsOwyAQBe9CHSHAmE_K9D4DWnYhOIlAMnYV5e6xJRdJ-2bmvVmAbS1h62kJM7Erk6OV7PI7R8BnqgejB9R749jqusyRHwo_aedTo_S6ne7fQYFe9jqDdc6jcMmhQmXN4KXSHrMQGpR0Sg42RiKdbRozDWiUSS773UQjCNnnC0ZsOFI:1uz4wF:sL81HPESNPJIRe7G3COicHGXEXUiFDisyp87NofwsV4 2025-10-02 03:04:03.252156+00 +o10gpsosezpklskfrqlluqwyottujg5q eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjd3A0cmctOWNhMjY3ODA5MmMzMTUxY2VmZmY1ZTU0YjhjYWZhOGUifQ:1v1sen:BQ-sMMPKpSXKNOdE5Y9YJSbRiUJKUlggtLD2Nrm01Wg 2025-10-09 20:33:37.641469+00 +e0qz70ro1mb6gzl3lrnpmhsivtzl8l5m e30:1v8RdA:7v4aCZHOy9gZFMp9pA2LHTBSu7n0MEfzyUplLB2kNf4 2025-10-27 23:07:04.53141+00 +kl1k77lk2vgyiy66bzj2tqgzulzlber7 e30:1v4P9X:KTuz_ICZ14OiR6QXDju7uPJynJaNitJmhD9B-Q2NzX8 2025-10-16 19:39:47.241067+00 +52mvbofobghmfl3n94bovmy3dcjd69eg .eJxVjDsOwjAQBe_iGlnrbxZKes4QPdsbEkCOFCcV4u4oUgpoZ0bzVj22dey3Jks_FXVRhjqjTr84IT-l7q48UO-zznNdlynpPdGHbfo2F3ldj_ZvMKKN-3lIZCRlj04kMhXvguUAm5hctCF24grBYPBwZ-8IBcwMsjYyxKnPF07yOB0:1vMrqx:jA0ybRsG8OVLXpCXt83BSMz9GM4EzRaoaZOf5aaYfqo 2025-12-06 17:56:55.556941+00 +ku2cnn89frnksa32c1c2923dlithy8x0 .eJxVjMsOwiAQRf-FtSEwpTxcuvcbyMBMpWogKe3K-O_apAvd3nPOfYmI21ri1nmJM4mzAGW8OP3OCfOD687ojvXWZG51XeYkd0UetMtrI35eDvfvoGAv33qEgdm6wfOIloPTkzbKeoch6BxshoCeJvJsnB1SckCcKbMCC8CGULw_SQU4uA:1vHTz8:wCRCR7qTlIkW3gcchjLr0Ozy-mjx4dgsRyGlgHPYuXQ 2025-11-21 21:27:06.734144+00 +r3wgdh3q107ejejdqyrlktpsx3yes6bh .eJxVjDsOwjAQBe_iGln5rB2bkp4zRM_eNQ4gR4qTCnF3iJQC2jcz76VGbGsetyrLOLE6q7YndfpdA-JDyo74jnKbdZzLukxB74o-aNXXmeV5Ody_g4yav7WjobEdU2AAbfADDCUhOEmt9zZa9IjSOHKdZTJgx4zETTKBB_FOvT9H1Tlm:1u4kVV:BIc-WRsSIWWc-iWzqOdK1xugkKQKCvLCgSw5baa4VXM 2025-04-29 17:55:37.751628+00 +cq9yzlrw657sv0i9maj1ogqh3pqns8km .eJxVjMsOwiAQRf-FtSFAebp07zcQGGakaiAp7cr479qkC93ec859sZi2tcZt4BLnws5MSs9Ov2tO8MC2o3JP7dY59LYuc-a7wg86-LUXfF4O9--gplG_tQhWgAdQQmsCMkGCQzLonFFWSKW0kZoQShIa0SkjJwHOB7IOMdPE3h8eRjgR:1uJdkZ:CA7LXs32beMggbh-LxhwTb8gDUQ5i-BIk9S5jV5r8qU 2025-06-09 19:44:43.165644+00 +jrlhphu75qmhok7ytxkv8tnbignkhni2 .eJxVjDkOwjAQAP_iGlle36ak5w3WOrsmAZRIcVIh_g6WUkA7M5qXyLhvY94br3kicRYAUYnTLy44PHjuju443xY5LPO2TkX2RB62yetC_Lwc7d9gxDb2s67OGW2dNlQCK2drLBUGxUzeaGRKHIpJ4LyHr9HgMcQUMWB1YJN4fwBFbzgW:1uSIsH:i5wPpxGafbNceWiOoQ0MGgFPP8olp2im1oipJ4ekRKk 2025-07-03 17:16:29.144123+00 +i6mdrk58nkin95hqnoz8k1aqeocivis1 .eJxVjDsOwyAQRO9CHSE-NmZTpvcZ0AJLcBKBZOwqyt2DJRdJNdKbN_NmDvctu73R6pbIrkwKZdjlF3sMTypHFx9Y7pWHWrZ18fxQ-Nk2PtdIr9vp_h1kbLmvlQZNZpAQJiWkNYM3gDpJK1WakMYRyAYQkcB02gMRtUpeQ1c9SPb5Ai4sOBw:1uMn9g:WqmKMeZdSXV5MrBujV0JkP9JveXWI57WiF_7iab3eZ4 2025-06-18 12:23:40.223988+00 +swdrdyckh9q1xufu87ur0s3l9gsvg9qh e30:1uZZnH:geRRfmqJY95oowJGgpyIuVJ4Y_kUf5apjOkaaeCCuUQ 2025-07-23 18:45:23.67925+00 +ienp377owoqqob773msb75xk38mu92hw .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1uhEUe:F9YzWeOQLCMzTsBx4M4QwN--zA3Gc9P6iz55uYIiDAg 2025-08-13 21:37:48.091886+00 +1lu87toqytshy8mkwymx9w8ka4by9sqk .eJxVjMEOwiAQBf-FsyFQoIBH7_0GssuCVA1NSnsy_rsl6UGvM_PemwXYtxL2ltYwE7syKZ1il1-MEJ-pdkcPqPeFx6Vu64y8J_y0jU8LpdftbP8OCrTS144smQGlEV6THQfrHQjUySYrctRSKX9QMxoBQhr0zh9IobJa5OyAfb4tuDco:1urMij:UmrDQSiJcPe9oOh314PlUilf5kx9TxvVN5Pb39iXSm0 2025-09-10 20:26:13.195874+00 +tp3z5rylbku3ojlr1asol5m8dz9730je .eJxVjMEOwiAQRP-FsyEsAgsevfcbCLCrVA1NSnsy_rtt0oMmc5r3Zt4ipnWpce08x5HERYD24vTb5lSe3HZEj9TukyxTW-Yxy12RB-1ymIhf18P9O6ip123NrIoCS4Qmh2CtRmO9c5jBIGUoyiVrmQHPhhKAy1vwZjxoozEQi88XF1s3fQ:1ukQsh:4sHUpuKNj4jBCo3G1gYAzzwgHfs1uCwkK6xto8vzuMY 2025-08-22 17:27:51.710578+00 +pgv5gzeoaks7c5iezt3tb1gcgmoe5kkl e30:1uz8IX:Y-JzEn1f0K6MhYWKF9kIdsqP9Rs9OYPrNSINAvSk1DY 2025-10-02 06:39:17.589767+00 +mhdzbpvqkkitx2py69dq0n80q0921ewk e30:1v8jf1:uh92Ltu5xy0pN7Y16FYO3srwd94ZYfbfe-vKuVdgwlU 2025-10-28 18:22:11.323332+00 +y4xhb8y3v8bjan1kdvxt9xdq2jrlsd9n .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1v2FBc:4mWgLOeRGkUfABUeg4nLYy7g1zVg5SjXpwcspoP6tts 2025-10-10 20:37:00.509539+00 +vcp8zq3vhhuo75mg2uzz4d6hqebnffcr .eJxVjEsOwjAMBe-SNYrquHEIS_Y9Q2XHKS2gROpnhbg7VOoCtm9m3sv0vK1jvy157ic1FwMYzel3FU6PXHakdy63alMt6zyJ3RV70MV2VfPzerh_ByMv47dOoAQeIjhsoBFpQ8MDIgs5JSUXCVsm76KojxpCcDIonokYfOaQzPsDCi43oQ:1vMtKd:3Q6v-s9CgyrHoqQHp23-iukDSQnKi-eMRdjdkTSF5wE 2025-12-06 19:31:39.321214+00 +zax3jp1a47993quo22by9z9mlk0c60hv .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1v4fQc:WWMRPjLFZuJdI117PUoNsoMwV41vkGulLkorO2A0H90 2025-10-17 13:02:30.537727+00 +1vzspnqomw1m31hmraixa3sxyjj0qusz .eJxVjDsOwjAQBe_iGln-O6ak5wzWrr2LAyiW8qkQd4dIKaB9M_NeIsO2trwtNOexirPQKShx-p0RyoOmndU7TLcuS5_WeUS5K_Kgi7z2Ss_L4f4dNFjaty4IrEul4FSiSORVCIBDQICgPVmXqlHR6KQdWhwUWzYMxkTPrC2TeH8AdDU49Q:1vEx3k:FCNQ7pIkTBSfNHGMztf3B9BU2T6EZL1bFamp_XYivDs 2025-11-14 21:53:24.435674+00 +xsdinm8cdsc5dwiw1thsxm3llu6yv3cm e30:1vHkzc:Czwil8jRrtxb4DR1ZAqDbBWhG7eEbujYIP0cm4FK_h4 2025-11-22 15:36:44.71296+00 +g91m7nyoywag3dpsh151gp2zfed9905k .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1u4me8:vegtu5nrgLAsAz-h77zX6NJa_R6WhKHDn3Vjz7cL8qw 2025-04-29 20:12:40.077602+00 +1ulk57pj61tlcy1dowm96fkzgoln8p7o .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1uhU5D:_Q5fMECT17bpH-ee8tureZC09luriOE8HKakTcLPub8 2025-08-14 14:16:35.051158+00 +b5qtzqncf2ty3pz1uzrw0hiijibxaamb e30:1urSfo:WX94I0ihOIexRx7rwkztQU8dEedNKNyIrWUlZN3wY64 2025-09-11 02:47:36.032347+00 +huv7ie388qqr024s838lzbo2l0bwi93e e30:1ukRFF:GtWlo5bVRCrcpXdhwJqU2L9XO0l1XgPIGWiUcjjJJWU 2025-08-22 17:51:09.69661+00 +hjeuatyl5ej2nwsvup909qpob7e1xy87 e30:1uz8PU:0kBy0Y_fyszNlbHe0G6CrsEa7KdNWByWdvrqD4-ILt8 2025-10-02 06:46:28.452235+00 +bssgc3vjfqm7nm4kstlkjtrfu6tciaeb .eJxVjEEOwiAQRe_C2hBGLDgu3XsGMsOAVA0kpV0Z726bdKHb997_bxVomUtYeprCKOqiAKw6_FKm-Ex1U_Kgem86tjpPI-st0bvt-tYkva57-3dQqJd1TTmjg4wwRLH2GEnYgD8h48DJgmNHhCsxYFP2mZE8kjiK4MWc0anPFz5TOJc:1vNtOV:Ji5ZK5PAVpA1skoneuO23VD_maDtKE9xd7eTooGaOus 2025-12-09 13:47:47.674944+00 +9ybu45nxbzqwabhv1ilkyse3avk0hpl2 .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1vFAj5:UvlLRn0KiG70tchmLEGx_bpRgKzOg4DHNYNnp0bMchk 2025-11-15 12:28:59.460667+00 +44rqclkjtv2tvvqj23sni3pnc3zqz2l2 e30:1uMqmK:LjEec3xpelTRr9nR6V6cjmue2ImzRvpliVKdw-le0ts 2025-06-18 16:15:48.31667+00 +texznoduvg919klpv8ikyjqhwirsgnhj .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1v4gNP:XszbtqSLiSOJAnWYn_uyHSL6VsppKvagq8cY6sGYL2g 2025-10-17 14:03:15.943707+00 +0au0mnj85hae9ev27y1wi4rnmcss2pja .eJxVjDsOwjAQBe_iGln2buIPJT1niNbrNQmgWIqTCnF3iJQC2jcz76UG2tZx2Josw5TVWVlr1Ol3TcQPmXeU7zTfquY6r8uU9K7ogzZ9rVmel8P9Oxipjd8ao4GAnKI4n7ueAhaJCLEnBmEIzjimJJ0P0bIByCkX03sHGAmDLer9ARxTN90:1u4n6s:oIE-1nnHNNpoPQLdPGR_UjtSkCPPJHIZ9fkolPf7DSk 2025-04-29 20:42:22.427189+00 +x2v452eyaohnm6hdmfemtyw3mzkr0t0v .eJxVjDEOwyAQBP9CHSHAHOZSpvcb0MHh4CTCkrGrKH-PLblIim12ZvctAm1rCVvLS5hYXIXW6MTlt46UnrkejB9U77NMc12XKcpDkSdtcpg5v26n-3dQqJV97XurHGtG8CYlZZRWRB71yEA6RozWEqPZ0wP7hN6RcQAddAnGaEl8vkR7OD8:1uSJxv:fQfWyL8tbNR-4qsDLVijZ2mXaUhALRlCoW_HcE6T-K0 2025-07-03 18:26:23.948574+00 +dma3ex39ggpt2k10gafn8yrlw0v96l4g .eJxVjDEOwjAMRe-SGUU0cWjMyM4ZKjt2aAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5m857MIffmSk9tGxM7lRu1aZalnliuyl2p81eq-jzsrt_ByO18Vv3hBKxd5mzR49JI0MnKRx7jJEcBxAScSGdPOYoChmwcwLqiSGTmvcHYv85Sg:1uZdMJ:-6QvogvtTUQQN0ZW4zpurwljpZkZfcVQMeh4PNSLDOU 2025-07-23 22:33:47.347852+00 +2kx8ofpe32ri2h4yn4y2bzxpp5qpnp92 .eJxVjMsOwiAQRf-FtSEgz3Hp3m8gA0OlaiAp7cr479KkC93ec859s4DbWsLW8xJmYhcmtWen3zVieua6I3pgvTeeWl2XOfJd4Qft_NYov66H-3dQsJdRxzQN2WULCpyXqHwyQhuwADmqMw1mJrLKYARQNjmnDekoUZAg8op9vkEpOII:1urkVp:qZG6OKOJkmUxpHtDuhLxYReiOhHp7ORYV51Mz1M4E-E 2025-09-11 21:50:29.909148+00 +rkk039eqhb4v710h42uf3ert5zfnwzxg .eJxVjMsOgjAQRf-la9OUtsxYl-75hmYeRVADCYWV8d-VhIVu7znnvkymbR3yVsuSRzUX00Q0p9-VSR5l2pHeabrNVuZpXUa2u2IPWm03a3leD_fvYKA6fGsq2hMzN8oNqAvOQwitcsIeoiB6UO8xiUh0GoJzqRU8RwboMUUP5v0BSok4CQ:1uMsA4:B5T5G4NFopDHXTbQT0WtDx4GytmHd7WoyKqsJAVIE_I 2025-06-18 17:44:24.62179+00 +bdkixxjfd8h0dhbw5bzfajkmyp5ytoyd .eJxVjEEOwiAQRe_C2hCgBUaX7nsGMjCDVA0kpV0Z765NutDtf-_9lwi4rSVsnZcwk7gIDQDi9DtHTA-uO6M71luTqdV1maPcFXnQLqdG_Lwe7t9BwV6-NecMOYGyyYNBx1p7Vjg4xcQQrQUekYxRgBo4Enr0ZDMl9oM7j86L9wd9rzlK:1v8m6X:icPkdNFMWs3pZG3uL0OCe6G3qTLoSDKm-fApu5kHhV4 2025-10-28 20:58:45.609272+00 +p79lu1k14jqrnfbsuvei6fw8suckfo3d e30:1ukmOv:bGSS1XmyaTzMN_PjJ2JJkoOxCgq0_NL1zmfp8lX96gY 2025-08-23 16:26:33.635182+00 +4dztlysnn256fkc6rs7uo1fp3anpxs7s e30:1uu9ga:99Xy75pq0ViN1It5XvQaZaLxnLHXPwgUr1WFlsENkZc 2025-09-18 13:07:32.309368+00 +6hdq4e9rffamp6y7kimu4j3yo7xc4qzh eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjd3IzbWMtYjlkM2E1NjgzNTk3MGNhMTVhODUzYjQ5OGFhNTNiODgifQ:1v2GYG:oOv8PuzGJIwlIlQhZFYMCwdHIpx2SOxOxS9ksjlsjX4 2025-10-10 22:04:28.817646+00 +1azfo2l8j8o65jru8k12gcdpbz1a1hjl .eJxVjEEOwiAQRe_C2hBGLDgu3XsGMsOAVA0kpV0Z726bdKHb997_bxVomUtYeprCKOqiAKw6_FKm-Ex1U_Kgem86tjpPI-st0bvt-tYkva57-3dQqJd1TTmjg4wwRLH2GEnYgD8h48DJgmNHhCsxYFP2mZE8kjiK4MWc0anPFz5TOJc:1vNtPF:MD6P1YXA6G2CwGtPq3ObojTjCfEHQor52I3yJl8FXMs 2025-12-09 13:48:33.683922+00 +nqgelo60dg298ibvieuk7z4j05i0wkz0 .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1v5AoE:RdDZsvt5MqZHNRaNIrDho4Sf_NFGfMtyZJIzleN4IkU 2025-10-18 22:32:58.196887+00 +0xukq2n3em65d1s7k2u8iyytz463p4im eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjeXpvZWQtZmI3OTY3ODc1OWJhNTczNGRkZjUxODllZGY2YWE2NmUifQ:1vI2Xg:TiEJX8NHWKVZ_Opf1i7FwjHwS9xZbziG_m2giGUyU6w 2025-11-23 10:21:04.42732+00 +bvy7x0lwirhuknf53s7pyqg0kczic9n8 .eJxVjEEOwiAQRe_C2pBBplBcuu8ZyACDVA0kpV0Z765NutDtf-_9l_C0rcVvnRc_J3ER6qzE6XcNFB9cd5TuVG9NxlbXZQ5yV-RBu5xa4uf1cP8OCvXyrcG4DIiKIGgdQWEmttY5a5kBc7AmZwQekmMXMGs1GMQRYWQL2kUS7w8Wyze0:1u4nPi:ig5ND7A66nqaalvwVty70OdVSZHWmoT_vDP671ghyGU 2025-04-29 21:01:50.168148+00 +714q432ki0von1h6giy7kwjji32hol7z .eJxVjDsOwjAQBe_iGln-xJ-lpOcMlr27JgEUS3FSIe4OkVJA-2bmvUTK2zqmrfOSJhJnoZUGcfqdS8YHzzuje55vTWKb12UqclfkQbu8NuLn5XD_Dsbcx2-tlLFkDFdHQSPbmKPBwfpSNDBkjZYGMKAYrFLReUbDWDm4QKECe_H-AEjIOHc:1uJj35:koPtZQ-sM5OHnVqPnTqG3V3lpgW8YkVvrfo6wK6lyhA 2025-06-10 01:24:11.250346+00 +sxc4k3ecnvv8khv69hl396sd0o02yawp .eJxVjLsOwjAMAP8lM4poXnUY2fmGyo5dUkCJ1LQT4t9RpA6w3p3urSbctzztTdZpYXVRgz2r0y8lTE8pXfEDy73qVMu2LqR7og_b9K2yvK5H-zfI2HIfS7AuClpKPjEhYfRI7MHNAMYKJMLRkNCIAWxgmGEwESiy9xjZqc8XWmA5Og:1uSLYo:E8w6kQQ9ncv9SZDq65ljzhNiefCPN1OFfsD9h_K753A 2025-07-03 20:08:34.377446+00 +ofjcyiv22c4jxr8sxhnw5nm5i3e2nquw .eJxVjEEOgjAQRe_StWmYgdLWpXvPQGaYqUVNSSisjHdXEha6_e-9_zIDbWsetqrLMIk5G8BoTr8r0_jQsiO5U7nNdpzLukxsd8UetNrrLPq8HO7fQaaavzWpaxMxUktJIflGBRVFfRN6dqEj11MTOwSWSBGAIzjWSOKDV-zQvD9YNzjD:1uMtB2:L0J-7D0O6oy_rJY5IjmNwDtCmNRPGO_EM7izgnKT-Q4 2025-06-18 18:49:28.856446+00 +0tcf1yy98gifqbwl69wd6o00tkdx3gzk .eJxVjMsOwiAQRf-FtSEgz3Hp3m8gA0OlaiAp7cr479KkC93ec859s4DbWsLW8xJmYhcmtWen3zVieua6I3pgvTeeWl2XOfJd4Qft_NYov66H-3dQsJdRxzQN2WULCpyXqHwyQhuwADmqMw1mJrLKYARQNjmnDekoUZAg8op9vkEpOII:1uZrKg:tcotNke-m4OY2vGG4hsHcJPHyAWGfPuqjj1PbdpmXy8 2025-07-24 13:29:02.745564+00 +7iqnpo7wrr5g3by9g1ptt1006fzjx8w1 .eJxVjMsOwiAQRf-FtSHIG5fu-w1kZgCpGkhKuzL-uzbpQrf3nHNfLMK21riNvMQ5sQsLwrHT74pAj9x2lO7Qbp1Tb-syI98VftDBp57y83q4fwcVRv3WMhsrsVjpJQUrzwqN9zYb7WwQmEMqQoBOFjUAukJGFiRSAAGK8oHY-wMmxjjX:1uzEcq:jvQmhzCiPN6RmyWfhe0bL7EOsagtm8q1IZkd-ha93yo 2025-10-02 13:24:40.412312+00 +pvf0ko8knumdhyfjigayu2exv2cw48dw .eJxVjMEOwiAQBf-FsyHAAoJH7_0GArsgVQNJaU_Gf9cmPej1zcx7sRC3tYZt5CXMxC5Mam_Z6XdOER-57Yzusd06x97WZU58V_hBB5865ef1cP8Oahz1W9ts6axAC02gjDPFCSoOQKhitJDKSTTe-0QOdYIofU6kPKCwsiDKzN4fLVM35A:1uhYSG:B_bfGvg04kq5OcKozdnOaOYtzAeZHYqTH_Zc3F_b4pU 2025-08-14 18:56:40.453392+00 +v6yjwy0n8nz8sf2uswc0b7m8iju2tpfh .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1urmyL:g0SDkD9n5X3ghS2S3xB1TN2_1l6WAEHzVc3SHx2-ZUA 2025-09-12 00:28:05.750143+00 +r2dfoj3s9oygnm9rrqfyex5dmwppmlja e30:1ulD5F:0nup-O44yFyLKgZjl52hN8Se4d9ebosSQ8l3r0cTQfQ 2025-08-24 20:56:01.440522+00 +sqhlwqyfxtmq2uy05ghgsl9zimsaqufp eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjd3IzcHQtNWJhZWFmMTY0Y2Y3YWI1ZWQ3MWRiZGVlOGE0OWY0NTMifQ:1v2GZx:6aZ0oSb6FqzLVZUJ97qcx_P7-0lIKisM7P37z6-hKbE 2025-10-10 22:06:13.926701+00 +4cfoi1rbuj6bht61won0bb1xtfpz7j9v .eJxVjLsOwyAUQ_-FuULA5RE6ds83oMurpK1ACslU9d9LpAztZvvYfhOH-1bc3tPqlkiuhBspyOU39hieqR4sPrDeGw2tbuvi6VGhJ-10bjG9bmf376BgL2OdBRMSDYBmaJmSCY3OPKISykIEboaAHG02LIUJh_EatQecTNaYOfl8ATNrOAc:1uuCMh:rBVFRoBVtXRsojUzkSzabh6Son8SW_4XoLdNdMH_1Xs 2025-09-18 15:59:11.152438+00 +tep897y8miwg70to9fyib84rh7ihkitx .eJxVjDsOwjAQBe_iGlnrXxxT0nMGa3dt4wBypDipEHeHSCmgfTPzXiLitta49bzEKYmzUMaK0-9KyI_cdpTu2G6z5Lmty0RyV-RBu7zOKT8vh_t3ULHXbw3AwdqAEBSTSVlZRYTOGSTQMDr2xYViPQ9smJUjTAVHtqZorwfw4v0BKko4Tw:1v9Zfp:C3-fFOs5qhHb5Yo4EO3M3K9vbfF8OtpoBwGGQA61SpE 2025-10-31 01:54:29.554393+00 +lwqj6u3k8v8a45kprxzbqhmrui7z7sbd e30:1v5qzt:E5uJPIh36X-PM5pIBxCZLavm7ZyzF6OVZAhxKJ8wWXk 2025-10-20 19:35:49.239833+00 +cozxo9lufefm8ldsdtw7vd2uorkcg7dn .eJxVjDsOwjAQRO_iGln-ZWMo6XMGa-1dcADZUpxUiLvjSCmgG817M28RcFtz2BovYSZxEVp7cfptI6Ynlx3RA8u9ylTLusxR7oo8aJNTJX5dD_fvIGPLfe2VcUCRwJHyms8KvUojJEiGjTOMCXmwZKwfLVrtuqzNABB1TzcA8fkCHik3nQ:1vNvhi:dov_fcd4-qDguhmY4G2B7he-PVZPhgM8N5MXGM9f2BE 2025-12-09 16:15:46.996543+00 +a98qk7ql92bdyx7gawx7twqyopsoktsm .eJxVjEsOwiAUAO_C2pAH5evSfc9AHvCUqoGktCvj3ZWkC93OTObFAu5bCXunNSyZnZkQip1-acT0oDpUvmO9NZ5a3dYl8pHww3Y-t0zPy9H-DQr2MsbRSspT8nECZ5xCo4zXiZzX0kl0WhgAstfoFEzeI4EEEtnKb56kBfb-AAfYNuo:1vFWj6:hJ8raekOK__6WmOjxR9n1u8AUGDke_d9_tKj2HTEdUU 2025-11-16 11:58:28.954215+00 +0ps7pq7fxl9y48iszw9krjsuce5raohw .eJxVjEEOwiAQRe_C2hBAaAeX7nsGMjNMbdVAUtqV8e7apAvd_vfef6mE2zqlrcmS5qwuykKw6vQ7E_JDys7yHcutaq5lXWbSu6IP2vRQszyvh_t3MGGbvrVQhujFGkbPBMIYDBL0XQAaeyTjkFzvbRfP7L1gNpJjHEcAIWe6oN4fgaw5YA:1vI2tG:UPjsYYEH9gHAtqI10zg1jEow_8G_NiN9SEFTIS6uSpw 2025-11-23 10:43:22.990209+00 +0qrjx7o89lawzpjrjyei5hbsdnkspxnr .eJxVjEEOwiAQRe_C2hBmKAgu3fcMZBimUjVtUtqV8e7apAvd_vfef6lE21rT1mRJY1EXBdao0--aiR8y7ajcabrNmudpXcasd0UftOl-LvK8Hu7fQaVWv_WQndhoIwFakODQBOMLeZ8DCwIOCMDnzAYEWUJE7DrkGKwDF4FEvT8TdDdm:1u51oU:qGJ8eTgq06h8KbnpGVI3PW2OOPXVFM1_aMOzyA51Rsk 2025-04-30 12:24:22.345068+00 +rbh9qsoxgs7ejl8rpqb51hv3s7clij4w .eJxVjMsOwiAQRf-FtSEwdIC6dO83kBkYpGrapI-V8d-1SRe6veec-1KJtrWlbZE5DUWdlbWgTr8rU37IuKNyp_E26TyN6zyw3hV90EVfpyLPy-H-HTRa2rf2HAMUNgaqLwixGNtxQEbvjCMxmKH3VToHEqsEiX1PlR2ETBURUL0_Gow4Cw:1uJtJq:r_eOoL9gzDrSvXD35hmNpr0E6toBiZmfE6vo673Uh-k 2025-06-10 12:22:10.259504+00 +sk3bfvsjimqhkgad9u8w0kfn3zsmalaz .eJxVjDkOwjAQAP_iGlle36ak5w3WOrsmAZRIcVIh_g6WUkA7M5qXyLhvY94br3kicRYAUYnTLy44PHjuju443xY5LPO2TkX2RB62yetC_Lwc7d9gxDb2s67OGW2dNlQCK2drLBUGxUzeaGRKHIpJ4LyHr9HgMcQUMWB1YJN4fwBFbzgW:1uSRGl:Qs7iI1sUy2fhRX53leoqj_sTY7G6sHWyJu0MTyKxBmM 2025-07-04 02:14:19.014771+00 +tk9igdrmixnolgg3ruzl2criu6cnr3kn .eJxVjDsOwjAQBe_iGlm2bO-Hkp4zRGuvgwMokfKpEHeHSCmgfTPzXqaTbW3dttS5G9ScjY-M5vQ7ZymPOu5M7zLeJlumcZ2HbHfFHnSx10nr83K4fwdNlvatIQm4QBhUelJJMYIyZ6RQoCpqTxjZKYv3QEAlRYfsOKAAZQjJvD9GHjeG:1uhZ4I:KQ_pmIKD5MDhLmpuCaMytH5dZtaSe3-lyGXW_hFUwaQ 2025-08-14 19:35:58.887313+00 +831v2u4lydr0zrdhvsco99lfzxnsdo1f .eJxVjMEOwiAQRP-FsyEsBaEevfsNZHcBqRpISnsy_rtt0oPeJvPezFsEXJcS1p7mMEVxEWC8E6ffmpCfqe4sPrDem-RWl3kiuSvyoF3eWkyv6-H-HRTsZVsPA42UTM5MMSulXYLMllGj1qB4BDYuk4_sI3jUYC3as3aGtsAGvPh8AX8iOOs:1v9kWC:HgF66_nXs2D0X8H-EtQ4R8ynylgekFP7ioZPit452GA 2025-10-31 13:29:16.318833+00 +ochu14maemm59jh1frkap9621aklzksh .eJxVjEEOwiAQRe_C2hCKMIBL9z0DGZhBqoYmpV0Z765NutDtf-_9l4i4rTVunZc4kbiI4ezF6XdNmB_cdkR3bLdZ5rmty5TkrsiDdjnOxM_r4f4dVOz1Wwfw3oZg2BWnmQoldhgcqOyNIkfJ6EyJsBRLxEDM4IoGGMAqtD6I9wdONTkv:1uzHhb:lgIXV14IS5wNi7_vXpyvHoiB6hBZxOhXwl_YuMYCZYU 2025-10-02 16:41:47.705411+00 +hax2uk7o9ykmprksx4xse2z64xf66hcd .eJxVjMEOwiAQBf-FsyFQoIBH7_0GssuCVA1NSnsy_rsl6UGvM_PemwXYtxL2ltYwE7syKZ1il1-MEJ-pdkcPqPeFx6Vu64y8J_y0jU8LpdftbP8OCrTS144smQGlEV6THQfrHQjUySYrctRSKX9QMxoBQhr0zh9IobJa5OyAfb4tuDco:1ulS2J:M4opdTVywdBG5wwdLXZ6FuibWaD8TbqQyOQFEp9070M 2025-08-25 12:53:59.445873+00 +sxpjqa8m0g1ow5wo8eea8mrvwnpo451t e30:1uuGJw:vMZYQN-ua0ADHyfi_eBhEBNBdtiDi4kz0idPtMwxGj8 2025-09-18 20:12:36.488865+00 +w4m778k5mvqondf992ujrav9pmaymtup .eJxVjMsOwiAQRf-FtSE8ymNcuvcbCAODVA0kpV0Z_12bdKHbe865LxbittawDVrCnNmZSQ3s9LtiTA9qO8r32G6dp97WZUa-K_ygg197puflcP8Oahz1WxunBUmRUjGGwCpKYCGjdw6Nkc477ZVNEayzAidZ5AQWTSGlMiiNhb0_Fgk3nQ:1v2Ij4:NPRJI1UtPkeX5dkwIOreyAgeSvPoL0oIk3uSsFxMJ-4 2025-10-11 00:23:46.061326+00 +x4o4en1oavrs3romtybnw0vdpgb857pa .eJxVjDkOwjAUBe_iGlnxEsempOcM0d-MAyiW4qRC3B0ipYD2zcx7qRG2tYxbk2WcWJ2VMV6dflcEesi8I77DfKua6rwuE-pd0Qdt-lpZnpfD_Tso0Mq39pEFbXSBkIBjFG96IOyyEUw4cOiAUhqC4UQ5ZTs47juOJMY6EQvq_QFXuzld:1vM9N3:3ILpOTifBx2EJ_C1uM9ZCF3_V5mejpye8rb3YswLeBU 2025-12-04 18:27:05.051682+00 +7gjt3hzuhs702ulohd0h3sapmqoe2jbk .eJxVjEEOwiAQRe_C2hBGLDgu3XsGMsOAVA0kpV0Z726bdKHb997_bxVomUtYeprCKOqiAKw6_FKm-Ex1U_Kgem86tjpPI-st0bvt-tYkva57-3dQqJd1TTmjg4wwRLH2GEnYgD8h48DJgmNHhCsxYFP2mZE8kjiK4MWc0anPFz5TOJc:1vO32J:0ovA5rE_s9BxNxkwzrwnIAb1wBeFJUCMJat0sTUKWWA 2025-12-10 00:05:31.977513+00 +9tkqu7brvzv1gd00my5ds9glrxi2vqe0 .eJxVjEEOwiAQRe_C2hBmKAgu3fcMZBimUjVtUtqV8e7apAvd_vfef6lE21rT1mRJY1EXBdao0--aiR8y7ajcabrNmudpXcasd0UftOl-LvK8Hu7fQaVWv_WQndhoIwFakODQBOMLeZ8DCwIOCMDnzAYEWUJE7DrkGKwDF4FEvT8TdDdm:1u524L:0odDul2byykPomV-iE4IOUAYXQbY6ooDwwbJxLlxcKU 2025-04-30 12:40:45.06781+00 +ginegrn2iw26biy9you7ehwxjzwz5dvm .eJxVjDsOwyAQRO9CHSE-NmZTpvcZ0AJLcBKBZOwqyt2DJRdJNdKbN_NmDvctu73R6pbIrkwKZdjlF3sMTypHFx9Y7pWHWrZ18fxQ-Nk2PtdIr9vp_h1kbLmvlQZNZpAQJiWkNYM3gDpJK1WakMYRyAYQkcB02gMRtUpeQ1c9SPb5Ai4sOBw:1uK0l9:K9zPoIDzhRL3iOBDYj3O2FVQszXfBTyfZjE3FOHFyYk 2025-06-10 20:18:51.577028+00 +c03spaqj6e1f69eqtblscm5j1lr0ghdn eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjcXc0NXgtODlhNmFiZDQzMDAzYWI2ZWFhYzg5ZmIwZGUwZGYxZDUifQ:1uMxkf:_a0LodzRgE2Ac_fxl-6M3lmrT7WQpmriY2cQNkbxycQ 2025-06-18 23:42:33.299286+00 +yyqbmxpztj3x02718uegwxqdcnjbtpuv .eJxVjDsOwjAQBe_iGln-4Q8lfc5grb1eHEC2FCcV4u4QKQW0b2bei0XY1hq3UZY4I7swqSw7_a4J8qO0HeEd2q3z3Nu6zInvCj_o4FPH8rwe7t9BhVG_NTmQRkNCk3KRQllhfUJRbFDG5-zPxmCyAgsSkhQBtSMy5KwPQBole38ARDQ4_g:1uSjX6:tNMzBFOysexrBy_gipWD73MTU7zN7YfHGW0F4Fgk8Ik 2025-07-04 21:44:24.53139+00 +eoyd2ww08fi1va73hhzmsbo0r2qpt8sh .eJxVjEEOwiAQRe_C2pABCwMu3fcMZBhAqoYmpV0Z765NutDtf-_9lwi0rTVsPS9hSuIi1HlQ4vQ7R-JHbjtLd2q3WfLc1mWKclfkQbsc55Sf18P9O6jU67dmAqeVYwBkn7wpyTKRgsgWADhrZyINgAowErpiik1WKyTMHtla8f4AU7o4Ww:1uZtTe:dyQUxfUWWwFzCB0F9VKqQeiATFnHsHVcGx_gHK71ij4 2025-07-24 15:46:26.834689+00 +c23e0t0vy9hr1lag5fjs3xadk2iz5h92 e30:1uhetM:BX2lbPGcTiZPpDgboVrYThVsfIEP3IzzOOUo4o9bznY 2025-08-15 01:49:04.449073+00 +xcz588ssz467rkljuefxn11d5wdielef eyJfcGFzc3dvcmRfcmVzZXRfdG9rZW4iOiJjdWRhbjItYTFmZGUxMGM3ODVmZmU0Mjk4ZTY0MTE0NTIxODhiODEifQ:1ulT6W:jWoFi3tkjSPhXDkwlQJ0eGszeuFmqbWDan7hIVujVa0 2025-08-25 14:02:24.099476+00 +7ygh65m3tm1vieqdc6pdy9hfhjd59z0s .eJxVjDsOwjAQBe_iGlm2158sJT1nsNbrNQmgRMqnQtwdIqWA9s3Me6lM29rnbZE5D1WdlY2Y1Ol3LsQPGXdW7zTeJs3TuM5D0buiD7ro61TleTncv4Oelv5bewoMoVhjIwi2Qp7JIFdAbMF3kmLrkmVwBnws0qIFro6xBkfOCKr3B1k1OHU:1urp6g:70VN4ABRRbthBnfnl_MEFkD-hVyGgQxlWgIARC6953Q 2025-09-12 02:44:50.210563+00 +m0yw01icla9ilubeh92vd28s9wzkywu2 .eJxVjMsOwiAQRf-FtSEFeY1L9_0GMsAgVQNJaVfGf1eSLnR7zzn3xTzuW_F7p9UviV2YkJKdfteA8UF1oHTHems8trqtS-BD4QftfG6JntfD_Tso2Mu3NlmTNTqjBYHRaOEyKjAqmJAJnSVyBCSFdOdJBLAQHSkLw59SzIm9PzgGOMk:1v9tK5:ij2-PfEQ_TVbJlBMCs_zq1yTYm-6Xcf5HkjzOn1Ny_I 2025-10-31 22:53:21.394959+00 +pmlfz12shk8ipmo85now6bxx8hpb8xna .eJxVjDEOwjAMRe-SGUU2SUjKyN4zVI5taAElUtNOiLtDpQ6w_vfef5mB1mUc1qbzMIk5G8RgDr9rJn5o2ZDcqdyq5VqWecp2U-xOm-2r6POyu38HI7XxW3uVHKNTBu8QMCcCTB14YIbIJ3Yo6iQlPAYJPnICQgquuzKrzzmY9wccHzgb:1uuJ1C:FevIfyB4j5QvxeVVr9TUbAzUodBYLy6q60P8eQ-G6o0 2025-09-18 23:05:26.204471+00 +day9hb00gefocozbffsd0fexza4wxrez .eJxVjEEOwiAQRe_C2hBGLDgu3XsGMsOAVA0kpV0Z726bdKHb997_bxVomUtYeprCKOqiAKw6_FKm-Ex1U_Kgem86tjpPI-st0bvt-tYkva57-3dQqJd1TTmjg4wwRLH2GEnYgD8h48DJgmNHhCsxYFP2mZE8kjiK4MWc0anPFz5TOJc:1vIy7X:afrqclCQLGEe-Obp9xyyOFHgJ9pewLoEb6oHbRZh1rQ 2025-11-25 23:49:55.990905+00 +\. + + +-- +-- Data for Name: mascotas_availability; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_availability (id, created_at, updated_at, deleted, active, start_day, end_day, start_time, end_time, user_id, veterinarian_id) FROM stdin; +234 2025-10-01 19:01:10.994155+00 2025-10-01 19:01:10.994165+00 f t 0 0 09:00:00 21:00:00 \N 94 +238 2025-10-01 20:17:39.400619+00 2025-10-01 20:17:39.400627+00 f t 0 0 13:30:00 20:00:00 \N 91 +242 2025-10-01 20:18:38.360575+00 2025-10-01 20:18:38.360584+00 f t 4 4 13:30:00 20:00:00 \N 91 +246 2025-10-02 11:31:42.32341+00 2025-10-02 11:31:42.323419+00 f t 4 4 09:00:00 18:00:00 \N 88 +254 2025-10-02 21:56:22.807691+00 2025-10-02 21:56:22.8077+00 f t 6 6 10:00:00 18:00:00 \N 89 +258 2025-10-03 13:32:05.571216+00 2025-10-03 13:32:05.571224+00 f t 0 4 09:00:00 18:00:00 118 117 +262 2025-10-04 04:35:16.557385+00 2025-10-04 04:35:16.557392+00 f t 0 0 08:00:00 21:00:00 \N 80 +265 2025-10-04 04:36:01.453671+00 2025-10-04 04:36:01.453682+00 f t 4 4 08:00:00 21:00:00 \N 80 +271 2025-10-04 10:39:41.647753+00 2025-10-04 10:39:41.647762+00 f t 6 6 09:00:00 21:00:00 \N 71 +277 2025-10-08 19:02:40.297975+00 2025-10-08 19:02:40.297981+00 f t 0 6 08:00:00 21:00:00 118 118 +289 2025-10-14 14:59:16.498105+00 2025-10-14 14:59:16.498113+00 f t 0 0 09:00:00 19:00:00 \N 114 +292 2025-10-14 14:59:30.204919+00 2025-10-14 14:59:30.204928+00 f t 4 4 09:00:00 19:00:00 \N 114 +298 2025-10-24 13:28:08.708763+00 2025-10-24 13:28:08.708775+00 f t 6 6 08:00:00 13:00:00 \N 80 +11 2024-12-19 12:41:03.695+00 2024-12-19 12:41:03.695+00 t t 0 4 09:00:00 20:00:00 118 2 +301 2025-10-25 12:35:56.660356+00 2025-10-25 12:35:56.660368+00 f t 0 0 09:00:00 18:00:00 \N 2 +304 2025-10-25 12:36:01.225447+00 2025-10-25 12:36:01.225457+00 f t 3 3 09:00:00 18:00:00 \N 2 +307 2025-10-26 10:03:34.4149+00 2025-10-26 10:03:34.414911+00 f t 6 6 09:00:00 18:00:00 \N 114 +310 2025-10-26 11:58:16.672692+00 2025-10-26 11:58:16.672702+00 f t 0 0 09:00:00 21:00:00 \N 75 +313 2025-10-26 11:58:56.52706+00 2025-10-26 11:58:56.527068+00 f t 3 3 09:00:00 15:00:00 \N 75 +315 2025-10-26 11:59:16.52187+00 2025-10-26 11:59:16.521882+00 f t 5 5 11:00:00 16:00:00 \N 75 +317 2025-10-27 17:33:31.673108+00 2025-10-27 17:33:31.673118+00 f t 1 1 12:00:00 15:00:00 118 119 +319 2025-10-27 17:34:02.819024+00 2025-10-27 17:34:02.819034+00 f t 3 3 09:00:00 18:00:00 118 119 +321 2025-10-27 17:34:23.92645+00 2025-10-27 17:34:23.926458+00 f t 5 5 09:00:00 12:00:00 118 119 +60 2025-02-11 19:03:39.288719+00 2025-02-11 19:03:39.288733+00 t t 0 4 18:00:00 21:00:00 118 87 +324 2025-10-28 12:49:35.516513+00 2025-10-28 12:49:35.516521+00 f t 1 1 08:00:00 21:00:00 \N 87 +326 2025-10-28 12:49:51.523872+00 2025-10-28 12:49:51.523882+00 f t 2 2 08:00:00 21:00:00 \N 87 +336 2025-10-28 16:35:44.604743+00 2025-10-28 16:35:44.604753+00 t t 1 1 09:00:00 18:00:00 \N 90 +338 2025-10-28 16:35:50.341791+00 2025-10-28 16:35:50.341802+00 f t 2 2 09:00:00 18:00:00 \N 90 +340 2025-10-28 16:35:54.623881+00 2025-10-28 16:35:54.62389+00 f t 4 4 09:00:00 18:00:00 \N 90 +342 2025-10-28 16:35:58.739698+00 2025-10-28 16:35:58.73971+00 f t 6 6 09:00:00 18:00:00 \N 90 +344 2025-10-29 12:58:51.329555+00 2025-10-29 12:58:51.329565+00 f t 0 0 09:00:00 12:00:00 118 120 +346 2025-10-29 12:59:16.025108+00 2025-10-29 12:59:16.025152+00 f t 3 3 18:00:00 21:00:00 118 120 +348 2025-10-29 12:59:44.713987+00 2025-10-29 12:59:44.713995+00 f t 6 6 12:00:00 18:00:00 118 120 +350 2025-10-30 09:41:00.535939+00 2025-10-30 09:41:00.535952+00 f t 5 5 08:00:00 12:00:00 \N 21 +352 2025-10-30 16:29:59.488531+00 2025-10-30 16:29:59.488538+00 f t 4 4 12:00:00 14:00:00 \N 113 +6 2024-12-18 20:17:16.542+00 2024-12-18 20:17:16.542+00 f t 2 5 14:00:00 20:00:00 118 6 +12 2024-12-19 12:45:44.838+00 2024-12-19 12:45:44.838+00 f t 0 1 09:00:00 21:00:00 118 1 +13 2024-12-19 12:46:17.291+00 2024-12-19 12:46:17.291+00 f t 2 2 09:00:00 15:00:00 118 1 +14 2024-12-19 12:46:29.694+00 2024-12-19 12:46:29.694+00 f t 3 3 09:00:00 21:00:00 118 1 +15 2024-12-19 12:46:52.423+00 2024-12-19 12:46:52.423+00 f t 4 4 09:00:00 15:00:00 118 1 +16 2024-12-19 12:47:09.198+00 2024-12-19 12:47:09.198+00 f t 5 5 09:00:00 21:00:00 118 1 +17 2024-12-19 13:07:45.679+00 2024-12-19 13:07:45.679+00 f t 0 2 15:00:00 20:00:00 118 8 +19 2024-12-19 14:54:55.707+00 2024-12-19 14:54:55.707+00 f t 1 1 19:00:00 21:00:00 118 9 +20 2024-12-19 14:55:05.759+00 2024-12-19 14:55:05.759+00 f t 3 3 19:00:00 21:00:00 118 9 +353 2025-10-30 16:29:59.488578+00 2025-10-30 16:29:59.488581+00 f t 4 4 17:00:00 19:00:00 \N 113 +22 2024-12-19 15:30:06.894+00 2024-12-19 15:30:06.894+00 f t 1 1 09:00:00 12:00:00 118 72 +23 2024-12-19 15:30:21.229+00 2024-12-19 15:30:21.229+00 f t 4 4 09:00:00 12:00:00 118 72 +24 2024-12-19 15:30:37.626+00 2024-12-19 15:30:37.626+00 f t 3 3 15:00:00 21:00:00 118 72 +25 2024-12-19 15:31:32.568+00 2024-12-19 15:31:32.568+00 f t 0 5 09:00:00 12:00:00 118 74 +26 2024-12-19 15:31:56.3+00 2024-12-19 15:31:56.3+00 f t 1 1 12:00:00 18:00:00 118 74 +28 2024-12-19 15:35:53.252+00 2024-12-19 15:35:53.252+00 f t 0 0 18:00:00 21:00:00 118 70 +29 2024-12-19 15:36:09.114+00 2024-12-19 15:36:09.114+00 f t 2 2 18:00:00 21:00:00 118 70 +30 2024-12-19 15:36:18.582+00 2024-12-19 15:36:18.582+00 f t 4 4 18:00:00 21:00:00 118 70 +31 2024-12-19 15:37:17.554+00 2024-12-19 15:37:17.554+00 f t 0 2 09:00:00 12:00:00 118 66 +32 2024-12-19 15:37:44.822+00 2024-12-19 15:37:44.822+00 f t 3 3 09:00:00 18:00:00 118 66 +33 2024-12-19 15:38:00.804+00 2024-12-19 15:38:00.804+00 f t 5 5 09:00:00 18:00:00 118 66 +5 2024-12-18 20:11:38.829+00 2024-12-18 20:11:38.829+00 t t 6 6 09:00:00 12:00:00 118 68 +4 2024-12-18 20:11:24.465+00 2024-12-18 20:11:24.465+00 f t 5 6 08:00:00 19:00:00 118 68 +3 2024-12-18 20:11:02.184+00 2024-12-18 20:11:02.184+00 f t 3 3 15:00:00 19:00:00 118 68 +18 2024-12-19 14:54:38.834+00 2024-12-19 14:54:38.834+00 f t 4 4 17:00:00 21:00:00 118 9 +7 2024-12-18 20:18:17.965+00 2024-12-18 20:18:17.965+00 t t 1 2 18:00:00 19:00:00 118 71 +8 2024-12-18 20:23:42.57+00 2024-12-18 20:23:42.57+00 t t 3 3 17:00:00 19:00:00 118 71 +10 2024-12-19 12:33:20.228+00 2024-12-19 12:33:20.228+00 t t 1 3 08:00:00 14:00:00 118 14 +27 2024-12-19 15:35:21.003+00 2024-12-19 15:35:21.003+00 t t 5 6 09:00:00 21:00:00 118 70 +359 2025-10-31 22:15:26.432077+00 2025-10-31 22:15:26.432085+00 f t 5 5 10:00:00 18:00:00 \N 112 +280 2025-10-13 23:25:30.597331+00 2025-10-13 23:25:30.597343+00 t t 4 4 09:00:00 18:00:00 \N 112 +361 2025-11-04 18:32:09.449581+00 2025-11-04 18:32:09.449591+00 t t 1 1 09:00:00 18:00:00 \N 1 +363 2025-11-04 18:32:28.868697+00 2025-11-04 18:32:28.868705+00 t t 1 1 09:00:00 18:00:00 \N 1 +365 2025-11-04 18:32:28.892838+00 2025-11-04 18:32:28.892845+00 t t 1 1 09:00:00 18:00:00 \N 1 +367 2025-11-06 17:51:54.3668+00 2025-11-06 17:51:54.36681+00 t t 1 1 13:00:00 22:00:00 \N 112 +355 2025-10-31 22:15:16.917416+00 2025-10-31 22:15:16.917424+00 t t 0 0 09:00:00 18:00:00 \N 112 +369 2025-11-06 17:53:11.00436+00 2025-11-06 17:53:11.004368+00 t t 2 2 13:00:00 22:00:00 \N 112 +373 2025-11-06 17:54:48.873571+00 2025-11-06 17:54:48.873579+00 t t 5 5 13:00:00 22:00:00 \N 112 +375 2025-11-11 21:10:11.086344+00 2025-11-11 21:10:11.086359+00 f t 2 2 13:00:00 16:00:00 \N 112 +377 2025-11-11 21:10:35.340891+00 2025-11-11 21:10:35.340899+00 f t 0 0 09:00:00 18:00:00 \N 112 +382 2025-11-13 10:04:38.678544+00 2025-11-13 10:04:38.678552+00 f t 0 0 08:00:00 19:00:00 \N 21 +386 2025-11-14 14:34:14.417964+00 2025-11-14 14:34:14.417976+00 f t 4 4 09:00:00 21:00:00 \N 121 +295 2025-10-24 09:23:58.66919+00 2025-10-24 09:23:58.669199+00 t t 0 0 18:30:00 21:00:00 \N 92 +388 2025-11-21 10:43:46.554684+00 2025-11-21 10:43:46.554697+00 f t 0 0 08:00:00 18:30:00 \N 92 +36 2025-01-02 13:43:27.079+00 2025-01-02 13:43:27.079+00 f t 0 4 16:00:00 21:00:00 118 77 +37 2025-01-02 13:43:49.965+00 2025-01-02 13:43:49.965+00 f t 5 5 14:00:00 19:00:00 118 77 +38 2025-01-06 13:42:49.225+00 2025-01-06 13:42:49.226+00 f t 0 3 09:00:00 15:00:00 118 78 +39 2025-01-06 13:43:09.28+00 2025-01-06 13:43:09.28+00 f t 1 1 15:00:00 18:00:00 118 78 +40 2025-01-06 13:43:20.776+00 2025-01-06 13:43:20.776+00 f t 3 3 15:00:00 18:00:00 118 78 +80 2025-03-18 18:19:06.168903+00 2025-03-18 18:19:06.168913+00 t t 2 2 18:00:00 21:00:00 118 94 +235 2025-10-01 19:01:37.685388+00 2025-10-01 19:01:37.685401+00 f t 2 2 09:00:00 21:00:00 \N 94 +239 2025-10-01 20:17:52.280842+00 2025-10-01 20:17:52.280849+00 f t 1 1 13:30:00 20:00:00 \N 91 +243 2025-10-01 20:18:48.814566+00 2025-10-01 20:18:48.814577+00 f t 5 5 09:00:00 20:00:00 \N 91 +49 2025-01-23 12:29:49.383448+00 2025-01-23 12:29:49.383454+00 f t 0 4 09:00:00 15:00:00 118 81 +50 2025-01-23 12:30:27.565506+00 2025-01-23 12:30:27.565513+00 f t 5 6 09:00:00 12:00:00 118 81 +51 2025-01-23 17:48:26.894309+00 2025-01-23 17:48:26.894317+00 f t 0 0 18:00:00 21:00:00 118 82 +52 2025-01-23 17:48:48.947648+00 2025-01-23 17:48:48.947658+00 f t 1 2 08:00:00 12:00:00 118 82 +53 2025-01-23 17:49:04.197419+00 2025-01-23 17:49:04.197426+00 f t 3 3 15:00:00 18:00:00 118 82 +54 2025-01-23 17:49:17.813879+00 2025-01-23 17:49:17.813886+00 f t 4 4 18:00:00 21:00:00 118 82 +55 2025-01-23 17:49:28.496045+00 2025-01-23 17:49:28.496055+00 f t 5 6 08:00:00 12:00:00 118 82 +56 2025-01-27 15:26:16.097171+00 2025-01-27 15:26:16.09718+00 f t 0 6 18:00:00 21:00:00 118 83 +57 2025-02-03 20:51:15.478696+00 2025-02-03 20:51:15.478704+00 f t 0 6 15:00:00 21:00:00 118 85 +58 2025-02-03 20:51:43.914401+00 2025-02-03 20:51:43.914408+00 f t 5 6 09:00:00 15:00:00 118 85 +61 2025-02-13 13:31:50.822574+00 2025-02-13 13:31:50.822582+00 f t 0 4 09:00:00 18:00:00 118 88 +62 2025-02-13 13:32:05.001399+00 2025-02-13 13:32:05.00141+00 f t 5 5 09:00:00 12:00:00 118 88 +63 2025-02-13 13:32:17.915101+00 2025-02-13 13:32:17.91511+00 f t 6 6 12:00:00 15:00:00 118 88 +64 2025-02-13 13:39:56.499753+00 2025-02-13 13:39:56.499763+00 f t 1 1 18:00:00 21:00:00 118 89 +66 2025-02-13 13:40:25.891466+00 2025-02-13 13:40:25.891476+00 f t 2 2 15:00:00 18:00:00 118 89 +67 2025-02-13 13:40:41.826524+00 2025-02-13 13:40:41.826533+00 f t 4 4 15:00:00 18:00:00 118 89 +71 2025-02-21 20:31:03.601803+00 2025-02-21 20:31:03.60181+00 t t 0 1 15:00:00 21:00:00 118 91 +77 2025-03-17 17:55:58.049594+00 2025-03-17 17:55:58.049607+00 f t 0 6 15:00:00 21:00:00 118 93 +74 2025-02-27 14:55:31.451775+00 2025-02-27 14:55:31.451785+00 t t 0 4 09:00:00 15:00:00 118 92 +78 2025-03-18 18:18:36.403745+00 2025-03-18 18:18:36.403752+00 f t 1 1 09:00:00 21:00:00 118 94 +82 2025-03-18 18:19:39.118086+00 2025-03-18 18:19:39.118094+00 f t 5 6 09:00:00 18:00:00 118 94 +83 2025-04-15 13:43:41.483721+00 2025-04-15 13:43:41.48373+00 f t 0 6 08:00:00 21:00:00 118 76 +84 2025-04-16 19:34:24.991971+00 2025-04-16 19:34:24.991982+00 f t 0 1 18:00:00 21:00:00 118 96 +85 2025-04-16 19:34:48.283013+00 2025-04-16 19:34:48.283019+00 f t 3 4 18:00:00 21:00:00 118 96 +87 2025-04-21 12:48:26.990932+00 2025-04-21 12:48:26.990941+00 f t 0 4 08:00:00 21:00:00 118 11 +91 2025-04-28 12:22:01.559316+00 2025-04-28 12:22:01.559322+00 f t 0 6 18:00:00 21:00:00 118 98 +2 2024-12-18 20:10:47.59+00 2024-12-18 20:10:47.59+00 t t 0 0 15:00:00 21:00:00 118 68 +255 2025-10-03 13:04:47.946493+00 2025-10-03 13:04:47.946503+00 f t 0 4 09:00:00 12:00:00 118 116 +93 2025-06-03 12:23:39.150207+00 2025-06-03 12:23:39.150216+00 f t 0 0 09:00:00 18:00:00 118 99 +94 2025-06-03 12:25:06.355789+00 2025-06-03 12:25:06.3558+00 f t 1 3 19:30:00 21:00:00 118 99 +95 2025-06-03 12:25:31.493153+00 2025-06-03 12:25:31.493161+00 f t 4 4 15:00:00 21:00:00 118 99 +96 2025-06-03 12:25:44.255604+00 2025-06-03 12:25:44.255613+00 f t 5 6 09:00:00 21:00:00 118 99 +97 2025-06-25 15:28:05.593008+00 2025-06-25 15:28:05.593014+00 f t 0 0 20:00:00 21:00:00 118 9 +48 2025-01-23 12:25:17.670945+00 2025-01-23 12:25:17.670953+00 t t 3 3 08:00:00 10:00:00 118 80 +99 2025-07-14 15:23:50.116416+00 2025-07-14 15:23:50.116423+00 f t 1 1 09:00:00 18:00:00 118 101 +263 2025-10-04 04:35:31.866641+00 2025-10-04 04:35:31.866649+00 f t 2 2 08:00:00 21:00:00 \N 80 +101 2025-07-14 15:24:12.595729+00 2025-07-14 15:24:12.595738+00 f t 3 3 09:00:00 18:00:00 118 101 +102 2025-07-14 15:46:34.051549+00 2025-07-14 15:46:34.051559+00 f t 0 4 12:00:00 15:00:00 118 103 +103 2025-07-14 15:46:44.82096+00 2025-07-14 15:46:44.820966+00 f t 3 3 09:00:00 18:00:00 118 103 +104 2025-07-14 15:46:54.124173+00 2025-07-14 15:46:54.12418+00 f t 5 5 09:00:00 12:00:00 118 103 +105 2025-07-15 14:47:34.875439+00 2025-07-15 14:47:34.875447+00 f t 1 1 09:00:00 15:00:00 118 104 +269 2025-10-04 10:39:05.887592+00 2025-10-04 10:39:05.8876+00 f t 3 3 17:00:00 21:00:00 \N 71 +107 2025-07-15 14:48:01.488318+00 2025-07-15 14:48:01.488328+00 f t 3 3 09:00:00 18:00:00 118 104 +109 2025-07-15 14:48:26.29777+00 2025-07-15 14:48:26.29778+00 f t 5 5 09:00:00 15:00:00 118 104 +110 2025-07-24 14:05:10.243608+00 2025-07-24 14:05:10.243617+00 f t 0 0 18:00:00 21:00:00 118 106 +111 2025-07-24 14:05:24.163868+00 2025-07-24 14:05:24.163875+00 f t 1 2 09:00:00 21:00:00 118 106 +112 2025-07-24 14:06:07.192797+00 2025-07-24 14:06:07.192806+00 f t 3 4 15:00:00 18:00:00 118 106 +113 2025-07-29 14:35:09.833056+00 2025-07-29 14:35:09.833066+00 f t 0 4 15:00:00 21:00:00 118 107 +114 2025-07-29 14:35:22.237168+00 2025-07-29 14:35:22.237178+00 f t 5 6 09:00:00 18:00:00 118 107 +115 2025-07-29 14:45:35.774131+00 2025-07-29 14:45:35.774138+00 f t 0 3 13:30:00 15:00:00 118 108 +108 2025-07-15 14:48:15.179369+00 2025-07-15 14:48:15.179377+00 t t 4 4 15:00:00 18:00:00 118 104 +75 2025-02-27 14:55:46.896627+00 2025-02-27 14:55:46.896637+00 t t 5 5 15:00:00 18:00:00 118 92 +76 2025-02-27 14:55:58.195182+00 2025-02-27 14:55:58.195189+00 t t 6 6 09:00:00 15:00:00 118 92 +88 2025-04-25 18:06:32.356687+00 2025-04-25 18:06:32.356695+00 t t 0 0 09:00:00 12:00:00 118 97 +41 2025-01-06 17:06:14.483+00 2025-01-06 17:06:14.483+00 t t 0 0 08:00:00 12:00:00 118 79 +42 2025-01-06 17:06:26.022+00 2025-01-06 17:06:26.022+00 t t 0 0 18:00:00 21:00:00 118 79 +290 2025-10-14 14:59:21.72136+00 2025-10-14 14:59:21.721369+00 f t 1 1 09:00:00 19:00:00 \N 114 +293 2025-10-21 19:57:50.991608+00 2025-10-21 19:57:50.991618+00 f t 2 2 14:00:00 18:00:00 \N 68 +296 2025-10-24 09:24:41.360735+00 2025-10-24 09:24:41.360744+00 f t 5 5 13:30:00 18:00:00 \N 92 +299 2025-10-24 17:17:54.716485+00 2025-10-24 17:17:54.716497+00 f t 0 0 13:00:00 18:00:00 \N 89 +302 2025-10-25 12:35:57.835768+00 2025-10-25 12:35:57.835777+00 f t 1 1 09:00:00 18:00:00 \N 2 +305 2025-10-25 12:36:03.341807+00 2025-10-25 12:36:03.341816+00 f t 4 4 09:00:00 18:00:00 \N 2 +308 2025-10-26 10:03:46.063824+00 2025-10-26 10:03:46.063833+00 t t 5 5 09:00:00 18:00:00 \N 114 +311 2025-10-26 11:58:34.311089+00 2025-10-26 11:58:34.311097+00 f t 1 1 09:00:00 21:00:00 \N 75 +68 2025-02-14 14:36:13.331636+00 2025-02-14 14:36:13.331642+00 t t 0 4 09:00:00 18:00:00 118 90 +69 2025-02-14 14:36:28.224043+00 2025-02-14 14:36:28.22405+00 t t 5 6 10:00:00 18:00:00 118 90 +251 2025-10-02 20:34:07.184416+00 2025-10-02 20:34:07.184424+00 t t 6 6 10:00:00 21:30:00 \N 92 +116 2025-07-29 14:45:52.115106+00 2025-07-29 14:45:52.115114+00 f t 4 4 19:00:00 20:30:00 118 108 +117 2025-07-29 14:46:04.322361+00 2025-07-29 14:46:04.322368+00 f t 5 5 14:00:00 17:00:00 118 108 +118 2025-07-29 14:59:16.628683+00 2025-07-29 14:59:16.628693+00 f t 0 2 10:00:00 17:30:00 118 109 +119 2025-07-29 14:59:28.121899+00 2025-07-29 14:59:28.121909+00 f t 3 3 09:00:00 11:00:00 118 109 +120 2025-07-31 19:01:44.606997+00 2025-07-31 19:01:44.607008+00 f t 1 1 15:00:00 21:00:00 118 110 +121 2025-07-31 19:01:54.600469+00 2025-07-31 19:01:54.600477+00 f t 3 3 15:00:00 21:00:00 118 110 +122 2025-07-31 19:02:05.536411+00 2025-07-31 19:02:05.536417+00 f t 5 5 09:00:00 12:00:00 118 110 +123 2025-08-11 18:29:58.91347+00 2025-08-11 18:29:58.913481+00 f t 0 6 09:00:00 12:00:00 118 111 +124 2025-08-11 18:30:14.779021+00 2025-08-11 18:30:14.77903+00 f t 0 4 12:00:00 15:00:00 118 111 +127 2025-08-19 23:21:06.88613+00 2025-08-19 23:21:06.886155+00 f t 1 1 09:00:00 13:00:00 118 14 +128 2025-08-19 23:21:18.209432+00 2025-08-19 23:21:18.209441+00 f t 3 3 09:00:00 13:00:00 118 14 +129 2025-09-09 17:38:16.219517+00 2025-09-09 17:38:16.219525+00 t t 1 1 09:00:00 15:00:00 118 113 +131 2025-09-09 17:38:43.383302+00 2025-09-09 17:38:43.383309+00 t t 2 3 12:00:00 18:00:00 118 113 +130 2025-09-09 17:38:25.699518+00 2025-09-09 17:38:25.699524+00 t t 4 4 09:00:00 15:00:00 118 113 +143 2025-09-20 11:53:30.800336+00 2025-09-20 11:53:30.800344+00 t t 2 2 18:00:00 21:00:00 \N 92 +236 2025-10-01 19:01:48.524851+00 2025-10-01 19:01:48.524864+00 f t 3 3 09:00:00 21:00:00 \N 94 +136 2025-09-19 17:05:56.607912+00 2025-09-19 17:05:56.607921+00 t t 3 3 09:00:00 18:00:00 \N 92 +140 2025-09-19 17:07:14.986124+00 2025-09-19 17:07:14.986134+00 t t 4 4 09:00:00 18:00:00 \N 92 +145 2025-09-23 11:53:54.917206+00 2025-09-23 11:53:54.917215+00 f t 2 2 08:00:00 09:00:00 \N 70 +146 2025-09-23 16:28:38.361609+00 2025-09-23 16:28:38.36162+00 f t 0 4 09:00:00 12:00:00 118 115 +147 2025-09-23 16:28:47.577122+00 2025-09-23 16:28:47.577132+00 f t 6 6 09:00:00 12:00:00 118 115 +148 2025-09-24 12:27:29.117729+00 2025-09-24 12:27:29.117737+00 f t 0 6 08:00:00 21:00:00 118 95 +149 2025-09-24 20:36:48.75265+00 2025-09-24 20:36:48.752661+00 t t 1 1 09:00:00 18:00:00 \N 1 +150 2025-09-25 20:44:27.051241+00 2025-09-25 20:44:27.051257+00 f t 0 5 09:00:00 21:00:00 118 84 +151 2025-09-25 20:47:54.307463+00 2025-09-25 20:47:54.307473+00 f t 0 6 09:00:00 21:00:00 118 105 +152 2025-09-26 19:30:42.833366+00 2025-09-26 19:30:42.833376+00 t t 6 6 10:00:00 18:00:00 \N 104 +153 2025-09-26 19:30:48.890207+00 2025-09-26 19:30:48.89022+00 f t 0 0 09:00:00 18:00:00 \N 104 +106 2025-07-15 14:47:48.164558+00 2025-07-15 14:47:48.164567+00 t t 2 2 15:00:00 18:00:00 118 104 +154 2025-09-27 19:05:20.479534+00 2025-09-27 19:05:20.479555+00 f t 6 6 10:00:00 18:00:00 \N 70 +155 2025-09-28 00:09:42.142746+00 2025-09-28 00:09:42.142758+00 f t 1 1 09:00:00 18:00:00 \N 88 +156 2025-09-28 00:09:43.200148+00 2025-09-28 00:09:43.200157+00 f t 2 2 09:00:00 18:00:00 \N 88 +157 2025-09-28 00:09:44.34867+00 2025-09-28 00:09:44.348679+00 f t 3 3 09:00:00 18:00:00 \N 88 +158 2025-09-28 00:09:45.485313+00 2025-09-28 00:09:45.485324+00 t t 4 4 09:00:00 18:00:00 \N 88 +162 2025-09-29 18:49:36.600737+00 2025-09-29 18:49:36.600748+00 t t 4 4 09:00:00 18:00:00 \N 97 +163 2025-09-29 18:50:06.112087+00 2025-09-29 18:50:06.112106+00 f t 4 4 18:30:00 21:00:00 \N 97 +240 2025-10-01 20:18:04.444714+00 2025-10-01 20:18:04.444727+00 f t 2 2 13:30:00 20:00:00 \N 91 +165 2025-09-29 19:04:10.567261+00 2025-09-29 19:04:10.567274+00 t t 0 0 09:00:00 18:00:00 \N 113 +168 2025-09-29 19:05:32.12712+00 2025-09-29 19:05:32.127157+00 f t 1 1 09:00:00 18:00:00 \N 113 +170 2025-09-29 19:05:44.317131+00 2025-09-29 19:05:44.31714+00 f t 3 3 09:00:00 18:00:00 \N 113 +171 2025-09-29 19:35:06.673999+00 2025-09-29 19:35:06.674013+00 t t 0 0 09:00:00 18:00:00 \N 97 +244 2025-10-01 20:18:57.344273+00 2025-10-01 20:18:57.344285+00 f t 6 6 09:00:00 20:00:00 \N 91 +175 2025-09-29 19:42:28.936584+00 2025-09-29 19:42:28.936592+00 f t 0 0 18:45:00 22:00:00 \N 97 +256 2025-10-03 13:05:19.393678+00 2025-10-03 13:05:19.393686+00 f t 0 4 15:00:00 18:00:00 118 116 +177 2025-09-29 21:37:11.422528+00 2025-09-29 21:37:11.422539+00 t t 5 5 10:00:00 18:00:00 \N 92 +180 2025-09-29 21:42:41.934371+00 2025-09-29 21:42:41.934383+00 t t 0 0 09:00:00 18:00:00 \N 68 +182 2025-09-29 21:43:22.505263+00 2025-09-29 21:43:22.505271+00 f t 0 0 15:00:00 16:00:00 \N 68 +183 2025-09-29 21:43:22.505311+00 2025-09-29 21:43:22.505314+00 f t 0 0 20:00:00 21:00:00 \N 68 +185 2025-09-29 21:43:54.978652+00 2025-09-29 21:43:54.978664+00 f t 4 4 08:00:00 19:00:00 \N 68 +186 2025-09-29 22:00:39.270636+00 2025-09-29 22:00:39.270648+00 f t 0 0 10:00:00 17:00:00 \N 101 +187 2025-09-29 22:01:07.088382+00 2025-09-29 22:01:07.088391+00 f t 2 2 10:00:00 18:00:00 \N 101 +188 2025-09-29 22:01:40.814198+00 2025-09-29 22:01:40.814211+00 f t 4 4 10:01:00 18:01:00 \N 101 +134 2025-09-19 17:05:38.417772+00 2025-09-19 17:05:38.417785+00 t t 0 0 18:00:00 21:00:00 \N 92 +135 2025-09-19 17:05:50.640523+00 2025-09-19 17:05:50.640531+00 t t 1 1 18:00:00 21:00:00 \N 92 +144 2025-09-23 11:12:03.492295+00 2025-09-23 11:12:03.492305+00 t t 1 1 09:00:00 18:00:00 \N 70 +189 2025-09-30 01:11:38.728261+00 2025-09-30 01:11:38.728271+00 t t 1 1 09:00:00 18:00:00 \N 90 +190 2025-09-30 01:11:40.625011+00 2025-09-30 01:11:40.625021+00 t t 2 2 09:00:00 18:00:00 \N 90 +199 2025-09-30 11:36:08.162581+00 2025-09-30 11:36:08.162596+00 f t 0 0 10:00:00 18:00:00 \N 5 +200 2025-09-30 11:36:23.181406+00 2025-09-30 11:36:23.181419+00 f t 1 1 10:00:00 18:00:00 \N 5 +201 2025-09-30 11:36:32.0784+00 2025-09-30 11:36:32.078415+00 f t 2 2 10:00:00 18:00:00 \N 5 +202 2025-09-30 11:36:41.396288+00 2025-09-30 11:36:41.396297+00 f t 3 3 10:00:00 18:00:00 \N 5 +203 2025-09-30 11:36:51.150894+00 2025-09-30 11:36:51.150907+00 f t 4 4 10:00:00 18:00:00 \N 5 +204 2025-09-30 14:59:45.623644+00 2025-09-30 14:59:45.623654+00 t t 3 3 09:00:00 18:00:00 \N 80 +191 2025-09-30 01:11:41.674152+00 2025-09-30 01:11:41.674162+00 t t 3 3 09:00:00 18:00:00 \N 90 +192 2025-09-30 01:11:42.785745+00 2025-09-30 01:11:42.785754+00 t t 4 4 09:00:00 18:00:00 \N 90 +193 2025-09-30 01:11:44.550297+00 2025-09-30 01:11:44.550308+00 t t 6 6 10:00:00 18:00:00 \N 90 +137 2025-09-19 17:07:02.315295+00 2025-09-19 17:07:02.31531+00 t t 3 3 19:30:00 21:00:00 \N 92 +138 2025-09-19 17:07:04.991227+00 2025-09-19 17:07:04.99124+00 t t 3 3 19:30:00 21:00:00 \N 92 +141 2025-09-19 17:07:26.054307+00 2025-09-19 17:07:26.054315+00 t t 4 4 18:00:00 21:00:00 \N 92 +139 2025-09-19 17:07:05.617241+00 2025-09-19 17:07:05.617253+00 t t 3 3 19:30:00 21:00:00 \N 92 +209 2025-09-30 16:19:23.339179+00 2025-09-30 16:19:23.339188+00 f t 6 6 10:00:00 18:00:00 \N 94 +237 2025-10-01 19:01:55.933549+00 2025-10-01 19:01:55.933562+00 f t 4 4 09:00:00 21:00:00 \N 94 +241 2025-10-01 20:18:18.842313+00 2025-10-01 20:18:18.842328+00 f t 3 3 13:30:00 20:00:00 \N 91 +245 2025-10-02 11:31:42.024224+00 2025-10-02 11:31:42.024279+00 f t 4 4 09:00:00 18:00:00 \N 88 +207 2025-09-30 14:59:54.496245+00 2025-09-30 14:59:54.496254+00 t t 6 6 10:00:00 18:00:00 \N 80 +217 2025-09-30 16:56:30.071423+00 2025-09-30 16:56:30.071432+00 f t 1 1 08:00:00 19:00:00 \N 21 +218 2025-09-30 16:56:48.77388+00 2025-09-30 16:56:48.773889+00 f t 2 2 08:00:00 19:00:00 \N 21 +219 2025-09-30 16:57:01.261852+00 2025-09-30 16:57:01.261862+00 f t 3 3 08:00:00 19:00:00 \N 21 +220 2025-09-30 16:57:12.680846+00 2025-09-30 16:57:12.680861+00 f t 4 4 08:00:00 19:00:00 \N 21 +222 2025-09-30 19:30:53.626665+00 2025-09-30 19:30:53.626679+00 f t 0 0 08:00:00 16:00:00 \N 79 +223 2025-09-30 19:31:13.583+00 2025-09-30 19:31:13.583011+00 f t 1 1 10:00:00 21:00:00 \N 79 +225 2025-09-30 19:32:00.679884+00 2025-09-30 19:32:00.679895+00 f t 4 4 09:00:00 14:00:00 \N 79 +249 2025-10-02 20:33:22.585953+00 2025-10-02 20:33:22.585962+00 t t 2 2 09:00:00 18:00:00 \N 92 +227 2025-09-30 19:32:47.282721+00 2025-09-30 19:32:47.282731+00 f t 5 5 10:00:00 14:00:00 \N 79 +228 2025-09-30 19:32:47.282777+00 2025-09-30 19:32:47.28278+00 f t 5 5 20:00:00 22:00:00 \N 79 +229 2025-09-30 19:37:24.962196+00 2025-09-30 19:37:24.962206+00 f t 6 6 10:00:00 18:00:00 \N 79 +230 2025-09-30 19:48:49.404986+00 2025-09-30 19:48:49.405+00 f t 3 3 14:00:00 18:00:00 \N 79 +231 2025-09-30 23:19:48.213165+00 2025-09-30 23:19:48.213177+00 f t 2 2 19:00:00 22:00:00 \N 97 +232 2025-09-30 23:20:09.639016+00 2025-09-30 23:20:09.639032+00 f t 3 3 19:00:00 22:00:00 \N 97 +233 2025-09-30 23:20:29.732926+00 2025-09-30 23:20:29.732939+00 f t 4 4 19:00:00 22:00:00 \N 97 +253 2025-10-02 21:56:21.888072+00 2025-10-02 21:56:21.888082+00 f t 5 5 10:00:00 18:00:00 \N 89 +257 2025-10-03 13:05:34.584556+00 2025-10-03 13:05:34.584565+00 f t 4 6 12:00:00 15:00:00 118 116 +261 2025-10-04 04:34:57.292465+00 2025-10-04 04:34:57.292473+00 f t 1 1 08:00:00 21:00:00 \N 80 +264 2025-10-04 04:35:48.755857+00 2025-10-04 04:35:48.755866+00 f t 3 3 08:00:00 21:00:00 \N 80 +267 2025-10-04 10:38:38.314028+00 2025-10-04 10:38:38.314037+00 f t 2 2 17:00:00 21:00:00 \N 71 +270 2025-10-04 10:39:24.74093+00 2025-10-04 10:39:24.740939+00 f t 5 5 09:00:00 21:00:00 \N 71 +273 2025-10-05 14:39:09.441228+00 2025-10-05 14:39:09.441237+00 t t 6 6 10:00:00 18:00:00 \N 80 +282 2025-10-13 23:25:32.815048+00 2025-10-13 23:25:32.815057+00 f t 6 6 10:00:00 18:00:00 \N 112 +291 2025-10-14 14:59:25.759209+00 2025-10-14 14:59:25.759218+00 f t 2 2 09:00:00 19:00:00 \N 114 +294 2025-10-21 19:58:24.734668+00 2025-10-21 19:58:24.734678+00 f t 1 1 10:00:00 19:00:00 \N 68 +297 2025-10-24 13:27:52.576975+00 2025-10-24 13:27:52.576984+00 f t 5 5 08:00:00 13:00:00 \N 80 +300 2025-10-24 17:18:03.886586+00 2025-10-24 17:18:03.886594+00 f t 3 3 13:00:00 21:00:00 \N 89 +303 2025-10-25 12:35:59.437697+00 2025-10-25 12:35:59.437705+00 f t 2 2 09:00:00 18:00:00 \N 2 +306 2025-10-26 10:03:31.887184+00 2025-10-26 10:03:31.887197+00 t t 6 6 10:00:00 18:00:00 \N 114 +288 2025-10-14 14:59:09.562196+00 2025-10-14 14:59:09.562208+00 t t 5 5 10:00:00 16:00:00 \N 114 +309 2025-10-26 10:05:15.277222+00 2025-10-26 10:05:15.277231+00 f t 5 5 16:00:00 19:06:00 \N 114 +312 2025-10-26 11:58:47.126908+00 2025-10-26 11:58:47.126919+00 f t 2 2 09:00:00 15:00:00 \N 75 +314 2025-10-26 11:59:05.640796+00 2025-10-26 11:59:05.640805+00 f t 4 4 09:00:00 21:00:00 \N 75 +316 2025-10-27 17:33:21.664978+00 2025-10-27 17:33:21.664987+00 f t 0 0 09:00:00 18:00:00 118 119 +318 2025-10-27 17:33:49.274355+00 2025-10-27 17:33:49.274363+00 f t 2 2 12:00:00 18:00:00 118 119 +320 2025-10-27 17:34:14.477185+00 2025-10-27 17:34:14.477194+00 f t 4 4 12:00:00 18:00:00 118 119 +322 2025-10-28 11:56:39.503158+00 2025-10-28 11:56:39.503166+00 f t 5 5 10:00:00 18:00:00 \N 70 +323 2025-10-28 12:48:54.874476+00 2025-10-28 12:48:54.874485+00 f t 0 0 08:00:00 21:00:00 \N 87 +327 2025-10-28 12:50:03.577235+00 2025-10-28 12:50:03.57725+00 t t 3 3 09:00:00 18:00:00 \N 87 +329 2025-10-28 12:50:35.272731+00 2025-10-28 12:50:35.272739+00 f t 3 3 08:00:00 21:00:00 \N 87 +331 2025-10-28 12:50:52.810826+00 2025-10-28 12:50:52.810834+00 f t 4 4 08:00:00 21:00:00 \N 87 +333 2025-10-28 12:51:14.496002+00 2025-10-28 12:51:14.49601+00 f t 5 5 09:00:00 18:00:00 \N 87 +335 2025-10-28 16:22:03.984881+00 2025-10-28 16:22:03.984892+00 f t 0 0 13:00:00 20:00:00 \N 90 +337 2025-10-28 16:35:47.445009+00 2025-10-28 16:35:47.445019+00 f t 1 1 09:00:00 18:00:00 \N 90 +339 2025-10-28 16:35:52.197325+00 2025-10-28 16:35:52.197335+00 f t 3 3 09:00:00 18:00:00 \N 90 +341 2025-10-28 16:35:56.837798+00 2025-10-28 16:35:56.837809+00 f t 5 5 09:00:00 18:00:00 \N 90 +345 2025-10-29 12:59:02.912+00 2025-10-29 12:59:02.912009+00 f t 2 2 09:00:00 18:00:00 118 120 +347 2025-10-29 12:59:31.137822+00 2025-10-29 12:59:31.137829+00 f t 4 4 09:00:00 12:00:00 118 120 +211 2025-09-30 16:55:43.962531+00 2025-09-30 16:55:43.962543+00 t t 0 0 08:00:00 19:00:00 \N 21 +351 2025-10-30 16:29:19.064767+00 2025-10-30 16:29:19.064777+00 f t 0 0 12:00:00 18:00:00 \N 113 +354 2025-10-30 16:30:25.946755+00 2025-10-30 16:30:25.946766+00 f t 2 2 12:00:00 18:00:00 \N 113 +224 2025-09-30 19:31:39.600459+00 2025-09-30 19:31:39.60047+00 t t 2 2 15:30:00 21:00:00 \N 79 +364 2025-11-04 18:32:28.889046+00 2025-11-04 18:32:28.889056+00 t t 1 1 09:00:00 18:00:00 \N 1 +362 2025-11-04 18:32:28.866018+00 2025-11-04 18:32:28.866028+00 t t 1 1 09:00:00 18:00:00 \N 1 +358 2025-10-31 22:15:25.117475+00 2025-10-31 22:15:25.117484+00 t t 3 3 09:00:00 18:00:00 \N 112 +372 2025-11-06 17:54:32.374943+00 2025-11-06 17:54:32.374951+00 f t 4 4 13:00:00 22:00:00 \N 112 +374 2025-11-11 17:53:36.814195+00 2025-11-11 17:53:36.814208+00 f t 1 1 13:00:00 22:00:00 \N 112 +376 2025-11-11 21:10:22.758794+00 2025-11-11 21:10:22.758802+00 f t 3 3 13:00:00 16:00:00 \N 112 +378 2025-11-12 12:43:22.333638+00 2025-11-12 12:43:22.333647+00 t t 1 1 09:00:00 18:00:00 \N 92 +380 2025-11-12 13:13:34.761444+00 2025-11-12 13:13:34.76146+00 t t 1 1 09:00:00 15:00:00 \N 92 +381 2025-11-12 13:13:34.761537+00 2025-11-12 13:13:34.761542+00 t t 1 1 19:00:00 20:00:00 \N 92 +383 2025-11-13 17:50:58.025681+00 2025-11-13 17:50:58.025687+00 f t 3 3 09:00:00 21:00:00 118 121 +385 2025-11-13 17:51:40.456764+00 2025-11-13 17:51:40.45677+00 f t 5 5 14:00:00 19:00:00 118 121 +343 2025-10-28 20:26:09.212115+00 2025-10-28 20:26:09.212129+00 t t 5 5 10:00:00 18:00:00 \N 5 +387 2025-11-21 10:42:46.023852+00 2025-11-21 10:42:46.023862+00 t t 0 0 09:00:00 18:00:00 \N 92 +389 2025-11-21 10:44:22.098217+00 2025-11-21 10:44:22.098227+00 f t 4 4 08:00:00 21:00:00 \N 92 +390 2025-11-25 16:08:41.254083+00 2025-11-25 16:08:41.25409+00 f t 0 6 08:00:00 21:00:00 118 100 +250 2025-10-02 20:33:40.598959+00 2025-10-02 20:33:40.598967+00 f t 2 2 08:00:00 21:00:00 121 92 +\. + + +-- +-- Data for Name: mascotas_followupimage; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_followupimage (id, created_at, updated_at, deleted, active, image, user_id, follow_up_id) FROM stdin; +\. + + +-- +-- Data for Name: mascotas_pet; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_pet (id, created_at, updated_at, deleted, active, name, pet_type, age, weight, height, is_neutered, allergies, birth_date, last_checkup_date, last_deworming_date, last_vaccination_date, gender, notes, profile_picture, state, is_deceased, breed_id, user_id, owner_id) FROM stdin; +681 2025-03-18 23:59:35.626156+00 2025-03-18 23:59:35.626164+00 f t Lito DOG 4 13.00 0.00 t 2020-12-02 2025-03-19 \N \N MALE \N f \N 113 581 +680 2025-03-18 23:57:58.929981+00 2025-03-18 23:57:58.929987+00 f t Nina DOG 6 0.00 0.00 t 2018-12-02 2025-03-19 \N \N FEMALE \N f \N 113 581 +679 2025-03-18 23:54:32.421228+00 2025-03-18 23:54:32.421235+00 f t Blue CAT 5 0.00 0.00 t 2019-12-02 2025-03-19 \N \N MALE \N f \N 113 580 +442 2025-01-28 01:49:11.089601+00 2025-01-28 01:49:11.089607+00 f t Frida CAT \N 3.00 0.00 t 2020-11-16 2025-01-28 \N \N FEMALE Paciente: FRIDA\r\nGato. Europeo\r\n4 años. 16/11/20\r\n3 kilos\r\nCastrada \N f 27 110 376 +426 2025-01-23 17:39:57.550509+00 2025-01-23 17:39:57.550517+00 f t Ashi CAT 10 12.00 0.00 t 2015-01-01 2025-01-24 \N \N FEMALE \N f 27 111 361 +474 2025-02-02 17:49:09.125985+00 2025-02-02 17:49:09.125992+00 f t Tyron DOG 12 48.00 0.00 t 2013-02-01 2025-02-02 \N \N MALE \N f 54 114 400 +457 2025-01-30 19:03:30.237637+00 2025-01-30 19:03:30.237647+00 f t Seda DOG 6 0.00 0.00 t 2019-01-01 \N \N \N MALE \N f 1 111 385 +5949 2025-08-25 11:23:47.079346+00 2025-08-25 11:23:47.079357+00 f t negrita DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7250 +465 2025-01-31 13:45:10.361227+00 2025-01-31 13:45:10.361234+00 f t chloe DOG 4 5.00 0.00 f 2021-01-01 2025-02-01 \N \N FEMALE \N f 8 111 391 +699 2025-03-23 22:10:14.65736+00 2025-03-23 22:10:14.657368+00 f t Tiberio CAT 1 0.00 0.00 t \N 2025-03-23 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? Sí, Moxidex Plus (antiparasitario, la última toma 21/3)\r\n¿Puede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Suele asustarse hasta que entra en confianza. Pero no siempre es así. \N f 35 114 597 +260 2024-12-03 21:08:48.821+00 2024-12-03 21:08:48.821+00 f t Pepa DOG 6 0.00 0.00 f 2018-12-02 2024-11-27 \N \N FEMALE \N f 23 114 222 +3799 2025-07-14 23:21:06.832452+00 2025-07-14 23:21:06.832461+00 f t pila DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4567 +742 2025-04-03 15:54:10.781057+00 2025-04-03 15:54:10.781064+00 f t MARQUESA DOG \N 0.00 0.00 f \N \N \N \N FEMALE \N f 2 111 631 +729 2025-03-30 21:51:03.431192+00 2025-03-30 21:51:03.431199+00 f t Pipo DOG 8 6.00 0.00 t \N 2025-04-01 \N \N MALE no toma medicacion, docil \N f 66 114 564 +6011 2025-08-26 15:44:43.827651+00 2025-08-26 15:44:43.827663+00 f t Luca DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7325 +714 2025-03-25 21:40:00.206938+00 2025-03-25 21:40:00.206947+00 f t Chimo CAT 9 4.50 0.00 t \N 2025-03-27 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? No\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Se estresa y se esconde pero es dócil \N f 41 113 611 +756 2025-04-06 15:38:13.802738+00 2025-04-06 15:38:13.802744+00 f t Sara CAT 13 0.00 0.00 t \N 2025-04-08 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? No\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce?\r\nCon las visitas suele acercarse para compartir pero sin contacto directo. A través mío por ahí si. \N f \N 114 641 +551 2025-02-18 14:29:53.641061+00 2025-02-18 14:29:53.641068+00 f t Tini CAT \N 1.00 0.00 f 2024-12-01 2025-03-20 \N \N FEMALE \N f 27 111 464 +978 2025-05-08 22:52:37.669348+00 2025-05-08 22:52:37.66936+00 f t Len CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 866 +1088 2025-05-13 17:24:11.045298+00 2025-05-13 17:24:11.045312+00 f t Trigo DOG \N 40.00 0.00 f \N \N 2025-05-14 \N \N MALE \N \N f \N \N 991 +784 2025-04-15 00:50:11.226142+00 2025-04-15 00:50:11.226151+00 f t Milo CAT 0 2.00 0.00 f \N 2025-04-14 \N \N MALE \N f \N 113 663 +994 2025-05-09 16:59:51.696132+00 2025-05-09 16:59:51.696145+00 f t TEST DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 882 +814 2025-04-19 00:12:54.849822+00 2025-04-19 00:12:54.849831+00 f t Odin CAT 0 1.00 0.00 f \N 2025-04-19 \N \N MALE \N f \N 113 697 +617 2025-03-01 22:15:16.385634+00 2025-03-01 22:15:16.385644+00 f t Amy CAT \N 0.00 0.00 t \N 2025-03-04 \N \N FEMALE Si, ya de por sí es algo agresiva con extraños, y se pone muy agresiva cuando la llevo al vet. Generalmente la drogan y es muy traumático para ella. Vivimos en depto y no sale. \N f \N 113 522 +1099 2025-05-14 00:09:17.372913+00 2025-05-14 00:09:17.372922+00 f t Antu CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1005 +829 2025-04-21 21:09:59.792859+00 2025-04-21 21:09:59.792866+00 f t Pepe CAT 4 4.00 0.00 t 2021-12-21 \N \N \N MALE \N f 27 112 711 +857 2025-04-25 20:27:42.188366+00 2025-04-25 20:27:42.190087+00 t t Katrina DOG 16 10.00 0.00 t \N \N \N \N FEMALE \N f 1 111 733 +844 2025-04-24 15:24:56.313052+00 2025-04-24 15:24:56.31306+00 f t Bambu CAT 10 0.00 0.00 t \N 2025-06-27 \N \N FEMALE \N f \N 112 722 +870 2025-04-27 00:17:21.637599+00 2025-04-27 00:17:21.637612+00 f t Tony soprano DOG \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 746 +312 2024-12-16 23:31:45.425+00 2024-12-16 23:31:45.425+00 f t Astrea CAT 4 4.00 0.00 t 2020-12-02 2024-12-17 \N \N FEMALE \N f 36 110 269 +409 2025-01-21 12:06:13.385997+00 2025-01-21 12:06:13.386006+00 f t Nobu DOG 15 20.00 0.00 f 2009-12-02 2025-01-21 \N \N MALE \N f 17 114 348 +894 2025-05-02 18:35:32.202295+00 2025-05-02 18:35:32.202306+00 f t Ringo DOG 12 35.00 0.00 t \N 2025-05-02 \N \N MALE medicado con gerioxx atlansil \N f \N 112 772 +2070 2025-06-07 00:21:47.371548+00 2025-06-07 00:21:47.371562+00 f t Millie DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2278 +926 2025-05-05 20:23:34.787397+00 2025-05-05 20:23:34.787407+00 f t Bella CAT 2 3.00 0.00 f \N 2025-05-06 \N \N FEMALE \N f 29 112 816 +1008 2025-05-10 14:09:46.193336+00 2025-05-10 14:09:46.193346+00 f t Skye DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 900 +769 2025-04-09 23:40:14.660986+00 2025-04-09 23:40:14.660993+00 f t Chicho CAT 5 8.00 0.00 t \N 2025-05-03 \N \N MALE \N f \N 113 652 +1036 2025-05-12 15:02:31.97191+00 2025-05-12 15:02:31.971919+00 f t RALFO CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 932 +1050 2025-05-12 19:17:04.147158+00 2025-05-12 19:17:04.147166+00 f t Pepu DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 946 +2103 2025-06-07 19:42:53.41961+00 2025-06-07 19:42:53.419619+00 f t Julieta Bianchelli CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2325 +1063 2025-05-12 23:46:59.734206+00 2025-05-12 23:46:59.734215+00 f t Chicha DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 963 +1076 2025-05-13 13:10:09.154263+00 2025-05-13 13:10:09.154275+00 f t Blanquita DOG \N 11.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 980 +1121 2025-05-14 16:54:26.091687+00 2025-05-14 16:54:26.091702+00 f t Pacha DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1030 +1090 2025-05-13 17:30:50.960326+00 2025-05-13 17:30:50.960336+00 f t Pepper CAT \N 3.00 0.00 f \N \N 2025-05-14 \N \N FEMALE \N \N f \N \N 992 +434 2025-01-26 18:48:04.698773+00 2025-01-26 18:48:04.69878+00 f t Alma DOG 5 40.00 0.00 f 2019-12-02 2025-01-26 \N \N FEMALE \N f \N 113 369 +450 2025-01-28 23:40:49.842397+00 2025-01-28 23:40:49.842405+00 f t Charly DOG 12 40.00 0.00 f 2012-12-02 2025-01-31 \N \N MALE \N f 4 113 380 +1133 2025-05-14 19:37:57.406377+00 2025-05-14 19:37:57.406392+00 f t Renato CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1053 +503 2025-02-06 15:45:33.02374+00 2025-02-06 15:45:33.02375+00 f t a DOG 1 5.00 0.00 f 2023-12-02 2025-02-06 \N \N MALE \N f 1 111 423 +494 2025-02-04 15:46:31.159821+00 2025-02-04 15:46:31.159828+00 f t Nina CAT 8 5.00 0.00 t 2016-12-02 2025-02-04 \N \N FEMALE \N f \N 114 415 +799 2025-04-16 18:04:23.684236+00 2025-04-16 18:04:23.684242+00 f t Clio CAT 13 5.00 0.00 t \N 2025-07-01 \N \N FEMALE \N f \N 113 676 +473 2025-02-01 22:21:54.830912+00 2025-02-01 22:21:54.830918+00 f t Lichi DOG 6 19.00 0.00 t 2018-12-02 2025-02-07 \N \N FEMALE \N f \N 114 399 +484 2025-02-03 17:05:16.50643+00 2025-02-03 17:05:16.506437+00 f t Vito DOG 9 11.00 0.00 t 2015-12-02 2025-02-07 \N \N MALE \N f 1 111 407 +948 2025-05-07 19:09:08.489236+00 2025-05-07 19:09:08.489248+00 f t Adolfo CAT 3 6.00 0.00 t \N 2025-05-12 \N \N \N \N f \N 112 839 +1153 2025-05-15 14:40:12.908295+00 2025-05-15 14:40:12.909064+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1085 +1111 2025-05-14 15:10:55.5079+00 2025-05-14 15:10:55.507911+00 f t Lola DOG 15 5.00 0.00 t \N 2025-05-15 \N \N FEMALE \N f 23 112 1021 +1164 2025-05-15 18:23:00.945396+00 2025-05-15 18:23:00.945406+00 f t Sunny CAT 1 5.50 0.00 t \N 2025-05-17 \N \N MALE \N f \N 112 1098 +1186 2025-05-16 11:28:04.631183+00 2025-05-16 11:28:04.631199+00 f t Chaco DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1124 +2126 2025-06-08 03:40:09.058482+00 2025-06-08 03:40:09.058496+00 f t Polenta CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2355 +1203 2025-05-16 18:48:47.09095+00 2025-05-16 18:48:47.090964+00 f t Prueba DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1147 +1216 2025-05-17 03:53:20.763524+00 2025-05-17 03:53:20.763536+00 f t Gitano DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1167 +1022 2025-05-11 19:19:14.380287+00 2025-05-11 19:19:14.380295+00 f t Varda CAT 2 0.00 0.00 f \N 2025-05-15 \N \N FEMALE \N f \N 113 917 +250 2024-12-02 21:10:39.449+00 2024-12-02 21:10:39.449+00 f t Chanel CAT 3 3.00 0.00 t 2021-01-01 2024-12-05 \N \N FEMALE \N f 27 114 229 +686 2025-03-19 21:23:29.057219+00 2025-03-19 21:23:29.057227+00 f t Colo Barletta CAT 5 8.40 0.00 t 2020-01-01 2025-03-19 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? Le dieron algo tipo Reliveran inyectable\r\n\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce?\r\nNo, es muy bueno \N f 27 110 585 +881 2025-04-29 18:12:33.415132+00 2025-04-29 18:12:33.415139+00 f t Bongo DOG 14 0.00 0.00 f \N 2025-04-30 \N \N MALE Está tomando medicación desde el 24/04 ENROFLOXACINA 150 , por posible cistitis.\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce \N f \N 112 755 +785 2025-04-15 00:53:46.996618+00 2025-04-15 00:53:46.996625+00 f t Leon DOG 7 5.00 0.00 f \N \N \N \N MALE \N f 8 113 664 +427 2025-01-24 18:00:25.392177+00 2025-01-24 18:00:25.392188+00 f t Ragnar CAT \N 1.00 0.00 f 2024-09-01 2025-01-25 \N \N FEMALE \N f 27 111 362 +3800 2025-07-14 23:26:22.200466+00 2025-07-14 23:26:22.200479+00 f t Batman CAT \N 2.40 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4568 +2071 2025-06-07 00:27:00.176638+00 2025-06-07 00:27:00.176647+00 f t Cacho DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2279 +458 2025-01-30 19:04:24.157498+00 2025-01-30 19:04:24.157504+00 f t Donco CAT 5 0.00 0.00 t 2020-01-01 2025-01-30 \N \N MALE \N f 27 111 385 +700 2025-03-23 22:15:41.505738+00 2025-03-23 22:15:41.505745+00 f t Thor DOG 4 18.00 0.00 t \N 2025-03-22 \N \N MALE \N f 1 114 598 +730 2025-03-30 21:59:56.00406+00 2025-03-30 21:59:56.004067+00 f t Dulce Frisman DOG 15 25.00 0.00 t \N 2025-03-30 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? No Cuál? Ninguno\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Esta en estado epileptico permanente, ni levantarse puede... \N f 1 114 621 +550 2025-02-18 14:29:21.493395+00 2025-02-18 14:29:21.493406+00 f t Zafiro CAT 0 1.00 0.00 f 2024-12-01 2025-03-19 \N \N FEMALE \N f 27 111 464 +637 2025-03-06 23:06:59.980829+00 2025-03-06 23:06:59.980838+00 f t Timon CAT 9 6.00 0.00 t 2015-12-02 2025-04-01 \N \N \N \N f \N 113 541 +715 2025-03-25 23:36:37.490991+00 2025-03-25 23:36:37.490998+00 f t Julio CAT 10 0.00 0.00 t 2015-04-10 2025-03-26 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? No\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Si, se puede asustar y se pone a la defensiva cuando no conoce a las personas. \N f \N 113 612 +949 2025-05-07 19:53:05.424098+00 2025-05-07 19:53:05.424106+00 f t Onik CAT 2 0.00 0.00 t \N 2025-05-09 \N \N MALE \N f \N 112 840 +770 2025-04-09 23:52:13.382293+00 2025-04-09 23:52:13.382302+00 f t Ramon DOG 3 9.80 0.00 t \N 2025-04-14 \N \N MALE \N f 5 113 653 +757 2025-04-06 20:43:34.631607+00 2025-04-06 20:43:34.631616+00 f t Gato de Fabricio Del Pino CAT 2 5.00 0.00 t \N 2025-04-06 \N \N MALE Es tempremental \N f \N 114 642 +743 2025-04-03 16:44:32.54284+00 2025-04-03 16:44:32.542846+00 f t Albus CAT 8 6.00 0.00 t \N 2025-04-07 \N \N MALE \N f 27 113 633 +519 2025-02-11 01:12:38.871295+00 2025-02-11 01:12:38.871301+00 f t Floppy CAT 1 4.00 0.00 f 2023-12-02 2025-04-05 \N \N \N Docil, rescatado \N f \N 111 439 +510 2025-02-08 18:07:51.766703+00 2025-02-08 18:07:51.766712+00 f t Holanda CAT 10 8.00 0.00 t 2014-12-01 2025-02-09 \N \N FEMALE No estuvo con medicación en los últimos días y puede llegar a ponerse nerviosa con desconocidos \N f \N 114 430 +517 2025-02-10 13:20:17.921587+00 2025-02-10 13:20:17.921595+00 f t Teo DOG 0 0.00 0.00 f 2024-12-03 2025-02-09 \N \N MALE No toma ninguna medicación \N f \N 114 437 +443 2025-01-28 20:56:24.457378+00 2025-01-28 20:56:24.457385+00 f t Charlotte DOG 12 4.50 0.00 t 2012-05-28 2025-03-13 \N \N FEMALE \N f 8 114 377 +927 2025-05-06 07:58:08.739722+00 2025-05-06 07:58:08.739733+00 f t Sebi DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 821 +815 2025-04-19 00:17:54.202692+00 2025-04-19 00:17:54.202699+00 f t GARDEL DOG 0 -0.61 0.00 f \N 2025-04-18 \N \N MALE \N f 23 113 698 +1051 2025-05-12 19:17:28.653952+00 2025-05-12 19:17:28.653961+00 f t Mocca DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 947 +495 2025-02-04 16:32:13.57225+00 2025-02-04 16:32:13.572259+00 f t Moka CAT 3 5.50 0.00 t 2021-12-02 2025-06-03 \N \N MALE \N f 29 113 416 +845 2025-04-24 16:31:12.611813+00 2025-04-24 16:31:12.611826+00 f t Spot DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 723 +935 2025-05-06 21:12:09.039917+00 2025-05-06 21:12:09.039923+00 f t Gatu CAT 13 0.00 0.00 t \N 2025-05-08 \N \N FEMALE Se estresa \N f \N 112 829 +2104 2025-06-07 21:18:41.822354+00 2025-06-07 21:18:41.822364+00 f t Silvestre CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2327 +995 2025-05-09 17:00:43.586835+00 2025-05-09 17:00:43.586847+00 f t PRUEBA DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 883 +871 2025-04-27 00:17:43.677002+00 2025-04-27 00:17:43.677011+00 f t Tony soprano CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 746 +1023 2025-05-11 19:27:08.633028+00 2025-05-11 19:27:08.633035+00 f t Maximus DOG 13 55.00 0.00 t \N 2025-05-11 \N \N MALE Cancer de testiculo aprox 8 meses \N f 3 113 918 +800 2025-04-16 18:08:11.201335+00 2025-04-16 18:08:11.201344+00 f t Camila DOG 15 10.00 0.00 f \N 2025-04-21 \N \N FEMALE \N f \N 113 677 +3843 2025-07-15 18:08:50.238819+00 2025-07-15 18:08:50.238828+00 f t Canela CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4627 +75 2024-10-30 14:13:08.945+00 2024-10-30 14:13:08.945+00 f t Sombra CAT \N 4.00 0.00 f \N 2025-05-14 \N \N MALE \N f 27 114 73 +2127 2025-06-08 03:40:49.816084+00 2025-06-08 03:40:49.816093+00 f t Polenta CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2356 +3851 2025-07-15 21:01:24.098153+00 2025-07-15 21:01:24.098167+00 f t Mía DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4636 +1009 2025-05-10 14:55:40.634736+00 2025-05-10 14:55:40.634749+00 f t Malvina CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 901 +911 2025-05-04 21:50:51.569044+00 2025-05-04 21:50:51.569052+00 f t Bonn CAT 4 4.50 0.00 t \N 2025-05-06 \N \N MALE \N f 31 114 796 +1037 2025-05-12 15:03:10.398189+00 2025-05-12 15:03:10.398202+00 f t Zira CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 933 +1064 2025-05-12 23:47:42.866288+00 2025-05-12 23:47:42.866297+00 f t Chicha DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 964 +1077 2025-05-13 13:11:22.771066+00 2025-05-13 13:11:22.771076+00 f t Marron DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 980 +1100 2025-05-14 01:47:14.925271+00 2025-05-14 01:47:14.925282+00 f t estrella DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1006 +410 2025-01-21 14:18:22.814413+00 2025-01-21 14:18:22.814422+00 f t Syria DOG 2 4.00 0.00 f 2022-12-02 2025-01-21 \N \N FEMALE \N f 18 111 349 +625 2025-03-03 21:06:48.799088+00 2025-03-03 21:06:48.799127+00 f t Antonio DOG 6 12.00 0.00 f 2018-12-02 2025-03-03 \N \N MALE Tomo meloxicam\r\nNo se asusta \N f 10 114 530 +466 2025-01-31 17:34:01.560534+00 2025-01-31 17:34:01.560543+00 f t Michunina CAT 4 6.00 0.00 f 2020-12-02 2025-01-31 \N \N FEMALE \N f 40 111 392 +419 2025-01-22 23:46:43.12821+00 2025-01-22 23:46:43.128216+00 f t Coco CAT 3 5.00 0.00 f 2021-12-02 2025-01-25 \N \N \N \N f \N 113 356 +347 2025-01-03 19:22:27.347+00 2025-01-03 19:22:27.347+00 f t Whisky CAT 1 2.00 0.00 f 2023-12-02 2025-01-29 \N \N MALE \N f 27 111 293 +485 2025-02-03 17:05:43.022028+00 2025-02-03 17:05:43.022037+00 f t Adolfo DOG 15 11.00 0.00 t 2009-12-02 2025-03-06 \N \N MALE \N f 1 111 407 +1122 2025-05-14 16:58:26.838887+00 2025-05-14 16:58:26.838897+00 f t Bowie CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1031 +640 2025-03-07 16:00:06.078048+00 2025-03-07 16:00:06.078058+00 f t mumy CAT 1 3.00 0.00 f 2023-12-02 2025-03-04 \N \N FEMALE \N f 27 111 543 +435 2025-01-26 21:23:54.723441+00 2025-01-26 21:23:54.72345+00 f t Runa CAT 4 4.30 0.00 t 2020-12-02 2025-02-20 \N \N FEMALE \N f 27 114 370 +475 2025-02-02 17:57:18.497267+00 2025-02-02 17:57:18.497275+00 f t Sarampión DOG 8 50.00 0.00 f 2016-12-02 2025-02-02 \N \N MALE \N f 63 114 401 +1134 2025-05-14 19:51:01.688863+00 2025-05-14 19:51:01.688876+00 f t Pelusa DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1054 +1154 2025-05-15 14:51:26.987749+00 2025-05-15 14:51:26.987759+00 f t Kira DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1086 +1143 2025-05-14 23:13:36.657268+00 2025-05-14 23:13:36.657281+00 f t Gala DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1067 +1089 2025-05-13 17:28:53.868477+00 2025-05-13 17:28:53.868486+00 f t Chilli CAT \N 5.00 0.00 f \N \N 2025-05-14 \N \N MALE \N \N f \N \N 992 +1165 2025-05-15 18:23:11.933317+00 2025-05-15 18:23:11.933332+00 f t Negra DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1099 +1176 2025-05-15 23:01:22.877484+00 2025-05-15 23:01:22.877496+00 f t Bruce CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1113 +783 2025-04-14 21:01:43.054101+00 2025-04-14 21:01:43.054112+00 f t Diamante CAT 6 6.00 0.00 t 2018-10-15 2025-04-21 \N \N MALE \N f 27 111 662 +744 2025-04-03 16:47:10.352244+00 2025-04-03 16:47:10.352251+00 f t Mili DOG 11 2.00 0.00 f \N 2025-04-02 \N \N FEMALE \N f 9 113 634 +687 2025-03-20 14:03:47.422127+00 2025-03-20 14:03:47.422134+00 f t Malenka CAT 11 4.00 0.00 t No tomo medicamento.\r\nSi se puede estresar y estar a la defensiva. 2016-01-01 2025-03-19 \N \N FEMALE \N f 27 110 586 +496 2025-02-04 19:10:48.995249+00 2025-02-04 19:10:48.995256+00 f t flora CAT 6 0.00 0.00 t 2018-10-04 2025-02-05 \N \N FEMALE \N f \N 113 417 +846 2025-04-24 16:32:40.610143+00 2025-04-24 16:32:40.610155+00 f t Spot DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 723 +476 2025-02-02 18:39:49.493373+00 2025-02-02 18:39:49.493381+00 f t Tita CAT 14 3.00 0.00 t 2010-12-02 2025-02-02 \N \N FEMALE \N f 29 114 402 +428 2025-01-24 21:17:26.464615+00 2025-01-24 21:17:26.464622+00 f t Chola DOG 5 25.00 0.00 f 2020-01-01 2025-01-25 \N \N FEMALE \N f 1 111 363 +3801 2025-07-14 23:31:26.422006+00 2025-07-14 23:31:26.422015+00 f t Chiquitina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4569 +701 2025-03-23 22:39:04.517018+00 2025-03-23 22:39:04.517027+00 f t ALANA DOG 7 27.00 0.00 f \N 2025-03-22 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? NINGUNA\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce?\r\nSI, LA ADOPTAMOS PORQUE LE PEGABAN. ES MUY ASUSTADIZA Y DESCONFIADA. NUNCA MORDIO A NADIE, PERO SE PONE A LA DEFENSIVA. \N f 17 114 599 +411 2025-01-21 18:00:59.339132+00 2025-01-21 18:00:59.339142+00 f t Nigiri CAT 7 4.00 0.00 t 2019-01-01 2025-01-24 \N \N FEMALE \N f 27 111 350 +451 2025-01-29 14:56:51.973106+00 2025-01-29 14:56:51.973112+00 f t Mich CAT \N 3.00 0.00 t 2017-01-01 2025-01-30 \N \N MALE \N f 27 111 381 +5950 2025-08-25 12:27:50.860138+00 2025-08-25 12:27:50.860154+00 f t Alina DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7255 +444 2025-01-28 20:57:22.184851+00 2025-01-28 20:57:22.184857+00 f t Faddy DOG 11 5.00 0.00 f 2013-11-12 2025-01-29 \N \N MALE \N f 8 114 377 +882 2025-04-29 20:54:43.75625+00 2025-04-29 20:54:43.756258+00 f t Pastafrola CAT 4 4.60 0.00 t \N 2025-05-06 \N \N FEMALE Es tímida, puede esconderse o bufar \N f 27 112 756 +504 2025-02-07 13:34:43.380603+00 2025-02-07 13:34:43.380611+00 f t Rocco DOG 10 30.00 0.00 f 1015-01-01 2025-02-07 \N \N MALE Recién fuimos a una veterinaria y lo medicó por este mismo problema (le dió algo para el dolor, un protector gastrico y un medicamento más)\r\ny Rocco es muy tranquilo, se asusta, pero siempre se termina quedando tranquilo con sus dueños \N f 2 110 424 +584 2025-02-25 16:58:39.572572+00 2025-02-25 16:58:39.572581+00 t t pep DOG \N 0.00 0.00 f 1980-02-18 \N \N \N MALE \N f 22 109 487 +731 2025-03-30 22:05:51.337212+00 2025-03-30 22:05:51.337222+00 f t Galo DOG 19 11.00 0.00 t \N 2025-03-30 \N \N MALE No medicación\r\nPuede estresarse en la atención \N f \N 114 622 +1024 2025-05-11 20:49:28.075427+00 2025-05-11 20:49:28.075439+00 f t Scot DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 919 +569 2025-02-21 18:31:20.42058+00 2025-02-21 18:31:20.420588+00 f t Luly DOG 5 9.00 0.00 f 2019-12-02 2025-08-08 \N \N FEMALE \N f 1 111 480 +436 2025-01-26 21:40:25.072618+00 2025-01-26 21:40:25.072625+00 f t Nino CAT 1 4.50 0.00 t 2023-12-02 2025-01-26 \N \N MALE \N f 27 114 371 +872 2025-04-27 20:55:35.32309+00 2025-04-27 20:55:35.323098+00 f t Luca CAT 13 6.00 0.00 t \N 2025-04-27 \N \N MALE * Si, estuvo con Tobramicina/ epitlizante ocular\r\n* No suele hacerlo. \N f 27 114 747 +420 2025-01-22 23:47:09.167057+00 2025-01-22 23:47:09.167067+00 f t Mentita CAT 0 3.00 0.00 f 2024-12-02 2025-01-25 \N \N FEMALE \N f \N 113 356 +534 2025-02-14 23:22:05.764639+00 2025-02-14 23:22:05.764646+00 f t SIMONA DOG 9 5.00 0.00 t Toma apoquel 5.4mg 2015-12-02 2025-07-10 \N \N FEMALE Snowcher mini \N f \N 113 451 +600 2025-02-26 23:19:03.337575+00 2025-02-26 23:19:03.337584+00 f t Merlin DOG \N 3.00 0.00 f \N 2025-02-26 \N \N \N \N f 9 113 508 +771 2025-04-10 15:48:16.303164+00 2025-04-10 15:48:16.303173+00 f t Oliver CAT 1 4.00 0.00 t \N 2025-04-14 \N \N MALE \N f 27 111 654 +816 2025-04-19 21:38:38.842252+00 2025-04-19 21:38:38.842258+00 f t Rubí DOG 7 0.00 0.00 f ninguna medicación \N 2025-04-09 \N \N FEMALE \N f 8 114 699 +716 2025-03-27 12:52:22.600085+00 2025-03-27 12:52:22.600093+00 f t Milo DOG 6 20.00 0.00 f 2019-01-29 2025-04-15 \N \N MALE \N f 1 111 613 +618 2025-03-02 21:27:49.94258+00 2025-03-02 21:27:49.942594+00 f t KAMBO DOG \N 25.00 0.00 f 2017-05-25 2025-03-04 \N \N MALE \N f 53 114 523 +859 2025-04-25 21:09:46.819866+00 2025-04-25 21:09:46.819873+00 f t Lula CAT 9 0.00 0.00 t \N 2025-04-25 \N \N FEMALE \N f 27 111 735 +830 2025-04-21 21:45:19.692827+00 2025-04-21 21:45:19.692835+00 f t Leia CAT 4 4.00 0.00 t \N \N \N \N FEMALE \N f \N 113 712 +552 2025-02-18 15:09:55.88486+00 2025-02-18 15:09:55.884872+00 f t Bandida DOG 0 9.00 0.00 f 2024-07-16 \N \N \N FEMALE \N f 1 110 465 +801 2025-04-16 18:23:47.153417+00 2025-04-16 18:23:47.153426+00 f t Sasha CAT 13 5.10 0.00 t \N 2025-04-22 \N \N FEMALE \N f \N 113 678 +896 2025-05-03 00:07:07.413403+00 2025-05-03 00:07:07.41341+00 f t Hipatita CAT 8 4.00 0.00 t \N 2025-05-31 \N \N FEMALE \N f 27 113 775 +2072 2025-06-07 00:55:48.238277+00 2025-06-07 00:55:48.238286+00 f t Luna DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2280 +758 2025-04-06 20:51:15.218265+00 2025-04-06 20:51:15.218273+00 f t Topo DOG 10 0.00 0.00 f \N 2025-04-08 \N \N MALE \N f 58 114 643 +6012 2025-08-26 16:55:35.87357+00 2025-08-26 16:55:35.873581+00 f t kity CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7326 +2128 2025-06-08 03:44:17.367286+00 2025-06-08 03:44:17.367295+00 f t Polenta CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2353 +2142 2025-06-08 14:54:18.680991+00 2025-06-08 14:54:18.681002+00 f t Chaos DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2371 +786 2025-04-15 00:58:25.403063+00 2025-04-15 00:58:25.403074+00 f t Zair CAT 15 4.00 0.00 t \N 2025-04-14 \N \N MALE \N f \N 113 665 +509 2025-02-08 17:58:19.940828+00 2025-02-08 17:58:19.940835+00 f t Obesa CAT 8 0.00 0.00 t No ha tomado medicación en los últimos 7 días, tendencia a ponerse nerviosa o a la defensiva con personas que desconoce 2016-12-02 2025-02-08 \N \N FEMALE \N f 29 114 429 +518 2025-02-11 01:01:00.30157+00 2025-02-11 01:01:00.301574+00 f t Niño CAT 11 7.00 0.00 t 2013-12-02 2025-02-11 \N \N MALE \N f \N 113 438 +525 2025-02-12 21:40:03.920265+00 2025-02-12 21:40:03.920274+00 f t Milo CAT 3 7.00 0.00 t 2021-12-02 2025-02-20 \N \N MALE \N f \N 113 443 +575 2025-02-22 21:31:15.157026+00 2025-02-22 21:31:15.157034+00 f t Shant DOG 9 50.00 0.00 t 2015-12-02 2025-02-22 \N \N MALE Tomo apoquel,flexapet,oltrans flex y es amigable \N f 4 114 485 +459 2025-01-30 19:45:04.277824+00 2025-01-30 19:45:04.277832+00 f t Afrodita CAT 14 0.00 0.00 t 2010-12-02 2025-02-03 \N \N FEMALE \N f 27 111 386 +511 2025-02-08 22:01:22.974661+00 2025-02-08 22:01:22.974668+00 f t Simón CAT 4 5.00 0.00 t 2020-12-02 2025-02-11 \N \N MALE Se le dio antiparasitario y anti pulgas en pipeta\r\nNo presenta comportamiento errático ni nervioso \N f 29 114 431 +520 2025-02-11 17:18:30.686177+00 2025-02-11 17:18:30.686187+00 f t Leon DOG 12 28.00 0.00 t 2012-12-02 2025-02-11 \N \N MALE \N f 58 114 440 +413 2025-01-22 11:23:45.485756+00 2025-01-22 11:23:45.485766+00 f t Leila DOG 4 13.00 0.00 f 2020-12-02 2025-02-13 \N \N \N \N f \N 113 351 +536 2025-02-14 23:28:06.438822+00 2025-02-14 23:28:06.438828+00 f t Buda DOG 10 0.00 0.00 t 2014-12-02 2025-02-15 \N \N MALE Toma cartílago de tiburón todos los días\r\nSi le duele algo si, si no no nunca mordió \N f 5 113 453 +996 2025-05-09 17:37:26.761272+00 2025-05-09 17:37:26.761286+00 f t Willy DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 884 +980 2025-05-08 23:49:18.597952+00 2025-05-08 23:49:18.597962+00 f t Lulu CAT 3 0.00 0.00 t \N 2025-05-09 \N \N FEMALE No tomo ninguna medicación en los últimos 7 días.\r\nEs miedosa pero muy dulce. \N f \N 114 868 +964 2025-05-08 15:53:02.622256+00 2025-05-08 15:53:02.622266+00 f t Trixie DOG 10 27.00 0.00 t \N 2025-05-09 \N \N FEMALE \N f 52 112 856 +950 2025-05-07 20:03:03.059577+00 2025-05-07 20:03:03.059587+00 f t Lucho DOG 11 5.00 0.00 f \N 2025-05-09 \N \N MALE \N f 8 112 841 +928 2025-05-06 12:58:56.487715+00 2025-05-06 12:58:56.487722+00 f t Milo CAT 5 6.00 0.00 t \N 2025-05-06 \N \N MALE \N f \N 112 822 +1010 2025-05-10 18:12:18.884845+00 2025-05-10 18:12:18.884852+00 f t Morgana DOG 13 14.00 0.00 t \N 2025-05-10 \N \N FEMALE \N f \N 113 903 +1038 2025-05-12 15:05:03.53485+00 2025-05-12 15:05:03.534864+00 f t Zira CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 934 +2155 2025-06-08 21:18:29.506186+00 2025-06-08 21:18:29.506197+00 f t Polenta DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2388 +2161 2025-06-08 23:48:04.090368+00 2025-06-08 23:48:04.090377+00 f t Zeus CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2396 +412 2025-01-21 18:01:51.130172+00 2025-01-21 18:01:51.130181+00 f t Wasabi CAT 0 4.00 0.00 t 2018-01-01 \N \N \N FEMALE \N f 27 111 350 +667 2025-03-14 15:23:34.489666+00 2025-03-14 15:23:34.489671+00 f t Rouviere DOG 10 35.00 0.00 f 2015-01-01 2025-03-18 \N 2025-03-18 MALE \N f 1 110 569 +437 2025-01-27 14:11:11.360736+00 2025-01-27 14:11:11.360744+00 f t Tina CAT 0 4.50 0.00 t 2015-01-01 2025-01-30 \N \N FEMALE \N f 27 110 372 +772 2025-04-10 21:08:32.874051+00 2025-04-10 21:08:32.87406+00 f t Choe DOG 9 0.00 0.00 f \N 2025-04-11 \N \N FEMALE \N f 8 113 655 +688 2025-03-20 23:59:27.750509+00 2025-03-20 23:59:27.750518+00 f t Simon DOG 13 45.00 0.00 f Esta tomando Sosteng Cg \N 2025-05-16 \N \N MALE \N f 3 113 587 +527 2025-02-13 16:09:49.507957+00 2025-02-13 16:09:49.507965+00 f t Gaspar CAT 6 5.00 0.00 t 2018-12-02 2025-03-14 \N \N MALE \N f 27 113 444 +717 2025-03-27 14:59:01.96803+00 2025-03-27 14:59:01.968038+00 f t Nuni CAT 6 0.00 0.00 f \N 2025-03-27 \N \N FEMALE \N f 38 111 614 +414 2025-01-22 12:43:25.57472+00 2025-01-22 12:43:25.574727+00 f t Castiel DOG 8 3.00 0.00 f 2016-12-02 2025-01-22 \N \N MALE \N f 8 114 352 +5951 2025-08-25 12:27:58.604841+00 2025-08-25 12:27:58.604855+00 f t Luna DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7256 +452 2025-01-29 14:57:55.111146+00 2025-01-29 14:57:55.111152+00 f t Tita CAT \N 3.00 0.00 t 2021-01-01 2025-01-30 \N \N FEMALE \N f 27 111 381 +3802 2025-07-15 00:32:46.789208+00 2025-07-15 00:32:46.78922+00 f t Mechi DOG \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4571 +487 2025-02-03 19:32:50.595974+00 2025-02-03 19:32:50.596013+00 f t Rocco DOG 14 42.00 0.00 t 2010-12-02 2025-02-02 \N \N MALE Fallecido \N f \N 114 408 +653 2025-03-10 23:53:33.299837+00 2025-03-10 23:53:33.299848+00 f t Sammy DOG 11 13.00 0.00 t 2013-12-02 2025-03-24 \N \N FEMALE No se pone agresiva con la gente que no conoce, sólo ladra cuando entran hasta que la saludan, una vez estableció confianza… no hay ningún tipo de problema. Lo más probable que este pasando sus últimos días \N f 1 113 556 +537 2025-02-15 21:22:49.397176+00 2025-02-15 21:22:49.397182+00 f t Shaka DOG 16 13.00 0.00 t 2008-12-02 2025-02-17 \N \N MALE \N f \N 114 454 +702 2025-03-24 16:33:08.229579+00 2025-03-24 16:33:08.229587+00 f t rasmi DOG 4 0.00 0.00 f \N 2025-03-23 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? Si cefalexina de 500\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Se asusta no se pone a la defensiva \N f \N 114 600 +860 2025-04-25 21:17:15.852623+00 2025-04-25 21:17:15.852631+00 f t Tomas DOG \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 736 +787 2025-04-15 01:05:28.262678+00 2025-04-15 01:05:28.262685+00 f t Mia DOG 3 14.00 0.00 t \N 2025-04-15 \N \N FEMALE \N f \N 113 666 +802 2025-04-16 21:09:27.25775+00 2025-04-16 21:09:27.25776+00 f t Test DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 683 +732 2025-03-31 16:07:45.358351+00 2025-03-31 16:07:45.358357+00 f t McQueen CAT 4 5.00 0.00 t 2021-02-01 2025-03-31 \N \N MALE Si, es muy asustadiso y nervioso \N f 27 111 623 +6013 2025-08-26 16:59:28.096937+00 2025-08-26 16:59:28.096952+00 f t MATEO DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7327 +745 2025-04-03 16:52:20.850031+00 2025-04-03 16:52:20.85004+00 f t Kira DOG 5 15.00 0.00 t \N 2025-04-02 \N \N \N Tratamiento: ogastrol, enterosep, protector hepático y pancreático, algen, dipirona, diurético en las últimas 72 hrs \N f \N 113 635 +581 2025-02-24 23:37:31.112658+00 2025-02-24 23:37:31.112667+00 f t chewacca DOG 14 0.00 0.00 f 2010-12-02 2025-04-11 \N \N MALE No, toma medicación\r\nPuede llegar a asustarse \N f \N 114 492 +421 2025-01-22 23:47:30.036472+00 2025-01-22 23:47:30.03648+00 f t Tita CAT 8 2.00 0.00 t 2016-12-02 2025-01-25 \N \N FEMALE \N f \N 113 356 +642 2025-03-08 20:42:51.000569+00 2025-03-08 20:42:51.000579+00 f t Rubio CAT \N 9.00 0.00 t \N 2025-03-07 \N \N MALE No, es súper bueno se que le duele la cola xq no se deja tocar y se esconde \N f \N 114 545 +593 2025-02-26 00:25:56.673399+00 2025-02-26 00:25:56.673409+00 f t cookies CAT \N 4.00 0.00 t \N 2025-02-23 \N \N MALE \N f \N 113 502 +585 2025-02-25 17:02:45.189338+00 2025-02-25 17:02:45.189344+00 f t Tita CAT \N 0.00 0.00 f \N 2025-02-24 \N \N FEMALE No toma ni tomó medicación \r\nes amigable con personas que no conoce \N f \N 109 487 +817 2025-04-19 21:46:21.647155+00 2025-04-19 21:46:21.647163+00 f t Gino CAT \N 4.20 0.00 t \N 2025-04-19 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? No Cuál?\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? No \N f \N 114 700 +545 2025-02-16 21:54:07.189509+00 2025-02-16 21:54:07.189519+00 f t Isabella CAT \N 5.00 0.00 t 2017-01-13 2025-02-16 \N \N FEMALE No toma medicamentos\r\nPuede asustarse \N f \N 114 460 +759 2025-04-07 22:07:50.886697+00 2025-04-07 22:07:50.886706+00 f t rocco DOG 6 10.00 0.00 t \N 2025-04-07 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál?: -MELOXICAN \N f 18 113 644 +2073 2025-06-07 01:28:32.484522+00 2025-06-07 01:28:32.484535+00 f t Pomelo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2281 +831 2025-04-21 21:45:54.49228+00 2025-04-21 21:45:54.492287+00 f t Bagheera CAT 4 4.50 0.00 t \N 2025-04-22 \N \N FEMALE \N f \N 113 712 +847 2025-04-24 16:34:05.558863+00 2025-04-24 16:34:05.558877+00 f t Spot DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 723 +3844 2025-07-15 18:24:35.157989+00 2025-07-15 18:24:35.157998+00 f t Susy CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4629 +873 2025-04-27 21:40:45.886144+00 2025-04-27 21:40:45.886154+00 f t Vitraza CAT 9 0.00 0.00 t \N 2025-05-01 \N \N MALE \N f \N 114 748 +883 2025-04-29 23:38:30.858449+00 2025-04-29 23:38:30.858456+00 f t Kenzi Falcon CAT 3 3.00 0.00 t \N 2025-05-02 \N \N FEMALE \N f \N 113 757 +913 2025-05-04 22:02:29.086116+00 2025-05-04 22:02:29.086127+00 f t Samantha Vilchez CAT 14 4.40 0.00 t \N 2025-05-04 \N \N FEMALE No tomó medicación.\r\nPuede asustarse y estresarse. \N f \N 114 798 +965 2025-05-08 17:15:58.986875+00 2025-05-08 17:15:58.986884+00 f t H DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 857 +445 2025-01-28 20:58:46.735614+00 2025-01-28 20:58:46.735623+00 f t Mia CAT 11 4.00 0.00 t 2013-12-02 2025-01-29 \N \N FEMALE \N f \N 114 377 +981 2025-05-09 02:07:14.902013+00 2025-05-09 02:07:14.902029+00 f t Ema DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 869 +590 2025-02-26 00:00:17.526258+00 2025-02-26 00:00:17.526269+00 f t Maiev CAT 2 3.50 0.00 f 2022-12-02 2025-02-25 \N \N \N \N f \N 113 499 +669 2025-03-14 18:36:23.194496+00 2025-03-14 18:36:23.194504+00 f t Domo CAT 9 8.00 0.00 t 2015-12-02 2025-03-14 \N \N MALE \N f 27 111 571 +598 2025-02-26 17:28:57.62811+00 2025-02-26 17:28:57.628117+00 f t Esperanza DOG 5 25.00 0.00 f 2019-12-02 2025-02-25 \N \N FEMALE \N f 58 111 506 +639 2025-03-06 23:28:10.059566+00 2025-03-06 23:28:10.059573+00 f t oliver CAT 4 0.00 0.00 t 2020-12-02 2025-03-06 \N \N MALE \N f 27 113 542 +558 2025-02-19 16:40:30.700889+00 2025-02-19 16:40:30.700897+00 f t Frida CAT 8 3.00 0.00 t 2016-12-02 2025-03-01 \N \N FEMALE \N f 27 111 471 +570 2025-02-21 18:36:08.711311+00 2025-02-21 18:36:08.711318+00 f t Cooper CAT 10 7.00 0.00 t 2014-12-02 2025-02-21 \N \N MALE \N f \N 114 366 +468 2025-01-31 21:18:52.760945+00 2025-01-31 21:18:52.760954+00 f t Mina Revagliatti CAT 10 7.00 0.00 t 2014-12-02 2025-02-04 \N \N FEMALE \N f \N 113 394 +477 2025-02-02 20:37:05.799599+00 2025-02-02 20:37:05.799608+00 f t Milanesa CAT 4 3.80 0.00 t 2020-12-02 2025-02-04 \N \N FEMALE \N f 27 114 403 +497 2025-02-05 14:31:17.729078+00 2025-02-05 14:31:17.729087+00 f t Owens CAT 4 4.00 0.00 f 2020-12-02 2025-02-06 \N \N FEMALE \N t 27 111 418 +997 2025-05-09 18:48:14.137884+00 2025-05-09 18:48:14.137893+00 f t PRUEBA DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 886 +929 2025-05-06 13:37:20.00348+00 2025-05-06 13:37:20.003486+00 f t Batman CAT \N 5.50 0.00 t 2021-10-01 2025-05-07 \N \N MALE \N f \N 112 823 +1011 2025-05-10 19:39:04.344103+00 2025-05-10 19:39:04.344118+00 f t Fidel CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 904 +1039 2025-05-12 16:06:11.085062+00 2025-05-12 16:06:11.085072+00 f t Ozzy CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 935 +1123 2025-05-14 17:24:03.680028+00 2025-05-14 17:24:03.680043+00 f t JADE DOG \N 25.00 0.00 f \N \N 2025-05-17 \N \N FEMALE \N \N f \N \N 1033 +1052 2025-05-12 19:18:36.425768+00 2025-05-12 19:18:36.425779+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 948 +1065 2025-05-12 23:58:26.326921+00 2025-05-12 23:58:26.326933+00 f t Eva DOG \N 500.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 965 +1078 2025-05-13 13:12:30.27916+00 2025-05-13 13:12:30.279172+00 f t Copita CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 981 +1101 2025-05-14 02:17:15.81003+00 2025-05-14 02:17:15.810043+00 f t Turron CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1007 +951 2025-05-07 20:09:16.650749+00 2025-05-07 20:09:16.650757+00 f t Kira DOG 1 20.00 0.00 t \N 2025-05-12 \N \N FEMALE \N f 17 112 842 +631 2025-03-04 21:29:20.913147+00 2025-03-04 21:29:20.913154+00 f t Hercules DOG 6 35.00 0.00 f 2018-12-02 2025-03-20 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Toma meprozamin y Procetoken 300mg Cuál?\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? No, siempre que sean amables \N f 1 114 535 +1040 2025-05-12 16:13:32.454436+00 2025-05-12 16:13:32.454448+00 f t Bizcocho DOG \N 19.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 936 +660 2025-03-13 21:31:34.471622+00 2025-03-13 21:31:34.47163+00 f t Princesa CAT 18 3.15 0.00 f 2006-12-02 2025-03-14 \N \N \N Se pone a la defensiva y desde ayer toma 3 gotas de pregalbech a la noche \N f \N 113 563 +689 2025-03-21 00:02:22.727765+00 2025-03-21 00:02:22.727771+00 f t Coni DOG 3 6.00 0.00 t \N 2025-03-20 \N \N FEMALE \N f \N 113 588 +647 2025-03-09 20:56:56.714601+00 2025-03-09 20:56:56.714608+00 f t Kala CAT 3 3.00 0.00 t 2021-12-02 2025-03-10 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? No\r\n\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce?\r\nSe asusta muy fácil, pero es muy buena \N f \N 114 550 +3688 2025-07-12 20:31:09.386395+00 2025-07-12 20:31:09.386405+00 f t Tony CAT 8 6.00 0.00 t \N 2025-08-10 \N \N MALE \N f \N 114 4433 +478 2025-02-02 20:44:59.139248+00 2025-02-02 20:44:59.139255+00 f t MIa DOG \N 0.00 0.00 f 2024-09-14 2025-02-02 \N \N FEMALE \N f 17 114 404 +2074 2025-06-07 01:45:58.381922+00 2025-06-07 01:45:58.381931+00 f t Neron DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2282 +703 2025-03-24 16:43:16.872049+00 2025-03-24 16:43:16.872056+00 f t Nube DOG 2 20.00 0.00 t \N 2025-03-25 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál?:\r\nNo\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce?: no \N f 1 114 601 +773 2025-04-10 21:08:52.561066+00 2025-04-10 21:08:52.561075+00 f t Gatito CAT 0 0.00 0.00 f \N 2025-04-11 \N \N MALE \N f 27 113 655 +438 2025-01-27 20:04:36.718701+00 2025-01-27 20:04:36.71871+00 f t Luli CAT 0 6.00 0.00 t 2014-01-01 2025-02-03 \N \N FEMALE \N f 27 110 373 +5952 2025-08-25 12:30:14.901537+00 2025-08-25 12:30:14.901553+00 f t Ulises CAT \N 3.70 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7254 +718 2025-03-27 18:28:38.462972+00 2025-03-27 18:28:38.462981+00 f t Arya CAT 10 0.00 0.00 f \N 2025-03-27 \N \N FEMALE \N f 27 111 615 +760 2025-04-07 22:34:15.28885+00 2025-04-07 22:34:15.288858+00 f t Oreo CAT 4 4.00 0.00 f \N 2025-04-11 \N \N FEMALE \N f \N 113 645 +733 2025-03-31 16:11:50.79431+00 2025-03-31 16:11:50.794321+00 f t Messi CAT 3 4.00 0.00 t \N 2025-03-31 \N \N MALE tranquilo \N f 27 111 623 +6014 2025-08-26 17:32:02.738602+00 2025-08-26 17:32:02.738616+00 f t Bodoque DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7328 +746 2025-04-03 17:00:40.524272+00 2025-04-03 17:00:40.524278+00 f t Scooby DOG 5 0.00 0.00 t \N 2025-04-02 \N \N \N \N f 8 113 636 +672 2025-03-17 20:34:59.471664+00 2025-03-17 20:34:59.471672+00 f t Lila DOG 16 25.00 0.00 t 2008-12-02 2025-03-16 \N \N FEMALE puede estresarse pero con mi presencia se calma un poco, de todos modos recomendaria traer bozal por las dudas \N f 1 111 574 +624 2025-03-03 20:58:08.101769+00 2025-03-03 20:58:08.101778+00 f t ATU CAT 4 5.00 0.00 t 2020-12-02 2025-03-07 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? NO \r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? SI. puede estresarse . \N f \N 114 529 +1986 2025-06-04 18:09:12.506415+00 2025-06-04 18:09:12.506422+00 f t India DOG 9 20.00 0.00 t \N 2025-06-07 \N \N FEMALE Toma sotacor 80 \N f 15 1026 2164 +1053 2025-05-12 19:19:14.650449+00 2025-05-12 19:19:14.650458+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 949 +803 2025-04-16 21:23:44.851909+00 2025-04-16 21:23:44.851917+00 f t Afrika DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 684 +1066 2025-05-13 04:44:10.826432+00 2025-05-13 04:44:10.826442+00 f t Chuzita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 968 +884 2025-04-29 23:38:55.599889+00 2025-04-29 23:38:55.599897+00 f t Loki Falcon CAT \N 5.00 0.00 t \N \N \N \N MALE \N f \N 113 757 +818 2025-04-20 11:52:01.186319+00 2025-04-20 11:52:01.186329+00 f t Toretto DOG \N 5.00 0.00 f \N \N 2025-04-20 \N \N MALE \N \N f \N \N 701 +3803 2025-07-15 01:12:09.841402+00 2025-07-15 01:12:09.841416+00 f t Floky DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4573 +848 2025-04-24 17:20:24.419249+00 2025-04-24 17:20:24.41926+00 f t Galo DOG 2 18.00 0.00 t \N 2025-04-24 \N \N \N Inyecciones de Cerenia y sulfropim \N f \N 112 724 +522 2025-02-12 19:30:09.135896+00 2025-02-12 19:30:09.135904+00 f t Oliver DOG \N 3.00 0.00 f 2025-12-12 2025-02-15 \N \N MALE \N f 5 111 441 +1155 2025-05-15 15:12:10.245099+00 2025-05-15 15:12:10.245111+00 t t chase DOG \N 25.00 50.00 t \N 2023-10-22 \N \N \N MALE \N \N f 48 \N 187 +861 2025-04-25 23:20:55.659816+00 2025-04-25 23:20:55.659824+00 f t OLIVIA DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 737 +446 2025-01-28 21:00:00.002369+00 2025-01-28 21:00:00.002379+00 f t Hallie CAT 4 4.00 0.00 t 2020-03-11 2025-02-12 \N \N FEMALE \N f \N 114 377 +952 2025-05-07 22:49:35.240062+00 2025-05-07 22:49:35.240071+00 f t Timoteo CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 843 +610 2025-02-28 23:56:18.701004+00 2025-02-28 23:56:18.701016+00 f t Abelardo CAT \N 0.00 0.00 t \N 2025-02-28 \N \N MALE \N f \N 113 517 +874 2025-04-27 21:47:03.001362+00 2025-04-27 21:47:03.00137+00 f t Lulú CAT 1 4.00 0.00 t Ninguna medicación y no suele reaccionar mal a personas que no conoce \N 2025-04-28 \N \N FEMALE \N f 27 114 749 +966 2025-05-08 18:07:53.065107+00 2025-05-08 18:07:53.065115+00 f t Lolo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 858 +982 2025-05-09 11:44:08.528807+00 2025-05-09 11:44:08.528817+00 f t Oliver CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 870 +1091 2025-05-13 18:20:49.863209+00 2025-05-13 18:20:49.863217+00 f t Batalla DOG \N 42.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 994 +542 2025-02-16 21:38:47.313135+00 2025-02-16 21:38:47.313143+00 f t Lambo DOG 4 40.00 0.00 t 2020-12-02 2025-02-17 \N \N MALE no se asusta y tiene comportamiento nervioso \N f 58 114 458 +594 2025-02-26 00:26:13.712701+00 2025-02-26 00:26:13.712709+00 f t titi CAT \N 4.00 0.00 t \N 2025-02-23 \N \N FEMALE \N f \N 113 502 +998 2025-05-09 18:48:38.292378+00 2025-05-09 18:48:38.292387+00 f t PRUEBA DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 887 +930 2025-05-06 14:45:48.655707+00 2025-05-06 14:45:48.655714+00 f t Romania DOG \N 7.00 0.00 f 2025-02-06 2025-06-30 \N \N \N \N f \N 112 824 +832 2025-04-22 00:20:26.966117+00 2025-04-22 00:20:26.966125+00 f t Gato CAT 5 3.00 0.00 t \N 2025-04-25 \N \N \N \N f \N 113 713 +1012 2025-05-10 23:47:57.205837+00 2025-05-10 23:47:57.20585+00 f t Negra DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 906 +1026 2025-05-12 00:18:55.822174+00 2025-05-12 00:18:55.822187+00 f t Zoe DOG \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 921 +1102 2025-05-14 02:46:05.113555+00 2025-05-14 02:46:05.113569+00 f t Galo CAT \N 3.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1008 +1124 2025-05-14 17:24:43.554719+00 2025-05-14 17:24:43.554731+00 f t Test DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1034 +1135 2025-05-14 19:59:36.567252+00 2025-05-14 19:59:36.567261+00 f t Lilo DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1055 +1144 2025-05-14 23:16:35.740319+00 2025-05-14 23:16:35.740332+00 f t Gals CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1068 +608 2025-02-27 23:19:30.111728+00 2025-02-27 23:19:30.11174+00 f t Dana DOG 8 0.00 0.00 f 2016-12-02 2025-02-27 \N \N FEMALE \N f 8 113 515 +648 2025-03-09 21:34:25.799856+00 2025-03-09 21:34:25.799864+00 f t Toyo CAT 5 5.00 0.00 t 2019-12-02 2025-03-09 \N \N MALE Hoy miloxivet y cisticalm\r\nSe asusta pero no se pone a la defensiva \N f \N 114 551 +500 2025-02-05 23:06:07.150245+00 2025-02-05 23:06:07.150252+00 f t Lila DOG 5 5.00 0.00 f 2019-12-02 2025-02-10 \N \N \N \N t 55 114 420 +654 2025-03-10 23:59:40.363535+00 2025-03-10 23:59:40.363542+00 f t Luna DOG 1 10.00 0.00 f 2023-12-02 2025-03-10 \N \N FEMALE No toma medicación pero hace muchos días que está con diarrea y come poco\r\nEs cariñosa con las personas \N f 17 113 557 +670 2025-03-15 21:59:18.755666+00 2025-03-15 21:59:18.755672+00 f t Bruno CAT 15 4.00 0.00 f 2009-12-02 2025-03-17 \N \N MALE \N f \N 114 572 +576 2025-02-22 21:38:15.7949+00 2025-02-22 21:38:15.794907+00 f t KAZU CAT 0 0.00 0.00 f 2024-12-02 2025-02-24 \N \N FEMALE No tomo ninguna medicación y no tiene muestras de mal temperamento \N f \N 113 486 +1177 2025-05-15 23:50:39.942222+00 2025-05-15 23:50:39.942236+00 f t Jagger CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1114 +1195 2025-05-16 16:14:55.842029+00 2025-05-16 16:14:55.842042+00 f t frida CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1137 +1112 2025-05-14 15:26:31.800483+00 2025-05-14 15:26:31.800492+00 f t Perra de Millone DOG \N 0.00 0.00 f \N 2025-05-14 \N \N \N \N f 58 112 1022 +48 2024-10-30 14:13:08.703+00 2024-10-30 14:13:08.703+00 f t Lulu CAT 7 0.00 0.00 f 2017-12-02 2025-05-13 \N \N FEMALE \N f 27 114 47 +774 2025-04-11 14:12:25.334451+00 2025-04-11 14:12:25.334461+00 f t Pichu CAT 4 4.00 0.00 f \N 2025-04-12 \N \N MALE \N f 27 111 656 +673 2025-03-17 20:51:17.830145+00 2025-03-17 20:51:17.830153+00 f t Pumita CAT 21 3.10 0.00 t 2003-12-02 2025-03-18 \N \N \N \N t 29 110 575 +439 2025-01-27 20:31:47.060938+00 2025-01-27 20:31:47.060945+00 f t ROMA DOG 7 28.50 0.00 t 2017-02-28 2025-01-28 \N \N FEMALE \N f \N 114 374 +2075 2025-06-07 02:35:23.12943+00 2025-06-07 02:35:23.129443+00 f t Isidro DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2287 +171 2024-10-30 14:13:09.986+00 2024-10-30 14:13:09.986+00 f t Homero CAT 17 8.00 0.00 f 2007-12-02 2024-10-23 \N \N MALE \N f 39 114 162 +462 2025-01-30 23:26:27.59572+00 2025-01-30 23:26:27.595727+00 f t Andina DOG 4 13.00 0.00 t 2020-12-02 2025-02-03 \N \N FEMALE \N f \N 113 388 +704 2025-03-24 19:11:33.477453+00 2025-03-24 19:11:33.477463+00 f t Takeshi CAT 4 4.50 0.00 t \N 2025-03-22 \N \N MALE prednidsona y doxicilina \N f \N 114 602 +719 2025-03-27 23:49:31.01743+00 2025-03-27 23:49:31.017439+00 f t Bob CAT 9 5.00 0.00 t \N 2025-03-25 \N \N \N \N f 27 113 71 +661 2025-03-13 21:34:05.655493+00 2025-03-13 21:34:05.655501+00 f t Gato CAT 12 0.00 0.00 t 2012-12-02 2025-03-14 \N \N \N \N f \N 113 564 +3804 2025-07-15 01:13:36.068129+00 2025-07-15 01:13:36.068142+00 f t Odin DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4573 +431 2025-01-25 21:18:13.863132+00 2025-01-25 21:18:13.86314+00 f t Blanquito DOG 10 5.00 0.00 t 2014-12-02 2025-01-25 \N \N MALE \N f \N 114 366 +1157 2025-05-15 15:44:18.955317+00 2025-05-15 15:44:18.955326+00 f t Renata CAT 1 0.00 0.00 f \N 2025-05-15 \N \N \N VILEF + \N f \N 112 1087 +690 2025-03-21 14:19:58.55156+00 2025-03-21 14:19:58.551567+00 f t Arwen Cadaval Valenzuela DOG 2 16.00 0.00 t \N 2025-03-21 \N \N FEMALE Si,le pongo bozal. \N f 1 111 589 +563 2025-02-20 19:44:50.069856+00 2025-02-20 19:44:50.069865+00 f t Milo DOG 6 40.00 0.00 t 2018-08-18 2025-02-21 \N \N MALE \N f 1 111 475 +447 2025-01-28 21:01:00.94457+00 2025-01-28 21:01:00.944642+00 f t Leia CAT 4 4.00 0.00 t 2020-10-01 2025-01-29 \N \N MALE \N f \N 114 377 +789 2025-04-15 01:11:57.543898+00 2025-04-15 01:11:57.543905+00 t t Puti CAT 0 0.00 0.00 f \N \N \N \N FEMALE \N f \N 113 667 +3845 2025-07-15 19:41:09.318558+00 2025-07-15 19:41:09.318571+00 f t Roberto/nono DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4630 +804 2025-04-16 21:27:44.153611+00 2025-04-16 21:27:44.15362+00 f t Hjj CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 684 +747 2025-04-03 17:04:51.724007+00 2025-04-03 17:04:51.724014+00 f t Homero CAT 7 2.00 0.00 t \N 2025-04-03 \N \N MALE \N f \N 113 637 +885 2025-04-30 15:01:13.448666+00 2025-04-30 15:01:13.448674+00 f t Ted DOG 9 0.00 0.00 f \N 2025-04-30 \N \N MALE \N f \N 112 758 +1196 2025-05-16 17:18:49.370721+00 2025-05-16 17:18:49.370733+00 f t Furia CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1139 +1013 2025-05-11 03:04:50.918426+00 2025-05-11 03:04:50.918436+00 f t Apolo DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 907 +1079 2025-05-13 14:06:32.423612+00 2025-05-13 14:06:32.423622+00 f t Simon DOG 10 19.00 0.00 f \N 2025-05-14 \N \N MALE \N f \N 112 983 +819 2025-04-20 21:50:01.445413+00 2025-04-20 21:50:01.445421+00 f t Michi CAT \N 0.00 0.00 t \N 2025-04-20 \N \N FEMALE \N f \N 114 702 +423 2025-01-22 23:59:36.834377+00 2025-01-22 23:59:36.834385+00 f t Kici CAT 1 4.00 0.00 t 2023-12-02 2025-01-24 \N \N \N \N f \N 113 358 +833 2025-04-22 19:08:46.594442+00 2025-04-22 19:08:46.594449+00 f t Ringo DOG 9 25.00 0.00 f \N 2025-04-25 \N \N MALE \N f 15 112 715 +761 2025-04-07 22:40:24.491177+00 2025-04-07 22:40:24.491186+00 f t Ushko CAT 0 0.00 0.00 f \N 2025-06-18 \N \N MALE \N f \N 113 646 +644 2025-03-08 21:17:50.396086+00 2025-03-08 21:17:50.396093+00 f t Nordika CAT 1 3.60 0.00 t 2024-01-01 2025-03-18 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? Ninguna\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Es asustadiza pero no ataca. Solo se estresa \N f \N 110 547 +862 2025-04-26 00:48:09.986205+00 2025-04-26 00:48:09.986215+00 f t Lulú DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 738 +3852 2025-07-15 21:56:44.414996+00 2025-07-15 21:56:44.415005+00 f t TERRY DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4638 +1027 2025-05-12 02:57:24.828972+00 2025-05-12 02:57:24.828982+00 f t Marshall CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 922 +983 2025-05-09 13:14:22.927218+00 2025-05-09 13:14:22.927226+00 f t India CAT 9 4.00 0.00 t \N 2025-06-06 \N \N \N \N f \N 112 872 +492 2025-02-04 13:01:10.4439+00 2025-02-04 13:01:10.443911+00 f t Tomas CAT 8 3.00 0.00 t 2016-12-02 2025-02-04 \N \N MALE \N f 27 111 413 +535 2025-02-14 23:25:10.427562+00 2025-02-14 23:25:10.427571+00 f t Gato CAT 3 3.00 0.00 t 2021-12-02 2025-02-25 \N \N \N \N f \N 113 452 +953 2025-05-08 11:04:50.24104+00 2025-05-08 11:04:50.241049+00 f t Kira DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 846 +568 2025-02-21 18:30:59.454146+00 2025-02-21 18:30:59.454154+00 f t Luly DOG 5 10.00 0.00 f 2019-12-02 2025-02-22 \N \N FEMALE \N f 1 111 480 +3881 2025-07-16 15:52:01.593678+00 2025-07-16 15:52:01.593691+00 f t Yayo CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4674 +591 2025-02-26 00:08:16.83221+00 2025-02-26 00:08:16.832219+00 f t Freya CAT 6 3.50 0.00 t 2018-12-02 2025-02-26 \N \N FEMALE \N f \N 113 500 +543 2025-02-16 21:45:12.585617+00 2025-02-16 21:45:12.585623+00 f t Cucho CAT 2 0.00 0.00 t 2022-12-02 2025-02-18 \N \N MALE No toma medicación y tiene comportamiento nervioso \N f \N 114 459 +999 2025-05-09 18:52:27.99162+00 2025-05-09 18:52:27.991631+00 f t TEST DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 888 +875 2025-04-27 21:54:28.250049+00 2025-04-27 21:54:28.250055+00 f t Pepa Porta DOG 11 7.00 0.00 t \N 2025-04-29 \N \N FEMALE No toma medicación\r\nEs dócil \N f 1 114 750 +1041 2025-05-12 16:14:35.619822+00 2025-05-12 16:14:35.619834+00 f t Simon Tadeo CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 937 +416 2025-01-22 17:10:57.038165+00 2025-01-22 17:10:57.038174+00 f t simon CAT 2 4.00 0.00 t 2022-12-02 2025-01-23 \N \N MALE \N f 27 113 353 +606 2025-02-27 18:49:13.569203+00 2025-02-27 18:49:13.569213+00 f t Budín CAT 1 4.00 0.00 t 2023-12-02 2025-02-28 \N \N MALE \N f 27 111 513 +605 2025-02-27 18:17:12.796348+00 2025-02-27 18:17:12.796356+00 f t Yoda CAT 3 4.00 0.00 t 2021-12-02 2025-02-28 \N \N MALE \N f 27 111 513 +531 2025-02-14 18:50:32.090317+00 2025-02-14 18:50:32.090325+00 f t Suici CAT 14 3.50 0.00 t 2010-12-02 2025-02-18 \N \N MALE \N f 27 111 448 +547 2025-02-16 21:59:17.283675+00 2025-02-16 21:59:17.283683+00 f t Frida CAT 6 5.00 0.00 t 2018-12-02 2025-02-17 \N \N FEMALE \N f \N 114 461 +506 2025-02-07 20:47:38.383402+00 2025-02-07 20:47:38.383409+00 f t Coqui DOG 15 5.00 0.00 f 2009-12-02 2025-02-07 \N \N MALE \N f 8 111 426 +470 2025-02-01 21:54:43.85447+00 2025-02-01 21:54:43.854477+00 f t Teresa DOG 8 3.00 0.00 t 2016-12-02 2025-02-01 \N \N FEMALE \N f \N 114 396 +454 2025-01-29 23:36:52.930875+00 2025-01-29 23:36:52.930881+00 f t Fido DOG 14 35.00 0.00 f 2010-12-02 2025-02-04 \N \N MALE \N f \N 113 383 +479 2025-02-02 20:52:02.840381+00 2025-02-02 20:52:02.840389+00 f t Capanita CAT 2 2.00 0.00 f 2022-12-02 2025-02-06 \N \N FEMALE \N f \N 114 405 +572 2025-02-21 20:25:34.16174+00 2025-02-21 20:25:34.161747+00 f t Mao CAT 5 7.00 0.00 t 2019-12-02 2025-02-21 \N \N \N \N f \N 113 482 +1054 2025-05-12 19:20:40.847267+00 2025-05-12 19:20:40.847276+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 950 +1067 2025-05-13 09:50:18.963958+00 2025-05-13 09:50:18.96397+00 f t Dana DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 969 +1092 2025-05-13 18:42:56.063232+00 2025-05-13 18:42:56.063245+00 f t Dazzer CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 996 +1125 2025-05-14 17:25:19.032391+00 2025-05-14 17:25:19.032404+00 f t TEST DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1035 +1113 2025-05-14 15:55:18.473697+00 2025-05-14 15:55:18.473708+00 f t Pupu CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1023 +1056 2025-05-12 19:40:58.023808+00 2025-05-12 19:40:58.023818+00 f t Magui DOG 5 12.00 0.00 f \N 2025-05-14 \N \N \N Toma\r\n onco vet I 100 mg\r\nPrednisolona\r\nSpectryl comprimidos 10 mg\r\nRaditidina. \N f \N 112 952 +1145 2025-05-14 23:37:07.900611+00 2025-05-14 23:37:07.900624+00 f t Yuachi CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1069 +849 2025-04-24 17:30:24.258013+00 2025-04-24 17:30:24.258022+00 f t Cooker DOG 12 16.00 0.00 f medicación ADE Caps y CEFALEXINA500, \N 2025-04-25 \N \N MALE Y no hay problema con extraños \N f 13 113 725 +1178 2025-05-16 00:10:29.366944+00 2025-05-16 00:10:29.366957+00 f t Dino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1115 +1103 2025-05-14 02:52:48.528307+00 2025-05-14 02:52:48.528318+00 t t Galo CAT 12 3.60 0.00 f \N 2025-05-15 \N \N MALE \N f \N 112 1009 +939 2025-05-07 14:11:48.120234+00 2025-05-07 14:11:48.120242+00 f t Jenjibre CAT 1 0.00 0.00 t \N 2025-05-10 \N \N \N \N f \N 112 834 +1204 2025-05-16 20:25:43.223202+00 2025-05-16 20:25:43.223213+00 f t Pupi DOG \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1149 +559 2025-02-19 18:56:00.400271+00 2025-02-19 18:56:00.400279+00 f t Bota CAT 0 2.00 0.00 f 2024-12-02 2025-05-21 \N \N MALE \N f 28 113 432 +1 2024-10-30 14:13:08.286+00 2024-10-30 14:13:08.286+00 f t Mascota de Rosario Mazziotti DOG \N 0.00 0.00 f \N 2024-01-04 \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 1 +790 2025-04-15 01:12:12.482901+00 2025-04-15 01:12:12.482908+00 t t Piti CAT 0 0.00 0.00 f \N \N \N \N MALE \N f \N 113 667 +805 2025-04-16 21:29:25.306839+00 2025-04-16 21:29:25.30685+00 f t Fg DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 684 +3805 2025-07-15 01:35:23.406959+00 2025-07-15 01:35:23.406969+00 f t Tobias DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4575 +720 2025-03-28 15:04:28.133678+00 2025-03-28 15:04:28.133685+00 f t Thor CAT 12 8.00 0.00 t \N 2025-04-21 \N \N MALE \N f 27 111 616 +455 2025-01-30 15:33:13.497202+00 2025-01-30 15:33:13.497211+00 f t Luna CAT 7 3.00 0.00 f 2017-01-01 2025-02-03 \N \N FEMALE \N f 27 111 384 +705 2025-03-24 19:49:03.386234+00 2025-03-24 19:49:03.386241+00 f t Shuva DOG 5 28.00 0.00 t \N 2025-03-23 \N \N MALE \N f 1 114 603 +691 2025-03-21 23:06:23.604091+00 2025-03-21 23:06:23.604097+00 f t Ursula DOG 9 6.00 0.00 t \N 2025-03-22 \N \N FEMALE Toma: \r\nSucrafalto\r\nPolper b12\r\nProtector hepatico\r\nClindamicina\r\nEpogen\r\nAZATIOPRINA \N f \N 113 590 +685 2025-03-19 20:08:37.139014+00 2025-03-19 20:08:37.139022+00 f t Nemo Costamagna CAT 1815 6.00 0.00 t 2010-01-01 2025-03-26 \N \N MALE No toma medicamentos\r\nNo es agresivo \N f 27 110 584 +440 2025-01-27 20:32:30.820956+00 2025-01-27 20:32:30.820962+00 f t MILAN DOG 4 27.50 0.00 t 2020-09-29 2025-01-28 \N \N MALE \N f \N 114 374 +734 2025-03-31 23:39:55.90508+00 2025-03-31 23:39:55.905087+00 f t Darko CAT 10 0.00 0.00 t \N 2025-04-01 \N \N MALE Si, se pone a la defensiva \N f \N 113 624 +5953 2025-08-25 12:30:51.205703+00 2025-08-25 12:30:51.205717+00 f t manu DOG \N 37.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7257 +748 2025-04-03 17:05:10.824097+00 2025-04-03 17:05:10.824107+00 f t Mao CAT 4 3.00 0.00 f \N 2025-04-03 \N \N MALE \N f \N 113 637 +762 2025-04-07 22:43:14.99936+00 2025-04-07 22:43:14.999367+00 f t Gala CAT 3 4.80 0.00 t \N 2025-04-09 \N \N FEMALE \N f \N 113 647 +1042 2025-05-12 16:56:40.798707+00 2025-05-12 16:56:40.798719+00 f t Coquito DOG \N 0.00 0.00 f \N 2025-07-04 \N \N MALE \N f \N 112 938 +1000 2025-05-09 19:10:32.507044+00 2025-05-09 19:10:32.507054+00 f t PRUEBA DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 889 +834 2025-04-22 19:10:18.032778+00 2025-04-22 19:10:18.032785+00 f t Micky CAT 10 5.00 0.00 t \N 2025-04-25 \N \N MALE \N f 27 112 715 +863 2025-04-26 10:22:03.559006+00 2025-04-26 10:22:03.559017+00 f t Rafa DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 739 +2076 2025-06-07 02:53:51.089381+00 2025-06-07 02:53:51.089393+00 f t Joey CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2288 +886 2025-04-30 15:21:35.27974+00 2025-04-30 15:21:35.279753+00 f t Akiba CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 759 +940 2025-05-07 14:29:28.442039+00 2025-05-07 14:29:28.442048+00 f t Nicolas CAT 13 5.00 0.00 f \N 2025-05-12 \N \N MALE \N f \N 112 835 +850 2025-04-24 17:42:58.313132+00 2025-04-24 17:42:58.31314+00 f t Figaro CAT 5 0.00 0.00 f \N 2025-05-01 \N \N MALE \N f 27 113 726 +900 2025-05-03 11:56:43.889069+00 2025-05-03 11:56:43.889079+00 f t Dobby DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 780 +2106 2025-06-07 22:05:58.65615+00 2025-06-07 22:05:58.656165+00 f t Bruno CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2330 +2 2024-10-30 14:13:08.296+00 2024-10-30 14:13:08.296+00 f t Mascota de Agustín Amor DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 2 +3 2024-10-30 14:13:08.303+00 2024-10-30 14:13:08.303+00 f t Mascota de Mariana Cantisani DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 3 +4 2024-10-30 14:13:08.312+00 2024-10-30 14:13:08.312+00 f t No_Especificado DOG \N 0.00 0.00 f \N \N \N \N \N \N \N \N f \N \N 346 +6015 2025-08-26 17:34:56.62234+00 2025-08-26 17:34:56.622348+00 f t Bemba CAT 8 4.00 0.00 t \N \N \N \N \N puede asustarse \N f 27 1208 7319 +6 2024-10-30 14:13:08.326+00 2024-10-30 14:13:08.326+00 f t Mascota de Alejandra Piñeiro DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 6 +7 2024-10-30 14:13:08.333+00 2024-10-30 14:13:08.333+00 f t Mascota de Alicia Martín DOG \N 0.00 0.00 f \N \N \N \N \N \N f \N 114 7 +8 2024-10-30 14:13:08.341+00 2024-10-30 14:13:08.341+00 f t Mascota de Andrea Gonzalez DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 8 +9 2024-10-30 14:13:08.348+00 2024-10-30 14:13:08.348+00 f t Masctota de Laybeth Salazar DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 9 +10 2024-10-30 14:13:08.355+00 2024-10-30 14:13:08.355+00 f t Mascota de Ornella Sturlese DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 10 +11 2024-10-30 14:13:08.366+00 2024-10-30 14:13:08.366+00 f t Mascota de Aldana Casati DOG \N 0.00 0.00 f \N \N \N \N \N \N f \N 114 11 +12 2024-10-30 14:13:08.372+00 2024-10-30 14:13:08.372+00 f t Mascota de Susana Blanca Tugues vaca DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 12 +13 2024-10-30 14:13:08.38+00 2024-10-30 14:13:08.38+00 f t Mascota de Valentina Alvarado DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 13 +14 2024-10-30 14:13:08.386+00 2024-10-30 14:13:08.386+00 f t Mascota de Verónica Browning DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 14 +15 2024-10-30 14:13:08.395+00 2024-10-30 14:13:08.395+00 f t Mascota de Gonzalo Piczman DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 15 +16 2024-10-30 14:13:08.402+00 2024-10-30 14:13:08.402+00 f t Mascota de Antonio Mota DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 16 +17 2024-10-30 14:13:08.409+00 2024-10-30 14:13:08.409+00 f t Mascota de Vanesa Mancini DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 17 +18 2024-10-30 14:13:08.416+00 2024-10-30 14:13:08.416+00 f t Mascota de Maria Gabriela\tSabella DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 18 +19 2024-10-30 14:13:08.423+00 2024-10-30 14:13:08.423+00 f t Mascota de Cristina Odetti DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 19 +8497 2025-10-07 23:34:12.824476+00 2025-10-07 23:34:12.824488+00 f t Toni DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10235 +954 2025-05-08 12:17:52.421234+00 2025-05-08 12:17:52.421249+00 f t sucio DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 847 +968 2025-05-08 21:48:49.126892+00 2025-05-08 21:48:49.126904+00 f t Zidane DOG \N 19.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 860 +1014 2025-05-11 14:34:01.581202+00 2025-05-11 14:34:01.581213+00 f t Milo DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 908 +604 2025-02-27 18:10:49.954678+00 2025-02-27 18:10:49.954687+00 f t Bobby DOG \N 17.00 0.00 t 2024-09-01 2025-02-27 \N \N MALE \N f 1 111 512 +1028 2025-05-12 03:02:17.474767+00 2025-05-12 03:02:17.47478+00 f t Marshall CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 923 +1055 2025-05-12 19:22:39.579244+00 2025-05-12 19:22:39.579255+00 f t TEST DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 951 +1168 2025-05-15 19:53:51.805365+00 2025-05-15 19:53:51.805374+00 f t Pupi CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1102 +775 2025-04-11 14:13:20.464318+00 2025-04-11 14:13:20.464327+00 f t Khaleesi CAT 1 1.00 0.00 f \N 2025-05-12 \N \N FEMALE \N f 27 111 656 +1093 2025-05-13 19:17:44.138791+00 2025-05-13 19:17:44.138805+00 f t China CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 997 +1068 2025-05-13 10:50:36.067617+00 2025-05-13 10:50:36.067629+00 f t Gala DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 970 +1080 2025-05-13 14:32:17.04079+00 2025-05-13 14:32:17.040801+00 f t Milo CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 984 +1104 2025-05-14 03:55:27.051328+00 2025-05-14 03:55:27.051341+00 f t Nicolina DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1010 +1114 2025-05-14 15:56:00.336051+00 2025-05-14 15:56:00.33606+00 f t Pupu CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1024 +1126 2025-05-14 17:41:58.812846+00 2025-05-14 17:41:58.812857+00 f t Luke DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1037 +1136 2025-05-14 20:25:53.817707+00 2025-05-14 20:25:53.817721+00 f t India DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1057 +1146 2025-05-15 00:18:43.969218+00 2025-05-15 00:18:43.969227+00 f t Tokyo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1071 +1179 2025-05-16 00:30:57.784646+00 2025-05-16 00:30:57.784659+00 f t Simon DOG \N 250.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1116 +1187 2025-05-16 12:55:36.28545+00 2025-05-16 12:55:36.285463+00 f t prueba mascota DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1127 +564 2025-02-20 23:49:36.011533+00 2025-02-20 23:49:36.01154+00 f t Cristiano DOG \N 2.70 0.00 f \N 2025-02-20 \N \N MALE \N f 5 113 476 +984 2025-05-09 13:14:53.375453+00 2025-05-09 13:14:53.375463+00 f t Akira CAT 3 3.00 0.00 t \N 2025-06-06 \N \N \N \N f \N 112 872 +22 2024-10-30 14:13:08.446+00 2024-10-30 14:13:08.446+00 f t Mascota de Sol Amoroso DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 22 +23 2024-10-30 14:13:08.453+00 2024-10-30 14:13:08.453+00 f t Mascota de Federico Aracre DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 23 +24 2024-10-30 14:13:08.46+00 2024-10-30 14:13:08.46+00 f t Mascota de Matias Adrian Pardo DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 24 +25 2024-10-30 14:13:08.467+00 2024-10-30 14:13:08.467+00 f t Mascota de Monica Patitucci DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 25 +26 2024-10-30 14:13:08.474+00 2024-10-30 14:13:08.474+00 f t Mascota de Pamela Figliolo DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 26 +27 2024-10-30 14:13:08.481+00 2024-10-30 14:13:08.481+00 f t Mascota de Camila Vessvessian DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 27 +28 2024-10-30 14:13:08.488+00 2024-10-30 14:13:08.488+00 f t Rufina DOG \N 0.00 0.00 f \N \N \N \N FEMALE No hay más información sobre la mascota. \N f 9 114 28 +29 2024-10-30 14:13:08.494+00 2024-10-30 14:13:08.494+00 f t Mascota de Yulia Osharova DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 29 +30 2024-10-30 14:13:08.501+00 2024-10-30 14:13:08.501+00 f t Mascota de Priscila Huberk DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 30 +32 2024-10-30 14:13:08.521+00 2024-10-30 14:13:08.521+00 f t Gato de Gisel Pereda CAT \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f 36 114 32 +34 2024-10-30 14:13:08.542+00 2024-10-30 14:13:08.542+00 f t Milagros CAT \N 0.00 0.00 f \N \N \N \N FEMALE \N f 27 114 34 +35 2024-10-30 14:13:08.555+00 2024-10-30 14:13:08.555+00 f t Gato de Maria Laura Brocca CAT \N 0.00 0.00 f \N \N \N \N FEMALE \N f 36 114 35 +843 2025-04-24 15:23:55.188498+00 2025-04-24 15:23:55.188505+00 f t Pichon CAT 9 0.00 0.00 t \N 2025-04-26 \N \N MALE \N f \N 112 722 +73 2024-10-30 14:13:08.933+00 2024-10-30 14:13:08.933+00 f t Juana CAT 0 0.00 0.00 f \N 2025-03-25 \N \N FEMALE \N f 27 114 71 +706 2025-03-24 23:49:51.76313+00 2025-03-24 23:49:51.763137+00 f t Lulu CAT 13 7.00 0.00 t \N 2025-03-24 \N \N FEMALE \N f \N 113 604 +806 2025-04-16 21:30:16.946232+00 2025-04-16 21:30:16.946246+00 f t Klkhv DOG \N 222.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 684 +791 2025-04-15 15:47:10.488819+00 2025-04-15 15:47:10.488826+00 f t Tura CAT 9 0.00 0.00 f 2016-11-09 2025-04-15 \N \N FEMALE \N t \N 112 668 +46 2024-10-30 14:13:08.678+00 2024-10-30 14:13:08.678+00 f t Bimbi CAT \N 0.00 0.00 f \N \N \N \N MALE \N f 27 114 45 +735 2025-03-31 23:42:15.946097+00 2025-03-31 23:42:15.946104+00 f t Tigra CAT 0 2.00 0.00 f \N 2025-05-15 \N \N FEMALE Está en tratamiento con Antifúngicos \N f \N 113 625 +692 2025-03-21 23:17:27.596799+00 2025-03-21 23:17:27.596805+00 f t Tyrion DOG 0 2.50 0.00 f \N 2025-03-21 \N \N MALE \N f 23 113 591 +49 2024-10-30 14:13:08.716+00 2024-10-30 14:13:08.716+00 f t Josephine CAT \N 0.00 0.00 f \N \N \N \N FEMALE \N f 27 114 48 +50 2024-10-30 14:13:08.73+00 2024-10-30 14:13:08.73+00 f t Moro DOG \N 0.00 0.00 f \N \N \N \N MALE \N f 8 114 49 +51 2024-10-30 14:13:08.742+00 2024-10-30 14:13:08.742+00 f t Mercury CAT \N 0.00 0.00 f \N \N \N \N MALE \N f 27 114 50 +53 2024-10-30 14:13:08.762+00 2024-10-30 14:13:08.762+00 f t Bari Alejandro CAT \N 0.00 0.00 f \N \N \N \N MALE \N f 36 114 52 +54 2024-10-30 14:13:08.775+00 2024-10-30 14:13:08.775+00 f t Olivia DOG \N 0.00 0.00 f \N \N \N \N FEMALE \N f 1 114 53 +55 2024-10-30 14:13:08.787+00 2024-10-30 14:13:08.787+00 f t Bills CAT \N 0.00 0.00 f \N \N \N \N MALE \N f 27 114 54 +56 2024-10-30 14:13:08.8+00 2024-10-30 14:13:08.8+00 f t Gato de Mayra Ibañez CAT \N 0.00 0.00 f \N \N \N \N MALE \N f 27 114 55 +57 2024-10-30 14:13:08.812+00 2024-10-30 14:13:08.812+00 f t Talita CAT \N 0.00 0.00 f \N \N \N \N FEMALE \N f 27 114 56 +58 2024-10-30 14:13:08.818+00 2024-10-30 14:13:08.818+00 f t Sirella CAT \N 0.00 0.00 f \N \N \N \N FEMALE \N f 27 114 57 +776 2025-04-11 15:15:00.582644+00 2025-04-11 15:15:00.582654+00 f t India DOG 11 20.00 0.00 f \N 2025-04-12 \N \N FEMALE \N f 1 111 657 +60 2024-10-30 14:13:08.831+00 2024-10-30 14:13:08.831+00 f t Gato de Angelina Quintana DOG \N 0.00 0.00 f \N \N \N \N \N \N f \N 114 59 +62 2024-10-30 14:13:08.844+00 2024-10-30 14:13:08.844+00 f t Manchita DOG \N 0.00 0.00 f \N \N \N \N \N \N f \N 114 61 +721 2025-03-28 20:37:47.717727+00 2025-03-28 20:37:47.717735+00 f t Mimi CAT 8 6.00 0.00 t \N 2025-03-31 \N \N FEMALE \N f 36 113 617 +64 2024-10-30 14:13:08.868+00 2024-10-30 14:13:08.868+00 f t Jachu CAT \N 0.00 0.00 f \N \N \N \N FEMALE \N f 27 114 63 +65 2024-10-30 14:13:08.879+00 2024-10-30 14:13:08.879+00 f t Barão DOG \N 0.00 0.00 f \N \N \N \N MALE \N f \N 114 64 +66 2024-10-30 14:13:08.891+00 2024-10-30 14:13:08.891+00 f t Pochoclo DOG \N 0.00 0.00 f \N \N \N \N MALE \N f \N 114 65 +67 2024-10-30 14:13:08.897+00 2024-10-30 14:13:08.897+00 f t Jagger CAT \N 0.00 0.00 f \N \N \N \N MALE \N f 36 114 66 +749 2025-04-03 17:05:35.105409+00 2025-04-03 17:05:35.105416+00 f t Olga CAT 7 2.00 0.00 t \N 2025-04-03 \N \N FEMALE \N f \N 113 637 +69 2024-10-30 14:13:08.909+00 2024-10-30 14:13:08.909+00 f t Aki DOG \N 0.00 0.00 f \N \N \N \N \N \N \N \N f \N \N 61 +763 2025-04-07 22:43:36.146623+00 2025-04-07 22:43:36.14663+00 f t Greta CAT 3 0.00 0.00 t \N 2025-04-09 \N \N FEMALE \N f \N 113 647 +74 2024-10-30 14:13:08.939+00 2024-10-30 14:13:08.939+00 f t Greta DOG \N 0.00 0.00 f \N \N \N \N FEMALE \N f 1 114 72 +2077 2025-06-07 03:11:48.796667+00 2025-06-07 03:11:48.796681+00 f t Sultán DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2289 +76 2024-10-30 14:13:08.958+00 2024-10-30 14:13:08.958+00 f t Salomón CAT \N 0.00 0.00 t \N \N \N \N MALE \N f 27 114 74 +77 2024-10-30 14:13:08.968+00 2024-10-30 14:13:08.968+00 f t Gato de Maria Pastore CAT \N 0.00 0.00 f \N \N \N \N \N \N f 36 114 75 +78 2024-10-30 14:13:08.974+00 2024-10-30 14:13:08.974+00 f t Shina DOG \N 0.00 0.00 f \N \N \N \N \N Hembra \N \N f \N \N 76 +887 2025-05-01 12:11:16.358401+00 2025-05-01 12:11:16.35841+00 f t Rocky DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 761 +3846 2025-07-15 20:13:24.92933+00 2025-07-15 20:13:24.929341+00 f t Loba CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4631 +835 2025-04-22 19:14:40.075454+00 2025-04-22 19:14:40.07546+00 f t Juno CAT 2 2.00 0.00 t \N 2025-04-23 \N \N MALE Puede asustarse \N f 27 112 716 +21 2024-10-30 14:13:08.439+00 2024-10-30 14:13:08.439+00 f t Linda CAT 12 0.00 0.00 f 2012-12-02 \N \N \N FEMALE \N f 27 \N 21 +877 2025-04-28 20:52:31.799837+00 2025-04-28 20:52:31.799849+00 f t Lío DOG 5 0.00 0.00 t \N 2025-05-06 \N \N MALE No toma medicación\r\nSuele estresarse si no conoce \N f 8 113 752 +2129 2025-06-08 05:26:32.942914+00 2025-06-08 05:26:32.942927+00 f t Alaska CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2357 +2143 2025-06-08 14:54:46.272355+00 2025-06-08 14:54:46.272366+00 f t Chaos CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2371 +3806 2025-07-15 01:47:15.741591+00 2025-07-15 01:47:15.741601+00 f t Trika CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4576 +901 2025-05-03 21:01:03.92438+00 2025-05-03 21:01:03.924391+00 f t París CAT 3 8.50 0.00 t \N 2025-05-06 \N \N FEMALE no toma medicamentos ,y si puede ponerse a la defensiva la traje de un hogar de tránsito \N f \N 114 784 +955 2025-05-08 12:21:51.377613+00 2025-05-08 12:21:51.377624+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 848 +969 2025-05-08 22:27:22.95523+00 2025-05-08 22:27:22.955242+00 f t Rin CAT \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 861 +933 2025-05-06 17:33:05.254296+00 2025-05-06 17:33:05.254307+00 f t Polo DOG 15 6.00 0.00 f \N 2025-05-08 \N \N MALE \N f 8 112 827 +1001 2025-05-09 19:16:24.056804+00 2025-05-09 19:16:24.056817+00 f t PRUEBA DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 889 +1015 2025-05-11 15:06:20.50862+00 2025-05-11 15:06:20.508633+00 f t Pepina DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 909 +1029 2025-05-12 03:04:55.759836+00 2025-05-12 03:04:55.759846+00 f t Marshall CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 924 +1043 2025-05-12 17:07:14.160692+00 2025-05-12 17:07:14.160707+00 f t India DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 939 +1069 2025-05-13 11:25:44.22762+00 2025-05-13 11:25:44.227632+00 f t Matias DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 972 +1081 2025-05-13 14:34:00.645081+00 2025-05-13 14:34:00.645092+00 f t Milton CAT \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 984 +851 2025-04-24 17:45:13.030017+00 2025-04-24 17:45:13.030028+00 f t x DOG 2 7.00 0.00 f 2023-04-08 2025-04-24 \N \N FEMALE \N f 10 111 727 +85 2024-10-30 14:13:09.038+00 2024-10-30 14:13:09.038+00 f t Fatiga DOG \N 0.00 0.00 f \N \N \N \N \N \N f 1 114 83 +86 2024-10-30 14:13:09.044+00 2024-10-30 14:13:09.044+00 f t Rubí CAT \N 0.00 0.00 f \N \N \N \N FEMALE \N f 27 114 84 +87 2024-10-30 14:13:09.05+00 2024-10-30 14:13:09.05+00 f t Ringo DOG \N 0.00 0.00 f \N \N \N \N MALE \N f 1 114 85 +89 2024-10-30 14:13:09.063+00 2024-10-30 14:13:09.063+00 f t Gato de Gerónimo Pardo CAT \N 0.00 0.00 f \N \N \N \N MALE \N f 27 114 86 +91 2024-10-30 14:13:09.081+00 2024-10-30 14:13:09.081+00 f t Perro de Juana Mesa DOG \N 0.00 0.00 f \N \N \N \N \N \N f \N 114 87 +92 2024-10-30 14:13:09.087+00 2024-10-30 14:13:09.087+00 f t Perro de Gabriela De Luca DOG \N 0.00 0.00 f \N \N \N \N \N \N f \N 114 88 +8498 2025-10-08 00:03:23.780274+00 2025-10-08 00:03:23.780282+00 f t Michifuz CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10237 +707 2025-03-24 23:52:26.414672+00 2025-03-24 23:52:26.41468+00 f t Chimuelo DOG 3 6.00 0.00 t \N 2025-03-24 \N \N MALE \N f \N 113 605 +722 2025-03-28 20:38:19.906279+00 2025-03-28 20:38:19.906287+00 f t Negro CAT 8 8.00 0.00 t \N \N \N \N MALE \N f \N 113 617 +99 2024-10-30 14:13:09.176+00 2024-10-30 14:13:09.176+00 f t Mascota de Marcela Goñi DOG \N 0.00 0.00 f \N \N \N \N \N \N f \N 114 95 +736 2025-03-31 23:45:14.303874+00 2025-03-31 23:45:14.30388+00 f t India CAT 5 3.00 0.00 t \N 2025-03-31 \N \N FEMALE \N f 56 113 626 +693 2025-03-21 23:21:27.668166+00 2025-03-21 23:21:27.668173+00 f t Pocho CAT 4 6.00 0.00 t \N 2025-04-02 \N \N MALE \N f 27 113 592 +3807 2025-07-15 02:01:27.86668+00 2025-07-15 02:01:27.86669+00 f t Teo DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4577 +1127 2025-05-14 17:48:53.86092+00 2025-05-14 17:48:53.860936+00 f t Antonio DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1038 +764 2025-04-07 22:49:04.391244+00 2025-04-07 22:49:04.391252+00 f t Logan DOG 5 40.00 0.00 f \N 2025-04-09 \N \N MALE \N f 2 113 648 +108 2024-10-30 14:13:09.282+00 2024-10-30 14:13:09.282+00 f t Alma CAT \N 0.00 0.00 f \N \N \N \N FEMALE \N f 27 114 104 +777 2025-04-12 00:10:40.95132+00 2025-04-12 00:10:40.95133+00 f t Leon DOG 14 7.00 0.00 f \N 2025-04-12 \N \N MALE \N f 8 113 658 +110 2024-10-30 14:13:09.305+00 2024-10-30 14:13:09.305+00 f t Stich DOG \N 0.00 0.00 f \N \N \N \N MALE \N f 1 114 106 +2078 2025-06-07 03:56:08.774126+00 2025-06-07 03:56:08.774139+00 f t Tigre CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2290 +114 2024-10-30 14:13:09.35+00 2024-10-30 14:13:09.35+00 f t Hegel CAT \N 8.00 0.00 f \N \N \N \N MALE \N f 27 114 109 +878 2025-04-28 20:56:46.112631+00 2025-04-28 20:56:46.112637+00 f t Ceniza CAT \N 0.00 0.00 f 2025-03-08 2025-06-07 \N \N MALE \N f \N 113 753 +116 2024-10-30 14:13:09.368+00 2024-10-30 14:13:09.368+00 f t Lio DOG \N 2.00 0.00 f \N \N \N \N MALE En septiembre tiene 2 meses \N f 18 114 111 +1197 2025-05-16 17:21:09.422116+00 2025-05-16 17:21:09.422126+00 f t Furia CAT 7 6.00 0.00 f \N 2025-05-16 \N \N MALE \N f \N 112 1140 +836 2025-04-22 19:20:29.598535+00 2025-04-22 19:20:29.598541+00 f t Coker DOG 12 16.00 0.00 t \N \N \N \N MALE Medicado con ADE Caos y CEFALEXINA 500 \N f 13 112 717 +822 2025-04-20 21:59:51.706903+00 2025-04-20 21:59:51.706912+00 f t IVAR DOG 5 26.00 0.00 f \N 2025-04-20 \N \N MALE Ciprofloxacina c/12hs por fístulas anales\r\nSí, puede, pero usa bozal y correa, y con mi papá lo tenemo \N f 4 114 704 +852 2025-04-25 02:24:31.376244+00 2025-04-25 02:24:31.376258+00 f t Gabriela Estefanía isla DOG \N 76.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 728 +864 2025-04-26 18:04:42.37624+00 2025-04-26 18:04:42.376252+00 f t Kuki CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 741 +888 2025-05-01 14:00:04.057274+00 2025-05-01 14:00:04.057287+00 f t prueba DOG \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 762 +1137 2025-05-14 20:35:31.06331+00 2025-05-14 20:35:31.063321+00 f t India DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1058 +5954 2025-08-25 12:33:48.592055+00 2025-08-25 12:33:48.59207+00 f t manu DOG \N 37.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7258 +2130 2025-06-08 10:15:51.133877+00 2025-06-08 10:15:51.133886+00 f t Mugrosa CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2358 +750 2025-04-04 23:08:33.409145+00 2025-04-04 23:08:33.409154+00 f t Catalina CAT 0 4.00 0.00 t 2024-09-09 2025-04-03 \N \N FEMALE \N f \N 113 638 +956 2025-05-08 12:29:36.317141+00 2025-05-08 12:29:36.317152+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 849 +970 2025-05-08 22:32:10.230025+00 2025-05-08 22:32:10.230035+00 f t Lenp CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 862 +986 2025-05-09 13:30:11.081932+00 2025-05-09 13:30:11.081946+00 f t Lola DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 874 +792 2025-04-15 16:30:40.948614+00 2025-04-15 16:30:40.948621+00 f t Romeo CAT 4 0.00 0.00 t \N 2025-04-16 \N \N MALE \N f \N 112 669 +1002 2025-05-09 20:14:15.532262+00 2025-05-09 20:14:15.532271+00 f t PRUEBA DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 891 +1244 2025-05-18 01:01:45.615922+00 2025-05-18 01:01:45.615939+00 f t Kenia DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1206 +1194 2025-05-16 16:09:54.297196+00 2025-05-16 16:09:54.297208+00 f t París CAT 4 3.20 0.00 t Le inyectaron un antibiótico y antiinflamatorio \N 2025-05-23 \N \N FEMALE \N f 37 112 1136 +1016 2025-05-11 15:15:26.745631+00 2025-05-11 15:15:26.74564+00 f t Milo DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 910 +1030 2025-05-12 03:33:22.547651+00 2025-05-12 03:33:22.547664+00 f t Tibo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 925 +1057 2025-05-12 20:03:36.113364+00 2025-05-12 20:03:36.113375+00 f t Oliver CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 953 +1070 2025-05-13 12:10:29.66247+00 2025-05-13 12:10:29.662479+00 f t Peter CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 973 +1082 2025-05-13 14:55:15.933727+00 2025-05-13 14:55:15.933743+00 f t ULISES DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 987 +1094 2025-05-13 19:24:46.247434+00 2025-05-13 19:24:46.247445+00 f t CIRO DOG 14 9.00 0.00 t \N 2025-05-13 \N \N MALE \N f 8 113 998 +1105 2025-05-14 04:37:18.928204+00 2025-05-14 04:37:18.928218+00 f t Odin DOG \N 26.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1011 +1147 2025-05-15 02:16:53.906314+00 2025-05-15 02:16:53.906324+00 f t Teo CAT \N 5.00 0.00 f \N \N 2025-05-15 \N \N MALE \N \N f \N \N 1072 +1169 2025-05-15 20:17:14.312721+00 2025-05-15 20:17:14.312729+00 f t Sakura CAT \N 650.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1105 +1180 2025-05-16 02:28:11.627885+00 2025-05-16 02:28:11.627899+00 f t Tomy CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1117 +1250 2025-05-18 04:53:24.799014+00 2025-05-18 04:53:24.799024+00 f t Ron CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1216 +1188 2025-05-16 12:55:56.716122+00 2025-05-16 12:55:56.716135+00 f t prueba DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1127 +876 2025-04-28 16:15:31.713501+00 2025-04-28 16:15:31.713508+00 f t Mía DOG 3 16.00 0.00 f \N 2025-05-16 \N \N FEMALE \N f \N 112 751 +1205 2025-05-16 20:26:55.03508+00 2025-05-16 20:26:55.035092+00 f t Titi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1149 +1217 2025-05-17 08:36:58.827305+00 2025-05-17 08:36:58.827314+00 f t Koky DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1168 +1223 2025-05-17 13:53:28.017536+00 2025-05-17 13:53:28.01755+00 f t Kira DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1176 +967 2025-05-08 19:09:59.859468+00 2025-05-08 19:09:59.859474+00 f t Mora DOG 14 25.00 0.00 t \N 2025-05-17 \N \N FEMALE \N f 2 112 859 +1175 2025-05-15 22:22:04.672288+00 2025-05-15 22:22:04.6723+00 f t Toulouse CAT 6 5.00 0.00 t \N 2025-05-18 \N \N MALE Tomo azitromicina 0,50ml x dia la ultima semana (hasta el domingo pasado) \N f 27 113 1110 +1238 2025-05-17 23:53:28.020891+00 2025-05-17 23:53:28.020902+00 f t Luis DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1199 +1259 2025-05-18 12:42:27.69895+00 2025-05-18 12:42:27.69896+00 f t Domingo CAT \N 3.00 50.00 t Se pema entre la.cola y la espalda 2025-10-04 \N \N \N FEMALE \N \N f 27 \N 1226 +1265 2025-05-18 15:09:12.175138+00 2025-05-18 15:09:12.175152+00 f t Ramona CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1236 +1271 2025-05-18 19:17:41.424971+00 2025-05-18 19:17:41.424984+00 f t Hendrix DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1244 +1277 2025-05-18 21:44:10.442995+00 2025-05-18 21:44:10.443005+00 f t Jazz CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1250 +1281 2025-05-19 01:40:30.505174+00 2025-05-19 01:40:30.505186+00 f t Luna DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1255 +1044 2025-05-12 17:18:21.851098+00 2025-05-12 17:18:21.851107+00 f t Jada CAT 4 0.00 0.00 f \N 2025-05-14 \N \N FEMALE \N f 64 112 941 +1286 2025-05-19 05:35:48.026828+00 2025-05-19 05:35:48.026839+00 f t Greta DOG \N 39.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1259 +1292 2025-05-19 14:22:49.184931+00 2025-05-19 14:22:49.184941+00 f t Poison CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1268 +1297 2025-05-19 15:52:24.307287+00 2025-05-19 15:52:24.307298+00 f t Lorenzo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1272 +1306 2025-05-19 18:36:49.157137+00 2025-05-19 18:36:49.15715+00 f t Nora CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1284 +1309 2025-05-19 20:15:18.303536+00 2025-05-19 20:15:18.30355+00 f t Gringo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1290 +1278 2025-05-18 21:50:30.070081+00 2025-05-18 21:50:30.070091+00 f t Mia DOG 3 5.80 0.00 t \N 2025-05-18 \N \N FEMALE \N f 12 114 1251 +708 2025-03-24 23:58:09.55772+00 2025-03-24 23:58:09.557726+00 f t Jude DOG 13 0.00 0.00 f \N 2025-03-24 \N \N MALE Raza: schnauwer mini \N f \N 113 606 +694 2025-03-21 23:41:23.966717+00 2025-03-21 23:41:23.966724+00 f t Jonnhie DOG 6 12.00 0.00 t \N 2025-03-23 \N \N MALE \N f \N 113 593 +2079 2025-06-07 04:27:51.049418+00 2025-06-07 04:27:51.049432+00 f t Simon CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2292 +1138 2025-05-14 20:36:41.043845+00 2025-05-14 20:36:41.043856+00 f t loki CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1059 +723 2025-03-29 22:19:18.757224+00 2025-03-29 22:19:18.75723+00 f t Lola DOG 15 10.00 0.00 f \N 2025-03-29 \N \N \N tomando corticoides prednisolona de 10mg y betahistina audipax 16. \N f \N 113 618 +3808 2025-07-15 02:29:48.006335+00 2025-07-15 02:29:48.006344+00 f t Roco DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4578 +737 2025-03-31 23:47:42.160777+00 2025-03-31 23:47:42.160786+00 f t Whiskey CAT \N 0.00 0.00 f \N 2025-03-31 \N \N MALE \N f \N 113 627 +1128 2025-05-14 18:13:14.524474+00 2025-05-14 18:13:14.524482+00 f t Loki CAT \N 5.00 0.00 t \N 2025-05-14 \N \N MALE \N f \N 113 1041 +3847 2025-07-15 20:14:12.443337+00 2025-07-15 20:14:12.443346+00 f t Romántico CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4631 +943 2025-05-07 16:25:51.777146+00 2025-05-07 16:25:51.77716+00 f t Lola CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 838 +2131 2025-06-08 10:17:16.712462+00 2025-06-08 10:17:16.712476+00 f t Leon CAT \N 2.80 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2358 +5955 2025-08-25 13:25:36.463162+00 2025-08-25 13:25:36.463174+00 f t Oliver CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7259 +971 2025-05-08 22:33:29.954664+00 2025-05-08 22:33:29.954677+00 f t Rin CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 862 +808 2025-04-18 21:45:15.651723+00 2025-04-18 21:45:15.651737+00 f t Anchoita DOG \N 35.00 0.00 f 2023-06-30 2025-04-18 \N \N MALE \N f \N 113 691 +182 2024-10-30 19:21:15.25+00 2024-10-30 19:21:15.25+00 f t Mocca DOG 9 32.00 0.00 t 2015-08-01 \N \N \N FEMALE \N f 1 \N 346 +823 2025-04-20 22:09:42.064992+00 2025-04-20 22:09:42.065+00 f t falucho DOG 14 23.00 0.00 f \N 2025-04-20 \N \N MALE \N f \N 114 705 +186 2024-11-03 17:17:25.54+00 2024-11-03 17:17:25.54+00 f t LOLA DOG \N 10.00 0.00 f \N \N \N \N FEMALE Px con artritis en piernas trasera, dificultad en su movilidad \N f 1 114 178 +751 2025-04-04 23:14:42.322326+00 2025-04-04 23:14:42.322333+00 f t Catalina DOG 12 3.00 0.00 t \N 2025-04-12 \N \N FEMALE \N f 25 113 639 +889 2025-05-01 18:53:13.289627+00 2025-05-01 18:53:13.289635+00 f t Fideo CAT 8 5.00 0.00 t \N 2025-05-06 \N \N MALE \N f \N 114 764 +190 2024-11-05 15:59:55.809+00 2024-11-05 15:59:55.809+00 f t Bartolomeo CAT \N 4.50 0.00 f \N \N \N \N MALE \N f 28 114 182 +765 2025-04-07 22:52:50.522876+00 2025-04-07 22:52:50.522885+00 f t Nova CAT 1 3.50 0.00 t \N 2025-04-07 \N \N FEMALE Tto Doxiciclina y Prednisolona \N f \N 113 649 +1148 2025-05-15 10:58:15.867617+00 2025-05-15 10:58:15.867626+00 f t Leo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1076 +1116 2025-05-14 16:24:11.218851+00 2025-05-14 16:24:11.218861+00 t t Chilek CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1025 +837 2025-04-23 13:34:53.379228+00 2025-04-23 13:34:53.379236+00 f t Arturo CAT \N 5.00 0.00 t \N 2025-04-25 \N \N MALE \N f 27 112 718 +987 2025-05-09 13:33:13.608614+00 2025-05-09 13:33:13.608628+00 f t Owen DOG \N 38.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 875 +1159 2025-05-15 15:50:01.583344+00 2025-05-15 15:50:01.583404+00 f t Michigan CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1089 +903 2025-05-03 21:15:05.22165+00 2025-05-03 21:15:05.221661+00 f t Tito CAT \N 0.00 0.00 t \N 2025-05-05 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? No\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Si es muy asustadizo \N f \N 114 786 +1017 2025-05-11 15:21:09.786792+00 2025-05-11 15:21:09.786806+00 f t Gaia DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 911 +853 2025-04-25 12:10:59.17335+00 2025-04-25 12:10:59.17336+00 f t Bartolomé CAT 4 7.00 0.00 t \N 2025-04-25 \N \N \N Puede asustarse, le hicieron cirugía por obstrucción \N f \N 112 729 +1170 2025-05-15 21:05:33.258953+00 2025-05-15 21:05:33.258966+00 f t Aika CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1106 +1031 2025-05-12 06:15:04.288424+00 2025-05-12 06:15:04.288437+00 f t Manola CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 926 +1181 2025-05-16 02:36:56.129741+00 2025-05-16 02:36:56.129754+00 f t Loki DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1118 +1003 2025-05-09 21:02:44.70657+00 2025-05-09 21:02:44.706576+00 f t Rocko Zeus Ríos Lagoria DOG 14 40.00 0.00 t \N 2025-05-11 \N \N \N Toma vitamina B para el dolor de cadera \N f 2 112 892 +1058 2025-05-12 20:05:41.294751+00 2025-05-12 20:05:41.29476+00 f t Marvel CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 953 +1071 2025-05-13 12:27:25.870971+00 2025-05-13 12:27:25.87102+00 f t Tobi DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 975 +313 2024-12-17 18:42:16.355+00 2024-12-17 18:42:16.355+00 f t Gutten CAT 11 3.50 0.00 t 2013-12-02 2025-04-15 2024-12-18 2024-12-18 MALE \N f 27 110 270 +1083 2025-05-13 15:28:05.048478+00 2025-05-13 15:28:05.048491+00 f t AINHOA DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 988 +8499 2025-10-08 00:09:46.068163+00 2025-10-08 00:09:46.068172+00 f t Panchita CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10239 +1106 2025-05-14 11:39:32.634076+00 2025-05-14 11:39:32.634088+00 f t Ty CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1012 +1282 2025-05-19 02:24:48.677937+00 2025-05-19 02:24:48.677951+00 f t Mate DOG \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1256 +1189 2025-05-16 12:56:08.918712+00 2025-05-16 12:56:08.918723+00 f t prueba DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1127 +1198 2025-05-16 17:34:51.699126+00 2025-05-16 17:34:51.69914+00 f t Barry DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1141 +1206 2025-05-16 20:28:16.408849+00 2025-05-16 20:28:16.408864+00 f t Pelusa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1149 +2144 2025-06-08 15:24:04.135781+00 2025-06-08 15:24:04.135792+00 f t Anita DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2374 +1218 2025-05-17 10:59:01.232999+00 2025-05-17 10:59:01.233009+00 f t Dylan DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1169 +1224 2025-05-17 14:31:45.742416+00 2025-05-17 14:31:45.742426+00 f t BELHA LUNA DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1177 +1287 2025-05-19 07:40:03.151129+00 2025-05-19 07:40:03.151145+00 f t Caliope CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1261 +1229 2025-05-17 17:19:36.252696+00 2025-05-17 17:19:36.252706+00 f t India DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1183 +1233 2025-05-17 22:48:02.854034+00 2025-05-17 22:48:02.854048+00 f t Maggie CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1196 +1239 2025-05-17 23:59:29.320687+00 2025-05-17 23:59:29.320695+00 f t Felipe CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1200 +155 2024-10-30 14:13:09.796+00 2024-10-30 14:13:09.796+00 f t Moguita CAT 1 4.50 0.00 f 2023-12-02 \N \N \N FEMALE \N f 27 114 147 +1245 2025-05-18 01:15:36.765184+00 2025-05-18 01:15:36.765199+00 f t Kenia DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1207 +1251 2025-05-18 05:14:02.536351+00 2025-05-18 05:14:02.536364+00 f t Paco CAT \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1217 +1254 2025-05-18 11:14:59.645124+00 2025-05-18 11:14:59.645139+00 f t Isabella CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1221 +1260 2025-05-18 13:10:59.557614+00 2025-05-18 13:10:59.557627+00 f t Thor DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1227 +2156 2025-06-08 22:14:11.112815+00 2025-06-08 22:14:11.112824+00 f t Olivia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2390 +1266 2025-05-18 16:17:56.163529+00 2025-05-18 16:17:56.163542+00 f t Tizon DOG 0 5.00 0.00 f \N 2025-05-21 \N \N MALE \N f \N 110 1239 +1272 2025-05-18 19:32:30.872424+00 2025-05-18 19:32:30.872436+00 f t Napo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1245 +1045 2025-05-12 17:18:52.224622+00 2025-05-12 17:18:52.22463+00 f t Chispa CAT \N 0.00 0.00 f \N 2025-05-14 \N \N FEMALE \N f \N 112 941 +865 2025-04-26 21:09:25.638575+00 2025-04-26 21:09:25.638585+00 f t Rite CAT 6 5.00 0.00 t \N 2025-04-29 \N \N FEMALE Rite es un poco reactiva y se pone a la defensiva cuando viene gente. Si siente olor de otro animal, o cuando siente el olor de la veterinaria.\r\nCuando vinieron veterinaries a domicilio, apenas olio el ambo empezo a bufar y se escondio. Las veces que lleve a Verona al veterinario, la olió al regresar y le bufo un poco. \N f 27 114 742 +1293 2025-05-19 14:57:32.813817+00 2025-05-19 14:57:32.81383+00 f t dsadd DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1269 +1298 2025-05-19 15:56:25.513297+00 2025-05-19 15:56:25.513307+00 f t Negru CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1273 +177 2024-10-30 14:13:10.046+00 2024-10-30 14:13:10.046+00 f t Porthos CAT \N 4.00 0.00 t 2024-01-15 \N \N \N MALE \N f 27 114 168 +169 2024-10-30 14:13:09.962+00 2024-10-30 14:13:09.962+00 f t Bella CAT \N 2.50 0.00 f \N 2025-05-31 \N \N FEMALE \N f 1 \N 160 +1307 2025-05-19 18:44:21.306613+00 2025-05-19 18:44:21.306626+00 f t Tobi DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1285 +1310 2025-05-19 20:18:22.026833+00 2025-05-19 20:18:22.026844+00 f t Batata CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1291 +1240 2025-05-18 00:24:22.763984+00 2025-05-18 00:24:22.763993+00 f t Santino CAT \N 4.50 0.00 f \N \N 2025-05-18 \N \N MALE \N \N f \N \N 1201 +2080 2025-06-07 10:55:28.174009+00 2025-06-07 10:55:28.174017+00 f t Nelson DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2293 +676 2025-03-18 19:07:33.946586+00 2025-03-18 19:07:33.946592+00 f t Gofi CAT 13 2.00 0.00 t 2011-12-02 2025-03-22 \N \N MALE Nombre paciente Gofi\r\nRaza no\r\nEdad 13 años\r\nPeso aprox 2kg (perdió peso en los últimos años)\r\nSexo Macho\r\nCastrado o no? Castrado\r\nEstá o estuvo tomando alguna medicación en los últimos 7 días? Cuál? No\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Si \N f 27 110 578 +2108 2025-06-07 23:10:08.60219+00 2025-06-07 23:10:08.602204+00 f t Luffy DOG \N 3.02 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2332 +709 2025-03-25 00:00:35.883488+00 2025-03-25 00:00:35.883494+00 f t Batata DOG 1 3.00 0.00 f \N 2025-03-23 \N \N FEMALE \N f 10 113 607 +880 2025-04-29 15:09:49.537792+00 2025-04-29 15:09:49.537805+00 f t Ringo DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 754 +645 2025-03-09 20:41:17.477125+00 2025-03-09 20:41:17.477134+00 f t Gaspar DOG 1 9.30 0.00 f 2023-12-02 2025-04-08 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? No Cuál?\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Si \N f 10 114 548 +724 2025-03-30 21:35:41.111974+00 2025-03-30 21:35:41.11198+00 f t Nut CAT 5 3.50 0.00 t \N 2025-04-01 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? Si, hoy sabado le dieron medio comprimido de gabapentina para calmarla y ver si la podiamos sacar d casa para llevarla a la veterinaria y no funcionó en el tiempo esperado (si se calmó luego)\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Si, se pone muy agresiva \N f \N 114 619 +752 2025-04-04 23:15:19.762335+00 2025-04-04 23:15:19.762343+00 f t coki DOG 9 6.00 0.00 f 2018-10-09 \N \N \N FEMALE \N f 12 113 639 +738 2025-03-31 23:49:56.828765+00 2025-03-31 23:49:56.828774+00 f t Taika CAT 8 0.00 0.00 t \N 2025-03-31 \N \N MALE Si estuvo con antibióticos , corticoides anticoagulante , medicación para el corazón , diurético y protector gástrico\r\nSi puede asustarse ( pero está muy decaído no creo que lo haga ) \N t \N 113 628 +838 2025-04-23 14:07:52.139018+00 2025-04-23 14:07:52.139027+00 f t Labrador DOG 9 0.00 0.00 f \N 2025-04-26 \N \N \N \N f 2 112 719 +252 2024-12-02 21:31:00.824+00 2024-12-02 21:31:00.824+00 f t Branca DOG 5 30.00 0.00 t 2019-06-30 \N \N \N FEMALE \N t 11 114 231 +793 2025-04-15 19:37:12.39651+00 2025-04-15 19:37:12.396517+00 t t Bissous CAT 4 3.00 0.00 f \N \N \N \N MALE \N f 27 111 670 +237 2024-11-23 21:02:35.297+00 2024-11-23 21:02:35.297+00 f t Donna DOG 0 8.00 0.00 f 2024-08-28 \N \N \N FEMALE Casi 3 meses. Nació el 28 de agosto. \N f 1 114 216 +239 2024-11-24 21:51:18.473+00 2024-11-24 21:51:18.473+00 f t Brisa DOG 7 5.00 0.00 f 2017-02-24 \N \N \N FEMALE \N f 51 114 218 +241 2024-11-28 13:24:40.623+00 2024-11-28 13:24:40.623+00 f t Misha CAT 9 6.00 0.00 f 2014-12-01 \N \N \N FEMALE \N f 27 114 220 +2132 2025-06-08 11:31:35.979021+00 2025-06-08 11:31:35.979034+00 f t Wily DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2359 +809 2025-04-18 23:45:07.709919+00 2025-04-18 23:45:07.70993+00 f t Lupe CAT 16 2.00 0.00 t \N 2025-04-17 \N \N FEMALE \N f 29 113 692 +779 2025-04-14 14:46:26.818391+00 2025-04-14 14:46:26.8184+00 f t Tequila DOG 1 15.00 0.00 f \N 2025-04-14 \N \N MALE \N f 1 111 388 +1182 2025-05-16 08:09:23.182667+00 2025-05-16 08:09:23.182676+00 f t Niña DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1120 +247 2024-12-02 20:55:46.414+00 2024-12-02 20:55:46.414+00 f t Lizzie CAT \N 0.00 0.00 t \N \N \N \N FEMALE \N f 36 113 227 +890 2025-05-01 19:02:53.254493+00 2025-05-01 19:02:53.254502+00 f t Mauricio DOG 15 22.00 0.00 t \N 2025-05-01 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál?\r\nColotrin pastillas\r\nCiprofloxacina\r\nPregabalina\r\nTramadol\r\nDiazepan\r\nKualcovit \r\naceite de cannabis\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? No. \N f 1 114 765 +3809 2025-07-15 02:33:02.715978+00 2025-07-15 02:33:02.715988+00 f t Kala DOG \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4579 +3848 2025-07-15 20:24:32.102645+00 2025-07-15 20:24:32.102654+00 f t Charly CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4633 +958 2025-05-08 12:54:40.035897+00 2025-05-08 12:54:40.035909+00 f t a DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 851 +972 2025-05-08 22:34:35.936655+00 2025-05-08 22:34:35.936665+00 f t Len CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 862 +866 2025-04-26 21:10:10.472531+00 2025-04-26 21:10:10.472539+00 f t Verona CAT 4 3.50 0.00 t \N 2025-04-29 \N \N FEMALE \N f \N 114 742 +258 2024-12-03 20:55:04.62+00 2024-12-03 20:55:04.62+00 f t Rita DOG \N 12.00 0.00 f \N \N \N \N FEMALE \N f 55 114 236 +1018 2025-05-11 15:48:23.228424+00 2025-05-11 15:48:23.228437+00 f t Amadeo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 912 +227 2024-11-20 18:49:29.285+00 2024-11-20 18:49:29.285+00 f t Dobby DOG 2 2.70 0.00 f 2022-12-02 \N \N \N MALE \N f 25 114 209 +1032 2025-05-12 12:30:11.360273+00 2025-05-12 12:30:11.36029+00 f t Tila DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 927 +1004 2025-05-09 21:08:43.691317+00 2025-05-09 21:08:43.691324+00 f t Amora DOG 10 27.00 0.00 t \N 2025-05-15 \N \N FEMALE \N f 58 112 893 +1059 2025-05-12 20:32:08.946387+00 2025-05-12 20:32:08.946398+00 f t Titan DOG \N 18.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 954 +1190 2025-05-16 12:56:20.09289+00 2025-05-16 12:56:20.0929+00 f t chase DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1127 +1072 2025-05-13 12:30:11.988714+00 2025-05-13 12:30:11.988723+00 f t Coco DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 976 +1084 2025-05-13 15:30:24.525114+00 2025-05-13 15:30:24.525128+00 f t BRUMA DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 988 +1096 2025-05-13 19:29:00.020171+00 2025-05-13 19:29:00.020184+00 f t d CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1000 +268 2024-12-05 13:51:15.201+00 2024-12-05 13:51:15.201+00 f t Julio DOG \N 0.00 0.00 f \N \N \N \N MALE \N f 1 114 240 +988 2025-05-09 13:43:09.871643+00 2025-05-09 13:43:09.871652+00 f t Benicio CAT \N 1.50 0.00 f \N 2025-05-09 \N \N MALE \N f \N 112 876 +1107 2025-05-14 12:33:18.304281+00 2025-05-14 12:33:18.30429+00 f t TEST DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1013 +1117 2025-05-14 16:43:52.934403+00 2025-05-14 16:43:52.934415+00 f t Galo CAT \N 3.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1027 +273 2024-12-05 15:38:07.173+00 2024-12-05 15:38:07.173+00 f t Arlequina CAT \N 0.00 0.00 t \N \N \N \N FEMALE \N f 56 114 245 +1139 2025-05-14 22:09:52.475893+00 2025-05-14 22:09:52.475906+00 f t Tobi DOG \N 34.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1063 +1199 2025-05-16 17:46:11.036503+00 2025-05-16 17:46:11.036516+00 f t Yudo DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1142 +944 2025-05-07 19:06:21.401145+00 2025-05-07 19:06:21.401156+00 f t Lena DOG 1 25.00 0.00 t \N 2025-06-27 \N \N \N \N f \N 112 839 +1149 2025-05-15 12:11:36.766321+00 2025-05-15 12:11:36.76633+00 f t Isopo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1078 +1207 2025-05-16 20:29:22.432553+00 2025-05-16 20:29:22.432568+00 f t Alvin CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1149 +1230 2025-05-17 19:34:40.092211+00 2025-05-17 19:34:40.092224+00 f t Negrura DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1187 +1160 2025-05-15 16:39:39.431651+00 2025-05-15 16:39:39.43166+00 f t Coco CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1092 +1171 2025-05-15 21:06:24.401493+00 2025-05-15 21:06:24.401502+00 f t Aquiles CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1106 +1212 2025-05-17 00:43:54.107087+00 2025-05-17 00:43:54.107097+00 f t Luna CAT \N 800.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1160 +1219 2025-05-17 11:58:27.473868+00 2025-05-17 11:58:27.47388+00 f t Amor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1172 +1225 2025-05-17 14:53:56.923911+00 2025-05-17 14:53:56.923921+00 f t Olivia CAT \N 1.20 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1178 +1288 2025-05-19 09:06:06.041261+00 2025-05-19 09:06:06.041276+00 f t Pampa DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1262 +1234 2025-05-17 23:29:50.95724+00 2025-05-17 23:29:50.957249+00 f t Dafne DOG \N 1.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1197 +1246 2025-05-18 01:31:14.943903+00 2025-05-18 01:31:14.943915+00 f t OLIVER DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1208 +1252 2025-05-18 05:27:54.613298+00 2025-05-18 05:27:54.613308+00 f t Paco CAT \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1218 +1255 2025-05-18 11:36:21.481644+00 2025-05-18 11:36:21.481661+00 f t Maik DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1222 +1261 2025-05-18 14:20:49.470123+00 2025-05-18 14:20:49.470133+00 f t 1156418729 DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1231 +1273 2025-05-18 20:16:07.116991+00 2025-05-18 20:16:07.117007+00 f t Justo DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1246 +1283 2025-05-19 02:25:30.678577+00 2025-05-19 02:25:30.678591+00 f t Rayo DOG \N 3.60 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1256 +1129 2025-05-14 18:16:38.220255+00 2025-05-14 18:16:38.220263+00 f t Alma CAT 5 19.00 0.00 t \N 2025-05-16 \N \N FEMALE \N f \N 113 1042 +973 2025-05-08 22:34:59.707004+00 2025-05-08 22:34:59.707015+00 f t Len CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 863 +710 2025-03-25 00:03:54.322808+00 2025-03-25 00:03:54.322816+00 f t Kona DOG 4 16.00 0.00 t \N 2025-03-24 \N \N FEMALE \N f 61 113 608 +695 2025-03-23 21:20:33.964622+00 2025-03-23 21:20:33.964635+00 f t Jana CAT 5 0.00 0.00 t \N 2025-03-23 \N \N FEMALE Le di dos veces la pipeta pero le alivio unos días y luego volvió a rascarse. No toma ningún otro medicamento. No es agresiva pero no se deja acariciar mucho. Un poco si. No ataca y suele ser sumisa. A lo sumo se escapa. \N f 56 114 594 +989 2025-05-09 16:29:55.590824+00 2025-05-09 16:29:55.590834+00 f t Renzo DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 877 +725 2025-03-30 21:42:54.285276+00 2025-03-30 21:42:54.285283+00 f t Siza CAT 1 3.50 0.00 t \N 2025-03-30 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? No Cuál? -\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Si \N f 64 114 620 +1005 2025-05-09 22:58:55.237593+00 2025-05-09 22:58:55.237602+00 f t Len CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 895 +1019 2025-05-11 16:39:50.430484+00 2025-05-11 16:39:50.430495+00 f t Layla DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 914 +1033 2025-05-12 14:55:42.14511+00 2025-05-12 14:55:42.145119+00 f t Yamila Leibovich CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 928 +176 2024-10-30 14:13:10.035+00 2024-10-30 14:13:10.035+00 f t Orion CAT 10 5.60 0.00 t 2014-06-12 2025-07-31 \N \N MALE \N f 27 114 167 +739 2025-04-01 23:01:51.282217+00 2025-04-01 23:01:51.282226+00 f t Luna CAT 8 3.00 0.00 t \N 2025-04-03 \N \N FEMALE \N f \N 113 629 +295 2024-12-10 15:54:13.276+00 2024-12-10 15:54:13.276+00 f t Pepa CAT \N 0.00 0.00 t \N \N \N \N FEMALE \N f 27 114 74 +794 2025-04-15 19:37:47.878276+00 2025-04-15 19:37:47.878283+00 t t x CAT 4 3.00 0.00 f \N \N \N \N MALE \N f \N 111 670 +780 2025-04-14 16:46:16.651338+00 2025-04-14 16:46:16.651344+00 f t Roman CAT 6 8.00 0.00 t \N 2025-04-15 \N \N MALE si se hacen movimientos lentos y suaves el responde con tranquilidad se deja tocar , con algunas excepciones. \N f 27 111 660 +1060 2025-05-12 20:40:04.923959+00 2025-05-12 20:40:04.92397+00 f t Violeta DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 955 +303 2024-12-10 20:19:02.028+00 2024-12-10 20:19:02.028+00 f t Gato de Yanina Laura Feldman CAT \N 0.00 0.00 f \N \N \N \N MALE \N f 27 114 259 +1166 2025-05-15 18:24:51.155262+00 2025-05-15 18:24:51.155271+00 f t Ozzie CAT 1 6.60 0.00 t \N 2025-05-17 \N \N MALE \N f \N 112 1098 +810 2025-04-18 23:52:29.66867+00 2025-04-18 23:52:29.668681+00 f t coco CAT 3 0.00 0.00 t \N 2025-04-20 \N \N MALE \N f 29 113 693 +3810 2025-07-15 07:02:50.529059+00 2025-07-15 07:02:50.529069+00 f t Tarzan DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4581 +307 2024-12-12 13:48:41.872+00 2024-12-12 13:48:41.872+00 f t Mascota de Sol Barmat DOG \N 0.00 0.00 f \N \N \N \N \N No hay ningún tipo de información sobre la mascota. \N f 22 114 263 +146 2024-10-30 14:13:09.711+00 2024-10-30 14:13:09.711+00 f t Roro CAT 2 0.00 0.00 f 2022-12-02 2025-07-23 \N \N MALE \N f 27 114 139 +5956 2025-08-25 13:43:46.070217+00 2025-08-25 13:43:46.070231+00 f t Tomas DOG \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7260 +839 2025-04-23 18:48:42.135051+00 2025-04-23 18:48:42.135058+00 f t China CAT 10 0.00 0.00 t \N 2025-04-25 \N \N \N \N f \N 112 720 +6016 2025-08-26 17:58:54.082006+00 2025-08-26 17:58:54.082018+00 f t Bart CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7329 +755 2025-04-05 20:47:24.103969+00 2025-04-05 20:47:24.103975+00 f t Rufina DOG 1 7.60 0.00 t \N 2025-04-08 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días?: No\r\nCuál?\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? No \N f 10 114 548 +3853 2025-07-15 23:10:36.475345+00 2025-07-15 23:10:36.475356+00 f t Enki DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4639 +3882 2025-07-16 16:34:23.281757+00 2025-07-16 16:34:23.281769+00 f t Bernado CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4675 +1150 2025-05-15 13:50:01.278667+00 2025-05-15 13:50:01.278679+00 f t Bimbo DOG 3 0.00 0.00 f \N 2025-07-15 \N \N MALE Tomo apoquel y ahora Prednisoina \N f 7 112 1082 +959 2025-05-08 12:55:18.873849+00 2025-05-08 12:55:18.873858+00 f t TEST DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 852 +1073 2025-05-13 12:34:20.151971+00 2025-05-13 12:34:20.151981+00 f t Gorila DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 977 +321 2024-12-20 16:54:21.512+00 2024-12-20 16:54:21.512+00 f t Uma CAT 4 0.00 0.00 t 2020-01-01 2024-12-19 \N \N FEMALE UMA\r\nColorada\r\n4 años\r\nCastrada\r\nPeso no sé \N f 27 110 273 +322 2024-12-20 18:16:11.944+00 2024-12-20 18:16:11.944+00 f t Noha CAT 6 6.50 0.00 t 0001-01-01 \N \N \N MALE Noha - Cat - 6 años - 6.50 kg Macho castrado \N f 27 110 274 +1085 2025-05-13 15:46:16.347185+00 2025-05-13 15:46:16.347198+00 f t Ainhoa DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 988 +1097 2025-05-13 19:34:12.607661+00 2025-05-13 19:34:12.607671+00 f t Luna DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1001 +1108 2025-05-14 12:33:20.701342+00 2025-05-14 12:33:20.701355+00 f t Olivia DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1014 +867 2025-04-26 21:20:38.21394+00 2025-04-26 21:20:38.213947+00 f t Milagros CAT 17 2.50 0.00 t \N 2025-04-26 \N \N FEMALE \N f \N 114 743 +1130 2025-05-14 18:21:32.250912+00 2025-05-14 18:21:32.250922+00 f t T DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1043 +1140 2025-05-14 22:18:14.380407+00 2025-05-14 22:18:14.380417+00 f t Rita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1064 +1046 2025-05-12 17:58:47.405468+00 2025-05-12 17:58:47.405478+00 f t Miguel Angel DOG 6 0.00 0.00 f \N 2025-05-14 \N \N \N \N f \N 112 942 +945 2025-05-07 19:06:56.557495+00 2025-05-07 19:06:56.557501+00 f t Narinero CAT 4 5.00 0.00 t \N 2025-05-12 \N \N MALE \N f \N 112 839 +1118 2025-05-14 16:48:10.18527+00 2025-05-14 16:48:10.185284+00 f t Galo CAT \N 3.60 30.00 t \N 2012-09-15 2025-06-02 \N \N MALE \N \N f 27 \N 1009 +334 2024-12-24 00:02:00.727+00 2024-12-24 00:02:00.727+00 f t gatito CAT \N 0.00 0.00 t \N \N \N \N FEMALE \N f \N 113 282 +1161 2025-05-15 16:42:02.907516+00 2025-05-15 16:42:02.907527+00 f t Test DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1094 +1172 2025-05-15 21:15:00.843071+00 2025-05-15 21:15:00.843083+00 f t Leli DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1107 +1183 2025-05-16 09:34:21.085498+00 2025-05-16 09:34:21.085508+00 f t tinto CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1121 +1191 2025-05-16 13:09:00.76544+00 2025-05-16 13:09:00.76545+00 f t TEST AGUS DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1128 +1200 2025-05-16 17:49:07.070592+00 2025-05-16 17:49:07.070601+00 f t Tomi DOG \N 700.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1143 +1208 2025-05-16 21:11:15.879665+00 2025-05-16 21:11:15.879678+00 f t Rocco DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1152 +1213 2025-05-17 02:00:20.021013+00 2025-05-17 02:00:20.021027+00 f t Lola DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1161 +1220 2025-05-17 12:00:03.982024+00 2025-05-17 12:00:03.982039+00 f t 6 CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1173 +1226 2025-05-17 15:47:54.842915+00 2025-05-17 15:47:54.842928+00 f t Milu DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1179 +1235 2025-05-17 23:30:46.235336+00 2025-05-17 23:30:46.235345+00 f t Shaggy DOG \N 1.60 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1197 +1241 2025-05-18 00:28:44.355291+00 2025-05-18 00:28:44.355301+00 f t Adam CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1202 +1247 2025-05-18 01:47:53.198829+00 2025-05-18 01:47:53.198841+00 f t Zoe DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1210 +1253 2025-05-18 05:33:43.638949+00 2025-05-18 05:33:43.638958+00 f t Teddy DOG \N 34.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1219 +1256 2025-05-18 11:48:21.676753+00 2025-05-18 11:48:21.676768+00 f t Wil CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1223 +1262 2025-05-18 14:23:02.852713+00 2025-05-18 14:23:02.852723+00 f t Sunce CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1232 +1268 2025-05-18 17:04:53.064572+00 2025-05-18 17:04:53.064582+00 f t Albondiguita CAT 0 4.00 0.00 f \N \N \N \N FEMALE \N f \N 114 1240 +1274 2025-05-18 20:16:56.098798+00 2025-05-18 20:16:56.09881+00 f t Rocco DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1247 +276 2024-12-05 16:41:16.864+00 2024-12-05 16:41:16.864+00 f t Luna DOG 10 5.00 0.00 f 2014-12-02 \N \N \N FEMALE \N f \N 113 247 +1047 2025-05-12 17:59:27.699001+00 2025-05-12 17:59:27.699008+00 f t Maria Pancha DOG \N 0.00 0.00 f \N 2025-05-14 \N \N FEMALE \N f \N 112 942 +1289 2025-05-19 09:16:06.786191+00 2025-05-19 09:16:06.786203+00 f t Paris DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1263 +1294 2025-05-19 15:16:02.000615+00 2025-05-19 15:16:02.00063+00 f t H DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1270 +1299 2025-05-19 16:10:28.277803+00 2025-05-19 16:10:28.278902+00 f t Milo DOG \N 39.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1274 +1304 2025-05-19 17:03:35.334187+00 2025-05-19 17:03:35.3342+00 f t Tyson DOG \N 43.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1278 +1308 2025-05-19 20:14:25.707783+00 2025-05-19 20:14:25.707795+00 f t Coco DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1290 +294 2024-12-10 15:47:07.459+00 2024-12-10 15:47:07.459+00 f t Odin CAT \N 4.60 0.00 f \N 2025-05-14 \N \N MALE \N f 27 114 73 +711 2025-03-25 21:06:09.200082+00 2025-03-25 21:06:09.200089+00 t t Chofi DOG 8 27.00 0.00 t \N \N \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 dias? NO\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce?\r\nSuele asustarse por malas experiencias que hemos tenido con distintos veterinarios. Pero es buena, no muerde. solo hay q generar confianza. \N f 53 113 326 +696 2025-03-23 21:39:41.517466+00 2025-03-23 21:39:41.517472+00 f t Chandon CAT 4 6.00 0.00 t \N 2025-03-27 \N \N MALE No toma medicamento\r\nEs un poco miedoso, no es agresivo \N f \N 114 595 +740 2025-04-01 23:08:48.633901+00 2025-04-01 23:08:48.633907+00 f t luna CAT \N 0.00 0.00 f \N 2025-04-01 \N \N FEMALE \N f \N 113 630 +855 2025-04-25 19:13:23.484432+00 2025-04-25 19:13:23.484442+00 f t Truco CAT 11 8.00 0.00 t \N 2025-04-26 \N \N MALE \N f 60 112 732 +726 2025-03-30 21:46:35.633707+00 2025-03-30 21:46:35.633714+00 f t Tito DOG 16 6.00 0.00 t \N 2025-04-01 \N \N MALE no toma medicacion- docil \N f 66 114 564 +753 2025-04-05 20:35:00.278005+00 2025-04-05 20:35:00.278015+00 f t NINNA Pérez DOG 11 10.00 0.00 f \N 2025-04-05 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? no\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? \N f \N 114 640 +1006 2025-05-09 23:03:50.387249+00 2025-05-09 23:03:50.387255+00 f t Kira DOG 5 9.00 0.00 f \N 2025-05-22 \N \N FEMALE \N f 5 113 896 +354 2025-01-06 23:59:04.198+00 2025-01-06 23:59:04.198+00 f t Beto DOG \N 5.50 0.00 f 2020-04-02 \N \N \N MALE \N f \N 113 300 +2082 2025-06-07 11:11:34.045869+00 2025-06-07 11:11:34.045881+00 f t Nelson DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2295 +356 2025-01-08 13:21:50.546+00 2025-01-08 13:21:50.546+00 f t Milo CAT \N 0.00 0.00 f \N \N \N \N \N \N f 27 111 302 +2109 2025-06-07 23:10:30.169476+00 2025-06-07 23:10:30.16949+00 f t Luffy CAT \N 3.04 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2332 +781 2025-04-14 20:41:46.782759+00 2025-04-14 20:41:46.782765+00 f t Max DOG 11 0.00 0.00 t \N 2025-04-13 \N \N MALE \N f 1 112 661 +360 2025-01-09 23:42:21.502+00 2025-01-09 23:42:21.502+00 f t Rocco DOG 6 0.00 0.00 t 2019-05-01 2025-01-10 \N \N MALE \N f 10 110 304 +361 2025-01-09 23:42:42.825+00 2025-01-09 23:42:42.825+00 f t Rita DOG 7 0.00 0.00 t 2018-08-23 2025-01-10 \N \N FEMALE \N f 10 110 304 +795 2025-04-15 19:39:47.847377+00 2025-04-15 19:39:47.847385+00 f t Bissous CAT 4 3.80 0.00 f \N 2025-04-15 \N \N MALE Medicado con Pregabalina, Epinefrina, sedación B, Colocación de sonda y collar isabelino, pañales. puede estrresarse \N f 27 112 670 +337 2024-12-29 22:04:02.67+00 2024-12-29 22:04:02.67+00 f t Yuki CAT 16 3.00 0.00 f 2008-12-02 \N \N \N FEMALE \N f \N 113 284 +811 2025-04-18 23:56:03.74021+00 2025-04-18 23:56:03.740219+00 f t Baltazar CAT 6 0.00 0.00 t \N 2025-04-18 \N \N MALE \N f \N 113 694 +3811 2025-07-15 10:59:51.954941+00 2025-07-15 10:59:51.95495+00 f t Neném DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4585 +826 2025-04-21 20:08:43.478928+00 2025-04-21 20:08:43.478937+00 f t peter DOG \N 0.00 0.00 f \N 2025-04-21 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál?no\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? No \N f 10 113 709 +840 2025-04-23 18:49:04.743683+00 2025-04-23 18:49:04.743693+00 f t Manuela CAT 10 0.00 0.00 t \N \N \N \N \N \N f \N 112 720 +1279 2025-05-18 23:32:38.352384+00 2025-05-18 23:32:38.352396+00 f t Ragnar CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1253 +1141 2025-05-14 22:20:42.553647+00 2025-05-14 22:20:42.553661+00 f t Simon DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1065 +946 2025-05-07 19:07:56.789769+00 2025-05-07 19:07:56.789779+00 f t Lava CAT 3 6.00 0.00 t \N 2025-05-12 \N \N MALE \N f \N 112 839 +960 2025-05-08 13:08:43.807727+00 2025-05-08 13:08:43.80774+00 f t aa DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 853 +974 2025-05-08 22:36:18.696085+00 2025-05-08 22:36:18.696094+00 f t Len CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 864 +990 2025-05-09 16:48:02.244791+00 2025-05-09 16:48:02.244801+00 f t PRUEBA DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 878 +1263 2025-05-18 14:28:00.21082+00 2025-05-18 14:28:00.210833+00 f t Facundo DOG \N 50.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1233 +381 2025-01-15 17:35:36.151+00 2025-01-15 17:35:36.151+00 f t Rodhesia CAT \N 5.00 0.00 f \N \N \N \N MALE \N f 44 111 319 +868 2025-04-26 21:25:23.887252+00 2025-04-26 21:25:23.88726+00 f t Sakura DOG 16 15.00 0.00 t \N 2025-04-26 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? No\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? No \N f 1 114 744 +1020 2025-05-11 19:13:14.554021+00 2025-05-11 19:13:14.554028+00 f t Torni DOG \N 0.00 0.00 f \N 2025-05-10 \N \N MALE \N f 5 113 915 +385 2025-01-15 19:04:12.622+00 2025-01-15 19:04:12.622+00 f t Pepe CAT \N 0.00 0.00 t \N \N \N \N MALE \N f \N 118 322 +1034 2025-05-12 14:56:02.231022+00 2025-05-12 14:56:02.231037+00 f t RALFO CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 929 +1048 2025-05-12 18:39:04.773959+00 2025-05-12 18:39:04.773971+00 f t Jackie DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 943 +1061 2025-05-12 20:45:40.144617+00 2025-05-12 20:45:40.14463+00 f t Peter DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 956 +1295 2025-05-19 15:49:59.029676+00 2025-05-19 15:49:59.029686+00 f t Kibo CAT 0 0.00 0.00 f \N 2025-05-21 \N \N \N \N f \N 112 1271 +3850 2025-07-15 20:47:33.718822+00 2025-07-15 20:47:33.718831+00 f t Azul CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4635 +2133 2025-06-08 11:43:50.391666+00 2025-06-08 11:43:50.39168+00 f t Charlie DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2360 +2146 2025-06-08 16:15:06.135673+00 2025-06-08 16:15:06.135683+00 f t Coco DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2376 +1086 2025-05-13 15:47:50.658063+00 2025-05-13 15:47:50.658072+00 f t BRUMA DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 988 +1098 2025-05-13 22:42:24.292656+00 2025-05-13 22:42:24.292668+00 f t Cuba CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1004 +1109 2025-05-14 14:22:20.826026+00 2025-05-14 14:22:20.826036+00 f t JADE DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1017 +1119 2025-05-14 16:49:23.208559+00 2025-05-14 16:49:23.208572+00 f t Galo CAT \N 3.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1029 +1131 2025-05-14 18:30:48.087688+00 2025-05-14 18:30:48.087699+00 f t Koki DOG 15 12.00 0.00 t \N 2025-05-13 \N \N FEMALE \N f \N 113 1047 +348 2025-01-05 19:51:52.604+00 2025-01-05 19:51:52.604+00 f t Olaya CAT 10 0.00 0.00 t 2014-12-02 \N \N \N \N \N f \N 113 294 +1151 2025-05-15 14:15:45.955624+00 2025-05-15 14:15:45.95564+00 f t Buggie DOG \N 31.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1083 +1173 2025-05-15 21:15:14.241369+00 2025-05-15 21:15:14.241384+00 f t Leli CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1107 +1184 2025-05-16 09:56:28.099344+00 2025-05-16 09:56:28.099429+00 f t Simon DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1122 +1236 2025-05-17 23:31:42.856877+00 2025-05-17 23:31:42.856888+00 f t Dafne CAT \N 1.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1197 +1162 2025-05-15 17:38:06.387694+00 2025-05-15 17:38:06.387704+00 f t ProcofyI CAT 8 7.50 0.00 t \N 2025-05-15 \N \N MALE \N f \N 112 1096 +1192 2025-05-16 13:11:47.396229+00 2025-05-16 13:11:47.396242+00 f t TEST DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1129 +1201 2025-05-16 17:59:28.721873+00 2025-05-16 17:59:28.721886+00 f t Roma DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1144 +1209 2025-05-16 21:12:31.40583+00 2025-05-16 21:12:31.405843+00 f t h CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1152 +1214 2025-05-17 02:14:08.826762+00 2025-05-17 02:14:08.826771+00 f t FRAN DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1163 +1227 2025-05-17 15:53:58.767705+00 2025-05-17 15:53:58.767718+00 f t Manchita DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1180 +1242 2025-05-18 00:33:12.25204+00 2025-05-18 00:33:12.252049+00 f t Bellu DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1203 +1248 2025-05-18 02:10:32.84807+00 2025-05-18 02:10:32.848085+00 f t Pochoclo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1211 +1257 2025-05-18 12:07:31.631591+00 2025-05-18 12:07:31.631604+00 f t Olenna DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1224 +1269 2025-05-18 17:14:20.080644+00 2025-05-18 17:14:20.080657+00 f t MILO DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1241 +1275 2025-05-18 20:23:10.650506+00 2025-05-18 20:23:10.650515+00 f t Pancha DOG \N 15.00 0.00 t \N \N 2025-05-18 \N \N FEMALE \N \N f \N \N 1248 +1231 2025-05-17 21:09:47.469357+00 2025-05-17 21:09:47.469365+00 f t Leila CAT \N 3.00 0.00 t \N 2025-05-18 \N \N FEMALE \N f \N 114 1193 +1284 2025-05-19 03:01:52.902897+00 2025-05-19 03:01:52.902907+00 f t Ramses CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1257 +766 2025-04-09 15:13:30.830018+00 2025-04-09 15:13:30.830025+00 f t Reyla CAT 4 4.00 0.00 t \N 2025-04-10 \N \N FEMALE \N f 27 111 650 +1290 2025-05-19 12:40:13.331513+00 2025-05-19 12:40:13.331525+00 f t Olivia CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1266 +1305 2025-05-19 17:17:51.504273+00 2025-05-19 17:17:51.504285+00 f t Mora DOG \N 45.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1280 +1300 2025-05-19 16:43:19.7895+00 2025-05-19 16:43:19.789508+00 f t Hermes CAT 4 7.00 0.00 t \N 2025-05-20 \N \N \N \N f \N 112 1275 +856 2025-04-25 20:27:41.108705+00 2025-04-25 20:27:41.109436+00 f t Katrina DOG 16 10.00 0.00 t \N 2025-08-02 \N \N FEMALE \N f 1 111 733 +712 2025-03-25 21:13:44.093738+00 2025-03-25 21:13:44.093746+00 f t Mora DOG 10 0.00 0.00 f \N 2025-03-26 \N \N FEMALE No tomo medicamentos\r\nNo suele austarse. Lo maximo que hizo fue ladrar. \N f 2 113 609 +697 2025-03-23 21:43:06.281541+00 2025-03-23 21:43:06.281548+00 f t Paris CAT 3 4.00 0.00 t \N 2025-03-27 \N \N MALE No toma medicamento\r\nNo es nada agresiva \N f \N 114 595 +1075 2025-05-13 12:59:52.317422+00 2025-05-13 12:59:52.317433+00 f t Gorila DOG 11 40.00 0.00 f \N 2025-05-13 \N \N MALE Está tomando Artrin, 1 pastilla por día y en su momento le dimos Previcox por 3 días. Ahora empezamos con unas gotas de cbd para el estado de ánimo. \N f \N 112 979 +123 2024-10-30 14:13:09.435+00 2024-10-30 14:13:09.435+00 f t Chofi DOG 7 26.00 0.00 f 2017-12-02 2025-04-02 \N \N FEMALE \N f 53 114 118 +1110 2025-05-14 14:23:45.907555+00 2025-05-14 14:23:45.907567+00 f t Jade DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1018 +727 2025-03-30 21:49:31.980832+00 2025-03-30 21:49:31.98084+00 f t Riki DOG 12 6.00 0.00 t \N 2025-04-01 \N \N MALE no toma medicacion, docil \N f 66 114 564 +754 2025-04-05 20:43:13.125555+00 2025-04-05 20:43:13.125564+00 f t Theo CAT 0 0.00 0.00 t \N 2025-04-05 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? no\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Se asusta y se esconde pero no es agrevis \N f 27 114 333 +907 2025-05-03 23:52:45.998731+00 2025-05-03 23:52:45.998744+00 f t Magnolia CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 789 +767 2025-04-09 16:21:04.913779+00 2025-04-09 16:21:04.913789+00 f t Hana DOG 4 25.00 0.00 t \N 2025-04-12 \N \N FEMALE \N f \N 113 651 +796 2025-04-15 22:22:52.754368+00 2025-04-15 22:22:52.754378+00 f t Prueba DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 671 +812 2025-04-19 00:02:00.005464+00 2025-04-19 00:02:00.005472+00 f t Naranjita CAT 4 6.00 0.00 f \N 2025-04-18 \N \N MALE \N f \N 113 695 +3812 2025-07-15 11:12:08.805209+00 2025-07-15 11:12:08.80522+00 f t Lola CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4586 +6017 2025-08-26 17:59:56.712135+00 2025-08-26 17:59:56.712148+00 f t Lulú CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7329 +483 2025-02-03 12:07:52.687218+00 2025-02-03 12:07:52.687225+00 f t Pececito CAT \N 5.50 0.00 f 2012-01-01 2025-02-07 \N \N MALE Nombre paciente: Pececito\r\nRaza: Gato europeo\r\nEdad: 13 años\r\nPeso: 5.550\r\nSexo: Masculino\r\nCastrado o no?: Está castrado \N t 27 110 406 +893 2025-05-02 14:22:49.555166+00 2025-05-02 14:22:49.555175+00 f t Bianca CAT 7 4.00 0.00 t \N 2025-05-02 \N \N FEMALE \N f \N 112 770 +1120 2025-05-14 16:49:43.89222+00 2025-05-14 16:49:43.892228+00 f t Moretita DOG 8 23.00 0.00 t \N 2025-05-20 \N \N FEMALE \N f \N 112 1028 +1021 2025-05-11 19:16:35.173406+00 2025-05-11 19:16:35.173413+00 f t Oliver CAT 13 7.00 0.00 f \N 2025-07-29 \N \N MALE \N f \N 113 916 +841 2025-04-23 18:49:26.232188+00 2025-04-23 18:49:26.232197+00 f t Catalina CAT 10 0.00 0.00 t \N 2025-04-25 \N \N \N \N f \N 112 720 +1132 2025-05-14 18:37:56.651553+00 2025-05-14 18:37:56.651565+00 f t Kala DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1050 +441 2025-01-27 23:20:50.597931+00 2025-01-27 23:20:50.597941+00 f t Coco DOG 6 4.50 0.00 t 2019-10-06 2025-01-28 \N \N MALE Coco\r\nMestizo: mezcla de Shih Tzu con caniche\r\n6//10/2019\r\n4,5 kg aprox\r\nMacho\r\nCastrado \N f 1 110 375 +975 2025-05-08 22:36:56.775724+00 2025-05-08 22:36:56.775736+00 f t Rin CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 864 +1142 2025-05-14 22:46:46.713327+00 2025-05-14 22:46:46.71334+00 f t Pepi CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1066 +456 2025-01-30 15:33:41.276182+00 2025-01-30 15:33:41.276193+00 f t Mili CAT 5 3.00 0.00 t 2020-01-01 \N \N \N FEMALE \N f 27 111 384 +961 2025-05-08 13:57:42.844548+00 2025-05-08 13:57:42.844555+00 f t Titan DOG 14 4.00 0.00 f \N 2025-05-08 \N \N \N \N f 8 112 137 +991 2025-05-09 16:48:33.702165+00 2025-05-09 16:48:33.702175+00 f t PRUEBA DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 879 +2083 2025-06-07 11:20:15.202286+00 2025-06-07 11:20:15.202299+00 f t Nelson DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2296 +1296 2025-05-19 15:51:14.090134+00 2025-05-19 15:51:14.090143+00 f t Leon CAT 6 0.00 0.00 f \N 2025-05-21 \N \N MALE \N f \N 112 1271 +1035 2025-05-12 15:01:24.066815+00 2025-05-12 15:01:24.066825+00 f t Zira CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 931 +493 2025-02-04 14:09:37.114032+00 2025-02-04 14:09:37.114039+00 f t Milo CAT 11 4.00 0.00 f 2014-01-01 2025-02-04 \N \N MALE \N t 27 110 414 +1237 2025-05-17 23:32:06.22532+00 2025-05-17 23:32:06.22533+00 f t Shaggy CAT \N 1.60 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1197 +947 2025-05-07 19:08:36.951408+00 2025-05-07 19:08:36.951418+00 f t Tony CAT 3 6.00 0.00 t \N 2025-05-12 \N \N MALE \N f \N 112 839 +516 2025-02-09 22:34:57.118999+00 2025-02-09 22:34:57.119032+00 f t Roman CAT 4 6.00 0.00 t 2020-10-25 2025-02-11 \N \N MALE No estuvo tomando medicación y tiene precedentes de nerviosismo y errático \N f \N 114 436 +1049 2025-05-12 19:13:50.648833+00 2025-05-12 19:13:50.64884+00 f t Mara CAT \N 3.00 0.00 f \N 2025-05-12 \N \N FEMALE \N f \N 112 944 +1243 2025-05-18 00:34:33.806498+00 2025-05-18 00:34:33.80651+00 f t Cai DOG \N 33.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1204 +1062 2025-05-12 23:20:15.151774+00 2025-05-12 23:20:15.151785+00 f t Nala DOG \N 28.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 962 +2110 2025-06-07 23:40:39.506301+00 2025-06-07 23:40:39.506311+00 f t Garfield CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2333 +1087 2025-05-13 16:53:42.051521+00 2025-05-13 16:53:42.05153+00 f t loki DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 990 +1249 2025-05-18 03:19:03.294234+00 2025-05-18 03:19:03.294246+00 f t Milo DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1212 +1152 2025-05-15 14:40:01.890734+00 2025-05-15 14:40:01.891332+00 f t TEST CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1085 +1163 2025-05-15 17:38:54.410888+00 2025-05-15 17:38:54.4109+00 f t Blue DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1097 +869 2025-04-26 21:28:56.203617+00 2025-04-26 21:28:56.203625+00 f t Thor CAT 2 0.00 0.00 t \N 2025-08-17 \N \N MALE No no está tomando nada\r\nNoo no se asusta nada \N f \N 114 745 +1185 2025-05-16 10:22:43.105126+00 2025-05-16 10:22:43.105139+00 f t Nina DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1123 +1193 2025-05-16 15:44:10.278269+00 2025-05-16 15:44:10.278282+00 f t Chimuela CAT \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1135 +1202 2025-05-16 18:16:16.865969+00 2025-05-16 18:16:16.865978+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1146 +1210 2025-05-16 21:45:48.867675+00 2025-05-16 21:45:48.867684+00 f t milo CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1154 +3854 2025-07-15 23:12:03.025381+00 2025-07-15 23:12:03.025396+00 f t Enki DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4639 +1222 2025-05-17 13:47:04.54504+00 2025-05-17 13:47:04.545051+00 f t Sasha DOG \N 28.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1175 +1228 2025-05-17 16:03:49.157572+00 2025-05-17 16:03:49.157582+00 f t Manchita DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1181 +1276 2025-05-18 21:16:56.96134+00 2025-05-18 21:16:56.961356+00 f t Serena DOG \N 27.00 0.00 f \N \N 2025-05-19 \N \N FEMALE \N \N f \N \N 1249 +1258 2025-05-18 12:29:32.542688+00 2025-05-18 12:29:32.5427+00 f t Himiko CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1225 +1264 2025-05-18 14:31:06.803628+00 2025-05-18 14:31:06.803641+00 f t Facundo DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1234 +1270 2025-05-18 18:11:11.987285+00 2025-05-18 18:11:11.987297+00 f t Mia DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1242 +1280 2025-05-19 00:53:20.951489+00 2025-05-19 00:53:20.951501+00 f t Ciceron DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1254 +1285 2025-05-19 04:14:13.981924+00 2025-05-19 04:14:13.981939+00 f t Oreo CAT \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1258 +1291 2025-05-19 14:20:53.292837+00 2025-05-19 14:20:53.29285+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1267 +394 2025-01-16 20:07:48.019+00 2025-01-16 20:07:48.019+00 f t Bowie CAT 11 0.00 0.00 t 2013-12-02 \N \N \N FEMALE \N f \N 118 331 +579 2025-02-24 23:08:26.4072+00 2025-02-24 23:08:26.407209+00 f t Juana DOG 1 15.00 0.00 f 2023-12-02 2025-05-13 \N \N FEMALE No toma medicación\r\nEs asustadiza pero no se pone a la defensiva \N f \N 114 490 +3901 2025-07-16 22:28:29.693814+00 2025-07-16 22:28:29.693824+00 f t Drsco DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4700 +1007 2025-05-09 23:07:25.336324+00 2025-05-09 23:07:25.336333+00 f t UMA DOG 10 50.00 0.00 f \N 2025-05-10 \N \N FEMALE \N f 63 113 897 +782 2025-04-14 21:00:55.781294+00 2025-04-14 21:00:55.781301+00 f t Benicia CAT 6 5.00 0.00 t 2018-10-15 2025-04-21 \N \N FEMALE \N f 27 111 662 +3915 2025-07-17 12:21:32.963544+00 2025-07-17 12:21:32.963555+00 f t Kira Pedulla DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4725 +3722 2025-07-13 14:30:49.063411+00 2025-07-13 14:30:49.06342+00 f t Lola CAT 0 0.00 0.00 f \N 2025-08-04 \N \N FEMALE \N f 27 1208 4471 +1301 2025-05-19 16:43:46.751154+00 2025-05-19 16:43:46.751161+00 f t Maga CAT \N 5.00 0.00 f \N 2025-05-20 \N \N \N \N f \N 112 1275 +583 2025-02-25 16:33:04.956295+00 2025-02-25 16:33:04.956302+00 f t Coco CAT 3 5.00 0.00 f 2021-12-02 2025-03-01 \N \N MALE No tomo medicación y presenta mal caracter \N f \N 114 494 +615 2025-03-01 17:05:01.851365+00 2025-03-01 17:05:01.851397+00 f t Lucio Séneca HERMIDA LEYENDA DOG 5 5.00 0.00 t 2019-12-02 2025-03-01 \N \N MALE \N f 8 113 520 +179 2024-10-30 14:13:10.058+00 2024-10-30 14:13:10.058+00 f t Pretinha DOG 12 27.00 0.00 f 2012-12-02 2025-02-13 \N \N FEMALE \N f 1 114 170 +2084 2025-06-07 11:22:19.60356+00 2025-06-07 11:22:19.60357+00 f t Nelson DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2297 +592 2025-02-26 00:19:13.133716+00 2025-02-26 00:19:13.133726+00 f t Pepe DOG 13 30.00 0.00 f 2011-12-02 2025-02-25 \N \N \N \N f 3 113 501 +544 2025-02-16 21:46:20.726036+00 2025-02-16 21:46:20.726045+00 f t Tuli CAT 2 0.00 0.00 t 2022-12-02 2025-02-18 \N \N FEMALE No toma medicación y no tiene comportamiento erratico \N f \N 114 459 +566 2025-02-20 23:59:07.894627+00 2025-02-20 23:59:07.894637+00 f t Kratos DOG 7 50.00 0.00 f 2017-12-02 2025-02-20 \N \N MALE \N f \N 113 478 +651 2025-03-10 23:42:25.528298+00 2025-03-10 23:42:25.528306+00 f t Bruno Miranda DOG 12 8.50 0.00 t 2012-12-02 2025-03-10 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días?\r\nNo se es de la hermana Cuál?\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Puede ser \N f 8 113 554 +649 2025-03-09 21:42:21.736812+00 2025-03-09 21:42:21.736823+00 f t Tilín DOG 2 7.00 0.00 t 2022-12-02 2025-03-09 \N \N MALE Se pone a la defensiva con personas q no conoce\r\nNo tomo medicación \N f \N 114 552 +577 2025-02-23 22:37:21.143271+00 2025-02-23 22:37:21.143277+00 f t stych DOG 7 30.00 0.00 f 2017-12-02 2025-02-28 \N \N MALE No estuvo tomando medicamento\r\nSe puede estresar y se agita mucho \N f 5 114 488 +633 2025-03-04 21:42:42.823262+00 2025-03-04 21:42:42.823269+00 f t Negrito DOG 1 0.00 0.00 f 2023-12-02 2025-03-04 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? NO Cuál?\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? NO \N f 8 114 537 +614 2025-03-01 16:55:06.540076+00 2025-03-01 16:55:06.540086+00 f t CHURRO CAT 6 8.50 0.00 t 2018-12-02 2025-03-04 \N \N MALE \N f 38 113 519 +486 2025-02-03 17:06:09.453749+00 2025-02-03 17:06:09.453759+00 f t Samuel DOG 16 14.00 0.00 t 2008-12-02 2025-03-06 \N \N MALE \N f 1 111 407 +3813 2025-07-15 11:57:24.984503+00 2025-07-15 11:57:24.984515+00 f t Otto DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4588 +528 2025-02-13 22:12:48.727596+00 2025-02-13 22:12:48.727605+00 f t Narda CAT 18 4.00 0.00 t 2006-12-02 2025-02-13 \N \N FEMALE \N f \N 113 445 +37 2024-10-30 14:13:08.575+00 2024-10-30 14:13:08.575+00 f t Tito CAT 2 0.00 0.00 f 2022-12-02 2025-02-23 \N \N MALE \N f 27 114 37 +512 2025-02-08 22:14:19.985809+00 2025-02-08 22:14:19.985816+00 f t Mumo CAT 1 0.00 0.00 t 2023-12-02 2025-02-11 \N \N MALE No ingirió ninguna medicación en los últimos días y no presenta comportamiento errático ni nervioso \N f 28 114 432 +529 2025-02-13 22:19:31.994584+00 2025-02-13 22:19:31.994593+00 f t Nano DOG 18 16.00 0.00 t 2006-12-02 2025-02-13 \N \N MALE Tratamiento con \r\nTramadol \r\nVitamina\r\nPomoden tto para el corazon\r\n\r\nPx docil \N f \N 113 446 +521 2025-02-11 22:51:54.703383+00 2025-02-11 22:51:54.703389+00 f t socolinsky CAT 18 0.00 0.00 t 2006-12-02 2025-02-14 \N \N MALE \N f 29 113 428 +561 2025-02-19 23:22:18.140677+00 2025-02-19 23:22:18.140684+00 f t Papin CAT 3 4.60 0.00 t 2021-12-02 2025-02-25 \N \N MALE \N f \N 113 473 +553 2025-02-18 16:18:18.411492+00 2025-02-18 16:18:18.4115+00 f t Vito DOG 0 45.00 0.00 f 2024-12-02 2025-02-18 \N \N MALE \N f 3 114 466 +601 2025-02-27 00:17:35.79846+00 2025-02-27 00:17:35.798471+00 f t Morgan CAT 13 3.30 0.00 t 2011-12-02 2025-02-27 \N \N MALE \N f \N 113 509 +663 2025-03-13 23:44:55.544591+00 2025-03-13 23:44:55.544597+00 f t Chule DOG 10 12.00 0.00 f 2014-12-02 2025-03-13 \N \N FEMALE \N f 10 113 566 +609 2025-02-28 18:10:19.870997+00 2025-02-28 18:10:19.871008+00 f t Pucho DOG 15 12.00 0.00 f 2009-12-02 2025-02-28 \N \N MALE \N f \N 113 516 +655 2025-03-11 23:21:34.81434+00 2025-03-11 23:21:34.81435+00 f t ROCCO DOG 8 20.00 0.00 f 2016-12-02 2025-03-12 \N \N \N \N f \N 113 558 +619 2025-03-02 21:32:06.101921+00 2025-03-02 21:32:06.101932+00 f t Rauw CAT 2 5.00 0.00 t 2022-12-02 2025-03-02 \N \N MALE \N f \N 114 524 +626 2025-03-04 19:20:40.691489+00 2025-03-04 19:20:40.691498+00 f t jack DOG 15 9.00 0.00 t 2009-12-02 2025-03-02 \N \N MALE toma betahistina diclohidrato 1/2 de 8 mg.\r\nEs tranquilo de viejito \N f 65 114 531 +634 2025-03-04 21:50:55.227377+00 2025-03-04 21:50:55.227386+00 f t Kano DOG 12 36.00 0.00 t 2012-12-02 2025-03-04 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? Si. (I.U 400)\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? No \N f 3 114 538 +596 2025-02-26 15:36:35.654247+00 2025-02-26 15:36:35.654258+00 f t Chile CAT 18 2.00 0.00 t 2006-12-02 2025-03-07 \N \N FEMALE \N f 27 111 504 +675 2025-03-18 18:59:35.504833+00 2025-03-18 18:59:35.504841+00 f t Lilo CAT 1 2.00 0.00 f 2023-12-02 2025-03-16 \N \N FEMALE Lilo\r\nRaza: cruza\r\nEdad o cumpleaños: 5 meses y medio\r\nPeso aprox.: 2kg\r\nSexo: hembra\r\nCastrado: no\r\nEstá o estuvo tomando alguna medicación en los últimos 7 días? No\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? No \N f 27 110 577 +461 2025-01-30 23:24:00.722422+00 2025-01-30 23:24:00.722429+00 f t Dylan DOG 12 7.50 0.00 f 2012-12-02 2025-02-01 \N \N MALE \N f 8 113 387 +422 2025-01-22 23:55:32.14348+00 2025-01-22 23:55:32.143487+00 f t Nonno DOG 12 12.00 0.00 f 2012-12-02 2025-01-22 \N \N MALE \N f 13 113 357 +430 2025-01-25 20:53:54.023318+00 2025-01-25 20:53:54.023327+00 f t Pascual DOG 4 60.00 0.00 t 2020-12-02 2025-01-27 \N \N MALE \N f \N 114 365 +643 2025-03-08 21:01:49.288595+00 2025-03-08 21:01:49.288601+00 f t Alan CAT 13 0.00 0.00 f 2011-12-02 2025-03-11 \N \N MALE No toma medicación\r\nSi es de asustarse bastante hasta q toma confianza y puede ponerse a la defensiva \N f \N 114 546 +562 2025-02-19 23:28:28.688968+00 2025-02-19 23:28:28.688976+00 f t Docker DOG 2 0.00 0.00 t 2022-12-02 \N \N \N MALE No toma medicacion, es miedoso en la veterinaria y es amigable en el hogar \N f 5 113 474 +453 2025-01-29 23:32:05.597859+00 2025-01-29 23:32:05.597866+00 f t Gata CAT 7 4.00 0.00 t 2017-12-02 2025-01-30 \N \N \N \N f \N 113 382 +2111 2025-06-08 00:40:17.768333+00 2025-06-08 00:40:17.768343+00 f t Neron DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2336 +469 2025-02-01 21:47:52.020314+00 2025-02-01 21:47:52.020323+00 f t Emma CAT 9 4.00 0.00 t 2015-12-02 2025-02-01 \N \N FEMALE \N f \N 114 395 +538 2025-02-15 21:33:58.400424+00 2025-02-15 21:33:58.40043+00 f t Uma CAT 4 5.00 0.00 t 2020-12-02 2025-02-19 \N \N FEMALE No toma medicación\r\nSe estresa al cortarle las uñas o vacunarla \N f \N 114 455 +498 2025-02-05 14:32:11.347316+00 2025-02-05 14:32:11.347324+00 f t Danisa DOG 5 28.00 0.00 f 2019-12-02 2025-02-06 \N \N FEMALE \N t 52 111 418 +2134 2025-06-08 12:25:32.758253+00 2025-06-08 12:25:32.758263+00 f t Jupiter DOG \N 9.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2362 +93 2024-10-30 14:13:09.099+00 2024-10-30 14:13:09.099+00 f t Moretita DOG 8 20.00 0.00 t 2016-12-02 2025-02-07 \N \N FEMALE \N f 1 114 89 +612 2025-03-01 16:23:42.181687+00 2025-03-01 16:23:42.181695+00 f t Lulu CAT 8 0.00 0.00 t 2016-12-02 2025-03-01 \N \N FEMALE Si se suele poner a la defensiva \N f \N 113 359 +682 2025-03-19 13:33:13.461463+00 2025-03-19 13:33:13.46147+00 f t Naquiel DOG 10 0.00 0.00 f 2014-12-02 2025-04-03 \N \N FEMALE \N f 4 111 377 +671 2025-03-15 22:01:36.61431+00 2025-03-15 22:01:36.614316+00 f t Maltesa DOG 10 10.00 0.00 f 2014-12-02 2025-03-14 \N \N FEMALE \N f \N 114 573 +429 2025-01-25 14:34:17.473555+00 2025-01-25 14:34:17.473564+00 f t Tomás Mario Haines CAT 18 3.50 0.00 t 2006-12-02 2025-01-31 \N \N MALE \N f 29 114 364 +662 2025-03-13 21:40:36.701334+00 2025-03-13 21:40:36.70134+00 f t Suici CAT 15 0.00 0.00 t 2009-12-02 2025-03-13 \N \N MALE \N f 27 113 565 +2147 2025-06-08 16:15:39.67559+00 2025-06-08 16:15:39.675601+00 f t Lulú DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2377 +415 2025-01-22 17:10:28.895551+00 2025-01-22 17:10:28.895558+00 f t Charly CAT 6 6.00 0.00 t 2018-12-02 2025-05-26 \N \N \N \N f 27 113 353 +2157 2025-06-08 22:14:20.011546+00 2025-06-08 22:14:20.011554+00 f t Brumus DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2391 +674 2025-03-18 17:24:13.586228+00 2025-03-18 17:24:13.586235+00 f t Hannah CAT 9 5.00 0.00 t 2015-12-02 2025-06-24 \N \N FEMALE \N f 27 111 576 +3855 2025-07-16 00:04:16.104699+00 2025-07-16 00:04:16.104711+00 f t Pancho CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4640 +3883 2025-07-16 17:03:56.004995+00 2025-07-16 17:03:56.005003+00 f t Iustitia DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4678 +513 2025-02-09 22:12:45.702464+00 2025-02-09 22:12:45.702472+00 f t Lulu CAT 5 0.00 0.00 t 2019-12-02 2025-02-10 \N \N FEMALE estuvo medicada con Singestar y tiene precedendente de ser arisca \N f \N 114 433 +530 2025-02-13 22:22:13.394502+00 2025-02-13 22:22:13.394514+00 f t Diana DOG 3 0.00 0.00 f 2021-12-02 2025-02-13 \N \N \N \N f \N 113 447 +578 2025-02-24 22:55:12.052468+00 2025-02-24 22:55:12.052476+00 f t Simba CAT 7 0.00 0.00 t 2017-12-02 2025-02-24 \N \N MALE No toma medicación, es un gatito cariñoso y muy sociable \N f \N 114 489 +11801 2025-11-24 11:02:39.529143+00 2025-11-24 11:02:39.529152+00 f t Chimuelo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14315 +656 2025-03-11 23:44:38.290334+00 2025-03-11 23:44:38.29034+00 f t Julieta DOG 14 15.00 0.00 t 2010-12-02 2025-03-17 \N \N FEMALE \N f \N 113 559 +620 2025-03-02 21:48:20.322361+00 2025-03-02 21:48:20.322369+00 f t Perry DOG 12 20.00 0.00 t 2012-12-02 2025-03-02 \N \N \N No, no es tranquilo, solo salta al recibirlos \N f \N 114 525 +635 2025-03-04 21:55:13.658616+00 2025-03-04 21:55:13.658624+00 f t Satoru CAT 2 8.00 0.00 t 2022-12-02 2025-03-04 \N \N MALE \N f \N 114 539 +627 2025-03-04 19:30:45.476727+00 2025-03-04 19:30:45.476737+00 f t Kahlo DOG 0 24.00 0.00 t 2024-12-02 2025-03-03 \N \N MALE Tomó Tramadol por 3 días\r\nEs bueno, no se pone a la defensiva \N f 52 114 532 +554 2025-02-18 18:58:00.912831+00 2025-02-18 18:58:00.912839+00 f t Luly DOG 10 30.00 0.00 f 2014-12-02 2025-02-17 \N \N FEMALE \N f 3 111 467 +546 2025-02-16 21:58:39.207811+00 2025-02-16 21:58:39.207819+00 f t Frankie CAT 7 5.00 0.00 t 2017-12-02 2025-02-17 \N \N MALE \N f \N 114 461 +571 2025-02-21 19:48:59.893513+00 2025-02-21 19:48:59.89352+00 f t Lorenzo DOG 9 30.00 0.00 t 2015-12-02 2025-02-15 \N \N MALE \N t 5 111 481 +2085 2025-06-07 11:56:31.123642+00 2025-06-07 11:56:31.123652+00 f t Tito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2298 +514 2025-02-09 22:21:26.519372+00 2025-02-09 22:21:26.519379+00 f t Eva Inés Cau CAT 8 1.00 0.00 t 2016-12-02 2025-02-13 \N \N FEMALE \N f \N 114 434 +523 2025-02-12 19:30:54.268574+00 2025-02-12 19:30:54.268582+00 f t vito CAT 7 4.00 0.00 t 2017-12-02 2025-02-15 \N \N MALE \N f 27 111 441 +539 2025-02-15 21:34:37.249702+00 2025-02-15 21:34:37.249709+00 f t Romeo CAT 3 6.00 0.00 t 2021-12-02 2025-02-19 \N \N MALE No toma medicación\r\nSe estresa poco \N f \N 114 455 +555 2025-02-18 19:08:54.020465+00 2025-02-18 19:08:54.020473+00 f t Allison CAT 3 4.00 0.00 t 2021-12-02 2025-02-21 \N \N FEMALE \N f 27 111 468 +603 2025-02-27 00:25:08.180947+00 2025-02-27 00:25:08.180957+00 f t Landa CAT 17 0.00 0.00 t 2007-12-02 2025-02-27 \N \N FEMALE \N f \N 113 511 +2112 2025-06-08 00:42:38.298167+00 2025-06-08 00:42:38.298177+00 f t Toto DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2337 +611 2025-03-01 16:20:24.771856+00 2025-03-01 16:20:24.771865+00 f t Agatha CAT 1 0.00 0.00 f 2023-12-02 2025-03-03 \N \N FEMALE \N f \N 113 518 +684 2025-03-19 19:58:27.238313+00 2025-03-19 19:58:27.238322+00 f t Mila DOG 1 0.00 0.00 f 2023-12-02 \N \N \N FEMALE \N f 1 110 583 +636 2025-03-05 23:27:44.693931+00 2025-03-05 23:27:44.69394+00 f t Lima CAT 2 6.00 0.00 t 2022-12-02 2025-03-05 \N \N FEMALE \N f \N 113 540 +587 2025-02-25 19:25:40.343729+00 2025-02-25 19:25:40.343735+00 f t Preciosa CAT 8 8.00 0.00 t 2016-12-02 2025-03-06 \N \N FEMALE No toma medicación\r\nNo es agresiva \N f 64 114 497 +595 2025-02-26 15:21:04.233718+00 2025-02-26 15:21:04.233728+00 f t Alú CAT 10 3.00 0.00 t 2014-12-02 2025-03-10 \N \N FEMALE \N f 27 111 503 +657 2025-03-11 23:49:01.701609+00 2025-03-11 23:49:01.701619+00 f t TOFI DOG 10 5.70 0.00 t 2014-12-02 2025-03-11 \N \N FEMALE \N f \N 113 560 +650 2025-03-10 23:27:47.159751+00 2025-03-10 23:27:47.159759+00 f t Koko DOG 16 22.00 0.00 t 2008-12-02 2025-03-09 \N \N MALE - Toma un medicamento llamado Artrin, uno por día\r\n- No suele ser violento con las personas, solo ladra mucho \N f 1 113 553 +665 2025-03-13 23:52:23.342191+00 2025-03-13 23:52:23.342199+00 f t Lupe CAT 7 4.00 0.00 t 2017-12-02 2025-03-14 \N \N FEMALE \N f 27 113 568 +3814 2025-07-15 12:31:23.842934+00 2025-07-15 12:31:23.842943+00 f t Htg DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4589 +364 2025-01-10 18:55:42.067+00 2025-01-10 18:55:42.067+00 f t BRISEIDA CAT 10 0.00 0.00 t 2014-12-02 2025-01-08 \N \N \N \N f 27 113 307 +580 2025-02-24 23:13:49.500018+00 2025-02-24 23:13:49.50003+00 f t Twenty CAT 13 0.00 0.00 f 2011-12-02 2025-02-24 \N \N FEMALE \N f \N 114 491 +417 2025-01-22 17:49:14.911087+00 2025-01-22 17:49:14.911097+00 f t Tecla CAT 7 6.00 0.00 t 2017-12-02 2025-01-24 \N \N FEMALE \N f \N 114 354 +480 2025-02-02 20:52:56.739589+00 2025-02-02 20:52:56.739595+00 f t Ginger CAT 8 4.00 0.00 t 2016-12-02 2025-02-06 \N \N FEMALE \N f 27 114 405 +432 2025-01-26 17:45:38.939956+00 2025-01-26 17:45:38.939966+00 f t Tato DOG 12 30.00 0.00 f 2012-12-02 2025-01-26 \N \N MALE \N f 3 114 367 +448 2025-01-28 21:12:23.374546+00 2025-01-28 21:12:23.374557+00 f t Luna DOG 19 10.00 0.00 f 2005-12-02 2025-01-29 \N \N FEMALE \N f \N 114 378 +524 2025-02-12 21:21:19.530757+00 2025-02-12 21:21:19.530764+00 f t Dash DOG 2 5.00 0.00 f 2022-12-02 2025-02-13 \N \N \N \N f 10 113 442 +463 2025-01-30 23:31:12.945672+00 2025-01-30 23:31:12.945685+00 f t Kuki DOG 2 0.00 0.00 f 2022-12-02 2025-01-31 \N \N FEMALE \N f \N 113 389 +540 2025-02-15 21:46:05.637186+00 2025-02-15 21:46:05.637198+00 f t Nelson DOG 12 30.00 0.00 f 2012-12-02 2025-02-15 \N \N MALE Mestizo de mamá pitbull papá labrador\r\nNo es de asustarse ni ser agresivo\r\nSe le dio comprimido de Loperamida \N f \N 114 456 +499 2025-02-05 20:10:35.256137+00 2025-02-05 20:10:35.256144+00 f t olivia DOG 8 30.00 0.00 f 2016-12-02 2025-02-05 \N \N \N Temperamento inestable: asustadiza, ladra(Dueña tiene bozal) \N t \N 114 419 +507 2025-02-07 20:58:23.087913+00 2025-02-07 20:58:23.08792+00 f t Coquii DOG 15 0.00 0.00 f 2009-12-02 2024-02-07 \N \N MALE \N f 8 113 427 +490 2025-02-03 21:55:43.428132+00 2025-02-03 21:55:43.42814+00 f t Cata CAT 3 0.00 0.00 t 2021-12-02 2025-02-03 \N \N FEMALE \N f \N 113 411 +471 2025-02-01 22:07:34.323292+00 2025-02-01 22:07:34.323299+00 f t Souki CAT 9 4.00 0.00 t 2015-12-02 2025-02-01 \N \N MALE \N f 29 114 397 +515 2025-02-09 22:27:01.960731+00 2025-02-09 22:27:01.960739+00 f t Aretha DOG 10 0.00 0.00 f 2014-12-02 2025-02-09 \N \N FEMALE Estuvo tomando Dexaflox \N f \N 114 435 +5957 2025-08-25 14:02:08.716289+00 2025-08-25 14:02:08.716296+00 f t Farinato CAT \N 4.00 0.00 t es alergico a varias cosas \N \N \N \N MALE \N f 27 1208 6907 +573 2025-02-21 20:36:43.406523+00 2025-02-21 20:36:43.406533+00 f t Moka DOG 11 50.00 0.00 f 2013-12-02 2025-02-21 \N \N FEMALE No toma medicación\r\nY si puede ponerse en alerta \N f 2 114 483 +556 2025-02-18 20:36:26.808901+00 2025-02-18 20:36:26.808907+00 f t Misha CAT 4 5.50 0.00 t 2020-12-02 2025-02-19 \N \N FEMALE Por los parasitos, le dimos 1/4 de Aprax Razas Grandes que nos recetó una veterinaria antes y nos quedaban pastillas\r\nSi puede asustarse y ponerse a la defensiva con gente que no conoce \N f \N 114 469 +424 2025-01-23 13:15:44.233913+00 2025-01-23 13:15:44.233923+00 f t Negro DOG 15 5.00 0.00 f 2009-12-02 \N \N \N MALE \N t 1 113 359 +489 2025-02-03 21:15:51.6111+00 2025-02-03 21:15:51.611108+00 f t Dote DOG 14 30.00 0.00 t 2010-12-02 2025-02-18 \N \N MALE mentizo cruza con dogo argentino \N f 1 113 410 +683 2025-03-19 14:46:13.059573+00 2025-03-19 14:46:13.059585+00 f t Tucho Alejandro CAT 9 7.00 0.00 t 2015-12-02 2025-03-22 \N \N MALE Sí, se asusta muchísimo, pero no es agresivo\r\n1 \N f 27 111 582 +548 2025-02-17 15:56:37.040621+00 2025-02-17 15:56:37.04063+00 f t Luna DOG 8 5.00 0.00 f 2016-12-02 2025-05-28 \N \N FEMALE \N f 1 111 462 +677 2025-03-18 19:19:55.418988+00 2025-03-18 19:19:55.418995+00 f t Lupin CAT 7 35.00 0.00 f 2017-12-02 2025-03-16 \N \N MALE Lupin\r\nMestizo\r\n7 años\r\n35 kg aproximadamente.\r\nMacho\r\nNo está castrado\r\nNo tomo ninguna medicación\r\nSe asusta pero no ataca \N f 27 110 579 +664 2025-03-13 23:48:08.755344+00 2025-03-13 23:48:08.755353+00 f t Filipo Alexander CAT 15 9.00 0.00 t 2009-12-02 2025-03-14 \N \N MALE \N f 27 113 567 +797 2025-04-16 12:33:20.580082+00 2025-04-16 12:33:20.580095+00 f t Prueba CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 674 +842 2025-04-23 20:41:31.458579+00 2025-04-23 20:41:31.458589+00 f t Colo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 721 +908 2025-05-04 15:54:44.654437+00 2025-05-04 15:54:44.654447+00 f t Negrita DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 791 +3856 2025-07-16 00:20:30.69955+00 2025-07-16 00:20:30.699561+00 f t Sasha DOG \N 28.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4642 +976 2025-05-08 22:47:57.137879+00 2025-05-08 22:47:57.137891+00 f t Len CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 865 +992 2025-05-09 16:51:26.733521+00 2025-05-09 16:51:26.733534+00 f t PRUEBA DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 880 +586 2025-02-25 18:57:17.1701+00 2025-02-25 18:57:17.170108+00 f t Uma CAT 8 4.00 0.00 t 2016-12-02 2025-05-26 \N \N FEMALE No medicación\r\nSi, se estresa y se esconde \N f 30 114 496 +622 2025-03-02 22:06:32.951578+00 2025-03-02 22:06:32.951589+00 f t Chuva DOG 11 30.00 0.00 t 2013-12-02 2025-03-02 \N \N FEMALE Diazepam de 10mg, Contal 60.\r\nEs un amor, nunca reacciono con los veterinarios. \N f 1 114 527 +629 2025-03-04 21:15:27.060051+00 2025-03-04 21:15:27.060061+00 f t JoJo CAT 2 3.50 0.00 t 2022-12-02 2025-03-03 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? : NO\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? : No es probable \N f \N 114 534 +318 2024-12-17 18:49:13.889+00 2024-12-17 18:49:13.889+00 f t Galilei CAT 1 3.50 0.00 t 2023-12-02 2025-03-05 2024-12-18 2024-12-18 MALE Galilei\r\nGato vomun\r\n1 año\r\nCastrado\r\n3.5kg \N f 27 110 270 +588 2025-02-25 19:26:24.015452+00 2025-02-25 19:26:24.01546+00 f t Venus CAT 6 6.00 0.00 t 2018-12-02 2025-03-06 \N \N FEMALE No toma medicación No es agresiva \N f 27 114 497 +658 2025-03-13 21:20:47.92455+00 2025-03-13 21:20:47.924557+00 f t Morita DOG 16 300.00 0.00 f 2008-12-02 2025-03-12 \N \N FEMALE Si se estresa \N f \N 113 561 +666 2025-03-13 23:52:55.437169+00 2025-03-13 23:52:55.437176+00 f t Rita CAT 6 3.20 0.00 t 2018-12-02 2025-03-14 \N \N FEMALE \N f 27 113 568 +31 2024-10-30 14:13:08.507+00 2024-10-30 14:13:08.507+00 f t Sinatra CAT 9 0.00 0.00 t 2015-12-02 \N \N \N MALE \N f 27 114 31 +33 2024-10-30 14:13:08.529+00 2024-10-30 14:13:08.529+00 f t Perro de Miguel Cieri DOG 10 0.00 0.00 f 2014-12-02 \N \N \N MALE \N f 22 114 33 +36 2024-10-30 14:13:08.562+00 2024-10-30 14:13:08.562+00 f t Azafrán CAT 7 3.00 0.00 f 2017-12-02 \N \N \N MALE \N f 29 114 36 +38 2024-10-30 14:13:08.587+00 2024-10-30 14:13:08.587+00 f t Lio DOG 10 0.00 0.00 f 2014-12-02 \N \N \N MALE \N f 23 114 38 +39 2024-10-30 14:13:08.603+00 2024-10-30 14:13:08.603+00 f t Santino DOG 8 0.00 0.00 f 2016-12-02 \N \N \N MALE \N f 23 114 38 +40 2024-10-30 14:13:08.61+00 2024-10-30 14:13:08.61+00 f t Perro de Mariano Rebord DOG 14 0.00 0.00 f 2010-12-02 \N \N \N FEMALE \N f 3 114 39 +41 2024-10-30 14:13:08.616+00 2024-10-30 14:13:08.616+00 f t Pepa CAT 2 0.00 0.00 t 2022-12-02 \N \N \N FEMALE \N f 27 114 40 +42 2024-10-30 14:13:08.629+00 2024-10-30 14:13:08.629+00 f t Melba DOG 12 0.00 0.00 f 2012-12-02 \N \N \N FEMALE \N f 3 114 41 +43 2024-10-30 14:13:08.641+00 2024-10-30 14:13:08.641+00 f t Gato de Sofía Acosta CAT 8 0.00 0.00 f 2016-12-02 \N \N \N FEMALE \N f 27 114 42 +44 2024-10-30 14:13:08.653+00 2024-10-30 14:13:08.653+00 f t Perro de Hugo Aldo Marcial DOG 16 0.00 0.00 f 2008-12-02 \N \N \N MALE \N f 1 114 43 +45 2024-10-30 14:13:08.666+00 2024-10-30 14:13:08.666+00 f t Benito CAT 10 0.00 0.00 f 2014-12-02 \N \N \N MALE \N f 27 114 44 +47 2024-10-30 14:13:08.691+00 2024-10-30 14:13:08.691+00 f t Humma DOG 17 0.00 0.00 f 2007-12-02 2024-07-16 \N \N FEMALE \N f 1 114 46 +2086 2025-06-07 12:13:57.220988+00 2025-06-07 12:13:57.220997+00 f t Anya DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2300 +52 2024-10-30 14:13:08.755+00 2024-10-30 14:13:08.755+00 f t Akira DOG 13 0.00 0.00 f 2011-12-02 \N \N \N FEMALE \N f 4 114 51 +59 2024-10-30 14:13:08.824+00 2024-10-30 14:13:08.824+00 f t Perro de Ana Niño DOG 2 0.00 0.00 f 2022-12-02 \N \N \N MALE \N f 8 114 58 +61 2024-10-30 14:13:08.838+00 2024-10-30 14:13:08.838+00 f t Johnny DOG 1 0.00 0.00 f 2023-12-02 \N \N \N MALE En agosto tiene un año y medio \N f 1 114 60 +63 2024-10-30 14:13:08.856+00 2024-10-30 14:13:08.856+00 f t Apolo DOG 3 0.00 0.00 f 2021-12-02 \N \N \N MALE \N f 1 114 62 +68 2024-10-30 14:13:08.903+00 2024-10-30 14:13:08.903+00 f t Cala CAT 6 0.00 0.00 f 2018-12-02 \N \N \N FEMALE \N f 27 114 67 +70 2024-10-30 14:13:08.915+00 2024-10-30 14:13:08.915+00 f t Sofy DOG 10 0.00 0.00 f 2014-12-02 \N \N \N FEMALE \N f 54 114 68 +71 2024-10-30 14:13:08.921+00 2024-10-30 14:13:08.921+00 f t Pepón CAT 2 6.00 0.00 f 2022-12-02 \N \N \N MALE \N f 27 114 69 +72 2024-10-30 14:13:08.927+00 2024-10-30 14:13:08.927+00 f t Cornelia CAT 5 0.00 0.00 f 2019-12-02 \N \N \N FEMALE \N f 27 114 70 +79 2024-10-30 14:13:08.98+00 2024-10-30 14:13:08.98+00 f t Rolo DOG 7 0.00 0.00 f 2017-12-02 \N \N \N MALE \N f 1 114 77 +80 2024-10-30 14:13:08.993+00 2024-10-30 14:13:08.993+00 f t Bonnuit CAT 12 0.00 0.00 f 2012-12-02 \N \N \N MALE \N f 27 114 78 +81 2024-10-30 14:13:09.006+00 2024-10-30 14:13:09.006+00 f t Sombra CAT 15 6.00 0.00 t 2009-12-02 \N \N \N MALE \N f 27 114 79 +82 2024-10-30 14:13:09.018+00 2024-10-30 14:13:09.018+00 f t Tato DOG 4 0.00 0.00 f 2020-12-02 \N \N \N MALE \N f 8 114 80 +83 2024-10-30 14:13:09.025+00 2024-10-30 14:13:09.025+00 f t Perro de Martín Jang DOG 10 3.00 0.00 f 2014-12-02 \N \N \N FEMALE \N f 25 114 81 +84 2024-10-30 14:13:09.032+00 2024-10-30 14:13:09.032+00 f t Mambo DOG 14 0.00 0.00 t 2010-12-02 \N \N \N MALE \N f 21 114 82 +94 2024-10-30 14:13:09.106+00 2024-10-30 14:13:09.106+00 f t Pocho DOG 12 0.00 0.00 f 2012-12-02 \N \N \N MALE \N f 1 114 90 +96 2024-10-30 14:13:09.146+00 2024-10-30 14:13:09.146+00 f t Batan DOG 5 0.00 0.00 f 2019-12-02 \N \N \N MALE \N f 1 114 92 +97 2024-10-30 14:13:09.152+00 2024-10-30 14:13:09.152+00 f t Olivia CAT 2 0.00 0.00 f 2022-12-02 \N \N \N FEMALE \N f 27 114 93 +98 2024-10-30 14:13:09.164+00 2024-10-30 14:13:09.164+00 f t Julio CAT 4 6.00 0.00 t 2020-12-02 \N \N \N MALE \N f 27 114 94 +100 2024-10-30 14:13:09.182+00 2024-10-30 14:13:09.182+00 f t Franela DOG 11 35.00 0.00 f 2013-12-02 \N \N \N FEMALE \N f 4 114 96 +101 2024-10-30 14:13:09.194+00 2024-10-30 14:13:09.194+00 f t Mili CAT 12 0.00 0.00 f 2012-12-02 \N \N \N FEMALE \N f 27 114 97 +102 2024-10-30 14:13:09.207+00 2024-10-30 14:13:09.207+00 f t Nina CAT 4 0.00 0.00 t 2020-12-02 \N \N \N FEMALE \N f 42 114 98 +103 2024-10-30 14:13:09.219+00 2024-10-30 14:13:09.219+00 f t Toki CAT 6 7.00 0.00 f 2018-12-02 \N \N \N FEMALE \N f 27 114 99 +104 2024-10-30 14:13:09.235+00 2024-10-30 14:13:09.235+00 f t Fideo CAT 3 0.00 0.00 f 2021-12-02 \N \N \N MALE \N f 27 114 100 +105 2024-10-30 14:13:09.247+00 2024-10-30 14:13:09.247+00 f t Milagro CAT 4 10.00 0.00 t 2020-12-02 \N \N \N FEMALE \N f 27 114 101 +106 2024-10-30 14:13:09.258+00 2024-10-30 14:13:09.258+00 f t Channel CAT 3 0.00 0.00 f 2021-12-02 \N \N \N FEMALE \N f 27 114 102 +107 2024-10-30 14:13:09.27+00 2024-10-30 14:13:09.27+00 f t Naranja CAT 0 0.00 0.00 f 2024-12-02 \N \N \N MALE En septiembre tiene 3 meses \N f 36 114 103 +109 2024-10-30 14:13:09.293+00 2024-10-30 14:13:09.293+00 f t Tinto CAT 6 0.00 0.00 f 2018-12-02 \N \N \N MALE \N f 27 114 105 +111 2024-10-30 14:13:09.317+00 2024-10-30 14:13:09.317+00 f t Charly CAT 13 0.00 0.00 f 2011-12-02 \N \N \N MALE \N f 27 114 107 +113 2024-10-30 14:13:09.338+00 2024-10-30 14:13:09.338+00 f t Clara CAT 5 0.00 0.00 f 2019-12-02 \N \N \N FEMALE \N f 27 114 108 +117 2024-10-30 14:13:09.374+00 2024-10-30 14:13:09.374+00 f t Isadora CAT 5 0.00 0.00 f 2019-12-02 \N \N \N FEMALE \N f 27 114 112 +118 2024-10-30 14:13:09.38+00 2024-10-30 14:13:09.38+00 f t Alfonsina de Mar Luna DOG 11 15.00 0.00 f 2013-12-02 \N \N \N FEMALE \N f 27 114 113 +119 2024-10-30 14:13:09.386+00 2024-10-30 14:13:09.386+00 f t Joe DOG 11 22.00 0.00 f 2013-12-02 \N \N \N MALE \N f 1 114 114 +120 2024-10-30 14:13:09.398+00 2024-10-30 14:13:09.398+00 f t Agatha CAT 4 0.00 0.00 f 2020-12-02 \N \N \N FEMALE \N f 27 114 115 +121 2024-10-30 14:13:09.41+00 2024-10-30 14:13:09.41+00 f t Mafalda CAT 9 8.00 0.00 f 2015-12-02 \N \N \N FEMALE \N f 27 114 116 +122 2024-10-30 14:13:09.422+00 2024-10-30 14:13:09.422+00 f t Rocco DOG 15 5.00 0.00 f 2009-12-02 \N \N \N MALE \N f 1 114 117 +5958 2025-08-25 14:03:58.580109+00 2025-08-25 14:03:58.580119+00 f t Emily DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7262 +124 2024-10-30 14:13:09.451+00 2024-10-30 14:13:09.451+00 f t Simona CAT 4 2.00 0.00 f 2020-12-02 \N \N \N FEMALE \N f 27 114 119 +125 2024-10-30 14:13:09.458+00 2024-10-30 14:13:09.458+00 f t Nina DOG 11 27.00 0.00 f 2013-12-02 \N \N \N FEMALE \N f 1 114 120 +115 2024-10-30 14:13:09.362+00 2024-10-30 14:13:09.362+00 f t Peperina CAT 14 0.00 0.00 f 2010-12-02 2025-04-09 \N \N FEMALE \N f 27 114 110 +977 2025-05-08 22:48:25.845853+00 2025-05-08 22:48:25.845864+00 f t Rin CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 865 +993 2025-05-09 16:57:19.707634+00 2025-05-09 16:57:19.707643+00 f t PRUEBA DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 881 +127 2024-10-30 14:13:09.477+00 2024-10-30 14:13:09.477+00 f t Duco DOG 13 35.00 0.00 f 2011-12-02 \N \N \N MALE \N f 1 114 122 +129 2024-10-30 14:13:09.494+00 2024-10-30 14:13:09.494+00 f t Emma CAT 8 4.00 0.00 f 2016-12-02 \N \N \N FEMALE \N f 27 114 124 +130 2024-10-30 14:13:09.506+00 2024-10-30 14:13:09.506+00 f t Thor DOG 7 0.00 0.00 f 2017-12-02 \N \N \N MALE \N f \N 114 125 +131 2024-10-30 14:13:09.512+00 2024-10-30 14:13:09.512+00 f t Agatha CAT 9 7.00 0.00 f 2015-12-02 \N \N \N FEMALE \N f 27 114 126 +133 2024-10-30 14:13:09.547+00 2024-10-30 14:13:09.547+00 f t Kira CAT 16 0.00 0.00 f 2008-12-02 \N \N \N FEMALE \N f 27 114 127 +134 2024-10-30 14:13:09.559+00 2024-10-30 14:13:09.559+00 f t Logan DOG 11 36.00 0.00 f 2013-12-02 \N \N \N MALE \N f 1 114 128 +135 2024-10-30 14:13:09.57+00 2024-10-30 14:13:09.57+00 f t Clodomira CAT 16 3.40 0.00 f 2008-12-02 \N \N \N FEMALE \N f 27 114 129 +136 2024-10-30 14:13:09.587+00 2024-10-30 14:13:09.587+00 f t Pochoclo CAT 4 4.50 0.00 f 2020-12-02 \N \N \N MALE \N f 27 114 130 +137 2024-10-30 14:13:09.599+00 2024-10-30 14:13:09.599+00 f t Minerva CAT 2 5.00 0.00 f 2022-12-02 \N \N \N FEMALE \N f 27 114 131 +138 2024-10-30 14:13:09.605+00 2024-10-30 14:13:09.605+00 f t Zanguango CAT 8 4.00 0.00 f 2016-12-02 \N \N \N MALE \N f 27 114 132 +140 2024-10-30 14:13:09.638+00 2024-10-30 14:13:09.638+00 f t Lara DOG 14 20.00 0.00 f 2010-12-02 \N \N \N FEMALE \N f 1 114 133 +141 2024-10-30 14:13:09.649+00 2024-10-30 14:13:09.649+00 f t Axel CAT 13 4.00 0.00 f 2011-12-02 \N \N \N MALE \N f 27 114 134 +142 2024-10-30 14:13:09.661+00 2024-10-30 14:13:09.661+00 f t Rango CAT 5 7.00 0.00 t 2019-12-02 \N \N \N MALE \N f 27 114 135 +143 2024-10-30 14:13:09.673+00 2024-10-30 14:13:09.673+00 f t Lupita CAT 3 4.00 0.00 f 2021-12-02 2024-10-01 \N \N FEMALE \N f 27 \N 136 +144 2024-10-30 14:13:09.685+00 2024-10-30 14:13:09.685+00 f t Popeye DOG 14 5.00 0.00 f 2010-12-02 \N \N \N MALE Cremación \N f 8 114 137 +145 2024-10-30 14:13:09.695+00 2024-10-30 14:13:09.695+00 f t Tomy CAT 16 4.00 0.00 f 2008-12-02 \N \N \N MALE \N f 36 114 138 +147 2024-10-30 14:13:09.717+00 2024-10-30 14:13:09.717+00 f t Sally DOG 2 6.00 0.00 f 2022-12-02 \N \N \N FEMALE \N f 1 114 140 +148 2024-10-30 14:13:09.729+00 2024-10-30 14:13:09.73+00 f t Paco DOG 5 7.00 0.00 f 2019-12-02 \N \N \N MALE \N f \N 114 141 +149 2024-10-30 14:13:09.741+00 2024-10-30 14:13:09.741+00 f t Kiwi DOG 3 18.00 0.00 f 2021-12-02 \N \N \N FEMALE \N f 1 114 142 +151 2024-10-30 14:13:09.76+00 2024-10-30 14:13:09.76+00 f t Homero CAT 18 5.00 0.00 f 2006-12-02 \N \N \N MALE \N f 27 114 144 +152 2024-10-30 14:13:09.771+00 2024-10-30 14:13:09.771+00 f t Lupo CAT 19 3.00 0.00 f 2005-12-02 \N \N \N MALE \N f 27 114 144 +153 2024-10-30 14:13:09.783+00 2024-10-30 14:13:09.783+00 f t Gato de Marcela Gleiser CAT 6 0.00 0.00 f 2018-12-02 \N \N \N FEMALE \N f 27 114 145 +154 2024-10-30 14:13:09.79+00 2024-10-30 14:13:09.79+00 f t Chimuelo CAT 7 4.50 0.00 f 2017-12-02 \N \N \N MALE \N f 27 114 146 +2087 2025-06-07 12:51:17.517895+00 2025-06-07 12:51:17.517906+00 f t Kaira DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2303 +481 2025-02-02 20:53:22.261015+00 2025-02-02 20:53:22.261023+00 f t Billy CAT 8 5.00 0.00 t 2016-12-02 2025-02-06 \N \N MALE \N f \N 114 405 +132 2024-10-30 14:13:09.524+00 2024-10-30 14:13:09.524+00 f t Joaquín CAT 0 0.00 0.00 f 2024-12-02 2025-01-22 \N \N MALE \N f 27 113 115 +150 2024-10-30 14:13:09.753+00 2024-10-30 14:13:09.753+00 f t India DOG 12 30.00 0.00 f 2012-12-02 2025-01-24 \N \N FEMALE \N f 58 114 143 +613 2025-03-01 16:24:08.838889+00 2025-03-01 16:24:08.838904+00 f t Frida CAT 5 0.00 0.00 t 2019-12-02 \N \N \N FEMALE \N f \N 113 359 +156 2024-10-30 14:13:09.809+00 2024-10-30 14:13:09.809+00 f t Delfos DOG 0 8.00 0.00 f 2024-12-02 \N \N \N MALE En octubre tiene 2 meses \N f 16 114 148 +157 2024-10-30 14:13:09.814+00 2024-10-30 14:13:09.814+00 f t Gina Prianti DOG 5 17.00 0.00 f 2019-12-02 \N \N \N FEMALE \N f 15 114 91 +158 2024-10-30 14:13:09.832+00 2024-10-30 14:13:09.832+00 f t Kala CAT 6 7.00 0.00 f 2018-12-02 \N \N \N FEMALE \N f 27 114 149 +159 2024-10-30 14:13:09.838+00 2024-10-30 14:13:09.838+00 f t Simona DOG 8 20.00 0.00 f 2016-12-02 \N \N \N FEMALE \N f 1 114 150 +160 2024-10-30 14:13:09.844+00 2024-10-30 14:13:09.844+00 f t Nerita CAT 4 3.00 0.00 f 2020-12-02 \N \N \N FEMALE \N f 27 114 151 +161 2024-10-30 14:13:09.857+00 2024-10-30 14:13:09.857+00 f t Leif DOG 6 30.00 0.00 f 2018-12-02 \N \N \N MALE \N f 1 114 152 +162 2024-10-30 14:13:09.864+00 2024-10-30 14:13:09.864+00 f t Tito CAT 2 5.00 0.00 f 2022-12-02 \N \N \N MALE \N f 27 114 153 +163 2024-10-30 14:13:09.876+00 2024-10-30 14:13:09.876+00 f t Emma CAT 13 2.60 0.00 f 2011-12-02 \N \N \N FEMALE \N f 27 114 154 +164 2024-10-30 14:13:09.897+00 2024-10-30 14:13:09.897+00 f t Roy DOG 12 25.00 0.00 f 2012-12-02 \N \N \N MALE \N f 1 114 155 +165 2024-10-30 14:13:09.909+00 2024-10-30 14:13:09.909+00 f t Mora DOG 13 30.00 0.00 f 2011-12-02 \N \N \N FEMALE \N f 2 114 156 +166 2024-10-30 14:13:09.922+00 2024-10-30 14:13:09.922+00 f t Locky DOG 3 20.00 0.00 f 2021-12-02 \N \N \N MALE \N f 53 114 157 +167 2024-10-30 14:13:09.937+00 2024-10-30 14:13:09.937+00 f t Vera CAT 4 4.50 0.00 f 2020-12-02 \N \N \N FEMALE \N f 27 114 158 +168 2024-10-30 14:13:09.949+00 2024-10-30 14:13:09.949+00 f t Medusa CAT 6 0.00 0.00 f 2018-12-02 \N \N \N FEMALE \N f 27 114 159 +170 2024-10-30 14:13:09.974+00 2024-10-30 14:13:09.974+00 f t Dali CAT 8 7.50 0.00 t 2016-12-02 \N \N \N MALE \N f 27 114 161 +172 2024-10-30 14:13:09.992+00 2024-10-30 14:13:09.992+00 f t Bibi CAT 0 0.00 0.00 f 2024-12-02 \N \N \N MALE En octubre tiene 3 meses \N f 27 114 163 +173 2024-10-30 14:13:10.005+00 2024-10-30 14:13:10.005+00 f t Ocho CAT 17 4.20 0.00 f 2007-12-02 \N \N \N MALE \N f 27 114 164 +2113 2025-06-08 00:52:15.070684+00 2025-06-08 00:52:15.070694+00 f t Dona DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2338 +178 2024-10-30 14:13:10.052+00 2024-10-30 14:13:10.052+00 f t Denise CAT 5 5.00 0.00 f 2019-12-02 \N \N \N FEMALE \N f 27 114 169 +180 2024-10-30 14:13:10.081+00 2024-10-30 14:13:10.081+00 f t Beto DOG 5 30.00 0.00 f 2019-12-02 \N \N \N MALE \N f 52 114 171 +181 2024-10-30 14:13:10.105+00 2024-10-30 14:13:10.105+00 f t Bruno DOG 3 10.00 0.00 f 2021-12-02 \N \N \N MALE \N f 5 \N 172 +183 2024-10-31 23:19:08.437+00 2024-10-31 23:19:08.437+00 f t Molly DOG 10 40.00 0.00 f 2014-12-02 \N \N \N FEMALE Perrita con artrosis en la pata derecha. \N f 3 114 174 +184 2024-11-01 22:33:57.67+00 2024-11-01 22:33:57.67+00 f t Rocco DOG 10 45.00 0.00 f 2014-12-02 \N \N \N MALE \N f 19 114 175 +185 2024-11-01 22:41:01.591+00 2024-11-01 22:41:01.591+00 f t Omally CAT 5 6.00 0.00 f 2019-12-02 \N \N 2024-11-01 MALE \N f 31 114 176 +188 2024-11-04 23:02:30.199+00 2024-11-04 23:02:30.199+00 f t Edinson CAT 1 0.00 0.00 f 2023-12-02 \N \N \N MALE En noviembre 2024 tiene aproximadamente 8 meses \N f 27 114 180 +189 2024-11-04 23:20:20.264+00 2024-11-04 23:20:20.264+00 f t Juca DOG 1 10.00 0.00 f 2023-12-02 \N \N \N MALE \N f 8 114 181 +8500 2025-10-08 00:11:18.702164+00 2025-10-08 00:11:18.702176+00 f t Kitti CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10240 +192 2024-11-05 18:24:44.257+00 2024-11-05 18:24:44.257+00 f t Felipe CAT 14 0.00 0.00 f 2010-12-02 \N \N \N MALE \N f 27 114 184 +193 2024-11-05 20:17:03.149+00 2024-11-05 20:17:03.149+00 f t Melody CAT 12 5.00 0.00 f 2012-12-02 \N \N \N FEMALE \N f 27 114 185 +195 2024-11-06 19:43:54.437+00 2024-11-06 19:43:54.437+00 f t Zaira CAT 1 0.00 0.00 f 2023-12-02 \N \N \N FEMALE En noviembre tenía un mes y medio \N f 27 114 115 +196 2024-11-07 18:06:55.139+00 2024-11-07 18:06:55.139+00 f t Ayra CAT 10 0.00 0.00 f 2014-12-02 2024-11-07 \N \N FEMALE Su ultimo control fue por orinar con sangre \N f 27 114 186 +8522 2025-10-08 12:26:31.556905+00 2025-10-08 12:26:31.556914+00 f t Escarlei DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10267 +198 2024-11-10 18:39:58.8+00 2024-11-10 18:39:58.8+00 f t Luna CAT 9 4.00 0.00 t 2015-12-02 \N \N \N FEMALE Es una gata muy difícil de manipular, agresiva y asustadiza. \N f 27 114 188 +199 2024-11-10 21:17:50.844+00 2024-11-10 21:17:50.844+00 f t Coca DOG 12 0.00 0.00 f 2012-12-02 2024-11-08 \N \N MALE \N f 8 114 189 +197 2024-11-08 15:34:08.146+00 2024-11-08 15:34:08.146+00 f t Chase DOG 1 22.00 0.00 f 2023-12-02 2025-04-16 \N \N MALE \N f 48 113 187 +200 2024-11-12 19:00:43.582+00 2024-11-12 19:00:43.582+00 f t LEV CAT 4 5.00 0.00 f 2020-12-02 \N \N \N FEMALE Castrado \N f 36 113 190 +201 2024-11-12 19:41:52.321+00 2024-11-12 19:41:52.321+00 f t Manuela CAT 7 0.00 0.00 t 2017-12-02 \N \N \N FEMALE \N f 27 114 191 +202 2024-11-12 19:42:15.08+00 2024-11-12 19:42:15.08+00 f t Astrix CAT 5 0.00 0.00 t 2019-12-02 \N \N \N FEMALE \N f 27 114 191 +203 2024-11-12 19:57:33.673+00 2024-11-12 19:57:33.674+00 f t Misha CAT 20 0.00 0.00 t 2004-12-02 \N \N \N FEMALE \N f 27 114 192 +204 2024-11-13 13:38:10.523+00 2024-11-13 13:38:10.523+00 f t Lali CAT 4 0.00 0.00 f 2020-12-02 \N \N \N FEMALE \N f 49 114 193 +206 2024-11-13 22:31:21.761+00 2024-11-13 22:31:21.761+00 f t Box CAT 1 4.00 0.00 t 2023-12-02 \N \N \N FEMALE \N f 27 114 195 +207 2024-11-13 22:32:06.608+00 2024-11-13 22:32:06.608+00 f t Sand CAT 1 5.00 0.00 t 2023-12-02 \N \N \N MALE \N f 27 114 195 +208 2024-11-14 22:34:11.281+00 2024-11-14 22:34:11.281+00 f t Pandora CAT 2 3.00 0.00 t 2022-12-02 \N \N \N FEMALE \N f 36 114 196 +209 2024-11-14 23:21:54.533+00 2024-11-14 23:21:54.533+00 f t Negro DOG 8 10.00 0.00 f 2016-12-02 \N \N \N MALE Sin castrar \N f 1 114 197 +210 2024-11-14 23:22:17.067+00 2024-11-14 23:22:17.067+00 f t Shula DOG 12 20.00 0.00 f 2012-12-02 \N \N \N FEMALE Sin castrar \N f 1 114 197 +212 2024-11-15 20:49:22.28+00 2024-11-15 20:49:22.28+00 f t Pancho DOG 8 17.00 0.00 t 2016-12-02 \N \N \N MALE \N f 1 114 199 +213 2024-11-16 00:37:31.067+00 2024-11-16 00:37:31.067+00 f t Azul CAT 0 800.00 0.00 f 2024-12-02 \N \N \N FEMALE En noviembre 2024 tiene 3 meses \N f 27 114 200 +214 2024-11-16 00:37:56.669+00 2024-11-16 00:37:56.669+00 f t Dulce CAT 0 800.00 0.00 f 2024-12-02 \N \N \N FEMALE En noviembre 2024 tiene 3 meses \N f 27 114 200 +5959 2025-08-25 14:36:43.593846+00 2025-08-25 14:36:43.593858+00 f t Kitty CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7263 +175 2024-10-30 14:13:10.023+00 2024-10-30 14:13:10.023+00 f t Laila CAT 15 13.00 0.00 f 2009-12-02 2024-10-28 \N \N FEMALE \N f 27 114 166 +205 2024-11-13 22:23:03.853+00 2024-11-13 22:23:03.853+00 f t Chimuelo CAT 2 5.50 0.00 t 2022-12-02 2024-11-14 \N \N MALE Castrado \N f 27 110 194 +211 2024-11-15 00:30:45.408+00 2024-11-15 00:30:45.408+00 f t Bonita CAT 17 4.00 0.00 t 2007-12-02 2025-01-29 \N \N FEMALE \N f 27 114 198 +194 2024-11-06 13:58:01.944+00 2024-11-06 13:58:01.944+00 f t Lola DOG 13 45.00 0.00 f 2011-12-02 2025-01-24 \N \N FEMALE \N f 3 110 177 +565 2025-02-20 23:55:20.756665+00 2025-02-20 23:55:20.756672+00 f t Bomnbom DOG 7 0.00 0.00 f 2017-12-02 2025-02-20 \N \N FEMALE \N f 8 113 477 +482 2025-02-02 20:53:58.77762+00 2025-02-02 20:53:58.777627+00 f t Lola DOG 12 25.00 0.00 t 2012-12-02 2025-02-06 \N \N FEMALE \N f \N 114 405 +216 2024-11-16 18:52:44.676+00 2024-11-16 18:52:44.676+00 f t Anouk DOG 10 12.00 0.00 f 2014-12-02 \N \N \N FEMALE No esta castrada \N f 1 114 202 +217 2024-11-16 21:46:38.702+00 2024-11-16 21:46:38.702+00 f t Hera DOG 4 39.00 0.00 t Tratamiento por alergia generalizada con caida del pelo. Ella come alimento Eukanuba raza mediana adulto. 2020-12-02 \N \N \N FEMALE \N f 50 114 203 +218 2024-11-17 16:13:05.17+00 2024-11-17 16:13:05.17+00 f t Pancho CAT 1 0.00 0.00 f 2023-12-02 2024-11-17 \N \N MALE EL 17/11/2024 tiene 2 meses \N f 33 114 204 +219 2024-11-17 22:07:16.931+00 2024-11-17 22:07:16.931+00 f t Piryky CAT 1 2.50 0.00 f 2023-12-02 \N \N \N MALE \N f 27 114 205 +220 2024-11-19 20:00:15.747+00 2024-11-19 20:00:15.747+00 f t Garfield CAT 14 6.00 0.00 t 2010-12-02 \N \N \N MALE \N f 27 114 206 +221 2024-11-19 20:00:37.464+00 2024-11-19 20:00:37.464+00 f t Gea CAT 8 3.00 0.00 t 2016-12-02 \N \N \N FEMALE \N f 27 114 206 +222 2024-11-19 20:01:04.654+00 2024-11-19 20:01:04.654+00 f t Palta CAT 1 2.50 0.00 t 2023-12-02 \N \N \N FEMALE \N f 27 114 206 +223 2024-11-19 20:01:57.83+00 2024-11-19 20:01:57.83+00 f t Perlita CAT 1 6.00 0.00 t 2023-12-02 \N \N \N FEMALE Px oncologica(Leucemia) \N f 27 114 206 +2088 2025-06-07 13:32:44.781746+00 2025-06-07 13:32:44.781759+00 f t Emma DOG \N 28.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2306 +225 2024-11-19 20:07:16.77+00 2024-11-19 20:07:16.77+00 f t Ñoqui DOG 10 700.00 0.00 f 2014-12-02 \N \N \N FEMALE Caniche microtoy\r\nRescatada de maltrato, llegó a casa escondida en un bolsillo, desnutrida , pelada, aterrada. Tiene muy mal los dientitos. \N f 8 114 207 +226 2024-11-19 23:59:51.591+00 2024-11-19 23:59:51.591+00 f t Tomi CAT 15 2.00 0.00 f 2009-12-02 \N \N \N MALE Px con tumoracion \N f 27 114 208 +228 2024-11-20 18:53:01.549+00 2024-11-20 18:53:01.549+00 f t Sienna CAT 6 4.50 0.00 t 2018-12-02 \N \N \N FEMALE \N f 27 114 210 +229 2024-11-20 18:57:34.669+00 2024-11-20 18:57:34.669+00 f t Oliver CAT 5 5.00 0.00 t 2019-12-02 \N \N \N MALE \N f 27 114 210 +230 2024-11-20 18:58:42.799+00 2024-11-20 18:58:42.799+00 f t Coco CAT 2 5.70 0.00 t 2022-12-02 \N \N \N MALE \N f 27 114 210 +231 2024-11-20 23:41:39.656+00 2024-11-20 23:41:39.656+00 f t Tito CAT 3 0.00 0.00 t 2021-12-02 \N \N \N MALE \N f 27 114 211 +232 2024-11-22 16:15:20.677+00 2024-11-22 16:15:20.677+00 f t Dimitri CAT 7 9.00 0.00 t 2017-12-02 \N \N \N MALE \N f 27 111 212 +233 2024-11-22 22:55:33.378+00 2024-11-22 22:55:33.378+00 f t Tula CAT 0 0.00 0.00 t 2024-12-02 \N \N \N FEMALE En noviembre tiene 8 meses. \N f 27 114 213 +234 2024-11-22 23:01:43.825+00 2024-11-22 23:01:43.825+00 f t Wally CAT 12 5.00 0.00 t 2012-12-02 \N \N \N MALE \N f 27 114 214 +235 2024-11-22 23:07:42.85+00 2024-11-22 23:07:42.85+00 f t Macacha CAT 4 3.00 0.00 t 2020-12-02 \N \N \N \N \N f 27 113 215 +236 2024-11-22 23:08:28.951+00 2024-11-22 23:08:28.951+00 f t Martin Miguel CAT 4 3.00 0.00 t 2020-12-02 \N \N \N MALE \N f 27 114 215 +238 2024-11-23 21:05:48.621+00 2024-11-23 21:05:48.621+00 f t Juanca DOG 8 15.00 0.00 f 2016-12-02 \N \N \N MALE \N f 5 114 217 +240 2024-11-26 17:27:33.213+00 2024-11-26 17:27:33.213+00 f t Fitzzy CAT 6 6.00 0.00 t 2018-12-02 \N \N \N MALE \N f 27 114 219 +242 2024-11-28 15:07:35.736+00 2024-11-28 15:07:35.736+00 f t Tom Cruise CAT 9 5.00 0.00 t 2015-12-02 \N \N \N MALE \N f 27 111 221 +243 2024-11-29 15:17:00.938+00 2024-11-29 15:17:00.938+00 f t Pancho CAT 1 1.00 0.00 f 2023-12-02 2024-11-29 \N \N MALE \N f 27 114 223 +244 2024-12-02 18:00:20.948+00 2024-12-02 18:00:20.948+00 f t Milo CAT 2 5.00 0.00 f 2022-12-02 2024-11-08 \N \N MALE \N f 27 114 224 +245 2024-12-02 18:14:03.982+00 2024-12-02 18:14:03.982+00 f t Toribia CAT 10 0.00 0.00 t 2014-12-02 2024-11-08 \N \N FEMALE \N f 27 114 225 +248 2024-12-02 20:59:27.567+00 2024-12-02 20:59:27.567+00 f t Madalena CAT 5 7.00 0.00 t 2019-12-02 \N \N \N FEMALE \N f 27 114 228 +249 2024-12-02 20:59:54.262+00 2024-12-02 20:59:54.262+00 f t Maradona CAT 2 6.00 0.00 t 2022-12-02 \N \N \N MALE \N f 27 114 228 +253 2024-12-02 21:38:21.826+00 2024-12-02 21:38:21.826+00 f t Horus CAT 2 4.00 0.00 t 2022-12-02 \N \N \N MALE \N f 36 113 232 +254 2024-12-03 19:27:09.254+00 2024-12-03 19:27:09.254+00 f t Dandy CAT 8 4.50 0.00 t 2016-12-02 \N \N \N MALE \N f 27 114 233 +255 2024-12-03 19:43:19.819+00 2024-12-03 19:43:19.819+00 f t Polo DOG 12 26.00 0.00 t 2012-12-02 \N \N \N MALE \N f 54 114 234 +256 2024-12-03 20:28:16.486+00 2024-12-03 20:28:16.486+00 f t Freya CAT 2 4.70 0.00 t 2022-12-02 \N \N \N FEMALE \N f 27 114 235 +257 2024-12-03 20:28:48.987+00 2024-12-03 20:28:48.987+00 f t Arwen CAT 2 4.50 0.00 t 2022-12-02 \N \N \N FEMALE \N f 27 114 235 +265 2024-12-04 18:14:49.684+00 2024-12-04 18:14:49.684+00 f t Apolo DOG 8 28.50 0.00 f 2016-12-02 \N \N \N MALE \N f 1 114 237 +266 2024-12-04 20:07:44.723+00 2024-12-04 20:07:44.723+00 f t Estrella DOG 14 19.00 0.00 t 2010-12-02 \N \N \N FEMALE \N f 1 110 238 +267 2024-12-04 23:28:18.902+00 2024-12-04 23:28:18.902+00 f t Kiwi CAT 6 10.00 0.00 t 2018-12-02 \N \N \N FEMALE \N f 36 114 239 +215 2024-11-16 00:42:57.865+00 2024-11-16 00:42:57.865+00 f t Morita DOG 5 5.50 0.00 t 2019-12-02 2025-04-30 \N \N FEMALE \N f 8 114 201 +2114 2025-06-08 01:00:51.341188+00 2025-06-08 01:00:51.3412+00 f t Pancha DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2334 +2135 2025-06-08 12:36:25.549112+00 2025-06-08 12:36:25.549125+00 f t Prue DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2363 +2148 2025-06-08 18:37:50.627768+00 2025-06-08 18:37:50.627777+00 f t Lila DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2380 +269 2024-12-05 13:54:26.971+00 2024-12-05 13:54:26.971+00 f t Asia Morgana CAT 4 3.00 0.00 t 2020-12-02 \N \N \N FEMALE \N f 27 111 241 +270 2024-12-05 14:24:03.942+00 2024-12-05 14:24:03.942+00 f t Homero DOG 14 50.00 0.00 t 2010-12-02 \N \N \N MALE \N f 2 114 242 +271 2024-12-05 14:28:19.618+00 2024-12-05 14:28:19.618+00 f t Canela CAT 7 5.50 0.00 t 2017-12-02 \N \N \N FEMALE \N f 27 114 243 +272 2024-12-05 14:40:45.664+00 2024-12-05 14:40:45.664+00 f t Leia DOG 11 13.00 0.00 f 2013-12-02 \N \N \N FEMALE \N f 1 111 244 +274 2024-12-05 16:09:53.546+00 2024-12-05 16:09:53.546+00 f t Sakira DOG 1 15.00 0.00 f 2023-12-02 \N \N \N FEMALE En noviembre Sakira tiene ocho meses \N f 1 114 246 +275 2024-12-05 16:40:57.366+00 2024-12-05 16:40:57.366+00 f t Tomy Nicolas DOG 4 10.00 0.00 t 2020-12-02 \N \N \N MALE \N f \N 113 247 +263 2024-12-03 21:10:27.689+00 2024-12-03 21:10:27.689+00 f t Cristobal CAT 5 0.00 0.00 f 2019-12-02 2024-11-27 \N \N MALE \N f 27 114 222 +262 2024-12-03 21:09:53.608+00 2024-12-03 21:09:53.608+00 f t Gollum CAT 6 0.00 0.00 f 2018-12-02 2024-11-27 \N \N MALE \N f 27 114 222 +261 2024-12-03 21:09:32.977+00 2024-12-03 21:09:32.977+00 f t Polo DOG 3 0.00 0.00 f 2021-12-02 2024-11-27 \N \N MALE \N f 14 114 222 +264 2024-12-03 21:10:50.394+00 2024-12-03 21:10:50.394+00 f t Alaska CAT 2 0.00 0.00 f 2022-12-02 2024-11-27 \N \N FEMALE \N f 27 114 222 +259 2024-12-03 21:04:59.427+00 2024-12-03 21:04:59.427+00 f t Pedro DOG 13 0.00 0.00 f 2011-12-02 2024-11-27 \N \N MALE \N f 23 114 222 +251 2024-12-02 21:17:43.281+00 2024-12-02 21:17:43.281+00 f t Coco DOG 8 25.00 0.00 t 2016-12-02 2024-12-11 \N \N FEMALE \N f 1 114 230 +491 2025-02-04 00:23:36.349995+00 2025-02-04 00:23:36.350002+00 f t Chiquita DOG 14 0.00 0.00 f 2010-12-02 2025-02-04 \N \N \N \N t \N 113 412 +246 2024-12-02 18:41:52.767+00 2024-12-02 18:41:52.767+00 f t Chase DOG 1 20.00 0.00 f 2023-12-02 2025-02-15 \N \N MALE \N f 48 114 346 +279 2024-12-06 16:18:48.945+00 2024-12-06 16:18:48.945+00 f t Nix CAT 6 5.00 0.00 t 2018-12-02 \N \N \N FEMALE \N f 60 111 248 +280 2024-12-09 16:02:21.764+00 2024-12-09 16:02:21.764+00 f t xiaohua CAT 4 0.00 0.00 t 2020-12-02 \N \N \N MALE \N f 27 113 249 +281 2024-12-09 16:06:20.026+00 2024-12-09 16:06:20.026+00 f t Simon CAT 8 6.00 0.00 t 2016-12-02 \N \N \N MALE \N f 27 113 250 +282 2024-12-09 16:15:45.996+00 2024-12-09 16:15:45.996+00 f t Leo DOG 2 9.00 0.00 t 2022-12-02 \N \N \N MALE \N f 14 113 251 +283 2024-12-09 16:28:27.56+00 2024-12-09 16:28:27.56+00 f t Mily CAT 5 5.00 0.00 f 2019-12-02 \N \N \N FEMALE \N f 27 114 169 +284 2024-12-09 17:33:44.779+00 2024-12-09 17:33:44.779+00 f t Dante CAT 4 6.00 0.00 t 2020-12-02 \N \N \N MALE \N f 27 114 94 +286 2024-12-09 19:36:58.168+00 2024-12-09 19:36:58.168+00 f t Anibal CAT 5 8.00 0.00 f 2019-12-02 \N \N \N MALE \N f 27 114 124 +287 2024-12-09 19:38:07.632+00 2024-12-09 19:38:07.632+00 f t Thea CAT 2 3.50 0.00 f 2022-12-02 \N \N \N FEMALE \N f 27 110 252 +288 2024-12-10 13:09:59.158+00 2024-12-10 13:09:59.158+00 f t Moncho DOG 3 0.00 0.00 f 2021-12-02 \N \N \N MALE \N f 1 111 253 +289 2024-12-10 14:36:13.085+00 2024-12-10 14:36:13.085+00 f t Maga CAT 4 0.00 0.00 f 2020-12-02 \N \N \N FEMALE \N f 27 114 67 +290 2024-12-10 14:50:06.454+00 2024-12-10 14:50:06.454+00 f t Thor DOG 3 0.00 0.00 f 2021-12-02 \N \N \N MALE \N f 8 114 68 +291 2024-12-10 14:50:43.15+00 2024-12-10 14:50:43.15+00 f t Lalo DOG 10 17.00 0.00 f 2014-12-02 \N \N \N MALE \N f 61 111 254 +292 2024-12-10 15:11:25.011+00 2024-12-10 15:11:25.011+00 f t Yoko CAT 2 5.00 0.00 t 2022-12-02 \N \N \N FEMALE \N f 27 110 255 +293 2024-12-10 15:46:17.602+00 2024-12-10 15:46:17.602+00 f t Blues CAT 7 8.00 0.00 f 2017-12-02 \N \N \N MALE \N f 60 110 256 +296 2024-12-10 17:10:23.925+00 2024-12-10 17:10:23.925+00 f t Calder DOG 8 0.00 0.00 t 2016-12-02 \N \N \N MALE \N f 8 114 82 +297 2024-12-10 17:10:44.201+00 2024-12-10 17:10:44.201+00 f t Julio CAT 5 0.00 0.00 t 2019-12-02 \N \N \N MALE \N f 27 114 82 +298 2024-12-10 17:11:02.677+00 2024-12-10 17:11:02.677+00 f t Romea CAT 2 0.00 0.00 t 2022-12-02 \N \N \N FEMALE \N f 27 114 82 +299 2024-12-10 18:46:34.397+00 2024-12-10 18:46:34.397+00 f t Nala DOG 12 0.00 0.00 f 2012-12-02 \N \N \N FEMALE Falleció \N f 8 114 257 +300 2024-12-10 19:26:37.998+00 2024-12-10 19:26:37.998+00 f t Aleli CAT 6 0.00 0.00 f 2018-12-02 \N \N \N MALE \N f 27 114 258 +301 2024-12-10 19:42:07.584+00 2024-12-10 19:42:07.584+00 f t OB CAT 8 0.00 0.00 t 2016-12-02 \N \N \N FEMALE \N f 27 114 40 +302 2024-12-10 20:12:03.831+00 2024-12-10 20:12:03.831+00 f t Tiler CAT 2 0.00 0.00 f 2022-12-02 \N \N \N MALE \N f 27 114 47 +304 2024-12-11 14:12:25.387+00 2024-12-11 14:12:25.387+00 f t Litten CAT 2 2.00 0.00 t 2022-12-02 2024-12-11 \N \N MALE \N f 27 110 261 +305 2024-12-11 23:07:10.236+00 2024-12-11 23:07:10.236+00 f t Oliva CAT 1 2.50 0.00 t 2023-12-02 \N \N \N FEMALE \N f 36 113 262 +306 2024-12-11 23:07:46.68+00 2024-12-11 23:07:46.68+00 f t Kyra CAT 3 4.00 0.00 t 2021-12-02 \N \N \N FEMALE \N f 36 113 262 +310 2024-12-14 21:54:32.5+00 2024-12-14 21:54:32.5+00 f t Gala CAT 20 2.00 0.00 t 2004-12-02 2024-12-14 \N \N FEMALE \N f 29 110 267 +311 2024-12-16 23:28:42.574+00 2024-12-16 23:28:42.574+00 f t Snatch DOG 9 27.00 0.00 f 2015-12-02 \N \N \N FEMALE \N f 2 110 268 +2089 2025-06-07 13:59:06.834387+00 2025-06-07 13:59:06.834395+00 f t Cara CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2308 +314 2024-12-17 18:47:32.163+00 2024-12-17 18:47:32.163+00 f t Gideon CAT 11 4.50 0.00 t 2013-12-02 2024-12-18 2024-12-18 2024-12-18 MALE Gideon\r\nGato comun\r\n11 años\r\n4.5 kg\r\nCastrado \N f 27 110 270 +315 2024-12-17 18:47:57.145+00 2024-12-17 18:47:57.145+00 f t Garcilazo CAT 8 6.00 0.00 t 2016-12-02 2024-12-18 2024-12-18 2024-12-18 MALE Garcilazo\r\nGato comun\r\n8 años\r\n6kg\r\nCastrado \N f 27 110 270 +316 2024-12-17 18:48:20.292+00 2024-12-17 18:48:20.292+00 f t Goldmundo CAT 8 6.00 0.00 f 2016-12-02 2024-12-18 2024-12-18 2024-12-18 MALE Goldmundo\r\nGato comun\r\n8 años\r\n6kg \N f 27 110 270 +317 2024-12-17 18:48:53.46+00 2024-12-17 18:48:53.46+00 f t Galileo CAT 1 3.50 0.00 t 2023-12-02 2024-12-18 2024-12-18 2024-12-18 MALE Galileo\r\nCastrado gato comun\r\n1 año\r\n3.5kg \N f 27 110 270 +319 2024-12-18 14:15:18.375+00 2024-12-18 14:15:18.375+00 f t Luna DOG 4 13.00 0.00 t 2020-12-02 \N \N \N FEMALE \N f 5 111 271 +3815 2025-07-15 12:42:52.880812+00 2025-07-15 12:42:52.880822+00 f t Emma DOG \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4591 +323 2024-12-20 18:30:33.725+00 2024-12-20 18:30:33.725+00 f t Mia CAT 6 6.70 0.00 t 2018-12-02 2024-12-21 \N \N FEMALE Mia - Cat - 5 años - 6.70 kg Hembra castrada \N f 27 110 274 +324 2024-12-20 19:01:33.923+00 2024-12-20 19:01:33.923+00 f t Jimi CAT 10 4.50 0.00 t 2014-12-02 2024-12-21 \N \N MALE Nombre paciente: Jimi\r\nRaza: Común europeo\r\nEdad: 10 años\r\nPeso: 4,5 k\r\nCastrado o no? Si. Castrado. \N f 27 110 275 +326 2024-12-21 17:22:23.922+00 2024-12-21 17:22:23.922+00 f t Lola DOG 4 8.00 0.00 t 2020-12-02 \N \N \N \N \N f 1 113 276 +327 2024-12-21 17:45:28.515+00 2024-12-21 17:45:28.515+00 f t Poroto CAT 2 0.00 0.00 t 2022-12-02 \N \N \N FEMALE \N f \N 113 277 +328 2024-12-21 17:45:58.198+00 2024-12-21 17:45:58.198+00 f t Bruno CAT 2 0.00 0.00 t 2022-12-02 \N \N \N MALE \N f \N 113 277 +329 2024-12-21 17:46:19.456+00 2024-12-21 17:46:19.456+00 f t Kyra CAT 5 0.00 0.00 t 2019-12-02 \N \N \N FEMALE \N f \N 113 277 +330 2024-12-22 18:43:32.384+00 2024-12-22 18:43:32.384+00 f t Iron CAT 2 4.50 0.00 t 2022-12-02 \N \N \N MALE \N f 27 114 278 +331 2024-12-22 19:39:15.247+00 2024-12-22 19:39:15.247+00 f t Stark DOG 5 37.00 0.00 f 2019-12-02 2024-12-23 \N \N MALE \N f 3 110 279 +332 2024-12-23 16:21:51.592+00 2024-12-23 16:21:51.592+00 f t Gloria DOG 13 12.00 0.00 f 2011-12-02 \N \N \N FEMALE \N f 1 111 280 +333 2024-12-23 23:58:51.036+00 2024-12-23 23:58:51.036+00 f t Ramona CAT 16 0.00 0.00 t 2008-12-02 \N \N \N \N \N f \N 113 281 +336 2024-12-26 15:10:07.413+00 2024-12-26 15:10:07.413+00 f t Jose DOG 13 34.00 0.00 f 2011-12-02 \N \N \N MALE \N f 2 111 283 +277 2024-12-06 16:17:14.706+00 2024-12-06 16:17:14.706+00 f t Pandora CAT 2 4.00 0.00 t 2022-12-02 2024-12-19 \N \N FEMALE \N f 60 111 248 +278 2024-12-06 16:18:26.795+00 2024-12-06 16:18:26.795+00 f t Manshula CAT 3 4.00 0.00 t 2021-12-02 2024-12-19 \N \N FEMALE \N f 60 111 248 +3857 2025-07-16 00:21:15.893098+00 2025-07-16 00:21:15.893107+00 f t WOODY DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4643 +325 2024-12-21 17:21:24.749+00 2024-12-21 17:21:24.749+00 f t Lupe DOG 6 10.00 0.00 t 2018-12-02 2024-12-21 \N \N FEMALE \N f \N 113 276 +526 2025-02-12 21:40:24.969293+00 2025-02-12 21:40:24.969302+00 f t Nala CAT 3 6.00 0.00 t 2021-12-02 2025-02-20 \N \N FEMALE \N f \N 113 443 +2090 2025-06-07 14:17:31.071338+00 2025-06-07 14:17:31.071346+00 f t Donatello DOG \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2310 +309 2024-12-12 17:07:55.182+00 2024-12-12 17:07:55.182+00 f t Apolo CAT 4 7.00 0.00 f 2020-12-02 2025-03-12 \N \N MALE \N f 27 111 265 +338 2024-12-30 16:37:35.791+00 2024-12-30 16:37:35.791+00 f t Bebé CAT 12 4.00 0.00 t 2012-12-02 \N \N \N MALE \N f 27 111 285 +339 2024-12-30 16:38:02.969+00 2024-12-30 16:38:02.969+00 f t Celina CAT 1 3.00 0.00 t 2023-12-02 \N \N \N FEMALE \N f 27 111 285 +341 2024-12-31 14:08:04.373+00 2024-12-31 14:08:04.373+00 f t Michi CAT 11 4.00 0.00 t 2013-12-02 \N \N \N MALE \N f 27 111 287 +343 2025-01-03 14:02:10.455+00 2025-01-03 14:02:10.455+00 f t Artemis Carabajal CAT 3 3.00 0.00 f 2021-12-02 \N \N \N FEMALE \N f 27 111 289 +344 2025-01-03 15:37:36.898+00 2025-01-03 15:37:36.898+00 f t Lisa CAT 12 5.00 0.00 t 2012-12-02 \N \N \N FEMALE \N f 29 111 290 +349 2025-01-05 19:57:09.872+00 2025-01-05 19:57:09.872+00 f t Salomon DOG 3 25.00 0.00 f 2021-12-02 \N \N \N MALE \N f \N 113 295 +350 2025-01-05 20:00:47.29+00 2025-01-05 20:00:47.29+00 f t Cassius DOG 12 39.00 0.00 t 2012-12-02 \N \N \N MALE \N f 3 113 296 +351 2025-01-05 20:06:23.388+00 2025-01-05 20:06:23.388+00 f t Atenea CAT 6 5.00 0.00 t 2018-12-02 \N \N \N FEMALE \N f \N 113 297 +352 2025-01-05 20:10:52.861+00 2025-01-05 20:10:52.861+00 f t Sami CAT 1 0.00 0.00 f 2023-12-02 \N \N \N FEMALE Tuvo 8 cachorros \N f \N 113 298 +5960 2025-08-25 14:43:49.036355+00 2025-08-25 14:43:49.036368+00 f t Merlot CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7265 +357 2025-01-09 15:54:21.37+00 2025-01-09 15:54:21.37+00 f t Mayonesa CAT 13 10.00 0.00 t 2011-12-02 \N \N \N MALE \N f 27 111 303 +358 2025-01-09 15:54:56.349+00 2025-01-09 15:54:56.349+00 f t Mercredi CAT 10 7.50 0.00 t 2014-12-02 \N \N \N MALE \N f 27 111 303 +359 2025-01-09 15:55:29.346+00 2025-01-09 15:55:29.346+00 f t Bobi CAT 8 4.00 0.00 t 2016-12-02 \N \N \N MALE \N f 27 111 303 +362 2025-01-09 23:49:12.318+00 2025-01-09 23:49:12.318+00 f t Megan DOG 4 25.00 0.00 t 2020-12-02 \N \N \N \N \N f \N 113 305 +363 2025-01-10 18:52:20.185+00 2025-01-10 18:52:20.185+00 f t Simon DOG 1 20.00 0.00 t 2023-12-02 \N \N \N \N \N f 15 113 306 +365 2025-01-10 19:11:52.482+00 2025-01-10 19:11:52.482+00 f t Marte CAT 7 5.00 0.00 t 2017-12-02 \N \N \N \N \N f \N 113 308 +366 2025-01-10 19:28:11.228+00 2025-01-10 19:28:11.228+00 f t Boris DOG 1 23.00 0.00 f 2023-12-02 \N \N \N MALE \N f \N 113 309 +367 2025-01-13 19:29:35.241+00 2025-01-13 19:29:35.241+00 f t Kitty CAT 9 3.00 0.00 t 2015-12-02 2025-01-13 \N \N FEMALE Kitty (hembra)\r\nGata atigrada\r\n9 años\r\n3 kg aprox\r\nCastrada \N f 27 110 310 +368 2025-01-13 19:30:08.932+00 2025-01-13 19:30:08.932+00 f t Coco CAT 10 4.00 0.00 t 2014-12-02 2025-01-13 \N \N MALE Coco (macho)\r\ntipo Angola\r\n10 años\r\n3 ó 4 kg\r\nCastrado \N f 42 110 310 +369 2025-01-13 19:50:13.298+00 2025-01-13 19:50:13.298+00 f t Uba CAT 5 2.00 0.00 t 2019-12-02 \N \N \N \N Viene hace un tiempo, al principio no era tan constante vomitando el alimento balanceado, no mucho, pero lo vomitaba, siempre comió el mismo FIT de Royal Canin. Cada tanto mechaba dándole atún, pollo e hígado.\r\nLa cosa es que entre viernes y sábado, vomitó todo lo que comía al instante, también lo veía comer muy rápido cosa que en su momento no pasaba . La cosa es que ayer le saqué el alimento balanceado todo el día, cuando a la noche le dí pollo, volvió a comer rápido y vómito.\r\n\r\nHoy por la mañana solo le di caldo de pollo, no lo vomito y también defeco, cosa que era uno de mis miedos si no lo veía hacer. No está tirado, sigue activo, jugando y mismo a la hora de comer tiene como ese incentivo de ir hacia el plato a comer. \N f 27 110 311 +370 2025-01-13 21:01:30.758+00 2025-01-13 21:01:30.758+00 f t Isis CAT 5 4.50 0.00 t 2019-12-02 2025-01-13 \N \N FEMALE Nombre paciente: Isis\r\nRaza: gato\r\nEdad: 5 años\r\nPeso: 4.5 kg aprox\r\nCastrada \N f 27 110 312 +371 2025-01-13 21:01:57.135+00 2025-01-13 21:01:57.135+00 f t Pandora CAT 5 3.70 0.00 t 2019-12-02 2025-01-13 \N \N FEMALE Pandora\r\nRaza: gato\r\nEdad: 5\r\nPeso: 3.7 apox\r\nCastrada \N f 27 110 312 +374 2025-01-14 16:13:13.938+00 2025-01-14 16:13:13.938+00 f t ALIKA DOG 6 12.00 0.00 t 2018-12-02 \N \N \N FEMALE \N f 1 111 314 +375 2025-01-14 16:13:35.031+00 2025-01-14 16:13:35.031+00 f t ALMENDRA CAT 1 3.00 0.00 f 2023-12-02 \N \N \N FEMALE \N f 27 111 314 +376 2025-01-14 16:22:47.238+00 2025-01-14 16:22:47.238+00 f t Goro CAT 9 5.00 0.00 t 2015-12-02 \N \N \N MALE \N f 27 111 315 +377 2025-01-14 16:23:09.383+00 2025-01-14 16:23:09.383+00 f t Pulga CAT 9 3.00 0.00 t 2015-12-02 \N \N \N MALE \N f 27 111 315 +378 2025-01-14 21:23:57.633+00 2025-01-14 21:23:57.633+00 f t Roma DOG 7 15.00 0.00 f 2017-12-02 \N \N \N FEMALE \N f 5 111 316 +379 2025-01-15 11:49:03.998+00 2025-01-15 11:49:03.998+00 f t Bayron DOG 11 378.00 0.00 t 2013-12-02 \N \N \N \N \N f 58 113 317 +382 2025-01-15 17:56:27.683+00 2025-01-15 17:56:27.683+00 f t Nisha CAT 9 2.60 0.00 t 2015-12-02 \N \N \N FEMALE Nombre paciente: Nisha\r\nRaza: gato esfinge\r\nEdad: 9 años\r\nPeso: 2.6kg aprox\r\nCastrado o no?: castrada \N f 32 110 320 +383 2025-01-15 18:53:06.414+00 2025-01-15 18:53:06.414+00 f t Mike CAT 3 6.30 0.00 t 2021-12-02 \N \N \N MALE \N f 27 118 321 +384 2025-01-15 18:53:35.746+00 2025-01-15 18:53:35.746+00 f t Mimu CAT 2 6.00 0.00 f 2022-12-02 \N \N \N MALE \N f 27 118 321 +386 2025-01-15 19:09:36.383+00 2025-01-15 19:09:36.383+00 f t Merlin CAT 8 0.00 0.00 t 2016-12-02 \N \N \N MALE Merlin\r\nGato\r\n8 años\r\nno se el peso\r\nCastrado \N f 27 110 323 +387 2025-01-16 14:02:34.963+00 2025-01-16 14:02:34.963+00 f t Paul McCartney DOG 1 3.00 0.00 f 2023-12-02 \N \N \N MALE \N f 21 111 324 +390 2025-01-16 15:35:24.103+00 2025-01-16 15:35:24.103+00 f t Roma DOG 5 0.00 0.00 t 2019-12-02 \N \N \N FEMALE \N f 1 111 327 +391 2025-01-16 16:58:51.531+00 2025-01-16 16:58:51.531+00 f t Magui CAT 8 0.00 0.00 t 2016-12-02 2025-01-16 \N \N FEMALE \N f 27 110 328 +392 2025-01-16 19:53:11.113+00 2025-01-16 19:53:11.113+00 f t Mimosa Carey CAT 10 0.00 0.00 t 2014-12-02 \N \N \N FEMALE \N f \N 118 329 +345 2025-01-03 17:30:48.082+00 2025-01-03 17:30:48.082+00 f t Michino CAT 4 5.00 0.00 t 2020-12-02 2025-01-03 \N \N MALE \N f \N 113 291 +340 2024-12-31 12:56:52.754+00 2024-12-31 12:56:52.754+00 f t Atenea CAT 10 7.00 0.00 t 2014-12-02 2025-01-03 \N \N FEMALE \N f 27 118 286 +3816 2025-07-15 12:48:22.3701+00 2025-07-15 12:48:22.370111+00 f t Emma DOG \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4592 +380 2025-01-15 12:53:30.627+00 2025-01-15 12:53:30.627+00 f t Luke CAT 5 5.00 0.00 t 2019-12-02 2025-01-20 \N \N MALE \N f \N 118 318 +388 2025-01-16 14:16:35.721+00 2025-01-16 14:16:35.721+00 f t Pure CAT 4 0.00 0.00 t 2020-12-02 2025-01-20 \N \N FEMALE \N f 27 110 325 +346 2025-01-03 17:38:25.402+00 2025-01-03 17:38:25.402+00 f t Lola DOG 9 38.00 0.00 t 2015-12-02 \N \N \N FEMALE \N f 1 110 292 +395 2025-01-16 20:33:39.87+00 2025-01-16 20:33:39.87+00 f t Chacal CAT 4 0.00 0.00 t 2020-12-02 \N \N \N MALE \N f \N 118 332 +397 2025-01-17 13:45:47.074+00 2025-01-17 13:45:47.074+00 f t Morgan DOG 12 11.00 0.00 f 2012-12-02 \N \N \N MALE \N f 5 111 334 +399 2025-01-17 20:49:23.604+00 2025-01-17 20:49:23.604+00 f t Negro DOG 15 28.00 0.00 t 2009-12-02 \N \N \N MALE \N f 1 111 336 +389 2025-01-16 14:54:27.305+00 2025-01-16 14:54:27.305+00 f t Gala CAT 20 0.00 0.00 f 2004-12-02 2025-01-16 \N \N FEMALE \N t 29 111 326 +342 2025-01-02 18:21:27.621+00 2025-01-02 18:21:27.621+00 f t Indira CAT 12 8.00 0.00 t 2012-12-02 \N \N \N FEMALE \N f 27 111 288 +353 2025-01-06 16:08:01.135+00 2025-01-06 16:08:01.135+00 f t Renata CAT 13 5.00 0.00 f 2011-12-02 2025-03-28 \N \N FEMALE \N f 27 111 299 +372 2025-01-13 21:36:02.662+00 2025-01-13 21:36:02.662+00 f t Arya CAT 12 0.00 0.00 t 2012-12-02 2025-08-08 \N \N FEMALE Arya\r\nGato\r\n12 años\r\nNo estoy seguro\r\nSí \N f 27 110 313 +373 2025-01-13 21:36:25.455+00 2025-01-13 21:36:25.455+00 f t Arthas CAT 8 0.00 0.00 f 2016-12-02 2025-08-16 \N \N MALE Arthas\r\nGato\r\n8 años años\r\nNo estoy seguro\r\nNo \N f 27 110 313 +400 2025-01-18 16:52:51.537+00 2025-01-18 16:52:51.537+00 f t Aretha DOG 4 25.00 0.00 t 2020-12-02 \N \N \N FEMALE \N f \N 113 337 +404 2025-01-19 16:37:06.991+00 2025-01-19 16:37:06.991+00 f t Clota DOG 11 15.00 0.00 f 2013-12-02 \N \N \N FEMALE \N f \N 113 341 +405 2025-01-20 12:54:19.843+00 2025-01-20 12:54:19.843+00 f t Aldo DOG 4 25.00 0.00 t 2020-12-02 \N \N \N MALE \N f 17 114 343 +408 2025-01-20 17:27:35.325+00 2025-01-20 17:27:35.325+00 f t Tyson DOG 11 22.50 0.00 f 2013-12-02 \N \N \N MALE \N f 53 114 347 +464 2025-01-30 23:40:19.137744+00 2025-01-30 23:40:19.13775+00 f t Peleto CAT 9 0.00 0.00 t 2015-12-02 2025-02-12 \N \N MALE \N f \N 113 390 +187 2024-11-03 20:02:05.814+00 2024-11-03 20:02:05.814+00 f t Nala DOG 8 19.00 0.00 f 2016-12-02 2024-11-03 \N \N FEMALE Paciente con procedimiento quirúrgicos \N f 1 114 179 +406 2025-01-20 13:15:23.928+00 2025-01-20 13:15:23.928+00 f t BARUC Lew DOG 4 11.50 0.00 f 2020-12-02 2025-01-21 \N \N MALE \N f 5 114 344 +396 2025-01-17 13:18:53.237+00 2025-01-17 13:18:53.237+00 f t Morphina CAT 7 0.00 0.00 t 2017-12-02 2025-01-20 \N \N FEMALE \N f 27 111 333 +418 2025-01-22 18:19:36.847382+00 2025-01-22 18:19:36.847388+00 f t Júpiter CAT 1 3.50 0.00 f 2023-12-02 2025-01-23 \N \N MALE \N f \N 114 355 +541 2025-02-16 21:29:25.723736+00 2025-02-16 21:29:25.723746+00 f t bombón DOG 16 4.00 0.00 t 2008-12-02 2025-02-16 \N \N FEMALE no tomo ninguna medicación se asusta y se estresa pero no se pone a la defensiva \N f 8 114 457 +501 2025-02-05 23:29:01.973683+00 2025-02-05 23:29:01.97369+00 f t OIKOS CAT 4 5.00 0.00 t 2020-12-02 2025-02-05 \N \N MALE Asustadizo \N f \N 114 421 +533 2025-02-14 23:17:18.206657+00 2025-02-14 23:17:18.206664+00 f t Marcus Floriani CAT 15 2.00 0.00 f 2009-12-02 2025-02-15 \N \N MALE Cuando estuvo internado le aplicaron : metabolase 2 ml/kg + doxiciclina 5 mg/kg c 12 hrs + anemibye 1/2 comp c 24 hrs\r\n\r\nCuando lo retiré empezé a darle vía oral Anemibye 1/2 y la doxicilina 5mg /kg cada 12 hs \N t 27 111 450 +402 2025-01-19 16:15:13.74+00 2025-01-19 16:15:13.74+00 f t Tyson DOG 10 37.00 0.00 f 2014-12-02 2025-01-19 \N \N MALE \N f 15 113 339 +433 2025-01-26 18:43:12.869815+00 2025-01-26 18:43:12.869822+00 f t Morita CAT 8 1.80 0.00 t 2016-12-02 2025-01-26 \N \N FEMALE \N f \N 113 368 +425 2025-01-23 15:06:25.874426+00 2025-01-23 15:06:25.874434+00 f t Chloe CAT 0 5.00 0.00 t 2024-12-02 2025-01-27 \N \N FEMALE \N f 27 111 360 +11802 2025-11-24 11:20:54.138659+00 2025-11-24 11:20:54.13867+00 f t Wanda DOG \N 19.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14316 +398 2025-01-17 15:50:13.892+00 2025-01-17 15:50:13.892+00 f t Milka CAT 16 5.00 0.00 t 2008-12-02 2025-01-24 \N \N FEMALE \N f 29 111 335 +449 2025-01-28 23:30:34.310394+00 2025-01-28 23:30:34.310401+00 f t Apolo DOG 13 17.00 0.00 f 2011-12-02 2025-01-30 \N \N MALE \N f 53 113 379 +557 2025-02-18 20:43:50.035087+00 2025-02-18 20:43:50.035095+00 f t Miel CAT 8 4.80 0.00 t 2016-12-02 2025-02-18 \N \N FEMALE Si (se asusta pero es muy dócil, no muerde, no rasguña)\r\nno tomo ninguna medicación \N f \N 114 470 +508 2025-02-08 03:12:01.251123+00 2025-02-08 03:12:01.251131+00 f t Antoya DOG 2 0.00 0.00 t ⁠cuando se brota nos indicaron predinsolona y hoy empezó a tomar 2022-12-02 2025-02-09 \N \N MALE Se asusta y se estresa pero jamás atacó a nadie \N f \N 113 428 +549 2025-02-18 13:05:07.707607+00 2025-02-18 13:05:07.707615+00 f t Chilvestres CAT 9 7.00 0.00 t 2015-12-02 \N \N \N MALE \N t 27 111 463 +472 2025-02-01 22:12:22.356555+00 2025-02-01 22:12:22.356564+00 f t León CAT 11 5.50 0.00 t 2013-12-02 2025-02-05 \N \N MALE \N f \N 114 398 +5961 2025-08-25 14:46:25.529206+00 2025-08-25 14:46:25.529221+00 f t Felipe DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7264 +502 2025-02-06 14:13:27.462973+00 2025-02-06 14:13:27.462982+00 f t Bartu DOG 4 9.00 0.00 f 2020-12-02 2025-02-11 \N \N MALE se asusta pero no muerde ni se pone a la defensiva \N t 5 111 422 +607 2025-02-27 20:04:23.661614+00 2025-02-27 20:04:23.661624+00 f t Puchi DOG 6 3.00 0.00 f 2018-12-02 2025-02-27 \N \N FEMALE \N f 8 113 514 +589 2025-02-25 21:09:33.207605+00 2025-02-25 21:09:33.207615+00 f t Cora DOG 6 18.00 0.00 t 2018-12-02 2025-02-26 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál?: no\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce?: no \N f 1 114 498 +597 2025-02-26 16:27:52.416625+00 2025-02-26 16:27:52.416635+00 f t rona DOG 6 4.00 0.00 t 2018-12-02 2025-02-26 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál?: ayer le dieron un suero en veterinaria porque vomito todo el dia nada mas\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce?: Puede ser pero es un perro pequeño, con nosotros estará bien \N f 23 114 505 +582 2025-02-25 00:06:11.444054+00 2025-02-25 00:06:11.444065+00 f t terry DOG 10 15.00 0.00 f 2014-12-02 2025-02-25 \N \N MALE Se pone a la defensiva con personas q no conoce.\r\nusando ofloxacina condroitin \N f \N 114 493 +616 2025-03-01 22:13:12.671367+00 2025-03-01 22:13:12.671374+00 f t Kili DOG 7 60.00 0.00 f 2017-12-02 2025-03-03 \N \N MALE \N f \N 113 521 +630 2025-03-04 21:16:24.761279+00 2025-03-04 21:16:24.761288+00 f t Baguette CAT 1 2.00 0.00 f 2023-12-02 2025-03-03 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? : NO\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? : No es probable \N f \N 114 534 +646 2025-03-09 20:48:51.579169+00 2025-03-09 20:48:51.579183+00 f t Pepino CAT 1 3.70 0.00 f 2023-12-02 2025-03-08 \N \N MALE •No toma medicación\r\n•Si lo tratan con tranquilidad es re bueno, pero no quiere saber nada con que le toquen la pata \N f 29 114 549 +638 2025-03-06 23:27:28.938409+00 2025-03-06 23:27:28.938418+00 f t Thena CAT 3 0.00 0.00 t 2021-12-02 2025-03-06 \N \N FEMALE \N f 27 113 542 +652 2025-03-10 23:46:42.435726+00 2025-03-10 23:46:42.435733+00 f t gato CAT 14 0.00 0.00 t 2010-12-02 2025-03-10 \N \N MALE No toma medicación\r\nNo es agresivo \N f 29 113 555 +678 2025-03-18 23:54:18.716236+00 2025-03-18 23:54:18.716246+00 f t Danbi CAT 5 0.00 0.00 t 2019-12-02 2025-03-19 \N \N FEMALE Timida \N f \N 113 580 +6018 2025-08-26 18:12:20.158326+00 2025-08-26 18:12:20.158339+00 f t Coco DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7330 +567 2025-02-21 12:35:28.067028+00 2025-02-21 12:35:28.067037+00 f t Moro CAT 16 3.70 0.00 t 2008-12-02 2025-03-24 \N \N MALE \N f 29 111 479 +623 2025-03-03 16:49:43.953988+00 2025-03-03 16:49:43.953997+00 f t Uma CAT 11 3.00 0.00 t 2013-12-02 2025-03-19 \N \N FEMALE \N f 49 114 528 +2091 2025-06-07 14:44:51.413134+00 2025-06-07 14:44:51.413147+00 f t Canela DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2311 +713 2025-03-25 21:34:51.610807+00 2025-03-25 21:34:51.610837+00 f t chimi CAT 14 8.00 0.00 t \N 2025-04-01 \N \N MALE No medicación\r\nNo agresivo \N f \N 113 610 +698 2025-03-23 21:54:48.990786+00 2025-03-23 21:54:48.990795+00 f t Almendra CAT 4 5.50 0.00 t 2021-06-15 2025-03-24 \N \N FEMALE \N f 27 114 596 +668 2025-03-14 15:44:15.683189+00 2025-03-14 15:44:15.683197+00 f t Sicilia CAT 3 4.00 0.00 t 2021-12-02 2025-03-19 \N \N FEMALE \N f 27 111 570 +3817 2025-07-15 13:19:20.823804+00 2025-07-15 13:19:20.823813+00 f t Romeo DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4594 +659 2025-03-13 21:25:07.665259+00 2025-03-13 21:25:07.665269+00 f t coco DOG 1 8.00 0.00 f 2023-12-02 2025-08-12 \N \N MALE \N f 55 113 562 +2115 2025-06-08 01:02:41.223233+00 2025-06-08 01:02:41.223245+00 f t Po DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2340 +728 2025-03-30 21:50:20.665288+00 2025-03-30 21:50:20.665296+00 f t Bubi DOG 11 4.00 0.00 t \N 2025-04-01 \N \N MALE no toma medicacion, docil \N f 66 114 564 +2136 2025-06-08 13:01:29.517803+00 2025-06-08 13:01:29.517813+00 f t Prue DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2364 +403 2025-01-19 16:22:28.59+00 2025-01-19 16:22:28.59+00 f t Sasha CAT 0 3.00 0.00 t 2024-12-02 2025-05-28 \N \N FEMALE \N f \N 113 340 +828 2025-04-21 21:05:09.688573+00 2025-04-21 21:05:09.68858+00 f t Michi CAT 10 8.00 0.00 t 2015-12-21 \N \N \N MALE \N f 27 112 711 +813 2025-04-19 00:09:52.094717+00 2025-04-19 00:09:52.094725+00 f t Moro Torres DOG 15 6.00 0.00 f \N 2025-04-18 \N \N MALE \N f 25 113 696 +768 2025-04-09 23:39:46.667516+00 2025-04-09 23:39:46.667522+00 f t Victor CAT 5 6.00 0.00 t \N 2025-05-03 \N \N MALE \N f \N 113 652 +401 2025-01-19 15:33:49.423+00 2025-01-19 15:33:49.423+00 f t QUINN DOG 9 10.00 0.00 t 2015-12-02 2025-05-20 \N \N MALE \N f 5 113 338 +798 2025-04-16 13:55:15.727472+00 2025-04-16 13:55:15.727482+00 f t Dylan CAT 5 0.00 0.00 t \N 2025-04-21 \N \N MALE \N f \N 112 675 +2158 2025-06-08 22:33:04.038142+00 2025-06-08 22:33:04.038154+00 f t Pepito DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2392 +1311 2025-05-19 20:19:44.047513+00 2025-05-19 20:19:44.047525+00 f t Kira DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1292 +1312 2025-05-19 20:20:02.205207+00 2025-05-19 20:20:02.205222+00 f t Batata CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1293 +1314 2025-05-19 22:53:08.508756+00 2025-05-19 22:53:08.508766+00 f t negrita DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1298 +1221 2025-05-17 13:35:18.47447+00 2025-05-17 13:35:18.474482+00 f t Mora DOG \N 45.00 0.00 t \N 2019-06-10 2025-05-19 \N \N FEMALE \N \N f \N \N 1174 +1315 2025-05-20 00:15:25.470021+00 2025-05-20 00:15:25.470035+00 f t Naranju CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1299 +1316 2025-05-20 01:36:02.349918+00 2025-05-20 01:36:02.349933+00 f t candy DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1301 +1317 2025-05-20 02:23:25.662553+00 2025-05-20 02:23:25.662564+00 f t Renata CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1302 +1318 2025-05-20 03:20:02.97335+00 2025-05-20 03:20:02.973364+00 f t Lina CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1304 +1319 2025-05-20 03:20:26.580226+00 2025-05-20 03:20:26.58024+00 f t Summer DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1305 +1320 2025-05-20 03:21:06.818592+00 2025-05-20 03:21:06.818601+00 f t Lina CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1304 +1321 2025-05-20 11:45:00.188344+00 2025-05-20 11:45:00.188356+00 f t Benito CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1307 +1322 2025-05-20 11:48:00.736241+00 2025-05-20 11:48:00.736251+00 f t Benito CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1308 +1323 2025-05-20 12:32:36.973942+00 2025-05-20 12:32:36.973954+00 f t Emir DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1310 +1324 2025-05-20 12:56:09.064267+00 2025-05-20 12:56:09.064276+00 f t Chase DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1313 +1326 2025-05-20 13:52:42.367964+00 2025-05-20 13:52:42.367972+00 f t Morgan CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1314 +1330 2025-05-20 14:28:06.978518+00 2025-05-20 14:28:06.978527+00 f t Tita DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1317 +1331 2025-05-20 14:36:26.624027+00 2025-05-20 14:36:26.624036+00 f t Manga CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1318 +1332 2025-05-20 14:39:09.684199+00 2025-05-20 14:39:09.684226+00 f t Manga CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1319 +2092 2025-06-07 15:14:35.812354+00 2025-06-07 15:14:35.812364+00 f t Nina CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2312 +1174 2025-05-15 21:50:42.427736+00 2025-05-15 21:50:42.427745+00 f t Simona DOG 3 0.00 0.00 f \N 2025-05-19 \N \N FEMALE \N f 8 113 1109 +1334 2025-05-20 15:14:16.687208+00 2025-05-20 15:14:16.687219+00 f t Morty DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1321 +1335 2025-05-20 15:28:03.508235+00 2025-05-20 15:28:03.508247+00 f t Felpu DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1322 +1365 2025-05-21 13:41:59.40051+00 2025-05-21 13:41:59.400524+00 f t René CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1370 +1167 2025-05-15 18:43:00.049304+00 2025-05-15 18:43:00.049315+00 f t Jack DOG 9 12.00 0.00 t \N 2025-05-21 \N \N MALE Está tomando Artrin \N f 5 112 1100 +1340 2025-05-20 17:14:29.798758+00 2025-05-20 17:14:29.79877+00 f t Timón DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1329 +1327 2025-05-20 13:56:02.605312+00 2025-05-20 13:56:02.605348+00 f t Morgan CAT \N 5.00 0.00 f \N \N 2025-05-31 \N \N MALE \N \N f \N \N 1315 +1362 2025-05-21 11:40:30.002948+00 2025-05-21 11:40:30.002957+00 f t NINA DOG \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1364 +1267 2025-05-18 16:18:23.445333+00 2025-05-18 16:18:23.445343+00 t t Tizon DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1239 +5962 2025-08-25 15:17:42.812061+00 2025-08-25 15:17:42.812071+00 f t enano DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7267 +1344 2025-05-20 19:55:11.695718+00 2025-05-20 19:55:11.695734+00 f t Sally DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1340 +1345 2025-05-20 20:31:51.469868+00 2025-05-20 20:31:51.469879+00 f t Fantasma DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1342 +1302 2025-05-19 16:44:13.828878+00 2025-05-19 16:44:13.828887+00 f t Amazona CAT 5 0.00 0.00 t \N 2025-05-20 \N \N FEMALE \N f \N 112 1275 +2116 2025-06-08 01:25:26.080955+00 2025-06-08 01:25:26.080963+00 f t Salem CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2341 +1347 2025-05-20 21:08:00.003701+00 2025-05-20 21:08:00.003712+00 f t Piscu CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1344 +1348 2025-05-20 21:08:44.868033+00 2025-05-20 21:08:44.868042+00 f t Negan DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1345 +1339 2025-05-20 17:08:07.491393+00 2025-05-20 17:08:07.4914+00 f t Shavy DOG 0 10.00 0.00 f \N 2025-08-18 \N \N MALE 3 meses \N f 16 110 1328 +1337 2025-05-20 16:10:46.021289+00 2025-05-20 16:10:46.021298+00 f t Calipso CAT 5 3.50 0.00 t \N 2025-05-21 \N \N FEMALE toma ACEMUK \N f \N 112 1325 +1349 2025-05-20 23:56:21.767046+00 2025-05-20 23:56:21.767058+00 f t Naranjú CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1348 +1350 2025-05-20 23:57:24.275475+00 2025-05-20 23:57:24.275484+00 f t Garabato CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1348 +1351 2025-05-21 00:46:38.34892+00 2025-05-21 00:46:38.348928+00 f t Lupita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1349 +1352 2025-05-21 00:47:48.779531+00 2025-05-21 00:47:48.779543+00 f t Chaio CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1350 +1355 2025-05-21 01:38:37.962499+00 2025-05-21 01:38:37.962509+00 f t El dibu CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1354 +1356 2025-05-21 01:40:07.02328+00 2025-05-21 01:40:07.023289+00 f t El dibu CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1355 +1357 2025-05-21 01:45:25.172502+00 2025-05-21 01:45:25.17251+00 f t Eustaquio DOG \N 13.00 60.00 f \N 2013-12-03 \N \N \N MALE \N \N f 5 \N 867 +1358 2025-05-21 02:48:17.548653+00 2025-05-21 02:48:17.548663+00 f t Botas CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1357 +1359 2025-05-21 03:48:57.028933+00 2025-05-21 03:48:57.028945+00 f t Pistacho CAT \N 100.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1359 +1360 2025-05-21 07:30:13.717217+00 2025-05-21 07:30:13.717232+00 f t P DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1361 +1361 2025-05-21 10:14:30.445515+00 2025-05-21 10:14:30.445523+00 f t Sakura CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1362 +3818 2025-07-15 13:27:44.907255+00 2025-07-15 13:27:44.907263+00 f t sss CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4595 +1363 2025-05-21 12:45:50.032345+00 2025-05-21 12:45:50.032354+00 f t Lexa DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1367 +1364 2025-05-21 13:05:57.508685+00 2025-05-21 13:05:57.508698+00 f t venus DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1368 +1336 2025-05-20 15:28:53.581141+00 2025-05-20 15:28:53.581148+00 f t Tobias DOG 13 5.00 0.00 t \N 2025-05-23 \N \N MALE \N f 8 112 1323 +1353 2025-05-21 00:48:29.054811+00 2025-05-21 00:48:29.054819+00 f t Lupita CAT \N 4.00 0.00 f \N 2023-04-23 \N \N \N FEMALE \N \N f \N \N 1351 +1368 2025-05-21 14:00:24.773711+00 2025-05-21 14:00:24.773725+00 f t Lolo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1373 +1369 2025-05-21 14:02:49.433665+00 2025-05-21 14:02:49.433679+00 f t Pulgoso DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1374 +1371 2025-05-21 15:15:12.300682+00 2025-05-21 15:15:12.300694+00 f t Candy DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1382 +1372 2025-05-21 15:32:38.037114+00 2025-05-21 15:32:38.037125+00 f t KUN DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1383 +1373 2025-05-21 17:42:58.187861+00 2025-05-21 17:42:58.18787+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1389 +1375 2025-05-21 17:45:01.066014+00 2025-05-21 17:45:01.066024+00 f t TEST DOG \N 24.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1390 +1303 2025-05-19 16:44:45.739603+00 2025-05-19 16:44:45.739611+00 f t Pepper CAT 4 2.00 0.00 t \N 2025-05-20 \N \N \N \N f \N 112 1275 +1366 2025-05-21 13:46:20.385658+00 2025-05-21 13:46:20.385688+00 f t Cosme CAT 8 5.00 0.00 t \N 2025-05-21 \N \N \N \N f \N 112 1371 +1232 2025-05-17 21:20:47.254102+00 2025-05-17 21:20:47.254112+00 f t Eunice CAT 4 3.00 0.00 t \N 2025-05-19 \N \N FEMALE \N f \N 114 1194 +1343 2025-05-20 18:43:04.65314+00 2025-05-20 18:43:04.65315+00 f t Pinky DOG 10 11.00 0.00 f \N 2025-05-20 \N \N MALE \N f \N 112 1337 +1325 2025-05-20 13:23:21.423515+00 2025-05-20 13:23:21.423527+00 f t Tofi CAT \N 3.70 30.00 t \N 2023-04-05 2025-07-22 \N \N FEMALE \N \N f 27 \N 1009 +1338 2025-05-20 16:50:27.281794+00 2025-05-20 16:50:27.281801+00 f t Pardito CAT 5 0.00 0.00 f \N 2025-05-20 \N \N MALE \N f \N 112 1327 +1374 2025-05-21 17:43:39.973757+00 2025-05-21 17:43:39.973765+00 f t Misha CAT 15 4.00 0.00 t \N 2025-05-22 \N \N FEMALE \N f \N 112 1388 +1329 2025-05-20 14:25:48.197241+00 2025-05-20 14:25:48.19725+00 f t Francesca CAT \N 0.00 0.00 f \N 2025-05-22 \N \N FEMALE px con temperamento \N f \N 112 1316 +1328 2025-05-20 14:25:26.978682+00 2025-05-20 14:25:26.97869+00 f t Ginger CAT \N 0.00 0.00 f \N 2025-05-22 \N \N FEMALE px con temperamento \N f \N 112 1316 +6019 2025-08-26 19:18:57.955035+00 2025-08-26 19:18:57.955046+00 f t Ruta CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7331 +1342 2025-05-20 18:29:28.773462+00 2025-05-20 18:29:28.773472+00 f t Balu CAT 6 7.00 0.00 t \N 2025-05-20 \N \N MALE \N f \N 112 1335 +1341 2025-05-20 17:38:28.595788+00 2025-05-20 17:38:28.595796+00 f t Roque DOG 7 40.00 0.00 f \N 2025-05-23 \N \N \N \N f 58 112 1330 +1313 2025-05-19 20:50:16.040442+00 2025-05-19 20:50:16.040452+00 f t Aurora Boreal CAT \N 2.00 0.00 f \N 2025-05-23 \N \N FEMALE Es probable que se asuste \N f \N 112 1296 +1354 2025-05-21 00:52:30.862765+00 2025-05-21 00:52:30.862771+00 f t Kaisa DOG 12 40.00 0.00 t \N 2025-05-22 \N \N FEMALE \N f \N 113 1352 +1211 2025-05-16 23:29:15.139247+00 2025-05-16 23:29:15.139254+00 f t Aurora CAT 7 5.00 0.00 t \N 2025-05-20 \N \N FEMALE \N f \N 113 1156 +1370 2025-05-21 14:46:39.642532+00 2025-05-21 14:46:39.642542+00 f t Tita CAT 4 4.00 0.00 t \N 2025-05-28 \N \N \N \N f 29 112 1381 +1376 2025-05-21 18:11:55.493387+00 2025-05-21 18:11:55.493396+00 f t Simona CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1392 +1377 2025-05-21 18:12:36.163737+00 2025-05-21 18:12:36.163747+00 f t Mocca CAT \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1393 +1378 2025-05-21 18:12:58.020283+00 2025-05-21 18:12:58.020292+00 f t Desparasitación DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1394 +1379 2025-05-21 18:13:18.261163+00 2025-05-21 18:13:18.261172+00 f t Mkt_Referidos_clientes 2024 DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1394 +1380 2025-05-21 18:16:20.056939+00 2025-05-21 18:16:20.056951+00 f t Ofiuko DOG \N 2.80 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1395 +1381 2025-05-21 18:50:54.881676+00 2025-05-21 18:50:54.881687+00 f t Hernan DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1396 +1382 2025-05-21 19:26:59.815882+00 2025-05-21 19:26:59.815891+00 f t Pomelo CAT \N 4.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1397 +1383 2025-05-21 19:56:44.854623+00 2025-05-21 19:56:44.854635+00 f t Pipita CAT \N 3.75 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1399 +1384 2025-05-21 19:57:19.440187+00 2025-05-21 19:57:19.440196+00 f t Nn CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1400 +1385 2025-05-21 20:32:38.171638+00 2025-05-21 20:32:38.171649+00 f t magui DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1401 +2093 2025-06-07 15:16:57.543125+00 2025-06-07 15:16:57.543134+00 f t Dora CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2313 +1387 2025-05-21 20:43:12.90984+00 2025-05-21 20:43:12.909852+00 f t Samba DOG \N 5.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1403 +1388 2025-05-21 20:46:05.542397+00 2025-05-21 20:46:05.542409+00 f t Manola CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1404 +1389 2025-05-21 23:06:12.454569+00 2025-05-21 23:06:12.454577+00 f t Ioshi DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1406 +1390 2025-05-21 23:14:26.113754+00 2025-05-21 23:14:26.113766+00 f t Pequeño DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1407 +1391 2025-05-21 23:50:20.03524+00 2025-05-21 23:50:20.035253+00 f t iOShi DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1409 +1392 2025-05-22 00:18:06.185544+00 2025-05-22 00:18:06.185556+00 f t Moha CAT \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1411 +1393 2025-05-22 00:44:47.242171+00 2025-05-22 00:44:47.242184+00 f t Eren DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1412 +1394 2025-05-22 00:45:49.193647+00 2025-05-22 00:45:49.19366+00 f t Saga DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1413 +1395 2025-05-22 01:13:19.398218+00 2025-05-22 01:13:19.398229+00 f t Michi CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1414 +1396 2025-05-22 01:19:35.167425+00 2025-05-22 01:19:35.167433+00 f t pequeño DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1415 +1397 2025-05-22 01:23:15.984463+00 2025-05-22 01:23:15.984505+00 f t Donnie DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1419 +1398 2025-05-22 01:24:54.897511+00 2025-05-22 01:24:54.897521+00 f t Max DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1417 +1399 2025-05-22 01:27:38.006371+00 2025-05-22 01:27:38.006383+00 f t RUSITA CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1421 +1400 2025-05-22 01:30:50.958376+00 2025-05-22 01:30:50.958384+00 f t RUSITA PIZARRO CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1422 +1401 2025-05-22 01:50:28.641603+00 2025-05-22 01:50:28.641611+00 f t Coco ramon y caty y tomy y sofia DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1423 +1402 2025-05-22 02:14:10.948935+00 2025-05-22 02:14:10.948949+00 f t Floyd DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1425 +1403 2025-05-22 02:29:52.605977+00 2025-05-22 02:29:52.605989+00 f t Rei DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1426 +1404 2025-05-22 03:06:28.836714+00 2025-05-22 03:06:28.836726+00 f t Tito DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1428 +1405 2025-05-22 03:07:10.505066+00 2025-05-22 03:07:10.505076+00 f t Falucho DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1428 +1406 2025-05-22 03:07:48.249404+00 2025-05-22 03:07:48.249416+00 f t Chizzo DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1428 +1407 2025-05-22 03:10:17.669914+00 2025-05-22 03:10:17.669926+00 f t Tito DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1428 +1408 2025-05-22 03:11:33.843531+00 2025-05-22 03:11:33.843543+00 f t Falucho DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1428 +1409 2025-05-22 03:12:14.586003+00 2025-05-22 03:12:14.586016+00 f t Chizzo DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1428 +1410 2025-05-22 04:46:14.483019+00 2025-05-22 04:46:14.483032+00 f t Noa DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1429 +1412 2025-05-22 11:53:14.290379+00 2025-05-22 11:53:14.290391+00 f t Natasha DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1432 +1413 2025-05-22 12:00:25.948276+00 2025-05-22 12:00:25.948291+00 f t Hades CAT \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1433 +1414 2025-05-22 12:19:37.779388+00 2025-05-22 12:19:37.779398+00 f t Lio CAT \N 6.30 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1434 +1415 2025-05-22 12:21:37.203852+00 2025-05-22 12:21:37.20386+00 f t fulanita DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1435 +1333 2025-05-20 15:04:26.392436+00 2025-05-20 15:04:26.392448+00 f t Uma DOG 13 22.00 0.00 t \N 2025-05-21 \N \N \N Lo único que toma son glóbulos homeópatas de Árnica \N f \N 112 1320 +1416 2025-05-22 12:41:44.105985+00 2025-05-22 12:41:44.105994+00 f t Maki CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1436 +1417 2025-05-22 12:52:40.809146+00 2025-05-22 12:52:40.809157+00 f t Kimba DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1437 +1418 2025-05-22 13:08:12.170762+00 2025-05-22 13:08:12.170771+00 f t Maia DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1439 +2117 2025-06-08 01:36:56.230323+00 2025-06-08 01:36:56.230333+00 f t Pua CAT \N 900.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2342 +1420 2025-05-22 13:57:42.244373+00 2025-05-22 13:57:42.244382+00 f t Vitina CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1441 +1421 2025-05-22 14:20:37.35644+00 2025-05-22 14:20:37.356452+00 f t Test DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1443 +1422 2025-05-22 14:22:17.778484+00 2025-05-22 14:22:17.778497+00 f t test2 DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1443 +1423 2025-05-22 14:24:30.031335+00 2025-05-22 14:24:30.031345+00 f t Hades CAT \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1444 +1424 2025-05-22 14:34:26.048126+00 2025-05-22 14:34:26.048136+00 f t TEST DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1445 +1425 2025-05-22 14:58:58.096205+00 2025-05-22 14:58:58.096213+00 f t Fiona DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1446 +1426 2025-05-22 15:06:44.717237+00 2025-05-22 15:06:44.717246+00 f t Mini CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1447 +979 2025-05-08 23:23:38.43601+00 2025-05-08 23:23:38.436018+00 f t Lucifer CAT 6 5.00 0.00 t \N 2025-05-12 \N \N FEMALE No toma medicación. No se asusta ni se estresa, se porta re bien \N f \N 114 867 +1074 2025-05-13 12:55:49.039747+00 2025-05-13 12:55:49.039757+00 f t Matías DOG 12 0.00 0.00 t \N 2025-05-13 \N \N \N medicación\r\n\r\nMegadoxi suspensión\r\n(Uso veterinario)\r\nDar 0,6 ML cada 12 horas x 21dias\r\nPrednisona 5mg\r\nDar 1 tableta diaria x1semana bajar 1/2 x 2 días más\r\nOtocare Cherry gotas\r\nUso veterinario\r\nColocar 4 gotas cada 12 horas x 10 dias \N f 8 112 978 +1433 2025-05-22 18:29:35.109994+00 2025-05-22 18:29:35.110008+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1456 +1434 2025-05-22 18:44:06.93287+00 2025-05-22 18:44:06.932882+00 f t duke DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1458 +1435 2025-05-22 18:46:22.826769+00 2025-05-22 18:46:22.826778+00 f t Gami CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1459 +1436 2025-05-22 19:04:29.353913+00 2025-05-22 19:04:29.353922+00 f t Lola DOG \N 80.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1460 +1437 2025-05-22 19:05:29.125515+00 2025-05-22 19:05:29.125523+00 f t Roma DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1460 +821 2025-04-20 21:56:02.536441+00 2025-04-20 21:56:02.536448+00 f t Homie CAT 7 0.00 0.00 t 2018-07-10 2025-07-15 \N \N FEMALE \N f \N 114 703 +1439 2025-05-22 20:06:19.17549+00 2025-05-22 20:06:19.175503+00 f t Nala DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1462 +5963 2025-08-25 15:51:00.804157+00 2025-08-25 15:51:00.804175+00 f t Choco DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7270 +1440 2025-05-22 20:46:52.903054+00 2025-05-22 20:46:52.903063+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1463 +3884 2025-07-16 17:28:32.99899+00 2025-07-16 17:28:32.998998+00 f t Benito DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4679 +942 2025-05-07 15:46:39.03221+00 2025-05-07 15:46:39.032217+00 f t Alma DOG 12 30.00 0.00 t \N 2025-05-20 \N \N FEMALE \N f 2 112 837 +1432 2025-05-22 16:56:54.020018+00 2025-05-22 16:56:54.020025+00 f t Nina CAT 4 3.00 0.00 t \N 2025-05-24 \N \N FEMALE \N f \N 112 1452 +1428 2025-05-22 16:05:35.021868+00 2025-05-22 16:05:35.021876+00 f t Kishi CAT 3 0.00 0.00 t \N 2025-05-24 \N \N MALE \N f \N 112 1448 +1431 2025-05-22 16:56:22.909859+00 2025-05-22 16:56:22.909866+00 f t Batman CAT 4 0.00 0.00 t \N 2025-05-24 \N \N MALE \N f \N 112 1452 +1430 2025-05-22 16:55:48.832332+00 2025-05-22 16:55:48.83234+00 f t Khaleesi CAT 12 4.00 0.00 t \N 2025-05-24 \N \N FEMALE \N f \N 112 1452 +1411 2025-05-22 11:25:07.571301+00 2025-05-22 11:25:07.571308+00 f t Sergio CAT \N 9.00 0.00 f \N \N 2025-05-23 \N \N MALE \N \N f \N \N 1430 +1429 2025-05-22 16:06:22.934685+00 2025-05-22 16:06:22.934692+00 f t Oli DOG 10 0.00 0.00 f \N 2025-05-24 \N \N FEMALE \N f 8 112 1448 +1427 2025-05-22 16:05:01.23761+00 2025-05-22 16:05:01.237618+00 f t Rita CAT 5 0.00 0.00 t \N 2025-05-24 \N \N FEMALE \N f \N 112 1448 +1441 2025-05-22 20:52:33.350532+00 2025-05-22 20:52:33.35054+00 f t Viggo DOG 5 22.00 0.00 t \N 2025-05-26 \N \N \N \N f \N 112 1464 +3902 2025-07-16 22:51:34.538315+00 2025-07-16 22:51:34.538328+00 f t Kenai CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4701 +3920 2025-07-17 14:26:00.450049+00 2025-07-17 14:26:00.450064+00 f t Luna DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4735 +1442 2025-05-22 21:45:45.263898+00 2025-05-22 21:45:45.263909+00 f t Blanqui CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1465 +1346 2025-05-20 21:05:18.094957+00 2025-05-20 21:05:18.094966+00 f t Gato de Adriana Garay CAT 9 7.00 0.00 t \N 2025-05-22 \N \N MALE Vif positivo, Y FLUDT, con complicaciones infecciosas y lesiones en vejiga por sondeo \N f \N 112 1343 +1386 2025-05-21 20:40:43.97864+00 2025-05-21 20:40:43.978649+00 f t Gato de Maria Laura CAT 10 0.00 0.00 f \N 2025-05-22 \N \N MALE \N f \N 112 1402 +1443 2025-05-23 00:23:44.97789+00 2025-05-23 00:23:44.977902+00 f t Laia DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1466 +1444 2025-05-23 00:33:45.679256+00 2025-05-23 00:33:45.679273+00 f t Laia DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1466 +1445 2025-05-23 01:02:05.923219+00 2025-05-23 01:02:05.923228+00 f t Neo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1467 +1446 2025-05-23 01:04:38.084242+00 2025-05-23 01:04:38.084253+00 f t Neo DOG \N 26.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1468 +1447 2025-05-23 01:07:02.501879+00 2025-05-23 01:07:02.501891+00 f t Neo DOG \N 26.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1469 +2094 2025-06-07 16:15:30.264949+00 2025-06-07 16:15:30.264959+00 f t Ramon DOG \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2314 +1449 2025-05-23 02:12:30.721163+00 2025-05-23 02:12:30.721176+00 f t Vito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1472 +1450 2025-05-23 02:13:39.01908+00 2025-05-23 02:13:39.019093+00 f t Simón CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1472 +1451 2025-05-23 02:54:12.207964+00 2025-05-23 02:54:12.207974+00 f t Gina DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1475 +1452 2025-05-23 03:56:36.152759+00 2025-05-23 03:56:36.152769+00 f t Catalina DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1476 +1453 2025-05-23 07:07:41.490247+00 2025-05-23 07:07:41.490258+00 f t Camila DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1477 +1454 2025-05-23 10:15:31.740275+00 2025-05-23 10:15:31.740285+00 f t Qemu DOG \N 9.80 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1478 +1455 2025-05-23 10:53:20.680529+00 2025-05-23 10:53:20.680538+00 f t Otto DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1480 +1456 2025-05-23 11:28:25.678839+00 2025-05-23 11:28:25.67885+00 f t Chimu DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1481 +1419 2025-05-22 13:39:36.699217+00 2025-05-22 13:39:36.699226+00 f t Sombra DOG 12 15.00 0.00 t \N 2025-05-22 \N \N \N medicada con Tramadol y cardial \N f \N 112 1440 +1457 2025-05-23 12:52:20.137203+00 2025-05-23 12:52:20.137211+00 f t lilo CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1483 +1458 2025-05-23 12:52:46.316952+00 2025-05-23 12:52:46.31697+00 f t lilo CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1483 +1459 2025-05-23 13:06:06.717562+00 2025-05-23 13:06:06.71757+00 f t vader CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1483 +1460 2025-05-23 13:07:28.746912+00 2025-05-23 13:07:28.746921+00 f t Nala CAT \N 3.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1484 +1461 2025-05-23 13:50:36.603288+00 2025-05-23 13:50:36.6033+00 f t umma DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1485 +1462 2025-05-23 14:08:58.107625+00 2025-05-23 14:08:58.107634+00 f t Trevor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1486 +3819 2025-07-15 13:50:45.25798+00 2025-07-15 13:50:45.257994+00 f t Shiloh DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4597 +1504 2025-05-24 16:50:23.344153+00 2025-05-24 16:50:23.344162+00 f t Teodoro CAT \N 900.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1540 +1464 2025-05-23 14:41:24.807666+00 2025-05-23 14:41:24.807677+00 f t Eduardo CAT \N 4.00 30.00 t \N 2015-10-04 \N \N \N MALE \N \N f 27 \N 1388 +1465 2025-05-23 14:42:45.977481+00 2025-05-23 14:42:45.977489+00 f t Frida DOG \N 3.00 30.00 f \N 2015-12-01 \N \N \N FEMALE \N \N f 8 \N 1388 +1466 2025-05-23 14:43:41.966611+00 2025-05-23 14:43:41.966622+00 f t Olivia DOG \N 21.00 60.00 f \N 2015-12-31 \N \N \N FEMALE \N \N f 52 \N 1388 +1467 2025-05-23 14:55:01.736504+00 2025-05-23 14:55:01.736518+00 f t Rusa CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1488 +1468 2025-05-23 14:56:48.087276+00 2025-05-23 14:56:48.087285+00 f t Russa CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1488 +1469 2025-05-23 15:09:33.786508+00 2025-05-23 15:09:33.786521+00 f t Test1 DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1489 +1470 2025-05-23 15:09:56.927881+00 2025-05-23 15:09:56.927895+00 f t test2 DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1489 +1471 2025-05-23 15:13:16.956639+00 2025-05-23 15:13:16.956653+00 f t olivia CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1490 +1472 2025-05-23 15:49:28.672694+00 2025-05-23 15:49:28.672704+00 f t Macarena DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1491 +1473 2025-05-23 16:43:32.212978+00 2025-05-23 16:43:32.213002+00 f t Outis CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1494 +1474 2025-05-23 16:46:35.212253+00 2025-05-23 16:46:35.212263+00 f t Panchita DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1496 +1475 2025-05-23 16:46:45.741247+00 2025-05-23 16:46:45.74126+00 f t Gigi DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1495 +1476 2025-05-23 17:01:59.946435+00 2025-05-23 17:01:59.946449+00 f t Chin DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1497 +1477 2025-05-23 17:33:28.89605+00 2025-05-23 17:33:28.896063+00 f t Moana DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1498 +1479 2025-05-23 18:26:58.860628+00 2025-05-23 18:26:58.860641+00 f t samba DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1500 +1480 2025-05-23 18:30:05.893142+00 2025-05-23 18:30:05.893153+00 f t Milo DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1501 +1482 2025-05-23 21:07:46.893841+00 2025-05-23 21:07:46.893858+00 f t Genaro CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1504 +1583 2025-05-26 17:04:05.934493+00 2025-05-26 17:04:05.934503+00 f t gato CAT 10 10.00 0.00 t \N 2025-05-26 \N \N MALE \N f 27 111 1646 +1587 2025-05-26 20:16:25.735648+00 2025-05-26 20:16:25.735657+00 f t Rocky DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1652 +1483 2025-05-23 22:44:38.393836+00 2025-05-23 22:44:38.393851+00 f t Miel CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1507 +1484 2025-05-23 22:45:40.597022+00 2025-05-23 22:45:40.597037+00 f t Cielo DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1508 +1485 2025-05-23 22:58:27.205082+00 2025-05-23 22:58:27.205092+00 f t Coqui DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1510 +1486 2025-05-23 23:38:16.928684+00 2025-05-23 23:38:16.928698+00 f t Fiona DOG \N 60.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1512 +1487 2025-05-23 23:58:52.14802+00 2025-05-23 23:58:52.148029+00 f t Iker DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1514 +1488 2025-05-24 00:25:13.444271+00 2025-05-24 00:25:13.444284+00 f t Chori CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1516 +1489 2025-05-24 01:01:25.511801+00 2025-05-24 01:01:25.511814+00 f t Shaki DOG \N 19.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1518 +1490 2025-05-24 02:10:28.628503+00 2025-05-24 02:10:28.628514+00 f t Malvina DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1520 +1491 2025-05-24 02:40:54.067984+00 2025-05-24 02:40:54.067995+00 f t Nina DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1521 +1492 2025-05-24 02:41:46.632778+00 2025-05-24 02:41:46.632787+00 f t Pancha DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1521 +1493 2025-05-24 02:44:55.417935+00 2025-05-24 02:44:55.417945+00 f t Lio DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1522 +1494 2025-05-24 04:23:44.646856+00 2025-05-24 04:23:44.646865+00 f t Spkie DOG \N 4.95 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1524 +1495 2025-05-24 12:18:42.929322+00 2025-05-24 12:18:42.929333+00 f t Clio CAT \N 4.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1525 +1496 2025-05-24 12:52:05.9172+00 2025-05-24 12:52:05.917213+00 f t CANELA DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1527 +1497 2025-05-24 13:02:31.075454+00 2025-05-24 13:02:31.075467+00 f t Homero DOG \N 28.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1529 +1498 2025-05-24 13:09:34.876737+00 2025-05-24 13:09:34.876748+00 f t Africa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1530 +1499 2025-05-24 13:46:45.766148+00 2025-05-24 13:46:45.766157+00 f t Dina DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1532 +1500 2025-05-24 14:22:13.097419+00 2025-05-24 14:22:13.097434+00 f t cipry CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1534 +1501 2025-05-24 15:02:02.924569+00 2025-05-24 15:02:02.92458+00 f t Rocky DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1536 +1502 2025-05-24 15:33:56.520336+00 2025-05-24 15:33:56.520351+00 f t Matias DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1537 +1503 2025-05-24 16:49:54.457302+00 2025-05-24 16:49:54.457312+00 f t teodoro DOG \N 900.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1540 +1505 2025-05-24 17:36:51.855233+00 2025-05-24 17:36:51.855244+00 f t Canela CAT \N 600.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1542 +1506 2025-05-24 17:50:50.774392+00 2025-05-24 17:50:50.7744+00 f t Olivia DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1543 +1507 2025-05-24 17:53:23.662001+00 2025-05-24 17:53:23.662013+00 f t Nina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1544 +1508 2025-05-24 18:45:35.596746+00 2025-05-24 18:45:35.596757+00 f t Pancho DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1551 +1509 2025-05-24 20:25:12.244708+00 2025-05-24 20:25:12.24472+00 f t Lola DOG \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1553 +1481 2025-05-23 19:14:40.393867+00 2025-05-23 19:14:40.393876+00 f t Hela DOG 3 18.00 0.00 t \N 2025-05-25 \N \N FEMALE \N f \N 112 1502 +1584 2025-05-26 17:13:53.524831+00 2025-05-26 17:13:53.524842+00 f t Coco DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1647 +1448 2025-05-23 02:06:58.751759+00 2025-05-23 02:06:58.751767+00 f t Rosa DOG 5 13.00 0.00 f \N 2025-05-23 \N \N FEMALE \N f 1 111 1471 +1537 2025-05-25 16:24:34.302405+00 2025-05-25 16:24:34.302416+00 f t Iroh CAT 5 6.00 0.00 f \N 2025-05-26 \N \N MALE \N f \N 111 1589 +1589 2025-05-26 21:47:17.695313+00 2025-05-26 21:47:17.695322+00 f t Fiona DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1657 +1590 2025-05-26 21:51:24.071155+00 2025-05-26 21:51:24.071164+00 f t Fiona DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1658 +2095 2025-06-07 16:17:07.852979+00 2025-06-07 16:17:07.852989+00 f t Ramón CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2314 +2118 2025-06-08 02:10:16.294958+00 2025-06-08 02:10:16.29497+00 f t Juanita DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2343 +1511 2025-05-24 21:35:56.189479+00 2025-05-24 21:35:56.189489+00 f t Negro CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1556 +1512 2025-05-24 23:02:36.712298+00 2025-05-24 23:02:36.712311+00 f t Sam DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1558 +1513 2025-05-24 23:19:08.335183+00 2025-05-24 23:19:08.335193+00 f t Gomes CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1560 +1514 2025-05-24 23:35:59.640401+00 2025-05-24 23:35:59.64041+00 f t Olivia DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1562 +1515 2025-05-25 00:32:18.2841+00 2025-05-25 00:32:18.284109+00 f t Oliver DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1563 +1516 2025-05-25 00:36:01.053961+00 2025-05-25 00:36:01.053974+00 f t Bills CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1564 +1517 2025-05-25 01:07:27.559647+00 2025-05-25 01:07:27.559659+00 f t Garfield CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1566 +1518 2025-05-25 01:17:21.835521+00 2025-05-25 01:17:21.83553+00 f t Lola DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1567 +1519 2025-05-25 01:28:49.928979+00 2025-05-25 01:28:49.928988+00 f t Coco DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1568 +1520 2025-05-25 03:08:09.157487+00 2025-05-25 03:08:09.157496+00 f t Sambito DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1569 +1521 2025-05-25 03:29:36.457463+00 2025-05-25 03:29:36.457476+00 f t Mantecado Osse González López CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1572 +1522 2025-05-25 03:30:20.987565+00 2025-05-25 03:30:20.987577+00 f t Mantecado CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1573 +1523 2025-05-25 03:59:15.265926+00 2025-05-25 03:59:15.26594+00 f t Rita DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1575 +1524 2025-05-25 05:42:55.608002+00 2025-05-25 05:42:55.608012+00 f t Chia CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1576 +1525 2025-05-25 10:19:51.752388+00 2025-05-25 10:19:51.752398+00 f t Lem DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1577 +1526 2025-05-25 10:38:25.769625+00 2025-05-25 10:38:25.769634+00 f t Coco CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1578 +1527 2025-05-25 13:26:47.103039+00 2025-05-25 13:26:47.103049+00 f t Simona DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1580 +1528 2025-05-25 13:39:33.468867+00 2025-05-25 13:39:33.468878+00 f t Ananda DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1581 +1529 2025-05-25 13:39:52.859022+00 2025-05-25 13:39:52.859036+00 f t Ananda CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1581 +1530 2025-05-25 13:56:02.806912+00 2025-05-25 13:56:02.806924+00 f t Apolo DOG \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1582 +1531 2025-05-25 13:59:42.669524+00 2025-05-25 13:59:42.669538+00 f t Apolo DOG \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1583 +1532 2025-05-25 14:10:43.405359+00 2025-05-25 14:10:43.405371+00 f t Rafa DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1584 +1533 2025-05-25 14:47:10.37859+00 2025-05-25 14:47:10.378602+00 f t Bolt DOG \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1585 +1535 2025-05-25 15:51:58.342444+00 2025-05-25 15:51:58.342453+00 f t Salchi DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1587 +1536 2025-05-25 16:06:24.624285+00 2025-05-25 16:06:24.624296+00 f t Bubalu DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1588 +3820 2025-07-15 13:52:12.581821+00 2025-07-15 13:52:12.581833+00 f t Pejerrey DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4597 +1538 2025-05-25 16:27:54.273318+00 2025-05-25 16:27:54.273327+00 f t Coco DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1590 +1539 2025-05-25 16:42:59.090811+00 2025-05-25 16:42:59.09082+00 f t Alaska DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1591 +1540 2025-05-25 17:51:59.944691+00 2025-05-25 17:51:59.944701+00 f t Linda CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1596 +1541 2025-05-25 17:56:04.82887+00 2025-05-25 17:56:04.828879+00 f t Linda CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1597 +1542 2025-05-25 18:02:26.158245+00 2025-05-25 18:02:26.158255+00 f t Linda CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1598 +1543 2025-05-25 18:16:10.979333+00 2025-05-25 18:16:10.979344+00 f t Fabiola DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1599 +1544 2025-05-25 18:28:35.05902+00 2025-05-25 18:28:35.05903+00 f t Kimo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1600 +1545 2025-05-25 19:07:24.766285+00 2025-05-25 19:07:24.766298+00 f t Simon DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1601 +1558 2025-05-26 00:58:14.737346+00 2025-05-26 00:58:14.737356+00 f t Frida DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1617 +1546 2025-05-25 19:36:05.299884+00 2025-05-25 19:36:05.299893+00 f t Bart CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1602 +1547 2025-05-25 19:55:12.832727+00 2025-05-25 19:55:12.832737+00 f t Cooper DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1604 +1534 2025-05-25 15:38:52.953543+00 2025-05-25 15:38:52.953555+00 f t Grease CAT \N 7.00 0.00 f \N \N 2025-05-25 \N \N MALE \N \N f \N \N 1586 +2149 2025-06-08 19:12:35.499674+00 2025-06-08 19:12:35.499685+00 f t Violeta DOG \N 29.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2382 +1559 2025-05-26 01:14:26.14333+00 2025-05-26 01:14:26.143342+00 f t Atenea CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1618 +1560 2025-05-26 01:52:43.467055+00 2025-05-26 01:52:43.467063+00 f t mara DOG \N 65.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1619 +1561 2025-05-26 02:13:30.944396+00 2025-05-26 02:13:30.944406+00 f t Thor DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1620 +1551 2025-05-25 21:20:56.888182+00 2025-05-25 21:20:56.888193+00 f t Beto DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1609 +1562 2025-05-26 04:22:17.340082+00 2025-05-26 04:22:17.340095+00 f t Lucy DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1621 +1549 2025-05-25 20:47:43.755008+00 2025-05-25 20:47:43.755015+00 f t Chano Luconi DOG 7 7.90 0.00 t \N 2025-05-25 \N \N MALE \N f 8 114 1606 +1552 2025-05-25 21:39:24.629941+00 2025-05-25 21:39:24.629949+00 f t Matilda DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1610 +3860 2025-07-16 01:47:09.077115+00 2025-07-16 01:47:09.077126+00 f t Tina DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4647 +3885 2025-07-16 17:32:32.631097+00 2025-07-16 17:32:32.631105+00 f t Benito DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4681 +1553 2025-05-25 21:50:20.678581+00 2025-05-25 21:50:20.678592+00 f t Dudu DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1611 +1554 2025-05-25 22:29:49.112194+00 2025-05-25 22:29:49.112202+00 f t Renatta DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1612 +1555 2025-05-25 22:30:47.493323+00 2025-05-25 22:30:47.493336+00 f t Aurelia DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1612 +1556 2025-05-25 22:40:23.372532+00 2025-05-25 22:40:23.372541+00 f t Cabeza DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1614 +1557 2025-05-26 00:26:53.535709+00 2025-05-26 00:26:53.535719+00 f t Lucy DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1615 +1563 2025-05-26 04:52:12.105815+00 2025-05-26 04:52:12.105828+00 f t Emma DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1622 +1564 2025-05-26 04:56:19.86392+00 2025-05-26 04:56:19.863929+00 f t Olivia DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1623 +1565 2025-05-26 05:20:20.854352+00 2025-05-26 05:20:20.854361+00 f t Egeo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1624 +1566 2025-05-26 07:23:47.519109+00 2025-05-26 07:23:47.519119+00 f t Pulgoso DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1625 +1567 2025-05-26 07:25:11.052259+00 2025-05-26 07:25:11.052268+00 f t Morgana DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1626 +1568 2025-05-26 07:27:29.221266+00 2025-05-26 07:27:29.221277+00 f t Morgana DOG \N 134.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1627 +1569 2025-05-26 09:29:16.7084+00 2025-05-26 09:29:16.708409+00 f t Oreo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1629 +1570 2025-05-26 09:30:50.455919+00 2025-05-26 09:30:50.455928+00 f t Oreo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1630 +1571 2025-05-26 12:53:10.880136+00 2025-05-26 12:53:10.880148+00 f t Tiramisú CAT \N 0.55 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1631 +1572 2025-05-26 13:31:46.499342+00 2025-05-26 13:31:46.499375+00 f t Leon DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1632 +1573 2025-05-26 13:48:12.162891+00 2025-05-26 13:48:12.162903+00 f t Flash DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1634 +1574 2025-05-26 14:15:41.400479+00 2025-05-26 14:15:41.400492+00 f t Negra DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1635 +1575 2025-05-26 14:23:01.945304+00 2025-05-26 14:23:01.945317+00 f t Roxangel DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1637 +1576 2025-05-26 14:53:04.653799+00 2025-05-26 14:53:04.653811+00 f t Lylia CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1638 +1577 2025-05-26 15:33:05.453201+00 2025-05-26 15:33:05.453211+00 f t Canela CAT \N 600.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1639 +2159 2025-06-08 22:34:42.957815+00 2025-06-08 22:34:42.957825+00 f t Papito DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2392 +1578 2025-05-26 16:03:33.208769+00 2025-05-26 16:03:33.208781+00 f t Freud DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1640 +1579 2025-05-26 16:09:40.489253+00 2025-05-26 16:09:40.489263+00 f t Freud DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1642 +1550 2025-05-25 20:55:46.614754+00 2025-05-25 20:55:46.614761+00 f t MICHELLE CAT 16 0.00 0.00 t \N 2025-05-25 \N \N FEMALE \N t 29 114 1607 +1581 2025-05-26 16:45:20.299004+00 2025-05-26 16:45:20.299016+00 f t India DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1644 +1582 2025-05-26 16:58:57.788058+00 2025-05-26 16:58:57.788069+00 f t k CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1645 +2162 2025-06-08 23:53:55.942447+00 2025-06-08 23:53:55.942456+00 f t Rocky DOG \N 28.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2397 +1585 2025-05-26 18:34:10.256793+00 2025-05-26 18:34:10.256801+00 f t Negra DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1648 +1586 2025-05-26 20:05:13.208267+00 2025-05-26 20:05:13.208275+00 f t Nero DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1651 +1588 2025-05-26 21:47:06.192+00 2025-05-26 21:47:06.192009+00 f t Reina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1656 +1591 2025-05-26 22:23:45.177335+00 2025-05-26 22:23:45.177346+00 f t popi DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1660 +1593 2025-05-26 23:20:03.934227+00 2025-05-26 23:20:03.934242+00 f t Luna DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1663 +1594 2025-05-26 23:32:21.087795+00 2025-05-26 23:32:21.087807+00 f t Lola DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1665 +1595 2025-05-26 23:35:38.642036+00 2025-05-26 23:35:38.642046+00 f t Lola DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1666 +1596 2025-05-27 00:36:34.836088+00 2025-05-27 00:36:34.836097+00 f t Luna DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1668 +1597 2025-05-27 00:38:26.14134+00 2025-05-27 00:38:26.141349+00 f t Luna DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1669 +1598 2025-05-27 01:21:38.387261+00 2025-05-27 01:21:38.387273+00 f t Candy DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1672 +1599 2025-05-27 01:39:31.04991+00 2025-05-27 01:39:31.049921+00 f t Candy DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1673 +1600 2025-05-27 02:02:49.779271+00 2025-05-27 02:02:49.779283+00 f t Lissy CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1674 +1601 2025-05-27 02:35:43.91924+00 2025-05-27 02:35:43.919253+00 f t Pantuflas CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1677 +1602 2025-05-27 02:44:51.100009+00 2025-05-27 02:44:51.100018+00 f t Itha CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1679 +1603 2025-05-27 02:50:53.633569+00 2025-05-27 02:50:53.633578+00 f t Fauna CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1680 +1604 2025-05-27 03:19:55.795229+00 2025-05-27 03:19:55.79524+00 f t Mac DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1681 +1606 2025-05-27 04:27:51.059276+00 2025-05-27 04:27:51.059288+00 f t Amelie CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1684 +1607 2025-05-27 04:32:35.893919+00 2025-05-27 04:32:35.893929+00 f t Simba CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1684 +1608 2025-05-27 04:54:48.895147+00 2025-05-27 04:54:48.895161+00 f t Canela CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1685 +1609 2025-05-27 05:24:55.148165+00 2025-05-27 05:24:55.148173+00 f t Canela CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1686 +1610 2025-05-27 08:17:48.453001+00 2025-05-27 08:17:48.45301+00 f t Fonzo DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1687 +1611 2025-05-27 09:45:32.765173+00 2025-05-27 09:45:32.765182+00 f t Nina DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1688 +1612 2025-05-27 09:48:20.864325+00 2025-05-27 09:48:20.864334+00 f t Nina CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1688 +1613 2025-05-27 11:16:26.139987+00 2025-05-27 11:16:26.140001+00 f t ABBY DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1689 +1614 2025-05-27 11:24:43.461499+00 2025-05-27 11:24:43.461509+00 f t Copo de nieve CAT \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1690 +1592 2025-05-26 22:52:29.84987+00 2025-05-26 22:52:29.849878+00 f t Yang CAT 7 5.00 0.00 t \N 2025-05-26 \N \N MALE \N f \N 113 1661 +1648 2025-05-27 22:36:49.271239+00 2025-05-27 22:36:49.271248+00 f t Lila DOG \N 16.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1731 +1623 2025-05-27 14:57:03.169601+00 2025-05-27 14:57:03.169609+00 f t Khao Manee CAT 0 8.60 0.00 t \N 2025-05-27 \N \N MALE Polimedicado. Diabetes, Insuficiencia hepática aguda (con hepatograma) \N f \N 112 1699 +1615 2025-05-27 12:35:23.787934+00 2025-05-27 12:35:23.787944+00 f t Rata DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1691 +1616 2025-05-27 12:39:27.116947+00 2025-05-27 12:39:27.116955+00 f t Simon DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1692 +1617 2025-05-27 13:17:58.309328+00 2025-05-27 13:17:58.309337+00 f t Juana DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1693 +1618 2025-05-27 13:43:54.738999+00 2025-05-27 13:43:54.739009+00 f t Romeo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1694 +1619 2025-05-27 13:44:23.009042+00 2025-05-27 13:44:23.009051+00 f t Romeo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1694 +1620 2025-05-27 13:52:31.170064+00 2025-05-27 13:52:31.170078+00 f t olivia DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1695 +1621 2025-05-27 13:54:41.290704+00 2025-05-27 13:54:41.290713+00 f t olivia DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1696 +1622 2025-05-27 14:24:15.502351+00 2025-05-27 14:24:15.502361+00 f t catia CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1697 +3821 2025-07-15 13:56:00.966408+00 2025-07-15 13:56:00.966417+00 f t Sparki DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4598 +1649 2025-05-27 22:39:49.769749+00 2025-05-27 22:39:49.769758+00 f t Clementina CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1732 +1624 2025-05-27 15:27:46.734942+00 2025-05-27 15:27:46.734955+00 f t Lucho DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1701 +1625 2025-05-27 15:41:37.779244+00 2025-05-27 15:41:37.779256+00 f t Rufus CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1702 +1626 2025-05-27 15:42:16.551761+00 2025-05-27 15:42:16.551773+00 f t Mikkel DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1703 +1627 2025-05-27 15:43:07.807536+00 2025-05-27 15:43:07.807546+00 f t Brock DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1704 +1628 2025-05-27 15:54:55.751611+00 2025-05-27 15:54:55.751623+00 f t Amor DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1706 +2096 2025-06-07 16:24:55.724417+00 2025-06-07 16:24:55.724427+00 f t Frutilla DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2315 +1632 2025-05-27 16:39:37.670477+00 2025-05-27 16:39:37.670486+00 f t Peperina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1710 +1633 2025-05-27 16:48:37.842635+00 2025-05-27 16:48:37.842644+00 f t lilo DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1713 +1634 2025-05-27 17:04:47.877442+00 2025-05-27 17:04:47.877455+00 f t Theo DOG \N 55.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1714 +1635 2025-05-27 17:21:04.701623+00 2025-05-27 17:21:04.701632+00 f t MERLI CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1715 +1636 2025-05-27 17:40:26.054329+00 2025-05-27 17:40:26.054342+00 f t Nala DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1716 +1638 2025-05-27 17:53:50.767006+00 2025-05-27 17:53:50.767015+00 f t Joaco DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1722 +1639 2025-05-27 18:31:15.199714+00 2025-05-27 18:31:15.199723+00 f t NERU DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1723 +1640 2025-05-27 19:04:01.787637+00 2025-05-27 19:04:01.787648+00 f t Nina DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1724 +1641 2025-05-27 19:46:39.908182+00 2025-05-27 19:46:39.908195+00 f t Checha DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1725 +1642 2025-05-27 19:46:56.296557+00 2025-05-27 19:46:56.296573+00 f t Kira DOG \N 60.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1726 +1643 2025-05-27 19:47:00.925363+00 2025-05-27 19:47:00.925375+00 f t Checha DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1725 +1644 2025-05-27 19:53:30.102373+00 2025-05-27 19:53:30.102382+00 f t Kira DOG \N 60.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1727 +2119 2025-06-08 02:32:59.586964+00 2025-06-08 02:32:59.586975+00 f t Cata CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2344 +1645 2025-05-27 20:48:15.821285+00 2025-05-27 20:48:15.821297+00 f t Pepe DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1728 +1646 2025-05-27 21:57:09.562341+00 2025-05-27 21:57:09.562391+00 f t Reyna CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1729 +1647 2025-05-27 22:08:28.904822+00 2025-05-27 22:08:28.904832+00 f t Simona DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1730 +3861 2025-07-16 01:53:23.644093+00 2025-07-16 01:53:23.644106+00 f t Benitto CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4648 +1650 2025-05-27 22:44:28.824279+00 2025-05-27 22:44:28.824288+00 f t Leo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1733 +5964 2025-08-25 15:52:33.449522+00 2025-08-25 15:52:33.449535+00 f t Choco DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7270 +1653 2025-05-27 23:31:42.330628+00 2025-05-27 23:31:42.330642+00 f t Jjj DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1736 +1654 2025-05-28 00:56:56.327216+00 2025-05-28 00:56:56.327226+00 f t nala DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1739 +1655 2025-05-28 00:59:33.052778+00 2025-05-28 00:59:33.052789+00 f t Jorguito DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1740 +1656 2025-05-28 01:52:44.464426+00 2025-05-28 01:52:44.464436+00 f t Juana DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1741 +1657 2025-05-28 01:54:42.152039+00 2025-05-28 01:54:42.152053+00 f t Luna CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1742 +1658 2025-05-28 01:55:42.710831+00 2025-05-28 01:55:42.710845+00 f t Bety CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1743 +1659 2025-05-28 02:02:28.776341+00 2025-05-28 02:02:28.776351+00 f t Rosa CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1744 +936 2025-05-07 00:04:50.338568+00 2025-05-07 00:04:50.338577+00 f t perro de Maria Loudet DOG 12 6.00 0.00 t \N 2025-05-06 \N \N MALE Tiene daño renal severo \N f \N 113 830 +1580 2025-05-26 16:25:25.188205+00 2025-05-26 16:25:25.188215+00 f t Pina DOG \N 25.00 0.00 f \N \N 2025-05-26 \N \N FEMALE \N \N f \N \N 1643 +1629 2025-05-27 15:57:44.341338+00 2025-05-27 15:57:44.341352+00 f t Cali DOG \N 15.00 0.00 f \N \N 2025-05-30 \N \N FEMALE \N \N f \N \N 1707 +6020 2025-08-26 20:50:33.656184+00 2025-08-26 20:50:33.656199+00 f t Traslado DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7332 +1605 2025-05-27 03:29:04.104118+00 2025-05-27 03:29:04.104132+00 f t Miguel CAT \N 7.00 0.00 f \N \N 2025-05-29 \N \N MALE \N \N f \N \N 1682 +1630 2025-05-27 16:01:44.058071+00 2025-05-27 16:01:44.05808+00 f t Tula DOG 16 7.00 0.00 f \N 2025-05-29 \N \N FEMALE \N f \N 112 1708 +1652 2025-05-27 23:14:12.926257+00 2025-05-27 23:14:12.926265+00 f t Tito CAT 10 5.00 0.00 f \N 2025-06-05 \N \N MALE \N f 27 113 1735 +2138 2025-06-08 13:56:20.213232+00 2025-06-08 13:56:20.213241+00 f t Simon DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2366 +2145 2025-06-08 15:52:15.155759+00 2025-06-08 15:52:15.155768+00 f t Mabel CAT \N 6.00 0.00 t \N \N 2025-06-08 \N \N FEMALE \N \N f \N \N 2375 +2163 2025-06-09 00:36:57.669475+00 2025-06-09 00:36:57.669485+00 f t H Ji u CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2398 +1637 2025-05-27 17:46:18.019716+00 2025-05-27 17:46:18.019725+00 f t Sila DOG \N 45.00 0.00 f \N 2025-05-28 \N \N FEMALE Es epiléptica\r\nNo es muy mansa \N f \N 112 1717 +1660 2025-05-28 02:12:24.812394+00 2025-05-28 02:12:24.812408+00 f t Morena CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1745 +1661 2025-05-28 02:13:34.525004+00 2025-05-28 02:13:34.52502+00 f t A CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1746 +1662 2025-05-28 02:22:44.326759+00 2025-05-28 02:22:44.326769+00 f t Maggie DOG \N 8.65 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1747 +1663 2025-05-28 02:23:05.314199+00 2025-05-28 02:23:05.31421+00 f t Maggie DOG \N 8.65 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1747 +1664 2025-05-28 02:26:00.642313+00 2025-05-28 02:26:00.642331+00 f t Milo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1748 +1665 2025-05-28 02:30:48.237463+00 2025-05-28 02:30:48.237476+00 f t Milo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1750 +1666 2025-05-28 02:34:08.012414+00 2025-05-28 02:34:08.012424+00 f t Luna DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1751 +1667 2025-05-28 02:35:32.12528+00 2025-05-28 02:35:32.125294+00 f t Milo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1750 +1668 2025-05-28 02:38:42.108888+00 2025-05-28 02:38:42.108905+00 f t Siete CAT \N 1.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1752 +1669 2025-05-28 02:47:37.080855+00 2025-05-28 02:47:37.080869+00 f t MILO DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1753 +1670 2025-05-28 02:52:25.212116+00 2025-05-28 02:52:25.212125+00 f t Reishi DOG \N 16.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1755 +1671 2025-05-28 03:19:29.179415+00 2025-05-28 03:19:29.179426+00 f t Geysha DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1756 +1672 2025-05-28 03:25:59.638916+00 2025-05-28 03:25:59.638926+00 f t Geysha DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1757 +1673 2025-05-28 03:38:36.292475+00 2025-05-28 03:38:36.292489+00 f t Nora CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1758 +1674 2025-05-28 03:59:58.149636+00 2025-05-28 03:59:58.149652+00 f t Renato DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1760 +1675 2025-05-28 04:30:53.978509+00 2025-05-28 04:30:53.978521+00 f t Geysha DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1761 +1676 2025-05-28 09:19:47.308589+00 2025-05-28 09:19:47.308601+00 f t Sofi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1762 +1677 2025-05-28 12:04:02.758601+00 2025-05-28 12:04:02.758613+00 f t Queni CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1764 +1678 2025-05-28 12:10:18.852438+00 2025-05-28 12:10:18.852453+00 f t Yako DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1765 +2097 2025-06-07 17:00:55.153733+00 2025-06-07 17:00:55.153745+00 f t Rmaon CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2317 +1631 2025-05-27 16:05:18.580904+00 2025-05-27 16:05:18.580917+00 f t biuty DOG \N 40.00 0.00 t \N \N 2025-05-28 \N \N FEMALE \N \N f \N \N 1709 +1680 2025-05-28 13:25:39.174307+00 2025-05-28 13:25:39.174317+00 f t wanchope DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1768 +1681 2025-05-28 15:45:26.827259+00 2025-05-28 15:45:26.82727+00 f t C DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1770 +1682 2025-05-28 15:51:08.848547+00 2025-05-28 15:51:08.84856+00 f t Gollum CAT \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1771 +1683 2025-05-28 16:14:00.348094+00 2025-05-28 16:14:00.348107+00 f t Lio DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1772 +1684 2025-05-28 16:15:50.490507+00 2025-05-28 16:15:50.49052+00 f t Nino DOG \N 16.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1772 +1689 2025-05-28 21:22:44.248135+00 2025-05-28 21:22:44.248146+00 f t Pochi DOG 0 4.00 0.00 f \N 2025-06-07 \N \N FEMALE \N f 6 113 1776 +1685 2025-05-28 17:12:46.113728+00 2025-05-28 17:12:46.113738+00 f t Desconocido CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1773 +1686 2025-05-28 21:10:41.757471+00 2025-05-28 21:10:41.757484+00 f t Pancha DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1775 +3822 2025-07-15 14:00:22.098634+00 2025-07-15 14:00:22.098648+00 f t Pejerrey DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4599 +1690 2025-05-28 21:25:34.120566+00 2025-05-28 21:25:34.120576+00 f t Mili DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1778 +1691 2025-05-28 23:26:10.270851+00 2025-05-28 23:26:10.270868+00 f t Dior DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1779 +1692 2025-05-28 23:42:54.365721+00 2025-05-28 23:42:54.365735+00 f t Nyxie CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1780 +1693 2025-05-28 23:51:08.378214+00 2025-05-28 23:51:08.378226+00 f t Duki CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1781 +1694 2025-05-29 00:27:13.777776+00 2025-05-29 00:27:13.777786+00 f t Kiara DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1782 +1695 2025-05-29 01:55:31.769092+00 2025-05-29 01:55:31.769124+00 f t Clleo CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1784 +1696 2025-05-29 01:56:00.225177+00 2025-05-29 01:56:00.225187+00 f t Almita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1785 +5965 2025-08-25 15:54:16.393206+00 2025-08-25 15:54:16.393314+00 f t Choco DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7271 +1697 2025-05-29 02:20:57.53108+00 2025-05-29 02:20:57.531094+00 f t Lola CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1786 +1698 2025-05-29 04:35:09.182184+00 2025-05-29 04:35:09.182199+00 f t Pp DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1787 +1699 2025-05-29 05:21:01.047577+00 2025-05-29 05:21:01.047591+00 f t Pochito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1788 +1700 2025-05-29 06:39:56.828877+00 2025-05-29 06:39:56.828888+00 f t Ted DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1789 +1701 2025-05-29 06:44:52.60035+00 2025-05-29 06:44:52.600364+00 f t Daisy DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1790 +1702 2025-05-29 12:40:24.990433+00 2025-05-29 12:40:24.990447+00 f t Lolo DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1791 +1703 2025-05-29 12:50:28.60351+00 2025-05-29 12:50:28.603521+00 f t Lolo DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1792 +1704 2025-05-29 12:51:35.44692+00 2025-05-29 12:51:35.44693+00 f t Pochito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1793 +1707 2025-05-29 13:42:14.07406+00 2025-05-29 13:42:14.074112+00 f t Napoleón DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1796 +1708 2025-05-29 13:51:58.295698+00 2025-05-29 13:51:58.295708+00 f t Thor CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1797 +1713 2025-05-29 14:48:08.25825+00 2025-05-29 14:48:08.258264+00 f t Medus CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1803 +1688 2025-05-28 21:22:04.53848+00 2025-05-28 21:22:04.53849+00 f t Rita DOG 0 20.00 0.00 f \N 2025-06-07 \N \N FEMALE Toma aphuaquel \N f 6 113 1776 +1717 2025-05-29 17:09:18.097017+00 2025-05-29 17:09:18.097026+00 f t Runa DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1814 +1718 2025-05-29 17:44:32.410881+00 2025-05-29 17:44:32.41089+00 f t Jordi DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1815 +2120 2025-06-08 03:04:09.57587+00 2025-06-08 03:04:09.575883+00 f t Toty DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2345 +1706 2025-05-29 13:18:29.904644+00 2025-05-29 13:18:29.904655+00 f t Siames CAT 14 5.00 0.00 t \N 2025-05-30 \N \N MALE \N f \N 1026 1795 +1719 2025-05-29 18:24:30.545766+00 2025-05-29 18:24:30.54578+00 f t Nina DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1816 +1727 2025-05-29 23:48:22.335132+00 2025-05-29 23:48:22.335142+00 f t Malta DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1827 +1720 2025-05-29 19:19:39.226761+00 2025-05-29 19:19:39.226772+00 f t Woody DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1818 +1721 2025-05-29 19:33:10.2987+00 2025-05-29 19:33:10.298712+00 f t Shiva CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1819 +1714 2025-05-29 15:19:35.610753+00 2025-05-29 15:19:35.610765+00 f t Dorian CAT 1 6.00 0.00 t \N 2025-07-25 \N \N MALE \N f \N 1026 1807 +1722 2025-05-29 20:22:52.900406+00 2025-05-29 20:22:52.900415+00 f t Toto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1821 +1723 2025-05-29 21:38:19.958178+00 2025-05-29 21:38:19.958189+00 f t malbec DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1822 +1724 2025-05-29 22:29:16.213351+00 2025-05-29 22:29:16.213364+00 f t Kuno CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1823 +1725 2025-05-29 22:35:48.652971+00 2025-05-29 22:35:48.652984+00 f t Lola DOG \N 4.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1824 +1726 2025-05-29 23:35:17.782123+00 2025-05-29 23:35:17.782137+00 f t Milo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1826 +1710 2025-05-29 14:31:35.704559+00 2025-05-29 14:31:35.704569+00 f t Baltazar CAT 6 7.00 0.00 t \N 2025-08-10 \N \N \N \N f \N 1026 1798 +2139 2025-06-08 14:19:33.630547+00 2025-06-08 14:19:33.630555+00 f t Paris DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2368 +1730 2025-05-30 00:11:32.561044+00 2025-05-30 00:11:32.561054+00 f t Chimu CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1829 +1729 2025-05-29 23:59:31.990117+00 2025-05-29 23:59:31.990125+00 f t Natasha DOG 7 29.00 0.00 t \N 2025-05-31 \N \N FEMALE \N f 15 113 1828 +1679 2025-05-28 12:27:07.378634+00 2025-05-28 12:27:07.378643+00 f t Rojava CAT 5 5.00 0.00 t \N 2025-05-30 \N \N FEMALE \N f 1 118 1766 +1715 2025-05-29 16:44:06.105901+00 2025-05-29 16:44:06.105909+00 f t Elton DOG 4 33.00 0.00 t \N 2025-06-11 \N \N \N \N f 6 1026 1811 +2150 2025-06-08 19:19:56.57881+00 2025-06-08 19:19:56.578823+00 f t Milanesa DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2383 +1463 2025-05-23 14:26:35.736112+00 2025-05-23 14:26:35.73612+00 f t Mini CAT 9 4.00 0.00 t \N 2025-05-29 \N \N FEMALE \N f \N 112 1487 +1716 2025-05-29 16:44:48.2611+00 2025-05-29 16:44:48.261108+00 f t Pepper DOG 4 30.00 0.00 t \N 2025-06-11 \N \N FEMALE \N f \N 1026 1811 +1705 2025-05-29 12:55:57.799862+00 2025-05-29 12:55:57.799874+00 f t Daisy DOG 13 12.00 0.00 t \N 2025-08-19 \N \N FEMALE \N f \N 1583 1794 +1711 2025-05-29 14:32:20.210598+00 2025-05-29 14:32:20.210608+00 f t Bosco DOG 7 7.00 0.00 t \N 2025-06-02 \N \N \N \N f 52 1026 1798 +2105 2025-06-07 21:21:10.922869+00 2025-06-07 21:21:10.922878+00 f t Silvestre CAT \N 6.00 0.00 t \N 2020-12-12 2025-06-08 \N \N FEMALE \N \N f \N \N 2328 +2164 2025-06-09 00:46:15.659099+00 2025-06-09 00:46:15.659108+00 f t Figaro CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2399 +1731 2025-05-30 00:13:24.094953+00 2025-05-30 00:13:24.094966+00 f t Chimu CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1830 +1732 2025-05-30 00:26:03.900287+00 2025-05-30 00:26:03.900297+00 f t Antonia DOG \N 44.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1832 +1733 2025-05-30 00:27:53.606578+00 2025-05-30 00:27:53.606587+00 f t Mish jagger CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1833 +1734 2025-05-30 00:43:42.269617+00 2025-05-30 00:43:42.26963+00 f t Idiza DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1834 +1735 2025-05-30 01:36:52.034306+00 2025-05-30 01:36:52.034315+00 f t Chiquitin CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1835 +1736 2025-05-30 01:37:36.108457+00 2025-05-30 01:37:36.108467+00 f t Lily DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1836 +1737 2025-05-30 01:37:41.879764+00 2025-05-30 01:37:41.879779+00 f t Simón DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1837 +1738 2025-05-30 02:23:28.610525+00 2025-05-30 02:23:28.61054+00 f t Tommy CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1838 +1739 2025-05-30 03:08:16.336045+00 2025-05-30 03:08:16.336059+00 f t Pipi DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1840 +1740 2025-05-30 11:07:34.061722+00 2025-05-30 11:07:34.061736+00 f t Violeta CAT \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1843 +1741 2025-05-30 11:17:33.219975+00 2025-05-30 11:17:33.219985+00 f t Alma DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1845 +1742 2025-05-30 12:00:32.933158+00 2025-05-30 12:00:32.933174+00 f t torvi DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1848 +1743 2025-05-30 12:05:56.017608+00 2025-05-30 12:05:56.017618+00 f t Nina DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1849 +1744 2025-05-30 12:08:16.352918+00 2025-05-30 12:08:16.352928+00 f t Nina CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1850 +3862 2025-07-16 01:54:08.359328+00 2025-07-16 01:54:08.359339+00 f t Simba CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4649 +1745 2025-05-30 12:16:48.987454+00 2025-05-30 12:16:48.987465+00 f t Sugus CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1851 +1746 2025-05-30 12:27:49.898424+00 2025-05-30 12:27:49.898438+00 f t Olivia DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1852 +1747 2025-05-30 12:46:23.291486+00 2025-05-30 12:46:23.291501+00 f t Macarena CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1853 +1749 2025-05-30 15:40:34.470089+00 2025-05-30 15:40:34.470103+00 f t Tamal DOG \N 34.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1858 +1750 2025-05-30 15:56:40.210094+00 2025-05-30 15:56:40.210107+00 f t Mereo DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1859 +1751 2025-05-30 15:58:35.184248+00 2025-05-30 15:58:35.184261+00 f t Sol CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1859 +1752 2025-05-30 16:27:17.122432+00 2025-05-30 16:27:17.122441+00 f t Mia DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1861 +1753 2025-05-30 17:02:44.110317+00 2025-05-30 17:02:44.110332+00 f t Caspe DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1862 +1755 2025-05-30 17:23:38.898906+00 2025-05-30 17:23:38.898916+00 f t luna CAT 3 0.00 0.00 t \N \N \N \N FEMALE \N f \N 1026 1864 +5966 2025-08-25 16:15:40.176059+00 2025-08-25 16:15:40.176071+00 f t TEST DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7272 +1757 2025-05-30 17:48:52.181199+00 2025-05-30 17:48:52.181213+00 f t Pipi DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1865 +1758 2025-05-30 18:03:46.230395+00 2025-05-30 18:03:46.230404+00 f t Ramona CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1866 +1759 2025-05-30 18:04:13.846555+00 2025-05-30 18:04:13.846565+00 f t Cirse CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1867 +1760 2025-05-30 18:05:15.193957+00 2025-05-30 18:05:15.193969+00 f t Lolo DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1868 +1761 2025-05-30 20:28:55.023175+00 2025-05-30 20:28:55.023188+00 f t Bianca DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1871 +1762 2025-05-30 20:29:11.5696+00 2025-05-30 20:29:11.569611+00 f t Bianca CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1871 +1763 2025-05-30 20:42:20.080236+00 2025-05-30 20:42:20.080246+00 f t Miski CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1874 +1764 2025-05-30 20:43:13.996339+00 2025-05-30 20:43:13.996352+00 f t Nuit CAT \N 4.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1874 +1765 2025-05-30 20:50:46.401263+00 2025-05-30 20:50:46.401277+00 f t Aurora DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1875 +1766 2025-05-30 21:25:19.001623+00 2025-05-30 21:25:19.001635+00 f t Micha CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1878 +1767 2025-05-30 21:57:19.579195+00 2025-05-30 21:57:19.579208+00 f t Choco DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1882 +1768 2025-05-30 21:58:16.388365+00 2025-05-30 21:58:16.388376+00 f t Gaia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1882 +1772 2025-05-30 22:29:49.057178+00 2025-05-30 22:29:49.0572+00 f t Tobias DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1885 +1773 2025-05-30 23:27:57.932621+00 2025-05-30 23:27:57.932632+00 f t Orion CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1886 +1774 2025-05-30 23:41:47.975797+00 2025-05-30 23:41:47.975807+00 f t Lila futurama DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1887 +2098 2025-06-07 17:59:57.247226+00 2025-06-07 17:59:57.247237+00 f t Baloo CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2319 +1776 2025-05-31 00:19:10.796111+00 2025-05-31 00:19:10.796125+00 f t Milo DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1890 +1777 2025-05-31 00:19:49.601588+00 2025-05-31 00:19:49.601602+00 f t Trixi DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1889 +1778 2025-05-31 00:21:37.254003+00 2025-05-31 00:21:37.254014+00 f t Pupy DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1891 +1779 2025-05-31 00:45:29.757136+00 2025-05-31 00:45:29.757145+00 f t Lola CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1892 +1780 2025-05-31 00:45:43.664172+00 2025-05-31 00:45:43.664184+00 f t Macarena CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1893 +1781 2025-05-31 01:01:57.267138+00 2025-05-31 01:01:57.267151+00 f t Jengibre DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1894 +1782 2025-05-31 01:03:00.490217+00 2025-05-31 01:03:00.490229+00 f t Suertudo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1894 +1783 2025-05-31 01:04:41.21541+00 2025-05-31 01:04:41.215425+00 f t Memé CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1895 +1784 2025-05-31 01:04:45.364499+00 2025-05-31 01:04:45.364511+00 f t Jengibre DOG \N 800.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1894 +1785 2025-05-31 01:36:33.099846+00 2025-05-31 01:36:33.099859+00 f t Naranja DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1896 +1786 2025-05-31 01:36:46.118676+00 2025-05-31 01:36:46.118689+00 f t Naranja CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1896 +1787 2025-05-31 01:37:52.639075+00 2025-05-31 01:37:52.639086+00 f t Naranja CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1897 +1769 2025-05-30 22:18:01.371864+00 2025-05-30 22:18:01.371873+00 f t Macarena CAT 7 5.00 0.00 t \N 2025-05-30 \N \N FEMALE Toma prednisolona 1/4 tab hoy día 4/7 días recetada x dermatitis por pulgas recibió hace 5 días advocate pipeta \N f \N 113 1883 +1788 2025-05-31 01:42:36.272025+00 2025-05-31 01:42:36.272034+00 f t k DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1898 +1789 2025-05-31 02:12:37.260143+00 2025-05-31 02:12:37.260152+00 f t Mocaccino DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1900 +1790 2025-05-31 02:44:48.168761+00 2025-05-31 02:44:48.168776+00 f t Pipi CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1901 +1791 2025-05-31 03:35:42.539683+00 2025-05-31 03:35:42.539692+00 f t Chicha DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1903 +1792 2025-05-31 05:02:45.412197+00 2025-05-31 05:02:45.412209+00 f t Menta CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1906 +2121 2025-06-08 03:10:02.889317+00 2025-06-08 03:10:02.889332+00 f t Vitto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2346 +1794 2025-05-31 09:52:34.536929+00 2025-05-31 09:52:34.536941+00 f t Buji CAT \N 6.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1908 +1795 2025-05-31 09:58:46.11301+00 2025-05-31 09:58:46.113023+00 f t Molly DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1909 +1796 2025-05-31 12:05:23.887189+00 2025-05-31 12:05:23.887201+00 f t Topu CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1911 +1797 2025-05-31 13:06:56.059801+00 2025-05-31 13:06:56.059811+00 f t pochi DOG \N 600.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1912 +1798 2025-05-31 13:08:53.303684+00 2025-05-31 13:08:53.303696+00 f t pochi CAT \N 600.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1913 +1799 2025-05-31 13:24:37.397867+00 2025-05-31 13:24:37.397876+00 f t Pupy DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1914 +1800 2025-05-31 14:48:48.854394+00 2025-05-31 14:48:48.854405+00 f t Ramon DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1920 +1801 2025-05-31 14:56:26.388166+00 2025-05-31 14:56:26.388176+00 f t Pepola DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1921 +1802 2025-05-31 15:07:07.142794+00 2025-05-31 15:07:07.142803+00 f t Jshh CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1922 +1803 2025-05-31 15:17:54.671051+00 2025-05-31 15:17:54.671061+00 f t Jagger DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1923 +1804 2025-05-31 15:18:18.236852+00 2025-05-31 15:18:18.236861+00 f t Jagger DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1923 +1728 2025-05-29 23:59:05.87289+00 2025-05-29 23:59:05.872908+00 f t Hanna DOG 7 21.00 0.00 t \N 2025-05-31 \N \N FEMALE \N f 15 113 1828 +1805 2025-05-31 16:16:08.707613+00 2025-05-31 16:16:08.707624+00 f t Ronnie CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1925 +1806 2025-05-31 16:47:06.789833+00 2025-05-31 16:47:06.789846+00 f t Fito DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1926 +1754 2025-05-30 17:04:33.718395+00 2025-05-30 17:04:33.718405+00 f t Hilarión DOG 9 36.00 0.00 t \N 2025-05-31 \N \N \N \N f 52 1026 1863 +1748 2025-05-30 12:47:23.024468+00 2025-05-30 12:47:23.024478+00 f t Neru DOG \N 40.00 0.00 f \N \N 2025-06-03 \N \N MALE \N \N f \N \N 1854 +1770 2025-05-30 22:22:11.056101+00 2025-05-30 22:22:11.05611+00 f t Julio CAT 6 7.00 0.00 t \N 2025-06-04 \N \N MALE \N f 27 113 1884 +1771 2025-05-30 22:22:35.945246+00 2025-05-30 22:22:35.945255+00 f t Lolo CAT 4 5.00 0.00 t \N 2025-06-04 \N \N MALE \N f 27 113 1884 +1807 2025-05-31 17:13:04.246705+00 2025-05-31 17:13:04.246714+00 f t pochi CAT \N 600.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1927 +1808 2025-05-31 17:18:45.149638+00 2025-05-31 17:18:45.149656+00 f t Choco DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1928 +1809 2025-05-31 18:20:18.895938+00 2025-05-31 18:20:18.895952+00 f t Nina DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1933 +1810 2025-05-31 18:24:32.675896+00 2025-05-31 18:24:32.675908+00 f t Mini DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1934 +1811 2025-05-31 19:50:50.896821+00 2025-05-31 19:50:50.896836+00 f t Tayron DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1936 +2099 2025-06-07 18:10:50.620911+00 2025-06-07 18:10:50.620921+00 f t Wilson CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2320 +1813 2025-05-31 20:56:00.197333+00 2025-05-31 20:56:00.197343+00 f t Sushi DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1938 +1814 2025-05-31 21:29:17.101836+00 2025-05-31 21:29:17.101849+00 f t Akamaru DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1939 +2122 2025-06-08 03:14:53.936959+00 2025-06-08 03:14:53.936972+00 f t Vitto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2347 +5967 2025-08-25 16:25:40.497485+00 2025-08-25 16:25:40.497498+00 f t Fifotes CAT 13 3.00 0.00 f \N \N \N \N MALE \N f \N 1583 7273 +1817 2025-05-31 22:13:47.653476+00 2025-05-31 22:13:47.653487+00 f t Lóki DOG \N 10.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1942 +1818 2025-05-31 23:44:51.090363+00 2025-05-31 23:44:51.090376+00 f t Tiramisú CAT \N 0.55 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1946 +1819 2025-06-01 00:03:12.030136+00 2025-06-01 00:03:12.030146+00 f t Roco DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1949 +1820 2025-06-01 00:38:28.752732+00 2025-06-01 00:38:28.752741+00 f t Tiramisú CAT \N 0.55 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1950 +1821 2025-06-01 00:51:46.790373+00 2025-06-01 00:51:46.790383+00 f t Milka CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1951 +1822 2025-06-01 02:23:03.595625+00 2025-06-01 02:23:03.595638+00 f t Baguette DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1952 +1823 2025-06-01 02:32:42.338108+00 2025-06-01 02:32:42.338121+00 f t Coco DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1953 +1824 2025-06-01 04:00:28.066293+00 2025-06-01 04:00:28.066306+00 f t Pancho DOG \N 8.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1954 +1825 2025-06-01 04:25:23.093842+00 2025-06-01 04:25:23.093852+00 f t Toby DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1955 +1826 2025-06-01 07:01:19.98653+00 2025-06-01 07:01:19.986539+00 f t Tonky CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1959 +1827 2025-06-01 11:52:04.1312+00 2025-06-01 11:52:04.131213+00 f t Brisa CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1962 +1828 2025-06-01 12:42:29.950213+00 2025-06-01 12:42:29.950227+00 f t Millie DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1964 +1829 2025-06-01 13:01:23.124945+00 2025-06-01 13:01:23.124959+00 f t Iris CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1966 +1830 2025-06-01 13:43:10.785182+00 2025-06-01 13:43:10.785192+00 f t Figaro CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1968 +1831 2025-06-01 13:44:01.338881+00 2025-06-01 13:44:01.338894+00 f t Margarita DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1968 +1832 2025-06-01 14:13:13.432275+00 2025-06-01 14:13:13.432284+00 f t Manola CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1969 +1870 2025-06-02 13:01:57.512768+00 2025-06-02 13:01:57.512781+00 f t test DOG 0 1.00 0.00 t \N \N \N \N FEMALE \N t \N 118 2008 +1866 2025-06-02 10:46:46.466164+00 2025-06-02 10:46:46.466177+00 f t Kiwi CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2004 +6021 2025-08-26 21:40:21.718852+00 2025-08-26 21:40:21.718862+00 f t Rocco José Raschery DOG \N 9.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7333 +1833 2025-06-01 14:37:44.702866+00 2025-06-01 14:37:44.70288+00 f t Teodora CAT \N 5.50 25.00 t Polvo 2023-09-01 \N 2025-05-22 2024-12-23 FEMALE \N \N f 64 \N 1941 +1834 2025-06-01 14:37:45.188798+00 2025-06-01 14:37:45.188807+00 f t Teodora CAT \N 5.50 25.00 t Polvo 2023-09-01 \N 2025-05-22 2024-12-23 FEMALE \N \N f 64 \N 1941 +1835 2025-06-01 14:37:45.624288+00 2025-06-01 14:37:45.6243+00 f t Teodora CAT \N 5.50 25.00 t Polvo 2023-09-01 \N 2025-05-22 2024-12-23 FEMALE \N \N f 64 \N 1941 +1836 2025-06-01 14:47:47.168681+00 2025-06-01 14:47:47.168691+00 f t Mailo DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1970 +1793 2025-05-31 07:06:35.209612+00 2025-05-31 07:06:35.209621+00 f t Lola CAT \N 3.00 0.00 f \N \N 2025-05-31 \N \N FEMALE \N \N f \N \N 1907 +1837 2025-06-01 18:22:46.241225+00 2025-06-01 18:22:46.241234+00 f t POGO DOG \N 29.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1973 +1838 2025-06-01 18:33:27.757395+00 2025-06-01 18:33:27.757404+00 f t Bruno CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1974 +1839 2025-06-01 18:34:15.747772+00 2025-06-01 18:34:15.747782+00 f t Lenù CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1974 +3653 2025-07-11 23:55:40.95704+00 2025-07-11 23:55:40.957049+00 f t Grisu CAT 5 3.00 0.00 t \N 2025-07-15 \N \N FEMALE Prednisol en gotas. 3 gotas por 10 días (llevamos 8 días).\r\nTenía recetado también media pastilla de odontobiotic pero la rechaza\r\nSi, se asusta, pero no agrede hasta que intentan agarrarla \N f \N 113 4389 +1841 2025-06-01 21:36:47.330707+00 2025-06-01 21:36:47.330716+00 f t Uma DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1978 +1842 2025-06-01 22:19:16.043681+00 2025-06-01 22:19:16.043691+00 f t Ringo DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1979 +1843 2025-06-01 22:41:22.9365+00 2025-06-01 22:41:22.936514+00 f t Berta DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1980 +1844 2025-06-01 22:43:29.724792+00 2025-06-01 22:43:29.724802+00 f t Marco DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1981 +1845 2025-06-01 22:51:24.525095+00 2025-06-01 22:51:24.525108+00 f t Rocco DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1982 +1846 2025-06-01 23:08:29.497607+00 2025-06-01 23:08:29.497619+00 f t Petra DOG \N 7.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1983 +1847 2025-06-02 01:05:25.289469+00 2025-06-02 01:05:25.289481+00 f t Emma DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1985 +1848 2025-06-02 01:15:16.526016+00 2025-06-02 01:15:16.52603+00 f t Bonnie DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1986 +1849 2025-06-02 01:23:00.499208+00 2025-06-02 01:23:00.499217+00 f t Teo DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1987 +1812 2025-05-31 20:50:38.416732+00 2025-05-31 20:50:38.416742+00 f t Nena DOG 0 6.00 0.00 t \N 2025-05-31 \N \N FEMALE \N f \N 114 1937 +1850 2025-06-02 02:13:40.746415+00 2025-06-02 02:13:40.746425+00 f t Baby DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1988 +1851 2025-06-02 02:14:16.68868+00 2025-06-02 02:14:16.688689+00 f t Baby CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1989 +1852 2025-06-02 02:29:04.801215+00 2025-06-02 02:29:04.801229+00 f t Zafirs CAT \N 4.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1990 +1853 2025-06-02 02:33:08.922265+00 2025-06-02 02:33:08.922278+00 f t Candy DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1990 +1854 2025-06-02 02:42:23.466956+00 2025-06-02 02:42:23.466967+00 f t Lío CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1991 +1855 2025-06-02 03:21:49.186234+00 2025-06-02 03:21:49.186244+00 f t Princesa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1992 +1856 2025-06-02 03:58:00.301916+00 2025-06-02 03:58:00.301928+00 f t Calatea CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1993 +1857 2025-06-02 04:00:56.988683+00 2025-06-02 04:00:56.988695+00 f t Calatea CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1994 +1858 2025-06-02 07:44:46.178879+00 2025-06-02 07:44:46.178888+00 f t Charlie DOG \N 80.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 1996 +1859 2025-06-02 07:52:33.820872+00 2025-06-02 07:52:33.820882+00 f t Mishina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1997 +1860 2025-06-02 08:32:40.635561+00 2025-06-02 08:32:40.635572+00 f t Tutuca DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1998 +1861 2025-06-02 08:33:01.015812+00 2025-06-02 08:33:01.015821+00 f t Tutuca CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 1998 +1862 2025-06-02 08:59:03.319676+00 2025-06-02 08:59:03.319691+00 f t Calu CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 1999 +1863 2025-06-02 09:06:43.934527+00 2025-06-02 09:06:43.934536+00 f t Calu CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2000 +1864 2025-06-02 09:07:58.091329+00 2025-06-02 09:07:58.091342+00 f t Calu CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2001 +1867 2025-06-02 12:03:01.56795+00 2025-06-02 12:03:01.567964+00 f t Mirko CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2005 +1868 2025-06-02 12:42:32.251248+00 2025-06-02 12:42:32.251258+00 f t Nyxie CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2006 +1869 2025-06-02 12:43:37.011883+00 2025-06-02 12:43:37.011893+00 f t Aquiles y Bri (son dos) DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2007 +3863 2025-07-16 02:33:00.799659+00 2025-07-16 02:33:00.799673+00 f t Yoni DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4650 +1871 2025-06-02 13:10:15.556039+00 2025-06-02 13:10:15.556052+00 f t Oscar DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2009 +1872 2025-06-02 13:16:21.055931+00 2025-06-02 13:16:21.055982+00 f t wachin DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2010 +1873 2025-06-02 13:27:21.765637+00 2025-06-02 13:27:21.765646+00 f t Toddy DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2011 +1874 2025-06-02 13:36:27.141243+00 2025-06-02 13:36:27.141255+00 f t sucio DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2013 +3886 2025-07-16 18:49:12.135661+00 2025-07-16 18:49:12.135669+00 f t Princesa DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4682 +1875 2025-06-02 14:45:37.942759+00 2025-06-02 14:45:37.942768+00 f t Micho michito CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2014 +1876 2025-06-02 14:50:02.882346+00 2025-06-02 14:50:02.882358+00 f t Rayo DOG \N 50.00 0.00 t \N 2025-06-05 \N \N MALE \N f 2 1026 2015 +1865 2025-06-02 09:12:16.901909+00 2025-06-02 09:12:16.901918+00 f t Calu CAT \N 3.00 0.00 f \N \N 2025-06-05 \N \N FEMALE \N \N f \N \N 2003 +1840 2025-06-01 20:22:06.809006+00 2025-06-01 20:22:06.809013+00 f t GAIA CAT 3 4.00 0.00 t \N 2025-06-28 \N \N FEMALE \N f \N 114 1976 +1877 2025-06-02 15:59:02.487282+00 2025-06-02 15:59:02.487292+00 f t vitto DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2016 +1878 2025-06-02 16:07:31.826813+00 2025-06-02 16:07:31.826823+00 f t Osi DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2017 +1879 2025-06-02 16:26:04.55676+00 2025-06-02 16:26:04.556771+00 f t Naranja CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2020 +1880 2025-06-02 16:28:34.563042+00 2025-06-02 16:28:34.563054+00 f t Naranja CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2021 +1881 2025-06-02 18:23:01.029441+00 2025-06-02 18:23:01.029453+00 f t Mia DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2026 +1882 2025-06-02 18:47:03.583983+00 2025-06-02 18:47:03.583993+00 f t Dodo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2027 +1884 2025-06-02 19:08:11.54161+00 2025-06-02 19:08:11.541623+00 f t Coxo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2030 +1885 2025-06-02 19:12:20.767621+00 2025-06-02 19:12:20.767634+00 f t Flor DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2031 +1933 2025-06-03 22:01:45.501945+00 2025-06-03 22:01:45.501956+00 f t Amelia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2105 +1887 2025-06-02 20:11:37.72638+00 2025-06-02 20:11:37.72639+00 f t Vitto DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2037 +1888 2025-06-02 20:12:40.549022+00 2025-06-02 20:12:40.549036+00 f t Roma DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2039 +5968 2025-08-25 16:32:31.547552+00 2025-08-25 16:32:31.547578+00 f t Sol DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7274 +1890 2025-06-02 20:26:25.259502+00 2025-06-02 20:26:25.259512+00 f t Turmalina CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2045 +2100 2025-06-07 18:52:00.569883+00 2025-06-07 18:52:00.569893+00 f t Negrita DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2322 +1815 2025-05-31 21:46:46.574617+00 2025-05-31 21:46:46.574635+00 f t Kiki Lopez CAT 5 5.00 0.00 t \N 2025-06-01 \N \N MALE Nunca tomo remedios, la unica vez q fue al veterinario fue cdo lo castraron\r\nNo acostumbra ver desconocidos, se esconde, no le gusta q lo toquen, es arisco y es grandote y pesado \N f \N 114 1940 +1892 2025-06-02 21:11:25.183973+00 2025-06-02 21:11:25.183987+00 f t Delilah CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2047 +1893 2025-06-02 22:08:55.10505+00 2025-06-02 22:08:55.10506+00 f t Michi CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2051 +1894 2025-06-02 22:12:36.816187+00 2025-06-02 22:12:36.816196+00 f t Marcelomarcelo Gervan DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2052 +1895 2025-06-02 22:50:23.855047+00 2025-06-02 22:50:23.855058+00 f t Loli CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2053 +1896 2025-06-02 23:42:12.964547+00 2025-06-02 23:42:12.96456+00 f t Pomelo DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2054 +224 2024-11-19 20:06:22.076+00 2024-11-19 20:06:22.076+00 f t Cafe DOG 10 45.00 0.00 f 2014-12-02 2025-04-25 \N \N MALE Mezcla de pekinés con maltes.\r\nCastrado\r\nMuy muy miedoso y hay que tener cuidado porque devora todo lo que encuentra a su paso ( manteles , frazadas , repadores , broches, libros, zapatos, medias, etc) \N f 1 114 207 +1897 2025-06-02 23:45:11.669875+00 2025-06-02 23:45:11.669889+00 f t terry DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2055 +912 2025-05-04 21:54:55.24557+00 2025-05-04 21:54:55.245577+00 f t Romeo Mazzeo CAT 16 8.00 0.00 t \N 2025-05-06 \N \N MALE Medicación: ranitivet, la mitad de 1/4 de meloxican ( solo ayer) protector hepárico , onrexigeno , suero, y analgésico . Todo por suero. Se lo da la veterinaria y no se los nombres \N f \N 114 797 +1898 2025-06-03 00:14:42.119898+00 2025-06-03 00:14:42.119908+00 f t Simon DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2056 +1925 2025-06-03 17:20:53.061728+00 2025-06-03 17:20:53.061739+00 f t Bruno DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2095 +3823 2025-07-15 14:08:59.17988+00 2025-07-15 14:08:59.179888+00 f t Cocky DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4601 +2123 2025-06-08 03:21:59.543444+00 2025-06-08 03:21:59.543453+00 f t Vitto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2350 +1926 2025-06-03 18:37:19.344212+00 2025-06-03 18:37:19.344221+00 f t Camila DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2096 +1886 2025-06-02 19:41:36.274101+00 2025-06-02 19:41:36.27411+00 f t Flor DOG \N 15.00 0.00 f \N \N 2025-06-02 \N \N FEMALE \N \N f \N \N 2032 +1901 2025-06-03 01:15:17.992885+00 2025-06-03 01:15:17.992896+00 f t Mora DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2059 +1902 2025-06-03 01:42:14.500207+00 2025-06-03 01:42:14.500219+00 f t Lola DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2060 +1903 2025-06-03 01:48:07.652091+00 2025-06-03 01:48:07.652101+00 f t Goku DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2062 +1904 2025-06-03 01:49:31.277194+00 2025-06-03 01:49:31.277206+00 f t Goku DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2062 +1905 2025-06-03 02:01:26.379452+00 2025-06-03 02:01:26.379462+00 f t Draco DOG \N 32.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2064 +1906 2025-06-03 02:15:49.082759+00 2025-06-03 02:15:49.08277+00 f t Princesa DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2065 +1907 2025-06-03 02:16:39.926293+00 2025-06-03 02:16:39.926304+00 f t Vito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2066 +1908 2025-06-03 02:21:18.616271+00 2025-06-03 02:21:18.616281+00 f t Andina DOG \N 5.70 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2067 +1909 2025-06-03 02:31:46.172312+00 2025-06-03 02:31:46.172321+00 f t Rita DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2068 +1910 2025-06-03 02:54:03.636178+00 2025-06-03 02:54:03.636191+00 f t Hippie DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2069 +1911 2025-06-03 04:03:02.800125+00 2025-06-03 04:03:02.800137+00 f t Gabbana DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2070 +1912 2025-06-03 08:20:44.854714+00 2025-06-03 08:20:44.854725+00 f t V DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2071 +1913 2025-06-03 09:03:04.8524+00 2025-06-03 09:03:04.852413+00 f t Rocky DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2072 +3864 2025-07-16 02:36:39.445781+00 2025-07-16 02:36:39.445794+00 f t Yoni DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4650 +1899 2025-06-03 00:32:22.288483+00 2025-06-03 00:32:22.288493+00 f t Pepper CAT 7 4.80 0.00 t \N 2025-06-02 \N \N MALE Le di un laxante veterinario hace un par de días llamado Laxavet\r\nPuede asustarse con personas que no conoce, pero no es agresivo, solo escurridizo \N f \N 114 2057 +1914 2025-06-03 10:58:44.613195+00 2025-06-03 10:58:44.613208+00 f t Fresa CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2073 +1915 2025-06-03 13:27:07.511565+00 2025-06-03 13:27:07.511575+00 f t Lola DOG \N 45.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2077 +1916 2025-06-03 14:23:21.185011+00 2025-06-03 14:23:21.185021+00 f t Olivia maciel DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2081 +1917 2025-06-03 14:24:08.726375+00 2025-06-03 14:24:08.726384+00 f t Olivia DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2082 +1918 2025-06-03 14:25:49.775935+00 2025-06-03 14:25:49.77595+00 f t PRUEBA DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2080 +1920 2025-06-03 15:46:39.715493+00 2025-06-03 15:46:39.715502+00 f t Napoleon DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2087 +1921 2025-06-03 15:58:43.828931+00 2025-06-03 15:58:43.828944+00 f t Teo DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2089 +1922 2025-06-03 16:03:43.197433+00 2025-06-03 16:03:43.197465+00 f t Moises DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2090 +1923 2025-06-03 16:44:14.129368+00 2025-06-03 16:44:14.129377+00 f t Samantha DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2093 +1927 2025-06-03 18:45:25.720099+00 2025-06-03 18:45:25.720739+00 f t Jupiter CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2097 +1928 2025-06-03 18:53:24.304606+00 2025-06-03 18:53:24.304619+00 f t testtt DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2098 +1935 2025-06-03 22:24:04.024048+00 2025-06-03 22:24:04.024058+00 f t Sidney DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2107 +1929 2025-06-03 19:38:41.773899+00 2025-06-03 19:38:41.773908+00 f t Estrella DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2099 +1883 2025-06-02 18:59:59.582852+00 2025-06-02 18:59:59.582862+00 f t Honey CAT 10 2.30 0.00 t 2014-11-11 2025-06-03 \N \N FEMALE \N f 35 1026 2028 +1931 2025-06-03 20:17:03.61878+00 2025-06-03 20:17:03.618793+00 f t Principe DOG \N 85.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2101 +1932 2025-06-03 20:26:16.684856+00 2025-06-03 20:26:16.68487+00 f t Pochoclo DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2102 +1936 2025-06-03 22:30:17.887918+00 2025-06-03 22:30:17.887928+00 f t Tati DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2108 +1937 2025-06-03 23:30:58.597643+00 2025-06-03 23:30:58.597652+00 f t Thor DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2110 +1938 2025-06-03 23:42:04.53231+00 2025-06-03 23:42:04.53232+00 f t Negrita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2111 +3887 2025-07-16 19:21:57.92539+00 2025-07-16 19:21:57.925398+00 f t Argos DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4684 +1939 2025-06-03 23:43:34.896459+00 2025-06-03 23:43:34.896467+00 f t Luli DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2112 +1930 2025-06-03 20:03:05.727586+00 2025-06-03 20:03:05.727596+00 f t Negrito CAT \N 7.00 0.00 t \N \N 2025-07-01 \N \N MALE \N \N f \N \N 2100 +1941 2025-06-04 01:52:00.664474+00 2025-06-04 01:52:00.664483+00 f t GUY DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2115 +1942 2025-06-04 01:57:15.244917+00 2025-06-04 01:57:15.244926+00 f t Mila CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2116 +1943 2025-06-04 02:02:59.021222+00 2025-06-04 02:02:59.021239+00 f t Rufo DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2117 +1919 2025-06-03 15:07:38.578328+00 2025-06-03 15:07:38.578337+00 f t milo DOG \N 8.00 0.00 t \N \N 2025-06-06 \N \N MALE \N \N f \N \N 2084 +1924 2025-06-03 16:56:54.645222+00 2025-06-03 16:56:54.645231+00 f t Nube CAT 4 5.20 0.00 t \N 2025-06-05 \N \N FEMALE \N f \N 1026 2094 +1944 2025-06-04 02:09:55.983826+00 2025-06-04 02:09:55.983835+00 f t Venus CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2118 +1945 2025-06-04 02:30:59.983023+00 2025-06-04 02:30:59.983032+00 f t Filmus CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2120 +1946 2025-06-04 02:43:33.489998+00 2025-06-04 02:43:33.490007+00 f t Toby DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2121 +1947 2025-06-04 02:49:08.484432+00 2025-06-04 02:49:08.484445+00 f t Toby DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2122 +1948 2025-06-04 02:56:39.444355+00 2025-06-04 02:56:39.444364+00 f t Sushi DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2123 +1949 2025-06-04 03:03:53.084798+00 2025-06-04 03:03:53.08481+00 f t Leon DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2124 +1950 2025-06-04 03:38:52.950302+00 2025-06-04 03:38:52.950311+00 f t Aladar DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2125 +1952 2025-06-04 05:37:39.064114+00 2025-06-04 05:37:39.064123+00 f t Melba DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2127 +1953 2025-06-04 05:38:43.741576+00 2025-06-04 05:38:43.741586+00 f t Melba DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2128 +1954 2025-06-04 05:48:23.193775+00 2025-06-04 05:48:23.193787+00 f t Umma DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2129 +1955 2025-06-04 08:22:58.849491+00 2025-06-04 08:22:58.849501+00 f t Tito DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2130 +1956 2025-06-04 09:17:28.880291+00 2025-06-04 09:17:28.8803+00 f t Robin DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2131 +1957 2025-06-04 09:24:57.524305+00 2025-06-04 09:24:57.52432+00 f t Robin DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2132 +1958 2025-06-04 09:38:51.213143+00 2025-06-04 09:38:51.213152+00 f t Robin DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2133 +1959 2025-06-04 11:20:27.978354+00 2025-06-04 11:20:27.978368+00 f t Kira CAT \N 6.10 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2135 +1960 2025-06-04 12:49:34.702064+00 2025-06-04 12:49:34.702075+00 f t Lanyi DOG \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2136 +1961 2025-06-04 12:50:11.31192+00 2025-06-04 12:50:11.311929+00 f t Lucia CAT \N 2.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2137 +1962 2025-06-04 12:52:01.266233+00 2025-06-04 12:52:01.266245+00 f t Lanyi DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2138 +1963 2025-06-04 13:28:35.867919+00 2025-06-04 13:28:35.867929+00 f t Tutu DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2139 +1964 2025-06-04 13:30:34.628366+00 2025-06-04 13:30:34.62838+00 f t Mara CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2139 +1965 2025-06-04 13:37:54.50844+00 2025-06-04 13:37:54.508451+00 f t test DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2140 +1966 2025-06-04 13:41:49.796682+00 2025-06-04 13:41:49.796693+00 f t PRUEBA DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2141 +5969 2025-08-25 16:37:27.096962+00 2025-08-25 16:37:27.096979+00 f t Pamuk CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7275 +1968 2025-06-04 15:20:55.274107+00 2025-06-04 15:20:55.27412+00 f t Aquiles DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2147 +1969 2025-06-04 15:35:12.926365+00 2025-06-04 15:35:12.926374+00 f t Aquiles DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2148 +1970 2025-06-04 15:36:53.224113+00 2025-06-04 15:36:53.224123+00 f t Aquiles DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2149 +1971 2025-06-04 15:42:57.964088+00 2025-06-04 15:42:57.964098+00 f t Lola DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2150 +1972 2025-06-04 15:44:21.292884+00 2025-06-04 15:44:21.292894+00 f t Shalvi CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2151 +1973 2025-06-04 15:45:48.281779+00 2025-06-04 15:45:48.281793+00 f t Paco DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2152 +1974 2025-06-04 16:15:03.979903+00 2025-06-04 16:15:03.979917+00 f t Aquiles DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2154 +1975 2025-06-04 16:15:53.454573+00 2025-06-04 16:15:53.454584+00 f t Aquiles DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2155 +3824 2025-07-15 14:12:26.926633+00 2025-07-15 14:12:26.926642+00 f t Cocky DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4603 +1978 2025-06-04 16:18:06.805609+00 2025-06-04 16:18:06.805619+00 f t India DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2155 +1980 2025-06-04 16:30:57.20687+00 2025-06-04 16:30:57.206881+00 f t gata CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2161 +1981 2025-06-04 16:31:50.454872+00 2025-06-04 16:31:50.454882+00 f t gata2 DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2161 +1982 2025-06-04 16:32:55.051081+00 2025-06-04 16:32:55.051091+00 f t gato1 DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2161 +1983 2025-06-04 17:13:06.356829+00 2025-06-04 17:13:06.356838+00 f t Mia DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2162 +1984 2025-06-04 17:22:54.557324+00 2025-06-04 17:22:54.557334+00 f t Luna DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2163 +1987 2025-06-04 18:17:16.88411+00 2025-06-04 18:17:16.884124+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2165 +2101 2025-06-07 19:00:43.327913+00 2025-06-07 19:00:43.327927+00 f t Michifu CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2323 +1989 2025-06-04 18:43:52.410219+00 2025-06-04 18:43:52.41023+00 f t Duna DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2167 +2012 2025-06-05 05:57:04.694162+00 2025-06-05 05:57:04.694175+00 f t Pesci CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2201 +1990 2025-06-04 20:04:46.670285+00 2025-06-04 20:04:46.670298+00 f t Nelson DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2169 +1991 2025-06-04 20:05:48.837032+00 2025-06-04 20:05:48.837045+00 f t TEST DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2170 +1992 2025-06-04 20:34:33.073728+00 2025-06-04 20:34:33.073738+00 f t Dennis CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2171 +1993 2025-06-04 20:47:25.822456+00 2025-06-04 20:47:25.822466+00 f t Reggianito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2172 +1994 2025-06-04 21:08:39.806894+00 2025-06-04 21:08:39.806904+00 f t Reggianito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2174 +1995 2025-06-04 21:10:39.157476+00 2025-06-04 21:10:39.157487+00 f t Don Gato DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2175 +1996 2025-06-04 21:11:20.101943+00 2025-06-04 21:11:20.101957+00 f t Don Gato CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2175 +1997 2025-06-04 21:16:42.526616+00 2025-06-04 21:16:42.52663+00 f t Jamaica CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2177 +2021 2025-06-05 14:23:50.381618+00 2025-06-05 14:23:50.381626+00 f t Tokio CAT 6 5.00 0.00 t \N 2025-06-06 \N \N FEMALE \N f \N 1026 2211 +1998 2025-06-04 21:56:40.108996+00 2025-06-04 21:56:40.109012+00 f t Aragon CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2178 +1999 2025-06-04 22:05:47.259485+00 2025-06-04 22:05:47.259499+00 f t Adam CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2179 +2000 2025-06-04 22:23:22.351641+00 2025-06-04 22:23:22.351651+00 f t Bonita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2180 +2001 2025-06-04 23:21:29.300487+00 2025-06-04 23:21:29.3005+00 f t Dolly DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2181 +2002 2025-06-05 01:35:10.806528+00 2025-06-05 01:35:10.806542+00 f t Pesci CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2186 +2003 2025-06-05 01:42:23.980666+00 2025-06-05 01:42:23.98068+00 f t pesci CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2188 +2004 2025-06-05 02:27:18.369238+00 2025-06-05 02:27:18.369252+00 f t Memito CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2189 +2005 2025-06-05 02:31:14.892252+00 2025-06-05 02:31:14.892261+00 f t Pomelo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2190 +2006 2025-06-05 02:46:12.290209+00 2025-06-05 02:46:12.290221+00 f t Bibi DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2191 +2007 2025-06-05 02:46:42.436953+00 2025-06-05 02:46:42.436967+00 f t Bibi CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2192 +2008 2025-06-05 04:14:39.877269+00 2025-06-05 04:14:39.877282+00 f t Tito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2195 +2009 2025-06-05 04:16:49.482951+00 2025-06-05 04:16:49.482962+00 f t Principe DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2197 +2010 2025-06-05 04:38:00.762931+00 2025-06-05 04:38:00.76294+00 f t Cacho DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2199 +2011 2025-06-05 05:46:09.702933+00 2025-06-05 05:46:09.702943+00 f t sasha DOG \N 38.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2200 +2013 2025-06-05 08:55:55.313315+00 2025-06-05 08:55:55.313326+00 f t Tom CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2202 +2015 2025-06-05 10:54:56.66624+00 2025-06-05 10:54:56.666249+00 f t Simon CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2205 +2016 2025-06-05 10:57:09.214057+00 2025-06-05 10:57:09.214067+00 f t Catalina Jara DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2206 +2017 2025-06-05 11:24:08.563091+00 2025-06-05 11:24:08.563106+00 f t MUMITA CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2207 +2018 2025-06-05 11:51:42.518883+00 2025-06-05 11:51:42.518893+00 f t Batista DOG \N 18.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2208 +2019 2025-06-05 13:43:46.803022+00 2025-06-05 13:43:46.803038+00 f t Tito CAT \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2209 +1979 2025-06-04 16:30:03.177715+00 2025-06-04 16:30:03.177729+00 f t Princesa DOG 12 15.00 0.00 t \N 2025-06-05 \N \N FEMALE \N f \N 1026 2159 +2014 2025-06-05 08:57:00.950773+00 2025-06-05 08:57:00.950784+00 f t Tom CAT \N 5.00 0.00 f \N \N 2025-06-05 \N \N MALE \N \N f \N \N 2203 +1951 2025-06-04 03:46:19.960074+00 2025-06-04 03:46:19.960084+00 f t Freya CAT \N 5.00 0.00 t \N 2022-06-03 2025-06-05 \N \N FEMALE \N \N f \N \N 2126 +1977 2025-06-04 16:17:33.381194+00 2025-06-04 16:17:33.381205+00 f t Upa CAT 7 7.00 0.00 t \N 2025-06-06 \N \N MALE \N f \N 1026 2157 +1934 2025-06-03 22:05:44.115618+00 2025-06-03 22:05:44.115627+00 f t Amelia CAT \N 3.00 0.00 f \N \N 2025-06-13 \N \N FEMALE \N \N f \N \N 2106 +2124 2025-06-08 03:24:06.534781+00 2025-06-08 03:24:06.534793+00 f t Vitto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2351 +2140 2025-06-08 14:28:33.211501+00 2025-06-08 14:28:33.211512+00 f t Alan DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2369 +1985 2025-06-04 18:08:18.32985+00 2025-06-04 18:08:18.329859+00 f t Aquiles DOG 8 45.00 0.00 t \N 2025-06-07 \N \N MALE \N f 58 1026 2164 +2022 2025-06-05 14:44:15.513842+00 2025-06-05 14:44:15.513856+00 f t Kia DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2212 +2023 2025-06-05 15:00:47.667225+00 2025-06-05 15:00:47.667235+00 f t Moro CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2213 +2024 2025-06-05 15:16:13.566295+00 2025-06-05 15:16:13.566309+00 f t Moro CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2214 +2026 2025-06-05 15:28:12.233833+00 2025-06-05 15:28:12.233842+00 f t MISKA CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2216 +2029 2025-06-05 17:24:30.704431+00 2025-06-05 17:24:30.704442+00 f t Lili CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2220 +2030 2025-06-05 17:25:19.217672+00 2025-06-05 17:25:19.217685+00 f t Lili CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2220 +2031 2025-06-05 17:25:42.121181+00 2025-06-05 17:25:42.121195+00 f t tom CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2220 +2032 2025-06-05 18:07:23.954725+00 2025-06-05 18:07:23.954735+00 f t Willow CAT \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2221 +2033 2025-06-05 18:29:24.97301+00 2025-06-05 18:29:24.97302+00 f t Gatica CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2222 +2025 2025-06-05 15:20:04.965611+00 2025-06-05 15:20:04.965622+00 f t Draco CAT 6 0.00 0.00 t \N 2025-06-05 \N \N MALE \N f \N 1026 2215 +1988 2025-06-04 18:32:14.538715+00 2025-06-04 18:32:14.538724+00 f t Tomy CAT \N 0.00 0.00 t 2021-09-10 2025-06-05 \N \N MALE \N f \N 1026 2166 +2034 2025-06-05 18:49:19.081233+00 2025-06-05 18:49:19.081243+00 f t Jake DOG \N 32.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2223 +2037 2025-06-05 19:38:17.212549+00 2025-06-05 19:38:17.212558+00 f t Lali DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2228 +2040 2025-06-05 21:11:08.689919+00 2025-06-05 21:11:08.689932+00 f t Coco DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2232 +2041 2025-06-05 21:11:55.173946+00 2025-06-05 21:11:55.17396+00 f t Coco DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2233 +3825 2025-07-15 14:15:05.531665+00 2025-07-15 14:15:05.531681+00 f t Vacunación DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4602 +2043 2025-06-05 22:22:00.127999+00 2025-06-05 22:22:00.12801+00 f t Candy DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2235 +2044 2025-06-05 22:31:31.234085+00 2025-06-05 22:31:31.234094+00 f t Adin DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2237 +2045 2025-06-05 22:44:11.91786+00 2025-06-05 22:44:11.917873+00 f t Blue CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2238 +2046 2025-06-06 01:13:20.620871+00 2025-06-06 01:13:20.62088+00 f t Tayson DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2241 +2047 2025-06-06 01:24:21.488296+00 2025-06-06 01:24:21.488309+00 f t Lana CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2243 +2048 2025-06-06 01:33:28.35447+00 2025-06-06 01:33:28.354481+00 f t Teo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2246 +2049 2025-06-06 01:39:02.87073+00 2025-06-06 01:39:02.870746+00 f t Luna CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2247 +2050 2025-06-06 01:46:06.913403+00 2025-06-06 01:46:06.913416+00 f t Haka CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2248 +2051 2025-06-06 01:54:51.52544+00 2025-06-06 01:54:51.525454+00 f t Luna DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2249 +2052 2025-06-06 02:03:59.807071+00 2025-06-06 02:03:59.807081+00 f t Monty DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2250 +2053 2025-06-06 02:21:44.493982+00 2025-06-06 02:21:44.493993+00 f t Candy DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2251 +5970 2025-08-25 17:07:06.158039+00 2025-08-25 17:07:06.158976+00 f t Pusheen CAT \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7276 +2054 2025-06-06 03:11:52.415627+00 2025-06-06 03:11:52.415637+00 f t Suri DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2253 +2055 2025-06-06 10:45:31.412212+00 2025-06-06 10:45:31.412224+00 f t Wilson CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2254 +2056 2025-06-06 11:29:35.429644+00 2025-06-06 11:29:35.429656+00 f t Luna DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2255 +2057 2025-06-06 12:26:17.120891+00 2025-06-06 12:26:17.120901+00 f t Lucy CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2257 +2058 2025-06-06 13:34:53.529475+00 2025-06-06 13:34:53.52949+00 f t Roco DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2258 +2059 2025-06-06 14:45:57.237272+00 2025-06-06 14:45:57.237283+00 f t Lana CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2259 +2060 2025-06-06 16:01:12.46748+00 2025-06-06 16:01:12.467489+00 f t Mora DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2261 +2061 2025-06-06 17:07:45.91519+00 2025-06-06 17:07:45.915205+00 f t Duke DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2264 +2062 2025-06-06 18:33:45.062262+00 2025-06-06 18:33:45.062274+00 f t Johnny CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2268 +2020 2025-06-05 14:23:19.643479+00 2025-06-05 14:23:19.643489+00 f t Bruna CAT 7 5.00 0.00 t \N 2025-06-11 \N \N FEMALE \N f \N 1026 2211 +2063 2025-06-06 18:54:50.422381+00 2025-06-06 18:54:50.422395+00 f t Momo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2269 +2064 2025-06-06 19:15:54.133814+00 2025-06-06 19:15:54.133828+00 f t Moro DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2270 +2165 2025-06-09 01:30:10.633883+00 2025-06-09 01:30:10.633895+00 f t Jupi DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2400 +2066 2025-06-06 22:15:07.506608+00 2025-06-06 22:15:07.506621+00 f t Isis CAT \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2272 +2067 2025-06-06 22:58:19.381858+00 2025-06-06 22:58:19.381868+00 f t Cony DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2273 +2068 2025-06-06 23:48:53.68793+00 2025-06-06 23:48:53.687943+00 f t Facu DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2275 +2069 2025-06-06 23:56:45.981525+00 2025-06-06 23:56:45.981536+00 f t Frank CAT \N 5.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2276 +2035 2025-06-05 19:05:27.653622+00 2025-06-05 19:05:27.653632+00 f t Chululi CAT 10 3.50 0.00 t \N 2025-06-09 \N \N FEMALE Medicada con Ferroblin, frednisol y doxiciclina \N f \N 1026 2224 +3865 2025-07-16 04:23:19.280063+00 2025-07-16 04:23:19.280072+00 f t Raquel DOG \N 29.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4652 +2102 2025-06-07 19:16:31.92986+00 2025-06-07 19:16:31.929874+00 f t Matias DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2324 +2038 2025-06-05 19:38:57.083668+00 2025-06-05 19:38:57.083679+00 f t Gato CAT 18 2.00 0.00 t \N 2025-06-06 \N \N MALE \N f \N 1026 2229 +2027 2025-06-05 16:02:39.45605+00 2025-06-05 16:02:39.456062+00 f t Jareth CAT 6 0.00 0.00 t \N 2025-06-07 \N \N MALE \N f \N 1026 2217 +1940 2025-06-04 00:16:13.534824+00 2025-06-04 00:16:13.534831+00 f t Bruno Acevedo DOG 7 28.00 0.00 t \N 2025-06-06 \N \N MALE \N f 52 114 2113 +2125 2025-06-08 03:26:12.340897+00 2025-06-08 03:26:12.340906+00 f t Vitto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2352 +3888 2025-07-16 19:22:25.807176+00 2025-07-16 19:22:25.807189+00 f t Kyra CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4685 +2036 2025-06-05 19:12:08.700153+00 2025-06-05 19:12:08.700177+00 f t Lobo DOG 12 0.00 0.00 f \N 2025-06-06 \N \N MALE \N f \N 1026 2225 +3903 2025-07-16 23:30:50.842892+00 2025-07-16 23:30:50.842906+00 f t Kyra CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4703 +2166 2025-06-09 03:19:54.312746+00 2025-06-09 03:19:54.312755+00 f t Lola DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2401 +2039 2025-06-05 20:50:16.543769+00 2025-06-05 20:50:16.543778+00 f t Susanita CAT 3 3.90 0.00 t \N 2025-06-09 \N \N FEMALE \N f \N 1026 2230 +2160 2025-06-08 22:59:13.632332+00 2025-06-08 22:59:13.632342+00 f t Stoycko DOG \N 22.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2394 +2167 2025-06-09 03:25:51.894757+00 2025-06-09 03:25:51.894767+00 f t Lola Levy DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2402 +2168 2025-06-09 05:43:34.463738+00 2025-06-09 05:43:34.463751+00 f t Timmy DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2403 +2169 2025-06-09 07:07:52.342971+00 2025-06-09 07:07:52.342984+00 f t Morrison CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2404 +2170 2025-06-09 11:17:47.403706+00 2025-06-09 11:17:47.403716+00 f t Aba CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2406 +2171 2025-06-09 11:33:28.557403+00 2025-06-09 11:33:28.557413+00 f t Kun DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2407 +2172 2025-06-09 12:04:35.401837+00 2025-06-09 12:04:35.401846+00 f t Maitena CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2408 +2173 2025-06-09 12:06:09.561835+00 2025-06-09 12:06:09.561845+00 f t Maitena CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2409 +2174 2025-06-09 12:28:06.433591+00 2025-06-09 12:28:06.433602+00 f t Summer CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2410 +2175 2025-06-09 12:41:12.983562+00 2025-06-09 12:41:12.983573+00 f t Tiramisú CAT \N 0.70 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2411 +2176 2025-06-09 13:08:57.82319+00 2025-06-09 13:08:57.823199+00 f t Lola DOG \N 60.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2412 +2177 2025-06-09 13:50:03.567336+00 2025-06-09 13:50:03.567397+00 f t dfg CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2416 +2178 2025-06-09 13:50:54.609017+00 2025-06-09 13:50:54.609026+00 f t Funebrera DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2417 +2179 2025-06-09 13:56:29.927923+00 2025-06-09 13:56:29.927939+00 f t Ringo DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2420 +2180 2025-06-09 13:56:59.504837+00 2025-06-09 13:56:59.504847+00 f t Ringo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2420 +2181 2025-06-09 14:00:58.338287+00 2025-06-09 14:00:58.338296+00 f t Alan DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2421 +6022 2025-08-26 21:49:21.858034+00 2025-08-26 21:49:21.858049+00 f t Stitch DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7334 +2154 2025-06-08 20:26:43.651913+00 2025-06-08 20:26:43.651919+00 f t Juan Choclito CAT 4 4.50 0.00 t \N 2025-06-10 \N \N MALE No tomo medicinas\r\nCon la gente que ha venido a casa nunca ha estado a la defensiva, pero si se esconde \N f \N 114 2387 +2028 2025-06-05 16:03:29.458625+00 2025-06-05 16:03:29.458636+00 f t Roxy CAT 4 0.00 0.00 t \N 2025-06-07 \N \N FEMALE \N f \N 1026 2217 +2065 2025-06-06 20:12:40.581366+00 2025-06-06 20:12:40.581375+00 f t Miska CAT 19 3.50 0.00 t \N 2025-06-06 \N \N \N Medicada con Odintobiotic (metronidazol) \N f \N 1026 2271 +2182 2025-06-09 14:12:15.50596+00 2025-06-09 14:12:15.505973+00 f t cloe DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2422 +2183 2025-06-09 14:36:31.697448+00 2025-06-09 14:36:31.697457+00 f t Juana DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2423 +2184 2025-06-09 14:46:54.821725+00 2025-06-09 14:46:54.821734+00 f t Milo DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2424 +2185 2025-06-09 15:33:39.449796+00 2025-06-09 15:33:39.449805+00 f t Bernarda CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2425 +2186 2025-06-09 16:28:14.919845+00 2025-06-09 16:28:14.919856+00 f t Palta CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2426 +2187 2025-06-09 16:31:27.721927+00 2025-06-09 16:31:27.72194+00 f t Desty CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2427 +2188 2025-06-09 16:31:56.594133+00 2025-06-09 16:31:56.594145+00 f t Mica CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2428 +2189 2025-06-09 16:44:56.00106+00 2025-06-09 16:44:56.00107+00 f t Kalimera CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2431 +2190 2025-06-09 16:49:23.249869+00 2025-06-09 16:49:23.249882+00 f t Kalimera CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2432 +2192 2025-06-09 17:01:17.230499+00 2025-06-09 17:01:17.230509+00 f t Simón CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2434 +2193 2025-06-09 17:38:35.869337+00 2025-06-09 17:38:35.869345+00 f t Kalimera CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2436 +2194 2025-06-09 17:39:13.096124+00 2025-06-09 17:39:13.096134+00 f t Kaliméra CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2437 +2195 2025-06-09 18:34:50.310717+00 2025-06-09 18:34:50.310729+00 f t Tommy CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2440 +2196 2025-06-09 18:57:53.657987+00 2025-06-09 18:57:53.658002+00 f t Favio DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2441 +2197 2025-06-09 19:03:44.045048+00 2025-06-09 19:03:44.045063+00 f t Kaliméra CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2442 +2042 2025-06-05 21:50:03.610055+00 2025-06-05 21:50:03.61007+00 f t Simon CAT \N 5.00 0.00 f \N \N 2025-06-06 \N \N MALE \N \N f \N \N 2234 +2151 2025-06-08 19:33:24.792384+00 2025-06-08 19:33:24.792392+00 f t Lola DOG 13 7.50 0.00 f \N 2025-06-08 \N \N FEMALE Le dieron montón de antibióticos no sabría decirle exactamente\r\nNo, es super amable con todos \N f 20 114 2384 +2198 2025-06-09 19:24:11.750019+00 2025-06-09 19:24:11.750028+00 f t indio CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2443 +2199 2025-06-09 19:32:14.528867+00 2025-06-09 19:32:14.528879+00 f t Goyo DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2444 +2201 2025-06-09 20:26:43.925203+00 2025-06-09 20:26:43.925215+00 f t Ciro DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2447 +2203 2025-06-09 22:13:30.156458+00 2025-06-09 22:13:30.156468+00 f t Umma DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2453 +2204 2025-06-09 22:14:57.873653+00 2025-06-09 22:14:57.873665+00 f t Betti CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2454 +2205 2025-06-09 22:34:18.756884+00 2025-06-09 22:34:18.756895+00 f t China CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2456 +2230 2025-06-10 13:07:02.09545+00 2025-06-10 13:07:02.095463+00 f t Mila DOG 4 0.00 0.00 t \N 2025-06-10 \N \N \N \N f \N 1026 2484 +2206 2025-06-09 22:45:59.70304+00 2025-06-09 22:45:59.703052+00 f t Amy DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2457 +2207 2025-06-09 23:57:48.535603+00 2025-06-09 23:57:48.535617+00 f t Emma DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2459 +2208 2025-06-10 00:15:03.875528+00 2025-06-10 00:15:03.875544+00 f t Harina CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2460 +3866 2025-07-16 04:23:22.424731+00 2025-07-16 04:23:22.42474+00 f t Repentina CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4651 +3904 2025-07-17 00:11:01.442916+00 2025-07-17 00:11:01.442927+00 f t Flancito DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4706 +2107 2025-06-07 22:13:19.989559+00 2025-06-07 22:13:19.989568+00 f t MARTA CORNES SANGIAO CAT 14 0.00 0.00 t \N 2025-06-07 \N \N FEMALE Hoy primera dosis de azotrmicina por diarrea y hoy el Vet le dio cortisona inyectable\r\nEs muy mansa. \N f 29 114 2331 +2211 2025-06-10 01:08:04.141055+00 2025-06-10 01:08:04.141067+00 f t Mila DOG \N 28.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2463 +2212 2025-06-10 01:45:03.699016+00 2025-06-10 01:45:03.699034+00 f t Patas DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2466 +2213 2025-06-10 02:30:02.180904+00 2025-06-10 02:30:02.180919+00 f t Nilo DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2467 +2214 2025-06-10 02:44:55.296286+00 2025-06-10 02:44:55.296299+00 f t Michaela DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2468 +2215 2025-06-10 02:45:18.152143+00 2025-06-10 02:45:18.152157+00 f t Michaela CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2468 +2216 2025-06-10 02:57:06.460867+00 2025-06-10 02:57:06.46088+00 f t Evo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2469 +2217 2025-06-10 03:08:29.944069+00 2025-06-10 03:08:29.944081+00 f t Evo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2470 +2218 2025-06-10 04:21:27.153717+00 2025-06-10 04:21:27.15373+00 f t Katta CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2471 +2219 2025-06-10 05:29:11.201094+00 2025-06-10 05:29:11.201106+00 f t Simón CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2472 +2220 2025-06-10 05:46:38.757146+00 2025-06-10 05:46:38.757156+00 f t Homero DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2473 +2221 2025-06-10 08:30:32.386182+00 2025-06-10 08:30:32.386197+00 f t Nilo DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2474 +2222 2025-06-10 10:24:51.072447+00 2025-06-10 10:24:51.07246+00 f t Tonny CAT \N 3.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2475 +2223 2025-06-10 10:28:14.914376+00 2025-06-10 10:28:14.914389+00 f t Tommy CAT \N 3.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2476 +2224 2025-06-10 11:14:08.553851+00 2025-06-10 11:14:08.553867+00 f t Theo DOG \N 60.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2477 +2225 2025-06-10 11:15:35.187251+00 2025-06-10 11:15:35.187262+00 f t Rubia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2477 +2226 2025-06-10 11:20:25.717058+00 2025-06-10 11:20:25.71708+00 f t Poopy DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2478 +2227 2025-06-10 12:09:02.277043+00 2025-06-10 12:09:02.277058+00 f t Roma CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2479 +932 2025-05-06 16:57:14.002205+00 2025-05-06 16:57:14.002213+00 f t Gala DOG \N 1.20 0.00 f \N 2025-06-10 \N \N FEMALE \N f 8 112 826 +2081 2025-06-07 11:07:21.939274+00 2025-06-07 11:07:21.939284+00 f t Nina DOG \N 5.00 0.00 t \N \N 2025-06-09 \N \N FEMALE \N \N f \N \N 2294 +2228 2025-06-10 12:40:41.373983+00 2025-06-10 12:40:41.373997+00 f t Lola CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2482 +2229 2025-06-10 12:44:35.224039+00 2025-06-10 12:44:35.224052+00 f t Uma CAT \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2481 +2232 2025-06-10 14:18:58.730374+00 2025-06-10 14:18:58.730387+00 f t Hades DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2487 +1712 2025-05-29 14:44:04.376007+00 2025-05-29 14:44:04.376021+00 f t Saori CAT 0 2.00 0.00 f \N 2025-05-29 \N \N FEMALE \N f \N 1026 1802 +1438 2025-05-22 19:20:14.076017+00 2025-05-22 19:20:14.076026+00 f t Chala DOG 10 35.00 0.00 t \N 2025-05-22 \N \N \N \N f 58 112 1461 +1687 2025-05-28 21:21:36.032663+00 2025-05-28 21:21:36.032671+00 f t Thor DOG 5 24.00 0.00 f \N 2025-06-07 \N \N MALE Toma aphuaquel \N f 6 113 1776 +1548 2025-05-25 20:40:57.991684+00 2025-05-25 20:40:57.991691+00 f t Dinart DOG 5 50.00 0.00 f \N 2025-06-02 \N \N MALE Está tomando Predisolona 20 mg, Dixiciclina 200 ml y omeprazol.\r\nNunca tuvo problemas con nadie, salvo ayer luego de la consulta con el neurólogo que mordió a mi papá. \N f \N 114 1605 +2236 2025-06-10 15:18:52.113816+00 2025-06-10 15:18:52.113827+00 f t Pipo CAT \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2491 +2237 2025-06-10 15:45:23.272609+00 2025-06-10 15:45:23.272622+00 f t Pipi DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2492 +2238 2025-06-10 15:57:49.550984+00 2025-06-10 15:57:49.550994+00 f t Nala DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2494 +1976 2025-06-04 16:17:02.817377+00 2025-06-04 16:17:02.817388+00 f t Oaky CAT 7 0.00 0.00 t \N 2025-06-12 \N \N MALE \N f \N 1026 2157 +2202 2025-06-09 20:47:12.733627+00 2025-06-09 20:47:12.733633+00 f t Sasha CAT \N 5.00 0.00 t \N 2025-06-10 \N \N MALE \N f \N 1026 2450 +2200 2025-06-09 20:06:53.612693+00 2025-06-09 20:06:53.6127+00 f t Oso CAT 8 6.00 0.00 t \N 2025-07-29 \N \N MALE \N f \N 1026 416 +2233 2025-06-10 14:47:52.840695+00 2025-06-10 14:47:52.840705+00 f t Milu DOG 4 15.00 0.00 f \N 2025-06-11 \N \N \N \N f \N 1026 2489 +3889 2025-07-16 19:31:58.784818+00 2025-07-16 19:31:58.784828+00 f t Balto DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4686 +2231 2025-06-10 13:46:02.596611+00 2025-06-10 13:46:02.596619+00 f t Fido DOG 11 9.00 0.00 f \N 2025-06-27 \N \N MALE \N f 10 1026 2486 +2234 2025-06-10 14:48:18.165158+00 2025-06-10 14:48:18.165167+00 f t Katy DOG 2 15.00 0.00 f \N 2025-06-11 \N \N \N \N f \N 1026 2489 +1367 2025-05-21 13:50:05.047298+00 2025-05-21 13:50:05.047313+00 f t Roma CAT \N 4.70 0.00 f \N \N 2025-05-26 \N \N FEMALE \N \N f \N \N 1372 +335 2024-12-24 13:22:25.051+00 2024-12-24 13:22:25.051+00 f t Mocca DOG 9 28.00 0.00 t 2015-12-02 2025-06-07 \N \N FEMALE \N f 1 118 266 +2191 2025-06-09 16:56:39.794375+00 2025-06-09 16:56:39.794387+00 f t Kaliméra CAT \N 5.00 0.00 f \N \N 2025-06-09 \N \N FEMALE \N \N f \N \N 2433 +2235 2025-06-10 15:12:36.257577+00 2025-06-10 15:12:36.257589+00 f t Lola CAT 7 4.00 0.00 t \N 2025-06-11 \N \N FEMALE \N f \N 1026 2490 +3826 2025-07-15 14:16:40.196739+00 2025-07-15 14:16:40.196752+00 f t Pejerrey DOG \N 22.00 0.00 t \N 2021-12-07 2025-07-16 \N \N MALE \N \N f \N \N 4604 +5971 2025-08-25 17:14:39.549745+00 2025-08-25 17:14:39.54977+00 f t Alina DOG 11 5.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 7277 +2239 2025-06-10 16:00:31.282357+00 2025-06-10 16:00:31.28237+00 f t Baltasar CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2497 +2240 2025-06-10 16:00:39.651065+00 2025-06-10 16:00:39.651079+00 f t Baltasar CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2497 +2242 2025-06-10 16:34:28.273923+00 2025-06-10 16:34:28.273936+00 f t Aurora DOG \N 800.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2499 +2243 2025-06-10 17:20:24.922517+00 2025-06-10 17:20:24.922525+00 f t Blanco amarilla DOG \N 180.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2501 +2244 2025-06-10 17:37:33.140551+00 2025-06-10 17:37:33.14056+00 f t Coco DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2503 +2245 2025-06-10 18:01:42.641966+00 2025-06-10 18:01:42.641977+00 f t THOR DOG \N 33.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2504 +2246 2025-06-10 19:19:46.573173+00 2025-06-10 19:19:46.573182+00 f t Bandida DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2506 +2247 2025-06-10 19:32:21.961137+00 2025-06-10 19:32:21.96115+00 f t Ester CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2507 +3827 2025-07-15 14:21:27.669443+00 2025-07-15 14:21:27.669452+00 f t Harry DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4605 +2248 2025-06-10 20:09:58.881265+00 2025-06-10 20:09:58.881275+00 f t Copito CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2508 +2249 2025-06-10 20:23:55.987507+00 2025-06-10 20:23:55.987518+00 f t Isósceles CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2510 +2250 2025-06-10 20:27:47.824177+00 2025-06-10 20:27:47.824187+00 f t Azucar CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2511 +2251 2025-06-10 20:28:46.421817+00 2025-06-10 20:28:46.421826+00 f t Luca DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2512 +2252 2025-06-10 20:46:15.506485+00 2025-06-10 20:46:15.506495+00 f t Luca DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2513 +2276 2025-06-11 13:16:19.976726+00 2025-06-11 13:16:19.976734+00 f t Felix CAT 7 0.00 0.00 f \N 2025-06-25 \N \N \N \N f \N 1026 2547 +2253 2025-06-10 21:48:14.731295+00 2025-06-10 21:48:14.731307+00 f t Mabel CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2516 +2254 2025-06-10 21:49:59.510818+00 2025-06-10 21:49:59.510831+00 f t Aisha DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2517 +2255 2025-06-10 21:55:26.685377+00 2025-06-10 21:55:26.685387+00 f t Aisha DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2517 +2256 2025-06-10 21:57:21.605051+00 2025-06-10 21:57:21.605076+00 f t Aisha DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2518 +2257 2025-06-10 22:43:53.850297+00 2025-06-10 22:43:53.850308+00 f t Lola DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2521 +2258 2025-06-10 23:14:55.116777+00 2025-06-10 23:14:55.116792+00 f t balti DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2522 +2259 2025-06-10 23:17:43.341844+00 2025-06-10 23:17:43.341858+00 f t Roberta CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2523 +2260 2025-06-10 23:20:41.532232+00 2025-06-10 23:20:41.532245+00 f t balti DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2525 +2137 2025-06-08 13:03:48.024246+00 2025-06-08 13:03:48.024255+00 f t Prue DOG \N 22.00 0.00 t \N \N 2025-06-08 \N \N FEMALE \N \N f \N \N 2365 +2261 2025-06-11 00:03:30.78101+00 2025-06-11 00:03:30.78102+00 f t Robbie DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2526 +2262 2025-06-11 00:15:09.004408+00 2025-06-11 00:15:09.004421+00 f t Toribio DOG \N 24.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2528 +2263 2025-06-11 01:12:11.03044+00 2025-06-11 01:12:11.03045+00 f t Hope DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2529 +2264 2025-06-11 01:41:13.49606+00 2025-06-11 01:41:13.49607+00 f t Blackie CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2531 +2265 2025-06-11 01:58:16.411556+00 2025-06-11 01:58:16.411565+00 f t Sumi DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2532 +2266 2025-06-11 02:00:29.939042+00 2025-06-11 02:00:29.939059+00 f t Ronnie CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2533 +2267 2025-06-11 03:34:13.009257+00 2025-06-11 03:34:13.009271+00 f t Oreo CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2535 +2268 2025-06-11 03:48:49.430024+00 2025-06-11 03:48:49.430033+00 f t Hamsa DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2536 +2269 2025-06-11 04:07:06.281709+00 2025-06-11 04:07:06.281719+00 f t Conor CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2537 +2270 2025-06-11 09:38:55.403038+00 2025-06-11 09:38:55.403051+00 f t Rayo CAT \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2540 +2271 2025-06-11 09:55:14.791873+00 2025-06-11 09:55:14.791882+00 f t X CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2541 +2272 2025-06-11 10:57:58.120019+00 2025-06-11 10:57:58.120029+00 f t Pancho CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2542 +2273 2025-06-11 10:59:11.343517+00 2025-06-11 10:59:11.343531+00 f t Ramon CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2542 +2274 2025-06-11 11:22:24.329284+00 2025-06-11 11:22:24.329298+00 f t Diego Santoro DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2544 +2275 2025-06-11 12:38:50.553924+00 2025-06-11 12:38:50.553936+00 f t Salem DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2546 +2278 2025-06-11 13:29:41.075939+00 2025-06-11 13:29:41.075952+00 f t Sarah DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2548 +2279 2025-06-11 13:48:39.736946+00 2025-06-11 13:48:39.736956+00 f t Chloe DOG \N 0.45 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2549 +2280 2025-06-11 14:41:29.676818+00 2025-06-11 14:41:29.676828+00 f t Marty DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2550 +2281 2025-06-11 14:42:57.914444+00 2025-06-11 14:42:57.914454+00 f t Mia CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2550 +2282 2025-06-11 14:45:25.037104+00 2025-06-11 14:45:25.037113+00 f t titi CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2551 +2283 2025-06-11 15:20:26.064397+00 2025-06-11 15:20:26.064408+00 f t Toto DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2552 +2285 2025-06-11 15:28:28.369115+00 2025-06-11 15:28:28.369151+00 f t Lia CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2555 +2287 2025-06-11 15:46:55.088656+00 2025-06-11 15:46:55.08867+00 f t Sofia DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2557 +2288 2025-06-11 17:28:32.375256+00 2025-06-11 17:28:32.37527+00 f t Lucho DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2558 +2289 2025-06-11 18:30:40.942327+00 2025-06-11 18:30:40.942343+00 f t Jack CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2562 +2290 2025-06-11 18:41:15.996004+00 2025-06-11 18:41:15.996016+00 f t Luna DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2563 +2291 2025-06-11 18:42:00.936176+00 2025-06-11 18:42:00.936184+00 f t Luna CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2563 +2292 2025-06-11 18:43:47.164838+00 2025-06-11 18:43:47.164847+00 f t Luna DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2564 +2293 2025-06-11 18:46:31.774804+00 2025-06-11 18:46:31.774814+00 f t Luna DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2565 +2294 2025-06-11 18:53:32.55116+00 2025-06-11 18:53:32.551175+00 f t Lola CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2566 +2296 2025-06-11 19:10:58.05904+00 2025-06-11 19:10:58.059053+00 f t Luna DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2568 +2210 2025-06-10 00:52:04.192476+00 2025-06-10 00:52:04.192484+00 f t indio CAT 5 0.00 0.00 t \N 2025-06-20 \N \N MALE Toma pileran gotas\r\nSe estresante o se pone a la defensiva , es arisco \N f \N 114 2462 +2299 2025-06-11 20:43:00.797058+00 2025-06-11 20:43:00.797067+00 f t Tom CAT \N 3.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2570 +2300 2025-06-11 21:22:15.408712+00 2025-06-11 21:22:15.408724+00 f t Duke DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2571 +2301 2025-06-11 22:30:53.82327+00 2025-06-11 22:30:53.823278+00 f t Visenya DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2573 +2302 2025-06-11 22:33:31.808034+00 2025-06-11 22:33:31.808045+00 f t Batista DOG \N 19.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2574 +2303 2025-06-11 22:40:29.461002+00 2025-06-11 22:40:29.461011+00 f t mustafa CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2575 +2304 2025-06-11 22:53:56.333172+00 2025-06-11 22:53:56.333183+00 f t Olí CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2576 +2305 2025-06-11 23:16:26.878013+00 2025-06-11 23:16:26.878023+00 f t Niko DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2577 +2306 2025-06-11 23:28:15.937088+00 2025-06-11 23:28:15.937096+00 f t Bobby DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2579 +2307 2025-06-11 23:35:37.214179+00 2025-06-11 23:35:37.214186+00 f t Mumi CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2580 +2308 2025-06-12 00:09:47.53995+00 2025-06-12 00:09:47.539961+00 f t Nina DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2581 +2241 2025-06-10 16:18:25.981004+00 2025-06-10 16:18:25.981013+00 f t Aurora DOG \N 800.00 0.00 t \N \N 2025-06-10 \N \N FEMALE \N \N f \N \N 2498 +2310 2025-06-12 00:46:36.90419+00 2025-06-12 00:46:36.904198+00 f t Milo DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2583 +2312 2025-06-12 10:28:14.319556+00 2025-06-12 10:28:14.319565+00 f t Chopper DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2588 +2284 2025-06-11 15:21:15.18654+00 2025-06-11 15:21:15.186547+00 f t Rocco CAT 10 0.00 0.00 t \N 2025-06-11 \N \N MALE \N f \N 1026 2553 +2298 2025-06-11 19:21:56.754321+00 2025-06-11 19:21:56.754329+00 f t Figaro CAT 11 4.00 0.00 t \N 2025-06-12 \N \N MALE \N f \N 1026 2569 +2297 2025-06-11 19:21:25.949091+00 2025-06-11 19:21:25.949113+00 f t Second CAT 11 10.00 0.00 t \N 2025-06-12 \N \N MALE \N f \N 1026 2569 +2309 2025-06-12 00:40:56.271599+00 2025-06-12 00:40:56.271609+00 f t Apolo DOG 9 25.00 0.00 t \N 2025-06-12 \N \N MALE \N f 1 114 2582 +2286 2025-06-11 15:43:06.444271+00 2025-06-11 15:43:06.444278+00 f t Yoda CAT 9 5.00 0.00 t \N 2025-06-11 \N \N MALE \N f \N 1026 2556 +2295 2025-06-11 18:55:08.437537+00 2025-06-11 18:55:08.437551+00 f t Lola CAT \N 7.00 0.00 f \N \N 2025-06-19 \N \N FEMALE \N \N f \N \N 2567 +2277 2025-06-11 13:17:22.894818+00 2025-06-11 13:17:22.894825+00 f t Luna CAT 9 0.00 0.00 f \N 2025-06-25 \N \N \N \N f \N 1026 2547 +741 2025-04-03 15:53:54.982224+00 2025-04-03 15:53:54.982232+00 f t MALVINA DOG \N 0.00 0.00 f \N 2025-06-10 \N \N FEMALE \N f 2 111 631 +2311 2025-06-12 04:02:14.04984+00 2025-06-12 04:02:14.049853+00 f t Luna DOG \N 1.00 0.00 t \N \N 2025-06-13 \N \N FEMALE \N \N f \N \N 2586 +2313 2025-06-12 12:15:39.66722+00 2025-06-12 12:15:39.667229+00 f t Ton CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2593 +621 2025-03-02 22:01:15.7426+00 2025-03-02 22:01:15.74261+00 f t Margarita DOG \N 25.00 0.00 f \N 2025-06-12 \N \N FEMALE Hoy le dieron inyectable un analgesico y un antiespasmodico y esta tomando cefalexina 500 cada 12 y tramadol cada 8\r\nEs tranquila \N f 1 114 526 +2314 2025-06-12 13:08:55.025475+00 2025-06-12 13:08:55.025483+00 f t Negrita DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2594 +2315 2025-06-12 13:38:23.568065+00 2025-06-12 13:38:23.568074+00 f t Luna DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2597 +2316 2025-06-12 13:42:07.179874+00 2025-06-12 13:42:07.179882+00 f t Buda DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2598 +2371 2025-06-13 18:26:18.982757+00 2025-06-13 18:26:18.982771+00 f t Amanda CAT 0 3.00 0.00 f \N \N \N \N FEMALE \N f \N 114 2674 +2319 2025-06-12 14:33:22.490494+00 2025-06-12 14:33:22.490504+00 f t Dante DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2599 +2320 2025-06-12 14:33:37.129432+00 2025-06-12 14:33:37.129442+00 f t Dante CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2599 +3487 2025-07-08 15:11:10.482222+00 2025-07-08 15:11:10.482229+00 f t Tirso DOG \N 25.00 0.00 f \N 2025-07-08 \N \N \N \N f \N 1026 4182 +2321 2025-06-12 15:25:20.887916+00 2025-06-12 15:25:20.887929+00 f t Dante CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2601 +2322 2025-06-12 15:31:14.022451+00 2025-06-12 15:31:14.022464+00 f t Dante CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2602 +2323 2025-06-12 15:56:21.331594+00 2025-06-12 15:56:21.331603+00 f t Leopoldo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2605 +2324 2025-06-12 16:40:31.277001+00 2025-06-12 16:40:31.277013+00 f t Batata DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2607 +2325 2025-06-12 16:46:39.548645+00 2025-06-12 16:46:39.548655+00 f t Kyra CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2608 +2326 2025-06-12 17:05:38.669222+00 2025-06-12 17:05:38.669237+00 f t Marley DOG \N 32.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2609 +3867 2025-07-16 05:19:02.413126+00 2025-07-16 05:19:02.413141+00 f t Iustitia DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4653 +2330 2025-06-12 20:23:02.952206+00 2025-06-12 20:23:02.95222+00 f t Juana CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2618 +2331 2025-06-12 20:24:41.867593+00 2025-06-12 20:24:41.867601+00 f t Juana CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2618 +2367 2025-06-13 16:24:45.988032+00 2025-06-13 16:24:45.988043+00 f t Mili CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2667 +2332 2025-06-12 21:02:09.308856+00 2025-06-12 21:02:09.308867+00 f t Roma DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2619 +2333 2025-06-12 21:06:35.626543+00 2025-06-12 21:06:35.626554+00 f t Gala DOG \N 27.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2620 +2334 2025-06-12 21:06:51.132447+00 2025-06-12 21:06:51.132457+00 f t Gala DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2620 +2335 2025-06-12 21:12:43.955099+00 2025-06-12 21:12:43.955109+00 f t Bakú CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2621 +2336 2025-06-12 21:16:21.474997+00 2025-06-12 21:16:21.475007+00 f t Bakú CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2622 +2368 2025-06-13 16:41:50.996953+00 2025-06-13 16:41:50.996962+00 f t Lilu DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2668 +2337 2025-06-12 21:52:03.937762+00 2025-06-12 21:52:03.937776+00 f t Aurora DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2623 +2338 2025-06-12 22:00:49.100823+00 2025-06-12 22:00:49.100837+00 f t Astor CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2624 +2339 2025-06-12 22:06:07.239493+00 2025-06-12 22:06:07.239503+00 f t Ceniza CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2625 +2340 2025-06-12 22:11:47.461639+00 2025-06-12 22:11:47.461651+00 f t Valkiria DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2626 +2341 2025-06-12 22:13:59.886857+00 2025-06-12 22:13:59.886868+00 f t Filomena DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2627 +2342 2025-06-12 22:29:28.410851+00 2025-06-12 22:29:28.410859+00 f t Loki CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2628 +2343 2025-06-12 23:03:19.058298+00 2025-06-12 23:03:19.058306+00 f t Trist3 DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2629 +2344 2025-06-13 00:10:14.59475+00 2025-06-13 00:10:14.594765+00 f t Paco DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2630 +2346 2025-06-13 00:45:06.684361+00 2025-06-13 00:45:06.684374+00 f t Paco DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2633 +2347 2025-06-13 01:44:02.710443+00 2025-06-13 01:44:02.710456+00 f t Peoe DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2634 +2348 2025-06-13 01:46:47.109756+00 2025-06-13 01:46:47.109766+00 f t Rodolfo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2635 +2349 2025-06-13 02:53:06.263089+00 2025-06-13 02:53:06.263099+00 f t Aisha DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2636 +1215 2025-05-17 02:43:26.666671+00 2025-05-17 02:43:26.666685+00 f t Aisha DOG \N 32.00 0.00 t \N 2012-10-12 \N \N \N FEMALE \N \N f \N \N 1164 +2350 2025-06-13 03:21:16.812466+00 2025-06-13 03:21:16.812478+00 f t Elisa CAT \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2638 +2351 2025-06-13 03:34:12.491992+00 2025-06-13 03:34:12.492001+00 f t Paler CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2639 +2352 2025-06-13 03:53:46.310486+00 2025-06-13 03:53:46.310494+00 f t Tomk DOG \N 34.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2640 +2353 2025-06-13 06:39:31.746834+00 2025-06-13 06:39:31.746844+00 f t Michi CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2645 +2354 2025-06-13 10:11:15.281064+00 2025-06-13 10:11:15.281079+00 f t Cirilo DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2646 +2355 2025-06-13 10:40:53.866271+00 2025-06-13 10:40:53.866284+00 f t Renata CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2648 +2356 2025-06-13 11:15:12.285474+00 2025-06-13 11:15:12.285488+00 f t Lolito DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2649 +2357 2025-06-13 11:29:40.881516+00 2025-06-13 11:29:40.881531+00 f t Coco DOG \N 31.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2650 +2358 2025-06-13 11:39:32.953332+00 2025-06-13 11:39:32.953342+00 f t Mateo DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2651 +2359 2025-06-13 12:30:03.335657+00 2025-06-13 12:30:03.335671+00 f t Milanesa DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2654 +3890 2025-07-16 19:41:58.441209+00 2025-07-16 19:41:58.441216+00 f t Gino DOG \N 60.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4688 +3905 2025-07-17 00:20:12.789055+00 2025-07-17 00:20:12.789065+00 f t Nano DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4708 +2328 2025-06-12 19:38:28.567116+00 2025-06-12 19:38:28.567124+00 f t Sasuke DOG 2 15.00 0.00 f \N 2025-06-12 \N \N \N \N f \N 1026 2615 +2360 2025-06-13 13:12:04.074631+00 2025-06-13 13:12:04.07464+00 f t Romeo DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2656 +2375 2025-06-13 21:46:05.281809+00 2025-06-13 21:46:05.281822+00 f t Mila DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2679 +2362 2025-06-13 14:13:12.47655+00 2025-06-13 14:13:12.476561+00 f t Soka DOG \N 33.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2658 +2363 2025-06-13 14:19:31.054531+00 2025-06-13 14:19:31.054539+00 f t Soka DOG \N 33.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2660 +2365 2025-06-13 16:14:29.137907+00 2025-06-13 16:14:29.137921+00 f t Aurora DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2665 +2366 2025-06-13 16:16:48.887245+00 2025-06-13 16:16:48.88726+00 f t Aurora DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2666 +2370 2025-06-13 17:59:44.712533+00 2025-06-13 17:59:44.712548+00 f t KIARA DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2673 +6023 2025-08-26 21:58:41.184989+00 2025-08-26 21:58:41.184998+00 f t a DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7335 +2141 2025-06-08 14:32:24.872478+00 2025-06-08 14:32:24.872487+00 f t Alan DOG 0 10.00 0.00 f \N 2025-06-19 \N \N MALE \N f 1 110 2370 +2372 2025-06-13 20:25:23.780327+00 2025-06-13 20:25:23.780336+00 f t Tecka CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2675 +2373 2025-06-13 21:29:56.511948+00 2025-06-13 21:29:56.51196+00 f t Soka DOG \N 33.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2677 +2374 2025-06-13 21:41:33.568635+00 2025-06-13 21:41:33.568644+00 f t Nolan CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2678 +2376 2025-06-13 21:53:12.572852+00 2025-06-13 21:53:12.57286+00 f t pocho CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2680 +2361 2025-06-13 13:48:47.969402+00 2025-06-13 13:48:47.969411+00 f t Mollo CAT \N 6.00 0.00 f \N \N 2025-07-03 \N \N MALE \N \N f \N \N 2657 +2377 2025-06-13 22:21:34.190621+00 2025-06-13 22:21:34.190637+00 f t Benito CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2681 +560 2025-02-19 19:10:13.161675+00 2025-02-19 19:10:13.161685+00 f t Wanda DOG 13 45.00 0.00 t 2011-12-02 2025-06-12 \N \N FEMALE \N f 2 111 472 +2345 2025-06-13 00:19:32.993866+00 2025-06-13 00:19:32.993877+00 f t Olivia DOG 12 6.50 0.00 t \N 2025-06-18 \N \N FEMALE \N f 51 114 2632 +2378 2025-06-13 23:16:52.382241+00 2025-06-13 23:16:52.38225+00 f t Cocu CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2682 +2364 2025-06-13 14:41:04.567614+00 2025-06-13 14:41:04.567623+00 f t Rocco DOG 15 5.00 0.00 f \N 2025-06-13 \N \N MALE \N f \N 1026 2661 +2318 2025-06-12 14:04:56.031512+00 2025-06-12 14:04:56.031519+00 f t Petter Alejandro CAT 0 0.00 0.00 f \N 2025-06-14 \N \N \N \N f \N 1026 576 +2327 2025-06-12 19:10:41.201982+00 2025-06-12 19:10:41.20199+00 f t Marley DOG 14 33.00 0.00 t \N 2025-06-13 \N \N MALE \N f 2 1026 2614 +2317 2025-06-12 13:55:08.279939+00 2025-06-12 13:55:08.279948+00 f t Gatito CAT \N 0.00 0.00 f \N 2025-06-14 \N \N \N \N f \N 1026 352 +2369 2025-06-13 17:48:06.010567+00 2025-06-13 17:48:06.010576+00 f t Cloe CAT \N 7.00 0.00 f \N \N 2025-06-28 \N \N FEMALE \N \N f \N \N 2672 +3560 2025-07-09 23:19:24.209355+00 2025-07-09 23:19:24.209363+00 f t Benito CAT \N 4.00 0.00 t \N 2017-07-10 2025-07-21 \N \N MALE \N \N f \N \N 4265 +1775 2025-05-30 23:56:05.658468+00 2025-05-30 23:56:05.658479+00 f t Tamal DOG 13 35.00 0.00 t \N 2025-06-04 \N \N FEMALE \N t \N 113 1888 +2379 2025-06-13 23:44:37.031593+00 2025-06-13 23:44:37.031606+00 f t Aisha DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2686 +2380 2025-06-14 01:13:20.748206+00 2025-06-14 01:13:20.748221+00 f t Bella Garcia DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2687 +2381 2025-06-14 02:21:20.291618+00 2025-06-14 02:21:20.291632+00 f t VINO CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2688 +2329 2025-06-12 20:22:30.724848+00 2025-06-12 20:22:30.72486+00 f t Bianca DOG 9 35.00 0.00 t \N 2025-06-13 \N \N FEMALE \N f \N 1026 2617 +2382 2025-06-14 03:55:21.970286+00 2025-06-14 03:55:21.970295+00 f t Yoda DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2689 +2383 2025-06-14 03:56:32.000811+00 2025-06-14 03:56:32.000821+00 f t Yoda CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2689 +2384 2025-06-14 06:30:01.500675+00 2025-06-14 06:30:01.500687+00 f t Hendrix CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2691 +2385 2025-06-14 09:10:15.910373+00 2025-06-14 09:10:15.910383+00 f t roma DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2692 +2386 2025-06-14 12:08:57.80015+00 2025-06-14 12:08:57.800163+00 f t Tokio DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2693 +2387 2025-06-14 12:42:30.173424+00 2025-06-14 12:42:30.173438+00 f t Kongo DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2694 +2388 2025-06-14 12:53:57.42051+00 2025-06-14 12:53:57.420528+00 f t Moka DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2696 +2389 2025-06-14 12:54:03.070549+00 2025-06-14 12:54:03.070563+00 f t Mutti CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2695 +2390 2025-06-14 14:38:15.50363+00 2025-06-14 14:38:15.503643+00 f t rayo CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2699 +2391 2025-06-14 14:56:32.223692+00 2025-06-14 14:56:32.223702+00 f t Maike DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2702 +2392 2025-06-14 15:04:06.845192+00 2025-06-14 15:04:06.845202+00 f t Jonny DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2703 +2393 2025-06-14 16:22:18.87732+00 2025-06-14 16:22:18.87733+00 f t Filemón DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2704 +2394 2025-06-14 17:21:48.094249+00 2025-06-14 17:21:48.094263+00 f t Adam CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2705 +2209 2025-06-10 00:47:20.120257+00 2025-06-10 00:47:20.120271+00 f t Lorenzo (Lolo) CAT 8 7.00 0.00 t \N 2025-06-10 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? No\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Si \N f 27 114 2461 +2153 2025-06-08 19:43:55.17102+00 2025-06-08 19:43:55.17103+00 f t Juana CAT 8 4.50 0.00 t \N 2025-06-14 \N \N FEMALE Se asusta solo cuando va al veterinario. No suele estresarse cuando el veterinario va a domicilio. \N f \N 114 2386 +2395 2025-06-14 18:13:52.98499+00 2025-06-14 18:13:52.985003+00 f t Cachi DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2706 +2396 2025-06-14 18:40:29.127787+00 2025-06-14 18:40:29.127798+00 f t Malta DOG \N 5.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2707 +2397 2025-06-14 18:54:01.844562+00 2025-06-14 18:54:01.844574+00 f t Kenma CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2709 +3828 2025-07-15 14:23:39.926717+00 2025-07-15 14:23:39.926729+00 f t Harry DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4605 +2398 2025-06-14 20:20:23.845036+00 2025-06-14 20:20:23.845045+00 f t Juana DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2712 +3868 2025-07-16 08:46:09.803207+00 2025-07-16 08:46:09.80322+00 f t Zoe DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4658 +2399 2025-06-14 20:38:36.297264+00 2025-06-14 20:38:36.297273+00 f t Susy CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2714 +2424 2025-06-15 12:55:47.218287+00 2025-06-15 12:55:47.218301+00 f t Milo DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2743 +3891 2025-07-16 19:51:54.418407+00 2025-07-16 19:51:54.418416+00 f t Nina DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4689 +2401 2025-06-14 20:44:36.087564+00 2025-06-14 20:44:36.087576+00 f t Luke CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2716 +2403 2025-06-14 20:52:54.79945+00 2025-06-14 20:52:54.799461+00 f t Lucia CAT \N 4.00 0.00 t \N 2025-06-17 \N \N FEMALE Los 2 pueden asustarse pero uno se pone a la defensiva \N f 27 114 2718 +6024 2025-08-26 22:47:11.615291+00 2025-08-26 22:47:11.615304+00 f t Cleo CAT \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7336 +2406 2025-06-14 23:26:09.399679+00 2025-06-14 23:26:09.399719+00 f t Lila DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2720 +2407 2025-06-14 23:26:21.855588+00 2025-06-14 23:26:21.8556+00 f t Kyra CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2721 +2408 2025-06-14 23:26:43.05447+00 2025-06-14 23:26:43.054479+00 f t Tom CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2721 +2409 2025-06-14 23:29:15.693337+00 2025-06-14 23:29:15.693346+00 f t Kyra CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2722 +2410 2025-06-14 23:36:05.586958+00 2025-06-14 23:36:05.586968+00 f t Catty DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2723 +2411 2025-06-15 00:48:23.185866+00 2025-06-15 00:48:23.185877+00 f t Pericles CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2725 +2412 2025-06-15 00:55:42.336244+00 2025-06-15 00:55:42.336257+00 f t Indio DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2726 +2413 2025-06-15 01:03:57.443597+00 2025-06-15 01:03:57.44361+00 f t Anis CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2727 +2414 2025-06-15 01:05:16.146624+00 2025-06-15 01:05:16.146637+00 f t Cuantró CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2727 +2415 2025-06-15 01:05:52.362627+00 2025-06-15 01:05:52.362641+00 f t Cajú CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2727 +2416 2025-06-15 02:08:36.9961+00 2025-06-15 02:08:36.996109+00 f t Vikingo DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2730 +2417 2025-06-15 02:46:46.605528+00 2025-06-15 02:46:46.605537+00 f t Ludovico CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2731 +2419 2025-06-15 03:04:42.42781+00 2025-06-15 03:04:42.427819+00 f t Adira DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2733 +2420 2025-06-15 03:27:58.519882+00 2025-06-15 03:27:58.519894+00 f t Rigby CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2735 +2421 2025-06-15 03:54:04.7182+00 2025-06-15 03:54:04.718211+00 f t Kobe DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2736 +2422 2025-06-15 04:46:19.206781+00 2025-06-15 04:46:19.206793+00 f t Percy DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2738 +2423 2025-06-15 12:48:19.078869+00 2025-06-15 12:48:19.078881+00 f t Zora DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2742 +2425 2025-06-15 13:22:14.006785+00 2025-06-15 13:22:14.006795+00 f t Rocki DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2744 +2426 2025-06-15 13:23:48.280963+00 2025-06-15 13:23:48.280971+00 f t Gato CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2745 +2427 2025-06-15 13:43:17.54518+00 2025-06-15 13:43:17.54519+00 f t Tigre CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2746 +2428 2025-06-15 14:19:49.845853+00 2025-06-15 14:19:49.845863+00 f t Curry CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2747 +2429 2025-06-15 15:02:53.750523+00 2025-06-15 15:02:53.750534+00 f t Churrascon DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2748 +2430 2025-06-15 15:24:37.38426+00 2025-06-15 15:24:37.384273+00 f t Thomas DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2749 +2431 2025-06-15 15:28:16.742629+00 2025-06-15 15:28:16.742639+00 f t Oliver CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2750 +2432 2025-06-15 17:21:35.052748+00 2025-06-15 17:21:35.05276+00 f t Thomas DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2753 +2400 2025-06-14 20:38:39.692314+00 2025-06-14 20:38:39.692322+00 f t Selva DOG 8 8.00 0.00 t \N 2025-06-13 \N \N FEMALE \N f \N 114 2713 +2418 2025-06-15 02:52:37.646957+00 2025-06-15 02:52:37.646969+00 f t Blue DOG \N 25.00 0.00 f \N \N 2025-08-13 \N \N MALE \N \N f \N \N 2732 +2435 2025-06-15 17:38:43.573759+00 2025-06-15 17:38:43.5738+00 f t Rey DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2755 +2436 2025-06-15 18:27:20.800294+00 2025-06-15 18:27:20.800308+00 f t Jimmy DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2757 +2437 2025-06-15 19:04:17.954679+00 2025-06-15 19:04:17.954693+00 f t milo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2758 +2514 2025-06-17 13:35:25.724232+00 2025-06-17 13:35:25.724244+00 f t thor DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2853 +2404 2025-06-14 20:53:28.281698+00 2025-06-14 20:53:28.281707+00 f t Lucas CAT 0 4.00 0.00 t \N 2025-06-17 \N \N MALE Los 2 pueden asustarse pero uno se pone a la defensiva \N f 27 114 2718 +2513 2025-06-17 13:20:14.497816+00 2025-06-17 13:20:14.497829+00 f t Gaspar DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2852 +820 2025-04-20 21:55:43.860296+00 2025-04-20 21:55:43.860303+00 f t Odin CAT 7 0.00 0.00 t 2018-07-10 2025-07-14 \N \N MALE \N f \N 114 703 +2515 2025-06-17 13:38:52.729409+00 2025-06-17 13:38:52.729432+00 f t Narda DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2854 +2402 2025-06-14 20:48:10.955759+00 2025-06-14 20:48:10.955769+00 f t Uma DOG 15 37.50 0.00 f \N 2025-06-16 \N \N FEMALE Ol trans flex 1xdia\r\nPrevicox 227mg 3/4 x dia\r\nProteliv 2 x dia\r\nNo, es muy mansita \N f 2 114 2717 +2517 2025-06-17 14:27:53.608091+00 2025-06-17 14:27:53.608103+00 f t romeo DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2857 +2434 2025-06-15 17:25:54.109472+00 2025-06-15 17:25:54.10948+00 f t Oliver CAT 2 0.00 0.00 f \N 2025-06-17 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál?\r\nNo\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce?\r\nSi \N f \N 114 2754 +628 2025-03-04 21:03:24.246985+00 2025-03-04 21:03:24.246995+00 f t Perro de Leo DOG 3 11.00 0.00 f 2021-12-02 2025-07-13 \N \N MALE Cuando venga le mostramos la medicación q tomó.\r\nEs un perro q no muerde, muy inquieto y juguetón \N f 8 114 533 +2467 2025-06-16 14:11:31.829788+00 2025-06-16 14:11:31.829801+00 f t Tito DOG 0 40.00 0.00 f \N 2025-06-16 \N \N MALE \N t \N 113 2803 +3829 2025-07-15 14:42:49.747162+00 2025-07-15 14:42:49.747174+00 f t Chardo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4607 +3869 2025-07-16 10:56:03.794009+00 2025-07-16 10:56:03.794022+00 f t Toby DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4659 +2438 2025-06-15 20:35:55.66497+00 2025-06-15 20:35:55.664982+00 f t Carbon CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2759 +3892 2025-07-16 20:08:01.158087+00 2025-07-16 20:08:01.158097+00 f t PAnchi DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4690 +2440 2025-06-15 21:11:25.622142+00 2025-06-15 21:11:25.622153+00 f t Julia CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2761 +2441 2025-06-15 21:27:03.839834+00 2025-06-15 21:27:03.839847+00 f t Estrellon CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2763 +2442 2025-06-15 21:55:38.614431+00 2025-06-15 21:55:38.614443+00 f t Manu CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2766 +2443 2025-06-15 21:59:50.918038+00 2025-06-15 21:59:50.91805+00 f t Pupo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2767 +2444 2025-06-15 22:09:35.725573+00 2025-06-15 22:09:35.725586+00 f t Pinky CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2768 +2445 2025-06-15 22:35:38.007604+00 2025-06-15 22:35:38.007613+00 f t Cristobal DOG \N 56.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2770 +2446 2025-06-15 22:38:04.785652+00 2025-06-15 22:38:04.785665+00 f t Cristóbal DOG \N 60.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2771 +2447 2025-06-15 22:51:16.531928+00 2025-06-15 22:51:16.531939+00 f t Sultán DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2773 +2448 2025-06-15 22:57:56.250858+00 2025-06-15 22:57:56.250868+00 f t Frida CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2774 +2449 2025-06-15 23:09:44.412006+00 2025-06-15 23:09:44.412015+00 f t Tomas CAT \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2775 +2450 2025-06-15 23:12:44.921475+00 2025-06-15 23:12:44.921487+00 f t Tomas CAT \N 2.60 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2776 +2451 2025-06-15 23:24:11.374244+00 2025-06-15 23:24:11.374256+00 f t Tito CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2777 +2452 2025-06-15 23:24:39.803957+00 2025-06-15 23:24:39.803966+00 f t Tito CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2778 +2453 2025-06-16 00:05:10.82479+00 2025-06-16 00:05:10.824803+00 f t Gordo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2781 +2454 2025-06-16 00:09:02.155579+00 2025-06-16 00:09:02.155593+00 f t Charly CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2782 +2455 2025-06-16 00:55:19.618129+00 2025-06-16 00:55:19.618139+00 f t Gris CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2783 +2456 2025-06-16 01:29:40.160034+00 2025-06-16 01:29:40.160047+00 f t Shari DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2784 +2457 2025-06-16 02:11:42.077768+00 2025-06-16 02:11:42.077778+00 f t Benja CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2786 +2458 2025-06-16 02:36:14.111607+00 2025-06-16 02:36:14.111619+00 f t Kyra DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2787 +2459 2025-06-16 03:18:20.597964+00 2025-06-16 03:18:20.597973+00 f t Eduarda CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2789 +2460 2025-06-16 03:21:24.963117+00 2025-06-16 03:21:24.963178+00 f t Eduarda CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2790 +2461 2025-06-16 03:27:45.820079+00 2025-06-16 03:27:45.820089+00 f t Jano DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2791 +5972 2025-08-25 17:22:20.199574+00 2025-08-25 17:22:20.199935+00 f t Ambar DOG 9 10.00 0.00 t \N \N \N \N FEMALE Tramadol, corticoide y antibiotico (amoxi +clavulanico) por la boca \N f 8 1208 7278 +2463 2025-06-16 08:21:44.979225+00 2025-06-16 08:21:44.979237+00 f t Nala CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2795 +2464 2025-06-16 09:55:46.378916+00 2025-06-16 09:55:46.378929+00 f t Mini CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2796 +2465 2025-06-16 11:52:20.873453+00 2025-06-16 11:52:20.873461+00 f t Lupe CAT \N 3.60 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2797 +2466 2025-06-16 13:57:06.957729+00 2025-06-16 13:57:06.957739+00 f t Copito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2802 +3907 2025-07-17 01:44:51.06131+00 2025-07-17 01:44:51.061319+00 f t Tobi DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4711 +2468 2025-06-16 14:33:11.568731+00 2025-06-16 14:33:11.568738+00 f t Jano DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2804 +2469 2025-06-16 14:42:29.942782+00 2025-06-16 14:42:29.942802+00 f t Nala CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2805 +2462 2025-06-16 03:48:00.810732+00 2025-06-16 03:48:00.810746+00 f t Jano DOG 0 36.00 0.00 t \N 2025-08-18 \N \N MALE \N f \N 1208 2792 +2490 2025-06-16 22:09:52.50354+00 2025-06-16 22:09:52.503551+00 f t Roeo CAT \N 1.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2831 +2470 2025-06-16 16:06:43.65258+00 2025-06-16 16:06:43.652595+00 f t Amelie DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2806 +2471 2025-06-16 16:31:23.407853+00 2025-06-16 16:31:23.407864+00 f t Felipe CAT \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2807 +2472 2025-06-16 16:33:23.634151+00 2025-06-16 16:33:23.634165+00 f t Frida CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2807 +2473 2025-06-16 16:34:25.501439+00 2025-06-16 16:34:25.501453+00 f t Juana CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2807 +2474 2025-06-16 16:43:19.099388+00 2025-06-16 16:43:19.099399+00 f t Gordo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2808 +2475 2025-06-16 16:47:26.869034+00 2025-06-16 16:47:26.869042+00 f t Nacho DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2809 +2476 2025-06-16 16:59:27.952131+00 2025-06-16 16:59:27.95214+00 f t Ol CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2811 +2477 2025-06-16 17:01:21.732879+00 2025-06-16 17:01:21.732887+00 f t Yu CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2811 +2491 2025-06-16 22:13:53.346427+00 2025-06-16 22:13:53.346438+00 f t Meli DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2831 +2478 2025-06-16 18:43:52.898189+00 2025-06-16 18:43:52.898202+00 f t Hanna DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2818 +2479 2025-06-16 19:55:50.990763+00 2025-06-16 19:55:50.990772+00 f t Michi Kun CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2820 +1156 2025-05-15 15:44:00.892886+00 2025-05-15 15:44:00.892899+00 f t Luna CAT 1 0.00 0.00 f \N 2025-05-15 \N \N \N VILEF + \N f \N 112 1087 +1158 2025-05-15 15:44:45.475617+00 2025-05-15 15:44:45.475627+00 f t Sammy CAT 1 0.00 0.00 f \N 2025-05-15 \N \N \N VILEF + \N f \N 112 1087 +2492 2025-06-16 22:14:41.542292+00 2025-06-16 22:14:41.542301+00 f t Nino CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2832 +2512 2025-06-17 12:49:28.571631+00 2025-06-17 12:49:28.571642+00 f t Popi DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2851 +2493 2025-06-16 22:17:55.153903+00 2025-06-16 22:17:55.153915+00 f t Tiernito DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2833 +2510 2025-06-17 05:00:05.798443+00 2025-06-17 05:00:05.798458+00 f t R CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2847 +2494 2025-06-16 22:30:51.186197+00 2025-06-16 22:30:51.186218+00 f t Merlu DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2834 +2484 2025-06-16 20:54:16.251207+00 2025-06-16 20:54:16.251218+00 f t Jon snow DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2825 +2485 2025-06-16 20:56:53.645469+00 2025-06-16 20:56:53.645481+00 f t Teodoro CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2826 +2503 2025-06-17 00:57:14.827703+00 2025-06-17 00:57:14.827713+00 f t Sira DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2841 +2482 2025-06-16 20:15:39.085449+00 2025-06-16 20:15:39.085456+00 f t Moka CAT \N 0.00 0.00 f \N 2025-06-16 \N \N MALE \N f \N 113 2822 +2486 2025-06-16 21:07:17.720755+00 2025-06-16 21:07:17.720766+00 f t Vito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2827 +2487 2025-06-16 21:08:29.346274+00 2025-06-16 21:08:29.346286+00 f t Simon CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2827 +2489 2025-06-16 21:51:07.991029+00 2025-06-16 21:51:07.991042+00 f t Aldo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2830 +2495 2025-06-16 22:34:47.755633+00 2025-06-16 22:34:47.755642+00 f t Oni DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2834 +2496 2025-06-16 22:35:33.003687+00 2025-06-16 22:35:33.0037+00 f t Pericles CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2834 +2497 2025-06-16 22:37:15.907123+00 2025-06-16 22:37:15.907173+00 f t Kaei CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2834 +2499 2025-06-16 23:46:02.191337+00 2025-06-16 23:46:02.19135+00 f t Sony DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2836 +2500 2025-06-17 00:17:39.061214+00 2025-06-17 00:17:39.061223+00 f t Otto DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2837 +2439 2025-06-15 20:52:49.455612+00 2025-06-15 20:52:49.455624+00 f t Vivaldi CAT 0 10.00 0.00 f \N 2025-06-16 \N \N MALE \N f \N 114 2760 +2481 2025-06-16 20:09:51.010234+00 2025-06-16 20:09:51.010245+00 f t Travis CAT 1 5.00 0.00 t \N 2025-06-16 \N \N FEMALE \N f \N 113 2821 +2480 2025-06-16 20:09:32.840818+00 2025-06-16 20:09:32.840824+00 f t Syroh CAT 5 6.00 0.00 t \N 2025-06-16 \N \N MALE \N f \N 113 2821 +2498 2025-06-16 23:11:06.570272+00 2025-06-16 23:11:06.570285+00 f t Mario DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2835 +2501 2025-06-17 00:18:58.212412+00 2025-06-17 00:18:58.212421+00 f t Ramona CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2838 +2502 2025-06-17 00:29:34.629303+00 2025-06-17 00:29:34.629315+00 f t Layla DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2839 +2504 2025-06-17 01:30:54.778621+00 2025-06-17 01:30:54.778631+00 f t Ivy CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2843 +2505 2025-06-17 03:01:18.469957+00 2025-06-17 03:01:18.469967+00 f t Willi CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2844 +2506 2025-06-17 03:01:42.746809+00 2025-06-17 03:01:42.746822+00 f t Willy DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2844 +2507 2025-06-17 03:14:35.716749+00 2025-06-17 03:14:35.716757+00 f t Napoleón CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2845 +2508 2025-06-17 03:26:05.493555+00 2025-06-17 03:26:05.493565+00 f t Almendra DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2846 +2509 2025-06-17 03:26:39.235994+00 2025-06-17 03:26:39.236007+00 f t Amapola CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2846 +2511 2025-06-17 05:25:05.710771+00 2025-06-17 05:25:05.710782+00 f t Ema CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2848 +2518 2025-06-17 14:34:21.697757+00 2025-06-17 14:34:21.697768+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2858 +2519 2025-06-17 14:37:28.20687+00 2025-06-17 14:37:28.206879+00 f t TEST DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2859 +2520 2025-06-17 14:38:37.438801+00 2025-06-17 14:38:37.43881+00 f t TEST DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2860 +2521 2025-06-17 14:39:17.119692+00 2025-06-17 14:39:17.119703+00 f t Nino CAT \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2861 +2522 2025-06-17 14:39:21.481417+00 2025-06-17 14:39:21.48143+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2862 +2523 2025-06-17 14:41:00.13232+00 2025-06-17 14:41:00.132352+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2863 +2524 2025-06-17 14:59:21.147301+00 2025-06-17 14:59:21.147316+00 f t Lulú DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2866 +2525 2025-06-17 15:10:04.185437+00 2025-06-17 15:10:04.185451+00 f t Michu CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2867 +2526 2025-06-17 15:10:28.828013+00 2025-06-17 15:10:28.828027+00 f t Melocoton DOG \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2868 +2527 2025-06-17 15:10:46.04326+00 2025-06-17 15:10:46.043272+00 f t Melocoton CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2868 +2528 2025-06-17 15:12:22.582042+00 2025-06-17 15:12:22.582056+00 f t Coconut CAT \N 4.10 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2868 +2530 2025-06-17 15:27:17.430928+00 2025-06-17 15:27:17.430937+00 f t Michu CAT \N 6.00 30.00 t \N 2014-11-04 \N \N \N MALE \N \N f \N \N 2867 +2531 2025-06-17 15:46:38.8245+00 2025-06-17 15:46:38.824508+00 f t Adam CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2870 +2532 2025-06-17 15:51:46.859872+00 2025-06-17 15:51:46.85988+00 f t Michu CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2871 +2533 2025-06-17 16:16:39.589127+00 2025-06-17 16:16:39.589135+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2873 +2529 2025-06-17 15:21:29.086569+00 2025-06-17 15:21:29.08658+00 f t Romeo DOG 14 40.00 0.00 t \N 2025-06-17 \N \N MALE \N f 58 1026 2869 +2534 2025-06-17 17:21:03.57264+00 2025-06-17 17:21:03.572652+00 f t Lana DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2874 +2535 2025-06-17 17:53:45.510748+00 2025-06-17 17:53:45.510757+00 f t KIA DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2876 +2536 2025-06-17 17:55:14.201533+00 2025-06-17 17:55:14.201546+00 f t Lola DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2876 +2537 2025-06-17 18:02:29.022079+00 2025-06-17 18:02:29.022093+00 f t Pipino CAT \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2877 +2538 2025-06-17 18:56:49.166881+00 2025-06-17 18:56:49.166892+00 f t Morena DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2879 +5973 2025-08-25 17:57:10.664376+00 2025-08-25 17:57:10.66439+00 f t Lorna DOG \N 45.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7279 +2541 2025-06-17 21:17:12.786089+00 2025-06-17 21:17:12.786101+00 f t Coki DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2882 +2542 2025-06-17 21:31:01.769266+00 2025-06-17 21:31:01.76928+00 f t Pepe CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2883 +2543 2025-06-17 21:55:05.115041+00 2025-06-17 21:55:05.115053+00 f t Kuky CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2884 +2544 2025-06-17 23:50:05.181668+00 2025-06-17 23:50:05.181686+00 f t Albi CAT \N 2.70 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2889 +2571 2025-06-18 17:30:54.16963+00 2025-06-18 17:30:54.169644+00 f t Kuka DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2929 +2545 2025-06-18 00:15:15.93652+00 2025-06-18 00:15:15.936533+00 f t Simba DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2890 +2546 2025-06-18 00:43:35.964365+00 2025-06-18 00:43:35.964375+00 f t Cristian DOG \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2891 +2572 2025-06-18 17:43:47.218352+00 2025-06-18 17:43:47.218364+00 f t Perri CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2930 +2551 2025-06-18 02:32:14.143246+00 2025-06-18 02:32:14.143255+00 f t campa DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2896 +2552 2025-06-18 02:35:30.692782+00 2025-06-18 02:35:30.692792+00 f t Valkyria CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2897 +2553 2025-06-18 02:49:34.485669+00 2025-06-18 02:49:34.485677+00 f t Iorio DOG \N 29.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2900 +2554 2025-06-18 04:55:25.704813+00 2025-06-18 04:55:25.704822+00 f t mechi CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2902 +2555 2025-06-18 05:39:34.680476+00 2025-06-18 05:39:34.680487+00 f t Argos DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2903 +2556 2025-06-18 06:07:37.8842+00 2025-06-18 06:07:37.88421+00 f t Chiquitin CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2904 +2557 2025-06-18 06:12:21.079937+00 2025-06-18 06:12:21.079948+00 f t Chiquis CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2905 +2558 2025-06-18 11:24:50.951954+00 2025-06-18 11:24:50.951966+00 f t Summer DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2910 +2559 2025-06-18 12:26:05.212097+00 2025-06-18 12:26:05.21211+00 f t Rufus CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2911 +2578 2025-06-18 21:23:32.862877+00 2025-06-18 21:23:32.862886+00 f t Polo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2939 +2560 2025-06-18 13:04:44.091168+00 2025-06-18 13:04:44.091181+00 f t Inka DOG \N 39.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2913 +2561 2025-06-18 14:08:23.40164+00 2025-06-18 14:08:23.401652+00 f t Gato CAT \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2914 +2562 2025-06-18 15:17:42.10986+00 2025-06-18 15:17:42.109871+00 f t Pipi DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2916 +2563 2025-06-18 15:18:44.973571+00 2025-06-18 15:18:44.97358+00 f t Pipi DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2917 +2564 2025-06-18 16:09:43.782186+00 2025-06-18 16:09:43.782195+00 f t Dobby CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2922 +2565 2025-06-18 16:12:11.503624+00 2025-06-18 16:12:11.503638+00 f t Dobby CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2923 +2566 2025-06-18 16:19:47.765004+00 2025-06-18 16:19:47.765017+00 f t Justin DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2924 +2568 2025-06-18 16:29:07.891028+00 2025-06-18 16:29:07.891036+00 f t Renata DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2926 +3870 2025-07-16 10:57:45.396265+00 2025-07-16 10:57:45.396275+00 f t Toby DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4659 +2569 2025-06-18 17:22:48.428496+00 2025-06-18 17:22:48.428505+00 f t Daisy CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2927 +2570 2025-06-18 17:26:04.464052+00 2025-06-18 17:26:04.464062+00 f t Daisy CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2928 +2540 2025-06-17 21:01:25.525664+00 2025-06-17 21:01:25.525673+00 f t Michu CAT 9 6.00 0.00 t \N 2025-06-18 \N \N FEMALE \N f \N 1026 2881 +2573 2025-06-18 18:19:59.152736+00 2025-06-18 18:19:59.152749+00 f t Antonia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2932 +2574 2025-06-18 18:43:34.488281+00 2025-06-18 18:43:34.488293+00 f t chiqui CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2933 +2539 2025-06-17 18:57:03.917351+00 2025-06-17 18:57:03.917365+00 f t Manny CAT 0 4.60 0.00 f \N 2025-06-17 \N \N MALE \N f \N \N 2880 +2575 2025-06-18 18:55:45.762893+00 2025-06-18 18:55:45.7629+00 f t Melody CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2934 +2576 2025-06-18 19:25:40.390896+00 2025-06-18 19:25:40.390907+00 f t Elias DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2936 +2548 2025-06-18 01:31:11.815822+00 2025-06-18 01:31:11.815831+00 f t Saul CAT \N 5.00 0.00 t \N 2025-06-20 \N \N MALE \N f \N 113 2894 +2577 2025-06-18 19:41:46.329454+00 2025-06-18 19:41:46.329463+00 f t Kira DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2938 +2579 2025-06-18 22:21:08.016431+00 2025-06-18 22:21:08.016447+00 f t kala DOG \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2941 +2580 2025-06-18 22:37:03.668353+00 2025-06-18 22:37:03.66837+00 f t Phil DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2942 +2567 2025-06-18 16:21:57.139105+00 2025-06-18 16:21:57.139114+00 f t Valentina DOG 3 2.70 0.00 f \N 2025-07-12 \N \N FEMALE \N f 8 112 2925 +2582 2025-06-18 22:54:34.548268+00 2025-06-18 22:54:34.548281+00 f t Colombo DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2944 +2583 2025-06-18 22:54:47.880132+00 2025-06-18 22:54:47.880146+00 f t Amor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2945 +2584 2025-06-18 23:50:57.263105+00 2025-06-18 23:50:57.263115+00 f t Catalina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2947 +2585 2025-06-19 00:06:23.96099+00 2025-06-19 00:06:23.961+00 f t Nina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2951 +2550 2025-06-18 01:38:49.122897+00 2025-06-18 01:38:49.122905+00 f t Alberto Poyolsky Franco de Manríque CAT 3 3.00 0.00 t \N 2025-06-18 \N \N FEMALE \N f 27 113 2895 +3893 2025-07-16 20:29:09.952631+00 2025-07-16 20:29:09.952643+00 f t Leyla DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4691 +985 2025-05-09 13:26:43.26667+00 2025-05-09 13:26:43.266677+00 f t Vader DOG 10 26.00 0.00 t \N 2025-06-17 \N \N \N \N f \N 112 873 +2581 2025-06-18 22:42:21.453544+00 2025-06-18 22:42:21.453556+00 f t Pep DOG 0 3.50 0.00 t \N 2025-06-19 \N \N FEMALE \N f \N 113 2943 +2516 2025-06-17 14:26:51.137459+00 2025-06-17 14:26:51.137468+00 f t Chopi DOG 4 30.00 0.00 f \N 2025-06-19 \N \N MALE \N f \N 1026 2856 +3908 2025-07-17 02:33:34.608054+00 2025-07-17 02:33:34.608066+00 f t Maria Laura Cacace DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4713 +2547 2025-06-18 01:16:15.088412+00 2025-06-18 01:16:15.088419+00 f t Lunas DOG 0 0.00 0.00 f \N 2025-07-21 \N \N \N \N f \N 113 2892 +2586 2025-06-19 00:06:44.809457+00 2025-06-19 00:06:44.809465+00 f t Chimuelo CAT 10 5.00 0.00 t \N 2025-06-20 \N \N MALE Temperamento \N f \N 113 2950 +641 2025-03-08 16:36:14.77613+00 2025-03-08 16:36:14.776142+00 f t Negrita DOG 10 18.00 0.00 f 2014-12-02 2025-07-04 \N \N FEMALE No , la perra es súper buena y si bien puede asustarse no reacciona agresivamente\r\nNo tomo ninguna medicación en los siguientes días . \N f \N 114 544 +3830 2025-07-15 14:55:53.009466+00 2025-07-15 14:55:53.009475+00 f t Shiloh DOG 13 3.00 0.00 t 2012-06-12 2025-07-16 \N \N MALE \N f 8 1026 4604 +3831 2025-07-15 15:21:26.710657+00 2025-07-15 15:21:26.710669+00 f t 2 DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4608 +2622 2025-06-19 19:16:01.811755+00 2025-06-19 19:16:01.811766+00 f t Padme Sofía DOG 12 3.40 0.00 t \N 2025-07-12 \N \N \N \N f 8 1026 2925 +2589 2025-06-19 00:38:33.623865+00 2025-06-19 00:38:33.623875+00 f t Alma DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2952 +2488 2025-06-16 21:46:06.263124+00 2025-06-16 21:46:06.263162+00 f t Jon Snow CAT 10 9.00 0.00 t \N 2025-06-17 \N \N MALE Shiba Inu \N f \N 113 2829 +2590 2025-06-19 00:57:33.986869+00 2025-06-19 00:57:33.986883+00 f t Amor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2954 +2591 2025-06-19 01:07:31.673607+00 2025-06-19 01:07:31.673621+00 f t Coqui DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2955 +2592 2025-06-19 01:21:51.80296+00 2025-06-19 01:21:51.802971+00 f t Brandon DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2956 +2593 2025-06-19 01:23:03.218345+00 2025-06-19 01:23:03.218356+00 f t Brandon DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2957 +2594 2025-06-19 01:23:40.028855+00 2025-06-19 01:23:40.028868+00 f t Y DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2958 +2595 2025-06-19 01:50:54.554068+00 2025-06-19 01:50:54.554079+00 f t Chucrut DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2962 +2596 2025-06-19 02:41:29.521833+00 2025-06-19 02:41:29.521847+00 f t Kai DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2963 +2597 2025-06-19 02:56:08.1282+00 2025-06-19 02:56:08.128217+00 f t Frosen CAT \N 5.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2964 +2598 2025-06-19 03:32:22.912442+00 2025-06-19 03:32:22.912453+00 f t Uu DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2965 +2599 2025-06-19 03:33:51.44802+00 2025-06-19 03:33:51.448034+00 f t 5tr DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2966 +2600 2025-06-19 05:27:25.332804+00 2025-06-19 05:27:25.332814+00 f t Aramis CAT \N 4.00 1.00 t \N 2024-01-16 2025-05-30 2025-04-01 2025-04-01 MALE \N \N f \N \N 168 +2643 2025-06-20 01:17:18.889388+00 2025-06-20 01:17:18.889399+00 f t Luna DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3030 +2601 2025-06-19 05:27:49.342125+00 2025-06-19 05:27:49.342136+00 f t Aramis CAT \N 4.00 0.00 t No es alergico 2024-01-16 2025-05-30 2025-04-01 2025-04-01 MALE Normal. \N f \N \N 168 +2602 2025-06-19 10:00:34.473884+00 2025-06-19 10:00:34.473896+00 f t Sophie CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2968 +2603 2025-06-19 10:39:48.588098+00 2025-06-19 10:39:48.588112+00 f t Sambo DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2969 +11803 2025-11-24 11:39:01.953703+00 2025-11-24 11:39:01.953717+00 f t Arya DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14318 +2605 2025-06-19 12:25:06.023724+00 2025-06-19 12:25:06.023737+00 f t Berlín CAT \N 4.30 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2972 +2607 2025-06-19 13:13:23.497105+00 2025-06-19 13:13:23.497118+00 f t Brako DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2974 +2608 2025-06-19 13:20:09.928788+00 2025-06-19 13:20:09.928802+00 f t Bety CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2975 +2644 2025-06-20 01:17:34.916388+00 2025-06-20 01:17:34.916403+00 f t Burlete CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3031 +2645 2025-06-20 02:16:59.099036+00 2025-06-20 02:16:59.099046+00 f t Uma CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3032 +2610 2025-06-19 15:37:56.448123+00 2025-06-19 15:37:56.448134+00 f t Nene DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2977 +2611 2025-06-19 16:05:59.211108+00 2025-06-19 16:05:59.211124+00 f t Enriqueto DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2978 +2646 2025-06-20 03:08:47.866846+00 2025-06-20 03:08:47.86686+00 f t Menta DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3034 +2612 2025-06-19 16:43:15.398918+00 2025-06-19 16:43:15.398928+00 f t Jano DOG \N 37.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2981 +2613 2025-06-19 16:55:35.169306+00 2025-06-19 16:55:35.16932+00 f t Stitch DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2982 +2614 2025-06-19 16:55:47.68012+00 2025-06-19 16:55:47.680129+00 f t Marley DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2983 +2615 2025-06-19 17:05:28.644109+00 2025-06-19 17:05:28.644121+00 f t Perceo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2985 +2616 2025-06-19 17:11:59.300613+00 2025-06-19 17:11:59.300622+00 f t Phoebe CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2987 +2617 2025-06-19 17:13:17.285622+00 2025-06-19 17:13:17.285632+00 f t Bonnie DOG \N 36.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2987 +2618 2025-06-19 17:15:52.560314+00 2025-06-19 17:15:52.560325+00 f t Roky DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2988 +2619 2025-06-19 17:46:23.81753+00 2025-06-19 17:46:23.817546+00 f t Kira DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 2991 +2620 2025-06-19 18:11:33.965852+00 2025-06-19 18:11:33.965866+00 f t YEKO CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2992 +2621 2025-06-19 19:06:25.472239+00 2025-06-19 19:06:25.47225+00 f t Tommy CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2997 +2624 2025-06-19 20:03:35.353133+00 2025-06-19 20:03:35.353146+00 f t Renata DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2999 +2625 2025-06-19 20:07:52.83676+00 2025-06-19 20:07:52.83677+00 f t Eva CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3000 +2627 2025-06-19 20:50:10.705325+00 2025-06-19 20:50:10.705339+00 f t C DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3003 +2628 2025-06-19 21:11:55.783295+00 2025-06-19 21:11:55.783305+00 f t Rafael CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3004 +2629 2025-06-19 21:28:21.12442+00 2025-06-19 21:28:21.124434+00 f t Astro CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3005 +2630 2025-06-19 22:17:26.903434+00 2025-06-19 22:17:26.903445+00 f t Jano CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3006 +2623 2025-06-19 19:17:12.278986+00 2025-06-19 19:17:12.278994+00 f t Bianca DOG 4 1.60 0.00 f \N 2025-07-12 \N \N FEMALE \N f 9 1026 2925 +2631 2025-06-19 22:34:00.000777+00 2025-06-19 22:34:00.00079+00 f t Arena DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3007 +2632 2025-06-19 22:59:11.285956+00 2025-06-19 22:59:11.285967+00 f t Otto DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3009 +2633 2025-06-19 23:07:27.543737+00 2025-06-19 23:07:27.543749+00 f t Otto DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3010 +2634 2025-06-19 23:17:36.564231+00 2025-06-19 23:17:36.56424+00 f t Sasha DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3011 +2635 2025-06-19 23:27:41.48382+00 2025-06-19 23:27:41.48383+00 f t Bruno CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3012 +2636 2025-06-19 23:28:24.542847+00 2025-06-19 23:28:24.542857+00 f t Regina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3012 +2637 2025-06-19 23:28:55.760753+00 2025-06-19 23:28:55.760763+00 f t Max DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3012 +2638 2025-06-19 23:46:22.923003+00 2025-06-19 23:46:22.923014+00 f t azul DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3014 +2609 2025-06-19 13:21:23.728621+00 2025-06-19 13:21:23.728631+00 f t Violeta CAT \N 4.30 0.00 t \N 2025-06-27 \N \N FEMALE Se estresa con facilidad y puede atacar \N f 30 1026 2976 +2639 2025-06-20 00:30:17.980091+00 2025-06-20 00:30:17.980103+00 f t Toby DOG \N 28.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3017 +2640 2025-06-20 01:04:47.729008+00 2025-06-20 01:04:47.729019+00 f t Chinchu DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3022 +2626 2025-06-19 20:32:45.055059+00 2025-06-19 20:32:45.055069+00 f t Max DOG \N 0.00 0.00 f \N 2025-06-20 \N \N MALE \N f 25 1026 3002 +2641 2025-06-20 01:15:30.45364+00 2025-06-20 01:15:30.453651+00 f t C DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3028 +2642 2025-06-20 01:16:14.029977+00 2025-06-20 01:16:14.029987+00 f t Jack CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3029 +2647 2025-06-20 03:11:08.290387+00 2025-06-20 03:11:08.2904+00 f t Batata DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3035 +2648 2025-06-20 03:36:54.405558+00 2025-06-20 03:36:54.405569+00 f t Airon alvarado DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3036 +2649 2025-06-20 03:44:22.763424+00 2025-06-20 03:44:22.763434+00 f t Airon alvarado DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3037 +2650 2025-06-20 09:16:04.141627+00 2025-06-20 09:16:04.141642+00 f t Runa DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3039 +2651 2025-06-20 13:14:21.329449+00 2025-06-20 13:14:21.329462+00 f t Brownie DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3040 +2652 2025-06-20 13:48:11.926387+00 2025-06-20 13:48:11.926399+00 f t Aluminio DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3041 +2606 2025-06-19 12:42:26.261549+00 2025-06-19 12:42:26.261558+00 f t Tota DOG \N 20.00 0.00 t 2023-04-01 2025-06-19 \N \N FEMALE \N f \N 1026 2973 +3871 2025-07-16 11:45:15.232333+00 2025-07-16 11:45:15.232344+00 f t Rubia DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4662 +2653 2025-06-20 14:21:24.642268+00 2025-06-20 14:21:24.642287+00 f t Dory CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3042 +2655 2025-06-20 14:39:31.185818+00 2025-06-20 14:39:31.185828+00 f t Kira DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3044 +2656 2025-06-20 14:47:41.473582+00 2025-06-20 14:47:41.473595+00 f t Naranjita CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3045 +2657 2025-06-20 15:19:25.118052+00 2025-06-20 15:19:25.118063+00 f t Tuky CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3046 +2658 2025-06-20 15:21:50.706076+00 2025-06-20 15:21:50.70609+00 f t Tuky CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3047 +2659 2025-06-20 15:38:43.563213+00 2025-06-20 15:38:43.563223+00 f t Cookie CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3048 +2660 2025-06-20 16:34:38.942277+00 2025-06-20 16:34:38.942287+00 f t Juana DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3051 +2654 2025-06-20 14:30:26.847349+00 2025-06-20 14:30:26.84736+00 f t Matikde CAT \N 5.00 0.00 f \N \N 2025-06-20 \N \N FEMALE \N \N f \N \N 3043 +3894 2025-07-16 20:29:32.21481+00 2025-07-16 20:29:32.214818+00 f t Leyla DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4691 +3909 2025-07-17 02:42:30.184954+00 2025-07-17 02:42:30.184966+00 f t Max DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4714 +3917 2025-07-17 13:38:42.21814+00 2025-07-17 13:38:42.218152+00 f t Mía DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4728 +2587 2025-06-19 00:07:09.287228+00 2025-06-19 00:07:09.287236+00 f t fibron CAT 5 5.00 0.00 t \N 2025-06-20 \N \N MALE \N f \N 113 2950 +2588 2025-06-19 00:07:23.629049+00 2025-06-19 00:07:23.629057+00 f t Tita CAT 9 5.00 0.00 f \N 2025-06-20 \N \N FEMALE \N f \N 113 2950 +5974 2025-08-25 18:00:51.034023+00 2025-08-25 18:00:51.034037+00 f t Lorna DOG \N 45.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7280 +2663 2025-06-20 18:07:06.68602+00 2025-06-20 18:07:06.686033+00 f t Andy CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3056 +2664 2025-06-20 18:24:59.048666+00 2025-06-20 18:24:59.048676+00 f t Toby DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3057 +2665 2025-06-20 18:37:47.158501+00 2025-06-20 18:37:47.158511+00 f t Morocho CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3058 +2666 2025-06-20 18:39:46.003522+00 2025-06-20 18:39:46.003534+00 f t Morocho CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3059 +2667 2025-06-20 18:57:03.700765+00 2025-06-20 18:57:03.700775+00 f t Kiara DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3060 +2668 2025-06-20 19:02:20.20566+00 2025-06-20 19:02:20.205671+00 f t Bart CAT \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3062 +2669 2025-06-20 19:03:48.170826+00 2025-06-20 19:03:48.17084+00 f t Rocco DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3063 +2670 2025-06-20 19:23:19.539632+00 2025-06-20 19:23:19.539641+00 f t Izumi DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3065 +2671 2025-06-20 19:38:50.752045+00 2025-06-20 19:38:50.752059+00 f t Pequeñito DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3066 +2672 2025-06-20 19:56:56.24932+00 2025-06-20 19:56:56.249332+00 f t Uma DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3067 +2673 2025-06-20 20:09:21.206269+00 2025-06-20 20:09:21.206282+00 f t Kira DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3068 +2674 2025-06-20 20:21:27.778587+00 2025-06-20 20:21:27.778596+00 f t Blacky DOG \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3069 +2722 2025-06-22 03:03:50.646619+00 2025-06-22 03:03:50.646632+00 f t Brulee CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3143 +2723 2025-06-22 03:06:21.338353+00 2025-06-22 03:06:21.338365+00 f t Brulee CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3143 +2675 2025-06-20 21:12:49.756528+00 2025-06-20 21:12:49.756536+00 f t Hs DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3070 +2676 2025-06-20 21:26:05.278316+00 2025-06-20 21:26:05.278328+00 f t Veni CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3071 +2677 2025-06-20 22:25:03.918002+00 2025-06-20 22:25:03.918017+00 f t Lina CAT \N 2.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3073 +2679 2025-06-20 23:23:05.939474+00 2025-06-20 23:23:05.939485+00 f t Nino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3076 +2680 2025-06-20 23:52:22.552884+00 2025-06-20 23:52:22.552899+00 f t Darma DOG \N 29.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3078 +2681 2025-06-21 00:06:45.431942+00 2025-06-21 00:06:45.431973+00 f t Pepe CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3079 +2682 2025-06-21 00:15:16.153357+00 2025-06-21 00:15:16.153366+00 f t Blue DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3080 +2683 2025-06-21 00:53:46.422067+00 2025-06-21 00:53:46.422077+00 f t Nelson CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3084 +2684 2025-06-21 01:41:46.420923+00 2025-06-21 01:41:46.420932+00 f t Felipe DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3085 +2685 2025-06-21 01:43:37.620344+00 2025-06-21 01:43:37.620352+00 f t Felipe DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3086 +2686 2025-06-21 02:03:00.258942+00 2025-06-21 02:03:00.258951+00 f t Tenson DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3087 +2687 2025-06-21 03:09:12.101272+00 2025-06-21 03:09:12.101282+00 f t Cloe CAT \N 350.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3088 +2688 2025-06-21 03:10:19.53408+00 2025-06-21 03:10:19.534093+00 f t Pupy DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3089 +2689 2025-06-21 03:33:20.02547+00 2025-06-21 03:33:20.025482+00 f t Pupy DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3090 +2690 2025-06-21 03:44:19.900783+00 2025-06-21 03:44:19.900792+00 f t Zeus DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3091 +2691 2025-06-21 05:41:36.215336+00 2025-06-21 05:41:36.215348+00 f t Luca DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3092 +2692 2025-06-21 07:18:11.755687+00 2025-06-21 07:18:11.755708+00 f t Enzo DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3095 +2693 2025-06-21 07:18:50.74772+00 2025-06-21 07:18:50.747733+00 f t Juan CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3096 +2694 2025-06-21 12:52:41.489502+00 2025-06-21 12:52:41.489514+00 f t Legolas DOG \N 32.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3098 +2695 2025-06-21 14:05:12.159948+00 2025-06-21 14:05:12.159957+00 f t Azlan CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3100 +2696 2025-06-21 14:06:39.66631+00 2025-06-21 14:06:39.666322+00 f t Mailo DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3102 +2697 2025-06-21 14:09:06.031471+00 2025-06-21 14:09:06.031483+00 f t KINBA CAT \N 4.20 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3100 +2698 2025-06-21 14:41:33.270006+00 2025-06-21 14:41:33.270018+00 f t Taty DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3104 +2699 2025-06-21 14:45:50.017065+00 2025-06-21 14:45:50.017074+00 f t Rocco DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3105 +2700 2025-06-21 15:13:11.872034+00 2025-06-21 15:13:11.872046+00 f t Lolá DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3106 +2701 2025-06-21 15:41:27.940213+00 2025-06-21 15:41:27.940222+00 f t Antonio CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3107 +2702 2025-06-21 16:01:48.923834+00 2025-06-21 16:01:48.923844+00 f t Elon CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3108 +2703 2025-06-21 17:32:58.25559+00 2025-06-21 17:32:58.255603+00 f t Mia CAT \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3111 +2704 2025-06-21 17:54:43.424044+00 2025-06-21 17:54:43.424057+00 f t Stich DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3112 +2705 2025-06-21 18:38:06.029574+00 2025-06-21 18:38:06.029583+00 f t Rocco CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3113 +2706 2025-06-21 18:49:29.601851+00 2025-06-21 18:49:29.60186+00 f t Flan CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3114 +2707 2025-06-21 19:45:43.900381+00 2025-06-21 19:45:43.900393+00 f t Nani DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3115 +2708 2025-06-21 19:49:16.405016+00 2025-06-21 19:49:16.405025+00 f t Rocco DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3116 +2709 2025-06-21 19:49:23.967297+00 2025-06-21 19:49:23.967309+00 f t Stitch DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3117 +2710 2025-06-21 20:59:49.663191+00 2025-06-21 20:59:49.663204+00 f t Ricardo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3121 +2711 2025-06-21 21:02:08.228098+00 2025-06-21 21:02:08.228109+00 f t Lola DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3121 +2712 2025-06-21 21:03:30.360485+00 2025-06-21 21:03:30.360495+00 f t Ricardo DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3122 +2713 2025-06-21 21:03:46.828742+00 2025-06-21 21:03:46.828752+00 f t Lola DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3122 +2715 2025-06-21 22:44:12.627651+00 2025-06-21 22:44:12.627661+00 f t Satoru CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3134 +2716 2025-06-21 22:44:24.551455+00 2025-06-21 22:44:24.551465+00 f t Rocco DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3135 +2717 2025-06-22 00:57:43.732103+00 2025-06-22 00:57:43.732127+00 f t Indio CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3138 +2718 2025-06-22 01:29:52.829766+00 2025-06-22 01:29:52.829776+00 f t Navi CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3140 +2719 2025-06-22 02:02:11.417456+00 2025-06-22 02:02:11.417466+00 f t Ragnar DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3141 +2720 2025-06-22 02:03:13.620767+00 2025-06-22 02:03:13.620779+00 f t Isabel CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3141 +2721 2025-06-22 02:58:43.527603+00 2025-06-22 02:58:43.527615+00 f t Matin CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3142 +2724 2025-06-22 03:43:01.408973+00 2025-06-22 03:43:01.408982+00 f t Estrella DOG \N 19.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3146 +2725 2025-06-22 05:32:47.169891+00 2025-06-22 05:32:47.169902+00 f t nn DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3149 +2726 2025-06-22 08:47:40.486295+00 2025-06-22 08:47:40.486306+00 f t Tom CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3151 +2727 2025-06-22 08:48:54.413781+00 2025-06-22 08:48:54.413793+00 f t Lima CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3151 +2728 2025-06-22 11:08:39.221951+00 2025-06-22 11:08:39.221963+00 f t Simon DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3152 +2729 2025-06-22 12:09:26.335578+00 2025-06-22 12:09:26.335593+00 f t Olivia CAT \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3153 +2730 2025-06-22 13:53:52.771543+00 2025-06-22 13:53:52.771554+00 f t Kala DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3154 +2731 2025-06-22 13:57:55.336247+00 2025-06-22 13:57:55.336255+00 f t Esmo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3155 +2732 2025-06-22 13:59:06.197693+00 2025-06-22 13:59:06.197709+00 f t Eira DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3155 +2733 2025-06-22 14:00:26.316457+00 2025-06-22 14:00:26.316468+00 f t Esmo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3155 +2734 2025-06-22 14:01:33.029875+00 2025-06-22 14:01:33.029888+00 t t Esmo DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3156 +2809 2025-06-24 01:28:17.850167+00 2025-06-24 01:28:17.850177+00 f t India DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3248 +2886 2025-06-25 23:06:25.386063+00 2025-06-25 23:06:25.386072+00 f t Obi CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3371 +2810 2025-06-24 01:36:41.174917+00 2025-06-24 01:36:41.174926+00 f t Perla CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3249 +2811 2025-06-24 01:44:04.9026+00 2025-06-24 01:44:04.902613+00 f t Bono DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3250 +2678 2025-06-20 22:26:05.768774+00 2025-06-20 22:26:05.768788+00 f t Sofia Vidal DOG \N 25.00 0.00 f \N \N 2025-06-23 \N \N MALE \N \N f \N \N 3074 +2735 2025-06-22 14:01:51.998757+00 2025-06-22 14:01:51.998768+00 f t Esmo CAT 0 6.00 20.00 t 2020-03-15 2025-06-24 \N \N MALE \N f \N 113 3156 +2887 2025-06-25 23:38:49.617634+00 2025-06-25 23:38:49.617647+00 f t Lilo DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3374 +2714 2025-06-21 21:58:10.620364+00 2025-06-21 21:58:10.620371+00 f t chuco DOG 8 13.00 0.00 t \N 2025-06-21 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? Antibiótico\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? No \N f 1 114 3125 +2736 2025-06-22 14:26:46.254538+00 2025-06-22 14:26:46.254547+00 f t Luna DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3158 +2737 2025-06-22 14:30:42.084721+00 2025-06-22 14:30:42.084735+00 f t Fri DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3159 +2738 2025-06-22 15:58:04.469625+00 2025-06-22 15:58:04.469636+00 f t Rosita DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3164 +2739 2025-06-22 16:15:18.156482+00 2025-06-22 16:15:18.156493+00 f t balto DOG \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3166 +2740 2025-06-22 17:15:32.864653+00 2025-06-22 17:15:32.864664+00 f t Malena DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3168 +2741 2025-06-22 17:46:35.281868+00 2025-06-22 17:46:35.281896+00 f t Florencia DOG \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3169 +2742 2025-06-22 18:02:01.696535+00 2025-06-22 18:02:01.696545+00 f t Elsa DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3170 +2743 2025-06-22 20:09:28.277556+00 2025-06-22 20:09:28.277565+00 f t Mia CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3171 +2744 2025-06-22 20:39:27.039559+00 2025-06-22 20:39:27.039568+00 f t Nacho DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3172 +2745 2025-06-22 20:56:19.632782+00 2025-06-22 20:56:19.632792+00 f t Thor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3173 +2746 2025-06-22 21:09:06.035899+00 2025-06-22 21:09:06.035908+00 f t Thor CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3174 +3832 2025-07-15 15:22:53.342277+00 2025-07-15 15:22:53.342289+00 f t d DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4608 +3872 2025-07-16 12:50:28.967522+00 2025-07-16 12:50:28.967535+00 f t Salem CAT \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4664 +2795 2025-06-23 20:16:39.651088+00 2025-06-23 20:16:39.6511+00 f t Mango CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3232 +2748 2025-06-22 22:14:41.940404+00 2025-06-22 22:14:41.940411+00 f t ahsoka CAT 8 4.00 0.00 t \N 2025-06-26 \N \N FEMALE \N f 27 114 3177 +2802 2025-06-24 00:07:25.99195+00 2025-06-24 00:07:25.991962+00 f t Penny Lane DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3240 +2749 2025-06-22 23:23:08.927414+00 2025-06-22 23:23:08.927428+00 f t Nino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3180 +2750 2025-06-23 01:38:05.507899+00 2025-06-23 01:38:05.507912+00 f t Nes CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3182 +2751 2025-06-23 02:15:36.267423+00 2025-06-23 02:15:36.267431+00 f t Serena DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3183 +2752 2025-06-23 02:31:48.148041+00 2025-06-23 02:31:48.14805+00 f t N CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3184 +2753 2025-06-23 02:33:52.468708+00 2025-06-23 02:33:52.468717+00 f t ZERO DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3185 +2754 2025-06-23 03:23:20.367602+00 2025-06-23 03:23:20.367611+00 f t Pupi CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3190 +2755 2025-06-23 03:54:16.317766+00 2025-06-23 03:54:16.317778+00 f t Draco DOG \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3192 +2756 2025-06-23 03:54:29.67423+00 2025-06-23 03:54:29.674238+00 f t Bebe CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3191 +2757 2025-06-23 03:54:57.196312+00 2025-06-23 03:54:57.196324+00 f t Draco CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3192 +2758 2025-06-23 04:01:16.121706+00 2025-06-23 04:01:16.121715+00 f t Leo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3193 +2759 2025-06-23 04:02:19.24935+00 2025-06-23 04:02:19.249361+00 f t Ray CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3193 +2760 2025-06-23 06:54:56.700693+00 2025-06-23 06:54:56.700702+00 f t Ragnar DOG \N 24.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3194 +2761 2025-06-23 07:13:52.289268+00 2025-06-23 07:13:52.289277+00 f t MILO DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3195 +2762 2025-06-23 08:05:11.955174+00 2025-06-23 08:05:11.955183+00 f t Rena CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3196 +2763 2025-06-23 11:19:04.954788+00 2025-06-23 11:19:04.954801+00 f t Simba CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3198 +2764 2025-06-23 11:33:30.146733+00 2025-06-23 11:33:30.146744+00 f t Ramon CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3199 +2765 2025-06-23 12:06:25.691542+00 2025-06-23 12:06:25.691556+00 f t Ramon CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3200 +2766 2025-06-23 12:08:07.775377+00 2025-06-23 12:08:07.775386+00 f t Leo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3201 +2767 2025-06-23 12:09:07.855105+00 2025-06-23 12:09:07.855114+00 f t Ray CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3201 +2768 2025-06-23 12:09:50.739015+00 2025-06-23 12:09:50.739024+00 f t Chichi DOG \N 9.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3202 +2769 2025-06-23 13:06:05.543099+00 2025-06-23 13:06:05.54311+00 f t Lola DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3203 +2794 2025-06-23 19:33:39.869085+00 2025-06-23 19:33:39.869092+00 f t Pedro José CAT 3 6.00 0.00 t \N 2025-06-24 \N \N MALE \N f \N 1026 3228 +2771 2025-06-23 13:49:51.168043+00 2025-06-23 13:49:51.168051+00 f t Milka DOG \N 0.00 0.00 f 2025-03-08 2025-06-24 \N \N FEMALE \N f \N 1026 3206 +2772 2025-06-23 14:22:16.124161+00 2025-06-23 14:22:16.124174+00 f t Milanesa CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3207 +2773 2025-06-23 14:24:00.725786+00 2025-06-23 14:24:00.725796+00 f t Br DOG \N 24.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3208 +2774 2025-06-23 15:17:06.911671+00 2025-06-23 15:17:06.911686+00 f t Donna DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3210 +2776 2025-06-23 16:12:54.002198+00 2025-06-23 16:12:54.002208+00 f t Coco DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3212 +2777 2025-06-23 16:24:45.908304+00 2025-06-23 16:24:45.908315+00 f t Olivia DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3213 +2778 2025-06-23 16:37:55.289835+00 2025-06-23 16:37:55.289843+00 f t Lara DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3214 +2779 2025-06-23 16:51:19.893981+00 2025-06-23 16:51:19.89399+00 f t Chimuelo DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3215 +2780 2025-06-23 16:52:36.197853+00 2025-06-23 16:52:36.197865+00 f t Chimuelo DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3215 +2781 2025-06-23 17:43:56.209765+00 2025-06-23 17:43:56.209777+00 f t Pipo DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3217 +2782 2025-06-23 18:01:48.833317+00 2025-06-23 18:01:48.833329+00 f t samy DOG \N 11.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3219 +2783 2025-06-23 18:10:48.549159+00 2025-06-23 18:10:48.549167+00 f t Juani DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3220 +2784 2025-06-23 18:12:18.972399+00 2025-06-23 18:12:18.972411+00 f t Brisa DOG \N 6.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3221 +2785 2025-06-23 18:12:45.362667+00 2025-06-23 18:12:45.362676+00 f t Ástor CAT \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3222 +2786 2025-06-23 18:15:22.282723+00 2025-06-23 18:15:22.282736+00 f t Pelusa DOG \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3222 +2787 2025-06-23 18:15:45.167579+00 2025-06-23 18:15:45.167588+00 f t Pelusa CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3222 +2788 2025-06-23 18:19:52.485532+00 2025-06-23 18:19:52.485542+00 f t Citra DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3223 +2789 2025-06-23 18:32:49.515158+00 2025-06-23 18:32:49.515169+00 f t Campi DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3224 +2790 2025-06-23 18:36:09.30305+00 2025-06-23 18:36:09.303063+00 f t Cielo DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3225 +2791 2025-06-23 19:00:30.736086+00 2025-06-23 19:00:30.736093+00 f t AAA DOG 5 10.00 0.00 t \N \N \N \N MALE \N f 7 118 3226 +2792 2025-06-23 19:02:59.414873+00 2025-06-23 19:02:59.414883+00 f t TEST CAT 5 4.00 0.00 t \N \N \N \N FEMALE Es agresivo \N f 27 118 3227 +2796 2025-06-23 20:41:25.9935+00 2025-06-23 20:41:25.993512+00 f t Reina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3233 +2797 2025-06-23 20:55:26.421956+00 2025-06-23 20:55:26.421965+00 f t Pupo DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3234 +2798 2025-06-23 21:34:15.691615+00 2025-06-23 21:34:15.691625+00 f t lu DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3235 +2799 2025-06-23 22:41:45.875376+00 2025-06-23 22:41:45.875385+00 f t Lucio DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3237 +2800 2025-06-23 23:02:14.350485+00 2025-06-23 23:02:14.350495+00 f t Floki DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3238 +2801 2025-06-23 23:39:08.253591+00 2025-06-23 23:39:08.253607+00 f t Rocky DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3239 +2747 2025-06-22 22:10:22.009132+00 2025-06-22 22:10:22.009142+00 f t Mía CAT 15 1.50 0.00 t \N 2025-06-22 \N \N FEMALE \N f \N 114 3176 +2803 2025-06-24 00:08:57.005137+00 2025-06-24 00:08:57.00515+00 f t Chano DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3241 +2805 2025-06-24 00:34:01.534667+00 2025-06-24 00:34:01.53468+00 f t Kaye DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3243 +2806 2025-06-24 01:16:05.677477+00 2025-06-24 01:16:05.677487+00 f t Eira CAT \N 3.00 20.00 t \N 2024-03-23 \N \N \N FEMALE \N \N f \N \N 3156 +2807 2025-06-24 01:20:38.960573+00 2025-06-24 01:20:38.960585+00 f t Chiqui CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3247 +2808 2025-06-24 01:27:59.065664+00 2025-06-24 01:27:59.065677+00 f t India DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3248 +2804 2025-06-24 00:11:30.94854+00 2025-06-24 00:11:30.948546+00 f t Perra DOG 17 16.00 0.00 t \N 2025-06-23 \N \N FEMALE \N t \N 113 3242 +2793 2025-06-23 19:33:03.96878+00 2025-06-23 19:33:03.96879+00 f t Michulino CAT 5 4.00 0.00 t \N 2025-06-24 \N \N FEMALE \N f \N 1026 3228 +2770 2025-06-23 13:49:22.4321+00 2025-06-23 13:49:22.432107+00 f t Malaika DOG 8 4.00 0.00 f 2016-07-23 2025-06-24 \N \N FEMALE \N f 8 1026 3206 +2775 2025-06-23 15:23:43.887615+00 2025-06-23 15:23:43.887625+00 f t Rocco CAT \N 8.00 0.00 t 2010-03-29 2025-06-24 \N \N MALE Toma cardiotenol 3,12 mg \N f \N 1026 3211 +3833 2025-07-15 15:23:10.018878+00 2025-07-15 15:23:10.01889+00 f t 3 DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4610 +2812 2025-06-24 01:56:30.267691+00 2025-06-24 01:56:30.2677+00 f t Roma DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3251 +2813 2025-06-24 02:09:37.447308+00 2025-06-24 02:09:37.447318+00 f t Kun DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3252 +2814 2025-06-24 02:14:33.906494+00 2025-06-24 02:14:33.906503+00 f t Kun DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3253 +2815 2025-06-24 12:59:57.310298+00 2025-06-24 12:59:57.310311+00 f t Oxana CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3261 +2816 2025-06-24 13:34:19.438627+00 2025-06-24 13:34:19.438639+00 f t Draco DOG \N 55.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3264 +2818 2025-06-24 14:46:00.243974+00 2025-06-24 14:46:00.243982+00 f t AAAA DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3267 +2819 2025-06-24 14:52:58.6282+00 2025-06-24 14:52:58.628208+00 f t Kaia CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3268 +2820 2025-06-24 15:04:31.309089+00 2025-06-24 15:04:31.309101+00 f t Drako DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3269 +2821 2025-06-24 15:09:40.928382+00 2025-06-24 15:09:40.928391+00 f t Kun DOG \N 8.75 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3272 +2822 2025-06-24 15:26:44.349609+00 2025-06-24 15:26:44.349622+00 f t Edi DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3273 +2823 2025-06-24 15:27:06.914347+00 2025-06-24 15:27:06.914361+00 f t Edi CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3273 +2824 2025-06-24 15:34:05.606463+00 2025-06-24 15:34:05.606475+00 f t Bella DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3274 +2825 2025-06-24 15:42:54.175803+00 2025-06-24 15:42:54.175817+00 f t Maria Belen Iocca DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3275 +2826 2025-06-24 15:43:10.121438+00 2025-06-24 15:43:10.121452+00 f t Il CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3275 +2827 2025-06-24 16:14:01.892952+00 2025-06-24 16:14:01.892961+00 f t Persia CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3276 +460 2025-01-30 19:45:29.481209+00 2025-01-30 19:45:29.481216+00 f t Nina CAT 15 0.00 0.00 t 2009-12-02 2025-06-24 \N \N FEMALE \N f 27 111 386 +11804 2025-11-24 11:47:43.701972+00 2025-11-24 11:47:43.701981+00 f t Ezio CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14319 +2828 2025-06-24 16:38:23.094451+00 2025-06-24 16:38:23.09446+00 f t Iris CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3277 +2829 2025-06-24 16:42:06.874229+00 2025-06-24 16:42:06.874242+00 f t Grego DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3279 +2830 2025-06-24 17:39:25.685198+00 2025-06-24 17:39:25.685208+00 f t Alba DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3280 +2831 2025-06-24 18:14:05.333536+00 2025-06-24 18:14:05.33355+00 f t Tora CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3281 +2832 2025-06-24 18:23:54.141525+00 2025-06-24 18:23:54.141537+00 f t Jacky DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3282 +2833 2025-06-24 18:27:28.506366+00 2025-06-24 18:27:28.506378+00 f t Mopa DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3283 +2834 2025-06-24 18:37:23.460204+00 2025-06-24 18:37:23.460217+00 f t Denver DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3285 +2835 2025-06-24 18:39:37.191244+00 2025-06-24 18:39:37.191256+00 f t Jack DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3287 +1891 2025-06-02 20:54:42.197494+00 2025-06-02 20:54:42.197508+00 f t Uma DOG \N 6.00 0.00 t \N 2015-05-15 2025-07-01 \N \N FEMALE \N \N f 8 \N 2046 +2836 2025-06-24 19:59:55.508437+00 2025-06-24 19:59:55.508446+00 f t AZRAEL CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3288 +2837 2025-06-24 20:08:18.006593+00 2025-06-24 20:08:18.006602+00 f t Marcos DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3290 +2838 2025-06-24 20:12:37.885634+00 2025-06-24 20:12:37.885643+00 f t Pocho CAT \N 6.65 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3291 +2839 2025-06-24 20:12:50.515829+00 2025-06-24 20:12:50.515839+00 f t 45454 DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3290 +2840 2025-06-24 20:42:36.267115+00 2025-06-24 20:42:36.267155+00 f t Simón CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3295 +2841 2025-06-24 20:43:10.627956+00 2025-06-24 20:43:10.627969+00 f t Luna DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3294 +2842 2025-06-24 21:12:35.251793+00 2025-06-24 21:12:35.251802+00 f t Punky CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3296 +5975 2025-08-25 18:20:04.515808+00 2025-08-25 18:20:04.515823+00 f t Maily DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7281 +2843 2025-06-24 22:28:27.358861+00 2025-06-24 22:28:27.35887+00 f t Jade DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3297 +2844 2025-06-24 22:48:39.373218+00 2025-06-24 22:48:39.373229+00 f t Ambar DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3299 +2845 2025-06-24 23:20:11.799203+00 2025-06-24 23:20:11.799219+00 f t Firus DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3300 +2846 2025-06-24 23:22:55.49037+00 2025-06-24 23:22:55.490381+00 f t Mia DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3301 +2847 2025-06-24 23:39:05.337556+00 2025-06-24 23:39:05.337569+00 f t Marco DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3303 +2848 2025-06-25 00:02:11.811696+00 2025-06-25 00:02:11.811709+00 f t Clapton DOG \N 43.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3305 +2849 2025-06-25 00:25:18.928929+00 2025-06-25 00:25:18.928939+00 f t Cherry DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3307 +2850 2025-06-25 00:28:21.378922+00 2025-06-25 00:28:21.378932+00 f t Lio DOG \N 42.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3308 +2851 2025-06-25 00:35:38.341868+00 2025-06-25 00:35:38.34188+00 f t Mayte DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3309 +2852 2025-06-25 00:39:38.0794+00 2025-06-25 00:39:38.079415+00 f t Mayte DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3310 +2853 2025-06-25 02:07:49.509067+00 2025-06-25 02:07:49.509076+00 f t Batuque DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3312 +2854 2025-06-25 02:30:07.524039+00 2025-06-25 02:30:07.524052+00 f t Ciro DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3314 +2855 2025-06-25 02:44:43.105952+00 2025-06-25 02:44:43.105961+00 f t Pinkie DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3315 +2856 2025-06-25 02:48:32.667073+00 2025-06-25 02:48:32.667083+00 f t Timotheo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3317 +2857 2025-06-25 03:08:08.141453+00 2025-06-25 03:08:08.141465+00 f t Tobi DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3319 +2858 2025-06-25 03:41:13.825154+00 2025-06-25 03:41:13.825166+00 f t Greta CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3321 +2859 2025-06-25 03:43:11.716521+00 2025-06-25 03:43:11.71653+00 f t Tiziano CAT \N 2.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3321 +2860 2025-06-25 03:48:29.765239+00 2025-06-25 03:48:29.765248+00 f t Timon DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3322 +2861 2025-06-25 05:55:22.603463+00 2025-06-25 05:55:22.603475+00 f t Hope CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3323 +2862 2025-06-25 07:20:02.899589+00 2025-06-25 07:20:02.899603+00 f t Blanca CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3324 +2863 2025-06-25 10:18:44.044127+00 2025-06-25 10:18:44.04414+00 f t Emma DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3328 +2864 2025-06-25 10:29:58.503811+00 2025-06-25 10:29:58.503821+00 f t Sasha CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3329 +2865 2025-06-25 12:45:03.125772+00 2025-06-25 12:45:03.125787+00 f t Tito DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3330 +2817 2025-06-24 14:26:59.994092+00 2025-06-24 14:26:59.994099+00 f t Nana DOG 14 10.00 0.00 f \N 2025-06-24 \N \N \N \N f \N 1026 3266 +2866 2025-06-25 13:46:27.994231+00 2025-06-25 13:46:27.994239+00 f t Pancho DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3333 +2867 2025-06-25 14:25:10.055409+00 2025-06-25 14:25:10.055424+00 f t Geralt CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3341 +2868 2025-06-25 14:26:47.71421+00 2025-06-25 14:26:47.714219+00 f t Simón CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3341 +2881 2025-06-25 19:37:03.657645+00 2025-06-25 19:37:03.657681+00 f t Bonzo DOG 9 27.00 0.00 f \N 2025-07-14 \N \N \N \N f 6 1026 3360 +2873 2025-06-25 16:12:03.721781+00 2025-06-25 16:12:03.721795+00 f t Test DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3348 +2877 2025-06-25 18:51:37.693078+00 2025-06-25 18:51:37.693087+00 f t Sam DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3356 +3873 2025-07-16 12:56:17.387653+00 2025-07-16 12:56:17.38766+00 f t Ferrito DOG 16 15.00 0.00 f \N 2025-07-16 \N \N \N \N t \N 1026 4665 +2874 2025-06-25 16:48:59.412779+00 2025-06-25 16:48:59.412792+00 f t Ron CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3349 +2875 2025-06-25 16:50:35.757498+00 2025-06-25 16:50:35.757508+00 f t Ron CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3350 +2876 2025-06-25 17:06:11.9768+00 2025-06-25 17:06:11.976813+00 f t Bonzo DOG \N 26.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3351 +2878 2025-06-25 19:05:42.555278+00 2025-06-25 19:05:42.555287+00 f t test DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3357 +2879 2025-06-25 19:14:31.336466+00 2025-06-25 19:14:31.336475+00 f t Kenzo DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3359 +2880 2025-06-25 19:15:30.232705+00 2025-06-25 19:15:30.232715+00 f t Hermes DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3359 +2882 2025-06-25 19:46:48.577775+00 2025-06-25 19:46:48.577787+00 f t tifany DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3361 +3895 2025-07-16 20:29:46.258651+00 2025-07-16 20:29:46.258662+00 f t Muñeca DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4692 +2884 2025-06-25 20:47:59.77729+00 2025-06-25 20:47:59.777302+00 f t Martina DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3364 +2871 2025-06-25 15:47:06.07819+00 2025-06-25 15:47:06.078202+00 f t Punky CAT \N 3.00 0.00 f \N \N 2025-06-25 \N \N FEMALE \N \N f \N \N 3346 +2885 2025-06-25 23:03:28.228349+00 2025-06-25 23:03:28.228358+00 f t Milka CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3371 +2869 2025-06-25 15:15:59.975539+00 2025-06-25 15:15:59.975548+00 f t Tecla CAT 6 8.00 0.00 t \N 2025-07-14 \N \N MALE \N f \N 1026 3343 +2870 2025-06-25 15:30:48.291897+00 2025-06-25 15:30:48.291904+00 f t Momo DOG 3 17.00 0.00 f \N 2025-07-01 \N \N MALE \N f \N 1026 3344 +2888 2025-06-26 00:10:28.877225+00 2025-06-26 00:10:28.877235+00 f t Merlín CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3378 +2889 2025-06-26 00:37:15.672985+00 2025-06-26 00:37:15.672995+00 f t Alice DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3380 +2890 2025-06-26 00:48:38.980663+00 2025-06-26 00:48:38.980672+00 f t Tobias DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3381 +2891 2025-06-26 00:50:06.523661+00 2025-06-26 00:50:06.523674+00 f t Tom CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3382 +2892 2025-06-26 01:18:30.378255+00 2025-06-26 01:18:30.378263+00 f t Athina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3384 +2893 2025-06-26 01:20:01.575761+00 2025-06-26 01:20:01.575774+00 f t yuli CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3385 +2894 2025-06-26 01:34:34.290134+00 2025-06-26 01:34:34.290146+00 f t Pp DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3386 +2895 2025-06-26 01:40:35.164699+00 2025-06-26 01:40:35.164712+00 f t Gato CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3387 +2896 2025-06-26 01:40:56.683315+00 2025-06-26 01:40:56.683323+00 f t Pp DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3388 +2897 2025-06-26 01:41:01.031951+00 2025-06-26 01:41:01.031963+00 f t Rafael CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3387 +2898 2025-06-26 01:47:55.072321+00 2025-06-26 01:47:55.07233+00 f t Mamuna DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3389 +2899 2025-06-26 01:59:02.625134+00 2025-06-26 01:59:02.62515+00 f t Shyru DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3391 +2900 2025-06-26 03:49:18.469575+00 2025-06-26 03:49:18.469586+00 f t Morena DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3393 +2901 2025-06-26 03:54:26.373764+00 2025-06-26 03:54:26.373775+00 f t Bandido DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3394 +2902 2025-06-26 03:55:38.761287+00 2025-06-26 03:55:38.761299+00 f t Mia DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3394 +2903 2025-06-26 04:22:10.025264+00 2025-06-26 04:22:10.025273+00 f t Umma DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3395 +2904 2025-06-26 04:52:01.626209+00 2025-06-26 04:52:01.626224+00 f t Genaro DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3396 +2905 2025-06-26 05:00:38.807042+00 2025-06-26 05:00:38.807058+00 f t Cleopatra CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3398 +2906 2025-06-26 09:34:32.092905+00 2025-06-26 09:34:32.09292+00 f t Bruce CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3401 +2907 2025-06-26 10:58:39.82355+00 2025-06-26 10:58:39.823564+00 f t Rocky DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3402 +3834 2025-07-15 15:23:47.247724+00 2025-07-15 15:23:47.247737+00 f t as CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4611 +2910 2025-06-26 11:04:16.11313+00 2025-06-26 11:04:16.113139+00 f t Rocky DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3404 +5976 2025-08-25 18:58:00.239177+00 2025-08-25 18:58:00.239196+00 f t Frido CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7283 +2912 2025-06-26 11:13:15.120345+00 2025-06-26 11:13:15.120354+00 f t Ceni CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3406 +2913 2025-06-26 11:20:34.984758+00 2025-06-26 11:20:34.98477+00 f t Rodo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3407 +2915 2025-06-26 12:05:06.156889+00 2025-06-26 12:05:06.156905+00 f t Albus CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3410 +2916 2025-06-26 12:20:06.302408+00 2025-06-26 12:20:06.302422+00 f t Kaia CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3411 +2917 2025-06-26 12:34:43.124276+00 2025-06-26 12:34:43.12429+00 f t Almendra CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3413 +2918 2025-06-26 12:35:40.030382+00 2025-06-26 12:35:40.030394+00 f t Almendra DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3414 +2919 2025-06-26 12:37:23.846158+00 2025-06-26 12:37:23.846167+00 f t Almendra DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3415 +2920 2025-06-26 12:37:43.1684+00 2025-06-26 12:37:43.168412+00 f t Almendra CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3415 +2921 2025-06-26 12:41:02.958718+00 2025-06-26 12:41:02.958734+00 f t Almendra CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3416 +2922 2025-06-26 12:53:20.187328+00 2025-06-26 12:53:20.187341+00 f t Mamuna DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3417 +1478 2025-05-23 18:10:31.024464+00 2025-05-23 18:10:31.024475+00 t t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 1499 +2924 2025-06-26 15:38:22.32226+00 2025-06-26 15:38:22.322272+00 f t Benito DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3422 +2925 2025-06-26 15:48:56.359349+00 2025-06-26 15:48:56.359362+00 f t Ramon CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3423 +2926 2025-06-26 15:50:11.139651+00 2025-06-26 15:50:11.13966+00 f t Pancho DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3423 +2927 2025-06-26 15:52:25.518321+00 2025-06-26 15:52:25.51833+00 f t Pancho CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3424 +2928 2025-06-26 16:44:21.400286+00 2025-06-26 16:44:21.400299+00 f t Thano Zapata DOG \N 65.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3425 +2929 2025-06-26 16:46:20.040644+00 2025-06-26 16:46:20.040656+00 f t Capitán CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3426 +2930 2025-06-26 16:47:13.791877+00 2025-06-26 16:47:13.791885+00 f t Baltazar CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3426 +2931 2025-06-26 17:04:14.633231+00 2025-06-26 17:04:14.633244+00 f t Izma CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3427 +2932 2025-06-26 17:21:14.208619+00 2025-06-26 17:21:14.208629+00 f t boris DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3428 +2945 2025-06-26 23:06:07.236612+00 2025-06-26 23:06:07.236625+00 f t Tuly CAT 0 3.00 0.00 t \N 2025-08-18 \N \N FEMALE \N f \N 113 3451 +2934 2025-06-26 17:48:16.522921+00 2025-06-26 17:48:16.522933+00 f t Lupita DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3431 +2935 2025-06-26 18:05:15.739892+00 2025-06-26 18:05:15.739902+00 f t Lola DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3432 +2936 2025-06-26 18:27:14.736907+00 2025-06-26 18:27:14.736921+00 f t limon CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3433 +2937 2025-06-26 18:31:21.440481+00 2025-06-26 18:31:21.440495+00 f t China DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3434 +2938 2025-06-26 18:39:59.478401+00 2025-06-26 18:39:59.47841+00 f t Rody DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3435 +2939 2025-06-26 18:41:29.75196+00 2025-06-26 18:41:29.75197+00 f t togo DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3436 +2941 2025-06-26 18:51:53.364109+00 2025-06-26 18:51:53.364118+00 f t Morena DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3438 +2933 2025-06-26 17:35:10.71091+00 2025-06-26 17:35:10.710921+00 f t lola DOG 0 30.00 0.00 f \N 2025-06-26 \N \N FEMALE \N f \N 113 3430 +2942 2025-06-26 19:49:59.149693+00 2025-06-26 19:49:59.149706+00 f t Roco DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3442 +2943 2025-06-26 22:58:57.096993+00 2025-06-26 22:58:57.097006+00 f t Draka CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3448 +2944 2025-06-26 23:01:39.868898+00 2025-06-26 23:01:39.868909+00 f t Tadeo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3449 +2946 2025-06-26 23:18:38.901858+00 2025-06-26 23:18:38.901871+00 f t Donal CAT \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3452 +2914 2025-06-26 11:43:23.700967+00 2025-06-26 11:43:23.70098+00 f t Bruce CAT \N 1.00 0.00 t \N \N 2025-06-26 \N \N MALE \N \N f \N \N 3409 +2949 2025-06-27 00:56:43.168948+00 2025-06-27 00:56:43.16896+00 f t Amapola CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3454 +2950 2025-06-27 01:00:09.019972+00 2025-06-27 01:00:09.019987+00 f t Miles CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3455 +2923 2025-06-26 14:36:14.94895+00 2025-06-26 14:36:14.948959+00 f t Chanchita CAT 4 0.00 0.00 t \N 2025-06-26 \N \N FEMALE \N f \N 1026 3421 +2948 2025-06-27 00:53:16.357103+00 2025-06-27 00:53:16.357114+00 f t CUAL DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3453 +2951 2025-06-27 01:02:39.565462+00 2025-06-27 01:02:39.565475+00 f t Cream CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3457 +2883 2025-06-25 20:47:24.824521+00 2025-06-25 20:47:24.824529+00 f t Negro CAT \N 0.00 0.00 f \N 2025-06-26 \N \N \N Puede estresarse \N f \N 1026 3363 +2953 2025-06-27 02:03:44.166814+00 2025-06-27 02:03:44.166825+00 f t Gringo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3459 +2954 2025-06-27 04:23:06.115376+00 2025-06-27 04:23:06.11573+00 f t Odin CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3461 +2955 2025-06-27 05:59:27.529195+00 2025-06-27 05:59:27.529205+00 f t Ronnie DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3462 +2956 2025-06-27 06:28:06.564265+00 2025-06-27 06:28:06.564274+00 f t Violeta DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3464 +2957 2025-06-27 09:04:16.586983+00 2025-06-27 09:04:16.586991+00 f t Sam DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3465 +2958 2025-06-27 09:04:37.751733+00 2025-06-27 09:04:37.751741+00 f t Lionel CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3466 +2959 2025-06-27 09:26:51.209132+00 2025-06-27 09:26:51.20914+00 f t Peluchin DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3467 +2960 2025-06-27 09:33:10.011542+00 2025-06-27 09:33:10.011554+00 f t Peluchin DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3468 +2961 2025-06-27 10:21:14.506492+00 2025-06-27 10:21:14.506501+00 f t Umma DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3469 +2962 2025-06-27 11:22:25.028343+00 2025-06-27 11:22:25.028352+00 f t Gonzo DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3470 +2963 2025-06-27 11:30:37.344215+00 2025-06-27 11:30:37.344228+00 f t Bulldog DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3471 +922 2025-05-05 18:11:24.7593+00 2025-05-05 18:11:24.759307+00 f t Pancho CAT 6 6.00 0.00 t Amoxicilina y penicilinas 2019-04-06 2025-06-26 \N \N MALE Asmatico, usa Budesonida \N f \N 112 811 +2940 2025-06-26 18:44:39.226698+00 2025-06-26 18:44:39.226706+00 f t Pug DOG 9 10.00 0.00 f \N 2025-06-27 \N \N MALE \N f 55 1026 3437 +2952 2025-06-27 01:18:05.425519+00 2025-06-27 01:18:05.425531+00 f t Rufina CAT \N 10.00 0.00 f \N \N 2025-06-27 \N \N FEMALE \N \N f \N \N 3458 +2909 2025-06-26 11:04:09.324633+00 2025-06-26 11:04:09.324641+00 f t Dracu CAT 15 2.00 0.00 t \N 2025-07-01 \N \N \N \N f \N 113 3403 +2964 2025-06-27 11:35:31.49233+00 2025-06-27 11:35:31.492342+00 f t Luna CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3472 +2965 2025-06-27 11:37:08.193229+00 2025-06-27 11:37:08.193242+00 f t Bigpted CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3472 +2966 2025-06-27 11:49:51.48764+00 2025-06-27 11:49:51.48765+00 f t Rúcula CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3473 +2967 2025-06-27 11:57:54.393411+00 2025-06-27 11:57:54.393422+00 f t Agatha CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3474 +2968 2025-06-27 11:59:40.701092+00 2025-06-27 11:59:40.7011+00 f t Nina CAT \N 900.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3475 +2969 2025-06-27 12:04:24.388648+00 2025-06-27 12:04:24.388661+00 f t Arturo DOG \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3476 +2970 2025-06-27 12:28:41.739562+00 2025-06-27 12:28:41.739572+00 f t Bruce CAT \N 0.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3477 +2971 2025-06-27 12:44:39.822158+00 2025-06-27 12:44:39.822166+00 f t Lila CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3478 +2972 2025-06-27 13:15:00.773465+00 2025-06-27 13:15:00.773479+00 f t Benito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3479 +2974 2025-06-27 13:30:03.581304+00 2025-06-27 13:30:03.581318+00 f t Celestia CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3481 +2975 2025-06-27 13:52:34.820164+00 2025-06-27 13:52:34.820173+00 f t Calisto DOG \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3483 +2976 2025-06-27 13:52:51.531474+00 2025-06-27 13:52:51.531485+00 f t Calisto CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3483 +2980 2025-06-27 14:29:39.647512+00 2025-06-27 14:29:39.647524+00 f t Gucci DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3486 +2981 2025-06-27 14:32:09.126483+00 2025-06-27 14:32:09.126492+00 f t Gucci DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3487 +2982 2025-06-27 14:35:49.46415+00 2025-06-27 14:35:49.464159+00 f t jorge CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3489 +2983 2025-06-27 14:36:12.952653+00 2025-06-27 14:36:12.952663+00 f t Kuzma CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3488 +3026 2025-06-28 20:04:09.188103+00 2025-06-28 20:04:09.188117+00 f t Grisú CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3543 +2984 2025-06-27 14:59:13.216573+00 2025-06-27 14:59:13.216582+00 f t Josefina DOG \N 55.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3490 +2985 2025-06-27 15:08:24.709662+00 2025-06-27 15:08:24.709671+00 f t Titi CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3491 +2986 2025-06-27 15:59:08.464836+00 2025-06-27 15:59:08.464847+00 f t Shirley DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3492 +3835 2025-07-15 15:30:47.185975+00 2025-07-15 15:30:47.185994+00 f t Antonio CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4613 +2991 2025-06-27 19:55:06.955483+00 2025-06-27 19:55:06.955493+00 f t Lito DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3497 +2987 2025-06-27 18:34:54.59136+00 2025-06-27 18:34:54.591367+00 f t Pampa DOG 15 0.00 0.00 f \N 2025-06-27 \N \N MALE \N f 17 1026 3494 +2992 2025-06-27 20:01:04.595884+00 2025-06-27 20:01:04.595893+00 f t Milo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3498 +2993 2025-06-27 21:27:01.012672+00 2025-06-27 21:27:01.01268+00 f t lola DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3500 +3029 2025-06-28 22:19:20.175041+00 2025-06-28 22:19:20.175051+00 f t Hera DOG 5 8.50 0.00 f No muerde si es miedosa y es amigable \N 2025-07-01 \N \N FEMALE \N f 1 114 3551 +2994 2025-06-27 21:56:25.190806+00 2025-06-27 21:56:25.190815+00 f t Susy DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3501 +2995 2025-06-27 22:00:02.331721+00 2025-06-27 22:00:02.331735+00 f t Susy DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3502 +3027 2025-06-28 20:24:50.102417+00 2025-06-28 20:24:50.102427+00 f t Timón DOG \N 23.00 0.00 f \N \N 2025-06-30 \N \N MALE \N \N f \N \N 3546 +2996 2025-06-27 22:55:31.141967+00 2025-06-27 22:55:31.141977+00 f t Xenom CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3503 +2997 2025-06-27 23:10:17.057349+00 2025-06-27 23:10:17.057359+00 f t Simón CAT \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3504 +2998 2025-06-27 23:15:33.074663+00 2025-06-27 23:15:33.074672+00 f t pepino CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3505 +2999 2025-06-27 23:26:31.931007+00 2025-06-27 23:26:31.931016+00 f t Fide DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3506 +3000 2025-06-28 01:08:08.619575+00 2025-06-28 01:08:08.619588+00 f t Ivan CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3508 +3001 2025-06-28 02:04:21.426091+00 2025-06-28 02:04:21.426099+00 f t pipi DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3509 +3002 2025-06-28 02:39:11.995088+00 2025-06-28 02:39:11.995102+00 f t Lili CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3510 +3003 2025-06-28 03:30:35.910843+00 2025-06-28 03:30:35.910857+00 f t Nino DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3511 +3004 2025-06-28 03:37:18.232456+00 2025-06-28 03:37:18.232469+00 f t Nino DOG \N 37.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3512 +3005 2025-06-28 03:39:39.321729+00 2025-06-28 03:39:39.321741+00 f t Bimbo DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3512 +3006 2025-06-28 05:38:09.665654+00 2025-06-28 05:38:09.665664+00 f t floki DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3515 +3007 2025-06-28 10:43:28.88496+00 2025-06-28 10:43:28.884969+00 f t Gali DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3516 +3008 2025-06-28 12:32:15.615028+00 2025-06-28 12:32:15.615041+00 f t Pepa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3519 +3009 2025-06-28 12:55:13.233158+00 2025-06-28 12:55:13.233168+00 f t Renata DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3520 +3010 2025-06-28 12:59:38.637798+00 2025-06-28 12:59:38.637807+00 f t Remo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3521 +3011 2025-06-28 13:35:25.458391+00 2025-06-28 13:35:25.458401+00 f t Negrita CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3522 +3012 2025-06-28 13:56:36.301893+00 2025-06-28 13:56:36.301902+00 f t Gaia CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3523 +3013 2025-06-28 14:14:20.541439+00 2025-06-28 14:14:20.541448+00 f t Sam DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3524 +3014 2025-06-28 14:35:23.592809+00 2025-06-28 14:35:23.592821+00 f t Hijo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3525 +3015 2025-06-28 14:41:49.437676+00 2025-06-28 14:41:49.437689+00 f t Hera DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3526 +3016 2025-06-28 15:32:12.696066+00 2025-06-28 15:32:12.696079+00 f t Darwin DOG \N 4.80 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3527 +3017 2025-06-28 15:45:44.763646+00 2025-06-28 15:45:44.763658+00 f t Homero CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3529 +3018 2025-06-28 16:38:33.204779+00 2025-06-28 16:38:33.20479+00 f t Negro DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3531 +3019 2025-06-28 17:20:05.561487+00 2025-06-28 17:20:05.561501+00 f t Luli DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3533 +3020 2025-06-28 17:28:12.157917+00 2025-06-28 17:28:12.157928+00 f t Kity CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3536 +3021 2025-06-28 17:29:14.155547+00 2025-06-28 17:29:14.155559+00 f t Nino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3537 +3022 2025-06-28 17:33:20.804635+00 2025-06-28 17:33:20.804647+00 f t Violeta DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3538 +3023 2025-06-28 18:02:45.335234+00 2025-06-28 18:02:45.335244+00 f t Otto DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3539 +3024 2025-06-28 18:33:50.142745+00 2025-06-28 18:33:50.142754+00 f t Paton CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3540 +3025 2025-06-28 19:13:02.518395+00 2025-06-28 19:13:02.518415+00 f t Fermin CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3541 +3028 2025-06-28 20:25:15.364899+00 2025-06-28 20:25:15.364908+00 f t negrito CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3547 +3030 2025-06-28 22:21:47.761798+00 2025-06-28 22:21:47.761807+00 f t Christopher CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3552 +2911 2025-06-26 11:09:09.250637+00 2025-06-26 11:09:09.250644+00 f t Tato CAT 9 8.00 0.00 f \N 2025-06-27 \N \N MALE \N f \N 113 3405 +3035 2025-06-28 23:16:17.835641+00 2025-06-28 23:16:17.835649+00 f t Simba CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3558 +3033 2025-06-28 22:41:10.522586+00 2025-06-28 22:41:10.522598+00 f t India CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3555 +3034 2025-06-28 22:59:05.313586+00 2025-06-28 22:59:05.313596+00 f t Frida CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3557 +2988 2025-06-27 19:21:37.395062+00 2025-06-27 19:21:37.395069+00 f t Monono CAT 3 2.50 0.00 f \N 2025-06-30 \N \N MALE \N f \N 1026 3496 +3036 2025-06-28 23:29:20.649833+00 2025-06-28 23:29:20.649842+00 f t Lara DOG \N 4.20 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3559 +3038 2025-06-28 23:50:31.430366+00 2025-06-28 23:50:31.430375+00 f t Valentino CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3561 +3039 2025-06-29 00:18:40.447879+00 2025-06-29 00:18:40.447888+00 f t hipólito CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3563 +2973 2025-06-27 13:24:25.325992+00 2025-06-27 13:24:25.326001+00 f t Roma DOG \N 11.50 55.00 t \N 2022-05-27 2025-06-27 \N \N FEMALE \N \N f \N \N 3480 +3031 2025-06-28 22:26:17.302568+00 2025-06-28 22:26:17.302578+00 f t CAMILO CAT 18 0.00 0.00 t \N 2025-06-28 \N \N MALE \N f 27 114 3553 +2989 2025-06-27 19:22:13.659916+00 2025-06-27 19:22:13.659923+00 f t Kitty CAT 2 0.00 0.00 f \N 2025-06-30 \N \N FEMALE \N f 34 1026 3496 +2990 2025-06-27 19:22:34.193571+00 2025-06-27 19:22:34.19358+00 f t Gris CAT 3 0.00 0.00 f \N 2025-06-30 \N \N FEMALE \N f \N 1026 3496 +2979 2025-06-27 14:08:50.88019+00 2025-06-27 14:08:50.880196+00 f t Maria Isabel CAT \N 2.80 0.00 f \N 2025-06-27 \N \N FEMALE \N f \N 1026 3485 +858 2025-04-25 21:00:15.1605+00 2025-04-25 21:00:15.16051+00 f t Esperanza DOG \N 23.00 0.00 f \N 2025-05-22 \N \N FEMALE \N f 52 112 734 +2977 2025-06-27 13:59:01.014214+00 2025-06-27 13:59:01.01422+00 f t Quiron CAT 6 0.00 0.00 t \N 2025-07-02 \N \N MALE \N f \N 1026 3484 +2978 2025-06-27 13:59:32.187175+00 2025-06-27 13:59:32.187185+00 f t Tina CAT \N 0.00 0.00 f \N 2025-07-02 \N \N FEMALE \N f \N 1026 3484 +3040 2025-06-29 00:34:29.96475+00 2025-06-29 00:34:29.964758+00 f t Toto DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3564 +3041 2025-06-29 00:36:26.390618+00 2025-06-29 00:36:26.390627+00 f t Juan Carlos CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3565 +3042 2025-06-29 00:48:41.429986+00 2025-06-29 00:48:41.429994+00 f t Bandido CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3566 +3043 2025-06-29 00:49:41.426826+00 2025-06-29 00:49:41.426835+00 f t Bandido CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3566 +3044 2025-06-29 01:08:39.061814+00 2025-06-29 01:08:39.061825+00 f t Camila DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3569 +3045 2025-06-29 01:47:31.122974+00 2025-06-29 01:47:31.122983+00 f t Batata CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3571 +3046 2025-06-29 04:00:14.206144+00 2025-06-29 04:00:14.206161+00 f t Tito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3575 +3047 2025-06-29 04:23:38.458506+00 2025-06-29 04:23:38.458515+00 f t R DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3576 +3048 2025-06-29 06:31:46.689823+00 2025-06-29 06:31:46.689835+00 f t Tyrion DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3577 +3049 2025-06-29 07:00:11.306771+00 2025-06-29 07:00:11.306784+00 f t Taky DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3578 +3050 2025-06-29 10:16:19.143866+00 2025-06-29 10:16:19.143875+00 f t Xxx DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3579 +3051 2025-06-29 11:22:45.366899+00 2025-06-29 11:22:45.366911+00 f t pipi DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3580 +3052 2025-06-29 11:45:29.492678+00 2025-06-29 11:45:29.492687+00 f t Roman DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3581 +3053 2025-06-29 12:12:33.731747+00 2025-06-29 12:12:33.731757+00 f t Mis CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3583 +3054 2025-06-29 12:46:17.714654+00 2025-06-29 12:46:17.714665+00 f t Boris CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3586 +3055 2025-06-29 12:46:28.726794+00 2025-06-29 12:46:28.726802+00 f t Gruby DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3585 +3056 2025-06-29 12:49:05.891753+00 2025-06-29 12:49:05.891762+00 f t Yapeyu DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3587 +3057 2025-06-29 12:49:38.000355+00 2025-06-29 12:49:38.000368+00 f t yapeyu CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3587 +3058 2025-06-29 13:02:11.407826+00 2025-06-29 13:02:11.407835+00 f t Jaime CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3588 +3059 2025-06-29 13:04:07.999437+00 2025-06-29 13:04:07.999447+00 f t Eladio CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3588 +3060 2025-06-29 13:21:41.139052+00 2025-06-29 13:21:41.139061+00 f t Roco DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3589 +3061 2025-06-29 14:00:07.977554+00 2025-06-29 14:00:07.977568+00 f t Tito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3590 +3062 2025-06-29 14:09:21.801988+00 2025-06-29 14:09:21.801997+00 f t Nina DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3591 +3063 2025-06-29 15:01:53.662338+00 2025-06-29 15:01:53.662349+00 f t Baigots CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3592 +3064 2025-06-29 15:25:26.814003+00 2025-06-29 15:25:26.814012+00 f t Bianca DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3593 +3065 2025-06-29 15:45:26.788599+00 2025-06-29 15:45:26.788607+00 f t Baigots DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3596 +3066 2025-06-29 15:46:48.276311+00 2025-06-29 15:46:48.27632+00 f t Baigots CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3597 +3067 2025-06-29 16:05:04.717911+00 2025-06-29 16:05:04.717927+00 f t Amaru DOG \N 33.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3598 +3068 2025-06-29 16:10:30.15574+00 2025-06-29 16:10:30.155751+00 f t AMANDA DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3599 +3069 2025-06-29 16:46:02.392997+00 2025-06-29 16:46:02.393006+00 f t Canela DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3600 +3070 2025-06-29 16:53:59.985249+00 2025-06-29 16:53:59.985261+00 f t simón DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3601 +3071 2025-06-29 17:12:58.174558+00 2025-06-29 17:12:58.174566+00 f t Mia DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3602 +3072 2025-06-29 17:24:39.014424+00 2025-06-29 17:24:39.014432+00 f t Nina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3603 +3032 2025-06-28 22:39:51.046869+00 2025-06-28 22:39:51.046879+00 f t Félix CAT \N 2.50 0.00 f \N 2025-06-28 \N \N MALE \N f \N 114 3554 +3073 2025-06-29 19:17:40.997868+00 2025-06-29 19:17:40.997877+00 f t Benito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3607 +3074 2025-06-29 19:47:46.785608+00 2025-06-29 19:47:46.785618+00 f t Buko DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3608 +3075 2025-06-29 20:18:42.327613+00 2025-06-29 20:18:42.327626+00 f t Rocky DOG \N 37.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3609 +3076 2025-06-29 20:31:31.012818+00 2025-06-29 20:31:31.012827+00 f t Gema DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3610 +3077 2025-06-29 21:21:23.481463+00 2025-06-29 21:21:23.481476+00 f t Brook DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3612 +3079 2025-06-29 22:25:28.249994+00 2025-06-29 22:25:28.250005+00 f t Frida DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3615 +3080 2025-06-29 22:29:16.282273+00 2025-06-29 22:29:16.282282+00 f t Frida DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3616 +3081 2025-06-29 22:32:04.910595+00 2025-06-29 22:32:04.910605+00 f t Frida DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3617 +3082 2025-06-29 22:49:16.629798+00 2025-06-29 22:49:16.62981+00 f t Rocco DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3618 +3083 2025-06-29 23:53:36.527568+00 2025-06-29 23:53:36.527577+00 f t Akane DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3620 +3104 2025-06-30 16:03:13.974335+00 2025-06-30 16:03:13.974343+00 f t Leopoldo CAT 7 3.00 0.00 t \N 2025-07-01 \N \N MALE \N f \N 1026 3656 +3084 2025-06-30 00:47:32.269472+00 2025-06-30 00:47:32.269482+00 f t Manu CAT \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3623 +3085 2025-06-30 01:16:09.588035+00 2025-06-30 01:16:09.588045+00 f t Mia DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3624 +3086 2025-06-30 01:35:28.566752+00 2025-06-30 01:35:28.566764+00 f t TUCSON DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3626 +3087 2025-06-30 03:47:54.765762+00 2025-06-30 03:47:54.765775+00 f t Lulo DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3630 +3088 2025-06-30 04:28:16.50172+00 2025-06-30 04:28:16.501732+00 f t Flora CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3631 +3089 2025-06-30 05:56:55.114983+00 2025-06-30 05:56:55.114994+00 f t Sansa DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3636 +3090 2025-06-30 09:18:32.813303+00 2025-06-30 09:18:32.813312+00 f t Brandy DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3638 +3091 2025-06-30 11:09:08.862459+00 2025-06-30 11:09:08.862473+00 f t Cooper DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3639 +3092 2025-06-30 12:46:38.817336+00 2025-06-30 12:46:38.817346+00 f t Sol CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3642 +3094 2025-06-30 12:55:29.479604+00 2025-06-30 12:55:29.479614+00 f t Sol CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3644 +3874 2025-07-16 13:05:31.021444+00 2025-07-16 13:05:31.021456+00 f t Kiara CAT \N 1.90 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4666 +3096 2025-06-30 13:37:34.25507+00 2025-06-30 13:37:34.255082+00 f t viela DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3648 +3097 2025-06-30 13:53:35.08425+00 2025-06-30 13:53:35.084259+00 f t Indra DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3649 +3098 2025-06-30 14:00:20.989684+00 2025-06-30 14:00:20.989697+00 f t Bardito CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3650 +3100 2025-06-30 15:18:18.262737+00 2025-06-30 15:18:18.262746+00 f t Luna CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3653 +3093 2025-06-30 12:47:13.053601+00 2025-06-30 12:47:13.053608+00 f t Tymi CAT 10 5.00 0.00 t \N 2025-06-30 \N \N MALE \N f \N 1026 3643 +3101 2025-06-30 15:33:46.680867+00 2025-06-30 15:33:46.680877+00 f t Curry CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3654 +3102 2025-06-30 15:39:21.953472+00 2025-06-30 15:39:21.953481+00 f t Leopoldo CAT \N 3.00 27.00 t \N 2017-11-18 \N \N 2021-05-05 MALE Es naranja atigrado pero no sabia que raza poner \N f \N \N 2605 +3103 2025-06-30 15:41:18.82596+00 2025-06-30 15:41:18.825972+00 f t n DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3655 +3105 2025-06-30 16:31:47.349764+00 2025-06-30 16:31:47.349773+00 f t Principe DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3657 +3106 2025-06-30 16:44:04.739046+00 2025-06-30 16:44:04.739056+00 f t pipa DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3659 +3078 2025-06-29 22:03:54.114722+00 2025-06-29 22:03:54.114729+00 f t Morena DOG 16 8.40 0.00 t \N 2025-06-29 \N \N FEMALE Estuvo tomando cerenia y ranitidina\r\nEs dócil \N f \N 114 3613 +3107 2025-06-30 17:54:12.220028+00 2025-06-30 17:54:12.220041+00 f t Gordo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3660 +3108 2025-06-30 18:21:42.428977+00 2025-06-30 18:21:42.428986+00 f t Principe DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3662 +3109 2025-06-30 18:22:16.527263+00 2025-06-30 18:22:16.527274+00 f t Kurama CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3663 +3110 2025-06-30 18:46:09.128138+00 2025-06-30 18:46:09.128148+00 f t sol DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3664 +3099 2025-06-30 14:01:41.144995+00 2025-06-30 14:01:41.145007+00 f t kimba CAT 2 6.00 0.00 t 2013-09-01 2025-06-30 2025-02-01 2025-02-01 FEMALE \N f \N 113 3647 +3037 2025-06-28 23:34:26.38044+00 2025-06-28 23:34:26.380449+00 f t Lara DOG 10 4.20 0.00 f \N 2025-06-29 \N \N FEMALE \N f 8 114 3560 +3180 2025-07-01 22:25:41.864623+00 2025-07-01 22:25:41.864632+00 f t Nino DOG \N 21.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3749 +3181 2025-07-01 23:07:27.01988+00 2025-07-01 23:07:27.019892+00 f t Teo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3750 +3182 2025-07-01 23:09:23.506723+00 2025-07-01 23:09:23.506735+00 f t Teo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3751 +3183 2025-07-01 23:13:36.154593+00 2025-07-01 23:13:36.154601+00 f t Teo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3752 +3184 2025-07-01 23:51:00.292657+00 2025-07-01 23:51:00.292666+00 f t Palmito DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3753 +3837 2025-07-15 16:30:24.631578+00 2025-07-15 16:30:24.631591+00 f t MORO DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4617 +3111 2025-06-30 19:39:39.681946+00 2025-06-30 19:39:39.681955+00 f t copito DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3671 +3112 2025-06-30 19:40:13.099906+00 2025-06-30 19:40:13.099915+00 f t Pipu DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3672 +3113 2025-06-30 19:44:59.974769+00 2025-06-30 19:44:59.974778+00 f t copito DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3673 +3114 2025-06-30 20:00:20.629616+00 2025-06-30 20:00:20.629625+00 f t Velvet CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3674 +3115 2025-06-30 20:04:22.383534+00 2025-06-30 20:04:22.383543+00 f t Tonny DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3675 +3116 2025-06-30 20:23:41.221786+00 2025-06-30 20:23:41.221795+00 f t Cachifaz CAT \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3676 +3117 2025-06-30 20:24:23.143782+00 2025-06-30 20:24:23.143793+00 f t Lucky DOG \N 38.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3678 +3162 2025-07-01 15:31:34.230341+00 2025-07-01 15:31:34.230354+00 f t Orion CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3730 +3118 2025-06-30 21:09:41.523182+00 2025-06-30 21:09:41.523193+00 f t Lufi CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3679 +3119 2025-06-30 21:10:34.789336+00 2025-06-30 21:10:34.789347+00 f t Puki DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3679 +3120 2025-06-30 21:45:23.59696+00 2025-06-30 21:45:23.59697+00 f t Yiyo DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3681 +3121 2025-06-30 21:46:59.729429+00 2025-06-30 21:46:59.729443+00 f t pochi CAT \N 600.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3682 +3122 2025-06-30 21:50:12.591771+00 2025-06-30 21:50:12.591784+00 f t Praga CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3683 +3123 2025-06-30 21:51:24.961305+00 2025-06-30 21:51:24.961314+00 f t Bakú CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3683 +3124 2025-06-30 21:57:12.543686+00 2025-06-30 21:57:12.543697+00 f t Hachi CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3684 +3125 2025-06-30 22:01:27.584337+00 2025-06-30 22:01:27.584351+00 f t Hachi CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3685 +3126 2025-06-30 22:47:05.703415+00 2025-06-30 22:47:05.703426+00 f t Kimba DOG \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3686 +3127 2025-06-30 22:47:21.901909+00 2025-06-30 22:47:21.901919+00 f t Kimba CAT \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3686 +3128 2025-06-30 22:56:58.593335+00 2025-06-30 22:56:58.593346+00 f t Nashe CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3687 +3130 2025-06-30 23:58:38.277694+00 2025-06-30 23:58:38.277703+00 f t Lala DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3689 +3131 2025-06-30 23:59:09.604957+00 2025-06-30 23:59:09.604969+00 f t Lala DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3690 +3132 2025-07-01 00:01:25.448034+00 2025-07-01 00:01:25.448048+00 f t Mate DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3691 +3134 2025-07-01 00:06:55.433415+00 2025-07-01 00:06:55.433423+00 f t Leono CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3692 +3136 2025-07-01 00:18:58.740773+00 2025-07-01 00:18:58.740784+00 f t T DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3695 +3137 2025-07-01 00:19:11.077308+00 2025-07-01 00:19:11.07732+00 f t Bongo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3695 +3138 2025-07-01 00:29:50.251513+00 2025-07-01 00:29:50.251525+00 f t Nilo DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3696 +3139 2025-07-01 00:30:03.010789+00 2025-07-01 00:30:03.010803+00 f t Nilo CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3696 +3141 2025-07-01 01:22:43.383031+00 2025-07-01 01:22:43.383045+00 f t Lyon CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3699 +3142 2025-07-01 01:32:51.242353+00 2025-07-01 01:32:51.242364+00 f t Stella DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3700 +3143 2025-07-01 02:41:23.430475+00 2025-07-01 02:41:23.430483+00 f t DUKE DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3703 +2433 2025-06-15 17:25:15.15307+00 2025-06-15 17:25:15.153077+00 f t Eliana DOG 1 0.00 0.00 f \N 2025-06-17 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál?\r\nPastilla para las pulgas\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce?\r\nNo \N f 8 114 2754 +3144 2025-07-01 09:37:37.20561+00 2025-07-01 09:37:37.205621+00 f t Rey CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3705 +3145 2025-07-01 09:57:59.609727+00 2025-07-01 09:57:59.609741+00 f t Bruno DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3706 +3146 2025-07-01 12:04:07.822238+00 2025-07-01 12:04:07.822252+00 f t Electrón CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3708 +3129 2025-06-30 23:57:25.115515+00 2025-06-30 23:57:25.115522+00 f t Pomerania DOG 0 2.00 0.00 f \N 2025-06-30 \N \N MALE \N f \N 113 3688 +3147 2025-07-01 12:36:45.008082+00 2025-07-01 12:36:45.008091+00 f t Michina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3709 +3150 2025-07-01 13:34:16.368962+00 2025-07-01 13:34:16.368973+00 f t Mila CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3716 +3151 2025-07-01 13:42:12.22669+00 2025-07-01 13:42:12.226698+00 f t Athos DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3717 +3171 2025-07-01 17:46:06.200186+00 2025-07-01 17:46:06.200199+00 f t Paco CAT \N 5.00 0.00 f \N \N 2025-07-02 \N \N MALE \N \N f \N \N 3740 +3153 2025-07-01 14:01:01.201387+00 2025-07-01 14:01:01.2014+00 f t Milo DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3720 +3154 2025-07-01 14:12:37.030984+00 2025-07-01 14:12:37.030993+00 f t Sasha DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3721 +3155 2025-07-01 14:13:20.580647+00 2025-07-01 14:13:20.580658+00 f t Sasha DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3722 +3156 2025-07-01 14:32:45.49655+00 2025-07-01 14:32:45.496563+00 f t Luli CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3723 +3158 2025-07-01 15:02:44.765623+00 2025-07-01 15:02:44.765636+00 f t Bills CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3725 +3159 2025-07-01 15:03:49.956419+00 2025-07-01 15:03:49.956428+00 f t Luli CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3726 +3160 2025-07-01 15:07:31.96554+00 2025-07-01 15:07:31.965553+00 f t Amy CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3727 +3161 2025-07-01 15:16:56.647225+00 2025-07-01 15:16:56.647233+00 f t Gato de Maria CAT 11 5.10 0.00 t \N 2025-07-02 \N \N \N \N f \N 1026 3729 +3163 2025-07-01 15:34:42.670658+00 2025-07-01 15:34:42.67067+00 f t Capitan mofletes CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3731 +3164 2025-07-01 16:07:17.812308+00 2025-07-01 16:07:17.812322+00 f t Eva CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3733 +3849 2025-07-15 20:28:44.240102+00 2025-07-15 20:28:44.240115+00 f t Charly CAT \N 4.00 0.00 f \N \N 2025-07-16 \N \N MALE \N \N f \N \N 4634 +2405 2025-06-14 21:00:34.741201+00 2025-06-14 21:00:34.74121+00 f t Akiles Toledo DOG 3 13.00 0.00 f \N 2025-06-14 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? : nogastrol\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? : mmmm nunca tuvimos problemas \N f 5 114 2719 +3165 2025-07-01 16:38:07.675984+00 2025-07-01 16:38:07.675997+00 f t Sedric CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3734 +3167 2025-07-01 16:40:56.94175+00 2025-07-01 16:40:56.941762+00 f t Kimi DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3736 +3168 2025-07-01 17:04:53.734748+00 2025-07-01 17:04:53.734759+00 f t Kiwi CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3737 +3169 2025-07-01 17:06:38.208227+00 2025-07-01 17:06:38.208236+00 f t Negri CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3738 +3170 2025-07-01 17:42:28.471371+00 2025-07-01 17:42:28.47138+00 f t Tango DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3739 +3172 2025-07-01 18:09:18.53482+00 2025-07-01 18:09:18.534828+00 f t Gris CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3741 +3173 2025-07-01 20:40:56.490868+00 2025-07-01 20:40:56.490877+00 f t Hela DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3743 +3174 2025-07-01 20:49:17.686579+00 2025-07-01 20:49:17.68659+00 f t Nacho DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3744 +2908 2025-06-26 11:03:50.095515+00 2025-06-26 11:03:50.095526+00 f t Felipe CAT 16 7.00 0.00 f \N 2025-07-01 \N \N \N \N f \N 113 3403 +3177 2025-07-01 21:21:07.889823+00 2025-07-01 21:21:07.889835+00 f t Lolo DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3746 +3178 2025-07-01 21:53:14.897274+00 2025-07-01 21:53:14.897283+00 f t Tota DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3747 +3179 2025-07-01 22:09:44.348225+00 2025-07-01 22:09:44.348237+00 f t kitty DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3748 +3157 2025-07-01 15:00:37.134356+00 2025-07-01 15:00:37.134365+00 f t Perro de Miriam DOG \N 36.00 0.00 f \N 2025-07-01 \N \N \N \N f \N 1026 3724 +3133 2025-07-01 00:04:08.567671+00 2025-07-01 00:04:08.567683+00 f t Penny CAT \N 2.60 0.00 f \N \N 2025-07-03 \N \N FEMALE \N \N f \N \N 3692 +3140 2025-07-01 00:34:06.267675+00 2025-07-01 00:34:06.267689+00 f t Nilo CAT \N 3.00 0.00 f \N \N 2025-07-01 \N \N FEMALE \N \N f \N \N 3697 +3176 2025-07-01 21:17:34.649808+00 2025-07-01 21:17:34.649816+00 f t KAMAL DOG \N 0.00 0.00 t \N 2025-07-03 \N \N MALE \N f 17 113 3745 +3135 2025-07-01 00:09:22.293138+00 2025-07-01 00:09:22.293146+00 f t kimba CAT 2 6.00 0.00 t \N 2025-07-01 \N \N FEMALE Toma meloxivet- floxacina \N f \N 113 3693 +3152 2025-07-01 14:00:11.606854+00 2025-07-01 14:00:11.606868+00 f t Cuba DOG \N 50.00 0.00 f \N \N 2025-07-05 \N \N FEMALE \N \N f \N \N 3719 +3175 2025-07-01 21:17:08.192096+00 2025-07-01 21:17:08.192104+00 f t NIX CAT \N 0.00 0.00 t \N 2025-07-03 \N \N MALE \N f \N 113 3745 +3149 2025-07-01 12:52:43.096531+00 2025-07-01 12:52:43.096542+00 f t Teo DOG \N 16.00 0.00 f \N \N 2025-07-11 \N \N MALE \N \N f \N \N 3712 +6025 2025-08-26 22:55:33.878301+00 2025-08-26 22:55:33.878311+00 f t Lana CAT \N 3.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7337 +3148 2025-07-01 12:40:05.626983+00 2025-07-01 12:40:05.626999+00 f t Codorniz CAT \N 3.00 0.00 f \N \N 2025-07-21 \N \N FEMALE \N \N f \N \N 3710 +5977 2025-08-25 19:03:05.278005+00 2025-08-25 19:03:05.278016+00 f t Reina DOG 16 6.00 0.00 t \N \N \N \N FEMALE la medicación que toma actualmente , Ursomarina 10 mlg 1/2 comprimido por día , flexapet 1/2 comprimido 3 veces por semana , levotiroxina 100 todos los días \N f \N 1208 7284 +3185 2025-07-02 00:11:41.925637+00 2025-07-02 00:11:41.925655+00 f t Mia DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3754 +3186 2025-07-02 00:13:31.427795+00 2025-07-02 00:13:31.427804+00 f t Homero CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3755 +3187 2025-07-02 00:20:57.15331+00 2025-07-02 00:20:57.15332+00 f t Kyra CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3756 +3550 2025-07-09 21:44:24.448004+00 2025-07-09 21:44:24.448012+00 f t Franco DOG 11 35.00 0.00 f \N 2025-07-09 \N \N MALE Esta tomando medicación desde el 1 de julio Oltrans Flex 1 comprimido 1/2 \N f 1 114 4255 +3189 2025-07-02 01:04:03.097586+00 2025-07-02 01:04:03.097595+00 f t kissy CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3759 +3190 2025-07-02 01:24:58.804472+00 2025-07-02 01:24:58.804486+00 f t Paco CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3760 +3191 2025-07-02 01:25:19.497975+00 2025-07-02 01:25:19.497984+00 f t simba CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3760 +3192 2025-07-02 02:08:57.568333+00 2025-07-02 02:08:57.568342+00 f t Paco CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3762 +3193 2025-07-02 02:23:02.897936+00 2025-07-02 02:23:02.89795+00 f t ATENA DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3764 +3194 2025-07-02 02:23:34.49074+00 2025-07-02 02:23:34.490749+00 f t Atena CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3764 +3195 2025-07-02 02:55:17.896027+00 2025-07-02 02:55:17.896036+00 f t Oli DOG \N 45.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3765 +3196 2025-07-02 02:59:56.153519+00 2025-07-02 02:59:56.153531+00 f t Paçoca DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3766 +3197 2025-07-02 03:44:55.028659+00 2025-07-02 03:44:55.028667+00 f t Ro CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3768 +3198 2025-07-02 11:13:56.77267+00 2025-07-02 11:13:56.772679+00 f t Mike DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3770 +3199 2025-07-02 11:19:42.468571+00 2025-07-02 11:19:42.46858+00 f t Mike DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3771 +3200 2025-07-02 11:25:31.367721+00 2025-07-02 11:25:31.36773+00 f t Suri DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3772 +3201 2025-07-02 12:43:13.546324+00 2025-07-02 12:43:13.546333+00 f t Leo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3773 +3202 2025-07-02 13:18:52.89897+00 2025-07-02 13:18:52.898977+00 f t Perlita DOG 15 16.00 0.00 f \N \N \N \N FEMALE \N f \N 1026 3777 +3203 2025-07-02 15:46:46.414689+00 2025-07-02 15:46:46.414698+00 f t Patan DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3780 +3204 2025-07-02 16:02:06.46719+00 2025-07-02 16:02:06.467202+00 f t More DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3781 +3206 2025-07-02 17:12:01.806836+00 2025-07-02 17:12:01.806845+00 f t Pancjo DOG \N 9.20 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3784 +3208 2025-07-02 18:02:50.222276+00 2025-07-02 18:02:50.222288+00 f t Blaki CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3786 +3209 2025-07-02 18:21:21.711052+00 2025-07-02 18:21:21.711065+00 f t Nico CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3787 +3210 2025-07-02 18:48:11.147249+00 2025-07-02 18:48:11.147257+00 f t Ámbar DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3788 +3213 2025-07-02 19:56:05.455681+00 2025-07-02 19:56:05.455691+00 f t Alana CAT \N 2.00 0.00 t \N 2025-08-21 \N \N FEMALE Gatitos de la fabrica de en frente \N f 27 1208 3789 +632 2025-03-04 21:33:47.547326+00 2025-03-04 21:33:47.547333+00 f t Neón CAT 9 7.00 0.00 t 2015-12-02 2025-06-06 \N \N MALE \N f \N 114 536 +3211 2025-07-02 19:53:27.979799+00 2025-07-02 19:53:27.979808+00 f t Lucas DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3790 +3875 2025-07-16 13:34:12.642799+00 2025-07-16 13:34:12.642813+00 f t MONZU DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4667 +3215 2025-07-02 19:59:00.954989+00 2025-07-02 19:59:00.954999+00 f t Lucas DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3792 +3216 2025-07-02 20:10:52.208997+00 2025-07-02 20:10:52.209009+00 f t Sam DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3793 +3217 2025-07-02 20:33:55.370168+00 2025-07-02 20:33:55.37018+00 f t Billita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3795 +3218 2025-07-02 20:35:36.414715+00 2025-07-02 20:35:36.414724+00 f t rubia DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3796 +3219 2025-07-02 20:36:25.128018+00 2025-07-02 20:36:25.128028+00 f t Rubia DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3796 +3220 2025-07-02 20:43:34.635385+00 2025-07-02 20:43:34.635394+00 f t Zeus DOG \N 24.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3797 +3221 2025-07-02 21:06:33.250127+00 2025-07-02 21:06:33.250137+00 f t Diego DOG \N 29.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3799 +3232 2025-07-03 12:54:33.774525+00 2025-07-03 12:54:33.774533+00 f t Almendra CAT 12 0.00 0.00 t 2013-12-09 2025-07-26 \N \N FEMALE \N f \N 1026 3820 +6026 2025-08-26 23:03:52.252924+00 2025-08-26 23:03:52.252936+00 f t Chiki CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7338 +3236 2025-07-03 14:22:10.151559+00 2025-07-03 14:22:10.151571+00 f t Pandora CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3826 +6049 2025-08-27 14:55:13.458817+00 2025-08-27 14:55:13.458827+00 f t Alma CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7363 +3244 2025-07-03 17:41:47.877096+00 2025-07-03 17:41:47.877107+00 f t TOMY CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3843 +3897 2025-07-16 20:36:12.206282+00 2025-07-16 20:36:12.206294+00 f t Leyla DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4694 +3225 2025-07-03 01:09:13.778638+00 2025-07-03 01:09:13.778649+00 f t Lua CAT \N 780.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3808 +3226 2025-07-03 01:12:41.9123+00 2025-07-03 01:12:41.91231+00 f t Lua CAT \N 780.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3809 +3227 2025-07-03 02:19:37.586334+00 2025-07-03 02:19:37.586343+00 f t Amelie DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3812 +3228 2025-07-03 02:43:32.820515+00 2025-07-03 02:43:32.820523+00 f t Pancho DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3814 +3229 2025-07-03 02:57:47.565876+00 2025-07-03 02:57:47.565888+00 f t Kyra DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3815 +3230 2025-07-03 02:59:11.820495+00 2025-07-03 02:59:11.820504+00 f t Kaly CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3816 +3231 2025-07-03 11:34:56.373844+00 2025-07-03 11:34:56.373857+00 f t Yoyo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3819 +3910 2025-07-17 06:33:35.043487+00 2025-07-17 06:33:35.043497+00 f t elmer DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4720 +3245 2025-07-03 17:44:39.722531+00 2025-07-03 17:44:39.722541+00 f t TOMY CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3844 +3233 2025-07-03 13:37:14.31806+00 2025-07-03 13:37:14.318071+00 f t Oliver DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3821 +3234 2025-07-03 13:37:30.939243+00 2025-07-03 13:37:30.939254+00 f t Oliver CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3821 +3235 2025-07-03 13:43:36.579987+00 2025-07-03 13:43:36.579995+00 f t Fidel DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3825 +3249 2025-07-03 18:07:17.385409+00 2025-07-03 18:07:17.38542+00 f t Smirnoff CAT \N 7.60 0.00 f \N \N 2025-07-28 \N \N MALE \N \N f \N \N 3848 +3237 2025-07-03 15:29:45.21112+00 2025-07-03 15:29:45.211166+00 f t Lisbon DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3830 +3238 2025-07-03 15:59:46.598844+00 2025-07-03 15:59:46.598855+00 f t Ricky DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3832 +3239 2025-07-03 16:09:34.440696+00 2025-07-03 16:09:34.440705+00 f t Morena DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3834 +3240 2025-07-03 16:21:16.15279+00 2025-07-03 16:21:16.1528+00 f t Daisy DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3837 +3241 2025-07-03 16:32:04.535316+00 2025-07-03 16:32:04.535326+00 f t Mollo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3838 +3242 2025-07-03 16:34:14.356958+00 2025-07-03 16:34:14.356966+00 f t Blancanieves DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3840 +3243 2025-07-03 16:38:19.096307+00 2025-07-03 16:38:19.09632+00 f t Blancanieves DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3840 +3246 2025-07-03 17:49:29.934824+00 2025-07-03 17:49:29.934832+00 f t Katy DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3845 +3247 2025-07-03 17:56:57.799653+00 2025-07-03 17:56:57.799662+00 f t Noelia DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3846 +3248 2025-07-03 18:00:35.938339+00 2025-07-03 18:00:35.938352+00 f t Honey DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3847 +3251 2025-07-03 18:30:07.921529+00 2025-07-03 18:30:07.921544+00 f t Chlie DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3853 +3252 2025-07-03 18:32:03.423848+00 2025-07-03 18:32:03.423862+00 f t CHLOE DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3855 +3212 2025-07-02 19:55:02.84046+00 2025-07-02 19:55:02.84047+00 f t Blaki CAT \N 2.00 0.00 t \N 2025-07-03 \N \N MALE Son gatitos de una fabrica de en frente \N f 27 1208 3789 +3166 2025-07-01 16:39:42.629472+00 2025-07-01 16:39:42.62948+00 f t Uní DOG 12 10.00 0.00 t \N 2025-07-08 \N \N \N \N f 10 1026 3735 +3095 2025-06-30 13:05:42.826983+00 2025-06-30 13:05:42.826991+00 f t Pepe CAT 0 10.00 0.00 f \N 2025-07-02 \N \N MALE \N f \N 1026 3645 +3250 2025-07-03 18:08:10.908949+00 2025-07-03 18:08:10.90896+00 f t Richelieu CAT \N 3.00 0.00 f \N \N 2025-07-29 \N \N MALE \N \N f \N \N 3849 +3207 2025-07-02 17:12:31.595196+00 2025-07-02 17:12:31.595206+00 f t Pancho DOG \N 9.20 0.00 t \N \N 2025-07-08 \N \N MALE \N \N f \N \N 3784 +3205 2025-07-02 16:55:02.509511+00 2025-07-02 16:55:02.509523+00 f t Juana DOG 2 11.00 0.00 t \N 2025-07-07 \N \N FEMALE \N f 55 1026 3782 +3222 2025-07-02 23:13:19.996572+00 2025-07-02 23:13:19.996581+00 f t Anouk DOG 10 23.00 0.00 t Piel sensible. Alérgico a picaduras de pulgas, a shampoo no hipoalergénicos, perfumes. 2014-11-06 2025-07-02 \N \N MALE No dar ivermectina \N f 17 113 3803 +3253 2025-07-03 18:38:14.318828+00 2025-07-03 18:38:14.318837+00 f t Milo CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3856 +3254 2025-07-03 18:49:57.018254+00 2025-07-03 18:49:57.018263+00 f t Kiara DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3858 +3255 2025-07-03 18:59:04.604162+00 2025-07-03 18:59:04.604172+00 f t Teo DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3859 +3256 2025-07-03 19:46:15.874713+00 2025-07-03 19:46:15.874725+00 f t Moshin CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3864 +5978 2025-08-25 20:22:20.654704+00 2025-08-25 20:22:20.654716+00 f t Maite CAT \N 1.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7285 +3259 2025-07-03 20:02:44.031523+00 2025-07-03 20:02:44.031532+00 f t Estrella CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3867 +3299 2025-07-05 00:31:12.434848+00 2025-07-05 00:31:12.434854+00 f t Candelaria DOG 11 0.00 0.00 f \N 2025-07-04 \N \N FEMALE \N f 1 1208 3930 +3261 2025-07-03 21:49:49.189605+00 2025-07-03 21:49:49.189616+00 f t Kiira DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3872 +3304 2025-07-05 02:02:26.015947+00 2025-07-05 02:02:26.015958+00 f t Cata CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3934 +3262 2025-07-03 22:41:58.457848+00 2025-07-03 22:41:58.457857+00 f t Riberto CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3873 +3214 2025-07-02 19:56:43.271219+00 2025-07-02 19:56:43.271226+00 f t Qenti CAT \N 2.00 0.00 t \N 2025-07-03 \N \N MALE \N f 27 1208 3789 +3263 2025-07-03 23:58:30.255023+00 2025-07-03 23:58:30.255034+00 f t Maria de los Mercedes CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3875 +3264 2025-07-04 00:17:48.850821+00 2025-07-04 00:17:48.85083+00 f t Dibu DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3876 +3265 2025-07-04 00:24:56.24118+00 2025-07-04 00:24:56.241192+00 f t Milo DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3877 +3266 2025-07-04 00:28:46.615215+00 2025-07-04 00:28:46.615224+00 f t Maria de las Mercedes CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3878 +3267 2025-07-04 01:44:16.043383+00 2025-07-04 01:44:16.043392+00 f t Penny Lane DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3881 +3268 2025-07-04 04:08:06.990839+00 2025-07-04 04:08:06.990852+00 f t Kobeni CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3883 +3269 2025-07-04 07:38:04.570672+00 2025-07-04 07:38:04.570684+00 f t Hestia CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3885 +3271 2025-07-04 11:01:48.331223+00 2025-07-04 11:01:48.331235+00 f t Negan CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3888 +3272 2025-07-04 11:16:19.935289+00 2025-07-04 11:16:19.935299+00 f t Gringo DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3889 +3273 2025-07-04 11:40:55.822212+00 2025-07-04 11:40:55.822221+00 f t Chamin DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3890 +3274 2025-07-04 12:22:12.935923+00 2025-07-04 12:22:12.935939+00 f t Uma DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3892 +3275 2025-07-04 12:22:49.222585+00 2025-07-04 12:22:49.222593+00 f t Teodoro CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3893 +3276 2025-07-04 13:25:31.149189+00 2025-07-04 13:25:31.149197+00 f t Min CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3896 +3277 2025-07-04 13:34:56.596181+00 2025-07-04 13:34:56.596191+00 f t Lila CAT \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3897 +3278 2025-07-04 15:07:24.04782+00 2025-07-04 15:07:24.047828+00 f t Sira DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3900 +6050 2025-08-27 15:15:41.164294+00 2025-08-27 15:15:41.164307+00 f t Toby DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7364 +3280 2025-07-04 16:08:51.305201+00 2025-07-04 16:08:51.30521+00 f t Luna DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3904 +3283 2025-07-04 16:29:02.046641+00 2025-07-04 16:29:02.04665+00 f t NEGRITA DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3906 +3284 2025-07-04 17:00:58.890709+00 2025-07-04 17:00:58.890718+00 f t Rocky DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3907 +3260 2025-07-03 20:40:49.301066+00 2025-07-03 20:40:49.301073+00 f t India DOG 13 11.00 0.00 f \N 2025-07-03 \N \N FEMALE \N f \N 1026 3868 +3285 2025-07-04 17:20:23.979395+00 2025-07-04 17:20:23.979408+00 f t Laos CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3910 +3876 2025-07-16 13:54:31.272364+00 2025-07-16 13:54:31.272726+00 f t Pelu DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4668 +3289 2025-07-04 19:57:27.709392+00 2025-07-04 19:57:27.709399+00 f t Kathy DOG 12 50.00 0.00 t \N 2025-07-05 \N \N \N \N f 3 1026 3916 +3287 2025-07-04 18:14:12.473125+00 2025-07-04 18:14:12.473135+00 f t Kathy DOG \N 60.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3912 +3288 2025-07-04 19:36:56.634336+00 2025-07-04 19:36:56.634345+00 f t Lola DOG \N 3.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3914 +3898 2025-07-16 21:11:18.005539+00 2025-07-16 21:11:18.005551+00 f t Nala DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4696 +3290 2025-07-04 20:35:23.246958+00 2025-07-04 20:35:23.246971+00 f t Viky DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3917 +6027 2025-08-26 23:46:53.700306+00 2025-08-26 23:46:53.700315+00 f t NEGRI DOG 3 14.00 0.00 t \N \N \N \N MALE \N f \N 114 183 +3292 2025-07-04 21:15:32.157018+00 2025-07-04 21:15:32.157028+00 f t Moka CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3919 +3293 2025-07-04 22:53:16.710121+00 2025-07-04 22:53:16.710133+00 f t Gala DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3921 +3294 2025-07-04 22:54:14.608197+00 2025-07-04 22:54:14.608206+00 f t Vicky CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3922 +3295 2025-07-04 23:34:24.363322+00 2025-07-04 23:34:24.363331+00 f t Olivia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3924 +3918 2025-07-17 13:42:36.528239+00 2025-07-17 13:42:36.528248+00 f t Glo DOG \N 29.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4730 +3298 2025-07-05 00:25:30.254864+00 2025-07-05 00:25:30.254877+00 f t Chimuelo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3929 +3305 2025-07-05 02:58:09.880219+00 2025-07-05 02:58:09.880233+00 f t India DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3935 +3300 2025-07-05 01:05:00.932646+00 2025-07-05 01:05:00.932655+00 f t Pomelo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3931 +3301 2025-07-05 01:09:04.110456+00 2025-07-05 01:09:04.110468+00 f t Pomelo CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3932 +3302 2025-07-05 01:21:10.513331+00 2025-07-05 01:21:10.51334+00 f t Lucino DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3933 +3303 2025-07-05 01:21:44.267703+00 2025-07-05 01:21:44.267712+00 f t Lucino CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3933 +3281 2025-07-04 16:14:15.739896+00 2025-07-04 16:14:15.739906+00 f t Dino DOG \N 20.00 0.00 f \N \N 2025-07-04 \N \N MALE \N \N f \N \N 3905 +3282 2025-07-04 16:25:50.146002+00 2025-07-04 16:25:50.14601+00 f t groot CAT \N 0.00 0.00 f \N 2025-07-04 \N \N \N \N f \N 1026 745 +599 2025-02-26 20:52:53.28866+00 2025-02-26 20:52:53.288666+00 f t Harvey CAT 5 7.00 0.00 t 2019-12-02 2025-07-04 \N \N MALE \N f 27 111 507 +3306 2025-07-05 03:21:14.381944+00 2025-07-05 03:21:14.381954+00 f t Misirum CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3936 +3307 2025-07-05 05:13:25.264534+00 2025-07-05 05:13:25.264544+00 f t Jerry DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3937 +3308 2025-07-05 05:23:22.942434+00 2025-07-05 05:23:22.942444+00 f t Jerry DOG \N 39.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3938 +3309 2025-07-05 09:56:57.57373+00 2025-07-05 09:56:57.573745+00 f t India DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3940 +3310 2025-07-05 11:57:00.636709+00 2025-07-05 11:57:00.636718+00 f t Arenita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3944 +3311 2025-07-05 12:06:42.299046+00 2025-07-05 12:06:42.299054+00 f t Arenita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3946 +3312 2025-07-05 12:07:14.711399+00 2025-07-05 12:07:14.711409+00 f t Telmo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3947 +3313 2025-07-05 12:08:51.617764+00 2025-07-05 12:08:51.617772+00 f t Arenita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3948 +3291 2025-07-04 20:40:58.256531+00 2025-07-04 20:40:58.256544+00 f t Viky DOG 8 12.00 0.00 t \N 2025-07-04 \N \N FEMALE \N f \N 1026 3918 +3257 2025-07-03 19:51:45.9951+00 2025-07-03 19:51:45.995109+00 f t Moshin CAT 0 4.00 0.00 t \N 2025-07-04 \N \N MALE \N f \N 113 3866 +3270 2025-07-04 10:39:03.809393+00 2025-07-04 10:39:03.809408+00 f t Rayo DOG \N 24.00 0.00 f \N \N 2025-07-05 \N \N MALE \N \N f \N \N 3887 +3296 2025-07-04 23:35:18.15824+00 2025-07-04 23:35:18.158246+00 f t Escabio CAT 7 4.00 0.00 t \N 2025-07-09 \N \N MALE \N f 27 113 3926 +6063 2025-08-27 19:02:41.951661+00 2025-08-27 19:02:41.95167+00 f t Titan DOG \N 50.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7380 +3921 2025-07-17 14:59:54.224175+00 2025-07-17 14:59:54.224185+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4736 +3923 2025-07-17 15:44:44.155787+00 2025-07-17 15:44:44.155796+00 f t Canela DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4738 +3838 2025-07-15 16:36:20.597327+00 2025-07-15 16:36:20.597336+00 f t Chardonay CAT \N 0.00 0.00 f \N 2025-07-15 \N \N MALE \N f \N 1026 4618 +3297 2025-07-04 23:41:54.029169+00 2025-07-04 23:41:54.029179+00 f t Olivia CAT 0 4.00 0.00 f \N 2025-08-09 \N \N FEMALE \N f \N 113 3927 +6070 2025-08-27 22:37:30.816781+00 2025-08-27 22:37:30.816794+00 f t Lola DOG \N 8.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7390 +6074 2025-08-27 22:47:39.75224+00 2025-08-27 22:47:39.752253+00 f t Mondongo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7393 +8501 2025-10-08 00:27:20.98204+00 2025-10-08 00:27:20.982049+00 f t Rita DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10241 +6080 2025-08-27 23:37:59.730638+00 2025-08-27 23:37:59.730648+00 f t Mia CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7399 +6082 2025-08-27 23:58:06.678793+00 2025-08-27 23:58:06.678801+00 f t Rex CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7401 +6084 2025-08-27 23:59:09.932316+00 2025-08-27 23:59:09.932331+00 f t Pepito DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7402 +6086 2025-08-28 00:03:01.363328+00 2025-08-28 00:03:01.363343+00 f t Panchi y tika DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7404 +6088 2025-08-28 00:07:39.154554+00 2025-08-28 00:07:39.154563+00 f t Luke CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7405 +3314 2025-07-05 12:20:49.057083+00 2025-07-05 12:20:49.057127+00 f t Arenita DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3950 +3315 2025-07-05 12:39:54.018485+00 2025-07-05 12:39:54.018495+00 f t Peperina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3951 +3316 2025-07-05 12:51:57.454513+00 2025-07-05 12:51:57.454526+00 f t Peperina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3952 +3317 2025-07-05 13:25:14.17855+00 2025-07-05 13:25:14.178559+00 f t Titi CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3953 +3318 2025-07-05 14:01:21.259986+00 2025-07-05 14:01:21.259995+00 f t Catalinai DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3955 +3319 2025-07-05 14:17:04.25314+00 2025-07-05 14:17:04.253152+00 f t Mike DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3956 +3320 2025-07-05 15:33:01.63617+00 2025-07-05 15:33:01.636182+00 f t Wilson CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3958 +3321 2025-07-05 15:46:42.640748+00 2025-07-05 15:46:42.640757+00 f t Antonia CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3959 +3322 2025-07-05 15:46:59.015053+00 2025-07-05 15:46:59.015062+00 f t Antonia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3959 +3323 2025-07-05 15:57:18.395495+00 2025-07-05 15:57:18.395504+00 f t Gala DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3960 +3324 2025-07-05 16:50:43.150161+00 2025-07-05 16:50:43.15017+00 f t Pancho CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3963 +3325 2025-07-05 17:47:24.986905+00 2025-07-05 17:47:24.986914+00 f t Pancho CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3965 +3326 2025-07-05 17:51:09.330054+00 2025-07-05 17:51:09.330067+00 f t Pancho CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3966 +3327 2025-07-05 18:09:43.021464+00 2025-07-05 18:09:43.021472+00 f t Pepe CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3967 +3328 2025-07-05 18:15:14.874077+00 2025-07-05 18:15:14.874088+00 f t Pepe CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3968 +3329 2025-07-05 18:41:00.292148+00 2025-07-05 18:41:00.292158+00 f t Tom CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3970 +3330 2025-07-05 18:41:27.494993+00 2025-07-05 18:41:27.495004+00 f t Thor DOG \N 6.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3971 +3331 2025-07-05 19:13:10.794664+00 2025-07-05 19:13:10.794673+00 f t Pluto DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3972 +3332 2025-07-05 19:25:35.351324+00 2025-07-05 19:25:35.351336+00 f t Henry DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3976 +3333 2025-07-05 19:27:16.403876+00 2025-07-05 19:27:16.403888+00 f t Tesla DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3976 +3334 2025-07-05 20:11:23.640359+00 2025-07-05 20:11:23.640371+00 f t Rocky DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3977 +393 2025-01-16 19:54:35.145+00 2025-01-16 19:54:35.145+00 f t Pandora DOG 1 35.00 0.00 f 2023-12-02 2025-06-12 \N \N FEMALE \N f 2 111 330 +3376 2025-07-06 15:18:22.02514+00 2025-07-06 15:18:22.025148+00 f t POL DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4034 +3382 2025-07-06 18:59:37.750269+00 2025-07-06 18:59:37.750278+00 f t Amaral CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4047 +3337 2025-07-05 22:25:24.571526+00 2025-07-05 22:25:24.571534+00 f t Tobiana CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3984 +3339 2025-07-05 23:00:53.22701+00 2025-07-05 23:00:53.227019+00 f t Cairo CAT \N 5.00 0.00 f \N \N 2025-07-12 \N \N MALE \N \N f \N \N 3988 +3377 2025-07-06 15:39:18.309416+00 2025-07-06 15:39:18.309424+00 f t Benicio CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4035 +3336 2025-07-05 21:44:53.733872+00 2025-07-05 21:44:53.73388+00 f t Arenita CAT 6 5.00 0.00 t \N 2025-07-05 \N \N FEMALE Tomó hace 3 días 1 comprimido para pulgas Power \N f \N 114 3981 +3340 2025-07-05 23:19:23.191865+00 2025-07-05 23:19:23.191877+00 f t Bastien DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3989 +3341 2025-07-05 23:34:02.563324+00 2025-07-05 23:34:02.563337+00 f t Ciro DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3990 +3342 2025-07-05 23:50:45.210965+00 2025-07-05 23:50:45.210973+00 f t Kira DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3991 +3343 2025-07-05 23:54:21.903847+00 2025-07-05 23:54:21.903856+00 f t Astor DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3991 +3344 2025-07-06 00:02:48.806847+00 2025-07-06 00:02:48.806855+00 f t Feli DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3992 +3345 2025-07-06 00:18:36.053685+00 2025-07-06 00:18:36.053696+00 f t Gatuso DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 3993 +3346 2025-07-06 00:24:48.985336+00 2025-07-06 00:24:48.985345+00 f t Lola DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3994 +3347 2025-07-06 00:25:11.411261+00 2025-07-06 00:25:11.411271+00 f t Rocky DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 3995 +3279 2025-07-04 15:31:15.289757+00 2025-07-04 15:31:15.289765+00 f t Percy DOG 9 0.00 0.00 f \N 2025-07-05 \N \N MALE hace 15 días tomo corticoides 3 días y 5 días omeprazo\r\nSe estresa \N f \N 1026 3901 +3348 2025-07-06 01:40:09.675633+00 2025-07-06 01:40:09.675645+00 f t viole CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 3996 +3349 2025-07-06 01:47:39.381312+00 2025-07-06 01:47:39.381326+00 f t A CAT \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3997 +3350 2025-07-06 03:31:11.359069+00 2025-07-06 03:31:11.35908+00 f t Kira CAT \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 3998 +3351 2025-07-06 03:59:14.271476+00 2025-07-06 03:59:14.271485+00 f t Floppy DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4000 +3352 2025-07-06 04:47:37.340653+00 2025-07-06 04:47:37.340667+00 f t Billie DOG \N 21.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4003 +3353 2025-07-06 05:29:33.812906+00 2025-07-06 05:29:33.812914+00 f t Negrita DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4004 +3354 2025-07-06 05:58:26.503685+00 2025-07-06 05:58:26.503694+00 f t Stitch DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4005 +3355 2025-07-06 08:10:01.760183+00 2025-07-06 08:10:01.760197+00 f t Rocky DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4006 +3356 2025-07-06 08:57:21.732011+00 2025-07-06 08:57:21.732019+00 f t Moskito DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4007 +3357 2025-07-06 09:06:18.12152+00 2025-07-06 09:06:18.121529+00 f t Romeo DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4008 +3358 2025-07-06 09:27:38.399287+00 2025-07-06 09:27:38.399296+00 f t Lola DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4009 +3359 2025-07-06 09:38:19.452826+00 2025-07-06 09:38:19.452835+00 f t Romeo DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4010 +3360 2025-07-06 09:46:30.905412+00 2025-07-06 09:46:30.90542+00 f t Romeo DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4011 +3361 2025-07-06 11:20:07.195082+00 2025-07-06 11:20:07.195093+00 f t Fiona CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4012 +3362 2025-07-06 11:39:51.14873+00 2025-07-06 11:39:51.148739+00 f t Mike CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4013 +3363 2025-07-06 12:15:31.395397+00 2025-07-06 12:15:31.395409+00 f t Neron DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4014 +3364 2025-07-06 12:34:29.348211+00 2025-07-06 12:34:29.348219+00 f t Mila DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4015 +3365 2025-07-06 12:34:42.804112+00 2025-07-06 12:34:42.804121+00 f t Mila DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4015 +3366 2025-07-06 12:43:18.096387+00 2025-07-06 12:43:18.096396+00 f t Otto DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4016 +3367 2025-07-06 12:48:58.965669+00 2025-07-06 12:48:58.965677+00 f t Neptuno CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4017 +3368 2025-07-06 13:30:37.024209+00 2025-07-06 13:30:37.024218+00 f t Pipa DOG \N 43.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4020 +3369 2025-07-06 13:39:43.562443+00 2025-07-06 13:39:43.562451+00 f t Simba CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4021 +3370 2025-07-06 13:59:53.092022+00 2025-07-06 13:59:53.092033+00 f t Eva CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4022 +3371 2025-07-06 14:23:27.729006+00 2025-07-06 14:23:27.729016+00 f t Simba CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4024 +3372 2025-07-06 14:24:39.579401+00 2025-07-06 14:24:39.579409+00 f t Tarugo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4025 +3373 2025-07-06 14:31:25.754825+00 2025-07-06 14:31:25.754833+00 f t micha DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4028 +3374 2025-07-06 14:32:22.692111+00 2025-07-06 14:32:22.692122+00 f t micha CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4028 +3375 2025-07-06 15:09:56.237422+00 2025-07-06 15:09:56.23743+00 f t Boni DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4033 +3378 2025-07-06 15:55:56.93802+00 2025-07-06 15:55:56.938028+00 f t Mia DOG \N 34.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4037 +3379 2025-07-06 15:57:13.906581+00 2025-07-06 15:57:13.90659+00 f t Gojira DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4038 +3335 2025-07-05 21:41:23.800322+00 2025-07-05 21:41:23.80033+00 f t Gato de Miriam CAT 16 2.00 0.00 t \N 2025-07-05 \N \N MALE \N f \N 114 3980 +3380 2025-07-06 17:33:34.139033+00 2025-07-06 17:33:34.139047+00 f t hipólito CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4040 +3381 2025-07-06 18:32:38.891485+00 2025-07-06 18:32:38.891494+00 f t Simón CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4044 +3383 2025-07-06 19:06:40.861017+00 2025-07-06 19:06:40.861029+00 f t Tapies DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4048 +3384 2025-07-06 19:07:00.748032+00 2025-07-06 19:07:00.748042+00 f t Tapies CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4048 +5979 2025-08-25 21:11:47.512771+00 2025-08-25 21:11:47.512779+00 f t Gato CAT 3 5.00 0.00 t \N \N \N \N MALE \N f \N 1583 7288 +3385 2025-07-06 19:58:29.446365+00 2025-07-06 19:58:29.446376+00 f t thor DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4051 +191 2024-11-05 17:31:20.403+00 2024-11-05 17:31:20.403+00 f t Katrotrsky CAT 3 4.00 0.00 t 2021-12-02 \N \N \N MALE 5/11/24 : . Necesitamos la consulta por el tema de los parásitos\r\nEstá o estuvo tomando alguna medicación en los últimos 7 días? Cuál? - NO\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? - SI \N f 27 114 183 +6051 2025-08-27 15:22:31.853661+00 2025-08-27 15:22:31.853675+00 f t Nala DOG \N 12.60 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7365 +3386 2025-07-06 20:04:44.833854+00 2025-07-06 20:04:44.833862+00 f t Maiky CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4052 +3387 2025-07-06 20:18:45.831407+00 2025-07-06 20:18:45.831419+00 f t Lala CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4053 +3388 2025-07-06 20:22:58.95065+00 2025-07-06 20:22:58.950661+00 f t Cecilio CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4054 +3389 2025-07-06 20:43:50.987663+00 2025-07-06 20:43:50.987673+00 f t Toni DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4055 +3390 2025-07-06 20:44:03.171563+00 2025-07-06 20:44:03.171577+00 f t Umita DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4056 +3391 2025-07-06 20:47:27.621129+00 2025-07-06 20:47:27.621138+00 f t Luna CAT \N 1.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4058 +3392 2025-07-06 20:50:12.629318+00 2025-07-06 20:50:12.629329+00 f t Luna CAT \N 1.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4059 +3393 2025-07-06 21:36:47.881147+00 2025-07-06 21:36:47.881159+00 f t Cirilo DOG \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4060 +3394 2025-07-06 21:55:43.056111+00 2025-07-06 21:55:43.056123+00 f t Nerón DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4061 +3395 2025-07-06 22:07:22.271057+00 2025-07-06 22:07:22.271065+00 f t El gordo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4062 +3396 2025-07-06 22:30:33.443404+00 2025-07-06 22:30:33.443414+00 f t pipon CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4064 +3397 2025-07-06 22:33:23.026221+00 2025-07-06 22:33:23.026232+00 f t Kiara DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4065 +3398 2025-07-06 23:07:03.357017+00 2025-07-06 23:07:03.357026+00 f t Homero DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4066 +3399 2025-07-07 00:55:48.141857+00 2025-07-07 00:55:48.141866+00 f t Tom CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4070 +3401 2025-07-07 02:14:00.525298+00 2025-07-07 02:14:00.525309+00 f t Zerazzi DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4075 +3402 2025-07-07 02:14:43.504467+00 2025-07-07 02:14:43.504476+00 f t Zarazzi CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4076 +3403 2025-07-07 03:01:05.378925+00 2025-07-07 03:01:05.378934+00 f t Kong DOG \N 29.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4077 +3404 2025-07-07 03:09:51.357452+00 2025-07-07 03:09:51.357463+00 f t 22 DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4078 +3405 2025-07-07 04:38:34.576655+00 2025-07-07 04:38:34.576665+00 f t Loki DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4084 +3406 2025-07-07 06:08:25.944983+00 2025-07-07 06:08:25.944992+00 f t Lola DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4085 +3407 2025-07-07 09:40:00.640602+00 2025-07-07 09:40:00.640611+00 f t Luna DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4088 +3408 2025-07-07 09:41:39.34148+00 2025-07-07 09:41:39.341489+00 f t Gema CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4088 +3409 2025-07-07 11:12:14.36328+00 2025-07-07 11:12:14.363293+00 f t Juana CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4089 +3410 2025-07-07 11:13:06.4131+00 2025-07-07 11:13:06.413113+00 f t Juana CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4090 +3411 2025-07-07 12:47:09.879641+00 2025-07-07 12:47:09.87965+00 f t Cande DOG \N 27.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4091 +3412 2025-07-07 13:00:17.131708+00 2025-07-07 13:00:17.131722+00 f t Rocco DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4092 +3413 2025-07-07 13:13:21.376087+00 2025-07-07 13:13:21.376096+00 f t Tota CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4093 +3414 2025-07-07 13:16:29.663805+00 2025-07-07 13:16:29.665111+00 f t LILA DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4095 +3416 2025-07-07 13:49:34.558522+00 2025-07-07 13:49:34.558532+00 f t Corto DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4097 +3418 2025-07-07 14:33:46.531201+00 2025-07-07 14:33:46.531216+00 f t Capo DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4099 +3419 2025-07-07 14:42:19.281165+00 2025-07-07 14:42:19.281173+00 f t Tom CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4100 +5980 2025-08-25 22:06:24.801111+00 2025-08-25 22:06:24.801122+00 f t Sol CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7290 +3421 2025-07-07 15:06:27.944507+00 2025-07-07 15:06:27.944516+00 f t Tom DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4102 +3422 2025-07-07 15:08:19.062092+00 2025-07-07 15:08:19.062102+00 f t Tom DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4103 +3423 2025-07-07 15:21:40.621548+00 2025-07-07 15:21:40.621556+00 f t Chucky CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4106 +3424 2025-07-07 15:30:02.97041+00 2025-07-07 15:30:02.970424+00 f t Hjk CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4108 +3425 2025-07-07 15:38:45.353467+00 2025-07-07 15:38:45.353479+00 f t Saladito DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4109 +3427 2025-07-07 16:39:51.115337+00 2025-07-07 16:39:51.115346+00 f t PUCHI DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4111 +3428 2025-07-07 17:07:19.950013+00 2025-07-07 17:07:19.950027+00 f t Gollespie DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4112 +3429 2025-07-07 17:08:06.544418+00 2025-07-07 17:08:06.544426+00 f t Gillespie DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4112 +6028 2025-08-26 23:58:20.824721+00 2025-08-26 23:58:20.82474+00 f t Lucca DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7340 +6052 2025-08-27 16:10:27.293965+00 2025-08-27 16:10:27.293977+00 f t Toti CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7367 +3433 2025-07-07 18:10:16.563012+00 2025-07-07 18:10:16.563021+00 f t kala DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4117 +3434 2025-07-07 18:13:51.666751+00 2025-07-07 18:13:51.666762+00 f t asd DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4118 +3435 2025-07-07 18:26:48.341731+00 2025-07-07 18:26:48.34174+00 f t Aquiles CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4119 +3436 2025-07-07 18:38:31.244532+00 2025-07-07 18:38:31.244543+00 f t Ciri CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4120 +3437 2025-07-07 18:40:15.492842+00 2025-07-07 18:40:15.492851+00 f t Tom DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4121 +3438 2025-07-07 19:23:12.961575+00 2025-07-07 19:23:12.961584+00 f t Kinley CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4123 +3439 2025-07-07 19:51:50.38775+00 2025-07-07 19:51:50.38776+00 f t d DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4124 +3440 2025-07-07 19:52:29.364294+00 2025-07-07 19:52:29.364302+00 f t 3 DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4125 +3441 2025-07-07 20:02:53.09174+00 2025-07-07 20:02:53.091751+00 f t Milo DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4126 +6064 2025-08-27 19:55:46.744157+00 2025-08-27 19:55:46.744171+00 f t Wes Desiderio DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7382 +3443 2025-07-07 21:39:09.590628+00 2025-07-07 21:39:09.590637+00 f t Homero DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4134 +3444 2025-07-07 21:39:18.625016+00 2025-07-07 21:39:18.625027+00 f t Michi DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4135 +3445 2025-07-07 21:40:04.675557+00 2025-07-07 21:40:04.675573+00 f t Michi CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4135 +3446 2025-07-07 21:50:33.173672+00 2025-07-07 21:50:33.17368+00 f t Bruno DOG \N 22.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4136 +3420 2025-07-07 14:45:57.626996+00 2025-07-07 14:45:57.627005+00 f t Tom CAT 0 4.00 0.00 f \N 2025-07-07 \N \N MALE \N f \N 114 4101 +3447 2025-07-07 22:01:19.375091+00 2025-07-07 22:01:19.375099+00 f t Mecha CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4138 +3451 2025-07-07 22:23:15.650826+00 2025-07-07 22:23:15.650836+00 f t Sabrino DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4141 +3450 2025-07-07 22:21:47.444002+00 2025-07-07 22:21:47.444014+00 f t Rodolfo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4141 +3453 2025-07-07 22:59:47.499365+00 2025-07-07 22:59:47.499377+00 f t Lola DOG \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4143 +3454 2025-07-07 23:01:34.848326+00 2025-07-07 23:01:34.848333+00 f t Lost CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4144 +3456 2025-07-07 23:34:52.379164+00 2025-07-07 23:34:52.379173+00 f t Homero DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4147 +3400 2025-07-07 01:02:22.389506+00 2025-07-07 01:02:22.389517+00 f t Tom CAT \N 4.00 0.00 t \N \N 2025-07-07 \N \N MALE \N \N f \N \N 4071 +3430 2025-07-07 17:16:29.76394+00 2025-07-07 17:16:29.763947+00 f t Paul DOG 5 35.00 0.00 f \N 2025-07-08 \N \N MALE Toma t4f \N f 3 114 4113 +3669 2025-07-12 12:36:20.391903+00 2025-07-12 12:36:20.391916+00 f t Thiago DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4412 +3458 2025-07-08 00:26:24.982915+00 2025-07-08 00:26:24.982925+00 f t Nikita DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4151 +3415 2025-07-07 13:20:02.118605+00 2025-07-07 13:20:02.118622+00 f t LILA DOG \N 14.00 0.00 t \N \N 2025-07-10 \N \N FEMALE \N \N f \N \N 4096 +3442 2025-07-07 20:11:47.831126+00 2025-07-07 20:11:47.831158+00 f t Tomate DOG 0 25.00 0.00 f \N 2025-07-10 \N \N MALE \N f \N 113 4127 +3449 2025-07-07 22:11:19.21381+00 2025-07-07 22:11:19.213817+00 f t Elena DOG 11 13.00 0.00 t \N 2025-07-07 \N \N FEMALE \N f \N 114 4140 +3417 2025-07-07 14:18:01.910647+00 2025-07-07 14:18:01.910662+00 f t Frida DOG \N 40.00 0.00 t \N \N 2025-07-11 \N \N FEMALE \N \N f \N \N 4098 +3452 2025-07-07 22:27:55.639433+00 2025-07-07 22:27:55.639442+00 f t Rodolfo CAT 0 5.00 0.00 f \N 2025-07-09 \N \N MALE \N f \N 113 4142 +3457 2025-07-08 00:15:40.262048+00 2025-07-08 00:15:40.262056+00 f t Paky CAT 15 3.00 0.00 t \N 2025-07-08 \N \N MALE \N f 27 113 4149 +3426 2025-07-07 16:35:25.255189+00 2025-07-07 16:35:25.255198+00 f t ELOY DOG \N 21.00 0.00 f \N \N 2025-07-08 \N \N MALE \N \N f \N \N 4110 +3672 2025-07-12 14:49:36.409643+00 2025-07-12 14:49:36.409655+00 f t Moli CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4415 +3675 2025-07-12 14:52:29.610403+00 2025-07-12 14:52:29.610412+00 f t Rocco CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4416 +3751 2025-07-13 23:18:19.423026+00 2025-07-13 23:18:19.423038+00 f t Koko DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4501 +3753 2025-07-14 00:20:28.47449+00 2025-07-14 00:20:28.474498+00 f t Spike DOG \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4503 +3754 2025-07-14 00:47:52.594628+00 2025-07-14 00:47:52.594637+00 f t Luca DOG \N 29.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4505 +3431 2025-07-07 17:27:11.596766+00 2025-07-07 17:27:11.596773+00 f t Zoe CAT 2 3.00 0.00 t \N 2025-07-07 \N \N FEMALE ¿Está tomando medicación?: No\r\n¿Puede estresarse con desconocidos?: Es algo tímida con personas que no conoce \N f \N 114 4114 +3459 2025-07-08 01:25:43.444965+00 2025-07-08 01:25:43.444977+00 f t Asgard DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4153 +3460 2025-07-08 01:27:20.471433+00 2025-07-08 01:27:20.471443+00 f t Rubí DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4153 +3461 2025-07-08 01:27:38.233352+00 2025-07-08 01:27:38.233363+00 f t Pepe DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4154 +3462 2025-07-08 01:29:27.78399+00 2025-07-08 01:29:27.784002+00 f t Cay CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4153 +3463 2025-07-08 01:30:21.679678+00 2025-07-08 01:30:21.67969+00 f t Golum DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4153 +3464 2025-07-08 01:31:10.79936+00 2025-07-08 01:31:10.79937+00 f t Pepe DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4155 +3465 2025-07-08 01:33:29.530141+00 2025-07-08 01:33:29.530149+00 f t Perra DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4156 +3466 2025-07-08 01:55:20.132893+00 2025-07-08 01:55:20.132906+00 f t Marley DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4157 +3467 2025-07-08 01:58:34.77899+00 2025-07-08 01:58:34.778999+00 f t Tatiana DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4158 +3468 2025-07-08 02:04:50.197083+00 2025-07-08 02:04:50.197092+00 f t Blanqui CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4159 +3469 2025-07-08 02:24:45.391317+00 2025-07-08 02:24:45.391326+00 f t Kyra CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4160 +5981 2025-08-25 22:06:46.010336+00 2025-08-25 22:06:46.010348+00 f t Sol CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7290 +3471 2025-07-08 10:47:57.823534+00 2025-07-08 10:47:57.823543+00 f t G CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4164 +3472 2025-07-08 11:00:33.468669+00 2025-07-08 11:00:33.468677+00 f t Lost CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4165 +3473 2025-07-08 11:04:15.129807+00 2025-07-08 11:04:15.129818+00 f t Mochi DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4166 +3474 2025-07-08 12:37:46.07955+00 2025-07-08 12:37:46.079559+00 f t Reina DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4169 +3476 2025-07-08 13:29:17.511981+00 2025-07-08 13:29:17.511993+00 f t Tito CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4172 +3477 2025-07-08 13:31:22.757094+00 2025-07-08 13:31:22.757103+00 f t Tittino CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4172 +3478 2025-07-08 13:35:33.025008+00 2025-07-08 13:35:33.025016+00 f t Fiona CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4174 +3481 2025-07-08 14:05:52.297752+00 2025-07-08 14:05:52.297761+00 f t Miel DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4177 +3483 2025-07-08 14:07:52.746511+00 2025-07-08 14:07:52.746521+00 f t Manchita DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4179 +3485 2025-07-08 14:57:30.405822+00 2025-07-08 14:57:30.405832+00 f t Billita DOG \N 3.90 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4180 +3486 2025-07-08 15:08:22.464957+00 2025-07-08 15:08:22.46497+00 f t CATY DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4181 +6053 2025-08-27 16:23:24.800691+00 2025-08-27 16:23:24.800703+00 f t BROWNIE DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7369 +3522 2025-07-08 23:51:42.059293+00 2025-07-08 23:51:42.059301+00 f t C DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4220 +3480 2025-07-08 13:46:58.889301+00 2025-07-08 13:46:58.889309+00 f t Tittino CAT \N 6.00 0.00 t \N 2012-11-26 \N \N \N MALE \N \N f \N \N 4176 +3523 2025-07-09 00:05:59.842207+00 2025-07-09 00:05:59.842219+00 f t Chucky CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4222 +3488 2025-07-08 15:22:35.257264+00 2025-07-08 15:22:35.257272+00 f t Tito DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4184 +3489 2025-07-08 15:34:14.271867+00 2025-07-08 15:34:14.271876+00 f t Waffle DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4185 +3490 2025-07-08 15:35:50.203942+00 2025-07-08 15:35:50.203951+00 f t Fiona CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4186 +3491 2025-07-08 15:40:18.510015+00 2025-07-08 15:40:18.510024+00 f t Waffle DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4187 +3492 2025-07-08 16:03:26.035356+00 2025-07-08 16:03:26.035368+00 f t Eros DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4188 +3493 2025-07-08 16:03:39.845438+00 2025-07-08 16:03:39.84545+00 f t Eros CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4188 +3494 2025-07-08 16:28:10.511274+00 2025-07-08 16:28:10.511285+00 f t Bruce CAT \N 6.90 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4189 +3495 2025-07-08 17:09:30.631473+00 2025-07-08 17:09:30.631488+00 f t Bono DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4190 +3496 2025-07-08 17:51:12.304682+00 2025-07-08 17:51:12.304691+00 f t ikki DOG \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4191 +3506 2025-07-08 20:49:13.872405+00 2025-07-08 20:49:13.872413+00 f t Mecha CAT \N 0.00 0.00 f \N \N 2025-08-02 \N \N FEMALE \N \N f \N \N 4202 +3497 2025-07-08 18:03:33.319384+00 2025-07-08 18:03:33.319394+00 f t Duko DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4194 +3498 2025-07-08 18:42:30.01771+00 2025-07-08 18:42:30.017724+00 f t Simón DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4195 +3499 2025-07-08 19:07:04.008986+00 2025-07-08 19:07:04.008999+00 f t Vainilla DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4196 +3500 2025-07-08 20:19:04.356864+00 2025-07-08 20:19:04.356876+00 f t Calabaza DOG \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4197 +3501 2025-07-08 20:23:16.518406+00 2025-07-08 20:23:16.518416+00 f t lauraploit DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4199 +3502 2025-07-08 20:23:20.35305+00 2025-07-08 20:23:20.353059+00 f t Ciro DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4198 +3524 2025-07-09 00:37:25.517269+00 2025-07-09 00:37:25.517277+00 f t rocco DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4223 +3503 2025-07-08 20:37:10.527352+00 2025-07-08 20:37:10.527361+00 f t lauraploit DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4200 +3504 2025-07-08 20:38:05.598008+00 2025-07-08 20:38:05.598016+00 f t kala DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4200 +3505 2025-07-08 20:43:43.042037+00 2025-07-08 20:43:43.042046+00 f t Lost CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4201 +3507 2025-07-08 21:37:04.166771+00 2025-07-08 21:37:04.166782+00 f t Rony CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4203 +3508 2025-07-08 21:37:08.909844+00 2025-07-08 21:37:08.909851+00 f t Tatita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4204 +3509 2025-07-08 21:38:27.398713+00 2025-07-08 21:38:27.398721+00 f t David CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4203 +3510 2025-07-08 21:55:19.785978+00 2025-07-08 21:55:19.785987+00 f t Tom CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4205 +3525 2025-07-09 02:12:09.701678+00 2025-07-09 02:12:09.701686+00 f t Negrito CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4224 +3479 2025-07-08 13:45:34.649102+00 2025-07-08 13:45:34.64911+00 f t Tito CAT \N 7.00 0.00 t \N 2012-11-26 2025-07-08 \N \N MALE \N \N f \N \N 4176 +3511 2025-07-08 22:12:16.264474+00 2025-07-08 22:12:16.264482+00 f t Jana DOG \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4206 +3512 2025-07-08 22:22:11.010118+00 2025-07-08 22:22:11.010127+00 f t Ash CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4208 +3513 2025-07-08 22:24:35.034626+00 2025-07-08 22:24:35.034635+00 f t rocco DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4209 +3514 2025-07-08 22:26:44.798423+00 2025-07-08 22:26:44.798431+00 f t Ara DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4211 +3515 2025-07-08 22:29:07.893495+00 2025-07-08 22:29:07.893502+00 f t Pepina DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4212 +3516 2025-07-08 22:29:22.068525+00 2025-07-08 22:29:22.068536+00 f t Paco DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4213 +3518 2025-07-08 23:07:29.738317+00 2025-07-08 23:07:29.738326+00 f t Mila CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4215 +3475 2025-07-08 13:12:58.59337+00 2025-07-08 13:12:58.593378+00 f t Benito CAT 4 0.00 0.00 f \N 2025-07-08 \N \N MALE \N f \N 1026 4171 +3519 2025-07-08 23:16:35.99431+00 2025-07-08 23:16:35.994319+00 f t Lost CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4216 +3520 2025-07-08 23:26:26.054897+00 2025-07-08 23:26:26.054906+00 f t Cloe CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4217 +3521 2025-07-08 23:28:20.538949+00 2025-07-08 23:28:20.538956+00 f t Tilo DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4219 +3526 2025-07-09 03:29:16.791844+00 2025-07-09 03:29:16.791855+00 f t Bruce CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4225 +3527 2025-07-09 04:28:35.87028+00 2025-07-09 04:28:35.870294+00 f t Gulliver DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4226 +3528 2025-07-09 05:27:44.217911+00 2025-07-09 05:27:44.217923+00 f t Pascal CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4227 +3529 2025-07-09 06:00:50.483649+00 2025-07-09 06:00:50.483657+00 f t Tobias CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4228 +3530 2025-07-09 11:05:27.943656+00 2025-07-09 11:05:27.943667+00 f t Quenai DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4229 +3531 2025-07-09 11:57:40.127191+00 2025-07-09 11:57:40.1272+00 f t Dulce CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4230 +3532 2025-07-09 12:14:03.973399+00 2025-07-09 12:14:03.973409+00 f t Dulce CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4231 +3533 2025-07-09 13:31:23.219087+00 2025-07-09 13:31:23.219096+00 f t Eluney CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4235 +3670 2025-07-12 13:58:34.014002+00 2025-07-12 13:58:34.014013+00 f t Toto DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4413 +3482 2025-07-08 14:06:58.320798+00 2025-07-08 14:06:58.32081+00 f t Fiona CAT \N 3.00 0.00 t \N \N 2025-07-11 \N \N FEMALE \N \N f \N \N 4178 +3517 2025-07-08 22:42:19.232396+00 2025-07-08 22:42:19.232406+00 f t rocco DOG \N 45.00 0.00 t \N \N 2025-07-09 \N \N MALE \N \N f \N \N 4214 +3673 2025-07-12 14:50:54.310931+00 2025-07-12 14:50:54.31094+00 f t July DOG \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4416 +3752 2025-07-13 23:20:44.481121+00 2025-07-13 23:20:44.48113+00 f t Koko DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4502 +3484 2025-07-08 14:38:29.920413+00 2025-07-08 14:38:29.92042+00 f t Luna DOG \N 0.00 0.00 f \N 2025-07-19 \N \N \N \N f \N 1026 3052 +3432 2025-07-07 17:32:49.038518+00 2025-07-07 17:32:49.038527+00 f t Chucky CAT 4 6.50 0.00 t \N 2025-07-08 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? ninguna medicación\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? si, todas juntas. Se pone muy agresivo en esas situaciones ya sea conmigo o con extraños \N f 27 114 4115 +3534 2025-07-09 15:53:30.313454+00 2025-07-09 15:53:30.313463+00 f t Paloma CAT \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4238 +3535 2025-07-09 15:58:40.888927+00 2025-07-09 15:58:40.888937+00 f t Paloma CAT \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4239 +3286 2025-07-04 17:37:24.738501+00 2025-07-04 17:37:24.738508+00 f t Perro de Patricia DOG 5 28.00 0.00 f \N 2025-07-06 \N \N FEMALE Es hiperactivo \N f \N 1026 3911 +3536 2025-07-09 16:24:05.597224+00 2025-07-09 16:24:05.597232+00 f t Chiquitin CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4240 +3538 2025-07-09 17:48:48.995715+00 2025-07-09 17:48:48.995723+00 f t Madara CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4243 +3539 2025-07-09 17:59:29.832685+00 2025-07-09 17:59:29.832693+00 f t Uma DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4244 +3540 2025-07-09 19:04:16.707595+00 2025-07-09 19:04:16.707603+00 f t Jay DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4246 +3541 2025-07-09 19:05:35.948765+00 2025-07-09 19:05:35.948773+00 f t Meri DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4247 +3542 2025-07-09 19:07:20.710636+00 2025-07-09 19:07:20.710644+00 f t Meri DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4247 +3543 2025-07-09 19:11:35.603657+00 2025-07-09 19:11:35.603665+00 f t Zoe DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4248 +3544 2025-07-09 19:17:13.725095+00 2025-07-09 19:17:13.725102+00 f t Chicho DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4249 +3545 2025-07-09 20:00:39.59186+00 2025-07-09 20:00:39.591869+00 f t Indio DOG \N 24.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4251 +3546 2025-07-09 20:51:51.564427+00 2025-07-09 20:51:51.564435+00 f t Sami CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4252 +3547 2025-07-09 20:54:29.620779+00 2025-07-09 20:54:29.620787+00 f t Merlin CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4252 +3548 2025-07-09 21:27:02.308002+00 2025-07-09 21:27:02.308015+00 f t Catalina DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4253 +5982 2025-08-25 22:08:21.383021+00 2025-08-25 22:08:21.383034+00 f t Sol CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7291 +3584 2025-07-10 13:39:19.454764+00 2025-07-10 13:39:19.454772+00 f t aslan DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4296 +6029 2025-08-26 23:59:38.16677+00 2025-08-26 23:59:38.16678+00 f t Mao CAT \N 0.00 0.00 t \N \N \N \N MALE \N f 27 114 7341 +3586 2025-07-10 14:15:40.355993+00 2025-07-10 14:15:40.356003+00 f t Thor CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4298 +6054 2025-08-27 17:07:34.360772+00 2025-08-27 17:07:34.360787+00 f t El CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7370 +3588 2025-07-10 15:13:04.791117+00 2025-07-10 15:13:04.791128+00 f t misha CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4303 +3553 2025-07-09 21:56:43.453105+00 2025-07-09 21:56:43.453112+00 f t Cora CAT 2 0.00 0.00 t \N 2025-07-11 \N \N FEMALE Se pone a la defensiva \N f 27 114 4258 +3603 2025-07-10 21:07:54.173309+00 2025-07-10 21:07:54.173331+00 f t Toto DOG 3 40.00 0.00 t \N 2025-08-03 \N \N \N \N f \N 113 4325 +3554 2025-07-09 22:12:58.43931+00 2025-07-09 22:12:58.439321+00 f t Osa DOG \N 36.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4259 +3555 2025-07-09 22:18:39.614126+00 2025-07-09 22:18:39.614138+00 f t Mingo DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4260 +3556 2025-07-09 22:26:18.52486+00 2025-07-09 22:26:18.524868+00 f t Luna DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4261 +3557 2025-07-09 22:31:25.903299+00 2025-07-09 22:31:25.903308+00 f t Luna DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4262 +3537 2025-07-09 16:57:03.146574+00 2025-07-09 16:57:03.146587+00 f t Optimus CAT \N 7.00 0.00 f \N \N 2025-07-09 \N \N MALE \N \N f \N \N 4241 +3559 2025-07-09 23:02:59.830701+00 2025-07-09 23:02:59.83071+00 f t Mustafa CAT \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4264 +3877 2025-07-16 13:58:30.514114+00 2025-07-16 13:58:30.514125+00 f t Milo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4669 +3561 2025-07-09 23:45:14.78603+00 2025-07-09 23:45:14.786043+00 f t Milo DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4266 +3562 2025-07-10 01:53:10.107445+00 2025-07-10 01:53:10.107459+00 f t Joe DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4270 +3563 2025-07-10 01:59:43.182803+00 2025-07-10 01:59:43.182815+00 f t Julia DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4271 +3564 2025-07-10 02:09:54.958644+00 2025-07-10 02:09:54.958656+00 f t Joe DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4272 +3565 2025-07-10 02:13:57.382822+00 2025-07-10 02:13:57.382831+00 f t Joe DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4273 +3566 2025-07-10 02:16:01.506839+00 2025-07-10 02:16:01.506849+00 f t Chope DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4274 +3567 2025-07-10 03:17:46.967738+00 2025-07-10 03:17:46.967747+00 f t Grecia DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4276 +3552 2025-07-09 21:52:30.588474+00 2025-07-09 21:52:30.588482+00 f t Chiquitín CAT 7 0.00 0.00 t \N 2025-07-09 \N \N MALE \N f \N 114 4257 +3568 2025-07-10 04:25:08.584542+00 2025-07-10 04:25:08.584555+00 f t Orfeo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4277 +3569 2025-07-10 09:04:48.870197+00 2025-07-10 09:04:48.870206+00 f t Lolt DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4278 +3570 2025-07-10 10:14:23.171467+00 2025-07-10 10:14:23.171479+00 f t Masha DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4279 +3571 2025-07-10 10:21:10.992894+00 2025-07-10 10:21:10.992903+00 f t Negrita DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4281 +3572 2025-07-10 10:58:05.452028+00 2025-07-10 10:58:05.452037+00 f t Chickie DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4284 +3573 2025-07-10 12:00:34.278847+00 2025-07-10 12:00:34.278859+00 f t Shiva CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4285 +3574 2025-07-10 12:06:47.876868+00 2025-07-10 12:06:47.876877+00 f t Pipona CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4286 +3575 2025-07-10 12:37:06.827535+00 2025-07-10 12:37:06.827544+00 f t Uva DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4287 +3598 2025-07-10 18:37:23.804019+00 2025-07-10 18:37:23.804027+00 f t Pesci CAT 6 4.00 0.00 t \N 2025-07-11 \N \N MALE \N f 27 1208 1275 +3576 2025-07-10 12:40:13.116332+00 2025-07-10 12:40:13.116346+00 f t Tobi DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4288 +3577 2025-07-10 13:01:28.527278+00 2025-07-10 13:01:28.527287+00 f t Antonia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4289 +3578 2025-07-10 13:02:53.849554+00 2025-07-10 13:02:53.849564+00 f t Antonia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4290 +3579 2025-07-10 13:12:24.944067+00 2025-07-10 13:12:24.944076+00 f t Benjie DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4291 +3580 2025-07-10 13:20:28.484903+00 2025-07-10 13:20:28.484911+00 f t Tobi DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4292 +3581 2025-07-10 13:26:56.841455+00 2025-07-10 13:26:56.841463+00 f t Benjamin DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4293 +3582 2025-07-10 13:29:44.669064+00 2025-07-10 13:29:44.669071+00 f t Luna CAT \N 4.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4294 +3590 2025-07-10 15:39:18.7725+00 2025-07-10 15:39:18.772509+00 f t pepe DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4309 +3596 2025-07-10 18:08:16.952438+00 2025-07-10 18:08:16.952449+00 f t Frizz CAT \N 7.00 0.00 f \N \N 2025-07-14 \N \N FEMALE \N \N f \N \N 4317 +3591 2025-07-10 16:14:27.480569+00 2025-07-10 16:14:27.480578+00 f t Manchas DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4310 +3592 2025-07-10 17:03:01.564194+00 2025-07-10 17:03:01.564203+00 f t apolo DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4313 +3593 2025-07-10 17:11:04.446226+00 2025-07-10 17:11:04.446236+00 f t Indra DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4314 +3594 2025-07-10 17:54:12.726197+00 2025-07-10 17:54:12.726206+00 f t Milo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4315 +3899 2025-07-16 21:30:36.800366+00 2025-07-16 21:30:36.800379+00 f t Max DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4697 +3595 2025-07-10 18:06:16.380795+00 2025-07-10 18:06:16.380807+00 f t Manchas DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4316 +3597 2025-07-10 18:24:43.464253+00 2025-07-10 18:24:43.464262+00 f t Raquel DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4318 +3599 2025-07-10 18:58:58.174896+00 2025-07-10 18:58:58.174908+00 f t GASPER DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4319 +3602 2025-07-10 20:55:09.398939+00 2025-07-10 20:55:09.398949+00 f t Coco DOG 4 30.00 0.00 f \N 2025-07-12 \N \N MALE \N f \N 1026 4324 +3551 2025-07-09 21:47:30.061297+00 2025-07-09 21:47:30.06131+00 f t mayco CAT \N 3.00 0.00 f \N \N 2025-07-09 \N \N MALE \N \N f \N \N 4256 +3600 2025-07-10 20:09:39.000041+00 2025-07-10 20:09:39.000051+00 f t Mate DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4321 +3558 2025-07-09 22:58:19.736351+00 2025-07-09 22:58:19.73636+00 f t Amalia DOG \N 3.00 0.00 f \N \N 2025-07-11 \N \N FEMALE \N \N f \N \N 4263 +3912 2025-07-17 10:49:25.709799+00 2025-07-17 10:49:25.709808+00 f t Budy DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4722 +3585 2025-07-10 14:11:50.343719+00 2025-07-10 14:11:50.343728+00 f t Lila DOG 13 18.00 0.00 f \N 2025-07-10 \N \N FEMALE \N f \N 1026 4297 +3589 2025-07-10 15:19:06.479491+00 2025-07-10 15:19:06.4795+00 f t Enza CAT \N 3.00 0.00 f \N \N 2025-07-11 \N \N FEMALE \N \N f \N \N 4305 +3674 2025-07-12 14:51:28.618529+00 2025-07-12 14:51:28.618542+00 f t July CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4416 +3583 2025-07-10 13:31:20.981149+00 2025-07-10 13:31:20.981156+00 f t Romeo DOG 13 0.00 0.00 f \N 2025-07-10 \N \N MALE \N f 3 1026 4295 +3601 2025-07-10 20:17:19.791067+00 2025-07-10 20:17:19.791077+00 f t Mora DOG \N 22.00 0.00 f \N \N 2025-07-10 \N \N FEMALE \N \N f \N \N 4322 +778 2025-04-12 18:55:30.579249+00 2025-04-12 18:55:30.579257+00 f t milo DOG 7 30.00 0.00 t \N 2025-05-22 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? NO\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? si, cuando tocan timbre le da mucha ansiedad o estress( si es posible que me mande mensaje en la puerta 😁 ) pero no se va a poner a la defensiva \N f 1 114 659 +5983 2025-08-25 23:55:52.966515+00 2025-08-25 23:55:52.966524+00 f t Berta DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7292 +1900 2025-06-03 00:40:19.412153+00 2025-06-03 00:40:19.412163+00 f t Felipe DOG \N 2.70 0.00 f \N 2025-06-02 \N \N MALE No está tomando nada\r\nNo , es muy amigable con todos \N f 10 114 2058 +3840 2025-07-15 17:09:37.924362+00 2025-07-15 17:09:37.924374+00 f t Tomas coco ramon y catalina sanchit DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4622 +3604 2025-07-10 21:16:46.986683+00 2025-07-10 21:16:46.986694+00 f t Turna CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4327 +3605 2025-07-10 21:35:45.95872+00 2025-07-10 21:35:45.958728+00 f t Nana DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4329 +3606 2025-07-10 21:52:03.986717+00 2025-07-10 21:52:03.986727+00 f t Frida DOG \N 45.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4330 +3607 2025-07-10 22:03:46.524459+00 2025-07-10 22:03:46.524469+00 f t Madara CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4331 +3610 2025-07-10 23:42:17.532496+00 2025-07-10 23:42:17.532508+00 f t DIANA- CHULI CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4336 +3612 2025-07-11 01:05:38.233716+00 2025-07-11 01:05:38.233729+00 f t Fiona CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4338 +3613 2025-07-11 01:30:42.275565+00 2025-07-11 01:30:42.275573+00 f t Sparky DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4340 +3614 2025-07-11 01:43:57.365808+00 2025-07-11 01:43:57.365817+00 f t Lando CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4341 +3615 2025-07-11 02:10:08.718594+00 2025-07-11 02:10:08.718604+00 f t Canela CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4342 +3616 2025-07-11 02:53:45.794969+00 2025-07-11 02:53:45.794978+00 f t Zoe DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4343 +3617 2025-07-11 03:05:52.012345+00 2025-07-11 03:05:52.012356+00 f t India CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4344 +3618 2025-07-11 04:09:03.308561+00 2025-07-11 04:09:03.308571+00 f t Lucy DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4345 +3619 2025-07-11 04:17:16.49826+00 2025-07-11 04:17:16.498271+00 f t Lorenzo DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4346 +3620 2025-07-11 04:31:18.159289+00 2025-07-11 04:31:18.159298+00 f t lola DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4347 +3621 2025-07-11 07:47:07.459532+00 2025-07-11 07:47:07.459545+00 f t Miqui DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4348 +3622 2025-07-11 07:48:32.445879+00 2025-07-11 07:48:32.445892+00 f t Miqui DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4349 +3623 2025-07-11 07:53:23.309001+00 2025-07-11 07:53:23.309014+00 f t Miqui DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4350 +3624 2025-07-11 09:42:24.548387+00 2025-07-11 09:42:24.548397+00 f t Manchas DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4351 +3625 2025-07-11 10:39:33.471366+00 2025-07-11 10:39:33.471375+00 f t Martina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4352 +3626 2025-07-11 11:31:15.089434+00 2025-07-11 11:31:15.089442+00 f t Atun CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4354 +3627 2025-07-11 11:32:01.459762+00 2025-07-11 11:32:01.459776+00 f t Misu CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4355 +3628 2025-07-11 11:32:36.811274+00 2025-07-11 11:32:36.811283+00 f t Pancho CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4354 +3629 2025-07-11 12:15:18.504695+00 2025-07-11 12:15:18.504705+00 f t Kira DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4358 +3632 2025-07-11 14:14:54.162907+00 2025-07-11 14:14:54.162914+00 f t Dorian CAT 11 5.00 0.00 f \N 2025-07-15 \N \N MALE \N f \N 1026 345 +3630 2025-07-11 13:43:47.048808+00 2025-07-11 13:43:47.048818+00 f t Coqui CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4360 +3631 2025-07-11 14:10:17.211852+00 2025-07-11 14:10:17.211865+00 f t Chester Cheddar Mclovin CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4361 +3633 2025-07-11 14:40:08.495716+00 2025-07-11 14:40:08.495737+00 f t Jumanji CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4363 +3634 2025-07-11 14:40:27.522477+00 2025-07-11 14:40:27.522486+00 f t Jumanji DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4364 +3635 2025-07-11 14:40:50.884565+00 2025-07-11 14:40:50.884574+00 f t Jumanji CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4365 +3636 2025-07-11 15:56:26.923208+00 2025-07-11 15:56:26.923217+00 f t Viggo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4367 +3637 2025-07-11 16:10:54.154821+00 2025-07-11 16:10:54.15483+00 f t macchiata DOG \N 2.70 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4368 +3638 2025-07-11 16:19:55.480041+00 2025-07-11 16:19:55.480049+00 f t Copito CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4369 +3639 2025-07-11 17:33:52.140586+00 2025-07-11 17:33:52.140595+00 f t Nino DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4370 +3654 2025-07-12 00:11:03.803842+00 2025-07-12 00:11:03.80385+00 f t Aslan DOG 12 0.00 0.00 f \N 2025-07-13 \N \N MALE \N f 8 113 4390 +3640 2025-07-11 18:13:14.580783+00 2025-07-11 18:13:14.580791+00 f t Dalila CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4372 +3641 2025-07-11 18:16:45.316694+00 2025-07-11 18:16:45.316702+00 f t Sasha DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4373 +320 2024-12-20 15:31:52.708+00 2024-12-20 15:31:52.708+00 f t Hercules CAT 14 5.00 0.00 t 2010-12-02 2025-07-09 \N \N MALE Hercules\r\nRaza gato naranja\r\nEdad 14\r\nPeso 5 kg\r\nCastrado si \N f 27 110 272 +3642 2025-07-11 20:47:44.54698+00 2025-07-11 20:47:44.546989+00 f t Negrita DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4379 +3645 2025-07-11 22:15:27.907619+00 2025-07-11 22:15:27.907628+00 f t Lola DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4382 +3646 2025-07-11 22:16:15.70502+00 2025-07-11 22:16:15.705031+00 f t Roma DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4382 +3647 2025-07-11 22:38:30.59844+00 2025-07-11 22:38:30.59845+00 f t Milo DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4383 +3649 2025-07-11 22:50:11.75477+00 2025-07-11 22:50:11.75478+00 f t Lol DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4385 +3650 2025-07-11 23:03:36.981004+00 2025-07-11 23:03:36.981016+00 f t Bella DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4386 +3651 2025-07-11 23:41:48.493765+00 2025-07-11 23:41:48.493778+00 f t Sol DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4387 +3652 2025-07-11 23:43:32.634169+00 2025-07-11 23:43:32.634181+00 f t Indra DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4388 +3643 2025-07-11 20:57:04.096531+00 2025-07-11 20:57:04.09654+00 f t Alina DOG 15 20.00 0.00 t \N 2025-07-11 \N \N FEMALE \N f 52 1026 4380 +3655 2025-07-12 00:50:10.443383+00 2025-07-12 00:50:10.443397+00 f t Bako DOG \N 8.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4392 +3656 2025-07-12 01:00:17.517408+00 2025-07-12 01:00:17.517418+00 f t Aurora CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4393 +3657 2025-07-12 03:03:32.234916+00 2025-07-12 03:03:32.234925+00 f t Rio CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4395 +3658 2025-07-12 07:23:03.187932+00 2025-07-12 07:23:03.187948+00 f t Ágatha CAT \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4399 +3659 2025-07-12 07:27:11.011387+00 2025-07-12 07:27:11.011397+00 f t Ágata CAT \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4400 +3660 2025-07-12 07:29:17.384092+00 2025-07-12 07:29:17.384101+00 f t A CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4401 +3661 2025-07-12 09:07:44.945323+00 2025-07-12 09:07:44.945336+00 f t Homero CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4403 +3662 2025-07-12 09:12:59.333817+00 2025-07-12 09:12:59.33383+00 f t Homero CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4404 +3663 2025-07-12 10:29:53.045114+00 2025-07-12 10:29:53.045123+00 f t Apollo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4405 +3664 2025-07-12 10:30:38.532272+00 2025-07-12 10:30:38.532284+00 f t Apollo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4406 +3665 2025-07-12 10:58:33.330866+00 2025-07-12 10:58:33.330879+00 f t Molly CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4407 +3666 2025-07-12 11:37:57.795204+00 2025-07-12 11:37:57.795217+00 f t Traslado DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4409 +3667 2025-07-12 12:06:29.787484+00 2025-07-12 12:06:29.787492+00 f t Simon DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4410 +3668 2025-07-12 12:07:27.515423+00 2025-07-12 12:07:27.515431+00 f t Norma DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4411 +3671 2025-07-12 14:49:08.025903+00 2025-07-12 14:49:08.025915+00 f t Rocco CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4414 +3676 2025-07-12 16:30:52.473626+00 2025-07-12 16:30:52.473635+00 f t Homero CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4417 +3648 2025-07-11 22:49:23.722197+00 2025-07-11 22:49:23.722206+00 f t Greta CAT 0 2.00 0.00 f \N 2025-07-15 \N \N FEMALE \N f \N 113 4384 +3611 2025-07-11 00:05:32.731987+00 2025-07-11 00:05:32.731997+00 f t Milagros CAT 18 0.00 0.00 t \N 2025-07-14 \N \N FEMALE \N f 27 1208 4337 +3858 2025-07-16 01:19:19.695619+00 2025-07-16 01:19:19.695628+00 f t Timothee CAT \N 6.00 0.00 f \N \N 2025-07-16 \N \N MALE \N \N f \N \N 4644 +3913 2025-07-17 11:36:20.839453+00 2025-07-17 11:36:20.839463+00 f t Lola DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4723 +3644 2025-07-11 22:08:03.394017+00 2025-07-11 22:08:03.394029+00 f t Roma DOG \N 10.00 0.00 f \N \N 2025-08-06 \N \N FEMALE \N \N f \N \N 301 +3608 2025-07-10 22:23:49.981013+00 2025-07-10 22:23:49.98102+00 f t Sedric Lumos CAT 2 5.00 0.00 t \N 2025-07-18 \N \N MALE \N f 36 1208 4332 +3878 2025-07-16 14:26:34.95+00 2025-07-16 14:26:34.950008+00 f t Milo CAT 4 4.00 0.00 t \N 2025-07-17 \N \N MALE \N f \N 1026 4670 +3735 2025-07-13 19:25:05.346279+00 2025-07-13 19:25:05.346289+00 f t Ciro CAT 2 5.00 0.00 t 2022-09-18 2025-07-28 \N \N MALE \N f \N 114 4485 +3679 2025-07-12 17:43:17.516154+00 2025-07-12 17:43:17.516162+00 f t Céu DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4420 +3680 2025-07-12 17:43:33.600593+00 2025-07-12 17:43:33.600606+00 f t Céu CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4420 +3681 2025-07-12 17:45:55.675979+00 2025-07-12 17:45:55.67599+00 f t Alma DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4421 +3682 2025-07-12 17:52:42.886466+00 2025-07-12 17:52:42.886476+00 f t Magnus CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4422 +3683 2025-07-12 18:48:16.271199+00 2025-07-12 18:48:16.271208+00 f t Princesa DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4426 +3684 2025-07-12 19:09:06.250222+00 2025-07-12 19:09:06.250235+00 f t Priya DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4428 +3685 2025-07-12 19:29:45.954789+00 2025-07-12 19:29:45.954801+00 f t Rey CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4429 +3686 2025-07-12 20:25:03.361706+00 2025-07-12 20:25:03.36172+00 f t Kiki CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4432 +5984 2025-08-26 00:10:58.116616+00 2025-08-26 00:10:58.116628+00 f t Pappo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7294 +3691 2025-07-12 21:22:13.054858+00 2025-07-12 21:22:13.054866+00 f t Moli CAT \N 3.40 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4439 +3692 2025-07-12 23:57:06.493343+00 2025-07-12 23:57:06.493352+00 f t pipi DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4442 +3693 2025-07-13 00:00:23.443642+00 2025-07-13 00:00:23.443656+00 f t Pomelo DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4443 +3694 2025-07-13 00:00:45.676826+00 2025-07-13 00:00:45.676838+00 f t Pomelo CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4443 +3695 2025-07-13 00:13:50.301208+00 2025-07-13 00:13:50.301217+00 f t Mabrouk CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4444 +3696 2025-07-13 00:13:56.609684+00 2025-07-13 00:13:56.609696+00 f t Murga CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4445 +3697 2025-07-13 00:16:36.718765+00 2025-07-13 00:16:36.718777+00 f t Vicky DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4446 +3698 2025-07-13 00:22:23.408647+00 2025-07-13 00:22:23.408655+00 f t Vicky DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4447 +3699 2025-07-13 00:24:49.933447+00 2025-07-13 00:24:49.933458+00 f t Mabrouk CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4448 +3700 2025-07-13 00:36:03.422848+00 2025-07-13 00:36:03.42286+00 f t Big DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4450 +3701 2025-07-13 02:02:49.164436+00 2025-07-13 02:02:49.164445+00 f t Campi CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4453 +3702 2025-07-13 02:04:58.95955+00 2025-07-13 02:04:58.95956+00 f t Oscar DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4454 +3703 2025-07-13 02:05:29.686708+00 2025-07-13 02:05:29.686717+00 f t Rocco DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4455 +3704 2025-07-13 02:06:46.495737+00 2025-07-13 02:06:46.495747+00 f t Leo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4455 +3705 2025-07-13 02:07:07.576644+00 2025-07-13 02:07:07.576657+00 f t Uma CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4455 +3706 2025-07-13 02:21:26.887319+00 2025-07-13 02:21:26.887327+00 f t Scott DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4456 +3707 2025-07-13 06:32:52.342872+00 2025-07-13 06:32:52.342882+00 f t Chicho DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4459 +3708 2025-07-13 09:24:30.533508+00 2025-07-13 09:24:30.533517+00 f t Mila CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4460 +3710 2025-07-13 11:37:48.185432+00 2025-07-13 11:37:48.185441+00 f t Felipe DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4462 +3711 2025-07-13 11:39:31.904191+00 2025-07-13 11:39:31.904199+00 f t Simona DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4462 +3712 2025-07-13 12:08:41.055187+00 2025-07-13 12:08:41.0552+00 f t Velimir CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4463 +3713 2025-07-13 12:15:10.703885+00 2025-07-13 12:15:10.703895+00 f t Dakota DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4464 +3714 2025-07-13 12:48:01.261159+00 2025-07-13 12:48:01.261169+00 f t Ciro CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4465 +3715 2025-07-13 12:56:34.083407+00 2025-07-13 12:56:34.08342+00 f t Scott DOG \N 19.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4466 +3716 2025-07-13 13:27:15.712819+00 2025-07-13 13:27:15.712828+00 f t Vlad DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4467 +3717 2025-07-13 13:32:26.097924+00 2025-07-13 13:32:26.097935+00 f t Vlad DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4468 +3718 2025-07-13 13:48:49.247353+00 2025-07-13 13:48:49.247363+00 f t Okivia CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4469 +3719 2025-07-13 13:49:11.296682+00 2025-07-13 13:49:11.296691+00 f t Olivia DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4469 +3720 2025-07-13 13:50:15.145534+00 2025-07-13 13:50:15.145542+00 f t Olivia DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4469 +3721 2025-07-13 13:51:58.535684+00 2025-07-13 13:51:58.535693+00 f t Olivia CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4470 +3677 2025-07-12 16:54:34.460142+00 2025-07-12 16:54:34.460149+00 f t Simon DOG 6 18.00 25.00 t 2019-02-24 2025-07-14 \N \N MALE \N f 13 1208 4418 +3723 2025-07-13 14:39:34.688369+00 2025-07-13 14:39:34.688383+00 f t Tuky DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4472 +3724 2025-07-13 14:47:05.55655+00 2025-07-13 14:47:05.556561+00 f t Ciro DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4473 +3725 2025-07-13 14:55:33.481283+00 2025-07-13 14:55:33.481294+00 f t sasha DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4474 +3726 2025-07-13 14:56:11.79019+00 2025-07-13 14:56:11.790202+00 f t Agatha DOG \N 5.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4475 +3727 2025-07-13 15:52:06.589811+00 2025-07-13 15:52:06.589823+00 f t Cuki CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4476 +3689 2025-07-12 20:36:36.322089+00 2025-07-12 20:36:36.322097+00 f t Tomi CAT 14 6.80 0.00 t \N 2025-07-13 \N \N MALE \N f 29 114 4434 +3841 2025-07-15 17:41:18.946335+00 2025-07-15 17:41:18.946343+00 f t Mora CAT 7 0.00 0.00 t \N 2025-07-15 \N \N FEMALE Castrada por piometra \N f 27 1208 4624 +3728 2025-07-13 16:28:33.54208+00 2025-07-13 16:28:33.542088+00 f t Sofia DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4477 +3729 2025-07-13 16:30:00.699326+00 2025-07-13 16:30:00.699335+00 f t Roco DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4477 +3730 2025-07-13 17:11:40.595093+00 2025-07-13 17:11:40.595102+00 f t amadeo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4478 +3731 2025-07-13 17:25:58.077912+00 2025-07-13 17:25:58.077921+00 f t Tiki DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4479 +3732 2025-07-13 17:27:17.244354+00 2025-07-13 17:27:17.244364+00 f t Tiki DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4480 +3733 2025-07-13 17:33:15.986318+00 2025-07-13 17:33:15.986326+00 f t Lupe CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4481 +3734 2025-07-13 18:55:37.408871+00 2025-07-13 18:55:37.408879+00 f t Simón DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4484 +3690 2025-07-12 20:40:49.221082+00 2025-07-12 20:40:49.221089+00 f t Lolo Marchetta DOG 5 3.70 0.00 t \N 2025-07-12 \N \N MALE Para hoy a la noche le dieron que coma espárragos con huevo revuelto para ayudar a los huesos\r\nSi se asusta ladra. No es agresivo \N f 23 114 4435 +3687 2025-07-12 20:28:01.747583+00 2025-07-12 20:28:01.747594+00 f t Airi CAT 4 4.30 0.00 t \N 2025-07-12 \N \N FEMALE \N f \N 114 602 +3736 2025-07-13 20:30:29.256814+00 2025-07-13 20:30:29.256827+00 f t Lily DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4486 +3737 2025-07-13 20:32:02.506608+00 2025-07-13 20:32:02.50662+00 f t Lily DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4487 +3738 2025-07-13 21:24:57.924037+00 2025-07-13 21:24:57.924045+00 f t Toby DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4489 +3739 2025-07-13 21:27:39.162093+00 2025-07-13 21:27:39.162102+00 f t Toby DOG \N 22.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4490 +3740 2025-07-13 21:37:02.368178+00 2025-07-13 21:37:02.368187+00 f t Rumba DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4491 +308 2024-12-12 15:36:18.764+00 2024-12-12 15:36:18.764+00 f t Max DOG 0 0.00 0.00 f \N 2025-07-13 \N \N MALE No hay ningún tipo de información sobre la mascota. \N f 17 114 264 +3741 2025-07-13 21:40:09.526486+00 2025-07-13 21:40:09.526494+00 f t Koda Lionel DOG \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4492 +3742 2025-07-13 21:40:28.281322+00 2025-07-13 21:40:28.281331+00 f t Koda Lionel CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4492 +3743 2025-07-13 21:57:39.060975+00 2025-07-13 21:57:39.060985+00 f t Akira CAT \N 1.40 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4493 +3744 2025-07-13 22:01:43.139518+00 2025-07-13 22:01:43.139526+00 f t Ginger CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4494 +3745 2025-07-13 22:42:02.317427+00 2025-07-13 22:42:02.317441+00 f t Rocky DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4496 +3746 2025-07-13 22:51:22.760058+00 2025-07-13 22:51:22.760067+00 f t Wilson CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4497 +3747 2025-07-13 22:59:58.799233+00 2025-07-13 22:59:58.799247+00 f t Chester CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4497 +3748 2025-07-13 23:00:47.969645+00 2025-07-13 23:00:47.969655+00 f t Tuky DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4498 +3749 2025-07-13 23:02:38.330208+00 2025-07-13 23:02:38.33022+00 f t Polo DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4499 +3750 2025-07-13 23:07:42.208678+00 2025-07-13 23:07:42.20869+00 f t Luna DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4500 +3224 2025-07-02 23:35:23.953452+00 2025-07-02 23:35:23.953458+00 f t Hoshi DOG 7 25.00 0.00 f 2018-05-11 2025-07-03 \N \N MALE \N f \N 113 3805 +3709 2025-07-13 09:32:10.797872+00 2025-07-13 09:32:10.797881+00 f t Mila CAT \N 4.00 0.00 f \N \N 2025-07-14 \N \N FEMALE \N \N f \N \N 4461 +3879 2025-07-16 15:29:02.481796+00 2025-07-16 15:29:02.481805+00 f t Paco DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4672 +3755 2025-07-14 01:18:24.331372+00 2025-07-14 01:18:24.33138+00 f t Meme CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4507 +3756 2025-07-14 01:50:43.198424+00 2025-07-14 01:50:43.198437+00 f t Oso CAT \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4510 +3759 2025-07-14 02:29:16.771721+00 2025-07-14 02:29:16.77173+00 f t Luna DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4513 +3760 2025-07-14 03:22:06.584037+00 2025-07-14 03:22:06.58405+00 f t Onur CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4514 +3761 2025-07-14 03:23:31.244791+00 2025-07-14 03:23:31.2448+00 f t Chiquito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4514 +3762 2025-07-14 03:24:13.894499+00 2025-07-14 03:24:13.894508+00 f t Bebito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4514 +3763 2025-07-14 03:26:40.728597+00 2025-07-14 03:26:40.728611+00 f t Onur CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4515 +3764 2025-07-14 03:27:24.739642+00 2025-07-14 03:27:24.73965+00 f t Chiquito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4515 +3765 2025-07-14 04:57:32.755109+00 2025-07-14 04:57:32.755118+00 f t Poli DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4517 +3766 2025-07-14 07:09:53.008448+00 2025-07-14 07:09:53.008464+00 f t Luca DOG \N 29.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4518 +3767 2025-07-14 13:32:12.019703+00 2025-07-14 13:32:12.019713+00 f t Luna CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4525 +3768 2025-07-14 13:47:10.431061+00 2025-07-14 13:47:10.431073+00 f t Melón CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4527 +3769 2025-07-14 14:03:00.03657+00 2025-07-14 14:03:00.036581+00 f t Benet CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4528 +3770 2025-07-14 14:19:36.10512+00 2025-07-14 14:19:36.105131+00 f t Tururu CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4529 +3338 2025-07-05 22:45:17.366624+00 2025-07-05 22:45:17.366632+00 f t Dee Dee CAT \N 6.00 0.00 f \N \N 2025-07-14 \N \N MALE \N \N f \N \N 3986 +3771 2025-07-14 14:40:51.339988+00 2025-07-14 14:40:51.339995+00 f t Blair Bustamante DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4530 +3772 2025-07-14 15:24:35.823693+00 2025-07-14 15:24:35.823703+00 f t Candy DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4532 +3773 2025-07-14 15:25:45.48356+00 2025-07-14 15:25:45.483568+00 f t bowie DOG \N 1.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4533 +3774 2025-07-14 15:26:03.907375+00 2025-07-14 15:26:03.907397+00 f t bowie CAT \N 1.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4533 +3775 2025-07-14 15:29:54.999764+00 2025-07-14 15:29:54.999773+00 f t Balder CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4534 +3776 2025-07-14 16:02:59.841353+00 2025-07-14 16:02:59.841361+00 f t Comiendo macabi DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4536 +3777 2025-07-14 16:08:43.176287+00 2025-07-14 16:08:43.176298+00 f t Ruby DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4537 +3778 2025-07-14 17:05:43.253436+00 2025-07-14 17:05:43.253444+00 f t Milton CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4538 +3779 2025-07-14 17:13:30.54446+00 2025-07-14 17:13:30.544472+00 f t Chango DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4539 +3780 2025-07-14 17:31:35.841217+00 2025-07-14 17:31:35.841226+00 f t Dede CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4540 +3781 2025-07-14 17:39:52.103264+00 2025-07-14 17:39:52.103271+00 f t Totoro CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4542 +3782 2025-07-14 17:40:53.584796+00 2025-07-14 17:40:53.584808+00 f t pepola DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4544 +3783 2025-07-14 17:50:29.680821+00 2025-07-14 17:50:29.68083+00 f t Woody DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4545 +3784 2025-07-14 18:22:12.04883+00 2025-07-14 18:22:12.04892+00 f t Tom CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4546 +3785 2025-07-14 18:25:28.379693+00 2025-07-14 18:25:28.379702+00 f t Rumba DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4547 +3786 2025-07-14 18:29:59.806306+00 2025-07-14 18:29:59.80632+00 f t MORO DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4548 +5985 2025-08-26 00:40:05.111755+00 2025-08-26 00:40:05.111767+00 f t Almendra DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7296 +3789 2025-07-14 18:52:31.49173+00 2025-07-14 18:52:31.491739+00 f t Leia DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4551 +3790 2025-07-14 19:14:47.885838+00 2025-07-14 19:14:47.885851+00 f t Missie CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4552 +3933 2025-07-17 17:16:39.290425+00 2025-07-17 17:16:39.290435+00 f t Olivia CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4747 +963 2025-05-08 14:47:14.032456+00 2025-05-08 14:47:14.032462+00 f t Negro DOG 12 35.00 0.00 t \N 2025-05-08 \N \N MALE Estuvo tomando antibiótico y meloxibet \N f \N 112 855 +3792 2025-07-14 20:39:58.224759+00 2025-07-14 20:39:58.224769+00 f t Luna DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4556 +3794 2025-07-14 20:55:30.084928+00 2025-07-14 20:55:30.084937+00 f t Draco DOG \N 60.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4559 +3795 2025-07-14 20:57:46.486381+00 2025-07-14 20:57:46.486394+00 f t Draco DOG \N 69.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4560 +3900 2025-07-16 22:25:38.647111+00 2025-07-16 22:25:38.647121+00 f t Draco DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4699 +3796 2025-07-14 21:41:40.990493+00 2025-07-14 21:41:40.990506+00 f t Draco DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4562 +3797 2025-07-14 22:48:36.029766+00 2025-07-14 22:48:36.029775+00 f t Biela CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4565 +3798 2025-07-14 23:18:27.380381+00 2025-07-14 23:18:27.380393+00 f t Nino DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4566 +3914 2025-07-17 11:59:40.827366+00 2025-07-17 11:59:40.827376+00 f t leonidas CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4724 +3793 2025-07-14 20:50:56.96063+00 2025-07-14 20:50:56.960638+00 f t Manchitas DOG 7 11.50 0.00 f \N 2025-07-14 \N \N \N \N f 21 1026 4558 +3842 2025-07-15 18:00:30.48517+00 2025-07-15 18:00:30.485185+00 f t Fiona DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4625 +3836 2025-07-15 15:49:19.561209+00 2025-07-15 15:49:19.561219+00 f t Ina Cárdenas CAT \N 3.50 0.00 t \N 2020-08-13 2025-07-15 \N \N FEMALE Gata paciente renal crónica, (un solo riñón funcionando) que toma medicación diaria (preparado indicado por nefrólogo) y comida especial medicado (renal). Estuvimos sosteniendo con la indicación veterinaria (se estresa mucho cuando la llevamos presencial) durante la crisis, pero está empeorando. En el 2021 la empezamos a medicar, estaba en estadio 4 que remitió a 2. Tuvo varias crisis, hasta ahora con evolución positiva. Hace 2 días que no defeca, pero si hay miccion. Queremos evaluar el cuadro en casa, evaluando la prueba de eutanasia. Y queríamos saber disponibilidad para una visita en belgrano.Peso habitual entre 3,5 y 3,80kg seguramente haya bajado un poco. \N f \N \N 4616 +3925 2025-07-17 15:54:54.251843+00 2025-07-17 15:54:54.251851+00 f t Bonita DOG 13 20.00 0.00 f \N 2025-07-17 \N \N FEMALE \N f \N 1026 4740 +6030 2025-08-27 00:33:33.94763+00 2025-08-27 00:33:33.947643+00 f t bola de nieve CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7342 +3924 2025-07-17 15:51:29.134435+00 2025-07-17 15:51:29.134447+00 f t Tuti CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4739 +3926 2025-07-17 15:57:01.98802+00 2025-07-17 15:57:01.98803+00 f t Melba DOG \N 16.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4741 +3927 2025-07-17 16:03:35.224254+00 2025-07-17 16:03:35.224263+00 f t Melba DOG \N 16.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4742 +3928 2025-07-17 16:12:11.762824+00 2025-07-17 16:12:11.762837+00 f t Jack CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4743 +3929 2025-07-17 16:13:24.73149+00 2025-07-17 16:13:24.7315+00 f t Nala CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4743 +3930 2025-07-17 16:13:50.252902+00 2025-07-17 16:13:50.252915+00 f t Ralph DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4744 +3931 2025-07-17 16:37:21.827436+00 2025-07-17 16:37:21.827446+00 f t Tucco DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4745 +3587 2025-07-10 14:38:56.261988+00 2025-07-10 14:38:56.261995+00 f t Pancho DOG \N 5.00 0.00 f \N 2025-07-10 \N \N \N \N f 8 1026 4300 +3609 2025-07-10 22:51:52.920131+00 2025-07-10 22:51:52.92014+00 f t Madara CAT 0 3.00 0.00 t \N 2025-07-11 \N \N MALE Castracion 07/07/2025 \N f \N 113 4334 +3758 2025-07-14 02:27:34.090941+00 2025-07-14 02:27:34.090955+00 f t Mateo DOG \N 15.00 0.00 f \N \N 2025-07-14 \N \N MALE \N \N f \N \N 4512 +3757 2025-07-14 02:26:28.507454+00 2025-07-14 02:26:28.507467+00 f t Simon DOG \N 14.00 0.00 f \N \N 2025-07-14 \N \N MALE \N \N f \N \N 4512 +3934 2025-07-17 17:29:17.754532+00 2025-07-17 17:29:17.754541+00 f t Ralph DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4749 +3678 2025-07-12 16:55:20.712749+00 2025-07-12 16:55:20.712756+00 f t Bruno DOG 4 45.00 63.00 t 2021-08-12 2025-07-14 \N \N MALE \N f 15 1208 4418 +3791 2025-07-14 20:29:55.802374+00 2025-07-14 20:29:55.802383+00 f t Carlos DOG 15 3.60 0.00 t \N 2025-07-30 \N \N MALE \N f 8 1026 4555 +788 2025-04-15 01:11:39.215322+00 2025-04-15 01:11:39.215332+00 f t Pati CAT 0 0.00 0.00 f \N 2025-07-17 \N \N FEMALE \N f \N 113 667 +3922 2025-07-17 15:07:50.003301+00 2025-07-17 15:07:50.003308+00 f t Buñuelos DOG 10 30.00 0.00 f \N 2025-07-17 \N \N FEMALE \N f \N 1026 4737 +3919 2025-07-17 14:12:35.281373+00 2025-07-17 14:12:35.281382+00 f t Titán DOG \N 12.00 0.00 f \N 2017-08-18 2025-08-16 \N \N MALE \N \N f \N \N 4732 +3916 2025-07-17 13:34:01.027532+00 2025-07-17 13:34:01.02754+00 f t Lola CAT \N 5.00 0.00 t \N \N 2025-08-01 \N \N FEMALE \N \N f \N \N 4727 +3859 2025-07-16 01:39:50.002661+00 2025-07-16 01:39:50.002671+00 f t Ventarron CAT \N 5.50 0.00 f \N \N 2025-07-17 \N \N MALE \N \N f \N \N 4645 +3932 2025-07-17 16:50:13.588545+00 2025-07-17 16:50:13.588553+00 f t Melba DOG \N 16.00 0.00 f \N 2025-07-17 \N \N FEMALE \N f \N 1026 4746 +3787 2025-07-14 18:50:46.867041+00 2025-07-14 18:50:46.867048+00 f t Perro de Patricia DOG \N 0.00 0.00 f \N 2025-08-04 \N \N \N \N f \N 1026 4549 +5986 2025-08-26 00:41:23.994892+00 2025-08-26 00:41:23.994902+00 f t Almendra DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7297 +3989 2025-07-19 03:00:57.963967+00 2025-07-19 03:00:57.964064+00 f t Merli DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4827 +3990 2025-07-19 04:22:55.931574+00 2025-07-19 04:22:55.931584+00 f t Mora DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4829 +3911 2025-07-17 07:34:33.818028+00 2025-07-17 07:34:33.818038+00 f t Lenny DOG \N 17.00 0.00 f \N \N 2025-07-17 \N \N MALE \N \N f \N \N 4721 +3938 2025-07-17 20:29:19.842448+00 2025-07-17 20:29:19.84246+00 f t Lola DOG \N 4.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4756 +3906 2025-07-17 00:46:09.824474+00 2025-07-17 00:46:09.824488+00 f t Flancito DOG \N 20.00 0.00 f \N \N 2025-07-17 \N \N MALE \N \N f \N \N 4710 +3939 2025-07-17 20:34:56.561638+00 2025-07-17 20:34:56.56165+00 f t Lola DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4757 +3940 2025-07-17 20:36:18.588885+00 2025-07-17 20:36:18.588898+00 f t Lola DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4758 +2549 2025-06-18 01:31:33.757914+00 2025-06-18 01:31:33.757921+00 f t Paolo CAT 15 5.00 0.00 t \N 2025-07-14 \N \N \N \N f \N 113 2894 +3941 2025-07-17 22:02:31.489494+00 2025-07-17 22:02:31.489504+00 f t Zetabra DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4761 +3942 2025-07-17 22:02:56.224096+00 2025-07-17 22:02:56.224107+00 f t Dara DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4763 +3943 2025-07-17 22:24:47.176453+00 2025-07-17 22:24:47.177257+00 f t Hope DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4765 +3944 2025-07-17 22:27:28.219418+00 2025-07-17 22:27:28.219957+00 f t Keyti DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4766 +3954 2025-07-18 00:57:38.388777+00 2025-07-18 00:57:38.388787+00 f t Atila DOG \N 25.00 70.00 f \N 2023-11-21 2025-08-07 \N \N MALE \N \N f \N \N 4774 +3945 2025-07-17 22:45:34.96671+00 2025-07-17 22:45:34.966724+00 f t Yuno CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4767 +3946 2025-07-17 22:47:04.73463+00 2025-07-17 22:47:04.734643+00 f t Emilia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4767 +3947 2025-07-17 22:47:40.15376+00 2025-07-17 22:47:40.153769+00 f t Yuno CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4767 +3948 2025-07-17 23:21:45.535333+00 2025-07-17 23:21:45.535343+00 f t kala DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4769 +3949 2025-07-17 23:22:27.465571+00 2025-07-17 23:22:27.465583+00 f t kala DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4769 +3950 2025-07-17 23:31:40.738192+00 2025-07-17 23:31:40.738203+00 f t pepi DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4770 +3952 2025-07-18 00:28:08.721355+00 2025-07-18 00:28:08.721365+00 f t Argos DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4772 +3953 2025-07-18 00:34:33.593243+00 2025-07-18 00:34:33.593253+00 f t Uma DOG \N 47.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4773 +3955 2025-07-18 01:09:35.468248+00 2025-07-18 01:09:35.468258+00 f t Julieta DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4776 +3956 2025-07-18 01:19:41.010301+00 2025-07-18 01:19:41.010309+00 f t Holly DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4777 +3957 2025-07-18 02:56:33.635242+00 2025-07-18 02:56:33.635254+00 f t Homero DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4778 +3958 2025-07-18 03:20:50.782118+00 2025-07-18 03:20:50.782132+00 f t Felipe DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4779 +3959 2025-07-18 05:25:45.750424+00 2025-07-18 05:25:45.750435+00 f t Tilo DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4780 +3960 2025-07-18 11:29:39.854648+00 2025-07-18 11:29:39.854661+00 f t Manchita CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4782 +3961 2025-07-18 11:31:06.223189+00 2025-07-18 11:31:06.223203+00 f t Luna DOG \N 1.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4782 +3962 2025-07-18 11:31:45.476805+00 2025-07-18 11:31:45.476815+00 f t Luna CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4782 +3963 2025-07-18 12:43:26.730193+00 2025-07-18 12:43:26.730202+00 f t Tomi CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4783 +3964 2025-07-18 12:58:16.464007+00 2025-07-18 12:58:16.464021+00 f t Tomi CAT \N 8.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4785 +3966 2025-07-18 14:32:47.140648+00 2025-07-18 14:32:47.140662+00 f t Milo DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4790 +3998 2025-07-19 13:50:59.469086+00 2025-07-19 13:50:59.469096+00 f t Apolo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4840 +3967 2025-07-18 16:53:35.256208+00 2025-07-18 16:53:35.256216+00 f t Otto DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4794 +3968 2025-07-18 17:08:11.071992+00 2025-07-18 17:08:11.072006+00 f t Canela DOG \N 143.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4795 +3969 2025-07-18 18:21:08.973854+00 2025-07-18 18:21:08.973867+00 f t Valentin CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4801 +3991 2025-07-19 10:24:19.013311+00 2025-07-19 10:24:19.013321+00 f t Tincho DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4833 +3992 2025-07-19 10:59:20.75155+00 2025-07-19 10:59:20.751559+00 f t Felipe DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4834 +3971 2025-07-18 19:22:35.31677+00 2025-07-18 19:22:35.316781+00 f t PRUEBA DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4803 +3972 2025-07-18 20:00:04.600581+00 2025-07-18 20:00:04.600596+00 f t Xx CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4804 +3937 2025-07-17 19:52:07.669349+00 2025-07-17 19:52:07.669356+00 f t Coco DOG 2 35.00 0.00 f \N 2025-07-17 \N \N MALE \N f 3 1208 4755 +3788 2025-07-14 18:52:29.069232+00 2025-07-14 18:52:29.069247+00 f t Mecha CAT 10 5.00 0.00 t \N 2025-07-17 \N \N FEMALE \N f \N 1026 4550 +3973 2025-07-18 20:45:47.89647+00 2025-07-18 20:45:47.896483+00 f t Luli CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4805 +3974 2025-07-18 20:47:59.424598+00 2025-07-18 20:47:59.424608+00 f t Luli CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4806 +3975 2025-07-18 21:05:55.245375+00 2025-07-18 21:05:55.245385+00 f t 1 DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4809 +3976 2025-07-18 22:28:08.330654+00 2025-07-18 22:28:08.330663+00 f t La roca pelusa CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4811 +3977 2025-07-18 22:33:21.644098+00 2025-07-18 22:33:21.64411+00 f t Milo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4812 +3978 2025-07-18 22:35:35.04436+00 2025-07-18 22:35:35.04437+00 f t Kovu CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4813 +3979 2025-07-18 23:16:27.837138+00 2025-07-18 23:16:27.837147+00 f t Otto DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4814 +3980 2025-07-18 23:18:34.516968+00 2025-07-18 23:18:34.516978+00 f t Hugo DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4815 +3981 2025-07-18 23:29:26.671932+00 2025-07-18 23:29:26.671942+00 f t Roco DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4816 +3982 2025-07-18 23:59:07.378581+00 2025-07-18 23:59:07.378592+00 f t Xena DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4818 +3983 2025-07-19 00:43:28.376893+00 2025-07-19 00:43:28.376903+00 f t Foquita DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4820 +3984 2025-07-19 00:43:57.182853+00 2025-07-19 00:43:57.182868+00 f t Foquita CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4820 +3985 2025-07-19 01:34:35.588016+00 2025-07-19 01:34:35.588026+00 f t Mandy CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4821 +3986 2025-07-19 01:39:13.35998+00 2025-07-19 01:39:13.359989+00 f t Momo DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4822 +3987 2025-07-19 01:41:29.973617+00 2025-07-19 01:41:29.97363+00 f t Satis CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4824 +3988 2025-07-19 02:12:30.314766+00 2025-07-19 02:12:30.314779+00 f t Ziggy DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4826 +3993 2025-07-19 11:35:44.610635+00 2025-07-19 11:35:44.610647+00 f t Nano DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4835 +3994 2025-07-19 11:59:13.51865+00 2025-07-19 11:59:13.518659+00 f t Lulu DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4836 +3995 2025-07-19 12:19:27.084132+00 2025-07-19 12:19:27.084142+00 f t Dadf CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4837 +3996 2025-07-19 12:21:39.668084+00 2025-07-19 12:21:39.668094+00 f t Tito DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4837 +3997 2025-07-19 13:12:42.826072+00 2025-07-19 13:12:42.826083+00 f t Rocco DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4838 +6031 2025-08-27 01:01:52.428208+00 2025-08-27 01:01:52.428224+00 f t Samira CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7344 +3936 2025-07-17 19:46:35.125405+00 2025-07-17 19:46:35.125412+00 f t Hanna DOG 4 23.00 0.00 f \N 2025-07-17 \N \N FEMALE \N f 3 1208 4754 +3999 2025-07-19 14:04:41.541454+00 2025-07-19 14:04:41.541464+00 f t Altair CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4841 +4000 2025-07-19 14:08:01.834473+00 2025-07-19 14:08:01.834495+00 f t Oñivia DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4842 +4001 2025-07-19 14:09:45.778455+00 2025-07-19 14:09:45.778465+00 f t Olivia DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4843 +2947 2025-06-27 00:13:32.292276+00 2025-06-27 00:13:32.292284+00 f t Pampa DOG 1 30.00 0.00 f \N 2025-08-02 \N \N FEMALE \N f \N 113 710 +3896 2025-07-16 20:33:48.056365+00 2025-07-16 20:33:48.056371+00 f t Juana CAT 3 3.00 0.00 f \N 2025-07-19 \N \N FEMALE Se pone a la defensiva y se asusta \N f \N 113 4693 +3951 2025-07-17 23:42:58.39794+00 2025-07-17 23:42:58.397949+00 f t Schnauzer DOG 7 0.00 0.00 f \N 2025-07-22 \N \N FEMALE Hipoacusica \N f \N 113 4771 +3970 2025-07-18 18:59:14.710851+00 2025-07-18 18:59:14.71086+00 f t Felipe CAT 20 3.10 0.00 t \N 2025-07-18 \N \N MALE \N f \N 1026 4802 +3223 2025-07-02 23:16:07.020021+00 2025-07-02 23:16:07.020027+00 f t Michito CAT 10 5.00 0.00 t \N 2025-08-08 \N \N MALE \N f 27 113 3804 +3965 2025-07-18 14:24:50.961248+00 2025-07-18 14:24:50.961256+00 f t Zoe DOG \N 1.50 0.00 f \N 2025-07-25 \N \N FEMALE \N f 9 1026 4789 +6055 2025-08-27 17:20:55.428397+00 2025-08-27 17:20:55.428407+00 f t Timón CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7371 +2872 2025-06-25 16:02:17.004635+00 2025-06-25 16:02:17.004643+00 f t Geralt CAT 5 5.00 0.00 f \N 2025-08-12 \N \N \N \N f \N 1026 3347 +6065 2025-08-27 20:03:49.382807+00 2025-08-27 20:03:49.382816+00 f t Maia DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7384 +4002 2025-07-19 14:12:41.885357+00 2025-07-19 14:12:41.885368+00 f t Olivia DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4844 +4003 2025-07-19 14:27:39.485022+00 2025-07-19 14:27:39.485034+00 f t XICA DOG \N 45.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4845 +3935 2025-07-17 17:29:40.504458+00 2025-07-17 17:29:40.504465+00 f t Apolo DOG 13 12.50 0.00 f \N 2025-07-17 \N \N MALE \N f \N 1026 4748 +4004 2025-07-19 15:04:02.726573+00 2025-07-19 15:04:02.726588+00 f t Sin nombre CAT \N 4.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4616 +4005 2025-07-19 15:09:20.691872+00 2025-07-19 15:09:20.691881+00 f t Sin nombre CAT \N 4.70 46.00 t \N 2024-07-19 \N \N \N MALE \N \N f \N \N 4616 +5987 2025-08-26 01:03:07.979639+00 2025-08-26 01:03:07.979652+00 f t Umma DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7298 +4008 2025-07-19 17:05:02.243257+00 2025-07-19 17:05:02.243271+00 f t Mate DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4850 +4009 2025-07-19 17:05:48.971863+00 2025-07-19 17:05:48.971872+00 f t Charlie DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4851 +4063 2025-07-20 14:49:57.227013+00 2025-07-20 14:49:57.227022+00 f t Ringo DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4913 +6032 2025-08-27 01:04:44.057222+00 2025-08-27 01:04:44.057236+00 f t Lara DOG \N 4.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7345 +4010 2025-07-19 18:14:36.264408+00 2025-07-19 18:14:36.264419+00 f t Pulgosa DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4855 +4012 2025-07-19 18:50:26.372254+00 2025-07-19 18:50:26.372262+00 f t Quique DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4857 +4014 2025-07-19 19:08:40.130946+00 2025-07-19 19:08:40.130957+00 f t Kayla DOG \N 32.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4859 +4015 2025-07-19 19:10:17.33475+00 2025-07-19 19:10:17.334759+00 f t Megatron CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4860 +4016 2025-07-19 19:11:14.763929+00 2025-07-19 19:11:14.76394+00 f t Rachel CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4860 +4017 2025-07-19 19:11:40.023818+00 2025-07-19 19:11:40.023826+00 f t Pancho DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4860 +4018 2025-07-19 19:11:53.600399+00 2025-07-19 19:11:53.60041+00 f t Optimus CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4860 +4019 2025-07-19 19:12:31.154182+00 2025-07-19 19:12:31.154192+00 f t Pancho CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4860 +4020 2025-07-19 19:17:31.477838+00 2025-07-19 19:17:31.47785+00 f t Negro DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4861 +4021 2025-07-19 19:17:45.892075+00 2025-07-19 19:17:45.892087+00 f t Negro CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4861 +4022 2025-07-19 19:21:53.441676+00 2025-07-19 19:21:53.441684+00 f t Negro CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4862 +4023 2025-07-19 19:27:21.493706+00 2025-07-19 19:27:21.493715+00 f t Caipi DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4863 +4024 2025-07-19 19:32:37.601088+00 2025-07-19 19:32:37.601097+00 f t Campeón DOG \N 0.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4864 +4025 2025-07-19 19:57:03.756931+00 2025-07-19 19:57:03.756944+00 f t Pupi DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4865 +4011 2025-07-19 18:34:06.236895+00 2025-07-19 18:34:06.236904+00 f t Koi CAT \N 5.00 0.00 f \N \N 2025-07-19 \N \N FEMALE \N \N f \N \N 4856 +4027 2025-07-19 22:21:17.338239+00 2025-07-19 22:21:17.338251+00 f t Ori CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4870 +4028 2025-07-19 23:16:42.223023+00 2025-07-19 23:16:42.223035+00 f t Lazu DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4871 +4029 2025-07-19 23:28:41.744525+00 2025-07-19 23:28:41.744536+00 f t Rocky DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4873 +4030 2025-07-19 23:35:24.058579+00 2025-07-19 23:35:24.058588+00 f t Milo DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4874 +4031 2025-07-19 23:48:35.655542+00 2025-07-19 23:48:35.655552+00 f t Merlín DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4875 +4032 2025-07-19 23:53:16.438421+00 2025-07-19 23:53:16.438429+00 f t Romeo DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4876 +4033 2025-07-19 23:54:29.663496+00 2025-07-19 23:54:29.663504+00 f t Romeo DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4876 +4034 2025-07-20 00:29:25.990059+00 2025-07-20 00:29:25.990068+00 f t Kaiser DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4877 +4035 2025-07-20 00:39:26.96411+00 2025-07-20 00:39:26.96412+00 f t bo CAT \N 1.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4878 +4036 2025-07-20 01:15:16.575836+00 2025-07-20 01:15:16.575847+00 f t Clara DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4879 +4037 2025-07-20 01:48:17.771832+00 2025-07-20 01:48:17.77184+00 f t Asuca DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4880 +4038 2025-07-20 01:58:17.941527+00 2025-07-20 01:58:17.941535+00 f t Misha CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4882 +4039 2025-07-20 02:27:08.948523+00 2025-07-20 02:27:08.948603+00 f t Pepa DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4883 +4040 2025-07-20 02:28:41.107561+00 2025-07-20 02:28:41.107571+00 f t Pepa DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4884 +4041 2025-07-20 02:47:03.857202+00 2025-07-20 02:47:03.857212+00 f t Chapu CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4885 +4042 2025-07-20 02:50:57.066552+00 2025-07-20 02:50:57.066564+00 f t Emilio DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4886 +4043 2025-07-20 02:53:43.047816+00 2025-07-20 02:53:43.047828+00 f t Emilio DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4887 +4044 2025-07-20 03:05:07.373249+00 2025-07-20 03:05:07.373261+00 f t Tierra DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4889 +4045 2025-07-20 03:54:43.677738+00 2025-07-20 03:54:43.677748+00 f t PARIS CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4890 +4046 2025-07-20 04:28:46.801301+00 2025-07-20 04:28:46.80131+00 f t Puchi CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4891 +4047 2025-07-20 04:30:53.582406+00 2025-07-20 04:30:53.582415+00 f t Jjuy CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4891 +4048 2025-07-20 04:56:39.913729+00 2025-07-20 04:56:39.913739+00 f t Ringo DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4892 +4049 2025-07-20 05:03:47.880272+00 2025-07-20 05:03:47.880281+00 f t Simba CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4893 +4050 2025-07-20 05:35:24.239429+00 2025-07-20 05:35:24.239441+00 f t Tornado DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4894 +4051 2025-07-20 08:21:22.15868+00 2025-07-20 08:21:22.158689+00 f t Lluvia DOG \N 19.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4895 +4052 2025-07-20 08:24:36.53972+00 2025-07-20 08:24:36.53973+00 f t Lennon DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4897 +4053 2025-07-20 08:28:10.818876+00 2025-07-20 08:28:10.818884+00 f t Lennon DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4899 +4054 2025-07-20 08:31:44.521313+00 2025-07-20 08:31:44.521321+00 f t Lennon DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4900 +4055 2025-07-20 09:37:08.146221+00 2025-07-20 09:37:08.146234+00 f t Lennon Priegue DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4901 +4056 2025-07-20 09:40:16.814038+00 2025-07-20 09:40:16.814049+00 f t Lennon DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4901 +4057 2025-07-20 11:29:22.875981+00 2025-07-20 11:29:22.875993+00 f t Ramiro DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4903 +4058 2025-07-20 12:06:01.808154+00 2025-07-20 12:06:01.808167+00 f t Malagueña DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4905 +4059 2025-07-20 12:49:43.549218+00 2025-07-20 12:49:43.549226+00 f t Simon DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4906 +4060 2025-07-20 13:09:00.784568+00 2025-07-20 13:09:00.784577+00 f t Simba DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4910 +4061 2025-07-20 14:06:46.78468+00 2025-07-20 14:06:46.784688+00 f t Apolo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4911 +4062 2025-07-20 14:39:55.265484+00 2025-07-20 14:39:55.265492+00 f t Wilson DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4912 +4064 2025-07-20 14:56:15.992601+00 2025-07-20 14:56:15.992613+00 f t Rocco DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4914 +4065 2025-07-20 14:57:36.738597+00 2025-07-20 14:57:36.738607+00 f t Totoro CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4914 +4066 2025-07-20 14:57:56.666394+00 2025-07-20 14:57:56.666403+00 f t Vader CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4914 +4067 2025-07-20 15:00:50.32868+00 2025-07-20 15:00:50.328687+00 f t Gala DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4916 +4068 2025-07-20 15:02:48.129855+00 2025-07-20 15:02:48.129863+00 f t Bebitos DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4916 +4069 2025-07-20 15:48:52.187507+00 2025-07-20 15:48:52.187519+00 f t Leon CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4917 +4070 2025-07-20 15:57:15.318919+00 2025-07-20 15:57:15.318931+00 f t Sasha DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4918 +4071 2025-07-20 15:57:31.241562+00 2025-07-20 15:57:31.241571+00 f t Onur CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4919 +355 2025-01-07 00:03:49.1+00 2025-01-07 00:03:49.1+00 f t Lola DOG 12 30.00 0.00 f 2012-12-02 2025-08-06 \N \N \N \N f \N 113 301 +4073 2025-07-20 16:43:27.37327+00 2025-07-20 16:43:27.373282+00 f t Michi CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4922 +4074 2025-07-20 17:02:00.895182+00 2025-07-20 17:02:00.895195+00 f t Polanca DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4923 +4013 2025-07-19 18:54:26.850454+00 2025-07-19 18:54:26.850461+00 f t Rusia DOG \N 3.00 0.00 f \N 2025-07-21 \N \N FEMALE \N f 1 1208 4858 +2661 2025-06-20 17:23:39.155875+00 2025-06-20 17:23:39.155887+00 f t Theo DOG 0 30.00 0.00 f \N 2025-07-19 \N \N MALE \N f 52 114 3052 +4007 2025-07-19 15:22:56.165018+00 2025-07-19 15:22:56.165025+00 f t Sam DOG 4 40.00 0.00 f \N 2025-08-19 \N \N MALE \N f 1 1208 4848 +2483 2025-06-16 20:19:30.667479+00 2025-06-16 20:19:30.667486+00 f t Pancho CAT 12 5.00 0.00 t \N 2025-07-19 \N \N MALE \N f \N 113 2823 +4072 2025-07-20 16:08:26.924102+00 2025-07-20 16:08:26.92411+00 f t Lisa DOG \N 20.00 0.00 f \N \N 2025-07-23 \N \N FEMALE \N \N f \N \N 4920 +1709 2025-05-29 14:30:45.518678+00 2025-05-29 14:30:45.518686+00 f t Mufasa CAT 11 5.00 0.00 t 2014-08-01 2025-08-05 \N \N MALE \N f \N 1026 1798 +1651 2025-05-27 23:05:18.01239+00 2025-05-27 23:05:18.012396+00 f t Tito CAT 19 4.00 0.00 t \N 2025-08-10 \N \N MALE \N t \N 113 1734 +4075 2025-07-20 17:15:02.163579+00 2025-07-20 17:15:02.163591+00 f t Fermin CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4924 +4076 2025-07-20 17:29:15.673549+00 2025-07-20 17:29:15.673559+00 f t Coco CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4926 +4077 2025-07-20 17:45:26.567419+00 2025-07-20 17:45:26.567427+00 f t Ruby DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4928 +4078 2025-07-20 18:36:15.52994+00 2025-07-20 18:36:15.529949+00 f t Gf CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4929 +4079 2025-07-20 18:46:14.644746+00 2025-07-20 18:46:14.644757+00 f t Victoria DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4930 +4080 2025-07-20 18:51:28.493139+00 2025-07-20 18:51:28.493148+00 f t Moli DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4931 +4081 2025-07-20 19:22:10.210682+00 2025-07-20 19:22:10.210695+00 f t Panchita DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4932 +4082 2025-07-20 19:36:40.65389+00 2025-07-20 19:36:40.653898+00 f t Tete DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4934 +4083 2025-07-20 19:59:36.495794+00 2025-07-20 19:59:36.495804+00 f t Zimba DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4937 +4084 2025-07-20 19:59:55.508407+00 2025-07-20 19:59:55.508414+00 f t Oliver DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4936 +4085 2025-07-20 20:33:04.658245+00 2025-07-20 20:33:04.658258+00 f t Crosh DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4938 +4086 2025-07-20 20:42:05.506947+00 2025-07-20 20:42:05.50696+00 f t Ciro DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4939 +4087 2025-07-20 20:42:21.99737+00 2025-07-20 20:42:21.997378+00 f t Ciro CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4939 +4088 2025-07-20 20:44:38.846622+00 2025-07-20 20:44:38.846634+00 f t Mandioca DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4940 +4089 2025-07-20 20:58:52.561709+00 2025-07-20 20:58:52.561718+00 f t Susy DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4942 +4090 2025-07-20 20:59:57.055482+00 2025-07-20 20:59:57.055491+00 f t Lex DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4942 +4091 2025-07-20 21:00:24.691766+00 2025-07-20 21:00:24.691777+00 f t Petizo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4942 +4092 2025-07-20 21:00:49.204903+00 2025-07-20 21:00:49.204914+00 f t Canela DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4942 +4093 2025-07-20 21:21:01.471865+00 2025-07-20 21:21:01.471879+00 f t Elena CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4943 +4094 2025-07-20 21:34:47.571091+00 2025-07-20 21:34:47.5711+00 f t Toby DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4944 +4095 2025-07-20 23:14:43.652421+00 2025-07-20 23:14:43.652429+00 f t Mimi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4948 +4096 2025-07-20 23:22:51.711092+00 2025-07-20 23:22:51.711104+00 f t Toto DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4949 +4097 2025-07-20 23:31:04.079084+00 2025-07-20 23:31:04.079097+00 f t Renata CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4950 +4098 2025-07-20 23:52:41.512712+00 2025-07-20 23:52:41.512721+00 f t China DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4951 +4099 2025-07-21 00:08:27.516016+00 2025-07-21 00:08:27.516025+00 f t Sombra CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4953 +5988 2025-08-26 02:10:03.124276+00 2025-08-26 02:10:03.12429+00 f t Teo DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7299 +4101 2025-07-21 00:34:22.015443+00 2025-07-21 00:34:22.015453+00 f t Kiara CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4955 +4102 2025-07-21 00:51:47.680654+00 2025-07-21 00:51:47.680663+00 f t Tita CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4956 +4103 2025-07-21 01:09:57.049236+00 2025-07-21 01:09:57.049248+00 f t Chilli DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4957 +4104 2025-07-21 01:10:51.678056+00 2025-07-21 01:10:51.678064+00 f t CHISPA DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4957 +4105 2025-07-21 01:55:11.328174+00 2025-07-21 01:55:11.328186+00 f t Canela DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4960 +4106 2025-07-21 03:14:35.594602+00 2025-07-21 03:14:35.59461+00 f t Rufina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4961 +4107 2025-07-21 03:40:17.954616+00 2025-07-21 03:40:17.95463+00 f t Clara CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4965 +4108 2025-07-21 03:47:38.241625+00 2025-07-21 03:47:38.241636+00 f t Clara CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4966 +4109 2025-07-21 08:26:07.933345+00 2025-07-21 08:26:07.933356+00 f t oliver DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4970 +4110 2025-07-21 10:04:18.51941+00 2025-07-21 10:04:18.519418+00 f t M DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4973 +4111 2025-07-21 10:04:21.819614+00 2025-07-21 10:04:21.819625+00 f t Daron Alfaro DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4974 +4112 2025-07-21 11:58:12.634204+00 2025-07-21 11:58:12.634213+00 f t Warhol DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4976 +4113 2025-07-21 11:59:47.994715+00 2025-07-21 11:59:47.994723+00 f t Abril DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4977 +4114 2025-07-21 12:03:07.254703+00 2025-07-21 12:03:07.254712+00 f t Pancho DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4978 +4115 2025-07-21 12:05:46.587742+00 2025-07-21 12:05:46.58775+00 f t Micky CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4979 +4116 2025-07-21 12:07:23.956646+00 2025-07-21 12:07:23.956655+00 f t Micky CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4981 +4117 2025-07-21 12:09:39.908652+00 2025-07-21 12:09:39.908661+00 f t Kira DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4980 +4118 2025-07-21 12:19:49.173364+00 2025-07-21 12:19:49.173372+00 f t Roco DOG \N 24.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 4983 +4119 2025-07-21 12:41:40.013985+00 2025-07-21 12:41:40.013994+00 f t Sofía DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4984 +4120 2025-07-21 13:07:36.757703+00 2025-07-21 13:07:36.757712+00 f t Chop DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4985 +4121 2025-07-21 13:08:57.455063+00 2025-07-21 13:08:57.455075+00 f t Sirus DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 4986 +4123 2025-07-21 13:40:55.77952+00 2025-07-21 13:40:55.779533+00 f t Umma DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4988 +854 2025-04-25 19:12:33.683126+00 2025-04-25 19:12:33.683136+00 f t Jaguar CAT 11 6.00 0.00 t \N 2026-04-25 \N \N \N Se asusta y estresa con extraños \N f 31 112 732 +4127 2025-07-21 15:18:55.212652+00 2025-07-21 15:18:55.212664+00 f t Tshiza DOG \N 9.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4994 +4128 2025-07-21 15:32:07.754187+00 2025-07-21 15:32:07.754196+00 f t Qba CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 4996 +4129 2025-07-21 15:40:00.727101+00 2025-07-21 15:40:00.72711+00 f t AKALI CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4998 +4130 2025-07-21 15:42:20.573253+00 2025-07-21 15:42:20.573261+00 f t AKALI CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 4999 +4132 2025-07-21 16:25:39.840765+00 2025-07-21 16:25:39.840774+00 f t Caliope CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5001 +4133 2025-07-21 16:35:09.67074+00 2025-07-21 16:35:09.670751+00 f t Sheshu CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5002 +4134 2025-07-21 16:38:50.660299+00 2025-07-21 16:38:50.660308+00 f t Umma DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5003 +4135 2025-07-21 17:12:05.205093+00 2025-07-21 17:12:05.205102+00 f t Don Gato CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5005 +4136 2025-07-21 17:24:19.514094+00 2025-07-21 17:24:19.514102+00 f t Malena DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5006 +4137 2025-07-21 17:33:39.398717+00 2025-07-21 17:33:39.398727+00 f t Simón CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5007 +4138 2025-07-21 18:00:11.068107+00 2025-07-21 18:00:11.06812+00 f t Vampirina CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5010 +6033 2025-08-27 01:38:02.194632+00 2025-08-27 01:38:02.194648+00 f t Luna DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7346 +4124 2025-07-21 13:47:26.945362+00 2025-07-21 13:47:26.945371+00 f t Barsik CAT \N 5.00 0.00 f \N \N 2025-07-23 \N \N MALE \N \N f \N \N 4989 +4139 2025-07-21 18:34:56.665762+00 2025-07-21 18:34:56.665773+00 f t Benito CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5012 +6056 2025-08-27 17:28:08.709111+00 2025-08-27 17:28:08.709125+00 f t Chapon CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7372 +4140 2025-07-21 19:59:55.966591+00 2025-07-21 19:59:55.9666+00 f t Pancho DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5014 +4141 2025-07-21 20:32:53.428052+00 2025-07-21 20:32:53.428061+00 f t Piñón DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5017 +4142 2025-07-21 22:10:48.44236+00 2025-07-21 22:10:48.442368+00 f t Tabo DOG \N 28.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5018 +4143 2025-07-21 22:11:28.183996+00 2025-07-21 22:11:28.184005+00 f t Camilo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5019 +4144 2025-07-21 22:26:56.405047+00 2025-07-21 22:26:56.405056+00 f t Pantera CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5020 +4131 2025-07-21 15:57:47.507888+00 2025-07-21 15:57:47.507897+00 f t Beto CAT 8 0.00 0.00 t \N 2025-08-13 \N \N MALE \N f \N 1026 5000 +4122 2025-07-21 13:17:50.129211+00 2025-07-21 13:17:50.129217+00 f t Catalina DOG 6 7.80 0.00 t \N 2025-07-25 \N \N \N \N f 8 1026 4987 +4125 2025-07-21 14:39:38.68206+00 2025-07-21 14:39:38.68207+00 f t Rino DOG \N 20.00 0.00 t \N \N 2025-07-25 \N \N FEMALE \N \N f \N \N 4992 +4026 2025-07-19 21:52:10.467707+00 2025-07-19 21:52:10.467713+00 f t Pulgosa DOG 7 8.00 0.00 f 2018-07-22 2025-07-19 \N \N FEMALE \N f 1 114 4869 +6066 2025-08-27 20:50:02.769599+00 2025-08-27 20:50:02.769614+00 f t ELIN DOG \N 2.40 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7386 +4126 2025-07-21 14:40:57.195728+00 2025-07-21 14:40:57.195736+00 f t Mona DOG \N 20.00 0.00 t \N \N 2025-07-25 \N \N FEMALE \N \N f \N \N 4992 +4006 2025-07-19 15:17:01.944066+00 2025-07-19 15:17:01.944077+00 f t Terri DOG 12 0.00 0.00 f \N 2025-07-20 \N \N MALE \N f 1 1208 4847 +128 2024-10-30 14:13:09.487+00 2024-10-30 14:13:09.487+00 f t Pancha DOG 13 13.00 0.00 f 2012-12-02 2025-08-15 \N \N FEMALE \N f 1 113 123 +4145 2025-07-21 23:17:27.692992+00 2025-07-21 23:17:27.692997+00 f t Lolo DOG 6 26.00 0.00 f 2018-08-26 2025-08-05 \N \N MALE \N f \N 113 5021 +4147 2025-07-22 00:00:25.794991+00 2025-07-22 00:00:25.795008+00 f t Queso CAT \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5025 +4148 2025-07-22 00:02:55.83909+00 2025-07-22 00:02:55.839103+00 f t G DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5025 +4149 2025-07-22 01:05:43.695018+00 2025-07-22 01:05:43.695025+00 f t Jano DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5027 +4150 2025-07-22 01:30:34.006511+00 2025-07-22 01:30:34.006524+00 f t Draco DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5028 +3839 2025-07-15 17:03:03.805987+00 2025-07-15 17:03:03.806002+00 f t Lana CAT \N 4.00 0.00 f \N \N 2025-07-21 \N \N FEMALE \N \N f \N \N 4620 +4151 2025-07-22 02:52:16.411973+00 2025-07-22 02:52:16.411982+00 f t Felipe CAT \N 2.20 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5029 +4152 2025-07-22 03:07:52.593249+00 2025-07-22 03:07:52.59326+00 f t renato CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5030 +4153 2025-07-22 03:09:29.570471+00 2025-07-22 03:09:29.57048+00 f t renato CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5030 +4154 2025-07-22 03:12:02.599516+00 2025-07-22 03:12:02.599528+00 f t renato CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5030 +4155 2025-07-22 03:43:09.227233+00 2025-07-22 03:43:09.227241+00 f t Frida DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5031 +4156 2025-07-22 05:47:35.02749+00 2025-07-22 05:47:35.0275+00 f t Lo a DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5032 +4157 2025-07-22 05:48:00.722543+00 2025-07-22 05:48:00.722553+00 f t lola DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5032 +4158 2025-07-22 06:59:22.827544+00 2025-07-22 06:59:22.827553+00 f t taylor CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5033 +4159 2025-07-22 09:08:55.370439+00 2025-07-22 09:08:55.370447+00 f t Moli DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5035 +4160 2025-07-22 12:05:54.016548+00 2025-07-22 12:05:54.01656+00 f t Zuco DOG \N 33.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5038 +4161 2025-07-22 12:41:36.97261+00 2025-07-22 12:41:36.972618+00 f t Luna CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5040 +4100 2025-07-21 00:29:28.571737+00 2025-07-21 00:29:28.571748+00 f t Colito CAT \N 4.00 0.00 f \N \N 2025-07-21 \N \N MALE \N \N f \N \N 4954 +4162 2025-07-22 14:31:06.913891+00 2025-07-22 14:31:06.913904+00 f t c DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5041 +4163 2025-07-22 14:31:24.616878+00 2025-07-22 14:31:24.61689+00 f t asd DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5041 +4164 2025-07-22 14:41:00.410412+00 2025-07-22 14:41:00.410421+00 f t Maya DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5042 +4165 2025-07-22 15:21:49.427797+00 2025-07-22 15:21:49.427806+00 f t Tobi DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5043 +4166 2025-07-22 15:22:12.132976+00 2025-07-22 15:22:12.132987+00 f t Belli DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5044 +4167 2025-07-22 15:43:17.904267+00 2025-07-22 15:43:17.904275+00 f t Nilo DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5046 +4168 2025-07-22 15:59:32.831918+00 2025-07-22 15:59:32.831925+00 f t Pepe CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5048 +4169 2025-07-22 16:09:58.183548+00 2025-07-22 16:09:58.183557+00 f t Monga CAT \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5049 +4170 2025-07-22 16:14:09.528747+00 2025-07-22 16:14:09.528758+00 f t Menta DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5050 +4171 2025-07-22 16:14:57.074106+00 2025-07-22 16:14:57.074116+00 f t Canela DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5050 +4172 2025-07-22 16:33:16.871799+00 2025-07-22 16:33:16.871808+00 f t Luna DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5052 +4173 2025-07-22 16:38:13.583388+00 2025-07-22 16:38:13.583401+00 f t Suri CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5053 +4174 2025-07-22 16:40:08.604391+00 2025-07-22 16:40:08.604402+00 f t Bruna CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5053 +4175 2025-07-22 16:40:42.389365+00 2025-07-22 16:40:42.389374+00 f t Luna CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5053 +4176 2025-07-22 16:57:50.720603+00 2025-07-22 16:57:50.720613+00 f t Lupe CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5055 +4177 2025-07-22 17:33:35.835369+00 2025-07-22 17:33:35.835378+00 f t Duke DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5057 +5989 2025-08-26 02:15:56.642302+00 2025-08-26 02:15:56.642314+00 f t Camilo DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7301 +4179 2025-07-22 17:34:17.382349+00 2025-07-22 17:34:17.382356+00 f t Perri DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5059 +4180 2025-07-22 18:08:59.784107+00 2025-07-22 18:08:59.784119+00 f t Rayo CAT \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5061 +4181 2025-07-22 18:20:21.876356+00 2025-07-22 18:20:21.876364+00 f t Almendra CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5062 +4182 2025-07-22 19:18:00.883554+00 2025-07-22 19:18:00.883564+00 f t Kiara DOG \N 26.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5067 +4183 2025-07-22 19:20:20.053128+00 2025-07-22 19:20:20.053138+00 f t Kiara DOG \N 26.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5068 +4185 2025-07-22 20:04:14.941506+00 2025-07-22 20:04:14.941516+00 f t S DOG \N 8.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5070 +6034 2025-08-27 02:15:19.168753+00 2025-08-27 02:15:19.168767+00 f t Iorio DOG \N 29.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7347 +4193 2025-07-22 23:42:11.392446+00 2025-07-22 23:42:11.392453+00 f t Gunner Wood DOG 15 24.00 0.00 t \N 2025-07-23 \N \N MALE \N f 2 113 5081 +4187 2025-07-22 21:25:47.434029+00 2025-07-22 21:25:47.434037+00 f t Moro CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5073 +4188 2025-07-22 21:49:51.89444+00 2025-07-22 21:49:51.894449+00 f t Bernabé DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5075 +4189 2025-07-22 21:53:35.388286+00 2025-07-22 21:53:35.388294+00 f t Negrito Messina DOG \N 19.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5076 +4190 2025-07-22 21:55:14.346532+00 2025-07-22 21:55:14.346541+00 f t Tita CAT \N 4.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5077 +4192 2025-07-22 23:40:12.404593+00 2025-07-22 23:40:12.404603+00 f t Nacho DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5080 +4194 2025-07-22 23:47:22.624046+00 2025-07-22 23:47:22.624057+00 f t Indi CAT \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5082 +4195 2025-07-23 00:05:00.127093+00 2025-07-23 00:05:00.127104+00 f t Colity CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5084 +4196 2025-07-23 00:08:33.89791+00 2025-07-23 00:08:33.897919+00 f t Moka DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5085 +4198 2025-07-23 01:02:27.350632+00 2025-07-23 01:02:27.350643+00 f t Brando DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5088 +4199 2025-07-23 02:13:13.134323+00 2025-07-23 02:13:13.134332+00 f t Aurah CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5090 +4200 2025-07-23 02:32:43.390678+00 2025-07-23 02:32:43.390688+00 f t Jeyson DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5091 +4201 2025-07-23 02:40:14.022463+00 2025-07-23 02:40:14.022472+00 f t Nala CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5092 +4202 2025-07-23 02:56:35.565936+00 2025-07-23 02:56:35.565946+00 f t Oreo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5093 +4203 2025-07-23 03:34:46.645807+00 2025-07-23 03:34:46.645819+00 f t Lu DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5096 +4204 2025-07-23 03:52:20.979399+00 2025-07-23 03:52:20.979412+00 f t Pelusa DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5097 +4205 2025-07-23 03:57:19.599421+00 2025-07-23 03:57:19.599429+00 f t Suri DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5098 +4206 2025-07-23 04:49:54.708141+00 2025-07-23 04:49:54.708149+00 f t MAKY DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5100 +4207 2025-07-23 04:54:29.090519+00 2025-07-23 04:54:29.090528+00 f t TOMY CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5100 +4208 2025-07-23 04:56:51.137182+00 2025-07-23 04:56:51.137194+00 f t CHARLY CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5100 +4209 2025-07-23 08:10:21.063067+00 2025-07-23 08:10:21.063077+00 f t Tango DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5102 +4210 2025-07-23 08:53:39.189088+00 2025-07-23 08:53:39.189097+00 f t Azucar CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5104 +4211 2025-07-23 08:54:51.871286+00 2025-07-23 08:54:51.871295+00 f t Salem CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5104 +4212 2025-07-23 10:22:10.812969+00 2025-07-23 10:22:10.812978+00 f t Valentina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5106 +4214 2025-07-23 11:43:59.554907+00 2025-07-23 11:43:59.554915+00 f t Memé DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5108 +4215 2025-07-23 11:46:15.535808+00 2025-07-23 11:46:15.535817+00 f t Memé CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5109 +4216 2025-07-23 11:56:38.260056+00 2025-07-23 11:56:38.260069+00 f t Suri DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5110 +4217 2025-07-23 12:12:56.871914+00 2025-07-23 12:12:56.871922+00 f t Citra DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5111 +4146 2025-07-21 23:57:57.66451+00 2025-07-21 23:57:57.664523+00 f t Gali DOG \N 22.00 0.00 t \N \N 2025-07-22 \N \N MALE \N \N f \N \N 5024 +4184 2025-07-22 19:52:58.310796+00 2025-07-22 19:52:58.310803+00 f t Felicity CAT 8 0.00 0.00 t \N 2025-08-19 \N \N FEMALE \N f \N 1026 2144 +4218 2025-07-23 13:42:12.692995+00 2025-07-23 13:42:12.693004+00 f t toro CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5113 +4219 2025-07-23 13:49:01.539516+00 2025-07-23 13:49:01.539529+00 f t Mimu CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5115 +4197 2025-07-23 00:32:22.193692+00 2025-07-23 00:32:22.193699+00 f t Zsazsa DOG 14 10.00 0.00 t \N 2025-07-23 \N \N FEMALE \N f 1 1208 5087 +4221 2025-07-23 14:44:11.113941+00 2025-07-23 14:44:11.113954+00 f t Aly CAT \N 4.00 20.00 t no 2014-05-23 \N \N \N FEMALE - \N f \N \N 5071 +3880 2025-07-16 15:42:12.638172+00 2025-07-16 15:42:12.63818+00 f t India DOG 11 25.00 0.00 t \N 2025-07-22 \N \N FEMALE \N f 3 1026 4673 +4191 2025-07-22 22:14:11.06844+00 2025-07-22 22:14:11.068451+00 f t NN DOG \N 0.00 0.00 f \N 2025-07-23 \N \N MALE \N f 1 1208 5078 +4213 2025-07-23 11:36:07.27438+00 2025-07-23 11:36:07.274389+00 f t Amanda CAT \N 4.00 0.00 f \N \N 2025-07-24 \N \N FEMALE \N \N f \N \N 5107 +4220 2025-07-23 14:44:10.881433+00 2025-07-23 14:44:10.881445+00 f t Aly CAT \N 4.00 20.00 t no 2014-05-23 2025-08-15 \N \N FEMALE - \N f \N \N 5071 +4222 2025-07-23 14:49:56.632928+00 2025-07-23 14:49:56.632941+00 f t Manchita CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5117 +4223 2025-07-23 14:51:26.056714+00 2025-07-23 14:51:26.056727+00 f t Homero DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5118 +4224 2025-07-23 14:58:00.091419+00 2025-07-23 14:58:00.091428+00 f t Nikarda DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5119 +4225 2025-07-23 15:55:43.596709+00 2025-07-23 15:55:43.596719+00 f t Mimu CAT 16 5.00 0.00 t \N 2025-07-29 \N \N FEMALE \N f \N 1026 5120 +4226 2025-07-23 16:22:22.273591+00 2025-07-23 16:22:22.273604+00 f t Baco DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5122 +4227 2025-07-23 16:26:00.186557+00 2025-07-23 16:26:00.186566+00 f t Rogelio CAT \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5123 +4228 2025-07-23 17:55:54.848943+00 2025-07-23 17:55:54.848953+00 f t Sirio CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5124 +4229 2025-07-23 18:42:49.482383+00 2025-07-23 18:42:49.482392+00 f t Pampa DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5126 +4230 2025-07-23 21:30:03.532718+00 2025-07-23 21:30:03.532734+00 f t Cali DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5130 +4231 2025-07-23 21:38:19.929845+00 2025-07-23 21:38:19.929856+00 f t Bruno DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5132 +4232 2025-07-23 21:39:15.848205+00 2025-07-23 21:39:15.848219+00 f t Tamy DOG \N 80.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5133 +4233 2025-07-23 21:44:35.6795+00 2025-07-23 21:44:35.679509+00 f t Bruno DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5134 +4234 2025-07-23 21:58:48.177864+00 2025-07-23 21:58:48.177872+00 f t Kai CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5136 +4235 2025-07-23 22:08:44.8801+00 2025-07-23 22:08:44.880108+00 f t UNO CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5140 +4236 2025-07-23 22:10:59.481678+00 2025-07-23 22:10:59.481687+00 f t Uno DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5141 +4237 2025-07-23 22:11:16.101097+00 2025-07-23 22:11:16.101109+00 f t Uno CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5141 +4238 2025-07-23 22:30:37.039008+00 2025-07-23 22:30:37.039017+00 f t Pp CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5142 +4239 2025-07-24 00:25:40.276453+00 2025-07-24 00:25:40.276463+00 f t Ares DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5145 +4240 2025-07-24 00:39:31.367942+00 2025-07-24 00:39:31.367955+00 f t Apolo CAT \N 4.90 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5146 +4241 2025-07-24 01:49:49.828041+00 2025-07-24 01:49:49.830484+00 f t Gloria Godoy DOG \N 28.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5147 +4242 2025-07-24 02:54:09.939401+00 2025-07-24 02:54:09.939413+00 f t Kira DOG \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5148 +4243 2025-07-24 03:50:23.01882+00 2025-07-24 03:50:23.018829+00 f t Perli CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5150 +4244 2025-07-24 04:07:17.600268+00 2025-07-24 04:07:17.60028+00 f t cata DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5151 +4245 2025-07-24 05:07:18.465812+00 2025-07-24 05:07:18.465825+00 f t Madidon DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5152 +879 2025-04-29 15:09:21.252474+00 2025-04-29 15:09:21.252482+00 f t Ringo DOG \N 8.00 0.00 t \N 2013-05-01 \N \N \N MALE \N \N f \N \N 754 +4246 2025-07-24 10:29:12.980337+00 2025-07-24 10:29:12.980346+00 f t Sakura CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5153 +4247 2025-07-24 10:53:19.446009+00 2025-07-24 10:53:19.446022+00 f t Thor DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5154 +4248 2025-07-24 11:03:44.122329+00 2025-07-24 11:03:44.122338+00 f t Thor DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5155 +4249 2025-07-24 11:24:29.655359+00 2025-07-24 11:24:29.655372+00 f t Saya DOG \N 26.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5156 +5990 2025-08-26 02:32:39.553315+00 2025-08-26 02:32:39.553324+00 f t Caballito DOG \N 28.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7303 +4251 2025-07-24 12:53:45.196791+00 2025-07-24 12:53:45.196804+00 f t KING DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5162 +4252 2025-07-24 13:36:09.774797+00 2025-07-24 13:36:09.774809+00 f t Freddy Morlan CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5164 +488 2025-02-03 21:09:16.128262+00 2025-02-03 21:09:16.128272+00 f t Beaux DOG 8 37.50 0.00 t \N 2025-07-31 \N \N MALE \N f 54 111 409 +4256 2025-07-24 15:06:31.380786+00 2025-07-24 15:06:31.380794+00 f t Morena chelsea DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5172 +4257 2025-07-24 15:12:48.884369+00 2025-07-24 15:12:48.884379+00 f t Mia DOG \N 3.70 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5173 +4258 2025-07-24 15:17:32.434882+00 2025-07-24 15:17:32.43489+00 f t Picachu DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5174 +4261 2025-07-24 17:18:48.706786+00 2025-07-24 17:18:48.706796+00 f t Pipi DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5179 +4262 2025-07-24 17:24:26.465439+00 2025-07-24 17:24:26.465447+00 f t Tatita DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5181 +4186 2025-07-22 20:23:48.530376+00 2025-07-22 20:23:48.530382+00 f t Milo CAT 3 6.00 0.00 t \N 2025-08-15 \N \N MALE \N f 27 1208 5071 +4263 2025-07-24 18:32:49.646706+00 2025-07-24 18:32:49.646714+00 f t Aurora DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5183 +4264 2025-07-24 18:57:52.592502+00 2025-07-24 18:57:52.592515+00 f t pomelo DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5186 +4265 2025-07-24 19:30:25.539871+00 2025-07-24 19:30:25.539881+00 f t Luna DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5188 +4267 2025-07-24 19:39:18.436113+00 2025-07-24 19:39:18.436123+00 f t Aurora CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5190 +4268 2025-07-24 19:57:05.549708+00 2025-07-24 19:57:05.54972+00 f t Chuchi DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5194 +4269 2025-07-24 19:59:53.109873+00 2025-07-24 19:59:53.109886+00 f t Pipo CAT \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5195 +4271 2025-07-24 21:30:15.433743+00 2025-07-24 21:30:15.433753+00 f t Gordo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5198 +4272 2025-07-24 21:43:54.157087+00 2025-07-24 21:43:54.157095+00 f t Yatran CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5199 +4273 2025-07-24 21:48:28.558251+00 2025-07-24 21:48:28.558259+00 f t Yatran CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5200 +4274 2025-07-24 21:48:51.835179+00 2025-07-24 21:48:51.835192+00 f t Perseo DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5201 +4275 2025-07-24 21:58:16.025684+00 2025-07-24 21:58:16.025693+00 f t Miró CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5202 +4276 2025-07-24 22:00:01.409028+00 2025-07-24 22:00:01.409041+00 f t Sienna DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5203 +4278 2025-07-24 23:08:50.742668+00 2025-07-24 23:08:50.742677+00 f t Luna DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5208 +4279 2025-07-24 23:30:50.805943+00 2025-07-24 23:30:50.805954+00 f t Tork DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5209 +4280 2025-07-25 00:23:33.841605+00 2025-07-25 00:23:33.841614+00 f t Anuk DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5210 +4281 2025-07-25 00:29:08.624535+00 2025-07-25 00:29:08.624544+00 f t Anuk Chirino DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5211 +4291 2025-07-25 13:34:02.526439+00 2025-07-25 13:34:02.526448+00 f t Chacho DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5226 +4282 2025-07-25 01:29:52.982985+00 2025-07-25 01:29:52.982996+00 f t LUNA DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5212 +4277 2025-07-24 22:20:58.931043+00 2025-07-24 22:20:58.931055+00 f t Antony DOG 11 45.00 0.00 f \N 2025-07-24 \N \N MALE \N f 63 1208 5204 +4283 2025-07-25 04:02:04.646626+00 2025-07-25 04:02:04.64664+00 f t Milo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5215 +4284 2025-07-25 08:45:52.269536+00 2025-07-25 08:45:52.269545+00 f t Maríachi DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5217 +4286 2025-07-25 09:33:22.296016+00 2025-07-25 09:33:22.296027+00 f t Tina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5219 +4287 2025-07-25 10:13:22.312797+00 2025-07-25 10:13:22.312805+00 f t Violeta CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5221 +4288 2025-07-25 12:22:53.235558+00 2025-07-25 12:22:53.235572+00 f t Benito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5223 +4270 2025-07-24 20:38:57.400328+00 2025-07-24 20:38:57.400336+00 f t Dobby DOG 12 20.00 0.00 f \N 2025-07-25 \N \N \N \N f 7 1026 5196 +4289 2025-07-25 12:38:41.942459+00 2025-07-25 12:38:41.942467+00 f t Otto DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5224 +4290 2025-07-25 12:41:25.898915+00 2025-07-25 12:41:25.898924+00 f t Brandy DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5225 +4250 2025-07-24 11:27:09.353677+00 2025-07-24 11:27:09.353691+00 f t Saya DOG 0 26.00 0.00 t \N 2025-07-24 \N \N FEMALE \N t \N 113 5157 +4266 2025-07-24 19:35:25.936274+00 2025-07-24 19:35:25.936281+00 f t Nilo DOG 0 7.00 0.00 f \N 2025-08-03 \N \N MALE \N f 3 113 5189 +4178 2025-07-22 17:33:36.03252+00 2025-07-22 17:33:36.032526+00 f t Nicolino Tomatino Muzzarello CAT 14 4.00 0.00 t \N 2025-07-23 \N \N MALE \N f \N 1026 5058 +4293 2025-07-25 14:36:37.56269+00 2025-07-25 14:36:37.562702+00 f t Homero CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5229 +4294 2025-07-25 14:37:00.147489+00 2025-07-25 14:37:00.1475+00 f t Sami DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5230 +4295 2025-07-25 14:42:52.029057+00 2025-07-25 14:42:52.029066+00 f t Nelson DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5231 +4255 2025-07-24 14:54:12.975303+00 2025-07-24 14:54:12.975314+00 f t Felipe DOG 5 11.00 0.00 f \N 2025-07-24 \N \N MALE \N f 5 1026 5170 +4292 2025-07-25 13:56:24.575452+00 2025-07-25 13:56:24.575458+00 f t Chacho DOG 6 30.00 0.00 t \N 2025-07-25 \N \N MALE \N f 62 1026 5227 +4260 2025-07-24 16:05:49.51235+00 2025-07-24 16:05:49.512357+00 f t Princess CAT \N 0.00 0.00 t \N 2025-07-26 \N \N FEMALE \N f \N 1026 5177 +4253 2025-07-24 14:46:37.072454+00 2025-07-24 14:46:37.07246+00 f t Humo CAT 7 5.00 0.00 t \N 2025-07-28 \N \N MALE \N f \N 1026 5168 +4254 2025-07-24 14:46:57.493674+00 2025-07-24 14:46:57.49368+00 f t Raya CAT 7 5.00 0.00 t \N 2025-07-28 \N \N FEMALE \N f \N 1026 5168 +4296 2025-07-25 14:51:06.84057+00 2025-07-25 14:51:06.840584+00 f t Fueguina DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5232 +4297 2025-07-25 15:09:36.37213+00 2025-07-25 15:09:36.372139+00 f t FUEGUINA CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5233 +4298 2025-07-25 15:10:35.299992+00 2025-07-25 15:10:35.300001+00 f t Uru CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5233 +4299 2025-07-25 15:16:37.124204+00 2025-07-25 15:16:37.124215+00 f t Triton DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5234 +962 2025-05-08 14:11:49.000132+00 2025-05-08 14:11:49.00014+00 f t Pelu DOG 13 12.00 0.00 t \N 2025-07-11 \N \N \N toma contal y geriox. \N f \N 112 854 +4300 2025-07-25 15:21:56.063171+00 2025-07-25 15:21:56.0632+00 f t Olivia CAT \N 300.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5235 +4301 2025-07-25 15:37:44.554747+00 2025-07-25 15:37:44.554755+00 f t chuni CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5236 +4303 2025-07-25 15:52:55.799484+00 2025-07-25 15:52:55.799494+00 f t Simom CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5238 +4304 2025-07-25 15:57:53.55967+00 2025-07-25 15:57:53.55968+00 f t Luno CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5238 +4308 2025-07-25 16:22:47.023486+00 2025-07-25 16:22:47.023494+00 f t Edison CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5241 +4309 2025-07-25 16:27:45.069222+00 2025-07-25 16:27:45.06923+00 f t Roko DOG \N 70.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5242 +4310 2025-07-25 16:41:59.438146+00 2025-07-25 16:41:59.43816+00 f t Pompom DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5243 +4311 2025-07-25 16:42:58.194596+00 2025-07-25 16:42:58.194605+00 f t Mirella DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5243 +4312 2025-07-25 16:43:20.563474+00 2025-07-25 16:43:20.563482+00 f t Mafalda DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5243 +4313 2025-07-25 16:52:06.073856+00 2025-07-25 16:52:06.073871+00 f t Kira DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5244 +4314 2025-07-25 17:21:47.427242+00 2025-07-25 17:21:47.42725+00 f t Nico DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5247 +5991 2025-08-26 02:55:08.772874+00 2025-08-26 02:55:08.772885+00 f t Coquito DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7304 +4315 2025-07-25 17:45:45.489606+00 2025-07-25 17:45:45.489615+00 f t Olivia CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5248 +8502 2025-10-08 00:27:36.768217+00 2025-10-08 00:27:36.768226+00 f t Rita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10241 +4317 2025-07-25 19:35:07.537699+00 2025-07-25 19:35:07.537708+00 f t Oli DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5250 +4318 2025-07-25 20:34:01.429724+00 2025-07-25 20:34:01.429735+00 f t Simba CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5251 +4319 2025-07-25 21:30:55.500439+00 2025-07-25 21:30:55.500451+00 f t Daisy DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5252 +4320 2025-07-25 21:49:21.902744+00 2025-07-25 21:49:21.902752+00 f t Luna DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5253 +4322 2025-07-25 23:26:52.839747+00 2025-07-25 23:26:52.839756+00 f t Foquito Borro DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5256 +4323 2025-07-25 23:27:15.246817+00 2025-07-25 23:27:15.246825+00 f t Uma DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5257 +4324 2025-07-25 23:29:25.192153+00 2025-07-25 23:29:25.192162+00 f t Tito CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5258 +4326 2025-07-26 00:03:10.623985+00 2025-07-26 00:03:10.623994+00 f t Sofi CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5260 +4327 2025-07-26 00:06:25.282009+00 2025-07-26 00:06:25.28202+00 f t Mochi CAT \N 3.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5261 +4328 2025-07-26 00:32:40.399042+00 2025-07-26 00:32:40.399052+00 f t Tobi DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5262 +4329 2025-07-26 00:39:09.870317+00 2025-07-26 00:39:09.870331+00 f t Luna DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5263 +4330 2025-07-26 00:39:49.397012+00 2025-07-26 00:39:49.397021+00 f t Zoe DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5263 +1967 2025-06-04 14:02:45.977264+00 2025-06-04 14:02:45.977274+00 f t Floky CAT 3 6.50 0.00 f \N 2025-07-25 \N \N MALE \N f \N 1026 2144 +4331 2025-07-26 01:57:13.488821+00 2025-07-26 01:57:13.488829+00 f t Mora CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5264 +4332 2025-07-26 01:58:28.377122+00 2025-07-26 01:58:28.37713+00 f t Kiwi CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5264 +4333 2025-07-26 02:04:10.556646+00 2025-07-26 02:04:10.556655+00 f t Alejandra Gomez CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5265 +4334 2025-07-26 02:26:46.555514+00 2025-07-26 02:26:46.555523+00 f t Pompon DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5266 +4335 2025-07-26 06:07:26.047381+00 2025-07-26 06:07:26.047393+00 f t Ciruela CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5267 +4336 2025-07-26 10:03:22.248174+00 2025-07-26 10:03:22.248182+00 f t Mario DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5269 +4337 2025-07-26 11:48:54.916654+00 2025-07-26 11:48:54.916665+00 f t Sugus CAT \N 3.80 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5271 +4338 2025-07-26 12:20:12.224942+00 2025-07-26 12:20:12.224952+00 f t Nano DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5272 +4339 2025-07-26 12:25:10.297662+00 2025-07-26 12:25:10.297675+00 f t Zoe CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5273 +4340 2025-07-26 12:44:30.19349+00 2025-07-26 12:44:30.193499+00 f t Felipe CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5275 +4342 2025-07-26 13:33:34.576834+00 2025-07-26 13:33:34.576843+00 f t Coco CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5279 +4343 2025-07-26 13:37:04.321411+00 2025-07-26 13:37:04.321422+00 f t Draco DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5280 +4345 2025-07-26 14:32:36.193393+00 2025-07-26 14:32:36.193402+00 f t Raul Pacho Nichlison CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5282 +4346 2025-07-26 14:54:58.697185+00 2025-07-26 14:54:58.697194+00 f t Robin DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5285 +4347 2025-07-26 15:01:53.331229+00 2025-07-26 15:01:53.331237+00 f t Pancha DOG \N 7.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5286 +4348 2025-07-26 15:05:39.208072+00 2025-07-26 15:05:39.208081+00 f t Amanda DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5287 +4349 2025-07-26 16:10:00.666525+00 2025-07-26 16:10:00.666535+00 f t Simon DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5290 +6035 2025-08-27 02:34:48.744862+00 2025-08-27 02:34:48.744872+00 f t Marcela Ramos DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7349 +4351 2025-07-26 16:39:00.284524+00 2025-07-26 16:39:00.284536+00 f t Frida DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5293 +4352 2025-07-26 16:44:06.561922+00 2025-07-26 16:44:06.561931+00 f t Pochi DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5294 +4353 2025-07-26 16:46:59.166809+00 2025-07-26 16:46:59.166818+00 f t Teo CAT \N 4.30 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5295 +4354 2025-07-26 16:47:06.943206+00 2025-07-26 16:47:06.943219+00 f t Uma DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5296 +4355 2025-07-26 18:06:05.357478+00 2025-07-26 18:06:05.357488+00 f t Izzie CAT \N 8.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5297 +4356 2025-07-26 18:17:18.44865+00 2025-07-26 18:17:18.448658+00 f t Pluton CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5298 +4360 2025-07-26 20:14:32.514906+00 2025-07-26 20:14:32.514914+00 f t Cindy DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5304 +4344 2025-07-26 13:51:34.704308+00 2025-07-26 13:51:34.704317+00 f t Reina DOG \N 9.00 0.00 f \N \N 2025-07-26 \N \N FEMALE \N \N f \N \N 5281 +4363 2025-07-26 22:26:17.412671+00 2025-07-26 22:26:17.41268+00 f t Lola DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5310 +4325 2025-07-25 23:49:14.692837+00 2025-07-25 23:49:14.692843+00 f t Manchita CAT 18 1.00 0.00 t \N 2025-07-26 \N \N FEMALE \N f \N 113 5259 +4357 2025-07-26 18:42:26.822615+00 2025-07-26 18:42:26.822624+00 f t Draco CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5299 +4358 2025-07-26 18:50:29.408587+00 2025-07-26 18:50:29.4086+00 f t Mojito DOG \N 6.20 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5300 +4359 2025-07-26 19:35:47.796577+00 2025-07-26 19:35:47.796588+00 f t Dulce CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5301 +4321 2025-07-25 22:08:36.33122+00 2025-07-25 22:08:36.331226+00 f t Tito CAT 4 7.00 0.00 t \N 2025-07-26 \N \N MALE Toma ciclosporina al 5, y cuando quieren hacerle algo se pone a la defensiva \N f 29 113 5254 +6057 2025-08-27 17:38:29.985214+00 2025-08-27 17:38:29.985227+00 f t Giaco CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7374 +4361 2025-07-26 20:44:41.740929+00 2025-07-26 20:44:41.740941+00 f t Salem CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5306 +4362 2025-07-26 21:02:43.851065+00 2025-07-26 21:02:43.851073+00 f t Florcita DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5307 +4316 2025-07-25 18:12:57.186293+00 2025-07-25 18:12:57.186299+00 f t Pumba DOG 11 11.00 0.00 t \N 2025-07-31 \N \N \N \N f 5 1026 5249 +4364 2025-07-26 22:40:50.939833+00 2025-07-26 22:40:50.939847+00 f t Torito DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5311 +4341 2025-07-26 13:23:41.799738+00 2025-07-26 13:23:41.799746+00 f t Greta DOG \N 9.00 40.00 f A las pulgas 2017-03-17 2025-07-26 \N \N FEMALE \N \N f \N \N 5278 +4285 2025-07-25 08:56:07.976729+00 2025-07-25 08:56:07.976744+00 f t Uma CAT \N 3.00 0.00 f \N \N 2025-07-25 \N \N FEMALE \N \N f \N \N 5218 +4306 2025-07-25 16:09:37.081716+00 2025-07-25 16:09:37.081724+00 f t Simón CAT \N 6.00 0.00 f \N \N 2025-08-01 \N \N MALE \N \N f \N \N 5240 +4305 2025-07-25 15:59:57.244401+00 2025-07-25 15:59:57.24441+00 f t Benito CAT \N 4.00 0.00 t \N 2025-08-20 \N \N \N \N f \N 1026 5239 +4307 2025-07-25 16:10:35.553824+00 2025-07-25 16:10:35.553833+00 f t Luno CAT \N 6.00 0.00 f \N \N 2025-08-01 \N \N MALE \N \N f \N \N 5240 +4302 2025-07-25 15:42:24.792552+00 2025-07-25 15:42:24.792561+00 f t Homero CAT 11 10.00 0.00 t \N 2025-08-02 \N \N MALE \N f \N 1026 5237 +6067 2025-08-27 21:08:53.99776+00 2025-08-27 21:08:53.997768+00 f t Pipi CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7387 +6071 2025-08-27 22:39:23.231267+00 2025-08-27 22:39:23.231278+00 f t Toto DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7390 +4365 2025-07-27 00:19:17.837357+00 2025-07-27 00:19:17.837371+00 f t Pepa DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5314 +4366 2025-07-27 00:22:51.687226+00 2025-07-27 00:22:51.687239+00 f t Coquito CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5315 +4367 2025-07-27 03:11:21.859072+00 2025-07-27 03:11:21.859084+00 f t Russa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5318 +4368 2025-07-27 03:53:19.374941+00 2025-07-27 03:53:19.374953+00 f t Pedro DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5319 +4369 2025-07-27 04:47:34.574467+00 2025-07-27 04:47:34.574477+00 f t Apolo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5320 +4370 2025-07-27 06:01:19.663841+00 2025-07-27 06:01:19.66385+00 f t Evon DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5321 +4371 2025-07-27 09:50:03.764029+00 2025-07-27 09:50:03.764044+00 f t Nino DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5323 +4372 2025-07-27 13:05:36.743171+00 2025-07-27 13:05:36.743185+00 f t Ivan DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5325 +4373 2025-07-27 13:21:08.012999+00 2025-07-27 13:21:08.013011+00 f t Alfalfa DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5326 +4374 2025-07-27 14:14:28.008328+00 2025-07-27 14:14:28.008337+00 f t Yani jacinto Jacinto DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5327 +4375 2025-07-27 14:17:26.742469+00 2025-07-27 14:17:26.742479+00 f t Maguie DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5328 +5992 2025-08-26 03:35:04.581294+00 2025-08-26 03:35:04.58131+00 t t Lia DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7305 +4377 2025-07-27 14:52:39.189639+00 2025-07-27 14:52:39.189648+00 f t Soike DOG \N 37.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5330 +4378 2025-07-27 14:53:37.783849+00 2025-07-27 14:53:37.783858+00 f t Pity CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5331 +4379 2025-07-27 14:56:04.172874+00 2025-07-27 14:56:04.172883+00 f t Pity CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5332 +4391 2025-07-27 18:42:31.237885+00 2025-07-27 18:42:31.237897+00 f t Tilo DOG \N 5.00 0.00 f \N \N 2025-07-27 \N \N MALE \N \N f \N \N 5348 +4350 2025-07-26 16:22:22.668657+00 2025-07-26 16:22:22.668668+00 f t Lobita DOG \N 23.00 0.00 f \N \N 2025-07-27 \N \N FEMALE \N \N f \N \N 5292 +4380 2025-07-27 15:30:33.572498+00 2025-07-27 15:30:33.57251+00 f t Pochita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5336 +4381 2025-07-27 15:55:36.012389+00 2025-07-27 15:55:36.012398+00 f t Cris CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5338 +4383 2025-07-27 17:03:28.631316+00 2025-07-27 17:03:28.631325+00 f t Adara DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5340 +4384 2025-07-27 17:27:39.918047+00 2025-07-27 17:27:39.918057+00 f t Roma CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5341 +4385 2025-07-27 17:39:59.177694+00 2025-07-27 17:39:59.177707+00 f t Benito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5343 +4418 2025-07-28 12:36:14.6862+00 2025-07-28 12:36:14.686208+00 f t Felix CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5390 +4419 2025-07-28 13:54:27.041483+00 2025-07-28 13:54:27.041491+00 f t Beni DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5393 +4387 2025-07-27 18:11:50.032167+00 2025-07-27 18:11:50.032176+00 f t tyler DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5344 +4388 2025-07-27 18:17:50.392391+00 2025-07-27 18:17:50.392403+00 f t Umma DOG \N 45.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5345 +4389 2025-07-27 18:33:37.193958+00 2025-07-27 18:33:37.193967+00 f t Tilo DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5346 +4390 2025-07-27 18:39:57.634751+00 2025-07-27 18:39:57.63476+00 f t Tilo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5347 +4392 2025-07-27 20:25:00.004903+00 2025-07-27 20:25:00.004911+00 f t Fueguina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5350 +4393 2025-07-27 20:42:51.180012+00 2025-07-27 20:42:51.18002+00 f t Shanti CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5352 +4394 2025-07-27 21:38:39.538233+00 2025-07-27 21:38:39.538243+00 f t Fluke DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5357 +4395 2025-07-27 22:10:25.674385+00 2025-07-27 22:10:25.674395+00 f t kala DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5358 +4396 2025-07-27 22:11:05.308+00 2025-07-27 22:11:05.308013+00 f t lauraploit DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5359 +4397 2025-07-27 22:31:38.585398+00 2025-07-27 22:31:38.585408+00 f t Fueguina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5360 +4386 2025-07-27 17:40:25.018994+00 2025-07-27 17:40:25.019001+00 f t Poli DOG 7 20.00 0.00 t \N 2025-07-27 \N \N FEMALE \N f 1 1208 5342 +6036 2025-08-27 02:39:01.177723+00 2025-08-27 02:39:01.177735+00 f t Iorio DOG \N 29.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7350 +4398 2025-07-27 23:36:30.158093+00 2025-07-27 23:36:30.158103+00 f t Cayetano DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5362 +4399 2025-07-27 23:57:24.260324+00 2025-07-27 23:57:24.260333+00 f t Vito DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5363 +4400 2025-07-27 23:59:27.188443+00 2025-07-27 23:59:27.188452+00 f t Vito DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5364 +4401 2025-07-28 00:33:34.812933+00 2025-07-28 00:33:34.812942+00 f t Pulgui CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5365 +4402 2025-07-28 00:47:27.769008+00 2025-07-28 00:47:27.769017+00 f t Frank DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5366 +6058 2025-08-27 17:45:54.325448+00 2025-08-27 17:45:54.325461+00 f t Chloe CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7375 +4382 2025-07-27 16:56:35.411004+00 2025-07-27 16:56:35.411012+00 f t Maddie DOG \N 25.00 0.00 t \N \N 2025-07-28 \N \N FEMALE \N \N f \N \N 5339 +4403 2025-07-28 01:29:43.802429+00 2025-07-28 01:29:43.803053+00 f t Azul DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5368 +4404 2025-07-28 02:15:34.808843+00 2025-07-28 02:15:34.808857+00 f t Simona CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5371 +4405 2025-07-28 02:26:49.729628+00 2025-07-28 02:26:49.729638+00 f t Tom CAT \N 4.00 60.00 f \N 2024-02-12 2025-07-07 \N \N MALE \N \N f \N \N 4071 +4406 2025-07-28 02:33:30.176827+00 2025-07-28 02:33:30.176836+00 f t Camilo DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5373 +4407 2025-07-28 02:34:41.425974+00 2025-07-28 02:34:41.425985+00 f t Dominic DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5374 +4408 2025-07-28 02:41:16.252325+00 2025-07-28 02:41:16.252333+00 f t Jengibre CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5375 +4409 2025-07-28 02:50:45.552396+00 2025-07-28 02:50:45.552407+00 f t Lupo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5377 +4410 2025-07-28 03:45:46.160847+00 2025-07-28 03:45:46.160858+00 f t darwin DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5380 +4411 2025-07-28 03:52:01.887439+00 2025-07-28 03:52:01.887451+00 f t romeo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5381 +4412 2025-07-28 03:58:10.9122+00 2025-07-28 03:58:10.912209+00 f t romeo CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5382 +4413 2025-07-28 04:06:38.025092+00 2025-07-28 04:06:38.0251+00 f t ROMEO CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5383 +4414 2025-07-28 05:34:53.391196+00 2025-07-28 05:34:53.39121+00 f t apolo DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5384 +4415 2025-07-28 09:14:14.810468+00 2025-07-28 09:14:14.810481+00 f t Floryn Sandoval DOG \N 1.40 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5386 +4416 2025-07-28 11:57:58.092873+00 2025-07-28 11:57:58.092881+00 f t Rafa CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5388 +4420 2025-07-28 14:29:19.229599+00 2025-07-28 14:29:19.22961+00 f t Connor DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5394 +6068 2025-08-27 22:05:41.813044+00 2025-08-27 22:05:41.813054+00 f t Mirta CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7388 +4422 2025-07-28 14:52:29.885429+00 2025-07-28 14:52:29.885439+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5398 +4423 2025-07-28 14:53:00.164025+00 2025-07-28 14:53:00.164035+00 f t Test test CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5398 +4424 2025-07-28 14:53:21.237759+00 2025-07-28 14:53:21.237767+00 f t vacunación DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5399 +4425 2025-07-28 14:56:45.025609+00 2025-07-28 14:56:45.025621+00 f t TEST DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5400 +4426 2025-07-28 14:57:02.355481+00 2025-07-28 14:57:02.355493+00 f t Pepito DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5400 +4427 2025-07-28 14:57:28.818668+00 2025-07-28 14:57:28.818681+00 f t AgusTest DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5401 +4428 2025-07-28 14:58:13.227316+00 2025-07-28 14:58:13.227324+00 f t TestAgus DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5403 +4429 2025-07-28 14:58:17.586971+00 2025-07-28 14:58:17.58698+00 f t Leon DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5397 +4430 2025-07-28 14:58:33.775796+00 2025-07-28 14:58:33.775804+00 f t TestAgus DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5404 +4431 2025-07-28 15:19:01.213746+00 2025-07-28 15:19:01.213758+00 f t Ojotas CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5405 +4432 2025-07-28 15:28:17.97342+00 2025-07-28 15:28:17.973428+00 f t Maggie Britez DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5406 +4433 2025-07-28 15:29:36.850159+00 2025-07-28 15:29:36.850169+00 f t Sunce CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5407 +4434 2025-07-28 15:33:18.555737+00 2025-07-28 15:33:18.555745+00 f t Maggie Britez DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5409 +4435 2025-07-28 15:38:49.569101+00 2025-07-28 15:38:49.56911+00 f t Kiara DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5410 +4417 2025-07-28 11:59:52.949004+00 2025-07-28 11:59:52.949013+00 f t Tofu CAT \N 3.80 0.00 f \N \N 2025-07-28 \N \N MALE \N \N f \N \N 5389 +3470 2025-07-08 10:47:47.505156+00 2025-07-08 10:47:47.505166+00 f t Lula DOG 0 13.00 0.00 f \N 2025-08-12 \N \N FEMALE \N f \N 113 4163 +923 2025-05-05 19:25:36.555399+00 2025-05-05 19:25:36.555408+00 f t Dulce de Leche DOG 0 0.00 0.00 f \N 2025-08-01 \N \N FEMALE \N f 8 112 812 +6072 2025-08-27 22:39:35.038164+00 2025-08-27 22:39:35.038174+00 f t Gardel CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7391 +6075 2025-08-27 22:48:48.591062+00 2025-08-27 22:48:48.591072+00 f t Tallarin DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7393 +6078 2025-08-27 23:20:01.217164+00 2025-08-27 23:20:01.217177+00 f t Mirta CAT 2 3.00 0.00 t \N \N \N \N FEMALE \N f \N 114 7396 +4437 2025-07-28 16:11:15.572912+00 2025-07-28 16:11:15.572922+00 f t Astot DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5413 +4438 2025-07-28 16:42:00.16217+00 2025-07-28 16:42:00.162181+00 f t Matilda DOG \N 28.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5414 +4439 2025-07-28 16:49:35.039232+00 2025-07-28 16:49:35.039244+00 f t Clio CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5415 +4440 2025-07-28 16:55:09.84509+00 2025-07-28 16:55:09.845101+00 f t Gunner DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5417 +4441 2025-07-28 17:16:01.192207+00 2025-07-28 17:16:01.192216+00 f t pocho CAT \N 400.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5418 +4442 2025-07-28 17:17:00.144311+00 2025-07-28 17:17:00.14432+00 f t Pepe DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5419 +4443 2025-07-28 17:18:41.78243+00 2025-07-28 17:18:41.78244+00 f t Pepe DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5420 +4444 2025-07-28 17:38:03.222983+00 2025-07-28 17:38:03.222995+00 f t Rey DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5422 +4445 2025-07-28 17:49:34.666576+00 2025-07-28 17:49:34.666586+00 f t Donna DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5424 +4446 2025-07-28 17:50:12.468122+00 2025-07-28 17:50:12.468131+00 f t Drack CAT \N 0.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5424 +4447 2025-07-28 17:50:41.83511+00 2025-07-28 17:50:41.835119+00 f t Amora CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5424 +4448 2025-07-28 17:54:33.475442+00 2025-07-28 17:54:33.475451+00 f t Jagger DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5425 +4449 2025-07-28 17:54:54.103246+00 2025-07-28 17:54:54.103257+00 f t Jagger CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5425 +4450 2025-07-28 18:01:57.396202+00 2025-07-28 18:01:57.396211+00 f t Charlie DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5426 +4451 2025-07-28 18:11:29.400202+00 2025-07-28 18:11:29.400214+00 f t Rocky DOG \N 55.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5427 +4456 2025-07-28 18:22:02.257607+00 2025-07-28 18:22:02.257617+00 f t Rocky DOG \N 55.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5429 +4457 2025-07-28 19:16:43.570011+00 2025-07-28 19:16:43.570022+00 f t Shoby DOG \N 38.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5431 +4458 2025-07-28 19:26:36.62933+00 2025-07-28 19:26:36.629338+00 f t Kiki CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5432 +4459 2025-07-28 19:35:09.415062+00 2025-07-28 19:35:09.415072+00 f t Coco DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5433 +4460 2025-07-28 20:40:09.046436+00 2025-07-28 20:40:09.046448+00 f t Shurshill DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5435 +4461 2025-07-28 21:10:36.228862+00 2025-07-28 21:10:36.228871+00 f t Test DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5437 +4462 2025-07-28 21:21:35.796081+00 2025-07-28 21:21:35.796093+00 f t TEST DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5439 +4463 2025-07-28 21:36:21.348892+00 2025-07-28 21:36:21.3489+00 f t Zoe DOG \N 500.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5440 +4464 2025-07-28 21:53:16.629683+00 2025-07-28 21:53:16.629693+00 f t Amy CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5441 +4465 2025-07-28 22:02:08.029939+00 2025-07-28 22:02:08.029949+00 f t Simon DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5442 +4466 2025-07-28 22:06:09.894919+00 2025-07-28 22:06:09.894931+00 f t Simon DOG \N 5.00 40.00 t \N 2013-07-06 \N 2025-06-02 2025-06-02 MALE \N \N f \N \N 4604 +574 2025-02-22 21:26:22.385356+00 2025-02-22 21:26:22.385369+00 f t Apolo CAT 2 4.00 0.00 t 2022-09-21 2025-02-22 \N \N FEMALE No tomo ninguna medicacion\r\nNo, es cariñoso pero desconfiado \N f \N 114 484 +4469 2025-07-28 23:12:44.714498+00 2025-07-28 23:12:44.714509+00 f t Panqueque CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5447 +4470 2025-07-28 23:18:23.586336+00 2025-07-28 23:18:23.586349+00 f t Romeo DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5449 +4472 2025-07-29 00:12:06.895873+00 2025-07-29 00:12:06.895882+00 f t Elegante DOG \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5456 +4473 2025-07-29 01:41:20.231747+00 2025-07-29 01:41:20.23176+00 f t Mora DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5458 +4474 2025-07-29 01:46:23.416114+00 2025-07-29 01:46:23.416124+00 f t Abby DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5459 +4475 2025-07-29 01:50:13.744958+00 2025-07-29 01:50:13.744967+00 f t Lola DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5460 +4476 2025-07-29 02:11:19.95664+00 2025-07-29 02:11:19.95665+00 f t Lolo DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5461 +4477 2025-07-29 02:12:31.168024+00 2025-07-29 02:12:31.168033+00 f t Lola DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5461 +4478 2025-07-29 02:31:21.633039+00 2025-07-29 02:31:21.633051+00 f t Zito CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5463 +4479 2025-07-29 02:32:22.38096+00 2025-07-29 02:32:22.380971+00 f t Cirlot CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5463 +4480 2025-07-29 02:33:05.847195+00 2025-07-29 02:33:05.847208+00 f t Bizcochuelo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5463 +4481 2025-07-29 02:50:58.124322+00 2025-07-29 02:50:58.124332+00 f t Matilda CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5464 +4482 2025-07-29 02:57:21.526966+00 2025-07-29 02:57:21.526976+00 f t Matilda DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5465 +4483 2025-07-29 02:57:43.369901+00 2025-07-29 02:57:43.369912+00 f t Matilda CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5465 +4484 2025-07-29 03:03:54.061855+00 2025-07-29 03:03:54.061864+00 f t Matilda CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5466 +4485 2025-07-29 07:53:21.869665+00 2025-07-29 07:53:21.869674+00 f t Nina DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5467 +4486 2025-07-29 09:59:28.463883+00 2025-07-29 09:59:28.463892+00 f t Ciro DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5469 +5993 2025-08-26 03:35:25.917157+00 2025-08-26 03:35:25.917166+00 f t Lia CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7305 +4488 2025-07-29 12:47:14.59264+00 2025-07-29 12:47:14.592652+00 f t Petiso DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5478 +6037 2025-08-27 02:48:46.857723+00 2025-08-27 02:48:46.857733+00 f t Venus DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7351 +1510 2025-05-24 21:12:46.995121+00 2025-05-24 21:12:46.995131+00 f t Coco CAT 6 6.00 0.00 t 2019-01-09 2025-07-25 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál?: Sí, Urovier y hoy comenzó con amoxicilina con acido clavulanico\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce?: Sí, generalmente se asusta y se estresa. No es agresivo \N f 29 114 1555 +4491 2025-07-29 14:15:40.340784+00 2025-07-29 14:15:40.340832+00 f t Grisú CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5482 +4492 2025-07-29 14:24:54.772487+00 2025-07-29 14:24:54.772499+00 f t Pancho DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5483 +4493 2025-07-29 14:27:06.647382+00 2025-07-29 14:27:06.647394+00 f t Amadeus Yepez DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5484 +4494 2025-07-29 14:30:23.17347+00 2025-07-29 14:30:23.173483+00 f t Simon CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5485 +4497 2025-07-29 14:50:01.05021+00 2025-07-29 14:50:01.050223+00 f t Pity DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5489 +4498 2025-07-29 14:56:08.631962+00 2025-07-29 14:56:08.631971+00 f t Gino DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5492 +4499 2025-07-29 15:37:20.029763+00 2025-07-29 15:37:20.029773+00 f t Zoe DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5494 +4500 2025-07-29 15:48:23.25581+00 2025-07-29 15:48:23.255821+00 f t Bora DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5496 +4501 2025-07-29 15:49:43.75512+00 2025-07-29 15:49:43.755158+00 f t Shailon DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5497 +4502 2025-07-29 15:56:25.524781+00 2025-07-29 15:56:25.524788+00 f t Livy DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5498 +4503 2025-07-29 15:58:19.715085+00 2025-07-29 15:58:19.715097+00 f t Bora DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5499 +4504 2025-07-29 15:59:12.306451+00 2025-07-29 15:59:12.306462+00 f t Bora DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5500 +4505 2025-07-29 16:24:00.644672+00 2025-07-29 16:24:00.644681+00 f t Tito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5502 +4421 2025-07-28 14:34:10.860189+00 2025-07-28 14:34:10.860196+00 f t Isla II CAT \N 0.00 0.00 t 2022-01-13 2025-07-28 \N \N MALE \N f \N 1026 5396 +4489 2025-07-29 12:52:29.694258+00 2025-07-29 12:52:29.694265+00 f t Dana CAT 10 4.00 0.00 t \N 2025-07-29 \N \N FEMALE \N f 31 1026 5479 +4436 2025-07-28 15:51:24.415773+00 2025-07-28 15:51:24.415779+00 f t Beni DOG \N 6.00 0.00 f \N 2025-08-01 \N \N MALE \N f \N 1026 5411 +4495 2025-07-29 14:39:02.409093+00 2025-07-29 14:39:02.409105+00 f t Matilda CAT 4 3.00 0.00 t \N 2025-07-30 \N \N \N \N f \N 1026 5486 +4468 2025-07-28 23:07:33.675996+00 2025-07-28 23:07:33.676005+00 f t Blacky CAT \N 5.00 0.00 f \N \N 2025-07-29 \N \N FEMALE \N \N f \N \N 5446 +4496 2025-07-29 14:49:48.002607+00 2025-07-29 14:49:48.002615+00 f t China DOG 5 6.00 0.00 t \N 2025-07-29 \N \N FEMALE \N f 10 1026 5488 +4471 2025-07-29 00:10:10.421737+00 2025-07-29 00:10:10.42175+00 f t Ciro DOG \N 15.00 0.00 t \N \N 2025-07-29 \N \N MALE \N \N f \N \N 5453 +4467 2025-07-28 22:39:22.14494+00 2025-07-28 22:39:22.144946+00 f t Amy CAT 11 3.00 0.00 t \N 2025-07-29 \N \N \N \N f \N 113 5444 +4487 2025-07-29 12:30:45.566357+00 2025-07-29 12:30:45.566366+00 f t Ivan DOG \N 30.00 0.00 f \N \N 2025-07-29 \N \N MALE \N \N f \N \N 5477 +4454 2025-07-28 18:21:12.387754+00 2025-07-28 18:21:12.387763+00 f t Orion CAT 4 0.00 0.00 f \N 2025-08-02 \N \N \N \N f \N 1026 5428 +4453 2025-07-28 18:20:52.906769+00 2025-07-28 18:20:52.906776+00 f t Merlina CAT 4 0.00 0.00 f \N 2025-08-02 \N \N \N \N f 64 1026 5428 +4455 2025-07-28 18:21:37.832677+00 2025-07-28 18:21:37.832684+00 f t Luna CAT \N 0.00 0.00 f \N 2025-08-02 \N \N \N \N f \N 1026 5428 +4452 2025-07-28 18:20:26.731712+00 2025-07-28 18:20:26.731718+00 f t Estrellita CAT 12 0.00 0.00 f \N 2025-08-02 \N \N FEMALE Teiene un soplo en el corazón \N f 27 1026 5428 +4506 2025-07-29 16:52:12.758793+00 2025-07-29 16:52:12.758806+00 f t Charlie DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5504 +4507 2025-07-29 17:41:51.184995+00 2025-07-29 17:41:51.185004+00 f t Kitty CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5509 +4508 2025-07-29 17:56:14.244302+00 2025-07-29 17:56:14.244315+00 f t Lola DOG \N 45.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5510 +4509 2025-07-29 18:36:35.147559+00 2025-07-29 18:36:35.147573+00 f t kala DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5511 +4510 2025-07-29 19:04:12.052363+00 2025-07-29 19:04:12.052372+00 f t THOR DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5512 +4511 2025-07-29 19:09:23.664999+00 2025-07-29 19:09:23.665006+00 f t Antonio CAT 0 3.00 0.00 f \N \N \N \N FEMALE \N f 27 1208 5513 +4512 2025-07-29 19:13:12.262791+00 2025-07-29 19:13:12.262801+00 f t Lebron DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5514 +4513 2025-07-29 19:20:54.409763+00 2025-07-29 19:20:54.409796+00 f t Dana DOG \N 28.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5516 +4514 2025-07-29 19:24:38.431431+00 2025-07-29 19:24:38.431445+00 f t Leia DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5517 +4515 2025-07-29 19:55:52.773215+00 2025-07-29 19:55:52.773225+00 f t Inti DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5518 +4516 2025-07-29 19:56:44.69714+00 2025-07-29 19:56:44.69715+00 f t Borsh CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5518 +4517 2025-07-29 19:57:20.232402+00 2025-07-29 19:57:20.232415+00 f t Copo DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5518 +4518 2025-07-29 19:57:46.03647+00 2025-07-29 19:57:46.036483+00 f t Copo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5518 +4519 2025-07-29 19:58:15.263891+00 2025-07-29 19:58:15.2639+00 f t Tita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5518 +4520 2025-07-29 19:58:39.437478+00 2025-07-29 19:58:39.437487+00 f t Bianca CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5518 +4521 2025-07-29 20:22:42.611694+00 2025-07-29 20:22:42.611704+00 f t Duque DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5519 +4522 2025-07-29 20:23:34.939007+00 2025-07-29 20:23:34.939021+00 f t Cata DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5520 +4523 2025-07-29 20:32:28.827306+00 2025-07-29 20:32:28.827319+00 f t Mecha CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5521 +4524 2025-07-29 21:15:24.418621+00 2025-07-29 21:15:24.418634+00 f t Celeste DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5524 +4525 2025-07-29 21:43:24.938696+00 2025-07-29 21:43:24.938705+00 f t Bony DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5525 +4527 2025-07-29 22:37:15.622835+00 2025-07-29 22:37:15.622852+00 f t Ati DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5527 +4526 2025-07-29 22:15:51.637912+00 2025-07-29 22:15:51.637922+00 f t Mario CAT 10 9.00 0.00 t \N \N \N \N MALE \N t 27 1208 5522 +4529 2025-07-29 23:22:02.069767+00 2025-07-29 23:22:02.069776+00 f t b CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5529 +4530 2025-07-30 00:35:52.345874+00 2025-07-30 00:35:52.345886+00 f t Flor DOG \N 2.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5530 +4531 2025-07-30 00:36:12.575881+00 2025-07-30 00:36:12.57589+00 f t Flor CAT \N 2.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5530 +4532 2025-07-30 00:46:02.406043+00 2025-07-30 00:46:02.406056+00 f t Zeus DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5531 +3188 2025-07-02 00:25:05.584908+00 2025-07-02 00:25:05.58492+00 f t Gordito CAT \N 0.00 0.00 f 0001-01-01 2025-07-04 \N \N MALE No parece castrado\r\nNo toma medicación ( se ve que tiene un quiste a bulto a un costado de la cara y justo ahí tmb lo mordieron )\r\nEs muy mimoso, pero se nota que le pegaban, se asusta al principio si no conoce y reacciona \N f 27 1208 3757 +4533 2025-07-30 01:03:22.99522+00 2025-07-30 01:03:22.995233+00 f t Leoncito DOG \N 1.60 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5532 +4534 2025-07-30 03:13:58.303584+00 2025-07-30 03:13:58.303596+00 f t Lola DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5533 +4535 2025-07-30 09:13:12.954811+00 2025-07-30 09:13:12.954824+00 f t Mario DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5535 +4536 2025-07-30 09:46:29.471493+00 2025-07-30 09:46:29.471503+00 f t Juan carlos CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5537 +4537 2025-07-30 09:47:49.540869+00 2025-07-30 09:47:49.540877+00 f t Leti CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5537 +4538 2025-07-30 10:24:33.151313+00 2025-07-30 10:24:33.151324+00 f t shavy DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5539 +4539 2025-07-30 11:09:26.001857+00 2025-07-30 11:09:26.00187+00 f t Olympia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5540 +4540 2025-07-30 11:43:17.538367+00 2025-07-30 11:43:17.538376+00 f t CHARO DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5541 +4541 2025-07-30 11:51:35.289052+00 2025-07-30 11:51:35.289062+00 f t Leo DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5542 +4542 2025-07-30 11:55:54.076823+00 2025-07-30 11:55:54.076833+00 f t Neron CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5543 +4543 2025-07-30 12:02:10.562583+00 2025-07-30 12:02:10.562593+00 f t Rio DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5544 +4568 2025-07-30 18:28:10.629294+00 2025-07-30 18:28:10.629303+00 f t Negrita DOG \N 19.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5574 +4554 2025-07-30 14:52:37.804431+00 2025-07-30 14:52:37.80444+00 f t Moka DOG 5 28.00 0.00 t 2020-02-20 2025-07-30 \N \N FEMALE \N f \N 1026 5557 +4544 2025-07-30 12:11:29.585415+00 2025-07-30 12:11:29.585424+00 f t Margarita DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5545 +4545 2025-07-30 12:12:12.760213+00 2025-07-30 12:12:12.760222+00 f t Margarita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5545 +4546 2025-07-30 12:28:05.897803+00 2025-07-30 12:28:05.897816+00 f t Robin DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5546 +4547 2025-07-30 12:31:11.577163+00 2025-07-30 12:31:11.577173+00 f t Robin DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5547 +4548 2025-07-30 12:33:40.537964+00 2025-07-30 12:33:40.537973+00 f t Robin DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5548 +4549 2025-07-30 13:13:25.10561+00 2025-07-30 13:13:25.105619+00 f t kuma DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5550 +4550 2025-07-30 13:17:54.890581+00 2025-07-30 13:17:54.890593+00 f t Rita DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5551 +4551 2025-07-30 14:09:20.069624+00 2025-07-30 14:09:20.069635+00 f t Congo DOG \N 60.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5554 +4552 2025-07-30 14:35:19.022569+00 2025-07-30 14:35:19.022583+00 f t Milo CAT \N 3.20 1.00 f No 2025-01-13 \N \N \N MALE \N \N f \N \N 5555 +4553 2025-07-30 14:35:58.952091+00 2025-07-30 14:35:58.952101+00 f t Valentino CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5556 +4555 2025-07-30 15:15:20.531618+00 2025-07-30 15:15:20.53163+00 f t Bahía Moroni DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5558 +8503 2025-10-08 00:30:13.599927+00 2025-10-08 00:30:13.599936+00 f t Mora DOG \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10242 +4559 2025-07-30 16:36:59.082429+00 2025-07-30 16:36:59.082438+00 f t Marco DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5567 +4560 2025-07-30 16:49:47.744073+00 2025-07-30 16:49:47.744088+00 f t Lucas DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5568 +4561 2025-07-30 17:29:27.347843+00 2025-07-30 17:29:27.347853+00 f t Notte CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5569 +6038 2025-08-27 02:49:21.4887+00 2025-08-27 02:49:21.488711+00 f t Venus CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7351 +4563 2025-07-30 17:47:55.301687+00 2025-07-30 17:47:55.301697+00 f t soda DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5571 +4564 2025-07-30 17:57:10.704059+00 2025-07-30 17:57:10.704069+00 f t Sofia DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5572 +4565 2025-07-30 18:02:24.801623+00 2025-07-30 18:02:24.801638+00 f t Stitch DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5573 +4566 2025-07-30 18:27:09.92792+00 2025-07-30 18:27:09.927929+00 f t Blanca DOG \N 19.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5574 +4567 2025-07-30 18:27:59.420769+00 2025-07-30 18:27:59.420779+00 f t Chuchu DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5575 +4569 2025-07-30 18:33:06.352605+00 2025-07-30 18:33:06.352614+00 f t Sherlock CAT \N 800.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5577 +4570 2025-07-30 18:53:58.867939+00 2025-07-30 18:53:58.867951+00 f t Pocho CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5578 +4571 2025-07-30 19:48:34.751737+00 2025-07-30 19:48:34.751745+00 f t Uma DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5579 +4572 2025-07-30 20:19:02.208468+00 2025-07-30 20:19:02.208484+00 f t Caían DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5581 +4573 2025-07-30 20:46:53.107257+00 2025-07-30 20:46:53.107269+00 f t Loky DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5582 +4574 2025-07-30 21:28:24.681429+00 2025-07-30 21:28:24.681438+00 f t Matilde CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5584 +4575 2025-07-30 21:55:47.48229+00 2025-07-30 21:55:47.4823+00 f t Pera DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5585 +4576 2025-07-30 21:58:14.087982+00 2025-07-30 21:58:14.087993+00 f t Blue DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5587 +4577 2025-07-30 23:44:42.898154+00 2025-07-30 23:44:42.898167+00 f t Milton CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5590 +4578 2025-07-30 23:55:57.579813+00 2025-07-30 23:55:57.579825+00 f t Chocolina DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5592 +4490 2025-07-29 13:02:23.974606+00 2025-07-29 13:02:23.97462+00 f t Blanquito DOG \N 10.00 0.00 t \N \N 2025-08-01 \N \N MALE \N \N f \N \N 5480 +4558 2025-07-30 16:19:18.170574+00 2025-07-30 16:19:18.170582+00 f t Dana DOG 6 30.00 0.00 f \N 2025-07-30 \N \N \N \N f 6 1026 5566 +4528 2025-07-29 22:53:50.812348+00 2025-07-29 22:53:50.812355+00 f t Olaf DOG 5 8.00 0.00 f \N 2025-07-30 \N \N MALE \N f 21 1208 5528 +4376 2025-07-27 14:46:56.80976+00 2025-07-27 14:46:56.809768+00 f t Micky CAT 5 5.00 0.00 t \N 2025-07-29 \N \N MALE Vilef + y toma meloxi por gingivitis a veces \N f 27 1208 5329 +4557 2025-07-30 15:41:02.008972+00 2025-07-30 15:41:02.008986+00 f t Haku CAT \N 7.00 0.00 f \N \N 2025-08-04 \N \N MALE \N \N f \N \N 5564 +4579 2025-07-30 23:57:06.535651+00 2025-07-30 23:57:06.535662+00 f t Marcos CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5592 +4580 2025-07-30 23:57:47.076826+00 2025-07-30 23:57:47.076839+00 f t Juana CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5592 +4581 2025-07-31 00:13:31.360542+00 2025-07-31 00:13:31.360552+00 f t India DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5593 +4582 2025-07-31 00:38:49.645622+00 2025-07-31 00:38:49.645631+00 f t Rosi DOG \N 4.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5594 +4583 2025-07-31 00:43:22.054825+00 2025-07-31 00:43:22.054841+00 f t Mia CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5595 +4584 2025-07-31 00:48:57.493827+00 2025-07-31 00:48:57.493838+00 f t Pampita DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5596 +4585 2025-07-31 01:36:46.132917+00 2025-07-31 01:36:46.132928+00 f t Poxi DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5598 +4586 2025-07-31 01:46:16.845372+00 2025-07-31 01:46:16.845383+00 f t Poxi DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5599 +4587 2025-07-31 02:28:04.412121+00 2025-07-31 02:28:04.412134+00 f t Tofi DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5601 +4588 2025-07-31 02:29:34.241777+00 2025-07-31 02:29:34.241789+00 f t M DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5602 +4589 2025-07-31 03:11:51.505452+00 2025-07-31 03:11:51.505464+00 f t Vito DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5603 +4590 2025-07-31 04:45:54.318306+00 2025-07-31 04:45:54.318316+00 f t Román CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5604 +4591 2025-07-31 09:56:45.662662+00 2025-07-31 09:56:45.662674+00 f t Micha CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5609 +4592 2025-07-31 10:54:25.791405+00 2025-07-31 10:54:25.791416+00 f t Horus CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5610 +4593 2025-07-31 10:55:11.537881+00 2025-07-31 10:55:11.537891+00 f t Yoshi CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5610 +4594 2025-07-31 11:24:43.516216+00 2025-07-31 11:24:43.516225+00 f t Nala DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5612 +4595 2025-07-31 11:31:48.740979+00 2025-07-31 11:31:48.740988+00 f t Severus CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5613 +4596 2025-07-31 11:35:37.85964+00 2025-07-31 11:35:37.859651+00 f t Severus CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5614 +4597 2025-07-31 12:23:36.73926+00 2025-07-31 12:23:36.739269+00 f t Topo CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5617 +4598 2025-07-31 12:34:55.394758+00 2025-07-31 12:34:55.394767+00 f t Zeus CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5618 +4562 2025-07-30 17:47:47.375347+00 2025-07-30 17:47:47.375354+00 f t Pibito CAT 3 6.00 0.00 t \N 2025-07-30 \N \N MALE \N f 27 1208 5570 +4599 2025-07-31 13:02:56.704516+00 2025-07-31 13:02:56.704526+00 f t Nino CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5619 +5995 2025-08-26 04:05:51.212571+00 2025-08-26 04:05:51.212584+00 f t Ohlindo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7307 +4602 2025-07-31 13:15:28.138616+00 2025-07-31 13:15:28.138625+00 f t Lucky DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5621 +4603 2025-07-31 13:31:30.210122+00 2025-07-31 13:31:30.210138+00 f t Rafael CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5622 +4606 2025-07-31 14:05:35.559355+00 2025-07-31 14:05:35.559365+00 f t Rocco DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5626 +6039 2025-08-27 02:49:43.937211+00 2025-08-27 02:49:43.937225+00 f t Venecia DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7352 +4607 2025-07-31 14:29:48.679247+00 2025-07-31 14:29:48.679256+00 f t Peralta CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5627 +4608 2025-07-31 14:43:48.58531+00 2025-07-31 14:43:48.585319+00 f t kitty CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5628 +4609 2025-07-31 15:05:58.790441+00 2025-07-31 15:05:58.790454+00 f t Maika DOG \N 2.70 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5629 +4610 2025-07-31 15:44:31.918982+00 2025-07-31 15:44:31.918994+00 f t Santino CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5630 +4611 2025-07-31 16:27:33.557092+00 2025-07-31 16:27:33.557101+00 f t Benny CAT \N 9.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5632 +4612 2025-07-31 16:45:58.090534+00 2025-07-31 16:45:58.090548+00 f t Peralta CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5633 +4613 2025-07-31 16:47:18.587665+00 2025-07-31 16:47:18.587674+00 f t Violeta CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5633 +4614 2025-07-31 16:48:06.913449+00 2025-07-31 16:48:06.913463+00 f t Naty DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5635 +4615 2025-07-31 16:48:55.955946+00 2025-07-31 16:48:55.955959+00 f t Gitana CAT \N 2.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5636 +4616 2025-07-31 16:49:47.016343+00 2025-07-31 16:49:47.016354+00 f t Peralta CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5637 +4617 2025-07-31 16:50:58.111613+00 2025-07-31 16:50:58.111621+00 f t Violeta CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5637 +4618 2025-07-31 16:56:07.119337+00 2025-07-31 16:56:07.119349+00 f t Hércules ISA DOG \N 60.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5639 +3258 2025-07-03 19:57:29.580243+00 2025-07-03 19:57:29.58025+00 f t Chloe DOG \N 5.00 0.00 t 2008-05-10 2025-07-03 \N \N FEMALE hoy le dieron los resultados de los analisis, Hace 6 dias mas o menos empeoro su cuadro, suero subcutaneo con ranitidina, B12 y antiinflamatorio hace 2 dias porque tiene problemas en el corazon, ayer a la noche estaba pasada de vueltas, no durmio ni podia bajar la cabeza, el tema es que no quiere comer solidos y no tomo la pastilla del corazon hace 72hs porque no tolera los solidos, Nariz seca, tiembla conmigo, las patas medias rigidas.\r\nToma Pimonden 2.5 x dia, Cardial B, y Levotiroxina. Le dieron x suero: 0002510 CERENIA DOSIS - KUALCOVIT DOSIS\r\nNOVOTIOC -MELOXIVET--RANITIDINA -VETALGINA\r\nSe asusta y se estresa, pero no muerde \N f 8 1208 3861 +4621 2025-07-31 18:10:16.661517+00 2025-07-31 18:10:16.661527+00 f t Orión CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5645 +4622 2025-07-31 18:16:48.748137+00 2025-07-31 18:16:48.748146+00 f t Alegra CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5646 +4623 2025-07-31 18:18:36.950876+00 2025-07-31 18:18:36.950889+00 f t Alegra CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5647 +4625 2025-07-31 18:46:25.772593+00 2025-07-31 18:46:25.772602+00 f t Arturo DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5650 +4626 2025-07-31 18:47:32.953756+00 2025-07-31 18:47:32.953767+00 f t Sabrina DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5651 +4627 2025-07-31 18:47:55.882578+00 2025-07-31 18:47:55.882588+00 f t Negro DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5652 +4628 2025-07-31 19:12:30.306289+00 2025-07-31 19:12:30.306305+00 f t Loki DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5655 +4629 2025-07-31 19:32:58.011342+00 2025-07-31 19:32:58.011356+00 f t Luna DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5656 +4630 2025-07-31 20:07:34.267996+00 2025-07-31 20:07:34.268009+00 f t Chimuela DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5657 +4631 2025-07-31 20:07:55.676551+00 2025-07-31 20:07:55.676561+00 f t Chimuela CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5657 +4632 2025-07-31 20:27:20.754038+00 2025-07-31 20:27:20.754048+00 f t Julio CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5659 +4633 2025-07-31 21:09:39.961608+00 2025-07-31 21:09:39.96162+00 f t Lima CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5660 +4634 2025-07-31 22:46:44.169076+00 2025-07-31 22:46:44.16909+00 f t Colitas DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5663 +4636 2025-07-31 22:49:45.453946+00 2025-07-31 22:49:45.453955+00 f t Cholita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5664 +4637 2025-07-31 22:52:50.952349+00 2025-07-31 22:52:50.952358+00 f t Lola CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5665 +4638 2025-07-31 22:56:00.680977+00 2025-07-31 22:56:00.680987+00 f t Lola CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5666 +4639 2025-07-31 22:58:35.398091+00 2025-07-31 22:58:35.3981+00 f t Lola DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5666 +4640 2025-07-31 22:59:01.062659+00 2025-07-31 22:59:01.062671+00 f t Lola CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5669 +4641 2025-07-31 23:00:58.043185+00 2025-07-31 23:00:58.043199+00 f t Roco DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5670 +4642 2025-08-01 00:04:43.63123+00 2025-08-01 00:04:43.631242+00 f t Ozi DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5671 +4643 2025-08-01 00:06:46.627998+00 2025-08-01 00:06:46.62801+00 f t Ozi DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5671 +4644 2025-08-01 01:22:56.531862+00 2025-08-01 01:22:56.531875+00 f t Oliver DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5676 +4645 2025-08-01 01:50:49.892105+00 2025-08-01 01:50:49.892113+00 f t Rocco DOG \N 28.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5677 +4605 2025-07-31 13:54:54.703392+00 2025-07-31 13:54:54.703402+00 f t Mauricio CAT \N 7.00 0.00 f \N \N 2025-07-31 \N \N MALE \N \N f \N \N 5625 +4635 2025-07-31 22:46:45.532648+00 2025-07-31 22:46:45.532658+00 f t Jeremias CAT 17 0.00 0.00 t \N 2025-07-31 \N \N MALE \N f 27 1208 5662 +4620 2025-07-31 17:36:49.205202+00 2025-07-31 17:36:49.205209+00 f t Peralta CAT 7 0.00 0.00 t \N 2025-08-01 \N \N MALE \N f 27 1208 5640 +532 2025-02-14 19:55:50.118133+00 2025-02-14 19:55:50.118139+00 f t Luna DOG 6 20.00 0.00 t 2018-12-02 2025-07-02 \N \N FEMALE \N f 53 111 449 +4619 2025-07-31 17:34:46.040717+00 2025-07-31 17:34:46.040728+00 f t Violeta CAT 8 0.00 0.00 t \N 2025-08-01 \N \N FEMALE \N f 29 1208 5640 +467 2025-01-31 21:12:43.047733+00 2025-01-31 21:12:43.047741+00 f t Olympia CAT 4 4.00 0.00 f 2020-12-02 2025-07-30 \N \N \N \N t \N 113 393 +4604 2025-07-31 13:45:27.394031+00 2025-07-31 13:45:27.39404+00 f t Zeus CAT 3 5.00 0.00 f \N 2025-08-01 \N \N \N \N f \N 1026 5624 +4600 2025-07-31 13:08:06.790048+00 2025-07-31 13:08:06.790061+00 f t Horus CAT 9 6.00 0.00 t \N 2025-08-03 \N \N MALE \N f \N 1026 5620 +4624 2025-07-31 18:35:31.971876+00 2025-07-31 18:35:31.971888+00 f t Nala CAT \N 5.00 0.00 f \N \N 2025-08-04 \N \N FEMALE \N \N f \N \N 5649 +1816 2025-05-31 21:50:58.944834+00 2025-05-31 21:50:58.944844+00 f t Eloísa CAT 1 1.70 15.00 f Tiene un poco de gingivitis y muy asustadiza 2025-02-01 2025-07-03 \N \N FEMALE \N f 27 114 1941 +4646 2025-08-01 04:36:12.311325+00 2025-08-01 04:36:12.311339+00 f t Lola DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5681 +3549 2025-07-09 21:37:54.466419+00 2025-07-09 21:37:54.466426+00 f t GALY LAPORTE CAT 9 4.50 0.00 t \N 2025-07-09 \N \N MALE PUEDE PONERSE ESTRESARSE O SER ALGO ARISCO CON GENTE DESCONOCIDA NO ES LO ERA HASTA AHORA \N f \N 114 4254 +4647 2025-08-01 04:50:56.09683+00 2025-08-01 04:50:56.096844+00 f t Kiwi CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5682 +4648 2025-08-01 04:52:11.383874+00 2025-08-01 04:52:11.383885+00 f t Sugar CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5682 +3455 2025-07-07 23:14:20.901503+00 2025-07-07 23:14:20.90151+00 f t Moro DOG \N 25.00 0.00 f \N 2025-07-07 \N \N MALE \N f \N 113 4146 +3448 2025-07-07 22:02:45.763023+00 2025-07-07 22:02:45.763032+00 f t Julio cesar DOG 10 45.50 0.00 t \N 2025-07-07 \N \N MALE Sin medicamentos.\r\nLa verdad nunca fue agresivo con personas... es intenso como todo Pitbull, pero siempre reacciono bien con gente. \N f 58 114 4139 +4649 2025-08-01 06:16:58.746709+00 2025-08-01 06:16:58.746719+00 f t Coci DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5683 +4650 2025-08-01 06:43:10.200758+00 2025-08-01 06:43:10.20124+00 f t clementina DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5684 +4651 2025-08-01 07:21:29.522433+00 2025-08-01 07:21:29.522449+00 f t Canela DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5685 +4652 2025-08-01 07:27:09.404194+00 2025-08-01 07:27:09.404209+00 f t Jack DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5686 +4653 2025-08-01 09:49:55.181501+00 2025-08-01 09:49:55.18151+00 f t Sr panzas DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5689 +4654 2025-08-01 10:42:26.622311+00 2025-08-01 10:42:26.622325+00 f t Roky DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5690 +4655 2025-08-01 10:51:35.29578+00 2025-08-01 10:51:35.29579+00 f t Simon CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5691 +4656 2025-08-01 11:17:25.346229+00 2025-08-01 11:17:25.346243+00 f t Igor DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5693 +4657 2025-08-01 11:25:46.917347+00 2025-08-01 11:25:46.91736+00 f t Alina DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5694 +4658 2025-08-01 11:29:04.113188+00 2025-08-01 11:29:04.113202+00 f t Alina DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5695 +4659 2025-08-01 11:31:23.644395+00 2025-08-01 11:31:23.644405+00 f t Baco CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5696 +4660 2025-08-01 13:08:11.366645+00 2025-08-01 13:08:11.366654+00 f t Benji DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5700 +4556 2025-07-30 15:23:02.388495+00 2025-07-30 15:23:02.388502+00 f t Zeus DOG 3 38.00 0.00 f \N 2025-07-31 \N \N MALE \N f \N 1026 5560 +4661 2025-08-01 13:12:33.86916+00 2025-08-01 13:12:33.869171+00 f t Benjamin DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5701 +4662 2025-08-01 13:27:31.341649+00 2025-08-01 13:27:31.341662+00 f t Kira DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5703 +4663 2025-08-01 13:28:09.15137+00 2025-08-01 13:28:09.15138+00 f t Pompón DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5702 +4665 2025-08-01 14:22:43.616907+00 2025-08-01 14:22:43.616919+00 f t Mora Romero DOG \N 6.70 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5709 +4666 2025-08-01 14:46:51.362711+00 2025-08-01 14:46:51.362721+00 f t Alpha CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5710 +4667 2025-08-01 14:47:24.744724+00 2025-08-01 14:47:24.744732+00 f t Alpha CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5710 +4668 2025-08-01 15:32:39.081697+00 2025-08-01 15:32:39.081706+00 f t Apolo CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5711 +4669 2025-08-01 15:49:06.796833+00 2025-08-01 15:49:06.796843+00 f t LolA DOG \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5712 +4670 2025-08-01 16:06:00.979394+00 2025-08-01 16:06:00.979403+00 f t Pochoclo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5713 +4671 2025-08-01 16:08:35.681286+00 2025-08-01 16:08:35.681296+00 f t Tlitlo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5715 +4672 2025-08-01 16:08:59.634345+00 2025-08-01 16:08:59.634354+00 f t Tlitlo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5715 +4673 2025-08-01 16:17:42.341952+00 2025-08-01 16:17:42.341963+00 f t Pituca CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5717 +4674 2025-08-01 17:07:07.270419+00 2025-08-01 17:07:07.270432+00 f t Gato DOG \N 4.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5718 +4675 2025-08-01 17:07:19.524794+00 2025-08-01 17:07:19.524806+00 f t Tita CAT \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5719 +4676 2025-08-01 17:37:33.920747+00 2025-08-01 17:37:33.920756+00 f t Sakura CAT 1 2.40 0.00 t \N \N \N \N \N \N f \N 1026 5720 +4677 2025-08-01 18:38:19.466267+00 2025-08-01 18:38:19.466283+00 f t Lio CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5721 +4678 2025-08-01 18:41:41.150378+00 2025-08-01 18:41:41.150387+00 f t Venus DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5722 +4679 2025-08-01 18:41:58.355253+00 2025-08-01 18:41:58.355262+00 f t India DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5723 +4680 2025-08-01 18:43:10.989174+00 2025-08-01 18:43:10.989185+00 f t Cleo DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5724 +4681 2025-08-01 19:44:43.729526+00 2025-08-01 19:44:43.729534+00 f t Ámbar CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5725 +4682 2025-08-01 20:06:22.258646+00 2025-08-01 20:06:22.258655+00 f t Scooby DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5727 +4683 2025-08-01 21:13:39.137934+00 2025-08-01 21:13:39.137945+00 f t Brandon DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5729 +4684 2025-08-01 21:14:39.261475+00 2025-08-01 21:14:39.261484+00 f t Cele CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5730 +5996 2025-08-26 07:01:09.000034+00 2025-08-26 07:01:09.000044+00 f t Kito DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7308 +4686 2025-08-01 21:41:10.282659+00 2025-08-01 21:41:10.282673+00 f t Pepe CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5732 +4697 2025-08-02 02:28:35.465744+00 2025-08-02 02:28:35.465753+00 f t Tom CAT \N 5.00 0.00 f \N \N 2025-08-02 \N \N MALE \N \N f \N \N 5743 +6040 2025-08-27 03:00:38.867016+00 2025-08-27 03:00:38.867028+00 f t Pancho DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7353 +4690 2025-08-01 22:23:16.888783+00 2025-08-01 22:23:16.888791+00 f t Bruno DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5735 +4691 2025-08-01 22:52:30.951898+00 2025-08-01 22:52:30.951908+00 f t Jacke DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5738 +4692 2025-08-01 22:58:33.110731+00 2025-08-01 22:58:33.110745+00 f t Coca DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5739 +4693 2025-08-01 23:11:42.914715+00 2025-08-01 23:11:42.914727+00 f t Federico CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5740 +4694 2025-08-01 23:12:05.085782+00 2025-08-01 23:12:05.085793+00 f t Bruno DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5741 +4695 2025-08-01 23:14:27.040337+00 2025-08-01 23:14:27.040351+00 f t Roma CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5740 +4696 2025-08-02 01:55:15.997561+00 2025-08-02 01:55:15.99757+00 f t Coco DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5742 +4698 2025-08-02 02:29:15.063243+00 2025-08-02 02:29:15.063255+00 f t Luna DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5744 +4699 2025-08-02 02:38:52.2144+00 2025-08-02 02:38:52.214412+00 f t Robin DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5746 +4700 2025-08-02 02:40:06.587523+00 2025-08-02 02:40:06.587536+00 f t Robin DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5747 +4701 2025-08-02 03:10:55.208364+00 2025-08-02 03:10:55.208377+00 f t Lio CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5748 +4702 2025-08-02 04:41:14.283123+00 2025-08-02 04:41:14.283161+00 f t Meme arambich DOG \N 1.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5749 +4703 2025-08-02 04:50:50.774145+00 2025-08-02 04:50:50.774155+00 f t Afrodita CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5750 +4704 2025-08-02 05:45:41.781696+00 2025-08-02 05:45:41.781704+00 f t Grim CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5751 +4705 2025-08-02 06:52:25.938468+00 2025-08-02 06:52:25.93848+00 f t Saturno CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5752 +4706 2025-08-02 10:45:48.20258+00 2025-08-02 10:45:48.20259+00 f t Tyna DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5753 +4707 2025-08-02 12:30:01.102067+00 2025-08-02 12:30:01.102078+00 f t Raquel DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5755 +4708 2025-08-02 12:55:30.184963+00 2025-08-02 12:55:30.184973+00 f t Alice CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5756 +4664 2025-08-01 14:00:27.84446+00 2025-08-01 14:00:27.844477+00 f t benjamin DOG \N 3.00 0.00 f \N \N 2025-08-01 \N \N MALE \N \N f \N \N 5706 +4710 2025-08-02 13:33:55.563236+00 2025-08-02 13:33:55.563246+00 f t Palmito DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5758 +4711 2025-08-02 14:03:11.214177+00 2025-08-02 14:03:11.214188+00 f t Odin DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5759 +4712 2025-08-02 14:04:39.57827+00 2025-08-02 14:04:39.578279+00 f t Crux DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5759 +4713 2025-08-02 15:02:30.428543+00 2025-08-02 15:02:30.428556+00 f t Benji DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5760 +4714 2025-08-02 15:05:02.594185+00 2025-08-02 15:05:02.594204+00 f t Dior DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5761 +4715 2025-08-02 15:09:29.07898+00 2025-08-02 15:09:29.078992+00 f t Benji CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5762 +126 2024-10-30 14:13:09.47+00 2024-10-30 14:13:09.47+00 f t Uma DOG 1 13.00 0.00 f 2023-12-02 2025-08-02 \N \N FEMALE \N f 1 114 121 +4687 2025-08-01 22:15:56.574121+00 2025-08-01 22:15:56.574127+00 f t Simón CAT 9 5.00 0.00 t \N 2025-08-02 \N \N MALE \N f \N 113 5733 +4688 2025-08-01 22:16:38.094656+00 2025-08-01 22:16:38.094665+00 f t Arthur CAT 0 3.00 0.00 t \N 2025-08-02 \N \N MALE \N f \N 113 5733 +4709 2025-08-02 13:13:41.245433+00 2025-08-02 13:13:41.245941+00 f t Brisa DOG \N 20.00 0.00 t \N \N 2025-08-02 \N \N FEMALE \N \N f \N \N 5757 +4716 2025-08-02 16:08:08.502229+00 2025-08-02 16:08:08.502242+00 f t Lula DOG \N 26.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5764 +5997 2025-08-26 08:18:51.047771+00 2025-08-26 08:18:51.047783+00 f t Negrita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7311 +4718 2025-08-02 17:13:27.496665+00 2025-08-02 17:13:27.496675+00 f t Santino CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5766 +4719 2025-08-02 17:27:09.013824+00 2025-08-02 17:27:09.013837+00 f t Ayka DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5767 +4720 2025-08-02 17:39:53.007747+00 2025-08-02 17:39:53.007761+00 f t kalsa DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5768 +4721 2025-08-02 17:54:33.781347+00 2025-08-02 17:54:33.781359+00 f t Nala DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5769 +4722 2025-08-02 17:56:20.035084+00 2025-08-02 17:56:20.035097+00 f t Nala DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5770 +4723 2025-08-02 18:09:56.981823+00 2025-08-02 18:09:56.981835+00 f t Frejya DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5771 +4725 2025-08-02 18:27:33.828117+00 2025-08-02 18:27:33.828125+00 t t Iris CAT 7 6.00 0.00 t \N \N \N \N FEMALE \N f 27 1208 5772 +4727 2025-08-02 19:22:18.893356+00 2025-08-02 19:22:18.89337+00 f t Darko DOG \N 29.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5775 +4728 2025-08-02 19:24:48.466907+00 2025-08-02 19:24:48.466917+00 f t India DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5776 +4729 2025-08-02 19:28:14.277913+00 2025-08-02 19:28:14.277922+00 f t India DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5777 +4730 2025-08-02 19:28:36.680374+00 2025-08-02 19:28:36.680383+00 f t Coco CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5778 +4731 2025-08-02 19:30:40.267974+00 2025-08-02 19:30:40.267984+00 f t India DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5779 +4732 2025-08-02 19:34:21.746691+00 2025-08-02 19:34:21.746701+00 f t India DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5780 +4685 2025-08-01 21:21:40.115769+00 2025-08-01 21:21:40.115778+00 f t Paris CAT 3 0.00 0.00 f \N 2025-08-02 \N \N FEMALE \N f \N 1026 5731 +4734 2025-08-02 20:45:04.108298+00 2025-08-02 20:45:04.108314+00 f t Bella DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5784 +4735 2025-08-02 22:08:10.113017+00 2025-08-02 22:08:10.113027+00 f t Mara DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5787 +4736 2025-08-02 22:31:33.822397+00 2025-08-02 22:31:33.822409+00 f t A DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5789 +4737 2025-08-03 04:21:22.243334+00 2025-08-03 04:21:22.243343+00 f t Emilia DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5793 +4738 2025-08-03 08:12:13.017342+00 2025-08-03 08:12:13.017352+00 f t Gunner DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5795 +4739 2025-08-03 08:14:20.80211+00 2025-08-03 08:14:20.802121+00 f t Gunner DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5796 +4740 2025-08-03 08:25:03.508456+00 2025-08-03 08:25:03.50847+00 f t Leia svriz DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5797 +4741 2025-08-03 08:28:09.44521+00 2025-08-03 08:28:09.445221+00 f t Leia svriz DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5798 +4743 2025-08-03 11:36:06.082105+00 2025-08-03 11:36:06.082114+00 f t Blacky DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5800 +4742 2025-08-03 08:37:30.052621+00 2025-08-03 08:37:30.052633+00 f t Topo CAT \N 8.00 0.00 f \N \N 2025-08-03 \N \N MALE \N \N f \N \N 5799 +4726 2025-08-02 19:11:10.260778+00 2025-08-02 19:11:10.260785+00 f t Ayka DOG 15 9.00 0.00 t \N 2025-08-02 \N \N FEMALE \N t 1 1208 5774 +4689 2025-08-01 22:17:05.694947+00 2025-08-01 22:17:05.694955+00 f t Ágata CAT 0 3.00 0.00 t \N 2025-08-02 \N \N FEMALE \N f \N 113 5733 +4744 2025-08-03 12:25:06.877977+00 2025-08-03 12:25:06.877992+00 f t Gunner DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5801 +4746 2025-08-03 14:07:53.140298+00 2025-08-03 14:07:53.140308+00 f t Blacky DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5803 +4747 2025-08-03 14:39:22.336628+00 2025-08-03 14:39:22.33664+00 f t India DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5804 +4748 2025-08-03 15:42:35.004473+00 2025-08-03 15:42:35.004483+00 f t Otto DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5806 +4749 2025-08-03 16:13:37.270807+00 2025-08-03 16:13:37.27082+00 f t Isis CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5807 +827 2025-04-21 20:20:23.327293+00 2025-04-21 20:20:23.327304+00 f t Berna DOG 1 17.00 0.00 f \N 2025-08-02 \N \N FEMALE Está o estuvo tomando alguna medicación en los últimos 7 días? NO Cuál? -\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? NO \N f 1 113 710 +1025 2025-05-11 21:39:54.396949+00 2025-05-11 21:39:54.396955+00 f t Lorenzo CAT 4 8.00 0.00 t \N 2025-08-02 \N \N MALE \N f \N 113 920 +4750 2025-08-03 19:12:57.693527+00 2025-08-03 19:12:57.693539+00 f t Haru CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5809 +4751 2025-08-03 19:23:15.938676+00 2025-08-03 19:23:15.938689+00 f t Shako DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5810 +4753 2025-08-03 19:32:35.18421+00 2025-08-03 19:32:35.184221+00 f t Canela DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5812 +4754 2025-08-03 19:44:03.055838+00 2025-08-03 19:44:03.055848+00 f t Berta DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5813 +6041 2025-08-27 03:25:04.347457+00 2025-08-27 03:25:04.347473+00 f t Effie DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7354 +4756 2025-08-03 20:01:49.033255+00 2025-08-03 20:01:49.033263+00 f t Haru CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5815 +4757 2025-08-03 21:16:26.540297+00 2025-08-03 21:16:26.54031+00 f t Rufino CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5817 +4758 2025-08-03 21:16:46.056217+00 2025-08-03 21:16:46.056227+00 f t Chimuela CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5818 +4759 2025-08-03 21:44:44.426615+00 2025-08-03 21:44:44.426628+00 f t Reina DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5820 +4760 2025-08-03 22:40:35.353831+00 2025-08-03 22:40:35.35384+00 f t Riena DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5822 +4770 2025-08-04 03:58:34.301815+00 2025-08-04 03:58:34.301823+00 f t Pulgi DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5837 +4761 2025-08-03 23:01:51.80557+00 2025-08-03 23:01:51.805581+00 f t Mili DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5823 +4752 2025-08-03 19:27:13.486571+00 2025-08-03 19:27:13.486579+00 f t Carlota DOG 13 35.00 0.00 t \N 2025-08-03 \N \N FEMALE \N f 2 1208 5811 +4762 2025-08-03 23:14:28.525811+00 2025-08-03 23:14:28.525823+00 f t Vera DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5824 +4763 2025-08-03 23:31:13.599341+00 2025-08-03 23:31:13.599351+00 f t Ringo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5826 +4764 2025-08-03 23:38:41.307651+00 2025-08-03 23:38:41.307661+00 f t Popi DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5828 +4765 2025-08-04 00:02:57.697843+00 2025-08-04 00:02:57.697854+00 f t Lolo DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5829 +4766 2025-08-04 00:09:38.187178+00 2025-08-04 00:09:38.187188+00 f t Benito CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5830 +4767 2025-08-04 00:23:30.986739+00 2025-08-04 00:23:30.986749+00 f t Dalí CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5831 +4768 2025-08-04 00:52:38.378796+00 2025-08-04 00:52:38.378807+00 f t Sasha DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5832 +4769 2025-08-04 01:51:29.325676+00 2025-08-04 01:51:29.325686+00 f t Enzo DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5833 +4771 2025-08-04 07:57:08.52127+00 2025-08-04 07:57:08.521282+00 f t Ciro DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5838 +4772 2025-08-04 08:00:03.960156+00 2025-08-04 08:00:03.960172+00 f t Ciro DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5839 +4773 2025-08-04 08:55:01.177178+00 2025-08-04 08:55:01.177192+00 f t Pascu DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5840 +4774 2025-08-04 09:20:16.798664+00 2025-08-04 09:20:16.798674+00 f t Luna CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5841 +4775 2025-08-04 09:34:07.506151+00 2025-08-04 09:34:07.506163+00 f t Namir CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5842 +4776 2025-08-04 09:39:21.914637+00 2025-08-04 09:39:21.914651+00 f t Namir CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5843 +4601 2025-07-31 13:08:53.990606+00 2025-07-31 13:08:53.990614+00 f t Yoshi CAT 1 6.00 0.00 t \N 2025-08-03 \N \N MALE \N f \N 1026 5620 +6059 2025-08-27 18:23:17.187369+00 2025-08-27 18:23:17.187379+00 f t Renata DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7376 +4778 2025-08-04 13:08:45.368218+00 2025-08-04 13:08:45.368231+00 f t Pepa DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5845 +4779 2025-08-04 13:09:49.18613+00 2025-08-04 13:09:49.186139+00 f t Pepa DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5846 +4780 2025-08-04 13:27:37.569717+00 2025-08-04 13:27:37.569726+00 f t Jagger CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5849 +4781 2025-08-04 14:02:50.340681+00 2025-08-04 14:02:50.340692+00 f t Cleo DOG \N 36.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5851 +4777 2025-08-04 11:52:57.776958+00 2025-08-04 11:52:57.776968+00 f t Pascualito DOG \N 10.00 0.00 f \N \N 2025-08-04 \N \N MALE \N \N f \N \N 5844 +4782 2025-08-04 14:29:50.001204+00 2025-08-04 14:29:50.001217+00 f t Paco DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5853 +4783 2025-08-04 14:41:20.503706+00 2025-08-04 14:41:20.503719+00 f t Cali CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5854 +4784 2025-08-04 14:56:03.556161+00 2025-08-04 14:56:03.556174+00 f t Chino CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5855 +4785 2025-08-04 15:04:36.756246+00 2025-08-04 15:04:36.756259+00 f t Pepa DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5856 +4733 2025-08-02 19:49:18.247741+00 2025-08-02 19:49:18.247749+00 f t Toby CAT 8 5.00 0.00 t \N 2025-08-02 \N \N MALE \N f 27 1208 5781 +4745 2025-08-03 12:38:12.715229+00 2025-08-03 12:38:12.715241+00 f t Gunner DOG \N 23.00 0.00 f pollo 2010-03-18 2025-08-08 \N \N MALE \N \N f \N \N 5802 +4724 2025-08-02 18:27:33.620408+00 2025-08-02 18:27:33.620415+00 f t Iris CAT 7 6.00 0.00 t \N 2025-08-05 \N \N FEMALE \N f 27 1208 5772 +4786 2025-08-04 15:06:48.29034+00 2025-08-04 15:06:48.290352+00 f t tingo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5857 +4787 2025-08-04 15:09:29.452511+00 2025-08-04 15:09:29.452523+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5858 +4788 2025-08-04 15:10:53.548089+00 2025-08-04 15:10:53.548102+00 f t TEST DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5859 +4790 2025-08-04 15:20:53.923684+00 2025-08-04 15:20:53.923696+00 f t Snow DOG \N 4.80 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5861 +4791 2025-08-04 15:23:12.467015+00 2025-08-04 15:23:12.467024+00 f t Tato DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5862 +4792 2025-08-04 15:26:50.619593+00 2025-08-04 15:26:50.619603+00 f t Pandy DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5863 +4793 2025-08-04 15:28:33.48295+00 2025-08-04 15:28:33.482965+00 f t Pandy DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5864 +4794 2025-08-04 15:31:49.335671+00 2025-08-04 15:31:49.335682+00 f t Luna CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5865 +4795 2025-08-04 15:34:51.490407+00 2025-08-04 15:34:51.490423+00 f t pandy DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5866 +4796 2025-08-04 15:41:59.319638+00 2025-08-04 15:41:59.319651+00 f t Zoe CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5867 +4797 2025-08-04 15:53:10.591876+00 2025-08-04 15:53:10.591886+00 f t Rubi DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5868 +4798 2025-08-04 16:53:53.874692+00 2025-08-04 16:53:53.874705+00 f t Tarzan DOG \N 18.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5870 +4799 2025-08-04 17:03:40.192235+00 2025-08-04 17:03:40.192247+00 f t Nina DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5871 +4800 2025-08-04 17:09:58.625381+00 2025-08-04 17:09:58.625394+00 f t Atenea CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5872 +4801 2025-08-04 17:12:58.477969+00 2025-08-04 17:12:58.477979+00 f t Atenea CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5873 +4802 2025-08-04 17:20:05.108549+00 2025-08-04 17:20:05.108562+00 f t Luci DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5875 +4805 2025-08-04 17:45:05.046662+00 2025-08-04 17:45:05.046676+00 f t Ona DOG \N 11.00 33.00 t no 2010-10-16 2025-07-21 2024-07-21 2024-07-21 FEMALE no \N f \N \N 5877 +4806 2025-08-04 17:50:13.734442+00 2025-08-04 17:50:13.734455+00 f t pipo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5879 +4807 2025-08-04 17:56:17.10388+00 2025-08-04 17:56:17.103894+00 f t Suki DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5880 +4808 2025-08-04 17:57:28.882005+00 2025-08-04 17:57:28.882017+00 f t Lucas DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5881 +4809 2025-08-04 18:33:44.755661+00 2025-08-04 18:33:44.75567+00 f t Bebe DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5883 +4810 2025-08-04 20:05:25.084578+00 2025-08-04 20:05:25.084587+00 f t Zelda DOG \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5886 +4812 2025-08-04 20:30:02.699888+00 2025-08-04 20:30:02.699903+00 f t Negro CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5890 +4813 2025-08-04 20:34:58.422769+00 2025-08-04 20:34:58.422784+00 f t charmi CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5892 +4814 2025-08-04 20:55:34.193566+00 2025-08-04 20:55:34.19358+00 f t Tigre DOG \N 24.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5893 +4815 2025-08-04 21:00:19.264629+00 2025-08-04 21:00:19.264644+00 f t Tigre DOG \N 24.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5894 +4816 2025-08-04 21:21:28.10408+00 2025-08-04 21:21:28.104089+00 f t Ciro DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5895 +4817 2025-08-04 21:32:24.265811+00 2025-08-04 21:32:24.265821+00 f t Chai CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5896 +5998 2025-08-26 09:55:32.410161+00 2025-08-26 09:55:32.410176+00 f t Mateo DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7312 +4819 2025-08-04 22:38:17.048702+00 2025-08-04 22:38:17.048712+00 f t Olivia DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5899 +4820 2025-08-04 22:38:31.574745+00 2025-08-04 22:38:31.574761+00 f t Olivia CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5899 +4821 2025-08-04 22:38:40.736731+00 2025-08-04 22:38:40.736743+00 f t Torito CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5900 +4822 2025-08-04 22:40:51.18783+00 2025-08-04 22:40:51.18784+00 f t Torito CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5901 +4823 2025-08-04 22:53:26.808055+00 2025-08-04 22:53:26.808069+00 f t Apolo DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5902 +4824 2025-08-04 23:02:34.776426+00 2025-08-04 23:02:34.776437+00 f t Oso DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5903 +4825 2025-08-04 23:11:17.564565+00 2025-08-04 23:11:17.564575+00 f t Apolo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5904 +4826 2025-08-04 23:29:46.39718+00 2025-08-04 23:29:46.397193+00 f t Milo DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5906 +4827 2025-08-05 00:47:37.737583+00 2025-08-05 00:47:37.737598+00 f t Oreo DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5908 +4828 2025-08-05 00:51:32.898747+00 2025-08-05 00:51:32.898757+00 f t Oreo DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5909 +4829 2025-08-05 01:21:42.147639+00 2025-08-05 01:21:42.147649+00 f t Olivia DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5910 +4830 2025-08-05 01:30:23.015862+00 2025-08-05 01:30:23.015875+00 f t Mora DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5911 +6042 2025-08-27 07:20:20.71053+00 2025-08-27 07:20:20.710545+00 f t Mia DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7355 +4832 2025-08-05 02:00:16.895209+00 2025-08-05 02:00:16.895228+00 f t Azul Godoy CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5913 +4833 2025-08-05 10:56:27.601753+00 2025-08-05 10:56:27.601762+00 f t Balto DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5920 +4834 2025-08-05 11:00:38.770383+00 2025-08-05 11:00:38.770392+00 f t Fiona DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5921 +4835 2025-08-05 11:54:18.094136+00 2025-08-05 11:54:18.094145+00 f t Olivia CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5925 +4836 2025-08-05 12:11:47.361479+00 2025-08-05 12:11:47.361495+00 f t Atila DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5927 +4837 2025-08-05 12:12:34.182625+00 2025-08-05 12:12:34.182637+00 f t Luna CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5926 +4789 2025-08-04 15:17:47.46168+00 2025-08-04 15:17:47.461688+00 f t Thor CAT 15 3.80 0.00 t \N 2025-08-04 \N \N MALE \N f 29 1026 5860 +4803 2025-08-04 17:21:02.89477+00 2025-08-04 17:21:02.894782+00 f t Ambar CAT 8 3.00 0.00 t \N 2025-08-06 \N \N FEMALE Está tomando, prendisol, Enzimol, Teofilina \N f \N 1208 5874 +4755 2025-08-03 20:01:35.629818+00 2025-08-03 20:01:35.629832+00 t t Haru DOG \N 6.00 0.00 f \N \N 2025-08-04 \N \N MALE \N \N f \N \N 5815 +4717 2025-08-02 16:23:13.279605+00 2025-08-02 16:23:13.279613+00 f t Merlot DOG 9 35.00 0.00 t otitis cronica \N 2025-08-04 \N \N FEMALE Esta tomando Levotiroxina 175 todos los dias porque tiene hipotiroidismo. \N f 2 1208 5765 +902 2025-05-03 21:05:18.862386+00 2025-05-03 21:05:18.862396+00 f t Alice CAT 1 0.00 0.00 t \N 2025-08-04 \N \N FEMALE \N f \N 114 785 +4838 2025-08-05 13:04:09.108568+00 2025-08-05 13:04:09.108582+00 f t Papu DOG \N 33.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5928 +4839 2025-08-05 13:33:10.101429+00 2025-08-05 13:33:10.101447+00 f t Negro DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5930 +4840 2025-08-05 14:13:31.047439+00 2025-08-05 14:13:31.047449+00 f t Boky CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5931 +4841 2025-08-05 14:17:37.003434+00 2025-08-05 14:17:37.003448+00 f t Nicolas CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5932 +4842 2025-08-05 14:24:22.839977+00 2025-08-05 14:24:22.83999+00 f t Nico CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5933 +4843 2025-08-05 15:06:43.426987+00 2025-08-05 15:06:43.426996+00 f t Akira DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5935 +4844 2025-08-05 15:13:41.056059+00 2025-08-05 15:13:41.056072+00 f t Alex CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5936 +4845 2025-08-05 15:55:56.633429+00 2025-08-05 15:55:56.633442+00 f t Tito DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5938 +4846 2025-08-05 16:04:50.787101+00 2025-08-05 16:04:50.787114+00 f t Mila DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5939 +4847 2025-08-05 16:20:24.441768+00 2025-08-05 16:20:24.441782+00 f t Mora DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5940 +4804 2025-08-04 17:33:33.868464+00 2025-08-04 17:33:33.868475+00 f t Mirko CAT 9 6.00 0.00 t \N 2025-08-09 \N \N MALE \N f 27 1208 5876 +4848 2025-08-05 18:40:50.982835+00 2025-08-05 18:40:50.982845+00 f t Bartolomé DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5941 +4849 2025-08-05 18:43:08.269709+00 2025-08-05 18:43:08.269723+00 f t Luli CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5941 +4850 2025-08-05 19:01:11.482962+00 2025-08-05 19:01:11.482973+00 f t Lulu CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5942 +4852 2025-08-05 19:34:37.592402+00 2025-08-05 19:34:37.592416+00 f t Pepe CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5944 +4853 2025-08-05 20:56:37.623587+00 2025-08-05 20:56:37.623599+00 f t Mufaza CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5945 +4854 2025-08-05 21:00:37.405034+00 2025-08-05 21:00:37.405047+00 f t Adop CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5947 +4855 2025-08-05 21:10:48.733642+00 2025-08-05 21:10:48.733651+00 f t Mufaza DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5948 +4856 2025-08-05 21:11:21.791177+00 2025-08-05 21:11:21.791191+00 f t Mufaza CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5948 +4857 2025-08-05 21:36:05.016618+00 2025-08-05 21:36:05.016631+00 f t Manchis DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5949 +4858 2025-08-05 21:37:16.039768+00 2025-08-05 21:37:16.039777+00 f t Funny DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5950 +4859 2025-08-05 21:38:14.269147+00 2025-08-05 21:38:14.269159+00 f t Tropi CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5950 +4860 2025-08-05 21:39:21.65187+00 2025-08-05 21:39:21.651884+00 f t Funny CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5950 +4851 2025-08-05 19:15:12.455399+00 2025-08-05 19:15:12.45541+00 f t Simón CAT \N 5.50 0.00 f \N \N 2025-08-05 \N \N MALE \N \N f \N \N 5943 +4811 2025-08-04 20:25:38.878289+00 2025-08-04 20:25:38.878302+00 f t Pappo DOG \N 60.00 0.00 f \N \N 2025-08-19 \N \N MALE \N \N f \N \N 5889 +4862 2025-08-05 22:01:26.564801+00 2025-08-05 22:01:26.564813+00 f t Psyca CAT \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5952 +4863 2025-08-05 22:24:01.759202+00 2025-08-05 22:24:01.759215+00 f t Charo CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5953 +4864 2025-08-05 22:29:57.059103+00 2025-08-05 22:29:57.059116+00 f t Funny CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5954 +4865 2025-08-05 22:34:20.96931+00 2025-08-05 22:34:20.969319+00 f t Funny CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5955 +4866 2025-08-05 22:46:16.312744+00 2025-08-05 22:46:16.312756+00 f t Ivan DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5957 +4867 2025-08-05 23:27:40.13395+00 2025-08-05 23:27:40.13396+00 f t Maki CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5961 +4868 2025-08-05 23:29:34.351206+00 2025-08-05 23:29:34.351219+00 f t Veloz CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5963 +4869 2025-08-06 00:18:06.175724+00 2025-08-06 00:18:06.17574+00 f t Sara DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5965 +4870 2025-08-06 00:29:39.031343+00 2025-08-06 00:29:39.031353+00 f t Frida DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5966 +4872 2025-08-06 03:40:37.073814+00 2025-08-06 03:40:37.073823+00 f t Grisú CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5969 +4873 2025-08-06 03:55:05.782739+00 2025-08-06 03:55:05.782755+00 f t Papu DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5971 +4874 2025-08-06 04:50:26.589052+00 2025-08-06 04:50:26.589066+00 f t Bartolomé DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5973 +4875 2025-08-06 10:37:23.139746+00 2025-08-06 10:37:23.139755+00 f t Atilio CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5974 +4876 2025-08-06 11:35:38.297137+00 2025-08-06 11:35:38.297149+00 f t Oliverio CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5975 +4877 2025-08-06 11:43:53.371537+00 2025-08-06 11:43:53.371549+00 f t Simona CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5976 +4878 2025-08-06 11:50:08.355574+00 2025-08-06 11:50:08.355584+00 f t Oli CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5977 +4879 2025-08-06 11:55:32.759479+00 2025-08-06 11:55:32.759492+00 f t Oliverio CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5978 +4880 2025-08-06 12:08:52.795876+00 2025-08-06 12:08:52.795888+00 f t Negra CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5980 +4881 2025-08-06 12:33:17.753515+00 2025-08-06 12:33:17.753524+00 f t Apolo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5981 +4882 2025-08-06 13:12:55.545963+00 2025-08-06 13:12:55.545971+00 f t Puppy DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5983 +4883 2025-08-06 13:28:20.384888+00 2025-08-06 13:28:20.384899+00 f t Mora DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5984 +4885 2025-08-06 13:44:32.015333+00 2025-08-06 13:44:32.015345+00 f t Pistacho CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5985 +4886 2025-08-06 14:07:30.378167+00 2025-08-06 14:07:30.378179+00 f t Kfke CAT \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5986 +5999 2025-08-26 10:00:20.928709+00 2025-08-26 10:00:20.928722+00 f t Negrita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7313 +4888 2025-08-06 15:16:15.843906+00 2025-08-06 15:16:15.843919+00 f t Aceituna CAT \N 1.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5988 +4889 2025-08-06 15:53:01.942473+00 2025-08-06 15:53:01.942486+00 f t Paco DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5990 +4890 2025-08-06 15:53:37.745151+00 2025-08-06 15:53:37.745161+00 f t Pitu DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 5990 +4891 2025-08-06 16:09:04.449033+00 2025-08-06 16:09:04.449046+00 f t MORITO CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5991 +4892 2025-08-06 16:25:46.12467+00 2025-08-06 16:25:46.124686+00 f t Timmy DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5992 +4893 2025-08-06 16:41:15.035726+00 2025-08-06 16:41:15.035735+00 f t Sonia DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 5995 +4894 2025-08-06 17:15:06.149388+00 2025-08-06 17:15:06.149402+00 f t Gordo DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5996 +4896 2025-08-06 17:59:52.545603+00 2025-08-06 17:59:52.545612+00 f t Gali DOG \N 22.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5999 +4897 2025-08-06 18:13:09.761575+00 2025-08-06 18:13:09.761589+00 f t BENNY CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6000 +4898 2025-08-06 18:18:24.031362+00 2025-08-06 18:18:24.031371+00 f t Drogon CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6001 +4899 2025-08-06 18:29:38.937883+00 2025-08-06 18:29:38.937894+00 f t Baco CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6002 +4900 2025-08-06 18:36:22.622401+00 2025-08-06 18:36:22.622416+00 f t PRUEBA GRISU CAT \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6005 +4901 2025-08-06 18:43:12.520509+00 2025-08-06 18:43:12.520524+00 f t Galatea DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6006 +4902 2025-08-06 18:43:53.449498+00 2025-08-06 18:43:53.44951+00 f t Ranma CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6007 +4903 2025-08-06 19:20:23.28425+00 2025-08-06 19:20:23.284261+00 f t Arya CAT \N 4.80 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6009 +4904 2025-08-06 19:36:50.891243+00 2025-08-06 19:36:50.891256+00 f t Negra DOG \N 36.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6010 +4905 2025-08-06 19:39:31.873496+00 2025-08-06 19:39:31.873509+00 f t Tayson DOG \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6011 +4906 2025-08-06 19:46:05.591364+00 2025-08-06 19:46:05.591372+00 f t Roma DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6013 +4907 2025-08-06 19:49:28.776124+00 2025-08-06 19:49:28.776134+00 f t Ciro CAT \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6008 +4908 2025-08-06 19:56:23.623565+00 2025-08-06 19:56:23.623575+00 f t greta DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6015 +4912 2025-08-06 20:44:40.63554+00 2025-08-06 20:44:40.635548+00 f t Buldog DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6021 +4922 2025-08-06 22:42:27.72442+00 2025-08-06 22:42:27.724432+00 f t Oreo CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6029 +4915 2025-08-06 21:02:28.423972+00 2025-08-06 21:02:28.423986+00 f t Morrison DOG \N 26.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6025 +4917 2025-08-06 21:03:32.919714+00 2025-08-06 21:03:32.919721+00 f t Asia CAT \N 2.50 0.00 f \N \N \N \N FEMALE GS (remedio para PIF) en comprimidos y UrsoMarina \N f \N 114 6024 +4918 2025-08-06 21:06:39.995375+00 2025-08-06 21:06:39.995385+00 f t Patch DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6026 +4919 2025-08-06 21:25:07.720275+00 2025-08-06 21:25:07.720292+00 f t Nemo DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6027 +4913 2025-08-06 20:52:10.334254+00 2025-08-06 20:52:10.334261+00 f t Zub CAT 4 4.00 0.00 f \N 2025-08-06 \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? No Cuál?\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Asustarse si pero atacar no !\r\n06 \N f \N 114 6022 +4920 2025-08-06 22:12:13.675782+00 2025-08-06 22:12:13.675791+00 f t Pachorra CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6028 +4921 2025-08-06 22:42:12.000369+00 2025-08-06 22:42:12.000379+00 f t doris CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6030 +4923 2025-08-06 22:53:38.157392+00 2025-08-06 22:53:38.157403+00 f t hhhh CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6031 +4924 2025-08-06 22:59:52.630299+00 2025-08-06 22:59:52.630309+00 f t Khaleesi DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6032 +4929 2025-08-06 23:34:38.875963+00 2025-08-06 23:34:38.875976+00 f t Simon DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6037 +4930 2025-08-07 00:09:20.690503+00 2025-08-07 00:09:20.690512+00 f t Negra CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6038 +4931 2025-08-07 00:55:46.945703+00 2025-08-07 00:55:46.945713+00 f t Giuseppe DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6040 +4932 2025-08-07 01:16:07.147365+00 2025-08-07 01:16:07.147378+00 f t Apolo DOG \N 19.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6041 +4933 2025-08-07 02:32:32.666559+00 2025-08-07 02:32:32.666571+00 f t SimbA DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6042 +4934 2025-08-07 03:29:55.261653+00 2025-08-07 03:29:55.261664+00 f t Marta DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6045 +4928 2025-08-06 23:23:07.880034+00 2025-08-06 23:23:07.880044+00 f t Teo CAT 10 4.00 0.00 t \N 2025-08-20 \N \N FEMALE \N f \N 113 6035 +4909 2025-08-06 20:17:31.647724+00 2025-08-06 20:17:31.647732+00 f t LULI CAT 11 3.40 0.00 t \N 2025-08-07 \N \N FEMALE \N f \N 114 6018 +4818 2025-08-04 22:03:24.570733+00 2025-08-04 22:03:24.57074+00 f t Ragnar DOG 4 0.00 0.00 f \N 2025-08-06 \N \N MALE \N f 2 1208 841 +4914 2025-08-06 20:56:38.724771+00 2025-08-06 20:56:38.72478+00 f t Morito CAT 4 4.00 0.00 t \N 2025-08-07 \N \N MALE \N f 27 114 6023 +4925 2025-08-06 23:07:25.951551+00 2025-08-06 23:07:25.951557+00 f t Funny CAT 11 5.00 0.00 t \N 2025-08-11 \N \N \N \N f \N 113 6033 +4895 2025-08-06 17:31:22.047546+00 2025-08-06 17:31:22.047561+00 f t Gordo DOG \N 12.00 0.00 f \N \N 2025-08-07 \N \N MALE \N \N f \N \N 5997 +4831 2025-08-05 01:42:28.793078+00 2025-08-05 01:42:28.793088+00 f t Sasha DOG 0 15.00 0.00 f \N 2025-08-09 \N \N FEMALE \N f \N 113 5912 +4861 2025-08-05 21:49:32.928143+00 2025-08-05 21:49:32.928155+00 f t Bruno DOG \N 30.00 0.00 t \N 2023-01-04 2025-08-08 \N \N MALE \N \N f \N \N 5951 +4926 2025-08-06 23:07:46.588978+00 2025-08-06 23:07:46.588986+00 f t Tropi CAT 11 5.00 0.00 t \N 2025-08-08 \N \N \N \N f \N 113 6033 +4911 2025-08-06 20:26:25.067886+00 2025-08-06 20:26:25.067895+00 f t Tigre DOG 8 25.00 0.00 f \N 2025-08-08 \N \N MALE \N f \N 114 6019 +4871 2025-08-06 00:33:14.218442+00 2025-08-06 00:33:14.21845+00 f t Arya CAT \N 4.70 0.00 f \N \N 2025-08-11 \N \N MALE \N \N f \N \N 5967 +4927 2025-08-06 23:17:46.043007+00 2025-08-06 23:17:46.043015+00 f t PASCAL DOG 5 8.00 0.00 f \N 2025-08-12 \N \N MALE \N f 10 113 6034 +4884 2025-08-06 13:44:16.740602+00 2025-08-06 13:44:16.740611+00 f t Pistacho DOG \N 1.50 0.00 t \N \N 2025-08-13 \N \N MALE \N \N f \N \N 5985 +4916 2025-08-06 21:02:53.683535+00 2025-08-06 21:02:53.683546+00 f t Asia CAT \N 2.50 0.00 f \N 2025-08-21 \N \N FEMALE \N f \N 114 6024 +4935 2025-08-07 03:29:57.787389+00 2025-08-07 03:29:57.787402+00 f t Jano DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6046 +4936 2025-08-07 03:30:25.19453+00 2025-08-07 03:30:25.19454+00 f t Baby DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6047 +4937 2025-08-07 03:34:30.349296+00 2025-08-07 03:34:30.349309+00 f t Jano DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6048 +4938 2025-08-07 03:50:29.056506+00 2025-08-07 03:50:29.056516+00 f t Luis DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6049 +4939 2025-08-07 05:52:46.208449+00 2025-08-07 05:52:46.208463+00 f t G CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6051 +4940 2025-08-07 10:36:56.604567+00 2025-08-07 10:36:56.604578+00 f t Pirlo DOG \N 19.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6052 +4941 2025-08-07 11:56:03.730799+00 2025-08-07 11:56:03.730814+00 f t Chompiras DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6053 +4942 2025-08-07 12:24:57.195862+00 2025-08-07 12:24:57.195874+00 f t Uma DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6054 +4943 2025-08-07 12:38:35.508033+00 2025-08-07 12:38:35.508045+00 f t Simba DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6055 +4944 2025-08-07 12:40:04.096672+00 2025-08-07 12:40:04.096686+00 f t Patch DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6056 +4945 2025-08-07 12:41:23.494671+00 2025-08-07 12:41:23.494684+00 f t Clumsy DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6057 +4946 2025-08-07 12:47:10.807936+00 2025-08-07 12:47:10.807946+00 f t Facundo DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6058 +4947 2025-08-07 12:52:10.256295+00 2025-08-07 12:52:10.256307+00 f t Pipo DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6059 +4948 2025-08-07 12:53:40.484513+00 2025-08-07 12:53:40.484525+00 f t Tina CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6060 +4949 2025-08-07 12:59:32.523242+00 2025-08-07 12:59:32.523256+00 f t Gordi CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6061 +4950 2025-08-07 13:13:30.691446+00 2025-08-07 13:13:30.691455+00 f t Blue DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6063 +4951 2025-08-07 13:17:31.833109+00 2025-08-07 13:17:31.83312+00 f t Milo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6065 +4952 2025-08-07 13:19:09.948995+00 2025-08-07 13:19:09.949005+00 f t Neno DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6066 +4953 2025-08-07 13:20:09.758542+00 2025-08-07 13:20:09.758557+00 f t Trio CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6066 +4954 2025-08-07 13:23:21.12175+00 2025-08-07 13:23:21.121762+00 f t NEMO DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6067 +4955 2025-08-07 13:24:39.471555+00 2025-08-07 13:24:39.471564+00 f t Kuromi CAT \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6068 +4956 2025-08-07 13:26:07.076647+00 2025-08-07 13:26:07.076656+00 f t VV CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6067 +4957 2025-08-07 13:40:25.133291+00 2025-08-07 13:40:25.133303+00 f t Alex CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6069 +6000 2025-08-26 11:40:59.044236+00 2025-08-26 11:40:59.044247+00 f t Kero CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7314 +4958 2025-08-07 14:18:23.441158+00 2025-08-07 14:18:23.441166+00 f t Cairo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6070 +4959 2025-08-07 16:13:38.87023+00 2025-08-07 16:13:38.870244+00 f t Venus CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6072 +4960 2025-08-07 17:17:17.911032+00 2025-08-07 17:17:17.911042+00 f t Levi CAT \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6075 +4961 2025-08-07 17:20:40.945287+00 2025-08-07 17:20:40.945296+00 f t Eren CAT \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6075 +4962 2025-08-07 17:27:13.905948+00 2025-08-07 17:27:13.905957+00 f t Mecha CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6076 +4963 2025-08-07 17:37:49.609548+00 2025-08-07 17:37:49.609558+00 f t luna DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6077 +4964 2025-08-07 17:43:35.781705+00 2025-08-07 17:43:35.781715+00 f t LARA DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6079 +4965 2025-08-07 18:01:47.284373+00 2025-08-07 18:01:47.284384+00 f t panda DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6081 +4966 2025-08-07 18:05:39.866297+00 2025-08-07 18:05:39.866307+00 f t Luisito DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6082 +4967 2025-08-07 18:52:33.464126+00 2025-08-07 18:52:33.464138+00 f t NINA DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6083 +4968 2025-08-07 19:29:55.362935+00 2025-08-07 19:29:55.362943+00 f t Shiro CAT \N 4.00 0.00 t \N \N \N \N MALE \N f \N 113 3347 +6043 2025-08-27 11:49:39.988505+00 2025-08-27 11:49:39.988515+00 f t Kalú DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7357 +4970 2025-08-07 19:56:33.113083+00 2025-08-07 19:56:33.113092+00 f t Beljys DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6085 +4971 2025-08-07 20:20:15.451855+00 2025-08-07 20:20:15.45187+00 f t Thor DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6086 +4972 2025-08-07 21:00:47.321001+00 2025-08-07 21:00:47.321015+00 f t Ali DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6087 +4973 2025-08-07 21:13:03.531895+00 2025-08-07 21:13:03.531909+00 f t Athena DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6088 +4974 2025-08-07 23:16:14.178544+00 2025-08-07 23:16:14.178553+00 f t Perro DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6090 +4975 2025-08-07 23:37:43.046623+00 2025-08-07 23:37:43.046633+00 f t HERA CAT 3 4.00 0.00 t \N \N \N \N \N Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? No\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Si \N f \N 114 1976 +4976 2025-08-08 00:14:07.399721+00 2025-08-08 00:14:07.399734+00 f t Tori DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6091 +4977 2025-08-08 00:28:21.077835+00 2025-08-08 00:28:21.077846+00 f t Apolo CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6093 +4978 2025-08-08 00:46:21.570436+00 2025-08-08 00:46:21.570445+00 f t Chesna DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6094 +4979 2025-08-08 00:51:59.386025+00 2025-08-08 00:51:59.386035+00 f t Lola DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6095 +4980 2025-08-08 01:25:12.27982+00 2025-08-08 01:25:12.279834+00 f t Moro DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6098 +4981 2025-08-08 02:35:17.781737+00 2025-08-08 02:35:17.78175+00 f t Venezia DOG \N 5.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6100 +4982 2025-08-08 02:42:43.308849+00 2025-08-08 02:42:43.308857+00 f t Simon CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6101 +4983 2025-08-08 02:55:14.458473+00 2025-08-08 02:55:14.458487+00 f t Wendy CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6102 +4984 2025-08-08 02:58:31.738287+00 2025-08-08 02:58:31.738296+00 f t Wendy CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6103 +4985 2025-08-08 03:16:13.884264+00 2025-08-08 03:16:13.884278+00 f t Ace CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6104 +4986 2025-08-08 03:49:48.887805+00 2025-08-08 03:49:48.887816+00 f t Coco CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6105 +4987 2025-08-08 05:27:04.555453+00 2025-08-08 05:27:04.555473+00 f t Cocona CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6106 +4988 2025-08-08 05:51:21.740336+00 2025-08-08 05:51:21.740348+00 f t Kein DOG \N 48.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6107 +4989 2025-08-08 07:46:08.185315+00 2025-08-08 07:46:08.185328+00 f t Peque CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6108 +4990 2025-08-08 07:59:07.552914+00 2025-08-08 07:59:07.552927+00 f t P CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6109 +4991 2025-08-08 08:14:53.839459+00 2025-08-08 08:14:53.839472+00 f t Dalila DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6110 +4992 2025-08-08 09:03:04.812424+00 2025-08-08 09:03:04.812438+00 f t Roco DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6112 +4993 2025-08-08 10:19:35.619385+00 2025-08-08 10:19:35.619395+00 f t Ozzy Axel DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6113 +4994 2025-08-08 10:20:03.248751+00 2025-08-08 10:20:03.248765+00 f t Ozzy DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6113 +4995 2025-08-08 10:50:19.089871+00 2025-08-08 10:50:19.08988+00 f t Lola DOG \N 7.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6114 +4996 2025-08-08 12:11:28.190525+00 2025-08-08 12:11:28.190536+00 f t Ron CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6116 +4997 2025-08-08 12:48:55.079747+00 2025-08-08 12:48:55.079756+00 f t Igor DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6118 +4998 2025-08-08 13:04:13.52469+00 2025-08-08 13:04:13.5247+00 f t Gauss DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6120 +4999 2025-08-08 13:04:41.072752+00 2025-08-08 13:04:41.072761+00 f t Gauss CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6120 +5000 2025-08-08 13:57:16.624996+00 2025-08-08 13:57:16.62501+00 f t Benito CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6121 +5001 2025-08-08 13:59:50.962998+00 2025-08-08 13:59:50.96301+00 f t Luna DOG \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6122 +5002 2025-08-08 14:06:15.25816+00 2025-08-08 14:06:15.258172+00 f t Mango CAT \N 2.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6123 +5003 2025-08-08 14:10:53.948191+00 2025-08-08 14:10:53.948199+00 f t Goten DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6124 +5004 2025-08-08 14:13:50.263313+00 2025-08-08 14:13:50.263327+00 f t Natalia DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6125 +5005 2025-08-08 14:16:20.925305+00 2025-08-08 14:16:20.925319+00 f t Vito DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6126 +5006 2025-08-08 14:26:14.21039+00 2025-08-08 14:26:14.210403+00 f t Igor DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6127 +5007 2025-08-08 14:26:56.947968+00 2025-08-08 14:26:56.947981+00 f t Chimi CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6128 +5008 2025-08-08 14:40:56.590572+00 2025-08-08 14:40:56.590584+00 f t Igor DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6129 +5009 2025-08-08 14:43:42.396778+00 2025-08-08 14:43:42.396786+00 f t Igor DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6130 +5010 2025-08-08 14:50:34.250095+00 2025-08-08 14:50:34.250104+00 f t Igor DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6131 +5011 2025-08-08 14:58:21.297376+00 2025-08-08 14:58:21.297388+00 f t Sophia DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6133 +4887 2025-08-06 14:32:30.2945+00 2025-08-06 14:32:30.294511+00 f t Mora DOG \N 27.00 0.00 f \N \N 2025-08-20 \N \N FEMALE \N \N f \N \N 5987 +5012 2025-08-08 15:04:59.870112+00 2025-08-08 15:04:59.870121+00 f t Bonita DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6134 +5013 2025-08-08 15:25:37.667216+00 2025-08-08 15:25:37.667226+00 f t gaia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6135 +5014 2025-08-08 15:33:19.417377+00 2025-08-08 15:33:19.417391+00 f t Sandro CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6136 +5 2024-10-30 14:13:08.319+00 2024-10-30 14:13:08.319+00 f t Mascota de Marcela Ullman DOG \N 0.00 0.00 f \N 2024-01-13 \N \N \N No hay ningún tipo de información sobre la mascota. \N f \N 114 5 +5015 2025-08-08 16:09:41.364003+00 2025-08-08 16:09:41.364015+00 f t Runny DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6141 +5016 2025-08-08 16:19:35.130273+00 2025-08-08 16:19:35.130283+00 f t Arcoiris CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6143 +5017 2025-08-08 17:04:00.208371+00 2025-08-08 17:04:00.208384+00 f t Ikki CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6144 +5018 2025-08-08 17:11:40.127348+00 2025-08-08 17:11:40.12736+00 f t duche DOG \N 32.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6145 +5019 2025-08-08 17:50:11.890522+00 2025-08-08 17:50:11.890535+00 f t Catalina CAT \N 2.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6146 +5020 2025-08-08 18:41:36.468168+00 2025-08-08 18:41:36.46818+00 f t negro DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6149 +1756 2025-05-30 17:24:09.843438+00 2025-05-30 17:24:09.84345+00 f t Michi CAT 3 0.00 0.00 t \N 2025-06-02 \N \N FEMALE \N f \N 1026 1864 +1889 2025-06-02 20:16:44.309154+00 2025-06-02 20:16:44.309163+00 f t Amy CAT 2 3.70 0.00 t \N 2025-06-03 \N \N FEMALE \N f \N 1026 2042 +5022 2025-08-08 21:03:30.515762+00 2025-08-08 21:03:30.515775+00 f t Jjñu DOG \N 60.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6155 +5024 2025-08-08 21:07:28.534259+00 2025-08-08 21:07:28.53427+00 f t China DOG \N 60.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6157 +5025 2025-08-08 21:08:35.980933+00 2025-08-08 21:08:35.980942+00 f t Fiona CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6158 +5027 2025-08-08 21:08:56.582785+00 2025-08-08 21:08:56.582799+00 f t Fiona CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6158 +5028 2025-08-08 21:14:20.906778+00 2025-08-08 21:14:20.90679+00 f t China DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6160 +5029 2025-08-08 21:26:39.485658+00 2025-08-08 21:26:39.485668+00 f t Yuske CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6161 +5030 2025-08-08 21:35:19.201589+00 2025-08-08 21:35:19.201599+00 f t Yuske CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6162 +4969 2025-08-07 19:36:54.818316+00 2025-08-07 19:36:54.818323+00 f t TINA CAT 2 4.00 0.00 t 2023-04-23 2025-08-08 \N \N FEMALE \N f \N 113 6084 +5031 2025-08-08 22:17:19.068609+00 2025-08-08 22:17:19.068618+00 f t Atun CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6163 +5026 2025-08-08 21:08:42.637062+00 2025-08-08 21:08:42.637071+00 f t Gianni DOG 3 3.00 0.00 f \N 2025-08-08 \N \N MALE \N f 9 114 6159 +5032 2025-08-08 23:40:06.639767+00 2025-08-08 23:40:06.639778+00 f t Lola DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6165 +5033 2025-08-09 00:22:06.841392+00 2025-08-09 00:22:06.841406+00 f t Samuel CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6167 +5034 2025-08-09 00:33:31.215569+00 2025-08-09 00:33:31.21558+00 f t Morena DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6168 +5035 2025-08-09 00:46:31.624616+00 2025-08-09 00:46:31.62463+00 f t Mambo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6169 +5036 2025-08-09 01:02:07.969624+00 2025-08-09 01:02:07.969639+00 f t Coockie CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6172 +5037 2025-08-09 01:24:20.362414+00 2025-08-09 01:24:20.362428+00 f t Cookie CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6173 +5038 2025-08-09 01:26:48.617019+00 2025-08-09 01:26:48.617029+00 f t Robi DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6174 +5039 2025-08-09 01:31:03.973687+00 2025-08-09 01:31:03.973697+00 f t Ciro DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6175 +5040 2025-08-09 01:32:17.233202+00 2025-08-09 01:32:17.233211+00 f t Simon DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6175 +6001 2025-08-26 12:03:34.379184+00 2025-08-26 12:03:34.379194+00 f t Magui DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7317 +5042 2025-08-09 03:24:16.322511+00 2025-08-09 03:24:16.322524+00 f t Canelo CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6177 +5043 2025-08-09 03:27:14.410449+00 2025-08-09 03:27:14.410461+00 f t Salem CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6177 +5044 2025-08-09 03:48:40.208699+00 2025-08-09 03:48:40.208707+00 f t Uma DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6178 +6044 2025-08-27 12:39:21.202147+00 2025-08-27 12:39:21.202157+00 f t Linda CAT \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7358 +5046 2025-08-09 07:53:02.386346+00 2025-08-09 07:53:02.386363+00 f t Lila DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6180 +5047 2025-08-09 08:06:51.021661+00 2025-08-09 08:06:51.021672+00 f t Sasha DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6181 +5048 2025-08-09 10:12:29.132584+00 2025-08-09 10:12:29.1326+00 f t Catalina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6182 +5049 2025-08-09 11:15:11.306784+00 2025-08-09 11:15:11.306796+00 f t Lolo CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6183 +5050 2025-08-09 11:15:58.802558+00 2025-08-09 11:15:58.802568+00 f t Laia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6183 +5051 2025-08-09 11:21:13.355354+00 2025-08-09 11:21:13.355364+00 f t Apolo CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6184 +5052 2025-08-09 11:43:55.285114+00 2025-08-09 11:43:55.285128+00 f t Simon CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6185 +5053 2025-08-09 12:23:37.730063+00 2025-08-09 12:23:37.730072+00 f t Bianca CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6186 +5054 2025-08-09 12:31:02.281484+00 2025-08-09 12:31:02.281497+00 f t Bianca CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6189 +5055 2025-08-09 14:16:05.345701+00 2025-08-09 14:16:05.34571+00 f t Apolo CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6191 +5056 2025-08-09 14:16:55.246421+00 2025-08-09 14:16:55.246429+00 f t Negra CAT \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6191 +5057 2025-08-09 15:31:38.280015+00 2025-08-09 15:31:38.280028+00 f t Kata DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6192 +5058 2025-08-09 16:31:45.023813+00 2025-08-09 16:31:45.023823+00 f t Margarita CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6194 +2152 2025-06-08 19:38:36.107517+00 2025-06-08 19:38:36.107526+00 f t Lorenzo DOG 19 13.50 0.00 f \N 2025-08-09 \N \N MALE No toma medicación\r\nPuede asustarse ,pero no es un perro agresivo \N f 1 114 2385 +5045 2025-08-09 06:12:17.983163+00 2025-08-09 06:12:17.983194+00 f t Atun CAT 0 6.50 0.00 f \N 2025-08-13 \N \N MALE \N t \N 1208 6179 +5060 2025-08-09 17:39:00.176837+00 2025-08-09 17:39:00.176849+00 f t Moon CAT 7 4.00 0.00 t \N \N \N \N FEMALE \N f 27 1208 6196 +5077 2025-08-10 13:56:02.773599+00 2025-08-10 13:56:02.773612+00 f t Nina DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6223 +5061 2025-08-09 20:32:44.267557+00 2025-08-09 20:32:44.267568+00 f t pancho CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6199 +5062 2025-08-09 21:05:14.927456+00 2025-08-09 21:05:14.927471+00 f t Argi DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6200 +5063 2025-08-09 23:08:23.2295+00 2025-08-09 23:08:23.22951+00 f t Pupa DOG \N 28.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6205 +5064 2025-08-10 00:12:40.065602+00 2025-08-10 00:12:40.065617+00 f t B DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6207 +5065 2025-08-10 00:22:49.53639+00 2025-08-10 00:22:49.536404+00 f t Blanca DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6208 +5066 2025-08-10 00:28:44.703312+00 2025-08-10 00:28:44.703323+00 f t Ramses CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6209 +5067 2025-08-10 00:38:14.019735+00 2025-08-10 00:38:14.019749+00 f t Blanca CAT \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6210 +5068 2025-08-10 00:42:30.634447+00 2025-08-10 00:42:30.634461+00 f t Pepa CAT \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6211 +5069 2025-08-10 00:59:37.182015+00 2025-08-10 00:59:37.182027+00 f t Milo DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6212 +5070 2025-08-10 01:04:08.312746+00 2025-08-10 01:04:08.312834+00 f t Bruno DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6213 +5072 2025-08-10 03:50:58.443474+00 2025-08-10 03:50:58.443489+00 f t Gigi CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6215 +5073 2025-08-10 03:54:12.050723+00 2025-08-10 03:54:12.050734+00 f t Asia CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6216 +5074 2025-08-10 05:47:49.689403+00 2025-08-10 05:47:49.689416+00 f t Mishi DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6217 +5075 2025-08-10 06:14:29.921022+00 2025-08-10 06:14:29.921032+00 f t Kuki DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6218 +5076 2025-08-10 07:21:11.101617+00 2025-08-10 07:21:11.10163+00 f t Sanji CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6220 +5041 2025-08-09 03:23:47.524288+00 2025-08-09 03:23:47.524301+00 f t Roco DOG 0 15.00 0.00 t \N 2025-08-09 \N \N MALE \N f \N 113 6176 +5023 2025-08-08 21:03:57.475125+00 2025-08-08 21:03:57.475153+00 f t Gato de Magali CAT 6 5.00 0.00 t \N 2025-08-11 \N \N MALE \N f \N 114 6156 +5078 2025-08-10 14:09:51.060668+00 2025-08-10 14:09:51.06068+00 f t Igor DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6224 +5080 2025-08-10 15:24:39.317224+00 2025-08-10 15:24:39.317233+00 f t Pusheen CAT \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6226 +5081 2025-08-10 15:36:47.524776+00 2025-08-10 15:36:47.524786+00 f t Guido DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6227 +5082 2025-08-10 16:24:23.050823+00 2025-08-10 16:24:23.050835+00 f t Luna DOG \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6229 +5083 2025-08-10 16:25:07.822415+00 2025-08-10 16:25:07.82243+00 f t CHULA DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6230 +5079 2025-08-10 14:52:19.436516+00 2025-08-10 14:52:19.43653+00 f t Chimuelo CAT \N 4.00 0.00 f \N \N 2025-08-10 \N \N MALE \N \N f \N \N 6225 +5021 2025-08-08 20:57:32.828117+00 2025-08-08 20:57:32.828129+00 f t Perro de Franco DOG 15 30.00 0.00 f \N 2025-08-08 \N \N FEMALE \N f \N 114 6154 +5084 2025-08-10 16:27:01.9519+00 2025-08-10 16:27:01.951916+00 f t Luna DOG \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6231 +5085 2025-08-10 16:37:59.419776+00 2025-08-10 16:37:59.419785+00 f t Luna DOG \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6233 +5086 2025-08-10 17:02:29.134822+00 2025-08-10 17:02:29.134835+00 f t Mamba DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6235 +5087 2025-08-10 18:06:17.219852+00 2025-08-10 18:06:17.219865+00 f t Turbo CAT \N 1.20 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6237 +5071 2025-08-10 01:48:42.499258+00 2025-08-10 01:48:42.499271+00 f t Toto CAT \N 6.00 0.00 f \N \N 2025-08-10 \N \N MALE \N \N f \N \N 6214 +5143 2025-08-11 22:59:04.579651+00 2025-08-11 22:59:04.579662+00 f t Bowie CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6320 +5089 2025-08-10 19:13:05.225321+00 2025-08-10 19:13:05.225335+00 f t Junior CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6240 +5088 2025-08-10 18:57:56.097117+00 2025-08-10 18:57:56.097126+00 f t Odin DOG 3 10.00 0.00 f \N 2025-08-10 \N \N MALE \N f 5 1208 6238 +5090 2025-08-10 19:32:48.379589+00 2025-08-10 19:32:48.379598+00 f t Qi CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6241 +5091 2025-08-10 20:10:16.746383+00 2025-08-10 20:10:16.746395+00 f t Ipa DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6243 +5093 2025-08-10 20:59:01.714096+00 2025-08-10 20:59:01.714111+00 f t Malaika DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6245 +5094 2025-08-10 21:03:32.73828+00 2025-08-10 21:03:32.73829+00 f t Malaika DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6246 +5095 2025-08-10 21:09:13.990944+00 2025-08-10 21:09:13.990957+00 f t Chenyper CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6247 +5096 2025-08-10 21:57:56.87241+00 2025-08-10 21:57:56.872424+00 f t Oli DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6248 +5097 2025-08-10 22:25:56.982505+00 2025-08-10 22:25:56.982515+00 f t Fiona CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6249 +5098 2025-08-10 22:27:50.867097+00 2025-08-10 22:27:50.86711+00 f t Homero DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6251 +5099 2025-08-10 22:54:01.963827+00 2025-08-10 22:54:01.963839+00 f t Coti CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6253 +5100 2025-08-10 22:57:20.962615+00 2025-08-10 22:57:20.962624+00 f t Coti CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6254 +5101 2025-08-10 23:16:06.31904+00 2025-08-10 23:16:06.319054+00 f t Fiona y srek (2) DOG \N 26.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6255 +5102 2025-08-11 00:08:40.781986+00 2025-08-11 00:08:40.781998+00 f t charli DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6256 +5103 2025-08-11 00:18:41.370253+00 2025-08-11 00:18:41.370267+00 f t Negra DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6257 +5104 2025-08-11 02:05:29.782772+00 2025-08-11 02:05:29.782784+00 f t Roco DOG \N 38.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6258 +5105 2025-08-11 03:30:24.755841+00 2025-08-11 03:30:24.755855+00 f t Robert DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6259 +5106 2025-08-11 05:46:11.228706+00 2025-08-11 05:46:11.228716+00 f t Michichu CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6261 +5107 2025-08-11 10:07:39.405713+00 2025-08-11 10:07:39.405727+00 f t Michichu CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6262 +5108 2025-08-11 10:42:30.209374+00 2025-08-11 10:42:30.20939+00 f t Joy DOG \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6263 +5109 2025-08-11 11:56:12.289048+00 2025-08-11 11:56:12.289062+00 f t Sakura CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6264 +5150 2025-08-12 00:24:19.275856+00 2025-08-12 00:24:19.27587+00 f t Pandora DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6328 +5144 2025-08-11 22:59:48.20958+00 2025-08-11 22:59:48.209594+00 f t Poo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6321 +5110 2025-08-11 12:06:30.541865+00 2025-08-11 12:06:30.541881+00 f t gino DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6265 +5111 2025-08-11 12:42:57.997005+00 2025-08-11 12:42:57.997017+00 f t Uma DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6266 +5112 2025-08-11 13:05:48.752909+00 2025-08-11 13:05:48.752922+00 f t Otto CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6267 +5113 2025-08-11 13:40:46.758804+00 2025-08-11 13:40:46.758817+00 f t Tinto DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6270 +5114 2025-08-11 13:40:59.537653+00 2025-08-11 13:40:59.537665+00 f t Sumba DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6269 +5115 2025-08-11 14:05:26.630885+00 2025-08-11 14:05:26.630899+00 f t kenzy DOG \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6272 +5116 2025-08-11 14:31:34.451652+00 2025-08-11 14:31:34.451666+00 f t Almendra CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6275 +5059 2025-08-09 17:36:29.818958+00 2025-08-09 17:36:29.81897+00 f t Mew CAT 9 6.00 0.00 t \N 2025-08-09 \N \N FEMALE \N f 27 1208 6196 +5092 2025-08-10 20:53:55.20667+00 2025-08-10 20:53:55.206677+00 f t Santino CAT 12 8.00 0.00 t \N 2025-08-10 \N \N MALE \N f 27 1208 6244 +4910 2025-08-06 20:18:44.411865+00 2025-08-06 20:18:44.411874+00 f t CIRO CAT 12 7.80 0.00 t El macho se estesa, se asusta, no ataca \N 2025-08-07 \N \N MALE \N f \N 114 6018 +5117 2025-08-11 15:36:27.544882+00 2025-08-11 15:36:27.544896+00 f t Houpie DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6276 +5118 2025-08-11 15:38:52.986285+00 2025-08-11 15:38:52.986296+00 f t Houpie DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6277 +5119 2025-08-11 16:02:13.337812+00 2025-08-11 16:02:13.337834+00 f t Nina DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6278 +5120 2025-08-11 16:16:43.005999+00 2025-08-11 16:16:43.006009+00 f t Kiara DOG \N 25.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6279 +5121 2025-08-11 16:18:32.448802+00 2025-08-11 16:18:32.448816+00 f t Nene DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6280 +5122 2025-08-11 16:33:39.341835+00 2025-08-11 16:33:39.341847+00 f t Titan DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6281 +5124 2025-08-11 17:26:56.818193+00 2025-08-11 17:26:56.818204+00 f t Simon CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6285 +5125 2025-08-11 17:59:40.022772+00 2025-08-11 17:59:40.022785+00 f t Mike DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6286 +5126 2025-08-11 18:24:57.509557+00 2025-08-11 18:24:57.50957+00 f t Mili DOG \N 5.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6289 +5127 2025-08-11 18:36:51.327937+00 2025-08-11 18:36:51.327947+00 f t Kala DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6291 +6002 2025-08-26 12:03:52.792846+00 2025-08-26 12:03:52.792852+00 f t Tomi DOG \N 30.00 0.00 f \N \N \N \N MALE \N f 3 113 7316 +5129 2025-08-11 19:04:51.794215+00 2025-08-11 19:04:51.794224+00 f t Cuba CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6292 +5131 2025-08-11 19:44:55.435911+00 2025-08-11 19:44:55.435924+00 f t Nero CAT \N 0.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6295 +5132 2025-08-11 19:55:21.856921+00 2025-08-11 19:55:21.856935+00 f t Ozo DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6296 +5133 2025-08-11 20:13:28.419654+00 2025-08-11 20:13:28.419669+00 f t Milo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6297 +5134 2025-08-11 20:22:26.52238+00 2025-08-11 20:22:26.522393+00 f t Tae CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6299 +5135 2025-08-11 20:25:18.741745+00 2025-08-11 20:25:18.741758+00 f t Lupita Luna DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6300 +5136 2025-08-11 20:57:56.902137+00 2025-08-11 20:57:56.902151+00 f t Tana DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6307 +5137 2025-08-11 21:18:55.029713+00 2025-08-11 21:18:55.029728+00 f t Potra DOG \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6309 +5138 2025-08-11 22:02:57.470701+00 2025-08-11 22:02:57.470716+00 f t Luna DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6312 +5139 2025-08-11 22:28:24.154064+00 2025-08-11 22:28:24.154077+00 f t Moro DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6314 +5140 2025-08-11 22:29:02.987172+00 2025-08-11 22:29:02.987187+00 f t Arturo DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6315 +5123 2025-08-11 16:34:21.478133+00 2025-08-11 16:34:21.478145+00 f t TYGUER CAT \N 6.00 0.00 f \N \N 2025-08-14 \N \N MALE \N \N f \N \N 6282 +5141 2025-08-11 22:32:20.995764+00 2025-08-11 22:32:20.995777+00 f t Moro DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6316 +5142 2025-08-11 22:50:27.181237+00 2025-08-11 22:50:27.181251+00 f t Felipe DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6318 +5145 2025-08-11 23:34:15.089684+00 2025-08-11 23:34:15.089696+00 f t Haru DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6323 +505 2025-02-07 18:38:28.078121+00 2025-02-07 18:38:28.078128+00 f t NINO ABRAHAM CAT 15 7.00 0.00 t 2009-12-02 2025-08-11 \N \N MALE \N f 29 111 425 +5146 2025-08-11 23:49:51.093831+00 2025-08-11 23:49:51.093842+00 f t Alexa DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6324 +5147 2025-08-11 23:51:47.072509+00 2025-08-11 23:51:47.07252+00 f t Pupy DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6325 +5148 2025-08-12 00:05:52.282675+00 2025-08-12 00:05:52.282689+00 f t Lali DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6326 +5149 2025-08-12 00:18:02.540967+00 2025-08-12 00:18:02.54098+00 f t Sultan DOG \N 1.70 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6327 +5151 2025-08-12 00:50:32.177464+00 2025-08-12 00:50:32.177474+00 f t 1 CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6330 +5152 2025-08-12 01:18:09.249295+00 2025-08-12 01:18:09.24931+00 f t 1 CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6331 +5153 2025-08-12 01:23:41.767349+00 2025-08-12 01:23:41.767362+00 f t 1 CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6332 +5154 2025-08-12 01:56:52.149309+00 2025-08-12 01:56:52.14932+00 f t Maia DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6334 +5155 2025-08-12 02:23:38.750171+00 2025-08-12 02:23:38.750187+00 f t Lola DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6335 +5156 2025-08-12 02:42:16.251559+00 2025-08-12 02:42:16.251574+00 f t Blanky DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6337 +5157 2025-08-12 02:46:35.229401+00 2025-08-12 02:46:35.229412+00 f t Paye DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6338 +5130 2025-08-11 19:15:28.883984+00 2025-08-11 19:15:28.883994+00 f t Juniper CAT 6 0.00 0.00 f \N 2025-08-13 \N \N MALE \N f 27 1208 6293 +5158 2025-08-12 02:48:07.998679+00 2025-08-12 02:48:07.998694+00 f t Paye DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6338 +5159 2025-08-12 04:28:09.473915+00 2025-08-12 04:28:09.473928+00 f t Sasha DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6339 +5160 2025-08-12 07:48:07.682518+00 2025-08-12 07:48:07.682533+00 f t Luna CAT \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6340 +5161 2025-08-12 08:40:59.082476+00 2025-08-12 08:40:59.082487+00 f t 1 CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6341 +5162 2025-08-12 09:16:18.375727+00 2025-08-12 09:16:18.375737+00 f t 1 CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6343 +5163 2025-08-12 09:43:19.379799+00 2025-08-12 09:43:19.379812+00 f t Woody DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6344 +5164 2025-08-12 10:25:33.311775+00 2025-08-12 10:25:33.311789+00 f t Martina DOG \N 4.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6345 +5165 2025-08-12 10:50:53.384481+00 2025-08-12 10:50:53.384514+00 f t Ciro DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6347 +5166 2025-08-12 11:45:21.598644+00 2025-08-12 11:45:21.598656+00 f t Tobias DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6348 +5167 2025-08-12 11:50:15.002833+00 2025-08-12 11:50:15.002847+00 f t Tobias CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6349 +5168 2025-08-12 12:07:10.107827+00 2025-08-12 12:07:10.107839+00 f t mao CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6350 +5169 2025-08-12 12:28:47.975811+00 2025-08-12 12:28:47.975824+00 f t Limón DOG \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6353 +5171 2025-08-12 12:36:42.807787+00 2025-08-12 12:36:42.807803+00 f t Lulu CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6355 +5172 2025-08-12 12:37:54.634499+00 2025-08-12 12:37:54.634512+00 f t Milo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6351 +5173 2025-08-12 13:18:34.258475+00 2025-08-12 13:18:34.258485+00 f t Morty CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6357 +5174 2025-08-12 13:24:11.519586+00 2025-08-12 13:24:11.519597+00 f t Antonio DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6359 +8504 2025-10-08 00:36:37.472271+00 2025-10-08 00:36:37.472282+00 f t Peke DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10243 +5176 2025-08-12 15:00:11.010335+00 2025-08-12 15:00:11.010351+00 f t Ona CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6360 +5177 2025-08-12 15:17:22.642553+00 2025-08-12 15:17:22.642562+00 f t Kira DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6361 +5178 2025-08-12 15:59:26.341023+00 2025-08-12 15:59:26.341035+00 f t pepi DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6362 +5179 2025-08-12 16:36:11.788505+00 2025-08-12 16:36:11.788519+00 f t jerry DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6363 +5180 2025-08-12 16:40:00.738592+00 2025-08-12 16:40:00.738605+00 f t hannibal DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6364 +5181 2025-08-12 16:40:51.857644+00 2025-08-12 16:40:51.857657+00 f t Tina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6365 +5182 2025-08-12 17:15:32.193964+00 2025-08-12 17:15:32.193977+00 f t Cati CAT \N 450.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6368 +5184 2025-08-12 18:18:02.199949+00 2025-08-12 18:18:02.199964+00 f t Oliver DOG \N 60.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6371 +5185 2025-08-12 18:30:53.505843+00 2025-08-12 18:30:53.505858+00 f t Nacho DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6373 +5186 2025-08-12 18:36:19.693044+00 2025-08-12 18:36:19.693058+00 f t Boni DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6374 +5188 2025-08-12 19:19:56.704377+00 2025-08-12 19:19:56.70439+00 f t mocka DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6376 +5189 2025-08-12 19:34:01.798801+00 2025-08-12 19:34:01.798817+00 f t Simona DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6377 +5190 2025-08-12 19:58:37.622093+00 2025-08-12 19:58:37.622104+00 f t Negra DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6378 +5191 2025-08-12 20:17:55.096499+00 2025-08-12 20:17:55.096513+00 f t Jason CAT \N 4.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6379 +5192 2025-08-12 20:47:12.21579+00 2025-08-12 20:47:12.215806+00 f t Matcha CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6380 +5224 2025-08-13 12:42:45.722622+00 2025-08-13 12:42:45.722636+00 f t Rufina DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6418 +5193 2025-08-12 22:29:56.142671+00 2025-08-12 22:29:56.142684+00 f t Luna DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6385 +5194 2025-08-12 22:32:43.657923+00 2025-08-12 22:32:43.657937+00 f t Luna DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6386 +5195 2025-08-12 22:56:22.391007+00 2025-08-12 22:56:22.391016+00 f t Felix DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6388 +5196 2025-08-12 23:07:27.053364+00 2025-08-12 23:07:27.053377+00 f t Lolo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6389 +5225 2025-08-13 12:47:54.964221+00 2025-08-13 12:47:54.964231+00 f t SOL OSSUNA DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6420 +5197 2025-08-12 23:35:31.646852+00 2025-08-12 23:35:31.646862+00 f t Manuel DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6390 +5198 2025-08-12 23:54:13.193863+00 2025-08-12 23:54:13.193875+00 f t Rafa CAT \N 1.60 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6391 +5170 2025-08-12 12:30:42.338555+00 2025-08-12 12:30:42.338568+00 f t Limón CAT \N 2.00 0.00 t \N \N 2025-08-16 \N \N MALE \N \N f \N \N 6354 +6003 2025-08-26 12:29:55.779232+00 2025-08-26 12:29:55.779246+00 f t Mia DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7318 +5200 2025-08-13 00:15:58.467496+00 2025-08-13 00:15:58.467506+00 f t Paco DOG \N 37.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6393 +5201 2025-08-13 00:19:37.75731+00 2025-08-13 00:19:37.75732+00 f t Panchito DOG \N 2.20 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6394 +5202 2025-08-13 00:31:48.541188+00 2025-08-13 00:31:48.541203+00 f t Thor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6395 +5203 2025-08-13 00:55:05.280953+00 2025-08-13 00:55:05.28097+00 f t Milo DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6396 +5204 2025-08-13 00:58:28.556652+00 2025-08-13 00:58:28.556666+00 f t Rocco DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6398 +5205 2025-08-13 00:58:28.777421+00 2025-08-13 00:58:28.777433+00 f t Mora DOG \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6397 +5232 2025-08-13 13:37:02.683005+00 2025-08-13 13:37:02.683017+00 f t dsadsadsa DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6430 +5206 2025-08-13 01:14:52.526076+00 2025-08-13 01:14:52.526088+00 f t Maggie CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6399 +5207 2025-08-13 01:15:43.911874+00 2025-08-13 01:15:43.911891+00 f t Jjjjj CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6400 +5208 2025-08-13 01:17:49.074953+00 2025-08-13 01:17:49.074967+00 f t Maggie CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6401 +5209 2025-08-13 01:38:25.751607+00 2025-08-13 01:38:25.751616+00 f t Pochi DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6402 +5210 2025-08-13 02:11:46.89979+00 2025-08-13 02:11:46.899803+00 f t Titan DOG \N 26.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6403 +5211 2025-08-13 02:35:33.860253+00 2025-08-13 02:35:33.860264+00 f t Pipo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6404 +5212 2025-08-13 02:46:02.77158+00 2025-08-13 02:46:02.771741+00 f t Tam DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6405 +5213 2025-08-13 03:00:22.697966+00 2025-08-13 03:00:22.697979+00 f t Nina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6406 +5214 2025-08-13 04:45:35.475325+00 2025-08-13 04:45:35.475341+00 f t Mambo DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6407 +5187 2025-08-12 19:12:37.318428+00 2025-08-12 19:12:37.318445+00 f t Teiger CAT \N 4.00 0.00 f \N \N 2025-08-12 \N \N FEMALE \N \N f \N \N 6375 +5215 2025-08-13 07:22:14.684979+00 2025-08-13 07:22:14.684995+00 f t Zeus CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6408 +5216 2025-08-13 07:25:27.25653+00 2025-08-13 07:25:27.256546+00 f t Zeus CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6409 +5217 2025-08-13 07:29:54.805638+00 2025-08-13 07:29:54.805651+00 f t Akira CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6409 +5218 2025-08-13 09:12:27.331796+00 2025-08-13 09:12:27.33181+00 f t Louise DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6410 +5219 2025-08-13 10:16:12.996243+00 2025-08-13 10:16:12.996259+00 f t Lucifer CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6411 +5220 2025-08-13 11:21:11.469323+00 2025-08-13 11:21:11.469334+00 f t titan DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6413 +5221 2025-08-13 11:21:15.692264+00 2025-08-13 11:21:15.692279+00 f t Lali DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6414 +5222 2025-08-13 12:20:29.915733+00 2025-08-13 12:20:29.915747+00 f t Simba DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6416 +5223 2025-08-13 12:23:02.304636+00 2025-08-13 12:23:02.30465+00 f t Tango CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6417 +5226 2025-08-13 12:53:51.76569+00 2025-08-13 12:53:51.765704+00 f t Chavo DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6421 +5227 2025-08-13 12:55:12.702958+00 2025-08-13 12:55:12.702973+00 f t Sol Ossuna DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6422 +5228 2025-08-13 12:58:07.660421+00 2025-08-13 12:58:07.660436+00 f t Naomi DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6425 +5229 2025-08-13 13:07:00.418476+00 2025-08-13 13:07:00.418489+00 f t Enzo DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6427 +5230 2025-08-13 13:12:56.865168+00 2025-08-13 13:12:56.865182+00 f t Lola CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6428 +6045 2025-08-27 13:04:08.578221+00 2025-08-27 13:04:08.578233+00 f t Flaca CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7359 +5231 2025-08-13 13:26:46.001345+00 2025-08-13 13:26:46.001359+00 f t Rocco DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6429 +5233 2025-08-13 13:37:30.84462+00 2025-08-13 13:37:30.84463+00 f t 12111 DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6430 +5234 2025-08-13 13:41:27.660749+00 2025-08-13 13:41:27.660762+00 f t Luna DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6431 +5235 2025-08-13 13:49:19.120432+00 2025-08-13 13:49:19.120442+00 f t Rocco DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6432 +5128 2025-08-11 18:42:52.606308+00 2025-08-11 18:42:52.606316+00 f t Bolt DOG 4 4.00 0.00 f \N 2025-08-20 \N \N MALE \N f 8 1208 6290 +5183 2025-08-12 18:15:45.380349+00 2025-08-12 18:15:45.380357+00 f t Poppy CAT \N 0.00 0.00 f \N 2025-08-14 \N \N \N \N f 27 1208 165 +5236 2025-08-13 14:19:40.126601+00 2025-08-13 14:19:40.126612+00 f t firu DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6433 +5237 2025-08-13 14:44:15.212565+00 2025-08-13 14:44:15.212581+00 f t Cala CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6435 +5238 2025-08-13 14:59:01.186826+00 2025-08-13 14:59:01.186838+00 f t Simba DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6437 +5239 2025-08-13 15:00:06.063882+00 2025-08-13 15:00:06.063893+00 f t Cata CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6437 +5240 2025-08-13 15:00:21.531057+00 2025-08-13 15:00:21.531074+00 f t Milanesa CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6438 +5241 2025-08-13 15:09:23.548573+00 2025-08-13 15:09:23.54858+00 f t Peluca DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6439 +5242 2025-08-13 15:16:36.621034+00 2025-08-13 15:16:36.621044+00 f t Mima DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6440 +5243 2025-08-13 15:39:43.994223+00 2025-08-13 15:39:43.994236+00 f t Nina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6443 +5244 2025-08-13 15:40:42.625071+00 2025-08-13 15:40:42.625086+00 f t Eva CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6443 +5245 2025-08-13 15:42:51.488963+00 2025-08-13 15:42:51.488976+00 f t Maia DOG \N 4.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6444 +5246 2025-08-13 15:44:02.358486+00 2025-08-13 15:44:02.358501+00 f t Eva CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6445 +5248 2025-08-13 16:51:05.096023+00 2025-08-13 16:51:05.09604+00 f t Merlina CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6448 +5249 2025-08-13 16:57:58.461008+00 2025-08-13 16:57:58.46102+00 f t Bacan DOG \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6449 +5250 2025-08-13 17:17:45.935655+00 2025-08-13 17:17:45.935669+00 f t Kira DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6450 +5251 2025-08-13 17:18:38.163912+00 2025-08-13 17:18:38.163922+00 f t Kovu CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6450 +6004 2025-08-26 13:03:32.332391+00 2025-08-26 13:03:32.332405+00 f t Frida CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7319 +5253 2025-08-13 17:44:50.724058+00 2025-08-13 17:44:50.724072+00 f t Mojito DOG \N 19.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6452 +5254 2025-08-13 17:52:46.990875+00 2025-08-13 17:52:46.990884+00 f t Coquita DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6453 +5255 2025-08-13 18:10:14.423867+00 2025-08-13 18:10:14.423881+00 f t Missy CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6454 +5257 2025-08-13 18:52:38.867942+00 2025-08-13 18:52:38.867955+00 f t Víctor DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6457 +5258 2025-08-13 18:53:30.343844+00 2025-08-13 18:53:30.343858+00 f t Victor DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6457 +5259 2025-08-13 19:04:15.812982+00 2025-08-13 19:04:15.812995+00 f t Toulouse CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6458 +5260 2025-08-13 19:04:55.133661+00 2025-08-13 19:04:55.133674+00 f t Lucho CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6458 +5261 2025-08-13 19:54:52.930698+00 2025-08-13 19:54:52.930707+00 f t Poty CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6459 +5262 2025-08-13 20:42:43.69987+00 2025-08-13 20:42:43.69988+00 f t Mara DOG \N 28.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6460 +5263 2025-08-13 21:33:06.239228+00 2025-08-13 21:33:06.239242+00 f t Antonia DOG \N 2.70 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6461 +5264 2025-08-13 21:44:10.336793+00 2025-08-13 21:44:10.336803+00 f t Billy CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6462 +5265 2025-08-13 21:53:46.195392+00 2025-08-13 21:53:46.195401+00 f t Igor CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6463 +5266 2025-08-13 22:03:24.540265+00 2025-08-13 22:03:24.540279+00 f t REY DOG \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6464 +5267 2025-08-13 22:55:07.734543+00 2025-08-13 22:55:07.734558+00 f t Teo DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6465 +5268 2025-08-13 23:18:13.595591+00 2025-08-13 23:18:13.595604+00 f t Chinita DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6466 +5269 2025-08-14 00:07:01.037004+00 2025-08-14 00:07:01.037021+00 f t Simon DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6467 +5270 2025-08-14 00:14:06.24796+00 2025-08-14 00:14:06.247976+00 f t Pinki DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6468 +6046 2025-08-27 13:18:43.033306+00 2025-08-27 13:18:43.033369+00 f t Maru DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7360 +5301 2025-08-14 14:12:16.602585+00 2025-08-14 14:12:16.602601+00 f t teo DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6503 +6060 2025-08-27 18:31:08.230973+00 2025-08-27 18:31:08.230986+00 f t Atenea DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7377 +5272 2025-08-14 00:29:14.036424+00 2025-08-14 00:29:14.036434+00 f t Grimm Reaper DOG 1 6.50 0.00 f \N \N \N \N MALE \N f 10 114 6470 +5256 2025-08-13 18:13:41.837831+00 2025-08-13 18:13:41.837841+00 f t Carlos CAT \N 4.50 0.00 t \N 2019-08-17 2025-08-20 \N \N MALE \N \N f \N \N 6456 +5274 2025-08-14 02:26:13.093436+00 2025-08-14 02:26:13.093447+00 f t Jazmin CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6474 +5275 2025-08-14 02:31:14.364209+00 2025-08-14 02:31:14.364224+00 f t Bastet CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6475 +5276 2025-08-14 02:44:27.79661+00 2025-08-14 02:44:27.796621+00 f t Macchiata DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6476 +5277 2025-08-14 02:47:34.589628+00 2025-08-14 02:47:34.589641+00 f t Valentina CAT \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6477 +5278 2025-08-14 02:53:59.844012+00 2025-08-14 02:53:59.844024+00 f t Floppy DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6480 +5279 2025-08-14 03:47:53.519233+00 2025-08-14 03:47:53.519246+00 f t Uma DOG \N 28.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6481 +5280 2025-08-14 03:50:07.748711+00 2025-08-14 03:50:07.748726+00 f t Uma DOG \N 28.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6481 +5281 2025-08-14 03:51:32.829962+00 2025-08-14 03:51:32.829971+00 f t Uma DOG \N 28.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6481 +5282 2025-08-14 04:34:16.557894+00 2025-08-14 04:34:16.557905+00 f t Thor DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6483 +5283 2025-08-14 04:34:30.340065+00 2025-08-14 04:34:30.340078+00 f t Thor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6483 +5284 2025-08-14 04:35:22.629373+00 2025-08-14 04:35:22.629384+00 f t Romeo CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6484 +5285 2025-08-14 04:37:20.484842+00 2025-08-14 04:37:20.484851+00 f t Thor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6485 +5286 2025-08-14 04:38:01.569858+00 2025-08-14 04:38:01.569872+00 f t Thor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6485 +5287 2025-08-14 04:38:32.339013+00 2025-08-14 04:38:32.339027+00 f t Thor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6485 +5288 2025-08-14 04:39:15.377595+00 2025-08-14 04:39:15.377609+00 f t Thor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6486 +5289 2025-08-14 04:40:00.315825+00 2025-08-14 04:40:00.315838+00 f t Thor DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6486 +5290 2025-08-14 04:40:22.975205+00 2025-08-14 04:40:22.975216+00 f t Thor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6486 +5291 2025-08-14 04:41:07.677909+00 2025-08-14 04:41:07.677918+00 f t Thor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6487 +5292 2025-08-14 05:11:42.556534+00 2025-08-14 05:11:42.556545+00 f t Sultan DOG \N 1.70 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6488 +5293 2025-08-14 05:16:48.959214+00 2025-08-14 05:16:48.959229+00 f t Ciro DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6489 +5294 2025-08-14 05:35:09.91189+00 2025-08-14 05:35:09.911905+00 f t Puppi DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6491 +5295 2025-08-14 05:37:51.615524+00 2025-08-14 05:37:51.615533+00 f t Puppi DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6492 +5296 2025-08-14 12:17:25.126022+00 2025-08-14 12:17:25.126036+00 f t TEODORO CAT \N 2.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6496 +5297 2025-08-14 12:54:07.118189+00 2025-08-14 12:54:07.118198+00 f t yuri CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6497 +5298 2025-08-14 12:55:00.949105+00 2025-08-14 12:55:00.949118+00 f t Leon CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6498 +5299 2025-08-14 12:55:25.294174+00 2025-08-14 12:55:25.294185+00 f t Kaiser CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6499 +5300 2025-08-14 13:27:29.316794+00 2025-08-14 13:27:29.316806+00 f t Sirius CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6501 +5302 2025-08-14 14:15:49.819824+00 2025-08-14 14:15:49.819837+00 f t osito DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6504 +5303 2025-08-14 14:20:11.381725+00 2025-08-14 14:20:11.381739+00 f t Arya CAT \N 5.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6505 +5304 2025-08-14 14:32:25.633563+00 2025-08-14 14:32:25.633576+00 f t Berni DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6506 +5305 2025-08-14 14:33:30.237756+00 2025-08-14 14:33:30.237768+00 f t Reina DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6507 +5306 2025-08-14 14:42:25.750626+00 2025-08-14 14:42:25.750638+00 f t Kuki DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6508 +5307 2025-08-14 14:50:28.534487+00 2025-08-14 14:50:28.534501+00 f t Arya CAT \N 5.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6509 +5308 2025-08-14 14:51:08.498642+00 2025-08-14 14:51:08.498654+00 f t Amelie CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6509 +5309 2025-08-14 15:12:58.217102+00 2025-08-14 15:12:58.217112+00 f t Daisy CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6510 +5310 2025-08-14 15:17:53.164528+00 2025-08-14 15:17:53.164538+00 f t Gala DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6511 +5311 2025-08-14 15:25:41.010973+00 2025-08-14 15:25:41.010985+00 f t Muma CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6512 +5312 2025-08-14 15:42:19.95161+00 2025-08-14 15:42:19.951623+00 f t Enzo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6514 +5247 2025-08-13 16:41:36.514246+00 2025-08-13 16:41:36.514262+00 f t Suri CAT \N 4.00 0.00 f \N \N 2025-08-18 \N \N FEMALE \N \N f \N \N 6447 +5273 2025-08-14 00:30:07.252327+00 2025-08-14 00:30:07.252337+00 f t Ashford DOG \N 4.50 0.00 f \N 2025-08-16 \N \N MALE \N f 5 114 6470 +5199 2025-08-13 00:13:52.7141+00 2025-08-13 00:13:52.714109+00 f t Naomi DOG 9 4.00 0.00 f \N 2025-08-19 \N \N FEMALE Tiene un carácter particular Naomi si, es nerviosa, se estresa y ladra por casi todo pobrecita \N f 8 114 6392 +5313 2025-08-14 15:45:20.452737+00 2025-08-14 15:45:20.452746+00 f t Benjamin DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6515 +5314 2025-08-14 15:51:00.603347+00 2025-08-14 15:51:00.60336+00 f t Manchita DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6516 +5316 2025-08-14 16:11:43.979927+00 2025-08-14 16:11:43.979936+00 f t Wolfy (Pastor Belga Groenendael) DOG \N 25.00 62.00 f \N 2021-03-19 \N \N \N MALE Tiene operaciones en las patas delanteras por un accidente \N f \N \N 6519 +6005 2025-08-26 13:30:12.06958+00 2025-08-26 13:30:12.069593+00 f t Purqui CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7320 +5318 2025-08-14 16:22:30.879952+00 2025-08-14 16:22:30.879965+00 f t Princesa DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6522 +5319 2025-08-14 16:24:31.156722+00 2025-08-14 16:24:31.156734+00 f t atenea DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6523 +5320 2025-08-14 17:18:33.993301+00 2025-08-14 17:18:33.993314+00 f t Lely DOG \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6524 +5321 2025-08-14 17:59:27.87243+00 2025-08-14 17:59:27.872443+00 f t Tronquitos CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6525 +5322 2025-08-14 18:01:51.246355+00 2025-08-14 18:01:51.246369+00 f t Pelusa CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6525 +5323 2025-08-14 18:03:10.434319+00 2025-08-14 18:03:10.434333+00 f t Velazquez CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6525 +5324 2025-08-14 18:07:09.825425+00 2025-08-14 18:07:09.825436+00 f t Tronquitos CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6526 +5325 2025-08-14 18:51:43.869154+00 2025-08-14 18:51:43.869163+00 f t Juana DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6528 +5326 2025-08-14 18:57:05.146433+00 2025-08-14 18:57:05.146447+00 f t Juana DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6529 +5327 2025-08-14 18:58:10.693886+00 2025-08-14 18:58:10.6939+00 f t Juana DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6530 +5328 2025-08-14 18:58:52.145596+00 2025-08-14 18:58:52.14561+00 f t Kuku CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6531 +5329 2025-08-14 19:00:25.67208+00 2025-08-14 19:00:25.672094+00 f t Big mama DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6532 +5330 2025-08-14 19:09:22.421526+00 2025-08-14 19:09:22.421534+00 f t Edna CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6533 +5331 2025-08-14 19:09:44.454668+00 2025-08-14 19:09:44.454682+00 f t Juana DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6534 +5332 2025-08-14 19:10:48.348338+00 2025-08-14 19:10:48.348351+00 f t Juana DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6535 +5333 2025-08-14 19:11:37.52055+00 2025-08-14 19:11:37.520564+00 f t Juans DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6536 +5334 2025-08-14 19:49:30.700501+00 2025-08-14 19:49:30.700511+00 f t Mishka CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6537 +5335 2025-08-14 19:51:16.984087+00 2025-08-14 19:51:16.984099+00 f t Pupi CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6537 +5336 2025-08-14 19:51:44.168283+00 2025-08-14 19:51:44.168292+00 f t Nicolino CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6537 +5337 2025-08-14 20:16:37.32736+00 2025-08-14 20:16:37.327369+00 f t Juana DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6540 +5338 2025-08-14 20:27:57.85798+00 2025-08-14 20:27:57.857988+00 f t Milo DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6543 +5339 2025-08-14 20:29:27.666393+00 2025-08-14 20:29:27.666406+00 f t Vilma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6544 +5340 2025-08-14 20:52:16.587949+00 2025-08-14 20:52:16.587958+00 f t Tronquitos CAT 8 6.00 0.00 t \N \N \N \N MALE \N f \N 114 6545 +5342 2025-08-14 20:53:46.637164+00 2025-08-14 20:53:46.637172+00 f t Velazquez CAT 5 5.00 0.00 t \N \N \N \N MALE \N f \N 114 6545 +5343 2025-08-14 21:41:37.008919+00 2025-08-14 21:41:37.008928+00 f t Mia CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6547 +5344 2025-08-14 22:02:36.369846+00 2025-08-14 22:02:36.369855+00 f t Ciro DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6548 +5341 2025-08-14 20:52:51.070847+00 2025-08-14 20:52:51.070856+00 f t Pelusa CAT 6 5.00 0.00 t \N 2025-08-19 \N \N MALE \N f \N 114 6545 +5345 2025-08-14 22:34:03.262672+00 2025-08-14 22:34:03.262685+00 f t Tom CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6549 +5346 2025-08-14 22:39:50.000917+00 2025-08-14 22:39:50.000929+00 f t Fruto Emilia CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6551 +5347 2025-08-14 22:49:57.562477+00 2025-08-14 22:49:57.562487+00 f t Pampa DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6553 +5348 2025-08-14 23:25:07.323465+00 2025-08-14 23:25:07.32348+00 f t Nuna DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6554 +5349 2025-08-14 23:25:35.027724+00 2025-08-14 23:25:35.027741+00 f t Nuna CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6554 +5350 2025-08-14 23:26:44.61819+00 2025-08-14 23:26:44.618203+00 f t Maitena CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6554 +5351 2025-08-14 23:27:18.965471+00 2025-08-14 23:27:18.965481+00 f t Milenka CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6554 +5352 2025-08-14 23:28:07.632189+00 2025-08-14 23:28:07.6322+00 f t Maitena CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6554 +5353 2025-08-14 23:32:13.616055+00 2025-08-14 23:32:13.616068+00 f t Michu, princesa y peki CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6555 +5252 2025-08-13 17:19:11.254166+00 2025-08-13 17:19:11.254177+00 f t Tango CAT 4 5.00 0.00 t \N 2025-08-14 \N \N MALE \N f 27 1208 6451 +5378 2025-08-15 15:16:35.176569+00 2025-08-15 15:16:35.176582+00 f t Molly CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6592 +5315 2025-08-14 16:01:05.873577+00 2025-08-14 16:01:05.873588+00 f t Archie DOG 0 14.00 0.00 f \N 2025-08-14 \N \N \N \N f \N 1208 6517 +5354 2025-08-15 00:06:56.321883+00 2025-08-15 00:06:56.321894+00 f t Juana DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6556 +5355 2025-08-15 00:08:21.37645+00 2025-08-15 00:08:21.376459+00 f t Poppy DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6557 +5356 2025-08-15 01:10:36.290094+00 2025-08-15 01:10:36.290105+00 f t Draco DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6559 +5357 2025-08-15 01:26:21.707849+00 2025-08-15 01:26:21.707858+00 f t maria laura CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6560 +5358 2025-08-15 01:28:01.101459+00 2025-08-15 01:28:01.10147+00 f t Chimuelo CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6561 +5359 2025-08-15 01:45:38.27075+00 2025-08-15 01:45:38.270762+00 f t Viejita CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6562 +5360 2025-08-15 02:12:07.565341+00 2025-08-15 02:12:07.565355+00 f t Narigon CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6564 +5361 2025-08-15 03:48:02.351653+00 2025-08-15 03:48:02.351667+00 f t Juani CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6568 +5362 2025-08-15 03:48:20.349658+00 2025-08-15 03:48:20.349672+00 f t Colita DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6569 +5363 2025-08-15 05:06:24.500597+00 2025-08-15 05:06:24.500608+00 f t Trinity CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6571 +5364 2025-08-15 05:08:14.332352+00 2025-08-15 05:08:14.332362+00 f t Neo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6571 +5365 2025-08-15 07:07:32.772825+00 2025-08-15 07:07:32.772835+00 f t Hércules DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6572 +5366 2025-08-15 07:12:27.376091+00 2025-08-15 07:12:27.376104+00 f t Rocky DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6573 +5367 2025-08-15 08:18:38.960535+00 2025-08-15 08:18:38.960547+00 f t Cata DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6575 +5368 2025-08-15 09:53:43.361352+00 2025-08-15 09:53:43.361362+00 f t Todd DOG \N 18.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6577 +5369 2025-08-15 12:04:26.009604+00 2025-08-15 12:04:26.009617+00 f t Rodolfo DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6578 +5370 2025-08-15 13:28:26.408082+00 2025-08-15 13:28:26.408099+00 f t Cocó CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6583 +5371 2025-08-15 13:30:09.477237+00 2025-08-15 13:30:09.477254+00 f t Marley DOG \N 34.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6584 +5372 2025-08-15 13:48:07.912149+00 2025-08-15 13:48:07.912165+00 f t Kira DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6585 +5373 2025-08-15 14:44:23.631236+00 2025-08-15 14:44:23.631249+00 f t Bella CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6588 +5374 2025-08-15 14:46:28.581132+00 2025-08-15 14:46:28.581145+00 f t Maia DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6589 +5375 2025-08-15 14:49:57.235294+00 2025-08-15 14:49:57.235308+00 f t Bella CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6590 +5376 2025-08-15 15:11:33.50124+00 2025-08-15 15:11:33.501249+00 f t Lola CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6591 +5377 2025-08-15 15:14:29.73044+00 2025-08-15 15:14:29.730448+00 f t Tobias DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6591 +5379 2025-08-15 15:35:22.841145+00 2025-08-15 15:35:22.841158+00 f t Bety DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6593 +5380 2025-08-15 15:37:26.304257+00 2025-08-15 15:37:26.304266+00 f t Juancho CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6594 +5382 2025-08-15 16:09:37.313335+00 2025-08-15 16:09:37.313348+00 f t Atlas pinky DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6600 +5383 2025-08-15 16:21:30.225236+00 2025-08-15 16:21:30.225248+00 f t Cleo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6601 +5271 2025-08-14 00:16:44.004061+00 2025-08-14 00:16:44.004068+00 f t Bartolo CAT 17 0.00 0.00 t \N 2025-08-15 \N \N MALE Puede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Si \N f \N 114 6469 +5384 2025-08-15 17:27:02.881383+00 2025-08-15 17:27:02.881398+00 f t Luci CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6603 +5385 2025-08-15 17:33:55.495511+00 2025-08-15 17:33:55.49552+00 f t Tucu CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6604 +174 2024-10-30 14:13:10.017+00 2024-10-30 14:13:10.017+00 f t Milo CAT 5 8.00 0.00 f 2019-12-02 2025-08-19 \N \N MALE \N f 27 114 165 +5386 2025-08-15 17:44:41.594656+00 2025-08-15 17:44:41.594666+00 f t Simona DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6605 +5381 2025-08-15 15:42:10.222981+00 2025-08-15 15:42:10.22299+00 f t BELLA DOG 4 4.00 0.00 f \N 2025-08-15 \N \N FEMALE \N f \N 113 6597 +5387 2025-08-15 18:05:27.667749+00 2025-08-15 18:05:27.667762+00 f t Anita CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6606 +5388 2025-08-15 19:03:01.589596+00 2025-08-15 19:03:01.589609+00 f t Luz clarita DOG \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6608 +5389 2025-08-15 19:07:54.327123+00 2025-08-15 19:07:54.32717+00 f t Onix CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6609 +5390 2025-08-15 19:33:44.204207+00 2025-08-15 19:33:44.204216+00 f t Peti CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6610 +5317 2025-08-14 16:17:42.757156+00 2025-08-14 16:17:42.757164+00 f t Dee Dee CAT \N 15.00 0.00 f \N \N 2025-08-14 \N \N FEMALE \N \N f \N \N 6520 +5391 2025-08-15 20:11:51.4197+00 2025-08-15 20:11:51.419712+00 f t Mandy DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6611 +5393 2025-08-15 20:29:20.300286+00 2025-08-15 20:29:20.300296+00 f t Draco CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6615 +5394 2025-08-15 20:37:53.835315+00 2025-08-15 20:37:53.83533+00 f t Cloe CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6617 +5395 2025-08-15 20:41:51.172979+00 2025-08-15 20:41:51.172988+00 f t Tutuca CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6618 +5397 2025-08-15 22:08:03.744987+00 2025-08-15 22:08:03.744999+00 f t 1 DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6621 +5398 2025-08-15 22:10:52.340095+00 2025-08-15 22:10:52.340108+00 f t Benjamin DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6622 +5399 2025-08-15 22:15:04.403642+00 2025-08-15 22:15:04.403658+00 f t Benjamin DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6623 +5400 2025-08-15 22:17:20.307449+00 2025-08-15 22:17:20.307462+00 f t Benjamin DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6624 +5401 2025-08-15 22:31:53.063044+00 2025-08-15 22:31:53.063056+00 f t Furia CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6625 +5402 2025-08-15 22:41:58.593088+00 2025-08-15 22:41:58.593098+00 f t Furia CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6626 +5403 2025-08-15 22:53:09.430115+00 2025-08-15 22:53:09.430126+00 f t Leva DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6627 +5455 2025-08-16 23:21:29.949536+00 2025-08-16 23:21:29.949546+00 f t Pupi DOG \N 7.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6686 +5406 2025-08-15 23:38:54.706491+00 2025-08-15 23:38:54.706505+00 f t Neo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6631 +5407 2025-08-16 00:06:13.046453+00 2025-08-16 00:06:13.046465+00 f t Suho CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6632 +5408 2025-08-16 00:23:46.47988+00 2025-08-16 00:23:46.479891+00 f t Angela DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6633 +5409 2025-08-16 00:25:12.299902+00 2025-08-16 00:25:12.299917+00 f t Nala DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6634 +5411 2025-08-16 01:22:54.342965+00 2025-08-16 01:22:54.342978+00 f t india DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6636 +5412 2025-08-16 02:29:27.146134+00 2025-08-16 02:29:27.146144+00 f t Lola DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6640 +5413 2025-08-16 04:47:56.989975+00 2025-08-16 04:47:56.989987+00 f t Pomelo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6641 +5414 2025-08-16 04:52:17.057995+00 2025-08-16 04:52:17.058006+00 f t Gandalf CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6643 +5415 2025-08-16 05:04:27.15143+00 2025-08-16 05:04:27.151444+00 f t Mamachis CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6644 +5416 2025-08-16 07:03:07.7212+00 2025-08-16 07:03:07.721212+00 f t Naira Pereyra DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6645 +5417 2025-08-16 07:40:31.38279+00 2025-08-16 07:40:31.382805+00 f t Negro CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6646 +5418 2025-08-16 11:10:43.507613+00 2025-08-16 11:10:43.507622+00 f t Lebrijana CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6647 +5419 2025-08-16 11:11:52.251511+00 2025-08-16 11:11:52.251525+00 f t Mari DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6647 +5420 2025-08-16 11:13:21.572332+00 2025-08-16 11:13:21.572345+00 f t Mary CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6647 +5421 2025-08-16 12:35:06.213827+00 2025-08-16 12:35:06.21384+00 f t Hallie DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6649 +5422 2025-08-16 12:35:33.374921+00 2025-08-16 12:35:33.374931+00 f t Hallie CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6649 +5423 2025-08-16 13:22:42.764877+00 2025-08-16 13:22:42.76489+00 f t Limón CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6651 +5424 2025-08-16 13:28:18.069059+00 2025-08-16 13:28:18.069069+00 f t Limón CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6653 +5425 2025-08-16 13:32:07.321823+00 2025-08-16 13:32:07.321834+00 f t Limon CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6654 +5426 2025-08-16 13:55:50.437415+00 2025-08-16 13:55:50.437424+00 f t Limón CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6656 +5427 2025-08-16 14:00:01.852301+00 2025-08-16 14:00:01.852315+00 f t Limon CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6658 +5428 2025-08-16 14:05:25.233314+00 2025-08-16 14:05:25.233326+00 f t Limón CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6658 +5429 2025-08-16 14:05:50.071837+00 2025-08-16 14:05:50.071847+00 f t Limón CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6658 +5430 2025-08-16 14:53:11.03665+00 2025-08-16 14:53:11.036662+00 f t Mushu DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6659 +5431 2025-08-16 14:53:29.80616+00 2025-08-16 14:53:29.806172+00 f t Mushu CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6659 +5432 2025-08-16 14:56:39.94637+00 2025-08-16 14:56:39.946382+00 f t Galleta CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6661 +5433 2025-08-16 15:08:19.100899+00 2025-08-16 15:08:19.10091+00 f t Brandy DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6662 +6047 2025-08-27 13:55:48.798608+00 2025-08-27 13:55:48.79862+00 f t Simón CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7361 +5405 2025-08-15 23:25:50.837348+00 2025-08-15 23:25:50.837355+00 f t Vane DOG 4 50.00 0.00 f \N 2025-08-15 \N \N FEMALE \N f \N 114 6630 +5442 2025-08-16 18:25:08.283386+00 2025-08-16 18:25:08.283443+00 f t Titan DOG 13 40.00 0.00 f \N 2025-08-16 \N \N \N \N f 58 1208 6671 +5434 2025-08-16 16:33:36.327015+00 2025-08-16 16:33:36.327029+00 f t Simon CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6664 +5435 2025-08-16 17:26:04.015511+00 2025-08-16 17:26:04.015527+00 f t Berlioz CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6665 +5436 2025-08-16 17:34:33.047009+00 2025-08-16 17:34:33.047018+00 f t Berlioz CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6666 +5437 2025-08-16 17:35:21.027701+00 2025-08-16 17:35:21.027712+00 f t Felipe DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6667 +5438 2025-08-16 17:39:20.210912+00 2025-08-16 17:39:20.210925+00 f t Berlioz DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6668 +5439 2025-08-16 17:47:03.736756+00 2025-08-16 17:47:03.736774+00 f t Luna CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6669 +5440 2025-08-16 17:55:32.129466+00 2025-08-16 17:55:32.129481+00 f t Lola DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6670 +5441 2025-08-16 18:01:19.004006+00 2025-08-16 18:01:19.004017+00 f t Lola DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6670 +5443 2025-08-16 18:27:56.507827+00 2025-08-16 18:27:56.507839+00 f t Fíaro CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6673 +5444 2025-08-16 18:28:17.249116+00 2025-08-16 18:28:17.249128+00 f t Fígaro CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6673 +5445 2025-08-16 18:29:13.570831+00 2025-08-16 18:29:13.570842+00 f t neska DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6674 +5446 2025-08-16 18:37:05.917615+00 2025-08-16 18:37:05.917628+00 f t Isidro DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6675 +5447 2025-08-16 19:52:12.795737+00 2025-08-16 19:52:12.79575+00 f t Tana DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6678 +5448 2025-08-16 20:09:31.28787+00 2025-08-16 20:09:31.287881+00 f t Leono CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6679 +5449 2025-08-16 20:57:04.210332+00 2025-08-16 20:57:04.210345+00 f t Magia DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6680 +5450 2025-08-16 22:38:11.965191+00 2025-08-16 22:38:11.965201+00 f t Miel DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6681 +5451 2025-08-16 23:05:57.347805+00 2025-08-16 23:05:57.347818+00 f t Emilia DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6682 +6061 2025-08-27 18:31:25.193163+00 2025-08-27 18:31:25.193173+00 f t Atenea CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7377 +5453 2025-08-16 23:11:30.034886+00 2025-08-16 23:11:30.034895+00 f t Flora CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6684 +5454 2025-08-16 23:14:46.012547+00 2025-08-16 23:14:46.012561+00 f t Bianca DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6685 +5456 2025-08-16 23:45:38.619183+00 2025-08-16 23:45:38.619192+00 f t Tomy DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6687 +5458 2025-08-17 00:33:17.101817+00 2025-08-17 00:33:17.101829+00 f t Chifu CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6690 +5459 2025-08-17 00:57:19.670245+00 2025-08-17 00:57:19.670259+00 f t Rosado CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6691 +5460 2025-08-17 01:03:29.466599+00 2025-08-17 01:03:29.466612+00 f t Coco DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6693 +5461 2025-08-17 01:03:33.264512+00 2025-08-17 01:03:33.264521+00 f t Sancho DOG \N 28.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6692 +5462 2025-08-17 01:05:52.321099+00 2025-08-17 01:05:52.321114+00 f t Coco DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6694 +5463 2025-08-17 01:44:24.269109+00 2025-08-17 01:44:24.269118+00 f t Batata DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6695 +5464 2025-08-17 02:00:16.126157+00 2025-08-17 02:00:16.12617+00 f t Teo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6696 +5465 2025-08-17 03:16:03.168578+00 2025-08-17 03:16:03.168588+00 f t Braulio CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6698 +5404 2025-08-15 23:19:14.770509+00 2025-08-15 23:19:14.77052+00 f t Angi DOG 15 11.00 0.00 t \N 2025-08-19 \N \N FEMALE \N f 1 114 6629 +5396 2025-08-15 20:48:22.139842+00 2025-08-15 20:48:22.139852+00 f t Saia CAT 7 4.00 0.00 t \N 2025-08-22 \N \N \N \N f \N 113 6619 +5392 2025-08-15 20:24:52.840159+00 2025-08-15 20:24:52.840169+00 f t Elsa CAT \N 5.00 0.00 f \N \N 2025-08-16 \N \N FEMALE \N \N f \N \N 6614 +5410 2025-08-16 00:50:26.060546+00 2025-08-16 00:50:26.060555+00 f t Tyrael CAT \N 6.00 0.00 f \N \N 2025-08-19 \N \N MALE \N \N f \N \N 6635 +5466 2025-08-17 03:25:46.654443+00 2025-08-17 03:25:46.654456+00 f t Felix DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6699 +5467 2025-08-17 03:29:20.385016+00 2025-08-17 03:29:20.385028+00 f t ares CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6700 +5468 2025-08-17 04:10:27.753773+00 2025-08-17 04:10:27.753785+00 f t tom CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6701 +5469 2025-08-17 04:58:34.512012+00 2025-08-17 04:58:34.512025+00 f t India DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6702 +5470 2025-08-17 05:08:11.421495+00 2025-08-17 05:08:11.421509+00 f t Jason CAT \N 4.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6703 +5471 2025-08-17 05:09:38.375279+00 2025-08-17 05:09:38.375294+00 f t Bart DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6704 +5472 2025-08-17 05:34:08.038841+00 2025-08-17 05:34:08.038856+00 f t Merlin DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6705 +5473 2025-08-17 06:01:06.292548+00 2025-08-17 06:01:06.292562+00 f t Mila CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6706 +5474 2025-08-17 06:35:59.800493+00 2025-08-17 06:35:59.800505+00 f t Tobi DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6707 +5475 2025-08-17 06:49:13.339626+00 2025-08-17 06:49:13.339639+00 f t Tobi DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6708 +5476 2025-08-17 06:58:27.872616+00 2025-08-17 06:58:27.872626+00 f t Albus DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6709 +5478 2025-08-17 11:11:10.233174+00 2025-08-17 11:11:10.233184+00 f t Chifu DOG \N 5.20 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6711 +5479 2025-08-17 11:11:31.372517+00 2025-08-17 11:11:31.372526+00 f t Chifu CAT \N 5.20 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6711 +5480 2025-08-17 11:14:34.790175+00 2025-08-17 11:14:34.790188+00 f t Roma DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6712 +5481 2025-08-17 11:57:46.353297+00 2025-08-17 11:57:46.353309+00 f t Chifu DOG \N 5.30 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6713 +5482 2025-08-17 11:58:00.140959+00 2025-08-17 11:58:00.140973+00 f t Chifu CAT \N 5.30 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6713 +11805 2025-11-24 11:48:10.680951+00 2025-11-24 11:48:10.68096+00 f t Mona CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14319 +5483 2025-08-17 12:59:16.757861+00 2025-08-17 12:59:16.757869+00 f t Frida DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6716 +5484 2025-08-17 13:14:50.62209+00 2025-08-17 13:14:50.622104+00 f t Sancho DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6717 +5485 2025-08-17 14:06:08.085585+00 2025-08-17 14:06:08.085599+00 f t OTTO DOG \N 60.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6718 +5486 2025-08-17 14:18:12.051401+00 2025-08-17 14:18:12.051413+00 f t Kokoro CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6719 +11828 2025-11-24 14:36:36.678558+00 2025-11-24 14:36:36.678567+00 f t Sensei CAT \N 1.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14346 +5488 2025-08-17 15:02:11.230282+00 2025-08-17 15:02:11.230296+00 f t Freyja DOG \N 5.60 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6721 +5489 2025-08-17 15:06:12.711171+00 2025-08-17 15:06:12.711183+00 f t Benny DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6722 +5490 2025-08-17 16:16:16.675107+00 2025-08-17 16:16:16.67512+00 f t Jano DOG \N 37.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6723 +5491 2025-08-17 16:19:57.131029+00 2025-08-17 16:19:57.131041+00 f t Kyo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6725 +5492 2025-08-17 16:23:04.406253+00 2025-08-17 16:23:04.406264+00 f t Estrella CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6726 +5493 2025-08-17 17:55:20.209499+00 2025-08-17 17:55:20.209515+00 f t Seji CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6728 +5494 2025-08-17 18:10:39.437014+00 2025-08-17 18:10:39.437027+00 f t Nn DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6729 +5496 2025-08-17 19:39:45.945935+00 2025-08-17 19:39:45.945945+00 f t Tito DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6731 +5527 2025-08-18 11:45:10.172212+00 2025-08-18 11:45:10.172225+00 f t China CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6766 +5477 2025-08-17 09:57:03.643861+00 2025-08-17 09:57:03.643875+00 f t Koda DOG \N 20.00 0.00 f \N \N 2025-08-17 \N \N MALE \N \N f \N \N 6710 +5528 2025-08-18 12:10:00.41153+00 2025-08-18 12:10:00.411544+00 f t TikTokTadpole DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6767 +5529 2025-08-18 12:12:08.790891+00 2025-08-18 12:12:08.790903+00 f t Milo DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6768 +5498 2025-08-17 20:39:25.104782+00 2025-08-17 20:39:25.104797+00 f t GUILLERMO CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6733 +5499 2025-08-17 21:00:38.769092+00 2025-08-17 21:00:38.769102+00 f t Zoe DOG \N 36.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6734 +5500 2025-08-17 21:02:12.162869+00 2025-08-17 21:02:12.162884+00 f t Jack DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6735 +5501 2025-08-17 21:22:58.622974+00 2025-08-17 21:22:58.622985+00 f t Lola DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6736 +5531 2025-08-18 12:53:46.205559+00 2025-08-18 12:53:46.20557+00 f t Aitor CAT \N 3.00 0.00 f \N \N 2025-08-20 \N \N MALE \N \N f \N \N 6770 +5502 2025-08-17 21:46:22.663228+00 2025-08-17 21:46:22.663241+00 f t Negrito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6737 +5503 2025-08-17 21:50:23.146421+00 2025-08-17 21:50:23.146434+00 f t Cocó DOG \N 4.40 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6738 +5504 2025-08-17 21:55:51.937251+00 2025-08-17 21:55:51.937261+00 f t Cocó DOG \N 4.40 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6739 +5505 2025-08-17 21:59:51.465463+00 2025-08-17 21:59:51.465472+00 f t Cocó DOG \N 4.40 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6740 +5506 2025-08-17 22:02:03.602823+00 2025-08-17 22:02:03.602832+00 f t Cocó DOG \N 4.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6742 +5507 2025-08-17 22:02:06.672833+00 2025-08-17 22:02:06.672843+00 f t Tita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6741 +5508 2025-08-17 22:21:08.866721+00 2025-08-17 22:21:08.866732+00 f t Lisa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6743 +5509 2025-08-17 22:29:05.09312+00 2025-08-17 22:29:05.093138+00 f t Mani CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6744 +5510 2025-08-17 23:00:50.719115+00 2025-08-17 23:00:50.719126+00 f t Romeo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6745 +5511 2025-08-17 23:14:09.106676+00 2025-08-17 23:14:09.106687+00 f t Bella DOG \N 29.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6746 +5512 2025-08-17 23:27:24.217735+00 2025-08-17 23:27:24.217745+00 f t Zoe DOG \N 37.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6747 +5487 2025-08-17 14:32:16.697737+00 2025-08-17 14:32:16.69775+00 f t Chocolina DOG 0 40.00 0.00 t \N 2025-08-17 \N \N FEMALE \N f \N 114 6720 +5495 2025-08-17 18:15:33.241657+00 2025-08-17 18:15:33.241919+00 f t Nn DOG \N 15.00 0.00 t \N \N 2025-08-17 \N \N FEMALE \N \N f \N \N 6730 +5497 2025-08-17 20:03:40.318999+00 2025-08-17 20:03:40.319007+00 f t Otto CAT 5 6.00 0.00 f \N 2025-08-17 \N \N MALE \N f \N 114 6732 +5513 2025-08-17 23:45:34.346189+00 2025-08-17 23:45:34.346201+00 f t Sheena CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6749 +5514 2025-08-18 00:47:29.632934+00 2025-08-18 00:47:29.632949+00 f t Nilo DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6752 +5515 2025-08-18 01:43:51.947873+00 2025-08-18 01:43:51.947884+00 f t Margie CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6753 +5516 2025-08-18 01:46:32.348381+00 2025-08-18 01:46:32.348392+00 f t Margie CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6754 +5517 2025-08-18 02:08:50.876211+00 2025-08-18 02:08:50.876223+00 f t Morgan DOG \N 24.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6755 +5518 2025-08-18 02:11:27.517502+00 2025-08-18 02:11:27.517514+00 f t Merlina CAT \N 2.20 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6756 +11831 2025-11-24 14:51:02.379725+00 2025-11-24 14:51:02.379738+00 f t Lola DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14349 +5520 2025-08-18 03:56:03.194898+00 2025-08-18 03:56:03.194907+00 f t charo DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6758 +5521 2025-08-18 03:56:54.615351+00 2025-08-18 03:56:54.615363+00 f t Cata CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6758 +5522 2025-08-18 04:11:15.58162+00 2025-08-18 04:11:15.581635+00 f t Venus CAT \N 4.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6759 +5523 2025-08-18 04:17:20.648728+00 2025-08-18 04:17:20.648743+00 f t Francisco Mushu DOG \N 7.40 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6760 +5524 2025-08-18 04:27:57.538518+00 2025-08-18 04:27:57.538527+00 f t Mia CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6761 +5525 2025-08-18 04:49:36.677626+00 2025-08-18 04:49:36.677639+00 f t Lola Braña DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6762 +5526 2025-08-18 11:36:21.482538+00 2025-08-18 11:36:21.482551+00 f t Homero DOG \N 29.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6764 +5530 2025-08-18 12:14:10.700303+00 2025-08-18 12:14:10.700323+00 f t Greif CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6769 +5532 2025-08-18 13:10:44.756046+00 2025-08-18 13:10:44.756057+00 f t Florencia Aragón CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6771 +5533 2025-08-18 13:37:16.379425+00 2025-08-18 13:37:16.379439+00 f t Cereza DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6773 +5534 2025-08-18 13:37:35.122099+00 2025-08-18 13:37:35.122107+00 f t Cereza CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6773 +5535 2025-08-18 13:39:10.662795+00 2025-08-18 13:39:10.662808+00 f t amadeo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6774 +5536 2025-08-18 13:40:35.642919+00 2025-08-18 13:40:35.642929+00 f t Thyago DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6775 +5537 2025-08-18 14:02:17.261764+00 2025-08-18 14:02:17.261774+00 f t Buby CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6776 +5538 2025-08-18 14:39:31.13754+00 2025-08-18 14:39:31.137551+00 f t Felini CAT \N 4.20 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6778 +5539 2025-08-18 15:10:17.406983+00 2025-08-18 15:10:17.406996+00 f t Athenea CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6780 +5540 2025-08-18 15:19:17.526819+00 2025-08-18 15:19:17.526832+00 f t Pep DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6781 +5541 2025-08-18 15:22:38.853824+00 2025-08-18 15:22:38.853837+00 f t Barbarita CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6782 +5542 2025-08-18 16:17:48.915739+00 2025-08-18 16:17:48.915749+00 f t Brisa DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6783 +5543 2025-08-18 16:18:40.358047+00 2025-08-18 16:18:40.358056+00 f t Sasha DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6783 +5544 2025-08-18 16:31:42.377413+00 2025-08-18 16:31:42.377425+00 f t Bob DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6784 +5546 2025-08-18 16:36:30.867324+00 2025-08-18 16:36:30.867334+00 f t EMINEM DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6786 +8505 2025-10-08 01:04:55.67551+00 2025-10-08 01:04:55.675519+00 f t Lols CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10245 +5549 2025-08-18 17:22:21.774002+00 2025-08-18 17:22:21.77401+00 f t Tanjiro DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6790 +5550 2025-08-18 17:24:48.799079+00 2025-08-18 17:24:48.799089+00 f t Simón CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6792 +5551 2025-08-18 17:26:12.856345+00 2025-08-18 17:26:12.856355+00 f t Simón CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6793 +5552 2025-08-18 17:55:30.12439+00 2025-08-18 17:55:30.1244+00 f t Otto DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6797 +5553 2025-08-18 18:00:55.022011+00 2025-08-18 18:00:55.022023+00 f t HOMERO CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6799 +5554 2025-08-18 18:24:01.713491+00 2025-08-18 18:24:01.713505+00 f t Olga CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6800 +5545 2025-08-18 16:32:07.492786+00 2025-08-18 16:32:07.492795+00 f t Ona DOG 10 31.00 0.00 t \N 2025-08-18 \N \N FEMALE \N f 3 1208 6785 +6007 2025-08-26 13:58:01.673099+00 2025-08-26 13:58:01.673109+00 f t Jason CAT \N 4.70 22.00 t \N 2016-09-13 2025-08-20 \N \N MALE Miocardiopatía hipertrófica 2024. Osteoma en mentón 2024. 2 internaciones por edema agudo de pulmón. \N f \N \N 6885 +5556 2025-08-18 19:14:16.285775+00 2025-08-18 19:14:16.285787+00 f t Tintín CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6803 +5558 2025-08-18 20:01:16.458061+00 2025-08-18 20:01:16.458071+00 f t Eva DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6805 +5559 2025-08-18 20:31:28.921444+00 2025-08-18 20:31:28.921458+00 f t Sora CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6808 +5560 2025-08-18 20:55:11.484558+00 2025-08-18 20:55:11.484574+00 f t Olivia DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6809 +5561 2025-08-18 21:21:16.347512+00 2025-08-18 21:21:16.347521+00 f t Shiva CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6811 +5562 2025-08-18 21:21:58.583083+00 2025-08-18 21:21:58.583093+00 f t Amy CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6812 +5563 2025-08-18 21:22:02.319412+00 2025-08-18 21:22:02.319427+00 f t Franchu CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6813 +5565 2025-08-18 22:00:07.150959+00 2025-08-18 22:00:07.150975+00 f t Terremoto DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6816 +5566 2025-08-18 22:07:03.287883+00 2025-08-18 22:07:03.287897+00 f t Maggie DOG \N 6.70 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6817 +5568 2025-08-18 22:36:05.136907+00 2025-08-18 22:36:05.136918+00 f t Renzo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6819 +5569 2025-08-18 22:42:16.876811+00 2025-08-18 22:42:16.876821+00 f t Osvaldo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6821 +5570 2025-08-18 22:46:47.519256+00 2025-08-18 22:46:47.519266+00 f t Misha CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6822 +5571 2025-08-18 23:15:08.972198+00 2025-08-18 23:15:08.972211+00 f t China CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6823 +5572 2025-08-18 23:16:54.048777+00 2025-08-18 23:16:54.048786+00 f t Dewey CAT \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6824 +5573 2025-08-18 23:53:04.214941+00 2025-08-18 23:53:04.214951+00 f t Michi CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6825 +5574 2025-08-18 23:58:50.549521+00 2025-08-18 23:58:50.549531+00 f t Firu DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6828 +5575 2025-08-18 23:59:04.907057+00 2025-08-18 23:59:04.907072+00 f t GIGI DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6827 +5576 2025-08-19 00:32:36.645665+00 2025-08-19 00:32:36.645675+00 f t Mini CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6829 +5577 2025-08-19 00:37:36.268094+00 2025-08-19 00:37:36.268103+00 f t Chimuela CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6830 +5578 2025-08-19 01:20:16.535103+00 2025-08-19 01:20:16.535112+00 f t Bako DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6831 +5579 2025-08-19 01:22:34.610293+00 2025-08-19 01:22:34.610301+00 f t Loli DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6832 +5580 2025-08-19 01:24:34.877326+00 2025-08-19 01:24:34.877335+00 f t Loli DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6833 +5581 2025-08-19 01:45:38.469682+00 2025-08-19 01:45:38.469692+00 f t Nando CAT \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6834 +5582 2025-08-19 02:17:39.577512+00 2025-08-19 02:17:39.577523+00 f t Hannibal DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6835 +5583 2025-08-19 02:34:04.853965+00 2025-08-19 02:34:04.853978+00 f t Fermin Campos CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6836 +5584 2025-08-19 02:47:02.197476+00 2025-08-19 02:47:02.197491+00 f t Frida DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6837 +5585 2025-08-19 02:53:52.373161+00 2025-08-19 02:53:52.373174+00 f t Luna DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6838 +5586 2025-08-19 05:32:45.005906+00 2025-08-19 05:32:45.005917+00 f t Nena CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6840 +5587 2025-08-19 06:31:13.440547+00 2025-08-19 06:31:13.440559+00 f t RENATA DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6841 +5588 2025-08-19 06:54:04.731242+00 2025-08-19 06:54:04.731252+00 f t RENATA DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6843 +5590 2025-08-19 11:04:53.499841+00 2025-08-19 11:04:53.499854+00 f t Ringo DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6846 +5591 2025-08-19 11:16:06.291957+00 2025-08-19 11:16:06.291972+00 f t Kika CAT \N 3.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6847 +5592 2025-08-19 11:38:28.969399+00 2025-08-19 11:38:28.969409+00 f t Bao Bao DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6848 +5593 2025-08-19 11:57:02.400437+00 2025-08-19 11:57:02.400451+00 f t Roma DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6849 +5594 2025-08-19 12:11:19.405418+00 2025-08-19 12:11:19.40543+00 f t Willki CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6850 +5595 2025-08-19 12:15:54.107993+00 2025-08-19 12:15:54.108003+00 f t Maga CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6851 +5596 2025-08-19 12:16:07.347086+00 2025-08-19 12:16:07.347097+00 f t Mili CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6852 +5597 2025-08-19 12:16:57.184715+00 2025-08-19 12:16:57.184729+00 f t Merlina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6851 +5599 2025-08-19 12:43:36.863524+00 2025-08-19 12:43:36.863534+00 f t Piluza DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6854 +5600 2025-08-19 12:55:16.627997+00 2025-08-19 12:55:16.628012+00 f t Haku CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6856 +5601 2025-08-19 13:21:27.610382+00 2025-08-19 13:21:27.610394+00 f t Mini DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6858 +5602 2025-08-19 13:35:08.372193+00 2025-08-19 13:35:08.372208+00 f t Bora DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6860 +5603 2025-08-19 13:58:10.935505+00 2025-08-19 13:58:10.935515+00 f t Pancho CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6861 +5604 2025-08-19 14:03:04.832208+00 2025-08-19 14:03:04.832222+00 f t Tom CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6863 +5605 2025-08-19 14:18:24.502855+00 2025-08-19 14:18:24.502863+00 f t Tigre CAT \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6865 +5606 2025-08-19 14:29:46.525825+00 2025-08-19 14:29:46.525837+00 f t Belky DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6866 +5607 2025-08-19 15:01:15.109942+00 2025-08-19 15:01:15.109955+00 f t Peluche DOG \N 6.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6867 +5608 2025-08-19 15:02:08.691767+00 2025-08-19 15:02:08.691777+00 f t Peluche DOG \N 6.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6867 +5609 2025-08-19 15:14:29.630918+00 2025-08-19 15:14:29.630927+00 f t Diesel DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6868 +5557 2025-08-18 19:25:59.530384+00 2025-08-18 19:25:59.530395+00 f t TITA CAT 4 4.00 0.00 t \N \N \N \N FEMALE Asustadiza \N f \N 1583 6804 +5612 2025-08-19 16:07:00.746174+00 2025-08-19 16:07:00.746193+00 f t Creamy CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6871 +5613 2025-08-19 16:07:51.071437+00 2025-08-19 16:07:51.071447+00 f t Creany CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6872 +5614 2025-08-19 16:12:23.826991+00 2025-08-19 16:12:23.827004+00 f t Paul CAT \N 6.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6873 +5615 2025-08-19 16:38:12.576554+00 2025-08-19 16:38:12.576568+00 f t Corra DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6875 +5616 2025-08-19 16:39:24.861813+00 2025-08-19 16:39:24.861825+00 f t Coco DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6876 +5617 2025-08-19 16:39:45.663405+00 2025-08-19 16:39:45.663418+00 f t Corra CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6875 +5564 2025-08-18 21:23:51.020404+00 2025-08-18 21:23:51.020413+00 f t Simon CAT 6 3.00 0.00 t \N 2025-08-20 \N \N MALE Se asusta con facilidad \N f \N 113 6814 +5618 2025-08-19 17:02:53.008817+00 2025-08-19 17:02:53.00883+00 f t Gordo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6877 +5619 2025-08-19 17:23:47.548821+00 2025-08-19 17:23:47.54883+00 f t Furia CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6878 +5452 2025-08-16 23:06:33.356187+00 2025-08-16 23:06:33.356198+00 f t Tofi CAT 5 4.00 0.00 t \N 2025-08-19 \N \N MALE \N f \N 113 6683 +5567 2025-08-18 22:11:34.66165+00 2025-08-18 22:11:34.661663+00 f t Osvaldo CAT 0 4.00 0.00 f \N 2025-08-21 \N \N MALE \N f \N 113 6818 +5598 2025-08-19 12:37:56.896933+00 2025-08-19 12:37:56.896941+00 f t Huma DOG \N 30.00 0.00 f \N \N 2025-08-19 \N \N FEMALE \N \N f \N \N 6853 +5548 2025-08-18 17:17:25.340718+00 2025-08-18 17:17:25.340725+00 f t Toyo DOG 12 30.00 0.00 t \N 2025-08-21 \N \N MALE \N f 58 1208 6789 +5589 2025-08-19 10:56:52.82963+00 2025-08-19 10:56:52.82964+00 f t Franchu CAT \N 5.00 0.00 f \N \N 2025-08-20 \N \N MALE \N \N f \N \N 6845 +5610 2025-08-19 15:54:03.006926+00 2025-08-19 15:54:03.006938+00 f t Fiona CAT 12 4.00 0.00 t \N 2025-08-21 \N \N FEMALE Poco sociable \N f \N 1583 6869 +5620 2025-08-19 17:40:26.024027+00 2025-08-19 17:40:26.025541+00 f t Ernesto CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6879 +5621 2025-08-19 17:41:35.358005+00 2025-08-19 17:41:35.358968+00 f t Feli CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6879 +5623 2025-08-19 18:18:46.521644+00 2025-08-19 18:18:46.521657+00 f t Atila CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6881 +5624 2025-08-19 18:26:46.783164+00 2025-08-19 18:26:46.783176+00 f t Rambo DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6883 +5519 2025-08-18 02:33:10.58739+00 2025-08-18 02:33:10.587402+00 f t Jason CAT \N 4.70 0.00 t \N 2016-09-13 \N \N \N MALE Miocardiopatía hipertrófica 2024. Osteoma en mentón 2024. 2 internaciones por edema agudo de pulmón. \N f \N \N 6757 +5625 2025-08-19 18:35:25.533765+00 2025-08-19 18:35:25.533774+00 f t - CAT \N 4.70 22.00 t \N 2016-09-13 \N \N \N MALE Miocardiopatía hipertrófica 2024. Osteoma en mentón 2024. 2 internaciones por edema agudo de pulmón. \N f \N \N 6757 +5626 2025-08-19 18:39:33.369471+00 2025-08-19 18:39:33.36948+00 f t mango DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6884 +8506 2025-10-08 01:06:09.881714+00 2025-10-08 01:06:09.881722+00 f t Cyro DOG \N 65.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10246 +5628 2025-08-19 18:55:50.936243+00 2025-08-19 18:55:50.936252+00 f t Tenshi CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6886 +5629 2025-08-19 19:15:08.433453+00 2025-08-19 19:15:08.433464+00 f t Gala CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6887 +5630 2025-08-19 19:17:11.189197+00 2025-08-19 19:17:11.189208+00 f t Bilma CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6887 +5631 2025-08-19 19:28:01.39944+00 2025-08-19 19:28:01.39945+00 f t Yenny DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6888 +5611 2025-08-19 15:58:21.312517+00 2025-08-19 15:58:21.312527+00 f t Renata DOG 14 4.00 0.00 t \N 2025-08-19 \N \N FEMALE \N f 8 1208 6870 +5632 2025-08-19 19:44:20.004395+00 2025-08-19 19:44:20.004407+00 f t Chiquito CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6889 +5633 2025-08-19 20:14:13.813995+00 2025-08-19 20:14:13.814009+00 f t levi CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6890 +5634 2025-08-19 20:21:11.823634+00 2025-08-19 20:21:11.823649+00 f t Sol DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6891 +5635 2025-08-19 21:06:01.738403+00 2025-08-19 21:06:01.738415+00 f t Enigma CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6892 +6008 2025-08-26 14:25:45.729937+00 2025-08-26 14:25:45.729954+00 f t Gomita DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7322 +5637 2025-08-19 21:24:14.232703+00 2025-08-19 21:24:14.232711+00 f t Aitor CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6894 +5638 2025-08-19 21:42:32.311832+00 2025-08-19 21:42:32.311841+00 f t Mora DOG \N 33.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6895 +5639 2025-08-19 22:06:23.634116+00 2025-08-19 22:06:23.63413+00 f t Cocoro DOG \N 5.70 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6898 +5640 2025-08-19 22:07:07.946+00 2025-08-19 22:07:07.94601+00 f t Napoleon CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6898 +5644 2025-08-19 23:25:24.103917+00 2025-08-19 23:25:24.103924+00 f t Oni DOG 2 8.50 0.00 f \N 2025-08-21 \N \N MALE \N f 1 114 6789 +5641 2025-08-19 23:19:03.154133+00 2025-08-19 23:19:03.154147+00 f t Maggi DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6900 +5642 2025-08-19 23:21:46.689276+00 2025-08-19 23:21:46.689289+00 f t Maggi DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6902 +5643 2025-08-19 23:24:18.405512+00 2025-08-19 23:24:18.405523+00 f t Maggi DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6902 +5645 2025-08-19 23:25:39.205591+00 2025-08-19 23:25:39.205601+00 f t Maggi DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6903 +5675 2025-08-20 13:29:58.919404+00 2025-08-20 13:29:58.919413+00 f t Benito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6937 +5646 2025-08-19 23:29:47.696244+00 2025-08-19 23:29:47.696253+00 f t Tintin CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6904 +5647 2025-08-19 23:30:44.643893+00 2025-08-19 23:30:44.643901+00 f t Furia Nocturna CAT 2 6.00 0.00 f \N \N \N \N MALE \N f \N 114 6905 +5648 2025-08-19 23:34:32.864892+00 2025-08-19 23:34:32.864901+00 f t kitty CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6906 +5650 2025-08-19 23:41:59.234282+00 2025-08-19 23:41:59.23429+00 f t Aurora DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6908 +5651 2025-08-19 23:55:05.891472+00 2025-08-19 23:55:05.891483+00 f t Enigma CAT 12 0.00 0.00 t \N \N \N \N FEMALE \N f \N 114 6909 +5653 2025-08-20 00:07:06.409521+00 2025-08-20 00:07:06.40953+00 f t JERRY DOG \N 11.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6911 +5684 2025-08-20 15:05:55.480917+00 2025-08-20 15:05:55.480933+00 f t Picho DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6947 +5654 2025-08-20 00:11:56.415045+00 2025-08-20 00:11:56.415055+00 f t JERRY DOG \N 11.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6912 +5649 2025-08-19 23:38:04.168541+00 2025-08-19 23:38:04.168551+00 f t Sally CAT 17 2.00 0.00 t \N 2025-08-19 \N \N FEMALE \N f 27 114 6907 +5655 2025-08-20 00:15:54.735288+00 2025-08-20 00:15:54.735299+00 f t Atenea CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6913 +5656 2025-08-20 00:21:39.697636+00 2025-08-20 00:21:39.697648+00 f t Airbus CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6914 +5657 2025-08-20 00:22:49.940524+00 2025-08-20 00:22:49.940537+00 f t Airbus CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6915 +5658 2025-08-20 00:30:47.65669+00 2025-08-20 00:30:47.656699+00 f t Sheila DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6916 +5622 2025-08-19 17:51:54.86584+00 2025-08-19 17:51:54.865846+00 f t Coco DOG 6 0.00 0.00 f \N 2025-08-19 \N \N MALE \N f \N 1583 6880 +5659 2025-08-20 00:34:48.396677+00 2025-08-20 00:34:48.396687+00 f t Sheila DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6917 +5660 2025-08-20 00:38:34.076774+00 2025-08-20 00:38:34.076784+00 f t Milo DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6918 +5661 2025-08-20 01:25:40.448103+00 2025-08-20 01:25:40.448112+00 f t Romeo DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6920 +5662 2025-08-20 01:41:06.400148+00 2025-08-20 01:41:06.40016+00 f t Churro CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6921 +5663 2025-08-20 01:46:33.63482+00 2025-08-20 01:46:33.634829+00 f t Chino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6922 +5664 2025-08-20 02:01:23.926441+00 2025-08-20 02:01:23.926453+00 f t Pepito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6923 +5689 2025-08-20 15:41:07.496336+00 2025-08-20 15:41:07.496347+00 f t Nala CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6953 +5665 2025-08-20 04:02:57.132181+00 2025-08-20 04:02:57.132195+00 f t ronnie CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6924 +5667 2025-08-20 06:27:47.620978+00 2025-08-20 06:27:47.620989+00 f t Tony DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6927 +5668 2025-08-20 08:50:36.427185+00 2025-08-20 08:50:36.427229+00 f t China DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6928 +5652 2025-08-19 23:59:23.415014+00 2025-08-19 23:59:23.41503+00 f t Maggi DOG 0 2.00 0.00 f \N 2025-08-19 \N \N FEMALE \N f \N 113 6910 +5669 2025-08-20 11:10:42.658034+00 2025-08-20 11:10:42.658043+00 f t Amapola CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6929 +5670 2025-08-20 12:02:20.336109+00 2025-08-20 12:02:20.336122+00 f t tayra DOG \N 54.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6931 +5671 2025-08-20 12:16:36.002156+00 2025-08-20 12:16:36.002166+00 f t Toulouse CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6932 +5672 2025-08-20 12:28:00.752226+00 2025-08-20 12:28:00.752238+00 f t Misty DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6933 +5674 2025-08-20 13:13:45.187943+00 2025-08-20 13:13:45.187952+00 f t Misty DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6936 +5676 2025-08-20 13:41:50.828574+00 2025-08-20 13:41:50.828586+00 f t Probando DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6939 +5677 2025-08-20 14:18:22.85949+00 2025-08-20 14:18:22.859498+00 f t Cuco DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6940 +5678 2025-08-20 14:32:59.612221+00 2025-08-20 14:32:59.612229+00 f t Shadow CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6941 +5679 2025-08-20 14:36:20.801174+00 2025-08-20 14:36:20.801183+00 f t Mia DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6942 +5680 2025-08-20 14:48:10.063273+00 2025-08-20 14:48:10.063287+00 f t Canela DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6943 +5681 2025-08-20 14:51:40.364186+00 2025-08-20 14:51:40.364198+00 f t TEST DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6944 +5682 2025-08-20 14:52:53.814243+00 2025-08-20 14:52:53.814252+00 f t TEST DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6945 +5683 2025-08-20 15:04:08.793258+00 2025-08-20 15:04:08.793268+00 f t Simón CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6946 +5685 2025-08-20 15:06:35.948831+00 2025-08-20 15:06:35.948841+00 f t Simón CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6949 +5686 2025-08-20 15:06:39.164085+00 2025-08-20 15:06:39.164096+00 f t Lola DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6948 +5687 2025-08-20 15:14:55.180261+00 2025-08-20 15:14:55.18027+00 f t Dolce DOG 6 5.00 0.00 t \N \N \N \N MALE Estuvo tomando corticoides \N f 14 1583 6951 +5688 2025-08-20 15:21:24.693966+00 2025-08-20 15:21:24.693975+00 f t Olivia DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6952 +5666 2025-08-20 04:11:36.150028+00 2025-08-20 04:11:36.150042+00 f t Siria CAT \N 10.00 0.00 t \N 2016-01-30 2025-08-20 \N \N FEMALE \N \N f \N \N 6925 +5690 2025-08-20 15:45:01.024368+00 2025-08-20 15:45:01.024378+00 f t Vitto DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6955 +5691 2025-08-20 15:53:58.333372+00 2025-08-20 15:53:58.33338+00 f t Cula CAT 6 0.00 0.00 t \N \N \N \N FEMALE Agresiva/asustadiza \N f \N 1583 6956 +5673 2025-08-20 13:01:03.281281+00 2025-08-20 13:01:03.28129+00 f t Colo CAT \N 25.00 0.00 f \N \N 2025-08-20 \N \N MALE \N \N f \N \N 6935 +5555 2025-08-18 19:10:37.767322+00 2025-08-18 19:10:37.767332+00 f t Gabo CAT 13 6.00 0.00 t \N 2025-08-20 \N \N MALE Meloxican y odontobiotic por un problema dental \N f 27 1208 6802 +5692 2025-08-20 16:15:12.962651+00 2025-08-20 16:15:12.962661+00 f t Dior CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6959 +5693 2025-08-20 16:20:52.238445+00 2025-08-20 16:20:52.238456+00 f t Benji DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6961 +5694 2025-08-20 16:42:25.160574+00 2025-08-20 16:42:25.160584+00 f t Candy DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6963 +5695 2025-08-20 16:48:47.139325+00 2025-08-20 16:48:47.139343+00 f t Neko CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6964 +5696 2025-08-20 17:24:28.578774+00 2025-08-20 17:24:28.578788+00 f t FILIPPO DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6969 +5697 2025-08-20 17:24:43.098802+00 2025-08-20 17:24:43.098812+00 f t FILIPPO CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6969 +5636 2025-08-19 21:23:31.310034+00 2025-08-19 21:23:31.310049+00 f t Lolo DOG \N 7.50 0.00 f \N \N 2025-08-19 \N \N FEMALE \N \N f \N \N 6893 +5699 2025-08-20 17:44:56.999638+00 2025-08-20 17:44:56.999648+00 f t AMBAR CORBALAN DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6972 +5700 2025-08-20 18:08:32.135402+00 2025-08-20 18:08:32.135411+00 f t Peluso CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6974 +5701 2025-08-20 18:10:08.857371+00 2025-08-20 18:10:08.857384+00 f t Abraham DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6975 +5702 2025-08-20 18:32:31.787714+00 2025-08-20 18:32:31.787724+00 f t Molly CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6976 +5703 2025-08-20 18:41:37.447755+00 2025-08-20 18:41:37.447765+00 f t Molly CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6976 +5704 2025-08-20 19:38:42.849007+00 2025-08-20 19:38:42.849016+00 f t Rumba DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6978 +5705 2025-08-20 20:12:57.182668+00 2025-08-20 20:12:57.182676+00 f t Bianco DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6979 +5706 2025-08-20 20:52:06.164321+00 2025-08-20 20:52:06.164334+00 f t michi CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6980 +5707 2025-08-20 21:17:41.606154+00 2025-08-20 21:17:41.606162+00 f t Lola DOG \N 520.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6981 +5708 2025-08-20 21:18:52.693747+00 2025-08-20 21:18:52.693756+00 f t Lola CAT \N 520.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6981 +5709 2025-08-20 21:24:10.380218+00 2025-08-20 21:24:10.380228+00 f t India DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6982 +5710 2025-08-20 21:33:57.308361+00 2025-08-20 21:33:57.308374+00 f t Kaya CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6983 +5711 2025-08-20 21:39:23.617776+00 2025-08-20 21:39:23.617785+00 f t Luli CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6984 +5712 2025-08-20 21:41:46.334649+00 2025-08-20 21:41:46.334659+00 f t Apolo DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6985 +5713 2025-08-20 21:43:56.899007+00 2025-08-20 21:43:56.899016+00 f t Apolo DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6986 +5714 2025-08-20 21:50:59.591395+00 2025-08-20 21:50:59.591404+00 f t Luli CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6987 +5715 2025-08-20 21:57:19.030773+00 2025-08-20 21:57:19.030782+00 f t milo DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6988 +5753 2025-08-21 17:33:56.931312+00 2025-08-21 17:33:56.931325+00 f t Vitto DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7036 +5716 2025-08-20 22:04:57.228711+00 2025-08-20 22:04:57.228726+00 f t Lemmy DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6989 +5717 2025-08-20 22:24:26.692927+00 2025-08-20 22:24:26.692937+00 f t Mugrosa CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 6992 +5718 2025-08-20 22:45:55.265804+00 2025-08-20 22:45:55.265816+00 f t Cosmo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6994 +5719 2025-08-20 22:49:01.175066+00 2025-08-20 22:49:01.175078+00 f t Cosmo CAT \N 4.20 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6994 +5754 2025-08-21 17:34:49.646888+00 2025-08-21 17:34:49.646897+00 f t Nina CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7036 +5755 2025-08-21 17:40:31.361551+00 2025-08-21 17:40:31.361562+00 f t Toru CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7037 +5721 2025-08-21 00:20:40.017205+00 2025-08-21 00:20:40.017216+00 f t Leo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6996 +5722 2025-08-21 00:27:02.426253+00 2025-08-21 00:27:02.426266+00 f t Oscar CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6997 +5723 2025-08-21 00:33:54.95004+00 2025-08-21 00:33:54.950064+00 f t Coco CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6998 +5698 2025-08-20 17:29:09.550804+00 2025-08-20 17:29:09.550815+00 f t Aragon DOG 3 0.00 0.00 f \N 2025-08-20 \N \N MALE Dogo de Burdeos \N f \N 1583 6970 +5724 2025-08-21 00:59:05.806785+00 2025-08-21 00:59:05.806802+00 f t Rocky DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 6999 +5725 2025-08-21 01:22:57.154941+00 2025-08-21 01:22:57.154951+00 f t Pipo DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7000 +5726 2025-08-21 01:33:03.770742+00 2025-08-21 01:33:03.770756+00 f t Gigi CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7002 +5727 2025-08-21 01:56:21.504059+00 2025-08-21 01:56:21.50407+00 f t Juju DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7004 +5728 2025-08-21 02:09:57.805542+00 2025-08-21 02:09:57.805554+00 f t Justin CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7005 +5729 2025-08-21 03:10:13.878948+00 2025-08-21 03:10:13.878964+00 f t Manchi CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7008 +5730 2025-08-21 04:21:13.855891+00 2025-08-21 04:21:13.8559+00 f t Suzuki CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7009 +5731 2025-08-21 04:56:20.831908+00 2025-08-21 04:56:20.831921+00 f t Baco DOG \N 13.80 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7010 +5732 2025-08-21 05:37:24.947742+00 2025-08-21 05:37:24.947752+00 f t Luna CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7011 +5720 2025-08-20 23:51:20.931306+00 2025-08-20 23:51:20.931315+00 f t Umma DOG 10 0.00 0.00 t 2015-03-29 2025-08-20 \N \N FEMALE \N f \N 114 6995 +5733 2025-08-21 09:49:29.31775+00 2025-08-21 09:49:29.317763+00 f t Tonny DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7012 +5734 2025-08-21 10:14:24.274917+00 2025-08-21 10:14:24.274927+00 f t Choripan CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7013 +5736 2025-08-21 13:14:38.000478+00 2025-08-21 13:14:38.000486+00 f t Luna DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7016 +5737 2025-08-21 13:21:50.790919+00 2025-08-21 13:21:50.79093+00 f t Coco CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7017 +5738 2025-08-21 13:41:51.224479+00 2025-08-21 13:41:51.224487+00 f t deka DOG \N 75.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7018 +5739 2025-08-21 13:55:20.924824+00 2025-08-21 13:55:20.924835+00 f t Ahri CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7019 +5740 2025-08-21 14:36:48.835078+00 2025-08-21 14:36:48.835089+00 f t Blacky CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7020 +5741 2025-08-21 14:38:41.645094+00 2025-08-21 14:38:41.645104+00 f t Lola CAT \N 0.00 0.00 f 2025-02-01 \N \N \N FEMALE Asustadiza \N f \N 1583 7021 +5743 2025-08-21 15:49:31.807308+00 2025-08-21 15:49:31.807319+00 f t capuchina DOG \N 60.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7024 +5744 2025-08-21 16:13:05.155924+00 2025-08-21 16:13:05.155933+00 f t Menta CAT 3 4.00 0.00 t \N \N \N \N FEMALE \N f 56 1583 7026 +5745 2025-08-21 16:17:19.041057+00 2025-08-21 16:17:19.041065+00 f t Belkys DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7028 +5746 2025-08-21 16:19:50.857858+00 2025-08-21 16:19:50.857869+00 f t Apolo DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7030 +5747 2025-08-21 16:23:11.574746+00 2025-08-21 16:23:11.574755+00 f t Blacky CAT 9 4.00 0.00 t \N \N \N \N FEMALE Arisca \N f \N 1583 7031 +5735 2025-08-21 12:45:03.700255+00 2025-08-21 12:45:03.700269+00 f t OSCAR CAT 14 3.00 0.00 f \N 2025-08-21 \N \N MALE \N f \N 1208 7015 +5748 2025-08-21 17:08:27.300621+00 2025-08-21 17:08:27.300634+00 f t Ceniza CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7032 +5749 2025-08-21 17:19:34.161471+00 2025-08-21 17:19:34.161481+00 f t teo DOG \N 50.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7033 +5750 2025-08-21 17:29:43.467428+00 2025-08-21 17:29:43.467442+00 f t Magdalena DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7034 +5742 2025-08-21 14:53:26.026797+00 2025-08-21 14:53:26.026806+00 f t Aragorn DOG 12 40.00 0.00 t \N 2025-08-21 \N \N MALE \N f 3 1208 7022 +5751 2025-08-21 17:30:54.650278+00 2025-08-21 17:30:54.65029+00 f t Amor CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7035 +5752 2025-08-21 17:31:34.977104+00 2025-08-21 17:31:34.977115+00 f t Magdalena CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7034 +5757 2025-08-21 17:57:31.48568+00 2025-08-21 17:57:31.48569+00 f t Tomas CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7039 +5758 2025-08-21 18:51:41.979098+00 2025-08-21 18:51:41.979111+00 f t Milo DOG \N 10.30 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7040 +5759 2025-08-21 19:01:24.219386+00 2025-08-21 19:01:24.2194+00 f t Furi CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7041 +5760 2025-08-21 19:11:33.6228+00 2025-08-21 19:11:33.62281+00 f t Simba DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7042 +5756 2025-08-21 17:56:18.319805+00 2025-08-21 17:56:18.319812+00 f t Munra DOG \N 12.00 0.00 f 2024-03-01 2025-08-20 \N \N MALE \N f 5 1583 7038 +5761 2025-08-21 19:26:31.206009+00 2025-08-21 19:26:31.206023+00 f t simba DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7043 +5762 2025-08-21 20:30:04.430809+00 2025-08-21 20:30:04.430823+00 f t gfdfg DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7045 +5763 2025-08-21 20:43:25.643435+00 2025-08-21 20:43:25.643447+00 f t Shakti DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7046 +5764 2025-08-21 20:43:49.204383+00 2025-08-21 20:43:49.204392+00 f t Shakti CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7046 +5765 2025-08-21 21:05:50.885301+00 2025-08-21 21:05:50.885314+00 f t DULCE DOG \N 1.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7047 +5766 2025-08-21 21:20:15.717846+00 2025-08-21 21:20:15.717858+00 f t Milo DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7048 +5767 2025-08-21 21:23:16.653411+00 2025-08-21 21:23:16.65342+00 f t Oliver CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7049 +5768 2025-08-21 21:29:47.482327+00 2025-08-21 21:29:47.482336+00 f t Lola DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7050 +5769 2025-08-21 21:52:43.143324+00 2025-08-21 21:52:43.143333+00 f t Bella CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7052 +5770 2025-08-21 22:15:40.190365+00 2025-08-21 22:15:40.190375+00 f t Dulce DOG 17 15.00 0.00 t \N 2025-08-21 \N \N MALE Estuvo tomando\r\nOmeprazol 20\r\nCartílago forte Classico\r\nUrsomarina 20\r\n1 cucharada de Coprobech\r\nAlimento Royale Canino gastrointestinal moderadas calorías. \N f \N 1583 7053 +5773 2025-08-21 23:31:54.38952+00 2025-08-21 23:31:54.389533+00 f t Uma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7057 +5774 2025-08-21 23:53:54.8725+00 2025-08-21 23:53:54.872509+00 f t Luna Himidian DOG 14 31.00 0.00 t \N \N \N \N FEMALE Toma sosten art 25 (2 x día) y Tramadol 100mg (2 veces x día). Es mansa .no es agresiva .tiene cataratas y al no ver bien se puede asustar ...Pero es inofensiva \N f 2 114 7058 +5775 2025-08-22 00:04:20.890154+00 2025-08-22 00:04:20.890164+00 f t Kira DOG 13 0.00 0.00 f \N \N \N \N FEMALE Asustadiza \N f \N 114 7059 +5776 2025-08-22 00:17:20.993332+00 2025-08-22 00:17:20.993342+00 f t Mia DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7060 +5777 2025-08-22 00:37:55.48029+00 2025-08-22 00:37:55.480299+00 f t Simón CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7061 +5778 2025-08-22 00:59:47.038395+00 2025-08-22 00:59:47.038405+00 f t Freyja DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7062 +5771 2025-08-21 23:22:57.007307+00 2025-08-21 23:22:57.007316+00 f t Milo DOG 8 7.50 0.00 t \N 2025-08-21 \N \N MALE \N f 8 114 7055 +5779 2025-08-22 03:01:27.212065+00 2025-08-22 03:01:27.212082+00 f t Zeus DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7064 +5780 2025-08-22 03:23:46.482627+00 2025-08-22 03:23:46.482638+00 f t Rocky DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7066 +5781 2025-08-22 04:13:59.660869+00 2025-08-22 04:13:59.660878+00 f t Ciro DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7068 +5782 2025-08-22 04:55:18.917689+00 2025-08-22 04:55:18.917698+00 f t Me gusta DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7070 +5783 2025-08-22 08:05:40.082257+00 2025-08-22 08:05:40.082269+00 f t Alma DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7071 +5784 2025-08-22 08:15:02.748457+00 2025-08-22 08:15:02.748472+00 f t Ciro DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7072 +5785 2025-08-22 08:15:31.945446+00 2025-08-22 08:15:31.945456+00 f t Ciro CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7072 +5786 2025-08-22 11:28:39.504497+00 2025-08-22 11:28:39.504507+00 f t Noa CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7073 +5787 2025-08-22 11:34:41.003161+00 2025-08-22 11:34:41.003171+00 f t Jake DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7074 +5788 2025-08-22 11:52:29.31502+00 2025-08-22 11:52:29.315032+00 f t Gala CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7075 +5789 2025-08-22 12:35:29.721014+00 2025-08-22 12:35:29.721023+00 f t Hannibal DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7076 +5790 2025-08-22 12:58:55.691372+00 2025-08-22 12:58:55.691385+00 f t Hannibal DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7077 +5791 2025-08-22 13:39:20.425024+00 2025-08-22 13:39:20.425036+00 f t teo DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7078 +5772 2025-08-21 23:28:53.436343+00 2025-08-21 23:28:53.43635+00 f t Sol CAT 7 7.50 0.00 t \N 2025-08-22 \N \N FEMALE se asusta ,se estrsa y con personas que no conoce \N f \N 114 7056 +5792 2025-08-22 13:59:50.305684+00 2025-08-22 13:59:50.305697+00 f t hannibal DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7080 +5793 2025-08-22 14:08:19.127523+00 2025-08-22 14:08:19.127535+00 f t Nico CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7081 +5794 2025-08-22 14:24:15.53946+00 2025-08-22 14:24:15.539466+00 f t Coquito CAT 6 4.50 0.00 t \N \N \N \N MALE \N f \N 1583 7082 +5795 2025-08-22 15:09:54.48538+00 2025-08-22 15:09:54.485391+00 f t Ônix CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7083 +5796 2025-08-22 15:50:00.750017+00 2025-08-22 15:50:00.750027+00 f t Shiva DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7084 +5797 2025-08-22 16:06:12.242925+00 2025-08-22 16:06:12.242939+00 f t Julia CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7085 +5798 2025-08-22 16:15:50.504001+00 2025-08-22 16:15:50.504013+00 f t Lupe DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7087 +5799 2025-08-22 16:16:45.833482+00 2025-08-22 16:16:45.833491+00 f t Kika CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7086 +5800 2025-08-22 16:23:02.538073+00 2025-08-22 16:23:02.538084+00 f t Rayo DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7088 +5801 2025-08-22 16:51:20.474894+00 2025-08-22 16:51:20.474905+00 f t Eka CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7090 +5802 2025-08-22 17:15:37.901376+00 2025-08-22 17:15:37.901383+00 f t Shakti CAT 13 5.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 7092 +5803 2025-08-22 17:21:07.674214+00 2025-08-22 17:21:07.674223+00 f t Can DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7093 +5804 2025-08-22 17:28:51.402052+00 2025-08-22 17:28:51.402061+00 f t Mia DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7094 +5805 2025-08-22 17:51:11.331504+00 2025-08-22 17:51:11.331515+00 f t Milo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7095 +5806 2025-08-22 18:43:43.404082+00 2025-08-22 18:43:43.404094+00 f t Cala CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7096 +5807 2025-08-22 18:46:52.642064+00 2025-08-22 18:46:52.642072+00 f t Aruba DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7097 +5808 2025-08-22 19:26:32.302125+00 2025-08-22 19:26:32.302137+00 f t Rocco DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7099 +5809 2025-08-22 19:31:37.946242+00 2025-08-22 19:31:37.94625+00 f t TEST DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7100 +5810 2025-08-22 19:44:33.782393+00 2025-08-22 19:44:33.782401+00 f t Y CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7102 +5811 2025-08-22 19:46:03.29683+00 2025-08-22 19:46:03.29684+00 f t Y CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7103 +5812 2025-08-22 19:52:50.91983+00 2025-08-22 19:52:50.919843+00 f t Bigotin CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7104 +5813 2025-08-22 19:55:43.543393+00 2025-08-22 19:55:43.5434+00 f t Mojito DOG 3 20.00 0.00 t \N \N \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? No\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Asustarse si, pero ponerse a la defensiva no. Ya se ha hecho ecografía \N f 1 114 7105 +5814 2025-08-22 20:00:43.964777+00 2025-08-22 20:00:43.964787+00 f t Aralis DOG 11 23.00 0.00 t \N \N \N \N FEMALE actualmente está tomando 3 medicaciones: Gerioox, Pregabaliv, Armonil \N f \N 114 7106 +5815 2025-08-22 20:03:10.990747+00 2025-08-22 20:03:10.990758+00 f t Moña DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7107 +5816 2025-08-22 20:06:37.278008+00 2025-08-22 20:06:37.278015+00 f t Milo CAT 6 5.00 0.00 t \N \N \N \N MALE Está tomando actualmente meloxivet\r\nSi, es un gato que no le gusta la gente \N f \N 114 7108 +5817 2025-08-22 20:15:04.985734+00 2025-08-22 20:15:04.985747+00 f t Miya CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7109 +5818 2025-08-22 20:59:22.4116+00 2025-08-22 20:59:22.41161+00 f t Luna DOG 7 15.00 0.00 t \N \N \N \N FEMALE Es miedosa y puede asustarse \N f \N 1583 7111 +6009 2025-08-26 14:47:24.929339+00 2025-08-26 14:47:24.929351+00 f t Gomita DOG 16 25.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 7323 +5820 2025-08-22 21:17:50.147971+00 2025-08-22 21:17:50.147979+00 f t Vito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7113 +5821 2025-08-22 21:35:00.011004+00 2025-08-22 21:35:00.011017+00 f t Gary CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7115 +5822 2025-08-22 21:42:11.758332+00 2025-08-22 21:42:11.758345+00 f t Lilo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7116 +5823 2025-08-22 21:55:02.209215+00 2025-08-22 21:55:02.209228+00 f t Marta DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7117 +5824 2025-08-22 22:03:57.189964+00 2025-08-22 22:03:57.189973+00 f t Pp CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7118 +5825 2025-08-22 22:24:02.021608+00 2025-08-22 22:24:02.021623+00 f t Reina DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7119 +5819 2025-08-22 21:16:09.087942+00 2025-08-22 21:16:09.087951+00 f t Misa CAT 2 4.00 0.00 t \N \N \N \N FEMALE Toma interferon Paul 7 días si 7 días tiene dx previo de leucemia felina \N f \N 1583 7112 +5826 2025-08-22 23:21:07.050409+00 2025-08-22 23:21:07.050423+00 f t Cookie DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7122 +5827 2025-08-22 23:25:24.345711+00 2025-08-22 23:25:24.34572+00 f t Mushu DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7123 +5828 2025-08-22 23:46:02.713318+00 2025-08-22 23:46:02.713326+00 f t Mezcal DOG 8 23.00 0.00 t \N \N \N \N MALE \N f \N 113 1888 +5829 2025-08-22 23:59:01.8213+00 2025-08-22 23:59:01.82131+00 f t Kiara CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7124 +5830 2025-08-23 00:24:29.101212+00 2025-08-23 00:24:29.101223+00 f t Monyu CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7126 +5831 2025-08-23 00:26:46.855416+00 2025-08-23 00:26:46.855426+00 f t Onix CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7126 +5832 2025-08-23 01:30:57.223418+00 2025-08-23 01:30:57.22343+00 f t Pirulo DOG \N 12.80 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7127 +5833 2025-08-23 02:16:15.748362+00 2025-08-23 02:16:15.748374+00 f t Timoteo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7129 +5834 2025-08-23 02:21:48.211215+00 2025-08-23 02:21:48.211225+00 f t Michi CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7130 +5836 2025-08-23 02:53:26.493734+00 2025-08-23 02:53:26.493746+00 f t Lolo CAT \N 53.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7132 +5837 2025-08-23 02:59:41.471831+00 2025-08-23 02:59:41.471841+00 f t Lolo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7133 +5838 2025-08-23 02:59:54.015058+00 2025-08-23 02:59:54.01507+00 f t Lolo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7133 +5839 2025-08-23 04:46:54.178901+00 2025-08-23 04:46:54.17891+00 f t Nico DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7134 +5840 2025-08-23 06:38:58.015665+00 2025-08-23 06:38:58.015679+00 f t Zazu CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7135 +5841 2025-08-23 11:34:07.615908+00 2025-08-23 11:34:07.615925+00 f t thai DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7136 +5842 2025-08-23 12:43:07.696598+00 2025-08-23 12:43:07.696611+00 f t Oliver DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7138 +5843 2025-08-23 13:13:09.573092+00 2025-08-23 13:13:09.573106+00 f t Boris DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7139 +5844 2025-08-23 13:32:53.294573+00 2025-08-23 13:32:53.294582+00 f t Teri DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7140 +5845 2025-08-23 13:48:04.761551+00 2025-08-23 13:48:04.761561+00 f t Camerun CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7141 +5846 2025-08-23 14:01:35.499996+00 2025-08-23 14:01:35.500011+00 f t Zoe DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7142 +5847 2025-08-23 14:07:12.790089+00 2025-08-23 14:07:12.790101+00 f t Tenno DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7143 +5848 2025-08-23 14:12:20.045829+00 2025-08-23 14:12:20.04584+00 f t Romeo CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7144 +5835 2025-08-23 02:47:49.303717+00 2025-08-23 02:47:49.303726+00 f t Lolo CAT \N 5.00 0.00 t \N 2008-03-23 \N \N \N MALE \N \N f \N \N 7131 +5849 2025-08-23 14:22:46.799787+00 2025-08-23 14:22:46.7998+00 f t Ipa DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7145 +5850 2025-08-23 14:23:03.877447+00 2025-08-23 14:23:03.877461+00 f t Ipa CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7145 +5851 2025-08-23 14:37:15.208354+00 2025-08-23 14:37:15.208363+00 f t Canela CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7146 +5852 2025-08-23 14:42:26.184812+00 2025-08-23 14:42:26.184821+00 f t Tenno DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7147 +5853 2025-08-23 16:07:47.728685+00 2025-08-23 16:07:47.728697+00 f t Tomas DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7148 +5854 2025-08-23 16:09:00.124862+00 2025-08-23 16:09:00.124871+00 f t Tomas CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7148 +5855 2025-08-23 16:23:43.151956+00 2025-08-23 16:23:43.15197+00 f t Paz DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7149 +5856 2025-08-23 16:25:58.825877+00 2025-08-23 16:25:58.825891+00 f t Pelusa CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7150 +5857 2025-08-23 16:32:53.994+00 2025-08-23 16:32:53.994013+00 f t Churro DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7151 +5858 2025-08-23 16:33:13.397832+00 2025-08-23 16:33:13.39784+00 f t Churro CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7151 +5859 2025-08-23 18:01:44.770465+00 2025-08-23 18:01:44.770475+00 f t Lola DOG 2 4.00 0.00 f \N \N \N \N FEMALE \N f 12 1208 7152 +5860 2025-08-23 18:09:04.41278+00 2025-08-23 18:09:04.412794+00 f t Toto DOG \N 42.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7153 +5861 2025-08-23 18:51:44.460826+00 2025-08-23 18:51:44.460837+00 f t Camerun CAT 8 6.00 0.00 t \N \N \N \N MALE \N f 27 1208 7154 +5862 2025-08-23 18:55:44.399592+00 2025-08-23 18:55:44.399604+00 f t Neron DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7155 +5863 2025-08-23 19:16:49.765488+00 2025-08-23 19:16:49.7655+00 f t Homero CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7156 +5864 2025-08-23 19:32:06.062895+00 2025-08-23 19:32:06.062909+00 f t Jared CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7157 +5865 2025-08-23 19:56:35.472005+00 2025-08-23 19:56:35.472016+00 f t Ema DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7158 +5866 2025-08-23 20:05:04.943635+00 2025-08-23 20:05:04.94365+00 f t Ema CAT \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7159 +5867 2025-08-23 20:27:29.739597+00 2025-08-23 20:27:29.739609+00 f t Leon CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7160 +5868 2025-08-23 20:38:07.958631+00 2025-08-23 20:38:07.958644+00 f t Plomo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7161 +5869 2025-08-23 21:29:13.402001+00 2025-08-23 21:29:13.40201+00 f t Ruby CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7162 +5870 2025-08-23 21:41:14.668666+00 2025-08-23 21:41:14.668679+00 f t Sal CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7163 +5871 2025-08-23 21:47:07.299782+00 2025-08-23 21:47:07.299792+00 f t Junior CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7164 +5872 2025-08-23 21:49:44.944255+00 2025-08-23 21:49:44.944268+00 f t Beennett DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7165 +5873 2025-08-23 21:49:59.69898+00 2025-08-23 21:49:59.698988+00 f t Bennett DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7165 +5874 2025-08-23 22:49:11.654116+00 2025-08-23 22:49:11.654129+00 f t PERRO ENCOTRADO DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7166 +5875 2025-08-23 23:12:58.842447+00 2025-08-23 23:12:58.842459+00 f t Giuseppe DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7167 +5876 2025-08-23 23:18:29.353465+00 2025-08-23 23:18:29.353474+00 f t Nebula DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7168 +5877 2025-08-23 23:48:03.578919+00 2025-08-23 23:48:03.578933+00 f t Gordo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7169 +5878 2025-08-23 23:49:34.311476+00 2025-08-23 23:49:34.311488+00 f t Gordo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7170 +5879 2025-08-23 23:50:34.838348+00 2025-08-23 23:50:34.838361+00 f t Gordo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7171 +5880 2025-08-24 00:56:51.825239+00 2025-08-24 00:56:51.825251+00 f t Apolo DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7173 +5881 2025-08-24 01:03:11.161044+00 2025-08-24 01:03:11.161058+00 f t Magda DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7174 +5882 2025-08-24 01:06:54.851861+00 2025-08-24 01:06:54.851874+00 f t Magda DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7175 +5883 2025-08-24 02:27:57.39664+00 2025-08-24 02:27:57.396653+00 f t Margarita DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7176 +5884 2025-08-24 04:06:34.543205+00 2025-08-24 04:06:34.543218+00 f t Apolo y Lakshmi CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7178 +5885 2025-08-24 05:08:19.342881+00 2025-08-24 05:08:19.342895+00 f t Gordito CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7180 +5886 2025-08-24 08:14:04.303247+00 2025-08-24 08:14:04.303256+00 f t Beto DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7181 +5887 2025-08-24 10:04:49.131226+00 2025-08-24 10:04:49.131236+00 f t Mechas DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7182 +5888 2025-08-24 11:24:00.72567+00 2025-08-24 11:24:00.725682+00 f t Gary CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7183 +5889 2025-08-24 12:02:51.138342+00 2025-08-24 12:02:51.138351+00 f t Gala DOG \N 16.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7185 +5890 2025-08-24 12:27:25.692622+00 2025-08-24 12:27:25.692633+00 f t Sancho DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7186 +5891 2025-08-24 12:36:43.535365+00 2025-08-24 12:36:43.535379+00 f t Cherry DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7187 +5892 2025-08-24 12:45:25.524331+00 2025-08-24 12:45:25.524341+00 f t Winnie DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7188 +5893 2025-08-24 12:45:44.508028+00 2025-08-24 12:45:44.508038+00 f t Winnie DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7188 +5894 2025-08-24 13:53:22.593216+00 2025-08-24 13:53:22.593224+00 f t Luna DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7189 +5895 2025-08-24 13:59:05.271006+00 2025-08-24 13:59:05.271016+00 f t Lola DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7190 +5896 2025-08-24 14:04:03.67876+00 2025-08-24 14:04:03.678769+00 f t Lola CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7191 +5897 2025-08-24 15:42:49.575763+00 2025-08-24 15:42:49.575773+00 f t Bennett DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7193 +5898 2025-08-24 16:23:53.963217+00 2025-08-24 16:23:53.963226+00 f t Mora DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7194 +5899 2025-08-24 17:04:19.802068+00 2025-08-24 17:04:19.802078+00 f t Flaco DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7195 +5900 2025-08-24 18:31:13.793661+00 2025-08-24 18:31:13.793668+00 f t Nala DOG 9 20.00 0.00 f \N \N \N \N FEMALE Hoy le inyectaron un protector gastrico.\r\nRanitidina mas dipirona( creo q dice eso)\r\nNo reacciona con desconocidos \N f 1 114 5249 +5901 2025-08-24 18:33:39.84295+00 2025-08-24 18:33:39.84296+00 f t Milo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7197 +5902 2025-08-24 18:41:13.345653+00 2025-08-24 18:41:13.345659+00 f t Junior CAT 6 6.00 0.00 t \N \N \N \N MALE \N f \N 114 7198 +5903 2025-08-24 18:52:11.438249+00 2025-08-24 18:52:11.438256+00 f t Luciano DOG 5 12.00 0.00 f \N \N \N \N MALE estuvo tomando miloxicam, urivier, y un antibiótico, y no hace nada por más que no conozca \N f 1 114 4334 +5904 2025-08-24 18:53:09.361109+00 2025-08-24 18:53:09.36112+00 f t Georgie DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7199 +5905 2025-08-24 19:22:49.15054+00 2025-08-24 19:22:49.15055+00 f t Xenei DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7200 +5906 2025-08-24 19:23:52.855198+00 2025-08-24 19:23:52.855208+00 f t Martina Agustina DOG 9 13.00 0.00 f \N \N \N \N FEMALE \N f \N 114 7201 +5907 2025-08-24 19:25:41.54218+00 2025-08-24 19:25:41.542189+00 f t Xenei DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7202 +5908 2025-08-24 19:39:02.223823+00 2025-08-24 19:39:02.223837+00 f t Valentina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7203 +5909 2025-08-24 20:14:30.326571+00 2025-08-24 20:14:30.326583+00 f t Homero DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7204 +5910 2025-08-24 20:21:50.825068+00 2025-08-24 20:21:50.825077+00 f t Berta DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7205 +5911 2025-08-24 21:19:48.821118+00 2025-08-24 21:19:48.821131+00 f t Pancho CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7207 +5912 2025-08-24 21:20:05.954873+00 2025-08-24 21:20:05.954889+00 f t Melba CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7208 +5913 2025-08-24 21:21:05.687472+00 2025-08-24 21:21:05.687486+00 f t Pancho CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7209 +5914 2025-08-24 21:21:16.294861+00 2025-08-24 21:21:16.29487+00 f t Moro CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7208 +5915 2025-08-24 21:22:10.515358+00 2025-08-24 21:22:10.515372+00 f t Gato CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7210 +5916 2025-08-24 21:35:10.932208+00 2025-08-24 21:35:10.932222+00 f t Estrella CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7211 +5917 2025-08-24 21:44:03.702288+00 2025-08-24 21:44:03.702297+00 f t Estrella CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7212 +5918 2025-08-24 21:47:17.584663+00 2025-08-24 21:47:17.584675+00 f t Estrella CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7213 +5919 2025-08-24 21:49:09.247498+00 2025-08-24 21:49:09.247506+00 f t Estrella CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7214 +5920 2025-08-24 22:40:26.967411+00 2025-08-24 22:40:26.967421+00 f t Briza CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7218 +5921 2025-08-24 23:06:16.521858+00 2025-08-24 23:06:16.521868+00 f t Cookie CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7219 +5922 2025-08-24 23:37:24.435292+00 2025-08-24 23:37:24.435301+00 f t Oliver CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7220 +5923 2025-08-24 23:38:24.616119+00 2025-08-24 23:38:24.616134+00 f t Lairon CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7221 +5924 2025-08-24 23:38:55.102545+00 2025-08-24 23:38:55.102553+00 f t Cielo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7222 +5925 2025-08-24 23:54:33.95235+00 2025-08-24 23:54:33.952359+00 f t Baltazar DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7224 +5926 2025-08-24 23:59:09.038792+00 2025-08-24 23:59:09.038805+00 f t Stormie DOG \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7225 +5927 2025-08-25 00:19:36.437607+00 2025-08-25 00:19:36.437618+00 f t Storm CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7227 +5928 2025-08-25 00:28:12.67119+00 2025-08-25 00:28:12.6712+00 f t Storm CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7228 +5929 2025-08-25 00:33:16.840099+00 2025-08-25 00:33:16.840108+00 f t Chicha DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7230 +5930 2025-08-25 00:33:32.319293+00 2025-08-25 00:33:32.319301+00 f t bruno DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7229 +5931 2025-08-25 00:37:50.553216+00 2025-08-25 00:37:50.553225+00 f t Enzo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7231 +5932 2025-08-25 01:18:08.761617+00 2025-08-25 01:18:08.761627+00 f t Pangea CAT \N 3.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7233 +5933 2025-08-25 01:29:37.997027+00 2025-08-25 01:29:37.997044+00 f t Milli CAT \N 27.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7234 +5934 2025-08-25 01:57:17.607802+00 2025-08-25 01:57:17.607813+00 f t Luca DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7235 +5935 2025-08-25 01:57:36.472618+00 2025-08-25 01:57:36.472629+00 f t Luna DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7235 +5936 2025-08-25 02:20:38.480559+00 2025-08-25 02:20:38.480573+00 f t Milo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7237 +5937 2025-08-25 02:34:55.195262+00 2025-08-25 02:34:55.195276+00 f t Finnu CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7238 +5938 2025-08-25 02:35:17.879196+00 2025-08-25 02:35:17.87921+00 f t Finny CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7238 +5939 2025-08-25 02:45:04.019025+00 2025-08-25 02:45:04.01904+00 f t Blusito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7239 +5940 2025-08-25 02:46:53.648633+00 2025-08-25 02:46:53.648643+00 f t Blusito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7239 +5941 2025-08-25 02:47:38.161208+00 2025-08-25 02:47:38.161218+00 f t Milu DOG \N 800.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7240 +5942 2025-08-25 02:49:44.758553+00 2025-08-25 02:49:44.758562+00 f t Blusito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7241 +5943 2025-08-25 02:52:06.965033+00 2025-08-25 02:52:06.965043+00 f t Blusito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7242 +5944 2025-08-25 03:10:57.284916+00 2025-08-25 03:10:57.284926+00 f t Milo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7243 +5945 2025-08-25 04:37:34.209986+00 2025-08-25 04:37:34.209996+00 f t Rita DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7245 +5946 2025-08-25 09:58:29.898891+00 2025-08-25 09:58:29.898901+00 f t Borges CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7247 +5947 2025-08-25 10:18:47.156039+00 2025-08-25 10:18:47.156052+00 f t Sofi DOG \N 36.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7248 +5948 2025-08-25 11:13:37.40832+00 2025-08-25 11:13:37.408331+00 f t rumba CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7249 +6010 2025-08-26 15:15:00.051037+00 2025-08-26 15:15:00.051052+00 f t Luna DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7324 +6048 2025-08-27 14:53:24.34875+00 2025-08-27 14:53:24.34876+00 f t Benja DOG \N 2.10 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7362 +6062 2025-08-27 18:52:25.532497+00 2025-08-27 18:52:25.532506+00 f t isis DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7378 +6069 2025-08-27 22:11:32.583977+00 2025-08-27 22:11:32.583988+00 f t Jupiter CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7389 +6073 2025-08-27 22:46:29.390665+00 2025-08-27 22:46:29.390674+00 f t Lazaro CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7393 +6076 2025-08-27 22:49:38.262284+00 2025-08-27 22:49:38.262295+00 f t Tallarin CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7393 +6079 2025-08-27 23:23:31.619435+00 2025-08-27 23:23:31.619449+00 f t Bela DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7397 +6081 2025-08-27 23:55:10.63003+00 2025-08-27 23:55:10.630038+00 f t Apolo CAT 4 0.00 0.00 t \N \N \N \N MALE Siempre es muy dócil con los humanos, un poco asustadizo pero nada muy grave \N f \N 114 7400 +6083 2025-08-27 23:58:44.790802+00 2025-08-27 23:58:44.790812+00 f t Luke CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7401 +6085 2025-08-28 00:00:09.607671+00 2025-08-28 00:00:09.607688+00 f t Pepito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7402 +6087 2025-08-28 00:05:26.188986+00 2025-08-28 00:05:26.188996+00 f t Rex CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7405 +6089 2025-08-28 00:09:31.073703+00 2025-08-28 00:09:31.073719+00 f t Leia CAT \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7405 +6090 2025-08-28 00:55:46.230376+00 2025-08-28 00:55:46.230386+00 f t Milo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7406 +6091 2025-08-28 01:01:36.422745+00 2025-08-28 01:01:36.42276+00 f t Toto DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7407 +6092 2025-08-28 01:12:24.716467+00 2025-08-28 01:12:24.716479+00 f t Tito DOG \N 32.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7408 +6093 2025-08-28 01:43:05.698311+00 2025-08-28 01:43:05.69832+00 f t Indio DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7409 +6094 2025-08-28 02:01:33.143699+00 2025-08-28 02:01:33.143709+00 f t luna DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7410 +6095 2025-08-28 02:32:00.328869+00 2025-08-28 02:32:00.328881+00 f t Layca DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7412 +6096 2025-08-28 02:33:13.902453+00 2025-08-28 02:33:13.902464+00 f t Rucula CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7413 +6097 2025-08-28 02:34:37.820465+00 2025-08-28 02:34:37.820477+00 f t Manteca CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7413 +6098 2025-08-28 02:35:47.046611+00 2025-08-28 02:35:47.046623+00 f t Uma DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7413 +1095 2025-05-13 19:26:56.735907+00 2025-05-13 19:26:56.735918+00 f t Morella CAT 7 3.50 0.00 t 2017-09-29 2025-05-19 \N \N FEMALE \N f \N 113 999 +6099 2025-08-28 03:09:22.788753+00 2025-08-28 03:09:22.788762+00 f t Sirius DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7415 +6100 2025-08-28 03:28:45.612932+00 2025-08-28 03:28:45.612942+00 f t Lupe CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7416 +6101 2025-08-28 06:01:28.290844+00 2025-08-28 06:01:28.290855+00 f t Umma DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7417 +6102 2025-08-28 08:18:51.133405+00 2025-08-28 08:18:51.133416+00 f t Wilson DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7418 +6103 2025-08-28 08:25:05.699651+00 2025-08-28 08:25:05.699664+00 f t Tacte DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7419 +6104 2025-08-28 11:11:33.861803+00 2025-08-28 11:11:33.861812+00 f t Lara DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7420 +6105 2025-08-28 11:33:16.647177+00 2025-08-28 11:33:16.647192+00 f t Mia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7422 +6106 2025-08-28 11:34:07.093758+00 2025-08-28 11:34:07.093767+00 f t leo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7422 +6107 2025-08-28 11:34:42.412942+00 2025-08-28 11:34:42.412955+00 f t Mia CAT \N 3.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7423 +6108 2025-08-28 12:01:59.237302+00 2025-08-28 12:01:59.237313+00 f t Toto CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7425 +6109 2025-08-28 12:19:49.091796+00 2025-08-28 12:19:49.091805+00 f t Bosque CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7426 +6110 2025-08-28 12:44:56.982554+00 2025-08-28 12:44:56.982562+00 f t Isis CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7427 +6111 2025-08-28 12:55:54.716303+00 2025-08-28 12:55:54.716316+00 f t Duko CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7428 +6112 2025-08-28 12:56:16.690141+00 2025-08-28 12:56:16.69015+00 f t Duki CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7428 +6113 2025-08-28 12:59:09.065947+00 2025-08-28 12:59:09.065955+00 f t Luz DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7429 +6114 2025-08-28 13:02:13.602713+00 2025-08-28 13:02:13.602735+00 f t Bruno CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7431 +6115 2025-08-28 14:01:13.922234+00 2025-08-28 14:01:13.922244+00 f t Luz DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7432 +6116 2025-08-28 14:16:03.503202+00 2025-08-28 14:16:03.503212+00 f t Coco DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7433 +6117 2025-08-28 15:14:11.57199+00 2025-08-28 15:14:11.572+00 f t Rafael DOG \N 1.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7434 +6118 2025-08-28 15:14:46.020588+00 2025-08-28 15:14:46.020598+00 f t Fifi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7435 +6119 2025-08-28 15:35:37.50066+00 2025-08-28 15:35:37.50067+00 f t Axel CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7437 +6121 2025-08-28 15:47:08.924284+00 2025-08-28 15:47:08.92431+00 f t Sam DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7438 +6120 2025-08-28 15:42:58.897154+00 2025-08-28 15:42:58.897166+00 f t Runo DOG 14 7.00 0.00 t \N \N \N \N MALE Tomando medicacion para el corazon \N f \N 1583 7436 +6122 2025-08-28 16:34:40.652732+00 2025-08-28 16:34:40.652746+00 f t APOLO CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7439 +6123 2025-08-28 16:47:33.403637+00 2025-08-28 16:47:33.403652+00 f t Wilson DOG \N 6.30 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7440 +6124 2025-08-28 17:35:30.115054+00 2025-08-28 17:35:30.115067+00 f t Pelusa CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7442 +8507 2025-10-08 01:36:02.90309+00 2025-10-08 01:36:02.9031+00 f t Cala CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10248 +6128 2025-08-28 19:07:31.742704+00 2025-08-28 19:07:31.742713+00 f t Lala DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7449 +6129 2025-08-28 19:09:30.607826+00 2025-08-28 19:09:30.607838+00 f t Misha CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7449 +6130 2025-08-28 19:12:42.800464+00 2025-08-28 19:12:42.800473+00 f t Lucifer CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7450 +6131 2025-08-28 19:40:38.470711+00 2025-08-28 19:40:38.470721+00 f t Romeo DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7452 +6132 2025-08-28 20:07:56.138827+00 2025-08-28 20:07:56.138843+00 f t Lucifer DOG \N 1.20 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7453 +6133 2025-08-28 20:21:48.408478+00 2025-08-28 20:21:48.408489+00 f t Ceci CAT \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7455 +6134 2025-08-28 21:37:19.799343+00 2025-08-28 21:37:19.799352+00 f t S/N CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 5342 +6135 2025-08-28 21:39:27.711028+00 2025-08-28 21:39:27.711037+00 f t Simone CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7460 +6136 2025-08-28 21:40:27.628467+00 2025-08-28 21:40:27.628478+00 f t Marie CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7460 +6137 2025-08-28 22:01:46.980923+00 2025-08-28 22:01:46.98094+00 f t Kaila DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7461 +6126 2025-08-28 17:43:17.086243+00 2025-08-28 17:43:17.086256+00 f t Leia CAT \N 5.50 0.00 t \N 2019-02-01 \N \N \N FEMALE \N \N f \N \N 7443 +6190 2025-08-29 19:13:17.854024+00 2025-08-29 19:13:17.854035+00 f t Milanesa CAT 4 3.00 0.00 t \N \N \N \N FEMALE \N f 27 114 1734 +8523 2025-10-08 13:37:03.076264+00 2025-10-08 13:37:03.076273+00 f t Tori CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10268 +6125 2025-08-28 17:42:45.37697+00 2025-08-28 17:42:45.37698+00 f t Rex CAT \N 5.00 0.00 t \N 2015-10-15 \N \N \N MALE \N \N f \N \N 7443 +6138 2025-08-28 22:48:07.947385+00 2025-08-28 22:48:07.947399+00 f t Samanta CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7463 +6139 2025-08-29 00:01:57.302609+00 2025-08-29 00:01:57.302619+00 f t Felipe DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7465 +6140 2025-08-29 00:14:02.660332+00 2025-08-29 00:14:02.660344+00 f t Garfiel CAT \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7466 +6141 2025-08-29 00:25:02.446413+00 2025-08-29 00:25:02.446802+00 f t Puchito CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7467 +6142 2025-08-29 01:27:42.702972+00 2025-08-29 01:27:42.702982+00 f t Shake DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7469 +6143 2025-08-29 01:37:25.086432+00 2025-08-29 01:37:25.086445+00 f t Pepe DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7470 +6144 2025-08-29 01:53:55.795748+00 2025-08-29 01:53:55.795758+00 f t Kira DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7471 +6145 2025-08-29 02:17:23.174608+00 2025-08-29 02:17:23.174617+00 f t Cloe DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7472 +6146 2025-08-29 02:37:02.186165+00 2025-08-29 02:37:02.186174+00 f t Charly DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7473 +6147 2025-08-29 02:38:07.787359+00 2025-08-29 02:38:07.787369+00 f t Alex CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7474 +6077 2025-08-27 23:15:02.75651+00 2025-08-27 23:15:02.75652+00 f t Brownie DOG 11 20.00 0.00 f 2014-05-18 \N \N \N MALE \N f 17 114 7395 +6148 2025-08-29 04:59:25.337756+00 2025-08-29 04:59:25.337771+00 f t Scooby DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7477 +6149 2025-08-29 10:03:05.142616+00 2025-08-29 10:03:05.14263+00 f t MAU DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7478 +6150 2025-08-29 10:23:48.196119+00 2025-08-29 10:23:48.196128+00 f t Scooby DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7479 +6151 2025-08-29 10:47:01.570556+00 2025-08-29 10:47:01.570571+00 f t Samba DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7480 +6152 2025-08-29 11:06:25.521817+00 2025-08-29 11:06:25.52183+00 f t Rocky DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7481 +6153 2025-08-29 11:28:15.489423+00 2025-08-29 11:28:15.489437+00 f t Mus CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7483 +6154 2025-08-29 11:35:05.378399+00 2025-08-29 11:35:05.378414+00 f t Rocky DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7484 +6155 2025-08-29 11:37:05.777099+00 2025-08-29 11:37:05.777108+00 f t Brutus DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7485 +6156 2025-08-29 12:11:28.854941+00 2025-08-29 12:11:28.854951+00 f t yuri CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7486 +6157 2025-08-29 12:11:34.888997+00 2025-08-29 12:11:34.889009+00 f t sasas DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7487 +6158 2025-08-29 12:13:53.78837+00 2025-08-29 12:13:53.788379+00 f t SABRINA CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7488 +6159 2025-08-29 12:24:27.079701+00 2025-08-29 12:24:27.079713+00 f t Polar DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7489 +6160 2025-08-29 12:25:43.17142+00 2025-08-29 12:25:43.171432+00 f t Chizzo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7491 +6161 2025-08-29 12:25:57.792081+00 2025-08-29 12:25:57.792093+00 f t Limón DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7489 +6162 2025-08-29 12:38:53.178514+00 2025-08-29 12:38:53.178526+00 f t Sasha DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7492 +6163 2025-08-29 12:49:57.111903+00 2025-08-29 12:49:57.111913+00 f t Selena CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7493 +6164 2025-08-29 13:20:15.954354+00 2025-08-29 13:20:15.954364+00 f t María Elena CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7495 +6165 2025-08-29 13:31:59.048718+00 2025-08-29 13:31:59.04873+00 f t Oreo DOG \N 7.40 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7496 +6166 2025-08-29 13:35:54.150356+00 2025-08-29 13:35:54.150369+00 f t Sophie CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7497 +6167 2025-08-29 13:36:59.170879+00 2025-08-29 13:36:59.170888+00 f t Oreo CAT \N 7.40 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7498 +6168 2025-08-29 14:12:56.116862+00 2025-08-29 14:12:56.116872+00 f t Jahna CAT 13 4.20 0.00 t \N \N \N \N FEMALE Puede asustarse \N f \N 1583 7501 +6169 2025-08-29 15:09:10.004915+00 2025-08-29 15:09:10.00493+00 f t Michel CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7503 +6170 2025-08-29 15:13:25.709413+00 2025-08-29 15:13:25.709427+00 f t Bella DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7504 +6171 2025-08-29 15:13:41.277726+00 2025-08-29 15:13:41.277739+00 f t Bella CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7504 +6172 2025-08-29 15:17:14.692567+00 2025-08-29 15:17:14.692578+00 f t Milo CAT \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7504 +6173 2025-08-29 15:43:56.397828+00 2025-08-29 15:43:56.397837+00 f t Whisky DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7510 +6174 2025-08-29 15:45:26.80839+00 2025-08-29 15:45:26.808404+00 f t Whisky DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7511 +6175 2025-08-29 15:46:33.118981+00 2025-08-29 15:46:33.118992+00 f t Whisky DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7512 +6176 2025-08-29 15:47:29.088676+00 2025-08-29 15:47:29.088687+00 f t Whisky DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7513 +6177 2025-08-29 15:48:32.857475+00 2025-08-29 15:48:32.857485+00 f t Whisky DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7514 +6178 2025-08-29 16:03:50.259544+00 2025-08-29 16:03:50.259556+00 f t Matilda DOG \N 29.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7515 +6179 2025-08-29 16:14:19.941716+00 2025-08-29 16:14:19.941729+00 f t Tayson DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7516 +6180 2025-08-29 16:15:48.050511+00 2025-08-29 16:15:48.050521+00 f t Tayson CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7516 +6181 2025-08-29 17:10:47.918971+00 2025-08-29 17:10:47.918979+00 f t Totoro CAT 10 6.50 0.00 t \N \N \N \N MALE Suele estresarse \N f \N 1583 7517 +6182 2025-08-29 17:22:53.916991+00 2025-08-29 17:22:53.916998+00 f t Ragazza DOG 13 25.00 0.00 t \N \N \N \N FEMALE \N f 4 1583 7518 +6183 2025-08-29 17:26:48.60681+00 2025-08-29 17:26:48.606824+00 f t Boanca DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7519 +6184 2025-08-29 18:05:49.056668+00 2025-08-29 18:05:49.056677+00 f t Picasso CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7521 +6185 2025-08-29 18:09:09.090565+00 2025-08-29 18:09:09.09058+00 f t Moholy CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7522 +6186 2025-08-29 18:32:37.720369+00 2025-08-29 18:32:37.720378+00 f t Jacinto CAT \N 5.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7523 +6187 2025-08-29 18:52:45.797474+00 2025-08-29 18:52:45.797487+00 f t Apolo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7524 +6188 2025-08-29 18:58:33.436527+00 2025-08-29 18:58:33.436536+00 f t Ambar DOG \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7525 +6189 2025-08-29 18:58:52.720711+00 2025-08-29 18:58:52.720723+00 f t Ambar CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7526 +6191 2025-08-29 19:21:35.743095+00 2025-08-29 19:21:35.743105+00 f t Chocolate DOG 6 6.00 0.00 f \N \N \N \N MALE \N f \N 114 7527 +6192 2025-08-29 19:22:28.250421+00 2025-08-29 19:22:28.25043+00 f t Moholy CAT 0 4.50 0.00 t \N \N \N \N MALE \N f \N 1583 7528 +6193 2025-08-29 19:43:45.889954+00 2025-08-29 19:43:45.889964+00 f t Harley DOG 0 4.50 0.00 f 2025-05-15 \N \N \N FEMALE \N f 10 1583 7529 +6194 2025-08-29 19:55:17.250975+00 2025-08-29 19:55:17.250989+00 f t Alika CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7530 +6195 2025-08-29 21:55:54.926272+00 2025-08-29 21:55:54.926285+00 f t China CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7535 +6196 2025-08-29 22:16:54.007442+00 2025-08-29 22:16:54.007452+00 f t Luni DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7536 +6197 2025-08-29 22:33:23.248625+00 2025-08-29 22:33:23.248637+00 f t Mina CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7538 +6198 2025-08-29 22:33:44.416336+00 2025-08-29 22:33:44.416344+00 f t Zuko CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7537 +6199 2025-08-29 22:50:53.076947+00 2025-08-29 22:50:53.076957+00 f t Miranda CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7539 +6200 2025-08-29 22:54:01.239126+00 2025-08-29 22:54:01.239163+00 f t Momo DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7540 +6201 2025-08-29 23:12:21.741256+00 2025-08-29 23:12:21.741272+00 f t NILA DOG \N 32.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7541 +6202 2025-08-29 23:14:17.071872+00 2025-08-29 23:14:17.071888+00 f t renata DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7542 +6203 2025-08-29 23:32:05.163063+00 2025-08-29 23:32:05.163077+00 f t Balcarce DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7543 +6204 2025-08-29 23:37:23.891957+00 2025-08-29 23:37:23.891967+00 f t Luna DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7544 +6205 2025-08-30 00:01:02.609699+00 2025-08-30 00:01:02.60982+00 f t Sisi DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7545 +6206 2025-08-30 01:00:24.209794+00 2025-08-30 01:00:24.209809+00 f t Kiro CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7547 +6207 2025-08-30 01:02:57.101526+00 2025-08-30 01:02:57.10154+00 f t Pekin DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7548 +6208 2025-08-30 01:06:39.03751+00 2025-08-30 01:06:39.037522+00 f t Kiro CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7549 +6209 2025-08-30 01:55:15.42643+00 2025-08-30 01:55:15.426442+00 f t renata DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7551 +6210 2025-08-30 02:00:49.221037+00 2025-08-30 02:00:49.221047+00 f t Klaus CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7552 +6211 2025-08-30 03:10:50.709554+00 2025-08-30 03:10:50.709566+00 f t Simon CAT \N 4.80 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7554 +6212 2025-08-30 06:22:18.049886+00 2025-08-30 06:22:18.049896+00 f t Vilu DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7555 +6213 2025-08-30 08:10:44.842482+00 2025-08-30 08:10:44.842495+00 f t Greta DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7556 +6214 2025-08-30 09:20:05.532338+00 2025-08-30 09:20:05.532351+00 f t Muni DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7557 +6215 2025-08-30 10:02:42.16648+00 2025-08-30 10:02:42.16649+00 f t Peter DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7558 +6216 2025-08-30 10:41:30.098154+00 2025-08-30 10:41:30.098164+00 f t Peter DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7559 +6217 2025-08-30 11:32:34.180958+00 2025-08-30 11:32:34.180971+00 f t Fiona DOG \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7560 +6218 2025-08-30 11:33:36.730398+00 2025-08-30 11:33:36.730407+00 f t Atom DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7561 +6219 2025-08-30 12:08:42.506795+00 2025-08-30 12:08:42.506807+00 f t John CAT \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7562 +6220 2025-08-30 13:50:19.903328+00 2025-08-30 13:50:19.903338+00 f t Pipo DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7565 +6221 2025-08-30 13:55:19.490712+00 2025-08-30 13:55:19.490723+00 f t Rayita CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7567 +6222 2025-08-30 14:05:45.784811+00 2025-08-30 14:05:45.784825+00 f t UR DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7568 +6223 2025-08-30 14:23:26.07319+00 2025-08-30 14:23:26.073201+00 f t Manson DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7569 +6224 2025-08-30 14:23:41.74821+00 2025-08-30 14:23:41.74822+00 f t Nala CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7570 +6225 2025-08-30 14:42:17.155794+00 2025-08-30 14:42:17.155807+00 f t Luna CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7571 +6226 2025-08-30 14:45:11.472707+00 2025-08-30 14:45:11.472721+00 f t Sienna CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7572 +6227 2025-08-30 14:45:44.146551+00 2025-08-30 14:45:44.146563+00 f t Tiny CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7573 +6228 2025-08-30 14:46:28.385115+00 2025-08-30 14:46:28.385126+00 f t Sienna CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7574 +6229 2025-08-30 15:18:06.550001+00 2025-08-30 15:18:06.550014+00 f t Uma DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7576 +6230 2025-08-30 15:46:24.625503+00 2025-08-30 15:46:24.625513+00 f t Billita DOG \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7577 +6231 2025-08-30 15:47:30.441077+00 2025-08-30 15:47:30.441086+00 f t Billita CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7578 +6232 2025-08-30 15:48:35.959923+00 2025-08-30 15:48:35.959932+00 f t Tuchi CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7579 +6233 2025-08-30 15:54:41.535424+00 2025-08-30 15:54:41.535438+00 f t OLIVIA DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7580 +6234 2025-08-30 16:02:40.275557+00 2025-08-30 16:02:40.27557+00 f t Negro DOG \N 19.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7581 +6235 2025-08-30 16:08:19.363275+00 2025-08-30 16:08:19.363286+00 f t OLIVIA DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7582 +6236 2025-08-30 16:23:07.174632+00 2025-08-30 16:23:07.174642+00 f t OLIVIA DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7583 +6237 2025-08-30 16:24:18.791526+00 2025-08-30 16:24:18.791535+00 f t Misha CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7584 +6238 2025-08-30 16:26:26.578595+00 2025-08-30 16:26:26.578604+00 f t OLIVIA DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7585 +6239 2025-08-30 16:26:34.688467+00 2025-08-30 16:26:34.688476+00 f t Lupe CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7586 +6240 2025-08-30 16:27:48.308189+00 2025-08-30 16:27:48.308198+00 f t Olivia DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7585 +6241 2025-08-30 16:33:44.760791+00 2025-08-30 16:33:44.760801+00 f t Lupe CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7586 +6242 2025-08-30 16:35:44.203772+00 2025-08-30 16:35:44.203781+00 f t Lupe CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7587 +6243 2025-08-30 16:40:05.624122+00 2025-08-30 16:40:05.624137+00 f t Lupe CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7588 +6244 2025-08-30 16:40:42.86527+00 2025-08-30 16:40:42.865279+00 f t Lupe CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7586 +6245 2025-08-30 16:41:06.963942+00 2025-08-30 16:41:06.963957+00 f t Lupe DOG \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7589 +6246 2025-08-30 16:45:29.001919+00 2025-08-30 16:45:29.001929+00 f t V DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7590 +6247 2025-08-30 16:46:41.614594+00 2025-08-30 16:46:41.614607+00 f t Patitas CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7592 +6248 2025-08-30 16:46:43.096976+00 2025-08-30 16:46:43.096985+00 f t Lupe CAT \N 3.40 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7591 +6249 2025-08-30 16:48:45.86207+00 2025-08-30 16:48:45.86208+00 f t Kira DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7593 +6250 2025-08-30 17:02:22.224706+00 2025-08-30 17:02:22.224717+00 f t Plato DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7594 +6251 2025-08-30 17:36:18.887901+00 2025-08-30 17:36:18.887912+00 f t Cronos CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7596 +6252 2025-08-30 17:54:47.46173+00 2025-08-30 17:54:47.461742+00 f t Dante DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7597 +6253 2025-08-30 18:36:36.086521+00 2025-08-30 18:36:36.086536+00 f t Ema DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7599 +6254 2025-08-30 18:50:59.990104+00 2025-08-30 18:50:59.990114+00 f t Umma DOG \N 90.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7600 +6255 2025-08-30 18:56:51.880424+00 2025-08-30 18:56:51.880433+00 f t nala DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7601 +6256 2025-08-30 19:04:30.529966+00 2025-08-30 19:04:30.529975+00 f t Aramis CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7602 +6257 2025-08-30 19:05:18.817378+00 2025-08-30 19:05:18.817391+00 f t Alfonsina CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7602 +6259 2025-08-30 19:41:30.503203+00 2025-08-30 19:41:30.503211+00 f t Ciro DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7606 +6260 2025-08-30 19:46:58.349967+00 2025-08-30 19:46:58.349975+00 f t Archie DOG \N 32.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7607 +6261 2025-08-30 20:18:37.392243+00 2025-08-30 20:18:37.392258+00 f t Mora CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7608 +6262 2025-08-30 20:19:57.167606+00 2025-08-30 20:19:57.168273+00 f t Mora CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7609 +6263 2025-08-30 20:32:24.320513+00 2025-08-30 20:32:24.32054+00 f t parche DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7610 +6258 2025-08-30 19:41:26.708649+00 2025-08-30 19:41:26.708658+00 t t Ciro DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7606 +6264 2025-08-30 21:13:42.631402+00 2025-08-30 21:13:42.631412+00 f t Colo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7611 +6265 2025-08-30 21:45:16.609961+00 2025-08-30 21:45:16.609973+00 f t Blackie DOG \N 34.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7612 +6266 2025-08-30 22:26:06.085168+00 2025-08-30 22:26:06.085183+00 f t Hana DOG \N 38.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7616 +6267 2025-08-30 22:26:41.814187+00 2025-08-30 22:26:41.814196+00 f t Cachorro DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7617 +6268 2025-08-30 22:39:38.011446+00 2025-08-30 22:39:38.011457+00 f t Khloe DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7618 +6269 2025-08-30 23:28:57.398507+00 2025-08-30 23:28:57.398519+00 f t Arya DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7619 +6270 2025-08-30 23:44:58.689961+00 2025-08-30 23:44:58.689974+00 f t Trika CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7620 +6271 2025-08-31 00:48:06.74405+00 2025-08-31 00:48:06.74406+00 f t Luna DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7622 +6272 2025-08-31 00:54:12.460993+00 2025-08-31 00:54:12.461001+00 f t Taiger CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7623 +6273 2025-08-31 01:24:05.849303+00 2025-08-31 01:24:05.849315+00 f t timoteo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7624 +5994 2025-08-26 03:58:47.389142+00 2025-08-26 03:58:47.389155+00 f t Bianca DOG \N 5.50 0.00 t \N 2013-09-14 \N \N \N FEMALE \N \N f \N \N 7306 +6274 2025-08-31 02:01:17.322415+00 2025-08-31 02:01:17.322425+00 f t Luna CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7625 +6275 2025-08-31 03:40:48.198676+00 2025-08-31 03:40:48.198687+00 f t Shila CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7627 +6276 2025-08-31 03:44:56.437798+00 2025-08-31 03:44:56.437812+00 f t Dash CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7628 +6277 2025-08-31 04:37:16.904771+00 2025-08-31 04:37:16.904786+00 f t Chicha DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7629 +6278 2025-08-31 08:34:51.023353+00 2025-08-31 08:34:51.023362+00 f t LUCAS gABRIEL DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7630 +6279 2025-08-31 09:44:21.819793+00 2025-08-31 09:44:21.819803+00 f t Karina CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7631 +6280 2025-08-31 11:26:54.279545+00 2025-08-31 11:26:54.279556+00 f t nala DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7632 +6281 2025-08-31 11:47:18.829821+00 2025-08-31 11:47:18.829832+00 f t Apolo DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7633 +6282 2025-08-31 11:52:30.975501+00 2025-08-31 11:52:30.975514+00 f t Mimi DOG \N 42.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7634 +6283 2025-08-31 12:18:27.747444+00 2025-08-31 12:18:27.747455+00 f t Bellatrix DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7635 +6284 2025-08-31 12:23:04.760904+00 2025-08-31 12:23:04.760913+00 f t Milanesa CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7636 +6285 2025-08-31 12:31:06.245506+00 2025-08-31 12:31:06.245515+00 f t Olivia DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7638 +6286 2025-08-31 12:32:19.960763+00 2025-08-31 12:32:19.960772+00 f t Olivia DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7638 +6287 2025-08-31 13:15:24.941816+00 2025-08-31 13:15:24.94183+00 f t Mora CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7639 +6288 2025-08-31 13:19:25.9778+00 2025-08-31 13:19:25.977813+00 f t Mora CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7640 +6289 2025-08-31 13:31:45.565583+00 2025-08-31 13:31:45.565594+00 f t Mora CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7641 +6290 2025-08-31 13:41:28.671575+00 2025-08-31 13:41:28.671587+00 f t Dulcina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7642 +6291 2025-08-31 13:50:35.134183+00 2025-08-31 13:50:35.134192+00 f t Oreo CAT \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7643 +6292 2025-08-31 13:52:46.466391+00 2025-08-31 13:52:46.466401+00 f t Sofi DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7643 +6293 2025-08-31 14:46:34.285108+00 2025-08-31 14:46:34.28512+00 f t Antonia DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7644 +6294 2025-08-31 15:32:16.93717+00 2025-08-31 15:32:16.937181+00 f t Chucho DOG \N 32.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7648 +6295 2025-08-31 15:39:36.099682+00 2025-08-31 15:39:36.099692+00 f t Floki DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7650 +6296 2025-08-31 15:41:14.728354+00 2025-08-31 15:41:14.728362+00 f t Frida CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7651 +6297 2025-08-31 15:44:20.408037+00 2025-08-31 15:44:20.408047+00 f t Paco DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7652 +6298 2025-08-31 15:44:35.285827+00 2025-08-31 15:44:35.28584+00 f t Floki DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7653 +6299 2025-08-31 16:09:40.94769+00 2025-08-31 16:09:40.947703+00 f t Fifi DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7654 +6300 2025-08-31 16:38:55.547572+00 2025-08-31 16:38:55.547582+00 f t Milo DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7655 +6301 2025-08-31 16:41:01.406641+00 2025-08-31 16:41:01.406655+00 f t Milo DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7656 +6302 2025-08-31 17:42:24.169402+00 2025-08-31 17:42:24.169411+00 f t Vitto CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7657 +6303 2025-08-31 17:43:31.220342+00 2025-08-31 17:43:31.220351+00 f t Vitto CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7658 +6304 2025-08-31 18:14:55.64588+00 2025-08-31 18:14:55.645893+00 f t Saimon DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7659 +6305 2025-08-31 18:16:46.182954+00 2025-08-31 18:16:46.182964+00 f t Max DOG \N 54.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7659 +6306 2025-08-31 18:44:21.690665+00 2025-08-31 18:44:21.690678+00 f t Rodriguez DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7660 +6307 2025-08-31 18:59:40.954609+00 2025-08-31 18:59:40.954618+00 f t Bonzo DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7661 +6308 2025-08-31 19:50:15.716855+00 2025-08-31 19:50:15.716863+00 f t Gina DOG \N 19.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7662 +6309 2025-08-31 19:55:02.729092+00 2025-08-31 19:55:02.729105+00 f t Tito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7663 +6310 2025-08-31 19:55:56.412955+00 2025-08-31 19:55:56.412965+00 f t Tony CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7663 +6311 2025-08-31 19:57:14.407997+00 2025-08-31 19:57:14.408008+00 f t Kafu DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7664 +6312 2025-08-31 20:07:46.024746+00 2025-08-31 20:07:46.024759+00 f t Nn DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7665 +6313 2025-08-31 20:11:04.155169+00 2025-08-31 20:11:04.155177+00 f t Negrita CAT 15 5.20 0.00 t \N \N \N \N FEMALE Prednisol de 15 ml le estamos dando. 8 gotas\r\nNo le gusta que la revisen pero en general no es una gata que le molesten los desconocidos. Tampoco que arañe o muerda. \N f \N 114 7666 +6314 2025-08-31 20:14:30.664236+00 2025-08-31 20:14:30.664244+00 f t Lolita CAT 4 0.00 0.00 t \N \N \N \N FEMALE \N f \N 114 7667 +6315 2025-08-31 20:17:13.635224+00 2025-08-31 20:17:13.635231+00 f t timoteo CAT 11 7.00 0.00 t \N \N \N \N MALE \N f \N 114 7668 +6316 2025-08-31 20:24:26.866421+00 2025-08-31 20:24:26.86643+00 f t Cucaracha CAT 14 0.00 0.00 t \N \N \N \N FEMALE \N f \N 114 7670 +6317 2025-08-31 20:25:02.266389+00 2025-08-31 20:25:02.266402+00 f t Floki DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7671 +6318 2025-08-31 20:29:01.225464+00 2025-08-31 20:29:01.225473+00 f t Rumba DOG 4 22.00 0.00 t \N \N \N \N FEMALE Esta medicada con antibiótico inyectable duración 14 días ( no sabría decirte)\r\nPuede llegar asustarse pero es muy buena \N f 1 114 7672 +6319 2025-08-31 20:56:58.493212+00 2025-08-31 20:56:58.493225+00 f t Almendra CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7675 +6320 2025-08-31 21:00:54.951368+00 2025-08-31 21:00:54.95138+00 f t Picasso CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7677 +6321 2025-08-31 21:10:56.723806+00 2025-08-31 21:10:56.723819+00 f t Almendra CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7678 +6322 2025-08-31 21:13:25.763596+00 2025-08-31 21:13:25.763604+00 f t Almendra CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7679 +6323 2025-08-31 21:19:10.81649+00 2025-08-31 21:19:10.816506+00 f t Nere DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7680 +6324 2025-08-31 21:33:17.469719+00 2025-08-31 21:33:17.469731+00 f t Nerea DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7681 +6325 2025-08-31 21:56:50.301961+00 2025-08-31 21:56:50.30197+00 f t Umma DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7683 +6326 2025-08-31 22:55:49.528326+00 2025-08-31 22:55:49.528335+00 f t Coni DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7685 +6327 2025-08-31 22:56:27.532543+00 2025-08-31 22:56:27.532556+00 f t CONNiE DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7685 +6328 2025-08-31 22:57:04.27952+00 2025-08-31 22:57:04.27953+00 f t TEST DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7686 +6329 2025-08-31 23:19:36.914325+00 2025-08-31 23:19:36.914339+00 f t Dakota CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7687 +6330 2025-08-31 23:24:55.901309+00 2025-08-31 23:24:55.901323+00 f t Dakota CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7688 +6331 2025-09-01 01:05:17.595585+00 2025-09-01 01:05:17.595597+00 f t Estrella DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7689 +6332 2025-09-01 01:35:36.283199+00 2025-09-01 01:35:36.283208+00 f t Cookie DOG \N 22.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7691 +6333 2025-09-01 02:40:21.848952+00 2025-09-01 02:40:21.84896+00 f t Viole DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7692 +6334 2025-09-01 03:03:22.511323+00 2025-09-01 03:03:22.511333+00 f t Cosme DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7693 +6335 2025-09-01 03:20:26.931814+00 2025-09-01 03:20:26.931827+00 f t Juan Carlos CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7695 +6336 2025-09-01 03:21:43.253149+00 2025-09-01 03:21:43.253157+00 f t Ramona CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7695 +6337 2025-09-01 03:32:32.379807+00 2025-09-01 03:32:32.379821+00 f t Tobias DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7697 +6338 2025-09-01 03:56:42.550365+00 2025-09-01 03:56:42.550373+00 f t Coca CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7698 +6339 2025-09-01 05:03:57.854755+00 2025-09-01 05:03:57.854764+00 f t Baco DOG \N 13.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7699 +6340 2025-09-01 07:29:49.193895+00 2025-09-01 07:29:49.193908+00 f t Milo Alarcon DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7700 +6341 2025-09-01 07:30:49.867732+00 2025-09-01 07:30:49.867744+00 f t Aki CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7701 +6342 2025-09-01 07:35:14.725717+00 2025-09-01 07:35:14.725727+00 f t Milo Alarcon DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7702 +6343 2025-09-01 10:17:05.775279+00 2025-09-01 10:17:05.775293+00 f t Colo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7704 +6344 2025-09-01 10:24:43.740869+00 2025-09-01 10:24:43.740879+00 f t Timoteo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7705 +6345 2025-09-01 11:47:40.76428+00 2025-09-01 11:47:40.76429+00 f t Akira DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7707 +6346 2025-09-01 11:52:01.791819+00 2025-09-01 11:52:01.791829+00 f t Akira DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7707 +6347 2025-09-01 12:01:59.557443+00 2025-09-01 12:01:59.557458+00 f t Test DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7709 +6348 2025-09-01 12:05:05.562706+00 2025-09-01 12:05:05.562721+00 f t TEST DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7710 +6349 2025-09-01 12:05:26.640151+00 2025-09-01 12:05:26.640161+00 f t TEST DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7711 +6350 2025-09-01 12:14:25.480425+00 2025-09-01 12:14:25.48044+00 f t Ivo DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7713 +6351 2025-09-01 12:56:44.355432+00 2025-09-01 12:56:44.355441+00 f t Dante DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7714 +6352 2025-09-01 13:09:06.223949+00 2025-09-01 13:09:06.223963+00 f t Greta CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7715 +6353 2025-09-01 13:20:27.40588+00 2025-09-01 13:20:27.405889+00 f t Martina DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7716 +6354 2025-09-01 13:29:15.211324+00 2025-09-01 13:29:15.211336+00 f t Pity CAT \N 0.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7717 +6355 2025-09-01 13:53:13.453723+00 2025-09-01 13:53:13.453737+00 f t Lila DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7718 +6356 2025-09-01 14:07:53.698923+00 2025-09-01 14:07:53.698937+00 f t Balca DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7719 +6357 2025-09-01 15:05:33.763967+00 2025-09-01 15:05:33.763974+00 f t Panda DOG 13 32.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 7721 +6358 2025-09-01 15:06:45.662026+00 2025-09-01 15:06:45.662037+00 f t Emma CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7722 +6359 2025-09-01 15:08:13.828936+00 2025-09-01 15:08:13.828944+00 f t Morón CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7723 +6360 2025-09-01 15:25:53.575743+00 2025-09-01 15:25:53.575755+00 f t Iris DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7725 +6361 2025-09-01 15:31:45.983456+00 2025-09-01 15:31:45.983465+00 f t Ciro CAT \N 5.20 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7726 +6362 2025-09-01 16:19:51.543512+00 2025-09-01 16:19:51.543524+00 f t Umma DOG \N 80.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7730 +6363 2025-09-01 16:58:28.17744+00 2025-09-01 16:58:28.177449+00 f t Balca DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7731 +6364 2025-09-01 17:34:57.112631+00 2025-09-01 17:34:57.112643+00 f t Tropi Coakley CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7732 +6365 2025-09-01 17:36:06.161048+00 2025-09-01 17:36:06.161058+00 f t Tropi Coakley CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7733 +6366 2025-09-01 17:38:38.990571+00 2025-09-01 17:38:38.990581+00 f t Lali DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7734 +6367 2025-09-01 18:11:30.622326+00 2025-09-01 18:11:30.622339+00 f t Tropi Coakley CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7736 +6368 2025-09-01 18:15:36.914738+00 2025-09-01 18:15:36.914749+00 f t Violeta DOG \N 135.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7737 +6369 2025-09-01 18:16:58.665024+00 2025-09-01 18:16:58.665035+00 f t Tony DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7737 +6370 2025-09-01 18:17:56.298148+00 2025-09-01 18:17:56.298157+00 f t Violeta DOG \N 135.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7737 +6371 2025-09-01 18:19:58.12388+00 2025-09-01 18:19:58.12389+00 f t wendy CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7738 +6372 2025-09-01 18:36:27.430896+00 2025-09-01 18:36:27.43091+00 f t Shiva CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7739 +6373 2025-09-01 18:41:13.045664+00 2025-09-01 18:41:13.045676+00 f t Edgardo DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7740 +6374 2025-09-01 18:54:17.991001+00 2025-09-01 18:54:17.991014+00 f t Roman DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7742 +6375 2025-09-01 19:17:32.378044+00 2025-09-01 19:17:32.378055+00 f t moro DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7743 +6376 2025-09-01 19:33:01.998586+00 2025-09-01 19:33:01.9986+00 f t Eliseo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7744 +6377 2025-09-01 19:42:17.60391+00 2025-09-01 19:42:17.603919+00 f t Ali CAT 14 5.00 0.00 t \N \N \N \N MALE \N f \N 1583 7745 +6378 2025-09-01 19:49:20.905099+00 2025-09-01 19:49:20.905112+00 f t wolf DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7746 +6379 2025-09-01 19:55:34.504522+00 2025-09-01 19:55:34.504532+00 f t indio DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7747 +6380 2025-09-01 19:56:01.176712+00 2025-09-01 19:56:01.176726+00 f t wolf DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7748 +6381 2025-09-01 20:04:14.542773+00 2025-09-01 20:04:14.542782+00 f t Amelie DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7749 +6382 2025-09-01 20:07:57.078954+00 2025-09-01 20:07:57.078963+00 f t Indio DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7750 +1115 2025-05-14 16:21:52.762077+00 2025-05-14 16:21:52.76209+00 f t Chilek CAT 3 6.00 0.00 f \N \N \N \N MALE \N f \N 1583 1025 +6383 2025-09-01 20:41:02.559401+00 2025-09-01 20:41:02.559411+00 f t Apolo DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7751 +6384 2025-09-01 20:46:31.821111+00 2025-09-01 20:46:31.82112+00 f t Belky DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7752 +6385 2025-09-01 20:48:44.318024+00 2025-09-01 20:48:44.318035+00 f t Belky DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7753 +6386 2025-09-01 21:25:30.597647+00 2025-09-01 21:25:30.59766+00 f t Nala DOG \N 5.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7754 +6387 2025-09-01 21:28:15.936028+00 2025-09-01 21:28:15.936037+00 f t Nala DOG \N 5.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7755 +6388 2025-09-01 21:46:31.236794+00 2025-09-01 21:46:31.236807+00 f t luccas DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7756 +6389 2025-09-01 22:21:37.88697+00 2025-09-01 22:21:37.886983+00 f t Trika DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7757 +6390 2025-09-01 22:21:52.379081+00 2025-09-01 22:21:52.379097+00 f t Trika CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7757 +6391 2025-09-01 22:29:14.386439+00 2025-09-01 22:29:14.38645+00 f t trika CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7758 +6392 2025-09-01 22:38:34.933557+00 2025-09-01 22:38:34.933569+00 f t Odr CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7759 +6393 2025-09-01 23:07:29.708682+00 2025-09-01 23:07:29.708692+00 f t Mia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7760 +6394 2025-09-01 23:14:06.622913+00 2025-09-01 23:14:06.622923+00 f t Mia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7762 +6395 2025-09-01 23:16:26.70503+00 2025-09-01 23:16:26.705039+00 f t Mia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7763 +6396 2025-09-01 23:23:37.375032+00 2025-09-01 23:23:37.375046+00 f t Dinamita DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7764 +6397 2025-09-01 23:41:33.233914+00 2025-09-01 23:41:33.233921+00 f t Tropi CAT 5 7.00 0.00 t \N \N \N \N MALE \N f 27 114 7766 +6398 2025-09-01 23:49:00.741303+00 2025-09-01 23:49:00.741317+00 f t Churrascon DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7768 +6399 2025-09-01 23:54:05.367491+00 2025-09-01 23:54:05.367502+00 f t Bonita DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7769 +6400 2025-09-01 23:56:40.241855+00 2025-09-01 23:56:40.241863+00 f t Pipa Zizzutti DOG 12 15.00 0.00 t \N \N \N \N FEMALE \N f \N 114 7770 +6401 2025-09-01 23:57:06.385081+00 2025-09-01 23:57:06.385096+00 f t Machita CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7761 +6402 2025-09-02 00:39:09.899635+00 2025-09-02 00:39:09.899646+00 f t berlin DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7771 +6403 2025-09-02 00:40:35.369507+00 2025-09-02 00:40:35.369517+00 f t berlin DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7771 +6404 2025-09-02 01:56:28.753695+00 2025-09-02 01:56:28.753704+00 f t Milo CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7773 +6405 2025-09-02 02:12:24.940339+00 2025-09-02 02:12:24.940355+00 f t loki DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7774 +6406 2025-09-02 02:51:28.062182+00 2025-09-02 02:51:28.062194+00 f t Dorothy DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7777 +6407 2025-09-02 02:53:17.392596+00 2025-09-02 02:53:17.392609+00 f t Dorothy DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7779 +6408 2025-09-02 04:18:14.72735+00 2025-09-02 04:18:14.727361+00 f t Florcita CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7780 +6409 2025-09-02 10:56:48.665363+00 2025-09-02 10:56:48.665372+00 f t Lulú CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7784 +6410 2025-09-02 11:09:01.25164+00 2025-09-02 11:09:01.251655+00 f t Figaro CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7785 +6411 2025-09-02 11:45:30.75159+00 2025-09-02 11:45:30.7516+00 f t Negrita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7788 +6412 2025-09-02 11:53:24.135645+00 2025-09-02 11:53:24.135658+00 f t Uma DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7789 +6413 2025-09-02 12:02:17.787946+00 2025-09-02 12:02:17.787956+00 f t Misha DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7791 +6414 2025-09-02 12:02:35.136933+00 2025-09-02 12:02:35.136942+00 f t Misha CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7791 +6415 2025-09-02 12:31:17.494454+00 2025-09-02 12:31:17.494467+00 f t Cian CAT \N 4.00 30.00 f \N 2025-02-22 \N 2025-05-15 2025-07-16 MALE \N \N f \N \N 575 +6416 2025-09-02 12:51:39.160166+00 2025-09-02 12:51:39.160175+00 f t Blair CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7792 +6417 2025-09-02 13:06:24.304645+00 2025-09-02 13:06:24.304657+00 f t Fani DOG \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7793 +6418 2025-09-02 13:06:41.253643+00 2025-09-02 13:06:41.253654+00 f t Fani CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7793 +6419 2025-09-02 13:12:58.71909+00 2025-09-02 13:12:58.719102+00 f t Otid DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7794 +6420 2025-09-02 14:09:41.418108+00 2025-09-02 14:09:41.418119+00 f t Mayli DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7796 +6421 2025-09-02 14:38:14.2327+00 2025-09-02 14:38:14.232711+00 f t Michifuz CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7797 +6422 2025-09-02 14:59:36.347768+00 2025-09-02 14:59:36.347777+00 f t Bonita DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7799 +6423 2025-09-02 15:19:09.473136+00 2025-09-02 15:19:09.473148+00 f t Caetano CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7801 +6424 2025-09-02 15:31:22.226348+00 2025-09-02 15:31:22.226358+00 f t Caetano CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7803 +6425 2025-09-02 15:35:40.82946+00 2025-09-02 15:35:40.829471+00 f t Olga DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7804 +6426 2025-09-02 15:52:35.171452+00 2025-09-02 15:52:35.171467+00 f t Anush CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7806 +6427 2025-09-02 16:05:59.464576+00 2025-09-02 16:05:59.46459+00 f t Uva DOG \N 3.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7807 +6428 2025-09-02 16:16:38.716868+00 2025-09-02 16:16:38.716877+00 f t Liuba CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7809 +6429 2025-09-02 16:17:28.570046+00 2025-09-02 16:17:28.57006+00 f t Vilma CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7809 +6430 2025-09-02 16:18:36.261335+00 2025-09-02 16:18:36.261345+00 f t Mamba DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7810 +6431 2025-09-02 16:38:03.570997+00 2025-09-02 16:38:03.571009+00 f t Nila DOG 7 32.00 0.00 t \N \N \N \N FEMALE \N f 3 1583 7813 +6432 2025-09-02 16:49:34.35044+00 2025-09-02 16:49:34.350453+00 f t Aquiles DOG \N 54.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7815 +6433 2025-09-02 17:38:52.339089+00 2025-09-02 17:38:52.339102+00 f t coralina DOG \N 27.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7818 +6434 2025-09-02 18:03:23.981708+00 2025-09-02 18:03:23.981718+00 f t Misty DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7820 +6435 2025-09-02 18:17:17.879933+00 2025-09-02 18:17:17.879944+00 f t Miya CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7821 +5627 2025-08-19 18:45:55.422701+00 2025-08-19 18:45:55.422714+00 t t Jason CAT \N 4.70 0.00 f \N \N 2025-08-20 \N \N MALE \N \N f \N \N 6885 +6436 2025-09-02 18:51:24.71523+00 2025-09-02 18:51:24.715241+00 f t Lola DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7823 +6437 2025-09-02 19:26:12.659826+00 2025-09-02 19:26:12.659839+00 f t Dona CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7824 +6438 2025-09-02 19:40:23.358148+00 2025-09-02 19:40:23.358157+00 f t Leon DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7825 +6439 2025-09-02 19:43:49.165723+00 2025-09-02 19:43:49.165733+00 f t Leon DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7826 +6440 2025-09-02 19:55:52.511331+00 2025-09-02 19:55:52.511341+00 f t Donna CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7827 +6441 2025-09-02 20:37:10.291526+00 2025-09-02 20:37:10.291536+00 f t Galo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7828 +6442 2025-09-02 20:54:27.839344+00 2025-09-02 20:54:27.839355+00 f t Orejas DOG 13 16.00 0.00 t \N \N \N \N MALE \N f \N 1583 7829 +6443 2025-09-02 20:56:58.743448+00 2025-09-02 20:56:58.743465+00 f t Mora DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7830 +6444 2025-09-02 21:16:25.129934+00 2025-09-02 21:16:25.129945+00 f t alma CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7831 +6445 2025-09-02 21:49:04.665869+00 2025-09-02 21:49:04.665885+00 f t Santino DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7832 +6446 2025-09-02 22:03:28.867986+00 2025-09-02 22:03:28.867997+00 f t LEON DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7833 +6447 2025-09-02 22:05:15.131748+00 2025-09-02 22:05:15.131759+00 f t Lola CAT 5 4.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 7834 +6449 2025-09-02 22:34:52.121596+00 2025-09-02 22:34:52.121607+00 f t Petuna DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7837 +6450 2025-09-02 22:48:14.720156+00 2025-09-02 22:48:14.720171+00 f t William DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7838 +6451 2025-09-02 22:49:11.524439+00 2025-09-02 22:49:11.52445+00 f t William CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7839 +6452 2025-09-02 23:01:36.889314+00 2025-09-02 23:01:36.889327+00 f t Shivi CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7840 +6453 2025-09-02 23:04:54.067643+00 2025-09-02 23:04:54.067656+00 f t Shiva CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7841 +6454 2025-09-02 23:15:55.641638+00 2025-09-02 23:15:55.641652+00 f t Shiva DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7842 +6455 2025-09-02 23:16:15.590723+00 2025-09-02 23:16:15.590732+00 f t Shiva CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7842 +6456 2025-09-02 23:36:48.949767+00 2025-09-02 23:36:48.949777+00 f t William CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7843 +6457 2025-09-02 23:54:20.881684+00 2025-09-02 23:54:20.881693+00 f t Zulema DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7844 +6458 2025-09-03 00:06:34.359808+00 2025-09-03 00:06:34.359818+00 f t Sandia CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7846 +6459 2025-09-03 00:22:46.439736+00 2025-09-03 00:22:46.439752+00 f t India DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7849 +6460 2025-09-03 00:23:10.64784+00 2025-09-03 00:23:10.647849+00 f t Petunia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7850 +6461 2025-09-03 00:30:21.781605+00 2025-09-03 00:30:21.781622+00 f t Sunce CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7852 +6462 2025-09-03 00:30:59.299252+00 2025-09-03 00:30:59.299264+00 f t Sunce CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7853 +6463 2025-09-03 00:48:00.206865+00 2025-09-03 00:48:00.20688+00 f t Oliva DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7854 +6464 2025-09-03 00:56:04.713783+00 2025-09-03 00:56:04.713795+00 f t Marte CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7855 +6465 2025-09-03 00:57:40.936612+00 2025-09-03 00:57:40.936624+00 f t Andro CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7855 +6466 2025-09-03 01:00:11.225521+00 2025-09-03 01:00:11.225536+00 f t Marte CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7856 +6467 2025-09-03 01:04:43.881517+00 2025-09-03 01:04:43.88153+00 f t Marte CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7857 +6468 2025-09-03 01:05:13.072513+00 2025-09-03 01:05:13.072529+00 f t Andro CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7857 +6469 2025-09-03 01:06:55.540592+00 2025-09-03 01:06:55.540606+00 f t Nixs DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7858 +6470 2025-09-03 01:13:21.195797+00 2025-09-03 01:13:21.195809+00 f t Poly CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7859 +6471 2025-09-03 01:51:34.500399+00 2025-09-03 01:51:34.500412+00 f t Romeo DOG \N 37.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7860 +6472 2025-09-03 01:57:18.711322+00 2025-09-03 01:57:18.711334+00 f t coca DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7861 +6473 2025-09-03 02:16:31.077265+00 2025-09-03 02:16:31.077278+00 f t Arya DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7864 +6474 2025-09-03 02:23:49.173376+00 2025-09-03 02:23:49.173386+00 f t Praga CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7865 +6475 2025-09-03 02:44:36.51016+00 2025-09-03 02:44:36.510174+00 f t Goliat DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7867 +6476 2025-09-03 02:59:33.653039+00 2025-09-03 02:59:33.653049+00 f t Goliat DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7868 +6477 2025-09-03 10:33:38.636424+00 2025-09-03 10:33:38.636437+00 f t Mía CAT \N 45.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7872 +6478 2025-09-03 10:35:00.772107+00 2025-09-03 10:35:00.772123+00 f t Charlotte CAT \N 32.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7872 +6479 2025-09-03 10:39:24.004058+00 2025-09-03 10:39:24.00407+00 f t Recien nacido CAT \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7873 +6480 2025-09-03 10:41:32.451571+00 2025-09-03 10:41:32.451587+00 f t Maga CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7873 +6481 2025-09-03 10:52:05.430634+00 2025-09-03 10:52:05.430644+00 f t tinto Malbec DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7874 +6482 2025-09-03 10:53:01.632542+00 2025-09-03 10:53:01.632551+00 f t Recien nacido CAT \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7875 +6483 2025-09-03 10:55:57.867868+00 2025-09-03 10:55:57.867881+00 f t tinto Malbec DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7876 +6484 2025-09-03 10:56:49.187956+00 2025-09-03 10:56:49.187971+00 f t Recien nacido CAT \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7877 +6485 2025-09-03 11:19:02.863574+00 2025-09-03 11:19:02.863588+00 f t amira DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7878 +6486 2025-09-03 12:20:13.462589+00 2025-09-03 12:20:13.462605+00 f t Princesa DOG \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7880 +6487 2025-09-03 12:24:54.207349+00 2025-09-03 12:24:54.207364+00 f t Max DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7881 +6488 2025-09-03 12:26:20.625496+00 2025-09-03 12:26:20.625512+00 f t Mini CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7881 +6489 2025-09-03 13:07:11.831328+00 2025-09-03 13:07:11.831341+00 f t Nano DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7882 +6490 2025-09-03 13:07:47.101806+00 2025-09-03 13:07:47.101819+00 f t Amor CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7883 +6491 2025-09-03 13:09:11.04816+00 2025-09-03 13:09:11.048176+00 f t Nano DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7882 +8508 2025-10-08 01:45:55.925726+00 2025-10-08 01:45:55.925735+00 f t Oso DOG \N 30.35 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10249 +6493 2025-09-03 13:40:01.51185+00 2025-09-03 13:40:01.511866+00 f t DANTE DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7887 +6494 2025-09-03 13:43:56.68359+00 2025-09-03 13:43:56.683604+00 f t Pluto DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7888 +6495 2025-09-03 14:04:20.180241+00 2025-09-03 14:04:20.180251+00 f t Mara PRUEBA DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7892 +6496 2025-09-03 14:25:45.122811+00 2025-09-03 14:25:45.12282+00 f t Apollo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7894 +6497 2025-09-03 14:28:10.388944+00 2025-09-03 14:28:10.388953+00 f t Carmela CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7895 +6498 2025-09-03 14:31:46.426618+00 2025-09-03 14:31:46.42663+00 f t Carmela DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7896 +6499 2025-09-03 14:44:36.477478+00 2025-09-03 14:44:36.477487+00 f t Mora DOG 11 39.00 0.00 t \N \N \N \N FEMALE \N f 2 1583 7897 +6500 2025-09-03 15:15:52.482737+00 2025-09-03 15:15:52.482749+00 f t TOBIAS DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7898 +6501 2025-09-03 15:20:28.521601+00 2025-09-03 15:20:28.521615+00 f t Bobby DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7893 +6502 2025-09-03 15:22:50.061795+00 2025-09-03 15:22:50.061806+00 f t Coco DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7893 +6503 2025-09-03 15:34:11.098499+00 2025-09-03 15:34:11.098508+00 f t Ciro CAT 12 5.00 0.00 t \N \N \N \N MALE \N f \N 1583 7899 +6504 2025-09-03 16:02:08.069063+00 2025-09-03 16:02:08.069074+00 f t Edimond CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7901 +6505 2025-09-03 16:22:38.206077+00 2025-09-03 16:22:38.206092+00 f t Baghira CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7900 +6506 2025-09-03 16:57:00.89625+00 2025-09-03 16:57:00.896258+00 f t Baltazar DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7903 +6507 2025-09-03 17:03:26.358811+00 2025-09-03 17:03:26.358822+00 f t Milo Alarcon DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7904 +6508 2025-09-03 17:12:22.421+00 2025-09-03 17:12:22.421015+00 f t Kid CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7905 +6509 2025-09-03 17:33:28.207821+00 2025-09-03 17:33:28.207835+00 f t Bubi DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7906 +6510 2025-09-03 17:37:28.009008+00 2025-09-03 17:37:28.009019+00 f t Bebe CAT \N 3.40 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7907 +6511 2025-09-03 17:39:49.266663+00 2025-09-03 17:39:49.266677+00 f t Bowie CAT \N 6.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7908 +6513 2025-09-03 18:02:24.786661+00 2025-09-03 18:02:24.786672+00 f t Kid DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7910 +6514 2025-09-03 18:02:44.795547+00 2025-09-03 18:02:44.79556+00 f t Kid CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7910 +6448 2025-09-02 22:24:30.783645+00 2025-09-02 22:24:30.783658+00 f t Gato CAT \N 5.00 0.00 t \N 2023-12-31 \N \N \N FEMALE \N \N f \N \N 7836 +6492 2025-09-03 13:23:10.903586+00 2025-09-03 13:23:10.903599+00 f t Beba DOG 12 40.00 0.00 f \N \N \N \N FEMALE \N f \N 1583 7886 +6515 2025-09-03 18:04:58.469576+00 2025-09-03 18:04:58.469587+00 f t Nichi CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7911 +6516 2025-09-03 18:14:27.734876+00 2025-09-03 18:14:27.734886+00 f t Zephy CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7912 +8509 2025-10-08 01:51:20.505577+00 2025-10-08 01:51:20.505586+00 f t Ronrón DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10251 +6517 2025-09-03 19:53:38.837988+00 2025-09-03 19:53:38.837999+00 f t Michi CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7915 +6518 2025-09-03 19:59:17.712625+00 2025-09-03 19:59:17.712633+00 f t Pirulin CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7916 +6519 2025-09-03 20:05:03.833228+00 2025-09-03 20:05:03.833243+00 f t tor DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7918 +6520 2025-09-03 20:16:36.305505+00 2025-09-03 20:16:36.30552+00 f t Milo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7919 +6521 2025-09-03 20:27:31.025644+00 2025-09-03 20:27:31.025654+00 f t Paco DOG \N 32.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7920 +6522 2025-09-03 20:36:49.389039+00 2025-09-03 20:36:49.389049+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7922 +6523 2025-09-03 20:40:20.36262+00 2025-09-03 20:40:20.362636+00 f t Traslado DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7923 +6524 2025-09-03 20:40:55.543458+00 2025-09-03 20:40:55.543468+00 f t Traslado DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7924 +6525 2025-09-03 20:43:00.798419+00 2025-09-03 20:43:00.798431+00 f t Traslado DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7925 +6526 2025-09-03 20:43:13.009143+00 2025-09-03 20:43:13.009156+00 f t TEST DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7926 +6527 2025-09-03 20:43:48.98487+00 2025-09-03 20:43:48.98489+00 f t Traslado DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7927 +6528 2025-09-03 20:44:38.20509+00 2025-09-03 20:44:38.205102+00 f t Traslado DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7928 +6529 2025-09-03 21:08:57.279764+00 2025-09-03 21:08:57.279772+00 f t Mili CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7929 +6530 2025-09-03 21:13:22.581026+00 2025-09-03 21:13:22.581038+00 f t Ashley CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7930 +6531 2025-09-03 21:47:52.840881+00 2025-09-03 21:47:52.84089+00 f t Roco CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7933 +6532 2025-09-03 21:50:18.645582+00 2025-09-03 21:50:18.645591+00 f t Paco DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7934 +6533 2025-09-03 21:51:27.162083+00 2025-09-03 21:51:27.162093+00 f t Picolino CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7935 +6534 2025-09-03 21:51:50.341059+00 2025-09-03 21:51:50.341068+00 f t Pitu DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7934 +6535 2025-09-03 22:01:22.818744+00 2025-09-03 22:01:22.818757+00 f t Roco CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7936 +6536 2025-09-03 22:03:59.193752+00 2025-09-03 22:03:59.193765+00 f t Reina CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7936 +6537 2025-09-03 22:04:56.719655+00 2025-09-03 22:04:56.719668+00 f t Irene CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7936 +6538 2025-09-03 22:05:56.762958+00 2025-09-03 22:05:56.762968+00 f t Rin CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7936 +6539 2025-09-03 22:18:20.382915+00 2025-09-03 22:18:20.382928+00 f t Roco CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7937 +6540 2025-09-03 22:42:52.74601+00 2025-09-03 22:42:52.746021+00 f t Dulce CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7938 +6541 2025-09-03 22:45:43.798693+00 2025-09-03 22:45:43.798705+00 f t Toretto DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7939 +6542 2025-09-03 23:03:35.140113+00 2025-09-03 23:03:35.140124+00 f t Hodor DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7940 +6543 2025-09-03 23:56:03.516797+00 2025-09-03 23:56:03.516811+00 f t Mora CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7941 +6544 2025-09-04 00:01:24.164894+00 2025-09-04 00:01:24.164906+00 f t Ojitos DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7942 +6545 2025-09-04 00:27:29.753087+00 2025-09-04 00:27:29.7531+00 f t Gorda DOG \N 24.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7943 +6546 2025-09-04 00:30:48.065722+00 2025-09-04 00:30:48.065734+00 f t Manchas DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7944 +6547 2025-09-04 00:52:25.568996+00 2025-09-04 00:52:25.569006+00 f t Aslan DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7947 +6548 2025-09-04 00:52:44.710403+00 2025-09-04 00:52:44.710416+00 f t Aslan CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7947 +6549 2025-09-04 00:56:03.232774+00 2025-09-04 00:56:03.232786+00 f t Rocco DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7948 +6550 2025-09-04 01:59:15.19794+00 2025-09-04 01:59:15.197949+00 f t Isa DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7950 +6551 2025-09-04 02:03:45.930764+00 2025-09-04 02:03:45.930777+00 f t Tito DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7951 +6552 2025-09-04 02:06:16.689082+00 2025-09-04 02:06:16.689093+00 f t Firu DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7952 +6553 2025-09-04 08:29:57.556673+00 2025-09-04 08:29:57.556683+00 f t Chuchu CAT \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7957 +6554 2025-09-04 08:42:59.776674+00 2025-09-04 08:42:59.776685+00 f t Morena aguirre DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7959 +6555 2025-09-04 08:46:57.295242+00 2025-09-04 08:46:57.295253+00 f t Morena aguirre DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7960 +6556 2025-09-04 10:24:13.474476+00 2025-09-04 10:24:13.474485+00 f t Sandía CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7962 +6557 2025-09-04 11:29:16.02671+00 2025-09-04 11:29:16.02672+00 f t raquel CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7964 +6558 2025-09-04 11:34:47.795048+00 2025-09-04 11:34:47.795058+00 f t RAQUEL DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7965 +6559 2025-09-04 13:01:30.07031+00 2025-09-04 13:01:30.070321+00 f t Paco DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7966 +6560 2025-09-04 13:01:52.983578+00 2025-09-04 13:01:52.983592+00 f t Pitu DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7966 +6561 2025-09-04 13:10:27.709421+00 2025-09-04 13:10:27.709431+00 f t Paco DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 88 +6562 2025-09-04 13:12:18.878079+00 2025-09-04 13:12:18.87809+00 f t Pitu DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 88 +6563 2025-09-04 13:27:27.698669+00 2025-09-04 13:27:27.698686+00 f t Zaboo DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7967 +6564 2025-09-04 13:29:23.578523+00 2025-09-04 13:29:23.578537+00 f t Zaboo CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7967 +6565 2025-09-04 13:53:27.773729+00 2025-09-04 13:53:27.773744+00 f t Luna CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7970 +6566 2025-09-04 13:54:48.01047+00 2025-09-04 13:54:48.010481+00 f t Chichi DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7971 +6567 2025-09-04 14:16:10.894231+00 2025-09-04 14:16:10.894244+00 f t Alfie CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7973 +6568 2025-09-04 14:52:15.788854+00 2025-09-04 14:52:15.788864+00 f t africa DOG \N 32.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7974 +6569 2025-09-04 15:17:34.830636+00 2025-09-04 15:17:34.830649+00 f t Lagherta CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7975 +6570 2025-09-04 15:23:50.96957+00 2025-09-04 15:23:50.969582+00 f t Traslado DOG \N 3.60 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7976 +6571 2025-09-04 15:24:07.773516+00 2025-09-04 15:24:07.773524+00 f t PRUEBA CAT \N 3.60 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7976 +6572 2025-09-04 15:58:51.027294+00 2025-09-04 15:58:51.027307+00 f t Bebu CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7978 +6573 2025-09-04 16:08:16.628847+00 2025-09-04 16:08:16.628856+00 f t Juliana CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7979 +6574 2025-09-04 16:50:45.236801+00 2025-09-04 16:50:45.236815+00 f t Vida DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7981 +6575 2025-09-04 16:59:33.264327+00 2025-09-04 16:59:33.264337+00 f t Maomao CAT \N 1.70 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7983 +6576 2025-09-04 17:16:22.35584+00 2025-09-04 17:16:22.355852+00 f t Benjamin CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7985 +6577 2025-09-04 17:19:59.334495+00 2025-09-04 17:19:59.33451+00 f t Panterita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7985 +6578 2025-09-04 17:30:26.884822+00 2025-09-04 17:30:26.884835+00 f t benjamin CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7986 +6579 2025-09-04 17:32:23.611471+00 2025-09-04 17:32:23.61148+00 f t benjamin CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7987 +6580 2025-09-04 17:57:17.440284+00 2025-09-04 17:57:17.440292+00 f t Lola DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7988 +6581 2025-09-04 18:00:09.787074+00 2025-09-04 18:00:09.787088+00 f t Teo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7989 +6582 2025-09-04 18:04:04.791565+00 2025-09-04 18:04:04.791576+00 f t Teo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7992 +6583 2025-09-04 18:07:52.907718+00 2025-09-04 18:07:52.907731+00 f t Uxel DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7993 +6584 2025-09-04 18:23:40.005716+00 2025-09-04 18:23:40.005729+00 f t ROXY DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 7994 +6585 2025-09-04 18:36:03.254897+00 2025-09-04 18:36:03.254906+00 f t pocha DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7995 +6586 2025-09-04 18:50:49.623031+00 2025-09-04 18:50:49.62304+00 f t Igor DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7996 +6587 2025-09-04 19:08:45.323712+00 2025-09-04 19:08:45.323722+00 f t pocha DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7997 +6588 2025-09-04 19:09:14.848758+00 2025-09-04 19:09:14.84877+00 f t Martini DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7998 +6589 2025-09-04 19:09:50.176171+00 2025-09-04 19:09:50.176181+00 f t pepe DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7997 +6590 2025-09-04 19:13:03.383554+00 2025-09-04 19:13:03.383567+00 f t Atahualpa CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 7999 +6591 2025-09-04 19:16:26.794314+00 2025-09-04 19:16:26.794323+00 f t Sylver DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7999 +6592 2025-09-04 20:38:02.00977+00 2025-09-04 20:38:02.009784+00 f t Kumma DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8002 +6593 2025-09-04 22:39:38.117282+00 2025-09-04 22:39:38.117291+00 f t Oso DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8004 +6594 2025-09-04 22:47:23.261805+00 2025-09-04 22:47:23.261814+00 f t burton DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8005 +6595 2025-09-04 23:07:11.927024+00 2025-09-04 23:07:11.927034+00 f t burton DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8006 +6596 2025-09-04 23:52:56.938039+00 2025-09-04 23:52:56.938049+00 f t Haru CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8008 +6597 2025-09-05 00:51:42.319628+00 2025-09-05 00:51:42.31964+00 f t LUNA Cabrera DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8011 +6598 2025-09-05 01:20:27.19731+00 2025-09-05 01:20:27.197321+00 f t Micha DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8012 +6599 2025-09-05 01:21:00.947241+00 2025-09-05 01:21:00.947251+00 f t Micha CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8012 +6600 2025-09-05 01:37:07.500086+00 2025-09-05 01:37:07.500095+00 f t Panchi DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8013 +6601 2025-09-05 02:23:07.890123+00 2025-09-05 02:23:07.890133+00 f t Telmo DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8015 +6602 2025-09-05 02:35:20.704791+00 2025-09-05 02:35:20.704804+00 f t Loli DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8016 +6603 2025-09-05 03:16:37.796079+00 2025-09-05 03:16:37.79609+00 f t Joaquin DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8017 +6604 2025-09-05 03:20:27.069674+00 2025-09-05 03:20:27.069683+00 f t Atena CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8018 +6605 2025-09-05 03:24:18.153306+00 2025-09-05 03:24:18.153315+00 f t Joaquin DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8019 +6606 2025-09-05 04:03:54.38034+00 2025-09-05 04:03:54.380353+00 f t FENIX DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8021 +6607 2025-09-05 05:31:34.789845+00 2025-09-05 05:31:34.789855+00 f t m CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8022 +6608 2025-09-05 09:00:26.521333+00 2025-09-05 09:00:26.521344+00 f t Mágica CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8023 +6609 2025-09-05 09:02:10.72565+00 2025-09-05 09:02:10.725663+00 f t Mística CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8023 +6610 2025-09-05 09:03:02.244092+00 2025-09-05 09:03:02.244101+00 f t Bohemia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8023 +6611 2025-09-05 10:13:22.332509+00 2025-09-05 10:13:22.332522+00 f t N DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8024 +6612 2025-09-05 10:14:20.635077+00 2025-09-05 10:14:20.635086+00 f t R CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8024 +6613 2025-09-05 10:43:19.273091+00 2025-09-05 10:43:19.2731+00 f t Poly DOG \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8025 +6614 2025-09-05 11:11:54.265578+00 2025-09-05 11:11:54.265593+00 f t Gatita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8026 +6615 2025-09-05 11:24:15.362832+00 2025-09-05 11:24:15.362841+00 f t Kiara DOG \N 8.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8027 +6616 2025-09-05 11:34:45.053979+00 2025-09-05 11:34:45.053988+00 f t Candy CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8028 +6617 2025-09-05 12:05:17.6399+00 2025-09-05 12:05:17.639913+00 f t Luz CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8029 +6619 2025-09-05 12:33:58.293059+00 2025-09-05 12:33:58.293069+00 f t Kiara DOG \N 8.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8031 +6620 2025-09-05 12:39:46.069436+00 2025-09-05 12:39:46.069446+00 f t Blou DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8032 +6618 2025-09-05 12:20:10.177952+00 2025-09-05 12:20:10.177966+00 f t Naro DOG 11 28.00 0.00 f \N \N \N \N MALE \N f \N 1583 8030 +6621 2025-09-05 12:59:46.54621+00 2025-09-05 12:59:46.546219+00 f t Ibra DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8034 +6622 2025-09-05 13:05:47.429645+00 2025-09-05 13:05:47.429656+00 f t Ema DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8035 +6623 2025-09-05 13:22:12.104671+00 2025-09-05 13:22:12.104681+00 f t Enano DOG 11 10.00 0.00 t \N \N \N \N MALE \N f 5 1583 8036 +6624 2025-09-05 13:53:30.718089+00 2025-09-05 13:53:30.718102+00 f t Cuyo DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8037 +6625 2025-09-05 14:04:57.957716+00 2025-09-05 14:04:57.957725+00 f t Nacho DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8038 +6626 2025-09-05 14:17:18.997632+00 2025-09-05 14:17:18.997641+00 f t Miauricio José CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8039 +6627 2025-09-05 14:27:15.298309+00 2025-09-05 14:27:15.29832+00 f t lana CAT \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8040 +6628 2025-09-05 14:44:30.647388+00 2025-09-05 14:44:30.647399+00 f t Athi CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8041 +6629 2025-09-05 15:05:06.725521+00 2025-09-05 15:05:06.725536+00 f t Lana CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8042 +6631 2025-09-05 15:24:04.547241+00 2025-09-05 15:24:04.547253+00 f t Tom CAT \N 2.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8045 +6632 2025-09-05 15:24:47.105788+00 2025-09-05 15:24:47.105797+00 f t Zulma DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8046 +6630 2025-09-05 15:11:25.025105+00 2025-09-05 15:11:25.02512+00 f t Pupi CAT 13 5.00 0.00 f \N \N \N \N MALE \N f \N 1583 8044 +6634 2025-09-05 16:28:00.27616+00 2025-09-05 16:28:00.276173+00 f t Miguel CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8049 +6635 2025-09-05 17:01:26.011011+00 2025-09-05 17:01:26.011021+00 f t Pili DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8052 +6633 2025-09-05 15:48:02.221308+00 2025-09-05 15:48:02.221319+00 f t Dobby CAT 5 9.00 0.00 t 2020-11-11 \N \N \N MALE \N f \N 1583 8047 +6636 2025-09-05 17:12:37.316291+00 2025-09-05 17:12:37.316346+00 f t Miniba CAT \N 1.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8053 +6637 2025-09-05 17:16:28.108535+00 2025-09-05 17:16:28.108544+00 f t Billy Rey DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8054 +6638 2025-09-05 17:20:42.084684+00 2025-09-05 17:20:42.084695+00 f t Cholo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8055 +6639 2025-09-05 18:11:42.514488+00 2025-09-05 18:11:42.514498+00 f t José DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8056 +6640 2025-09-05 18:12:00.251653+00 2025-09-05 18:12:00.251664+00 f t José CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8056 +6641 2025-09-05 18:21:18.086906+00 2025-09-05 18:21:18.086916+00 f t Ema DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8059 +6642 2025-09-05 18:42:09.903026+00 2025-09-05 18:42:09.903036+00 f t Mendoza DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8060 +6643 2025-09-05 19:57:31.855737+00 2025-09-05 19:57:31.855747+00 f t Mayla DOG 13 20.00 0.00 f \N \N \N \N FEMALE \N f 1 1208 8064 +6644 2025-09-05 20:04:37.88199+00 2025-09-05 20:04:37.882002+00 f t Fidel CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8065 +6645 2025-09-05 20:22:54.399566+00 2025-09-05 20:22:54.399577+00 f t test DOG \N 123.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8066 +6646 2025-09-05 20:28:21.063049+00 2025-09-05 20:28:21.063063+00 f t yo CAT \N 3.90 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8068 +6647 2025-09-05 20:33:22.373524+00 2025-09-05 20:33:22.373534+00 f t Apolo DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8069 +6648 2025-09-05 21:18:01.089213+00 2025-09-05 21:18:01.089221+00 f t Tita CAT 16 3.00 0.00 t \N \N \N \N FEMALE METIMAZOL 1/4 Dia y Noche(1/2 comp x dia)\r\nEstaba tomando hta la sem pasada varios meses:\r\nOmeprazol 1/2 comp x dia\r\nProteliv la dosis q indica el pomo \N f 27 1208 8071 +6649 2025-09-05 21:31:56.865242+00 2025-09-05 21:31:56.865258+00 f t Mastin DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8072 +6650 2025-09-05 23:12:11.473146+00 2025-09-05 23:12:11.473156+00 f t Sheila DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8074 +6651 2025-09-05 23:17:37.422384+00 2025-09-05 23:17:37.422394+00 f t Sheila DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8074 +6652 2025-09-05 23:44:00.500171+00 2025-09-05 23:44:00.500182+00 f t Leon CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8080 +6653 2025-09-06 00:04:49.788737+00 2025-09-06 00:04:49.788751+00 f t Gandalf DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8081 +6654 2025-09-06 00:32:52.362866+00 2025-09-06 00:32:52.362876+00 f t Enza CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8083 +6655 2025-09-06 01:17:09.545895+00 2025-09-06 01:17:09.545908+00 f t FUNNY CAT \N 5.20 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8086 +6656 2025-09-06 01:41:51.648291+00 2025-09-06 01:41:51.648301+00 f t Lucia DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8088 +6657 2025-09-06 03:47:38.933881+00 2025-09-06 03:47:38.933895+00 f t India DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8090 +6658 2025-09-06 03:48:53.038147+00 2025-09-06 03:48:53.038162+00 f t India CAT \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8091 +6659 2025-09-06 04:26:10.631645+00 2025-09-06 04:26:10.631654+00 f t Lila CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8092 +6660 2025-09-06 06:15:10.319528+00 2025-09-06 06:15:10.319537+00 f t Rubio CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8093 +6661 2025-09-06 13:17:21.099966+00 2025-09-06 13:17:21.099982+00 f t Sam CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8096 +6662 2025-09-06 13:57:42.926608+00 2025-09-06 13:57:42.926618+00 f t Sam CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8097 +6663 2025-09-06 14:08:21.29138+00 2025-09-06 14:08:21.291395+00 f t Sam CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8098 +6664 2025-09-06 14:11:15.042084+00 2025-09-06 14:11:15.042097+00 f t Sam CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8100 +6665 2025-09-06 14:13:40.811356+00 2025-09-06 14:13:40.811366+00 f t Sasha DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8101 +6666 2025-09-06 14:19:04.441561+00 2025-09-06 14:19:04.441575+00 f t Valentina DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8102 +6667 2025-09-06 14:27:14.454966+00 2025-09-06 14:27:14.454974+00 f t Manola CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8103 +6668 2025-09-06 14:40:32.970572+00 2025-09-06 14:40:32.970583+00 f t Kiki CAT \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8104 +6669 2025-09-06 14:58:23.639993+00 2025-09-06 14:58:23.640004+00 f t Morgana CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8105 +6746 2025-09-08 15:45:16.562143+00 2025-09-08 15:45:16.562151+00 f t Blacky DOG 4 13.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 8199 +6745 2025-09-08 15:45:05.426596+00 2025-09-08 15:45:05.426608+00 f t Canela DOG 3 18.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 8199 +6670 2025-09-06 15:26:58.51992+00 2025-09-06 15:26:58.519929+00 f t Felisa CAT 14 4.00 0.00 t \N \N \N \N FEMALE En los últimos días tomó prednisolona de manera intermitente. Medio comprimido, día por medio. Puede estresarse frente a otras personas, pero con un correcto manejo termina accediendo \N f 27 1208 8106 +6671 2025-09-06 15:42:56.86002+00 2025-09-06 15:42:56.860033+00 f t Paco DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8108 +6672 2025-09-06 15:55:40.267307+00 2025-09-06 15:55:40.267317+00 f t Thor CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8109 +6673 2025-09-06 15:58:13.117506+00 2025-09-06 15:58:13.117514+00 f t Michi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8110 +6674 2025-09-06 16:34:56.773335+00 2025-09-06 16:34:56.773343+00 f t Thor DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8113 +6675 2025-09-06 16:35:25.029011+00 2025-09-06 16:35:25.029019+00 f t Paco DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8112 +6676 2025-09-06 17:31:14.567301+00 2025-09-06 17:31:14.567312+00 f t Laila CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8115 +6677 2025-09-06 17:43:56.081611+00 2025-09-06 17:43:56.081623+00 f t Laila DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8116 +6678 2025-09-06 18:29:55.384752+00 2025-09-06 18:29:55.384761+00 f t Luna CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8117 +6679 2025-09-06 18:39:25.481835+00 2025-09-06 18:39:25.481844+00 f t Marta DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8118 +6680 2025-09-06 19:05:44.9603+00 2025-09-06 19:05:44.960314+00 f t Floki CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8119 +6682 2025-09-06 19:10:23.48706+00 2025-09-06 19:10:23.487073+00 f t Coco CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8120 +6681 2025-09-06 19:10:07.415278+00 2025-09-06 19:10:07.415287+00 t t Coco DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8120 +6683 2025-09-06 22:03:02.455715+00 2025-09-06 22:03:02.455729+00 f t Eli Griffo CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8124 +6127 2025-08-28 17:43:34.378817+00 2025-08-28 17:43:34.378892+00 f t Luke CAT \N 4.50 0.00 t \N 2018-11-04 \N \N \N MALE Tiene problemas urinarios (come Total Canin S/O), tuvo síndrome de Horner \N f \N \N 7443 +6684 2025-09-06 22:30:50.11531+00 2025-09-06 22:30:50.115319+00 f t Jasmin DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8127 +6685 2025-09-06 22:49:45.319299+00 2025-09-06 22:49:45.319312+00 f t Jasmin DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8129 +6686 2025-09-06 23:17:11.268945+00 2025-09-06 23:17:11.268954+00 f t Ramon DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8130 +6687 2025-09-06 23:38:09.731958+00 2025-09-06 23:38:09.731967+00 f t Nia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8131 +6688 2025-09-07 00:12:15.160846+00 2025-09-07 00:12:15.160855+00 f t Tutu DOG \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8133 +6689 2025-09-07 00:24:46.633192+00 2025-09-07 00:24:46.6332+00 f t Galo DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8134 +6690 2025-09-07 00:29:35.685398+00 2025-09-07 00:29:35.685408+00 f t galo DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8135 +6691 2025-09-07 03:21:06.48791+00 2025-09-07 03:21:06.487922+00 f t Igor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8136 +6692 2025-09-07 03:23:21.567962+00 2025-09-07 03:23:21.567973+00 f t Igor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8137 +6693 2025-09-07 03:29:24.105124+00 2025-09-07 03:29:24.105133+00 f t Dorian DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8138 +6694 2025-09-07 04:22:53.052866+00 2025-09-07 04:22:53.052874+00 f t Bron DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8140 +6695 2025-09-07 04:43:14.666251+00 2025-09-07 04:43:14.666259+00 f t Diana CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8141 +6696 2025-09-07 11:00:49.944311+00 2025-09-07 11:00:49.944324+00 f t Nia Harlow CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8143 +6697 2025-09-07 12:55:00.001386+00 2025-09-07 12:55:00.001398+00 f t Homero CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8144 +6698 2025-09-07 13:49:35.383089+00 2025-09-07 13:49:35.3831+00 f t Nuri CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8145 +6699 2025-09-07 13:53:46.095741+00 2025-09-07 13:53:46.095751+00 f t Michi CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8146 +6700 2025-09-07 15:15:42.958978+00 2025-09-07 15:15:42.958987+00 f t Mili DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8148 +6701 2025-09-07 15:47:31.979119+00 2025-09-07 15:47:31.979174+00 f t Pulga DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8150 +6702 2025-09-07 15:52:18.639517+00 2025-09-07 15:52:18.639529+00 f t Toby DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8151 +6703 2025-09-07 15:53:20.769007+00 2025-09-07 15:53:20.769017+00 f t Chichito DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8152 +6704 2025-09-07 15:54:04.079196+00 2025-09-07 15:54:04.079205+00 f t Chichito CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8153 +6705 2025-09-07 17:02:56.027629+00 2025-09-07 17:02:56.027641+00 f t Colita DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8154 +6706 2025-09-07 17:58:48.398361+00 2025-09-07 17:58:48.398373+00 f t Dodo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8155 +6707 2025-09-07 18:13:33.332318+00 2025-09-07 18:13:33.332328+00 f t Apolo DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8156 +6708 2025-09-07 18:19:11.060791+00 2025-09-07 18:19:11.060804+00 f t Pelucho DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8157 +6709 2025-09-07 19:03:17.920661+00 2025-09-07 19:03:17.920671+00 f t Papita DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8158 +6710 2025-09-07 19:03:19.384414+00 2025-09-07 19:03:19.384426+00 f t Jamaica DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8159 +6711 2025-09-07 19:05:15.392588+00 2025-09-07 19:05:15.392596+00 f t Jamaica DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8160 +6712 2025-09-07 19:21:55.63884+00 2025-09-07 19:21:55.638848+00 f t Ragnar DOG 5 30.00 0.00 f \N \N \N \N MALE \N f 50 114 8161 +6713 2025-09-07 19:30:56.356272+00 2025-09-07 19:30:56.356287+00 f t Remus DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8162 +6714 2025-09-07 19:53:59.02697+00 2025-09-07 19:53:59.026979+00 f t Winnie DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8164 +6715 2025-09-07 19:54:30.89205+00 2025-09-07 19:54:30.89206+00 f t Winnie CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8164 +6716 2025-09-07 20:15:26.519538+00 2025-09-07 20:15:26.519548+00 f t No tiene CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8166 +6717 2025-09-07 20:27:39.337542+00 2025-09-07 20:27:39.337551+00 f t Apolo DOG \N 2.00 0.00 f \N \N \N \N MALE \N f 8 114 8168 +6718 2025-09-07 20:40:50.077861+00 2025-09-07 20:40:50.07787+00 f t Angora Turca CAT 4 3.00 0.00 t \N \N \N \N FEMALE \N f \N 114 8169 +6719 2025-09-07 22:16:47.170554+00 2025-09-07 22:16:47.170566+00 f t Carlo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8170 +6720 2025-09-07 23:18:06.665589+00 2025-09-07 23:18:06.665599+00 f t Tita CAT \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8172 +6721 2025-09-08 00:41:32.950673+00 2025-09-08 00:41:32.950684+00 f t Dodo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8173 +6722 2025-09-08 00:52:13.157462+00 2025-09-08 00:52:13.157471+00 f t Kimi CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8174 +6723 2025-09-08 01:26:30.796586+00 2025-09-08 01:26:30.796595+00 f t Eros CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8175 +6724 2025-09-08 01:38:09.1988+00 2025-09-08 01:38:09.198812+00 f t Kiara DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8176 +6725 2025-09-08 03:32:41.769342+00 2025-09-08 03:32:41.76935+00 f t Miski DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8177 +6726 2025-09-08 04:08:40.419008+00 2025-09-08 04:08:40.419022+00 f t Rocco DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8178 +6727 2025-09-08 07:54:18.142805+00 2025-09-08 07:54:18.142814+00 f t Gala DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8179 +6728 2025-09-08 10:25:13.763757+00 2025-09-08 10:25:13.763767+00 f t Carlo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8180 +6729 2025-09-08 10:35:37.646493+00 2025-09-08 10:35:37.646501+00 f t Rawi CAT \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8182 +6730 2025-09-08 10:47:34.911718+00 2025-09-08 10:47:34.911728+00 f t Coco CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8183 +6731 2025-09-08 10:50:04.163101+00 2025-09-08 10:50:04.163116+00 f t Coco CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8183 +6732 2025-09-08 11:23:22.618643+00 2025-09-08 11:23:22.61866+00 f t Mingo DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8184 +6733 2025-09-08 12:00:43.295997+00 2025-09-08 12:00:43.296009+00 f t Lucy DOG \N 38.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8185 +6734 2025-09-08 12:21:00.345533+00 2025-09-08 12:21:00.345547+00 f t Magnolia DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8187 +6735 2025-09-08 12:32:42.057177+00 2025-09-08 12:32:42.057187+00 f t Nina DOG \N 27.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8188 +6736 2025-09-08 12:48:31.214733+00 2025-09-08 12:48:31.214742+00 f t Luna DOG \N 33.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8189 +6737 2025-09-08 13:34:49.007413+00 2025-09-08 13:34:49.007429+00 f t Dickens CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8190 +6738 2025-09-08 14:32:55.476442+00 2025-09-08 14:32:55.476451+00 f t Gino CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8191 +6739 2025-09-08 14:38:49.018293+00 2025-09-08 14:38:49.018303+00 f t Beijo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8192 +6740 2025-09-08 14:40:40.838171+00 2025-09-08 14:40:40.838183+00 f t Okivia DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8193 +6741 2025-09-08 14:42:55.016183+00 2025-09-08 14:42:55.016194+00 f t Charly CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8194 +6742 2025-09-08 15:02:45.721321+00 2025-09-08 15:02:45.721332+00 f t gulliano CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8195 +6743 2025-09-08 15:07:47.674265+00 2025-09-08 15:07:47.67428+00 f t Miguel CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8196 +6744 2025-09-08 15:20:45.595852+00 2025-09-08 15:20:45.595864+00 f t Tonia DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8197 +6747 2025-09-08 16:45:46.781359+00 2025-09-08 16:45:46.781373+00 f t Jimi CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8202 +6748 2025-09-08 16:53:07.025431+00 2025-09-08 16:53:07.025439+00 f t Elga CAT 4 0.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 8203 +6749 2025-09-08 17:01:18.39865+00 2025-09-08 17:01:18.398662+00 f t Gandhi DOG \N 32.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8206 +6750 2025-09-08 17:02:17.999563+00 2025-09-08 17:02:17.999571+00 f t Otávio CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8207 +6751 2025-09-08 17:15:11.154551+00 2025-09-08 17:15:11.154565+00 f t Gemma DOG \N 38.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8209 +6752 2025-09-08 17:36:32.168559+00 2025-09-08 17:36:32.16857+00 f t Charly CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8210 +6753 2025-09-08 18:08:38.733079+00 2025-09-08 18:08:38.733091+00 f t Ian DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8212 +6754 2025-09-08 18:44:51.127111+00 2025-09-08 18:44:51.127121+00 f t Pinky DOG 1 14.00 0.00 f \N \N \N \N MALE \N f 5 1583 7038 +6755 2025-09-08 18:45:32.627436+00 2025-09-08 18:45:32.627449+00 f t Itachi DOG 1 12.00 0.00 f \N \N \N \N MALE \N f 5 1583 7038 +6756 2025-09-08 18:51:16.998354+00 2025-09-08 18:51:16.998367+00 f t Chichilo DOG \N 0.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8214 +6757 2025-09-08 18:55:35.487609+00 2025-09-08 18:55:35.48762+00 f t daka DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8216 +6758 2025-09-08 18:55:55.639356+00 2025-09-08 18:55:55.639902+00 f t daka CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8216 +6759 2025-09-08 18:56:28.560409+00 2025-09-08 18:56:28.56042+00 f t Perro DOG \N 0.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8214 +6760 2025-09-08 18:58:52.338921+00 2025-09-08 18:58:52.340237+00 f t Panterita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8217 +6761 2025-09-08 19:23:15.086965+00 2025-09-08 19:23:15.086995+00 f t Bella DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8218 +6762 2025-09-08 19:37:05.645513+00 2025-09-08 19:37:05.645526+00 f t Teo DOG \N 24.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8219 +6763 2025-09-08 19:47:46.575749+00 2025-09-08 19:47:46.575758+00 f t Panterita CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8220 +6764 2025-09-08 19:48:14.215027+00 2025-09-08 19:48:14.215036+00 f t Cala CAT \N 1.70 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8220 +6765 2025-09-08 19:49:05.045332+00 2025-09-08 19:49:05.045348+00 f t Jonas DOG \N 90.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8221 +6766 2025-09-08 19:51:57.123357+00 2025-09-08 19:51:57.123366+00 f t Kala CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8222 +6767 2025-09-08 19:52:37.8504+00 2025-09-08 19:52:37.850409+00 f t Galileo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8222 +6768 2025-09-08 19:55:03.899745+00 2025-09-08 19:55:03.899758+00 f t Pimienta CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8223 +6769 2025-09-08 19:56:22.975395+00 2025-09-08 19:56:22.975408+00 f t Kevin DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8224 +6770 2025-09-08 20:03:28.843867+00 2025-09-08 20:03:28.843877+00 f t Clementino CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8225 +6771 2025-09-08 20:15:29.930345+00 2025-09-08 20:15:29.930357+00 f t Juan pedro DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8226 +6772 2025-09-08 20:21:19.040064+00 2025-09-08 20:21:19.040075+00 f t Pancha CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8227 +6773 2025-09-08 20:42:42.216031+00 2025-09-08 20:42:42.216046+00 f t Vento DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8228 +6774 2025-09-08 21:09:49.739804+00 2025-09-08 21:09:49.739813+00 f t Uma CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8229 +6775 2025-09-08 21:12:44.83155+00 2025-09-08 21:12:44.83156+00 f t Roco DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8230 +6776 2025-09-08 21:12:48.731219+00 2025-09-08 21:12:48.731227+00 f t Bianca CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8229 +6777 2025-09-08 21:31:58.85084+00 2025-09-08 21:31:58.850855+00 f t Scott DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8231 +6778 2025-09-08 23:07:56.2545+00 2025-09-08 23:07:56.254509+00 f t Albertito DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8233 +6779 2025-09-08 23:21:09.941511+00 2025-09-08 23:21:09.941521+00 f t Bongo DOG \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8234 +6780 2025-09-08 23:31:37.524448+00 2025-09-08 23:31:37.524458+00 f t Simón DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8235 +6781 2025-09-08 23:33:30.079675+00 2025-09-08 23:33:30.079686+00 f t Hércules DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8236 +6782 2025-09-08 23:38:09.853896+00 2025-09-08 23:38:09.853911+00 f t Toto DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8237 +6783 2025-09-08 23:41:41.306632+00 2025-09-08 23:41:41.306645+00 f t Scott DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8238 +6784 2025-09-08 23:52:41.653427+00 2025-09-08 23:52:41.653437+00 f t INCA DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8239 +6785 2025-09-09 00:24:53.057593+00 2025-09-09 00:24:53.057602+00 f t Bliss CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8242 +6786 2025-09-09 00:29:41.440156+00 2025-09-09 00:29:41.440166+00 f t Nina DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8244 +6787 2025-09-09 00:38:59.920783+00 2025-09-09 00:38:59.920793+00 f t Cloe CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8245 +6788 2025-09-09 00:49:19.353434+00 2025-09-09 00:49:19.353444+00 f t Lua CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8246 +6789 2025-09-09 00:58:39.818507+00 2025-09-09 00:58:39.818515+00 f t CENELA CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8247 +6790 2025-09-09 01:03:44.651667+00 2025-09-09 01:03:44.65168+00 f t Moana CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8248 +6791 2025-09-09 01:05:33.884292+00 2025-09-09 01:05:33.884301+00 f t Cronos DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8249 +6792 2025-09-09 01:06:32.249383+00 2025-09-09 01:06:32.249396+00 f t chihiro CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8250 +6793 2025-09-09 01:20:33.458469+00 2025-09-09 01:20:33.458481+00 f t Patricia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8251 +6794 2025-09-09 01:46:39.289737+00 2025-09-09 01:46:39.289751+00 f t Nicolas Nicolas DOG \N 60.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8252 +6795 2025-09-09 01:58:45.708706+00 2025-09-09 01:58:45.70872+00 f t Oreo DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8253 +6796 2025-09-09 02:19:14.453496+00 2025-09-09 02:19:14.453507+00 f t Enza CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8254 +6797 2025-09-09 02:29:01.683857+00 2025-09-09 02:29:01.683871+00 f t Calvin DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8255 +6798 2025-09-09 02:35:11.320522+00 2025-09-09 02:35:11.320532+00 f t Patricia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8256 +6799 2025-09-09 02:37:46.041172+00 2025-09-09 02:37:46.041181+00 f t Arnold CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8257 +6800 2025-09-09 02:48:08.46698+00 2025-09-09 02:48:08.46699+00 f t Arnold CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8259 +6801 2025-09-09 03:08:32.246083+00 2025-09-09 03:08:32.246092+00 f t Leo DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8260 +6802 2025-09-09 03:19:16.89872+00 2025-09-09 03:19:16.898733+00 f t Liz DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8264 +6803 2025-09-09 03:23:24.524099+00 2025-09-09 03:23:24.524108+00 f t Simon CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8265 +6804 2025-09-09 03:27:22.134404+00 2025-09-09 03:27:22.134414+00 f t Lucas DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8266 +6805 2025-09-09 03:32:18.643758+00 2025-09-09 03:32:18.643769+00 f t Lilith CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8269 +6806 2025-09-09 05:02:15.193196+00 2025-09-09 05:02:15.19321+00 f t Onix DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8270 +6807 2025-09-09 05:02:44.881694+00 2025-09-09 05:02:44.881707+00 f t Onix CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8270 +6808 2025-09-09 05:05:23.895911+00 2025-09-09 05:05:23.895924+00 f t Monyu CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8270 +6809 2025-09-09 05:17:42.685762+00 2025-09-09 05:17:42.685771+00 f t China DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8271 +6810 2025-09-09 07:05:59.92507+00 2025-09-09 07:05:59.925082+00 f t Olivia CAT \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8272 +6811 2025-09-09 09:27:08.437976+00 2025-09-09 09:27:08.437985+00 f t Catalina DOG \N 31.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8273 +8510 2025-10-08 01:51:38.946283+00 2025-10-08 01:51:38.946292+00 f t Ronrón CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10251 +6813 2025-09-09 11:20:21.498669+00 2025-09-09 11:20:21.49868+00 f t Gus DOG \N 37.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8276 +6815 2025-09-09 12:37:10.446563+00 2025-09-09 12:37:10.446572+00 f t tomi CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8278 +6816 2025-09-09 12:58:43.628884+00 2025-09-09 12:58:43.628895+00 f t tomi CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8279 +6817 2025-09-09 13:06:09.986466+00 2025-09-09 13:06:09.98648+00 f t nom DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8280 +6818 2025-09-09 13:10:33.139989+00 2025-09-09 13:10:33.139999+00 f t Nova DOG \N 7.70 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8281 +6819 2025-09-09 13:12:50.73189+00 2025-09-09 13:12:50.731899+00 f t Sultan5 CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8282 +6814 2025-09-09 12:36:58.101477+00 2025-09-09 12:36:58.10149+00 t t Tomi DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8278 +6820 2025-09-09 14:13:13.554391+00 2025-09-09 14:13:13.5544+00 f t Shannom DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8285 +6821 2025-09-09 14:13:46.057526+00 2025-09-09 14:13:46.057535+00 f t Asthor DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8285 +6822 2025-09-09 14:25:19.184558+00 2025-09-09 14:25:19.184573+00 f t Coco CAT \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8286 +6823 2025-09-09 14:26:23.484807+00 2025-09-09 14:26:23.484816+00 f t Mora DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8287 +6824 2025-09-09 14:27:38.078965+00 2025-09-09 14:27:38.078977+00 f t nemo DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8288 +6825 2025-09-09 14:44:13.056734+00 2025-09-09 14:44:13.056743+00 f t Maicena DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8289 +6826 2025-09-09 15:16:10.926581+00 2025-09-09 15:16:10.926593+00 f t Chop DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8291 +6827 2025-09-09 15:37:35.325465+00 2025-09-09 15:37:35.325475+00 f t Finn CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8292 +6828 2025-09-09 15:40:37.731748+00 2025-09-09 15:40:37.731757+00 f t Susume CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8293 +6829 2025-09-09 16:11:09.246334+00 2025-09-09 16:11:09.246343+00 f t Ñaika DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8294 +6830 2025-09-09 16:34:19.902487+00 2025-09-09 16:34:19.902497+00 f t Nini CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8295 +6831 2025-09-09 16:43:37.853509+00 2025-09-09 16:43:37.853518+00 f t Cosete DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8296 +6832 2025-09-09 16:43:56.451868+00 2025-09-09 16:43:56.451877+00 f t Cosete CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8296 +6833 2025-09-09 16:45:20.952984+00 2025-09-09 16:45:20.952995+00 f t Blanqui CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8296 +6834 2025-09-09 17:04:33.815726+00 2025-09-09 17:04:33.815737+00 f t Jack CAT \N 800.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8297 +8511 2025-10-08 02:10:10.27889+00 2025-10-08 02:10:10.2789+00 f t Oso DOG \N 33.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10252 +6836 2025-09-09 18:18:40.693071+00 2025-09-09 18:18:40.693085+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8301 +6837 2025-09-09 18:25:35.681188+00 2025-09-09 18:25:35.681201+00 f t Drako DOG \N 32.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8302 +6812 2025-09-09 09:59:09.973593+00 2025-09-09 09:59:09.973607+00 t t Cata DOG \N 31.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8275 +6835 2025-09-09 17:11:30.426899+00 2025-09-09 17:11:30.426908+00 f t Cata DOG 7 31.00 60.00 t Alimento balanceado con carne vacuna 2018-02-03 2023-08-07 2023-08-07 2023-08-07 FEMALE \N f 2 1208 8275 +6838 2025-09-09 18:32:02.024073+00 2025-09-09 18:32:02.024087+00 f t Alma CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8304 +6839 2025-09-09 18:41:02.742118+00 2025-09-09 18:41:02.742131+00 f t Pety DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8305 +6840 2025-09-09 19:01:42.54554+00 2025-09-09 19:01:42.545549+00 f t Ozzy CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8307 +6841 2025-09-09 19:05:07.660203+00 2025-09-09 19:05:07.660213+00 f t PEPE DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8308 +6842 2025-09-09 19:08:52.936332+00 2025-09-09 19:08:52.93634+00 f t Tomi DOG 12 30.00 0.00 f \N \N \N \N FEMALE \N f 63 1583 8309 +6843 2025-09-09 19:18:39.449558+00 2025-09-09 19:18:39.449567+00 f t Bela DOG 5 35.00 0.00 t \N \N \N \N \N \N f 58 1208 8310 +6844 2025-09-09 19:21:36.601895+00 2025-09-09 19:21:36.601903+00 f t Maia DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8311 +6845 2025-09-09 19:42:56.713487+00 2025-09-09 19:42:56.713496+00 f t Plufi CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8312 +6846 2025-09-09 19:55:04.738539+00 2025-09-09 19:55:04.738553+00 f t Braulio DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8313 +6847 2025-09-09 19:55:21.14655+00 2025-09-09 19:55:21.14656+00 f t MILO DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8314 +6848 2025-09-09 19:56:04.868569+00 2025-09-09 19:56:04.868579+00 f t Braulio DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8313 +6849 2025-09-09 19:56:28.362693+00 2025-09-09 19:56:28.362702+00 f t Perlita DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8313 +6850 2025-09-09 20:04:50.60643+00 2025-09-09 20:04:50.606443+00 f t Brujo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8315 +6851 2025-09-09 21:31:18.661631+00 2025-09-09 21:31:18.661643+00 f t CUQUI CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8317 +6852 2025-09-09 21:33:57.474242+00 2025-09-09 21:33:57.474254+00 f t Ruperto DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8318 +6853 2025-09-09 21:35:16.101642+00 2025-09-09 21:35:16.101655+00 f t Fiona DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8319 +6854 2025-09-09 22:08:14.150957+00 2025-09-09 22:08:14.150966+00 f t Azul DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8320 +6855 2025-09-09 22:49:49.608777+00 2025-09-09 22:49:49.608788+00 f t Max DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8321 +6856 2025-09-09 23:22:02.433194+00 2025-09-09 23:22:02.433203+00 f t Ciro DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8322 +6857 2025-09-09 23:51:12.285754+00 2025-09-09 23:51:12.285763+00 f t Rocco DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8324 +6858 2025-09-10 00:02:13.148159+00 2025-09-10 00:02:13.148168+00 f t Valti CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8325 +6859 2025-09-10 00:17:09.993572+00 2025-09-10 00:17:09.993585+00 f t Membrillo DOG \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8326 +6860 2025-09-10 00:17:51.857303+00 2025-09-10 00:17:51.857313+00 f t Membrillo CAT \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8326 +6861 2025-09-10 00:41:46.040838+00 2025-09-10 00:41:46.040851+00 f t Mia DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8327 +6862 2025-09-10 00:58:22.734728+00 2025-09-10 00:58:22.734738+00 f t Polo CAT \N 3.20 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8328 +6863 2025-09-10 00:59:18.946735+00 2025-09-10 00:59:18.946745+00 f t Romo DOG \N 2.80 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8328 +6864 2025-09-10 00:59:45.097637+00 2025-09-10 00:59:45.097646+00 f t Romo CAT \N 2.80 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8328 +6865 2025-09-10 01:36:13.634131+00 2025-09-10 01:36:13.63414+00 f t Mia DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8332 +6866 2025-09-10 01:42:28.4809+00 2025-09-10 01:42:28.480909+00 f t Toro DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8333 +6867 2025-09-10 02:38:24.03693+00 2025-09-10 02:38:24.036939+00 f t Chardonnay DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8334 +6868 2025-09-10 06:08:57.496308+00 2025-09-10 06:08:57.496321+00 f t lobito DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8335 +6869 2025-09-10 06:09:19.417803+00 2025-09-10 06:09:19.417815+00 f t lobito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8335 +6870 2025-09-10 06:10:01.86744+00 2025-09-10 06:10:01.867456+00 f t lupita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8335 +6871 2025-09-10 06:23:37.164744+00 2025-09-10 06:23:37.164754+00 f t Ana CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8336 +6872 2025-09-10 07:34:14.098392+00 2025-09-10 07:34:14.098402+00 f t linsay DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8337 +6873 2025-09-10 08:46:33.38769+00 2025-09-10 08:46:33.387699+00 f t Ringo DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8338 +6874 2025-09-10 08:53:57.640666+00 2025-09-10 08:53:57.640675+00 f t Moro DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8339 +6875 2025-09-10 11:25:41.103778+00 2025-09-10 11:25:41.103787+00 f t Mina DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8340 +6876 2025-09-10 11:36:27.969788+00 2025-09-10 11:36:27.969798+00 f t Daniel CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8341 +6877 2025-09-10 11:53:11.833952+00 2025-09-10 11:53:11.833961+00 f t Rocco DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8342 +6878 2025-09-10 11:53:59.458805+00 2025-09-10 11:53:59.458814+00 f t Venus CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8343 +6879 2025-09-10 11:54:05.076738+00 2025-09-10 11:54:05.076748+00 f t Rocco DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8344 +6880 2025-09-10 12:53:02.656437+00 2025-09-10 12:53:02.656445+00 f t Venus CAT \N 3.70 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8347 +6881 2025-09-10 13:18:12.710105+00 2025-09-10 13:18:12.710115+00 f t OLIVIA DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8348 +6882 2025-09-10 13:18:58.531448+00 2025-09-10 13:18:58.531461+00 f t Moholy CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8349 +6883 2025-09-10 14:31:14.619908+00 2025-09-10 14:31:14.619916+00 f t mia DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8351 +6884 2025-09-10 15:19:15.01222+00 2025-09-10 15:19:15.012228+00 f t Terere CAT 10 0.00 0.00 f \N \N \N \N MALE Toma prednisol 8 gotas día por medio y vaselina, mañana 10/9 lo operan de prolapso \N f 27 1208 8353 +6885 2025-09-10 15:23:13.368164+00 2025-09-10 15:23:13.368175+00 f t Alfonsin CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8354 +6886 2025-09-10 15:28:20.503055+00 2025-09-10 15:28:20.503067+00 f t Negra CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8355 +6887 2025-09-10 15:35:35.716484+00 2025-09-10 15:35:35.716496+00 f t Pupi DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8358 +6888 2025-09-10 16:07:09.863937+00 2025-09-10 16:07:09.86395+00 f t Kira CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8359 +6889 2025-09-10 16:25:23.307827+00 2025-09-10 16:25:23.307835+00 f t Manchi CAT \N 1.20 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8360 +6890 2025-09-10 16:39:35.359631+00 2025-09-10 16:39:35.35964+00 f t venus CAT \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8362 +6891 2025-09-10 16:39:54.520974+00 2025-09-10 16:39:54.520984+00 f t Kokito Rutilio DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8361 +6892 2025-09-10 16:43:04.887844+00 2025-09-10 16:43:04.887853+00 f t Preychu caty CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8363 +6893 2025-09-10 16:46:19.721033+00 2025-09-10 16:46:19.721042+00 f t venus CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8364 +6894 2025-09-10 17:08:34.861997+00 2025-09-10 17:08:34.862011+00 f t Candy CAT \N 3.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8365 +6895 2025-09-10 17:38:50.702154+00 2025-09-10 17:38:50.702164+00 f t Carlitos DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8368 +6896 2025-09-10 18:34:49.977149+00 2025-09-10 18:34:49.97716+00 f t Cleo CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8373 +6897 2025-09-10 19:04:58.404783+00 2025-09-10 19:04:58.404792+00 f t Salmon CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8374 +6898 2025-09-10 19:06:58.544734+00 2025-09-10 19:06:58.544743+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8375 +6899 2025-09-10 19:16:58.874201+00 2025-09-10 19:16:58.874209+00 f t Traslado DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8376 +6900 2025-09-10 19:19:58.277325+00 2025-09-10 19:19:58.277333+00 f t Luna CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8377 +6901 2025-09-10 19:21:32.004819+00 2025-09-10 19:21:32.004827+00 f t Bigotes CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8377 +6903 2025-09-10 19:37:08.123847+00 2025-09-10 19:37:08.12386+00 f t Chardonnay DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8380 +6904 2025-09-10 19:37:58.662516+00 2025-09-10 19:37:58.662525+00 f t Luna DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8382 +6905 2025-09-10 19:39:11.561951+00 2025-09-10 19:39:11.56196+00 f t Luna CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8383 +6906 2025-09-10 19:41:17.173228+00 2025-09-10 19:41:17.173239+00 f t Floky CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8383 +8512 2025-10-08 03:51:05.251259+00 2025-10-08 03:51:05.25127+00 f t Bingo DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10254 +6908 2025-09-10 19:54:07.978423+00 2025-09-10 19:54:07.978435+00 f t Ian CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8387 +6909 2025-09-10 19:57:38.620989+00 2025-09-10 19:57:38.621002+00 f t Ian CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8388 +6910 2025-09-10 20:00:45.383861+00 2025-09-10 20:00:45.383873+00 f t Ian CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8389 +8524 2025-10-08 14:18:12.516138+00 2025-10-08 14:18:12.516146+00 f t Elba DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10269 +6912 2025-09-10 20:14:26.83655+00 2025-09-10 20:14:26.836559+00 f t Sienna DOG \N 7.10 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8391 +6913 2025-09-10 20:14:52.599867+00 2025-09-10 20:14:52.599876+00 f t Tinto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8392 +6914 2025-09-10 20:16:57.485828+00 2025-09-10 20:16:57.485839+00 f t Sienna DOG \N 7.10 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8393 +6915 2025-09-10 20:25:06.743966+00 2025-09-10 20:25:06.743976+00 f t Valti CAT 18 2.00 0.00 t \N \N \N \N MALE \N f \N 1583 8394 +6916 2025-09-10 21:01:07.43868+00 2025-09-10 21:01:07.438689+00 f t Kike CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8395 +6917 2025-09-10 21:02:01.108346+00 2025-09-10 21:02:01.108359+00 f t Milo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8395 +6918 2025-09-10 21:02:32.924938+00 2025-09-10 21:02:32.924946+00 f t Bono CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8395 +6920 2025-09-10 21:08:41.684941+00 2025-09-10 21:08:41.684953+00 f t burton DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8397 +6919 2025-09-10 21:05:55.242705+00 2025-09-10 21:05:55.242712+00 f t Rocco CAT 5 7.50 0.00 t \N \N \N \N MALE \N f \N 1583 8396 +6921 2025-09-10 21:13:21.812604+00 2025-09-10 21:13:21.81261+00 f t Yuly CAT 6 4.50 0.00 t \N \N \N \N FEMALE \N f \N 1583 8396 +6922 2025-09-10 21:26:33.651531+00 2025-09-10 21:26:33.651538+00 f t Simba DOG \N 5.20 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8399 +6923 2025-09-10 21:26:42.987491+00 2025-09-10 21:26:42.9875+00 f t Candy DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8398 +6925 2025-09-10 22:01:03.45635+00 2025-09-10 22:01:03.456359+00 f t reyna DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8401 +6926 2025-09-10 22:22:33.944121+00 2025-09-10 22:22:33.94413+00 f t CEMYKA CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8402 +6927 2025-09-10 22:41:25.6238+00 2025-09-10 22:41:25.623808+00 f t Kack DOG \N 39.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8403 +6928 2025-09-10 22:44:05.595704+00 2025-09-10 22:44:05.595713+00 f t Spaidy DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8404 +6929 2025-09-10 23:06:45.246864+00 2025-09-10 23:06:45.246872+00 f t rocco CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8405 +6930 2025-09-10 23:43:22.711158+00 2025-09-10 23:43:22.711555+00 f t Befu DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8406 +6924 2025-09-10 21:29:36.639158+00 2025-09-10 21:29:36.639167+00 f t Simba CAT 0 5.00 0.00 f \N \N \N \N MALE \N f \N 113 8400 +6911 2025-09-10 20:04:46.785589+00 2025-09-10 20:04:46.785602+00 f t Homero CAT 0 8.00 0.00 f \N \N \N \N MALE \N f \N 113 8390 +6931 2025-09-11 00:39:43.427974+00 2025-09-11 00:39:43.427985+00 f t Chiquis CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8407 +6932 2025-09-11 00:44:57.453498+00 2025-09-11 00:44:57.453508+00 f t Puppe CAT \N 2.40 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8408 +6933 2025-09-11 00:49:20.473435+00 2025-09-11 00:49:20.473443+00 f t Puppe CAT \N 2.40 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8409 +6934 2025-09-11 00:59:16.724938+00 2025-09-11 00:59:16.724947+00 f t Teo CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8410 +6935 2025-09-11 01:07:44.506807+00 2025-09-11 01:07:44.506819+00 f t Puppe CAT \N 2.40 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8411 +6936 2025-09-11 01:09:12.632855+00 2025-09-11 01:09:12.632863+00 f t Puppe CAT \N 3.40 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8413 +6937 2025-09-11 01:09:22.957068+00 2025-09-11 01:09:22.957077+00 f t Teo CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8412 +6938 2025-09-11 01:24:49.79345+00 2025-09-11 01:24:49.793461+00 f t Indra DOG \N 4.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8415 +6939 2025-09-11 01:25:04.774133+00 2025-09-11 01:25:04.774147+00 f t Indra CAT \N 4.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8415 +6940 2025-09-11 02:04:33.62541+00 2025-09-11 02:04:33.625419+00 f t Geo DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8417 +6941 2025-09-11 02:06:50.071496+00 2025-09-11 02:06:50.071504+00 f t Toby DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8418 +6942 2025-09-11 03:05:28.978716+00 2025-09-11 03:05:28.978769+00 f t Hilario DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8422 +6943 2025-09-11 03:37:27.199387+00 2025-09-11 03:37:27.199397+00 f t Candy CAT \N 3.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8425 +6944 2025-09-11 04:24:43.268757+00 2025-09-11 04:24:43.268767+00 f t Oso CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8427 +6945 2025-09-11 04:48:02.40402+00 2025-09-11 04:48:02.404033+00 f t Zuky DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8428 +6946 2025-09-11 05:21:55.317834+00 2025-09-11 05:21:55.317843+00 f t Negro Peña DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8429 +6947 2025-09-11 08:12:23.680155+00 2025-09-11 08:12:23.680164+00 f t Akiles DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8430 +6948 2025-09-11 11:16:39.046461+00 2025-09-11 11:16:39.046473+00 f t Nina DOG \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8432 +6949 2025-09-11 12:11:10.554836+00 2025-09-11 12:11:10.554844+00 f t Mateo DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8433 +6950 2025-09-11 13:31:31.960799+00 2025-09-11 13:31:31.960809+00 f t Maggie CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8434 +6951 2025-09-11 13:45:53.368638+00 2025-09-11 13:45:53.368647+00 f t Yuki CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8435 +6952 2025-09-11 14:08:13.024098+00 2025-09-11 14:08:13.024111+00 f t Coqui DOG \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8437 +6953 2025-09-11 14:13:52.713405+00 2025-09-11 14:13:52.713417+00 f t Nacho DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8438 +6954 2025-09-11 14:16:46.671215+00 2025-09-11 14:16:46.671224+00 f t Coqui DOG \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8440 +6955 2025-09-11 14:17:11.0053+00 2025-09-11 14:17:11.005308+00 f t Federico CAT 10 7.00 0.00 t \N \N \N \N MALE \N f \N 1583 8439 +6956 2025-09-11 14:19:13.350059+00 2025-09-11 14:19:13.350071+00 f t Coqui DOG \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8441 +6957 2025-09-11 14:21:25.319287+00 2025-09-11 14:21:25.3193+00 f t Gaio CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8443 +6958 2025-09-11 15:08:26.587596+00 2025-09-11 15:08:26.587608+00 f t Lucky CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8445 +6959 2025-09-11 15:26:14.987552+00 2025-09-11 15:26:14.98756+00 f t Linda DOG 13 40.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 8446 +6960 2025-09-11 15:35:13.156458+00 2025-09-11 15:35:13.156467+00 f t Morena DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8448 +6961 2025-09-11 15:46:55.023534+00 2025-09-11 15:46:55.023543+00 f t Luna CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8449 +6962 2025-09-11 16:15:41.431268+00 2025-09-11 16:15:41.431281+00 f t Sansa DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8450 +6963 2025-09-11 16:41:41.686873+00 2025-09-11 16:41:41.686882+00 f t Misha CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8451 +6964 2025-09-11 16:42:04.4742+00 2025-09-11 16:42:04.474209+00 f t Bombón CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8452 +6965 2025-09-11 16:58:37.886405+00 2025-09-11 16:58:37.886453+00 f t Pepe DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8453 +6968 2025-09-11 17:37:34.695776+00 2025-09-11 17:37:34.695787+00 f t test CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8456 +6969 2025-09-11 18:02:42.341846+00 2025-09-11 18:02:42.341854+00 f t Traslado DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8457 +6967 2025-09-11 17:21:17.615579+00 2025-09-11 17:21:17.615589+00 f t Juliana CAT 5 4.00 0.00 f \N \N \N \N FEMALE \N f \N 1583 8455 +6966 2025-09-11 17:21:04.707947+00 2025-09-11 17:21:04.707954+00 f t Miranda CAT 0 1.00 0.00 f 2025-08-01 \N \N \N FEMALE \N f \N 1583 8455 +6971 2025-09-11 18:53:51.752221+00 2025-09-11 18:53:51.752229+00 f t Oliva CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8461 +6970 2025-09-11 18:17:41.618607+00 2025-09-11 18:17:41.618619+00 f t Molly DOG 12 5.00 0.00 f \N \N \N \N FEMALE \N f 25 1583 8458 +6972 2025-09-11 19:07:14.634666+00 2025-09-11 19:07:14.634675+00 f t Marisol FAZZINI CAT \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8462 +6973 2025-09-11 19:09:00.825197+00 2025-09-11 19:09:00.82521+00 f t Lionel CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8463 +6974 2025-09-11 19:21:25.508162+00 2025-09-11 19:21:25.50817+00 f t MICHI CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8464 +6975 2025-09-11 20:11:16.498988+00 2025-09-11 20:11:16.498996+00 f t Balu DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8466 +6976 2025-09-11 20:33:37.991699+00 2025-09-11 20:33:37.991711+00 f t Loky DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8467 +6977 2025-09-11 21:10:04.584206+00 2025-09-11 21:10:04.584221+00 f t Mia DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8470 +6978 2025-09-11 22:13:22.581638+00 2025-09-11 22:13:22.581647+00 f t Yuki CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8471 +6979 2025-09-11 22:24:19.151313+00 2025-09-11 22:24:19.151324+00 f t Romeo CAT \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8472 +6980 2025-09-11 22:31:17.248372+00 2025-09-11 22:31:17.248381+00 f t Birra CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8473 +6981 2025-09-11 22:55:35.778525+00 2025-09-11 22:55:35.778538+00 f t Roben DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8474 +6902 2025-09-10 19:29:51.024564+00 2025-09-10 19:29:51.02457+00 f t Gina DOG 14 0.00 0.00 f \N \N \N \N FEMALE \N f 20 1583 8378 +6982 2025-09-11 23:02:23.809504+00 2025-09-11 23:02:23.809513+00 f t Christofer CAT \N 3.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8475 +6983 2025-09-11 23:17:21.383669+00 2025-09-11 23:17:21.383678+00 f t Paquita DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8476 +6984 2025-09-11 23:30:17.79231+00 2025-09-11 23:30:17.792317+00 f t Música DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8477 +6985 2025-09-11 23:37:27.325046+00 2025-09-11 23:37:27.325052+00 f t Balu DOG 6 9.00 0.00 f \N \N \N \N MALE \N f 8 114 8478 +6986 2025-09-11 23:51:59.902998+00 2025-09-11 23:51:59.90301+00 f t Pipi DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8479 +6987 2025-09-12 00:11:14.365791+00 2025-09-12 00:11:14.365804+00 f t Jaime DOG \N 60.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8480 +6988 2025-09-12 00:15:15.768552+00 2025-09-12 00:15:15.768564+00 f t Cachete CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8482 +6989 2025-09-12 00:36:52.866513+00 2025-09-12 00:36:52.866521+00 f t Rocky DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8484 +6990 2025-09-12 00:37:17.797734+00 2025-09-12 00:37:17.797743+00 f t Hendrix DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8485 +6991 2025-09-12 00:57:02.153836+00 2025-09-12 00:57:02.153845+00 f t Simon CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8486 +6992 2025-09-12 02:35:16.070193+00 2025-09-12 02:35:16.070206+00 f t Sam DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8487 +6993 2025-09-12 02:46:06.386676+00 2025-09-12 02:46:06.386687+00 f t melody DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8488 +6994 2025-09-12 03:17:45.051506+00 2025-09-12 03:17:45.051515+00 f t Garfield DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8489 +6995 2025-09-12 03:20:05.352515+00 2025-09-12 03:20:05.352529+00 f t Sin nombre CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8489 +6996 2025-09-12 03:35:49.928634+00 2025-09-12 03:35:49.928646+00 f t Sabine CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8490 +6997 2025-09-12 03:55:04.367009+00 2025-09-12 03:55:04.367021+00 f t India DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8491 +6998 2025-09-12 08:29:46.722521+00 2025-09-12 08:29:46.722532+00 f t Roma DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8496 +6999 2025-09-12 08:41:16.518146+00 2025-09-12 08:41:16.518154+00 f t Fideo DOG \N 27.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8497 +7000 2025-09-12 08:50:40.947829+00 2025-09-12 08:50:40.947838+00 f t Fideo DOG \N 27.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8498 +7001 2025-09-12 11:06:08.283961+00 2025-09-12 11:06:08.28397+00 f t Sheyla DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8499 +7002 2025-09-12 11:29:39.845982+00 2025-09-12 11:29:39.84599+00 f t Asha DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8500 +7003 2025-09-12 11:50:25.120884+00 2025-09-12 11:50:25.120895+00 f t Mile CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8501 +7004 2025-09-12 12:23:42.738827+00 2025-09-12 12:23:42.738836+00 f t Neki CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8503 +7005 2025-09-12 12:24:10.880428+00 2025-09-12 12:24:10.880438+00 f t Neko CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8503 +7006 2025-09-12 12:29:10.578179+00 2025-09-12 12:29:10.578188+00 f t Fausti DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8504 +7007 2025-09-12 12:39:42.168824+00 2025-09-12 12:39:42.168836+00 f t Misi CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8505 +7008 2025-09-12 12:59:59.218088+00 2025-09-12 12:59:59.218097+00 f t Remolacha DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8506 +7009 2025-09-12 13:21:56.785723+00 2025-09-12 13:21:56.785732+00 f t Narón DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8510 +7010 2025-09-12 13:22:04.563405+00 2025-09-12 13:22:04.563413+00 f t Mechi DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8509 +7011 2025-09-12 13:24:46.983961+00 2025-09-12 13:24:46.983969+00 f t Hendrix DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8511 +7012 2025-09-12 13:27:07.36756+00 2025-09-12 13:27:07.36757+00 f t Narón CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8512 +7013 2025-09-12 13:38:51.371472+00 2025-09-12 13:38:51.371487+00 f t Coco DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8514 +7014 2025-09-12 13:41:12.474085+00 2025-09-12 13:41:12.474095+00 f t Edna CAT \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8515 +7015 2025-09-12 14:07:23.525192+00 2025-09-12 14:07:23.525204+00 f t Benicio CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8516 +7016 2025-09-12 14:49:51.308173+00 2025-09-12 14:49:51.308184+00 f t Mali DOG \N 19.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8517 +7017 2025-09-12 14:50:56.044556+00 2025-09-12 14:50:56.044566+00 f t Vera CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8518 +7018 2025-09-12 16:02:08.878548+00 2025-09-12 16:02:08.87856+00 f t Reyna DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8519 +7019 2025-09-12 16:05:03.413135+00 2025-09-12 16:05:03.413156+00 f t Hua hua CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8520 +7020 2025-09-12 16:27:19.122874+00 2025-09-12 16:27:19.122885+00 f t Manchi DOG \N 26.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8523 +7021 2025-09-12 16:31:43.395801+00 2025-09-12 16:31:43.395811+00 f t Atom CAT \N 3.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8524 +7022 2025-09-12 16:32:33.611316+00 2025-09-12 16:32:33.611327+00 f t Mei CAT \N 4.10 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8524 +7023 2025-09-12 16:53:10.097373+00 2025-09-12 16:53:10.097385+00 f t Reyna DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8526 +7024 2025-09-12 17:26:39.017+00 2025-09-12 17:26:39.017008+00 f t ER DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8527 +7025 2025-09-12 18:03:45.599924+00 2025-09-12 18:03:45.599934+00 f t Vladimir CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8528 +7026 2025-09-12 18:09:54.569617+00 2025-09-12 18:09:54.569624+00 f t Fortu DOG \N 900.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8530 +7027 2025-09-12 18:18:56.193904+00 2025-09-12 18:18:56.193914+00 f t Nfjf DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8531 +7028 2025-09-12 18:26:22.311575+00 2025-09-12 18:26:22.311587+00 f t Teddy DOG \N 5.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8532 +20 2024-10-30 14:13:08.431+00 2024-10-30 14:13:08.431+00 f t Mascota de Nora Rojas CAT \N 5.00 0.00 t 2019-01-06 \N \N \N FEMALE No hay ningún tipo de información sobre la mascota. \N f \N 114 20 +7029 2025-09-12 18:57:24.748475+00 2025-09-12 18:57:24.748484+00 f t Renata DOG \N 70.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8535 +7030 2025-09-12 19:19:21.015695+00 2025-09-12 19:19:21.015703+00 f t Lomito DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8536 +7031 2025-09-12 19:21:14.893115+00 2025-09-12 19:21:14.893122+00 f t Milo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8537 +7032 2025-09-12 19:40:55.291715+00 2025-09-12 19:40:55.291726+00 f t Uma DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8538 +7033 2025-09-12 19:44:05.33353+00 2025-09-12 19:44:05.333539+00 f t Natan DOG 0 8.00 0.00 f \N \N \N \N MALE \N f 5 1208 8539 +7034 2025-09-12 19:54:07.655944+00 2025-09-12 19:54:07.655953+00 f t lulu DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8540 +7035 2025-09-12 20:59:07.733384+00 2025-09-12 20:59:07.733398+00 f t Vito DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8541 +7036 2025-09-12 21:47:50.47809+00 2025-09-12 21:47:50.478099+00 f t Figaro CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8542 +7037 2025-09-12 21:48:43.783331+00 2025-09-12 21:48:43.783343+00 f t Mora CAT \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8542 +7038 2025-09-12 21:56:12.121192+00 2025-09-12 21:56:12.121201+00 f t Fiama DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8543 +7039 2025-09-12 21:57:19.289591+00 2025-09-12 21:57:19.2896+00 f t Mamba CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8544 +7040 2025-09-12 21:59:21.814536+00 2025-09-12 21:59:21.814546+00 f t Mamba CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8545 +7041 2025-09-12 21:59:26.529665+00 2025-09-12 21:59:26.529675+00 f t Sasha DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8543 +7042 2025-09-12 22:48:46.127039+00 2025-09-12 22:48:46.127051+00 f t Rúcula CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8547 +7043 2025-09-13 00:01:24.310631+00 2025-09-13 00:01:24.310639+00 f t Roma CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8551 +7044 2025-09-13 00:12:15.451181+00 2025-09-13 00:12:15.45119+00 f t John CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8554 +7045 2025-09-13 00:52:22.792938+00 2025-09-13 00:52:22.792946+00 f t Maxima DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8558 +7046 2025-09-13 00:52:48.405571+00 2025-09-13 00:52:48.405582+00 f t Mio DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8559 +7047 2025-09-13 00:54:56.747293+00 2025-09-13 00:54:56.747301+00 f t Cata DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8560 +7048 2025-09-13 00:58:40.312059+00 2025-09-13 00:58:40.312067+00 f t Turron DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8561 +7049 2025-09-13 01:20:41.389184+00 2025-09-13 01:20:41.389195+00 f t Mio di gregorio DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8562 +7050 2025-09-13 01:40:37.572644+00 2025-09-13 01:40:37.572655+00 f t Pelu DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8563 +7051 2025-09-13 02:24:13.694262+00 2025-09-13 02:24:13.694273+00 f t Mochi CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8565 +7052 2025-09-13 04:13:25.238208+00 2025-09-13 04:13:25.238216+00 f t Pietro CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8566 +7053 2025-09-13 08:38:43.13235+00 2025-09-13 08:38:43.132359+00 f t Gomita CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8568 +7054 2025-09-13 11:43:36.307112+00 2025-09-13 11:43:36.307123+00 f t Mora DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8569 +7055 2025-09-13 11:57:00.612817+00 2025-09-13 11:57:00.612826+00 f t Lando DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8570 +7056 2025-09-13 12:02:29.093629+00 2025-09-13 12:02:29.093643+00 f t Lando DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8571 +7057 2025-09-13 12:16:58.733164+00 2025-09-13 12:16:58.733177+00 f t Giuli DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8572 +7058 2025-09-13 12:30:09.733015+00 2025-09-13 12:30:09.733027+00 f t Baco DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8573 +7059 2025-09-13 12:34:42.838531+00 2025-09-13 12:34:42.838541+00 f t Toby DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8574 +7060 2025-09-13 12:44:16.515743+00 2025-09-13 12:44:16.515751+00 f t Tigui CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8576 +7061 2025-09-13 13:14:34.782965+00 2025-09-13 13:14:34.782976+00 f t Tigui CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8577 +7062 2025-09-13 13:28:13.049524+00 2025-09-13 13:28:13.049532+00 f t Nixi CAT \N 350.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8578 +7063 2025-09-13 13:49:23.808691+00 2025-09-13 13:49:23.808702+00 f t Bongo DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8579 +7064 2025-09-13 14:45:50.999125+00 2025-09-13 14:45:50.999158+00 f t Britney CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8580 +7065 2025-09-13 15:03:03.93337+00 2025-09-13 15:03:03.933379+00 f t Cachita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8581 +7066 2025-09-13 16:30:25.055406+00 2025-09-13 16:30:25.055415+00 f t Vienna DOG \N 19.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8582 +7067 2025-09-13 16:57:55.404004+00 2025-09-13 16:57:55.404013+00 f t Vali CAT \N 6.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8583 +7068 2025-09-13 17:10:58.373951+00 2025-09-13 17:10:58.37396+00 f t Lulu DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8584 +7069 2025-09-13 17:11:12.928173+00 2025-09-13 17:11:12.928182+00 f t Lulu CAT \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8584 +7070 2025-09-13 17:26:27.404577+00 2025-09-13 17:26:27.404586+00 f t Milan DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8585 +7071 2025-09-13 17:26:49.930739+00 2025-09-13 17:26:49.930748+00 f t Milan CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8585 +7072 2025-09-13 17:34:18.001517+00 2025-09-13 17:34:18.001525+00 f t Poupe DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8587 +7073 2025-09-13 17:34:39.930919+00 2025-09-13 17:34:39.930928+00 f t Poupé DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8587 +7074 2025-09-13 17:53:44.709898+00 2025-09-13 17:53:44.709906+00 f t Alma DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8588 +7075 2025-09-13 18:06:35.936278+00 2025-09-13 18:06:35.93629+00 f t Azul CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8590 +7076 2025-09-13 18:18:30.579071+00 2025-09-13 18:18:30.579082+00 f t Nico DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8591 +7077 2025-09-13 18:19:48.315425+00 2025-09-13 18:19:48.315437+00 f t Mia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8592 +7078 2025-09-13 19:10:53.610533+00 2025-09-13 19:10:53.610543+00 f t Ringo DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8593 +7079 2025-09-13 19:23:15.398379+00 2025-09-13 19:23:15.398389+00 f t Monti DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8594 +7080 2025-09-13 19:40:32.315453+00 2025-09-13 19:40:32.315465+00 f t Mandinga CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8595 +7081 2025-09-13 20:02:33.105184+00 2025-09-13 20:02:33.105193+00 f t Afrika CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8596 +7082 2025-09-13 20:08:16.410669+00 2025-09-13 20:08:16.410683+00 f t Almita CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8598 +7083 2025-09-13 20:17:57.366508+00 2025-09-13 20:17:57.366517+00 f t Colo DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8599 +7084 2025-09-13 20:52:41.78418+00 2025-09-13 20:52:41.784189+00 f t Misha CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8600 +7085 2025-09-13 21:10:33.89951+00 2025-09-13 21:10:33.899519+00 f t Patricio DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8601 +7086 2025-09-13 21:10:49.182227+00 2025-09-13 21:10:49.182237+00 f t Patricio CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8601 +7087 2025-09-13 21:24:13.220538+00 2025-09-13 21:24:13.220547+00 f t Sauron DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8602 +7088 2025-09-13 21:27:13.779037+00 2025-09-13 21:27:13.779045+00 f t flaca CAT \N 0.00 0.00 f \N \N \N \N FEMALE \N f 27 1208 8603 +7089 2025-09-13 21:27:27.277415+00 2025-09-13 21:27:27.277421+00 f t gorda CAT \N 0.00 0.00 f \N \N \N \N FEMALE \N f 27 1208 8603 +7090 2025-09-13 21:40:32.140998+00 2025-09-13 21:40:32.141008+00 f t Enza CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8604 +7091 2025-09-13 21:54:21.698574+00 2025-09-13 21:54:21.698583+00 f t Smokey CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8605 +7092 2025-09-13 22:01:38.840114+00 2025-09-13 22:01:38.840126+00 f t Terrible DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8606 +7093 2025-09-13 22:14:21.678964+00 2025-09-13 22:14:21.678974+00 f t Tontina CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8608 +7094 2025-09-13 22:16:01.90552+00 2025-09-13 22:16:01.90553+00 f t Negrito DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8609 +7095 2025-09-13 22:45:15.398566+00 2025-09-13 22:45:15.398575+00 f t Negrito DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8610 +7096 2025-09-13 22:58:49.194348+00 2025-09-13 22:58:49.194357+00 f t Nina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8611 +7097 2025-09-13 23:26:36.461954+00 2025-09-13 23:26:36.461963+00 f t Isa DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8612 +7098 2025-09-14 00:10:37.588906+00 2025-09-14 00:10:37.588914+00 f t Gandalf CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8613 +7099 2025-09-14 02:40:36.726246+00 2025-09-14 02:40:36.726255+00 f t Nina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8614 +7100 2025-09-14 03:58:50.777445+00 2025-09-14 03:58:50.777456+00 f t Canels DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8615 +7101 2025-09-14 04:01:10.710254+00 2025-09-14 04:01:10.710265+00 f t Canela DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8616 +7102 2025-09-14 04:16:29.479075+00 2025-09-14 04:16:29.479085+00 f t Aki DOG \N 41.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8617 +7103 2025-09-14 05:08:58.777296+00 2025-09-14 05:08:58.777309+00 f t Mandarina CAT \N 500.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8618 +7104 2025-09-14 05:54:51.274787+00 2025-09-14 05:54:51.274797+00 f t s CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8619 +7105 2025-09-14 06:41:35.193875+00 2025-09-14 06:41:35.193887+00 f t J CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8620 +7106 2025-09-14 09:10:13.490711+00 2025-09-14 09:10:13.49072+00 f t Thor DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8621 +7107 2025-09-14 10:43:01.953201+00 2025-09-14 10:43:01.95321+00 f t Blanca DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8622 +7108 2025-09-14 11:17:51.808075+00 2025-09-14 11:17:51.808088+00 f t Pecas DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8623 +7109 2025-09-14 11:18:31.389584+00 2025-09-14 11:18:31.389596+00 f t Pecas DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8623 +7110 2025-09-14 11:20:16.982014+00 2025-09-14 11:20:16.982023+00 f t Pecas DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8623 +7111 2025-09-14 11:22:04.38937+00 2025-09-14 11:22:04.389381+00 f t Pecas DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8624 +7112 2025-09-14 12:07:17.115398+00 2025-09-14 12:07:17.115407+00 f t Simon DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8625 +7113 2025-09-14 12:54:42.722334+00 2025-09-14 12:54:42.722346+00 f t Pecas DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8626 +7114 2025-09-14 12:58:20.759869+00 2025-09-14 12:58:20.759879+00 f t Pecas DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8627 +7115 2025-09-14 12:59:01.551814+00 2025-09-14 12:59:01.551826+00 f t Pecas DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8627 +7116 2025-09-14 13:46:52.111964+00 2025-09-14 13:46:52.111975+00 f t Pecas DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8628 +7117 2025-09-14 13:57:40.031965+00 2025-09-14 13:57:40.031976+00 f t Pecas DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8629 +7118 2025-09-14 14:19:43.025977+00 2025-09-14 14:19:43.025986+00 f t Ringo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8630 +7119 2025-09-14 14:22:45.990466+00 2025-09-14 14:22:45.990481+00 f t Peri CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8631 +7120 2025-09-14 14:27:03.683575+00 2025-09-14 14:27:03.683588+00 f t MILO CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8632 +7121 2025-09-14 14:44:54.290436+00 2025-09-14 14:44:54.290445+00 f t Vitto DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8633 +7122 2025-09-14 15:58:41.34994+00 2025-09-14 15:58:41.349951+00 f t Olivia DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8634 +7123 2025-09-14 16:50:39.041035+00 2025-09-14 16:50:39.041047+00 f t Am DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8635 +7124 2025-09-14 16:55:37.447993+00 2025-09-14 16:55:37.448006+00 f t Jan CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8636 +7125 2025-09-14 18:05:25.565047+00 2025-09-14 18:05:25.565055+00 f t Kobu DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8637 +7126 2025-09-14 18:59:20.138379+00 2025-09-14 18:59:20.138387+00 f t Tontuna CAT 15 6.00 0.00 t \N \N \N \N FEMALE Antibióticos y antinflamatorios el viernes 12\r\nPuede asustarse, no es hostil \N f \N 114 8638 +7127 2025-09-14 19:06:36.926659+00 2025-09-14 19:06:36.926666+00 f t Peri CAT 4 5.50 0.00 t \N \N \N \N MALE Está o estuvo tomando alguna medicación en los últimos 7 días? Cuál? No está tomando medicamento\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Es miedoso pero no es violento \N f 27 114 8639 +7128 2025-09-14 19:11:34.680547+00 2025-09-14 19:11:34.680557+00 f t Olivia DOG 15 30.00 0.00 f \N \N \N \N FEMALE \N f 2 114 8640 +7129 2025-09-14 19:31:32.932926+00 2025-09-14 19:31:32.932933+00 f t Almita CAT 11 10.00 0.00 t \N \N \N \N FEMALE \N f \N 114 8641 +7130 2025-09-14 21:02:57.460961+00 2025-09-14 21:02:57.460971+00 f t Geppetto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8642 +7131 2025-09-14 21:07:51.993939+00 2025-09-14 21:07:51.993948+00 f t Kimmy DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8643 +7132 2025-09-14 22:22:23.575033+00 2025-09-14 22:22:23.575046+00 f t lola DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8644 +7133 2025-09-14 22:24:08.414348+00 2025-09-14 22:24:08.414358+00 f t milo DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8644 +7134 2025-09-14 22:26:36.963773+00 2025-09-14 22:26:36.963782+00 f t milo CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8644 +7135 2025-09-14 23:23:28.607354+00 2025-09-14 23:23:28.607362+00 f t Hector DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8645 +7136 2025-09-14 23:40:17.597582+00 2025-09-14 23:40:17.597596+00 f t Luna CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8646 +7137 2025-09-14 23:50:42.697989+00 2025-09-14 23:50:42.697998+00 f t Simba CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8647 +7138 2025-09-14 23:53:35.166341+00 2025-09-14 23:53:35.166355+00 f t Dobby CAT \N 2.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8647 +7139 2025-09-14 23:54:21.103939+00 2025-09-14 23:54:21.103948+00 f t Bella CAT \N 2.80 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8647 +8513 2025-10-08 04:00:41.520002+00 2025-10-08 04:00:41.520013+00 f t luna CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10255 +7142 2025-09-15 00:22:18.79848+00 2025-09-15 00:22:18.798489+00 f t Oslaf CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8650 +7143 2025-09-15 00:26:32.627363+00 2025-09-15 00:26:32.627376+00 f t Milo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8651 +7144 2025-09-15 00:45:51.134671+00 2025-09-15 00:45:51.13468+00 f t Zeus DOG \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8652 +7145 2025-09-15 00:46:38.550049+00 2025-09-15 00:46:38.55006+00 f t Atenas CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8653 +7146 2025-09-15 01:27:53.722654+00 2025-09-15 01:27:53.722668+00 f t Tomy coco ramon y catalina y sofia DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8654 +7147 2025-09-15 04:09:18.788343+00 2025-09-15 04:09:18.788353+00 f t Mulato DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8655 +7148 2025-09-15 12:48:31.318689+00 2025-09-15 12:48:31.318698+00 f t Mascarpone CAT 18 0.00 0.00 t \N \N \N \N FEMALE Tuvo una sola camada \N f \N 1583 8658 +6907 2025-09-10 19:47:29.623243+00 2025-09-10 19:47:29.623252+00 f t Chardonnay CAT \N 8.00 0.00 t \N 2014-01-01 \N \N \N MALE \N \N f \N \N 8385 +7149 2025-09-15 12:56:49.721687+00 2025-09-15 12:56:49.721701+00 f t Cun DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8659 +7150 2025-09-15 13:06:39.334049+00 2025-09-15 13:06:39.334057+00 f t Alma DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8660 +7151 2025-09-15 13:08:39.889113+00 2025-09-15 13:08:39.889125+00 f t Gati CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8660 +7152 2025-09-15 13:54:57.965705+00 2025-09-15 13:54:57.965714+00 f t Gaia CAT \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8661 +7153 2025-09-15 14:03:29.479719+00 2025-09-15 14:03:29.479737+00 f t Vaco CAT \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8662 +7154 2025-09-15 14:05:04.247978+00 2025-09-15 14:05:04.247994+00 f t Ramon DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8662 +5547 2025-08-18 17:07:18.985737+00 2025-08-18 17:07:18.985745+00 f t Aquiles CAT 6 4.00 0.00 t \N \N \N \N \N \N f 27 1208 6788 +7140 2025-09-14 23:59:10.518176+00 2025-09-14 23:59:10.518184+00 f t Monyu CAT 15 3.00 0.00 f \N \N \N \N MALE \N f \N 1583 8649 +7141 2025-09-14 23:59:54.688488+00 2025-09-14 23:59:54.688502+00 f t Onix CAT 1 3.00 0.00 f \N \N \N \N MALE \N f \N 1583 8649 +7155 2025-09-15 15:27:45.04269+00 2025-09-15 15:27:45.042699+00 f t Atom CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8663 +7156 2025-09-15 15:28:44.780629+00 2025-09-15 15:28:44.780639+00 f t Lola DOG \N 6.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8664 +7157 2025-09-15 15:41:33.006233+00 2025-09-15 15:41:33.006241+00 f t Filou DOG \N 24.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8665 +7158 2025-09-15 16:45:44.385297+00 2025-09-15 16:45:44.385306+00 f t MIMO CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8666 +7159 2025-09-15 17:04:55.012454+00 2025-09-15 17:04:55.012466+00 f t Fiorela DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8667 +7160 2025-09-15 17:53:24.955924+00 2025-09-15 17:53:24.955933+00 f t Milo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8668 +7161 2025-09-15 17:57:16.54845+00 2025-09-15 17:57:16.548458+00 f t Roco DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8669 +7162 2025-09-15 18:02:43.588047+00 2025-09-15 18:02:43.588069+00 f t Bu CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8670 +7163 2025-09-15 18:17:12.611637+00 2025-09-15 18:17:12.611643+00 f t Fefo DOG 2 34.00 0.00 f \N \N \N \N MALE \N f 58 1208 8672 +7164 2025-09-15 19:06:28.197185+00 2025-09-15 19:06:28.197197+00 f t Margarita CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8673 +7165 2025-09-15 19:08:22.848392+00 2025-09-15 19:08:22.8484+00 f t Felipe CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8673 +7166 2025-09-15 19:08:51.559787+00 2025-09-15 19:08:51.559795+00 f t Ramon DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8674 +7167 2025-09-15 19:23:28.399006+00 2025-09-15 19:23:28.399015+00 f t Lea CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8675 +7168 2025-09-15 19:59:08.628212+00 2025-09-15 19:59:08.62822+00 f t Ciclon CAT 5 4.00 0.00 f \N \N \N \N MALE \N f \N 1583 8676 +7169 2025-09-15 20:53:05.352264+00 2025-09-15 20:53:05.352274+00 f t Max DOG \N 33.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8678 +7170 2025-09-15 21:17:53.964935+00 2025-09-15 21:17:53.964945+00 f t Birrita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8679 +4259 2025-07-24 15:52:22.414146+00 2025-07-24 15:52:22.414154+00 f t Rufina CAT 5 5.00 0.00 t 2020-12-25 2025-07-25 \N \N FEMALE \N f 64 1026 5176 +7171 2025-09-15 21:59:32.157013+00 2025-09-15 21:59:32.157022+00 f t Claro CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8681 +7172 2025-09-15 22:08:00.989481+00 2025-09-15 22:08:00.989495+00 f t Bella DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8682 +7173 2025-09-15 22:24:06.80197+00 2025-09-15 22:24:06.801979+00 f t Osita CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8683 +7174 2025-09-15 22:51:07.022439+00 2025-09-15 22:51:07.02245+00 f t Puchito CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8684 +7175 2025-09-15 23:39:00.160206+00 2025-09-15 23:39:00.16022+00 f t Malí CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8688 +7176 2025-09-15 23:39:41.648082+00 2025-09-15 23:39:41.648091+00 f t Enza CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8689 +7177 2025-09-16 00:12:30.778589+00 2025-09-16 00:12:30.778596+00 f t Bella DOG 10 10.00 0.00 t \N \N \N \N FEMALE \N f 1 1208 8690 +7178 2025-09-16 01:03:10.632151+00 2025-09-16 01:03:10.632163+00 f t Ciro DOG \N 28.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8692 +7179 2025-09-16 01:11:17.825395+00 2025-09-16 01:11:17.825407+00 f t Luna CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8693 +7180 2025-09-16 01:12:54.32645+00 2025-09-16 01:12:54.32646+00 f t Floky CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8693 +7181 2025-09-16 01:18:49.419761+00 2025-09-16 01:18:49.419771+00 f t Ciro DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8694 +7182 2025-09-16 01:20:08.706902+00 2025-09-16 01:20:08.706916+00 f t Frida DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8695 +7183 2025-09-16 01:27:28.518985+00 2025-09-16 01:27:28.518994+00 f t A CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8696 +7184 2025-09-16 01:43:16.181202+00 2025-09-16 01:43:16.18121+00 f t Floki DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8697 +7185 2025-09-16 02:23:53.207894+00 2025-09-16 02:23:53.207906+00 f t Gauss CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8700 +7186 2025-09-16 02:24:30.311879+00 2025-09-16 02:24:30.311888+00 f t Gauss CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8701 +7187 2025-09-16 02:30:10.780561+00 2025-09-16 02:30:10.780575+00 f t Luthor DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8702 +7188 2025-09-16 02:31:53.592749+00 2025-09-16 02:31:53.592761+00 f t Gauss CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8703 +7189 2025-09-16 06:24:24.187584+00 2025-09-16 06:24:24.187592+00 f t Frank DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8710 +7190 2025-09-16 10:40:52.857896+00 2025-09-16 10:40:52.857904+00 f t Apolo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8712 +7191 2025-09-16 10:52:53.669439+00 2025-09-16 10:52:53.669449+00 f t sucio DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8713 +7193 2025-09-16 10:56:55.411897+00 2025-09-16 10:56:55.411906+00 f t Apolo CAT \N 7.25 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8714 +7194 2025-09-16 11:17:04.586971+00 2025-09-16 11:17:04.58698+00 f t Mucca CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8715 +7195 2025-09-16 11:19:00.101513+00 2025-09-16 11:19:00.101523+00 f t Milla CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8715 +7197 2025-09-16 12:15:35.945929+00 2025-09-16 12:15:35.945943+00 f t Fidel DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8717 +7192 2025-09-16 10:56:38.628062+00 2025-09-16 10:56:38.628069+00 t t Apolo DOG \N 7.25 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8714 +7198 2025-09-16 12:44:12.689785+00 2025-09-16 12:44:12.689796+00 f t AmarMascotas DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8718 +7199 2025-09-16 12:44:33.737899+00 2025-09-16 12:44:33.737909+00 f t AmarMascotas DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8718 +7200 2025-09-16 13:03:30.257909+00 2025-09-16 13:03:30.257922+00 f t Maison DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8720 +7201 2025-09-16 13:43:22.148907+00 2025-09-16 13:43:22.148927+00 f t COP_Produccion DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8722 +7202 2025-09-16 14:54:41.377097+00 2025-09-16 14:54:41.377107+00 f t Rocco DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8723 +7203 2025-09-16 15:00:53.305443+00 2025-09-16 15:00:53.305456+00 f t Corina DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8724 +7204 2025-09-16 15:06:16.553161+00 2025-09-16 15:06:16.553174+00 f t Mora DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8725 +7205 2025-09-16 15:22:59.294393+00 2025-09-16 15:22:59.294405+00 f t Pipin CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8726 +7206 2025-09-16 15:24:32.30322+00 2025-09-16 15:24:32.303229+00 f t Benito DOG \N 3.80 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8727 +7207 2025-09-16 15:26:56.281699+00 2025-09-16 15:26:56.28171+00 f t Benito DOG \N 3.80 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8728 +7208 2025-09-16 15:28:00.052132+00 2025-09-16 15:28:00.052142+00 f t Lola DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8729 +7209 2025-09-16 15:31:00.267547+00 2025-09-16 15:31:00.267554+00 f t Vitto CAT 5 5.00 0.00 t \N \N \N \N MALE \N f 27 1208 8730 +7210 2025-09-16 15:31:57.759846+00 2025-09-16 15:31:57.759856+00 f t Yuri CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8731 +7211 2025-09-16 15:38:27.478889+00 2025-09-16 15:38:27.478898+00 f t Sarita DOG 1 15.00 0.00 f \N \N \N \N FEMALE \N f 5 1583 8732 +7212 2025-09-16 15:51:49.718152+00 2025-09-16 15:51:49.718161+00 f t Osa DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8734 +7213 2025-09-16 15:53:56.254816+00 2025-09-16 15:53:56.254824+00 f t homero CAT 15 4.00 0.00 t \N \N \N \N MALE \N f 27 1208 8735 +7214 2025-09-16 16:05:47.574696+00 2025-09-16 16:05:47.574707+00 f t Lola DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8736 +7215 2025-09-16 16:10:52.353025+00 2025-09-16 16:10:52.353038+00 f t Simona DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8737 +7216 2025-09-16 16:12:05.661782+00 2025-09-16 16:12:05.661796+00 f t Nino CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8737 +7217 2025-09-16 16:28:57.353515+00 2025-09-16 16:28:57.353524+00 f t Simba CAT \N 8.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8738 +7218 2025-09-16 16:36:53.009962+00 2025-09-16 16:36:53.009974+00 f t Katalina CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8739 +7219 2025-09-16 16:45:00.423803+00 2025-09-16 16:45:00.42381+00 f t Mulan CAT 4 6.00 0.00 t \N \N \N \N MALE \N f \N 1583 8740 +7220 2025-09-16 17:43:52.427524+00 2025-09-16 17:43:52.427531+00 f t Maia CAT 10 4.50 0.00 t \N \N \N \N FEMALE \N f \N 1583 8743 +7221 2025-09-16 18:08:10.80028+00 2025-09-16 18:08:10.800289+00 f t Mors DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8744 +7222 2025-09-16 18:15:36.143084+00 2025-09-16 18:15:36.143094+00 f t Miel DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8745 +7223 2025-09-16 19:04:16.400288+00 2025-09-16 19:04:16.4003+00 f t Miel DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8745 +7224 2025-09-16 19:17:49.73755+00 2025-09-16 19:17:49.737558+00 f t Caramelo DOG \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8746 +7225 2025-09-16 19:52:03.575304+00 2025-09-16 19:52:03.575315+00 f t Luki DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8750 +7226 2025-09-16 20:22:37.078895+00 2025-09-16 20:22:37.078904+00 f t Felipa DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8754 +7227 2025-09-16 20:26:32.760058+00 2025-09-16 20:26:32.760068+00 f t Gaia DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8755 +7228 2025-09-16 20:41:53.977121+00 2025-09-16 20:41:53.97713+00 f t Dora CAT \N 3.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8756 +7229 2025-09-16 20:53:40.341573+00 2025-09-16 20:53:40.341583+00 f t Leon DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8758 +7230 2025-09-16 21:10:41.2763+00 2025-09-16 21:10:41.276309+00 f t Juana DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8760 +7231 2025-09-16 21:18:21.961101+00 2025-09-16 21:18:21.961109+00 f t Wendy DOG \N 3.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8761 +7232 2025-09-16 22:01:56.070615+00 2025-09-16 22:01:56.070621+00 f t Leon DOG 5 8.00 0.00 f \N \N \N \N MALE \N f 8 1583 8762 +7233 2025-09-16 22:09:03.260498+00 2025-09-16 22:09:03.26051+00 f t sanson DOG \N 60.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8763 +7234 2025-09-16 22:12:14.8636+00 2025-09-16 22:12:14.863609+00 f t Pequeña CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8764 +7235 2025-09-16 22:33:52.593183+00 2025-09-16 22:33:52.593194+00 f t Rocky DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8765 +7236 2025-09-16 23:18:13.460074+00 2025-09-16 23:18:13.460083+00 f t Tito CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8766 +7237 2025-09-16 23:19:45.655794+00 2025-09-16 23:19:45.655806+00 f t Tittino CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8766 +7238 2025-09-16 23:40:01.028642+00 2025-09-16 23:40:01.028651+00 f t Tito CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8767 +7239 2025-09-16 23:41:00.038575+00 2025-09-16 23:41:00.038585+00 f t Tittino CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8767 +7240 2025-09-16 23:50:52.606986+00 2025-09-16 23:50:52.606993+00 f t Oliver DOG 13 25.00 0.00 f \N \N \N \N MALE \N f 54 113 7897 +7241 2025-09-17 00:10:23.238138+00 2025-09-17 00:10:23.238151+00 f t Alegria CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8768 +7242 2025-09-17 00:44:38.806035+00 2025-09-17 00:44:38.806045+00 f t Nena CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8770 +7243 2025-09-17 01:34:14.476718+00 2025-09-17 01:34:14.476732+00 f t Layra DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8771 +7244 2025-09-17 02:17:01.172271+00 2025-09-17 02:17:01.172286+00 f t Homero DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8772 +7245 2025-09-17 07:34:15.69902+00 2025-09-17 07:34:15.699032+00 f t Tatiana DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8773 +7246 2025-09-17 10:35:30.206277+00 2025-09-17 10:35:30.206291+00 f t Tita DOG \N 16.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8776 +7247 2025-09-17 11:28:13.338151+00 2025-09-17 11:28:13.338161+00 f t Isis CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8777 +7248 2025-09-17 12:08:21.680099+00 2025-09-17 12:08:21.680112+00 f t Hilario DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8779 +7249 2025-09-17 12:44:25.81234+00 2025-09-17 12:44:25.81235+00 f t Rosita CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8780 +7250 2025-09-17 13:17:49.001141+00 2025-09-17 13:17:49.001161+00 f t Luly DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8781 +7251 2025-09-17 13:30:53.594138+00 2025-09-17 13:30:53.594151+00 f t Alfonsona CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8782 +7252 2025-09-17 13:31:55.167844+00 2025-09-17 13:31:55.167858+00 f t Catalina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8782 +7253 2025-09-17 13:34:52.637902+00 2025-09-17 13:34:52.637915+00 f t Alfonsina CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8782 +7254 2025-09-17 13:50:59.496114+00 2025-09-17 13:50:59.496123+00 f t Luca DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8785 +7255 2025-09-17 14:46:59.776093+00 2025-09-17 14:46:59.776106+00 f t A DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8786 +7256 2025-09-17 15:53:06.546073+00 2025-09-17 15:53:06.546085+00 f t Molly DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8787 +7257 2025-09-17 16:02:20.446516+00 2025-09-17 16:02:20.446528+00 f t Lola DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8788 +7258 2025-09-17 16:16:46.738754+00 2025-09-17 16:16:46.738761+00 f t Minerva CAT 1 3.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 8789 +7259 2025-09-17 17:27:01.661654+00 2025-09-17 17:27:01.661667+00 f t Gor DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8790 +7260 2025-09-17 17:37:45.383757+00 2025-09-17 17:37:45.383766+00 f t Juana DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8791 +7261 2025-09-17 18:02:40.561525+00 2025-09-17 18:02:40.561536+00 f t NEGRITO DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8792 +7262 2025-09-17 18:05:33.745613+00 2025-09-17 18:05:33.745625+00 f t BEBE CAT \N 3.00 30.00 t \N 2021-12-01 \N \N \N FEMALE \N \N f \N \N 8792 +7263 2025-09-17 18:05:34.826617+00 2025-09-17 18:05:34.826629+00 f t BEBE CAT \N 3.00 30.00 t \N 2021-12-01 \N \N \N FEMALE \N \N f \N \N 8792 +7264 2025-09-17 18:27:41.510563+00 2025-09-17 18:27:41.510572+00 f t Miki CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8793 +7265 2025-09-17 18:29:23.192489+00 2025-09-17 18:29:23.192502+00 f t a DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8794 +7266 2025-09-17 18:33:10.589246+00 2025-09-17 18:33:10.589256+00 f t Ciro DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8796 +7267 2025-09-17 18:35:07.723573+00 2025-09-17 18:35:07.723587+00 f t Mateo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8798 +7268 2025-09-17 18:35:44.265864+00 2025-09-17 18:35:44.265873+00 f t Bonnie DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8799 +7269 2025-09-17 19:03:24.259777+00 2025-09-17 19:03:24.259788+00 f t Siri CAT \N 3.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8800 +7270 2025-09-17 19:07:36.484976+00 2025-09-17 19:07:36.484986+00 f t Siri CAT \N 3.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8800 +7271 2025-09-17 19:15:56.094683+00 2025-09-17 19:15:56.094693+00 f t Limon DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8801 +7272 2025-09-17 19:17:57.588424+00 2025-09-17 19:17:57.588434+00 f t Guly DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8802 +7273 2025-09-17 19:34:04.077815+00 2025-09-17 19:34:04.077828+00 f t Pacha DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8803 +7274 2025-09-17 19:35:46.132561+00 2025-09-17 19:35:46.132572+00 f t Pacha DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8804 +7275 2025-09-17 19:52:06.588176+00 2025-09-17 19:52:06.588185+00 f t Fisgón CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8806 +7276 2025-09-17 20:17:28.514289+00 2025-09-17 20:17:28.514302+00 f t Chester CAT \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8807 +7277 2025-09-17 20:38:57.693689+00 2025-09-17 20:38:57.693698+00 f t Ary DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8809 +7278 2025-09-17 20:39:10.527306+00 2025-09-17 20:39:10.527322+00 f t Ary CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8809 +7279 2025-09-17 20:55:18.852901+00 2025-09-17 20:55:18.852907+00 f t Lana CAT 7 0.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 8810 +7280 2025-09-17 20:56:39.568315+00 2025-09-17 20:56:39.568325+00 f t Mora DOG \N 31.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8811 +7281 2025-09-17 21:05:13.805833+00 2025-09-17 21:05:13.805843+00 f t Nicky DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8812 +7282 2025-09-17 21:05:39.022128+00 2025-09-17 21:05:39.022138+00 f t Mishu CAT \N 3.40 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8812 +7283 2025-09-17 21:58:34.954689+00 2025-09-17 21:58:34.954702+00 f t Tita DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8813 +7284 2025-09-17 22:11:43.337502+00 2025-09-17 22:11:43.33751+00 f t Jana DOG 11 8.00 0.00 t \N \N \N \N FEMALE \N f 5 1583 8814 +7285 2025-09-17 22:41:19.61235+00 2025-09-17 22:41:19.614262+00 f t Fito DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8815 +7286 2025-09-17 22:46:14.604424+00 2025-09-17 22:46:14.604438+00 f t Kito CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8816 +7287 2025-09-17 22:48:36.718889+00 2025-09-17 22:48:36.718899+00 f t Mona CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8816 +7288 2025-09-17 22:55:32.904208+00 2025-09-17 22:55:32.904221+00 f t Masha DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8818 +11806 2025-11-24 12:02:05.397947+00 2025-11-24 12:02:05.39796+00 f t Felix CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14320 +7290 2025-09-17 23:12:14.224041+00 2025-09-17 23:12:14.224049+00 f t Kito DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8820 +7291 2025-09-17 23:12:40.553421+00 2025-09-17 23:12:40.553431+00 f t Kito CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8820 +7292 2025-09-17 23:31:31.819953+00 2025-09-17 23:31:31.819962+00 f t Chimenea DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8821 +7294 2025-09-18 01:16:45.769886+00 2025-09-18 01:16:45.769899+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8824 +7295 2025-09-18 01:27:01.883042+00 2025-09-18 01:27:01.883052+00 f t Vita CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8826 +7296 2025-09-18 02:06:44.852382+00 2025-09-18 02:06:44.852391+00 f t LUNA DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8827 +7297 2025-09-18 02:50:31.216143+00 2025-09-18 02:50:31.216158+00 f t Tomy coco ramon y caty DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8828 +7298 2025-09-18 03:40:00.30665+00 2025-09-18 03:40:00.306659+00 f t Baco CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8830 +7299 2025-09-18 04:06:11.051021+00 2025-09-18 04:06:11.051031+00 f t Morgana DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8831 +7300 2025-09-18 05:07:46.978589+00 2025-09-18 05:07:46.978599+00 f t Bruno CAT \N 4.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8832 +7301 2025-09-18 05:38:57.060912+00 2025-09-18 05:38:57.060922+00 f t Bruno CAT \N 4.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8833 +7302 2025-09-18 06:24:17.485539+00 2025-09-18 06:24:17.485548+00 f t Minnie DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8835 +7303 2025-09-18 06:26:34.762722+00 2025-09-18 06:26:34.76273+00 f t Lobo DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8836 +7304 2025-09-18 06:28:03.59656+00 2025-09-18 06:28:03.596569+00 f t Agata DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8837 +7305 2025-09-18 06:29:02.197827+00 2025-09-18 06:29:02.19784+00 f t Zaira CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8837 +7306 2025-09-18 07:17:41.049867+00 2025-09-18 07:17:41.049877+00 f t Apache DOG \N 22.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8839 +7307 2025-09-18 08:10:27.944072+00 2025-09-18 08:10:27.944086+00 f t Canela CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8840 +7308 2025-09-18 09:47:01.425696+00 2025-09-18 09:47:01.425703+00 f t kiara DOG 2 0.00 0.00 f \N \N \N \N FEMALE \N f 5 113 1100 +7309 2025-09-18 09:54:44.671054+00 2025-09-18 09:54:44.671067+00 f t Alma DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8841 +7310 2025-09-18 10:28:03.277668+00 2025-09-18 10:28:03.277681+00 f t Luz DOG \N 34.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8842 +7311 2025-09-18 10:31:22.003712+00 2025-09-18 10:31:22.003727+00 f t Luz DOG \N 34.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8843 +7312 2025-09-18 10:38:23.904247+00 2025-09-18 10:38:23.904261+00 f t Mocca DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8844 +7313 2025-09-18 10:39:40.914864+00 2025-09-18 10:39:40.914874+00 f t Mocca DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8845 +7314 2025-09-18 11:23:44.961368+00 2025-09-18 11:23:44.961378+00 f t Zoku DOG \N 18.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8847 +7315 2025-09-18 11:27:32.955555+00 2025-09-18 11:27:32.955564+00 f t Zoku DOG \N 18.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8848 +7316 2025-09-18 11:31:56.154409+00 2025-09-18 11:31:56.154418+00 f t Conrad CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8849 +7317 2025-09-18 12:15:17.730827+00 2025-09-18 12:15:17.730836+00 f t AGATA CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8851 +7318 2025-09-18 12:24:34.478784+00 2025-09-18 12:24:34.478796+00 f t Cata DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8853 +7319 2025-09-18 12:38:10.268418+00 2025-09-18 12:38:10.268429+00 f t India DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8854 +7320 2025-09-18 13:27:04.747379+00 2025-09-18 13:27:04.747393+00 f t NINA DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8855 +7321 2025-09-18 13:50:32.077002+00 2025-09-18 13:50:32.077012+00 f t Vicky Velasco CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8856 +7322 2025-09-18 13:52:33.290997+00 2025-09-18 13:52:33.291006+00 f t Negro3 kg DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8857 +7323 2025-09-18 14:05:00.250253+00 2025-09-18 14:05:00.250264+00 f t Juan Pablo DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8859 +7324 2025-09-18 14:50:45.735819+00 2025-09-18 14:50:45.735829+00 f t Hilario DOG 10 23.00 0.00 t \N \N \N \N MALE \N f 52 1583 8860 +7325 2025-09-18 15:24:40.654911+00 2025-09-18 15:24:40.654924+00 f t Eiden CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8861 +7326 2025-09-18 15:36:51.598296+00 2025-09-18 15:36:51.598303+00 f t Mina CAT 8 3.00 0.00 t \N \N \N \N FEMALE \N f 27 1208 8862 +7330 2025-09-18 15:36:57.271069+00 2025-09-18 15:36:57.271076+00 t t Mina CAT 8 3.00 0.00 t \N \N \N \N FEMALE \N f 27 1208 8862 +7329 2025-09-18 15:36:57.230545+00 2025-09-18 15:36:57.230554+00 t t Mina CAT 8 3.00 0.00 t \N \N \N \N FEMALE \N f 27 1208 8862 +7328 2025-09-18 15:36:56.999039+00 2025-09-18 15:36:56.999046+00 t t Mina CAT 8 3.00 0.00 t \N \N \N \N FEMALE \N f 27 1208 8862 +7327 2025-09-18 15:36:56.005807+00 2025-09-18 15:36:56.005816+00 f t Niels CAT 4 4.00 0.00 t \N \N \N \N MALE \N f 27 1208 8862 +7331 2025-09-18 16:01:53.188745+00 2025-09-18 16:01:53.188754+00 f t Mina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8863 +7332 2025-09-18 16:34:56.071749+00 2025-09-18 16:34:56.071759+00 f t Chuchu DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8867 +7333 2025-09-18 17:07:16.139822+00 2025-09-18 17:07:16.139834+00 f t Lisandro CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8868 +7334 2025-09-18 17:12:03.938364+00 2025-09-18 17:12:03.938375+00 f t Moncho DOG 15 18.00 0.00 f \N \N \N \N MALE \N f 1 1208 8869 +7335 2025-09-18 17:46:01.678948+00 2025-09-18 17:46:01.678962+00 f t Pancha DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8872 +7293 2025-09-18 00:52:22.368349+00 2025-09-18 00:52:22.368362+00 f t Otto CAT 2 6.00 0.00 f \N \N \N \N MALE \N f \N 1583 8823 +7336 2025-09-18 18:12:23.828693+00 2025-09-18 18:12:23.828703+00 f t Zeus CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8874 +7337 2025-09-18 18:12:37.773743+00 2025-09-18 18:12:37.773752+00 f t Connie CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8874 +7338 2025-09-18 18:12:57.430014+00 2025-09-18 18:12:57.430026+00 f t Mushu DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8875 +7339 2025-09-18 18:27:04.003876+00 2025-09-18 18:27:04.003885+00 f t Pepi CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8877 +7340 2025-09-18 18:30:41.376523+00 2025-09-18 18:30:41.376534+00 f t Pepi CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8878 +7342 2025-09-18 18:48:49.316316+00 2025-09-18 18:48:49.316325+00 f t Kito CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8880 +7343 2025-09-18 18:50:25.10792+00 2025-09-18 18:50:25.107933+00 f t Mona CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8880 +6512 2025-09-03 17:52:07.468362+00 2025-09-03 17:52:07.468372+00 f t Stitch DOG 0 25.00 0.00 f 2019-12-04 \N \N \N MALE \N f \N 1208 7909 +7344 2025-09-18 19:07:41.286108+00 2025-09-18 19:07:41.286117+00 f t Stitch DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8881 +7355 2025-09-18 22:44:36.017287+00 2025-09-18 22:44:36.017297+00 f t Olivia CAT \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8894 +7341 2025-09-18 18:31:05.997649+00 2025-09-18 18:31:05.997657+00 f t Choco CAT \N 0.00 0.00 f \N 2024-12-18 \N \N \N MALE \N \N f \N \N 8879 +7345 2025-09-18 20:24:30.247514+00 2025-09-18 20:24:30.247532+00 f t Rocco DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8882 +7346 2025-09-18 20:43:02.950445+00 2025-09-18 20:43:02.950454+00 f t Draco DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8883 +7347 2025-09-18 21:02:10.719772+00 2025-09-18 21:02:10.71978+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8885 +7348 2025-09-18 21:12:09.252157+00 2025-09-18 21:12:09.252166+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8886 +7349 2025-09-18 21:39:50.798324+00 2025-09-18 21:39:50.798334+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8888 +7350 2025-09-18 21:48:35.639841+00 2025-09-18 21:48:35.639849+00 f t Ozzy CAT \N 900.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8889 +7351 2025-09-18 21:53:28.557517+00 2025-09-18 21:53:28.557526+00 f t Minino CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8890 +7352 2025-09-18 22:11:10.86857+00 2025-09-18 22:11:10.868583+00 f t Hércules DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8891 +7353 2025-09-18 22:16:25.34325+00 2025-09-18 22:16:25.343281+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8892 +7354 2025-09-18 22:21:54.118329+00 2025-09-18 22:21:54.118338+00 f t Luna CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8893 +7356 2025-09-18 22:48:16.758152+00 2025-09-18 22:48:16.75816+00 f t Frida DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8895 +7357 2025-09-18 22:48:33.74523+00 2025-09-18 22:48:33.745239+00 f t Frida CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8895 +7358 2025-09-18 22:49:19.92457+00 2025-09-18 22:49:19.924579+00 f t Frida DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8895 +7359 2025-09-18 22:54:07.457556+00 2025-09-18 22:54:07.457566+00 f t Osho DOG \N 6.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8896 +7360 2025-09-18 22:58:41.24385+00 2025-09-18 22:58:41.243859+00 f t Lalo DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8898 +7361 2025-09-18 23:01:59.399187+00 2025-09-18 23:01:59.399198+00 f t Loki DOG \N 6.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8899 +7362 2025-09-18 23:14:33.889562+00 2025-09-18 23:14:33.889572+00 f t Frida DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8900 +7196 2025-09-16 11:40:25.580963+00 2025-09-16 11:40:25.580975+00 f t Pocho DOG \N 35.00 0.00 f \N 2010-12-22 \N \N \N MALE \N \N f \N \N 8716 +7363 2025-09-18 23:51:56.079003+00 2025-09-18 23:51:56.079012+00 f t Atenas CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8901 +7364 2025-09-19 01:14:36.508297+00 2025-09-19 01:14:36.508307+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8903 +7365 2025-09-19 01:19:20.434186+00 2025-09-19 01:19:20.434195+00 f t Blaky DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8904 +7366 2025-09-19 01:29:34.339029+00 2025-09-19 01:29:34.339042+00 f t Chimenea DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8905 +7367 2025-09-19 01:33:06.899851+00 2025-09-19 01:33:06.89986+00 f t Chimenea DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8906 +7368 2025-09-19 02:05:15.429579+00 2025-09-19 02:05:15.429588+00 f t Micho DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8907 +7369 2025-09-19 02:14:54.559554+00 2025-09-19 02:14:54.559562+00 f t Thor DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8908 +7370 2025-09-19 02:28:00.108218+00 2025-09-19 02:28:00.108232+00 f t Romeo DOG \N 700.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8909 +7371 2025-09-19 03:08:44.076356+00 2025-09-19 03:08:44.076369+00 f t Chimuelo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8910 +7372 2025-09-19 03:09:26.283395+00 2025-09-19 03:09:26.283407+00 f t Cobi DOG \N 24.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8910 +7373 2025-09-19 03:14:07.525061+00 2025-09-19 03:14:07.52507+00 f t Thelma DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8911 +7374 2025-09-19 04:10:45.549165+00 2025-09-19 04:10:45.549178+00 f t Ramirez DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8912 +7375 2025-09-19 05:25:36.074375+00 2025-09-19 05:25:36.074384+00 f t Hanna CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8913 +7376 2025-09-19 05:27:18.721057+00 2025-09-19 05:27:18.721065+00 f t Bongo DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8914 +7377 2025-09-19 07:09:42.989299+00 2025-09-19 07:09:42.989308+00 f t Renata DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8915 +7378 2025-09-19 09:44:39.533791+00 2025-09-19 09:44:39.533803+00 f t HÉRCULES DOG \N 33.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8916 +7379 2025-09-19 10:47:44.830781+00 2025-09-19 10:47:44.830791+00 f t Hércules DOG \N 33.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8918 +7380 2025-09-19 11:08:26.105767+00 2025-09-19 11:08:26.105776+00 f t Valentín CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8919 +7381 2025-09-19 11:13:17.082329+00 2025-09-19 11:13:17.08234+00 f t Bris CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8920 +7382 2025-09-19 11:56:06.086362+00 2025-09-19 11:56:06.086376+00 f t Lola DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8921 +7383 2025-09-19 12:03:52.637149+00 2025-09-19 12:03:52.637162+00 f t Pucho DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8922 +7384 2025-09-19 13:23:50.049364+00 2025-09-19 13:23:50.049373+00 f t Olympea DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8923 +7385 2025-09-19 14:15:18.380404+00 2025-09-19 14:15:18.380417+00 f t Corita CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8924 +7386 2025-09-19 14:17:20.210484+00 2025-09-19 14:17:20.210492+00 f t Toby DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8925 +7387 2025-09-19 14:20:12.127379+00 2025-09-19 14:20:12.127394+00 f t Teo DOG \N 8.80 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8926 +7388 2025-09-19 14:20:34.040988+00 2025-09-19 14:20:34.041001+00 f t Corita CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8927 +7390 2025-09-19 14:50:58.021368+00 2025-09-19 14:50:58.021377+00 f t Rhaegar CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8930 +7391 2025-09-19 15:13:46.485036+00 2025-09-19 15:13:46.485048+00 f t pocho DOG \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8932 +7392 2025-09-19 15:25:46.687553+00 2025-09-19 15:25:46.687565+00 f t Mila DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8933 +7389 2025-09-19 14:42:36.048113+00 2025-09-19 14:42:36.048121+00 f t Joaqui DOG 6 24.00 0.00 f \N \N \N \N MALE \N f \N 1583 8929 +7393 2025-09-19 15:37:12.096363+00 2025-09-19 15:37:12.096377+00 f t Miel CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8934 +7394 2025-09-19 15:56:25.501079+00 2025-09-19 15:56:25.501089+00 f t Suri CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8935 +7395 2025-09-19 16:18:38.023226+00 2025-09-19 16:18:38.023235+00 f t Homero DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8937 +7396 2025-09-19 16:32:07.634288+00 2025-09-19 16:32:07.634297+00 f t Simba DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8938 +7397 2025-09-19 16:45:53.729281+00 2025-09-19 16:45:53.729294+00 f t Milky DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8940 +7398 2025-09-19 16:57:11.142027+00 2025-09-19 16:57:11.14204+00 f t Felipe DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8941 +7399 2025-09-19 16:59:50.454934+00 2025-09-19 16:59:50.454944+00 f t Matilda DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8942 +7400 2025-09-19 17:36:41.676316+00 2025-09-19 17:36:41.676325+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8946 +7401 2025-09-19 17:40:11.46582+00 2025-09-19 17:40:11.465835+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8946 +7402 2025-09-19 17:44:23.434505+00 2025-09-19 17:44:23.434513+00 f t Alma DOG \N 0.00 0.00 f \N \N \N \N FEMALE \N f \N 1583 8947 +7404 2025-09-19 17:44:36.141902+00 2025-09-19 17:44:36.141907+00 f t Pancho DOG \N 0.00 0.00 f \N \N \N \N MALE \N f \N 1583 8947 +7405 2025-09-19 17:44:45.427395+00 2025-09-19 17:44:45.427402+00 f t Guanchi CAT \N 0.00 0.00 f \N \N \N \N MALE \N f \N 1583 8947 +7403 2025-09-19 17:44:36.140995+00 2025-09-19 17:44:36.141002+00 f t India CAT 0 0.00 0.00 f \N \N \N \N FEMALE \N f \N 1583 8947 +7406 2025-09-19 17:47:04.024895+00 2025-09-19 17:47:04.024905+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8948 +7407 2025-09-19 17:51:35.995345+00 2025-09-19 17:51:35.995357+00 f t TITA DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8949 +7408 2025-09-19 18:00:00.343105+00 2025-09-19 18:00:00.343117+00 f t Juana DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8950 +7409 2025-09-19 18:00:50.745131+00 2025-09-19 18:00:50.745141+00 f t Joaquin CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8951 +7410 2025-09-19 18:33:56.842011+00 2025-09-19 18:33:56.842022+00 f t Miel CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8952 +7411 2025-09-19 18:40:01.83872+00 2025-09-19 18:40:01.838736+00 f t Miel CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8953 +7412 2025-09-19 19:14:57.245978+00 2025-09-19 19:14:57.245987+00 f t Miel CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8956 +7413 2025-09-19 19:54:17.043547+00 2025-09-19 19:54:17.043556+00 f t Patria CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8957 +7414 2025-09-19 19:55:28.564317+00 2025-09-19 19:55:28.564325+00 f t Isis CAT 4 6.00 0.00 t \N \N \N \N FEMALE post cx por eventracion umbilical \N f 38 1208 8958 +7415 2025-09-19 20:09:33.735506+00 2025-09-19 20:09:33.735519+00 f t Haru CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8960 +7416 2025-09-19 20:25:33.903462+00 2025-09-19 20:25:33.903471+00 f t Michi CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8961 +7417 2025-09-19 20:56:02.566568+00 2025-09-19 20:56:02.566582+00 f t teo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8964 +7418 2025-09-19 20:56:19.873141+00 2025-09-19 20:56:19.873149+00 f t Pampa DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8965 +7419 2025-09-19 21:42:28.865173+00 2025-09-19 21:42:28.865182+00 f t Tobias DOG \N 24.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8967 +7420 2025-09-19 21:42:55.235454+00 2025-09-19 21:42:55.235468+00 f t Ámbar DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8968 +7421 2025-09-19 22:08:07.76843+00 2025-09-19 22:08:07.768446+00 f t Aldo CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8969 +7422 2025-09-19 22:08:54.347952+00 2025-09-19 22:08:54.347962+00 f t Aldo CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8969 +7423 2025-09-19 22:14:52.235236+00 2025-09-19 22:14:52.235247+00 f t Juana CAT \N 3.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8970 +7424 2025-09-19 22:15:09.146013+00 2025-09-19 22:15:09.146025+00 f t Salem CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8971 +7425 2025-09-19 22:27:42.048058+00 2025-09-19 22:27:42.048071+00 f t Omero DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8972 +7426 2025-09-19 22:45:18.173896+00 2025-09-19 22:45:18.173907+00 f t Honey DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8973 +7427 2025-09-19 22:52:39.451407+00 2025-09-19 22:52:39.451415+00 f t Blas DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8975 +7428 2025-09-19 23:08:38.895819+00 2025-09-19 23:08:38.895829+00 f t Milo DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8976 +7429 2025-09-19 23:14:15.769492+00 2025-09-19 23:14:15.769501+00 f t Milo DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8977 +7430 2025-09-19 23:34:14.37589+00 2025-09-19 23:34:14.375899+00 f t Juana DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8978 +7431 2025-09-19 23:36:57.665782+00 2025-09-19 23:36:57.665794+00 f t Elvis CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8979 +7432 2025-09-19 23:46:00.776516+00 2025-09-19 23:46:00.776526+00 f t Juana DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8980 +7433 2025-09-20 00:02:02.023666+00 2025-09-20 00:02:02.023681+00 f t Viggo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8981 +7434 2025-09-20 00:18:52.307191+00 2025-09-20 00:18:52.307202+00 f t Dennis CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8983 +7435 2025-09-20 01:47:11.936818+00 2025-09-20 01:47:11.936827+00 f t Cambá DOG \N 43.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8985 +7436 2025-09-20 03:07:32.783456+00 2025-09-20 03:07:32.783469+00 f t Lio DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8986 +7437 2025-09-20 04:27:07.84945+00 2025-09-20 04:27:07.849459+00 f t Mina DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8989 +7438 2025-09-20 04:45:55.101725+00 2025-09-20 04:45:55.101738+00 f t Dynamo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8990 +7439 2025-09-20 10:19:35.021596+00 2025-09-20 10:19:35.021606+00 f t Chizzo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8991 +7440 2025-09-20 10:23:58.314537+00 2025-09-20 10:23:58.314552+00 f t Chizzo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8992 +7441 2025-09-20 10:30:40.604308+00 2025-09-20 10:30:40.604318+00 f t Chompiras CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8993 +7442 2025-09-20 11:05:13.880593+00 2025-09-20 11:05:13.880604+00 f t Morena DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8994 +7443 2025-09-20 11:57:32.663692+00 2025-09-20 11:57:32.663702+00 f t Molly DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8995 +7444 2025-09-20 12:19:35.825583+00 2025-09-20 12:19:35.825596+00 f t Galletita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 8996 +7445 2025-09-20 13:07:38.026423+00 2025-09-20 13:07:38.026434+00 f t Doris DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 8997 +7446 2025-09-20 13:25:45.457504+00 2025-09-20 13:25:45.457514+00 f t Indio DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 8998 +7447 2025-09-20 13:54:37.289521+00 2025-09-20 13:54:37.289533+00 f t Oliver DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9000 +7448 2025-09-20 14:49:00.337547+00 2025-09-20 14:49:00.337556+00 f t Wonie CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9002 +7449 2025-09-20 15:19:35.66564+00 2025-09-20 15:19:35.665652+00 f t Tony CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9005 +7450 2025-09-20 15:29:41.745972+00 2025-09-20 15:29:41.745986+00 f t Lola DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9006 +7451 2025-09-20 15:55:09.678254+00 2025-09-20 15:55:09.678265+00 f t Filippa DOG \N 0.00 0.00 f \N \N \N \N FEMALE \N f \N 1208 5733 +7452 2025-09-20 15:55:14.350209+00 2025-09-20 15:55:14.350217+00 f t Blacky DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9007 +7453 2025-09-20 15:55:26.654426+00 2025-09-20 15:55:26.654435+00 f t Tomi DOG \N 0.00 0.00 f \N \N \N \N MALE \N f \N 1208 5733 +7454 2025-09-20 16:30:21.615233+00 2025-09-20 16:30:21.615243+00 f t Mango CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9008 +7455 2025-09-20 16:32:40.034777+00 2025-09-20 16:32:40.034786+00 f t Africa DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9009 +7456 2025-09-20 18:01:40.121278+00 2025-09-20 18:01:40.121293+00 f t Oreo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9010 +7457 2025-09-20 18:34:15.643181+00 2025-09-20 18:34:15.643191+00 f t Gala DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9013 +7458 2025-09-20 18:51:01.580385+00 2025-09-20 18:51:01.580396+00 f t Lucky CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9014 +7459 2025-09-20 19:48:01.079405+00 2025-09-20 19:48:01.079412+00 f t Eva CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9018 +7460 2025-09-20 20:25:12.638629+00 2025-09-20 20:25:12.63864+00 f t Sasuke DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9019 +7461 2025-09-20 22:05:05.36258+00 2025-09-20 22:05:05.362594+00 f t Ringo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9021 +7462 2025-09-20 22:20:53.766001+00 2025-09-20 22:20:53.766008+00 f t Leif CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9023 +7463 2025-09-20 22:34:16.130772+00 2025-09-20 22:34:16.130782+00 f t Olivia DOG \N 33.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9024 +7464 2025-09-20 22:49:33.654603+00 2025-09-20 22:49:33.654613+00 f t Luna CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9025 +7465 2025-09-20 23:30:30.315919+00 2025-09-20 23:30:30.315931+00 f t lili CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9026 +7466 2025-09-21 00:27:06.870097+00 2025-09-21 00:27:06.87011+00 f t Goofy CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9027 +7467 2025-09-21 00:36:22.839474+00 2025-09-21 00:36:22.839483+00 f t Goofy CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9028 +7468 2025-09-21 01:12:24.537054+00 2025-09-21 01:12:24.537062+00 f t tikkki CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9029 +7469 2025-09-21 01:15:19.610307+00 2025-09-21 01:15:19.610316+00 f t Once CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9031 +7470 2025-09-21 03:25:23.511414+00 2025-09-21 03:25:23.511423+00 f t Mash CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9033 +7471 2025-09-21 07:04:26.451794+00 2025-09-21 07:04:26.451803+00 f t Sam CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9035 +7472 2025-09-21 07:25:51.292399+00 2025-09-21 07:25:51.292408+00 f t PETIT DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9036 +7473 2025-09-21 07:41:30.812504+00 2025-09-21 07:41:30.812514+00 f t Goofy CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9037 +7474 2025-09-21 07:43:07.366267+00 2025-09-21 07:43:07.366276+00 f t Loli CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9037 +7475 2025-09-21 08:52:51.217995+00 2025-09-21 08:52:51.218007+00 f t Honda CAT \N 800.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9038 +7476 2025-09-21 11:26:08.197391+00 2025-09-21 11:26:08.197401+00 f t Nala DOG \N 5.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9039 +7477 2025-09-21 11:51:19.284522+00 2025-09-21 11:51:19.284535+00 f t Rocco CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9040 +7478 2025-09-21 12:03:29.154673+00 2025-09-21 12:03:29.154684+00 f t Lucky CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9041 +7479 2025-09-21 12:41:09.250588+00 2025-09-21 12:41:09.250597+00 f t Fiaca CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9042 +7480 2025-09-21 12:56:54.512132+00 2025-09-21 12:56:54.512142+00 f t Baco DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9043 +7481 2025-09-21 14:26:22.287828+00 2025-09-21 14:26:22.287837+00 f t Pato DOG \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9044 +7482 2025-09-21 15:21:23.281975+00 2025-09-21 15:21:23.281984+00 f t Doris DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9046 +7483 2025-09-21 15:25:14.548263+00 2025-09-21 15:25:14.548275+00 f t Nala DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9047 +7484 2025-09-21 15:35:51.481744+00 2025-09-21 15:35:51.481753+00 f t Luna DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9048 +7485 2025-09-21 15:36:26.08725+00 2025-09-21 15:36:26.087261+00 f t Nala DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9049 +7486 2025-09-21 15:50:38.749007+00 2025-09-21 15:50:38.749019+00 f t pipi DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9050 +7487 2025-09-21 15:59:55.841998+00 2025-09-21 15:59:55.842007+00 f t Gimena DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9051 +7488 2025-09-21 16:04:16.371871+00 2025-09-21 16:04:16.37188+00 f t pipi CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9050 +7489 2025-09-21 16:04:36.221742+00 2025-09-21 16:04:36.221753+00 f t Coco CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9052 +7490 2025-09-21 16:04:55.373204+00 2025-09-21 16:04:55.373213+00 f t gimena DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9053 +7491 2025-09-21 16:05:11.634673+00 2025-09-21 16:05:11.634687+00 f t Nala DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9054 +7492 2025-09-21 16:07:23.588178+00 2025-09-21 16:07:23.588187+00 f t Lana DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9055 +7493 2025-09-21 16:18:41.762158+00 2025-09-21 16:18:41.762167+00 f t FELICIANO SALVADORE CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9056 +7494 2025-09-21 16:46:28.250849+00 2025-09-21 16:46:28.250858+00 f t Teo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9057 +7495 2025-09-21 18:25:29.356561+00 2025-09-21 18:25:29.356569+00 f t Kambo DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9059 +7496 2025-09-21 19:18:59.338472+00 2025-09-21 19:18:59.338482+00 f t Nilo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9060 +7497 2025-09-21 19:21:03.711934+00 2025-09-21 19:21:03.711943+00 f t Balcky CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9062 +7498 2025-09-21 19:22:15.262198+00 2025-09-21 19:22:15.262209+00 f t Blacky CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9063 +7499 2025-09-21 19:23:29.332706+00 2025-09-21 19:23:29.332716+00 f t Sasuke DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9064 +7500 2025-09-21 19:30:02.192715+00 2025-09-21 19:30:02.19273+00 f t Milo DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9065 +7501 2025-09-21 19:30:26.306815+00 2025-09-21 19:30:26.306827+00 f t Milo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9065 +7502 2025-09-21 19:36:33.606746+00 2025-09-21 19:36:33.606755+00 f t Zeus CAT \N 6.30 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9067 +7503 2025-09-21 19:40:15.073382+00 2025-09-21 19:40:15.073397+00 f t Conor DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9068 +11807 2025-11-24 12:08:00.352361+00 2025-11-24 12:08:00.352371+00 f t Kobu CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14322 +7505 2025-09-21 19:59:57.553964+00 2025-09-21 19:59:57.553973+00 f t Pete CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9069 +7506 2025-09-21 20:14:39.882661+00 2025-09-21 20:14:39.882671+00 f t Eva CAT \N 3.40 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9070 +8514 2025-10-08 04:04:02.716114+00 2025-10-08 04:04:02.716125+00 f t luna CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10256 +7508 2025-09-21 21:06:01.128683+00 2025-09-21 21:06:01.128696+00 f t Momo DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9072 +7509 2025-09-21 21:30:05.800927+00 2025-09-21 21:30:05.800942+00 f t Felicia DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9073 +7510 2025-09-21 21:37:29.433855+00 2025-09-21 21:37:29.433866+00 f t William CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9074 +7511 2025-09-21 21:58:17.439746+00 2025-09-21 21:58:17.439756+00 f t SAGA DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9075 +7512 2025-09-21 22:28:48.513942+00 2025-09-21 22:28:48.513951+00 f t Ninna CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9076 +7513 2025-09-21 22:31:23.109683+00 2025-09-21 22:31:23.109694+00 f t Fatiga DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9077 +7514 2025-09-21 23:47:27.795312+00 2025-09-21 23:47:27.795323+00 f t Snow DOG \N 4.80 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9078 +7515 2025-09-21 23:53:22.189427+00 2025-09-21 23:53:22.189438+00 f t Kali CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9079 +7516 2025-09-21 23:55:40.826974+00 2025-09-21 23:55:40.826988+00 f t Kali CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9080 +7517 2025-09-22 00:00:50.76497+00 2025-09-22 00:00:50.764979+00 f t Pope DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9081 +7518 2025-09-22 00:26:14.45463+00 2025-09-22 00:26:14.454639+00 f t benson DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9082 +7519 2025-09-22 01:14:55.885396+00 2025-09-22 01:14:55.885405+00 f t Eddie DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9084 +7520 2025-09-22 02:03:00.98228+00 2025-09-22 02:03:00.982289+00 f t Cholita DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9087 +7521 2025-09-22 03:01:40.568269+00 2025-09-22 03:01:40.568277+00 f t Coco CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9088 +7522 2025-09-22 03:13:58.241022+00 2025-09-22 03:13:58.241032+00 f t Morocho CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9089 +7523 2025-09-22 07:59:11.663102+00 2025-09-22 07:59:11.663111+00 f t Thor DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9091 +7524 2025-09-22 08:01:53.216308+00 2025-09-22 08:01:53.216318+00 f t Thor DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9091 +7525 2025-09-22 08:33:24.444028+00 2025-09-22 08:33:24.444037+00 f t Thor DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9092 +7526 2025-09-22 09:14:17.881779+00 2025-09-22 09:14:17.881788+00 f t Tato DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9093 +7527 2025-09-22 09:43:15.917916+00 2025-09-22 09:43:15.917925+00 f t Apolonia DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9094 +7528 2025-09-22 09:53:45.368287+00 2025-09-22 09:53:45.368295+00 f t VICENTE DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9095 +7529 2025-09-22 09:57:36.35316+00 2025-09-22 09:57:36.35317+00 f t VICENTE DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9096 +7530 2025-09-22 11:21:51.912644+00 2025-09-22 11:21:51.912657+00 f t Gonzalo DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9098 +7531 2025-09-22 11:50:36.188758+00 2025-09-22 11:50:36.188768+00 f t Casimira DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9099 +7532 2025-09-22 11:55:44.139691+00 2025-09-22 11:55:44.139702+00 f t jhee DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9100 +7533 2025-09-22 11:59:17.378889+00 2025-09-22 11:59:17.378898+00 f t gefs DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9100 +7534 2025-09-22 12:22:35.542814+00 2025-09-22 12:22:35.542823+00 f t Lupe DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9101 +7535 2025-09-22 12:23:12.179867+00 2025-09-22 12:23:12.179879+00 f t Lupe CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9101 +7536 2025-09-22 12:47:37.475305+00 2025-09-22 12:47:37.475318+00 f t Pacho DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9102 +7537 2025-09-22 12:50:42.104438+00 2025-09-22 12:50:42.104453+00 f t sasa DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9103 +7538 2025-09-22 12:51:45.533009+00 2025-09-22 12:51:45.533019+00 f t sasa CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9103 +7539 2025-09-22 13:12:09.483759+00 2025-09-22 13:12:09.483769+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9106 +7540 2025-09-22 13:49:11.338233+00 2025-09-22 13:49:11.338244+00 f t Angelique Dag CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9108 +7541 2025-09-22 13:52:05.260631+00 2025-09-22 13:52:05.260641+00 f t Catalina DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9109 +7542 2025-09-22 14:19:54.967907+00 2025-09-22 14:19:54.967916+00 f t Turu DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9111 +7543 2025-09-22 14:21:00.390008+00 2025-09-22 14:21:00.390017+00 f t Tit DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9111 +7544 2025-09-22 14:28:35.651654+00 2025-09-22 14:28:35.651663+00 f t Dalton DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9112 +7545 2025-09-22 14:32:51.830229+00 2025-09-22 14:32:51.830239+00 f t latifah DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9113 +7546 2025-09-22 14:34:17.330943+00 2025-09-22 14:34:17.330955+00 f t mille DOG \N 38.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9113 +7547 2025-09-22 14:51:08.67386+00 2025-09-22 14:51:08.673872+00 f t Nino DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9114 +7548 2025-09-22 14:52:58.499786+00 2025-09-22 14:52:58.499797+00 f t Borrego DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9115 +7549 2025-09-22 14:55:19.656512+00 2025-09-22 14:55:19.656522+00 f t Borrego DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9116 +7550 2025-09-22 15:20:14.323577+00 2025-09-22 15:20:14.323586+00 f t Woody DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9117 +7551 2025-09-22 15:23:36.315337+00 2025-09-22 15:23:36.315348+00 f t Dalton DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9119 +7552 2025-09-22 15:26:55.872008+00 2025-09-22 15:26:55.872017+00 f t Casimira DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9120 +7553 2025-09-22 15:57:15.231827+00 2025-09-22 15:57:15.231837+00 f t Humito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9121 +7554 2025-09-22 16:05:04.22158+00 2025-09-22 16:05:04.221596+00 f t Tinto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9123 +7555 2025-09-22 16:32:00.40241+00 2025-09-22 16:32:00.40242+00 f t Fidel DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9124 +7556 2025-09-22 16:38:23.673245+00 2025-09-22 16:38:23.673255+00 f t Kiara DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9125 +7557 2025-09-22 16:39:13.861203+00 2025-09-22 16:39:13.861213+00 f t Nilo CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9126 +7558 2025-09-22 16:42:40.111941+00 2025-09-22 16:42:40.111953+00 f t Milo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9127 +7559 2025-09-22 16:54:32.46114+00 2025-09-22 16:54:32.461154+00 f t Niño CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9128 +7560 2025-09-22 16:56:52.626644+00 2025-09-22 16:56:52.626657+00 f t nino DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9129 +7561 2025-09-22 17:07:48.861964+00 2025-09-22 17:07:48.861973+00 f t Kiara DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9131 +7562 2025-09-22 18:18:45.496047+00 2025-09-22 18:18:45.496059+00 f t Pomelo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9132 +7563 2025-09-22 18:50:47.032448+00 2025-09-22 18:50:47.032459+00 f t Lola CAT \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9134 +7564 2025-09-22 18:54:58.582582+00 2025-09-22 18:54:58.582589+00 f t Indio DOG 10 28.00 0.00 t \N \N \N \N MALE \N f 5 1583 2484 +7565 2025-09-22 19:33:04.238648+00 2025-09-22 19:33:04.238656+00 f t KITITO CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9135 +8515 2025-10-08 04:09:57.012383+00 2025-10-08 04:09:57.012392+00 f t Tita CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10257 +7567 2025-09-22 19:52:53.688746+00 2025-09-22 19:52:53.688756+00 f t Toto DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9138 +7568 2025-09-22 19:54:05.766672+00 2025-09-22 19:54:05.76668+00 f t Marina CAT 7 4.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9137 +7569 2025-09-22 20:52:07.597742+00 2025-09-22 20:52:07.597753+00 f t Tianna DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9139 +7570 2025-09-22 20:59:36.598912+00 2025-09-22 20:59:36.598921+00 f t Misi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9140 +7571 2025-09-22 21:15:50.362691+00 2025-09-22 21:15:50.362699+00 f t a DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9141 +7572 2025-09-22 21:22:03.618973+00 2025-09-22 21:22:03.618983+00 f t Ringo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9143 +7573 2025-09-22 21:58:09.650247+00 2025-09-22 21:58:09.650256+00 f t Morita DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9145 +7574 2025-09-22 22:07:10.315824+00 2025-09-22 22:07:10.315842+00 f t Milagros DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9146 +7575 2025-09-22 22:14:40.65012+00 2025-09-22 22:14:40.65013+00 f t Nacho DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9147 +7576 2025-09-22 22:51:21.912118+00 2025-09-22 22:51:21.912133+00 f t RODO DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9149 +7577 2025-09-22 22:53:54.613092+00 2025-09-22 22:53:54.613104+00 f t RODO CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9149 +7578 2025-09-22 23:23:37.883878+00 2025-09-22 23:23:37.883892+00 f t Polo DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9150 +7579 2025-09-22 23:24:52.284853+00 2025-09-22 23:24:52.284864+00 f t kali DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9150 +7580 2025-09-22 23:25:21.339094+00 2025-09-22 23:25:21.339106+00 f t Quentin CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9150 +7581 2025-09-22 23:25:37.452905+00 2025-09-22 23:25:37.452915+00 f t wakko CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9150 +7582 2025-09-22 23:35:39.709069+00 2025-09-22 23:35:39.70908+00 f t Gilmour CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9152 +7583 2025-09-22 23:35:50.99307+00 2025-09-22 23:35:50.993078+00 f t Pomelo CAT \N 5.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9151 +7584 2025-09-22 23:38:58.575203+00 2025-09-22 23:38:58.575214+00 f t Gilmour DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9155 +7585 2025-09-22 23:39:15.479497+00 2025-09-22 23:39:15.479506+00 f t Gilmour CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9155 +7586 2025-09-22 23:39:45.909725+00 2025-09-22 23:39:45.909735+00 f t Eva CAT \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9153 +7587 2025-09-23 00:20:25.961933+00 2025-09-23 00:20:25.961943+00 f t Polo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9157 +7588 2025-09-23 00:20:49.834568+00 2025-09-23 00:20:49.834576+00 f t kali DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9157 +7589 2025-09-23 00:21:20.351222+00 2025-09-23 00:21:20.351231+00 f t wakko CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9157 +7590 2025-09-23 00:21:47.515576+00 2025-09-23 00:21:47.515586+00 f t quentin CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9157 +7591 2025-09-23 00:27:11.106895+00 2025-09-23 00:27:11.106904+00 f t Milo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9158 +7592 2025-09-23 00:29:50.494373+00 2025-09-23 00:29:50.494382+00 f t Manolo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9159 +7593 2025-09-23 01:05:25.095862+00 2025-09-23 01:05:25.095875+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9161 +7594 2025-09-23 01:16:39.309872+00 2025-09-23 01:16:39.309882+00 f t Sami DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9162 +7595 2025-09-23 01:50:11.535211+00 2025-09-23 01:50:11.535225+00 f t Nino DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9163 +7596 2025-09-23 04:02:04.520851+00 2025-09-23 04:02:04.52086+00 f t Reina DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9164 +7597 2025-09-23 05:47:27.985036+00 2025-09-23 05:47:27.985049+00 f t Papita CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9165 +7598 2025-09-23 06:45:23.968021+00 2025-09-23 06:45:23.968029+00 f t Chule DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9166 +7599 2025-09-23 10:17:11.879254+00 2025-09-23 10:17:11.879263+00 f t Zarité CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9168 +7600 2025-09-23 10:29:41.287552+00 2025-09-23 10:29:41.287561+00 f t Dona DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9169 +7601 2025-09-23 11:11:32.191871+00 2025-09-23 11:11:32.191882+00 f t Gata CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9170 +7602 2025-09-23 11:17:52.803733+00 2025-09-23 11:17:52.803742+00 f t Ciro CAT \N 3.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9172 +7603 2025-09-23 11:20:28.55994+00 2025-09-23 11:20:28.559949+00 f t Canela DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9173 +7604 2025-09-23 11:46:40.375222+00 2025-09-23 11:46:40.375232+00 f t ALMA DOG \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9175 +7605 2025-09-23 12:04:19.617703+00 2025-09-23 12:04:19.617715+00 f t Kimey CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9176 +7606 2025-09-23 12:07:03.163663+00 2025-09-23 12:07:03.163675+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9177 +7607 2025-09-23 12:34:41.862905+00 2025-09-23 12:34:41.862914+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9179 +7608 2025-09-23 13:15:10.359869+00 2025-09-23 13:15:10.359878+00 f t Pocho DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9181 +7609 2025-09-23 13:58:44.900384+00 2025-09-23 13:58:44.900394+00 f t Luca DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9182 +7610 2025-09-23 14:53:07.060137+00 2025-09-23 14:53:07.060148+00 f t Zeus CAT \N 6.30 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9183 +7611 2025-09-23 14:53:54.248693+00 2025-09-23 14:53:54.248702+00 f t Cuki DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9184 +7612 2025-09-23 16:17:40.441403+00 2025-09-23 16:17:40.441414+00 f t Mollo DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9186 +7613 2025-09-23 16:19:35.468725+00 2025-09-23 16:19:35.468737+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9187 +7614 2025-09-23 16:19:43.850716+00 2025-09-23 16:19:43.850724+00 f t Cleo CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 6788 +7615 2025-09-23 17:10:35.932499+00 2025-09-23 17:10:35.932513+00 f t Nito CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9189 +7616 2025-09-23 17:26:39.568726+00 2025-09-23 17:26:39.568735+00 f t Rocky DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9190 +7617 2025-09-23 18:19:17.209019+00 2025-09-23 18:19:17.209034+00 f t Rocky DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9191 +7618 2025-09-23 18:22:33.849855+00 2025-09-23 18:22:33.849864+00 f t India DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9192 +7619 2025-09-23 18:39:43.914034+00 2025-09-23 18:39:43.914046+00 f t CASA DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9193 +7620 2025-09-23 18:45:42.376742+00 2025-09-23 18:45:42.376751+00 f t Miguel CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9195 +7621 2025-09-23 18:45:48.094098+00 2025-09-23 18:45:48.094113+00 f t Linda CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9194 +7622 2025-09-23 18:53:04.09906+00 2025-09-23 18:53:04.099069+00 f t Lia CAT \N 3.40 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9196 +7623 2025-09-23 19:01:53.616549+00 2025-09-23 19:01:53.616557+00 f t Kicky CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9197 +7624 2025-09-23 19:16:57.172627+00 2025-09-23 19:16:57.172638+00 f t Mucho CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9198 +7625 2025-09-23 19:36:13.32696+00 2025-09-23 19:36:13.326972+00 f t Toto DOG \N 60.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9199 +8516 2025-10-08 08:46:34.269993+00 2025-10-08 08:46:34.270001+00 f t Linda DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10258 +7626 2025-09-23 19:50:10.203809+00 2025-09-23 19:50:10.203824+00 f t Pluton CAT 0 0.00 0.00 t \N \N \N \N MALE \N f \N 1208 9071 +7627 2025-09-23 20:25:28.403527+00 2025-09-23 20:25:28.403538+00 f t Paul CAT \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9200 +7628 2025-09-23 20:36:35.054897+00 2025-09-23 20:36:35.054905+00 f t Gala DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9201 +7507 2025-09-21 20:43:27.600012+00 2025-09-21 20:43:27.600022+00 f t Gaia CAT 10 6.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9071 +7629 2025-09-23 21:44:59.197357+00 2025-09-23 21:44:59.197365+00 f t Uma DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9204 +7630 2025-09-23 22:33:33.58309+00 2025-09-23 22:33:33.583099+00 f t Astrid CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9207 +7631 2025-09-23 22:38:09.451874+00 2025-09-23 22:38:09.451882+00 f t Lata DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9208 +7632 2025-09-23 22:53:16.205467+00 2025-09-23 22:53:16.205476+00 f t Ramón DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9209 +7633 2025-09-23 22:53:33.4559+00 2025-09-23 22:53:33.455912+00 f t Ramón CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9209 +7635 2025-09-23 23:00:59.423078+00 2025-09-23 23:00:59.423093+00 f t Lulu CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9211 +7636 2025-09-23 23:06:25.621819+00 2025-09-23 23:06:25.62183+00 f t Cocó CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9212 +7637 2025-09-23 23:08:48.988988+00 2025-09-23 23:08:48.988998+00 f t Lulu CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9213 +7638 2025-09-23 23:21:44.282024+00 2025-09-23 23:21:44.282034+00 f t Ali DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9215 +7639 2025-09-23 23:27:00.045981+00 2025-09-23 23:27:00.045993+00 f t Lisa CAT \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9216 +7640 2025-09-23 23:41:41.462121+00 2025-09-23 23:41:41.462133+00 f t Poly DOG \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9217 +7641 2025-09-23 23:49:24.307191+00 2025-09-23 23:49:24.307199+00 f t Willow CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9218 +7642 2025-09-24 00:12:36.948366+00 2025-09-24 00:12:36.948374+00 f t Kira CAT \N 5.00 0.00 t \N \N \N \N FEMALE \N f \N 113 9219 +7644 2025-09-24 00:48:16.6509+00 2025-09-24 00:48:16.65091+00 f t Roco DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9221 +7634 2025-09-23 22:54:16.614839+00 2025-09-23 22:54:16.614848+00 f t Ramon CAT 0 5.00 0.00 f \N \N \N \N MALE \N f \N 113 9210 +5175 2025-08-12 13:24:30.91534+00 2025-08-12 13:24:30.915351+00 f t ZEUS CAT 0 6.30 0.00 f \N 2025-08-12 \N \N MALE \N f \N 113 6358 +7645 2025-09-24 02:12:51.127749+00 2025-09-24 02:12:51.127759+00 f t Grecia DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9223 +7646 2025-09-24 02:54:34.139898+00 2025-09-24 02:54:34.139906+00 f t Chino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9225 +7647 2025-09-24 02:55:40.047567+00 2025-09-24 02:55:40.047578+00 f t Chuky CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9225 +7648 2025-09-24 02:56:18.53571+00 2025-09-24 02:56:18.535719+00 f t Zeus CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9225 +7649 2025-09-24 03:01:24.716333+00 2025-09-24 03:01:24.716346+00 f t Apolonia DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9226 +7650 2025-09-24 04:03:00.764637+00 2025-09-24 04:03:00.764646+00 f t Mana DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9227 +7651 2025-09-24 04:31:37.314326+00 2025-09-24 04:31:37.314338+00 f t Leon DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9228 +7652 2025-09-24 04:48:17.207553+00 2025-09-24 04:48:17.207562+00 f t Yolandi DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9229 +7653 2025-09-24 05:02:02.777369+00 2025-09-24 05:02:02.777381+00 f t Filo CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9230 +7654 2025-09-24 11:12:32.320727+00 2025-09-24 11:12:32.320736+00 f t Grecia DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9232 +7655 2025-09-24 11:21:03.305965+00 2025-09-24 11:21:03.305974+00 f t Tomy DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9233 +7656 2025-09-24 11:38:31.770234+00 2025-09-24 11:38:31.770244+00 f t Santi DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9234 +7657 2025-09-24 11:40:50.737135+00 2025-09-24 11:40:50.737145+00 f t Santu DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9235 +7658 2025-09-24 12:00:26.12303+00 2025-09-24 12:00:26.123042+00 f t Príncipe DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9236 +7659 2025-09-24 12:29:47.645728+00 2025-09-24 12:29:47.645737+00 f t TEST DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9238 +7660 2025-09-24 12:34:09.415477+00 2025-09-24 12:34:09.415486+00 f t Dixy CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9239 +7661 2025-09-24 13:22:14.977548+00 2025-09-24 13:22:14.977558+00 f t Apolo DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9241 +7662 2025-09-24 13:22:42.352561+00 2025-09-24 13:22:42.35257+00 f t Castración DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9242 +7663 2025-09-24 13:23:48.297523+00 2025-09-24 13:23:48.297531+00 f t Castración DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9243 +7664 2025-09-24 14:14:04.852591+00 2025-09-24 14:14:04.852601+00 f t Ares CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9244 +7665 2025-09-24 14:56:57.062532+00 2025-09-24 14:56:57.06254+00 f t Chimuelo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9245 +7666 2025-09-24 15:07:25.842705+00 2025-09-24 15:07:25.842713+00 f t Lorenzo DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9246 +7667 2025-09-24 15:07:41.463359+00 2025-09-24 15:07:41.463369+00 f t Tai CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9247 +7668 2025-09-24 15:58:30.532173+00 2025-09-24 15:58:30.532182+00 f t Mila DOG \N 2.70 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9248 +7669 2025-09-24 16:07:09.245296+00 2025-09-24 16:07:09.245305+00 f t pini DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9249 +7670 2025-09-24 16:08:30.712496+00 2025-09-24 16:08:30.712505+00 f t ROMEO DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9250 +7671 2025-09-24 16:36:48.901243+00 2025-09-24 16:36:48.901254+00 f t Nina DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9252 +7672 2025-09-24 16:51:46.897271+00 2025-09-24 16:51:46.89728+00 f t Simón DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9253 +7674 2025-09-24 17:27:57.776524+00 2025-09-24 17:27:57.776533+00 f t Castración DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9255 +7673 2025-09-24 17:20:43.442576+00 2025-09-24 17:20:43.442584+00 f t Elvira DOG 9 3.50 0.00 f \N \N \N \N FEMALE \N f \N 1583 9254 +7675 2025-09-24 17:31:58.116828+00 2025-09-24 17:31:58.116837+00 f t Koki DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9256 +7676 2025-09-24 17:37:49.390825+00 2025-09-24 17:37:49.390835+00 f t Castración DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9258 +7677 2025-09-24 17:53:39.986335+00 2025-09-24 17:53:39.986344+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9259 +7678 2025-09-24 18:03:09.573046+00 2025-09-24 18:03:09.573059+00 f t Castración CAT \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9260 +7679 2025-09-24 18:03:27.009138+00 2025-09-24 18:03:27.009147+00 f t Castración DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9261 +7680 2025-09-24 18:08:47.74186+00 2025-09-24 18:08:47.741871+00 f t Apolo DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9262 +7681 2025-09-24 18:09:06.414568+00 2025-09-24 18:09:06.414583+00 f t Castración DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9263 +7682 2025-09-24 18:09:40.112888+00 2025-09-24 18:09:40.1129+00 f t Castración DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9264 +7683 2025-09-24 18:10:08.569064+00 2025-09-24 18:10:08.569073+00 f t AmarMascotas DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9265 +7684 2025-09-24 18:13:32.245886+00 2025-09-24 18:13:32.245895+00 f t Castración DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9266 +7685 2025-09-24 18:21:40.475981+00 2025-09-24 18:21:40.47599+00 f t HERNAN DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9267 +7686 2025-09-24 18:24:22.769231+00 2025-09-24 18:24:22.76924+00 f t TEST DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9268 +7687 2025-09-24 18:25:04.367325+00 2025-09-24 18:25:04.367342+00 f t olivia DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9269 +8517 2025-10-08 08:49:14.632053+00 2025-10-08 08:49:14.632062+00 f t Linda DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10258 +7689 2025-09-24 18:26:11.60277+00 2025-09-24 18:26:11.60278+00 f t TEST DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9272 +7690 2025-09-24 18:26:54.773968+00 2025-09-24 18:26:54.773978+00 f t TEST DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9273 +7688 2025-09-24 18:25:18.654912+00 2025-09-24 18:25:18.654925+00 f t Hanna CAT 3 4.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9270 +7691 2025-09-24 19:20:51.303618+00 2025-09-24 19:20:51.303627+00 f t Titi CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9274 +7692 2025-09-24 19:21:13.516429+00 2025-09-24 19:21:13.516442+00 f t Fi CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9274 +7693 2025-09-24 19:22:13.52296+00 2025-09-24 19:22:13.522973+00 f t Nn CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9275 +7694 2025-09-24 19:23:08.590687+00 2025-09-24 19:23:08.5907+00 f t No CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9275 +7566 2025-09-22 19:42:34.649512+00 2025-09-22 19:42:34.64952+00 f t Kippes CAT \N 3.00 0.00 t \N \N 2025-09-24 \N \N MALE \N \N f \N \N 9137 +7696 2025-09-24 19:30:26.993483+00 2025-09-24 19:30:26.993492+00 f t Napoleón DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9277 +7697 2025-09-24 19:32:21.013036+00 2025-09-24 19:32:21.013047+00 f t Berta CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9278 +7695 2025-09-24 19:26:48.920282+00 2025-09-24 19:26:48.92029+00 f t Mili DOG 20 19.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9276 +7698 2025-09-24 19:43:29.071613+00 2025-09-24 19:43:29.071626+00 f t AmarMascotas DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9280 +7699 2025-09-24 19:44:01.952117+00 2025-09-24 19:44:01.952128+00 f t Castración DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9281 +7701 2025-09-24 19:52:40.15374+00 2025-09-24 19:52:40.153749+00 f t Kratos CAT \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9283 +7700 2025-09-24 19:51:21.121474+00 2025-09-24 19:51:21.121483+00 f t Simona DOG 5 12.00 0.00 f \N \N \N \N FEMALE \N f \N 1583 9282 +7702 2025-09-24 20:30:14.540464+00 2025-09-24 20:30:14.540475+00 f t Tali CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9285 +7703 2025-09-24 20:47:41.083862+00 2025-09-24 20:47:41.083871+00 f t Simón DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9286 +7704 2025-09-24 20:52:15.554219+00 2025-09-24 20:52:15.554229+00 f t Coco CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9287 +7705 2025-09-24 21:03:08.486691+00 2025-09-24 21:03:08.4867+00 f t dulce CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9288 +7706 2025-09-24 21:10:56.006415+00 2025-09-24 21:10:56.006429+00 f t Coco CAT 5 7.00 0.00 f \N \N \N \N MALE \N f \N 1583 9290 +7707 2025-09-24 21:44:58.530214+00 2025-09-24 21:44:58.530221+00 f t Tali CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9291 +7708 2025-09-24 21:46:09.195119+00 2025-09-24 21:46:09.195128+00 f t G CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9291 +7709 2025-09-24 22:17:56.354412+00 2025-09-24 22:17:56.354422+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9292 +7710 2025-09-24 22:23:54.721102+00 2025-09-24 22:23:54.721112+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9293 +7711 2025-09-24 22:45:33.07661+00 2025-09-24 22:45:33.07662+00 f t Atenea DOG \N 27.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9296 +7712 2025-09-24 22:57:10.870575+00 2025-09-24 22:57:10.870588+00 f t pedro DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9297 +7713 2025-09-24 23:35:57.739925+00 2025-09-24 23:35:57.739936+00 f t India DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9298 +7714 2025-09-24 23:36:33.420296+00 2025-09-24 23:36:33.420308+00 f t India CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9298 +7715 2025-09-24 23:48:47.244704+00 2025-09-24 23:48:47.244713+00 f t India CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9298 +7716 2025-09-24 23:50:19.096683+00 2025-09-24 23:50:19.096692+00 f t Oreo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9299 +7717 2025-09-24 23:51:04.408928+00 2025-09-24 23:51:04.408937+00 f t India CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9298 +7718 2025-09-24 23:53:39.0817+00 2025-09-24 23:53:39.081708+00 f t Oreo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9300 +7719 2025-09-25 00:02:20.199831+00 2025-09-25 00:02:20.199843+00 f t Zoe DOG \N 100.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9301 +7720 2025-09-25 00:12:15.846233+00 2025-09-25 00:12:15.846242+00 f t Joaco DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9302 +7721 2025-09-25 01:03:11.627648+00 2025-09-25 01:03:11.627657+00 f t Apolo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9303 +7722 2025-09-25 01:23:03.19933+00 2025-09-25 01:23:03.199338+00 f t Finfi DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9305 +7723 2025-09-25 02:07:41.419925+00 2025-09-25 02:07:41.419935+00 f t Lua DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9306 +7724 2025-09-25 02:27:30.738805+00 2025-09-25 02:27:30.738814+00 f t Scully CAT \N 2.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9307 +7725 2025-09-25 03:28:33.654626+00 2025-09-25 03:28:33.654638+00 f t Osito DOG \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9308 +7726 2025-09-25 03:29:02.396125+00 2025-09-25 03:29:02.396139+00 f t Osito DOG \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9308 +7727 2025-09-25 03:30:56.098848+00 2025-09-25 03:30:56.098862+00 f t Osito DOG \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9308 +7728 2025-09-25 03:32:40.915546+00 2025-09-25 03:32:40.915555+00 f t Osito DOG \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9308 +7729 2025-09-25 03:58:14.077165+00 2025-09-25 03:58:14.077178+00 f t Daisy DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9309 +7730 2025-09-25 04:01:31.036304+00 2025-09-25 04:01:31.036313+00 f t Daisy DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9309 +7731 2025-09-25 04:03:33.849043+00 2025-09-25 04:03:33.849052+00 f t Felix CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9309 +7733 2025-09-25 04:43:24.339782+00 2025-09-25 04:43:24.339792+00 f t Pucca DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9310 +7734 2025-09-25 06:06:57.333281+00 2025-09-25 06:06:57.333294+00 f t Rocco DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9311 +7735 2025-09-25 06:38:41.963755+00 2025-09-25 06:38:41.963765+00 f t Bernabeu DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9312 +7736 2025-09-25 08:23:23.723758+00 2025-09-25 08:23:23.723767+00 f t duki DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9313 +7737 2025-09-25 08:23:44.414886+00 2025-09-25 08:23:44.414896+00 f t duki CAT \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9313 +7738 2025-09-25 09:05:08.743277+00 2025-09-25 09:05:08.743285+00 f t Luly DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9314 +7739 2025-09-25 09:23:15.921674+00 2025-09-25 09:23:15.921682+00 f t Hector CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9315 +7740 2025-09-25 09:32:15.647664+00 2025-09-25 09:32:15.647672+00 f t Hector CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9316 +7741 2025-09-25 11:43:35.708925+00 2025-09-25 11:43:35.708939+00 f t Indra CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9318 +7742 2025-09-25 11:51:15.087065+00 2025-09-25 11:51:15.087074+00 f t Gea DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9319 +7743 2025-09-25 13:15:48.440758+00 2025-09-25 13:15:48.440766+00 f t Enzo DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9324 +7744 2025-09-25 13:54:21.624616+00 2025-09-25 13:54:21.624629+00 f t Hector CAT \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9325 +7745 2025-09-25 13:54:48.854811+00 2025-09-25 13:54:48.854824+00 f t Hector CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9325 +7746 2025-09-25 14:15:49.994146+00 2025-09-25 14:15:49.994155+00 f t Tito CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9326 +7749 2025-09-25 14:16:05.999957+00 2025-09-25 14:16:05.99997+00 t t Tito CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9326 +7748 2025-09-25 14:15:56.898108+00 2025-09-25 14:15:56.898118+00 t t Tito CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9326 +7747 2025-09-25 14:15:55.454792+00 2025-09-25 14:15:55.454801+00 t t Tito CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9326 +7750 2025-09-25 14:21:59.586573+00 2025-09-25 14:21:59.586581+00 f t Panti DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9327 +7751 2025-09-25 14:23:08.309904+00 2025-09-25 14:23:08.309914+00 f t Panti CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9327 +7752 2025-09-25 14:26:05.789774+00 2025-09-25 14:26:05.789783+00 f t Panti CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9328 +7753 2025-09-25 15:13:38.1825+00 2025-09-25 15:13:38.182509+00 f t Luna DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9331 +7754 2025-09-25 15:32:23.208604+00 2025-09-25 15:32:23.208614+00 f t rita DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9332 +7755 2025-09-25 15:35:23.640738+00 2025-09-25 15:35:23.640747+00 f t Rocco CAT \N 1.60 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9334 +7756 2025-09-25 15:53:26.904739+00 2025-09-25 15:53:26.904748+00 f t Guismo CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9335 +7757 2025-09-25 15:57:26.246973+00 2025-09-25 15:57:26.246982+00 f t Toto DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9336 +7758 2025-09-25 16:01:22.22265+00 2025-09-25 16:01:22.222663+00 f t Mia DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9337 +7759 2025-09-25 16:06:08.746027+00 2025-09-25 16:06:08.746035+00 f t Pietro DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9339 +7760 2025-09-25 16:09:53.76087+00 2025-09-25 16:09:53.760879+00 f t Malbec CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9340 +7761 2025-09-25 16:40:40.6318+00 2025-09-25 16:40:40.631813+00 f t Indio DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9341 +7762 2025-09-25 17:26:13.266197+00 2025-09-25 17:26:13.266206+00 f t Fatiga DOG \N 38.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9343 +7764 2025-09-25 17:39:39.229064+00 2025-09-25 17:39:39.229074+00 f t Bella CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9346 +7763 2025-09-25 17:36:04.921482+00 2025-09-25 17:36:04.921493+00 f t Kira CAT 0 4.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9344 +7732 2025-09-25 04:39:40.158972+00 2025-09-25 04:39:40.158981+00 f t Pucca 1 DOG 0 21.00 0.00 f \N \N \N \N FEMALE \N f \N 121 9310 +7765 2025-09-25 17:42:54.906574+00 2025-09-25 17:42:54.906587+00 f t Olivia CAT 4 4.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9345 +7766 2025-09-25 18:03:04.208502+00 2025-09-25 18:03:04.208516+00 f t Juan DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9347 +7767 2025-09-25 18:33:36.388675+00 2025-09-25 18:33:36.388687+00 f t Paris CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9348 +7768 2025-09-25 18:42:31.344526+00 2025-09-25 18:42:31.344535+00 f t Pep DOG \N 100.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9349 +7769 2025-09-25 18:44:26.286315+00 2025-09-25 18:44:26.286327+00 f t Milo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9350 +7770 2025-09-25 19:00:21.945647+00 2025-09-25 19:00:21.945661+00 f t Charlie DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9352 +7771 2025-09-25 19:39:48.951064+00 2025-09-25 19:39:48.951072+00 f t Katita CAT 14 4.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9353 +7772 2025-09-25 20:10:35.665325+00 2025-09-25 20:10:35.665335+00 f t Lila CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9357 +7773 2025-09-25 20:55:11.585059+00 2025-09-25 20:55:11.585072+00 f t FSJH DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9358 +7774 2025-09-25 21:04:58.501115+00 2025-09-25 21:04:58.501125+00 f t ASG DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9359 +7775 2025-09-25 21:15:44.530322+00 2025-09-25 21:15:44.530332+00 f t Chimuelo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9360 +7776 2025-09-25 21:30:28.988304+00 2025-09-25 21:30:28.988313+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9361 +7778 2025-09-25 21:51:38.076822+00 2025-09-25 21:51:38.076831+00 f t Fenix CAT 4 4.00 0.00 t \N \N \N \N MALE \N f \N 1583 9362 +7777 2025-09-25 21:51:08.678222+00 2025-09-25 21:51:08.678235+00 f t Horus DOG 12 25.00 0.00 t \N \N \N \N MALE \N f \N 1583 9362 +7779 2025-09-25 21:58:41.995687+00 2025-09-25 21:58:41.9957+00 f t Toto DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9363 +7780 2025-09-25 22:04:27.287237+00 2025-09-25 22:04:27.28725+00 f t Scully CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9364 +7643 2025-09-24 00:39:48.541076+00 2025-09-24 00:39:48.541084+00 f t Mollo DOG 0 35.00 0.00 t \N \N \N \N MALE \N t \N 113 9220 +7781 2025-09-25 22:25:46.797448+00 2025-09-25 22:25:46.797462+00 f t Rodo DOG \N 22.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9365 +7782 2025-09-25 22:33:32.03254+00 2025-09-25 22:33:32.032549+00 f t Ches DOG \N 95.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9366 +7783 2025-09-25 23:11:26.202918+00 2025-09-25 23:11:26.20293+00 f t Copito DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9369 +7784 2025-09-25 23:20:17.314531+00 2025-09-25 23:20:17.314541+00 f t Copito DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9370 +7785 2025-09-25 23:38:54.274224+00 2025-09-25 23:38:54.274233+00 f t Rodri CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9371 +7786 2025-09-25 23:45:59.06665+00 2025-09-25 23:45:59.06666+00 f t Pantera CAT \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9372 +7787 2025-09-25 23:54:42.77623+00 2025-09-25 23:54:42.776239+00 f t Veronica DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9373 +7788 2025-09-25 23:55:05.574512+00 2025-09-25 23:55:05.574526+00 f t Gato CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9373 +7789 2025-09-26 00:12:12.536323+00 2025-09-26 00:12:12.536334+00 f t Olivia CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9374 +7790 2025-09-26 01:00:43.953815+00 2025-09-26 01:00:43.953824+00 f t PIETRO DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9375 +7791 2025-09-26 01:02:36.965216+00 2025-09-26 01:02:36.965235+00 f t PIETRO DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9376 +7792 2025-09-26 01:14:02.240061+00 2025-09-26 01:14:02.240076+00 f t Sheena DOG \N 26.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9377 +7793 2025-09-26 01:14:45.977075+00 2025-09-26 01:14:45.977087+00 f t Alice DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9377 +7794 2025-09-26 02:06:11.910293+00 2025-09-26 02:06:11.910304+00 f t Napoleón Aiello DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9380 +7795 2025-09-26 02:34:05.326958+00 2025-09-26 02:34:05.32704+00 f t T DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9381 +7796 2025-09-26 02:36:09.276514+00 2025-09-26 02:36:09.276524+00 f t Balú DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9382 +7797 2025-09-26 02:43:02.810737+00 2025-09-26 02:43:02.810747+00 f t Maguie DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9383 +7798 2025-09-26 03:06:32.228752+00 2025-09-26 03:06:32.22876+00 f t Negro DOG \N 21.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9384 +7799 2025-09-26 03:07:11.444717+00 2025-09-26 03:07:11.444726+00 f t Canela CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9385 +7800 2025-09-26 03:19:08.79223+00 2025-09-26 03:19:08.79224+00 f t Coco CAT \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9386 +7801 2025-09-26 03:38:01.118461+00 2025-09-26 03:38:01.118475+00 f t Negro DOG \N 21.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9387 +7802 2025-09-26 04:01:54.683792+00 2025-09-26 04:01:54.683806+00 f t Benito CAT \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9388 +7803 2025-09-26 04:23:38.098371+00 2025-09-26 04:23:38.098384+00 f t Cata DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9389 +7804 2025-09-26 04:23:53.328835+00 2025-09-26 04:23:53.328849+00 f t Cata CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9389 +7805 2025-09-26 05:10:08.513408+00 2025-09-26 05:10:08.513424+00 f t Michu CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9390 +7806 2025-09-26 06:44:45.711706+00 2025-09-26 06:44:45.711715+00 f t Pepe DOG \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9391 +7807 2025-09-26 09:34:49.242123+00 2025-09-26 09:34:49.242132+00 f t Mac CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9393 +7808 2025-09-26 09:36:32.190768+00 2025-09-26 09:36:32.190776+00 f t Mac CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9393 +7809 2025-09-26 10:57:33.804554+00 2025-09-26 10:57:33.804565+00 f t Lupe DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9396 +7810 2025-09-26 11:35:41.00887+00 2025-09-26 11:35:41.008879+00 f t Lolo DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9397 +7811 2025-09-26 11:43:04.382875+00 2025-09-26 11:43:04.382883+00 f t Analia Quiroga CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9398 +7812 2025-09-26 11:57:49.224246+00 2025-09-26 11:57:49.224258+00 f t santino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9399 +7813 2025-09-26 12:25:44.831751+00 2025-09-26 12:25:44.831761+00 f t Tomy DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9400 +7814 2025-09-26 12:29:36.041768+00 2025-09-26 12:29:36.041781+00 f t LOLA CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9401 +7815 2025-09-26 12:36:24.734173+00 2025-09-26 12:36:24.734182+00 f t Figaro CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9402 +7816 2025-09-26 12:41:57.497899+00 2025-09-26 12:41:57.497914+00 f t Figaro CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9403 +7817 2025-09-26 13:00:18.629866+00 2025-09-26 13:00:18.629875+00 f t Frida CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9404 +7818 2025-09-26 13:13:02.751368+00 2025-09-26 13:13:02.751377+00 f t Luci CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9405 +7819 2025-09-26 13:21:30.350746+00 2025-09-26 13:21:30.350758+00 f t JuiJui DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9406 +7820 2025-09-26 13:22:41.994+00 2025-09-26 13:22:41.994008+00 f t SANTINO CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9407 +7821 2025-09-26 13:32:13.801897+00 2025-09-26 13:32:13.80191+00 f t Filipo DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9408 +7822 2025-09-26 13:59:22.902504+00 2025-09-26 13:59:22.902512+00 f t Negro DOG \N 21.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9409 +7823 2025-09-26 14:07:04.767312+00 2025-09-26 14:07:04.767323+00 f t Negro DOG \N 21.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9410 +7824 2025-09-26 14:25:30.012796+00 2025-09-26 14:25:30.012807+00 f t Lenteja CAT \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9412 +7825 2025-09-26 14:38:30.395611+00 2025-09-26 14:38:30.395624+00 f t Lola DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9414 +7826 2025-09-26 14:41:42.359717+00 2025-09-26 14:41:42.35973+00 f t Venus CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9415 +7827 2025-09-26 14:46:40.815893+00 2025-09-26 14:46:40.815903+00 f t Sheena DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9416 +7828 2025-09-26 14:55:55.199506+00 2025-09-26 14:55:55.199519+00 f t Kiara DOG \N 5.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9417 +7829 2025-09-26 15:42:52.013268+00 2025-09-26 15:42:52.013282+00 f t Chacarron DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9418 +7830 2025-09-26 15:44:52.470557+00 2025-09-26 15:44:52.470569+00 f t Kiara DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9419 +7831 2025-09-26 15:56:52.629773+00 2025-09-26 15:56:52.629782+00 f t Rufo DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9421 +7832 2025-09-26 16:02:02.665796+00 2025-09-26 16:02:02.665809+00 f t Lola DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9423 +7833 2025-09-26 16:08:16.453873+00 2025-09-26 16:08:16.453884+00 f t Perry CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9425 +7834 2025-09-26 16:31:25.318334+00 2025-09-26 16:31:25.318347+00 f t Chimi CAT \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9426 +7835 2025-09-26 16:56:23.034418+00 2025-09-26 16:56:23.034429+00 f t Loba DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9427 +7836 2025-09-26 17:11:29.022433+00 2025-09-26 17:11:29.022447+00 f t davi DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9429 +7838 2025-09-26 17:16:41.090341+00 2025-09-26 17:16:41.090355+00 f t Grisu CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9431 +7837 2025-09-26 17:14:29.204394+00 2025-09-26 17:14:29.204404+00 f t Chimi CAT 1 3.00 0.00 f \N \N \N \N FEMALE \N f \N 1583 9430 +7839 2025-09-26 18:03:11.664847+00 2025-09-26 18:03:11.664855+00 f t Ron CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9433 +7840 2025-09-26 18:04:18.133297+00 2025-09-26 18:04:18.133305+00 f t Ron CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9434 +7841 2025-09-26 18:06:52.217519+00 2025-09-26 18:06:52.217533+00 f t Sura DOG 13 55.00 0.00 f \N \N \N \N FEMALE \N f \N 1583 9435 +7842 2025-09-26 18:10:12.88964+00 2025-09-26 18:10:12.889649+00 f t Jazzy CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9436 +7843 2025-09-26 18:11:13.378167+00 2025-09-26 18:11:13.37818+00 f t Pomelo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9436 +8518 2025-10-08 09:25:01.828272+00 2025-10-08 09:25:01.828288+00 f t Churrascon DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10259 +7847 2025-09-26 18:23:17.931481+00 2025-09-26 18:23:17.93149+00 f t Michiberta CAT 2 3.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9437 +7844 2025-09-26 18:22:14.273476+00 2025-09-26 18:22:14.273485+00 f t Mini DOG 9 8.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9437 +7846 2025-09-26 18:23:03.776091+00 2025-09-26 18:23:03.7761+00 f t Roberto CAT 5 4.00 0.00 t \N \N \N \N MALE \N f \N 1583 9437 +7845 2025-09-26 18:22:37.805258+00 2025-09-26 18:22:37.805266+00 f t Tita CAT 7 3.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9437 +7848 2025-09-26 18:35:36.837466+00 2025-09-26 18:35:36.837475+00 f t Benji DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9438 +7849 2025-09-26 18:47:44.371429+00 2025-09-26 18:47:44.371439+00 f t Vicki CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9439 +7850 2025-09-26 18:50:55.867875+00 2025-09-26 18:50:55.867887+00 f t negro DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9440 +7851 2025-09-26 19:27:48.230797+00 2025-09-26 19:27:48.230809+00 f t Odín CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9442 +7852 2025-09-26 19:38:09.429456+00 2025-09-26 19:38:09.429471+00 f t Estrellita DOG 6 5.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9443 +7853 2025-09-26 20:55:02.749164+00 2025-09-26 20:55:02.749178+00 f t Lizy DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9444 +7854 2025-09-26 20:55:35.888067+00 2025-09-26 20:55:35.888077+00 f t Choco DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9445 +7855 2025-09-26 21:03:15.107278+00 2025-09-26 21:03:15.107287+00 f t Kyla DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9446 +7856 2025-09-26 21:12:32.380846+00 2025-09-26 21:12:32.380854+00 f t Choco DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9447 +7857 2025-09-26 21:46:09.067666+00 2025-09-26 21:46:09.067675+00 f t Magui DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9448 +7858 2025-09-26 22:12:36.518653+00 2025-09-26 22:12:36.518665+00 f t Bebé DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9449 +7859 2025-09-26 22:12:51.305002+00 2025-09-26 22:12:51.305015+00 f t Bebé CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9449 +7860 2025-09-26 22:20:47.850618+00 2025-09-26 22:20:47.850628+00 f t Dumba DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9450 +7861 2025-09-26 22:26:59.803585+00 2025-09-26 22:26:59.803597+00 f t Leon CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9451 +7862 2025-09-26 22:49:00.451933+00 2025-09-26 22:49:00.451942+00 f t Black CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9452 +7863 2025-09-26 22:50:17.242031+00 2025-09-26 22:50:17.242045+00 f t Black CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9452 +7864 2025-09-26 22:56:29.03561+00 2025-09-26 22:56:29.03562+00 f t Manchas DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9453 +7865 2025-09-26 23:18:35.673308+00 2025-09-26 23:18:35.673323+00 f t Alex CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9455 +7866 2025-09-26 23:19:10.447978+00 2025-09-26 23:19:10.447989+00 f t Alex CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9456 +7867 2025-09-26 23:26:45.946271+00 2025-09-26 23:26:45.94628+00 f t Catalina DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9457 +7868 2025-09-26 23:49:06.799212+00 2025-09-26 23:49:06.799222+00 f t Alex CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9458 +7869 2025-09-26 23:50:17.045355+00 2025-09-26 23:50:17.045369+00 f t Jofesin DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9459 +7870 2025-09-27 00:31:29.410679+00 2025-09-27 00:31:29.410688+00 f t Reina DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9460 +7871 2025-09-27 00:33:24.27735+00 2025-09-27 00:33:24.277359+00 f t Reina DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9461 +7872 2025-09-27 03:21:17.613966+00 2025-09-27 03:21:17.613975+00 f t Hercules DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9462 +7873 2025-09-27 04:05:51.860745+00 2025-09-27 04:05:51.860753+00 f t Rocco DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9463 +7874 2025-09-27 07:34:27.59225+00 2025-09-27 07:34:27.59226+00 f t Kika DOG \N 85.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9465 +7875 2025-09-27 12:19:46.128952+00 2025-09-27 12:19:46.128963+00 f t Coco CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9466 +7876 2025-09-27 13:11:57.324782+00 2025-09-27 13:11:57.324795+00 f t Memito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9467 +7877 2025-09-27 13:36:35.307016+00 2025-09-27 13:36:35.307027+00 f t jsan DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9468 +7878 2025-09-27 13:43:11.761651+00 2025-09-27 13:43:11.761663+00 f t dan DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9468 +7879 2025-09-27 13:47:33.450728+00 2025-09-27 13:47:33.450737+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9469 +7880 2025-09-27 13:55:00.842501+00 2025-09-27 13:55:00.84251+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9471 +7881 2025-09-27 13:56:16.757638+00 2025-09-27 13:56:16.757649+00 f t Lola DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9472 +7882 2025-09-27 14:04:22.595537+00 2025-09-27 14:04:22.595545+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9474 +7883 2025-09-27 14:18:07.527346+00 2025-09-27 14:18:07.527361+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9477 +7884 2025-09-27 14:19:13.129573+00 2025-09-27 14:19:13.129583+00 f t ROMEO DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9478 +7885 2025-09-27 14:21:39.245671+00 2025-09-27 14:21:39.245684+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9479 +7886 2025-09-27 14:41:43.172241+00 2025-09-27 14:41:43.17225+00 f t Gaia DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9481 +7887 2025-09-27 14:52:57.182249+00 2025-09-27 14:52:57.18226+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9482 +7888 2025-09-27 15:15:15.523867+00 2025-09-27 15:15:15.523876+00 f t Jessico CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9483 +7889 2025-09-27 15:16:56.572187+00 2025-09-27 15:16:56.572196+00 f t Alaska CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9483 +7890 2025-09-27 15:39:01.446307+00 2025-09-27 15:39:01.446322+00 f t Teo DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9484 +7891 2025-09-27 15:40:29.177453+00 2025-09-27 15:40:29.177468+00 f t fkjd DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9485 +7892 2025-09-27 15:41:57.064892+00 2025-09-27 15:41:57.064901+00 f t Teo DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9486 +7893 2025-09-27 16:02:41.915459+00 2025-09-27 16:02:41.91547+00 f t Cata DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9487 +7894 2025-09-27 16:03:11.19552+00 2025-09-27 16:03:11.195528+00 f t dsf DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9489 +7895 2025-09-27 16:03:12.873186+00 2025-09-27 16:03:12.873195+00 f t Cata CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9488 +7896 2025-09-27 16:30:37.052497+00 2025-09-27 16:30:37.052508+00 f t Julian DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9490 +7897 2025-09-27 16:30:53.745303+00 2025-09-27 16:30:53.745313+00 f t Julian CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9490 +7898 2025-09-27 16:32:58.396854+00 2025-09-27 16:32:58.396867+00 f t Julian CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9490 +7899 2025-09-27 16:55:34.874987+00 2025-09-27 16:55:34.874996+00 f t merlina CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9491 +7900 2025-09-27 17:18:49.07278+00 2025-09-27 17:18:49.072789+00 f t Terry CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9492 +7901 2025-09-27 17:19:05.054622+00 2025-09-27 17:19:05.054632+00 f t Roma CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9493 +7902 2025-09-27 18:32:02.7699+00 2025-09-27 18:32:02.76991+00 f t Tomas DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9494 +7903 2025-09-27 19:18:16.67567+00 2025-09-27 19:18:16.675679+00 f t afgf| DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9495 +7904 2025-09-27 19:53:59.860387+00 2025-09-27 19:53:59.860401+00 f t Hércules DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9496 +7905 2025-09-27 20:18:40.199538+00 2025-09-27 20:18:40.19955+00 f t Nina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9497 +7906 2025-09-27 20:44:32.388993+00 2025-09-27 20:44:32.389002+00 f t Nina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9498 +7907 2025-09-27 23:02:03.634178+00 2025-09-27 23:02:03.634186+00 f t Odin CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9499 +7908 2025-09-27 23:31:49.807083+00 2025-09-27 23:31:49.807092+00 f t Brisa DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9500 +7909 2025-09-28 00:04:53.980584+00 2025-09-28 00:04:53.980598+00 f t Escubi DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9501 +7910 2025-09-28 00:28:22.996343+00 2025-09-28 00:28:22.996354+00 f t Lupita DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9502 +7911 2025-09-28 00:35:04.305357+00 2025-09-28 00:35:04.305371+00 f t Leonardo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9503 +7912 2025-09-28 00:37:51.095068+00 2025-09-28 00:37:51.09508+00 f t Senshi CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9504 +7913 2025-09-28 00:42:54.757984+00 2025-09-28 00:42:54.757995+00 f t Momo CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9505 +7914 2025-09-28 01:17:04.283187+00 2025-09-28 01:17:04.283196+00 f t Pinito DOG \N 3.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9506 +7915 2025-09-28 02:16:52.975618+00 2025-09-28 02:16:52.975627+00 f t Huma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9507 +7916 2025-09-28 02:50:26.762394+00 2025-09-28 02:50:26.762404+00 f t Sofia DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9508 +7918 2025-09-28 03:46:29.609932+00 2025-09-28 03:46:29.609941+00 f t Peka DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9510 +7919 2025-09-28 04:15:15.474533+00 2025-09-28 04:15:15.474543+00 f t Agata Herbstein CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9503 +7920 2025-09-28 04:18:20.153705+00 2025-09-28 04:18:20.153717+00 f t Ari Bebé Herbstein CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9503 +7921 2025-09-28 04:20:24.127684+00 2025-09-28 04:20:24.127692+00 f t Ricky Herbstein CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9503 +7922 2025-09-28 06:42:42.121094+00 2025-09-28 06:42:42.121103+00 f t Coco DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9512 +7923 2025-09-28 07:50:16.755899+00 2025-09-28 07:50:16.755909+00 f t Batata CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9513 +7924 2025-09-28 09:52:50.032441+00 2025-09-28 09:52:50.032454+00 f t toby CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9514 +7925 2025-09-28 11:16:29.961983+00 2025-09-28 11:16:29.961996+00 f t Cloy DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9515 +7926 2025-09-28 13:03:54.969887+00 2025-09-28 13:03:54.969895+00 f t Bruno DOG \N 18.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9519 +7927 2025-09-28 13:07:35.950538+00 2025-09-28 13:07:35.950546+00 f t Danke DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9520 +7928 2025-09-28 13:37:56.099848+00 2025-09-28 13:37:56.099858+00 f t Moholy CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9521 +7929 2025-09-28 13:54:42.595005+00 2025-09-28 13:54:42.595018+00 f t micaela CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9522 +7930 2025-09-28 15:29:49.434838+00 2025-09-28 15:29:49.434847+00 f t Filomeno CAT \N 0.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9526 +7931 2025-09-28 16:00:38.233438+00 2025-09-28 16:00:38.233452+00 f t Branca CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9528 +7932 2025-09-28 16:10:50.824646+00 2025-09-28 16:10:50.82466+00 f t Jack DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9529 +7933 2025-09-28 16:41:52.869199+00 2025-09-28 16:41:52.869208+00 f t Oliver CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9532 +7917 2025-09-28 03:19:26.960922+00 2025-09-28 03:19:26.960931+00 f t Sofia DOG 0 2.50 0.00 f \N \N \N \N FEMALE \N f \N 114 9509 +7934 2025-09-28 16:53:20.053399+00 2025-09-28 16:53:20.053412+00 f t Chiqui DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9537 +7935 2025-09-28 16:58:13.401583+00 2025-09-28 16:58:13.401593+00 f t Oliver CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9538 +7936 2025-09-28 17:18:12.104933+00 2025-09-28 17:18:12.104944+00 f t Yuuki DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9539 +7937 2025-09-28 17:22:03.623467+00 2025-09-28 17:22:03.623481+00 f t leon DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9540 +7938 2025-09-28 17:22:23.961641+00 2025-09-28 17:22:23.961653+00 f t leon CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9540 +7939 2025-09-28 17:33:04.750314+00 2025-09-28 17:33:04.750324+00 f t Estrella DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9541 +7940 2025-09-28 17:56:16.672927+00 2025-09-28 17:56:16.672935+00 f t Tota DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9542 +7941 2025-09-28 18:09:14.667586+00 2025-09-28 18:09:14.667598+00 f t Florentina DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9544 +7942 2025-09-28 18:19:59.078096+00 2025-09-28 18:19:59.078109+00 f t Choco DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9545 +7943 2025-09-28 18:21:12.94179+00 2025-09-28 18:21:12.941798+00 f t Chocolate DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9546 +7944 2025-09-28 18:43:11.210853+00 2025-09-28 18:43:11.210863+00 f t Danielita DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9547 +7945 2025-09-28 18:53:34.614245+00 2025-09-28 18:53:34.614254+00 f t Michina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9548 +7946 2025-09-28 18:55:13.950608+00 2025-09-28 18:55:13.950619+00 f t Rafi CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9548 +7947 2025-09-28 19:03:13.405512+00 2025-09-28 19:03:13.405523+00 f t Michina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9549 +7948 2025-09-28 19:03:34.452721+00 2025-09-28 19:03:34.452733+00 f t Molli DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9550 +7949 2025-09-28 19:15:47.726645+00 2025-09-28 19:15:47.726653+00 f t cloy DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9551 +7950 2025-09-28 19:52:48.943949+00 2025-09-28 19:52:48.943957+00 f t Perrito DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9554 +7951 2025-09-28 20:12:07.796195+00 2025-09-28 20:12:07.796203+00 f t Luna DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9555 +7952 2025-09-28 20:17:44.45402+00 2025-09-28 20:17:44.454032+00 f t Luna DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9556 +7953 2025-09-28 20:23:29.692832+00 2025-09-28 20:23:29.692845+00 f t Michina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9557 +7954 2025-09-28 20:31:26.031382+00 2025-09-28 20:31:26.031391+00 f t Sofia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9558 +7955 2025-09-28 21:12:01.494786+00 2025-09-28 21:12:01.494798+00 f t Ruperto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9560 +7956 2025-09-28 21:41:57.752973+00 2025-09-28 21:41:57.752982+00 f t Apollo DOG \N 60.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9561 +7957 2025-09-28 21:55:16.190975+00 2025-09-28 21:55:16.190983+00 f t Bondiola DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9562 +7958 2025-09-28 21:57:32.720835+00 2025-09-28 21:57:32.720844+00 f t Juan DOG \N 41.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9563 +7959 2025-09-28 22:05:19.541302+00 2025-09-28 22:05:19.541312+00 f t Pini CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9564 +7960 2025-09-28 22:05:27.237481+00 2025-09-28 22:05:27.23749+00 f t Bondiola DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9565 +7961 2025-09-28 22:37:26.563336+00 2025-09-28 22:37:26.56335+00 f t Ainoa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9567 +7962 2025-09-28 22:42:33.187344+00 2025-09-28 22:42:33.187357+00 f t Ainoha CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9568 +7963 2025-09-29 00:10:00.862201+00 2025-09-29 00:10:00.86221+00 f t Otto DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9569 +7964 2025-09-29 00:30:46.466827+00 2025-09-29 00:30:46.46684+00 f t Otto DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9570 +7965 2025-09-29 01:22:48.641491+00 2025-09-29 01:22:48.6415+00 f t rrf DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9571 +7966 2025-09-29 02:36:38.043543+00 2025-09-29 02:36:38.043552+00 f t Aries CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9572 +7967 2025-09-29 02:38:46.573833+00 2025-09-29 02:38:46.573845+00 f t Aries CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9572 +7968 2025-09-29 02:39:37.032587+00 2025-09-29 02:39:37.032598+00 f t Ramon DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9572 +7969 2025-09-29 03:38:44.242017+00 2025-09-29 03:38:44.24203+00 f t Bobbi DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9573 +7970 2025-09-29 04:01:43.918283+00 2025-09-29 04:01:43.918292+00 f t Pua CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9574 +7971 2025-09-29 04:35:02.120306+00 2025-09-29 04:35:02.120321+00 f t Ikatí DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9575 +7972 2025-09-29 04:36:01.248058+00 2025-09-29 04:36:01.248067+00 f t Ikatí CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9575 +7973 2025-09-29 09:52:21.423901+00 2025-09-29 09:52:21.423916+00 f t Tut DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9577 +7974 2025-09-29 10:27:41.466288+00 2025-09-29 10:27:41.466302+00 f t Xaylo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9578 +7975 2025-09-29 10:48:56.394669+00 2025-09-29 10:48:56.39468+00 f t Lisa DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9580 +7976 2025-09-29 10:53:28.378684+00 2025-09-29 10:53:28.378694+00 f t Marcelo Roberto Rodriguez CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9581 +7977 2025-09-29 10:59:02.227032+00 2025-09-29 10:59:02.227043+00 f t Bruno DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9582 +7978 2025-09-29 11:01:02.749202+00 2025-09-29 11:01:02.749216+00 f t Bruno DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9583 +7979 2025-09-29 11:04:23.15631+00 2025-09-29 11:04:23.156327+00 f t filipa DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9584 +7980 2025-09-29 11:24:38.896351+00 2025-09-29 11:24:38.896361+00 f t Xaylo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9585 +7981 2025-09-29 12:34:52.108562+00 2025-09-29 12:34:52.108572+00 f t Miks CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9586 +7982 2025-09-29 12:41:03.866727+00 2025-09-29 12:41:03.866739+00 f t Mika DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9587 +7983 2025-09-29 12:45:10.175174+00 2025-09-29 12:45:10.175182+00 f t Leon DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9588 +7984 2025-09-29 12:52:26.252881+00 2025-09-29 12:52:26.252894+00 f t Mika DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9589 +7985 2025-09-29 12:52:58.944558+00 2025-09-29 12:52:58.944566+00 f t Mika CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9590 +7986 2025-09-29 13:00:03.129786+00 2025-09-29 13:00:03.129802+00 f t Mika CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9591 +7987 2025-09-29 13:10:18.576857+00 2025-09-29 13:10:18.576866+00 f t Lucy CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9592 +7988 2025-09-29 13:20:35.684513+00 2025-09-29 13:20:35.684522+00 f t Masya CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9593 +7989 2025-09-29 13:24:10.007589+00 2025-09-29 13:24:10.007597+00 f t MICAELA DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9595 +7990 2025-09-29 13:25:28.785218+00 2025-09-29 13:25:28.785225+00 f t Blacki DOG \N 29.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9594 +7991 2025-09-29 14:02:36.944644+00 2025-09-29 14:02:36.944657+00 f t Reina DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9599 +7993 2025-09-29 14:24:34.326261+00 2025-09-29 14:24:34.326272+00 f t Charly CAT 2 4.00 0.00 t \N \N \N \N MALE \N f \N 1583 9601 +7994 2025-09-29 14:24:52.421212+00 2025-09-29 14:24:52.421221+00 f t Gatita CAT 3 3.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9601 +7992 2025-09-29 14:24:18.980929+00 2025-09-29 14:24:18.980938+00 f t Umma DOG 5 28.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9601 +7995 2025-09-29 14:37:29.229255+00 2025-09-29 14:37:29.229265+00 f t Roco DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9602 +7996 2025-09-29 14:40:54.982786+00 2025-09-29 14:40:54.9828+00 f t Ragnarok DOG \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9603 +7997 2025-09-29 14:49:35.445723+00 2025-09-29 14:49:35.445733+00 f t Aqq DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9604 +7998 2025-09-29 15:10:48.720599+00 2025-09-29 15:10:48.720611+00 f t Mimi CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9605 +7999 2025-09-29 15:10:58.81315+00 2025-09-29 15:10:58.813159+00 f t Tita CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9606 +8000 2025-09-29 15:41:55.734405+00 2025-09-29 15:41:55.734414+00 f t Atenea DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9607 +8001 2025-09-29 15:46:39.208541+00 2025-09-29 15:46:39.20855+00 f t Zeus DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9609 +8002 2025-09-29 15:46:41.95175+00 2025-09-29 15:46:41.951759+00 f t Chocolina DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9608 +8003 2025-09-29 16:01:40.572672+00 2025-09-29 16:01:40.572685+00 f t Daisy DOG \N 6.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9610 +8004 2025-09-29 16:09:11.646682+00 2025-09-29 16:09:11.646691+00 f t rafael DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9611 +8005 2025-09-29 16:22:48.165083+00 2025-09-29 16:22:48.165092+00 f t Luna DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9613 +8006 2025-09-29 17:05:22.018035+00 2025-09-29 17:05:22.018046+00 f t Rocco CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9614 +8007 2025-09-29 17:57:14.394949+00 2025-09-29 17:57:14.394961+00 f t Atom DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9615 +8008 2025-09-29 18:09:05.448226+00 2025-09-29 18:09:05.448235+00 f t Lupita DOG \N 1.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9616 +8009 2025-09-29 18:21:29.146418+00 2025-09-29 18:21:29.14643+00 f t Raquel DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9618 +8010 2025-09-29 18:27:02.481355+00 2025-09-29 18:27:02.481369+00 f t Frank DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9619 +8011 2025-09-29 18:35:50.262575+00 2025-09-29 18:35:50.262584+00 f t Karawita CAT \N 2.90 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9620 +8012 2025-09-29 19:11:39.379059+00 2025-09-29 19:11:39.379072+00 f t Cuki DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9621 +8013 2025-09-29 19:14:40.752096+00 2025-09-29 19:14:40.752105+00 f t cuki DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9622 +8014 2025-09-29 20:03:08.963698+00 2025-09-29 20:03:08.963709+00 f t Betún DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9623 +8015 2025-09-29 20:03:29.03652+00 2025-09-29 20:03:29.036535+00 f t Betún CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9623 +8016 2025-09-29 20:05:59.156104+00 2025-09-29 20:05:59.156117+00 f t Betún CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9624 +8017 2025-09-29 20:09:15.775647+00 2025-09-29 20:09:15.775658+00 f t Betun CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9625 +8018 2025-09-29 20:10:48.608253+00 2025-09-29 20:10:48.608266+00 f t Roma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9627 +8019 2025-09-29 20:11:42.088245+00 2025-09-29 20:11:42.088255+00 f t Filoberto CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9627 +8020 2025-09-29 20:35:44.585298+00 2025-09-29 20:35:44.585309+00 f t Milu CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9628 +8021 2025-09-29 21:13:02.414244+00 2025-09-29 21:13:02.414256+00 f t Princesa CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9630 +8022 2025-09-29 21:55:28.082192+00 2025-09-29 21:55:28.082205+00 f t Teodoro CAT \N 2.80 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9632 +8023 2025-09-29 21:56:14.127948+00 2025-09-29 21:56:14.127956+00 f t Bella DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9631 +8024 2025-09-29 21:57:15.494287+00 2025-09-29 21:57:15.494296+00 f t Poppy DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9631 +8025 2025-09-29 22:45:23.309237+00 2025-09-29 22:45:23.309248+00 f t Chimuela CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9634 +8026 2025-09-29 22:45:52.601832+00 2025-09-29 22:45:52.601841+00 f t Chimuela CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9636 +8027 2025-09-29 22:54:12.289498+00 2025-09-29 22:54:12.289512+00 f t Osita DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9637 +8028 2025-09-29 23:17:21.089727+00 2025-09-29 23:17:21.08974+00 f t Nala CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9638 +8029 2025-09-29 23:24:19.768921+00 2025-09-29 23:24:19.768933+00 f t Betún CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9640 +8030 2025-09-29 23:32:34.450738+00 2025-09-29 23:32:34.450747+00 f t Katrina DOG \N 43.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9641 +8031 2025-09-29 23:34:50.782855+00 2025-09-29 23:34:50.782869+00 f t Jano DOG \N 70.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9641 +8032 2025-09-29 23:43:45.332641+00 2025-09-29 23:43:45.33265+00 f t Mininin CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9642 +8033 2025-09-30 00:07:30.997993+00 2025-09-30 00:07:30.998002+00 f t Cuki DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9644 +8034 2025-09-30 00:29:49.596459+00 2025-09-30 00:29:49.596472+00 f t Sol DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9646 +8035 2025-09-30 00:30:16.137673+00 2025-09-30 00:30:16.137688+00 f t Mia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9647 +8036 2025-09-30 02:45:38.098301+00 2025-09-30 02:45:38.098312+00 f t Alma DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9650 +8037 2025-09-30 02:55:36.472216+00 2025-09-30 02:55:36.472225+00 f t thor DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9651 +8038 2025-09-30 02:58:39.112315+00 2025-09-30 02:58:39.112327+00 f t Lola DOG \N 2.20 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9652 +8039 2025-09-30 03:48:32.690976+00 2025-09-30 03:48:32.690986+00 f t Escanor Meliodas CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9654 +8040 2025-09-30 03:49:41.832638+00 2025-09-30 03:49:41.832648+00 f t Lukanor Felipe CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9654 +8041 2025-09-30 05:27:13.747232+00 2025-09-30 05:27:13.747245+00 f t Marshall CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9655 +8042 2025-09-30 07:16:25.744109+00 2025-09-30 07:16:25.744121+00 f t Licha DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9656 +8043 2025-09-30 07:35:52.206342+00 2025-09-30 07:35:52.206356+00 f t Sicilia DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9657 +8044 2025-09-30 08:06:35.717335+00 2025-09-30 08:06:35.717345+00 f t Sur CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9658 +8045 2025-09-30 08:31:24.992029+00 2025-09-30 08:31:24.992039+00 f t Sur CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9660 +8046 2025-09-30 08:57:54.841797+00 2025-09-30 08:57:54.84181+00 f t Mady DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9661 +8047 2025-09-30 10:39:53.418946+00 2025-09-30 10:39:53.418957+00 f t Syn DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9662 +8048 2025-09-30 10:54:16.409664+00 2025-09-30 10:54:16.409675+00 f t Bandal CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9663 +8049 2025-09-30 11:45:37.754296+00 2025-09-30 11:45:37.754305+00 f t Uh DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9664 +8050 2025-09-30 11:51:57.739179+00 2025-09-30 11:51:57.739192+00 f t Terremoto DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9665 +8051 2025-09-30 12:38:17.891584+00 2025-09-30 12:38:17.891594+00 f t Connor DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9666 +8052 2025-09-30 12:55:10.225807+00 2025-09-30 12:55:10.225816+00 f t Felix CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9667 +8053 2025-09-30 13:49:04.979953+00 2025-09-30 13:49:04.979963+00 f t berta DOG 7 45.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9668 +8054 2025-09-30 14:57:28.752512+00 2025-09-30 14:57:28.752525+00 f t Filippa DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9669 +8055 2025-09-30 15:16:58.749+00 2025-09-30 15:16:58.749009+00 f t Froddo DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9670 +8056 2025-09-30 15:23:26.205669+00 2025-09-30 15:23:26.205679+00 f t Bastet CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9671 +8057 2025-09-30 15:34:32.433669+00 2025-09-30 15:34:32.433679+00 f t alex DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9672 +8058 2025-09-30 15:40:09.195022+00 2025-09-30 15:40:09.195036+00 f t Alex DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9673 +8059 2025-09-30 15:41:53.655568+00 2025-09-30 15:41:53.655578+00 f t VIENNA DOG \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9674 +8060 2025-09-30 16:21:30.707185+00 2025-09-30 16:21:30.707195+00 f t Milonga DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9676 +8061 2025-09-30 16:21:50.42136+00 2025-09-30 16:21:50.421368+00 f t Rumba DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9676 +8063 2025-09-30 16:34:59.453051+00 2025-09-30 16:34:59.453064+00 f t Filippa DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9678 +8064 2025-09-30 16:39:40.256274+00 2025-09-30 16:39:40.256291+00 f t Ares CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9679 +8065 2025-09-30 17:22:12.256447+00 2025-09-30 17:22:12.256461+00 f t Tito CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9680 +8062 2025-09-30 16:27:57.488435+00 2025-09-30 16:27:57.488445+00 f t Alex DOG 14 4.00 0.00 t \N \N \N \N MALE \N f 8 1583 9677 +8066 2025-09-30 17:33:07.038719+00 2025-09-30 17:33:07.038729+00 f t Diti CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9681 +8067 2025-09-30 17:52:11.143172+00 2025-09-30 17:52:11.143193+00 f t Tito DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9682 +8068 2025-09-30 18:12:54.666524+00 2025-09-30 18:12:54.666535+00 f t Felipe DOG 8 0.00 0.00 f \N \N \N \N MALE \N f 8 1208 9682 +8069 2025-09-30 19:17:14.389327+00 2025-09-30 19:17:14.389339+00 f t Mia DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9683 +8070 2025-09-30 19:19:29.794825+00 2025-09-30 19:19:29.794834+00 f t Rocco DOG \N 19.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9684 +8071 2025-09-30 19:24:32.51678+00 2025-09-30 19:24:32.516789+00 f t Mia DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9685 +8072 2025-09-30 19:24:55.604973+00 2025-09-30 19:24:55.604986+00 f t Mía DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9686 +8073 2025-09-30 19:48:22.401923+00 2025-09-30 19:48:22.401933+00 f t cucho CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9687 +8074 2025-09-30 19:48:58.640591+00 2025-09-30 19:48:58.640598+00 f t Eme CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9688 +8075 2025-09-30 19:56:10.320824+00 2025-09-30 19:56:10.320834+00 f t Maia DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9690 +8076 2025-09-30 20:01:42.979934+00 2025-09-30 20:01:42.97995+00 f t Gato CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9691 +8077 2025-09-30 20:02:19.027733+00 2025-09-30 20:02:19.027746+00 f t galila CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9692 +8078 2025-09-30 20:02:33.69037+00 2025-09-30 20:02:33.690383+00 f t china CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9693 +8079 2025-09-30 20:30:23.522998+00 2025-09-30 20:30:23.523007+00 f t Prueba DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9696 +8080 2025-09-30 20:42:37.199565+00 2025-09-30 20:42:37.19958+00 f t Alejo DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9697 +8081 2025-09-30 20:45:51.210543+00 2025-09-30 20:45:51.210554+00 f t Luis CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9698 +8082 2025-09-30 20:54:39.48337+00 2025-09-30 20:54:39.483383+00 f t Pipita CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9700 +8083 2025-09-30 20:54:50.891106+00 2025-09-30 20:54:50.891121+00 f t Regina CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9700 +8084 2025-09-30 20:54:51.448293+00 2025-09-30 20:54:51.448303+00 f t Haru DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9701 +8085 2025-09-30 20:58:00.350742+00 2025-09-30 20:58:00.350757+00 f t Saroo DOG \N 13.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9702 +8086 2025-09-30 21:04:16.529193+00 2025-09-30 21:04:16.529201+00 f t Alejo DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9703 +8087 2025-09-30 21:08:45.705563+00 2025-09-30 21:08:45.705572+00 f t Gali DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9704 +8088 2025-09-30 22:24:38.672899+00 2025-09-30 22:24:38.672911+00 f t Xilo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9706 +8089 2025-09-30 22:43:11.185702+00 2025-09-30 22:43:11.185713+00 f t pocho DOG \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9708 +8091 2025-09-30 23:25:10.795366+00 2025-09-30 23:25:10.795381+00 f t Ciclón CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9711 +8090 2025-09-30 22:51:53.565152+00 2025-09-30 22:51:53.565164+00 f t terry CAT 0 4.00 0.00 f \N \N \N \N FEMALE \N f \N 113 9710 +8092 2025-09-30 23:34:57.589039+00 2025-09-30 23:34:57.589051+00 f t Bongo DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9713 +8093 2025-09-30 23:35:43.248168+00 2025-09-30 23:35:43.24818+00 f t Tokio DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9713 +8094 2025-09-30 23:36:30.987813+00 2025-09-30 23:36:30.987826+00 f t Lola DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9713 +8095 2025-09-30 23:51:12.754345+00 2025-09-30 23:51:12.754354+00 f t Malena DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9714 +8096 2025-09-30 23:51:28.630951+00 2025-09-30 23:51:28.630961+00 f t Malena DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9712 +8097 2025-10-01 00:03:41.984642+00 2025-10-01 00:03:41.984651+00 f t Balú DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9715 +8098 2025-10-01 00:06:06.768595+00 2025-10-01 00:06:06.768606+00 f t Holanda CAT \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9716 +8099 2025-10-01 00:06:49.780399+00 2025-10-01 00:06:49.780408+00 f t Lola CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9717 +8100 2025-10-01 00:07:59.498417+00 2025-10-01 00:07:59.498428+00 f t Gim CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9718 +8101 2025-10-01 00:09:32.606272+00 2025-10-01 00:09:32.606282+00 f t Ciclón CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9719 +8102 2025-10-01 00:27:34.59043+00 2025-10-01 00:27:34.590442+00 f t Javier DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9721 +8103 2025-10-01 00:38:37.586546+00 2025-10-01 00:38:37.586555+00 f t Gin Arias DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9723 +8104 2025-10-01 00:49:57.038008+00 2025-10-01 00:49:57.038017+00 f t Max DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9724 +8105 2025-10-01 00:59:58.072284+00 2025-10-01 00:59:58.072297+00 f t Yoshiku DOG \N 36.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9725 +8106 2025-10-01 01:27:23.731074+00 2025-10-01 01:27:23.731084+00 f t Alejo DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9727 +8107 2025-10-01 01:58:40.996898+00 2025-10-01 01:58:40.996909+00 f t Lolita DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9728 +8108 2025-10-01 02:02:13.472123+00 2025-10-01 02:02:13.472135+00 f t Chiquita DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9728 +8109 2025-10-01 02:18:16.457367+00 2025-10-01 02:18:16.457377+00 f t RONALD CAT \N 65.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9729 +8110 2025-10-01 02:35:51.639038+00 2025-10-01 02:35:51.639048+00 f t Tommy DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9730 +8111 2025-10-01 02:41:41.072352+00 2025-10-01 02:41:41.072359+00 f t Suki CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9731 +8112 2025-10-01 03:03:12.364683+00 2025-10-01 03:03:12.364696+00 f t Simona CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9732 +8113 2025-10-01 03:07:12.562839+00 2025-10-01 03:07:12.562848+00 f t Benito CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9734 +8114 2025-10-01 03:09:57.138664+00 2025-10-01 03:09:57.138673+00 f t Roberta CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9735 +8115 2025-10-01 03:13:19.086527+00 2025-10-01 03:13:19.086541+00 f t Delfina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9736 +8116 2025-10-01 03:13:45.465614+00 2025-10-01 03:13:45.465626+00 f t Katniss CAT \N 4.30 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9737 +8117 2025-10-01 03:16:29.471763+00 2025-10-01 03:16:29.471773+00 f t Eva CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9738 +8118 2025-10-01 03:18:00.880501+00 2025-10-01 03:18:00.880511+00 f t Limoncita CAT \N 3.40 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9738 +8119 2025-10-01 05:32:33.270801+00 2025-10-01 05:32:33.270813+00 f t Tato CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9742 +8120 2025-10-01 09:57:08.274429+00 2025-10-01 09:57:08.274445+00 f t Pupu DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9744 +8121 2025-10-01 10:44:14.945925+00 2025-10-01 10:44:14.945941+00 f t Male CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9745 +8122 2025-10-01 11:01:53.758254+00 2025-10-01 11:01:53.758267+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9746 +8123 2025-10-01 12:01:45.516151+00 2025-10-01 12:01:45.516161+00 f t Micaela DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9748 +8124 2025-10-01 12:23:18.328621+00 2025-10-01 12:23:18.328635+00 f t Lolita DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9750 +8125 2025-10-01 13:30:51.258098+00 2025-10-01 13:30:51.258108+00 f t PEPA CACERES DIAZ CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9751 +8126 2025-10-01 13:46:06.524704+00 2025-10-01 13:46:06.524715+00 f t Michi CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9753 +8127 2025-10-01 14:30:06.977949+00 2025-10-01 14:30:06.977964+00 f t Max DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9755 +8128 2025-10-01 14:30:47.977336+00 2025-10-01 14:30:47.977349+00 f t Mirka CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9756 +8129 2025-10-01 15:25:23.866644+00 2025-10-01 15:25:23.866652+00 f t Hendrix DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9758 +8130 2025-10-01 15:26:15.202563+00 2025-10-01 15:26:15.202574+00 f t Escanor CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9759 +8131 2025-10-01 15:26:37.240543+00 2025-10-01 15:26:37.240552+00 f t Lukanor CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9759 +8132 2025-10-01 15:46:47.798982+00 2025-10-01 15:46:47.798992+00 f t Bruno DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9760 +8133 2025-10-01 15:52:08.82545+00 2025-10-01 15:52:08.825464+00 f t Male DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9762 +8134 2025-10-01 15:52:53.156715+00 2025-10-01 15:52:53.156729+00 f t Tony CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9763 +8135 2025-10-01 15:53:04.095301+00 2025-10-01 15:53:04.095316+00 f t Male CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9764 +8136 2025-10-01 15:56:21.829753+00 2025-10-01 15:56:21.829762+00 f t Kimura DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9766 +8137 2025-10-01 16:02:49.971014+00 2025-10-01 16:02:49.971026+00 f t Cilantro DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9767 +8138 2025-10-01 16:36:54.715193+00 2025-10-01 16:36:54.715217+00 f t Toro DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9768 +8139 2025-10-01 17:21:06.074317+00 2025-10-01 17:21:06.074331+00 f t lolita CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9769 +8140 2025-10-01 17:21:21.08012+00 2025-10-01 17:21:21.080134+00 f t leon CAT \N 1.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9769 +8141 2025-10-01 17:42:18.011105+00 2025-10-01 17:42:18.011115+00 f t Polo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9770 +8142 2025-10-01 18:08:25.618664+00 2025-10-01 18:08:25.618673+00 f t Mili DOG \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9772 +8143 2025-10-01 18:43:17.431221+00 2025-10-01 18:43:17.43123+00 f t Lola CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9775 +8144 2025-10-01 18:49:43.716772+00 2025-10-01 18:49:43.716781+00 f t Lola CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9776 +8145 2025-10-01 18:50:54.57506+00 2025-10-01 18:50:54.575068+00 f t Mitra CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9776 +8146 2025-10-01 19:06:51.739279+00 2025-10-01 19:06:51.739289+00 f t Lolo DOG \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9778 +8147 2025-10-01 19:10:37.921253+00 2025-10-01 19:10:37.921265+00 f t Robertito DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9779 +8148 2025-10-01 23:07:01.273118+00 2025-10-01 23:07:01.27313+00 f t amanda CAT \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9514 +8149 2025-10-02 13:02:43.421901+00 2025-10-02 13:02:43.421911+00 f t milo DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9856 +8150 2025-10-02 13:29:35.647707+00 2025-10-02 13:29:35.647716+00 f t delfina CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9861 +8151 2025-10-02 13:45:33.37661+00 2025-10-02 13:45:33.376623+00 f t Michi CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9864 +8152 2025-10-02 14:42:56.003899+00 2025-10-02 14:42:56.003911+00 f t Dio CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9866 +8153 2025-10-02 14:51:20.957782+00 2025-10-02 14:51:20.957794+00 f t Loly DOG \N 6.40 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9867 +8154 2025-10-02 15:36:15.785519+00 2025-10-02 15:36:15.785529+00 f t Ozzy CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9868 +8155 2025-10-02 15:48:21.067553+00 2025-10-02 15:48:21.067562+00 f t Polo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9869 +8156 2025-10-02 15:49:14.823732+00 2025-10-02 15:49:14.82374+00 f t Gala Bernasconi DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9870 +8157 2025-10-02 16:00:39.629832+00 2025-10-02 16:00:39.629845+00 f t Coco DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9871 +8158 2025-10-02 16:01:39.982014+00 2025-10-02 16:01:39.982023+00 f t Coco DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9871 +8159 2025-10-02 16:14:05.732788+00 2025-10-02 16:14:05.732797+00 f t Oliver DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9873 +8160 2025-10-02 16:44:43.546788+00 2025-10-02 16:44:43.546798+00 f t Ita DOG \N 2.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9875 +8161 2025-10-02 16:46:10.957528+00 2025-10-02 16:46:10.957542+00 f t Mirko DOG \N 19.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9876 +8162 2025-10-02 16:53:07.768949+00 2025-10-02 16:53:07.768958+00 f t China CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9877 +8163 2025-10-02 16:56:29.667628+00 2025-10-02 16:56:29.66764+00 f t Willow CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9878 +8164 2025-10-02 16:56:38.760081+00 2025-10-02 16:56:38.76009+00 f t Oliver DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9873 +8165 2025-10-02 17:32:20.679801+00 2025-10-02 17:32:20.67981+00 f t Sparky DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9879 +8166 2025-10-02 17:51:23.084198+00 2025-10-02 17:51:23.084207+00 f t VIELA DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9881 +8167 2025-10-02 18:35:47.196838+00 2025-10-02 18:35:47.196847+00 f t Oliverio DOG \N 68.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9882 +8168 2025-10-02 18:38:14.448246+00 2025-10-02 18:38:14.448255+00 f t Simon CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9883 +8169 2025-10-02 18:45:10.961261+00 2025-10-02 18:45:10.961271+00 f t Gatito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9884 +8170 2025-10-02 18:53:37.973772+00 2025-10-02 18:53:37.973781+00 f t Kira DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9885 +8171 2025-10-02 19:29:22.87768+00 2025-10-02 19:29:22.877689+00 f t Donatella CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9887 +8172 2025-10-02 19:32:37.421527+00 2025-10-02 19:32:37.421537+00 f t Donatella CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9888 +8519 2025-10-08 11:38:23.032436+00 2025-10-08 11:38:23.032446+00 f t Lupe CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10260 +8173 2025-10-02 20:09:43.384067+00 2025-10-02 20:09:43.384076+00 f t Simone CAT 6 4.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 9889 +8174 2025-10-02 20:29:12.252087+00 2025-10-02 20:29:12.252101+00 f t Hamletñ DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9890 +8175 2025-10-02 20:30:05.055004+00 2025-10-02 20:30:05.055023+00 f t Hamlet CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9890 +8176 2025-10-02 20:37:04.792342+00 2025-10-02 20:37:04.792354+00 f t Maki CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9893 +8177 2025-10-02 21:11:10.303166+00 2025-10-02 21:11:10.303176+00 f t Toddy DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9894 +8178 2025-10-02 22:06:09.194243+00 2025-10-02 22:06:09.194252+00 f t BEKA DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9895 +8180 2025-10-02 22:39:34.675729+00 2025-10-02 22:39:34.675739+00 f t Pixel CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9897 +8181 2025-10-02 22:48:42.252035+00 2025-10-02 22:48:42.252045+00 f t Pixel CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9899 +8182 2025-10-02 23:07:59.685245+00 2025-10-02 23:07:59.685255+00 f t Isidro DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9900 +8183 2025-10-02 23:08:13.889491+00 2025-10-02 23:08:13.889501+00 f t Isidro CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9900 +8184 2025-10-03 00:10:08.787202+00 2025-10-03 00:10:08.787214+00 f t Palta CAT \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9903 +8185 2025-10-03 00:21:44.812546+00 2025-10-03 00:21:44.812555+00 f t Toto DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9904 +8179 2025-10-02 22:07:41.309642+00 2025-10-02 22:07:41.309649+00 f t Junco DOG 0 35.00 0.00 f \N \N \N \N MALE \N f \N 113 9896 +8186 2025-10-03 00:35:11.073021+00 2025-10-03 00:35:11.073031+00 f t Salvaje CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9905 +8187 2025-10-03 00:37:46.638493+00 2025-10-03 00:37:46.638503+00 f t Zorro CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9906 +8188 2025-10-03 00:54:37.096079+00 2025-10-03 00:54:37.096103+00 f t Valentin CAT \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9907 +8189 2025-10-03 01:37:18.175892+00 2025-10-03 01:37:18.175904+00 f t Coco DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9909 +8190 2025-10-03 01:43:33.926346+00 2025-10-03 01:43:33.926355+00 f t Mano CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9910 +8191 2025-10-03 01:47:09.870598+00 2025-10-03 01:47:09.870607+00 f t Salvador Jacobsen CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9911 +8192 2025-10-03 01:50:29.748561+00 2025-10-03 01:50:29.74857+00 f t Shiva DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9915 +8193 2025-10-03 01:50:48.674178+00 2025-10-03 01:50:48.674188+00 f t Shiva CAT \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9915 +8194 2025-10-03 02:34:29.069565+00 2025-10-03 02:34:29.069574+00 f t Mia DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9916 +8195 2025-10-03 02:45:11.66031+00 2025-10-03 02:45:11.660319+00 f t Bunny CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9917 +8196 2025-10-03 03:37:11.492568+00 2025-10-03 03:37:11.492577+00 f t Maggie DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9919 +8197 2025-10-03 03:46:43.184713+00 2025-10-03 03:46:43.184723+00 f t Maggie DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9920 +8198 2025-10-03 05:46:59.555279+00 2025-10-03 05:46:59.55529+00 f t Nina DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9923 +8199 2025-10-03 06:00:49.300437+00 2025-10-03 06:00:49.300446+00 f t Zeus DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9924 +8200 2025-10-03 08:52:12.842236+00 2025-10-03 08:52:12.842246+00 f t Sam DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9925 +8201 2025-10-03 10:11:53.141504+00 2025-10-03 10:11:53.141513+00 f t Jani kung DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9926 +8202 2025-10-03 10:12:15.10521+00 2025-10-03 10:12:15.10522+00 f t Luck kung DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9926 +8203 2025-10-03 10:12:39.018653+00 2025-10-03 10:12:39.018661+00 f t Cucurucho Kung CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9926 +8204 2025-10-03 11:45:58.220535+00 2025-10-03 11:45:58.220544+00 f t Chickie DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9928 +8205 2025-10-03 11:52:57.980965+00 2025-10-03 11:52:57.980976+00 f t Olivia CAT \N 2.20 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9929 +8206 2025-10-03 12:29:11.951334+00 2025-10-03 12:29:11.951347+00 f t SYN DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9931 +8207 2025-10-03 12:30:34.749457+00 2025-10-03 12:30:34.749467+00 f t Cookie DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9932 +8208 2025-10-03 12:39:46.961371+00 2025-10-03 12:39:46.96138+00 f t Rafita CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9933 +8209 2025-10-03 12:53:57.938918+00 2025-10-03 12:53:57.938928+00 f t TEST DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9934 +8210 2025-10-03 12:54:57.795764+00 2025-10-03 12:54:57.795773+00 f t TEST DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9935 +8211 2025-10-03 12:58:30.485168+00 2025-10-03 12:58:30.485177+00 f t TEST DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9936 +8212 2025-10-03 13:05:02.237105+00 2025-10-03 13:05:02.237126+00 f t León CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9937 +8213 2025-10-03 13:15:31.348977+00 2025-10-03 13:15:31.348986+00 f t Rey DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9939 +8214 2025-10-03 13:20:55.708665+00 2025-10-03 13:20:55.708673+00 f t Oliva DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9940 +8215 2025-10-03 13:35:59.871342+00 2025-10-03 13:35:59.87135+00 f t kitty CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9942 +8216 2025-10-03 13:38:53.433306+00 2025-10-03 13:38:53.433314+00 f t Misha CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9943 +8217 2025-10-03 14:08:53.434997+00 2025-10-03 14:08:53.435006+00 f t Manchas DOG \N 16.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9944 +8218 2025-10-03 14:14:46.614215+00 2025-10-03 14:14:46.614228+00 f t Boris CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9945 +8219 2025-10-03 14:16:42.520817+00 2025-10-03 14:16:42.520827+00 f t Diablito CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9946 +8220 2025-10-03 14:45:52.582773+00 2025-10-03 14:45:52.582782+00 f t NALA DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9948 +8221 2025-10-03 15:01:04.024879+00 2025-10-03 15:01:04.024887+00 f t Luz DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9949 +8222 2025-10-03 15:20:48.47472+00 2025-10-03 15:20:48.474729+00 f t Ciclón CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 8676 +8223 2025-10-03 15:46:11.172504+00 2025-10-03 15:46:11.172513+00 f t Chickie DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9951 +8224 2025-10-03 15:56:08.634523+00 2025-10-03 15:56:08.634532+00 f t Daniel CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9952 +8225 2025-10-03 16:02:15.342499+00 2025-10-03 16:02:15.342507+00 f t Oscar CAT 14 5.00 0.00 f \N \N \N \N MALE \N f \N 1583 9952 +8226 2025-10-03 16:06:35.598474+00 2025-10-03 16:06:35.598484+00 f t Noir DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9953 +8228 2025-10-03 16:24:13.530657+00 2025-10-03 16:24:13.530668+00 f t Nala DOG \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9954 +8227 2025-10-03 16:24:13.362777+00 2025-10-03 16:24:13.362785+00 t t Nala DOG \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9954 +8230 2025-10-03 17:40:03.695391+00 2025-10-03 17:40:03.695404+00 f t Coco DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9955 +8231 2025-10-03 17:40:23.190413+00 2025-10-03 17:40:23.190426+00 f t Nilo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9955 +8232 2025-10-03 17:45:06.904859+00 2025-10-03 17:45:06.904868+00 f t Tintin CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9956 +8233 2025-10-03 17:55:20.653573+00 2025-10-03 17:55:20.653583+00 f t Billita CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9957 +8234 2025-10-03 18:07:27.984494+00 2025-10-03 18:07:27.984503+00 f t Luna DOG \N 16.60 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9958 +8235 2025-10-03 18:32:58.553572+00 2025-10-03 18:32:58.5536+00 f t Gina DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9960 +8236 2025-10-03 18:33:53.365171+00 2025-10-03 18:33:53.365179+00 f t Zarza CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9961 +8237 2025-10-03 18:54:49.949502+00 2025-10-03 18:54:49.949516+00 f t Rony DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9962 +8238 2025-10-03 19:29:21.278424+00 2025-10-03 19:29:21.278432+00 f t Emilio DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9963 +8239 2025-10-03 19:29:45.069674+00 2025-10-03 19:29:45.069681+00 f t Horus DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9964 +8240 2025-10-03 19:30:58.26555+00 2025-10-03 19:30:58.265559+00 f t Canela DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9963 +8241 2025-10-03 20:24:32.357693+00 2025-10-03 20:24:32.357701+00 f t Coco CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9965 +8242 2025-10-03 20:27:58.096044+00 2025-10-03 20:27:58.096057+00 f t Loki CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9966 +8243 2025-10-03 20:34:00.025676+00 2025-10-03 20:34:00.025686+00 f t Pedro CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9967 +8244 2025-10-03 20:46:58.829256+00 2025-10-03 20:46:58.829268+00 f t Dilla CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9968 +8245 2025-10-03 21:06:09.433817+00 2025-10-03 21:06:09.433825+00 f t pongo DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9969 +8246 2025-10-03 21:13:23.62502+00 2025-10-03 21:13:23.625029+00 f t Magnus DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9970 +8247 2025-10-03 21:16:22.30621+00 2025-10-03 21:16:22.306219+00 f t YAIZA DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9971 +8248 2025-10-03 21:24:51.628011+00 2025-10-03 21:24:51.628023+00 f t Rex DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9972 +8249 2025-10-03 21:25:10.112638+00 2025-10-03 21:25:10.112651+00 f t Rex CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9972 +8250 2025-10-03 22:32:06.559062+00 2025-10-03 22:32:06.559072+00 f t Rita CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9973 +8251 2025-10-03 23:16:47.157797+00 2025-10-03 23:16:47.157806+00 f t Olivia DOG \N 45.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9974 +8252 2025-10-03 23:56:42.794199+00 2025-10-03 23:56:42.794208+00 f t Chen DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9975 +8253 2025-10-04 00:37:03.314031+00 2025-10-04 00:37:03.31404+00 f t Boris DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9977 +8254 2025-10-04 00:38:29.037407+00 2025-10-04 00:38:29.037415+00 f t Boris CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9978 +8255 2025-10-04 00:41:27.058344+00 2025-10-04 00:41:27.058352+00 f t Athos CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9979 +8256 2025-10-04 00:57:51.291482+00 2025-10-04 00:57:51.29149+00 f t Nirvana CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9981 +8257 2025-10-04 01:00:01.361225+00 2025-10-04 01:00:01.361239+00 f t Milka DOG \N 26.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9982 +8258 2025-10-04 01:50:26.085309+00 2025-10-04 01:50:26.085319+00 f t otto DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9984 +8259 2025-10-04 08:46:38.914053+00 2025-10-04 08:46:38.914062+00 f t Tintin CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9985 +8260 2025-10-04 08:47:06.294812+00 2025-10-04 08:47:06.294821+00 f t Tintim CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9986 +8261 2025-10-04 09:34:14.583791+00 2025-10-04 09:34:14.583804+00 f t Toto DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9987 +8262 2025-10-04 13:53:36.625217+00 2025-10-04 13:53:36.625229+00 f t Marcelo DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9988 +8263 2025-10-04 13:56:38.49126+00 2025-10-04 13:56:38.491268+00 f t Bulma CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9989 +8265 2025-10-04 14:46:48.730745+00 2025-10-04 14:46:48.730754+00 f t Merluza CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9991 +8266 2025-10-04 14:51:13.870555+00 2025-10-04 14:51:13.870563+00 f t Bucky DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9992 +8267 2025-10-04 15:09:34.807188+00 2025-10-04 15:09:34.807198+00 f t We CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9993 +8268 2025-10-04 15:35:26.272389+00 2025-10-04 15:35:26.272397+00 f t Filmus CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9994 +8269 2025-10-04 15:35:51.839195+00 2025-10-04 15:35:51.839203+00 f t Theo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9995 +8270 2025-10-04 15:45:52.137027+00 2025-10-04 15:45:52.137035+00 f t Hela CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9996 +8271 2025-10-04 15:50:26.609726+00 2025-10-04 15:50:26.609734+00 f t Violeta CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 9997 +8272 2025-10-04 16:58:37.52034+00 2025-10-04 16:58:37.520348+00 f t Negro CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9999 +8273 2025-10-04 16:59:30.064667+00 2025-10-04 16:59:30.064678+00 f t Taiguer CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9999 +8274 2025-10-04 17:08:40.881697+00 2025-10-04 17:08:40.881708+00 f t Panchita DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10000 +8275 2025-10-04 17:44:46.121303+00 2025-10-04 17:44:46.121315+00 f t Odin DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10001 +8276 2025-10-04 18:00:48.989034+00 2025-10-04 18:00:48.989042+00 f t Calisi CAT 2 0.00 0.00 t \N \N \N \N FEMALE \N f 27 1208 9772 +8229 2025-10-03 17:40:03.363365+00 2025-10-03 17:40:03.363381+00 t t Coco DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9955 +8264 2025-10-04 14:46:25.259272+00 2025-10-04 14:46:25.259284+00 t t Merluza DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 9991 +8277 2025-10-04 18:40:51.666054+00 2025-10-04 18:40:51.666063+00 f t Cookie DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10004 +8278 2025-10-04 18:46:24.953495+00 2025-10-04 18:46:24.953504+00 f t Merli CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10005 +8279 2025-10-04 18:56:58.196037+00 2025-10-04 18:56:58.196046+00 f t Fungi DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10006 +8280 2025-10-04 20:16:59.805388+00 2025-10-04 20:16:59.805402+00 f t Uri CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10009 +8281 2025-10-04 20:50:54.798713+00 2025-10-04 20:50:54.798722+00 f t Newton DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10010 +8282 2025-10-04 21:53:52.800639+00 2025-10-04 21:53:52.80065+00 f t Gorda DOG \N 65.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10013 +8283 2025-10-04 22:33:10.895258+00 2025-10-04 22:33:10.895267+00 f t Jiz CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10015 +8284 2025-10-04 22:39:03.51343+00 2025-10-04 22:39:03.513444+00 f t Lola DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10016 +8285 2025-10-04 22:56:41.857552+00 2025-10-04 22:56:41.857566+00 f t Daisy DOG \N 6.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10017 +8286 2025-10-04 22:57:23.432256+00 2025-10-04 22:57:23.432269+00 f t Jane DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10018 +8287 2025-10-04 23:00:04.769694+00 2025-10-04 23:00:04.769712+00 f t Mimicha CAT \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10019 +8288 2025-10-04 23:11:55.640642+00 2025-10-04 23:11:55.640651+00 f t Pipper DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10020 +8289 2025-10-04 23:31:49.902268+00 2025-10-04 23:31:49.902279+00 f t Pipo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10021 +8290 2025-10-04 23:49:53.996265+00 2025-10-04 23:49:53.996274+00 f t Dulce CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10022 +8291 2025-10-05 00:06:11.06217+00 2025-10-05 00:06:11.062179+00 f t Shankara CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10023 +8292 2025-10-05 00:22:05.724502+00 2025-10-05 00:22:05.724514+00 f t Kendo CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10024 +8293 2025-10-05 00:32:09.677209+00 2025-10-05 00:32:09.677218+00 f t Kk CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10025 +8294 2025-10-05 01:35:43.997246+00 2025-10-05 01:35:43.997257+00 f t Max DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10026 +8295 2025-10-05 01:59:57.889838+00 2025-10-05 01:59:57.88985+00 f t napo DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10027 +8296 2025-10-05 02:01:05.293382+00 2025-10-05 02:01:05.29339+00 f t napo DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10027 +8297 2025-10-05 03:28:57.586861+00 2025-10-05 03:28:57.58687+00 f t Nina DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10028 +8298 2025-10-05 03:30:17.768091+00 2025-10-05 03:30:17.7681+00 f t Melli CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10029 +8299 2025-10-05 03:34:05.829715+00 2025-10-05 03:34:05.829724+00 f t Nina DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10030 +8300 2025-10-05 04:06:55.919212+00 2025-10-05 04:06:55.919225+00 f t Fatih DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10031 +8301 2025-10-05 04:41:00.156934+00 2025-10-05 04:41:00.156943+00 f t Fatih DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10033 +8302 2025-10-05 05:13:55.594572+00 2025-10-05 05:13:55.594585+00 f t Fatih DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10034 +8303 2025-10-05 05:36:43.564212+00 2025-10-05 05:36:43.56422+00 f t Perth CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10035 +8304 2025-10-05 06:28:31.59541+00 2025-10-05 06:28:31.595418+00 f t Mara DOG \N 33.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10036 +8305 2025-10-05 06:32:14.157899+00 2025-10-05 06:32:14.157908+00 f t Guido CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10037 +8306 2025-10-05 06:47:55.795707+00 2025-10-05 06:47:55.795717+00 f t Lola DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10038 +8307 2025-10-05 08:14:17.405029+00 2025-10-05 08:14:17.405038+00 f t Keyla CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10039 +8308 2025-10-05 09:19:05.396108+00 2025-10-05 09:19:05.396117+00 f t LUCCA DOG \N 5.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10040 +8309 2025-10-05 09:38:01.938684+00 2025-10-05 09:38:01.938694+00 f t RUFINA DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10041 +8310 2025-10-05 10:40:14.2051+00 2025-10-05 10:40:14.205113+00 f t Pipo Achaval CAT \N 5.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10042 +8311 2025-10-05 11:27:56.535097+00 2025-10-05 11:27:56.535106+00 f t Pelu CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10044 +8312 2025-10-05 12:52:17.575987+00 2025-10-05 12:52:17.575996+00 f t Thor DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10045 +8313 2025-10-05 13:51:58.665264+00 2025-10-05 13:51:58.665272+00 f t Noah DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10046 +8314 2025-10-05 14:11:11.470661+00 2025-10-05 14:11:11.470674+00 f t Sultan DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10048 +8315 2025-10-05 14:19:10.584481+00 2025-10-05 14:19:10.584494+00 f t Kiara DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10049 +8316 2025-10-05 14:37:35.812151+00 2025-10-05 14:37:35.812159+00 f t Noni DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10051 +8317 2025-10-05 14:57:16.353195+00 2025-10-05 14:57:16.353204+00 f t Osita CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10052 +8318 2025-10-05 14:58:00.91862+00 2025-10-05 14:58:00.91863+00 f t TITO DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10052 +8319 2025-10-05 15:03:23.416855+00 2025-10-05 15:03:23.416866+00 f t Mumi CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10053 +8320 2025-10-05 15:27:11.825758+00 2025-10-05 15:27:11.825767+00 f t Negra DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10054 +8321 2025-10-05 15:43:03.211179+00 2025-10-05 15:43:03.211187+00 f t Negra DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10055 +8322 2025-10-05 17:18:15.842948+00 2025-10-05 17:18:15.842957+00 f t Homero DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10058 +8323 2025-10-05 17:42:58.597651+00 2025-10-05 17:42:58.59766+00 f t Rollo DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10059 +8324 2025-10-05 17:43:18.280021+00 2025-10-05 17:43:18.28003+00 f t Le.my CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10060 +8325 2025-10-05 18:11:46.787103+00 2025-10-05 18:11:46.787113+00 f t Pipina DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10061 +8326 2025-10-05 18:13:37.526925+00 2025-10-05 18:13:37.526939+00 f t Pipina DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10061 +8327 2025-10-05 18:16:44.378655+00 2025-10-05 18:16:44.378668+00 f t Tasty doble bacon CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10062 +8328 2025-10-05 19:28:17.294027+00 2025-10-05 19:28:17.294035+00 f t Mía DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10064 +8329 2025-10-05 19:32:17.724571+00 2025-10-05 19:32:17.72458+00 f t Mía DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10065 +8330 2025-10-05 19:45:35.610478+00 2025-10-05 19:45:35.610487+00 f t Mía DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10066 +8331 2025-10-05 19:59:49.271766+00 2025-10-05 19:59:49.271774+00 f t ORO CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10067 +8332 2025-10-05 20:17:51.033448+00 2025-10-05 20:17:51.033456+00 f t VIEJITO CAT \N 5.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10068 +8333 2025-10-05 20:33:05.300354+00 2025-10-05 20:33:05.300363+00 f t Mango CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10069 +8334 2025-10-05 21:18:35.303485+00 2025-10-05 21:18:35.303494+00 f t Teo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10070 +8335 2025-10-05 21:39:50.685514+00 2025-10-05 21:39:50.685522+00 f t Ernesto DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10071 +8336 2025-10-05 21:46:28.453622+00 2025-10-05 21:46:28.453631+00 f t Ernesto DOG \N 33.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10072 +8337 2025-10-05 22:01:05.688825+00 2025-10-05 22:01:05.688833+00 f t Chi DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10073 +8338 2025-10-05 22:33:14.25151+00 2025-10-05 22:33:14.251519+00 f t Soj DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10075 +8339 2025-10-05 22:33:39.16694+00 2025-10-05 22:33:39.16695+00 f t Sally DOG \N 19.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10074 +8340 2025-10-06 00:10:44.62508+00 2025-10-06 00:10:44.625091+00 f t Hércules DOG \N 33.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10077 +8341 2025-10-06 00:30:54.686948+00 2025-10-06 00:30:54.686959+00 f t India DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10078 +8342 2025-10-06 00:40:41.312927+00 2025-10-06 00:40:41.312936+00 f t OLIVIA DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10079 +8343 2025-10-06 00:56:29.577679+00 2025-10-06 00:56:29.577688+00 f t Fiodor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10080 +8344 2025-10-06 00:59:13.688068+00 2025-10-06 00:59:13.688077+00 f t Fiodor CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10081 +8345 2025-10-06 01:31:18.322815+00 2025-10-06 01:31:18.322824+00 f t Bucky DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10083 +8346 2025-10-06 02:35:24.352727+00 2025-10-06 02:35:24.352736+00 f t Simon CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10084 +8347 2025-10-06 03:22:08.543312+00 2025-10-06 03:22:08.543321+00 f t Chiquitita CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10085 +8348 2025-10-06 03:32:45.595761+00 2025-10-06 03:32:45.59577+00 f t Maia DOG \N 38.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10086 +8349 2025-10-06 03:38:15.577457+00 2025-10-06 03:38:15.577466+00 f t Maia DOG \N 38.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10087 +8350 2025-10-06 04:34:36.46589+00 2025-10-06 04:34:36.465898+00 f t India DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10088 +8351 2025-10-06 08:43:17.115031+00 2025-10-06 08:43:17.11504+00 f t Mia DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10089 +8352 2025-10-06 10:03:56.938936+00 2025-10-06 10:03:56.938945+00 f t Vicky CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10091 +8353 2025-10-06 10:22:43.58761+00 2025-10-06 10:22:43.587619+00 f t Brownie DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10092 +8354 2025-10-06 10:56:47.024657+00 2025-10-06 10:56:47.024667+00 f t Chiquitita CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10094 +8355 2025-10-06 11:12:33.318075+00 2025-10-06 11:12:33.318083+00 f t Ludmi DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10095 +8356 2025-10-06 11:16:31.508592+00 2025-10-06 11:16:31.5086+00 f t Kira CAT \N 850.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10096 +8357 2025-10-06 11:25:07.615819+00 2025-10-06 11:25:07.615833+00 f t Chori DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10097 +8358 2025-10-06 11:30:38.38347+00 2025-10-06 11:30:38.383483+00 f t Huesitos CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10098 +8359 2025-10-06 11:41:47.474448+00 2025-10-06 11:41:47.474456+00 f t Toby DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10099 +8360 2025-10-06 11:42:02.520848+00 2025-10-06 11:42:02.52086+00 f t ceca DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10100 +8361 2025-10-06 11:44:06.174544+00 2025-10-06 11:44:06.174556+00 f t Emma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10101 +8362 2025-10-06 11:45:30.913637+00 2025-10-06 11:45:30.913645+00 f t Benja DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10101 +8363 2025-10-06 11:50:28.969895+00 2025-10-06 11:50:28.969903+00 f t Kimbo DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10102 +8364 2025-10-06 12:02:54.18082+00 2025-10-06 12:02:54.180829+00 f t Huesitos CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10103 +8365 2025-10-06 13:22:50.503748+00 2025-10-06 13:22:50.503758+00 f t Negro CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10104 +8366 2025-10-06 13:23:15.713562+00 2025-10-06 13:23:15.713574+00 f t Spinner DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10105 +8367 2025-10-06 13:34:46.841049+00 2025-10-06 13:34:46.841058+00 f t Tiny CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10106 +8368 2025-10-06 14:17:06.633128+00 2025-10-06 14:17:06.633138+00 f t Maya CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10107 +8369 2025-10-06 14:31:16.517311+00 2025-10-06 14:31:16.517319+00 f t Toba DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10108 +8370 2025-10-06 14:34:38.288024+00 2025-10-06 14:34:38.288034+00 f t Pato Piazza DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10109 +8371 2025-10-06 14:34:51.151477+00 2025-10-06 14:34:51.151487+00 f t Aru CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10110 +8372 2025-10-06 14:37:12.986888+00 2025-10-06 14:37:12.986899+00 f t Olivia DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10111 +8373 2025-10-06 14:38:12.259686+00 2025-10-06 14:38:12.259699+00 f t Maya CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10112 +8374 2025-10-06 14:39:23.844772+00 2025-10-06 14:39:23.844785+00 f t Aru CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10113 +8375 2025-10-06 14:44:23.459106+00 2025-10-06 14:44:23.459115+00 f t Milo DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10114 +8376 2025-10-06 14:45:00.624436+00 2025-10-06 14:45:00.624446+00 f t Mochi CAT \N 2.80 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10116 +8377 2025-10-06 14:55:25.187452+00 2025-10-06 14:55:25.187462+00 f t LULU CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10117 +8378 2025-10-06 14:57:10.715944+00 2025-10-06 14:57:10.715956+00 f t Lulu CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10118 +8379 2025-10-06 15:26:28.477924+00 2025-10-06 15:26:28.477933+00 f t Rosita CAT \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10119 +8380 2025-10-06 15:35:41.182581+00 2025-10-06 15:35:41.18259+00 f t McLovin DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10120 +8381 2025-10-06 15:37:37.538316+00 2025-10-06 15:37:37.538325+00 f t Mclovin DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10121 +8382 2025-10-06 15:38:57.628562+00 2025-10-06 15:38:57.628575+00 f t McLovin DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10122 +8383 2025-10-06 15:56:10.889262+00 2025-10-06 15:56:10.889271+00 f t McLovin DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10123 +8384 2025-10-06 16:11:46.955268+00 2025-10-06 16:11:46.955277+00 f t Elvis DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10125 +8385 2025-10-06 16:16:39.268176+00 2025-10-06 16:16:39.268187+00 f t Elvis DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10127 +8386 2025-10-06 16:18:40.990984+00 2025-10-06 16:18:40.990993+00 f t Hope DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10128 +8387 2025-10-06 16:34:35.170405+00 2025-10-06 16:34:35.170417+00 f t pacha CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10129 +8388 2025-10-06 16:58:21.13195+00 2025-10-06 16:58:21.131959+00 f t Thor DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10130 +8389 2025-10-06 17:26:03.854393+00 2025-10-06 17:26:03.854402+00 f t Ymir CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10132 +8390 2025-10-06 17:36:18.240265+00 2025-10-06 17:36:18.240274+00 f t churro DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10133 +8391 2025-10-06 17:41:08.03696+00 2025-10-06 17:41:08.03697+00 f t Carmina DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10134 +8392 2025-10-06 17:58:25.027337+00 2025-10-06 17:58:25.02735+00 f t Titi CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10135 +8393 2025-10-06 18:15:43.857108+00 2025-10-06 18:15:43.857118+00 f t simon DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10136 +8394 2025-10-06 18:28:03.471251+00 2025-10-06 18:28:03.47126+00 f t Ruffino CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10137 +8395 2025-10-06 18:44:46.44862+00 2025-10-06 18:44:46.448628+00 f t Emiliano DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10139 +8396 2025-10-06 18:45:02.69857+00 2025-10-06 18:45:02.698584+00 f t Flor DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10138 +8397 2025-10-06 18:45:29.337235+00 2025-10-06 18:45:29.337243+00 f t Aquiles DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10140 +8398 2025-10-06 18:47:24.51175+00 2025-10-06 18:47:24.511763+00 f t Uma DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10141 +8399 2025-10-06 18:57:57.38021+00 2025-10-06 18:57:57.380219+00 f t Iris CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10142 +8520 2025-10-08 11:41:58.588582+00 2025-10-08 11:41:58.588591+00 f t Saru DOG \N 21.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10261 +8402 2025-10-06 19:09:54.032208+00 2025-10-06 19:09:54.03222+00 f t Luz DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10143 +8403 2025-10-06 19:11:39.919337+00 2025-10-06 19:11:39.919346+00 f t Luz DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10143 +8400 2025-10-06 18:58:07.009086+00 2025-10-06 18:58:07.009097+00 t t Iris CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10142 +8404 2025-10-06 19:27:48.669348+00 2025-10-06 19:27:48.669356+00 f t Maguie DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10144 +8405 2025-10-06 19:34:01.143275+00 2025-10-06 19:34:01.143288+00 f t Tinto DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10145 +8401 2025-10-06 18:59:17.811524+00 2025-10-06 18:59:17.811533+00 t t Iris CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10142 +8406 2025-10-06 19:50:50.491194+00 2025-10-06 19:50:50.491203+00 f t Onni CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10147 +8407 2025-10-06 19:51:35.129581+00 2025-10-06 19:51:35.129593+00 f t Uma CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10146 +8408 2025-10-06 19:59:05.136647+00 2025-10-06 19:59:05.136657+00 f t gamora DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10148 +8409 2025-10-06 20:09:36.312825+00 2025-10-06 20:09:36.312835+00 f t tom DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10150 +8410 2025-10-06 20:09:54.23109+00 2025-10-06 20:09:54.231102+00 f t tom CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10150 +8411 2025-10-06 20:29:39.265376+00 2025-10-06 20:29:39.265387+00 f t Kayla DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10151 +8412 2025-10-06 20:30:21.012023+00 2025-10-06 20:30:21.012033+00 f t Samantha CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10152 +8413 2025-10-06 20:31:35.939712+00 2025-10-06 20:31:35.939725+00 f t Ulises CAT \N 3.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10152 +8414 2025-10-06 20:33:04.689162+00 2025-10-06 20:33:04.689175+00 f t Kayla DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10153 +8415 2025-10-06 20:45:51.884568+00 2025-10-06 20:45:51.884579+00 f t Roma DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10154 +8416 2025-10-06 20:52:02.988853+00 2025-10-06 20:52:02.988862+00 f t nino CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10155 +8417 2025-10-06 21:06:10.296625+00 2025-10-06 21:06:10.296634+00 f t Kimey DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10156 +8418 2025-10-06 21:18:05.913056+00 2025-10-06 21:18:05.913064+00 f t Oreo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10157 +8419 2025-10-06 21:20:28.807551+00 2025-10-06 21:20:28.807559+00 f t Odin CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10157 +8420 2025-10-06 21:50:45.160732+00 2025-10-06 21:50:45.160742+00 f t Alejandra Jodara DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10159 +8421 2025-10-06 21:55:37.621592+00 2025-10-06 21:55:37.621601+00 f t Ozzy DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10160 +8422 2025-10-06 22:24:01.894857+00 2025-10-06 22:24:01.894873+00 f t Teo DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10162 +8423 2025-10-06 22:30:48.482517+00 2025-10-06 22:30:48.48253+00 f t Ozzy DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10163 +8424 2025-10-06 22:40:24.861603+00 2025-10-06 22:40:24.861612+00 f t Jasper CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10164 +8425 2025-10-06 23:28:24.366045+00 2025-10-06 23:28:24.366056+00 f t Xaylo DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10165 +8426 2025-10-06 23:38:54.65937+00 2025-10-06 23:38:54.659385+00 f t Draco DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10167 +8427 2025-10-06 23:40:24.196801+00 2025-10-06 23:40:24.196811+00 f t Logan CAT \N 6.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 7529 +8428 2025-10-06 23:40:48.376251+00 2025-10-06 23:40:48.376265+00 f t Roman DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10168 +8429 2025-10-07 00:15:28.655897+00 2025-10-07 00:15:28.655906+00 f t Kahlo DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10169 +8430 2025-10-07 00:37:47.909638+00 2025-10-07 00:37:47.909648+00 f t Tobi Sus DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10170 +8431 2025-10-07 00:47:00.715074+00 2025-10-07 00:47:00.715085+00 f t Boris CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10171 +8432 2025-10-07 00:48:30.369671+00 2025-10-07 00:48:30.36968+00 f t INDIA CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10171 +8433 2025-10-07 00:48:52.14756+00 2025-10-07 00:48:52.147568+00 f t India CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10171 +8434 2025-10-07 00:49:10.429883+00 2025-10-07 00:49:10.429894+00 f t INDIA DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10171 +8435 2025-10-07 01:09:41.334977+00 2025-10-07 01:09:41.334986+00 f t Kuko CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10172 +8436 2025-10-07 01:10:10.676833+00 2025-10-07 01:10:10.676842+00 f t Kuko CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10172 +8437 2025-10-07 01:23:06.452588+00 2025-10-07 01:23:06.4526+00 f t rocco DOG \N 38.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10173 +8438 2025-10-07 01:38:50.259394+00 2025-10-07 01:38:50.259402+00 f t Sashi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10174 +8439 2025-10-07 01:54:48.451267+00 2025-10-07 01:54:48.451276+00 f t Chur DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10175 +8440 2025-10-07 02:32:50.210063+00 2025-10-07 02:32:50.210072+00 f t Simon CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10177 +8441 2025-10-07 02:49:35.806343+00 2025-10-07 02:49:35.80635+00 f t Aquiles DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10178 +8442 2025-10-07 02:51:07.391001+00 2025-10-07 02:51:07.391009+00 f t Aquiles DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10179 +8443 2025-10-07 04:48:19.235619+00 2025-10-07 04:48:19.235627+00 f t Pucca DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10181 +8444 2025-10-07 05:35:14.770726+00 2025-10-07 05:35:14.770735+00 f t Claudia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10182 +8445 2025-10-07 06:06:56.403055+00 2025-10-07 06:06:56.403064+00 f t Frida DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10183 +8446 2025-10-07 06:07:54.844482+00 2025-10-07 06:07:54.844491+00 f t Claudia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10184 +8447 2025-10-07 06:16:54.886382+00 2025-10-07 06:16:54.886391+00 f t Chela DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10185 +8448 2025-10-07 09:46:34.552879+00 2025-10-07 09:46:34.55289+00 f t Joaquin DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10186 +8449 2025-10-07 10:21:45.016499+00 2025-10-07 10:21:45.016511+00 f t Copito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10187 +8450 2025-10-07 10:22:34.000435+00 2025-10-07 10:22:34.000446+00 f t Felix CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10187 +8451 2025-10-07 10:25:10.534234+00 2025-10-07 10:25:10.534242+00 f t Copito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10188 +8452 2025-10-07 10:25:56.926367+00 2025-10-07 10:25:56.926375+00 f t Felix CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10188 +8453 2025-10-07 10:29:23.631469+00 2025-10-07 10:29:23.631478+00 f t Copete DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10189 +8454 2025-10-07 10:29:42.877043+00 2025-10-07 10:29:42.877053+00 f t Copito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10189 +8455 2025-10-07 10:30:17.176544+00 2025-10-07 10:30:17.176551+00 f t felix CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10189 +8456 2025-10-07 10:36:09.044355+00 2025-10-07 10:36:09.044365+00 f t Pipo CAT \N 5.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10190 +8457 2025-10-07 10:50:21.410695+00 2025-10-07 10:50:21.410703+00 f t Pompom CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10191 +8458 2025-10-07 10:50:47.000063+00 2025-10-07 10:50:47.000072+00 f t Tintin CAT \N 2.70 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10191 +8459 2025-10-07 11:36:14.841119+00 2025-10-07 11:36:14.841128+00 f t enzo DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10192 +8460 2025-10-07 11:40:57.65905+00 2025-10-07 11:40:57.659059+00 f t Dolce DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10193 +8461 2025-10-07 12:35:59.146162+00 2025-10-07 12:35:59.146169+00 f t Lima DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10194 +8462 2025-10-07 12:37:02.717773+00 2025-10-07 12:37:02.717784+00 f t Wenchi CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10195 +8463 2025-10-07 12:44:27.556693+00 2025-10-07 12:44:27.556701+00 f t Orégano CAT \N 6.90 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10196 +8464 2025-10-07 12:45:48.453829+00 2025-10-07 12:45:48.453837+00 f t Canela CAT \N 3.40 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10196 +8465 2025-10-07 12:46:24.81198+00 2025-10-07 12:46:24.811991+00 f t Joy CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10196 +8466 2025-10-07 13:06:41.012936+00 2025-10-07 13:06:41.012946+00 f t Loky CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10197 +8467 2025-10-07 13:10:39.691441+00 2025-10-07 13:10:39.691451+00 f t Luna CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10198 +8468 2025-10-07 13:27:04.840606+00 2025-10-07 13:27:04.840619+00 f t cairo CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10199 +8469 2025-10-07 13:30:32.723199+00 2025-10-07 13:30:32.72321+00 f t Chimuelo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10200 +8470 2025-10-07 13:31:16.803993+00 2025-10-07 13:31:16.804002+00 f t Chimuelo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10201 +8471 2025-10-07 13:35:02.231972+00 2025-10-07 13:35:02.231985+00 f t Tinto DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10202 +8472 2025-10-07 13:42:29.087512+00 2025-10-07 13:42:29.087526+00 f t Tinto DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10203 +8473 2025-10-07 13:57:48.348091+00 2025-10-07 13:57:48.348103+00 f t Angello DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10204 +8474 2025-10-07 14:00:58.2341+00 2025-10-07 14:00:58.234109+00 f t gato CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10205 +8475 2025-10-07 14:21:03.734009+00 2025-10-07 14:21:03.734019+00 f t Gigi CAT \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10207 +8476 2025-10-07 14:24:19.997888+00 2025-10-07 14:24:19.997897+00 f t Berlin CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10208 +8477 2025-10-07 14:53:01.872528+00 2025-10-07 14:53:01.872542+00 f t Orégano CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10209 +8478 2025-10-07 14:53:49.768348+00 2025-10-07 14:53:49.768361+00 f t Canela CAT \N 3.40 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10209 +8479 2025-10-07 14:54:16.814222+00 2025-10-07 14:54:16.81423+00 f t Joy CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10209 +8480 2025-10-07 14:58:37.842803+00 2025-10-07 14:58:37.842812+00 f t LUNA DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10210 +8481 2025-10-07 15:33:33.393203+00 2025-10-07 15:33:33.393216+00 f t Noah DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10211 +8482 2025-10-07 15:59:37.750769+00 2025-10-07 15:59:37.75078+00 f t Milo CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10212 +8483 2025-10-07 16:37:44.770879+00 2025-10-07 16:37:44.770888+00 f t Elvira Acevedo DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10213 +8484 2025-10-07 17:52:35.316188+00 2025-10-07 17:52:35.316199+00 f t Beto DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10216 +8485 2025-10-07 19:04:31.323553+00 2025-10-07 19:04:31.323562+00 f t Guri DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10219 +8486 2025-10-07 19:04:48.587503+00 2025-10-07 19:04:48.587512+00 f t Sofia CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10220 +8487 2025-10-07 19:24:13.934079+00 2025-10-07 19:24:13.934088+00 f t Nuri CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10221 +8488 2025-10-07 19:35:21.599781+00 2025-10-07 19:35:21.599796+00 f t Chiquitin DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10222 +8489 2025-10-07 19:39:35.330405+00 2025-10-07 19:39:35.33042+00 f t Spinner DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10223 +8490 2025-10-07 20:08:35.828257+00 2025-10-07 20:08:35.828266+00 f t Papu DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10225 +8491 2025-10-07 20:55:26.140951+00 2025-10-07 20:55:26.140964+00 f t Meredith CAT \N 0.80 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10227 +8492 2025-10-07 21:17:56.97324+00 2025-10-07 21:17:56.97325+00 f t Mitsu DOG \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10228 +8493 2025-10-07 21:30:25.29454+00 2025-10-07 21:30:25.29455+00 f t Makena DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10230 +8494 2025-10-07 21:40:18.146673+00 2025-10-07 21:40:18.146683+00 f t Albus CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10231 +8495 2025-10-07 23:13:25.946371+00 2025-10-07 23:13:25.94638+00 f t Mandy CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10232 +8496 2025-10-07 23:17:49.253914+00 2025-10-07 23:17:49.253922+00 f t león DOG \N 9.35 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10233 +8521 2025-10-08 12:14:17.330789+00 2025-10-08 12:14:17.330798+00 f t Luna DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10265 +8525 2025-10-08 14:26:54.860551+00 2025-10-08 14:26:54.860563+00 f t CHOP SECCO DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10270 +8526 2025-10-08 14:44:37.433314+00 2025-10-08 14:44:37.433322+00 f t Mabro DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10271 +8527 2025-10-08 14:48:13.345155+00 2025-10-08 14:48:13.345167+00 f t Pato CAT \N 4.80 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10272 +8528 2025-10-08 15:28:41.69004+00 2025-10-08 15:28:41.690048+00 f t Linda DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10274 +8529 2025-10-08 15:52:41.422551+00 2025-10-08 15:52:41.422561+00 f t Linda DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10275 +8530 2025-10-08 16:24:19.181694+00 2025-10-08 16:24:19.181708+00 f t Lolo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10276 +8531 2025-10-08 16:30:36.766319+00 2025-10-08 16:30:36.766328+00 f t Tita CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10278 +8532 2025-10-08 17:17:47.549684+00 2025-10-08 17:17:47.549693+00 f t Falucho DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10279 +8533 2025-10-08 17:26:42.036192+00 2025-10-08 17:26:42.036201+00 f t Muni DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10281 +8534 2025-10-08 17:38:05.123802+00 2025-10-08 17:38:05.123813+00 f t Giussepino CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10282 +8535 2025-10-08 17:38:43.639058+00 2025-10-08 17:38:43.639067+00 f t Giuseppino CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10282 +8536 2025-10-08 17:39:24.416009+00 2025-10-08 17:39:24.416024+00 f t Milo CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10283 +8537 2025-10-08 17:56:53.294282+00 2025-10-08 17:56:53.29429+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10284 +8538 2025-10-08 18:28:46.246362+00 2025-10-08 18:28:46.246372+00 f t Gino CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10285 +8539 2025-10-08 18:46:27.777403+00 2025-10-08 18:46:27.777412+00 f t Michulin CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10286 +8540 2025-10-08 18:54:11.269702+00 2025-10-08 18:54:11.269711+00 f t Lugo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10287 +8541 2025-10-08 18:57:24.355498+00 2025-10-08 18:57:24.355506+00 f t Arturo CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10288 +8542 2025-10-08 19:13:13.149041+00 2025-10-08 19:13:13.149048+00 f t TEST DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10289 +8543 2025-10-08 19:16:32.68902+00 2025-10-08 19:16:32.689034+00 f t Apolo DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10290 +8544 2025-10-08 19:28:44.200593+00 2025-10-08 19:28:44.200602+00 f t Titi CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10291 +8545 2025-10-08 19:37:57.232969+00 2025-10-08 19:37:57.232981+00 f t Apú CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10293 +8546 2025-10-08 19:41:13.542703+00 2025-10-08 19:41:13.542712+00 f t Chiquitin DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10294 +8547 2025-10-08 19:58:13.483708+00 2025-10-08 19:58:13.483717+00 f t Bruna DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10295 +8548 2025-10-08 20:10:59.328626+00 2025-10-08 20:10:59.328636+00 f t MANCHITA CAT \N 0.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10296 +8549 2025-10-08 20:13:09.133694+00 2025-10-08 20:13:09.133702+00 f t Bartolo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10297 +8550 2025-10-08 20:13:39.010404+00 2025-10-08 20:13:39.010413+00 f t MANCHITA CAT \N 0.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10298 +8551 2025-10-08 20:28:15.136937+00 2025-10-08 20:28:15.136946+00 f t Roque DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10299 +8552 2025-10-08 20:43:35.044903+00 2025-10-08 20:43:35.044911+00 f t Papachu DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10300 +8553 2025-10-08 20:43:58.790581+00 2025-10-08 20:43:58.790589+00 f t Papachu DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10300 +8554 2025-10-08 21:09:14.822027+00 2025-10-08 21:09:14.82204+00 f t Canela DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10302 +8555 2025-10-08 21:22:03.027377+00 2025-10-08 21:22:03.027386+00 f t Mancho CAT \N 0.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10303 +8556 2025-10-08 21:37:51.741913+00 2025-10-08 21:37:51.741922+00 f t Negra DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10304 +8557 2025-10-08 21:58:52.876751+00 2025-10-08 21:58:52.876759+00 f t Violeta DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10305 +8558 2025-10-08 22:22:42.412907+00 2025-10-08 22:22:42.412921+00 f t Manchita CAT \N 0.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10308 +8559 2025-10-08 22:31:16.88517+00 2025-10-08 22:31:16.885181+00 f t Mateo DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10309 +8560 2025-10-08 22:40:18.192351+00 2025-10-08 22:40:18.192359+00 f t Feli CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10310 +8561 2025-10-08 22:44:42.204164+00 2025-10-08 22:44:42.204173+00 f t Fito CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10311 +8562 2025-10-08 22:47:30.098783+00 2025-10-08 22:47:30.098793+00 f t Lorenzo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10312 +8563 2025-10-08 23:02:51.682588+00 2025-10-08 23:02:51.682597+00 f t Chiquita DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10313 +8564 2025-10-08 23:14:26.416436+00 2025-10-08 23:14:26.416445+00 f t Luz Fryda Saez DOG \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10314 +8565 2025-10-08 23:44:29.783169+00 2025-10-08 23:44:29.783181+00 f t Nina CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10316 +8566 2025-10-09 00:58:33.647671+00 2025-10-09 00:58:33.64768+00 f t Reina CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10317 +8567 2025-10-09 01:30:03.949685+00 2025-10-09 01:30:03.949699+00 f t Lulú CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10318 +8568 2025-10-09 02:01:57.063105+00 2025-10-09 02:01:57.063113+00 f t Copito DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10320 +8569 2025-10-09 03:01:44.254065+00 2025-10-09 03:01:44.254076+00 f t Hachi DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10321 +8570 2025-10-09 04:50:21.110724+00 2025-10-09 04:50:21.110733+00 f t Negro DOG \N 47.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10323 +8571 2025-10-09 10:04:01.0315+00 2025-10-09 10:04:01.031512+00 f t Jazmin CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10324 +8572 2025-10-09 10:50:34.440577+00 2025-10-09 10:50:34.440586+00 f t Ramon CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10325 +8573 2025-10-09 11:02:33.829005+00 2025-10-09 11:02:33.829014+00 f t Andy DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10326 +8574 2025-10-09 11:13:59.88758+00 2025-10-09 11:13:59.887588+00 f t Litten DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10327 +8575 2025-10-09 11:14:29.072217+00 2025-10-09 11:14:29.072225+00 f t Litten CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10328 +8576 2025-10-09 11:29:02.703326+00 2025-10-09 11:29:02.703336+00 f t Hachi DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10329 +8577 2025-10-09 12:10:53.322875+00 2025-10-09 12:10:53.322883+00 f t Berta DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10330 +8578 2025-10-09 12:30:11.230818+00 2025-10-09 12:30:11.230826+00 f t Ruz CAT \N 1.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10331 +8579 2025-10-09 12:40:53.96542+00 2025-10-09 12:40:53.965429+00 f t Nala DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10332 +8580 2025-10-09 12:41:13.104955+00 2025-10-09 12:41:13.104964+00 f t Chita DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10333 +8581 2025-10-09 12:41:42.517132+00 2025-10-09 12:41:42.517141+00 f t Chita CAT \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10333 +8582 2025-10-09 13:07:16.14889+00 2025-10-09 13:07:16.148898+00 f t Prueba 09oct DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10337 +8583 2025-10-09 13:14:52.430347+00 2025-10-09 13:14:52.430356+00 f t tizi DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10338 +8584 2025-10-09 14:17:02.48539+00 2025-10-09 14:17:02.485398+00 f t Amelia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10340 +8585 2025-10-09 14:19:08.946368+00 2025-10-09 14:19:08.946379+00 f t Chimivhanga CAT \N 2.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10341 +8587 2025-10-09 14:30:58.81654+00 2025-10-09 14:30:58.81655+00 f t Chiquita DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10344 +8588 2025-10-09 14:32:16.994525+00 2025-10-09 14:32:16.994533+00 f t Cala CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10345 +8586 2025-10-09 14:19:35.803591+00 2025-10-09 14:19:35.803604+00 f t Raul CAT 8 7.00 0.00 t \N \N \N \N MALE \N f \N 1208 10342 +8589 2025-10-09 14:50:18.589471+00 2025-10-09 14:50:18.589483+00 f t chiquita DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10348 +8590 2025-10-09 15:04:00.155581+00 2025-10-09 15:04:00.15559+00 f t Dakota DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10349 +8591 2025-10-09 15:05:28.483854+00 2025-10-09 15:05:28.483865+00 f t Titan DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10349 +8592 2025-10-09 15:06:26.941532+00 2025-10-09 15:06:26.94154+00 f t Roco DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10349 +8593 2025-10-09 15:07:10.559993+00 2025-10-09 15:07:10.560007+00 f t Rufina DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10349 +8594 2025-10-09 15:07:50.770873+00 2025-10-09 15:07:50.77088+00 f t Keila DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10349 +8595 2025-10-09 15:23:06.00211+00 2025-10-09 15:23:06.002123+00 f t Nina DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10351 +8596 2025-10-09 18:03:48.956174+00 2025-10-09 18:03:48.956182+00 f t Violeta DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10354 +8597 2025-10-09 18:06:17.916411+00 2025-10-09 18:06:17.91642+00 f t Amancio CAT \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10355 +8598 2025-10-09 18:06:28.549369+00 2025-10-09 18:06:28.549376+00 f t Nilo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10356 +8599 2025-10-09 18:30:59.088424+00 2025-10-09 18:30:59.088432+00 f t Mulan CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10358 +11808 2025-11-24 12:08:11.34273+00 2025-11-24 12:08:11.342743+00 f t Gatin CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14321 +8601 2025-10-09 19:20:38.249077+00 2025-10-09 19:20:38.249088+00 f t Joaquin CAT \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10361 +8602 2025-10-09 20:01:09.486635+00 2025-10-09 20:01:09.486646+00 f t Greta CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10362 +8603 2025-10-09 20:03:14.135843+00 2025-10-09 20:03:14.135853+00 f t Ciro CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10363 +8604 2025-10-09 20:12:56.893902+00 2025-10-09 20:12:56.893913+00 f t Lupe DOG \N 0.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10364 +8605 2025-10-09 20:14:09.9759+00 2025-10-09 20:14:09.975912+00 f t Ringo DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10365 +8606 2025-10-09 20:29:41.124635+00 2025-10-09 20:29:41.124646+00 f t Astor DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10367 +8607 2025-10-09 20:43:31.314451+00 2025-10-09 20:43:31.314465+00 f t Calcetín CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10368 +8608 2025-10-09 21:07:37.973561+00 2025-10-09 21:07:37.973571+00 f t Beto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10369 +8609 2025-10-09 21:33:29.422922+00 2025-10-09 21:33:29.42293+00 f t Amarillo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10371 +8610 2025-10-09 21:44:15.970154+00 2025-10-09 21:44:15.970165+00 f t Gycci CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10372 +8611 2025-10-09 21:45:32.960524+00 2025-10-09 21:45:32.960535+00 f t Gucci CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10372 +8612 2025-10-09 21:53:35.373104+00 2025-10-09 21:53:35.373112+00 f t Oso DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10373 +8613 2025-10-09 21:56:11.976537+00 2025-10-09 21:56:11.976546+00 f t T CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10374 +8614 2025-10-09 22:06:20.422129+00 2025-10-09 22:06:20.422139+00 f t Felipe DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10375 +8615 2025-10-09 22:56:15.332981+00 2025-10-09 22:56:15.332988+00 f t Pipo CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10378 +8616 2025-10-09 22:59:59.165541+00 2025-10-09 22:59:59.16555+00 f t Kenzo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10378 +8617 2025-10-09 23:51:18.839169+00 2025-10-09 23:51:18.839177+00 f t Canela DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10380 +8618 2025-10-10 00:41:22.758847+00 2025-10-10 00:41:22.758855+00 f t Mili DOG \N 8.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10381 +8619 2025-10-10 01:29:27.716317+00 2025-10-10 01:29:27.716326+00 f t Rola DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10382 +8620 2025-10-10 01:31:32.857726+00 2025-10-10 01:31:32.857734+00 f t Rola DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10383 +8621 2025-10-10 02:20:41.642609+00 2025-10-10 02:20:41.642618+00 f t Lola DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10384 +8622 2025-10-10 02:57:52.708907+00 2025-10-10 02:57:52.708918+00 f t Kyra CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10386 +8623 2025-10-10 03:08:05.05571+00 2025-10-10 03:08:05.055721+00 f t Gaspar CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10387 +8624 2025-10-10 05:11:39.367636+00 2025-10-10 05:11:39.367645+00 f t Cala DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10388 +8625 2025-10-10 07:41:38.981193+00 2025-10-10 07:41:38.981201+00 f t Luna CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10389 +8626 2025-10-10 08:20:44.17841+00 2025-10-10 08:20:44.178422+00 f t Mostaza CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10390 +8627 2025-10-10 09:03:07.664294+00 2025-10-10 09:03:07.664305+00 f t Josefina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10391 +8628 2025-10-10 10:24:19.720221+00 2025-10-10 10:24:19.720232+00 f t MICHI CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10392 +8629 2025-10-10 10:24:52.000819+00 2025-10-10 10:24:52.000828+00 f t Rocky DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10393 +8630 2025-10-10 10:50:49.39163+00 2025-10-10 10:50:49.39164+00 f t Agatha CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10395 +8631 2025-10-10 11:38:15.914563+00 2025-10-10 11:38:15.914572+00 f t Marti DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10397 +8632 2025-10-10 12:15:28.455069+00 2025-10-10 12:15:28.455078+00 f t Viejo DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10398 +8633 2025-10-10 12:16:23.766757+00 2025-10-10 12:16:23.766769+00 f t Xxx CAT \N 500.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10399 +8634 2025-10-10 12:29:07.386797+00 2025-10-10 12:29:07.386806+00 f t Loky CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10400 +8635 2025-10-10 12:50:26.211693+00 2025-10-10 12:50:26.211701+00 f t Lola DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10401 +8636 2025-10-10 12:56:40.855384+00 2025-10-10 12:56:40.855392+00 f t Lobito DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10402 +8637 2025-10-10 13:00:09.966289+00 2025-10-10 13:00:09.966303+00 f t Palomo DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10403 +8638 2025-10-10 13:05:11.291268+00 2025-10-10 13:05:11.291277+00 f t Casimiro CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10405 +8639 2025-10-10 13:06:32.501912+00 2025-10-10 13:06:32.501921+00 f t Kichu CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10407 +8640 2025-10-10 13:07:34.212756+00 2025-10-10 13:07:34.212764+00 f t kichu DOG \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10407 +8641 2025-10-10 13:13:16.785117+00 2025-10-10 13:13:16.785126+00 f t Sashy DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10411 +8642 2025-10-10 13:14:26.904065+00 2025-10-10 13:14:26.904074+00 f t Lana DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10410 +8643 2025-10-10 13:15:47.022074+00 2025-10-10 13:15:47.022082+00 f t kichu DOG \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10412 +8644 2025-10-10 13:18:25.140683+00 2025-10-10 13:18:25.140692+00 f t Canela DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10413 +8645 2025-10-10 13:29:15.87475+00 2025-10-10 13:29:15.874758+00 f t Kichu CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10414 +8646 2025-10-10 13:41:32.844924+00 2025-10-10 13:41:32.844932+00 f t Shakty DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10415 +8647 2025-10-10 14:01:35.483452+00 2025-10-10 14:01:35.483466+00 f t Andy DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10416 +8648 2025-10-10 14:03:29.151943+00 2025-10-10 14:03:29.151953+00 f t Andy DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10417 +8649 2025-10-10 14:32:30.93293+00 2025-10-10 14:32:30.932939+00 f t Berta DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10418 +8650 2025-10-10 14:33:18.206024+00 2025-10-10 14:33:18.206033+00 f t Mollie DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10418 +8651 2025-10-10 14:45:28.79063+00 2025-10-10 14:45:28.790639+00 f t Pina CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10419 +8652 2025-10-10 14:49:39.141979+00 2025-10-10 14:49:39.141988+00 f t Andy DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10420 +8653 2025-10-10 15:04:17.877018+00 2025-10-10 15:04:17.877026+00 f t Chatran CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10421 +8654 2025-10-10 15:13:34.8174+00 2025-10-10 15:13:34.817409+00 f t Zukimaki DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10422 +8655 2025-10-10 15:21:41.398545+00 2025-10-10 15:21:41.398554+00 f t Ravioles CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10423 +8656 2025-10-10 15:49:45.647981+00 2025-10-10 15:49:45.64799+00 f t Felicitas CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10424 +8657 2025-10-10 15:50:25.886549+00 2025-10-10 15:50:25.886559+00 f t Ron DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10425 +8658 2025-10-10 15:55:17.851895+00 2025-10-10 15:55:17.851907+00 f t Gonzalito CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10426 +8659 2025-10-10 16:01:23.628932+00 2025-10-10 16:01:23.628942+00 f t Ron DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10427 +8660 2025-10-10 16:02:55.602959+00 2025-10-10 16:02:55.602966+00 f t Cesar DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10428 +8661 2025-10-10 16:05:27.594173+00 2025-10-10 16:05:27.594186+00 f t Aurora CAT \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10429 +8662 2025-10-10 16:06:43.621802+00 2025-10-10 16:06:43.621815+00 f t Julieta DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10430 +8663 2025-10-10 16:09:06.544967+00 2025-10-10 16:09:06.54498+00 f t Tito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10431 +8664 2025-10-10 16:11:37.837637+00 2025-10-10 16:11:37.837646+00 f t Zhea CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10432 +8665 2025-10-10 16:14:38.018833+00 2025-10-10 16:14:38.018841+00 f t Roma DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10433 +8666 2025-10-10 16:41:28.50159+00 2025-10-10 16:41:28.5016+00 f t Duque CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10434 +8667 2025-10-10 16:48:06.605983+00 2025-10-10 16:48:06.605991+00 f t Julieta DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10435 +8668 2025-10-10 16:52:39.666789+00 2025-10-10 16:52:39.666799+00 f t Tito DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10436 +8669 2025-10-10 17:26:02.353128+00 2025-10-10 17:26:02.353136+00 f t Läire CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10437 +8670 2025-10-10 17:27:34.952032+00 2025-10-10 17:27:34.952041+00 f t Zeus CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10438 +8671 2025-10-10 18:16:50.080904+00 2025-10-10 18:16:50.080912+00 f t Indiana DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10439 +8672 2025-10-10 18:38:10.719458+00 2025-10-10 18:38:10.719467+00 f t Alba DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10440 +8673 2025-10-10 18:46:19.634057+00 2025-10-10 18:46:19.634067+00 f t José DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10441 +8674 2025-10-10 18:48:10.718134+00 2025-10-10 18:48:10.718143+00 f t Viena DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10442 +8675 2025-10-10 19:11:17.632575+00 2025-10-10 19:11:17.632588+00 f t Tenazas CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10443 +8676 2025-10-10 20:00:41.311357+00 2025-10-10 20:00:41.311368+00 f t Misha CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10445 +8677 2025-10-10 20:01:31.287717+00 2025-10-10 20:01:31.28773+00 f t Chicha CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10445 +8678 2025-10-10 20:02:08.690942+00 2025-10-10 20:02:08.690953+00 f t Chicho CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10445 +8679 2025-10-10 20:06:45.527518+00 2025-10-10 20:06:45.527532+00 f t Neron DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10446 +8680 2025-10-10 20:14:34.258549+00 2025-10-10 20:14:34.258558+00 f t Toto DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10447 +8681 2025-10-10 21:05:01.477882+00 2025-10-10 21:05:01.477893+00 f t Firu DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10448 +8682 2025-10-10 21:24:47.67468+00 2025-10-10 21:24:47.674689+00 f t Bochi CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10449 +8683 2025-10-10 21:26:39.729887+00 2025-10-10 21:26:39.729901+00 f t Bochi CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10450 +8684 2025-10-10 21:41:23.271864+00 2025-10-10 21:41:23.271872+00 f t Luis DOG \N 2.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10451 +8685 2025-10-10 21:44:36.244901+00 2025-10-10 21:44:36.24491+00 f t Deli CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10452 +8686 2025-10-10 21:46:54.901295+00 2025-10-10 21:46:54.901305+00 f t Samy DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10453 +8687 2025-10-10 22:20:07.205198+00 2025-10-10 22:20:07.205213+00 f t Cooper DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10456 +8688 2025-10-10 22:20:26.13826+00 2025-10-10 22:20:26.138269+00 f t Toti CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10455 +8689 2025-10-10 22:32:36.901181+00 2025-10-10 22:32:36.901189+00 f t Lizy DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10457 +8690 2025-10-10 23:24:21.001473+00 2025-10-10 23:24:21.001479+00 f t Lana DOG \N 35.00 0.00 t \N \N \N \N FEMALE \N f 1 114 10459 +8691 2025-10-10 23:32:46.93704+00 2025-10-10 23:32:46.937047+00 f t Fanky DOG \N 32.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10460 +8692 2025-10-10 23:46:41.275293+00 2025-10-10 23:46:41.275304+00 f t Mancha DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10461 +8693 2025-10-10 23:47:13.02166+00 2025-10-10 23:47:13.021668+00 f t Whiskas CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10462 +8694 2025-10-10 23:55:50.084644+00 2025-10-10 23:55:50.084655+00 f t Molly CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10463 +8695 2025-10-11 00:00:38.572894+00 2025-10-11 00:00:38.572908+00 f t Simba DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10464 +8696 2025-10-11 00:15:26.073135+00 2025-10-11 00:15:26.073144+00 f t Lara CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10465 +8697 2025-10-11 00:52:57.415834+00 2025-10-11 00:52:57.415843+00 f t Mora DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10467 +8698 2025-10-11 01:49:46.034297+00 2025-10-11 01:49:46.034308+00 f t Renata CAT \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10469 +8699 2025-10-11 02:26:40.590269+00 2025-10-11 02:26:40.590278+00 f t Botas DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10470 +8700 2025-10-11 02:27:09.184802+00 2025-10-11 02:27:09.184815+00 f t Botas CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10471 +8701 2025-10-11 03:06:34.610721+00 2025-10-11 03:06:34.610734+00 f t Homero DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10472 +8702 2025-10-11 04:53:04.247127+00 2025-10-11 04:53:04.247169+00 f t Olivia DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10474 +8703 2025-10-11 05:09:08.109103+00 2025-10-11 05:09:08.109116+00 f t Mavis1 CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10475 +8704 2025-10-11 05:10:01.648098+00 2025-10-11 05:10:01.648109+00 f t Nina DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10477 +8705 2025-10-11 05:14:16.642429+00 2025-10-11 05:14:16.642441+00 f t Mavis CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10478 +8706 2025-10-11 10:47:51.397131+00 2025-10-11 10:47:51.397142+00 f t Meelo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10481 +8707 2025-10-11 10:49:54.576322+00 2025-10-11 10:49:54.576331+00 f t Meelo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10482 +8708 2025-10-11 13:13:25.463289+00 2025-10-11 13:13:25.463299+00 f t Kino CAT \N 3.85 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10484 +8709 2025-10-11 13:32:56.670514+00 2025-10-11 13:32:56.670527+00 f t Reina DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10485 +8710 2025-10-11 13:49:03.769627+00 2025-10-11 13:49:03.769637+00 f t Bonnie CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10486 +8711 2025-10-11 14:13:05.226437+00 2025-10-11 14:13:05.226449+00 f t Joaquín CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10488 +8712 2025-10-11 14:32:08.579102+00 2025-10-11 14:32:08.579114+00 f t Mora DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10489 +8713 2025-10-11 16:07:35.092135+00 2025-10-11 16:07:35.092145+00 f t Maia DOG \N 31.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10493 +8714 2025-10-11 16:11:25.089156+00 2025-10-11 16:11:25.089168+00 f t Maia DOG \N 31.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10494 +8715 2025-10-11 16:15:02.10933+00 2025-10-11 16:15:02.109344+00 f t Maia DOG \N 31.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10495 +8716 2025-10-11 16:59:56.17637+00 2025-10-11 16:59:56.176379+00 f t Duke DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10496 +8717 2025-10-11 17:42:51.775905+00 2025-10-11 17:42:51.775915+00 f t Benito DOG \N 24.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10497 +8718 2025-10-11 17:56:41.047691+00 2025-10-11 17:56:41.047704+00 f t KALA DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10498 +8719 2025-10-11 18:26:06.86024+00 2025-10-11 18:26:06.86025+00 f t Franchesco CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10501 +8720 2025-10-11 18:38:32.253951+00 2025-10-11 18:38:32.25396+00 f t Bandi DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10503 +8721 2025-10-11 18:39:29.907237+00 2025-10-11 18:39:29.907251+00 f t Bandi CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10503 +8722 2025-10-11 19:27:30.953334+00 2025-10-11 19:27:30.953342+00 f t Roma DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10504 +8723 2025-10-11 20:18:45.929838+00 2025-10-11 20:18:45.929847+00 f t Frida CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10507 +8724 2025-10-11 22:37:06.427482+00 2025-10-11 22:37:06.427491+00 f t León DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10509 +8725 2025-10-12 00:00:13.077726+00 2025-10-12 00:00:13.077739+00 f t Jairo DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10511 +8726 2025-10-12 00:03:17.769575+00 2025-10-12 00:03:17.769585+00 f t Jairo DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10512 +8727 2025-10-12 00:19:59.327465+00 2025-10-12 00:19:59.327478+00 f t PIPI CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10514 +8728 2025-10-12 00:21:04.063188+00 2025-10-12 00:21:04.063202+00 f t Tita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10514 +8729 2025-10-12 00:42:51.056656+00 2025-10-12 00:42:51.056665+00 f t Oliver CAT \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10515 +8730 2025-10-12 00:47:49.330635+00 2025-10-12 00:47:49.330647+00 f t Oliver CAT \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10516 +8731 2025-10-12 03:02:03.107393+00 2025-10-12 03:02:03.107401+00 f t Ari CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10517 +8732 2025-10-12 03:03:06.380308+00 2025-10-12 03:03:06.380317+00 f t Rocki DOG \N 60.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10518 +8733 2025-10-12 03:48:04.344668+00 2025-10-12 03:48:04.344681+00 f t Titi DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10519 +8734 2025-10-12 03:52:29.35741+00 2025-10-12 03:52:29.357424+00 f t Astro DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10520 +8735 2025-10-12 04:01:08.433058+00 2025-10-12 04:01:08.433068+00 f t Rocky DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10521 +8736 2025-10-12 04:19:50.411916+00 2025-10-12 04:19:50.411928+00 f t Perrita DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10524 +8737 2025-10-12 05:34:51.58582+00 2025-10-12 05:34:51.585829+00 f t Pipa DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10525 +8738 2025-10-12 06:19:08.471493+00 2025-10-12 06:19:08.471502+00 f t Menta DOG \N 5.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10526 +8739 2025-10-12 11:10:21.31359+00 2025-10-12 11:10:21.313599+00 f t Tiento CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10528 +8740 2025-10-12 11:21:53.74279+00 2025-10-12 11:21:53.742802+00 f t Milu CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10529 +8741 2025-10-12 12:38:32.645693+00 2025-10-12 12:38:32.645702+00 f t Malik DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10533 +8742 2025-10-12 12:41:24.609411+00 2025-10-12 12:41:24.609424+00 f t Malik DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10534 +8743 2025-10-12 13:27:31.271061+00 2025-10-12 13:27:31.271075+00 f t Mil9 DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10535 +8744 2025-10-12 13:43:08.396315+00 2025-10-12 13:43:08.396325+00 f t Sky DOG \N 19.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10536 +8745 2025-10-12 13:52:37.097021+00 2025-10-12 13:52:37.09703+00 f t Cata CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10537 +8746 2025-10-12 14:02:01.730385+00 2025-10-12 14:02:01.730397+00 f t Chatran CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10539 +8747 2025-10-12 14:44:16.016239+00 2025-10-12 14:44:16.016248+00 f t Pelé DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10540 +8748 2025-10-12 15:25:14.357127+00 2025-10-12 15:25:14.357135+00 f t Negrito DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10541 +8749 2025-10-12 15:31:16.630709+00 2025-10-12 15:31:16.630718+00 f t Moro DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10542 +8750 2025-10-12 15:35:56.689068+00 2025-10-12 15:35:56.68908+00 f t Gandhi DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10543 +8751 2025-10-12 15:54:45.683225+00 2025-10-12 15:54:45.683234+00 f t Caju DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10544 +8752 2025-10-12 16:22:30.203635+00 2025-10-12 16:22:30.203643+00 f t Canela CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10546 +8753 2025-10-12 16:50:23.4468+00 2025-10-12 16:50:23.446808+00 f t Misha CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10547 +8754 2025-10-12 16:59:03.931249+00 2025-10-12 16:59:03.93126+00 f t Shinzo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10549 +8755 2025-10-12 17:01:13.005333+00 2025-10-12 17:01:13.005342+00 f t Tintin DOG \N 16.40 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10550 +8756 2025-10-12 17:12:10.623484+00 2025-10-12 17:12:10.623497+00 f t Rushka CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10552 +8757 2025-10-12 17:21:56.285939+00 2025-10-12 17:21:56.285953+00 f t Rushka CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10553 +8758 2025-10-12 18:50:15.861276+00 2025-10-12 18:50:15.861286+00 f t Cocó CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10554 +8759 2025-10-12 19:04:02.024836+00 2025-10-12 19:04:02.02485+00 f t SATURNO CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10555 +8760 2025-10-12 19:15:54.812775+00 2025-10-12 19:15:54.812787+00 f t ca CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10556 +8761 2025-10-12 19:17:10.442978+00 2025-10-12 19:17:10.442987+00 f t Rushka CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10557 +8762 2025-10-12 19:21:56.370675+00 2025-10-12 19:21:56.370684+00 f t Maxwell CAT \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10558 +11809 2025-11-24 12:17:49.501011+00 2025-11-24 12:17:49.50102+00 f t Marvin CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14323 +8764 2025-10-12 19:54:14.077754+00 2025-10-12 19:54:14.077765+00 f t Umy CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10560 +8765 2025-10-12 20:19:22.534021+00 2025-10-12 20:19:22.534029+00 f t Gema CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10563 +8766 2025-10-12 20:23:45.225067+00 2025-10-12 20:23:45.225075+00 f t Wagner DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10564 +8767 2025-10-12 20:24:44.320069+00 2025-10-12 20:24:44.320077+00 f t Lino CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10561 +8768 2025-10-12 20:39:20.720801+00 2025-10-12 20:39:20.72081+00 f t Lino CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10565 +8769 2025-10-12 21:22:52.278269+00 2025-10-12 21:22:52.278278+00 f t Rio DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10566 +8770 2025-10-12 21:36:18.341414+00 2025-10-12 21:36:18.341423+00 f t Rio DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10567 +8771 2025-10-12 22:16:20.524634+00 2025-10-12 22:16:20.524643+00 f t Runa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10568 +8772 2025-10-12 22:24:09.251465+00 2025-10-12 22:24:09.251479+00 f t Lino CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10569 +8773 2025-10-12 23:00:56.216068+00 2025-10-12 23:00:56.216081+00 f t Mancu CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10572 +8774 2025-10-12 23:30:09.907904+00 2025-10-12 23:30:09.907914+00 f t Mia DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10573 +8775 2025-10-12 23:42:11.514674+00 2025-10-12 23:42:11.514683+00 f t Lopez CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10574 +8776 2025-10-13 01:22:32.33451+00 2025-10-13 01:22:32.334519+00 f t Tay DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10577 +8777 2025-10-13 01:39:54.611194+00 2025-10-13 01:39:54.611202+00 f t Coco DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10578 +8778 2025-10-13 02:36:14.865117+00 2025-10-13 02:36:14.865127+00 f t Chuky CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10579 +8779 2025-10-13 02:37:17.459799+00 2025-10-13 02:37:17.45981+00 f t Pretty CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10579 +8780 2025-10-13 02:37:51.624987+00 2025-10-13 02:37:51.625+00 f t Chino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10579 +8781 2025-10-13 02:38:31.493843+00 2025-10-13 02:38:31.493852+00 f t Zeus CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10579 +8782 2025-10-13 02:47:39.736288+00 2025-10-13 02:47:39.736296+00 f t Daia CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10581 +8783 2025-10-13 02:49:49.671172+00 2025-10-13 02:49:49.67118+00 f t Apolo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10582 +8784 2025-10-13 02:50:27.263265+00 2025-10-13 02:50:27.263279+00 f t Theo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10583 +8785 2025-10-13 02:56:08.36042+00 2025-10-13 02:56:08.360428+00 f t Lino CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10565 +8786 2025-10-13 03:01:00.581904+00 2025-10-13 03:01:00.581913+00 f t Bono DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10584 +8787 2025-10-13 04:42:01.536832+00 2025-10-13 04:42:01.536845+00 f t Negro DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10586 +8788 2025-10-13 04:42:50.67672+00 2025-10-13 04:42:50.676729+00 f t Gaia DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10587 +8789 2025-10-13 04:44:07.063513+00 2025-10-13 04:44:07.063524+00 f t Capitán DOG \N 33.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10588 +8790 2025-10-13 04:48:46.805214+00 2025-10-13 04:48:46.805224+00 f t Cielo DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10589 +8791 2025-10-13 05:36:55.455113+00 2025-10-13 05:36:55.455121+00 f t Eter CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10592 +8792 2025-10-13 06:37:40.025332+00 2025-10-13 06:37:40.025343+00 f t Dulce CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10593 +8793 2025-10-13 06:40:09.053834+00 2025-10-13 06:40:09.053845+00 f t Greta CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10593 +8794 2025-10-13 06:41:59.027092+00 2025-10-13 06:41:59.027101+00 f t Sami CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10593 +8795 2025-10-13 07:44:23.165416+00 2025-10-13 07:44:23.165424+00 f t Coco CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10594 +8796 2025-10-13 08:17:42.841755+00 2025-10-13 08:17:42.841766+00 f t Steven CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10595 +8797 2025-10-13 08:20:29.762814+00 2025-10-13 08:20:29.762825+00 f t Steven CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10596 +8798 2025-10-13 10:35:13.520844+00 2025-10-13 10:35:13.520854+00 f t lolita DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10598 +8799 2025-10-13 11:56:12.046428+00 2025-10-13 11:56:12.046437+00 f t Noah DOG \N 28.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10600 +8800 2025-10-13 11:56:33.722135+00 2025-10-13 11:56:33.722144+00 f t Lola CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10601 +8801 2025-10-13 12:03:33.783894+00 2025-10-13 12:03:33.783906+00 f t Clara DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10602 +8802 2025-10-13 12:09:10.632236+00 2025-10-13 12:09:10.632245+00 f t Lolo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10603 +8803 2025-10-13 12:10:09.215679+00 2025-10-13 12:10:09.215692+00 f t Laia CAT \N 4.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10603 +8804 2025-10-13 13:21:01.946609+00 2025-10-13 13:21:01.946618+00 f t Arturo CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10604 +8805 2025-10-13 13:24:44.798957+00 2025-10-13 13:24:44.798969+00 f t pipi CAT \N 700.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10605 +8806 2025-10-13 13:25:12.047908+00 2025-10-13 13:25:12.047921+00 f t Kyra DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10606 +8807 2025-10-13 13:35:13.887251+00 2025-10-13 13:35:13.887261+00 f t Aquiles DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10607 +8808 2025-10-13 13:43:47.609561+00 2025-10-13 13:43:47.609575+00 f t Mei DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10608 +8809 2025-10-13 13:47:06.573913+00 2025-10-13 13:47:06.573925+00 f t Zoe CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10609 +8810 2025-10-13 13:51:43.824419+00 2025-10-13 13:51:43.824427+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10611 +8811 2025-10-13 13:54:48.698285+00 2025-10-13 13:54:48.698297+00 f t Richelieu CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10612 +8812 2025-10-13 14:10:38.405346+00 2025-10-13 14:10:38.405355+00 f t Tucci CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10613 +8813 2025-10-13 14:29:39.581206+00 2025-10-13 14:29:39.581214+00 f t Obama DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10615 +8814 2025-10-13 14:41:11.628914+00 2025-10-13 14:41:11.628922+00 f t Summer CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10616 +8815 2025-10-13 14:44:29.150605+00 2025-10-13 14:44:29.150616+00 f t Toto DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10618 +8816 2025-10-13 14:47:10.740684+00 2025-10-13 14:47:10.740695+00 f t Barto DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10619 +8817 2025-10-13 14:48:05.780075+00 2025-10-13 14:48:05.780085+00 f t Cenizo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10620 +8818 2025-10-13 14:50:04.711094+00 2025-10-13 14:50:04.711109+00 f t Simon DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10623 +8819 2025-10-13 14:51:42.56232+00 2025-10-13 14:51:42.562329+00 f t Ladrón CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10624 +8820 2025-10-13 14:52:51.086252+00 2025-10-13 14:52:51.086264+00 f t Kiara DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10625 +8821 2025-10-13 14:52:56.040516+00 2025-10-13 14:52:56.040529+00 f t Vaquita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10624 +8822 2025-10-13 14:54:57.578036+00 2025-10-13 14:54:57.578047+00 f t Cleo CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10626 +8823 2025-10-13 15:15:53.280466+00 2025-10-13 15:15:53.280475+00 f t Roma CAT \N 2.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10629 +8824 2025-10-13 15:18:31.471631+00 2025-10-13 15:18:31.471642+00 f t Lola DOG \N 12.70 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10630 +8825 2025-10-13 15:19:51.488418+00 2025-10-13 15:19:51.488427+00 f t Aquiles DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10631 +8826 2025-10-13 15:25:47.224221+00 2025-10-13 15:25:47.224229+00 f t Simon CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10632 +407 2025-01-20 13:26:25.885+00 2025-01-20 13:26:25.885+00 f t Alice CAT 9 0.00 0.00 t 2015-12-02 2025-01-25 \N \N FEMALE \N t \N 114 345 +8827 2025-10-13 15:46:01.958268+00 2025-10-13 15:46:01.958278+00 f t Leila CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10633 +8828 2025-10-13 15:58:20.582185+00 2025-10-13 15:58:20.582197+00 f t Milo DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10634 +8829 2025-10-13 16:09:42.444086+00 2025-10-13 16:09:42.444095+00 f t Luke CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10635 +8830 2025-10-13 16:44:12.104251+00 2025-10-13 16:44:12.10426+00 f t Zarza CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10636 +8831 2025-10-13 16:46:10.402285+00 2025-10-13 16:46:10.402294+00 f t Goyo CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10637 +8832 2025-10-13 17:06:19.169238+00 2025-10-13 17:06:19.169246+00 f t Mort CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10639 +8833 2025-10-13 17:46:01.343784+00 2025-10-13 17:46:01.343794+00 f t Simba CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10641 +8834 2025-10-13 17:46:26.13127+00 2025-10-13 17:46:26.131279+00 f t Botas CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10641 +8835 2025-10-13 17:55:13.674055+00 2025-10-13 17:55:13.674065+00 f t luke DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10642 +8836 2025-10-13 18:36:50.1787+00 2025-10-13 18:36:50.178708+00 f t Chimu CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10646 +8837 2025-10-13 18:39:45.969164+00 2025-10-13 18:39:45.969173+00 f t Zara DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10647 +8838 2025-10-13 19:54:41.780824+00 2025-10-13 19:54:41.780832+00 f t Drako DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10650 +8839 2025-10-13 20:20:25.10555+00 2025-10-13 20:20:25.105562+00 f t akuma DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10651 +8840 2025-10-13 20:55:50.775006+00 2025-10-13 20:55:50.775015+00 f t Duna DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10652 +8841 2025-10-13 21:01:06.987818+00 2025-10-13 21:01:06.987833+00 f t Duna DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10653 +8842 2025-10-13 21:04:48.986508+00 2025-10-13 21:04:48.986517+00 f t Duna DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10654 +8843 2025-10-13 21:19:48.406949+00 2025-10-13 21:19:48.406959+00 f t Lupe CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10655 +8844 2025-10-13 21:35:46.636135+00 2025-10-13 21:35:46.636147+00 f t Roger CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10656 +8845 2025-10-13 22:02:43.847277+00 2025-10-13 22:02:43.847818+00 f t Lola CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10658 +8846 2025-10-13 22:04:50.669892+00 2025-10-13 22:04:50.670257+00 f t Chloe CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10659 +8847 2025-10-13 22:37:14.617841+00 2025-10-13 22:37:14.617855+00 f t Maga CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10660 +8848 2025-10-13 22:46:49.494846+00 2025-10-13 22:46:49.494856+00 f t Padawan CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10661 +8849 2025-10-13 22:49:57.409962+00 2025-10-13 22:49:57.409976+00 f t Titan DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10662 +8850 2025-10-13 23:19:27.662241+00 2025-10-13 23:19:27.662253+00 f t Sofia DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10666 +8851 2025-10-13 23:21:05.991267+00 2025-10-13 23:21:05.991277+00 f t Paquita DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10665 +8852 2025-10-13 23:25:54.556856+00 2025-10-13 23:25:54.556873+00 f t Paquita DOG \N 2.40 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10667 +8853 2025-10-13 23:33:16.528391+00 2025-10-13 23:33:16.528404+00 f t Pancha DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10668 +8854 2025-10-13 23:33:30.551249+00 2025-10-13 23:33:30.551258+00 f t Pancha DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10668 +8855 2025-10-13 23:47:41.744005+00 2025-10-13 23:47:41.744014+00 f t Atún DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10669 +8856 2025-10-14 00:01:15.17643+00 2025-10-14 00:01:15.17644+00 f t China CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10670 +8857 2025-10-14 00:05:08.449685+00 2025-10-14 00:05:08.449693+00 f t Duna DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10671 +8858 2025-10-14 00:13:14.246102+00 2025-10-14 00:13:14.246114+00 f t Audrey DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10672 +8859 2025-10-14 00:30:59.189021+00 2025-10-14 00:30:59.189031+00 f t Nina DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10674 +8860 2025-10-14 00:33:06.635511+00 2025-10-14 00:33:06.63552+00 f t Nina DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10674 +8861 2025-10-14 00:43:50.394644+00 2025-10-14 00:43:50.394658+00 f t Satanas CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10675 +8862 2025-10-14 00:46:22.651233+00 2025-10-14 00:46:22.651245+00 f t Satanas CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10675 +8863 2025-10-14 01:11:41.573274+00 2025-10-14 01:11:41.573287+00 f t Patitas suaves Zambrana Chavez CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10676 +8864 2025-10-14 01:12:34.731584+00 2025-10-14 01:12:34.731594+00 f t Patitas DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10677 +8865 2025-10-14 01:15:54.951225+00 2025-10-14 01:15:54.951237+00 f t Patitas CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10678 +8866 2025-10-14 01:24:24.225793+00 2025-10-14 01:24:24.225802+00 f t Pepa DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10679 +8867 2025-10-14 01:40:53.961869+00 2025-10-14 01:40:53.961879+00 f t Laurie CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10680 +8868 2025-10-14 01:41:32.826127+00 2025-10-14 01:41:32.82614+00 f t Jo CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10680 +8869 2025-10-14 02:51:14.117446+00 2025-10-14 02:51:14.11746+00 f t Paco CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10681 +8870 2025-10-14 03:00:16.819043+00 2025-10-14 03:00:16.819054+00 f t Isabella DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10682 +8871 2025-10-14 03:16:27.450683+00 2025-10-14 03:16:27.450692+00 f t Betun CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10683 +8872 2025-10-14 03:19:34.841055+00 2025-10-14 03:19:34.841065+00 f t Orion DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10684 +8873 2025-10-14 04:10:56.044759+00 2025-10-14 04:10:56.044768+00 f t Gordo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10685 +8874 2025-10-14 07:14:50.267765+00 2025-10-14 07:14:50.267774+00 f t Ciro CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10688 +8875 2025-10-14 08:11:46.375226+00 2025-10-14 08:11:46.375239+00 f t Chatran CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10689 +8876 2025-10-14 10:54:55.950453+00 2025-10-14 10:54:55.950464+00 f t Odin uberti CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10690 +8877 2025-10-14 12:38:26.275339+00 2025-10-14 12:38:26.27535+00 f t Patricia Arriondo DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10691 +8878 2025-10-14 13:27:14.809347+00 2025-10-14 13:27:14.809358+00 f t Zaira DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10692 +8879 2025-10-14 13:31:19.683993+00 2025-10-14 13:31:19.684001+00 f t Julieta DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10693 +8880 2025-10-14 13:44:15.792228+00 2025-10-14 13:44:15.792239+00 f t Tirion CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10694 +8881 2025-10-14 13:54:18.850949+00 2025-10-14 13:54:18.85096+00 f t penny CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10695 +8882 2025-10-14 13:56:00.521601+00 2025-10-14 13:56:00.521613+00 f t Leono CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10695 +8883 2025-10-14 14:14:22.265464+00 2025-10-14 14:14:22.265473+00 f t Shiva DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10696 +8884 2025-10-14 14:22:37.32748+00 2025-10-14 14:22:37.327493+00 f t Juana DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10697 +8885 2025-10-14 14:25:09.053246+00 2025-10-14 14:25:09.053257+00 f t Morita DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10698 +8886 2025-10-14 14:32:25.55769+00 2025-10-14 14:32:25.5577+00 f t gringa CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10700 +8887 2025-10-14 14:43:42.077629+00 2025-10-14 14:43:42.077638+00 f t Toto CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10701 +8888 2025-10-14 14:48:26.534201+00 2025-10-14 14:48:26.534209+00 f t Zamba CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10702 +8889 2025-10-14 15:00:36.951342+00 2025-10-14 15:00:36.951357+00 f t Nino DOG \N 3.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10703 +8890 2025-10-14 15:39:31.062988+00 2025-10-14 15:39:31.063+00 f t Mufasa CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10706 +8891 2025-10-14 15:45:53.340393+00 2025-10-14 15:45:53.340404+00 f t Pancha DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10707 +8892 2025-10-14 16:06:33.123413+00 2025-10-14 16:06:33.123422+00 f t Andrea Daguerre DOG \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10708 +8893 2025-10-14 16:06:57.270254+00 2025-10-14 16:06:57.270263+00 f t Bangkok CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10708 +8894 2025-10-14 16:43:08.53312+00 2025-10-14 16:43:08.533137+00 f t kila CAT \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10709 +8895 2025-10-14 16:43:37.920391+00 2025-10-14 16:43:37.9204+00 f t Luna CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10710 +8896 2025-10-14 16:49:18.804828+00 2025-10-14 16:49:18.804836+00 f t Yack DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10711 +8897 2025-10-14 17:20:43.874121+00 2025-10-14 17:20:43.87413+00 f t NN DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10713 +8898 2025-10-14 17:48:32.842647+00 2025-10-14 17:48:32.84266+00 f t Satanas CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10715 +8899 2025-10-14 18:04:26.97864+00 2025-10-14 18:04:26.978648+00 f t Moncho DOG \N 23.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10716 +8900 2025-10-14 18:41:43.977596+00 2025-10-14 18:41:43.977605+00 f t Mimi DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10719 +8901 2025-10-14 18:42:28.004362+00 2025-10-14 18:42:28.004371+00 f t mimi CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10719 +8902 2025-10-14 18:42:55.53408+00 2025-10-14 18:42:55.534089+00 f t mimi CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10719 +8903 2025-10-14 19:03:44.20048+00 2025-10-14 19:03:44.200499+00 f t tito DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10720 +8904 2025-10-14 20:20:44.446777+00 2025-10-14 20:20:44.446786+00 f t Pampa DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10722 +8905 2025-10-14 20:25:55.608856+00 2025-10-14 20:25:55.608865+00 f t Pampa DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10724 +8906 2025-10-14 20:30:18.469338+00 2025-10-14 20:30:18.469347+00 f t Tuta CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10725 +8907 2025-10-14 20:37:41.852133+00 2025-10-14 20:37:41.852142+00 f t Catriel DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10724 +8908 2025-10-14 20:47:18.777898+00 2025-10-14 20:47:18.777907+00 f t Perro DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10726 +8909 2025-10-14 20:55:52.781322+00 2025-10-14 20:55:52.781331+00 f t Tina DOG \N 400.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10727 +8910 2025-10-14 21:06:57.502999+00 2025-10-14 21:06:57.503008+00 f t Orión CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10728 +8911 2025-10-14 21:24:41.00936+00 2025-10-14 21:24:41.009369+00 f t Orion CAT \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10729 +8912 2025-10-14 21:28:26.621593+00 2025-10-14 21:28:26.621606+00 f t Orión DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10729 +8913 2025-10-14 22:17:51.208773+00 2025-10-14 22:17:51.208782+00 f t Kalu DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10730 +8914 2025-10-14 22:56:14.120605+00 2025-10-14 22:56:14.120618+00 f t Milo DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10731 +8915 2025-10-14 23:37:05.622711+00 2025-10-14 23:37:05.62272+00 f t Juanita CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10732 +8916 2025-10-14 23:38:29.010463+00 2025-10-14 23:38:29.010474+00 f t Sasha CAT \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10733 +8917 2025-10-14 23:49:55.247742+00 2025-10-14 23:49:55.247752+00 f t Rin CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10735 +8918 2025-10-15 00:08:46.104987+00 2025-10-15 00:08:46.104996+00 f t Nina DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10738 +8919 2025-10-15 00:18:24.312709+00 2025-10-15 00:18:24.312719+00 f t ronda DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10740 +8920 2025-10-15 01:07:26.75551+00 2025-10-15 01:07:26.75552+00 f t Moho CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10741 +8921 2025-10-15 01:22:36.838666+00 2025-10-15 01:22:36.838679+00 f t Ddrek CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10742 +8922 2025-10-15 01:22:51.643728+00 2025-10-15 01:22:51.643737+00 f t Derek DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10742 +8923 2025-10-15 01:32:52.981261+00 2025-10-15 01:32:52.981271+00 f t Pascal DOG \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10743 +8924 2025-10-15 01:33:07.719955+00 2025-10-15 01:33:07.719963+00 f t Pascal CAT \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10743 +8925 2025-10-15 01:45:21.152388+00 2025-10-15 01:45:21.152397+00 f t Ggg CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10744 +8926 2025-10-15 01:45:49.083578+00 2025-10-15 01:45:49.083587+00 f t Bulma CAT \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10745 +8927 2025-10-15 01:48:48.26375+00 2025-10-15 01:48:48.263763+00 f t Moksha CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10746 +8928 2025-10-15 02:51:02.0416+00 2025-10-15 02:51:02.041614+00 f t Lola DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10748 +8929 2025-10-15 03:09:07.988488+00 2025-10-15 03:09:07.988497+00 f t RR DOG \N 33.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10749 +8930 2025-10-15 03:30:46.93362+00 2025-10-15 03:30:46.933631+00 f t Ciro DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10750 +8931 2025-10-15 03:53:23.410368+00 2025-10-15 03:53:23.410377+00 f t Roque CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10751 +8932 2025-10-15 08:30:56.758016+00 2025-10-15 08:30:56.758027+00 f t Mala DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10753 +8933 2025-10-15 10:32:28.741658+00 2025-10-15 10:32:28.741671+00 f t Kira DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10755 +8934 2025-10-15 10:34:18.681503+00 2025-10-15 10:34:18.681516+00 f t Pocholita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10756 +8935 2025-10-15 10:59:33.580349+00 2025-10-15 10:59:33.580358+00 f t Tristan DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10758 +8936 2025-10-15 12:09:34.050695+00 2025-10-15 12:09:34.050705+00 f t Simba DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10759 +11810 2025-11-24 12:19:00.312884+00 2025-11-24 12:19:00.312896+00 f t Apollo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14324 +8938 2025-10-15 12:36:12.555936+00 2025-10-15 12:36:12.555949+00 f t pérsico rey de senillosa CAT \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 9297 +8937 2025-10-15 12:33:32.826228+00 2025-10-15 12:33:32.826241+00 f t morgan denzel CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9297 +8939 2025-10-15 12:40:29.202458+00 2025-10-15 12:40:29.202467+00 f t Syn DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10761 +8940 2025-10-15 13:46:58.591756+00 2025-10-15 13:46:58.591764+00 f t trinity DOG \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10763 +8941 2025-10-15 14:17:18.090425+00 2025-10-15 14:17:18.090435+00 f t Paz CAT \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10764 +8942 2025-10-15 14:17:35.457178+00 2025-10-15 14:17:35.457187+00 f t Tango DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10765 +8943 2025-10-15 14:21:53.53633+00 2025-10-15 14:21:53.536339+00 f t Catito CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10766 +8944 2025-10-15 14:27:07.693236+00 2025-10-15 14:27:07.693245+00 f t Lola DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10767 +8945 2025-10-15 14:33:34.627626+00 2025-10-15 14:33:34.627636+00 f t Bondiola CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10768 +8946 2025-10-15 14:43:33.037025+00 2025-10-15 14:43:33.037036+00 f t Osy DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10769 +8947 2025-10-15 14:47:12.13055+00 2025-10-15 14:47:12.130564+00 f t Lola CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10770 +8948 2025-10-15 14:47:37.997899+00 2025-10-15 14:47:37.997912+00 f t Kiara DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10771 +8949 2025-10-15 14:55:20.994785+00 2025-10-15 14:55:20.994794+00 f t Emilia DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10772 +8950 2025-10-15 14:57:05.462658+00 2025-10-15 14:57:05.462668+00 f t Lola CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10773 +8951 2025-10-15 15:00:23.794973+00 2025-10-15 15:00:23.794985+00 f t TEST DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10775 +8952 2025-10-15 15:00:26.011504+00 2025-10-15 15:00:26.011513+00 f t Crazy DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10774 +8953 2025-10-15 15:23:41.980881+00 2025-10-15 15:23:41.98089+00 f t Cappuccino CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10777 +8954 2025-10-15 15:54:43.040965+00 2025-10-15 15:54:43.040977+00 f t Lora CAT \N 2.20 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10779 +8955 2025-10-15 16:20:01.973905+00 2025-10-15 16:20:01.97392+00 f t Lora CAT \N 2.20 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10780 +8956 2025-10-15 16:50:24.66756+00 2025-10-15 16:50:24.667569+00 f t Lola DOG \N 33.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10782 +8957 2025-10-15 17:02:26.463361+00 2025-10-15 17:02:26.463371+00 f t Ravioles DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10783 +8958 2025-10-15 17:03:34.561847+00 2025-10-15 17:03:34.56186+00 f t Chase DOG \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10784 +8959 2025-10-15 17:13:32.482949+00 2025-10-15 17:13:32.482961+00 f t Blanquito DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10785 +8960 2025-10-15 17:20:15.146804+00 2025-10-15 17:20:15.146813+00 f t Flopy DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10786 +8961 2025-10-15 17:30:56.492429+00 2025-10-15 17:30:56.492439+00 f t Rocco DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10787 +8962 2025-10-15 17:38:07.548043+00 2025-10-15 17:38:07.548051+00 f t lizy DOG \N 36.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10788 +8963 2025-10-15 18:12:00.28438+00 2025-10-15 18:12:00.28439+00 f t Patitas CAT \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10789 +8964 2025-10-15 18:32:52.999004+00 2025-10-15 18:32:52.999014+00 f t tigre DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10790 +8965 2025-10-15 18:33:54.559407+00 2025-10-15 18:33:54.559416+00 f t Ftryja DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10791 +8967 2025-10-15 19:03:21.256606+00 2025-10-15 19:03:21.256616+00 f t Pumba DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10794 +8968 2025-10-15 19:06:50.557246+00 2025-10-15 19:06:50.557254+00 f t gonzalo CAT 0 10.00 0.00 t \N \N \N \N MALE \N f \N 1208 10795 +8969 2025-10-15 19:27:30.590121+00 2025-10-15 19:27:30.59013+00 f t Tina DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10798 +8970 2025-10-15 20:29:08.656322+00 2025-10-15 20:29:08.656331+00 f t Sophie DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10802 +8971 2025-10-15 20:33:29.060816+00 2025-10-15 20:33:29.060825+00 f t Bella CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10803 +8972 2025-10-15 20:35:17.589576+00 2025-10-15 20:35:17.589584+00 f t Mau CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10803 +8973 2025-10-15 20:36:47.953394+00 2025-10-15 20:36:47.953402+00 f t Bella CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10804 +8974 2025-10-15 20:51:20.877161+00 2025-10-15 20:51:20.877169+00 f t Cinza CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10805 +8975 2025-10-15 21:21:07.171313+00 2025-10-15 21:21:07.171323+00 f t Samy DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10806 +8976 2025-10-15 21:23:33.250581+00 2025-10-15 21:23:33.250592+00 f t Samy DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10806 +8977 2025-10-15 21:31:21.528576+00 2025-10-15 21:31:21.528587+00 f t Runa CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10808 +8978 2025-10-15 21:33:58.403568+00 2025-10-15 21:33:58.403579+00 f t Tito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10809 +8979 2025-10-15 21:55:04.961312+00 2025-10-15 21:55:04.961327+00 f t Palta DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10810 +8980 2025-10-15 21:55:09.788373+00 2025-10-15 21:55:09.788386+00 f t Patricia Arriondo CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10811 +8981 2025-10-15 22:36:32.005444+00 2025-10-15 22:36:32.005458+00 f t Pepe CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10815 +8982 2025-10-15 22:54:13.400429+00 2025-10-15 22:54:13.400438+00 f t Rodo DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10816 +8983 2025-10-15 23:01:15.38446+00 2025-10-15 23:01:15.38447+00 f t Nilo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10817 +8984 2025-10-15 23:07:55.670953+00 2025-10-15 23:07:55.670961+00 f t Milo1 DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10819 +8985 2025-10-15 23:29:23.25457+00 2025-10-15 23:29:23.25458+00 f t Oso DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10821 +8986 2025-10-15 23:32:56.13684+00 2025-10-15 23:32:56.136849+00 f t Chappie jose DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10822 +8987 2025-10-15 23:41:04.103858+00 2025-10-15 23:41:04.103871+00 f t Conina CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10823 +8988 2025-10-15 23:42:29.840892+00 2025-10-15 23:42:29.840905+00 f t Chimuelo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10825 +8989 2025-10-15 23:53:33.678618+00 2025-10-15 23:53:33.678628+00 f t Bella DOG \N 19.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10826 +8990 2025-10-16 00:00:05.001215+00 2025-10-16 00:00:05.001229+00 f t bella DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10827 +8991 2025-10-16 00:13:55.694007+00 2025-10-16 00:13:55.694015+00 f t Tina DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10828 +8992 2025-10-16 00:16:57.549748+00 2025-10-16 00:16:57.549757+00 f t Tina DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10829 +8993 2025-10-16 02:24:33.948139+00 2025-10-16 02:24:33.948151+00 f t Coco CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10831 +8994 2025-10-16 02:29:58.37145+00 2025-10-16 02:29:58.37146+00 f t Bruno DOG \N 36.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10832 +8995 2025-10-16 03:21:20.788458+00 2025-10-16 03:21:20.78847+00 f t Lima DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10833 +8996 2025-10-16 03:28:38.548585+00 2025-10-16 03:28:38.548594+00 f t Julio DOG \N 34.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10834 +8997 2025-10-16 05:43:33.401329+00 2025-10-16 05:43:33.401338+00 f t Camila DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10835 +8998 2025-10-16 09:13:55.777508+00 2025-10-16 09:13:55.777516+00 f t Perlita CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10838 +8999 2025-10-16 09:15:47.42336+00 2025-10-16 09:15:47.423369+00 f t Popito CAT \N 4.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10839 +9000 2025-10-16 09:56:08.372822+00 2025-10-16 09:56:08.372829+00 f t Gala DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10841 +9001 2025-10-16 09:56:34.008106+00 2025-10-16 09:56:34.008114+00 f t Simba CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10842 +9002 2025-10-16 10:56:42.335462+00 2025-10-16 10:56:42.335471+00 f t cleo DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10843 +9003 2025-10-16 10:57:09.386592+00 2025-10-16 10:57:09.386603+00 f t cleo CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10843 +9004 2025-10-16 11:55:35.032891+00 2025-10-16 11:55:35.032902+00 f t Ellie DOG \N 19.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10845 +9005 2025-10-16 12:30:29.458431+00 2025-10-16 12:30:29.45844+00 f t Luli DOG \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10847 +9006 2025-10-16 12:37:01.269896+00 2025-10-16 12:37:01.269905+00 f t Chona DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10848 +9007 2025-10-16 12:59:57.673537+00 2025-10-16 12:59:57.673547+00 f t Perro DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10850 +9008 2025-10-16 13:04:51.715846+00 2025-10-16 13:04:51.715857+00 f t Papita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10851 +9009 2025-10-16 13:07:31.446746+00 2025-10-16 13:07:31.446755+00 f t Papity CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10852 +9010 2025-10-16 13:08:13.010864+00 2025-10-16 13:08:13.010878+00 f t bowie CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10853 +9011 2025-10-16 13:09:29.371789+00 2025-10-16 13:09:29.371798+00 f t Papita CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10854 +9012 2025-10-16 13:17:39.115312+00 2025-10-16 13:17:39.115322+00 f t Felipe DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10855 +11811 2025-11-24 12:23:31.233273+00 2025-11-24 12:23:31.233333+00 f t Claudia Avila DOG \N 4.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14326 +9014 2025-10-16 13:39:44.918513+00 2025-10-16 13:39:44.918523+00 f t Monti DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10856 +9015 2025-10-16 13:40:25.36604+00 2025-10-16 13:40:25.36605+00 f t Monti CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2174 +9013 2025-10-16 13:39:14.971841+00 2025-10-16 13:39:14.97185+00 f t Pipino CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 2174 +9016 2025-10-16 13:50:25.06525+00 2025-10-16 13:50:25.065259+00 f t Carlo Magno CAT \N 2.80 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10857 +9017 2025-10-16 14:00:09.810836+00 2025-10-16 14:00:09.810851+00 f t Mixon CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10858 +9018 2025-10-16 14:22:00.685865+00 2025-10-16 14:22:00.685874+00 f t EVA DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10860 +9019 2025-10-16 15:02:46.826829+00 2025-10-16 15:02:46.826838+00 f t Timmy CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10861 +9020 2025-10-16 15:11:36.201216+00 2025-10-16 15:11:36.201224+00 f t NALA CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10862 +9021 2025-10-16 15:24:34.172288+00 2025-10-16 15:24:34.172297+00 f t jacki DOG 0 0.00 0.00 t \N \N \N \N MALE \N f 52 1208 10863 +9022 2025-10-16 15:35:26.124787+00 2025-10-16 15:35:26.124796+00 f t Tito DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10865 +9023 2025-10-16 16:06:11.228231+00 2025-10-16 16:06:11.228239+00 f t Felipe DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10867 +9024 2025-10-16 16:19:46.666204+00 2025-10-16 16:19:46.666215+00 f t Milo DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10869 +9025 2025-10-16 16:30:55.281584+00 2025-10-16 16:30:55.281593+00 f t tina DOG \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10870 +9026 2025-10-16 17:07:42.249736+00 2025-10-16 17:07:42.249745+00 f t Princesa DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10872 +9027 2025-10-16 17:15:27.610123+00 2025-10-16 17:15:27.610135+00 f t Paquita DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10874 +9028 2025-10-16 17:16:19.013533+00 2025-10-16 17:16:19.013542+00 f t Paquita DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10874 +9030 2025-10-16 18:50:17.270271+00 2025-10-16 18:50:17.270284+00 f t Iggy CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10880 +9031 2025-10-16 19:48:36.143565+00 2025-10-16 19:48:36.143574+00 f t Romeo DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10882 +9032 2025-10-16 20:06:42.893582+00 2025-10-16 20:06:42.89359+00 f t Bosque CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10883 +9033 2025-10-16 20:50:03.202464+00 2025-10-16 20:50:03.202477+00 f t Tinto DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10886 +9034 2025-10-16 21:33:47.195111+00 2025-10-16 21:33:47.195119+00 f t Marilyn DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10887 +9035 2025-10-16 21:53:07.366706+00 2025-10-16 21:53:07.366716+00 f t Nakama CAT \N 3.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10889 +9036 2025-10-16 21:55:23.414938+00 2025-10-16 21:55:23.414949+00 f t Iris CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10890 +9037 2025-10-16 22:01:35.944505+00 2025-10-16 22:01:35.944514+00 f t Mia DOG \N 45.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10892 +9038 2025-10-16 22:07:10.494711+00 2025-10-16 22:07:10.494719+00 f t Sdnnkl DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10894 +9039 2025-10-16 22:24:32.895291+00 2025-10-16 22:24:32.895299+00 f t Iris CAT \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10895 +9040 2025-10-16 22:30:11.288279+00 2025-10-16 22:30:11.288289+00 f t Canela CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10896 +9041 2025-10-16 22:55:55.320522+00 2025-10-16 22:55:55.320532+00 f t Felipe DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10897 +9042 2025-10-16 23:10:14.601571+00 2025-10-16 23:10:14.601585+00 f t Milo CAT \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10899 +9043 2025-10-16 23:11:14.703039+00 2025-10-16 23:11:14.703049+00 f t copo CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10898 +9044 2025-10-16 23:11:46.632188+00 2025-10-16 23:11:46.632195+00 f t Milo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10900 +9046 2025-10-16 23:22:18.322376+00 2025-10-16 23:22:18.322385+00 f t Buda DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10902 +9047 2025-10-16 23:22:56.971127+00 2025-10-16 23:22:56.971174+00 f t Chulengo CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10903 +9048 2025-10-16 23:24:43.505774+00 2025-10-16 23:24:43.505789+00 f t Puflito CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10903 +9049 2025-10-16 23:27:21.987902+00 2025-10-16 23:27:21.987912+00 f t Chulengo CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10904 +9050 2025-10-16 23:33:13.72255+00 2025-10-16 23:33:13.72256+00 f t Chulengo CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10906 +9051 2025-10-16 23:35:51.377342+00 2025-10-16 23:35:51.377351+00 f t Chulengo CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10907 +9052 2025-10-16 23:39:52.82116+00 2025-10-16 23:39:52.821169+00 f t Nala DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10908 +9053 2025-10-17 00:05:02.421222+00 2025-10-17 00:05:02.421238+00 f t Roco DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10909 +9054 2025-10-17 00:11:51.382107+00 2025-10-17 00:11:51.382119+00 f t Tomi CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10911 +9055 2025-10-17 00:31:11.068915+00 2025-10-17 00:31:11.068924+00 f t Gemelo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10912 +9056 2025-10-17 00:46:18.412685+00 2025-10-17 00:46:18.412694+00 f t Onyria CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10913 +9057 2025-10-17 00:46:38.790165+00 2025-10-17 00:46:38.790174+00 f t Sía CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10913 +9058 2025-10-17 00:46:52.93617+00 2025-10-17 00:46:52.936179+00 f t Circe DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10913 +9059 2025-10-17 00:47:06.259325+00 2025-10-17 00:47:06.259334+00 f t Bastet CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10913 +9060 2025-10-17 00:47:23.632492+00 2025-10-17 00:47:23.632501+00 f t Luis Miguel CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10913 +9061 2025-10-17 00:59:18.156807+00 2025-10-17 00:59:18.156816+00 f t Gohan CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10915 +9062 2025-10-17 01:04:35.760686+00 2025-10-17 01:04:35.760699+00 f t Thor DOG \N 33.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10916 +9063 2025-10-17 01:37:55.731444+00 2025-10-17 01:37:55.731454+00 f t Coco CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10919 +9064 2025-10-17 01:38:54.704779+00 2025-10-17 01:38:54.704789+00 f t Osiris CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10920 +9065 2025-10-17 01:40:15.838114+00 2025-10-17 01:40:15.838123+00 f t Ness CAT \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10922 +9066 2025-10-17 02:39:40.71838+00 2025-10-17 02:39:40.71839+00 f t Morgan DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10924 +9067 2025-10-17 03:07:26.59134+00 2025-10-17 03:07:26.591349+00 f t Nina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10927 +9068 2025-10-17 03:07:26.95816+00 2025-10-17 03:07:26.958172+00 f t Enzo DOG \N 28.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10926 +2604 2025-06-19 10:58:32.702697+00 2025-06-19 10:58:32.70271+00 f t Olivia DOG \N 11.00 0.00 t \N 2020-08-13 2025-06-19 \N \N FEMALE \N \N f \N \N 2970 +9069 2025-10-17 03:08:11.429741+00 2025-10-17 03:08:11.429751+00 f t Olivia DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10928 +9070 2025-10-17 03:16:26.590953+00 2025-10-17 03:16:26.590965+00 f t Nina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10929 +9071 2025-10-17 03:16:45.557106+00 2025-10-17 03:16:45.557115+00 f t Picasso DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10930 +9072 2025-10-17 03:34:23.845501+00 2025-10-17 03:34:23.845511+00 f t Nina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10932 +9029 2025-10-16 17:58:48.58191+00 2025-10-16 17:58:48.581923+00 f t Reina Batata DOG 16 16.00 0.00 t \N \N \N \N FEMALE \N f 67 \N 10879 +9073 2025-10-17 03:37:28.518458+00 2025-10-17 03:37:28.518467+00 f t Pistacho DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10933 +9074 2025-10-17 03:39:47.287571+00 2025-10-17 03:39:47.28758+00 f t Nina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10934 +9075 2025-10-17 03:45:01.460717+00 2025-10-17 03:45:01.460734+00 f t Nina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10935 +9076 2025-10-17 03:51:26.741057+00 2025-10-17 03:51:26.741066+00 f t Pancho DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10936 +9077 2025-10-17 04:33:01.385978+00 2025-10-17 04:33:01.385987+00 f t rufina DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10937 +9078 2025-10-17 04:33:27.121258+00 2025-10-17 04:33:27.12127+00 f t rufina CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10938 +9079 2025-10-17 04:34:08.866128+00 2025-10-17 04:34:08.866138+00 f t Camila DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10939 +9080 2025-10-17 04:34:12.883373+00 2025-10-17 04:34:12.883381+00 f t rufina CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10940 +9081 2025-10-17 09:40:07.41786+00 2025-10-17 09:40:07.417873+00 f t Sully CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10941 +9082 2025-10-17 11:37:10.685768+00 2025-10-17 11:37:10.68578+00 f t Bruno DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10945 +9083 2025-10-17 11:46:45.207944+00 2025-10-17 11:46:45.207952+00 f t Aquarius de Pera CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10946 +9084 2025-10-17 11:50:59.673127+00 2025-10-17 11:50:59.673136+00 f t Berna DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10947 +9085 2025-10-17 11:52:13.080043+00 2025-10-17 11:52:13.080053+00 f t Reina CAT \N 200.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10949 +9086 2025-10-17 12:18:50.029708+00 2025-10-17 12:18:50.029718+00 f t Brigitte Dominique Freud CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10950 +9087 2025-10-17 12:37:40.29903+00 2025-10-17 12:37:40.29904+00 f t Jogui DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10951 +9088 2025-10-17 13:41:55.692973+00 2025-10-17 13:41:55.692982+00 f t Nina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10952 +9089 2025-10-17 13:44:48.025714+00 2025-10-17 13:44:48.025724+00 f t Marilina DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10953 +9090 2025-10-17 14:58:53.785501+00 2025-10-17 14:58:53.785514+00 f t Budín CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10954 +9091 2025-10-17 15:37:49.350195+00 2025-10-17 15:37:49.350218+00 f t Buda DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10957 +9092 2025-10-17 15:50:22.816658+00 2025-10-17 15:50:22.817168+00 f t Venus CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10959 +9093 2025-10-17 16:12:59.20414+00 2025-10-17 16:12:59.204149+00 f t Mona CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10960 +9094 2025-10-17 16:17:55.689447+00 2025-10-17 16:17:55.68979+00 f t Puinsy DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10961 +9095 2025-10-17 16:26:44.723765+00 2025-10-17 16:26:44.723775+00 f t Puinsy DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10962 +9096 2025-10-17 16:27:09.06005+00 2025-10-17 16:27:09.060059+00 f t Puinsy DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10963 +9097 2025-10-17 16:46:08.773246+00 2025-10-17 16:46:08.773255+00 f t Labrador DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10964 +9098 2025-10-17 17:14:28.990344+00 2025-10-17 17:14:28.990355+00 f t Camila DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10965 +9099 2025-10-17 17:17:53.489178+00 2025-10-17 17:17:53.489187+00 f t Camila DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10966 +9100 2025-10-17 17:38:12.096924+00 2025-10-17 17:38:12.096933+00 f t Bosque CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10968 +9101 2025-10-17 17:39:05.637971+00 2025-10-17 17:39:05.637984+00 f t Naoki CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10969 +9102 2025-10-17 17:44:23.923584+00 2025-10-17 17:44:23.923592+00 f t Bosque CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10969 +9103 2025-10-17 17:58:36.036028+00 2025-10-17 17:58:36.036037+00 f t Camila DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10972 +9104 2025-10-17 18:04:37.391771+00 2025-10-17 18:04:37.39178+00 f t Dopamina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10973 +9105 2025-10-17 18:27:22.878557+00 2025-10-17 18:27:22.878565+00 f t Kala DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10974 +9106 2025-10-17 18:28:19.862451+00 2025-10-17 18:28:19.86246+00 f t Pupi DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10974 +9107 2025-10-17 18:41:04.950735+00 2025-10-17 18:41:04.950743+00 f t Mimi CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10976 +9108 2025-10-17 19:22:20.284577+00 2025-10-17 19:22:20.284587+00 f t Sasha DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10978 +9109 2025-10-17 19:25:29.987433+00 2025-10-17 19:25:29.987447+00 f t sasha DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10978 +9110 2025-10-17 19:26:47.587774+00 2025-10-17 19:26:47.587783+00 f t sasha DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10979 +9111 2025-10-17 19:33:12.262729+00 2025-10-17 19:33:12.262739+00 f t Tyron DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10980 +9112 2025-10-17 19:50:21.953323+00 2025-10-17 19:50:21.95333+00 f t Min CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10981 +9113 2025-10-17 20:07:37.831607+00 2025-10-17 20:07:37.831617+00 f t Aslan DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10982 +9114 2025-10-17 21:03:46.230796+00 2025-10-17 21:03:46.230805+00 f t Betania Clavijo DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10983 +9115 2025-10-17 21:10:32.490235+00 2025-10-17 21:10:32.490244+00 f t Lorca CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10985 +9116 2025-10-17 21:37:17.718227+00 2025-10-17 21:37:17.718236+00 f t Mora DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10986 +9117 2025-10-17 21:57:55.124681+00 2025-10-17 21:57:55.124689+00 f t Mankell DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10987 +9045 2025-10-16 23:13:07.033341+00 2025-10-16 23:13:07.033353+00 f t Paloma CAT 0 3.00 0.00 t \N \N \N \N FEMALE \N t \N 1208 10901 +9118 2025-10-17 23:20:20.929866+00 2025-10-17 23:20:20.929875+00 f t Bruno DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 10992 +9119 2025-10-17 23:20:26.588411+00 2025-10-17 23:20:26.588419+00 f t Apolo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10991 +9120 2025-10-17 23:22:20.588568+00 2025-10-17 23:22:20.588577+00 f t Miel CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10991 +9121 2025-10-17 23:38:38.608115+00 2025-10-17 23:38:38.608125+00 f t Luna CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10993 +9122 2025-10-17 23:38:58.172473+00 2025-10-17 23:38:58.172482+00 f t Ty DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 10994 +9123 2025-10-17 23:41:29.554741+00 2025-10-17 23:41:29.55475+00 f t Chikito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10993 +9124 2025-10-18 00:05:58.08965+00 2025-10-18 00:05:58.089661+00 f t Apolo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10996 +9125 2025-10-18 00:13:46.316195+00 2025-10-18 00:13:46.316205+00 f t Ali CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 10999 +9126 2025-10-18 00:15:00.73188+00 2025-10-18 00:15:00.731895+00 f t Ringo DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11000 +9127 2025-10-18 00:24:53.468298+00 2025-10-18 00:24:53.468307+00 f t Albus CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11002 +9128 2025-10-18 00:36:42.825666+00 2025-10-18 00:36:42.825675+00 f t Benjamín CAT \N 7.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11003 +9129 2025-10-18 00:49:41.914403+00 2025-10-18 00:49:41.914415+00 f t Morena DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11004 +9130 2025-10-18 00:50:54.948465+00 2025-10-18 00:50:54.948479+00 f t Scrappy DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11004 +9131 2025-10-18 00:52:44.978887+00 2025-10-18 00:52:44.978896+00 f t Ursa DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11005 +9132 2025-10-18 00:54:06.356957+00 2025-10-18 00:54:06.356969+00 f t Ursa DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11006 +9133 2025-10-18 01:27:55.60091+00 2025-10-18 01:27:55.600919+00 f t Aspen CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11007 +9134 2025-10-18 01:30:04.571429+00 2025-10-18 01:30:04.571444+00 f t Simón CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11008 +9135 2025-10-18 01:32:01.035282+00 2025-10-18 01:32:01.035291+00 f t Vitto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11008 +9136 2025-10-18 01:43:26.531349+00 2025-10-18 01:43:26.531358+00 f t Chimuelo DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11009 +9137 2025-10-18 03:44:56.939688+00 2025-10-18 03:44:56.939697+00 f t Pat DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11012 +9138 2025-10-18 03:47:34.795758+00 2025-10-18 03:47:34.795771+00 f t Pat DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11013 +9139 2025-10-18 04:01:00.775535+00 2025-10-18 04:01:00.775545+00 f t Alicia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11014 +9140 2025-10-18 06:27:25.991705+00 2025-10-18 06:27:25.991718+00 f t Charles CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11015 +9141 2025-10-18 06:32:18.497637+00 2025-10-18 06:32:18.49765+00 f t Tango DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11016 +9142 2025-10-18 10:05:35.561033+00 2025-10-18 10:05:35.561042+00 f t Milo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11017 +9143 2025-10-18 10:41:31.11205+00 2025-10-18 10:41:31.112059+00 f t Toby DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11018 +9144 2025-10-18 10:59:26.791815+00 2025-10-18 10:59:26.791828+00 f t Alicia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11019 +9145 2025-10-18 11:33:05.815507+00 2025-10-18 11:33:05.815521+00 f t Cane DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11020 +9146 2025-10-18 11:52:17.847031+00 2025-10-18 11:52:17.847042+00 f t Juan CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11021 +9147 2025-10-18 12:18:02.858428+00 2025-10-18 12:18:02.858439+00 f t Miguel CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11022 +9148 2025-10-18 12:38:49.962106+00 2025-10-18 12:38:49.962116+00 f t Benito CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11023 +9149 2025-10-18 13:06:35.985526+00 2025-10-18 13:06:35.985536+00 f t Apolo DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11024 +9150 2025-10-18 14:43:53.325276+00 2025-10-18 14:43:53.325288+00 f t Chino DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11027 +9151 2025-10-18 14:59:20.753675+00 2025-10-18 14:59:20.753687+00 f t Rocco DOG \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11028 +9152 2025-10-18 15:35:53.703411+00 2025-10-18 15:35:53.70342+00 f t Luna CAT \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11029 +9153 2025-10-18 16:02:31.192187+00 2025-10-18 16:02:31.192197+00 f t Pipo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11030 +9154 2025-10-18 16:07:03.511334+00 2025-10-18 16:07:03.511344+00 f t Fiona CAT \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11031 +9155 2025-10-18 16:11:39.998675+00 2025-10-18 16:11:39.99869+00 f t Teo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11033 +9156 2025-10-18 16:18:51.513269+00 2025-10-18 16:18:51.513278+00 f t as DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11034 +9157 2025-10-18 16:38:36.991039+00 2025-10-18 16:38:36.991052+00 f t Tormenta DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11035 +9158 2025-10-18 17:00:01.456542+00 2025-10-18 17:00:01.456558+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11037 +9159 2025-10-18 17:26:39.759527+00 2025-10-18 17:26:39.759539+00 f t nina DOG \N 45.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11038 +9160 2025-10-18 17:32:41.687725+00 2025-10-18 17:32:41.687737+00 f t Gucci CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11039 +9161 2025-10-18 17:36:58.828862+00 2025-10-18 17:36:58.828875+00 f t Gaia DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11040 +9162 2025-10-18 17:58:20.946226+00 2025-10-18 17:58:20.946236+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11041 +9163 2025-10-18 18:20:58.792812+00 2025-10-18 18:20:58.792823+00 f t Copernico CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11042 +9164 2025-10-18 18:28:42.707119+00 2025-10-18 18:28:42.707128+00 f t Negra DOG \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11043 +9165 2025-10-18 18:31:31.985935+00 2025-10-18 18:31:31.985944+00 f t negra DOG \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11045 +9166 2025-10-18 19:18:56.283463+00 2025-10-18 19:18:56.283471+00 f t Sofia CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11050 +9167 2025-10-18 19:26:39.186057+00 2025-10-18 19:26:39.186067+00 f t Negra DOG \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11051 +9168 2025-10-18 19:29:39.869454+00 2025-10-18 19:29:39.869464+00 f t Fdf DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11052 +9169 2025-10-18 19:58:26.13362+00 2025-10-18 19:58:26.133629+00 f t Toto DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11053 +9170 2025-10-18 21:23:15.602659+00 2025-10-18 21:23:15.602667+00 f t Moe CAT \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11054 +9171 2025-10-18 23:24:28.31638+00 2025-10-18 23:24:28.316389+00 f t Bronco DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11056 +9172 2025-10-19 00:13:26.193023+00 2025-10-19 00:13:26.193033+00 f t Milo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11057 +9173 2025-10-19 02:02:34.547089+00 2025-10-19 02:02:34.547098+00 f t Juana DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11058 +9174 2025-10-19 03:36:33.4574+00 2025-10-19 03:36:33.457411+00 f t Nina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11061 +9175 2025-10-19 05:34:06.075003+00 2025-10-19 05:34:06.075012+00 f t Paty DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11062 +9176 2025-10-19 09:35:41.626396+00 2025-10-19 09:35:41.626406+00 f t Iris CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11063 +9177 2025-10-19 09:46:18.336672+00 2025-10-19 09:46:18.336684+00 f t Iris CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11064 +9178 2025-10-19 09:49:50.906068+00 2025-10-19 09:49:50.906078+00 f t Charly DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11065 +9179 2025-10-19 10:44:34.481405+00 2025-10-19 10:44:34.481414+00 f t Bobi DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11066 +9180 2025-10-19 11:20:22.212916+00 2025-10-19 11:20:22.212926+00 f t Tiky CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11067 +9181 2025-10-19 11:25:06.477544+00 2025-10-19 11:25:06.477554+00 f t Logan DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11068 +9182 2025-10-19 11:56:02.885596+00 2025-10-19 11:56:02.885605+00 f t Kira CAT \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11070 +9183 2025-10-19 12:47:50.261107+00 2025-10-19 12:47:50.261116+00 f t Simon CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11071 +9184 2025-10-19 12:48:42.322127+00 2025-10-19 12:48:42.322136+00 f t Coco DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11071 +9185 2025-10-19 12:49:16.070572+00 2025-10-19 12:49:16.070585+00 f t Milo DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11072 +9186 2025-10-19 12:58:35.788402+00 2025-10-19 12:58:35.788411+00 f t Olivia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11073 +9187 2025-10-19 13:00:47.585124+00 2025-10-19 13:00:47.585134+00 f t Pequi DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11074 +9188 2025-10-19 14:43:26.627373+00 2025-10-19 14:43:26.627382+00 f t Rayita CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11076 +9189 2025-10-19 14:44:22.765878+00 2025-10-19 14:44:22.76589+00 f t Charly DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11077 +9190 2025-10-19 14:56:10.450675+00 2025-10-19 14:56:10.450686+00 f t Pina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11078 +9191 2025-10-19 15:00:44.901084+00 2025-10-19 15:00:44.901093+00 f t Shiro DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11079 +9192 2025-10-19 15:18:12.886487+00 2025-10-19 15:18:12.886496+00 f t Candy CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11080 +9193 2025-10-19 15:49:10.350539+00 2025-10-19 15:49:10.350552+00 f t Ciceron DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11081 +9194 2025-10-19 16:32:51.414828+00 2025-10-19 16:32:51.414837+00 f t Mimo DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11082 +9195 2025-10-19 16:38:59.39174+00 2025-10-19 16:38:59.391749+00 f t Mimo DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11083 +9196 2025-10-19 16:50:55.24549+00 2025-10-19 16:50:55.2455+00 f t Athina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11084 +9197 2025-10-19 18:03:25.860824+00 2025-10-19 18:03:25.860835+00 f t Mateo DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11085 +9198 2025-10-19 18:30:02.021664+00 2025-10-19 18:30:02.021678+00 f t Jack DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11086 +9199 2025-10-19 18:54:32.970581+00 2025-10-19 18:54:32.970595+00 f t Oliver CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11088 +9200 2025-10-19 19:15:30.546632+00 2025-10-19 19:15:30.546645+00 f t Jack DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11089 +9201 2025-10-19 20:30:48.68555+00 2025-10-19 20:30:48.685563+00 f t Pitufo CAT \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11090 +9202 2025-10-19 21:11:50.561819+00 2025-10-19 21:11:50.561828+00 f t China DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11091 +9203 2025-10-19 21:52:02.045521+00 2025-10-19 21:52:02.045535+00 f t Canela CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11092 +9204 2025-10-19 21:54:01.658398+00 2025-10-19 21:54:01.658407+00 f t Teo DOG \N 49.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11093 +9205 2025-10-19 22:03:50.588643+00 2025-10-19 22:03:50.588655+00 f t Naia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11094 +9206 2025-10-19 22:06:56.262907+00 2025-10-19 22:06:56.262917+00 f t Negri CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11095 +9207 2025-10-19 22:28:33.807863+00 2025-10-19 22:28:33.807872+00 f t Rugui DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11097 +9208 2025-10-19 23:11:42.694759+00 2025-10-19 23:11:42.694767+00 f t Chip DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11102 +9209 2025-10-19 23:29:26.536715+00 2025-10-19 23:29:26.536726+00 f t Hercules DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11103 +9210 2025-10-20 00:40:34.437614+00 2025-10-20 00:40:34.437623+00 f t LUZ CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11106 +9211 2025-10-20 01:05:19.949629+00 2025-10-20 01:05:19.949642+00 f t Tita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11107 +9212 2025-10-20 01:46:51.180354+00 2025-10-20 01:46:51.180365+00 f t Nami CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11109 +9213 2025-10-20 02:45:40.477116+00 2025-10-20 02:45:40.477125+00 f t Mocca DOG \N 7.80 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11111 +9214 2025-10-20 03:36:23.933679+00 2025-10-20 03:36:23.933689+00 f t Olivia DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11112 +9215 2025-10-20 03:39:21.727247+00 2025-10-20 03:39:21.727257+00 f t Florentino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11113 +9216 2025-10-20 03:44:37.2835+00 2025-10-20 03:44:37.283509+00 f t Florentino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11114 +9217 2025-10-20 03:54:29.48293+00 2025-10-20 03:54:29.482939+00 f t Albondiga DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11115 +9218 2025-10-20 08:06:59.707949+00 2025-10-20 08:06:59.707958+00 f t Julieta Maria DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11117 +9219 2025-10-20 09:07:50.419417+00 2025-10-20 09:07:50.41943+00 f t Simba CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11120 +9220 2025-10-20 10:40:00.786349+00 2025-10-20 10:40:00.786362+00 f t Nina DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11121 +9221 2025-10-20 10:53:42.406066+00 2025-10-20 10:53:42.406075+00 f t Ágata CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11122 +9222 2025-10-20 10:54:49.369438+00 2025-10-20 10:54:49.369448+00 f t Silver CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11122 +9223 2025-10-20 11:03:53.057083+00 2025-10-20 11:03:53.057091+00 f t Maizkeen DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11123 +9224 2025-10-20 11:17:40.064353+00 2025-10-20 11:17:40.064367+00 f t Umi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11125 +9225 2025-10-20 11:39:28.44281+00 2025-10-20 11:39:28.442819+00 f t Luke CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11127 +9226 2025-10-20 11:50:01.705744+00 2025-10-20 11:50:01.70576+00 f t Chimuelo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11128 +9227 2025-10-20 11:52:03.071726+00 2025-10-20 11:52:03.071736+00 f t Morita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11128 +9228 2025-10-20 11:53:21.449978+00 2025-10-20 11:53:21.449987+00 f t Chacha DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11129 +9229 2025-10-20 12:08:17.495653+00 2025-10-20 12:08:17.495663+00 f t Branca CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11130 +9230 2025-10-20 12:24:59.536152+00 2025-10-20 12:24:59.536163+00 f t Hércules DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11132 +9231 2025-10-20 12:48:07.17824+00 2025-10-20 12:48:07.178248+00 f t Sol CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11133 +9232 2025-10-20 13:12:51.302007+00 2025-10-20 13:12:51.302016+00 f t Braiulio CAT \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11134 +9233 2025-10-20 13:13:02.921018+00 2025-10-20 13:13:02.921027+00 f t Lucila CAT \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11134 +9234 2025-10-20 13:18:05.602127+00 2025-10-20 13:18:05.602138+00 f t Toto CAT \N 5.10 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11135 +9235 2025-10-20 13:22:24.159116+00 2025-10-20 13:22:24.159128+00 f t Valentina CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11136 +9236 2025-10-20 13:25:14.95942+00 2025-10-20 13:25:14.959429+00 f t Figaro CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11136 +9237 2025-10-20 13:25:31.453091+00 2025-10-20 13:25:31.4531+00 f t Corina DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11139 +9238 2025-10-20 13:26:26.872035+00 2025-10-20 13:26:26.872048+00 f t Corina DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11140 +9239 2025-10-20 13:27:19.375176+00 2025-10-20 13:27:19.375238+00 f t Manchis CAT \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11138 +9240 2025-10-20 13:31:18.843217+00 2025-10-20 13:31:18.843226+00 f t Locky DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11141 +9241 2025-10-20 13:39:05.983699+00 2025-10-20 13:39:05.983711+00 f t Fidel Valdés CAT \N 5.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11143 +9242 2025-10-20 13:40:09.4695+00 2025-10-20 13:40:09.469513+00 f t Bibi CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11144 +9243 2025-10-20 13:53:11.208716+00 2025-10-20 13:53:11.208725+00 f t Anibal CAT \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11147 +9244 2025-10-20 13:55:41.066439+00 2025-10-20 13:55:41.066454+00 f t Daia CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11149 +9245 2025-10-20 13:55:53.016054+00 2025-10-20 13:55:53.016066+00 f t diana DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11150 +9246 2025-10-20 14:30:39.942952+00 2025-10-20 14:30:39.942961+00 f t Monono CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11152 +9247 2025-10-20 14:47:28.69285+00 2025-10-20 14:47:28.69286+00 f t Cocó CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11153 +9248 2025-10-20 14:48:01.378057+00 2025-10-20 14:48:01.378071+00 f t Sam DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11154 +9249 2025-10-20 15:15:45.466161+00 2025-10-20 15:15:45.466172+00 f t Caniche DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11155 +9250 2025-10-20 15:21:08.17427+00 2025-10-20 15:21:08.174278+00 f t Chimuelo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11156 +9251 2025-10-20 15:44:34.571885+00 2025-10-20 15:44:34.571898+00 f t Mishu CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11159 +9252 2025-10-20 15:56:34.566039+00 2025-10-20 15:56:34.566048+00 f t Pituso CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11160 +9253 2025-10-20 15:58:04.043047+00 2025-10-20 15:58:04.043057+00 f t Milanesa CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11160 +9254 2025-10-20 16:23:36.956965+00 2025-10-20 16:23:36.956976+00 f t Bella DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11161 +9255 2025-10-20 16:23:54.878396+00 2025-10-20 16:23:54.878404+00 f t Theo DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11161 +9256 2025-10-20 16:49:18.781142+00 2025-10-20 16:49:18.781151+00 f t Simon CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11163 +9257 2025-10-20 16:49:38.288046+00 2025-10-20 16:49:38.288059+00 f t Darcy CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11164 +9258 2025-10-20 16:55:19.841995+00 2025-10-20 16:55:19.842005+00 f t Nino DOG \N 3.20 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11165 +9259 2025-10-20 17:43:22.705685+00 2025-10-20 17:43:22.705694+00 f t Utopía CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11166 +9260 2025-10-20 18:01:29.375421+00 2025-10-20 18:01:29.375433+00 f t Ozzy CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11168 +9261 2025-10-20 18:03:22.405653+00 2025-10-20 18:03:22.405662+00 f t Chase DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11169 +9262 2025-10-20 18:26:42.52819+00 2025-10-20 18:26:42.5282+00 f t Patacon CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11170 +9263 2025-10-20 18:29:43.860812+00 2025-10-20 18:29:43.860822+00 f t Patacon CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11171 +9264 2025-10-20 18:40:33.211402+00 2025-10-20 18:40:33.211415+00 f t Utopia CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11172 +9265 2025-10-20 18:50:14.585732+00 2025-10-20 18:50:14.585745+00 f t Callejera CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11173 +9266 2025-10-20 19:09:43.769994+00 2025-10-20 19:09:43.770006+00 f t Carlitos DOG \N 31.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11175 +9267 2025-10-20 19:09:52.373819+00 2025-10-20 19:09:52.373832+00 f t Linda DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11176 +9268 2025-10-20 19:10:48.25809+00 2025-10-20 19:10:48.258101+00 f t Luna DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11176 +9269 2025-10-20 19:11:30.688781+00 2025-10-20 19:11:30.688794+00 f t Nino DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11177 +9270 2025-10-20 19:39:52.883014+00 2025-10-20 19:39:52.883023+00 f t Sr. Darcy CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11179 +9271 2025-10-20 19:43:11.630485+00 2025-10-20 19:43:11.630492+00 f t Lili DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11180 +9272 2025-10-20 19:51:51.876978+00 2025-10-20 19:51:51.876988+00 f t Roman DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11181 +9273 2025-10-20 20:48:23.926165+00 2025-10-20 20:48:23.926174+00 f t Cleo DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11182 +9274 2025-10-20 20:48:40.255611+00 2025-10-20 20:48:40.255625+00 f t Cleo CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11182 +9275 2025-10-20 21:41:59.79629+00 2025-10-20 21:41:59.796303+00 f t Canela DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11184 +9276 2025-10-20 21:45:29.093656+00 2025-10-20 21:45:29.093665+00 f t Panquecs CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11185 +9277 2025-10-20 21:45:48.209756+00 2025-10-20 21:45:48.209766+00 f t Panqueca CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11185 +9278 2025-10-20 21:46:55.547041+00 2025-10-20 21:46:55.547051+00 f t Shadow CAT \N 6.30 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11185 +9279 2025-10-20 21:47:14.598148+00 2025-10-20 21:47:14.598164+00 f t Carlota CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11186 +9280 2025-10-20 21:47:51.662507+00 2025-10-20 21:47:51.662516+00 f t Coby DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11186 +9281 2025-10-20 21:50:44.374773+00 2025-10-20 21:50:44.374783+00 f t Roger CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11187 +9282 2025-10-20 21:58:18.953753+00 2025-10-20 21:58:18.953764+00 f t Yoga DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11188 +9283 2025-10-20 22:04:30.303066+00 2025-10-20 22:04:30.303078+00 f t Sam DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11189 +9284 2025-10-20 22:36:03.589287+00 2025-10-20 22:36:03.589296+00 f t Pinky CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11191 +9285 2025-10-20 23:05:14.137942+00 2025-10-20 23:05:14.137953+00 f t Kira DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11192 +9286 2025-10-20 23:13:15.317253+00 2025-10-20 23:13:15.317263+00 f t Panda CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11193 +9287 2025-10-20 23:14:35.519203+00 2025-10-20 23:14:35.519212+00 f t Tymmi CAT \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11194 +9288 2025-10-20 23:17:00.824895+00 2025-10-20 23:17:00.824909+00 f t Kyo DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11195 +9289 2025-10-20 23:59:05.763824+00 2025-10-20 23:59:05.763838+00 f t Feku CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11196 +9290 2025-10-20 23:59:37.351882+00 2025-10-20 23:59:37.351892+00 f t Deku CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11196 +9291 2025-10-21 00:08:01.92008+00 2025-10-21 00:08:01.920095+00 f t Tomás CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11197 +9292 2025-10-21 00:14:09.347811+00 2025-10-21 00:14:09.347821+00 f t Elvis DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11198 +9293 2025-10-21 00:26:43.56728+00 2025-10-21 00:26:43.567291+00 f t Logan DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11199 +9294 2025-10-21 00:40:24.316862+00 2025-10-21 00:40:24.317798+00 f t Tigui CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11200 +9295 2025-10-21 00:53:57.029444+00 2025-10-21 00:53:57.030161+00 f t Teo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11201 +9296 2025-10-21 01:13:23.505767+00 2025-10-21 01:13:23.506066+00 f t M DOG \N 26.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11202 +9297 2025-10-21 01:30:17.959209+00 2025-10-21 01:30:17.959223+00 f t Rocko CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11203 +9298 2025-10-21 01:33:17.36432+00 2025-10-21 01:33:17.364336+00 f t Pituso CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11204 +9299 2025-10-21 01:43:47.676738+00 2025-10-21 01:43:47.677071+00 f t Gandalf CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11205 +9300 2025-10-21 02:23:30.450204+00 2025-10-21 02:23:30.450217+00 f t Bartolo DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11206 +9301 2025-10-21 02:56:56.161071+00 2025-10-21 02:56:56.161519+00 f t G CAT \N 567.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11207 +9302 2025-10-21 08:38:00.942265+00 2025-10-21 08:38:00.942281+00 f t Figaro CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11208 +9303 2025-10-21 10:12:44.236661+00 2025-10-21 10:12:44.236674+00 f t Juan DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11209 +9304 2025-10-21 10:34:07.293943+00 2025-10-21 10:34:07.293959+00 f t Eva CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11210 +9305 2025-10-21 11:06:20.83319+00 2025-10-21 11:06:20.8332+00 f t Luna CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11212 +9306 2025-10-21 11:30:50.91804+00 2025-10-21 11:30:50.91805+00 f t Tetis CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11213 +9307 2025-10-21 11:33:01.787745+00 2025-10-21 11:33:01.787759+00 f t .bkn CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11214 +9308 2025-10-21 11:50:38.928703+00 2025-10-21 11:50:38.928713+00 f t Naima Correa DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11215 +9309 2025-10-21 11:54:19.330574+00 2025-10-21 11:54:19.330583+00 f t Naima DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11216 +9310 2025-10-21 12:24:04.900891+00 2025-10-21 12:24:04.900906+00 f t Micha CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11217 +9311 2025-10-21 12:26:30.723769+00 2025-10-21 12:26:30.723778+00 f t Nex CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11218 +9312 2025-10-21 12:48:10.370888+00 2025-10-21 12:48:10.370911+00 f t Amar DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11220 +9313 2025-10-21 13:06:42.418774+00 2025-10-21 13:06:42.418786+00 f t Enzo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11221 +9314 2025-10-21 13:12:13.401188+00 2025-10-21 13:12:13.401199+00 f t kalo DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11222 +9315 2025-10-21 13:17:09.495242+00 2025-10-21 13:17:09.495252+00 f t Churro DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11225 +9316 2025-10-21 13:41:02.861734+00 2025-10-21 13:41:02.861748+00 f t Oliver DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11227 +9317 2025-10-21 14:30:11.477964+00 2025-10-21 14:30:11.477979+00 f t Hugo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11228 +9318 2025-10-21 14:31:25.69058+00 2025-10-21 14:31:25.690591+00 f t Bianca DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11229 +9319 2025-10-21 14:40:06.952968+00 2025-10-21 14:40:06.95298+00 f t Nina CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11230 +9320 2025-10-21 14:48:10.25131+00 2025-10-21 14:48:10.251322+00 f t Roko DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11232 +9321 2025-10-21 14:50:26.723425+00 2025-10-21 14:50:26.723434+00 f t India DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11232 +9322 2025-10-21 15:22:34.372821+00 2025-10-21 15:22:34.372834+00 f t Lulu DOG \N 45.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11234 +9323 2025-10-21 15:48:32.920216+00 2025-10-21 15:48:32.920225+00 f t coqui DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11237 +9324 2025-10-21 15:51:49.930862+00 2025-10-21 15:51:49.930872+00 f t Hugui DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11238 +9325 2025-10-21 15:59:50.411633+00 2025-10-21 15:59:50.411642+00 f t Hugui DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11240 +9326 2025-10-21 15:59:57.506896+00 2025-10-21 15:59:57.506905+00 f t Travis CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11241 +9327 2025-10-21 16:11:53.273451+00 2025-10-21 16:11:53.27346+00 f t Dulce de leche DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11178 +9328 2025-10-21 16:42:38.58817+00 2025-10-21 16:42:38.588179+00 f t Pitoco DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11245 +9329 2025-10-21 17:10:26.979732+00 2025-10-21 17:10:26.979742+00 f t Roy CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11246 +9330 2025-10-21 17:14:36.288195+00 2025-10-21 17:14:36.288209+00 f t Chizzo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11247 +9331 2025-10-21 17:23:36.079743+00 2025-10-21 17:23:36.079752+00 f t Luiggi DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11249 +9332 2025-10-21 18:07:15.719824+00 2025-10-21 18:07:15.719832+00 f t Lucy DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11252 +9333 2025-10-21 18:21:21.753099+00 2025-10-21 18:21:21.753108+00 f t Lean CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11254 +9334 2025-10-21 18:34:19.767645+00 2025-10-21 18:34:19.767654+00 f t Juan DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11255 +9335 2025-10-21 19:04:59.39572+00 2025-10-21 19:04:59.395732+00 f t Tuerto CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11261 +9336 2025-10-21 19:23:39.895205+00 2025-10-21 19:23:39.895215+00 f t Mono CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11262 +9337 2025-10-21 19:32:16.134934+00 2025-10-21 19:32:16.134943+00 f t Chloe DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11265 +9338 2025-10-21 19:33:04.393754+00 2025-10-21 19:33:04.393763+00 f t Bardo CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11264 +9339 2025-10-21 19:35:20.28604+00 2025-10-21 19:35:20.286049+00 f t Panchi CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11266 +9340 2025-10-21 19:53:49.358478+00 2025-10-21 19:53:49.358487+00 f t Otto DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11269 +9342 2025-10-21 20:21:50.891903+00 2025-10-21 20:21:50.891912+00 f t Cachi DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11272 +9343 2025-10-21 20:29:09.440282+00 2025-10-21 20:29:09.44029+00 f t Luke CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11273 +9344 2025-10-21 20:33:52.188644+00 2025-10-21 20:33:52.188653+00 f t Indio DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11274 +9345 2025-10-21 20:36:12.273416+00 2025-10-21 20:36:12.273428+00 f t mia DOG \N 29.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11275 +9346 2025-10-21 20:55:25.68381+00 2025-10-21 20:55:25.683819+00 f t Mia DOG \N 29.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11278 +9347 2025-10-21 21:13:09.62141+00 2025-10-21 21:13:09.621422+00 f t Kendrick DOG \N 33.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11279 +9348 2025-10-21 21:24:43.555582+00 2025-10-21 21:24:43.555595+00 f t ALICIA CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11019 +9349 2025-10-21 21:27:51.152829+00 2025-10-21 21:27:51.152839+00 f t Roma DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11049 +9341 2025-10-21 19:57:22.805087+00 2025-10-21 19:57:22.805095+00 f t Roger CAT 0 5.00 0.00 t \N \N \N \N MALE \N f \N 1583 11268 +9350 2025-10-21 22:11:14.071947+00 2025-10-21 22:11:14.071955+00 f t Enya DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11282 +9351 2025-10-21 22:13:30.416273+00 2025-10-21 22:13:30.416284+00 f t Pepe DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11283 +9352 2025-10-21 22:28:09.615942+00 2025-10-21 22:28:09.61595+00 f t Frida CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 2152 +9353 2025-10-21 22:29:41.989458+00 2025-10-21 22:29:41.989468+00 f t Murphy CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11286 +9354 2025-10-21 22:41:05.54579+00 2025-10-21 22:41:05.545798+00 f t Mila DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11287 +9355 2025-10-21 22:46:13.620863+00 2025-10-21 22:46:13.620873+00 f t Amparo CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11288 +9356 2025-10-21 22:47:01.866426+00 2025-10-21 22:47:01.866441+00 f t Mila DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11287 +9357 2025-10-21 22:47:24.24675+00 2025-10-21 22:47:24.246759+00 f t Gatita CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11289 +9358 2025-10-21 23:27:50.575816+00 2025-10-21 23:27:50.575824+00 f t Vilma DOG \N 13.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11294 +9359 2025-10-21 23:41:34.600632+00 2025-10-21 23:41:34.600645+00 f t Munci CAT \N 300.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11296 +9360 2025-10-21 23:43:50.698593+00 2025-10-21 23:43:50.698606+00 f t Salvador CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11297 +9361 2025-10-22 00:33:52.162146+00 2025-10-22 00:33:52.162155+00 f t Diego DOG \N 666.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11299 +9362 2025-10-22 00:49:22.388959+00 2025-10-22 00:49:22.388969+00 f t Arya CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11301 +9365 2025-10-22 01:15:52.148966+00 2025-10-22 01:15:52.148975+00 f t Pipa CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11304 +9366 2025-10-22 01:20:36.787384+00 2025-10-22 01:20:36.787392+00 f t Theo DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11305 +9367 2025-10-22 01:20:57.948663+00 2025-10-22 01:20:57.948672+00 f t Pitu DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11306 +9368 2025-10-22 01:25:37.876141+00 2025-10-22 01:25:37.87615+00 f t Theo DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11305 +9369 2025-10-22 01:25:55.239333+00 2025-10-22 01:25:55.239343+00 f t Nala DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11307 +9370 2025-10-22 01:43:02.70658+00 2025-10-22 01:43:02.706592+00 f t . DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11308 +9371 2025-10-22 02:38:50.672161+00 2025-10-22 02:38:50.672169+00 f t Xina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11311 +9372 2025-10-22 02:39:57.485823+00 2025-10-22 02:39:57.485831+00 f t Akira CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11311 +9373 2025-10-22 02:41:04.163641+00 2025-10-22 02:41:04.163655+00 f t Nose DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11311 +9374 2025-10-22 04:10:10.606013+00 2025-10-22 04:10:10.606026+00 f t Panchita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11313 +9375 2025-10-22 04:29:13.781612+00 2025-10-22 04:29:13.781621+00 f t Chapi CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11314 +9376 2025-10-22 04:40:14.829013+00 2025-10-22 04:40:14.829022+00 f t Cleri CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11315 +9377 2025-10-22 11:13:36.890008+00 2025-10-22 11:13:36.890017+00 f t Nala DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11318 +9378 2025-10-22 11:24:54.441696+00 2025-10-22 11:24:54.441705+00 f t Gordo DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11319 +9379 2025-10-22 12:08:57.537909+00 2025-10-22 12:08:57.537919+00 f t Simba CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11320 +9380 2025-10-22 12:24:59.228888+00 2025-10-22 12:24:59.228901+00 f t Luna DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11321 +9381 2025-10-22 13:09:30.192144+00 2025-10-22 13:09:30.192154+00 f t Timon CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11324 +9382 2025-10-22 13:47:24.605614+00 2025-10-22 13:47:24.605621+00 f t Anubis CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11326 +9363 2025-10-22 00:54:37.902508+00 2025-10-22 00:54:37.902517+00 t t Margo DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11302 +9364 2025-10-22 00:55:16.530759+00 2025-10-22 00:55:16.530767+00 f t Margo CAT 8 4.00 0.00 f \N \N \N \N FEMALE \N f \N 1208 11302 +9383 2025-10-22 14:09:54.227522+00 2025-10-22 14:09:54.227531+00 f t Junior DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11328 +9384 2025-10-22 15:13:05.682376+00 2025-10-22 15:13:05.682385+00 f t Fortunata CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11330 +602 2025-02-27 00:21:52.022264+00 2025-02-27 00:21:52.022274+00 f t Floki CAT 6 4.00 0.00 f 2018-12-02 2025-03-01 \N \N MALE \N f 29 113 510 +9385 2025-10-22 15:42:52.387545+00 2025-10-22 15:42:52.387555+00 f t Copito DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11331 +9386 2025-10-22 15:54:30.157557+00 2025-10-22 15:54:30.157569+00 f t Duki DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11332 +9387 2025-10-22 16:10:52.313177+00 2025-10-22 16:10:52.313186+00 f t Toba DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11334 +9388 2025-10-22 16:13:21.968519+00 2025-10-22 16:13:21.968528+00 f t Ares DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11335 +9389 2025-10-22 16:19:59.160558+00 2025-10-22 16:19:59.16057+00 f t Chop DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11336 +9390 2025-10-22 17:17:07.852279+00 2025-10-22 17:17:07.852289+00 f t Rigo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11338 +9391 2025-10-22 18:09:35.100708+00 2025-10-22 18:09:35.100721+00 f t Titán DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11340 +9392 2025-10-22 18:10:26.896172+00 2025-10-22 18:10:26.896184+00 f t Sasha DOG \N 45.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11340 +9393 2025-10-22 18:27:47.467693+00 2025-10-22 18:27:47.467701+00 f t Panda DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11341 +9394 2025-10-22 18:36:15.865495+00 2025-10-22 18:36:15.865503+00 f t Tito CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11342 +9395 2025-10-22 18:37:28.841413+00 2025-10-22 18:37:28.841427+00 f t Tittino CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11342 +9396 2025-10-22 18:41:48.294979+00 2025-10-22 18:41:48.294988+00 f t Tito CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11343 +9397 2025-10-22 18:50:18.335412+00 2025-10-22 18:50:18.33542+00 f t Tittino CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11343 +9398 2025-10-22 18:52:44.707387+00 2025-10-22 18:52:44.7074+00 f t Aaron CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11345 +9399 2025-10-22 19:06:19.70575+00 2025-10-22 19:06:19.705759+00 f t Frida DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11347 +9400 2025-10-22 19:11:07.334587+00 2025-10-22 19:11:07.334595+00 f t Bruma DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11348 +9401 2025-10-22 19:33:53.963672+00 2025-10-22 19:33:53.963685+00 f t Koda CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11350 +9402 2025-10-22 20:20:19.882623+00 2025-10-22 20:20:19.882637+00 f t Del CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10402 +9403 2025-10-22 22:00:52.514339+00 2025-10-22 22:00:52.514351+00 f t yumi DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11354 +9404 2025-10-22 22:01:24.413458+00 2025-10-22 22:01:24.413468+00 f t Yumi CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11354 +9405 2025-10-22 22:02:00.136403+00 2025-10-22 22:02:00.136416+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11352 +9406 2025-10-22 22:16:30.79479+00 2025-10-22 22:16:30.794799+00 f t Pantera DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11355 +9407 2025-10-22 22:20:52.364011+00 2025-10-22 22:20:52.364022+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11356 +9408 2025-10-22 22:22:01.255616+00 2025-10-22 22:22:01.255625+00 f t Bronco DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11357 +9409 2025-10-22 22:44:34.809851+00 2025-10-22 22:44:34.809859+00 f t Ato CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11359 +9410 2025-10-22 22:58:48.907194+00 2025-10-22 22:58:48.907203+00 f t Pelusa CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11361 +9411 2025-10-23 01:42:57.054679+00 2025-10-23 01:42:57.054689+00 f t Jana DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11365 +9412 2025-10-23 01:52:58.525094+00 2025-10-23 01:52:58.525104+00 f t Yoko CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11366 +9413 2025-10-23 02:13:45.343003+00 2025-10-23 02:13:45.343016+00 f t Abby DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11368 +9414 2025-10-23 02:16:57.391873+00 2025-10-23 02:16:57.391882+00 f t Tom DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11369 +9415 2025-10-23 02:18:38.612666+00 2025-10-23 02:18:38.612674+00 f t Odin CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11370 +9416 2025-10-23 03:12:21.812115+00 2025-10-23 03:12:21.812129+00 f t Zeus DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11372 +9417 2025-10-23 03:14:03.054492+00 2025-10-23 03:14:03.054504+00 f t Diana DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11374 +9418 2025-10-23 05:21:24.083242+00 2025-10-23 05:21:24.083251+00 f t mia DOG \N 29.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11375 +9419 2025-10-23 07:04:41.241322+00 2025-10-23 07:04:41.241331+00 f t marta DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11376 +9420 2025-10-23 07:06:03.82473+00 2025-10-23 07:06:03.824739+00 f t marta DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11376 +9421 2025-10-23 09:48:11.943501+00 2025-10-23 09:48:11.943508+00 f t Yuoi6 CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11377 +9422 2025-10-23 09:49:22.873586+00 2025-10-23 09:49:22.873595+00 f t Sir CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11377 +9423 2025-10-23 11:24:03.566854+00 2025-10-23 11:24:03.566863+00 f t Tubo CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11378 +9424 2025-10-23 11:29:27.930496+00 2025-10-23 11:29:27.930506+00 f t Mora DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11379 +9425 2025-10-23 11:34:01.357718+00 2025-10-23 11:34:01.357727+00 f t Ayla DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11380 +9426 2025-10-23 13:15:13.347699+00 2025-10-23 13:15:13.347709+00 f t delta DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11381 +9427 2025-10-23 13:52:32.675749+00 2025-10-23 13:52:32.675759+00 f t Nina DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11382 +9428 2025-10-23 14:06:47.583586+00 2025-10-23 14:06:47.583595+00 f t Mustafa DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11384 +9429 2025-10-23 14:36:43.634348+00 2025-10-23 14:36:43.634356+00 f t Leila DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11385 +9430 2025-10-23 15:13:13.289689+00 2025-10-23 15:13:13.289698+00 f t Clara CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11387 +8966 2025-10-15 18:44:59.136975+00 2025-10-15 18:44:59.136985+00 f t paris DOG 7 6.00 0.00 f \N \N \N \N FEMALE \N f \N 1583 10793 +9431 2025-10-23 15:59:48.562469+00 2025-10-23 15:59:48.562477+00 f t Hugo DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11390 +9432 2025-10-23 16:22:46.613153+00 2025-10-23 16:22:46.613167+00 f t Carmelo DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11391 +9433 2025-10-23 16:23:12.486108+00 2025-10-23 16:23:12.486118+00 f t Carmelo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11391 +9435 2025-10-23 16:56:43.306974+00 2025-10-23 16:56:43.306983+00 f t Miguel CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11393 +9436 2025-10-23 16:59:23.336713+00 2025-10-23 16:59:23.336721+00 f t Simba CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11394 +9438 2025-10-23 17:14:36.027434+00 2025-10-23 17:14:36.027443+00 f t ducho DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11396 +9439 2025-10-23 17:15:00.184881+00 2025-10-23 17:15:00.184891+00 f t El Sucio CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11393 +9434 2025-10-23 16:55:15.034818+00 2025-10-23 16:55:15.034827+00 t t Miguel CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11393 +9437 2025-10-23 17:02:28.237349+00 2025-10-23 17:02:28.237361+00 t t Sucio CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11393 +11812 2025-11-24 12:24:00.140945+00 2025-11-24 12:24:00.140954+00 f t Wisper CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14327 +9441 2025-10-23 18:14:42.619305+00 2025-10-23 18:14:42.619315+00 f t Jerry CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11399 +9442 2025-10-23 18:53:17.367258+00 2025-10-23 18:53:17.367271+00 f t Panshi CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11401 +9443 2025-10-23 18:58:22.006695+00 2025-10-23 18:58:22.006704+00 f t Amar DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11402 +9444 2025-10-23 19:10:05.214902+00 2025-10-23 19:10:05.215064+00 f t Shirman CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11401 +9445 2025-10-23 20:04:35.324057+00 2025-10-23 20:04:35.324066+00 f t Tere CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11403 +9446 2025-10-23 20:17:06.632257+00 2025-10-23 20:17:06.632266+00 f t Milla DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11405 +9447 2025-10-23 22:02:02.128479+00 2025-10-23 22:02:02.128491+00 f t Simón DOG \N 13.80 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11407 +9448 2025-10-23 22:56:58.245915+00 2025-10-23 22:56:58.245925+00 f t Francis DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11411 +9449 2025-10-23 23:04:37.78126+00 2025-10-23 23:04:37.781268+00 f t Muna CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11413 +9450 2025-10-23 23:44:10.630242+00 2025-10-23 23:44:10.630251+00 f t Cocó DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11415 +9451 2025-10-24 00:14:00.490176+00 2025-10-24 00:14:00.490185+00 f t Andrea Silvia DODINO CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11416 +9452 2025-10-24 00:27:16.509836+00 2025-10-24 00:27:16.509847+00 f t uma DOG \N 60.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11418 +9453 2025-10-24 00:27:36.646054+00 2025-10-24 00:27:36.646062+00 f t Olivia DOG \N 7.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11419 +9454 2025-10-24 00:47:29.243605+00 2025-10-24 00:47:29.243614+00 f t Sam DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11421 +9455 2025-10-24 01:32:01.364607+00 2025-10-24 01:32:01.364617+00 f t Vitu DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11422 +9456 2025-10-24 01:32:45.089323+00 2025-10-24 01:32:45.089332+00 f t Blan CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11422 +9457 2025-10-24 02:11:33.836711+00 2025-10-24 02:11:33.836719+00 f t Brownie DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11424 +9458 2025-10-24 02:18:21.844951+00 2025-10-24 02:18:21.844959+00 f t C DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11425 +9459 2025-10-24 03:27:32.396142+00 2025-10-24 03:27:32.396152+00 f t León CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11427 +9460 2025-10-24 03:48:48.739027+00 2025-10-24 03:48:48.739038+00 f t Artemis DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11428 +9461 2025-10-24 04:48:04.058758+00 2025-10-24 04:48:04.05877+00 f t ronaldinho DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11429 +9462 2025-10-24 05:05:40.06283+00 2025-10-24 05:05:40.062842+00 f t Freyja DOG \N 5.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11430 +9463 2025-10-24 08:14:00.622427+00 2025-10-24 08:14:00.622438+00 f t Vito DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11431 +9464 2025-10-24 08:17:11.831205+00 2025-10-24 08:17:11.83122+00 f t Travis DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11432 +9465 2025-10-24 09:54:32.354947+00 2025-10-24 09:54:32.354957+00 f t Michu DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11433 +9466 2025-10-24 11:18:00.53789+00 2025-10-24 11:18:00.537899+00 f t Kito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11434 +9467 2025-10-24 11:33:07.688222+00 2025-10-24 11:33:07.688231+00 f t luna DOG \N 60.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11435 +9468 2025-10-24 12:08:02.843281+00 2025-10-24 12:08:02.843293+00 f t Oli DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11436 +9469 2025-10-24 12:10:24.210478+00 2025-10-24 12:10:24.210489+00 f t Fausto DOG \N 38.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11437 +9470 2025-10-24 12:13:46.034356+00 2025-10-24 12:13:46.034365+00 f t Lola CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11438 +9471 2025-10-24 12:17:13.961158+00 2025-10-24 12:17:13.961166+00 f t Zuri DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 2084 +9472 2025-10-24 12:32:00.353166+00 2025-10-24 12:32:00.353176+00 f t ZOE DOG \N 33.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11441 +9473 2025-10-24 13:15:31.716824+00 2025-10-24 13:15:31.716833+00 f t Goico DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11443 +11813 2025-11-24 12:29:40.754642+00 2025-11-24 12:29:40.754651+00 f t Tony CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14329 +9475 2025-10-24 14:35:31.198656+00 2025-10-24 14:35:31.198665+00 f t Miel CAT \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11448 +9476 2025-10-24 15:14:59.032971+00 2025-10-24 15:14:59.032979+00 f t trueno DOG \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11450 +9477 2025-10-24 15:15:44.653576+00 2025-10-24 15:15:44.653584+00 f t trueno CAT \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11450 +9478 2025-10-24 15:54:08.585353+00 2025-10-24 15:54:08.585362+00 f t Pio DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11453 +9479 2025-10-24 16:03:05.318932+00 2025-10-24 16:03:05.31894+00 f t perlita CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11454 +9480 2025-10-24 16:12:05.379703+00 2025-10-24 16:12:05.379714+00 f t Mandarina DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11455 +9481 2025-10-24 16:21:38.435178+00 2025-10-24 16:21:38.435187+00 f t luli DOG \N 7.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11456 +9482 2025-10-24 16:41:29.833049+00 2025-10-24 16:41:29.833058+00 f t Gus CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11457 +9483 2025-10-24 17:07:02.137954+00 2025-10-24 17:07:02.137966+00 f t Test CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11459 +9484 2025-10-24 17:22:50.333689+00 2025-10-24 17:22:50.333697+00 f t Tiberio CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11460 +9485 2025-10-24 17:23:18.776402+00 2025-10-24 17:23:18.77641+00 f t Tiberio CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11460 +9486 2025-10-24 17:34:15.508125+00 2025-10-24 17:34:15.508133+00 f t Tito CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11344 +9487 2025-10-24 17:45:12.65554+00 2025-10-24 17:45:12.655551+00 f t Luqui CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11461 +9488 2025-10-24 18:53:48.707846+00 2025-10-24 18:53:48.707855+00 f t Gato DOG \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11463 +9489 2025-10-24 20:14:42.264877+00 2025-10-24 20:14:42.264885+00 f t Budín CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11466 +9490 2025-10-24 20:29:22.463281+00 2025-10-24 20:29:22.463289+00 f t Tito DOG \N 14.90 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11467 +9491 2025-10-24 20:49:29.21494+00 2025-10-24 20:49:29.214951+00 f t Lola DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11468 +9492 2025-10-24 20:49:49.856529+00 2025-10-24 20:49:49.856539+00 f t Lola DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11468 +9493 2025-10-24 20:56:15.007518+00 2025-10-24 20:56:15.007528+00 f t zeus CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11469 +9494 2025-10-24 21:22:04.094709+00 2025-10-24 21:22:04.094717+00 f t Kiba CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11470 +9495 2025-10-24 21:39:59.904925+00 2025-10-24 21:39:59.904936+00 f t Poli CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11471 +9496 2025-10-24 22:04:53.482304+00 2025-10-24 22:04:53.482314+00 f t Black CAT \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11472 +9497 2025-10-24 22:24:16.321508+00 2025-10-24 22:24:16.32152+00 f t Thor Arevalo DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11473 +9498 2025-10-24 22:31:29.566708+00 2025-10-24 22:31:29.566718+00 f t Ron CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11474 +9499 2025-10-24 22:44:06.837417+00 2025-10-24 22:44:06.837431+00 f t Oliver CAT \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11475 +9500 2025-10-24 22:45:19.099781+00 2025-10-24 22:45:19.099791+00 f t Lola CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11475 +9501 2025-10-24 22:46:02.703384+00 2025-10-24 22:46:02.703393+00 f t Isabel CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11475 +9502 2025-10-24 22:46:48.587535+00 2025-10-24 22:46:48.587543+00 f t India CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11475 +9503 2025-10-24 22:49:24.382797+00 2025-10-24 22:49:24.382809+00 f t Nala CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11476 +9504 2025-10-24 23:05:42.836598+00 2025-10-24 23:05:42.836607+00 f t Rufi DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11477 +9505 2025-10-24 23:19:52.030295+00 2025-10-24 23:19:52.030303+00 f t Eladio CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11479 +9506 2025-10-24 23:52:42.365324+00 2025-10-24 23:52:42.365334+00 f t Tarzan Abreo Pantno CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11480 +9508 2025-10-24 23:58:31.650452+00 2025-10-24 23:58:31.650461+00 f t Lenin CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11481 +9509 2025-10-25 00:00:21.107284+00 2025-10-25 00:00:21.1073+00 f t Lila CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11481 +9510 2025-10-25 00:31:04.394802+00 2025-10-25 00:31:04.394811+00 f t Negro CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11482 +9511 2025-10-25 00:31:17.568879+00 2025-10-25 00:31:17.56889+00 f t Moro DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11483 +9512 2025-10-25 00:46:28.802759+00 2025-10-25 00:46:28.802767+00 f t Buck DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11484 +9513 2025-10-25 02:08:22.767203+00 2025-10-25 02:08:22.767214+00 f t Toby DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11486 +9514 2025-10-25 02:16:12.105504+00 2025-10-25 02:16:12.105513+00 f t Emanuel DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11487 +9515 2025-10-25 02:17:27.454479+00 2025-10-25 02:17:27.454489+00 f t Chimu DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11488 +9516 2025-10-25 04:13:08.497335+00 2025-10-25 04:13:08.497344+00 f t Zoumi CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11489 +9517 2025-10-25 06:21:20.623892+00 2025-10-25 06:21:20.623901+00 f t Branca CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11490 +9518 2025-10-25 07:29:04.808643+00 2025-10-25 07:29:04.808653+00 f t Milk DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11491 +9519 2025-10-25 08:35:50.064593+00 2025-10-25 08:35:50.064606+00 f t China DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11493 +9520 2025-10-25 08:53:36.638693+00 2025-10-25 08:53:36.638705+00 f t Boni DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11494 +9521 2025-10-25 11:18:39.020316+00 2025-10-25 11:18:39.020328+00 f t Nala DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11497 +9522 2025-10-25 12:36:51.804158+00 2025-10-25 12:36:51.804167+00 f t AmarMascotas DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11498 +9523 2025-10-25 12:39:11.331325+00 2025-10-25 12:39:11.331334+00 f t AmarMascotas DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11498 +9524 2025-10-25 12:39:53.126286+00 2025-10-25 12:39:53.126295+00 f t HERNAN DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11498 +9525 2025-10-25 12:51:47.357085+00 2025-10-25 12:51:47.357093+00 f t Abby DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11500 +9526 2025-10-25 12:52:05.503871+00 2025-10-25 12:52:05.503886+00 f t Abby CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11500 +9527 2025-10-25 12:56:34.7042+00 2025-10-25 12:56:34.704213+00 f t Nala DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11501 +9528 2025-10-25 13:22:06.268996+00 2025-10-25 13:22:06.269005+00 f t Blaki DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11502 +9529 2025-10-25 13:43:38.296675+00 2025-10-25 13:43:38.296686+00 f t Meli DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11504 +9530 2025-10-25 13:43:53.588189+00 2025-10-25 13:43:53.588198+00 f t Melisa DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11504 +9531 2025-10-25 13:44:00.818742+00 2025-10-25 13:44:00.818752+00 f t Melania CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11503 +9532 2025-10-25 14:23:43.556956+00 2025-10-25 14:23:43.556964+00 f t Erzengel CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11508 +9533 2025-10-25 14:36:14.822117+00 2025-10-25 14:36:14.822129+00 f t Frida CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11509 +9534 2025-10-25 14:54:59.317071+00 2025-10-25 14:54:59.317079+00 f t Caruso CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11510 +9535 2025-10-25 14:55:36.953782+00 2025-10-25 14:55:36.953792+00 f t Polly CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11511 +9536 2025-10-25 15:25:54.894967+00 2025-10-25 15:25:54.894975+00 f t Pepa DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11512 +9537 2025-10-25 15:26:18.308206+00 2025-10-25 15:26:18.308215+00 f t Pepa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11512 +9538 2025-10-25 15:29:02.718528+00 2025-10-25 15:29:02.718537+00 f t Potato CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11513 +9539 2025-10-25 15:37:21.670125+00 2025-10-25 15:37:21.670135+00 f t sol CAT 0 3.00 0.00 t \N \N \N \N MALE \N f \N 1208 11514 +9540 2025-10-25 16:11:08.550554+00 2025-10-25 16:11:08.550563+00 f t Rocky DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11516 +9541 2025-10-25 17:35:14.659997+00 2025-10-25 17:35:14.660007+00 f t Beltxa CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11517 +9542 2025-10-25 18:16:13.917988+00 2025-10-25 18:16:13.917997+00 f t Gunther DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11518 +9543 2025-10-25 18:18:46.924997+00 2025-10-25 18:18:46.925006+00 f t Kimey DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11519 +9544 2025-10-25 18:58:42.95777+00 2025-10-25 18:58:42.957778+00 f t Athena CAT \N 1.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11523 +9545 2025-10-25 19:14:15.127657+00 2025-10-25 19:14:15.127666+00 f t Hikari CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11524 +9546 2025-10-25 20:14:22.666664+00 2025-10-25 20:14:22.666675+00 f t Manchita DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11525 +9547 2025-10-25 22:21:38.294809+00 2025-10-25 22:21:38.294817+00 f t Abril CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11529 +9548 2025-10-25 22:42:35.706014+00 2025-10-25 22:42:35.706023+00 f t Katana DOG \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11531 +9549 2025-10-25 22:43:01.876168+00 2025-10-25 22:43:01.876181+00 f t Colo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11532 +9550 2025-10-25 22:44:13.861448+00 2025-10-25 22:44:13.861457+00 f t Katana DOG \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11534 +9551 2025-10-25 22:44:34.761747+00 2025-10-25 22:44:34.761759+00 f t Katana CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11534 +9552 2025-10-25 22:45:11.784959+00 2025-10-25 22:45:11.784968+00 f t Leona CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11535 +9507 2025-10-24 23:58:09.755017+00 2025-10-24 23:58:09.755026+00 t t Lenin DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11481 +9553 2025-10-25 23:00:26.363792+00 2025-10-25 23:00:26.363801+00 f t Laika DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11537 +9554 2025-10-25 23:08:08.404217+00 2025-10-25 23:08:08.40423+00 f t Hikari CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11538 +9555 2025-10-25 23:10:12.519712+00 2025-10-25 23:10:12.519722+00 f t Hikari CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11539 +9556 2025-10-25 23:29:06.274585+00 2025-10-25 23:29:06.274593+00 f t Rufus CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11541 +9557 2025-10-26 00:29:23.167413+00 2025-10-26 00:29:23.167422+00 f t América CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11545 +9558 2025-10-26 01:30:19.714432+00 2025-10-26 01:30:19.714443+00 f t Bigote CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11547 +9559 2025-10-26 02:58:43.553654+00 2025-10-26 02:58:43.553667+00 f t Luis Felipe CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11548 +9560 2025-10-26 02:59:51.853036+00 2025-10-26 02:59:51.853044+00 f t Jun Bartolomé CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11548 +9561 2025-10-26 04:18:25.063334+00 2025-10-26 04:18:25.063346+00 f t Tovi DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11550 +9562 2025-10-26 11:32:45.12285+00 2025-10-26 11:32:45.122859+00 f t Chiquitita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11551 +9563 2025-10-26 11:35:42.72836+00 2025-10-26 11:35:42.728369+00 f t Chiquita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11551 +9564 2025-10-26 13:16:16.347574+00 2025-10-26 13:16:16.347583+00 f t Eleonora CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11553 +9565 2025-10-26 15:07:36.750317+00 2025-10-26 15:07:36.750325+00 f t Ayla CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11554 +9566 2025-10-26 15:14:26.51546+00 2025-10-26 15:14:26.515469+00 f t Beli DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11555 +9567 2025-10-26 15:33:11.464785+00 2025-10-26 15:33:11.464792+00 f t Jax DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11556 +9568 2025-10-26 15:37:42.920278+00 2025-10-26 15:37:42.920286+00 f t Zeus CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11557 +9569 2025-10-26 15:41:42.962527+00 2025-10-26 15:41:42.962535+00 f t Apolo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 5658 +9570 2025-10-26 15:46:48.950702+00 2025-10-26 15:46:48.95071+00 f t Olivia DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11558 +9571 2025-10-26 16:03:41.387677+00 2025-10-26 16:03:41.38769+00 f t Lulú CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11559 +9572 2025-10-26 16:18:26.311461+00 2025-10-26 16:18:26.311469+00 f t Coco DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11560 +9573 2025-10-26 16:25:47.844275+00 2025-10-26 16:25:47.844287+00 f t Baghera DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11563 +9574 2025-10-26 16:26:24.137378+00 2025-10-26 16:26:24.137387+00 f t Baghera CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11563 +9575 2025-10-26 16:31:27.972578+00 2025-10-26 16:31:27.972586+00 f t Baghera CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11563 +9576 2025-10-26 16:52:41.263423+00 2025-10-26 16:52:41.263432+00 f t Freya CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11564 +9577 2025-10-26 17:22:15.95589+00 2025-10-26 17:22:15.955899+00 f t Rocky DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11566 +9578 2025-10-26 17:48:20.999549+00 2025-10-26 17:48:20.999559+00 f t Nina DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11569 +9579 2025-10-26 17:57:58.031788+00 2025-10-26 17:57:58.031797+00 f t Ramona DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11570 +9580 2025-10-26 18:14:34.723519+00 2025-10-26 18:14:34.723531+00 f t Nube CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11572 +9581 2025-10-26 18:48:58.312356+00 2025-10-26 18:48:58.312364+00 f t Zeus CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11575 +9582 2025-10-26 19:17:48.471821+00 2025-10-26 19:17:48.471829+00 f t Ciro CAT \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11576 +9583 2025-10-26 20:06:28.869399+00 2025-10-26 20:06:28.869408+00 f t Sara DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11579 +9584 2025-10-26 20:12:33.054611+00 2025-10-26 20:12:33.054619+00 f t Ciro DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11580 +9585 2025-10-26 20:37:09.220501+00 2025-10-26 20:37:09.220511+00 f t Popi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11582 +9586 2025-10-27 02:06:19.046353+00 2025-10-27 02:06:19.046361+00 f t Ringo DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 10365 +9587 2025-10-27 03:49:55.548882+00 2025-10-27 03:49:55.548893+00 f t Orión CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11585 +9588 2025-10-27 10:33:49.941388+00 2025-10-27 10:33:49.941397+00 f t Caty CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11588 +9589 2025-10-27 12:20:40.09129+00 2025-10-27 12:20:40.091299+00 f t Pola DOG \N 7.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11589 +9590 2025-10-27 12:33:28.918771+00 2025-10-27 12:33:28.91878+00 f t Mia DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11398 +9591 2025-10-27 12:44:19.524581+00 2025-10-27 12:44:19.52459+00 f t Mila DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11590 +11814 2025-11-24 12:30:32.437349+00 2025-11-24 12:30:32.437358+00 f t Coco CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14328 +9593 2025-10-27 13:28:27.074522+00 2025-10-27 13:28:27.074529+00 f t Rucci CAT 0 0.00 0.00 f \N \N \N \N MALE \N f \N 1583 920 +9594 2025-10-27 13:50:41.855787+00 2025-10-27 13:50:41.855799+00 f t Nala DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11594 +9595 2025-10-27 13:54:12.180921+00 2025-10-27 13:54:12.18093+00 f t Myloh DOG \N 300.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9147 +9596 2025-10-27 13:55:20.420192+00 2025-10-27 13:55:20.420204+00 f t Myloh CAT \N 300.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9147 +9597 2025-10-27 14:10:36.064773+00 2025-10-27 14:10:36.064783+00 f t Topi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11595 +9598 2025-10-27 14:17:16.746807+00 2025-10-27 14:17:16.746815+00 f t Nina DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11596 +9599 2025-10-27 14:18:50.968258+00 2025-10-27 14:18:50.968267+00 f t Benito DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11597 +9600 2025-10-27 14:39:56.17398+00 2025-10-27 14:39:56.17399+00 f t Lio CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11600 +9601 2025-10-27 14:54:26.492335+00 2025-10-27 14:54:26.492344+00 f t Nala DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11601 +9602 2025-10-27 14:59:18.378656+00 2025-10-27 14:59:18.378667+00 f t Oku CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11603 +9603 2025-10-27 15:00:54.163325+00 2025-10-27 15:00:54.163339+00 f t Oku CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11603 +9604 2025-10-27 15:10:21.426045+00 2025-10-27 15:10:21.426053+00 f t Michina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11605 +9605 2025-10-27 15:17:23.605965+00 2025-10-27 15:17:23.605974+00 f t Ipa CAT \N 4.40 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11606 +9606 2025-10-27 15:42:37.770377+00 2025-10-27 15:42:37.770386+00 f t Kitty CAT \N 1.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11608 +9607 2025-10-27 15:51:24.560307+00 2025-10-27 15:51:24.560316+00 f t Ona CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11609 +9609 2025-10-27 16:26:27.898614+00 2025-10-27 16:26:27.898623+00 f t simon CAT \N 500.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11613 +9608 2025-10-27 16:12:14.344268+00 2025-10-27 16:12:14.344277+00 f t Leo CAT 14 4.00 0.00 t \N \N \N \N MALE \N f \N 1583 11610 +9610 2025-10-27 16:51:46.836264+00 2025-10-27 16:51:46.836278+00 f t Milou DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11615 +9611 2025-10-27 16:57:33.898904+00 2025-10-27 16:57:33.898912+00 f t Ona CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11616 +9612 2025-10-27 16:58:44.706909+00 2025-10-27 16:58:44.706921+00 f t Milou DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11617 +9613 2025-10-27 17:00:47.324083+00 2025-10-27 17:00:47.324096+00 f t Uvi CAT \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11618 +9614 2025-10-27 17:05:07.360173+00 2025-10-27 17:05:07.360186+00 f t Test DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11619 +9615 2025-10-27 17:20:06.942582+00 2025-10-27 17:20:06.942596+00 f t CHICHI CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11620 +9616 2025-10-27 17:26:37.208084+00 2025-10-27 17:26:37.208093+00 f t Bella DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11621 +9617 2025-10-27 17:59:58.007106+00 2025-10-27 17:59:58.007116+00 f t Bruna DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11623 +9618 2025-10-27 18:01:02.371329+00 2025-10-27 18:01:02.37134+00 f t Callejera CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11625 +9619 2025-10-27 18:13:25.950509+00 2025-10-27 18:13:25.95052+00 f t Pulki DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11626 +9620 2025-10-27 18:15:08.238534+00 2025-10-27 18:15:08.238548+00 f t Bruna DOG \N 45.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11627 +9621 2025-10-27 18:27:54.284191+00 2025-10-27 18:27:54.284197+00 f t Sol CAT 4 4.00 0.00 t \N \N \N \N MALE \N f \N 1583 541 +9622 2025-10-27 18:34:48.650251+00 2025-10-27 18:34:48.65026+00 f t catarina DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11629 +9623 2025-10-27 18:34:48.955011+00 2025-10-27 18:34:48.955021+00 f t Charly CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11628 +9624 2025-10-27 18:38:37.86915+00 2025-10-27 18:38:37.869159+00 f t aiko CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11630 +9625 2025-10-27 18:57:05.886225+00 2025-10-27 18:57:05.886234+00 f t Ciro CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11631 +9626 2025-10-27 19:07:15.847986+00 2025-10-27 19:07:15.847998+00 f t Charly CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11632 +9627 2025-10-27 19:43:22.441292+00 2025-10-27 19:43:22.4413+00 f t China DOG \N 2.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11633 +9628 2025-10-27 19:58:12.560775+00 2025-10-27 19:58:12.56079+00 f t gitano CAT \N 680.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11634 +9629 2025-10-27 20:02:26.392403+00 2025-10-27 20:02:26.39242+00 f t chicho CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11634 +9630 2025-10-27 20:05:28.059718+00 2025-10-27 20:05:28.05973+00 f t Simon DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11635 +9631 2025-10-27 20:34:57.392307+00 2025-10-27 20:34:57.392317+00 f t Mikey DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11638 +9632 2025-10-27 20:40:04.16593+00 2025-10-27 20:40:04.165945+00 f t Tigra CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11639 +9633 2025-10-27 20:46:40.803557+00 2025-10-27 20:46:40.803566+00 f t Sandra CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11641 +9634 2025-10-27 20:47:26.634025+00 2025-10-27 20:47:26.634036+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11642 +9635 2025-10-27 20:47:53.334738+00 2025-10-27 20:47:53.335064+00 f t TEST CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11642 +9636 2025-10-27 20:56:14.597779+00 2025-10-27 20:56:14.59779+00 f t Ciro CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11643 +9637 2025-10-27 20:56:52.29834+00 2025-10-27 20:56:52.298349+00 f t Kiki CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11644 +9638 2025-10-27 21:03:33.500424+00 2025-10-27 21:03:33.500435+00 f t Bruce DOG \N 32.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11645 +9639 2025-10-27 21:07:35.600452+00 2025-10-27 21:07:35.600466+00 f t PRUEBA 12 jun DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11646 +9640 2025-10-27 21:09:46.582085+00 2025-10-27 21:09:46.582095+00 f t Bruce DOG \N 32.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11647 +9641 2025-10-27 21:12:33.08398+00 2025-10-27 21:12:33.083991+00 f t beli DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11648 +9642 2025-10-27 21:47:53.394379+00 2025-10-27 21:47:53.394391+00 f t Misti CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11651 +9643 2025-10-27 22:10:48.892532+00 2025-10-27 22:10:48.89254+00 f t Milo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11652 +9644 2025-10-27 22:18:35.311027+00 2025-10-27 22:18:35.31104+00 f t Chichi, DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11654 +9645 2025-10-27 22:35:32.965323+00 2025-10-27 22:35:32.965334+00 f t Nina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11656 +9646 2025-10-27 22:39:32.545111+00 2025-10-27 22:39:32.54512+00 f t Malaika CAT \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11657 +9647 2025-10-27 22:59:11.784657+00 2025-10-27 22:59:11.784666+00 f t Perla DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11658 +9648 2025-10-27 23:02:20.377367+00 2025-10-27 23:02:20.377378+00 f t Maki DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11659 +9649 2025-10-27 23:02:35.393796+00 2025-10-27 23:02:35.393805+00 f t Luna CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11660 +9650 2025-10-27 23:55:41.474503+00 2025-10-27 23:55:41.474514+00 f t Budin DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11662 +9651 2025-10-28 00:02:28.863804+00 2025-10-28 00:02:28.863813+00 f t Mia CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11663 +9652 2025-10-28 00:18:52.902447+00 2025-10-28 00:18:52.902456+00 f t Chilli Mora CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11667 +9653 2025-10-28 01:20:44.908071+00 2025-10-28 01:20:44.908081+00 f t Nutella CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11671 +9654 2025-10-28 01:22:56.853775+00 2025-10-28 01:22:56.853784+00 f t Jano CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11672 +9655 2025-10-28 01:50:32.95598+00 2025-10-28 01:50:32.95599+00 f t Bianca DOG \N 70.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11674 +9656 2025-10-28 02:20:34.570024+00 2025-10-28 02:20:34.570032+00 f t Fiona CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11675 +9657 2025-10-28 02:24:43.303189+00 2025-10-28 02:24:43.303198+00 f t Keeper DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11676 +9658 2025-10-28 02:41:02.894026+00 2025-10-28 02:41:02.894041+00 f t Jonas DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11677 +9659 2025-10-28 02:52:15.434704+00 2025-10-28 02:52:15.434713+00 f t Luli CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11678 +9660 2025-10-28 03:06:36.897837+00 2025-10-28 03:06:36.897849+00 f t Timon DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11683 +9661 2025-10-28 03:06:59.336937+00 2025-10-28 03:06:59.336947+00 f t rocky DOG \N 55.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11684 +9662 2025-10-28 03:09:10.190921+00 2025-10-28 03:09:10.190933+00 f t E CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11686 +9663 2025-10-28 03:30:20.44574+00 2025-10-28 03:30:20.445753+00 f t Madu DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11689 +9664 2025-10-28 04:21:10.384825+00 2025-10-28 04:21:10.384835+00 f t Slinky DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11691 +9665 2025-10-28 08:35:05.096552+00 2025-10-28 08:35:05.096566+00 f t Ayka DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11695 +9666 2025-10-28 10:19:05.078258+00 2025-10-28 10:19:05.078267+00 f t Mora DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11696 +9667 2025-10-28 10:52:24.676299+00 2025-10-28 10:52:24.676307+00 f t Aaron DOG \N 38.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11697 +9668 2025-10-28 11:03:59.809297+00 2025-10-28 11:03:59.809307+00 f t Boreas CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11698 +9669 2025-10-28 11:13:55.205684+00 2025-10-28 11:13:55.205693+00 f t LOBA DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11699 +9670 2025-10-28 11:14:28.854358+00 2025-10-28 11:14:28.854369+00 f t Milo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11700 +9671 2025-10-28 11:17:25.347227+00 2025-10-28 11:17:25.347236+00 f t Diana DOG \N 45.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11701 +9672 2025-10-28 11:39:22.922755+00 2025-10-28 11:39:22.922765+00 f t dona DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11702 +9673 2025-10-28 12:10:00.69184+00 2025-10-28 12:10:00.69185+00 f t Benito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11703 +9674 2025-10-28 12:11:48.605757+00 2025-10-28 12:11:48.605766+00 f t Viernes CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11703 +9675 2025-10-28 12:13:36.31741+00 2025-10-28 12:13:36.317418+00 f t Aga CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11703 +9676 2025-10-28 12:41:48.511661+00 2025-10-28 12:41:48.511671+00 f t Tarzán CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11685 +9677 2025-10-28 12:42:30.466006+00 2025-10-28 12:42:30.466015+00 f t marta DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11707 +9678 2025-10-28 12:43:44.650437+00 2025-10-28 12:43:44.650446+00 f t Marta CAT \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11707 +9679 2025-10-28 12:53:23.36985+00 2025-10-28 12:53:23.36986+00 f t Mini DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11709 +9680 2025-10-28 13:24:28.673208+00 2025-10-28 13:24:28.673218+00 f t LUNA CAT \N 0.80 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11711 +9681 2025-10-28 13:25:36.597756+00 2025-10-28 13:25:36.597764+00 f t Lisa DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11712 +9682 2025-10-28 13:39:04.465792+00 2025-10-28 13:39:04.465801+00 f t ambar DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11715 +9683 2025-10-28 13:58:57.202388+00 2025-10-28 13:58:57.202396+00 f t Papita DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 9165 +9684 2025-10-28 14:02:29.408641+00 2025-10-28 14:02:29.40865+00 f t Ñami CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11716 +9685 2025-10-28 14:21:23.712572+00 2025-10-28 14:21:23.712584+00 f t Tango CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11717 +9686 2025-10-28 14:31:41.086143+00 2025-10-28 14:31:41.086155+00 f t Chipa DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11718 +9687 2025-10-28 14:39:26.239853+00 2025-10-28 14:39:26.239866+00 f t Tino DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11719 +9688 2025-10-28 14:58:04.376472+00 2025-10-28 14:58:04.376481+00 f t Tigre CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11721 +9689 2025-10-28 15:00:51.686442+00 2025-10-28 15:00:51.686451+00 f t lio DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11720 +9690 2025-10-28 15:01:05.725941+00 2025-10-28 15:01:05.725951+00 f t felipe DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11720 +9691 2025-10-28 15:19:01.225147+00 2025-10-28 15:19:01.225157+00 f t Colin DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11722 +9692 2025-10-28 15:22:26.768647+00 2025-10-28 15:22:26.768655+00 f t Abby DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11723 +9693 2025-10-28 15:27:06.49888+00 2025-10-28 15:27:06.498891+00 f t Aria CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11724 +9694 2025-10-28 15:41:51.416772+00 2025-10-28 15:41:51.41678+00 f t satzuky DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11725 +9695 2025-10-28 15:42:18.31277+00 2025-10-28 15:42:18.312784+00 f t satzuky CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11725 +9696 2025-10-28 15:55:18.438508+00 2025-10-28 15:55:18.438516+00 f t Patricia Arriondo DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11726 +9697 2025-10-28 16:19:27.505184+00 2025-10-28 16:19:27.505193+00 f t El Patón Bauza DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11727 +9698 2025-10-28 16:20:29.917499+00 2025-10-28 16:20:29.917507+00 f t Amar DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11646 +9699 2025-10-28 16:21:18.420939+00 2025-10-28 16:21:18.420948+00 f t Amar DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11729 +9700 2025-10-28 16:24:40.707632+00 2025-10-28 16:24:40.70903+00 f t TEST CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11459 +9701 2025-10-28 16:26:03.276073+00 2025-10-28 16:26:03.276084+00 f t Amar DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11730 +9702 2025-10-28 16:31:16.177291+00 2025-10-28 16:31:16.177302+00 f t Rayo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11731 +9703 2025-10-28 16:36:58.597491+00 2025-10-28 16:36:58.5975+00 f t ringo DOG \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11732 +9704 2025-10-28 16:55:46.047026+00 2025-10-28 16:55:46.047038+00 f t Lia CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11733 +9705 2025-10-28 17:03:05.032009+00 2025-10-28 17:03:05.032024+00 f t Hipolito CAT \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11734 +9706 2025-10-28 17:11:13.483969+00 2025-10-28 17:11:13.48398+00 f t Misterio CAT \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11735 +9707 2025-10-28 17:23:57.103274+00 2025-10-28 17:23:57.103286+00 f t Nala DOG \N 28.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11736 +9708 2025-10-28 17:29:09.661377+00 2025-10-28 17:29:09.661389+00 f t Tito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11737 +9709 2025-10-28 17:41:09.199586+00 2025-10-28 17:41:09.199596+00 f t Hanna DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11739 +9710 2025-10-28 17:45:36.49053+00 2025-10-28 17:45:36.49054+00 f t Khaleesi DOG \N 33.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11740 +9711 2025-10-28 17:54:37.54442+00 2025-10-28 17:54:37.54443+00 f t Cleo CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11744 +9712 2025-10-28 17:58:24.103887+00 2025-10-28 17:58:24.103896+00 f t Hatha DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11745 +9713 2025-10-28 18:40:57.031903+00 2025-10-28 18:40:57.031914+00 f t Oliver CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11749 +9714 2025-10-28 18:42:51.587028+00 2025-10-28 18:42:51.587038+00 f t Bonnie CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11749 +9715 2025-10-28 19:10:19.042564+00 2025-10-28 19:10:19.042573+00 f t Lola DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11750 +9716 2025-10-28 19:19:55.387867+00 2025-10-28 19:19:55.387879+00 f t Lola CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11751 +9717 2025-10-28 19:36:58.750812+00 2025-10-28 19:36:58.750824+00 f t Evaristo DOG \N 28.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11754 +9440 2025-10-23 17:46:47.567667+00 2025-10-23 17:46:47.567676+00 t t Mia DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11398 +9718 2025-10-28 20:12:48.69588+00 2025-10-28 20:12:48.695892+00 f t Alvin DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11756 +9719 2025-10-28 20:16:17.946447+00 2025-10-28 20:16:17.946456+00 f t Sammy DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11757 +9720 2025-10-28 20:16:37.208087+00 2025-10-28 20:16:37.208097+00 f t Moka CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11757 +9721 2025-10-28 20:21:51.192978+00 2025-10-28 20:21:51.192991+00 f t Isis CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11758 +9722 2025-10-28 20:45:47.890143+00 2025-10-28 20:45:47.890153+00 f t Moka CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11759 +9723 2025-10-28 20:49:05.842469+00 2025-10-28 20:49:05.842479+00 f t pet 1 DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11760 +9724 2025-10-28 20:49:24.033722+00 2025-10-28 20:49:24.033735+00 f t pet 2 CAT \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11760 +9725 2025-10-28 20:52:08.698939+00 2025-10-28 20:52:08.698948+00 f t Pepe DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11761 +9726 2025-10-28 20:52:47.132154+00 2025-10-28 20:52:47.132164+00 f t Oreo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11762 +9727 2025-10-28 21:00:44.062846+00 2025-10-28 21:00:44.062859+00 f t Athos DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11763 +9728 2025-10-28 21:03:01.416202+00 2025-10-28 21:03:01.416214+00 f t Benito CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11765 +9729 2025-10-28 21:06:17.045198+00 2025-10-28 21:06:17.045209+00 f t Pato DOG \N 33.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11766 +9730 2025-10-28 21:56:17.918248+00 2025-10-28 21:56:17.918259+00 f t Pinito DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11772 +9731 2025-10-28 22:20:24.731236+00 2025-10-28 22:20:24.731244+00 f t Mere DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11774 +9732 2025-10-28 22:42:24.594971+00 2025-10-28 22:42:24.594979+00 f t Runa CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11776 +9733 2025-10-28 23:06:10.873471+00 2025-10-28 23:06:10.873483+00 f t Tyrion DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11777 +9734 2025-10-28 23:06:51.142481+00 2025-10-28 23:06:51.14249+00 f t Arya DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11777 +9735 2025-10-28 23:18:15.010714+00 2025-10-28 23:18:15.010723+00 f t Fortunato DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11778 +9736 2025-10-28 23:21:20.113437+00 2025-10-28 23:21:20.11345+00 f t Fortunato DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11778 +9737 2025-10-28 23:23:07.145671+00 2025-10-28 23:23:07.14568+00 f t Romeo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11779 +9738 2025-10-28 23:29:05.41135+00 2025-10-28 23:29:05.411359+00 f t Cielo CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11780 +9739 2025-10-28 23:34:32.7952+00 2025-10-28 23:34:32.795209+00 f t Nube CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11782 +9740 2025-10-28 23:38:05.178868+00 2025-10-28 23:38:05.178878+00 f t Tiki CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11783 +9741 2025-10-28 23:40:40.832824+00 2025-10-28 23:40:40.832833+00 f t Lulu DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11783 +9742 2025-10-28 23:45:02.650702+00 2025-10-28 23:45:02.650718+00 f t Odín CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11784 +9743 2025-10-28 23:55:23.208679+00 2025-10-28 23:55:23.208688+00 f t Dixie CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11785 +9744 2025-10-28 23:56:29.516044+00 2025-10-28 23:56:29.516056+00 f t Charli CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11785 +9745 2025-10-29 00:00:39.970953+00 2025-10-29 00:00:39.970968+00 f t Atena CAT \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11788 +9746 2025-10-29 00:08:30.883819+00 2025-10-29 00:08:30.883828+00 f t Pelusa CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11790 +9747 2025-10-29 00:10:17.354169+00 2025-10-29 00:10:17.35418+00 f t Tt CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11791 +9748 2025-10-29 00:16:54.83162+00 2025-10-29 00:16:54.831634+00 f t Teo DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11792 +9749 2025-10-29 00:56:56.015802+00 2025-10-29 00:56:56.01581+00 f t Qqq DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11793 +9750 2025-10-29 01:26:58.831498+00 2025-10-29 01:26:58.831509+00 f t Momo CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11795 +9751 2025-10-29 01:27:05.197357+00 2025-10-29 01:27:05.19737+00 f t Quimey CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11796 +9752 2025-10-29 01:45:59.887324+00 2025-10-29 01:45:59.887335+00 f t Lua DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11798 +9753 2025-10-29 01:48:52.294551+00 2025-10-29 01:48:52.29456+00 f t Gamora DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11799 +9754 2025-10-29 02:41:04.004087+00 2025-10-29 02:41:04.004102+00 f t Pistacha CAT \N 500.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11802 +9755 2025-10-29 03:02:37.519559+00 2025-10-29 03:02:37.519571+00 f t Lalo DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11804 +9756 2025-10-29 03:25:43.820285+00 2025-10-29 03:25:43.820294+00 f t Evo DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11805 +9757 2025-10-29 04:00:11.971187+00 2025-10-29 04:00:11.9712+00 f t Mia CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11806 +9758 2025-10-29 04:37:41.139059+00 2025-10-29 04:37:41.139068+00 f t Josefina DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11808 +9759 2025-10-29 04:45:11.477471+00 2025-10-29 04:45:11.477481+00 f t Misha CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11808 +9760 2025-10-29 04:46:21.575347+00 2025-10-29 04:46:21.575357+00 f t Pablito DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11808 +9761 2025-10-29 04:46:25.706154+00 2025-10-29 04:46:25.706167+00 f t Rocio DOG \N 16.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11809 +9762 2025-10-29 04:46:56.536002+00 2025-10-29 04:46:56.536011+00 f t Nicolas DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11808 +9763 2025-10-29 04:54:36.729946+00 2025-10-29 04:54:36.729956+00 f t Serú CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11810 +9764 2025-10-29 04:55:52.311423+00 2025-10-29 04:55:52.311436+00 f t Prince DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11810 +9765 2025-10-29 06:41:38.960826+00 2025-10-29 06:41:38.960835+00 f t Blas DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11811 +9766 2025-10-29 10:34:29.365142+00 2025-10-29 10:34:29.365151+00 f t Mia DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11812 +9767 2025-10-29 10:53:56.202773+00 2025-10-29 10:53:56.202782+00 f t Moro DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11814 +9768 2025-10-29 11:54:44.077237+00 2025-10-29 11:54:44.077246+00 f t Simona DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11816 +9769 2025-10-29 12:00:56.191098+00 2025-10-29 12:00:56.191108+00 f t sansa DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11818 +9770 2025-10-29 12:01:29.859755+00 2025-10-29 12:01:29.859764+00 f t Gato DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11817 +9771 2025-10-29 12:33:22.945812+00 2025-10-29 12:33:22.945823+00 f t Unma CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11820 +9772 2025-10-29 12:37:24.233328+00 2025-10-29 12:37:24.233337+00 f t Milo CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11821 +9773 2025-10-29 12:46:13.804169+00 2025-10-29 12:46:13.804185+00 f t Thom7 DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11823 +9774 2025-10-29 12:55:27.073783+00 2025-10-29 12:55:27.073792+00 f t Azul CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11824 +9775 2025-10-29 13:23:13.227624+00 2025-10-29 13:23:13.227634+00 f t Aurora CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11825 +9776 2025-10-29 13:36:02.516534+00 2025-10-29 13:36:02.516548+00 f t Chula DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11828 +9777 2025-10-29 13:52:17.017001+00 2025-10-29 13:52:17.017009+00 f t Yoda CAT \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11829 +9778 2025-10-29 14:04:43.128272+00 2025-10-29 14:04:43.128281+00 f t Yenny DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11830 +9779 2025-10-29 14:07:49.818765+00 2025-10-29 14:07:49.818775+00 f t Yenny DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11831 +9780 2025-10-29 14:08:35.840531+00 2025-10-29 14:08:35.840541+00 f t Nino CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11831 +9781 2025-10-29 14:12:01.211607+00 2025-10-29 14:12:01.211616+00 f t Simba CAT \N 55.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11832 +9782 2025-10-29 14:19:33.84141+00 2025-10-29 14:19:33.841419+00 f t MARSHALL CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11833 +9783 2025-10-29 14:19:40.051318+00 2025-10-29 14:19:40.05133+00 f t Anis CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11834 +9784 2025-10-29 14:43:22.469663+00 2025-10-29 14:43:22.469711+00 f t Chiqui DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11836 +9785 2025-10-29 14:45:09.472619+00 2025-10-29 14:45:09.472629+00 f t Chiqui DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11836 +9786 2025-10-29 14:46:41.458564+00 2025-10-29 14:46:41.458574+00 f t erre CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11838 +9787 2025-10-29 14:47:55.086063+00 2025-10-29 14:47:55.086074+00 f t Mia CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11839 +11815 2025-11-24 12:39:26.072898+00 2025-11-24 12:39:26.072907+00 f t Coco CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14330 +9789 2025-10-29 15:12:49.454451+00 2025-10-29 15:12:49.45446+00 f t MARSHALL DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11841 +9790 2025-10-29 15:14:21.582437+00 2025-10-29 15:14:21.582447+00 f t MARSHAL CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11841 +9791 2025-10-29 15:30:09.996591+00 2025-10-29 15:30:09.9966+00 f t TEST DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11844 +9792 2025-10-29 15:33:22.401276+00 2025-10-29 15:33:22.401285+00 f t Chocolino CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11845 +9793 2025-10-29 15:33:52.086602+00 2025-10-29 15:33:52.086612+00 f t Rumba DOG \N 10.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11846 +9794 2025-10-29 15:34:18.800551+00 2025-10-29 15:34:18.80056+00 f t Chocolino DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11847 +9795 2025-10-29 15:34:35.382271+00 2025-10-29 15:34:35.38228+00 f t Chimichanga CAT \N 2.90 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11846 +9796 2025-10-29 16:00:01.476208+00 2025-10-29 16:00:01.476223+00 f t Katar DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11848 +9797 2025-10-29 16:01:01.980645+00 2025-10-29 16:01:01.980732+00 f t Eclipsa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11849 +9798 2025-10-29 16:15:36.98238+00 2025-10-29 16:15:36.982392+00 f t Satzuky CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11850 +9799 2025-10-29 16:16:41.551751+00 2025-10-29 16:16:41.551762+00 f t Panchi DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11852 +9800 2025-10-29 16:16:46.586711+00 2025-10-29 16:16:46.58672+00 f t Chimichanga CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11851 +9801 2025-10-29 16:49:09.575398+00 2025-10-29 16:49:09.575408+00 f t Miauricio CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11853 +9802 2025-10-29 16:54:27.382418+00 2025-10-29 16:54:27.38243+00 f t Toro DOG \N 59.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11854 +11816 2025-11-24 13:00:53.37639+00 2025-11-24 13:00:53.3764+00 f t thor DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14331 +9804 2025-10-29 17:53:26.373494+00 2025-10-29 17:53:26.373503+00 f t Lolita DOG \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11856 +11829 2025-11-24 14:41:17.881853+00 2025-11-24 14:41:17.881863+00 f t Pancho DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14347 +9806 2025-10-29 18:15:55.902898+00 2025-10-29 18:15:55.90291+00 f t Bartolo CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11860 +9807 2025-10-29 18:36:05.755897+00 2025-10-29 18:36:05.755906+00 f t Indio DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11862 +9808 2025-10-29 18:49:37.636421+00 2025-10-29 18:49:37.636431+00 f t Carmen DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11863 +9809 2025-10-29 18:57:08.02951+00 2025-10-29 18:57:08.029519+00 f t Ramses CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11864 +9810 2025-10-29 18:58:03.066009+00 2025-10-29 18:58:03.066018+00 f t Kyo CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11864 +9811 2025-10-29 19:09:05.222007+00 2025-10-29 19:09:05.222022+00 f t La Yoryo CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11867 +9812 2025-10-29 19:11:17.190928+00 2025-10-29 19:11:17.190938+00 f t Raul DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11868 +9813 2025-10-29 19:20:13.393+00 2025-10-29 19:20:13.393009+00 f t Titi DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11869 +9814 2025-10-29 19:24:06.415858+00 2025-10-29 19:24:06.415868+00 f t Titi DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11871 +9815 2025-10-29 19:27:33.804015+00 2025-10-29 19:27:33.804023+00 f t Toni DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11871 +9816 2025-10-29 20:04:39.412925+00 2025-10-29 20:04:39.412935+00 f t Chispita CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11875 +9817 2025-10-29 20:17:22.178664+00 2025-10-29 20:17:22.178673+00 f t Cielo CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11876 +9818 2025-10-29 20:18:54.171312+00 2025-10-29 20:18:54.171322+00 f t Tomas CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11876 +9819 2025-10-29 20:19:24.142305+00 2025-10-29 20:19:24.142314+00 f t Blondi DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11877 +9820 2025-10-29 20:20:18.482862+00 2025-10-29 20:20:18.482871+00 f t Blondi DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11878 +9821 2025-10-29 20:20:29.526497+00 2025-10-29 20:20:29.526508+00 f t Tomas CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11876 +9822 2025-10-29 20:21:25.441846+00 2025-10-29 20:21:25.441855+00 f t Bello CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11878 +9823 2025-10-29 20:22:05.200493+00 2025-10-29 20:22:05.200503+00 f t Alma CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11878 +9824 2025-10-29 20:22:44.74666+00 2025-10-29 20:22:44.746673+00 f t Nani CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11878 +9825 2025-10-29 20:23:24.62439+00 2025-10-29 20:23:24.624402+00 f t Charlotte CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11878 +9826 2025-10-29 20:24:05.644182+00 2025-10-29 20:24:05.64419+00 f t Bello CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11878 +9827 2025-10-29 20:26:09.16849+00 2025-10-29 20:26:09.168499+00 f t Cielo CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11879 +9828 2025-10-29 20:34:44.985109+00 2025-10-29 20:34:44.985118+00 f t Renee CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11880 +9829 2025-10-29 21:18:55.6785+00 2025-10-29 21:18:55.678512+00 f t Pepi DOG \N 400.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11882 +9830 2025-10-29 21:30:59.476148+00 2025-10-29 21:30:59.476158+00 f t Maomao CAT \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11883 +9831 2025-10-29 21:35:30.4365+00 2025-10-29 21:35:30.436511+00 f t Maomao CAT \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11884 +9832 2025-10-29 21:40:36.410899+00 2025-10-29 21:40:36.410908+00 f t Nino CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11886 +9833 2025-10-29 22:06:04.837394+00 2025-10-29 22:06:04.837404+00 f t PepA DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11888 +9834 2025-10-29 22:15:33.797814+00 2025-10-29 22:15:33.797823+00 f t Persian CAT \N 3.40 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11889 +9835 2025-10-29 22:35:06.204022+00 2025-10-29 22:35:06.204031+00 f t Bruna DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11890 +9836 2025-10-29 22:43:56.912188+00 2025-10-29 22:43:56.912197+00 f t Manuel CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11891 +9837 2025-10-29 22:58:08.699047+00 2025-10-29 22:58:08.699055+00 f t Ariel CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11894 +9838 2025-10-29 22:58:31.755252+00 2025-10-29 22:58:31.755261+00 f t Grana DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11895 +9839 2025-10-29 23:01:46.70351+00 2025-10-29 23:01:46.70352+00 f t Pancho DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11896 +9840 2025-10-29 23:14:23.115753+00 2025-10-29 23:14:23.115762+00 f t Eclipsa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11898 +9841 2025-10-29 23:18:27.382336+00 2025-10-29 23:18:27.382346+00 f t Eclipsa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11899 +9842 2025-10-29 23:22:20.016624+00 2025-10-29 23:22:20.016635+00 f t Toño DOG \N 450.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11901 +9843 2025-10-29 23:23:20.869425+00 2025-10-29 23:23:20.869435+00 f t Toño CAT \N 600.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11901 +9844 2025-10-30 00:15:43.711803+00 2025-10-30 00:15:43.711812+00 f t Rucho DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11903 +9845 2025-10-30 00:23:36.57045+00 2025-10-30 00:23:36.570459+00 f t ERRE CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11904 +9846 2025-10-30 00:24:09.053556+00 2025-10-30 00:24:09.053566+00 f t Milan CAT \N 3.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11905 +9847 2025-10-30 00:24:21.850893+00 2025-10-30 00:24:21.850901+00 f t Tomas DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11906 +9848 2025-10-30 00:27:18.431508+00 2025-10-30 00:27:18.431518+00 f t Tomas DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11907 +9849 2025-10-30 00:33:47.629895+00 2025-10-30 00:33:47.629904+00 f t roa DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11908 +9850 2025-10-30 00:56:17.01519+00 2025-10-30 00:56:17.015201+00 f t Nietzsche CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11911 +9851 2025-10-30 01:15:19.544097+00 2025-10-30 01:15:19.544107+00 f t Dona CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11913 +9852 2025-10-30 01:26:19.011554+00 2025-10-30 01:26:19.011564+00 f t Uma DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11914 +9853 2025-10-30 01:58:42.467047+00 2025-10-30 01:58:42.467056+00 f t León CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11919 +9854 2025-10-30 02:11:01.596602+00 2025-10-30 02:11:01.596611+00 f t Salem CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11921 +9855 2025-10-30 02:32:44.818162+00 2025-10-30 02:32:44.818172+00 f t Ate DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11922 +9856 2025-10-30 02:47:27.19797+00 2025-10-30 02:47:27.197983+00 f t Arú CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11925 +9857 2025-10-30 02:48:41.911606+00 2025-10-30 02:48:41.911616+00 f t Cata CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11925 +9858 2025-10-30 02:59:04.771843+00 2025-10-30 02:59:04.771854+00 f t Cloi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11926 +9859 2025-10-30 03:08:30.46434+00 2025-10-30 03:08:30.46435+00 f t Lupits DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11927 +9860 2025-10-30 03:09:40.001003+00 2025-10-30 03:09:40.001012+00 f t Lupita DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11928 +9861 2025-10-30 03:16:38.768279+00 2025-10-30 03:16:38.768288+00 f t Bebi DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11929 +9862 2025-10-30 03:44:40.534193+00 2025-10-30 03:44:40.534202+00 f t Lolita DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11933 +9863 2025-10-30 03:57:51.343436+00 2025-10-30 03:57:51.34345+00 f t Margarita DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11934 +9864 2025-10-30 03:59:28.261451+00 2025-10-30 03:59:28.26146+00 f t Sara CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11934 +9865 2025-10-30 04:10:28.750436+00 2025-10-30 04:10:28.750446+00 f t Ella CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11935 +9866 2025-10-30 06:04:38.520983+00 2025-10-30 06:04:38.520992+00 f t Rosa DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11936 +9867 2025-10-30 06:22:51.503281+00 2025-10-30 06:22:51.503291+00 f t Pluma CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11937 +9868 2025-10-30 08:28:47.522847+00 2025-10-30 08:28:47.522859+00 f t Hanni DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11938 +9869 2025-10-30 10:53:25.805632+00 2025-10-30 10:53:25.805641+00 f t Aretha DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11943 +9870 2025-10-30 11:57:35.935798+00 2025-10-30 11:57:35.935807+00 f t Lulú DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11945 +9872 2025-10-30 12:31:07.639098+00 2025-10-30 12:31:07.639108+00 f t Harry DOG \N 47.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11948 +9873 2025-10-30 12:39:01.565687+00 2025-10-30 12:39:01.565703+00 f t Harry DOG \N 60.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11950 +9874 2025-10-30 13:01:33.269045+00 2025-10-30 13:01:33.269053+00 f t BACO CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11952 +9805 2025-10-29 17:58:00.879348+00 2025-10-29 17:58:00.879358+00 f t Chloe DOG 0 26.00 0.00 f \N \N \N \N FEMALE \N t \N 1208 11857 +9875 2025-10-30 13:26:35.427227+00 2025-10-30 13:26:35.427236+00 f t jack DOG \N 32.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11955 +9876 2025-10-30 13:30:25.639346+00 2025-10-30 13:30:25.639355+00 f t Loco DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11956 +9877 2025-10-30 13:42:29.023287+00 2025-10-30 13:42:29.023295+00 f t TEST DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11960 +9878 2025-10-30 13:43:23.430768+00 2025-10-30 13:43:23.430777+00 f t Thor DOG \N 46.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11959 +9879 2025-10-30 14:24:53.017206+00 2025-10-30 14:24:53.017216+00 f t Felipe DOG \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11962 +9880 2025-10-30 14:25:40.376999+00 2025-10-30 14:25:40.377009+00 f t Kyle CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11963 +9881 2025-10-30 14:30:03.50505+00 2025-10-30 14:30:03.505063+00 f t Ska CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11964 +9882 2025-10-30 14:31:25.478349+00 2025-10-30 14:31:25.478358+00 f t NERON CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11964 +9883 2025-10-30 14:36:14.927341+00 2025-10-30 14:36:14.927349+00 f t Dioni CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11965 +9884 2025-10-30 14:37:44.142326+00 2025-10-30 14:37:44.142334+00 f t Larissa DOG \N 19.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11966 +9885 2025-10-30 14:46:16.823728+00 2025-10-30 14:46:16.823738+00 f t Anubis CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11967 +9871 2025-10-30 11:59:03.165943+00 2025-10-30 11:59:03.165952+00 f t Lulú DOG 0 3.00 0.00 f \N \N \N \N FEMALE \N f \N 1208 11946 +9474 2025-10-24 13:59:45.572902+00 2025-10-24 13:59:45.572911+00 f t Zoe DOG 0 32.00 0.00 f \N \N \N \N FEMALE \N t \N 1208 11447 +9886 2025-10-30 15:15:26.751192+00 2025-10-30 15:15:26.751205+00 f t Loki CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11969 +9887 2025-10-30 15:17:47.903795+00 2025-10-30 15:17:47.903805+00 f t Kira DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11970 +9888 2025-10-30 15:21:50.23392+00 2025-10-30 15:21:50.233928+00 f t luna DOG \N 1.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11971 +9889 2025-10-30 15:22:41.425567+00 2025-10-30 15:22:41.425576+00 f t tony DOG \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11971 +9890 2025-10-30 15:23:40.284116+00 2025-10-30 15:23:40.284125+00 f t nieves DOG \N 1.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11971 +9891 2025-10-30 15:52:01.956558+00 2025-10-30 15:52:01.956568+00 f t Mora CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11972 +9892 2025-10-30 15:56:05.985013+00 2025-10-30 15:56:05.985022+00 f t Milo CAT \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11972 +9893 2025-10-30 16:01:20.642733+00 2025-10-30 16:01:20.642743+00 f t Mora CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11973 +9894 2025-10-30 16:03:49.465495+00 2025-10-30 16:03:49.465503+00 f t Milo CAT \N 4.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11973 +9895 2025-10-30 16:05:37.607379+00 2025-10-30 16:05:37.607388+00 f t Vicente CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11974 +9896 2025-10-30 16:06:10.588146+00 2025-10-30 16:06:10.588159+00 f t Milko DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11975 +9897 2025-10-30 16:40:49.127661+00 2025-10-30 16:40:49.12767+00 f t Lola DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11977 +9898 2025-10-30 16:46:15.373292+00 2025-10-30 16:46:15.3733+00 f t Akira DOG \N 60.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11978 +9899 2025-10-30 16:48:02.29355+00 2025-10-30 16:48:02.293559+00 f t Miky DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11978 +9900 2025-10-30 16:48:40.760336+00 2025-10-30 16:48:40.760344+00 f t Mia CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11978 +9901 2025-10-30 16:49:26.510239+00 2025-10-30 16:49:26.510248+00 f t Reyna CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11978 +9902 2025-10-30 16:57:44.620774+00 2025-10-30 16:57:44.620782+00 f t Julieta DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11979 +9903 2025-10-30 17:13:34.959564+00 2025-10-30 17:13:34.959576+00 f t Pomelo CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11980 +9904 2025-10-30 17:24:57.741087+00 2025-10-30 17:24:57.741097+00 f t Titi CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11981 +9905 2025-10-30 17:28:29.497255+00 2025-10-30 17:28:29.497263+00 f t Aurelio DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11982 +9906 2025-10-30 17:28:45.412091+00 2025-10-30 17:28:45.412103+00 f t Aurelio CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11982 +9907 2025-10-30 17:44:27.41679+00 2025-10-30 17:44:27.416799+00 f t akiler DOG \N 0.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11984 +9908 2025-10-30 18:11:58.612102+00 2025-10-30 18:11:58.612111+00 f t Luna DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11985 +9909 2025-10-30 18:19:47.383674+00 2025-10-30 18:19:47.383683+00 f t Merlot DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11986 +9910 2025-10-30 19:18:37.398535+00 2025-10-30 19:18:37.398544+00 f t toribio DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11987 +9911 2025-10-30 19:18:44.016002+00 2025-10-30 19:18:44.016012+00 f t maz CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11988 +9912 2025-10-30 19:19:05.308056+00 2025-10-30 19:19:05.308065+00 f t Max DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11988 +9913 2025-10-30 19:19:27.278534+00 2025-10-30 19:19:27.278548+00 f t Max CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11988 +9914 2025-10-30 19:34:25.622304+00 2025-10-30 19:34:25.622314+00 f t V DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 11989 +9915 2025-10-30 19:37:06.682831+00 2025-10-30 19:37:06.682839+00 f t cfdfggd DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 11990 +9916 2025-10-30 19:51:41.990483+00 2025-10-30 19:51:41.990493+00 f t C CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11991 +9917 2025-10-30 20:01:17.001537+00 2025-10-30 20:01:17.001547+00 f t TEST DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11992 +9918 2025-10-30 20:02:33.433759+00 2025-10-30 20:02:33.433772+00 f t TEST DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11993 +9919 2025-10-30 20:07:46.147913+00 2025-10-30 20:07:46.147922+00 f t Celia DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11995 +9920 2025-10-30 20:08:42.974431+00 2025-10-30 20:08:42.974442+00 f t Tuti CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11996 +9921 2025-10-30 20:13:13.220149+00 2025-10-30 20:13:13.220158+00 f t Chimi CAT \N 2.90 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 11851 +9922 2025-10-30 20:24:47.546351+00 2025-10-30 20:24:47.54636+00 f t Patricia DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11998 +9923 2025-10-30 20:25:20.718096+00 2025-10-30 20:25:20.718105+00 f t Patricia CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 11999 +9924 2025-10-30 20:47:18.873284+00 2025-10-30 20:47:18.873292+00 f t Toto DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12000 +9925 2025-10-30 20:56:52.703657+00 2025-10-30 20:56:52.703666+00 f t Shaka DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12001 +9926 2025-10-30 21:25:23.273231+00 2025-10-30 21:25:23.273245+00 f t Nala CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12002 +9927 2025-10-30 21:52:36.778037+00 2025-10-30 21:52:36.778046+00 f t Loly DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12003 +9928 2025-10-30 22:20:11.211004+00 2025-10-30 22:20:11.211018+00 f t Clarisa DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12004 +9929 2025-10-30 22:27:18.613073+00 2025-10-30 22:27:18.613082+00 f t Olivia CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12005 +9930 2025-10-30 23:10:04.963984+00 2025-10-30 23:10:04.963999+00 f t Luci CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12007 +9931 2025-10-30 23:43:01.471217+00 2025-10-30 23:43:01.471227+00 f t Perla DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12009 +9932 2025-10-30 23:47:06.026418+00 2025-10-30 23:47:06.026427+00 f t Bule DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12010 +9933 2025-10-30 23:54:03.172839+00 2025-10-30 23:54:03.17285+00 f t Ahsoka DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12013 +9934 2025-10-31 00:12:04.335592+00 2025-10-31 00:12:04.335602+00 f t Baruj DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12014 +9935 2025-10-31 00:49:41.633+00 2025-10-31 00:49:41.633009+00 f t Tina DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12015 +9936 2025-10-31 01:56:32.836481+00 2025-10-31 01:56:32.83649+00 f t India DOG \N 33.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12019 +9937 2025-10-31 02:15:47.757666+00 2025-10-31 02:15:47.757675+00 f t Kira DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12020 +9938 2025-10-31 02:17:56.142317+00 2025-10-31 02:17:56.142326+00 f t Homero CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12021 +9939 2025-10-31 02:20:33.804105+00 2025-10-31 02:20:33.804114+00 f t Oppo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12022 +9940 2025-10-31 02:25:33.051672+00 2025-10-31 02:25:33.051681+00 f t Ashly DOG \N 17.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12023 +9941 2025-10-31 02:30:53.781008+00 2025-10-31 02:30:53.781017+00 f t Ashly DOG \N 17.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12024 +9942 2025-10-31 02:33:03.615968+00 2025-10-31 02:33:03.61598+00 f t Antony DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12025 +9943 2025-10-31 02:38:26.747022+00 2025-10-31 02:38:26.747031+00 f t Chiqui DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12028 +9944 2025-10-31 02:40:48.952923+00 2025-10-31 02:40:48.952933+00 f t Osa DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12029 +9945 2025-10-31 02:44:15.697556+00 2025-10-31 02:44:15.697567+00 f t Osa DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12030 +9946 2025-10-31 02:49:44.368465+00 2025-10-31 02:49:44.368474+00 f t Osa DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12030 +9947 2025-10-31 02:50:06.543777+00 2025-10-31 02:50:06.543791+00 f t Gabriela Melina Ayala DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12030 +9948 2025-10-31 02:52:08.394626+00 2025-10-31 02:52:08.394637+00 f t CACHI DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12031 +9949 2025-10-31 03:31:59.164846+00 2025-10-31 03:31:59.164856+00 f t Yogui CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12033 +9950 2025-10-31 08:08:06.70283+00 2025-10-31 08:08:06.702839+00 f t Adolfo DOG \N 19.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12035 +9951 2025-10-31 09:22:53.235649+00 2025-10-31 09:22:53.235657+00 f t Pelusa CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12036 +9952 2025-10-31 09:44:37.72692+00 2025-10-31 09:44:37.726929+00 f t India CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12037 +9953 2025-10-31 10:37:35.38555+00 2025-10-31 10:37:35.385559+00 f t Leia DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12038 +9954 2025-10-31 11:38:20.280926+00 2025-10-31 11:38:20.280934+00 f t Mocca CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12042 +9955 2025-10-31 11:42:23.65802+00 2025-10-31 11:42:23.658032+00 f t Mora DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12043 +9956 2025-10-31 12:00:14.288474+00 2025-10-31 12:00:14.288489+00 f t tyson DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12044 +9957 2025-10-31 12:15:03.859913+00 2025-10-31 12:15:03.859928+00 f t TEST DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12045 +9958 2025-10-31 12:20:10.67067+00 2025-10-31 12:20:10.670679+00 f t TEST DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12046 +9959 2025-10-31 12:21:43.140055+00 2025-10-31 12:21:43.140063+00 f t TEST DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12047 +9960 2025-10-31 12:22:37.230885+00 2025-10-31 12:22:37.230896+00 f t TES DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12048 +9961 2025-10-31 13:38:09.520303+00 2025-10-31 13:38:09.520316+00 f t Pantu DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12049 +9962 2025-10-31 13:38:51.134582+00 2025-10-31 13:38:51.134592+00 f t Peluza CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12050 +9963 2025-10-31 13:49:03.629706+00 2025-10-31 13:49:03.629721+00 f t Julnar CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12051 +9964 2025-10-31 14:09:06.006917+00 2025-10-31 14:09:06.006934+00 f t mm DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12052 +9965 2025-10-31 14:12:52.257917+00 2025-10-31 14:12:52.257926+00 f t Ares DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12053 +9966 2025-10-31 14:15:05.953521+00 2025-10-31 14:15:05.953537+00 f t Pancho CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12053 +9967 2025-10-31 14:16:32.710737+00 2025-10-31 14:16:32.710744+00 f t Isabella CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12053 +9968 2025-10-31 14:18:09.805369+00 2025-10-31 14:18:09.805377+00 f t Negrita CAT \N 1.70 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12053 +9969 2025-10-31 14:44:02.954091+00 2025-10-31 14:44:02.9541+00 f t HERNAN DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12056 +9970 2025-10-31 14:54:10.019269+00 2025-10-31 14:54:10.019278+00 f t AmarMascotas DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12057 +9971 2025-10-31 14:56:16.796646+00 2025-10-31 14:56:16.796653+00 f t Dusty CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12058 +9972 2025-10-31 15:10:23.000229+00 2025-10-31 15:10:23.000237+00 f t Nilo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12059 +9973 2025-10-31 15:14:20.401507+00 2025-10-31 15:14:20.401519+00 f t Emma DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12060 +9974 2025-10-31 15:19:03.244871+00 2025-10-31 15:19:03.24488+00 f t Loly DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12061 +9975 2025-10-31 15:24:36.408129+00 2025-10-31 15:24:36.408137+00 f t Luna CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12062 +9976 2025-10-31 15:34:24.801982+00 2025-10-31 15:34:24.801992+00 f t Chimuelo DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12063 +9977 2025-10-31 16:01:16.07995+00 2025-10-31 16:01:16.079958+00 f t Taylor DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12065 +9978 2025-10-31 16:43:45.211729+00 2025-10-31 16:43:45.211738+00 f t Bamba DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12066 +9979 2025-10-31 16:58:49.797153+00 2025-10-31 16:58:49.797161+00 f t Vainilla CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12067 +9980 2025-10-31 17:02:45.214913+00 2025-10-31 17:02:45.214925+00 f t Marcos DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12068 +9981 2025-10-31 17:04:10.787622+00 2025-10-31 17:04:10.78763+00 f t Toddy DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12069 +9982 2025-10-31 17:05:06.89084+00 2025-10-31 17:05:06.890848+00 f t Emma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12070 +9983 2025-10-31 17:05:35.296209+00 2025-10-31 17:05:35.29622+00 f t Emma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12071 +9984 2025-10-31 17:06:13.7144+00 2025-10-31 17:06:13.714409+00 f t Emma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12072 +9985 2025-10-31 17:07:24.256047+00 2025-10-31 17:07:24.25606+00 f t Marcos DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12073 +9986 2025-10-31 17:25:27.464038+00 2025-10-31 17:25:27.464046+00 f t Odin DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12077 +9987 2025-10-31 18:09:59.283554+00 2025-10-31 18:09:59.283566+00 f t Greta CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12078 +9988 2025-10-31 18:12:02.236736+00 2025-10-31 18:12:02.236745+00 f t Almendra CAT 12 0.00 0.00 t \N \N \N \N FEMALE \N f \N 1583 12067 +9989 2025-10-31 18:51:21.567761+00 2025-10-31 18:51:21.567769+00 f t Ozzy CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12080 +9990 2025-10-31 19:05:31.669206+00 2025-10-31 19:05:31.669215+00 f t Duque CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12081 +9991 2025-10-31 19:49:31.190029+00 2025-10-31 19:49:31.190038+00 f t Pipo DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12083 +9992 2025-10-31 20:08:13.813585+00 2025-10-31 20:08:13.813596+00 f t nushem CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12084 +9993 2025-10-31 20:21:38.589916+00 2025-10-31 20:21:38.589926+00 f t Luna DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12085 +9994 2025-10-31 20:23:02.685697+00 2025-10-31 20:23:02.68571+00 f t Luna DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12085 +9995 2025-10-31 20:32:46.994745+00 2025-10-31 20:32:46.994754+00 f t Luna DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12087 +9996 2025-10-31 21:44:32.077372+00 2025-10-31 21:44:32.07738+00 f t Misterio CAT \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12089 +9997 2025-10-31 21:45:09.669142+00 2025-10-31 21:45:09.669152+00 f t Clio DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12090 +9998 2025-10-31 21:46:52.844576+00 2025-10-31 21:46:52.844585+00 f t clio DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12093 +9999 2025-10-31 22:20:17.42082+00 2025-10-31 22:20:17.420829+00 f t Akira CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12096 +10000 2025-10-31 22:29:33.700575+00 2025-10-31 22:29:33.700583+00 f t Mia DOG \N 16.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12098 +10001 2025-10-31 22:38:09.474386+00 2025-10-31 22:38:09.474395+00 f t Erzengel DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12099 +10002 2025-10-31 22:38:34.194558+00 2025-10-31 22:38:34.194569+00 f t bmarianalaura@gmail.com CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12099 +10003 2025-10-31 22:43:46.312791+00 2025-10-31 22:43:46.3128+00 f t Mia DOG \N 16.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12101 +10004 2025-10-31 22:53:58.403036+00 2025-10-31 22:53:58.403046+00 f t Soki DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12103 +10005 2025-10-31 22:54:20.110197+00 2025-10-31 22:54:20.11021+00 f t Soki CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12103 +10006 2025-10-31 23:01:57.593258+00 2025-10-31 23:01:57.593267+00 f t Pelusa DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12105 +10007 2025-10-31 23:04:24.874174+00 2025-10-31 23:04:24.874183+00 f t China CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12106 +10008 2025-10-31 23:16:13.021276+00 2025-10-31 23:16:13.021284+00 f t Rucula CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12109 +10009 2025-10-31 23:17:31.69306+00 2025-10-31 23:17:31.693069+00 f t Rucula CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12110 +10010 2025-10-31 23:18:58.297216+00 2025-10-31 23:18:58.297231+00 f t Frida CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12110 +10011 2025-10-31 23:19:15.942423+00 2025-10-31 23:19:15.942433+00 f t Freya CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12110 +10012 2025-10-31 23:33:40.248942+00 2025-10-31 23:33:40.248951+00 f t Kira CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12112 +10013 2025-10-31 23:34:40.656557+00 2025-10-31 23:34:40.656569+00 f t Kiki CAT \N 4.85 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12111 +10014 2025-10-31 23:54:03.451829+00 2025-10-31 23:54:03.451838+00 f t Roma CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12114 +10015 2025-11-01 00:17:49.796241+00 2025-11-01 00:17:49.796254+00 f t Pipa DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12115 +10016 2025-11-01 00:23:11.492162+00 2025-11-01 00:23:11.492171+00 f t Claudio DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12118 +10017 2025-11-01 00:25:23.296179+00 2025-11-01 00:25:23.296188+00 f t Oliver DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12118 +10018 2025-11-01 00:26:18.638353+00 2025-11-01 00:26:18.638362+00 f t Gina CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12119 +10019 2025-11-01 00:36:28.21749+00 2025-11-01 00:36:28.217499+00 f t Ramón CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12120 +11817 2025-11-24 13:14:35.772703+00 2025-11-24 13:14:35.772712+00 f t Rocky romero DOG \N 24.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14332 +10021 2025-11-01 00:56:31.099984+00 2025-11-01 00:56:31.099994+00 f t Leia CAT \N 5.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12122 +10022 2025-11-01 01:10:18.208971+00 2025-11-01 01:10:18.208981+00 f t Iggy DOG \N 5.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12123 +10023 2025-11-01 01:27:54.21898+00 2025-11-01 01:27:54.218989+00 f t Amadeo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12124 +10024 2025-11-01 01:34:50.290924+00 2025-11-01 01:34:50.290933+00 f t Kira DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12125 +10025 2025-11-01 01:38:00.447968+00 2025-11-01 01:38:00.447977+00 f t Roman DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12126 +10026 2025-11-01 01:44:34.890179+00 2025-11-01 01:44:34.890188+00 f t Román DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12127 +10027 2025-11-01 01:46:47.617188+00 2025-11-01 01:46:47.617197+00 f t Román DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12128 +10028 2025-11-01 01:48:02.798668+00 2025-11-01 01:48:02.798677+00 f t Michi CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12129 +10029 2025-11-01 02:06:33.015061+00 2025-11-01 02:06:33.015071+00 f t Diamantita CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12131 +10030 2025-11-01 02:13:23.169625+00 2025-11-01 02:13:23.169634+00 f t Arrow DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12132 +10031 2025-11-01 02:16:19.352676+00 2025-11-01 02:16:19.352685+00 f t Arrow DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12134 +10032 2025-11-01 02:19:14.609707+00 2025-11-01 02:19:14.609719+00 f t Mila CAT \N 250.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12135 +10033 2025-11-01 02:31:31.356613+00 2025-11-01 02:31:31.356622+00 f t Luli DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12136 +10034 2025-11-01 07:37:38.722641+00 2025-11-01 07:37:38.722652+00 f t Alicia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12140 +10035 2025-11-01 07:50:17.320049+00 2025-11-01 07:50:17.320058+00 f t Nova DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12141 +10036 2025-11-01 07:50:52.583842+00 2025-11-01 07:50:52.58385+00 f t Alicia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12142 +10037 2025-11-01 07:51:12.180385+00 2025-11-01 07:51:12.180395+00 f t Nova DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12143 +10038 2025-11-01 09:03:18.291703+00 2025-11-01 09:03:18.291712+00 f t Fofis DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12144 +10039 2025-11-01 09:25:20.531714+00 2025-11-01 09:25:20.531725+00 f t Odara DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12145 +10040 2025-11-01 10:30:51.612339+00 2025-11-01 10:30:51.612348+00 f t Facu CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12146 +10041 2025-11-01 10:31:48.47788+00 2025-11-01 10:31:48.477888+00 f t Facu CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12146 +10042 2025-11-01 10:45:45.860159+00 2025-11-01 10:45:45.860167+00 f t Thiago DOG \N 80.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12147 +10043 2025-11-01 11:16:31.558637+00 2025-11-01 11:16:31.558645+00 f t Pancho CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12148 +10044 2025-11-01 11:22:13.420543+00 2025-11-01 11:22:13.420555+00 f t Clari CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12149 +10045 2025-11-01 11:22:30.967837+00 2025-11-01 11:22:30.967845+00 f t Clari CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12149 +10046 2025-11-01 11:23:29.684299+00 2025-11-01 11:23:29.684308+00 f t Ichi CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12149 +10047 2025-11-01 11:36:35.430423+00 2025-11-01 11:36:35.430431+00 f t Pantera CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12150 +10048 2025-11-01 11:53:31.67235+00 2025-11-01 11:53:31.672358+00 f t Zaira DOG \N 45.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12152 +10049 2025-11-01 12:59:09.972532+00 2025-11-01 12:59:09.972545+00 f t Thor CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12155 +10050 2025-11-01 13:18:30.913671+00 2025-11-01 13:18:30.91368+00 f t Kenji CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12158 +10051 2025-11-01 13:23:42.911192+00 2025-11-01 13:23:42.911201+00 f t Osama CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12159 +10052 2025-11-01 13:24:04.38095+00 2025-11-01 13:24:04.380958+00 f t Osama CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12159 +10053 2025-11-01 13:30:53.877941+00 2025-11-01 13:30:53.877951+00 f t Ringo CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12160 +10054 2025-11-01 13:45:00.080711+00 2025-11-01 13:45:00.080724+00 f t Garritas CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12161 +10055 2025-11-01 13:54:08.641483+00 2025-11-01 13:54:08.641492+00 f t Valeria CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12163 +10056 2025-11-01 13:55:12.521637+00 2025-11-01 13:55:12.521645+00 f t Roco DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12164 +10057 2025-11-01 14:00:18.526016+00 2025-11-01 14:00:18.526029+00 f t Milu CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12165 +10058 2025-11-01 14:09:39.181277+00 2025-11-01 14:09:39.181286+00 f t Simom CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12166 +10059 2025-11-01 14:30:34.464674+00 2025-11-01 14:30:34.464685+00 f t Shina DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12170 +10060 2025-11-01 14:48:45.996336+00 2025-11-01 14:48:45.996345+00 f t Behemoth CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12172 +10061 2025-11-01 14:54:49.903678+00 2025-11-01 14:54:49.903686+00 f t Lisa DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12173 +10062 2025-11-01 15:03:12.09039+00 2025-11-01 15:03:12.090398+00 f t Roco DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12174 +10063 2025-11-01 15:04:56.481045+00 2025-11-01 15:04:56.481058+00 f t lola DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12175 +10064 2025-11-01 15:25:52.664635+00 2025-11-01 15:25:52.664644+00 f t Sura DOG \N 16.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12178 +10065 2025-11-01 15:45:30.124101+00 2025-11-01 15:45:30.12411+00 f t Tomi DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12180 +10020 2025-11-01 00:45:09.238863+00 2025-11-01 00:45:09.238874+00 f t Michi CAT 0 3.00 0.00 t \N \N \N \N MALE \N t \N 1208 12121 +10066 2025-11-01 16:00:27.397987+00 2025-11-01 16:00:27.397995+00 f t Emilio CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12181 +10067 2025-11-01 16:21:54.890573+00 2025-11-01 16:21:54.890582+00 f t Richard CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12184 +10068 2025-11-01 16:42:42.300913+00 2025-11-01 16:42:42.300927+00 f t Isidro DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12187 +10069 2025-11-01 16:42:44.103072+00 2025-11-01 16:42:44.103082+00 f t Nova DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12186 +10070 2025-11-01 17:30:52.93485+00 2025-11-01 17:30:52.934859+00 f t Román DOG \N 45.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12189 +10071 2025-11-01 17:42:03.094946+00 2025-11-01 17:42:03.094958+00 f t Moro DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12190 +10072 2025-11-01 18:25:43.488802+00 2025-11-01 18:25:43.488811+00 f t Tormenta CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12191 +10073 2025-11-01 18:50:23.131617+00 2025-11-01 18:50:23.131627+00 f t Ruso DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12193 +10074 2025-11-01 19:03:21.543667+00 2025-11-01 19:03:21.543677+00 f t Xeneixe CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12194 +10075 2025-11-01 19:40:18.59673+00 2025-11-01 19:40:18.597058+00 f t Alex DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12197 +10076 2025-11-01 19:42:18.557471+00 2025-11-01 19:42:18.557484+00 f t Vera DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12198 +10077 2025-11-01 19:53:13.184395+00 2025-11-01 19:53:13.184406+00 f t Eros CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12199 +10078 2025-11-01 19:54:18.553978+00 2025-11-01 19:54:18.553989+00 f t Lola CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12199 +10079 2025-11-01 20:32:06.275819+00 2025-11-01 20:32:06.27583+00 f t Ggf DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12202 +10080 2025-11-01 20:34:29.382399+00 2025-11-01 20:34:29.382409+00 f t Flora CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12203 +10081 2025-11-01 20:37:59.374912+00 2025-11-01 20:37:59.37492+00 f t Thiago DOG \N 80.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12204 +10082 2025-11-01 20:40:03.358288+00 2025-11-01 20:40:03.358305+00 f t Neo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12205 +10083 2025-11-01 20:57:50.639877+00 2025-11-01 20:57:50.63989+00 f t Moana CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12206 +10084 2025-11-01 21:06:58.01604+00 2025-11-01 21:06:58.016052+00 f t Chimuela CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12207 +10085 2025-11-01 21:29:33.95473+00 2025-11-01 21:29:33.955175+00 f t China CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12208 +11818 2025-11-24 13:33:04.897713+00 2025-11-24 13:33:04.897725+00 f t Felipe CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14334 +10087 2025-11-01 21:37:39.694075+00 2025-11-01 21:37:39.694792+00 f t Ema CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12210 +10088 2025-11-01 22:00:55.279385+00 2025-11-01 22:00:55.28012+00 f t Thiago DOG \N 80.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12212 +10089 2025-11-01 22:21:04.038611+00 2025-11-01 22:21:04.038624+00 f t Thiago DOG \N 80.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12213 +10090 2025-11-01 23:15:29.710587+00 2025-11-01 23:15:29.710598+00 f t Lula CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12215 +10091 2025-11-02 00:18:18.207607+00 2025-11-02 00:18:18.207615+00 f t Anakin CAT \N 800.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12216 +10092 2025-11-02 00:21:14.66272+00 2025-11-02 00:21:14.66273+00 f t Anakin CAT \N 800.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12217 +10093 2025-11-02 10:29:42.420464+00 2025-11-02 10:29:42.420477+00 f t Maia DOG \N 32.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12218 +10094 2025-11-02 11:14:12.590376+00 2025-11-02 11:14:12.590385+00 f t Sienna DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12219 +10095 2025-11-02 11:58:08.20874+00 2025-11-02 11:58:08.208749+00 f t Mel CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12220 +10096 2025-11-02 12:56:03.146152+00 2025-11-02 12:56:03.14616+00 f t Kahlo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12222 +10097 2025-11-02 12:57:05.393855+00 2025-11-02 12:57:05.393864+00 f t Frida CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12222 +10098 2025-11-02 13:00:48.337805+00 2025-11-02 13:00:48.337814+00 f t Popito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12223 +10099 2025-11-02 14:03:24.156327+00 2025-11-02 14:03:24.156336+00 f t Estrella DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12225 +10100 2025-11-02 17:39:26.938946+00 2025-11-02 17:39:26.938957+00 f t Cooper CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12227 +10101 2025-11-02 17:48:42.328313+00 2025-11-02 17:48:42.328321+00 f t Crash DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12230 +10102 2025-11-02 18:05:25.486595+00 2025-11-02 18:05:25.486604+00 f t Milo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12233 +10103 2025-11-02 18:13:00.522584+00 2025-11-02 18:13:00.522592+00 f t MILO CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12234 +10104 2025-11-02 18:18:08.343308+00 2025-11-02 18:18:08.343316+00 f t Milo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12235 +10105 2025-11-02 18:53:25.311717+00 2025-11-02 18:53:25.311726+00 f t Milo CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12236 +5457 2025-08-17 00:27:08.195937+00 2025-08-17 00:27:08.196006+00 f t Crash DOG 1 20.00 0.00 f \N 2025-08-17 \N \N MALE \N f \N 114 6688 +10106 2025-11-02 19:45:01.385291+00 2025-11-02 19:45:01.385304+00 f t Benito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12237 +10107 2025-11-02 21:07:15.514673+00 2025-11-02 21:07:15.514681+00 f t Marko DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12239 +10108 2025-11-02 22:51:51.940512+00 2025-11-02 22:51:51.940522+00 f t Silvina Ascheri CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12241 +10109 2025-11-02 22:52:56.058083+00 2025-11-02 22:52:56.058098+00 f t Oreon CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12241 +10110 2025-11-02 22:53:27.814481+00 2025-11-02 22:53:27.814489+00 f t Melina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12241 +10111 2025-11-03 01:35:06.298563+00 2025-11-03 01:35:06.298572+00 f t Michi CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12244 +10112 2025-11-03 03:08:40.610684+00 2025-11-03 03:08:40.610693+00 f t Thor CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12245 +10113 2025-11-03 09:49:20.211089+00 2025-11-03 09:49:20.211099+00 f t Baguira CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12246 +10114 2025-11-03 09:56:34.888783+00 2025-11-03 09:56:34.888793+00 f t Baguira CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12247 +10115 2025-11-03 10:09:32.73162+00 2025-11-03 10:09:32.731628+00 f t Baguira CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12248 +10116 2025-11-03 12:46:00.416866+00 2025-11-03 12:46:00.416877+00 f t Simba DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12250 +10117 2025-11-03 13:53:06.180917+00 2025-11-03 13:53:06.180925+00 f t Melina CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12252 +10118 2025-11-03 13:53:23.456191+00 2025-11-03 13:53:23.456201+00 f t Oreon CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12252 +6006 2025-08-26 13:58:01.291221+00 2025-08-26 13:58:01.291235+00 t t Jason CAT \N 4.70 22.00 t \N 2016-09-13 2025-08-20 \N \N MALE Miocardiopatía hipertrófica 2024. Osteoma en mentón 2024. 2 internaciones por edema agudo de pulmón. \N f \N \N 6885 +10119 2025-11-03 14:15:26.226935+00 2025-11-03 14:15:26.226943+00 f t Gemma CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12255 +10120 2025-11-03 14:45:45.991277+00 2025-11-03 14:45:45.991286+00 f t Oso DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12256 +10121 2025-11-03 14:51:10.344686+00 2025-11-03 14:51:10.344695+00 f t Dante DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12257 +10122 2025-11-03 14:58:08.143803+00 2025-11-03 14:58:08.143812+00 f t sakura DOG \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12258 +11819 2025-11-24 13:36:04.32666+00 2025-11-24 13:36:04.326669+00 f t Azul CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14335 +10125 2025-11-03 15:29:06.79615+00 2025-11-03 15:29:06.796159+00 f t Campanita CAT \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12261 +10124 2025-11-03 15:13:07.829558+00 2025-11-03 15:13:07.829568+00 f t Agnes DOG 11 9.00 0.00 f \N \N \N \N FEMALE \N f \N 1583 12260 +10126 2025-11-03 15:31:11.887254+00 2025-11-03 15:31:11.887265+00 f t Bodo DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12262 +10127 2025-11-03 15:36:42.8573+00 2025-11-03 15:36:42.857312+00 f t Cruella DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12263 +10128 2025-11-03 15:43:14.488941+00 2025-11-03 15:43:14.488951+00 f t Paco DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12265 +10129 2025-11-03 15:44:53.554066+00 2025-11-03 15:44:53.554075+00 f t Nicki CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12266 +10130 2025-11-03 16:05:23.59749+00 2025-11-03 16:05:23.597499+00 f t Lana CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12268 +10131 2025-11-03 16:06:52.2705+00 2025-11-03 16:06:52.270511+00 f t Lana DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12269 +10132 2025-11-03 16:07:32.880354+00 2025-11-03 16:07:32.880363+00 f t Lanita CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12269 +10133 2025-11-03 16:08:46.829907+00 2025-11-03 16:08:46.829919+00 f t Peter CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12269 +10134 2025-11-03 16:13:04.684201+00 2025-11-03 16:13:04.684213+00 f t Coki DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12270 +10135 2025-11-03 16:29:34.888913+00 2025-11-03 16:29:34.888922+00 f t Catita CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12271 +10136 2025-11-03 16:44:44.211038+00 2025-11-03 16:44:44.211051+00 f t timon CAT \N 900.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12272 +10137 2025-11-03 16:53:26.59144+00 2025-11-03 16:53:26.591449+00 f t CORA DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12275 +10138 2025-11-03 16:55:41.942249+00 2025-11-03 16:55:41.942257+00 f t timon CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12276 +10139 2025-11-03 17:08:09.028171+00 2025-11-03 17:08:09.028183+00 f t Himba DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12277 +10140 2025-11-03 17:23:47.103759+00 2025-11-03 17:23:47.103769+00 f t Dante DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12278 +10141 2025-11-03 17:30:02.192542+00 2025-11-03 17:30:02.192555+00 f t Aceituna CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12280 +10142 2025-11-03 17:47:07.86498+00 2025-11-03 17:47:07.864989+00 f t Simon DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12281 +10143 2025-11-03 17:49:55.002259+00 2025-11-03 17:49:55.002271+00 f t Caty DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12282 +10144 2025-11-03 18:00:43.747259+00 2025-11-03 18:00:43.747269+00 f t Luz DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12285 +10145 2025-11-03 18:04:47.394186+00 2025-11-03 18:04:47.394194+00 f t Cata CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12286 +10146 2025-11-03 18:07:28.992137+00 2025-11-03 18:07:28.992145+00 f t Dante DOG \N 50.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12287 +10147 2025-11-03 18:07:53.473504+00 2025-11-03 18:07:53.473517+00 f t Cata CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12288 +10148 2025-11-03 18:17:09.041301+00 2025-11-03 18:17:09.041314+00 f t Pelusa DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12289 +10149 2025-11-03 18:37:09.792287+00 2025-11-03 18:37:09.792295+00 f t Luna DOG \N 3.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12291 +10150 2025-11-03 19:28:05.269268+00 2025-11-03 19:28:05.269277+00 f t Pancho DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12295 +10151 2025-11-03 19:52:29.831755+00 2025-11-03 19:52:29.831765+00 f t Molina CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12296 +10152 2025-11-03 20:33:40.202231+00 2025-11-03 20:33:40.202239+00 f t Olaf DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12298 +10153 2025-11-03 22:24:33.073884+00 2025-11-03 22:24:33.073893+00 f t Lana DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12301 +10154 2025-11-03 22:24:52.693853+00 2025-11-03 22:24:52.693863+00 f t Lana CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12301 +10155 2025-11-03 22:38:40.6414+00 2025-11-03 22:38:40.64141+00 f t Tano DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12302 +10156 2025-11-03 22:43:06.119943+00 2025-11-03 22:43:06.119953+00 f t Tano CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12303 +10157 2025-11-03 23:16:54.840189+00 2025-11-03 23:16:54.840198+00 f t Boss DOG \N 32.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12304 +10158 2025-11-03 23:21:05.373087+00 2025-11-03 23:21:05.373096+00 f t Milo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12305 +10159 2025-11-03 23:24:06.168975+00 2025-11-03 23:24:06.168985+00 f t Creta CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12306 +10160 2025-11-03 23:46:45.162641+00 2025-11-03 23:46:45.16265+00 f t Himba DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12308 +10161 2025-11-03 23:59:52.092797+00 2025-11-03 23:59:52.092805+00 f t Syrah CAT \N 560.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12309 +10162 2025-11-04 00:08:46.4328+00 2025-11-04 00:08:46.432809+00 f t Syrah DOG \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12310 +10163 2025-11-04 00:09:02.643269+00 2025-11-04 00:09:02.643284+00 f t Syrah CAT \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12310 +10164 2025-11-04 00:09:13.960412+00 2025-11-04 00:09:13.960423+00 f t sirah CAT \N 570.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12311 +10165 2025-11-04 00:10:02.241159+00 2025-11-04 00:10:02.241175+00 f t syrah DOG \N 570.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12311 +10166 2025-11-04 00:11:28.065034+00 2025-11-04 00:11:28.065043+00 f t syrah CAT \N 570.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12311 +10167 2025-11-04 01:06:16.001931+00 2025-11-04 01:06:16.00194+00 f t Bella CAT \N 4.70 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12314 +10168 2025-11-04 01:33:14.279069+00 2025-11-04 01:33:14.279077+00 f t Syrah CAT \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12317 +10169 2025-11-04 01:36:08.925338+00 2025-11-04 01:36:08.925347+00 f t Francisco CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12318 +10170 2025-11-04 01:36:26.430592+00 2025-11-04 01:36:26.430601+00 f t syrah CAT \N 5.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12319 +10171 2025-11-04 01:37:10.538523+00 2025-11-04 01:37:10.538532+00 f t Miramar CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12318 +10172 2025-11-04 01:37:39.248631+00 2025-11-04 01:37:39.24864+00 f t Meianoite CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12318 +10173 2025-11-04 02:10:07.787219+00 2025-11-04 02:10:07.78723+00 f t TOULOUSE CAT \N 5.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12321 +10174 2025-11-04 02:16:23.725168+00 2025-11-04 02:16:23.72518+00 f t Mia CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12322 +10175 2025-11-04 03:05:07.108664+00 2025-11-04 03:05:07.108676+00 f t Harry CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12323 +10176 2025-11-04 03:08:04.91593+00 2025-11-04 03:08:04.915944+00 f t Shake DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12324 +10178 2025-11-04 03:30:50.407931+00 2025-11-04 03:30:50.407945+00 f t Apollo CAT \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12327 +10179 2025-11-04 03:31:53.263499+00 2025-11-04 03:31:53.263508+00 f t Apollo CAT \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12328 +10180 2025-11-04 03:32:43.747051+00 2025-11-04 03:32:43.747067+00 f t Apollo CAT \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12329 +10181 2025-11-04 05:07:01.998895+00 2025-11-04 05:07:01.998905+00 f t Coco DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12330 +10182 2025-11-04 05:20:29.01891+00 2025-11-04 05:20:29.018922+00 f t China CAT \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12331 +10183 2025-11-04 09:38:48.379864+00 2025-11-04 09:38:48.379873+00 f t Max CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12332 +10184 2025-11-04 10:28:44.861518+00 2025-11-04 10:28:44.861528+00 f t Maddock CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12333 +10185 2025-11-04 10:34:17.887886+00 2025-11-04 10:34:17.887898+00 f t Lola DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12334 +10186 2025-11-04 11:03:09.386694+00 2025-11-04 11:03:09.386703+00 f t Kiwi CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12335 +10187 2025-11-04 11:18:32.183659+00 2025-11-04 11:18:32.183668+00 f t Titan DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12336 +10188 2025-11-04 12:41:28.572981+00 2025-11-04 12:41:28.57299+00 f t Mora DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12337 +10189 2025-11-04 13:09:34.100697+00 2025-11-04 13:09:34.100706+00 f t Lindo DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12338 +10190 2025-11-04 13:37:32.271447+00 2025-11-04 13:37:32.271459+00 f t Victoria Ballerga CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12339 +10123 2025-11-03 15:02:41.70387+00 2025-11-03 15:02:41.703878+00 f t Paul CAT 7 3.00 0.00 t \N \N \N \N MALE \N f 27 1583 10559 +10191 2025-11-04 13:46:43.089165+00 2025-11-04 13:46:43.089174+00 f t Delfina DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12340 +10177 2025-11-04 03:12:24.913683+00 2025-11-04 03:12:24.913693+00 f t Shake DOG 0 12.00 0.00 f \N \N \N \N MALE \N f \N 1208 12325 +10192 2025-11-04 14:04:34.366389+00 2025-11-04 14:04:34.366398+00 f t Milo CAT \N 6.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12341 +10193 2025-11-04 14:25:55.430634+00 2025-11-04 14:25:55.430648+00 f t Moka DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12343 +10194 2025-11-04 14:34:19.16329+00 2025-11-04 14:34:19.163298+00 f t delfina DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12345 +10195 2025-11-04 14:35:58.191174+00 2025-11-04 14:35:58.191184+00 f t umo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12346 +10196 2025-11-04 14:37:10.771975+00 2025-11-04 14:37:10.771988+00 f t tigro CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12346 +10197 2025-11-04 14:46:55.442281+00 2025-11-04 14:46:55.44229+00 f t Maddock CAT \N 6.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12347 +10198 2025-11-04 14:48:37.88756+00 2025-11-04 14:48:37.887572+00 f t Chiche DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12348 +10199 2025-11-04 14:58:41.595848+00 2025-11-04 14:58:41.595857+00 f t Renato CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12349 +10200 2025-11-04 15:02:39.216144+00 2025-11-04 15:02:39.216152+00 f t Maddock CAT \N 6.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12350 +10201 2025-11-04 15:04:50.829278+00 2025-11-04 15:04:50.829288+00 f t Maddock DOG \N 6.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12351 +10202 2025-11-04 15:05:10.905386+00 2025-11-04 15:05:10.905399+00 f t Maddock CAT \N 6.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12351 +10203 2025-11-04 15:10:35.560479+00 2025-11-04 15:10:35.560488+00 f t Gino DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12352 +10204 2025-11-04 15:19:28.754804+00 2025-11-04 15:19:28.754813+00 f t Mia DOG \N 1.30 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12353 +10205 2025-11-04 15:21:56.210002+00 2025-11-04 15:21:56.21001+00 f t Louis Armstrong CAT \N 500.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12354 +10206 2025-11-04 15:23:47.574685+00 2025-11-04 15:23:47.574698+00 f t Elis Regina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12354 +10207 2025-11-04 15:26:23.764221+00 2025-11-04 15:26:23.764234+00 f t Panda DOG \N 60.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12355 +10208 2025-11-04 15:27:31.344943+00 2025-11-04 15:27:31.344953+00 f t Slinky DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12355 +10209 2025-11-04 15:28:02.356391+00 2025-11-04 15:28:02.356401+00 f t Rubia DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12355 +10210 2025-11-04 15:28:05.205001+00 2025-11-04 15:28:05.20501+00 f t Batman CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12356 +10211 2025-11-04 15:28:30.229318+00 2025-11-04 15:28:30.229332+00 f t Mora DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12355 +10212 2025-11-04 15:36:53.708285+00 2025-11-04 15:36:53.708294+00 f t Kitty CAT \N 600.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12359 +10213 2025-11-04 15:57:33.673473+00 2025-11-04 15:57:33.673482+00 f t Linyera DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12360 +10214 2025-11-04 16:17:05.490652+00 2025-11-04 16:17:05.490665+00 f t Rosy DOG \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12361 +10215 2025-11-04 16:42:52.624871+00 2025-11-04 16:42:52.62488+00 f t Shake DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12363 +10216 2025-11-04 17:08:55.597071+00 2025-11-04 17:08:55.597079+00 f t Pamplona DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12364 +10217 2025-11-04 17:08:59.709158+00 2025-11-04 17:08:59.709167+00 f t silvestre CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12365 +10218 2025-11-04 17:46:24.946271+00 2025-11-04 17:46:24.946281+00 f t Salem CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12367 +10219 2025-11-04 18:24:09.397653+00 2025-11-04 18:24:09.397662+00 f t Cielo DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12370 +10220 2025-11-04 18:31:03.362232+00 2025-11-04 18:31:03.362241+00 f t Teo CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12371 +10221 2025-11-04 18:37:22.329682+00 2025-11-04 18:37:22.329694+00 f t Amar DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12373 +10222 2025-11-04 18:38:15.260901+00 2025-11-04 18:38:15.260911+00 f t Amar DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12375 +10223 2025-11-04 18:51:01.764242+00 2025-11-04 18:51:01.764254+00 f t Hope DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12376 +10224 2025-11-04 18:53:06.383208+00 2025-11-04 18:53:06.383218+00 f t Hope DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12376 +10225 2025-11-04 18:58:42.351756+00 2025-11-04 18:58:42.351764+00 f t Toto DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12377 +10226 2025-11-04 18:58:52.847807+00 2025-11-04 18:58:52.847816+00 t t Toto DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12377 +10227 2025-11-04 19:37:53.298319+00 2025-11-04 19:37:53.298328+00 f t Lola DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12379 +10228 2025-11-04 19:42:04.62418+00 2025-11-04 19:42:04.624189+00 f t Celeste CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12380 +10229 2025-11-04 19:47:38.751369+00 2025-11-04 19:47:38.751377+00 f t Sara DOG \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12381 +10230 2025-11-04 19:55:34.353801+00 2025-11-04 19:55:34.353814+00 f t Lola DOG \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12383 +10231 2025-11-04 19:58:21.41443+00 2025-11-04 19:58:21.414439+00 f t Hope DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12385 +10232 2025-11-04 20:24:30.13952+00 2025-11-04 20:24:30.139529+00 f t Hope DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12386 +10233 2025-11-04 20:30:05.744558+00 2025-11-04 20:30:05.744568+00 f t Shiroi DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12388 +10234 2025-11-04 20:30:06.329788+00 2025-11-04 20:30:06.329799+00 f t Rocco DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12387 +10235 2025-11-04 20:59:53.780868+00 2025-11-04 20:59:53.780878+00 f t Teté DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12391 +10236 2025-11-04 21:03:43.481059+00 2025-11-04 21:03:43.481067+00 f t Manuela CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12392 +10237 2025-11-04 21:23:38.782086+00 2025-11-04 21:23:38.783017+00 f t Ambar DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12393 +10238 2025-11-04 21:52:21.828012+00 2025-11-04 21:52:21.828022+00 f t Shoes CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12396 +10239 2025-11-04 21:54:06.911554+00 2025-11-04 21:54:06.911563+00 f t Chimichanga CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12397 +10240 2025-11-04 22:23:33.113014+00 2025-11-04 22:23:33.113023+00 f t lupe DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12400 +10241 2025-11-04 22:26:04.698922+00 2025-11-04 22:26:04.698931+00 f t Marte DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12401 +10242 2025-11-05 00:18:50.989677+00 2025-11-05 00:18:50.989685+00 f t Tomasa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12404 +10243 2025-11-05 00:34:45.808671+00 2025-11-05 00:34:45.80868+00 f t Ollie DOG \N 19.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12406 +10244 2025-11-05 00:41:40.582771+00 2025-11-05 00:41:40.58278+00 f t Hercules CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12407 +10245 2025-11-05 01:05:16.209167+00 2025-11-05 01:05:16.209176+00 f t Maddock CAT \N 6.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12408 +10246 2025-11-05 02:14:41.060533+00 2025-11-05 02:14:41.060542+00 f t bruna DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12409 +10247 2025-11-05 03:55:42.754916+00 2025-11-05 03:55:42.754926+00 f t RENATTA DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12411 +10248 2025-11-05 04:02:17.599853+00 2025-11-05 04:02:17.599864+00 f t Nelson CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12412 +10249 2025-11-05 04:12:49.810253+00 2025-11-05 04:12:49.810262+00 f t Greta DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12413 +10250 2025-11-05 04:58:38.684762+00 2025-11-05 04:58:38.684771+00 f t Miau CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12415 +10251 2025-11-05 10:10:23.22135+00 2025-11-05 10:10:23.22136+00 f t Rocco DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12416 +10252 2025-11-05 11:29:22.133075+00 2025-11-05 11:29:22.133084+00 f t Tomasa DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12419 +10253 2025-11-05 11:32:42.323325+00 2025-11-05 11:32:42.323334+00 f t Tomasa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12420 +10254 2025-11-05 11:46:02.589037+00 2025-11-05 11:46:02.589047+00 f t Simon CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12421 +10255 2025-11-05 12:05:33.013573+00 2025-11-05 12:05:33.013586+00 f t Simon CAT \N 5.00 0.00 f \N 2020-11-20 \N \N \N MALE \N \N f \N \N 12422 +10256 2025-11-05 12:23:03.880065+00 2025-11-05 12:23:03.880074+00 f t Thelma DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12424 +10257 2025-11-05 12:23:38.26496+00 2025-11-05 12:23:38.264973+00 f t Ferry DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12424 +10258 2025-11-05 13:03:12.629582+00 2025-11-05 13:03:12.629594+00 f t Dulce CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12426 +10259 2025-11-05 13:13:33.083582+00 2025-11-05 13:13:33.083591+00 f t Sugus DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12427 +10260 2025-11-05 13:19:35.958413+00 2025-11-05 13:19:35.958423+00 f t Andromache DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12428 +10261 2025-11-05 13:21:14.021497+00 2025-11-05 13:21:14.021509+00 f t Nina DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12429 +10262 2025-11-05 13:26:28.677853+00 2025-11-05 13:26:28.677864+00 f t Patricia Arriondo DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12431 +10263 2025-11-05 14:26:24.446955+00 2025-11-05 14:26:24.446964+00 f t Arhos DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12432 +10264 2025-11-05 14:35:03.08827+00 2025-11-05 14:35:03.088283+00 f t Lara DOG \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12433 +10265 2025-11-05 14:36:02.261332+00 2025-11-05 14:36:02.261345+00 f t Misma CAT \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12433 +10266 2025-11-05 14:36:23.722234+00 2025-11-05 14:36:23.722242+00 f t Loocky CAT \N 0.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12433 +10267 2025-11-05 14:38:55.94948+00 2025-11-05 14:38:55.949489+00 f t Flopy DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12435 +10268 2025-11-05 14:42:10.677652+00 2025-11-05 14:42:10.677666+00 f t olivia DOG \N 50.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12436 +10269 2025-11-05 14:42:54.576557+00 2025-11-05 14:42:54.576566+00 f t Sahel CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12437 +10270 2025-11-05 15:04:43.128385+00 2025-11-05 15:04:43.128394+00 f t Tomasa CAT \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12438 +10271 2025-11-05 15:17:39.486058+00 2025-11-05 15:17:39.486067+00 f t Juanfer DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12440 +10272 2025-11-05 15:17:56.437467+00 2025-11-05 15:17:56.437475+00 f t juanfer CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12440 +10273 2025-11-05 15:19:00.25558+00 2025-11-05 15:19:00.255594+00 f t Nala CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12440 +11820 2025-11-24 13:40:15.909099+00 2025-11-24 13:40:15.909112+00 f t Chapu DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14336 +10274 2025-11-05 15:50:54.1057+00 2025-11-05 15:50:54.105708+00 f t Sahel CAT 1 2.00 0.00 f \N \N \N \N MALE \N f \N 1208 12441 +10275 2025-11-05 16:13:06.229662+00 2025-11-05 16:13:06.229675+00 f t Isabella CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12442 +10276 2025-11-05 17:27:49.774412+00 2025-11-05 17:27:49.774421+00 f t Pancha DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12444 +10277 2025-11-05 17:41:53.436732+00 2025-11-05 17:41:53.436744+00 f t Nala DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12445 +10278 2025-11-05 18:08:37.853918+00 2025-11-05 18:08:37.853926+00 f t Nala CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12446 +10279 2025-11-05 18:57:16.579096+00 2025-11-05 18:57:16.579105+00 f t Tony CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12447 +10280 2025-11-05 19:22:09.042734+00 2025-11-05 19:22:09.042745+00 f t Palita CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12449 +10326 2025-11-06 08:26:41.75306+00 2025-11-06 08:26:41.753069+00 f t OZZY DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12496 +9788 2025-10-29 15:05:07.346794+00 2025-10-29 15:05:07.346804+00 f t Patria CAT 0 3.00 0.00 f 2025-05-05 2025-11-05 \N \N FEMALE Hoy 5 nov: la gata tiene 6 meses de vida aprox \r\nRescatada \N f 27 121 11840 +10281 2025-11-05 19:37:14.376294+00 2025-11-05 19:37:14.376303+00 f t Symba CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12450 +10282 2025-11-05 19:50:16.610058+00 2025-11-05 19:50:16.610069+00 f t Sashimi CAT 0 4.00 0.00 t \N \N \N \N MALE \N f \N 1583 12451 +10283 2025-11-05 20:01:00.446934+00 2025-11-05 20:01:00.446946+00 f t Bianca CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12452 +10284 2025-11-05 20:07:47.841936+00 2025-11-05 20:07:47.841947+00 f t Nala DOG \N 22.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12453 +10285 2025-11-05 20:11:20.140585+00 2025-11-05 20:11:20.140596+00 f t Loki CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12454 +10286 2025-11-05 20:12:07.45697+00 2025-11-05 20:12:07.456979+00 f t Indio DOG 10 15.00 0.00 f 2015-11-05 2025-11-05 \N \N MALE \N f 5 121 11591 +9592 2025-10-27 13:18:10.16566+00 2025-10-27 13:18:10.165669+00 f t Tota DOG \N 25.00 0.00 t 2024-09-05 2025-11-04 \N \N FEMALE \N f 6 121 11591 +10288 2025-11-05 20:16:50.455021+00 2025-11-05 20:16:50.455032+00 f t Katie CAT \N 6.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12455 +10289 2025-11-05 20:17:23.053006+00 2025-11-05 20:17:23.053015+00 f t Panti CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12456 +10327 2025-11-06 09:32:09.819606+00 2025-11-06 09:32:09.819616+00 f t Haru CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12497 +10290 2025-11-05 20:38:06.011835+00 2025-11-05 20:38:06.011842+00 f t Ramses CAT \N 0.00 0.00 f 2017-11-05 \N \N \N MALE \N f 27 121 10559 +8763 2025-10-12 19:32:17.635861+00 2025-10-12 19:32:17.63587+00 f t Romeo CAT \N 3.00 0.00 t 2022-11-05 2025-11-04 \N \N MALE Poco sociable con desconocidos \N f 27 121 10559 +10291 2025-11-05 21:06:06.308008+00 2025-11-05 21:06:06.308017+00 f t Coco DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12459 +10287 2025-11-05 20:16:31.952553+00 2025-11-05 20:16:31.952566+00 t t Katie DOG \N 6.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12455 +10292 2025-11-05 22:04:18.910596+00 2025-11-05 22:04:18.911336+00 f t Nano DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12461 +10293 2025-11-05 22:15:40.907869+00 2025-11-05 22:15:40.907877+00 f t Zach CAT \N 2.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12462 +10294 2025-11-05 22:29:36.015603+00 2025-11-05 22:29:36.015612+00 f t Rufino DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12463 +10295 2025-11-05 22:32:49.949017+00 2025-11-05 22:32:49.949025+00 f t Björk CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12464 +10296 2025-11-05 22:43:51.744645+00 2025-11-05 22:43:51.744654+00 f t Pepe CAT \N 75.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12465 +10297 2025-11-05 22:44:24.430723+00 2025-11-05 22:44:24.430733+00 f t Pepe DOG \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12465 +10298 2025-11-05 22:46:11.173834+00 2025-11-05 22:46:11.17385+00 f t Pepe CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12465 +10299 2025-11-05 22:48:16.615229+00 2025-11-05 22:48:16.615242+00 f t Atenea CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12465 +10300 2025-11-05 22:49:05.350822+00 2025-11-05 22:49:05.350831+00 f t Connie DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12465 +10301 2025-11-05 23:11:40.423298+00 2025-11-05 23:11:40.423307+00 f t Ka DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12466 +10302 2025-11-05 23:22:00.879951+00 2025-11-05 23:22:00.879964+00 f t Michi CAT \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12467 +10303 2025-11-05 23:26:28.558265+00 2025-11-05 23:26:28.558277+00 f t TOULOUSE CAT \N 5.70 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12468 +10304 2025-11-05 23:45:38.947764+00 2025-11-05 23:45:38.94778+00 f t Hilal CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12469 +10305 2025-11-05 23:46:47.598623+00 2025-11-05 23:46:47.598633+00 f t Hilal CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12470 +10306 2025-11-06 00:12:58.672746+00 2025-11-06 00:12:58.673095+00 f t Max DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12471 +10307 2025-11-06 00:45:19.21604+00 2025-11-06 00:45:19.21605+00 f t Kiry Marzol CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12472 +10308 2025-11-06 00:51:24.835443+00 2025-11-06 00:51:24.835451+00 f t Kiry Marzol CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12474 +10309 2025-11-06 01:07:20.285018+00 2025-11-06 01:07:20.285027+00 f t Bucky CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12476 +10310 2025-11-06 01:08:19.640041+00 2025-11-06 01:08:19.64005+00 f t Kempachi DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12477 +10311 2025-11-06 01:24:48.840902+00 2025-11-06 01:24:48.840915+00 f t Chicha CAT \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12478 +10312 2025-11-06 01:25:10.141354+00 2025-11-06 01:25:10.141366+00 f t Agüero DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12479 +10313 2025-11-06 01:47:38.898426+00 2025-11-06 01:47:38.898438+00 f t Nilu DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12481 +10314 2025-11-06 02:11:19.452641+00 2025-11-06 02:11:19.452655+00 f t Simón CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12482 +10315 2025-11-06 02:20:17.54559+00 2025-11-06 02:20:17.545598+00 f t Nala CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12483 +10316 2025-11-06 02:34:27.061725+00 2025-11-06 02:34:27.061733+00 f t Negra CAT \N 45.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12484 +10317 2025-11-06 02:35:41.593609+00 2025-11-06 02:35:41.59362+00 f t Bella Sofía DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12484 +10318 2025-11-06 02:54:28.820809+00 2025-11-06 02:54:28.820822+00 f t Sarai CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12485 +10319 2025-11-06 02:57:10.185383+00 2025-11-06 02:57:10.185395+00 f t Niro DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12486 +10320 2025-11-06 03:25:30.551063+00 2025-11-06 03:25:30.551072+00 f t Lila CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12488 +10321 2025-11-06 03:26:51.92256+00 2025-11-06 03:26:51.92257+00 f t Lenin CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12488 +10322 2025-11-06 04:42:00.607076+00 2025-11-06 04:42:00.607103+00 f t Sushi CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12490 +10323 2025-11-06 06:18:37.347751+00 2025-11-06 06:18:37.347763+00 f t Kimba CAT \N 4.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12492 +10324 2025-11-06 06:39:48.478966+00 2025-11-06 06:39:48.478977+00 f t Angelo DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12493 +10325 2025-11-06 07:50:43.433447+00 2025-11-06 07:50:43.433456+00 f t Dorita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12495 +10328 2025-11-06 10:03:07.264309+00 2025-11-06 10:03:07.264318+00 f t Indi DOG \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12499 +10329 2025-11-06 10:07:07.775995+00 2025-11-06 10:07:07.776006+00 f t Baku DOG \N 16.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12500 +10330 2025-11-06 10:20:13.793587+00 2025-11-06 10:20:13.7936+00 f t Leia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12501 +10331 2025-11-06 10:31:38.802496+00 2025-11-06 10:31:38.802505+00 f t Loki DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12502 +10332 2025-11-06 11:45:39.731592+00 2025-11-06 11:45:39.731602+00 f t morcilla DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12505 +10333 2025-11-06 11:54:25.323291+00 2025-11-06 11:54:25.323301+00 f t Rolo DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12506 +10334 2025-11-06 11:55:55.445347+00 2025-11-06 11:55:55.445357+00 f t Kler DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12507 +10335 2025-11-06 11:59:42.678989+00 2025-11-06 11:59:42.678999+00 f t Garry CAT \N 2.80 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12508 +10336 2025-11-06 12:08:28.983805+00 2025-11-06 12:08:28.983814+00 f t Baku DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12509 +10337 2025-11-06 12:15:18.846736+00 2025-11-06 12:15:18.846746+00 f t Baku DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12510 +10338 2025-11-06 12:41:55.063124+00 2025-11-06 12:41:55.063163+00 f t Ningue DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12512 +10339 2025-11-06 12:41:57.349126+00 2025-11-06 12:41:57.349136+00 f t Sushi CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12513 +10340 2025-11-06 12:48:45.45153+00 2025-11-06 12:48:45.451541+00 f t Nala DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12514 +10341 2025-11-06 13:11:47.395487+00 2025-11-06 13:11:47.395495+00 f t Juana DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12515 +10342 2025-11-06 13:12:14.395929+00 2025-11-06 13:12:14.395938+00 f t Olivia DOG \N 33.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12516 +10343 2025-11-06 13:14:22.703381+00 2025-11-06 13:14:22.703391+00 f t Juana DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12517 +10344 2025-11-06 13:33:56.225406+00 2025-11-06 13:33:56.225415+00 f t Lucas DOG \N 33.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12516 +10345 2025-11-06 13:36:39.370919+00 2025-11-06 13:36:39.370929+00 f t Oreo capuccino DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12521 +10346 2025-11-06 13:50:55.147999+00 2025-11-06 13:50:55.148008+00 f t Cloe DOG \N 2.60 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12522 +10347 2025-11-06 15:17:38.862518+00 2025-11-06 15:17:38.86253+00 f t Napoleon DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12525 +10348 2025-11-06 15:21:44.1161+00 2025-11-06 15:21:44.116111+00 f t Coco CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12526 +11821 2025-11-24 13:46:53.442619+00 2025-11-24 13:46:53.442629+00 f t Mocha CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14337 +10351 2025-11-06 16:15:46.59084+00 2025-11-06 16:15:46.590848+00 f t Pepo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12528 +10352 2025-11-06 16:19:46.409874+00 2025-11-06 16:19:46.409883+00 f t Xica CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12530 +10353 2025-11-06 16:29:43.305402+00 2025-11-06 16:29:43.305411+00 f t Tina DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12531 +10355 2025-11-06 16:44:14.262537+00 2025-11-06 16:44:14.26255+00 f t garfi CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12533 +10356 2025-11-06 16:45:51.789195+00 2025-11-06 16:45:51.789204+00 f t negro CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12533 +10357 2025-11-06 16:46:29.316815+00 2025-11-06 16:46:29.316823+00 f t pupy CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12533 +10358 2025-11-06 16:46:47.026539+00 2025-11-06 16:46:47.026547+00 f t Nose CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12534 +10359 2025-11-06 16:47:39.813509+00 2025-11-06 16:47:39.813517+00 f t gru CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12533 +10360 2025-11-06 16:50:27.960329+00 2025-11-06 16:50:27.960337+00 f t garfi CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12535 +10349 2025-11-06 16:10:47.745213+00 2025-11-06 16:10:47.745221+00 t t Esstrella DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12527 +10361 2025-11-06 16:52:46.356803+00 2025-11-06 16:52:46.356811+00 f t gris CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12535 +10362 2025-11-06 16:55:48.533746+00 2025-11-06 16:55:48.533757+00 f t lilo DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12536 +10363 2025-11-06 17:35:34.308787+00 2025-11-06 17:35:34.308801+00 f t Fibi DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12538 +10364 2025-11-06 18:19:11.512767+00 2025-11-06 18:19:11.512775+00 f t Ragnar CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12540 +10354 2025-11-06 16:39:41.721885+00 2025-11-06 16:39:41.721894+00 f t Valiente CAT 0 0.00 0.00 t \N \N \N \N MALE \N f \N 1208 274 +10365 2025-11-06 18:47:09.430333+00 2025-11-06 18:47:09.430341+00 f t Teo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12544 +10366 2025-11-06 19:12:01.271928+00 2025-11-06 19:12:01.271941+00 f t Akita DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12545 +10367 2025-11-06 19:12:35.709665+00 2025-11-06 19:12:35.709673+00 f t Akita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12545 +10368 2025-11-06 19:13:37.649866+00 2025-11-06 19:13:37.649874+00 f t Mango CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12545 +10369 2025-11-06 19:57:48.113513+00 2025-11-06 19:57:48.113526+00 f t Evo DOG \N 34.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12546 +10370 2025-11-06 19:58:38.308192+00 2025-11-06 19:58:38.3082+00 f t Santi DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12547 +10371 2025-11-06 20:31:22.753973+00 2025-11-06 20:31:22.753981+00 f t Miguel CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12548 +10372 2025-11-06 21:07:17.615564+00 2025-11-06 21:07:17.615573+00 f t Paco CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12552 +10373 2025-11-06 21:29:12.797266+00 2025-11-06 21:29:12.797275+00 f t Pochi CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12553 +10374 2025-11-06 22:40:57.364528+00 2025-11-06 22:40:57.364539+00 f t Curry CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12556 +10375 2025-11-06 22:51:05.483021+00 2025-11-06 22:51:05.483033+00 f t KITTY CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12557 +10376 2025-11-06 22:57:48.366006+00 2025-11-06 22:57:48.366016+00 f t Kitty CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12558 +10377 2025-11-06 23:30:20.988888+00 2025-11-06 23:30:20.988896+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12559 +10378 2025-11-06 23:42:05.443639+00 2025-11-06 23:42:05.443648+00 f t Coqui DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12560 +10379 2025-11-07 00:55:16.102734+00 2025-11-07 00:55:16.102743+00 f t Perrosky DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12563 +10380 2025-11-07 01:28:28.08653+00 2025-11-07 01:28:28.086539+00 f t Pipina DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12566 +10381 2025-11-07 02:12:19.742281+00 2025-11-07 02:12:19.742289+00 f t Khale CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12570 +10382 2025-11-07 02:27:31.48755+00 2025-11-07 02:27:31.48756+00 f t nube DOG \N 38.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12572 +10383 2025-11-07 02:32:35.905516+00 2025-11-07 02:32:35.905525+00 f t mora DOG \N 36.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12572 +10384 2025-11-07 03:47:42.624755+00 2025-11-07 03:47:42.624764+00 f t Huk DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12574 +10385 2025-11-07 03:49:31.723518+00 2025-11-07 03:49:31.723526+00 f t Huk DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12575 +10386 2025-11-07 04:31:57.071693+00 2025-11-07 04:31:57.071701+00 f t Uva CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12576 +10387 2025-11-07 04:45:31.42378+00 2025-11-07 04:45:31.423788+00 f t Rony CAT \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12577 +10388 2025-11-07 04:47:50.99497+00 2025-11-07 04:47:50.994981+00 f t Frida CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12578 +10389 2025-11-07 05:16:18.297163+00 2025-11-07 05:16:18.297172+00 f t Huk DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12580 +10390 2025-11-07 05:17:15.849819+00 2025-11-07 05:17:15.849834+00 f t Huk DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12581 +10391 2025-11-07 08:17:24.20409+00 2025-11-07 08:17:24.204098+00 f t Zeus DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12583 +10392 2025-11-07 09:28:37.096501+00 2025-11-07 09:28:37.096509+00 f t Sofia DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12584 +10393 2025-11-07 09:38:37.106181+00 2025-11-07 09:38:37.106191+00 f t Sofia DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12585 +10394 2025-11-07 10:09:02.931112+00 2025-11-07 10:09:02.931125+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12586 +10395 2025-11-07 10:13:38.380705+00 2025-11-07 10:13:38.380713+00 f t Pochoclo CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12587 +10396 2025-11-07 10:21:27.186778+00 2025-11-07 10:21:27.186787+00 f t mora DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12588 +10397 2025-11-07 10:22:06.570464+00 2025-11-07 10:22:06.570472+00 f t nube DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12588 +10398 2025-11-07 10:46:50.323997+00 2025-11-07 10:46:50.324006+00 f t Pancho DOG \N 19.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12589 +10399 2025-11-07 11:18:45.009447+00 2025-11-07 11:18:45.009455+00 f t Flan CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12591 +10400 2025-11-07 11:19:43.029155+00 2025-11-07 11:19:43.029163+00 f t Crema CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12591 +10401 2025-11-07 11:57:01.297649+00 2025-11-07 11:57:01.297662+00 f t Alex DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12593 +10402 2025-11-07 12:11:50.305712+00 2025-11-07 12:11:50.305722+00 f t Mike DOG \N 34.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12595 +10403 2025-11-07 12:12:15.578486+00 2025-11-07 12:12:15.578495+00 f t Cumbia CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12596 +10404 2025-11-07 12:30:13.354859+00 2025-11-07 12:30:13.354867+00 f t Matilda DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12597 +10405 2025-11-07 12:50:31.610416+00 2025-11-07 12:50:31.610424+00 f t Michi Michi CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12600 +10406 2025-11-07 12:50:45.94299+00 2025-11-07 12:50:45.942998+00 f t Nalha CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12599 +10407 2025-11-07 12:51:07.714578+00 2025-11-07 12:51:07.714588+00 f t Dash CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12600 +10408 2025-11-07 12:51:38.932262+00 2025-11-07 12:51:38.93227+00 f t Pink CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12600 +10409 2025-11-07 12:52:01.448531+00 2025-11-07 12:52:01.44854+00 f t Sheena DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12600 +10410 2025-11-07 12:52:57.30653+00 2025-11-07 12:52:57.306538+00 f t Mia DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12601 +10411 2025-11-07 13:27:46.910232+00 2025-11-07 13:27:46.91024+00 f t Vladimir CAT 15 0.00 0.00 t \N \N \N \N MALE \N f \N 1583 1734 +10412 2025-11-07 13:35:51.531809+00 2025-11-07 13:35:51.531818+00 f t Leclerc CAT \N 2.40 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12604 +10413 2025-11-07 13:36:47.871938+00 2025-11-07 13:36:47.871948+00 f t Leclerc CAT \N 2.40 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12605 +10414 2025-11-07 13:45:58.180165+00 2025-11-07 13:45:58.180177+00 f t Makoto CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12607 +10415 2025-11-07 13:56:15.94053+00 2025-11-07 13:56:15.940538+00 f t Pepe CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12608 +10416 2025-11-07 14:05:16.044035+00 2025-11-07 14:05:16.044044+00 f t Makoto CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12609 +10417 2025-11-07 14:47:09.444216+00 2025-11-07 14:47:09.444226+00 f t Chiqui DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12611 +10418 2025-11-07 14:48:26.729274+00 2025-11-07 14:48:26.729282+00 f t Makoto CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12612 +10419 2025-11-07 15:29:42.912658+00 2025-11-07 15:29:42.912667+00 f t Nina DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12613 +10420 2025-11-07 15:55:49.675595+00 2025-11-07 15:55:49.675605+00 f t Oso DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12614 +10421 2025-11-07 15:58:45.636048+00 2025-11-07 15:58:45.636058+00 f t Danka DOG \N 19.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12615 +8600 2025-10-09 18:31:24.879976+00 2025-10-09 18:31:24.879984+00 f t Mushu CAT 0 5.00 0.00 t \N \N \N \N MALE \N f \N 1583 10358 +10422 2025-11-07 16:53:42.296142+00 2025-11-07 16:53:42.296152+00 f t Feli CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12618 +10503 2025-11-08 17:07:58.460145+00 2025-11-08 17:07:58.460154+00 f t Kiara DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12715 +10423 2025-11-07 16:55:12.457708+00 2025-11-07 16:55:12.457716+00 f t Estrella DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12618 +10424 2025-11-07 17:00:15.868443+00 2025-11-07 17:00:15.868458+00 f t Mancha DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12620 +10425 2025-11-07 17:17:42.799258+00 2025-11-07 17:17:42.799267+00 f t Danka DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12621 +10426 2025-11-07 17:52:31.317358+00 2025-11-07 17:52:31.317372+00 f t bran CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12623 +10427 2025-11-07 18:15:50.294994+00 2025-11-07 18:15:50.295003+00 f t Rubi CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12624 +10428 2025-11-07 18:16:41.21259+00 2025-11-07 18:16:41.212599+00 f t ROKO CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12624 +10429 2025-11-07 18:41:00.545575+00 2025-11-07 18:41:00.545585+00 f t Leela DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12627 +10430 2025-11-07 18:43:39.709932+00 2025-11-07 18:43:39.70994+00 f t Horus CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12628 +10431 2025-11-07 18:50:16.701038+00 2025-11-07 18:50:16.701047+00 f t Lorenzo DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12629 +10432 2025-11-07 18:56:47.549396+00 2025-11-07 18:56:47.549405+00 f t Igor CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12630 +10433 2025-11-07 18:59:46.193272+00 2025-11-07 18:59:46.193283+00 f t Waffles CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12631 +10434 2025-11-07 19:00:41.830025+00 2025-11-07 19:00:41.830034+00 f t Igor CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12633 +10435 2025-11-07 19:01:33.533287+00 2025-11-07 19:01:33.533297+00 f t Igor CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12635 +10436 2025-11-07 19:02:40.039991+00 2025-11-07 19:02:40.040001+00 f t Igor CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12636 +10437 2025-11-07 19:18:16.701738+00 2025-11-07 19:18:16.701747+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12637 +10438 2025-11-07 19:22:20.275341+00 2025-11-07 19:22:20.27535+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12638 +10439 2025-11-07 19:26:56.420905+00 2025-11-07 19:26:56.420923+00 f t Almendra CAT \N 3.45 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12639 +10440 2025-11-07 20:16:19.333661+00 2025-11-07 20:16:19.333672+00 f t urbi DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12640 +10441 2025-11-07 20:53:42.409459+00 2025-11-07 20:53:42.409474+00 f t Violeta CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12641 +10442 2025-11-07 21:35:55.49118+00 2025-11-07 21:35:55.491192+00 f t tupac CAT \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12643 +10443 2025-11-07 21:53:07.105039+00 2025-11-07 21:53:07.105048+00 f t Tupac CAT \N 0.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12644 +10444 2025-11-07 21:54:30.263218+00 2025-11-07 21:54:30.263227+00 f t Leo DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12645 +10445 2025-11-07 22:16:19.092423+00 2025-11-07 22:16:19.092433+00 f t Chimuela CAT \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12648 +10446 2025-11-07 22:26:08.55268+00 2025-11-07 22:26:08.552692+00 f t Cata DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12649 +10447 2025-11-07 22:27:20.400611+00 2025-11-07 22:27:20.400619+00 f t Cata CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12651 +10448 2025-11-07 22:28:31.59009+00 2025-11-07 22:28:31.590099+00 f t Moe CAT \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12652 +10449 2025-11-07 22:36:05.842154+00 2025-11-07 22:36:05.842163+00 f t ZEUS CAT \N 6.30 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12653 +10450 2025-11-07 22:36:59.061924+00 2025-11-07 22:36:59.061932+00 f t A CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12654 +10451 2025-11-07 22:46:09.295514+00 2025-11-07 22:46:09.295526+00 f t Duko DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12655 +10452 2025-11-07 23:09:02.923004+00 2025-11-07 23:09:02.923018+00 f t Duko DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12657 +10453 2025-11-07 23:17:14.994435+00 2025-11-07 23:17:14.994444+00 f t Milo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12660 +10454 2025-11-07 23:21:04.051557+00 2025-11-07 23:21:04.051566+00 f t Vio CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12661 +10455 2025-11-07 23:36:26.717577+00 2025-11-07 23:36:26.717585+00 f t Anis CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12662 +10456 2025-11-08 00:40:06.379723+00 2025-11-08 00:40:06.379737+00 f t Betina DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12664 +10457 2025-11-08 00:50:07.852339+00 2025-11-08 00:50:07.852349+00 f t Ruf DOG \N 8.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12665 +10458 2025-11-08 01:25:47.239755+00 2025-11-08 01:25:47.239765+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12666 +10459 2025-11-08 01:31:56.989062+00 2025-11-08 01:31:56.98907+00 f t Jack DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12667 +10460 2025-11-08 01:35:53.066994+00 2025-11-08 01:35:53.067003+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12668 +10461 2025-11-08 01:42:53.473072+00 2025-11-08 01:42:53.473082+00 f t Fito DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12669 +10462 2025-11-08 01:43:14.54741+00 2025-11-08 01:43:14.547419+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12669 +10463 2025-11-08 01:50:45.617871+00 2025-11-08 01:50:45.61788+00 f t Fito DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12670 +10464 2025-11-08 01:51:18.802383+00 2025-11-08 01:51:18.802395+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12670 +10465 2025-11-08 01:53:31.694765+00 2025-11-08 01:53:31.694773+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12671 +10466 2025-11-08 02:22:59.496943+00 2025-11-08 02:22:59.496955+00 f t Nahuel CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12674 +10467 2025-11-08 03:25:38.162582+00 2025-11-08 03:25:38.162593+00 f t Nina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12675 +10468 2025-11-08 04:12:31.622799+00 2025-11-08 04:12:31.622808+00 f t China CAT \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12677 +10469 2025-11-08 05:29:17.539702+00 2025-11-08 05:29:17.539713+00 f t Roma CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12678 +10470 2025-11-08 07:58:04.249049+00 2025-11-08 07:58:04.249063+00 f t Amelia DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12679 +10471 2025-11-08 10:07:02.284524+00 2025-11-08 10:07:02.284534+00 f t Sushi CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12680 +10472 2025-11-08 10:08:07.40016+00 2025-11-08 10:08:07.400169+00 f t Sushi DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12681 +10473 2025-11-08 11:15:11.731721+00 2025-11-08 11:15:11.731735+00 f t Amor feli DOG \N 3.90 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12682 +10474 2025-11-08 12:07:41.366207+00 2025-11-08 12:07:41.366219+00 f t Lebron DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12683 +10475 2025-11-08 12:25:04.313207+00 2025-11-08 12:25:04.313221+00 f t Roma DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12684 +10476 2025-11-08 13:01:00.678218+00 2025-11-08 13:01:00.678228+00 f t Nahuel CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12686 +10477 2025-11-08 13:06:22.190192+00 2025-11-08 13:06:22.190203+00 f t Rey DOG \N 32.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12688 +10478 2025-11-08 13:19:31.974103+00 2025-11-08 13:19:31.974111+00 f t Nahuel CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12689 +10479 2025-11-08 13:30:35.820451+00 2025-11-08 13:30:35.82046+00 f t Candy DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12692 +10480 2025-11-08 13:36:53.940244+00 2025-11-08 13:36:53.940252+00 f t Oki CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12693 +10481 2025-11-08 13:40:12.777659+00 2025-11-08 13:40:12.777668+00 f t Lala CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12694 +10482 2025-11-08 14:05:16.80361+00 2025-11-08 14:05:16.803623+00 f t Negro CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12696 +10483 2025-11-08 14:24:01.737229+00 2025-11-08 14:24:01.737242+00 f t Robert DOG \N 21.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12695 +10484 2025-11-08 14:24:30.468466+00 2025-11-08 14:24:30.468478+00 f t Peque CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12698 +10485 2025-11-08 14:25:20.970845+00 2025-11-08 14:25:20.970853+00 f t Moro CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12699 +10486 2025-11-08 14:27:49.378825+00 2025-11-08 14:27:49.378835+00 f t Kiki CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12698 +10487 2025-11-08 14:37:07.17252+00 2025-11-08 14:37:07.172528+00 f t Polo DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12700 +10488 2025-11-08 14:38:20.489613+00 2025-11-08 14:38:20.489638+00 f t Tony DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12701 +10489 2025-11-08 14:38:37.868006+00 2025-11-08 14:38:37.868015+00 f t Tony CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12701 +11822 2025-11-24 13:50:45.677765+00 2025-11-24 13:50:45.677774+00 f t Coco DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14338 +10492 2025-11-08 14:48:22.040621+00 2025-11-08 14:48:22.04063+00 f t robert DOG \N 21.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12703 +10493 2025-11-08 14:57:02.765219+00 2025-11-08 14:57:02.765232+00 f t Bald CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12704 +10494 2025-11-08 15:24:32.202866+00 2025-11-08 15:24:32.202875+00 f t Isis Cleopatra DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12705 +10495 2025-11-08 15:24:56.732834+00 2025-11-08 15:24:56.732846+00 f t Isis Cleopatra CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12705 +10496 2025-11-08 15:36:06.836335+00 2025-11-08 15:36:06.836344+00 f t Tuerca CAT \N 3.73 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12707 +10491 2025-11-08 14:44:01.22744+00 2025-11-08 14:44:01.22745+00 f t Peque CAT \N 3.40 0.00 t \N 2023-02-01 \N \N \N FEMALE \N \N f \N \N 12702 +10497 2025-11-08 15:42:33.858564+00 2025-11-08 15:42:33.858576+00 f t Simona CAT \N 2.70 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12708 +10498 2025-11-08 15:50:58.757908+00 2025-11-08 15:50:58.757918+00 f t Patitas suaves CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12709 +10499 2025-11-08 15:52:31.433309+00 2025-11-08 15:52:31.433322+00 f t Patitas CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12710 +10500 2025-11-08 15:55:59.880097+00 2025-11-08 15:55:59.880109+00 f t Jamal Malik CAT \N 2.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12711 +10501 2025-11-08 16:05:39.358451+00 2025-11-08 16:05:39.35846+00 f t Patitas suaves CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12713 +10502 2025-11-08 16:35:29.979774+00 2025-11-08 16:35:29.979783+00 f t Kiara DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12714 +10504 2025-11-08 17:09:24.484203+00 2025-11-08 17:09:24.484215+00 f t Bob DOG \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12716 +10505 2025-11-08 17:10:34.708649+00 2025-11-08 17:10:34.708657+00 f t Bob CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12717 +10506 2025-11-08 17:12:55.650241+00 2025-11-08 17:12:55.650252+00 f t Kiars DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12718 +10507 2025-11-08 17:13:24.94225+00 2025-11-08 17:13:24.942259+00 f t Kiara DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12718 +10508 2025-11-08 17:15:59.215226+00 2025-11-08 17:15:59.215239+00 f t Ceres CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12720 +10509 2025-11-08 17:17:34.992893+00 2025-11-08 17:17:34.992901+00 f t Pluton CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12720 +10510 2025-11-08 17:22:55.476292+00 2025-11-08 17:22:55.476304+00 f t Lulu DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12721 +10511 2025-11-08 18:11:46.452787+00 2025-11-08 18:11:46.4528+00 f t Negra DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12723 +10512 2025-11-08 18:25:43.527122+00 2025-11-08 18:25:43.527172+00 f t Roco DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12726 +10513 2025-11-08 18:26:56.463211+00 2025-11-08 18:26:56.463221+00 f t Ringo DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12727 +10514 2025-11-08 18:33:20.769512+00 2025-11-08 18:33:20.769521+00 f t Pepper DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12728 +10515 2025-11-08 18:35:59.015406+00 2025-11-08 18:35:59.015416+00 f t INTI Ponzo diz DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12729 +10516 2025-11-08 19:03:03.18003+00 2025-11-08 19:03:03.180041+00 f t Cappuccino CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12731 +10517 2025-11-08 19:07:06.786943+00 2025-11-08 19:07:06.786952+00 f t Cappuccino CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12732 +10518 2025-11-08 19:26:35.993959+00 2025-11-08 19:26:35.993969+00 f t Zucaritas CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12733 +10519 2025-11-08 20:23:29.306839+00 2025-11-08 20:23:29.306848+00 f t Simon CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12735 +10520 2025-11-08 21:07:19.337598+00 2025-11-08 21:07:19.337608+00 f t LilaMora CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12737 +10521 2025-11-08 21:10:35.869628+00 2025-11-08 21:10:35.869637+00 f t Pancha DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12739 +10522 2025-11-08 22:03:25.232497+00 2025-11-08 22:03:25.232506+00 f t Mora CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12742 +10523 2025-11-08 22:04:06.704003+00 2025-11-08 22:04:06.704011+00 f t Mora CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12743 +10524 2025-11-08 22:04:42.151416+00 2025-11-08 22:04:42.151426+00 f t Mora CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12743 +10525 2025-11-09 00:12:46.00843+00 2025-11-09 00:12:46.008443+00 f t Lara DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12746 +10526 2025-11-09 00:13:03.132286+00 2025-11-09 00:13:03.132301+00 f t Lara CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12746 +10527 2025-11-09 00:19:44.747106+00 2025-11-09 00:19:44.747115+00 f t Dd DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12747 +10528 2025-11-09 00:32:14.201864+00 2025-11-09 00:32:14.201873+00 f t Miguel CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12748 +10529 2025-11-09 00:35:08.169794+00 2025-11-09 00:35:08.169802+00 f t lara CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12749 +10530 2025-11-09 01:04:56.718213+00 2025-11-09 01:04:56.718221+00 f t Toulouse CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12750 +10531 2025-11-09 01:17:42.259512+00 2025-11-09 01:17:42.259521+00 f t Serena CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12751 +10532 2025-11-09 01:21:13.712123+00 2025-11-09 01:21:13.712135+00 f t Serena CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12752 +10533 2025-11-09 01:59:44.323543+00 2025-11-09 01:59:44.323552+00 f t Vitto DOG \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12754 +10534 2025-11-09 02:00:37.238992+00 2025-11-09 02:00:37.239005+00 f t Vitto CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12754 +10535 2025-11-09 02:00:57.363183+00 2025-11-09 02:00:57.363191+00 f t Vicky CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12754 +10536 2025-11-09 02:03:07.777554+00 2025-11-09 02:03:07.777566+00 f t Valquiria CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12754 +10537 2025-11-09 02:03:52.825092+00 2025-11-09 02:03:52.8251+00 f t Venezia CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12754 +10538 2025-11-09 02:26:56.1443+00 2025-11-09 02:26:56.144308+00 f t Allura DOG \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12755 +10539 2025-11-09 02:31:14.768871+00 2025-11-09 02:31:14.768879+00 f t Goku DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12756 +10540 2025-11-09 03:06:04.492429+00 2025-11-09 03:06:04.492438+00 f t Brownie CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12757 +10541 2025-11-09 03:53:05.202559+00 2025-11-09 03:53:05.202571+00 f t Romeo CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12759 +10542 2025-11-09 04:14:40.718475+00 2025-11-09 04:14:40.718485+00 f t Patro CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12763 +10543 2025-11-09 05:22:11.860595+00 2025-11-09 05:22:11.860604+00 f t homero DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12765 +10544 2025-11-09 06:08:59.626142+00 2025-11-09 06:08:59.626154+00 f t Mora CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12766 +10545 2025-11-09 06:26:55.092673+00 2025-11-09 06:26:55.092683+00 f t Lolo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12767 +10546 2025-11-09 10:13:44.907536+00 2025-11-09 10:13:44.907549+00 f t Felipe CAT \N 500.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12768 +11823 2025-11-24 14:19:44.402418+00 2025-11-24 14:19:44.402428+00 f t Hansel CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14341 +10573 2025-11-09 20:24:01.245525+00 2025-11-09 20:24:01.245534+00 f t Rocky DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12811 +10574 2025-11-09 20:25:15.197831+00 2025-11-09 20:25:15.197844+00 f t Lolo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12811 +10547 2025-11-09 13:03:46.180722+00 2025-11-09 13:03:46.180733+00 f t Nina DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12770 +10548 2025-11-09 13:30:25.934547+00 2025-11-09 13:30:25.934556+00 f t Sasha DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12773 +10549 2025-11-09 14:00:33.785578+00 2025-11-09 14:00:33.78559+00 f t Milka CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12775 +10550 2025-11-09 14:03:18.861922+00 2025-11-09 14:03:18.861932+00 f t Kala DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12776 +10551 2025-11-09 14:19:01.244269+00 2025-11-09 14:19:01.244281+00 f t Kala DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12778 +10552 2025-11-09 14:33:14.882325+00 2025-11-09 14:33:14.882334+00 f t Kala DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12779 +10553 2025-11-09 14:46:46.085534+00 2025-11-09 14:46:46.085542+00 f t Milla CAT \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12781 +10554 2025-11-09 14:53:49.244825+00 2025-11-09 14:53:49.244836+00 f t Kala DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12783 +10555 2025-11-09 14:58:20.727123+00 2025-11-09 14:58:20.727155+00 f t Salem CAT \N 54.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12785 +10556 2025-11-09 15:59:37.3665+00 2025-11-09 15:59:37.366514+00 f t Rocky DOG \N 24.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12787 +10557 2025-11-09 16:03:05.413309+00 2025-11-09 16:03:05.413319+00 f t Violeta CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12789 +10558 2025-11-09 16:09:32.639125+00 2025-11-09 16:09:32.639172+00 f t Francisquito DOG \N 9.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12790 +10559 2025-11-09 16:12:08.30516+00 2025-11-09 16:12:08.305172+00 f t Panchita DOG \N 19.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12790 +10560 2025-11-09 16:13:57.041597+00 2025-11-09 16:13:57.041607+00 f t Nacho DOG \N 47.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12791 +10561 2025-11-09 16:17:29.726188+00 2025-11-09 16:17:29.726197+00 f t Tina CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12793 +10562 2025-11-09 18:03:13.233239+00 2025-11-09 18:03:13.233252+00 f t Cereza DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12797 +10563 2025-11-09 18:07:48.421026+00 2025-11-09 18:07:48.421034+00 f t Rocco DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12798 +10564 2025-11-09 18:23:26.500835+00 2025-11-09 18:23:26.500845+00 f t Moro DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12799 +10565 2025-11-09 19:08:54.239526+00 2025-11-09 19:08:54.239536+00 f t Eva DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12800 +10566 2025-11-09 19:15:20.295439+00 2025-11-09 19:15:20.295448+00 f t Pisco DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12801 +10567 2025-11-09 19:29:09.391191+00 2025-11-09 19:29:09.391203+00 f t Juanfer DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12802 +10568 2025-11-09 19:42:37.096357+00 2025-11-09 19:42:37.096366+00 f t Mika CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12803 +10569 2025-11-09 19:52:50.800115+00 2025-11-09 19:52:50.800125+00 f t Loki CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12804 +10570 2025-11-09 19:58:10.756752+00 2025-11-09 19:58:10.756763+00 f t Mini DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12807 +10571 2025-11-09 20:08:14.342125+00 2025-11-09 20:08:14.34214+00 f t Casla DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12809 +10572 2025-11-09 20:09:57.035716+00 2025-11-09 20:09:57.035727+00 f t Braco DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12810 +10575 2025-11-09 20:26:04.22086+00 2025-11-09 20:26:04.220885+00 f t Perrita DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12812 +10576 2025-11-09 20:32:34.905444+00 2025-11-09 20:32:34.905453+00 f t nala DOG \N 37.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12813 +10577 2025-11-09 22:11:33.409827+00 2025-11-09 22:11:33.409836+00 f t Keila DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12814 +10578 2025-11-09 22:19:59.56586+00 2025-11-09 22:19:59.565869+00 f t Sienna DOG \N 60.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12815 +10579 2025-11-09 22:23:23.303332+00 2025-11-09 22:23:23.303341+00 f t Sienna DOG \N 60.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12816 +10580 2025-11-10 00:22:17.292197+00 2025-11-10 00:22:17.292207+00 f t Sid CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12817 +10581 2025-11-10 01:22:10.059283+00 2025-11-10 01:22:10.059296+00 f t Harry CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12819 +10582 2025-11-10 01:27:01.684171+00 2025-11-10 01:27:01.684185+00 f t Tita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12820 +10583 2025-11-10 01:30:30.39159+00 2025-11-10 01:30:30.391603+00 f t Francisco DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12819 +10584 2025-11-10 02:33:53.559484+00 2025-11-10 02:33:53.559497+00 f t BARDOCK DOG \N 19.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12822 +10585 2025-11-10 02:36:44.8666+00 2025-11-10 02:36:44.866609+00 f t Monkey di Soledad CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12822 +10586 2025-11-10 02:38:43.405574+00 2025-11-10 02:38:43.405586+00 f t Mumi CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12822 +10587 2025-11-10 03:09:59.929957+00 2025-11-10 03:09:59.929968+00 f t Nina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12824 +10588 2025-11-10 03:17:28.507171+00 2025-11-10 03:17:28.507181+00 f t Rumi CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12825 +10589 2025-11-10 03:21:27.189966+00 2025-11-10 03:21:27.189975+00 f t Melina Paiva DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12826 +10590 2025-11-10 03:35:39.53931+00 2025-11-10 03:35:39.539319+00 f t Salem CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12827 +10591 2025-11-10 03:44:36.636906+00 2025-11-10 03:44:36.636915+00 f t Emilio CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12828 +10592 2025-11-10 03:57:40.776598+00 2025-11-10 03:57:40.776606+00 f t Ozzy DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12829 +10593 2025-11-10 04:02:10.133257+00 2025-11-10 04:02:10.13327+00 f t Venecia CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12831 +10594 2025-11-10 04:58:54.693806+00 2025-11-10 04:58:54.693818+00 f t Hera DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12833 +10595 2025-11-10 05:37:27.799619+00 2025-11-10 05:37:27.799632+00 f t Alfonsina DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12834 +10596 2025-11-10 07:58:33.859765+00 2025-11-10 07:58:33.859776+00 f t Africa DOG \N 7.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12835 +10597 2025-11-10 08:12:17.628648+00 2025-11-10 08:12:17.628656+00 f t Africa DOG \N 7.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12836 +10598 2025-11-10 08:58:04.479719+00 2025-11-10 08:58:04.479729+00 f t Jjjjjj CAT \N 300.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12837 +10599 2025-11-10 09:32:29.959091+00 2025-11-10 09:32:29.959099+00 f t Dantes CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12838 +10600 2025-11-10 10:31:39.445366+00 2025-11-10 10:31:39.445374+00 f t Maddock CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12841 +10601 2025-11-10 10:58:55.89829+00 2025-11-10 10:58:55.898299+00 f t Rosita DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12842 +10602 2025-11-10 11:02:51.643378+00 2025-11-10 11:02:51.643387+00 f t Lucy CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12843 +10603 2025-11-10 11:06:42.650135+00 2025-11-10 11:06:42.650144+00 f t Lucy CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12844 +10604 2025-11-10 11:09:41.422024+00 2025-11-10 11:09:41.422038+00 f t Mioo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12845 +10605 2025-11-10 11:53:40.826463+00 2025-11-10 11:53:40.826472+00 f t Jackie CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12847 +10606 2025-11-10 11:58:52.791646+00 2025-11-10 11:58:52.791659+00 f t Pipo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12848 +10607 2025-11-10 12:26:43.071543+00 2025-11-10 12:26:43.071552+00 f t Panda DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12849 +10608 2025-11-10 12:41:13.969094+00 2025-11-10 12:41:13.969103+00 f t Tita DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12850 +10490 2025-11-08 14:41:52.598133+00 2025-11-08 14:41:52.598142+00 f t Kiki CAT \N 3.60 0.00 t \N 2022-12-01 \N \N \N FEMALE \N \N f \N \N 12702 +10609 2025-11-10 12:58:25.034042+00 2025-11-10 12:58:25.034052+00 f t Rosita DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12851 +10610 2025-11-10 14:04:38.780297+00 2025-11-10 14:04:38.780305+00 f t Félix CAT \N 1.60 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12854 +10611 2025-11-10 14:08:36.741947+00 2025-11-10 14:08:36.741955+00 f t Uma DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12855 +10612 2025-11-10 14:31:42.897206+00 2025-11-10 14:31:42.897218+00 f t Dantes CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12857 +10613 2025-11-10 14:35:54.190163+00 2025-11-10 14:35:54.190172+00 f t Clio CAT \N 4.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12858 +10614 2025-11-10 15:03:55.771672+00 2025-11-10 15:03:55.771681+00 f t PETER DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12862 +10615 2025-11-10 15:13:46.238915+00 2025-11-10 15:13:46.238926+00 f t Tomas DOG \N 7.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12863 +10616 2025-11-10 15:16:21.379857+00 2025-11-10 15:16:21.379867+00 f t Leia DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12865 +10618 2025-11-10 15:28:59.823961+00 2025-11-10 15:28:59.823971+00 f t pipo CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12866 +10619 2025-11-10 15:34:02.67202+00 2025-11-10 15:34:02.67203+00 f t sfver CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12868 +10620 2025-11-10 16:06:50.752386+00 2025-11-10 16:06:50.752398+00 f t Paisa CAT \N 3.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12871 +10621 2025-11-10 16:17:13.033025+00 2025-11-10 16:17:13.033034+00 f t Plomito CAT \N 4.30 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12872 +10622 2025-11-10 16:19:43.331124+00 2025-11-10 16:19:43.331173+00 f t Otelo CAT \N 4.90 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12872 +10623 2025-11-10 16:21:13.632095+00 2025-11-10 16:21:13.632105+00 f t Romeo CAT \N 3.40 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12872 +10624 2025-11-10 16:21:14.007565+00 2025-11-10 16:21:14.007578+00 f t Procer CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12873 +10625 2025-11-10 16:29:09.679171+00 2025-11-10 16:29:09.67918+00 f t Archie CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12874 +10626 2025-11-10 16:31:11.219507+00 2025-11-10 16:31:11.21952+00 f t Dorita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12875 +10627 2025-11-10 16:53:20.798856+00 2025-11-10 16:53:20.798865+00 f t Maddock CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12878 +10628 2025-11-10 17:19:02.488221+00 2025-11-10 17:19:02.488237+00 f t Tubería CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12881 +10629 2025-11-10 17:19:52.073639+00 2025-11-10 17:19:52.073649+00 f t Tiberia DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12882 +10630 2025-11-10 17:21:53.245602+00 2025-11-10 17:21:53.24561+00 f t Tiberia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12883 +10631 2025-11-10 17:35:28.134454+00 2025-11-10 17:35:28.134468+00 f t Cobi DOG \N 24.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12885 +10086 2025-11-01 21:34:07.287651+00 2025-11-01 21:34:07.287664+00 f t . CAT 0 24.00 0.00 t \N \N \N \N MALE \N f \N 121 12209 +10632 2025-11-10 17:52:27.249834+00 2025-11-10 17:52:27.249844+00 f t Boo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12886 +10633 2025-11-10 17:58:33.469782+00 2025-11-10 17:58:33.469791+00 f t Lola DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12887 +10634 2025-11-10 17:59:08.626817+00 2025-11-10 17:59:08.626826+00 f t Sasha DOG \N 29.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12888 +10635 2025-11-10 19:17:15.677662+00 2025-11-10 19:17:15.677671+00 f t Nans DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12889 +10636 2025-11-10 19:36:57.351548+00 2025-11-10 19:36:57.351557+00 f t Miel CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12891 +10617 2025-11-10 15:28:45.528903+00 2025-11-10 15:28:45.528913+00 t t pipo DOG \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12866 +10637 2025-11-10 19:40:59.506721+00 2025-11-10 19:40:59.507157+00 f t tuco DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12892 +10638 2025-11-10 19:59:04.719625+00 2025-11-10 19:59:04.720173+00 f t Tita CAT \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12894 +10639 2025-11-10 20:01:25.394217+00 2025-11-10 20:01:25.394232+00 f t Tito CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12895 +10640 2025-11-10 20:02:15.536085+00 2025-11-10 20:02:15.536101+00 f t Mina DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12896 +10641 2025-11-10 20:14:16.788529+00 2025-11-10 20:14:16.788541+00 f t Lo DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12899 +10642 2025-11-10 20:14:21.323273+00 2025-11-10 20:14:21.323283+00 f t Paul DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12898 +10643 2025-11-10 20:18:03.878501+00 2025-11-10 20:18:03.878512+00 f t PRAGA CAT \N 37.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12900 +10644 2025-11-10 20:20:14.761238+00 2025-11-10 20:20:14.761251+00 f t Praga CAT \N 3.70 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12903 +10645 2025-11-10 20:22:48.030673+00 2025-11-10 20:22:48.030684+00 f t zoe CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12905 +10646 2025-11-10 20:40:35.927058+00 2025-11-10 20:40:35.92707+00 f t Gatuela CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12907 +10647 2025-11-10 20:44:38.939066+00 2025-11-10 20:44:38.939078+00 f t Yesi CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12908 +10648 2025-11-10 20:51:06.013392+00 2025-11-10 20:51:06.013839+00 f t Paquito, ankouey adolf CAT \N 3.70 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12910 +10649 2025-11-10 21:06:33.62077+00 2025-11-10 21:06:33.620782+00 f t lula CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12911 +10650 2025-11-10 21:10:23.620318+00 2025-11-10 21:10:23.620327+00 f t Osvaldo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12912 +10651 2025-11-10 21:16:34.876054+00 2025-11-10 21:16:34.876066+00 f t Lira CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12914 +10652 2025-11-10 21:19:05.951738+00 2025-11-10 21:19:05.951753+00 f t lula CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12915 +10653 2025-11-10 21:26:51.067021+00 2025-11-10 21:26:51.067036+00 f t Mielita DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12916 +10654 2025-11-10 21:28:43.407636+00 2025-11-10 21:28:43.407645+00 f t Procer CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12918 +10655 2025-11-10 21:31:27.267087+00 2025-11-10 21:31:27.267097+00 f t Procer DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12919 +10656 2025-11-10 21:37:49.869838+00 2025-11-10 21:37:49.870264+00 f t China CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12920 +10657 2025-11-10 21:41:52.600159+00 2025-11-10 21:41:52.600629+00 f t Eros DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12921 +10658 2025-11-10 22:01:32.983578+00 2025-11-10 22:01:32.983587+00 f t CHUNI CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12922 +10659 2025-11-10 22:26:06.393729+00 2025-11-10 22:26:06.393739+00 f t Merlot CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12923 +10660 2025-11-10 22:39:56.09885+00 2025-11-10 22:39:56.098859+00 f t Jack DOG \N 38.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12924 +10661 2025-11-10 22:41:06.829604+00 2025-11-10 22:41:06.829614+00 f t Kimchi DOG \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12925 +10662 2025-11-10 22:54:10.94447+00 2025-11-10 22:54:10.944479+00 f t Baccetti DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12926 +10663 2025-11-10 23:15:48.218864+00 2025-11-10 23:15:48.218874+00 f t Chía CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12928 +10664 2025-11-10 23:48:21.802784+00 2025-11-10 23:48:21.803056+00 f t cobi DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12930 +11824 2025-11-24 14:20:38.165523+00 2025-11-24 14:20:38.165532+00 f t Coco DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14342 +10665 2025-11-10 23:58:55.711009+00 2025-11-10 23:58:55.711354+00 f t sda CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 7436 +10666 2025-11-11 00:48:34.620778+00 2025-11-11 00:48:34.620786+00 f t Aduki CAT \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12933 +10667 2025-11-11 01:18:17.675793+00 2025-11-11 01:18:17.675805+00 f t Clarita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12935 +10668 2025-11-11 01:40:27.426171+00 2025-11-11 01:40:27.426184+00 f t Mandarina CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12936 +10669 2025-11-11 01:41:22.469683+00 2025-11-11 01:41:22.469692+00 f t Simon CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12936 +10670 2025-11-11 02:06:10.765501+00 2025-11-11 02:06:10.765512+00 f t Gus DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12937 +10671 2025-11-11 02:51:56.335034+00 2025-11-11 02:51:56.335042+00 f t Lian CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12938 +10672 2025-11-11 02:54:07.127857+00 2025-11-11 02:54:07.12787+00 f t India DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12940 +10673 2025-11-11 02:55:27.132072+00 2025-11-11 02:55:27.132081+00 f t Lian CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12941 +10674 2025-11-11 02:56:02.697013+00 2025-11-11 02:56:02.697026+00 f t Lian DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12942 +10675 2025-11-11 02:56:23.730515+00 2025-11-11 02:56:23.730523+00 f t Lian CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12942 +10676 2025-11-11 03:38:44.975153+00 2025-11-11 03:38:44.975164+00 f t Pino CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12944 +10677 2025-11-11 03:50:02.69619+00 2025-11-11 03:50:02.696218+00 f t Rocco DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12945 +10678 2025-11-11 05:57:01.635918+00 2025-11-11 05:57:01.63593+00 f t Frida CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12946 +10679 2025-11-11 07:46:55.374875+00 2025-11-11 07:46:55.374885+00 f t Oliver CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12947 +10680 2025-11-11 08:03:10.837251+00 2025-11-11 08:03:10.837259+00 f t M DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12948 +10681 2025-11-11 10:23:41.152703+00 2025-11-11 10:23:41.152717+00 f t Rafael CAT \N 700.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12950 +10682 2025-11-11 10:40:23.685419+00 2025-11-11 10:40:23.68543+00 f t Olga CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12952 +10683 2025-11-11 10:43:31.797685+00 2025-11-11 10:43:31.797706+00 f t Nestor DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12953 +10684 2025-11-11 10:49:34.8689+00 2025-11-11 10:49:34.868911+00 f t Jack CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12955 +10685 2025-11-11 10:58:00.046976+00 2025-11-11 10:58:00.046986+00 f t Toto DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12956 +10686 2025-11-11 11:08:17.773313+00 2025-11-11 11:08:17.773322+00 f t Pantufla CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12957 +10687 2025-11-11 12:39:11.699195+00 2025-11-11 12:39:11.699204+00 f t morci CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12958 +10688 2025-11-11 12:58:12.805166+00 2025-11-11 12:58:12.806583+00 f t Tigri CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12959 +10689 2025-11-11 13:02:52.700394+00 2025-11-11 13:02:52.703818+00 f t NENA CAT \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12960 +10690 2025-11-11 13:03:26.021184+00 2025-11-11 13:03:26.021234+00 f t IPA MACAGNO DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12961 +10691 2025-11-11 13:04:01.688169+00 2025-11-11 13:04:01.688179+00 f t Ipa DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12962 +10692 2025-11-11 13:18:05.838214+00 2025-11-11 13:18:05.838223+00 f t Mango CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12964 +10693 2025-11-11 13:30:51.999422+00 2025-11-11 13:30:51.999434+00 f t Mica DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12965 +10694 2025-11-11 13:36:54.068817+00 2025-11-11 13:36:54.068826+00 f t Mica DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12966 +10695 2025-11-11 13:54:39.447081+00 2025-11-11 13:54:39.44709+00 f t j DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12967 +10696 2025-11-11 14:29:02.772609+00 2025-11-11 14:29:02.772618+00 f t Renata CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12968 +10697 2025-11-11 14:32:40.718698+00 2025-11-11 14:32:40.71871+00 f t Nina CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12969 +10698 2025-11-11 14:36:41.795457+00 2025-11-11 14:36:41.795466+00 f t Tita DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12971 +10699 2025-11-11 14:48:55.328009+00 2025-11-11 14:48:55.328017+00 f t Luna DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12972 +10700 2025-11-11 14:51:56.97276+00 2025-11-11 14:51:56.972769+00 f t Lila DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12973 +10701 2025-11-11 14:58:23.162627+00 2025-11-11 14:58:23.162636+00 f t Dartagnan CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12975 +10702 2025-11-11 14:59:54.13673+00 2025-11-11 14:59:54.136741+00 f t Dorian DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12975 +10706 2025-11-11 15:04:04.861201+00 2025-11-11 15:04:04.861211+00 f t Nala CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12977 +10707 2025-11-11 15:12:00.762964+00 2025-11-11 15:12:00.762974+00 f t Tomas DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12978 +10708 2025-11-11 15:58:13.953197+00 2025-11-11 15:58:13.953206+00 f t Tomas DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12980 +10703 2025-11-11 15:01:06.344285+00 2025-11-11 15:01:06.344298+00 f t Dartagnan CAT 0 5.00 0.00 f \N \N \N \N MALE \N f \N 1208 12976 +10704 2025-11-11 15:01:54.407513+00 2025-11-11 15:01:54.407523+00 f t Dorian CAT 0 6.00 0.00 f \N \N \N \N MALE \N f \N 1208 12976 +10709 2025-11-11 17:15:48.161393+00 2025-11-11 17:15:48.161401+00 f t Tita CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12983 +10710 2025-11-11 17:24:51.482243+00 2025-11-11 17:24:51.482251+00 f t Chino DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 12985 +10711 2025-11-11 18:23:01.507037+00 2025-11-11 18:23:01.507051+00 f t Baru CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12987 +10712 2025-11-11 18:49:42.321567+00 2025-11-11 18:49:42.321578+00 f t Lilith CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12988 +10713 2025-11-11 18:51:45.460003+00 2025-11-11 18:51:45.460012+00 f t Lilith CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12989 +10714 2025-11-11 19:00:51.068773+00 2025-11-11 19:00:51.068785+00 f t RAGNAR DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12990 +10715 2025-11-11 19:02:19.066384+00 2025-11-11 19:02:19.066393+00 f t Mamba CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12991 +10716 2025-11-11 19:16:14.524397+00 2025-11-11 19:16:14.524408+00 f t Lilith CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12993 +10717 2025-11-11 19:20:24.979466+00 2025-11-11 19:20:24.979476+00 f t Rey CAT \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12994 +10718 2025-11-11 19:52:08.293695+00 2025-11-11 19:52:08.293706+00 f t PIPI CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12995 +10719 2025-11-11 19:53:48.673294+00 2025-11-11 19:53:48.673302+00 f t VAKI CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12995 +10720 2025-11-11 20:05:06.846561+00 2025-11-11 20:05:06.846573+00 f t Micha DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12996 +10721 2025-11-11 20:05:21.220468+00 2025-11-11 20:05:21.220477+00 f t Micha CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12996 +10722 2025-11-11 20:30:18.354095+00 2025-11-11 20:30:18.354105+00 f t Pizarnik CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12998 +10724 2025-11-11 20:36:55.175607+00 2025-11-11 20:36:55.175618+00 f t Nina DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13001 +10725 2025-11-11 20:59:25.397978+00 2025-11-11 20:59:25.397987+00 f t Lupe CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13003 +10726 2025-11-11 21:13:03.020575+00 2025-11-11 21:13:03.020585+00 f t Luna DOG \N 23.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13004 +10727 2025-11-11 21:15:49.308144+00 2025-11-11 21:15:49.308152+00 f t Simba CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13005 +10728 2025-11-11 21:17:27.745583+00 2025-11-11 21:17:27.745596+00 f t Luna DOG \N 23.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13005 +10729 2025-11-11 21:23:38.384727+00 2025-11-11 21:23:38.384736+00 f t Odette DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13006 +10730 2025-11-11 21:26:43.634778+00 2025-11-11 21:26:43.634787+00 f t Harley CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13007 +10731 2025-11-11 21:38:49.67892+00 2025-11-11 21:38:49.678931+00 f t Penny CAT \N 1.40 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13009 +10732 2025-11-11 21:42:07.354132+00 2025-11-11 21:42:07.35414+00 f t Luz CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13010 +10733 2025-11-11 21:53:27.751122+00 2025-11-11 21:53:27.751147+00 f t Lopez CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13011 +10734 2025-11-11 22:11:20.083097+00 2025-11-11 22:11:20.083106+00 f t Lisa CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13015 +10735 2025-11-11 22:45:30.781913+00 2025-11-11 22:45:30.781922+00 f t Odette DOG \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13016 +10736 2025-11-11 22:48:07.085101+00 2025-11-11 22:48:07.085111+00 f t Magui DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13017 +10737 2025-11-11 23:05:37.001084+00 2025-11-11 23:05:37.001093+00 f t Canela DOG \N 40.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13019 +10738 2025-11-11 23:10:22.867952+00 2025-11-11 23:10:22.867961+00 f t Lily CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13021 +10739 2025-11-11 23:10:48.090682+00 2025-11-11 23:10:48.09069+00 f t Tom CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13022 +10740 2025-11-11 23:29:35.053945+00 2025-11-11 23:29:35.053954+00 f t kitty CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13023 +10723 2025-11-11 20:32:30.754895+00 2025-11-11 20:32:30.754903+00 t t Gata CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 12999 +10741 2025-11-11 23:48:23.203555+00 2025-11-11 23:48:23.203564+00 f t Rosita DOG \N 3.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13025 +10742 2025-11-11 23:50:28.870157+00 2025-11-11 23:50:28.870166+00 f t Chimuelo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13026 +10743 2025-11-12 00:00:19.603915+00 2025-11-12 00:00:19.603937+00 f t Gaia CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13027 +10744 2025-11-12 00:45:32.521727+00 2025-11-12 00:45:32.521737+00 f t Cala DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13028 +10745 2025-11-12 00:57:52.664539+00 2025-11-12 00:57:52.664547+00 f t Timon CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13029 +10746 2025-11-12 00:58:06.19869+00 2025-11-12 00:58:06.198702+00 f t Poli CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13030 +10747 2025-11-12 00:58:55.953253+00 2025-11-12 00:58:55.953264+00 f t Mora DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13029 +10748 2025-11-12 01:01:17.298358+00 2025-11-12 01:01:17.298367+00 f t Lili CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13029 +10749 2025-11-12 01:15:37.768526+00 2025-11-12 01:15:37.768535+00 f t Tony CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13032 +10750 2025-11-12 01:16:04.069973+00 2025-11-12 01:16:04.069987+00 f t Rufus DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13033 +10751 2025-11-12 01:24:05.487607+00 2025-11-12 01:24:05.487619+00 f t Negro DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13035 +10752 2025-11-12 01:30:47.634637+00 2025-11-12 01:30:47.634646+00 f t Pancha CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13036 +10753 2025-11-12 01:32:07.9437+00 2025-11-12 01:32:07.943709+00 f t Pepo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13036 +10754 2025-11-12 01:33:35.6351+00 2025-11-12 01:33:35.635109+00 f t Croqueta DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13037 +10755 2025-11-12 01:45:25.377254+00 2025-11-12 01:45:25.377264+00 f t Abby CAT \N 0.60 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13039 +10756 2025-11-12 01:46:11.69449+00 2025-11-12 01:46:11.694498+00 f t Porota CAT \N 640.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13040 +10757 2025-11-12 01:48:15.305792+00 2025-11-12 01:48:15.3058+00 f t Lucy CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13041 +10758 2025-11-12 02:36:43.139919+00 2025-11-12 02:36:43.139928+00 f t Milo DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13043 +10759 2025-11-12 02:36:58.24741+00 2025-11-12 02:36:58.247419+00 f t Milo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13043 +10760 2025-11-12 02:41:05.801808+00 2025-11-12 02:41:05.801818+00 f t Alicia CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13044 +10761 2025-11-12 02:49:29.915546+00 2025-11-12 02:49:29.915559+00 f t Bambi DOG \N 29.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13045 +10762 2025-11-12 02:57:04.629348+00 2025-11-12 02:57:04.629357+00 f t Scooby DOG \N 80.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13046 +10763 2025-11-12 03:07:59.750873+00 2025-11-12 03:07:59.750882+00 f t Merlina CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13049 +10764 2025-11-12 03:35:38.059585+00 2025-11-12 03:35:38.059595+00 f t Gordito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13050 +10765 2025-11-12 04:11:06.970886+00 2025-11-12 04:11:06.970895+00 f t Peperina DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13051 +10766 2025-11-12 04:14:29.590863+00 2025-11-12 04:14:29.590872+00 f t Peperina DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13051 +10767 2025-11-12 08:55:02.656294+00 2025-11-12 08:55:02.656311+00 f t Zarita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13052 +10768 2025-11-12 10:36:13.777715+00 2025-11-12 10:36:13.777724+00 f t Puchi DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13053 +10769 2025-11-12 11:16:26.120512+00 2025-11-12 11:16:26.120522+00 f t Negro DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13054 +10770 2025-11-12 11:33:09.554655+00 2025-11-12 11:33:09.554668+00 f t Catalina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13055 +10771 2025-11-12 12:22:28.421259+00 2025-11-12 12:22:28.421269+00 f t Guido DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13058 +10772 2025-11-12 12:35:37.69862+00 2025-11-12 12:35:37.698629+00 f t Canela DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13059 +10773 2025-11-12 12:37:05.389434+00 2025-11-12 12:37:05.389443+00 f t Boston DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13059 +10774 2025-11-12 12:45:01.055712+00 2025-11-12 12:45:01.055721+00 f t Ivan DOG \N 29.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13060 +10775 2025-11-12 12:47:46.743247+00 2025-11-12 12:47:46.743261+00 f t Milo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13061 +10776 2025-11-12 12:54:59.428505+00 2025-11-12 12:54:59.428515+00 f t TEST DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13063 +10777 2025-11-12 13:24:16.573166+00 2025-11-12 13:24:16.573175+00 f t Ciro DOG \N 19.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13066 +10778 2025-11-12 13:25:03.644399+00 2025-11-12 13:25:03.644416+00 f t Nala CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13066 +10779 2025-11-12 13:44:08.000907+00 2025-11-12 13:44:08.000917+00 f t Caramelo DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13068 +10780 2025-11-12 13:52:17.1707+00 2025-11-12 13:52:17.170713+00 f t Sabrina CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13069 +10781 2025-11-12 13:56:59.056255+00 2025-11-12 13:56:59.056264+00 f t Odara DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13070 +10782 2025-11-12 14:03:30.722463+00 2025-11-12 14:03:30.722473+00 f t Guido DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13071 +10783 2025-11-12 14:22:44.425395+00 2025-11-12 14:22:44.425405+00 f t Tilin DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13073 +10784 2025-11-12 14:27:08.772753+00 2025-11-12 14:27:08.772763+00 f t Kombu CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13074 +10785 2025-11-12 14:33:21.294334+00 2025-11-12 14:33:21.294343+00 f t Omen CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13075 +10786 2025-11-12 14:42:41.079707+00 2025-11-12 14:42:41.07972+00 f t Sam DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13076 +10787 2025-11-12 14:46:02.478341+00 2025-11-12 14:46:02.478351+00 f t cosmo DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13077 +10788 2025-11-12 14:51:18.640984+00 2025-11-12 14:51:18.640992+00 f t TOrito DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13078 +10789 2025-11-12 14:51:35.418427+00 2025-11-12 14:51:35.418437+00 f t Torito DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13078 +10790 2025-11-12 14:55:20.16013+00 2025-11-12 14:55:20.160139+00 f t Theo Massa CAT \N 6.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13079 +10791 2025-11-12 15:09:14.335486+00 2025-11-12 15:09:14.335499+00 f t cosmo DOG \N 18.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13080 +10705 2025-11-11 15:01:55.302381+00 2025-11-11 15:01:55.302393+00 f t Ciro DOG 0 19.00 0.00 t \N \N \N \N MALE \N f \N 1208 12977 +10792 2025-11-12 15:50:32.53789+00 2025-11-12 15:50:32.537899+00 f t Nala DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13081 +10793 2025-11-12 16:05:32.619769+00 2025-11-12 16:05:32.619779+00 f t Bichi CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13082 +10794 2025-11-12 16:08:25.795944+00 2025-11-12 16:08:25.795952+00 f t Bicho CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13083 +10795 2025-11-12 16:12:18.845642+00 2025-11-12 16:12:18.845651+00 f t Toto DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13084 +10796 2025-11-12 16:14:07.763288+00 2025-11-12 16:14:07.763301+00 f t Poroto CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13085 +10797 2025-11-12 16:15:36.672552+00 2025-11-12 16:15:36.672565+00 f t Poroto CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13086 +10798 2025-11-12 16:32:17.024871+00 2025-11-12 16:32:17.024883+00 f t Toto DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13088 +10799 2025-11-12 16:34:37.306754+00 2025-11-12 16:34:37.306762+00 f t Julian DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13089 +10800 2025-11-12 16:35:42.34464+00 2025-11-12 16:35:42.344648+00 f t Julián DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13089 +10801 2025-11-12 16:36:45.80911+00 2025-11-12 16:36:45.809118+00 f t Julián CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13089 +10802 2025-11-12 16:43:09.433469+00 2025-11-12 16:43:09.433482+00 f t BALTAZAR CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13090 +10803 2025-11-12 16:45:36.784465+00 2025-11-12 16:45:36.784474+00 f t BALTAZAR CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13091 +10804 2025-11-12 16:59:58.207543+00 2025-11-12 16:59:58.207551+00 f t A CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13093 +10805 2025-11-12 17:08:41.445505+00 2025-11-12 17:08:41.445514+00 f t Kala CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13094 +10806 2025-11-12 17:10:06.367855+00 2025-11-12 17:10:06.367867+00 f t Katia CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13095 +10807 2025-11-12 17:19:39.036559+00 2025-11-12 17:19:39.036568+00 f t Felipe CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13096 +10808 2025-11-12 17:20:18.552026+00 2025-11-12 17:20:18.552038+00 f t Felipe CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13096 +10809 2025-11-12 17:46:15.223165+00 2025-11-12 17:46:15.223178+00 f t Pendorcho DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13097 +10810 2025-11-12 18:10:22.874124+00 2025-11-12 18:10:22.874132+00 f t Micq DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13098 +10811 2025-11-12 18:12:08.731744+00 2025-11-12 18:12:08.731754+00 f t Mica DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13099 +10812 2025-11-12 18:30:38.997721+00 2025-11-12 18:30:38.997735+00 f t Ozzy DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13101 +10813 2025-11-12 19:06:31.346491+00 2025-11-12 19:06:31.3465+00 f t Yo le dijo bebe DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13102 +10814 2025-11-12 19:28:42.022551+00 2025-11-12 19:28:42.022559+00 f t Chela DOG \N 19.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13103 +10815 2025-11-12 19:29:23.254187+00 2025-11-12 19:29:23.254195+00 f t chester CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13104 +10816 2025-11-12 19:31:36.367689+00 2025-11-12 19:31:36.367697+00 f t ssssss CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13105 +10817 2025-11-12 20:02:08.064831+00 2025-11-12 20:02:08.064842+00 f t Mica DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13109 +10818 2025-11-12 20:34:41.720719+00 2025-11-12 20:34:41.720732+00 f t Anvorgueso CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13110 +10819 2025-11-12 20:36:12.094032+00 2025-11-12 20:36:12.09404+00 f t Chola CAT \N 5.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13110 +10820 2025-11-12 20:45:12.293534+00 2025-11-12 20:45:12.293546+00 f t India DOG \N 19.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13112 +10821 2025-11-12 20:45:36.487004+00 2025-11-12 20:45:36.487012+00 f t molly DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13111 +10822 2025-11-12 20:50:14.238953+00 2025-11-12 20:50:14.238962+00 f t Rodolfo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13113 +10823 2025-11-12 20:53:02.795663+00 2025-11-12 20:53:02.795673+00 f t molly DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13114 +10824 2025-11-12 20:54:14.975505+00 2025-11-12 20:54:14.975514+00 f t molly DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13114 +10825 2025-11-12 20:54:28.050878+00 2025-11-12 20:54:28.050886+00 f t molly DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13114 +10826 2025-11-12 20:55:43.900063+00 2025-11-12 20:55:43.900072+00 f t Juanito CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13115 +10827 2025-11-12 21:01:01.722972+00 2025-11-12 21:01:01.722985+00 f t Chuletas CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13118 +10828 2025-11-12 21:02:29.729102+00 2025-11-12 21:02:29.729111+00 f t Rodolfo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13117 +10829 2025-11-12 21:20:06.929044+00 2025-11-12 21:20:06.929057+00 f t Nuki DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13120 +10830 2025-11-12 21:32:31.971014+00 2025-11-12 21:32:31.971023+00 f t M8lo CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13122 +10831 2025-11-12 21:32:50.085272+00 2025-11-12 21:32:50.085281+00 f t Milo CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13122 +10832 2025-11-12 21:38:43.946028+00 2025-11-12 21:38:43.946036+00 f t vera CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13123 +10833 2025-11-12 21:42:04.335821+00 2025-11-12 21:42:04.33583+00 f t Aiko CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13124 +10834 2025-11-12 22:30:22.000126+00 2025-11-12 22:30:22.000136+00 f t Fernando DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13127 +10835 2025-11-12 23:19:31.772976+00 2025-11-12 23:19:31.772984+00 f t Wakanda CAT \N 46.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13129 +10836 2025-11-12 23:39:15.751201+00 2025-11-12 23:39:15.751209+00 f t Lola DOG \N 6.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13130 +10837 2025-11-13 00:09:38.750749+00 2025-11-13 00:09:38.750758+00 f t Júpiter CAT \N 520.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13131 +10838 2025-11-13 00:11:34.966782+00 2025-11-13 00:11:34.96679+00 f t Kombu DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13132 +10839 2025-11-13 00:12:05.196058+00 2025-11-13 00:12:05.196067+00 f t Kombu CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13132 +10840 2025-11-13 00:17:25.465571+00 2025-11-13 00:17:25.465584+00 f t Júpiter CAT \N 520.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13133 +10841 2025-11-13 00:49:34.884685+00 2025-11-13 00:49:34.884693+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13135 +10842 2025-11-13 00:55:04.161559+00 2025-11-13 00:55:04.161575+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13137 +10843 2025-11-13 00:56:28.630747+00 2025-11-13 00:56:28.630756+00 f t SAHYA DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13136 +10844 2025-11-13 01:03:01.288752+00 2025-11-13 01:03:01.288765+00 f t Abelito CAT \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13139 +10845 2025-11-13 02:29:44.482999+00 2025-11-13 02:29:44.483011+00 f t Zizou CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13141 +10846 2025-11-13 02:41:48.370672+00 2025-11-13 02:41:48.370682+00 f t Nino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13142 +10847 2025-11-13 03:03:22.002336+00 2025-11-13 03:03:22.002347+00 f t Piper DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13144 +10848 2025-11-13 03:16:56.116861+00 2025-11-13 03:16:56.116871+00 f t copito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13145 +10849 2025-11-13 04:20:45.944162+00 2025-11-13 04:20:45.944176+00 f t Milo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13146 +10850 2025-11-13 04:27:28.773843+00 2025-11-13 04:27:28.773854+00 f t Milo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13147 +10851 2025-11-13 07:37:02.275987+00 2025-11-13 07:37:02.275997+00 f t Minie DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13148 +10852 2025-11-13 08:43:19.242149+00 2025-11-13 08:43:19.242158+00 f t Nila CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13149 +10853 2025-11-13 10:00:28.379988+00 2025-11-13 10:00:28.379996+00 f t Bigotuda CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13152 +10854 2025-11-13 10:58:59.492113+00 2025-11-13 10:58:59.492123+00 f t Mia CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13153 +10855 2025-11-13 11:01:57.058497+00 2025-11-13 11:01:57.058511+00 f t Doron DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13154 +10856 2025-11-13 11:12:25.634366+00 2025-11-13 11:12:25.634374+00 f t Tobias DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13155 +10857 2025-11-13 11:51:42.196622+00 2025-11-13 11:51:42.196631+00 f t Mateo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13158 +10858 2025-11-13 12:36:11.308418+00 2025-11-13 12:36:11.308432+00 f t Oliver DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13161 +11825 2025-11-24 14:27:08.774315+00 2025-11-24 14:27:08.774328+00 f t Pulga CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14343 +10860 2025-11-13 13:25:37.027365+00 2025-11-13 13:25:37.027375+00 f t Thom DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13163 +10861 2025-11-13 13:27:14.176763+00 2025-11-13 13:27:14.176773+00 f t Cata DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13164 +9803 2025-10-29 17:13:34.733253+00 2025-10-29 17:13:34.733262+00 f t Mael DOG 14 35.00 0.00 t 2011-04-30 \N \N \N MALE \N t \N 1208 11855 +10862 2025-11-13 13:40:49.663066+00 2025-11-13 13:40:49.663075+00 f t Baron CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13165 +10864 2025-11-13 14:31:36.310058+00 2025-11-13 14:31:36.310066+00 f t Frida CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13169 +10863 2025-11-13 14:28:47.392326+00 2025-11-13 14:28:47.392334+00 f t Sasha DOG 0 40.00 0.00 f \N \N \N \N FEMALE \N f 58 1208 13168 +10865 2025-11-13 14:35:33.704431+00 2025-11-13 14:35:33.704439+00 f t Chimuelo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13171 +10866 2025-11-13 14:36:31.464716+00 2025-11-13 14:36:31.464724+00 f t Iris CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13171 +10867 2025-11-13 14:37:08.323491+00 2025-11-13 14:37:08.3235+00 f t Bebechi CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13172 +10868 2025-11-13 14:55:32.486415+00 2025-11-13 14:55:32.486425+00 f t India DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13173 +10869 2025-11-13 14:57:08.556515+00 2025-11-13 14:57:08.556524+00 f t Pacho DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13174 +10859 2025-11-13 13:15:25.507498+00 2025-11-13 13:15:25.50751+00 f t Billy CAT 0 4.00 0.00 t \N \N \N \N MALE \N f \N 1208 13162 +10870 2025-11-13 15:55:33.700957+00 2025-11-13 15:55:33.700966+00 f t Mily y luna CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13175 +10871 2025-11-13 16:11:44.913099+00 2025-11-13 16:11:44.913108+00 f t Salem DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13176 +10872 2025-11-13 16:15:49.830291+00 2025-11-13 16:15:49.8303+00 f t Trini DOG \N 17.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13177 +10873 2025-11-13 16:17:29.726736+00 2025-11-13 16:17:29.726749+00 f t Roberto CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13178 +10874 2025-11-13 16:37:38.664423+00 2025-11-13 16:37:38.664431+00 f t Gin DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13180 +10875 2025-11-13 16:38:53.766646+00 2025-11-13 16:38:53.766657+00 f t Teresita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13181 +10876 2025-11-13 16:52:23.787251+00 2025-11-13 16:52:23.78726+00 f t Dulce DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13182 +10877 2025-11-13 16:52:47.207567+00 2025-11-13 16:52:47.207576+00 f t Roberto CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13183 +10878 2025-11-13 16:53:55.795425+00 2025-11-13 16:53:55.795434+00 f t Benito DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13185 +10879 2025-11-13 17:03:13.507169+00 2025-11-13 17:03:13.507178+00 f t Severino CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13188 +10880 2025-11-13 17:33:09.52071+00 2025-11-13 17:33:09.52072+00 f t siames CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13191 +10881 2025-11-13 18:18:30.010801+00 2025-11-13 18:18:30.010814+00 f t Rafael DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13193 +10882 2025-11-13 18:25:28.315031+00 2025-11-13 18:25:28.31504+00 f t Kombu CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13194 +10883 2025-11-13 18:43:08.333229+00 2025-11-13 18:43:08.333242+00 f t Palta DOG \N 21.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13197 +10884 2025-11-13 18:44:15.973506+00 2025-11-13 18:44:15.973518+00 f t Olga CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13198 +10885 2025-11-13 19:24:09.360055+00 2025-11-13 19:24:09.360062+00 f t Oso DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13200 +10886 2025-11-13 19:52:23.403079+00 2025-11-13 19:52:23.403088+00 f t Apo DOG \N 1.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13202 +10887 2025-11-13 19:55:27.744237+00 2025-11-13 19:55:27.744245+00 f t Ringo DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13203 +10888 2025-11-13 19:57:16.244435+00 2025-11-13 19:57:16.244443+00 f t Ruffus DOG \N 29.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13203 +10889 2025-11-13 20:01:05.104327+00 2025-11-13 20:01:05.104341+00 f t Moana lazuli DOG \N 2.70 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13204 +2662 2025-06-20 17:48:28.709881+00 2025-06-20 17:48:28.709893+00 f t Preta Kitty CAT 0 4.00 0.00 f \N 2025-06-24 \N \N FEMALE \N f \N 1208 3054 +10890 2025-11-13 20:33:37.50846+00 2025-11-13 20:33:37.50847+00 f t Mona CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13205 +10891 2025-11-13 21:35:23.005607+00 2025-11-13 21:35:23.005616+00 f t Mora DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13206 +10892 2025-11-13 21:39:31.945797+00 2025-11-13 21:39:31.945805+00 f t Frida DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13207 +10893 2025-11-13 21:42:05.557312+00 2025-11-13 21:42:05.557324+00 f t Fernando José vera DOG \N 75.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13208 +10894 2025-11-13 22:07:54.684187+00 2025-11-13 22:07:54.6842+00 f t Mahia DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13209 +10895 2025-11-13 22:09:42.583625+00 2025-11-13 22:09:42.583637+00 f t Firulais DOG \N 24.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13209 +10896 2025-11-13 22:15:03.32356+00 2025-11-13 22:15:03.323574+00 f t Pau DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13210 +10897 2025-11-13 22:37:23.153102+00 2025-11-13 22:37:23.153111+00 f t Dolly CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13212 +10898 2025-11-13 22:45:29.263411+00 2025-11-13 22:45:29.263418+00 f t Polux CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13213 +10899 2025-11-13 22:48:07.080171+00 2025-11-13 22:48:07.08018+00 f t Plufi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13214 +10901 2025-11-13 22:48:54.235413+00 2025-11-13 22:48:54.235422+00 f t Plufi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13216 +10902 2025-11-13 23:09:45.953258+00 2025-11-13 23:09:45.953266+00 f t piri CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13218 +10903 2025-11-13 23:13:34.554536+00 2025-11-13 23:13:34.554545+00 f t Ragnar DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13221 +10904 2025-11-13 23:16:24.994851+00 2025-11-13 23:16:24.99486+00 f t Junior CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13222 +10905 2025-11-13 23:18:09.776953+00 2025-11-13 23:18:09.776965+00 f t Cookie DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13223 +10900 2025-11-13 22:48:14.964611+00 2025-11-13 22:48:14.96462+00 f t Jack DOG 12 15.00 0.00 t \N \N \N \N MALE \N f \N 114 13215 +10906 2025-11-13 23:32:16.943513+00 2025-11-13 23:32:16.943524+00 f t Firu DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13226 +10907 2025-11-13 23:32:44.519974+00 2025-11-13 23:32:44.519982+00 f t Cielo DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13227 +10908 2025-11-13 23:56:32.055388+00 2025-11-13 23:56:32.055397+00 f t Bazuka DOG \N 35.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13230 +10909 2025-11-14 00:10:58.173039+00 2025-11-14 00:10:58.173065+00 f t Menta CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13231 +10910 2025-11-14 00:12:10.698258+00 2025-11-14 00:12:10.698267+00 f t Pia DOG \N 80.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13232 +10911 2025-11-14 00:18:40.292727+00 2025-11-14 00:18:40.292735+00 f t León CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13233 +10912 2025-11-14 00:20:17.873757+00 2025-11-14 00:20:17.873768+00 f t León CAT \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13234 +10913 2025-11-14 00:23:13.631843+00 2025-11-14 00:23:13.631851+00 f t Lio DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13235 +10914 2025-11-14 00:31:19.165912+00 2025-11-14 00:31:19.165921+00 f t Lio DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13236 +10915 2025-11-14 00:49:39.261382+00 2025-11-14 00:49:39.26139+00 f t India DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13237 +10916 2025-11-14 00:56:16.083007+00 2025-11-14 00:56:16.083017+00 f t Fly CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13239 +10917 2025-11-14 01:01:43.815201+00 2025-11-14 01:01:43.81521+00 f t Frida DOG \N 24.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13241 +10918 2025-11-14 01:02:18.851289+00 2025-11-14 01:02:18.851301+00 f t Frida CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13242 +10919 2025-11-14 01:20:52.364445+00 2025-11-14 01:20:52.364454+00 f t Akira DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13246 +10921 2025-11-14 01:30:26.144367+00 2025-11-14 01:30:26.144375+00 f t Doiamantita CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13250 +10922 2025-11-14 01:38:17.898775+00 2025-11-14 01:38:17.898786+00 f t Diamantita DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13252 +10923 2025-11-14 01:48:04.942954+00 2025-11-14 01:48:04.942967+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13253 +10924 2025-11-14 01:55:20.883319+00 2025-11-14 01:55:20.883327+00 f t Lucy DOG \N 41.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13255 +10925 2025-11-14 02:04:25.383038+00 2025-11-14 02:04:25.383048+00 f t Negro DOG \N 22.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13256 +10926 2025-11-14 02:25:52.722653+00 2025-11-14 02:25:52.722662+00 f t Zaion CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13258 +10927 2025-11-14 02:30:25.014884+00 2025-11-14 02:30:25.014893+00 f t India DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13259 +10928 2025-11-14 02:31:43.105789+00 2025-11-14 02:31:43.1058+00 f t Sherlock CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13260 +10929 2025-11-14 03:21:45.577918+00 2025-11-14 03:21:45.577928+00 f t Pochi DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13262 +10930 2025-11-14 09:04:33.609677+00 2025-11-14 09:04:33.609685+00 f t Zoe CAT \N 5.20 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13265 +10931 2025-11-14 09:19:24.809821+00 2025-11-14 09:19:24.809831+00 f t Calica DOG \N 28.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13266 +10932 2025-11-14 10:12:53.707952+00 2025-11-14 10:12:53.707961+00 f t Sabina DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13267 +10933 2025-11-14 10:30:28.208107+00 2025-11-14 10:30:28.208118+00 f t Chimuelo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13268 +10934 2025-11-14 10:51:20.449911+00 2025-11-14 10:51:20.44992+00 f t Chuva CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13269 +10935 2025-11-14 10:57:36.505892+00 2025-11-14 10:57:36.505903+00 f t Alberto DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13270 +10936 2025-11-14 11:00:16.049493+00 2025-11-14 11:00:16.049507+00 f t Zero DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13271 +10937 2025-11-14 11:10:24.450383+00 2025-11-14 11:10:24.450392+00 f t Pino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13272 +10938 2025-11-14 11:15:09.292662+00 2025-11-14 11:15:09.292677+00 f t Frida DOG \N 24.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13273 +10939 2025-11-14 11:52:09.989709+00 2025-11-14 11:52:09.989718+00 f t Menta CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13277 +10940 2025-11-14 11:53:53.707318+00 2025-11-14 11:53:53.70733+00 f t Frankie CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13278 +10941 2025-11-14 12:01:16.1972+00 2025-11-14 12:01:16.197212+00 f t Uri CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13279 +10942 2025-11-14 12:21:34.115459+00 2025-11-14 12:21:34.115478+00 f t Oreo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13280 +10943 2025-11-14 12:22:20.088988+00 2025-11-14 12:22:20.088996+00 f t Layla DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13281 +10944 2025-11-14 12:27:50.984613+00 2025-11-14 12:27:50.984622+00 f t Inicio DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13282 +10945 2025-11-14 12:29:53.794613+00 2025-11-14 12:29:53.794622+00 f t Oso DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13283 +10946 2025-11-14 12:47:51.298443+00 2025-11-14 12:47:51.298453+00 f t Felix CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13285 +10947 2025-11-14 12:55:37.384466+00 2025-11-14 12:55:37.384474+00 f t Gato CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13286 +10948 2025-11-14 13:14:40.663029+00 2025-11-14 13:14:40.663037+00 f t Luna DOG \N 29.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13288 +10949 2025-11-14 13:15:27.557729+00 2025-11-14 13:15:27.55774+00 f t Luna DOG \N 29.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13288 +10950 2025-11-14 13:47:42.387696+00 2025-11-14 13:47:42.387704+00 f t Filomena DOG \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13290 +10951 2025-11-14 14:07:41.528255+00 2025-11-14 14:07:41.528265+00 f t Toquinho CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13291 +10952 2025-11-14 14:25:04.861238+00 2025-11-14 14:25:04.861252+00 f t Teo DOG \N 34.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13293 +10953 2025-11-14 14:57:59.836726+00 2025-11-14 14:57:59.836734+00 f t Dana CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13296 +10954 2025-11-14 15:02:21.670448+00 2025-11-14 15:02:21.670456+00 f t Khuma DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13297 +10955 2025-11-14 15:02:23.199067+00 2025-11-14 15:02:23.199079+00 f t catalina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13298 +10956 2025-11-14 15:10:05.72033+00 2025-11-14 15:10:05.720342+00 f t Leon DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13299 +10957 2025-11-14 15:12:34.109918+00 2025-11-14 15:12:34.10993+00 f t Burton DOG \N 17.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13300 +10958 2025-11-14 15:31:02.913968+00 2025-11-14 15:31:02.913978+00 f t ANDRES DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13303 +7504 2025-09-21 19:46:29.866948+00 2025-09-21 19:46:29.866957+00 f t Leif CAT 0 6.50 0.00 t \N \N \N \N MALE Temperamental \N f \N 1583 8397 +10959 2025-11-14 16:34:15.669769+00 2025-11-14 16:34:15.669779+00 f t Suki DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13305 +10960 2025-11-14 17:16:57.527035+00 2025-11-14 17:16:57.527043+00 f t Benke CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13306 +10961 2025-11-14 17:27:05.690696+00 2025-11-14 17:27:05.690707+00 f t Gipsy DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13307 +10962 2025-11-14 17:32:33.642508+00 2025-11-14 17:32:33.642516+00 f t Morcilla DOG \N 9.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13308 +10963 2025-11-14 17:39:31.336995+00 2025-11-14 17:39:31.337007+00 f t Alaia DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13309 +10964 2025-11-14 17:40:45.253558+00 2025-11-14 17:40:45.253572+00 f t Alaia DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13310 +10965 2025-11-14 17:43:37.1054+00 2025-11-14 17:43:37.105409+00 f t Ndnjdjd DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13311 +10966 2025-11-14 18:02:40.571684+00 2025-11-14 18:02:40.571693+00 f t Bartolo DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13314 +10967 2025-11-14 18:06:25.856653+00 2025-11-14 18:06:25.856665+00 f t Sofi DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13315 +10968 2025-11-14 18:12:23.51457+00 2025-11-14 18:12:23.514578+00 f t Simon DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13316 +10969 2025-11-14 18:13:34.274004+00 2025-11-14 18:13:34.274015+00 f t John CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13317 +10970 2025-11-14 18:29:48.605012+00 2025-11-14 18:29:48.60502+00 f t Cleo CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13319 +10971 2025-11-14 18:42:28.161229+00 2025-11-14 18:42:28.161238+00 f t Vita CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13320 +10972 2025-11-14 20:44:00.294982+00 2025-11-14 20:44:00.294991+00 f t Canela DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13322 +10973 2025-11-14 20:56:54.641424+00 2025-11-14 20:56:54.641435+00 f t Juana CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13323 +10974 2025-11-14 21:29:31.950074+00 2025-11-14 21:29:31.950083+00 f t Niza CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13325 +10975 2025-11-14 21:29:38.073166+00 2025-11-14 21:29:38.073174+00 f t Kimba DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13324 +10976 2025-11-14 21:59:04.343217+00 2025-11-14 21:59:04.343225+00 f t Brandy DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13327 +10977 2025-11-14 22:00:28.671987+00 2025-11-14 22:00:28.672+00 f t Stich CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13328 +10978 2025-11-14 22:04:03.98568+00 2025-11-14 22:04:03.985693+00 f t sai CAT \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13329 +10979 2025-11-14 22:06:36.610357+00 2025-11-14 22:06:36.610366+00 f t Shiruki CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13330 +10980 2025-11-14 22:13:30.476954+00 2025-11-14 22:13:30.476965+00 f t Stich CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13331 +10981 2025-11-14 22:16:12.413268+00 2025-11-14 22:16:12.413281+00 f t Catalina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13332 +10982 2025-11-14 22:17:55.998881+00 2025-11-14 22:17:55.998889+00 f t Tommy CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13332 +10983 2025-11-14 22:24:51.542702+00 2025-11-14 22:24:51.542711+00 f t Felix DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13334 +10984 2025-11-14 22:26:17.767754+00 2025-11-14 22:26:17.767763+00 f t Kaly CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13335 +10985 2025-11-14 22:33:42.459379+00 2025-11-14 22:33:42.459388+00 f t Perla CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13336 +10986 2025-11-14 22:59:09.04554+00 2025-11-14 22:59:09.045549+00 f t Benito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13337 +10987 2025-11-14 23:19:51.522334+00 2025-11-14 23:19:51.522344+00 f t Tango DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13338 +10988 2025-11-14 23:21:53.692559+00 2025-11-14 23:21:53.692568+00 f t Ciro CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13339 +10989 2025-11-14 23:52:37.72612+00 2025-11-14 23:52:37.726131+00 f t Lily DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13340 +10990 2025-11-14 23:52:59.934942+00 2025-11-14 23:52:59.934951+00 f t berrinche DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13341 +10991 2025-11-15 00:08:45.467889+00 2025-11-15 00:08:45.467898+00 f t Filou DOG \N 24.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13343 +10992 2025-11-15 00:11:33.615545+00 2025-11-15 00:11:33.615553+00 f t Simon DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13344 +10993 2025-11-15 00:12:37.23146+00 2025-11-15 00:12:37.231468+00 f t Mclocing CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13345 +10994 2025-11-15 00:13:45.224687+00 2025-11-15 00:13:45.224695+00 f t Mcloving DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13346 +10995 2025-11-15 00:14:36.906659+00 2025-11-15 00:14:36.906668+00 f t Negrito CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13347 +10996 2025-11-15 00:16:52.226278+00 2025-11-15 00:16:52.226287+00 f t Mcloving CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13346 +10997 2025-11-15 00:55:38.522499+00 2025-11-15 00:55:38.522512+00 f t luka CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13350 +10998 2025-11-15 00:57:00.633884+00 2025-11-15 00:57:00.633897+00 f t cami CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13350 +10999 2025-11-15 01:41:52.522176+00 2025-11-15 01:41:52.522187+00 f t Simon CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13351 +11000 2025-11-15 01:42:56.972461+00 2025-11-15 01:42:56.97247+00 f t Akumi DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13351 +11001 2025-11-15 01:43:19.936175+00 2025-11-15 01:43:19.936185+00 f t Lucky DOG \N 23.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13352 +11002 2025-11-15 02:24:12.340131+00 2025-11-15 02:24:12.34014+00 f t Pelusa CAT \N 1.30 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13354 +11003 2025-11-15 03:16:04.094179+00 2025-11-15 03:16:04.094197+00 f t Kumi CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13355 +11004 2025-11-15 03:42:32.772124+00 2025-11-15 03:42:32.772134+00 f t Pepo DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13356 +11005 2025-11-15 03:47:12.66359+00 2025-11-15 03:47:12.663601+00 f t Crefy CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13358 +11006 2025-11-15 03:47:35.448005+00 2025-11-15 03:47:35.448014+00 f t Otto DOG \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13357 +11007 2025-11-15 04:06:58.052435+00 2025-11-15 04:06:58.052445+00 f t Milo DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13359 +11008 2025-11-15 04:27:38.170681+00 2025-11-15 04:27:38.17069+00 f t Stich CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13360 +11009 2025-11-15 06:04:43.881599+00 2025-11-15 06:04:43.881609+00 f t Dino DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13363 +11010 2025-11-15 08:17:01.971931+00 2025-11-15 08:17:01.971946+00 f t Florencio Varela CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13365 +11011 2025-11-15 11:14:27.024683+00 2025-11-15 11:14:27.024692+00 f t Birulito CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13367 +11012 2025-11-15 11:16:20.662101+00 2025-11-15 11:16:20.662111+00 f t Pastelita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13367 +11013 2025-11-15 11:29:48.935892+00 2025-11-15 11:29:48.935905+00 f t Manchita CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13370 +11014 2025-11-15 11:54:47.721011+00 2025-11-15 11:54:47.72102+00 f t Maddock CAT \N 6.40 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13371 +11015 2025-11-15 12:10:22.174055+00 2025-11-15 12:10:22.174063+00 f t Leoncito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13372 +11016 2025-11-15 12:22:29.694152+00 2025-11-15 12:22:29.694161+00 f t Leoncito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13373 +11017 2025-11-15 12:51:42.536593+00 2025-11-15 12:51:42.536604+00 f t Chicho CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13374 +11018 2025-11-15 12:54:28.333511+00 2025-11-15 12:54:28.33352+00 f t Nati CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13375 +11019 2025-11-15 13:28:47.453018+00 2025-11-15 13:28:47.45303+00 f t Happy DOG \N 9.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13377 +11020 2025-11-15 13:39:27.638+00 2025-11-15 13:39:27.638008+00 f t Maya DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13379 +11021 2025-11-15 13:41:31.328594+00 2025-11-15 13:41:31.328603+00 f t Tito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13380 +11022 2025-11-15 14:21:53.521624+00 2025-11-15 14:21:53.521633+00 f t Luna DOG \N 42.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13381 +11023 2025-11-15 14:44:50.769108+00 2025-11-15 14:44:50.769117+00 f t Ceniza CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13384 +11024 2025-11-15 14:46:32.104825+00 2025-11-15 14:46:32.104834+00 f t Noche DOG \N 21.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13385 +11025 2025-11-15 14:52:39.928385+00 2025-11-15 14:52:39.928393+00 f t Vampiro CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13387 +11026 2025-11-15 14:57:19.338775+00 2025-11-15 14:57:19.338785+00 f t FIGARA DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13388 +11027 2025-11-15 15:05:46.509561+00 2025-11-15 15:05:46.509574+00 f t Negro DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13389 +11028 2025-11-15 15:57:10.567241+00 2025-11-15 15:57:10.577251+00 f t Guachin CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13393 +11029 2025-11-15 16:09:06.349141+00 2025-11-15 16:09:06.349718+00 f t Guachin CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13394 +11030 2025-11-15 16:17:21.52929+00 2025-11-15 16:17:21.529317+00 f t Panda DOG \N 0.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13395 +11031 2025-11-15 16:19:20.812735+00 2025-11-15 16:19:20.81275+00 f t Coco DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13396 +11032 2025-11-15 16:46:31.752855+00 2025-11-15 16:46:31.75287+00 f t Blackie CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13397 +11033 2025-11-15 17:12:16.65158+00 2025-11-15 17:12:16.651592+00 f t Marta CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13398 +11034 2025-11-15 17:25:19.382055+00 2025-11-15 17:25:19.382067+00 f t Guachin CAT \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13399 +11035 2025-11-15 17:54:05.136274+00 2025-11-15 17:54:05.136549+00 f t Lupita DOG \N 35.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13400 +11036 2025-11-15 18:00:52.084705+00 2025-11-15 18:00:52.084714+00 f t Tyson DOG \N 55.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13401 +11037 2025-11-15 18:14:14.019869+00 2025-11-15 18:14:14.019881+00 f t Figara CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13402 +11038 2025-11-15 18:37:02.947941+00 2025-11-15 18:37:02.94795+00 f t Wasabi CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13407 +11039 2025-11-15 19:10:48.340683+00 2025-11-15 19:10:48.340693+00 f t Orion CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13408 +11040 2025-11-15 19:32:32.454169+00 2025-11-15 19:32:32.454179+00 f t Mora DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13410 +11041 2025-11-15 19:46:09.867077+00 2025-11-15 19:46:09.867089+00 f t Mila CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13411 +11042 2025-11-15 20:10:28.458405+00 2025-11-15 20:10:28.458414+00 f t Lola DOG \N 26.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13412 +11043 2025-11-15 21:48:11.991789+00 2025-11-15 21:48:11.991798+00 f t Tuno CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13417 +11044 2025-11-15 21:48:51.7769+00 2025-11-15 21:48:51.776909+00 f t Krupa CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13417 +11045 2025-11-16 00:17:05.865835+00 2025-11-16 00:17:05.865845+00 f t cani DOG \N 4.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13419 +11046 2025-11-16 01:26:01.844135+00 2025-11-16 01:26:01.844145+00 f t Tomilla DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13420 +11047 2025-11-16 01:54:14.190764+00 2025-11-16 01:54:14.190778+00 f t Coco CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13421 +11048 2025-11-16 02:23:35.278732+00 2025-11-16 02:23:35.278744+00 f t tomate CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13422 +11049 2025-11-16 05:03:44.107676+00 2025-11-16 05:03:44.107689+00 f t Gina DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13424 +11050 2025-11-16 12:13:21.045735+00 2025-11-16 12:13:21.045745+00 f t Misi CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13427 +10350 2025-11-06 16:11:58.107744+00 2025-11-06 16:11:58.107752+00 f t Estrella DOG 0 6.00 0.00 f \N \N \N \N FEMALE \N t \N 113 12527 +11051 2025-11-16 12:42:38.608759+00 2025-11-16 12:42:38.608768+00 f t Robotico DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13428 +11052 2025-11-16 13:20:31.500887+00 2025-11-16 13:20:31.500896+00 f t Tiri DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13429 +11053 2025-11-16 13:47:51.307578+00 2025-11-16 13:47:51.307589+00 f t Brian DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 6770 +11054 2025-11-16 13:52:57.007267+00 2025-11-16 13:52:57.007281+00 f t Salem CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13431 +11055 2025-11-16 13:55:54.416609+00 2025-11-16 13:55:54.416622+00 f t Salem CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13433 +11056 2025-11-16 14:06:13.650536+00 2025-11-16 14:06:13.650546+00 f t India DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13434 +11057 2025-11-16 14:13:56.242639+00 2025-11-16 14:13:56.242654+00 f t Nelson CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13435 +11058 2025-11-16 14:19:38.412742+00 2025-11-16 14:19:38.412749+00 f t Mizu DOG 15 16.00 0.00 t \N \N \N \N MALE Medicación crónica: enalapril, amlodipina, glóbulos de árnica y algen\r\nÚltimos días jarabe\r\nSucralfato\r\nEs posible que se ponga un poco a la defensiva.\r\ntoma todos los días Levotiroxina. \N f \N 114 13436 +11059 2025-11-16 14:22:33.558706+00 2025-11-16 14:22:33.558718+00 f t Nelson CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13437 +11060 2025-11-16 14:25:19.593998+00 2025-11-16 14:25:19.594007+00 f t Cloe CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13438 +11061 2025-11-16 15:02:22.462664+00 2025-11-16 15:02:22.462678+00 f t Cloe CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13442 +11062 2025-11-16 15:50:15.873391+00 2025-11-16 15:50:15.873399+00 f t Marga DOG \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13443 +11063 2025-11-16 16:26:58.15142+00 2025-11-16 16:26:58.151431+00 f t Ronnie CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13444 +11064 2025-11-16 16:36:28.409804+00 2025-11-16 16:36:28.409814+00 f t Zafir CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13445 +11065 2025-11-16 17:20:29.01259+00 2025-11-16 17:20:29.012603+00 f t Donatella gomez DOG \N 11.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13446 +11066 2025-11-16 17:42:19.204331+00 2025-11-16 17:42:19.20434+00 f t Fito CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13447 +11067 2025-11-16 18:09:21.158639+00 2025-11-16 18:09:21.158651+00 f t Kike DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13449 +11068 2025-11-16 18:09:57.664811+00 2025-11-16 18:09:57.664821+00 f t Kike CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13449 +11069 2025-11-16 18:11:11.210027+00 2025-11-16 18:11:11.210035+00 f t Milo CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13449 +11070 2025-11-16 18:11:51.611909+00 2025-11-16 18:11:51.611921+00 f t Bono CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13449 +11071 2025-11-16 18:48:50.700979+00 2025-11-16 18:48:50.700987+00 f t Emma CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13450 +11072 2025-11-16 19:12:08.673404+00 2025-11-16 19:12:08.673415+00 f t Perro DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13451 +11073 2025-11-16 19:39:34.948506+00 2025-11-16 19:39:34.948516+00 f t Marco DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13452 +11074 2025-11-16 19:41:01.817833+00 2025-11-16 19:41:01.817842+00 f t Vito DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13452 +11075 2025-11-16 19:41:57.193966+00 2025-11-16 19:41:57.193976+00 f t Ozzy CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13453 +11076 2025-11-16 20:08:32.146226+00 2025-11-16 20:08:32.146237+00 f t Antonio CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13455 +11077 2025-11-16 20:15:50.793663+00 2025-11-16 20:15:50.793673+00 f t Juniper CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13456 +11078 2025-11-16 20:17:51.419169+00 2025-11-16 20:17:51.41918+00 f t Juniper Sage Cole CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13456 +11079 2025-11-16 20:18:00.673565+00 2025-11-16 20:18:00.673574+00 f t Juniper Sage Cole CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13456 +11826 2025-11-24 14:30:24.115388+00 2025-11-24 14:30:24.115401+00 f t FRIDA CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14344 +11081 2025-11-16 20:22:01.973706+00 2025-11-16 20:22:01.973714+00 f t Liesel Sage Cole CAT 4 4.00 0.00 f \N \N \N \N FEMALE \N f \N 114 13457 +11082 2025-11-16 20:22:36.850635+00 2025-11-16 20:22:36.850642+00 f t Lorelei Laith Cole CAT 3 4.00 0.00 f \N \N \N \N FEMALE \N f \N 114 13457 +11083 2025-11-16 20:23:00.677127+00 2025-11-16 20:23:00.677134+00 f t Locke Kingsley Cole CAT 2 4.00 0.00 f \N \N \N \N MALE \N f \N 114 13457 +11084 2025-11-16 22:15:24.178285+00 2025-11-16 22:15:24.178294+00 f t Palita CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13458 +11085 2025-11-16 23:47:48.536903+00 2025-11-16 23:47:48.536913+00 f t Brócoli DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13459 +11086 2025-11-17 00:15:44.421305+00 2025-11-17 00:15:44.421317+00 f t Chiru CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13460 +11087 2025-11-17 00:38:06.407027+00 2025-11-17 00:38:06.407036+00 f t Luz DOG \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13461 +11088 2025-11-17 00:38:40.181261+00 2025-11-17 00:38:40.18127+00 f t Luz CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13461 +11089 2025-11-17 00:49:22.911791+00 2025-11-17 00:49:22.9118+00 f t John CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13462 +11090 2025-11-17 00:50:46.903984+00 2025-11-17 00:50:46.903997+00 f t Paco CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13463 +11091 2025-11-17 01:06:23.720524+00 2025-11-17 01:06:23.720532+00 f t Grey CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13464 +11092 2025-11-17 01:08:01.305185+00 2025-11-17 01:08:01.305195+00 f t Blue CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13464 +11093 2025-11-17 01:44:09.819784+00 2025-11-17 01:44:09.819797+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13465 +11094 2025-11-17 01:51:40.111339+00 2025-11-17 01:51:40.111349+00 f t Athod DOG \N 14.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13466 +11095 2025-11-17 02:19:05.873872+00 2025-11-17 02:19:05.873885+00 f t Chopp DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13468 +11096 2025-11-17 02:33:37.138652+00 2025-11-17 02:33:37.138663+00 f t Carlos Alberto CAT \N 1.20 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13469 +11097 2025-11-17 02:59:41.489137+00 2025-11-17 02:59:41.489148+00 f t Wiscky CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13470 +11098 2025-11-17 03:02:24.437388+00 2025-11-17 03:02:24.437402+00 f t Frida CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13471 +11099 2025-11-17 03:05:35.898266+00 2025-11-17 03:05:35.898275+00 f t Archie CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13472 +11100 2025-11-17 05:56:11.224619+00 2025-11-17 05:56:11.224629+00 f t Plaga DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13473 +11101 2025-11-17 05:56:29.154722+00 2025-11-17 05:56:29.154733+00 f t Plaga CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13473 +11102 2025-11-17 05:57:19.656427+00 2025-11-17 05:57:19.656439+00 f t Lux CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13473 +11103 2025-11-17 05:57:40.270532+00 2025-11-17 05:57:40.270541+00 f t Samira CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13473 +11104 2025-11-17 05:58:30.822991+00 2025-11-17 05:58:30.823+00 f t Titan DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13473 +11105 2025-11-17 06:23:47.305518+00 2025-11-17 06:23:47.305528+00 f t Juana DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13476 +11106 2025-11-17 07:52:16.788761+00 2025-11-17 07:52:16.788775+00 f t Onix CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13477 +11107 2025-11-17 10:23:59.964326+00 2025-11-17 10:23:59.964335+00 f t Moria DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13478 +11108 2025-11-17 10:24:55.065064+00 2025-11-17 10:24:55.065075+00 f t Moria CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13478 +11109 2025-11-17 11:00:45.506785+00 2025-11-17 11:00:45.506798+00 f t Dohko CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13479 +11110 2025-11-17 12:32:15.673466+00 2025-11-17 12:32:15.673474+00 f t Anita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13480 +11111 2025-11-17 12:32:36.227363+00 2025-11-17 12:32:36.227371+00 f t Toddy DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13481 +11112 2025-11-17 12:33:02.599168+00 2025-11-17 12:33:02.599177+00 f t Toddy CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13481 +11113 2025-11-17 12:39:05.619452+00 2025-11-17 12:39:05.619461+00 f t Kuki DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13482 +11114 2025-11-17 12:39:16.262258+00 2025-11-17 12:39:16.262266+00 f t Simba DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13483 +11115 2025-11-17 12:44:27.025278+00 2025-11-17 12:44:27.02529+00 f t Blacky CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13484 +11116 2025-11-17 12:45:36.057681+00 2025-11-17 12:45:36.057693+00 f t Sherlock CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13485 +11117 2025-11-17 12:46:14.846533+00 2025-11-17 12:46:14.846542+00 f t Negra DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13484 +11118 2025-11-17 12:53:19.960394+00 2025-11-17 12:53:19.960402+00 f t Micha CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13486 +11119 2025-11-17 12:55:06.684724+00 2025-11-17 12:55:06.684739+00 f t Leclerc CAT \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13487 +11120 2025-11-17 12:57:29.197699+00 2025-11-17 12:57:29.197712+00 f t Leclerc CAT \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13488 +11122 2025-11-17 13:13:32.514821+00 2025-11-17 13:13:32.514833+00 f t Amazona CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13492 +11126 2025-11-17 14:38:36.859809+00 2025-11-17 14:38:36.859818+00 f t Belona DOG \N 37.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13496 +11123 2025-11-17 14:14:24.432075+00 2025-11-17 14:14:24.432084+00 f t ALEX DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13493 +11124 2025-11-17 14:15:34.070723+00 2025-11-17 14:15:34.070736+00 f t ANDRES DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13493 +11125 2025-11-17 14:31:49.698068+00 2025-11-17 14:31:49.698077+00 f t Michu CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13494 +11121 2025-11-17 13:03:59.841736+00 2025-11-17 13:03:59.841746+00 f t Micha CAT \N 7.00 0.00 t \N 2012-01-12 \N \N \N FEMALE Gatita poco sociable, esta sobre peso pero debe ser por que no ha sido nnca vacunada ni esterilizada, camina con lentitud. \N f \N \N 13490 +11127 2025-11-17 14:59:30.431294+00 2025-11-17 14:59:30.431305+00 f t Freddy CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13497 +11128 2025-11-17 15:09:31.230214+00 2025-11-17 15:09:31.230225+00 f t Mica DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13498 +11129 2025-11-17 15:14:40.264608+00 2025-11-17 15:14:40.264616+00 f t Nilo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13499 +11130 2025-11-17 15:14:56.815455+00 2025-11-17 15:14:56.815463+00 f t Dakota CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13500 +11131 2025-11-17 15:16:40.12837+00 2025-11-17 15:16:40.12838+00 f t Ramona CAT \N 4.90 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13499 +11132 2025-11-17 15:25:34.506729+00 2025-11-17 15:25:34.506738+00 f t Ozzy CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13502 +11133 2025-11-17 15:54:59.32174+00 2025-11-17 15:54:59.321749+00 f t Gektor CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13503 +11134 2025-11-17 16:03:22.540091+00 2025-11-17 16:03:22.540103+00 f t indy CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13504 +11135 2025-11-17 16:23:32.579751+00 2025-11-17 16:23:32.57976+00 f t Chipa CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13507 +11136 2025-11-17 16:50:44.581908+00 2025-11-17 16:50:44.581921+00 f t El Pantera CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13508 +11137 2025-11-17 16:51:46.194654+00 2025-11-17 16:51:46.194663+00 f t Tommy DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13509 +11138 2025-11-17 16:57:14.303666+00 2025-11-17 16:57:14.303678+00 f t Eros CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13511 +11139 2025-11-17 16:58:19.045458+00 2025-11-17 16:58:19.045468+00 f t Napoleón Barban CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13512 +11140 2025-11-17 16:59:22.640715+00 2025-11-17 16:59:22.640723+00 f t Branquinho CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13513 +11141 2025-11-17 17:02:33.327289+00 2025-11-17 17:02:33.327301+00 f t Branquinho CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13514 +11142 2025-11-17 17:08:37.559974+00 2025-11-17 17:08:37.559983+00 f t Sara DOG \N 60.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13517 +11143 2025-11-17 17:10:26.644153+00 2025-11-17 17:10:26.644165+00 f t Nina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13518 +11144 2025-11-17 17:18:31.333084+00 2025-11-17 17:18:31.333096+00 f t Shiryu CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13519 +11145 2025-11-17 17:34:24.201896+00 2025-11-17 17:34:24.201904+00 f t Saturno CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13521 +11146 2025-11-17 17:38:22.829325+00 2025-11-17 17:38:22.829333+00 f t Miel DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13522 +11147 2025-11-17 17:41:52.926143+00 2025-11-17 17:41:52.926151+00 f t Afrodita y maximus CAT \N 600.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13523 +10920 2025-11-14 01:28:26.367858+00 2025-11-14 01:28:26.367869+00 f t Luna CAT 0 5.00 0.00 f 2013-01-01 \N \N \N FEMALE \N f 27 121 13248 +11148 2025-11-17 18:24:52.655399+00 2025-11-17 18:24:52.655407+00 f t Basti CAT \N 5.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 12696 +11149 2025-11-17 18:34:28.523615+00 2025-11-17 18:34:28.523627+00 f t Gabriela Ibañez CAT \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13524 +11150 2025-11-17 18:39:01.767179+00 2025-11-17 18:39:01.767759+00 f t Chicha CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13525 +11151 2025-11-17 18:40:38.936167+00 2025-11-17 18:40:38.936179+00 f t Bul CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13527 +11152 2025-11-17 18:40:59.208423+00 2025-11-17 18:40:59.208432+00 f t Nicole CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13526 +11153 2025-11-17 18:55:18.609482+00 2025-11-17 18:55:18.609493+00 f t Gala DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13528 +11154 2025-11-17 19:10:18.046009+00 2025-11-17 19:10:18.04602+00 f t Silvio CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13530 +11155 2025-11-17 19:15:26.937677+00 2025-11-17 19:15:26.937685+00 f t Tomy CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13531 +11156 2025-11-17 19:23:29.341679+00 2025-11-17 19:23:29.341687+00 f t Queni CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13532 +11157 2025-11-17 19:25:47.620802+00 2025-11-17 19:25:47.620811+00 f t Micha CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13533 +11158 2025-11-17 19:37:22.601024+00 2025-11-17 19:37:22.601033+00 f t Paco DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13534 +11159 2025-11-17 19:51:48.214324+00 2025-11-17 19:51:48.214332+00 f t Ari CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13535 +11160 2025-11-17 19:57:49.844507+00 2025-11-17 19:57:49.844516+00 f t Mono CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13536 +11161 2025-11-17 19:59:42.679994+00 2025-11-17 19:59:42.680003+00 f t Coky DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13537 +11162 2025-11-17 20:06:44.783362+00 2025-11-17 20:06:44.783372+00 f t Bambu CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13539 +11163 2025-11-17 20:11:23.722214+00 2025-11-17 20:11:23.722223+00 f t Lolo CAT \N 59.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13540 +11164 2025-11-17 20:33:24.702046+00 2025-11-17 20:33:24.702054+00 f t Gala DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13541 +11165 2025-11-17 20:40:36.84967+00 2025-11-17 20:40:36.849683+00 f t Kitty CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13542 +11167 2025-11-17 21:13:17.308883+00 2025-11-17 21:13:17.308897+00 f t Feli DOG \N 55.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13545 +11170 2025-11-17 21:36:39.495553+00 2025-11-17 21:36:39.495562+00 f t Pandora CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13551 +11171 2025-11-17 21:38:15.69485+00 2025-11-17 21:38:15.694859+00 f t Manshula CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13551 +11166 2025-11-17 21:09:31.268217+00 2025-11-17 21:09:31.268226+00 f t Apolo CAT \N 8.00 0.00 t \N 2021-06-01 \N \N \N MALE \N \N f \N \N 13544 +11172 2025-11-17 21:39:18.412862+00 2025-11-17 21:39:18.412872+00 f t Nix CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13551 +11169 2025-11-17 21:23:57.637532+00 2025-11-17 21:23:57.637544+00 f t India CAT \N 4.00 0.00 t \N 2017-03-01 \N \N \N FEMALE \N \N f \N \N 13544 +11168 2025-11-17 21:18:17.254387+00 2025-11-17 21:18:17.254397+00 f t Pandora CAT \N 5.00 0.00 t \N 2018-01-17 \N \N \N FEMALE \N \N f \N \N 13544 +11173 2025-11-17 21:48:03.87931+00 2025-11-17 21:48:03.879319+00 f t Alfa DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13552 +11174 2025-11-17 22:03:55.27976+00 2025-11-17 22:03:55.27977+00 f t Mila CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13553 +11175 2025-11-17 22:15:52.414122+00 2025-11-17 22:15:52.41413+00 f t Dc CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13554 +11176 2025-11-17 22:21:42.54559+00 2025-11-17 22:21:42.545599+00 f t Osiris CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13555 +11177 2025-11-17 22:31:17.046433+00 2025-11-17 22:31:17.046441+00 f t Mía DOG \N 29.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13557 +11178 2025-11-17 22:39:38.044557+00 2025-11-17 22:39:38.044566+00 f t Blondi CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13560 +11179 2025-11-17 22:39:44.043267+00 2025-11-17 22:39:44.043277+00 f t camilo DOG \N 56.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13561 +11180 2025-11-17 22:40:26.723524+00 2025-11-17 22:40:26.723536+00 f t Simón CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13562 +11181 2025-11-17 22:41:27.011539+00 2025-11-17 22:41:27.011548+00 f t Tucho DOG \N 50.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13562 +11182 2025-11-17 22:46:24.369672+00 2025-11-17 22:46:24.369681+00 f t Ramiro DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13563 +11183 2025-11-17 22:47:30.583448+00 2025-11-17 22:47:30.583457+00 f t Mar Casanova CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13564 +11184 2025-11-17 23:12:31.641847+00 2025-11-17 23:12:31.641857+00 f t Evo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13565 +11185 2025-11-17 23:13:12.889585+00 2025-11-17 23:13:12.889596+00 f t Batman CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13565 +11186 2025-11-17 23:19:18.605858+00 2025-11-17 23:19:18.605867+00 f t P CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13566 +11187 2025-11-17 23:35:13.290314+00 2025-11-17 23:35:13.290327+00 f t Zarki DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13567 +11188 2025-11-17 23:45:56.338737+00 2025-11-17 23:45:56.338747+00 f t Pomelo DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13570 +11189 2025-11-17 23:53:44.492502+00 2025-11-17 23:53:44.492515+00 f t Limom DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13572 +11190 2025-11-17 23:55:43.46414+00 2025-11-17 23:55:43.464152+00 f t Marta CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13571 +11191 2025-11-18 00:04:10.548331+00 2025-11-18 00:04:10.54834+00 f t Hope Garcia DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13573 +11192 2025-11-18 00:14:42.465714+00 2025-11-18 00:14:42.465722+00 f t michi CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13574 +11193 2025-11-18 00:17:19.453699+00 2025-11-18 00:17:19.453708+00 f t Pancho DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13575 +11194 2025-11-18 00:20:56.474705+00 2025-11-18 00:20:56.474714+00 f t Moca DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13577 +11195 2025-11-18 00:35:03.24862+00 2025-11-18 00:35:03.248634+00 f t Aru CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13578 +11196 2025-11-18 00:36:06.459192+00 2025-11-18 00:36:06.459205+00 f t Vaquita DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13579 +11197 2025-11-18 01:07:07.434849+00 2025-11-18 01:07:07.434858+00 f t Juana CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13580 +11198 2025-11-18 01:09:00.425037+00 2025-11-18 01:09:00.425045+00 f t Shadow DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13581 +11199 2025-11-18 01:09:32.681904+00 2025-11-18 01:09:32.681912+00 f t Shadow CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13581 +11200 2025-11-18 01:10:06.590522+00 2025-11-18 01:10:06.590531+00 f t Bocha CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13580 +11201 2025-11-18 01:13:38.773807+00 2025-11-18 01:13:38.773816+00 f t Arya CAT \N 300.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13582 +11202 2025-11-18 01:15:16.782109+00 2025-11-18 01:15:16.782117+00 f t Horus CAT \N 300.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13582 +11203 2025-11-18 01:18:36.549555+00 2025-11-18 01:18:36.549563+00 f t Indio DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13584 +11204 2025-11-18 01:23:20.202008+00 2025-11-18 01:23:20.202021+00 f t Indio DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13585 +11205 2025-11-18 02:10:05.786635+00 2025-11-18 02:10:05.786653+00 f t Alaska DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13587 +11206 2025-11-18 02:10:24.576266+00 2025-11-18 02:10:24.576278+00 f t Alaska CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13587 +11207 2025-11-18 02:16:44.455323+00 2025-11-18 02:16:44.455336+00 f t Lenny DOG \N 33.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13588 +11208 2025-11-18 02:58:28.425127+00 2025-11-18 02:58:28.425136+00 f t Geralt CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13589 +11209 2025-11-18 02:59:20.179496+00 2025-11-18 02:59:20.179506+00 f t Amelia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13589 +11210 2025-11-18 03:20:38.306976+00 2025-11-18 03:20:38.306989+00 f t Pocho DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13591 +11211 2025-11-18 04:01:00.129316+00 2025-11-18 04:01:00.129327+00 f t Maripi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13592 +11212 2025-11-18 04:03:07.931691+00 2025-11-18 04:03:07.931704+00 f t Maripi CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13593 +11213 2025-11-18 04:10:04.378048+00 2025-11-18 04:10:04.378062+00 f t India CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13595 +11214 2025-11-18 04:18:08.755757+00 2025-11-18 04:18:08.755767+00 f t Spursito CAT \N 0.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13596 +11215 2025-11-18 05:30:15.805559+00 2025-11-18 05:30:15.805568+00 f t Junior DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13597 +11216 2025-11-18 06:05:29.986487+00 2025-11-18 06:05:29.986495+00 f t China DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13598 +11217 2025-11-18 06:14:31.533979+00 2025-11-18 06:14:31.533987+00 f t Michi CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13599 +11218 2025-11-18 07:13:53.876161+00 2025-11-18 07:13:53.876169+00 f t Manolo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13601 +11219 2025-11-18 09:44:02.517962+00 2025-11-18 09:44:02.517972+00 f t Hiro DOG \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13603 +11220 2025-11-18 09:50:04.085487+00 2025-11-18 09:50:04.0855+00 f t Loba DOG \N 37.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13604 +11221 2025-11-18 09:51:21.676144+00 2025-11-18 09:51:21.676153+00 f t Loba DOG \N 38.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13605 +11222 2025-11-18 09:54:46.393917+00 2025-11-18 09:54:46.393925+00 f t Riff CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13606 +11223 2025-11-18 09:57:54.426801+00 2025-11-18 09:57:54.42681+00 f t Jincho CAT \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13607 +11224 2025-11-18 10:10:50.053361+00 2025-11-18 10:10:50.05337+00 f t Kimba DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13608 +11225 2025-11-18 10:49:19.125153+00 2025-11-18 10:49:19.125164+00 f t Dorito DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13609 +11226 2025-11-18 10:50:55.421791+00 2025-11-18 10:50:55.421801+00 f t Cloe CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13610 +11227 2025-11-18 11:11:16.866826+00 2025-11-18 11:11:16.866834+00 f t Violeta CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13613 +11228 2025-11-18 11:27:50.93838+00 2025-11-18 11:27:50.938389+00 f t Pelusa CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13614 +11229 2025-11-18 11:31:01.687093+00 2025-11-18 11:31:01.687104+00 f t Rocky CAT \N 3.20 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13615 +11230 2025-11-18 12:14:58.622371+00 2025-11-18 12:14:58.62238+00 f t Kira DOG \N 26.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13616 +11231 2025-11-18 12:15:52.933126+00 2025-11-18 12:15:52.933135+00 f t Nino CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13616 +11232 2025-11-18 12:39:39.826163+00 2025-11-18 12:39:39.826176+00 f t Barbucha DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13617 +11233 2025-11-18 14:56:18.885125+00 2025-11-18 14:56:18.885133+00 f t Juanito CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13619 +11234 2025-11-18 15:14:57.592893+00 2025-11-18 15:14:57.592903+00 f t Daysi DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13621 +11235 2025-11-18 15:59:22.924949+00 2025-11-18 15:59:22.924959+00 f t Jqno CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13623 +11236 2025-11-18 16:00:21.158276+00 2025-11-18 16:00:21.158285+00 f t Jano CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13623 +11237 2025-11-18 16:13:52.831498+00 2025-11-18 16:13:52.83151+00 f t Levi CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13625 +11238 2025-11-18 16:23:17.400649+00 2025-11-18 16:23:17.400657+00 f t Yami DOG \N 18.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13626 +11239 2025-11-18 16:28:25.84523+00 2025-11-18 16:28:25.845242+00 f t Mochi CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13627 +11240 2025-11-18 16:36:03.654601+00 2025-11-18 16:36:03.654613+00 f t Celina DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13628 +11241 2025-11-18 16:36:41.053329+00 2025-11-18 16:36:41.053338+00 f t Mochi CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13629 +11242 2025-11-18 16:54:42.613022+00 2025-11-18 16:54:42.61303+00 f t GUS CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13630 +11243 2025-11-18 17:14:22.675319+00 2025-11-18 17:14:22.675328+00 f t Misha CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13634 +11244 2025-11-18 17:18:33.498277+00 2025-11-18 17:18:33.498286+00 f t Canela DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13635 +11245 2025-11-18 17:30:32.378393+00 2025-11-18 17:30:32.378407+00 f t Artemisa CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13637 +11246 2025-11-18 17:30:44.726783+00 2025-11-18 17:30:44.726791+00 f t Chao CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13638 +11247 2025-11-18 17:35:42.288983+00 2025-11-18 17:35:42.288994+00 f t micaela CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13640 +11248 2025-11-18 17:53:38.177996+00 2025-11-18 17:53:38.178006+00 f t Titi CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13642 +11249 2025-11-18 18:05:45.299856+00 2025-11-18 18:05:45.299864+00 f t Marilyn DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13643 +11250 2025-11-18 18:12:12.070908+00 2025-11-18 18:12:12.070919+00 f t Oliva CAT \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13644 +11251 2025-11-18 18:37:55.534612+00 2025-11-18 18:37:55.534626+00 f t Baddy DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13645 +11252 2025-11-18 18:43:47.14235+00 2025-11-18 18:43:47.142358+00 f t Baddy DOG \N 11.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13646 +11255 2025-11-18 18:57:19.898701+00 2025-11-18 18:57:19.898712+00 f t Oliver CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13648 +11256 2025-11-18 18:57:37.772684+00 2025-11-18 18:57:37.772692+00 f t Hamilton CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13649 +11257 2025-11-18 18:58:05.059999+00 2025-11-18 18:58:05.060008+00 f t Hamilton CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13650 +11258 2025-11-18 19:20:06.368425+00 2025-11-18 19:20:06.368438+00 f t Luna DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13651 +11259 2025-11-18 19:21:30.690052+00 2025-11-18 19:21:30.690061+00 f t Lorenzo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13652 +11260 2025-11-18 19:22:10.698138+00 2025-11-18 19:22:10.698148+00 f t Luna DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13653 +11261 2025-11-18 19:28:05.514364+00 2025-11-18 19:28:05.514372+00 f t Lionel CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13654 +11262 2025-11-18 19:30:32.976938+00 2025-11-18 19:30:32.976946+00 f t Lionel CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13655 +11263 2025-11-18 19:45:31.934915+00 2025-11-18 19:45:31.934948+00 f t Keena Alcayaga DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13658 +11264 2025-11-18 19:48:41.854922+00 2025-11-18 19:48:41.854931+00 f t Tilapia DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13659 +11265 2025-11-18 19:52:39.25785+00 2025-11-18 19:52:39.257859+00 f t Lola DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13661 +11266 2025-11-18 19:55:43.497888+00 2025-11-18 19:55:43.497897+00 f t Leon DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13662 +11267 2025-11-18 19:56:36.500266+00 2025-11-18 19:56:36.500279+00 f t Mummu DOG \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13663 +11268 2025-11-18 19:57:41.188177+00 2025-11-18 19:57:41.188186+00 f t Limon CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13664 +11269 2025-11-18 19:58:41.459382+00 2025-11-18 19:58:41.459392+00 f t Asia DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13665 +11270 2025-11-18 20:08:29.393187+00 2025-11-18 20:08:29.393197+00 f t Roma DOG \N 700.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13668 +11253 2025-11-18 18:56:08.375436+00 2025-11-18 18:56:08.375444+00 t t Oliver CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13648 +11254 2025-11-18 18:57:06.680037+00 2025-11-18 18:57:06.680045+00 t t Oliver CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13648 +11271 2025-11-18 20:20:42.206638+00 2025-11-18 20:20:42.20665+00 f t Lola CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13669 +11272 2025-11-18 21:32:36.072501+00 2025-11-18 21:32:36.072508+00 f t Gaona) CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13670 +11273 2025-11-18 21:33:40.847464+00 2025-11-18 21:33:40.847473+00 f t Toto CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13671 +11274 2025-11-18 21:34:09.604495+00 2025-11-18 21:34:09.604506+00 f t 6 CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13672 +11275 2025-11-18 21:35:43.960474+00 2025-11-18 21:35:43.960482+00 f t Mateo DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13673 +11276 2025-11-18 21:36:15.13186+00 2025-11-18 21:36:15.131869+00 f t Nala DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13674 +11277 2025-11-18 21:41:11.274881+00 2025-11-18 21:41:11.27489+00 f t Hannibal DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13676 +11278 2025-11-18 21:42:04.472543+00 2025-11-18 21:42:04.472551+00 f t Margarita CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13676 +11279 2025-11-18 21:47:00.672611+00 2025-11-18 21:47:00.67262+00 f t Hanna DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13677 +11280 2025-11-18 22:03:45.201455+00 2025-11-18 22:03:45.201467+00 f t Lola DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13679 +11281 2025-11-18 22:14:50.171516+00 2025-11-18 22:14:50.171526+00 f t Aurora CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13681 +11282 2025-11-18 22:15:51.708452+00 2025-11-18 22:15:51.708465+00 f t Ambar CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13681 +11283 2025-11-18 22:16:25.313187+00 2025-11-18 22:16:25.313197+00 f t Hakai CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13682 +11284 2025-11-18 22:17:35.944446+00 2025-11-18 22:17:35.944455+00 f t Kurai CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13682 +11285 2025-11-18 22:22:27.811559+00 2025-11-18 22:22:27.811572+00 f t diosito CAT \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13683 +11286 2025-11-18 22:23:42.097774+00 2025-11-18 22:23:42.097783+00 f t Tokio DOG \N 11.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13684 +11287 2025-11-18 22:30:59.295711+00 2025-11-18 22:30:59.295724+00 f t Mora DOG \N 17.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13685 +11288 2025-11-18 22:40:06.161431+00 2025-11-18 22:40:06.161444+00 f t Luna CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13686 +11289 2025-11-18 22:41:42.097133+00 2025-11-18 22:41:42.097144+00 f t Eros CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13686 +11290 2025-11-18 23:05:21.504655+00 2025-11-18 23:05:21.504663+00 f t Misaki CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13688 +11291 2025-11-18 23:17:21.537+00 2025-11-18 23:17:21.537009+00 f t Roki DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13689 +11292 2025-11-18 23:20:09.347271+00 2025-11-18 23:20:09.347279+00 f t Bebe DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13691 +11293 2025-11-18 23:20:47.453277+00 2025-11-18 23:20:47.453285+00 f t Bebe CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13691 +11294 2025-11-18 23:28:09.182222+00 2025-11-18 23:28:09.18223+00 f t Capi DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13693 +11295 2025-11-18 23:54:19.992714+00 2025-11-18 23:54:19.992722+00 f t Coco CAT \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13695 +11296 2025-11-18 23:56:14.439517+00 2025-11-18 23:56:14.439528+00 f t Leon DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13696 +11297 2025-11-18 23:59:00.675183+00 2025-11-18 23:59:00.675192+00 f t Pip CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13697 +11298 2025-11-19 00:38:29.762462+00 2025-11-19 00:38:29.762474+00 f t Ramona DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13699 +11299 2025-11-19 01:13:07.082801+00 2025-11-19 01:13:07.08281+00 f t Caos CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13700 +11300 2025-11-19 01:25:46.157486+00 2025-11-19 01:25:46.157498+00 f t Yayo CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13703 +11301 2025-11-19 01:33:15.107222+00 2025-11-19 01:33:15.10723+00 f t Crack DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13704 +11302 2025-11-19 01:41:34.313145+00 2025-11-19 01:41:34.313155+00 f t Uma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13705 +11303 2025-11-19 01:42:30.491719+00 2025-11-19 01:42:30.491733+00 f t Uma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13706 +11304 2025-11-19 01:44:45.348213+00 2025-11-19 01:44:45.348221+00 f t Uma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13707 +11305 2025-11-19 01:48:40.420648+00 2025-11-19 01:48:40.420662+00 f t Lara DOG \N 14.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13707 +11306 2025-11-19 01:50:01.109566+00 2025-11-19 01:50:01.109574+00 f t Aa DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13708 +11307 2025-11-19 01:57:11.760288+00 2025-11-19 01:57:11.760297+00 f t Kiri CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13709 +11308 2025-11-19 02:10:46.017929+00 2025-11-19 02:10:46.017941+00 f t Cacau CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13711 +11309 2025-11-19 02:26:09.208638+00 2025-11-19 02:26:09.208646+00 f t Reina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13712 +11310 2025-11-19 02:27:36.369843+00 2025-11-19 02:27:36.369854+00 f t Tita CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13712 +11311 2025-11-19 02:27:39.154533+00 2025-11-19 02:27:39.154541+00 f t Chimuelo DOG \N 17.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13713 +11312 2025-11-19 02:29:41.570199+00 2025-11-19 02:29:41.570207+00 f t Crack DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13714 +11313 2025-11-19 02:47:59.268635+00 2025-11-19 02:47:59.268644+00 f t Magui DOG \N 5.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13715 +11314 2025-11-19 02:51:26.379333+00 2025-11-19 02:51:26.379344+00 f t Vitto DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13717 +11315 2025-11-19 02:52:54.861184+00 2025-11-19 02:52:54.861193+00 f t Selina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13717 +11316 2025-11-19 03:29:47.078801+00 2025-11-19 03:29:47.078812+00 f t Lola DOG \N 7.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13718 +11317 2025-11-19 03:39:45.782703+00 2025-11-19 03:39:45.782713+00 f t I DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13720 +11318 2025-11-19 03:40:21.162999+00 2025-11-19 03:40:21.163011+00 f t T CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13720 +11319 2025-11-19 04:25:02.478405+00 2025-11-19 04:25:02.478418+00 f t Tincho DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13721 +11320 2025-11-19 04:32:58.423481+00 2025-11-19 04:32:58.423492+00 f t Nala DOG \N 60.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13723 +11321 2025-11-19 04:35:45.03814+00 2025-11-19 04:35:45.038149+00 f t Nala DOG \N 70.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13726 +11322 2025-11-19 04:35:59.17188+00 2025-11-19 04:35:59.171889+00 f t R CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13725 +11323 2025-11-19 05:43:27.446926+00 2025-11-19 05:43:27.446934+00 f t Mascabo DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13727 +11324 2025-11-19 08:59:51.676357+00 2025-11-19 08:59:51.676372+00 f t Gina CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13729 +11325 2025-11-19 09:01:53.470459+00 2025-11-19 09:01:53.470471+00 f t Bela CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13729 +11326 2025-11-19 09:03:19.089314+00 2025-11-19 09:03:19.089324+00 f t Gina CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13730 +11327 2025-11-19 09:21:30.041632+00 2025-11-19 09:21:30.04164+00 f t Perro DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13732 +11328 2025-11-19 09:50:27.302301+00 2025-11-19 09:50:27.30231+00 f t Voltaire CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13733 +11329 2025-11-19 10:03:20.55924+00 2025-11-19 10:03:20.559249+00 f t Pudding CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13734 +11330 2025-11-19 10:09:16.201136+00 2025-11-19 10:09:16.201144+00 f t Tuki CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13735 +11331 2025-11-19 10:13:38.40755+00 2025-11-19 10:13:38.407559+00 f t Pepi DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13736 +11332 2025-11-19 10:38:41.50392+00 2025-11-19 10:38:41.503928+00 f t Milo DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13737 +11333 2025-11-19 10:39:04.634431+00 2025-11-19 10:39:04.634444+00 f t Ringo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13738 +11334 2025-11-19 10:52:21.853955+00 2025-11-19 10:52:21.853964+00 f t Milo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13739 +11335 2025-11-19 11:14:37.040409+00 2025-11-19 11:14:37.040417+00 f t Tomy CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13741 +11336 2025-11-19 11:26:18.453839+00 2025-11-19 11:26:18.45385+00 f t Rumba DOG \N 22.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13743 +11337 2025-11-19 11:29:49.980093+00 2025-11-19 11:29:49.980101+00 f t Tomy CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13744 +11338 2025-11-19 11:52:18.072454+00 2025-11-19 11:52:18.072462+00 f t Ney CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13745 +11339 2025-11-19 12:03:18.077274+00 2025-11-19 12:03:18.077286+00 f t Tomy CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13748 +11340 2025-11-19 12:03:44.966539+00 2025-11-19 12:03:44.966553+00 f t Ofelia CAT \N 4.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13749 +11341 2025-11-19 12:07:50.883449+00 2025-11-19 12:07:50.883459+00 f t ROCCO DOG \N 39.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13752 +11342 2025-11-19 12:08:01.244804+00 2025-11-19 12:08:01.244814+00 f t Dulce CAT \N 2.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13751 +11343 2025-11-19 12:15:11.211982+00 2025-11-19 12:15:11.211994+00 f t Nana CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13753 +11344 2025-11-19 12:17:38.752323+00 2025-11-19 12:17:38.752336+00 f t Ryu CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13753 +11345 2025-11-19 12:27:54.872793+00 2025-11-19 12:27:54.872801+00 f t Papi DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13754 +11346 2025-11-19 12:28:47.213824+00 2025-11-19 12:28:47.213832+00 f t Papi CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13754 +11347 2025-11-19 12:46:40.682533+00 2025-11-19 12:46:40.682541+00 f t Cocco DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13756 +11348 2025-11-19 12:51:46.395301+00 2025-11-19 12:51:46.39531+00 f t Penny CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13756 +11349 2025-11-19 12:55:05.278414+00 2025-11-19 12:55:05.278429+00 f t Osama DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13758 +11350 2025-11-19 12:58:35.138725+00 2025-11-19 12:58:35.138737+00 f t Anakin CAT \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13759 +11351 2025-11-19 12:59:24.38991+00 2025-11-19 12:59:24.38992+00 f t Choco CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13761 +11352 2025-11-19 13:00:13.292689+00 2025-11-19 13:00:13.292704+00 f t Grissy CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13760 +11353 2025-11-19 13:02:10.716016+00 2025-11-19 13:02:10.716026+00 f t Anakin CAT \N 1.60 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13762 +11354 2025-11-19 13:07:15.323675+00 2025-11-19 13:07:15.323685+00 f t Osvaldo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13764 +11355 2025-11-19 13:08:39.387342+00 2025-11-19 13:08:39.387355+00 f t Loki DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13765 +11356 2025-11-19 13:10:28.886766+00 2025-11-19 13:10:28.886779+00 f t Lola DOG \N 4.40 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13766 +11357 2025-11-19 13:13:50.565911+00 2025-11-19 13:13:50.56592+00 f t otto DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13767 +11358 2025-11-19 13:19:09.573554+00 2025-11-19 13:19:09.573564+00 f t Tigro CAT \N 4.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13769 +11359 2025-11-19 13:31:20.225337+00 2025-11-19 13:31:20.225345+00 f t Katie CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13770 +11360 2025-11-19 13:32:53.75381+00 2025-11-19 13:32:53.753822+00 f t luz DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13771 +11361 2025-11-19 13:48:12.032902+00 2025-11-19 13:48:12.032913+00 f t Uma CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13774 +11362 2025-11-19 13:49:18.520556+00 2025-11-19 13:49:18.520564+00 f t luz DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13775 +11363 2025-11-19 13:56:23.6171+00 2025-11-19 13:56:23.617113+00 f t Arya CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13777 +11364 2025-11-19 14:17:46.022232+00 2025-11-19 14:17:46.02224+00 f t indi CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13778 +11365 2025-11-19 14:29:39.712624+00 2025-11-19 14:29:39.712635+00 f t Papi CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13780 +11366 2025-11-19 14:31:18.938135+00 2025-11-19 14:31:18.938148+00 f t Bart CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13781 +11367 2025-11-19 14:32:10.127678+00 2025-11-19 14:32:10.127687+00 f t Maggie CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13781 +11368 2025-11-19 14:53:13.23528+00 2025-11-19 14:53:13.235293+00 f t Kira DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13783 +11369 2025-11-19 14:56:36.767233+00 2025-11-19 14:56:36.767242+00 f t nala CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13784 +11370 2025-11-19 14:58:40.351992+00 2025-11-19 14:58:40.352+00 f t nala CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13786 +11371 2025-11-19 15:00:29.470882+00 2025-11-19 15:00:29.470895+00 f t Kenya CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13787 +11372 2025-11-19 15:15:32.883513+00 2025-11-19 15:15:32.883522+00 f t Zeus DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13788 +11373 2025-11-19 15:24:03.215476+00 2025-11-19 15:24:03.215486+00 f t Molly CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13789 +11374 2025-11-19 15:29:05.255768+00 2025-11-19 15:29:05.255776+00 f t Thor DOG \N 18.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13790 +11375 2025-11-19 15:45:05.654297+00 2025-11-19 15:45:05.654309+00 f t Elvis DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13792 +11376 2025-11-19 15:57:56.038919+00 2025-11-19 15:57:56.038928+00 f t Seri CAT \N 0.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13793 +11377 2025-11-19 16:19:28.547175+00 2025-11-19 16:19:28.547184+00 f t China DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13794 +11378 2025-11-19 16:21:56.235214+00 2025-11-19 16:21:56.235226+00 f t Roma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13795 +11379 2025-11-19 16:23:12.481592+00 2025-11-19 16:23:12.481601+00 f t Apolo DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13796 +11380 2025-11-19 16:29:17.631697+00 2025-11-19 16:29:17.631706+00 f t Pami CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13798 +11381 2025-11-19 16:30:12.238356+00 2025-11-19 16:30:12.238364+00 f t Antuan DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13798 +11382 2025-11-19 17:03:50.463755+00 2025-11-19 17:03:50.463767+00 f t MILO DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13799 +11383 2025-11-19 17:24:04.239503+00 2025-11-19 17:24:04.239512+00 f t Linda CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13800 +11384 2025-11-19 17:24:40.071557+00 2025-11-19 17:24:40.071566+00 f t Minina CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13800 +11385 2025-11-19 17:33:10.918284+00 2025-11-19 17:33:10.918293+00 f t Tilapia DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13801 +11386 2025-11-19 17:44:35.637981+00 2025-11-19 17:44:35.637989+00 f t mandarina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 27 +11387 2025-11-19 17:56:47.341826+00 2025-11-19 17:56:47.34184+00 f t Negro CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13804 +11388 2025-11-19 18:01:34.084417+00 2025-11-19 18:01:34.084427+00 f t Beba DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13806 +11389 2025-11-19 18:14:01.124825+00 2025-11-19 18:14:01.124838+00 f t Venus CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13807 +11390 2025-11-19 18:23:26.932638+00 2025-11-19 18:23:26.932647+00 f t Suyai CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13809 +11391 2025-11-19 18:39:01.398127+00 2025-11-19 18:39:01.398141+00 f t Venus CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13811 +11392 2025-11-19 18:46:56.149437+00 2025-11-19 18:46:56.149445+00 f t Tomas DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13812 +11393 2025-11-19 18:47:58.68159+00 2025-11-19 18:47:58.681599+00 f t Felipe DOG \N 27.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13813 +11394 2025-11-19 19:14:26.673367+00 2025-11-19 19:14:26.673378+00 f t Otto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13817 +11395 2025-11-19 19:17:21.663387+00 2025-11-19 19:17:21.663395+00 f t Salem CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13818 +11396 2025-11-19 19:17:48.641741+00 2025-11-19 19:17:48.641749+00 f t Chapita DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13819 +11398 2025-11-19 19:19:43.424529+00 2025-11-19 19:19:43.424542+00 f t floki CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13820 +11399 2025-11-19 19:57:32.544615+00 2025-11-19 19:57:32.544623+00 f t Mishu CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13822 +11400 2025-11-19 20:10:30.995584+00 2025-11-19 20:10:30.995592+00 f t Jacinto CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13823 +11401 2025-11-19 20:12:13.772407+00 2025-11-19 20:12:13.772416+00 f t Pochoclo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13823 +11402 2025-11-19 20:20:21.652992+00 2025-11-19 20:20:21.653+00 f t Mascabo DOG \N 26.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13824 +11404 2025-11-19 20:27:53.870362+00 2025-11-19 20:27:53.870371+00 f t Gringa CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13828 +11405 2025-11-19 20:28:10.98487+00 2025-11-19 20:28:10.984879+00 f t Mora DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13827 +11406 2025-11-19 20:29:48.268693+00 2025-11-19 20:29:48.268705+00 f t kiri CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13830 +11407 2025-11-19 20:30:04.52963+00 2025-11-19 20:30:04.529645+00 f t Milton CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13831 +11408 2025-11-19 20:38:03.175191+00 2025-11-19 20:38:03.1752+00 f t Bagera CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13832 +11409 2025-11-19 20:40:49.832684+00 2025-11-19 20:40:49.832693+00 f t Gaia CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13833 +11410 2025-11-19 20:41:46.725173+00 2025-11-19 20:41:46.725186+00 f t Gausho CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13833 +11411 2025-11-19 20:43:07.838337+00 2025-11-19 20:43:07.838346+00 f t Mumu CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13834 +11412 2025-11-19 20:48:00.008812+00 2025-11-19 20:48:00.008826+00 f t Pepa DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13835 +11413 2025-11-19 20:55:40.77152+00 2025-11-19 20:55:40.771529+00 f t Sansa CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13836 +11414 2025-11-19 20:58:25.300872+00 2025-11-19 20:58:25.30088+00 f t Venus CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13837 +11415 2025-11-19 21:07:36.859029+00 2025-11-19 21:07:36.859037+00 f t Metallica CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13840 +11416 2025-11-19 21:21:51.29102+00 2025-11-19 21:21:51.29103+00 f t Oli DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13841 +11397 2025-11-19 19:19:30.132987+00 2025-11-19 19:19:30.132997+00 t t Floki DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13820 +11403 2025-11-19 20:20:38.359874+00 2025-11-19 20:20:38.359883+00 t t Mascabo DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13824 +11417 2025-11-19 21:47:23.894225+00 2025-11-19 21:47:23.894237+00 f t floki CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13843 +11418 2025-11-19 22:03:12.919229+00 2025-11-19 22:03:12.919242+00 f t Ri DOG \N 35.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13845 +11419 2025-11-19 22:37:56.973704+00 2025-11-19 22:37:56.973716+00 f t Iniesta CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13846 +11420 2025-11-19 22:50:38.232728+00 2025-11-19 22:50:38.232737+00 f t Tito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13847 +11421 2025-11-19 22:55:03.989286+00 2025-11-19 22:55:03.989301+00 f t Otis CAT \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13848 +11422 2025-11-19 23:04:47.260892+00 2025-11-19 23:04:47.260901+00 f t Neii CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13850 +11423 2025-11-19 23:26:17.74532+00 2025-11-19 23:26:17.745331+00 f t Oliver CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13852 +11424 2025-11-19 23:30:39.39308+00 2025-11-19 23:30:39.393089+00 f t Kuka DOG \N 21.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13853 +11425 2025-11-19 23:38:35.832955+00 2025-11-19 23:38:35.832968+00 f t Milo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13854 +11426 2025-11-19 23:55:44.362338+00 2025-11-19 23:55:44.362346+00 f t Mimosa CAT \N 4.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13855 +11427 2025-11-20 00:01:48.278656+00 2025-11-20 00:01:48.278667+00 f t Tom CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13856 +11428 2025-11-20 00:15:59.479109+00 2025-11-20 00:15:59.47912+00 f t estrella DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13857 +11429 2025-11-20 00:59:26.417578+00 2025-11-20 00:59:26.41759+00 f t Uva CAT \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13859 +11430 2025-11-20 01:08:41.410603+00 2025-11-20 01:08:41.410613+00 f t Africa CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13860 +11431 2025-11-20 01:10:49.574492+00 2025-11-20 01:10:49.574501+00 f t Bob CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13861 +11432 2025-11-20 01:28:38.03618+00 2025-11-20 01:28:38.036197+00 f t Rubio CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13863 +11433 2025-11-20 01:37:37.637932+00 2025-11-20 01:37:37.637941+00 f t Patapez CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13864 +11434 2025-11-20 01:54:14.169236+00 2025-11-20 01:54:14.169246+00 f t Oliver CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13865 +11435 2025-11-20 01:55:21.753147+00 2025-11-20 01:55:21.753154+00 f t Catalina CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13865 +11436 2025-11-20 02:18:36.278874+00 2025-11-20 02:18:36.278884+00 f t Theo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13866 +11437 2025-11-20 02:25:48.581523+00 2025-11-20 02:25:48.581532+00 f t Mioa CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13868 +11438 2025-11-20 02:27:01.178102+00 2025-11-20 02:27:01.17811+00 f t L DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13869 +11439 2025-11-20 02:31:19.827197+00 2025-11-20 02:31:19.827206+00 f t Chucho DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13870 +11440 2025-11-20 04:02:26.994065+00 2025-11-20 04:02:26.994077+00 f t Rain CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13872 +11441 2025-11-20 05:07:16.306113+00 2025-11-20 05:07:16.306122+00 f t Tino DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13875 +11442 2025-11-20 09:54:45.969985+00 2025-11-20 09:54:45.969994+00 f t Kimchi CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13878 +11443 2025-11-20 10:01:49.648135+00 2025-11-20 10:01:49.648144+00 f t Pipi CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13879 +11444 2025-11-20 10:07:06.37019+00 2025-11-20 10:07:06.370202+00 f t Theo DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13880 +11445 2025-11-20 11:18:05.737836+00 2025-11-20 11:18:05.737846+00 f t Draco DOG \N 19.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13881 +11446 2025-11-20 11:21:20.020388+00 2025-11-20 11:21:20.020399+00 f t Mia CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13882 +11447 2025-11-20 11:29:05.353592+00 2025-11-20 11:29:05.353602+00 f t Felipe CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13884 +11448 2025-11-20 11:40:21.428718+00 2025-11-20 11:40:21.428727+00 f t Tomi DOG \N 53.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13886 +11449 2025-11-20 12:37:30.490562+00 2025-11-20 12:37:30.49057+00 f t Rocco DOG \N 60.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13889 +11450 2025-11-20 12:44:59.163263+00 2025-11-20 12:44:59.163275+00 f t Brisa DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13890 +11451 2025-11-20 12:57:41.711927+00 2025-11-20 12:57:41.711935+00 f t Renata CAT \N 3.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13892 +11452 2025-11-20 13:09:18.627611+00 2025-11-20 13:09:18.62762+00 f t Lola CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13895 +11453 2025-11-20 13:21:51.542057+00 2025-11-20 13:21:51.542065+00 f t Nymeria DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13896 +11454 2025-11-20 13:49:30.808381+00 2025-11-20 13:49:30.80839+00 f t Oliver CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13898 +11455 2025-11-20 13:52:59.083036+00 2025-11-20 13:52:59.083044+00 f t Peperina CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13899 +11456 2025-11-20 14:11:46.97035+00 2025-11-20 14:11:46.970363+00 f t Milo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13902 +11457 2025-11-20 14:16:43.547866+00 2025-11-20 14:16:43.547876+00 f t Zuki CAT \N 900.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13904 +11458 2025-11-20 14:34:44.268247+00 2025-11-20 14:34:44.268255+00 f t Cairo DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13905 +11459 2025-11-20 14:46:24.935084+00 2025-11-20 14:46:24.935094+00 f t Violeta CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13906 +11460 2025-11-20 14:54:14.122521+00 2025-11-20 14:54:14.12253+00 f t Luna CAT \N 1.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13907 +11461 2025-11-20 15:09:11.292969+00 2025-11-20 15:09:11.292978+00 f t Kitty CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13908 +11462 2025-11-20 15:18:11.88895+00 2025-11-20 15:18:11.888959+00 f t Anubis DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13909 +11463 2025-11-20 15:39:21.480739+00 2025-11-20 15:39:21.480748+00 f t Frida DOG \N 15.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13910 +11464 2025-11-20 15:43:54.473004+00 2025-11-20 15:43:54.473013+00 f t Negra DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13911 +11465 2025-11-20 15:58:27.929237+00 2025-11-20 15:58:27.929247+00 f t Roma DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13913 +11466 2025-11-20 15:59:39.651167+00 2025-11-20 15:59:39.651183+00 f t Loui CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13913 +11467 2025-11-20 16:07:26.527267+00 2025-11-20 16:07:26.527276+00 f t Lilith DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13914 +11468 2025-11-20 16:17:09.867665+00 2025-11-20 16:17:09.867676+00 f t Boni DOG \N 29.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13915 +11469 2025-11-20 16:20:48.467896+00 2025-11-20 16:20:48.467906+00 f t Luna CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13917 +11470 2025-11-20 16:21:38.957252+00 2025-11-20 16:21:38.95726+00 f t Vatu CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13916 +11471 2025-11-20 16:22:00.007595+00 2025-11-20 16:22:00.007607+00 f t Michi CAT \N 6.90 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13918 +11472 2025-11-20 16:33:37.891868+00 2025-11-20 16:33:37.891882+00 f t Julián CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13919 +11473 2025-11-20 16:35:51.10852+00 2025-11-20 16:35:51.108528+00 f t Batman CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13919 +11474 2025-11-20 16:37:46.09753+00 2025-11-20 16:37:46.097538+00 f t Severino DOG \N 0.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13920 +11080 2025-11-16 20:21:05.81867+00 2025-11-16 20:21:05.818679+00 f t Juniper CAT 0 4.00 0.00 t \N \N \N \N FEMALE \N f \N 114 13457 +11475 2025-11-20 16:55:22.221298+00 2025-11-20 16:55:22.221307+00 f t Hugo DOG \N 40.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13922 +11476 2025-11-20 16:55:23.669245+00 2025-11-20 16:55:23.669255+00 f t Katy CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13921 +11477 2025-11-20 16:58:21.584814+00 2025-11-20 16:58:21.584824+00 f t 1234 DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13923 +11478 2025-11-20 17:00:54.648493+00 2025-11-20 17:00:54.648501+00 f t Mile DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13924 +11479 2025-11-20 17:03:29.048495+00 2025-11-20 17:03:29.048508+00 f t Nina DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13925 +11480 2025-11-20 17:09:38.101155+00 2025-11-20 17:09:38.101163+00 f t Vida DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13927 +11481 2025-11-20 17:10:49.638403+00 2025-11-20 17:10:49.638412+00 f t Gema CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13927 +11482 2025-11-20 17:11:54.492093+00 2025-11-20 17:11:54.492104+00 f t Ivan DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13927 +11483 2025-11-20 17:15:55.646182+00 2025-11-20 17:15:55.646191+00 f t Ivan CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13927 +11484 2025-11-20 17:17:45.801758+00 2025-11-20 17:17:45.801788+00 f t Vida DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13928 +11485 2025-11-20 17:18:58.387293+00 2025-11-20 17:18:58.387305+00 f t Gema CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13928 +11486 2025-11-20 17:19:53.183008+00 2025-11-20 17:19:53.183016+00 f t Ivan CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13928 +11487 2025-11-20 17:20:47.95397+00 2025-11-20 17:20:47.953977+00 f t Loli CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13928 +11488 2025-11-20 17:37:20.29075+00 2025-11-20 17:37:20.290762+00 f t Odin CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13929 +11489 2025-11-20 17:40:05.382163+00 2025-11-20 17:40:05.382173+00 f t Nube DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13930 +11491 2025-11-20 17:55:39.390494+00 2025-11-20 17:55:39.390506+00 f t Mateo DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13932 +11490 2025-11-20 17:53:41.513324+00 2025-11-20 17:53:41.513334+00 f t Nina CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 12999 +11492 2025-11-20 18:27:15.868215+00 2025-11-20 18:27:15.868225+00 f t Terri DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13935 +11493 2025-11-20 18:29:58.315988+00 2025-11-20 18:29:58.315999+00 f t tomi DOG \N 3.40 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13936 +11494 2025-11-20 18:36:34.071069+00 2025-11-20 18:36:34.071082+00 f t Coco Chanel CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13937 +11495 2025-11-20 18:41:41.305069+00 2025-11-20 18:41:41.305078+00 f t Kida CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13938 +11496 2025-11-20 19:08:54.546222+00 2025-11-20 19:08:54.546234+00 f t Lola DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13939 +11497 2025-11-20 19:12:47.824954+00 2025-11-20 19:12:47.824963+00 f t Momo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13941 +11498 2025-11-20 19:20:50.856879+00 2025-11-20 19:20:50.85689+00 f t Benito DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13942 +11499 2025-11-20 19:28:12.108358+00 2025-11-20 19:28:12.10837+00 f t Panqueca DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13943 +11500 2025-11-20 19:29:04.35741+00 2025-11-20 19:29:04.357419+00 f t Sushi CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13943 +11501 2025-11-20 19:29:56.889056+00 2025-11-20 19:29:56.889068+00 f t Panqueca DOG \N 9.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13943 +11502 2025-11-20 19:59:05.060064+00 2025-11-20 19:59:05.060074+00 f t Bombay CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13946 +11503 2025-11-20 20:18:55.702509+00 2025-11-20 20:18:55.702521+00 f t Sofia DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13949 +11504 2025-11-20 20:34:53.878894+00 2025-11-20 20:34:53.878903+00 f t Fiona CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13950 +11505 2025-11-20 20:42:11.989572+00 2025-11-20 20:42:11.989582+00 f t Roma DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13952 +11506 2025-11-20 20:42:58.70675+00 2025-11-20 20:42:58.706758+00 f t Roma CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13952 +11507 2025-11-20 20:47:44.589631+00 2025-11-20 20:47:44.589639+00 f t Solchi DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13953 +11508 2025-11-20 20:48:27.578862+00 2025-11-20 20:48:27.578872+00 f t Braulio CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13954 +11509 2025-11-20 21:24:41.559663+00 2025-11-20 21:24:41.559672+00 f t Nala CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13957 +11510 2025-11-20 21:26:32.548751+00 2025-11-20 21:26:32.54876+00 f t Valkiria DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13958 +11511 2025-11-20 21:27:48.201765+00 2025-11-20 21:27:48.201775+00 f t Waffles CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13959 +11512 2025-11-20 21:28:29.73994+00 2025-11-20 21:28:29.739949+00 f t Katya CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13959 +11513 2025-11-20 21:51:28.699909+00 2025-11-20 21:51:28.69992+00 f t Valentino DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13961 +11514 2025-11-20 21:55:04.344427+00 2025-11-20 21:55:04.344437+00 f t Academia DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13963 +11515 2025-11-20 22:00:10.298411+00 2025-11-20 22:00:10.298424+00 f t Timoteo DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13964 +11516 2025-11-20 22:33:15.387022+00 2025-11-20 22:33:15.387031+00 f t Botas CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13965 +11517 2025-11-20 22:41:02.04421+00 2025-11-20 22:41:02.044225+00 f t Titina DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13967 +11518 2025-11-20 22:48:51.869947+00 2025-11-20 22:48:51.869962+00 f t Timoteo DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13969 +11519 2025-11-20 22:54:04.667888+00 2025-11-20 22:54:04.667898+00 f t Oslo DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13970 +11520 2025-11-20 22:55:57.401512+00 2025-11-20 22:55:57.401524+00 f t Alvaro CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13971 +11521 2025-11-20 23:15:06.791773+00 2025-11-20 23:15:06.791786+00 f t India CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13973 +11522 2025-11-20 23:41:03.088428+00 2025-11-20 23:41:03.08844+00 f t Mile DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13976 +11523 2025-11-20 23:45:09.69928+00 2025-11-20 23:45:09.699289+00 f t Frida CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13977 +11524 2025-11-20 23:51:03.467899+00 2025-11-20 23:51:03.467909+00 f t Frida CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13978 +11525 2025-11-21 00:01:32.84784+00 2025-11-21 00:01:32.847852+00 f t Soma CAT \N 4.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13979 +11526 2025-11-21 00:31:39.871778+00 2025-11-21 00:31:39.871787+00 f t Tino CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13981 +11527 2025-11-21 00:35:45.151405+00 2025-11-21 00:35:45.151414+00 f t Donna DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13982 +11528 2025-11-21 00:36:28.915815+00 2025-11-21 00:36:28.915829+00 f t Moro DOG \N 19.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13983 +11529 2025-11-21 00:36:50.365859+00 2025-11-21 00:36:50.365872+00 f t Derek DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13982 +11530 2025-11-21 00:37:23.534747+00 2025-11-21 00:37:23.534756+00 f t Omaly DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13982 +11531 2025-11-21 00:44:40.105361+00 2025-11-21 00:44:40.10537+00 f t Michi CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13984 +11532 2025-11-21 00:49:13.927025+00 2025-11-21 00:49:13.927037+00 f t Agustin DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13985 +11533 2025-11-21 00:49:52.699526+00 2025-11-21 00:49:52.699536+00 f t DULCEMIEL DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13986 +11534 2025-11-21 00:50:09.896735+00 2025-11-21 00:50:09.896749+00 f t Agustin CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13985 +11535 2025-11-21 00:51:24.539126+00 2025-11-21 00:51:24.539184+00 f t Dulcemiel CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13986 +11536 2025-11-21 01:00:19.123811+00 2025-11-21 01:00:19.123825+00 f t DULCEMIEL CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13987 +11537 2025-11-21 01:17:27.356724+00 2025-11-21 01:17:27.356734+00 f t Simón DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13988 +11538 2025-11-21 01:18:26.882078+00 2025-11-21 01:18:26.882087+00 f t Sofiq DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13989 +11539 2025-11-21 01:22:53.150684+00 2025-11-21 01:22:53.150698+00 f t Marcopolo DOG \N 7.70 0.00 t \N \N \N \N \N MALE \N \N f \N \N 13990 +11540 2025-11-21 01:26:54.228462+00 2025-11-21 01:26:54.228471+00 f t Lupita CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13991 +11541 2025-11-21 01:53:05.86998+00 2025-11-21 01:53:05.869989+00 f t Lupita CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 13993 +11542 2025-11-21 02:06:16.067283+00 2025-11-21 02:06:16.067294+00 f t Nato CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13996 +11543 2025-11-21 02:07:24.24781+00 2025-11-21 02:07:24.247819+00 f t Bebo CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13996 +11544 2025-11-21 02:08:01.85494+00 2025-11-21 02:08:01.854953+00 f t Bunu DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 13997 +11545 2025-11-21 02:10:13.232531+00 2025-11-21 02:10:13.232543+00 f t Nato CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13999 +11546 2025-11-21 02:10:39.588719+00 2025-11-21 02:10:39.588728+00 f t Luca CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 13995 +11547 2025-11-21 03:21:51.798761+00 2025-11-21 03:21:51.798773+00 f t Flor CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14001 +11548 2025-11-21 03:23:22.054237+00 2025-11-21 03:23:22.05425+00 f t Coqui CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14002 +11549 2025-11-21 03:24:40.191959+00 2025-11-21 03:24:40.191968+00 f t Juanfer CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14002 +11550 2025-11-21 04:05:29.924648+00 2025-11-21 04:05:29.924657+00 f t Lucifer CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14004 +11551 2025-11-21 04:13:26.42759+00 2025-11-21 04:13:26.427599+00 f t cielo DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14005 +11552 2025-11-21 04:20:18.017508+00 2025-11-21 04:20:18.017521+00 f t e DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14006 +11553 2025-11-21 04:26:38.904179+00 2025-11-21 04:26:38.904188+00 f t carlos DOG \N 20.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14007 +11554 2025-11-21 08:59:25.566641+00 2025-11-21 08:59:25.56665+00 f t Pantro CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14008 +11555 2025-11-21 09:32:13.241177+00 2025-11-21 09:32:13.241188+00 f t Lina DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14009 +11556 2025-11-21 09:56:14.210707+00 2025-11-21 09:56:14.210716+00 f t Mitty CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14010 +11557 2025-11-21 10:17:58.653975+00 2025-11-21 10:17:58.653984+00 f t Valentina DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14012 +11558 2025-11-21 11:02:34.685085+00 2025-11-21 11:02:34.685094+00 f t Simba CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14015 +11559 2025-11-21 11:08:18.333795+00 2025-11-21 11:08:18.333804+00 f t Winston DOG \N 35.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14016 +11560 2025-11-21 11:12:49.58035+00 2025-11-21 11:12:49.580363+00 f t Pedro DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14017 +11561 2025-11-21 11:23:30.994812+00 2025-11-21 11:23:30.99482+00 f t Hanna CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14019 +11562 2025-11-21 11:35:39.13523+00 2025-11-21 11:35:39.13524+00 f t Lola DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14020 +11563 2025-11-21 11:54:20.367373+00 2025-11-21 11:54:20.367382+00 f t Rocco DOG \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14021 +11564 2025-11-21 12:02:59.075084+00 2025-11-21 12:02:59.075096+00 f t Emma DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14022 +11565 2025-11-21 12:04:04.386303+00 2025-11-21 12:04:04.386313+00 f t Emma DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14022 +11566 2025-11-21 12:17:04.347422+00 2025-11-21 12:17:04.347435+00 f t Gago CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14023 +11567 2025-11-21 12:19:01.761164+00 2025-11-21 12:19:01.761174+00 f t Bruno DOG \N 16.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14024 +11568 2025-11-21 12:22:01.355162+00 2025-11-21 12:22:01.355172+00 f t Luna DOG \N 0.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14025 +11569 2025-11-21 12:39:35.309937+00 2025-11-21 12:39:35.309951+00 f t Lupita CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14027 +11570 2025-11-21 13:30:36.9499+00 2025-11-21 13:30:36.949911+00 f t panza CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14029 +11571 2025-11-21 13:33:18.332218+00 2025-11-21 13:33:18.332226+00 f t panza CAT \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14030 +11572 2025-11-21 13:36:40.705934+00 2025-11-21 13:36:40.705944+00 f t Mateo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14032 +11573 2025-11-21 13:46:56.577662+00 2025-11-21 13:46:56.577671+00 f t Malta CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14033 +11574 2025-11-21 14:01:08.466249+00 2025-11-21 14:01:08.466259+00 f t Jagger CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14035 +11575 2025-11-21 14:09:10.913704+00 2025-11-21 14:09:10.913717+00 f t Gildie DOG \N 32.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14036 +11576 2025-11-21 14:17:54.042317+00 2025-11-21 14:17:54.042327+00 f t Flor CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14037 +11577 2025-11-21 14:37:13.097222+00 2025-11-21 14:37:13.097231+00 f t Duki DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14038 +11578 2025-11-21 14:37:46.817501+00 2025-11-21 14:37:46.81751+00 f t Duki DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14038 +11579 2025-11-21 14:40:40.766345+00 2025-11-21 14:40:40.766358+00 f t Simba CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14039 +11580 2025-11-21 14:48:03.807794+00 2025-11-21 14:48:03.807804+00 f t tony CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14040 +11581 2025-11-21 14:49:03.898737+00 2025-11-21 14:49:03.898747+00 f t morena DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14041 +11582 2025-11-21 14:49:24.237928+00 2025-11-21 14:49:24.237937+00 f t Locky CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14042 +11583 2025-11-21 14:54:29.099698+00 2025-11-21 14:54:29.099707+00 f t Chimuelo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14043 +11584 2025-11-21 15:01:14.372902+00 2025-11-21 15:01:14.372912+00 f t Aegon CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14045 +11585 2025-11-21 15:15:06.393413+00 2025-11-21 15:15:06.393427+00 f t Coco CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14046 +11586 2025-11-21 15:15:25.573675+00 2025-11-21 15:15:25.573684+00 f t Lulu CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14046 +11587 2025-11-21 15:15:41.415781+00 2025-11-21 15:15:41.41579+00 f t Momo CAT \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14046 +11588 2025-11-21 15:28:37.814191+00 2025-11-21 15:28:37.8142+00 f t Mia DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14047 +11589 2025-11-21 15:43:59.834865+00 2025-11-21 15:43:59.834873+00 f t isis DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14048 +11590 2025-11-21 15:45:32.380875+00 2025-11-21 15:45:32.380887+00 f t ISIS DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14049 +11591 2025-11-21 15:51:02.911085+00 2025-11-21 15:51:02.911095+00 f t Kira DOG \N 27.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14050 +11592 2025-11-21 15:51:21.216126+00 2025-11-21 15:51:21.216141+00 f t Zeuz DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14050 +11593 2025-11-21 16:01:09.849174+00 2025-11-21 16:01:09.849184+00 f t Sunny CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14051 +11594 2025-11-21 16:04:39.0762+00 2025-11-21 16:04:39.076212+00 f t Grisela CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14053 +11595 2025-11-21 16:05:44.129517+00 2025-11-21 16:05:44.12953+00 f t Lupita CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14054 +11596 2025-11-21 16:07:34.998537+00 2025-11-21 16:07:34.998547+00 f t Grisela CAT \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14055 +11597 2025-11-21 16:12:41.355472+00 2025-11-21 16:12:41.35548+00 f t Mabel CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14057 +11598 2025-11-21 16:15:00.789356+00 2025-11-21 16:15:00.78937+00 f t Cailda CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14058 +11599 2025-11-21 16:29:58.334544+00 2025-11-21 16:29:58.334556+00 f t oliver CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14061 +11600 2025-11-21 16:32:35.546192+00 2025-11-21 16:32:35.546204+00 f t benjamin CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14061 +11601 2025-11-21 16:50:11.940133+00 2025-11-21 16:50:11.940143+00 f t Don ramon DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14065 +11602 2025-11-21 16:58:11.593249+00 2025-11-21 16:58:11.593258+00 f t Luna DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14066 +11603 2025-11-21 17:05:33.368644+00 2025-11-21 17:05:33.368653+00 f t Thor CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14067 +11604 2025-11-21 17:41:54.481926+00 2025-11-21 17:41:54.481938+00 f t Felipe DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14068 +11605 2025-11-21 17:49:45.02184+00 2025-11-21 17:49:45.02185+00 f t China DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14070 +11606 2025-11-21 18:17:18.995545+00 2025-11-21 18:17:18.995555+00 f t momo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14071 +11607 2025-11-21 18:17:50.820548+00 2025-11-21 18:17:50.820558+00 f t Cielo DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14072 +11608 2025-11-21 18:22:30.399328+00 2025-11-21 18:22:30.399338+00 f t Mllo DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14073 +11609 2025-11-21 18:29:38.872834+00 2025-11-21 18:29:38.872844+00 f t Olivia CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14074 +11610 2025-11-21 19:20:56.220593+00 2025-11-21 19:20:56.220602+00 f t Lisa DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14082 +11611 2025-11-21 19:27:30.1949+00 2025-11-21 19:27:30.194909+00 f t Kevina CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14083 +11612 2025-11-21 19:29:06.437171+00 2025-11-21 19:29:06.437182+00 f t Menta CAT \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14084 +11613 2025-11-21 19:29:23.001939+00 2025-11-21 19:29:23.001948+00 f t Timotea CAT \N 0.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14085 +11614 2025-11-21 19:35:10.614541+00 2025-11-21 19:35:10.614554+00 f t Milán CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14086 +11615 2025-11-21 19:36:05.347998+00 2025-11-21 19:36:05.34801+00 f t Sasha CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14086 +11616 2025-11-21 19:37:43.433783+00 2025-11-21 19:37:43.433792+00 f t Milan CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14087 +11617 2025-11-21 19:39:54.82002+00 2025-11-21 19:39:54.820029+00 f t Sasha CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14087 +11618 2025-11-21 19:49:18.616627+00 2025-11-21 19:49:18.616636+00 f t cucu DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14089 +11619 2025-11-21 20:10:21.663105+00 2025-11-21 20:10:21.663116+00 f t Runa CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14090 +11620 2025-11-21 20:19:39.878936+00 2025-11-21 20:19:39.878944+00 f t Tokio CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14091 +11621 2025-11-21 20:32:50.783702+00 2025-11-21 20:32:50.783713+00 f t Benito DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14092 +11622 2025-11-21 21:02:27.527612+00 2025-11-21 21:02:27.527621+00 f t Mishka CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14093 +11623 2025-11-21 21:04:59.235756+00 2025-11-21 21:04:59.235767+00 f t Mishka CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14093 +11624 2025-11-21 21:27:52.628551+00 2025-11-21 21:27:52.628563+00 f t Wanda CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14095 +11625 2025-11-21 21:33:48.487691+00 2025-11-21 21:33:48.487703+00 f t Golgi DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14096 +11626 2025-11-21 21:38:48.485206+00 2025-11-21 21:38:48.485214+00 f t Arturo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14097 +11627 2025-11-21 21:50:24.307333+00 2025-11-21 21:50:24.307344+00 f t Lycy DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14098 +11628 2025-11-21 22:11:41.660186+00 2025-11-21 22:11:41.660195+00 f t Eva DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14099 +11629 2025-11-21 22:36:03.351638+00 2025-11-21 22:36:03.351649+00 f t Rita CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14100 +11630 2025-11-21 23:16:51.140966+00 2025-11-21 23:16:51.14098+00 f t Tosti DOG \N 1.40 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14104 +11631 2025-11-21 23:21:18.841152+00 2025-11-21 23:21:18.841163+00 f t Goyo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14105 +11632 2025-11-21 23:22:59.503802+00 2025-11-21 23:22:59.503812+00 f t Sakura DOG \N 25.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14105 +11633 2025-11-21 23:25:16.965373+00 2025-11-21 23:25:16.965386+00 f t Flaca DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14105 +11634 2025-11-21 23:27:55.700354+00 2025-11-21 23:27:55.700364+00 f t Sakura DOG \N 25.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14106 +11635 2025-11-21 23:33:13.32551+00 2025-11-21 23:33:13.325524+00 f t Nala DOG \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14107 +11636 2025-11-21 23:34:06.815371+00 2025-11-21 23:34:06.81538+00 f t Tula CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14108 +11637 2025-11-22 00:04:23.007875+00 2025-11-22 00:04:23.007887+00 f t Berlin DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14112 +11638 2025-11-22 00:45:44.819822+00 2025-11-22 00:45:44.81983+00 f t Jaime DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14114 +11639 2025-11-22 00:49:43.829483+00 2025-11-22 00:49:43.829495+00 f t Staur CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14116 +11640 2025-11-22 00:52:57.616027+00 2025-11-22 00:52:57.616036+00 f t Jaime DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14117 +11641 2025-11-22 01:04:10.884428+00 2025-11-22 01:04:10.884436+00 f t Nina DOG \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14118 +11642 2025-11-22 01:16:43.967316+00 2025-11-22 01:16:43.967329+00 f t Lemmy DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14119 +11643 2025-11-22 01:27:09.892985+00 2025-11-22 01:27:09.892995+00 f t Hernan Brunacci DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 346 +11644 2025-11-22 01:42:33.933742+00 2025-11-22 01:42:33.933751+00 f t Blue CAT \N 800.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14123 +11645 2025-11-22 02:16:42.313842+00 2025-11-22 02:16:42.313852+00 f t Loki CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14124 +11646 2025-11-22 02:17:56.544232+00 2025-11-22 02:17:56.544244+00 f t Pupa CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14125 +11647 2025-11-22 02:20:40.678577+00 2025-11-22 02:20:40.678589+00 f t Mulata CAT \N 7.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14126 +11648 2025-11-22 02:21:26.534061+00 2025-11-22 02:21:26.53407+00 f t Pupa CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14125 +11649 2025-11-22 02:23:02.980982+00 2025-11-22 02:23:02.980995+00 f t Mulata CAT \N 5.50 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14127 +11650 2025-11-22 03:44:18.081115+00 2025-11-22 03:44:18.081123+00 f t Tora DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14129 +11651 2025-11-22 03:57:25.172704+00 2025-11-22 03:57:25.172712+00 f t Apolo DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14130 +11652 2025-11-22 03:57:39.572604+00 2025-11-22 03:57:39.572614+00 f t Apolo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14130 +11653 2025-11-22 03:59:21.650871+00 2025-11-22 03:59:21.650885+00 f t Apolo CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14131 +11654 2025-11-22 04:02:55.595938+00 2025-11-22 04:02:55.59595+00 f t Momo DOG \N 7.90 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14132 +11655 2025-11-22 04:03:15.886642+00 2025-11-22 04:03:15.88665+00 f t Momo CAT \N 7.90 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14132 +11656 2025-11-22 04:07:57.355502+00 2025-11-22 04:07:57.355511+00 f t Gonza DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14133 +11657 2025-11-22 06:00:29.225775+00 2025-11-22 06:00:29.225784+00 f t Rocky DOG \N 45.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14135 +11658 2025-11-22 06:26:43.469608+00 2025-11-22 06:26:43.469617+00 f t Figaro DOG \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14136 +11659 2025-11-22 10:49:31.543704+00 2025-11-22 10:49:31.543713+00 f t Olivia DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14139 +11660 2025-11-22 10:58:51.910662+00 2025-11-22 10:58:51.910673+00 f t Rufina DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14140 +11661 2025-11-22 11:19:11.564998+00 2025-11-22 11:19:11.565009+00 f t Amanda DOG \N 14.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14142 +11662 2025-11-22 11:38:11.159548+00 2025-11-22 11:38:11.159562+00 f t Asaelia CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14143 +11663 2025-11-22 12:43:20.536946+00 2025-11-22 12:43:20.536955+00 f t Flopi DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14145 +11664 2025-11-22 13:24:06.541754+00 2025-11-22 13:24:06.541763+00 f t Lorenza CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14146 +11665 2025-11-22 13:34:23.444876+00 2025-11-22 13:34:23.444884+00 f t Lolo DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14147 +11666 2025-11-22 13:39:00.458496+00 2025-11-22 13:39:00.458505+00 f t Neron CAT \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14149 +11667 2025-11-22 13:47:22.24191+00 2025-11-22 13:47:22.241921+00 f t Sylver DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14150 +11668 2025-11-22 13:54:19.314676+00 2025-11-22 13:54:19.314686+00 f t sylvet DOG \N 13.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14151 +11669 2025-11-22 13:57:51.516528+00 2025-11-22 13:57:51.516536+00 f t Oso DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14152 +11670 2025-11-22 14:04:41.337967+00 2025-11-22 14:04:41.337976+00 f t Tego DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14153 +11671 2025-11-22 14:12:19.007168+00 2025-11-22 14:12:19.00719+00 f t Bocha CAT \N 1.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14155 +11672 2025-11-22 14:13:34.283667+00 2025-11-22 14:13:34.283675+00 f t Solari CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14155 +11673 2025-11-22 14:16:44.014679+00 2025-11-22 14:16:44.014692+00 f t Isidra CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14156 +11674 2025-11-22 14:41:31.075513+00 2025-11-22 14:41:31.075524+00 f t Luna CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14157 +11675 2025-11-22 14:54:27.134138+00 2025-11-22 14:54:27.134148+00 f t Lulu DOG \N 3.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14159 +11676 2025-11-22 16:14:57.83492+00 2025-11-22 16:14:57.834931+00 f t Cami DOG \N 32.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14161 +11677 2025-11-22 16:17:13.311422+00 2025-11-22 16:17:13.311431+00 f t Pakkun CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14162 +11678 2025-11-22 16:29:35.035417+00 2025-11-22 16:29:35.035425+00 f t frida CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14164 +11679 2025-11-22 16:37:45.151195+00 2025-11-22 16:37:45.151204+00 f t Lola CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14166 +11680 2025-11-22 16:55:47.307708+00 2025-11-22 16:55:47.307717+00 f t Milo CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14167 +11681 2025-11-22 17:04:27.479936+00 2025-11-22 17:04:27.479945+00 f t Paco CAT \N 3.60 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14168 +11682 2025-11-22 17:08:06.225408+00 2025-11-22 17:08:06.225417+00 f t simona CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14169 +11683 2025-11-22 17:20:33.687307+00 2025-11-22 17:20:33.687316+00 f t Viena DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14171 +11684 2025-11-22 17:46:19.412438+00 2025-11-22 17:46:19.412448+00 f t Deysi DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14172 +11685 2025-11-22 18:14:24.370368+00 2025-11-22 18:14:24.37038+00 f t Jinny DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14173 +11686 2025-11-22 18:30:09.444845+00 2025-11-22 18:30:09.444859+00 f t Goyo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14174 +11687 2025-11-22 18:36:00.23493+00 2025-11-22 18:36:00.234939+00 f t Goyo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14175 +11688 2025-11-22 18:59:43.782124+00 2025-11-22 18:59:43.782133+00 f t Otto CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14178 +11689 2025-11-22 19:16:30.610926+00 2025-11-22 19:16:30.610935+00 f t Mishu CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14179 +11690 2025-11-22 19:23:12.377318+00 2025-11-22 19:23:12.377327+00 f t Gina DOG \N 12.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14180 +11691 2025-11-22 19:23:35.242459+00 2025-11-22 19:23:35.242472+00 f t Gina CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14180 +11692 2025-11-22 19:44:14.293211+00 2025-11-22 19:44:14.29322+00 f t Kai DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14181 +11693 2025-11-22 21:07:07.944614+00 2025-11-22 21:07:07.944626+00 f t nala DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14182 +11694 2025-11-22 21:07:24.421048+00 2025-11-22 21:07:24.42106+00 f t nala CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14182 +11695 2025-11-22 21:23:11.463458+00 2025-11-22 21:23:11.463472+00 f t Rosi CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14183 +11696 2025-11-22 21:25:40.988929+00 2025-11-22 21:25:40.988939+00 f t chicha DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14184 +11697 2025-11-22 22:02:23.453074+00 2025-11-22 22:02:23.453084+00 f t Luna CAT \N 2.30 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14185 +11698 2025-11-22 22:06:01.302783+00 2025-11-22 22:06:01.302792+00 f t Leclerc CAT \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14186 +11699 2025-11-22 22:53:05.315923+00 2025-11-22 22:53:05.315932+00 f t Olga CAT \N 3.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14188 +11700 2025-11-22 23:30:09.785411+00 2025-11-22 23:30:09.785425+00 f t Tini CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14190 +11701 2025-11-22 23:49:22.148663+00 2025-11-22 23:49:22.148673+00 f t Tyan CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14191 +11702 2025-11-23 01:06:27.352359+00 2025-11-23 01:06:27.352368+00 f t Konner DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14193 +11703 2025-11-23 01:40:08.409007+00 2025-11-23 01:40:08.409017+00 f t Enzo DOG \N 9.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14195 +11704 2025-11-23 02:11:44.256851+00 2025-11-23 02:11:44.25686+00 f t Lyra DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14196 +11705 2025-11-23 02:13:09.184453+00 2025-11-23 02:13:09.184466+00 f t Lyra CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14196 +11706 2025-11-23 02:43:09.714321+00 2025-11-23 02:43:09.71433+00 f t FITO CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14197 +11707 2025-11-23 03:17:55.219724+00 2025-11-23 03:17:55.219732+00 f t turu CAT \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14199 +11708 2025-11-23 04:01:32.211521+00 2025-11-23 04:01:32.211534+00 f t Lola DOG \N 82.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14201 +11709 2025-11-23 06:24:23.483576+00 2025-11-23 06:24:23.483585+00 f t Cali DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14202 +11710 2025-11-23 06:48:01.73618+00 2025-11-23 06:48:01.736194+00 f t Maggie CAT \N 2.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14204 +11711 2025-11-23 08:04:23.373831+00 2025-11-23 08:04:23.373839+00 f t Enzo DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14205 +11712 2025-11-23 08:05:52.068444+00 2025-11-23 08:05:52.068453+00 f t Enzo DOG \N 6.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14206 +11713 2025-11-23 10:15:16.676565+00 2025-11-23 10:15:16.676574+00 f t Aquiles DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14207 +11714 2025-11-23 10:20:15.196941+00 2025-11-23 10:20:15.196951+00 f t Aquiles DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14208 +11715 2025-11-23 10:22:13.804733+00 2025-11-23 10:22:13.804742+00 f t Aquiles DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14209 +11716 2025-11-23 10:30:54.922073+00 2025-11-23 10:30:54.922081+00 f t Tyson DOG \N 55.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14211 +11717 2025-11-23 11:30:38.362125+00 2025-11-23 11:30:38.362138+00 f t Olivia DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14213 +11718 2025-11-23 12:06:56.076442+00 2025-11-23 12:06:56.076456+00 f t Hipólito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14214 +11719 2025-11-23 12:55:24.952286+00 2025-11-23 12:55:24.952295+00 f t Hipólito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14217 +11720 2025-11-23 13:31:12.139281+00 2025-11-23 13:31:12.139289+00 f t Apollo DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14220 +11721 2025-11-23 13:37:31.831006+00 2025-11-23 13:37:31.831015+00 f t Rocco DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14221 +11722 2025-11-23 13:42:26.576279+00 2025-11-23 13:42:26.576289+00 f t Hipólito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14222 +11723 2025-11-23 13:50:29.376867+00 2025-11-23 13:50:29.376878+00 f t Yumi CAT \N 6.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14224 +11724 2025-11-23 13:55:56.771383+00 2025-11-23 13:55:56.771391+00 f t Gaia CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14225 +11725 2025-11-23 13:57:36.139303+00 2025-11-23 13:57:36.139314+00 f t Salem CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14225 +11726 2025-11-23 14:07:07.87856+00 2025-11-23 14:07:07.878569+00 f t Seraphina DOG \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14226 +11727 2025-11-23 14:43:21.268146+00 2025-11-23 14:43:21.268157+00 f t Cata CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14227 +11728 2025-11-23 14:45:18.979061+00 2025-11-23 14:45:18.97907+00 f t Cata CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14228 +11729 2025-11-23 14:45:33.737678+00 2025-11-23 14:45:33.737686+00 f t Nato CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14229 +11730 2025-11-23 14:50:16.479069+00 2025-11-23 14:50:16.479077+00 f t Milla CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14230 +11731 2025-11-23 15:13:16.173174+00 2025-11-23 15:13:16.173184+00 f t Miel CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14233 +11732 2025-11-23 15:53:51.917018+00 2025-11-23 15:53:51.917029+00 f t Consentida CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14234 +11733 2025-11-23 16:10:39.851734+00 2025-11-23 16:10:39.851743+00 f t Hanna DOG \N 19.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14235 +11734 2025-11-23 17:00:14.033706+00 2025-11-23 17:00:14.033721+00 f t Eddy DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14237 +11735 2025-11-23 17:00:41.450334+00 2025-11-23 17:00:41.450344+00 f t Pw DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14238 +11736 2025-11-23 17:03:03.838588+00 2025-11-23 17:03:03.838602+00 f t Eddy DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14239 +11737 2025-11-23 17:13:26.510834+00 2025-11-23 17:13:26.510843+00 f t Eddy DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14241 +11738 2025-11-23 18:11:37.771729+00 2025-11-23 18:11:37.771738+00 f t Marley CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14243 +11739 2025-11-23 18:23:46.04854+00 2025-11-23 18:23:46.048549+00 f t Kara DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14245 +11740 2025-11-23 18:40:26.110514+00 2025-11-23 18:40:26.110527+00 f t Olaf DOG \N 50.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14246 +11741 2025-11-23 18:47:22.97583+00 2025-11-23 18:47:22.97584+00 f t Agata CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14248 +11742 2025-11-23 18:49:50.136806+00 2025-11-23 18:49:50.136815+00 f t Otti CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14249 +11743 2025-11-23 18:51:45.062586+00 2025-11-23 18:51:45.062599+00 f t Romeo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14250 +11744 2025-11-23 18:52:22.295778+00 2025-11-23 18:52:22.295789+00 f t Florcita CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14251 +11745 2025-11-23 18:54:28.194027+00 2025-11-23 18:54:28.194037+00 f t Betty CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14252 +11746 2025-11-23 19:19:56.061023+00 2025-11-23 19:19:56.061034+00 f t Fito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14253 +11747 2025-11-23 19:22:58.847405+00 2025-11-23 19:22:58.847416+00 f t Ace DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14254 +11748 2025-11-23 19:34:30.355035+00 2025-11-23 19:34:30.355048+00 f t Nani DOG \N 8.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14255 +11749 2025-11-23 19:35:12.177204+00 2025-11-23 19:35:12.177215+00 f t Nani CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14255 +11750 2025-11-23 19:39:44.440555+00 2025-11-23 19:39:44.440564+00 f t Simon CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14256 +11751 2025-11-23 19:46:00.377528+00 2025-11-23 19:46:00.377536+00 f t Timon CAT \N 2.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14257 +11752 2025-11-23 19:47:09.874226+00 2025-11-23 19:47:09.874235+00 f t Fluffy DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14258 +11753 2025-11-23 20:08:53.88768+00 2025-11-23 20:08:53.887689+00 f t Danke DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14259 +11754 2025-11-23 20:10:50.782767+00 2025-11-23 20:10:50.782775+00 f t Fabi DOG \N 13.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14260 +11755 2025-11-23 20:12:43.154937+00 2025-11-23 20:12:43.15495+00 f t Fabi DOG \N 12.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14261 +11756 2025-11-23 20:13:42.241089+00 2025-11-23 20:13:42.2411+00 f t Danke DOG \N 45.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14262 +11757 2025-11-23 20:34:03.408592+00 2025-11-23 20:34:03.408603+00 f t Kira DOG \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14263 +11758 2025-11-23 20:38:06.54109+00 2025-11-23 20:38:06.541104+00 f t Kira DOG \N 13.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14264 +11759 2025-11-23 20:51:37.366608+00 2025-11-23 20:51:37.366616+00 f t Sirio CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14266 +11760 2025-11-23 20:59:04.39693+00 2025-11-23 20:59:04.396939+00 f t Tobiano DOG \N 13.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14267 +11761 2025-11-23 21:21:02.485525+00 2025-11-23 21:21:02.485534+00 f t Malvina DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14268 +11762 2025-11-23 22:23:09.468265+00 2025-11-23 22:23:09.468276+00 f t Pilar DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14270 +11763 2025-11-23 22:24:14.094609+00 2025-11-23 22:24:14.094621+00 f t Pilar DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14270 +11764 2025-11-23 22:24:47.512288+00 2025-11-23 22:24:47.512297+00 f t Pilar DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14270 +11765 2025-11-23 22:38:17.821196+00 2025-11-23 22:38:17.821207+00 f t Empanada DOG \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14272 +11766 2025-11-23 22:38:39.082302+00 2025-11-23 22:38:39.082312+00 f t Empanada CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14272 +11767 2025-11-23 22:41:52.135338+00 2025-11-23 22:41:52.135347+00 f t Michu CAT \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14273 +11768 2025-11-23 23:18:09.751089+00 2025-11-23 23:18:09.751104+00 f t Copito DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14274 +11769 2025-11-23 23:18:55.773081+00 2025-11-23 23:18:55.77309+00 f t Luli CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14275 +11770 2025-11-24 00:07:14.994362+00 2025-11-24 00:07:14.99437+00 f t Belchior CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14276 +11771 2025-11-24 00:14:58.679655+00 2025-11-24 00:14:58.679664+00 f t Roma DOG \N 5.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14277 +11772 2025-11-24 00:57:27.029091+00 2025-11-24 00:57:27.029104+00 f t Grillo DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14278 +11773 2025-11-24 01:04:29.391692+00 2025-11-24 01:04:29.391702+00 f t Salem CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14279 +11774 2025-11-24 01:26:49.460019+00 2025-11-24 01:26:49.460032+00 f t Snoopy DOG \N 10.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14280 +11775 2025-11-24 01:46:28.038744+00 2025-11-24 01:46:28.038754+00 f t Felipe CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14282 +11776 2025-11-24 02:11:24.772157+00 2025-11-24 02:11:24.772166+00 f t Juanito CAT \N 0.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14285 +11777 2025-11-24 02:11:37.841666+00 2025-11-24 02:11:37.841675+00 f t Octavia CAT \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14286 +11778 2025-11-24 02:55:43.271389+00 2025-11-24 02:55:43.271398+00 f t Oso DOG \N 15.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14287 +11779 2025-11-24 03:38:03.591422+00 2025-11-24 03:38:03.591434+00 f t Jessie CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14288 +11780 2025-11-24 03:43:15.067048+00 2025-11-24 03:43:15.06706+00 f t Leon DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14289 +11781 2025-11-24 04:05:36.654158+00 2025-11-24 04:05:36.654168+00 f t Maximo DOG \N 50.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14291 +11782 2025-11-24 04:42:33.534425+00 2025-11-24 04:42:33.534435+00 f t Elena CAT \N 12.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14293 +11783 2025-11-24 05:07:03.777889+00 2025-11-24 05:07:03.777931+00 f t Centauro CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14294 +11784 2025-11-24 05:15:08.912531+00 2025-11-24 05:15:08.912545+00 f t Hector ( Bebu) DOG \N 12.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14295 +11785 2025-11-24 05:20:36.697366+00 2025-11-24 05:20:36.697376+00 f t Lennon CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14296 +11786 2025-11-24 05:40:19.045334+00 2025-11-24 05:40:19.045345+00 f t Cayetano DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14297 +11787 2025-11-24 05:45:07.745633+00 2025-11-24 05:45:07.745643+00 f t Cayetano DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14298 +11788 2025-11-24 05:48:08.253975+00 2025-11-24 05:48:08.253984+00 f t Cayetano DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14299 +11789 2025-11-24 06:27:42.376404+00 2025-11-24 06:27:42.376413+00 f t Cayetano DOG \N 26.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14300 +11790 2025-11-24 07:20:20.347416+00 2025-11-24 07:20:20.347424+00 f t Chueco CAT \N 3.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14301 +11791 2025-11-24 08:57:06.068523+00 2025-11-24 08:57:06.068537+00 f t Tito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14303 +11792 2025-11-24 09:03:44.998968+00 2025-11-24 09:03:44.998977+00 f t Wanda DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14304 +11793 2025-11-24 09:28:56.205447+00 2025-11-24 09:28:56.205459+00 f t Mulan CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14305 +11795 2025-11-24 09:48:40.826506+00 2025-11-24 09:48:40.826516+00 f t Timotea CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14307 +11796 2025-11-24 09:53:39.676022+00 2025-11-24 09:53:39.676032+00 f t Ezio CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14308 +11797 2025-11-24 10:01:58.566651+00 2025-11-24 10:01:58.566661+00 f t CHIMUELO CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14310 +11798 2025-11-24 10:19:21.319197+00 2025-11-24 10:19:21.319205+00 f t Bruno DOG \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14311 +11799 2025-11-24 10:48:32.325564+00 2025-11-24 10:48:32.325573+00 f t Coco DOG \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14313 +11800 2025-11-24 10:58:36.115518+00 2025-11-24 10:58:36.115528+00 f t Kira DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14314 +11827 2025-11-24 14:31:20.672328+00 2025-11-24 14:31:20.67234+00 f t Frida CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14345 +11830 2025-11-24 14:42:19.132304+00 2025-11-24 14:42:19.132313+00 f t Pancho DOG \N 40.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14348 +11832 2025-11-24 14:51:52.965192+00 2025-11-24 14:51:52.965202+00 f t Kiki CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14349 +11833 2025-11-24 15:00:02.661269+00 2025-11-24 15:00:02.661284+00 f t Gino DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14350 +11834 2025-11-24 15:16:24.03382+00 2025-11-24 15:16:24.03383+00 f t Michi DOG \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14351 +11835 2025-11-24 15:28:22.960491+00 2025-11-24 15:28:22.960501+00 f t Morgana CAT \N 3.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14352 +11836 2025-11-24 15:29:02.28972+00 2025-11-24 15:29:02.28973+00 f t Ginebra CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14352 +11837 2025-11-24 15:31:12.171113+00 2025-11-24 15:31:12.171124+00 f t Gala DOG \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14353 +11838 2025-11-24 15:39:30.954228+00 2025-11-24 15:39:30.954237+00 f t Paco DOG \N 9.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14356 +11839 2025-11-24 15:39:41.039825+00 2025-11-24 15:39:41.039837+00 f t Rumi CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14355 +11840 2025-11-24 16:08:52.121169+00 2025-11-24 16:08:52.121178+00 f t Otto CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14357 +11841 2025-11-24 16:31:59.402061+00 2025-11-24 16:31:59.402071+00 f t Toby DOG \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14358 +11842 2025-11-24 16:34:17.377364+00 2025-11-24 16:34:17.377373+00 f t Max CAT \N 14.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14359 +11843 2025-11-24 17:12:25.148497+00 2025-11-24 17:12:25.148506+00 f t Milo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14360 +11844 2025-11-24 17:13:50.677451+00 2025-11-24 17:13:50.67746+00 f t Vampi CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14360 +11845 2025-11-24 17:18:42.064891+00 2025-11-24 17:18:42.0649+00 f t Shawn CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14361 +11846 2025-11-24 17:31:54.781121+00 2025-11-24 17:31:54.78113+00 f t Luna CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14362 +11847 2025-11-24 17:54:29.918859+00 2025-11-24 17:54:29.918867+00 f t Coco CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14363 +11848 2025-11-24 17:56:24.103975+00 2025-11-24 17:56:24.103983+00 f t Coco CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14364 +11849 2025-11-24 18:03:19.593241+00 2025-11-24 18:03:19.59325+00 f t jake DOG \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14365 +11850 2025-11-24 18:03:27.70158+00 2025-11-24 18:03:27.701588+00 f t Coco CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14366 +11851 2025-11-24 18:03:37.574689+00 2025-11-24 18:03:37.574698+00 f t jake CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14365 +11852 2025-11-24 18:19:32.365583+00 2025-11-24 18:19:32.365592+00 f t Laska CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14367 +11853 2025-11-24 18:42:13.579874+00 2025-11-24 18:42:13.579883+00 f t Mascabo DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14368 +11854 2025-11-24 19:03:47.88645+00 2025-11-24 19:03:47.886459+00 f t Tito CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14369 +11855 2025-11-24 19:05:54.539744+00 2025-11-24 19:05:54.539757+00 f t Mia CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14370 +11856 2025-11-24 19:52:14.341686+00 2025-11-24 19:52:14.341694+00 f t Mascherano DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14372 +11857 2025-11-24 19:52:42.410207+00 2025-11-24 19:52:42.410216+00 f t Luna DOG \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14373 +11858 2025-11-24 19:54:17.618134+00 2025-11-24 19:54:17.618145+00 f t Sol CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14372 +11859 2025-11-24 20:15:29.454254+00 2025-11-24 20:15:29.454263+00 f t Jazz CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14374 +11860 2025-11-24 20:17:48.481648+00 2025-11-24 20:17:48.481659+00 f t Milo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14375 +11861 2025-11-24 20:42:19.263444+00 2025-11-24 20:42:19.263454+00 f t Momo CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14377 +11862 2025-11-24 20:44:17.11972+00 2025-11-24 20:44:17.11973+00 f t Bingo CAT \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14378 +11863 2025-11-24 20:58:31.894644+00 2025-11-24 20:58:31.894658+00 f t Luna DOG \N 27.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14380 +11864 2025-11-24 20:58:57.894835+00 2025-11-24 20:58:57.894844+00 f t Figaro CAT \N 7.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14381 +11865 2025-11-24 21:03:47.571118+00 2025-11-24 21:03:47.571127+00 f t Luna DOG \N 30.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14383 +11866 2025-11-24 21:32:27.748993+00 2025-11-24 21:32:27.749006+00 f t Bruno CAT \N 0.40 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14384 +11867 2025-11-24 21:38:30.488542+00 2025-11-24 21:38:30.488551+00 f t Mota DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14385 +11868 2025-11-24 21:39:27.936304+00 2025-11-24 21:39:27.936314+00 f t Rocky DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14386 +11869 2025-11-24 22:00:41.79267+00 2025-11-24 22:00:41.792683+00 f t Timon DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14387 +11870 2025-11-24 22:00:56.318811+00 2025-11-24 22:00:56.318819+00 f t Pumba DOG \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14387 +11871 2025-11-24 22:12:57.212212+00 2025-11-24 22:12:57.212222+00 f t Tobi DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14389 +11872 2025-11-24 22:19:54.287023+00 2025-11-24 22:19:54.287031+00 f t Pipo DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14391 +11873 2025-11-24 22:20:18.905561+00 2025-11-24 22:20:18.905572+00 f t Plomito CAT \N 53.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14392 +11874 2025-11-24 22:21:08.384874+00 2025-11-24 22:21:08.384888+00 f t Pipo DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14393 +7289 2025-09-17 23:02:54.880577+00 2025-09-17 23:02:54.88059+00 f t Fito CAT \N 6.00 0.00 t \N 2017-09-01 \N \N \N MALE \N \N f \N \N 8819 +11875 2025-11-24 22:36:59.340533+00 2025-11-24 22:36:59.340544+00 f t Kael DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14396 +11876 2025-11-24 22:37:38.807914+00 2025-11-24 22:37:38.807924+00 f t Kael DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14397 +11877 2025-11-24 22:46:48.419679+00 2025-11-24 22:46:48.41969+00 f t Milo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14398 +11878 2025-11-24 22:52:02.224269+00 2025-11-24 22:52:02.224282+00 f t Milo CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14399 +11879 2025-11-24 22:53:09.552637+00 2025-11-24 22:53:09.552653+00 f t Pupi CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14399 +11880 2025-11-24 23:10:57.514361+00 2025-11-24 23:10:57.514374+00 f t Leo DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14400 +11881 2025-11-24 23:23:00.75155+00 2025-11-24 23:23:00.75156+00 f t Kala CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14401 +11882 2025-11-24 23:30:56.761122+00 2025-11-24 23:30:56.761131+00 f t Ona DOG \N 40.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14404 +11883 2025-11-24 23:32:26.269207+00 2025-11-24 23:32:26.269216+00 f t Hanzo CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14405 +11884 2025-11-24 23:32:30.474168+00 2025-11-24 23:32:30.474182+00 f t Chía CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14406 +11885 2025-11-24 23:36:32.642366+00 2025-11-24 23:36:32.642376+00 f t Lolo CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14408 +11886 2025-11-24 23:37:14.348923+00 2025-11-24 23:37:14.348932+00 f t Simón CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14408 +11887 2025-11-25 00:01:19.049508+00 2025-11-25 00:01:19.04952+00 f t Indio CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14409 +11794 2025-11-24 09:42:18.702246+00 2025-11-24 09:42:18.702258+00 f t tony CAT 0 4.00 0.00 f \N \N \N \N MALE \N f \N 113 14306 +11888 2025-11-25 00:12:24.451376+00 2025-11-25 00:12:24.451385+00 f t Ele CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14410 +11889 2025-11-25 00:21:03.209787+00 2025-11-25 00:21:03.209801+00 f t Loui CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14411 +11890 2025-11-25 00:21:44.501876+00 2025-11-25 00:21:44.501885+00 f t Canela CAT \N 6.70 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14412 +11891 2025-11-25 00:21:58.462441+00 2025-11-25 00:21:58.462453+00 f t Loui CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14413 +11892 2025-11-25 00:24:10.661762+00 2025-11-25 00:24:10.661772+00 f t Chisita DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14414 +11893 2025-11-25 00:26:28.192561+00 2025-11-25 00:26:28.19257+00 f t Cielo DOG \N 45.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14415 +11894 2025-11-25 00:36:28.700568+00 2025-11-25 00:36:28.700577+00 f t Nala DOG \N 10.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14417 +11895 2025-11-25 00:38:02.4382+00 2025-11-25 00:38:02.438215+00 f t Lolo CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14418 +11896 2025-11-25 00:38:41.465471+00 2025-11-25 00:38:41.46548+00 f t Pusheen CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14418 +11897 2025-11-25 00:46:15.86497+00 2025-11-25 00:46:15.86498+00 f t Roger DOG \N 25.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14419 +11898 2025-11-25 00:47:08.257843+00 2025-11-25 00:47:08.257852+00 f t Chocolate DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14419 +11899 2025-11-25 00:50:17.83103+00 2025-11-25 00:50:17.831039+00 f t Nala CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14420 +11900 2025-11-25 01:01:45.993955+00 2025-11-25 01:01:45.993965+00 f t Nala DOG \N 10.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14422 +11901 2025-11-25 01:11:57.713207+00 2025-11-25 01:11:57.713221+00 f t Pochi CAT \N 2.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14424 +11902 2025-11-25 01:19:47.960581+00 2025-11-25 01:19:47.96059+00 f t Jazmin CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14425 +11903 2025-11-25 01:30:37.125109+00 2025-11-25 01:30:37.125123+00 f t Rayo DOG \N 30.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14426 +11904 2025-11-25 01:32:54.725449+00 2025-11-25 01:32:54.725458+00 f t Aceituna CAT \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14427 +11905 2025-11-25 01:38:48.424982+00 2025-11-25 01:38:48.424993+00 f t Kendo CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14429 +11906 2025-11-25 01:39:50.009615+00 2025-11-25 01:39:50.009623+00 f t Michulina CAT \N 1.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14430 +11907 2025-11-25 01:41:14.816902+00 2025-11-25 01:41:14.816911+00 f t Panchi DOG \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14431 +11908 2025-11-25 02:00:45.193567+00 2025-11-25 02:00:45.193576+00 f t Poroto DOG \N 20.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14434 +11909 2025-11-25 02:00:47.71269+00 2025-11-25 02:00:47.712699+00 f t Anna CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14433 +11910 2025-11-25 02:01:24.093038+00 2025-11-25 02:01:24.093048+00 f t Luz CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14435 +11911 2025-11-25 02:01:52.375573+00 2025-11-25 02:01:52.375585+00 f t Ricota CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14436 +11912 2025-11-25 02:02:16.366525+00 2025-11-25 02:02:16.366538+00 f t Anna CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14433 +11913 2025-11-25 02:03:26.543798+00 2025-11-25 02:03:26.543807+00 f t Draco DOG \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14437 +11914 2025-11-25 02:04:18.273981+00 2025-11-25 02:04:18.273989+00 f t Ricota CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14438 +11915 2025-11-25 02:08:53.824206+00 2025-11-25 02:08:53.824216+00 f t Apolo CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14439 +11916 2025-11-25 02:09:53.021597+00 2025-11-25 02:09:53.021611+00 f t Momo CAT \N 5.50 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14441 +11917 2025-11-25 03:03:14.14468+00 2025-11-25 03:03:14.144689+00 f t Mila DOG \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14443 +11918 2025-11-25 03:04:39.826108+00 2025-11-25 03:04:39.82612+00 f t Toby CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14443 +11919 2025-11-25 10:03:34.860325+00 2025-11-25 10:03:34.86034+00 f t Frida CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14448 +11920 2025-11-25 10:38:29.604679+00 2025-11-25 10:38:29.604693+00 f t Nelson mendieta DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14449 +11921 2025-11-25 10:54:28.679676+00 2025-11-25 10:54:28.679691+00 f t Nelson DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14450 +11922 2025-11-25 11:04:31.887862+00 2025-11-25 11:04:31.887876+00 f t Nelson DOG \N 27.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14451 +11923 2025-11-25 11:48:36.422095+00 2025-11-25 11:48:36.422105+00 f t Mailo DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14453 +11924 2025-11-25 11:56:27.454446+00 2025-11-25 11:56:27.454459+00 f t mal CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14454 +11925 2025-11-25 12:05:41.713229+00 2025-11-25 12:05:41.713238+00 f t Olympia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14455 +11926 2025-11-25 12:37:14.843293+00 2025-11-25 12:37:14.843302+00 f t Milo DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14460 +11927 2025-11-25 12:51:59.699296+00 2025-11-25 12:51:59.699305+00 f t Morita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14462 +11928 2025-11-25 12:54:22.850965+00 2025-11-25 12:54:22.850974+00 f t Maquiavela CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14463 +11929 2025-11-25 12:56:57.839764+00 2025-11-25 12:56:57.839775+00 f t Maquiavela CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14464 +11930 2025-11-25 13:14:07.341435+00 2025-11-25 13:14:07.341449+00 f t Hermes DOG \N 30.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14466 +11931 2025-11-25 13:35:55.428139+00 2025-11-25 13:35:55.428148+00 f t Nina CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14468 +11932 2025-11-25 13:38:09.986294+00 2025-11-25 13:38:09.986304+00 f t Nina DOG \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14469 +11933 2025-11-25 13:51:30.105655+00 2025-11-25 13:51:30.105672+00 f t Clementina CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14470 +11934 2025-11-25 14:05:00.581333+00 2025-11-25 14:05:00.582674+00 f t Miel CAT \N 4.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14471 +11935 2025-11-25 14:09:04.526292+00 2025-11-25 14:09:04.526311+00 f t chase DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14472 +11937 2025-11-25 14:13:04.441941+00 2025-11-25 14:13:04.441983+00 f t lisa DOG \N 11.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14474 +11938 2025-11-25 14:13:10.407604+00 2025-11-25 14:13:10.40763+00 f t Miel CAT \N 4.80 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14475 +11939 2025-11-25 14:25:11.820923+00 2025-11-25 14:25:11.820936+00 f t Briana CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14476 +11940 2025-11-25 14:42:59.963954+00 2025-11-25 14:42:59.963967+00 f t Gatito DOG \N 2.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14480 +11941 2025-11-25 14:47:20.610345+00 2025-11-25 14:47:20.610355+00 f t Gin CAT \N 4.50 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14481 +11942 2025-11-25 14:52:41.807473+00 2025-11-25 14:52:41.807482+00 f t Marie CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14482 +11943 2025-11-25 15:16:53.175377+00 2025-11-25 15:16:53.17539+00 f t Ringo DOG \N 21.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14483 +11944 2025-11-25 15:22:05.891089+00 2025-11-25 15:22:05.891102+00 f t ile CAT \N 4.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14484 +11945 2025-11-25 15:27:13.576019+00 2025-11-25 15:27:13.576031+00 f t Thor DOG \N 22.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14485 +11946 2025-11-25 15:29:48.857112+00 2025-11-25 15:29:48.857121+00 f t Kero CAT \N 2.50 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14486 +11947 2025-11-25 15:31:31.8623+00 2025-11-25 15:31:31.862314+00 f t kero CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14486 +11948 2025-11-25 15:32:31.203866+00 2025-11-25 15:32:31.203874+00 f t Kiya CAT \N 5.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14487 +11949 2025-11-25 15:34:20.995055+00 2025-11-25 15:34:20.995067+00 f t Athenas CAT \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14488 +11950 2025-11-25 15:48:32.529102+00 2025-11-25 15:48:32.529115+00 f t Violeta DOG \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14489 +11951 2025-11-25 15:54:28.668089+00 2025-11-25 15:54:28.6681+00 f t Sukira CAT \N 3.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14490 +11952 2025-11-25 16:00:50.028392+00 2025-11-25 16:00:50.028405+00 f t Tito CAT \N 1.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14491 +11953 2025-11-25 16:21:46.480731+00 2025-11-25 16:21:46.48074+00 f t menta DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14493 +11954 2025-11-25 16:23:39.219106+00 2025-11-25 16:23:39.219115+00 f t Rodi CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14494 +11955 2025-11-25 16:29:41.908441+00 2025-11-25 16:29:41.908451+00 f t JUNO CAT \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14495 +11956 2025-11-25 16:30:03.169737+00 2025-11-25 16:30:03.169754+00 f t Perla DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14496 +11957 2025-11-25 16:32:08.017835+00 2025-11-25 16:32:08.017846+00 f t cielo DOG \N 15.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14497 +11958 2025-11-25 16:32:36.39602+00 2025-11-25 16:32:36.396028+00 f t tyson DOG \N 7.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14497 +11959 2025-11-25 16:35:29.49405+00 2025-11-25 16:35:29.49406+00 f t Perla DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14499 +11960 2025-11-25 16:38:05.437103+00 2025-11-25 16:38:05.437112+00 f t FRIDA DOG \N 1.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14500 +11961 2025-11-25 16:45:03.246605+00 2025-11-25 16:45:03.24662+00 f t TYSEL DOG \N 50.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14504 +11962 2025-11-25 16:46:44.131155+00 2025-11-25 16:46:44.131164+00 f t Perla DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14505 +11936 2025-11-25 14:12:14.843852+00 2025-11-25 14:12:14.844269+00 f t Gachi CAT 0 6.25 0.00 f \N \N \N \N FEMALE \N f \N 1583 14473 +11963 2025-11-25 17:20:57.275559+00 2025-11-25 17:20:57.275575+00 f t Chiqui DOG \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14506 +11964 2025-11-25 17:21:51.085516+00 2025-11-25 17:21:51.085525+00 f t Nani CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14507 +11965 2025-11-25 17:42:39.457033+00 2025-11-25 17:42:39.457362+00 f t Bastian CAT \N 4.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14510 +11966 2025-11-25 17:52:38.512229+00 2025-11-25 17:52:38.512238+00 f t Moro DOG \N 20.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14512 +11967 2025-11-25 17:53:55.516717+00 2025-11-25 17:53:55.51741+00 f t Nala DOG \N 16.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14512 +11968 2025-11-25 17:59:18.223543+00 2025-11-25 17:59:18.223883+00 f t Lola DOG \N 38.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14513 +11969 2025-11-25 18:05:08.283096+00 2025-11-25 18:05:08.283614+00 f t Olympia CAT \N 4.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14514 +11970 2025-11-25 18:25:37.106441+00 2025-11-25 18:25:37.106453+00 f t Manjula CAT \N 3.60 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14517 +11971 2025-11-25 18:39:59.126308+00 2025-11-25 18:39:59.12632+00 f t Misha CAT \N 2.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14519 +11972 2025-11-25 18:45:29.194236+00 2025-11-25 18:45:29.194249+00 f t Benito CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14524 +11973 2025-11-25 18:45:32.23598+00 2025-11-25 18:45:32.235989+00 f t Benito CAT \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14523 +11974 2025-11-25 19:08:24.566918+00 2025-11-25 19:08:24.566927+00 f t Apolo DOG \N 10.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14527 +11975 2025-11-25 19:12:45.697198+00 2025-11-25 19:12:45.697209+00 f t Bastian CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14528 +11976 2025-11-25 19:55:23.795566+00 2025-11-25 19:55:23.795575+00 f t Duque DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14530 +11977 2025-11-25 20:08:30.011302+00 2025-11-25 20:08:30.01131+00 f t Renata DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14531 +11978 2025-11-25 20:19:49.478652+00 2025-11-25 20:19:49.478661+00 f t Nacho DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14532 +11979 2025-11-25 20:51:34.566653+00 2025-11-25 20:51:34.566661+00 f t TIRSO CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14533 +11980 2025-11-25 21:00:07.944397+00 2025-11-25 21:00:07.944412+00 f t Aurora CAT \N 7.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14534 +11981 2025-11-25 21:08:53.072765+00 2025-11-25 21:08:53.072776+00 f t Nacho DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14535 +11982 2025-11-25 21:11:13.013353+00 2025-11-25 21:11:13.013362+00 f t Horus CAT \N 5.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14536 +11983 2025-11-25 21:37:29.310833+00 2025-11-25 21:37:29.310841+00 f t Tita CAT \N 3.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14537 +11984 2025-11-25 21:39:09.822358+00 2025-11-25 21:39:09.822367+00 f t Bambi DOG \N 6.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14538 +11985 2025-11-25 21:59:56.745975+00 2025-11-25 21:59:56.745985+00 f t Brixsie DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14541 +11986 2025-11-25 22:19:35.208728+00 2025-11-25 22:19:35.209029+00 f t Cumbia CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14542 +11987 2025-11-25 22:35:41.618062+00 2025-11-25 22:35:41.618075+00 f t Luca CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14544 +11988 2025-11-25 22:36:10.145083+00 2025-11-25 22:36:10.145094+00 f t Luca CAT \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14545 +11989 2025-11-25 22:39:52.95341+00 2025-11-25 22:39:52.95342+00 f t Nacho DOG \N 25.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14546 +11990 2025-11-25 22:45:52.134641+00 2025-11-25 22:45:52.13465+00 f t Perla DOG \N 18.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14547 +11991 2025-11-25 22:46:36.908575+00 2025-11-25 22:46:36.908588+00 f t Nina DOG \N 16.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14548 +11992 2025-11-25 23:04:39.74994+00 2025-11-25 23:04:39.74995+00 f t Tito CAT \N 8.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14550 +11993 2025-11-25 23:09:50.572585+00 2025-11-25 23:09:50.572593+00 f t Celeste DOG \N 30.00 0.00 t \N \N \N \N \N FEMALE \N \N f \N \N 14551 +11994 2025-11-25 23:45:28.681421+00 2025-11-25 23:45:28.68143+00 f t Duque DOG \N 5.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14555 +11995 2025-11-26 00:26:49.371123+00 2025-11-26 00:26:49.371131+00 f t Chanel CAT \N 8.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14557 +11996 2025-11-26 00:32:16.839065+00 2025-11-26 00:32:16.839075+00 f t Lennon CAT \N 6.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14558 +11997 2025-11-26 00:39:40.504606+00 2025-11-26 00:39:40.504614+00 f t Emma DOG \N 20.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14560 +11998 2025-11-26 01:06:57.790412+00 2025-11-26 01:06:57.790425+00 f t Poroto CAT \N 4.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14564 +11999 2025-11-26 01:19:48.611977+00 2025-11-26 01:19:48.611985+00 f t Joy DOG \N 6.00 0.00 f \N \N \N \N \N FEMALE \N \N f \N \N 14567 +12000 2025-11-26 01:29:59.694819+00 2025-11-26 01:29:59.694831+00 f t Simba DOG \N 3.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14568 +12001 2025-11-26 02:27:05.172198+00 2025-11-26 02:27:05.172211+00 f t Bruno DOG \N 8.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14570 +12002 2025-11-26 02:28:34.551063+00 2025-11-26 02:28:34.551082+00 f t Simón DOG \N 2.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14570 +12003 2025-11-26 03:34:32.199994+00 2025-11-26 03:34:32.200003+00 f t Rocky CAT \N 3.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14571 +12004 2025-11-26 03:40:58.925835+00 2025-11-26 03:40:58.925844+00 f t Milo DOG \N 28.00 0.00 t \N \N \N \N \N MALE \N \N f \N \N 14572 +12005 2025-11-26 04:19:36.647968+00 2025-11-26 04:19:36.647978+00 f t Tomy CAT \N 15.00 0.00 f \N \N \N \N \N MALE \N \N f \N \N 14573 +\. + + +-- +-- Data for Name: mascotas_petowner; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_petowner (id, created_at, updated_at, deleted, active, first_name, last_name, email, phone, address, address_road, address_number, address_details, address_postal_code, gender, birth_date, profile_picture, geo_latitude, geo_longitude, neighborhood_id, user_id, campaign_id, alias) FROM stdin; +9687 2025-09-30 19:47:26.791274+00 2025-09-30 19:47:26.791285+00 f t Claudia vidal clau.vidal556@gmail.com 5492976231911 \N MONROE 1654 3C \N FEMALE \N -34.5540848 -58.4526738 3 \N \N cvidal-2 +9865 2025-10-02 14:29:39.174088+00 2025-10-02 14:29:39.174098+00 f t Invitado Amar invitado-1759415377297@example.com 55555555 \N \N \N \N \N 147 \N \N \N +10037 2025-10-05 06:31:33.969055+00 2025-10-05 06:31:33.969064+00 f t Invitado Amar invitado-1759645893610@example.com 55555555 \N \N \N \N \N 42 \N \N \N +10218 2025-10-07 18:46:35.298862+00 2025-10-07 18:46:35.298871+00 f t Invitado Amar invitado-1759862794918@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10400 2025-10-10 12:28:11.723765+00 2025-10-10 12:28:11.723773+00 f t Monica Cambero monicacambero@hotmail.com +5411644700111 \N Montevideo 1590 piso 11 depto f torreo rio \N \N -34.4325874 -58.585476 22 \N \N \N +10582 2025-10-13 02:49:31.368513+00 2025-10-13 02:49:31.368522+00 f t Invitado Amar invitado-1760323770969@example.com 55555555 \N \N \N \N \N 13 \N \N \N +10763 2025-10-15 13:46:18.520461+00 2025-10-15 13:46:18.520473+00 f t oscar isidro florido oscarisidroflorido68@gmail.com 91128863100 \N bulnes 214 \N \N MALE \N -34.6082628 -58.4188532 23 \N \N \N +10943 2025-10-17 10:23:32.926527+00 2025-10-17 10:23:32.926536+00 f t Invitado Amar invitado-1760696612128@example.com 55555555 \N \N \N \N \N 32 \N \N \N +11123 2025-10-20 11:03:17.156047+00 2025-10-20 11:03:17.156059+00 f t Diego Alejandro Vallejo diego.alevallejo2012@gmail.com +541139516838 \N SAN LORENZO Y CAMPICHUELO pasaje 4 casa 1826 1800 Pasaje 4 casa 1826 \N \N \N \N 73 \N \N \N +11305 2025-10-22 01:20:14.701605+00 2025-10-22 01:20:14.701617+00 f t Invitado Amar invitado-1761096013891@example.com 55555555 \N \N \N \N \N 153 \N \N \N +11484 2025-10-25 00:46:03.888979+00 2025-10-25 00:46:03.888988+00 f t Invitado Amar invitado-1761353162835@example.com 55555555 \N \N \N \N \N 53 \N \N \N +11667 2025-10-28 00:18:16.44106+00 2025-10-28 00:18:16.441073+00 f t Invitado Amar invitado-1761610693488@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11849 2025-10-29 16:00:39.702151+00 2025-10-29 16:00:39.702165+00 f t Invitado Amar invitado-1761753639244@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12033 2025-10-31 03:31:40.14138+00 2025-10-31 03:31:40.141389+00 f t Invitado Amar invitado-1761881499194@example.com 55555555 \N \N \N \N \N 31 \N \N \N +12397 2025-11-04 21:53:45.397567+00 2025-11-04 21:53:45.397577+00 f t Invitado Amar invitado-1762293224560@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13114 2025-11-12 20:52:32.588575+00 2025-11-12 20:52:32.588586+00 f t chloe olivero chloeolivero05@gmail.com +541164212829 \N avenida san martin 2645 4 A \N \N -33.318054 -62.0368036 88 2120 \N \N +274 2024-12-20 18:15:05.186+00 2024-12-20 18:15:05.186+00 f t Roxana Inverso roxinverso@gmail.com 5491125331369 \N Avenida Francisco beiro 3671 entre emilio lamarca y san Nicolás - depto 7 \N FEMALE 1969-09-13 -34.60120321428571 -58.504517885714286 17 418 \N rinverso +12579 2025-11-07 04:55:11.047655+00 2025-11-07 04:55:11.047665+00 f t Invitado Amar invitado-1762491310689@example.com 55555555 \N \N \N \N \N 49 \N \N \N +12759 2025-11-09 03:52:38.566446+00 2025-11-09 03:52:38.566459+00 f t Invitado Amar invitado-1762660357790@example.com 55555555 \N \N \N \N \N 73 \N \N \N +13343 2025-11-15 00:08:12.771009+00 2025-11-15 00:08:12.771019+00 f t Annie Saldana saldanyta@hotmail.com +541165170121 \N Avenida cabildo 4277 10c \N \N \N \N 31 2152 \N \N +13547 2025-11-17 21:21:45.05805+00 2025-11-17 21:21:45.058059+00 f t Invitado Amar invitado-1763414504638@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12942 2025-11-11 02:55:47.521185+00 2025-11-11 02:55:47.521193+00 f t Kiara Farias Espíndola fariaskika61@gmail.com +541162360326 \N Entre Avellaneda y cordero, las piedras, virreyes 2072 \N \N \N \N 74 2098 \N \N +13734 2025-11-19 10:02:56.380715+00 2025-11-19 10:02:56.380724+00 f t Invitado Amar invitado-1763546575955@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13915 2025-11-20 16:16:51.207888+00 2025-11-20 16:16:51.2079+00 f t Invitado Amar invitado-1763655410813@example.com 55555555 \N \N \N \N \N 14 \N \N \N +79 2024-10-30 14:13:09.003+00 2024-10-30 14:13:09.003+00 f t Mara Aballay marita.mara6@gmail.com 5491155978886 Avenida Rivadavia 3034 - Entre la Rioja y Urquiza\n3 piso departamento 18 Avenida Rivadavia 3034 Entre la Rioja y Urquiza \N FEMALE \N -34.61047952040816 -58.40941370612245 18 228 \N maballay +14275 2025-11-23 23:18:17.137086+00 2025-11-23 23:18:17.137098+00 f t Invitado Amar invitado-1763939896111@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14456 2025-11-25 12:10:16.764074+00 2025-11-25 12:10:16.764089+00 f t Invitado Amar invitado-1764072616632@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9688 2025-09-30 19:47:59.498174+00 2025-09-30 19:47:59.498188+00 f t Invitado Amar invitado-1759261679091@example.com 55555555 \N \N \N \N \N 154 \N \N iamar-7610 +4638 2025-07-15 21:56:26.449473+00 2025-07-15 21:56:26.449481+00 f t TEST TEST valentina@amarmascotas.com +541111111111 \N Falsa 123 1B \N \N \N 42.1838369 12.6559681 3 \N \N ttest-6 +10038 2025-10-05 06:47:15.42797+00 2025-10-05 06:47:15.427979+00 f t Invitado Amar invitado-1759646836046@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13115 2025-11-12 20:55:18.212824+00 2025-11-12 20:55:18.212833+00 f t Invitado Amar invitado-1762980917820@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13345 2025-11-15 00:11:59.235576+00 2025-11-15 00:11:59.235584+00 f t Invitado Amar invitado-1763165518770@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10219 2025-10-07 19:00:56.898653+00 2025-10-07 19:00:56.898664+00 f t Juan Rodella juanchorodella46@gmail.com +541144110672 \N DR JOSE INGENIEROS 3488 CASA \N MALE \N -34.5124361 -58.5140585 39 \N \N \N +10401 2025-10-10 12:50:05.78211+00 2025-10-10 12:50:05.782119+00 f t Paula Beatriz Ramos paubramos@gmail.com 5491150179792 \N Pilar 1630 casa, CABA \N FEMALE \N -34.6549854 -58.5077573 19 \N \N \N +10583 2025-10-13 02:50:11.131177+00 2025-10-13 02:50:11.131186+00 f t Invitado Amar invitado-1760323810720@example.com 55555555 \N \N \N \N \N 66 \N \N \N +13548 2025-11-17 21:23:40.876477+00 2025-11-17 21:23:40.876485+00 t t Invitado Amar invitado-1763414620719@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13735 2025-11-19 10:08:51.023769+00 2025-11-19 10:08:51.023777+00 f t Invitado Amar invitado-1763546930351@example.com 55555555 \N \N \N \N \N 39 \N \N \N +10944 2025-10-17 10:25:02.373414+00 2025-10-17 10:25:02.373428+00 f t Invitado Amar invitado-1760696701447@example.com 55555555 \N \N \N \N \N 15 \N \N \N +11124 2025-10-20 11:10:48.655027+00 2025-10-20 11:10:48.655036+00 f t Invitado Amar invitado-1760958648282@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11306 2025-10-22 01:20:29.435821+00 2025-10-22 01:20:29.435829+00 f t Invitado Amar invitado-1761096028926@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11485 2025-10-25 01:35:18.14741+00 2025-10-25 01:35:18.147418+00 f t Invitado Amar invitado-1761356114775@example.com 55555555 \N \N \N \N \N 32 \N \N \N +11668 2025-10-28 00:19:30.590168+00 2025-10-28 00:19:30.590177+00 f t Invitado Amar invitado-1761610769810@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11850 2025-10-29 16:15:20.672337+00 2025-10-29 16:15:20.672346+00 f t Invitado Amar invitado-1761754518954@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12034 2025-10-31 04:12:14.71026+00 2025-10-31 04:12:14.710268+00 f t Invitado Amar invitado-1761883932581@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10764 2025-10-15 14:15:39.82699+00 2025-10-15 14:15:39.826998+00 f t monica iuro iuro.monica@gmail.com 91167080503 \N cuba 1858 2 D \N FEMALE \N -34.5632238 -58.452897 3 1947 \N \N +119 2024-10-30 14:13:09.45+00 2024-10-30 14:13:09.45+00 f t Melissa Castaño Melissac0506@hotmail.com 5491136406327 Paraguay 4870 depto 3E Paraguay 4870 Piso 3 Dto E \N FEMALE \N -34.58207839183674 -58.427772742857144 1 268 \N mcastano +12216 2025-11-02 00:16:34.979501+00 2025-11-02 00:16:34.97951+00 f t Invitado Amar invitado-1762042593987@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12398 2025-11-04 22:19:15.304751+00 2025-11-04 22:19:15.304761+00 f t Invitado Amar invitado-1762294754447@example.com 55555555 \N \N \N \N \N 151 \N \N \N +12580 2025-11-07 05:16:01.28037+00 2025-11-07 05:16:01.280379+00 f t Invitado Amar invitado-1762492560862@example.com 55555555 \N \N \N \N \N 62 \N \N \N +12760 2025-11-09 03:55:25.534768+00 2025-11-09 03:55:25.534776+00 f t Invitado Amar invitado-1762660525137@example.com 55555555 \N \N \N \N \N 33 \N \N \N +12943 2025-11-11 03:03:16.429293+00 2025-11-11 03:03:16.429301+00 f t Invitado Amar invitado-1762830195317@example.com 55555555 \N \N \N \N \N 74 \N \N \N +13916 2025-11-20 16:20:10.433499+00 2025-11-20 16:20:10.433513+00 f t Romina Aguirre raguirre@mvl.edu.ar 5491136194352 \N Montevideo 241 Caba timbre 2 entre Sarmiento y Perón \N \N 1985-09-17 \N \N 13 2208 \N \N +14095 2025-11-21 21:27:18.300254+00 2025-11-21 21:27:18.300267+00 f t Invitado Amar invitado-1763760437812@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14276 2025-11-24 00:06:46.742082+00 2025-11-24 00:06:46.742094+00 f t Invitado Amar invitado-1763942806135@example.com 55555555 \N \N \N \N \N 13 \N \N \N +14457 2025-11-25 12:15:31.253775+00 2025-11-25 12:15:31.253784+00 f t Invitado Amar invitado-1764072930158@example.com 55555555 \N \N \N \N \N 142 \N \N \N +9689 2025-09-30 19:49:23.727444+00 2025-09-30 19:49:23.727454+00 f t Invitado Amar invitado-1759261764141@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7611 +9866 2025-10-02 14:42:25.586233+00 2025-10-02 14:42:25.586242+00 f t Invitado Amar invitado-1759416144416@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13116 2025-11-12 20:57:12.47379+00 2025-11-12 20:57:12.473798+00 f t Invitado Amar invitado-1762981032062@example.com 55555555 \N \N \N \N \N 88 \N \N \N +13346 2025-11-15 00:13:25.010526+00 2025-11-15 00:13:25.010535+00 f t Invitado Amar invitado-1763165604736@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10039 2025-10-05 08:13:33.946904+00 2025-10-05 08:13:33.946916+00 f t Maria Encina mariaencina2010@gmail.com +5491154572336 \N Cuba 2391 1 D \N \N \N \N \N 3 \N \N \N +10220 2025-10-07 19:04:27.148783+00 2025-10-07 19:04:27.148795+00 f t Invitado Amar invitado-1759863866558@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10402 2025-10-10 12:56:20.932677+00 2025-10-10 12:56:20.932688+00 f t Invitado Amar invitado-1760100980541@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10584 2025-10-13 03:00:35.731255+00 2025-10-13 03:00:35.731265+00 f t Invitado Amar invitado-1760324435098@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10765 2025-10-15 14:17:18.55575+00 2025-10-15 14:17:18.555759+00 f t Yamila landini yami1301tango@gmail.com 5491132625013 \N Caracas 3995 casa \N FEMALE \N -34.587261 -58.4905716 43 \N \N \N +13549 2025-11-17 21:28:23.293591+00 2025-11-17 21:28:23.2936+00 f t Invitado Amar invitado-1763414902386@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10945 2025-10-17 11:36:42.768728+00 2025-10-17 11:36:42.76874+00 f t Paula Caballero caballeropaula@hotmail.com +541157590969 \N Pi y Margall 480 5 G \N \N -34.781077 -58.3655478 112 \N \N \N +13736 2025-11-19 10:12:56.613143+00 2025-11-19 10:12:56.613152+00 f t Invitado Amar invitado-1763547180399@example.com 55555555 \N \N \N \N \N 19 \N \N \N +11125 2025-10-20 11:17:00.870378+00 2025-10-20 11:17:00.870388+00 f t Lucas Maiuri lucasmaiuri@gmail.com +541121882253 \N Av. Melián 2253 4 B \N \N -34.5672505 -58.4690657 3 \N \N \N +11307 2025-10-22 01:25:23.87517+00 2025-10-22 01:25:23.875179+00 f t Invitado Amar invitado-1761096323033@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11486 2025-10-25 02:07:48.732666+00 2025-10-25 02:07:48.732676+00 f t Invitado Amar invitado-1761358068207@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11669 2025-10-28 00:20:12.397273+00 2025-10-28 00:20:12.397283+00 f t Invitado Amar invitado-1761610811219@example.com 55555555 \N \N \N \N \N 153 \N \N \N +13917 2025-11-20 16:20:23.963229+00 2025-11-20 16:20:23.963237+00 f t Invitado Amar invitado-1763655623121@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14096 2025-11-21 21:33:25.124463+00 2025-11-21 21:33:25.124473+00 f t Invitado Amar invitado-1763760802102@example.com 55555555 \N \N \N \N \N 147 \N \N \N +14277 2025-11-24 00:14:27.132475+00 2025-11-24 00:14:27.132486+00 f t Invitado Amar invitado-1763943266140@example.com 55555555 \N \N \N \N \N 64 \N \N \N +14458 2025-11-25 12:24:22.886444+00 2025-11-25 12:24:22.886453+00 f t Invitado Amar invitado-1764073462478@example.com 55555555 \N \N \N \N \N 34 \N \N \N +12035 2025-10-31 08:07:46.890559+00 2025-10-31 08:07:46.890566+00 f t Invitado Amar invitado-1761898066557@example.com 55555555 \N \N \N \N \N 31 \N \N \N +11851 2025-10-29 16:15:44.397765+00 2025-10-29 16:15:44.397774+00 f t Celia Aschieri celiaaschieri@gmail.com +541163214207 \N Avenida del Libertador 6746 11A \N \N FEMALE 1970-12-07 -34.5501149 -58.453611 25 1931 \N \N +12217 2025-11-02 00:20:58.263699+00 2025-11-02 00:20:58.26371+00 f t Invitado Amar invitado-1762042857996@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12399 2025-11-04 22:22:11.339244+00 2025-11-04 22:22:11.339252+00 f t Invitado Amar invitado-1762294930714@example.com 55555555 \N \N \N \N \N 28 \N \N \N +12581 2025-11-07 05:17:06.194252+00 2025-11-07 05:17:06.194262+00 f t Invitado Amar invitado-1762492626031@example.com 55555555 \N \N \N \N \N 62 \N \N \N +12761 2025-11-09 03:56:00.288442+00 2025-11-09 03:56:00.288451+00 f t Invitado Amar invitado-1762660559840@example.com 55555555 \N \N \N \N \N 33 \N \N \N +12944 2025-11-11 03:37:40.872099+00 2025-11-11 03:37:40.872111+00 f t Invitado Amar invitado-1762832261346@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9690 2025-09-30 19:55:47.350653+00 2025-09-30 19:55:47.350666+00 f t Invitado Amar invitado-1759262145721@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-7612 +9867 2025-10-02 14:50:46.134536+00 2025-10-02 14:50:46.134545+00 f t Invitado Amar invitado-1759416645754@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10040 2025-10-05 09:18:28.138898+00 2025-10-05 09:18:28.138908+00 f t Invitado Amar invitado-1759655907946@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10221 2025-10-07 19:23:51.954577+00 2025-10-07 19:23:51.954593+00 f t Invitado Amar invitado-1759865031473@example.com 55555555 \N \N \N \N \N 46 \N \N \N +10403 2025-10-10 12:59:46.708356+00 2025-10-10 12:59:46.708364+00 f t María Diaz lujandiaz695@gmail.com 5491168463013 \N Enrique Fernández 3143 1824 \N FEMALE \N -34.6992669 -58.4165872 70 \N \N \N +10585 2025-10-13 03:05:32.242568+00 2025-10-13 03:05:32.242577+00 f t Invitado Amar invitado-1760324729917@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10766 2025-10-15 14:21:24.902517+00 2025-10-15 14:21:24.902524+00 f t Invitado Amar invitado-1760538084168@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10946 2025-10-17 11:46:11.255703+00 2025-10-17 11:46:11.255712+00 f t Invitado Amar invitado-1760701570870@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11126 2025-10-20 11:30:40.254875+00 2025-10-20 11:30:40.254888+00 f t Invitado Amar invitado-1760959839844@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11308 2025-10-22 01:42:36.530903+00 2025-10-22 01:42:36.530912+00 f t Invitado Amar invitado-1761097355952@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11487 2025-10-25 02:15:32.290577+00 2025-10-25 02:15:32.29059+00 f t Invitado Amar invitado-1761358529312@example.com 55555555 \N \N \N \N \N 158 \N \N \N +11670 2025-10-28 00:41:01.050835+00 2025-10-28 00:41:01.050844+00 f t Invitado Amar invitado-1761612060569@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11852 2025-10-29 16:16:05.590288+00 2025-10-29 16:16:05.590301+00 f t Invitado Amar invitado-1761754568648@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12036 2025-10-31 09:21:22.533144+00 2025-10-31 09:21:22.533153+00 f t Invitado Amar invitado-1761902480858@example.com 55555555 \N \N \N \N \N 40 \N \N \N +12218 2025-11-02 10:29:07.75283+00 2025-11-02 10:29:07.752843+00 f t Invitado Amar invitado-1762079347106@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12400 2025-11-04 22:23:14.789726+00 2025-11-04 22:23:14.789736+00 f t Invitado Amar invitado-1762294994417@example.com 55555555 \N \N \N \N \N 28 \N \N \N +12582 2025-11-07 06:53:56.540523+00 2025-11-07 06:53:56.540533+00 f t Invitado Amar invitado-1762498435791@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12762 2025-11-09 04:07:15.964805+00 2025-11-09 04:07:15.964814+00 f t Invitado Amar invitado-1762661235004@example.com 55555555 \N \N \N \N \N 8 \N \N \N +12945 2025-11-11 03:49:39.640455+00 2025-11-11 03:49:39.640467+00 f t Invitado Amar invitado-1762832979173@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13117 2025-11-12 21:00:19.025799+00 2025-11-12 21:00:19.025817+00 f t Sandra Elisabeth Cima sandrademian8@gmail.com +541131638100 \N Boedo 1814 P. B. 2 \N FEMALE \N -34.6254799 -58.4161163 11 2121 \N \N +13347 2025-11-15 00:14:14.838519+00 2025-11-15 00:14:14.838531+00 f t Invitado Amar invitado-1763165653265@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13544 2025-11-17 21:09:05.635296+00 2025-11-17 21:09:05.635305+00 f t Brenda Gramajo gramajobrenda95@gmail.com +541168408849 \N Avenida Triunvirato 3785 6 H \N FEMALE \N -34.5738128 -58.4869832 29 2172 \N \N +13737 2025-11-19 10:38:06.111044+00 2025-11-19 10:38:06.111057+00 f t Invitado Amar invitado-1763548685705@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13918 2025-11-20 16:21:35.280392+00 2025-11-20 16:21:35.280402+00 f t Invitado Amar invitado-1763655694412@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14097 2025-11-21 21:38:20.692331+00 2025-11-21 21:38:20.69234+00 f t Invitado Amar invitado-1763761099302@example.com 55555555 \N \N \N \N \N 25 \N \N \N +14278 2025-11-24 00:55:55.395737+00 2025-11-24 00:55:55.395746+00 f t Invitado Amar invitado-1763945754912@example.com 55555555 \N \N \N \N \N 74 \N \N \N +14459 2025-11-25 12:29:15.84868+00 2025-11-25 12:29:15.848693+00 f t Invitado Amar invitado-1764073755655@example.com 55555555 \N \N \N \N \N 34 \N \N \N +9691 2025-09-30 20:00:38.228105+00 2025-09-30 20:00:38.228123+00 f t Invitado Amar invitado-1759262437066@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-7613 +13118 2025-11-12 21:00:26.880746+00 2025-11-12 21:00:26.880758+00 f t Invitado Amar invitado-1762981226107@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12946 2025-11-11 05:56:40.780275+00 2025-11-11 05:56:40.780288+00 f t Cristian ALEJANDRO Garcias PINTO cristiangarciasp@gmail.com +541166319377 \N Avenida Belgrano 2561 7C \N \N -34.614357 -58.4023539 18 2099 \N \N +10041 2025-10-05 09:37:06.600885+00 2025-10-05 09:37:06.600896+00 f t Invitado Amar invitado-1759657026557@example.com 55555555 \N \N \N \N \N 51 \N \N \N +10222 2025-10-07 19:34:59.898651+00 2025-10-07 19:34:59.89866+00 f t Invitado Amar invitado-1759865699260@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13348 2025-11-15 00:37:28.368892+00 2025-11-15 00:37:28.368902+00 f t Invitado Amar invitado-1763167048211@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10404 2025-10-10 13:02:08.592354+00 2025-10-10 13:02:08.592363+00 f t Invitado Amar invitado-1760101326005@example.com 55555555 \N \N \N \N \N 16 \N \N \N +13550 2025-11-17 21:32:14.50372+00 2025-11-17 21:32:14.503729+00 f t Invitado Amar invitado-1763415134109@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13738 2025-11-19 10:38:28.346332+00 2025-11-19 10:38:28.346344+00 f t Invitado Amar invitado-1763548707277@example.com 55555555 \N \N \N \N \N 162 \N \N \N +10586 2025-10-13 04:41:37.026325+00 2025-10-13 04:41:37.026334+00 f t Valentín Alvarez valentinalvarezvera13@gmail.com +5491161946210 \N Chacabuco 320 2 \N \N -34.7459508 -58.3902417 72 \N \N \N +10767 2025-10-15 14:26:28.80506+00 2025-10-15 14:26:28.80507+00 f t Invitado Amar invitado-1760538388077@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10947 2025-10-17 11:50:36.500441+00 2025-10-17 11:50:36.50045+00 t t Invitado Amar invitado-1760701836100@example.com 55555555 \N \N \N \N \N 61 \N \N \N +11127 2025-10-20 11:39:05.919696+00 2025-10-20 11:39:05.91971+00 f t Invitado Amar invitado-1760960344204@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13919 2025-11-20 16:33:13.324963+00 2025-11-20 16:33:13.324971+00 f t Invitado Amar invitado-1763656392779@example.com 55555555 \N \N \N \N \N 55 \N \N \N +11309 2025-10-22 01:54:55.991634+00 2025-10-22 01:54:55.991644+00 f t Invitado Amar invitado-1761098096647@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11488 2025-10-25 02:16:56.303399+00 2025-10-25 02:16:56.303411+00 f t Invitado Amar invitado-1761358615389@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11671 2025-10-28 01:19:50.302401+00 2025-10-28 01:19:50.302411+00 f t Invitado Amar invitado-1761614389603@example.com 55555555 \N \N \N \N \N 31 \N \N \N +11853 2025-10-29 16:48:38.96092+00 2025-10-29 16:48:38.960928+00 f t Invitado Amar invitado-1761756517751@example.com 55555555 \N \N \N \N \N 60 \N \N \N +12037 2025-10-31 09:44:16.708653+00 2025-10-31 09:44:16.708661+00 f t Invitado Amar invitado-1761903856219@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12219 2025-11-02 11:13:31.209782+00 2025-11-02 11:13:31.209791+00 f t Invitado Amar invitado-1762082010875@example.com 55555555 \N \N \N \N \N 3 \N \N \N +8854 2025-09-18 12:37:47.416813+00 2025-09-18 12:37:47.416822+00 f t Patricia Slupsky pslupsky@gmail.com +541166458107 \N Loyola 850 2 A \N FEMALE \N -34.5931443 -58.4382825 26 1999 \N pslupsky +12401 2025-11-04 22:25:40.873632+00 2025-11-04 22:25:40.87364+00 f t Invitado Amar invitado-1762295139667@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12583 2025-11-07 08:16:29.965461+00 2025-11-07 08:16:29.965472+00 f t Invitado Amar invitado-1762503388024@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12763 2025-11-09 04:14:18.404882+00 2025-11-09 04:14:18.404896+00 f t Invitado Amar invitado-1762661661827@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14098 2025-11-21 21:49:52.852266+00 2025-11-21 21:49:52.852277+00 f t Invitado Amar invitado-1763761791251@example.com 55555555 \N \N \N \N \N 161 \N \N \N +14279 2025-11-24 01:04:07.122175+00 2025-11-24 01:04:07.122191+00 f t Invitado Amar invitado-1763946246482@example.com 55555555 \N \N \N \N \N 65 \N \N \N +14460 2025-11-25 12:36:52.430893+00 2025-11-25 12:36:52.430906+00 f t Invitado Amar invitado-1764074209006@example.com 55555555 \N \N \N \N \N 37 \N \N \N +9692 2025-09-30 20:01:36.380483+00 2025-09-30 20:01:36.380494+00 f t Invitado Amar invitado-1759262496044@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-7614 +9868 2025-10-02 15:35:53.44014+00 2025-10-02 15:35:53.440148+00 f t Invitado Amar invitado-1759419353040@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10042 2025-10-05 10:39:29.163007+00 2025-10-05 10:39:29.163017+00 f t Invitado Amar invitado-1759660768963@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10223 2025-10-07 19:39:10.905436+00 2025-10-07 19:39:10.905446+00 f t Invitado Amar invitado-1759865950498@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10405 2025-10-10 13:04:51.217808+00 2025-10-10 13:04:51.217816+00 f t Invitado Amar invitado-1760101490753@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13119 2025-11-12 21:11:19.191181+00 2025-11-12 21:11:19.191189+00 f t Invitado Amar invitado-1762981878957@example.com 55555555 \N \N \N \N \N 11 \N \N \N +10587 2025-10-13 04:41:47.465538+00 2025-10-13 04:41:47.465547+00 f t Morena Castelló moreeluciaa12@gmail.com +541161404711 \N Riobamba 3242 Casa \N \N -34.4771277 -58.557298 155 \N \N \N +10768 2025-10-15 14:33:11.195785+00 2025-10-15 14:33:11.195797+00 f t Invitado Amar invitado-1760538790646@example.com 55555555 \N \N \N \N \N 157 \N \N \N +10948 2025-10-17 11:50:56.506318+00 2025-10-17 11:50:56.506331+00 f t Invitado Amar invitado-1760701856192@example.com 55555555 \N \N \N \N \N 32 \N \N \N +11128 2025-10-20 11:49:38.237496+00 2025-10-20 11:49:38.237506+00 f t Invitado Amar invitado-1760960977622@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11310 2025-10-22 02:19:09.086703+00 2025-10-22 02:19:09.086716+00 f t Invitado Amar invitado-1761099547943@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11489 2025-10-25 04:12:29.253235+00 2025-10-25 04:12:29.253246+00 f t Invitado Amar invitado-1761365548475@example.com 55555555 \N \N \N \N \N 31 \N \N \N +11672 2025-10-28 01:22:27.986737+00 2025-10-28 01:22:27.986747+00 f t Invitado Amar invitado-1761614546554@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11854 2025-10-29 16:54:05.516973+00 2025-10-29 16:54:05.516987+00 f t Invitado Amar invitado-1761756845126@example.com 55555555 \N \N \N \N \N 16 \N \N \N +12038 2025-10-31 10:36:55.025759+00 2025-10-31 10:36:55.025767+00 f t Invitado Amar invitado-1761907012284@example.com 55555555 \N \N \N \N \N 154 \N \N \N +12220 2025-11-02 11:57:12.282315+00 2025-11-02 11:57:12.282324+00 f t Invitado Amar invitado-1762084630827@example.com 55555555 \N \N \N \N \N 12 \N \N \N +12402 2025-11-04 22:55:48.776306+00 2025-11-04 22:55:48.776315+00 f t Invitado Amar invitado-1762296948082@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12584 2025-11-07 09:26:38.182087+00 2025-11-07 09:26:38.182096+00 f t Invitado Amar invitado-1762507596491@example.com 55555555 \N \N \N \N \N 15 \N \N \N +12764 2025-11-09 04:15:01.314135+00 2025-11-09 04:15:01.314145+00 f t Invitado Amar invitado-1762661703703@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12947 2025-11-11 07:46:26.298352+00 2025-11-11 07:46:26.298363+00 f t Invitado Amar invitado-1762847186019@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13349 2025-11-15 00:50:07.796915+00 2025-11-15 00:50:07.796927+00 f t Invitado Amar invitado-1763167807706@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13551 2025-11-17 21:36:09.497617+00 2025-11-17 21:36:09.497632+00 f t Invitado Amar invitado-1763415368967@example.com 55555555 \N \N \N \N \N 41 \N \N \N +13739 2025-11-19 10:51:57.601207+00 2025-11-19 10:51:57.601215+00 f t Invitado Amar invitado-1763549516776@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13920 2025-11-20 16:37:17.894705+00 2025-11-20 16:37:17.894714+00 f t Camila Rubio Camilarubiog@gmail.com 5491124909847 \N Avenida Juan de garay 728 1C, potero no anda, aviasr por mensaje \N FEMALE \N -34.6248798 -58.3758692 15 2209 \N \N +14099 2025-11-21 22:11:20.497802+00 2025-11-21 22:11:20.497814+00 f t Invitado Amar invitado-1763763079722@example.com 55555555 \N \N \N \N \N 18 \N \N \N +14280 2025-11-24 01:25:28.426062+00 2025-11-24 01:25:28.426074+00 f t Invitado Amar invitado-1763947526848@example.com 55555555 \N \N \N \N \N 40 \N \N \N +14461 2025-11-25 12:43:42.643277+00 2025-11-25 12:43:42.643286+00 f t Invitado Amar invitado-1764074621572@example.com 55555555 \N \N \N \N \N 68 \N \N \N +9693 2025-09-30 20:02:01.40776+00 2025-09-30 20:02:01.407773+00 f t cecilica aranda arandacecilia@gmail.com 91161999791 \N estados unidos 3540 \N \N FEMALE 1980-07-04 36.5706943 -79.3883557 23 \N \N caranda +9869 2025-10-02 15:46:51.236364+00 2025-10-02 15:46:51.236374+00 f t Invitado Amar invitado-1759420010371@example.com 55555555 \N \N \N \N \N 65 \N \N \N +10043 2025-10-05 11:23:55.06884+00 2025-10-05 11:23:55.068849+00 f t Invitado Amar invitado-1759663433706@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10224 2025-10-07 19:41:05.445833+00 2025-10-07 19:41:05.445842+00 f t Invitado Amar invitado-1759866065141@example.com 55555555 \N \N \N \N \N 63 \N \N \N +10406 2025-10-10 13:05:13.219876+00 2025-10-10 13:05:13.219884+00 f t Invitado Amar invitado-1760101513338@example.com 55555555 \N \N \N \N \N 39 \N \N \N +13120 2025-11-12 21:19:29.559596+00 2025-11-12 21:19:29.559605+00 f t Invitado Amar invitado-1762982368583@example.com 55555555 \N \N \N \N \N 53 \N \N \N +10588 2025-10-13 04:43:34.461935+00 2025-10-13 04:43:34.461944+00 f t Florencia Ventaglieri fventaglieri@gmail.com +541159101917 \N av caseros 4051 1 \N \N -34.6397557 -58.421649 11 \N \N \N +10769 2025-10-15 14:43:05.751706+00 2025-10-15 14:43:05.751721+00 f t Invitado Amar invitado-1760539384985@example.com 55555555 \N \N \N \N \N 60 \N \N \N +10949 2025-10-17 11:51:54.936399+00 2025-10-17 11:51:54.936408+00 f t Invitado Amar invitado-1760701914724@example.com 55555555 \N \N \N \N \N 32 \N \N \N +11129 2025-10-20 11:52:46.708392+00 2025-10-20 11:52:46.708402+00 f t Invitado Amar invitado-1760961165864@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11311 2025-10-22 02:38:18.23879+00 2025-10-22 02:38:18.238799+00 f t Invitado Amar invitado-1761100697547@example.com 55555555 \N \N \N \N \N 6 \N \N \N +11490 2025-10-25 06:20:39.141458+00 2025-10-25 06:20:39.141466+00 f t Invitado Amar invitado-1761373238507@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11673 2025-10-28 01:45:40.230256+00 2025-10-28 01:45:40.230267+00 f t Invitado Amar invitado-1761615938246@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11855 2025-10-29 17:13:06.565458+00 2025-10-29 17:13:06.56547+00 f t Mercedes Romero memeromero67@gmail.com 5491138763806 \N Bartolomé Mitre 835 3° \N FEMALE \N -34.6070375 -58.3783949 13 1932 \N \N +12039 2025-10-31 10:44:47.917665+00 2025-10-31 10:44:47.917674+00 f t Invitado Amar invitado-1761907486987@example.com 55555555 \N \N \N \N \N 46 \N \N \N +13350 2025-11-15 00:55:10.951714+00 2025-11-15 00:55:10.951727+00 f t Invitado Amar invitado-1763168110087@example.com 55555555 \N \N \N \N \N 31 \N \N \N +12221 2025-11-02 12:31:12.155702+00 2025-11-02 12:31:12.15571+00 f t Invitado Amar invitado-1762086671321@example.com 55555555 \N \N \N \N \N 74 \N \N \N +12403 2025-11-04 23:09:13.132473+00 2025-11-04 23:09:13.132482+00 f t Invitado Amar invitado-1762297752109@example.com 55555555 \N \N \N \N \N 73 \N \N \N +12585 2025-11-07 09:37:51.56363+00 2025-11-07 09:37:51.563639+00 f t Invitado Amar invitado-1762508270295@example.com 55555555 \N \N \N \N \N 15 \N \N \N +13552 2025-11-17 21:46:43.096723+00 2025-11-17 21:46:43.096732+00 f t Invitado Amar invitado-1763416003272@example.com 55555555 \N \N \N \N \N 27 \N \N \N +12765 2025-11-09 05:21:49.696461+00 2025-11-09 05:21:49.696471+00 f t Invitado Amar invitado-1762665709348@example.com 55555555 \N \N \N \N \N 49 \N \N \N +13740 2025-11-19 10:54:56.857317+00 2025-11-19 10:54:56.857325+00 f t Invitado Amar invitado-1763549695157@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12948 2025-11-11 08:02:35.340832+00 2025-11-11 08:02:35.340844+00 f t Invitado Amar invitado-1762848153984@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13921 2025-11-20 16:54:19.6381+00 2025-11-20 16:54:19.638108+00 f t Invitado Amar invitado-1763657659182@example.com 55555555 \N \N \N \N \N 16 \N \N \N +14100 2025-11-21 22:35:10.746856+00 2025-11-21 22:35:10.746866+00 f t Soledad Silveyra solesilveyra@live.con.ar +541131562004 \N 11 de septiembre 2669 5A \N \N -34.5535137 -58.4554486 3 2228 \N \N +14281 2025-11-24 01:43:23.7265+00 2025-11-24 01:43:23.726513+00 f t Invitado Amar invitado-1763948602006@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14462 2025-11-25 12:50:33.531884+00 2025-11-25 12:50:33.531893+00 f t Invitado Amar invitado-1764075033091@example.com 55555555 \N \N \N \N \N 55 \N \N \N +9694 2025-09-30 20:27:20.229057+00 2025-09-30 20:27:20.229066+00 f t Invitado Amar invitado-1759264037947@example.com 55555555 \N \N \N \N \N 151 \N \N iamar-7615 +9870 2025-10-02 15:48:06.627119+00 2025-10-02 15:48:06.627153+00 f t Invitado Amar invitado-1759420086029@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10044 2025-10-05 11:27:33.092155+00 2025-10-05 11:27:33.092164+00 f t Invitado Amar invitado-1759663651666@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10225 2025-10-07 19:54:02.039902+00 2025-10-07 19:54:02.039915+00 f t Catalina Chalik Catachalik@gmail.com 5491151640654 \N Pilcomayo 4051 Fondo timbre arriba. \N FEMALE \N -34.700517 -58.4304103 70 \N \N \N +10407 2025-10-10 13:06:03.06281+00 2025-10-10 13:06:03.062819+00 f t Invitado Amar invitado-1760101563514@example.com 55555555 \N \N \N \N \N 39 \N \N \N +10589 2025-10-13 04:48:11.524112+00 2025-10-13 04:48:11.524122+00 f t Invitado Amar invitado-1760330891152@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10770 2025-10-15 14:46:25.122143+00 2025-10-15 14:46:25.122152+00 f t Invitado Amar invitado-1760539586517@example.com 55555555 \N \N \N \N \N 91 \N \N \N +10950 2025-10-17 12:18:14.30698+00 2025-10-17 12:18:14.306989+00 f t Invitado Amar invitado-1760703493638@example.com 55555555 \N \N \N \N \N 20 \N \N \N +13121 2025-11-12 21:29:37.293155+00 2025-11-12 21:29:37.293166+00 f t Invitado Amar invitado-1762982976811@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13351 2025-11-15 01:41:16.002708+00 2025-11-15 01:41:16.002717+00 f t Invitado Amar invitado-1763170875545@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11130 2025-10-20 12:07:35.893343+00 2025-10-20 12:07:35.893351+00 f t Natalia Lastra natalia_lastra@yahoo.com.ar +541160549038 \N Vieytes 1369 8C \N \N \N -38.7079918 -62.2839628 32 \N \N \N +11312 2025-10-22 04:08:56.595926+00 2025-10-22 04:08:56.595934+00 f t Invitado Amar invitado-1761106315342@example.com 55555555 \N \N \N \N \N 28 \N \N \N +13553 2025-11-17 22:03:35.387457+00 2025-11-17 22:03:35.387467+00 f t Invitado Amar invitado-1763417014850@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11491 2025-10-25 07:28:42.336603+00 2025-10-25 07:28:42.336614+00 f t Maria fernanda Aguirre jaime_arce_s@hotmail.com +541130482443 \N Estado de Palestina 1063 3f \N \N -34.5983948 -58.4249536 23 \N \N \N +11674 2025-10-28 01:50:10.678699+00 2025-10-28 01:50:10.678708+00 f t Invitado Amar invitado-1761616210373@example.com 55555555 \N \N \N \N \N 53 \N \N \N +13741 2025-11-19 11:13:56.831303+00 2025-11-19 11:13:56.831312+00 f t Invitado Amar invitado-1763550835469@example.com 55555555 \N \N \N \N \N 61 \N \N \N +11856 2025-10-29 17:53:11.164056+00 2025-10-29 17:53:11.164065+00 f t natasha piñeiro pineironatasha0@gmail.com 92215631400 \N calle 21 y 86, entre 21 y 22 \N \N \N FEMALE \N \N \N 147 1933 \N \N +12040 2025-10-31 11:01:30.484323+00 2025-10-31 11:01:30.484331+00 f t Invitado Amar invitado-1761908489935@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12222 2025-11-02 12:55:36.441488+00 2025-11-02 12:55:36.441499+00 f t Invitado Amar invitado-1762088135445@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12404 2025-11-05 00:12:02.390215+00 2025-11-05 00:12:02.390229+00 f t Invitado Amar invitado-1762301521817@example.com 55555555 \N \N \N \N \N 24 \N \N \N +12586 2025-11-07 10:08:42.778706+00 2025-11-07 10:08:42.778714+00 f t Invitado Amar invitado-1762510121837@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12766 2025-11-09 06:08:28.984154+00 2025-11-09 06:08:28.984168+00 f t Invitado Amar invitado-1762668507251@example.com 55555555 \N \N \N \N \N 91 \N \N \N +12949 2025-11-11 10:05:25.577947+00 2025-11-11 10:05:25.577961+00 f t Invitado Amar invitado-1762855525067@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13922 2025-11-20 16:54:56.382179+00 2025-11-20 16:54:56.382189+00 f t Invitado Amar invitado-1763657696127@example.com 55555555 \N \N \N \N \N 18 \N \N \N +14101 2025-11-21 22:38:35.769673+00 2025-11-21 22:38:35.769686+00 f t Invitado Amar invitado-1763764714612@example.com 55555555 \N \N \N \N \N 41 \N \N \N +14282 2025-11-24 01:46:10.864329+00 2025-11-24 01:46:10.864338+00 f t Invitado Amar invitado-1763948768670@example.com 55555555 \N \N \N \N \N 44 \N \N \N +14463 2025-11-25 12:53:55.8911+00 2025-11-25 12:53:55.89111+00 f t Invitado Amar invitado-1764075234935@example.com 55555555 \N \N \N \N \N 9 \N \N \N +9695 2025-09-30 20:29:41.269745+00 2025-09-30 20:29:41.269757+00 f t Invitado Amar invitado-1759264180776@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7616 +9871 2025-10-02 16:00:00.96147+00 2025-10-02 16:00:00.961483+00 f t Invitado Amar invitado-1759420799810@example.com 55555555 \N \N \N \N \N 73 \N \N \N +10045 2025-10-05 12:51:37.665122+00 2025-10-05 12:51:37.66513+00 f t Invitado Amar invitado-1759668697060@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10226 2025-10-07 20:46:20.747886+00 2025-10-07 20:46:20.747895+00 f t Invitado Amar invitado-1759869980238@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10408 2025-10-10 13:07:18.019359+00 2025-10-10 13:07:18.019368+00 f t Invitado Amar invitado-1760101635189@example.com 55555555 \N \N \N \N \N 16 \N \N \N +10590 2025-10-13 05:04:38.247289+00 2025-10-13 05:04:38.247298+00 f t Invitado Amar invitado-1760331877184@example.com 55555555 \N \N \N \N \N 37 \N \N \N +10771 2025-10-15 14:47:21.018448+00 2025-10-15 14:47:21.018457+00 f t Invitado Amar invitado-1760539640578@example.com 55555555 \N \N \N \N \N 35 \N \N \N +10951 2025-10-17 12:37:17.625475+00 2025-10-17 12:37:17.625483+00 f t Maria Patricia Riobueno mpriobueno@gmail.com 584148207396 \N Av. LIbertado 6567 piso 2, depto11 \N FEMALE \N 34.8256843 -106.7452664 3 \N \N \N +11131 2025-10-20 12:16:40.396366+00 2025-10-20 12:16:40.396375+00 f t Invitado Amar invitado-1760962599660@example.com 55555555 \N \N \N \N \N 28 \N \N \N +11313 2025-10-22 04:09:49.981398+00 2025-10-22 04:09:49.981408+00 f t Invitado Amar invitado-1761106189993@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11492 2025-10-25 07:31:49.607329+00 2025-10-25 07:31:49.60734+00 f t Invitado Amar invitado-1761377508949@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11675 2025-10-28 02:20:13.387514+00 2025-10-28 02:20:13.387522+00 f t Invitado Amar invitado-1761618012323@example.com 55555555 \N \N \N \N \N 25 \N \N \N +13122 2025-11-12 21:31:24.160414+00 2025-11-12 21:31:24.160424+00 f t Invitado Amar invitado-1762983083595@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11857 2025-10-29 17:56:16.741866+00 2025-10-29 17:56:16.741875+00 f t Conrado Nöe coconoe002@gmail.com +541128683552 \N Corrientes 147 \N \N \N \N -34.4927221 -58.5010132 6 \N \N \N +12041 2025-10-31 11:36:56.581662+00 2025-10-31 11:36:56.58167+00 f t Invitado Amar invitado-1761910614538@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12223 2025-11-02 13:00:21.513853+00 2025-11-02 13:00:21.513862+00 f t Invitado Amar invitado-1762088420883@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12405 2025-11-05 00:15:50.192037+00 2025-11-05 00:15:50.192046+00 f t Invitado Amar invitado-1762301749723@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12587 2025-11-07 10:12:48.204617+00 2025-11-07 10:12:48.204626+00 f t Invitado Amar invitado-1762510368070@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12767 2025-11-09 06:26:36.059608+00 2025-11-09 06:26:36.059617+00 f t Invitado Amar invitado-1762669595633@example.com 55555555 \N \N \N \N \N 38 \N \N \N +12950 2025-11-11 10:22:41.922017+00 2025-11-11 10:22:41.922026+00 f t Invitado Amar invitado-1762856561181@example.com 55555555 \N \N \N \N \N 16 \N \N \N +13554 2025-11-17 22:15:24.314496+00 2025-11-17 22:15:24.314508+00 f t Invitado Amar invitado-1763417723855@example.com 55555555 \N \N \N \N \N 90 \N \N \N +13742 2025-11-19 11:15:50.168682+00 2025-11-19 11:15:50.168691+00 f t Invitado Amar invitado-1763550949466@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13352 2025-11-15 01:42:56.486522+00 2025-11-15 01:42:56.486531+00 f t Grecia Beatriz Huayhuapuma Mariaca greciabeatriz.hm@gmail.com +541126671123 \N Boulogne Sur Mer 522 1 B \N FEMALE \N -34.6040464 -58.4066289 18 2153 \N \N +13923 2025-11-20 16:56:27.775248+00 2025-11-20 16:56:27.775257+00 f t Invitado Amar invitado-1763657786669@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14102 2025-11-21 22:41:32.19549+00 2025-11-21 22:41:32.1955+00 f t Invitado Amar invitado-1763764892030@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14283 2025-11-24 01:52:04.207133+00 2025-11-24 01:52:04.207145+00 f t Invitado Amar invitado-1763949123963@example.com 55555555 \N \N \N \N \N 8 \N \N \N +14464 2025-11-25 12:56:42.896815+00 2025-11-25 12:56:42.896828+00 f t Invitado Amar invitado-1764075402571@example.com 55555555 \N \N \N \N \N 9 \N \N \N +9696 2025-09-30 20:30:06.297155+00 2025-09-30 20:30:06.297174+00 f t Invitado Amar invitado-1759264205825@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7617 +9872 2025-10-02 16:00:02.976644+00 2025-10-02 16:00:02.976657+00 f t Invitado Amar invitado-1759420802319@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10046 2025-10-05 13:51:40.210238+00 2025-10-05 13:51:40.210247+00 f t Invitado Amar invitado-1759672299833@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10227 2025-10-07 20:54:57.540538+00 2025-10-07 20:54:57.540547+00 f t Invitado Amar invitado-1759870497128@example.com 55555555 \N \N \N \N \N 38 \N \N \N +10409 2025-10-10 13:07:48.842249+00 2025-10-10 13:07:48.842258+00 f t Invitado Amar invitado-1760101667004@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10591 2025-10-13 05:14:22.269203+00 2025-10-13 05:14:22.269216+00 f t Invitado Amar invitado-1760332461338@example.com 55555555 \N \N \N \N \N 12 \N \N \N +10772 2025-10-15 14:54:38.465764+00 2025-10-15 14:54:38.465773+00 f t Invitado Amar invitado-1760540078339@example.com 55555555 \N \N \N \N \N 73 \N \N \N +10952 2025-10-17 13:41:43.594885+00 2025-10-17 13:41:43.594896+00 t t Invitado Amar invitado-1760708502954@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11132 2025-10-20 12:24:42.19795+00 2025-10-20 12:24:42.197959+00 f t Maria cristina carlos vargas Mcristina_cv@hotmail.com 5491123424404 \N Juan b justo 745 8vo 30 \N FEMALE \N -34.5780083 -58.4269626 1 \N \N \N +11314 2025-10-22 04:28:34.420601+00 2025-10-22 04:28:34.420609+00 f t Invitado Amar invitado-1761107312230@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11493 2025-10-25 08:35:18.861967+00 2025-10-25 08:35:18.861981+00 f t Invitado Amar invitado-1761381317867@example.com 55555555 \N \N \N \N \N 43 \N \N \N +11676 2025-10-28 02:23:53.345027+00 2025-10-28 02:23:53.345036+00 f t Invitado Amar invitado-1761618233958@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11858 2025-10-29 18:00:15.248645+00 2025-10-29 18:00:15.24866+00 f t Invitado Amar invitado-1761760814620@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12042 2025-10-31 11:37:59.422977+00 2025-10-31 11:37:59.422985+00 f t Invitado Amar invitado-1761910678347@example.com 55555555 \N \N \N \N \N 34 \N \N \N +12224 2025-11-02 14:02:03.747728+00 2025-11-02 14:02:03.747737+00 f t Invitado Amar invitado-1762092120585@example.com 55555555 \N \N \N \N \N 50 \N \N \N +12406 2025-11-05 00:34:21.061624+00 2025-11-05 00:34:21.061633+00 f t Invitado Amar invitado-1762302860097@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12588 2025-11-07 10:20:53.022739+00 2025-11-07 10:20:53.022751+00 f t Invitado Amar invitado-1762510852272@example.com 55555555 \N \N \N \N \N 51 \N \N \N +12768 2025-11-09 10:12:38.969402+00 2025-11-09 10:12:38.969411+00 f t Invitado Amar invitado-1762683158067@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12951 2025-11-11 10:30:05.386126+00 2025-11-11 10:30:05.38614+00 f t Invitado Amar invitado-1762857004131@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13123 2025-11-12 21:38:05.167586+00 2025-11-12 21:38:05.167598+00 f t Invitado Amar invitado-1762983484858@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13353 2025-11-15 01:50:47.96757+00 2025-11-15 01:50:47.967582+00 f t Invitado Amar invitado-1763171447820@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13555 2025-11-17 22:21:25.932157+00 2025-11-17 22:21:25.932166+00 f t Invitado Amar invitado-1763418084365@example.com 55555555 \N \N \N \N \N 11 \N \N \N +13743 2025-11-19 11:25:53.438408+00 2025-11-19 11:25:53.43842+00 f t Invitado Amar invitado-1763551552236@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13924 2025-11-20 17:00:12.925282+00 2025-11-20 17:00:12.925296+00 f t Invitado Amar invitado-1763658013209@example.com 55555555 \N \N \N \N \N 162 \N \N \N +14103 2025-11-21 22:57:57.366994+00 2025-11-21 22:57:57.367003+00 f t Invitado Amar invitado-1763765876881@example.com 55555555 \N \N \N \N \N 147 \N \N \N +14284 2025-11-24 01:57:30.668963+00 2025-11-24 01:57:30.668971+00 f t Invitado Amar invitado-1763949449632@example.com 55555555 \N \N \N \N \N 28 \N \N \N +14465 2025-11-25 13:13:35.310913+00 2025-11-25 13:13:35.310922+00 f t Invitado Amar invitado-1764076414888@example.com 55555555 \N \N \N \N \N 18 \N \N \N +9697 2025-09-30 20:42:14.524254+00 2025-09-30 20:42:14.524264+00 f t Invitado Amar invitado-1759264934190@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7618 +9644 2025-09-30 00:06:38.050888+00 2025-09-30 00:06:38.050897+00 f t Carola allemand carola.allemand@hiba.org.ar 5491136871445 \N alm segui 2490 casa (Aclarar piso en caso de un departamento y el correcto funcionamiento del timbre) \N FEMALE \N \N \N 34 \N \N callemand +10047 2025-10-05 14:08:37.744836+00 2025-10-05 14:08:37.744846+00 f t Invitado Amar invitado-1759673317036@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10228 2025-10-07 21:17:34.66372+00 2025-10-07 21:17:34.663733+00 f t Invitado Amar invitado-1759871853977@example.com 55555555 \N \N \N \N \N 151 \N \N \N +10410 2025-10-10 13:11:14.653035+00 2025-10-10 13:11:14.653044+00 f t Invitado Amar invitado-1760101878179@example.com 55555555 \N \N \N \N \N 72 \N \N \N +10592 2025-10-13 05:36:37.126194+00 2025-10-13 05:36:37.126204+00 f t Invitado Amar invitado-1760333795920@example.com 55555555 \N \N \N \N \N 5 \N \N \N +10773 2025-10-15 14:56:42.841518+00 2025-10-15 14:56:42.841527+00 f t Mariela Dinelli Marieladinelli1977@hotmail.com 5491158429212 \N Chacabuco 26 14b \N FEMALE \N -34.6394191 -58.5393515 91 \N \N \N +11133 2025-10-20 12:47:10.621021+00 2025-10-20 12:47:10.62103+00 f t Invitado Amar invitado-1760964431773@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11315 2025-10-22 04:39:39.141877+00 2025-10-22 04:39:39.141885+00 f t Invitado Amar invitado-1761107977607@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13124 2025-11-12 21:41:41.549275+00 2025-11-12 21:41:41.549285+00 f t Invitado Amar invitado-1762983700164@example.com 55555555 \N \N \N \N \N 147 \N \N \N +11494 2025-10-25 08:53:04.319852+00 2025-10-25 08:53:04.319862+00 f t Laura Crispino laucrispino@gmail.com +541151042830 \N Monaco 3037 Entre profesor aguer y Artigas. Villa Ballester PB \N \N \N \N 79 \N \N \N +11677 2025-10-28 02:39:48.262211+00 2025-10-28 02:39:48.26222+00 f t Invitado Amar invitado-1761619186601@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11859 2025-10-29 18:05:51.333513+00 2025-10-29 18:05:51.333525+00 f t Invitado Amar invitado-1761761151100@example.com 55555555 \N \N \N \N \N 6 \N \N \N +12043 2025-10-31 11:41:29.211631+00 2025-10-31 11:41:29.21164+00 f t Invitado Amar invitado-1761910887863@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12225 2025-11-02 14:03:01.438583+00 2025-11-02 14:03:01.438592+00 f t Invitado Amar invitado-1762092179002@example.com 55555555 \N \N \N \N \N 50 \N \N \N +12407 2025-11-05 00:41:07.046582+00 2025-11-05 00:41:07.046591+00 f t Invitado Amar invitado-1762303265713@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12589 2025-11-07 10:46:02.99723+00 2025-11-07 10:46:02.997239+00 f t Invitado Amar invitado-1762512361213@example.com 55555555 \N \N \N \N \N 20 \N \N \N +12769 2025-11-09 11:40:57.157755+00 2025-11-09 11:40:57.157764+00 f t Invitado Amar invitado-1762688452043@example.com 55555555 \N \N \N \N \N 147 \N \N \N +13354 2025-11-15 02:23:25.296825+00 2025-11-15 02:23:25.296834+00 f t Invitado Amar invitado-1763173405235@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13556 2025-11-17 22:23:00.694948+00 2025-11-17 22:23:00.694957+00 f t Invitado Amar invitado-1763418180095@example.com 55555555 \N \N \N \N \N 11 \N \N \N +13744 2025-11-19 11:29:25.005274+00 2025-11-19 11:29:25.005284+00 f t Adrian Rein reinzen@gmail.com +541165996954 \N Arismendi 2468 7B \N MALE \N -34.5757088 -58.4890463 29 2189 \N \N +13925 2025-11-20 17:03:05.826708+00 2025-11-20 17:03:05.826716+00 f t Invitado Amar invitado-1763658185276@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10953 2025-10-17 13:44:29.11742+00 2025-10-17 13:44:29.117433+00 f t Thaís Mateo Zygmunt thaiszygmunt@gmail.com 5511980487260 \N Bulnes 2220 Depto 1C \N MALE \N -34.5862639 -58.4104751 1 2210 \N \N +14104 2025-11-21 23:16:24.423006+00 2025-11-21 23:16:24.423018+00 f t Invitado Amar invitado-1763766984043@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12952 2025-11-11 10:39:47.014586+00 2025-11-11 10:39:47.014596+00 f t Barbara Rodríguez barbra.rodriguez@gmail.com +54110538410 \N Terrada 4843 4C \N \N -34.5843117 -58.5020896 51 2100 \N \N +14285 2025-11-24 02:10:45.818556+00 2025-11-24 02:10:45.81857+00 f t Invitado Amar invitado-1763950244517@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14466 2025-11-25 13:13:49.949129+00 2025-11-25 13:13:49.949142+00 f t Lucas Cabrera lucasecabrera@gmail.com +541126171988 \N Cuartel 5to, la lata, capilla del señor, Exaltacion de la cruz 09 Es un campo en frente de una escuela rural \N \N \N \N 113 2264 \N \N +9698 2025-09-30 20:44:57.148212+00 2025-09-30 20:44:57.148224+00 f t Invitado Amar invitado-1759265095553@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7619 +9873 2025-10-02 16:13:11.517603+00 2025-10-02 16:13:11.517612+00 f t Invitado Amar invitado-1759421590615@example.com 55555555 \N \N \N \N \N 147 \N \N \N +7528 2025-08-29 19:22:10.775197+00 2025-08-29 19:22:10.775208+00 f t Paula Maneyro paulamaneyro@gmail.com 5491133934813 \N Virrey del Pino 2604 4D \N FEMALE \N 44.9379672 7.5400398 3 2122 \N pmaneyro +10048 2025-10-05 14:10:42.288313+00 2025-10-05 14:10:42.288328+00 f t Maria Verónica Giordano Lugo veronicagiordanolugo@hotmail.com +541166478930 \N Ventanita florida 97 \N \N -34.4491571 -58.6531891 22 \N \N \N +10229 2025-10-07 21:19:31.970005+00 2025-10-07 21:19:31.970017+00 f t Invitado Amar invitado-1759871971579@example.com 55555555 \N \N \N \N \N 6 \N \N \N +10411 2025-10-10 13:12:40.586845+00 2025-10-10 13:12:40.586853+00 f t Invitado Amar invitado-1760101958304@example.com 55555555 \N \N \N \N \N 16 \N \N \N +10593 2025-10-13 06:36:56.418663+00 2025-10-13 06:36:56.418672+00 f t Invitado Amar invitado-1760337416125@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10774 2025-10-15 14:59:49.968619+00 2025-10-15 14:59:49.968631+00 f t Invitado Amar invitado-1760540389288@example.com 55555555 \N \N \N \N \N 88 \N \N \N +10954 2025-10-17 14:57:18.818994+00 2025-10-17 14:57:18.819004+00 f t Invitado Amar invitado-1760713037360@example.com 55555555 \N \N \N \N \N 20 \N \N \N +11134 2025-10-20 13:11:10.78544+00 2025-10-20 13:11:10.785451+00 f t Daniel Oscar Díaz dandany362@gmail.com 5491155157211 \N Av Rivadavia 10574 piso 8 Depto 35 \N MALE \N -34.636976 -58.4961968 65 \N \N \N +11316 2025-10-22 05:33:29.669056+00 2025-10-22 05:33:29.669068+00 f t Invitado Amar invitado-1761111209213@example.com 55555555 \N \N \N \N \N 10 \N \N \N +11495 2025-10-25 09:02:16.745587+00 2025-10-25 09:02:16.745598+00 f t Invitado Amar invitado-1761382936433@example.com 55555555 \N \N \N \N \N 79 \N \N \N +11678 2025-10-28 02:51:44.202138+00 2025-10-28 02:51:44.202151+00 f t Invitado Amar invitado-1761619904118@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11860 2025-10-29 18:15:25.946996+00 2025-10-29 18:15:25.947006+00 f t Invitado Amar invitado-1761761724751@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12044 2025-10-31 11:59:54.268384+00 2025-10-31 11:59:54.268393+00 f t Invitado Amar invitado-1761911993444@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12226 2025-11-02 16:23:08.712235+00 2025-11-02 16:23:08.712244+00 f t Invitado Amar invitado-1762100587877@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12408 2025-11-05 01:04:58.970707+00 2025-11-05 01:04:58.970715+00 f t Invitado Amar invitado-1762304698941@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12590 2025-11-07 11:10:54.381856+00 2025-11-07 11:10:54.381865+00 f t Invitado Amar invitado-1762513855692@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12770 2025-11-09 13:03:11.479549+00 2025-11-09 13:03:11.479557+00 f t Invitado Amar invitado-1762693391121@example.com 55555555 \N \N \N \N \N 58 \N \N \N +12953 2025-11-11 10:42:40.04919+00 2025-11-11 10:42:40.0492+00 f t Invitado Amar invitado-1762857759206@example.com 55555555 \N \N \N \N \N 16 \N \N \N +13355 2025-11-15 03:15:38.562956+00 2025-11-15 03:15:38.562964+00 f t Invitado Amar invitado-1763176537212@example.com 55555555 \N \N \N \N \N 11 \N \N \N +13557 2025-11-17 22:30:38.903954+00 2025-11-17 22:30:38.903964+00 f t Invitado Amar invitado-1763418638466@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13745 2025-11-19 11:51:16.633124+00 2025-11-19 11:51:16.633133+00 f t Invitado Amar invitado-1763553075753@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13926 2025-11-20 17:05:46.611548+00 2025-11-20 17:05:46.61156+00 f t Invitado Amar invitado-1763658345843@example.com 55555555 \N \N \N \N \N 21 \N \N \N +14105 2025-11-21 23:20:39.484706+00 2025-11-21 23:20:39.484718+00 f t Invitado Amar invitado-1763767240333@example.com 55555555 \N \N \N \N \N 72 \N \N \N +14286 2025-11-24 02:11:08.032968+00 2025-11-24 02:11:08.032981+00 f t Invitado Amar invitado-1763950267120@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14467 2025-11-25 13:17:59.103201+00 2025-11-25 13:17:59.103215+00 f t Invitado Amar invitado-1764076678790@example.com 55555555 \N \N \N \N \N 113 \N \N \N +9699 2025-09-30 20:51:25.618175+00 2025-09-30 20:51:25.618184+00 f t Invitado Amar invitado-1759265481590@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7620 +9874 2025-10-02 16:43:01.301592+00 2025-10-02 16:43:01.301602+00 f t Invitado Amar invitado-1759423380113@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10049 2025-10-05 14:18:37.149718+00 2025-10-05 14:18:37.149727+00 f t Invitado Amar invitado-1759673916672@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10412 2025-10-10 13:15:23.988767+00 2025-10-10 13:15:23.988775+00 f t Invitado Amar invitado-1760102124586@example.com 55555555 \N \N \N \N \N 39 \N \N \N +10594 2025-10-13 07:43:44.938883+00 2025-10-13 07:43:44.938891+00 f t Invitado Amar invitado-1760341424369@example.com 55555555 \N \N \N \N \N 5 \N \N \N +10775 2025-10-15 15:00:14.505784+00 2025-10-15 15:00:14.505795+00 f t Invitado Amar invitado-1760540415271@example.com 55555555 \N \N \N \N \N 91 \N \N \N +10955 2025-10-17 15:25:28.492213+00 2025-10-17 15:25:28.492222+00 f t Invitado Amar invitado-1760714727897@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11135 2025-10-20 13:17:31.570817+00 2025-10-20 13:17:31.570826+00 f t Invitado Amar invitado-1760966250895@example.com 55555555 \N \N \N \N \N 38 \N \N \N +11317 2025-10-22 08:17:26.474429+00 2025-10-22 08:17:26.474438+00 f t Invitado Amar invitado-1761121046712@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11496 2025-10-25 10:07:21.370948+00 2025-10-25 10:07:21.370957+00 f t Invitado Amar invitado-1761386840902@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11679 2025-10-28 03:03:55.958013+00 2025-10-28 03:03:55.958021+00 f t Invitado Amar invitado-1761620635519@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11861 2025-10-29 18:22:45.582982+00 2025-10-29 18:22:45.582991+00 f t Invitado Amar invitado-1761762164721@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12045 2025-10-31 12:14:55.604854+00 2025-10-31 12:14:55.604866+00 f t Invitado Amar invitado-1761912895474@example.com 55555555 \N \N \N \N \N 153 \N \N \N +12227 2025-11-02 17:39:00.979197+00 2025-11-02 17:39:00.979208+00 f t Invitado Amar invitado-1762105139834@example.com 55555555 \N \N \N \N \N 9 \N \N \N +160 2024-10-30 14:13:09.96+00 2024-10-30 14:13:09.96+00 f t Adriana Vetere adriana.vetere@gmail.com 5491151190800 Laprida 1408 Piso 13 Dpto A (entre Av Santa Fe y Arenales) Recoleta Laprida 1408 Piso 13 Dpto A \N FEMALE \N -34.59239432040816 -58.40597872244898 9 309 \N avetere +12409 2025-11-05 02:14:27.217867+00 2025-11-05 02:14:27.217875+00 f t Invitado Amar invitado-1762308866656@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12591 2025-11-07 11:18:26.264565+00 2025-11-07 11:18:26.264576+00 f t Invitado Amar invitado-1762514305831@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12771 2025-11-09 13:05:22.057223+00 2025-11-09 13:05:22.057234+00 f t Invitado Amar invitado-1762693521661@example.com 55555555 \N \N \N \N \N 33 \N \N \N +12954 2025-11-11 10:44:43.094115+00 2025-11-11 10:44:43.094124+00 f t Invitado Amar invitado-1762857882673@example.com 55555555 \N \N \N \N \N 51 \N \N \N +13125 2025-11-12 22:23:54.584808+00 2025-11-12 22:23:54.584821+00 f t Invitado Amar invitado-1762986234171@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13356 2025-11-15 03:42:16.220233+00 2025-11-15 03:42:16.220242+00 f t Invitado Amar invitado-1763178134402@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13558 2025-11-17 22:36:22.56385+00 2025-11-17 22:36:22.563858+00 f t Invitado Amar invitado-1763418981230@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13746 2025-11-19 11:53:08.202625+00 2025-11-19 11:53:08.202634+00 f t Invitado Amar invitado-1763553188007@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13927 2025-11-20 17:07:48.94196+00 2025-11-20 17:07:48.941971+00 f t Invitado Amar invitado-1763658468335@example.com 55555555 \N \N \N \N \N 43 \N \N \N +14106 2025-11-21 23:27:28.113349+00 2025-11-21 23:27:28.11336+00 f t Invitado Amar invitado-1763767649591@example.com 55555555 \N \N \N \N \N 72 \N \N \N +14287 2025-11-24 02:54:34.877803+00 2025-11-24 02:54:34.877816+00 f t Invitado Amar invitado-1763952873733@example.com 55555555 \N \N \N \N \N 162 \N \N \N +14468 2025-11-25 13:35:00.685433+00 2025-11-25 13:35:00.685448+00 f t Invitado Amar invitado-1764077700255@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9700 2025-09-30 20:54:20.745677+00 2025-09-30 20:54:20.745689+00 f t María Lourdes Decoud decoud.lourdes@gmail.com 5492234365178 \N Venezuela 4009 Piso 4depto A \N FEMALE \N -34.6176158 -58.4216901 23 \N \N mdecoud +9875 2025-10-02 16:44:26.29118+00 2025-10-02 16:44:26.29119+00 f t Invitado Amar invitado-1759423465096@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10050 2025-10-05 14:26:05.251073+00 2025-10-05 14:26:05.251082+00 f t Invitado Amar invitado-1759674366672@example.com 55555555 \N \N \N \N \N 5 \N \N \N +10230 2025-10-07 21:29:50.804384+00 2025-10-07 21:29:50.804392+00 f t Invitado Amar invitado-1759872589936@example.com 55555555 \N \N \N \N \N 44 \N \N \N +10413 2025-10-10 13:17:57.551749+00 2025-10-10 13:17:57.551758+00 f t Invitado Amar invitado-1760102275084@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10595 2025-10-13 08:17:11.62649+00 2025-10-13 08:17:11.626501+00 f t Invitado Amar invitado-1760343430394@example.com 55555555 \N \N \N \N \N 24 \N \N \N +10776 2025-10-15 15:17:58.324142+00 2025-10-15 15:17:58.324152+00 f t Invitado Amar invitado-1760541520136@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10956 2025-10-17 15:33:04.867015+00 2025-10-17 15:33:04.867026+00 f t Invitado Amar invitado-1760715183471@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13126 2025-11-12 22:29:50.22608+00 2025-11-12 22:29:50.226089+00 f t Invitado Amar invitado-1762986588898@example.com 55555555 \N \N \N \N \N 88 \N \N \N +11136 2025-10-20 13:21:37.444467+00 2025-10-20 13:21:37.444477+00 f t karina hoyos k.hoyosmiguez@gmail.com +5491163700068 \N Rafael Jijena Sanchez 11 Temperley \N \N -34.7873503 -58.3910264 85 \N \N \N +11318 2025-10-22 11:12:34.794681+00 2025-10-22 11:12:34.794691+00 f t Invitado Amar invitado-1761131553859@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11497 2025-10-25 11:18:17.83623+00 2025-10-25 11:18:17.836242+00 f t Invitado Amar invitado-1761391096737@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11680 2025-10-28 03:04:04.138534+00 2025-10-28 03:04:04.138544+00 f t Invitado Amar invitado-1761620642863@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11862 2025-10-29 18:35:35.202478+00 2025-10-29 18:35:35.202487+00 f t Invitado Amar invitado-1761762933314@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12046 2025-10-31 12:20:04.091459+00 2025-10-31 12:20:04.091473+00 f t Invitado Amar invitado-1761913203860@example.com 55555555 \N \N \N \N \N 153 \N \N \N +12228 2025-11-02 17:46:05.405816+00 2025-11-02 17:46:05.405824+00 f t Invitado Amar invitado-1762105564816@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12410 2025-11-05 03:46:43.582077+00 2025-11-05 03:46:43.582086+00 f t Invitado Amar invitado-1762314402336@example.com 55555555 \N \N \N \N \N 142 \N \N \N +12592 2025-11-07 11:49:43.854125+00 2025-11-07 11:49:43.854135+00 f t Invitado Amar invitado-1762516183493@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12772 2025-11-09 13:24:37.504005+00 2025-11-09 13:24:37.504015+00 f t Invitado Amar invitado-1762694682614@example.com 55555555 \N \N \N \N \N 53 \N \N \N +12955 2025-11-11 10:49:12.039723+00 2025-11-11 10:49:12.039736+00 f t Invitado Amar invitado-1762858151585@example.com 55555555 \N \N \N \N \N 43 \N \N \N +13357 2025-11-15 03:45:06.776112+00 2025-11-15 03:45:06.776124+00 f t Invitado Amar invitado-1763178304059@example.com 55555555 \N \N \N \N \N 64 \N \N \N +13559 2025-11-17 22:37:18.96923+00 2025-11-17 22:37:18.969239+00 f t Invitado Amar invitado-1763419038062@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13747 2025-11-19 11:57:51.455885+00 2025-11-19 11:57:51.455893+00 f t Invitado Amar invitado-1763553470970@example.com 55555555 \N \N \N \N \N 46 \N \N \N +13928 2025-11-20 17:17:01.025308+00 2025-11-20 17:17:01.025317+00 f t Invitado Amar invitado-1763659020868@example.com 55555555 \N \N \N \N \N 43 \N \N \N +14107 2025-11-21 23:32:50.524478+00 2025-11-21 23:32:50.524487+00 f t Nicolás Agustín Nuñez nikoanunez@gmail.com +541158715281 \N Angel Justiniano Carranza 977 3B \N \N -34.5883857 -58.4453111 35 2229 \N \N +14288 2025-11-24 03:37:31.163639+00 2025-11-24 03:37:31.163648+00 f t Invitado Amar invitado-1763955450713@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14469 2025-11-25 13:37:46.070773+00 2025-11-25 13:37:46.071281+00 f t Invitado Amar invitado-1764077865397@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9701 2025-09-30 20:54:18.902168+00 2025-09-30 20:54:18.902177+00 f t Invitado Amar invitado-1759265657941@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-7621 +9876 2025-10-02 16:45:06.142327+00 2025-10-02 16:45:06.142339+00 f t Invitado Amar invitado-1759423505765@example.com 55555555 \N \N \N \N \N 16 \N \N \N +10051 2025-10-05 14:37:19.226926+00 2025-10-05 14:37:19.226935+00 f t Invitado Amar invitado-1759675038756@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10231 2025-10-07 21:39:42.508685+00 2025-10-07 21:39:42.508696+00 f t Invitado Amar invitado-1759873183074@example.com 55555555 \N \N \N \N \N 11 \N \N \N +10414 2025-10-10 13:29:00.369019+00 2025-10-10 13:29:00.369027+00 f t Ana Lopez Furst analopezfurst@gmail.com 5491164000020 \N Nicolas Avellaneda 3955 \N \N FEMALE \N -34.5034068 -58.502447 39 \N \N \N +10596 2025-10-13 08:20:15.671917+00 2025-10-13 08:20:15.67193+00 f t Invitado Amar invitado-1760343614249@example.com 55555555 \N \N \N \N \N 24 \N \N \N +10777 2025-10-15 15:23:03.51516+00 2025-10-15 15:23:03.515169+00 f t Alejandra Montemayor alejandracmontemayor@gmail.com +541166282875 \N Senador Bordabehere 3820 4B \N \N -34.5961173 -58.5322631 89 \N \N \N +10957 2025-10-17 15:36:43.972218+00 2025-10-17 15:36:43.972232+00 f t Mariela mazzu marielamazzu@gmail.com 5491161958300 \N Donado 808 7H \N FEMALE \N -34.5866829 -58.4709373 24 \N \N \N +11137 2025-10-20 13:23:18.882652+00 2025-10-20 13:23:18.882665+00 f t Invitado Amar invitado-1760966597802@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11319 2025-10-22 11:24:17.098613+00 2025-10-22 11:24:17.098622+00 f t Invitado Amar invitado-1761132256422@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11498 2025-10-25 12:36:42.94547+00 2025-10-25 12:36:42.94548+00 f t Invitado Amar invitado-1761395913698@example.com 55555555 \N \N \N \N \N \N \N \N \N +11681 2025-10-28 03:04:29.985746+00 2025-10-28 03:04:29.985759+00 f t Invitado Amar invitado-1761620669273@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11863 2025-10-29 18:49:16.751815+00 2025-10-29 18:49:16.751824+00 f t Invitado Amar invitado-1761763756085@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12047 2025-10-31 12:21:36.889839+00 2025-10-31 12:21:36.889847+00 f t Invitado Amar invitado-1761913297001@example.com 55555555 \N \N \N \N \N 153 \N \N \N +12229 2025-11-02 17:46:47.297859+00 2025-11-02 17:46:47.297868+00 f t Invitado Amar invitado-1762105606973@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12411 2025-11-05 03:54:50.59894+00 2025-11-05 03:54:50.598949+00 f t Invitado Amar invitado-1762314888826@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12593 2025-11-07 11:56:02.942504+00 2025-11-07 11:56:02.942513+00 f t Invitado Amar invitado-1762516565039@example.com 55555555 \N \N \N \N \N 22 \N \N \N +12773 2025-11-09 13:29:54.754576+00 2025-11-09 13:29:54.75459+00 f t Diego Gonzalez gz-diego@outlook.com +541136813587 \N Castro Barros 536 \N \N -34.6555143 -58.7061568 53 2075 \N \N +12956 2025-11-11 10:57:42.029896+00 2025-11-11 10:57:42.029904+00 f t Invitado Amar invitado-1762858661413@example.com 55555555 \N \N \N \N \N 155 \N \N \N +13127 2025-11-12 22:30:07.340516+00 2025-11-12 22:30:07.340526+00 f t Lucia Buireo buireolucia@gmail.com +541164162066 \N Arcos 1619 6d \N FEMALE \N -34.564762 -58.4499202 3 2123 \N \N +13358 2025-11-15 03:46:30.061945+00 2025-11-15 03:46:30.061953+00 f t Invitado Amar invitado-1763178389188@example.com 55555555 \N \N \N \N \N 41 \N \N \N +13560 2025-11-17 22:39:13.949486+00 2025-11-17 22:39:13.949495+00 f t Invitado Amar invitado-1763419151816@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13748 2025-11-19 12:00:46.816409+00 2025-11-19 12:00:46.816419+00 t t Invitado Amar invitado-1763553645691@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13929 2025-11-20 17:36:38.036497+00 2025-11-20 17:36:38.036506+00 f t Invitado Amar invitado-1763660199010@example.com 55555555 \N \N \N \N \N 73 \N \N \N +14108 2025-11-21 23:33:30.758971+00 2025-11-21 23:33:30.758984+00 f t Invitado Amar invitado-1763768010075@example.com 55555555 \N \N \N \N \N 19 \N \N \N +14289 2025-11-24 03:42:54.447983+00 2025-11-24 03:42:54.447992+00 f t Invitado Amar invitado-1763955773920@example.com 55555555 \N \N \N \N \N 34 \N \N \N +14470 2025-11-25 13:50:56.724953+00 2025-11-25 13:50:56.725338+00 f t Invitado Amar invitado-1764078654682@example.com 55555555 \N \N \N \N \N 16 \N \N \N +9702 2025-09-30 20:57:28.309187+00 2025-09-30 20:57:28.309196+00 f t Invitado Amar invitado-1759265847960@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-7622 +9877 2025-10-02 16:52:45.076343+00 2025-10-02 16:52:45.076352+00 f t Invitado Amar invitado-1759423964156@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10052 2025-10-05 14:56:19.547023+00 2025-10-05 14:56:19.547031+00 f t Maria Andrea Mateo mandreamateo2@gmail.com 5491133490399 \N Junin 367 1ro b ( entre calle sarmiento y av corrientes) \N FEMALE \N -34.6050519 -58.3966523 18 \N \N \N +10232 2025-10-07 23:12:24.682136+00 2025-10-07 23:12:24.682148+00 f t Invitado Amar invitado-1759878744953@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10415 2025-10-10 13:41:06.369297+00 2025-10-10 13:41:06.369307+00 f t Invitado Amar invitado-1760103666165@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10597 2025-10-13 09:52:21.951673+00 2025-10-13 09:52:21.951683+00 f t Invitado Amar invitado-1760349140299@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10778 2025-10-15 15:40:38.75877+00 2025-10-15 15:40:38.758778+00 f t Invitado Amar invitado-1760542838547@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10958 2025-10-17 15:45:23.647768+00 2025-10-17 15:45:23.647777+00 f t Invitado Amar invitado-1760715922903@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13128 2025-11-12 22:31:55.977325+00 2025-11-12 22:31:55.977334+00 f t Invitado Amar invitado-1762986715757@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11138 2025-10-20 13:24:05.410902+00 2025-10-20 13:24:05.410911+00 f t Carla modarelli modarellicarla8@gmail.com +541126915216 \N Jose Enrique rodó 4163 Torre 13 a, piso 1, depto 5 \N \N -34.6424867 -58.4843341 5 \N \N \N +11320 2025-10-22 12:08:42.527645+00 2025-10-22 12:08:42.527657+00 f t Invitado Amar invitado-1761134922173@example.com 55555555 \N \N \N \N \N 86 \N \N \N +11499 2025-10-25 12:49:46.700383+00 2025-10-25 12:49:46.700394+00 f t Invitado Amar invitado-1761396585539@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11682 2025-10-28 03:05:01.945235+00 2025-10-28 03:05:01.945249+00 f t Invitado Amar invitado-1761620701504@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11864 2025-10-29 18:56:23.096018+00 2025-10-29 18:56:23.096031+00 f t Invitado Amar invitado-1761764181798@example.com 55555555 \N \N \N \N \N 25 \N \N \N +12048 2025-10-31 12:22:29.259267+00 2025-10-31 12:22:29.259277+00 f t Invitado Amar invitado-1761913349363@example.com 55555555 \N \N \N \N \N 153 \N \N \N +12230 2025-11-02 17:48:27.094941+00 2025-11-02 17:48:27.09495+00 t t Invitado Amar invitado-1762105706921@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12412 2025-11-05 04:01:45.258705+00 2025-11-05 04:01:45.258714+00 f t Invitado Amar invitado-1762315304913@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12594 2025-11-07 11:57:35.575102+00 2025-11-07 11:57:35.57511+00 f t Invitado Amar invitado-1762516655159@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12774 2025-11-09 13:37:43.533614+00 2025-11-09 13:37:43.533626+00 f t Invitado Amar invitado-1762695463181@example.com 55555555 \N \N \N \N \N 84 \N \N \N +12957 2025-11-11 11:07:45.993249+00 2025-11-11 11:07:45.993258+00 f t Invitado Amar invitado-1762859265441@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13359 2025-11-15 04:06:40.209945+00 2025-11-15 04:06:40.209954+00 f t Invitado Amar invitado-1763179599580@example.com 55555555 \N \N \N \N \N 61 \N \N \N +13561 2025-11-17 22:39:30.913283+00 2025-11-17 22:39:30.913292+00 f t Invitado Amar invitado-1763419170216@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13749 2025-11-19 12:03:23.935223+00 2025-11-19 12:03:23.935232+00 f t Invitado Amar invitado-1763553803192@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13930 2025-11-20 17:39:45.190508+00 2025-11-20 17:39:45.190516+00 f t Invitado Amar invitado-1763660382424@example.com 55555555 \N \N \N \N \N 142 \N \N \N +14109 2025-11-21 23:37:22.4428+00 2025-11-21 23:37:22.442813+00 f t Invitado Amar invitado-1763768241993@example.com 55555555 \N \N \N \N \N 35 \N \N \N +14290 2025-11-24 03:45:14.568904+00 2025-11-24 03:45:14.568917+00 f t Invitado Amar invitado-1763955914119@example.com 55555555 \N \N \N \N \N 82 \N \N \N +14471 2025-11-25 14:04:21.593113+00 2025-11-25 14:04:21.594435+00 f t Invitado Amar invitado-1764079459961@example.com 55555555 \N \N \N \N \N 18 \N \N \N +9703 2025-09-30 21:03:53.006328+00 2025-09-30 21:03:53.006338+00 f t Invitado Amar invitado-1759266232595@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7623 +9878 2025-10-02 16:55:49.887207+00 2025-10-02 16:55:49.887216+00 f t Invitado Amar invitado-1759424149433@example.com 55555555 \N \N \N \N \N 82 \N \N \N +10053 2025-10-05 15:01:53.376445+00 2025-10-05 15:01:53.376457+00 f t Invitado Amar invitado-1759676512851@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10233 2025-10-07 23:17:02.875783+00 2025-10-07 23:17:02.875793+00 f t Invitado Amar invitado-1759879022393@example.com 55555555 \N \N \N \N \N 112 \N \N \N +409 2025-02-03 21:08:14.070733+00 2025-02-03 21:08:14.070742+00 f t Andrea Patiño-amstrong andrea.patino@outlook.com.ar 5491124621871 \N Migueletes 1306 piso 10 \N MALE \N -34.55986027346345 -58.443384683010855 3 552 \N apatinoamstrong +10598 2025-10-13 10:34:48.497474+00 2025-10-13 10:34:48.497484+00 f t Invitado Amar invitado-1760351687893@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10779 2025-10-15 15:53:56.218855+00 2025-10-15 15:53:56.218864+00 f t Invitado Amar invitado-1760543636232@example.com 55555555 \N \N \N \N \N 46 \N \N \N +10959 2025-10-17 15:50:05.72426+00 2025-10-17 15:50:05.724273+00 f t Invitado Amar invitado-1760716205308@example.com 55555555 \N \N \N \N \N 147 \N \N \N +11139 2025-10-20 13:25:11.88954+00 2025-10-20 13:25:11.889551+00 f t Invitado Amar invitado-1760966713655@example.com 55555555 \N \N \N \N \N 25 \N \N \N +13129 2025-11-12 23:19:12.124289+00 2025-11-12 23:19:12.124298+00 f t Invitado Amar invitado-1762989551297@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13360 2025-11-15 04:27:25.466113+00 2025-11-15 04:27:25.466122+00 f t Invitado Amar invitado-1763180845543@example.com 55555555 \N \N \N \N \N 72 \N \N \N +13562 2025-11-17 22:40:06.153822+00 2025-11-17 22:40:06.153832+00 f t Invitado Amar invitado-1763419205230@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13750 2025-11-19 12:05:45.973991+00 2025-11-19 12:05:45.973999+00 f t Invitado Amar invitado-1763553944849@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11500 2025-10-25 12:51:19.858298+00 2025-10-25 12:51:19.858309+00 f t Alejandra Rodriguez alejandrarodriguezr7@gmail.com +541138262050 \N Garibaldi 464 Casa \N \N -34.4677916 -58.5218043 77 \N \N \N +11683 2025-10-28 03:05:45.518814+00 2025-10-28 03:05:45.518825+00 f t Invitado Amar invitado-1761620744893@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11321 2025-10-22 12:24:41.239829+00 2025-10-22 12:24:41.239843+00 f t emilia abas abasemilia@hotmail.com 91156626222 \N cesar diaz 3480 1 depto 4 NO FUNCIONA EL TIMBRE \N FEMALE \N -34.6122727 -58.4753775 17 1901 \N \N +11865 2025-10-29 18:59:41.685053+00 2025-10-29 18:59:41.685062+00 f t Invitado Amar invitado-1761764382328@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12049 2025-10-31 13:37:29.275447+00 2025-10-31 13:37:29.275457+00 f t Invitado Amar invitado-1761917847438@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13931 2025-11-20 17:47:05.82493+00 2025-11-20 17:47:05.824939+00 t t Invitado Amar invitado-1763660825510@example.com 55555555 \N \N \N \N \N 12 \N \N \N +6688 2025-08-17 00:26:49.254654+00 2025-08-17 00:26:49.254667+00 f t Agostina Alvarez agostina.v.alvarez@gmail.com +541164599736 \N Av Directorio 1005 4A \N \N \N -34.6291111 -58.441982 14 1595 \N aalvarez +12413 2025-11-05 04:12:20.353661+00 2025-11-05 04:12:20.35367+00 f t Invitado Amar invitado-1762315939791@example.com 55555555 \N \N \N \N \N 154 \N \N \N +12595 2025-11-07 12:11:18.221781+00 2025-11-07 12:11:18.22179+00 f t Invitado Amar invitado-1762517477114@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12775 2025-11-09 13:59:16.771644+00 2025-11-09 13:59:16.771652+00 f t Invitado Amar invitado-1762696754117@example.com 55555555 \N \N \N \N \N 34 \N \N \N +12958 2025-11-11 12:38:30.482553+00 2025-11-11 12:38:30.482561+00 f t Invitado Amar invitado-1762864709931@example.com 55555555 \N \N \N \N \N 71 \N \N \N +14110 2025-11-21 23:38:10.336687+00 2025-11-21 23:38:10.336701+00 f t Invitado Amar invitado-1763768289200@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14291 2025-11-24 04:04:23.822125+00 2025-11-24 04:04:23.822136+00 f t Invitado Amar invitado-1763957063077@example.com 55555555 \N \N \N \N \N 84 \N \N \N +14472 2025-11-25 14:08:23.076548+00 2025-11-25 14:08:23.077067+00 f t andres ruzich admipaulaylaura@gmail.com 91159517446 \N chacabuco 456 timbre 2 \N MALE \N -34.5358668 -58.4823458 82 2265 \N \N +9096 2025-09-22 09:57:09.580011+00 2025-09-22 09:57:09.58002+00 f t Maria Luisa Diaz marialdi@icloud.com +541133964299 \N Pedro Goyena 1237 CASA \N FEMALE \N -34.4802031 -58.497483 68 \N \N mdiaz-3 +9496 2025-09-27 19:53:35.234088+00 2025-09-27 19:53:35.234097+00 f t Claudia Reynaha csreynaga@gmail.com +541133090914 \N Los Pozos 3831 Entre Suipacha y Deheza \N FEMALE \N -34.6996177 -58.3540882 73 \N \N creynaha +13130 2025-11-12 23:38:21.296156+00 2025-11-12 23:38:21.296166+00 f t Invitado Amar invitado-1762990701186@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13361 2025-11-15 04:55:04.968288+00 2025-11-15 04:55:04.968303+00 f t Invitado Amar invitado-1763182503743@example.com 55555555 \N \N \N \N \N 32 \N \N \N +13563 2025-11-17 22:45:16.47029+00 2025-11-17 22:45:16.470299+00 f t Invitado Amar invitado-1763419515746@example.com 55555555 \N \N \N \N \N 32 \N \N \N +13751 2025-11-19 12:06:25.054884+00 2025-11-19 12:06:25.054893+00 f t Invitado Amar invitado-1763553983144@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10054 2025-10-05 15:26:40.483977+00 2025-10-05 15:26:40.483986+00 f t Claudia garcia Bendahan claubendahan@hormail.com +541161399031 \N suipacha 1379 7 A \N \N \N -34.5917851 -58.3800678 9 \N \N \N +10234 2025-10-07 23:23:04.386447+00 2025-10-07 23:23:04.386461+00 f t Invitado Amar invitado-1759879384456@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10416 2025-10-10 14:01:19.081312+00 2025-10-10 14:01:19.081323+00 f t Invitado Amar invitado-1760104877868@example.com 55555555 \N \N \N \N \N 37 \N \N \N +10599 2025-10-13 10:50:23.468731+00 2025-10-13 10:50:23.468744+00 f t Invitado Amar invitado-1760352623209@example.com 55555555 \N \N \N \N \N 74 \N \N \N +10780 2025-10-15 16:19:45.554361+00 2025-10-15 16:19:45.554369+00 f t Invitado Amar invitado-1760545185871@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10960 2025-10-17 16:12:41.593074+00 2025-10-17 16:12:41.593094+00 f t Giovanna Leon gleon126@gmail.com 5491163957902 \N Paseo colon 1019 15 E \N FEMALE \N -34.6164761 -58.3694459 15 \N \N \N +13932 2025-11-20 17:55:07.187028+00 2025-11-20 17:55:07.187041+00 f t Invitado Amar invitado-1763661304440@example.com 55555555 \N \N \N \N \N 156 \N \N \N +11140 2025-10-20 13:26:09.773393+00 2025-10-20 13:26:09.773405+00 f t Cecilia Mazza mcecimazza@gmail.com +541152620660 \N Vuelta de Obligado 2890 1 A \N \N -34.5540208 -58.4621802 25 \N \N \N +11322 2025-10-22 12:34:05.686833+00 2025-10-22 12:34:05.686842+00 f t Invitado Amar invitado-1761136445281@example.com 55555555 \N \N \N \N \N 147 \N \N \N +11501 2025-10-25 12:56:12.589876+00 2025-10-25 12:56:12.589888+00 f t Invitado Amar invitado-1761396972574@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11684 2025-10-28 03:06:33.727218+00 2025-10-28 03:06:33.727226+00 f t Invitado Amar invitado-1761620793172@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11866 2025-10-29 19:00:29.014984+00 2025-10-29 19:00:29.014996+00 f t Invitado Amar invitado-1761764430498@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14111 2025-11-21 23:59:40.641846+00 2025-11-21 23:59:40.641854+00 f t Invitado Amar invitado-1763769580245@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12050 2025-10-31 13:38:29.55592+00 2025-10-31 13:38:29.55593+00 f t Karina Martínez karinagalvan724@gmail.com 5491128561391 \N Matanza 3356 PB \N FEMALE \N -34.6567483 -58.4260918 40 1948 \N \N +12231 2025-11-02 17:51:27.348295+00 2025-11-02 17:51:27.348309+00 f t Invitado Amar invitado-1762105887171@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12414 2025-11-05 04:29:33.513534+00 2025-11-05 04:29:33.513547+00 f t Invitado Amar invitado-1762316941790@example.com 55555555 \N \N \N \N \N 13 \N \N \N +12596 2025-11-07 12:11:48.777996+00 2025-11-07 12:11:48.778009+00 f t Invitado Amar invitado-1762517506855@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12776 2025-11-09 14:02:52.351433+00 2025-11-09 14:02:52.35147+00 f t Invitado Amar invitado-1762696971533@example.com 55555555 \N \N \N \N \N 35 \N \N \N +12959 2025-11-11 12:57:31.272897+00 2025-11-11 12:57:31.272909+00 f t Invitado Amar invitado-1762865850839@example.com 55555555 \N \N \N \N \N 18 \N \N \N +14292 2025-11-24 04:20:57.355755+00 2025-11-24 04:20:57.355764+00 f t Invitado Amar invitado-1763958065385@example.com 55555555 \N \N \N \N \N 147 \N \N \N +14473 2025-11-25 14:09:13.628168+00 2025-11-25 14:09:13.628478+00 f t Nicolas Silva Nsilva2eme@gmail.com +541124626985 \N Martin lange 4342 \N \N -34.5569318 -58.5551265 79 2267 \N \N +9088 2025-09-22 03:00:59.465164+00 2025-09-22 03:00:59.465175+00 f t Soledad Pozzuto solpozz16@gmail.com +541135152500 \N Palestina 554 Piso 3 Dto. 15 \N FEMALE \N -34.605029 -58.4260597 23 \N \N spozzuto +9879 2025-10-02 17:32:03.72769+00 2025-10-02 17:32:03.7277+00 f t Invitado Amar invitado-1759426323341@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10055 2025-10-05 15:42:44.911319+00 2025-10-05 15:42:44.911327+00 f t Invitado Amar invitado-1759678964276@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13131 2025-11-13 00:08:54.055903+00 2025-11-13 00:08:54.055917+00 f t Invitado Amar invitado-1762992533512@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10235 2025-10-07 23:33:57.541066+00 2025-10-07 23:33:57.541075+00 f t Clara Naveyra clarinaveyra19@gmail.com +542236686483 \N Blanco encalada 3039 1 C \N \N -34.5629149 -58.4654827 3 \N \N \N +10417 2025-10-10 14:03:18.646406+00 2025-10-10 14:03:18.646416+00 f t Invitado Amar invitado-1760104997619@example.com 55555555 \N \N \N \N \N 37 \N \N \N +13362 2025-11-15 05:33:09.021861+00 2025-11-15 05:33:09.021871+00 f t Invitado Amar invitado-1763184788641@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10600 2025-10-13 11:55:35.348894+00 2025-10-13 11:55:35.348907+00 f t Daniel Linares Linaresgonzalezda@gmail.com +541139396264 \N Av pedro goyena 1272 2E \N \N -34.62627 -58.4393458 14 \N \N \N +10781 2025-10-15 16:44:45.78322+00 2025-10-15 16:44:45.783229+00 f t Invitado Amar invitado-1760546685151@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10961 2025-10-17 16:17:25.552788+00 2025-10-17 16:17:25.553031+00 f t Invitado Amar invitado-1760717843512@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11141 2025-10-20 13:31:01.264975+00 2025-10-20 13:31:01.264988+00 f t Invitado Amar invitado-1760967060828@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11323 2025-10-22 12:37:57.452477+00 2025-10-22 12:37:57.452487+00 f t Invitado Amar invitado-1761136677035@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11502 2025-10-25 13:21:14.045073+00 2025-10-25 13:21:14.045083+00 f t Invitado Amar invitado-1761398475187@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13564 2025-11-17 22:46:48.091258+00 2025-11-17 22:46:48.091266+00 f t Invitado Amar invitado-1763419607597@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13752 2025-11-19 12:07:27.626969+00 2025-11-19 12:07:27.626979+00 f t Invitado Amar invitado-1763554045896@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11867 2025-10-29 19:08:25.308296+00 2025-10-29 19:08:25.308307+00 f t Invitado Amar invitado-1761764904027@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12051 2025-10-31 13:48:19.958917+00 2025-10-31 13:48:19.958925+00 f t Invitado Amar invitado-1761918499427@example.com 55555555 \N \N \N \N \N 19 \N \N \N +12232 2025-11-02 18:03:54.936719+00 2025-11-02 18:03:54.936728+00 f t Invitado Amar invitado-1762106634515@example.com 55555555 \N \N \N \N \N 17 \N \N \N +13933 2025-11-20 18:04:57.938707+00 2025-11-20 18:04:57.938716+00 f t Invitado Amar invitado-1763661897335@example.com 55555555 \N \N \N \N \N 146 \N \N \N +11685 2025-10-28 03:07:33.025646+00 2025-10-28 03:07:33.025655+00 f t Verónica Acosta veronicaflaviaacosta@yahoo.com +541169626499 \N Moreto 151 A Depto 1 (PH) \N \N \N -34.6410098 -58.4897662 65 1997 \N \N +12415 2025-11-05 04:57:39.182437+00 2025-11-05 04:57:39.182446+00 f t Invitado Amar invitado-1762318658297@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12597 2025-11-07 12:29:33.03891+00 2025-11-07 12:29:33.038923+00 f t Invitado Amar invitado-1762518572601@example.com 55555555 \N \N \N \N \N 20 \N \N \N +12777 2025-11-09 14:07:05.126499+00 2025-11-09 14:07:05.126511+00 f t Invitado Amar invitado-1762697225542@example.com 55555555 \N \N \N \N \N 90 \N \N \N +12960 2025-11-11 13:01:23.255852+00 2025-11-11 13:01:23.256557+00 f t Invitado Amar invitado-1762865887606@example.com 55555555 \N \N \N \N \N 53 \N \N \N +14112 2025-11-22 00:03:53.666759+00 2025-11-22 00:03:53.666768+00 f t Invitado Amar invitado-1763769832365@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14293 2025-11-24 04:41:53.39436+00 2025-11-24 04:41:53.394368+00 f t Invitado Amar invitado-1763959311148@example.com 55555555 \N \N \N \N \N 64 \N \N \N +14474 2025-11-25 14:12:36.261245+00 2025-11-25 14:12:36.261277+00 f t Invitado Amar invitado-1764079952934@example.com 55555555 \N \N \N \N \N 26 \N \N \N +9704 2025-09-30 21:08:18.344406+00 2025-09-30 21:08:18.344416+00 f t Invitado Amar invitado-1759266497981@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7624 +9880 2025-10-02 17:46:52.626524+00 2025-10-02 17:46:52.626533+00 f t Invitado Amar invitado-1759427250786@example.com 55555555 \N \N \N \N \N 83 \N \N \N +10056 2025-10-05 16:03:45.519656+00 2025-10-05 16:03:45.519665+00 f t Invitado Amar invitado-1759680225168@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10236 2025-10-07 23:41:01.917505+00 2025-10-07 23:41:01.917519+00 f t Invitado Amar invitado-1759880461494@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10418 2025-10-10 14:32:11.980482+00 2025-10-10 14:32:11.980491+00 f t Invitado Amar invitado-1760106731500@example.com 55555555 \N \N \N \N \N 31 \N \N \N +10601 2025-10-13 11:56:15.942728+00 2025-10-13 11:56:15.942737+00 f t Invitado Amar invitado-1760356575557@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10782 2025-10-15 16:50:02.418992+00 2025-10-15 16:50:02.419007+00 f t Invitado Amar invitado-1760547001898@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10962 2025-10-17 16:26:28.059983+00 2025-10-17 16:26:28.059996+00 f t Invitado Amar invitado-1760718386021@example.com 55555555 \N \N \N \N \N 5 \N \N \N +11142 2025-10-20 13:33:44.475172+00 2025-10-20 13:33:44.475182+00 f t Invitado Amar invitado-1760967224062@example.com 55555555 \N \N \N \N \N 74 \N \N \N +11324 2025-10-22 13:08:48.41868+00 2025-10-22 13:08:48.41869+00 f t Invitado Amar invitado-1761138528026@example.com 55555555 \N \N \N \N \N 65 \N \N \N +13132 2025-11-13 00:11:12.625698+00 2025-11-13 00:11:12.625709+00 f t Invitado Amar invitado-1762992672268@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13363 2025-11-15 06:04:10.224503+00 2025-11-15 06:04:10.224513+00 f t Invitado Amar invitado-1763186649244@example.com 55555555 \N \N \N \N \N 66 \N \N \N +13565 2025-11-17 23:11:45.584828+00 2025-11-17 23:11:45.58484+00 f t Soledad Gutierrez A.sole.gutierrez@gmail.com 5491161044861 \N Melian 3570 1d \N FEMALE \N -34.5557351 -58.4794704 31 2174 \N \N +13753 2025-11-19 12:14:41.510334+00 2025-11-19 12:14:41.510344+00 f t Invitado Amar invitado-1763554481072@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11686 2025-10-28 03:08:39.354992+00 2025-10-28 03:08:39.355004+00 f t Invitado Amar invitado-1761620918239@example.com 55555555 \N \N \N \N \N 86 \N \N \N +11868 2025-10-29 19:10:35.753678+00 2025-10-29 19:10:35.753688+00 f t Invitado Amar invitado-1761765034664@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12052 2025-10-31 14:08:41.340561+00 2025-10-31 14:08:41.34057+00 f t Invitado Amar invitado-1761919720980@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12233 2025-11-02 18:05:07.307029+00 2025-11-02 18:05:07.307039+00 f t Invitado Amar invitado-1762106707140@example.com 55555555 \N \N \N \N \N 17 \N \N \N +13934 2025-11-20 18:09:51.452342+00 2025-11-20 18:09:51.452358+00 f t Invitado Amar invitado-1763662190916@example.com 55555555 \N \N \N \N \N 74 \N \N \N +12416 2025-11-05 10:09:42.760588+00 2025-11-05 10:09:42.760597+00 f t Invitado Amar invitado-1762337381954@example.com 55555555 \N \N \N \N \N 44 \N \N \N +12598 2025-11-07 12:39:07.582951+00 2025-11-07 12:39:07.582964+00 f t Invitado Amar invitado-1762519146704@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11503 2025-10-25 13:43:15.179458+00 2025-10-25 13:43:15.179471+00 f t EDGARDO LUIS LARIGUET galiwer@hotmail.com.ar +541155677624 \N Carabobo 244 1 B \N MALE \N -34.629812 -58.4550752 4 1949 \N \N +12778 2025-11-09 14:18:40.731647+00 2025-11-09 14:18:40.731655+00 f t Invitado Amar invitado-1762697919938@example.com 55555555 \N \N \N \N \N 35 \N \N \N +12961 2025-11-11 13:02:49.671162+00 2025-11-11 13:02:49.673057+00 f t Invitado Amar invitado-1762866142486@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14113 2025-11-22 00:04:59.816352+00 2025-11-22 00:04:59.816363+00 f t Invitado Amar invitado-1763769899407@example.com 55555555 \N \N \N \N \N 11 \N \N \N +14294 2025-11-24 05:06:36.173669+00 2025-11-24 05:06:36.173679+00 f t Invitado Amar invitado-1763960795123@example.com 55555555 \N \N \N \N \N 39 \N \N \N +14475 2025-11-25 14:12:54.326692+00 2025-11-25 14:12:54.326712+00 f t Invitado Amar invitado-1764079972848@example.com 55555555 \N \N \N \N \N 18 \N \N \N +9705 2025-09-30 22:05:59.502927+00 2025-09-30 22:05:59.502937+00 f t Invitado Amar invitado-1759269959215@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7625 +9881 2025-10-02 17:50:55.930602+00 2025-10-02 17:50:55.930611+00 f t Invitado Amar invitado-1759427455382@example.com 55555555 \N \N \N \N \N 55 \N \N \N +10057 2025-10-05 16:55:30.279267+00 2025-10-05 16:55:30.279277+00 f t Invitado Amar invitado-1759683329141@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13133 2025-11-13 00:17:01.851854+00 2025-11-13 00:17:01.851868+00 f t Invitado Amar invitado-1762993021664@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10237 2025-10-08 00:01:58.444852+00 2025-10-08 00:01:58.444861+00 f t Daiana Acuña daianacuna31@gmail.com +541125433452 \N Capdevila 2918 2 A \N \N -34.5704511 -58.4898814 29 \N \N \N +10419 2025-10-10 14:45:00.575955+00 2025-10-10 14:45:00.575964+00 f t Invitado Amar invitado-1760107500156@example.com 55555555 \N \N \N \N \N 41 \N \N \N +10602 2025-10-13 12:03:06.03492+00 2025-10-13 12:03:06.034931+00 f t Invitado Amar invitado-1760356984636@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10783 2025-10-15 17:02:06.827367+00 2025-10-15 17:02:06.82738+00 f t Invitado Amar invitado-1760547723684@example.com 55555555 \N \N \N \N \N 72 \N \N \N +13364 2025-11-15 07:24:33.282103+00 2025-11-15 07:24:33.282112+00 f t Invitado Amar invitado-1763191470383@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13566 2025-11-17 23:18:17.206908+00 2025-11-17 23:18:17.206921+00 f t Invitado Amar invitado-1763421496587@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10963 2025-10-17 16:26:56.052324+00 2025-10-17 16:26:56.052335+00 f t Gisela Bilo gisela@amitosai.com +541160530631 \N Baldomero Fernández Moreno 3463 Casa \N FEMALE \N -34.6437182 -58.4673445 5 \N \N \N +11143 2025-10-20 13:38:07.442237+00 2025-10-20 13:38:07.44225+00 f t Invitado Amar invitado-1760967487043@example.com 55555555 \N \N \N \N \N 65 \N \N \N +11325 2025-10-22 13:10:18.272391+00 2025-10-22 13:10:18.2724+00 f t Invitado Amar invitado-1761138617003@example.com 55555555 \N \N \N \N \N 74 \N \N \N +11504 2025-10-25 13:43:25.786046+00 2025-10-25 13:43:25.786056+00 f t Invitado Amar invitado-1761399805055@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11687 2025-10-28 03:09:59.70784+00 2025-10-28 03:09:59.707848+00 f t Invitado Amar invitado-1761620999638@example.com 55555555 \N \N \N \N \N 44 \N \N \N +11869 2025-10-29 19:19:48.107796+00 2025-10-29 19:19:48.107805+00 f t Invitado Amar invitado-1761765588076@example.com 55555555 \N \N \N \N \N 77 \N \N \N +12053 2025-10-31 14:12:04.093693+00 2025-10-31 14:12:04.093703+00 f t Invitado Amar invitado-1761919923066@example.com 55555555 \N \N \N \N \N 20 \N \N \N +12234 2025-11-02 18:12:36.701952+00 2025-11-02 18:12:36.70196+00 f t Invitado Amar invitado-1762107156533@example.com 55555555 \N \N \N \N \N 17 \N \N \N +12417 2025-11-05 10:52:29.463168+00 2025-11-05 10:52:29.463178+00 f t Invitado Amar invitado-1762339949286@example.com 55555555 \N \N \N \N \N 46 \N \N \N +12599 2025-11-07 12:50:01.828461+00 2025-11-07 12:50:01.828476+00 f t Invitado Amar invitado-1762519801464@example.com 55555555 \N \N \N \N \N 17 \N \N \N +12779 2025-11-09 14:32:54.306241+00 2025-11-09 14:32:54.30625+00 f t Invitado Amar invitado-1762698769495@example.com 55555555 \N \N \N \N \N 35 \N \N \N +12962 2025-11-11 13:03:33.888901+00 2025-11-11 13:03:33.88891+00 f t Invitado Amar invitado-1762866163681@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13754 2025-11-19 12:17:38.030491+00 2025-11-19 12:17:38.030501+00 f t Romina Valenzuela rominavalenzuelaflorencianez@gmail.com +541133588318 \N Habana y rincón 900 Casa \N \N \N \N 70 2190 \N \N +13935 2025-11-20 18:26:36.923062+00 2025-11-20 18:26:36.923072+00 f t Invitado Amar invitado-1763663193973@example.com 55555555 \N \N \N \N \N 74 \N \N \N +14114 2025-11-22 00:43:50.357715+00 2025-11-22 00:43:50.357724+00 f t Invitado Amar invitado-1763772228809@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14295 2025-11-24 05:13:32.795085+00 2025-11-24 05:13:32.795094+00 f t Invitado Amar invitado-1763961211490@example.com 55555555 \N \N \N \N \N 44 \N \N \N +14476 2025-11-25 14:24:49.521297+00 2025-11-25 14:24:49.521306+00 f t Ivana Paz Luna ivanaroxanapaz@gmail.com 5491140843734 \N Colombres 274 PB B, timbre no anda \N FEMALE \N -34.6153273 -58.418454 23 2266 \N \N +9706 2025-09-30 22:24:06.700584+00 2025-09-30 22:24:06.700632+00 f t Invitado Amar invitado-1759271047379@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-7626 +13134 2025-11-13 00:39:18.133983+00 2025-11-13 00:39:18.133996+00 f t Invitado Amar invitado-1762994357195@example.com 55555555 \N \N \N \N \N 71 \N \N \N +13365 2025-11-15 08:16:01.834569+00 2025-11-15 08:16:01.834579+00 f t Invitado Amar invitado-1763194559600@example.com 55555555 \N \N \N \N \N 74 \N \N \N +13567 2025-11-17 23:34:32.814776+00 2025-11-17 23:34:32.814786+00 f t Invitado Amar invitado-1763422471935@example.com 55555555 \N \N \N \N \N 13 \N \N \N +13755 2025-11-19 12:39:33.882881+00 2025-11-19 12:39:33.882889+00 f t Invitado Amar invitado-1763555973731@example.com 55555555 \N \N \N \N \N 70 \N \N \N +9882 2025-10-02 18:35:17.927595+00 2025-10-02 18:35:17.927604+00 f t Jose Luis Agraz pepe.agraz@gmail.com +5491153378768 \N Alfredo Palacios 1025 \N \N MALE \N -34.4517335 -58.535499 75 \N \N \N +10058 2025-10-05 17:17:34.98263+00 2025-10-05 17:17:34.982638+00 f t Invitado Amar invitado-1759684653317@example.com 55555555 \N \N \N \N \N 155 \N \N \N +10238 2025-10-08 00:05:46.888523+00 2025-10-08 00:05:46.888532+00 f t Invitado Amar invitado-1759881946478@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13936 2025-11-20 18:29:32.327748+00 2025-11-20 18:29:32.327761+00 f t Invitado Amar invitado-1763663371808@example.com 55555555 \N \N \N \N \N 42 \N \N \N +10420 2025-10-10 14:48:16.754579+00 2025-10-10 14:48:16.754587+00 f t Veronica Villar luisangelar@gmail.com 5491124039148 \N San martin 982 5B \N FEMALE \N -34.5965123 -58.3743741 37 \N \N \N +10603 2025-10-13 12:08:49.81796+00 2025-10-13 12:08:49.817969+00 f t Invitado Amar invitado-1760357329404@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10784 2025-10-15 17:03:10.607561+00 2025-10-15 17:03:10.607573+00 f t Catalina Simone catalina@amarmascotas.com 5492214352884 \N sarmiento 5380 barrio los lagos, lote 36. \N FEMALE \N \N \N 153 \N \N \N +10964 2025-10-17 16:45:47.88947+00 2025-10-17 16:45:47.889479+00 f t Invitado Amar invitado-1760719547473@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11144 2025-10-20 13:39:47.015592+00 2025-10-20 13:39:47.015602+00 f t Invitado Amar invitado-1760967586408@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11326 2025-10-22 13:47:02.587068+00 2025-10-22 13:47:02.587078+00 f t Invitado Amar invitado-1761140821223@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11505 2025-10-25 13:47:29.333247+00 2025-10-25 13:47:29.333256+00 f t Invitado Amar invitado-1761400049660@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11688 2025-10-28 03:13:53.500963+00 2025-10-28 03:13:53.500975+00 f t Invitado Amar invitado-1761621232917@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11870 2025-10-29 19:21:58.887874+00 2025-10-29 19:21:58.887883+00 f t Invitado Amar invitado-1761765719083@example.com 55555555 \N \N \N \N \N 77 \N \N \N +12054 2025-10-31 14:12:59.696928+00 2025-10-31 14:12:59.696937+00 f t Invitado Amar invitado-1761919975604@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12235 2025-11-02 18:17:46.530461+00 2025-11-02 18:17:46.530471+00 f t Invitado Amar invitado-1762107466337@example.com 55555555 \N \N \N \N \N 17 \N \N \N +12418 2025-11-05 11:24:05.674444+00 2025-11-05 11:24:05.674454+00 f t Invitado Amar invitado-1762341844802@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12600 2025-11-07 12:50:05.595928+00 2025-11-07 12:50:05.595941+00 f t Invitado Amar invitado-1762519804485@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12780 2025-11-09 14:44:50.254495+00 2025-11-09 14:44:50.254504+00 f t Invitado Amar invitado-1762699488777@example.com 55555555 \N \N \N \N \N 53 \N \N \N +12963 2025-11-11 13:09:01.73853+00 2025-11-11 13:09:01.738544+00 f t Invitado Amar invitado-1762866540508@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14115 2025-11-22 00:46:32.089657+00 2025-11-22 00:46:32.089665+00 f t Invitado Amar invitado-1763772391482@example.com 55555555 \N \N \N \N \N 29 \N \N \N +14296 2025-11-24 05:20:12.889066+00 2025-11-24 05:20:12.889075+00 f t Invitado Amar invitado-1763961612410@example.com 55555555 \N \N \N \N \N 26 \N \N \N +14477 2025-11-25 14:27:39.487902+00 2025-11-25 14:27:39.487912+00 f t Invitado Amar invitado-1764080859522@example.com 55555555 \N \N \N \N \N 79 \N \N \N +9707 2025-09-30 22:35:43.421759+00 2025-09-30 22:35:43.421771+00 f t Invitado Amar invitado-1759271742919@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-7627 +13135 2025-11-13 00:49:15.336768+00 2025-11-13 00:49:15.336777+00 f t Invitado Amar invitado-1762994954835@example.com 55555555 \N \N \N \N \N 147 \N \N \N +9883 2025-10-02 18:37:50.92753+00 2025-10-02 18:37:50.92754+00 f t Fernanda Pichioni mfpichioni@gmail.com +541128737906 \N Elcano 3511 2 \N \N -34.5770042 -58.4600471 38 \N \N \N +10059 2025-10-05 17:42:40.912369+00 2025-10-05 17:42:40.912382+00 f t Invitado Amar invitado-1759686160285@example.com 55555555 \N \N \N \N \N 12 \N \N \N +13366 2025-11-15 11:07:47.718747+00 2025-11-15 11:07:47.718758+00 f t Invitado Amar invitado-1763204866660@example.com 55555555 \N \N \N \N \N 91 \N \N \N +10239 2025-10-08 00:08:34.769583+00 2025-10-08 00:08:34.769592+00 f t Nestor Sanchez nestir201224@gmail.com +541136184270 \N Av.segurola 1199 10 piso D \N \N \N -34.6237903 -58.4948889 16 \N \N \N +10421 2025-10-10 15:03:25.896639+00 2025-10-10 15:03:25.89665+00 f t Invitado Amar invitado-1760108605985@example.com 55555555 \N \N \N \N \N 44 \N \N \N +4987 2025-07-21 13:17:01.586059+00 2025-07-21 13:17:01.586069+00 f t Diego Perez diego1973615@gmail.com 5491135024965 \N Av almafuerte 666 dpto 3 Entre Andrés Ferreira y José c paz \N MALE \N -34.642696 -58.4131279 44 1416 \N dperez +10785 2025-10-15 17:12:54.495767+00 2025-10-15 17:12:54.495777+00 f t Invitado Amar invitado-1760548372054@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10965 2025-10-17 17:13:53.901496+00 2025-10-17 17:13:53.901508+00 f t Invitado Amar invitado-1760721233859@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11145 2025-10-20 13:44:48.260036+00 2025-10-20 13:44:48.260048+00 f t Invitado Amar invitado-1760967887379@example.com 55555555 \N \N \N \N \N 44 \N \N \N +11327 2025-10-22 14:00:39.357767+00 2025-10-22 14:00:39.357778+00 f t Invitado Amar invitado-1761141638891@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11506 2025-10-25 14:01:12.779975+00 2025-10-25 14:01:12.779984+00 f t Invitado Amar invitado-1761400872034@example.com 55555555 \N \N \N \N \N 61 \N \N \N +11689 2025-10-28 03:29:13.738824+00 2025-10-28 03:29:13.738836+00 f t Invitado Amar invitado-1761622154026@example.com 55555555 \N \N \N \N \N 87 \N \N \N +11871 2025-10-29 19:23:49.9457+00 2025-10-29 19:23:49.945709+00 f t Invitado Amar invitado-1761765830144@example.com 55555555 \N \N \N \N \N 77 \N \N \N +12055 2025-10-31 14:26:49.914591+00 2025-10-31 14:26:49.9146+00 f t Invitado Amar invitado-1761920808229@example.com 55555555 \N \N \N \N \N 22 \N \N \N +13568 2025-11-17 23:42:04.091033+00 2025-11-17 23:42:04.091044+00 f t Invitado Amar invitado-1763422923940@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12236 2025-11-02 18:51:58.815451+00 2025-11-02 18:51:58.81546+00 f t Veronica Butti buttiveronica3@gmail.com 5491136886884 \N Arregui 2448 timbre 3 \N FEMALE 1983-02-09 -34.6025062 -58.4803262 17 1979 \N \N +12419 2025-11-05 11:26:26.645989+00 2025-11-05 11:26:26.645998+00 f t Invitado Amar invitado-1762341985624@example.com 55555555 \N \N \N \N \N 43 \N \N \N +13756 2025-11-19 12:46:07.937459+00 2025-11-19 12:46:07.937468+00 f t Invitado Amar invitado-1763556367237@example.com 55555555 \N \N \N \N \N 17 \N \N \N +13937 2025-11-20 18:35:55.328782+00 2025-11-20 18:35:55.328792+00 f t Invitado Amar invitado-1763663754930@example.com 55555555 \N \N \N \N \N 155 \N \N \N +12601 2025-11-07 12:52:40.493903+00 2025-11-07 12:52:40.49391+00 f t Agustina Castaño agustinaccamila2002@gmail.com +541134709741 \N Martin Fierro 416 - \N \N -34.7113554 -58.7479632 53 2058 \N \N +12781 2025-11-09 14:46:13.611327+00 2025-11-09 14:46:13.611335+00 f t Invitado Amar invitado-1762699573262@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12964 2025-11-11 13:17:50.192801+00 2025-11-11 13:17:50.192814+00 f t Invitado Amar invitado-1762867069749@example.com 55555555 \N \N \N \N \N 25 \N \N \N +14116 2025-11-22 00:49:14.150195+00 2025-11-22 00:49:14.150208+00 f t Invitado Amar invitado-1763772554115@example.com 55555555 \N \N \N \N \N 89 \N \N \N +14297 2025-11-24 05:39:26.089778+00 2025-11-24 05:39:26.089789+00 f t Invitado Amar invitado-1763962762340@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14478 2025-11-25 14:29:47.333867+00 2025-11-25 14:29:47.333876+00 f t Invitado Amar invitado-1764080988036@example.com 55555555 \N \N \N \N \N 22 \N \N \N +9708 2025-09-30 22:42:39.525476+00 2025-09-30 22:42:39.525485+00 f t Invitado Amar invitado-1759272159813@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7628 +13136 2025-11-13 00:53:57.194374+00 2025-11-13 00:53:57.194387+00 f t Invitado Amar invitado-1762995234899@example.com 55555555 \N \N \N \N \N 72 \N \N \N +8958 2025-09-19 19:54:00.260377+00 2025-09-19 19:54:00.260385+00 f t Camila Montenegro camilamontenegrom@gmail.com 91155997165 \N Juana manso 153 núcleo 6, piso 2, depto 7 \N FEMALE 1992-04-02 -34.5994885 -58.3642253 30 \N \N cmontenegro +10060 2025-10-05 17:42:50.959092+00 2025-10-05 17:42:50.959101+00 f t Martin Erneta martin.erneta@gmail.com +5491144308989 \N Virrey del pino 2468 304 \N \N -34.5715099 -58.4626098 3 \N \N \N +10240 2025-10-08 00:10:47.200321+00 2025-10-08 00:10:47.200329+00 f t Invitado Amar invitado-1759882245127@example.com 55555555 \N \N \N \N \N 66 \N \N \N +10422 2025-10-10 15:13:07.18738+00 2025-10-10 15:13:07.187389+00 f t Invitado Amar invitado-1760109186865@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10604 2025-10-13 13:20:37.436062+00 2025-10-13 13:20:37.43607+00 f t Invitado Amar invitado-1760361633638@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10786 2025-10-15 17:18:51.639642+00 2025-10-15 17:18:51.639654+00 f t Invitado Amar invitado-1760548730403@example.com 55555555 \N \N \N \N \N 38 \N \N \N +10966 2025-10-17 17:17:36.356878+00 2025-10-17 17:17:36.356887+00 t t Invitado Amar invitado-1760721456667@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11146 2025-10-20 13:51:00.099633+00 2025-10-20 13:51:00.099645+00 f t Invitado Amar invitado-1760968259650@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11328 2025-10-22 14:06:42.150566+00 2025-10-22 14:06:42.150578+00 f t Invitado Amar invitado-1761141981052@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11507 2025-10-25 14:03:28.073007+00 2025-10-25 14:03:28.073016+00 f t Invitado Amar invitado-1761401007548@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11690 2025-10-28 04:11:02.738417+00 2025-10-28 04:11:02.73843+00 f t Invitado Amar invitado-1761624662314@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11872 2025-10-29 19:28:19.441593+00 2025-10-29 19:28:19.441606+00 f t Invitado Amar invitado-1761766098029@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12056 2025-10-31 14:43:55.591543+00 2025-10-31 14:43:55.591552+00 f t Invitado Amar invitado-1761921942884@example.com 55555555 \N \N \N \N \N 153 \N \N \N +12237 2025-11-02 19:44:25.775993+00 2025-11-02 19:44:25.776002+00 f t Marian D Amico mariandam.us@gmail.com +541164933246 \N Irala 261 Casa \N \N -32.4355315 -60.8126047 32 1980 \N \N +12420 2025-11-05 11:31:53.083189+00 2025-11-05 11:31:53.083202+00 f t Invitado Amar invitado-1762342312100@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12602 2025-11-07 12:55:51.340609+00 2025-11-07 12:55:51.340619+00 f t Invitado Amar invitado-1762520151197@example.com 55555555 \N \N \N \N \N 53 \N \N \N +12782 2025-11-09 14:53:18.622983+00 2025-11-09 14:53:18.622991+00 f t Invitado Amar invitado-1762699995181@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12965 2025-11-11 13:30:06.784164+00 2025-11-11 13:30:06.784176+00 f t Invitado Amar invitado-1762867806382@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13367 2025-11-15 11:13:49.739881+00 2025-11-15 11:13:49.739891+00 f t Claudia Senas dita.sp.0807@gmail.com +541131065211 \N Boqueron 188 F \N FEMALE \N -34.642178 -58.5337705 91 2154 \N \N +13569 2025-11-17 23:42:51.512848+00 2025-11-17 23:42:51.512857+00 f t Invitado Amar invitado-1763422971623@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13757 2025-11-19 12:51:10.168597+00 2025-11-19 12:51:10.16861+00 f t Invitado Amar invitado-1763556668494@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13938 2025-11-20 18:41:17.282487+00 2025-11-20 18:41:17.282496+00 f t Invitado Amar invitado-1763664075390@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14117 2025-11-22 00:51:55.265553+00 2025-11-22 00:51:55.265566+00 f t Invitado Amar invitado-1763772714034@example.com 55555555 \N \N \N \N \N 10 \N \N \N +14298 2025-11-24 05:44:33.56775+00 2025-11-24 05:44:33.567762+00 f t Invitado Amar invitado-1763963073737@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14479 2025-11-25 14:39:29.682976+00 2025-11-25 14:39:29.682988+00 f t Invitado Amar invitado-1764081569259@example.com 55555555 \N \N \N \N \N 17 \N \N \N +9709 2025-09-30 22:46:49.635568+00 2025-09-30 22:46:49.635579+00 f t Invitado Amar invitado-1759272399032@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7629 +9884 2025-10-02 18:44:41.070123+00 2025-10-02 18:44:41.070132+00 f t Invitado Amar invitado-1759430680258@example.com 55555555 \N \N \N \N \N 24 \N \N \N +10061 2025-10-05 18:11:22.557103+00 2025-10-05 18:11:22.557113+00 f t Invitado Amar invitado-1759687882138@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10241 2025-10-08 00:27:00.76154+00 2025-10-08 00:27:00.761548+00 f t Invitado Amar invitado-1759883219786@example.com 55555555 \N \N \N \N \N 74 \N \N \N +10423 2025-10-10 15:21:24.798233+00 2025-10-10 15:21:24.798242+00 f t Invitado Amar invitado-1760109684438@example.com 55555555 \N \N \N \N \N 72 \N \N \N +10605 2025-10-13 13:23:21.447907+00 2025-10-13 13:23:21.447916+00 f t Invitado Amar invitado-1760361801041@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10787 2025-10-15 17:30:34.936356+00 2025-10-15 17:30:34.936367+00 f t Mercedes Cabrera maria.mcabrera@gmail.com +541134195652 \N julian alvarez 875 5 A \N \N -34.597552 -58.4310832 26 \N \N \N +10967 2025-10-17 17:25:44.423615+00 2025-10-17 17:25:44.423624+00 f t Invitado Amar invitado-1760721944865@example.com 55555555 \N \N \N \N \N 84 \N \N \N +11147 2025-10-20 13:52:34.884742+00 2025-10-20 13:52:34.884751+00 f t Invitado Amar invitado-1760968354701@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11329 2025-10-22 14:55:07.062779+00 2025-10-22 14:55:07.06279+00 f t Invitado Amar invitado-1761144907070@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11508 2025-10-25 14:23:14.462653+00 2025-10-25 14:23:14.462664+00 f t Invitado Amar invitado-1761402192548@example.com 55555555 \N \N \N \N \N 49 \N \N \N +13137 2025-11-13 00:54:41.278138+00 2025-11-13 00:54:41.278149+00 t t Invitado Amar invitado-1762995281072@example.com 55555555 \N \N \N \N \N 147 \N \N \N +11691 2025-10-28 04:20:44.588076+00 2025-10-28 04:20:44.588094+00 f t Ingrid Menacho Vargas ingridamv101190@gmail.com +541123556355 \N Bucarelli 2619 2 8 \N \N -34.5738196 -58.4901091 29 \N \N \N +11873 2025-10-29 19:29:44.199548+00 2025-10-29 19:29:44.199557+00 f t Invitado Amar invitado-1761766183465@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12057 2025-10-31 14:53:59.773282+00 2025-10-31 14:53:59.77329+00 f t Invitado Amar invitado-1761922547235@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12238 2025-11-02 19:51:44.999769+00 2025-11-02 19:51:44.999781+00 f t Invitado Amar invitado-1762113104716@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12421 2025-11-05 11:45:40.139985+00 2025-11-05 11:45:40.139994+00 f t Invitado Amar invitado-1762343140260@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12603 2025-11-07 13:13:38.895319+00 2025-11-07 13:13:38.895331+00 f t Invitado Amar invitado-1762521216812@example.com 55555555 \N \N \N \N \N 16 \N \N \N +13368 2025-11-15 11:17:40.712902+00 2025-11-15 11:17:40.71291+00 f t Invitado Amar invitado-1763205459479@example.com 55555555 \N \N \N \N \N 62 \N \N \N +13570 2025-11-17 23:45:09.867976+00 2025-11-17 23:45:09.867989+00 f t Invitado Amar invitado-1763423109635@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12783 2025-11-09 14:53:31.571939+00 2025-11-09 14:53:31.571949+00 f t Maria Paula Politis mpaula.politis@gmail.com +541168926972 \N Lacroze 3541 8 c \N \N -34.5809899 -58.4514599 35 2076 \N \N +12966 2025-11-11 13:36:38.54528+00 2025-11-11 13:36:38.545288+00 f t Invitado Amar invitado-1762868198169@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13758 2025-11-19 12:54:28.961899+00 2025-11-19 12:54:28.961911+00 f t Invitado Amar invitado-1763556868468@example.com 55555555 \N \N \N \N \N 73 \N \N \N +4848 2025-07-19 15:21:50.769526+00 2025-07-19 15:21:50.769533+00 f t Florencia Rivas rivasflorenciarocio@gmail.com 1130576147 \N Av Federico lacroze 3636 \N \N FEMALE 1997-04-02 -34.6021711 -58.4577547 38 1407 \N frivas +14118 2025-11-22 01:03:31.976784+00 2025-11-22 01:03:31.976794+00 f t Invitado Amar invitado-1763773410705@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14299 2025-11-24 05:47:41.077376+00 2025-11-24 05:47:41.077385+00 f t Invitado Amar invitado-1763963261382@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14480 2025-11-25 14:42:40.84676+00 2025-11-25 14:42:40.846769+00 f t Invitado Amar invitado-1764081759456@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13138 2025-11-13 00:58:31.403919+00 2025-11-13 00:58:31.403929+00 f t Invitado Amar invitado-1762995511207@example.com 55555555 \N \N \N \N \N 147 \N \N \N +9710 2025-09-30 22:51:29.951562+00 2025-09-30 22:51:29.951574+00 f t Barbara Nuñez harebari@gmail.com +541131575710 \N sarandi 642 D \N \N \N -34.9066875 -56.2022356 86 \N \N iamar-7630 +13369 2025-11-15 11:19:13.979636+00 2025-11-15 11:19:13.979645+00 f t Invitado Amar invitado-1763205553925@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13571 2025-11-17 23:53:00.256713+00 2025-11-17 23:53:00.256721+00 f t Invitado Amar invitado-1763423579783@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9885 2025-10-02 18:53:09.998412+00 2025-10-02 18:53:09.998422+00 f t Milena Gomez mileegomez@gmail.com +5491164668384 \N Roque Pérez 4768 casa \N FEMALE \N -34.5648018 -58.5022821 31 \N \N \N +10062 2025-10-05 18:16:02.010554+00 2025-10-05 18:16:02.010568+00 f t Invitado Amar invitado-1759688161673@example.com 55555555 \N \N \N \N \N 34 \N \N \N +10242 2025-10-08 00:29:55.494532+00 2025-10-08 00:29:55.494542+00 f t Invitado Amar invitado-1759883395429@example.com 55555555 \N \N \N \N \N 83 \N \N \N +10424 2025-10-10 15:48:59.352217+00 2025-10-10 15:48:59.352225+00 f t Invitado Amar invitado-1760111338985@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10606 2025-10-13 13:24:32.039875+00 2025-10-13 13:24:32.039885+00 f t Invitado Amar invitado-1760361871637@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13759 2025-11-19 12:58:11.006255+00 2025-11-19 12:58:11.006264+00 f t Invitado Amar invitado-1763557080010@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10788 2025-10-15 17:37:32.157367+00 2025-10-15 17:37:32.157376+00 f t Ainara Taborda tabordaainara@gmail.com +543434388849 \N gaudi 428 \N \N \N \N 22 \N \N \N +10968 2025-10-17 17:37:55.96327+00 2025-10-17 17:37:55.96328+00 f t Invitado Amar invitado-1760722675519@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11148 2025-10-20 13:54:30.255712+00 2025-10-20 13:54:30.255727+00 f t Invitado Amar invitado-1760968471719@example.com 55555555 \N \N \N \N \N 19 \N \N \N +11330 2025-10-22 15:12:21.364772+00 2025-10-22 15:12:21.364781+00 f t Invitado Amar invitado-1761145940635@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11509 2025-10-25 14:35:42.298886+00 2025-10-25 14:35:42.298897+00 f t Invitado Amar invitado-1761402941905@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11692 2025-10-28 04:43:42.39497+00 2025-10-28 04:43:42.394981+00 f t Invitado Amar invitado-1761626621990@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11874 2025-10-29 19:48:28.712185+00 2025-10-29 19:48:28.712194+00 f t Invitado Amar invitado-1761767308190@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12058 2025-10-31 14:55:28.596799+00 2025-10-31 14:55:28.596809+00 f t Invitado Amar invitado-1761922402029@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12239 2025-11-02 21:06:51.105196+00 2025-11-02 21:06:51.105207+00 f t Invitado Amar invitado-1762117609984@example.com 55555555 \N \N \N \N \N 79 \N \N \N +13939 2025-11-20 19:08:19.679718+00 2025-11-20 19:08:19.679727+00 f t Invitado Amar invitado-1763665699374@example.com 55555555 \N \N \N \N \N 19 \N \N \N +12422 2025-11-05 12:04:57.574246+00 2025-11-05 12:04:57.574254+00 f t Mariela Funes marielalujanfunes@gmail.com +541168369047 \N Virrey Liniers 41 2c \N FEMALE \N -34.611323 -58.4156762 23 2025 \N \N +12604 2025-11-07 13:35:31.152668+00 2025-11-07 13:35:31.152677+00 f t Invitado Amar invitado-1762522530643@example.com 55555555 \N \N \N \N \N 73 \N \N \N +12784 2025-11-09 14:55:48.102099+00 2025-11-09 14:55:48.102107+00 f t Invitado Amar invitado-1762700143986@example.com 55555555 \N \N \N \N \N 35 \N \N \N +12967 2025-11-11 13:54:06.329134+00 2025-11-11 13:54:06.329148+00 f t Invitado Amar invitado-1762869246750@example.com 55555555 \N \N \N \N \N 44 \N \N \N +14119 2025-11-22 01:16:27.21099+00 2025-11-22 01:16:27.211+00 f t Abigail Vavala Abieoy@gmail.com +541130079143 \N Remedios 5779 \N \N -34.6574442 -58.4953721 19 2230 \N \N +14300 2025-11-24 06:27:19.44056+00 2025-11-24 06:27:19.440574+00 f t Invitado Amar invitado-1763965640038@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14481 2025-11-25 14:46:52.64538+00 2025-11-25 14:46:52.64539+00 f t Invitado Amar invitado-1764082012340@example.com 55555555 \N \N \N \N \N 51 \N \N \N +9711 2025-09-30 23:24:28.088102+00 2025-09-30 23:24:28.088116+00 f t Invitado Amar invitado-1759274666983@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7631 +745 2025-04-26 21:28:19.987963+00 2025-04-26 21:28:19.987969+00 f t Antonella detomasi antonelladetomasi@hotmail.com 5491134266051 \N Av congreso 5005 7 b \N FEMALE 1997-06-10 -34.5692184 -58.4893979 29 872 \N adetomasi +10063 2025-10-05 18:28:12.464111+00 2025-10-05 18:28:12.464119+00 f t Invitado Amar invitado-1759688891496@example.com 55555555 \N \N \N \N \N 60 \N \N \N +13139 2025-11-13 01:02:33.559755+00 2025-11-13 01:02:33.559764+00 f t Invitado Amar invitado-1762995753508@example.com 55555555 \N \N \N \N \N 147 \N \N \N +13370 2025-11-15 11:26:46.378613+00 2025-11-15 11:26:46.378622+00 f t Invitado Amar invitado-1763206005701@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13572 2025-11-17 23:53:08.798144+00 2025-11-17 23:53:08.798152+00 f t Invitado Amar invitado-1763423588397@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10425 2025-10-10 15:49:56.896843+00 2025-10-10 15:49:56.896855+00 f t Invitado Amar invitado-1760111388908@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10607 2025-10-13 13:34:32.569605+00 2025-10-13 13:34:32.569617+00 f t Invitado Amar invitado-1760362471507@example.com 55555555 \N \N \N \N \N 27 \N \N \N +10789 2025-10-15 18:11:15.22364+00 2025-10-15 18:11:15.223653+00 f t Invitado Amar invitado-1760551874970@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13760 2025-11-19 12:58:25.622738+00 2025-11-19 12:58:25.622747+00 f t Invitado Amar invitado-1763557105319@example.com 55555555 \N \N \N \N \N 17 \N \N \N +12968 2025-11-11 14:28:23.122515+00 2025-11-11 14:28:23.122525+00 f t Ines Ichazo inesichazo@gmail.com +542944362841 \N Malabia 150 \N \N -34.6010107 -58.4424002 26 2102 \N \N +10969 2025-10-17 17:38:40.9252+00 2025-10-17 17:38:40.925209+00 f t Gabriela Jorge gabriela.jorg@gmail.com +541133795864 \N Bonpland 1150 C \N \N \N -34.5878304 -58.4429344 26 \N \N \N +11149 2025-10-20 13:54:58.828612+00 2025-10-20 13:54:58.828621+00 f t Invitado Amar invitado-1760968500325@example.com 55555555 \N \N \N \N \N 19 \N \N \N +11331 2025-10-22 15:42:38.26+00 2025-10-22 15:42:38.26001+00 f t Invitado Amar invitado-1761147758057@example.com 55555555 \N \N \N \N \N 78 \N \N \N +10243 2025-10-08 00:35:55.715216+00 2025-10-08 00:35:55.715225+00 f t Ambar Melendez ambarmariana19@gmail.com +541139200207 \N Emilio Mitre 537 Pb Dto 11 \N FEMALE \N -34.6285682 -58.4431817 14 \N \N \N +11510 2025-10-25 14:53:48.701034+00 2025-10-25 14:53:48.701049+00 f t Invitado Amar invitado-1761404028626@example.com 55555555 \N \N \N \N \N 11 \N \N \N +11693 2025-10-28 06:06:47.493506+00 2025-10-28 06:06:47.493518+00 f t Invitado Amar invitado-1761631607030@example.com 55555555 \N \N \N \N \N \N \N \N \N +11875 2025-10-29 20:04:13.117902+00 2025-10-29 20:04:13.117911+00 f t Invitado Amar invitado-1761768252242@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12059 2025-10-31 15:09:54.924026+00 2025-10-31 15:09:54.924036+00 f t Invitado Amar invitado-1761923394449@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12240 2025-11-02 22:37:49.881841+00 2025-11-02 22:37:49.881851+00 f t Invitado Amar invitado-1762123068593@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12423 2025-11-05 12:10:44.014399+00 2025-11-05 12:10:44.014411+00 f t Invitado Amar invitado-1762344644383@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12605 2025-11-07 13:36:25.785055+00 2025-11-07 13:36:25.785064+00 f t Invitado Amar invitado-1762522585242@example.com 55555555 \N \N \N \N \N 73 \N \N \N +13940 2025-11-20 19:11:24.203564+00 2025-11-20 19:11:24.203573+00 f t Invitado Amar invitado-1763665883841@example.com 55555555 \N \N \N \N \N 20 \N \N \N +14120 2025-11-22 01:18:36.080747+00 2025-11-22 01:18:36.080755+00 f t Invitado Amar invitado-1763774315868@example.com 55555555 \N \N \N \N \N 19 \N \N \N +12785 2025-11-09 14:56:45.807008+00 2025-11-09 14:56:45.807017+00 f t Santino Rios santinototorio@gmail.com +542317452617 \N Nogoyá 3388 8 b \N \N -34.6050311 -58.4953092 34 2077 \N \N +14301 2025-11-24 07:19:18.245081+00 2025-11-24 07:19:18.24509+00 f t Nicolás Amato nicolasamatogarcia@gmail.com +541163354831 \N Teodoro garcia 3276 2 \N \N -34.5781378 -58.4508638 38 2246 \N \N +14482 2025-11-25 14:52:03.968309+00 2025-11-25 14:52:03.96832+00 f t Florencia Serigos florserigos@icloud.com 91133173333 \N Bonpland 1379 1 b \N FEMALE \N -34.5862527 -58.4405576 1 2268 \N \N +13140 2025-11-13 02:21:02.349524+00 2025-11-13 02:21:02.349535+00 f t Invitado Amar invitado-1763000460898@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13371 2025-11-15 11:54:25.047748+00 2025-11-15 11:54:25.047757+00 f t Invitado Amar invitado-1763207664506@example.com 55555555 \N \N \N \N \N 39 \N \N \N +13573 2025-11-18 00:03:43.036975+00 2025-11-18 00:03:43.036987+00 f t Luiz Fellipe Luiz Fellipe lfgmatta@gmail.com 5491137877998 \N Bartolome mitre 3792 3b \N MALE 1999-02-21 -34.6097665 -58.4196988 23 2175 \N \N +9712 2025-09-30 23:25:22.751497+00 2025-09-30 23:25:22.751508+00 f t Ana Lía Baliño aelebe@yahoo.com 5491169116262 \N Av Elcano 3665 PB 11 \N FEMALE 1945-04-14 -34.5791621 -58.4606645 24 2082 \N aliabalino +13761 2025-11-19 12:58:58.082021+00 2025-11-19 12:58:58.082029+00 f t Invitado Amar invitado-1763557137628@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13941 2025-11-20 19:12:22.904585+00 2025-11-20 19:12:22.904596+00 f t Invitado Amar invitado-1763665942871@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10064 2025-10-05 19:27:57.946524+00 2025-10-05 19:27:57.946533+00 f t Florencia Mariana Diez flodiez@hotmail.com +541133478363 \N Carlos Tejedor 578 \N \N -34.7027025 -58.400156 70 \N \N \N +10244 2025-10-08 00:52:59.951867+00 2025-10-08 00:52:59.951875+00 f t Invitado Amar invitado-1759884778530@example.com 55555555 \N \N \N \N \N 149 \N \N \N +10426 2025-10-10 15:55:01.150143+00 2025-10-10 15:55:01.150151+00 f t Laura Dos SantosQ lauralods2@gmail.com 5511956605012 \N Varsovia 2915 ,ap 1 \N FEMALE \N -34.5832833 -58.4822569 61 \N \N \N +10608 2025-10-13 13:43:18.984037+00 2025-10-13 13:43:18.984045+00 f t Carolina Cancellieri carocancellieri@yahoo.com.ar 5491136757426 \N Tinogasta 3992 Dto. C \N FEMALE \N -34.6059592 -58.5046807 21 \N \N \N +10790 2025-10-15 18:32:24.710208+00 2025-10-15 18:32:24.71022+00 f t Invitado Amar invitado-1760553143178@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10970 2025-10-17 17:41:23.225005+00 2025-10-17 17:41:23.225017+00 f t Invitado Amar invitado-1760722882342@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11150 2025-10-20 13:54:59.983787+00 2025-10-20 13:54:59.983796+00 f t Invitado Amar invitado-1760968499118@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11332 2025-10-22 15:53:39.645017+00 2025-10-22 15:53:39.645026+00 f t Invitado Amar invitado-1761148418369@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11511 2025-10-25 14:55:07.895963+00 2025-10-25 14:55:07.895971+00 f t Invitado Amar invitado-1761404106947@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11694 2025-10-28 08:30:59.657272+00 2025-10-28 08:30:59.657285+00 f t Invitado Amar invitado-1761640258908@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11876 2025-10-29 20:16:32.053533+00 2025-10-29 20:16:32.053543+00 f t Invitado Amar invitado-1761768990940@example.com 55555555 \N \N \N \N \N 21 \N \N \N +12060 2025-10-31 15:13:47.364163+00 2025-10-31 15:13:47.364171+00 f t Invitado Amar invitado-1761923626961@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12241 2025-11-02 22:51:04.933653+00 2025-11-02 22:51:04.933667+00 f t Invitado Amar invitado-1762123864674@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12424 2025-11-05 12:21:59.999917+00 2025-11-05 12:21:59.999925+00 f t Invitado Amar invitado-1762345319134@example.com 55555555 \N \N \N \N \N 112 \N \N \N +8455 2025-09-11 17:20:41.419467+00 2025-09-11 17:20:41.419476+00 f t Ana Gabriela Santos b@b.com 554391069533 \N calle Beruti, 3795 1 B \N FEMALE \N -34.8001824 -58.2524645 1 1765 \N asantos +12606 2025-11-07 13:38:41.309241+00 2025-11-07 13:38:41.309251+00 f t Invitado Amar invitado-1762522721017@example.com 55555555 \N \N \N \N \N 73 \N \N \N +12786 2025-11-09 15:03:55.000964+00 2025-11-09 15:03:55.000975+00 f t Invitado Amar invitado-1762700634815@example.com 55555555 \N \N \N \N \N 34 \N \N \N +12969 2025-11-11 14:32:21.38572+00 2025-11-11 14:32:21.385733+00 f t Invitado Amar invitado-1762871540393@example.com 55555555 \N \N \N \N \N 12 \N \N \N +14121 2025-11-22 01:26:59.743306+00 2025-11-22 01:26:59.743319+00 t t Invitado Amar invitado-1763774923659@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14302 2025-11-24 07:23:07.668302+00 2025-11-24 07:23:07.668315+00 f t Invitado Amar invitado-1763968987499@example.com 55555555 \N \N \N \N \N 38 \N \N \N +14483 2025-11-25 15:16:25.28639+00 2025-11-25 15:16:25.286399+00 f t Invitado Amar invitado-1764083784933@example.com 55555555 \N \N \N \N \N 22 \N \N \N +9713 2025-09-30 23:34:11.961193+00 2025-09-30 23:34:11.961204+00 f t Invitado Amar invitado-1759275251412@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7632 +9886 2025-10-02 19:25:41.130776+00 2025-10-02 19:25:41.130786+00 f t Invitado Amar invitado-1759433140675@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10065 2025-10-05 19:32:01.72886+00 2025-10-05 19:32:01.728872+00 t t Invitado Amar invitado-1759692720981@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10245 2025-10-08 01:04:18.116016+00 2025-10-08 01:04:18.116029+00 f t Invitado Amar invitado-1759885456238@example.com 55555555 \N \N \N \N \N 75 \N \N \N +10427 2025-10-10 16:01:07.025931+00 2025-10-10 16:01:07.02594+00 f t Invitado Amar invitado-1760112058859@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10609 2025-10-13 13:46:34.751614+00 2025-10-13 13:46:34.751627+00 f t Invitado Amar invitado-1760363194139@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10791 2025-10-15 18:33:32.752675+00 2025-10-15 18:33:32.752685+00 f t Invitado Amar invitado-1760553212336@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10971 2025-10-17 17:52:37.388485+00 2025-10-17 17:52:37.388494+00 f t Invitado Amar invitado-1760723554149@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11151 2025-10-20 14:12:20.370377+00 2025-10-20 14:12:20.370385+00 f t Invitado Amar invitado-1760969538998@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11333 2025-10-22 15:55:27.062586+00 2025-10-22 15:55:27.062594+00 f t Invitado Amar invitado-1761148526670@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13141 2025-11-13 02:29:11.728029+00 2025-11-13 02:29:11.728038+00 f t Invitado Amar invitado-1763000951230@example.com 55555555 \N \N \N \N \N 21 \N \N \N +11512 2025-10-25 15:25:30.711488+00 2025-10-25 15:25:30.711498+00 f t Giuliana Catardo Catardog92@gmail.com +541166569005 \N Pedro Moran 2721 Piso 2 departamento 11 \N \N -34.5914857 -58.4943457 43 \N \N \N +11695 2025-10-28 08:34:40.439034+00 2025-10-28 08:34:40.439043+00 f t Invitado Amar invitado-1761640479765@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11877 2025-10-29 20:18:53.201376+00 2025-10-29 20:18:53.201385+00 f t Invitado Amar invitado-1761769131923@example.com 55555555 \N \N \N \N \N 85 \N \N \N +13372 2025-11-15 12:09:01.93845+00 2025-11-15 12:09:01.938465+00 f t Invitado Amar invitado-1763208540682@example.com 55555555 \N \N \N \N \N 86 \N \N \N +12061 2025-10-31 15:18:46.011786+00 2025-10-31 15:18:46.011793+00 f t Adriana Silvia Komisuk adrisil1803@hotmail.com 5491157132875 \N Av Corrientes 2963 piso 8 dpto i \N FEMALE \N -34.6021019 -58.4316213 23 1950 \N \N +12242 2025-11-02 23:44:38.980881+00 2025-11-02 23:44:38.98089+00 f t Invitado Amar invitado-1762127078517@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12425 2025-11-05 12:48:06.300861+00 2025-11-05 12:48:06.30087+00 f t Invitado Amar invitado-1762346885956@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12607 2025-11-07 13:45:43.793334+00 2025-11-07 13:45:43.793344+00 f t Invitado Amar invitado-1762523143422@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12787 2025-11-09 15:58:48.330194+00 2025-11-09 15:58:48.330207+00 f t Invitado Amar invitado-1762703927553@example.com 55555555 \N \N \N \N \N 60 \N \N \N +12970 2025-11-11 14:34:33.238633+00 2025-11-11 14:34:33.238642+00 f t Invitado Amar invitado-1762871669115@example.com 55555555 \N \N \N \N \N 77 \N \N \N +13574 2025-11-18 00:14:08.165546+00 2025-11-18 00:14:08.165555+00 f t Invitado Amar invitado-1763424843886@example.com 55555555 \N \N \N \N \N 1 \N \N \N +7443 2025-08-28 17:42:10.500026+00 2025-08-28 17:42:10.50004+00 f t Carolina Lagger carolagger@hotmail.com 5491159560222 \N San Martin 945 2º 16 , entre Paraguay y Marcelo T, Alvear \N FEMALE \N -34.5968574 -58.3742371 37 1695 \N clagger +13942 2025-11-20 19:19:54.342328+00 2025-11-20 19:19:54.342337+00 f t Invitado Amar invitado-1763666337643@example.com 55555555 \N \N \N \N \N 14 \N \N \N +346 2025-01-20 14:04:03.883+00 2025-01-20 14:04:03.883+00 f t Hernan Brunacci hbrunacci@gmail.com +541131107990 \N Holmberg 2587 \N 2025-01-14 -34.56818148979592 -58.477783669387755 43 489 \N hbrunacci +14303 2025-11-24 08:56:25.238591+00 2025-11-24 08:56:25.238602+00 f t Invitado Amar invitado-1763974583673@example.com 55555555 \N \N \N \N \N 38 \N \N \N +14484 2025-11-25 15:21:44.030985+00 2025-11-25 15:21:44.030997+00 f t Natalia vera nataliavera@outlook.com 91164711041 \N Av juan Bautista Alberdi 1321 9B (El timbre funciona a veces, es mejor confirmar la llegada con un msje) \N FEMALE \N -34.6247727 -58.4469086 14 2269 \N \N +9714 2025-09-30 23:50:22.556033+00 2025-09-30 23:50:22.556046+00 f t Invitado Amar invitado-1759276224035@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-7633 +9887 2025-10-02 19:29:08.524929+00 2025-10-02 19:29:08.524938+00 f t Invitado Amar invitado-1759433348111@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10066 2025-10-05 19:45:23.238673+00 2025-10-05 19:45:23.238684+00 t t Invitado Amar invitado-1759693522499@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10246 2025-10-08 01:05:33.036169+00 2025-10-08 01:05:33.036181+00 f t Invitado Amar invitado-1759885532299@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10428 2025-10-10 16:02:33.317677+00 2025-10-10 16:02:33.317685+00 f t laila merino lailajudithmerino@gmail.com 5491125923545 \N Camino de la virgen 751 torre 3 piso 3 depto C, Villa maderos \N FEMALE \N \N \N 113 \N \N \N +10610 2025-10-13 13:48:30.092398+00 2025-10-13 13:48:30.092411+00 f t Invitado Amar invitado-1760363309632@example.com 55555555 \N \N \N \N \N 69 \N \N \N +10792 2025-10-15 18:41:09.051802+00 2025-10-15 18:41:09.051815+00 f t Invitado Amar invitado-1760553670927@example.com 55555555 \N \N \N \N \N 86 \N \N \N +10972 2025-10-17 17:58:15.617607+00 2025-10-17 17:58:15.61762+00 t t Invitado Amar invitado-1760723895693@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11152 2025-10-20 14:30:19.849248+00 2025-10-20 14:30:19.849262+00 f t karen momesso karenmomesso@gmail.com 5491161836476 \N jose hernandez 2623 dto 3 \N FEMALE \N -34.56684 -58.4557177 3 \N \N \N +11334 2025-10-22 16:10:27.969183+00 2025-10-22 16:10:27.969196+00 f t Invitado Amar invitado-1761149427259@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13142 2025-11-13 02:41:20.878577+00 2025-11-13 02:41:20.878586+00 f t Invitado Amar invitado-1763001680570@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11513 2025-10-25 15:28:42.248379+00 2025-10-25 15:28:42.248388+00 f t Michelle Duhalde michelle.castilha@hotmail.com +541159396627 \N 25 de Mayo 642 4B \N \N -34.6552553 -58.5619931 50 \N \N \N +11696 2025-10-28 10:18:25.043925+00 2025-10-28 10:18:25.043934+00 f t Invitado Amar invitado-1761646703505@example.com 55555555 \N \N \N \N \N 155 \N \N \N +11878 2025-10-29 20:19:58.237134+00 2025-10-29 20:19:58.237146+00 f t Invitado Amar invitado-1761769197638@example.com 55555555 \N \N \N \N \N 85 \N \N \N +12062 2025-10-31 15:24:02.733065+00 2025-10-31 15:24:02.733081+00 f t Invitado Amar invitado-1761924244987@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12243 2025-11-02 23:47:36.742218+00 2025-11-02 23:47:36.742234+00 f t Invitado Amar invitado-1762127256023@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12426 2025-11-05 13:02:38.715548+00 2025-11-05 13:02:38.71556+00 f t Invitado Amar invitado-1762347757849@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12608 2025-11-07 13:55:55.596345+00 2025-11-07 13:55:55.596353+00 f t Invitado Amar invitado-1762523753874@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12788 2025-11-09 16:00:47.051929+00 2025-11-09 16:00:47.051939+00 f t Invitado Amar invitado-1762704047579@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12971 2025-11-11 14:35:40.708306+00 2025-11-11 14:35:40.708318+00 f t Invitado Amar invitado-1762871740857@example.com 55555555 \N \N \N \N \N 77 \N \N \N +13373 2025-11-15 12:20:47.698012+00 2025-11-15 12:20:47.698022+00 f t Invitado Amar invitado-1763209246731@example.com 55555555 \N \N \N \N \N 86 \N \N \N +13575 2025-11-18 00:16:50.596236+00 2025-11-18 00:16:50.596244+00 f t Invitado Amar invitado-1763425010639@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13762 2025-11-19 13:01:24.116464+00 2025-11-19 13:01:24.116476+00 f t Dayana Arriagada arriagadadayana760@gmail.com +542964484960 \N Mariscal Antonio José de Sucre 1612 3 B \N FEMALE \N -34.5594297 -58.4473334 3 2191 \N \N +13943 2025-11-20 19:27:49.184724+00 2025-11-20 19:27:49.184733+00 f t Invitado Amar invitado-1763666868534@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14122 2025-11-22 01:28:09.218779+00 2025-11-22 01:28:09.218794+00 f t Invitado Amar invitado-1763774993373@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14304 2025-11-24 09:02:22.930746+00 2025-11-24 09:02:22.930757+00 f t Invitado Amar invitado-1763974941119@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14485 2025-11-25 15:26:50.773194+00 2025-11-25 15:26:50.773204+00 f t Invitado Amar invitado-1764084410269@example.com 55555555 \N \N \N \N \N 4 \N \N \N +9715 2025-10-01 00:03:13.801951+00 2025-10-01 00:03:13.801963+00 f t Invitado Amar invitado-1759276993281@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7634 +9888 2025-10-02 19:30:45.519646+00 2025-10-02 19:30:45.519656+00 f t Invitado Amar invitado-1759433445281@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10067 2025-10-05 19:59:27.081679+00 2025-10-05 19:59:27.08169+00 f t Leonardo gonzalez Pereyra Leonardogonzalezpereyra4@gmail.com 5491151231935 \N arce 317 8 16 \N MALE 1975-04-08 -34.5709732 -58.4306282 1 \N \N \N +10247 2025-10-08 01:23:42.102557+00 2025-10-08 01:23:42.102566+00 f t Invitado Amar invitado-1759886619867@example.com 55555555 \N \N \N \N \N 42 \N \N \N +13143 2025-11-13 03:00:45.410762+00 2025-11-13 03:00:45.410772+00 f t Invitado Amar invitado-1763002844984@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10429 2025-10-10 16:04:54.043465+00 2025-10-10 16:04:54.043475+00 f t Jessica Sierra jessicasierra008@gmail.com +541126565508 \N Juan bautista alberdi 2143 3 6 \N \N -34.630114 -58.4581751 4 \N \N \N +10611 2025-10-13 13:51:34.23356+00 2025-10-13 13:51:34.233573+00 f t Invitado Amar invitado-1760363493892@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13374 2025-11-15 12:51:01.94761+00 2025-11-15 12:51:01.947619+00 f t Invitado Amar invitado-1763211061627@example.com 55555555 \N \N \N \N \N 64 \N \N \N +10973 2025-10-17 18:03:43.75423+00 2025-10-17 18:03:43.754239+00 f t Invitado Amar invitado-1760724223361@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11153 2025-10-20 14:47:01.792832+00 2025-10-20 14:47:01.792846+00 f t Invitado Amar invitado-1760971621268@example.com 55555555 \N \N \N \N \N 82 \N \N \N +11335 2025-10-22 16:13:00.787047+00 2025-10-22 16:13:00.787055+00 f t Invitado Amar invitado-1761149580890@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13576 2025-11-18 00:19:46.112477+00 2025-11-18 00:19:46.112487+00 f t Invitado Amar invitado-1763425184100@example.com 55555555 \N \N \N \N \N 49 \N \N \N +11514 2025-10-25 15:34:20.483397+00 2025-10-25 15:34:20.483405+00 f t Daniela Cecilia daniela.cecilia.a@gmail.com 91131977379 \N brasil 300 \N \N FEMALE \N -10.389137 -37.0302071 32 1908 \N \N +11697 2025-10-28 10:52:00.523686+00 2025-10-28 10:52:00.523697+00 f t Invitado Amar invitado-1761648719735@example.com 55555555 \N \N \N \N \N 74 \N \N \N +11879 2025-10-29 20:25:38.210605+00 2025-10-29 20:25:38.210616+00 f t Invitado Amar invitado-1761769537173@example.com 55555555 \N \N \N \N \N 21 \N \N \N +12063 2025-10-31 15:33:48.047687+00 2025-10-31 15:33:48.047696+00 f t Invitado Amar invitado-1761924828304@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12244 2025-11-03 01:34:08.588018+00 2025-11-03 01:34:08.588027+00 f t Invitado Amar invitado-1762133647602@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13763 2025-11-19 13:04:56.340092+00 2025-11-19 13:04:56.340106+00 f t Invitado Amar invitado-1763557496023@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13944 2025-11-20 19:47:04.687097+00 2025-11-20 19:47:04.687105+00 f t Invitado Amar invitado-1763668024283@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10793 2025-10-15 18:44:30.39219+00 2025-10-15 18:44:30.3922+00 f t kelly jimenez kellystaino95@gmail.com 91133754549 \N chile 635 1 C \N FEMALE \N -34.6160801 -58.3750642 15 1989 \N \N +12427 2025-11-05 13:12:55.787954+00 2025-11-05 13:12:55.787964+00 f t Invitado Amar invitado-1762348374453@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12609 2025-11-07 14:04:52.482386+00 2025-11-07 14:04:52.482397+00 f t Invitado Amar invitado-1762524288753@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12789 2025-11-09 16:02:38.751932+00 2025-11-09 16:02:38.751941+00 f t Invitado Amar invitado-1762704157317@example.com 55555555 \N \N \N \N \N 49 \N \N \N +14123 2025-11-22 01:41:59.012254+00 2025-11-22 01:41:59.012273+00 f t Invitado Amar invitado-1763775718635@example.com 55555555 \N \N \N \N \N 77 \N \N \N +14305 2025-11-24 09:27:53.841152+00 2025-11-24 09:27:53.841161+00 f t Invitado Amar invitado-1763976472851@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12972 2025-11-11 14:48:25.298841+00 2025-11-11 14:48:25.298849+00 f t Florencia Alejandra Ledezma florencialedezma97@gmail.com +541136274915 \N Esteban bonorino 1871 Pb o \N \N -34.6387584 -58.4536427 4 2103 \N \N +14486 2025-11-25 15:29:12.941212+00 2025-11-25 15:29:12.941222+00 f t Invitado Amar invitado-1764084552519@example.com 55555555 \N \N \N \N \N 56 \N \N \N +13144 2025-11-13 03:02:44.640006+00 2025-11-13 03:02:44.640015+00 f t Invitado Amar invitado-1763002964138@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13375 2025-11-15 12:54:02.188648+00 2025-11-15 12:54:02.188661+00 f t Invitado Amar invitado-1763211242151@example.com 55555555 \N \N \N \N \N 62 \N \N \N +9889 2025-10-02 20:06:41.550943+00 2025-10-02 20:06:41.550951+00 f t Florencia Vinocur florchas5@gmail.com 5491164037649 \N san Blas 2727 5 A \N FEMALE \N \N \N 34 \N \N \N +10068 2025-10-05 20:17:16.739355+00 2025-10-05 20:17:16.739363+00 f t SOL TRIANO contametucondena@gmail.com 5491161622391 \N TURIN 3181 Casa \N FEMALE 1971-06-04 -34.5867635 -58.4827825 61 \N \N \N +10248 2025-10-08 01:35:39.201459+00 2025-10-08 01:35:39.201468+00 f t Invitado Amar invitado-1759887338572@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10430 2025-10-10 16:06:09.470897+00 2025-10-10 16:06:09.470906+00 f t Invitado Amar invitado-1760112368213@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10612 2025-10-13 13:54:21.988428+00 2025-10-13 13:54:21.988437+00 f t Invitado Amar invitado-1760363661486@example.com 55555555 \N \N \N \N \N 69 \N \N \N +10794 2025-10-15 19:02:46.342096+00 2025-10-15 19:02:46.342104+00 f t Invitado Amar invitado-1760554965944@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10974 2025-10-17 18:27:06.022658+00 2025-10-17 18:27:06.022667+00 f t Invitado Amar invitado-1760725625547@example.com 55555555 \N \N \N \N \N 61 \N \N \N +11154 2025-10-20 14:47:25.831405+00 2025-10-20 14:47:25.831417+00 f t Invitado Amar invitado-1760971644283@example.com 55555555 \N \N \N \N \N 73 \N \N \N +11336 2025-10-22 16:19:38.3189+00 2025-10-22 16:19:38.318909+00 f t Invitado Amar invitado-1761149977750@example.com 55555555 \N \N \N \N \N 53 \N \N \N +9716 2025-10-01 00:04:41.172724+00 2025-10-01 00:04:41.172737+00 f t Guido Cabbani gcabbani@gmail.com +5491154607854 \N Larrea 585 unico timbre \N MALE \N -34.60238 -58.4021933 18 \N \N gcabbani +11515 2025-10-25 15:53:39.879998+00 2025-10-25 15:53:39.88001+00 f t Invitado Amar invitado-1761407617933@example.com 55555555 \N \N \N \N \N 87 \N \N \N +11698 2025-10-28 11:03:35.889718+00 2025-10-28 11:03:35.889731+00 f t Invitado Amar invitado-1761649415340@example.com 55555555 \N \N \N \N \N 34 \N \N \N +11880 2025-10-29 20:34:06.082792+00 2025-10-29 20:34:06.082803+00 f t Invitado Amar invitado-1761770045241@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12064 2025-10-31 15:41:14.561017+00 2025-10-31 15:41:14.561025+00 f t Invitado Amar invitado-1761925269538@example.com 55555555 \N \N \N \N \N 45 \N \N \N +12245 2025-11-03 03:08:13.365301+00 2025-11-03 03:08:13.36531+00 f t Invitado Amar invitado-1762139292105@example.com 55555555 \N \N \N \N \N 49 \N \N \N +13577 2025-11-18 00:20:32.442417+00 2025-11-18 00:20:32.442425+00 f t Invitado Amar invitado-1763425232016@example.com 55555555 \N \N \N \N \N 51 \N \N \N +13764 2025-11-19 13:06:44.812588+00 2025-11-19 13:06:44.812599+00 f t Invitado Amar invitado-1763557605587@example.com 55555555 \N \N \N \N \N 50 \N \N \N +12428 2025-11-05 13:18:39.806515+00 2025-11-05 13:18:39.806525+00 f t Dayra Villalpando dayra_cassandra@hotmail.com +19562235261 \N Ricardo Gutiérrez 1239 \N \N -34.4806845 -58.4983992 68 2026 \N \N +12610 2025-11-07 14:37:06.283938+00 2025-11-07 14:37:06.283947+00 f t Invitado Amar invitado-1762526225381@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12790 2025-11-09 16:08:41.308275+00 2025-11-09 16:08:41.308283+00 f t Invitado Amar invitado-1762704522018@example.com 55555555 \N \N \N \N \N 79 \N \N \N +12973 2025-11-11 14:51:29.978125+00 2025-11-11 14:51:29.978135+00 f t Invitado Amar invitado-1762872683521@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13945 2025-11-20 19:48:22.77461+00 2025-11-20 19:48:22.774619+00 f t Invitado Amar invitado-1763668100666@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14124 2025-11-22 02:16:10.271772+00 2025-11-22 02:16:10.271781+00 f t Invitado Amar invitado-1763777768985@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14306 2025-11-24 09:41:58.425488+00 2025-11-24 09:41:58.4255+00 f t Veronica Parasco veronica_parasco@hotmail.com +541160040843 \N Av. Gral Mosconi 2627 1 F \N FEMALE \N -34.5874379 -58.5040998 51 2252 \N \N +14487 2025-11-25 15:31:25.947622+00 2025-11-25 15:31:25.947635+00 f t Invitado Amar invitado-1764084685396@example.com 55555555 \N \N \N \N \N 17 \N \N \N +9717 2025-10-01 00:06:06.362013+00 2025-10-01 00:06:06.362025+00 f t Invitado Amar invitado-1759277165903@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7635 +13145 2025-11-13 03:16:30.011486+00 2025-11-13 03:16:30.011495+00 f t Invitado Amar invitado-1763003789500@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10069 2025-10-05 20:32:32.760551+00 2025-10-05 20:32:32.760562+00 f t Invitado Amar invitado-1759696351347@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10249 2025-10-08 01:45:31.825523+00 2025-10-08 01:45:31.825532+00 f t Invitado Amar invitado-1759887931948@example.com 55555555 \N \N \N \N \N 48 \N \N \N +10431 2025-10-10 16:08:24.330377+00 2025-10-10 16:08:24.330386+00 f t Invitado Amar invitado-1760112503969@example.com 55555555 \N \N \N \N \N 49 \N \N \N +13376 2025-11-15 13:09:22.661205+00 2025-11-15 13:09:22.661215+00 f t Invitado Amar invitado-1763212161835@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13578 2025-11-18 00:34:22.634752+00 2025-11-18 00:34:22.634762+00 f t Invitado Amar invitado-1763426061518@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13765 2025-11-19 13:07:59.86582+00 2025-11-19 13:07:59.865831+00 f t Invitado Amar invitado-1763557679293@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10795 2025-10-15 19:06:23.765111+00 2025-10-15 19:06:23.76512+00 f t luis chavez luiseduardochavez315@gmail.com 91163071856 \N Caxaraville 3992 1 A \N MALE \N -34.6436846 -58.5405017 91 \N \N \N +13946 2025-11-20 19:58:04.756562+00 2025-11-20 19:58:04.756573+00 f t Invitado Amar invitado-1763668683643@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10613 2025-10-13 14:10:08.796031+00 2025-10-13 14:10:08.796039+00 f t María Constanza Garcia Bendahan connie_bendahan@hotmail.com 1150607622 \N Olga Cossettini 1190 2 204 \N \N \N -34.6114881 -58.3633098 30 \N \N \N +10975 2025-10-17 18:36:45.250965+00 2025-10-17 18:36:45.250974+00 f t Invitado Amar invitado-1760726204836@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11155 2025-10-20 15:14:40.384792+00 2025-10-20 15:14:40.384801+00 f t Noelia Noelia centurionnoelia810@gmail.com 5491139412737 \N 2 de mayo 2453 \N \N FEMALE \N -34.699867 -58.3974142 70 \N \N \N +523 2025-03-02 21:27:00.663825+00 2025-03-02 21:27:00.663832+00 f t Natalia Hidalgo natalialibros@gmail.com 5491141930236 \N Thames 677 piso 1. UF 106 \N FEMALE 1974-05-10 -34.59423955102041 -58.44105395918368 26 665 \N nhidalgo +11516 2025-10-25 16:10:28.861769+00 2025-10-25 16:10:28.861777+00 f t Invitado Amar invitado-1761408628448@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11699 2025-10-28 11:13:31.066049+00 2025-10-28 11:13:31.066061+00 f t Invitado Amar invitado-1761650010439@example.com 55555555 \N \N \N \N \N 83 \N \N \N +11881 2025-10-29 20:56:26.681986+00 2025-10-29 20:56:26.681996+00 f t Invitado Amar invitado-1761771385510@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12065 2025-10-31 16:00:55.896341+00 2025-10-31 16:00:55.89635+00 f t Invitado Amar invitado-1761926455334@example.com 55555555 \N \N \N \N \N 73 \N \N \N +12246 2025-11-03 09:48:53.682671+00 2025-11-03 09:48:53.682681+00 f t Invitado Amar invitado-1762163333257@example.com 55555555 \N \N \N \N \N 113 \N \N \N +7201 2025-08-24 19:23:07.473806+00 2025-08-24 19:23:07.473814+00 f t Jesica Mariana Orlando jesicamarianaorlando@gmail.com 5491123491568 \N Neuquen 810 810 primer piso, dpto 5. \N FEMALE 1988-04-11 -34.6157604 -58.4506131 14 1988 \N jorlando +12429 2025-11-05 13:20:50.947471+00 2025-11-05 13:20:50.947483+00 f t Invitado Amar invitado-1762348851299@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12611 2025-11-07 14:46:49.980314+00 2025-11-07 14:46:49.980323+00 f t Invitado Amar invitado-1762526808673@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12791 2025-11-09 16:11:42.918935+00 2025-11-09 16:11:42.918943+00 f t Invitado Amar invitado-1762704702007@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12974 2025-11-11 14:54:48.679313+00 2025-11-11 14:54:48.679322+00 f t Invitado Amar invitado-1762872888630@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14125 2025-11-22 02:17:20.662448+00 2025-11-22 02:17:20.662457+00 f t Paola Cano paolicano1995@gmail.com +541130570048 \N Las Heras 2044 6 B \N \N -34.5898393 -58.3944257 9 2231 \N \N +14307 2025-11-24 09:48:07.265489+00 2025-11-24 09:48:07.265502+00 f t Invitado Amar invitado-1763977686852@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14488 2025-11-25 15:33:53.640739+00 2025-11-25 15:33:53.640749+00 f t Invitado Amar invitado-1764084833243@example.com 55555555 \N \N \N \N \N 23 \N \N \N +9718 2025-10-01 00:07:23.915562+00 2025-10-01 00:07:23.915571+00 f t Invitado Amar invitado-1759277243527@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7636 +9890 2025-10-02 20:28:24.277583+00 2025-10-02 20:28:24.277595+00 f t Invitado Amar invitado-1759436908545@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10070 2025-10-05 21:18:03.417111+00 2025-10-05 21:18:03.417119+00 f t Invitado Amar invitado-1759699082619@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10250 2025-10-08 01:46:30.254477+00 2025-10-08 01:46:30.25449+00 f t Invitado Amar invitado-1759887988813@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10432 2025-10-10 16:10:58.005446+00 2025-10-10 16:10:58.005457+00 f t Invitado Amar invitado-1760112657394@example.com 55555555 \N \N \N \N \N 5 \N \N \N +10614 2025-10-13 14:22:52.80603+00 2025-10-13 14:22:52.806039+00 f t Invitado Amar invitado-1760365372397@example.com 55555555 \N \N \N \N \N 62 \N \N \N +10796 2025-10-15 19:12:42.10366+00 2025-10-15 19:12:42.103669+00 f t Invitado Amar invitado-1760555560929@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10976 2025-10-17 18:40:29.90765+00 2025-10-17 18:40:29.90766+00 f t Viviana Alfonsin ludmilasoledadmoreno@gmail.com 5491133877293 \N Juan domingo Perón 3045 piso 1 depto 23 \N FEMALE \N -34.6078329 -58.4097417 18 \N \N \N +11156 2025-10-20 15:20:15.970981+00 2025-10-20 15:20:15.970995+00 f t Invitado Amar invitado-1760973615343@example.com 55555555 \N \N \N \N \N 87 \N \N \N +5479 2025-07-29 12:51:58.577972+00 2025-07-29 12:51:58.577979+00 f t Carmen Garma garmacarmen@gmail.com 91130080842 \N Cerviño 4473 Casa \N FEMALE 1952-11-28 -34.5759314 -58.4208067 1 \N \N cgarma +13146 2025-11-13 04:20:27.488399+00 2025-11-13 04:20:27.488407+00 f t Invitado Amar invitado-1763007627015@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13377 2025-11-15 13:28:27.655635+00 2025-11-15 13:28:27.655643+00 f t Invitado Amar invitado-1763213307233@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11517 2025-10-25 17:34:45.160378+00 2025-10-25 17:34:45.16039+00 f t fernando cruz fercruzhigel@hotmail.com 91160502330 \N vera 256 piso 3° depto 304 \N MALE \N -34.6011556 -58.4357972 26 1909 \N \N +11700 2025-10-28 11:13:56.807488+00 2025-10-28 11:13:56.807497+00 f t Invitado Amar invitado-1761650035399@example.com 55555555 \N \N \N \N \N 66 \N \N \N +11882 2025-10-29 21:18:35.340071+00 2025-10-29 21:18:35.34008+00 f t Invitado Amar invitado-1761772714722@example.com 55555555 \N \N \N \N \N 16 \N \N \N +12066 2025-10-31 16:43:28.946776+00 2025-10-31 16:43:28.946784+00 f t Invitado Amar invitado-1761929008309@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12247 2025-11-03 09:56:19.209215+00 2025-11-03 09:56:19.209223+00 f t Invitado Amar invitado-1762163778519@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12430 2025-11-05 13:22:55.370679+00 2025-11-05 13:22:55.370691+00 f t Invitado Amar invitado-1762348974841@example.com 55555555 \N \N \N \N \N 68 \N \N \N +12612 2025-11-07 14:48:12.964502+00 2025-11-07 14:48:12.964512+00 f t Invitado Amar invitado-1762526892577@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12792 2025-11-09 16:15:13.179308+00 2025-11-09 16:15:13.179319+00 f t Invitado Amar invitado-1762704912380@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12975 2025-11-11 14:57:25.711858+00 2025-11-11 14:57:25.711867+00 f t Invitado Amar invitado-1762873044698@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13579 2025-11-18 00:35:47.372855+00 2025-11-18 00:35:47.372864+00 f t Invitado Amar invitado-1763426145023@example.com 55555555 \N \N \N \N \N 49 \N \N \N +13766 2025-11-19 13:09:56.187703+00 2025-11-19 13:09:56.187715+00 f t Daniela Blutrach danielablutrach@gmail.com +541155859369 \N Cerviño 3717 5B \N FEMALE \N -34.5792885 -58.411494 1 2193 \N \N +13947 2025-11-20 20:00:08.576972+00 2025-11-20 20:00:08.576987+00 f t Invitado Amar invitado-1763668807874@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14126 2025-11-22 02:20:12.157937+00 2025-11-22 02:20:12.157947+00 f t Invitado Amar invitado-1763778010162@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14308 2025-11-24 09:53:08.304553+00 2025-11-24 09:53:08.304564+00 f t Verónica Solana veroosolana@gmail.com +541167350665 \N Colombres 132 8 D (No anda timbre, llamar celular) \N \N -34.613336 -58.4189015 23 2247 \N \N +14489 2025-11-25 15:47:38.714162+00 2025-11-25 15:47:38.714171+00 f t Invitado Amar invitado-1764085657544@example.com 55555555 \N \N \N \N \N 64 \N \N \N +9719 2025-10-01 00:09:02.645451+00 2025-10-01 00:09:02.645466+00 f t Invitado Amar invitado-1759277341435@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7637 +9891 2025-10-02 20:31:26.734388+00 2025-10-02 20:31:26.734398+00 f t Invitado Amar invitado-1759437088175@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13147 2025-11-13 04:27:15.704211+00 2025-11-13 04:27:15.704219+00 f t Invitado Amar invitado-1763008035474@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10071 2025-10-05 21:39:32.176596+00 2025-10-05 21:39:32.176604+00 f t Juan manuel Flores gaia_air@hotmail.com +541166011531 \N Campion 786 \N \N -34.7077127 -58.5140883 87 \N \N \N +10251 2025-10-08 01:50:49.338688+00 2025-10-08 01:50:49.338697+00 f t Invitado Amar invitado-1759888248913@example.com 55555555 \N \N \N \N \N 68 \N \N \N +10433 2025-10-10 16:13:57.846969+00 2025-10-10 16:13:57.846977+00 f t Invitado Amar invitado-1760112836782@example.com 55555555 \N \N \N \N \N 8 \N \N \N +10615 2025-10-13 14:29:21.006522+00 2025-10-13 14:29:21.006532+00 f t Mabel Solis mabelsolispiris@gmail.com 5491140578378 \N Pasaje Luciano Dario 1315 entre Pocitos y Urquiza \N FEMALE \N -34.4583623 -58.5823465 74 \N \N \N +10797 2025-10-15 19:14:06.636725+00 2025-10-15 19:14:06.636734+00 f t Invitado Amar invitado-1760555645473@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10977 2025-10-17 19:11:58.857738+00 2025-10-17 19:11:58.85775+00 f t Invitado Amar invitado-1760728318330@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11157 2025-10-20 15:32:44.762114+00 2025-10-20 15:32:44.762123+00 f t Invitado Amar invitado-1760974364318@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11337 2025-10-22 17:05:07.483177+00 2025-10-22 17:05:07.48319+00 f t Invitado Amar invitado-1761152706591@example.com 55555555 \N \N \N \N \N 73 \N \N \N +11518 2025-10-25 18:15:47.089457+00 2025-10-25 18:15:47.089465+00 f t Invitado Amar invitado-1761416146485@example.com 55555555 \N \N \N \N \N 85 \N \N \N +11701 2025-10-28 11:16:30.895497+00 2025-10-28 11:16:30.895507+00 f t Invitado Amar invitado-1761650189466@example.com 55555555 \N \N \N \N \N 74 \N \N \N +11883 2025-10-29 21:30:32.196949+00 2025-10-29 21:30:32.196957+00 f t Invitado Amar invitado-1761773430464@example.com 55555555 \N \N \N \N \N 39 \N \N \N +13378 2025-11-15 13:34:04.156815+00 2025-11-15 13:34:04.156828+00 f t Invitado Amar invitado-1763213642867@example.com 55555555 \N \N \N \N \N \N \N \N \N +12067 2025-10-31 16:57:14.54375+00 2025-10-31 16:57:14.543759+00 f t Salomé Jury salomejury@gmail.com 5491150358545 \N Ayacucho 242 5 C \N FEMALE \N -34.60658 -58.395134 18 1953 \N \N +12248 2025-11-03 10:09:21.187068+00 2025-11-03 10:09:21.187078+00 f t Manuela Palazuelos manuelapalazuelos0@gmail.com +541169696786 \N Jose maria paz, muñiz. San miguel 925 Sin timbre llamar \N \N -34.5510028 -58.7096798 113 1981 \N \N +12431 2025-11-05 13:26:16.054486+00 2025-11-05 13:26:16.054496+00 f t Invitado Amar invitado-1762349175598@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12613 2025-11-07 15:29:13.087476+00 2025-11-07 15:29:13.087486+00 f t Invitado Amar invitado-1762529353316@example.com 55555555 \N \N \N \N \N 16 \N \N \N +12793 2025-11-09 16:17:12.182989+00 2025-11-09 16:17:12.182999+00 f t Invitado Amar invitado-1762705031627@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13580 2025-11-18 01:05:50.967247+00 2025-11-18 01:05:50.967259+00 f t Romina Mylyezuk fito@enzona.com +5491151630009 \N Guayaquil 787 6B \N \N \N -34.6216707 -58.4394705 14 2176 \N \N +12976 2025-11-11 15:00:34.136764+00 2025-11-11 15:00:34.136774+00 f t Monica Cristina Zudaire mocrizu@hotmail.com +541153833671 \N RIOBAMBA 463 1 piso depto 3 \N FEMALE \N -34.603629 -58.3938538 18 2104 \N \N +13767 2025-11-19 13:13:07.576723+00 2025-11-19 13:13:07.576734+00 f t javier pereira ljpereira86@gmail.com 91169686075 \N paraguay 1434 \N \N MALE \N \N \N 37 2192 \N \N +13948 2025-11-20 20:15:15.158037+00 2025-11-20 20:15:15.158047+00 f t Invitado Amar invitado-1763669714439@example.com 55555555 \N \N \N \N \N 50 \N \N \N +14127 2025-11-22 02:22:20.980982+00 2025-11-22 02:22:20.980993+00 f t Antonio Giammatteo antoniogiammatteo@hotmail.com +541168113815 \N Río de Janeiro 853 Timbre 2 \N MALE \N -34.6052737 -58.4311802 23 2232 \N \N +14309 2025-11-24 09:57:59.040216+00 2025-11-24 09:57:59.04023+00 f t Invitado Amar invitado-1763978278693@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14490 2025-11-25 15:54:08.279111+00 2025-11-25 15:54:08.27912+00 f t Invitado Amar invitado-1764086047813@example.com 55555555 \N \N \N \N \N 85 \N \N \N +9720 2025-10-01 00:15:59.568735+00 2025-10-01 00:15:59.568744+00 f t Invitado Amar invitado-1759277759160@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-7638 +9892 2025-10-02 20:33:31.405391+00 2025-10-02 20:33:31.405399+00 f t Invitado Amar invitado-1759437212870@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10072 2025-10-05 21:45:30.494588+00 2025-10-05 21:45:30.494601+00 f t Invitado Amar invitado-1759700729780@example.com 55555555 \N \N \N \N \N 87 \N \N \N +10252 2025-10-08 02:09:55.769663+00 2025-10-08 02:09:55.769672+00 f t Invitado Amar invitado-1759889395456@example.com 55555555 \N \N \N \N \N 48 \N \N \N +10434 2025-10-10 16:40:21.913682+00 2025-10-10 16:40:21.913692+00 f t Invitado Amar invitado-1760114421392@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10616 2025-10-13 14:40:45.707045+00 2025-10-13 14:40:45.707054+00 f t Ivana Reales reales.ivana@gmail.com 5491128478318 \N Elcano 3792 piso 1 depto 12 \N FEMALE \N -34.5805676 -58.4603856 35 \N \N \N +10798 2025-10-15 19:27:08.097133+00 2025-10-15 19:27:08.097206+00 f t Invitado Amar invitado-1760556427801@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10978 2025-10-17 19:21:03.632228+00 2025-10-17 19:21:03.632237+00 f t Invitado Amar invitado-1760728861375@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11158 2025-10-20 15:33:28.80637+00 2025-10-20 15:33:28.806383+00 f t Invitado Amar invitado-1760974407891@example.com 55555555 \N \N \N \N \N 8 \N \N \N +11338 2025-10-22 17:16:41.665619+00 2025-10-22 17:16:41.665628+00 f t Invitado Amar invitado-1761153401236@example.com 55555555 \N \N \N \N \N 59 \N \N \N +13148 2025-11-13 07:35:57.780353+00 2025-11-13 07:35:57.780361+00 f t Invitado Amar invitado-1763019357364@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11519 2025-10-25 18:18:19.609041+00 2025-10-25 18:18:19.60905+00 f t Mirta Heick mlheick@hotmail.com +541154987596 \N Liniers 109 \N \N -34.6642744 -58.5370388 90 \N \N \N +11702 2025-10-28 11:38:35.033336+00 2025-10-28 11:38:35.033345+00 f t Invitado Amar invitado-1761651514329@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13379 2025-11-15 13:39:03.758224+00 2025-11-15 13:39:03.758239+00 f t Invitado Amar invitado-1763213943364@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11884 2025-10-29 21:35:07.242182+00 2025-10-29 21:35:07.242194+00 f t Guillermina Olijavetsky guilleolijavetsky@gmail.com +541128800713 \N Avenida Maipú 3054 1 B \N \N -34.5078633 -58.4926047 39 \N \N \N +13581 2025-11-18 01:08:39.792051+00 2025-11-18 01:08:39.79206+00 f t Invitado Amar invitado-1763428119066@example.com 55555555 \N \N \N \N \N 90 \N \N \N +13768 2025-11-19 13:13:40.380365+00 2025-11-19 13:13:40.380376+00 f t Invitado Amar invitado-1763558020210@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12068 2025-10-31 17:02:16.993728+00 2025-10-31 17:02:16.993737+00 f t Nancy Pezzi n_pezzi@hotmail.com +541168003046 \N Mendeville 155 \N \N -34.4742823 -58.5103017 68 1954 \N \N +12249 2025-11-03 10:13:39.25446+00 2025-11-03 10:13:39.254477+00 f t Invitado Amar invitado-1762164818606@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13949 2025-11-20 20:18:18.87131+00 2025-11-20 20:18:18.871319+00 f t Invitado Amar invitado-1763669897395@example.com 55555555 \N \N \N \N \N 71 \N \N \N +14128 2025-11-22 02:30:49.876504+00 2025-11-22 02:30:49.876513+00 f t Invitado Amar invitado-1763778648557@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14310 2025-11-24 10:01:09.810095+00 2025-11-24 10:01:09.810212+00 f t Invitado Amar invitado-1763978469359@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12432 2025-11-05 14:25:25.031296+00 2025-11-05 14:25:25.031306+00 f t flavia Barraud flaviabarraud@gmail.com 91122431921 \N Costa Rica 6087 dto 901 \N FEMALE 1967-04-01 -34.5786621 -58.4396667 1 2032 \N \N +12614 2025-11-07 15:55:33.059997+00 2025-11-07 15:55:33.06001+00 f t Invitado Amar invitado-1762530639338@example.com 55555555 \N \N \N \N \N 64 \N \N \N +12794 2025-11-09 17:02:36.29782+00 2025-11-09 17:02:36.29783+00 f t Invitado Amar invitado-1762707755871@example.com 55555555 \N \N \N \N \N 10 \N \N \N +14491 2025-11-25 16:00:37.404302+00 2025-11-25 16:00:37.404312+00 f t Invitado Amar invitado-1764086436987@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12977 2025-11-11 15:01:26.056856+00 2025-11-11 15:01:26.056866+00 f t Carolina Biglieri cebiglieri@gmail.com +541134261390 \N Diaz Colodrero 3037 D \N FEMALE \N -34.5688165 -58.4893701 29 2105 \N \N +9721 2025-10-01 00:27:09.105064+00 2025-10-01 00:27:09.105074+00 f t Invitado Amar invitado-1759278429020@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-7639 +9893 2025-10-02 20:36:31.844396+00 2025-10-02 20:36:31.844408+00 f t Sasha Arce arcesasha221@gmail.com 491158731316 \N Juan domingo peron 1143 piso 1 - 24 \N FEMALE \N \N \N 49 \N \N \N +10073 2025-10-05 22:00:41.630869+00 2025-10-05 22:00:41.630883+00 f t Invitado Amar invitado-1759701641282@example.com 55555555 \N \N \N \N \N 155 \N \N \N +10253 2025-10-08 03:15:31.492536+00 2025-10-08 03:15:31.492546+00 f t Invitado Amar invitado-1759893330897@example.com 55555555 \N \N \N \N \N 149 \N \N \N +10435 2025-10-10 16:44:31.948321+00 2025-10-10 16:44:31.948331+00 f t ana Velasquez rdevita74@gmail.com 5491158644249 \N Mendoza 2025 1 A. Pte \N FEMALE \N -34.5589774 -58.4540919 3 \N \N \N +10617 2025-10-13 14:41:06.438862+00 2025-10-13 14:41:06.438871+00 f t Invitado Amar invitado-1760366465196@example.com 55555555 \N \N \N \N \N 91 \N \N \N +10799 2025-10-15 19:28:19.849484+00 2025-10-15 19:28:19.849501+00 f t Invitado Amar invitado-1760556499292@example.com 55555555 \N \N \N \N \N 59 \N \N \N +13149 2025-11-13 08:42:44.143648+00 2025-11-13 08:42:44.143658+00 f t Invitado Amar invitado-1763023363679@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10979 2025-10-17 19:26:30.84891+00 2025-10-17 19:26:30.848919+00 f t Lautaro Saldaño lautarosaldano414@gmail.com +541140768812 \N Emilio mitre 429 5 \N \N -34.6272278 -58.4433133 14 \N \N \N +11159 2025-10-20 15:43:39.712875+00 2025-10-20 15:43:39.712883+00 f t Invitado Amar invitado-1760975018979@example.com 55555555 \N \N \N \N \N 8 \N \N \N +11339 2025-10-22 17:34:52.932129+00 2025-10-22 17:34:52.932142+00 f t Invitado Amar invitado-1761154491612@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11520 2025-10-25 18:19:45.440554+00 2025-10-25 18:19:45.440563+00 f t Invitado Amar invitado-1761416384638@example.com 55555555 \N \N \N \N \N 43 \N \N \N +11703 2025-10-28 12:09:17.205611+00 2025-10-28 12:09:17.205619+00 f t Invitado Amar invitado-1761654530807@example.com 55555555 \N \N \N \N \N 40 \N \N \N +11885 2025-10-29 21:38:33.841724+00 2025-10-29 21:38:33.841736+00 f t Invitado Amar invitado-1761773913607@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12069 2025-10-31 17:03:50.634085+00 2025-10-31 17:03:50.634093+00 f t Invitado Amar invitado-1761930230265@example.com 55555555 \N \N \N \N \N 154 \N \N \N +12250 2025-11-03 12:45:44.441152+00 2025-11-03 12:45:44.441161+00 f t Invitado Amar invitado-1762173943189@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13380 2025-11-15 13:41:12.625896+00 2025-11-15 13:41:12.625907+00 f t Invitado Amar invitado-1763214072169@example.com 55555555 \N \N \N \N \N 69 \N \N \N +13582 2025-11-18 01:12:59.744853+00 2025-11-18 01:12:59.744862+00 f t Invitado Amar invitado-1763428379335@example.com 55555555 \N \N \N \N \N 17 \N \N \N +13769 2025-11-19 13:18:17.235445+00 2025-11-19 13:18:17.235454+00 f t Invitado Amar invitado-1763558297734@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12433 2025-11-05 14:30:41.544307+00 2025-11-05 14:30:41.544319+00 f t Cintia Kiernan cintiakiernanmorriello@gmail.com 5491166753340 \N Emilio Mitre 435 piso 19 dpto E, portero no antda, avisa abajo \N FEMALE \N -34.6272937 -58.4433107 14 2030 \N \N +12615 2025-11-07 15:58:18.096441+00 2025-11-07 15:58:18.09645+00 f t Invitado Amar invitado-1762531096908@example.com 55555555 \N \N \N \N \N 12 \N \N \N +12795 2025-11-09 17:54:21.450665+00 2025-11-09 17:54:21.450673+00 f t Invitado Amar invitado-1762710863743@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12978 2025-11-11 15:11:45.776073+00 2025-11-11 15:11:45.776082+00 f t Invitado Amar invitado-1762873903359@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13950 2025-11-20 20:34:08.540177+00 2025-11-20 20:34:08.540188+00 f t Invitado Amar invitado-1763670848050@example.com 55555555 \N \N \N \N \N 15 \N \N \N +14129 2025-11-22 03:43:51.383172+00 2025-11-22 03:43:51.383181+00 f t Invitado Amar invitado-1763783030941@example.com 55555555 \N \N \N \N \N 38 \N \N \N +14311 2025-11-24 10:18:55.953305+00 2025-11-24 10:18:55.953315+00 f t Invitado Amar invitado-1763979535475@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14492 2025-11-25 16:12:30.03907+00 2025-11-25 16:12:30.039084+00 f t Invitado Amar invitado-1764087148564@example.com 55555555 \N \N \N \N \N 22 \N \N \N +9722 2025-10-01 00:31:13.879941+00 2025-10-01 00:31:13.879951+00 f t Invitado Amar invitado-1759278673449@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7640 +9894 2025-10-02 21:10:56.909758+00 2025-10-02 21:10:56.90977+00 f t Invitado Amar invitado-1759439456097@example.com 55555555 \N \N \N \N \N 89 \N \N \N +10074 2025-10-05 22:32:51.642821+00 2025-10-05 22:32:51.64283+00 f t Invitado Amar invitado-1759703571750@example.com 55555555 \N \N \N \N \N 17 \N \N \N +10254 2025-10-08 03:50:39.366772+00 2025-10-08 03:50:39.366782+00 f t Invitado Amar invitado-1759895438410@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10436 2025-10-10 16:52:17.904097+00 2025-10-10 16:52:17.904106+00 f t Leandro arias Ariasleandro3@gmail.com 5491166884264 \N Perú 420 Depto 4H \N MALE \N -34.613013 -58.3745712 49 \N \N \N +10618 2025-10-13 14:43:38.664516+00 2025-10-13 14:43:38.664526+00 f t Invitado Amar invitado-1760366618557@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10800 2025-10-15 20:02:42.280496+00 2025-10-15 20:02:42.280509+00 f t Invitado Amar invitado-1760558560266@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10980 2025-10-17 19:32:40.827118+00 2025-10-17 19:32:40.827152+00 f t Invitado Amar invitado-1760729560357@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11160 2025-10-20 15:56:15.994432+00 2025-10-20 15:56:15.994443+00 f t Invitado Amar invitado-1760975775783@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11340 2025-10-22 18:09:14.211689+00 2025-10-22 18:09:14.211699+00 f t Invitado Amar invitado-1761156553779@example.com 55555555 \N \N \N \N \N 146 \N \N \N +11521 2025-10-25 18:23:27.711768+00 2025-10-25 18:23:27.711776+00 f t Invitado Amar invitado-1761416608519@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11704 2025-10-28 12:12:01.974006+00 2025-10-28 12:12:01.97402+00 f t Invitado Amar invitado-1761653521633@example.com 55555555 \N \N \N \N \N 72 \N \N \N +11886 2025-10-29 21:39:58.545978+00 2025-10-29 21:39:58.545986+00 f t Invitado Amar invitado-1761773997202@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12070 2025-10-31 17:04:39.616947+00 2025-10-31 17:04:39.616957+00 f t Invitado Amar invitado-1761930279219@example.com 55555555 \N \N \N \N \N 68 \N \N \N +12251 2025-11-03 13:00:40.571408+00 2025-11-03 13:00:40.571421+00 f t Invitado Amar invitado-1762174838073@example.com 55555555 \N \N \N \N \N \N \N \N \N +12434 2025-11-05 14:36:28.03265+00 2025-11-05 14:36:28.032662+00 f t Invitado Amar invitado-1762353387652@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12616 2025-11-07 16:24:42.991654+00 2025-11-07 16:24:42.991666+00 f t Invitado Amar invitado-1762532682691@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12796 2025-11-09 17:59:13.635652+00 2025-11-09 17:59:13.63566+00 f t Invitado Amar invitado-1762711155664@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12979 2025-11-11 15:12:39.6403+00 2025-11-11 15:12:39.64031+00 f t Invitado Amar invitado-1762873959163@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13150 2025-11-13 08:54:00.231399+00 2025-11-13 08:54:00.231407+00 f t Invitado Amar invitado-1763024039735@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13381 2025-11-15 14:21:15.194019+00 2025-11-15 14:21:15.194031+00 f t Invitado Amar invitado-1763216474366@example.com 55555555 \N \N \N \N \N 19 \N \N \N +13583 2025-11-18 01:17:42.934069+00 2025-11-18 01:17:42.934077+00 f t Invitado Amar invitado-1763428662309@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13770 2025-11-19 13:30:58.856157+00 2025-11-19 13:30:58.856168+00 t t Invitado Amar invitado-1763559058353@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13951 2025-11-20 20:37:12.202735+00 2025-11-20 20:37:12.202747+00 f t Invitado Amar invitado-1763671031819@example.com 55555555 \N \N \N \N \N 20 \N \N \N +14130 2025-11-22 03:56:16.270783+00 2025-11-22 03:56:16.270793+00 f t Invitado Amar invitado-1763783775584@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14312 2025-11-24 10:20:17.699765+00 2025-11-24 10:20:17.699773+00 f t Invitado Amar invitado-1763979617214@example.com 55555555 \N \N \N \N \N 162 \N \N \N +14493 2025-11-25 16:21:09.049725+00 2025-11-25 16:21:09.049739+00 f t alberto gamero fox.gam@gmail.com 91155152255 \N Charcas 2642 piso 9 B \N MALE \N -34.5950786 -58.4046042 9 2270 \N \N +9723 2025-10-01 00:37:57.275175+00 2025-10-01 00:37:57.27519+00 f t Invitado Amar invitado-1759279076114@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7641 +9895 2025-10-02 22:01:41.671886+00 2025-10-02 22:01:41.671895+00 f t Invitado Amar invitado-1759442505727@example.com 55555555 \N \N \N \N \N 49 \N \N \N +10075 2025-10-05 22:32:53.826498+00 2025-10-05 22:32:53.826509+00 f t Invitado Amar invitado-1759703571522@example.com 55555555 \N \N \N \N \N 88 \N \N \N +10255 2025-10-08 03:59:52.043974+00 2025-10-08 03:59:52.043982+00 f t Invitado Amar invitado-1759895991946@example.com 55555555 \N \N \N \N \N 41 \N \N \N +10437 2025-10-10 17:25:44.523572+00 2025-10-10 17:25:44.523584+00 f t Invitado Amar invitado-1760117144899@example.com 55555555 \N \N \N \N \N 147 \N \N \N +10619 2025-10-13 14:45:59.780007+00 2025-10-13 14:45:59.780016+00 f t Invitado Amar invitado-1760366757991@example.com 55555555 \N \N \N \N \N 151 \N \N \N +10801 2025-10-15 20:04:42.595583+00 2025-10-15 20:04:42.595605+00 f t Invitado Amar invitado-1760558680391@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10981 2025-10-17 19:49:49.965725+00 2025-10-17 19:49:49.965734+00 f t Invitado Amar invitado-1760730589542@example.com 55555555 \N \N \N \N \N 11 \N \N \N +11161 2025-10-20 16:23:08.349478+00 2025-10-20 16:23:08.349487+00 f t Invitado Amar invitado-1760977387786@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11341 2025-10-22 18:26:46.138008+00 2025-10-22 18:26:46.138017+00 f t Invitado Amar invitado-1761157605403@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11522 2025-10-25 18:50:41.865376+00 2025-10-25 18:50:41.865384+00 f t Invitado Amar invitado-1761418242973@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11705 2025-10-28 12:38:52.016438+00 2025-10-28 12:38:52.016449+00 f t Invitado Amar invitado-1761655131237@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11887 2025-10-29 22:00:26.808988+00 2025-10-29 22:00:26.809+00 f t Invitado Amar invitado-1761775224702@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12071 2025-10-31 17:05:21.396145+00 2025-10-31 17:05:21.396157+00 f t Invitado Amar invitado-1761930321233@example.com 55555555 \N \N \N \N \N 68 \N \N \N +13151 2025-11-13 08:59:43.946545+00 2025-11-13 08:59:43.946554+00 f t Invitado Amar invitado-1763024382600@example.com 55555555 \N \N \N \N \N 17 \N \N \N +12252 2025-11-03 13:52:37.714875+00 2025-11-03 13:52:37.714883+00 f t Silvina Ascheri silascher75@gmail.com 5491157988203 \N Formosa 471 1 E \N FEMALE \N -34.6211514 -58.4347191 14 1983 \N \N +12435 2025-11-05 14:38:29.710495+00 2025-11-05 14:38:29.710506+00 f t Invitado Amar invitado-1762353509583@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12617 2025-11-07 16:25:34.914462+00 2025-11-07 16:25:34.914471+00 f t Invitado Amar invitado-1762532735234@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12797 2025-11-09 18:02:49.356377+00 2025-11-09 18:02:49.356385+00 f t Invitado Amar invitado-1762711370918@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12980 2025-11-11 15:57:52.201751+00 2025-11-11 15:57:52.20176+00 f t Invitado Amar invitado-1762876671688@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13382 2025-11-15 14:21:25.378148+00 2025-11-15 14:21:25.37816+00 f t Invitado Amar invitado-1763216484012@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13584 2025-11-18 01:18:10.528848+00 2025-11-18 01:18:10.528857+00 f t Invitado Amar invitado-1763428689430@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13771 2025-11-19 13:32:18.323877+00 2025-11-19 13:32:18.323889+00 f t Romina Giaconi rominagiaconi@gmail.com +541165378105 \N Croce 768 Casa \N \N -34.7469375 -58.4072217 72 2194 \N \N +13952 2025-11-20 20:41:49.016358+00 2025-11-20 20:41:49.016367+00 f t Invitado Amar invitado-1763671308595@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14131 2025-11-22 03:59:02.596736+00 2025-11-22 03:59:02.596748+00 f t Invitado Amar invitado-1763783942612@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14313 2025-11-24 10:47:51.444763+00 2025-11-24 10:47:51.444773+00 f t Invitado Amar invitado-1763981270797@example.com 55555555 \N \N \N \N \N 162 \N \N \N +14494 2025-11-25 16:23:18.283884+00 2025-11-25 16:23:18.283894+00 f t Invitado Amar invitado-1764087797697@example.com 55555555 \N \N \N \N \N 13 \N \N \N +9724 2025-10-01 00:49:20.05004+00 2025-10-01 00:49:20.050049+00 f t Invitado Amar invitado-1759279759680@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-7642 +13152 2025-11-13 09:59:41.670943+00 2025-11-13 09:59:41.670951+00 f t Invitado Amar invitado-1763027980734@example.com 55555555 \N \N \N \N \N 4 \N \N \N +9896 2025-10-02 22:07:04.274639+00 2025-10-02 22:07:04.274649+00 f t Maria Alejandra Martinez yosoiale@gmail.com +541155930865 \N Av Crisologo Larralde 1826 Planta Alta \N \N \N -34.5435898 -58.4575585 25 \N \N \N +10076 2025-10-06 00:09:37.45301+00 2025-10-06 00:09:37.453019+00 f t Invitado Amar invitado-1759709376823@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10256 2025-10-08 04:03:28.500431+00 2025-10-08 04:03:28.500439+00 f t Invitado Amar invitado-1759896208631@example.com 55555555 \N \N \N \N \N 41 \N \N \N +10438 2025-10-10 17:26:51.160196+00 2025-10-10 17:26:51.160208+00 f t Invitado Amar invitado-1760117210452@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10620 2025-10-13 14:47:27.056692+00 2025-10-13 14:47:27.0567+00 f t Invitado Amar invitado-1760366846560@example.com 55555555 \N \N \N \N \N 31 \N \N \N +10802 2025-10-15 20:28:51.143809+00 2025-10-15 20:28:51.143818+00 f t Invitado Amar invitado-1760560130306@example.com 55555555 \N \N \N \N \N 73 \N \N \N +10982 2025-10-17 20:06:34.853302+00 2025-10-17 20:06:34.853312+00 f t Invitado Amar invitado-1760731594558@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11162 2025-10-20 16:42:38.163725+00 2025-10-20 16:42:38.163734+00 f t Invitado Amar invitado-1760978557718@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11342 2025-10-22 18:35:48.031056+00 2025-10-22 18:35:48.031065+00 t t Invitado Amar invitado-1761158157866@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11523 2025-10-25 18:57:58.431052+00 2025-10-25 18:57:58.431062+00 f t Invitado Amar invitado-1761418677928@example.com 55555555 \N \N \N \N \N 39 \N \N \N +11706 2025-10-28 12:39:40.48734+00 2025-10-28 12:39:40.487348+00 f t Invitado Amar invitado-1761655179740@example.com 55555555 \N \N \N \N \N 158 \N \N \N +11888 2025-10-29 22:05:37.589126+00 2025-10-29 22:05:37.589135+00 f t Invitado Amar invitado-1761775536185@example.com 55555555 \N \N \N \N \N 22 \N \N \N +12072 2025-10-31 17:06:03.077471+00 2025-10-31 17:06:03.077483+00 f t Invitado Amar invitado-1761930362696@example.com 55555555 \N \N \N \N \N 68 \N \N \N +12253 2025-11-03 14:03:40.809774+00 2025-11-03 14:03:40.809782+00 f t Invitado Amar invitado-1762178620250@example.com 55555555 \N \N \N \N \N 82 \N \N \N +12436 2025-11-05 14:41:39.65414+00 2025-11-05 14:41:39.654149+00 f t Invitado Amar invitado-1762353699179@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12618 2025-11-07 16:52:52.166792+00 2025-11-07 16:52:52.166806+00 f t Invitado Amar invitado-1762534370264@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12798 2025-11-09 18:06:36.455373+00 2025-11-09 18:06:36.455383+00 f t Invitado Amar invitado-1762711594523@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12981 2025-11-11 16:40:49.261599+00 2025-11-11 16:40:49.261609+00 f t Invitado Amar invitado-1762879247918@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13383 2025-11-15 14:22:20.036364+00 2025-11-15 14:22:20.036373+00 f t Invitado Amar invitado-1763216539848@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13585 2025-11-18 01:23:02.504889+00 2025-11-18 01:23:02.504898+00 f t Invitado Amar invitado-1763428981658@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13772 2025-11-19 13:37:16.378544+00 2025-11-19 13:37:16.378555+00 f t Invitado Amar invitado-1763559436100@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13953 2025-11-20 20:47:15.536409+00 2025-11-20 20:47:15.536418+00 f t Invitado Amar invitado-1763671637358@example.com 55555555 \N \N \N \N \N 34 \N \N \N +14132 2025-11-22 04:02:12.109351+00 2025-11-22 04:02:12.109365+00 f t Invitado Amar invitado-1763784131856@example.com 55555555 \N \N \N \N \N 20 \N \N \N +14314 2025-11-24 10:57:59.85484+00 2025-11-24 10:57:59.854849+00 f t Invitado Amar invitado-1763981879464@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14495 2025-11-25 16:29:07.272275+00 2025-11-25 16:29:07.272285+00 f t Invitado Amar invitado-1764088145319@example.com 55555555 \N \N \N \N \N 25 \N \N \N +9725 2025-10-01 00:59:16.554038+00 2025-10-01 00:59:16.554053+00 f t Invitado Amar invitado-1759280355535@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7643 +9897 2025-10-02 22:39:10.882898+00 2025-10-02 22:39:10.882907+00 f t Invitado Amar invitado-1759444750391@example.com 55555555 \N \N \N \N \N 39 \N \N \N +10077 2025-10-06 00:10:17.72379+00 2025-10-06 00:10:17.723799+00 t t Invitado Amar invitado-1759709417338@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10257 2025-10-08 04:09:15.224582+00 2025-10-08 04:09:15.224592+00 f t Invitado Amar invitado-1759896554786@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10439 2025-10-10 18:16:30.773833+00 2025-10-10 18:16:30.773842+00 f t Invitado Amar invitado-1760120189912@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10621 2025-10-13 14:48:58.07621+00 2025-10-13 14:48:58.076223+00 f t Invitado Amar invitado-1760366937325@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10803 2025-10-15 20:32:58.077543+00 2025-10-15 20:32:58.077551+00 f t Invitado Amar invitado-1760560377702@example.com 55555555 \N \N \N \N \N 15 \N \N \N +10983 2025-10-17 21:03:19.79974+00 2025-10-17 21:03:19.79975+00 f t Invitado Amar invitado-1760734999006@example.com 55555555 \N \N \N \N \N 59 \N \N \N +11163 2025-10-20 16:48:17.211658+00 2025-10-20 16:48:17.211668+00 f t Invitado Amar invitado-1760978894501@example.com 55555555 \N \N \N \N \N 38 \N \N \N +11343 2025-10-22 18:39:45.03207+00 2025-10-22 18:39:45.03208+00 t t Invitado Amar invitado-1761158395128@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11524 2025-10-25 19:13:48.876782+00 2025-10-25 19:13:48.876792+00 f t Invitado Amar invitado-1761419626855@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11707 2025-10-28 12:41:31.191399+00 2025-10-28 12:41:31.191409+00 f t Invitado Amar invitado-1761655291626@example.com 55555555 \N \N \N \N \N 51 \N \N \N +11889 2025-10-29 22:14:49.219848+00 2025-10-29 22:14:49.219861+00 f t Invitado Amar invitado-1761776088089@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13153 2025-11-13 10:58:46.311014+00 2025-11-13 10:58:46.311025+00 f t Invitado Amar invitado-1763031525807@example.com 55555555 \N \N \N \N \N 77 \N \N \N +13384 2025-11-15 14:44:27.277254+00 2025-11-15 14:44:27.277265+00 f t Invitado Amar invitado-1763217866822@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12073 2025-10-31 17:06:40.085433+00 2025-10-31 17:06:40.085441+00 f t Jorge Sarchese js@coninpro.com.ar +541141712618 \N M T DE mendeville 155 \N \N \N \N 68 1955 \N \N +12254 2025-11-03 14:06:33.469477+00 2025-11-03 14:06:33.469486+00 f t Invitado Amar invitado-1762178793137@example.com 55555555 \N \N \N \N \N 82 \N \N \N +12437 2025-11-05 14:42:04.687046+00 2025-11-05 14:42:04.687058+00 f t Invitado Amar invitado-1762353724257@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12619 2025-11-07 16:57:49.812139+00 2025-11-07 16:57:49.812152+00 f t Invitado Amar invitado-1762534669302@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12799 2025-11-09 18:21:05.323761+00 2025-11-09 18:21:05.323771+00 f t Invitado Amar invitado-1762712464452@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12982 2025-11-11 17:13:49.820062+00 2025-11-11 17:13:49.82007+00 f t Invitado Amar invitado-1762881228758@example.com 55555555 \N \N \N \N \N 21 \N \N \N +13586 2025-11-18 01:45:15.520965+00 2025-11-18 01:45:15.520973+00 f t Invitado Amar invitado-1763430315392@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13773 2025-11-19 13:41:25.146329+00 2025-11-19 13:41:25.146342+00 f t Invitado Amar invitado-1763559684642@example.com 55555555 \N \N \N \N \N 72 \N \N \N +13954 2025-11-20 20:47:56.582864+00 2025-11-20 20:47:56.582873+00 f t Invitado Amar invitado-1763671676100@example.com 55555555 \N \N \N \N \N 32 \N \N \N +14133 2025-11-22 04:07:39.959263+00 2025-11-22 04:07:39.959276+00 f t Invitado Amar invitado-1763784460011@example.com 55555555 \N \N \N \N \N 20 \N \N \N +14315 2025-11-24 11:02:15.49477+00 2025-11-24 11:02:15.494778+00 f t Invitado Amar invitado-1763982135315@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14496 2025-11-25 16:29:34.040937+00 2025-11-25 16:29:34.040952+00 f t Invitado Amar invitado-1764088172479@example.com 55555555 \N \N \N \N \N 19 \N \N \N +9726 2025-10-01 01:23:16.6693+00 2025-10-01 01:23:16.669314+00 f t Invitado Amar invitado-1759281796048@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-7644 +9898 2025-10-02 22:44:18.281118+00 2025-10-02 22:44:18.281127+00 f t Invitado Amar invitado-1759445058911@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10258 2025-10-08 08:46:02.193948+00 2025-10-08 08:46:02.19396+00 f t Invitado Amar invitado-1759913161354@example.com 55555555 \N \N \N \N \N 84 \N \N \N +10440 2025-10-10 18:37:48.658687+00 2025-10-10 18:37:48.658698+00 f t Invitado Amar invitado-1760121466913@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10622 2025-10-13 14:49:10.9795+00 2025-10-13 14:49:10.979511+00 f t Invitado Amar invitado-1760366950480@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13154 2025-11-13 11:01:10.1836+00 2025-11-13 11:01:10.183609+00 f t Invitado Amar invitado-1763031669905@example.com 55555555 \N \N \N \N \N 57 \N \N \N +10804 2025-10-15 20:36:25.645868+00 2025-10-15 20:36:25.645877+00 f t Invitado Amar invitado-1760560585028@example.com 55555555 \N \N \N \N \N 15 \N \N \N +8918 2025-09-19 10:47:24.932698+00 2025-09-19 10:47:24.932711+00 f t Mariana Coga mariana.coga@gmail.com +541164956137 \N Bonifacio 1366 Pb 3 \N FEMALE \N -34.628593 -58.445972 14 \N \N mcoga +10984 2025-10-17 21:04:53.194747+00 2025-10-17 21:04:53.194756+00 f t Invitado Amar invitado-1760735092228@example.com 55555555 \N \N \N \N \N 5 \N \N \N +11164 2025-10-20 16:49:18.639507+00 2025-10-20 16:49:18.639518+00 f t Invitado Amar invitado-1760978958187@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11344 2025-10-22 18:52:10.093803+00 2025-10-22 18:52:10.093812+00 f t Invitado Amar invitado-1761159140191@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11525 2025-10-25 20:13:42.947379+00 2025-10-25 20:13:42.947388+00 f t Invitado Amar invitado-1761423220475@example.com 55555555 \N \N \N \N \N 11 \N \N \N +11708 2025-10-28 12:47:59.652439+00 2025-10-28 12:47:59.652451+00 f t Invitado Amar invitado-1761655679275@example.com 55555555 \N \N \N \N \N 65 \N \N \N +11890 2025-10-29 22:34:27.905204+00 2025-10-29 22:34:27.905213+00 f t Invitado Amar invitado-1761777267048@example.com 55555555 \N \N \N \N \N 79 \N \N \N +12074 2025-10-31 17:07:10.432769+00 2025-10-31 17:07:10.43278+00 f t Invitado Amar invitado-1761930430167@example.com 55555555 \N \N \N \N \N 68 \N \N \N +13385 2025-11-15 14:46:06.322939+00 2025-11-15 14:46:06.322948+00 f t Invitado Amar invitado-1763217964328@example.com 55555555 \N \N \N \N \N 17 \N \N \N +12255 2025-11-03 14:14:50.035035+00 2025-11-03 14:14:50.035043+00 f t Diego Ernesto Gomez diego.gomez.1967@gmail.com 5491135993649 \N Goyena 1678 Casa piso 1, al lado de Express reja blanca \N MALE \N -34.6285667 -58.4520227 14 1985 \N \N +13587 2025-11-18 02:09:48.836816+00 2025-11-18 02:09:48.83683+00 f t Invitado Amar invitado-1763431788016@example.com 55555555 \N \N \N \N \N 65 \N \N \N +13774 2025-11-19 13:47:49.560526+00 2025-11-19 13:47:49.560534+00 f t Invitado Amar invitado-1763560069713@example.com 55555555 \N \N \N \N \N 5 \N \N \N +13955 2025-11-20 20:55:15.927482+00 2025-11-20 20:55:15.92749+00 f t Invitado Amar invitado-1763672116211@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12438 2025-11-05 15:03:54.495286+00 2025-11-05 15:03:54.495299+00 f t Claudia Graciea Lujan Anfossi anfossiclaudia@hotmail.com 91157967180 \N 14 de julio 1333 Piso13 depto B \N FEMALE \N -34.57767 -58.4621433 24 2033 \N \N +12620 2025-11-07 16:59:55.982752+00 2025-11-07 16:59:55.982762+00 f t Invitado Amar invitado-1762534795336@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12800 2025-11-09 19:08:08.917605+00 2025-11-09 19:08:08.917613+00 f t Invitado Amar invitado-1762715287808@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12983 2025-11-11 17:14:49.885954+00 2025-11-11 17:14:49.885962+00 f t Invitado Amar invitado-1762881289163@example.com 55555555 \N \N \N \N \N 21 \N \N \N +14134 2025-11-22 05:33:36.20855+00 2025-11-22 05:33:36.208565+00 f t Invitado Amar invitado-1763789616097@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14316 2025-11-24 11:20:13.938247+00 2025-11-24 11:20:13.938257+00 f t Invitado Amar invitado-1763983212655@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14497 2025-11-25 16:31:41.766432+00 2025-11-25 16:31:41.766447+00 f t mariela garcia marielavgarcia82@gmail.com 91136032846 \N Chivilcoy 5067 \N \N FEMALE 1982-07-10 -34.5917981 -58.5188621 21 2271 \N \N +13155 2025-11-13 11:11:48.410644+00 2025-11-13 11:11:48.410656+00 f t Invitado Amar invitado-1763032307307@example.com 55555555 \N \N \N \N \N 61 \N \N \N +13386 2025-11-15 14:51:26.550637+00 2025-11-15 14:51:26.550646+00 f t Invitado Amar invitado-1763218283904@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13588 2025-11-18 02:16:23.64001+00 2025-11-18 02:16:23.640021+00 f t Invitado Amar invitado-1763432183156@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13775 2025-11-19 13:48:52.774317+00 2025-11-19 13:48:52.774326+00 t t Invitado Amar invitado-1763560132259@example.com 55555555 \N \N \N \N \N 72 \N \N \N +13956 2025-11-20 20:58:11.442204+00 2025-11-20 20:58:11.442213+00 f t Invitado Amar invitado-1763672291229@example.com 55555555 \N \N \N \N \N 61 \N \N \N +14135 2025-11-22 05:59:39.294495+00 2025-11-22 05:59:39.294505+00 f t Invitado Amar invitado-1763791177965@example.com 55555555 \N \N \N \N \N 28 \N \N \N +14317 2025-11-24 11:35:55.213977+00 2025-11-24 11:35:55.213988+00 f t Invitado Amar invitado-1763984154429@example.com 55555555 \N \N \N \N \N 50 \N \N \N +9899 2025-10-02 22:48:28.878384+00 2025-10-02 22:48:28.878394+00 f t Florencia Sepulveda florenciasepulveda.26@gmail.com +5491125349897 \N Hilarión de la Quintana 2059 Casa \N FEMALE \N -34.5190866 -58.4897876 39 \N \N \N +10078 2025-10-06 00:30:39.631632+00 2025-10-06 00:30:39.63164+00 f t Invitado Amar invitado-1759710639322@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9727 2025-10-01 01:26:52.03152+00 2025-10-01 01:26:52.031529+00 f t Alejo Rodriguez rodriguezmariana.e@outlook.com +541133694017 \N Colpayo 609 3c \N MALE \N -34.6132749 -58.4427758 14 \N \N iamar-7645 +14498 2025-11-25 16:33:52.572759+00 2025-11-25 16:33:52.57277+00 f t Invitado Amar invitado-1764088433832@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10441 2025-10-10 18:45:37.098148+00 2025-10-10 18:45:37.098157+00 f t Invitado Amar invitado-1760121936410@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10623 2025-10-13 14:49:29.722904+00 2025-10-13 14:49:29.722916+00 f t Invitado Amar invitado-1760366969583@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10805 2025-10-15 20:50:59.118668+00 2025-10-15 20:50:59.118677+00 f t Invitado Amar invitado-1760561458294@example.com 55555555 \N \N \N \N \N 46 \N \N \N +10985 2025-10-17 21:09:54.517235+00 2025-10-17 21:09:54.517248+00 f t Invitado Amar invitado-1760735393918@example.com 55555555 \N \N \N \N \N 57 \N \N \N +11165 2025-10-20 16:55:00.821145+00 2025-10-20 16:55:00.821157+00 f t Invitado Amar invitado-1760979300466@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11345 2025-10-22 18:52:13.109108+00 2025-10-22 18:52:13.109117+00 f t Invitado Amar invitado-1761159132222@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11526 2025-10-25 21:19:15.123285+00 2025-10-25 21:19:15.123295+00 f t Invitado Amar invitado-1761427154381@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11709 2025-10-28 12:52:41.59096+00 2025-10-28 12:52:41.590973+00 f t Invitado Amar invitado-1761655960918@example.com 55555555 \N \N \N \N \N 73 \N \N \N +10259 2025-10-08 09:24:34.375284+00 2025-10-08 09:24:34.375294+00 f t Daniel Garzilli dgarzilli@gmail.com +5491132963333 \N Falucho 424 A \N MALE \N -34.6548799 -58.4153561 40 \N \N \N +11891 2025-10-29 22:43:34.978132+00 2025-10-29 22:43:34.978141+00 f t Invitado Amar invitado-1761777814337@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12075 2025-10-31 17:16:26.168093+00 2025-10-31 17:16:26.168107+00 f t Invitado Amar invitado-1761930984406@example.com 55555555 \N \N \N \N \N 68 \N \N \N +12256 2025-11-03 14:45:30.446701+00 2025-11-03 14:45:30.446709+00 f t Invitado Amar invitado-1762181130053@example.com 55555555 \N \N \N \N \N 48 \N \N \N +12439 2025-11-05 15:13:14.275798+00 2025-11-05 15:13:14.275808+00 f t Invitado Amar invitado-1762355592957@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12621 2025-11-07 17:17:16.347922+00 2025-11-07 17:17:16.34793+00 f t Leticia Blanchard blanchard.leticia@gmail.com 5491159663884 \N jujuy 1155 piso 8 depto c, no funciona el timbre. \N FEMALE \N -34.6238418 -58.4027603 12 2062 \N \N +12801 2025-11-09 19:14:52.915304+00 2025-11-09 19:14:52.915313+00 f t Invitado Amar invitado-1762715692377@example.com 55555555 \N \N \N \N \N 49 \N \N \N +12984 2025-11-11 17:19:03.763466+00 2025-11-11 17:19:03.763479+00 f t Invitado Amar invitado-1762881542739@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9728 2025-10-01 01:57:48.412948+00 2025-10-01 01:57:48.412957+00 f t Invitado Amar invitado-1759283866702@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7646 +13156 2025-11-13 11:17:30.538406+00 2025-11-13 11:17:30.538415+00 f t Invitado Amar invitado-1763032649481@example.com 55555555 \N \N \N \N \N 25 \N \N \N +9900 2025-10-02 23:07:44.2821+00 2025-10-02 23:07:44.282109+00 f t María Chrem maarusk@gmail.com +5428042909890 \N Yatay 760 7A \N \N -34.6031373 -58.4287735 23 \N \N \N +10079 2025-10-06 00:40:11.075746+00 2025-10-06 00:40:11.075755+00 f t Invitado Amar invitado-1759711210014@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10260 2025-10-08 11:38:03.793425+00 2025-10-08 11:38:03.793434+00 f t Invitado Amar invitado-1759923483536@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10442 2025-10-10 18:47:44.545305+00 2025-10-10 18:47:44.545313+00 f t Invitado Amar invitado-1760122064141@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13387 2025-11-15 14:52:00.932341+00 2025-11-15 14:52:00.932353+00 f t Invitado Amar invitado-1763218319406@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10624 2025-10-13 14:50:51.821582+00 2025-10-13 14:50:51.821591+00 f t Natalia Cejas nataliacejas1984@gmail.com +5491159779304 \N Av.Avellaneda 394 2B \N \N -34.6196671 -58.4521082 14 \N \N \N +10806 2025-10-15 21:20:38.004109+00 2025-10-15 21:20:38.00412+00 f t Invitado Amar invitado-1760563237468@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10986 2025-10-17 21:36:48.619928+00 2025-10-17 21:36:48.619937+00 f t Invitado Amar invitado-1760737008525@example.com 55555555 \N \N \N \N \N 73 \N \N \N +11166 2025-10-20 17:42:56.064429+00 2025-10-20 17:42:56.064439+00 f t Invitado Amar invitado-1760982175771@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11346 2025-10-22 19:03:52.730003+00 2025-10-22 19:03:52.730012+00 f t Invitado Amar invitado-1761159831680@example.com 55555555 \N \N \N \N \N 58 \N \N \N +11527 2025-10-25 21:20:52.427954+00 2025-10-25 21:20:52.427963+00 f t Invitado Amar invitado-1761427251905@example.com 55555555 \N \N \N \N \N 27 \N \N \N +11710 2025-10-28 12:53:58.726625+00 2025-10-28 12:53:58.726633+00 f t Invitado Amar invitado-1761656037512@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11892 2025-10-29 22:44:04.00166+00 2025-10-29 22:44:04.001669+00 f t Invitado Amar invitado-1761777842866@example.com 55555555 \N \N \N \N \N 78 \N \N \N +12076 2025-10-31 17:21:38.78414+00 2025-10-31 17:21:38.784148+00 f t Invitado Amar invitado-1761931297407@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12257 2025-11-03 14:50:47.707612+00 2025-11-03 14:50:47.707624+00 f t Invitado Amar invitado-1762181445544@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12440 2025-11-05 15:17:19.405416+00 2025-11-05 15:17:19.405425+00 f t Invitado Amar invitado-1762355838354@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12622 2025-11-07 17:42:43.753733+00 2025-11-07 17:42:43.753745+00 f t Invitado Amar invitado-1762537363142@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13589 2025-11-18 02:58:13.560701+00 2025-11-18 02:58:13.56071+00 f t Invitado Amar invitado-1763434691701@example.com 55555555 \N \N \N \N \N 12 \N \N \N +13776 2025-11-19 13:54:09.644207+00 2025-11-19 13:54:09.644216+00 f t Invitado Amar invitado-1763560449125@example.com 55555555 \N \N \N \N \N 72 \N \N \N +12802 2025-11-09 19:28:33.207725+00 2025-11-09 19:28:33.207733+00 f t Solange Giselle Pozzi solbeatlera27@gmail.com 5491168213732 \N Dr. Teodoro Aubain 1813 pb3 \N FEMALE 1969-08-16 -34.5561606 -58.4403361 3 2078 \N \N +12985 2025-11-11 17:24:34.226065+00 2025-11-11 17:24:34.226075+00 f t Invitado Amar invitado-1762881873605@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13957 2025-11-20 21:24:09.167238+00 2025-11-20 21:24:09.167247+00 f t Invitado Amar invitado-1763673848711@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14136 2025-11-22 06:26:25.284576+00 2025-11-22 06:26:25.284589+00 f t Invitado Amar invitado-1763792784814@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14318 2025-11-24 11:38:33.92527+00 2025-11-24 11:38:33.925279+00 f t Invitado Amar invitado-1763984312332@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14499 2025-11-25 16:35:07.095957+00 2025-11-25 16:35:07.095976+00 f t Judit Barrionuevo judit61barrionuevo@gmail.com +541141879502 \N Guardia Nacional 1087 1 dpto 5 \N \N -34.6475148 -58.4937513 19 2272 \N \N +9729 2025-10-01 02:17:35.254942+00 2025-10-01 02:17:35.254951+00 f t Invitado Amar invitado-1759285054665@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-7647 +9901 2025-10-02 23:23:43.728032+00 2025-10-02 23:23:43.728041+00 f t Invitado Amar invitado-1759447422890@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10080 2025-10-06 00:55:58.157564+00 2025-10-06 00:55:58.157573+00 f t Invitado Amar invitado-1759712157130@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10261 2025-10-08 11:41:32.25331+00 2025-10-08 11:41:32.25332+00 f t Invitado Amar invitado-1759923691679@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10443 2025-10-10 19:10:40.093424+00 2025-10-10 19:10:40.093433+00 f t Invitado Amar invitado-1760123439721@example.com 55555555 \N \N \N \N \N 50 \N \N \N +10625 2025-10-13 14:51:28.159681+00 2025-10-13 14:51:28.159691+00 f t Invitado Amar invitado-1760367087571@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10807 2025-10-15 21:20:46.519115+00 2025-10-15 21:20:46.519123+00 f t Invitado Amar invitado-1760563245555@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10987 2025-10-17 21:57:28.395308+00 2025-10-17 21:57:28.395317+00 f t Invitado Amar invitado-1760738248454@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11167 2025-10-20 17:54:08.568346+00 2025-10-20 17:54:08.568355+00 f t Invitado Amar invitado-1760982848404@example.com 55555555 \N \N \N \N \N 59 \N \N \N +11347 2025-10-22 19:05:17.295906+00 2025-10-22 19:05:17.295919+00 f t Invitado Amar invitado-1761159915780@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11528 2025-10-25 21:23:58.938432+00 2025-10-25 21:23:58.93844+00 f t Invitado Amar invitado-1761427437533@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11711 2025-10-28 13:22:41.469371+00 2025-10-28 13:22:41.46938+00 f t Invitado Amar invitado-1761657759839@example.com 55555555 \N \N \N \N \N 59 \N \N \N +11893 2025-10-29 22:57:24.634249+00 2025-10-29 22:57:24.634258+00 f t Invitado Amar invitado-1761778643956@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12077 2025-10-31 17:24:28.928054+00 2025-10-31 17:24:28.928062+00 f t Invitado Amar invitado-1761931468324@example.com 55555555 \N \N \N \N \N 68 \N \N \N +12258 2025-11-03 14:57:49.063851+00 2025-11-03 14:57:49.063865+00 f t Invitado Amar invitado-1762181867434@example.com 55555555 \N \N \N \N \N 24 \N \N \N +13157 2025-11-13 11:44:50.274761+00 2025-11-13 11:44:50.274772+00 f t Invitado Amar invitado-1763034288896@example.com 55555555 \N \N \N \N \N 21 \N \N \N +13388 2025-11-15 14:56:38.672505+00 2025-11-15 14:56:38.672516+00 f t Invitado Amar invitado-1763218597635@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12441 2025-11-05 15:50:07.160635+00 2025-11-05 15:50:07.160648+00 f t augusto ramos augustoalfredoramos@gmail.com 91155665366 \N Libertador 3576 2A \N MALE 1997-11-27 -34.5733994 -58.4190033 1 2031 \N \N +12623 2025-11-07 17:52:07.158318+00 2025-11-07 17:52:07.158331+00 f t Invitado Amar invitado-1762537925817@example.com 55555555 \N \N \N \N \N 31 \N \N \N +13590 2025-11-18 03:18:34.113532+00 2025-11-18 03:18:34.113542+00 f t Invitado Amar invitado-1763435913757@example.com 55555555 \N \N \N \N \N 49 \N \N \N +12803 2025-11-09 19:42:08.426453+00 2025-11-09 19:42:08.426463+00 f t Hugo Santiago Palamara vigencia07@gmail.com 5491130743154 \N Av Donato Alvarez 2560 e/Paz Soldan y Yerua Casa \N MALE 1959-03-30 -34.5949475 -58.4686455 34 2079 \N \N +12986 2025-11-11 18:22:27.505077+00 2025-11-11 18:22:27.505086+00 f t Invitado Amar invitado-1762885346709@example.com 55555555 \N \N \N \N \N 73 \N \N \N +13777 2025-11-19 13:56:03.337412+00 2025-11-19 13:56:03.33742+00 f t Invitado Amar invitado-1763560562590@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13958 2025-11-20 21:26:09.152531+00 2025-11-20 21:26:09.152544+00 f t Priscila vivas prilu15103@gmail.com 5491136288693 \N Conesa 473 edificio pb A , timbre ok \N FEMALE \N -34.5757137 -58.4454685 38 2212 \N \N +14137 2025-11-22 08:37:56.10576+00 2025-11-22 08:37:56.105769+00 f t Invitado Amar invitado-1763800675663@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14319 2025-11-24 11:47:31.850783+00 2025-11-24 11:47:31.850792+00 f t Invitado Amar invitado-1763984851234@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14500 2025-11-25 16:37:23.299559+00 2025-11-25 16:37:23.299568+00 f t Invitado Amar invitado-1764088635141@example.com 55555555 \N \N \N \N \N 23 \N \N \N +9730 2025-10-01 02:34:59.392032+00 2025-10-01 02:34:59.392041+00 f t Invitado Amar invitado-1759286099027@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7648 +9902 2025-10-02 23:43:12.913789+00 2025-10-02 23:43:12.913798+00 f t Invitado Amar invitado-1759448587171@example.com 55555555 \N \N \N \N \N 147 \N \N \N +10081 2025-10-06 00:59:01.35915+00 2025-10-06 00:59:01.359159+00 f t Invitado Amar invitado-1759712340580@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10262 2025-10-08 12:05:10.344942+00 2025-10-08 12:05:10.344951+00 f t Invitado Amar invitado-1759925109040@example.com 55555555 \N \N \N \N \N 149 \N \N \N +10444 2025-10-10 19:11:33.897262+00 2025-10-10 19:11:33.897271+00 f t Invitado Amar invitado-1760123493293@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10626 2025-10-13 14:53:58.242512+00 2025-10-13 14:53:58.242522+00 f t Invitado Amar invitado-1760367237539@example.com 55555555 \N \N \N \N \N 80 \N \N \N +10808 2025-10-15 21:31:07.5629+00 2025-10-15 21:31:07.562913+00 f t Invitado Amar invitado-1760563866417@example.com 55555555 \N \N \N \N \N 49 \N \N \N +10988 2025-10-17 22:01:16.24396+00 2025-10-17 22:01:16.243973+00 f t Invitado Amar invitado-1760738474852@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11168 2025-10-20 18:01:04.904515+00 2025-10-20 18:01:04.904529+00 f t Lisa Andreana González Lisapircio11@gmail.com 5491145390976 \N Benito quinquela martin 1716 3C \N FEMALE \N -34.6438081 -58.3740653 32 \N \N \N +13158 2025-11-13 11:51:13.521663+00 2025-11-13 11:51:13.521676+00 f t Invitado Amar invitado-1763034672710@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11348 2025-10-22 19:10:53.956464+00 2025-10-22 19:10:53.956475+00 f t Delfina Ferreiro ferreiro.delfina@gmail.com +541134491511 \N Cura allievi 1180 Lote 25 \N \N -34.4943323 -58.5717219 58 \N \N \N +13389 2025-11-15 15:05:08.471187+00 2025-11-15 15:05:08.471196+00 f t Invitado Amar invitado-1763219109219@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11529 2025-10-25 22:21:00.962181+00 2025-10-25 22:21:00.96219+00 f t Viviana Salazar vivibaires@icloyd.com +5491127280860 \N Valle grande 1506 3 D \N \N -34.5315635 -58.499598 59 \N \N \N +11712 2025-10-28 13:25:02.093073+00 2025-10-28 13:25:02.093087+00 f t Invitado Amar invitado-1761657899428@example.com 55555555 \N \N \N \N \N 147 \N \N \N +13591 2025-11-18 03:20:13.07904+00 2025-11-18 03:20:13.079049+00 f t Invitado Amar invitado-1763436011217@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11894 2025-10-29 22:57:39.066251+00 2025-10-29 22:57:39.066261+00 f t Mayra Pietrobelli mayrapietrobelli@hotmail.com +541153226656 \N Monteverde 4086 \N \N FEMALE \N -34.5005021 -58.4983476 39 \N \N \N +13778 2025-11-19 14:17:20.839857+00 2025-11-19 14:17:20.839866+00 f t Invitado Amar invitado-1763561840280@example.com 55555555 \N \N \N \N \N 87 \N \N \N +13959 2025-11-20 21:27:22.93197+00 2025-11-20 21:27:22.931982+00 f t Invitado Amar invitado-1763674042268@example.com 55555555 \N \N \N \N \N 155 \N \N \N +12078 2025-10-31 18:09:44.315158+00 2025-10-31 18:09:44.315167+00 f t Luciana Rizzo luciana.rizzo@live.com.ar +541164851013 \N SALGUERO, JERONIMO 882 4/18 \N \N -34.5787615 -58.4072538 23 1956 \N \N +12259 2025-11-03 15:01:37.61262+00 2025-11-03 15:01:37.612629+00 f t Invitado Amar invitado-1762182098225@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12442 2025-11-05 16:12:48.554887+00 2025-11-05 16:12:48.554898+00 f t Invitado Amar invitado-1762359167601@example.com 55555555 \N \N \N \N \N 79 \N \N \N +14138 2025-11-22 09:06:33.747912+00 2025-11-22 09:06:33.747922+00 f t Invitado Amar invitado-1763802391022@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14320 2025-11-24 12:01:28.641383+00 2025-11-24 12:01:28.64139+00 f t Invitado Amar invitado-1763985687947@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14501 2025-11-25 16:37:30.666913+00 2025-11-25 16:37:30.666926+00 f t Invitado Amar invitado-1764088652198@example.com 55555555 \N \N \N \N \N 20 \N \N \N +12804 2025-11-09 19:50:17.073425+00 2025-11-09 19:50:17.073433+00 f t Raynara cipriano rakelle.rk@gmail.com +5491176393588 \N Pacheco de Melo 2432 13a \N \N -34.5882035 -58.399222 9 2081 \N \N +12624 2025-11-07 18:15:24.698886+00 2025-11-07 18:15:24.698896+00 f t Clara Ilari clarahidra@gmail.com +541134697443 \N Av corrientes 1719 2 piso \N FEMALE \N -34.6042358 -58.391156 13 2063 \N \N +12987 2025-11-11 18:22:29.549581+00 2025-11-11 18:22:29.549591+00 f t Invitado Amar invitado-1762885349151@example.com 55555555 \N \N \N \N \N 17 \N \N \N +9731 2025-10-01 02:40:01.965113+00 2025-10-01 02:40:01.965128+00 f t Invitado Amar invitado-1759286401261@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-7649 +9903 2025-10-03 00:09:41.33167+00 2025-10-03 00:09:41.331679+00 f t Invitado Amar invitado-1759450180290@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10082 2025-10-06 01:09:18.229619+00 2025-10-06 01:09:18.229628+00 f t Invitado Amar invitado-1759712957096@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10263 2025-10-08 12:06:16.491887+00 2025-10-08 12:06:16.491897+00 f t Invitado Amar invitado-1759925174902@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10445 2025-10-10 19:59:22.550336+00 2025-10-10 19:59:22.550345+00 f t Invitado Amar invitado-1760126361943@example.com 55555555 \N \N \N \N \N 91 \N \N \N +10627 2025-10-13 14:58:29.309599+00 2025-10-13 14:58:29.309609+00 f t Invitado Amar invitado-1760367509063@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10809 2025-10-15 21:33:33.020951+00 2025-10-15 21:33:33.020959+00 f t Invitado Amar invitado-1760564012589@example.com 55555555 \N \N \N \N \N 41 \N \N \N +11169 2025-10-20 18:02:50.872224+00 2025-10-20 18:02:50.872233+00 f t Invitado Amar invitado-1760983365332@example.com 55555555 \N \N \N \N \N 31 \N \N \N +11349 2025-10-22 19:13:21.061329+00 2025-10-22 19:13:21.061341+00 f t Invitado Amar invitado-1761160400883@example.com 55555555 \N \N \N \N \N 75 \N \N \N +11530 2025-10-25 22:24:44.413243+00 2025-10-25 22:24:44.413253+00 f t Invitado Amar invitado-1761431084250@example.com 55555555 \N \N \N \N \N 82 \N \N \N +11713 2025-10-28 13:26:09.547093+00 2025-10-28 13:26:09.547103+00 f t Invitado Amar invitado-1761657970272@example.com 55555555 \N \N \N \N \N 64 \N \N \N +11895 2025-10-29 22:57:51.844072+00 2025-10-29 22:57:51.844081+00 f t Invitado Amar invitado-1761778671143@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12079 2025-10-31 18:15:48.797004+00 2025-10-31 18:15:48.797011+00 f t Invitado Amar invitado-1761934548476@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13159 2025-11-13 12:07:50.64539+00 2025-11-13 12:07:50.645398+00 f t Invitado Amar invitado-1763035669743@example.com 55555555 \N \N \N \N \N 24 \N \N \N +12260 2025-11-03 15:12:43.642639+00 2025-11-03 15:12:43.642648+00 f t Pamela List pamelalist@hotmail.com 5491144797144 \N cerviño 3988 piso 4o \N FEMALE \N -34.5784479 -58.4145669 1 1986 \N \N +12443 2025-11-05 16:39:30.86933+00 2025-11-05 16:39:30.869339+00 f t Invitado Amar invitado-1762360769552@example.com 55555555 \N \N \N \N \N 64 \N \N \N +12625 2025-11-07 18:18:30.53109+00 2025-11-07 18:18:30.5311+00 f t Invitado Amar invitado-1762539510133@example.com 55555555 \N \N \N \N \N 47 \N \N \N +12805 2025-11-09 19:53:23.52119+00 2025-11-09 19:53:23.521199+00 f t Invitado Amar invitado-1762718002949@example.com 55555555 \N \N \N \N \N 68 \N \N \N +12988 2025-11-11 18:49:19.234537+00 2025-11-11 18:49:19.234545+00 f t Invitado Amar invitado-1762886958730@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13390 2025-11-15 15:15:37.619787+00 2025-11-15 15:15:37.619795+00 f t Invitado Amar invitado-1763219737241@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13592 2025-11-18 04:00:44.001879+00 2025-11-18 04:00:44.001887+00 f t Invitado Amar invitado-1763438442976@example.com 55555555 \N \N \N \N \N 12 \N \N \N +13779 2025-11-19 14:27:08.807731+00 2025-11-19 14:27:08.80774+00 f t Invitado Amar invitado-1763562427599@example.com 55555555 \N \N \N \N \N 54 \N \N \N +13960 2025-11-20 21:38:41.89979+00 2025-11-20 21:38:41.8998+00 f t Invitado Amar invitado-1763674720541@example.com 55555555 \N \N \N \N \N 44 \N \N \N +266 2024-12-13 19:21:24.32+00 2024-12-13 19:21:24.32+00 f t Agustin Viveros agustinviveros@hotmail.com 5491159095342 \N Av Juramento 1934 Planta baja B \N MALE \N -34.55960482244898 -58.45230661632653 3 145 \N aviveros +14139 2025-11-22 10:48:43.963154+00 2025-11-22 10:48:43.963164+00 f t Invitado Amar invitado-1763808522583@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14321 2025-11-24 12:07:07.429489+00 2025-11-24 12:07:07.429499+00 f t Invitado Amar invitado-1763986026973@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14502 2025-11-25 16:38:49.587169+00 2025-11-25 16:38:49.58718+00 f t Invitado Amar invitado-1764088728260@example.com 55555555 \N \N \N \N \N 19 \N \N \N +9732 2025-10-01 03:02:21.483872+00 2025-10-01 03:02:21.483881+00 f t Invitado Amar invitado-1759287740927@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7650 +9904 2025-10-03 00:21:25.128782+00 2025-10-03 00:21:25.128794+00 f t Invitado Amar invitado-1759450884658@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10083 2025-10-06 01:30:40.972775+00 2025-10-06 01:30:40.972784+00 f t Invitado Amar invitado-1759714240565@example.com 55555555 \N \N \N \N \N 74 \N \N \N +10264 2025-10-08 12:12:27.62571+00 2025-10-08 12:12:27.625719+00 f t Invitado Amar invitado-1759925545679@example.com 55555555 \N \N \N \N \N 46 \N \N \N +10446 2025-10-10 20:06:03.512777+00 2025-10-10 20:06:03.512791+00 f t Invitado Amar invitado-1760126762927@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10628 2025-10-13 15:03:19.943378+00 2025-10-13 15:03:19.943387+00 f t Invitado Amar invitado-1760367798906@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10810 2025-10-15 21:54:06.667859+00 2025-10-15 21:54:06.667871+00 f t Invitado Amar invitado-1760565465438@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10989 2025-10-17 23:11:26.102321+00 2025-10-17 23:11:26.102334+00 f t Invitado Amar invitado-1760742685715@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11170 2025-10-20 18:26:16.993406+00 2025-10-20 18:26:16.993416+00 f t Invitado Amar invitado-1760984775913@example.com 55555555 \N \N \N \N \N 147 \N \N \N +11350 2025-10-22 19:33:30.464803+00 2025-10-22 19:33:30.464816+00 f t Invitado Amar invitado-1761161609974@example.com 55555555 \N \N \N \N \N 85 \N \N \N +11531 2025-10-25 22:42:08.411963+00 2025-10-25 22:42:08.412021+00 f t Invitado Amar invitado-1761432130332@example.com 55555555 \N \N \N \N \N 82 \N \N \N +11714 2025-10-28 13:29:44.465692+00 2025-10-28 13:29:44.465701+00 f t Invitado Amar invitado-1761658184081@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11896 2025-10-29 23:00:57.134551+00 2025-10-29 23:00:57.134561+00 f t Invitado Amar invitado-1761778856187@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12080 2025-10-31 18:47:12.823821+00 2025-10-31 18:47:12.823829+00 f t Invitado Amar invitado-1761936431816@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12261 2025-11-03 15:28:21.058653+00 2025-11-03 15:28:21.058664+00 f t Invitado Amar invitado-1762183699213@example.com 55555555 \N \N \N \N \N 44 \N \N \N +12444 2025-11-05 17:27:26.299998+00 2025-11-05 17:27:26.300007+00 f t Invitado Amar invitado-1762363645899@example.com 55555555 \N \N \N \N \N 60 \N \N \N +12626 2025-11-07 18:18:48.129444+00 2025-11-07 18:18:48.129456+00 f t Invitado Amar invitado-1762539527674@example.com 55555555 \N \N \N \N \N 13 \N \N \N +12806 2025-11-09 19:56:33.394904+00 2025-11-09 19:56:33.394912+00 f t Invitado Amar invitado-1762718192497@example.com 55555555 \N \N \N \N \N 84 \N \N \N +12989 2025-11-11 18:51:21.762879+00 2025-11-11 18:51:21.762888+00 f t Invitado Amar invitado-1762887081453@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13160 2025-11-13 12:32:01.771418+00 2025-11-13 12:32:01.771433+00 f t Invitado Amar invitado-1763037121306@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13391 2025-11-15 15:15:39.19302+00 2025-11-15 15:15:39.19303+00 f t Invitado Amar invitado-1763219738422@example.com 55555555 \N \N \N \N \N 50 \N \N \N +13593 2025-11-18 04:02:56.501973+00 2025-11-18 04:02:56.501985+00 f t Invitado Amar invitado-1763438576195@example.com 55555555 \N \N \N \N \N 12 \N \N \N +13780 2025-11-19 14:29:07.210767+00 2025-11-19 14:29:07.210779+00 f t Invitado Amar invitado-1763562546304@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13961 2025-11-20 21:50:54.865988+00 2025-11-20 21:50:54.865997+00 f t Invitado Amar invitado-1763675454595@example.com 55555555 \N \N \N \N \N 79 \N \N \N +14140 2025-11-22 10:57:34.840885+00 2025-11-22 10:57:34.840894+00 f t Invitado Amar invitado-1763809054813@example.com 55555555 \N \N \N \N \N 31 \N \N \N +14322 2025-11-24 12:07:09.182577+00 2025-11-24 12:07:09.18259+00 f t Invitado Amar invitado-1763986028810@example.com 55555555 \N \N \N \N \N 45 \N \N \N +14503 2025-11-25 16:43:46.61171+00 2025-11-25 16:43:46.611723+00 f t Invitado Amar invitado-1764089026171@example.com 55555555 \N \N \N \N \N 78 \N \N \N +9733 2025-10-01 03:02:58.55768+00 2025-10-01 03:02:58.55769+00 f t Invitado Amar invitado-1759287778699@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7651 +9905 2025-10-03 00:34:41.64561+00 2025-10-03 00:34:41.645631+00 f t Invitado Amar invitado-1759451680955@example.com 55555555 \N \N \N \N \N 53 \N \N \N +10084 2025-10-06 02:35:00.195299+00 2025-10-06 02:35:00.195309+00 f t Invitado Amar invitado-1759718099236@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10265 2025-10-08 12:13:32.876012+00 2025-10-08 12:13:32.876024+00 f t Invitado Amar invitado-1759925611374@example.com 55555555 \N \N \N \N \N 28 \N \N \N +10447 2025-10-10 20:13:37.175914+00 2025-10-10 20:13:37.175925+00 f t Invitado Amar invitado-1760127217379@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10629 2025-10-13 15:15:14.252395+00 2025-10-13 15:15:14.252404+00 f t Invitado Amar invitado-1760368513265@example.com 55555555 \N \N \N \N \N 87 \N \N \N +10811 2025-10-15 21:54:57.253523+00 2025-10-15 21:54:57.253532+00 f t Invitado Amar invitado-1760565296826@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10990 2025-10-17 23:12:20.161852+00 2025-10-17 23:12:20.16186+00 f t Invitado Amar invitado-1760742739087@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11171 2025-10-20 18:29:30.637455+00 2025-10-20 18:29:30.637466+00 f t Invitado Amar invitado-1760984969739@example.com 55555555 \N \N \N \N \N 149 \N \N \N +11351 2025-10-22 21:18:18.853312+00 2025-10-22 21:18:18.853324+00 f t Invitado Amar invitado-1761167898431@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11532 2025-10-25 22:42:27.315334+00 2025-10-25 22:42:27.315343+00 f t Invitado Amar invitado-1761432146239@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11715 2025-10-28 13:38:37.063318+00 2025-10-28 13:38:37.063327+00 f t Invitado Amar invitado-1761658627039@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11897 2025-10-29 23:03:43.4884+00 2025-10-29 23:03:43.488409+00 f t Invitado Amar invitado-1761779022977@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12081 2025-10-31 19:05:05.537511+00 2025-10-31 19:05:05.537526+00 f t Invitado Amar invitado-1761937504326@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12262 2025-11-03 15:30:51.972702+00 2025-11-03 15:30:51.972711+00 f t Invitado Amar invitado-1762183850899@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12445 2025-11-05 17:41:30.489984+00 2025-11-05 17:41:30.489993+00 f t Invitado Amar invitado-1762364490447@example.com 55555555 \N \N \N \N \N 83 \N \N \N +12627 2025-11-07 18:40:09.75929+00 2025-11-07 18:40:09.759303+00 f t Invitado Amar invitado-1762540811668@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13161 2025-11-13 12:35:17.635596+00 2025-11-13 12:35:17.635611+00 f t Invitado Amar invitado-1763037317166@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12807 2025-11-09 19:56:59.098173+00 2025-11-09 19:56:59.098184+00 f t Naileth Aular Puerta nailethaularp@gmail.com 5491137769927 \N san Martin . 543 Piso 5 Departamento Derecho. \N FEMALE 1984-09-24 -34.6016057 -58.373893 13 2080 \N \N +12990 2025-11-11 19:00:24.894347+00 2025-11-11 19:00:24.894356+00 f t Invitado Amar invitado-1762887624224@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13392 2025-11-15 15:43:59.687088+00 2025-11-15 15:43:59.687099+00 f t Invitado Amar invitado-1763221439225@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13594 2025-11-18 04:08:00.857816+00 2025-11-18 04:08:00.857824+00 f t Invitado Amar invitado-1763438880519@example.com 55555555 \N \N \N \N \N 16 \N \N \N +13781 2025-11-19 14:30:50.744192+00 2025-11-19 14:30:50.744201+00 f t Invitado Amar invitado-1763562650885@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13962 2025-11-20 21:53:14.317238+00 2025-11-20 21:53:14.317247+00 f t Invitado Amar invitado-1763675592968@example.com 55555555 \N \N \N \N \N 59 \N \N \N +14141 2025-11-22 11:03:29.57103+00 2025-11-22 11:03:29.57109+00 f t Invitado Amar invitado-1763809410601@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14323 2025-11-24 12:17:17.954902+00 2025-11-24 12:17:17.954917+00 f t Invitado Amar invitado-1763986637557@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14504 2025-11-25 16:44:35.996273+00 2025-11-25 16:44:35.996283+00 f t Invitado Amar invitado-1764089075737@example.com 55555555 \N \N \N \N \N 78 \N \N \N +9734 2025-10-01 03:06:38.08216+00 2025-10-01 03:06:38.082169+00 f t Invitado Amar invitado-1759287998707@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-7652 +9906 2025-10-03 00:37:14.475382+00 2025-10-03 00:37:14.475392+00 f t Invitado Amar invitado-1759451834946@example.com 55555555 \N \N \N \N \N 46 \N \N \N +10085 2025-10-06 03:21:42.613239+00 2025-10-06 03:21:42.613248+00 f t Invitado Amar invitado-1759720901769@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10266 2025-10-08 12:13:39.000063+00 2025-10-08 12:13:39.000072+00 f t Invitado Amar invitado-1759925617334@example.com 55555555 \N \N \N \N \N 46 \N \N \N +10448 2025-10-10 21:02:43.836687+00 2025-10-10 21:02:43.836697+00 f t Invitado Amar invitado-1760130163183@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10630 2025-10-13 15:17:54.346107+00 2025-10-13 15:17:54.346116+00 f t Invitado Amar invitado-1760368673831@example.com 55555555 \N \N \N \N \N 82 \N \N \N +10812 2025-10-15 22:27:20.612867+00 2025-10-15 22:27:20.612875+00 f t Invitado Amar invitado-1760567239114@example.com 55555555 \N \N \N \N \N 88 \N \N \N +10991 2025-10-17 23:19:48.706773+00 2025-10-17 23:19:48.706782+00 f t Invitado Amar invitado-1760743187792@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11172 2025-10-20 18:38:53.699417+00 2025-10-20 18:38:53.699428+00 f t Eloy izetta eloyizetta7@gmail.com 5492213518630 \N lavalle 357 depto 66 \N FEMALE \N -34.6019486 -58.3719507 13 \N \N \N +11352 2025-10-22 21:32:41.103101+00 2025-10-22 21:32:41.103111+00 f t Invitado Amar invitado-1761168760714@example.com 55555555 \N \N \N \N \N \N \N \N \N +11533 2025-10-25 22:43:29.798691+00 2025-10-25 22:43:29.7987+00 f t Invitado Amar invitado-1761432209382@example.com 55555555 \N \N \N \N \N 50 \N \N \N +9165 2025-09-23 05:47:05.617742+00 2025-09-23 05:47:05.617752+00 f t Maximiliano Britos marvel.age@gmail.com +5491121870199 \N Eva Perón 1624 2°H \N MALE \N -34.6344022 -58.4466631 20 \N \N mbritos +11898 2025-10-29 23:14:05.724108+00 2025-10-29 23:14:05.724117+00 f t Invitado Amar invitado-1761779643600@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12082 2025-10-31 19:39:52.035572+00 2025-10-31 19:39:52.035581+00 f t Invitado Amar invitado-1761939591660@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12263 2025-11-03 15:35:45.1629+00 2025-11-03 15:35:45.162909+00 f t Invitado Amar invitado-1762184144681@example.com 55555555 \N \N \N \N \N 53 \N \N \N +12628 2025-11-07 18:43:15.132707+00 2025-11-07 18:43:15.13272+00 f t Invitado Amar invitado-1762540994032@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12446 2025-11-05 18:08:03.983571+00 2025-11-05 18:08:03.983585+00 f t micaela muniz muniz.micaela208@gmail.com 91135035672 \N Manuel Artigas 5106 piso 11 dpto 7 \N FEMALE 1999-08-20 -34.6441578 -58.4965112 19 2034 \N \N +12808 2025-11-09 19:59:32.108392+00 2025-11-09 19:59:32.108401+00 f t Invitado Amar invitado-1762718371932@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13162 2025-11-13 13:14:53.361223+00 2025-11-13 13:14:53.361232+00 f t carmen iglesias ciglesiasgarma@gmail.com 91130080695 \N Avenida Cerviño 4473 \N \N FEMALE 1987-10-03 -34.5759314 -58.4208067 1 2124 \N \N +13393 2025-11-15 15:55:20.836675+00 2025-11-15 15:55:20.837112+00 f t Invitado Amar invitado-1763222119559@example.com 55555555 \N \N \N \N \N 65 \N \N \N +12991 2025-11-11 19:01:09.407422+00 2025-11-11 19:01:09.40743+00 f t Julian Tiempo juliantiempo73@gmail.com +5491134113610 \N Avda Angel Gallardo 673 6A \N MALE \N -34.6056625 -58.4400347 26 2106 \N \N +13595 2025-11-18 04:09:13.593842+00 2025-11-18 04:09:13.593851+00 f t Invitado Amar invitado-1763438953052@example.com 55555555 \N \N \N \N \N 63 \N \N \N +13782 2025-11-19 14:41:38.719519+00 2025-11-19 14:41:38.719531+00 f t Invitado Amar invitado-1763563298160@example.com 55555555 \N \N \N \N \N 24 \N \N \N +13963 2025-11-20 21:54:47.408806+00 2025-11-20 21:54:47.408817+00 f t Invitado Amar invitado-1763675686920@example.com 55555555 \N \N \N \N \N 90 \N \N \N +14142 2025-11-22 11:18:19.413359+00 2025-11-22 11:18:19.413369+00 f t Invitado Amar invitado-1763810297905@example.com 55555555 \N \N \N \N \N 40 \N \N \N +14324 2025-11-24 12:18:20.779362+00 2025-11-24 12:18:20.77937+00 f t Invitado Amar invitado-1763986699194@example.com 55555555 \N \N \N \N \N 29 \N \N \N +14505 2025-11-25 16:46:29.332282+00 2025-11-25 16:46:29.332292+00 f t Invitado Amar invitado-1764089188004@example.com 55555555 \N \N \N \N \N 19 \N \N \N +9735 2025-10-01 03:09:27.39691+00 2025-10-01 03:09:27.39692+00 f t Invitado Amar invitado-1759288166813@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7653 +9907 2025-10-03 00:54:06.116705+00 2025-10-03 00:54:06.116718+00 f t Invitado Amar invitado-1759452847788@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10086 2025-10-06 03:32:10.188885+00 2025-10-06 03:32:10.188895+00 f t Invitado Amar invitado-1759721530042@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10267 2025-10-08 12:24:30.943269+00 2025-10-08 12:24:30.943279+00 f t Invitado Amar invitado-1759926269799@example.com 55555555 \N \N \N \N \N 149 \N \N \N +10449 2025-10-10 21:24:25.260071+00 2025-10-10 21:24:25.260079+00 f t Invitado Amar invitado-1760131464665@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10631 2025-10-13 15:19:31.488474+00 2025-10-13 15:19:31.488482+00 f t Sylvana Díaz Sylvanadiaztello@gmail.com 5491164185700 \N Venezuela 4854 Sin timbre \N FEMALE \N -34.5542399 -58.5152843 27 \N \N \N +10813 2025-10-15 22:28:07.003035+00 2025-10-15 22:28:07.003044+00 f t Invitado Amar invitado-1760567285857@example.com 55555555 \N \N \N \N \N 88 \N \N \N +10992 2025-10-17 23:20:02.505819+00 2025-10-17 23:20:02.505833+00 t t Invitado Amar invitado-1760743201211@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11173 2025-10-20 18:49:49.895003+00 2025-10-20 18:49:49.895011+00 f t Invitado Amar invitado-1760986189221@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11353 2025-10-22 21:54:29.627769+00 2025-10-22 21:54:29.627778+00 f t Invitado Amar invitado-1761170067870@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11534 2025-10-25 22:44:00.721206+00 2025-10-25 22:44:00.721218+00 f t Invitado Amar invitado-1761432242695@example.com 55555555 \N \N \N \N \N 27 \N \N \N +11716 2025-10-28 14:01:38.43591+00 2025-10-28 14:01:38.43592+00 f t Invitado Amar invitado-1761660097192@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11899 2025-10-29 23:18:09.172138+00 2025-10-29 23:18:09.172147+00 f t Invitado Amar invitado-1761779888475@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12083 2025-10-31 19:48:57.118305+00 2025-10-31 19:48:57.118315+00 f t Invitado Amar invitado-1761940244020@example.com 55555555 \N \N \N \N \N 153 \N \N \N +12264 2025-11-03 15:38:46.286548+00 2025-11-03 15:38:46.286559+00 f t Invitado Amar invitado-1762184326000@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12447 2025-11-05 18:56:40.532675+00 2025-11-05 18:56:40.532684+00 f t Invitado Amar invitado-1762368999357@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12629 2025-11-07 18:49:43.480544+00 2025-11-07 18:49:43.480553+00 f t Invitado Amar invitado-1762541382937@example.com 55555555 \N \N \N \N \N 22 \N \N \N +12809 2025-11-09 20:07:27.947262+00 2025-11-09 20:07:27.947271+00 f t Invitado Amar invitado-1762718848083@example.com 55555555 \N \N \N \N \N 52 \N \N \N +12992 2025-11-11 19:10:07.588555+00 2025-11-11 19:10:07.588564+00 f t Invitado Amar invitado-1762888207348@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13163 2025-11-13 13:23:38.767735+00 2025-11-13 13:23:38.767744+00 f t Invitado Amar invitado-1763040217886@example.com 55555555 \N \N \N \N \N 12 \N \N \N +13394 2025-11-15 16:08:42.690715+00 2025-11-15 16:08:42.691118+00 f t Invitado Amar invitado-1763222921515@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13596 2025-11-18 04:17:15.272412+00 2025-11-18 04:17:15.272427+00 f t Invitado Amar invitado-1763439434790@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13783 2025-11-19 14:52:29.395027+00 2025-11-19 14:52:29.395035+00 f t Invitado Amar invitado-1763563948841@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13964 2025-11-20 21:59:36.200589+00 2025-11-20 21:59:36.200597+00 f t Invitado Amar invitado-1763675974300@example.com 55555555 \N \N \N \N \N 46 \N \N \N +14143 2025-11-22 11:37:45.342298+00 2025-11-22 11:37:45.342306+00 f t Adrián De Vita adriandevota@gmail.com +541133100968 \N Hortiguera 82 12 D \N MALE \N -34.6236846 -58.4468635 14 2233 \N \N +14325 2025-11-24 12:21:36.409144+00 2025-11-24 12:21:36.409154+00 f t Invitado Amar invitado-1763986895357@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14506 2025-11-25 17:20:30.092202+00 2025-11-25 17:20:30.092802+00 f t Olga Zaytseva zaitseva.russia@gmail.com +541123869992 \N Jeronimo Salguero 3054 5 \N \N \N \N 1 2273 \N \N +9736 2025-10-01 03:12:08.292937+00 2025-10-01 03:12:08.292949+00 f t Invitado Amar invitado-1759288328530@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7654 +9908 2025-10-03 01:01:43.761006+00 2025-10-03 01:01:43.761015+00 f t Invitado Amar invitado-1759453302744@example.com 55555555 \N \N \N \N \N 17 \N \N \N +10087 2025-10-06 03:37:50.48573+00 2025-10-06 03:37:50.485755+00 f t Invitado Amar invitado-1759721870775@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10268 2025-10-08 13:36:18.84576+00 2025-10-08 13:36:18.84577+00 f t Invitado Amar invitado-1759930578040@example.com 55555555 \N \N \N \N \N 31 \N \N \N +10450 2025-10-10 21:26:26.170077+00 2025-10-10 21:26:26.170086+00 f t Invitado Amar invitado-1760131586203@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10632 2025-10-13 15:24:37.134516+00 2025-10-13 15:24:37.134524+00 f t Invitado Amar invitado-1760369077208@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10814 2025-10-15 22:35:46.809806+00 2025-10-15 22:35:46.809816+00 f t Invitado Amar invitado-1760567744428@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13164 2025-11-13 13:26:51.41352+00 2025-11-13 13:26:51.413528+00 f t Invitado Amar invitado-1763040410968@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13395 2025-11-15 16:16:12.818296+00 2025-11-15 16:16:12.818319+00 f t Veronica n Verokaty05@yahoo.com.ar 91150001599 \N Rivadavia 5908 3 C \N FEMALE \N -34.6237667 -58.4487604 14 2156 \N \N +11174 2025-10-20 18:53:23.754817+00 2025-10-20 18:53:23.754826+00 f t Invitado Amar invitado-1760986403558@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11354 2025-10-22 22:00:19.876156+00 2025-10-22 22:00:19.876167+00 f t Invitado Amar invitado-1761170416863@example.com 55555555 \N \N \N \N \N 34 \N \N \N +11535 2025-10-25 22:44:23.400438+00 2025-10-25 22:44:23.400451+00 f t Invitado Amar invitado-1761432262233@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11717 2025-10-28 14:20:57.716024+00 2025-10-28 14:20:57.716032+00 f t Invitado Amar invitado-1761661256812@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11900 2025-10-29 23:19:40.869917+00 2025-10-29 23:19:40.869927+00 f t Invitado Amar invitado-1761779979791@example.com 55555555 \N \N \N \N \N 92 \N \N \N +2440 2025-06-09 18:34:26.851652+00 2025-06-09 18:34:26.851665+00 f t Invitado Amar invitado-1749494067131@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-1341 +12084 2025-10-31 20:06:37.728581+00 2025-10-31 20:06:37.728591+00 f t rocio silvina peralta rociosilvinaperalta@gmail.com 91131734412 \N Lafuente 216 \N \N FEMALE \N -34.6331239 -58.4670104 4 1957 \N \N +12265 2025-11-03 15:42:15.27495+00 2025-11-03 15:42:15.274964+00 f t Invitado Amar invitado-1762184534412@example.com 55555555 \N \N \N \N \N 38 \N \N \N +12810 2025-11-09 20:09:16.466475+00 2025-11-09 20:09:16.466483+00 f t Bianca Alfuso b.alfuso@gmail.com 5491158778287 \N Maximino Pérez 402 lote 541, \N MALE 1992-09-15 -34.4427848 -58.5431949 74 2083 \N \N +10993 2025-10-17 23:38:12.041354+00 2025-10-17 23:38:12.041366+00 f t Luciana coste Coste costeluciana@gmail.com +541137720826 \N Belgrano 1727 2 A \N FEMALE \N -34.7432226 -58.3916236 72 2005 \N \N +12448 2025-11-05 18:57:55.99852+00 2025-11-05 18:57:55.998532+00 f t Invitado Amar invitado-1762369075642@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12630 2025-11-07 18:56:14.034421+00 2025-11-07 18:56:14.034429+00 f t Invitado Amar invitado-1762541773098@example.com 55555555 \N \N \N \N \N 156 \N \N \N +13597 2025-11-18 05:29:50.652985+00 2025-11-18 05:29:50.652993+00 f t Invitado Amar invitado-1763443788843@example.com 55555555 \N \N \N \N \N 15 \N \N \N +12993 2025-11-11 19:15:57.5241+00 2025-11-11 19:15:57.524109+00 f t Invitado Amar invitado-1762888556915@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13784 2025-11-19 14:56:14.237832+00 2025-11-19 14:56:14.237841+00 f t Invitado Amar invitado-1763564173888@example.com 55555555 \N \N \N \N \N 55 \N \N \N +13965 2025-11-20 22:30:40.257099+00 2025-11-20 22:30:40.25711+00 f t Invitado Amar invitado-1763677838122@example.com 55555555 \N \N \N \N \N 18 \N \N \N +14144 2025-11-22 11:40:21.575823+00 2025-11-22 11:40:21.575833+00 f t Invitado Amar invitado-1763811621134@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14326 2025-11-24 12:22:57.281776+00 2025-11-24 12:22:57.281784+00 f t Invitado Amar invitado-1763986976870@example.com 55555555 \N \N \N \N \N 64 \N \N \N +2441 2025-06-09 18:57:34.691051+00 2025-06-09 18:57:34.691066+00 f t Invitado Amar invitado-1749495453536@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-1342 +14507 2025-11-25 17:21:39.347128+00 2025-11-25 17:21:39.347141+00 f t Invitado Amar invitado-1764091298663@example.com 55555555 \N \N \N \N \N 25 \N \N \N +9737 2025-10-01 03:13:10.570795+00 2025-10-01 03:13:10.570808+00 f t Invitado Amar invitado-1759288389629@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-7655 +9909 2025-10-03 01:36:42.384766+00 2025-10-03 01:36:42.384775+00 f t Invitado Amar invitado-1759455401765@example.com 55555555 \N \N \N \N \N 12 \N \N \N +10088 2025-10-06 04:34:22.193396+00 2025-10-06 04:34:22.193405+00 f t Invitado Amar invitado-1759725261868@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10269 2025-10-08 14:17:51.402459+00 2025-10-08 14:17:51.402468+00 f t Invitado Amar invitado-1759933070345@example.com 55555555 \N \N \N \N \N 48 \N \N \N +10451 2025-10-10 21:40:58.118583+00 2025-10-10 21:40:58.118592+00 f t Invitado Amar invitado-1760132458145@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10633 2025-10-13 15:45:27.19144+00 2025-10-13 15:45:27.191451+00 f t Invitado Amar invitado-1760370326610@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10815 2025-10-15 22:36:03.569788+00 2025-10-15 22:36:03.569798+00 f t Invitado Amar invitado-1760567761842@example.com 55555555 \N \N \N \N \N 49 \N \N \N +10994 2025-10-17 23:38:40.85363+00 2025-10-17 23:38:40.853638+00 f t Invitado Amar invitado-1760744320225@example.com 55555555 \N \N \N \N \N 10 \N \N \N +11175 2025-10-20 19:09:05.633808+00 2025-10-20 19:09:05.633821+00 f t Invitado Amar invitado-1760987344114@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11355 2025-10-22 22:16:04.494603+00 2025-10-22 22:16:04.494617+00 f t Invitado Amar invitado-1761171363355@example.com 55555555 \N \N \N \N \N 85 \N \N \N +11536 2025-10-25 22:44:34.887284+00 2025-10-25 22:44:34.887292+00 f t Invitado Amar invitado-1761432306614@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11718 2025-10-28 14:31:02.253933+00 2025-10-28 14:31:02.253943+00 f t Invitado Amar invitado-1761661861799@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11901 2025-10-29 23:21:24.401504+00 2025-10-29 23:21:24.401513+00 f t Invitado Amar invitado-1761780083743@example.com 55555555 \N \N \N \N \N 46 \N \N \N +12085 2025-10-31 20:21:15.056274+00 2025-10-31 20:21:15.056284+00 f t Invitado Amar invitado-1761942074463@example.com 55555555 \N \N \N \N \N 73 \N \N \N +12266 2025-11-03 15:43:53.983121+00 2025-11-03 15:43:53.983152+00 f t Invitado Amar invitado-1762184633354@example.com 55555555 \N \N \N \N \N 38 \N \N \N +12449 2025-11-05 19:21:52.817909+00 2025-11-05 19:21:52.817918+00 f t Invitado Amar invitado-1762370512336@example.com 55555555 \N \N \N \N \N 15 \N \N \N +12631 2025-11-07 18:59:08.257516+00 2025-11-07 18:59:08.257526+00 f t Invitado Amar invitado-1762541947758@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12811 2025-11-09 20:23:40.256313+00 2025-11-09 20:23:40.256321+00 f t Invitado Amar invitado-1762719818353@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12994 2025-11-11 19:19:44.187349+00 2025-11-11 19:19:44.187359+00 f t Invitado Amar invitado-1762888785110@example.com 55555555 \N \N \N \N \N 60 \N \N \N +13165 2025-11-13 13:40:08.515891+00 2025-11-13 13:40:08.515901+00 f t Invitado Amar invitado-1763041208131@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13396 2025-11-15 16:18:49.102684+00 2025-11-15 16:18:49.10329+00 f t Invitado Amar invitado-1763223527567@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13598 2025-11-18 06:04:40.895277+00 2025-11-18 06:04:40.895292+00 f t Invitado Amar invitado-1763445879561@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13785 2025-11-19 14:57:58.42129+00 2025-11-19 14:57:58.4213+00 f t Invitado Amar invitado-1763564277795@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13966 2025-11-20 22:40:15.586124+00 2025-11-20 22:40:15.586134+00 f t Invitado Amar invitado-1763678415238@example.com 55555555 \N \N \N \N \N 72 \N \N \N +14145 2025-11-22 12:43:06.364422+00 2025-11-22 12:43:06.364437+00 f t Invitado Amar invitado-1763815385939@example.com 55555555 \N \N \N \N \N 65 \N \N \N +14327 2025-11-24 12:23:00.620386+00 2025-11-24 12:23:00.620395+00 f t Invitado Amar invitado-1763986980263@example.com 55555555 \N \N \N \N \N 25 \N \N \N +14508 2025-11-25 17:25:47.113343+00 2025-11-25 17:25:47.113704+00 f t Invitado Amar invitado-1764091546904@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9738 2025-10-01 03:15:45.54411+00 2025-10-01 03:15:45.544119+00 f t Invitado Amar invitado-1759288544978@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7656 +9910 2025-10-03 01:43:09.553842+00 2025-10-03 01:43:09.553857+00 f t Invitado Amar invitado-1759455791027@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10089 2025-10-06 08:42:24.646346+00 2025-10-06 08:42:24.646355+00 f t Invitado Amar invitado-1759740143587@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10270 2025-10-08 14:24:47.770586+00 2025-10-08 14:24:47.770596+00 f t Invitado Amar invitado-1759933486876@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10452 2025-10-10 21:44:16.131895+00 2025-10-10 21:44:16.131907+00 f t Invitado Amar invitado-1760132654806@example.com 55555555 \N \N \N \N \N 69 \N \N \N +10634 2025-10-13 15:57:49.92458+00 2025-10-13 15:57:49.924589+00 f t Invitado Amar invitado-1760371069548@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10816 2025-10-15 22:53:50.968247+00 2025-10-15 22:53:50.968255+00 f t Invitado Amar invitado-1760568830771@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10995 2025-10-17 23:58:25.057373+00 2025-10-17 23:58:25.058299+00 f t Invitado Amar invitado-1760745502659@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11176 2025-10-20 19:09:26.065989+00 2025-10-20 19:09:26.066+00 f t Invitado Amar invitado-1760987365824@example.com 55555555 \N \N \N \N \N 35 \N \N \N +11356 2025-10-22 22:20:45.328399+00 2025-10-22 22:20:45.328409+00 f t Invitado Amar invitado-1761171645358@example.com 55555555 \N \N \N \N \N \N \N \N \N +11537 2025-10-25 22:59:37.680154+00 2025-10-25 22:59:37.680164+00 f t Invitado Amar invitado-1761433176453@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11719 2025-10-28 14:39:00.812104+00 2025-10-28 14:39:00.812114+00 f t Invitado Amar invitado-1761662340393@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11902 2025-10-30 00:15:09.057916+00 2025-10-30 00:15:09.057925+00 f t Invitado Amar invitado-1761783307927@example.com 55555555 \N \N \N \N \N 20 \N \N \N +12086 2025-10-31 20:23:50.404079+00 2025-10-31 20:23:50.404104+00 f t Invitado Amar invitado-1761942228285@example.com 55555555 \N \N \N \N \N 60 \N \N \N +12267 2025-11-03 15:50:36.408971+00 2025-11-03 15:50:36.408979+00 f t Invitado Amar invitado-1762185034755@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12450 2025-11-05 19:36:52.080656+00 2025-11-05 19:36:52.080667+00 f t Invitado Amar invitado-1762371411388@example.com 55555555 \N \N \N \N \N 28 \N \N \N +12632 2025-11-07 18:59:20.066857+00 2025-11-07 18:59:20.066868+00 f t Invitado Amar invitado-1762541959498@example.com 55555555 \N \N \N \N \N 79 \N \N \N +12812 2025-11-09 20:24:31.306246+00 2025-11-09 20:24:31.306259+00 f t Invitado Amar invitado-1762719870059@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12995 2025-11-11 19:51:38.490034+00 2025-11-11 19:51:38.490047+00 f t Invitado Amar invitado-1762890697880@example.com 55555555 \N \N \N \N \N 11 \N \N \N +13166 2025-11-13 13:56:41.695939+00 2025-11-13 13:56:41.695947+00 f t Invitado Amar invitado-1763042201894@example.com 55555555 \N \N \N \N \N 32 \N \N \N +13397 2025-11-15 16:45:49.592873+00 2025-11-15 16:45:49.592886+00 f t Invitado Amar invitado-1763225148474@example.com 55555555 \N \N \N \N \N 13 \N \N \N +13599 2025-11-18 06:04:59.232598+00 2025-11-18 06:04:59.232607+00 f t Yamila Abratte abrattey@gmail.com +541171942411 \N Cabildo 1818 1 a \N \N -34.6238628 -58.5504216 91 2177 \N \N +13786 2025-11-19 14:58:29.493555+00 2025-11-19 14:58:29.493563+00 f t Invitado Amar invitado-1763564309306@example.com 55555555 \N \N \N \N \N 43 \N \N \N +13967 2025-11-20 22:40:23.072741+00 2025-11-20 22:40:23.07275+00 f t Invitado Amar invitado-1763678422879@example.com 55555555 \N \N \N \N \N 16 \N \N \N +14146 2025-11-22 13:23:39.568142+00 2025-11-22 13:23:39.568151+00 f t Invitado Amar invitado-1763817819118@example.com 55555555 \N \N \N \N \N 12 \N \N \N +14328 2025-11-24 12:28:18.637163+00 2025-11-24 12:28:18.637173+00 f t Invitado Amar invitado-1763987297306@example.com 55555555 \N \N \N \N \N 15 \N \N \N +14509 2025-11-25 17:35:47.686721+00 2025-11-25 17:35:47.687004+00 f t Invitado Amar invitado-1764092145361@example.com 55555555 \N \N \N \N \N 78 \N \N \N +9739 2025-10-01 03:18:34.507108+00 2025-10-01 03:18:34.50712+00 f t Invitado Amar invitado-1759288712848@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-7657 +13167 2025-11-13 14:00:18.657061+00 2025-11-13 14:00:18.657075+00 f t Invitado Amar invitado-1763042417949@example.com 55555555 \N \N \N \N \N 9 \N \N \N +9911 2025-10-03 01:43:57.646752+00 2025-10-03 01:43:57.646761+00 f t Camila Jacobsen jacobsencamila@gmail.com +541169665289 \N Emilio Mitre 575 Piso 8 depto B \N \N -34.6289718 -58.4430997 14 \N \N \N +10090 2025-10-06 09:59:17.946744+00 2025-10-06 09:59:17.946753+00 f t Invitado Amar invitado-1759744758047@example.com 55555555 \N \N \N \N \N 43 \N \N \N +13398 2025-11-15 17:11:27.891161+00 2025-11-15 17:11:27.89117+00 f t Invitado Amar invitado-1763226686669@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10271 2025-10-08 14:43:58.211811+00 2025-10-08 14:43:58.21182+00 f t Karina Alvarado akaryna335@gmail.com +5491161249864 \N Posadas 1120 17B \N \N -34.5880441 -58.3862277 9 \N \N \N +10453 2025-10-10 21:46:22.826035+00 2025-10-10 21:46:22.826045+00 f t Invitado Amar invitado-1760132781769@example.com 55555555 \N \N \N \N \N 11 \N \N \N +10635 2025-10-13 16:09:27.675617+00 2025-10-13 16:09:27.675626+00 f t Invitado Amar invitado-1760371767721@example.com 55555555 \N \N \N \N \N 34 \N \N \N +10817 2025-10-15 22:59:28.630175+00 2025-10-15 22:59:28.630187+00 f t Invitado Amar invitado-1760569167199@example.com 55555555 \N \N \N \N \N 87 \N \N \N +10996 2025-10-18 00:05:32.669184+00 2025-10-18 00:05:32.669195+00 f t Invitado Amar invitado-1760745932060@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11177 2025-10-20 19:11:20.211623+00 2025-10-20 19:11:20.211632+00 f t Invitado Amar invitado-1760987481176@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11357 2025-10-22 22:21:31.430335+00 2025-10-22 22:21:31.430344+00 f t Invitado Amar invitado-1761171690559@example.com 55555555 \N \N \N \N \N \N \N \N \N +11538 2025-10-25 23:07:45.149825+00 2025-10-25 23:07:45.149833+00 f t Invitado Amar invitado-1761433663057@example.com 55555555 \N \N \N \N \N 13 \N \N \N +13600 2025-11-18 06:36:35.1762+00 2025-11-18 06:36:35.176212+00 f t Invitado Amar invitado-1763447794749@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13787 2025-11-19 14:59:11.492374+00 2025-11-19 14:59:11.492382+00 f t Invitado Amar invitado-1763564415584@example.com 55555555 \N \N \N \N \N 44 \N \N \N +13968 2025-11-20 22:42:09.096569+00 2025-11-20 22:42:09.096578+00 f t Invitado Amar invitado-1763678529185@example.com 55555555 \N \N \N \N \N 10 \N \N \N +11903 2025-10-30 00:15:12.83671+00 2025-10-30 00:15:12.836719+00 f t Invitado Amar invitado-1761783312071@example.com 55555555 \N \N \N \N \N 84 \N \N \N +12268 2025-11-03 16:02:27.136352+00 2025-11-03 16:02:27.136362+00 f t Invitado Amar invitado-1762185726216@example.com 55555555 \N \N \N \N \N 74 \N \N \N +12087 2025-10-31 20:32:17.255008+00 2025-10-31 20:32:17.255017+00 f t daiana yfran daianarojasyfran@gmail.com 91171378727 \N Del valle iberlucea 3876 \N \N FEMALE \N -34.6598891 -58.3685802 70 2019 \N \N +14147 2025-11-22 13:33:37.841882+00 2025-11-22 13:33:37.841891+00 f t Laura Soler soler_laura@yahoo.com.ar +5491151815569 \N Isabel La Catolica 19 6b \N FEMALE \N -31.869606 -59.0353006 32 2234 \N \N +12451 2025-11-05 19:49:50.865672+00 2025-11-05 19:49:50.865682+00 f t Maria Pastore drapastore@gmail.com 5491157557697 \N 11 de Septiembre 1650 4 A \N FEMALE \N -33.894121 -60.585757 3 2035 \N \N +12633 2025-11-07 19:00:27.023767+00 2025-11-07 19:00:27.02378+00 f t Invitado Amar invitado-1762542026506@example.com 55555555 \N \N \N \N \N 156 \N \N \N +11720 2025-10-28 14:55:56.727163+00 2025-10-28 14:55:56.727172+00 f t gabriela marina valle gmvalle71@gmail.com 91158105755 \N Honorio Pueyrredón 681 \N \N FEMALE \N -34.6120568 -58.4418662 14 1920 \N \N +12813 2025-11-09 20:32:15.675992+00 2025-11-09 20:32:15.676001+00 f t Invitado Amar invitado-1762720334974@example.com 55555555 \N \N \N \N \N 46 \N \N \N +12996 2025-11-11 20:04:49.897988+00 2025-11-11 20:04:49.898002+00 f t Invitado Amar invitado-1762891488567@example.com 55555555 \N \N \N \N \N 148 \N \N \N +14329 2025-11-24 12:28:45.244056+00 2025-11-24 12:28:45.244066+00 f t Invitado Amar invitado-1763987324612@example.com 55555555 \N \N \N \N \N 59 \N \N \N +14510 2025-11-25 17:42:09.053509+00 2025-11-25 17:42:09.054229+00 f t Invitado Amar invitado-1764092528637@example.com 55555555 \N \N \N \N \N 70 \N \N \N +9740 2025-10-01 03:22:20.710017+00 2025-10-01 03:22:20.71003+00 f t Invitado Amar invitado-1759288940410@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7658 +9912 2025-10-03 01:47:27.644152+00 2025-10-03 01:47:27.644162+00 f t Invitado Amar invitado-1759456047095@example.com 55555555 \N \N \N \N \N 35 \N \N \N +10091 2025-10-06 10:03:30.742151+00 2025-10-06 10:03:30.742162+00 f t Invitado Amar invitado-1759745010015@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10272 2025-10-08 14:47:44.493938+00 2025-10-08 14:47:44.493947+00 f t Invitado Amar invitado-1759934863921@example.com 55555555 \N \N \N \N \N 45 \N \N \N +10454 2025-10-10 22:02:05.07734+00 2025-10-10 22:02:05.077351+00 f t Invitado Amar invitado-1760133723851@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10636 2025-10-13 16:43:49.83034+00 2025-10-13 16:43:49.830349+00 f t Candela Gentile genccandebis@gmail.com +541122957763 \N Gral paz 10634 Piso 3 depto 305 \N FEMALE \N -33.8910051 -60.5976197 52 \N \N \N +10818 2025-10-15 22:59:33.412178+00 2025-10-15 22:59:33.412188+00 f t Invitado Amar invitado-1760569172767@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10997 2025-10-18 00:06:26.257368+00 2025-10-18 00:06:26.257382+00 f t Invitado Amar invitado-1760745985347@example.com 55555555 \N \N \N \N \N 85 \N \N \N +11358 2025-10-22 22:25:20.050587+00 2025-10-22 22:25:20.0506+00 f t Invitado Amar invitado-1761171919780@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11178 2025-10-20 19:15:37.10088+00 2025-10-20 19:15:37.100888+00 f t Flávia Janela artavejanelaflaviacarolina@gmail.com +5511993392670 \N Jose bonifacio 75 \N \N FEMALE \N -34.6257926 -58.4280693 14 \N \N \N +13168 2025-11-13 14:26:12.196836+00 2025-11-13 14:26:12.196845+00 f t Irene Benitez irerodriari@gmail.com 91127215958 \N Ucrania 4413 \N \N FEMALE \N -34.6976196 -58.4376846 70 2126 \N \N +11539 2025-10-25 23:09:51.251623+00 2025-10-25 23:09:51.251636+00 f t Eleonora Wirz eleonora.wirz@outlook.com +542804414605 \N Avenida Corrientes 753 7 C \N \N -34.603307 -58.3774616 13 \N \N \N +11721 2025-10-28 14:56:55.18755+00 2025-10-28 14:56:55.187559+00 f t Invitado Amar invitado-1761663414349@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11904 2025-10-30 00:22:57.54194+00 2025-10-30 00:22:57.541949+00 f t Invitado Amar invitado-1761783775990@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12088 2025-10-31 21:25:55.731535+00 2025-10-31 21:25:55.731544+00 f t Invitado Amar invitado-1761945954443@example.com 55555555 \N \N \N \N \N 46 \N \N \N +12269 2025-11-03 16:06:23.20861+00 2025-11-03 16:06:23.20862+00 f t Invitado Amar invitado-1762185982231@example.com 55555555 \N \N \N \N \N 74 \N \N \N +12452 2025-11-05 20:00:24.551756+00 2025-11-05 20:00:24.551771+00 f t Invitado Amar invitado-1762372917041@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12634 2025-11-07 19:00:50.730845+00 2025-11-07 19:00:50.730854+00 f t Invitado Amar invitado-1762542049675@example.com 55555555 \N \N \N \N \N 156 \N \N \N +12814 2025-11-09 22:10:59.106769+00 2025-11-09 22:10:59.106779+00 f t Invitado Amar invitado-1762726256443@example.com 55555555 \N \N \N \N \N 46 \N \N \N +12997 2025-11-11 20:05:53.744601+00 2025-11-11 20:05:53.744609+00 f t Invitado Amar invitado-1762891551581@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13399 2025-11-15 17:24:39.189833+00 2025-11-15 17:24:39.189841+00 f t claudia laborda labordis4@gmail.com 91141461519 \N Mozart 2316 piso 4 dpto 2 edificio 10 columna \N FEMALE \N \N \N 112 2157 \N \N +13601 2025-11-18 07:12:30.419445+00 2025-11-18 07:12:30.419454+00 f t Invitado Amar invitado-1763449949485@example.com 55555555 \N \N \N \N \N 80 \N \N \N +13788 2025-11-19 15:14:12.388987+00 2025-11-19 15:14:12.388999+00 f t Invitado Amar invitado-1763565251892@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13969 2025-11-20 22:48:22.81974+00 2025-11-20 22:48:22.819749+00 f t Invitado Amar invitado-1763678900501@example.com 55555555 \N \N \N \N \N 46 \N \N \N +14148 2025-11-22 13:36:28.715042+00 2025-11-22 13:36:28.715051+00 f t Invitado Amar invitado-1763818586791@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14330 2025-11-24 12:39:12.637607+00 2025-11-24 12:39:12.637616+00 f t Julieta Plos juliettplos@gmail.com +541127111781 \N Piedras 1005 8b \N \N -34.6168667 -58.3773998 15 2248 \N \N +14511 2025-11-25 17:50:08.208447+00 2025-11-25 17:50:08.20884+00 f t Invitado Amar invitado-1764093007346@example.com 55555555 \N \N \N \N \N 14 \N \N \N +9741 2025-10-01 04:29:15.602425+00 2025-10-01 04:29:15.602438+00 f t Invitado Amar invitado-1759292955280@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7659 +9913 2025-10-03 01:48:36.140357+00 2025-10-03 01:48:36.140366+00 f t Invitado Amar invitado-1759456115255@example.com 55555555 \N \N \N \N \N 43 \N \N \N +10092 2025-10-06 10:22:08.468522+00 2025-10-06 10:22:08.468535+00 f t Invitado Amar invitado-1759746128124@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10273 2025-10-08 15:24:27.852492+00 2025-10-08 15:24:27.852501+00 f t Invitado Amar invitado-1759937066855@example.com 55555555 \N \N \N \N \N 39 \N \N \N +10455 2025-10-10 22:19:34.941643+00 2025-10-10 22:19:34.941652+00 f t Invitado Amar invitado-1760134774174@example.com 55555555 \N \N \N \N \N 155 \N \N \N +10637 2025-10-13 16:45:50.615914+00 2025-10-13 16:45:50.615923+00 f t Milagros Dandrea milagrosolange@live.com +541168017076 \N Samuel Miguel spiro 191 \N \N -34.8049792 -58.4016024 84 \N \N \N +10819 2025-10-15 23:05:12.009061+00 2025-10-15 23:05:12.009068+00 f t Invitado Amar invitado-1760569496239@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10998 2025-10-18 00:08:24.14529+00 2025-10-18 00:08:24.145761+00 f t Invitado Amar invitado-1760746103759@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11179 2025-10-20 19:39:02.803677+00 2025-10-20 19:39:02.803692+00 f t Ramiro Zalazar ramazala1999@gmail.com 5493875362048 \N \N 1440 5°A \N MALE 1999-10-04 44.933143 7.540121 9 \N \N \N +13169 2025-11-13 14:31:08.201204+00 2025-11-13 14:31:08.201215+00 t t Invitado Amar invitado-1763044267963@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11359 2025-10-22 22:44:14.364045+00 2025-10-22 22:44:14.364057+00 f t Damián Fantone damianfantone@gmail.com +541131698018 \N 18 de diciembre 1851 7 B \N \N -34.5796465 -58.5386553 46 \N \N \N +11540 2025-10-25 23:25:29.118935+00 2025-10-25 23:25:29.118944+00 f t Invitado Amar invitado-1761434727357@example.com 55555555 \N \N \N \N \N 13 \N \N \N +13400 2025-11-15 17:52:49.41564+00 2025-11-15 17:52:49.415686+00 f t Invitado Amar invitado-1763229168955@example.com 55555555 \N \N \N \N \N 17 \N \N \N +13602 2025-11-18 08:01:14.871942+00 2025-11-18 08:01:14.87195+00 f t Invitado Amar invitado-1763452873772@example.com 55555555 \N \N \N \N \N 45 \N \N \N +11722 2025-10-28 15:18:43.923124+00 2025-10-28 15:18:43.923161+00 f t marta espinola mvalen75@gmail.com 91161526620 \N Avenida Coronel Roca 3535 piso 14 A \N FEMALE 1975-04-16 -34.6678782 -58.4423662 48 1922 \N \N +11905 2025-10-30 00:23:35.509178+00 2025-10-30 00:23:35.509187+00 f t Invitado Amar invitado-1761783815124@example.com 55555555 \N \N \N \N \N 16 \N \N \N +13789 2025-11-19 15:22:47.952803+00 2025-11-19 15:22:47.952812+00 f t Invitado Amar invitado-1763565766998@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13970 2025-11-20 22:53:42.673943+00 2025-11-20 22:53:42.673952+00 f t Invitado Amar invitado-1763679221040@example.com 55555555 \N \N \N \N \N 155 \N \N \N +12089 2025-10-31 21:44:07.883963+00 2025-10-31 21:44:07.883971+00 f t Carla Cabrera carla.cabrera96@hotmail.com +541150625134 \N Agüero 285 285 4 \N \N -34.6035284 -58.4115931 18 1959 \N \N +12270 2025-11-03 16:12:31.304225+00 2025-11-03 16:12:31.304237+00 f t Invitado Amar invitado-1762186350694@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14149 2025-11-22 13:38:35.195231+00 2025-11-22 13:38:35.195271+00 f t Invitado Amar invitado-1763818713612@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12453 2025-11-05 20:07:19.576773+00 2025-11-05 20:07:19.576782+00 f t Lucia Gilardoni lucia.gilardoni@hotmail.com.ar 5491135433453 \N Santa fe 6629 casa, aplaudir o llamar \N FEMALE \N \N \N 83 2036 \N \N +12635 2025-11-07 19:01:12.401047+00 2025-11-07 19:01:12.401059+00 f t Invitado Amar invitado-1762542072230@example.com 55555555 \N \N \N \N \N 156 \N \N \N +12815 2025-11-09 22:19:40.735509+00 2025-11-09 22:19:40.73552+00 f t Invitado Amar invitado-1762726779963@example.com 55555555 \N \N \N \N \N 161 \N \N \N +12998 2025-11-11 20:29:51.834615+00 2025-11-11 20:29:51.834623+00 f t Invitado Amar invitado-1762892990964@example.com 55555555 \N \N \N \N \N 18 \N \N \N +14331 2025-11-24 13:00:25.431966+00 2025-11-24 13:00:25.431976+00 f t Invitado Amar invitado-1763989223243@example.com 55555555 \N \N \N \N \N 111 \N \N \N +14512 2025-11-25 17:52:16.123335+00 2025-11-25 17:52:16.123678+00 f t Invitado Amar invitado-1764093135547@example.com 55555555 \N \N \N \N \N 12 \N \N \N +9742 2025-10-01 05:31:45.973613+00 2025-10-01 05:31:45.973627+00 f t Invitado Amar invitado-1759296705432@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7660 +9914 2025-10-03 01:49:18.406964+00 2025-10-03 01:49:18.406972+00 f t Invitado Amar invitado-1759456157321@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10093 2025-10-06 10:46:46.509575+00 2025-10-06 10:46:46.509583+00 f t Invitado Amar invitado-1759747605426@example.com 55555555 \N \N \N \N \N 155 \N \N \N +10274 2025-10-08 15:28:14.464143+00 2025-10-08 15:28:14.464155+00 f t Invitado Amar invitado-1759937293967@example.com 55555555 \N \N \N \N \N 84 \N \N \N +13170 2025-11-13 14:33:28.929423+00 2025-11-13 14:33:28.929435+00 f t Invitado Amar invitado-1763044408953@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10456 2025-10-10 22:19:44.799732+00 2025-10-10 22:19:44.799741+00 f t Paula Pata p_paulae@hotmail.com +541131421047 \N B. Encalada 3941 \N \N -34.5770071 -58.4888644 29 \N \N \N +10638 2025-10-13 17:03:04.666871+00 2025-10-13 17:03:04.666881+00 f t Invitado Amar invitado-1760374984209@example.com 55555555 \N \N \N \N \N 31 \N \N \N +10820 2025-10-15 23:09:55.757617+00 2025-10-15 23:09:55.757626+00 f t Invitado Amar invitado-1760569795217@example.com 55555555 \N \N \N \N \N 147 \N \N \N +10999 2025-10-18 00:12:50.93184+00 2025-10-18 00:12:50.93188+00 f t Invitado Amar invitado-1760746369965@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13401 2025-11-15 18:00:02.78921+00 2025-11-15 18:00:02.789224+00 f t Invitado Amar invitado-1763229602098@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11360 2025-10-22 22:47:36.366802+00 2025-10-22 22:47:36.366813+00 f t Invitado Amar invitado-1761173255388@example.com 55555555 \N \N \N \N \N 46 \N \N \N +13603 2025-11-18 09:43:39.012914+00 2025-11-18 09:43:39.012923+00 f t Invitado Amar invitado-1763459018583@example.com 55555555 \N \N \N \N \N 20 \N \N \N +11541 2025-10-25 23:28:46.082319+00 2025-10-25 23:28:46.082331+00 f t silvina martinez silvinam11@gmail.com +541155622079 \N Cordoba 4340 5 501 \N \N -31.4384175 -64.1155554 23 \N \N \N +11723 2025-10-28 15:21:44.287413+00 2025-10-28 15:21:44.287422+00 f t Invitado Amar invitado-1761664902972@example.com 55555555 \N \N \N \N \N 46 \N \N \N +11906 2025-10-30 00:23:55.639257+00 2025-10-30 00:23:55.63927+00 f t Invitado Amar invitado-1761783833673@example.com 55555555 \N \N \N \N \N 22 \N \N \N +12090 2025-10-31 21:44:42.523738+00 2025-10-31 21:44:42.52375+00 f t Invitado Amar invitado-1761947082106@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13790 2025-11-19 15:28:22.589123+00 2025-11-19 15:28:22.589132+00 f t Invitado Amar invitado-1763566101926@example.com 55555555 \N \N \N \N \N 75 \N \N \N +12271 2025-11-03 16:29:14.959412+00 2025-11-03 16:29:14.95942+00 f t Johanna Alegre jalegre.work94@gmail.com +541124004055 \N Viamonte 658 Piso 1, depto 10 \N \N -34.5999617 -58.3761711 13 1987 \N \N +12454 2025-11-05 20:10:52.494981+00 2025-11-05 20:10:52.49499+00 f t Invitado Amar invitado-1762373451684@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12999 2025-11-11 20:31:54.468562+00 2025-11-11 20:31:54.468571+00 f t Mariana Diaz mariiana1992.med@gmail.com +541162889310 \N Saavedra 1247 2b \N FEMALE \N -34.6243398 -58.4011797 12 2107 \N \N +12636 2025-11-07 19:02:29.241731+00 2025-11-07 19:02:29.24174+00 f t Invitado Amar invitado-1762542149079@example.com 55555555 \N \N \N \N \N 156 \N \N \N +13971 2025-11-20 22:55:36.197351+00 2025-11-20 22:55:36.197364+00 f t Invitado Amar invitado-1763679335698@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11180 2025-10-20 19:42:26.092908+00 2025-10-20 19:42:26.092919+00 f t Nadia Lecanda lecandanadia@gmail.com 5491156598292 \N Varela 155 dto c \N FEMALE \N -34.6315483 -58.464762 4 1303 \N \N +12816 2025-11-09 22:23:12.027301+00 2025-11-09 22:23:12.027311+00 f t Invitado Amar invitado-1762726991600@example.com 55555555 \N \N \N \N \N 161 \N \N \N +14150 2025-11-22 13:46:48.885567+00 2025-11-22 13:46:48.885575+00 f t Invitado Amar invitado-1763819208102@example.com 55555555 \N \N \N \N \N 77 \N \N \N +14332 2025-11-24 13:12:41.779677+00 2025-11-24 13:12:41.779685+00 f t Leandro Romero leandrojromeeo1982@gmail.com +541167055014 \N Olazabal 2117 Porteria \N \N -34.5585339 -58.4557309 3 2249 \N \N +14513 2025-11-25 17:58:41.759724+00 2025-11-25 17:58:41.759935+00 f t Invitado Amar invitado-1764093521252@example.com 55555555 \N \N \N \N \N 65 \N \N \N +9743 2025-10-01 09:00:08.81797+00 2025-10-01 09:00:08.817984+00 f t Invitado Amar invitado-1759309207860@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7661 +13171 2025-11-13 14:35:10.211803+00 2025-11-13 14:35:10.211815+00 f t Invitado Amar invitado-1763044509764@example.com 55555555 \N \N \N \N \N 9 \N \N \N +9915 2025-10-03 01:50:05.00504+00 2025-10-03 01:50:05.005054+00 f t Alejandra Molina alejandramolina8@gmail.com +541131999884 \N Avenida Chivilcoy 3289 2 \N \N -34.6038041 -58.5080491 21 \N \N \N +10094 2025-10-06 10:56:27.12225+00 2025-10-06 10:56:27.122259+00 f t Invitado Amar invitado-1759748186605@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10275 2025-10-08 15:52:20.217059+00 2025-10-08 15:52:20.217069+00 f t Hernan pita hernanpita@yahoo.com.ar 5491131835657 \N Nother 582 casa \N MALE \N -34.8038315 -58.3960025 84 \N \N \N +10457 2025-10-10 22:32:14.237501+00 2025-10-10 22:32:14.237511+00 f t Invitado Amar invitado-1760135532194@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10639 2025-10-13 17:05:50.130621+00 2025-10-13 17:05:50.13063+00 f t Invitado Amar invitado-1760375149489@example.com 55555555 \N \N \N \N \N 41 \N \N \N +10821 2025-10-15 23:29:05.681309+00 2025-10-15 23:29:05.681318+00 f t Invitado Amar invitado-1760570945456@example.com 55555555 \N \N \N \N \N 48 \N \N \N +11000 2025-10-18 00:14:47.332225+00 2025-10-18 00:14:47.332235+00 f t Invitado Amar invitado-1760746486610@example.com 55555555 \N \N \N \N \N 28 \N \N \N +11181 2025-10-20 19:51:32.512895+00 2025-10-20 19:51:32.512904+00 f t Invitado Amar invitado-1760989888895@example.com 55555555 \N \N \N \N \N 73 \N \N \N +11361 2025-10-22 22:58:28.988393+00 2025-10-22 22:58:28.988402+00 f t Carla Saleh saleh.carla@gmail.com +541126427208 \N Boyacá 1545 Pb 4 \N FEMALE \N -34.6043233 -58.4725486 34 \N \N \N +11542 2025-10-25 23:31:04.558019+00 2025-10-25 23:31:04.558028+00 f t Invitado Amar invitado-1761435064374@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11724 2025-10-28 15:26:38.435572+00 2025-10-28 15:26:38.43558+00 f t Invitado Amar invitado-1761665197335@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11907 2025-10-30 00:26:54.936357+00 2025-10-30 00:26:54.936366+00 f t Julieta Mazzalomo jmazzalomo@gmail.com +5401133152950 \N Entre rios 511 General pacheco \N \N \N \N 113 \N \N \N +12091 2025-10-31 21:45:40.96326+00 2025-10-31 21:45:40.963268+00 f t Invitado Amar invitado-1761947139723@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12272 2025-11-03 16:44:22.303987+00 2025-11-03 16:44:22.303995+00 f t Invitado Amar invitado-1762188261838@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13402 2025-11-15 18:13:17.397524+00 2025-11-15 18:13:17.397533+00 f t carolina lecot lcaro5606@gmail.com 91159893180 \N juncal 2843 PB E \N FEMALE \N -34.5884617 -58.405675 9 2158 \N \N +13604 2025-11-18 09:49:25.976811+00 2025-11-18 09:49:25.976819+00 f t Invitado Amar invitado-1763459366284@example.com 55555555 \N \N \N \N \N 79 \N \N \N +12637 2025-11-07 19:17:57.709383+00 2025-11-07 19:17:57.709394+00 f t Invitado Amar invitado-1762543076733@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12817 2025-11-10 00:21:49.893857+00 2025-11-10 00:21:49.893871+00 f t Invitado Amar invitado-1762734107302@example.com 55555555 \N \N \N \N \N 65 \N \N \N +13000 2025-11-11 20:36:01.994993+00 2025-11-11 20:36:01.995005+00 f t Invitado Amar invitado-1762893361360@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12455 2025-11-05 20:14:04.911037+00 2025-11-05 20:14:04.911046+00 f t Luis Sebastian Lam Ameri luislam96@gmail.com +5491160245558 \N Ciudad de la Paz 90 PB 003 \N \N -34.5764751 -58.4345921 1 2037 \N \N +13791 2025-11-19 15:36:39.513458+00 2025-11-19 15:36:39.513467+00 f t Invitado Amar invitado-1763566599098@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13972 2025-11-20 23:06:02.185415+00 2025-11-20 23:06:02.18543+00 f t Invitado Amar invitado-1763679961115@example.com 55555555 \N \N \N \N \N 18 \N \N \N +14151 2025-11-22 13:53:56.47774+00 2025-11-22 13:53:56.47775+00 f t Invitado Amar invitado-1763819636723@example.com 55555555 \N \N \N \N \N 77 \N \N \N +14333 2025-11-24 13:20:28.96559+00 2025-11-24 13:20:28.965601+00 f t Invitado Amar invitado-1763990428775@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14514 2025-11-25 18:04:46.711107+00 2025-11-25 18:04:46.711397+00 f t Invitado Amar invitado-1764093885295@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9744 2025-10-01 09:56:35.557786+00 2025-10-01 09:56:35.557796+00 f t Invitado Amar invitado-1759312595172@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-7662 +9916 2025-10-03 02:33:45.477654+00 2025-10-03 02:33:45.477663+00 f t Invitado Amar invitado-1759458824920@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10095 2025-10-06 11:11:17.554781+00 2025-10-06 11:11:17.55479+00 f t Invitado Amar invitado-1759749310920@example.com 55555555 \N \N \N \N \N 74 \N \N \N +10276 2025-10-08 16:23:25.023382+00 2025-10-08 16:23:25.023393+00 f t Invitado Amar invitado-1759940604494@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10458 2025-10-10 23:10:27.48338+00 2025-10-10 23:10:27.483393+00 f t Invitado Amar invitado-1760137826836@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10640 2025-10-13 17:29:14.737764+00 2025-10-13 17:29:14.737776+00 f t Invitado Amar invitado-1760376554397@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10822 2025-10-15 23:31:45.544371+00 2025-10-15 23:31:45.54438+00 f t Invitado Amar invitado-1760571104296@example.com 55555555 \N \N \N \N \N 13 \N \N \N +4255 2025-07-09 21:43:44.656748+00 2025-07-09 21:43:44.656754+00 f t Anabella Ornat anabella.ornatt@gmail.com 5491132351444 \N Donado 810 6to A \N FEMALE 1991-10-11 -34.5866523 -58.470938 24 1330 \N aornat +11182 2025-10-20 20:47:48.80919+00 2025-10-20 20:47:48.809199+00 f t Invitado Amar invitado-1760993268297@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11362 2025-10-22 23:06:28.54134+00 2025-10-22 23:06:28.541349+00 f t Invitado Amar invitado-1761174388382@example.com 55555555 \N \N \N \N \N 34 \N \N \N +11543 2025-10-25 23:38:37.164937+00 2025-10-25 23:38:37.164949+00 f t Invitado Amar invitado-1761435516490@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11725 2025-10-28 15:41:19.627004+00 2025-10-28 15:41:19.627013+00 f t Invitado Amar invitado-1761666165165@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11908 2025-10-30 00:33:29.384998+00 2025-10-30 00:33:29.385006+00 f t Invitado Amar invitado-1761784408610@example.com 55555555 \N \N \N \N \N 68 \N \N \N +12092 2025-10-31 21:46:24.518252+00 2025-10-31 21:46:24.518264+00 f t Invitado Amar invitado-1761947183183@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12273 2025-11-03 16:44:45.000481+00 2025-11-03 16:44:45.000536+00 f t Invitado Amar invitado-1762188284379@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12456 2025-11-05 20:16:52.796249+00 2025-11-05 20:16:52.796258+00 f t Invitado Amar invitado-1762373810773@example.com 55555555 \N \N \N \N \N 58 \N \N \N +12638 2025-11-07 19:22:05.224043+00 2025-11-07 19:22:05.224055+00 f t Invitado Amar invitado-1762543324448@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12818 2025-11-10 00:46:01.921429+00 2025-11-10 00:46:01.921441+00 f t Invitado Amar invitado-1762735561640@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13001 2025-11-11 20:36:35.167312+00 2025-11-11 20:36:35.167327+00 f t Invitado Amar invitado-1762893394554@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13172 2025-11-13 14:36:41.351661+00 2025-11-13 14:36:41.351673+00 f t Invitado Amar invitado-1763044600955@example.com 55555555 \N \N \N \N \N 35 \N \N \N +13403 2025-11-15 18:32:16.49784+00 2025-11-15 18:32:16.497852+00 f t Invitado Amar invitado-1763231536068@example.com 55555555 \N \N \N \N \N 84 \N \N \N +13605 2025-11-18 09:51:02.581051+00 2025-11-18 09:51:02.581061+00 f t Invitado Amar invitado-1763459463223@example.com 55555555 \N \N \N \N \N 79 \N \N \N +13792 2025-11-19 15:44:47.279727+00 2025-11-19 15:44:47.279735+00 f t Invitado Amar invitado-1763567086517@example.com 55555555 \N \N \N \N \N 21 \N \N \N +13973 2025-11-20 23:14:31.585162+00 2025-11-20 23:14:31.585175+00 f t María Eugenia Echeverria atomizada@yahoo.com.ar +541161648276 \N Gral Artigas 1886 3 16 \N \N -30.2419682 -57.6589581 63 2213 \N \N +14152 2025-11-22 13:56:27.244681+00 2025-11-22 13:56:27.24469+00 f t Invitado Amar invitado-1763819785875@example.com 55555555 \N \N \N \N \N 147 \N \N \N +14334 2025-11-24 13:32:02.557855+00 2025-11-24 13:32:02.557869+00 f t Invitado Amar invitado-1763991122572@example.com 55555555 \N \N \N \N \N 11 \N \N \N +14515 2025-11-25 18:07:01.550716+00 2025-11-25 18:07:01.551641+00 f t Invitado Amar invitado-1764094020972@example.com 55555555 \N \N \N \N \N 147 \N \N \N +13173 2025-11-13 14:51:32.603859+00 2025-11-13 14:51:32.603871+00 f t Invitado Amar invitado-1763045492119@example.com 55555555 \N \N \N \N \N 70 \N \N \N +9745 2025-10-01 10:43:16.547801+00 2025-10-01 10:43:16.547813+00 f t Verónica Bolañez veronicavaleriabo@gmail.com +541141913064 \N santiago del estero 1478 7 \N \N -34.6256807 -58.3842937 112 \N \N iamar-7663 +9917 2025-10-03 02:44:43.384299+00 2025-10-03 02:44:43.384308+00 f t Invitado Amar invitado-1759459482960@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10096 2025-10-06 11:16:02.286372+00 2025-10-06 11:16:02.28638+00 f t Invitado Amar invitado-1759749361630@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10277 2025-10-08 16:27:04.780665+00 2025-10-08 16:27:04.780673+00 f t Invitado Amar invitado-1759940824546@example.com 55555555 \N \N \N \N \N 90 \N \N \N +10459 2025-10-10 23:23:31.517256+00 2025-10-10 23:23:31.517263+00 f t Ramon Jorge Morales ramonjorgemorales1956@gmail.com 5491125598928 \N Darwin 568 Villa Centenario, Banfield (pasillo, rejas negras, NO funciona el timbre) \N FEMALE 1956-09-18 -34.721838 -58.4234763 71 \N \N \N +10641 2025-10-13 17:45:29.346338+00 2025-10-13 17:45:29.34635+00 f t Invitado Amar invitado-1760377527196@example.com 55555555 \N \N \N \N \N 82 \N \N \N +10823 2025-10-15 23:38:22.703642+00 2025-10-15 23:38:22.703652+00 f t Invitado Amar invitado-1760571498870@example.com 55555555 \N \N \N \N \N 15 \N \N \N +11001 2025-10-18 00:23:49.49343+00 2025-10-18 00:23:49.493441+00 f t Invitado Amar invitado-1760747028899@example.com 55555555 \N \N \N \N \N 11 \N \N \N +11183 2025-10-20 21:21:17.778547+00 2025-10-20 21:21:17.77856+00 f t Invitado Amar invitado-1760995275751@example.com 55555555 \N \N \N \N \N 53 \N \N \N +11363 2025-10-23 00:48:36.061863+00 2025-10-23 00:48:36.061872+00 f t Invitado Amar invitado-1761180515572@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11544 2025-10-26 00:18:46.73411+00 2025-10-26 00:18:46.734118+00 f t Invitado Amar invitado-1761437926185@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11726 2025-10-28 15:55:04.424589+00 2025-10-28 15:55:04.424604+00 f t Invitado Amar invitado-1761666903777@example.com 55555555 \N \N \N \N \N 32 \N \N \N +11909 2025-10-30 00:35:07.293163+00 2025-10-30 00:35:07.293174+00 f t Invitado Amar invitado-1761784506740@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13404 2025-11-15 18:33:59.820724+00 2025-11-15 18:33:59.820734+00 f t Invitado Amar invitado-1763231639652@example.com 55555555 \N \N \N \N \N 84 \N \N \N +13606 2025-11-18 09:53:56.584827+00 2025-11-18 09:53:56.584836+00 f t Invitado Amar invitado-1763459636482@example.com 55555555 \N \N \N \N \N 72 \N \N \N +13793 2025-11-19 15:57:41.461347+00 2025-11-19 15:57:41.461358+00 f t Invitado Amar invitado-1763567861113@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13974 2025-11-20 23:17:55.159518+00 2025-11-20 23:17:55.159527+00 f t Invitado Amar invitado-1763680674823@example.com 55555555 \N \N \N \N \N 15 \N \N \N +14153 2025-11-22 14:03:24.435481+00 2025-11-22 14:03:24.435493+00 f t Invitado Amar invitado-1763820202067@example.com 55555555 \N \N \N \N \N 22 \N \N \N +14335 2025-11-24 13:35:00.053182+00 2025-11-24 13:35:00.053193+00 f t Invitado Amar invitado-1763991299374@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12093 2025-10-31 21:46:33.792611+00 2025-10-31 21:46:33.792619+00 f t Jose Salina josevalentinsp@gmail.com 4241756709 \N Cramer 1490 1 B \N MALE \N -34.5707346 -58.454842 38 1960 \N \N +12274 2025-11-03 16:49:17.516596+00 2025-11-03 16:49:17.516604+00 f t Invitado Amar invitado-1762188474312@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12457 2025-11-05 20:38:10.069754+00 2025-11-05 20:38:10.069763+00 f t Invitado Amar invitado-1762375096966@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12639 2025-11-07 19:26:05.536213+00 2025-11-07 19:26:05.536221+00 f t Invitado Amar invitado-1762543564323@example.com 55555555 \N \N \N \N \N 15 \N \N \N +14516 2025-11-25 18:07:58.042811+00 2025-11-25 18:07:58.043364+00 f t Invitado Amar invitado-1764094076973@example.com 55555555 \N \N \N \N \N 89 \N \N \N +12819 2025-11-10 01:21:34.520935+00 2025-11-10 01:21:34.520944+00 f t Virginia Montiel montielvirginialilian@gmail.com +541124568590 \N Cabello 3174 1 B \N \N -34.5822044 -58.4063677 1 2085 \N \N +13002 2025-11-11 20:39:02.200301+00 2025-11-11 20:39:02.200315+00 f t Invitado Amar invitado-1762893541435@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9746 2025-10-01 11:01:22.39601+00 2025-10-01 11:01:22.396021+00 f t Invitado Amar invitado-1759316481470@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7664 +9918 2025-10-03 02:45:28.101668+00 2025-10-03 02:45:28.101676+00 f t Invitado Amar invitado-1759459526872@example.com 55555555 \N \N \N \N \N 64 \N \N \N +10097 2025-10-06 11:24:48.131717+00 2025-10-06 11:24:48.131732+00 f t Invitado Amar invitado-1759749887427@example.com 55555555 \N \N \N \N \N 13 \N \N \N +10278 2025-10-08 16:30:11.999611+00 2025-10-08 16:30:11.999619+00 f t Invitado Amar invitado-1759941011966@example.com 55555555 \N \N \N \N \N 90 \N \N \N +10460 2025-10-10 23:32:01.003107+00 2025-10-10 23:32:01.003119+00 f t Tomás M. Tarducci tomas.tarducci@gmail.com 5493462655288 \N Rodríguez Peña 2067 Piso 4 \N MALE 1992-05-01 -34.5874642 -58.3853555 9 \N \N \N +10642 2025-10-13 17:54:56.23023+00 2025-10-13 17:54:56.230239+00 f t Invitado Amar invitado-1760378095251@example.com 55555555 \N \N \N \N \N 34 \N \N \N +10824 2025-10-15 23:41:09.744139+00 2025-10-15 23:41:09.744147+00 f t Invitado Amar invitado-1760571669372@example.com 55555555 \N \N \N \N \N 30 \N \N \N +11002 2025-10-18 00:24:35.532403+00 2025-10-18 00:24:35.532413+00 t t Invitado Amar invitado-1760747075216@example.com 55555555 \N \N \N \N \N 11 \N \N \N +11184 2025-10-20 21:41:11.609058+00 2025-10-20 21:41:11.609067+00 f t Invitado Amar invitado-1760996470228@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11364 2025-10-23 01:06:05.761289+00 2025-10-23 01:06:05.761302+00 f t Invitado Amar invitado-1761181566619@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11545 2025-10-26 00:28:38.289469+00 2025-10-26 00:28:38.289478+00 f t Invitado Amar invitado-1761438517605@example.com 55555555 \N \N \N \N \N 75 \N \N \N +11727 2025-10-28 16:18:50.471606+00 2025-10-28 16:18:50.471614+00 f t Invitado Amar invitado-1761668330111@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11910 2025-10-30 00:44:06.000814+00 2025-10-30 00:44:06.000828+00 f t Invitado Amar invitado-1761785045482@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12094 2025-10-31 21:49:50.87717+00 2025-10-31 21:49:50.877179+00 f t Invitado Amar invitado-1761947390596@example.com 55555555 \N \N \N \N \N 38 \N \N \N +12275 2025-11-03 16:51:59.496056+00 2025-11-03 16:51:59.496067+00 f t Invitado Amar invitado-1762188718987@example.com 55555555 \N \N \N \N \N 20 \N \N \N +12458 2025-11-05 20:39:51.492072+00 2025-11-05 20:39:51.492081+00 f t Invitado Amar invitado-1762375191167@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12640 2025-11-07 20:15:56.791419+00 2025-11-07 20:15:56.791429+00 f t Invitado Amar invitado-1762546552396@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12820 2025-11-10 01:26:32.685529+00 2025-11-10 01:26:32.685538+00 f t Invitado Amar invitado-1762737991451@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13003 2025-11-11 20:59:01.371952+00 2025-11-11 20:59:01.37196+00 f t Invitado Amar invitado-1762894740911@example.com 55555555 \N \N \N \N \N 51 \N \N \N +13174 2025-11-13 14:56:34.649766+00 2025-11-13 14:56:34.649774+00 f t Invitado Amar invitado-1763045793380@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13405 2025-11-15 18:34:45.039069+00 2025-11-15 18:34:45.039077+00 f t Invitado Amar invitado-1763231684847@example.com 55555555 \N \N \N \N \N 84 \N \N \N +13607 2025-11-18 09:57:11.104681+00 2025-11-18 09:57:11.104693+00 f t Invitado Amar invitado-1763459829675@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13794 2025-11-19 16:18:39.936132+00 2025-11-19 16:18:39.936141+00 f t Invitado Amar invitado-1763569118858@example.com 55555555 \N \N \N \N \N 19 \N \N \N +13975 2025-11-20 23:39:19.051103+00 2025-11-20 23:39:19.051115+00 f t Invitado Amar invitado-1763681956916@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14154 2025-11-22 14:06:36.354016+00 2025-11-22 14:06:36.354025+00 f t Invitado Amar invitado-1763820395910@example.com 55555555 \N \N \N \N \N 22 \N \N \N +14336 2025-11-24 13:39:52.217249+00 2025-11-24 13:39:52.217258+00 f t Carlos Ernesto Deniri carlosdeniri@gmail.com 5491134814032 \N Fray Cayetano Rodriguez 325 8D \N MALE \N -34.6260609 -58.4637672 4 2250 \N \N +14517 2025-11-25 18:25:07.064563+00 2025-11-25 18:25:07.064988+00 f t Invitado Amar invitado-1764095106500@example.com 55555555 \N \N \N \N \N 29 \N \N \N +9747 2025-10-01 11:33:59.793423+00 2025-10-01 11:33:59.793433+00 f t Invitado Amar invitado-1759318439825@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7665 +13175 2025-11-13 15:54:41.403297+00 2025-11-13 15:54:41.403306+00 f t Invitado Amar invitado-1763049281069@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9919 2025-10-03 03:35:58.882463+00 2025-10-03 03:35:58.882471+00 f t Maria Laura Celano maria.celano@hospitalitaliano.org.ar +541121564081 \N Ventura Bustos 2672 - \N \N -34.6366176 -58.6431415 54 \N \N \N +10098 2025-10-06 11:29:39.598241+00 2025-10-06 11:29:39.59825+00 f t Invitado Amar invitado-1759750177814@example.com 55555555 \N \N \N \N \N 65 \N \N \N +10279 2025-10-08 17:17:09.428699+00 2025-10-08 17:17:09.428708+00 f t Invitado Amar invitado-1759943829440@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13406 2025-11-15 18:36:33.038324+00 2025-11-15 18:36:33.038335+00 f t Invitado Amar invitado-1763231792408@example.com 55555555 \N \N \N \N \N 84 \N \N \N +13608 2025-11-18 10:10:24.256142+00 2025-11-18 10:10:24.256154+00 f t Invitado Amar invitado-1763460623470@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10461 2025-10-10 23:46:06.27675+00 2025-10-10 23:46:06.276761+00 f t Tamara Sayago tamaralucianasayago@gmail.com +541169241948 \N Gabriela mistral 4301 Casa \N FEMALE \N -34.597878 -58.5190711 21 \N \N \N +10643 2025-10-13 17:58:38.514122+00 2025-10-13 17:58:38.514132+00 f t Invitado Amar invitado-1760378317888@example.com 55555555 \N \N \N \N \N 43 \N \N \N +10825 2025-10-15 23:41:53.391077+00 2025-10-15 23:41:53.391087+00 f t Invitado Amar invitado-1760571713564@example.com 55555555 \N \N \N \N \N 64 \N \N \N +633 2025-04-03 16:43:50.696419+00 2025-04-03 16:43:50.696427+00 f t Nicole Bravo Nicolebravo.1309@gmail.com +541169999111 \N Constitución 4372 Pb 2 \N 1994-09-13 -34.62940115714286 -58.42577511428571 11 774 \N wtintayabravo +11185 2025-10-20 21:45:01.590935+00 2025-10-20 21:45:01.590951+00 f t Invitado Amar invitado-1760996701194@example.com 55555555 \N \N \N \N \N 83 \N \N \N +11365 2025-10-23 01:42:33.000045+00 2025-10-23 01:42:33.000058+00 f t Invitado Amar invitado-1761183753533@example.com 55555555 \N \N \N \N \N 44 \N \N \N +11546 2025-10-26 00:48:21.491232+00 2025-10-26 00:48:21.491241+00 f t Invitado Amar invitado-1761439700146@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11728 2025-10-28 16:19:43.535194+00 2025-10-28 16:19:43.535203+00 f t Invitado Amar invitado-1761668383897@example.com 55555555 \N \N \N \N \N \N \N \N \N +13795 2025-11-19 16:21:31.134767+00 2025-11-19 16:21:31.134779+00 f t Invitado Amar invitado-1763569290429@example.com 55555555 \N \N \N \N \N 79 \N \N \N +11911 2025-10-30 00:55:39.212746+00 2025-10-30 00:55:39.212757+00 f t Yamila Lugo yummy.lucet@gmail.com +542252411134 \N Castelli 1922 O \N \N -31.4402137 -68.5212029 46 \N \N \N +12095 2025-10-31 21:51:10.671878+00 2025-10-31 21:51:10.671887+00 f t Invitado Amar invitado-1761947470085@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12276 2025-11-03 16:55:27.953593+00 2025-11-03 16:55:27.953605+00 f t Invitado Amar invitado-1762188927474@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13976 2025-11-20 23:40:13.048018+00 2025-11-20 23:40:13.048027+00 f t Maria Gabriela Mansilla mgmansill@yahoo.com.ar +5491150531809 \N Padre Nuestro 1321 entre Calle 4 y Palermo. Gral Pacheco \N FEMALE 1973-02-13 -34.4506362 -58.6521063 \N 2214 \N \N +14155 2025-11-22 14:11:39.792909+00 2025-11-22 14:11:39.792918+00 f t Invitado Amar invitado-1763820700162@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12459 2025-11-05 21:05:38.992241+00 2025-11-05 21:05:38.99225+00 f t Marcela Lepera calendarioplanetario@gmail.com 5491163732688 \N Ciudad de la Paz 235 4to A \N FEMALE \N -34.5748498 -58.4406391 1 2039 \N \N +12641 2025-11-07 20:53:01.977896+00 2025-11-07 20:53:01.977909+00 f t Invitado Amar invitado-1762548780513@example.com 55555555 \N \N \N \N \N 61 \N \N \N +12821 2025-11-10 01:38:26.561685+00 2025-11-10 01:38:26.561693+00 f t Invitado Amar invitado-1762738706126@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13004 2025-11-11 21:09:36.754409+00 2025-11-11 21:09:36.754419+00 f t Invitado Amar invitado-1762895376246@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14337 2025-11-24 13:45:16.482418+00 2025-11-24 13:45:16.48243+00 f t Invitado Amar invitado-1763991915412@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14518 2025-11-25 18:30:18.122425+00 2025-11-25 18:30:18.123372+00 f t Invitado Amar invitado-1764095416729@example.com 55555555 \N \N \N \N \N 50 \N \N \N +13176 2025-11-13 16:10:38.675689+00 2025-11-13 16:10:38.675698+00 f t Invitado Amar invitado-1763050239029@example.com 55555555 \N \N \N \N \N 84 \N \N \N +13407 2025-11-15 18:36:45.849134+00 2025-11-15 18:36:45.849142+00 f t Invitado Amar invitado-1763231805400@example.com 55555555 \N \N \N \N \N 25 \N \N \N +13609 2025-11-18 10:48:55.394638+00 2025-11-18 10:48:55.394647+00 f t Invitado Amar invitado-1763462934383@example.com 55555555 \N \N \N \N \N 60 \N \N \N +13796 2025-11-19 16:22:55.982402+00 2025-11-19 16:22:55.982414+00 f t Invitado Amar invitado-1763569375377@example.com 55555555 \N \N \N \N \N 3 \N \N \N +9920 2025-10-03 03:46:10.688626+00 2025-10-03 03:46:10.688635+00 f t Invitado Amar invitado-1759463170960@example.com 55555555 \N \N \N \N \N 54 \N \N \N +10099 2025-10-06 11:40:53.549142+00 2025-10-06 11:40:53.549152+00 f t Invitado Amar invitado-1759750853170@example.com 55555555 \N \N \N \N \N 29 \N \N \N +9748 2025-10-01 12:01:09.163917+00 2025-10-01 12:01:09.163933+00 f t Jimena Rivarola jimena.rivarola82@gmail.com +541125946568 \N Vera 24 5 28 \N FEMALE \N -34.6027566 -58.4341562 26 \N \N iamar-7666 +10280 2025-10-08 17:19:15.617863+00 2025-10-08 17:19:15.617872+00 f t Invitado Amar invitado-1759943954295@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10462 2025-10-10 23:46:53.550809+00 2025-10-10 23:46:53.550818+00 f t Invitado Amar invitado-1760140013169@example.com 55555555 \N \N \N \N \N 24 \N \N \N +10644 2025-10-13 18:13:19.258288+00 2025-10-13 18:13:19.258298+00 f t Invitado Amar invitado-1760379198842@example.com 55555555 \N \N \N \N \N 8 \N \N \N +10826 2025-10-15 23:53:02.50583+00 2025-10-15 23:53:02.505839+00 f t Invitado Amar invitado-1760572381412@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11003 2025-10-18 00:35:43.725916+00 2025-10-18 00:35:43.725929+00 f t Invitado Amar invitado-1760747743184@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11186 2025-10-20 21:46:37.124845+00 2025-10-20 21:46:37.124854+00 f t Invitado Amar invitado-1760996796264@example.com 55555555 \N \N \N \N \N 34 \N \N \N +11366 2025-10-23 01:52:22.7802+00 2025-10-23 01:52:22.780209+00 f t Invitado Amar invitado-1761184342114@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11547 2025-10-26 01:29:32.107042+00 2025-10-26 01:29:32.107055+00 f t Invitado Amar invitado-1761442170904@example.com 55555555 \N \N \N \N \N 77 \N \N \N +11729 2025-10-28 16:21:12.681051+00 2025-10-28 16:21:12.68106+00 f t Invitado Amar invitado-1761668472267@example.com 55555555 \N \N \N \N \N \N \N \N \N +11912 2025-10-30 01:01:26.769954+00 2025-10-30 01:01:26.769964+00 f t Invitado Amar invitado-1761786085638@example.com 55555555 \N \N \N \N \N 46 \N \N \N +13977 2025-11-20 23:44:37.12376+00 2025-11-20 23:44:37.123769+00 f t Invitado Amar invitado-1763682275259@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14156 2025-11-22 14:15:55.90844+00 2025-11-22 14:15:55.908452+00 f t Invitado Amar invitado-1763820954670@example.com 55555555 \N \N \N \N \N 59 \N \N \N +12096 2025-10-31 22:19:57.259842+00 2025-10-31 22:19:57.259851+00 f t Florentina Gómez flgomez@itba.edu.ar +542284661079 \N Scalabrini Ortiz 3064 5 B \N \N -34.5812221 -58.4107364 1 1961 \N \N +12277 2025-11-03 17:07:56.136188+00 2025-11-03 17:07:56.136196+00 f t Invitado Amar invitado-1762189675440@example.com 55555555 \N \N \N \N \N 72 \N \N \N +12460 2025-11-05 21:30:55.472406+00 2025-11-05 21:30:55.472416+00 f t Invitado Amar invitado-1762378253014@example.com 55555555 \N \N \N \N \N 72 \N \N \N +12642 2025-11-07 21:32:27.928072+00 2025-11-07 21:32:27.928082+00 f t Invitado Amar invitado-1762551146544@example.com 55555555 \N \N \N \N \N 45 \N \N \N +12822 2025-11-10 02:32:58.573316+00 2025-11-10 02:32:58.573325+00 f t Invitado Amar invitado-1762741977677@example.com 55555555 \N \N \N \N \N 146 \N \N \N +13005 2025-11-11 21:15:20.625502+00 2025-11-11 21:15:20.625511+00 f t Invitado Amar invitado-1762895720374@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14338 2025-11-24 13:50:26.90883+00 2025-11-24 13:50:26.90884+00 f t Invitado Amar invitado-1763992225982@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14519 2025-11-25 18:39:32.268219+00 2025-11-25 18:39:32.268232+00 f t Invitado Amar invitado-1764095971424@example.com 55555555 \N \N \N \N \N 79 \N \N \N +9749 2025-10-01 12:21:35.667542+00 2025-10-01 12:21:35.667557+00 f t Invitado Amar invitado-1759321295225@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7667 +9921 2025-10-03 03:51:51.295632+00 2025-10-03 03:51:51.29564+00 f t Invitado Amar invitado-1759463510720@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10100 2025-10-06 11:41:38.353349+00 2025-10-06 11:41:38.353358+00 f t Invitado Amar invitado-1759750897909@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10281 2025-10-08 17:26:12.513621+00 2025-10-08 17:26:12.513631+00 f t Luciana Mazzitelli lucianamazzitelli8309@gmail.com 91150557588 \N Pringles 4281 aveces el timbre no funciona, hay 1 cartel q dice toque timbre y golpee \N FEMALE 1983-11-09 -34.5387683 -58.5180921 113 \N \N \N +10463 2025-10-10 23:55:17.03423+00 2025-10-10 23:55:17.03424+00 f t Invitado Amar invitado-1760140518034@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10645 2025-10-13 18:28:01.277882+00 2025-10-13 18:28:01.277894+00 f t Invitado Amar invitado-1760380080701@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10827 2025-10-15 23:59:48.203954+00 2025-10-15 23:59:48.203963+00 f t Invitado Amar invitado-1760572787319@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11004 2025-10-18 00:48:50.424552+00 2025-10-18 00:48:50.424571+00 f t Invitado Amar invitado-1760748529788@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11187 2025-10-20 21:50:08.761212+00 2025-10-20 21:50:08.761226+00 f t Invitado Amar invitado-1760997010963@example.com 55555555 \N \N \N \N \N 64 \N \N \N +11367 2025-10-23 01:54:06.485983+00 2025-10-23 01:54:06.485992+00 f t Invitado Amar invitado-1761184445903@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11548 2025-10-26 02:58:12.978464+00 2025-10-26 02:58:12.978472+00 f t Invitado Amar invitado-1761447492515@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11730 2025-10-28 16:25:58.677912+00 2025-10-28 16:25:58.677935+00 f t Invitado Amar invitado-1761668757538@example.com 55555555 \N \N \N \N \N \N \N \N \N +11913 2025-10-30 01:15:03.918777+00 2025-10-30 01:15:03.918791+00 f t Invitado Amar invitado-1761786903299@example.com 55555555 \N \N \N \N \N 64 \N \N \N +12097 2025-10-31 22:24:01.438299+00 2025-10-31 22:24:01.438308+00 f t Invitado Amar invitado-1761949435625@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12278 2025-11-03 17:23:22.931398+00 2025-11-03 17:23:22.931406+00 f t Invitado Amar invitado-1762190600812@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12461 2025-11-05 22:03:55.138546+00 2025-11-05 22:03:55.139112+00 f t Invitado Amar invitado-1762380232057@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12643 2025-11-07 21:34:40.209204+00 2025-11-07 21:34:40.209214+00 f t Invitado Amar invitado-1762551280467@example.com 55555555 \N \N \N \N \N 21 \N \N \N +12823 2025-11-10 02:56:49.27005+00 2025-11-10 02:56:49.27006+00 f t Invitado Amar invitado-1762743407405@example.com 55555555 \N \N \N \N \N 64 \N \N \N +13006 2025-11-11 21:23:05.083571+00 2025-11-11 21:23:05.083581+00 f t Invitado Amar invitado-1762896184608@example.com 55555555 \N \N \N \N \N 37 \N \N \N +13177 2025-11-13 16:13:00.35222+00 2025-11-13 16:13:00.35223+00 f t Liliana Escurra Lilianita.93@hotmail.com +541161274290 \N Santa fe 5185 3 19 \N \N \N \N 1 2127 \N \N +13408 2025-11-15 19:10:12.898103+00 2025-11-15 19:10:12.898119+00 f t Gloria Mancinelli mancinelli.gloria@gmail.com +541132561210 \N Bernal 629 Casa \N FEMALE \N -34.6139797 -58.4452071 14 2159 \N \N +13610 2025-11-18 10:50:37.281805+00 2025-11-18 10:50:37.281815+00 f t Vitória Queiroz vitoria.alroz@gmail.com +5519989622209 \N avenida hipolito yrigoyen 3737 5H \N \N -34.6143072 -58.4193202 23 2178 \N \N +13797 2025-11-19 16:25:26.410256+00 2025-11-19 16:25:26.410265+00 f t Invitado Amar invitado-1763569525886@example.com 55555555 \N \N \N \N \N 10 \N \N \N +13978 2025-11-20 23:50:40.814976+00 2025-11-20 23:50:40.814985+00 f t Invitado Amar invitado-1763682638958@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14157 2025-11-22 14:41:09.459223+00 2025-11-22 14:41:09.459233+00 f t Sofía Burgos ayala sofia.burgos1999@gmail.com +541125531959 \N La pampa 1959 5to a \N FEMALE \N -34.5623676 -58.4502102 3 2235 \N \N +14339 2025-11-24 13:52:32.833302+00 2025-11-24 13:52:32.833314+00 f t Invitado Amar invitado-1763992352445@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14520 2025-11-25 18:40:03.175238+00 2025-11-25 18:40:03.175258+00 f t Invitado Amar invitado-1764096002119@example.com 55555555 \N \N \N \N \N 53 \N \N \N +13178 2025-11-13 16:16:44.677814+00 2025-11-13 16:16:44.677825+00 f t Invitado Amar invitado-1763050603815@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13409 2025-11-15 19:14:08.129262+00 2025-11-15 19:14:08.129272+00 f t Invitado Amar invitado-1763234046326@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13611 2025-11-18 10:53:58.759618+00 2025-11-18 10:53:58.759626+00 f t Invitado Amar invitado-1763463238496@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13798 2025-11-19 16:28:30.487854+00 2025-11-19 16:28:30.487866+00 f t Invitado Amar invitado-1763569709169@example.com 55555555 \N \N \N \N \N 49 \N \N \N +9922 2025-10-03 04:12:31.646219+00 2025-10-03 04:12:31.646228+00 f t Invitado Amar invitado-1759464751073@example.com 55555555 \N \N \N \N \N 87 \N \N \N +10101 2025-10-06 11:43:24.325594+00 2025-10-06 11:43:24.325607+00 f t Invitado Amar invitado-1759751001710@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9750 2025-10-01 12:22:34.943529+00 2025-10-01 12:22:34.94354+00 f t Silvia Mariana Morales smarianmorales@gmail.com +541168584019 \N Montevideo 333 6 V \N FEMALE \N -34.6050415 -58.3892902 49 \N \N iamar-7668 +10282 2025-10-08 17:37:30.172428+00 2025-10-08 17:37:30.172438+00 f t Invitado Amar invitado-1759945046755@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10464 2025-10-11 00:00:08.846612+00 2025-10-11 00:00:08.846626+00 f t Invitado Amar invitado-1760140808154@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10646 2025-10-13 18:36:12.9408+00 2025-10-13 18:36:12.94081+00 f t Invitado Amar invitado-1760380572290@example.com 55555555 \N \N \N \N \N 24 \N \N \N +10828 2025-10-16 00:13:16.409186+00 2025-10-16 00:13:16.409194+00 f t Invitado Amar invitado-1760573595776@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11005 2025-10-18 00:50:03.795215+00 2025-10-18 00:50:03.79523+00 f t Invitado Amar invitado-1760748604020@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11188 2025-10-20 21:57:52.589362+00 2025-10-20 21:57:52.589373+00 f t Invitado Amar invitado-1760997472438@example.com 55555555 \N \N \N \N \N 77 \N \N \N +11368 2025-10-23 02:13:16.660548+00 2025-10-23 02:13:16.660558+00 f t Invitado Amar invitado-1761185594675@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11549 2025-10-26 03:21:44.790128+00 2025-10-26 03:21:44.790137+00 f t Invitado Amar invitado-1761448904837@example.com 55555555 \N \N \N \N \N 21 \N \N \N +11731 2025-10-28 16:29:59.306097+00 2025-10-28 16:29:59.306109+00 f t Invitado Amar invitado-1761668998527@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11914 2025-10-30 01:25:52.352483+00 2025-10-30 01:25:52.352491+00 f t Invitado Amar invitado-1761787551699@example.com 55555555 \N \N \N \N \N 21 \N \N \N +12098 2025-10-31 22:28:53.315344+00 2025-10-31 22:28:53.315353+00 f t Invitado Amar invitado-1761949732941@example.com 55555555 \N \N \N \N \N 34 \N \N \N +12279 2025-11-03 17:24:12.215069+00 2025-11-03 17:24:12.215078+00 f t Invitado Amar invitado-1762190650506@example.com 55555555 \N \N \N \N \N 21 \N \N \N +12462 2025-11-05 22:15:12.419064+00 2025-11-05 22:15:12.419078+00 f t Invitado Amar invitado-1762380911885@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13979 2025-11-21 00:01:10.749575+00 2025-11-21 00:01:10.749586+00 f t Invitado Amar invitado-1763683270450@example.com 55555555 \N \N \N \N \N 37 \N \N \N +12644 2025-11-07 21:52:39.569503+00 2025-11-07 21:52:39.569511+00 f t Maria Goizueta mariagoizueta@yahoo.com.ar 91131664072 \N Pasaje Coghlan 4800 \N \N FEMALE \N \N \N 21 2064 \N \N +12824 2025-11-10 03:09:23.362574+00 2025-11-10 03:09:23.362582+00 f t Invitado Amar invitado-1762744161858@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13007 2025-11-11 21:25:57.733273+00 2025-11-11 21:25:57.733282+00 f t Invitado Amar invitado-1762896357137@example.com 55555555 \N \N \N \N \N 26 \N \N \N +14158 2025-11-22 14:43:40.637626+00 2025-11-22 14:43:40.637635+00 f t Invitado Amar invitado-1763822620466@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14340 2025-11-24 14:05:39.902092+00 2025-11-24 14:05:39.902102+00 f t Invitado Amar invitado-1763993139249@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14521 2025-11-25 18:41:28.433822+00 2025-11-25 18:41:28.433831+00 f t Invitado Amar invitado-1764096087858@example.com 55555555 \N \N \N \N \N 18 \N \N \N +9751 2025-10-01 13:28:12.417706+00 2025-10-01 13:28:12.417719+00 f t Invitado Amar invitado-1759325292800@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7669 +9923 2025-10-03 05:46:36.552916+00 2025-10-03 05:46:36.552926+00 f t Invitado Amar invitado-1759470396708@example.com 55555555 \N \N \N \N \N 64 \N \N \N +10102 2025-10-06 11:50:07.769296+00 2025-10-06 11:50:07.769304+00 f t Invitado Amar invitado-1759751407026@example.com 55555555 \N \N \N \N \N 28 \N \N \N +10283 2025-10-08 17:39:06.826696+00 2025-10-08 17:39:06.826708+00 f t Invitado Amar invitado-1759945146494@example.com 55555555 \N \N \N \N \N 59 \N \N \N +13179 2025-11-13 16:23:19.533798+00 2025-11-13 16:23:19.533807+00 f t Invitado Amar invitado-1763050999257@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10465 2025-10-11 00:14:58.849132+00 2025-10-11 00:14:58.849142+00 f t Matilde Baldi matildebaldi2015@gmail.com +543777697460 \N Colombres 393 PB C \N FEMALE \N -34.6172811 -58.4183626 23 \N \N \N +10647 2025-10-13 18:39:31.256685+00 2025-10-13 18:39:31.256697+00 f t Invitado Amar invitado-1760380770852@example.com 55555555 \N \N \N \N \N 60 \N \N \N +10829 2025-10-16 00:16:49.329628+00 2025-10-16 00:16:49.329637+00 f t Invitado Amar invitado-1760573808920@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11006 2025-10-18 00:53:56.233306+00 2025-10-18 00:53:56.23332+00 f t Invitado Amar invitado-1760748836679@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11189 2025-10-20 22:04:06.555089+00 2025-10-20 22:04:06.555098+00 f t Andrea Di Laudo andrefavy@gmail.com +541138790412 \N Magariños cervantes A 2657 Casa \N \N -34.6117076 -58.4767526 63 \N \N \N +11369 2025-10-23 02:16:26.660632+00 2025-10-23 02:16:26.66064+00 f t Invitado Amar invitado-1761185786689@example.com 55555555 \N \N \N \N \N 43 \N \N \N +11550 2025-10-26 04:17:23.90316+00 2025-10-26 04:17:23.90317+00 f t Invitado Amar invitado-1761452243498@example.com 55555555 \N \N \N \N \N 72 \N \N \N +13329 2025-11-14 22:03:39.087904+00 2025-11-14 22:03:39.087914+00 f t Luis Caceres luis.caceres@live.com.ar 91141886610 \N sarmiento 2897 3er piso depto 20 \N MALE 1970-07-29 -34.606561 -58.4071608 18 2151 \N \N +13612 2025-11-18 11:09:50.660895+00 2025-11-18 11:09:50.660903+00 f t Invitado Amar invitado-1763464190106@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11732 2025-10-28 16:36:26.557156+00 2025-10-28 16:36:26.557166+00 f t valentino lavorerio valen_mtz_14@hotmail.com 91150371569 \N Av Centenario 1941 6F Torre Rio \N MALE 1987-07-14 -34.4606398 -58.5275019 155 1923 \N \N +11915 2025-10-30 01:28:28.226415+00 2025-10-30 01:28:28.226425+00 f t Invitado Amar invitado-1761787706834@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12099 2025-10-31 22:37:47.351167+00 2025-10-31 22:37:47.351175+00 f t Mariana Laura Bertone bmarianalaura@gmail.com +541169974541 \N Hipólito Yrigoyen 1315 18 c \N \N \N \N 112 1962 \N \N +12280 2025-11-03 17:29:24.348138+00 2025-11-03 17:29:24.348151+00 f t Invitado Amar invitado-1762190963592@example.com 55555555 \N \N \N \N \N 6 \N \N \N +12463 2025-11-05 22:28:58.689237+00 2025-11-05 22:28:58.689246+00 f t Invitado Amar invitado-1762381738571@example.com 55555555 \N \N \N \N \N 53 \N \N \N +12645 2025-11-07 21:54:11.306636+00 2025-11-07 21:54:11.306648+00 f t Invitado Amar invitado-1762552450019@example.com 55555555 \N \N \N \N \N 42 \N \N \N +12825 2025-11-10 03:17:03.264426+00 2025-11-10 03:17:03.264436+00 f t Invitado Amar invitado-1762744622300@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13008 2025-11-11 21:29:06.488941+00 2025-11-11 21:29:06.48895+00 f t Invitado Amar invitado-1762896545424@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13799 2025-11-19 17:03:25.371231+00 2025-11-19 17:03:25.37124+00 f t melisa Goitea mgoitea_2012@hotmail.com +541165936958 \N Murature 1941 frente a casa de repuestos TARANTO \N \N -34.7278397 -58.4222422 71 2196 \N \N +13980 2025-11-21 00:09:26.59689+00 2025-11-21 00:09:26.596899+00 f t Invitado Amar invitado-1763683765818@example.com 55555555 \N \N \N \N \N 49 \N \N \N +14159 2025-11-22 14:53:56.709298+00 2025-11-22 14:53:56.709307+00 f t Invitado Amar invitado-1763823236139@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14341 2025-11-24 14:18:52.165977+00 2025-11-24 14:18:52.165986+00 f t Invitado Amar invitado-1763993931730@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14522 2025-11-25 18:44:44.301383+00 2025-11-25 18:44:44.301393+00 f t Invitado Amar invitado-1764096283818@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9752 2025-10-01 13:34:37.528524+00 2025-10-01 13:34:37.528532+00 f t Invitado Amar invitado-1759325669837@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7670 +9924 2025-10-03 06:00:10.109846+00 2025-10-03 06:00:10.109856+00 f t Invitado Amar invitado-1759471209567@example.com 55555555 \N \N \N \N \N 46 \N \N \N +13180 2025-11-13 16:36:58.294455+00 2025-11-13 16:36:58.294464+00 f t Invitado Amar invitado-1763051813249@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10103 2025-10-06 12:02:37.977384+00 2025-10-06 12:02:37.977392+00 f t Daniela Tolosa dany.tolosa@gmail.com +541158594893 \N Alejandro Magariños Cervantes 5351 5, no anda el timbre, avisar al cel \N FEMALE \N -34.6317749 -58.5066562 65 \N \N \N +10284 2025-10-08 17:56:45.749795+00 2025-10-08 17:56:45.749804+00 f t Invitado Amar invitado-1759946206432@example.com 55555555 \N \N \N \N \N 68 \N \N \N +10466 2025-10-11 00:39:00.421217+00 2025-10-11 00:39:00.421226+00 f t Invitado Amar invitado-1760143119968@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10648 2025-10-13 18:40:00.502227+00 2025-10-13 18:40:00.502239+00 f t Invitado Amar invitado-1760380726941@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10830 2025-10-16 00:46:01.876192+00 2025-10-16 00:46:01.876204+00 f t Invitado Amar invitado-1760575561082@example.com 55555555 \N \N \N \N \N 27 \N \N \N +13410 2025-11-15 19:31:47.607257+00 2025-11-15 19:31:47.607269+00 f t Invitado Amar invitado-1763235106974@example.com 55555555 \N \N \N \N \N 142 \N \N \N +11007 2025-10-18 01:27:31.934948+00 2025-10-18 01:27:31.934957+00 f t Milagros Staiman milagros.staiman@gmail.com +541136236093 \N Pasaje jose ingenieros 2964 2F \N \N -34.5471342 -58.5623504 41 \N \N \N +11190 2025-10-20 22:15:08.825979+00 2025-10-20 22:15:08.825992+00 f t Invitado Amar invitado-1760998507502@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13613 2025-11-18 11:10:38.578009+00 2025-11-18 11:10:38.578016+00 f t Invitado Amar invitado-1763464238882@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11370 2025-10-23 02:18:08.970006+00 2025-10-23 02:18:08.970015+00 f t Ornella Boasso ornellaboasso22@gmail.com +541157649624 \N Tronador 3671 timbre 3 \N \N -34.5564397 -58.4838236 31 \N \N \N +11551 2025-10-26 11:31:52.025133+00 2025-10-26 11:31:52.025142+00 f t Invitado Amar invitado-1761478310999@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13800 2025-11-19 17:23:42.285211+00 2025-11-19 17:23:42.285219+00 f t Invitado Amar invitado-1763573021050@example.com 55555555 \N \N \N \N \N 64 \N \N \N +11733 2025-10-28 16:55:00.235545+00 2025-10-28 16:55:00.235555+00 f t Mariana Canosa maiacanosa@gmail.com +541159705649 \N Soler 4263 9 \N \N -34.5897686 -58.4208696 1 \N \N \N +11916 2025-10-30 01:46:31.985665+00 2025-10-30 01:46:31.985676+00 f t Invitado Amar invitado-1761788790867@example.com 55555555 \N \N \N \N \N 80 \N \N \N +12100 2025-10-31 22:41:12.270823+00 2025-10-31 22:41:12.270831+00 f t Invitado Amar invitado-1761950471423@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13981 2025-11-21 00:30:40.891417+00 2025-11-21 00:30:40.891427+00 f t Invitado Amar invitado-1763685039678@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14160 2025-11-22 15:40:54.586175+00 2025-11-22 15:40:54.586185+00 f t Invitado Amar invitado-1763826054131@example.com 55555555 \N \N \N \N \N 88 \N \N \N +12281 2025-11-03 17:45:09.314316+00 2025-11-03 17:45:09.314327+00 f t Mabel Figueroa tami.navarro2@gmail.com +541131497673 \N Tunuyan 446 Fondo \N \N -34.7665648 -58.4420688 71 1992 \N \N +12464 2025-11-05 22:32:22.844203+00 2025-11-05 22:32:22.844212+00 f t Invitado Amar invitado-1762381942388@example.com 55555555 \N \N \N \N \N 156 \N \N \N +12646 2025-11-07 22:09:36.184363+00 2025-11-07 22:09:36.184385+00 f t Invitado Amar invitado-1762553376535@example.com 55555555 \N \N \N \N \N 111 \N \N \N +12826 2025-11-10 03:20:41.950405+00 2025-11-10 03:20:41.950413+00 f t Invitado Amar invitado-1762744841524@example.com 55555555 \N \N \N \N \N 50 \N \N \N +13009 2025-11-11 21:38:17.352362+00 2025-11-11 21:38:17.352371+00 f t Invitado Amar invitado-1762897096623@example.com 55555555 \N \N \N \N \N 51 \N \N \N +14342 2025-11-24 14:20:24.17889+00 2025-11-24 14:20:24.178899+00 f t Sofia Perissé sofiperisse@gmail.com +542291419931 \N Humboldt 2445 1B \N \N -34.5787118 -58.4281953 1 2251 \N \N +14523 2025-11-25 18:45:03.245306+00 2025-11-25 18:45:03.245319+00 f t Invitado Amar invitado-1764096302773@example.com 55555555 \N \N \N \N \N 3 \N \N \N +9753 2025-10-01 13:44:44.974305+00 2025-10-01 13:44:44.974313+00 f t Invitado Amar invitado-1759326283778@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-7671 +9925 2025-10-03 08:51:30.52712+00 2025-10-03 08:51:30.527148+00 f t Invitado Amar invitado-1759481489993@example.com 55555555 \N \N \N \N \N 75 \N \N \N +10104 2025-10-06 13:22:21.310884+00 2025-10-06 13:22:21.310893+00 f t Invitado Amar invitado-1759756940605@example.com 55555555 \N \N \N \N \N 64 \N \N \N +10285 2025-10-08 18:28:20.535482+00 2025-10-08 18:28:20.535492+00 f t Invitado Amar invitado-1759948100064@example.com 55555555 \N \N \N \N \N 32 \N \N \N +13181 2025-11-13 16:38:08.933841+00 2025-11-13 16:38:08.933854+00 f t Invitado Amar invitado-1763051889511@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10467 2025-10-11 00:51:49.503059+00 2025-10-11 00:51:49.503068+00 f t Mirian Schoenfeld mirusho@yahoo.com.ar +541157300816 \N Isabel la Católica 2015 \N \N -34.4706002 -58.5500154 155 \N \N \N +10649 2025-10-13 19:07:41.613211+00 2025-10-13 19:07:41.613223+00 f t Invitado Amar invitado-1760382461160@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10831 2025-10-16 02:23:58.147257+00 2025-10-16 02:23:58.147265+00 f t Invitado Amar invitado-1760581436941@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13411 2025-11-15 19:45:41.943712+00 2025-11-15 19:45:41.943721+00 f t Invitado Amar invitado-1763235941046@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11008 2025-10-18 01:29:27.544487+00 2025-10-18 01:29:27.544496+00 f t Mariana Costa mariancosta02@gmail.com +541165495465 \N Avalos 1930 6 C \N \N -34.5791581 -58.48233 29 \N \N \N +11191 2025-10-20 22:35:43.398559+00 2025-10-20 22:35:43.398572+00 f t Invitado Amar invitado-1760999742800@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11371 2025-10-23 02:40:42.832312+00 2025-10-23 02:40:42.832325+00 f t Invitado Amar invitado-1761187240765@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11552 2025-10-26 13:15:45.336591+00 2025-10-26 13:15:45.336603+00 f t Invitado Amar invitado-1761484543225@example.com 55555555 \N \N \N \N \N 77 \N \N \N +11734 2025-10-28 17:02:44.496037+00 2025-10-28 17:02:44.496047+00 f t Invitado Amar invitado-1761670964123@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11917 2025-10-30 01:50:47.943087+00 2025-10-30 01:50:47.943096+00 f t Invitado Amar invitado-1761789047876@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12101 2025-10-31 22:43:23.527265+00 2025-10-31 22:43:23.527274+00 f t Invitado Amar invitado-1761950603149@example.com 55555555 \N \N \N \N \N 34 \N \N \N +13614 2025-11-18 11:27:16.196231+00 2025-11-18 11:27:16.196239+00 f t Invitado Amar invitado-1763465235088@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13801 2025-11-19 17:33:00.202184+00 2025-11-19 17:33:00.202192+00 f t Invitado Amar invitado-1763573579787@example.com 55555555 \N \N \N \N \N 73 \N \N \N +12282 2025-11-03 17:49:38.874201+00 2025-11-03 17:49:38.874211+00 f t Tomas Nuñez tomas.agustinnunez@gmail.com +541121927169 \N David peña 4487 1 \N \N -32.8782654 -60.6928064 113 1993 \N \N +12465 2025-11-05 22:43:13.339257+00 2025-11-05 22:43:13.339267+00 f t Invitado Amar invitado-1762382592178@example.com 55555555 \N \N \N \N \N 49 \N \N \N +12647 2025-11-07 22:11:40.33065+00 2025-11-07 22:11:40.330663+00 f t Invitado Amar invitado-1762553499590@example.com 55555555 \N \N \N \N \N 51 \N \N \N +12827 2025-11-10 03:34:19.979456+00 2025-11-10 03:34:19.979466+00 f t Invitado Amar invitado-1762745658727@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13010 2025-11-11 21:41:12.018382+00 2025-11-11 21:41:12.018391+00 f t Invitado Amar invitado-1762897270825@example.com 55555555 \N \N \N \N \N 31 \N \N \N +13982 2025-11-21 00:35:20.582582+00 2025-11-21 00:35:20.582591+00 f t Invitado Amar invitado-1763685320191@example.com 55555555 \N \N \N \N \N 32 \N \N \N +14161 2025-11-22 16:14:33.805731+00 2025-11-22 16:14:33.80574+00 f t Invitado Amar invitado-1763828072905@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14343 2025-11-24 14:26:45.768752+00 2025-11-24 14:26:45.768761+00 f t Invitado Amar invitado-1763994405191@example.com 55555555 \N \N \N \N \N 18 \N \N \N +14524 2025-11-25 18:45:05.93195+00 2025-11-25 18:45:05.93196+00 f t Invitado Amar invitado-1764096303816@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9754 2025-10-01 14:07:37.796217+00 2025-10-01 14:07:37.796226+00 f t Invitado Amar invitado-1759327657201@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-7672 +9926 2025-10-03 10:11:28.151197+00 2025-10-03 10:11:28.151206+00 f t Invitado Amar invitado-1759486287578@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10105 2025-10-06 13:22:47.153493+00 2025-10-06 13:22:47.153503+00 f t Invitado Amar invitado-1759756966643@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13182 2025-11-13 16:51:37.866422+00 2025-11-13 16:51:37.866431+00 f t Invitado Amar invitado-1763052697190@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10468 2025-10-11 01:48:28.374675+00 2025-10-11 01:48:28.374686+00 f t Invitado Amar invitado-1760147307756@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10650 2025-10-13 19:54:18.307655+00 2025-10-13 19:54:18.307665+00 f t Nicolas Daniel . Kuchar nicokuchar@yahoo.com.ar 5491131320610 \N Quirno 615, Casa El timbre no funciona \N MALE \N -34.6385571 -58.4680179 4 \N \N \N +7529 2025-08-29 19:42:53.342566+00 2025-08-29 19:42:53.342575+00 f t Natalia Gallego nataliagallego20@gmail.com 5491138107941 \N French 2756 13a \N FEMALE \N -34.5890977 -58.4025783 9 1705 \N ngallego +13412 2025-11-15 20:09:33.939298+00 2025-11-15 20:09:33.939307+00 f t Invitado Amar invitado-1763237372631@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13615 2025-11-18 11:30:33.574066+00 2025-11-18 11:30:33.574074+00 f t Invitado Amar invitado-1763465432702@example.com 55555555 \N \N \N \N \N 55 \N \N \N +10832 2025-10-16 02:29:30.991951+00 2025-10-16 02:29:30.991959+00 f t Monica Ciardoney m.ciardoney@yahoo.com +541130713309 \N Carlos calvo 1583 Pb4 \N FEMALE \N -34.6199454 -58.3884549 49 \N \N \N +11009 2025-10-18 01:42:54.992433+00 2025-10-18 01:42:54.992445+00 f t RICARDO Razzak Ricardosamuelrz690@gmail.com +541123182526 \N La Fontaine 610 610 \N \N \N \N 71 \N \N \N +11192 2025-10-20 23:03:50.484607+00 2025-10-20 23:03:50.484616+00 f t Invitado Amar invitado-1761001429975@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11372 2025-10-23 03:11:24.981195+00 2025-10-23 03:11:24.981205+00 f t Invitado Amar invitado-1761189084911@example.com 55555555 \N \N \N \N \N 50 \N \N \N +11553 2025-10-26 13:15:57.615796+00 2025-10-26 13:15:57.615808+00 f t Invitado Amar invitado-1761484560376@example.com 55555555 \N \N \N \N \N 27 \N \N \N +11735 2025-10-28 17:10:44.033036+00 2025-10-28 17:10:44.033046+00 f t Invitado Amar invitado-1761671442118@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11918 2025-10-30 01:55:02.297516+00 2025-10-30 01:55:02.29753+00 f t Invitado Amar invitado-1761789300927@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12102 2025-10-31 22:48:49.841676+00 2025-10-31 22:48:49.841686+00 f t Invitado Amar invitado-1761950928765@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12283 2025-11-03 17:50:54.056308+00 2025-11-03 17:50:54.05632+00 f t Invitado Amar invitado-1762192253893@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12466 2025-11-05 23:11:26.763643+00 2025-11-05 23:11:26.763653+00 f t Invitado Amar invitado-1762384286257@example.com 55555555 \N \N \N \N \N 6 \N \N \N +12648 2025-11-07 22:15:57.01937+00 2025-11-07 22:15:57.019382+00 f t Invitado Amar invitado-1762553756685@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12828 2025-11-10 03:44:12.885782+00 2025-11-10 03:44:12.88579+00 f t Invitado Amar invitado-1762746252471@example.com 55555555 \N \N \N \N \N 31 \N \N \N +13011 2025-11-11 21:53:06.958121+00 2025-11-11 21:53:06.958134+00 f t Invitado Amar invitado-1762897986538@example.com 55555555 \N \N \N \N \N 35 \N \N \N +13802 2025-11-19 17:44:11.542271+00 2025-11-19 17:44:11.542279+00 t t Invitado Amar invitado-1763574251152@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13983 2025-11-21 00:35:59.314326+00 2025-11-21 00:35:59.314335+00 f t Invitado Amar invitado-1763685358816@example.com 55555555 \N \N \N \N \N 12 \N \N \N +14162 2025-11-22 16:16:42.495359+00 2025-11-22 16:16:42.495368+00 f t Invitado Amar invitado-1763828202101@example.com 55555555 \N \N \N \N \N 22 \N \N \N +14344 2025-11-24 14:29:50.923734+00 2025-11-24 14:29:50.923742+00 f t Invitado Amar invitado-1763994590023@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14525 2025-11-25 18:48:41.859316+00 2025-11-25 18:48:41.859324+00 f t Invitado Amar invitado-1764096521041@example.com 55555555 \N \N \N \N \N 82 \N \N \N +9755 2025-10-01 14:29:31.82176+00 2025-10-01 14:29:31.821773+00 f t Invitado Amar invitado-1759328971452@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-7673 +9927 2025-10-03 11:08:35.595908+00 2025-10-03 11:08:35.595921+00 f t Invitado Amar invitado-1759489715266@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10106 2025-10-06 13:34:27.062398+00 2025-10-06 13:34:27.062407+00 f t Invitado Amar invitado-1759757666860@example.com 55555555 \N \N \N \N \N 34 \N \N \N +10286 2025-10-08 18:45:50.503934+00 2025-10-08 18:45:50.503943+00 f t Invitado Amar invitado-1759949149413@example.com 55555555 \N \N \N \N \N 46 \N \N \N +10469 2025-10-11 01:49:09.242596+00 2025-10-11 01:49:09.242605+00 f t Invitado Amar invitado-1760147349088@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10651 2025-10-13 20:19:40.906302+00 2025-10-13 20:19:40.906314+00 f t Invitado Amar invitado-1760386780664@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10833 2025-10-16 03:20:41.035696+00 2025-10-16 03:20:41.035708+00 f t Invitado Amar invitado-1760584839643@example.com 55555555 \N \N \N \N \N 155 \N \N \N +11010 2025-10-18 01:55:49.634509+00 2025-10-18 01:55:49.634517+00 f t Invitado Amar invitado-1760752549301@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11193 2025-10-20 23:12:49.965631+00 2025-10-20 23:12:49.965644+00 f t Deysi Jaramillo deysijaramillo087@gmail.com +542213098781 \N 32 entre 1 y 2 328 5B \N \N \N \N 147 \N \N \N +11373 2025-10-23 03:13:20.76539+00 2025-10-23 03:13:20.765398+00 f t Invitado Amar invitado-1761189200324@example.com 55555555 \N \N \N \N \N 49 \N \N \N +11554 2025-10-26 15:06:56.302175+00 2025-10-26 15:06:56.302184+00 f t Invitado Amar invitado-1761491215774@example.com 55555555 \N \N \N \N \N 41 \N \N \N +11736 2025-10-28 17:23:37.899956+00 2025-10-28 17:23:37.899964+00 f t Silvana Gonzalez sil.gonzalez73@gmail.com +541157004445 \N Formosa 45 1 A \N \N -34.6206573 -58.4287533 14 \N \N \N +11919 2025-10-30 01:57:50.728569+00 2025-10-30 01:57:50.728577+00 f t Invitado Amar invitado-1761789469623@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12103 2025-10-31 22:53:15.59025+00 2025-10-31 22:53:15.590259+00 f t Invitado Amar invitado-1761951195185@example.com 55555555 \N \N \N \N \N 46 \N \N \N +12284 2025-11-03 17:51:55.824352+00 2025-11-03 17:51:55.824361+00 f t Invitado Amar invitado-1762192315519@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12467 2025-11-05 23:21:02.062665+00 2025-11-05 23:21:02.062678+00 f t Invitado Amar invitado-1762384860913@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12649 2025-11-07 22:24:19.570396+00 2025-11-07 22:24:19.570405+00 f t Invitado Amar invitado-1762554262117@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13183 2025-11-13 16:52:17.067272+00 2025-11-13 16:52:17.067281+00 f t Andrea Lorena Pettinato lopettinato@gmail.com 91164051419 \N Nahuel Huapi 4590 \N \N FEMALE \N -34.5682413 -58.4831791 29 2128 \N \N +12829 2025-11-10 03:57:18.334478+00 2025-11-10 03:57:18.334486+00 f t Zoe Vitale zoevitale11@gmail.com +541169244170 \N Garibaldi 1297 \N \N \N \N 113 2086 \N \N +13012 2025-11-11 21:54:29.933747+00 2025-11-11 21:54:29.933758+00 f t Invitado Amar invitado-1762898068962@example.com 55555555 \N \N \N \N \N 31 \N \N \N +13413 2025-11-15 20:25:36.699912+00 2025-11-15 20:25:36.699921+00 f t Invitado Amar invitado-1763238335536@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13616 2025-11-18 12:14:29.35462+00 2025-11-18 12:14:29.354631+00 f t Invitado Amar invitado-1763468068435@example.com 55555555 \N \N \N \N \N 26 \N \N \N +27 2024-10-30 14:13:08.479+00 2024-10-30 14:13:08.479+00 f t camila vessvessian camilavessvessian@gmail.com +541130821222 Azcuenaga 1038 8B entre Santa Fe y Marcelo T AZCUENAGA 1038 8B \N \N -34.5919667 -58.3985746 9 176 \N cvessvessian +13984 2025-11-21 00:44:09.927937+00 2025-11-21 00:44:09.927947+00 f t Invitado Amar invitado-1763685849413@example.com 55555555 \N \N \N \N \N 58 \N \N \N +14163 2025-11-22 16:28:36.052888+00 2025-11-22 16:28:36.052929+00 f t Invitado Amar invitado-1763828915544@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14345 2025-11-24 14:31:07.147581+00 2025-11-24 14:31:07.147595+00 f t Invitado Amar invitado-1763994666874@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14526 2025-11-25 19:07:26.019497+00 2025-11-25 19:07:26.019506+00 f t Invitado Amar invitado-1764097645402@example.com 55555555 \N \N \N \N \N 44 \N \N \N +9756 2025-10-01 14:30:14.203807+00 2025-10-01 14:30:14.203825+00 f t Invitado Amar invitado-1759329013807@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7674 +13184 2025-11-13 16:52:50.852939+00 2025-11-13 16:52:50.852948+00 f t Invitado Amar invitado-1763052770450@example.com 55555555 \N \N \N \N \N 59 \N \N \N +9928 2025-10-03 11:45:35.807167+00 2025-10-03 11:45:35.80718+00 f t Eduardo Matías Stazi stazi_eduardo@hotmail.es +5491134262953 \N Guamini 4691 PB \N \N -34.6855322 -58.4799094 64 \N \N \N +10107 2025-10-06 14:16:44.43858+00 2025-10-06 14:16:44.438592+00 f t Invitado Amar invitado-1759760204016@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10287 2025-10-08 18:53:32.844413+00 2025-10-08 18:53:32.844426+00 f t Alejandro hansen ed.ale.hansen@hotmail.com 91134370007 \N primera junta rosario 732 timbre 17 \N MALE 1989-07-09 -34.6202923 -58.4389234 14 \N \N \N +10470 2025-10-11 02:25:58.069001+00 2025-10-11 02:25:58.069009+00 f t Invitado Amar invitado-1760149557526@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10652 2025-10-13 20:55:29.98917+00 2025-10-13 20:55:29.989179+00 f t Invitado Amar invitado-1760388929583@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10834 2025-10-16 03:27:40.001853+00 2025-10-16 03:27:40.001863+00 f t Invitado Amar invitado-1760585259590@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11011 2025-10-18 03:33:16.938903+00 2025-10-18 03:33:16.938916+00 f t Invitado Amar invitado-1760758396538@example.com 55555555 \N \N \N \N \N 77 \N \N \N +3546 2025-06-28 20:23:39.282203+00 2025-06-28 20:23:39.282212+00 f t Gabriela Villanueva gabriiela.mi.vi@gmail.com +541164150000 \N Av libertador 2417 1313 \N \N \N -34.5079777 -58.4793236 39 1246 \N gvillanueva +11194 2025-10-20 23:13:28.684238+00 2025-10-20 23:13:28.684248+00 f t Estela Martínez centenera13@hotmail.com 5491161285393 \N Rojas Rojas P. 1 depto A \N FEMALE 1959-05-13 -34.6123486 -58.4450164 14 \N \N \N +11374 2025-10-23 03:13:30.120964+00 2025-10-23 03:13:30.120973+00 f t Invitado Amar invitado-1761189210096@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11555 2025-10-26 15:13:39.508475+00 2025-10-26 15:13:39.508537+00 f t Invitado Amar invitado-1761491619149@example.com 55555555 \N \N \N \N \N 20 \N \N \N +11737 2025-10-28 17:25:22.560357+00 2025-10-28 17:25:22.560367+00 f t Invitado Amar invitado-1761672321244@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11920 2025-10-30 02:03:07.671378+00 2025-10-30 02:03:07.671387+00 f t Invitado Amar invitado-1761789786807@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12104 2025-10-31 22:54:55.087452+00 2025-10-31 22:54:55.087464+00 f t Invitado Amar invitado-1761951294526@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12285 2025-11-03 18:00:02.810453+00 2025-11-03 18:00:02.810467+00 f t Invitado Amar invitado-1762192801836@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12468 2025-11-05 23:26:08.711531+00 2025-11-05 23:26:08.71154+00 f t Invitado Amar invitado-1762385167751@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12650 2025-11-07 22:26:02.60754+00 2025-11-07 22:26:02.60755+00 f t Invitado Amar invitado-1762554361032@example.com 55555555 \N \N \N \N \N 89 \N \N \N +12830 2025-11-10 04:00:28.826646+00 2025-11-10 04:00:28.826655+00 f t Invitado Amar invitado-1762747228685@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13013 2025-11-11 21:55:38.009251+00 2025-11-11 21:55:38.009265+00 f t Invitado Amar invitado-1762898137297@example.com 55555555 \N \N \N \N \N 31 \N \N \N +13414 2025-11-15 20:49:45.218302+00 2025-11-15 20:49:45.218313+00 f t Invitado Amar invitado-1763239784017@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13617 2025-11-18 12:38:46.692435+00 2025-11-18 12:38:46.692444+00 f t Invitado Amar invitado-1763469525761@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13803 2025-11-19 17:46:52.285865+00 2025-11-19 17:46:52.285876+00 f t Invitado Amar invitado-1763574412099@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13985 2025-11-21 00:48:26.683519+00 2025-11-21 00:48:26.683527+00 f t Invitado Amar invitado-1763686105998@example.com 55555555 \N \N \N \N \N 32 \N \N \N +14164 2025-11-22 16:29:01.320283+00 2025-11-22 16:29:01.320295+00 f t pablo Kamalian Pablokamalian@gmail.com 91165282582 \N Armenia 1710 \N \N MALE \N -34.589138 -58.4270585 1 2236 \N \N +14346 2025-11-24 14:36:11.33032+00 2025-11-24 14:36:11.330334+00 f t Invitado Amar invitado-1763994970030@example.com 55555555 \N \N \N \N \N 62 \N \N \N +14527 2025-11-25 19:07:51.214026+00 2025-11-25 19:07:51.214035+00 f t Invitado Amar invitado-1764097670424@example.com 55555555 \N \N \N \N \N 32 \N \N \N +9757 2025-10-01 14:53:40.210007+00 2025-10-01 14:53:40.210015+00 f t Invitado Amar invitado-1759330418573@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-7675 +9929 2025-10-03 11:51:55.623792+00 2025-10-03 11:51:55.623802+00 f t Invitado Amar invitado-1759492315184@example.com 55555555 \N \N \N \N \N 65 \N \N \N +10108 2025-10-06 14:30:11.335871+00 2025-10-06 14:30:11.33588+00 f t Invitado Amar invitado-1759761010939@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10288 2025-10-08 18:56:12.158378+00 2025-10-08 18:56:12.158386+00 f t Julieta Bardella Julieta15cmb@gmail.com 5491123406567 \N PAREJA 3499 casa \N FEMALE \N -34.594745 -58.506738 21 \N \N \N +10471 2025-10-11 02:26:54.61407+00 2025-10-11 02:26:54.614079+00 f t Invitado Amar invitado-1760149614337@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10653 2025-10-13 21:00:45.989372+00 2025-10-13 21:00:45.989384+00 f t Invitado Amar invitado-1760389245603@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10835 2025-10-16 05:28:46.571182+00 2025-10-16 05:28:46.571192+00 f t Maximiliano Mazza maximilianommazza79@hotmail.com +541126371310 \N Bahía Blanca 82 1®. 6 \N \N -34.6327189 -58.4807729 16 \N \N \N +11012 2025-10-18 03:44:22.75143+00 2025-10-18 03:44:22.751442+00 f t Invitado Amar invitado-1760759060477@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11195 2025-10-20 23:16:35.956111+00 2025-10-20 23:16:35.956125+00 f t Invitado Amar invitado-1761002195547@example.com 55555555 \N \N \N \N \N 5 \N \N \N +11375 2025-10-23 05:21:05.956738+00 2025-10-23 05:21:05.95675+00 f t Invitado Amar invitado-1761196865542@example.com 55555555 \N \N \N \N \N 91 \N \N \N +11556 2025-10-26 15:32:41.681839+00 2025-10-26 15:32:41.681848+00 f t Invitado Amar invitado-1761492761280@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11738 2025-10-28 17:29:58.964347+00 2025-10-28 17:29:58.964356+00 f t Invitado Amar invitado-1761672598834@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11921 2025-10-30 02:09:54.249322+00 2025-10-30 02:09:54.249334+00 f t Invitado Amar invitado-1761790193109@example.com 55555555 \N \N \N \N \N 15 \N \N \N +13185 2025-11-13 16:53:16.929024+00 2025-11-13 16:53:16.929032+00 f t Maira Lecoque maira.lecoque13@gmail.com +541136293977 \N Malvinas Argentinas 8420 \N \N -34.5137241 -58.7083084 47 2129 \N \N +13415 2025-11-15 21:43:53.707597+00 2025-11-15 21:43:53.707606+00 f t Invitado Amar invitado-1763243032583@example.com 55555555 \N \N \N \N \N 73 \N \N \N +12105 2025-10-31 23:01:40.813558+00 2025-10-31 23:01:40.813569+00 f t Javier Reyes Theclonejr@gmail.com +5491165979133 \N Rivadavia 5865 6a \N \N -34.6230182 -58.447757 14 1964 \N \N +12286 2025-11-03 18:04:11.202289+00 2025-11-03 18:04:11.202298+00 f t Invitado Amar invitado-1762193050670@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12469 2025-11-05 23:44:50.23448+00 2025-11-05 23:44:50.234489+00 f t Invitado Amar invitado-1762386289888@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12651 2025-11-07 22:26:38.624749+00 2025-11-07 22:26:38.62476+00 f t Invitado Amar invitado-1762554402014@example.com 55555555 \N \N \N \N \N 38 \N \N \N +12831 2025-11-10 04:01:18.601062+00 2025-11-10 04:01:18.60107+00 f t Invitado Amar invitado-1762747276848@example.com 55555555 \N \N \N \N \N 73 \N \N \N +13014 2025-11-11 21:55:58.379467+00 2025-11-11 21:55:58.379477+00 f t Invitado Amar invitado-1762898157331@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13618 2025-11-18 14:44:58.592064+00 2025-11-18 14:44:58.592072+00 f t Invitado Amar invitado-1763477091212@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13804 2025-11-19 17:56:09.033045+00 2025-11-19 17:56:09.033058+00 f t Invitado Amar invitado-1763574967477@example.com 55555555 \N \N \N \N \N 31 \N \N \N +13986 2025-11-21 00:48:55.296538+00 2025-11-21 00:48:55.296547+00 f t Invitado Amar invitado-1763686133987@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14165 2025-11-22 16:36:41.731607+00 2025-11-22 16:36:41.73162+00 f t Invitado Amar invitado-1763829400772@example.com 55555555 \N \N \N \N \N 72 \N \N \N +14347 2025-11-24 14:40:49.362466+00 2025-11-24 14:40:49.362476+00 f t Invitado Amar invitado-1763995248939@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14528 2025-11-25 19:12:21.857654+00 2025-11-25 19:12:21.857663+00 f t Invitado Amar invitado-1764097925333@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13186 2025-11-13 16:57:45.241192+00 2025-11-13 16:57:45.241201+00 f t Invitado Amar invitado-1763053065108@example.com 55555555 \N \N \N \N \N 47 \N \N \N +13416 2025-11-15 21:46:57.474939+00 2025-11-15 21:46:57.474951+00 f t Invitado Amar invitado-1763243217341@example.com 55555555 \N \N \N \N \N 73 \N \N \N +9930 2025-10-03 12:28:29.164094+00 2025-10-03 12:28:29.164104+00 f t Invitado Amar invitado-1759494509148@example.com 55555555 \N \N \N \N \N 91 \N \N \N +10109 2025-10-06 14:34:11.034822+00 2025-10-06 14:34:11.034831+00 f t Invitado Amar invitado-1759761252241@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9758 2025-10-01 15:24:54.684369+00 2025-10-01 15:24:54.684378+00 f t Gabriela Mariel Viñes gabrielavines@gmail.com +541159382973 \N Sitio de Montevideo 66 5D \N FEMALE \N -34.7053305 -58.3909186 70 \N \N iamar-7676 +10289 2025-10-08 19:13:03.151875+00 2025-10-08 19:13:03.151884+00 f t Invitado Amar invitado-1759950784057@example.com 55555555 \N \N \N \N \N 68 \N \N \N +10472 2025-10-11 03:05:47.228246+00 2025-10-11 03:05:47.228258+00 f t Invitado Amar invitado-1760151947481@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10654 2025-10-13 21:04:35.519359+00 2025-10-13 21:04:35.519369+00 f t Invitado Amar invitado-1760389475365@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10836 2025-10-16 05:35:39.367738+00 2025-10-16 05:35:39.367747+00 f t Invitado Amar invitado-1760592939479@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11013 2025-10-18 03:47:18.94743+00 2025-10-18 03:47:18.947443+00 f t Invitado Amar invitado-1760759237212@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11196 2025-10-20 23:58:29.507739+00 2025-10-20 23:58:29.507748+00 f t Invitado Amar invitado-1761004711098@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11376 2025-10-23 07:04:25.975634+00 2025-10-23 07:04:25.975642+00 f t Invitado Amar invitado-1761203065386@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11557 2025-10-26 15:37:16.258632+00 2025-10-26 15:37:16.258641+00 f t Invitado Amar invitado-1761493035868@example.com 55555555 \N \N \N \N \N 72 \N \N \N +11739 2025-10-28 17:40:42.871198+00 2025-10-28 17:40:42.871207+00 f t Invitado Amar invitado-1761673242219@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11922 2025-10-30 02:32:15.626169+00 2025-10-30 02:32:15.626177+00 f t Invitado Amar invitado-1761791535069@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12106 2025-10-31 23:03:36.396793+00 2025-10-31 23:03:36.396805+00 f t Invitado Amar invitado-1761951815922@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13619 2025-11-18 14:55:31.199978+00 2025-11-18 14:55:31.199988+00 f t Invitado Amar invitado-1763477730652@example.com 55555555 \N \N \N \N \N 46 \N \N \N +12470 2025-11-05 23:46:33.090587+00 2025-11-05 23:46:33.090596+00 f t Invitado Amar invitado-1762386392911@example.com 55555555 \N \N \N \N \N 23 \N \N \N +703 2025-04-20 21:55:03.97098+00 2025-04-20 21:55:03.97099+00 f t Gonzalo ezequiel mena gonzalomena02@gmail.com +5491136163145 \N Paso 206 4 D, entre peron y sarmiento \N MALE 1991-02-17 -34.6074343 -58.4035689 18 835 \N gmena +13805 2025-11-19 17:57:51.427192+00 2025-11-19 17:57:51.427201+00 f t Invitado Amar invitado-1763575068928@example.com 55555555 \N \N \N \N \N 22 \N \N \N +13987 2025-11-21 00:59:29.783608+00 2025-11-21 00:59:29.783618+00 f t Invitado Amar invitado-1763686768407@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12652 2025-11-07 22:27:58.021201+00 2025-11-07 22:27:58.021212+00 f t Invitado Amar invitado-1762554477177@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12832 2025-11-10 04:38:56.012878+00 2025-11-10 04:38:56.012888+00 f t Invitado Amar invitado-1762749535450@example.com 55555555 \N \N \N \N \N 77 \N \N \N +12287 2025-11-03 18:06:40.101148+00 2025-11-03 18:06:40.101157+00 f t Mariano schiavelli marianoschh@gmail.com 5491168555450 \N Aizpurua 3257 pb5 \N MALE \N -34.5714916 -58.5004734 29 1994 \N \N +13015 2025-11-11 22:10:48.121705+00 2025-11-11 22:10:48.121717+00 f t Invitado Amar invitado-1762899047754@example.com 55555555 \N \N \N \N \N 38 \N \N \N +14166 2025-11-22 16:37:33.40928+00 2025-11-22 16:37:33.409291+00 f t Invitado Amar invitado-1763829452798@example.com 55555555 \N \N \N \N \N 72 \N \N \N +14348 2025-11-24 14:42:06.326811+00 2025-11-24 14:42:06.326825+00 f t Invitado Amar invitado-1763995326147@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14529 2025-11-25 19:40:28.91191+00 2025-11-25 19:40:28.911918+00 f t Invitado Amar invitado-1764099628529@example.com 55555555 \N \N \N \N \N 3 \N \N \N +9931 2025-10-03 12:28:53.169299+00 2025-10-03 12:28:53.169308+00 f t Invitado Amar invitado-1759494491741@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13187 2025-11-13 16:58:25.821977+00 2025-11-13 16:58:25.82199+00 f t Invitado Amar invitado-1763053105647@example.com 55555555 \N \N \N \N \N 59 \N \N \N +9759 2025-10-01 15:25:45.989857+00 2025-10-01 15:25:45.989866+00 f t Jairo Carrasquero jairoecc12@gmail.com 5491133713707 \N Altolaguirre 2366 PB-C \N MALE \N -34.5773126 -58.4907171 29 \N \N jcarrasquero +10110 2025-10-06 14:34:35.505919+00 2025-10-06 14:34:35.505927+00 f t Invitado Amar invitado-1759761275030@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10290 2025-10-08 19:16:03.310944+00 2025-10-08 19:16:03.310956+00 f t Invitado Amar invitado-1759950962673@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10473 2025-10-11 04:07:01.587413+00 2025-10-11 04:07:01.587462+00 f t Invitado Amar invitado-1760155621565@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10655 2025-10-13 21:19:19.698257+00 2025-10-13 21:19:19.698266+00 f t Invitado Amar invitado-1760390359184@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10837 2025-10-16 07:34:11.655848+00 2025-10-16 07:34:11.655856+00 f t Invitado Amar invitado-1760600030434@example.com 55555555 \N \N \N \N \N 84 \N \N \N +11014 2025-10-18 04:00:40.62819+00 2025-10-18 04:00:40.6282+00 f t Invitado Amar invitado-1760760039778@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11197 2025-10-21 00:06:57.940598+00 2025-10-21 00:06:57.940607+00 f t Invitado Amar invitado-1761005216964@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11377 2025-10-23 09:47:47.978567+00 2025-10-23 09:47:47.978613+00 f t Invitado Amar invitado-1761212867060@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11558 2025-10-26 15:46:15.845727+00 2025-10-26 15:46:15.845741+00 f t Invitado Amar invitado-1761493575445@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11740 2025-10-28 17:45:14.828368+00 2025-10-28 17:45:14.82838+00 f t Invitado Amar invitado-1761673513558@example.com 55555555 \N \N \N \N \N 41 \N \N \N +11923 2025-10-30 02:32:28.153529+00 2025-10-30 02:32:28.153543+00 f t Invitado Amar invitado-1761791547296@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12107 2025-10-31 23:03:46.052304+00 2025-10-31 23:03:46.052314+00 f t Invitado Amar invitado-1761951825451@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13417 2025-11-15 21:47:53.820946+00 2025-11-15 21:47:53.820956+00 f t Invitado Amar invitado-1763243273449@example.com 55555555 \N \N \N \N \N 60 \N \N \N +13620 2025-11-18 15:09:02.638674+00 2025-11-18 15:09:02.63869+00 f t Invitado Amar invitado-1763478542089@example.com 55555555 \N \N \N \N \N 58 \N \N \N +12288 2025-11-03 18:07:34.036738+00 2025-11-03 18:07:34.036747+00 f t Daniela Castillo quemera666@gmail.com +541167990370 \N Coronel salvadores 1541 Casa \N \N -34.645236 -58.3715086 32 1995 \N \N +12471 2025-11-06 00:12:30.980183+00 2025-11-06 00:12:30.980195+00 f t Invitado Amar invitado-1762387952781@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12653 2025-11-07 22:32:18.530312+00 2025-11-07 22:32:18.530321+00 f t Invitado Amar invitado-1762554738353@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12833 2025-11-10 04:58:23.570102+00 2025-11-10 04:58:23.570115+00 f t Invitado Amar invitado-1762750702972@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13806 2025-11-19 18:01:15.798286+00 2025-11-19 18:01:15.798294+00 f t Invitado Amar invitado-1763575275417@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13016 2025-11-11 22:44:45.396552+00 2025-11-11 22:44:45.396564+00 f t Claudia Ramírez clauramirezfotografia@gmail.com +5491133091642 \N San Martín 933 piso 7 departamento 56, No funciona el portero eléctrico \N FEMALE \N -34.5969801 -58.3742303 37 2108 \N \N +13988 2025-11-21 01:16:56.716941+00 2025-11-21 01:16:56.716951+00 f t Invitado Amar invitado-1763687816320@example.com 55555555 \N \N \N \N \N 84 \N \N \N +14167 2025-11-22 16:55:32.251405+00 2025-11-22 16:55:32.251415+00 f t Rocio Barbarini barbarini18091993@gmail.com +541130436900 \N Cramer 1868 4 c \N \N -34.5670488 -58.4595158 3 2237 \N \N +14349 2025-11-24 14:50:42.992443+00 2025-11-24 14:50:42.992454+00 f t Invitado Amar invitado-1763995842253@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14530 2025-11-25 19:55:04.27232+00 2025-11-25 19:55:04.272335+00 f t Brenda Funes bf.brendafunes@gmail.com +541128262633 \N Jose bonifacio 1870 3c \N \N -34.6303684 -58.4544409 4 2275 \N \N +9760 2025-10-01 15:46:00.224662+00 2025-10-01 15:46:00.224673+00 f t Invitado Amar invitado-1759333559834@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7677 +9932 2025-10-03 12:30:08.360508+00 2025-10-03 12:30:08.36052+00 f t Laura Araujo laurataraujo@gmail.com +541132805580 \N Montevideo 1163 10 A \N FEMALE \N -34.5953282 -58.3898884 9 \N \N \N +10111 2025-10-06 14:36:08.804265+00 2025-10-06 14:36:08.804275+00 f t Invitado Amar invitado-1759761368446@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13188 2025-11-13 17:02:53.242992+00 2025-11-13 17:02:53.243002+00 f t Julio Fridman julio.fridman@gmail.con +541168947481 \N Zuviria 367 Pb b \N \N -34.6290116 -58.4315384 20 2130 \N \N +10474 2025-10-11 04:52:30.820266+00 2025-10-11 04:52:30.820275+00 f t Invitado Amar invitado-1760158350261@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10656 2025-10-13 21:34:53.805919+00 2025-10-13 21:34:53.805931+00 f t Invitado Amar invitado-1760391292304@example.com 55555555 \N \N \N \N \N 51 \N \N \N +13418 2025-11-15 23:06:55.520775+00 2025-11-15 23:06:55.520785+00 f t Invitado Amar invitado-1763248013804@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10838 2025-10-16 09:13:12.767613+00 2025-10-16 09:13:12.767621+00 f t Ubaldo Romero shivaespacio4@gmail.com +541159431230 \N Fitz Roy 2371 Pb.dto 4 \N \N -34.5789022 -58.4301813 112 \N \N \N +11015 2025-10-18 06:27:04.632541+00 2025-10-18 06:27:04.632554+00 f t Invitado Amar invitado-1760768823627@example.com 55555555 \N \N \N \N \N 49 \N \N \N +11198 2025-10-21 00:13:30.647596+00 2025-10-21 00:13:30.647607+00 f t Erica Luciana Colman fonoericacolman9290@gmail.com +5493541527209 \N El Ombu 444 barrio Muñoz - Tanti \N \N \N -31.7026057 -64.3967275 113 \N \N \N +11378 2025-10-23 11:23:37.353216+00 2025-10-23 11:23:37.353226+00 f t Invitado Amar invitado-1761218617107@example.com 55555555 \N \N \N \N \N 12 \N \N \N +11559 2025-10-26 16:02:39.69318+00 2025-10-26 16:02:39.693192+00 f t Invitado Amar invitado-1761494540870@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11741 2025-10-28 17:47:24.691183+00 2025-10-28 17:47:24.691193+00 f t Invitado Amar invitado-1761673643716@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11924 2025-10-30 02:43:10.218337+00 2025-10-30 02:43:10.218345+00 f t Invitado Amar invitado-1761792190501@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12108 2025-10-31 23:13:03.800844+00 2025-10-31 23:13:03.800852+00 f t Invitado Amar invitado-1761952383188@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12289 2025-11-03 18:16:28.03078+00 2025-11-03 18:16:28.030789+00 f t Invitado Amar invitado-1762193786272@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12472 2025-11-06 00:43:41.000211+00 2025-11-06 00:43:41.000222+00 f t Ana Alvarado Pérez amalvaradop@hotmail.com +541133530335 \N Santiago del estero 942 7A \N \N -34.6190929 -58.3842495 60 2040 \N \N +12654 2025-11-07 22:36:28.805988+00 2025-11-07 22:36:28.805997+00 f t Invitado Amar invitado-1762554987670@example.com 55555555 \N \N \N \N \N 22 \N \N \N +12834 2025-11-10 05:37:10.302063+00 2025-11-10 05:37:10.302071+00 f t Invitado Amar invitado-1762753029825@example.com 55555555 \N \N \N \N \N 12 \N \N \N +13017 2025-11-11 22:47:34.688796+00 2025-11-11 22:47:34.688807+00 f t Invitado Amar invitado-1762901253713@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10291 2025-10-08 19:28:16.939493+00 2025-10-08 19:28:16.939502+00 f t Analia Sola analiasola@gmail.com +541139181877 \N Batalla del Pari 923 4 15 \N FEMALE \N -34.6025771 -58.4568288 26 2114 \N \N +13621 2025-11-18 15:14:37.620011+00 2025-11-18 15:14:37.620019+00 f t PABLO Núñez elvet2001@hotmail.com +541144114932 \N Tacuari 2751 Los Polvorines \N \N \N \N 113 2179 \N \N +13807 2025-11-19 18:13:31.438191+00 2025-11-19 18:13:31.4382+00 f t Invitado Amar invitado-1763576011028@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13989 2025-11-21 01:17:56.468454+00 2025-11-21 01:17:56.468464+00 f t Invitado Amar invitado-1763687874933@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14168 2025-11-22 17:04:04.955424+00 2025-11-22 17:04:04.955434+00 f t Ariel alejo Perticaro ary.perticsro@gmail.com +541167903995 \N García Mansilla 1218 \N \N -34.4500177 -58.5512895 74 2238 \N \N +14350 2025-11-24 14:59:47.09131+00 2025-11-24 14:59:47.091318+00 f t Daiana Silva Daianaveronicasilva1@gmail.com +541144157631 \N Olga cossettini 1631 307 \N \N -34.6165551 -58.3630474 30 2253 \N \N +14531 2025-11-25 20:07:32.194232+00 2025-11-25 20:07:32.194241+00 f t Sara Bence sarabence@hotmail.com 5491156050111 \N Juncal 1624 11 \N FEMALE \N -34.5943097 -58.3904139 9 2276 \N \N +13189 2025-11-13 17:05:43.165954+00 2025-11-13 17:05:43.165965+00 f t Invitado Amar invitado-1763053543001@example.com 55555555 \N \N \N \N \N 20 \N \N \N +9933 2025-10-03 12:37:44.944871+00 2025-10-03 12:37:44.944882+00 f t Invitado Amar invitado-1759495064848@example.com 55555555 \N \N \N \N \N 91 \N \N \N +10112 2025-10-06 14:37:52.949167+00 2025-10-06 14:37:52.949176+00 f t Invitado Amar invitado-1759761472790@example.com 55555555 \N \N \N \N \N 23 \N \N \N +667 2025-04-15 01:11:12.725176+00 2025-04-15 01:11:12.725184+00 f t Noelia Demichelli noeliademichelli@yahoo.com.ar +5491156994717 \N Av. Álvarez Thomas 2332 depto C (3) \N FEMALE 1982-01-12 -34.577608765306124 -58.47430536122449 24 808 \N ndemichelli +10292 2025-10-08 19:32:41.037996+00 2025-10-08 19:32:41.038006+00 f t Invitado Amar invitado-1759951960514@example.com 55555555 \N \N \N \N \N 77 \N \N \N +10475 2025-10-11 05:08:17.230388+00 2025-10-11 05:08:17.230398+00 f t Invitado Amar invitado-1760159296878@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10657 2025-10-13 21:53:01.151462+00 2025-10-13 21:53:01.151476+00 f t Invitado Amar invitado-1760392380600@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10839 2025-10-16 09:14:46.004336+00 2025-10-16 09:14:46.004353+00 f t Invitado Amar invitado-1760606085393@example.com 55555555 \N \N \N \N \N 6 \N \N \N +11016 2025-10-18 06:32:00.304696+00 2025-10-18 06:32:00.304718+00 f t Invitado Amar invitado-1760769119392@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11199 2025-10-21 00:26:20.648442+00 2025-10-21 00:26:20.648452+00 f t Invitado Amar invitado-1761006379680@example.com 55555555 \N \N \N \N \N 60 \N \N \N +11379 2025-10-23 11:28:57.045088+00 2025-10-23 11:28:57.045097+00 f t Invitado Amar invitado-1761218936666@example.com 55555555 \N \N \N \N \N 22 \N \N \N +13419 2025-11-16 00:16:39.768737+00 2025-11-16 00:16:39.768746+00 f t Invitado Amar invitado-1763252199374@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11560 2025-10-26 16:17:58.281463+00 2025-10-26 16:17:58.281474+00 f t Tatiana Reggi Reggihomeandeco@gmail.com +541124579973 \N General paz 1032 1B \N \N -34.468624 -58.5245242 77 \N \N \N +11742 2025-10-28 17:49:02.594018+00 2025-10-28 17:49:02.594032+00 f t Invitado Amar invitado-1761673741764@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11925 2025-10-30 02:46:29.070909+00 2025-10-30 02:46:29.070919+00 f t Invitado Amar invitado-1761792388784@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12109 2025-10-31 23:15:47.187842+00 2025-10-31 23:15:47.187852+00 f t Invitado Amar invitado-1761952546375@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12290 2025-11-03 18:22:11.196914+00 2025-11-03 18:22:11.196926+00 f t Invitado Amar invitado-1762194130135@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12473 2025-11-06 00:49:30.932701+00 2025-11-06 00:49:30.93271+00 f t Invitado Amar invitado-1762390170829@example.com 55555555 \N \N \N \N \N 60 \N \N \N +12655 2025-11-07 22:45:47.820813+00 2025-11-07 22:45:47.820822+00 f t Invitado Amar invitado-1762555547417@example.com 55555555 \N \N \N \N \N 74 \N \N \N +12835 2025-11-10 07:58:09.449681+00 2025-11-10 07:58:09.449692+00 f t Invitado Amar invitado-1762761489107@example.com 55555555 \N \N \N \N \N 71 \N \N \N +13018 2025-11-11 22:59:49.196889+00 2025-11-11 22:59:49.196897+00 f t Invitado Amar invitado-1762901988835@example.com 55555555 \N \N \N \N \N 21 \N \N \N +13622 2025-11-18 15:54:21.294221+00 2025-11-18 15:54:21.29423+00 f t Invitado Amar invitado-1763481260886@example.com 55555555 \N \N \N \N \N 74 \N \N \N +13808 2025-11-19 18:17:42.729977+00 2025-11-19 18:17:42.729986+00 f t Invitado Amar invitado-1763576261784@example.com 55555555 \N \N \N \N \N 47 \N \N \N +13990 2025-11-21 01:22:22.027904+00 2025-11-21 01:22:22.027913+00 f t Invitado Amar invitado-1763688142375@example.com 55555555 \N \N \N \N \N 26 \N \N \N +14169 2025-11-22 17:05:55.913346+00 2025-11-22 17:05:55.913356+00 f t Invitado Amar invitado-1763831155066@example.com 55555555 \N \N \N \N \N 87 \N \N \N +14351 2025-11-24 15:15:41.771716+00 2025-11-24 15:15:41.771726+00 f t Invitado Amar invitado-1763997341938@example.com 55555555 \N \N \N \N \N 41 \N \N \N +14532 2025-11-25 20:19:27.478283+00 2025-11-25 20:19:27.478292+00 f t Invitado Amar invitado-1764101966120@example.com 55555555 \N \N \N \N \N 39 \N \N \N +9761 2025-10-01 15:49:16.210966+00 2025-10-01 15:49:16.210978+00 f t Invitado Amar invitado-1759333755496@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-7678 +9934 2025-10-03 12:53:51.164789+00 2025-10-03 12:53:51.1648+00 f t Invitado Amar invitado-1759496031311@example.com 55555555 \N \N \N \N \N 69 \N \N \N +10113 2025-10-06 14:39:10.183944+00 2025-10-06 14:39:10.183953+00 f t Invitado Amar invitado-1759761549689@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13190 2025-11-13 17:24:05.579486+00 2025-11-13 17:24:05.579498+00 f t Invitado Amar invitado-1763054643374@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10293 2025-10-08 19:37:01.397079+00 2025-10-08 19:37:01.397088+00 f t Daniela Gil danielitagil2017@gmail.com +541170378074 \N Pasteur 240 7° piso. Entre PERÓN y Sarmiento \N \N \N -34.6071658 -58.3992722 18 \N \N \N +10476 2025-10-11 05:09:13.466852+00 2025-10-11 05:09:13.466862+00 f t Invitado Amar invitado-1760159352660@example.com 55555555 \N \N \N \N \N 85 \N \N \N +10658 2025-10-13 22:02:22.940946+00 2025-10-13 22:02:22.941225+00 f t Invitado Amar invitado-1760392942497@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10840 2025-10-16 09:48:58.802559+00 2025-10-16 09:48:58.802569+00 f t Invitado Amar invitado-1760608138389@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11017 2025-10-18 10:05:06.519636+00 2025-10-18 10:05:06.519648+00 f t Invitado Amar invitado-1760781905886@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11200 2025-10-21 00:39:51.102304+00 2025-10-21 00:39:51.102971+00 t t Invitado Amar invitado-1761007190447@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13420 2025-11-16 01:25:34.369433+00 2025-11-16 01:25:34.369445+00 f t Invitado Amar invitado-1763256333488@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11380 2025-10-23 11:33:33.738752+00 2025-10-23 11:33:33.738761+00 f t Karem Incarnato karemincarnato@gmail.com +541169524417 \N Billinghurst 142 B \N \N -34.6089762 -58.4160745 112 \N \N \N +11561 2025-10-26 16:21:39.265511+00 2025-10-26 16:21:39.265519+00 f t Invitado Amar invitado-1761495697959@example.com 55555555 \N \N \N \N \N 91 \N \N \N +11743 2025-10-28 17:49:28.087846+00 2025-10-28 17:49:28.087855+00 f t Invitado Amar invitado-1761673767570@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11926 2025-10-30 02:58:24.209985+00 2025-10-30 02:58:24.209994+00 f t Invitado Amar invitado-1761793103442@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12110 2025-10-31 23:17:14.22041+00 2025-10-31 23:17:14.220422+00 f t Invitado Amar invitado-1761952633532@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13623 2025-11-18 15:57:58.210034+00 2025-11-18 15:57:58.210042+00 f t Invitado Amar invitado-1763481477015@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12291 2025-11-03 18:36:39.331079+00 2025-11-03 18:36:39.331088+00 f t Vanessa Clavel clavelvanessa83@gmail.com +5491158555029 \N Cramer 1718 6B \N \N -34.5688328 -58.4579786 3 1998 \N \N +13809 2025-11-19 18:22:55.485402+00 2025-11-19 18:22:55.485414+00 f t Maru Canales maruu.canales@gmail.com +5491162153613 \N Juramento 2801 13C \N MALE \N -34.5641829 -58.4604917 3 2197 \N \N +13991 2025-11-21 01:26:05.852421+00 2025-11-21 01:26:05.852429+00 f t Invitado Amar invitado-1763688365423@example.com 55555555 \N \N \N \N \N 49 \N \N \N +12656 2025-11-07 22:56:01.181743+00 2025-11-07 22:56:01.181752+00 f t Invitado Amar invitado-1762556160413@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14170 2025-11-22 17:07:05.35973+00 2025-11-22 17:07:05.35974+00 f t Invitado Amar invitado-1763831225002@example.com 55555555 \N \N \N \N \N 74 \N \N \N +14352 2025-11-24 15:27:56.559169+00 2025-11-24 15:27:56.559177+00 f t Invitado Amar invitado-1763998074808@example.com 55555555 \N \N \N \N \N 44 \N \N \N +12836 2025-11-10 08:12:02.420014+00 2025-11-10 08:12:02.420028+00 f t Agustina Iorgi iorgiaguatina@hotmail.com +541163050899 \N Mariano sanchez de loria 539 11 \N \N -34.7623887 -58.405053 71 2087 \N \N +12474 2025-11-06 00:51:05.55981+00 2025-11-06 00:51:05.559819+00 f t Ariel Marzol arimar68@hotmail.com +541151827498 \N Santiago del estero 942 7A \N MALE \N -34.6190929 -58.3842495 60 2041 \N \N +13019 2025-11-11 23:03:59.269286+00 2025-11-11 23:03:59.269297+00 f t Invitado Amar invitado-1762902238059@example.com 55555555 \N \N \N \N \N 46 \N \N \N +14533 2025-11-25 20:50:27.608166+00 2025-11-25 20:50:27.608175+00 f t Invitado Amar invitado-1764103826366@example.com 55555555 \N \N \N \N \N 71 \N \N \N +9762 2025-10-01 15:51:22.940604+00 2025-10-01 15:51:22.940613+00 f t Invitado Amar invitado-1759333881792@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7679 +9935 2025-10-03 12:54:52.447119+00 2025-10-03 12:54:52.447155+00 f t Invitado Amar invitado-1759496092783@example.com 55555555 \N \N \N \N \N 6 \N \N \N +10294 2025-10-08 19:40:50.185971+00 2025-10-08 19:40:50.185979+00 f t Ionika Fanyu Lin ionika.lin@gmail.com 5491153443167 \N Posadas 1120 piso 4c. entre esquina Cerrito y libertad \N FEMALE \N -34.5880441 -58.3862277 9 \N \N \N +10477 2025-10-11 05:09:43.698391+00 2025-10-11 05:09:43.698403+00 f t Invitado Amar invitado-1760159382969@example.com 55555555 \N \N \N \N \N 87 \N \N \N +10659 2025-10-13 22:04:24.985621+00 2025-10-13 22:04:24.985952+00 f t Invitado Amar invitado-1760393063636@example.com 55555555 \N \N \N \N \N 55 \N \N \N +10841 2025-10-16 09:53:16.127347+00 2025-10-16 09:53:16.127355+00 f t Invitado Amar invitado-1760608395543@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11018 2025-10-18 10:41:07.041907+00 2025-10-18 10:41:07.041916+00 f t Nestor fabian Culcuy fabian72010@gmail.com +541123843068 \N Hipolito yrigoyen 1650 15 \N \N -34.610251 -58.3897147 49 \N \N \N +11201 2025-10-21 00:53:29.903085+00 2025-10-21 00:53:29.904362+00 f t Invitado Amar invitado-1761008009086@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13191 2025-11-13 17:32:01.08681+00 2025-11-13 17:32:01.086824+00 f t iris moreno imoreno39@yahoo.con.ar 91150412204 \N Av Montes de Oca 459 8 B \N FEMALE 1954-04-14 -34.6340219 -58.3756799 33 2131 \N \N +11381 2025-10-23 13:14:40.739246+00 2025-10-23 13:14:40.739255+00 f t estela sapper Stellas2010.es@gmail.com 91154102471 \N santiago del estero 1298 7 C \N FEMALE \N -34.8234099 -56.2213308 60 1904 \N \N +10114 2025-10-06 14:44:05.058175+00 2025-10-06 14:44:05.058185+00 f t Viviana Cambría vivicambria@gmail.com 5491169525109 \N Ciudad de la Paz 450 3 D \N FEMALE \N -34.5745032 -58.4413554 1 \N \N \N +11562 2025-10-26 16:21:54.620279+00 2025-10-26 16:21:54.620288+00 f t Invitado Amar invitado-1761495714215@example.com 55555555 \N \N \N \N \N 77 \N \N \N +11744 2025-10-28 17:53:44.001878+00 2025-10-28 17:53:44.001886+00 f t Invitado Amar invitado-1761674022019@example.com 55555555 \N \N \N \N \N 85 \N \N \N +11927 2025-10-30 03:07:13.553028+00 2025-10-30 03:07:13.553037+00 f t Invitado Amar invitado-1761793632844@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12111 2025-10-31 23:29:38.384144+00 2025-10-31 23:29:38.384154+00 f t Invitado Amar invitado-1761953378072@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12292 2025-11-03 18:40:46.571849+00 2025-11-03 18:40:46.571857+00 f t Invitado Amar invitado-1762195246639@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12475 2025-11-06 00:54:17.78206+00 2025-11-06 00:54:17.782072+00 f t Invitado Amar invitado-1762390457445@example.com 55555555 \N \N \N \N \N 60 \N \N \N +6358 2025-08-12 13:21:54.375423+00 2025-08-12 13:21:54.375432+00 f t sofia Sosa sofisosa09@gmail.com +541157651677 \N Av Acoyte 656 2 4 \N FEMALE \N -34.6113551 -58.4392045 14 1566 \N ssosa +12837 2025-11-10 08:57:31.255289+00 2025-11-10 08:57:31.255297+00 f t Invitado Amar invitado-1762765049807@example.com 55555555 \N \N \N \N \N 60 \N \N \N +13020 2025-11-11 23:06:45.426672+00 2025-11-11 23:06:45.426685+00 f t Invitado Amar invitado-1762902405425@example.com 55555555 \N \N \N \N \N 8 \N \N \N +13421 2025-11-16 01:53:57.263502+00 2025-11-16 01:53:57.263512+00 f t Invitado Amar invitado-1763258036659@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13624 2025-11-18 16:02:50.380894+00 2025-11-18 16:02:50.380902+00 f t Invitado Amar invitado-1763481769895@example.com 55555555 \N \N \N \N \N 28 \N \N \N +13810 2025-11-19 18:30:16.863523+00 2025-11-19 18:30:16.863532+00 f t Invitado Amar invitado-1763577017750@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13992 2025-11-21 01:28:17.694306+00 2025-11-21 01:28:17.694318+00 f t Invitado Amar invitado-1763688497096@example.com 55555555 \N \N \N \N \N 147 \N \N \N +14171 2025-11-22 17:19:37.853423+00 2025-11-22 17:19:37.853435+00 f t Invitado Amar invitado-1763831976551@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14353 2025-11-24 15:30:48.915733+00 2025-11-24 15:30:48.915743+00 f t Invitado Amar invitado-1763998248476@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14534 2025-11-25 20:59:31.647627+00 2025-11-25 20:59:31.647636+00 f t Invitado Amar invitado-1764104371066@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13192 2025-11-13 17:56:07.880196+00 2025-11-13 17:56:07.880206+00 f t Invitado Amar invitado-1763056565937@example.com 55555555 \N \N \N \N \N 77 \N \N \N +9936 2025-10-03 12:58:24.693619+00 2025-10-03 12:58:24.693632+00 f t Invitado Amar invitado-1759496304991@example.com 55555555 \N \N \N \N \N 69 \N \N \N +13422 2025-11-16 02:23:18.695908+00 2025-11-16 02:23:18.695917+00 f t martina pasini martinaconstanzapasini@gmail.com +541127084491 \N salguero 2132 6c \N \N -34.5860702 -58.4121869 1 2160 \N \N +9763 2025-10-01 15:52:16.413131+00 2025-10-01 15:52:16.413144+00 f t Ernesto Jolly ernestojolly@gmail.com +541140455030 \N Virrey del pino 2604 4 D \N MALE \N -34.5715099 -58.4626098 3 \N \N iamar-7680 +10295 2025-10-08 19:57:43.761753+00 2025-10-08 19:57:43.761761+00 f t Invitado Amar invitado-1759953463053@example.com 55555555 \N \N \N \N \N 73 \N \N \N +10478 2025-10-11 05:14:01.425828+00 2025-10-11 05:14:01.425838+00 f t Invitado Amar invitado-1760159641062@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10660 2025-10-13 22:36:45.406573+00 2025-10-13 22:36:45.406589+00 f t Invitado Amar invitado-1760395003376@example.com 55555555 \N \N \N \N \N 59 \N \N \N +10842 2025-10-16 09:55:54.079691+00 2025-10-16 09:55:54.079699+00 f t Invitado Amar invitado-1760608553703@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11019 2025-10-18 10:59:08.710414+00 2025-10-18 10:59:08.710423+00 f t Invitado Amar invitado-1760785148056@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11202 2025-10-21 01:12:18.091364+00 2025-10-21 01:12:18.091373+00 f t Invitado Amar invitado-1761009138590@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11382 2025-10-23 13:52:03.192298+00 2025-10-23 13:52:03.192311+00 f t Invitado Amar invitado-1761227521833@example.com 55555555 \N \N \N \N \N 82 \N \N \N +11563 2025-10-26 16:25:29.257507+00 2025-10-26 16:25:29.257516+00 f t Invitado Amar invitado-1761495928848@example.com 55555555 \N \N \N \N \N 74 \N \N \N +13625 2025-11-18 16:09:18.814509+00 2025-11-18 16:09:18.814517+00 f t Invitado Amar invitado-1763482157717@example.com 55555555 \N \N \N \N \N 28 \N \N \N +13811 2025-11-19 18:38:37.449956+00 2025-11-19 18:38:37.449966+00 f t Invitado Amar invitado-1763577517028@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11928 2025-10-30 03:09:21.617976+00 2025-10-30 03:09:21.617988+00 f t Invitado Amar invitado-1761793761299@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12112 2025-10-31 23:33:10.154976+00 2025-10-31 23:33:10.154985+00 f t Invitado Amar invitado-1761953588579@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12293 2025-11-03 19:25:13.15411+00 2025-11-03 19:25:13.154119+00 f t Invitado Amar invitado-1762197912627@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11745 2025-10-28 17:58:05.088955+00 2025-10-28 17:58:05.088967+00 f t Guillermo Minici sapo.minici@gmail.com +541157449055 \N Intendente becco 2196 PB \N MALE \N -34.4607746 -58.5336489 155 1996 \N \N +12476 2025-11-06 01:06:43.307446+00 2025-11-06 01:06:43.307459+00 f t Invitado Amar invitado-1762391202871@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12657 2025-11-07 23:08:49.506779+00 2025-11-07 23:08:49.506788+00 f t Pablo Morales pabloam_63@hotmail.com +541134583911 \N Guatemala 2356 casa naranja, rejas negras \N \N -32.9564935 -60.7166905 74 2065 \N \N +12838 2025-11-10 09:32:02.823545+00 2025-11-10 09:32:02.823557+00 f t Invitado Amar invitado-1762767121838@example.com 55555555 \N \N \N \N \N 34 \N \N \N +13021 2025-11-11 23:09:46.276821+00 2025-11-11 23:09:46.276829+00 f t Invitado Amar invitado-1762902585781@example.com 55555555 \N \N \N \N \N 58 \N \N \N +13993 2025-11-21 01:52:03.626924+00 2025-11-21 01:52:03.626934+00 f t Isabel Sauce isabelsauce@gmail.com +541158844652 \N Salta 683 1 D \N \N -34.6163041 -58.3831303 49 2215 \N \N +14172 2025-11-22 17:45:07.103508+00 2025-11-22 17:45:07.10352+00 f t Invitado Amar invitado-1763833506627@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14354 2025-11-24 15:32:07.381843+00 2025-11-24 15:32:07.381854+00 f t Invitado Amar invitado-1763998326260@example.com 55555555 \N \N \N \N \N 44 \N \N \N +14535 2025-11-25 21:08:37.458721+00 2025-11-25 21:08:37.458746+00 f t Invitado Amar invitado-1764104915411@example.com 55555555 \N \N \N \N \N 39 \N \N \N +9764 2025-10-01 15:52:25.693714+00 2025-10-01 15:52:25.693723+00 f t Invitado Amar invitado-1759333945315@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7681 +9937 2025-10-03 13:04:23.778106+00 2025-10-03 13:04:23.778116+00 f t Invitado Amar invitado-1759496663502@example.com 55555555 \N \N \N \N \N 28 \N \N \N +10116 2025-10-06 14:44:15.957987+00 2025-10-06 14:44:15.957996+00 f t Invitado Amar invitado-1759761855701@example.com 55555555 \N \N \N \N \N 47 \N \N \N +10296 2025-10-08 20:10:22.907149+00 2025-10-08 20:10:22.907158+00 f t Invitado Amar invitado-1759954222036@example.com 55555555 \N \N \N \N \N 38 \N \N \N +10479 2025-10-11 10:08:30.181716+00 2025-10-11 10:08:30.181725+00 f t Invitado Amar invitado-1760177309020@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10661 2025-10-13 22:45:44.140064+00 2025-10-13 22:45:44.140079+00 f t Invitado Amar invitado-1760395542826@example.com 55555555 \N \N \N \N \N 35 \N \N \N +10843 2025-10-16 10:56:08.915389+00 2025-10-16 10:56:08.915398+00 f t Invitado Amar invitado-1760612168483@example.com 55555555 \N \N \N \N \N 50 \N \N \N +11020 2025-10-18 11:31:21.095765+00 2025-10-18 11:31:21.095773+00 f t Invitado Amar invitado-1760787079409@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13193 2025-11-13 18:18:11.476848+00 2025-11-13 18:18:11.476857+00 f t Invitado Amar invitado-1763057890991@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11203 2025-10-21 01:29:57.372144+00 2025-10-21 01:29:57.372153+00 f t Dámaris crespillo damariscrespillo@gmail.com +541132914422 \N Carlos calvo 3432 2F \N FEMALE \N -34.6234818 -58.4141021 11 \N \N \N +11383 2025-10-23 14:02:28.835527+00 2025-10-23 14:02:28.835535+00 f t Invitado Amar invitado-1761228148234@example.com 55555555 \N \N \N \N \N 151 \N \N \N +11564 2025-10-26 16:52:20.521835+00 2025-10-26 16:52:20.521843+00 f t Invitado Amar invitado-1761497540115@example.com 55555555 \N \N \N \N \N 21 \N \N \N +11746 2025-10-28 18:02:18.765956+00 2025-10-28 18:02:18.765966+00 f t Invitado Amar invitado-1761674538953@example.com 55555555 \N \N \N \N \N 155 \N \N \N +11929 2025-10-30 03:16:02.986107+00 2025-10-30 03:16:02.986115+00 f t Invitado Amar invitado-1761794160124@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12113 2025-10-31 23:36:06.386837+00 2025-10-31 23:36:06.386845+00 f t Invitado Amar invitado-1761953763301@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12294 2025-11-03 19:25:29.414729+00 2025-11-03 19:25:29.414738+00 f t Invitado Amar invitado-1762197929681@example.com 55555555 \N \N \N \N \N 85 \N \N \N +12477 2025-11-06 01:07:55.567523+00 2025-11-06 01:07:55.567532+00 f t Invitado Amar invitado-1762391275087@example.com 55555555 \N \N \N \N \N 77 \N \N \N +12658 2025-11-07 23:09:15.687957+00 2025-11-07 23:09:15.687968+00 f t Invitado Amar invitado-1762556954292@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12839 2025-11-10 09:45:54.47066+00 2025-11-10 09:45:54.470671+00 f t Invitado Amar invitado-1762767955649@example.com 55555555 \N \N \N \N \N 12 \N \N \N +13022 2025-11-11 23:10:26.010622+00 2025-11-11 23:10:26.010635+00 f t Invitado Amar invitado-1762902625045@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13423 2025-11-16 02:25:27.339312+00 2025-11-16 02:25:27.33932+00 f t Invitado Amar invitado-1763259927168@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13626 2025-11-18 16:22:53.213067+00 2025-11-18 16:22:53.213076+00 f t Invitado Amar invitado-1763482973178@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13812 2025-11-19 18:46:36.983561+00 2025-11-19 18:46:36.98357+00 f t Jazmin Fernández jazmin.93f@gmail.com +541133350234 \N Maure 2569 5B \N \N -34.5727896 -58.4433231 38 2199 \N \N +13994 2025-11-21 01:57:54.620757+00 2025-11-21 01:57:54.620769+00 f t Invitado Amar invitado-1763690274393@example.com 55555555 \N \N \N \N \N 49 \N \N \N +14173 2025-11-22 18:12:57.945002+00 2025-11-22 18:12:57.945011+00 f t Invitado Amar invitado-1763835175886@example.com 55555555 \N \N \N \N \N 37 \N \N \N +14355 2025-11-24 15:38:34.553678+00 2025-11-24 15:38:34.553688+00 f t Invitado Amar invitado-1763998715107@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14536 2025-11-25 21:10:49.174182+00 2025-11-25 21:10:49.174194+00 f t Invitado Amar invitado-1764105048481@example.com 55555555 \N \N \N \N \N 43 \N \N \N +9765 2025-10-01 15:54:37.038922+00 2025-10-01 15:54:37.038934+00 f t Invitado Amar invitado-1759334074487@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-7682 +9938 2025-10-03 13:11:54.850337+00 2025-10-03 13:11:54.850348+00 f t Invitado Amar invitado-1759497114938@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10117 2025-10-06 14:55:03.913986+00 2025-10-06 14:55:03.914+00 f t Invitado Amar invitado-1759762503169@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10297 2025-10-08 20:12:44.817464+00 2025-10-08 20:12:44.817477+00 f t Marina Schulze marinaschulze5@gmail.com 5491144069907 \N Magariños Cervantes 1804 4 E \N FEMALE \N -34.6067062 -58.466078 26 \N \N \N +10480 2025-10-11 10:24:06.346393+00 2025-10-11 10:24:06.346403+00 f t Invitado Amar invitado-1760178244803@example.com 55555555 \N \N \N \N \N 86 \N \N \N +10662 2025-10-13 22:49:36.013349+00 2025-10-13 22:49:36.013362+00 f t Invitado Amar invitado-1760395775573@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10844 2025-10-16 11:48:35.448271+00 2025-10-16 11:48:35.448279+00 f t Invitado Amar invitado-1760615314822@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11021 2025-10-18 11:51:48.000609+00 2025-10-18 11:51:48.00063+00 f t Invitado Amar invitado-1760788307432@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11204 2025-10-21 01:32:53.293793+00 2025-10-21 01:32:53.293801+00 f t Invitado Amar invitado-1761010372860@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11384 2025-10-23 14:06:24.54553+00 2025-10-23 14:06:24.545543+00 f t Invitado Amar invitado-1761228384216@example.com 55555555 \N \N \N \N \N 154 \N \N \N +11565 2025-10-26 16:58:24.377732+00 2025-10-26 16:58:24.377742+00 f t Invitado Amar invitado-1761497903681@example.com 55555555 \N \N \N \N \N 55 \N \N \N +11747 2025-10-28 18:04:08.993854+00 2025-10-28 18:04:08.993865+00 f t Invitado Amar invitado-1761674647345@example.com 55555555 \N \N \N \N \N 49 \N \N \N +11930 2025-10-30 03:16:52.855219+00 2025-10-30 03:16:52.855228+00 f t Invitado Amar invitado-1761794210123@example.com 55555555 \N \N \N \N \N 86 \N \N \N +12114 2025-10-31 23:53:30.4756+00 2025-10-31 23:53:30.47561+00 f t Invitado Amar invitado-1761954810063@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12295 2025-11-03 19:25:58.987861+00 2025-11-03 19:25:58.98787+00 f t MÓNICA ALICIA SÁNCHEZ monsa68.3@gmail.com 5491167564788 \N Francisco Cúneo 2525 depto 2 \N FEMALE 1968-12-28 -34.617197 -58.5216597 21 2000 \N \N +13194 2025-11-13 18:25:16.800305+00 2025-11-13 18:25:16.800317+00 f t Serena Garbarino garbarinoserena@gmail.com +5491169685242 \N Doctor Eleodoro Lobos 264 8A \N \N -34.6144429 -58.4356921 14 2133 \N \N +13424 2025-11-16 05:03:17.407918+00 2025-11-16 05:03:17.407928+00 f t Invitado Amar invitado-1763269396844@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12478 2025-11-06 01:24:20.776791+00 2025-11-06 01:24:20.7768+00 f t Carla Palacios carlalpalacios@yahoo.com.ar +541138135868 \N José Gervasio Artigas 2042 10 E \N \N \N \N 34 2042 \N \N +12659 2025-11-07 23:11:09.994196+00 2025-11-07 23:11:09.994205+00 f t Invitado Amar invitado-1762557069598@example.com 55555555 \N \N \N \N \N 74 \N \N \N +12840 2025-11-10 10:16:20.720669+00 2025-11-10 10:16:20.720677+00 f t Invitado Amar invitado-1762769779879@example.com 55555555 \N \N \N \N \N 17 \N \N \N +13023 2025-11-11 23:29:18.319614+00 2025-11-11 23:29:18.319623+00 f t Invitado Amar invitado-1762903756309@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13627 2025-11-18 16:28:00.114395+00 2025-11-18 16:28:00.114407+00 f t Invitado Amar invitado-1763483279669@example.com 55555555 \N \N \N \N \N 27 \N \N \N +13813 2025-11-19 18:47:38.963546+00 2025-11-19 18:47:38.963554+00 f t Lorena Rodrigues Lorepaquete15@gmail.com +541158042704 \N Moldes 2906 2906 2b \N \N -34.5555009 -58.4665167 25 2198 \N \N +13995 2025-11-21 02:05:02.678798+00 2025-11-21 02:05:02.678812+00 f t Invitado Amar invitado-1763690702343@example.com 55555555 \N \N \N \N \N 87 \N \N \N +14174 2025-11-22 18:29:27.678949+00 2025-11-22 18:29:27.678958+00 f t Invitado Amar invitado-1763836166616@example.com 55555555 \N \N \N \N \N 62 \N \N \N +14356 2025-11-24 15:39:01.618622+00 2025-11-24 15:39:01.618636+00 f t Invitado Amar invitado-1763998741134@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14537 2025-11-25 21:37:00.32685+00 2025-11-25 21:37:00.326859+00 f t Invitado Amar invitado-1764106619421@example.com 55555555 \N \N \N \N \N 147 \N \N \N +9766 2025-10-01 15:55:41.230368+00 2025-10-01 15:55:41.230377+00 f t Invitado Amar invitado-1759334140737@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7683 +9939 2025-10-03 13:15:06.522753+00 2025-10-03 13:15:06.522763+00 f t Invitado Amar invitado-1759497306074@example.com 55555555 \N \N \N \N \N 88 \N \N \N +10118 2025-10-06 14:56:48.957677+00 2025-10-06 14:56:48.957686+00 f t Invitado Amar invitado-1759762608774@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13195 2025-11-13 18:29:26.868661+00 2025-11-13 18:29:26.868669+00 f t Invitado Amar invitado-1763058567172@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10298 2025-10-08 20:13:22.492201+00 2025-10-08 20:13:22.49221+00 f t Belen Juzviaczck beljuzviaczck@hotmail.com.ar +541130579057 \N PALPA 3236 6 D \N \N -34.5773874 -58.4515481 38 \N \N \N +10481 2025-10-11 10:47:29.412026+00 2025-10-11 10:47:29.412038+00 f t Invitado Amar invitado-1760179648902@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10663 2025-10-13 23:05:14.730305+00 2025-10-13 23:05:14.730315+00 f t Invitado Amar invitado-1760396713817@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10845 2025-10-16 11:55:15.317018+00 2025-10-16 11:55:15.317029+00 f t Invitado Amar invitado-1760615714834@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11022 2025-10-18 12:17:02.999179+00 2025-10-18 12:17:02.999191+00 f t Invitado Amar invitado-1760789822406@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11205 2025-10-21 01:43:12.637328+00 2025-10-21 01:43:12.637676+00 f t Invitado Amar invitado-1761010991575@example.com 55555555 \N \N \N \N \N 45 \N \N \N +13425 2025-11-16 11:22:19.259552+00 2025-11-16 11:22:19.259566+00 f t Invitado Amar invitado-1763292138241@example.com 55555555 \N \N \N \N \N \N \N \N \N +11385 2025-10-23 14:35:37.609232+00 2025-10-23 14:35:37.60924+00 f t Liliana lucero karinalucero631@gmail.com +541163579775 \N Pasaje doctor Alejandro Korn 4417 PB A \N \N \N \N 112 \N \N \N +13628 2025-11-18 16:35:14.265446+00 2025-11-18 16:35:14.265459+00 f t Invitado Amar invitado-1763483713339@example.com 55555555 \N \N \N \N \N 73 \N \N \N +11566 2025-10-26 17:22:00.464516+00 2025-10-26 17:22:00.464525+00 f t Heli Zhu helicarolinazhu@gmail.com +541123992537 \N Avenida triunvirato 5742 \N \N -34.5657264 -58.4951787 29 \N \N \N +11748 2025-10-28 18:15:39.054162+00 2025-10-28 18:15:39.054179+00 f t Invitado Amar invitado-1761675337522@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11931 2025-10-30 03:20:33.689612+00 2025-10-30 03:20:33.689622+00 f t Invitado Amar invitado-1761794431540@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12115 2025-11-01 00:17:30.549018+00 2025-11-01 00:17:30.549028+00 f t Invitado Amar invitado-1761956250177@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12296 2025-11-03 19:51:55.627779+00 2025-11-03 19:51:55.627789+00 f t Invitado Amar invitado-1762199514856@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12479 2025-11-06 01:24:46.003372+00 2025-11-06 01:24:46.003385+00 f t Invitado Amar invitado-1762392285048@example.com 55555555 \N \N \N \N \N 31 \N \N \N +12660 2025-11-07 23:16:51.514545+00 2025-11-07 23:16:51.514553+00 f t Invitado Amar invitado-1762557410208@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12841 2025-11-10 10:31:22.520074+00 2025-11-10 10:31:22.520083+00 f t Invitado Amar invitado-1762770680398@example.com 55555555 \N \N \N \N \N 39 \N \N \N +13024 2025-11-11 23:38:14.902979+00 2025-11-11 23:38:14.902987+00 f t Invitado Amar invitado-1762904294401@example.com 55555555 \N \N \N \N \N 5 \N \N \N +13814 2025-11-19 18:51:57.41672+00 2025-11-19 18:51:57.416733+00 f t Invitado Amar invitado-1763578317626@example.com 55555555 \N \N \N \N \N 25 \N \N \N +13996 2025-11-21 02:05:11.289861+00 2025-11-21 02:05:11.289874+00 f t Invitado Amar invitado-1763690710886@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14175 2025-11-22 18:35:28.397608+00 2025-11-22 18:35:28.397617+00 f t Roberto Bolivar rjbolivar76@gmail.com +541150167782 \N Madrid 6991 6 C \N \N \N -34.633971 -58.5292139 62 2239 \N \N +14357 2025-11-24 16:08:30.111538+00 2025-11-24 16:08:30.111548+00 f t Invitado Amar invitado-1764000508904@example.com 55555555 \N \N \N \N \N 79 \N \N \N +14538 2025-11-25 21:38:49.454147+00 2025-11-25 21:38:49.454156+00 f t Invitado Amar invitado-1764106728647@example.com 55555555 \N \N \N \N \N 49 \N \N \N +9767 2025-10-01 16:02:29.716294+00 2025-10-01 16:02:29.716306+00 f t Invitado Amar invitado-1759334549331@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7684 +9940 2025-10-03 13:20:10.892384+00 2025-10-03 13:20:10.892394+00 f t Invitado Amar invitado-1759497609469@example.com 55555555 \N \N \N \N \N 72 \N \N \N +10119 2025-10-06 15:26:05.242688+00 2025-10-06 15:26:05.242696+00 f t Paula EDITH Ceniceros paula_edith@hotmail.com 5491132043918 \N BOULOGNE SUR MER 522 1 a \N FEMALE \N -34.6040464 -58.4066289 18 \N \N \N +10299 2025-10-08 20:27:51.024878+00 2025-10-08 20:27:51.024887+00 f t Invitado Amar invitado-1759955270638@example.com 55555555 \N \N \N \N \N 40 \N \N \N +10482 2025-10-11 10:49:42.676008+00 2025-10-11 10:49:42.676017+00 f t Invitado Amar invitado-1760179782504@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10664 2025-10-13 23:07:01.229868+00 2025-10-13 23:07:01.229889+00 f t Invitado Amar invitado-1760396820748@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10846 2025-10-16 11:59:32.885381+00 2025-10-16 11:59:32.885391+00 f t Invitado Amar invitado-1760615972259@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11023 2025-10-18 12:37:21.444989+00 2025-10-18 12:37:21.444999+00 f t Invitado Amar invitado-1760791040288@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11206 2025-10-21 02:23:07.752109+00 2025-10-21 02:23:07.752629+00 f t Invitado Amar invitado-1761013387268@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11386 2025-10-23 14:41:16.636164+00 2025-10-23 14:41:16.636173+00 f t Invitado Amar invitado-1761230477028@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11567 2025-10-26 17:25:12.706288+00 2025-10-26 17:25:12.706296+00 f t Invitado Amar invitado-1761499512738@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11749 2025-10-28 18:40:02.050141+00 2025-10-28 18:40:02.050158+00 f t Invitado Amar invitado-1761676801183@example.com 55555555 \N \N \N \N \N 31 \N \N \N +3905 2025-07-04 16:13:52.07847+00 2025-07-04 16:13:52.078479+00 f t Sebastian Ezequiel lsebastianezequiel@gmail.com +541156592012 \N Fragata sarmiento 1832 7C \N \N \N -34.6027335 -58.4595963 34 1287 \N sezequiel +11932 2025-10-30 03:31:32.193061+00 2025-10-30 03:31:32.19307+00 f t Invitado Amar invitado-1761795091601@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12116 2025-11-01 00:19:06.430018+00 2025-11-01 00:19:06.430027+00 f t Invitado Amar invitado-1761956346369@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12297 2025-11-03 20:07:13.501818+00 2025-11-03 20:07:13.501826+00 f t Invitado Amar invitado-1762200317798@example.com 55555555 \N \N \N \N \N 31 \N \N \N +12480 2025-11-06 01:31:24.48893+00 2025-11-06 01:31:24.488938+00 f t Invitado Amar invitado-1762392684231@example.com 55555555 \N \N \N \N \N 34 \N \N \N +12661 2025-11-07 23:20:39.388518+00 2025-11-07 23:20:39.388528+00 f t Invitado Amar invitado-1762557639227@example.com 55555555 \N \N \N \N \N 56 \N \N \N +12842 2025-11-10 10:58:14.361376+00 2025-11-10 10:58:14.361385+00 f t Invitado Amar invitado-1762772293958@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13025 2025-11-11 23:48:00.386346+00 2025-11-11 23:48:00.386355+00 f t Invitado Amar invitado-1762904879910@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13196 2025-11-13 18:34:16.066868+00 2025-11-13 18:34:16.066878+00 f t Invitado Amar invitado-1763058856201@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13426 2025-11-16 11:36:02.21811+00 2025-11-16 11:36:02.218124+00 f t Invitado Amar invitado-1763292961364@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13629 2025-11-18 16:36:12.288785+00 2025-11-18 16:36:12.288793+00 f t Invitado Amar invitado-1763483772067@example.com 55555555 \N \N \N \N \N 27 \N \N \N +13815 2025-11-19 18:57:30.163564+00 2025-11-19 18:57:30.163576+00 f t Invitado Amar invitado-1763578649921@example.com 55555555 \N \N \N \N \N 25 \N \N \N +13997 2025-11-21 02:07:29.505158+00 2025-11-21 02:07:29.50517+00 f t Invitado Amar invitado-1763690849139@example.com 55555555 \N \N \N \N \N 19 \N \N \N +14176 2025-11-22 18:35:41.569434+00 2025-11-22 18:35:41.569448+00 f t Invitado Amar invitado-1763836386359@example.com 55555555 \N \N \N \N \N 16 \N \N \N +14358 2025-11-24 16:31:16.156038+00 2025-11-24 16:31:16.156046+00 f t Invitado Amar invitado-1764001875114@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14539 2025-11-25 21:44:34.903664+00 2025-11-25 21:44:34.903673+00 f t Invitado Amar invitado-1764107075274@example.com 55555555 \N \N \N \N \N 21 \N \N \N +13197 2025-11-13 18:42:44.21454+00 2025-11-13 18:42:44.214549+00 f t Invitado Amar invitado-1763059362253@example.com 55555555 \N \N \N \N \N 70 \N \N \N +9941 2025-10-03 13:29:07.852134+00 2025-10-03 13:29:07.852143+00 f t Invitado Amar invitado-1759498147309@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13427 2025-11-16 12:12:59.161375+00 2025-11-16 12:12:59.161386+00 f t Invitado Amar invitado-1763295177641@example.com 55555555 \N \N \N \N \N 89 \N \N \N +10120 2025-10-06 15:35:21.27364+00 2025-10-06 15:35:21.27365+00 f t Invitado Amar invitado-1759764920946@example.com 55555555 \N \N \N \N \N 4 \N \N \N +8676 2025-09-15 19:58:40.706083+00 2025-09-15 19:58:40.706089+00 f t Elizabeth Vargas eliapv25@gmail.com +541168629524 \N Adolfo Alsina 2581 1 A \N \N \N -34.6121923 -58.4028691 18 1815 \N evargas +10300 2025-10-08 20:42:56.726062+00 2025-10-08 20:42:56.726071+00 f t Invitado Amar invitado-1759956175600@example.com 55555555 \N \N \N \N \N 156 \N \N \N +10483 2025-10-11 12:46:55.88306+00 2025-10-11 12:46:55.883071+00 f t Invitado Amar invitado-1760186815429@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10665 2025-10-13 23:15:54.65161+00 2025-10-13 23:15:54.651623+00 f t Invitado Amar invitado-1760397352921@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10847 2025-10-16 12:30:03.209969+00 2025-10-16 12:30:03.209983+00 f t Invitado Amar invitado-1760617802399@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11024 2025-10-18 13:06:09.317575+00 2025-10-18 13:06:09.317584+00 f t andrea roizman andrearaizman@hotmail.com 91157804428 \N Gral Rivas 2397 7 A \N FEMALE \N -34.7872634 -58.6296853 17 \N \N \N +11207 2025-10-21 02:56:25.862807+00 2025-10-21 02:56:25.862819+00 f t Invitado Amar invitado-1761015384692@example.com 55555555 \N \N \N \N \N 72 \N \N \N +13630 2025-11-18 16:54:14.578993+00 2025-11-18 16:54:14.579003+00 f t Invitado Amar invitado-1763484854087@example.com 55555555 \N \N \N \N \N 8 \N \N \N +13816 2025-11-19 19:02:33.078338+00 2025-11-19 19:02:33.078347+00 f t Invitado Amar invitado-1763578952622@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13998 2025-11-21 02:09:24.070163+00 2025-11-21 02:09:24.070174+00 f t Invitado Amar invitado-1763690962864@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11387 2025-10-23 15:12:33.942343+00 2025-10-23 15:12:33.942353+00 f t Paula Otado paulaotado@hotmail.com +541160413967 \N San martin 2140 4 B \N FEMALE \N -34.6008772 -58.4727907 34 \N \N \N +11568 2025-10-26 17:25:23.208562+00 2025-10-26 17:25:23.20857+00 f t Invitado Amar invitado-1761499521986@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11750 2025-10-28 19:09:48.356416+00 2025-10-28 19:09:48.356425+00 f t Invitado Amar invitado-1761678587749@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11933 2025-10-30 03:44:02.097779+00 2025-10-30 03:44:02.097788+00 f t Invitado Amar invitado-1761795840196@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12117 2025-11-01 00:19:26.601201+00 2025-11-01 00:19:26.60121+00 f t Invitado Amar invitado-1761956365742@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12298 2025-11-03 20:33:15.647743+00 2025-11-03 20:33:15.647751+00 f t Invitado Amar invitado-1762201994809@example.com 55555555 \N \N \N \N \N 62 \N \N \N +12481 2025-11-06 01:47:20.681336+00 2025-11-06 01:47:20.681344+00 f t Invitado Amar invitado-1762393640131@example.com 55555555 \N \N \N \N \N 25 \N \N \N +1734 2025-05-27 23:04:55.118981+00 2025-05-27 23:04:55.119+00 f t Valentina Dariomerlo valentinadariomerlo@gmail.com +5492302458586 \N Cuba 3120 \N \N FEMALE 1978-07-02 -34.5516615 -58.4634704 25 1028 \N vdariomerlo +12843 2025-11-10 11:02:33.311903+00 2025-11-10 11:02:33.311912+00 f t Invitado Amar invitado-1762772552482@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13026 2025-11-11 23:49:51.49737+00 2025-11-11 23:49:51.497379+00 f t Invitado Amar invitado-1762904991038@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14177 2025-11-22 18:41:28.373231+00 2025-11-22 18:41:28.373241+00 f t Invitado Amar invitado-1763836888038@example.com 55555555 \N \N \N \N \N 62 \N \N \N +14359 2025-11-24 16:33:21.564278+00 2025-11-24 16:33:21.564288+00 f t Invitado Amar invitado-1764002000982@example.com 55555555 \N \N \N \N \N 52 \N \N \N +14540 2025-11-25 21:54:40.749835+00 2025-11-25 21:54:40.749848+00 f t Invitado Amar invitado-1764107680008@example.com 55555555 \N \N \N \N \N 32 \N \N \N +1109 2025-05-15 21:50:02.610688+00 2025-05-15 21:50:02.610699+00 f t Tomás Eduardo Srur tomassrur7@gmail.com +5491168924073 \N Avenida avellaneda 2300 Piso 6 Depto 02 \N FEMALE 2005-05-26 -34.6238005 -58.4631168 4 \N \N tsrur +9942 2025-10-03 13:34:53.463927+00 2025-10-03 13:34:53.463936+00 f t Invitado Amar invitado-1759498493095@example.com 55555555 \N \N \N \N \N 38 \N \N \N +10121 2025-10-06 15:37:22.339098+00 2025-10-06 15:37:22.339108+00 f t Invitado Amar invitado-1759765042203@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10301 2025-10-08 21:08:21.559634+00 2025-10-08 21:08:21.559643+00 f t Invitado Amar invitado-1759957700970@example.com 55555555 \N \N \N \N \N 75 \N \N \N +10484 2025-10-11 13:12:55.414934+00 2025-10-11 13:12:55.414947+00 f t Invitado Amar invitado-1760188374695@example.com 55555555 \N \N \N \N \N 50 \N \N \N +10666 2025-10-13 23:19:05.28318+00 2025-10-13 23:19:05.283189+00 f t Invitado Amar invitado-1760397545225@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10848 2025-10-16 12:36:35.599573+00 2025-10-16 12:36:35.599582+00 f t Invitado Amar invitado-1760618194716@example.com 55555555 \N \N \N \N \N 39 \N \N \N +11025 2025-10-18 14:01:57.894356+00 2025-10-18 14:01:57.894364+00 f t Invitado Amar invitado-1760796117441@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11208 2025-10-21 08:36:37.535949+00 2025-10-21 08:36:37.53596+00 f t Invitado Amar invitado-1761035796826@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11388 2025-10-23 15:21:20.740332+00 2025-10-23 15:21:20.740837+00 f t Invitado Amar invitado-1761232880292@example.com 55555555 \N \N \N \N \N 34 \N \N \N +11569 2025-10-26 17:47:56.201041+00 2025-10-26 17:47:56.201049+00 f t Invitado Amar invitado-1761500875853@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11751 2025-10-28 19:19:05.024676+00 2025-10-28 19:19:05.024686+00 f t Invitado Amar invitado-1761679144205@example.com 55555555 \N \N \N \N \N 46 \N \N \N +11934 2025-10-30 03:57:15.494042+00 2025-10-30 03:57:15.494051+00 f t Invitado Amar invitado-1761796635145@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12118 2025-11-01 00:21:42.051709+00 2025-11-01 00:21:42.051719+00 f t Invitado Amar invitado-1761956500979@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12299 2025-11-03 21:36:48.308166+00 2025-11-03 21:36:48.308188+00 f t Invitado Amar invitado-1762205806005@example.com 55555555 \N \N \N \N \N 43 \N \N \N +12482 2025-11-06 02:10:47.230451+00 2025-11-06 02:10:47.230461+00 f t Invitado Amar invitado-1762395046428@example.com 55555555 \N \N \N \N \N 84 \N \N \N +12662 2025-11-07 23:35:59.040353+00 2025-11-07 23:35:59.040361+00 f t Invitado Amar invitado-1762558558659@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12844 2025-11-10 11:06:31.181967+00 2025-11-10 11:06:31.181978+00 f t Invitado Amar invitado-1762772790111@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13027 2025-11-11 23:59:41.838883+00 2025-11-11 23:59:41.838891+00 f t Invitado Amar invitado-1762905581388@example.com 55555555 \N \N \N \N \N 43 \N \N \N +13198 2025-11-13 18:43:47.328476+00 2025-11-13 18:43:47.328487+00 t t Invitado Amar invitado-1763059426678@example.com 55555555 \N \N \N \N \N 51 \N \N \N +13428 2025-11-16 12:41:22.783597+00 2025-11-16 12:41:22.78361+00 f t Invitado Amar invitado-1763296881636@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13631 2025-11-18 17:03:58.171545+00 2025-11-18 17:03:58.171554+00 f t Invitado Amar invitado-1763485440002@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13817 2025-11-19 19:14:09.272654+00 2025-11-19 19:14:09.272723+00 f t Invitado Amar invitado-1763579649082@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13999 2025-11-21 02:09:51.906791+00 2025-11-21 02:09:51.9068+00 f t Invitado Amar invitado-1763690991312@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14178 2025-11-22 18:57:15.543056+00 2025-11-22 18:57:15.543066+00 f t Invitado Amar invitado-1763837835266@example.com 55555555 \N \N \N \N \N 79 \N \N \N +14360 2025-11-24 17:11:52.46106+00 2025-11-24 17:11:52.461072+00 f t Invitado Amar invitado-1764004312010@example.com 55555555 \N \N \N \N \N 50 \N \N \N +14541 2025-11-25 21:59:36.680553+00 2025-11-25 21:59:36.680562+00 f t Invitado Amar invitado-1764107978162@example.com 55555555 \N \N \N \N \N 12 \N \N \N +9768 2025-10-01 16:36:06.059798+00 2025-10-01 16:36:06.059812+00 f t Invitado Amar invitado-1759336567643@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-7685 +9943 2025-10-03 13:38:26.276872+00 2025-10-03 13:38:26.276883+00 f t Invitado Amar invitado-1759498705780@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10122 2025-10-06 15:38:42.156767+00 2025-10-06 15:38:42.15678+00 f t Invitado Amar invitado-1759765122023@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10302 2025-10-08 21:08:53.000123+00 2025-10-08 21:08:53.000132+00 f t Invitado Amar invitado-1759957732815@example.com 55555555 \N \N \N \N \N 75 \N \N \N +10485 2025-10-11 13:32:37.31274+00 2025-10-11 13:32:37.31275+00 f t Invitado Amar invitado-1760189556955@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13199 2025-11-13 18:46:52.179482+00 2025-11-13 18:46:52.179491+00 f t Invitado Amar invitado-1763059611737@example.com 55555555 \N \N \N \N \N 51 \N \N \N +10667 2025-10-13 23:25:27.6835+00 2025-10-13 23:25:27.683509+00 f t Luz Castillo nelsondirectorviolin@gmail.com +541173640775 \N Caballito - av. Acoyte 197 1 - A \N \N -34.6150025 -58.4378318 14 \N \N \N +10849 2025-10-16 12:39:42.887027+00 2025-10-16 12:39:42.887036+00 f t Invitado Amar invitado-1760618382348@example.com 55555555 \N \N \N \N \N 39 \N \N \N +11026 2025-10-18 14:32:44.266181+00 2025-10-18 14:32:44.266195+00 f t Invitado Amar invitado-1760797964248@example.com 55555555 \N \N \N \N \N 72 \N \N \N +11209 2025-10-21 10:12:18.466708+00 2025-10-21 10:12:18.466722+00 f t Invitado Amar invitado-1761041538091@example.com 55555555 \N \N \N \N \N 21 \N \N \N +11389 2025-10-23 15:29:24.772563+00 2025-10-23 15:29:24.772572+00 f t Invitado Amar invitado-1761233364159@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13429 2025-11-16 13:19:42.957886+00 2025-11-16 13:19:42.957897+00 f t Invitado Amar invitado-1763299181831@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11570 2025-10-26 17:57:22.432615+00 2025-10-26 17:57:22.432623+00 f t Laura Duarte lauduarte97@gmail.com +541131056964 \N Dean funes 3835 Pasillo \N \N -34.7000565 -58.4271471 70 \N \N \N +11752 2025-10-28 19:21:44.007111+00 2025-10-28 19:21:44.007122+00 f t Invitado Amar invitado-1761679302242@example.com 55555555 \N \N \N \N \N 157 \N \N \N +11935 2025-10-30 04:09:55.404177+00 2025-10-30 04:09:55.404187+00 f t Invitado Amar invitado-1761797394459@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12119 2025-11-01 00:25:53.188839+00 2025-11-01 00:25:53.188848+00 f t Invitado Amar invitado-1761956751514@example.com 55555555 \N \N \N \N \N 73 \N \N \N +12300 2025-11-03 21:38:38.215411+00 2025-11-03 21:38:38.215419+00 f t Invitado Amar invitado-1762205917573@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12483 2025-11-06 02:19:46.481235+00 2025-11-06 02:19:46.481246+00 f t Invitado Amar invitado-1762395585778@example.com 55555555 \N \N \N \N \N 89 \N \N \N +12663 2025-11-08 00:35:13.537002+00 2025-11-08 00:35:13.537011+00 f t Invitado Amar invitado-1762562112935@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12845 2025-11-10 11:09:13.711904+00 2025-11-10 11:09:13.711911+00 f t Invitado Amar invitado-1762772952770@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13028 2025-11-12 00:44:57.855506+00 2025-11-12 00:44:57.855515+00 f t Invitado Amar invitado-1762908297440@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13632 2025-11-18 17:05:02.563772+00 2025-11-18 17:05:02.563786+00 f t Invitado Amar invitado-1763485505069@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13818 2025-11-19 19:16:26.44244+00 2025-11-19 19:16:26.442449+00 f t Invitado Amar invitado-1763579785632@example.com 55555555 \N \N \N \N \N 25 \N \N \N +14000 2025-11-21 03:13:31.654201+00 2025-11-21 03:13:31.654211+00 f t Invitado Amar invitado-1763694810583@example.com 55555555 \N \N \N \N \N 85 \N \N \N +14179 2025-11-22 19:15:51.877802+00 2025-11-22 19:15:51.877811+00 f t Invitado Amar invitado-1763838952754@example.com 55555555 \N \N \N \N \N 19 \N \N \N +14361 2025-11-24 17:17:22.550269+00 2025-11-24 17:17:22.550278+00 f t Invitado Amar invitado-1764004641516@example.com 55555555 \N \N \N \N \N 26 \N \N \N +14542 2025-11-25 22:19:10.72284+00 2025-11-25 22:19:10.723459+00 f t Adriano Zuccarelli Verde adrianozuccarelli@hotmail.com +541127402854 \N Moreno 3373 1 N \N \N -34.6141632 -58.4140286 23 2277 \N \N +9944 2025-10-03 14:08:15.978135+00 2025-10-03 14:08:15.978145+00 f t Invitado Amar invitado-1759500495326@example.com 55555555 \N \N \N \N \N 61 \N \N \N +340 2025-01-19 16:21:26.477+00 2025-01-19 16:21:26.477+00 f t Alicia Ana Furiase aliciafuriase@gmail.com +5491124890810 \N Guemes 4044 6C \N FEMALE 1942-11-18 -34.58578214285715 -58.4179805 1 484 \N aanafuriase +10123 2025-10-06 15:55:46.686319+00 2025-10-06 15:55:46.686328+00 f t Cristian Baygorria crisbaygorria907@gmail.com 5491140348894 \N Bogotá 2471 2 A \N MALE \N -34.6255032 -58.4652475 4 \N \N \N +13200 2025-11-13 19:22:17.709559+00 2025-11-13 19:22:17.709568+00 f t Noelia zoppi noeliabelenzoppi99@gmail.com 5491135802187 \N Delgado 750 ph depto B, no anda el timbre, avisar por mensaje \N FEMALE \N -34.5791926 -58.4520955 38 2134 \N \N +10303 2025-10-08 21:21:49.212967+00 2025-10-08 21:21:49.212976+00 f t Invitado Amar invitado-1759958508464@example.com 55555555 \N \N \N \N \N 38 \N \N \N +10486 2025-10-11 13:47:09.436368+00 2025-10-11 13:47:09.43638+00 f t Invitado Amar invitado-1760190428571@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10668 2025-10-13 23:32:56.247686+00 2025-10-13 23:32:56.247695+00 f t Invitado Amar invitado-1760398375899@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10850 2025-10-16 12:59:15.223905+00 2025-10-16 12:59:15.223913+00 f t Invitado Amar invitado-1760619554395@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11027 2025-10-18 14:43:19.696036+00 2025-10-18 14:43:19.696048+00 f t Alejandro Gutierrez alejandro.ngutierrez@outlook.com +541176138865 \N Soldado de Malvinas 510 \N \N -34.5121321 -58.537855 83 \N \N \N +11210 2025-10-21 10:33:45.667156+00 2025-10-21 10:33:45.667165+00 f t Invitado Amar invitado-1761042825213@example.com 55555555 \N \N \N \N \N 33 \N \N \N +11390 2025-10-23 15:59:31.923336+00 2025-10-23 15:59:31.923349+00 f t Invitado Amar invitado-1761235169590@example.com 55555555 \N \N \N \N \N 84 \N \N \N +11571 2025-10-26 18:00:46.613403+00 2025-10-26 18:00:46.613412+00 f t Invitado Amar invitado-1761501645418@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11753 2025-10-28 19:29:56.687736+00 2025-10-28 19:29:56.687747+00 f t Invitado Amar invitado-1761679795525@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11936 2025-10-30 06:04:23.858773+00 2025-10-30 06:04:23.858781+00 f t Invitado Amar invitado-1761804263078@example.com 55555555 \N \N \N \N \N 13 \N \N \N +12120 2025-11-01 00:35:57.074562+00 2025-11-01 00:35:57.074574+00 f t Invitado Amar invitado-1761957356342@example.com 55555555 \N \N \N \N \N 31 \N \N \N +9769 2025-10-01 17:20:37.657947+00 2025-10-01 17:20:37.65796+00 f t alicia Barracchia aliciabarracchia@yahoo.com.ar 91126208489 \N Pedro ignacio rivera 4857 9 A \N FEMALE \N -34.7538703 -58.4139123 17 1973 \N abarracchia +12301 2025-11-03 22:24:15.586946+00 2025-11-03 22:24:15.586954+00 f t Invitado Amar invitado-1762208654853@example.com 55555555 \N \N \N \N \N 17 \N \N \N +12484 2025-11-06 02:33:53.777838+00 2025-11-06 02:33:53.777848+00 f t Invitado Amar invitado-1762396433375@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12664 2025-11-08 00:39:45.429496+00 2025-11-08 00:39:45.429504+00 f t Invitado Amar invitado-1762562384649@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12846 2025-11-10 11:43:28.969297+00 2025-11-10 11:43:28.969306+00 f t Invitado Amar invitado-1762775007742@example.com 55555555 \N \N \N \N \N 71 \N \N \N +13029 2025-11-12 00:56:43.387889+00 2025-11-12 00:56:43.387897+00 f t Invitado Amar invitado-1762909001294@example.com 55555555 \N \N \N \N \N 22 \N \N \N +13430 2025-11-16 13:47:35.741034+00 2025-11-16 13:47:35.741045+00 t t Invitado Amar invitado-1763300854509@example.com 55555555 \N \N \N \N \N 46 \N \N \N +13633 2025-11-18 17:09:05.963244+00 2025-11-18 17:09:05.963252+00 f t Invitado Amar invitado-1763485745452@example.com 55555555 \N \N \N \N \N 32 \N \N \N +13819 2025-11-19 19:17:19.087869+00 2025-11-19 19:17:19.08788+00 f t Invitado Amar invitado-1763579838856@example.com 55555555 \N \N \N \N \N 26 \N \N \N +14001 2025-11-21 03:21:06.12236+00 2025-11-21 03:21:06.122371+00 f t Invitado Amar invitado-1763695266973@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14180 2025-11-22 19:21:37.983663+00 2025-11-22 19:21:37.983672+00 f t Invitado Amar invitado-1763839296619@example.com 55555555 \N \N \N \N \N 5 \N \N \N +14362 2025-11-24 17:31:40.97694+00 2025-11-24 17:31:40.976949+00 f t Invitado Amar invitado-1764005499645@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14543 2025-11-25 22:22:17.711095+00 2025-11-25 22:22:17.711551+00 f t Invitado Amar invitado-1764109335959@example.com 55555555 \N \N \N \N \N 23 \N \N \N +9770 2025-10-01 17:40:22.449123+00 2025-10-01 17:40:22.449134+00 f t Invitado Amar invitado-1759340422143@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-7686 +9945 2025-10-03 14:14:02.006904+00 2025-10-03 14:14:02.006919+00 f t Invitado Amar invitado-1759500839933@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13201 2025-11-13 19:33:53.212+00 2025-11-13 19:33:53.212015+00 f t Invitado Amar invitado-1763062433585@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10304 2025-10-08 21:37:20.893603+00 2025-10-08 21:37:20.893615+00 f t Invitado Amar invitado-1759959440404@example.com 55555555 \N \N \N \N \N 142 \N \N \N +10487 2025-10-11 13:58:44.156178+00 2025-10-11 13:58:44.156188+00 f t Invitado Amar invitado-1760191123349@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10669 2025-10-13 23:46:42.754369+00 2025-10-13 23:46:42.754378+00 f t Invitado Amar invitado-1760399202152@example.com 55555555 \N \N \N \N \N 28 \N \N \N +10851 2025-10-16 13:04:16.294351+00 2025-10-16 13:04:16.294364+00 f t Invitado Amar invitado-1760619855196@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11028 2025-10-18 14:58:31.512281+00 2025-10-18 14:58:31.512289+00 f t Invitado Amar invitado-1760799509543@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11211 2025-10-21 10:43:05.181519+00 2025-10-21 10:43:05.181529+00 f t Invitado Amar invitado-1761043372567@example.com 55555555 \N \N \N \N \N 64 \N \N \N +11391 2025-10-23 16:22:04.191249+00 2025-10-23 16:22:04.19126+00 f t Invitado Amar invitado-1761236523138@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11572 2025-10-26 18:14:14.979403+00 2025-10-26 18:14:14.979412+00 f t Invitado Amar invitado-1761502454564@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11754 2025-10-28 19:36:16.609697+00 2025-10-28 19:36:16.609711+00 f t Invitado Amar invitado-1761680173438@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11937 2025-10-30 06:21:59.462114+00 2025-10-30 06:21:59.462122+00 f t Invitado Amar invitado-1761805318857@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13431 2025-11-16 13:52:19.052075+00 2025-11-16 13:52:19.052084+00 f t Invitado Amar invitado-1763301138550@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13634 2025-11-18 17:13:49.332662+00 2025-11-18 17:13:49.332672+00 f t Invitado Amar invitado-1763486028582@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13820 2025-11-19 19:19:10.682829+00 2025-11-19 19:19:10.682838+00 f t Paula Gimenez paau.gimenez@gmail.com +541137007707 \N Cortina 2038 3 \N FEMALE \N -34.6225845 -58.5221502 66 2200 \N \N +14002 2025-11-21 03:22:45.862582+00 2025-11-21 03:22:45.862591+00 f t Invitado Amar invitado-1763695362872@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12121 2025-11-01 00:44:12.437886+00 2025-11-01 00:44:12.437894+00 f t Ximena Risso ximenarisso1976@gmail.com +541157086222 \N Argerich 2630 NO FUNCIONA EL TIMBRE \N FEMALE \N -34.6061335 -58.487677 17 1965 \N \N +12302 2025-11-03 22:38:09.525504+00 2025-11-03 22:38:09.525513+00 f t Invitado Amar invitado-1762209489125@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12485 2025-11-06 02:53:54.850684+00 2025-11-06 02:53:54.850693+00 f t Invitado Amar invitado-1762397634406@example.com 55555555 \N \N \N \N \N 53 \N \N \N +12665 2025-11-08 00:49:40.692795+00 2025-11-08 00:49:40.692803+00 f t Invitado Amar invitado-1762562980371@example.com 55555555 \N \N \N \N \N 22 \N \N \N +12847 2025-11-10 11:53:14.998057+00 2025-11-10 11:53:14.998069+00 f t Invitado Amar invitado-1762775594589@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14181 2025-11-22 19:43:50.049386+00 2025-11-22 19:43:50.049395+00 f t Invitado Amar invitado-1763840629551@example.com 55555555 \N \N \N \N \N 24 \N \N \N +14363 2025-11-24 17:54:08.56735+00 2025-11-24 17:54:08.567362+00 f t Invitado Amar invitado-1764006848127@example.com 55555555 \N \N \N \N \N 21 \N \N \N +13030 2025-11-12 00:57:09.792516+00 2025-11-12 00:57:09.792529+00 f t Elisabet Benitez elisabetmartinz@hotmail.com +543434168954 \N Esteban Echeverria 1452 Laboral \N \N -34.5343632 -58.5040439 82 2109 \N \N +14544 2025-11-25 22:35:25.269961+00 2025-11-25 22:35:25.269991+00 f t Invitado Amar invitado-1764110121380@example.com 55555555 \N \N \N \N \N 9 \N \N \N +9771 2025-10-01 18:02:03.889677+00 2025-10-01 18:02:03.88969+00 f t Invitado Amar invitado-1759341723430@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-7687 +9946 2025-10-03 14:16:20.805506+00 2025-10-03 14:16:20.805515+00 f t Lucia Larrosa soylucha@gmail.com 5491123867407 \N MEXICO 1913 Piso 4 depto 28 \N FEMALE \N -34.6157155 -58.3934388 18 \N \N \N +10125 2025-10-06 16:11:15.375567+00 2025-10-06 16:11:15.375576+00 f t Invitado Amar invitado-1759767074167@example.com 55555555 \N \N \N \N \N 79 \N \N \N +10305 2025-10-08 21:57:53.248432+00 2025-10-08 21:57:53.248441+00 f t Invitado Amar invitado-1759960672569@example.com 55555555 \N \N \N \N \N 77 \N \N \N +10488 2025-10-11 14:12:44.371861+00 2025-10-11 14:12:44.371872+00 f t Invitado Amar invitado-1760191964113@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10670 2025-10-14 00:00:53.055294+00 2025-10-14 00:00:53.055304+00 f t Invitado Amar invitado-1760400051651@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10852 2025-10-16 13:07:11.095251+00 2025-10-16 13:07:11.095264+00 f t Invitado Amar invitado-1760620030203@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13202 2025-11-13 19:51:53.975406+00 2025-11-13 19:51:53.975414+00 f t Invitado Amar invitado-1763063514186@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11029 2025-10-18 15:28:29.196091+00 2025-10-18 15:28:29.196103+00 f t María Alejandra Palleros mariapallerospaz@gmail.com +541141728555 \N Almirante Onofre Betbeder 1317 Casa \N \N \N -34.5476224 -58.4520427 25 \N \N \N +11212 2025-10-21 11:05:47.644168+00 2025-10-21 11:05:47.644178+00 f t Invitado Amar invitado-1761044747126@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11392 2025-10-23 16:24:33.846208+00 2025-10-23 16:24:33.84622+00 f t Invitado Amar invitado-1761236672784@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11573 2025-10-26 18:21:43.387593+00 2025-10-26 18:21:43.387602+00 f t Invitado Amar invitado-1761502902988@example.com 55555555 \N \N \N \N \N 38 \N \N \N +11755 2025-10-28 19:40:58.124995+00 2025-10-28 19:40:58.125008+00 f t Invitado Amar invitado-1761680456617@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11938 2025-10-30 08:28:33.820064+00 2025-10-30 08:28:33.820076+00 f t Maria Azzollini azzollinigiuseppina@gmail.com +542974178591 \N Vidal 3527 14 E \N \N -34.5517361 -58.4712094 25 \N \N \N +12122 2025-11-01 00:54:15.44071+00 2025-11-01 00:54:15.440719+00 f t Invitado Amar invitado-1761958455065@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12303 2025-11-03 22:42:49.476967+00 2025-11-03 22:42:49.476979+00 f t Invitado Amar invitado-1762209769300@example.com 55555555 \N \N \N \N \N 23 \N \N \N +6770 2025-08-18 12:53:26.759148+00 2025-08-18 12:53:26.759158+00 f t Micaela Da Rold mica.b.rold@gmail.com +5491123980208 \N Moreno 3763 9 B \N 1997-12-24 \N \N 46 1616 \N mdarold +13635 2025-11-18 17:18:09.657599+00 2025-11-18 17:18:09.657611+00 f t Invitado Amar invitado-1763486288744@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12486 2025-11-06 02:56:41.70662+00 2025-11-06 02:56:41.706632+00 f t Rodrigo Sobrino rodrigosobrino22@hotmail.com +541138996532 \N Santa monica 4473 \N \N -34.6301997 -58.635522 80 2043 \N \N +12666 2025-11-08 01:25:23.676909+00 2025-11-08 01:25:23.676918+00 t t Invitado Amar invitado-1762565123316@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12848 2025-11-10 11:58:28.312986+00 2025-11-10 11:58:28.312997+00 f t Invitado Amar invitado-1762775907319@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13031 2025-11-12 01:08:11.114789+00 2025-11-12 01:08:11.114797+00 f t Invitado Amar invitado-1762909691598@example.com 55555555 \N \N \N \N \N 82 \N \N \N +13821 2025-11-19 19:21:54.822972+00 2025-11-19 19:21:54.822981+00 f t Invitado Amar invitado-1763580114645@example.com 55555555 \N \N \N \N \N 66 \N \N \N +14003 2025-11-21 03:29:45.86989+00 2025-11-21 03:29:45.869901+00 f t Invitado Amar invitado-1763695785261@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14182 2025-11-22 21:06:35.32233+00 2025-11-22 21:06:35.32234+00 f t Invitado Amar invitado-1763845595104@example.com 55555555 \N \N \N \N \N 18 \N \N \N +14364 2025-11-24 17:56:05.762652+00 2025-11-24 17:56:05.762664+00 f t Invitado Amar invitado-1764006965547@example.com 55555555 \N \N \N \N \N 21 \N \N \N +14545 2025-11-25 22:35:58.268319+00 2025-11-25 22:35:58.26833+00 f t Invitado Amar invitado-1764110157876@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13203 2025-11-13 19:55:00.219417+00 2025-11-13 19:55:00.219427+00 f t Invitado Amar invitado-1763063699427@example.com 55555555 \N \N \N \N \N 40 \N \N \N +8819 2025-09-17 23:02:30.252573+00 2025-09-17 23:02:30.252583+00 f t Mariana Lasarte Bolognini marianalasartebolognini@gmail.com +542215777672 \N Calle 2 824 \N 1984-09-15 45.3559796 -75.7998159 147 1851 \N mlasartebolognini +9947 2025-10-03 14:20:00.633696+00 2025-10-03 14:20:00.633705+00 f t Invitado Amar invitado-1759501200239@example.com 55555555 \N \N \N \N \N 14 \N \N \N +9772 2025-10-01 18:05:26.685159+00 2025-10-01 18:05:26.685168+00 f t maria silva huss malisihu@gmail.com 91158541568 \N Aristóbulo del Valle 1782 PB B \N FEMALE 0078-11-20 -34.6361973 -58.3755301 32 \N \N mhuss +10126 2025-10-06 16:13:21.267451+00 2025-10-06 16:13:21.267459+00 f t Invitado Amar invitado-1759767201401@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10306 2025-10-08 22:11:37.197974+00 2025-10-08 22:11:37.197986+00 f t Invitado Amar invitado-1759961481051@example.com 55555555 \N \N \N \N \N 44 \N \N \N +10489 2025-10-11 14:31:41.313922+00 2025-10-11 14:31:41.314351+00 f t Invitado Amar invitado-1760193099987@example.com 55555555 \N \N \N \N \N 69 \N \N \N +10671 2025-10-14 00:03:39.071044+00 2025-10-14 00:03:39.071053+00 f t Lydia Calvosa lili967@yahoo.com.ar 5491153140302 \N Tte Gral Peron 1968 A \N FEMALE \N -43.3088696 -65.7189558 18 \N \N \N +13432 2025-11-16 13:52:41.247103+00 2025-11-16 13:52:41.247112+00 f t Invitado Amar invitado-1763301161381@example.com 55555555 \N \N \N \N \N 46 \N \N \N +10853 2025-10-16 13:07:42.071828+00 2025-10-16 13:07:42.071839+00 f t raul enrique sanchez enriquesanchez@live.com.ar 91155817356 \N Nicolas Repetto 17 piso 4 depto C \N MALE 1981-01-13 -34.6208159 -58.4429092 14 \N \N \N +11030 2025-10-18 16:02:10.27005+00 2025-10-18 16:02:10.270061+00 f t Invitado Amar invitado-1760803329845@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13636 2025-11-18 17:27:14.806168+00 2025-11-18 17:27:14.806176+00 f t Invitado Amar invitado-1763486833771@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11213 2025-10-21 11:29:42.130988+00 2025-10-21 11:29:42.131002+00 f t Viviana Moviglia movigliaviviana@hotmail.com +541150263301 \N Charcas 4776 8 C \N \N -34.5810132 -58.426856 1 \N \N \N +13822 2025-11-19 19:57:14.092895+00 2025-11-19 19:57:14.092903+00 f t Invitado Amar invitado-1763582233457@example.com 55555555 \N \N \N \N \N 51 \N \N \N +14004 2025-11-21 04:04:40.248969+00 2025-11-21 04:04:40.248978+00 f t Invitado Amar invitado-1763697879761@example.com 55555555 \N \N \N \N \N 19 \N \N \N +14183 2025-11-22 21:22:49.79757+00 2025-11-22 21:22:49.79758+00 f t Invitado Amar invitado-1763846696217@example.com 55555555 \N \N \N \N \N 88 \N \N \N +14365 2025-11-24 18:02:56.469594+00 2025-11-24 18:02:56.469606+00 f t Invitado Amar invitado-1764007376067@example.com 55555555 \N \N \N \N \N 147 \N \N \N +14546 2025-11-25 22:39:18.862638+00 2025-11-25 22:39:18.862647+00 f t Invitado Amar invitado-1764110357161@example.com 55555555 \N \N \N \N \N 39 \N \N \N +11393 2025-10-23 16:54:57.899549+00 2025-10-23 16:54:57.899557+00 f t Jimena Rosli jotarosli@gmail.com +541164770012 \N Muñiz 1110 9 A \N FEMALE \N -34.6287071 -58.4251309 11 \N \N \N +11574 2025-10-26 18:25:33.412164+00 2025-10-26 18:25:33.412172+00 f t Invitado Amar invitado-1761503133016@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11756 2025-10-28 20:12:05.341097+00 2025-10-28 20:12:05.341106+00 f t Invitado Amar invitado-1761682324662@example.com 55555555 \N \N \N \N \N 72 \N \N \N +11939 2025-10-30 08:33:04.077842+00 2025-10-30 08:33:04.077852+00 f t Invitado Amar invitado-1761813183926@example.com 55555555 \N \N \N \N \N 25 \N \N \N +12123 2025-11-01 01:10:04.052229+00 2025-11-01 01:10:04.052243+00 f t Invitado Amar invitado-1761959403506@example.com 55555555 \N \N \N \N \N 61 \N \N \N +12304 2025-11-03 23:16:10.316716+00 2025-11-03 23:16:10.316725+00 f t Invitado Amar invitado-1762211769756@example.com 55555555 \N \N \N \N \N 46 \N \N \N +12487 2025-11-06 03:00:18.970882+00 2025-11-06 03:00:18.970891+00 f t Invitado Amar invitado-1762398018829@example.com 55555555 \N \N \N \N \N 80 \N \N \N +12849 2025-11-10 12:26:09.720877+00 2025-11-10 12:26:09.720888+00 f t Invitado Amar invitado-1762777568562@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13032 2025-11-12 01:15:00.428587+00 2025-11-12 01:15:00.428596+00 f t Invitado Amar invitado-1762910100982@example.com 55555555 \N \N \N \N \N 13 \N \N \N +9773 2025-10-01 18:05:36.187008+00 2025-10-01 18:05:36.187018+00 f t Invitado Amar invitado-1759341935356@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-7688 +9948 2025-10-03 14:45:28.653154+00 2025-10-03 14:45:28.653163+00 f t Invitado Amar invitado-1759502727713@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10127 2025-10-06 16:16:00.115467+00 2025-10-06 16:16:00.115479+00 f t Invitado Amar invitado-1759767359115@example.com 55555555 \N \N \N \N \N 79 \N \N \N +10307 2025-10-08 22:21:34.88231+00 2025-10-08 22:21:34.882319+00 f t Invitado Amar invitado-1759962094085@example.com 55555555 \N \N \N \N \N 38 \N \N \N +10490 2025-10-11 15:20:44.07527+00 2025-10-11 15:20:44.075279+00 f t Invitado Amar invitado-1760196043364@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13204 2025-11-13 20:00:28.947677+00 2025-11-13 20:00:28.947689+00 f t Invitado Amar invitado-1763064028181@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10672 2025-10-14 00:12:49.782376+00 2025-10-14 00:12:49.782387+00 f t Viviana Rigabert vivianarigabert@gmail.com 5491164291968 \N VICENTE FUDEL LOPEZ 320 4 PISO B Torre jardín A \N FEMALE \N \N \N 6 \N \N \N +10854 2025-10-16 13:09:17.751889+00 2025-10-16 13:09:17.751897+00 f t Invitado Amar invitado-1760620156731@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11031 2025-10-18 16:06:40.496479+00 2025-10-18 16:06:40.496489+00 f t Invitado Amar invitado-1760803599969@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11214 2025-10-21 11:32:08.76596+00 2025-10-21 11:32:08.765969+00 f t Invitado Amar invitado-1761046327660@example.com 55555555 \N \N \N \N \N 21 \N \N \N +11394 2025-10-23 16:59:00.55048+00 2025-10-23 16:59:00.550489+00 f t Invitado Amar invitado-1761238739892@example.com 55555555 \N \N \N \N \N 62 \N \N \N +13433 2025-11-16 13:55:19.154621+00 2025-11-16 13:55:19.15463+00 f t Invitado Amar invitado-1763301318892@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11575 2025-10-26 18:48:00.025367+00 2025-10-26 18:48:00.025376+00 f t Sebastián Groetzner Sebasgroetzner@gmail.com 5491161296358 \N Comahue 1335 Es Duplex 1 entre Larroque y Berutti \N MALE 1986-04-16 -34.7419528 -58.4158925 72 1910 \N \N +11757 2025-10-28 20:15:57.932889+00 2025-10-28 20:15:57.932902+00 f t Invitado Amar invitado-1761682557199@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11940 2025-10-30 09:16:31.973225+00 2025-10-30 09:16:31.973234+00 f t Invitado Amar invitado-1761815791393@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12124 2025-11-01 01:27:13.60373+00 2025-11-01 01:27:13.603742+00 f t Invitado Amar invitado-1761960432544@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12305 2025-11-03 23:19:13.970641+00 2025-11-03 23:19:13.970656+00 f t Invitado Amar invitado-1762211952080@example.com 55555555 \N \N \N \N \N 58 \N \N \N +12488 2025-11-06 03:23:55.833813+00 2025-11-06 03:23:55.833825+00 t t Invitado Amar invitado-1762399435285@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12667 2025-11-08 01:31:13.996036+00 2025-11-08 01:31:13.996045+00 f t Invitado Amar invitado-1762565473547@example.com 55555555 \N \N \N \N \N 50 \N \N \N +12850 2025-11-10 12:40:45.303415+00 2025-11-10 12:40:45.303424+00 f t Invitado Amar invitado-1762778507721@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13033 2025-11-12 01:15:21.035238+00 2025-11-12 01:15:21.035247+00 f t Invitado Amar invitado-1762910120395@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13637 2025-11-18 17:30:02.416669+00 2025-11-18 17:30:02.416683+00 f t Invitado Amar invitado-1763487001977@example.com 55555555 \N \N \N \N \N 85 \N \N \N +13823 2025-11-19 20:09:49.679819+00 2025-11-19 20:09:49.679828+00 f t Invitado Amar invitado-1763582988891@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14005 2025-11-21 04:12:53.211387+00 2025-11-21 04:12:53.211396+00 f t Invitado Amar invitado-1763698371985@example.com 55555555 \N \N \N \N \N 71 \N \N \N +14184 2025-11-22 21:25:15.537574+00 2025-11-22 21:25:15.537584+00 f t Invitado Amar invitado-1763846713892@example.com 55555555 \N \N \N \N \N 50 \N \N \N +14366 2025-11-24 18:03:14.721278+00 2025-11-24 18:03:14.721292+00 f t Invitado Amar invitado-1764007394547@example.com 55555555 \N \N \N \N \N 21 \N \N \N +14547 2025-11-25 22:45:33.29388+00 2025-11-25 22:45:33.293889+00 t t Invitado Amar invitado-1764110731782@example.com 55555555 \N \N \N \N \N 19 \N \N \N +9774 2025-10-01 18:09:14.422673+00 2025-10-01 18:09:14.422685+00 f t Invitado Amar invitado-1759342153478@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7689 +9949 2025-10-03 15:00:43.294374+00 2025-10-03 15:00:43.294383+00 f t Invitado Amar invitado-1759503643279@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10128 2025-10-06 16:18:10.962125+00 2025-10-06 16:18:10.962134+00 f t Invitado Amar invitado-1759767490169@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10308 2025-10-08 22:22:26.131286+00 2025-10-08 22:22:26.131298+00 f t Invitado Amar invitado-1759962145604@example.com 55555555 \N \N \N \N \N 38 \N \N \N +10491 2025-10-11 15:21:47.058748+00 2025-10-11 15:21:47.058759+00 f t Invitado Amar invitado-1760196106766@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10673 2025-10-14 00:15:50.965483+00 2025-10-14 00:15:50.965492+00 f t Invitado Amar invitado-1760400951018@example.com 55555555 \N \N \N \N \N 11 \N \N \N +10855 2025-10-16 13:16:47.090883+00 2025-10-16 13:16:47.090892+00 f t Invitado Amar invitado-1760620606225@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11032 2025-10-18 16:06:54.334068+00 2025-10-18 16:06:54.334078+00 f t Invitado Amar invitado-1760803610648@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13205 2025-11-13 20:33:10.596635+00 2025-11-13 20:33:10.596643+00 f t Invitado Amar invitado-1763065990028@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11215 2025-10-21 11:50:04.924703+00 2025-10-21 11:50:04.924717+00 f t Angelica Rojas angelicamrojas0206@gmail.com +541162763415 \N Libertad 276 276 3E \N \N -25.2868213 -57.7280939 13 \N \N \N +11395 2025-10-23 17:10:53.500148+00 2025-10-23 17:10:53.500158+00 f t Invitado Amar invitado-1761239452940@example.com 55555555 \N \N \N \N \N 11 \N \N \N +13434 2025-11-16 14:05:39.785573+00 2025-11-16 14:05:39.785581+00 f t Invitado Amar invitado-1763301938834@example.com 55555555 \N \N \N \N \N 80 \N \N \N +11758 2025-10-28 20:21:10.631679+00 2025-10-28 20:21:10.631688+00 f t Invitado Amar invitado-1761682870011@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11941 2025-10-30 09:27:32.776286+00 2025-10-30 09:27:32.776294+00 f t Invitado Amar invitado-1761816517254@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12125 2025-11-01 01:34:17.191048+00 2025-11-01 01:34:17.191059+00 f t Invitado Amar invitado-1761960856366@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12306 2025-11-03 23:23:18.826982+00 2025-11-03 23:23:18.826995+00 f t Invitado Amar invitado-1762212197332@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11576 2025-10-26 18:54:55.512905+00 2025-10-26 18:54:55.512914+00 f t ULISES JOSE HERNANDEZ GONZALEZ ujhg.uw2017@gmail.com 5491136691590 \N Dr. Ramón Carrillo 4242 Piso 1 Depto B, Entre calle Guatemala y Ambrossetti frente la guardia del Hospital de Niños \N MALE 1986-03-29 -34.6833058 -58.5858589 87 1911 \N \N +12489 2025-11-06 03:29:45.216269+00 2025-11-06 03:29:45.216277+00 f t Invitado Amar invitado-1762399784944@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12668 2025-11-08 01:35:28.815086+00 2025-11-08 01:35:28.815095+00 f t Invitado Amar invitado-1762565728669@example.com 55555555 \N \N \N \N \N 147 \N \N \N +13638 2025-11-18 17:30:13.593671+00 2025-11-18 17:30:13.593683+00 f t Invitado Amar invitado-1763487013110@example.com 55555555 \N \N \N \N \N 85 \N \N \N +12851 2025-11-10 12:58:07.184522+00 2025-11-10 12:58:07.184533+00 f t Lizet Campos gestorializet@gmail.com +542646238050 \N Santa fe 1845 8D \N FEMALE \N -34.5942855 -58.403384 9 2089 \N \N +13034 2025-11-12 01:20:05.753373+00 2025-11-12 01:20:05.753387+00 f t Invitado Amar invitado-1762910405229@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13824 2025-11-19 20:20:06.849735+00 2025-11-19 20:20:06.84975+00 f t Joaquin Araya marinojoaquinaraya@gmail.com +541127869179 \N Av boedo 467 2 \N \N -34.6181426 -58.4168989 23 2201 \N \N +14006 2025-11-21 04:19:52.775723+00 2025-11-21 04:19:52.775735+00 f t Invitado Amar invitado-1763698791353@example.com 55555555 \N \N \N \N \N 71 \N \N \N +14185 2025-11-22 22:01:57.053157+00 2025-11-22 22:01:57.053166+00 f t Invitado Amar invitado-1763848916662@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14367 2025-11-24 18:19:03.044686+00 2025-11-24 18:19:03.044701+00 f t Invitado Amar invitado-1764008342323@example.com 55555555 \N \N \N \N \N 31 \N \N \N +14548 2025-11-25 22:46:12.208332+00 2025-11-25 22:46:12.208342+00 f t Marina Hernández marina87hernandez@gmail.com +541154774581 \N Callao 441 7 B (primer cuerpo) \N \N \N \N 18 2278 \N \N +9775 2025-10-01 18:42:16.779859+00 2025-10-01 18:42:16.779874+00 f t Invitado Amar invitado-1759344136293@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7690 +9950 2025-10-03 15:20:11.960857+00 2025-10-03 15:20:11.960865+00 t t Invitado Amar invitado-1759504811323@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10129 2025-10-06 16:34:16.115048+00 2025-10-06 16:34:16.115061+00 f t Invitado Amar invitado-1759768455569@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10309 2025-10-08 22:30:51.134153+00 2025-10-08 22:30:51.134162+00 f t Invitado Amar invitado-1759962650270@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10492 2025-10-11 15:36:35.335371+00 2025-10-11 15:36:35.33538+00 f t Invitado Amar invitado-1760196994908@example.com 55555555 \N \N \N \N \N 5 \N \N \N +10674 2025-10-14 00:30:22.194247+00 2025-10-14 00:30:22.194256+00 f t Invitado Amar invitado-1760401821564@example.com 55555555 \N \N \N \N \N 82 \N \N \N +10856 2025-10-16 13:38:34.408631+00 2025-10-16 13:38:34.408644+00 t t Invitado Amar invitado-1760621913853@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11033 2025-10-18 16:11:11.311667+00 2025-10-18 16:11:11.311676+00 f t Invitado Amar invitado-1760803867504@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11216 2025-10-21 11:53:22.103788+00 2025-10-21 11:53:22.103802+00 f t Invitado Amar invitado-1761047601760@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11396 2025-10-23 17:14:11.493576+00 2025-10-23 17:14:11.493585+00 f t Invitado Amar invitado-1761239649961@example.com 55555555 \N \N \N \N \N 155 \N \N \N +11577 2025-10-26 19:30:16.200217+00 2025-10-26 19:30:16.200226+00 f t Invitado Amar invitado-1761507015151@example.com 55555555 \N \N \N \N \N 112 \N \N \N +308 2025-01-10 19:11:18.262+00 2025-01-10 19:11:18.262+00 f t Jimena De la Barra jimedelabarra@gmail.com +5491168033738 \N Junin 174 6º. \N FEMALE 1989-05-19 -34.607532165306125 -58.396536644897964 18 452 \N jdelabarra +11759 2025-10-28 20:45:19.934184+00 2025-10-28 20:45:19.934197+00 f t pilar Gonzalez Pilargon07@gmail.com 5492923487071 \N Billinghurst 930 5to B, entre av cordoba y Tucumán \N FEMALE \N -34.5991253 -58.4149349 23 1924 \N \N +11942 2025-10-30 10:03:26.464831+00 2025-10-30 10:03:26.46484+00 f t Invitado Amar invitado-1761818605748@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12126 2025-11-01 01:37:36.574398+00 2025-11-01 01:37:36.574412+00 f t Invitado Amar invitado-1761961055837@example.com 55555555 \N \N \N \N \N 48 \N \N \N +12307 2025-11-03 23:27:42.26265+00 2025-11-03 23:27:42.262659+00 f t Invitado Amar invitado-1762212461611@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12490 2025-11-06 04:41:39.525635+00 2025-11-06 04:41:39.525643+00 f t Invitado Amar invitado-1762404097795@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12669 2025-11-08 01:42:10.222292+00 2025-11-08 01:42:10.222301+00 t t Invitado Amar invitado-1762566129693@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12852 2025-11-10 13:02:55.591123+00 2025-11-10 13:02:55.591167+00 f t Invitado Amar invitado-1762779775316@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13035 2025-11-12 01:23:34.172795+00 2025-11-12 01:23:34.172804+00 f t Invitado Amar invitado-1762910612242@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13435 2025-11-16 14:13:28.531644+00 2025-11-16 14:13:28.531655+00 f t Invitado Amar invitado-1763302408059@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13639 2025-11-18 17:30:15.701706+00 2025-11-18 17:30:15.701717+00 f t Invitado Amar invitado-1763487015276@example.com 55555555 \N \N \N \N \N 52 \N \N \N +13825 2025-11-19 20:23:50.578786+00 2025-11-19 20:23:50.578799+00 f t Invitado Amar invitado-1763583830162@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14007 2025-11-21 04:26:27.960667+00 2025-11-21 04:26:27.960675+00 f t Invitado Amar invitado-1763699186529@example.com 55555555 \N \N \N \N \N 71 \N \N \N +14186 2025-11-22 22:05:47.520688+00 2025-11-22 22:05:47.520697+00 f t Invitado Amar invitado-1763849147010@example.com 55555555 \N \N \N \N \N 73 \N \N \N +14368 2025-11-24 18:41:55.519572+00 2025-11-24 18:41:55.519581+00 f t Invitado Amar invitado-1764009715094@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14549 2025-11-25 22:52:33.273704+00 2025-11-25 22:52:33.273713+00 f t Invitado Amar invitado-1764111151991@example.com 55555555 \N \N \N \N \N 19 \N \N \N +9776 2025-10-01 18:49:06.728952+00 2025-10-01 18:49:06.728963+00 f t Invitado Amar invitado-1759344545996@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7691 +9951 2025-10-03 15:45:38.51653+00 2025-10-03 15:45:38.516538+00 t t Invitado Amar invitado-1759506338157@example.com 55555555 \N \N \N \N \N 64 \N \N \N +10130 2025-10-06 16:57:50.26544+00 2025-10-06 16:57:50.265448+00 f t Invitado Amar invitado-1759769869753@example.com 55555555 \N \N \N \N \N 89 \N \N \N +10310 2025-10-08 22:39:55.980893+00 2025-10-08 22:39:55.980902+00 f t Invitado Amar invitado-1759963195614@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10493 2025-10-11 16:07:07.030353+00 2025-10-11 16:07:07.030363+00 f t Invitado Amar invitado-1760198827538@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13206 2025-11-13 21:34:53.466023+00 2025-11-13 21:34:53.466032+00 f t Invitado Amar invitado-1763069693454@example.com 55555555 \N \N \N \N \N 77 \N \N \N +10675 2025-10-14 00:43:24.435941+00 2025-10-14 00:43:24.43595+00 f t Patricia Arriondo pato_arr@yahoo.com.ar +541141741912 \N Coronel salvadores 1597 3 C \N FEMALE \N -34.6453171 -58.3719155 32 \N \N \N +2174 2025-06-04 21:08:26.473378+00 2025-06-04 21:08:26.473386+00 f t Yamila Batalla ydaianabatalla@gmail.com +541123961477 \N Billinghurst 949 8 E \N FEMALE \N -34.5986815 -58.4146898 23 \N \N ybatalla +11034 2025-10-18 16:18:42.457148+00 2025-10-18 16:18:42.457158+00 f t Invitado Amar invitado-1760804322017@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11217 2025-10-21 12:23:38.156671+00 2025-10-21 12:23:38.156681+00 f t Invitado Amar invitado-1761049418121@example.com 55555555 \N \N \N \N \N 59 \N \N \N +11397 2025-10-23 17:16:25.331894+00 2025-10-23 17:16:25.331903+00 f t Invitado Amar invitado-1761239785088@example.com 55555555 \N \N \N \N \N 11 \N \N \N +11578 2025-10-26 19:54:14.347994+00 2025-10-26 19:54:14.348005+00 f t Invitado Amar invitado-1761508453342@example.com 55555555 \N \N \N \N \N 82 \N \N \N +11760 2025-10-28 20:48:57.786445+00 2025-10-28 20:48:57.786455+00 f t Invitado Amar invitado-1761684537138@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13640 2025-11-18 17:35:09.489991+00 2025-11-18 17:35:09.490003+00 f t Invitado Amar invitado-1763487308655@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11943 2025-10-30 10:52:50.170559+00 2025-10-30 10:52:50.170567+00 f t Víctor Carbajal info@victorcarbajal.com +541123198525 \N Esteban de Luca 2252 35 \N MALE \N -34.6358771 -58.4021992 44 \N \N \N +12127 2025-11-01 01:44:17.129216+00 2025-11-01 01:44:17.129225+00 f t Invitado Amar invitado-1761961454913@example.com 55555555 \N \N \N \N \N 48 \N \N \N +12308 2025-11-03 23:46:22.549359+00 2025-11-03 23:46:22.549368+00 f t Invitado Amar invitado-1762213582201@example.com 55555555 \N \N \N \N \N 72 \N \N \N +12491 2025-11-06 06:16:46.431996+00 2025-11-06 06:16:46.432004+00 f t Invitado Amar invitado-1762409805549@example.com 55555555 \N \N \N \N \N 74 \N \N \N +12670 2025-11-08 01:50:04.469315+00 2025-11-08 01:50:04.469329+00 f t Invitado Amar invitado-1762566603910@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12853 2025-11-10 13:56:37.613565+00 2025-11-10 13:56:37.613576+00 f t Invitado Amar invitado-1762782997699@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13036 2025-11-12 01:29:27.609374+00 2025-11-12 01:29:27.609383+00 f t Invitado Amar invitado-1762910967298@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13826 2025-11-19 20:25:55.458857+00 2025-11-19 20:25:55.45887+00 f t Invitado Amar invitado-1763583955021@example.com 55555555 \N \N \N \N \N 16 \N \N \N +13436 2025-11-16 14:18:12.351108+00 2025-11-16 14:18:12.351116+00 f t Luciana Muzaber fuh.violeta@gmail.com 5491159898815 \N Neuquén 1881 7B \N FEMALE 1997-11-30 -34.6159325 -58.438328 14 2161 \N \N +14008 2025-11-21 08:58:40.24634+00 2025-11-21 08:58:40.246351+00 f t Invitado Amar invitado-1763715520096@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14187 2025-11-22 22:41:20.731944+00 2025-11-22 22:41:20.731954+00 f t Invitado Amar invitado-1763851280336@example.com 55555555 \N \N \N \N \N 12 \N \N \N +14369 2025-11-24 19:03:19.41566+00 2025-11-24 19:03:19.415669+00 f t Invitado Amar invitado-1764010998930@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14550 2025-11-25 23:04:11.695453+00 2025-11-25 23:04:11.695463+00 f t Miranda Bernacchia miranda.b@hotmail.com.ar +541131199152 \N Necochea 1447 Martinez \N \N -34.4892489 -58.5115049 6 2279 \N \N +9777 2025-10-01 19:05:37.942577+00 2025-10-01 19:05:37.942587+00 f t Invitado Amar invitado-1759345537373@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7692 +9952 2025-10-03 15:55:51.026163+00 2025-10-03 15:55:51.026172+00 f t Nicolas Lijtmaer n.lijtmaer@beon.la 5491157387997 \N Bogota 3623 pb2 \N MALE \N -34.6296081 -58.479674 16 \N \N \N +10131 2025-10-06 17:13:08.751876+00 2025-10-06 17:13:08.751886+00 f t Invitado Amar invitado-1759770788188@example.com 55555555 \N \N \N \N \N 31 \N \N \N +10311 2025-10-08 22:44:17.954253+00 2025-10-08 22:44:17.954262+00 f t Invitado Amar invitado-1759963456856@example.com 55555555 \N \N \N \N \N 147 \N \N \N +10494 2025-10-11 16:11:11.935113+00 2025-10-11 16:11:11.935122+00 f t Invitado Amar invitado-1760199072790@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10676 2025-10-14 01:10:53.464753+00 2025-10-14 01:10:53.464766+00 f t Invitado Amar invitado-1760404253021@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10857 2025-10-16 13:50:01.154654+00 2025-10-16 13:50:01.154667+00 f t Invitado Amar invitado-1760622600808@example.com 55555555 \N \N \N \N \N 1 \N \N \N +5189 2025-07-24 19:35:01.292381+00 2025-07-24 19:35:01.29239+00 f t Max Bengolea maxbengolea86@hotmail.com 🇦🇷+5491136634693 \N libertador 2698 \N \N MALE 1986-06-25 -34.5785241 -58.4079556 1 \N \N mbengolea +11218 2025-10-21 12:26:02.552839+00 2025-10-21 12:26:02.552848+00 f t Invitado Amar invitado-1761049563256@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13207 2025-11-13 21:38:54.620867+00 2025-11-13 21:38:54.620878+00 f t Invitado Amar invitado-1763069934186@example.com 55555555 \N \N \N \N \N 44 \N \N \N +11579 2025-10-26 20:06:04.358497+00 2025-10-26 20:06:04.358506+00 f t Invitado Amar invitado-1761509163773@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11398 2025-10-23 17:46:26.964588+00 2025-10-23 17:46:26.964598+00 f t Rebecca Mendoza rebeccamendoza193@gmail.com +5491127012500 \N Juan domingo Perón 1973 9c \N FEMALE \N -34.6069574 -58.3945915 18 \N \N \N +11761 2025-10-28 20:51:24.772114+00 2025-10-28 20:51:24.772123+00 f t Invitado Amar invitado-1761684686062@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11944 2025-10-30 10:59:42.704031+00 2025-10-30 10:59:42.70404+00 f t Invitado Amar invitado-1761821982076@example.com 55555555 \N \N \N \N \N 44 \N \N \N +12128 2025-11-01 01:46:31.61416+00 2025-11-01 01:46:31.614169+00 f t Invitado Amar invitado-1761961590926@example.com 55555555 \N \N \N \N \N 48 \N \N \N +12309 2025-11-03 23:58:57.193259+00 2025-11-03 23:58:57.19327+00 f t Invitado Amar invitado-1762214337090@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12492 2025-11-06 06:17:40.453006+00 2025-11-06 06:17:40.453015+00 f t Invitado Amar invitado-1762409859877@example.com 55555555 \N \N \N \N \N 74 \N \N \N +12671 2025-11-08 01:53:16.529684+00 2025-11-08 01:53:16.529694+00 t t Invitado Amar invitado-1762566796406@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12854 2025-11-10 14:03:14.277873+00 2025-11-10 14:03:14.277881+00 f t Invitado Amar invitado-1762783419868@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13437 2025-11-16 14:22:06.285656+00 2025-11-16 14:22:06.285664+00 f t Carlota Cano canocarlot@gmail.com +541164490124 \N Lavalleja 1267 3 \N \N -34.5951743 -58.4256297 1 2162 \N \N +4853 2025-07-19 17:59:16.09285+00 2025-07-19 17:59:16.092863+00 f t Invitado Amar invitado-1752947955754@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3410 +13641 2025-11-18 17:41:19.007558+00 2025-11-18 17:41:19.007567+00 f t Invitado Amar invitado-1763487678474@example.com 55555555 \N \N \N \N \N 20 \N \N \N +13827 2025-11-19 20:27:08.521379+00 2025-11-19 20:27:08.521391+00 f t Invitado Amar invitado-1763584028158@example.com 55555555 \N \N \N \N \N 71 \N \N \N +14009 2025-11-21 09:31:47.448204+00 2025-11-21 09:31:47.448213+00 f t Invitado Amar invitado-1763717507022@example.com 55555555 \N \N \N \N \N 22 \N \N \N +13037 2025-11-12 01:33:00.359425+00 2025-11-12 01:33:00.359436+00 f t cristina martinez cris.emp.008@gmail.com +541134235147 \N Loyola 67 9 \N FEMALE \N -34.5998977 -58.4316738 26 2110 \N \N +14188 2025-11-22 22:52:31.796632+00 2025-11-22 22:52:31.796641+00 t t Invitado Amar invitado-1763851951492@example.com 55555555 \N \N \N \N \N 51 \N \N \N +14370 2025-11-24 19:05:29.034588+00 2025-11-24 19:05:29.034597+00 f t Invitado Amar invitado-1764011128854@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14551 2025-11-25 23:09:15.513737+00 2025-11-25 23:09:15.513746+00 f t Raquel Pugliese rakypugliese@hotmail.com +541123783708 \N Nolting 3705 Casa \N \N -34.6449759 -58.536413 91 2280 \N \N +9778 2025-10-01 19:06:24.612487+00 2025-10-01 19:06:24.612501+00 t t Invitado Amar invitado-1759345583979@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7693 +9953 2025-10-03 16:05:17.231299+00 2025-10-03 16:05:17.231308+00 f t Giselle Lara giselle3299@gmail.com 5491152622278 \N Croce 329 casa, entre Rivera y Portela \N \N \N -34.7554197 -58.4088817 71 \N \N \N +10132 2025-10-06 17:25:36.213027+00 2025-10-06 17:25:36.213039+00 f t Invitado Amar invitado-1759771535785@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10312 2025-10-08 22:47:03.069818+00 2025-10-08 22:47:03.069827+00 f t Invitado Amar invitado-1759963622702@example.com 55555555 \N \N \N \N \N 11 \N \N \N +10495 2025-10-11 16:14:46.034596+00 2025-10-11 16:14:46.034606+00 f t Invitado Amar invitado-1760199287103@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10677 2025-10-14 01:12:17.544283+00 2025-10-14 01:12:17.544293+00 f t Invitado Amar invitado-1760404337356@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10858 2025-10-16 13:59:28.709539+00 2025-10-16 13:59:28.709548+00 f t Invitado Amar invitado-1760623167135@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13208 2025-11-13 21:40:16.179153+00 2025-11-13 21:40:16.179163+00 f t Invitado Amar invitado-1763069975911@example.com 55555555 \N \N \N \N \N 68 \N \N \N +13438 2025-11-16 14:24:54.364119+00 2025-11-16 14:24:54.36413+00 f t Invitado Amar invitado-1763303093712@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13642 2025-11-18 17:53:07.71685+00 2025-11-18 17:53:07.716862+00 f t Invitado Amar invitado-1763488385316@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13828 2025-11-19 20:27:14.132262+00 2025-11-19 20:27:14.13227+00 f t Invitado Amar invitado-1763584033718@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11219 2025-10-21 12:45:38.600915+00 2025-10-21 12:45:38.60093+00 f t Invitado Amar invitado-1761050849795@example.com 55555555 \N \N \N \N \N \N \N \N \N +11399 2025-10-23 18:13:55.483908+00 2025-10-23 18:13:55.483916+00 f t Invitado Amar invitado-1761243235290@example.com 55555555 \N \N \N \N \N 57 \N \N \N +11035 2025-10-18 16:37:19.1956+00 2025-10-18 16:37:19.195609+00 f t Pamela Blanco pblancorivas@gmail.com +5491173616853 \N General Zapiola 178 \N \N FEMALE \N -34.4545112 -58.6116995 22 \N \N \N +14010 2025-11-21 09:55:48.412751+00 2025-11-21 09:55:48.41276+00 f t Invitado Amar invitado-1763718946709@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11580 2025-10-26 20:11:41.915073+00 2025-10-26 20:11:41.915082+00 f t Melina Figueroa MelyyFigueroaa@hotmail.com +541164221103 \N Junin 47 0 \N \N -11.4852002 -74.4379199 22 \N \N \N +11762 2025-10-28 20:52:28.574321+00 2025-10-28 20:52:28.574331+00 f t Invitado Amar invitado-1761684747843@example.com 55555555 \N \N \N \N \N 20 \N \N \N +11945 2025-10-30 11:16:08.397299+00 2025-10-30 11:16:08.397308+00 f t Invitado Amar invitado-1761822967718@example.com 55555555 \N \N \N \N \N 36 \N \N \N +12129 2025-11-01 01:47:34.713838+00 2025-11-01 01:47:34.713847+00 t t Invitado Amar invitado-1761961653419@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12310 2025-11-04 00:08:25.68076+00 2025-11-04 00:08:25.680769+00 f t Invitado Amar invitado-1762214905118@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12493 2025-11-06 06:39:16.889645+00 2025-11-06 06:39:16.889657+00 f t Invitado Amar invitado-1762411159901@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12672 2025-11-08 01:56:27.659742+00 2025-11-08 01:56:27.65975+00 f t Invitado Amar invitado-1762566987459@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12855 2025-11-10 14:08:21.861851+00 2025-11-10 14:08:21.861859+00 f t Invitado Amar invitado-1762783701328@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13038 2025-11-12 01:37:58.878224+00 2025-11-12 01:37:58.878232+00 f t Invitado Amar invitado-1762911477899@example.com 55555555 \N \N \N \N \N 26 \N \N \N +14189 2025-11-22 22:56:20.280283+00 2025-11-22 22:56:20.280294+00 f t Invitado Amar invitado-1763852180173@example.com 55555555 \N \N \N \N \N 51 \N \N \N +14371 2025-11-24 19:36:56.730472+00 2025-11-24 19:36:56.730481+00 f t Invitado Amar invitado-1764013014729@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14552 2025-11-25 23:18:00.731209+00 2025-11-25 23:18:00.731222+00 f t Invitado Amar invitado-1764112680224@example.com 55555555 \N \N \N \N \N 6 \N \N \N +6893 2025-08-19 21:23:12.270856+00 2025-08-19 21:23:12.270884+00 f t vanesa laura lorena Elias vanesaelias@hotmail.com +541132050361 \N Riglos 825 7A \N FEMALE \N -34.6287269 -58.4356472 14 1622 \N velias +9954 2025-10-03 16:23:25.837479+00 2025-10-03 16:23:25.837488+00 f t Marcelo Quiroga marcemdq@outlook.com.ar 5491123318245 \N General Pico 3653 \N \N MALE \N -34.7366813 -58.3807562 70 \N \N \N +10133 2025-10-06 17:35:24.462368+00 2025-10-06 17:35:24.462381+00 f t Jonathan Nuñez Jonacarp8515@gmail.com 5491164555953 \N Añasco 2465 No funciona el timbre, avisar al llegar \N MALE \N -34.5988099 -58.4608758 34 \N \N \N +10313 2025-10-08 23:02:34.560757+00 2025-10-08 23:02:34.560767+00 f t Invitado Amar invitado-1759964554193@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10496 2025-10-11 16:59:10.363775+00 2025-10-11 16:59:10.363788+00 f t Invitado Amar invitado-1760201950132@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10678 2025-10-14 01:15:24.860943+00 2025-10-14 01:15:24.860951+00 f t Invitado Amar invitado-1760404524683@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10859 2025-10-16 14:03:53.355769+00 2025-10-16 14:03:53.355778+00 f t Invitado Amar invitado-1760623432937@example.com 55555555 \N \N \N \N \N 15 \N \N \N +11036 2025-10-18 16:41:39.511772+00 2025-10-18 16:41:39.51178+00 f t Invitado Amar invitado-1760805697543@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11220 2025-10-21 12:48:01.635853+00 2025-10-21 12:48:01.635867+00 f t Invitado Amar invitado-1761050880796@example.com 55555555 \N \N \N \N \N \N \N \N \N +11400 2025-10-23 18:14:31.075306+00 2025-10-23 18:14:31.075316+00 f t Invitado Amar invitado-1761243259530@example.com 55555555 \N \N \N \N \N 48 \N \N \N +11581 2025-10-26 20:16:05.053477+00 2025-10-26 20:16:05.053489+00 f t Invitado Amar invitado-1761509764771@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11763 2025-10-28 21:00:20.544306+00 2025-10-28 21:00:20.544316+00 f t Invitado Amar invitado-1761685220086@example.com 55555555 \N \N \N \N \N 88 \N \N \N +13209 2025-11-13 22:07:18.257855+00 2025-11-13 22:07:18.257866+00 f t Invitado Amar invitado-1763071637864@example.com 55555555 \N \N \N \N \N 86 \N \N \N +13439 2025-11-16 14:33:41.32913+00 2025-11-16 14:33:41.32914+00 f t Invitado Amar invitado-1763303618287@example.com 55555555 \N \N \N \N \N 52 \N \N \N +13643 2025-11-18 18:04:37.591944+00 2025-11-18 18:04:37.591958+00 f t Invitado Amar invitado-1763489076284@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11946 2025-10-30 11:58:38.489272+00 2025-10-30 11:58:38.48928+00 f t Yamila Logusso yami.logusso@gmail.com +541130377054 \N Carlos carranza 4933 1 B \N FEMALE \N -34.6267175 -58.5037523 36 \N \N \N +12130 2025-11-01 01:53:30.587307+00 2025-11-01 01:53:30.587315+00 f t Invitado Amar invitado-1761962009793@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12311 2025-11-04 00:08:42.235232+00 2025-11-04 00:08:42.235241+00 f t Invitado Amar invitado-1762214921875@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12494 2025-11-06 07:49:49.73701+00 2025-11-06 07:49:49.737018+00 f t Invitado Amar invitado-1762415388904@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12673 2025-11-08 02:18:43.321552+00 2025-11-08 02:18:43.321565+00 f t Invitado Amar invitado-1762568322583@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12856 2025-11-10 14:11:55.84521+00 2025-11-10 14:11:55.845219+00 f t Invitado Amar invitado-1762783914829@example.com 55555555 \N \N \N \N \N 39 \N \N \N +13039 2025-11-12 01:44:40.891912+00 2025-11-12 01:44:40.89192+00 f t Invitado Amar invitado-1762911879622@example.com 55555555 \N \N \N \N \N 72 \N \N \N +13829 2025-11-19 20:27:39.294208+00 2025-11-19 20:27:39.294217+00 f t Invitado Amar invitado-1763584058756@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14011 2025-11-21 10:04:59.853616+00 2025-11-21 10:04:59.853626+00 f t Invitado Amar invitado-1763719497956@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14190 2025-11-22 23:29:44.32767+00 2025-11-22 23:29:44.327679+00 f t Invitado Amar invitado-1763854183800@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14372 2025-11-24 19:51:43.744399+00 2025-11-24 19:51:43.744408+00 f t Invitado Amar invitado-1764013902292@example.com 55555555 \N \N \N \N \N 47 \N \N \N +14553 2025-11-25 23:19:31.268748+00 2025-11-25 23:19:31.268757+00 f t Invitado Amar invitado-1764112772306@example.com 55555555 \N \N \N \N \N 91 \N \N \N +9779 2025-10-01 19:09:46.754065+00 2025-10-01 19:09:46.754075+00 f t Adriana Isabel Araguna adriana20araguna@gmail.com 5491133228392 \N Av. Maipu 1300 \N \N FEMALE \N -34.5258637 -58.482916 59 \N \N aaraguna +13210 2025-11-13 22:14:39.358941+00 2025-11-13 22:14:39.358949+00 f t Invitado Amar invitado-1763072079082@example.com 55555555 \N \N \N \N \N 12 \N \N \N +9955 2025-10-03 17:39:25.719021+00 2025-10-03 17:39:25.719028+00 f t Nayla Martina Lucero martulucero03@gmail.com 5491155129301 \N darwin 955 depto 4 \N FEMALE \N -34.591679 -58.4420346 26 \N \N \N +10134 2025-10-06 17:40:20.381752+00 2025-10-06 17:40:20.381764+00 f t Invitado Amar invitado-1759772420981@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10314 2025-10-08 23:13:32.242121+00 2025-10-08 23:13:32.242131+00 f t María Eugenia Fryda Saez Marfrydasaez@gmail.com 5491128018046 \N Arenales 3049 402 - No funciona el timbre C1426 FEMALE 1996-02-19 -34.5897278 -58.4074979 9 \N \N \N +10497 2025-10-11 17:42:20.155038+00 2025-10-11 17:42:20.155049+00 f t Invitado Amar invitado-1760204539759@example.com 55555555 \N \N \N \N \N 13 \N \N \N +10679 2025-10-14 01:24:02.635185+00 2025-10-14 01:24:02.635197+00 f t Invitado Amar invitado-1760405041908@example.com 55555555 \N \N \N \N \N 74 \N \N \N +10860 2025-10-16 14:21:22.234563+00 2025-10-16 14:21:22.234571+00 f t Invitado Amar invitado-1760624481596@example.com 55555555 \N \N \N \N \N 75 \N \N \N +11037 2025-10-18 16:59:40.048855+00 2025-10-18 16:59:40.048864+00 f t Invitado Amar invitado-1760806779277@example.com 55555555 \N \N \N \N \N 147 \N \N \N +13440 2025-11-16 14:38:16.237717+00 2025-11-16 14:38:16.237726+00 f t Invitado Amar invitado-1763303895725@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13644 2025-11-18 18:11:31.125348+00 2025-11-18 18:11:31.12536+00 f t Invitado Amar invitado-1763489489853@example.com 55555555 \N \N \N \N \N 11 \N \N \N +11221 2025-10-21 13:06:24.771415+00 2025-10-21 13:06:24.771426+00 f t Soledad Desrets soledad.desrets@gmail.com +541132151463 \N Profesor Aguer 5116 1E \N FEMALE \N -34.5499442 -58.5601719 79 \N \N \N +11401 2025-10-23 18:51:13.666605+00 2025-10-23 18:51:13.666614+00 f t Invitado Amar invitado-1761245472648@example.com 55555555 \N \N \N \N \N 50 \N \N \N +11582 2025-10-26 20:36:28.165883+00 2025-10-26 20:36:28.165892+00 f t Invitado Amar invitado-1761510987354@example.com 55555555 \N \N \N \N \N 24 \N \N \N +11764 2025-10-28 21:00:56.634299+00 2025-10-28 21:00:56.63432+00 f t Invitado Amar invitado-1761685255661@example.com 55555555 \N \N \N \N \N 12 \N \N \N +11947 2025-10-30 12:07:20.468974+00 2025-10-30 12:07:20.468984+00 f t Invitado Amar invitado-1761826040216@example.com 55555555 \N \N \N \N \N 36 \N \N \N +12131 2025-11-01 02:05:39.266242+00 2025-11-01 02:05:39.266251+00 f t Invitado Amar invitado-1761962738547@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12312 2025-11-04 00:27:10.115216+00 2025-11-04 00:27:10.115225+00 f t Invitado Amar invitado-1762216028801@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12495 2025-11-06 07:50:14.090628+00 2025-11-06 07:50:14.090642+00 f t Invitado Amar invitado-1762415413499@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12674 2025-11-08 02:22:26.763908+00 2025-11-08 02:22:26.76392+00 f t Invitado Amar invitado-1762568546126@example.com 55555555 \N \N \N \N \N 66 \N \N \N +13830 2025-11-19 20:29:28.466751+00 2025-11-19 20:29:28.466761+00 f t Invitado Amar invitado-1763584168121@example.com 55555555 \N \N \N \N \N 26 \N \N \N +14012 2025-11-21 10:17:04.607866+00 2025-11-21 10:17:04.607877+00 f t Invitado Amar invitado-1763720226146@example.com 55555555 \N \N \N \N \N 58 \N \N \N +13040 2025-11-12 01:44:59.955058+00 2025-11-12 01:44:59.955067+00 f t Invitado Amar invitado-1762911898078@example.com 55555555 \N \N \N \N \N 17 \N \N \N +14191 2025-11-22 23:48:41.957147+00 2025-11-22 23:48:41.957156+00 f t Invitado Amar invitado-1763855320276@example.com 55555555 \N \N \N \N \N 20 \N \N \N +14373 2025-11-24 19:52:21.693647+00 2025-11-24 19:52:21.693656+00 f t Invitado Amar invitado-1764013941143@example.com 55555555 \N \N \N \N \N 73 \N \N \N +12857 2025-11-10 14:31:26.932012+00 2025-11-10 14:31:26.932023+00 f t Rodolfo Valentini r.valentini.v@gmail.com +541168001275 \N Álvarez Jonte 1647 5to f \N MALE \N -34.6000913 -58.4684436 34 2090 \N \N +14554 2025-11-25 23:24:47.864934+00 2025-11-25 23:24:47.864942+00 f t Invitado Amar invitado-1764113087111@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13211 2025-11-13 22:20:30.457452+00 2025-11-13 22:20:30.457461+00 f t Invitado Amar invitado-1763072428862@example.com 55555555 \N \N \N \N \N 32 \N \N \N +9956 2025-10-03 17:43:32.196594+00 2025-10-03 17:43:32.196603+00 f t Invitado Amar invitado-1759513411872@example.com 55555555 \N \N \N \N \N 16 \N \N \N +10135 2025-10-06 17:57:46.70571+00 2025-10-06 17:57:46.70572+00 f t Invitado Amar invitado-1759773466289@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10315 2025-10-08 23:22:16.023784+00 2025-10-08 23:22:16.023793+00 f t Invitado Amar invitado-1759965735476@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10498 2025-10-11 17:56:01.548282+00 2025-10-11 17:56:01.548292+00 f t Invitado Amar invitado-1760205360844@example.com 55555555 \N \N \N \N \N 77 \N \N \N +10680 2025-10-14 01:40:27.11732+00 2025-10-14 01:40:27.117329+00 f t Invitado Amar invitado-1760406026406@example.com 55555555 \N \N \N \N \N 24 \N \N \N +10861 2025-10-16 15:02:26.896017+00 2025-10-16 15:02:26.896026+00 f t Invitado Amar invitado-1760626947642@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13441 2025-11-16 14:49:27.521782+00 2025-11-16 14:49:27.521794+00 f t Invitado Amar invitado-1763304566970@example.com 55555555 \N \N \N \N \N 31 \N \N \N +13645 2025-11-18 18:37:26.241859+00 2025-11-18 18:37:26.241868+00 f t Invitado Amar invitado-1763491045140@example.com 55555555 \N \N \N \N \N 38 \N \N \N +11222 2025-10-21 13:08:54.370072+00 2025-10-21 13:08:54.370081+00 f t Invitado Amar invitado-1761052134689@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11402 2025-10-23 18:58:15.967858+00 2025-10-23 18:58:15.967867+00 f t Invitado Amar invitado-1761245895425@example.com 55555555 \N \N \N \N \N 43 \N \N \N +11583 2025-10-27 03:06:51.353367+00 2025-10-27 03:06:51.353376+00 f t Invitado Amar invitado-1761534410887@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13831 2025-11-19 20:29:30.678068+00 2025-11-19 20:29:30.678081+00 f t Invitado Amar invitado-1763584169063@example.com 55555555 \N \N \N \N \N 29 \N \N \N +14013 2025-11-21 10:57:53.290178+00 2025-11-21 10:57:53.290186+00 f t Invitado Amar invitado-1763722672622@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11765 2025-10-28 21:02:35.542611+00 2025-10-28 21:02:35.542622+00 f t Genesis Marquez genesismarquezas@gmail.com 5491158772032 \N Uruguay 813 6A \N FEMALE \N -34.4330088 -57.8635876 9 1925 \N \N +11948 2025-10-30 12:30:49.622627+00 2025-10-30 12:30:49.622638+00 f t Invitado Amar invitado-1761827448993@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12132 2025-11-01 02:12:32.588139+00 2025-11-01 02:12:32.588148+00 f t Invitado Amar invitado-1761963149935@example.com 55555555 \N \N \N \N \N 61 \N \N \N +12313 2025-11-04 00:58:34.815317+00 2025-11-04 00:58:34.815326+00 f t Invitado Amar invitado-1762217913933@example.com 55555555 \N \N \N \N \N 59 \N \N \N +14192 2025-11-23 00:38:21.857709+00 2025-11-23 00:38:21.857723+00 f t Invitado Amar invitado-1763858302191@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11038 2025-10-18 17:26:26.583907+00 2025-10-18 17:26:26.58392+00 f t michelle drivet mitulunar@gmail.com 91132754346 \N laguna 1182 \N \N FEMALE \N -34.6451254 -58.4727156 5 2006 \N \N +12496 2025-11-06 08:24:39.762365+00 2025-11-06 08:24:39.762374+00 f t Invitado Amar invitado-1762417476887@example.com 55555555 \N \N \N \N \N 65 \N \N \N +12675 2025-11-08 03:24:45.221795+00 2025-11-08 03:24:45.221804+00 f t Invitado Amar invitado-1762572284907@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12858 2025-11-10 14:35:25.423569+00 2025-11-10 14:35:25.423579+00 f t Invitado Amar invitado-1762785324349@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13041 2025-11-12 01:47:46.228704+00 2025-11-12 01:47:46.228713+00 f t Invitado Amar invitado-1762912065398@example.com 55555555 \N \N \N \N \N 25 \N \N \N +14374 2025-11-24 20:14:49.194374+00 2025-11-24 20:14:49.194384+00 f t Invitado Amar invitado-1764015288681@example.com 55555555 \N \N \N \N \N 61 \N \N \N +14555 2025-11-25 23:45:13.477026+00 2025-11-25 23:45:13.477035+00 t t Invitado Amar invitado-1764114312486@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13212 2025-11-13 22:37:02.899375+00 2025-11-13 22:37:02.899387+00 f t Invitado Amar invitado-1763073422365@example.com 55555555 \N \N \N \N \N 32 \N \N \N +9957 2025-10-03 17:55:07.037462+00 2025-10-03 17:55:07.037471+00 f t Invitado Amar invitado-1759514109827@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10136 2025-10-06 18:15:13.761964+00 2025-10-06 18:15:13.761974+00 f t Invitado Amar invitado-1759774513404@example.com 55555555 \N \N \N \N \N 87 \N \N \N +10316 2025-10-08 23:42:26.650077+00 2025-10-08 23:42:26.650085+00 f t Lucrecia del Moral lucreciadelmoral@gmail.com +5491135813736 \N Avenida cordoba 456. Dpto 9A. Entre san martín y reconquista. \N FEMALE 1986-04-08 -34.5979888 -58.4125931 9 \N \N \N +10499 2025-10-11 18:02:29.669208+00 2025-10-11 18:02:29.66922+00 f t Invitado Amar invitado-1760205749299@example.com 55555555 \N \N \N \N \N 77 \N \N \N +10681 2025-10-14 02:50:03.582201+00 2025-10-14 02:50:03.582215+00 f t Invitado Amar invitado-1760410201548@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10862 2025-10-16 15:11:13.855611+00 2025-10-16 15:11:13.855619+00 f t Invitado Amar invitado-1760627472745@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11039 2025-10-18 17:31:50.277746+00 2025-10-18 17:31:50.277754+00 f t Invitado Amar invitado-1760808709415@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11223 2025-10-21 13:09:55.024582+00 2025-10-21 13:09:55.024592+00 f t Invitado Amar invitado-1761052195212@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11403 2025-10-23 20:02:50.815663+00 2025-10-23 20:02:50.815671+00 f t Invitado Amar invitado-1761249769368@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11584 2025-10-27 03:43:58.145627+00 2025-10-27 03:43:58.145641+00 f t Invitado Amar invitado-1761536637717@example.com 55555555 \N \N \N \N \N 77 \N \N \N +11766 2025-10-28 21:05:53.097555+00 2025-10-28 21:05:53.097566+00 f t Invitado Amar invitado-1761685552652@example.com 55555555 \N \N \N \N \N 158 \N \N \N +11949 2025-10-30 12:35:56.897201+00 2025-10-30 12:35:56.897215+00 f t Invitado Amar invitado-1761827756558@example.com 55555555 \N \N \N \N \N 50 \N \N \N +12133 2025-11-01 02:14:43.918123+00 2025-11-01 02:14:43.918135+00 f t Invitado Amar invitado-1761963254966@example.com 55555555 \N \N \N \N \N 43 \N \N \N +12314 2025-11-04 01:05:55.406991+00 2025-11-04 01:05:55.406999+00 t t Invitado Amar invitado-1762218354473@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12497 2025-11-06 09:31:31.738803+00 2025-11-06 09:31:31.738815+00 f t Invitado Amar invitado-1762421490524@example.com 55555555 \N \N \N \N \N 37 \N \N \N +12676 2025-11-08 03:59:05.233338+00 2025-11-08 03:59:05.23335+00 f t Invitado Amar invitado-1762574344878@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12859 2025-11-10 14:38:03.934599+00 2025-11-10 14:38:03.934607+00 f t Invitado Amar invitado-1762785483526@example.com 55555555 \N \N \N \N \N 34 \N \N \N +13042 2025-11-12 02:22:26.260119+00 2025-11-12 02:22:26.260131+00 f t Invitado Amar invitado-1762914145293@example.com 55555555 \N \N \N \N \N 37 \N \N \N +13442 2025-11-16 15:02:03.39279+00 2025-11-16 15:02:03.392799+00 f t Invitado Amar invitado-1763305322746@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13832 2025-11-19 20:35:55.81054+00 2025-11-19 20:35:55.810549+00 f t Invitado Amar invitado-1763584555375@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14014 2025-11-21 10:58:10.940784+00 2025-11-21 10:58:10.940792+00 f t Invitado Amar invitado-1763722690480@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13646 2025-11-18 18:43:29.454683+00 2025-11-18 18:43:29.454694+00 f t Leila Kozak leila.kozak@gmail.com +14257651096 \N Concepcion Arenal 2989 723 \N FEMALE \N -34.5772928 -58.4403703 1 2180 \N \N +14193 2025-11-23 01:05:21.176483+00 2025-11-23 01:05:21.176492+00 f t Invitado Amar invitado-1763859922052@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14375 2025-11-24 20:17:16.866538+00 2025-11-24 20:17:16.866547+00 f t Invitado Amar invitado-1764015436476@example.com 55555555 \N \N \N \N \N 51 \N \N \N +14556 2025-11-25 23:48:02.33776+00 2025-11-25 23:48:02.33777+00 f t Invitado Amar invitado-1764114481608@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13213 2025-11-13 22:44:50.886806+00 2025-11-13 22:44:50.886815+00 f t Invitado Amar invitado-1763073889713@example.com 55555555 \N \N \N \N \N 29 \N \N \N +9958 2025-10-03 18:07:15.140686+00 2025-10-03 18:07:15.140696+00 f t Invitado Amar invitado-1759514834661@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10137 2025-10-06 18:27:49.724279+00 2025-10-06 18:27:49.724288+00 f t Invitado Amar invitado-1759775269209@example.com 55555555 \N \N \N \N \N 79 \N \N \N +10317 2025-10-09 00:54:18.387611+00 2025-10-09 00:54:18.387621+00 f t Invitado Amar invitado-1759971257942@example.com 55555555 \N \N \N \N \N 154 \N \N \N +10500 2025-10-11 18:15:40.508621+00 2025-10-11 18:15:40.50863+00 f t Invitado Amar invitado-1760206540176@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10682 2025-10-14 02:59:58.853434+00 2025-10-14 02:59:58.853449+00 f t Invitado Amar invitado-1760410798354@example.com 55555555 \N \N \N \N \N 19 \N \N \N +13443 2025-11-16 15:49:27.550385+00 2025-11-16 15:49:27.550394+00 f t Invitado Amar invitado-1763308165910@example.com 55555555 \N \N \N \N \N 17 \N \N \N +13647 2025-11-18 18:48:35.424663+00 2025-11-18 18:48:35.424672+00 f t Invitado Amar invitado-1763491714584@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11040 2025-10-18 17:36:43.031015+00 2025-10-18 17:36:43.031024+00 f t Invitado Amar invitado-1760809002581@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10863 2025-10-16 15:19:51.305802+00 2025-10-16 15:19:51.305811+00 f t perla stratman perlastatman@hotmail.com.ar 91136180768 \N rojas 348 PB F \N FEMALE \N -34.6168649 -58.4430472 14 \N \N \N +11224 2025-10-21 13:10:42.734458+00 2025-10-21 13:10:42.734469+00 f t Invitado Amar invitado-1761052241867@example.com 55555555 \N \N \N \N \N 79 \N \N \N +11404 2025-10-23 20:05:41.034377+00 2025-10-23 20:05:41.034385+00 f t Invitado Amar invitado-1761249941127@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11585 2025-10-27 03:49:17.986952+00 2025-10-27 03:49:17.98696+00 f t Invitado Amar invitado-1761536956942@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11767 2025-10-28 21:07:42.076635+00 2025-10-28 21:07:42.076643+00 f t Invitado Amar invitado-1761685660703@example.com 55555555 \N \N \N \N \N 37 \N \N \N +11950 2025-10-30 12:38:25.043306+00 2025-10-30 12:38:25.043315+00 f t Invitado Amar invitado-1761827904201@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12134 2025-11-01 02:16:01.948181+00 2025-11-01 02:16:01.948193+00 f t Invitado Amar invitado-1761963359658@example.com 55555555 \N \N \N \N \N 43 \N \N \N +13833 2025-11-19 20:40:32.234095+00 2025-11-19 20:40:32.234104+00 f t Invitado Amar invitado-1763584831739@example.com 55555555 \N \N \N \N \N 61 \N \N \N +6588 2025-08-15 14:43:45.01372+00 2025-08-15 14:43:45.01373+00 f t Belen Cardone belu12cardone@gmail.com +542901484864 \N Av Pueyrredón 637 10A \N \N -34.6027701 -58.4048766 18 2002 \N bcardone +12498 2025-11-06 09:48:38.232933+00 2025-11-06 09:48:38.232943+00 f t Invitado Amar invitado-1762422517395@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12677 2025-11-08 04:12:09.543768+00 2025-11-08 04:12:09.543777+00 f t Invitado Amar invitado-1762575127511@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12860 2025-11-10 14:43:41.230962+00 2025-11-10 14:43:41.230975+00 f t Invitado Amar invitado-1762785820635@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13043 2025-11-12 02:36:18.856732+00 2025-11-12 02:36:18.85674+00 f t Invitado Amar invitado-1762914977477@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14015 2025-11-21 11:01:34.395654+00 2025-11-21 11:01:34.395703+00 f t Invitado Amar invitado-1763722892419@example.com 55555555 \N \N \N \N \N 12 \N \N \N +14194 2025-11-23 01:17:05.125071+00 2025-11-23 01:17:05.12508+00 f t Invitado Amar invitado-1763860624705@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14376 2025-11-24 20:20:43.078318+00 2025-11-24 20:20:43.078329+00 f t Invitado Amar invitado-1764015642585@example.com 55555555 \N \N \N \N \N 6 \N \N \N +14557 2025-11-26 00:26:20.503596+00 2025-11-26 00:26:20.503609+00 f t Invitado Amar invitado-1764116779416@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13214 2025-11-13 22:47:43.893564+00 2025-11-13 22:47:43.893573+00 f t Invitado Amar invitado-1763074063449@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9959 2025-10-03 18:30:11.801169+00 2025-10-03 18:30:11.80118+00 f t Invitado Amar invitado-1759516211466@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10138 2025-10-06 18:44:29.951454+00 2025-10-06 18:44:29.951463+00 f t Invitado Amar invitado-1759776268619@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10318 2025-10-09 01:29:26.140118+00 2025-10-09 01:29:26.14013+00 f t Invitado Amar invitado-1759973365725@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10501 2025-10-11 18:25:24.957778+00 2025-10-11 18:25:24.957787+00 f t Invitado Amar invitado-1760207125108@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10683 2025-10-14 03:14:54.584285+00 2025-10-14 03:14:54.584293+00 f t Invitado Amar invitado-1760411693878@example.com 55555555 \N \N \N \N \N 16 \N \N \N +10864 2025-10-16 15:28:37.614593+00 2025-10-16 15:28:37.614603+00 f t Invitado Amar invitado-1760628516957@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11041 2025-10-18 17:57:47.60063+00 2025-10-18 17:57:47.600638+00 f t Invitado Amar invitado-1760810266886@example.com 55555555 \N \N \N \N \N 147 \N \N \N +11225 2025-10-21 13:16:32.485156+00 2025-10-21 13:16:32.485166+00 f t Invitado Amar invitado-1761052592108@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11405 2025-10-23 20:15:55.578848+00 2025-10-23 20:15:55.578857+00 f t Invitado Amar invitado-1761250555038@example.com 55555555 \N \N \N \N \N 80 \N \N \N +11586 2025-10-27 05:47:14.802579+00 2025-10-27 05:47:14.802589+00 f t Invitado Amar invitado-1761544034177@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11768 2025-10-28 21:14:11.597303+00 2025-10-28 21:14:11.597312+00 f t Invitado Amar invitado-1761686050839@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11951 2025-10-30 12:49:42.619174+00 2025-10-30 12:49:42.619184+00 f t Invitado Amar invitado-1761828582155@example.com 55555555 \N \N \N \N \N 85 \N \N \N +12135 2025-11-01 02:18:47.444761+00 2025-11-01 02:18:47.444771+00 f t Invitado Amar invitado-1761963525255@example.com 55555555 \N \N \N \N \N 43 \N \N \N +12315 2025-11-04 01:08:45.804566+00 2025-11-04 01:08:45.804575+00 f t Invitado Amar invitado-1762218525297@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12499 2025-11-06 10:02:32.256691+00 2025-11-06 10:02:32.2567+00 f t Invitado Amar invitado-1762423351810@example.com 55555555 \N \N \N \N \N 22 \N \N \N +12678 2025-11-08 05:29:03.867251+00 2025-11-08 05:29:03.867259+00 f t Invitado Amar invitado-1762579743480@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12861 2025-11-10 14:53:41.364549+00 2025-11-10 14:53:41.364558+00 f t Invitado Amar invitado-1762786420852@example.com 55555555 \N \N \N \N \N 13 \N \N \N +13044 2025-11-12 02:40:43.410141+00 2025-11-12 02:40:43.41015+00 f t Invitado Amar invitado-1762915242563@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13444 2025-11-16 16:26:31.813598+00 2025-11-16 16:26:31.813607+00 f t Invitado Amar invitado-1763310391422@example.com 55555555 \N \N \N \N \N 51 \N \N \N +13648 2025-11-18 18:55:41.735684+00 2025-11-18 18:55:41.735693+00 f t Eugenia Rodríguez eugerodriguez23@gmail.com 5493415829806 \N Neuquén 1160. 5D, timbre ok \N FEMALE \N -34.6159501 -58.4484612 14 2181 \N \N +13834 2025-11-19 20:42:34.37273+00 2025-11-19 20:42:34.372739+00 f t Invitado Amar invitado-1763584954015@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14016 2025-11-21 11:07:44.728511+00 2025-11-21 11:07:44.728521+00 f t Invitado Amar invitado-1763723264214@example.com 55555555 \N \N \N \N \N 39 \N \N \N +14195 2025-11-23 01:39:49.808116+00 2025-11-23 01:39:49.808125+00 f t Invitado Amar invitado-1763861989378@example.com 55555555 \N \N \N \N \N 41 \N \N \N +14377 2025-11-24 20:41:54.741856+00 2025-11-24 20:41:54.741865+00 f t Invitado Amar invitado-1764016914252@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14558 2025-11-26 00:31:52.300501+00 2025-11-26 00:31:52.300511+00 f t Invitado Amar invitado-1764117111716@example.com 55555555 \N \N \N \N \N 29 \N \N \N +9960 2025-10-03 18:31:54.667212+00 2025-10-03 18:31:54.667225+00 f t Invitado Amar invitado-1759516314268@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10139 2025-10-06 18:44:35.356736+00 2025-10-06 18:44:35.356749+00 f t Invitado Amar invitado-1759776274933@example.com 55555555 \N \N \N \N \N 8 \N \N \N +10319 2025-10-09 01:52:38.526902+00 2025-10-09 01:52:38.52691+00 f t Invitado Amar invitado-1759974758086@example.com 55555555 \N \N \N \N \N 112 \N \N \N +73 2024-10-30 14:13:08.944+00 2024-10-30 14:13:08.944+00 f t Leandro Doldán leandromdoldan@gmail.com 5491130119468 Padilla 876, piso 2 dpto 3, Villa Crespo. Padilla 876 Piso 2 Dto 3 \N MALE \N -34.59863435 -58.44468347348545 26 222 \N ldoldan +10684 2025-10-14 03:19:13.8957+00 2025-10-14 03:19:13.89571+00 f t Invitado Amar invitado-1760411953245@example.com 55555555 \N \N \N \N \N 88 \N \N \N +10865 2025-10-16 15:34:54.970991+00 2025-10-16 15:34:54.970999+00 f t ana paula carballo ancarballo@frba.utn.edu.ar 91135678408 \N Joaquín v González 1318 piso 5 departamento b \N FEMALE 2003-02-19 \N \N 41 \N \N \N +11042 2025-10-18 18:20:18.157899+00 2025-10-18 18:20:18.157909+00 f t Invitado Amar invitado-1760811618333@example.com 55555555 \N \N \N \N \N 156 \N \N \N +11226 2025-10-21 13:21:24.959313+00 2025-10-21 13:21:24.959322+00 f t Invitado Amar invitado-1761052884595@example.com 55555555 \N \N \N \N \N 19 \N \N \N +11406 2025-10-23 20:59:23.477442+00 2025-10-23 20:59:23.477451+00 f t Invitado Amar invitado-1761253162422@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11587 2025-10-27 09:56:05.19008+00 2025-10-27 09:56:05.190091+00 f t Invitado Amar invitado-1761558965205@example.com 55555555 \N \N \N \N \N 32 \N \N \N +11769 2025-10-28 21:27:56.162396+00 2025-10-28 21:27:56.162406+00 f t Invitado Amar invitado-1761686855099@example.com 55555555 \N \N \N \N \N 60 \N \N \N +11952 2025-10-30 13:01:11.755841+00 2025-10-30 13:01:11.75585+00 f t Gonzalo Libonatti gonzalo.libonatti@gmail.com +541140298054 \N av independencia 4009 9b \N MALE \N -34.6212855 -58.4224811 23 \N \N \N +12136 2025-11-01 02:31:13.881885+00 2025-11-01 02:31:13.881894+00 f t Invitado Amar invitado-1761964273346@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12316 2025-11-04 01:23:27.983282+00 2025-11-04 01:23:27.983291+00 f t Invitado Amar invitado-1762219406961@example.com 55555555 \N \N \N \N \N 43 \N \N \N +12500 2025-11-06 10:06:08.344569+00 2025-11-06 10:06:08.344581+00 f t Invitado Amar invitado-1762423567843@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12679 2025-11-08 07:57:33.065039+00 2025-11-08 07:57:33.065049+00 f t Invitado Amar invitado-1762588653946@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12862 2025-11-10 15:03:33.785674+00 2025-11-10 15:03:33.785687+00 f t Invitado Amar invitado-1762787013177@example.com 55555555 \N \N \N \N \N 148 \N \N \N +13045 2025-11-12 02:48:59.76459+00 2025-11-12 02:48:59.764599+00 f t Invitado Amar invitado-1762915739265@example.com 55555555 \N \N \N \N \N 69 \N \N \N +13215 2025-11-13 22:47:46.487637+00 2025-11-13 22:47:46.487649+00 f t Flor Cruzado florcruzadovelarde@gmail.com +541138493073 \N Génova 3656 A lado de la casa roja \N \N \N -34.6633439 -58.3377931 73 2135 \N \N +13445 2025-11-16 16:35:49.043756+00 2025-11-16 16:35:49.043764+00 f t Invitado Amar invitado-1763310946645@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13649 2025-11-18 18:57:21.044526+00 2025-11-18 18:57:21.044534+00 f t Invitado Amar invitado-1763492240618@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13835 2025-11-19 20:47:33.051355+00 2025-11-19 20:47:33.051364+00 f t Invitado Amar invitado-1763585250600@example.com 55555555 \N \N \N \N \N 43 \N \N \N +14017 2025-11-21 11:12:24.605813+00 2025-11-21 11:12:24.605822+00 f t Micaela Motta micaelamotta98@gmail.com +541169436688 \N Cochrane 2832 Casa \N FEMALE \N -34.5795078 -58.5071558 51 2216 \N \N +14196 2025-11-23 02:11:23.528083+00 2025-11-23 02:11:23.528092+00 f t Invitado Amar invitado-1763863883080@example.com 55555555 \N \N \N \N \N 49 \N \N \N +14378 2025-11-24 20:43:20.553192+00 2025-11-24 20:43:20.553202+00 f t Invitado Amar invitado-1764017000273@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14559 2025-11-26 00:33:37.752548+00 2025-11-26 00:33:37.752558+00 f t Invitado Amar invitado-1764117217321@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13216 2025-11-13 22:48:42.113963+00 2025-11-13 22:48:42.113975+00 f t Invitado Amar invitado-1763074121669@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9961 2025-10-03 18:33:31.591909+00 2025-10-03 18:33:31.591922+00 f t Invitado Amar invitado-1759516411154@example.com 55555555 \N \N \N \N \N 52 \N \N \N +10140 2025-10-06 18:45:14.799155+00 2025-10-06 18:45:14.799164+00 f t Invitado Amar invitado-1759776314596@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10320 2025-10-09 02:01:04.621128+00 2025-10-09 02:01:04.621137+00 f t Invitado Amar invitado-1759975263764@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10502 2025-10-11 18:35:40.929214+00 2025-10-11 18:35:40.929223+00 f t Invitado Amar invitado-1760207741587@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10685 2025-10-14 04:10:29.922931+00 2025-10-14 04:10:29.92294+00 f t Invitado Amar invitado-1760415028944@example.com 55555555 \N \N \N \N \N 82 \N \N \N +13446 2025-11-16 17:19:45.304526+00 2025-11-16 17:19:45.304536+00 f t Invitado Amar invitado-1763313579319@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13650 2025-11-18 18:57:51.188948+00 2025-11-18 18:57:51.18896+00 f t Invitado Amar invitado-1763492271003@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11043 2025-10-18 18:28:05.216363+00 2025-10-18 18:28:05.216376+00 f t Bruno Fleitas brufleitas@hotmail.com +541160314814 \N Suipacha 1379 7 A \N \N \N \N 9 \N \N \N +11227 2025-10-21 13:40:21.947006+00 2025-10-21 13:40:21.947015+00 f t Invitado Amar invitado-1761054021385@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11407 2025-10-23 22:01:39.714186+00 2025-10-23 22:01:39.714198+00 f t Invitado Amar invitado-1761256897461@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11588 2025-10-27 10:33:11.433945+00 2025-10-27 10:33:11.433954+00 f t Invitado Amar invitado-1761561190828@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11770 2025-10-28 21:40:23.469375+00 2025-10-28 21:40:23.469384+00 f t Invitado Amar invitado-1761687624459@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11953 2025-10-30 13:06:38.0371+00 2025-10-30 13:06:38.037109+00 f t Invitado Amar invitado-1761829597777@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12137 2025-11-01 04:20:48.335241+00 2025-11-01 04:20:48.335253+00 f t Invitado Amar invitado-1761970844044@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12317 2025-11-04 01:32:52.846424+00 2025-11-04 01:32:52.846432+00 f t Invitado Amar invitado-1762219972602@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12501 2025-11-06 10:19:23.776151+00 2025-11-06 10:19:23.776163+00 f t Invitado Amar invitado-1762424362974@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12680 2025-11-08 10:06:35.19663+00 2025-11-08 10:06:35.196641+00 f t Invitado Amar invitado-1762596394713@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12863 2025-11-10 15:13:16.173525+00 2025-11-10 15:13:16.173534+00 f t Invitado Amar invitado-1762787595800@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13046 2025-11-12 02:56:36.616438+00 2025-11-12 02:56:36.616447+00 f t Invitado Amar invitado-1762916195451@example.com 55555555 \N \N \N \N \N 64 \N \N \N +13836 2025-11-19 20:55:21.3625+00 2025-11-19 20:55:21.362509+00 f t Invitado Amar invitado-1763585720492@example.com 55555555 \N \N \N \N \N 60 \N \N \N +14018 2025-11-21 11:18:12.200335+00 2025-11-21 11:18:12.200345+00 f t Invitado Amar invitado-1763723892017@example.com 55555555 \N \N \N \N \N 51 \N \N \N +14197 2025-11-23 02:42:40.433525+00 2025-11-23 02:42:40.433535+00 f t Invitado Amar invitado-1763865759926@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14379 2025-11-24 20:45:00.834031+00 2025-11-24 20:45:00.834041+00 f t Invitado Amar invitado-1764017099632@example.com 55555555 \N \N \N \N \N 26 \N \N \N +14560 2025-11-26 00:39:17.732758+00 2025-11-26 00:39:17.732766+00 f t Invitado Amar invitado-1764117556587@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13217 2025-11-13 22:51:43.3244+00 2025-11-13 22:51:43.324408+00 f t Invitado Amar invitado-1763074303150@example.com 55555555 \N \N \N \N \N 73 \N \N \N +9962 2025-10-03 18:54:30.192678+00 2025-10-03 18:54:30.192688+00 f t Invitado Amar invitado-1759517669847@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10141 2025-10-06 18:47:03.422959+00 2025-10-06 18:47:03.422969+00 f t Invitado Amar invitado-1759776424014@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10321 2025-10-09 02:58:48.495396+00 2025-10-09 02:58:48.495405+00 f t Invitado Amar invitado-1759978677913@example.com 55555555 \N \N \N \N \N 85 \N \N \N +10503 2025-10-11 18:38:09.330344+00 2025-10-11 18:38:09.330357+00 f t Invitado Amar invitado-1760207887600@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10686 2025-10-14 04:33:01.847776+00 2025-10-14 04:33:01.847786+00 f t Invitado Amar invitado-1760416380851@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13447 2025-11-16 17:41:57.033148+00 2025-11-16 17:41:57.033158+00 f t Invitado Amar invitado-1763314915881@example.com 55555555 \N \N \N \N \N 44 \N \N \N +13651 2025-11-18 19:19:42.393955+00 2025-11-18 19:19:42.393963+00 f t Invitado Amar invitado-1763493581708@example.com 55555555 \N \N \N \N \N 51 \N \N \N +10867 2025-10-16 16:05:45.798395+00 2025-10-16 16:05:45.798404+00 f t Andrea Torres astorresrl@itel.edu.ar +541535904711 \N Cotagaita 3416 Pb \N FEMALE \N -34.7406839 -58.3715082 70 \N \N \N +11044 2025-10-18 18:28:29.957289+00 2025-10-18 18:28:29.957298+00 f t Invitado Amar invitado-1760812109494@example.com 55555555 \N \N \N \N \N 37 \N \N \N +11228 2025-10-21 14:29:47.766609+00 2025-10-21 14:29:47.766618+00 f t Invitado Amar invitado-1761056986503@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11408 2025-10-23 22:34:32.642875+00 2025-10-23 22:34:32.642883+00 f t Invitado Amar invitado-1761258871744@example.com 55555555 \N \N \N \N \N 46 \N \N \N +11589 2025-10-27 12:20:09.938902+00 2025-10-27 12:20:09.93891+00 f t Maira Diaz zayzabadiaz@gmail.com +541132768004 \N Avenida Cabildo 1183 4Ab \N \N -34.5675704 -58.4494048 3 \N \N \N +11771 2025-10-28 21:42:26.935128+00 2025-10-28 21:42:26.935153+00 f t Invitado Amar invitado-1761687746402@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11954 2025-10-30 13:25:51.064435+00 2025-10-30 13:25:51.064448+00 f t Invitado Amar invitado-1761830749407@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12138 2025-11-01 05:34:00.295731+00 2025-11-01 05:34:00.295743+00 f t Invitado Amar invitado-1761975238717@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12318 2025-11-04 01:35:37.070377+00 2025-11-04 01:35:37.070385+00 f t Invitado Amar invitado-1762220136463@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12502 2025-11-06 10:31:15.355849+00 2025-11-06 10:31:15.355859+00 f t Invitado Amar invitado-1762425075280@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12681 2025-11-08 10:07:51.071197+00 2025-11-08 10:07:51.071207+00 f t Invitado Amar invitado-1762596470861@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12864 2025-11-10 15:15:06.243611+00 2025-11-10 15:15:06.24372+00 f t Invitado Amar invitado-1762787705781@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13047 2025-11-12 02:57:22.583739+00 2025-11-12 02:57:22.583747+00 f t Invitado Amar invitado-1762916242162@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13837 2025-11-19 20:58:11.782412+00 2025-11-19 20:58:11.782421+00 f t Melina Benialgo melinabenialgo@gmail.com +541162067974 \N Anchorena 1170 8D \N \N -34.598046 -58.4081552 9 2202 \N \N +14019 2025-11-21 11:22:49.98498+00 2025-11-21 11:22:49.984993+00 f t Invitado Amar invitado-1763724169414@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14198 2025-11-23 02:45:53.982782+00 2025-11-23 02:45:53.982791+00 f t Invitado Amar invitado-1763865952946@example.com 55555555 \N \N \N \N \N 32 \N \N \N +14380 2025-11-24 20:57:26.380285+00 2025-11-24 20:57:26.380297+00 f t Invitado Amar invitado-1764017845862@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14561 2025-11-26 00:49:06.50079+00 2025-11-26 00:49:06.5008+00 f t Invitado Amar invitado-1764118145854@example.com 55555555 \N \N \N \N \N 32 \N \N \N +13218 2025-11-13 23:09:26.814378+00 2025-11-13 23:09:26.814387+00 f t Invitado Amar invitado-1763075366407@example.com 55555555 \N \N \N \N \N 142 \N \N \N +13448 2025-11-16 17:42:37.022216+00 2025-11-16 17:42:37.022224+00 f t Invitado Amar invitado-1763314956429@example.com 55555555 \N \N \N \N \N 88 \N \N \N +13652 2025-11-18 19:20:59.127375+00 2025-11-18 19:20:59.127386+00 f t Invitado Amar invitado-1763493657300@example.com 55555555 \N \N \N \N \N 16 \N \N \N +8583 2025-09-13 16:57:31.690878+00 2025-09-13 16:57:31.690887+00 f t Tomas Rodriguez tomasrodriguez@protonmail.com +541164808363 \N Emilio Mitre 178 2 D ( no anda el timbre llamar al 1125230934 ,atiende Julieta) \N MALE \N -34.6237266 -58.443383 14 \N \N trodriguez +10322 2025-10-09 04:30:28.083516+00 2025-10-09 04:30:28.083525+00 f t Invitado Amar invitado-1759984227767@example.com 55555555 \N \N \N \N \N 12 \N \N \N +10504 2025-10-11 19:26:21.564263+00 2025-10-11 19:26:21.564271+00 f t gustavo luchetti luchettigustavo@hotmail.com 91160383878 \N av congreso 4965 piso 12 A \N MALE 1980-09-02 -34.5688637 -58.4887604 29 \N \N \N +10687 2025-10-14 06:14:57.195098+00 2025-10-14 06:14:57.195107+00 f t Invitado Amar invitado-1760422496316@example.com 55555555 \N \N \N \N \N 147 \N \N \N +10868 2025-10-16 16:07:48.016868+00 2025-10-16 16:07:48.016879+00 f t Invitado Amar invitado-1760630867503@example.com 55555555 \N \N \N \N \N 52 \N \N \N +11045 2025-10-18 18:31:09.621241+00 2025-10-18 18:31:09.62125+00 f t Invitado Amar invitado-1760812269419@example.com 55555555 \N \N \N \N \N 37 \N \N \N +11229 2025-10-21 14:30:57.525546+00 2025-10-21 14:30:57.525559+00 f t Invitado Amar invitado-1761057055317@example.com 55555555 \N \N \N \N \N 53 \N \N \N +11409 2025-10-23 22:48:06.251325+00 2025-10-23 22:48:06.251335+00 f t Invitado Amar invitado-1761259684532@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11590 2025-10-27 12:44:02.298124+00 2025-10-27 12:44:02.298133+00 f t Invitado Amar invitado-1761569041473@example.com 55555555 \N \N \N \N \N 41 \N \N \N +13838 2025-11-19 21:00:22.760141+00 2025-11-19 21:00:22.76015+00 f t Invitado Amar invitado-1763586022564@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11772 2025-10-28 21:56:02.108646+00 2025-10-28 21:56:02.108658+00 f t Viviana zambrano Vivi_zbn@hotmail.com 5491150211865 \N Ayacucho 108 timbre 2, \N FEMALE \N -34.6943335 -58.3888906 70 1926 \N \N +14020 2025-11-21 11:35:17.28965+00 2025-11-21 11:35:17.289663+00 f t Invitado Amar invitado-1763724916448@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14199 2025-11-23 03:17:31.399161+00 2025-11-23 03:17:31.39917+00 f t Invitado Amar invitado-1763867850802@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14381 2025-11-24 20:58:37.198655+00 2025-11-24 20:58:37.198665+00 f t Invitado Amar invitado-1764017916790@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12139 2025-11-01 05:54:35.358512+00 2025-11-01 05:54:35.35852+00 f t Invitado Amar invitado-1761976474828@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11955 2025-10-30 13:26:06.052602+00 2025-10-30 13:26:06.052611+00 f t graciela pontoriero grachuu53@hotmail.com 91134745081 \N Cuevas 3654 3° dpto ph timbre portero \N FEMALE 1966-06-03 -34.6467446 -58.5324801 91 1982 \N \N +12319 2025-11-04 01:36:12.435259+00 2025-11-04 01:36:12.435267+00 f t Invitado Amar invitado-1762220172424@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10142 2025-10-06 18:56:54.581551+00 2025-10-06 18:56:54.58156+00 f t María Valentina Franco mvaf2111@gmail.com 5491131292101 \N Avenida Salvador María del carril 2415 3B \N FEMALE \N -34.587223 -58.4928514 51 2010 \N \N +12503 2025-11-06 11:31:55.197436+00 2025-11-06 11:31:55.197444+00 f t Invitado Amar invitado-1762428713399@example.com 55555555 \N \N \N \N \N 31 \N \N \N +12682 2025-11-08 11:14:42.588748+00 2025-11-08 11:14:42.58876+00 f t Invitado Amar invitado-1762600482762@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14562 2025-11-26 00:51:57.68549+00 2025-11-26 00:51:57.685503+00 f t Invitado Amar invitado-1764118317357@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12865 2025-11-10 15:15:57.736727+00 2025-11-10 15:15:57.736739+00 f t Marcelo Salado chelosalado@hotmail.com +541141766625 \N Valentín Virasoro 2470 Lote 18 \N MALE \N -34.610969 -58.4415104 155 2091 \N \N +13048 2025-11-12 02:57:44.893664+00 2025-11-12 02:57:44.893676+00 f t Invitado Amar invitado-1762916264696@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13219 2025-11-13 23:11:12.707598+00 2025-11-13 23:11:12.707609+00 f t Invitado Amar invitado-1763075471138@example.com 55555555 \N \N \N \N \N 16 \N \N \N +13449 2025-11-16 18:08:56.856942+00 2025-11-16 18:08:56.856951+00 f t Invitado Amar invitado-1763316536477@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13653 2025-11-18 19:21:22.749721+00 2025-11-18 19:21:22.749734+00 f t Invitado Amar invitado-1763493682411@example.com 55555555 \N \N \N \N \N 51 \N \N \N +10143 2025-10-06 19:09:31.228338+00 2025-10-06 19:09:31.228346+00 f t Invitado Amar invitado-1759777771362@example.com 55555555 \N \N \N \N \N 74 \N \N \N +9963 2025-10-03 19:28:51.531619+00 2025-10-03 19:28:51.531628+00 f t Jesica Vargas vargasjesicapamela@gmail.com +541165660007 \N Av. Del libertador 3266 3D \N \N \N -34.4505276 -58.5311989 75 \N \N \N +10323 2025-10-09 04:49:59.816769+00 2025-10-09 04:49:59.816779+00 f t Invitado Amar invitado-1759985398714@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10505 2025-10-11 19:51:07.921284+00 2025-10-11 19:51:07.921293+00 f t Invitado Amar invitado-1760212267468@example.com 55555555 \N \N \N \N \N 69 \N \N \N +10688 2025-10-14 07:14:18.042802+00 2025-10-14 07:14:18.042811+00 f t Invitado Amar invitado-1760426059218@example.com 55555555 \N \N \N \N \N 79 \N \N \N +10869 2025-10-16 16:18:00.119456+00 2025-10-16 16:18:00.11947+00 f t Invitado Amar invitado-1760631479718@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11046 2025-10-18 19:15:22.698735+00 2025-10-18 19:15:22.698745+00 f t Invitado Amar invitado-1760814922594@example.com 55555555 \N \N \N \N \N 17 \N \N \N +13839 2025-11-19 21:04:22.578708+00 2025-11-19 21:04:22.578717+00 f t Invitado Amar invitado-1763586261544@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11230 2025-10-21 14:39:32.234565+00 2025-10-21 14:39:32.234576+00 f t franco Figueiras franco.fi@hotmail.com 5491163722679 \N Ruy diaz de guzman 238 4to B . \N MALE \N -34.6331984 -58.3711177 32 1892 \N \N +11410 2025-10-23 22:49:07.406178+00 2025-10-23 22:49:07.406187+00 f t Invitado Amar invitado-1761259746944@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14021 2025-11-21 11:53:59.356883+00 2025-11-21 11:53:59.356897+00 f t Invitado Amar invitado-1763726038888@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14200 2025-11-23 03:51:57.187931+00 2025-11-23 03:51:57.18794+00 f t Invitado Amar invitado-1763869917309@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11773 2025-10-28 22:03:58.126048+00 2025-10-28 22:03:58.126059+00 f t Invitado Amar invitado-1761689037321@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14382 2025-11-24 20:59:37.569546+00 2025-11-24 20:59:37.569556+00 f t Invitado Amar invitado-1764017977330@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11956 2025-10-30 13:29:39.4166+00 2025-10-30 13:29:39.416608+00 f t Yanina Barrios yaniii.barrios@hotmail.com +541154730898 \N Barcelona 414 . \N FEMALE \N -34.681307 -58.6827896 53 \N \N \N +14563 2025-11-26 01:05:14.262814+00 2025-11-26 01:05:14.262823+00 f t Invitado Amar invitado-1764119113699@example.com 55555555 \N \N \N \N \N 82 \N \N \N +12140 2025-11-01 07:37:19.666324+00 2025-11-01 07:37:19.666334+00 f t Invitado Amar invitado-1761982638414@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12320 2025-11-04 02:06:02.917979+00 2025-11-04 02:06:02.917996+00 f t Invitado Amar invitado-1762221961896@example.com 55555555 \N \N \N \N \N 24 \N \N \N +11591 2025-10-27 13:17:54.294037+00 2025-10-27 13:17:54.294045+00 f t Victoria Garcia De Pietro vickygarcia83@gmail.com +541154183872 \N Ciudad de la Paz 318 5B \N FEMALE \N -34.5743696 -58.4416971 1 1952 \N \N +12504 2025-11-06 11:42:14.460787+00 2025-11-06 11:42:14.460797+00 f t Invitado Amar invitado-1762429334059@example.com 55555555 \N \N \N \N \N 22 \N \N \N +12683 2025-11-08 12:07:22.150662+00 2025-11-08 12:07:22.150671+00 f t Invitado Amar invitado-1762603641590@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12866 2025-11-10 15:28:22.144074+00 2025-11-10 15:28:22.144084+00 f t Renzo Galvano galvanoren@gmail.com +5493416580004 \N PARAGUAY 5536 5A \N MALE \N -34.5767959 -58.4344722 1 2092 \N \N +13049 2025-11-12 03:07:33.553296+00 2025-11-12 03:07:33.553305+00 f t Invitado Amar invitado-1762916852669@example.com 55555555 \N \N \N \N \N 16 \N \N \N +13220 2025-11-13 23:11:41.794382+00 2025-11-13 23:11:41.79439+00 f t Invitado Amar invitado-1763075501628@example.com 55555555 \N \N \N \N \N 142 \N \N \N +9964 2025-10-03 19:29:11.610195+00 2025-10-03 19:29:11.610203+00 f t Invitado Amar invitado-1759519751093@example.com 55555555 \N \N \N \N \N 88 \N \N \N +10144 2025-10-06 19:27:14.74114+00 2025-10-06 19:27:14.741152+00 f t Invitado Amar invitado-1759778834393@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10324 2025-10-09 10:02:21.406275+00 2025-10-09 10:02:21.406283+00 f t Invitado Amar invitado-1760004139592@example.com 55555555 \N \N \N \N \N 19 \N \N \N +10506 2025-10-11 20:12:48.50482+00 2025-10-11 20:12:48.504833+00 f t Invitado Amar invitado-1760213567122@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10689 2025-10-14 08:11:17.939313+00 2025-10-14 08:11:17.939323+00 f t Invitado Amar invitado-1760429477174@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13450 2025-11-16 18:48:16.603215+00 2025-11-16 18:48:16.603223+00 f t Invitado Amar invitado-1763318895514@example.com 55555555 \N \N \N \N \N 71 \N \N \N +13654 2025-11-18 19:27:18.78538+00 2025-11-18 19:27:18.785393+00 f t Invitado Amar invitado-1763494037698@example.com 55555555 \N \N \N \N \N 46 \N \N \N +11047 2025-10-18 19:15:52.77504+00 2025-10-18 19:15:52.775051+00 f t Invitado Amar invitado-1760814953120@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11231 2025-10-21 14:42:05.587339+00 2025-10-21 14:42:05.587352+00 f t Invitado Amar invitado-1761057724246@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11411 2025-10-23 22:56:43.225907+00 2025-10-23 22:56:43.225916+00 f t Invitado Amar invitado-1761260202673@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11592 2025-10-27 13:18:43.384548+00 2025-10-27 13:18:43.384556+00 f t Invitado Amar invitado-1761571122758@example.com 55555555 \N \N \N \N \N 49 \N \N \N +11774 2025-10-28 22:20:03.915814+00 2025-10-28 22:20:03.915831+00 f t Invitado Amar invitado-1761690003150@example.com 55555555 \N \N \N \N \N 73 \N \N \N +11957 2025-10-30 13:34:25.768227+00 2025-10-30 13:34:25.768235+00 f t Invitado Amar invitado-1761831265036@example.com 55555555 \N \N \N \N \N 53 \N \N \N +12141 2025-11-01 07:49:24.048377+00 2025-11-01 07:49:24.048386+00 f t Invitado Amar invitado-1761983363425@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10870 2025-10-16 16:30:35.887534+00 2025-10-16 16:30:35.887543+00 f t livia durante livia.durante71@gmail.com 91125975966 \N Colpayo 760 piso 2 dpto 5 torre 1 \N FEMALE 1998-03-21 -34.6116901 -58.4436328 14 1951 \N \N +12321 2025-11-04 02:09:39.182834+00 2025-11-04 02:09:39.182843+00 f t Invitado Amar invitado-1762222177661@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12505 2025-11-06 11:45:13.24262+00 2025-11-06 11:45:13.242629+00 f t Invitado Amar invitado-1762429515282@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13840 2025-11-19 21:07:18.1993+00 2025-11-19 21:07:18.199309+00 f t Invitado Amar invitado-1763586436293@example.com 55555555 \N \N \N \N \N 13 \N \N \N +14022 2025-11-21 12:02:37.207716+00 2025-11-21 12:02:37.207725+00 f t Invitado Amar invitado-1763726556739@example.com 55555555 \N \N \N \N \N 157 \N \N \N +12684 2025-11-08 12:24:43.130453+00 2025-11-08 12:24:43.130462+00 f t Santiago Espil santiago-espil@hotmail.com +541144490474 \N M t de alvear 1239 12A \N MALE \N -34.5965923 -58.4002867 9 2066 \N \N +12867 2025-11-10 15:31:32.617782+00 2025-11-10 15:31:32.617791+00 t t Invitado Amar invitado-1762788692441@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13050 2025-11-12 03:35:12.755286+00 2025-11-12 03:35:12.755298+00 f t Invitado Amar invitado-1762918510578@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14201 2025-11-23 04:00:07.375096+00 2025-11-23 04:00:07.375109+00 f t Invitado Amar invitado-1763870406060@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14383 2025-11-24 21:03:14.211606+00 2025-11-24 21:03:14.211616+00 f t Invitado Amar invitado-1764018193818@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14564 2025-11-26 01:06:28.937877+00 2025-11-26 01:06:28.937889+00 f t Invitado Amar invitado-1764119188922@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13221 2025-11-13 23:13:15.09189+00 2025-11-13 23:13:15.091898+00 f t Invitado Amar invitado-1763075594003@example.com 55555555 \N \N \N \N \N 4 \N \N \N +9965 2025-10-03 20:24:03.243229+00 2025-10-03 20:24:03.243241+00 f t Invitado Amar invitado-1759523042896@example.com 55555555 \N \N \N \N \N 77 \N \N \N +10145 2025-10-06 19:33:35.007493+00 2025-10-06 19:33:35.007505+00 f t Invitado Amar invitado-1759779214318@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10325 2025-10-09 10:49:35.07379+00 2025-10-09 10:49:35.073799+00 f t Invitado Amar invitado-1760006974341@example.com 55555555 \N \N \N \N \N 34 \N \N \N +10507 2025-10-11 20:18:14.92922+00 2025-10-11 20:18:14.929229+00 f t Invitado Amar invitado-1760213894177@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10690 2025-10-14 10:54:19.286149+00 2025-10-14 10:54:19.286159+00 f t Invitado Amar invitado-1760439258835@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10871 2025-10-16 16:37:30.939699+00 2025-10-16 16:37:30.939707+00 f t Invitado Amar invitado-1760632649123@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11048 2025-10-18 19:16:28.241818+00 2025-10-18 19:16:28.241827+00 f t Invitado Amar invitado-1760814988540@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11232 2025-10-21 14:47:23.732597+00 2025-10-21 14:47:23.732606+00 f t Roberto Meijomil rmeijo@hotmail.com +541135606222 \N Ortega y gasset 2385 Pb \N \N -34.5870724 -58.6027947 89 \N \N \N +11412 2025-10-23 22:59:05.366863+00 2025-10-23 22:59:05.366875+00 f t Invitado Amar invitado-1761260344824@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11593 2025-10-27 13:21:15.612784+00 2025-10-27 13:21:15.612792+00 f t Invitado Amar invitado-1761571275470@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11775 2025-10-28 22:26:54.344992+00 2025-10-28 22:26:54.345002+00 f t Invitado Amar invitado-1761690413964@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11958 2025-10-30 13:38:07.227348+00 2025-10-30 13:38:07.227358+00 f t Invitado Amar invitado-1761831484873@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12142 2025-11-01 07:50:12.966959+00 2025-11-01 07:50:12.966968+00 f t Invitado Amar invitado-1761983411899@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12322 2025-11-04 02:15:19.836114+00 2025-11-04 02:15:19.836124+00 f t Invitado Amar invitado-1762222518993@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12506 2025-11-06 11:54:09.391735+00 2025-11-06 11:54:09.391747+00 f t Invitado Amar invitado-1762430047597@example.com 55555555 \N \N \N \N \N 142 \N \N \N +12685 2025-11-08 12:27:41.778041+00 2025-11-08 12:27:41.778049+00 f t Invitado Amar invitado-1762604860773@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12868 2025-11-10 15:33:50.953229+00 2025-11-10 15:33:50.953238+00 f t Invitado Amar invitado-1762788830773@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13051 2025-11-12 04:10:12.69786+00 2025-11-12 04:10:12.697873+00 f t Invitado Amar invitado-1762920611704@example.com 55555555 \N \N \N \N \N 150 \N \N \N +13451 2025-11-16 19:08:56.912442+00 2025-11-16 19:08:56.912456+00 f t Sebastian Gómez gomezsebastianemanuel@gmail.com 5491155010280 \N Av triunvirato 3335 piso 6 C \N FEMALE 1995-08-22 -34.5851243 -58.4603767 35 2163 \N \N +13655 2025-11-18 19:30:19.625933+00 2025-11-18 19:30:19.625941+00 f t Invitado Amar invitado-1763494218756@example.com 55555555 \N \N \N \N \N 46 \N \N \N +13841 2025-11-19 21:21:26.592274+00 2025-11-19 21:21:26.592284+00 f t Invitado Amar invitado-1763587286023@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14023 2025-11-21 12:16:02.778359+00 2025-11-21 12:16:02.778368+00 f t Invitado Amar invitado-1763727362145@example.com 55555555 \N \N \N \N \N 63 \N \N \N +14202 2025-11-23 06:24:04.824547+00 2025-11-23 06:24:04.824561+00 f t Invitado Amar invitado-1763879044299@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14384 2025-11-24 21:31:42.825716+00 2025-11-24 21:31:42.825729+00 f t Invitado Amar invitado-1764019904597@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14565 2025-11-26 01:12:06.882135+00 2025-11-26 01:12:06.882145+00 f t Invitado Amar invitado-1764119526462@example.com 55555555 \N \N \N \N \N 44 \N \N \N +13222 2025-11-13 23:14:44.366006+00 2025-11-13 23:14:44.366018+00 f t Invitado Amar invitado-1763075683248@example.com 55555555 \N \N \N \N \N 70 \N \N \N +9966 2025-10-03 20:27:39.531868+00 2025-10-03 20:27:39.531877+00 t t Invitado Amar invitado-1759523259196@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13452 2025-11-16 19:38:39.442762+00 2025-11-16 19:38:39.44277+00 f t Invitado Amar invitado-1763321918542@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10146 2025-10-06 19:50:29.539869+00 2025-10-06 19:50:29.539881+00 f t Delfina Gascon gascondelfina@gmail.com +5462335530 \N Manuela pedraza 2168 8 \N \N -34.5501726 -58.4640112 25 \N \N \N +10326 2025-10-09 11:02:11.792538+00 2025-10-09 11:02:11.792546+00 f t Invitado Amar invitado-1760007730409@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10508 2025-10-11 21:38:01.270485+00 2025-10-11 21:38:01.270497+00 f t Invitado Amar invitado-1760218681789@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10691 2025-10-14 12:38:13.880168+00 2025-10-14 12:38:13.880178+00 f t Invitado Amar invitado-1760445493481@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10872 2025-10-16 17:06:54.786388+00 2025-10-16 17:06:54.786396+00 f t Invitado Amar invitado-1760634413619@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11049 2025-10-18 19:17:17.394337+00 2025-10-18 19:17:17.394346+00 f t Invitado Amar invitado-1760815037739@example.com 55555555 \N \N \N \N \N 17 \N \N \N +5655 2025-07-31 19:12:05.881239+00 2025-07-31 19:12:05.881252+00 f t Invitado Amar invitado-1753989124702@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4117 +11233 2025-10-21 14:55:12.583077+00 2025-10-21 14:55:12.583086+00 f t Invitado Amar invitado-1761058512736@example.com 55555555 \N \N \N \N \N 89 \N \N \N +11413 2025-10-23 23:04:04.837252+00 2025-10-23 23:04:04.837264+00 f t Invitado Amar invitado-1761260644491@example.com 55555555 \N \N \N \N \N 20 \N \N \N +920 2025-05-11 21:39:30.237633+00 2025-05-11 21:39:30.23764+00 f t MARISOL Higes marisolhiges@gmail.com +5491123379402 \N Av San juan 3035 piso 5to C \N \N FEMALE 1986-03-01 \N \N 12 944 \N mhiges +11776 2025-10-28 22:41:37.657212+00 2025-10-28 22:41:37.657221+00 f t Invitado Amar invitado-1761691296253@example.com 55555555 \N \N \N \N \N 51 \N \N \N +11959 2025-10-30 13:42:03.630876+00 2025-10-30 13:42:03.630884+00 f t Invitado Amar invitado-1761831721987@example.com 55555555 \N \N \N \N \N 21 \N \N \N +12143 2025-11-01 07:50:53.452122+00 2025-11-01 07:50:53.452132+00 f t Invitado Amar invitado-1761983453229@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12323 2025-11-04 03:04:27.147893+00 2025-11-04 03:04:27.147902+00 f t Invitado Amar invitado-1762225465633@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12507 2025-11-06 11:55:16.650007+00 2025-11-06 11:55:16.650019+00 f t Invitado Amar invitado-1762430114959@example.com 55555555 \N \N \N \N \N 50 \N \N \N +12686 2025-11-08 13:00:44.810213+00 2025-11-08 13:00:44.810221+00 f t Invitado Amar invitado-1762606843874@example.com 55555555 \N \N \N \N \N 66 \N \N \N +12869 2025-11-10 15:52:56.978104+00 2025-11-10 15:52:56.978112+00 f t Invitado Amar invitado-1762789976524@example.com 55555555 \N \N \N \N \N 50 \N \N \N +13052 2025-11-12 08:54:00.462165+00 2025-11-12 08:54:00.462174+00 f t Invitado Amar invitado-1762937639126@example.com 55555555 \N \N \N \N \N 147 \N \N \N +13656 2025-11-18 19:36:51.453364+00 2025-11-18 19:36:51.453378+00 f t Invitado Amar invitado-1763494610457@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13842 2025-11-19 21:31:25.727254+00 2025-11-19 21:31:25.727264+00 f t Invitado Amar invitado-1763587885076@example.com 55555555 \N \N \N \N \N 65 \N \N \N +14024 2025-11-21 12:18:30.798792+00 2025-11-21 12:18:30.798801+00 f t Invitado Amar invitado-1763727510401@example.com 55555555 \N \N \N \N \N 17 \N \N \N +14203 2025-11-23 06:34:08.838853+00 2025-11-23 06:34:08.83886+00 f t Invitado Amar invitado-1763879646107@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14385 2025-11-24 21:37:54.036626+00 2025-11-24 21:37:54.036636+00 f t Invitado Amar invitado-1764020273729@example.com 55555555 \N \N \N \N \N 74 \N \N \N +14566 2025-11-26 01:13:42.865207+00 2025-11-26 01:13:42.865216+00 f t Invitado Amar invitado-1764119622698@example.com 55555555 \N \N \N \N \N 44 \N \N \N +13223 2025-11-13 23:17:50.839427+00 2025-11-13 23:17:50.839436+00 f t Invitado Amar invitado-1763075870430@example.com 55555555 \N \N \N \N \N 3 \N \N \N +1041 2025-05-14 18:12:51.688673+00 2025-05-14 18:12:51.688685+00 f t Anabella Sellanes annasellanes@gmail.com +541122669080 \N Granaderos 831 Portero 403 \N \N -34.6182433 -58.4634234 4 \N \N asellanes +10147 2025-10-06 19:50:32.170212+00 2025-10-06 19:50:32.170221+00 f t Invitado Amar invitado-1759780231546@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10327 2025-10-09 11:13:41.28476+00 2025-10-09 11:13:41.284771+00 f t Invitado Amar invitado-1760008420869@example.com 55555555 \N \N \N \N \N 74 \N \N \N +13453 2025-11-16 19:41:10.496228+00 2025-11-16 19:41:10.496238+00 f t Invitado Amar invitado-1763322069990@example.com 55555555 \N \N \N \N \N 64 \N \N \N +10509 2025-10-11 22:36:47.871221+00 2025-10-11 22:36:47.871231+00 f t Carolina/agustina Hernandez carolina.hernandezjaunarena@gmail.com +5491137625437 \N Andres ferreyra 3546 Casa \N \N -34.4964346 -58.4826212 59 \N \N \N +10692 2025-10-14 13:26:50.108799+00 2025-10-14 13:26:50.108808+00 f t Invitado Amar invitado-1760448409765@example.com 55555555 \N \N \N \N \N 85 \N \N \N +10873 2025-10-16 17:10:38.30239+00 2025-10-16 17:10:38.302401+00 f t Invitado Amar invitado-1760634637611@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11050 2025-10-18 19:18:30.537862+00 2025-10-18 19:18:30.537871+00 f t Invitado Amar invitado-1760815110145@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13657 2025-11-18 19:38:20.531418+00 2025-11-18 19:38:20.531426+00 f t Invitado Amar invitado-1763494699764@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11234 2025-10-21 15:20:58.911912+00 2025-10-21 15:20:58.911926+00 f t Maria Valeria De Felippe Valeriadefelippe7@gmail.com 5491149373781 \N Cazon 858 1 E \N FEMALE \N -34.4287759 -58.5731218 22 1893 \N \N +11414 2025-10-23 23:26:51.10799+00 2025-10-23 23:26:51.108003+00 f t Invitado Amar invitado-1761262010330@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11594 2025-10-27 13:50:19.006291+00 2025-10-27 13:50:19.006304+00 f t Invitado Amar invitado-1761573024742@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11777 2025-10-28 23:05:44.189841+00 2025-10-28 23:05:44.189851+00 f t Invitado Amar invitado-1761692743199@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11960 2025-10-30 13:42:20.272677+00 2025-10-30 13:42:20.272685+00 f t Invitado Amar invitado-1761831739919@example.com 55555555 \N \N \N \N \N 53 \N \N \N +12144 2025-11-01 09:02:45.374014+00 2025-11-01 09:02:45.374026+00 f t Invitado Amar invitado-1761987764142@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12324 2025-11-04 03:07:00.540628+00 2025-11-04 03:07:00.540637+00 f t Invitado Amar invitado-1762225620025@example.com 55555555 \N \N \N \N \N 13 \N \N \N +12508 2025-11-06 11:58:28.779295+00 2025-11-06 11:58:28.779307+00 f t Invitado Amar invitado-1762430307899@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12687 2025-11-08 13:04:14.5358+00 2025-11-08 13:04:14.535812+00 f t Invitado Amar invitado-1762607054477@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12870 2025-11-10 16:05:19.271622+00 2025-11-10 16:05:19.271635+00 f t Invitado Amar invitado-1762790717911@example.com 55555555 \N \N \N \N \N 10 \N \N \N +13053 2025-11-12 10:35:45.849156+00 2025-11-12 10:35:45.849165+00 f t Invitado Amar invitado-1762943796475@example.com 55555555 \N \N \N \N \N 71 \N \N \N +13843 2025-11-19 21:47:11.276709+00 2025-11-19 21:47:11.276721+00 f t Invitado Amar invitado-1763588830842@example.com 55555555 \N \N \N \N \N 66 \N \N \N +14025 2025-11-21 12:19:50.90908+00 2025-11-21 12:19:50.90909+00 f t Invitado Amar invitado-1763727590663@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14204 2025-11-23 06:46:48.362314+00 2025-11-23 06:46:48.362323+00 f t Invitado Amar invitado-1763880407951@example.com 55555555 \N \N \N \N \N 25 \N \N \N +14386 2025-11-24 21:38:55.390482+00 2025-11-24 21:38:55.390491+00 f t Invitado Amar invitado-1764020333367@example.com 55555555 \N \N \N \N \N 32 \N \N \N +14567 2025-11-26 01:19:33.534716+00 2025-11-26 01:19:33.534729+00 f t Invitado Amar invitado-1764119972684@example.com 55555555 \N \N \N \N \N 41 \N \N \N +13224 2025-11-13 23:30:48.287304+00 2025-11-13 23:30:48.287317+00 f t Invitado Amar invitado-1763076647919@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9967 2025-10-03 20:31:41.058531+00 2025-10-03 20:31:41.058544+00 f t Invitado Amar invitado-1759523500703@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10148 2025-10-06 19:58:01.840607+00 2025-10-06 19:58:01.840616+00 f t Invitado Amar invitado-1759780637962@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10328 2025-10-09 11:14:10.404216+00 2025-10-09 11:14:10.404224+00 f t Invitado Amar invitado-1760008450234@example.com 55555555 \N \N \N \N \N 74 \N \N \N +10510 2025-10-11 23:36:31.982102+00 2025-10-11 23:36:31.982111+00 f t Invitado Amar invitado-1760225791514@example.com 55555555 \N \N \N \N \N 41 \N \N \N +10693 2025-10-14 13:30:53.292338+00 2025-10-14 13:30:53.292347+00 f t Invitado Amar invitado-1760448653126@example.com 55555555 \N \N \N \N \N 35 \N \N \N +10874 2025-10-16 17:15:12.130542+00 2025-10-16 17:15:12.130551+00 f t Invitado Amar invitado-1760634910974@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13454 2025-11-16 20:04:41.617717+00 2025-11-16 20:04:41.617729+00 f t Invitado Amar invitado-1763323480396@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11051 2025-10-18 19:26:20.497227+00 2025-10-18 19:26:20.49724+00 f t Claudia Garcia Bendahan claubendahan@hotmail.com +541161399031 \N Suipacha 1379 7 A \N \N \N \N 9 \N \N \N +11235 2025-10-21 15:23:48.830996+00 2025-10-21 15:23:48.83101+00 f t Invitado Amar invitado-1761060227647@example.com 55555555 \N \N \N \N \N \N \N \N \N +11415 2025-10-23 23:43:49.52175+00 2025-10-23 23:43:49.52176+00 f t Invitado Amar invitado-1761263029028@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11595 2025-10-27 14:10:02.728416+00 2025-10-27 14:10:02.728431+00 f t Invitado Amar invitado-1761574202040@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11778 2025-10-28 23:17:10.511704+00 2025-10-28 23:17:10.511717+00 f t Invitado Amar invitado-1761693429761@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11961 2025-10-30 14:09:14.481188+00 2025-10-30 14:09:14.4812+00 f t Invitado Amar invitado-1761833354080@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12145 2025-11-01 09:24:36.447185+00 2025-11-01 09:24:36.447193+00 f t Invitado Amar invitado-1761989076278@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12325 2025-11-04 03:12:07.203904+00 2025-11-04 03:12:07.203917+00 f t Karen Fernandez kaaren.fernandez@hotmail.com +541167921277 \N San Martin 683 7 \N FEMALE \N -34.6000254 -58.3740238 13 2003 \N \N +13658 2025-11-18 19:44:59.121154+00 2025-11-18 19:44:59.121163+00 f t felipe Alcayaga felipesoli@gmail.com +541167384176 \N juncal 2507 8a \N MALE \N -34.590839 -58.4024783 9 2182 \N \N +13844 2025-11-19 21:47:16.856828+00 2025-11-19 21:47:16.856836+00 f t Invitado Amar invitado-1763588836459@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12509 2025-11-06 12:07:43.383951+00 2025-11-06 12:07:43.38396+00 f t Invitado Amar invitado-1762430862909@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12688 2025-11-08 13:05:55.357826+00 2025-11-08 13:05:55.357835+00 f t Invitado Amar invitado-1762607154939@example.com 55555555 \N \N \N \N \N 79 \N \N \N +12871 2025-11-10 16:06:25.201472+00 2025-11-10 16:06:25.201481+00 f t Invitado Amar invitado-1762790783651@example.com 55555555 \N \N \N \N \N 12 \N \N \N +13054 2025-11-12 11:16:06.883706+00 2025-11-12 11:16:06.883717+00 f t Invitado Amar invitado-1762946166270@example.com 55555555 \N \N \N \N \N 22 \N \N \N +14026 2025-11-21 12:38:05.801682+00 2025-11-21 12:38:05.801691+00 f t Invitado Amar invitado-1763728685370@example.com 55555555 \N \N \N \N \N 25 \N \N \N +14205 2025-11-23 08:03:36.921786+00 2025-11-23 08:03:36.921796+00 f t Invitado Amar invitado-1763885036313@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14387 2025-11-24 21:59:26.292812+00 2025-11-24 21:59:26.292822+00 f t Norma Ambrosino ambrosnonorma@gmail.com 5491169831022 \N Ravignani 1447 \N \N FEMALE \N -34.5839207 -58.4419898 1 2254 \N \N +14568 2025-11-26 01:29:38.126747+00 2025-11-26 01:29:38.126756+00 f t Invitado Amar invitado-1764120576245@example.com 55555555 \N \N \N \N \N 6 \N \N \N +13225 2025-11-13 23:31:20.598178+00 2025-11-13 23:31:20.598195+00 f t Invitado Amar invitado-1763076680450@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9968 2025-10-03 20:46:13.563103+00 2025-10-03 20:46:13.563112+00 f t Invitado Amar invitado-1759524372271@example.com 55555555 \N \N \N \N \N 12 \N \N \N +10149 2025-10-06 20:00:02.285041+00 2025-10-06 20:00:02.285057+00 f t Invitado Amar invitado-1759780801825@example.com 55555555 \N \N \N \N \N 53 \N \N \N +10329 2025-10-09 11:28:12.297937+00 2025-10-09 11:28:12.297947+00 f t Invitado Amar invitado-1760009289919@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10511 2025-10-11 23:59:33.649777+00 2025-10-11 23:59:33.649787+00 f t Invitado Amar invitado-1760227175451@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10694 2025-10-14 13:43:22.445529+00 2025-10-14 13:43:22.445539+00 f t Invitado Amar invitado-1760449401760@example.com 55555555 \N \N \N \N \N 72 \N \N \N +10875 2025-10-16 17:18:34.481165+00 2025-10-16 17:18:34.481173+00 f t Invitado Amar invitado-1760635113828@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11052 2025-10-18 19:29:15.037634+00 2025-10-18 19:29:15.037643+00 f t Invitado Amar invitado-1760815754385@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11236 2025-10-21 15:46:01.997739+00 2025-10-21 15:46:01.997752+00 f t Invitado Amar invitado-1761061560915@example.com 55555555 \N \N \N \N \N \N \N \N \N +11416 2025-10-24 00:12:50.292404+00 2025-10-24 00:12:50.292413+00 f t Invitado Amar invitado-1761264769900@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11596 2025-10-27 14:16:47.00592+00 2025-10-27 14:16:47.005929+00 f t Invitado Amar invitado-1761574606534@example.com 55555555 \N \N \N \N \N 11 \N \N \N +11779 2025-10-28 23:22:37.426487+00 2025-10-28 23:22:37.426497+00 f t Invitado Amar invitado-1761693753011@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13455 2025-11-16 20:08:03.938287+00 2025-11-16 20:08:03.9383+00 f t Invitado Amar invitado-1763323683369@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11962 2025-10-30 14:22:41.0103+00 2025-10-30 14:22:41.010309+00 f t mirian veiga mirianeveiga@yahoo.com.ar 91140266905 \N Anchorena 1440 B B \N FEMALE 1965-03-29 -34.5929451 -58.4047939 9 1938 \N \N +12146 2025-11-01 10:30:30.673856+00 2025-11-01 10:30:30.673868+00 f t Invitado Amar invitado-1761993029111@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12326 2025-11-04 03:15:51.38112+00 2025-11-04 03:15:51.381129+00 f t Invitado Amar invitado-1762226151067@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13659 2025-11-18 19:48:30.102019+00 2025-11-18 19:48:30.102029+00 f t Invitado Amar invitado-1763495309651@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13845 2025-11-19 22:02:14.626721+00 2025-11-19 22:02:14.626729+00 f t Invitado Amar invitado-1763589733322@example.com 55555555 \N \N \N \N \N 154 \N \N \N +12510 2025-11-06 12:14:48.295869+00 2025-11-06 12:14:48.295878+00 f t Angeles Conte angeles.contegrand@gmail.com +541168966180 \N Ayacucho 2150 2A \N FEMALE \N -34.5863399 -58.3879843 9 2045 \N \N +14027 2025-11-21 12:39:15.98013+00 2025-11-21 12:39:15.980138+00 t t Invitado Amar invitado-1763728755545@example.com 55555555 \N \N \N \N \N 49 \N \N \N +12689 2025-11-08 13:19:16.5434+00 2025-11-08 13:19:16.543415+00 f t Giuliana Ayelen Pagano Alejos paganoayelen@gmail.com +01168094787 \N Nazarre 5767 \N \N -34.6223574 -58.5236098 66 2067 \N \N +12872 2025-11-10 16:16:33.20932+00 2025-11-10 16:16:33.209332+00 f t Invitado Amar invitado-1762791394134@example.com 55555555 \N \N \N \N \N 86 \N \N \N +13055 2025-11-12 11:32:46.88527+00 2025-11-12 11:32:46.885279+00 f t Invitado Amar invitado-1762947165739@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14206 2025-11-23 08:05:19.432721+00 2025-11-23 08:05:19.432731+00 f t Invitado Amar invitado-1763885139063@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14388 2025-11-24 22:00:53.321277+00 2025-11-24 22:00:53.321286+00 f t Invitado Amar invitado-1764021651430@example.com 55555555 \N \N \N \N \N 24 \N \N \N +14569 2025-11-26 01:42:02.674591+00 2025-11-26 01:42:02.674605+00 f t Invitado Amar invitado-1764121322087@example.com 55555555 \N \N \N \N \N 88 \N \N \N +13226 2025-11-13 23:31:52.271057+00 2025-11-13 23:31:52.271065+00 f t Invitado Amar invitado-1763076711725@example.com 55555555 \N \N \N \N \N 86 \N \N \N +13456 2025-11-16 20:13:00.643169+00 2025-11-16 20:13:00.643177+00 f t Kenley Cole Kenley.cole@gmail.com 595986330099 \N Conesa 4020 piso 4, #406 \N FEMALE \N -34.5486344 -58.4758482 31 2164 \N \N +13660 2025-11-18 19:51:42.918941+00 2025-11-18 19:51:42.91895+00 f t Invitado Amar invitado-1763495502573@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13846 2025-11-19 22:37:10.797602+00 2025-11-19 22:37:10.797612+00 f t Invitado Amar invitado-1763591829936@example.com 55555555 \N \N \N \N \N 28 \N \N \N +14028 2025-11-21 12:41:09.353239+00 2025-11-21 12:41:09.353247+00 f t Invitado Amar invitado-1763728869192@example.com 55555555 \N \N \N \N \N 49 \N \N \N +10150 2025-10-06 20:09:09.382115+00 2025-10-06 20:09:09.382124+00 f t Invitado Amar invitado-1759781348893@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9969 2025-10-03 21:05:20.085736+00 2025-10-03 21:05:20.085748+00 f t Natalia paez escallon natis.pe@hotmail.com 91139329911 \N dorrego 2080 depto 10 D \N FEMALE \N -34.5786391 -58.4401814 1 \N \N \N +10330 2025-10-09 12:10:31.534072+00 2025-10-09 12:10:31.534081+00 f t Invitado Amar invitado-1760011830992@example.com 55555555 \N \N \N \N \N 84 \N \N \N +10512 2025-10-12 00:03:05.052011+00 2025-10-12 00:03:05.052021+00 f t Invitado Amar invitado-1760227387058@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10695 2025-10-14 13:53:58.990992+00 2025-10-14 13:53:58.991001+00 f t Invitado Amar invitado-1760450038126@example.com 55555555 \N \N \N \N \N 17 \N \N \N +10876 2025-10-16 17:33:50.009729+00 2025-10-16 17:33:50.009743+00 f t Invitado Amar invitado-1760636028016@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11053 2025-10-18 19:58:07.499241+00 2025-10-18 19:58:07.499253+00 f t Invitado Amar invitado-1760817486863@example.com 55555555 \N \N \N \N \N 22 \N \N \N +14207 2025-11-23 10:15:00.960055+00 2025-11-23 10:15:00.960066+00 f t Invitado Amar invitado-1763892900840@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11237 2025-10-21 15:48:15.248729+00 2025-10-21 15:48:15.248741+00 f t maitena casares luciacasares115@gmail.com +541153147733 \N rivadavia 4532 \N \N \N \N 14 \N \N \N +11417 2025-10-24 00:22:00.579489+00 2025-10-24 00:22:00.579501+00 f t Invitado Amar invitado-1761265320179@example.com 55555555 \N \N \N \N \N 52 \N \N \N +11597 2025-10-27 14:18:23.851627+00 2025-10-27 14:18:23.851636+00 f t Invitado Amar invitado-1761574703152@example.com 55555555 \N \N \N \N \N 43 \N \N \N +14389 2025-11-24 22:12:41.710721+00 2025-11-24 22:12:41.710735+00 f t Invitado Amar invitado-1764022359308@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14570 2025-11-26 02:26:31.576787+00 2025-11-26 02:26:31.576797+00 f t Invitado Amar invitado-1764123990663@example.com 55555555 \N \N \N \N \N 32 \N \N \N +11780 2025-10-28 23:28:18.970956+00 2025-10-28 23:28:18.970966+00 f t Laura Luna mayla78@hotmail.com +541140794741 \N Wenceslao de Tata 4620 6 A \N FEMALE \N -34.6015051 -58.5548046 88 \N \N \N +11963 2025-10-30 14:25:10.812837+00 2025-10-30 14:25:10.812847+00 f t Invitado Amar invitado-1761834310158@example.com 55555555 \N \N \N \N \N 15 \N \N \N +12147 2025-11-01 10:45:19.228799+00 2025-11-01 10:45:19.228808+00 f t Invitado Amar invitado-1761993918111@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12327 2025-11-04 03:30:24.566389+00 2025-11-04 03:30:24.566398+00 f t Invitado Amar invitado-1762227023799@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12511 2025-11-06 12:18:55.045656+00 2025-11-06 12:18:55.045664+00 f t Invitado Amar invitado-1762431534834@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12690 2025-11-08 13:23:32.578732+00 2025-11-08 13:23:32.578742+00 f t Invitado Amar invitado-1762608212201@example.com 55555555 \N \N \N \N \N 77 \N \N \N +12873 2025-11-10 16:20:16.89158+00 2025-11-10 16:20:16.891588+00 f t Invitado Amar invitado-1762791616603@example.com 55555555 \N \N \N \N \N 8 \N \N \N +13056 2025-11-12 11:41:13.410565+00 2025-11-12 11:41:13.410577+00 f t Invitado Amar invitado-1762947672992@example.com 55555555 \N \N \N \N \N 92 \N \N \N +13227 2025-11-13 23:32:08.725881+00 2025-11-13 23:32:08.725889+00 f t Invitado Amar invitado-1763076728594@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9970 2025-10-03 21:12:46.94084+00 2025-10-03 21:12:46.940852+00 f t Invitado Amar invitado-1759525966221@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10151 2025-10-06 20:28:48.740427+00 2025-10-06 20:28:48.740435+00 f t Invitado Amar invitado-1759782527905@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10331 2025-10-09 12:26:28.779049+00 2025-10-09 12:26:28.779057+00 f t Invitado Amar invitado-1760012787461@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10513 2025-10-12 00:19:09.328452+00 2025-10-12 00:19:09.328462+00 f t Invitado Amar invitado-1760228348833@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10696 2025-10-14 14:13:30.320935+00 2025-10-14 14:13:30.320947+00 f t Invitado Amar invitado-1760451211579@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10877 2025-10-16 17:34:21.36124+00 2025-10-16 17:34:21.361249+00 f t Invitado Amar invitado-1760636059634@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11054 2025-10-18 21:22:42.368986+00 2025-10-18 21:22:42.368999+00 f t Carolina Castro carolina.jimena.castro@gmail.com +541161530498 \N Espinosa 44 10 A \N \N -34.6219106 -58.4462178 14 \N \N \N +11238 2025-10-21 15:51:19.133984+00 2025-10-21 15:51:19.133993+00 f t Invitado Amar invitado-1761061878709@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11418 2025-10-24 00:26:52.55517+00 2025-10-24 00:26:52.555184+00 f t Invitado Amar invitado-1761265611813@example.com 55555555 \N \N \N \N \N 52 \N \N \N +11598 2025-10-27 14:27:59.355932+00 2025-10-27 14:27:59.355944+00 f t Invitado Amar invitado-1761575278545@example.com 55555555 \N \N \N \N \N 20 \N \N \N +11781 2025-10-28 23:33:23.661735+00 2025-10-28 23:33:23.661744+00 f t Invitado Amar invitado-1761694403697@example.com 55555555 \N \N \N \N \N 88 \N \N \N +11964 2025-10-30 14:29:37.8399+00 2025-10-30 14:29:37.839912+00 f t Invitado Amar invitado-1761834577303@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12148 2025-11-01 11:16:10.790873+00 2025-11-01 11:16:10.790883+00 f t Invitado Amar invitado-1761995930171@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12328 2025-11-04 03:31:33.673107+00 2025-11-04 03:31:33.673116+00 f t Invitado Amar invitado-1762227093156@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12512 2025-11-06 12:41:12.29926+00 2025-11-06 12:41:12.299273+00 f t Invitado Amar invitado-1762432871120@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12691 2025-11-08 13:24:06.232375+00 2025-11-08 13:24:06.232388+00 f t Invitado Amar invitado-1762608246065@example.com 55555555 \N \N \N \N \N 66 \N \N \N +12874 2025-11-10 16:28:53.704185+00 2025-11-10 16:28:53.704197+00 f t Invitado Amar invitado-1762792131926@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13057 2025-11-12 11:59:21.727392+00 2025-11-12 11:59:21.727404+00 f t Invitado Amar invitado-1762948760255@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13457 2025-11-16 20:20:13.623024+00 2025-11-16 20:20:13.623033+00 f t Kenley Cole kenley.cole@gmails.com 595986330099 \N Conesa 4020 piso 4, #406 \N FEMALE \N -34.5486344 -58.4758482 31 2166 \N \N +13661 2025-11-18 19:52:16.727596+00 2025-11-18 19:52:16.727605+00 f t Norma Maria Fernanda Gramajo normagramajo09@gmail.com 5491130906559 \N Achega 3279 piso 1 depto 5 \N FEMALE \N -34.571879 -58.5017513 29 2183 \N \N +13847 2025-11-19 22:50:03.858612+00 2025-11-19 22:50:03.858627+00 f t Invitado Amar invitado-1763592603204@example.com 55555555 \N \N \N \N \N 55 \N \N \N +14029 2025-11-21 13:30:11.282019+00 2025-11-21 13:30:11.282032+00 f t Invitado Amar invitado-1763731806623@example.com 55555555 \N \N \N \N \N 25 \N \N \N +14208 2025-11-23 10:20:02.725111+00 2025-11-23 10:20:02.725126+00 f t Invitado Amar invitado-1763893202849@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14390 2025-11-24 22:16:14.144972+00 2025-11-24 22:16:14.144985+00 f t Invitado Amar invitado-1764022573057@example.com 55555555 \N \N \N \N \N 59 \N \N \N +14571 2025-11-26 03:34:11.009674+00 2025-11-26 03:34:11.009682+00 f t Invitado Amar invitado-1764128050550@example.com 55555555 \N \N \N \N \N 153 \N \N \N +12875 2025-11-10 16:30:49.950798+00 2025-11-10 16:30:49.950807+00 f t María Laura Semhan marialaurasemhan@gmail.com +541173664925 \N Muñiz 441 PB departamento B \N FEMALE \N -34.6186984 -58.4273036 23 2093 \N \N +9971 2025-10-03 21:15:36.44952+00 2025-10-03 21:15:36.449529+00 f t Invitado Amar invitado-1759526136076@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10152 2025-10-06 20:29:51.00879+00 2025-10-06 20:29:51.008799+00 f t Invitado Amar invitado-1759782590450@example.com 55555555 \N \N \N \N \N 49 \N \N \N +10332 2025-10-09 12:40:25.128879+00 2025-10-09 12:40:25.128888+00 f t Invitado Amar invitado-1760013624660@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10514 2025-10-12 00:19:35.161135+00 2025-10-12 00:19:35.161143+00 f t Invitado Amar invitado-1760228375124@example.com 55555555 \N \N \N \N \N 14 \N \N \N +3692 2025-07-01 00:01:39.25207+00 2025-07-01 00:01:39.252081+00 f t Fernando Serattin fersersonic@gmail.com +5411306791914 \N Campana 2348 PB2 \N MALE \N -34.6092614 -58.4906242 17 1257 \N fserattin +10878 2025-10-16 17:51:46.246663+00 2025-10-16 17:51:46.246672+00 f t Invitado Amar invitado-1760637104797@example.com 55555555 \N \N \N \N \N 12 \N \N \N +11055 2025-10-18 23:23:41.140842+00 2025-10-18 23:23:41.140853+00 f t Invitado Amar invitado-1760829819973@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11239 2025-10-21 15:51:35.604958+00 2025-10-21 15:51:35.604968+00 f t Invitado Amar invitado-1761061895101@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13228 2025-11-13 23:39:06.610673+00 2025-11-13 23:39:06.610681+00 f t Invitado Amar invitado-1763077142533@example.com 55555555 \N \N \N \N \N 15 \N \N \N +11419 2025-10-24 00:27:13.673879+00 2025-10-24 00:27:13.673888+00 f t Cecilia Likei cecilialk32@gmail.com +541155604626 \N Pres.J.E.Uriburu 50 9A \N \N \N \N 18 \N \N \N +11599 2025-10-27 14:31:24.499522+00 2025-10-27 14:31:24.499531+00 f t Invitado Amar invitado-1761575483649@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11782 2025-10-28 23:33:58.423406+00 2025-10-28 23:33:58.423414+00 f t Invitado Amar invitado-1761694437671@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11965 2025-10-30 14:35:38.525382+00 2025-10-30 14:35:38.525392+00 f t Invitado Amar invitado-1761834938225@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12149 2025-11-01 11:21:56.5629+00 2025-11-01 11:21:56.562909+00 f t Invitado Amar invitado-1761996115938@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12329 2025-11-04 03:32:23.835398+00 2025-11-04 03:32:23.835407+00 f t Invitado Amar invitado-1762227143304@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12513 2025-11-06 12:41:44.518361+00 2025-11-06 12:41:44.518373+00 f t Invitado Amar invitado-1762432903725@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12692 2025-11-08 13:29:17.388515+00 2025-11-08 13:29:17.388526+00 f t Invitado Amar invitado-1762608556259@example.com 55555555 \N \N \N \N \N 19 \N \N \N +13458 2025-11-16 22:15:03.387607+00 2025-11-16 22:15:03.387623+00 f t Invitado Amar invitado-1763331301627@example.com 55555555 \N \N \N \N \N 15 \N \N \N +13662 2025-11-18 19:54:17.45187+00 2025-11-18 19:54:17.45188+00 f t Invitado Amar invitado-1763495656640@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13058 2025-11-12 12:21:45.061234+00 2025-11-12 12:21:45.061244+00 f t Invitado Amar invitado-1762950105382@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13848 2025-11-19 22:54:24.113594+00 2025-11-19 22:54:24.113603+00 f t Invitado Amar invitado-1763592863381@example.com 55555555 \N \N \N \N \N 15 \N \N \N +14030 2025-11-21 13:33:06.195712+00 2025-11-21 13:33:06.195726+00 f t Sofia cañete scanete695@gmail.com +541158836449 \N 11 de septiembre 3999 \N \N -34.5368595 -58.4677395 25 2218 \N \N +14209 2025-11-23 10:22:00.494374+00 2025-11-23 10:22:00.494384+00 f t Rocio Dearmas rociorgd@hotmail.com +541127451522 \N Jose hernandez 4171 \N \N -34.7223147 -58.417624 70 2240 \N \N +14391 2025-11-24 22:19:18.849715+00 2025-11-24 22:19:18.849724+00 f t Invitado Amar invitado-1764022758160@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14572 2025-11-26 03:40:34.913994+00 2025-11-26 03:40:34.914002+00 f t Invitado Amar invitado-1764128433657@example.com 55555555 \N \N \N \N \N 5 \N \N \N +13229 2025-11-13 23:45:45.301856+00 2025-11-13 23:45:45.301865+00 f t Invitado Amar invitado-1763077545186@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13459 2025-11-16 23:47:24.234153+00 2025-11-16 23:47:24.234167+00 f t Invitado Amar invitado-1763336843783@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9972 2025-10-03 21:24:26.678744+00 2025-10-03 21:24:26.678758+00 f t Miguel Benito benitomiguel767@gmail.com +541158941948 \N Lafuente 37 6c \N \N -34.6309589 -58.4681245 4 \N \N \N +10153 2025-10-06 20:32:43.010479+00 2025-10-06 20:32:43.010488+00 f t Invitado Amar invitado-1759782762343@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10333 2025-10-09 12:40:59.805098+00 2025-10-09 12:40:59.805107+00 f t Invitado Amar invitado-1760013659413@example.com 55555555 \N \N \N \N \N 91 \N \N \N +10515 2025-10-12 00:42:27.850762+00 2025-10-12 00:42:27.850771+00 f t Invitado Amar invitado-1760229747413@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10697 2025-10-14 14:21:43.993461+00 2025-10-14 14:21:43.993474+00 f t Invitado Amar invitado-1760451703620@example.com 55555555 \N \N \N \N \N 89 \N \N \N +13663 2025-11-18 19:56:13.936788+00 2025-11-18 19:56:13.936798+00 f t Yesica Florio yesicarobertaflor@gmail.com 5491154244131 \N Aráoz 423 \N \N FEMALE \N -34.5997268 -58.4365807 26 2184 \N \N +11056 2025-10-18 23:23:54.260621+00 2025-10-18 23:23:54.260634+00 f t Invitado Amar invitado-1760829833879@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13849 2025-11-19 23:00:46.145917+00 2025-11-19 23:00:46.145928+00 f t Invitado Amar invitado-1763593246272@example.com 55555555 \N \N \N \N \N 21 \N \N \N +14031 2025-11-21 13:35:18.490243+00 2025-11-21 13:35:18.490255+00 f t Invitado Amar invitado-1763732114123@example.com 55555555 \N \N \N \N \N 25 \N \N \N +14210 2025-11-23 10:23:48.29979+00 2025-11-23 10:23:48.299802+00 f t Invitado Amar invitado-1763893428467@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11240 2025-10-21 15:59:33.926461+00 2025-10-21 15:59:33.926471+00 f t Mariela arias marielaarias342@gmail.com +541169458519 \N Espinosa 458 pB A \N FEMALE \N -34.6174166 -58.4483894 14 \N \N \N +11420 2025-10-24 00:27:47.238346+00 2025-10-24 00:27:47.238354+00 f t Invitado Amar invitado-1761265665836@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14392 2025-11-24 22:19:54.387337+00 2025-11-24 22:19:54.387348+00 f t Invitado Amar invitado-1764022793223@example.com 55555555 \N \N \N \N \N 86 \N \N \N +11600 2025-10-27 14:39:24.602595+00 2025-10-27 14:39:24.602605+00 f t Laura Karagumechian merryan7622@gmail.com +541153440158 \N PEDERNERA 3087 CASA \N \N -34.658433 -58.433834 48 \N \N \N +11783 2025-10-28 23:37:41.174866+00 2025-10-28 23:37:41.174875+00 f t Invitado Amar invitado-1761694661488@example.com 55555555 \N \N \N \N \N 51 \N \N \N +14573 2025-11-26 04:14:56.52979+00 2025-11-26 04:14:56.529798+00 f t Invitado Amar invitado-1764130495805@example.com 55555555 \N \N \N \N \N 6 \N \N \N +11966 2025-10-30 14:36:33.915762+00 2025-10-30 14:36:33.915773+00 f t Rene Caro futalaufquen2020@gmail.com 5491130616165 \N Avenida diaz Vélez 695 Planta baja \N MALE \N -34.6451893 -58.5419877 50 1939 \N \N +12150 2025-11-01 11:35:40.120803+00 2025-11-01 11:35:40.120813+00 f t Invitado Amar invitado-1761996938899@example.com 55555555 \N \N \N \N \N 22 \N \N \N +12330 2025-11-04 05:06:37.749352+00 2025-11-04 05:06:37.749361+00 f t Invitado Amar invitado-1762232797124@example.com 55555555 \N \N \N \N \N 72 \N \N \N +12514 2025-11-06 12:48:23.606894+00 2025-11-06 12:48:23.606903+00 f t Invitado Amar invitado-1762433407712@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12693 2025-11-08 13:36:32.870381+00 2025-11-08 13:36:32.870393+00 f t Invitado Amar invitado-1762608992362@example.com 55555555 \N \N \N \N \N 52 \N \N \N +12876 2025-11-10 16:40:16.482623+00 2025-11-10 16:40:16.482631+00 f t Invitado Amar invitado-1762792816203@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10879 2025-10-16 17:58:21.483488+00 2025-10-16 17:58:21.483496+00 f t Adriana Beatriz Bello adribeabello@gmail.com 5492215455843 \N La Plata 121 529 y 530 nro 227 \N FEMALE \N 34.397982 -119.707004 147 2101 \N \N +13059 2025-11-12 12:35:06.942895+00 2025-11-12 12:35:06.942908+00 f t Invitado Amar invitado-1762950875423@example.com 55555555 \N \N \N \N \N 13 \N \N \N +13230 2025-11-13 23:56:15.134433+00 2025-11-13 23:56:15.134442+00 f t Invitado Amar invitado-1763078173014@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10154 2025-10-06 20:45:32.684395+00 2025-10-06 20:45:32.684404+00 f t Invitado Amar invitado-1759783532283@example.com 55555555 \N \N \N \N \N 3 \N \N \N +822 2025-05-06 12:57:10.193112+00 2025-05-06 12:57:10.193118+00 f t Camila Cardus carduscamila@gmail.com 5491131623336 \N Sinclair 3168 8 B \N FEMALE 1995-08-20 -34.5734552 -58.4226367 1 907 \N ccardus +10334 2025-10-09 12:54:57.94462+00 2025-10-09 12:54:57.944657+00 f t Invitado Amar invitado-1760014497546@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10516 2025-10-12 00:47:11.369931+00 2025-10-12 00:47:11.369939+00 f t Invitado Amar invitado-1760230030991@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10698 2025-10-14 14:24:39.212737+00 2025-10-14 14:24:39.21275+00 f t Magali fontana magalifontana@hotmail.com 91136073779 \N Montevideo 6034 depto 2do C \N FEMALE 1988-11-30 -32.9471825 -60.7045881 46 \N \N \N +13460 2025-11-17 00:14:39.207128+00 2025-11-17 00:14:39.207169+00 f t Invitado Amar invitado-1763338477818@example.com 55555555 \N \N \N \N \N 16 \N \N \N +13664 2025-11-18 19:57:22.441665+00 2025-11-18 19:57:22.441676+00 f t Invitado Amar invitado-1763495841970@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11057 2025-10-19 00:12:57.878841+00 2025-10-19 00:12:57.878851+00 f t Invitado Amar invitado-1760832777474@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11241 2025-10-21 15:59:36.903561+00 2025-10-21 15:59:36.903574+00 f t Invitado Amar invitado-1761062376696@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11421 2025-10-24 00:47:09.606294+00 2025-10-24 00:47:09.606303+00 f t Invitado Amar invitado-1761266828334@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11601 2025-10-27 14:54:09.15773+00 2025-10-27 14:54:09.157739+00 f t Invitado Amar invitado-1761576848724@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11784 2025-10-28 23:43:07.734176+00 2025-10-28 23:43:07.734189+00 f t Invitado Amar invitado-1761694985885@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11967 2025-10-30 14:45:40.517169+00 2025-10-30 14:45:40.517184+00 f t Invitado Amar invitado-1761835539052@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12151 2025-11-01 11:44:52.438242+00 2025-11-01 11:44:52.438251+00 f t Invitado Amar invitado-1761997489865@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12331 2025-11-04 05:20:02.942798+00 2025-11-04 05:20:02.942815+00 f t Invitado Amar invitado-1762233600695@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12515 2025-11-06 13:11:19.569217+00 2025-11-06 13:11:19.569227+00 f t Invitado Amar invitado-1762434678401@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12694 2025-11-08 13:39:25.89652+00 2025-11-08 13:39:25.896528+00 f t Invitado Amar invitado-1762609165436@example.com 55555555 \N \N \N \N \N 37 \N \N \N +12877 2025-11-10 16:49:04.443896+00 2025-11-10 16:49:04.443906+00 f t Invitado Amar invitado-1762793317423@example.com 55555555 \N \N \N \N \N 87 \N \N \N +13060 2025-11-12 12:44:34.86718+00 2025-11-12 12:44:34.867189+00 f t Invitado Amar invitado-1762951473447@example.com 55555555 \N \N \N \N \N 43 \N \N \N +10880 2025-10-16 18:49:50.493832+00 2025-10-16 18:49:50.493844+00 f t nicolas velozo nvelozo58@gmail.com 91166926630 \N Necochea 1723 depto 3 (avisar por whatsapp porque el timbre no funciona) \N FEMALE \N -34.6549269 -58.5596504 50 2195 \N \N +13850 2025-11-19 23:03:47.176373+00 2025-11-19 23:03:47.176382+00 f t Invitado Amar invitado-1763593425982@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14032 2025-11-21 13:36:19.209818+00 2025-11-21 13:36:19.209828+00 f t Invitado Amar invitado-1763732178743@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14211 2025-11-23 10:30:24.062801+00 2025-11-23 10:30:24.06281+00 f t Invitado Amar invitado-1763893822573@example.com 55555555 \N \N \N \N \N 12 \N \N \N +14393 2025-11-24 22:20:53.297504+00 2025-11-24 22:20:53.297516+00 f t Invitado Amar invitado-1764022852860@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13231 2025-11-14 00:10:39.723584+00 2025-11-14 00:10:39.723591+00 f t Invitado Amar invitado-1763079038867@example.com 55555555 \N \N \N \N \N 9 \N \N \N +9973 2025-10-03 22:31:38.372262+00 2025-10-03 22:31:38.372275+00 f t Invitado Amar invitado-1759530697324@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10155 2025-10-06 20:51:44.374927+00 2025-10-06 20:51:44.374939+00 f t Invitado Amar invitado-1759783903897@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10335 2025-10-09 13:04:40.680372+00 2025-10-09 13:04:40.680382+00 f t Invitado Amar invitado-1760015080117@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10517 2025-10-12 03:01:43.265191+00 2025-10-12 03:01:43.265199+00 f t Invitado Amar invitado-1760238102863@example.com 55555555 \N \N \N \N \N 35 \N \N \N +13461 2025-11-17 00:37:05.157529+00 2025-11-17 00:37:05.157538+00 f t Invitado Amar invitado-1763339822778@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10881 2025-10-16 19:10:27.065128+00 2025-10-16 19:10:27.065137+00 f t Invitado Amar invitado-1760641825029@example.com 55555555 \N \N \N \N \N 10 \N \N \N +11058 2025-10-19 02:02:02.656957+00 2025-10-19 02:02:02.656966+00 f t Invitado Amar invitado-1760839321212@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11242 2025-10-21 16:13:21.294135+00 2025-10-21 16:13:21.294146+00 f t Invitado Amar invitado-1761063200620@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11422 2025-10-24 01:31:39.905628+00 2025-10-24 01:31:39.905639+00 f t Invitado Amar invitado-1761269499509@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11602 2025-10-27 14:58:41.714009+00 2025-10-27 14:58:41.714022+00 f t Invitado Amar invitado-1761577120316@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11785 2025-10-28 23:53:13.012307+00 2025-10-28 23:53:13.012332+00 f t Invitado Amar invitado-1761695591599@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11968 2025-10-30 14:46:46.554416+00 2025-10-30 14:46:46.554426+00 f t Invitado Amar invitado-1761835447330@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12152 2025-11-01 11:52:45.988462+00 2025-11-01 11:52:45.988474+00 f t Invitado Amar invitado-1761997965590@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12332 2025-11-04 09:38:31.840255+00 2025-11-04 09:38:31.840267+00 f t Invitado Amar invitado-1762249111682@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13665 2025-11-18 19:58:20.72098+00 2025-11-18 19:58:20.720993+00 f t Invitado Amar invitado-1763495864513@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13851 2025-11-19 23:14:22.224162+00 2025-11-19 23:14:22.224171+00 f t Invitado Amar invitado-1763594061841@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12516 2025-11-06 13:11:51.826506+00 2025-11-06 13:11:51.826515+00 f t Lucas Soto lucassoto2382@gmail.com +541137798083 \N Allarias 577 \N \N -34.7744031 -58.4388551 71 2046 \N \N +12695 2025-11-08 14:01:57.739067+00 2025-11-08 14:01:57.739075+00 f t Invitado Amar invitado-1762610516126@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12878 2025-11-10 16:52:46.989535+00 2025-11-10 16:52:46.989543+00 f t Invitado Amar invitado-1762793567087@example.com 55555555 \N \N \N \N \N 39 \N \N \N +13061 2025-11-12 12:47:13.089673+00 2025-11-12 12:47:13.089682+00 f t Invitado Amar invitado-1762951632249@example.com 55555555 \N \N \N \N \N 57 \N \N \N +14033 2025-11-21 13:46:21.47313+00 2025-11-21 13:46:21.473137+00 f t Ariana Medina infoarimedina@gmail.com 5491134533522 \N Ciudad de la Paz 1926 7D, no anda el portero \N FEMALE \N -34.5642593 -58.4563318 3 2219 \N \N +14212 2025-11-23 11:07:07.53425+00 2025-11-23 11:07:07.53426+00 f t Invitado Amar invitado-1763896026928@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14394 2025-11-24 22:23:31.585139+00 2025-11-24 22:23:31.585153+00 f t Invitado Amar invitado-1764023008754@example.com 55555555 \N \N \N \N \N 27 \N \N \N +10156 2025-10-06 21:03:15.340436+00 2025-10-06 21:03:15.340445+00 f t Invitado Amar invitado-1759784594740@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10336 2025-10-09 13:04:43.917696+00 2025-10-09 13:04:43.917711+00 f t Invitado Amar invitado-1760015083245@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10518 2025-10-12 03:02:26.284178+00 2025-10-12 03:02:26.284186+00 f t Invitado Amar invitado-1760238239394@example.com 55555555 \N \N \N \N \N 74 \N \N \N +10700 2025-10-14 14:31:57.619726+00 2025-10-14 14:31:57.619735+00 f t Ana carolina de souza coipos369@gmail.com 91166930914 \N Roosevelt 5322 8 A \N FEMALE \N -34.5751237 -58.4896722 29 \N \N \N +10882 2025-10-16 19:47:53.086806+00 2025-10-16 19:47:53.086814+00 f t Invitado Amar invitado-1760644071648@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11059 2025-10-19 02:54:40.034169+00 2025-10-19 02:54:40.034178+00 f t Invitado Amar invitado-1760842479017@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11243 2025-10-21 16:14:09.408961+00 2025-10-21 16:14:09.408974+00 f t Invitado Amar invitado-1761063248995@example.com 55555555 \N \N \N \N \N 12 \N \N \N +1381 2025-05-21 14:44:56.138571+00 2025-05-21 14:44:56.138578+00 f t Camila Mazzeo mazzeocb@gmail.com 5491150623864 \N J.B Alberdi 1334 \N \N FEMALE 1993-07-19 -32.3478651 -64.9781851 14 997 \N cmazzeo +11423 2025-10-24 02:04:10.37278+00 2025-10-24 02:04:10.37279+00 f t Invitado Amar invitado-1761271449989@example.com 55555555 \N \N \N \N \N 28 \N \N \N +11603 2025-10-27 14:58:47.726327+00 2025-10-27 14:58:47.726338+00 f t Invitado Amar invitado-1761577127015@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11786 2025-10-28 23:58:26.668053+00 2025-10-28 23:58:26.668084+00 f t Invitado Amar invitado-1761695905959@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11969 2025-10-30 15:14:56.850619+00 2025-10-30 15:14:56.850628+00 f t Invitado Amar invitado-1761837295505@example.com 55555555 \N \N \N \N \N 46 \N \N \N +12153 2025-11-01 12:16:30.150827+00 2025-11-01 12:16:30.150837+00 f t Invitado Amar invitado-1761999389402@example.com 55555555 \N \N \N \N \N 61 \N \N \N +12333 2025-11-04 10:28:24.471291+00 2025-11-04 10:28:24.471302+00 f t Invitado Amar invitado-1762252104198@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12517 2025-11-06 13:14:05.206939+00 2025-11-06 13:14:05.20695+00 f t Invitado Amar invitado-1762434844073@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13232 2025-11-14 00:11:42.747653+00 2025-11-14 00:11:42.747661+00 f t Iara Leogrande iaranicoleleogrande@gmail.com +541122842217 \N Liniers 2773 \N \N -34.6799325 -58.4144365 70 2136 \N \N +13462 2025-11-17 00:48:48.947597+00 2025-11-17 00:48:48.947606+00 f t Invitado Amar invitado-1763340527822@example.com 55555555 \N \N \N \N \N 28 \N \N \N +12879 2025-11-10 17:17:35.551392+00 2025-11-10 17:17:35.5514+00 f t Invitado Amar invitado-1762795055173@example.com 55555555 \N \N \N \N \N 19 \N \N \N +13062 2025-11-12 12:54:40.44007+00 2025-11-12 12:54:40.440084+00 f t Invitado Amar invitado-1762952080004@example.com 55555555 \N \N \N \N \N \N \N \N \N +12696 2025-11-08 14:04:30.767304+00 2025-11-08 14:04:30.767312+00 f t María Villamayor mariavillamayorv@gmail.com 5491130870049 \N Forest 329 2do C (el timbre suena bajito, mejor mandar WhatsApp o llamar en puerta) \N FEMALE \N 42.9685847 -78.7652046 112 2068 \N \N +13666 2025-11-18 20:04:14.235095+00 2025-11-18 20:04:14.235104+00 f t Invitado Amar invitado-1763496253806@example.com 55555555 \N \N \N \N \N 12 \N \N \N +13852 2025-11-19 23:25:48.617715+00 2025-11-19 23:25:48.617724+00 f t Invitado Amar invitado-1763594747334@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14034 2025-11-21 13:59:06.102545+00 2025-11-21 13:59:06.102553+00 f t Invitado Amar invitado-1763733544299@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14213 2025-11-23 11:30:14.838159+00 2025-11-23 11:30:14.838168+00 f t Invitado Amar invitado-1763897414769@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14395 2025-11-24 22:36:27.436418+00 2025-11-24 22:36:27.43643+00 f t Invitado Amar invitado-1764023784195@example.com 55555555 \N \N \N \N \N 40 \N \N \N +13233 2025-11-14 00:17:32.94988+00 2025-11-14 00:17:32.949889+00 f t Invitado Amar invitado-1763079452087@example.com 55555555 \N \N \N \N \N 19 \N \N \N +9974 2025-10-03 23:16:05.456071+00 2025-10-03 23:16:05.456083+00 f t Invitado Amar invitado-1759533364716@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13463 2025-11-17 00:50:17.641103+00 2025-11-17 00:50:17.641113+00 f t Invitado Amar invitado-1763340616218@example.com 55555555 \N \N \N \N \N 6 \N \N \N +10157 2025-10-06 21:15:29.737729+00 2025-10-06 21:15:29.737738+00 f t Julieta Zamacona julietazamacona@hotmail.com +541156390256 \N Bogotá 2376 6 \N \N -34.6252508 -58.4637277 4 \N \N \N +13667 2025-11-18 20:07:13.322454+00 2025-11-18 20:07:13.322466+00 f t Invitado Amar invitado-1763496433127@example.com 55555555 \N \N \N \N \N 12 \N \N \N +10337 2025-10-09 13:07:05.249764+00 2025-10-09 13:07:05.249772+00 f t Catalina Simone contacto@amarmascotas.com +541169686918 \N Olga Cossettini 1112 \N \N -34.6098096 -58.3634119 112 \N \N \N +10519 2025-10-12 03:46:58.290163+00 2025-10-12 03:46:58.290172+00 f t Invitado Amar invitado-1760240818009@example.com 55555555 \N \N \N \N \N 13 \N \N \N +10701 2025-10-14 14:42:51.400577+00 2025-10-14 14:42:51.400589+00 f t Invitado Amar invitado-1760452972549@example.com 55555555 \N \N \N \N \N 113 \N \N \N +3866 2025-07-03 19:51:24.239151+00 2025-07-03 19:51:24.239159+00 f t Verónica Strotsen thestrotsen@gmail.com +541159149729 \N Av Rivadavia 5141 10 1 \N FEMALE \N -34.618973 -58.4383138 14 1282 \N vstrotsen +11060 2025-10-19 03:35:44.066707+00 2025-10-19 03:35:44.066716+00 f t Invitado Amar invitado-1760844943631@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11244 2025-10-21 16:36:23.26884+00 2025-10-21 16:36:23.268849+00 f t Invitado Amar invitado-1761064582463@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11424 2025-10-24 02:11:09.873839+00 2025-10-24 02:11:09.873848+00 f t Invitado Amar invitado-1761271869199@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11604 2025-10-27 15:08:27.039363+00 2025-10-27 15:08:27.039374+00 f t Invitado Amar invitado-1761578181884@example.com 55555555 \N \N \N \N \N 48 \N \N \N +11787 2025-10-28 23:59:50.912015+00 2025-10-28 23:59:50.912082+00 f t Invitado Amar invitado-1761695990044@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11970 2025-10-30 15:17:25.597148+00 2025-10-30 15:17:25.597155+00 f t Invitado Amar invitado-1761837445201@example.com 55555555 \N \N \N \N \N 20 \N \N \N +12154 2025-11-01 12:57:21.775798+00 2025-11-01 12:57:21.775807+00 f t Invitado Amar invitado-1762001841281@example.com 55555555 \N \N \N \N \N 5 \N \N \N +12334 2025-11-04 10:33:51.66733+00 2025-11-04 10:33:51.667338+00 f t Invitado Amar invitado-1762252431041@example.com 55555555 \N \N \N \N \N 53 \N \N \N +12518 2025-11-06 13:27:22.625177+00 2025-11-06 13:27:22.625185+00 f t Invitado Amar invitado-1762435641485@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12697 2025-11-08 14:12:17.175233+00 2025-11-08 14:12:17.175247+00 f t Invitado Amar invitado-1762611137731@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12880 2025-11-10 17:18:10.031673+00 2025-11-10 17:18:10.031682+00 f t Invitado Amar invitado-1762795089913@example.com 55555555 \N \N \N \N \N 19 \N \N \N +13063 2025-11-12 12:54:44.221701+00 2025-11-12 12:54:44.22171+00 f t Invitado Amar invitado-1762952084339@example.com 55555555 \N \N \N \N \N \N \N \N \N +13853 2025-11-19 23:30:13.079346+00 2025-11-19 23:30:13.079396+00 f t Invitado Amar invitado-1763595012472@example.com 55555555 \N \N \N \N \N 51 \N \N \N +14035 2025-11-21 14:00:44.13579+00 2025-11-21 14:00:44.135799+00 f t Invitado Amar invitado-1763733643797@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14214 2025-11-23 12:06:01.722412+00 2025-11-23 12:06:01.722425+00 f t Invitado Amar invitado-1763899559449@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14396 2025-11-24 22:36:46.063876+00 2025-11-24 22:36:46.063886+00 f t Invitado Amar invitado-1764023805163@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13234 2025-11-14 00:19:51.4111+00 2025-11-14 00:19:51.411108+00 f t Invitado Amar invitado-1763079590802@example.com 55555555 \N \N \N \N \N 19 \N \N \N +9975 2025-10-03 23:56:01.849084+00 2025-10-03 23:56:01.849093+00 f t Invitado Amar invitado-1759535761013@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10158 2025-10-06 21:49:30.781251+00 2025-10-06 21:49:30.781259+00 f t Invitado Amar invitado-1759787369811@example.com 55555555 \N \N \N \N \N 51 \N \N \N +10338 2025-10-09 13:14:24.09433+00 2025-10-09 13:14:24.094339+00 f t Invitado Amar invitado-1760015662009@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10520 2025-10-12 03:52:01.982532+00 2025-10-12 03:52:01.982543+00 f t Invitado Amar invitado-1760241120582@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10702 2025-10-14 14:48:06.063466+00 2025-10-14 14:48:06.063476+00 f t Invitado Amar invitado-1760453285492@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10883 2025-10-16 20:06:20.901321+00 2025-10-16 20:06:20.901334+00 f t Invitado Amar invitado-1760645180334@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11061 2025-10-19 03:36:15.394932+00 2025-10-19 03:36:15.394944+00 t t Invitado Amar invitado-1760844975187@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11245 2025-10-21 16:42:20.222076+00 2025-10-21 16:42:20.222084+00 f t Invitado Amar invitado-1761064939520@example.com 55555555 \N \N \N \N \N 49 \N \N \N +11425 2025-10-24 02:17:53.896666+00 2025-10-24 02:17:53.896678+00 f t Invitado Amar invitado-1761272273190@example.com 55555555 \N \N \N \N \N 75 \N \N \N +11605 2025-10-27 15:09:44.431677+00 2025-10-27 15:09:44.431686+00 f t Invitado Amar invitado-1761577784031@example.com 55555555 \N \N \N \N \N 40 \N \N \N +11788 2025-10-29 00:00:11.268299+00 2025-10-29 00:00:11.268316+00 f t Invitado Amar invitado-1761696010422@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11971 2025-10-30 15:20:45.443952+00 2025-10-30 15:20:45.44396+00 f t Invitado Amar invitado-1761837645126@example.com 55555555 \N \N \N \N \N 58 \N \N \N +13464 2025-11-17 01:05:16.591071+00 2025-11-17 01:05:16.591082+00 f t Invitado Amar invitado-1763341515120@example.com 55555555 \N \N \N \N \N 162 \N \N \N +13668 2025-11-18 20:08:11.715865+00 2025-11-18 20:08:11.715874+00 f t Invitado Amar invitado-1763496491525@example.com 55555555 \N \N \N \N \N 12 \N \N \N +12155 2025-11-01 12:58:41.70004+00 2025-11-01 12:58:41.700048+00 f t Oliver Arevalo oliverarevalo23@gmail.com +541158055425 \N Av General Las heras 3660 13 b \N \N \N -34.5904874 -58.3934334 9 1966 \N \N +12335 2025-11-04 11:02:51.013571+00 2025-11-04 11:02:51.01358+00 f t Invitado Amar invitado-1762254169954@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12519 2025-11-06 13:33:36.330017+00 2025-11-06 13:33:36.330024+00 t t Invitado Amar invitado-1762436014892@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12698 2025-11-08 14:22:28.127956+00 2025-11-08 14:22:28.127969+00 f t Invitado Amar invitado-1762611747363@example.com 55555555 \N \N \N \N \N 59 \N \N \N +12881 2025-11-10 17:18:29.674046+00 2025-11-10 17:18:29.674055+00 f t Invitado Amar invitado-1762795108468@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13064 2025-11-12 13:16:03.806343+00 2025-11-12 13:16:03.806352+00 f t Invitado Amar invitado-1762953363922@example.com 55555555 \N \N \N \N \N \N \N \N \N +13854 2025-11-19 23:37:54.320852+00 2025-11-19 23:37:54.320861+00 f t Invitado Amar invitado-1763595473680@example.com 55555555 \N \N \N \N \N 17 \N \N \N +14036 2025-11-21 14:08:56.591184+00 2025-11-21 14:08:56.591194+00 f t Invitado Amar invitado-1763734134926@example.com 55555555 \N \N \N \N \N 61 \N \N \N +14215 2025-11-23 12:08:14.760121+00 2025-11-23 12:08:14.760129+00 f t Invitado Amar invitado-1763899692692@example.com 55555555 \N \N \N \N \N 28 \N \N \N +14397 2025-11-24 22:37:29.449053+00 2025-11-24 22:37:29.449063+00 f t Invitado Amar invitado-1764023848716@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13235 2025-11-14 00:22:56.715323+00 2025-11-14 00:22:56.715336+00 f t Invitado Amar invitado-1763079776268@example.com 55555555 \N \N \N \N \N 77 \N \N \N +9976 2025-10-04 00:04:00.961584+00 2025-10-04 00:04:00.961592+00 f t Invitado Amar invitado-1759536240541@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10159 2025-10-06 21:50:06.158512+00 2025-10-06 21:50:06.15852+00 f t Invitado Amar invitado-1759787405670@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10339 2025-10-09 13:15:31.212469+00 2025-10-09 13:15:31.212478+00 f t Invitado Amar invitado-1760015729804@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10521 2025-10-12 04:00:24.675514+00 2025-10-12 04:00:24.675527+00 f t Invitado Amar invitado-1760241623980@example.com 55555555 \N \N \N \N \N 42 \N \N \N +10703 2025-10-14 15:00:18.35959+00 2025-10-14 15:00:18.359602+00 f t Invitado Amar invitado-1760454019858@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10884 2025-10-16 20:19:00.810725+00 2025-10-16 20:19:00.810736+00 f t Invitado Amar invitado-1760645940341@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11062 2025-10-19 05:33:03.397428+00 2025-10-19 05:33:03.397439+00 f t Invitado Amar invitado-1760851984414@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11246 2025-10-21 17:09:28.392178+00 2025-10-21 17:09:28.392187+00 f t Invitado Amar invitado-1761066567881@example.com 55555555 \N \N \N \N \N 49 \N \N \N +11426 2025-10-24 02:39:43.241812+00 2025-10-24 02:39:43.241821+00 f t Invitado Amar invitado-1761273582044@example.com 55555555 \N \N \N \N \N 43 \N \N \N +11606 2025-10-27 15:16:55.991491+00 2025-10-27 15:16:55.991502+00 f t Invitado Amar invitado-1761578215169@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11789 2025-10-29 00:05:42.219199+00 2025-10-29 00:05:42.219211+00 f t Invitado Amar invitado-1761696341801@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11972 2025-10-30 15:50:48.491082+00 2025-10-30 15:50:48.491091+00 f t Invitado Amar invitado-1761839446541@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12156 2025-11-01 13:00:34.536273+00 2025-11-01 13:00:34.536283+00 f t Invitado Amar invitado-1762002033852@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12336 2025-11-04 11:17:07.367055+00 2025-11-04 11:17:07.367069+00 f t Invitado Amar invitado-1762255027206@example.com 55555555 \N \N \N \N \N 53 \N \N \N +12520 2025-11-06 13:35:06.585567+00 2025-11-06 13:35:06.585578+00 f t Invitado Amar invitado-1762436105614@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12699 2025-11-08 14:24:55.407181+00 2025-11-08 14:24:55.40719+00 f t Invitado Amar invitado-1762611893431@example.com 55555555 \N \N \N \N \N 12 \N \N \N +12882 2025-11-10 17:19:21.13535+00 2025-11-10 17:19:21.135359+00 f t Invitado Amar invitado-1762795160168@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13065 2025-11-12 13:16:12.606385+00 2025-11-12 13:16:12.606395+00 f t Invitado Amar invitado-1762953372734@example.com 55555555 \N \N \N \N \N \N \N \N \N +13465 2025-11-17 01:43:45.775061+00 2025-11-17 01:43:45.77507+00 f t Invitado Amar invitado-1763343825250@example.com 55555555 \N \N \N \N \N 147 \N \N \N +13669 2025-11-18 20:20:27.374697+00 2025-11-18 20:20:27.374704+00 f t Invitado Amar invitado-1763497227409@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13855 2025-11-19 23:51:48.0806+00 2025-11-19 23:51:48.080611+00 f t Viviana Adriana Oberst vivianaadriaoberst@gmail.com +5491158563771 \N Nazca 3177 \N \N FEMALE \N -34.599475 -58.4911064 17 2203 \N \N +14037 2025-11-21 14:17:26.860665+00 2025-11-21 14:17:26.860675+00 f t Invitado Amar invitado-1763734647692@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14216 2025-11-23 12:46:29.1766+00 2025-11-23 12:46:29.176609+00 f t Invitado Amar invitado-1763901989320@example.com 55555555 \N \N \N \N \N 20 \N \N \N +14398 2025-11-24 22:46:28.88122+00 2025-11-24 22:46:28.881233+00 f t Invitado Amar invitado-1764024388468@example.com 55555555 \N \N \N \N \N 51 \N \N \N +13236 2025-11-14 00:31:06.26639+00 2025-11-14 00:31:06.266399+00 f t Invitado Amar invitado-1763080265243@example.com 55555555 \N \N \N \N \N 77 \N \N \N +9977 2025-10-04 00:36:33.180927+00 2025-10-04 00:36:33.180936+00 f t Invitado Amar invitado-1759538193049@example.com 55555555 \N \N \N \N \N 13 \N \N \N +10160 2025-10-06 21:55:13.446039+00 2025-10-06 21:55:13.446047+00 f t Invitado Amar invitado-1759787712579@example.com 55555555 \N \N \N \N \N 44 \N \N \N +10340 2025-10-09 14:15:32.827261+00 2025-10-09 14:15:32.827268+00 f t Invitado Amar invitado-1760019156513@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10522 2025-10-12 04:14:02.258879+00 2025-10-12 04:14:02.258888+00 f t Invitado Amar invitado-1760242441666@example.com 55555555 \N \N \N \N \N 49 \N \N \N +10704 2025-10-14 15:04:22.295009+00 2025-10-14 15:04:22.295018+00 f t Invitado Amar invitado-1760454261465@example.com 55555555 \N \N \N \N \N 61 \N \N \N +10885 2025-10-16 20:21:17.383263+00 2025-10-16 20:21:17.383274+00 f t Invitado Amar invitado-1760646077148@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11063 2025-10-19 09:35:06.915803+00 2025-10-19 09:35:06.915815+00 f t Invitado Amar invitado-1760866504956@example.com 55555555 \N \N \N \N \N 38 \N \N \N +11247 2025-10-21 17:14:16.068669+00 2025-10-21 17:14:16.068681+00 f t Invitado Amar invitado-1761066855792@example.com 55555555 \N \N \N \N \N 35 \N \N \N +11427 2025-10-24 03:27:08.647462+00 2025-10-24 03:27:08.647471+00 f t Invitado Amar invitado-1761276427847@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11607 2025-10-27 15:33:44.135788+00 2025-10-27 15:33:44.135797+00 f t Invitado Amar invitado-1761579223339@example.com 55555555 \N \N \N \N \N 91 \N \N \N +11790 2025-10-29 00:08:01.960608+00 2025-10-29 00:08:01.960623+00 f t Invitado Amar invitado-1761696480116@example.com 55555555 \N \N \N \N \N 65 \N \N \N +13466 2025-11-17 01:50:54.721152+00 2025-11-17 01:50:54.721161+00 f t Invitado Amar invitado-1763344254268@example.com 55555555 \N \N \N \N \N 19 \N \N \N +13670 2025-11-18 21:32:07.768731+00 2025-11-18 21:32:07.768746+00 f t Invitado Amar invitado-1763501526911@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11973 2025-10-30 16:00:55.04635+00 2025-10-30 16:00:55.046359+00 f t Mariana Villarreal morada1.estela9@gmail.com +541125456860 \N Aranguren 3763 Avisar en la puerta NO anda el timbre \N FEMALE \N -34.6277623 -58.4823361 16 \N \N \N +12157 2025-11-01 13:06:31.208237+00 2025-11-01 13:06:31.208249+00 f t Invitado Amar invitado-1762002390738@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12337 2025-11-04 12:40:51.538703+00 2025-11-04 12:40:51.538711+00 f t Invitado Amar invitado-1762260051012@example.com 55555555 \N \N \N \N \N 28 \N \N \N +12521 2025-11-06 13:36:10.950699+00 2025-11-06 13:36:10.950709+00 f t Invitado Amar invitado-1762436170525@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12700 2025-11-08 14:35:43.723531+00 2025-11-08 14:35:43.723544+00 f t Invitado Amar invitado-1762612542850@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12883 2025-11-10 17:21:31.139861+00 2025-11-10 17:21:31.13987+00 f t Invitado Amar invitado-1762795289452@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13066 2025-11-12 13:23:56.16969+00 2025-11-12 13:23:56.169698+00 t t Invitado Amar invitado-1762953835759@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13856 2025-11-20 00:01:35.549374+00 2025-11-20 00:01:35.549383+00 f t Invitado Amar invitado-1763596893561@example.com 55555555 \N \N \N \N \N 49 \N \N \N +14038 2025-11-21 14:36:44.207607+00 2025-11-21 14:36:44.207616+00 f t Invitado Amar invitado-1763735800916@example.com 55555555 \N \N \N \N \N 28 \N \N \N +14217 2025-11-23 12:54:15.502791+00 2025-11-23 12:54:15.5028+00 f t Julia Villafañe adrilay973@gmail.com +541130082289 \N Alvar Nuñez 4711 Casa \N \N -34.7401418 -58.3611092 70 2241 \N \N +14399 2025-11-24 22:51:47.199034+00 2025-11-24 22:51:47.199048+00 f t Invitado Amar invitado-1764024725957@example.com 55555555 \N \N \N \N \N 51 \N \N \N +13237 2025-11-14 00:49:00.959739+00 2025-11-14 00:49:00.959747+00 f t Invitado Amar invitado-1763081339711@example.com 55555555 \N \N \N \N \N 78 \N \N \N +9978 2025-10-04 00:38:10.395604+00 2025-10-04 00:38:10.395612+00 f t Invitado Amar invitado-1759538290479@example.com 55555555 \N \N \N \N \N 13 \N \N \N +10161 2025-10-06 22:14:31.762938+00 2025-10-06 22:14:31.762946+00 f t Invitado Amar invitado-1759788871034@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10341 2025-10-09 14:18:32.742913+00 2025-10-09 14:18:32.742923+00 f t Invitado Amar invitado-1760019512803@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10523 2025-10-12 04:15:01.031986+00 2025-10-12 04:15:01.031999+00 f t Invitado Amar invitado-1760242500679@example.com 55555555 \N \N \N \N \N 49 \N \N \N +10705 2025-10-14 15:27:00.439762+00 2025-10-14 15:27:00.439774+00 f t Invitado Amar invitado-1760455619996@example.com 55555555 \N \N \N \N \N 73 \N \N \N +10886 2025-10-16 20:49:18.358511+00 2025-10-16 20:49:18.358519+00 f t Patricia Campan Patocampan1@hotmail.com 5491141957057 \N Pumacahua 41 9no 46, entre Pasaje Timbo y Av Rivadavia \N FEMALE \N -34.6268302 -58.4550775 4 \N \N \N +11064 2025-10-19 09:45:57.479319+00 2025-10-19 09:45:57.479332+00 t t Invitado Amar invitado-1760867155755@example.com 55555555 \N \N \N \N \N 38 \N \N \N +11248 2025-10-21 17:23:08.510266+00 2025-10-21 17:23:08.510277+00 f t Invitado Amar invitado-1761067387625@example.com 55555555 \N \N \N \N \N \N \N \N \N +11428 2025-10-24 03:48:25.058875+00 2025-10-24 03:48:25.058887+00 f t Invitado Amar invitado-1761277703030@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11608 2025-10-27 15:42:12.827405+00 2025-10-27 15:42:12.827414+00 f t Invitado Amar invitado-1761579732265@example.com 55555555 \N \N \N \N \N 156 \N \N \N +11791 2025-10-29 00:09:57.166705+00 2025-10-29 00:09:57.166714+00 f t Invitado Amar invitado-1761696596352@example.com 55555555 \N \N \N \N \N 52 \N \N \N +11974 2025-10-30 16:05:11.944837+00 2025-10-30 16:05:11.944845+00 f t Invitado Amar invitado-1761840311199@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12158 2025-11-01 13:17:47.983706+00 2025-11-01 13:17:47.983716+00 f t Invitado Amar invitado-1762003067261@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12338 2025-11-04 13:09:14.066322+00 2025-11-04 13:09:14.066341+00 f t Invitado Amar invitado-1762261753503@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12522 2025-11-06 13:50:38.854908+00 2025-11-06 13:50:38.854917+00 f t Invitado Amar invitado-1762437038391@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12701 2025-11-08 14:37:06.846185+00 2025-11-08 14:37:06.846207+00 f t Invitado Amar invitado-1762612612580@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12884 2025-11-10 17:28:20.924931+00 2025-11-10 17:28:20.924941+00 f t Invitado Amar invitado-1762795700840@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13067 2025-11-12 13:26:48.767785+00 2025-11-12 13:26:48.767794+00 f t Invitado Amar invitado-1762954008586@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13467 2025-11-17 01:53:12.800985+00 2025-11-17 01:53:12.800997+00 f t Invitado Amar invitado-1763344391115@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13671 2025-11-18 21:32:51.345233+00 2025-11-18 21:32:51.345245+00 f t Invitado Amar invitado-1763501570960@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13857 2025-11-20 00:15:04.561696+00 2025-11-20 00:15:04.561711+00 f t Invitado Amar invitado-1763597703464@example.com 55555555 \N \N \N \N \N 84 \N \N \N +14039 2025-11-21 14:39:59.541084+00 2025-11-21 14:39:59.541096+00 f t Invitado Amar invitado-1763735997096@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14218 2025-11-23 12:55:51.818628+00 2025-11-23 12:55:51.818642+00 f t Invitado Amar invitado-1763902550940@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14400 2025-11-24 23:09:22.447297+00 2025-11-24 23:09:22.447307+00 f t Invitado Amar invitado-1764025761509@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13238 2025-11-14 00:52:11.111065+00 2025-11-14 00:52:11.111076+00 f t Invitado Amar invitado-1763081529417@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9979 2025-10-04 00:40:54.069138+00 2025-10-04 00:40:54.069147+00 f t Invitado Amar invitado-1759538454623@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10162 2025-10-06 22:23:46.717847+00 2025-10-06 22:23:46.717856+00 f t Invitado Amar invitado-1759789426393@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13468 2025-11-17 02:18:15.020212+00 2025-11-17 02:18:15.020221+00 f t Invitado Amar invitado-1763345894966@example.com 55555555 \N \N \N \N \N 28 \N \N \N +10342 2025-10-09 14:19:14.622071+00 2025-10-09 14:19:14.62208+00 f t alejandra nichlison aleni06@hotmail.com 91137899359 \N Av. Cordoba 1539 piso 12 C \N FEMALE \N -34.5992606 -58.3887609 9 \N \N \N +10524 2025-10-12 04:19:26.942051+00 2025-10-12 04:19:26.942062+00 f t Invitado Amar invitado-1760242764649@example.com 55555555 \N \N \N \N \N 74 \N \N \N +10706 2025-10-14 15:39:02.169764+00 2025-10-14 15:39:02.169775+00 f t Invitado Amar invitado-1760456341455@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11065 2025-10-19 09:49:07.366736+00 2025-10-19 09:49:07.366745+00 f t Invitado Amar invitado-1760867346531@example.com 55555555 \N \N \N \N \N 26 \N \N \N +11249 2025-10-21 17:23:08.811688+00 2025-10-21 17:23:08.811697+00 f t Invitado Amar invitado-1761067388146@example.com 55555555 \N \N \N \N \N 52 \N \N \N +13672 2025-11-18 21:33:44.75844+00 2025-11-18 21:33:44.758448+00 f t Invitado Amar invitado-1763501624528@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13858 2025-11-20 00:19:00.269713+00 2025-11-20 00:19:00.269723+00 f t Invitado Amar invitado-1763597939658@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14040 2025-11-21 14:47:29.609363+00 2025-11-21 14:47:29.609375+00 f t Invitado Amar invitado-1763736446272@example.com 55555555 \N \N \N \N \N 51 \N \N \N +14219 2025-11-23 13:00:15.960649+00 2025-11-23 13:00:15.960663+00 f t Invitado Amar invitado-1763902813981@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14401 2025-11-24 23:22:30.185618+00 2025-11-24 23:22:30.185632+00 f t Invitado Amar invitado-1764026549120@example.com 55555555 \N \N \N \N \N 42 \N \N \N +11429 2025-10-24 04:47:34.683993+00 2025-10-24 04:47:34.684005+00 f t Invitado Amar invitado-1761281254281@example.com 55555555 \N \N \N \N \N 147 \N \N \N +11609 2025-10-27 15:50:53.475452+00 2025-10-27 15:50:53.475462+00 f t Invitado Amar invitado-1761580253216@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11792 2025-10-29 00:16:34.892013+00 2025-10-29 00:16:34.892023+00 f t Invitado Amar invitado-1761696993731@example.com 55555555 \N \N \N \N \N 65 \N \N \N +11975 2025-10-30 16:05:39.031711+00 2025-10-30 16:05:39.031722+00 f t Invitado Amar invitado-1761840338456@example.com 55555555 \N \N \N \N \N 59 \N \N \N +12159 2025-11-01 13:23:15.709835+00 2025-11-01 13:23:15.709844+00 f t Invitado Amar invitado-1762003394890@example.com 55555555 \N \N \N \N \N 112 \N \N \N +2211 2025-06-05 14:22:37.06851+00 2025-06-05 14:22:37.06852+00 f t Jesica Schlofer jesica_schlofer@yahoo.com.ar 5491134072124 \N Guatemala 5915 1A \N FEMALE 1981-10-08 -34.5776795 -58.4351493 1 1087 \N jschlofer +4176 2025-07-08 13:45:16.815429+00 2025-07-08 13:45:16.81544+00 f t Juan Ignacio Gonzalez juanigonza@gmail.com +541169615185 \N Quesada 2066 4 A \N MALE \N -34.5527067 -58.459983 25 1322 \N jgonzalez +12339 2025-11-04 13:37:07.204154+00 2025-11-04 13:37:07.204166+00 f t Invitado Amar invitado-1762263426538@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12523 2025-11-06 14:28:18.311784+00 2025-11-06 14:28:18.311793+00 f t Invitado Amar invitado-1762439297232@example.com 55555555 \N \N \N \N \N 63 \N \N \N +12702 2025-11-08 14:41:37.052796+00 2025-11-08 14:41:37.052809+00 f t Maria Florencia Ibañez mariaflorenciaibz@gmail.com +5491132924451 \N Vernet 510 2H (torre 2 de 4 torres. Fondo a la derecha) \N \N -34.5235149 -58.4714051 59 2069 \N \N +12885 2025-11-10 17:35:09.54494+00 2025-11-10 17:35:09.544948+00 f t Invitado Amar invitado-1762796109152@example.com 55555555 \N \N \N \N \N 21 \N \N \N +13068 2025-11-12 13:43:47.018888+00 2025-11-12 13:43:47.018899+00 f t Invitado Amar invitado-1762955025089@example.com 55555555 \N \N \N \N \N 17 \N \N \N +9980 2025-10-04 00:42:55.6116+00 2025-10-04 00:42:55.611608+00 f t Invitado Amar invitado-1759538575810@example.com 55555555 \N \N \N \N \N 79 \N \N \N +10343 2025-10-09 14:19:23.296185+00 2025-10-09 14:19:23.296193+00 f t Invitado Amar invitado-1760019563047@example.com 55555555 \N \N \N \N \N 82 \N \N \N +10163 2025-10-06 22:30:27.979939+00 2025-10-06 22:30:27.979952+00 f t Carina Garcia carina40-noemi@hotmail.com +5491155929200 \N Alberti 1976 Casa \N \N \N -34.633024 -58.3983371 44 \N \N \N +10525 2025-10-12 05:34:27.515615+00 2025-10-12 05:34:27.515626+00 f t Invitado Amar invitado-1760247267134@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13239 2025-11-14 00:55:54.81008+00 2025-11-14 00:55:54.810092+00 f t MARIA SALOME Martinie salomemartinie@gmail.com +541150413135 \N ARANGUREN 581 \N \N -34.6133307 -58.4397242 14 2138 \N \N +10887 2025-10-16 21:32:47.991357+00 2025-10-16 21:32:47.991366+00 f t Invitado Amar invitado-1760650367742@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11066 2025-10-19 10:44:00.520165+00 2025-10-19 10:44:00.520175+00 f t Invitado Amar invitado-1760870639113@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11250 2025-10-21 17:27:03.254373+00 2025-10-21 17:27:03.254386+00 f t Invitado Amar invitado-1761067622862@example.com 55555555 \N \N \N \N \N \N \N \N \N +11430 2025-10-24 05:05:13.664854+00 2025-10-24 05:05:13.664864+00 f t Invitado Amar invitado-1761282313295@example.com 55555555 \N \N \N \N \N 17 \N \N \N +13469 2025-11-17 02:32:46.977823+00 2025-11-17 02:32:46.977832+00 f t Invitado Amar invitado-1763346766532@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11610 2025-10-27 16:10:33.160653+00 2025-10-27 16:10:33.160662+00 f t Lucia Dallura luciadallura@hotmail.com 5491162016613 \N Santo tome 5618 casa \N FEMALE \N -34.6280499 -58.5293919 62 1913 \N \N +11793 2025-10-29 00:56:31.428129+00 2025-10-29 00:56:31.428138+00 f t Invitado Amar invitado-1761699390571@example.com 55555555 \N \N \N \N \N 8 \N \N \N +11976 2025-10-30 16:12:29.943505+00 2025-10-30 16:12:29.943515+00 f t Invitado Amar invitado-1761840749429@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13673 2025-11-18 21:35:04.887011+00 2025-11-18 21:35:04.887024+00 f t Invitado Amar invitado-1763501703943@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12160 2025-11-01 13:30:15.192875+00 2025-11-01 13:30:15.192884+00 f t melisa Bettendorff melisabettendorff@gmail.com 91157287745 \N Gorostiaga 2470 casa \N FEMALE \N -34.4333148 -58.9913625 3 1967 \N \N +10707 2025-10-14 15:45:11.450617+00 2025-10-14 15:45:11.450626+00 f t Horacio Lertora Hlertora@gmail.com 5491168835125 \N Santa fe 3721 piso 12- A \N MALE \N \N \N 1 2001 \N \N +12340 2025-11-04 13:46:17.525446+00 2025-11-04 13:46:17.525458+00 f t Invitado Amar invitado-1762263976682@example.com 55555555 \N \N \N \N \N 46 \N \N \N +3981 2025-07-05 21:44:23.047565+00 2025-07-05 21:44:23.047572+00 f t Gabriela Dalila Cuadrado gcuadrado@bagala.com.ar 5491151774498 \N Aranguren 49 4to A \N FEMALE \N -34.60965 -58.431105 14 1298 \N gcuadrado +12703 2025-11-08 14:46:59.18459+00 2025-11-08 14:46:59.184603+00 f t Invitado Amar invitado-1762613218021@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12886 2025-11-10 17:51:33.341772+00 2025-11-10 17:51:33.341781+00 f t Invitado Amar invitado-1762797092748@example.com 55555555 \N \N \N \N \N 73 \N \N \N +13069 2025-11-12 13:51:42.262634+00 2025-11-12 13:51:42.262645+00 f t Invitado Amar invitado-1762955501943@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13859 2025-11-20 00:58:46.907876+00 2025-11-20 00:58:46.907884+00 f t Invitado Amar invitado-1763600326301@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14041 2025-11-21 14:48:10.476329+00 2025-11-21 14:48:10.476338+00 f t Invitado Amar invitado-1763736490084@example.com 55555555 \N \N \N \N \N 41 \N \N \N +14220 2025-11-23 13:30:34.030759+00 2025-11-23 13:30:34.030767+00 f t Invitado Amar invitado-1763904633743@example.com 55555555 \N \N \N \N \N 29 \N \N \N +14402 2025-11-24 23:29:06.344301+00 2025-11-24 23:29:06.344313+00 f t Invitado Amar invitado-1764026945755@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13240 2025-11-14 00:58:00.543839+00 2025-11-14 00:58:00.543851+00 f t Invitado Amar invitado-1763081880405@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13470 2025-11-17 02:58:33.029025+00 2025-11-17 02:58:33.029034+00 f t Invitado Amar invitado-1763348311616@example.com 55555555 \N \N \N \N \N 45 \N \N \N +9981 2025-10-04 00:57:12.455413+00 2025-10-04 00:57:12.455422+00 f t Cecilia Manfredi laspierinas1@gmail.com +5491132559247 \N Avenida Jujuy 207 9 a \N \N -34.612578 -58.4056996 18 \N \N \N +10164 2025-10-06 22:39:35.00017+00 2025-10-06 22:39:35.000181+00 f t Invitado Amar invitado-1759790374331@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10344 2025-10-09 14:29:50.943875+00 2025-10-09 14:29:50.943887+00 f t Invitado Amar invitado-1760020190557@example.com 55555555 \N \N \N \N \N 82 \N \N \N +10526 2025-10-12 06:18:33.04526+00 2025-10-12 06:18:33.045268+00 f t Invitado Amar invitado-1760249912200@example.com 55555555 \N \N \N \N \N 41 \N \N \N +10708 2025-10-14 16:06:06.653058+00 2025-10-14 16:06:06.653068+00 f t Invitado Amar invitado-1760457966135@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10888 2025-10-16 21:51:31.72625+00 2025-10-16 21:51:31.726259+00 f t Invitado Amar invitado-1760651491338@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11251 2025-10-21 17:46:14.541413+00 2025-10-21 17:46:14.541423+00 f t Invitado Amar invitado-1761068772592@example.com 55555555 \N \N \N \N \N \N \N \N \N +11067 2025-10-19 11:19:47.616216+00 2025-10-19 11:19:47.616225+00 f t An Santillan antillanana@yahoo.com.ar +5434014210 \N Sarmiento 2274 Pb f \N \N \N -34.6061488 -58.3989416 18 \N \N \N +11431 2025-10-24 08:13:05.334727+00 2025-10-24 08:13:05.334739+00 f t Invitado Amar invitado-1761293584964@example.com 55555555 \N \N \N \N \N 35 \N \N \N +11611 2025-10-27 16:19:33.11765+00 2025-10-27 16:19:33.117659+00 f t Invitado Amar invitado-1761581972689@example.com 55555555 \N \N \N \N \N 31 \N \N \N +11794 2025-10-29 01:15:52.740594+00 2025-10-29 01:15:52.740603+00 f t Invitado Amar invitado-1761700552356@example.com 55555555 \N \N \N \N \N 52 \N \N \N +13674 2025-11-18 21:35:44.655302+00 2025-11-18 21:35:44.655309+00 f t Mayra Esquivel maylisesquivel@gmail.com +541157406474 \N Manuel porcel de peralta 959 B \N FEMALE \N -34.6263321 -58.5246813 62 2185 \N \N +13860 2025-11-20 01:08:01.863845+00 2025-11-20 01:08:01.863859+00 f t Invitado Amar invitado-1763600881292@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14042 2025-11-21 14:48:40.297536+00 2025-11-21 14:48:40.297547+00 f t Invitado Amar invitado-1763736520113@example.com 55555555 \N \N \N \N \N 63 \N \N \N +14221 2025-11-23 13:37:03.12138+00 2025-11-23 13:37:03.121392+00 f t Invitado Amar invitado-1763905022018@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12161 2025-11-01 13:44:27.290572+00 2025-11-01 13:44:27.29058+00 f t María Carbone mariavictoriacarbone@gmail.com +541149730229 \N Avenida Santa Fe 1637 PB \N \N -34.5956975 -58.3907287 9 1968 \N \N +11977 2025-10-30 16:39:21.11828+00 2025-10-30 16:39:21.118289+00 f t yasmin luca y.aas@hotmail.com 91164449908 \N General Hornos 571 \N \N FEMALE 1990-11-12 -34.6676101 -58.5205636 90 1940 \N \N +14403 2025-11-24 23:29:55.012918+00 2025-11-24 23:29:55.012928+00 f t Invitado Amar invitado-1764026994463@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12341 2025-11-04 14:04:00.043504+00 2025-11-04 14:04:00.043513+00 f t Daniela Daverio daniela_dvr@yahoo.com.ar +541168290075 \N Gral. Artigas 4305 E \N \N -30.2419682 -57.6589581 51 2011 \N \N +12524 2025-11-06 15:16:27.034675+00 2025-11-06 15:16:27.034686+00 f t Invitado Amar invitado-1762442186552@example.com 55555555 \N \N \N \N \N 59 \N \N \N +12704 2025-11-08 14:55:54.956525+00 2025-11-08 14:55:54.956536+00 f t Invitado Amar invitado-1762613754605@example.com 55555555 \N \N \N \N \N 18 \N \N \N +12887 2025-11-10 17:58:05.747168+00 2025-11-10 17:58:05.74718+00 f t Invitado Amar invitado-1762797485341@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13070 2025-11-12 13:56:40.346238+00 2025-11-12 13:56:40.346247+00 f t Invitado Amar invitado-1762955799505@example.com 55555555 \N \N \N \N \N 9 \N \N \N +9982 2025-10-04 00:59:36.37267+00 2025-10-04 00:59:36.372679+00 f t Invitado Amar invitado-1759539576038@example.com 55555555 \N \N \N \N \N 65 \N \N \N +10165 2025-10-06 23:27:57.9978+00 2025-10-06 23:27:57.997809+00 f t Gabriela González Gabii_gonzalez@yahoo.com 5491159089397 \N Diagonal Pavón 4344 \N \N FEMALE 1967-05-04 -34.5393076 -58.5188208 82 \N \N \N +10345 2025-10-09 14:32:01.493231+00 2025-10-09 14:32:01.493241+00 f t Invitado Amar invitado-1760020321061@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10527 2025-10-12 09:41:28.436959+00 2025-10-12 09:41:28.436971+00 f t Invitado Amar invitado-1760262087993@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10709 2025-10-14 16:42:34.162182+00 2025-10-14 16:42:34.162194+00 f t Luciana volante lunachica2013@gmail.com 91149379944 \N Av las Heras 2669 6 B \N FEMALE 1984-04-19 -34.5845875 -58.4002392 9 \N \N \N +10889 2025-10-16 21:52:35.131626+00 2025-10-16 21:52:35.131633+00 f t Invitado Amar invitado-1760651554694@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11068 2025-10-19 11:24:31.369498+00 2025-10-19 11:24:31.36951+00 f t Invitado Amar invitado-1760873070713@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11252 2025-10-21 18:06:10.463495+00 2025-10-21 18:06:10.463508+00 f t Invitado Amar invitado-1761069969671@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11432 2025-10-24 08:16:29.907345+00 2025-10-24 08:16:29.907354+00 f t Invitado Amar invitado-1761293789287@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11612 2025-10-27 16:25:37.162959+00 2025-10-27 16:25:37.162968+00 f t Invitado Amar invitado-1761582336114@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11795 2025-10-29 01:26:28.209489+00 2025-10-29 01:26:28.2095+00 f t Invitado Amar invitado-1761701187426@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11978 2025-10-30 16:45:43.120024+00 2025-10-30 16:45:43.120033+00 f t Invitado Amar invitado-1761842742582@example.com 55555555 \N \N \N \N \N 10 \N \N \N +12162 2025-11-01 13:48:17.339595+00 2025-11-01 13:48:17.339607+00 f t Invitado Amar invitado-1762004897148@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12342 2025-11-04 14:08:36.132366+00 2025-11-04 14:08:36.132376+00 f t Invitado Amar invitado-1762265314371@example.com 55555555 \N \N \N \N \N 51 \N \N \N +12525 2025-11-06 15:16:53.044232+00 2025-11-06 15:16:53.044242+00 f t Invitado Amar invitado-1762442212291@example.com 55555555 \N \N \N \N \N 33 \N \N \N +12705 2025-11-08 15:23:57.085843+00 2025-11-08 15:23:57.085853+00 f t Invitado Amar invitado-1762615437436@example.com 55555555 \N \N \N \N \N 15 \N \N \N +12888 2025-11-10 17:58:43.073045+00 2025-11-10 17:58:43.073053+00 f t Invitado Amar invitado-1762797522608@example.com 55555555 \N \N \N \N \N 84 \N \N \N +13241 2025-11-14 01:01:27.833683+00 2025-11-14 01:01:27.833691+00 f t Rocio Goncalves rcgonlosa@gmail.com +5491126713542 \N Av. Santa Fe 4922 14F \N \N -34.5774649 -58.4291898 1 2139 \N \N +13071 2025-11-12 14:03:06.878818+00 2025-11-12 14:03:06.878827+00 f t juan alberto alonzo de los santos uruguayoalonzo@gmail.com 91151508137 \N Av Juan B Alberdi 2033 2do A \N FEMALE \N -27.5008371 -64.8564335 4 2115 \N \N +13471 2025-11-17 03:01:55.165597+00 2025-11-17 03:01:55.165608+00 f t Invitado Amar invitado-1763348513378@example.com 55555555 \N \N \N \N \N 37 \N \N \N +13675 2025-11-18 21:39:52.885834+00 2025-11-18 21:39:52.885844+00 f t Invitado Amar invitado-1763501992654@example.com 55555555 \N \N \N \N \N 62 \N \N \N +13861 2025-11-20 01:10:00.93155+00 2025-11-20 01:10:00.931558+00 f t Natalia Inguanti nataliainguanti@gmail.com +541138016912 \N Álvarez rodriguez 177 Casa \N \N -34.5967048 -60.9454968 55 2204 \N \N +14043 2025-11-21 14:53:45.769898+00 2025-11-21 14:53:45.769907+00 f t Invitado Amar invitado-1763736825262@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14222 2025-11-23 13:41:58.509496+00 2025-11-23 13:41:58.509505+00 t t Invitado Amar invitado-1763905316193@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14404 2025-11-24 23:30:35.404512+00 2025-11-24 23:30:35.404524+00 f t Invitado Amar invitado-1764027035003@example.com 55555555 \N \N \N \N \N 85 \N \N \N +13242 2025-11-14 01:01:51.694318+00 2025-11-14 01:01:51.694326+00 f t Invitado Amar invitado-1763082110916@example.com 55555555 \N \N \N \N \N 26 \N \N \N +9983 2025-10-04 01:43:36.262424+00 2025-10-04 01:43:36.262435+00 f t Invitado Amar invitado-1759542215975@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10166 2025-10-06 23:29:34.924718+00 2025-10-06 23:29:34.924728+00 f t Invitado Amar invitado-1759793373089@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10346 2025-10-09 14:42:24.139346+00 2025-10-09 14:42:24.139355+00 f t Invitado Amar invitado-1760020943775@example.com 55555555 \N \N \N \N \N 82 \N \N \N +10528 2025-10-12 11:09:52.379241+00 2025-10-12 11:09:52.37925+00 f t Invitado Amar invitado-1760267392222@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10710 2025-10-14 16:43:01.191459+00 2025-10-14 16:43:01.191467+00 f t Invitado Amar invitado-1760460181136@example.com 55555555 \N \N \N \N \N 19 \N \N \N +10890 2025-10-16 21:54:05.523352+00 2025-10-16 21:54:05.523363+00 f t Invitado Amar invitado-1760651643599@example.com 55555555 \N \N \N \N \N 38 \N \N \N +11069 2025-10-19 11:54:41.569338+00 2025-10-19 11:54:41.569351+00 f t Invitado Amar invitado-1760874881233@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11253 2025-10-21 18:10:02.918936+00 2025-10-21 18:10:02.918952+00 f t Invitado Amar invitado-1761070201696@example.com 55555555 \N \N \N \N \N \N \N \N \N +11433 2025-10-24 09:54:03.155905+00 2025-10-24 09:54:03.155914+00 f t Invitado Amar invitado-1761299641237@example.com 55555555 \N \N \N \N \N 28 \N \N \N +11613 2025-10-27 16:26:11.015566+00 2025-10-27 16:26:11.015575+00 f t Invitado Amar invitado-1761582370280@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11796 2025-10-29 01:26:32.592198+00 2025-10-29 01:26:32.592208+00 f t Invitado Amar invitado-1761701191974@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11979 2025-10-30 16:57:11.795979+00 2025-10-30 16:57:11.795988+00 f t Invitado Amar invitado-1761843431108@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12163 2025-11-01 13:52:53.659004+00 2025-11-01 13:52:53.659016+00 f t Invitado Amar invitado-1762005172939@example.com 55555555 \N \N \N \N \N 59 \N \N \N +12343 2025-11-04 14:25:33.679832+00 2025-11-04 14:25:33.679846+00 f t Invitado Amar invitado-1762266333087@example.com 55555555 \N \N \N \N \N 19 \N \N \N +12526 2025-11-06 15:20:54.892517+00 2025-11-06 15:20:54.892525+00 f t Invitado Amar invitado-1762442454480@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12706 2025-11-08 15:29:33.169507+00 2025-11-08 15:29:33.169516+00 f t Invitado Amar invitado-1762615772598@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12889 2025-11-10 19:16:58.278936+00 2025-11-10 19:16:58.278945+00 f t Invitado Amar invitado-1762802218386@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13072 2025-11-12 14:13:38.206196+00 2025-11-12 14:13:38.206204+00 f t Invitado Amar invitado-1762956817259@example.com 55555555 \N \N \N \N \N 82 \N \N \N +13472 2025-11-17 03:05:05.27049+00 2025-11-17 03:05:05.270505+00 f t Invitado Amar invitado-1763348705635@example.com 55555555 \N \N \N \N \N 64 \N \N \N +13676 2025-11-18 21:40:45.352178+00 2025-11-18 21:40:45.35219+00 f t Invitado Amar invitado-1763502044917@example.com 55555555 \N \N \N \N \N 64 \N \N \N +13862 2025-11-20 01:16:04.725074+00 2025-11-20 01:16:04.725083+00 f t Invitado Amar invitado-1763601364054@example.com 55555555 \N \N \N \N \N 55 \N \N \N +14044 2025-11-21 14:56:59.882534+00 2025-11-21 14:56:59.882543+00 f t Invitado Amar invitado-1763737018699@example.com 55555555 \N \N \N \N \N 73 \N \N \N +14223 2025-11-23 13:44:15.347292+00 2025-11-23 13:44:15.3473+00 f t Invitado Amar invitado-1763905453786@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14405 2025-11-24 23:31:44.453639+00 2025-11-24 23:31:44.453649+00 f t Invitado Amar invitado-1764027104181@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13243 2025-11-14 01:08:05.427866+00 2025-11-14 01:08:05.427878+00 f t Invitado Amar invitado-1763082484577@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9984 2025-10-04 01:49:51.931857+00 2025-10-04 01:49:51.931869+00 f t Invitado Amar invitado-1759542591343@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10167 2025-10-06 23:38:21.426268+00 2025-10-06 23:38:21.42628+00 f t Invitado Amar invitado-1759793900883@example.com 55555555 \N \N \N \N \N 55 \N \N \N +10347 2025-10-09 14:47:53.027119+00 2025-10-09 14:47:53.027128+00 f t Invitado Amar invitado-1760021272640@example.com 55555555 \N \N \N \N \N 82 \N \N \N +10529 2025-10-12 11:21:32.919168+00 2025-10-12 11:21:32.919176+00 f t Invitado Amar invitado-1760268092230@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10711 2025-10-14 16:48:15.45651+00 2025-10-14 16:48:15.456521+00 f t Invitado Amar invitado-1760460495037@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10891 2025-10-16 22:00:24.730543+00 2025-10-16 22:00:24.730587+00 f t Invitado Amar invitado-1760652024351@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11070 2025-10-19 11:55:11.608629+00 2025-10-19 11:55:11.60864+00 f t Invitado Amar invitado-1760874911820@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12527 2025-11-06 16:10:20.79997+00 2025-11-06 16:10:20.799979+00 f t Joseimar Milagros Mendez Martinez josimendez.31@gmail.com +541122521888 \N Nuñez 3649 5 B \N FEMALE \N -34.5561203 -58.478416 31 2048 \N \N +11254 2025-10-21 18:20:39.868991+00 2025-10-21 18:20:39.869001+00 f t Sonia Lopez bahianoe@hotmail.com +541159749163 \N Galarza 1561 \N \N -34.4093314 -58.5938293 22 \N \N \N +11434 2025-10-24 11:17:33.128661+00 2025-10-24 11:17:33.128673+00 f t Invitado Amar invitado-1761304652287@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11614 2025-10-27 16:37:09.644844+00 2025-10-27 16:37:09.644856+00 f t Invitado Amar invitado-1761583026774@example.com 55555555 \N \N \N \N \N 52 \N \N \N +11797 2025-10-29 01:35:26.720754+00 2025-10-29 01:35:26.720767+00 f t Invitado Amar invitado-1761701725968@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11980 2025-10-30 17:13:06.705861+00 2025-10-30 17:13:06.705869+00 f t Invitado Amar invitado-1761844385127@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12164 2025-11-01 13:54:52.588057+00 2025-11-01 13:54:52.588066+00 f t Invitado Amar invitado-1762005292045@example.com 55555555 \N \N \N \N \N 22 \N \N \N +12344 2025-11-04 14:27:18.474882+00 2025-11-04 14:27:18.474891+00 f t Invitado Amar invitado-1762266437687@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13473 2025-11-17 05:55:49.411227+00 2025-11-17 05:55:49.411236+00 f t Invitado Amar invitado-1763358947076@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13677 2025-11-18 21:46:41.131079+00 2025-11-18 21:46:41.13109+00 f t Invitado Amar invitado-1763502407041@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13863 2025-11-20 01:27:49.933505+00 2025-11-20 01:27:49.933514+00 f t Invitado Amar invitado-1763602068120@example.com 55555555 \N \N \N \N \N 8 \N \N \N +12707 2025-11-08 15:35:23.877647+00 2025-11-08 15:35:23.87766+00 f t Invitado Amar invitado-1762616125503@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12890 2025-11-10 19:17:32.760461+00 2025-11-10 19:17:32.76047+00 f t Invitado Amar invitado-1762802252200@example.com 55555555 \N \N \N \N \N 15 \N \N \N +13073 2025-11-12 14:16:06.907763+00 2025-11-12 14:16:06.907775+00 f t maximiliano porreca porreca@agro.uba.ar 5491162858955 \N cuba 2778 casa \N MALE \N -34.5546753 -58.4602579 3 2113 \N \N +14045 2025-11-21 15:00:38.839028+00 2025-11-21 15:00:38.83904+00 f t Victoria Aloisio victoriaaloisio95@gmail.com 5491136650818 \N Av. General Mosconi 2385 piso 4 C \N FEMALE \N -34.5825908 -58.4963526 51 2220 \N \N +14224 2025-11-23 13:50:11.138474+00 2025-11-23 13:50:11.13849+00 f t Invitado Amar invitado-1763905811605@example.com 55555555 \N \N \N \N \N 80 \N \N \N +14406 2025-11-24 23:31:54.802038+00 2025-11-24 23:31:54.802049+00 f t Invitado Amar invitado-1764027114025@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13244 2025-11-14 01:19:25.458345+00 2025-11-14 01:19:25.458354+00 f t Invitado Amar invitado-1763083156742@example.com 55555555 \N \N \N \N \N 84 \N \N \N +9985 2025-10-04 08:46:19.003539+00 2025-10-04 08:46:19.003549+00 f t Invitado Amar invitado-1759567578667@example.com 55555555 \N \N \N \N \N 16 \N \N \N +10168 2025-10-06 23:40:29.081247+00 2025-10-06 23:40:29.081255+00 f t Invitado Amar invitado-1759794027565@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10348 2025-10-09 14:49:10.799087+00 2025-10-09 14:49:10.799096+00 f t Invitado Amar invitado-1760021350634@example.com 55555555 \N \N \N \N \N 82 \N \N \N +10530 2025-10-12 12:04:49.551265+00 2025-10-12 12:04:49.551275+00 f t Invitado Amar invitado-1760270689111@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10712 2025-10-14 17:00:11.589548+00 2025-10-14 17:00:11.589559+00 f t Invitado Amar invitado-1760461210170@example.com 55555555 \N \N \N \N \N 43 \N \N \N +10892 2025-10-16 22:00:55.980334+00 2025-10-16 22:00:55.980343+00 f t Invitado Amar invitado-1760652055404@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11071 2025-10-19 12:47:23.037345+00 2025-10-19 12:47:23.037354+00 f t Invitado Amar invitado-1760878042264@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13474 2025-11-17 06:05:01.153693+00 2025-11-17 06:05:01.153706+00 f t Invitado Amar invitado-1763359500176@example.com 55555555 \N \N \N \N \N 40 \N \N \N +13678 2025-11-18 21:47:26.617562+00 2025-11-18 21:47:26.617571+00 f t Invitado Amar invitado-1763502446343@example.com 55555555 \N \N \N \N \N 147 \N \N \N +11435 2025-10-24 11:32:43.718094+00 2025-10-24 11:32:43.718103+00 f t Invitado Amar invitado-1761305564148@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11615 2025-10-27 16:51:24.579454+00 2025-10-27 16:51:24.579464+00 f t Invitado Amar invitado-1761583884130@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13864 2025-11-20 01:37:00.883734+00 2025-11-20 01:37:00.883747+00 f t Invitado Amar invitado-1763602619417@example.com 55555555 \N \N \N \N \N 47 \N \N \N +11798 2025-10-29 01:45:21.085563+00 2025-10-29 01:45:21.085573+00 f t Julieta Bonanotte julitabona@gmail.com +541136946607 \N Bernal 666 \N \N -34.6136793 -58.4455416 14 \N \N \N +11981 2025-10-30 17:24:33.923598+00 2025-10-30 17:24:33.923608+00 f t Invitado Amar invitado-1761845073100@example.com 55555555 \N \N \N \N \N 33 \N \N \N +12165 2025-11-01 13:59:44.179293+00 2025-11-01 13:59:44.179302+00 f t Invitado Amar invitado-1762005583897@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12345 2025-11-04 14:33:29.322832+00 2025-11-04 14:33:29.322841+00 f t gabriela cesarini gabycesarini@gmail.com 91156374394 \N SANTA MARTA 1469 \N \N FEMALE 1972-11-10 \N \N 46 2012 \N \N +14046 2025-11-21 15:14:40.098139+00 2025-11-21 15:14:40.098149+00 f t Paula Belén Novas paula.belen.novas@gmail.com 5491138598655 \N Avenida Eva Perón 1193 Piso 1 depto 5, Casi esquina Emilio Mitre. \N FEMALE \N -34.6308004 -58.4420255 20 2221 \N \N +12528 2025-11-06 16:15:29.65621+00 2025-11-06 16:15:29.656219+00 f t Yanina Cruz Robertoezequielheredia@gamil.com 5491125904938 \N Zelaya 3023 casa \N FEMALE \N -34.6018531 -58.4084573 18 2047 \N \N +12708 2025-11-08 15:40:45.138689+00 2025-11-08 15:40:45.138698+00 f t Invitado Amar invitado-1762616444882@example.com 55555555 \N \N \N \N \N 25 \N \N \N +12891 2025-11-10 19:36:16.399534+00 2025-11-10 19:36:16.399545+00 f t Invitado Amar invitado-1762803375849@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13074 2025-11-12 14:24:57.369552+00 2025-11-12 14:24:57.369563+00 f t Invitado Amar invitado-1762957496055@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11255 2025-10-21 18:33:45.780008+00 2025-10-21 18:33:45.780016+00 f t rodrigo gallegos rodrigoale.gallegos@gmail.com 91152883281 \N Av. General Mosconi 3637 depto 2C \N MALE \N -34.5922666 -58.51216 21 1894 \N \N +14225 2025-11-23 13:55:36.642338+00 2025-11-23 13:55:36.642347+00 f t Invitado Amar invitado-1763906136205@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14407 2025-11-24 23:32:10.758096+00 2025-11-24 23:32:10.758105+00 f t Invitado Amar invitado-1764027093396@example.com 55555555 \N \N \N \N \N 74 \N \N \N +13245 2025-11-14 01:19:41.090735+00 2025-11-14 01:19:41.090747+00 f t Invitado Amar invitado-1763083179791@example.com 55555555 \N \N \N \N \N 50 \N \N \N +13475 2025-11-17 06:22:55.687006+00 2025-11-17 06:22:55.687016+00 f t Invitado Amar invitado-1763360574574@example.com 55555555 \N \N \N \N \N 88 \N \N \N +9986 2025-10-04 08:46:46.392601+00 2025-10-04 08:46:46.39261+00 f t Leticia Honda leticiahondat@gmail.com +541176407760 \N Dolores 40 5A \N \N 21.153587 -100.9088225 4 \N \N \N +10169 2025-10-07 00:15:04.302456+00 2025-10-07 00:15:04.302469+00 f t Invitado Amar invitado-1759796103735@example.com 55555555 \N \N \N \N \N 17 \N \N \N +10349 2025-10-09 15:03:12.708556+00 2025-10-09 15:03:12.708567+00 f t Invitado Amar invitado-1760022192252@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10531 2025-10-12 12:23:27.081543+00 2025-10-12 12:23:27.081553+00 f t Invitado Amar invitado-1760271806587@example.com 55555555 \N \N \N \N \N 156 \N \N \N +10713 2025-10-14 17:20:26.70301+00 2025-10-14 17:20:26.703022+00 f t Invitado Amar invitado-1760462425389@example.com 55555555 \N \N \N \N \N 45 \N \N \N +10893 2025-10-16 22:00:57.866909+00 2025-10-16 22:00:57.866918+00 f t Invitado Amar invitado-1760652057752@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11072 2025-10-19 12:48:54.957987+00 2025-10-19 12:48:54.957996+00 f t Invitado Amar invitado-1760878134236@example.com 55555555 \N \N \N \N \N 28 \N \N \N +11256 2025-10-21 18:38:26.714035+00 2025-10-21 18:38:26.714044+00 f t Invitado Amar invitado-1761071907246@example.com 55555555 \N \N \N \N \N \N \N \N \N +11436 2025-10-24 12:07:40.113328+00 2025-10-24 12:07:40.113336+00 f t Invitado Amar invitado-1761307661018@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13679 2025-11-18 22:02:53.744861+00 2025-11-18 22:02:53.744871+00 f t Invitado Amar invitado-1763503372968@example.com 55555555 \N \N \N \N \N 51 \N \N \N +11616 2025-10-27 16:57:10.275168+00 2025-10-27 16:57:10.275178+00 f t Mariel Eugui marielceciliaeugui@gmail.com 5491140841076 \N Amenábar 3069 1a \N FEMALE \N -34.5547725 -58.465893 25 1914 \N \N +11799 2025-10-29 01:48:21.385779+00 2025-10-29 01:48:21.385788+00 f t Invitado Amar invitado-1761702500975@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11982 2025-10-30 17:28:10.21401+00 2025-10-30 17:28:10.21402+00 f t Invitado Amar invitado-1761845289220@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12166 2025-11-01 14:09:22.762399+00 2025-11-01 14:09:22.762408+00 f t Invitado Amar invitado-1762006161817@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12346 2025-11-04 14:35:31.229338+00 2025-11-04 14:35:31.229347+00 f t Invitado Amar invitado-1762266930657@example.com 55555555 \N \N \N \N \N 59 \N \N \N +12529 2025-11-06 16:16:06.029324+00 2025-11-06 16:16:06.029336+00 f t Invitado Amar invitado-1762445765694@example.com 55555555 \N \N \N \N \N 31 \N \N \N +12709 2025-11-08 15:50:38.255445+00 2025-11-08 15:50:38.255454+00 f t Invitado Amar invitado-1762617037791@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12892 2025-11-10 19:40:40.323111+00 2025-11-10 19:40:40.323124+00 f t Invitado Amar invitado-1762803639678@example.com 55555555 \N \N \N \N \N 53 \N \N \N +13075 2025-11-12 14:33:04.4173+00 2025-11-12 14:33:04.41731+00 f t Invitado Amar invitado-1762957984993@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13865 2025-11-20 01:53:22.010382+00 2025-11-20 01:53:22.010391+00 f t Invitado Amar invitado-1763603600763@example.com 55555555 \N \N \N \N \N 162 \N \N \N +14047 2025-11-21 15:27:53.833869+00 2025-11-21 15:27:53.833878+00 f t Santiago miguel santimiguel2002@gmail.com +541126301197 \N Paraguay 483 - \N \N \N \N 73 2222 \N \N +14226 2025-11-23 14:06:42.472168+00 2025-11-23 14:06:42.472177+00 f t Invitado Amar invitado-1763906802043@example.com 55555555 \N \N \N \N \N 147 \N \N \N +14408 2025-11-24 23:36:09.595845+00 2025-11-24 23:36:09.595859+00 f t Invitado Amar invitado-1764027369242@example.com 55555555 \N \N \N \N \N 65 \N \N \N +13246 2025-11-14 01:20:03.114236+00 2025-11-14 01:20:03.114248+00 f t Invitado Amar invitado-1763083201181@example.com 55555555 \N \N \N \N \N 70 \N \N \N +9987 2025-10-04 09:33:57.65252+00 2025-10-04 09:33:57.652528+00 f t Invitado Amar invitado-1759570436356@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10170 2025-10-07 00:36:57.68412+00 2025-10-07 00:36:57.684129+00 f t Invitado Amar invitado-1759797439833@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10350 2025-10-09 15:22:03.635957+00 2025-10-09 15:22:03.635965+00 f t Invitado Amar invitado-1760023323201@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10532 2025-10-12 12:33:32.411063+00 2025-10-12 12:33:32.411072+00 f t Invitado Amar invitado-1760272412147@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10714 2025-10-14 17:39:45.243698+00 2025-10-14 17:39:45.243711+00 f t Invitado Amar invitado-1760463584690@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10894 2025-10-16 22:05:24.552632+00 2025-10-16 22:05:24.552641+00 f t Invitado Amar invitado-1760652324243@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11073 2025-10-19 12:58:07.818511+00 2025-10-19 12:58:07.81852+00 f t Invitado Amar invitado-1760878686517@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11257 2025-10-21 18:38:32.69292+00 2025-10-21 18:38:32.692929+00 f t Invitado Amar invitado-1761071911737@example.com 55555555 \N \N \N \N \N \N \N \N \N +11437 2025-10-24 12:09:49.10878+00 2025-10-24 12:09:49.108789+00 f t Invitado Amar invitado-1761307788462@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13476 2025-11-17 06:23:10.482263+00 2025-11-17 06:23:10.482275+00 f t Invitado Amar invitado-1763360589600@example.com 55555555 \N \N \N \N \N 88 \N \N \N +11617 2025-10-27 16:58:29.307463+00 2025-10-27 16:58:29.307471+00 f t Hubert Gosse admuru@yahoo.com +541125038733 \N Quintana 437 11B \N \N -34.5902961 -58.3874962 9 \N \N \N +11800 2025-10-29 01:49:47.080563+00 2025-10-29 01:49:47.080576+00 f t Invitado Amar invitado-1761702585855@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11983 2025-10-30 17:35:57.831977+00 2025-10-30 17:35:57.831991+00 f t Invitado Amar invitado-1761845756866@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12167 2025-11-01 14:20:44.057248+00 2025-11-01 14:20:44.057258+00 f t Invitado Amar invitado-1762006842058@example.com 55555555 \N \N \N \N \N 28 \N \N \N +12347 2025-11-04 14:46:37.32192+00 2025-11-04 14:46:37.321929+00 f t Invitado Amar invitado-1762267597047@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12530 2025-11-06 16:19:04.028082+00 2025-11-06 16:19:04.028091+00 f t Invitado Amar invitado-1762445941968@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12710 2025-11-08 15:52:10.071295+00 2025-11-08 15:52:10.071307+00 f t Invitado Amar invitado-1762617129813@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12893 2025-11-10 19:58:09.924452+00 2025-11-10 19:58:09.924468+00 f t Invitado Amar invitado-1762804688237@example.com 55555555 \N \N \N \N \N 52 \N \N \N +13076 2025-11-12 14:42:24.413145+00 2025-11-12 14:42:24.413158+00 f t Invitado Amar invitado-1762958542883@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13680 2025-11-18 22:12:22.178339+00 2025-11-18 22:12:22.178351+00 f t Invitado Amar invitado-1763503942133@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13866 2025-11-20 02:18:08.129026+00 2025-11-20 02:18:08.129036+00 f t Invitado Amar invitado-1763605087905@example.com 55555555 \N \N \N \N \N 32 \N \N \N +14048 2025-11-21 15:43:30.941587+00 2025-11-21 15:43:30.9416+00 f t Invitado Amar invitado-1763739810182@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14227 2025-11-23 14:42:48.429543+00 2025-11-23 14:42:48.429551+00 f t Invitado Amar invitado-1763908966445@example.com 55555555 \N \N \N \N \N 52 \N \N \N +14409 2025-11-25 00:00:32.642088+00 2025-11-25 00:00:32.642101+00 f t Invitado Amar invitado-1764028832013@example.com 55555555 \N \N \N \N \N 39 \N \N \N +13247 2025-11-14 01:26:13.019387+00 2025-11-14 01:26:13.019396+00 f t Invitado Amar invitado-1763083572163@example.com 55555555 \N \N \N \N \N 50 \N \N \N +9988 2025-10-04 13:53:22.812761+00 2025-10-04 13:53:22.81277+00 f t Invitado Amar invitado-1759586002595@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10171 2025-10-07 00:46:02.4576+00 2025-10-07 00:46:02.457608+00 f t Invitado Amar invitado-1759797960659@example.com 55555555 \N \N \N \N \N 46 \N \N \N +10351 2025-10-09 15:22:49.98354+00 2025-10-09 15:22:49.983549+00 f t Invitado Amar invitado-1760023369510@example.com 55555555 \N \N \N \N \N 12 \N \N \N +10533 2025-10-12 12:38:09.770283+00 2025-10-12 12:38:09.770292+00 f t Invitado Amar invitado-1760272689447@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10715 2025-10-14 17:48:16.619517+00 2025-10-14 17:48:16.619527+00 f t Invitado Amar invitado-1760464096188@example.com 55555555 \N \N \N \N \N 32 \N \N \N +13477 2025-11-17 07:51:29.234627+00 2025-11-17 07:51:29.234638+00 f t Invitado Amar invitado-1763365888353@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13681 2025-11-18 22:14:35.504647+00 2025-11-18 22:14:35.504657+00 f t Invitado Amar invitado-1763504075751@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10895 2025-10-16 22:19:45.46695+00 2025-10-16 22:19:45.466965+00 f t Victoria Romero vickyromvaz@gmail.com +541138017550 \N Conde 747 6C \N \N -34.5776258 -58.4499241 38 \N \N \N +11074 2025-10-19 13:00:03.792642+00 2025-10-19 13:00:03.792659+00 f t Invitado Amar invitado-1760878803728@example.com 55555555 \N \N \N \N \N 39 \N \N \N +11258 2025-10-21 18:51:42.056131+00 2025-10-21 18:51:42.056142+00 f t Invitado Amar invitado-1761072701636@example.com 55555555 \N \N \N \N \N 147 \N \N \N +11438 2025-10-24 12:13:14.172695+00 2025-10-24 12:13:14.172704+00 f t Invitado Amar invitado-1761307993529@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11618 2025-10-27 17:00:21.378003+00 2025-10-27 17:00:21.378016+00 f t Invitado Amar invitado-1761584420212@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11801 2025-10-29 02:23:28.358102+00 2025-10-29 02:23:28.358112+00 f t Invitado Amar invitado-1761704606667@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13867 2025-11-20 02:25:07.675917+00 2025-11-20 02:25:07.675927+00 f t Invitado Amar invitado-1763605505956@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11984 2025-10-30 17:44:02.229321+00 2025-10-30 17:44:02.229331+00 f t Lorena libramento Lorenalibramento5@gmail.com 5492216969934 \N 165 y 34 \N Berisso \N FEMALE \N \N \N 147 1941 \N \N +5249 2025-07-25 18:12:32.256791+00 2025-07-25 18:12:32.256798+00 f t Erica Paola Barbera ericabarbera@hotmail.com 91132369252 \N Blanco Encalada 2729 Casa \N FEMALE \N -34.5609808 -58.4622196 3 1449 \N ebarbera +12348 2025-11-04 14:47:47.75968+00 2025-11-04 14:47:47.759691+00 f t Invitado Amar invitado-1762267667155@example.com 55555555 \N \N \N \N \N 73 \N \N \N +14049 2025-11-21 15:45:20.998671+00 2025-11-21 15:45:20.998679+00 f t Invitado Amar invitado-1763739920799@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14228 2025-11-23 14:44:59.713549+00 2025-11-23 14:44:59.713558+00 f t Invitado Amar invitado-1763909098384@example.com 55555555 \N \N \N \N \N 52 \N \N \N +12711 2025-11-08 15:55:10.39175+00 2025-11-08 15:55:10.391758+00 f t Invitado Amar invitado-1762617306144@example.com 55555555 \N \N \N \N \N 46 \N \N \N +12531 2025-11-06 16:29:25.901505+00 2025-11-06 16:29:25.901513+00 f t Litzaqueline Silmar Briceño Canario litzaqueline@gmail.com +541132405006 \N Av. del libertador 2337 8-8, entre corrientes y Uribelarrea \N \N \N -34.5092011 -58.4788217 39 2049 \N \N +12894 2025-11-10 19:58:34.934285+00 2025-11-10 19:58:34.934771+00 f t Invitado Amar invitado-1762804715816@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13077 2025-11-12 14:45:38.787338+00 2025-11-12 14:45:38.787347+00 f t Invitado Amar invitado-1762958738378@example.com 55555555 \N \N \N \N \N 82 \N \N \N +14410 2025-11-25 00:12:02.081618+00 2025-11-25 00:12:02.081633+00 f t Invitado Amar invitado-1764029521519@example.com 55555555 \N \N \N \N \N 82 \N \N \N +9989 2025-10-04 13:55:57.228494+00 2025-10-04 13:55:57.228509+00 f t Invitado Amar invitado-1759586158193@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10172 2025-10-07 01:09:10.422617+00 2025-10-07 01:09:10.42263+00 f t Invitado Amar invitado-1759799349780@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10352 2025-10-09 15:27:51.535685+00 2025-10-09 15:27:51.535694+00 f t Invitado Amar invitado-1760023670400@example.com 55555555 \N \N \N \N \N 82 \N \N \N +10534 2025-10-12 12:41:11.380812+00 2025-10-12 12:41:11.380822+00 f t MAXIMILIANO ARIEL CASTELLANO maxicastellano71@gmail.com +541168601999 \N Avenida Díaz Vélez 4335 4 A \N \N -34.6086131 -58.4282767 23 \N \N \N +13248 2025-11-14 01:28:03.719349+00 2025-11-14 01:28:03.719358+00 f t Carolina Codina carocodina2001@gmail.com +541131888672 \N Medrano 505 Casa rejas negras \N FEMALE \N -34.6473801 -58.5766047 50 2140 \N \N +13478 2025-11-17 10:23:23.965865+00 2025-11-17 10:23:23.965876+00 f t Invitado Amar invitado-1763375000665@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10896 2025-10-16 22:29:53.716049+00 2025-10-16 22:29:53.716062+00 f t Invitado Amar invitado-1760653793293@example.com 55555555 \N \N \N \N \N 46 \N \N \N +11075 2025-10-19 13:14:10.319007+00 2025-10-19 13:14:10.319016+00 f t Invitado Amar invitado-1760879649642@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11259 2025-10-21 18:52:48.611075+00 2025-10-21 18:52:48.611086+00 f t Invitado Amar invitado-1761072768464@example.com 55555555 \N \N \N \N \N \N \N \N \N +10716 2025-10-14 18:04:09.475781+00 2025-10-14 18:04:09.475791+00 f t Gabriel Maffia gabriel@maffia.me +5491157990585 \N Av. Dr. Honorio Pueyrredon 1514 casa \N MALE \N -34.6038212 -58.4488719 26 \N \N \N +11439 2025-10-24 12:16:44.107667+00 2025-10-24 12:16:44.107677+00 t t Invitado Amar invitado-1761308206306@example.com 55555555 \N \N \N \N \N 41 \N \N \N +11619 2025-10-27 17:04:59.441486+00 2025-10-27 17:04:59.441496+00 f t Invitado Amar invitado-1761584699629@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11802 2025-10-29 02:40:26.424283+00 2025-10-29 02:40:26.424295+00 f t Invitado Amar invitado-1761705624143@example.com 55555555 \N \N \N \N \N 74 \N \N \N +13682 2025-11-18 22:15:59.661565+00 2025-11-18 22:15:59.661575+00 f t Invitado Amar invitado-1763504159063@example.com 55555555 \N \N \N \N \N 86 \N \N \N +11985 2025-10-30 18:11:41.364212+00 2025-10-30 18:11:41.364223+00 f t Carolina Tafuri ctafuri@gmail.com +541144183514 \N Jose Bonifacio 648 Casa \N \N -34.6272574 -58.4366193 14 \N \N \N +12168 2025-11-01 14:24:07.777067+00 2025-11-01 14:24:07.777079+00 f t Invitado Amar invitado-1762007047411@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12349 2025-11-04 14:58:17.646187+00 2025-11-04 14:58:17.646196+00 f t Invitado Amar invitado-1762268296336@example.com 55555555 \N \N \N \N \N 153 \N \N \N +12532 2025-11-06 16:33:28.340615+00 2025-11-06 16:33:28.340623+00 f t Invitado Amar invitado-1762446808422@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12712 2025-11-08 16:02:34.04658+00 2025-11-08 16:02:34.046591+00 f t Invitado Amar invitado-1762617753663@example.com 55555555 \N \N \N \N \N 6 \N \N \N +12895 2025-11-10 20:00:51.591342+00 2025-11-10 20:00:51.591355+00 f t Invitado Amar invitado-1762804852750@example.com 55555555 \N \N \N \N \N 89 \N \N \N +13078 2025-11-12 14:50:57.965374+00 2025-11-12 14:50:57.965382+00 f t Invitado Amar invitado-1762958942405@example.com 55555555 \N \N \N \N \N 65 \N \N \N +13868 2025-11-20 02:25:26.580524+00 2025-11-20 02:25:26.580535+00 f t Invitado Amar invitado-1763605525108@example.com 55555555 \N \N \N \N \N 17 \N \N \N +14050 2025-11-21 15:50:19.9652+00 2025-11-21 15:50:19.96521+00 f t Alejandra Martin Ale-martin1@hotmail.com 5491166102148 \N Concordia 1365 timbre 2 \N FEMALE \N \N \N 41 2223 \N \N +14229 2025-11-23 14:45:16.984113+00 2025-11-23 14:45:16.984122+00 f t Felipe Chaves chaves.felipe@gmail.com +541130316183 \N Ángel Justiniano Carranza 1955 2 \N MALE \N -34.5805859 -58.4359472 1 2242 \N \N +14411 2025-11-25 00:20:44.914655+00 2025-11-25 00:20:44.914664+00 f t Invitado Amar invitado-1764030044315@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13249 2025-11-14 01:28:25.952845+00 2025-11-14 01:28:25.952853+00 f t Invitado Amar invitado-1763083704593@example.com 55555555 \N \N \N \N \N 9 \N \N \N +9990 2025-10-04 14:22:22.889623+00 2025-10-04 14:22:22.889631+00 f t Invitado Amar invitado-1759587740972@example.com 55555555 \N \N \N \N \N 64 \N \N \N +10173 2025-10-07 01:22:39.864426+00 2025-10-07 01:22:39.864434+00 f t Invitado Amar invitado-1759800158688@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10353 2025-10-09 17:58:08.728073+00 2025-10-09 17:58:08.728082+00 f t Invitado Amar invitado-1760032687723@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10535 2025-10-12 13:26:54.410045+00 2025-10-12 13:26:54.410054+00 f t Invitado Amar invitado-1760275612413@example.com 55555555 \N \N \N \N \N 34 \N \N \N +10717 2025-10-14 18:04:21.754677+00 2025-10-14 18:04:21.754688+00 f t Invitado Amar invitado-1760465061062@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10897 2025-10-16 22:55:31.081673+00 2025-10-16 22:55:31.081684+00 f t Invitado Amar invitado-1760655330418@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11076 2025-10-19 14:42:52.824155+00 2025-10-19 14:42:52.824163+00 f t Invitado Amar invitado-1760884972202@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11260 2025-10-21 18:56:38.286402+00 2025-10-21 18:56:38.286413+00 f t Invitado Amar invitado-1761072997865@example.com 55555555 \N \N \N \N \N 4 \N \N \N +2084 2025-06-03 15:07:00.919376+00 2025-06-03 15:07:00.919387+00 f t Jesica Iglesias iglesias.jesica.mabel@gmail.com +541135918689 \N Av Nazca 1557 6 A \N FEMALE \N -34.6158066 -58.4777462 41 1072 \N jiglesias +11620 2025-10-27 17:19:42.371462+00 2025-10-27 17:19:42.371475+00 f t Invitado Amar invitado-1761585580011@example.com 55555555 \N \N \N \N \N 33 \N \N \N +11803 2025-10-29 02:51:43.719482+00 2025-10-29 02:51:43.719491+00 f t Invitado Amar invitado-1761706302852@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11986 2025-10-30 18:19:21.309982+00 2025-10-30 18:19:21.30999+00 f t Invitado Amar invitado-1761848360884@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12169 2025-11-01 14:26:10.39695+00 2025-11-01 14:26:10.396959+00 f t Invitado Amar invitado-1762007169680@example.com 55555555 \N \N \N \N \N 17 \N \N \N +12350 2025-11-04 15:02:22.45791+00 2025-11-04 15:02:22.457919+00 f t Invitado Amar invitado-1762268542569@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12533 2025-11-06 16:42:45.676807+00 2025-11-06 16:42:45.676816+00 f t Invitado Amar invitado-1762447364788@example.com 55555555 \N \N \N \N \N 154 \N \N \N +12713 2025-11-08 16:05:25.040693+00 2025-11-08 16:05:25.040706+00 f t Invitado Amar invitado-1762617924419@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12896 2025-11-10 20:01:51.615782+00 2025-11-10 20:01:51.615792+00 f t Invitado Amar invitado-1762804911159@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13079 2025-11-12 14:54:47.594428+00 2025-11-12 14:54:47.594441+00 f t Invitado Amar invitado-1762959286777@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13479 2025-11-17 10:59:54.14776+00 2025-11-17 10:59:54.147769+00 f t Invitado Amar invitado-1763377193163@example.com 55555555 \N \N \N \N \N 89 \N \N \N +13683 2025-11-18 22:22:01.42096+00 2025-11-18 22:22:01.420973+00 f t Invitado Amar invitado-1763504520957@example.com 55555555 \N \N \N \N \N 24 \N \N \N +13869 2025-11-20 02:26:46.560255+00 2025-11-20 02:26:46.560263+00 f t Invitado Amar invitado-1763605605084@example.com 55555555 \N \N \N \N \N 17 \N \N \N +14051 2025-11-21 16:00:41.605677+00 2025-11-21 16:00:41.60569+00 t t Invitado Amar invitado-1763740842076@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14230 2025-11-23 14:50:02.211182+00 2025-11-23 14:50:02.211198+00 f t Invitado Amar invitado-1763909401377@example.com 55555555 \N \N \N \N \N 39 \N \N \N +14412 2025-11-25 00:21:09.050666+00 2025-11-25 00:21:09.050677+00 f t Invitado Amar invitado-1764030067977@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13250 2025-11-14 01:29:38.7086+00 2025-11-14 01:29:38.708612+00 f t Invitado Amar invitado-1763083777225@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13480 2025-11-17 12:31:24.340555+00 2025-11-17 12:31:24.340564+00 f t Invitado Amar invitado-1763382682966@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13684 2025-11-18 22:23:03.400395+00 2025-11-18 22:23:03.400404+00 f t Invitado Amar invitado-1763504582977@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13870 2025-11-20 02:29:57.502418+00 2025-11-20 02:29:57.502427+00 f t Invitado Amar invitado-1763605795081@example.com 55555555 \N \N \N \N \N 112 \N \N \N +1098 2025-05-15 18:22:18.682897+00 2025-05-15 18:22:18.682906+00 f t Florencia loustau loustauf@gmail.com +541145637005 \N Pumacahua 480 3 A \N \N 1994-04-21 -34.6281268 -58.4542738 4 1482 \N floustau +10174 2025-10-07 01:38:26.227818+00 2025-10-07 01:38:26.227829+00 f t Invitado Amar invitado-1759801104836@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10354 2025-10-09 18:03:15.805995+00 2025-10-09 18:03:15.806007+00 f t Invitado Amar invitado-1760032995068@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10536 2025-10-12 13:42:45.196421+00 2025-10-12 13:42:45.19643+00 f t Invitado Amar invitado-1760276564847@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10718 2025-10-14 18:11:36.353541+00 2025-10-14 18:11:36.35355+00 f t Invitado Amar invitado-1760465495784@example.com 55555555 \N \N \N \N \N 91 \N \N \N +10898 2025-10-16 23:08:06.869524+00 2025-10-16 23:08:06.869534+00 f t Invitado Amar invitado-1760656094450@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14231 2025-11-23 14:51:16.116149+00 2025-11-23 14:51:16.116158+00 f t Invitado Amar invitado-1763909475881@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14413 2025-11-25 00:21:44.800311+00 2025-11-25 00:21:44.800324+00 f t Invitado Amar invitado-1764030104220@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11077 2025-10-19 14:43:50.523321+00 2025-10-19 14:43:50.523336+00 f t Tatiana Jara tatijara2102@gmail.com +541151203259 \N Gurruchaga 447 6C \N \N \N -34.597754 -58.4421722 26 \N \N \N +11261 2025-10-21 19:04:39.200099+00 2025-10-21 19:04:39.200108+00 f t Yasmin beltran Yasminperibeltran@gmail.com 5493462307398 \N Ramon Falcón 2626 Depto J piso 1 \N FEMALE \N -34.6310815 -58.4653342 4 1895 \N \N +11440 2025-10-24 12:23:09.753018+00 2025-10-24 12:23:09.753031+00 f t Invitado Amar invitado-1761308592174@example.com 55555555 \N \N \N \N \N 41 \N \N \N +11621 2025-10-27 17:26:20.440061+00 2025-10-27 17:26:20.44007+00 f t Invitado Amar invitado-1761585980015@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11804 2025-10-29 03:02:02.762473+00 2025-10-29 03:02:02.762489+00 f t Invitado Amar invitado-1761706923527@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11987 2025-10-30 19:18:09.611469+00 2025-10-30 19:18:09.611478+00 f t Invitado Amar invitado-1761851888582@example.com 55555555 \N \N \N \N \N 31 \N \N \N +9991 2025-10-04 14:46:04.780088+00 2025-10-04 14:46:04.780097+00 f t Iara Nizza iaranizza5@gmail.com 541134676361 \N Holmberg 889 6a \N FEMALE \N -34.5836433 -58.468533 24 1946 \N \N +12170 2025-11-01 14:30:00.227205+00 2025-11-01 14:30:00.227213+00 f t Invitado Amar invitado-1762007397991@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12351 2025-11-04 15:04:37.482774+00 2025-11-04 15:04:37.482783+00 f t Invitado Amar invitado-1762268677313@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12534 2025-11-06 16:46:13.677142+00 2025-11-06 16:46:13.677153+00 f t Invitado Amar invitado-1762447573003@example.com 55555555 \N \N \N \N \N 51 \N \N \N +12714 2025-11-08 16:34:54.043875+00 2025-11-08 16:34:54.043883+00 f t Invitado Amar invitado-1762619692268@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12897 2025-11-10 20:12:16.846753+00 2025-11-10 20:12:16.847119+00 f t Invitado Amar invitado-1762805533047@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13080 2025-11-12 15:08:58.670346+00 2025-11-12 15:08:58.670355+00 f t Invitado Amar invitado-1762960138376@example.com 55555555 \N \N \N \N \N 82 \N \N \N +3054 2025-06-20 17:47:25.508696+00 2025-06-20 17:47:25.50871+00 f t Alessandra Brito Cruz alebrittocruz@gmail.com +5491162057424 \N Avenida General Las Heras 2949 4F \N FEMALE \N -34.5832745 -58.4029003 1 1200 \N abritocruz +9992 2025-10-04 14:49:42.969208+00 2025-10-04 14:49:42.96922+00 f t Invitado Amar invitado-1759589381409@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10175 2025-10-07 01:54:26.86811+00 2025-10-07 01:54:26.868118+00 f t Invitado Amar invitado-1759802066440@example.com 55555555 \N \N \N \N \N 40 \N \N \N +13251 2025-11-14 01:33:18.241498+00 2025-11-14 01:33:18.241509+00 f t Invitado Amar invitado-1763083997636@example.com 55555555 \N \N \N \N \N 50 \N \N \N +10537 2025-10-12 13:52:00.422952+00 2025-10-12 13:52:00.422964+00 f t Invitado Amar invitado-1760277120044@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10719 2025-10-14 18:40:31.366825+00 2025-10-14 18:40:31.366835+00 f t Invitado Amar invitado-1760467230914@example.com 55555555 \N \N \N \N \N 35 \N \N \N +10355 2025-10-09 18:05:45.926186+00 2025-10-09 18:05:45.926194+00 f t Nayla magno naylamagno07@gmail.com 91155613904 \N Caseros 659 depto 5 \N FEMALE 1990-08-06 -34.7705877 -58.4161712 71 \N \N \N +10899 2025-10-16 23:09:49.022514+00 2025-10-16 23:09:49.022524+00 f t Invitado Amar invitado-1760656188351@example.com 55555555 \N \N \N \N \N 83 \N \N \N +13481 2025-11-17 12:32:16.770474+00 2025-11-17 12:32:16.770483+00 f t Invitado Amar invitado-1763382736132@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13685 2025-11-18 22:30:14.195642+00 2025-11-18 22:30:14.195659+00 f t Invitado Amar invitado-1763505014391@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11078 2025-10-19 14:55:34.02277+00 2025-10-19 14:55:34.022783+00 f t Cristina Lareo crislareo10@gmail.com +541133982021 \N Libertador 5414 5B \N \N \N -34.5621571 -58.4432346 3 \N \N \N +11262 2025-10-21 19:23:18.210582+00 2025-10-21 19:23:18.210594+00 f t Invitado Amar invitado-1761074597824@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11441 2025-10-24 12:31:20.512222+00 2025-10-24 12:31:20.512231+00 f t Invitado Amar invitado-1761309079892@example.com 55555555 \N \N \N \N \N 59 \N \N \N +11622 2025-10-27 17:45:54.920614+00 2025-10-27 17:45:54.920623+00 f t Invitado Amar invitado-1761587154566@example.com 55555555 \N \N \N \N \N 51 \N \N \N +11805 2025-10-29 03:25:14.998251+00 2025-10-29 03:25:14.998261+00 f t Invitado Amar invitado-1761708313369@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11988 2025-10-30 19:18:15.366191+00 2025-10-30 19:18:15.366199+00 f t Invitado Amar invitado-1761851893240@example.com 55555555 \N \N \N \N \N 31 \N \N \N +12171 2025-11-01 14:37:00.982942+00 2025-11-01 14:37:00.982951+00 f t Invitado Amar invitado-1762007819437@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12352 2025-11-04 15:10:08.362514+00 2025-11-04 15:10:08.362528+00 f t Invitado Amar invitado-1762269007122@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12535 2025-11-06 16:49:53.866641+00 2025-11-06 16:49:53.866652+00 f t Invitado Amar invitado-1762447793677@example.com 55555555 \N \N \N \N \N 154 \N \N \N +12715 2025-11-08 17:07:39.919693+00 2025-11-08 17:07:39.919702+00 f t Invitado Amar invitado-1762621658369@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13871 2025-11-20 03:27:07.22688+00 2025-11-20 03:27:07.226888+00 f t Invitado Amar invitado-1763609225555@example.com 55555555 \N \N \N \N \N 8 \N \N \N +14052 2025-11-21 16:04:05.474623+00 2025-11-21 16:04:05.474632+00 f t Invitado Amar invitado-1763741046261@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12898 2025-11-10 20:13:46.666611+00 2025-11-10 20:13:46.666624+00 f t Karina Dwolinski k_dwolinski@hotmail.com +541160527187 \N Ingeniero Pereyra 3729 PB Depto 03729 \N \N \N \N 91 2094 \N \N +14232 2025-11-23 15:01:14.51177+00 2025-11-23 15:01:14.511783+00 f t Invitado Amar invitado-1763910073926@example.com 55555555 \N \N \N \N \N 38 \N \N \N +14414 2025-11-25 00:23:19.519028+00 2025-11-25 00:23:19.519038+00 f t Invitado Amar invitado-1764030199116@example.com 55555555 \N \N \N \N \N 155 \N \N \N +13252 2025-11-14 01:37:58.451179+00 2025-11-14 01:37:58.451187+00 f t Invitado Amar invitado-1763084277359@example.com 55555555 \N \N \N \N \N 9 \N \N \N +9993 2025-10-04 15:08:56.047326+00 2025-10-04 15:08:56.047335+00 f t Invitado Amar invitado-1759590535513@example.com 55555555 \N \N \N \N \N 31 \N \N \N +10176 2025-10-07 02:32:02.470958+00 2025-10-07 02:32:02.470969+00 f t Invitado Amar invitado-1759804321599@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10356 2025-10-09 18:06:09.771165+00 2025-10-09 18:06:09.771174+00 f t Fernanda Gonzalez gonzalezfernanda030@gmail.com 5491164468336 \N Cornelio Saavedra 1314 entre pocitos y Urquiza ( casa azul y rejas negras) \N FEMALE \N -34.4583474 -58.5803539 74 \N \N \N +10538 2025-10-12 13:54:07.828941+00 2025-10-12 13:54:07.82895+00 f t Invitado Amar invitado-1760277247785@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10720 2025-10-14 19:03:03.372745+00 2025-10-14 19:03:03.372754+00 f t Invitado Amar invitado-1760468582951@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10900 2025-10-16 23:11:30.03752+00 2025-10-16 23:11:30.037529+00 f t Invitado Amar invitado-1760656289108@example.com 55555555 \N \N \N \N \N 73 \N \N \N +11079 2025-10-19 15:00:18.828827+00 2025-10-19 15:00:18.828837+00 f t Invitado Amar invitado-1760886017118@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11263 2025-10-21 19:26:38.885045+00 2025-10-21 19:26:38.885054+00 f t Invitado Amar invitado-1761074798562@example.com 55555555 \N \N \N \N \N \N \N \N \N +11442 2025-10-24 12:42:23.436002+00 2025-10-24 12:42:23.43601+00 f t Invitado Amar invitado-1761309743034@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11623 2025-10-27 17:59:35.579247+00 2025-10-27 17:59:35.579255+00 f t Invitado Amar invitado-1761587975113@example.com 55555555 \N \N \N \N \N 30 \N \N \N +11806 2025-10-29 03:59:39.823326+00 2025-10-29 03:59:39.823336+00 f t Invitado Amar invitado-1761710379225@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11989 2025-10-30 19:33:56.258191+00 2025-10-30 19:33:56.258202+00 f t Invitado Amar invitado-1761852835187@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13482 2025-11-17 12:38:12.911781+00 2025-11-17 12:38:12.91179+00 f t Invitado Amar invitado-1763383091536@example.com 55555555 \N \N \N \N \N 56 \N \N \N +13686 2025-11-18 22:39:19.947717+00 2025-11-18 22:39:19.947726+00 f t Invitado Amar invitado-1763505559491@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13872 2025-11-20 04:02:09.123069+00 2025-11-20 04:02:09.123078+00 f t Invitado Amar invitado-1763611328023@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14053 2025-11-21 16:04:19.962759+00 2025-11-21 16:04:19.962771+00 f t Invitado Amar invitado-1763741059524@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12172 2025-11-01 14:45:38.871383+00 2025-11-01 14:45:38.871392+00 f t Brad Stein brad.stein@gmail.com 9402248000 \N Elia 465 \N \N MALE \N -34.5733266 -58.441466 44 1972 \N \N +12353 2025-11-04 15:18:56.10481+00 2025-11-04 15:18:56.104822+00 f t Invitado Amar invitado-1762269535279@example.com 55555555 \N \N \N \N \N 20 \N \N \N +12536 2025-11-06 16:55:31.319582+00 2025-11-06 16:55:31.31959+00 f t Invitado Amar invitado-1762448130877@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12716 2025-11-08 17:08:51.442697+00 2025-11-08 17:08:51.442706+00 f t Invitado Amar invitado-1762621730762@example.com 55555555 \N \N \N \N \N 74 \N \N \N +14233 2025-11-23 15:12:48.979707+00 2025-11-23 15:12:48.979716+00 f t Invitado Amar invitado-1763910768502@example.com 55555555 \N \N \N \N \N 18 \N \N \N +14415 2025-11-25 00:26:08.251934+00 2025-11-25 00:26:08.251947+00 f t Invitado Amar invitado-1764030367455@example.com 55555555 \N \N \N \N \N 59 \N \N \N +12899 2025-11-10 20:13:47.187924+00 2025-11-10 20:13:47.187935+00 f t María Eugenia Filardi meugefil@gmail.com +541553419489 \N Guayra 1705 1B \N \N -34.549014 -58.4578315 113 2095 \N \N +13081 2025-11-12 15:50:09.644915+00 2025-11-12 15:50:09.644927+00 f t Invitado Amar invitado-1762962609267@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13253 2025-11-14 01:47:41.934845+00 2025-11-14 01:47:41.934853+00 t t Invitado Amar invitado-1763084861444@example.com 55555555 \N \N \N \N \N 147 \N \N \N +13483 2025-11-17 12:38:30.150929+00 2025-11-17 12:38:30.150938+00 f t Invitado Amar invitado-1763383108983@example.com 55555555 \N \N \N \N \N 21 \N \N \N +9994 2025-10-04 15:35:08.040098+00 2025-10-04 15:35:08.040106+00 f t Charo Iglesias iglcharo@gmail.com +541138034116 \N Luis Saenz peña 654 \N \N \N \N -34.7658664 -58.390797 49 \N \N \N +10177 2025-10-07 02:32:35.004274+00 2025-10-07 02:32:35.004283+00 f t Invitado Amar invitado-1759804354375@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10357 2025-10-09 18:22:12.196577+00 2025-10-09 18:22:12.196586+00 f t Invitado Amar invitado-1760034130753@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10539 2025-10-12 14:01:24.140643+00 2025-10-12 14:01:24.140654+00 f t Invitado Amar invitado-1760277683707@example.com 55555555 \N \N \N \N \N 44 \N \N \N +10721 2025-10-14 20:05:45.205278+00 2025-10-14 20:05:45.205287+00 f t Invitado Amar invitado-1760472344865@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13687 2025-11-18 22:55:38.99892+00 2025-11-18 22:55:38.998929+00 f t Invitado Amar invitado-1763506537823@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13873 2025-11-20 04:27:57.328455+00 2025-11-20 04:27:57.328463+00 f t Invitado Amar invitado-1763612875267@example.com 55555555 \N \N \N \N \N 71 \N \N \N +14054 2025-11-21 16:05:20.540271+00 2025-11-21 16:05:20.54028+00 f t Invitado Amar invitado-1763741120054@example.com 55555555 \N \N \N \N \N 49 \N \N \N +14234 2025-11-23 15:53:09.386828+00 2025-11-23 15:53:09.38684+00 f t Invitado Amar invitado-1763913188796@example.com 55555555 \N \N \N \N \N 90 \N \N \N +11080 2025-10-19 15:17:36.529461+00 2025-10-19 15:17:36.529474+00 f t Invitado Amar invitado-1760887056166@example.com 55555555 \N \N \N \N \N 15 \N \N \N +14416 2025-11-25 00:31:17.456577+00 2025-11-25 00:31:17.456587+00 f t Invitado Amar invitado-1764030675538@example.com 55555555 \N \N \N \N \N 64 \N \N \N +11443 2025-10-24 13:14:07.541948+00 2025-10-24 13:14:07.541957+00 f t Invitado Amar invitado-1761311648061@example.com 55555555 \N \N \N \N \N 31 \N \N \N +11624 2025-10-27 18:00:18.952583+00 2025-10-27 18:00:18.952595+00 f t Invitado Amar invitado-1761588019041@example.com 55555555 \N \N \N \N \N 65 \N \N \N +11807 2025-10-29 04:01:46.303228+00 2025-10-29 04:01:46.303237+00 f t Invitado Amar invitado-1761710506764@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11990 2025-10-30 19:36:52.930739+00 2025-10-30 19:36:52.930748+00 f t Invitado Amar invitado-1761853012237@example.com 55555555 \N \N \N \N \N 31 \N \N \N +12173 2025-11-01 14:54:18.127708+00 2025-11-01 14:54:18.127717+00 f t Invitado Amar invitado-1762008857391@example.com 55555555 \N \N \N \N \N 17 \N \N \N +10901 2025-10-16 23:11:54.025892+00 2025-10-16 23:11:54.025905+00 f t Cynthia Rodríguez crcynthia@hotmail.com 5491145632017 \N Villate 5268 Casa \N FEMALE 1976-11-08 -34.5354071 -58.5276122 156 1990 \N \N +11264 2025-10-21 19:30:03.477816+00 2025-10-21 19:30:03.477831+00 f t Santiago Beccaria santiagobeccaria@gmail.com 5491157062910 \N José Antonio Cabrera 3340 Pido 3 depto 12, no funciona el timbre \N MALE \N -34.5883839 -58.4344238 1 1896 \N \N +12354 2025-11-04 15:21:27.61037+00 2025-11-04 15:21:27.610383+00 f t Invitado Amar invitado-1762269686900@example.com 55555555 \N \N \N \N \N 60 \N \N \N +12537 2025-11-06 17:06:58.858261+00 2025-11-06 17:06:58.858273+00 f t Invitado Amar invitado-1762448818486@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12717 2025-11-08 17:10:23.509145+00 2025-11-08 17:10:23.509156+00 f t Invitado Amar invitado-1762621823467@example.com 55555555 \N \N \N \N \N 74 \N \N \N +12900 2025-11-10 20:17:13.31259+00 2025-11-10 20:17:13.312955+00 f t Invitado Amar invitado-1762805832584@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13082 2025-11-12 16:04:54.070055+00 2025-11-12 16:04:54.070068+00 f t Invitado Amar invitado-1762963493234@example.com 55555555 \N \N \N \N \N 43 \N \N \N +13254 2025-11-14 01:50:06.661078+00 2025-11-14 01:50:06.661089+00 f t Invitado Amar invitado-1763085006465@example.com 55555555 \N \N \N \N \N 147 \N \N \N +9995 2025-10-04 15:35:27.877284+00 2025-10-04 15:35:27.877293+00 f t Invitado Amar invitado-1759592022368@example.com 55555555 \N \N \N \N \N 49 \N \N \N +10178 2025-10-07 02:49:19.038617+00 2025-10-07 02:49:19.038627+00 f t Invitado Amar invitado-1759805357653@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13484 2025-11-17 12:43:49.81819+00 2025-11-17 12:43:49.818202+00 f t Invitado Amar invitado-1763383425186@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13688 2025-11-18 23:04:56.23478+00 2025-11-18 23:04:56.23479+00 f t Invitado Amar invitado-1763507096482@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13874 2025-11-20 04:55:13.667854+00 2025-11-20 04:55:13.667862+00 f t Invitado Amar invitado-1763614512195@example.com 55555555 \N \N \N \N \N 28 \N \N \N +10540 2025-10-12 14:43:39.968645+00 2025-10-12 14:43:39.968655+00 f t Invitado Amar invitado-1760280218830@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10722 2025-10-14 20:19:58.64145+00 2025-10-14 20:19:58.641459+00 f t Invitado Amar invitado-1760473198117@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10902 2025-10-16 23:21:56.708781+00 2025-10-16 23:21:56.708791+00 f t Invitado Amar invitado-1760656915894@example.com 55555555 \N \N \N \N \N 24 \N \N \N +11081 2025-10-19 15:48:53.363223+00 2025-10-19 15:48:53.363235+00 f t Romina Casco cascoibyme@gmail.com +541159573086 \N Avda Olazabal 4575 9 F \N \N -34.5731704 -58.4803878 29 \N \N \N +11265 2025-10-21 19:31:55.992319+00 2025-10-21 19:31:55.992328+00 f t Invitado Amar invitado-1761075115516@example.com 55555555 \N \N \N \N \N 61 \N \N \N +11444 2025-10-24 13:27:51.480374+00 2025-10-24 13:27:51.480383+00 f t Invitado Amar invitado-1761312471398@example.com 55555555 \N \N \N \N \N \N \N \N \N +11625 2025-10-27 18:00:19.44653+00 2025-10-27 18:00:19.446539+00 f t Invitado Amar invitado-1761588019094@example.com 55555555 \N \N \N \N \N 51 \N \N \N +11808 2025-10-29 04:36:47.29842+00 2025-10-29 04:36:47.29843+00 f t Invitado Amar invitado-1761712606845@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11991 2025-10-30 19:50:55.608228+00 2025-10-30 19:50:55.608237+00 f t Invitado Amar invitado-1761853853188@example.com 55555555 \N \N \N \N \N 20 \N \N \N +12174 2025-11-01 15:03:00.826813+00 2025-11-01 15:03:00.826821+00 f t Ezequiel Cohen ezecohen2@gmail.com +5491154828663 \N Av los bosques (rincon de milberg) 2100 Barrio la laguna, lote 55 \N \N -34.4291747 -58.5989627 22 1970 \N \N +14055 2025-11-21 16:07:21.167403+00 2025-11-21 16:07:21.167412+00 f t Luciano Lopez kradgger@gmail.com +542901471550 \N Blanco Encalada 3153 5 B \N MALE \N -34.5634265 -58.4663648 3 2224 \N \N +12355 2025-11-04 15:26:03.571306+00 2025-11-04 15:26:03.571315+00 f t Agustina Pizarro apizarrocm02@gmail.com +541166431734 \N Mario Bravo 740 2 K \N FEMALE \N -34.6010062 -58.4163393 23 2014 \N \N +12538 2025-11-06 17:35:08.185652+00 2025-11-06 17:35:08.185661+00 f t Invitado Amar invitado-1762450506777@example.com 55555555 \N \N \N \N \N 90 \N \N \N +10358 2025-10-09 18:30:08.547669+00 2025-10-09 18:30:08.54768+00 f t Celia Gabriela Pereira gptonsich@gmail.com 91158328521 \N Gascón 1258 Depto 6. No funciona el portero eléctrico \N FEMALE \N -34.5957721 -58.4231725 1 2061 \N \N +14235 2025-11-23 16:10:20.122962+00 2025-11-23 16:10:20.122971+00 f t Invitado Amar invitado-1763914219387@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12718 2025-11-08 17:12:40.603483+00 2025-11-08 17:12:40.603492+00 f t Stella Zapata smzapa1@gmail.com +541132010008 \N Olazabal 4797 4A \N \N -34.5746073 -58.4828123 29 2070 \N \N +12901 2025-11-10 20:17:58.730687+00 2025-11-10 20:17:58.730697+00 f t Invitado Amar invitado-1762805878884@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13083 2025-11-12 16:08:03.364402+00 2025-11-12 16:08:03.364411+00 f t Invitado Amar invitado-1762963682583@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14417 2025-11-25 00:36:04.964197+00 2025-11-25 00:36:04.964207+00 f t Sheila Cederbojm shei_15@hotmail.com +541167147355 \N Av corrientes 4949 10 d \N \N -34.6008621 -58.4353981 26 2256 \N \N +13255 2025-11-14 01:54:46.58604+00 2025-11-14 01:54:46.586048+00 f t Invitado Amar invitado-1763085284385@example.com 55555555 \N \N \N \N \N 161 \N \N \N +9996 2025-10-04 15:45:18.111209+00 2025-10-04 15:45:18.111217+00 f t Invitado Amar invitado-1759592717997@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10179 2025-10-07 02:50:53.244525+00 2025-10-07 02:50:53.244534+00 f t Invitado Amar invitado-1759805452056@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10359 2025-10-09 18:38:52.389817+00 2025-10-09 18:38:52.389826+00 f t Invitado Amar invitado-1760035131469@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10541 2025-10-12 15:24:31.499221+00 2025-10-12 15:24:31.49923+00 f t Invitado Amar invitado-1760282670230@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10723 2025-10-14 20:22:51.21574+00 2025-10-14 20:22:51.215751+00 f t Invitado Amar invitado-1760473371316@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10903 2025-10-16 23:22:25.72615+00 2025-10-16 23:22:25.72616+00 f t Invitado Amar invitado-1760656944807@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11082 2025-10-19 16:32:04.923434+00 2025-10-19 16:32:04.923444+00 f t Invitado Amar invitado-1760891524939@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11266 2025-10-21 19:34:44.856395+00 2025-10-21 19:34:44.856406+00 f t Invitado Amar invitado-1761075284021@example.com 55555555 \N \N \N \N \N 33 \N \N \N +11445 2025-10-24 13:33:44.926329+00 2025-10-24 13:33:44.926338+00 f t Invitado Amar invitado-1761312824567@example.com 55555555 \N \N \N \N \N 10 \N \N \N +11626 2025-10-27 18:12:55.920734+00 2025-10-27 18:12:55.920744+00 f t Invitado Amar invitado-1761588775266@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11809 2025-10-29 04:44:39.742492+00 2025-10-29 04:44:39.742502+00 f t Invitado Amar invitado-1761713078882@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11992 2025-10-30 20:01:09.971872+00 2025-10-30 20:01:09.971881+00 f t Invitado Amar invitado-1761854469848@example.com 55555555 \N \N \N \N \N 153 \N \N \N +13485 2025-11-17 12:44:47.018267+00 2025-11-17 12:44:47.018276+00 f t Invitado Amar invitado-1763383485879@example.com 55555555 \N \N \N \N \N 64 \N \N \N +13689 2025-11-18 23:16:55.836108+00 2025-11-18 23:16:55.836117+00 f t Invitado Amar invitado-1763507815352@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12175 2025-11-01 15:04:39.562682+00 2025-11-01 15:04:39.562692+00 f t kiaro koustas kiaro.koustas@gmail.com +541160597417 \N gervasio de posadas 3746 \N \N -34.6491815 -58.8023242 59 1971 \N \N +13875 2025-11-20 05:06:34.519687+00 2025-11-20 05:06:34.519697+00 f t Invitado Amar invitado-1763615194608@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14056 2025-11-21 16:09:09.379861+00 2025-11-21 16:09:09.379874+00 f t Invitado Amar invitado-1763741349132@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12356 2025-11-04 15:27:29.58236+00 2025-11-04 15:27:29.582371+00 f t Silvia Daud silvia_daud@hotmail.com +541149921710 \N Hubac 5120 2 \N \N -34.6591462 -58.4791082 64 2013 \N \N +12539 2025-11-06 18:04:28.94715+00 2025-11-06 18:04:28.947159+00 f t Invitado Amar invitado-1762452268568@example.com 55555555 \N \N \N \N \N 37 \N \N \N +12719 2025-11-08 17:15:24.528785+00 2025-11-08 17:15:24.528794+00 f t Invitado Amar invitado-1762622123447@example.com 55555555 \N \N \N \N \N 29 \N \N \N +12902 2025-11-10 20:19:13.368053+00 2025-11-10 20:19:13.368064+00 f t Invitado Amar invitado-1762805952558@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13084 2025-11-12 16:11:56.657914+00 2025-11-12 16:11:56.657923+00 f t Invitado Amar invitado-1762963916391@example.com 55555555 \N \N \N \N \N 155 \N \N \N +14236 2025-11-23 16:25:00.591036+00 2025-11-23 16:25:00.59105+00 f t Invitado Amar invitado-1763915099167@example.com 55555555 \N \N \N \N \N 71 \N \N \N +14418 2025-11-25 00:37:42.865932+00 2025-11-25 00:37:42.865942+00 f t Invitado Amar invitado-1764031062561@example.com 55555555 \N \N \N \N \N 73 \N \N \N +13256 2025-11-14 02:04:02.703246+00 2025-11-14 02:04:02.703256+00 f t Invitado Amar invitado-1763085841888@example.com 55555555 \N \N \N \N \N 10 \N \N \N +9997 2025-10-04 15:50:02.062898+00 2025-10-04 15:50:02.062913+00 f t Invitado Amar invitado-1759593001604@example.com 55555555 \N \N \N \N \N 64 \N \N \N +10180 2025-10-07 04:39:34.753958+00 2025-10-07 04:39:34.753967+00 f t Invitado Amar invitado-1759811974341@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10360 2025-10-09 19:13:18.478208+00 2025-10-09 19:13:18.478217+00 f t Invitado Amar invitado-1760037198059@example.com 55555555 \N \N \N \N \N 16 \N \N \N +10542 2025-10-12 15:30:39.778342+00 2025-10-12 15:30:39.778353+00 f t Invitado Amar invitado-1760283040342@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10724 2025-10-14 20:25:35.000014+00 2025-10-14 20:25:35.000027+00 f t Invitado Amar invitado-1760473534834@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10904 2025-10-16 23:26:58.567364+00 2025-10-16 23:26:58.567374+00 f t Invitado Amar invitado-1760657218036@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11083 2025-10-19 16:38:38.840956+00 2025-10-19 16:38:38.840965+00 f t Invitado Amar invitado-1760891918902@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11267 2025-10-21 19:39:57.48966+00 2025-10-21 19:39:57.489668+00 f t Invitado Amar invitado-1761075596611@example.com 55555555 \N \N \N \N \N \N \N \N \N +11446 2025-10-24 13:37:05.366106+00 2025-10-24 13:37:05.366115+00 f t Invitado Amar invitado-1761313023858@example.com 55555555 \N \N \N \N \N \N \N \N \N +11627 2025-10-27 18:14:33.930693+00 2025-10-27 18:14:33.930703+00 f t Invitado Amar invitado-1761588872861@example.com 55555555 \N \N \N \N \N 32 \N \N \N +11810 2025-10-29 04:53:57.741204+00 2025-10-29 04:53:57.741213+00 f t Invitado Amar invitado-1761713636340@example.com 55555555 \N \N \N \N \N 38 \N \N \N +11993 2025-10-30 20:02:24.660165+00 2025-10-30 20:02:24.660178+00 f t Invitado Amar invitado-1761854544717@example.com 55555555 \N \N \N \N \N 153 \N \N \N +12176 2025-11-01 15:05:57.869661+00 2025-11-01 15:05:57.869673+00 f t Invitado Amar invitado-1762009557628@example.com 55555555 \N \N \N \N \N 22 \N \N \N +12357 2025-11-04 15:34:36.329389+00 2025-11-04 15:34:36.329398+00 f t Invitado Amar invitado-1762270477043@example.com 55555555 \N \N \N \N \N 64 \N \N \N +7396 2025-08-27 23:19:03.38904+00 2025-08-27 23:19:03.389051+00 f t Paula mancardo Viotti koreanmakeupbsas@gmail.com 5491151401069 \N 25 de mayo 244 entre sarmiento y peron, piso 6 \N FEMALE 1985-12-12 -34.6049246 -58.3710191 13 1693 \N pviotti +12540 2025-11-06 18:18:47.080403+00 2025-11-06 18:18:47.080417+00 f t Invitado Amar invitado-1762453126679@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12720 2025-11-08 17:15:34.045811+00 2025-11-08 17:15:34.045822+00 f t Invitado Amar invitado-1762622132618@example.com 55555555 \N \N \N \N \N 25 \N \N \N +12903 2025-11-10 20:19:54.898341+00 2025-11-10 20:19:54.898716+00 f t Invitado Amar invitado-1762805994387@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13085 2025-11-12 16:13:41.347085+00 2025-11-12 16:13:41.347094+00 f t Invitado Amar invitado-1762964020884@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13486 2025-11-17 12:52:27.16626+00 2025-11-17 12:52:27.166267+00 f t Invitado Amar invitado-1763383946761@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13690 2025-11-18 23:18:36.983825+00 2025-11-18 23:18:36.983833+00 f t Invitado Amar invitado-1763507915682@example.com 55555555 \N \N \N \N \N 59 \N \N \N +13876 2025-11-20 09:08:34.165943+00 2025-11-20 09:08:34.165958+00 f t Invitado Amar invitado-1763629713624@example.com 55555555 \N \N \N \N \N 27 \N \N \N +14057 2025-11-21 16:12:08.903412+00 2025-11-21 16:12:08.903425+00 f t Invitado Amar invitado-1763741528442@example.com 55555555 \N \N \N \N \N 26 \N \N \N +14237 2025-11-23 16:59:34.842779+00 2025-11-23 16:59:34.842789+00 f t Invitado Amar invitado-1763917173351@example.com 55555555 \N \N \N \N \N 15 \N \N \N +14419 2025-11-25 00:45:48.011492+00 2025-11-25 00:45:48.011503+00 f t Invitado Amar invitado-1764031547513@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13257 2025-11-14 02:21:47.647642+00 2025-11-14 02:21:47.647654+00 f t Invitado Amar invitado-1763086907373@example.com 55555555 \N \N \N \N \N 3 \N \N \N +9998 2025-10-04 16:20:41.582839+00 2025-10-04 16:20:41.582848+00 f t Invitado Amar invitado-1759594841818@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10181 2025-10-07 04:47:57.929821+00 2025-10-07 04:47:57.929832+00 t t Invitado Amar invitado-1759812478363@example.com 55555555 \N \N \N \N \N 13 \N \N \N +13487 2025-11-17 12:54:49.53559+00 2025-11-17 12:54:49.5356+00 f t Invitado Amar invitado-1763384089067@example.com 55555555 \N \N \N \N \N 73 \N \N \N +10361 2025-10-09 19:20:23.957337+00 2025-10-09 19:20:23.957346+00 f t Melina Barbaro melinab85@gmail.com +541164059636 \N avenida Lafuente 490 \N \N -34.6360354 -58.4656695 4 \N \N \N +10543 2025-10-12 15:35:38.597994+00 2025-10-12 15:35:38.598006+00 f t Invitado Amar invitado-1760283338183@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10725 2025-10-14 20:29:43.675526+00 2025-10-14 20:29:43.675534+00 f t Invitado Amar invitado-1760473782278@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10905 2025-10-16 23:31:00.951+00 2025-10-16 23:31:00.951011+00 f t Invitado Amar invitado-1760657460553@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11084 2025-10-19 16:50:31.4273+00 2025-10-19 16:50:31.427308+00 f t Invitado Amar invitado-1760892631045@example.com 55555555 \N \N \N \N \N 36 \N \N \N +13691 2025-11-18 23:19:25.05229+00 2025-11-18 23:19:25.052302+00 f t Invitado Amar invitado-1763507964770@example.com 55555555 \N \N \N \N \N 10 \N \N \N +11268 2025-10-21 19:45:59.145369+00 2025-10-21 19:45:59.145378+00 f t Jorge Abálsamo jorabal56@gmail.com 5491166351917 \N Olazabal 5578 1 A, Entre calles Ceretti y Burela, \N MALE \N -34.5797526 -58.491297 29 1897 \N \N +13877 2025-11-20 09:10:00.753574+00 2025-11-20 09:10:00.753583+00 f t Invitado Amar invitado-1763629800334@example.com 55555555 \N \N \N \N \N 49 \N \N \N +14058 2025-11-21 16:14:32.303026+00 2025-11-21 16:14:32.303034+00 f t Giuliana Leocata giuli.leocata@gmail.com +541139348717 \N Pasaje craig 719 1B \N \N \N \N 14 2225 \N \N +14238 2025-11-23 17:00:21.395689+00 2025-11-23 17:00:21.395702+00 f t Invitado Amar invitado-1763917220840@example.com 55555555 \N \N \N \N \N 155 \N \N \N +14420 2025-11-25 00:49:45.043206+00 2025-11-25 00:49:45.043216+00 f t Invitado Amar invitado-1764031784617@example.com 55555555 \N \N \N \N \N 162 \N \N \N +11628 2025-10-27 18:32:16.436434+00 2025-10-27 18:32:16.436446+00 f t Invitado Amar invitado-1761589935865@example.com 55555555 \N \N \N \N \N 156 \N \N \N +11811 2025-10-29 06:41:12.917433+00 2025-10-29 06:41:12.917445+00 f t Invitado Amar invitado-1761720072062@example.com 55555555 \N \N \N \N \N 7 \N \N \N +11447 2025-10-24 13:59:26.245842+00 2025-10-24 13:59:26.245852+00 f t Hector Peretti hector.peretti@hotmail.com 5491140269744 \N Antartida Argentina 3629 \N \N MALE \N -34.5226757 -58.5342891 59 1906 \N \N +11994 2025-10-30 20:07:00.858427+00 2025-10-30 20:07:00.858436+00 f t Invitado Amar invitado-1761854820407@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12177 2025-11-01 15:09:46.527548+00 2025-11-01 15:09:46.527557+00 f t Invitado Amar invitado-1762009786389@example.com 55555555 \N \N \N \N \N 59 \N \N \N +12358 2025-11-04 15:34:37.886798+00 2025-11-04 15:34:37.886807+00 f t Invitado Amar invitado-1762270478011@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12541 2025-11-06 18:23:26.565191+00 2025-11-06 18:23:26.5652+00 f t Invitado Amar invitado-1762453405572@example.com 55555555 \N \N \N \N \N 17 \N \N \N +12721 2025-11-08 17:21:31.066124+00 2025-11-08 17:21:31.066133+00 f t Carlos alberto Raimondo craimondo2014@gmail.com 91164218957 \N campana 1235 \N \N MALE \N -34.6101229 -58.4897109 17 2072 \N \N +12904 2025-11-10 20:21:08.556144+00 2025-11-10 20:21:08.556157+00 f t Invitado Amar invitado-1762806067580@example.com 55555555 \N \N \N \N \N 53 \N \N \N +13086 2025-11-12 16:15:19.159737+00 2025-11-12 16:15:19.159746+00 f t Invitado Amar invitado-1762964118927@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13258 2025-11-14 02:25:03.637566+00 2025-11-14 02:25:03.63758+00 f t Invitado Amar invitado-1763087103563@example.com 55555555 \N \N \N \N \N 3 \N \N \N +9999 2025-10-04 16:58:12.272567+00 2025-10-04 16:58:12.272576+00 f t Invitado Amar invitado-1759597093413@example.com 55555555 \N \N \N \N \N 46 \N \N \N +13488 2025-11-17 12:57:09.075625+00 2025-11-17 12:57:09.075634+00 f t Invitado Amar invitado-1763384228008@example.com 55555555 \N \N \N \N \N 113 \N \N \N +13692 2025-11-18 23:24:08.003324+00 2025-11-18 23:24:08.003336+00 f t Invitado Amar invitado-1763508247190@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13878 2025-11-20 09:54:13.93267+00 2025-11-20 09:54:13.93268+00 f t Invitado Amar invitado-1763632452357@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10362 2025-10-09 20:00:52.964374+00 2025-10-09 20:00:52.964383+00 f t Invitado Amar invitado-1760040053047@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10544 2025-10-12 15:54:12.451944+00 2025-10-12 15:54:12.451956+00 f t Invitado Amar invitado-1760284451842@example.com 55555555 \N \N \N \N \N 13 \N \N \N +10906 2025-10-16 23:32:55.033004+00 2025-10-16 23:32:55.033018+00 f t Invitado Amar invitado-1760657574523@example.com 55555555 \N \N \N \N \N 62 \N \N \N +9310 2025-09-25 04:39:10+00 2025-09-25 04:39:10+00 f t Franco Krecul fkrecul@gmail.com +541164269342 \N Teniente General Juan Domingo Perón 1605 5-16 \N MALE \N -34.6066089 -58.3894315 13 1857 \N fkrecul +11085 2025-10-19 18:03:07.325559+00 2025-10-19 18:03:07.325568+00 f t Invitado Amar invitado-1760896986867@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14059 2025-11-21 16:25:52.90101+00 2025-11-21 16:25:52.901024+00 f t Invitado Amar invitado-1763742352388@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11269 2025-10-21 19:53:26.756696+00 2025-10-21 19:53:26.756708+00 f t Alejandra Gonzalez algon.asistente@gmail.com 5491152202412 \N Billinghurst 2138 7B \N \N \N -34.5825957 -58.4032544 1 1898 \N \N +11448 2025-10-24 14:34:49.129949+00 2025-10-24 14:34:49.129959+00 f t Invitado Amar invitado-1761316489765@example.com 55555555 \N \N \N \N \N 19 \N \N \N +11629 2025-10-27 18:34:29.49808+00 2025-10-27 18:34:29.498089+00 f t Invitado Amar invitado-1761590067447@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11812 2025-10-29 10:33:52.062946+00 2025-10-29 10:33:52.062955+00 f t Invitado Amar invitado-1761734031390@example.com 55555555 \N \N \N \N \N 80 \N \N \N +11995 2025-10-30 20:07:22.909468+00 2025-10-30 20:07:22.909478+00 f t Invitado Amar invitado-1761854842473@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12178 2025-11-01 15:25:22.758757+00 2025-11-01 15:25:22.758765+00 f t Invitado Amar invitado-1762010722036@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12359 2025-11-04 15:36:05.716399+00 2025-11-04 15:36:05.716409+00 f t Invitado Amar invitado-1762270564985@example.com 55555555 \N \N \N \N \N 71 \N \N \N +7277 2025-08-25 17:13:37.203445+00 2025-08-25 17:13:37.203456+00 f t Griselda Garibotti griludi62@gmail.com 5491154154882 \N Montañeses 2548 1 c, entre Monroe y Roosevelt \N FEMALE \N -34.5533289 -58.4525022 3 1678 \N ggariboti +12542 2025-11-06 18:26:11.913177+00 2025-11-06 18:26:11.913199+00 f t Invitado Amar invitado-1762453570470@example.com 55555555 \N \N \N \N \N 17 \N \N \N +12722 2025-11-08 17:42:31.275714+00 2025-11-08 17:42:31.275723+00 f t Invitado Amar invitado-1762623750485@example.com 55555555 \N \N \N \N \N \N \N \N \N +12905 2025-11-10 20:22:25.436161+00 2025-11-10 20:22:25.436173+00 f t Invitado Amar invitado-1762806142330@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13087 2025-11-12 16:19:10.218008+00 2025-11-12 16:19:10.218017+00 f t Invitado Amar invitado-1762964349736@example.com 55555555 \N \N \N \N \N 32 \N \N \N +14239 2025-11-23 17:02:46.788821+00 2025-11-23 17:02:46.788832+00 f t Invitado Amar invitado-1763917365646@example.com 55555555 \N \N \N \N \N 15 \N \N \N +14421 2025-11-25 00:53:19.374862+00 2025-11-25 00:53:19.374872+00 f t Invitado Amar invitado-1764031998690@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13259 2025-11-14 02:29:48.045871+00 2025-11-14 02:29:48.045884+00 f t Invitado Amar invitado-1763087387467@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13489 2025-11-17 12:58:25.687688+00 2025-11-17 12:58:25.687697+00 f t Invitado Amar invitado-1763384304616@example.com 55555555 \N \N \N \N \N 8 \N \N \N +10000 2025-10-04 17:08:11.341339+00 2025-10-04 17:08:11.341348+00 f t gisele morales morales.gisele@gmail.com 91156011818 \N Yerbal 1932 5to C \N FEMALE 1983-05-18 -34.6258136 -58.457778 4 \N \N \N +10182 2025-10-07 05:34:50.691669+00 2025-10-07 05:34:50.69168+00 f t Invitado Amar invitado-1759815290294@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10363 2025-10-09 20:02:36.80574+00 2025-10-09 20:02:36.805753+00 f t Invitado Amar invitado-1760040156685@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10545 2025-10-12 16:10:48.651915+00 2025-10-12 16:10:48.651924+00 f t Invitado Amar invitado-1760285448339@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10726 2025-10-14 20:46:19.796269+00 2025-10-14 20:46:19.79628+00 f t Deborah Alaña Debo.alana@gmail.com 5491160260685 \N Dr Pedro Ignacio Rivera 4076 Piso 3 Depto 4 (Timbre Ok) \N FEMALE \N -34.5656598 -58.4766848 45 \N \N \N +10907 2025-10-16 23:35:37.44118+00 2025-10-16 23:35:37.441191+00 f t Invitado Amar invitado-1760657737293@example.com 55555555 \N \N \N \N \N 62 \N \N \N +13693 2025-11-18 23:27:11.538088+00 2025-11-18 23:27:11.538099+00 f t Invitado Amar invitado-1763508431083@example.com 55555555 \N \N \N \N \N 89 \N \N \N +11086 2025-10-19 18:29:11.104115+00 2025-10-19 18:29:11.104126+00 f t Miriam Martin camilabermudez95@gmail.com +541126471169 \N Gascon 482 \N \N -34.7477593 -58.388255 72 \N \N \N +11270 2025-10-21 19:58:08.423273+00 2025-10-21 19:58:08.42328+00 f t Invitado Amar invitado-1761076687183@example.com 55555555 \N \N \N \N \N \N \N \N \N +11449 2025-10-24 14:58:07.790769+00 2025-10-24 14:58:07.790779+00 f t Invitado Amar invitado-1761317887255@example.com 55555555 \N \N \N \N \N 32 \N \N \N +11630 2025-10-27 18:38:09.392183+00 2025-10-27 18:38:09.392192+00 f t Invitado Amar invitado-1761590288638@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11813 2025-10-29 10:35:50.973749+00 2025-10-29 10:35:50.97376+00 f t Invitado Amar invitado-1761734148804@example.com 55555555 \N \N \N \N \N 44 \N \N \N +11996 2025-10-30 20:08:25.113869+00 2025-10-30 20:08:25.113883+00 f t Invitado Amar invitado-1761854904264@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12179 2025-11-01 15:30:43.481671+00 2025-11-01 15:30:43.481679+00 f t Invitado Amar invitado-1762011043161@example.com 55555555 \N \N \N \N \N \N \N \N \N +12360 2025-11-04 15:57:14.685432+00 2025-11-04 15:57:14.685443+00 f t Invitado Amar invitado-1762271834768@example.com 55555555 \N \N \N \N \N 73 \N \N \N +12543 2025-11-06 18:29:18.188484+00 2025-11-06 18:29:18.188493+00 f t Invitado Amar invitado-1762453757745@example.com 55555555 \N \N \N \N \N 24 \N \N \N +3430 2025-06-26 17:34:39.917313+00 2025-06-26 17:34:39.917327+00 f t Daiana Cabrera daianacabrera2026@gmail.com +541151162332 \N virgilio 95 casa \N FEMALE \N -34.6368364 -58.5009829 65 1234 \N dcabrera +12906 2025-11-10 20:27:10.827524+00 2025-11-10 20:27:10.827532+00 f t Invitado Amar invitado-1762806428378@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13879 2025-11-20 10:00:35.698944+00 2025-11-20 10:00:35.698958+00 f t Invitado Amar invitado-1763632834889@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13088 2025-11-12 16:31:41.13778+00 2025-11-12 16:31:41.13779+00 f t Eugenia Fernández Hayón eugefernandezhayon@gmail.com 5491162699799 \N Acassuso 2050 \N \N FEMALE \N -34.4579219 -58.524145 155 2116 \N \N +14060 2025-11-21 16:27:30.544959+00 2025-11-21 16:27:30.544968+00 f t Invitado Amar invitado-1763742449531@example.com 55555555 \N \N \N \N \N 25 \N \N \N +14240 2025-11-23 17:10:26.788715+00 2025-11-23 17:10:26.788738+00 f t Invitado Amar invitado-1763917825042@example.com 55555555 \N \N \N \N \N 32 \N \N \N +14422 2025-11-25 01:01:29.589461+00 2025-11-25 01:01:29.589469+00 f t Sheila Cederbojm sheilarina234@gmail.com +541167147355 \N Av corrientes 4949 10 d \N \N -34.6008621 -58.4353981 26 2257 \N \N +13260 2025-11-14 02:31:08.092107+00 2025-11-14 02:31:08.092118+00 f t Invitado Amar invitado-1763087467684@example.com 55555555 \N \N \N \N \N 68 \N \N \N +10001 2025-10-04 17:44:25.204989+00 2025-10-04 17:44:25.204999+00 f t Invitado Amar invitado-1759599863967@example.com 55555555 \N \N \N \N \N 41 \N \N \N +10183 2025-10-07 06:06:20.061266+00 2025-10-07 06:06:20.061278+00 f t Invitado Amar invitado-1759817179446@example.com 55555555 \N \N \N \N \N 50 \N \N \N +10364 2025-10-09 20:12:34.240743+00 2025-10-09 20:12:34.240756+00 f t Invitado Amar invitado-1760040753863@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10546 2025-10-12 16:22:03.938961+00 2025-10-12 16:22:03.93897+00 f t Invitado Amar invitado-1760286123451@example.com 55555555 \N \N \N \N \N 17 \N \N \N +10727 2025-10-14 20:55:28.723182+00 2025-10-14 20:55:28.72319+00 f t Invitado Amar invitado-1760475328244@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10908 2025-10-16 23:39:29.814942+00 2025-10-16 23:39:29.814951+00 f t Invitado Amar invitado-1760657969427@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11087 2025-10-19 18:52:17.235504+00 2025-10-19 18:52:17.235513+00 f t Invitado Amar invitado-1760899935582@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11271 2025-10-21 20:02:02.708315+00 2025-10-21 20:02:02.708324+00 f t Invitado Amar invitado-1761076921503@example.com 55555555 \N \N \N \N \N \N \N \N \N +11450 2025-10-24 15:14:43.618588+00 2025-10-24 15:14:43.618597+00 f t Invitado Amar invitado-1761318882951@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11631 2025-10-27 18:56:32.558423+00 2025-10-27 18:56:32.558434+00 f t Invitado Amar invitado-1761591391811@example.com 55555555 \N \N \N \N \N 62 \N \N \N +11814 2025-10-29 10:53:28.321744+00 2025-10-29 10:53:28.321753+00 f t Invitado Amar invitado-1761735207887@example.com 55555555 \N \N \N \N \N 77 \N \N \N +11997 2025-10-30 20:12:47.558253+00 2025-10-30 20:12:47.558265+00 t t Invitado Amar invitado-1761855167494@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12180 2025-11-01 15:45:07.517153+00 2025-11-01 15:45:07.517162+00 f t Invitado Amar invitado-1762011907303@example.com 55555555 \N \N \N \N \N 19 \N \N \N +4512 2025-07-14 02:25:51.094786+00 2025-07-14 02:25:51.094795+00 f t Fernando Skiarski ferskiarski@gmail.com +5491133237478 \N Deheza 1880 Casa. \N MALE \N -34.5389878 -58.4684776 25 1365 \N fskiarski +13694 2025-11-18 23:52:37.293933+00 2025-11-18 23:52:37.293944+00 f t Invitado Amar invitado-1763509957678@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12723 2025-11-08 18:07:09.854629+00 2025-11-08 18:07:09.854642+00 f t Daniel Lucas danielucastefano@gmail.com +541138293724 \N Rafael Castillo 585 Casa con reja y puerta negras \N \N \N \N 157 2073 \N \N +13880 2025-11-20 10:06:43.452423+00 2025-11-20 10:06:43.452433+00 f t Invitado Amar invitado-1763633202247@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12361 2025-11-04 16:16:38.515533+00 2025-11-04 16:16:38.515543+00 f t Daniel De Cruz ddecruz3@gmail.com 5491169380655 \N Avda. San Juan 1490 1o A \N MALE \N \N \N 60 2074 \N \N +14061 2025-11-21 16:29:34.857821+00 2025-11-21 16:29:34.857833+00 f t Invitado Amar invitado-1763742574099@example.com 55555555 \N \N \N \N \N 25 \N \N \N +12907 2025-11-10 20:40:04.735783+00 2025-11-10 20:40:04.735799+00 f t Constanza Di luigi cdilui@protonmail.com +541169722735 \N Carlos Pellegrini 1079 14D \N \N -34.5988381 -58.381284 37 2096 \N \N +13089 2025-11-12 16:33:33.720895+00 2025-11-12 16:33:33.720904+00 f t Invitado Amar invitado-1762965212263@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14241 2025-11-23 17:13:12.100874+00 2025-11-23 17:13:12.100888+00 f t Matías Chade matiasadrian161@gmail.com +541166895930 \N Chacabuco 1317 H \N \N -34.6236482 -58.3756083 15 2243 \N \N +13490 2025-11-17 13:03:40.080787+00 2025-11-17 13:03:40.080795+00 f t Nicole Figueroa nicole1212figueroa@gmail.com +56950198695 \N tagle 2772 \N \N FEMALE \N -34.5813026 -58.39859 1 2167 \N \N +14423 2025-11-25 01:04:50.971801+00 2025-11-25 01:04:50.971811+00 f t Invitado Amar invitado-1764032690877@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13261 2025-11-14 03:20:05.224597+00 2025-11-14 03:20:05.224611+00 f t Invitado Amar invitado-1763090403702@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10002 2025-10-04 17:58:13.269291+00 2025-10-04 17:58:13.2693+00 f t Invitado Amar invitado-1759600692480@example.com 55555555 \N \N \N \N \N 71 \N \N \N +13491 2025-11-17 13:13:10.096794+00 2025-11-17 13:13:10.096803+00 f t Invitado Amar invitado-1763385537491@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13695 2025-11-18 23:53:50.757955+00 2025-11-18 23:53:50.757963+00 f t Invitado Amar invitado-1763510030311@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10184 2025-10-07 06:07:38.682543+00 2025-10-07 06:07:38.682586+00 f t Felicitas Vazquez moras felivazquezm@gmail.com +541124058981 \N Federico Lacroze 1817 4 a \N FEMALE \N -34.5827512 -58.4526056 3 \N \N \N +10365 2025-10-09 20:13:45.372996+00 2025-10-09 20:13:45.373005+00 f t Invitado Amar invitado-1760040824589@example.com 55555555 \N \N \N \N \N 11 \N \N \N +10547 2025-10-12 16:49:31.677015+00 2025-10-12 16:49:31.677024+00 f t Invitado Amar invitado-1760287771303@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10728 2025-10-14 21:06:30.709689+00 2025-10-14 21:06:30.709698+00 f t Invitado Amar invitado-1760475990761@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10909 2025-10-17 00:04:32.335934+00 2025-10-17 00:04:32.335944+00 f t Invitado Amar invitado-1760659470842@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11088 2025-10-19 18:54:11.827694+00 2025-10-19 18:54:11.827705+00 f t Invitado Amar invitado-1760900049852@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11272 2025-10-21 20:21:32.481773+00 2025-10-21 20:21:32.481782+00 f t Invitado Amar invitado-1761078092101@example.com 55555555 \N \N \N \N \N 7 \N \N \N +11451 2025-10-24 15:24:11.741603+00 2025-10-24 15:24:11.741615+00 f t Invitado Amar invitado-1761319451065@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13881 2025-11-20 11:17:35.260064+00 2025-11-20 11:17:35.260073+00 f t Invitado Amar invitado-1763637455057@example.com 55555555 \N \N \N \N \N 51 \N \N \N +11632 2025-10-27 19:06:31.057985+00 2025-10-27 19:06:31.057993+00 f t lucas gustavo zecchin LUCAS.ZECCHIN@HOTMAIL.COM.AR 5491168675612 \N Olaguer virrey y feliu 5194 entre natalio querido y posadas, esto es munro Vicente lopez es una casa gris, con puerta negra sin timbre, de lo preferible llamar a mi celular para saber si esta cerca \N MALE 1991-08-14 \N \N 59 1916 \N \N +11815 2025-10-29 11:22:07.105908+00 2025-10-29 11:22:07.105917+00 f t Invitado Amar invitado-1761736926396@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11998 2025-10-30 20:24:21.500512+00 2025-10-30 20:24:21.50052+00 f t Invitado Amar invitado-1761855861380@example.com 55555555 \N \N \N \N \N 12 \N \N \N +12181 2025-11-01 16:00:08.081501+00 2025-11-01 16:00:08.081514+00 f t Invitado Amar invitado-1762012807458@example.com 55555555 \N \N \N \N \N 77 \N \N \N +12362 2025-11-04 16:40:42.778243+00 2025-11-04 16:40:42.778252+00 f t Invitado Amar invitado-1762274441792@example.com 55555555 \N \N \N \N \N 13 \N \N \N +12544 2025-11-06 18:46:30.470996+00 2025-11-06 18:46:30.471004+00 f t Invitado Amar invitado-1762454790068@example.com 55555555 \N \N \N \N \N 20 \N \N \N +12724 2025-11-08 18:18:30.547804+00 2025-11-08 18:18:30.547816+00 f t Invitado Amar invitado-1762625910134@example.com 55555555 \N \N \N \N \N 58 \N \N \N +12908 2025-11-10 20:44:17.551175+00 2025-11-10 20:44:17.551187+00 f t Invitado Amar invitado-1762807456719@example.com 55555555 \N \N \N \N \N 13 \N \N \N +13090 2025-11-12 16:42:40.473199+00 2025-11-12 16:42:40.47321+00 f t Invitado Amar invitado-1762965760162@example.com 55555555 \N \N \N \N \N 89 \N \N \N +14062 2025-11-21 16:38:15.418957+00 2025-11-21 16:38:15.418966+00 f t Invitado Amar invitado-1763743094659@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14242 2025-11-23 17:13:53.840049+00 2025-11-23 17:13:53.840058+00 f t Invitado Amar invitado-1763918033422@example.com 55555555 \N \N \N \N \N 32 \N \N \N +14424 2025-11-25 01:11:18.383961+00 2025-11-25 01:11:18.383971+00 f t Invitado Amar invitado-1764033077969@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10003 2025-10-04 18:39:34.85431+00 2025-10-04 18:39:34.854318+00 f t Invitado Amar invitado-1759603172774@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10185 2025-10-07 06:16:24.282508+00 2025-10-07 06:16:24.282516+00 f t Invitado Amar invitado-1759817783701@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10366 2025-10-09 20:18:17.120056+00 2025-10-09 20:18:17.120065+00 f t Invitado Amar invitado-1760041097016@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10548 2025-10-12 16:52:23.347582+00 2025-10-12 16:52:23.347591+00 f t Invitado Amar invitado-1760287942961@example.com 55555555 \N \N \N \N \N 69 \N \N \N +10729 2025-10-14 21:24:18.75105+00 2025-10-14 21:24:18.75106+00 f t Invitado Amar invitado-1760477058253@example.com 55555555 \N \N \N \N \N 88 \N \N \N +10910 2025-10-17 00:04:49.180215+00 2025-10-17 00:04:49.180224+00 f t Invitado Amar invitado-1760659486719@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11089 2025-10-19 19:15:10.882538+00 2025-10-19 19:15:10.88256+00 f t Invitado Amar invitado-1760901310064@example.com 55555555 \N \N \N \N \N 72 \N \N \N +11273 2025-10-21 20:28:16.408172+00 2025-10-21 20:28:16.408183+00 f t Invitado Amar invitado-1761078495986@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11452 2025-10-24 15:26:47.056655+00 2025-10-24 15:26:47.056663+00 f t Invitado Amar invitado-1761319606555@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11633 2025-10-27 19:42:59.879051+00 2025-10-27 19:42:59.879065+00 f t Invitado Amar invitado-1761594179096@example.com 55555555 \N \N \N \N \N 12 \N \N \N +11816 2025-10-29 11:54:12.164772+00 2025-10-29 11:54:12.164782+00 f t Invitado Amar invitado-1761738851437@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11999 2025-10-30 20:25:12.131245+00 2025-10-30 20:25:12.131254+00 f t Invitado Amar invitado-1761855912450@example.com 55555555 \N \N \N \N \N 12 \N \N \N +12182 2025-11-01 16:00:22.014121+00 2025-11-01 16:00:22.01413+00 f t Invitado Amar invitado-1762012819113@example.com 55555555 \N \N \N \N \N 47 \N \N \N +12363 2025-11-04 16:42:27.837825+00 2025-11-04 16:42:27.837837+00 f t Invitado Amar invitado-1762274547387@example.com 55555555 \N \N \N \N \N 13 \N \N \N +12545 2025-11-06 19:11:36.6994+00 2025-11-06 19:11:36.699409+00 f t Invitado Amar invitado-1762456296274@example.com 55555555 \N \N \N \N \N 5 \N \N \N +12725 2025-11-08 18:23:19.488992+00 2025-11-08 18:23:19.489001+00 f t Invitado Amar invitado-1762626199049@example.com 55555555 \N \N \N \N \N 157 \N \N \N +12909 2025-11-10 20:44:20.778744+00 2025-11-10 20:44:20.778753+00 f t Invitado Amar invitado-1762807460270@example.com 55555555 \N \N \N \N \N 37 \N \N \N +13091 2025-11-12 16:45:16.206907+00 2025-11-12 16:45:16.206915+00 f t Invitado Amar invitado-1762965916116@example.com 55555555 \N \N \N \N \N 89 \N \N \N +13262 2025-11-14 03:21:23.253391+00 2025-11-14 03:21:23.2534+00 f t Paola Furtado paolaveronicafurtado@gmail.com +542901613953 \N Uriarte 1359 1 b \N FEMALE \N -34.589117 -58.4344458 1 2142 \N \N +13492 2025-11-17 13:13:10.828477+00 2025-11-17 13:13:10.828486+00 f t Invitado Amar invitado-1763385188548@example.com 55555555 \N \N \N \N \N 11 \N \N \N +13696 2025-11-18 23:55:42.005805+00 2025-11-18 23:55:42.005815+00 f t Invitado Amar invitado-1763510142936@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13882 2025-11-20 11:19:19.151056+00 2025-11-20 11:19:19.151065+00 f t Claudia Molinari claudia_mol67@yahoo.com.ar +541139119373 \N Estado Plurinacional de Bolivia 4775 2 \N FEMALE \N -34.6289695 -58.4658139 51 2205 \N \N +14063 2025-11-21 16:42:08.768039+00 2025-11-21 16:42:08.768048+00 f t Invitado Amar invitado-1763743326616@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14243 2025-11-23 18:11:15.291542+00 2025-11-23 18:11:15.291556+00 f t Invitado Amar invitado-1763921474760@example.com 55555555 \N \N \N \N \N 89 \N \N \N +14425 2025-11-25 01:16:10.932502+00 2025-11-25 01:16:10.932514+00 f t Invitado Amar invitado-1764033369518@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13263 2025-11-14 03:24:16.329825+00 2025-11-14 03:24:16.329833+00 f t Invitado Amar invitado-1763090655093@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10004 2025-10-04 18:40:25.130743+00 2025-10-04 18:40:25.130752+00 f t Invitado Amar invitado-1759603223548@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10186 2025-10-07 09:46:09.032016+00 2025-10-07 09:46:09.032027+00 f t Invitado Amar invitado-1759830368527@example.com 55555555 \N \N \N \N \N 21 \N \N \N +10367 2025-10-09 20:29:08.092043+00 2025-10-09 20:29:08.092051+00 f t Invitado Amar invitado-1760041747653@example.com 55555555 \N \N \N \N \N 65 \N \N \N +10549 2025-10-12 16:58:11.645011+00 2025-10-12 16:58:11.64502+00 f t Invitado Amar invitado-1760288291202@example.com 55555555 \N \N \N \N \N 31 \N \N \N +10730 2025-10-14 22:17:10.553652+00 2025-10-14 22:17:10.553661+00 f t Invitado Amar invitado-1760480230028@example.com 55555555 \N \N \N \N \N 59 \N \N \N +10911 2025-10-17 00:10:40.056771+00 2025-10-17 00:10:40.05678+00 f t Claudia Suarez Mariacl.suarez@bue.edu.ar 5491124511512 \N Misiones 393. 5 B \N \N \N -31.3929082 -57.9590607 23 \N \N \N +11090 2025-10-19 20:30:19.992232+00 2025-10-19 20:30:19.992241+00 f t Invitado Amar invitado-1760905817256@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11274 2025-10-21 20:33:39.821108+00 2025-10-21 20:33:39.821118+00 f t Invitado Amar invitado-1761078819376@example.com 55555555 \N \N \N \N \N 55 \N \N \N +11453 2025-10-24 15:53:35.636286+00 2025-10-24 15:53:35.636294+00 f t Invitado Amar invitado-1761321214645@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11634 2025-10-27 19:57:07.087777+00 2025-10-27 19:57:07.087788+00 f t Invitado Amar invitado-1761595026442@example.com 55555555 \N \N \N \N \N 21 \N \N \N +11817 2025-10-29 12:00:12.741894+00 2025-10-29 12:00:12.741909+00 f t Invitado Amar invitado-1761739211427@example.com 55555555 \N \N \N \N \N 10 \N \N \N +12000 2025-10-30 20:46:38.672811+00 2025-10-30 20:46:38.672821+00 f t Invitado Amar invitado-1761857198871@example.com 55555555 \N \N \N \N \N 84 \N \N \N +12183 2025-11-01 16:07:59.600858+00 2025-11-01 16:07:59.600866+00 f t Invitado Amar invitado-1762013279111@example.com 55555555 \N \N \N \N \N 38 \N \N \N +13493 2025-11-17 14:14:01.558547+00 2025-11-17 14:14:01.558558+00 f t Invitado Amar invitado-1763388840425@example.com 55555555 \N \N \N \N \N 52 \N \N \N +12364 2025-11-04 17:08:27.513345+00 2025-11-04 17:08:27.513353+00 f t cristian callozzo cristian.callozzo@gmail.com 91133825454 \N Charcas 4070 12 D \N MALE \N -34.5856571 -58.4206358 1 2016 \N \N +13697 2025-11-18 23:58:16.660593+00 2025-11-18 23:58:16.660602+00 f t Invitado Amar invitado-1763510296188@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12546 2025-11-06 19:57:12.095105+00 2025-11-06 19:57:12.095116+00 f t Nuria Natalia Olmos manuelasaenz2505@gmail.com 5491163664988 \N Adolfo Alsina 3283 1 B, no anda el timbre \N FEMALE \N -34.6132528 -58.4127538 18 2052 \N \N +12726 2025-11-08 18:24:55.972528+00 2025-11-08 18:24:55.972536+00 f t Invitado Amar invitado-1762626295439@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12910 2025-11-10 20:50:09.126397+00 2025-11-10 20:50:09.126412+00 f t Invitado Amar invitado-1762807808580@example.com 55555555 \N \N \N \N \N 46 \N \N \N +13092 2025-11-12 16:59:24.534353+00 2025-11-12 16:59:24.534362+00 f t Invitado Amar invitado-1762966764311@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13883 2025-11-20 11:26:27.928116+00 2025-11-20 11:26:27.928124+00 f t Invitado Amar invitado-1763637987979@example.com 55555555 \N \N \N \N \N 51 \N \N \N +14064 2025-11-21 16:49:14.137403+00 2025-11-21 16:49:14.137412+00 f t Invitado Amar invitado-1763743753509@example.com 55555555 \N \N \N \N \N 13 \N \N \N +14244 2025-11-23 18:22:34.257928+00 2025-11-23 18:22:34.257939+00 f t Invitado Amar invitado-1763922153614@example.com 55555555 \N \N \N \N \N 12 \N \N \N +14426 2025-11-25 01:30:07.56434+00 2025-11-25 01:30:07.564354+00 f t Invitado Amar invitado-1764034230992@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13264 2025-11-14 06:58:53.278351+00 2025-11-14 06:58:53.27836+00 f t Invitado Amar invitado-1763103532304@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10005 2025-10-04 18:45:43.758346+00 2025-10-04 18:45:43.758356+00 f t Invitado Amar invitado-1759603544381@example.com 55555555 \N \N \N \N \N 12 \N \N \N +10187 2025-10-07 10:21:27.064238+00 2025-10-07 10:21:27.064247+00 f t Invitado Amar invitado-1759832486573@example.com 55555555 \N \N \N \N \N 91 \N \N \N +10368 2025-10-09 20:42:57.743748+00 2025-10-09 20:42:57.743758+00 f t Invitado Amar invitado-1760042575512@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10550 2025-10-12 17:00:39.118837+00 2025-10-12 17:00:39.118845+00 f t Invitado Amar invitado-1760288438448@example.com 55555555 \N \N \N \N \N 35 \N \N \N +10731 2025-10-14 22:55:41.2706+00 2025-10-14 22:55:41.270612+00 f t Invitado Amar invitado-1760482540804@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10912 2025-10-17 00:30:26.038313+00 2025-10-17 00:30:26.038322+00 f t Invitado Amar invitado-1760661024160@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11091 2025-10-19 21:11:29.05928+00 2025-10-19 21:11:29.059289+00 f t Invitado Amar invitado-1760908288660@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11275 2025-10-21 20:35:24.6096+00 2025-10-21 20:35:24.60963+00 f t Invitado Amar invitado-1761078924439@example.com 55555555 \N \N \N \N \N 91 \N \N \N +11454 2025-10-24 16:01:39.131459+00 2025-10-24 16:01:39.131466+00 f t Invitado Amar invitado-1761321698089@example.com 55555555 \N \N \N \N \N 41 \N \N \N +13494 2025-11-17 14:31:12.220635+00 2025-11-17 14:31:12.220644+00 f t Invitado Amar invitado-1763389871453@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11635 2025-10-27 20:05:08.235733+00 2025-10-27 20:05:08.235748+00 f t Estefania Piano estefania.piano@gmail.com +541155686029 \N El plumerillo 46 \N \N -34.7289379 -58.4230409 72 \N \N \N +13698 2025-11-19 00:32:45.214904+00 2025-11-19 00:32:45.214913+00 f t Invitado Amar invitado-1763512365728@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11818 2025-10-29 12:00:30.584791+00 2025-10-29 12:00:30.584802+00 f t Malena Venturino malenaventurino@gmail.com +541158447798 \N Av. rivadavia 3789 3a \N MALE \N -34.6109763 -58.4195513 23 \N \N \N +12001 2025-10-30 20:56:17.315868+00 2025-10-30 20:56:17.315876+00 f t Invitado Amar invitado-1761857776028@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12184 2025-11-01 16:21:24.235207+00 2025-11-01 16:21:24.235216+00 f t Invitado Amar invitado-1762014082915@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12365 2025-11-04 17:08:38.344637+00 2025-11-04 17:08:38.344646+00 f t Invitado Amar invitado-1762276117698@example.com 55555555 \N \N \N \N \N 19 \N \N \N +12547 2025-11-06 19:57:59.90247+00 2025-11-06 19:57:59.902479+00 f t Invitado Amar invitado-1762459079506@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12727 2025-11-08 18:26:30.156466+00 2025-11-08 18:26:30.156475+00 f t Invitado Amar invitado-1762626389645@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12911 2025-11-10 21:05:35.583918+00 2025-11-10 21:05:35.583926+00 f t Invitado Amar invitado-1762808735165@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13093 2025-11-12 16:59:40.143069+00 2025-11-12 16:59:40.143078+00 f t Invitado Amar invitado-1762966779549@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13884 2025-11-20 11:28:49.965806+00 2025-11-20 11:28:49.965814+00 f t David Subero davidsubero94@gmail.com +541123867876 \N Argañaras 19 1109 \N \N -34.5975643 -58.4268172 26 2206 \N \N +14065 2025-11-21 16:49:22.771721+00 2025-11-21 16:49:22.77173+00 f t Invitado Amar invitado-1763743762175@example.com 55555555 \N \N \N \N \N 91 \N \N \N +14245 2025-11-23 18:23:26.816019+00 2025-11-23 18:23:26.816029+00 f t Invitado Amar invitado-1763922205714@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14427 2025-11-25 01:32:33.880996+00 2025-11-25 01:32:33.881005+00 f t Romina Perez rominavanesaperez@gmail.com +541171309438 \N Achupallas 1435 Pb \N \N -34.776116 -58.3840554 85 2258 \N \N +13265 2025-11-14 09:04:09.448611+00 2025-11-14 09:04:09.448621+00 f t Invitado Amar invitado-1763111047931@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10006 2025-10-04 18:56:19.102824+00 2025-10-04 18:56:19.102832+00 f t carla torrejon carlaa1604@gmail.com 91169592473 \N Av. Federico lacroze 1898 5B \N FEMALE 1997-04-16 -34.5653112 -58.4401838 1 \N \N \N +10188 2025-10-07 10:24:53.852639+00 2025-10-07 10:24:53.852647+00 f t Invitado Amar invitado-1759832693637@example.com 55555555 \N \N \N \N \N 91 \N \N \N +13495 2025-11-17 14:35:21.718857+00 2025-11-17 14:35:21.718866+00 f t Invitado Amar invitado-1763390121091@example.com 55555555 \N \N \N \N \N 64 \N \N \N +10369 2025-10-09 21:06:46.131288+00 2025-10-09 21:06:46.131296+00 f t Andrés Estebo Lamas andresestebo@gmail.com +5491162453701 \N San Martín 683 4 48 \N \N -34.6000254 -58.3740238 13 \N \N \N +10551 2025-10-12 17:06:02.727036+00 2025-10-12 17:06:02.727049+00 f t Invitado Amar invitado-1760288762333@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10732 2025-10-14 23:36:27.016897+00 2025-10-14 23:36:27.016906+00 f t Invitado Amar invitado-1760484985100@example.com 55555555 \N \N \N \N \N 79 \N \N \N +10913 2025-10-17 00:45:52.715729+00 2025-10-17 00:45:52.715741+00 f t Invitado Amar invitado-1760661951649@example.com 55555555 \N \N \N \N \N 155 \N \N \N +11092 2025-10-19 21:50:50.548579+00 2025-10-19 21:50:50.548588+00 f t Invitado Amar invitado-1760910649156@example.com 55555555 \N \N \N \N \N 59 \N \N \N +11276 2025-10-21 20:37:56.561494+00 2025-10-21 20:37:56.561505+00 f t Invitado Amar invitado-1761079071931@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11455 2025-10-24 16:11:36.994225+00 2025-10-24 16:11:36.994233+00 f t Invitado Amar invitado-1761322297387@example.com 55555555 \N \N \N \N \N 17 \N \N \N +11636 2025-10-27 20:06:58.413231+00 2025-10-27 20:06:58.413244+00 f t Invitado Amar invitado-1761595617833@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11819 2025-10-29 12:22:12.233065+00 2025-10-29 12:22:12.23308+00 f t Invitado Amar invitado-1761740531572@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12002 2025-10-30 21:24:22.951567+00 2025-10-30 21:24:22.951577+00 f t Invitado Amar invitado-1761859461926@example.com 55555555 \N \N \N \N \N 60 \N \N \N +12185 2025-11-01 16:29:13.765867+00 2025-11-01 16:29:13.765876+00 f t Invitado Amar invitado-1762014555212@example.com 55555555 \N \N \N \N \N 20 \N \N \N +12366 2025-11-04 17:42:12.020465+00 2025-11-04 17:42:12.020474+00 f t Invitado Amar invitado-1762278131507@example.com 55555555 \N \N \N \N \N \N \N \N \N +12548 2025-11-06 20:30:48.600749+00 2025-11-06 20:30:48.600757+00 f t Invitado Amar invitado-1762461048271@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12728 2025-11-08 18:32:55.863062+00 2025-11-08 18:32:55.863072+00 f t Invitado Amar invitado-1762626754239@example.com 55555555 \N \N \N \N \N 6 \N \N \N +12912 2025-11-10 21:10:06.058801+00 2025-11-10 21:10:06.058811+00 f t Invitado Amar invitado-1762809005414@example.com 55555555 \N \N \N \N \N 79 \N \N \N +13094 2025-11-12 17:06:53.318909+00 2025-11-12 17:06:53.318918+00 f t Invitado Amar invitado-1762967212502@example.com 55555555 \N \N \N \N \N 43 \N \N \N +13699 2025-11-19 00:38:10.769169+00 2025-11-19 00:38:10.769181+00 f t Invitado Amar invitado-1763512689939@example.com 55555555 \N \N \N \N \N 31 \N \N \N +13885 2025-11-20 11:34:04.935447+00 2025-11-20 11:34:04.935456+00 f t Invitado Amar invitado-1763638443831@example.com 55555555 \N \N \N \N \N 26 \N \N \N +14066 2025-11-21 16:57:33.42781+00 2025-11-21 16:57:33.42782+00 f t Invitado Amar invitado-1763744251926@example.com 55555555 \N \N \N \N \N 157 \N \N \N +14246 2025-11-23 18:40:00.748278+00 2025-11-23 18:40:00.748287+00 f t Invitado Amar invitado-1763923200499@example.com 55555555 \N \N \N \N \N 79 \N \N \N +14428 2025-11-25 01:35:11.26439+00 2025-11-25 01:35:11.264405+00 f t Invitado Amar invitado-1764034510347@example.com 55555555 \N \N \N \N \N 85 \N \N \N +13266 2025-11-14 09:18:45.475629+00 2025-11-14 09:18:45.475639+00 f t Invitado Amar invitado-1763111924917@example.com 55555555 \N \N \N \N \N 83 \N \N \N +10007 2025-10-04 19:13:15.070632+00 2025-10-04 19:13:15.070641+00 f t Invitado Amar invitado-1759605194174@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10189 2025-10-07 10:28:54.814263+00 2025-10-07 10:28:54.814273+00 f t Invitado Amar invitado-1759832934173@example.com 55555555 \N \N \N \N \N 91 \N \N \N +10370 2025-10-09 21:30:25.688077+00 2025-10-09 21:30:25.688086+00 f t Invitado Amar invitado-1760045424578@example.com 55555555 \N \N \N \N \N 70 \N \N \N +10552 2025-10-12 17:11:56.036368+00 2025-10-12 17:11:56.036378+00 f t Invitado Amar invitado-1760289115624@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10733 2025-10-14 23:38:06.37141+00 2025-10-14 23:38:06.371424+00 f t Invitado Amar invitado-1760485086057@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10914 2025-10-17 00:53:47.752856+00 2025-10-17 00:53:47.752865+00 f t Invitado Amar invitado-1760662429139@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13496 2025-11-17 14:38:00.257401+00 2025-11-17 14:38:00.257409+00 f t Invitado Amar invitado-1763390279800@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11093 2025-10-19 21:53:49.988584+00 2025-10-19 21:53:49.988594+00 f t Maria Belen Alvarez mbelalvarez16@gmail.com +542612715279 \N Capdevila 3441 PB A \N \N -34.5650286 -58.4938153 29 \N \N \N +11277 2025-10-21 20:50:38.949941+00 2025-10-21 20:50:38.94995+00 f t Invitado Amar invitado-1761079838831@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11456 2025-10-24 16:21:15.743492+00 2025-10-24 16:21:15.7435+00 f t Invitado Amar invitado-1761322875158@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11637 2025-10-27 20:11:32.981944+00 2025-10-27 20:11:32.981956+00 f t Invitado Amar invitado-1761595891543@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11820 2025-10-29 12:32:53.080514+00 2025-10-29 12:32:53.080523+00 f t Invitado Amar invitado-1761741171133@example.com 55555555 \N \N \N \N \N 12 \N \N \N +12003 2025-10-30 21:51:37.128104+00 2025-10-30 21:51:37.128114+00 f t Invitado Amar invitado-1761861096059@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13700 2025-11-19 01:12:46.016675+00 2025-11-19 01:12:46.016687+00 f t Invitado Amar invitado-1763514763633@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13886 2025-11-20 11:40:05.102608+00 2025-11-20 11:40:05.102621+00 f t Invitado Amar invitado-1763638804526@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12186 2025-11-01 16:42:23.617497+00 2025-11-01 16:42:23.617507+00 f t Aldo Centurión aldopsi15@gmail.com +541166102673 \N Del Progreso 918 Casa \N \N -34.6310585 -58.4398256 20 1974 \N \N +12367 2025-11-04 17:45:59.256037+00 2025-11-04 17:45:59.256046+00 f t Invitado Amar invitado-1762278358133@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12549 2025-11-06 20:33:04.137665+00 2025-11-06 20:33:04.137673+00 f t Invitado Amar invitado-1762461183567@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12729 2025-11-08 18:35:00.482734+00 2025-11-08 18:35:00.482747+00 f t Invitado Amar invitado-1762626898968@example.com 55555555 \N \N \N \N \N 40 \N \N \N +12913 2025-11-10 21:15:00.931817+00 2025-11-10 21:15:00.931826+00 f t Invitado Amar invitado-1762809299586@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14067 2025-11-21 17:05:14.488019+00 2025-11-21 17:05:14.488028+00 f t Invitado Amar invitado-1763744713311@example.com 55555555 \N \N \N \N \N 11 \N \N \N +13095 2025-11-12 17:09:38.854091+00 2025-11-12 17:09:38.8541+00 f t Maria Cecilia Pimentel matoscecilia.22@hotmail.com 5491156961191 \N sarmiento 2897 piso 3 depto 22 \N FEMALE \N -34.6046929 -58.4227713 23 2117 \N \N +14247 2025-11-23 18:46:29.403582+00 2025-11-23 18:46:29.40359+00 f t Invitado Amar invitado-1763923588451@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14429 2025-11-25 01:38:04.987821+00 2025-11-25 01:38:04.98783+00 f t Invitado Amar invitado-1764034684473@example.com 55555555 \N \N \N \N \N 85 \N \N \N +13267 2025-11-14 10:12:35.233053+00 2025-11-14 10:12:35.233062+00 f t Invitado Amar invitado-1763115154295@example.com 55555555 \N \N \N \N \N 84 \N \N \N +10008 2025-10-04 20:11:19.66015+00 2025-10-04 20:11:19.660159+00 f t Invitado Amar invitado-1759608678888@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10190 2025-10-07 10:35:26.852535+00 2025-10-07 10:35:26.852543+00 f t Invitado Amar invitado-1759833326536@example.com 55555555 \N \N \N \N \N 31 \N \N \N +10371 2025-10-09 21:32:24.233187+00 2025-10-09 21:32:24.233196+00 f t Invitado Amar invitado-1760045543600@example.com 55555555 \N \N \N \N \N 72 \N \N \N +10553 2025-10-12 17:21:17.135502+00 2025-10-12 17:21:17.13551+00 f t Invitado Amar invitado-1760289676776@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10734 2025-10-14 23:42:14.70989+00 2025-10-14 23:42:14.709901+00 f t Invitado Amar invitado-1760485333121@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10915 2025-10-17 00:57:45.020447+00 2025-10-17 00:57:45.020456+00 f t Invitado Amar invitado-1760662664555@example.com 55555555 \N \N \N \N \N 11 \N \N \N +11094 2025-10-19 22:03:24.73101+00 2025-10-19 22:03:24.731022+00 f t Invitado Amar invitado-1760911403476@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13497 2025-11-17 14:58:55.620572+00 2025-11-17 14:58:55.620581+00 f t Invitado Amar invitado-1763391532618@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13701 2025-11-19 01:18:52.031631+00 2025-11-19 01:18:52.03164+00 f t Invitado Amar invitado-1763515130700@example.com 55555555 \N \N \N \N \N 73 \N \N \N +11457 2025-10-24 16:40:38.512633+00 2025-10-24 16:40:38.512643+00 f t Invitado Amar invitado-1761324038186@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11638 2025-10-27 20:34:09.562559+00 2025-10-27 20:34:09.562571+00 f t Invitado Amar invitado-1761597248614@example.com 55555555 \N \N \N \N \N 20 \N \N \N +13887 2025-11-20 11:53:57.241172+00 2025-11-20 11:53:57.24118+00 f t Invitado Amar invitado-1763639637506@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11821 2025-10-29 12:35:39.793128+00 2025-10-29 12:35:39.793138+00 f t Santiago Orio santiorio1998@gmail.com +541133254294 \N Varela 1463 14 56 \N \N -34.6337558 -58.4637109 4 \N \N \N +12004 2025-10-30 22:19:46.403691+00 2025-10-30 22:19:46.403699+00 f t Invitado Amar invitado-1761862785460@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12187 2025-11-01 16:42:25.585155+00 2025-11-01 16:42:25.585165+00 f t Invitado Amar invitado-1762015345165@example.com 55555555 \N \N \N \N \N 155 \N \N \N +11278 2025-10-21 20:55:02.463809+00 2025-10-21 20:55:02.463825+00 f t Lourdes Cainzos lourdess.cainzos@gmail.com 5491131631707 \N Caxaraville 4076 Timbre A \N FEMALE \N -34.6437034 -58.5416884 91 1991 \N \N +12368 2025-11-04 18:13:00.522696+00 2025-11-04 18:13:00.52271+00 f t Invitado Amar invitado-1762279979965@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12550 2025-11-06 20:44:55.097855+00 2025-11-06 20:44:55.097864+00 f t Invitado Amar invitado-1762461893582@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12730 2025-11-08 19:00:13.793865+00 2025-11-08 19:00:13.793877+00 f t Invitado Amar invitado-1762628413365@example.com 55555555 \N \N \N \N \N 155 \N \N \N +12914 2025-11-10 21:16:14.028779+00 2025-11-10 21:16:14.028792+00 f t Invitado Amar invitado-1762809373575@example.com 55555555 \N \N \N \N \N 73 \N \N \N +13096 2025-11-12 17:19:11.916871+00 2025-11-12 17:19:11.916879+00 f t Invitado Amar invitado-1762967951493@example.com 55555555 \N \N \N \N \N 3 \N \N \N +14068 2025-11-21 17:41:27.952848+00 2025-11-21 17:41:27.95286+00 f t Gonzalo Diz gonza.diz@hotmail.com 5491141777706 \N San jorge 2920 Dpto 6D (TIMBRE 36) \N MALE \N -34.6090824 -58.5666966 88 2226 \N \N +14248 2025-11-23 18:46:49.4804+00 2025-11-23 18:46:49.480409+00 f t Invitado Amar invitado-1763923608785@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14430 2025-11-25 01:38:13.09666+00 2025-11-25 01:38:13.096672+00 f t Invitado Amar invitado-1764034692439@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13268 2025-11-14 10:29:50.57806+00 2025-11-14 10:29:50.578069+00 f t Invitado Amar invitado-1763116188684@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10009 2025-10-04 20:16:33.126264+00 2025-10-04 20:16:33.126274+00 f t Invitado Amar invitado-1759608991746@example.com 55555555 \N \N \N \N \N 89 \N \N \N +10191 2025-10-07 10:46:39.33769+00 2025-10-07 10:46:39.337702+00 f t Invitado Amar invitado-1759833998693@example.com 55555555 \N \N \N \N \N 16 \N \N \N +10372 2025-10-09 21:43:38.376495+00 2025-10-09 21:43:38.376503+00 f t Invitado Amar invitado-1760046216430@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13498 2025-11-17 15:08:59.458012+00 2025-11-17 15:08:59.458021+00 f t Invitado Amar invitado-1763392144031@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10554 2025-10-12 18:49:49.710017+00 2025-10-12 18:49:49.710026+00 f t Julieta Spannenberger julispannen@gmail.com +541164447194 \N Av san martin 3369 2 C \N \N \N \N 82 \N \N \N +10735 2025-10-14 23:49:00.073041+00 2025-10-14 23:49:00.07305+00 f t Invitado Amar invitado-1760485738996@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10916 2025-10-17 01:04:01.249392+00 2025-10-17 01:04:01.249401+00 f t Invitado Amar invitado-1760663040420@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11095 2025-10-19 22:04:32.093337+00 2025-10-19 22:04:32.093348+00 f t Invitado Amar invitado-1760911471621@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13702 2025-11-19 01:22:19.598701+00 2025-11-19 01:22:19.598709+00 f t Invitado Amar invitado-1763515339109@example.com 55555555 \N \N \N \N \N 6 \N \N \N +11279 2025-10-21 21:12:19.699523+00 2025-10-21 21:12:19.699535+00 f t Camila Leon mcamilaleon08@gmail.com +541126879084 \N Chile 11555 9 \N \N -37.4661161 -72.3317541 49 \N \N \N +11458 2025-10-24 16:59:58.035252+00 2025-10-24 16:59:58.035262+00 f t Invitado Amar invitado-1761325195411@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13888 2025-11-20 12:26:58.933827+00 2025-11-20 12:26:58.93384+00 f t Invitado Amar invitado-1763641618531@example.com 55555555 \N \N \N \N \N 88 \N \N \N +14069 2025-11-21 17:48:17.819313+00 2025-11-21 17:48:17.819325+00 f t Invitado Amar invitado-1763747295102@example.com 55555555 \N \N \N \N \N 77 \N \N \N +14249 2025-11-23 18:49:25.544918+00 2025-11-23 18:49:25.544927+00 f t Invitado Amar invitado-1763923764944@example.com 55555555 \N \N \N \N \N 147 \N \N \N +11822 2025-10-29 12:36:09.283639+00 2025-10-29 12:36:09.283652+00 f t Invitado Amar invitado-1761741368946@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12005 2025-10-30 22:26:52.444823+00 2025-10-30 22:26:52.444831+00 f t Sebastian Victovich sebastianvictovich@gmail.com +1156983960 \N San Nicolás 2416 4B \N \N -34.6104965 -58.4975518 17 1942 \N \N +12188 2025-11-01 16:46:28.18775+00 2025-11-01 16:46:28.187759+00 f t Invitado Amar invitado-1762015589918@example.com 55555555 \N \N \N \N \N 20 \N \N \N +14431 2025-11-25 01:40:56.416501+00 2025-11-25 01:40:56.416512+00 f t Abigail Picasso abipicassomansilla@gmail.com +541164378564 \N Fitz Roy 2231 404 \N \N -34.580098 -58.4315543 1 2259 \N \N +11639 2025-10-27 20:38:38.493806+00 2025-10-27 20:38:38.493815+00 f t agustina droz agustinadroz@gmail.com +541166784398 \N zuloaga 477 \N \N \N \N -34.7158624 -58.4008673 70 2007 \N \N +12369 2025-11-04 18:19:40.674049+00 2025-11-04 18:19:40.674058+00 f t Invitado Amar invitado-1762280377073@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12551 2025-11-06 20:53:01.309365+00 2025-11-06 20:53:01.309375+00 f t Invitado Amar invitado-1762462375296@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12731 2025-11-08 19:02:41.4419+00 2025-11-08 19:02:41.441912+00 f t Invitado Amar invitado-1762628560487@example.com 55555555 \N \N \N \N \N 88 \N \N \N +12915 2025-11-10 21:18:36.375434+00 2025-11-10 21:18:36.375442+00 f t Invitado Amar invitado-1762809515973@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13097 2025-11-12 17:44:19.319624+00 2025-11-12 17:44:19.319632+00 f t Tamara Pelozo Tamarapelozo@gmail.com 5491156179590 \N José Luis cantilo 4595 \N \N FEMALE \N -34.6064651 -58.5167707 21 2118 \N \N +13269 2025-11-14 10:50:38.64236+00 2025-11-14 10:50:38.642369+00 f t Invitado Amar invitado-1763117438263@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10010 2025-10-04 20:49:28.336874+00 2025-10-04 20:49:28.336882+00 f t Invitado Amar invitado-1759610967930@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10192 2025-10-07 11:35:24.351307+00 2025-10-07 11:35:24.351316+00 f t Invitado Amar invitado-1759836928671@example.com 55555555 \N \N \N \N \N 4 \N \N \N +10373 2025-10-09 21:52:56.767249+00 2025-10-09 21:52:56.767259+00 f t Invitado Amar invitado-1760046775823@example.com 55555555 \N \N \N \N \N 13 \N \N \N +10555 2025-10-12 19:03:05.004381+00 2025-10-12 19:03:05.004393+00 f t Eugenia Stoll eugeniaschegtelstoll@gmail.com 5493434150200 \N Av independencia 409 2C \N FEMALE 1977-04-07 -34.6170842 -58.371858 15 \N \N \N +10736 2025-10-14 23:52:18.980536+00 2025-10-14 23:52:18.980547+00 f t Invitado Amar invitado-1760485938677@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10917 2025-10-17 01:05:37.281503+00 2025-10-17 01:05:37.281512+00 f t Invitado Amar invitado-1760663136123@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11096 2025-10-19 22:10:58.472483+00 2025-10-19 22:10:58.472492+00 f t Invitado Amar invitado-1760911858223@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11280 2025-10-21 21:30:36.568574+00 2025-10-21 21:30:36.568583+00 f t Invitado Amar invitado-1761082235287@example.com 55555555 \N \N \N \N \N \N \N \N \N +11459 2025-10-24 17:06:13.374096+00 2025-10-24 17:06:13.374104+00 f t Invitado Amar invitado-1761325573034@example.com 55555555 \N \N \N \N \N \N \N \N \N +11640 2025-10-27 20:44:02.685789+00 2025-10-27 20:44:02.685798+00 f t Invitado Amar invitado-1761597841213@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11823 2025-10-29 12:44:21.532524+00 2025-10-29 12:44:21.532533+00 f t Invitado Amar invitado-1761741858699@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12006 2025-10-30 22:30:22.107537+00 2025-10-30 22:30:22.107548+00 f t Invitado Amar invitado-1761863421897@example.com 55555555 \N \N \N \N \N 17 \N \N \N +12189 2025-11-01 17:30:33.141832+00 2025-11-01 17:30:33.141841+00 f t Invitado Amar invitado-1762018231693@example.com 55555555 \N \N \N \N \N 48 \N \N \N +13499 2025-11-17 15:13:36.621522+00 2025-11-17 15:13:36.621532+00 f t Invitado Amar invitado-1763392416197@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12370 2025-11-04 18:21:23.871901+00 2025-11-04 18:21:23.87191+00 f t Sofía Cestari sofia@soficestari.com 5491136589699 \N moldes 2546 6 A \N FEMALE \N -34.5596043 -58.4630454 3 2017 \N \N +12552 2025-11-06 21:06:42.919028+00 2025-11-06 21:06:42.919036+00 f t Invitado Amar invitado-1762463201815@example.com 55555555 \N \N \N \N \N 6 \N \N \N +12732 2025-11-08 19:06:49.292545+00 2025-11-08 19:06:49.292557+00 f t Invitado Amar invitado-1762628809076@example.com 55555555 \N \N \N \N \N 89 \N \N \N +12916 2025-11-10 21:26:16.587066+00 2025-11-10 21:26:16.587078+00 f t Invitado Amar invitado-1762809975391@example.com 55555555 \N \N \N \N \N 41 \N \N \N +13098 2025-11-12 18:10:10.980614+00 2025-11-12 18:10:10.980623+00 f t Invitado Amar invitado-1762971010456@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13703 2025-11-19 01:24:56.163669+00 2025-11-19 01:24:56.163678+00 f t Invitado Amar invitado-1763515495557@example.com 55555555 \N \N \N \N \N 41 \N \N \N +13889 2025-11-20 12:37:01.568599+00 2025-11-20 12:37:01.568609+00 f t Invitado Amar invitado-1763642221193@example.com 55555555 \N \N \N \N \N 91 \N \N \N +14070 2025-11-21 17:48:56.005548+00 2025-11-21 17:48:56.005557+00 f t Invitado Amar invitado-1763747333982@example.com 55555555 \N \N \N \N \N 77 \N \N \N +14250 2025-11-23 18:51:01.126205+00 2025-11-23 18:51:01.126215+00 f t Invitado Amar invitado-1763923859954@example.com 55555555 \N \N \N \N \N 64 \N \N \N +14432 2025-11-25 01:43:59.636751+00 2025-11-25 01:43:59.636761+00 f t Invitado Amar invitado-1764035039459@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13270 2025-11-14 10:57:10.464962+00 2025-11-14 10:57:10.46497+00 f t Invitado Amar invitado-1763117828691@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10011 2025-10-04 21:05:55.970245+00 2025-10-04 21:05:55.970255+00 f t Invitado Amar invitado-1759611955345@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13500 2025-11-17 15:14:17.401887+00 2025-11-17 15:14:17.401895+00 f t Invitado Amar invitado-1763392455874@example.com 55555555 \N \N \N \N \N 44 \N \N \N +10374 2025-10-09 21:55:43.186784+00 2025-10-09 21:55:43.186793+00 f t Invitado Amar invitado-1760046942623@example.com 55555555 \N \N \N \N \N 51 \N \N \N +10556 2025-10-12 19:15:33.340892+00 2025-10-12 19:15:33.340902+00 f t Invitado Amar invitado-1760296532668@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10737 2025-10-15 00:02:35.258405+00 2025-10-15 00:02:35.258414+00 f t Invitado Amar invitado-1760486554887@example.com 55555555 \N \N \N \N \N 12 \N \N \N +10918 2025-10-17 01:07:01.394674+00 2025-10-17 01:07:01.394687+00 f t Invitado Amar invitado-1760663220679@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11097 2025-10-19 22:28:13.029095+00 2025-10-19 22:28:13.029104+00 f t Invitado Amar invitado-1760912891182@example.com 55555555 \N \N \N \N \N 79 \N \N \N +11281 2025-10-21 21:49:25.11664+00 2025-10-21 21:49:25.116649+00 f t Invitado Amar invitado-1761083364408@example.com 55555555 \N \N \N \N \N 49 \N \N \N +11460 2025-10-24 17:19:36.654866+00 2025-10-24 17:19:36.654876+00 f t Invitado Amar invitado-1761326376131@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11641 2025-10-27 20:46:03.763583+00 2025-10-27 20:46:03.763598+00 f t Invitado Amar invitado-1761597962994@example.com 55555555 \N \N \N \N \N 12 \N \N \N +11824 2025-10-29 12:54:59.572165+00 2025-10-29 12:54:59.572175+00 f t Invitado Amar invitado-1761742499131@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12007 2025-10-30 23:09:42.583083+00 2025-10-30 23:09:42.583092+00 f t Invitado Amar invitado-1761865781961@example.com 55555555 \N \N \N \N \N 22 \N \N \N +12190 2025-11-01 17:41:38.114772+00 2025-11-01 17:41:38.114782+00 f t Invitado Amar invitado-1762018897734@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12371 2025-11-04 18:30:39.72046+00 2025-11-04 18:30:39.720468+00 f t Invitado Amar invitado-1762281039017@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12553 2025-11-06 21:28:41.743398+00 2025-11-06 21:28:41.74341+00 f t Invitado Amar invitado-1762464521194@example.com 55555555 \N \N \N \N \N 35 \N \N \N +12733 2025-11-08 19:25:54.760014+00 2025-11-08 19:25:54.760027+00 f t Invitado Amar invitado-1762629954388@example.com 55555555 \N \N \N \N \N 53 \N \N \N +12917 2025-11-10 21:26:26.328476+00 2025-11-10 21:26:26.328487+00 f t Invitado Amar invitado-1762809985316@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13099 2025-11-12 18:11:57.714649+00 2025-11-12 18:11:57.714659+00 f t Invitado Amar invitado-1762971117951@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13704 2025-11-19 01:32:53.770517+00 2025-11-19 01:32:53.770528+00 f t Invitado Amar invitado-1763515972788@example.com 55555555 \N \N \N \N \N 65 \N \N \N +13890 2025-11-20 12:44:29.377543+00 2025-11-20 12:44:29.377551+00 f t Invitado Amar invitado-1763642667626@example.com 55555555 \N \N \N \N \N 90 \N \N \N +14071 2025-11-21 18:16:58.352421+00 2025-11-21 18:16:58.35243+00 f t Invitado Amar invitado-1763748166958@example.com 55555555 \N \N \N \N \N 32 \N \N \N +14251 2025-11-23 18:51:21.249727+00 2025-11-23 18:51:21.249738+00 f t Invitado Amar invitado-1763923879570@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14433 2025-11-25 02:00:13.617945+00 2025-11-25 02:00:13.617963+00 f t Invitado Amar invitado-1764036013121@example.com 55555555 \N \N \N \N \N 50 \N \N \N +10193 2025-10-07 11:40:33.909738+00 2025-10-07 11:40:33.909747+00 f t Mirta Graciela Garro escrgarro@yahoo.com.ar +541161972288 \N Mario bravo 546 Casa puerta marrón de madera, no anda el timbre. Llamar por la ventanilla \N FEMALE \N -34.6030112 -58.416718 23 2149 \N \N +13271 2025-11-14 10:59:58.425172+00 2025-11-14 10:59:58.42518+00 f t Invitado Amar invitado-1763117998064@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10012 2025-10-04 21:15:06.508961+00 2025-10-04 21:15:06.50897+00 f t Invitado Amar invitado-1759612506202@example.com 55555555 \N \N \N \N \N 72 \N \N \N +10194 2025-10-07 12:35:21.4091+00 2025-10-07 12:35:21.409107+00 f t Invitado Amar invitado-1759840520319@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10375 2025-10-09 22:05:52.419123+00 2025-10-09 22:05:52.41915+00 f t Invitado Amar invitado-1760047552031@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10557 2025-10-12 19:16:57.485752+00 2025-10-12 19:16:57.485765+00 f t Invitado Amar invitado-1760296616991@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10738 2025-10-15 00:08:29.291171+00 2025-10-15 00:08:29.291181+00 f t Invitado Amar invitado-1760486908767@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10919 2025-10-17 01:37:30.966543+00 2025-10-17 01:37:30.966553+00 f t Invitado Amar invitado-1760665050685@example.com 55555555 \N \N \N \N \N 75 \N \N \N +11098 2025-10-19 22:37:16.391931+00 2025-10-19 22:37:16.391943+00 f t Invitado Amar invitado-1760913435700@example.com 55555555 \N \N \N \N \N 87 \N \N \N +13501 2025-11-17 15:15:17.628201+00 2025-11-17 15:15:17.62821+00 f t Invitado Amar invitado-1763392516215@example.com 55555555 \N \N \N \N \N 78 \N \N \N +510 2025-02-27 00:21:19.103193+00 2025-02-27 00:21:19.1032+00 f t Federico Velazquez federico.velazquez@gmail.com +5491135020890 \N Boulevard Palaa 451 Piso 7 dep A, entre España y pasaje Magnasco \N MALE 1979-10-23 -34.661785791836735 -58.36913618163265 73 652 \N fvelasquez +11461 2025-10-24 17:44:57.771911+00 2025-10-24 17:44:57.77192+00 f t Invitado Amar invitado-1761327897397@example.com 55555555 \N \N \N \N \N 72 \N \N \N +11642 2025-10-27 20:47:19.520715+00 2025-10-27 20:47:19.521117+00 f t Invitado Amar invitado-1761598039443@example.com 55555555 \N \N \N \N \N 153 \N \N \N +13705 2025-11-19 01:40:17.560039+00 2025-11-19 01:40:17.560048+00 f t Invitado Amar invitado-1763516417171@example.com 55555555 \N \N \N \N \N 33 \N \N \N +13891 2025-11-20 12:48:06.033753+00 2025-11-20 12:48:06.033761+00 f t Invitado Amar invitado-1763642885635@example.com 55555555 \N \N \N \N \N 79 \N \N \N +14072 2025-11-21 18:17:20.213083+00 2025-11-21 18:17:20.213094+00 f t Invitado Amar invitado-1763749038360@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12008 2025-10-30 23:29:02.835116+00 2025-10-30 23:29:02.835125+00 f t Invitado Amar invitado-1761866942188@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12191 2025-11-01 18:24:58.222469+00 2025-11-01 18:24:58.222478+00 f t Invitado Amar invitado-1762021496913@example.com 55555555 \N \N \N \N \N 17 \N \N \N +14252 2025-11-23 18:53:49.845024+00 2025-11-23 18:53:49.845037+00 f t Invitado Amar invitado-1763924027988@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11825 2025-10-29 13:22:46.803726+00 2025-10-29 13:22:46.803734+00 f t Ana Carolina Trigo Osores anacarolinaosores@gmail.com +541124671128 \N Avenida Belgrano 3342 Piso 2 - Dpto 18 \N FEMALE \N -34.6155986 -58.4134374 23 2009 \N \N +12372 2025-11-04 18:36:50.293051+00 2025-11-04 18:36:50.293067+00 f t Invitado Amar invitado-1762281409219@example.com 55555555 \N \N \N \N \N \N \N \N \N +12554 2025-11-06 21:38:24.770388+00 2025-11-06 21:38:24.770398+00 f t Invitado Amar invitado-1762465103032@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12734 2025-11-08 20:13:00.233556+00 2025-11-08 20:13:00.233564+00 f t Invitado Amar invitado-1762632779349@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12918 2025-11-10 21:28:21.356783+00 2025-11-10 21:28:21.356795+00 f t Invitado Amar invitado-1762810100683@example.com 55555555 \N \N \N \N \N 8 \N \N \N +13100 2025-11-12 18:26:26.494319+00 2025-11-12 18:26:26.494337+00 f t Invitado Amar invitado-1762971986047@example.com 55555555 \N \N \N \N \N 22 \N \N \N +14434 2025-11-25 02:00:19.93238+00 2025-11-25 02:00:19.932393+00 f t Invitado Amar invitado-1764036019277@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13272 2025-11-14 11:09:53.954693+00 2025-11-14 11:09:53.954705+00 f t Invitado Amar invitado-1763118592758@example.com 55555555 \N \N \N \N \N 58 \N \N \N +13502 2025-11-17 15:25:11.398096+00 2025-11-17 15:25:11.398106+00 f t Invitado Amar invitado-1763393109680@example.com 55555555 \N \N \N \N \N 33 \N \N \N +10013 2025-10-04 21:53:10.537464+00 2025-10-04 21:53:10.537477+00 f t Micaela Ailin González Rodas ailingrodas@gmail.com +541158600099 \N Larrazabal 2183 Es un almacen ( entrecalles Necol y Recondo) Fiorito \N \N -34.7051373 -58.4384169 71 \N \N \N +13706 2025-11-19 01:42:14.759955+00 2025-11-19 01:42:14.759964+00 f t Invitado Amar invitado-1763516534600@example.com 55555555 \N \N \N \N \N 33 \N \N \N +10195 2025-10-07 12:36:31.798539+00 2025-10-07 12:36:31.798548+00 f t Silvana Masola semasola61@gmail.com +54114056808 \N Guardia Nacional 272 7 A \N \N \N -34.6400706 -58.5029064 65 \N \N \N +10376 2025-10-09 22:07:38.179684+00 2025-10-09 22:07:38.179694+00 f t Invitado Amar invitado-1760047657558@example.com 55555555 \N \N \N \N \N 74 \N \N \N +10558 2025-10-12 19:21:31.051889+00 2025-10-12 19:21:31.051898+00 f t Invitado Amar invitado-1760296890420@example.com 55555555 \N \N \N \N \N 61 \N \N \N +10739 2025-10-15 00:11:12.101226+00 2025-10-15 00:11:12.101234+00 f t Invitado Amar invitado-1760487071804@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10920 2025-10-17 01:38:24.356298+00 2025-10-17 01:38:24.356307+00 f t Invitado Amar invitado-1760665103745@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11099 2025-10-19 22:38:59.861831+00 2025-10-19 22:38:59.86184+00 f t Invitado Amar invitado-1760913539190@example.com 55555555 \N \N \N \N \N 87 \N \N \N +11282 2025-10-21 22:10:32.695586+00 2025-10-21 22:10:32.695596+00 f t Invitado Amar invitado-1761084632061@example.com 55555555 \N \N \N \N \N 75 \N \N \N +11462 2025-10-24 18:04:30.60502+00 2025-10-24 18:04:30.605029+00 f t Invitado Amar invitado-1761328976320@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11643 2025-10-27 20:55:49.202975+00 2025-10-27 20:55:49.202988+00 f t Invitado Amar invitado-1761598548698@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11826 2025-10-29 13:29:44.808162+00 2025-10-29 13:29:44.808175+00 f t Invitado Amar invitado-1761744635645@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12009 2025-10-30 23:42:02.342462+00 2025-10-30 23:42:02.342474+00 f t Invitado Amar invitado-1761867799026@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12192 2025-11-01 18:32:38.309403+00 2025-11-01 18:32:38.309412+00 f t Invitado Amar invitado-1762021957669@example.com 55555555 \N \N \N \N \N 59 \N \N \N +12373 2025-11-04 18:37:14.240537+00 2025-11-04 18:37:14.240545+00 f t Invitado Amar invitado-1762281432983@example.com 55555555 \N \N \N \N \N \N \N \N \N +12555 2025-11-06 22:17:51.643618+00 2025-11-06 22:17:51.64363+00 f t Invitado Amar invitado-1762467471035@example.com 55555555 \N \N \N \N \N 35 \N \N \N +12735 2025-11-08 20:22:55.864257+00 2025-11-08 20:22:55.864265+00 f t Invitado Amar invitado-1762633374168@example.com 55555555 \N \N \N \N \N 16 \N \N \N +12919 2025-11-10 21:31:07.999318+00 2025-11-10 21:31:07.999331+00 f t Invitado Amar invitado-1762810267872@example.com 55555555 \N \N \N \N \N 8 \N \N \N +13101 2025-11-12 18:30:05.661057+00 2025-11-12 18:30:05.661072+00 f t Invitado Amar invitado-1762972205182@example.com 55555555 \N \N \N \N \N 70 \N \N \N +13892 2025-11-20 12:57:19.960629+00 2025-11-20 12:57:19.960637+00 t t Invitado Amar invitado-1763643439607@example.com 55555555 \N \N \N \N \N 26 \N \N \N +14073 2025-11-21 18:21:35.01536+00 2025-11-21 18:21:35.015369+00 f t Invitado Amar invitado-1763749294655@example.com 55555555 \N \N \N \N \N 147 \N \N \N +14253 2025-11-23 19:19:13.528016+00 2025-11-23 19:19:13.528028+00 f t Invitado Amar invitado-1763925552760@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14435 2025-11-25 02:00:54.640182+00 2025-11-25 02:00:54.640191+00 f t Invitado Amar invitado-1764036054102@example.com 55555555 \N \N \N \N \N 3 \N \N \N +8338 2025-09-10 08:45:38.108988+00 2025-09-10 08:45:38.108998+00 f t Dolores Lamas dolo.lamas@gmail.com +541169992727 \N Av Libertador 2602 7A \N \N -34.5788405 -58.4072598 1 \N \N dlamas +10014 2025-10-04 22:12:37.496406+00 2025-10-04 22:12:37.496415+00 f t Invitado Amar invitado-1759615956940@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10196 2025-10-07 12:44:11.270115+00 2025-10-07 12:44:11.270124+00 f t Invitado Amar invitado-1759841051945@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10377 2025-10-09 22:32:03.356174+00 2025-10-09 22:32:03.356187+00 f t Invitado Amar invitado-1760049122179@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13273 2025-11-14 11:14:48.024053+00 2025-11-14 11:14:48.024062+00 t t Invitado Amar invitado-1763118887287@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13503 2025-11-17 15:54:23.118938+00 2025-11-17 15:54:23.11895+00 f t Invitado Amar invitado-1763394997850@example.com 55555555 \N \N \N \N \N 13 \N \N \N +8368 2025-09-10 17:38:14.710151+00 2025-09-10 17:38:14.710163+00 f t Marcos prol marcos.a.prol@gmail.com +541140466928 \N De la Noria 1958 \N \N \N \N -34.6294371 -58.6802273 78 1782 \N mprol +13707 2025-11-19 01:44:25.713037+00 2025-11-19 01:44:25.713049+00 f t Invitado Amar invitado-1763516665542@example.com 55555555 \N \N \N \N \N 33 \N \N \N +13893 2025-11-20 13:00:06.96257+00 2025-11-20 13:00:06.962584+00 f t Invitado Amar invitado-1763643606389@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10740 2025-10-15 00:17:59.096039+00 2025-10-15 00:17:59.096051+00 f t geraldine safdie gerysafdie@gmail.com +541149479066 \N yatay 1163 6D \N \N \N -34.5986853 -58.427951 23 \N \N \N +10921 2025-10-17 01:39:29.308823+00 2025-10-17 01:39:29.308836+00 f t Invitado Amar invitado-1760665168809@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11100 2025-10-19 22:39:29.728515+00 2025-10-19 22:39:29.728524+00 f t Invitado Amar invitado-1760913569333@example.com 55555555 \N \N \N \N \N 87 \N \N \N +11283 2025-10-21 22:13:04.290423+00 2025-10-21 22:13:04.290433+00 f t Invitado Amar invitado-1761084783537@example.com 55555555 \N \N \N \N \N 26 \N \N \N +14074 2025-11-21 18:29:07.187277+00 2025-11-21 18:29:07.187289+00 f t Invitado Amar invitado-1763749746164@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11463 2025-10-24 18:53:29.195858+00 2025-10-24 18:53:29.195867+00 f t Claudia Garcia Auronica78@hotmail.com 5491136907553 \N Calfucura 2725 6/A \N FEMALE \N -34.6087112 -58.4804699 41 1907 \N \N +14254 2025-11-23 19:22:39.189046+00 2025-11-23 19:22:39.189055+00 f t Invitado Amar invitado-1763925758817@example.com 55555555 \N \N \N \N \N 28 \N \N \N +14436 2025-11-25 02:01:26.367026+00 2025-11-25 02:01:26.367038+00 f t Invitado Amar invitado-1764036085842@example.com 55555555 \N \N \N \N \N 16 \N \N \N +11827 2025-10-29 13:33:48.269712+00 2025-10-29 13:33:48.269725+00 f t Invitado Amar invitado-1761744827638@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12010 2025-10-30 23:46:48.270217+00 2025-10-30 23:46:48.270231+00 f t Invitado Amar invitado-1761868007699@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12193 2025-11-01 18:49:56.414249+00 2025-11-01 18:49:56.414258+00 f t Invitado Amar invitado-1762022995258@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10559 2025-10-12 19:31:30.275815+00 2025-10-12 19:31:30.275825+00 f t Georgina Bejarano georgina.s.bejarano@gmail.com 5491135099000 \N Luis María Campos 250 Piso:12 Dpto: C \N FEMALE 1990-06-19 -34.5739497 -58.4323527 1 1984 \N \N +12374 2025-11-04 18:38:04.866033+00 2025-11-04 18:38:04.866042+00 f t Invitado Amar invitado-1762281483668@example.com 55555555 \N \N \N \N \N \N \N \N \N +12556 2025-11-06 22:40:37.767484+00 2025-11-06 22:40:37.767493+00 f t Invitado Amar invitado-1762468837381@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11644 2025-10-27 20:56:16.031281+00 2025-10-27 20:56:16.031292+00 f t Lucas Rousseaux iszenliser@hotmail.com +541151219907 \N Humberto primo 2796 5C \N \N -31.3999379 -64.2169067 12 1936 \N \N +12736 2025-11-08 20:32:18.678995+00 2025-11-08 20:32:18.679005+00 f t Invitado Amar invitado-1762633937047@example.com 55555555 \N \N \N \N \N 87 \N \N \N +12920 2025-11-10 21:37:30.417491+00 2025-11-10 21:37:30.417504+00 f t Invitado Amar invitado-1762810649588@example.com 55555555 \N \N \N \N \N 61 \N \N \N +13102 2025-11-12 19:05:36.310999+00 2025-11-12 19:05:36.311011+00 f t Invitado Amar invitado-1762974323037@example.com 55555555 \N \N \N \N \N 147 \N \N \N +13274 2025-11-14 11:18:46.378528+00 2025-11-14 11:18:46.378536+00 f t Invitado Amar invitado-1763119125922@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10015 2025-10-04 22:32:28.899506+00 2025-10-04 22:32:28.899515+00 f t Invitado Amar invitado-1759617148448@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10197 2025-10-07 13:06:21.84396+00 2025-10-07 13:06:21.843971+00 f t Invitado Amar invitado-1759842381559@example.com 55555555 \N \N \N \N \N 80 \N \N \N +10378 2025-10-09 22:54:23.594736+00 2025-10-09 22:54:23.594745+00 f t Invitado Amar invitado-1760050462694@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10560 2025-10-12 19:53:27.106437+00 2025-10-12 19:53:27.106446+00 f t Silvia gerling gerling128@gmail.com 5491151474218 \N Rafael obligado 5786 carapachay \N FEMALE 1961-07-13 -34.5220973 -58.538154 59 \N \N \N +10741 2025-10-15 01:07:15.025769+00 2025-10-15 01:07:15.025781+00 f t Invitado Amar invitado-1760490434561@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10922 2025-10-17 01:39:47.121417+00 2025-10-17 01:39:47.121426+00 f t Invitado Amar invitado-1760665186422@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11101 2025-10-19 23:08:07.572483+00 2025-10-19 23:08:07.572492+00 f t Invitado Amar invitado-1760915287130@example.com 55555555 \N \N \N \N \N 70 \N \N \N +11284 2025-10-21 22:23:29.946882+00 2025-10-21 22:23:29.94689+00 f t Invitado Amar invitado-1761085408152@example.com 55555555 \N \N \N \N \N \N \N \N \N +11464 2025-10-24 19:46:41.115335+00 2025-10-24 19:46:41.115344+00 f t Invitado Amar invitado-1761335202156@example.com 55555555 \N \N \N \N \N 71 \N \N \N +13504 2025-11-17 16:02:33.572032+00 2025-11-17 16:02:33.572041+00 f t Invitado Amar invitado-1763395352995@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11645 2025-10-27 21:03:08.988014+00 2025-10-27 21:03:08.988025+00 f t Isabel Carolina Rivero López isabelrivero0212@gmail.com +541149745072 \N Juan Domingo Perón 4153 3 E \N \N -34.6058668 -58.4252572 23 \N \N \N +11828 2025-10-29 13:35:39.847419+00 2025-10-29 13:35:39.847432+00 f t Invitado Amar invitado-1761744938676@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12011 2025-10-30 23:48:01.513125+00 2025-10-30 23:48:01.513134+00 f t Invitado Amar invitado-1761868078951@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13708 2025-11-19 01:49:27.354492+00 2025-11-19 01:49:27.354504+00 f t Invitado Amar invitado-1763516966582@example.com 55555555 \N \N \N \N \N 65 \N \N \N +13894 2025-11-20 13:01:02.856143+00 2025-11-20 13:01:02.856155+00 f t Invitado Amar invitado-1763643662693@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12194 2025-11-01 19:02:49.27673+00 2025-11-01 19:02:49.27674+00 f t Maria Diaz md6856922@gmail.com +541165688332 \N Torquinst 4795 1 3 \N \N -35.3891196 -57.3400501 87 1975 \N \N +12375 2025-11-04 18:38:09.651294+00 2025-11-04 18:38:09.651303+00 f t Invitado Amar invitado-1762281488747@example.com 55555555 \N \N \N \N \N \N \N \N \N +12557 2025-11-06 22:50:39.106656+00 2025-11-06 22:50:39.106665+00 f t Invitado Amar invitado-1762469438459@example.com 55555555 \N \N \N \N \N 35 \N \N \N +12737 2025-11-08 21:06:17.884757+00 2025-11-08 21:06:17.884766+00 f t Invitado Amar invitado-1762635976515@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12921 2025-11-10 21:41:11.454134+00 2025-11-10 21:41:11.454145+00 f t Invitado Amar invitado-1762810870198@example.com 55555555 \N \N \N \N \N 62 \N \N \N +14075 2025-11-21 18:32:10.96171+00 2025-11-21 18:32:10.961719+00 f t Invitado Amar invitado-1763749930987@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14255 2025-11-23 19:33:56.028757+00 2025-11-23 19:33:56.028768+00 f t Invitado Amar invitado-1763926435620@example.com 55555555 \N \N \N \N \N 25 \N \N \N +13103 2025-11-12 19:28:16.603419+00 2025-11-12 19:28:16.603427+00 f t Cecilia Verardo verardoce@gmail.com +5491134141994 \N Manuel Basavilbaso 3990 , esquina Diaz Velez. Olivos. \N FEMALE \N -34.5101752 -58.5178187 39 2119 \N \N +14437 2025-11-25 02:03:08.812615+00 2025-11-25 02:03:08.812628+00 f t Invitado Amar invitado-1764036188368@example.com 55555555 \N \N \N \N \N 18 \N \N \N +5071 2025-07-22 20:22:36.047497+00 2025-07-22 20:22:36.047503+00 f t Nadia Cuevas nadiaecuevas@gmail.com 1162734952 \N Tte Gral Eustaquio Frias 263 piso 7 depto 59 \N FEMALE 1986-11-01 \N \N 26 1424 \N ncuevas +13275 2025-11-14 11:24:03.890504+00 2025-11-14 11:24:03.890515+00 f t Invitado Amar invitado-1763119443207@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10016 2025-10-04 22:38:48.893138+00 2025-10-04 22:38:48.893147+00 f t Invitado Amar invitado-1759617528349@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13505 2025-11-17 16:10:24.750453+00 2025-11-17 16:10:24.750465+00 f t Invitado Amar invitado-1763395824263@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10198 2025-10-07 13:10:22.192642+00 2025-10-07 13:10:22.192654+00 f t Sol Kalpokas kalpokassol@gmail.com +541134320662 \N Alfredo R Bufano 1785 \N \N -34.6112709 -58.4724324 63 \N \N \N +10379 2025-10-09 23:18:24.295791+00 2025-10-09 23:18:24.295805+00 f t Invitado Amar invitado-1760051903846@example.com 55555555 \N \N \N \N \N 69 \N \N \N +10561 2025-10-12 20:12:57.626438+00 2025-10-12 20:12:57.626447+00 f t Verónica Rosetani vr2811@gmail.com +1158086556 \N Malaver 832 Casa \N \N -34.5152944 -58.480065 59 \N \N \N +10742 2025-10-15 01:22:17.742206+00 2025-10-15 01:22:17.742215+00 f t Invitado Amar invitado-1760491334903@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10923 2025-10-17 02:14:30.0516+00 2025-10-17 02:14:30.05161+00 f t Invitado Amar invitado-1760667269628@example.com 55555555 \N \N \N \N \N 33 \N \N \N +11102 2025-10-19 23:11:17.707221+00 2025-10-19 23:11:17.707233+00 f t Invitado Amar invitado-1760915477322@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11285 2025-10-21 22:24:00.223825+00 2025-10-21 22:24:00.223834+00 f t Invitado Amar invitado-1761085440351@example.com 55555555 \N \N \N \N \N 19 \N \N \N +11465 2025-10-24 19:55:13.283156+00 2025-10-24 19:55:13.283166+00 f t Invitado Amar invitado-1761335712825@example.com 55555555 \N \N \N \N \N 52 \N \N \N +11646 2025-10-27 21:06:56.38359+00 2025-10-27 21:06:56.3836+00 f t Invitado Amar invitado-1761599215673@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11829 2025-10-29 13:51:38.92984+00 2025-10-29 13:51:38.929848+00 f t Invitado Amar invitado-1761745898081@example.com 55555555 \N \N \N \N \N 55 \N \N \N +12012 2025-10-30 23:49:42.187217+00 2025-10-30 23:49:42.187229+00 f t Invitado Amar invitado-1761868180044@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12195 2025-11-01 19:06:35.632209+00 2025-11-01 19:06:35.632218+00 f t Invitado Amar invitado-1762023995316@example.com 55555555 \N \N \N \N \N 87 \N \N \N +12376 2025-11-04 18:50:36.412081+00 2025-11-04 18:50:36.412093+00 f t Invitado Amar invitado-1762282236060@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12558 2025-11-06 22:57:33.848659+00 2025-11-06 22:57:33.848672+00 f t Invitado Amar invitado-1762469853438@example.com 55555555 \N \N \N \N \N 35 \N \N \N +12738 2025-11-08 21:09:19.719886+00 2025-11-08 21:09:19.719895+00 f t Invitado Amar invitado-1762636159267@example.com 55555555 \N \N \N \N \N 78 \N \N \N +12922 2025-11-10 22:00:45.826556+00 2025-11-10 22:00:45.826565+00 f t Invitado Amar invitado-1762812045448@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13104 2025-11-12 19:28:57.19831+00 2025-11-12 19:28:57.198318+00 f t Invitado Amar invitado-1762975461356@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13709 2025-11-19 01:53:59.951839+00 2025-11-19 01:53:59.951848+00 f t Matias Mahia mahia.matias@gmail.com +5491161902394 \N Castillo 81 3a \N MALE \N -34.5989873 -58.4308335 26 2186 \N \N +13895 2025-11-20 13:08:40.060118+00 2025-11-20 13:08:40.060131+00 f t Invitado Amar invitado-1763644119532@example.com 55555555 \N \N \N \N \N 64 \N \N \N +14076 2025-11-21 18:33:19.731256+00 2025-11-21 18:33:19.731264+00 f t Invitado Amar invitado-1763750000021@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14256 2025-11-23 19:38:47.216082+00 2025-11-23 19:38:47.21609+00 f t Invitado Amar invitado-1763926726801@example.com 55555555 \N \N \N \N \N 1 \N \N \N +7666 2025-08-31 20:10:27.431682+00 2025-08-31 20:10:27.431692+00 f t Juan Ignacio Vigo juanvigo97@hotmail.com 5491161427114 \N Entre Rios 1779 Casa, entre Itapiru y Florida, Piñeyro \N MALE \N -34.6652656 -58.4005244 73 \N \N jvigo +14438 2025-11-25 02:04:01.556278+00 2025-11-25 02:04:01.556293+00 f t Maria florencia Arguelles mfarguelles13@hotmail.com +541121587050 \N Av avellaneda 3961 3 C entre chivilcoy y mercedes \N FEMALE \N -34.6295642 -58.4844865 16 2260 \N \N +13276 2025-11-14 11:45:20.182177+00 2025-11-14 11:45:20.182186+00 f t Invitado Amar invitado-1763120719184@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10017 2025-10-04 22:56:19.226534+00 2025-10-04 22:56:19.226543+00 f t Invitado Amar invitado-1759618578883@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10199 2025-10-07 13:26:46.011033+00 2025-10-07 13:26:46.011042+00 f t Invitado Amar invitado-1759843605448@example.com 55555555 \N \N \N \N \N 38 \N \N \N +10380 2025-10-09 23:50:50.131993+00 2025-10-09 23:50:50.132001+00 f t Invitado Amar invitado-1760053848526@example.com 55555555 \N \N \N \N \N 147 \N \N \N +10562 2025-10-12 20:13:49.333081+00 2025-10-12 20:13:49.33309+00 f t Invitado Amar invitado-1760300029319@example.com 55555555 \N \N \N \N \N 84 \N \N \N +13506 2025-11-17 16:19:26.753634+00 2025-11-17 16:19:26.753642+00 f t Invitado Amar invitado-1763396365781@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10743 2025-10-15 01:32:07.423722+00 2025-10-15 01:32:07.423731+00 f t Marlitt Ordoñez marlittelisa.94@gmail.com +541164898446 \N Medrano 37 6A \N \N -34.6108114 -58.4210206 23 \N \N \N +10924 2025-10-17 02:39:09.023146+00 2025-10-17 02:39:09.023157+00 f t Invitado Amar invitado-1760668748547@example.com 55555555 \N \N \N \N \N 19 \N \N \N +11103 2025-10-19 23:29:06.375525+00 2025-10-19 23:29:06.375534+00 f t Invitado Amar invitado-1760916545662@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11286 2025-10-21 22:29:16.303879+00 2025-10-21 22:29:16.303888+00 f t Invitado Amar invitado-1761085755532@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11466 2025-10-24 20:14:04.418285+00 2025-10-24 20:14:04.418297+00 f t Invitado Amar invitado-1761336843205@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11647 2025-10-27 21:07:00.686541+00 2025-10-27 21:07:00.686551+00 f t Invitado Amar invitado-1761599221252@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11830 2025-10-29 14:04:26.213444+00 2025-10-29 14:04:26.213453+00 f t Invitado Amar invitado-1761746665243@example.com 55555555 \N \N \N \N \N 34 \N \N \N +12013 2025-10-30 23:53:47.909445+00 2025-10-30 23:53:47.909453+00 f t Invitado Amar invitado-1761868426662@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12196 2025-11-01 19:19:43.713353+00 2025-11-01 19:19:43.713363+00 f t Invitado Amar invitado-1762024784460@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13710 2025-11-19 02:06:41.947076+00 2025-11-19 02:06:41.947088+00 f t Invitado Amar invitado-1763518001546@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12377 2025-11-04 18:57:23.368131+00 2025-11-04 18:57:23.368139+00 f t Hernan Vecco hernan540@yahoo.com.ar 5491135676731 \N Av. San Martin 2660 entre Moreno y Emilio Castro. \N MALE \N \N \N 70 2018 \N \N +12559 2025-11-06 23:29:57.345538+00 2025-11-06 23:29:57.345551+00 f t Invitado Amar invitado-1762471796429@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12739 2025-11-08 21:10:19.877886+00 2025-11-08 21:10:19.877894+00 f t Invitado Amar invitado-1762636220184@example.com 55555555 \N \N \N \N \N 78 \N \N \N +12923 2025-11-10 22:25:37.759203+00 2025-11-10 22:25:37.759212+00 f t Invitado Amar invitado-1762813537462@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13105 2025-11-12 19:31:21.94397+00 2025-11-12 19:31:21.943979+00 f t Invitado Amar invitado-1762975605943@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13896 2025-11-20 13:21:22.973661+00 2025-11-20 13:21:22.973671+00 f t Invitado Amar invitado-1763644880349@example.com 55555555 \N \N \N \N \N 18 \N \N \N +14077 2025-11-21 18:53:53.483109+00 2025-11-21 18:53:53.483118+00 f t Invitado Amar invitado-1763751232992@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14257 2025-11-23 19:45:18.679265+00 2025-11-23 19:45:18.679279+00 f t Invitado Amar invitado-1763927114117@example.com 55555555 \N \N \N \N \N 12 \N \N \N +14439 2025-11-25 02:08:10.214997+00 2025-11-25 02:08:10.215009+00 f t Invitado Amar invitado-1764036489664@example.com 55555555 \N \N \N \N \N 82 \N \N \N +8550 2025-09-12 23:41:46.662838+00 2025-09-12 23:41:46.662847+00 f t Invitado Amar invitado-1757720506278@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6641 +13277 2025-11-14 11:51:53.080645+00 2025-11-14 11:51:53.080654+00 f t Invitado Amar invitado-1763121112622@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10018 2025-10-04 22:57:06.645715+00 2025-10-04 22:57:06.645725+00 f t Invitado Amar invitado-1759618626507@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10200 2025-10-07 13:30:11.745944+00 2025-10-07 13:30:11.745959+00 f t Invitado Amar invitado-1759843880347@example.com 55555555 \N \N \N \N \N 90 \N \N \N +13507 2025-11-17 16:23:05.843644+00 2025-11-17 16:23:05.843659+00 f t Invitado Amar invitado-1763396584547@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10381 2025-10-10 00:41:04.471749+00 2025-10-10 00:41:04.471757+00 f t Lucila Siri lusiri0906@gmail.com +541123739381 \N Manuel Gálvez 220 1/2 \N \N -34.6277456 -58.3631517 33 \N \N \N +10563 2025-10-12 20:18:43.795466+00 2025-10-12 20:18:43.795475+00 f t Invitado Amar invitado-1760300322707@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10744 2025-10-15 01:44:56.307255+00 2025-10-15 01:44:56.307266+00 f t Invitado Amar invitado-1760492695900@example.com 55555555 \N \N \N \N \N 31 \N \N \N +10925 2025-10-17 03:04:26.053948+00 2025-10-17 03:04:26.053957+00 f t Invitado Amar invitado-1760670265237@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11104 2025-10-20 00:01:08.256688+00 2025-10-20 00:01:08.256701+00 f t Invitado Amar invitado-1760918466708@example.com 55555555 \N \N \N \N \N 55 \N \N \N +11287 2025-10-21 22:40:46.943463+00 2025-10-21 22:40:46.943471+00 f t Invitado Amar invitado-1761086446392@example.com 55555555 \N \N \N \N \N 82 \N \N \N +11467 2025-10-24 20:28:39.912524+00 2025-10-24 20:28:39.912532+00 f t Invitado Amar invitado-1761337719017@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13711 2025-11-19 02:10:22.094689+00 2025-11-19 02:10:22.094701+00 f t Invitado Amar invitado-1763518221658@example.com 55555555 \N \N \N \N \N 49 \N \N \N +11831 2025-10-29 14:07:36.148434+00 2025-10-29 14:07:36.148443+00 f t Invitado Amar invitado-1761746855328@example.com 55555555 \N \N \N \N \N 34 \N \N \N +12014 2025-10-31 00:11:36.406817+00 2025-10-31 00:11:36.406826+00 f t Invitado Amar invitado-1761869495635@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12197 2025-11-01 19:39:43.113144+00 2025-11-01 19:39:43.113461+00 f t Invitado Amar invitado-1762025981675@example.com 55555555 \N \N \N \N \N 21 \N \N \N +11648 2025-10-27 21:08:12.87565+00 2025-10-27 21:08:12.87566+00 f t Tamara Tedini tamitedini@gmail.com 5491128893721 \N miraflores 2072 casa \N \N \N -34.6439907 -58.4387763 20 1917 \N \N +12378 2025-11-04 19:29:58.731328+00 2025-11-04 19:29:58.731337+00 f t Invitado Amar invitado-1762284598042@example.com 55555555 \N \N \N \N \N 21 \N \N \N +12560 2025-11-06 23:41:45.081166+00 2025-11-06 23:41:45.081177+00 f t Invitado Amar invitado-1762472503855@example.com 55555555 \N \N \N \N \N 33 \N \N \N +12740 2025-11-08 21:21:23.649363+00 2025-11-08 21:21:23.649375+00 f t Invitado Amar invitado-1762636883013@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12924 2025-11-10 22:39:27.963448+00 2025-11-10 22:39:27.963457+00 f t Invitado Amar invitado-1762814367623@example.com 55555555 \N \N \N \N \N 9 \N \N \N +13106 2025-11-12 19:31:47.615714+00 2025-11-12 19:31:47.615722+00 f t Invitado Amar invitado-1762975907405@example.com 55555555 \N \N \N \N \N 39 \N \N \N +13897 2025-11-20 13:34:16.464227+00 2025-11-20 13:34:16.464235+00 f t Invitado Amar invitado-1763645602321@example.com 55555555 \N \N \N \N \N 51 \N \N \N +14078 2025-11-21 18:55:25.343874+00 2025-11-21 18:55:25.343882+00 f t Invitado Amar invitado-1763751324932@example.com 55555555 \N \N \N \N \N 38 \N \N \N +14258 2025-11-23 19:46:23.761982+00 2025-11-23 19:46:23.761992+00 f t Invitado Amar invitado-1763927182807@example.com 55555555 \N \N \N \N \N 71 \N \N \N +14440 2025-11-25 02:08:33.243824+00 2025-11-25 02:08:33.243833+00 f t Invitado Amar invitado-1764036512967@example.com 55555555 \N \N \N \N \N 16 \N \N \N +13278 2025-11-14 11:53:22.211477+00 2025-11-14 11:53:22.211485+00 f t Invitado Amar invitado-1763121201788@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10019 2025-10-04 22:59:00.134179+00 2025-10-04 22:59:00.134189+00 f t Invitado Amar invitado-1759618740020@example.com 55555555 \N \N \N \N \N 60 \N \N \N +10201 2025-10-07 13:30:59.0584+00 2025-10-07 13:30:59.058409+00 f t Invitado Amar invitado-1759843928089@example.com 55555555 \N \N \N \N \N 90 \N \N \N +10382 2025-10-10 01:29:03.823606+00 2025-10-10 01:29:03.823614+00 f t Invitado Amar invitado-1760059743426@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10564 2025-10-12 20:22:57.945709+00 2025-10-12 20:22:57.945716+00 f t Agustina Zabaljauregui bonnieparker0@gmail.com 5491160419681 \N Neuquén 758 \N \N FEMALE 1984-10-02 -34.6160288 -58.4420813 14 \N \N \N +10745 2025-10-15 01:45:13.538716+00 2025-10-15 01:45:13.538725+00 f t Invitado Amar invitado-1760492712883@example.com 55555555 \N \N \N \N \N 111 \N \N \N +13508 2025-11-17 16:50:01.762209+00 2025-11-17 16:50:01.762222+00 f t Invitado Amar invitado-1763398201108@example.com 55555555 \N \N \N \N \N 44 \N \N \N +2970 2025-06-19 10:58:11.914183+00 2025-06-19 10:58:11.914195+00 f t Ezequiel Luberriaga ezequiel.luberriaga@gmail.com +5491140566256 \N Av Scalabrini Ortiz 1720 6 A \N 1983-10-26 -34.590136 -58.4241731 159 1193 \N eluberriaga +11105 2025-10-20 00:25:46.716741+00 2025-10-20 00:25:46.71675+00 f t Invitado Amar invitado-1760919946302@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11288 2025-10-21 22:45:40.947531+00 2025-10-21 22:45:40.947544+00 f t Invitado Amar invitado-1761086739679@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11468 2025-10-24 20:49:11.558707+00 2025-10-24 20:49:11.558718+00 f t Invitado Amar invitado-1761338950608@example.com 55555555 \N \N \N \N \N 65 \N \N \N +11649 2025-10-27 21:10:58.909194+00 2025-10-27 21:10:58.909204+00 f t Invitado Amar invitado-1761599458786@example.com 55555555 \N \N \N \N \N 12 \N \N \N +11832 2025-10-29 14:11:16.454597+00 2025-10-29 14:11:16.454606+00 f t Invitado Amar invitado-1761747076121@example.com 55555555 \N \N \N \N \N 157 \N \N \N +13712 2025-11-19 02:24:57.552612+00 2025-11-19 02:24:57.552624+00 f t Invitado Amar invitado-1763519096424@example.com 55555555 \N \N \N \N \N 64 \N \N \N +13898 2025-11-20 13:49:00.682734+00 2025-11-20 13:49:00.682748+00 f t Invitado Amar invitado-1763646540221@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14079 2025-11-21 19:00:03.694708+00 2025-11-21 19:00:03.694721+00 f t Invitado Amar invitado-1763751603438@example.com 55555555 \N \N \N \N \N 38 \N \N \N +12015 2025-10-31 00:48:59.182554+00 2025-10-31 00:48:59.182563+00 f t Florencia Cifarelli florencia.cifarelli@gmail.com +541131140256 \N Laprida 1898 7 A \N FEMALE \N -34.588556 -58.4011121 9 1944 \N \N +12198 2025-11-01 19:41:30.797825+00 2025-11-01 19:41:30.798374+00 f t Invitado Amar invitado-1762026089741@example.com 55555555 \N \N \N \N \N 74 \N \N \N +12379 2025-11-04 19:37:25.786591+00 2025-11-04 19:37:25.7866+00 f t Invitado Amar invitado-1762285045619@example.com 55555555 \N \N \N \N \N 21 \N \N \N +12561 2025-11-06 23:59:40.932447+00 2025-11-06 23:59:40.932456+00 f t Invitado Amar invitado-1762473578846@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12741 2025-11-08 21:57:18.881153+00 2025-11-08 21:57:18.881162+00 f t Invitado Amar invitado-1762639038034@example.com 55555555 \N \N \N \N \N 63 \N \N \N +12925 2025-11-10 22:40:35.562425+00 2025-11-10 22:40:35.562433+00 f t Invitado Amar invitado-1762814434793@example.com 55555555 \N \N \N \N \N 8 \N \N \N +13107 2025-11-12 19:45:31.191357+00 2025-11-12 19:45:31.191366+00 f t Invitado Amar invitado-1762976728917@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14259 2025-11-23 20:08:28.281876+00 2025-11-23 20:08:28.281885+00 f t Invitado Amar invitado-1763928506515@example.com 55555555 \N \N \N \N \N 21 \N \N \N +14441 2025-11-25 02:09:24.832677+00 2025-11-25 02:09:24.832686+00 f t Invitado Amar invitado-1764036563086@example.com 55555555 \N \N \N \N \N 80 \N \N \N +13279 2025-11-14 12:00:40.116483+00 2025-11-14 12:00:40.116493+00 f t Invitado Amar invitado-1763121638936@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10020 2025-10-04 23:11:38.374482+00 2025-10-04 23:11:38.374495+00 f t Invitado Amar invitado-1759619496945@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10202 2025-10-07 13:34:42.938805+00 2025-10-07 13:34:42.938817+00 f t Invitado Amar invitado-1759844082384@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10383 2025-10-10 01:31:12.933956+00 2025-10-10 01:31:12.933968+00 f t Invitado Amar invitado-1760059872610@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10565 2025-10-12 20:39:03.620584+00 2025-10-12 20:39:03.620592+00 t t Invitado Amar invitado-1760301542778@example.com 55555555 \N \N \N \N \N 59 \N \N \N +10746 2025-10-15 01:48:18.990976+00 2025-10-15 01:48:18.990985+00 f t Invitado Amar invitado-1760492898580@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10926 2025-10-17 03:06:42.091296+00 2025-10-17 03:06:42.091309+00 f t Invitado Amar invitado-1760670401682@example.com 55555555 \N \N \N \N \N 1 \N \N \N +8710 2025-09-16 06:23:51.384612+00 2025-09-16 06:23:51.384624+00 f t Invitado Amar invitado-1758003830587@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6782 +11106 2025-10-20 00:39:07.053352+00 2025-10-20 00:39:07.053361+00 f t Invitado Amar invitado-1760920746067@example.com 55555555 \N \N \N \N \N 87 \N \N \N +11289 2025-10-21 22:46:46.211786+00 2025-10-21 22:46:46.211797+00 f t Invitado Amar invitado-1761086805515@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11469 2025-10-24 20:55:39.109359+00 2025-10-24 20:55:39.109369+00 f t Invitado Amar invitado-1761339338213@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11650 2025-10-27 21:46:00.878076+00 2025-10-27 21:46:00.878084+00 f t Invitado Amar invitado-1761601560468@example.com 55555555 \N \N \N \N \N 155 \N \N \N +11833 2025-10-29 14:19:09.713217+00 2025-10-29 14:19:09.713226+00 t t Invitado Amar invitado-1761747549049@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12016 2025-10-31 00:55:38.557453+00 2025-10-31 00:55:38.557462+00 f t Invitado Amar invitado-1761872138399@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12199 2025-11-01 19:52:18.813902+00 2025-11-01 19:52:18.813911+00 f t Invitado Amar invitado-1762026738138@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13509 2025-11-17 16:51:26.531278+00 2025-11-17 16:51:26.531286+00 f t Invitado Amar invitado-1763398286106@example.com 55555555 \N \N \N \N \N 34 \N \N \N +12380 2025-11-04 19:41:41.871782+00 2025-11-04 19:41:41.87179+00 f t Yana Gallardo yaninameyer444@gmail.com 5491140451205 \N Zapata 476 piso 13 dpto 55 \N FEMALE \N \N \N 1 2021 \N \N +12562 2025-11-07 00:00:17.005215+00 2025-11-07 00:00:17.00523+00 f t Invitado Amar invitado-1762473616035@example.com 55555555 \N \N \N \N \N 113 \N \N \N +12742 2025-11-08 22:02:54.467285+00 2025-11-08 22:02:54.467295+00 f t Invitado Amar invitado-1762639373959@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12926 2025-11-10 22:53:46.695758+00 2025-11-10 22:53:46.695767+00 f t Invitado Amar invitado-1762815225868@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13108 2025-11-12 20:01:04.47997+00 2025-11-12 20:01:04.479979+00 f t Invitado Amar invitado-1762977663230@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13713 2025-11-19 02:26:36.025455+00 2025-11-19 02:26:36.025463+00 f t Invitado Amar invitado-1763519194698@example.com 55555555 \N \N \N \N \N 39 \N \N \N +13899 2025-11-20 13:52:24.660499+00 2025-11-20 13:52:24.660512+00 f t Invitado Amar invitado-1763646744952@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14080 2025-11-21 19:17:38.981665+00 2025-11-21 19:17:38.981677+00 f t Invitado Amar invitado-1763752658151@example.com 55555555 \N \N \N \N \N 88 \N \N \N +14260 2025-11-23 20:09:58.911511+00 2025-11-23 20:09:58.911524+00 f t Invitado Amar invitado-1763928598678@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14442 2025-11-25 02:30:48.444326+00 2025-11-25 02:30:48.444339+00 f t Invitado Amar invitado-1764037847341@example.com 55555555 \N \N \N \N \N \N \N \N \N +13280 2025-11-14 12:21:07.555209+00 2025-11-14 12:21:07.555219+00 f t Invitado Amar invitado-1763122866570@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13510 2025-11-17 16:55:00.752445+00 2025-11-17 16:55:00.752454+00 f t Invitado Amar invitado-1763398498619@example.com 55555555 \N \N \N \N \N 39 \N \N \N +10021 2025-10-04 23:31:08.221425+00 2025-10-04 23:31:08.221437+00 f t Sandra esith Ponzio ponzios705@gmail.com +541141437022 \N Rivadavia 8325 1 no hay timbre \N \N -34.6334358 -58.4807981 16 \N \N \N +13714 2025-11-19 02:29:20.53955+00 2025-11-19 02:29:20.539559+00 f t D Z daniel.zappia10@gmail.com +541139418845 \N Juan a garcia 5377 2 \N \N -34.8411391 -58.3571747 65 2187 \N \N +13900 2025-11-20 13:55:24.051894+00 2025-11-20 13:55:24.051909+00 f t Invitado Amar invitado-1763646923522@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10384 2025-10-10 02:19:58.779423+00 2025-10-10 02:19:58.779431+00 f t Invitado Amar invitado-1760062798155@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10566 2025-10-12 21:22:36.885046+00 2025-10-12 21:22:36.885055+00 f t Invitado Amar invitado-1760304156111@example.com 55555555 \N \N \N \N \N 20 \N \N \N +10203 2025-10-07 13:42:09.36087+00 2025-10-07 13:42:09.36088+00 f t Karin ferrari tropper kferrari.tropper@gmail.com +541134970202 \N blanco Encalada 2975 15/101 \N MALE \N -34.5624788 -58.4647619 3 \N \N \N +10747 2025-10-15 01:52:00.617983+00 2025-10-15 01:52:00.617992+00 f t Invitado Amar invitado-1760493119926@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14081 2025-11-21 19:19:11.425515+00 2025-11-21 19:19:11.425529+00 f t Invitado Amar invitado-1763752751056@example.com 55555555 \N \N \N \N \N 22 \N \N \N +14261 2025-11-23 20:12:15.725642+00 2025-11-23 20:12:15.725654+00 f t Invitado Amar invitado-1763928736207@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14443 2025-11-25 03:02:52.003653+00 2025-11-25 03:02:52.003663+00 f t Invitado Amar invitado-1764039771522@example.com 55555555 \N \N \N \N \N 14 \N \N \N +7243 2025-08-25 03:10:33.421407+00 2025-08-25 03:10:33.421418+00 f t Carla Dopazo carladopazo@hotmail.com +541155761695 \N Rosario 567 Pb c \N FEMALE \N -34.6195559 -58.4368688 14 1675 \N cdopazo +10927 2025-10-17 03:07:05.546022+00 2025-10-17 03:07:05.546035+00 f t Francisco Sepulveda francisco.93.sepulveda@gmail.com +542995941966 \N Avenida avellaneda 1732 6 b \N \N -34.6210736 -58.4553543 14 \N \N \N +11107 2025-10-20 01:04:58.92943+00 2025-10-20 01:04:58.929439+00 f t Invitado Amar invitado-1760922299055@example.com 55555555 \N \N \N \N \N 31 \N \N \N +11290 2025-10-21 22:49:53.330212+00 2025-10-21 22:49:53.330224+00 f t Invitado Amar invitado-1761086993121@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11470 2025-10-24 21:21:27.520857+00 2025-10-24 21:21:27.520866+00 f t Invitado Amar invitado-1761340887105@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11651 2025-10-27 21:47:28.116168+00 2025-10-27 21:47:28.116177+00 f t Invitado Amar invitado-1761601646750@example.com 55555555 \N \N \N \N \N 59 \N \N \N +11834 2025-10-29 14:19:13.96303+00 2025-10-29 14:19:13.96304+00 f t Invitado Amar invitado-1761747551838@example.com 55555555 \N \N \N \N \N 59 \N \N \N +12017 2025-10-31 01:25:47.286126+00 2025-10-31 01:25:47.286135+00 f t Invitado Amar invitado-1761873946192@example.com 55555555 \N \N \N \N \N 74 \N \N \N +12200 2025-11-01 19:58:33.14339+00 2025-11-01 19:58:33.143402+00 f t Invitado Amar invitado-1762027111870@example.com 55555555 \N \N \N \N \N 57 \N \N \N +12381 2025-11-04 19:47:04.607742+00 2025-11-04 19:47:04.607752+00 f t Bruno Gianluca gb.bruno97@gmail.com 5491140226846 \N Arregui 3861 \N \N MALE \N -34.6118132 -58.497211 17 2022 \N \N +12563 2025-11-07 00:54:53.994317+00 2025-11-07 00:54:53.994329+00 f t Mercedes Ciccia cicciamercedes@gmail.com +541136547673 \N Oncativo 1920 \N \N -34.6390554 -58.3886157 112 2054 \N \N +12743 2025-11-08 22:03:54.009338+00 2025-11-08 22:03:54.009347+00 f t Invitado Amar invitado-1762639433706@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12927 2025-11-10 23:11:23.14869+00 2025-11-10 23:11:23.148699+00 f t Invitado Amar invitado-1762816282256@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13109 2025-11-12 20:01:57.833033+00 2025-11-12 20:01:57.833044+00 f t Invitado Amar invitado-1762977717788@example.com 55555555 \N \N \N \N \N 18 \N \N \N +13281 2025-11-14 12:22:07.170956+00 2025-11-14 12:22:07.170966+00 f t Invitado Amar invitado-1763122928842@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10022 2025-10-04 23:49:20.158147+00 2025-10-04 23:49:20.158159+00 f t Invitado Amar invitado-1759621759325@example.com 55555555 \N \N \N \N \N 31 \N \N \N +13511 2025-11-17 16:56:31.647998+00 2025-11-17 16:56:31.648006+00 f t Invitado Amar invitado-1763398590759@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10204 2025-10-07 13:57:25.265043+00 2025-10-07 13:57:25.265057+00 f t Julián José Vioni julianvioni@gmail.com +541141923451 \N Carlos Gardel 961 Casa \N \N -34.7085712 -58.3988991 70 \N \N \N +10385 2025-10-10 02:21:29.077103+00 2025-10-10 02:21:29.077112+00 f t Invitado Amar invitado-1760062887932@example.com 55555555 \N \N \N \N \N 21 \N \N \N +13715 2025-11-19 02:47:34.335069+00 2025-11-19 02:47:34.335083+00 f t Invitado Amar invitado-1763520452637@example.com 55555555 \N \N \N \N \N 51 \N \N \N +10567 2025-10-12 21:36:06.770952+00 2025-10-12 21:36:06.77096+00 f t Fiamma Civale fiammacivale@gmail.com +541133853457 \N Estrada 383 1 \N \N -34.631112 -58.4312847 20 \N \N \N +10748 2025-10-15 02:50:43.730792+00 2025-10-15 02:50:43.730801+00 f t Invitado Amar invitado-1760496643234@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10928 2025-10-17 03:07:55.549406+00 2025-10-17 03:07:55.549415+00 f t Invitado Amar invitado-1760670475107@example.com 55555555 \N \N \N \N \N 25 \N \N \N +11108 2025-10-20 01:08:10.841111+00 2025-10-20 01:08:10.841124+00 f t Invitado Amar invitado-1760922490219@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11291 2025-10-21 23:00:16.3999+00 2025-10-21 23:00:16.399911+00 f t Invitado Amar invitado-1761087615739@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11652 2025-10-27 22:10:24.258805+00 2025-10-27 22:10:24.258815+00 f t Invitado Amar invitado-1761603023856@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11835 2025-10-29 14:23:03.42377+00 2025-10-29 14:23:03.423782+00 f t Invitado Amar invitado-1761747782709@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12018 2025-10-31 01:34:47.217983+00 2025-10-31 01:34:47.217991+00 f t Invitado Amar invitado-1761874487588@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12201 2025-11-01 20:31:13.156461+00 2025-11-01 20:31:13.15647+00 f t Invitado Amar invitado-1762029071928@example.com 55555555 \N \N \N \N \N 44 \N \N \N +12382 2025-11-04 19:49:24.181626+00 2025-11-04 19:49:24.181638+00 f t Invitado Amar invitado-1762285763171@example.com 55555555 \N \N \N \N \N 38 \N \N \N +12564 2025-11-07 00:58:12.884821+00 2025-11-07 00:58:12.884829+00 f t Invitado Amar invitado-1762477092708@example.com 55555555 \N \N \N \N \N 112 \N \N \N +123 2024-10-30 14:13:09.485+00 2024-10-30 14:13:09.485+00 f t Maria Guillermina Garcia guillermina.garcia.187@gmail.com 5491155653728 Gallo 1463 1ro. B entre Mansilla y Charcas Gallo 1463 Piso 1 Dto B, entre Mansilla y Charcas \N FEMALE \N -34.59324270204082 -58.40987353265306 9 272 \N mgarcia +12744 2025-11-08 22:15:58.420331+00 2025-11-08 22:15:58.420343+00 f t Invitado Amar invitado-1762640157329@example.com 55555555 \N \N \N \N \N 39 \N \N \N +12928 2025-11-10 23:15:15.780009+00 2025-11-10 23:15:15.780018+00 f t Invitado Amar invitado-1762816514986@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13110 2025-11-12 20:33:12.753574+00 2025-11-12 20:33:12.753583+00 f t Invitado Amar invitado-1762979592295@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13901 2025-11-20 13:56:09.719806+00 2025-11-20 13:56:09.719815+00 f t Invitado Amar invitado-1763646969503@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14082 2025-11-21 19:20:09.659058+00 2025-11-21 19:20:09.65907+00 f t Invitado Amar invitado-1763752808950@example.com 55555555 \N \N \N \N \N 61 \N \N \N +14262 2025-11-23 20:12:37.862206+00 2025-11-23 20:12:37.862216+00 f t Invitado Amar invitado-1763928756379@example.com 55555555 \N \N \N \N \N 21 \N \N \N +14444 2025-11-25 03:17:54.646794+00 2025-11-25 03:17:54.646805+00 f t Invitado Amar invitado-1764040675032@example.com 55555555 \N \N \N \N \N 18 \N \N \N +277 2024-12-21 17:42:54.168+00 2024-12-21 17:42:54.168+00 f t Karina Lamas klamaspasquino@gmail.com 5491162222001 \N Colombres 953 piso 7 B \N FEMALE 1970-06-07 -34.60566983333333 -58.44061555 11 2263 \N klamas +13282 2025-11-14 12:27:24.917954+00 2025-11-14 12:27:24.917963+00 f t Invitado Amar invitado-1763123244558@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10023 2025-10-05 00:05:46.942413+00 2025-10-05 00:05:46.942422+00 f t Nicolas Ferrer nicolasferrer87@hotmail.com +5491137828245 \N Bulnes 1431 8b \N \N -34.588251 -58.4112129 1 \N \N \N +10205 2025-10-07 14:00:46.796109+00 2025-10-07 14:00:46.796118+00 f t Invitado Amar invitado-1759845646020@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10386 2025-10-10 02:57:28.995505+00 2025-10-10 02:57:28.995513+00 f t Invitado Amar invitado-1760065048200@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10568 2025-10-12 22:15:52.959577+00 2025-10-12 22:15:52.959589+00 f t Invitado Amar invitado-1760307352399@example.com 55555555 \N \N \N \N \N 49 \N \N \N +10749 2025-10-15 03:08:07.012743+00 2025-10-15 03:08:07.012752+00 f t Invitado Amar invitado-1760497685092@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10929 2025-10-17 03:16:08.571619+00 2025-10-17 03:16:08.571628+00 t t Invitado Amar invitado-1760670968042@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11109 2025-10-20 01:46:25.685872+00 2025-10-20 01:46:25.685884+00 f t Invitado Amar invitado-1760924783853@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11292 2025-10-21 23:01:09.005992+00 2025-10-21 23:01:09.006001+00 f t Invitado Amar invitado-1761087669597@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11471 2025-10-24 21:39:40.870202+00 2025-10-24 21:39:40.870212+00 f t Invitado Amar invitado-1761341980427@example.com 55555555 \N \N \N \N \N 34 \N \N \N +11653 2025-10-27 22:16:35.628886+00 2025-10-27 22:16:35.628897+00 f t Invitado Amar invitado-1761603396121@example.com 55555555 \N \N \N \N \N 4 \N \N \N +1100 2025-05-15 18:41:58.331246+00 2025-05-15 18:41:58.331256+00 f t Jenny Fernanda Alvarado Esposito jennyfespitia1903@gmail.com 91158983869 \N Rómulo Naon 2427 5A \N FEMALE 1996-03-19 -34.5670906 -58.4728882 3 1834 \N jalvaradoesposito +11836 2025-10-29 14:43:00.468899+00 2025-10-29 14:43:00.468908+00 f t Invitado Amar invitado-1761748980471@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12019 2025-10-31 01:56:10.758138+00 2025-10-31 01:56:10.758147+00 f t Invitado Amar invitado-1761875769952@example.com 55555555 \N \N \N \N \N 72 \N \N \N +12202 2025-11-01 20:31:36.860696+00 2025-11-01 20:31:36.860706+00 f t Invitado Amar invitado-1762029096545@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12383 2025-11-04 19:54:53.968706+00 2025-11-04 19:54:53.968715+00 f t Cristian chirino chirinosebastian38@gmail.com 5491131529560 \N avenida lastra 3970 timbre de abajo \N MALE \N -34.6070569 -58.5222531 21 2020 \N \N +12565 2025-11-07 01:15:55.793185+00 2025-11-07 01:15:55.793195+00 f t Invitado Amar invitado-1762478154910@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12745 2025-11-08 23:01:25.411699+00 2025-11-08 23:01:25.411708+00 f t Invitado Amar invitado-1762642884780@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12929 2025-11-10 23:37:17.825642+00 2025-11-10 23:37:17.825652+00 f t Invitado Amar invitado-1762817833092@example.com 55555555 \N \N \N \N \N 155 \N \N \N +13111 2025-11-12 20:44:29.694254+00 2025-11-12 20:44:29.694263+00 f t Invitado Amar invitado-1762980269297@example.com 55555555 \N \N \N \N \N 88 \N \N \N +13512 2025-11-17 16:57:41.963777+00 2025-11-17 16:57:41.963788+00 f t Erica Barban barbanerica5@gmail.com +5491159111077 \N Bolivia 3129 5 A \N \N -34.59068 -58.4928983 43 2169 \N \N +13716 2025-11-19 02:50:08.733328+00 2025-11-19 02:50:08.733342+00 f t Invitado Amar invitado-1763520607682@example.com 55555555 \N \N \N \N \N 51 \N \N \N +13902 2025-11-20 14:10:52.617811+00 2025-11-20 14:10:52.61782+00 f t Invitado Amar invitado-1763647851376@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14083 2025-11-21 19:26:26.489311+00 2025-11-21 19:26:26.489319+00 f t Invitado Amar invitado-1763753186040@example.com 55555555 \N \N \N \N \N 70 \N \N \N +14263 2025-11-23 20:33:30.586466+00 2025-11-23 20:33:30.586476+00 f t Invitado Amar invitado-1763930009084@example.com 55555555 \N \N \N \N \N 31 \N \N \N +14445 2025-11-25 04:02:35.35328+00 2025-11-25 04:02:35.353292+00 f t Invitado Amar invitado-1764043356286@example.com 55555555 \N \N \N \N \N 35 \N \N \N +10024 2025-10-05 00:20:46.382112+00 2025-10-05 00:20:46.382124+00 f t Invitado Amar invitado-1759623644966@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10206 2025-10-07 14:08:37.669701+00 2025-10-07 14:08:37.669711+00 f t Invitado Amar invitado-1759846117327@example.com 55555555 \N \N \N \N \N 12 \N \N \N +10387 2025-10-10 03:07:31.626328+00 2025-10-10 03:07:31.626337+00 f t Invitado Amar invitado-1760065651548@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10569 2025-10-12 22:23:47.821416+00 2025-10-12 22:23:47.821427+00 f t Invitado Amar invitado-1760307827357@example.com 55555555 \N \N \N \N \N 59 \N \N \N +10750 2025-10-15 03:29:36.177627+00 2025-10-15 03:29:36.177635+00 f t Invitado Amar invitado-1760498976076@example.com 55555555 \N \N \N \N \N 35 \N \N \N +10930 2025-10-17 03:16:15.101304+00 2025-10-17 03:16:15.101315+00 f t Invitado Amar invitado-1760670974807@example.com 55555555 \N \N \N \N \N 13 \N \N \N +11110 2025-10-20 01:49:01.855944+00 2025-10-20 01:49:01.85596+00 f t Invitado Amar invitado-1760924941252@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11293 2025-10-21 23:16:13.140013+00 2025-10-21 23:16:13.140023+00 f t Invitado Amar invitado-1761088573506@example.com 55555555 \N \N \N \N \N 11 \N \N \N +11472 2025-10-24 22:03:46.556918+00 2025-10-24 22:03:46.556927+00 f t Naira Estrada oña Ooknai48@gmail.com +541137013632 \N Magallanes 686 Casa \N \N -34.6460527 -58.5307083 91 \N \N \N +13283 2025-11-14 12:29:33.166327+00 2025-11-14 12:29:33.166336+00 f t Ana Fabro fabroana@gmail.com +541165118450 \N Díaz Colodrero 3034 7 A \N \N -34.5689125 -58.4895365 29 2143 \N \N +11654 2025-10-27 22:17:02.947957+00 2025-10-27 22:17:02.947972+00 f t Martha Valverde valverde025@gmail.com +541166726416 \N Beron de Astrada 6453 Frente \N \N -34.6890586 -58.4640447 64 \N \N \N +11837 2025-10-29 14:45:56.592885+00 2025-10-29 14:45:56.592895+00 f t Invitado Amar invitado-1761749156781@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12020 2025-10-31 02:15:14.61024+00 2025-10-31 02:15:14.610248+00 f t Invitado Amar invitado-1761876913366@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12203 2025-11-01 20:31:58.117453+00 2025-11-01 20:31:58.117465+00 f t Invitado Amar invitado-1762029117307@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12384 2025-11-04 19:55:27.645514+00 2025-11-04 19:55:27.645522+00 f t Invitado Amar invitado-1762286126105@example.com 55555555 \N \N \N \N \N 82 \N \N \N +13513 2025-11-17 16:58:31.041007+00 2025-11-17 16:58:31.041016+00 f t Invitado Amar invitado-1763398709587@example.com 55555555 \N \N \N \N \N 52 \N \N \N +13717 2025-11-19 02:51:02.29599+00 2025-11-19 02:51:02.296001+00 f t Invitado Amar invitado-1763520661939@example.com 55555555 \N \N \N \N \N 51 \N \N \N +12566 2025-11-07 01:27:13.360723+00 2025-11-07 01:27:13.360735+00 f t Juan Solari jesolari@gmail.com +5491145383951 \N Guido 1612 6A \N \N -34.5915271 -58.3881508 9 2055 \N \N +12746 2025-11-09 00:12:23.927788+00 2025-11-09 00:12:23.9278+00 f t Invitado Amar invitado-1762647141998@example.com 55555555 \N \N \N \N \N 20 \N \N \N +13903 2025-11-20 14:15:06.394085+00 2025-11-20 14:15:06.394095+00 f t Invitado Amar invitado-1763648104692@example.com 55555555 \N \N \N \N \N 42 \N \N \N +12930 2025-11-10 23:47:37.119868+00 2025-11-10 23:47:37.11988+00 f t Antonieta Sánchez mariantoabogado@gmail.com 5491133921752 \N Paul groussac 5467 \N \N FEMALE 1991-11-07 -34.6226996 -58.5171363 21 2097 \N \N +13112 2025-11-12 20:44:29.963662+00 2025-11-12 20:44:29.963671+00 f t Invitado Amar invitado-1762980269564@example.com 55555555 \N \N \N \N \N 20 \N \N \N +14084 2025-11-21 19:28:38.74092+00 2025-11-21 19:28:38.740929+00 f t Invitado Amar invitado-1763753317751@example.com 55555555 \N \N \N \N \N 21 \N \N \N +14264 2025-11-23 20:37:48.415329+00 2025-11-23 20:37:48.415339+00 f t Invitado Amar invitado-1763930267941@example.com 55555555 \N \N \N \N \N 31 \N \N \N +14446 2025-11-25 04:41:19.262355+00 2025-11-25 04:41:19.262364+00 f t Invitado Amar invitado-1764045679307@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13284 2025-11-14 12:33:38.683654+00 2025-11-14 12:33:38.683663+00 f t Invitado Amar invitado-1763123618607@example.com 55555555 \N \N \N \N \N 29 \N \N \N +10025 2025-10-05 00:31:20.359556+00 2025-10-05 00:31:20.359566+00 f t Invitado Amar invitado-1759624280448@example.com 55555555 \N \N \N \N \N 38 \N \N \N +10207 2025-10-07 14:20:35.654536+00 2025-10-07 14:20:35.654545+00 f t Invitado Amar invitado-1759846832036@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10388 2025-10-10 05:11:14.249573+00 2025-10-10 05:11:14.249585+00 f t Invitado Amar invitado-1760073072760@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10570 2025-10-12 22:53:57.151752+00 2025-10-12 22:53:57.151765+00 f t Invitado Amar invitado-1760309856604@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10751 2025-10-15 03:53:06.585567+00 2025-10-15 03:53:06.585576+00 f t Invitado Amar invitado-1760500386191@example.com 55555555 \N \N \N \N \N 91 \N \N \N +10931 2025-10-17 03:30:05.681189+00 2025-10-17 03:30:05.681203+00 f t Invitado Amar invitado-1760671803680@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11111 2025-10-20 02:45:17.643237+00 2025-10-20 02:45:17.643248+00 f t Invitado Amar invitado-1760928317192@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11294 2025-10-21 23:27:14.348482+00 2025-10-21 23:27:14.348491+00 f t Invitado Amar invitado-1761089233542@example.com 55555555 \N \N \N \N \N 67 \N \N \N +11473 2025-10-24 22:23:41.568666+00 2025-10-24 22:23:41.568675+00 f t Invitado Amar invitado-1761344620862@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11655 2025-10-27 22:20:15.257449+00 2025-10-27 22:20:15.257459+00 f t Invitado Amar invitado-1761603615167@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11838 2025-10-29 14:46:15.401265+00 2025-10-29 14:46:15.401274+00 f t Invitado Amar invitado-1761749175649@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12021 2025-10-31 02:17:32.853886+00 2025-10-31 02:17:32.853894+00 f t Invitado Amar invitado-1761877051535@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12204 2025-11-01 20:37:36.927505+00 2025-11-01 20:37:36.927513+00 f t Invitado Amar invitado-1762029455946@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12385 2025-11-04 19:58:05.609483+00 2025-11-04 19:58:05.609492+00 f t Invitado Amar invitado-1762286285023@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12567 2025-11-07 01:30:39.510847+00 2025-11-07 01:30:39.510856+00 f t Invitado Amar invitado-1762479037069@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12747 2025-11-09 00:19:19.806741+00 2025-11-09 00:19:19.806749+00 f t Invitado Amar invitado-1762647558972@example.com 55555555 \N \N \N \N \N 62 \N \N \N +12931 2025-11-10 23:58:40.716583+00 2025-11-10 23:58:40.716598+00 t t Invitado Amar invitado-1762819120134@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13113 2025-11-12 20:48:40.761568+00 2025-11-12 20:48:40.761576+00 f t Invitado Amar invitado-1762980520014@example.com 55555555 \N \N \N \N \N 11 \N \N \N +13514 2025-11-17 17:01:17.017983+00 2025-11-17 17:01:17.017993+00 f t Invitado Amar invitado-1763398875917@example.com 55555555 \N \N \N \N \N 52 \N \N \N +13718 2025-11-19 03:29:06.81489+00 2025-11-19 03:29:06.814899+00 f t Invitado Amar invitado-1763522946186@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13904 2025-11-20 14:16:03.549648+00 2025-11-20 14:16:03.549661+00 f t Invitado Amar invitado-1763648163773@example.com 55555555 \N \N \N \N \N 52 \N \N \N +14085 2025-11-21 19:29:02.15387+00 2025-11-21 19:29:02.153879+00 f t Invitado Amar invitado-1763753341693@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14265 2025-11-23 20:47:40.930236+00 2025-11-23 20:47:40.930245+00 f t Invitado Amar invitado-1763930859041@example.com 55555555 \N \N \N \N \N 113 \N \N \N +14447 2025-11-25 10:00:38.774865+00 2025-11-25 10:00:38.774875+00 f t Invitado Amar invitado-1764064837960@example.com 55555555 \N \N \N \N \N 25 \N \N \N +13285 2025-11-14 12:45:09.184431+00 2025-11-14 12:45:09.18444+00 f t Invitado Amar invitado-1763124307942@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10026 2025-10-05 01:35:07.764062+00 2025-10-05 01:35:07.764072+00 f t Invitado Amar invitado-1759628108589@example.com 55555555 \N \N \N \N \N 82 \N \N \N +10208 2025-10-07 14:21:18.861078+00 2025-10-07 14:21:18.861087+00 f t Melina Fickinger mfickinger@derecho.uba.ar 5491136767488 \N Irala 141 PB 3 \N FEMALE \N -34.6300432 -58.3687079 33 \N \N \N +10389 2025-10-10 07:41:20.66612+00 2025-10-10 07:41:20.666133+00 f t Invitado Amar invitado-1760082078381@example.com 55555555 \N \N \N \N \N 60 \N \N \N +10571 2025-10-12 22:58:02.590836+00 2025-10-12 22:58:02.590845+00 f t Invitado Amar invitado-1760309883721@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10752 2025-10-15 08:19:03.499506+00 2025-10-15 08:19:03.499518+00 f t Invitado Amar invitado-1760516343087@example.com 55555555 \N \N \N \N \N 65 \N \N \N +10932 2025-10-17 03:34:09.604472+00 2025-10-17 03:34:09.604481+00 t t Invitado Amar invitado-1760672049105@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11112 2025-10-20 03:35:57.232916+00 2025-10-20 03:35:57.232925+00 f t Invitado Amar invitado-1760931356771@example.com 55555555 \N \N \N \N \N 58 \N \N \N +11295 2025-10-21 23:38:03.374329+00 2025-10-21 23:38:03.37434+00 f t Invitado Amar invitado-1761089882982@example.com 55555555 \N \N \N \N \N 29 \N \N \N +11474 2025-10-24 22:30:51.085589+00 2025-10-24 22:30:51.085602+00 f t Invitado Amar invitado-1761345050508@example.com 55555555 \N \N \N \N \N 49 \N \N \N +11656 2025-10-27 22:35:17.257949+00 2025-10-27 22:35:17.257961+00 f t Invitado Amar invitado-1761604516606@example.com 55555555 \N \N \N \N \N 9 \N \N \N +11839 2025-10-29 14:46:50.612836+00 2025-10-29 14:46:50.612845+00 f t Invitado Amar invitado-1761749204877@example.com 55555555 \N \N \N \N \N 4 \N \N \N +12022 2025-10-31 02:19:39.706977+00 2025-10-31 02:19:39.706986+00 f t Invitado Amar invitado-1761877178769@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12205 2025-11-01 20:39:13.005323+00 2025-11-01 20:39:13.005335+00 f t Invitado Amar invitado-1762029552138@example.com 55555555 \N \N \N \N \N 11 \N \N \N +12386 2025-11-04 20:22:38.822753+00 2025-11-04 20:22:38.822763+00 f t Invitado Amar invitado-1762287758215@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12568 2025-11-07 01:41:32.446033+00 2025-11-07 01:41:32.446043+00 f t Invitado Amar invitado-1762479691888@example.com 55555555 \N \N \N \N \N 9 \N \N \N +12748 2025-11-09 00:31:51.305667+00 2025-11-09 00:31:51.305675+00 f t Invitado Amar invitado-1762648310107@example.com 55555555 \N \N \N \N \N 147 \N \N \N +13515 2025-11-17 17:02:01.237643+00 2025-11-17 17:02:01.237651+00 f t Invitado Amar invitado-1763398921002@example.com 55555555 \N \N \N \N \N 43 \N \N \N +7436 2025-08-28 15:30:23.117778+00 2025-08-28 15:30:23.117787+00 f t adad adsasd a@a.com +541111301555 \N false 123 \N \N -34.5656599 -58.4510599 3 1630 \N hblanco +2234 2025-06-05 21:49:28.72151+00 2025-06-05 21:49:28.72152+00 f t Florencia Julio florencia009@hotmail.com +541140738975 \N Corredor bancalari-benavidez 3901 2c \N FEMALE \N \N \N 22 1095 \N fjulio +13719 2025-11-19 03:36:59.147245+00 2025-11-19 03:36:59.147254+00 f t Invitado Amar invitado-1763523418664@example.com 55555555 \N \N \N \N \N 10 \N \N \N +13905 2025-11-20 14:34:22.626666+00 2025-11-20 14:34:22.626677+00 f t Invitado Amar invitado-1763649261948@example.com 55555555 \N \N \N \N \N 88 \N \N \N +14086 2025-11-21 19:34:43.596822+00 2025-11-21 19:34:43.596831+00 f t Invitado Amar invitado-1763753683166@example.com 55555555 \N \N \N \N \N 24 \N \N \N +14266 2025-11-23 20:51:06.546318+00 2025-11-23 20:51:06.546332+00 f t Belen Farroni m.belen.farroni@gmail.com +541122988690 \N Cordero 3416 \N \N -34.689002 -58.3472333 73 2244 \N \N +14448 2025-11-25 10:03:05.559775+00 2025-11-25 10:03:05.559786+00 f t Invitado Amar invitado-1764064985103@example.com 55555555 \N \N \N \N \N 26 \N \N \N +13286 2025-11-14 12:54:30.204588+00 2025-11-14 12:54:30.2046+00 f t Invitado Amar invitado-1763124869273@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10027 2025-10-05 01:59:23.592996+00 2025-10-05 01:59:23.593005+00 f t Invitado Amar invitado-1759629564358@example.com 55555555 \N \N \N \N \N 4 \N \N \N +13516 2025-11-17 17:07:08.548509+00 2025-11-17 17:07:08.548518+00 f t Invitado Amar invitado-1763399229625@example.com 55555555 \N \N \N \N \N 3 \N \N \N +10209 2025-10-07 14:52:48.760803+00 2025-10-07 14:52:48.760812+00 f t Victoria Franceschi franceschivictoria@gmail.com +541153467697 \N Peña 2731 6 B \N \N -34.5876125 -58.4022595 9 \N \N \N +10390 2025-10-10 08:19:58.63258+00 2025-10-10 08:19:58.63259+00 f t Invitado Amar invitado-1760084398142@example.com 55555555 \N \N \N \N \N 37 \N \N \N +10572 2025-10-12 23:00:37.770691+00 2025-10-12 23:00:37.770703+00 f t Invitado Amar invitado-1760310036803@example.com 55555555 \N \N \N \N \N 17 \N \N \N +10753 2025-10-15 08:30:23.423369+00 2025-10-15 08:30:23.423378+00 f t Invitado Amar invitado-1760518181799@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13720 2025-11-19 03:39:25.932541+00 2025-11-19 03:39:25.932555+00 f t Invitado Amar invitado-1763523565902@example.com 55555555 \N \N \N \N \N 79 \N \N \N +10933 2025-10-17 03:37:02.779099+00 2025-10-17 03:37:02.779111+00 f t Moira Barron quinteros moirabarron97@gmail.com +541161129461 \N Avenida castañares 1178 Sin timbre \N \N -34.6358664 -58.4348591 20 \N \N \N +11113 2025-10-20 03:38:42.801772+00 2025-10-20 03:38:42.801781+00 f t Invitado Amar invitado-1760931521653@example.com 55555555 \N \N \N \N \N 87 \N \N \N +11296 2025-10-21 23:41:15.173659+00 2025-10-21 23:41:15.173668+00 f t Invitado Amar invitado-1761090074756@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13906 2025-11-20 14:45:49.725455+00 2025-11-20 14:45:49.725464+00 f t Invitado Amar invitado-1763649949940@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11475 2025-10-24 22:43:31.946185+00 2025-10-24 22:43:31.946195+00 f t ines bravo inesbravo22@yahoo.com.ar +541158452564 \N Adolfo Alsina 2238 3 A \N \N -34.6119829 -58.3980272 18 \N \N \N +11657 2025-10-27 22:39:11.150446+00 2025-10-27 22:39:11.150459+00 f t Invitado Amar invitado-1761604750673@example.com 55555555 \N \N \N \N \N 77 \N \N \N +47 2024-10-30 14:13:08.702+00 2024-10-30 14:13:08.702+00 f t Ammar Diab ammardiab@live.com 5491166633799 Ravignani 2352 - PB B - Palermo Av santa fe 5073 5to g \N FEMALE \N -34.57651947391304 -58.43356693043478 1 196 \N adiab +12023 2025-10-31 02:24:49.399682+00 2025-10-31 02:24:49.399691+00 f t Invitado Amar invitado-1761877488620@example.com 55555555 \N \N \N \N \N 153 \N \N \N +12206 2025-11-01 20:56:41.154499+00 2025-11-01 20:56:41.154508+00 f t Invitado Amar invitado-1762030600486@example.com 55555555 \N \N \N \N \N 84 \N \N \N +14087 2025-11-21 19:37:27.563448+00 2025-11-21 19:37:27.56346+00 f t Invitado Amar invitado-1763753847354@example.com 55555555 \N \N \N \N \N 24 \N \N \N +14267 2025-11-23 20:58:34.984399+00 2025-11-23 20:58:34.984411+00 f t Invitado Amar invitado-1763931514531@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12387 2025-11-04 20:29:00.533127+00 2025-11-04 20:29:00.533175+00 f t Leonor Martin leoalabone@gmail.com +5450422295 \N Valle 1386 Dto e \N \N -34.6263509 -58.447149 14 2023 \N \N +12569 2025-11-07 02:01:48.508521+00 2025-11-07 02:01:48.50853+00 f t Invitado Amar invitado-1762480907053@example.com 55555555 \N \N \N \N \N 13 \N \N \N +12749 2025-11-09 00:34:56.87438+00 2025-11-09 00:34:56.874392+00 f t Invitado Amar invitado-1762648494389@example.com 55555555 \N \N \N \N \N 20 \N \N \N +12932 2025-11-11 00:18:08.848188+00 2025-11-11 00:18:08.848199+00 f t Invitado Amar invitado-1762820288269@example.com 55555555 \N \N \N \N \N 7 \N \N \N +14449 2025-11-25 10:37:57.150507+00 2025-11-25 10:37:57.150517+00 f t Invitado Amar invitado-1764067076416@example.com 55555555 \N \N \N \N \N 27 \N \N \N +9856 2025-10-02 13:02:01.757554+00 2025-10-02 13:02:01.757566+00 f t roxana sequeira Sequeiraroxana90@gmail.com 91156937010 \N perdon 4049 \N \N FEMALE \N 44.7618643 0.9573283 23 \N \N rsequeira +13287 2025-11-14 12:59:42.596202+00 2025-11-14 12:59:42.596211+00 f t Invitado Amar invitado-1763125155724@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10028 2025-10-05 03:28:26.76369+00 2025-10-05 03:28:26.763699+00 f t Jacqueline Remischevsky jacqui.rem@outlook.com +5491166210396 \N Marcos paz 2825 Lote 228 barrio cerrado barbarita \N \N -34.4453954 -58.6019584 22 \N \N \N +10210 2025-10-07 14:57:43.82909+00 2025-10-07 14:57:43.829098+00 f t Invitado Amar invitado-1759849062772@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10391 2025-10-10 09:02:34.143315+00 2025-10-10 09:02:34.143327+00 f t Invitado Amar invitado-1760086953783@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10573 2025-10-12 23:29:21.630363+00 2025-10-12 23:29:21.630371+00 f t Invitado Amar invitado-1760311761207@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10754 2025-10-15 09:09:42.992954+00 2025-10-15 09:09:42.992964+00 f t Invitado Amar invitado-1760519382560@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10934 2025-10-17 03:39:11.240308+00 2025-10-17 03:39:11.240317+00 t t Invitado Amar invitado-1760672350735@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11114 2025-10-20 03:44:21.613418+00 2025-10-20 03:44:21.613427+00 f t Invitado Amar invitado-1760931860547@example.com 55555555 \N \N \N \N \N 87 \N \N \N +11297 2025-10-21 23:43:14.949384+00 2025-10-21 23:43:14.949393+00 f t Invitado Amar invitado-1761090194357@example.com 55555555 \N \N \N \N \N 18 \N \N \N +11476 2025-10-24 22:48:55.484498+00 2025-10-24 22:48:55.484508+00 f t Invitado Amar invitado-1761346134199@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13517 2025-11-17 17:07:32.746592+00 2025-11-17 17:07:32.746605+00 f t Invitado Amar invitado-1763399252327@example.com 55555555 \N \N \N \N \N 20 \N \N \N +13721 2025-11-19 04:24:22.279037+00 2025-11-19 04:24:22.279047+00 f t Invitado Amar invitado-1763526259907@example.com 55555555 \N \N \N \N \N 64 \N \N \N +11840 2025-10-29 15:03:33.182077+00 2025-10-29 15:03:33.182086+00 f t Manuela Erbin erbinmanuela@gmail.com 91161697563 \N Tucumán 1244 depto 2 C \N FEMALE 1997-09-13 -34.7039728 -58.391826 70 1929 \N \N +12024 2025-10-31 02:30:19.810371+00 2025-10-31 02:30:19.810384+00 f t Invitado Amar invitado-1761877819229@example.com 55555555 \N \N \N \N \N 153 \N \N \N +12207 2025-11-01 21:06:32.92257+00 2025-11-01 21:06:32.92258+00 f t Invitado Amar invitado-1762031191331@example.com 55555555 \N \N \N \N \N 17 \N \N \N +13907 2025-11-20 14:53:46.228529+00 2025-11-20 14:53:46.228537+00 f t Ariadne Hernandez ariadnehernandezr@gmail.com +5491158929725 \N Capitan General Ramón Freire 2443 1609 \N \N -34.5633825 -58.4670193 3 2207 \N \N +11658 2025-10-27 22:58:37.115507+00 2025-10-27 22:58:37.115516+00 f t Jesica Ardemagni jesicaardemagni@gmail.com +541157497072 \N Av gaona 3020 13 b \N FEMALE \N -34.6174918 -58.4681825 4 2008 \N \N +14088 2025-11-21 19:44:34.171274+00 2025-11-21 19:44:34.171283+00 f t Invitado Amar invitado-1763754273722@example.com 55555555 \N \N \N \N \N 80 \N \N \N +14268 2025-11-23 21:20:28.896921+00 2025-11-23 21:20:28.896931+00 f t Invitado Amar invitado-1763932828315@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12388 2025-11-04 20:29:36.379188+00 2025-11-04 20:29:36.379196+00 f t Agustina Grupico agusgrupico2@live.com.ar +541128639014 \N Rosario 758 1E \N FEMALE \N -34.6204501 -58.4394091 14 2024 \N \N +12570 2025-11-07 02:11:55.120857+00 2025-11-07 02:11:55.120869+00 f t Invitado Amar invitado-1762481514670@example.com 55555555 \N \N \N \N \N 15 \N \N \N +12750 2025-11-09 01:04:27.232107+00 2025-11-09 01:04:27.232116+00 f t Invitado Amar invitado-1762650266785@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12933 2025-11-11 00:48:10.733904+00 2025-11-11 00:48:10.733912+00 f t Invitado Amar invitado-1762822089548@example.com 55555555 \N \N \N \N \N 4 \N \N \N +14450 2025-11-25 10:54:06.861972+00 2025-11-25 10:54:06.861983+00 f t Invitado Amar invitado-1764068045686@example.com 55555555 \N \N \N \N \N 27 \N \N \N +13288 2025-11-14 13:14:08.484814+00 2025-11-14 13:14:08.484821+00 f t Invitado Amar invitado-1763126021851@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10029 2025-10-05 03:28:56.126097+00 2025-10-05 03:28:56.126105+00 f t Invitado Amar invitado-1759634935091@example.com 55555555 \N \N \N \N \N 59 \N \N \N +11659 2025-10-27 23:01:37.871723+00 2025-10-27 23:01:37.871731+00 f t Nestor Alejandro Figuera Silva alexfiguerasilva@gmail.com 5491132554930 \N Sarmiento 2751 piso 2 depto D \N MALE 2005-02-07 -34.606424 -58.4052766 18 1918 \N \N +10211 2025-10-07 15:33:06.458644+00 2025-10-07 15:33:06.458652+00 f t Liliana Romero tradulucia@gmail.com +5491138641045 \N Condarco 4740 7a \N FEMALE \N -34.7206252 -58.3458205 29 \N \N \N +10392 2025-10-10 10:23:37.949448+00 2025-10-10 10:23:37.949457+00 f t Invitado Amar invitado-1760091817753@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10574 2025-10-12 23:41:46.30307+00 2025-10-12 23:41:46.303082+00 f t Invitado Amar invitado-1760312505728@example.com 55555555 \N \N \N \N \N 74 \N \N \N +10755 2025-10-15 10:32:08.147126+00 2025-10-15 10:32:08.147164+00 f t Invitado Amar invitado-1760524327582@example.com 55555555 \N \N \N \N \N 77 \N \N \N +10935 2025-10-17 03:44:48.838831+00 2025-10-17 03:44:48.838845+00 t t Invitado Amar invitado-1760672688234@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13518 2025-11-17 17:09:59.883628+00 2025-11-17 17:09:59.883637+00 f t Invitado Amar invitado-1763399399272@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11115 2025-10-20 03:54:09.99393+00 2025-10-20 03:54:09.993942+00 f t Valentina Toro valentinatorosotera@gmail.com +541167692707 \N Paraguay 3980 5A \N \N -34.5887511 -58.4191068 1 \N \N \N +1082 2025-05-15 13:49:18.107697+00 2025-05-15 13:49:18.107708+00 f t Maria Lujan Lopplo mlioppolo@hotmail.com 5491161763876 \N Pedernera 749 1G (no funciona) \N FEMALE 1974-12-24 -33.6793585 -65.4642793 4 1344 \N mlopplo +13722 2025-11-19 04:28:51.155273+00 2025-11-19 04:28:51.155282+00 f t Invitado Amar invitado-1763526529526@example.com 55555555 \N \N \N \N \N 47 \N \N \N +11477 2025-10-24 23:05:26.490486+00 2025-10-24 23:05:26.490498+00 f t Juan Suskind juansuskind@gmail.com +541144300780 \N Av italia 2534 \N \N -34.4225413 -58.5789235 22 \N \N \N +13908 2025-11-20 15:08:45.708942+00 2025-11-20 15:08:45.70895+00 f t Invitado Amar invitado-1763651324184@example.com 55555555 \N \N \N \N \N 14 \N \N \N +11841 2025-10-29 15:12:31.797432+00 2025-10-29 15:12:31.797444+00 f t Invitado Amar invitado-1761750752044@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12025 2025-10-31 02:32:37.955309+00 2025-10-31 02:32:37.955318+00 f t Invitado Amar invitado-1761877957194@example.com 55555555 \N \N \N \N \N 13 \N \N \N +12208 2025-11-01 21:29:04.373248+00 2025-11-01 21:29:04.373263+00 f t Invitado Amar invitado-1762032543942@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12389 2025-11-04 20:34:12.202972+00 2025-11-04 20:34:12.202981+00 f t Invitado Amar invitado-1762288451954@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12571 2025-11-07 02:17:28.807062+00 2025-11-07 02:17:28.807074+00 f t Invitado Amar invitado-1762481849235@example.com 55555555 \N \N \N \N \N 74 \N \N \N +12751 2025-11-09 01:16:55.343953+00 2025-11-09 01:16:55.343963+00 f t Invitado Amar invitado-1762651013534@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12934 2025-11-11 00:59:51.688003+00 2025-11-11 00:59:51.688012+00 f t Invitado Amar invitado-1762822792192@example.com 55555555 \N \N \N \N \N 41 \N \N \N +14089 2025-11-21 19:48:56.820995+00 2025-11-21 19:48:56.821006+00 f t belen gonzalez belengnoelia@gmail.com 91132572142 \N Blanco Encalada 511 \N \N FEMALE \N -34.551127 -58.5166564 27 2227 \N \N +14269 2025-11-23 21:23:30.356631+00 2025-11-23 21:23:30.356642+00 f t Invitado Amar invitado-1763933009927@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14451 2025-11-25 11:04:15.568135+00 2025-11-25 11:04:15.568145+00 f t Invitado Amar invitado-1764068654846@example.com 55555555 \N \N \N \N \N 27 \N \N \N +13289 2025-11-14 13:19:52.027024+00 2025-11-14 13:19:52.027033+00 f t Invitado Amar invitado-1763126390453@example.com 55555555 \N \N \N \N \N 79 \N \N \N +10030 2025-10-05 03:33:52.137524+00 2025-10-05 03:33:52.137533+00 f t Invitado Amar invitado-1759635231797@example.com 55555555 \N \N \N \N \N 22 \N \N \N +13519 2025-11-17 17:17:57.063567+00 2025-11-17 17:17:57.063578+00 f t Invitado Amar invitado-1763399876605@example.com 55555555 \N \N \N \N \N 89 \N \N \N +10212 2025-10-07 15:59:20.363016+00 2025-10-07 15:59:20.363025+00 f t Lourdes Giarola lourdesgiarola@hotmail.com +542314627103 \N Calle 12 576 576 entre 43 y 44 3c torre 1 \N \N \N \N 147 \N \N \N +10393 2025-10-10 10:24:25.987069+00 2025-10-10 10:24:25.987082+00 f t Invitado Amar invitado-1760091867236@example.com 55555555 \N \N \N \N \N 46 \N \N \N +10575 2025-10-13 00:15:43.299238+00 2025-10-13 00:15:43.299248+00 f t Invitado Amar invitado-1760314542011@example.com 55555555 \N \N \N \N \N 9 \N \N \N +10756 2025-10-15 10:33:28.481014+00 2025-10-15 10:33:28.481024+00 f t Invitado Amar invitado-1760524408102@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10936 2025-10-17 03:51:01.822152+00 2025-10-17 03:51:01.822165+00 f t Invitado Amar invitado-1760673061134@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11116 2025-10-20 04:13:46.085363+00 2025-10-20 04:13:46.085373+00 f t Invitado Amar invitado-1760933625647@example.com 55555555 \N \N \N \N \N 44 \N \N \N +11298 2025-10-22 00:32:39.906481+00 2025-10-22 00:32:39.90649+00 f t Invitado Amar invitado-1761093159319@example.com 55555555 \N \N \N \N \N 112 \N \N \N +13723 2025-11-19 04:32:06.781573+00 2025-11-19 04:32:06.781587+00 f t Invitado Amar invitado-1763526725632@example.com 55555555 \N \N \N \N \N 162 \N \N \N +13909 2025-11-20 15:17:45.169369+00 2025-11-20 15:17:45.169377+00 f t Invitado Amar invitado-1763651864655@example.com 55555555 \N \N \N \N \N 56 \N \N \N +11660 2025-10-27 23:02:07.989555+00 2025-10-27 23:02:07.989566+00 f t Invitado Amar invitado-1761606128518@example.com 55555555 \N \N \N \N \N 23 \N \N \N +11842 2025-10-29 15:15:31.277388+00 2025-10-29 15:15:31.277398+00 f t Invitado Amar invitado-1761750930253@example.com 55555555 \N \N \N \N \N 155 \N \N \N +12026 2025-10-31 02:36:02.18607+00 2025-10-31 02:36:02.186081+00 f t Invitado Amar invitado-1761878162254@example.com 55555555 \N \N \N \N \N 112 \N \N \N +14090 2025-11-21 20:09:48.911545+00 2025-11-21 20:09:48.911555+00 f t Invitado Amar invitado-1763755788513@example.com 55555555 \N \N \N \N \N 18 \N \N \N +14270 2025-11-23 22:22:45.637465+00 2025-11-23 22:22:45.637475+00 f t Invitado Amar invitado-1763936564645@example.com 55555555 \N \N \N \N \N 20 \N \N \N +8168 2025-09-07 20:26:07.213139+00 2025-09-07 20:26:07.213149+00 f t Isadora Salin da Silva salinisadora797@gmail.com 5491176161486 \N Av san Juan 2139 dpto 13c \N FEMALE 2003-03-03 \N \N 12 1761 \N idasilva +12390 2025-11-04 20:37:26.185973+00 2025-11-04 20:37:26.185982+00 f t Invitado Amar invitado-1762288645941@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12572 2025-11-07 02:26:59.09227+00 2025-11-07 02:26:59.092279+00 f t Invitado Amar invitado-1762482418399@example.com 55555555 \N \N \N \N \N 51 \N \N \N +12752 2025-11-09 01:20:43.332083+00 2025-11-09 01:20:43.332096+00 f t Invitado Amar invitado-1762651242395@example.com 55555555 \N \N \N \N \N 26 \N \N \N +12209 2025-11-01 21:33:47.986451+00 2025-11-01 21:33:47.986944+00 f t Kevin Ruiz kevinruiz1333@gmail.com +541137583421 \N El tala 4433 Terreno, casa al fondo \N MALE \N -26.1104193 -65.2778439 85 1976 \N \N +12935 2025-11-11 01:17:25.420969+00 2025-11-11 01:17:25.420982+00 f t Invitado Amar invitado-1762823843213@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14452 2025-11-25 11:36:50.141174+00 2025-11-25 11:36:50.141183+00 f t Invitado Amar invitado-1764070609864@example.com 55555555 \N \N \N \N \N 11 \N \N \N +9137 2025-09-22 19:42:16.019845+00 2025-09-22 19:42:16.019853+00 f t Janaina Cuello janainacuello10@gmail.com 5491125372403 \N av juan b justo 2515 \N \N FEMALE \N -34.6033271 -58.4566629 26 \N \N jcuello +13290 2025-11-14 13:47:26.423294+00 2025-11-14 13:47:26.423305+00 f t Florencia Barbieri barbieriflor@gmail.com 5491124781999 \N Quesada 2066 8c \N FEMALE \N -34.5527067 -58.459983 25 2144 \N \N +10031 2025-10-05 04:06:33.516754+00 2025-10-05 04:06:33.516762+00 f t Gabriela laura Goldar gabiigoldar28@gmail.com +541141819278 \N Godoy cruz 1634 6 \N \N -34.5877927 -58.4345982 1 \N \N \N +10213 2025-10-07 16:35:30.193837+00 2025-10-07 16:35:30.193847+00 f t Adriel Chavarria chavarriaadrielm@gmail.com 5493794142042 \N Guardia Vieja 3938 1B \N MALE \N -34.6008494 -58.4197516 23 \N \N \N +10394 2025-10-10 10:49:44.411074+00 2025-10-10 10:49:44.411084+00 f t Invitado Amar invitado-1760093383624@example.com 55555555 \N \N \N \N \N 39 \N \N \N +10576 2025-10-13 01:21:26.71074+00 2025-10-13 01:21:26.71075+00 f t Invitado Amar invitado-1760318486014@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10757 2025-10-15 10:51:28.898974+00 2025-10-15 10:51:28.898984+00 f t Invitado Amar invitado-1760525487794@example.com 55555555 \N \N \N \N \N 23 \N \N \N +10937 2025-10-17 04:32:39.807676+00 2025-10-17 04:32:39.807687+00 f t Invitado Amar invitado-1760675559405@example.com 55555555 \N \N \N \N \N 154 \N \N \N +11117 2025-10-20 08:06:33.476283+00 2025-10-20 08:06:33.476292+00 f t Invitado Amar invitado-1760947593024@example.com 55555555 \N \N \N \N \N 11 \N \N \N +13520 2025-11-17 17:19:48.63413+00 2025-11-17 17:19:48.634139+00 f t Invitado Amar invitado-1763399988235@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11299 2025-10-22 00:33:28.325088+00 2025-10-22 00:33:28.3251+00 f t Diego Diego diego@diego.com +56911111111 \N Bulbss 5252 \N \N \N \N 32 \N \N \N +11478 2025-10-24 23:08:33.61692+00 2025-10-24 23:08:33.616931+00 f t Invitado Amar invitado-1761347312700@example.com 55555555 \N \N \N \N \N 22 \N \N \N +11661 2025-10-27 23:07:30.242434+00 2025-10-27 23:07:30.242448+00 f t Invitado Amar invitado-1761606449863@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11843 2025-10-29 15:17:31.866754+00 2025-10-29 15:17:31.866763+00 f t Invitado Amar invitado-1761751051463@example.com 55555555 \N \N \N \N \N 67 \N \N \N +12027 2025-10-31 02:36:50.7507+00 2025-10-31 02:36:50.750712+00 f t Invitado Amar invitado-1761878210353@example.com 55555555 \N \N \N \N \N 24 \N \N \N +12210 2025-11-01 21:36:24.161833+00 2025-11-01 21:36:24.162205+00 f t Invitado Amar invitado-1762032983439@example.com 55555555 \N \N \N \N \N 66 \N \N \N +12391 2025-11-04 20:59:23.21263+00 2025-11-04 20:59:23.21264+00 f t Invitado Amar invitado-1762289962442@example.com 55555555 \N \N \N \N \N 38 \N \N \N +12573 2025-11-07 02:53:11.610978+00 2025-11-07 02:53:11.610987+00 f t Invitado Amar invitado-1762483991189@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12753 2025-11-09 01:41:20.57108+00 2025-11-09 01:41:20.571092+00 f t Invitado Amar invitado-1762652479950@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12936 2025-11-11 01:40:00.445657+00 2025-11-11 01:40:00.445666+00 f t Invitado Amar invitado-1762825200058@example.com 55555555 \N \N \N \N \N 16 \N \N \N +13724 2025-11-19 04:34:46.688273+00 2025-11-19 04:34:46.688283+00 f t Invitado Amar invitado-1763526885541@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13910 2025-11-20 15:38:44.771995+00 2025-11-20 15:38:44.772004+00 f t Invitado Amar invitado-1763653123626@example.com 55555555 \N \N \N \N \N 22 \N \N \N +14091 2025-11-21 20:19:13.115676+00 2025-11-21 20:19:13.115689+00 f t Invitado Amar invitado-1763756352504@example.com 55555555 \N \N \N \N \N 21 \N \N \N +14271 2025-11-23 22:24:26.726364+00 2025-11-23 22:24:26.726374+00 f t Invitado Amar invitado-1763936666006@example.com 55555555 \N \N \N \N \N 14 \N \N \N +14453 2025-11-25 11:48:18.619665+00 2025-11-25 11:48:18.619675+00 f t Invitado Amar invitado-1764071298158@example.com 55555555 \N \N \N \N \N 55 \N \N \N +10032 2025-10-05 04:39:57.398942+00 2025-10-05 04:39:57.39896+00 f t Invitado Amar invitado-1759639196629@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10214 2025-10-07 16:58:41.19374+00 2025-10-07 16:58:41.193754+00 f t Invitado Amar invitado-1759856320536@example.com 55555555 \N \N \N \N \N 25 \N \N \N +10395 2025-10-10 10:50:18.033002+00 2025-10-10 10:50:18.033013+00 f t Invitado Amar invitado-1760093417866@example.com 55555555 \N \N \N \N \N 113 \N \N \N +10577 2025-10-13 01:21:54.275446+00 2025-10-13 01:21:54.275456+00 f t Invitado Amar invitado-1760318513326@example.com 55555555 \N \N \N \N \N 40 \N \N \N +10758 2025-10-15 10:58:55.829295+00 2025-10-15 10:58:55.829304+00 f t Omar Farina mvfarina@hotmail.com +541140568042 \N Bernardo de Irigoyen 1320 Casa \N \N -34.5365722 -58.5057029 82 \N \N \N +10938 2025-10-17 04:33:13.017743+00 2025-10-17 04:33:13.017753+00 f t Invitado Amar invitado-1760675592823@example.com 55555555 \N \N \N \N \N 154 \N \N \N +11118 2025-10-20 09:00:34.999919+00 2025-10-20 09:00:34.999934+00 f t Invitado Amar invitado-1760950833539@example.com 55555555 \N \N \N \N \N 72 \N \N \N +11300 2025-10-22 00:42:46.218457+00 2025-10-22 00:42:46.218466+00 f t Invitado Amar invitado-1761093765653@example.com 55555555 \N \N \N \N \N 47 \N \N \N +11479 2025-10-24 23:19:08.49817+00 2025-10-24 23:19:08.498179+00 f t Invitado Amar invitado-1761347947652@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11662 2025-10-27 23:55:09.761998+00 2025-10-27 23:55:09.76201+00 f t Invitado Amar invitado-1761609316233@example.com 55555555 \N \N \N \N \N 31 \N \N \N +11844 2025-10-29 15:30:00.794345+00 2025-10-29 15:30:00.794354+00 f t Invitado Amar invitado-1761751801511@example.com 55555555 \N \N \N \N \N 3 \N \N \N +13291 2025-11-14 14:06:07.864977+00 2025-11-14 14:06:07.864985+00 f t Enoque Borges de Andrade Neto enoqueborges@gmail.com +5491164533324 \N HONDURAS 6038 Torre 3- Piso 8 Depto C \N \N -34.5807487 -58.4407383 1 2145 \N \N +13521 2025-11-17 17:33:54.015493+00 2025-11-17 17:33:54.015502+00 f t Invitado Amar invitado-1763400834010@example.com 55555555 \N \N \N \N \N 1 \N \N \N +12028 2025-10-31 02:37:56.325511+00 2025-10-31 02:37:56.32552+00 f t Carolina Ramirez carolinabramirez018@gmail.com +541149166493 \N Rosario 755 Porteria \N \N -34.620286 -58.4394226 14 1945 \N \N +12211 2025-11-01 21:37:07.692899+00 2025-11-01 21:37:07.69345+00 f t Invitado Amar invitado-1762033027009@example.com 55555555 \N \N \N \N \N 85 \N \N \N +12392 2025-11-04 21:03:04.968623+00 2025-11-04 21:03:04.968634+00 f t Invitado Amar invitado-1762290184262@example.com 55555555 \N \N \N \N \N 45 \N \N \N +12574 2025-11-07 03:47:20.1942+00 2025-11-07 03:47:20.194211+00 f t Invitado Amar invitado-1762487237987@example.com 55555555 \N \N \N \N \N 62 \N \N \N +12754 2025-11-09 01:59:18.520901+00 2025-11-09 01:59:18.520911+00 f t Invitado Amar invitado-1762653557416@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12937 2025-11-11 02:05:46.87757+00 2025-11-11 02:05:46.877586+00 f t Invitado Amar invitado-1762826746490@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13725 2025-11-19 04:35:20.795986+00 2025-11-19 04:35:20.795995+00 f t Invitado Amar invitado-1763526920336@example.com 55555555 \N \N \N \N \N 23 \N \N \N +13911 2025-11-20 15:43:06.377813+00 2025-11-20 15:43:06.377824+00 f t Invitado Amar invitado-1763653385783@example.com 55555555 \N \N \N \N \N 46 \N \N \N +14092 2025-11-21 20:32:34.95393+00 2025-11-21 20:32:34.953941+00 f t Invitado Amar invitado-1763757154604@example.com 55555555 \N \N \N \N \N 1 \N \N \N +14272 2025-11-23 22:37:02.617549+00 2025-11-23 22:37:02.617561+00 f t Invitado Amar invitado-1763937421951@example.com 55555555 \N \N \N \N \N 17 \N \N \N +14454 2025-11-25 11:55:50.624517+00 2025-11-25 11:55:50.624527+00 f t Invitado Amar invitado-1764071749774@example.com 55555555 \N \N \N \N \N 25 \N \N \N +9516 2025-09-28 11:57:10.345296+00 2025-09-28 11:57:10.345308+00 f t Invitado Amar invitado-1759060629761@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7466 +13292 2025-11-14 14:12:09.363032+00 2025-11-14 14:12:09.363043+00 f t Invitado Amar invitado-1763129530053@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13522 2025-11-17 17:36:44.211506+00 2025-11-17 17:36:44.21152+00 f t Invitado Amar invitado-1763401003735@example.com 55555555 \N \N \N \N \N 84 \N \N \N +13726 2025-11-19 04:35:26.928565+00 2025-11-19 04:35:26.928574+00 f t Invitado Amar invitado-1763526926400@example.com 55555555 \N \N \N \N \N 162 \N \N \N +13912 2025-11-20 15:47:15.52765+00 2025-11-20 15:47:15.527659+00 f t Invitado Amar invitado-1763653634707@example.com 55555555 \N \N \N \N \N 79 \N \N \N +14093 2025-11-21 21:00:52.229003+00 2025-11-21 21:00:52.229015+00 f t Invitado Amar invitado-1763758845103@example.com 55555555 \N \N \N \N \N 23 \N \N \N +14273 2025-11-23 22:41:24.997065+00 2025-11-23 22:41:24.997077+00 f t Invitado Amar invitado-1763937683983@example.com 55555555 \N \N \N \N \N 9 \N \N \N +14455 2025-11-25 12:05:23.246377+00 2025-11-25 12:05:23.246389+00 t t Invitado Amar invitado-1764072322226@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10033 2025-10-05 04:40:39.203305+00 2025-10-05 04:40:39.203314+00 f t Invitado Amar invitado-1759639238719@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10215 2025-10-07 16:59:01.010729+00 2025-10-07 16:59:01.010742+00 f t Invitado Amar invitado-1759856340556@example.com 55555555 \N \N \N \N \N 14 \N \N \N +10396 2025-10-10 11:16:16.933386+00 2025-10-10 11:16:16.933399+00 f t Invitado Amar invitado-1760094975872@example.com 55555555 \N \N \N \N \N 59 \N \N \N +10578 2025-10-13 01:39:19.814837+00 2025-10-13 01:39:19.814851+00 f t Invitado Amar invitado-1760319559224@example.com 55555555 \N \N \N \N \N 16 \N \N \N +10759 2025-10-15 12:09:17.139451+00 2025-10-15 12:09:17.13946+00 f t Invitado Amar invitado-1760530156676@example.com 55555555 \N \N \N \N \N 71 \N \N \N +10939 2025-10-17 04:33:52.469407+00 2025-10-17 04:33:52.469416+00 f t Invitado Amar invitado-1760675632101@example.com 55555555 \N \N \N \N \N 65 \N \N \N +11119 2025-10-20 09:01:03.060721+00 2025-10-20 09:01:03.060734+00 f t Invitado Amar invitado-1760950862538@example.com 55555555 \N \N \N \N \N 44 \N \N \N +11301 2025-10-22 00:47:20.146865+00 2025-10-22 00:47:20.146875+00 f t Invitado Amar invitado-1761094039336@example.com 55555555 \N \N \N \N \N 3 \N \N \N +11480 2025-10-24 23:51:39.886975+00 2025-10-24 23:51:39.886986+00 f t Invitado Amar invitado-1761349899703@example.com 55555555 \N \N \N \N \N 11 \N \N \N +11663 2025-10-28 00:01:42.787028+00 2025-10-28 00:01:42.787044+00 f t Invitado Amar invitado-1761609701973@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11845 2025-10-29 15:32:50.786432+00 2025-10-29 15:32:50.786442+00 f t Invitado Amar invitado-1761751970403@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12029 2025-10-31 02:39:58.572536+00 2025-10-31 02:39:58.572544+00 f t Invitado Amar invitado-1761878397463@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12212 2025-11-01 22:00:29.461644+00 2025-11-01 22:00:29.462174+00 f t Invitado Amar invitado-1762034428508@example.com 55555555 \N \N \N \N \N 85 \N \N \N +9861 2025-10-02 13:27:51.177764+00 2025-10-02 13:27:51.177776+00 f t veronica lupano lupanovero@gmail.com 91153479075 \N avenida cabildo 2426 2 H \N FEMALE \N -34.5590429 -58.4594893 3 1865 \N \N +12393 2025-11-04 21:22:59.413279+00 2025-11-04 21:22:59.414491+00 f t Invitado Amar invitado-1762291378204@example.com 55555555 \N \N \N \N \N 32 \N \N \N +12575 2025-11-07 03:49:18.432469+00 2025-11-07 03:49:18.432477+00 f t Invitado Amar invitado-1762487358210@example.com 55555555 \N \N \N \N \N 62 \N \N \N +12755 2025-11-09 02:26:38.781731+00 2025-11-09 02:26:38.781743+00 f t Invitado Amar invitado-1762655197736@example.com 55555555 \N \N \N \N \N 14 \N \N \N +12938 2025-11-11 02:51:15.521888+00 2025-11-11 02:51:15.5219+00 f t Invitado Amar invitado-1762829473613@example.com 55555555 \N \N \N \N \N 74 \N \N \N +9862 2025-10-02 13:29:18.957885+00 2025-10-02 13:29:18.957896+00 f t Invitado Amar invitado-1759411878714@example.com 55555555 \N \N \N \N \N 73 \N \N \N +10034 2025-10-05 05:13:40.844729+00 2025-10-05 05:13:40.844739+00 f t Invitado Amar invitado-1759641220170@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10216 2025-10-07 17:50:48.854009+00 2025-10-07 17:50:48.854017+00 f t Invitado Amar invitado-1759859446765@example.com 55555555 \N \N \N \N \N 154 \N \N \N +10397 2025-10-10 11:37:18.446028+00 2025-10-10 11:37:18.446036+00 f t Invitado Amar invitado-1760096237682@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10579 2025-10-13 02:35:46.943264+00 2025-10-13 02:35:46.943273+00 f t Invitado Amar invitado-1760322945119@example.com 55555555 \N \N \N \N \N 46 \N \N \N +10760 2025-10-15 12:32:56.080266+00 2025-10-15 12:32:56.080275+00 t t Invitado Amar invitado-1760531575566@example.com 55555555 \N \N \N \N \N 18 \N \N \N +10940 2025-10-17 04:34:01.426033+00 2025-10-17 04:34:01.426046+00 f t Invitado Amar invitado-1760675641221@example.com 55555555 \N \N \N \N \N 154 \N \N \N +11120 2025-10-20 09:06:58.189255+00 2025-10-20 09:06:58.189266+00 f t Invitado Amar invitado-1760951217788@example.com 55555555 \N \N \N \N \N 85 \N \N \N +13293 2025-11-14 14:24:42.137001+00 2025-11-14 14:24:42.137012+00 f t Invitado Amar invitado-1763130281776@example.com 55555555 \N \N \N \N \N 29 \N \N \N +13523 2025-11-17 17:40:51.561921+00 2025-11-17 17:40:51.561928+00 f t Invitado Amar invitado-1763401249812@example.com 55555555 \N \N \N \N \N 73 \N \N \N +13727 2025-11-19 05:42:58.551554+00 2025-11-19 05:42:58.551566+00 f t Joaquin Araya joaquinaraya2227@gmail.com +541127869179 \N Av boedo 467 2 \N \N -34.6181426 -58.4168989 23 2188 \N \N +13913 2025-11-20 15:57:59.045905+00 2025-11-20 15:57:59.045916+00 f t Invitado Amar invitado-1763654278625@example.com 55555555 \N \N \N \N \N 154 \N \N \N +14094 2025-11-21 21:01:14.469279+00 2025-11-21 21:01:14.469288+00 f t Invitado Amar invitado-1763758873345@example.com 55555555 \N \N \N \N \N 17 \N \N \N +14274 2025-11-23 23:10:18.023703+00 2025-11-23 23:10:18.023712+00 f t Invitado Amar invitado-1763939417930@example.com 55555555 \N \N \N \N \N 60 \N \N \N +11664 2025-10-28 00:06:33.999087+00 2025-10-28 00:06:33.999095+00 f t Invitado Amar invitado-1761609979160@example.com 55555555 \N \N \N \N \N 52 \N \N \N +11846 2025-10-29 15:33:19.360922+00 2025-10-29 15:33:19.360935+00 f t Invitado Amar invitado-1761751997827@example.com 55555555 \N \N \N \N \N 3 \N \N \N +12030 2025-10-31 02:43:58.524404+00 2025-10-31 02:43:58.524417+00 f t Invitado Amar invitado-1761878637654@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11302 2025-10-22 00:54:11.718199+00 2025-10-22 00:54:11.718211+00 f t Luciana Zignago lucianazignago@gmail.com +541166769965 \N Santos Dumont 3475 3 a \N FEMALE \N -34.5828767 -58.4475536 35 1963 \N \N +393 2025-01-31 21:12:19.868059+00 2025-01-31 21:12:19.868068+00 f t Carolina Sighel carolinasighel@gmail.com +542215757722 \N Humboldt 2421 7A \N 1988-01-03 -34.579017308163266 -58.42853444693878 1 536 \N csighel +12213 2025-11-01 22:20:09.963309+00 2025-11-01 22:20:09.963322+00 f t Mariela Maybank memaybank@hotmail.com +541139390124 \N Caaguazu entre armesti y dinamarca 370 \N \N \N \N 71 1977 \N \N +12394 2025-11-04 21:24:06.009735+00 2025-11-04 21:24:06.009768+00 f t Invitado Amar invitado-1762291433460@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11481 2025-10-24 23:57:36.5763+00 2025-10-24 23:57:36.576312+00 f t Luciana Danquis luciana.danquis@bue.edu.ar +541131124925 \N Virrey Liniers 1960 8 \N FEMALE \N -34.633862 -58.4127681 11 2044 \N \N +12576 2025-11-07 04:31:39.211804+00 2025-11-07 04:31:39.211812+00 f t Invitado Amar invitado-1762489898361@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12756 2025-11-09 02:30:48.980081+00 2025-11-09 02:30:48.980089+00 f t Invitado Amar invitado-1762655448547@example.com 55555555 \N \N \N \N \N 67 \N \N \N +12939 2025-11-11 02:52:32.247393+00 2025-11-11 02:52:32.247403+00 f t Invitado Amar invitado-1762829551789@example.com 55555555 \N \N \N \N \N 113 \N \N \N +264 2024-12-12 15:34:22.74+00 2024-12-12 15:34:22.74+00 f t Raghavender Chilukuri raghuvara.ch@gmail.com 1155128898 \N cabello 3944 depto 7 A \N MALE \N -34.57811024489796 -58.40540411836735 1 409 \N rchilukuri +9863 2025-10-02 13:29:34.297318+00 2025-10-02 13:29:34.297332+00 f t Invitado Amar invitado-1759411894370@example.com 55555555 \N \N \N \N \N 72 \N \N \N +10035 2025-10-05 05:36:13.370018+00 2025-10-05 05:36:13.370027+00 f t Invitado Amar invitado-1759642572741@example.com 55555555 \N \N \N \N \N 112 \N \N \N +10217 2025-10-07 18:18:40.300329+00 2025-10-07 18:18:40.300338+00 f t Invitado Amar invitado-1759861119693@example.com 55555555 \N \N \N \N \N 24 \N \N \N +10398 2025-10-10 12:15:03.206766+00 2025-10-10 12:15:03.206781+00 f t Invitado Amar invitado-1760098501866@example.com 55555555 \N \N \N \N \N 32 \N \N \N +10580 2025-10-13 02:46:43.539094+00 2025-10-13 02:46:43.539213+00 f t Invitado Amar invitado-1760323604687@example.com 55555555 \N \N \N \N \N 19 \N \N \N +10761 2025-10-15 12:40:11.836385+00 2025-10-15 12:40:11.836401+00 f t Invitado Amar invitado-1760531969809@example.com 55555555 \N \N \N \N \N 1 \N \N \N +10941 2025-10-17 09:39:32.526313+00 2025-10-17 09:39:32.526326+00 f t Invitado Amar invitado-1760693971681@example.com 55555555 \N \N \N \N \N 31 \N \N \N +11121 2025-10-20 10:39:30.59818+00 2025-10-20 10:39:30.598189+00 f t Invitado Amar invitado-1760956770011@example.com 55555555 \N \N \N \N \N 1 \N \N \N +11303 2025-10-22 00:58:13.281552+00 2025-10-22 00:58:13.281562+00 f t Invitado Amar invitado-1761094693274@example.com 55555555 \N \N \N \N \N 112 \N \N \N +11482 2025-10-25 00:30:25.508631+00 2025-10-25 00:30:25.508639+00 f t Invitado Amar invitado-1761352225081@example.com 55555555 \N \N \N \N \N 113 \N \N \N +11665 2025-10-28 00:15:47.839808+00 2025-10-28 00:15:47.839817+00 f t Invitado Amar invitado-1761610547821@example.com 55555555 \N \N \N \N \N 33 \N \N \N +11847 2025-10-29 15:34:00.217512+00 2025-10-29 15:34:00.217521+00 f t Invitado Amar invitado-1761752040092@example.com 55555555 \N \N \N \N \N 147 \N \N \N +12031 2025-10-31 02:51:36.3051+00 2025-10-31 02:51:36.305113+00 f t Invitado Amar invitado-1761879094908@example.com 55555555 \N \N \N \N \N 41 \N \N \N +12214 2025-11-01 22:24:59.365531+00 2025-11-01 22:24:59.365539+00 f t Invitado Amar invitado-1762035899281@example.com 55555555 \N \N \N \N \N 71 \N \N \N +12395 2025-11-04 21:29:49.02554+00 2025-11-04 21:29:49.026102+00 f t Invitado Amar invitado-1762291787858@example.com 55555555 \N \N \N \N \N 112 \N \N \N +12577 2025-11-07 04:44:58.056299+00 2025-11-07 04:44:58.056307+00 f t Invitado Amar invitado-1762490697522@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12757 2025-11-09 03:05:33.060071+00 2025-11-09 03:05:33.06008+00 f t Invitado Amar invitado-1762657532469@example.com 55555555 \N \N \N \N \N 18 \N \N \N +9671 2025-09-30 15:22:43.378708+00 2025-09-30 15:22:43.378719+00 f t erica riveros erica.daniela.riveros.amor@gmail.com 91131659376 \N Emilio Mitre 435 14 E \N FEMALE 1987-10-19 -34.6272937 -58.4433107 14 \N \N eriveros +9673 2025-09-30 15:39:39.884815+00 2025-09-30 15:39:39.884828+00 f t Invitado Amar invitado-1759246779157@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7601 +12940 2025-11-11 02:53:38.318288+00 2025-11-11 02:53:38.318299+00 f t Invitado Amar invitado-1762829617876@example.com 55555555 \N \N \N \N \N 71 \N \N \N +1 2024-10-30 14:13:08.283+00 2024-10-30 14:13:08.283+00 f t Rosario Mazziotti rochi_mazziotti@hotmail.com 5491168231089 Ugarteche 3130 3D Ugarteche 3130 Piso 3 Dto D \N FEMALE \N -34.58008111428572 -58.41176384285714 1 151 \N rmazziotti +2 2024-10-30 14:13:08.294+00 2024-10-30 14:13:08.294+00 f t Agustin Amor administracion@fenixpackaging.com.ar 1152578518 Sadi Carnot 2473 Sadi Carnot 2473 \N \N MALE \N -31.429575644167915 -64.16518704650305 2 152 \N aamor +3 2024-10-30 14:13:08.301+00 2024-10-30 14:13:08.301+00 f t Mariana Cantisani marycantisani@gmail.com 1151535392 Av Santa Fe 3996 - 3ro 42 Av Santa Fe 3996 Piso 3 Dto 42 \N FEMALE \N -34.5825266 -58.420005548979596 1 153 \N mcantisani +5 2024-10-30 14:13:08.317+00 2024-10-30 14:13:08.317+00 f t Marcela Ullman marcelaivanaullman@hotmail.com.ar 1558777162 Condarco 355 - Piso 12 depto A - Flores CABA Condarco 355 Piso 12 Dto A \N FEMALE \N -34.62703352040816 -58.46811238163266 4 154 \N mullman +6 2024-10-30 14:13:08.324+00 2024-10-30 14:13:08.324+00 f t Alejandra Piñeiro ap@escribaniapineiro.com.ar 1152470170 Cavia 3033 piso 11 Palermo caba ( entre gelly y castex) Cavia 3033 Piiso 11, entre Gelly y Castex \N FEMALE \N -34.57688640612245 -58.40663552857143 1 155 \N apineiro +7 2024-10-30 14:13:08.332+00 2024-10-30 14:13:08.332+00 f t Alicia Martín alisiamartin@hotmail.com 5491165327757 Directorio 3550. 8 C Directorio 3550 Piso 8 Dto C \N FEMALE \N -34.638291336734696 -58.47482138367347 5 156 \N amartin +8 2024-10-30 14:13:08.339+00 2024-10-30 14:13:08.339+00 f t Andrea Gonzalez administracion@rodamientosrodanor.com.ar 1122361837 Yapeyu 1862. Entre Fleming y Talcahuano. Martinez Yapeyu 1862 Entre Fleming y Talcahuano \N FEMALE \N -34.5043661632653 -58.51858363265306 6 157 \N agonzalez +9 2024-10-30 14:13:08.346+00 2024-10-30 14:13:08.346+00 f t Laybeth Salazar layb_10@hotmail.com 1126978244 virtual - Ucrania 60\n virtual - Ucrania 60 \N \N FEMALE \N \N \N 7 158 \N lsalazar +10 2024-10-30 14:13:08.354+00 2024-10-30 14:13:08.354+00 f t Ornela Sturlese ornelasturlese@gmail.com 1121716034 abril Club de Campo, araucaria 19. Berazategui. CP 1884. Buenos Aires Abril Club de Campo 19 \N \N FEMALE \N -34.81159835 -58.155985777980206 8 159 \N osturlese +11 2024-10-30 14:13:08.364+00 2024-10-30 14:13:08.364+00 f t Aldana Casati aldanascasati@gmail.com 5491141650823 Bonpland 2284 Bonpland 2284 \N \N FEMALE \N -34.5787787 -58.43225378571428 1 160 \N acasati +12 2024-10-30 14:13:08.371+00 2024-10-30 14:13:08.371+00 f t Susana Vaca blanca_tugues@live.com 5491164663733 Posadas 1375 4 B Posadas 1375 Piso 4 Dto B \N FEMALE \N -34.58822455102041 -58.38572701020408 9 161 \N svaca +13 2024-10-30 14:13:08.377+00 2024-10-30 14:13:08.377+00 f t Valentina Alvarado valeangel5871@gmail.com 1132869529 Santos dumont 2475 8d Santos Dumont 2475 Piso 8 Dto D \N FEMALE \N -34.574134975510205 -58.439350628571425 1 162 \N valvarado +14 2024-10-30 14:13:08.385+00 2024-10-30 14:13:08.385+00 f t Verónica Browning vero.browning@gmail.com 5491156194811 pasaje Ancón 5392 - 1B Pasaje Ancón 5392 Piso 1 Dto B \N FEMALE \N -34.5992088125024 -58.47202316229001 1 163 \N vbrowning +15 2024-10-30 14:13:08.393+00 2024-10-30 14:13:08.393+00 f t Gonzalo Piczman ogfp57@gmail.com 1131506113 Nicaragua 6045 - V101 Nicaragua 6045 V101 \N MALE \N -34.577935499999995 -58.43769421068082 1 164 \N gpiczman +16 2024-10-30 14:13:08.4+00 2024-10-30 14:13:08.4+00 f t Antonio Mota acsm.antonio@gmail.com 5521976120476 Dorrego 2080 - 5B Dorrego 2080 Piso 5 Dto B \N MALE \N -34.57865034693878 -58.44016922244898 1 165 \N amota +17 2024-10-30 14:13:08.407+00 2024-10-30 14:13:08.407+00 f t Vanesa Mancini vanesamancini14@gmail.com 1150604549 Monti \N \N \N \N FEMALE \N 44.9379672 7.5400398 10 166 \N vmancini +9674 2025-09-30 15:41:28.44519+00 2025-09-30 15:41:28.4452+00 f t German Reyna german.reyna@live.com +541161461553 \N Miró 440 7A \N MALE \N -34.6282221 -58.4480948 14 \N \N greyna +9675 2025-09-30 16:01:52.097966+00 2025-09-30 16:01:52.097979+00 f t Invitado Amar invitado-1759248111679@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-7602 +9676 2025-09-30 16:21:02.668673+00 2025-09-30 16:21:02.668685+00 f t Adrian Bello adrianhbello@gmail.com 5492644119745 \N Gral Guido 4151 Depto 2, esquina blanco encalada \N MALE \N -34.7307191 -58.2555593 155 \N \N abello +9677 2025-09-30 16:27:34.193632+00 2025-09-30 16:27:34.193644+00 f t Monica Allendec allendemonica48@gmail.com +541162598472 \N Chascomus 3635 \N \N FEMALE \N -34.7386269 -58.3779721 70 \N \N mallendec +9678 2025-09-30 16:34:24.222588+00 2025-09-30 16:34:24.222597+00 f t Josefina Amarilla josefina.aci18@gmail.com 5493624809157 \N almirante atilio Sixto barilari 1450 no anda el timbre \N FEMALE \N -34.5510776 -58.4517917 3 \N \N jamarilla +9679 2025-09-30 16:38:58.36761+00 2025-09-30 16:38:58.367619+00 f t Invitado Amar invitado-1759250337918@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7603 +18 2024-10-30 14:13:08.414+00 2024-10-30 14:13:08.414+00 f t Maria Gabriela Sabella gabriela.sabella@gmail.com 1150189983 Av. La Plata 768 - 1 B Av. La Plata 768 Piso 1 Dto B \N FEMALE \N -34.62457343469388 -58.42715993877551 11 167 \N msabella +19 2024-10-30 14:13:08.421+00 2024-10-30 14:13:08.421+00 f t Cristina Odetti narelcamil@hotmail.com 1161015165 La Rioja 1177 - 1 La Rioja 1177 Dto 1 \N FEMALE \N -34.6240209877551 -58.40722182040817 12 168 \N codetti +20 2024-10-30 14:13:08.43+00 2024-10-30 14:13:08.43+00 f t Nora Rojas noraraquelrojas@hotmail.es 1158513094 Lavalle 1768 - 9 96 Lavalle 1768 Piso 9 Dto 96 \N FEMALE \N -34.6017393 -58.3781082 13 169 \N nrojas +21 2024-10-30 14:13:08.437+00 2024-10-30 14:13:08.437+00 f t Marcela Dorado ignacio@ichibangroup.com 1153401258 Gallo 1688 7 A Gallo 1688 Piso 7 Dto A \N FEMALE \N 37.9293893 13.9467372 1 170 \N mdorado +22 2024-10-30 14:13:08.444+00 2024-10-30 14:13:08.444+00 f t Sol Amoroso tramitesamoroso@gmail.com 5491164750005 Av callao 1330 7B Av Callao 1330 Piso 7 Dto B \N FEMALE \N -34.59340282857143 -58.393106585714285 9 171 \N samoroso +23 2024-10-30 14:13:08.451+00 2024-10-30 14:13:08.451+00 f t Federico Aracre fedearacre98@gmail.com 525636043931 laprida 1520 10 A Laprida 1520 Piso 10 Dto A \N FEMALE \N -31.5358052 -68.5612984 1 172 \N faracre +24 2024-10-30 14:13:08.458+00 2024-10-30 14:13:08.458+00 f t Matias Adrián Pardo pardo1985@gmail.com 1162423067 San Jose de Calasanz 280 8A San Jose de Calasanz 280 Piso 8 Dto A \N MALE \N -34.62231300816327 -58.437915091836736 14 173 \N mpardo +25 2024-10-30 14:13:08.465+00 2024-10-30 14:13:08.465+00 f t Monica Patitucci mmpatitucci@hotmail.com 1132435011 Peru 1066 Perú 1066 \N \N FEMALE \N -34.6178806 -58.37441195 15 174 \N mpatitucci +26 2024-10-30 14:13:08.472+00 2024-10-30 14:13:08.472+00 f t Pamela Figliolo pamfigliolo.94@live.com 1161462366 Yerbal 1857 2B Yerbal 1857 Piso 2 Dto B \N FEMALE \N -34.625293657142855 -58.45686611428572 4 175 \N pfigliolo +28 2024-10-30 14:13:08.486+00 2024-10-30 14:13:08.486+00 f t Guada Cadiz guadacadiz@hotmail.com 1162424488 Bulnes 1963 Pb A Bulnes 1963 PB Dto A \N FEMALE \N -34.58859698571428 -58.41195953877551 1 177 \N gcadiz +29 2024-10-30 14:13:08.493+00 2024-10-30 14:13:08.493+00 f t Yulia Osharova yulia.osharova@gmail.com 1162312971 Uriarte 1B 1436 Uriarte 1436 Piso 1 Dto B \N FEMALE \N -34.58843862040816 -58.433721818367346 1 178 \N yosharova +30 2024-10-30 14:13:08.499+00 2024-10-30 14:13:08.499+00 f t Priscila Huberk pyhuberk@hotmail.com 1162841823 Zabala 2434 pb d Zabala 2434 PB Dto D \N FEMALE \N -34.56337868653938 -58.44228002788544 3 179 \N phuberk +31 2024-10-30 14:13:08.506+00 2024-10-30 14:13:08.506+00 f t Mariano Bacaleinik juani.bagu@gmail.com 573214923546 Arce 555 3d Arce 555 Piso 3 Dto D \N MALE \N -34.56964464693878 -58.43291114897959 1 180 \N mbacaleinik +32 2024-10-30 14:13:08.519+00 2024-10-30 14:13:08.519+00 f t Gisel Pereda gcpereda@gmail.com 1173679557 Dolores 41 2B Dolores 41 Piso 2 Dto B \N FEMALE \N -34.63323224489796 -58.47655663061225 16 181 \N gpereda +33 2024-10-30 14:13:08.527+00 2024-10-30 14:13:08.527+00 f t Miguel Cieri cieri.miguel@gmail.com 1151227582 Antonio Machado 589 casa Antonio Machado 589 Casa \N MALE \N -34.606413097959184 -58.439872983673474 14 182 \N mcieri +34 2024-10-30 14:13:08.54+00 2024-10-30 14:13:08.54+00 f t Gustavo Iseb gustavo.iseb@gmail.com 5491136419500 Adolfo Pedro Carranza 2944 PB 3 Adolfo Pedro Carranza 2944 PB Dto 3 \N MALE \N -37.74809434768519 -57.42754086096049 17 183 \N giseb +35 2024-10-30 14:13:08.553+00 2024-10-30 14:13:08.553+00 f t María Laura Brocca laubrocca@gmail.com 5491127632942 Maipú 350, 4B, CABA Maipú 350 Piso 4 Dto B \N FEMALE \N -33.3397391 -60.2123723 13 184 \N mbrocca +36 2024-10-30 14:13:08.56+00 2024-10-30 14:13:08.56+00 f t Daniela Vallejo dvv90552@gmail.com 5491153325702 Tucuman 458 - No funciona timbre Tucuman 458 No funciona timbre \N FEMALE \N -34.60096154285714 -58.3733704 13 185 \N dvallejo +37 2024-10-30 14:13:08.573+00 2024-10-30 14:13:08.573+00 f t Delfina Rivarola todovaaestarbien1111@gmail.com 5491173660655 Av. Belgrano 2449 3C Av. Belgrano 2449 Piso 3 Dto C \N FEMALE \N -34.614279297959186 -58.400737353061224 18 186 \N drivarola +38 2024-10-30 14:13:08.585+00 2024-10-30 14:13:08.585+00 f t Beatriz Lescano ana_beatriz_lescano@hotmail.com 5491141983619 Quintana 542 (Quintana y Ayacucho) TIMBRE: Piso 6 Quintana 542 (Quintana y Ayacucho) TIMBRE: Piso 6 \N FEMALE \N -34.590296105615344 -58.387496194340976 9 187 \N blescano +39 2024-10-30 14:13:08.608+00 2024-10-30 14:13:08.608+00 f t Mariano Rebord priscicas@gmail.com 5491123198983 Av gral paz 13858 entre justo suarez y gregorio de la ferre Av Gral Paz 13858 Entre Justo Suarez y Gregorio de Laferrere \N MALE \N -16.43137830055955 -67.51274188559579 19 188 \N mrebord +40 2024-10-30 14:13:08.614+00 2024-10-30 14:13:08.614+00 f t Horacio Gonzalez Bujad horacio.bujad@gmail.com 5493884587922 O’Higgins 1563 - 6B - Belgrano O’Higgins 1563 Piso 6 Dto B, entre Virrey del Pino y Virrey Loreto \N MALE \N -34.56482544897959 -58.44852172040816 3 189 \N hgonzalezbujad +41 2024-10-30 14:13:08.627+00 2024-10-30 14:13:08.627+00 f t Silvia Quintanal eseavip@gmail.com 5491158424013 Mariscal Antonio José de Sucre 2020 piso 14 dto A (Entre Arcos y O'Higgins) Mariscal Antonio José de Sucre 2020 Piso 14 Dto A (Entre Arcos y O'Higgins) \N FEMALE \N -34.56189236530612 -58.451511820408165 3 190 \N squintanal +42 2024-10-30 14:13:08.639+00 2024-10-30 14:13:08.639+00 f t Sofia Acosta acostasofiam@gmail.com 5492216282813 Metan 3777 Dpto 3, entre Boedo y Castro Barros Metan 3777 Dto 3, entre Boedo y Castro Barros \N FEMALE \N -34.63609328571429 -58.417418489795914 11 191 \N sacosta +43 2024-10-30 14:13:08.651+00 2024-10-30 14:13:08.651+00 f t Hugo Aldo Marcial hamarcial@yahoo.com.ar 5491158769078 La pampa 2037 Piso 13 Dpto A, entre Arcos y O'Higgins La pampa 2037 Piso 13 Dto A, entre Arcos y O'Higgins \N MALE \N -34.56279755918368 -58.45091546734694 3 192 \N haldomarcial +44 2024-10-30 14:13:08.664+00 2024-10-30 14:13:08.664+00 f t Jorge Daniel Criado jdccriado@gmail.com 5491169777490 Asamblea 1548 7 A - Parque Chacabuco Asamblea 1548 Piso 7 Dto A - Parque Chacabuco \N MALE \N -34.637136047679995 -58.4464945499226 20 193 \N jcriado +45 2024-10-30 14:13:08.676+00 2024-10-30 14:13:08.676+00 f t Gonzalo Zenobi gonzalo.zenobi@gmail.com 5491134598578 Concepción arenal 2779 - Pb D - Palerm Concepción Arenal 2779 PB Dto B \N MALE \N -34.577478179591836 -58.44068185714286 1 194 \N gzenobi +46 2024-10-30 14:13:08.689+00 2024-10-30 14:13:08.689+00 f t Esteban Leonardo leonardoestar@hotmail.com 5491135788509 Montevideo 920 5to A Montevideo 920 Piso 5 Dto A \N MALE \N -34.598185246938776 -58.38980454489796 9 195 \N eleonardo +13294 2025-11-14 14:33:45.336681+00 2025-11-14 14:33:45.336692+00 f t Invitado Amar invitado-1763130824647@example.com 55555555 \N \N \N \N \N 57 \N \N \N +48 2024-10-30 14:13:08.714+00 2024-10-30 14:13:08.714+00 f t Teresa Pillet maia.rosenbaum@gmail.com 5491156616399 Boyaca 45 depto 7mo A (entre Rivadavia y Yerbal) Boyaca 45 Piso 7 Dto A, entre Rivadavia y Yerbal \N FEMALE \N -34.626100822448976 -58.456931673469384 4 197 \N tpillet +49 2024-10-30 14:13:08.728+00 2024-10-30 14:13:08.728+00 f t Florencia Rodriguez florenciaarodriguezz@gmail.com 5491167637754 Gutenberg 3851 Gutenberg 3851 \N \N FEMALE \N -34.595840089795914 -58.513022208163264 21 198 \N frodriguez +762 2025-05-01 13:59:48.906903+00 2025-05-01 13:59:48.906911+00 f t Invitado Amar invitado-1746107987969@example.com 55555555 \N \N \N \N \N 112 \N \N iamar +50 2024-10-30 14:13:08.74+00 2024-10-30 14:13:08.74+00 f t Crisbel Villarroel crissvillarroelc@gmail.com 5491131160052 Conesa 2171, depto. 16 F Conesa 2171 Piso 16 Dto F \N FEMALE \N -34.5646596 -58.46277525714286 3 199 \N cvillarroel +51 2024-10-30 14:13:08.753+00 2024-10-30 14:13:08.753+00 f t Thomas Finsterbusch Thomasfinsterbusch@gmail.com 5491165825451 Tigre \N \N \N \N MALE \N 44.9379672 7.5400398 22 200 \N tfinsterbusch +52 2024-10-30 14:13:08.76+00 2024-10-30 14:13:08.76+00 f t Giovann Galleguillos bani_boyrich@hotmail.com 5491135752209 Av Rivadavia 2230 10 B Av Rivadavia 2230 Piso 10 Dto B \N MALE \N -34.60971685714286 -58.39807544285714 18 201 \N ggalleguillos +53 2024-10-30 14:13:08.773+00 2024-10-30 14:13:08.773+00 f t Paula Rebello paurebello@yahoo.com 5491156575324 Pringles 418, depto. 2 B Pringles 418 Piso 2 Dto B \N FEMALE \N -34.606971495918366 -58.427743808163264 23 202 \N prebello +54 2024-10-30 14:13:08.785+00 2024-10-30 14:13:08.785+00 f t Mercedes Frasca mercedfrasca@gmail.com 5491127227616 Bacacay 4170 6/C Bacacay 4170 Piso 6 Dto C \N FEMALE \N -34.63244812653061 -58.4859954 16 203 \N mfrasca +55 2024-10-30 14:13:08.798+00 2024-10-30 14:13:08.798+00 f t Mayra Ibañez ibzarquitecto@gmail.com 5491151045308 Caldas 1939 Caldas 1939 \N \N FEMALE \N -34.58367518367347 -58.471360265306124 24 204 \N mibanez +56 2024-10-30 14:13:08.81+00 2024-10-30 14:13:08.81+00 f t Agustina Dure aldure65@hotmail.com 5491141926744 Mcal Antonio José de Sucre 2829 - Entre vidal y Av. Crámer Mcal Antonio José de Sucre 2829 Entre Vidal y Av. Crámer \N FEMALE \N -25.29115373121718 -57.573259709818025 3 205 \N adure +57 2024-10-30 14:13:08.816+00 2024-10-30 14:13:08.816+00 f t Mario Leibovich gc@graficacorrientes.com.ar 5491141831492 Virrey Olaguer y Feliú 2674 14° A (entre Amenábar y Moldes, a una cuadra de Virrey de Pino) Virrey Olaguer y Feliú 2674 Piso 14 Dto A (entre Amenábar y Moldes, a una cuadra de Virrey de Pino) \N MALE \N -34.56898218367347 -58.45352004081633 3 206 \N mleibovich +58 2024-10-30 14:13:08.822+00 2024-10-30 14:13:08.822+00 f t Ana Niño umaru2000arg@gmail.com 5491178944638 Av Cabildo 2780 - Belgrano (Departamento sin timbre, llamar para que puedan abrir) Av Cabildo 2780 Departamento sin timbre, llamar para que puedan abrir \N FEMALE \N -34.55646886476111 -58.461890448020746 3 207 \N anino +59 2024-10-30 14:13:08.829+00 2024-10-30 14:13:08.829+00 f t Angelina Quintana angelinaquintana_13@hotmail.com 5491152602802 Marcelo T de Alvear 1685 6B Marcelo T de Alvear 1685 Piso 6 Dto B \N FEMALE \N -34.59715622857143 -58.39146661428572 9 208 \N aquintana +60 2024-10-30 14:13:08.836+00 2024-10-30 14:13:08.836+00 f t Denise Friedenbach deff236@hotmail.com 5491165945608 Amenábar 3069 piso 6 dpto A, Nuñez Amenábar 3069 Piso 6 Dto A \N FEMALE \N -34.55477247346939 -58.465893040816326 25 209 \N dfriedenbach +61 2024-10-30 14:13:08.842+00 2024-10-30 14:13:08.842+00 f t Maria Laura Giovanakis malagio@hotmail.com 5491132654738 Aranguren 128 8 c, Caballito Aranguren 128 Piso 8 Dto C \N FEMALE \N -34.61051166666667 -58.43258004166667 14 210 \N mgiovanakis +62 2024-10-30 14:13:08.854+00 2024-10-30 14:13:08.854+00 f t Rosa Real real.rg@gmail.com 5491127783687 Arenales 1140, piso 3, departamento 3F. Entre Calles Libertad y Cerrito Arenales 1140 Piso 3, Dto F, entre Libertad y Cerrito \N FEMALE \N -34.5947056 -58.3888097 9 211 \N rreal +63 2024-10-30 14:13:08.866+00 2024-10-30 14:13:08.866+00 f t Sofia Arispon sofiaarispon@gmail.com 5491158835120 Olleros 1717 piso 13A, Belgrano Olleros 1717 Piso 13 Dto A \N FEMALE \N -34.5619711 -58.4348881 3 212 \N sarispon +64 2024-10-30 14:13:08.877+00 2024-10-30 14:13:08.877+00 f t Sergio Back sergio.back@outlook.com 5491123931116 Avenida Presidente Roque Sáenz Peña 875 Avenida Presidente Roque Sáenz Peña 875 \N \N MALE \N -34.60503441632653 -58.37884076326531 13 213 \N sback +65 2024-10-30 14:13:08.889+00 2024-10-30 14:13:08.889+00 f t Victoria Darriba victoriadarriba@hotmail.com 5491157579840 Maria Catalina Marchi 245 piso 5 B Maria Catalina Marchi 245 Piso 5 Dto B \N FEMALE \N -34.573927134693875 -58.43324727959184 1 214 \N vdarriba +66 2024-10-30 14:13:08.895+00 2024-10-30 14:13:08.895+00 f t Nadia Bracco nadiabracco.88@gmail.com 5491126389056 av raul scalabrini ortiz 1472 1ero 5, entre honduras y gorriti Av Raul Scalabrini Ortiz 1472 Piso 1 Dto 5, entre Honduras y Gorriti \N FEMALE \N -34.59165524285714 -58.42633345714285 1 215 \N nbracco +67 2024-10-30 14:13:08.901+00 2024-10-30 14:13:08.901+00 f t Sandra Fernandez fernandezsandrae@gmail.com 541159743077 Padilla 876, piso 21, dto 1, Villa Crespo. Padilla 876 Piso 21, Dto 1 \N FEMALE \N -34.59863435 -58.44468347348545 26 216 \N sfernandez +68 2024-10-30 14:13:08.913+00 2024-10-30 14:13:08.913+00 f t Maria Donadio mariamdonadio03@gmail.com 5491140852143 Eduardo Costa 1596. Martinez Eduardo Costa 1596 \N \N FEMALE \N -34.485027836734695 -58.4991382632653 6 217 \N mdonadio +69 2024-10-30 14:13:08.919+00 2024-10-30 14:13:08.919+00 f t Maria Teresa Julio Cesar Lippo juliomaidana4127@gmail.com 5491150574195 Avda.Garay 3740. P.B. "B, Boedo Av. Garay 3740 PB Dto B \N FEMALE \N -34.63162111020408 -58.4170478632653 11 218 \N mlippo +70 2024-10-30 14:13:08.925+00 2024-10-30 14:13:08.925+00 f t Francisco Massa franciscomassa95@gmail.com 5491164884041 Cabello 3373 5A, entre Ruggieri y Paunero, Palermo Cabello 3373 Piso 5 Dto A, entre Ruggieri y Paunero, Palermo \N MALE \N -34.581433728571426 -58.40829383673469 1 219 \N fmassa +71 2024-10-30 14:13:08.931+00 2024-10-30 14:13:08.931+00 f t Carla Vidal carladondero_91@hotmail.com 5491157312939 Tagle 2551 piso 8, Recoleta Tagle 2551 Piso 8, Recoleta \N FEMALE \N -34.58409226734694 -58.40017344693877 9 220 \N cvidal +72 2024-10-30 14:13:08.938+00 2024-10-30 14:13:08.938+00 f t María de la Cruz Corrales mcorrales1812@gmail.com 5491158609715 Sta Maria de Oro 2765 Santa María de Oro 2765 \N \N FEMALE \N -30.973138425604873 -64.50534876353251 1 221 \N mdelacruzcorrales +13295 2025-11-14 14:55:16.622452+00 2025-11-14 14:55:16.622461+00 f t Invitado Amar invitado-1763132152411@example.com 55555555 \N \N \N \N \N 73 \N \N \N +74 2024-10-30 14:13:08.956+00 2024-10-30 14:13:08.956+00 f t Daniela Maidana danyelamaydana@gmail.com 5491167678903 Zufriategui 4803 depto 1, esquina blanco encalada, frente a tecnópolis, Villa Martelli Zufriategui 4803 Dto 1, esq Blanco Encalada, frente a tecnópolis \N FEMALE \N -34.55560636734694 -58.51382751020408 27 223 \N dmaidana +75 2024-10-30 14:13:08.966+00 2024-10-30 14:13:08.966+00 f t Maria Pastore mpastore@rocketmail.com 5491157557697 11 de Septiembre 1650 4 A 11 de Septiembre 1650 Piso 4 Dto A \N FEMALE \N -34.5529809 -58.4561366 3 224 \N mpastore +76 2024-10-30 14:13:08.972+00 2024-10-30 14:13:08.972+00 f t Fermín Fernandez ferminfd144@gmail.com 5491164557391 Uruguay 292 10 D, San Nicolas Uruguay 292 Piso 10 Dto D \N MALE \N -34.605436028571425 -58.38654068163265 13 225 \N ffernandez +77 2024-10-30 14:13:08.978+00 2024-10-30 14:13:08.978+00 f t Facundo Ciro Menendez facumenendez15@hotmail.com 5491168739898 Armenia 1381 depto 9 Armenia 1381 Dto 9 \N MALE \N -34.591669326530614 -58.43046308163265 1 226 \N fciromenendez +78 2024-10-30 14:13:08.991+00 2024-10-30 14:13:08.991+00 f t Karen Fernandez Karenfernandezph@gmail.com 5491133505542 Libertad 976 piso 6 depto "H" Libertad 976 Piso 6 dto H \N FEMALE \N -33.40214775230781 -70.6394419304788 9 227 \N kfernandez +13524 2025-11-17 18:33:45.068707+00 2025-11-17 18:33:45.068716+00 f t Invitado Amar invitado-1763404424658@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13728 2025-11-19 07:08:08.229502+00 2025-11-19 07:08:08.229511+00 f t Invitado Amar invitado-1763536085600@example.com 55555555 \N \N \N \N \N 39 \N \N \N +80 2024-10-30 14:13:09.016+00 2024-10-30 14:13:09.016+00 f t Marcela Duchini marceduchi@hotmail.com 5491160162572 Vuelta de Obligado 1247, 4to piso entre Cespedes y Zabala Vuelta de Obligado 1247 Piso 4, entre Céspedes y Zabala \N FEMALE \N -34.56648375 -58.449847649999995 3 229 \N mduchini +81 2024-10-30 14:13:09.023+00 2024-10-30 14:13:09.023+00 f t Martin Jang kony_martin92@hotmail.com 5491133488978 Cervantes 2166 entre santo tome\n Cervantes 2166 \N \N MALE \N -34.619852640816326 -58.511856153061224 28 230 \N mjang +82 2024-10-30 14:13:09.03+00 2024-10-30 14:13:09.03+00 f t Natalia Valenti nataliavalenti6@gmail.com 5491126495353 Av Triunvirato 5320 Av. Triunvirato 5320 \N \N FEMALE \N -34.57020897959184 -58.491703428571434 29 231 \N nvalenti +83 2024-10-30 14:13:09.036+00 2024-10-30 14:13:09.036+00 f t Maximiliano Haidar maxi.haidar98@gmail.com 5491170139355 Colombres 351 PB A Colombres 351 PB Dto A \N MALE \N -34.6167536 -58.4184204 23 232 \N mhaidar +84 2024-10-30 14:13:09.042+00 2024-10-30 14:13:09.042+00 f t Daniel Moura danimora43@gmail.com 5491157207342 Estoy en Av Santa Fe 5381 Dpto 312 Av. Santa Fe 5381 Dto 312 \N MALE \N -34.57501961632653 -58.43496126326531 1 233 \N dmoura +85 2024-10-30 14:13:09.048+00 2024-10-30 14:13:09.048+00 f t Florencia Macarena Rodriguez R.floreenciia@gmail.com 5491170209458 Paroissien 1689, Entre 11 de septiembre y Av. Libertador, PB B Paroissien 1689 PB Dto B, entre 11 de septiembre y Av. Libertador \N FEMALE \N -34.54309219591836 -58.462976575510204 25 234 \N frodriguez-2 +86 2024-10-30 14:13:09.061+00 2024-10-30 14:13:09.061+00 f t Geronimo Pardo gero.pardo@hotmail.com 5492236037811 Montevideo 1745 5 to piso Montevideo 1745 Piso 5 \N MALE \N -34.59040649387755 -58.38636723469388 9 235 \N gpardo +87 2024-10-30 14:13:09.08+00 2024-10-30 14:13:09.08+00 f t Juana Mesa migatoathy@gmail.com 5491167354592 Av. Int. Hernan M. Giralt 80, C1107 Cdad. Autónoma de Buenos Aires PARRILLA LA RESERVA Av. Int. Hernan M. Giralt 80 Parrilla La Reserva \N FEMALE \N \N \N 30 236 \N jmesa +88 2024-10-30 14:13:09.086+00 2024-10-30 14:13:09.086+00 f t Gabriela De Luca deluca.gaby@gmail.com 5491136906570 Castro Barros 940, planta baja A Castro Barros 940 PB Dto A \N FEMALE \N -34.623462806122454 -58.41913223673469 11 237 \N gdeluca +89 2024-10-30 14:13:09.097+00 2024-10-30 14:13:09.097+00 f t Laura García lauragarcia985@hotmail.com 5491121568958 Palestina 560 PB 3 Palestina 560 PB Dto 3 \N FEMALE \N -34.60494057959183 -58.42604742857143 23 238 \N lgarcia +90 2024-10-30 14:13:09.104+00 2024-10-30 14:13:09.104+00 f t Mariela Seoane marielaseo@hotmail.com 5491158978523 San José de Calasanz 182 Caballito San José de Calasanz 182 \N \N FEMALE \N -34.621228397959186 -58.43827242653061 14 239 \N mseoane +91 2024-10-30 14:13:09.129+00 2024-10-30 14:13:09.129+00 f t Daniela Alvarez priantinicolas6@gmail.com 5491136994500 Moliere 2988\n Moliere 2988 Entre Beiro y Gral Paz \N FEMALE \N -34.614912722448985 -58.52856083469388 21 240 \N dalvarez +92 2024-10-30 14:13:09.144+00 2024-10-30 14:13:09.144+00 f t Emilia Von Wernich emivw@hotmail.com 5492395406126 Gorriti 5929 Palermo Holywood - (es una casa) Gorriti 5929 Palermo Holywood - (es una casa) \N FEMALE \N -34.5822358 -58.440658528571426 1 241 \N evonwernich +93 2024-10-30 14:13:09.15+00 2024-10-30 14:13:09.15+00 f t Nicolás Ardizzi mercado.nico2021@gmail.com 5491161080144 Navarro 4686, timbre azul Navarro 4686 Timbre azul \N MALE \N -34.608070257142856 -58.517152214285716 21 242 \N nardizzi +94 2024-10-30 14:13:09.162+00 2024-10-30 14:13:09.162+00 f t Malena Armani malenaarmani@gmail.com 5491131209887 Vuelta de Obligado 2427, 5º21, Belgrano (entre Monroe y Blanco Encalada) Vuelta de Obligado 2427 Piso 5 Dto 21, entre Monroe y Blanco Encalada \N FEMALE \N -34.55831706530612 -58.45828741632653 3 243 \N marmani +95 2024-10-30 14:13:09.174+00 2024-10-30 14:13:09.174+00 f t Marcela Goñi seacela64@yahoo.com.ar 5491159270714 Bogota 841 8 A entre Rojas y Repetto Bogota 841 Piso 8 Dto A entre Rojas y Repetto \N FEMALE \N -34.61746158367347 -58.44338413673469 14 244 \N mgoni +96 2024-10-30 14:13:09.18+00 2024-10-30 14:13:09.18+00 f t Paula Llamas pachallamas@gmail.com 5491126065515 Av. Dorrego 2657 2do " 7" Av. Dorrego 2657 Piso 2 Dto 7 \N FEMALE \N -34.57428432162162 -58.43379007837838 1 245 \N pllamas +97 2024-10-30 14:13:09.192+00 2024-10-30 14:13:09.192+00 f t Johanna Albera joha_91@hotmail.com 5491149284747 Guemes 4285 1ero 8 - Palermo Guemes 4285 Piso 1 Dto 8 \N FEMALE \N -34.5834689 -58.42085374285715 1 246 \N jalbera +98 2024-10-30 14:13:09.205+00 2024-10-30 14:13:09.205+00 f t Nicolas Camarasa ncamarasa@gmail.com 5491160598453 Av. Córdoba 3029, 13C Av. Córdoba 3029 Piso 13 Dto C \N MALE \N -34.59797344285714 -58.409689199999995 9 247 \N ncamarasa +99 2024-10-30 14:13:09.217+00 2024-10-30 14:13:09.217+00 f t Luisina Herrero mluisinaherrero@gmail.com 5491122545293 Julián Álvarez 372 4to 9 Julián Álvarez 372 Piso 4 Dto 9 \N FEMALE \N -34.60091704285714 -58.43670615714286 26 248 \N lherrero +100 2024-10-30 14:13:09.233+00 2024-10-30 14:13:09.233+00 f t Jesús Briceño jebp2389@gmail.com 5491132962502 Zapiola 4724, depto 2-C Zapiola 4724 Piso 2 Dto C \N MALE \N -34.54315984693878 -58.47968887755102 31 249 \N jbriceno +101 2024-10-30 14:13:09.245+00 2024-10-30 14:13:09.245+00 f t Flavio Pampin flaviopampin@gmail.com 5491162354090 Lambare 826, 6to C. Almagro, CABA Lambare 826 Piso 6 Dto C \N MALE \N -34.60534832857143 -58.43063211224489 23 250 \N fpampin +102 2024-10-30 14:13:09.256+00 2024-10-30 14:13:09.256+00 f t Candela Urdampilleta Candelaurdampilleta55@gmail.com 5492236905737 Hipólito Yrigoyen 3132 Hipólito Yrigoyen 3132 \N \N FEMALE \N -34.61166246752506 -58.41072157163162 18 251 \N curdampilleta +103 2024-10-30 14:13:09.268+00 2024-10-30 14:13:09.268+00 f t Karen Ostaiza ostaizakaren70@gmail.com 5491132391825 Humboldt 1317, 3B Humboldt 1317 Piso 3 Dto B \N FEMALE \N -34.58793626122449 -58.43906972040817 1 252 \N kostaiza +104 2024-10-30 14:13:09.28+00 2024-10-30 14:13:09.28+00 f t Adriana Cabilla adrianacabilla@yahoo.com.ar 5491165284894 Franklin 760, 5to 2, Caballito Franklin 760 Piso 5 Dto 2 \N FEMALE \N -34.60878145 -58.443544216666666 14 253 \N acabilla +105 2024-10-30 14:13:09.291+00 2024-10-30 14:13:09.291+00 f t Milagros Grandinetti Grandinetti milagrosgrandinetti@gmail.com 5491126093885 Yapeyú 859, es entre EEUU e independencia -Boedo Yapeyú 859 Entre Estados Unidos e independencia \N FEMALE \N -34.62226722448979 -58.421499653061225 11 254 \N mgrandinetti +106 2024-10-30 14:13:09.303+00 2024-10-30 14:13:09.303+00 f t Johanna Coifman Johannacoifman@gmail.com 5491140471347 Arengreen 678 piso 6A, Caballito Arengreen 678 Piso 6 Dto A \N FEMALE \N -34.610802 -58.442360541666666 14 255 \N jcoifman +107 2024-10-30 14:13:09.315+00 2024-10-30 14:13:09.315+00 f t Luz Rios Riosluz.luz@gmail.com 5491169530788 Azcuenaga 942 piso 1 dpto 1 Azcuenaga 942 Piso 1 Dpto 1 \N FEMALE \N -34.59747728979592 -58.400588748979594 9 256 \N lrios +108 2024-10-30 14:13:09.336+00 2024-10-30 14:13:09.336+00 f t Mauro Peña mf_pena@me.com 5491149468348 Libertador 894 - 05 A - Recoleta Libertador 894 Piso 5 Dto A \N MALE \N -34.58724105306123 -58.384985969387756 9 257 \N mpena +109 2024-10-30 14:13:09.348+00 2024-10-30 14:13:09.348+00 f t Carolina Ghio Caroghio@yahoo.com.ar 5491152291971 Donato alvarez 972 4 Donato alvarez 972 \N \N FEMALE \N -34.61512622857143 -58.45896104285714 14 258 \N cghio +110 2024-10-30 14:13:09.36+00 2024-10-30 14:13:09.36+00 f t Florencia Piccinni milunagatuna@gmail.com 5491137986278 Pasaje Manuel Padilla 4089, CABA Pasaje Manuel Padilla 4089 \N \N FEMALE \N \N \N 29 259 \N fpiccinni +111 2024-10-30 14:13:09.366+00 2024-10-30 14:13:09.366+00 f t Pablo Soto pablo@soto.com 5491123624461 Teodoro Vilardebó 2473 Teodoro Vilardebó 2473 \N \N MALE \N -34.607709633333336 -58.49450073333333 17 260 \N psoto +112 2024-10-30 14:13:09.373+00 2024-10-30 14:13:09.373+00 f t Nydia Mirtha Barcelo dianazamora.mercado@gmail.com 5491157511311 Juana Manso 1550, Sector Rio 4, Piso 4to, Depto 1 Juana Manso 1550 Sector Rio 4, Piso 4, Dto 1 \N FEMALE \N -34.61543365 -58.361790911878984 30 261 \N nbarcelo +113 2024-10-30 14:13:09.379+00 2024-10-30 14:13:09.379+00 f t Marga Luna margalunaferraro@hotmail.com 5491144151200 Venezuela 3969 timbre 2, Balvanera Venezuela 3969 Timbre 2 \N FEMALE \N -34.61622774999999 -58.4063758 18 262 \N mluna +114 2024-10-30 14:13:09.385+00 2024-10-30 14:13:09.385+00 f t Martina Velasquez martinavelasquez53@gmail.com 5491126829118 Av lafuente 1520 Av La Fuente 1520 \N \N FEMALE \N 18.492401238517612 -69.88450103161061 4 263 \N mvelasquez +115 2024-10-30 14:13:09.396+00 2024-10-30 14:13:09.396+00 f t Paula Lencina pau.f.lencina@gmail.com 5491125963351 Av.Avellaneda 2436 Timbre D - Flores Av. Avellaneda 2436 Timbre D \N FEMALE \N -34.62447004897959 -58.46515051632653 4 264 \N plencina +116 2024-10-30 14:13:09.408+00 2024-10-30 14:13:09.408+00 f t Hernán Vargas herdavaar@gmail.com 5491132452158 Soler 3954 (casa) Soler 3954 Casa \N MALE \N -34.591890579797976 -58.417448289898985 1 265 \N hvargas +117 2024-10-30 14:13:09.421+00 2024-10-30 14:13:09.421+00 f t Melina Sosa sosa.melina@live.com.ar 5491173666295 Vieytes 1369 (8 A) Barracas Vieytes 1369 Piso 8 Dto A \N FEMALE \N -34.64875053846154 -58.37734228205128 32 266 \N msosa +118 2024-10-30 14:13:09.433+00 2024-10-30 14:13:09.433+00 f t Lilian Echeverría lilian.echeverriaramirez@gmail.com 5491150265722 Lerma 186 dpto 102 Lerma 186 Dto 102 \N FEMALE \N -34.59681042857143 -58.42968945714286 26 267 \N lecheverria +120 2024-10-30 14:13:09.456+00 2024-10-30 14:13:09.456+00 f t Solange Fogante solangefogante@gmail.com 5491136929237 : Lugones 2486 5A Lugones 2486 Piso 5 Dto A \N FEMALE \N -34.57086971428572 -58.479909 29 269 \N sfogante +121 2024-10-30 14:13:09.468+00 2024-10-30 14:13:09.468+00 f t Monica Miguelez miguelezmonica@yahoo.com.ar 5491151542474 Braun Menéndez 235. Piso 10. Depto 3 Braun Menéndez 235 Piso 10, Dto 3 \N FEMALE \N -34.6276874 -58.36269184256208 33 270 \N mmiguelez +122 2024-10-30 14:13:09.475+00 2024-10-30 14:13:09.475+00 f t Laura Santiago lauretis15@hotmail.coml 5491164942467 Humberto Primo 3029 Dpto 03\n Humberto Primo 3029 Dto 03 \N FEMALE \N -34.623224671428574 -58.40779368571429 12 271 \N lsantiago +13296 2025-11-14 14:57:37.257828+00 2025-11-14 14:57:37.257835+00 f t Invitado Amar invitado-1763132256528@example.com 55555555 \N \N \N \N \N 90 \N \N \N +124 2024-10-30 14:13:09.492+00 2024-10-30 14:13:09.492+00 f t Silvina Piras silpiras@hotmail.com 5491144052772 Av. Pueyrredón 1975 2 D. Entre Melo y Peña Av. Pueyrredón 1975 Piso 2 Dto D, entre Melo y Peña \N FEMALE \N -34.588657725000004 -58.398924012500004 9 273 \N spiras +125 2024-10-30 14:13:09.504+00 2024-10-30 14:13:09.504+00 f t Ivanna Sinopoli ivannasinopoli@hotmail.com 5491126754623 Blanco encalada 3012, piso 11 E Blanco encalada 3012 Piso 11 Dto E \N FEMALE \N -34.56290321836735 -58.46519716326531 3 274 \N isinopoli +126 2024-10-30 14:13:09.51+00 2024-10-30 14:13:09.51+00 f t Soledad Di Meco albasoledad92@gmail.com 5491156542987 Avda Curapaligüe 599 piso 2 dto B. Esquina Bilbao. Avda Curapaligüe 599 Piso 2 Dto B, squina Bilbao. \N FEMALE \N -34.6315766 -58.4512501 20 275 \N sdimeco +127 2024-10-30 14:13:09.545+00 2024-10-30 14:13:09.545+00 f t Laura Espinosa lauespinosa33@gmail.com 5491125211974 Virrey Aviles 3214 dpto 3 Virrey Aviles 3214 Dto 3 \N FEMALE \N -34.574588 -58.4596775 3 276 \N lespinosa +128 2024-10-30 14:13:09.557+00 2024-10-30 14:13:09.557+00 f t Valeria Ascona valzya@gmail.com 5491160531934 Linneo 1972 dtoB entre Av San Martin y Terrero Linneo 1972 Dto B, entre Av San Martin y Terrero \N FEMALE \N -34.601923771428574 -58.47321735714286 34 277 \N vascona +129 2024-10-30 14:13:09.569+00 2024-10-30 14:13:09.569+00 f t Maria Cecilia Valazza mcvalazza@yahoo.com.ar 5491141575914 Plaza 1937 ( entre Echeverría y Sucre) Justo en la esquina del pasaje Manuel Padilla Plaza 1937 Entre Echeverría y Sucre, justo en la esquina del pasaje Manuel Padilla \N FEMALE \N -31.637537998395583 -60.6989615909205 3 278 \N mvalazza +130 2024-10-30 14:13:09.585+00 2024-10-30 14:13:09.585+00 f t Mora Urzagasti Mora.urza@gmail.com 5491166603531 Acoyte 481 2do F Acoyte 481 Piso 2 Dto F \N FEMALE \N -34.61303202653061 -58.4381167 14 279 \N murzagasti +131 2024-10-30 14:13:09.597+00 2024-10-30 14:13:09.597+00 f t Bianca D'Aleo biancadaleo@gmail.com 5491155231251 Formosa 511 Formosa 511 \N \N FEMALE \N -34.621209116326526 -58.43547693265306 14 280 \N bdaleo +132 2024-10-30 14:13:09.603+00 2024-10-30 14:13:09.603+00 f t Analía Urdapilleta urdapilleta.analia@gmail.com 5491123847166 Av callao 776 1°b Av Callao 776 Piso 1 Dto B \N FEMALE \N -34.60003593469388 -58.39301693877551 18 281 \N aurdapilleta +133 2024-10-30 14:13:09.636+00 2024-10-30 14:13:09.636+00 f t Pablo Giambartolome pablogiam@outlook.com 5491167073583 Av. Eva Perón 2070. Av. Eva Perón 2070 \N \N MALE \N -34.637315199999996 -58.45101423469388 20 282 \N pgiambartolome +134 2024-10-30 14:13:09.647+00 2024-10-30 14:13:09.647+00 f t Erica Barrueco ericabarrueco@gmail.com 5491140292993 Vidal 1651, Belgrano Vidal 1651 \N \N FEMALE \N -34.56814914489796 -58.456838759183675 3 283 \N ebarrueco +135 2024-10-30 14:13:09.659+00 2024-10-30 14:13:09.659+00 f t Micaela Lourdes micachini_1@hotmail.com 5492612171377 Arribeños 2153, 5c, barrio chino Arribeños 2153 Piso 5 Dto C, Barrio Chino \N FEMALE \N -34.55748841851852 -58.4504729 3 284 \N mlourdes +136 2024-10-30 14:13:09.671+00 2024-10-30 14:13:09.671+00 f t Diego Pollini medubatalita@gmail.com 5491155640027 avelino diaz 1919 Avelino Diaz 1919 \N \N MALE \N -34.63630959829462 -58.43368315019004 20 285 \N dpollini +137 2024-10-30 14:13:09.683+00 2024-10-30 14:13:09.683+00 f t Agustina Torra Torraagustina@gmail.com 5491155735734 Mosconi 3226 4A\n Mosconi 3226 Piso 4 Dto A \N FEMALE \N -34.59759971743869 -58.5216680138566 21 286 \N atorra +138 2024-10-30 14:13:09.693+00 2024-10-30 14:13:09.693+00 f t Susana Ledesma psicopedsusledesma@gmail.com 5491168076877 Mendoza 2575 2G Mendoza 2575 Piso 2 Dto 6 \N FEMALE \N -34.56197914285714 -58.45917426938775 3 287 \N sledesma +139 2024-10-30 14:13:09.709+00 2024-10-30 14:13:09.709+00 f t Marcela Napoli marcemar2962@gmail.com 5491126704709 Av dorrego 898 piso 4B torre 2\n Av dorrego 898 Torre 2, Piso 4 Dto B \N FEMALE \N -34.590959448979596 -58.44697268367347 35 288 \N mnapoli +140 2024-10-30 14:13:09.716+00 2024-10-30 14:13:09.716+00 f t Rafael Villanueva rafael.villanueva.orsini@gmail.com 5491156445525 French 2357 10 A French 2357 Piso 10 Dto A \N MALE \N -34.5911082 -58.39864525714285 9 289 \N rvillanueva +141 2024-10-30 14:13:09.728+00 2024-10-30 14:13:09.728+00 f t Ariana Fernández Arianamedica@gmail.com 5491135983699 Constitución 3139 piso 1 dpto b san Cristóbal caba\n Constitución 3139 Piso 1 Dto B \N FEMALE \N -34.627299791666665 -58.409211875 12 290 \N afernandez +142 2024-10-30 14:13:09.739+00 2024-10-30 14:13:09.739+00 f t Roger Alvarado rjalvaradr@gmail.com 5491140680881 teniente general Juan Domingo Perón 1435, piso 2, depto 2A, timbre 201 Tte Gral Juan Domingo Perón 1435 Piiso 2, Dto A, Timbre 201 \N MALE \N \N \N 13 291 \N ralvarado +143 2024-10-30 14:13:09.751+00 2024-10-30 14:13:09.751+00 f t Fernando Badán cjfb72@gmail.com 5491137988206 Rivera indarte 1167 Rivera indarte 1167 \N \N MALE \N -34.64183312244898 -58.4530293877551 4 292 \N fbadan +144 2024-10-30 14:13:09.758+00 2024-10-30 14:13:09.758+00 f t Lía Maraciotola liamaraciotola@gmail.com 5491123407207 Republica de Eslovenia 1985, 4. 0401. Palermo Republica de Eslovenia 1985 Timbre 0401 \N FEMALE \N -34.57084464285714 -58.43482304285715 1 293 \N lmaraciotola +13525 2025-11-17 18:38:02.11557+00 2025-11-17 18:38:02.115583+00 f t Invitado Amar invitado-1763404680501@example.com 55555555 \N \N \N \N \N 113 \N \N \N +145 2024-10-30 14:13:09.781+00 2024-10-30 14:13:09.781+00 f t Marcela Gleiser Marcela.gleiser@gmail.com 5491156157168 O higgins 2576 5to c O higgins 2576 Piso 5 Dto C \N FEMALE \N -34.555525402040814 -58.45679772040816 3 294 \N mgleiser +146 2024-10-30 14:13:09.788+00 2024-10-30 14:13:09.788+00 f t Nazarena Dos Santos nazarenads@gmail.com 5491135652774 Agüero 1566, 4to A Agüero 1566 4to A \N FEMALE \N -34.59193899795918 -58.40750816734694 9 295 \N ndossantos +147 2024-10-30 14:13:09.794+00 2024-10-30 14:13:09.794+00 f t Talita Paulino talitasouzapaulino@hotmail.com 554187735596 AV RIVADAVIA 8916, 3B Av Rivadavia 8916 Piso 3 Dto B \N FEMALE \N -34.635847142857145 -58.489744214285714 36 296 \N tpaulino +148 2024-10-30 14:13:09.807+00 2024-10-30 14:13:09.807+00 f t Valentino Lociski Valentinoa.lociski@gmail.com 5493731494441 F. Roosevelt 1920 4B - Belgrano F. Roosevelt 1920 Piso 4 Dto B \N MALE \N 33.980008909090905 -103.12646279545454 3 297 \N vlociski +149 2024-10-30 14:13:09.83+00 2024-10-30 14:13:09.83+00 f t Agustina Estors agustinaestors99@gmail.com 5491126353824 Blanco Encalada 2477 portería Blanco Encalada 2477 Portería \N FEMALE \N -34.55960104489796 -58.45989083877551 3 298 \N aestors +150 2024-10-30 14:13:09.836+00 2024-10-30 14:13:09.836+00 f t Sofia Bluthgen sofiblut@hotmail.com 5491164858803 Av las Heras 1946 1A Av. Las Heras 1946 Piso 1 Dto A \N FEMALE \N -34.5906125 -58.39350460612245 9 299 \N sbluthgen +151 2024-10-30 14:13:09.843+00 2024-10-30 14:13:09.843+00 f t Marta Ossa ositaossa@gmail.com 5491135561221 : Castro 1619 timbre 2 Castro 1619 Timbre 2 \N FEMALE \N -34.63211514285714 -58.41930506122449 11 300 \N mossa +152 2024-10-30 14:13:09.855+00 2024-10-30 14:13:09.855+00 f t Marta Matelica matelicamarta@gmail.com 5491166866728 Inclán 3483 PB 1 esquina Maza Inclán 3483 PB Dto 1 esquina Maza \N FEMALE \N -34.63219269387755 -58.414127877551024 11 301 \N mmatelica +153 2024-10-30 14:13:09.862+00 2024-10-30 14:13:09.862+00 f t Silvia Patricia Cueva Ospina Osara0607@gmail.com 5491181070311 Arenales 832 7b Arenales 832 Piso 7 Dto B \N FEMALE \N -34.594166069387754 -58.3790179 37 302 \N scuevaospina +154 2024-10-30 14:13:09.874+00 2024-10-30 14:13:09.874+00 f t Lucas Amestoy lucasutn@gmail.com 5491164650180 Cucha cucha 1802 piso 3 dto C Cucha Cucha 1802 Piso 3 Dto C \N MALE \N -34.600187044916055 -58.46514945492809 34 303 \N lamestoy +155 2024-10-30 14:13:09.895+00 2024-10-30 14:13:09.895+00 f t Veronica Andrea Garcia Tuñon veronica_garciatunon@hotmail.com 5491164170915 Capdevila 3353 piso 5 Villa Urquiza Capdevila 3353 Piso 5 \N FEMALE \N -34.56607880612245 -58.493039455102036 29 304 \N vgarciatunon +156 2024-10-30 14:13:09.907+00 2024-10-30 14:13:09.907+00 f t Cecilia Jimena Donato cejimedon@gmail.com 5491125992727 General Enrique Martinez 1230 1° D, Caba General Enrique Martinez 1230 Piso 1 Dto D \N FEMALE \N -34.575921314285715 -58.458263 38 305 \N cdonato +157 2024-10-30 14:13:09.92+00 2024-10-30 14:13:09.92+00 f t Graciela Alejandra Bustamante gracealeja1@gmail.com 5491151456951 Gregorio de La Ferrere y Cosquin ed 10 dto 24. Gregorio de La Ferrere y Cosquin ed 10 Dto 24 \N FEMALE \N \N \N 19 306 \N gbustamante +158 2024-10-30 14:13:09.935+00 2024-10-30 14:13:09.935+00 f t Lucia Ganem ganemlucia@gmail.com 5491158204765 Av. Congreso 2174 entre Arcos y Cuba (Belgrano, CP 1428) Av. Congreso 2174 Entre Arcos y Cuba \N FEMALE \N -34.55601875 -58.4636404 3 307 \N lganem +159 2024-10-30 14:13:09.947+00 2024-10-30 14:13:09.947+00 f t Lara Sequeira Laarasequeira1@gmail.com 5491161305963 - \N \N \N \N FEMALE \N 44.9379672 7.5400398 14 308 \N lsequeira +13297 2025-11-14 15:01:50.798919+00 2025-11-14 15:01:50.798927+00 f t Invitado Amar invitado-1763132510476@example.com 55555555 \N \N \N \N \N 40 \N \N \N +161 2024-10-30 14:13:09.972+00 2024-10-30 14:13:09.972+00 f t Florencia Martinez florenciambrajer@gmail.com 5491159070819 French 2647 French 2647 Piso 6 Dto L \N FEMALE \N -34.58959481632653 -58.401289408163265 9 310 \N fmartinez +162 2024-10-30 14:13:09.984+00 2024-10-30 14:13:09.984+00 f t Gabriela Veigas gabiveigas@hotmail.com 5491151073885 - \N \N Hasta ahora solo tuvo teleconsultas por ende no solicitamos su dirección \N FEMALE \N 44.9379672 7.5400398 26 311 \N gveigas +163 2024-10-30 14:13:09.99+00 2024-10-30 14:13:09.99+00 f t Santiago Fernández Sfernandezzp@gmail.com 5491138649150 Paraguay 2468 Paraguay 2468 \N \N MALE \N -34.59768256530612 -58.40295314489796 9 312 \N sfernandez-2 +164 2024-10-30 14:13:10.003+00 2024-10-30 14:13:10.003+00 f t Carolina Gisela Broggi carolinabroggi1981@gmail.com 1124591904 La pampa 4413 3ero A\n La pampa 4413 Piso 3 Dto A \N FEMALE \N -34.57614582244898 -58.473942148979596 29 313 \N cbroggi +165 2024-10-30 14:13:10.015+00 2024-10-30 14:13:10.015+00 f t Claudia Vaamonde vaamonde.claudia@gmail.com 5491138215599 Olazabal 4780 8 B ( dice porteria) pegada a Cervelar Villa Urquiza\n PEDRO I RIVERA 5010 4D timbre campanita \N FEMALE \N -34.574687857142855 -58.48249506122449 29 314 \N cvaamonde +166 2024-10-30 14:13:10.021+00 2024-10-30 14:13:10.021+00 f t Mirta Liberman mirtalib_2000@yahoo.com.ar 5491144210408 Araoz 161 3°A Araoz 161 Piso 3 Dto A \N FEMALE \N -34.601674106122445 -58.439741304081636 26 315 \N mliberman +167 2024-10-30 14:13:10.033+00 2024-10-30 14:13:10.033+00 f t Mirta Molinari mirta287@gmail.com 5491164980522 Ugarteche3121 4 E\n Ugarteche 3121 Piso 4 Dto E \N FEMALE \N -34.58016395510204 -58.41161340612245 1 316 \N mmolinari +168 2024-10-30 14:13:10.044+00 2024-10-30 14:13:10.044+00 f t Adriana Laraignee alaraignee@gmail.com 5491141660754 ARCE 943 4A entre Gorostiaga y Maure. Arce 943 Piso 4 Dto A, entre Gorostiaga y Maure. \N FEMALE \N -34.567195614285716 -58.43708984285714 1 317 \N alaraignee +169 2024-10-30 14:13:10.05+00 2024-10-30 14:13:10.05+00 f t Silvia Alejandra Rabughini Silvia.rabughinii@gmail.com 5491151572968 Juan B Justo N° 7306 PB A Juan B Justo N° 7306 PB Dto A \N FEMALE \N -34.6239978 -58.4836109 16 318 \N srabughini +170 2024-10-30 14:13:10.056+00 2024-10-30 14:13:10.056+00 f t Andrea Dutra Rolim andreadrolim@gmail.com 5521980122410 Teodoro Garcia 2873 - dep 9 B Teodoro Garcia 2873 Piso 9 Dto B \N FEMALE \N -34.57385368163265 -58.44880196734694 38 319 \N adutrarolim +171 2024-10-30 14:13:10.079+00 2024-10-30 14:13:10.079+00 f t Fabian Bottegal gmartinezcaceres@icloud.com NO Av Gelly y obes 2263. 4piso dto 7 Av. Gelly y Obes 2263 Piso 4, Dto 7 \N MALE \N -34.586028695918365 -58.39672023265306 1 320 \N fbottegal +172 2024-10-30 14:13:10.103+00 2024-10-30 14:13:10.103+00 f t Isabel Gonzales isabelgonbet@gmail.com 5492901417185 Juana manso 1861 Juana manso 1861 \N \N FEMALE \N -34.6204031244898 -58.36167772244898 30 321 \N igonzales +174 2024-10-31 23:17:13.057+00 2024-10-31 23:17:13.057+00 f t Guillermo De Carolis guidc68@gmail.com 5491141621088 Bauness 2364 piso 6 entre Av Monroe y Blanco Encalada Bauness 2364 Piso 6. Entre Av Monroe y Blanco Encalada \N MALE \N -34.57521635102041 -58.48710495306123 29 322 \N gdecarolis +175 2024-11-01 22:31:41.274+00 2024-11-01 22:31:41.274+00 f t Marcelo Verón marcheloveron@gmail.com 5491136134569 Miralla 1517 Dto B Miralla 1517 Dto B. Entre Chascomús y Directorio. \N MALE \N -34.65291746938776 -58.49497883265306 19 323 \N mveron +176 2024-11-01 22:37:42.208+00 2024-11-01 22:37:42.208+00 f t Sofía Migoya Moriondo sofiamigoya62@gmail.com 1133562977 Carlos Pellegrini 641 Carlos Pellegrini 641 nan \N FEMALE \N -34.60087023265306 -58.380993036734694 13 324 \N smigoyamoriondo +177 2024-11-02 22:09:46.95+00 2024-11-02 22:09:46.95+00 f t Maria Emilia Padilla memipa69@gmail.com 5491161051504 Riglos 404 caballito Riglos 404 Piso 1 Dto B \N FEMALE \N -34.62337308367347 -58.43615053265306 14 325 \N mpadilla +763 2025-05-01 18:24:31.631407+00 2025-05-01 18:24:31.631417+00 f t Invitado Amar invitado-1746123846519@example.com 55555555 \N \N \N 46.6557086 4.5585548 113 \N \N iamar-2 +13526 2025-11-17 18:39:58.066228+00 2025-11-17 18:39:58.066238+00 f t Invitado Amar invitado-1763404796672@example.com 55555555 \N \N \N \N \N 49 \N \N \N +178 2024-11-03 17:15:41.396+00 2024-11-03 17:15:41.396+00 f t Gergich Marina mgergich@yahoo.com 5491160497571 Lascano 3122. Casa Lascano 3122 Casa \N FEMALE \N -34.6084995 -58.48790159387755 17 326 \N gmarina +179 2024-11-03 20:00:41.643+00 2024-11-03 20:00:41.643+00 f t Barrientos Martin tincho.barrientos@hotmail.com 5491135900595 Pedro calderon de la barca 1742 1ero B Pedro calderon de la barca 1742 1ero B \N MALE \N -34.6239311430555 -58.50912197128244 28 327 \N bmartin +180 2024-11-04 23:00:38.015+00 2024-11-04 23:00:38.015+00 f t Sebastián Meza Sebamezaa14@gmail.com 5492804851933 Av directorio 612 - Dpto 1C Av directorio 612 Piso 1 Dto C \N MALE \N -34.62843605306123 -58.43587985510204 14 328 \N smeza +181 2024-11-04 23:11:59.868+00 2024-11-04 23:11:59.868+00 f t Thaisa Wildner de Oliveira Thaimed.joinville@gmail.com 5491156145627 Carlos Pellegrini 1055 7B - Retiro Carlos Pellegrini 1055 Piso 7 Dto B \N FEMALE \N -34.59883807080903 -58.38128398753357 37 329 \N twildnerdeoliveira +182 2024-11-05 15:59:14.828+00 2024-11-05 15:59:14.828+00 f t Cynthia Debora Binaghi cynthia_binaghi@hotmail.com 5491140868172 Felipe vallese 761 piso 18 depto 6 Felipe vallese 761 Piso 18 Dpto C \N FEMALE \N -34.612534530612244 -58.444194326530614 14 330 \N cbinaghi +183 2024-11-05 17:30:40.23+00 2024-11-05 17:30:40.23+00 f t Zazulina Mariana mzazulina@gmail.com 5491173698363 Roseti 1792, 1B Roseti 1792 Piso 1 Dto B \N FEMALE \N -34.581736632653055 -58.46710475510204 24 331 \N zmariana +184 2024-11-05 18:23:59.807+00 2024-11-05 18:23:59.807+00 f t Pedemonti Bruno pedemontibruno@gmail.com 5491130063600 virrey aviles 3736 7A Virrey Aviles 3736 Piso 7 Dto A \N MALE \N -34.57279249656072 -58.45816799632495 38 332 \N pbruno +185 2024-11-05 20:16:22.902+00 2024-11-05 20:16:22.902+00 f t Russomanno Victoria maviru1990@gmail.com 5491139161561 Del comercio 1269- Parque chacabuco Del comercio 1269 \N \N FEMALE \N -34.63439798163265 -58.43705453265306 20 333 \N rvictoria +186 2024-11-07 18:04:04.677+00 2024-11-07 18:04:04.677+00 f t Leandro Carrasco leontscarrasco@gmail.com 5491163642378 \N Agustín de Vedia 3018 \N \N MALE \N -34.65241997959184 -58.42670132653061 40 334 \N lcarrasco +187 2024-11-08 14:53:08.346+00 2024-11-08 14:53:08.346+00 f t Catalina Simone catalinasimone97@gmail.com 01169686918 \N Petrona Eyle 355 Dpto 3B \N FEMALE \N -34.615044499999996 -58.36264432977057 \N 121 \N csimone +188 2024-11-10 18:39:12.32+00 2024-11-10 18:39:12.32+00 f t Jean Fernandez jeanemiliano@live.com 5491164080073 \N Adolfo Alsina 2161 PB Dto 2 - No funciona el portero, llamarlo por teléfono \N MALE 1994-03-08 -34.61176661836735 -58.396916324489794 18 335 \N jfernandez +189 2024-11-10 21:17:25.46+00 2024-11-10 21:17:25.46+00 f t Marcelo Gullota marcegullota@gmail.com 5491156040084 \N Doblas 1758 PB Dto D \N MALE \N -34.61927625 -58.431409800000004 14 336 \N mgullota +190 2024-11-12 18:59:56.462+00 2024-11-12 18:59:56.462+00 f t Lucas Petringa lucas.petringa@gmail.com 5491131531605 \N Bartolome Mitre 4324 No anda el timbre llamar \N MALE 1986-11-23 -34.61064903673469 -58.42786983673469 23 337 \N lpetringa +191 2024-11-12 19:41:23.779+00 2024-11-12 19:41:23.779+00 f t Hernan Rangugni hrangugni@gmail.com 1133820294 \N Amenabar 2255 Piso 1 Dto A \N MALE \N -34.56165048571429 -58.45974769387755 3 338 \N hrangugni +192 2024-11-12 19:57:02.581+00 2024-11-12 19:57:02.581+00 f t Micaela Lodeiro micaelalodeiromerino@gmail.com 5492964614809 \N Sanchez de Bustamante 444 Piso 3 Dto J, entre Avenida Corrientes y Valentin Gomez \N FEMALE 2002-04-12 -34.6045382 -58.41472534285714 23 339 \N mlodeiro +193 2024-11-13 13:36:15.957+00 2024-11-13 13:36:15.957+00 f t Marija Perovic marathearchitect@gmail.com 5491139223763 \N Av. Dorrego 2450 Piso 6, Dto 604, Torre Parque \N FEMALE 1986-06-23 -34.57569901470588 -58.43651680294118 1 340 \N mperovic +194 2024-11-13 22:20:28.124+00 2024-11-13 22:20:28.124+00 f t Ana Clara Varela anita125_@hotmail.es 5491132962446 \N Yerbal 41 Piso 5 Dto B \N FEMALE 1997-01-07 -34.6149835 -58.4320949 14 341 \N avarela +195 2024-11-13 22:30:29.432+00 2024-11-13 22:30:29.432+00 f t Lucila Matrángolo lucila.matrangolo@sandbox.game 5491137582212 \N Dorrego 2161 \N \N FEMALE 1995-09-07 -34.5779832632653 -58.439183316326535 1 342 \N lmatrangolo +196 2024-11-14 22:33:35.901+00 2024-11-14 22:33:35.901+00 f t Caroline Ferreira Caroltibi@hotmail.com 5491162236672 \N Billinghurs 1444 8d \N FEMALE 1994-07-18 \N \N 9 343 \N cferreira +197 2024-11-14 23:21:14.622+00 2024-11-14 23:21:14.622+00 f t Leandro Illusi claudiapupillo@gmail.com 5491150500730 \N Sumaca Santísima Trinidad 5012 Villa lugano \N MALE 1966-09-17 -34.6868495 -58.4680037 10 344 \N lillusi +198 2024-11-15 00:30:09.294+00 2024-11-15 00:30:09.294+00 f t Nadia Aguayo nsaguayo@gmail.com 5491159431548 \N Plaza 1824 \N \N FEMALE 1979-12-22 -34.5743267 -58.4712279125 29 345 \N naguayo +199 2024-11-15 20:48:36.293+00 2024-11-15 20:48:36.293+00 f t Cristina Weiss cristina.weiss.kuhn@gmail.com 5491161421126 \N Adolfo Alsina 3292 Casa \N FEMALE 1971-09-13 -34.61339298163265 -58.41282848775511 18 346 \N cweiss +200 2024-11-16 00:37:11.116+00 2024-11-16 00:37:11.116+00 f t Estefania Iennarella esteffi.15@hotmail.com 5491123300211 \N Mario bravo 1155 Piso 2 Dto B \N FEMALE 1996-04-25 -34.59609806240986 -58.415170313496674 1 347 \N eiennarella +201 2024-11-16 00:42:13.675+00 2024-11-16 00:42:13.675+00 f t Elisa Zoppi elisa.zoppi@gmail.com 5491158086256 \N Billinghurst 2553 Piso 9 Dto A \N FEMALE 1953-08-25 -34.582583802040816 -58.403108867346944 1 348 \N ezoppi +202 2024-11-16 18:52:08.65+00 2024-11-16 18:52:08.65+00 f t Emilia Vilardo emiliavilardo@yahoo.com.ar 5491156944787 \N Almirante Cordero 5486 Entre Boulevard de los Italianos y De la Peña, Wilde, partido de Avellaneda \N FEMALE 1965-05-09 -34.73213128571429 -58.581898428571435 42 349 \N evilardo +203 2024-11-16 21:45:14.866+00 2024-11-16 21:45:14.866+00 f t Yanina Ramos Yanina.santino2508@gmail.com 5491130730825 \N Eduardo Acevedo 72 Piso 2 Dto C (Altura de Av. Rivadavia al 4630) \N FEMALE 1987-11-08 -34.614873226486615 -58.43091170048282 14 350 \N yramos +204 2024-11-17 16:12:14.348+00 2024-11-17 16:12:14.348+00 f t Sebastian Villas sebavilas@gmail.com 5491151807373 \N Helguera 3780 \N \N MALE 1998-02-22 -34.59462983877551 -58.49876373469388 43 351 \N svillas +205 2024-11-17 22:06:15.95+00 2024-11-17 22:06:15.95+00 f t Mabel Paez Enformapilates_mabel@hotmail.com 5491132900573 \N Julian Alvarez 2468 \N \N FEMALE 1966-06-03 -34.5866855 -58.4147203 1 352 \N mpaez +206 2024-11-19 19:59:47.49+00 2024-11-19 19:59:47.49+00 f t Antonella Acosta Antonella.ainsaurralde@gmail.com 5493412124345 \N Castillo 440 Piso 1° Dto 111, Villa Crespo. Caba \N FEMALE 1993-01-25 -34.59604694285714 -58.43380696530612 26 353 \N aacosta +207 2024-11-19 20:05:28.49+00 2024-11-19 20:05:28.49+00 f t Gabriela Gruschky gabrielagrusc@gmail.com 5491161326337 \N Cuenca 1176 PB Dto A. Entre tres Arroyos y Galicia, al lado de supermercado. \N FEMALE 1967-03-21 -34.61977087142857 -58.48031048163265 41 354 \N ggruschky +208 2024-11-19 23:59:21.406+00 2024-11-19 23:59:21.406+00 f t Javier Alonso lorai.jma@gmail.com 5491167449718 \N Avenida Las Heras 2779 Piso 10 Dto D \N MALE 1999-10-22 -34.5839507122449 -58.40094058979592 9 355 \N jalonso +209 2024-11-20 18:46:32.032+00 2024-11-20 18:46:32.032+00 f t Agustina Rossi m_agus_tina@yahoo.com.ar 1121671893 \N Bonorino 153 Piso 6 Dto A \N FEMALE 1984-07-08 -34.6298066755102 -58.45910046530612 4 356 \N arossi +210 2024-11-20 18:51:56.737+00 2024-11-20 18:51:56.737+00 f t Carolina Bianco carolinamyriambianco@gmail.com 5491130746380 \N Av Corrientes 2495 Piso 8 \N FEMALE 1974-08-20 -34.60458334081632 -58.401997724489796 18 357 \N cbianco +211 2024-11-20 23:41:16.155+00 2024-11-20 23:41:16.155+00 f t Manolo Lamas Manololamas1946@gmail.com 5491140303031 \N Av olazabal 4745 3° Piso \N MALE \N -34.57432871428571 -58.48232681632653 29 358 \N mlamas +212 2024-11-22 16:12:31.246+00 2024-11-22 16:12:31.246+00 f t Cecilia Grosso ceci.grosso@hotmail.com.ar 5491160223877 \N Av de los Incas 5281 \N \N FEMALE 1962-08-15 -34.58721498571428 -58.4824138877551 29 359 \N cgrosso +213 2024-11-22 22:54:11.279+00 2024-11-22 22:54:11.279+00 f t Clara Vasco clara.vasco@gmail.com 5491154600870 \N French 2741 PB Dpto F, entre Aguero y Laprida \N FEMALE 1967-12-03 -34.5889963877551 -58.40230069387755 9 360 \N cvasco +214 2024-11-22 22:59:38.362+00 2024-11-22 22:59:38.362+00 f t Delia Echegoyen eche1090@gmail.com 5491156435792 \N Pinto 3290 \N \N FEMALE 1969-10-01 -34.55561940816327 -58.47306653061224 45 361 \N dechegoyen +215 2024-11-22 23:06:52.941+00 2024-11-22 23:06:52.941+00 f t Cristina Echegoyen echegoyencristina@gmail.com 000000000 \N Pinto 3290 \N \N FEMALE 1964-10-19 -34.55561940816327 -58.47306653061224 2 362 \N cechegoyen +216 2024-11-23 21:01:54.601+00 2024-11-23 21:01:54.601+00 f t Camila Vilenddill lvillanddill@gmail.com 5491123366689 \N Montevideo 471 Piso 3 Dto A \N FEMALE 1994-08-11 -34.60340865714286 -58.38937187142857 13 363 \N cvilenddill +217 2024-11-23 21:04:53.074+00 2024-11-23 21:04:53.074+00 f t Maria Nieves marianievesperez@hotmail.com 5491123366689 \N Galileo 2442 Piso 6 Dto A \N FEMALE 1954-09-19 -34.585419130612244 -58.397877222448976 9 364 \N mnieves +218 2024-11-24 21:50:17.966+00 2024-11-24 21:50:17.967+00 f t Cristian Estanislao del Campo redpadres@yahoo.com.ar 5491150588607 \N Av. Belgrano 2288 Piso 2, Dtot E (entre Pichincha y Pasco) \N MALE \N -34.61439371621622 -58.39850836621622 18 365 \N cestanislaodelcampo +219 2024-11-26 17:25:50.269+00 2024-11-26 17:25:50.269+00 f t Sabrina Coto sabricoto@gmail.com 5491139528036 \N Ecuador 1465 Piso 5 Dto A \N FEMALE 2000-04-28 -34.59334730204082 -58.403192242857145 9 366 \N scoto +220 2024-11-28 13:22:50.971+00 2024-11-28 13:22:50.971+00 f t Claudio Higa claucesarhiga@gmail.com 5491150034470 \N Av Corrientes 4347 Piso 11 Dto 32 \N MALE \N -34.602535879591834 -58.42630540612245 23 367 \N chiga +221 2024-11-28 15:06:45.805+00 2024-11-28 15:06:45.805+00 f t Karen Mendoza karenmargareth46578@gmail.com 5491126790093 \N Río de Janeiro 609 Piso 5 Dto B \N FEMALE 1991-05-01 -34.608507333333336 -58.43035783333333 23 368 \N kmendoza +222 2024-11-28 21:22:17.663+00 2024-11-28 21:22:17.663+00 f t Maria Fernanda Araujo masefer6@hotmail.com 5491149365828 \N Guatemala 4721 Piso 4 depto 8 \N FEMALE 1973-02-02 -34.58605485102041 -58.42467983877551 1 369 \N maraujo +223 2024-11-29 15:16:04.534+00 2024-11-29 15:16:04.534+00 f t Andrea Molina andycmolina510@gmail.com 5491169381389 \N Achaval 423 Timbre 20 \N FEMALE 1986-10-05 -34.62932927346939 -58.44870423469388 14 370 \N amolina +224 2024-12-02 17:03:51.926+00 2024-12-02 17:03:51.926+00 f t Agustina Gomez Agustinagomezloffreda@gmail.com 5491161666565 \N Paroissien 1650 Piso 2 Dto D \N FEMALE \N -34.54305775306123 -58.46252163265306 25 371 \N agomez +225 2024-12-02 18:11:00.171+00 2024-12-02 18:11:00.171+00 f t Nicolas Mendez nicolasmendezcasariego@gmail.com 5491167052883 \N Ituzaingó 680 Piso 1 Dto D \N MALE \N -34.63027555102041 -58.37404514285714 32 372 \N nmendez +227 2024-12-02 20:54:50.979+00 2024-12-02 20:54:50.979+00 f t Silvia Barreto silviamarianabarreto@hotmail.com 5491131913718 \N Moldes 2221 Departamento 6 \N FEMALE 1967-06-14 -34.56244706938776 -58.46040464285714 3 373 \N sbarreto +228 2024-12-02 20:58:39.006+00 2024-12-02 20:58:39.006+00 f t Luis Da Silva luis.henriquep87@gmail.com 5491151169761 \N Arribenos 1453 Piso 3 Dto B \N MALE 1987-02-02 -34.56424209591837 -58.444947946938775 3 374 \N ldasilva +229 2024-12-02 21:04:15.004+00 2024-12-02 21:04:15.004+00 f t Maria Ponce mariaceciliaponce@hotmail.com 5491163055959 \N Mafalda 883 Dto 1 \N FEMALE 1988-02-13 41.941736 14.713226 44 375 \N mponce +230 2024-12-02 21:16:34.815+00 2024-12-02 21:16:34.815+00 f t Laura Sanchez Laura.bea.san@hotmail.com 5491144097531 \N Av Callao 922 PB \N FEMALE 1969-11-06 -27.374203538779255 -55.908280478878694 29 376 \N lsanchez +231 2024-12-02 21:30:13.762+00 2024-12-02 21:30:13.762+00 f t Micaela De Ustaran micaustaran4@gmail.com 5491162262379 \N Coronel Niceto Vega 5051 Timbre izquierdo \N FEMALE 1996-05-23 -30.245579803827756 -57.641808573179944 1 377 \N mdeustaran +232 2024-12-02 21:34:10.163+00 2024-12-02 21:34:10.163+00 f t Mariana Dominguez mariansis09@gmail.com 5493625298504 \N Pedro Morán 4269 \N \N FEMALE 1983-03-09 -34.60327275510204 -58.51351426530612 21 378 \N mdominguez +233 2024-12-03 19:25:23.298+00 2024-12-03 19:25:23.298+00 f t Maria Laura Garolla mariagarolla@hotmail.com 5491135968633 \N Victorino de la Plaza 1796 \N \N FEMALE \N -38.945673299999996 -68.00333075 3 379 \N mgarolla +234 2024-12-03 19:41:58.398+00 2024-12-03 19:41:58.398+00 f t Michelle Ramer michramer@gmail.com 5491176032780 \N Gurruchaga 2172 PB Dto J \N FEMALE 2000-06-16 -34.585632842857144 -58.423721657142856 1 380 \N mramer +235 2024-12-03 20:27:18.918+00 2024-12-03 20:27:18.918+00 f t Patricia Tesone patritesone@gmail.com 5491176032780 \N Libertad 1274 Piso 7 Dto A \N FEMALE 1968-05-15 -34.594263 -58.3845205 9 381 \N ptesone +236 2024-12-03 20:53:32.574+00 2024-12-03 20:53:32.574+00 f t Fernando laneri Ferchulan@hotmail.com 5491176032780 \N Athos palma 3863 No funciona el portero, llamarlo por telefono \N MALE 1975-07-15 -34.5640062122449 -58.505069802040815 31 382 \N flaneri +237 2024-12-04 18:14:01.444+00 2024-12-04 18:14:01.444+00 f t Gaspar Heber gasparheber@gmail.com 5491130893971 \N Cucha Cucha 1034 Dto 3 \N MALE \N -34.62115788082806 -58.44464621558064 14 383 \N gheber +238 2024-12-04 20:06:57.81+00 2024-12-04 20:06:57.81+00 f t Andrea Toscano andyjtoscano@gmail.com 5491173697834 \N Hipólito Yrigoyen 2326 Depto 4 \N FEMALE 1987-05-22 -34.61093255510204 -58.39946084489796 18 384 \N atoscano +239 2024-12-04 23:27:44.974+00 2024-12-04 23:27:44.974+00 f t Maria Belen Rodriguez belenbee@gmail.com 5491122530143 \N Juan Manuel Blanes 460 Piso 10 Dto B \N FEMALE 1982-12-24 31.6275343505608 -106.4107498007002 33 385 \N mrodriguez +240 2024-12-05 12:44:45.772+00 2024-12-05 12:44:45.772+00 f t Melody Robak melorobak@gmail.com 5491131860827 \N Inclan 4278 12R \N FEMALE 1994-01-09 -34.633658326530615 -58.42350155102041 11 386 \N mrobak +241 2024-12-05 13:53:25.101+00 2024-12-05 13:53:25.101+00 f t Natalia Ortiz pereyraortiznatalia@gmail.com 5491124619656 \N Pasaje Danel 1467 Dto 7 \N FEMALE 1998-01-01 \N \N 11 387 \N nortiz +242 2024-12-05 14:23:01.315+00 2024-12-05 14:23:01.315+00 f t Cristian Papa claudia_alanys@hotmail.com 5491159817239 \N Alsina 2475 Entre Boulevard Ballester y Buenos Aires \N MALE 1963-02-24 -31.380710612244897 -64.13336896938776 47 388 \N cpapa +243 2024-12-05 14:27:44.226+00 2024-12-05 14:27:44.226+00 f t Alejandro Francovich juliluciani@gmail.com 5491121662061 \N Quesada 3655 \N \N MALE 1991-12-27 -34.56102225714286 -58.476083251020405 45 389 \N afrancovich +244 2024-12-05 14:39:23.669+00 2024-12-05 14:39:23.669+00 f t Ivan Barisonzi agol85@live.com 5491160487187 \N Lucio Correa Morales 2669 \N \N MALE 1985-10-30 -34.659635102040816 -58.43520479591837 48 390 \N ibarisonzi +245 2024-12-05 15:32:06.505+00 2024-12-05 15:32:06.505+00 f t Amalia Frontini amaliafrontini@hotmail.com 5491168604850 \N Del Progreso 1242 \N \N FEMALE \N -34.63411112653061 -58.437460518367345 20 391 \N afrontini +246 2024-12-05 16:08:50.148+00 2024-12-05 16:08:50.148+00 f t Alejandro Martinez aleariel128@gmail.com 5491161015647 \N Santiago del Estero 228 Piso 1 Dto P \N MALE 1986-12-25 -34.611345079591835 -58.384757369387756 49 392 \N amartinez +247 2024-12-05 16:38:42.422+00 2024-12-05 16:38:42.422+00 f t Anabel Espíndola anitagimenez818@gmail.com 5491123879081 \N J.B. Alberdi 4279 Piso 6 Dto D, esq Olivera \N FEMALE 1978-07-12 -32.421939449999996 -63.2446444 16 393 \N aespindola +248 2024-12-06 16:16:08.784+00 2024-12-06 16:16:08.784+00 f t Victoria Marra marra.victoria@gmail.com 5491168655820 \N av Nazca 2037 7-A \N FEMALE 1990-01-13 -34.61106125 -58.4815585 41 394 \N vmarra +249 2024-12-09 15:55:47.516+00 2024-12-09 15:55:47.516+00 f t Tomas Tong tomi-tomi92@hotmail.com 5491161050317 \N Cuba 3014 \N \N MALE \N -34.562780040217376 -58.45314060292572 3 395 \N ttong +250 2024-12-09 15:59:56.247+00 2024-12-09 15:59:56.247+00 f t Soledad Rodriguez featherinthewind@gmail.com 5491126026083 \N Carlos Antonio Lopez 3013 \N \N FEMALE 1981-05-17 44.9379672 7.5400398 51 396 \N srodriguez +251 2024-12-09 16:14:40.042+00 2024-12-09 16:14:40.042+00 f t Vitoria De Carvalho Cruz Barreto vitoriacruzb@gmail.com 549112633695 \N av Chorroarín 1059 timbre es 5B \N FEMALE 1999-03-23 -34.58443969795918 -58.46944687755102 24 397 \N vdecarvalhocruzbarreto +252 2024-12-09 19:37:22.285+00 2024-12-09 19:37:22.285+00 f t Olga Parshakova Olga.Shkriabina@gmail.com 5491161550202 \N Fray Cayetano Rodríguez 850 2-A Dpto \N FEMALE \N -34.62076203469388 -58.46701645510204 4 398 \N oparshakova +253 2024-12-10 13:09:24.057+00 2024-12-10 13:09:24.057+00 f t Agostina Toril toril.agostina@gmail.com 5491166501058 \N Mario Bravo 1196 3 A \N FEMALE 1993-07-23 -34.59577004619473 -58.41525644248836 1 399 \N atoril +254 2024-12-10 14:49:45.329+00 2024-12-10 14:49:45.329+00 f t Maria Florencia Rodriguez licmflorencia.rodriguez@gmail.com 5491137623806 \N Senillosa 1726 Casa \N FEMALE 1985-07-17 -34.636247583673466 -58.425914142857145 20 400 \N mrodriguez-2 +255 2024-12-10 14:51:55.548+00 2024-12-10 14:51:55.548+00 f t Nicolas Fiorentino fiorentinonico@gmail.com 1161081511 \N Castillo 1651 timbre 1 \N MALE \N -34.586433924489796 -58.44378681632653 35 401 \N nfiorentino +256 2024-12-10 15:45:39.835+00 2024-12-10 15:45:39.835+00 f t Su Rigio suggeyrigio24@gmail.com 5491133029892 \N General Manuel Rodríguez 1490 Piso 2 dpto C \N FEMALE \N -34.60545403877551 -58.450505185714285 26 402 \N srigio +257 2024-12-10 18:46:03.226+00 2024-12-10 18:46:03.226+00 f t Juan Ignacio Abuchdid juanignacioab@gmail.com 5491155016538 \N Virrey del Pino 3453 \N \N MALE \N -34.57251221632653 -58.46475072857143 3 403 \N jabuchdid +258 2024-12-10 19:22:46.778+00 2024-12-10 19:22:46.778+00 f t Esteban Tangredi Estebantangrendi@gmail.com 5491157210767 \N Campana 4639 Casa, único timbre \N MALE \N -34.58995826938776 -58.50694807755102 51 404 \N etangredi +259 2024-12-10 20:18:35.896+00 2024-12-10 20:18:35.896+00 f t Yanina Laura Feldman Yaninalaurafeldman@gmail.com 5491163505829 \N Gurruchaga 2235 Piso 2 Dto 10 \N FEMALE \N -34.58511340612245 -58.422730555102035 1 405 \N yfeldman +261 2024-12-11 14:10:35.662+00 2024-12-11 14:10:35.662+00 f t Gaston Mantykow gasmant2002@gmail.com 5491159490278 \N Belaustegui 1480 1ro 4 \N MALE 2024-12-13 -34.60755938979592 -58.46044931632653 14 406 \N gmantykow +262 2024-12-11 23:06:49.07+00 2024-12-11 23:06:49.07+00 f t Juana Benza Juana.benza08@gmail.com +5491149451715 \N Álvarez 2414 4b entre Güemes y Santa fe \N FEMALE 1999-01-08 19.28060895 -103.72380229999999 1 407 \N jbenza +263 2024-12-12 13:47:51.473+00 2024-12-12 13:47:51.473+00 f t Sol Barmat solbarmat@gmail.com 5491167915361 \N Conesa 1162 Entre Zabala y Virrey Loreto \N FEMALE \N -34.57225949795918 -58.45318834285714 38 408 \N sbarmat +265 2024-12-12 17:07:07.285+00 2024-12-12 17:07:07.285+00 f t Luciana Cattaneo lucianasolcattaneo@outlook.com 5491123877777 \N Av libertador 855 5to b \N FEMALE \N -33.03280525555556 -60.62020132222222 59 410 \N lcattaneo +13298 2025-11-14 15:02:01.02827+00 2025-11-14 15:02:01.028278+00 f t Invitado Amar invitado-1763132557043@example.com 55555555 \N \N \N \N \N 73 \N \N \N +267 2024-12-14 21:54:03.701+00 2024-12-14 21:54:03.701+00 f t Liliana Marquez lilianmarquez121@gmail.com 5491140735160 \N Pacheco de Melo 2174 Piso 10 anunciar en seguridad \N FEMALE 1994-12-12 -34.589735165306124 -58.396425777551016 9 411 \N lmarquez +268 2024-12-16 23:28:19.939+00 2024-12-16 23:28:19.939+00 f t Paola Calderon Paocal83@gmail.com +5491166072101 \N Anchorena 1229 4b \N FEMALE 1983-01-21 -34.766596 -58.38178128571428 9 412 \N pcalderon +269 2024-12-16 23:31:19.229+00 2024-12-16 23:31:19.229+00 f t Ines Cardenas cardenaslozanomariana@gmail.com +5491161437396 \N Soldado de la independencia 1081 1e \N FEMALE 1999-05-13 -34.56538525306122 -58.43797015102041 1 413 \N icardenas +270 2024-12-17 18:38:01.631+00 2024-12-17 18:38:01.631+00 f t Gabriela Diana Szpayzer gergoga9@gmail.com 5491157638487 \N Avenida Cordoba 4761 14 b \N FEMALE \N -34.59299666530612 -58.43179950204082 1 414 \N gszpayzer +271 2024-12-18 14:14:34.286+00 2024-12-18 14:14:34.286+00 f t Rosana Lodovico rosanalodovico@gmail.com 5491140220726 \N Emilio Mitre 264 piso 8 \N FEMALE 1970-03-08 -34.62475028163265 -58.44327827959184 14 415 \N rlodovico +272 2024-12-20 15:30:46.684+00 2024-12-20 15:30:46.684+00 f t Guillermina Rodriguez batiguillermina@hotmail.com 5491157398043 \N O´higgins 1963 5to C \N FEMALE 1965-10-25 -34.5611198 -58.45177275306123 3 416 \N grodriguez +273 2024-12-20 16:53:29.77+00 2024-12-20 16:53:29.77+00 f t Elisabet Ritacco eliritacco@gmail.com 5491150616062 \N Av. Santa Fe 3373 PB E \N FEMALE \N -34.58725355 -58.412549579166665 1 417 \N eritacco +13527 2025-11-17 18:40:12.8907+00 2025-11-17 18:40:12.89071+00 f t Invitado Amar invitado-1763404818093@example.com 55555555 \N \N \N \N \N 14 \N \N \N +275 2024-12-20 19:00:55.589+00 2024-12-20 19:00:55.589+00 f t Noelia Balderrama nbalderrama88@icloud.com 5491134272487 \N Venezuela 4166 PB B, CABA \N FEMALE 1988-11-06 -34.6179515632653 -58.42371184285714 23 419 \N nbalderrama +276 2024-12-21 17:18:50.861+00 2024-12-21 17:18:50.861+00 f t Carolina Iudica lacuervac07@yahoo.com.ar 5491158172735 \N Pergamino 1050 timbre 4 \N FEMALE 1971-11-07 -34.64346670204082 -58.4682594877551 4 420 \N ciudica +278 2024-12-22 18:43:00.287+00 2024-12-22 18:43:00.287+00 f t Maria Florencia Todero mariaflorenciatodero@gmail.com 1161642795 \N Pacheco de Melo 3056 Piso 6 Dto H \N FEMALE 1988-12-19 -34.58353134072767 -58.4066163052847 1 422 \N mtodero +279 2024-12-22 19:37:40.969+00 2024-12-22 19:37:40.969+00 f t Djalma Alvernaz Arruda djalmain54@gmail.com 1162019967 \N Montevideo 1178 Piso 4 Dto C \N MALE 1983-04-28 -34.59526162244898 -58.390079140816326 9 423 \N dalvernazarruda +280 2024-12-23 16:21:08.289+00 2024-12-23 16:21:08.289+00 f t Santiago Menajovsky Santiago.menajovsky@gmail.com 5491167804293 \N estados unidos 4235 piso 6 \N MALE 1986-06-11 -34.6111613 -58.4184983 11 424 \N smenajovsky +281 2024-12-23 23:57:47.489+00 2024-12-23 23:57:47.489+00 f t Dario Iraeta dario_bonheur@yahoo.com.ar +5491140313171 \N Anchorena 398 7B \N MALE 1973-05-03 -34.7714283877551 -58.39085344897959 2 425 \N diraeta +282 2024-12-24 00:01:39.893+00 2024-12-24 00:01:39.893+00 f t Regina Pucci regipuc@yahoo.com 5491123555024 \N Jose leon Pagano 2673 \N \N FEMALE 1981-02-09 -34.58383549387755 -58.39962428571429 9 426 \N rpucci +283 2024-12-26 15:09:34.895+00 2024-12-26 15:09:34.895+00 f t Julio Caprara Julioandrescaprara@gmail.com 5491157539085 \N Av Pueyrredón 2386 6to piso \N MALE 1970-10-11 -34.606057559002736 -58.40583562948322 18 427 \N jcaprara +284 2024-12-29 22:03:37.455+00 2024-12-29 22:03:37.455+00 f t Laura Sanchez Sailorlaly@gmail.com 5491156079988 \N Av acoyte 1335 1D \N FEMALE 1982-09-20 -34.60206147465649 -58.44416870547643 26 428 \N lsanchez-2 +285 2024-12-30 16:36:38.729+00 2024-12-30 16:36:38.729+00 f t Florencia Laya Mflorlaya@gmail.com 5491149608502 \N Scalabrini Ortiz 3146 1D \N FEMALE 1989-10-09 -34.580394399999996 -58.41024120612245 1 429 \N flaya +286 2024-12-31 12:56:04.618+00 2024-12-31 12:56:04.618+00 f t Estefanía Antonela Bustos anto_maktub@hotmail.com 5491138094864 \N Amenábar 2667 1 b \N FEMALE 1987-10-23 -34.55816228571429 -58.46274355918367 3 430 \N ebustos +287 2024-12-31 14:07:32.497+00 2024-12-31 14:07:32.497+00 f t Gabriela Lopez glopezrodriguez1971@gmail.com 5491167504128 \N Chivilcoy 3330 \N \N FEMALE 1971-04-27 -34.603496028571435 -58.50868624285714 21 431 \N glopez +288 2025-01-02 18:20:26.251+00 2025-01-02 18:20:26.251+00 f t Sebastián comas yalkedigital@gmail.com 5491149456725 \N Chivilcoy 1195 T1 \N MALE \N -34.622645902040816 -58.48892353265306 16 432 \N scomas +289 2025-01-03 14:00:46.179+00 2025-01-03 14:00:46.179+00 f t Luciana Carabajal Luciana90.carabajal@gmail.com 5491125762390 \N Artigas 1097 2B \N FEMALE 1990-12-12 -34.6255872 -58.4656183 4 433 \N lcarabajal +852 2025-05-08 12:55:10.380131+00 2025-05-08 12:55:10.380146+00 f t Invitado Amar invitado-1746708911824@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-11 +13729 2025-11-19 08:59:14.650494+00 2025-11-19 08:59:14.650508+00 f t Invitado Amar invitado-1763542727367@example.com 55555555 \N \N \N \N \N 70 \N \N \N +290 2025-01-03 15:37:00.667+00 2025-01-03 15:37:00.667+00 f t Florencia Genaver floflo_floflo@hotmail.com 5491156530398 \N juan b justo 2726 \N \N FEMALE \N -34.834650939873704 -64.37155135492469 26 434 \N fgenaver +291 2025-01-03 17:29:57.776+00 2025-01-03 17:29:57.776+00 f t Veronica coronel coronver@hotmail.com 5491145363326 \N Av Olivera 630, caba torre 28, piso 1, depto 7 \N FEMALE 1978-12-14 -34.644122834343435 -58.484816889898994 5 435 \N vcoronel +292 2025-01-03 17:37:53.402+00 2025-01-03 17:37:53.402+00 f t María Soledad Cabrera marsolcabrera@gmail.com 5491126141988 \N José León Suárez 5766 PB 4 \N FEMALE \N -34.6809636 -58.4885308 64 436 \N mcabrera +293 2025-01-03 19:21:55.855+00 2025-01-03 19:21:55.855+00 f t Carlos Capdevielle capdeviellecarlos@gmail.com 5491122548412 \N Posadas 1528 piso 7 depto D \N MALE 1989-05-12 -34.58737624285714 -58.3875510877551 9 437 \N ccapdevielle +294 2025-01-05 19:51:35.155+00 2025-01-05 19:51:35.155+00 f t Silvina Mariana Ovalles sil_ov@hotmail.com +5491165134915 \N Av. Libertador 5643 5A \N FEMALE 1966-01-01 -34.55997517142857 -58.444610385714284 3 438 \N sovalles +295 2025-01-05 19:56:04.555+00 2025-01-05 19:56:04.555+00 f t Franklin Rodrigo Cruz frcruz688@gmail.com 5491134761353 \N Av Juan Bautista de Lasalle 4500 monoblock 4A Dpto 226 \N MALE 1993-11-25 -34.45435383497904 -58.522140650371526 27 439 \N fcruz +296 2025-01-05 20:00:17.897+00 2025-01-05 20:00:17.897+00 f t Nestor Quiñones Cassius1955@gmail.com 5491141901933 \N Azcuénaga 1571 piso 7 dpto A \N MALE 1955-10-24 -34.59094002857143 -58.397639485714286 9 440 \N nquinones +297 2025-01-05 20:05:43.81+00 2025-01-05 20:05:43.81+00 f t eleonora angles eleonora.angles@gmail.com 5491133414651 \N Bogotá 856 5to F (no funciona el timbre para responder) \N FEMALE 1991-11-25 -33.38946576132587 -70.64454502962795 9 441 \N eangles +298 2025-01-05 20:09:48.963+00 2025-01-05 20:09:48.963+00 f t Maxima Gisela Saldivar Pris pirisgysel5@gmail.com 5491151608980 \N Faraday-Pablo nogues 36 \N \N FEMALE 2003-05-18 -34.47830890587572 -58.67527685587435 14 442 \N msaldivarpris +299 2025-01-06 16:06:10.419+00 2025-01-06 16:06:10.419+00 f t Miriam Albelo mba-101@hotmail.com 5491138549801 \N Curapaligue 168 5 A \N FEMALE 1962-01-10 -34.62741778163265 -58.45299451836735 14 443 \N malbelo +300 2025-01-06 23:57:56.723+00 2025-01-06 23:57:56.723+00 f t Luciano Gallardo lucianogallardo1990@gmail.com 5491159190234 \N Tamborini 5622 1a \N FEMALE 1990-12-07 -34.56936620408163 -58.497466836734695 29 444 \N lgallardo +301 2025-01-07 00:03:19.762+00 2025-01-07 00:03:19.762+00 f t Noelia Poncino noegapon1982@gmail.com 5491135151240 \N Remedios 5467 \N \N FEMALE \N -34.65531507142857 -58.49282444285714 19 445 \N nponcino +302 2025-01-08 13:17:25.681+00 2025-01-08 13:17:25.681+00 f t Julián Zadunaisky julian.zadu@gmail.com 33651061562 \N Corvalán \N 233 \N MALE 2000-08-13 \N \N 65 446 \N jzadunaisky +303 2025-01-09 15:53:55.944+00 2025-01-09 15:53:55.944+00 f t Julieta Herman Julietaherman@hotmail.com 5491133435923 \N Gral Manuel Savio 466 1roC \N FEMALE 1990-02-23 -24.77435182151353 -65.44220769760702 1 447 \N jherman +304 2025-01-09 23:41:05.798+00 2025-01-09 23:41:05.798+00 f t Lucia Di Roma ldiroma@hotmail.com 5491140475240 \N S.Ruggieri 2944 17D \N FEMALE \N 37.96600002533866 13.972898331151766 1 448 \N ldiroma +305 2025-01-09 23:48:28.311+00 2025-01-09 23:48:28.311+00 f t Sofia Ricciardi sofiiricciardi@gmail.com 5491169817959 \N Alfredo palacios 1093 \N \N FEMALE 2004-06-18 -34.45173353022016 -58.53549895167996 75 449 \N sricciardi +306 2025-01-10 18:51:46.465+00 2025-01-10 18:51:46.465+00 f t Patricia Fernandez patrixia28@hotmail.com +5491160008900 \N punta arenas 1530 \N \N FEMALE 1973-08-29 -34.59580464148075 -58.47051130388188 34 450 \N pfernandez +307 2025-01-10 18:55:16.584+00 2025-01-10 18:55:16.584+00 f t Jorge Marcelo Roldan rogerjorge2002@yahoo.com.ar +5491154038986 \N Santiago del Estero 608 2B \N MALE \N -34.6155458367347 -58.38442062857143 49 451 \N jroldan +309 2025-01-10 19:16:07.533+00 2025-01-10 19:16:07.533+00 f t Florencia Belén Rosales florchi_b89@hotmail.com 5492235313554 \N Monroe 5238 6a \N FEMALE 1989-11-22 -34.57521941176471 -58.48777408235294 29 453 \N frosales +310 2025-01-13 19:29:02.196+00 2025-01-13 19:29:02.196+00 f t Silvia Perelis sbperelis@hotmail.com 5491151372692 \N Rodríguez Peña 145 piso 1 D \N FEMALE \N -34.6621938 -58.7330335 13 454 \N sperelis +311 2025-01-13 19:39:12.618+00 2025-01-13 19:39:12.618+00 f t Maximiliano López maxieduardolo2018@gmail.com 5491120090607 \N Avenida Mariano Acosta 702 casi Avenida Directorio \N MALE 1991-08-09 -34.647829900000005 -58.464815900000005 5 455 \N mlopez +312 2025-01-13 21:00:46.267+00 2025-01-13 21:00:46.267+00 f t Laura Liponetzky lauralipon@yahoo.com 5491141492945 \N Av. Díaz Vélez 4537 7E CABA \N FEMALE 1969-01-01 -34.60865932653061 -58.43100779591837 14 456 \N lliponetzky +313 2025-01-13 21:35:36.62+00 2025-01-13 21:35:36.62+00 f t Jeronimo Ibaceta jeronimoibaceta@gmail.com 5491141671432 \N Maipu 474 2do F \N MALE 1994-09-10 -34.602585000000005 -58.376752675 13 457 \N jibaceta +314 2025-01-14 16:12:01.959+00 2025-01-14 16:12:01.959+00 f t Vanesa Insuarralde estuyvane@gmail.com 5491141817891 \N Camacuá 92 8°B \N FEMALE 1976-03-17 -34.62861668979591 -58.45823177142857 4 458 \N vinsuarralde +315 2025-01-14 16:22:18.18+00 2025-01-14 16:22:18.18+00 f t Monica Alteño angieebaca@gmail.com 5491131014169 \N avenida hipolito yrigoyen 3930 piso 2, \N FEMALE 1996-08-26 -34.70034377142857 -58.391800014285714 70 459 \N malteno +316 2025-01-14 21:23:21.391+00 2025-01-14 21:23:21.391+00 f t Milagros Bretti miluromero1996@hotmail.com 5491136923593 \N Juana manso 670 dpto 22 a 2 Torre sur \N FEMALE 1996-09-30 -34.60144272958322 -58.363759959264044 30 460 \N mbretti +317 2025-01-15 11:46:53.294+00 2025-01-15 11:46:53.294+00 f t ayelen Arzamendia Rolon Ayelenarzaro@gmail.com +5491169741155 \N Melincué 2706 \N \N FEMALE 1996-01-08 -34.59949740204082 -58.48823342653061 17 461 \N aarzamendiarolon +318 2025-01-15 12:52:37.237+00 2025-01-15 12:52:37.237+00 f t Marta Susana López marlopezpardo@gmail.com 5491166055111 \N Terrada 2533 \N \N FEMALE 1951-04-17 -34.605835633333335 -58.484192533333335 17 462 \N mlopez-2 +319 2025-01-15 17:35:07.851+00 2025-01-15 17:35:07.851+00 f t Tamara Amor Kari_rd@hotmail.com 5491154896360 \N Quirno 354 c \N FEMALE \N -34.63544457346939 -58.469162136734695 4 463 \N tamor +320 2025-01-15 17:55:22.476+00 2025-01-15 17:55:22.476+00 f t Cristina benitez cristinaebenitez@gmail.com 91137676797 \N Av. del Libertador 5505 9C \N FEMALE 1996-02-01 -34.56241973606797 -58.4413873829519 1 464 \N cbenitez +321 2025-01-15 18:51:40.537+00 2025-01-15 18:51:40.537+00 f t Yuleidy Helena Herrera yuleidyeherrera@gmail.com 5491158853577 \N Vidal 1844 6A \N FEMALE 1987-12-19 -34.56660814285714 -58.458353800000005 3 465 \N yherrera +322 2025-01-15 19:03:30.711+00 2025-01-15 19:03:30.711+00 f t Karen Catherine Coronado Zamora info@lenceriaelektra.com.ar 5491161962145 \N Paso 7 El cartel dice remeras térmicas es un local comercial \N FEMALE \N -34.60973765714286 -58.403264332653066 18 466 \N kcoronadozamora +323 2025-01-15 19:08:55.232+00 2025-01-15 19:08:55.233+00 f t Lucia Billubi Luciaemilcebillubi@gmail.com 91149805546 \N Francisco Acuña de Figueroa 759 entre Av Corrientes y Humahuaca \N FEMALE 1991-11-15 -34.60232588979592 -58.422353018367346 23 467 \N lbillubi +324 2025-01-16 14:02:01.499+00 2025-01-16 14:02:01.499+00 f t Eliana Roque elianaroque07@gmail.com 5491164737951 \N Arenales 2330 1F \N FEMALE \N -34.59408052857143 -58.399910157142855 9 468 \N eroque +325 2025-01-16 14:15:44.889+00 2025-01-16 14:15:44.889+00 f t Morena Ribero more.ribero1@gmail.com 91123881532 \N Av. corrientes 5248 3b \N FEMALE \N -34.59948536918014 -58.43939094397019 26 469 \N mribero +853 2025-05-08 13:08:38.807713+00 2025-05-08 13:08:38.807724+00 f t Invitado Amar invitado-1746709717318@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-12 +326 2025-01-16 14:52:04.725+00 2025-01-16 14:52:04.725+00 f t Lilian Gargiulo lilian_gargiulo@yahoo.com.ar 5491140735156 \N Pacheco de Melo 2174 Piso 10 \N FEMALE \N -34.589735165306124 -58.396425777551016 9 470 \N lgargiulo +327 2025-01-16 15:34:48.708+00 2025-01-16 15:34:48.708+00 f t Daiana Araujo daiana@promoagencia.com.ar 5491121748268 \N Cachimayo 1944 \N \N FEMALE 1991-05-12 -34.64161242857143 -58.43472371428572 20 471 \N daraujo +328 2025-01-16 16:58:20.488+00 2025-01-16 16:58:20.488+00 f t Mariana serafini Lic.serafinimariana@gmail.com 91168004243 \N Riobamba 1040 14 C \N FEMALE \N -34.59667884897959 -58.39485491632653 9 472 \N mserafini +329 2025-01-16 19:49:09.38+00 2025-01-16 19:49:09.38+00 f t Alejandra Ponzone alepentagono2@gmail.com 5491167240028 \N Av Juan Bautista Alberdi 2335 dto 8 \N FEMALE 1974-08-29 -34.63088433877551 -58.4607658877551 4 473 \N aponzone +330 2025-01-16 19:54:08.687+00 2025-01-16 19:54:08.687+00 f t Nina Liakhovich Cornejagris@gmail.com 5491127640711 \N av Directorio 777 8D \N FEMALE 1992-05-09 -34.62853171020408 -58.438220093877554 14 474 \N nliakhovich +331 2025-01-16 20:07:13.882+00 2025-01-16 20:07:13.882+00 f t Valeria Pardu parduvaleria@gmail.com 5491164625668 \N Moliere 871 \N \N FEMALE 1983-10-29 -34.63088682857143 -58.50678788571429 65 475 \N vpardu +332 2025-01-16 20:23:54.752+00 2025-01-16 20:23:54.752+00 f t Santiago Areco Arecosantiago40@hotmail.com 5492613740908 \N Av Córdoba 2448 5 B \N MALE 1954-01-19 -34.599492854685806 -58.401759222804 18 476 \N sareco +333 2025-01-17 13:18:25.024+00 2025-01-17 13:18:25.024+00 f t Julieta Salman julietasalman@gmail.com 5491137811571 \N José Bonifacio 1390 2F \N FEMALE 1994-04-11 -34.62864155510204 -58.446283087755106 14 477 \N jsalman +334 2025-01-17 13:45:18.701+00 2025-01-17 13:45:18.701+00 f t Natalia Ropoz nropoz@yahoo.com.ar 5491168097333 \N Zuviria 851 3 C \N FEMALE 1978-10-21 -34.62987651363636 -58.437691949999994 20 478 \N nropoz +335 2025-01-17 15:49:37.31+00 2025-01-17 15:49:37.31+00 f t Leandro cañete leandrocanete@hotmail.com 5491134748697 \N Cabrera 3578 piso 2 B \N MALE 1986-05-03 -34.596769067503786 -58.41663898726597 1 479 \N lcanete +336 2025-01-17 20:46:12.721+00 2025-01-17 20:46:12.721+00 f t Ricardo Taboada Ricardotaboada1964@gmail.com 5491169137103 \N Av.Avellaneda 2447 Portería \N MALE \N -34.62425649183673 -58.46525352653061 4 480 \N rtaboada +337 2025-01-18 16:51:38.169+00 2025-01-18 16:51:38.169+00 f t SILVANA PAULA PALLADINO silvanapaulapalladino@hotmail.com 5491168674502 \N Laguna 1331 \N \N FEMALE 1964-11-11 -34.64677965306122 -58.470907571428576 5 481 \N spalladino +338 2025-01-19 15:33:13.952+00 2025-01-19 15:33:13.952+00 f t Myriam Rodriguez myriamr@remax.com.ar 5491139349955 \N Av José Maria Moreno 870 3 A \N FEMALE 1977-10-31 -34.6237503 -58.4345287 14 482 \N mrodriguez-3 +339 2025-01-19 16:13:43.725+00 2025-01-19 16:13:43.725+00 f t Marcela Gemin marcelagemin@hotmail.com 5491130360649 \N Macedonio Fernández 6047 \N \N FEMALE 1965-01-09 -34.56574872653061 -58.50455935510204 31 483 \N mgemin +341 2025-01-19 16:35:07.352+00 2025-01-19 16:35:07.352+00 f t Monica Ponce monicaponce75@g.ail.com 5491161970832 \N Viel 448 Pb Depto A \N FEMALE 1975-04-10 -34.62185047755102 -58.43230463265306 14 485 \N mponce-2 +343 2025-01-20 12:53:16.655+00 2025-01-20 12:53:16.655+00 f t Lorena Gonzalez Bender lorgonzalezbender@gmail.com 5491154181650 \N tamborini 3953 \N \N FEMALE 1973-04-20 -34.56061197959183 -58.48027657755102 45 486 \N lgonzalezbender +344 2025-01-20 13:13:43.956+00 2025-01-20 13:13:43.956+00 f t Victoria zalazar Victoriazalazar72@gmail.com 5491162661340 \N Baigorria 5031 Dto 3 \N FEMALE 1980-07-16 -34.61702771428571 -58.51353890612245 21 487 \N vzalazar +345 2025-01-20 13:23:19.025+00 2025-01-20 13:23:19.025+00 f t Julieta Alban julieta-alban90@hotmail.com 5491155722284 \N Boyaca 205 Piiso 9, Dpto D. \N FEMALE \N -34.62442860816327 -58.45809178163265 4 488 \N jalban +347 2025-01-20 14:27:45.737+00 2025-01-20 14:27:45.737+00 f t Vanesa Leserre vleserre@gmail.com 5491164509360 \N Jaramillo 4536 \N \N FEMALE 1993-01-15 -34.558246469387754 -58.48819763265306 31 490 \N vleserre +348 2025-01-21 12:05:21.70902+00 2025-01-21 12:05:21.70903+00 f t Tomas Marquez omasmarquez@msn.com 5491141462958 \N Las Heras 2905 Piso 11 Dto 99 \N MALE \N -31.258784900000002 -61.47267395 17 491 \N tmarquez +349 2025-01-21 14:17:35.656401+00 2025-01-21 14:17:35.656409+00 f t Marcela Moisés marcelamoises531@gmail.com 5491159448749 \N Culpina 715 \N \N MALE 1974-03-18 -34.63792371428571 -58.46324071428572 4 492 \N mmoises +350 2025-01-21 17:59:29.280025+00 2025-01-21 17:59:29.280034+00 f t Laura Boetto laura_boetto@yahoo.com.ar 5491130400721 \N Giribone 1638 PB 4 E \N FEMALE \N -34.5796522244898 -58.46521079591837 24 493 \N lboetto +351 2025-01-22 11:23:15.884832+00 2025-01-22 11:23:15.884839+00 f t Yanina Caballero yaninacaballero26@gmail.com +5491124594845 \N Juan Manuel Fangio 3065 \N \N FEMALE 1986-08-20 -34.64420205 -58.39176954563975 32 494 \N ycaballero +352 2025-01-22 12:41:51.410226+00 2025-01-22 12:41:51.410236+00 f t María José GIUSTI mariajose.giusti@bue.edu.ar 5491158716074 \N Bermudez 196 Pb 2 \N FEMALE 1975-06-01 -34.635216261224485 -58.49400591020408 16 495 \N mjosegiusti +353 2025-01-22 17:06:23.472817+00 2025-01-22 17:06:23.472827+00 f t Elen Simonian elu.simonian@gmail.com 5491131255122 \N Libertad 359 C \N FEMALE 1993-04-07 -0.12799465 -78.47425354490173 49 496 \N esimonian +354 2025-01-22 17:48:29.042492+00 2025-01-22 17:48:29.042501+00 f t Lara Camparin lara.camparin@hotmail.com 5491130994926 \N Avenida Beiro 3347 8vo D \N FEMALE 1989-03-20 -34.59858232653061 -58.500234824489795 21 497 \N lcamparin +355 2025-01-22 18:18:18.229721+00 2025-01-22 18:18:18.229732+00 f t Ana Cecilia Lobeto analobeto@hotmail.com 5491166548635 \N San Pedro 3972 Dto 2 \N FEMALE 1979-08-13 -34.643301642857146 -58.4744266 5 498 \N alobeto +356 2025-01-22 23:46:00.012685+00 2025-01-22 23:46:00.012692+00 f t Maximiliano Cabañas cabanas.maximiliano@gmail.com +5492644107711 \N Av. Dr Honorio Pueyrredón 1438 3ero A \N MALE 1995-07-20 -34.60446674081633 -58.448264418367344 26 499 \N mcabanas +357 2025-01-22 23:55:10.957307+00 2025-01-22 23:55:10.957315+00 f t Audry Audry Antonini audryantonini90@gmail.com 5491138667676 \N Paraguay 749 piso 4 apartamento \N FEMALE 1939-01-01 -34.59756162653061 -58.37762343469388 37 500 \N aaudryantonini +358 2025-01-22 23:59:09.171431+00 2025-01-22 23:59:09.171437+00 f t Roxana Carabajal roy2602@gmail.com +5491165551695 \N Sarandí 40 5 E \N FEMALE 1973-02-26 -34.60987159183673 -58.394775508163264 18 501 \N rcarabajal +359 2025-01-23 13:15:10.78151+00 2025-01-23 13:15:10.781519+00 f t Victoria Epulef victoriairupe@hotmail.com 5491161059720 \N Gascón 552 2d \N FEMALE \N -34.605215412244895 -58.42453722653062 23 502 \N vepulef +360 2025-01-23 15:05:44.045733+00 2025-01-23 15:05:44.04574+00 f t Myriam Goicoechea myrrielis46@gmail.com 5491131392048 \N Mendez de Andes 1332 PB A \N FEMALE 1966-11-01 -34.61731132653061 -58.45298068571429 14 503 \N mgoicoechea +361 2025-01-23 17:39:14.485802+00 2025-01-23 17:39:14.485809+00 f t Mariana Mastrovincenzo marianamastrovincenzo1985@gmail.com 5491154718948 \N Juan Francisco segui 3607 piso 13 d \N FEMALE 1985-05-31 -34.57880122653061 -58.409412089795914 1 504 \N mmastrovincenzo +362 2025-01-24 17:58:47.160476+00 2025-01-24 17:58:47.160484+00 f t Aldana arroyo aldanaarroyob15@gmail.com 5491124054704 \N Conesa 2595 depto 6B \N FEMALE 1998-05-21 -34.5608831755102 -58.46600029591836 3 505 \N aarroyo +363 2025-01-24 21:16:47.798334+00 2025-01-24 21:16:47.798343+00 f t Jimena Montesi fjmontesi@hotmail.com 5491162585111 \N Av alvarez jonte 1604 dto A \N FEMALE 1978-08-17 -34.59913681567921 -58.46827901225808 34 506 \N jmontesi +364 2025-01-25 14:33:10.573736+00 2025-01-25 14:33:10.573744+00 f t Betiana Gisele Haines betiana.haines@gmail.com 5491125552859 \N Ceretti 2093 \N \N FEMALE 1979-06-01 -34.58123766530612 -58.490464236734695 29 507 \N bhaines +365 2025-01-25 20:53:20.635158+00 2025-01-25 20:53:20.635166+00 f t Jennifer tilio jennifertilio93@hotmail.com.ar +5491122461087 \N Donizetti 414 \N \N FEMALE 1993-10-18 -34.642170916326535 -58.49547262653061 65 508 \N jtilio +366 2025-01-25 21:17:49.766577+00 2025-01-25 21:17:49.766584+00 f t Marcia Juárez marciaelianajuarez@gmail.com 5491166047243 \N Valdenegro 3480 \N \N FEMALE 1981-11-14 -34.56259883333333 -58.48991725 29 509 \N mjuarez +367 2025-01-26 17:44:38.981139+00 2025-01-26 17:44:38.981147+00 f t Eduardo saco sacoeduardo@gmail.com 5491160383351 \N Dr emilio ravignani 1355 2do D \N MALE 1989-03-16 -34.58494688163265 -58.442920124489795 1 510 \N esaco +368 2025-01-26 18:41:31.480095+00 2025-01-26 18:41:31.480105+00 f t Daniela Cabana danusnina@gmail.com 5491134226756 \N Defensa 1326 6° 613 \N FEMALE 1979-08-15 -34.62340152857143 -58.37116990612245 15 511 \N dcabana +369 2025-01-26 18:47:38.410155+00 2025-01-26 18:47:38.410162+00 f t Alberto Adrian bertana albertobertana2019@gmail.com 5491156130753 \N Cochabamba 1527 Depto 1 \N MALE 1965-04-22 -30.306577308163266 -61.22856055102041 12 512 \N abertana +370 2025-01-26 21:22:27.353356+00 2025-01-26 21:22:27.353364+00 f t Roxani Salcedo roxani.salcedo@gmail.com 5491169047724 \N Vera 859 piso 5 depto. 7 \N FEMALE 1994-05-07 -34.595788704081635 -58.440600446938774 26 513 \N rsalcedo +371 2025-01-26 21:38:48.320042+00 2025-01-26 21:38:48.320051+00 f t Miguel Tcholakian mtcholakian@gmail.com 5491136232438 \N Humberto primo 2497 3 B \N MALE 1981-07-01 -34.620793649999996 -58.37498985 15 514 \N mtcholakian +372 2025-01-27 14:10:16.400694+00 2025-01-27 14:10:16.4007+00 f t Patricia San juan patri2309sanjuan@gmail.com 5491169740664 \N \N \N \N \N FEMALE 1964-09-23 44.933143 7.540121 \N 515 \N psanjuan +373 2025-01-27 20:04:04.765481+00 2025-01-27 20:04:04.76549+00 f t María Elina Maffioli memaffioli@gmail.com 5491123462122 \N Grecia 2963 Pb 3 \N FEMALE 1942-11-24 -34.55156261632653 -58.45965194081633 25 516 \N mmaffioli +374 2025-01-27 20:30:43.746375+00 2025-01-27 20:30:43.746382+00 f t Gabriela Zayas sologabyza@hotmail.com 5491163370758 \N Gutenberg 3010 \N \N FEMALE 2025-01-28 -34.5938102 -58.4977743 43 517 \N gzayas +375 2025-01-27 23:19:55.847926+00 2025-01-27 23:19:55.847932+00 f t Sabrina Lozada sabrinarlozada@gmail.com 91158606093 \N Avenida Gaona 1327 4to A (en el portero 41+campana) \N FEMALE 1982-10-30 -34.60834584285714 -58.44821874489796 14 518 \N slozada +376 2025-01-28 01:48:30.59137+00 2025-01-28 01:48:30.591376+00 f t María Manganiello maria.canesa@yahoo.com.ar 5491165799312 \N Nicolás Repetto 1081 . Timbre A \N FEMALE 1968-12-24 -34.6091606122449 -58.44859491836735 14 519 \N mmanganiello +377 2025-01-28 20:53:23.965544+00 2025-01-28 20:53:23.965551+00 f t Virginia Rodríguez Guma mavirgiguma@gmail.com 5491156590000 \N Araujo 2917 \N \N FEMALE 1976-05-23 -34.66435886122449 -58.475416820408164 64 520 \N vrodriguezguma +378 2025-01-28 21:10:32.232177+00 2025-01-28 21:10:32.232184+00 f t Lautaro Cassouto autarocassouto@gmail.com 5491133452959 \N Espimosa 1457 \N \N MALE 1997-11-22 \N \N 14 521 \N lcassouto +379 2025-01-28 23:29:38.099126+00 2025-01-28 23:29:38.099133+00 f t Patricia Corrado patruvelez05@hotmail.com 5491166027563 \N Nicasio Oroño 2051 9D \N FEMALE 1977-11-25 -34.60302683673469 -58.4611532244898 34 522 \N pcorrado +380 2025-01-28 23:40:18.212772+00 2025-01-28 23:40:18.212779+00 f t Melisa cilia mel.cilia@hotmail.com 5491165889570 \N Int. Atilio deprati 4060 \N \N FEMALE 1992-07-29 \N \N 27 523 \N mcilia +381 2025-01-29 14:55:49.422536+00 2025-01-29 14:55:49.422545+00 f t Catalina Palma catupalma@gmail.com 92615173872 \N Av del Libertador 3794 13A \N MALE 1989-11-28 -34.4942976125 -58.484685925 69 524 \N cpalma +382 2025-01-29 23:31:48.162191+00 2025-01-29 23:31:48.162201+00 f t Jasmin Lilen jasminlilen@gmail.com 5491133917774 \N Bragado 2047 \N \N FEMALE 1991-04-22 -34.641386422448974 -58.62619314489796 54 525 \N jlilen +383 2025-01-29 23:36:30.887123+00 2025-01-29 23:36:30.88713+00 f t Marisa Ofelia Fernández marisaofeliafernandez@gmail.com 5491132328151 \N Gorriti 5640 \N \N FEMALE 1959-03-30 -34.584647240816324 -58.43767919387755 1 526 \N mfernandez +384 2025-01-30 15:32:28.14191+00 2025-01-30 15:32:28.141916+00 f t Gabriela Noguera gabrielanoguera3808@gmail.com 5491168003473 \N Sinclair 3215 1 piso \N FEMALE 1993-10-01 -34.573004999999995 -58.42213956896269 1 527 \N gnoguera +385 2025-01-30 19:01:37.650457+00 2025-01-30 19:01:37.650465+00 f t Lara Perez Almiron laraperezalmiron@gmail.com 91123173972 \N Av Directorio 986 10A \N FEMALE 1991-02-13 -34.629231000000004 -58.441301442857146 14 528 \N lperezalmiron +386 2025-01-30 19:44:32.804365+00 2025-01-30 19:44:32.804372+00 f t Verónica Mayer namaste.vero@gmail.com 91131545963 \N Jaramillo 3232 depto 5 \N FEMALE 1966-09-28 -34.55204630612244 -58.476158787755104 31 529 \N vmayer +387 2025-01-30 23:23:20.283967+00 2025-01-30 23:23:20.283976+00 f t Carolina Campion carolinacampion@hotmail.com +5491122859015 \N Paraguay 5529 2 B \N FEMALE 1982-02-02 -34.57672721428572 -58.4342658 1 530 \N ccampion +388 2025-01-30 23:26:06.13119+00 2025-01-30 23:26:06.131199+00 f t Abril Ramos amv311@hotmail.com 5491164138044 \N Amenabar 3821 en el portero tocar 91 \N FEMALE 2001-11-03 -34.55249844693474 -58.46828340342063 25 531 \N aramos +389 2025-01-30 23:30:55.179595+00 2025-01-30 23:30:55.179602+00 f t Gustavo Quintana kintanagustavo@gmail.com 5491156668936 \N Condarco 2708 \N \N MALE 1979-09-14 -34.603283499999996 -58.484936714285716 17 532 \N gquintana +390 2025-01-30 23:39:42.732136+00 2025-01-30 23:39:42.732143+00 f t Alejandra Pérez aleperezbenchuga@gmail.com 5491135201300 \N espinosa 44 8vo \N FEMALE 1987-08-02 -34.621910557142854 -58.44621777142857 14 533 \N aperez +391 2025-01-31 13:44:25.426615+00 2025-01-31 13:44:25.426626+00 f t María Bandera cebandera@gmail.com 5491144349379 \N Ramón Falcón 2335 piso 7 depto C \N FEMALE 1963-01-10 -34.62970641632653 -58.46124523061225 4 534 \N mbandera +392 2025-01-31 17:32:51.148385+00 2025-01-31 17:32:51.148394+00 f t Caterina Scicchitano caterinascicchitanoiam@gmail.com 5491132933721 \N Alt. Seguí 336 336 4g \N FEMALE 1992-05-28 41.3554282374577 1.7020751458632635 14 535 \N cscicchitano +394 2025-01-31 21:18:20.718028+00 2025-01-31 21:18:20.718035+00 f t Flavia Revagliatti byeol.amino@gmail.com 5491150284076 \N Nicolas Repetto 1021 4to C \N FEMALE 1991-08-04 -34.617399500000005 -58.4443945 14 537 \N frevagliatti +395 2025-02-01 21:46:58.878832+00 2025-02-01 21:46:58.878839+00 f t Lucia berghella berghellalucia@gmail.com 5491140290895 \N Mariano acha 997 \N \N FEMALE \N -34.58390720408163 -58.471955291836736 24 538 \N lberghella +396 2025-02-01 21:54:04.56156+00 2025-02-01 21:54:04.561567+00 f t Matias Greisert matiasgreisert@hotmail.com 5491168599488 \N Av San Juan 4245 timbre 105 \N MALE 1998-08-08 -34.62661218367347 -58.424805346938776 11 539 \N mgreisert +397 2025-02-01 22:06:12.996751+00 2025-02-01 22:06:12.996761+00 f t Stéphanie corrado stephaniecorrado31@gmail.com 33660303784 \N 2297 gorostiaga \N \N \N FEMALE 1990-12-04 \N \N 3 540 \N scorrado +398 2025-02-01 22:11:45.255387+00 2025-02-01 22:11:45.255395+00 f t Marcela Gimenez marcelasilvanagimenez@gmail.com 5491157541082 \N SAN blas 1647 4E \N FEMALE 1990-12-07 -34.603536483673466 -58.46539602653061 63 541 \N mgimenez +399 2025-02-01 22:20:22.122315+00 2025-02-01 22:20:22.122322+00 f t Verónica Pereyra veroracing2012@gmail.com 5491167473774 \N avenida San Juan 2816 2 f2 \N FEMALE 1976-01-03 -34.624140798305085 -58.404215030508475 12 542 \N vpereyra +400 2025-02-02 17:47:57.939188+00 2025-02-02 17:47:57.939194+00 f t Romina Chaya rominachaya@yahoo.com.ar 5491150950212 \N Bonifacio 382 piso 6A \N FEMALE 1972-07-15 -34.6265776244898 -58.43230345918367 14 543 \N rchaya +401 2025-02-02 17:53:30.880712+00 2025-02-02 17:53:30.880719+00 f t Mariela Wonsiak mariela_wonsiak@hotmail.com 5491141567260 \N aranguren 965 \N \N FEMALE 1977-02-16 -34.61579427346939 -58.44592570408164 14 544 \N mwonsiak +402 2025-02-02 18:39:04.234426+00 2025-02-02 18:39:04.234434+00 f t Cintia correa cintia86correa@gmail.com 5491168164562 \N Catamarca 790 3B \N FEMALE 1986-08-12 -34.61888912424243 -58.40500280707071 12 545 \N ccorrea +403 2025-02-02 20:36:19.958236+00 2025-02-02 20:36:19.958246+00 f t Mara Fiorini marafiorini94@gmail.com 5491169240852 \N Lambare 1095 4° 8, CP 1185 \N FEMALE \N -34.601150016326535 -58.42990377142858 23 546 \N mfiorini +404 2025-02-02 20:44:03.770918+00 2025-02-02 20:44:03.770924+00 f t Rosa Lozano rosa_lozano@hotmail.com 5491151080762 \N Boulevard de todos los santos lite 76 \N \N FEMALE 1948-12-03 \N \N 22 547 \N rlozano +406 2025-02-02 21:05:46.545887+00 2025-02-02 21:05:46.545894+00 f t Lucas Pereyra lucas.pereyra7@hotmail.com 5491173692864 \N Lavalle 1987 5D \N MALE 1995-09-23 -34.603203685714284 -58.39515447346939 18 549 \N lpereyra +407 2025-02-03 17:03:36.710453+00 2025-02-03 17:03:36.710463+00 f t Mariana Arce marianarbru@hotmail.com 5491138219365 \N Dr Rómulo Naón 2439 depto 5 \N FEMALE 1979-06-21 44.9379672 7.5400398 3 550 \N marce +408 2025-02-03 19:23:37.409753+00 2025-02-03 19:23:37.40976+00 f t Silvia Tormos silvitormos@hotmail.com 5491168026517 \N Gral Jose Maria Bustillo 3218 \N \N FEMALE 2025-02-02 \N \N 4 551 \N stormos +13299 2025-11-14 15:09:44.569467+00 2025-11-14 15:09:44.569476+00 f t Invitado Amar invitado-1763132983943@example.com 55555555 \N \N \N \N \N 13 \N \N \N +410 2025-02-03 21:14:49.993809+00 2025-02-03 21:14:49.993817+00 f t Florencia Espíndola florespindola86@gmail.com 5491162153384 \N ibera 1518 \N \N FEMALE 1986-03-29 -34.548867744897954 -58.45534511632653 25 553 \N fespindola +411 2025-02-03 21:54:34.659973+00 2025-02-03 21:54:34.660014+00 f t Laura Mersilian lauramersilian@gmail.com 5491136198702 \N Av Rivadavia 5920 6B \N FEMALE 2025-02-03 -34.62381180204082 -58.448885218367344 14 554 \N lmersilian +412 2025-02-04 00:22:59.333287+00 2025-02-04 00:22:59.333295+00 f t Omar Horacio Ojeda desconocido@gmail.com 5493624728240 \N Carlos Calvo 1305 Dto. 8 \N MALE 1988-02-24 -34.6199189 -58.390262 49 555 \N oojeda +413 2025-02-04 13:00:31.528458+00 2025-02-04 13:00:31.528468+00 f t Analia Giselle Freijo nanifreijo@gmail.com 5491138536169 \N Barcala 3083 timbre 1 \N FEMALE 1990-12-07 -34.62544211552436 -58.40788247543325 12 556 \N afreijo +414 2025-02-04 14:08:32.543585+00 2025-02-04 14:08:32.543592+00 f t Giuliana Di Mauro giuli_dim@hotmail.com 91134445319 \N José María Moreno 374 8A \N FEMALE 1993-10-20 -34.62248985714286 -58.434646959183674 14 557 \N gdimauro +415 2025-02-04 15:45:58.665009+00 2025-02-04 15:45:58.665016+00 f t Eliana martorelli emartorelli@hotmail.co 5491156690174 \N Avenida Santa Fe 2534 \N \N FEMALE 2025-02-01 -34.594409530612246 -58.402896932653064 9 558 \N emartorelli +416 2025-02-04 16:31:24.49+00 2025-02-04 16:31:24.490009+00 f t Julian Ignacio Ledesma julian.ledesma95@gmail.com 5491138231992 \N Bolivar 553 3ro \N MALE 1995-02-06 -34.61436437755102 -58.37330716734694 49 559 \N jignacioledesma +417 2025-02-04 19:09:54.585915+00 2025-02-04 19:09:54.585922+00 f t Pilar Marsden pilarmarsden2000@gmail.com 5491162828706 \N 11 de septiembre 1890 dpto 17 \N FEMALE \N -34.5529809 -58.4561366 3 560 \N pmarsden +418 2025-02-05 14:30:45.681415+00 2025-02-05 14:30:45.681424+00 f t Gabriela Fernandez Galilea profesoragabrielafernandez@hotmail.com 5491141642666 \N Bolivar 1659 9B \N FEMALE 1974-10-28 -34.6183884704772 -58.37302932812631 15 561 \N gfernandezgalilea +419 2025-02-05 20:09:18.333978+00 2025-02-05 20:09:18.333989+00 f t Florencia Sosa florenciasosa928@gmail.com 5491155021082 \N Montevideo 459 \N \N FEMALE \N -34.603520281632655 -58.38936560204082 13 562 \N fsosa +420 2025-02-05 23:05:29.735745+00 2025-02-05 23:05:29.735753+00 f t Madisson Rojas madissonrojas@gmail.com 5491168119265 \N Mario bravo 1155 \N \N FEMALE \N -34.59609806240986 -58.415170313496674 1 563 \N mrojas +421 2025-02-05 23:27:33.119836+00 2025-02-05 23:27:33.119844+00 f t Natalia Antonella Plumere plumere.natalia@gmail.com 5491165080957 \N La facultad 1566 PB 2 \N FEMALE \N -34.65049170612245 -58.47462853673469 5 564 \N nplumere +422 2025-02-06 14:12:07.453219+00 2025-02-06 14:12:07.453226+00 f t Jimena Ucha jimenaucha@hotmail.com 5491134819129 \N Bermudez 1308 (Timbre portón garage) \N FEMALE 1990-01-02 -34.6544696122449 -58.57297753061225 50 565 \N jucha +423 2025-02-06 15:45:00.055299+00 2025-02-06 15:45:00.055305+00 f t Nadia Jovanovich nadiajovanovich@hotmail.com 5491168645302 \N \N \N \N \N FEMALE 1984-10-09 44.933143 7.540121 113 566 \N njovanovich +424 2025-02-07 13:32:25.111945+00 2025-02-07 13:32:25.111953+00 f t Layla Ojeda laylaaojeda@gmail.com 91131152018 \N Av Santa Fe 2564 9A \N FEMALE \N -34.59431965306123 -58.403214963265306 9 567 \N lojeda +425 2025-02-07 18:38:01.491976+00 2025-02-07 18:38:01.49202+00 f t Natalia Abraham romina.laura.abraham@gmail.com 5491122529125 \N MANUEL UGARTE 2115 3°A \N FEMALE \N -34.554873785714285 -58.458948885714285 3 568 \N nabraham +426 2025-02-07 20:47:10.688831+00 2025-02-07 20:47:10.688838+00 f t Sofía Espinosa sofiaespinosa@hotmail.com 5491162895885 \N \N \N \N \N FEMALE \N 44.9379672 7.5400398 14 569 \N sespinosa +427 2025-02-07 20:57:53.467922+00 2025-02-07 20:57:53.46793+00 f t Andrea Angrisani andre2992009@hotmail.com +5491150464544 \N - - - \N FEMALE \N -34.6205897 -58.4413922 14 570 \N aangrisani +428 2025-02-08 03:11:03.593729+00 2025-02-08 03:11:03.593738+00 f t Ariana Glait ariglait@gmail.com 5491150455050 \N ⁠La Pampa 3873 \N \N FEMALE \N -34.56292269568322 -58.45098328553946 3 571 \N aglait +429 2025-02-08 17:54:58.373068+00 2025-02-08 17:54:58.373077+00 f t Diego Martín Rinaldi dieguitorinaldi@hotmail.com 5491136596057 \N O’Higgins 1563 6B \N MALE \N -34.56482544897959 -58.44852172040816 3 572 \N drinaldi +430 2025-02-08 18:05:35.58216+00 2025-02-08 18:05:35.58217+00 f t María Victoria Bravo mavibravogonzalez@gmail.com 5491150295177 \N Manuel Rodriguez 1237 piso 7 A \N FEMALE \N -34.6074549030303 -58.44843912020202 14 573 \N mbravo +431 2025-02-08 21:58:59.100414+00 2025-02-08 21:58:59.100421+00 f t Myriam Laura Bosch myribosch@hotmail.com 5491131444845 \N Inclan 4230 depto 4 p (no funciona el timbre) \N FEMALE \N -34.63360885714286 -58.42299657142857 11 574 \N mbosch +432 2025-02-08 22:12:03.794263+00 2025-02-08 22:12:03.794271+00 f t Agustina Spinedi a.spinedi@outlook.com 5491158625157 \N Fragata pres Sarmiento 815 1A \N FEMALE \N \N \N 14 575 \N aspinedi +433 2025-02-09 22:10:45.750567+00 2025-02-09 22:10:45.750575+00 f t Adriana Noemí Russo arakuyen@gmail.com 5492227550332 \N Avda Pueyrredón 1839 P4 B \N FEMALE \N -34.58982930204082 -58.400017302040816 9 576 \N arusso +434 2025-02-09 22:20:21.847768+00 2025-02-09 22:20:21.847775+00 f t Martina de los Ángeles Cau martinadjdjfj@gmail.com 5491144720792 Email: \N 2 de Abril de 1982 6949 edificio 13A, piso 4to A \N FEMALE \N -34.678674317506605 -58.494283317503864 64 577 \N mdelosangelescau +435 2025-02-09 22:26:02.669746+00 2025-02-09 22:26:02.669757+00 f t Víctor Carbajal victorcarbajal@gmail.com 5491123198525 \N Esteban de Luca 2252 #35 \N MALE \N -34.6358771122449 -58.40219916734694 44 578 \N vcarbajal +436 2025-02-09 22:30:53.597125+00 2025-02-09 22:30:53.597133+00 f t Johanna Martinez johanna.bmartinez@gmail.com 5491168739106 \N Patron 5851 4A \N FEMALE \N -34.643075979591835 -58.51002167755102 52 579 \N jmartinez +437 2025-02-10 13:14:35.544296+00 2025-02-10 13:14:35.544304+00 f t Fabian Tettamanti fabiantettamanti@hotmail.com 5492945699970 \N Mitre Esquel 1153 \N \N MALE 1979-12-16 -42.91220531020408 -71.32960049183674 1 580 \N ftettamanti +438 2025-02-11 01:00:13.996656+00 2025-02-11 01:00:13.99666+00 f t Dylan Amato amatodylan19@gmail.com 5491138724410 \N Bartolomé MITR 4008 \N \N MALE 2004-05-19 \N \N 23 581 \N damato +439 2025-02-11 01:12:12.426048+00 2025-02-11 01:12:12.426053+00 f t Viviana Draghi vdraghi@gmail.com 5491144252876 \N Alte. Manuel J . García 1148 \N \N FEMALE \N \N \N 25 582 \N vdraghi +440 2025-02-11 17:16:43.956173+00 2025-02-11 17:16:43.956185+00 f t Silvana fluekiger fluekigers@gmail.com 5491135735848 \N Soler 3881 piso 8 A \N FEMALE 1974-07-03 -34.59221581632653 -58.416655704081634 1 583 \N sfluekiger +901 2025-05-10 14:55:19.203416+00 2025-05-10 14:55:19.203426+00 f t Invitado Amar invitado-1746888918352@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-45 +405 2025-02-02 20:51:22.975636+00 2025-02-02 20:51:22.975645+00 f t Marcelo Gschwind marcelogschwind@hotmail.com 5491124591728 \N Avenida carabobo 479 2° B \N MALE 1973-02-26 -34.6309659 -58.45465645 4 548 \N mgschwind +441 2025-02-12 19:23:57.718665+00 2025-02-12 19:23:57.718674+00 f t Flavia Len fla_121297@hotmail.com 5491144032204 \N Otamendi 234 3b \N FEMALE 1971-04-26 -34.613934066666666 -58.4325798 23 584 \N flen +442 2025-02-12 21:20:40.820499+00 2025-02-12 21:20:40.820505+00 f t Sally Granadillo granadillosally33@gmail.com +5491124095831 \N Av Córdoba 2390 Piso 10 \N FEMALE 1966-08-13 -34.59962030204081 -58.40089733265306 9 585 \N sgranadillo +443 2025-02-12 21:39:33.76493+00 2025-02-12 21:39:33.764937+00 f t Miranda Minatta Sosa mirandaminatta.he@gmail.com 5491124539551 \N arenales 1789 5A \N FEMALE 2002-03-10 -34.59478971632653 -58.39291627755102 9 586 \N msosa-2 +444 2025-02-13 16:09:03.390582+00 2025-02-13 16:09:03.390592+00 f t Alan Rozental alanrozental1@gmail.com 5491159371100 \N Nuñez 2422 depto 1205 \N MALE \N 44.9379672 7.5400398 26 587 \N arozental +445 2025-02-13 22:12:22.422801+00 2025-02-13 22:12:22.422812+00 f t Leonardo Lanello leonardo@iannello.com.ar 5491155622011 \N Marcelo T alvear 1408 3 \N MALE 1956-03-20 -34.598064550000004 -58.47312950791488 65 588 \N llanello +446 2025-02-13 22:18:09.020522+00 2025-02-13 22:18:09.020532+00 f t Pastora Rezeck pastora.rezeck@gmail.com 5491141923865 \N Humboldt 337 Planta Baja A \N FEMALE 1962-10-04 -34.59552052857143 -58.44859071224489 26 589 \N prezeck +447 2025-02-13 22:21:59.528866+00 2025-02-13 22:21:59.528874+00 f t Hugo Marcelo Brites brites544@gmail.com 5491132608940 \N Ibera 1544 9F \N MALE 1971-11-17 -34.548979942857144 -58.45555444285714 25 590 \N hbrites +448 2025-02-14 18:49:24.400833+00 2025-02-14 18:49:24.400841+00 f t Vanesa boland vaneluig@hotmail.com 5491131520061 \N Av Rivadavia 7190 6B \N FEMALE 2025-02-18 -34.63009865714285 -58.46659926326531 4 591 \N vboland +449 2025-02-14 19:54:45.012638+00 2025-02-14 19:54:45.012648+00 f t agostina Imbe agostina.imbe@gmail.com 5491151073199 \N Talcahuano 638 Pisto 4to, Depto C \N FEMALE 1998-05-20 -34.601195833333335 -58.38539943333333 13 592 \N aimbe +450 2025-02-14 23:16:47.332682+00 2025-02-14 23:16:47.332688+00 f t Stella Maris Floriani stellamarisfloriani@gmail.com 5491168842221 \N Pacheco de Melo 2631 2° A \N FEMALE 1954-12-21 -34.58680777346939 -58.401210695918365 9 593 \N sfloriani +451 2025-02-14 23:20:46.207064+00 2025-02-14 23:20:46.207069+00 f t Analía Dagum analiadm02@gmail.com +5491156353070 \N Agüero 1576 1B \N FEMALE 1966-05-19 -34.59187476326531 -58.4074534122449 9 594 \N adagum +452 2025-02-14 23:24:20.738817+00 2025-02-14 23:24:20.738826+00 f t Sandra Jorge sandjorge22@gmail.com 5491173668223 \N 25 de mayo 244 6to piso \N FEMALE 1962-11-08 -34.60492464285714 -58.37101914285714 13 595 \N sjorge +453 2025-02-14 23:27:27.18623+00 2025-02-14 23:27:27.186236+00 f t Andrea Velazco andrevelmar@gmail.com 5491168901289 \N Bahia Blanca 1060 \N \N FEMALE 1977-05-24 -34.623882695959594 -58.485847839393934 16 596 \N avelazco +454 2025-02-15 21:21:56.6747+00 2025-02-15 21:21:56.674706+00 f t Jesica Maldonado maldonado.jesica87@gmail.com 5491127874010 \N Remedios 2965 timbre 9 \N FEMALE 1987-06-15 -34.63791520408164 -58.46750130612245 4 597 \N jmaldonado +455 2025-02-15 21:30:57.372188+00 2025-02-15 21:30:57.372197+00 f t Marcela Deleu marcela.deleu@gmail.com 5491163588635 \N Laprida 1088 4A \N FEMALE 1980-11-11 -34.59631818367347 -58.4086521244898 9 598 \N mdeleu +456 2025-02-15 21:43:39.230029+00 2025-02-15 21:43:39.230035+00 f t Silvana Mendieta samendiss011@gmail.com 5491123402991 \N Francisco de Laprida 4870 timbre 2 \N FEMALE 1969-07-20 -34.553921176923076 -58.51705946153846 27 599 \N smendieta +457 2025-02-16 21:28:24.8249+00 2025-02-16 21:28:24.824908+00 f t Saray Rigueiro saray.estudiointegral@hotmail.com 5491120230043 \N Marcos Sastre 4431 dto. 1 \N FEMALE 1980-12-18 -34.61340482244898 -58.5051464122449 28 600 \N srigueiro +458 2025-02-16 21:33:54.033289+00 2025-02-16 21:33:54.033295+00 f t Christian Delgado chrisagusdelgado@gmail.com 5491128863546 \N Cuenca 349 \N \N MALE 2025-07-11 -34.62797776530612 -58.47514924489796 4 601 \N cdelgado +459 2025-02-16 21:43:44.005492+00 2025-02-16 21:43:44.005502+00 f t Maia Romig maiaromig@gmail.com 5491156612235 \N Nicaragua 5054 \N \N FEMALE 1997-12-17 -34.58513323673469 -58.42921805510204 1 602 \N mromig +460 2025-02-16 21:52:48.015901+00 2025-02-16 21:52:48.015906+00 f t Patricia Niebla patricianiebla1957@gmail.com 5491140390717 \N Cálcena 267 2 F \N FEMALE 1959-01-04 -34.623173155102045 -58.45668362653061 4 603 \N pniebla +461 2025-02-16 21:57:48.09863+00 2025-02-16 21:57:48.098638+00 f t Elida Mabel Ramirez maby.ra1977@gmail.com 5491164774279 \N Av velez Sarfield 161 2 D \N FEMALE 1977-12-28 -27.6010409085 -55.3313234235 44 604 \N eramirez +462 2025-02-17 15:55:09.367231+00 2025-02-17 15:55:09.36724+00 f t Paula Ciccarossi paulacic@hotmail.com 5491167535935 \N Leiva 4732 depto 2 \N FEMALE \N -34.59663253061225 -58.45451520408163 26 605 \N pciccarossi +463 2025-02-18 13:04:33.684917+00 2025-02-18 13:04:33.684925+00 f t Mireira Sotolai mirei.mirei.ra@gmail.com 5491131418949 \N Avenida Avellaneda 1863 7D \N FEMALE \N -34.62143727755102 -58.45714482653061 4 606 \N msotolai +464 2025-02-18 14:28:26.05261+00 2025-02-18 14:28:26.052616+00 f t Ivan Butera ivan.butera@hotmail.com 5491159493479 \N Av. Córdoba 6057 3B \N MALE 1999-07-07 -34.59188381859753 -58.43371338029647 1 607 \N ibutera +465 2025-02-18 15:08:31.622602+00 2025-02-18 15:08:31.622609+00 f t Valentina Medina valent.medina87@gmail.com 5491158300144 \N Martiniano leguizamon 429 \N \N FEMALE \N -34.6437577 -58.519234614285715 52 608 \N vmedina +466 2025-02-18 16:17:46.981194+00 2025-02-18 16:17:46.981202+00 f t Alejandro Forte alejandroforte2@gmail.com 5491168026858 \N Jose Maria bustillo 3218 \N \N MALE 1992-07-17 -37.44859929056144 -57.7190053447679 4 609 \N aforte +467 2025-02-18 18:57:28.339403+00 2025-02-18 18:57:28.33941+00 f t Mara Alvez marac.alvez@gmail.com 5491127335783 \N miró 1674 \N \N FEMALE \N -34.64019955102041 -58.44292465306122 20 610 \N malvez +468 2025-02-18 19:08:07.301356+00 2025-02-18 19:08:07.301363+00 f t Agustin De Angelis agusdeangelis@gmail.com 5491134228049 \N Av del Puerto 530 \N \N MALE 2004-01-07 -27.49290893517588 -58.927730499497486 153 611 \N adeangelis +469 2025-02-18 20:34:24.789237+00 2025-02-18 20:34:24.789243+00 f t Luciana Campanella lucianacampanella@hotmail.com 5491173644697 \N Thames 1290 7A \N FEMALE 2000-08-03 -34.59024618163265 -58.4345861877551 1 612 \N lcampanella +470 2025-02-18 20:42:45.790569+00 2025-02-18 20:42:45.790579+00 f t Gisele Murua giselemurua@gmail.com 5491133034915 \N río de Janeiro 664 7C \N FEMALE 1992-11-13 -34.607548675 -58.430637999999995 14 613 \N gmurua +471 2025-02-19 16:39:23.658232+00 2025-02-19 16:39:23.658239+00 f t Soledad Lomba eslomba@gmail.com 5491169821067 \N Ciudad de la paz 667 Dpto 5b \N FEMALE 1986-07-31 -34.57175880612245 -58.44541787959184 38 614 \N slomba +472 2025-02-19 19:09:40.956865+00 2025-02-19 19:09:40.956877+00 f t Griselda Buenaventura griselcbw@yahoo.com.ar 5492974231801 \N Muñecas 956 dto 2 \N FEMALE 1945-12-24 -34.59930786938776 -58.447306942857146 26 615 \N gbuenaventura +473 2025-02-19 23:21:49.793261+00 2025-02-19 23:21:49.793267+00 f t Barbara Acuña barbycu97@gmail.com 5491136106539 \N Av cordoba 3822 2do 5to \N FEMALE \N -34.597863061224494 -58.420588691836734 23 616 \N bacuna +474 2025-02-19 23:26:15.637923+00 2025-02-19 23:26:15.63793+00 f t Christ Parra christladyparra@gmail.com 5491125617990 \N Av Maipu 3460 7mo G \N MALE 1900-09-07 -34.50411448571429 -58.494622291836734 59 617 \N cparra +475 2025-02-20 19:43:35.770194+00 2025-02-20 19:43:35.7702+00 f t Zoe Campaña zoemolina2018@icloud.com 5491122407916 \N Av Fleming 2726 \N \N FEMALE 2000-11-30 36.18476828944318 -5.494581843039439 77 618 \N zcampana +476 2025-02-20 23:48:48.468756+00 2025-02-20 23:48:48.468765+00 f t Diego manzanero diegojmrm7@gmail.com 5491127742304 \N Behring 2563 \N \N MALE 1991-11-20 -34.58411115918368 -58.47496676122449 61 619 \N dmanzanero +477 2025-02-20 23:54:50.78236+00 2025-02-20 23:54:50.78237+00 f t Noelia Rojas noe.cristel.r@gmail.com 5491133586686 \N Avenida Córdoba 5443 112 \N FEMALE \N -34.5883535 -58.43880108571429 1 620 \N nrojas-2 +478 2025-02-20 23:58:36.842807+00 2025-02-20 23:58:36.842817+00 f t Noelia Blazquez noye20@gmail.com 5491164480737 \N Catamarca 820 \N \N FEMALE 1988-05-20 -34.68331048979592 -58.3961802122449 70 621 \N nblazquez +479 2025-02-21 12:34:38.997592+00 2025-02-21 12:34:38.997602+00 f t Cyntia terrera betsabet.terrera@gmail.com 5491166221700 \N cajaravilla 5141 pb3 \N FEMALE 1987-04-19 -34.641145253061225 -58.49927496326531 65 622 \N cterrera +480 2025-02-21 18:29:50.492988+00 2025-02-21 18:29:50.492994+00 f t Miguel Sisi sisimiguel44@gmail.com 5491153169123 \N 11 de septiembre 1888 1555 virrey plaza 18 A \N MALE \N -25.7918881 -53.8767761 3 623 \N msisi +481 2025-02-21 19:46:40.869505+00 2025-02-21 19:46:40.869513+00 f t Javier Rodriguez x@x.com 5491169634351 \N Lavalle 4022 8d torre 2 \N MALE \N -34.597826350000005 -58.423493300000004 23 624 \N jrodriguez +482 2025-02-21 20:25:12.705875+00 2025-02-21 20:25:12.705883+00 f t Mirna Gutiérrez mirnagutierrez978@gmail.com +5491162006115 \N Wenceslao Villafañe 1599 Pb \N FEMALE 1989-10-15 -34.635002 -58.373942 32 625 \N mgutierrez +483 2025-02-21 20:35:25.430278+00 2025-02-21 20:35:25.430285+00 f t Erika Karina Juarez eryjuarez@hotmail.com 5491125694065 \N Montenegro 1558 \N \N FEMALE 1980-01-28 -34.587513571428566 -58.46889771428571 24 626 \N ejuarez +484 2025-02-22 21:25:40.919401+00 2025-02-22 21:25:40.91941+00 f t Jessica Antonella Balvidares j.a.balvidares@gmail.com 54911514080065491151 \N Diagonal Pavon 4344 \N \N FEMALE 1991-05-01 -34.539307557142855 -58.518820842857146 82 627 \N jbalvidares +485 2025-02-22 21:30:09.384379+00 2025-02-22 21:30:09.384386+00 f t Irene nalpatian irenenalpatian@yahoo.com.ar 5491162622233 \N Gorriti 5723 \N \N FEMALE 1951-06-22 -34.583856804081634 -58.43845949387755 1 628 \N inalpatian +486 2025-02-22 21:36:47.05751+00 2025-02-22 21:36:47.057523+00 f t Soledad Raquel Ibarra soledadibarraa20@gmail.com 5491161266712 \N GUAYAQUIL 454 DEPTO 6B \N FEMALE 1990-10-21 -34.62036419387755 -58.434774926530615 14 629 \N sibarra +487 2025-02-23 22:31:58.105529+00 2025-02-23 22:31:58.105536+00 f t Josefina Dib Hasan josefinadibhasan@gmail.com 5493413045457 \N beruti 2379 3d \N FEMALE 1991-11-26 -34.5929996244898 -58.400051424489796 9 630 \N jhasan +488 2025-02-23 22:36:26.739751+00 2025-02-23 22:36:26.739759+00 f t Andrés lencina andreslencina07@gmail.com 5491128846656 \N Paraguay 1926 \N \N MALE 1990-10-29 -33.030863121077154 -60.595358244462 22 631 \N alencina +489 2025-02-24 22:54:14.474009+00 2025-02-24 22:54:14.474018+00 f t Ines Makoveckas inesmakoveckas@hotmail.com 5491169499663 \N Maure 3516 3ro E \N FEMALE 1956-06-23 -34.58151373735613 -58.44926392095025 35 632 \N imakoveckas +490 2025-02-24 23:07:26.398371+00 2025-02-24 23:07:26.398381+00 f t Vanina Gerli vaninager@gmail.com 5491160384412 \N charcas 3896 2 B \N FEMALE 1980-12-12 -34.58705807142857 -58.41870960612245 1 633 \N vgerli +491 2025-02-24 23:13:13.736049+00 2025-02-24 23:13:13.736057+00 f t Graciela asunta Bello bellogracielaasunta@gmail.com 5491154970733 \N Pedraza 2561 quinto D \N FEMALE 1945-02-16 -34.552454744897965 -58.467817614285714 25 634 \N gasuntabello +492 2025-02-24 23:33:38.794701+00 2025-02-24 23:33:38.794708+00 f t María pallotto msol_3@hotmail.com 5491130442231 \N blanco encalada 1451 Dto 104 \N FEMALE 1980-08-20 -34.55348748163265 -58.449608220408166 3 635 \N mpallotto +493 2025-02-25 00:04:53.399968+00 2025-02-25 00:04:53.399978+00 f t maría mogollón olaya falcao12234@hotmail.com +5491131867769 \N bartolome mitre 2452 \N \N FEMALE 1953-04-13 -34.60868443061224 -58.40122212448979 18 636 \N molaya +494 2025-02-25 16:25:21.380803+00 2025-02-25 16:25:21.380811+00 f t Maria soria soriamaria349@gmail.com 5491136569622 \N Peron 2231 Pb 3 \N FEMALE 1986-04-14 -34.60719443877551 -58.398317293877554 18 637 \N msoria +496 2025-02-25 18:55:59.184921+00 2025-02-25 18:55:59.184931+00 f t Melisa Figueras melu88_6@hotmail.com 5491168538144 \N General las heras 4288 \N \N FEMALE 1988-02-26 -34.547570025 -58.513421525 27 638 \N mfigueras +497 2025-02-25 19:03:02.863978+00 2025-02-25 19:03:02.86405+00 f t Camila illanes illanes.k17@gmail.com 5492645288842 \N Lezica 4231 6A \N FEMALE 1998-11-23 -34.61223844081633 -58.42602767755102 23 639 \N cillanes +498 2025-02-25 21:08:34.722356+00 2025-02-25 21:08:34.722365+00 f t María del Pilar Taboada pil.taboada@gmail.com 5491150290943 \N Acoyte 1394 6to A \N FEMALE 1991-09-10 -34.60368708571429 -58.442668973469395 26 640 \N mtaboada +499 2025-02-25 23:59:51.169633+00 2025-02-25 23:59:51.16964+00 f t Raquel da Costa Sousa sousaraquel616@gmail.com 5491130341210 \N Peña 3064 \N \N MALE 1997-11-11 -34.58585968641111 -58.40541604886897 9 641 \N rcostasousa +500 2025-02-26 00:07:33.681307+00 2025-02-26 00:07:33.681318+00 f t Sonia Jaimez ssjaimez@gmail.com 5491134718605 \N Felipe vallese 1042 6 \N FEMALE 1979-10-20 -34.61466037142857 -58.449026736734695 14 642 \N sjaimez +501 2025-02-26 00:18:44.995358+00 2025-02-26 00:18:44.995367+00 f t Gabriel Centurión gcentu74@gmail.com 54 9 11 6434-3928 \N Manuela Pedraza 6081 Planta alta \N MALE 1974-12-14 -34.57047710204082 -58.50256446938776 29 643 \N gcenturion +502 2025-02-26 00:25:26.181272+00 2025-02-26 00:25:26.18128+00 f t Maurizio Barbati Barbati 00000@gmail.com 5219841572430 \N Bartolome Mitre 1829 \N \N MALE \N -34.5612118 -58.5167387 63 644 \N mbarbati +503 2025-02-26 15:20:20.012859+00 2025-02-26 15:20:20.012868+00 f t Joaquin Daniel Núñez joaquin.daniel.nunez@gmail.com 5491130506588 \N Avenida congreso 4360 \N \N MALE \N -34.5657370877551 -58.48227669387755 29 645 \N jnunez +504 2025-02-26 15:36:04.606521+00 2025-02-26 15:36:04.606533+00 f t Marina Mariasch mmariasch@gmail.com 5491131603969 \N Cabello 3565 12 A \N FEMALE 1973-05-31 -34.5808762 -58.410009 1 646 \N mmariasch +505 2025-02-26 16:23:45.864281+00 2025-02-26 16:23:45.864289+00 f t Luis gabriel acevedo Ramirez luisgabriel.ace@gmail.com 5491130394556 \N Sanchez de loria 424 12 D \N MALE 1990-09-18 -34.61442435918367 -58.412764569387754 23 647 \N lramirez +506 2025-02-26 17:28:08.415375+00 2025-02-26 17:28:08.415384+00 f t Adriana Barcia abarcia9@gmail.com 5491139559795 \N Boedo 2065 \N \N FEMALE 1972-11-25 -34.63841741428571 -58.416099836734695 11 648 \N abarcia +507 2025-02-26 20:52:11.192528+00 2025-02-26 20:52:11.192537+00 f t Dan stofenmacher fliastofen@gmail.com 5491165178047 \N Bulnes 1638 7a \N FEMALE 1996-08-04 -34.588251 -58.4112129 1 649 \N dstofenmacher +508 2025-02-26 23:18:14.885344+00 2025-02-26 23:18:14.88535+00 f t Paula Walter 000001@gmail.com 5491155799286 \N Arenales 1522 3A \N FEMALE 1980-04-10 -34.594620549908605 -58.389375765988575 9 650 \N pwalter +509 2025-02-27 00:16:58.399726+00 2025-02-27 00:16:58.399734+00 f t Maria Valeria Mallo mariavaleriamallo@gmail.com 5491155059697 \N Pringles 324 1b \N FEMALE \N -34.608306346938775 -58.42783714285714 23 651 \N mmallo +511 2025-02-27 00:24:40.968728+00 2025-02-27 00:24:40.968738+00 f t Javier Cadahi cadahiajavier@hotmail.com 5491167928090 \N Pasaje Vicente Fidel 2085 \N \N MALE \N \N \N 21 653 \N jcadahi +512 2025-02-27 18:09:55.357557+00 2025-02-27 18:09:55.357565+00 f t Rosario Cuba rosario.cuba.r@gmail.com 5491141878855 \N Aguirre 282 7A \N FEMALE 1992-12-11 -34.5996078122449 -58.4339496632653 26 654 \N rcuba +513 2025-02-27 18:15:49.741942+00 2025-02-27 18:15:49.741952+00 f t Anandini Peri anandiniperi@gmail.com 5491166866158 \N José Antonio Cabrera 5715 1 piso \N FEMALE 1983-06-24 -34.584703985714285 -58.4393348 1 655 \N aperi +514 2025-02-27 20:03:37.592032+00 2025-02-27 20:03:37.592041+00 f t Blanca Remigia González Chamorro blanca_gonzalez_chamorro@hotmail.com 5491133235931 \N Rodriguez peña 124 2 piso D \N FEMALE 1960-10-01 -34.60761954693878 -58.390791104081636 13 656 \N bgonzalezchamorro +515 2025-02-27 23:18:57.463778+00 2025-02-27 23:18:57.463787+00 f t Yanina Santángelo yaannuu14@gmail.com +5491139513738 \N Melian 4680 timbre 12 \N FEMALE \N -34.546662358333336 -58.486354516666665 31 657 \N ysantangelo +516 2025-02-28 18:09:08.78617+00 2025-02-28 18:09:08.786261+00 f t Mariel Lujan 00002@gmail.com +5491126900971 \N Murature 1930 Recondo y Ayolas. \N FEMALE \N -34.727836202033764 -58.422250887050154 71 658 \N mlujan +517 2025-02-28 23:55:30.917036+00 2025-02-28 23:55:30.917045+00 f t Silvana Morena morenolalalandia@gmail.com 5491162054954 \N Justo 3651 Piso 8 \N FEMALE \N -34.602380926530614 -58.45564191836735 26 659 \N smorena +13528 2025-11-17 18:54:51.100627+00 2025-11-17 18:54:51.100636+00 f t Invitado Amar invitado-1763405690065@example.com 55555555 \N \N \N \N \N 44 \N \N \N +518 2025-03-01 16:20:07.570074+00 2025-03-01 16:20:07.570085+00 f t Elsa Franco elsafranco90@gmail.com 5491133927775 \N Tomas liberti 425 \N \N MALE \N -34.6317784 -58.370937749999996 32 660 \N efranco +519 2025-03-01 16:54:35.552611+00 2025-03-01 16:54:35.552623+00 f t Luli Pacheco lu.pacheco87889@gmail.com 5491130640873 \N Juramento 4074 \N \N FEMALE 1989-07-12 -34.84304662970455 -64.38055570124102 26 661 \N lpacheco +520 2025-03-01 17:04:19.744776+00 2025-03-01 17:04:19.744783+00 f t Raquel Herminda Leyenda 0000001@gmail.com 5491160126666 \N Av Córdoba 456 Piso 10 \N FEMALE \N -34.59868351428572 -58.37357226530612 2 662 \N rhermindaleyenda +521 2025-03-01 22:12:39.023438+00 2025-03-01 22:12:39.023448+00 f t Eligia Sotomayor elisotomayor1967@hotmail.co 5491140338126 \N Chacabuco 964 \N \N FEMALE \N -34.53136555306123 -58.485444046938774 59 663 \N esotomayor +522 2025-03-01 22:14:49.407662+00 2025-03-01 22:14:49.407672+00 f t Pablo Andrioli pabloandrioli77@gmail.com +5491164742669 \N Jujuy 1717 \N \N MALE 1977-09-28 -34.63032778235294 -58.400960752941174 44 664 \N pandrioli +524 2025-03-02 21:31:21.426331+00 2025-03-02 21:31:21.426342+00 f t Leonor Barenbaum barenbaumleonor@gmail.com 5491165009549 \N Moron 2703 \N \N FEMALE 1976-06-03 -34.62330579591837 -58.470035959183676 4 666 \N lbarenbaum +525 2025-03-02 21:47:38.012396+00 2025-03-02 21:47:38.012404+00 f t Lucia Graziano lucia@pancara.com.ar 5491154774478 \N Neuquén 2642 pb dto 1 \N FEMALE 1960-01-05 -34.620145785714286 -58.47034180204082 4 667 \N lgraziano +526 2025-03-02 21:59:55.59253+00 2025-03-02 21:59:55.592537+00 f t Dina Chang dinaleti@hotmail.com 5491161429127 \N Wenceslao villafañe 1689 \N \N FEMALE 1980-01-05 -34.635161871428565 -58.37498357142857 32 668 \N dchang +527 2025-03-02 22:05:29.905779+00 2025-03-02 22:05:29.905786+00 f t Ana Carolina Sedano anacarolinasedano8@gmail.com 5491123938339 \N Bolivia 2951 \N \N FEMALE \N -11.1364803 -66.4247427 22 669 \N asedano +528 2025-03-03 15:33:03.086682+00 2025-03-03 15:33:03.086723+00 f t Diego martinez dietotten@gmail.com 5491151219019 \N Paraguay 1594 3a \N MALE 1981-06-03 -34.598517420408164 -58.389497036734696 9 670 \N dmartinez +529 2025-03-03 20:56:51.648454+00 2025-03-03 20:56:51.648461+00 f t Carlos Daniel Galanti danielgalanti@yahoo.com.ar 5491134286888 \N MUÑIZ 376 7 A \N MALE 1957-10-10 -34.617857891836735 -58.42723867346938 23 671 \N cgalanti +530 2025-03-03 21:05:13.539949+00 2025-03-03 21:05:13.539957+00 f t Diego Fernández consuldof@yahoo.com.ar 5491150089775 \N Ituzaingo 945 piso 2B \N MALE 1971-05-09 -34.63227177346939 -58.37693520408163 32 672 \N dfernandez +531 2025-03-04 19:16:13.73538+00 2025-03-04 19:16:13.735387+00 f t David Landes d.landes@shion.com 5491128623018 \N vidal 2430 8 A \N MALE 1948-09-06 44.9379672 7.5400398 3 673 \N dlandes +532 2025-03-04 19:27:48.71325+00 2025-03-04 19:27:48.71326+00 f t Angela Antonella Rivero angerivero92@gmail.com Angela Rivero \N República Argentina 4913 \N \N FEMALE 1992-11-19 -34.422659 -58.5808887 22 674 \N arivero +533 2025-03-04 20:49:14.799375+00 2025-03-04 20:49:14.799382+00 f t Leonor Meligrana leonorhildameligrana@gmail.com 5491157656536 \N Pasaje Bacón 4820 \N \N FEMALE 1956-08-21 -33.6137722837263 -70.70507476222869 21 675 \N lmeligrana +534 2025-03-04 21:10:48.14768+00 2025-03-04 21:10:48.147687+00 f t Zoe Dominique Coulon zoedomi19@gmail.com 5491166890367 \N San Benito de Palermo 1674 \N \N FEMALE 2003-09-19 -34.56794457755102 -58.43304056734694 1 676 \N zcoulon +535 2025-03-04 21:28:27.228404+00 2025-03-04 21:28:27.228415+00 f t Lina Namuncura elisaargentina@hotmail.com 5491135585618 \N Gurruchaga 2163 6B \N FEMALE 1981-07-28 -34.58580441428572 -58.42367631632653 1 677 \N lnamuncura +536 2025-03-04 21:33:10.96129+00 2025-03-04 21:33:10.961296+00 f t Camila Becerra becerracami27@gmail.com 5491168591830 \N Gorriti 4025 2C \N FEMALE 0090-05-10 -34.59527124489796 -58.42177153061225 1 678 \N cbecerra +537 2025-03-04 21:42:00.11004+00 2025-03-04 21:42:00.110047+00 f t Teresa Neuma Oliveira Barreto oliveirateresa70@gmail.com 5491141698852 \N batalla del Pari 641 \N \N FEMALE 1994-08-26 -34.600512228571425 -58.45400749387755 26 679 \N toliveirabarreto +538 2025-03-04 21:50:05.573399+00 2025-03-04 21:50:05.57341+00 f t Natalia Sanchez sancheznata86@gmail.com 5491137729670 \N francisco maciel 881 1D \N FEMALE 1986-12-16 -34.610634469387755 -58.444542142857145 14 680 \N nsanchez +539 2025-03-04 21:54:34.076523+00 2025-03-04 21:54:34.07653+00 f t Maximiliano Ocampo ocampomaxi4@gmail.com 5493624017838 \N Campichuelo 131 2j \N MALE 2001-05-16 -34.615298585714285 -58.433443304081635 14 681 \N mocampo +540 2025-03-05 23:27:16.158342+00 2025-03-05 23:27:16.158349+00 f t Barbara Scarpato baras1217@hotmail.com 5491131251712 \N Juan b. Alberdi 2639 piso 8 dpto A \N FEMALE 1992-09-08 -32.878805757853414 -68.82594083128679 4 682 \N bscarpato +541 2025-03-06 23:05:31.680142+00 2025-03-06 23:05:31.680151+00 f t Camila Inés Bernardo camila.i.bernardo@hotmail.com 5491166389229 \N ladines 2282 \N \N FEMALE 1990-12-15 -34.579288216326525 -58.497241959183675 51 683 \N cbernardo +542 2025-03-06 23:25:44.124118+00 2025-03-06 23:25:44.124125+00 f t Rodrigo Montiel ldsmontiel@gmail.com 5491168320138 \N Rosario 814 Piso 6 depto f \N MALE 1995-06-01 -34.6206126959596 -58.44001423535354 14 684 \N rmontiel +543 2025-03-07 15:59:36.217105+00 2025-03-07 15:59:36.217115+00 f t Gisela Sosa repartoscaba2024@gmail.com 5491168088583 \N tacuari 478 \N \N FEMALE 1984-10-01 -34.61382399183673 -58.378944506122444 49 685 \N gsosa +544 2025-03-08 16:34:52.512993+00 2025-03-08 16:34:52.513002+00 f t Karen Alexandra Roche Gauna alexandraagauna96@gmail.com 5491161236645 \N Talcahuano 981 8 C \N FEMALE 1996-12-31 -36.717371464415145 -73.1244031146078 9 686 \N krochegauna +545 2025-03-08 20:41:59.119668+00 2025-03-08 20:41:59.119676+00 f t Krushenzka Alejandra Arroyo krushenzkaarroyo@hotmail.com 5491134280513 \N Av San Pedrito 1430 2 do 10 \N FEMALE 1990-11-08 -34.6359106 -58.4673161 4 687 \N karroyo +546 2025-03-08 20:50:59.468944+00 2025-03-08 20:50:59.468953+00 f t Claudia Ferrari clau2016ferrari@gmail.com 5491130189833 \N Lacarra 355 p.b depto 3 \N FEMALE 1970-06-06 -34.63858384693877 -58.4835156 16 688 \N cferrari +547 2025-03-08 21:17:03.959301+00 2025-03-08 21:17:03.959309+00 f t Florencia Cantero florencia.cantero16@gmail.com 5491144460885 \N ambrosetti 842 1A \N FEMALE 1992-08-15 -34.60833163265306 -58.438803648979594 14 689 \N fcantero +548 2025-03-09 20:38:14.165471+00 2025-03-09 20:38:14.16548+00 f t Germán Olmedo ger.olmedo@hotmail.com 5491150559706 \N Av. Cramer 1765 11A \N MALE \N -34.5690326 -58.4575367 3 690 \N golmedo +549 2025-03-09 20:46:31.155923+00 2025-03-09 20:46:31.155933+00 f t Julieta Flores Ferreyra ulyflores10@hotmail.com 5491162897688 \N Cabrera 6054 3c \N FEMALE 1984-08-10 -34.58224045510204 -58.44294417142857 1 691 \N jferreyra +550 2025-03-09 20:55:49.887589+00 2025-03-09 20:55:49.887598+00 f t Antonela Alfonso antonelatango16@gmail.com 5492302346345 \N Montevideo 104 \N \N FEMALE 1986-10-27 -34.60773907346938 -58.38933297755102 13 692 \N aalfonso +551 2025-03-09 21:27:32.517502+00 2025-03-09 21:27:32.517513+00 f t María Mercedes Hermida mmhermida90@gmail.com 5491134426271 \N Avenida salvador María del carril 3233 5 a \N FEMALE 1990-07-21 -34.59336694489796 -58.5026566 51 693 \N mhermida +552 2025-03-09 21:39:25.558671+00 2025-03-09 21:39:25.55868+00 f t María Noel Cardozo marianoelcardozobatalla@gmail.com 5491167361374 \N Nicasio Oroño 1558 5C \N FEMALE 1973-02-07 -34.60759742857143 -58.45946642857143 14 694 \N mcardozo +553 2025-03-10 23:26:29.683379+00 2025-03-10 23:26:29.683388+00 f t Caterina Maruenza caterinamaurenza@hotmail.com 5491130864326 \N Paraguay 4814 \N \N FEMALE 1999-10-11 -34.582333363265306 -58.42742954285715 1 695 \N cmaruenza +554 2025-03-10 23:41:24.564792+00 2025-03-10 23:41:24.564798+00 f t Bruno miranda gmirandafpaso@gmail.com 5491158235147 \N Elpidio González 5057 \N \N MALE 1955-10-08 -34.62502681428572 -58.50651705714286 28 696 \N bmiranda +555 2025-03-10 23:46:03.175314+00 2025-03-10 23:46:03.175323+00 f t Dina Yapur doyapur@gmail.com 5491144493081 \N jufre 882 \N \N FEMALE \N -34.59168329591837 -58.43621362040816 26 697 \N dyapur +556 2025-03-10 23:52:43.8148+00 2025-03-10 23:52:43.814809+00 f t Juliana Gómez movie.juli@gmail.com 5491176337976 \N México 2482 \N \N FEMALE 1989-12-28 -34.61658985306123 -58.40095103265306 18 698 \N jgomez +557 2025-03-10 23:58:51.40129+00 2025-03-10 23:58:51.401299+00 f t Silvia Agüero ssaguero@yahoo.com.ar 5491141469629 \N Av. Raul Scalabrini Ortiz 457 4toA \N FEMALE 1966-07-19 -34.59886541428571 -58.4369558 26 699 \N saguero +558 2025-03-11 23:21:10.734657+00 2025-03-11 23:21:10.734667+00 f t Pablo Subovsky pablosubovsky@gmail.com +5491153273261 \N Bulnes 1246 PB 3 \N MALE 1987-01-01 -34.588251 -58.4112129 1 700 \N psubovsky +559 2025-03-11 23:43:54.090328+00 2025-03-11 23:43:54.090334+00 f t María Mercedes Mason mercedesmason@gmail.com 549113799290 \N Giribone 1232 timbre 3 \N FEMALE 1981-02-11 -34.57960672509475 -58.46251150798087 24 701 \N mmason +560 2025-03-11 23:48:23.97098+00 2025-03-11 23:48:23.970989+00 f t Jazmin Méndez ayelenmendez34@gmail.com +5492241532033 \N AV Jujuy 1433 7 B. \N FEMALE 1999-03-17 -34.62677086530612 -58.401635977551024 12 702 \N jmendez +561 2025-03-13 21:19:45.955379+00 2025-03-13 21:19:45.955389+00 f t Alicia Mabel Flores floresaliciamabel@yahoo.com.ar +5491136443625 \N Carlos Calvo 2654 \N \N FEMALE 1958-03-08 -34.621125140816325 -58.40228415714286 12 703 \N aflores +562 2025-03-13 21:24:39.49439+00 2025-03-13 21:24:39.4944+00 f t Claudio antonio cafferata claucafe@gmail.com +5491135128722 \N plaza 916 \N \N MALE \N -34.583490942857146 -58.46747442857143 24 704 \N ccafferata +563 2025-03-13 21:30:25.86609+00 2025-03-13 21:30:25.866097+00 f t Elizabeth Mártin lelitamartin@gmail.com 5491121601311 \N Paraguay 4445 Piso 13 depto1 \N FEMALE \N -34.585014565306125 -58.42363624489796 1 705 \N emartin +564 2025-03-13 21:33:38.367101+00 2025-03-13 21:33:38.367111+00 f t Estela calviño estela.calvino@gmail.com 5491149402245 \N Ortiz de Ocampo 3302 módulo 4 p. 5. 1425 \N FEMALE 1961-10-12 -34.58302762113603 -58.40501744858356 1 706 \N ecalvino +565 2025-03-13 21:40:12.045454+00 2025-03-13 21:40:12.045462+00 f t Luis Enrique Cerrizuela cerrizuelaluis@gmail.com 5491123842793 \N Rivadavia 7190 6b \N MALE 1999-11-26 -34.63009865714285 -58.46659926326531 4 707 \N lcerrizuela +566 2025-03-13 23:44:25.556069+00 2025-03-13 23:44:25.556079+00 f t Álvaro Fernando Carrillo f.alvarezarg@gmail.com +5491169544042 \N habana 3540 \N \N MALE 1999-05-19 -34.59457174081633 -58.507945567346944 21 708 \N acarrillo +567 2025-03-13 23:47:28.986296+00 2025-03-13 23:47:28.986305+00 f t Bárbara Jeanette Alewaerts barbara.alewaerts@gmail.com +5491169358541 \N Estado de Israel 4665 piso 12 \N FEMALE 1989-03-23 -34.600322489795914 -58.43082838979592 26 709 \N balewaerts +568 2025-03-13 23:51:13.941847+00 2025-03-13 23:51:13.941856+00 f t Carla Kexel Vieytes kexelcarla@gmail.com +5491133502734 \N Caboto 147 2do 4 - CABA \N FEMALE 1983-02-08 -34.62651135 -58.36276154773226 33 710 \N cvieytes +569 2025-03-14 15:23:02.59061+00 2025-03-14 15:23:02.590618+00 f t Gabriela Palladino dragabrielapalladino@gmail.com 5491134646053 \N Cadi 3792 casa \N FEMALE 1985-11-08 1.05708 42.4346 29 711 \N gpalladino +570 2025-03-14 15:43:33.031761+00 2025-03-14 15:43:33.031767+00 f t Amanda Araujo Feix araujofeix98@gmail.com 5491130929627 \N Guardia vieja 3757 4C \N FEMALE 1998-11-18 -34.601087028571435 -58.41714031428572 23 712 \N aaraujofeix +571 2025-03-14 18:35:55.248838+00 2025-03-14 18:35:55.248875+00 f t Xiara Williams xiararw@gmail.com 5491130015767 \N 11 de Septiembre 2409 17H \N FEMALE 1990-02-08 -33.89160211020408 -60.59283770408163 3 713 \N xwilliams +572 2025-03-15 21:58:47.913744+00 2025-03-15 21:58:47.913752+00 f t Elisa Laorden elisalaorden@gmail.com +5493492623935 \N Pje. Las Flores 47 \N \N FEMALE 1992-10-13 -27.495068958489288 -58.83994303867375 34 714 \N elaorden +573 2025-03-15 22:01:08.505927+00 2025-03-15 22:01:08.505933+00 f t Rodrigo Manuel Puerta rpuertaescorial@gmail.com +5491122578250 \N Scalabrini Ortiz 3078 11 piso \N MALE \N -34.581097620408165 -58.410662997959186 1 715 \N rpuerta +574 2025-03-17 20:02:35.835286+00 2025-03-17 20:02:35.835296+00 f t Julian Martinez Garbino julian.mgcr@gmail.com 5491126777207 \N Bogota 342 \N \N MALE 2006-01-18 -34.61429186666667 -58.43665406666667 14 716 \N jmartinezgarbino +575 2025-03-17 20:49:22.267767+00 2025-03-17 20:49:22.267775+00 f t Ángeles Condoleo angelescondoleo@gmail.com 5491160538607 \N Juramento 2847 3° A \N FEMALE 1966-06-21 -34.56439323265306 -58.460848575510205 3 717 \N acondoleo +576 2025-03-18 17:23:42.207559+00 2025-03-18 17:23:42.207569+00 f t Denisse Silva dsilvasilva99@gmail.com 5491136864856 \N Doctor Juan Felipe Aranguren 1460 4 D \N FEMALE \N -34.618684579591836 -58.45267683061225 14 718 \N dsilva +577 2025-03-18 18:58:24.665357+00 2025-03-18 18:58:24.665365+00 f t Martín Jurisic tinchojurisic@gmail.com 91169354600 \N rawson 2165 4a, Martínez \N MALE 1993-04-23 -34.4891141 -58.49627059591837 6 719 \N mjurisic +578 2025-03-18 19:05:40.186581+00 2025-03-18 19:05:40.186589+00 f t Marissa Pereira maris121094@gmail.com 91133607771 \N Guevara 1368 dto3 \N FEMALE 1994-10-12 -34.58408564897959 -58.46289199795918 24 720 \N mpereira +579 2025-03-18 19:19:21.974953+00 2025-03-18 19:19:21.97496+00 f t Gisela de los Angeles Toledo Toledo gisetoledo88@gmail.com 91123342734 \N Pasaje coliqueo 2281 \N \N FEMALE \N -32.8562601 -60.7199122 21 721 \N gtoledo +580 2025-03-18 23:53:49.63009+00 2025-03-18 23:53:49.630097+00 f t Karim Ochoa karhu8a@hotmail.com +549116860902 \N Av San Pedrito 269 6C Flores \N FEMALE 1981-10-18 -34.634092153061225 -58.46826187755102 4 722 \N kochoa +581 2025-03-18 23:57:32.562769+00 2025-03-18 23:57:32.562776+00 f t Lucía Moyano luciabmyn@gmail.com 5491131103979 \N Concordia 4210 5 A \N FEMALE \N -34.594824775510205 -58.507032571428574 21 723 \N lmoyano +582 2025-03-19 14:45:29.495608+00 2025-03-19 14:45:29.49562+00 f t Juliana Escobar julianaescobar.loz@gmail.com 5491167632800 \N Gral. Manuel A. Rodriguez 1725 departamento 2 \N FEMALE 1986-09-05 \N \N 26 724 \N jescobar +583 2025-03-19 19:58:00.976137+00 2025-03-19 19:58:00.976145+00 f t Michelle Bouvet m.bouvet@hotmail.com 91162157583 \N Diagonal Pavon 4344 \N \N FEMALE \N 44.9379672 7.5400398 82 725 \N mbouvet +584 2025-03-19 20:07:11.1738+00 2025-03-19 20:07:11.17381+00 f t Maria Cristina Elias macrieli@gmail.com 91153498591 \N Av. Santa Fe 3735 Piso 10 Dto A. 1425 \N FEMALE 1950-10-04 -34.58485781020408 -58.416151095918366 1 726 \N melias +585 2025-03-19 21:21:49.981434+00 2025-03-19 21:21:49.981443+00 f t Silvina Barletta silvinabarletta@gmail.com 91151838535 \N Gorriti 3665 9 C \N FEMALE 1972-09-05 -34.59547283469387 -58.41609992857143 1 727 \N sbarletta +586 2025-03-20 13:29:21.11015+00 2025-03-20 13:29:21.110159+00 f t Catalina Kalabura Jariñuk kathykalabura@gmail.com 91140306066 \N Avenida San Juan 1147 Sin timbre mandar mensaje. \N FEMALE 1996-11-05 -34.62211485476514 -58.3793150795227 60 728 \N ckalaburajarinuk +587 2025-03-20 23:59:00.036772+00 2025-03-20 23:59:00.036783+00 f t Noemi Dambrosio noemidambrosio@hotmail.com 5491134642229 \N Olaya 1723 PBB \N FEMALE 1961-04-12 -34.60132277346939 -58.44786295102041 26 729 \N ndambrosio +588 2025-03-21 00:01:34.968353+00 2025-03-21 00:01:34.968361+00 f t andrea miscione andreamiscione@gmail.com 34602187490 \N Teodoro García 3487 7b \N FEMALE 1989-11-09 -34.57991222040816 -58.45197922448979 14 730 \N amiscione +589 2025-03-21 14:18:57.400256+00 2025-03-21 14:18:57.400263+00 f t Fernanda Valenzuela fernanda.valenzuela@bue.edu.ar 5491158266773 \N Boyaca 1315 piso 1 \N FEMALE 1985-07-11 -34.61789567004747 -58.46284927336357 4 731 \N fvalenzuela +590 2025-03-21 23:05:39.136089+00 2025-03-21 23:05:39.136098+00 f t Jimena Abrahan jimenaabrahan@hotmail.co 5491169538470 \N Sáenz Peña 444 \N \N FEMALE 1985-06-05 -34.42234672349903 -58.574907320028274 22 732 \N jabrahan +591 2025-03-21 23:16:24.010183+00 2025-03-21 23:16:24.01019+00 f t Shyrley Ramirez shirleyramirezarroyo.74@gmail.com +5491127886008 \N ravignani 2391 depto 6D \N FEMALE 1989-02-17 -34.576334667346934 -58.43308115714286 1 733 \N sramirez +592 2025-03-21 23:20:59.180278+00 2025-03-21 23:20:59.180288+00 f t Camila Paula franco camila.paula.franco@gmail.com 5491138214490 \N Maipu 812 1ro J entre av Córdoba y Paraguay \N FEMALE 1995-09-25 -34.59856513265306 -58.37691676530613 37 734 \N cfranco +593 2025-03-21 23:41:04.647508+00 2025-03-21 23:41:04.647514+00 f t Paula Wilensky pwilensky@hotmail.com 5491130328529 \N Honorio Pueyrredon 1530 Timbre D \N FEMALE 1980-05-17 -34.60368814285714 -58.44900321428571 26 735 \N pwilensky +594 2025-03-23 21:19:32.809847+00 2025-03-23 21:19:32.809854+00 f t Sandra Beatriz Kirzman sandrakirzman@gmail.com 5491157296215 \N Av Caseros 1535 piso 10 departamento B \N FEMALE 1986-09-27 -34.6324258122449 -58.384552306122444 60 736 \N skirzman +595 2025-03-23 21:34:21.837911+00 2025-03-23 21:34:21.837919+00 f t Analía Verónica Teruel anyvero35@hotmail.com 5491166960104 \N Av caseros 2353 4A \N FEMALE 1981-08-16 -34.63794190071249 -58.41014747249234 44 737 \N ateruel +596 2025-03-23 21:53:50.729126+00 2025-03-23 21:53:50.729137+00 f t Melany Martinez meli.martinez89@gmail.com 5491123816966 \N Sucre 2496 1 C \N FEMALE 1989-10-22 -34.56447232653061 -58.45588320408163 3 738 \N mmartinez +597 2025-03-23 22:05:51.755811+00 2025-03-23 22:05:51.755817+00 f t Laura Cabrera lauri_c.c@hotmail.com 5491165520343 \N Franklin 950 4°C (Segundo cuerpo) \N FEMALE 1984-05-22 -34.6103564 -58.447262038929004 14 739 \N lcabrera +598 2025-03-23 22:14:55.451069+00 2025-03-23 22:14:55.451077+00 f t Sofía Castellano soficaste94@gmail.com 5491152579349 \N Av CERVIÑO 4747 El piso es 15D \N FEMALE 1994-07-22 -34.574729802040814 -58.42409135306122 1 740 \N scastellano +599 2025-03-23 22:37:53.575424+00 2025-03-23 22:37:53.57543+00 f t MARIA FERNANDA RUIZ lafinca@correopegasus.com.ar 5491154853879 \N AVENIDA FEFERICO LACROZE 3318 1º A \N FEMALE 1986-05-23 \N \N 38 741 \N mruiz +600 2025-03-24 16:32:05.271439+00 2025-03-24 16:32:05.271448+00 f t Claudia Meza claudiameza.contacto@gmail.com 5491176212359 \N pasaje Joaquín castellano 4825 \N \N FEMALE 1992-11-06 \N \N 51 742 \N cmeza +601 2025-03-24 16:42:03.216802+00 2025-03-24 16:42:03.216809+00 f t Julieta Fairchild juli.fairchild@gmail.com 5491150290943 \N Acoyte 1394 6to A \N FEMALE 2003-05-20 -34.60368708571429 -58.442668973469395 26 743 \N jfairchild +602 2025-03-24 19:10:13.119975+00 2025-03-24 19:10:13.120027+00 f t Maykol Daniel Paris Pabon maykoldpp@gmail.com 5491127663899 \N Cramer 381 \N \N FEMALE 1999-03-23 -34.57547701836735 -58.443685602040816 38 744 \N mparispabon +603 2025-03-24 19:43:40.965916+00 2025-03-24 19:43:40.965926+00 f t Maria del Valle vallerodrigiezamenabar@hotmail.com 5491136057781 \N Paraguay 1649 piso 3 E \N FEMALE 1961-11-28 -34.598450323076925 -58.39057825384615 9 745 \N mdelvalle +604 2025-03-24 23:49:24.304431+00 2025-03-24 23:49:24.304438+00 f t Elizabet Algarín 000002@gmail.com +5491165616962 \N Amenabar 1680 2dp5 \N FEMALE \N -34.56702779591837 -58.45530018979592 3 746 \N ealgarin +605 2025-03-24 23:51:53.596827+00 2025-03-24 23:51:53.596833+00 f t Lisette Belén Gómez gomezlisette1@gmail.com 5491125567592 \N Virrey Cevallos 341 \N \N FEMALE 1998-04-15 -34.61298566530613 -58.38901817755102 49 747 \N lgomez +606 2025-03-24 23:56:28.824652+00 2025-03-24 23:56:28.824658+00 f t Ximena solar ximenabarbarasolar@gmail.com +5491169412528 \N Demaria 4454 \N \N FEMALE 1994-01-10 -34.575328538775516 -58.420067008163265 1 748 \N xsolar +607 2025-03-25 00:00:16.403705+00 2025-03-25 00:00:16.403713+00 f t Fiamma chiarello fiammamaria_chiarello@hotmail.com 5491141777719 \N Eduardo acevedo 343 \N \N FEMALE 1998-01-23 -34.611983714285714 -58.43132728571428 14 749 \N fchiarello +608 2025-03-25 00:03:15.891846+00 2025-03-25 00:03:15.891854+00 f t Jacopo Marzocco alisamarzocco@gmail.com 33607938272 \N Aimé Paine 1130 \N \N MALE 1988-10-06 -34.61057595 -58.36159057664388 30 750 \N jmarzocco +609 2025-03-25 21:13:09.17964+00 2025-03-25 21:13:09.179647+00 f t Santiago Martinez martinezsantiago673@gmail.com 5491135648941 \N Av entre rios 1654 \N \N MALE 2001-07-11 -34.6271322 -58.39118175 12 751 \N smartinez +610 2025-03-25 21:34:07.265207+00 2025-03-25 21:34:07.265214+00 f t Gustavo peraira da graca eduardofabiandominguez@gmail.com 5491165703803 \N San Antonio 707 \N \N MALE 1975-03-21 -33.4350208 -70.6487469 85 752 \N gdagraca +611 2025-03-25 21:39:06.216943+00 2025-03-25 21:39:06.216951+00 f t Fernanda Sollinger sollingerf@gmail.com 5491151084529 \N Villarroel 1071 Piso 10 Dpto 02 - Cos:1002 \N FEMALE 1971-08-20 -34.5944837 -58.4431807 26 753 \N fsollinger +612 2025-03-25 23:35:44.154974+00 2025-03-25 23:35:44.154982+00 f t Natalia Nora Bonomo bonomo.natalia@gmail.com 5491133810305 \N Aguero 1644 8 D \N FEMALE 1982-05-03 -34.5917097 -58.4070715 9 754 \N nbonomo +613 2025-03-27 12:36:13.646545+00 2025-03-27 12:36:13.646551+00 f t Jorgelina Gregoret j_gregoret@hotmail.com 5491138971516 \N Av Libertador 2417 Piso 11 dpto 7 \N FEMALE 1992-12-26 -34.5079776877551 -58.47932356938775 59 755 \N jgregoret +614 2025-03-27 14:58:19.173611+00 2025-03-27 14:58:19.173618+00 f t Carolina Santoro andicsantoro@gmail.com 5491134241476 \N Avenida corrientes 5239 3c \N FEMALE 1991-10-23 -34.599405733333334 -58.43909203055556 26 756 \N csantoro +615 2025-03-27 18:28:07.232755+00 2025-03-27 18:28:07.232788+00 f t Sabrina Basoa chabina1@gmail.com 5491157346624 \N Salta 167 8A \N FEMALE 1978-11-17 -34.610495148979595 -58.38344214489796 49 757 \N sbasoa +616 2025-03-28 15:04:02.621213+00 2025-03-28 15:04:02.621222+00 f t mariana raskovsky maryanuchys@gmail.com 5491132950607 \N Gutenberg 2952 \N \N FEMALE \N -32.906485492728955 -68.88112336215846 17 758 \N mraskovsky +617 2025-03-28 20:37:16.769062+00 2025-03-28 20:37:16.769072+00 f t Marcos Baylac marcosbaylac1@gmail.com +5491130268789 \N Echeverria 4225 \N \N MALE 1992-12-28 -22.514774200866146 -63.81378498213518 3 759 \N mbaylac +618 2025-03-29 22:18:41.550806+00 2025-03-29 22:18:41.550816+00 f t Diego clermont mar.celus@outlook.com 5491157933519 \N Azcuenaga 1064 6c \N MALE \N -34.5919667 -58.3985746 9 760 \N dclermont +619 2025-03-30 21:34:14.341162+00 2025-03-30 21:34:14.341171+00 f t Macarena Espejo Carreño macaespcarreno@gmail.com 5491162202822 \N Sánchez de Bustamante 444 1°R \N FEMALE 1977-12-31 -34.6045382 -58.41472534285714 23 761 \N mespejocarreno +620 2025-03-30 21:41:27.750767+00 2025-03-30 21:41:27.750778+00 f t Flavia Arce fma.92.21.27@gmail.com 5491138759048 \N Curapaligüe 441 \N \N FEMALE 1992-02-21 -34.630013279591836 -58.451987706122445 14 762 \N farce +621 2025-03-30 21:58:53.642577+00 2025-03-30 21:58:53.642588+00 f t Marcelo Martinez jessica_88_71@hotmail.com 5491134882577 \N Felipe Vallese 1695 Dpto. C \N MALE 1990-05-24 -34.617354469387756 -58.45762002040816 14 763 \N mmartinez-2 +622 2025-03-30 22:04:33.780451+00 2025-03-30 22:04:33.780463+00 f t Jazmín Cherbenco jcherbenco@gmail.com 5491164431658 \N Jerónimo Salguero 2557 PB \N FEMALE 1984-06-01 -34.5815615 -58.40987124285714 1 764 \N jcherbenco +623 2025-03-31 16:06:39.946874+00 2025-03-31 16:06:39.946884+00 f t Micaela rubino micaelarubino6@gmail.com 5491154134454 \N manuel castro 50 (depto 2 A) \N FEMALE 2000-08-07 -31.37630905021107 -64.1297046680863 71 765 \N mrubino +624 2025-03-31 23:39:30.151116+00 2025-03-31 23:39:30.151122+00 f t Santiago Ochoa ochoasantiagoe94@gmail.com 5491124073626 \N Bouchard 3029 \N \N MALE 1994-03-04 -34.50668328571429 -58.51267642857143 39 766 \N sochoa +625 2025-03-31 23:41:43.263335+00 2025-03-31 23:41:43.263344+00 f t Marcela Rosas marcemdeo@yahoo.com 5491157350560 \N Freire 2831 \N \N FEMALE \N -34.55990913265306 -58.46957829387755 45 767 \N mrosas +626 2025-03-31 23:44:50.265085+00 2025-03-31 23:44:50.265092+00 f t Natalia Estefanía Pace nataliae.pace@hospitalitaliano.org.ar +5491168750488 \N Suipacha 211 piso 24 dpto E, CP 1008, San Nicolás, CABA \N FEMALE 1986-03-08 -34.605856957142855 -58.37928182244898 13 768 \N npace +627 2025-03-31 23:47:23.17587+00 2025-03-31 23:47:23.175876+00 f t Emma Blanco emmita17@icloud.com +5492914722710 \N Carlos calvo 1150 piso 9C \N FEMALE 2007-01-17 -34.61971660456277 -58.37725198049844 15 769 \N eblanco +628 2025-03-31 23:49:38.71674+00 2025-03-31 23:49:38.716747+00 f t Laura vairus lauravairus_06@yahoo.com.ar 5491159540890 \N Gral José G Artigas 5385 dpto 2 Villa Puyrredon , entre Franco y Bazurco caba \N FEMALE 2017-02-05 \N \N 51 770 \N lvairus +629 2025-04-01 23:01:23.66693+00 2025-04-01 23:01:23.666935+00 f t Julieta Solla jusol.ux@gmail.com 5491145390321 \N Av San Juan 4377 piso 9 depto 34 \N FEMALE \N -34.62682206326531 -58.42640231428571 11 771 \N jsolla +630 2025-04-01 23:08:26.849461+00 2025-04-01 23:08:26.849471+00 f t Brisa Gomez brisadaniela7@gmail.com +5491169619193 \N Juana Manso 1661 \N \N MALE 2001-02-02 -34.61691202857143 -58.36207267142857 30 772 \N bgomez +631 2025-04-03 15:44:42.955417+00 2025-04-03 15:44:42.955426+00 f t Alejandra Rojas alexarojas4169@live.com.ar 5491165060975 \N Sarmiento 2060 1er piso \N FEMALE \N -32.41100444782608 -63.226306826086955 46 773 \N arojas +13300 2025-11-14 15:12:17.084454+00 2025-11-14 15:12:17.084467+00 t t Invitado Amar invitado-1763133136036@example.com 55555555 \N \N \N \N \N 31 \N \N \N +634 2025-04-03 16:46:28.851034+00 2025-04-03 16:46:28.851041+00 f t Bruno Martino brunomartino@comasa.com.ar +5491166562189 \N Trinidad guevara 329 3ro B \N MALE 1984-01-07 -34.6034334 -58.36396125 30 775 \N bmartino +635 2025-04-03 16:51:30.477092+00 2025-04-03 16:51:30.4771+00 f t Marcela Gomez marcela.gomez99@outlook.com +5491135137784 \N Ecuador 415 4b \N FEMALE 1999-01-14 -34.60512945714285 -58.40806774285714 18 776 \N mgomez +636 2025-04-03 16:59:44.265197+00 2025-04-03 16:59:44.265203+00 f t Guadalupe Navarro greconavarrofacudo@gmail.com +5491131581120 \N griveo 2743 piso 3 a \N FEMALE 1977-01-09 -34.58343385714286 -58.502045685714286 51 777 \N gnavarro +637 2025-04-03 17:04:11.627135+00 2025-04-03 17:04:11.627142+00 f t Lucía Zugaro rocca lucia2005zr@gmail.com 5491131492637 \N Basualdo 1018 \N \N FEMALE 2005-02-13 -34.647486353061225 -58.49515997959183 19 778 \N lzugarorocca +638 2025-04-04 23:07:59.542422+00 2025-04-04 23:07:59.542429+00 f t Alejandra Rosibel rosiibeelsilva11@gmail.com +5491157288362 \N Sarmiento 2751 2D \N FEMALE 1998-11-11 -34.60642404081633 -58.40527663469388 18 779 \N arosibel +639 2025-04-04 23:13:55.86141+00 2025-04-04 23:13:55.861421+00 f t luciana Palazzo palazzo.luciana@gmail.com +5491150249287 \N piedras 1365 piso 8 dpto A \N FEMALE 1982-11-29 -34.62454138979592 -58.37695055918367 15 780 \N lpalazzo +640 2025-04-05 20:34:20.063698+00 2025-04-05 20:34:20.063706+00 f t Florencia Pérez flor4943@hotmail.com 5491144112948 \N la rioja 1975 \N \N FEMALE 1985-12-05 -34.63444588 -58.40601856 44 781 \N fperez +641 2025-04-06 15:37:10.33769+00 2025-04-06 15:37:10.337702+00 f t Pamela Alejandra Cafaro psicafaro@gmail.com 5491133543187 \N Hipólito Yrigoyen 2085 \N \N FEMALE 1985-06-06 -34.6102837 -58.3906586 86 782 \N pcafaro +642 2025-04-06 20:41:59.176824+00 2025-04-06 20:41:59.176831+00 f t Fabricio Del Pino fabriciox.fdp@gmail.com 5492975208321 \N Avenida Alem 719 piso 23 dpto 4 \N MALE \N -34.5992606122449 -58.37063800408163 13 783 \N fdelpino +643 2025-04-06 20:50:22.773069+00 2025-04-06 20:50:22.773078+00 f t Elisabeth Soin elisabethsoin09@gmail.com +5491167911698 \N Billinghurst 1466 2 piso departamento 7 \N FEMALE 1969-12-21 -34.5825956939775 -58.40325438881326 1 784 \N esoin +644 2025-04-07 22:07:10.611013+00 2025-04-07 22:07:10.611023+00 f t Ana Jilo ana.jilo.23@gmail.com +5491127779404 \N jose antonio cabrera 6057 1 A \N FEMALE \N -34.582084828571425 -58.44287 1 785 \N ajilo +645 2025-04-07 22:33:22.832389+00 2025-04-07 22:33:22.832398+00 f t Ornella Fioriti fioritiorne@gmail.com +5491137610299 \N Alvarez thomas 2933 4 B \N FEMALE 1990-11-01 -34.573127491836736 -58.48092481020409 29 786 \N ofioriti +646 2025-04-07 22:39:11.976463+00 2025-04-07 22:39:11.976471+00 f t Sofia Varela sofivarelaa@hotmail.com 5491165903223 \N Ramon Castilla 2873 piso 12 A \N FEMALE 1997-03-24 -34.58016903460686 -58.40030656309605 1 787 \N svarela +647 2025-04-07 22:42:44.220562+00 2025-04-07 22:42:44.220572+00 f t Michell Mendoza michellmendoza162202@gmail.com +5491138011384 \N Quilmes 192 \N \N FEMALE 1998-10-20 -34.64169897959184 -58.4178419387755 44 788 \N mmendoza +648 2025-04-07 22:48:39.112553+00 2025-04-07 22:48:39.112562+00 f t Yosima Ordiz yosima@hotmail.com +5491150295301 \N Suipacha 370 4A entre diagonal y corrientes \N FEMALE 1974-05-10 -34.60402794489796 -58.37950291836735 13 789 \N yordiz +649 2025-04-07 22:52:05.318145+00 2025-04-07 22:52:05.318155+00 f t Leldija Lea Bekere leabekere@gmail.com +5491140312336 \N Dr. Ròmulo Naón 3850 4A, \N FEMALE 1991-05-19 -34.5540551877551 -58.48332671020408 31 790 \N lbekere +650 2025-04-09 15:12:44.967431+00 2025-04-09 15:12:44.967439+00 f t Alejandra Mielnichuk amielnichuk@gmail.com 5491155067998 \N Amberes 1070 \N \N FEMALE 1972-10-02 -34.61205793877551 -58.45403008163265 14 791 \N amielnichuk +651 2025-04-09 16:20:38.529585+00 2025-04-09 16:20:38.529593+00 f t Sandra Fischman fischmansandra@gmail.com +5491159748016 \N Alejandro Magariños Cervantes 5271 1, PB dto 2, sin timbre ( enviar watsap al llegar) \N FEMALE 1967-06-21 -34.631134242857144 -58.50594314285714 28 792 \N sfischman +652 2025-04-09 23:39:21.642512+00 2025-04-09 23:39:21.64252+00 f t Celeste Gianetti celesgianetti@gmail.com +5491132152128 \N Camarones 2163 1a \N FEMALE \N -34.60759018367347 -58.471658020408164 63 793 \N cgianetti +653 2025-04-09 23:51:32.862154+00 2025-04-09 23:51:32.862161+00 f t Sol Sanes s.sanes@gmail.com +5491132095850 \N CIUDAD DE LA PAZ 1132 1A \N FEMALE 1981-08-23 -34.56958436326531 -58.44955115102041 38 794 \N ssanes +654 2025-04-10 15:47:27.213917+00 2025-04-10 15:47:27.213927+00 f t Mariana Larrosa Mendez mlarrosamendez@gmail.com 5491131002540 \N Condarco 1872 5C \N FEMALE 1997-10-02 -34.61148457142857 -58.47788128571428 41 795 \N mlarrosamendez +655 2025-04-10 21:08:15.647734+00 2025-04-10 21:08:15.647745+00 f t Malena Pechersky malena.pechersky@gmail.com +5491164895108 \N Amenábar 2530 6to piso \N FEMALE 1972-09-29 -34.55917487142857 -58.4620703 3 796 \N mpechersky +656 2025-04-11 14:09:14.256982+00 2025-04-11 14:09:14.256992+00 f t Selma dos santos Alcantara selma.ssa@hotmail.com 5491151368035 \N Rodriguez peña 1754 1B \N MALE 1979-10-20 -34.59031449387755 -58.38847833673469 9 797 \N sdossantosalcantara +657 2025-04-11 15:14:31.619786+00 2025-04-11 15:14:31.619794+00 f t Romina González licpspsp@gmail.com 5491138717157 \N av santa fe 2441 cuerpo 1, al 9 A \N FEMALE 1983-12-20 -34.594532936734694 -58.40158226122449 9 798 \N rgonzalez +658 2025-04-12 00:10:08.974561+00 2025-04-12 00:10:08.97457+00 f t Gabriel Cánepa gabriel625@gmail.com +5491162230897 \N Paunero 936 6C. \N MALE 1984-12-19 -38.739317099999994 -62.271906574999996 2 799 \N gcanepa +659 2025-04-12 18:53:43.444075+00 2025-04-12 18:53:43.444081+00 f t Natalia lopez natslopez@hotmail.com 5491130009459 \N villaroel 1470 depto B \N FEMALE 1985-07-14 -24.384614791888275 -65.1087796881661 26 800 \N nlopez +660 2025-04-14 16:45:19.979771+00 2025-04-14 16:45:19.979777+00 f t Vivíana Maneiro maneiroviviana037@gmail.com 5491134296659 \N Agrelo 3275 4to piso dpto 7 \N FEMALE 1981-12-21 -34.618616754320776 -58.417478729926735 23 801 \N vmaneiro +661 2025-04-14 20:37:04.457366+00 2025-04-14 20:37:04.457375+00 f t Ana Ines Goldszer annflaca@gmail.com +5491144407544 \N Thames 2310 \N \N FEMALE 1992-02-17 -34.58282541020408 -58.42390249591837 1 802 \N agoldszer +662 2025-04-14 21:00:22.732251+00 2025-04-14 21:00:22.732289+00 f t Barbara Pace barbarabelenpace@hotmail.com 5491167456377 \N Gurruchaga 575 Porteria. 7mo \N FEMALE \N -34.59662543265306 -58.440571455102045 26 803 \N bpace +663 2025-04-15 00:49:07.932435+00 2025-04-15 00:49:07.932441+00 f t Natalia Musso nataliamusso@outlook.com +5491158813551 \N Olazábal 4889 \N \N FEMALE \N -34.57536812244898 -58.4841559244898 29 804 \N nmusso +664 2025-04-15 00:53:14.90435+00 2025-04-15 00:53:14.904358+00 f t Patricia Alejandra Rodríguez patyro2010@live.com.ar +5491167478314 \N Av.Nazca 269 piso 7 depto 27 \N FEMALE 1979-07-24 -34.6285674443038 -58.470458245569624 4 805 \N prodriguez +665 2025-04-15 00:57:26.753917+00 2025-04-15 00:57:26.753923+00 f t Ada Dalla Caneva adita.dc@gmail.com +5491156262738 \N Arenales 3775 Depto 5 \N FEMALE 1948-12-26 -34.584674512244895 -58.41463768367347 1 806 \N acaneva +666 2025-04-15 01:04:46.933858+00 2025-04-15 01:04:46.933865+00 f t Ornella Marcia Del Prete ornedp@yahoo.com.ar 5491154679484 \N Alvarez jonte 5140 piso 5 depto 91 caba \N FEMALE 1982-05-16 -34.622406575 -58.50943570416667 28 807 \N omarciadelprete +719 2025-04-23 14:07:21.852295+00 2025-04-23 14:07:21.852305+00 f t Carla piccicacco c.piccicacco@gmail.com 5491165173759 \N Pergamino 822 Dpto A \N FEMALE 1990-10-18 -34.6489009 -58.4615225 4 846 \N cpiccicacco +13301 2025-11-14 15:16:40.450387+00 2025-11-14 15:16:40.450396+00 f t Invitado Amar invitado-1763133399644@example.com 55555555 \N \N \N \N \N 31 \N \N \N +668 2025-04-15 15:45:29.331104+00 2025-04-15 15:45:29.33111+00 f t Cecilia Molini cherry.kiwiix@gmail.com 5491121727065 \N Padilla 876 \N \N FEMALE 1989-08-07 -34.59863435 -58.44468347348545 26 809 \N cmolini +669 2025-04-15 16:27:56.957427+00 2025-04-15 16:27:56.957434+00 f t Diego Jaliff jaliffdiego@hotmail.com 5491158901129 \N José Bonifacio 3140 dpto 2 \N MALE 1963-01-14 -34.635509287755106 -58.47111634693877 4 810 \N djaliff +670 2025-04-15 19:19:41.917774+00 2025-04-15 19:19:41.91778+00 f t Eliana Gramajo gramajoelianamalena@gmail.com +5491161756360 \N Salvigny 1751 Torre 1 - Piso 11- Depto A . Entre Vedía y Crespo \N MALE 1996-11-29 -34.64531330710608 -58.43655658772406 20 811 \N egramajo +671 2025-04-15 22:22:38.369078+00 2025-04-15 22:22:38.369091+00 t t Catalina Simone pipi@amarmascotas.com 3513177765 \N Olga Cossettini 1112 3G \N \N \N -34.609809600000006 -58.36341188025596 1 812 \N csimone-2 +672 2025-04-15 23:26:28.489926+00 2025-04-15 23:26:28.489933+00 t t Hernan Brunacci hbrunacci+fp@gmail.com +54 9 11 3110 7990 \N Holmberg 2587 c \N \N -34.56818148979592 -58.477783669387755 1 813 \N hbrunacci-2 +673 2025-04-16 12:32:14.854141+00 2025-04-16 12:32:14.854153+00 t t TESTtt TEST testAgus@test.com +54 9 11 1111 1111 \N Falsa 123 a \N \N 42.1838369 12.6559681 1 \N \N ttest +674 2025-04-16 12:33:05.298927+00 2025-04-16 12:33:05.298937+00 t t Test Agus testing@test.com +54 12 1111 1111 \N Falsa 123 - \N \N 42.1838369 12.6559681 3 \N \N tagus +675 2025-04-16 13:52:22.41531+00 2025-04-16 13:52:22.415318+00 f t Barbara Lopes barbarasslopes@gmail.com 5491164954346 \N gascón 771 planta baja dpto D. entre corrientes y humahuaca \N FEMALE 1983-12-18 -34.60202578571429 -58.42389882857143 23 814 \N blopes +676 2025-04-16 18:03:48.958266+00 2025-04-16 18:03:48.958275+00 f t Maria Belen Boetto mbelen.boetto@gmail.com 🇦🇷 +5491150003327 \N La Pampa 4858 5C \N FEMALE 1987-04-07 -34.57842471515152 -58.47758244545455 29 815 \N mboetto +677 2025-04-16 18:07:46.364077+00 2025-04-16 18:07:46.364088+00 f t Maria Gabriela David gabrieladavid2022@gmail.com +5491163686665 \N Delgado 826 5G \N FEMALE 1971-09-14 -34.57878048979592 -58.45306818367347 38 816 \N mdavid +678 2025-04-16 18:22:48.855323+00 2025-04-16 18:22:48.855329+00 f t Giuliana Poletti chuchip94@hotmail.com +5492357411704 \N Las Piedras 1575 \N \N FEMALE 1994-08-11 -34.712545969387754 -58.3877396632653 70 817 \N gpoletti +680 2025-04-16 20:23:48.906152+00 2025-04-16 20:23:48.90616+00 f t eugenia Osler euge.osler@gmail.com +54 9 11 2560 3333 \N bulnes 3736 1 \N \N \N -34.58216548846441 -58.40671684708707 69 818 \N eosler +681 2025-04-16 20:48:54.322412+00 2025-04-16 20:48:54.322418+00 f t Romina Del Valle Areco romina.areco@gmail.com +54 9 11 3110 7990 \N Holmberg 2587 C \N \N \N -34.56818148979592 -58.477783669387755 29 819 \N rareco +683 2025-04-16 21:09:12.621832+00 2025-04-16 21:09:12.621842+00 f t Dario Pirozzo dariopirozzo+12@gmail.com +54 50276480 \N Test 124 - \N \N \N \N \N 99 820 \N dpirozzo +684 2025-04-16 21:21:53.757582+00 2025-04-16 21:21:53.75759+00 f t Eugenia Osler eugenia.osler@arionkoder.com +54 11 2560 3333 \N Libertador 3736 5b \N \N \N -34.49518921666667 -58.48465281666667 69 821 \N eosler-2 +690 2025-04-18 03:41:47.716354+00 2025-04-18 03:41:47.716359+00 f t Juan Acosta juancarlos4c0st4@gmail.com +54 376 521 4140 \N Moconas 19 A2 \N \N \N \N 102 822 \N jacosta +691 2025-04-18 21:44:39.096358+00 2025-04-18 21:44:39.096366+00 f t Ramiro Machado machado.ramiromiguel@gmail.com +5491153119705 \N Calvo 1530 2A \N MALE 1992-01-09 -34.6200606 -58.3877855 60 823 \N rmachado +692 2025-04-18 23:44:27.788307+00 2025-04-18 23:44:27.788316+00 f t sabrina paola curti spcurti@gmail.com +5491165899907 \N hidalgo 626 \N \N FEMALE 1980-06-04 -34.6122657 -58.4406844 14 824 \N scurti +693 2025-04-18 23:52:05.658332+00 2025-04-18 23:52:05.658342+00 f t Teo Rocco terocco@agro.uba.ar +5491139450680 \N Francisco Borges 2421 \N \N MALE 1995-09-17 -34.5111902 -58.5014087 39 825 \N trocco +694 2025-04-18 23:55:25.379001+00 2025-04-18 23:55:25.379009+00 f t Camila Victoria Goñi cami.2109@hotmail.com 5493484525860 \N Manuel Ugarte 2360 piso 12 D \N FEMALE 1994-09-21 -34.5561823 -58.4610454 3 826 \N cgoni +695 2025-04-19 00:01:21.933392+00 2025-04-19 00:01:21.933399+00 f t Aldana quintana aldanamelissa67@gmail.com +5491151012650 \N Beruti 4646 \N \N FEMALE 1998-04-27 -34.5775248 -58.4252864 1 827 \N aquintana-2 +696 2025-04-19 00:09:23.499236+00 2025-04-19 00:09:23.499242+00 f t Jonatan Pino jonatanbrun@hotmail.com +5491138464403 \N Acuña de figuero 483 6b \N MALE 1986-04-15 \N \N 23 828 \N jpino +697 2025-04-19 00:12:32.303015+00 2025-04-19 00:12:32.303022+00 f t Carlos Castillo carlosluis2409@gmail.com +5491132908934 \N Corrientes 6116 5D \N MALE 1988-09-04 -34.592449 -58.4469556 26 829 \N ccastillo +698 2025-04-19 00:17:12.105336+00 2025-04-19 00:17:12.105344+00 f t Tercy Del Valle Candia tercydelcandia@gmail.com +5493751330924 \N Av corrientes 848 MICROCENTRO \N FEMALE 2002-10-11 -34.6036505 -58.378741 2 830 \N tdelvallecandia +699 2025-04-19 21:37:52.950027+00 2025-04-19 21:37:52.950033+00 f t Angelica Sisnero nicda_02@hitmail.com 5491155972834 \N Carlos Pellegrini 651 \N \N FEMALE \N -33.3410363 -60.2252363 13 831 \N asisnero +700 2025-04-19 21:43:53.286006+00 2025-04-19 21:43:53.286017+00 f t Noelia Silguero nsilguero47@gmail.com 5491160590689 \N avenida corrientes 6031 \N \N FEMALE 1990-07-15 -34.5930194 -58.4460193 26 832 \N nsilguero +701 2025-04-20 11:51:34.673323+00 2025-04-20 11:51:34.673333+00 f t Andrea Garmendia andie.gt@icloud.com +54 11 2621 8448 \N Paysandu 1459 305 \N \N \N -34.6075645 -58.4561128 14 833 \N agarmendia +702 2025-04-20 21:49:44.660789+00 2025-04-20 21:49:44.660797+00 f t Natalia Ballester natalia.ballester85@gmail.com +5491130054294 \N 3 de febrero 2890 5B \N FEMALE 1985-12-14 -34.5519421 -58.4581662 25 834 \N nballester +704 2025-04-20 21:59:22.84442+00 2025-04-20 21:59:22.844431+00 f t Sol Agustina Alvarez sol_agustina_alvarez@hotmail.com +5491136878582 \N Juan B Justo 2819 10B \N FEMALE 1996-11-28 -34.8346509 -64.3715514 26 836 \N salvarez +705 2025-04-20 22:09:20.366489+00 2025-04-20 22:09:20.366495+00 f t Ana Martínez caritabo4@gmail.com 5491169034366 \N Vedia 3024 \N \N FEMALE 1990-06-01 -34.5422612 -58.4816749 63 837 \N amartinez-2 +709 2025-04-21 20:06:15.963685+00 2025-04-21 20:06:15.963693+00 f t Roxana Michela michelaroxi@gmail.com 5491127506979 \N Bartolomé Mitre 3538 4to a \N FEMALE 1992-05-13 -34.6095657 -58.4164864 23 838 \N rmichela +711 2025-04-21 20:59:07.532433+00 2025-04-21 20:59:07.532442+00 f t Ayelen Dorola ayelen.dorola@hotmail.com 1163095671 \N Yerbal 727 15 A. Entre Rojas y Colpayo \N FEMALE 1992-03-18 -34.6188187 -58.441154 14 840 \N adorola +712 2025-04-21 21:44:45.849825+00 2025-04-21 21:44:45.849832+00 f t Manuel Borensztein manuelborensztein@gmail.com 5491140897397 \N Malabia 2163 planta baja 3 \N MALE 1996-05-17 -34.5873359 -58.4216801 1 841 \N mborensztein +713 2025-04-22 00:19:56.924136+00 2025-04-22 00:19:56.924142+00 f t Celeste Famular celestefamular@hotmail.com +5491165682192 \N Anchorena 1603 16B \N FEMALE \N -34.5917401 -58.4031698 9 842 \N cfamular +715 2025-04-22 19:07:25.279209+00 2025-04-22 19:07:25.279218+00 f t Susana Castellani luacastell77@gmail.com 5491161144542 \N Castro Barrios 950 Timbre Otero \N FEMALE 1977-12-22 19.5715257 -99.2381504 11 843 \N scastellani +716 2025-04-22 19:12:59.396223+00 2025-04-22 19:12:59.396232+00 f t Nicolas Lopez nicolas.lopez4500234527@gmail.com 5491141766861 \N Avalos 2190 1ero b \N MALE 2023-05-04 -30.5907493 -71.1823313 29 844 \N nlopez-2 +717 2025-04-22 19:19:02.77391+00 2025-04-22 19:19:02.773923+00 t t Elina Malaya elinamalaya@gmail.com 5491161284632 \N Cerrito 1c \N \N FEMALE 1971-12-21 -34.602973 -58.3822228 13 112 \N emalaya +718 2025-04-23 13:33:18.421214+00 2025-04-23 13:33:18.421224+00 f t Daiana Herrera daiana.herrera25@gmail.com 5491141741141 \N Montiel 2059 entre zequeira y Alberdi \N FEMALE 1990-02-11 -34.6599453 -58.5146238 19 845 \N dherrera +710 2025-04-21 20:19:36.894088+00 2025-04-21 20:19:36.894096+00 f t Florencia Spahn florspahn@gmail.com +541132160147 \N Cadiz 4012 \N 1993-09-07 -34.580958 -58.4781989 61 839 \N fspahn +720 2025-04-23 18:47:53.181628+00 2025-04-23 18:47:53.181637+00 f t Ana Maria Nappa anappa57@yahoo.com.ar +5491144722337 \N Av. Coronel Díaz 2149 7mo B \N \N 1957-01-09 -34.587203 -58.4086007 9 847 \N anappa +721 2025-04-23 20:40:41.269736+00 2025-04-23 20:40:41.269746+00 f t Mirta Guillermina flores guillermina04102@gmail.com +54 11 5125 7743 \N \N \N \N \N \N \N -34.5937834 -58.474695 34 848 \N mflores +722 2025-04-24 15:23:15.458723+00 2025-04-24 15:23:15.458732+00 f t Leo Piccioli leopiccioli@gmail.com 5491131666787 \N Rodriguez Peña 1985 PB B \N MALE 1981-10-13 -34.5883542 -58.386184 9 849 \N lpiccioli +723 2025-04-24 16:30:36.343219+00 2025-04-24 16:30:36.34323+00 f t Spencer Richardson spencer@richardson.nyc +1 646 919 4890 \N \N \N 38.1112268 13.3524434 1 850 \N srichardson +724 2025-04-24 17:18:34.32732+00 2025-04-24 17:18:34.327327+00 f t Lourdes Posse lourdesbposse@gmail.com +5491140601345 \N Remedios escalada de san martin 980 5D \N FEMALE 1996-10-12 -33.887633 -60.5491742 26 851 \N lposse +725 2025-04-24 17:24:02.572544+00 2025-04-24 17:24:02.572551+00 f t Elina Malaya 77777@gmail.com +5491161284632 \N Cerrito 136 \N \N FEMALE 1971-12-21 -34.766403 -58.3962562 13 852 \N emalaya-2 +726 2025-04-24 17:42:13.709586+00 2025-04-24 17:42:13.709597+00 f t Agustina Villa agusv91@gmail.com +5491164778896 \N Florida 1065 \N \N FEMALE 1991-07-15 -34.5954656 -58.374821 37 853 \N avilla +727 2025-04-24 17:43:25.155714+00 2025-04-24 17:43:25.155722+00 f t Mercedes Martinez mercedesmartinezchantada@hotmail.com 5491130370415 \N Moreno 3432 Pb1 \N FEMALE \N -34.614395 -58.414981 23 854 \N mmartinez-3 +728 2025-04-25 02:23:30.220669+00 2025-04-25 02:23:30.220677+00 f t Ricardo Paez ricardoalbertopaez60@gmail.com +54 11 3044 9911 \N \N \N \N \N \N \N 19.0204697 -100.3863996 2 855 \N rpaez +729 2025-04-25 12:09:21.799159+00 2025-04-25 12:09:21.799169+00 f t Karina Martinez katyyfran@gmail.com 5491161599819 \N Aguilar 2453 Piso 7 dpto B \N FEMALE 1984-08-31 -24.2016008 -65.2956944 3 856 \N kmartinez +730 2025-04-25 15:04:19.802973+00 2025-04-25 15:04:19.802986+00 f t Prueba Hernan Ledesma email@yacanto.com +54 9 11 3110 7990 \N \N \N 38.1112268 13.3524434 1 857 \N pledesma +731 2025-04-25 16:29:29.389473+00 2025-04-25 16:29:29.389484+00 f t Tatiana Beron tatiberonkeep@gmail.com +54 11 4083 4478 \N \N \N 46.60946 0.53539 52 858 \N tberon +732 2025-04-25 19:10:21.143858+00 2025-04-25 19:10:21.144693+00 f t Carmen Aguilera estudiocraguilera@hotmail.com +5491132628194 \N Gallo 1071 1D \N FEMALE 1982-05-05 -34.5972137 -58.4116889 9 859 \N caguilera +733 2025-04-25 20:27:00.482213+00 2025-04-25 20:27:00.482223+00 f t Federico Dipierri federicodipi@gmail.com 5491137611407 \N Venezuela 1260 11B \N MALE \N -34.6144816 -58.3839445 49 860 \N fdipierri +734 2025-04-25 20:59:41.342637+00 2025-04-25 20:59:41.342646+00 f t Micaela Ailen Saini micaelasaini@hotmail.com 5492291459782 \N Dr Emilio Ravignani 1350 8C \N MALE 1997-02-23 -34.5848803 -58.4430929 1 861 \N msaini +735 2025-04-25 21:09:21.277596+00 2025-04-25 21:09:21.277602+00 f t Paula Tozzi paulamtozzi@gmail.com 5491141953484 \N Bartolomé Mitre 3925 12D \N FEMALE 1985-09-13 -34.6097587 -58.4217905 23 862 \N ptozzi +736 2025-04-25 21:16:30.942619+00 2025-04-25 21:16:30.942628+00 f t Brisa Rios brisar877@alu.bue.edu.ar +54 652 234 78 \N \N \N 38.1112268 13.3524434 1 863 \N brios +737 2025-04-25 23:20:08.736524+00 2025-04-25 23:20:08.73653+00 f t MIRIAM MINABERRIGARAY miriamminaberrigaray792@gmail.com +54 11 3249 7021 \N \N \N \N \N \N \N -34.6431369 -58.5947185 57 864 \N mminaberrigaray +738 2025-04-26 00:47:04.106223+00 2025-04-26 00:47:04.106231+00 f t Lucrecia Camiño luly0907@live.com.ar +54 11 6502 0115 \N \N \N 17.3156929 -62.7446806 12 865 \N lcamino +739 2025-04-26 10:21:31.169002+00 2025-04-26 10:21:31.169011+00 f t Miriam Petrecca miriam.petrecca@yahoo.com +54 11 6208 848 \N \N \N -31.6494738 -60.3770589 29 866 \N mpetrecca +740 2025-04-26 13:27:50.237856+00 2025-04-26 13:27:50.237867+00 f t Celeste Pirola lujanpirola@hotmail.com +54 3782 52 0584 \N \N \N \N \N \N \N 7.7756663 -72.2214154 12 867 \N cpirola +741 2025-04-26 18:04:18.41622+00 2025-04-26 18:04:18.416226+00 f t Yamila Rivadeneira rivadeneira_nancy@hotmail.com +54 11 5805 2636 \N \N \N \N \N \N \N -35.3318306 -72.4118998 60 868 \N yrivadeneira +742 2025-04-26 21:08:09.100945+00 2025-04-26 21:08:09.100953+00 f t Marcela Barja marcelabarja@gmail.com 5491159372598 \N Quintino Bocayuva 1380 dep. 1.A \N FEMALE 1987-01-07 -34.6291817 -58.4206871 11 869 \N mbarja +743 2025-04-26 21:20:02.943044+00 2025-04-26 21:20:02.943055+00 f t María Dolores Traina mdtrainanoseda@hotmail.com.ar 5491138257981 \N Av san pedrito 256 5A \N FEMALE 1987-04-27 -34.6338962 -58.4680648 4 870 \N mtraina +744 2025-04-26 21:24:32.830825+00 2025-04-26 21:24:32.830833+00 f t Julieta María Altamirano julietamaalt@gmail.com 5491162666226 \N Don Bosco 3823 1*6 \N FEMALE 1997-12-18 -34.6128418 -58.4195548 23 871 \N jaltamirano +13302 2025-11-14 15:22:17.490633+00 2025-11-14 15:22:17.490642+00 f t Invitado Amar invitado-1763133925117@example.com 55555555 \N \N \N \N \N 14 \N \N \N +746 2025-04-27 00:16:48.780883+00 2025-04-27 00:16:48.780889+00 f t Luciana Menghini lucianamenghini.r@gmail.com +54 11 6025 9804 \N \N \N \N \N \N \N -31.6494738 -60.3770589 29 873 \N lmenghini +747 2025-04-27 20:54:12.233954+00 2025-04-27 20:54:12.233961+00 f t Micaela Romero micaelaromero25@homail.com 5491134339674 \N Hipólito Yrigoyen 1315 2D \N FEMALE 1991-09-25 -34.6098292 -58.3850831 49 874 \N mromero +748 2025-04-27 21:39:23.309716+00 2025-04-27 21:39:23.309724+00 f t SANDRA SUSANA LOPEZ lalopezmicale@gmail.com 5491156386088 \N Pavon 3184 \N \N FEMALE 1963-01-06 -34.6287241 -58.4096264 12 875 \N slopez +749 2025-04-27 21:46:02.888841+00 2025-04-27 21:46:02.888849+00 f t Camila Fernanda Mora camimooraf@hotmail.com 5492994114915 \N Olga Cossettini 1112 dep 3C \N FEMALE 2003-10-16 -34.6098096 -58.3634119 30 876 \N cmora +750 2025-04-27 21:53:26.709068+00 2025-04-27 21:53:26.709078+00 f t Juan Porta portajuan27@gmail.com 491151659299 \N Olazabal 2641 3 C \N MALE 1965-11-27 -34.5614344 -58.4606087 3 877 \N jporta +751 2025-04-28 16:11:54.980143+00 2025-04-28 16:11:54.980159+00 f t Paola Diaz paoladiaz.pd8@gmail.com 5491126991119 \N Av de los constituyentes 4781 Portero 402 \N FEMALE 1993-04-07 -34.5802793 -58.4939508 29 878 \N pdiaz +752 2025-04-28 20:51:51.465205+00 2025-04-28 20:51:51.465212+00 f t Carina orol crenzcarina@gmail.com 5491136086181 \N Brandsen 1592 piso 2 \N FEMALE 1978-07-22 -34.6379936 -58.37623 32 879 \N corol +753 2025-04-28 20:55:44.928052+00 2025-04-28 20:55:44.928062+00 f t Manuela Chamo chamomanuela@gmail.com 5491134204579 \N Arcos 1440 piso 810 \N FEMALE \N -34.5664417 -58.4483318 3 880 \N mchamo +754 2025-04-29 15:08:26.014244+00 2025-04-29 15:08:26.014275+00 f t Felix Beccar felix.beccar@gmail.com +34 660 77 33 99 \N \N \N -33.4020744 -70.6428912 9 881 \N fbeccar +755 2025-04-29 18:11:27.998986+00 2025-04-29 18:11:27.998992+00 f t Pamela Paolini pamepaolini@gmail.com 5491123049418 \N Cerrito 1445 \N \N MALE 1991-01-08 -34.6550169 -58.5505835 50 882 \N ppaolini +756 2025-04-29 20:53:19.569042+00 2025-04-29 20:53:19.569052+00 f t Margarita Morales Barón marmoralesba@gmail.com 5492613016565 \N treinta y tres orientales 2158 dpto 5 \N FEMALE 1993-05-03 -34.6379983 -58.4199669 11 883 \N mmoralesbaron +757 2025-04-29 23:37:07.605917+00 2025-04-29 23:37:07.605925+00 f t Yuli Falcon yuli.29288@gmail.com +5491123507894 \N Peron 2207 11 A \N FEMALE 1990-11-28 -34.6071777 -58.3980331 18 884 \N yfalcon +758 2025-04-30 14:59:18.9883+00 2025-04-30 14:59:18.988309+00 f t Manuela Lopera malobite66@gmail.com 91124808832 \N Peru 1750 1 \N FEMALE 1998-06-07 -34.628825 -58.3732078 32 885 \N mlopera +759 2025-04-30 15:20:46.336841+00 2025-04-30 15:20:46.336853+00 f t Ana Harumi Shinzato harumi.shinzato@gmail.com +54 11 2887 1154 \N \N \N 38.1112268 13.3524434 1 886 \N ashinzato +760 2025-05-01 05:51:36.938446+00 2025-05-01 05:51:36.938456+00 f t Paula Buzzi bukypau75@hotmail.com +54 11 6705 1150 \N \N \N -34.6254799 -58.4161163 11 887 \N pbuzzi +761 2025-05-01 12:10:35.518744+00 2025-05-01 12:10:35.518754+00 f t Dalma Rivero ayelen2016seba@gmail.com +54 11 4945 0104 \N \N \N -34.3605954 -58.6858122 111 888 \N drivero +13529 2025-11-17 19:08:43.380252+00 2025-11-17 19:08:43.38026+00 f t Invitado Amar invitado-1763406522955@example.com 55555555 \N \N \N \N \N 84 \N \N \N +764 2025-05-01 18:51:20.643816+00 2025-05-01 18:51:20.643823+00 f t Mariana Rego marianarego_20@hotmail.com 5491150486895 \N Thorne 1375 PB 2 \N FEMALE 1972-09-20 -34.6387713 -58.4457039 20 889 \N mrego +765 2025-05-01 19:01:19.639644+00 2025-05-01 19:01:19.639652+00 f t Silvana Laura Ortiz silvanalaura27@gmail.com 5491150634220 \N Juan Ramírez de Velasco 428 2B \N FEMALE 1975-10-25 -34.5990046 -58.4362472 26 890 \N sortiz +770 2025-05-02 14:19:38.630377+00 2025-05-02 14:19:38.630386+00 f t Gala Sofía Galli gsofigalli@gmail.com 5491151536111 \N Bacacay 3862 4to C \N FEMALE 1986-06-18 44.9379672 7.5400398 16 891 \N ggalli +772 2025-05-02 18:32:43.100194+00 2025-05-02 18:32:43.100201+00 f t Maria Elena Bravo mebravo_1@hotmail.com 5491164488352 \N Donato Alvarez 1414 P.B. 3 CP. 1416 \N FEMALE 1958-04-14 -34.6051084 -58.4637991 63 892 \N mbravo-2 +775 2025-05-03 00:06:36.868311+00 2025-05-03 00:06:36.868321+00 f t Florencia Pérez Lascano florenciaperezlascano@yahoo.com +5491154604723 \N Hipólito Yrigoyen 3380 pb A \N FEMALE 1978-03-13 -34.6130747 -58.4144237 23 893 \N flascano +780 2025-05-03 11:56:08.350183+00 2025-05-03 11:56:08.350195+00 f t María Martha Rigattieri mariangear@yahoo.com.ar +54 11 3328 3185 \N Ramon Lorenzo Falcon 2072 Pb \N \N -34.6331081 -58.5860179 \N 894 \N mrigattieri +784 2025-05-03 20:59:55.334911+00 2025-05-03 20:59:55.334921+00 f t Adriana beatriz Enrique adri270772@gmail.com 5491127604375 \N balboa 210 es una escuela \N FEMALE 1972-07-27 -33.9090855 -60.5753519 34 895 \N aenrique +785 2025-05-03 21:04:46.939187+00 2025-05-03 21:04:46.939194+00 f t Eugenia Prieto eugeprietoprensa@gmail.com 5491131312281 \N arribeños 3366 4 A \N FEMALE 1976-11-08 -34.5469798 -58.4591889 25 896 \N eprieto +786 2025-05-03 21:14:00.730786+00 2025-05-03 21:14:00.730794+00 f t Natalia Barrero nakabara_11@hotmail.com 5491173639642 \N Colpayo 53 1D \N FEMALE 1991-05-11 -34.6192592 -58.4404387 14 897 \N nbarrero +789 2025-05-03 23:52:05.604615+00 2025-05-03 23:52:05.604626+00 f t Antonia Toro anto_toro@hotmail.com +54 9 11763 154 35 \N Av del Libertador 5658 2D \N \N \N -34.5600334 -58.4450458 \N 898 \N atoro +791 2025-05-04 15:54:00.869845+00 2025-05-04 15:54:00.869858+00 f t Fernanda Guerrero Gustavocarp1133@hotmail.com +54 11 2334 5696 \N Rio negro el palomar 804 \N \N 47.8259812 -2.7633493 1 899 \N fguerrero +796 2025-05-04 21:50:18.964958+00 2025-05-04 21:50:18.964966+00 f t Mariela chimales marielachimales@gmail.com 5491141724992 \N Teodoro García 1956 1 B \N FEMALE 1956-04-12 -34.5692864 -58.4461348 3 900 \N mchimales +797 2025-05-04 21:54:10.786156+00 2025-05-04 21:54:10.786164+00 f t Solange Mazzeo solmazzeoql@gmail.com 5491159270893 \N Bacacay 1836 5a \N FEMALE 1981-10-23 -34.6243154 -58.4572324 4 901 \N smazzeo +798 2025-05-04 22:01:55.770129+00 2025-05-04 22:01:55.770137+00 f t Marianela Ysabel Aulestia Ramirez ysabelaulestia37@gmail.com 5491167813027 \N Montevideo 872 2p depto 3 \N FEMALE 1977-01-19 -34.5988426 -58.3897894 9 902 \N maulestiaramirez +811 2025-05-05 18:10:21.363979+00 2025-05-05 18:10:21.363986+00 f t Marianela Melina Alarcón Fernandez marian_alarcon@hotmail.com 5493436218996 \N Paso 780 1ro B \N FEMALE \N -34.5993372 -58.4032367 18 903 \N malarconfernandez +812 2025-05-05 19:24:43.451491+00 2025-05-05 19:24:43.451499+00 f t Ana Marcela Fagundez marcela.mariotti@hotmail.com 91171456420 \N Posadas, 1539 2A entre las calles Ayacucho e Callao \N FEMALE 1981-04-20 -34.5871441 -58.3875881 9 904 \N afagundez +816 2025-05-05 20:21:08.999347+00 2025-05-05 20:21:08.999409+00 f t Rocio Schmunck rocioschmunck33@gmail.com 5491131373135 \N Carlos calvo 1176 no hay portero eléctrico 1D \N FEMALE 1994-01-20 -34.6199189 -58.390262 49 905 \N rschmunck +821 2025-05-06 07:57:45.812274+00 2025-05-06 07:57:45.812282+00 f t Emilia Riquelme emilia.riquelme@gmail.com +56 9 9498 6360 \N San Juan 1452 1H \N \N 49.4120546 2.4064878 \N 906 \N eriquelme +13303 2025-11-14 15:30:37.649329+00 2025-11-14 15:30:37.64934+00 f t Invitado Amar invitado-1763134236734@example.com 55555555 \N \N \N \N \N 52 \N \N \N +823 2025-05-06 13:36:03.967192+00 2025-05-06 13:36:03.967202+00 f t Delfina Lavari lavaridelfina@gmail.com 5492353405079 \N Gral Lucio Norberto Mansilla 3960 9A \N FEMALE 1996-05-13 \N \N 1 908 \N dlavari +824 2025-05-06 14:44:48.743623+00 2025-05-06 14:44:48.74363+00 f t Andrea Sarn andreasarna@gmail.com 5491164308228 \N Av. Álvarez Jonte 5804 Esq. Irigoyen \N FEMALE 1980-10-24 -34.6333255 -58.5207586 62 909 \N asarn +826 2025-05-06 16:56:05.936455+00 2025-05-06 16:56:05.936462+00 f t Justina Ricciardi justinaricciardi@gmail.com 5492213199184 \N Olga cossettini 1540 Depto 609 edificio Lumiere \N FEMALE 2002-08-13 \N \N 30 910 \N jricciardi +827 2025-05-06 17:31:55.86626+00 2025-05-06 17:31:55.866267+00 f t Laura Low lorilow@hotmail.com 5491157625261 \N Juramento 1474 Dpto C Es entre Av del Libertador y Migueletes \N FEMALE 1964-09-13 -34.5565219 -58.4472817 3 911 \N llow +829 2025-05-06 21:10:21.130651+00 2025-05-06 21:10:21.130659+00 f t Nadia hammerschalg nadiahammer@hotmail.com 5491154008577 \N carabobo 426 piso 5 \N FEMALE 1977-01-15 -34.6318083 -58.4540681 20 912 \N nhammerschalg +830 2025-05-07 00:03:38.219569+00 2025-05-07 00:03:38.219579+00 f t María Laura Loudet maria_lloudet@hotmial.com 5491138453753 \N Yerbal 4282 \N \N FEMALE \N -34.632869 -58.4820437 16 913 \N mloudet +834 2025-05-07 14:09:02.526215+00 2025-05-07 14:09:02.526226+00 f t Marisa Donato msdonato@gmail.com 91162756602 \N Monroe 3144 3D \N FEMALE 1965-01-13 -34.5506018 -58.4469833 3 914 \N mdonato +835 2025-05-07 14:27:39.769306+00 2025-05-07 14:27:39.769313+00 f t Lucía Carti luciaacarti@gmail.com 5491150983051José A. \N José A. Terry 240 2E \N FEMALE 2003-06-09 -34.6248089 -58.4454207 14 915 \N lcarti +837 2025-05-07 15:45:46.990379+00 2025-05-07 15:45:46.990391+00 f t Cynthia Leguizamon cynlegui@gmail.com 5491134207326 \N Farrel 1310 entre callao y formosa, frente de la casa \N FEMALE 1992-02-04 -34.6787034 -58.4108792 70 916 \N cleguizamon +838 2025-05-07 16:25:34.29202+00 2025-05-07 16:25:34.292032+00 f t Solange Banes solcitobanes@gmail.com +54 11 4915 8615 \N Ugarteche 3288 3ero c \N \N -34.5785431 -58.410857 \N 917 \N sbanes +839 2025-05-07 19:05:27.763124+00 2025-05-07 19:05:27.763132+00 f t Romina Massa romimassa@gmail.com 5491136412817 \N Luis María Saavedra 2012 entre Mitre y Echeverría \N FEMALE \N -34.5660506 -58.5226825 46 918 \N rmassa +840 2025-05-07 19:52:24.182415+00 2025-05-07 19:52:24.182422+00 f t Alejandra Milroy milroyale@gmail.com 91127919464 \N Segurola 2966 Timbre 1 \N FEMALE 1975-08-12 -34.6095045 -58.5101982 21 919 \N amilroy +841 2025-05-07 20:02:24.828158+00 2025-05-07 20:02:24.828164+00 f t Mariana Sellis marianaperezdelcerro@gmail.com 5491139181345 \N Lascano 3478 \N \N FEMALE 1984-01-24 -34.6107078 -58.4918811 17 920 \N msellis +842 2025-05-07 20:08:15.812616+00 2025-05-07 20:08:15.812625+00 f t Martina Lotti martinalotti90@gmail.com 5491149803028 \N Arcos 2646 piso 11 \N FEMALE 1990-09-19 -34.5553256 -58.4583054 3 921 \N mlotti +843 2025-05-07 22:48:40.11507+00 2025-05-07 22:48:40.115083+00 f t Invitado Amar invitado-1746658118066@example.com 55555555 \N \N \N 21.8841126 -78.1828482 25 \N \N iamar-3 +844 2025-05-07 23:19:13.600036+00 2025-05-07 23:19:13.600047+00 f t Invitado Amar invitado-1746659952404@example.com 55555555 \N \N \N 8.3592431 -62.6389011 102 \N \N iamar-4 +845 2025-05-08 00:22:33.707432+00 2025-05-08 00:22:33.707441+00 f t Invitado Amar invitado-1746663752693@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5 +846 2025-05-08 11:04:24.609733+00 2025-05-08 11:04:24.609741+00 f t Invitado Amar invitado-1746702263143@example.com 55555555 \N \N \N 13.881273 39.127495 22 \N \N iamar-6 +847 2025-05-08 12:17:42.614583+00 2025-05-08 12:17:42.614596+00 f t Invitado Amar invitado-1746706713720@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7 +848 2025-05-08 12:21:41.056704+00 2025-05-08 12:21:41.056716+00 f t Invitado Amar invitado-1746706902233@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-8 +849 2025-05-08 12:29:26.896169+00 2025-05-08 12:29:26.896179+00 f t Invitado Amar invitado-1746707368028@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-9 +851 2025-05-08 12:54:34.63485+00 2025-05-08 12:54:34.63486+00 f t Invitado Amar invitado-1746708873898@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-10 +854 2025-05-08 14:10:48.5009+00 2025-05-08 14:10:48.500907+00 f t Alba Lorena Irigoyen lolezoeze@gmail.com 5491157343159 \N Francisco narciso Laprida 1191 \N \N FEMALE 1973-05-25 -27.6007447 -56.6942009 78 922 \N airigoyen +855 2025-05-08 14:46:13.953241+00 2025-05-08 14:46:13.953247+00 f t Criselena Sandoval criselenasandoval@gmail.com 91141598942 \N Av. Chorroarin 1059 entre Caldas y Girardot, departamento 2 G \N FEMALE 1994-04-29 -34.5844397 -58.4694469 24 923 \N csandoval +856 2025-05-08 15:52:17.470613+00 2025-05-08 15:52:17.470622+00 f t Lorena Dondo loesdondo@gmail.com +5491150486895 \N Terrada 1590 \N \N FEMALE 1990-06-16 -34.6150401 -58.4769253 41 924 \N ldondo +857 2025-05-08 17:15:42.468583+00 2025-05-08 17:15:42.468596+00 f t Invitado Amar invitado-1746724541601@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-13 +858 2025-05-08 18:07:07.354911+00 2025-05-08 18:07:07.354924+00 f t Invitado Amar invitado-1746727627091@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-14 +859 2025-05-08 19:09:11.873901+00 2025-05-08 19:09:11.873911+00 f t Valeria Ines Araguete valeria_0209@hotmail.com 91169332319 \N Felipe Vallese 2560 \N \N FEMALE 1979-02-09 -34.6217892 -58.4682977 4 925 \N varaguete +860 2025-05-08 21:48:28.189923+00 2025-05-08 21:48:28.189934+00 f t Invitado Amar invitado-1746740906765@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-15 +861 2025-05-08 22:26:19.207091+00 2025-05-08 22:26:19.207102+00 f t Invitado Amar invitado-1746743164759@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-16 +862 2025-05-08 22:29:01.528292+00 2025-05-08 22:29:01.528304+00 f t Invitado Amar invitado-1746743327403@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-17 +863 2025-05-08 22:34:46.460248+00 2025-05-08 22:34:46.460259+00 f t Invitado Amar invitado-1746743672670@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-18 +864 2025-05-08 22:36:04.033034+00 2025-05-08 22:36:04.033043+00 f t Kylie Guzman kylieguzman109@gmail.com +54 11 6997 3724 \N Bynnon 6953 1 \N \N -34.6775526 -58.6576253 1 926 \N kguzman +865 2025-05-08 22:47:43.421451+00 2025-05-08 22:47:43.42146+00 f t Invitado Amar invitado-1746744449635@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-19 +866 2025-05-08 22:52:27.05974+00 2025-05-08 22:52:27.059749+00 f t Invitado Amar invitado-1746744733259@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-20 +867 2025-05-08 23:23:00.240652+00 2025-05-08 23:23:00.24066+00 f t Jimena Ruffolo jiiruffolo@gmail.com 5491122505432 \N Nicolas Repetto 1156 dto 4 \N FEMALE 1990-07-24 -34.6080571 -58.4495969 14 927 \N jruffolo +868 2025-05-08 23:48:45.163749+00 2025-05-08 23:48:45.163757+00 f t Sabrina Emanuel sabrina.emanuel@outlook.com 5491140339795 \N Franklin D Roosevelt 2865 6A \N FEMALE 1989-03-20 -34.55743 -58.4606602 3 928 \N semanuel +869 2025-05-09 02:05:37.66714+00 2025-05-09 02:05:37.667155+00 f t Invitado Amar invitado-1746756337106@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-21 +870 2025-05-09 11:43:42.490099+00 2025-05-09 11:43:42.490113+00 f t Invitado Amar invitado-1746791022023@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-22 +871 2025-05-09 11:46:19.716367+00 2025-05-09 11:46:19.716381+00 f t Invitado Amar invitado-1746791180093@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-23 +872 2025-05-09 13:13:35.965061+00 2025-05-09 13:13:35.965069+00 f t Juana Ines Samperi juana.samperi.01@gmail.com 91121671539 \N Av directorio 5125 entre Araujo y corvalan \N FEMALE 2001-02-17 -34.6515958 -58.4921242 19 929 \N jsamperi +873 2025-05-09 13:25:55.701922+00 2025-05-09 13:25:55.701929+00 f t Victoria Pilz vickypd55@hotmail.com 91158539982 \N Mexico 4134 \N \N FEMALE 1995-05-05 20.5960221 -105.2390403 14 930 \N vpilz +874 2025-05-09 13:28:52.512791+00 2025-05-09 13:28:52.512804+00 f t Invitado Amar invitado-1746797330503@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-24 +875 2025-05-09 13:32:52.320854+00 2025-05-09 13:32:52.320865+00 f t Invitado Amar invitado-1746797570806@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-25 +876 2025-05-09 13:42:03.555298+00 2025-05-09 13:42:03.555306+00 f t Anabela Iglesias anabella_iglesias@live.com.ar 91121904535 \N Honduras 3931 pb B \N FEMALE 1988-09-19 -34.5940008 -58.4187053 1 931 \N aiglesias +877 2025-05-09 16:29:12.800002+00 2025-05-09 16:29:12.800018+00 f t Invitado Amar invitado-1746808152368@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-26 +878 2025-05-09 16:47:56.170267+00 2025-05-09 16:47:56.170279+00 f t Invitado Amar invitado-1746809275531@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-27 +879 2025-05-09 16:48:26.768531+00 2025-05-09 16:48:26.768543+00 f t Invitado Amar invitado-1746809306370@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-28 +880 2025-05-09 16:51:18.302907+00 2025-05-09 16:51:18.302918+00 f t Invitado Amar invitado-1746809477776@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-29 +881 2025-05-09 16:57:11.277715+00 2025-05-09 16:57:11.277729+00 f t Invitado Amar invitado-1746809830939@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-30 +882 2025-05-09 16:59:38.791449+00 2025-05-09 16:59:38.791458+00 f t Invitado Amar invitado-1746809978562@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-31 +883 2025-05-09 17:00:33.277177+00 2025-05-09 17:00:33.277187+00 f t Invitado Amar invitado-1746810032955@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-32 +884 2025-05-09 17:36:55.183748+00 2025-05-09 17:36:55.183761+00 f t Diego Faccini federico.leivas6@gmail.com +54 11 5714 7704 \N Coronel rosales 554 Galpon \N \N -38.7312636 -62.238918 \N 932 \N dfaccini +885 2025-05-09 18:33:38.211468+00 2025-05-09 18:33:38.211481+00 f t Invitado Amar invitado-1746815616647@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-33 +886 2025-05-09 18:48:02.094719+00 2025-05-09 18:48:02.094731+00 f t Invitado Amar invitado-1746816481506@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-34 +887 2025-05-09 18:48:31.278504+00 2025-05-09 18:48:31.278517+00 f t Invitado Amar invitado-1746816510907@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-35 +888 2025-05-09 18:52:19.284423+00 2025-05-09 18:52:19.284435+00 f t Invitado Amar invitado-1746816739351@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-36 +889 2025-05-09 19:10:25.157521+00 2025-05-09 19:10:25.157535+00 f t Invitado Amar invitado-1746817824785@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-37 +890 2025-05-09 20:11:16.892883+00 2025-05-09 20:11:16.892892+00 f t Invitado Amar invitado-1746821476540@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-38 +891 2025-05-09 20:14:09.879431+00 2025-05-09 20:14:09.879442+00 f t Invitado Amar invitado-1746821649359@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-39 +892 2025-05-09 21:01:34.592187+00 2025-05-09 21:01:34.592196+00 f t Monica Judith Lagoria judithlagoria06@gmail.com 91161747817 \N Sarmiento 3044 depto D, entre calles ecuador y jean jaul \N FEMALE 1979-12-06 -34.6067568 -58.4093258 18 933 \N mlagoria +893 2025-05-09 21:07:59.64+00 2025-05-09 21:07:59.640006+00 f t Bárbara Aparecida da Cruz Bondarenco barbara_bondarenco@hotmail.com 6792322022 \N Juncal 1661 piso 1 A \N FEMALE 1994-06-10 -34.594108 -58.3909238 9 934 \N bdacruzbondarenco +894 2025-05-09 22:35:47.54023+00 2025-05-09 22:35:47.540239+00 f t Invitado Amar invitado-1746830146802@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-40 +895 2025-05-09 22:58:44.013307+00 2025-05-09 22:58:44.013314+00 f t Invitado Amar invitado-1746831509964@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-41 +896 2025-05-09 23:03:05.880406+00 2025-05-09 23:03:05.880414+00 f t Sabrina Doroszuk sabridoro24@hotmail.com +5491140853708 \N Moctezuma 1237 \N \N MALE 1980-03-11 19.5602871 -96.9104684 16 935 \N sdoroszuk +897 2025-05-09 23:06:55.028575+00 2025-05-09 23:06:55.028582+00 f t Candela Santos nbasile@osdepym.com.ar 🇦🇷 +5491155639866 \N Av Brasil 907 2E \N \N FEMALE 2001-04-21 -34.62542 -58.3718441 15 936 \N csantos +898 2025-05-10 01:10:24.973693+00 2025-05-10 01:10:24.973705+00 f t Invitado Amar invitado-1746839423913@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-42 +899 2025-05-10 11:25:09.476424+00 2025-05-10 11:25:09.476435+00 f t Invitado Amar invitado-1746876308579@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-43 +900 2025-05-10 14:09:12.237653+00 2025-05-10 14:09:12.237665+00 f t Invitado Amar invitado-1746886152812@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-44 +902 2025-05-10 17:31:27.765102+00 2025-05-10 17:31:27.765112+00 f t Invitado Amar invitado-1746898287304@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-46 +903 2025-05-10 18:11:08.778647+00 2025-05-10 18:11:08.778657+00 f t Ana Martínez anita_artemisa@hotmail.com +5491135807046 \N Soldado Toledo 2281 \N \N FEMALE 1975-06-16 -34.6204021 -58.7927114 2 937 \N amartinez-3 +904 2025-05-10 19:38:35.114897+00 2025-05-10 19:38:35.114905+00 f t Invitado Amar invitado-1746905914333@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-47 +905 2025-05-10 21:08:27.524403+00 2025-05-10 21:08:27.524411+00 f t Invitado Amar invitado-1746911306972@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-48 +906 2025-05-10 23:46:36.32483+00 2025-05-10 23:46:36.324845+00 f t Invitado Amar invitado-1746920795882@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-49 +907 2025-05-11 03:04:24.888971+00 2025-05-11 03:04:24.888982+00 f t Invitado Amar invitado-1746932664414@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-50 +908 2025-05-11 14:33:06.767546+00 2025-05-11 14:33:06.767558+00 f t Invitado Amar invitado-1746973989208@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-51 +909 2025-05-11 15:05:48.516321+00 2025-05-11 15:05:48.516329+00 f t Mercedes Mac Donnell macdonnellmercedes@gmail.com +54 44444471 \N Riglos 912 \N \N -34.6298399 -58.4351655 \N 938 \N mmacdonnell +910 2025-05-11 15:15:09.032648+00 2025-05-11 15:15:09.03266+00 f t Invitado Amar invitado-1746976511744@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-52 +911 2025-05-11 15:20:54.68283+00 2025-05-11 15:20:54.682845+00 f t Invitado Amar invitado-1746976854315@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-53 +912 2025-05-11 15:47:56.999996+00 2025-05-11 15:47:57.000004+00 f t Invitado Amar invitado-1746978475739@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-54 +913 2025-05-11 16:24:54.2525+00 2025-05-11 16:24:54.25251+00 f t Invitado Amar invitado-1746980693032@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-55 +914 2025-05-11 16:39:12.984822+00 2025-05-11 16:39:12.984833+00 f t Invitado Amar invitado-1746981552114@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-56 +915 2025-05-11 19:12:54.466018+00 2025-05-11 19:12:54.466025+00 f t Agustina Vera rojodemivid123@gmail.com +5491160042589 \N Mariano acosta 157 \N \N FEMALE 2002-04-10 -34.6497599 -58.4623581 4 939 \N avera +916 2025-05-11 19:16:16.852419+00 2025-05-11 19:16:16.852427+00 f t Juan Carlos Echazú vasco222@hotmail.com +5491149935299 \N crisologo Larralde 1844 \N \N MALE \N -34.5462971 -58.4627175 25 940 \N jechazu +917 2025-05-11 19:19:01.754933+00 2025-05-11 19:19:01.754943+00 f t Rosario hawkins hawkinsmaria34@gmail.com +5491123911122 \N Av dorrego 1080 \N \N FEMALE 1999-07-15 -34.5932867 -58.4480481 35 941 \N rhawkins +918 2025-05-11 19:26:29.022804+00 2025-05-11 19:26:29.022811+00 f t Sebastian Grün sebastian.l.grun@gmail.com +5491167956341 \N Av.cordoba 5779 3b \N MALE 1972-02-14 -34.5861933 -58.4420474 1 942 \N sgrun +919 2025-05-11 20:48:54.488444+00 2025-05-11 20:48:54.488455+00 f t Kristel Aguirre kristelaguirre71@gmail.com +54 11 6591 8029 \N Matias Sturiza 494 7d \N \N -34.507126 -58.4796345 \N 943 \N kaguirre +13304 2025-11-14 15:38:52.358475+00 2025-11-14 15:38:52.358485+00 f t Invitado Amar invitado-1763134731475@example.com 55555555 \N \N \N \N \N 29 \N \N \N +921 2025-05-12 00:17:53.890322+00 2025-05-12 00:17:53.89033+00 f t Invitado Amar invitado-1747009073369@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-57 +922 2025-05-12 02:56:53.334117+00 2025-05-12 02:56:53.334129+00 f t Invitado Amar invitado-1747018610990@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-58 +923 2025-05-12 03:01:30.021294+00 2025-05-12 03:01:30.021304+00 f t Invitado Amar invitado-1747018888414@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-59 +924 2025-05-12 03:04:36.332218+00 2025-05-12 03:04:36.332231+00 f t Invitado Amar invitado-1747019074422@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-60 +925 2025-05-12 03:32:53.142467+00 2025-05-12 03:32:53.142479+00 f t Invitado Amar invitado-1747020771485@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-61 +926 2025-05-12 06:14:35.680873+00 2025-05-12 06:14:35.680885+00 f t Invitado Amar invitado-1747030473399@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-62 +927 2025-05-12 12:29:50.232416+00 2025-05-12 12:29:50.232427+00 f t Betiana Levaggi plife.1986@gmail.com +54 11330 495 89 \N Guardia nacional 2400 Esquina Hubac \N \N \N -34.6587537 -58.4790502 \N 945 \N blevaggi +928 2025-05-12 14:55:11.106787+00 2025-05-12 14:55:11.106799+00 f t Invitado Amar invitado-1747061710570@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-63 +929 2025-05-12 14:55:34.826775+00 2025-05-12 14:55:34.826786+00 f t Invitado Amar invitado-1747061732764@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-64 +930 2025-05-12 14:55:48.188405+00 2025-05-12 14:55:48.188415+00 f t Invitado Amar invitado-1747061747240@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-65 +931 2025-05-12 15:00:40.743844+00 2025-05-12 15:00:40.743853+00 f t Invitado Amar invitado-1747062040195@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-66 +932 2025-05-12 15:02:12.24246+00 2025-05-12 15:02:12.242471+00 f t Invitado Amar invitado-1747062130147@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-67 +933 2025-05-12 15:02:54.638719+00 2025-05-12 15:02:54.638731+00 f t Invitado Amar invitado-1747062174462@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-68 +934 2025-05-12 15:04:44.531117+00 2025-05-12 15:04:44.531126+00 f t Invitado Amar invitado-1747062284279@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-69 +935 2025-05-12 16:05:44.877007+00 2025-05-12 16:05:44.877015+00 f t Invitado Amar invitado-1747065944444@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-70 +936 2025-05-12 16:12:59.311195+00 2025-05-12 16:12:59.311204+00 f t Invitado Amar invitado-1747066263986@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-71 +937 2025-05-12 16:14:04.954122+00 2025-05-12 16:14:04.95413+00 f t Invitado Amar invitado-1747066444443@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-72 +938 2025-05-12 16:56:16.421903+00 2025-05-12 16:56:16.421914+00 f t Conchetina Quattrocchi chochetina@hotmail.com cata \N zabala 2417 8A \N FEMALE \N -34.5678682 -58.4490397 3 946 \N cquattrocchi +939 2025-05-12 17:06:37.53187+00 2025-05-12 17:06:37.531879+00 f t Invitado Amar invitado-1747069598179@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-73 +940 2025-05-12 17:10:03.640669+00 2025-05-12 17:10:03.640683+00 f t Invitado Amar invitado-1747069802770@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-74 +941 2025-05-12 17:17:24.273493+00 2025-05-12 17:17:24.273503+00 f t Emiliano Sary emiliano.sary@gmail.com 5491121805020 \N Bauness 1960 piso 15F \N MALE 1993-06-12 -34.5794634 -58.4835543 29 947 \N esary +942 2025-05-12 17:56:36.020782+00 2025-05-12 17:56:36.020791+00 f t Valentina Ferrari imtjjv@gmail.com 91162036383 \N Garay 3139 1A \N FEMALE 2003-11-04 -34.6316606 -58.4184767 11 948 \N vferrari +943 2025-05-12 18:38:14.467378+00 2025-05-12 18:38:14.467388+00 f t Invitado Amar invitado-1747075092618@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-75 +944 2025-05-12 19:10:47.97333+00 2025-05-12 19:10:47.973338+00 f t Maria - miriamsasson18@gmail.com 5491160464189 \N \N \N \N \N FEMALE \N 44.9379672 7.5400398 37 949 \N m +945 2025-05-12 19:13:10.7059+00 2025-05-12 19:13:10.705907+00 f t Invitado Amar invitado-1747077188993@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-76 +946 2025-05-12 19:15:58.087088+00 2025-05-12 19:15:58.087096+00 f t Test Test javier__99@hotmail.com +54 11 5544 1111 \N Calle falsa 123 1a \N \N 40.1850552 -4.4585093 \N 950 \N ttest-2 +947 2025-05-12 19:17:06.039845+00 2025-05-12 19:17:06.039855+00 f t Invitado Amar invitado-1747077427347@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-77 +948 2025-05-12 19:18:26.729176+00 2025-05-12 19:18:26.729189+00 f t Invitado Amar invitado-1747077508315@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-78 +949 2025-05-12 19:19:03.839492+00 2025-05-12 19:19:03.839502+00 f t Invitado Amar invitado-1747077545382@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-79 +950 2025-05-12 19:19:51.200439+00 2025-05-12 19:19:51.200448+00 f t Invitado Amar invitado-1747077592787@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-80 +951 2025-05-12 19:22:26.503735+00 2025-05-12 19:22:26.503744+00 f t Invitado Amar invitado-1747077749418@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-81 +952 2025-05-12 19:39:28.064649+00 2025-05-12 19:39:28.06466+00 f t Karina Torrado karinamtorrado@gmail.com 91160566439 \N Mexico 1522 Piso 8 dpto B \N FEMALE 1981-10-22 -34.6155895 -58.3878266 49 951 \N ktorrado +953 2025-05-12 20:03:07.63111+00 2025-05-12 20:03:07.631122+00 f t Invitado Amar invitado-1747080187203@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-82 +954 2025-05-12 20:31:41.434192+00 2025-05-12 20:31:41.434206+00 f t Invitado Amar invitado-1747081901024@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-83 +955 2025-05-12 20:39:27.527568+00 2025-05-12 20:39:27.527579+00 f t Invitado Amar invitado-1747082366548@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-84 +956 2025-05-12 20:45:17.230354+00 2025-05-12 20:45:17.230366+00 f t Invitado Amar invitado-1747082716311@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-85 +957 2025-05-12 20:46:24.609138+00 2025-05-12 20:46:24.609147+00 f t Invitado Amar invitado-1747083356961@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-86 +958 2025-05-12 21:04:30.264172+00 2025-05-12 21:04:30.26418+00 f t Invitado Amar invitado-1747083871311@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-87 +959 2025-05-12 21:21:26.71787+00 2025-05-12 21:21:26.717879+00 f t Invitado Amar invitado-1747084886600@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-88 +960 2025-05-12 21:42:18.889463+00 2025-05-12 21:42:18.889471+00 f t Invitado Amar invitado-1747086138187@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-89 +961 2025-05-12 22:06:01.893559+00 2025-05-12 22:06:01.893568+00 f t Invitado Amar invitado-1747087560258@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-90 +962 2025-05-12 23:19:49.393201+00 2025-05-12 23:19:49.393213+00 f t Invitado Amar invitado-1747091988656@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-91 +963 2025-05-12 23:45:59.300466+00 2025-05-12 23:45:59.300478+00 f t Invitado Amar invitado-1747093558921@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-92 +964 2025-05-12 23:47:33.117644+00 2025-05-12 23:47:33.117653+00 f t Invitado Amar invitado-1747093652939@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-93 +965 2025-05-12 23:57:55.455948+00 2025-05-12 23:57:55.455961+00 f t Invitado Amar invitado-1747094274439@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-94 +966 2025-05-13 00:44:26.156784+00 2025-05-13 00:44:26.156827+00 f t Invitado Amar invitado-1747097063831@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-95 +967 2025-05-13 03:58:58.255766+00 2025-05-13 03:58:58.255774+00 f t Invitado Amar invitado-1747108739598@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-96 +968 2025-05-13 04:43:30.313764+00 2025-05-13 04:43:30.313776+00 f t Invitado Amar invitado-1747111409467@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-97 +969 2025-05-13 09:50:07.391624+00 2025-05-13 09:50:07.391636+00 f t Invitado Amar invitado-1747129806893@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-98 +970 2025-05-13 10:50:07.533043+00 2025-05-13 10:50:07.533055+00 f t Invitado Amar invitado-1747133406125@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-99 +971 2025-05-13 10:56:48.220761+00 2025-05-13 10:56:48.22077+00 f t Invitado Amar invitado-1747133807433@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-100 +972 2025-05-13 11:25:24.004977+00 2025-05-13 11:25:24.004989+00 f t Invitado Amar invitado-1747135523143@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-101 +973 2025-05-13 12:10:12.11198+00 2025-05-13 12:10:12.111992+00 f t Invitado Amar invitado-1747138211796@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-102 +974 2025-05-13 12:15:13.610142+00 2025-05-13 12:15:13.610152+00 f t Invitado Amar invitado-1747139101605@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-103 +975 2025-05-13 12:26:03.723564+00 2025-05-13 12:26:03.723572+00 f t Invitado Amar invitado-1747139163014@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-104 +976 2025-05-13 12:29:04.551749+00 2025-05-13 12:29:04.551758+00 f t Invitado Amar invitado-1747139344048@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-105 +977 2025-05-13 12:33:53.907085+00 2025-05-13 12:33:53.907093+00 f t Invitado Amar invitado-1747139633535@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-106 +978 2025-05-13 12:55:17.941767+00 2025-05-13 12:55:17.941776+00 f t Lourdes Rinnia rlourdes19@gmail.com 91130834227 \N Av. Juan Bautista Alberdi 466 \N \N FEMALE \N 44.9379672 7.5400398 \N 952 \N lrinnia +979 2025-05-13 12:59:29.351701+00 2025-05-13 12:59:29.351712+00 f t Paula Pignatelli paula.pignatelli2@gmail.com +541160134071 \N Juan Sarcione 335 \N \N FEMALE \N -34.8256402 -58.3467064 142 953 \N ppignatelli +980 2025-05-13 13:09:47.015822+00 2025-05-13 13:09:47.015835+00 f t Invitado Amar invitado-1747141785551@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-107 +981 2025-05-13 13:11:39.420917+00 2025-05-13 13:11:39.420926+00 f t Invitado Amar invitado-1747141898797@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-108 +982 2025-05-13 14:00:52.190482+00 2025-05-13 14:00:52.190495+00 f t Invitado Amar invitado-1747144851297@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-109 +983 2025-05-13 14:05:29.500028+00 2025-05-13 14:05:29.500036+00 f t RUBEN HORACIO FIAÑO rubenpipo@hotmail.com +54 11 5970 9914 \N PJE. CARLOS ECHAGUE 1328 1 \N \N \N \N 1 954 \N rfiano +984 2025-05-13 14:30:54.822589+00 2025-05-13 14:30:54.822598+00 f t Invitado Amar invitado-1747146653842@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-110 +985 2025-05-13 14:38:27.858473+00 2025-05-13 14:38:27.858482+00 f t Invitado Amar invitado-1747147107322@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-111 +986 2025-05-13 14:41:59.765621+00 2025-05-13 14:41:59.76563+00 f t Invitado Amar invitado-1747147320389@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-112 +987 2025-05-13 14:54:22.42771+00 2025-05-13 14:54:22.427719+00 f t Invitado Amar invitado-1747148061632@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-113 +988 2025-05-13 15:27:34.115551+00 2025-05-13 15:27:34.115599+00 f t Invitado Amar invitado-1747150052212@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-114 +989 2025-05-13 16:13:15.42361+00 2025-05-13 16:13:15.423619+00 f t Invitado Amar invitado-1747152794694@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-115 +990 2025-05-13 16:53:14.114521+00 2025-05-13 16:53:14.114532+00 f t Invitado Amar invitado-1747155191395@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-116 +991 2025-05-13 17:23:44.684093+00 2025-05-13 17:23:44.684106+00 f t Jose Facundo Frank joseffrank@outlook.com +54 11 5782 5065 \N Av. Juan Bautista Alberdi 658 21 \N MALE \N -34.623351 -58.4370774 14 955 \N jfrank +992 2025-05-13 17:28:26.877421+00 2025-05-13 17:28:26.877435+00 f t Danilo Imperio daniloimperio@gmail.com +54 11 6602 6960 \N Teodoro Garcia 3551 2 11 \N \N \N -34.5806812 -58.4526903 35 956 \N dimperio +993 2025-05-13 18:18:06.952809+00 2025-05-13 18:18:06.952819+00 f t Invitado Amar invitado-1747160286638@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-117 +994 2025-05-13 18:20:07.125767+00 2025-05-13 18:20:07.125781+00 f t Invitado Amar invitado-1747160406837@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-118 +995 2025-05-13 18:20:40.658205+00 2025-05-13 18:20:40.658218+00 f t Invitado Amar invitado-1747160440730@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-119 +996 2025-05-13 18:42:30.705129+00 2025-05-13 18:42:30.705141+00 f t Invitado Amar invitado-1747161749766@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-120 +997 2025-05-13 19:17:23.488821+00 2025-05-13 19:17:23.488829+00 f t Joaquin Sanchez Cornejo bestseiyuna@gmail.com +54 11 2672 1839 \N Llavallol 2987 1 B \N MALE \N -34.6028359 -58.4973265 17 957 \N jsanchezcornejo +998 2025-05-13 19:24:02.750317+00 2025-05-13 19:24:02.750328+00 f t Karen perez medilakok@hotmail.com +5491166824642 \N Hipolito yrigoyen 2520 2 g \N FEMALE 1990-03-22 -34.6110956 -58.4020514 18 958 \N kperez +999 2025-05-13 19:26:34.996597+00 2025-05-13 19:26:34.996605+00 f t Guadalupe Tejerina Castellanos tejeguada@gmail.com +5493873300743 \N Yatay 133 2b \N FEMALE 1997-07-28 -34.6122644 -58.4285864 23 959 \N gtejerinacastellanos +1000 2025-05-13 19:28:31.100086+00 2025-05-13 19:28:31.1001+00 f t Invitado Amar invitado-1747164544350@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-121 +1001 2025-05-13 19:33:39.780578+00 2025-05-13 19:33:39.780589+00 f t Invitado Amar invitado-1747164820326@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-122 +1002 2025-05-13 21:24:01.258329+00 2025-05-13 21:24:01.25834+00 f t Invitado Amar invitado-1747171440807@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-123 +1003 2025-05-13 21:35:23.009428+00 2025-05-13 21:35:23.009436+00 f t Invitado Amar invitado-1747172122181@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-124 +1004 2025-05-13 22:41:48.952365+00 2025-05-13 22:41:48.952377+00 f t Invitado Amar invitado-1747176108472@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-125 +1005 2025-05-14 00:08:57.955794+00 2025-05-14 00:08:57.955806+00 f t Sebastian Finch sebafinch1@gmail.com +54 9 11 6152 9904 \N Chile 1151 2 \N \N \N \N \N \N \N sfinch +1006 2025-05-14 01:46:42.141133+00 2025-05-14 01:46:42.141145+00 f t Invitado Amar invitado-1747187201450@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-126 +1007 2025-05-14 02:16:50.767846+00 2025-05-14 02:16:50.767859+00 f t Invitado Amar invitado-1747189008892@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-127 +1008 2025-05-14 02:45:39.345416+00 2025-05-14 02:45:39.345427+00 f t Invitado Amar invitado-1747190738435@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-128 +1009 2025-05-14 02:52:29.481986+00 2025-05-14 02:52:29.481996+00 f t Clara Worobiej clarys.23@gmail.com +54 11 5639 2306 \N Av. Olazábal 5172 4 D \N FEMALE 1990-06-23 -34.576963 -58.4865241 29 962 \N cworobiej +1010 2025-05-14 03:54:46.749905+00 2025-05-14 03:54:46.749918+00 f t Invitado Amar invitado-1747194884814@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-129 +1011 2025-05-14 04:36:59.430777+00 2025-05-14 04:36:59.430787+00 f t Invitado Amar invitado-1747197419002@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-130 +1012 2025-05-14 11:38:50.184197+00 2025-05-14 11:38:50.184208+00 f t Invitado Amar invitado-1747222729328@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-131 +1013 2025-05-14 12:32:46.08153+00 2025-05-14 12:32:46.081544+00 f t Invitado Amar invitado-1747225966620@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-132 +1014 2025-05-14 12:33:02.076231+00 2025-05-14 12:33:02.076244+00 f t Martin Andrade martin@delta07.com +54 11 3355 4540 \N Nicolas Avellaneda 4256 \N \N -31.3671164 -64.1868759 \N \N \N mandrade +1015 2025-05-14 14:01:13.291851+00 2025-05-14 14:01:13.291865+00 f t Invitado Amar invitado-1747231272551@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-133 +1016 2025-05-14 14:01:40.031076+00 2025-05-14 14:01:40.031097+00 f t Invitado Amar invitado-1747231299336@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-134 +1017 2025-05-14 14:16:15.01075+00 2025-05-14 14:16:15.010763+00 f t Invitado Amar invitado-1747232173069@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-135 +1018 2025-05-14 14:23:14.955934+00 2025-05-14 14:23:14.955946+00 f t Invitado Amar invitado-1747232594225@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-136 +1019 2025-05-14 14:51:06.250771+00 2025-05-14 14:51:06.250785+00 f t Invitado Amar invitado-1747234265734@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-137 +1020 2025-05-14 14:51:22.78078+00 2025-05-14 14:51:22.780789+00 f t Invitado Amar invitado-1747234282018@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-138 +1021 2025-05-14 15:09:59.791943+00 2025-05-14 15:09:59.791954+00 f t Gonzalo Mario Gomez gonzalogomez2001@hotmail.com 91137884856 \N Colombres 104 piso 8 dep 40 \N MALE 2002-02-17 -34.6129811 -58.4190195 23 \N \N ggomez +1022 2025-05-14 15:25:38.093097+00 2025-05-14 15:25:38.093108+00 f t Nicolas Millone namillione@gmail.com 5491165196514 \N 33 orientales 1221 dpto 3 \N MALE \N -34.6288707 -58.4227124 11 \N \N nmillone +1023 2025-05-14 15:54:20.255795+00 2025-05-14 15:54:20.255805+00 f t Invitado Amar invitado-1747238060051@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-139 +1024 2025-05-14 15:55:43.451566+00 2025-05-14 15:55:43.451579+00 f t Invitado Amar invitado-1747238143562@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-140 +1025 2025-05-14 16:18:38.1257+00 2025-05-14 16:18:38.125713+00 f t Kseniia Troshina troshina.ks@gmail.com +5491133582167 \N 11 de Septiembre de 1888 2125 10a \N \N \N -34.5584434 -58.4513646 1 \N \N ktroshina +1026 2025-05-14 16:25:06.210322+00 2025-05-14 16:25:06.210333+00 f t Invitado Amar invitado-1747239905033@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-141 +1027 2025-05-14 16:43:37.964471+00 2025-05-14 16:43:37.964484+00 f t Invitado Amar invitado-1747241017037@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-142 +1028 2025-05-14 16:48:47.757417+00 2025-05-14 16:48:47.757427+00 f t Laura Garcia laura@gmail.com 91158764869 \N Palestina 560 PB 3 \N FEMALE \N -34.6049406 -58.4260474 23 \N \N lgarcia-2 +1029 2025-05-14 16:49:10.765834+00 2025-05-14 16:49:10.765846+00 f t Invitado Amar invitado-1747241349902@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-143 +1030 2025-05-14 16:54:09.535992+00 2025-05-14 16:54:09.536002+00 f t Invitado Amar invitado-1747241648943@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-144 +1031 2025-05-14 16:58:05.367943+00 2025-05-14 16:58:05.367954+00 f t Mariana García Castaño negri74@gmail.com +54 11 5975 8102 \N adolfo Pedro carranza 2941 3 A \N \N -37.7480963 -57.4275425 \N \N \N mgarciacastano +1032 2025-05-14 16:58:10.238393+00 2025-05-14 16:58:10.238402+00 f t Invitado Amar invitado-1747241888449@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-145 +1033 2025-05-14 17:23:51.062704+00 2025-05-14 17:23:51.062717+00 f t Camila Arriondo camilataarr@gmail.com +54 11 6460 1996 \N GONCALVES DIAS 591 CASA \N \N \N -34.6491281 -58.3794644 32 \N \N carriondo +1034 2025-05-14 17:24:32.306817+00 2025-05-14 17:24:32.306828+00 f t Invitado Amar invitado-1747243472013@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-146 +1035 2025-05-14 17:25:10.381475+00 2025-05-14 17:25:10.381489+00 f t Invitado Amar invitado-1747243510122@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-147 +1036 2025-05-14 17:41:11.122477+00 2025-05-14 17:41:11.122486+00 f t Invitado Amar invitado-1747244469753@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-148 +1037 2025-05-14 17:41:39.468599+00 2025-05-14 17:41:39.468611+00 f t Invitado Amar invitado-1747244498685@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-149 +1038 2025-05-14 17:48:09.813957+00 2025-05-14 17:48:09.813972+00 f t Invitado Amar invitado-1747244887354@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-150 +1039 2025-05-14 18:06:34.35652+00 2025-05-14 18:06:34.35653+00 f t Invitado Amar invitado-1747245993908@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-151 +1040 2025-05-14 18:08:05.04168+00 2025-05-14 18:08:05.041694+00 f t Invitado Amar invitado-1747246084217@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-152 +1042 2025-05-14 18:16:12.676078+00 2025-05-14 18:16:12.676089+00 f t Daira milagros García Vallejos garciadairacm@gmail.com +5491156388447 \N Gonzales 742 timbre 1B \N FEMALE 2001-10-03 -27.8509719 -53.7805395 16 \N \N dgarciavallejos +1043 2025-05-14 18:20:16.827213+00 2025-05-14 18:20:16.827268+00 f t Invitado Amar invitado-1747246816120@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-153 +1044 2025-05-14 18:20:59.550981+00 2025-05-14 18:20:59.550994+00 f t Invitado Amar invitado-1747246858973@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-154 +1045 2025-05-14 18:27:15.583172+00 2025-05-14 18:27:15.583184+00 f t Invitado Amar invitado-1747247234359@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-155 +1046 2025-05-14 18:30:22.748743+00 2025-05-14 18:30:22.748755+00 f t Invitado Amar invitado-1747247422170@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-156 +1047 2025-05-14 18:30:23.129581+00 2025-05-14 18:30:23.12959+00 f t Marita Cabrejos cabrejomariae@gmail.com +5491161193154 \N Veracruz 3605 \N \N FEMALE 1970-09-01 -34.6646346 -58.4469869 48 960 \N mcabrejos +1048 2025-05-14 18:31:02.783965+00 2025-05-14 18:31:02.783979+00 f t Invitado Amar invitado-1747247459575@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-157 +1049 2025-05-14 18:31:40.017341+00 2025-05-14 18:31:40.017355+00 f t Invitado Amar invitado-1747247498805@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-158 +1050 2025-05-14 18:37:28.738315+00 2025-05-14 18:37:28.738328+00 f t Invitado Amar invitado-1747247847590@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-159 +1051 2025-05-14 18:44:38.299394+00 2025-05-14 18:44:38.299405+00 f t Invitado Amar invitado-1747248331218@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-160 +1052 2025-05-14 18:56:53.309011+00 2025-05-14 18:56:53.309024+00 f t Invitado Amar invitado-1747249012617@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-161 +1053 2025-05-14 19:37:24.988492+00 2025-05-14 19:37:24.988503+00 f t Invitado Amar invitado-1747251444426@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-162 +1054 2025-05-14 19:50:29.832553+00 2025-05-14 19:50:29.832567+00 f t Invitado Amar invitado-1747252228274@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-163 +1055 2025-05-14 19:59:12.803261+00 2025-05-14 19:59:12.80327+00 f t Invitado Amar invitado-1747252751992@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-164 +1056 2025-05-14 20:17:21.741135+00 2025-05-14 20:17:21.741144+00 f t Invitado Amar invitado-1747253841161@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-165 +1057 2025-05-14 20:25:15.163717+00 2025-05-14 20:25:15.163731+00 f t Invitado Amar invitado-1747254312291@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-166 +1058 2025-05-14 20:35:12.905001+00 2025-05-14 20:35:12.905015+00 f t Invitado Amar invitado-1747254910597@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-167 +1059 2025-05-14 20:35:50.896261+00 2025-05-14 20:35:50.896275+00 f t Invitado Amar invitado-1747254949580@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-168 +1060 2025-05-14 21:14:54.471795+00 2025-05-14 21:14:54.471806+00 f t Invitado Amar invitado-1747257293261@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-169 +1061 2025-05-14 21:18:52.914918+00 2025-05-14 21:18:52.914931+00 f t Invitado Amar invitado-1747257531430@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-170 +1062 2025-05-14 21:23:46.409111+00 2025-05-14 21:23:46.40912+00 f t Invitado Amar invitado-1747257824981@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-171 +1063 2025-05-14 22:09:25.438625+00 2025-05-14 22:09:25.438638+00 f t Juan Martin moreno jmartin23@yahoo.com +54 9 11 4492 7301 \N Av. Pueyrredon 1480 8 piso \N MALE \N -34.5935345 -58.4021119 9 \N \N jmartinmoreno +1064 2025-05-14 22:17:58.156367+00 2025-05-14 22:17:58.156376+00 f t Invitado Amar invitado-1747261077556@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-172 +1065 2025-05-14 22:20:05.075684+00 2025-05-14 22:20:05.075696+00 f t Invitado Amar invitado-1747261204397@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-173 +1066 2025-05-14 22:46:21.652708+00 2025-05-14 22:46:21.652721+00 f t Invitado Amar invitado-1747262757905@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-174 +1067 2025-05-14 23:13:08.457678+00 2025-05-14 23:13:08.457688+00 f t Invitado Amar invitado-1747264388020@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-175 +1068 2025-05-14 23:15:32.285278+00 2025-05-14 23:15:32.285291+00 f t Invitado Amar invitado-1747264532103@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-176 +1069 2025-05-14 23:35:48.176348+00 2025-05-14 23:35:48.176359+00 f t Invitado Amar invitado-1747265746378@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-177 +1070 2025-05-14 23:40:34.676798+00 2025-05-14 23:40:34.676808+00 f t Invitado Amar invitado-1747266073564@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-178 +1071 2025-05-15 00:17:59.777789+00 2025-05-15 00:17:59.7778+00 f t Invitado Amar invitado-1747268279425@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-179 +1072 2025-05-15 02:16:32.272288+00 2025-05-15 02:16:32.272301+00 f t Mariana BARTIS maribartis@gmail.com +54 11 2450 6071 \N Leopoldo marechal 1220 2 do piso depto 10 \N \N \N -34.6043329 -58.4403018 \N \N \N mbartis +1073 2025-05-15 02:32:28.576954+00 2025-05-15 02:32:28.576966+00 f t Invitado Amar invitado-1747276347361@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-180 +1074 2025-05-15 08:54:17.987639+00 2025-05-15 08:54:17.987649+00 f t Invitado Amar invitado-1747299258487@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-181 +1075 2025-05-15 08:56:29.107587+00 2025-05-15 08:56:29.107598+00 f t Invitado Amar invitado-1747299389402@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-182 +1076 2025-05-15 10:57:02.791877+00 2025-05-15 10:57:02.79189+00 f t Invitado Amar invitado-1747306622174@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-183 +1077 2025-05-15 11:58:56.936708+00 2025-05-15 11:58:56.93672+00 f t Invitado Amar invitado-1747310336119@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-184 +1078 2025-05-15 12:11:17.218026+00 2025-05-15 12:11:17.218039+00 f t Invitado Amar invitado-1747311076919@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-185 +1079 2025-05-15 12:40:46.019334+00 2025-05-15 12:40:46.019346+00 f t Invitado Amar invitado-1747312845233@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-186 +1080 2025-05-15 13:12:17.541759+00 2025-05-15 13:12:17.541772+00 f t Invitado Amar invitado-1747314736473@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-187 +1081 2025-05-15 13:42:52.987538+00 2025-05-15 13:42:52.987551+00 f t Invitado Amar invitado-1747316572342@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-188 +8397 2025-09-10 21:08:25.177416+00 2025-09-10 21:08:25.177425+00 f t brenda sanzo sanzobrenda@gmail.com +541126341797 \N manzanares 3517 no hay timbre, llamar \N FEMALE \N -34.5525336 -58.4795033 31 2147 \N bsanzo +1083 2025-05-15 14:14:18.179988+00 2025-05-15 14:14:18.179997+00 f t Invitado Amar invitado-1747318457494@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-189 +1084 2025-05-15 14:36:10.296763+00 2025-05-15 14:36:10.297646+00 f t Invitado Amar invitado-1747319739558@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-190 +1085 2025-05-15 14:39:51.207008+00 2025-05-15 14:39:51.207522+00 f t Invitado Amar invitado-1747319990685@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-191 +1086 2025-05-15 14:51:05.557942+00 2025-05-15 14:51:05.557958+00 f t Micaela Diaz mycka.md@gmail.com +54 11 2867 9144 \N Arabesiria, José Ingenieros, ciudadela 1007 1 \N \N \N \N 1 \N \N mdiaz +1087 2025-05-15 15:43:26.379214+00 2025-05-15 15:43:26.379224+00 f t Martina Farsiano martifarisano@gmail.com 91136861030 \N Estomba 2837 1D \N FEMALE 2001-02-24 -34.5635498 -58.4773974 45 \N \N mfarsiano +1088 2025-05-15 15:48:04.182473+00 2025-05-15 15:48:04.182497+00 f t Invitado Amar invitado-1747324073159@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-192 +1089 2025-05-15 15:49:26.632305+00 2025-05-15 15:49:26.632319+00 f t Invitado Amar invitado-1747324164587@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-193 +1090 2025-05-15 16:03:27.801545+00 2025-05-15 16:03:27.801559+00 f t Invitado Amar invitado-1747325007255@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-194 +1091 2025-05-15 16:25:51.047988+00 2025-05-15 16:25:51.047998+00 f t Invitado Amar invitado-1747326350676@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-195 +1092 2025-05-15 16:39:20.684722+00 2025-05-15 16:39:20.684734+00 f t Invitado Amar invitado-1747327160244@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-196 +1093 2025-05-15 16:41:44.407261+00 2025-05-15 16:41:44.407272+00 f t Invitado Amar invitado-1747327302909@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-197 +1094 2025-05-15 16:41:53.079271+00 2025-05-15 16:41:53.079286+00 f t test test javiertest@gmail.com +54 9 11 6467 4286 \N test 11 \N \N 39.8306761 -76.9693883 \N \N \N ttest-3 +1095 2025-05-15 17:16:33.238483+00 2025-05-15 17:16:33.238494+00 f t Invitado Amar invitado-1747329453093@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-198 +1096 2025-05-15 17:37:18.989704+00 2025-05-15 17:37:18.989715+00 f t Ana Soloveva a_soloveva@me.com 91126772259 \N Riobamba 739 dpto 15 \N FEMALE 1986-07-22 -34.6004306 -58.3941899 \N \N \N asoloveva +1097 2025-05-15 17:38:20.454376+00 2025-05-15 17:38:20.454386+00 f t Paula Segarra pausmam1@gmail.com +54 9 11 2233 1849 \N Av Callao 1230 10A \N FEMALE \N -34.5944788 -58.3932868 9 \N \N psegarra +1099 2025-05-15 18:22:47.777447+00 2025-05-15 18:22:47.777459+00 f t Invitado Amar invitado-1747333367888@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-199 +1101 2025-05-15 19:17:04.027897+00 2025-05-15 19:17:04.027911+00 f t Invitado Amar invitado-1747336624321@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-200 +1102 2025-05-15 19:53:17.76953+00 2025-05-15 19:53:17.769544+00 f t Invitado Amar invitado-1747338797302@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-201 +1103 2025-05-15 19:53:49.787506+00 2025-05-15 19:53:49.787516+00 t t Hernan Brunacci hbrunacci@odonapp.com 1131107990 \N Jaramillo 4536 aa \N MALE 1980-04-14 -34.5582465 -58.4881976 112 \N \N hbrunacci-3 +1104 2025-05-15 20:15:34.41853+00 2025-05-15 20:15:34.418542+00 f t Invitado Amar invitado-1747340133096@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-202 +1105 2025-05-15 20:16:54.707247+00 2025-05-15 20:16:54.707262+00 f t Invitado Amar invitado-1747340213636@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-203 +1106 2025-05-15 21:05:01.65721+00 2025-05-15 21:05:01.657223+00 f t Invitado Amar invitado-1747343099828@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-204 +1107 2025-05-15 21:14:43.331575+00 2025-05-15 21:14:43.331587+00 f t Invitado Amar invitado-1747343682542@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-205 +1108 2025-05-15 21:42:04.628989+00 2025-05-15 21:42:04.628999+00 f t Invitado Amar invitado-1747345324178@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-206 +1110 2025-05-15 22:21:44.245495+00 2025-05-15 22:21:44.245505+00 f t Agustina Villamayor villamayor.aa@gmail.com +5491131130507 \N Colombres 370 3C \N FEMALE 1999-07-05 -34.6169775 -58.4182056 23 \N \N avillamayor +1111 2025-05-15 22:37:52.100109+00 2025-05-15 22:37:52.100122+00 f t Invitado Amar invitado-1747348671579@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-207 +1112 2025-05-15 22:57:32.173093+00 2025-05-15 22:57:32.173102+00 f t Invitado Amar invitado-1747349851962@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-208 +1113 2025-05-15 23:00:47.759765+00 2025-05-15 23:00:47.759778+00 f t Invitado Amar invitado-1747350047489@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-209 +1114 2025-05-15 23:50:18.610355+00 2025-05-15 23:50:18.610366+00 f t Invitado Amar invitado-1747353018239@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-210 +1115 2025-05-16 00:10:09.706873+00 2025-05-16 00:10:09.706884+00 f t Invitado Amar invitado-1747354208578@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-211 +1116 2025-05-16 00:30:12.426813+00 2025-05-16 00:30:12.426827+00 f t Invitado Amar invitado-1747355412170@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-212 +1117 2025-05-16 02:27:30.029458+00 2025-05-16 02:27:30.029473+00 f t Invitado Amar invitado-1747362449223@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-213 +1118 2025-05-16 02:36:39.718239+00 2025-05-16 02:36:39.718254+00 f t Invitado Amar invitado-1747362981527@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-214 +1119 2025-05-16 03:10:27.859428+00 2025-05-16 03:10:27.85947+00 f t Invitado Amar invitado-1747365027380@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-215 +1120 2025-05-16 08:08:58.958623+00 2025-05-16 08:08:58.958634+00 f t Alba Oropeza albamacarenaoropeza@gmail.com +54 11 3006 2400 \N Virrey loreto 2458 3a \N \N -34.5682163 -58.4504681 \N \N \N aoropeza +1121 2025-05-16 09:33:55.431263+00 2025-05-16 09:33:55.431277+00 f t Invitado Amar invitado-1747388034019@example.com 55555555 \N \N \N \N \N 57 \N \N iamar-216 +1122 2025-05-16 09:55:44.770452+00 2025-05-16 09:55:44.770461+00 f t Invitado Amar invitado-1747389344323@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-217 +1123 2025-05-16 10:22:11.676028+00 2025-05-16 10:22:11.676037+00 f t Invitado Amar invitado-1747390931160@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-218 +1124 2025-05-16 11:27:43.418711+00 2025-05-16 11:27:43.41872+00 f t Invitado Amar invitado-1747394862941@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-219 +1125 2025-05-16 11:46:15.104026+00 2025-05-16 11:46:15.104036+00 f t Invitado Amar invitado-1747395974748@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-220 +1126 2025-05-16 12:53:14.24859+00 2025-05-16 12:53:14.2486+00 f t Invitado Amar invitado-1747399993827@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-221 +1127 2025-05-16 12:55:23.923837+00 2025-05-16 12:55:23.923846+00 f t Invitado Amar invitado-1747400125161@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-222 +1128 2025-05-16 13:08:51.385792+00 2025-05-16 13:08:51.385804+00 f t Invitado Amar invitado-1747400932477@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-223 +1129 2025-05-16 13:11:41.499833+00 2025-05-16 13:11:41.499846+00 f t Invitado Amar invitado-1747401103001@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-224 +1130 2025-05-16 13:43:43.101281+00 2025-05-16 13:43:43.101295+00 f t Invitado Amar invitado-1747403022574@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-225 +1131 2025-05-16 14:04:20.442163+00 2025-05-16 14:04:20.442175+00 f t Invitado Amar invitado-1747404259260@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-226 +1132 2025-05-16 14:42:15.139847+00 2025-05-16 14:42:15.139856+00 f t Invitado Amar invitado-1747406534173@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-227 +1133 2025-05-16 14:43:43.031932+00 2025-05-16 14:43:43.031941+00 f t Invitado Amar invitado-1747406622751@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-228 +1134 2025-05-16 14:51:59.779726+00 2025-05-16 14:51:59.779735+00 f t Invitado Amar invitado-1747407118482@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-229 +1135 2025-05-16 15:43:44.810385+00 2025-05-16 15:43:44.810396+00 f t Invitado Amar invitado-1747410222885@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-230 +1136 2025-05-16 16:08:17.598644+00 2025-05-16 16:08:17.598652+00 f t Roxana Bordon bordonroxana@hotmail.com 91162057368 \N Marta Lynch 551 piso 10 sol \N FEMALE 1984-05-07 -34.6102177 -58.3609747 30 965 \N rbordon +1137 2025-05-16 16:14:36.989741+00 2025-05-16 16:14:36.989755+00 f t Invitado Amar invitado-1747412076570@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-231 +1138 2025-05-16 16:15:22.90091+00 2025-05-16 16:15:22.900924+00 f t Invitado Amar invitado-1747412122031@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-232 +1139 2025-05-16 17:09:50.166123+00 2025-05-16 17:09:50.166134+00 f t Invitado Amar invitado-1747415389353@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-233 +1140 2025-05-16 17:20:58.773604+00 2025-05-16 17:20:58.773617+00 f t Estefania Schneider schneider.estefania@gmail.com +54 41609835 \N Mariscal solano lopez 3376 5A \N FEMALE \N -34.5974214 -58.5018099 21 966 \N eschneider +1141 2025-05-16 17:34:34.2275+00 2025-05-16 17:34:34.227511+00 f t Invitado Amar invitado-1747416873765@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-234 +1142 2025-05-16 17:45:46.422906+00 2025-05-16 17:45:46.422919+00 f t Invitado Amar invitado-1747417545820@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-235 +1143 2025-05-16 17:48:32.984762+00 2025-05-16 17:48:32.98477+00 f t Invitado Amar invitado-1747417712516@example.com 55555555 \N \N \N \N \N 47 \N \N iamar-236 +1144 2025-05-16 17:59:07.995291+00 2025-05-16 17:59:07.995299+00 f t Invitado Amar invitado-1747418347568@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-237 +1145 2025-05-16 18:08:39.672386+00 2025-05-16 18:08:39.672398+00 f t Invitado Amar invitado-1747418918285@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-238 +1146 2025-05-16 18:16:05.73957+00 2025-05-16 18:16:05.73958+00 f t Invitado Amar invitado-1747419367209@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-239 +1147 2025-05-16 18:48:34.631814+00 2025-05-16 18:48:34.631822+00 f t Prueba Prueba Prueba123@test.com +54 11 1111 1111 \N Falsa 123 1 A \N \N 42.1838369 12.6559681 \N \N \N pprueba +1148 2025-05-16 19:50:08.799023+00 2025-05-16 19:50:08.799034+00 f t Invitado Amar invitado-1747425008325@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-240 +1149 2025-05-16 20:25:20.632357+00 2025-05-16 20:25:20.632368+00 f t Invitado Amar invitado-1747427120198@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-241 +1150 2025-05-16 20:26:03.219271+00 2025-05-16 20:26:03.219284+00 f t Invitado Amar invitado-1747427161853@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-242 +1151 2025-05-16 20:28:35.72752+00 2025-05-16 20:28:35.727529+00 f t Invitado Amar invitado-1747427315252@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-243 +1152 2025-05-16 21:10:58.328235+00 2025-05-16 21:10:58.328248+00 f t Invitado Amar invitado-1747429857770@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-244 +1153 2025-05-16 21:41:50.00699+00 2025-05-16 21:41:50.007003+00 f t Invitado Amar invitado-1747431704771@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-245 +1154 2025-05-16 21:43:52.893283+00 2025-05-16 21:43:52.893292+00 f t Invitado Amar invitado-1747431832228@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-246 +1155 2025-05-16 21:50:38.597364+00 2025-05-16 21:50:38.597376+00 f t Invitado Amar invitado-1747432238185@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-247 +1156 2025-05-16 23:28:40.852218+00 2025-05-16 23:28:40.852226+00 f t María Amor Ferrón mariahamor@gmail.com +5491144042459 \N Perú 327 - 7A, Monserrat, CABA (en breve me mudo a Congreso) \N FEMALE 1981-04-21 -34.6118791 -58.3748029 49 967 \N mferron +1157 2025-05-16 23:47:45.713267+00 2025-05-16 23:47:45.713279+00 f t Invitado Amar invitado-1747439263610@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-248 +1158 2025-05-16 23:48:42.536227+00 2025-05-16 23:48:42.536239+00 f t Invitado Amar invitado-1747439322621@example.com 55555555 \N \N \N \N \N 54 \N \N iamar-249 +1159 2025-05-17 00:42:43.522391+00 2025-05-17 00:42:43.522403+00 f t Invitado Amar invitado-1747442562631@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-250 +1160 2025-05-17 00:43:06.47143+00 2025-05-17 00:43:06.47144+00 f t Invitado Amar invitado-1747442584853@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-251 +1161 2025-05-17 01:59:57.415086+00 2025-05-17 01:59:57.415096+00 f t Invitado Amar invitado-1747447196452@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-252 +1162 2025-05-17 02:03:37.028584+00 2025-05-17 02:03:37.028597+00 f t Invitado Amar invitado-1747447416327@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-253 +1163 2025-05-17 02:13:24.475757+00 2025-05-17 02:13:24.475767+00 f t Invitado Amar invitado-1747448003729@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-254 +1164 2025-05-17 02:42:57.518929+00 2025-05-17 02:42:57.518942+00 f t Cecilia Figueroa cecifigueroa03@gmail.com +541138789406 \N Mendez de andes 1793 1E \N FEMALE \N -34.6991376 -58.6273017 14 \N \N cfigueroa +1165 2025-05-17 02:45:18.728297+00 2025-05-17 02:45:18.72831+00 f t Invitado Amar invitado-1747449918214@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-255 +1166 2025-05-17 03:43:00.553239+00 2025-05-17 03:43:00.553249+00 f t Invitado Amar invitado-1747453379414@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-256 +1167 2025-05-17 03:51:56.66594+00 2025-05-17 03:51:56.665952+00 f t Invitado Amar invitado-1747453916312@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-257 +1168 2025-05-17 08:36:16.962262+00 2025-05-17 08:36:16.962276+00 f t Invitado Amar invitado-1747470971837@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-258 +1169 2025-05-17 10:58:39.67847+00 2025-05-17 10:58:39.67848+00 f t Invitado Amar invitado-1747479518836@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-259 +1170 2025-05-17 11:06:15.792032+00 2025-05-17 11:06:15.792041+00 f t Invitado Amar invitado-1747479975393@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-260 +1171 2025-05-17 11:36:47.141996+00 2025-05-17 11:36:47.142008+00 f t Invitado Amar invitado-1747481806549@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-261 +1172 2025-05-17 11:57:35.458772+00 2025-05-17 11:57:35.458783+00 f t Invitado Amar invitado-1747483055104@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-262 +1173 2025-05-17 11:59:46.883678+00 2025-05-17 11:59:46.883691+00 f t Invitado Amar invitado-1747483186720@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-263 +1174 2025-05-17 13:33:55.88796+00 2025-05-17 13:33:55.88797+00 f t Catalina Fernandez ecatyfernandez@gmail.com +54 11 2166 0294 \N Bragado 5437 casa \N \N \N -34.6494741 -58.4981982 1 969 \N cfernandez +1175 2025-05-17 13:46:20.398046+00 2025-05-17 13:46:20.398059+00 f t Invitado Amar invitado-1747489580404@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-264 +1176 2025-05-17 13:52:57.271745+00 2025-05-17 13:52:57.271754+00 f t Sebastian Olmos olmossebastian31@gmail.com +54 11 5746 6636 \N Pedro giachino 5265 \N \N -32.7864837 -60.8999698 \N \N \N solmos +1177 2025-05-17 14:30:10.880504+00 2025-05-17 14:30:10.880513+00 f t Invitado Amar invitado-1747492210266@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-265 +1178 2025-05-17 14:53:36.793688+00 2025-05-17 14:53:36.793699+00 f t Invitado Amar invitado-1747493616662@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-266 +1179 2025-05-17 15:47:16.436051+00 2025-05-17 15:47:16.436066+00 f t Invitado Amar invitado-1747496834306@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-267 +1180 2025-05-17 15:53:04.460286+00 2025-05-17 15:53:04.460299+00 f t Invitado Amar invitado-1747497182838@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-268 +1181 2025-05-17 16:03:18.207308+00 2025-05-17 16:03:18.208042+00 f t Invitado Amar invitado-1747497796914@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-269 +1182 2025-05-17 16:11:06.817421+00 2025-05-17 16:11:06.817432+00 f t Invitado Amar invitado-1747498265534@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-270 +1183 2025-05-17 17:18:59.338603+00 2025-05-17 17:18:59.338615+00 f t Invitado Amar invitado-1747502338650@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-271 +1184 2025-05-17 18:04:57.551096+00 2025-05-17 18:04:57.551112+00 f t Invitado Amar invitado-1747505095669@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-272 +1185 2025-05-17 19:24:28.375862+00 2025-05-17 19:24:28.375874+00 f t Invitado Amar invitado-1747509867953@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-273 +1186 2025-05-17 19:25:34.059403+00 2025-05-17 19:25:34.059418+00 f t Invitado Amar invitado-1747509932797@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-274 +1187 2025-05-17 19:34:14.640007+00 2025-05-17 19:34:14.640016+00 f t Agustina Del Sole delsoleagustina@gmail.com +54 11 4179 4635 \N Asunción 2969 Llamar antes, no hay timbre \N \N \N \N \N \N \N adelsole +1188 2025-05-17 19:40:47.929537+00 2025-05-17 19:40:47.929549+00 f t Invitado Amar invitado-1747510848951@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-275 +1189 2025-05-17 19:53:06.365194+00 2025-05-17 19:53:06.365207+00 f t Invitado Amar invitado-1747511585170@example.com 55555555 \N \N \N \N \N 92 \N \N iamar-276 +1190 2025-05-17 19:55:05.222674+00 2025-05-17 19:55:05.222688+00 f t Invitado Amar invitado-1747511703842@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-277 +1191 2025-05-17 20:29:48.897906+00 2025-05-17 20:29:48.897921+00 f t Invitado Amar invitado-1747513787565@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-278 +1192 2025-05-17 21:07:34.767331+00 2025-05-17 21:07:34.767339+00 f t Invitado Amar invitado-1747516053341@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-279 +1193 2025-05-17 21:07:57.0464+00 2025-05-17 21:07:57.046409+00 f t Carolina Lopez psilopezcarolina@gmail.com +5491131959120 \N Loyola 430 \N \N FEMALE 1977-12-01 -34.5968345 -58.4348291 26 970 \N clopez +1194 2025-05-17 21:20:13.265611+00 2025-05-17 21:20:13.265622+00 f t María Susana Mercado colo_s06@hotmail.com +5491140226846 \N Baigorria 3067 7 D \N FEMALE 1968-06-05 44.9379672 7.5400398 17 971 \N mmercado +1195 2025-05-17 21:33:45.752317+00 2025-05-17 21:33:45.752327+00 f t Invitado Amar invitado-1747517624198@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-280 +1196 2025-05-17 22:47:39.589561+00 2025-05-17 22:47:39.589576+00 f t Invitado Amar invitado-1747522058826@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-281 +1197 2025-05-17 23:29:16.671176+00 2025-05-17 23:29:16.671186+00 f t Invitado Amar invitado-1747524556270@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-282 +1198 2025-05-17 23:46:40.134231+00 2025-05-17 23:46:40.134246+00 f t Invitado Amar invitado-1747525598624@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-283 +1199 2025-05-17 23:52:20.356851+00 2025-05-17 23:52:20.356865+00 f t Invitado Amar invitado-1747525943664@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-284 +1200 2025-05-17 23:58:18.5022+00 2025-05-17 23:58:18.502209+00 f t Invitado Amar invitado-1747526297717@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-285 +1201 2025-05-18 00:23:44.347167+00 2025-05-18 00:23:44.347176+00 f t Bautista Felipetta bautifelipetta@gmail.com +54 9 11 5005 1301 \N O’Higgins, 335 Portón negro. \N \N \N -34.2816351 -70.83569 77 974 \N bfelipetta +1202 2025-05-18 00:28:02.009175+00 2025-05-18 00:28:02.009186+00 f t Invitado Amar invitado-1747528081456@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-286 +1203 2025-05-18 00:32:46.903913+00 2025-05-18 00:32:46.903923+00 f t Invitado Amar invitado-1747528365905@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-287 +1204 2025-05-18 00:34:07.813367+00 2025-05-18 00:34:07.813379+00 f t Invitado Amar invitado-1747528446728@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-288 +1205 2025-05-18 00:38:04.625396+00 2025-05-18 00:38:04.625408+00 f t Invitado Amar invitado-1747528684197@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-289 +1206 2025-05-18 01:01:10.618037+00 2025-05-18 01:01:10.618051+00 f t Javier Lewin lewinjavier@gmail.com +54 11 5930 2149 \N San José 28 3 dpto 6 \N \N -34.6645571 -56.2179504 \N \N \N jlewin +1207 2025-05-18 01:15:11.700365+00 2025-05-18 01:15:11.700375+00 f t Claudia Cernadas cvcernadas@gmail.com +54 11 5055 2199 \N San José 28 3 dpto 6 \N \N \N -34.6645571 -56.2179504 49 \N \N ccernadas +1208 2025-05-18 01:29:58.393808+00 2025-05-18 01:29:58.393817+00 f t Invitado Amar invitado-1747531795615@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-290 +1209 2025-05-18 01:33:13.786285+00 2025-05-18 01:33:13.786295+00 f t Invitado Amar invitado-1747531993284@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-291 +1210 2025-05-18 01:47:14.736685+00 2025-05-18 01:47:14.736697+00 f t Invitado Amar invitado-1747532834081@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-292 +1211 2025-05-18 02:10:08.833727+00 2025-05-18 02:10:08.833741+00 f t Invitado Amar invitado-1747534208456@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-293 +1212 2025-05-18 03:18:34.041127+00 2025-05-18 03:18:34.041137+00 f t Invitado Amar invitado-1747538313072@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-294 +1213 2025-05-18 03:55:25.980326+00 2025-05-18 03:55:25.980338+00 f t Invitado Amar invitado-1747540525993@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-295 +1214 2025-05-18 04:08:05.056302+00 2025-05-18 04:08:05.056314+00 f t Invitado Amar invitado-1747541283482@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-296 +1215 2025-05-18 04:08:47.939233+00 2025-05-18 04:08:47.939242+00 f t Invitado Amar invitado-1747541327044@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-297 +1216 2025-05-18 04:52:47.968702+00 2025-05-18 04:52:47.968716+00 f t Invitado Amar invitado-1747543967381@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-298 +1217 2025-05-18 05:13:18.738201+00 2025-05-18 05:13:18.738222+00 f t Invitado Amar invitado-1747545199052@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-299 +1218 2025-05-18 05:27:42.975513+00 2025-05-18 05:27:42.975523+00 f t Invitado Amar invitado-1747546063209@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-300 +1219 2025-05-18 05:33:05.908143+00 2025-05-18 05:33:05.908153+00 f t Invitado Amar invitado-1747546385048@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-301 +1220 2025-05-18 09:52:46.720687+00 2025-05-18 09:52:46.720701+00 f t Invitado Amar invitado-1747561959179@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-302 +1221 2025-05-18 11:13:17.674379+00 2025-05-18 11:13:17.674391+00 f t Mariela Gonzalez romagon6@hotmail.com +54 11 3596 2786 \N Av Rivadavia 1135962786 11/76 \N FEMALE \N -34.6106914 -58.413829 18 \N \N mgonzalez +1222 2025-05-18 11:36:01.623645+00 2025-05-18 11:36:01.623657+00 f t Invitado Amar invitado-1747568161211@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-303 +1223 2025-05-18 11:47:53.108787+00 2025-05-18 11:47:53.1088+00 f t Invitado Amar invitado-1747568871425@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-304 +1224 2025-05-18 12:07:13.569612+00 2025-05-18 12:07:13.569625+00 f t Invitado Amar invitado-1747570032932@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-305 +1225 2025-05-18 12:29:05.139059+00 2025-05-18 12:29:05.139071+00 f t Invitado Amar invitado-1747571343718@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-306 +1226 2025-05-18 12:39:23.789447+00 2025-05-18 12:39:23.78946+00 f t Lucia Pini luciapini1977@gmail.com +54 11 3147 3157 Estados Unidos 2833 Estados Unidos 2833 \N \N \N 34.0625279 -112.821569 4 972 \N lpini +1227 2025-05-18 13:10:40.942407+00 2025-05-18 13:10:40.942417+00 f t Paula Romina Flores pauroflor@hotmail.com +54 11 5327 9741 \N Paraguay 2589 4D \N \N -34.8827398 -56.195052 \N \N \N pflores +1228 2025-05-18 13:19:28.573558+00 2025-05-18 13:19:28.573571+00 f t Invitado Amar invitado-1747574456931@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-307 +1229 2025-05-18 14:01:27.668732+00 2025-05-18 14:01:27.668742+00 f t Invitado Amar invitado-1747576886995@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-308 +1230 2025-05-18 14:13:22.041609+00 2025-05-18 14:13:22.041621+00 f t Invitado Amar invitado-1747577601499@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-309 +1231 2025-05-18 14:20:12.454924+00 2025-05-18 14:20:12.454933+00 f t Invitado Amar invitado-1747578011937@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-310 +1232 2025-05-18 14:22:24.057928+00 2025-05-18 14:22:24.05794+00 f t Invitado Amar invitado-1747578143441@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-311 +1233 2025-05-18 14:26:07.695628+00 2025-05-18 14:26:07.695643+00 f t Invitado Amar invitado-1747578366252@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-312 +1234 2025-05-18 14:30:36.661331+00 2025-05-18 14:30:36.661341+00 f t Invitado Amar invitado-1747578635643@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-313 +1235 2025-05-18 14:36:24.882333+00 2025-05-18 14:36:24.882347+00 f t Invitado Amar invitado-1747579083945@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-314 +1236 2025-05-18 15:08:49.391786+00 2025-05-18 15:08:49.391798+00 f t Eliana Mattera elianamattera77@gmail.com +54 11 3428 6387 \N 25 de mayo 647 \N \N FEMALE \N \N \N 70 \N \N emattera +1237 2025-05-18 15:52:04.524944+00 2025-05-18 15:52:04.524957+00 f t Invitado Amar invitado-1747583524028@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-315 +1238 2025-05-18 16:16:05.396703+00 2025-05-18 16:16:05.396718+00 f t Invitado Amar invitado-1747584964796@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-316 +1239 2025-05-18 16:17:39.759031+00 2025-05-18 16:17:39.759043+00 f t Geraldine Alali geraldinealali@gmail.com +54 11 6718 5372 \N Arevalo 2088 6to 602 \N FEMALE \N -34.5777582 -58.4368768 1 975 \N galali +1240 2025-05-18 17:04:23.087987+00 2025-05-18 17:04:23.087997+00 f t Stephanie No soion.mdp.no@gmail.com +54 11 2469 4753 \N Avenida avellaneda 1071 7C \N \N \N -34.6203421 -58.4536572 1 \N \N sno +1241 2025-05-18 17:12:19.793743+00 2025-05-18 17:12:19.793753+00 f t Invitado Amar invitado-1747588339945@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-317 +1242 2025-05-18 18:10:49.99387+00 2025-05-18 18:10:49.993882+00 f t Invitado Amar invitado-1747591849513@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-318 +1243 2025-05-18 18:34:05.368121+00 2025-05-18 18:34:05.368134+00 f t Invitado Amar invitado-1747593243569@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-319 +1244 2025-05-18 19:16:46.271858+00 2025-05-18 19:16:46.271869+00 f t Invitado Amar invitado-1747595811146@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-320 +1245 2025-05-18 19:32:05.91969+00 2025-05-18 19:32:05.919704+00 f t Invitado Amar invitado-1747596725786@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-321 +1246 2025-05-18 20:15:30.412362+00 2025-05-18 20:15:30.41237+00 f t Invitado Amar invitado-1747599329938@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-322 +1247 2025-05-18 20:16:37.54958+00 2025-05-18 20:16:37.549589+00 f t Invitado Amar invitado-1747599396786@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-323 +1248 2025-05-18 20:22:32.331154+00 2025-05-18 20:22:32.331162+00 f t Jorgelina Siritto andreasiritto@gmail.com +54 11 4029 4581 \N Pichincha 2782 Casa \N FEMALE \N -34.7131454 -58.3662159 70 973 \N jsiritto +1299 2025-05-20 00:15:04.058623+00 2025-05-20 00:15:04.058637+00 f t Invitado Amar invitado-1747700102506@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-366 +1249 2025-05-18 21:16:24.192882+00 2025-05-18 21:16:24.192892+00 f t Soledad Bidart soledad_bidart@hotmail.com +54 11 6303 9125 \N Av salvador María del Carril 4735 Pb 3 \N \N \N -34.6047965 -58.5212806 21 977 \N sbidart +1250 2025-05-18 21:43:24.547944+00 2025-05-18 21:43:24.547957+00 f t Invitado Amar invitado-1747604603805@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-324 +1251 2025-05-18 21:49:47.857921+00 2025-05-18 21:49:47.857928+00 f t Alexandra guzman guzmanalemanalexandra@gmail.com 573138728298 \N Echeverria 2182 piso 1 apto 4 \N FEMALE 1971-01-24 -34.5617778 -58.4536689 3 976 \N aguzman +1252 2025-05-18 21:55:10.21489+00 2025-05-18 21:55:10.214903+00 f t Invitado Amar invitado-1747605310436@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-325 +1253 2025-05-18 23:32:12.50118+00 2025-05-18 23:32:12.50119+00 f t Invitado Amar invitado-1747611132393@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-326 +1254 2025-05-19 00:52:56.894023+00 2025-05-19 00:52:56.894034+00 f t Invitado Amar invitado-1747615975685@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-327 +1255 2025-05-19 01:40:09.429118+00 2025-05-19 01:40:09.429139+00 f t Invitado Amar invitado-1747618808586@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-328 +1256 2025-05-19 02:24:24.776822+00 2025-05-19 02:24:24.776836+00 f t Invitado Amar invitado-1747621463361@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-329 +1257 2025-05-19 03:01:24.123149+00 2025-05-19 03:01:24.12316+00 f t Johanna Herrera joh_copernico@hotmail.com +54 11 6199 1490 \N . . . \N \N \N \N \N \N \N jherrera +1258 2025-05-19 04:13:08.852965+00 2025-05-19 04:13:08.852975+00 f t Invitado Amar invitado-1747627988411@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-330 +1259 2025-05-19 05:35:08.043288+00 2025-05-19 05:35:08.04331+00 f t Invitado Amar invitado-1747632907681@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-331 +1260 2025-05-19 07:01:47.691414+00 2025-05-19 07:01:47.69143+00 f t Invitado Amar invitado-1747638107526@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-332 +1261 2025-05-19 07:38:58.145232+00 2025-05-19 07:38:58.145242+00 f t Invitado Amar invitado-1747640336958@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-333 +1262 2025-05-19 09:05:43.599582+00 2025-05-19 09:05:43.599592+00 f t Invitado Amar invitado-1747645546718@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-334 +1263 2025-05-19 09:15:48.799603+00 2025-05-19 09:15:48.799613+00 f t Invitado Amar invitado-1747646148478@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-335 +1264 2025-05-19 10:52:38.125216+00 2025-05-19 10:52:38.12523+00 f t Invitado Amar invitado-1747651963706@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-336 +1265 2025-05-19 11:41:54.28057+00 2025-05-19 11:41:54.280579+00 f t Invitado Amar invitado-1747654915139@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-337 +1266 2025-05-19 12:39:38.610784+00 2025-05-19 12:39:38.610794+00 f t Invitado Amar invitado-1747658378322@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-338 +1267 2025-05-19 14:20:41.953591+00 2025-05-19 14:20:41.9536+00 f t Invitado Amar invitado-1747664442856@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-339 +1268 2025-05-19 14:22:24.865029+00 2025-05-19 14:22:24.865038+00 f t Candelaria Schuppisser sch.cndelaria@gmail.com +54 11 3477 4229 \N Chacabuco 350 \N \N FEMALE \N -36.6033617 -72.0841342 22 \N \N cschuppisser +1269 2025-05-19 14:36:27.77999+00 2025-05-19 14:36:27.78+00 f t Invitado Amar invitado-1747665387631@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-340 +1270 2025-05-19 15:15:48.955499+00 2025-05-19 15:15:48.955509+00 f t Invitado Amar invitado-1747667748556@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-341 +1271 2025-05-19 15:49:42.202977+00 2025-05-19 15:49:42.202987+00 f t Marina splausky marinasplausky@gmail.com 91160424658 \N Pringles 1449 \N \N FEMALE \N -34.5952351 -58.4241469 1 978 \N msplausky +1272 2025-05-19 15:51:53.03424+00 2025-05-19 15:51:53.03425+00 f t Invitado Amar invitado-1747669912017@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-342 +1273 2025-05-19 15:55:43.279805+00 2025-05-19 15:55:43.279818+00 f t Invitado Amar invitado-1747670142341@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-343 +1274 2025-05-19 16:10:01.180643+00 2025-05-19 16:10:01.181701+00 f t Invitado Amar invitado-1747671000688@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-344 +1275 2025-05-19 16:41:47.006933+00 2025-05-19 16:41:47.006943+00 f t Cecilia Alejandra Risso crisso9315@gmail.com +5491168605257 \N uriburu 581 PB B \N FEMALE 1993-01-13 -34.60247 -58.3983879 18 979 \N crisso +1276 2025-05-19 16:49:48.559231+00 2025-05-19 16:49:48.55924+00 f t Invitado Amar invitado-1747673388995@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-345 +1277 2025-05-19 16:50:59.445115+00 2025-05-19 16:50:59.445126+00 f t Invitado Amar invitado-1747673460081@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-346 +1278 2025-05-19 17:02:26.513216+00 2025-05-19 17:02:26.513233+00 f t Invitado Amar invitado-1747674144547@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-347 +1279 2025-05-19 17:04:33.054522+00 2025-05-19 17:04:33.054534+00 f t Invitado Amar invitado-1747674272898@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-348 +1280 2025-05-19 17:17:31.833554+00 2025-05-19 17:17:31.833564+00 f t Catalina Fernandez Ecatyfernandez@gmail.com +54 11 2166 0294 \N Bragado 5437 \N \N -34.6494741 -58.4981982 \N \N \N cfernandez-2 +1281 2025-05-19 17:49:53.104154+00 2025-05-19 17:49:53.104164+00 f t Invitado Amar invitado-1747676993246@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-349 +1282 2025-05-19 18:17:01.870795+00 2025-05-19 18:17:01.87081+00 f t Invitado Amar invitado-1747678677430@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-350 +1283 2025-05-19 18:19:02.761064+00 2025-05-19 18:19:02.761078+00 f t Invitado Amar invitado-1747678742408@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-351 +1284 2025-05-19 18:36:05.445179+00 2025-05-19 18:36:05.445192+00 f t Invitado Amar invitado-1747679765060@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-352 +1285 2025-05-19 18:43:48.495801+00 2025-05-19 18:43:48.495811+00 f t Invitado Amar invitado-1747680229891@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-353 +1286 2025-05-19 18:45:23.421789+00 2025-05-19 18:45:23.421802+00 f t Invitado Amar invitado-1747680322976@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-354 +1287 2025-05-19 19:27:16.025937+00 2025-05-19 19:27:16.025948+00 f t Invitado Amar invitado-1747682835132@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-355 +1288 2025-05-19 19:34:23.736855+00 2025-05-19 19:34:23.736868+00 f t Invitado Amar invitado-1747683264844@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-356 +1289 2025-05-19 19:58:50.781416+00 2025-05-19 19:58:50.781426+00 f t Invitado Amar invitado-1747684730440@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-357 +1290 2025-05-19 20:14:06.288398+00 2025-05-19 20:14:06.288413+00 f t Invitado Amar invitado-1747685644247@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-358 +1291 2025-05-19 20:18:02.851417+00 2025-05-19 20:18:02.851429+00 f t Invitado Amar invitado-1747685882202@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-359 +1292 2025-05-19 20:19:25.479136+00 2025-05-19 20:19:25.479147+00 f t Invitado Amar invitado-1747685965048@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-360 +1293 2025-05-19 20:19:50.45531+00 2025-05-19 20:19:50.45533+00 f t Invitado Amar invitado-1747685990106@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-361 +1294 2025-05-19 20:28:30.952208+00 2025-05-19 20:28:30.952218+00 f t Invitado Amar invitado-1747686509158@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-362 +1295 2025-05-19 20:33:21.157889+00 2025-05-19 20:33:21.157901+00 f t Invitado Amar invitado-1747686800023@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-363 +1296 2025-05-19 20:49:27.423577+00 2025-05-19 20:49:27.423589+00 f t Barbara Russo brussoaulet@gmail.com 91134000135 \N arcos 1440 piso 20 dpto 08 \N FEMALE 1994-02-23 -34.5664417 -58.4483318 3 980 \N brusso +1297 2025-05-19 22:34:13.916147+00 2025-05-19 22:34:13.91616+00 f t Invitado Amar invitado-1747694053035@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-364 +1298 2025-05-19 22:52:53.707587+00 2025-05-19 22:52:53.707601+00 f t Invitado Amar invitado-1747695173213@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-365 +1300 2025-05-20 00:41:44.136979+00 2025-05-20 00:41:44.136991+00 f t Invitado Amar invitado-1747701703824@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-367 +1301 2025-05-20 01:35:26.474287+00 2025-05-20 01:35:26.474297+00 f t Invitado Amar invitado-1747704925780@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-368 +1302 2025-05-20 02:22:57.18166+00 2025-05-20 02:22:57.181669+00 f t Invitado Amar invitado-1747707776720@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-369 +1303 2025-05-20 03:18:49.957365+00 2025-05-20 03:18:49.957375+00 f t Invitado Amar invitado-1747711130095@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-370 +1304 2025-05-20 03:19:44.960043+00 2025-05-20 03:19:44.960051+00 f t Invitado Amar invitado-1747711185604@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-371 +1305 2025-05-20 03:20:04.644859+00 2025-05-20 03:20:04.644875+00 f t Invitado Amar invitado-1747711202383@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-372 +1306 2025-05-20 03:54:50.24351+00 2025-05-20 03:54:50.243545+00 f t Invitado Amar invitado-1747713289244@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-373 +1307 2025-05-20 11:44:30.710963+00 2025-05-20 11:44:30.710972+00 f t Invitado Amar invitado-1747741469864@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-374 +1308 2025-05-20 11:47:38.388106+00 2025-05-20 11:47:38.388117+00 f t Invitado Amar invitado-1747741657782@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-375 +1309 2025-05-20 12:29:58.55951+00 2025-05-20 12:29:58.559519+00 f t Invitado Amar invitado-1747744197171@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-376 +1310 2025-05-20 12:32:05.6537+00 2025-05-20 12:32:05.653709+00 f t Invitado Amar invitado-1747744324425@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-377 +1311 2025-05-20 12:44:38.796172+00 2025-05-20 12:44:38.796181+00 f t Invitado Amar invitado-1747745076775@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-378 +1312 2025-05-20 12:50:03.873146+00 2025-05-20 12:50:03.873161+00 f t Invitado Amar invitado-1747745402176@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-379 +1313 2025-05-20 12:55:40.521649+00 2025-05-20 12:55:40.521658+00 f t Invitado Amar invitado-1747745740050@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-380 +1314 2025-05-20 13:51:48.478094+00 2025-05-20 13:51:48.478102+00 f t Invitado Amar invitado-1747749107750@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-381 +1315 2025-05-20 13:54:56.244894+00 2025-05-20 13:54:56.244903+00 f t Graciela Airaldi gracielaairaldi@hotmail.com +54 11 6951 7077 \N Echeverría 2109 2 A \N \N \N -34.5613067 -58.453243 3 984 \N gairaldi +1316 2025-05-20 14:24:48.355187+00 2025-05-20 14:24:48.355195+00 f t Olga Ines Franco pelucasolga@gmail.com 91149380006 \N Rodriguez peña 36 5I Entre bartolomé mitre y rivadavia \N FEMALE \N -34.6086667 -58.3906654 13 981 \N ofranco +1317 2025-05-20 14:27:37.335511+00 2025-05-20 14:27:37.33552+00 f t Invitado Amar invitado-1747751256091@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-382 +1318 2025-05-20 14:35:43.050701+00 2025-05-20 14:35:43.05071+00 f t Invitado Amar invitado-1747751744626@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-383 +1319 2025-05-20 14:38:54.842853+00 2025-05-20 14:38:54.842865+00 f t Invitado Amar invitado-1747751936375@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-384 +1320 2025-05-20 15:03:09.460522+00 2025-05-20 15:03:09.460529+00 f t Stella Maris Abud estuonda@hotmail.es 5491168293949 \N Crisologo Larralde 2726 2A \N FEMALE \N -34.5507366 -58.4712284 25 982 \N sabud +1321 2025-05-20 15:13:45.743933+00 2025-05-20 15:13:45.743943+00 f t Invitado Amar invitado-1747754025205@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-385 +1322 2025-05-20 15:27:42.080322+00 2025-05-20 15:27:42.080331+00 f t Invitado Amar invitado-1747754861419@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-386 +1323 2025-05-20 15:27:58.984737+00 2025-05-20 15:27:58.984751+00 f t Gabriela Vallone gabivallone@hotmail.com 91159788839 \N Liniers 742 \N \N FEMALE 1991-04-30 -34.6601287 -58.5295102 90 983 \N gvallone +1324 2025-05-20 15:51:08.031463+00 2025-05-20 15:51:08.031473+00 f t Invitado Amar invitado-1747756267682@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-387 +1325 2025-05-20 16:09:41.233537+00 2025-05-20 16:09:41.233546+00 f t Daiana Olivera oliveradaiana@hotmail.com.ar 91133541061 \N Miller 2238 7A No funciona el portero electrico \N FEMALE 1994-01-16 -34.5735334 -58.479322 29 986 \N dolivera +1326 2025-05-20 16:09:47.429577+00 2025-05-20 16:09:47.42959+00 f t Invitado Amar invitado-1747757386878@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-388 +1327 2025-05-20 16:49:29.553043+00 2025-05-20 16:49:29.55305+00 f t Luis Muscilli luermus1964@gmail.com 5491132275969 \N Withe 693 Dpto A \N MALE \N 35.2956971 -89.6299222 16 987 \N lmuscilli +1328 2025-05-20 17:07:25.475983+00 2025-05-20 17:07:25.475992+00 f t Gimena Diaz gimenadiaz13@hotmail.com 91123148237 \N Juana Manzo 740 torre1 27 4 \N FEMALE 1997-06-10 -46.5513303 -71.6076602 30 988 \N gdiaz +1329 2025-05-20 17:13:51.661781+00 2025-05-20 17:13:51.66179+00 f t Invitado Amar invitado-1747761230281@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-389 +1330 2025-05-20 17:37:49.980154+00 2025-05-20 17:37:49.980167+00 f t Nicolas Aulicino nicolasaulicino@gmail.com 91163982869 \N Balcarce 53 entre Palacios y Mosconi \N MALE 1980-12-12 -24.9020842 -60.3314515 22 989 \N naulicino +1331 2025-05-20 17:54:01.416383+00 2025-05-20 17:54:01.416394+00 f t Invitado Amar invitado-1747763640829@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-390 +1332 2025-05-20 18:01:16.068081+00 2025-05-20 18:01:16.068095+00 f t Invitado Amar invitado-1747764075858@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-391 +1333 2025-05-20 18:10:23.362365+00 2025-05-20 18:10:23.36238+00 f t Invitado Amar invitado-1747764622676@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-392 +1334 2025-05-20 18:28:22.31791+00 2025-05-20 18:28:22.317919+00 f t Juan Carlos Rayu juancarlos@gmail.com 91165580928 \N \N \N \N \N MALE \N 44.9379672 7.5400398 34 \N \N jrayu +1335 2025-05-20 18:28:34.937307+00 2025-05-20 18:28:34.937315+00 f t Juan Carlos Rayu rayujuancarlos@gmail.com 91165580928 \N Juan Agustín García 2444 Porteria \N MALE \N 44.9379672 7.5400398 34 990 \N jrayu-2 +1336 2025-05-20 18:40:05.33902+00 2025-05-20 18:40:05.339032+00 f t Invitado Amar invitado-1747766404434@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-393 +1337 2025-05-20 18:41:46.859334+00 2025-05-20 18:41:46.859343+00 f t Ignacio Sabala zabalanacho22@gmail.com 91124742540 \N Soldado Marcelo Toledo 2281 Entre Libertad y Bossi \N MALE 2004-07-21 -34.631023 -58.8017014 154 991 \N isabala +1339 2025-05-20 19:39:40.141389+00 2025-05-20 19:39:40.1414+00 f t Invitado Amar invitado-1747769979536@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-394 +1340 2025-05-20 19:54:26.228851+00 2025-05-20 19:54:26.228863+00 f t Invitado Amar invitado-1747770865795@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-395 +1341 2025-05-20 20:16:37.218219+00 2025-05-20 20:16:37.218232+00 f t Invitado Amar invitado-1747772196211@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-396 +1342 2025-05-20 20:31:28.64266+00 2025-05-20 20:31:28.64267+00 f t Invitado Amar invitado-1747773088346@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-397 +1343 2025-05-20 21:03:38.388588+00 2025-05-20 21:03:38.388596+00 f t Adriana Garay adrianagaray@gmail.com 91164357585 \N Charcas 3882 3b \N FEMALE \N -34.5871245 -58.4186183 1 994 \N agaray +1344 2025-05-20 21:07:36.436323+00 2025-05-20 21:07:36.436331+00 f t Invitado Amar invitado-1747775256137@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-398 +1345 2025-05-20 21:08:12.7687+00 2025-05-20 21:08:12.768712+00 f t Invitado Amar invitado-1747775293885@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-399 +1346 2025-05-20 22:28:28.758348+00 2025-05-20 22:28:28.758359+00 f t Invitado Amar invitado-1747780107295@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-400 +1347 2025-05-20 23:22:22.19473+00 2025-05-20 23:22:22.194738+00 f t Invitado Amar invitado-1747783340457@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-401 +1348 2025-05-20 23:55:44.048895+00 2025-05-20 23:55:44.048906+00 f t Invitado Amar invitado-1747785343240@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-402 +1349 2025-05-21 00:46:10.041483+00 2025-05-21 00:46:10.041495+00 f t Invitado Amar invitado-1747788369193@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-403 +1350 2025-05-21 00:46:54.741642+00 2025-05-21 00:46:54.741655+00 f t Invitado Amar invitado-1747788413936@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-404 +1351 2025-05-21 00:48:05.969648+00 2025-05-21 00:48:05.969657+00 f t Sofía Di Mari dmg.sofi@gmail.com +541134089130 \N Pasaje alpatacal 6415 Pb 1 \N \N \N \N \N 52 1660 \N sdimari +1352 2025-05-21 00:51:57.712659+00 2025-05-21 00:51:57.712669+00 f t Romina Carriquiry rominacarriquiry@gmail.com +5491164207618 \N Loyola 660 \N \N FEMALE 1975-03-21 -34.5947449 -58.4367605 26 995 \N rcarriquiry +1353 2025-05-21 01:18:42.79708+00 2025-05-21 01:18:42.797088+00 f t Invitado Amar invitado-1747790321976@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-405 +1354 2025-05-21 01:38:15.244957+00 2025-05-21 01:38:15.244965+00 f t Invitado Amar invitado-1747791494173@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-406 +1355 2025-05-21 01:39:53.043022+00 2025-05-21 01:39:53.04303+00 f t Invitado Amar invitado-1747791592640@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-407 +1356 2025-05-21 01:41:38.614941+00 2025-05-21 01:41:38.614952+00 f t Invitado Amar invitado-1747791697788@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-408 +1357 2025-05-21 02:47:54.004973+00 2025-05-21 02:47:54.004982+00 f t Invitado Amar invitado-1747795673246@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-409 +1358 2025-05-21 03:47:45.258424+00 2025-05-21 03:47:45.258433+00 f t Invitado Amar invitado-1747799264479@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-410 +1359 2025-05-21 03:48:28.603423+00 2025-05-21 03:48:28.603432+00 f t Invitado Amar invitado-1747799308064@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-411 +1360 2025-05-21 04:02:08.064997+00 2025-05-21 04:02:08.065007+00 f t Invitado Amar invitado-1747800127616@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-412 +1361 2025-05-21 07:29:12.889224+00 2025-05-21 07:29:12.889234+00 f t Invitado Amar invitado-1747812552722@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-413 +1362 2025-05-21 10:13:21.632404+00 2025-05-21 10:13:21.632417+00 f t Invitado Amar invitado-1747822400819@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-414 +1363 2025-05-21 11:17:17.948568+00 2025-05-21 11:17:17.948581+00 f t Invitado Amar invitado-1747826237702@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-415 +1364 2025-05-21 11:39:54.11349+00 2025-05-21 11:39:54.11351+00 f t Invitado Amar invitado-1747827593362@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-416 +1365 2025-05-21 12:33:37.710369+00 2025-05-21 12:33:37.710378+00 f t Invitado Amar invitado-1747830817351@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-417 +1366 2025-05-21 12:38:42.629387+00 2025-05-21 12:38:42.629397+00 f t Invitado Amar invitado-1747831122056@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-418 +1367 2025-05-21 12:45:32.920265+00 2025-05-21 12:45:32.920276+00 f t María sol Sanchez sol_3116@hotmail.com +54 11 3058 3765 \N Av jujuy 1221 4b \N \N -34.6312553 -58.4006455 \N \N \N msanchez +1368 2025-05-21 13:05:35.914598+00 2025-05-21 13:05:35.914606+00 f t Invitado Amar invitado-1747832735538@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-419 +1369 2025-05-21 13:18:07.655286+00 2025-05-21 13:18:07.655299+00 f t Invitado Amar invitado-1747833487229@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-420 +1370 2025-05-21 13:41:36.179919+00 2025-05-21 13:41:36.179932+00 f t Invitado Amar invitado-1747834895750@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-421 +1371 2025-05-21 13:45:47.247992+00 2025-05-21 13:45:47.248003+00 f t Belen Rosenfeld belenrosenfeld@gmail.com 91159924886 \N Holmberg 1089 1B \N FEMALE 1993-10-09 -34.5818236 -58.468362 24 996 \N brosenfeld +1372 2025-05-21 13:46:58.778782+00 2025-05-21 13:46:58.77879+00 f t Yessica Cuberos ycuberos93@gmail.com +54 9 11 3877 0317 \N Arcos 1440 Piso 18 depto 09 \N \N \N 33.3343335 -111.9162074 3 998 \N ycuberos +1373 2025-05-21 13:58:10.904168+00 2025-05-21 13:58:10.904177+00 f t Invitado Amar invitado-1747835891443@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-422 +1374 2025-05-21 14:02:25.317591+00 2025-05-21 14:02:25.317601+00 f t Invitado Amar invitado-1747836144845@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-423 +1375 2025-05-21 14:08:11.449114+00 2025-05-21 14:08:11.449126+00 f t Invitado Amar invitado-1747836490236@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-424 +1376 2025-05-21 14:09:15.694231+00 2025-05-21 14:09:15.694239+00 f t Invitado Amar invitado-1747836555222@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-425 +1377 2025-05-21 14:14:49.028874+00 2025-05-21 14:14:49.028884+00 f t Invitado Amar invitado-1747836888292@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-426 +1378 2025-05-21 14:16:13.459844+00 2025-05-21 14:16:13.459856+00 f t Invitado Amar invitado-1747836972974@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-427 +1379 2025-05-21 14:17:33.481508+00 2025-05-21 14:17:33.48152+00 f t Invitado Amar invitado-1747837052981@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-428 +1380 2025-05-21 14:20:42.957969+00 2025-05-21 14:20:42.957984+00 f t Invitado Amar invitado-1747837242513@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-429 +13305 2025-11-14 16:33:56.488428+00 2025-11-14 16:33:56.488437+00 f t Aixa Galassi aiwagalaxy@gmail.com 5491151036049 \N Profesor G. Simón 1789 planta alta, puerta izq, timbre ok \N FEMALE \N 19.3794386 -99.1427044 79 2148 \N \N +1382 2025-05-21 15:14:52.597534+00 2025-05-21 15:14:52.597555+00 f t Invitado Amar invitado-1747840493164@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-430 +1383 2025-05-21 15:32:13.439333+00 2025-05-21 15:32:13.439344+00 f t Invitado Amar invitado-1747841533534@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-431 +1384 2025-05-21 16:56:49.614127+00 2025-05-21 16:56:49.614138+00 f t Invitado Amar invitado-1747846410569@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-432 +1385 2025-05-21 16:58:02.274055+00 2025-05-21 16:58:02.274068+00 f t Invitado Amar invitado-1747846483443@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-433 +1386 2025-05-21 17:09:17.285384+00 2025-05-21 17:09:17.285392+00 f t Invitado Amar invitado-1747847158512@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-434 +1387 2025-05-21 17:42:48.652551+00 2025-05-21 17:42:48.65256+00 f t Invitado Amar invitado-1747849367915@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-435 +1388 2025-05-21 17:42:50.069455+00 2025-05-21 17:42:50.069465+00 f t Luciano Chiaramonte chiaramonteluciano@hotmail.com 91169557437 \N Junin 360 PB3 \N MALE 1988-01-19 -34.60516 -58.3967914 18 999 \N lchiaramonte +1389 2025-05-21 17:42:50.967438+00 2025-05-21 17:42:50.96745+00 f t Invitado Amar invitado-1747849370783@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-436 +1390 2025-05-21 17:43:24.304545+00 2025-05-21 17:43:24.304558+00 f t Invitado Amar invitado-1747849404339@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-437 +1391 2025-05-21 17:50:20.924751+00 2025-05-21 17:50:20.924764+00 f t Invitado Amar invitado-1747849819205@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-438 +1392 2025-05-21 18:11:11.031259+00 2025-05-21 18:11:11.03127+00 f t Invitado Amar invitado-1747851070633@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-439 +1393 2025-05-21 18:12:19.511208+00 2025-05-21 18:12:19.511219+00 f t Invitado Amar invitado-1747851139547@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-440 +1394 2025-05-21 18:12:50.543266+00 2025-05-21 18:12:50.543278+00 f t Invitado Amar invitado-1747851170280@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-441 +1395 2025-05-21 18:15:50.342219+00 2025-05-21 18:15:50.342232+00 f t Invitado Amar invitado-1747851348689@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-442 +1396 2025-05-21 18:50:38.512327+00 2025-05-21 18:50:38.51234+00 f t Hernan Brunacci romina.areco+2@gmail.com +54 11 3110 7990 \N Holmberg 2587 \N \N -34.5681815 -58.4777837 \N \N \N hbrunacci-4 +1397 2025-05-21 19:26:28.21738+00 2025-05-21 19:26:28.217388+00 f t Invitado Amar invitado-1747855587428@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-443 +1398 2025-05-21 19:50:59.087001+00 2025-05-21 19:50:59.087013+00 f t Invitado Amar invitado-1747857055940@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-444 +1399 2025-05-21 19:53:22.435345+00 2025-05-21 19:53:22.435405+00 f t Invitado Amar invitado-1747857202066@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-445 +1400 2025-05-21 19:56:56.175527+00 2025-05-21 19:56:56.175535+00 f t Invitado Amar invitado-1747857416100@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-446 +1401 2025-05-21 20:32:02.774305+00 2025-05-21 20:32:02.774321+00 f t Invitado Amar invitado-1747859522948@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-447 +1402 2025-05-21 20:39:32.325709+00 2025-05-21 20:39:32.325716+00 f t Maria Laura Diaz Mallea lauramallea@gmail.com 91169457747 \N Peña 3109 Piso 1 esq Billinghurst \N FEMALE \N -34.5853738 -58.4060401 9 1000 \N mdiazmallea +1403 2025-05-21 20:42:44.517198+00 2025-05-21 20:42:44.517261+00 f t Invitado Amar invitado-1747860163985@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-448 +1404 2025-05-21 20:45:34.537564+00 2025-05-21 20:45:34.537573+00 f t Invitado Amar invitado-1747860333478@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-449 +1405 2025-05-21 23:01:52.587577+00 2025-05-21 23:01:52.587587+00 f t Invitado Amar invitado-1747868511766@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-450 +1406 2025-05-21 23:05:54.858098+00 2025-05-21 23:05:54.858107+00 f t Invitado Amar invitado-1747868753951@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-451 +1407 2025-05-21 23:13:41.145374+00 2025-05-21 23:13:41.145385+00 f t Invitado Amar invitado-1747869220772@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-452 +1408 2025-05-21 23:14:20.562894+00 2025-05-21 23:14:20.562903+00 f t Invitado Amar invitado-1747869259822@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-453 +1409 2025-05-21 23:50:04.899049+00 2025-05-21 23:50:04.899063+00 f t Invitado Amar invitado-1747871404350@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-454 +1410 2025-05-21 23:56:34.577329+00 2025-05-21 23:56:34.57734+00 f t Invitado Amar invitado-1747871793813@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-455 +1411 2025-05-22 00:17:39.360703+00 2025-05-22 00:17:39.360712+00 f t Invitado Amar invitado-1747873058063@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-456 +1412 2025-05-22 00:44:33.184866+00 2025-05-22 00:44:33.184875+00 f t Invitado Amar invitado-1747874670990@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-457 +1413 2025-05-22 00:45:24.191526+00 2025-05-22 00:45:24.191541+00 f t Invitado Amar invitado-1747874723114@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-458 +1414 2025-05-22 01:12:32.974427+00 2025-05-22 01:12:32.974436+00 f t Invitado Amar invitado-1747876352779@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-459 +1415 2025-05-22 01:19:08.937375+00 2025-05-22 01:19:08.937387+00 f t Invitado Amar invitado-1747876748283@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-460 +1416 2025-05-22 01:22:02.045763+00 2025-05-22 01:22:02.045771+00 f t Invitado Amar invitado-1747876921828@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-461 +1417 2025-05-22 01:22:36.608842+00 2025-05-22 01:22:36.608851+00 f t Invitado Amar invitado-1747876955133@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-462 +1418 2025-05-22 01:22:42.518008+00 2025-05-22 01:22:42.518017+00 f t Invitado Amar invitado-1747876963186@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-463 +1419 2025-05-22 01:22:49.577886+00 2025-05-22 01:22:49.577899+00 f t Invitado Amar invitado-1747876967881@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-464 +1420 2025-05-22 01:24:20.483467+00 2025-05-22 01:24:20.483477+00 f t Invitado Amar invitado-1747877058864@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-465 +1421 2025-05-22 01:26:35.169696+00 2025-05-22 01:26:35.169704+00 f t Invitado Amar invitado-1747877193546@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-466 +1422 2025-05-22 01:30:11.34628+00 2025-05-22 01:30:11.34629+00 f t Invitado Amar invitado-1747877409765@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-467 +1423 2025-05-22 01:48:33.233109+00 2025-05-22 01:48:33.233117+00 f t Ramon carlos mariano Santich Msrianos12@gmail.com +54 11 6834 3566 \N Alcaparra y entrada 1520 Casa \N \N \N \N \N \N \N rsantich +1424 2025-05-22 01:53:32.981052+00 2025-05-22 01:53:32.981061+00 f t Invitado Amar invitado-1747878810519@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-468 +1425 2025-05-22 02:13:44.481177+00 2025-05-22 02:13:44.481187+00 f t Invitado Amar invitado-1747880023993@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-469 +1426 2025-05-22 02:29:22.650189+00 2025-05-22 02:29:22.6502+00 f t Invitado Amar invitado-1747880962225@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-470 +1427 2025-05-22 02:50:04.736627+00 2025-05-22 02:50:04.736641+00 f t Invitado Amar invitado-1747882204199@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-471 +1428 2025-05-22 03:06:07.230283+00 2025-05-22 03:06:07.230296+00 f t Invitado Amar invitado-1747883166712@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-472 +1429 2025-05-22 04:45:52.330318+00 2025-05-22 04:45:52.33033+00 f t Invitado Amar invitado-1747889150805@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-473 +1430 2025-05-22 11:24:16.432624+00 2025-05-22 11:24:16.432634+00 f t MARIANA ARO mariana.aro@gmail.com +54 9 11 7003 1002 \N Rosario 318 5to b \N FEMALE \N -34.6190276 -58.4336129 14 1002 \N maro +1431 2025-05-22 11:24:39.376537+00 2025-05-22 11:24:39.376546+00 f t Invitado Amar invitado-1747913076966@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-474 +1432 2025-05-22 11:52:55.649459+00 2025-05-22 11:52:55.649497+00 f t Invitado Amar invitado-1747914775307@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-475 +1433 2025-05-22 11:59:23.112603+00 2025-05-22 11:59:23.112614+00 f t Invitado Amar invitado-1747915162045@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-476 +1434 2025-05-22 12:19:01.015913+00 2025-05-22 12:19:01.015921+00 f t Invitado Amar invitado-1747916338926@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-477 +1435 2025-05-22 12:21:18.314335+00 2025-05-22 12:21:18.314345+00 f t Invitado Amar invitado-1747916743515@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-478 +1436 2025-05-22 12:41:23.802072+00 2025-05-22 12:41:23.802081+00 f t Invitado Amar invitado-1747917683393@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-479 +1437 2025-05-22 12:52:09.419099+00 2025-05-22 12:52:09.41911+00 f t Invitado Amar invitado-1747918329267@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-480 +1438 2025-05-22 12:58:19.467252+00 2025-05-22 12:58:19.46726+00 f t Invitado Amar invitado-1747918699126@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-481 +1439 2025-05-22 13:07:53.229913+00 2025-05-22 13:07:53.229922+00 f t Invitado Amar invitado-1747919272864@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-482 +1440 2025-05-22 13:38:47.485589+00 2025-05-22 13:38:47.485598+00 f t Gustavo Escudero gustavo.escudero.a@gmail.com 91162844748 \N \N \N \N \N MALE \N 44.9379672 7.5400398 38 1001 \N gescudero +1441 2025-05-22 13:56:35.552842+00 2025-05-22 13:56:35.552854+00 f t Invitado Amar invitado-1747922195123@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-483 +1442 2025-05-22 14:15:17.595392+00 2025-05-22 14:15:17.595406+00 f t Invitado Amar invitado-1747923316895@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-484 +1443 2025-05-22 14:20:17.594746+00 2025-05-22 14:20:17.59476+00 f t Invitado Amar invitado-1747923617190@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-485 +1444 2025-05-22 14:24:03.982308+00 2025-05-22 14:24:03.982345+00 f t Invitado Amar invitado-1747923842606@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-486 +1445 2025-05-22 14:34:18.357874+00 2025-05-22 14:34:18.357882+00 f t Invitado Amar invitado-1747924457068@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-487 +1446 2025-05-22 14:58:18.982914+00 2025-05-22 14:58:18.982922+00 f t Luana Beker luanabeker123@gmail.com +54 11 2730 5937 \N Jose Malabia 5423 \N \N -34.5982633 -58.4386165 1 \N \N lbeker +1447 2025-05-22 15:05:01.896293+00 2025-05-22 15:05:01.896307+00 f t Invitado Amar invitado-1747926300081@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-488 +1448 2025-05-22 16:01:19.263285+00 2025-05-22 16:01:19.263294+00 f t Barbara Buono barbuono@gmail.com 91173603542 \N Emilio Mitre 786 pbc \N FEMALE 1985-07-05 -34.630741 -58.4421941 20 1003 \N bbuono +1449 2025-05-22 16:19:10.954111+00 2025-05-22 16:19:10.954121+00 f t Invitado Amar invitado-1747930750494@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-489 +1450 2025-05-22 16:27:40.76691+00 2025-05-22 16:27:40.76692+00 f t Invitado Amar invitado-1747931260147@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-490 +1451 2025-05-22 16:36:40.184772+00 2025-05-22 16:36:40.18478+00 f t Invitado Amar invitado-1747931798405@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-491 +1452 2025-05-22 16:55:07.151457+00 2025-05-22 16:55:07.151464+00 f t Daniela Laura Picardi dpicardi@agro.uba.ar AR 91167170573 \N Simbron 3039 12 no funciona el portero \N FEMALE 1984-11-03 -34.5982255 -58.4945422 17 1004 \N dpicardi +1453 2025-05-22 18:01:10.604316+00 2025-05-22 18:01:10.604326+00 f t Invitado Amar invitado-1747936869431@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-492 +1454 2025-05-22 18:02:08.979455+00 2025-05-22 18:02:08.979465+00 f t Invitado Amar invitado-1747936926503@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-493 +1455 2025-05-22 18:02:50.862175+00 2025-05-22 18:02:50.862188+00 f t Invitado Amar invitado-1747936969027@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-494 +1456 2025-05-22 18:29:17.818146+00 2025-05-22 18:29:17.818155+00 f t Invitado Amar invitado-1747938556717@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-495 +1457 2025-05-22 18:39:02.100665+00 2025-05-22 18:39:02.10068+00 f t Invitado Amar invitado-1747939141169@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-496 +1458 2025-05-22 18:43:11.372448+00 2025-05-22 18:43:11.372456+00 f t Invitado Amar invitado-1747939390744@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-497 +1459 2025-05-22 18:46:05.964309+00 2025-05-22 18:46:05.964318+00 f t Invitado Amar invitado-1747939563879@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-498 +1460 2025-05-22 19:03:56.629704+00 2025-05-22 19:03:56.629713+00 f t Invitado Amar invitado-1747940635964@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-499 +1461 2025-05-22 19:19:28.338945+00 2025-05-22 19:19:28.338953+00 f t Patricio Salerno pgsalerno2@gmail.com 91157244052 \N Carlos Calvo 960 \N \N MALE 1988-08-12 -34.6197962 -58.37948 60 1005 \N psalerno +1462 2025-05-22 19:26:29.673611+00 2025-05-22 19:26:29.67362+00 f t Invitado Amar invitado-1747941980974@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-500 +1463 2025-05-22 20:46:41.262695+00 2025-05-22 20:46:41.262704+00 f t Invitado Amar invitado-1747946800196@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-501 +1464 2025-05-22 20:51:50.043746+00 2025-05-22 20:51:50.043753+00 f t Gonzalo Montes de Oca gmontesdeoca01@gmail.com 91122951813 \N Tomás de Anchorena 879 PB A \N MALE 1971-08-06 -34.5947806 -58.4063989 9 1006 \N gmontesdeoca +1465 2025-05-22 21:44:59.161075+00 2025-05-22 21:44:59.161084+00 f t Invitado Amar invitado-1747950300341@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-502 +1466 2025-05-23 00:23:19.700467+00 2025-05-23 00:23:19.70048+00 f t Invitado Amar invitado-1747959799224@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-503 +1467 2025-05-23 01:01:44.947659+00 2025-05-23 01:01:44.947668+00 f t Invitado Amar invitado-1747962103309@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-504 +1468 2025-05-23 01:04:24.449794+00 2025-05-23 01:04:24.449805+00 f t Invitado Amar invitado-1747962264214@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-505 +1469 2025-05-23 01:06:50.951295+00 2025-05-23 01:06:50.951307+00 f t Invitado Amar invitado-1747962411116@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-506 +1470 2025-05-23 01:22:51.9273+00 2025-05-23 01:22:51.92731+00 f t Invitado Amar invitado-1747963371478@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-507 +1471 2025-05-23 02:06:36.265184+00 2025-05-23 02:06:36.265196+00 f t Nicole Leyendecker nicole_p_leyendecker@hotmail.com 5492241677811 \N Virgilio 2448 ph \N FEMALE \N -34.618524 -58.5217188 66 1008 \N nleyendecker +1472 2025-05-23 02:11:33.026784+00 2025-05-23 02:11:33.026794+00 f t Invitado Amar invitado-1747966292508@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-508 +1473 2025-05-23 02:20:32.11371+00 2025-05-23 02:20:32.113719+00 f t Invitado Amar invitado-1747966831748@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-509 +1474 2025-05-23 02:23:11.676583+00 2025-05-23 02:23:11.676591+00 f t Invitado Amar invitado-1747966990990@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-510 +1475 2025-05-23 02:53:40.558416+00 2025-05-23 02:53:40.558425+00 f t Invitado Amar invitado-1747968819158@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-511 +1476 2025-05-23 03:55:54.384928+00 2025-05-23 03:55:54.384942+00 f t Invitado Amar invitado-1747972553323@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-512 +1477 2025-05-23 07:06:29.038786+00 2025-05-23 07:06:29.038803+00 f t Juan Carlos Antón antonjc36@gmail.com +54 11 5457 5837 \N PATAGONES 2889 Casa \N \N -34.6378432 -58.4032964 1 \N \N janton +1478 2025-05-23 10:15:16.071123+00 2025-05-23 10:15:16.071133+00 f t Gabriel Alejandro Tovorovosky gtovorovosky@gmail.com +54 11 6791 1466 \N Salta 2133 \N \N -34.6322954 -58.3826818 \N \N \N gtovorovosky +1479 2025-05-23 10:37:20.043072+00 2025-05-23 10:37:20.043084+00 f t Invitado Amar invitado-1747967830716@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-513 +1480 2025-05-23 10:53:01.997775+00 2025-05-23 10:53:01.997788+00 f t Invitado Amar invitado-1747997581790@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-514 +1481 2025-05-23 11:27:40.313576+00 2025-05-23 11:27:40.313585+00 f t Invitado Amar invitado-1747999659990@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-515 +1482 2025-05-23 12:35:21.121637+00 2025-05-23 12:35:21.121646+00 f t Invitado Amar invitado-1748003719425@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-516 +1483 2025-05-23 12:51:11.723253+00 2025-05-23 12:51:11.723264+00 f t lucia galeano galeanolucia1996@gmail.com +54 15 5097 1791 \N aime paine 1351 6 a (ES EN PUERTO MADERO) \N \N -34.612849 -58.361689 1 \N \N lgaleano +1484 2025-05-23 13:06:49.408461+00 2025-05-23 13:06:49.408473+00 f t Invitado Amar invitado-1748005609293@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-517 +1485 2025-05-23 13:50:18.081099+00 2025-05-23 13:50:18.081109+00 f t Invitado Amar invitado-1748008217823@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-518 +1486 2025-05-23 14:08:01.904235+00 2025-05-23 14:08:01.904247+00 f t Invitado Amar invitado-1748009281589@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-519 +1487 2025-05-23 14:25:24.088448+00 2025-05-23 14:25:24.088455+00 f t Daniela Gisele Luna giseleluna88@gmail.com 5491133097782 \N Tucumán 2652 PBE ntre Paso y Av. Pueyrredon \N MALE 1988-08-12 -34.6019567 -58.4041951 18 1007 \N dluna +1488 2025-05-23 14:54:30.154027+00 2025-05-23 14:54:30.15404+00 f t Invitado Amar invitado-1748012068180@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-520 +1489 2025-05-23 15:09:25.346947+00 2025-05-23 15:09:25.346961+00 f t TEST TEST test123@testing.com +54 9 11 1111 1111 \N Test 123 A \N \N 41.2600717 -95.8429507 1 \N \N ttest-4 +1490 2025-05-23 15:12:47.089257+00 2025-05-23 15:12:47.089272+00 f t Invitado Amar invitado-1748013166818@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-521 +1491 2025-05-23 15:49:10.824394+00 2025-05-23 15:49:10.824403+00 f t Invitado Amar invitado-1748015349782@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-522 +1492 2025-05-23 15:58:19.40105+00 2025-05-23 15:58:19.401058+00 f t Invitado Amar invitado-1748015899260@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-523 +1493 2025-05-23 16:19:51.260483+00 2025-05-23 16:19:51.260495+00 f t Invitado Amar invitado-1748017190886@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-524 +1494 2025-05-23 16:43:07.295678+00 2025-05-23 16:43:07.29569+00 f t Invitado Amar invitado-1748018651719@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-525 +1495 2025-05-23 16:45:44.266834+00 2025-05-23 16:45:44.266844+00 f t Invitado Amar invitado-1748018744152@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-526 +1496 2025-05-23 16:46:18.013836+00 2025-05-23 16:46:18.013844+00 f t Invitado Amar invitado-1748018777276@example.com 55555555 \N \N \N \N \N 7 \N \N iamar-527 +1497 2025-05-23 17:01:17.581274+00 2025-05-23 17:01:17.581286+00 f t Invitado Amar invitado-1748019677250@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-528 +1498 2025-05-23 17:33:02.944167+00 2025-05-23 17:33:02.944176+00 f t Invitado Amar invitado-1748021582366@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-529 +1499 2025-05-23 18:10:22.518243+00 2025-05-23 18:10:22.518253+00 f t Agustin Viveros agustin.viveros93+10@gmail.com +54 9 11 1111 1111 \N juramento 1934 A \N \N -34.5189544 -58.5442451 \N \N \N aviveros-2 +1500 2025-05-23 18:26:41.584576+00 2025-05-23 18:26:41.58459+00 f t Invitado Amar invitado-1748024804860@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-530 +1501 2025-05-23 18:29:23.676819+00 2025-05-23 18:29:23.676829+00 f t Invitado Amar invitado-1748024963077@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-531 +1502 2025-05-23 19:13:56.694189+00 2025-05-23 19:13:56.694203+00 f t Jeimar Mendez jeimar.mmm@gmail.com 91123915123 \N Núñez 3649 5B \N MALE 2025-05-24 -34.5561203 -58.478416 31 1009 \N jmendez-2 +1503 2025-05-23 20:51:45.554269+00 2025-05-23 20:51:45.554278+00 f t Invitado Amar invitado-1748033505634@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-532 +1504 2025-05-23 21:07:11.676346+00 2025-05-23 21:07:11.676354+00 f t Invitado Amar invitado-1748034431002@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-533 +1505 2025-05-23 22:33:28.32832+00 2025-05-23 22:33:28.32833+00 f t Invitado Amar invitado-1748039607689@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-534 +1506 2025-05-23 22:34:45.715934+00 2025-05-23 22:34:45.715945+00 f t Invitado Amar invitado-1748039685427@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-535 +1507 2025-05-23 22:44:05.415643+00 2025-05-23 22:44:05.415654+00 f t Invitado Amar invitado-1748040244737@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-536 +1508 2025-05-23 22:45:22.320895+00 2025-05-23 22:45:22.320905+00 f t Invitado Amar invitado-1748040321342@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-537 +1509 2025-05-23 22:47:08.726801+00 2025-05-23 22:47:08.726814+00 f t Invitado Amar invitado-1748040427871@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-538 +1510 2025-05-23 22:57:57.30896+00 2025-05-23 22:57:57.308972+00 f t Invitado Amar invitado-1748041076928@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-539 +1511 2025-05-23 23:13:49.469502+00 2025-05-23 23:13:49.469515+00 f t Invitado Amar invitado-1748042028970@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-540 +1512 2025-05-23 23:37:51.659589+00 2025-05-23 23:37:51.659599+00 f t Invitado Amar invitado-1748043470666@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-541 +1513 2025-05-23 23:55:30.581747+00 2025-05-23 23:55:30.58176+00 f t Invitado Amar invitado-1748044530110@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-542 +1514 2025-05-23 23:58:26.749285+00 2025-05-23 23:58:26.749295+00 f t Invitado Amar invitado-1748044706241@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-543 +1515 2025-05-24 00:04:45.962412+00 2025-05-24 00:04:45.962421+00 f t Invitado Amar invitado-1748045085560@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-544 +1516 2025-05-24 00:24:54.105689+00 2025-05-24 00:24:54.105699+00 f t Invitado Amar invitado-1748046294575@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-545 +1517 2025-05-24 00:51:04.378205+00 2025-05-24 00:51:04.378217+00 f t Invitado Amar invitado-1748047864655@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-546 +1518 2025-05-24 01:01:04.505401+00 2025-05-24 01:01:04.505413+00 f t Invitado Amar invitado-1748048464253@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-547 +1519 2025-05-24 01:30:15.152991+00 2025-05-24 01:30:15.153+00 f t Invitado Amar invitado-1748050213854@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-548 +1520 2025-05-24 02:09:46.1427+00 2025-05-24 02:09:46.142709+00 f t Invitado Amar invitado-1748052584290@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-549 +1521 2025-05-24 02:40:26.638733+00 2025-05-24 02:40:26.638745+00 f t Invitado Amar invitado-1748054425497@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-550 +1522 2025-05-24 02:44:33.082488+00 2025-05-24 02:44:33.082496+00 f t Invitado Amar invitado-1748054672685@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-551 +1523 2025-05-24 03:02:07.383693+00 2025-05-24 03:02:07.383703+00 f t Invitado Amar invitado-1748055726526@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-552 +1524 2025-05-24 04:22:47.485039+00 2025-05-24 04:22:47.485048+00 f t Invitado Amar invitado-1748060567087@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-553 +1525 2025-05-24 12:17:22.386658+00 2025-05-24 12:17:22.386674+00 f t Invitado Amar invitado-1748089043068@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-554 +1526 2025-05-24 12:51:10.642768+00 2025-05-24 12:51:10.642836+00 f t Invitado Amar invitado-1748091069612@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-555 +1527 2025-05-24 12:51:42.15865+00 2025-05-24 12:51:42.158659+00 f t Invitado Amar invitado-1748091101973@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-556 +1528 2025-05-24 12:52:26.274222+00 2025-05-24 12:52:26.274232+00 f t Invitado Amar invitado-1748091145897@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-557 +1529 2025-05-24 13:02:11.621832+00 2025-05-24 13:02:11.621841+00 f t Invitado Amar invitado-1748091731154@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-558 +1530 2025-05-24 13:09:20.134101+00 2025-05-24 13:09:20.13411+00 f t Invitado Amar invitado-1748092160118@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-559 +1531 2025-05-24 13:27:40.151336+00 2025-05-24 13:27:40.151345+00 f t Invitado Amar invitado-1748093260444@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-560 +1532 2025-05-24 13:46:01.371124+00 2025-05-24 13:46:01.371137+00 f t Invitado Amar invitado-1748094360612@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-561 +1533 2025-05-24 13:59:43.443263+00 2025-05-24 13:59:43.44328+00 f t Invitado Amar invitado-1748095182614@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-562 +1534 2025-05-24 14:21:47.340798+00 2025-05-24 14:21:47.340811+00 f t Invitado Amar invitado-1748096506169@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-563 +1535 2025-05-24 14:38:13.831092+00 2025-05-24 14:38:13.831103+00 f t Invitado Amar invitado-1748097492537@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-564 +1536 2025-05-24 15:01:42.776468+00 2025-05-24 15:01:42.776479+00 f t Carla Gauna dra.cgauna@gmail.com +54 11 4409 9338 \N Rodriguez Peña 307 4 7 \N \N -32.6237525 -62.6811457 \N \N \N cgauna +1537 2025-05-24 15:33:35.527063+00 2025-05-24 15:33:35.527072+00 f t Invitado Amar invitado-1748100815054@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-565 +1538 2025-05-24 15:46:26.603839+00 2025-05-24 15:46:26.603848+00 f t Invitado Amar invitado-1748101586859@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-566 +1539 2025-05-24 16:46:00.803202+00 2025-05-24 16:46:00.803211+00 f t Invitado Amar invitado-1748105160014@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-567 +1540 2025-05-24 16:49:24.278654+00 2025-05-24 16:49:24.278663+00 f t Invitado Amar invitado-1748105397586@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-568 +1541 2025-05-24 17:20:26.636061+00 2025-05-24 17:20:26.636074+00 f t Invitado Amar invitado-1748107225783@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-569 +1542 2025-05-24 17:36:29.733623+00 2025-05-24 17:36:29.733635+00 f t Invitado Amar invitado-1748108189393@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-570 +1543 2025-05-24 17:50:32.034222+00 2025-05-24 17:50:32.034231+00 f t Invitado Amar invitado-1748109032742@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-571 +1544 2025-05-24 17:52:54.604366+00 2025-05-24 17:52:54.604375+00 f t Invitado Amar invitado-1748109174537@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-572 +1545 2025-05-24 18:11:03.676671+00 2025-05-24 18:11:03.67668+00 f t Invitado Amar invitado-1748110263335@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-573 +1546 2025-05-24 18:12:34.139326+00 2025-05-24 18:12:34.13934+00 f t Invitado Amar invitado-1748110354000@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-574 +1547 2025-05-24 18:13:08.948452+00 2025-05-24 18:13:08.948465+00 f t Invitado Amar invitado-1748110388815@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-575 +1548 2025-05-24 18:14:05.26992+00 2025-05-24 18:14:05.26993+00 f t Invitado Amar invitado-1748110445130@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-576 +1549 2025-05-24 18:15:11.444148+00 2025-05-24 18:15:11.444158+00 f t Invitado Amar invitado-1748110511003@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-577 +1550 2025-05-24 18:39:04.828289+00 2025-05-24 18:39:04.828305+00 f t Invitado Amar invitado-1748111944310@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-578 +1551 2025-05-24 18:44:57.460452+00 2025-05-24 18:44:57.460464+00 f t Invitado Amar invitado-1748112296970@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-579 +1552 2025-05-24 18:45:21.300195+00 2025-05-24 18:45:21.300207+00 f t Invitado Amar invitado-1748112320800@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-580 +1553 2025-05-24 20:24:39.702542+00 2025-05-24 20:24:39.702552+00 f t Invitado Amar invitado-1748118279737@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-581 +1554 2025-05-24 20:58:48.968105+00 2025-05-24 20:58:48.968116+00 f t Invitado Amar invitado-1748120328541@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-582 +1555 2025-05-24 21:11:58.899758+00 2025-05-24 21:11:58.899767+00 f t Aileen Quintero aileen.q.rojas@gmail.com 1149403238 \N Potosí 4338 6A \N FEMALE \N -34.6073651 -58.4282947 23 1010 \N aquintero +1556 2025-05-24 21:35:28.601606+00 2025-05-24 21:35:28.601615+00 f t Invitado Amar invitado-1748122527996@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-583 +1557 2025-05-24 22:30:43.035037+00 2025-05-24 22:30:43.035047+00 f t Invitado Amar invitado-1748125842117@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-584 +1558 2025-05-24 23:02:26.578316+00 2025-05-24 23:02:26.578327+00 f t Invitado Amar invitado-1748127746080@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-585 +1559 2025-05-24 23:03:22.690278+00 2025-05-24 23:03:22.690287+00 f t Invitado Amar invitado-1748127802215@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-586 +1560 2025-05-24 23:18:46.40469+00 2025-05-24 23:18:46.404701+00 f t Invitado Amar invitado-1748128725650@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-587 +1561 2025-05-24 23:35:12.485763+00 2025-05-24 23:35:12.485771+00 f t Invitado Amar invitado-1748129712102@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-588 +1562 2025-05-24 23:35:34.737066+00 2025-05-24 23:35:34.737079+00 f t Invitado Amar invitado-1748129734650@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-589 +1563 2025-05-25 00:31:35.316002+00 2025-05-25 00:31:35.316014+00 f t Invitado Amar invitado-1748133094342@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-590 +1564 2025-05-25 00:35:41.086067+00 2025-05-25 00:35:41.086077+00 f t Invitado Amar invitado-1748133339820@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-591 +1565 2025-05-25 01:05:38.108897+00 2025-05-25 01:05:38.108909+00 f t Invitado Amar invitado-1748135136789@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-592 +1566 2025-05-25 01:06:10.829524+00 2025-05-25 01:06:10.829534+00 f t Invitado Amar invitado-1748135161291@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-593 +1567 2025-05-25 01:16:57.527608+00 2025-05-25 01:16:57.527622+00 f t Invitado Amar invitado-1748135816781@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-594 +1568 2025-05-25 01:28:20.047598+00 2025-05-25 01:28:20.047608+00 f t Invitado Amar invitado-1748136497949@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-595 +1569 2025-05-25 03:07:39.075245+00 2025-05-25 03:07:39.075254+00 f t Invitado Amar invitado-1748142457973@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-596 +1570 2025-05-25 03:25:56.566257+00 2025-05-25 03:25:56.566273+00 f t Invitado Amar invitado-1748143553975@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-597 +1571 2025-05-25 03:28:19.596628+00 2025-05-25 03:28:19.596637+00 f t Invitado Amar invitado-1748143697812@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-598 +1572 2025-05-25 03:29:03.43093+00 2025-05-25 03:29:03.430941+00 f t Invitado Amar invitado-1748143741618@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-599 +1573 2025-05-25 03:29:51.591524+00 2025-05-25 03:29:51.591534+00 f t Invitado Amar invitado-1748143789796@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-600 +1574 2025-05-25 03:32:34.725177+00 2025-05-25 03:32:34.725212+00 f t Invitado Amar invitado-1748143954067@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-601 +1575 2025-05-25 03:58:56.344174+00 2025-05-25 03:58:56.344183+00 f t Invitado Amar invitado-1748145535993@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-602 +1576 2025-05-25 05:42:31.719784+00 2025-05-25 05:42:31.719793+00 f t Invitado Amar invitado-1748151751805@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-603 +1577 2025-05-25 10:19:16.928867+00 2025-05-25 10:19:16.928876+00 f t Invitado Amar invitado-1748168356421@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-604 +1578 2025-05-25 10:36:53.467879+00 2025-05-25 10:36:53.467892+00 f t Andrea Lopez andrearociolc2015@gmail.com +54 11 5636 1018 \N Lavalle 2167 8 enc \N \N -34.6032342 -58.3978504 \N \N \N alopez +1579 2025-05-25 12:41:18.797447+00 2025-05-25 12:41:18.797458+00 f t Invitado Amar invitado-1748176877955@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-605 +1580 2025-05-25 13:25:41.027298+00 2025-05-25 13:25:41.027307+00 f t Invitado Amar invitado-1748179540401@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-606 +1581 2025-05-25 13:39:04.688153+00 2025-05-25 13:39:04.688166+00 f t Invitado Amar invitado-1748180344383@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-607 +1582 2025-05-25 13:55:44.090445+00 2025-05-25 13:55:44.090455+00 f t Invitado Amar invitado-1748181343797@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-608 +1583 2025-05-25 13:59:27.913174+00 2025-05-25 13:59:27.913183+00 f t Invitado Amar invitado-1748181567654@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-609 +1584 2025-05-25 14:10:21.375101+00 2025-05-25 14:10:21.375113+00 f t Invitado Amar invitado-1748182220887@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-610 +1585 2025-05-25 14:46:02.297528+00 2025-05-25 14:46:02.297541+00 f t Beatriz Martin beatrizmartind@gmail.com +54 11 3176 1700 \N Nazarre 2902 1 B \N \N -34.6001845 -58.4910473 \N \N \N bmartin-2 +1586 2025-05-25 15:38:15.993258+00 2025-05-25 15:38:15.99327+00 f t Graciela Haene gracielahaene@gmail.com +54 9 11 3041 4273 \N Andonaegui 2167 1431 Piso 1 dto 1 \N \N \N -34.5780506 -58.487418 \N 1011 \N ghaene +1587 2025-05-25 15:51:38.666369+00 2025-05-25 15:51:38.666381+00 f t Invitado Amar invitado-1748188297808@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-611 +1588 2025-05-25 16:05:40.714443+00 2025-05-25 16:05:40.714453+00 f t Invitado Amar invitado-1748189140023@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-612 +1589 2025-05-25 16:23:03.798201+00 2025-05-25 16:23:03.798211+00 f t Camila Morales tapia soymoralescamila@gmail.com +54 11 3585 8924 \N Charlone 14 Piso 1 \N FEMALE \N -34.5855344 -58.4454656 35 1015 \N cmoralestapia +1590 2025-05-25 16:27:25.959957+00 2025-05-25 16:27:25.959969+00 f t Invitado Amar invitado-1748190445565@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-613 +1591 2025-05-25 16:42:19.548943+00 2025-05-25 16:42:19.548953+00 f t Invitado Amar invitado-1748191339198@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-614 +1592 2025-05-25 17:18:05.398965+00 2025-05-25 17:18:05.398974+00 f t Invitado Amar invitado-1748193484153@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-615 +1593 2025-05-25 17:26:25.757735+00 2025-05-25 17:26:25.757748+00 f t Invitado Amar invitado-1748193985622@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-616 +1594 2025-05-25 17:40:28.047113+00 2025-05-25 17:40:28.047125+00 f t Invitado Amar invitado-1748194820635@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-617 +1595 2025-05-25 17:51:05.018134+00 2025-05-25 17:51:05.018147+00 f t Invitado Amar invitado-1748195465125@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-618 +1596 2025-05-25 17:51:39.231284+00 2025-05-25 17:51:39.231293+00 f t Maria Alicia Bugallo marubugallo@hotmail.com +54 11 2697 9567 \N Olazabal 3828 \N \N -34.5691525 -58.4730997 \N \N \N mbugallo +1597 2025-05-25 17:55:47.215061+00 2025-05-25 17:55:47.21507+00 f t Invitado Amar invitado-1748195747931@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-619 +1598 2025-05-25 18:02:12.013947+00 2025-05-25 18:02:12.013957+00 f t Invitado Amar invitado-1748196132524@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-620 +1599 2025-05-25 18:15:13.375493+00 2025-05-25 18:15:13.375503+00 f t Invitado Amar invitado-1748196913056@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-621 +1600 2025-05-25 18:27:49.983171+00 2025-05-25 18:27:49.983186+00 f t Invitado Amar invitado-1748197668041@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-622 +1601 2025-05-25 19:06:42.837891+00 2025-05-25 19:06:42.837903+00 f t Invitado Amar invitado-1748200002222@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-623 +1602 2025-05-25 19:34:52.173486+00 2025-05-25 19:34:52.173494+00 f t Invitado Amar invitado-1748201691392@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-624 +1603 2025-05-25 19:53:43.366547+00 2025-05-25 19:53:43.36656+00 f t Invitado Amar invitado-1748202822446@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-625 +1604 2025-05-25 19:54:52.597347+00 2025-05-25 19:54:52.597355+00 f t Alcides Pereira Galeano alcides.pereira.ar@gmail.com +54 11 2845 3879 \N Santiago del estero 820 Localidad de Martínez \N \N -33.8985844 -60.558198 1 \N \N apereiragaleano +1605 2025-05-25 20:40:01.693839+00 2025-05-25 20:40:01.69385+00 f t Nicolás Trotvil nicolas.trotvil@gmail.com 5491167219469 \N Medrano 115 \N \N MALE 1987-03-04 -34.7483213 -58.3937871 72 1012 \N ntrotvil +1606 2025-05-25 20:46:46.796292+00 2025-05-25 20:46:46.7963+00 f t Silvia Luconi silvia_luconi@hotmail.com +5491168301714 \N Bolivar 187 3 b \N FEMALE \N -34.6100516 -58.3735854 49 1013 \N sluconi +1607 2025-05-25 20:55:15.561728+00 2025-05-25 20:55:15.561735+00 f t Fernando Fenili fer55_2006@hotmail.com Allende/BenitoJuare \N Pedro lozano 4732 Allende/Benito Juarez \N MALE \N -34.6119557 -58.5127233 21 1014 \N ffenili +1608 2025-05-25 21:04:05.178228+00 2025-05-25 21:04:05.178239+00 f t Invitado Amar invitado-1748207044677@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-626 +1609 2025-05-25 21:20:30.897167+00 2025-05-25 21:20:30.897196+00 f t Invitado Amar invitado-1748208030495@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-627 +1610 2025-05-25 21:38:10.562593+00 2025-05-25 21:38:10.562604+00 f t Invitado Amar invitado-1748209090676@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-628 +1611 2025-05-25 21:49:34.900477+00 2025-05-25 21:49:34.900491+00 f t Invitado Amar invitado-1748209773718@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-629 +1612 2025-05-25 22:29:07.462886+00 2025-05-25 22:29:07.462895+00 f t Invitado Amar invitado-1748212148151@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-630 +1613 2025-05-25 22:32:46.814698+00 2025-05-25 22:32:46.814709+00 f t Invitado Amar invitado-1748212366246@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-631 +1614 2025-05-25 22:39:54.737252+00 2025-05-25 22:39:54.73726+00 f t Invitado Amar invitado-1748212794324@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-632 +1615 2025-05-26 00:26:12.696871+00 2025-05-26 00:26:12.69688+00 f t Invitado Amar invitado-1748219171871@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-633 +1616 2025-05-26 00:56:53.56071+00 2025-05-26 00:56:53.560719+00 f t Invitado Amar invitado-1748221012818@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-634 +1617 2025-05-26 00:57:54.03754+00 2025-05-26 00:57:54.037551+00 f t Invitado Amar invitado-1748221073863@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-635 +1618 2025-05-26 01:14:11.178693+00 2025-05-26 01:14:11.178705+00 f t Invitado Amar invitado-1748222050768@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-636 +1619 2025-05-26 01:52:17.553051+00 2025-05-26 01:52:17.55306+00 f t Priscila Bermudez priscilabermudez18@gmail.com +54 11 3469 2496 \N Virrey Loreto 4027 Casa - Entre Paraná y Santa fe \N \N -34.5268094 -58.5484898 \N \N \N pbermudez +1620 2025-05-26 02:13:03.265786+00 2025-05-26 02:13:03.265796+00 f t Invitado Amar invitado-1748225582810@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-637 +1621 2025-05-26 04:20:59.979648+00 2025-05-26 04:20:59.979658+00 f t Invitado Amar invitado-1748233257628@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-638 +1622 2025-05-26 04:51:51.746484+00 2025-05-26 04:51:51.746527+00 f t Fernanda Olivera delfino foliveradelfino@gmail.com +54 11 6734 8143 \N Marabotto 384 3a \N \N 44.8483189 9.9532325 \N \N \N foliveradelfino +1623 2025-05-26 04:55:46.737155+00 2025-05-26 04:55:46.737169+00 f t Invitado Amar invitado-1748235345589@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-639 +1624 2025-05-26 05:20:00.045889+00 2025-05-26 05:20:00.045901+00 f t Bárbara Gadea barbiigadea@hotmail.com.ar +54 9 11 4412 8417 \N Paraguay 2655 3G \N \N -34.5970464 -58.4058459 \N \N \N bgadea +1625 2025-05-26 07:23:17.822714+00 2025-05-26 07:23:17.822724+00 f t Invitado Amar invitado-1748244196558@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-640 +1626 2025-05-26 07:24:35.231376+00 2025-05-26 07:24:35.231385+00 f t Invitado Amar invitado-1748244274850@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-641 +1627 2025-05-26 07:26:52.538235+00 2025-05-26 07:26:52.538247+00 f t Invitado Amar invitado-1748244412360@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-642 +1628 2025-05-26 09:15:43.676421+00 2025-05-26 09:15:43.676429+00 f t Invitado Amar invitado-1748250942622@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-643 +1629 2025-05-26 09:28:40.196635+00 2025-05-26 09:28:40.196647+00 f t Invitado Amar invitado-1748251719280@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-644 +1630 2025-05-26 09:30:28.498157+00 2025-05-26 09:30:28.498166+00 f t Invitado Amar invitado-1748251828153@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-645 +1631 2025-05-26 12:52:48.459223+00 2025-05-26 12:52:48.459234+00 f t Invitado Amar invitado-1748263968013@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-646 +1632 2025-05-26 13:31:26.860139+00 2025-05-26 13:31:26.860149+00 f t Invitado Amar invitado-1748266286550@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-647 +1633 2025-05-26 13:45:14.514733+00 2025-05-26 13:45:14.514743+00 f t Invitado Amar invitado-1748267113713@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-648 +1634 2025-05-26 13:47:43.197173+00 2025-05-26 13:47:43.197182+00 f t Invitado Amar invitado-1748267261948@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-649 +1635 2025-05-26 14:12:48.498288+00 2025-05-26 14:12:48.498301+00 f t Invitado Amar invitado-1748268767436@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-650 +1636 2025-05-26 14:20:59.363192+00 2025-05-26 14:20:59.363204+00 f t Invitado Amar invitado-1748269258228@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-651 +1637 2025-05-26 14:22:37.329431+00 2025-05-26 14:22:37.32944+00 f t Invitado Amar invitado-1748269356824@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-652 +1638 2025-05-26 14:52:44.555149+00 2025-05-26 14:52:44.55516+00 f t Invitado Amar invitado-1748271164050@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-653 +1639 2025-05-26 15:32:46.832123+00 2025-05-26 15:32:46.832132+00 f t Invitado Amar invitado-1748273566270@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-654 +1640 2025-05-26 16:03:14.958994+00 2025-05-26 16:03:14.959005+00 f t Invitado Amar invitado-1748275394476@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-655 +1641 2025-05-26 16:08:47.23731+00 2025-05-26 16:08:47.23732+00 f t Invitado Amar invitado-1748275726996@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-656 +1642 2025-05-26 16:09:11.802606+00 2025-05-26 16:09:11.802622+00 f t Invitado Amar invitado-1748275751556@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-657 +1643 2025-05-26 16:24:34.875349+00 2025-05-26 16:24:34.875405+00 f t Estela Solari esolmi@yahoo.com +54 11 3790 9528 \N Av santa fe 1790 6 C \N \N \N \N \N \N 1018 \N esolari +1644 2025-05-26 16:45:07.0482+00 2025-05-26 16:45:07.048209+00 f t Invitado Amar invitado-1748277906731@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-658 +1645 2025-05-26 16:58:42.979791+00 2025-05-26 16:58:42.979803+00 f t Invitado Amar invitado-1748278722603@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-659 +1646 2025-05-26 17:03:18.85875+00 2025-05-26 17:03:18.858757+00 f t haydee Nodelis hnodelis@yahoo.com.ar 5491140610721 \N Melincué 2435 Ph con puerta independiente. \N FEMALE \N -34.5971189 -58.484799 43 1016 \N hnodelis +1647 2025-05-26 17:13:14.176284+00 2025-05-26 17:13:14.176292+00 f t Invitado Amar invitado-1748279579539@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-660 +1648 2025-05-26 18:33:41.581853+00 2025-05-26 18:33:41.581861+00 f t Invitado Amar invitado-1748284420799@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-661 +1649 2025-05-26 18:52:30.811177+00 2025-05-26 18:52:30.81119+00 f t Invitado Amar invitado-1748285551217@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-662 +1650 2025-05-26 19:18:06.341018+00 2025-05-26 19:18:06.341027+00 f t Invitado Amar invitado-1748287085706@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-663 +1651 2025-05-26 20:04:40.653861+00 2025-05-26 20:04:40.653869+00 f t Agustina Mutz agusmutz05@gmail.com +54 11 6741 2576 \N Castro 629 \N \N -34.6192723 -58.4206439 \N \N \N amutz +1652 2025-05-26 20:14:40.003571+00 2025-05-26 20:14:40.00358+00 f t Invitado Amar invitado-1748290478890@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-664 +1653 2025-05-26 20:20:43.362395+00 2025-05-26 20:20:43.362405+00 f t Invitado Amar invitado-1748290841418@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-665 +1654 2025-05-26 21:41:11.078555+00 2025-05-26 21:41:11.078568+00 f t Invitado Amar invitado-1748295670035@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-666 +1655 2025-05-26 21:42:41.30137+00 2025-05-26 21:42:41.30138+00 f t Invitado Amar invitado-1748295759262@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-667 +1656 2025-05-26 21:43:34.908227+00 2025-05-26 21:43:34.908236+00 f t Invitado Amar invitado-1748295814502@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-668 +1657 2025-05-26 21:46:12.158424+00 2025-05-26 21:46:12.158433+00 f t Invitado Amar invitado-1748295971519@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-669 +1658 2025-05-26 21:50:50.103643+00 2025-05-26 21:50:50.103652+00 f t Invitado Amar invitado-1748296249369@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-670 +1659 2025-05-26 22:04:15.670442+00 2025-05-26 22:04:15.670451+00 f t Invitado Amar invitado-1748297054929@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-671 +1660 2025-05-26 22:22:45.361366+00 2025-05-26 22:22:45.361377+00 f t Invitado Amar invitado-1748298164439@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-672 +1661 2025-05-26 22:52:10.261887+00 2025-05-26 22:52:10.261896+00 f t Elda graciela bruno gomez gracielagomez1980.gg@gmail.com 5491154908711 \N \N \N \N \N FEMALE 1980-11-13 44.9379672 7.5400398 52 1017 \N ebrunogomez +1662 2025-05-26 23:05:45.868036+00 2025-05-26 23:05:45.868045+00 f t Invitado Amar invitado-1748300745356@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-673 +1663 2025-05-26 23:19:48.023079+00 2025-05-26 23:19:48.023088+00 f t Invitado Amar invitado-1748301587724@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-674 +1664 2025-05-26 23:29:44.999843+00 2025-05-26 23:29:44.999852+00 f t Invitado Amar invitado-1748302184417@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-675 +1665 2025-05-26 23:32:04.239086+00 2025-05-26 23:32:04.239099+00 f t Invitado Amar invitado-1748302323671@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-676 +1666 2025-05-26 23:35:28.234505+00 2025-05-26 23:35:28.234514+00 f t Invitado Amar invitado-1748302528061@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-677 +1667 2025-05-27 00:31:01.138156+00 2025-05-27 00:31:01.138167+00 f t Invitado Amar invitado-1748305860357@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-678 +1668 2025-05-27 00:35:47.558374+00 2025-05-27 00:35:47.558383+00 f t Invitado Amar invitado-1748306147158@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-679 +1669 2025-05-27 00:38:06.759871+00 2025-05-27 00:38:06.759879+00 f t Fede rico Weigandt fedecaii2019@gmail.com +54 11 3806 6362 \N 4a 464 21 \N \N 36.810638 -76.280432 \N \N \N fweigandt +1670 2025-05-27 01:13:34.133146+00 2025-05-27 01:13:34.133156+00 f t Invitado Amar invitado-1748308409416@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-680 +1671 2025-05-27 01:15:22.225317+00 2025-05-27 01:15:22.225326+00 f t Invitado Amar invitado-1748308517813@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-681 +1672 2025-05-27 01:21:14.590823+00 2025-05-27 01:21:14.590833+00 f t Invitado Amar invitado-1748308874006@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-682 +1673 2025-05-27 01:39:15.650801+00 2025-05-27 01:39:15.65081+00 f t Invitado Amar invitado-1748309955039@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-683 +1674 2025-05-27 02:02:21.11431+00 2025-05-27 02:02:21.114319+00 f t Invitado Amar invitado-1748311340642@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-684 +1675 2025-05-27 02:27:54.239112+00 2025-05-27 02:27:54.239121+00 f t Invitado Amar invitado-1748312873463@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-685 +1676 2025-05-27 02:28:28.114692+00 2025-05-27 02:28:28.1147+00 f t Invitado Amar invitado-1748312907745@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-686 +1677 2025-05-27 02:35:01.108618+00 2025-05-27 02:35:01.10863+00 f t Invitado Amar invitado-1748313300193@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-687 +1678 2025-05-27 02:40:13.769574+00 2025-05-27 02:40:13.769586+00 f t Invitado Amar invitado-1748313612968@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-688 +1679 2025-05-27 02:44:22.082207+00 2025-05-27 02:44:22.082218+00 f t Invitado Amar invitado-1748313861172@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-689 +1680 2025-05-27 02:50:23.161913+00 2025-05-27 02:50:23.161925+00 f t Invitado Amar invitado-1748314222713@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-690 +1681 2025-05-27 03:16:49.568688+00 2025-05-27 03:16:49.568701+00 f t Invitado Amar invitado-1748315808548@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-691 +1682 2025-05-27 03:28:43.535986+00 2025-05-27 03:28:43.535995+00 f t Giovanna Camila Perez giovannacamilacachoneperez@gmail.com +54 11 3308 8823 \N Avenida Coronel Niceto Vega 5674_ \N \N \N \N -34.5862968 -58.440116 1 1036 \N gperez +1683 2025-05-27 04:25:56.364705+00 2025-05-27 04:25:56.364713+00 f t Invitado Amar invitado-1748319955810@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-692 +1684 2025-05-27 04:27:25.774832+00 2025-05-27 04:27:25.774845+00 f t Invitado Amar invitado-1748320045637@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-693 +1685 2025-05-27 04:54:27.113411+00 2025-05-27 04:54:27.113419+00 f t Invitado Amar invitado-1748321666674@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-694 +1686 2025-05-27 05:24:33.297014+00 2025-05-27 05:24:33.297023+00 f t Andrea Natalia Cantisani Rovasio andreacantisani@gmail.com +54 11 2639 3473 \N Beruti 928 1D \N \N -34.740221 -58.2614176 \N \N \N acantisanirovasio +1687 2025-05-27 08:16:30.287268+00 2025-05-27 08:16:30.287277+00 f t Invitado Amar invitado-1748333788437@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-695 +1688 2025-05-27 09:45:16.145532+00 2025-05-27 09:45:16.14554+00 f t Invitado Amar invitado-1748339115678@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-696 +1689 2025-05-27 11:15:27.787116+00 2025-05-27 11:15:27.787128+00 f t Invitado Amar invitado-1748344526909@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-697 +1690 2025-05-27 11:23:50.169569+00 2025-05-27 11:23:50.16958+00 f t Invitado Amar invitado-1748345026226@example.com 55555555 \N \N \N \N \N 2 \N \N iamar-698 +1691 2025-05-27 12:34:52.110571+00 2025-05-27 12:34:52.110583+00 f t Invitado Amar invitado-1748349291839@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-699 +1692 2025-05-27 12:39:06.613343+00 2025-05-27 12:39:06.613356+00 f t Invitado Amar invitado-1748349546168@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-700 +1693 2025-05-27 13:17:37.664548+00 2025-05-27 13:17:37.66456+00 f t Invitado Amar invitado-1748351856839@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-701 +1694 2025-05-27 13:42:59.094973+00 2025-05-27 13:42:59.094982+00 f t Invitado Amar invitado-1748353378283@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-702 +1695 2025-05-27 13:52:08.71176+00 2025-05-27 13:52:08.71177+00 f t Invitado Amar invitado-1748353928105@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-703 +1696 2025-05-27 13:54:12.13037+00 2025-05-27 13:54:12.13038+00 f t Invitado Amar invitado-1748354052001@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-704 +1697 2025-05-27 14:23:36.210519+00 2025-05-27 14:23:36.210528+00 f t Invitado Amar invitado-1748355815427@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-705 +1698 2025-05-27 14:48:18.242471+00 2025-05-27 14:48:18.24248+00 f t Invitado Amar invitado-1748357297827@example.com 55555555 \N \N \N \N \N 7 \N \N iamar-706 +1699 2025-05-27 14:55:14.562772+00 2025-05-27 14:55:14.56278+00 f t Gladys Liliana Arias lalyarias@gmail.com 91160210450 \N Av. Rivadavia 2745 4° 19 (entre Castelli y Pueyrredón) \N FEMALE 1962-08-26 -34.6099395 -58.4051891 37 1022 \N garias +1700 2025-05-27 15:13:49.104943+00 2025-05-27 15:13:49.104952+00 f t Invitado Amar invitado-1748358828153@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-707 +1701 2025-05-27 15:27:26.413314+00 2025-05-27 15:27:26.413326+00 f t Invitado Amar invitado-1748359645134@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-708 +1702 2025-05-27 15:40:31.966552+00 2025-05-27 15:40:31.966561+00 f t Invitado Amar invitado-1748360430917@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-709 +1703 2025-05-27 15:41:34.496317+00 2025-05-27 15:41:34.496327+00 f t Invitado Amar invitado-1748360494067@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-710 +1704 2025-05-27 15:42:25.353046+00 2025-05-27 15:42:25.35306+00 f t Invitado Amar invitado-1748360546056@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-711 +1705 2025-05-27 15:46:01.015653+00 2025-05-27 15:46:01.015662+00 f t Invitado Amar invitado-1748360759027@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-712 +1706 2025-05-27 15:54:16.049765+00 2025-05-27 15:54:16.049775+00 f t Invitado Amar invitado-1748361254643@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-713 +1707 2025-05-27 15:56:46.960839+00 2025-05-27 15:56:46.960851+00 f t ALICIA tavernelli aliciatavernelli@gmail.com +05401153850877 \N Castro barros 166 3 f \N \N \N -45.8339935 -67.476687 \N 1025 \N atavernelli +1708 2025-05-27 16:00:40.6521+00 2025-05-27 16:00:40.652109+00 f t Ariana Echeverria ariana.echeverria99@gmail.com 91162721432 \N Matheu 1705 piso 16 depto 6 \N FEMALE 1999-10-22 -34.629692 -58.3982249 44 1023 \N aecheverria +1709 2025-05-27 16:04:55.418021+00 2025-05-27 16:04:55.418029+00 f t eva carolina zacarias seguroszacarias@gmail.com +54 11 6912 1583 \N av gral mosconi 3319 1 \N \N \N \N \N 21 1027 \N ezacarias +1710 2025-05-27 16:39:06.849484+00 2025-05-27 16:39:06.849493+00 f t Invitado Amar invitado-1748363945295@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-714 +1711 2025-05-27 16:41:49.931342+00 2025-05-27 16:41:49.931398+00 f t Invitado Amar invitado-1748364109311@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-715 +1712 2025-05-27 16:43:21.011217+00 2025-05-27 16:43:21.011228+00 f t Invitado Amar invitado-1748364200733@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-716 +1713 2025-05-27 16:48:17.852317+00 2025-05-27 16:48:17.852326+00 f t Invitado Amar invitado-1748364437164@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-717 +1714 2025-05-27 17:04:13.55124+00 2025-05-27 17:04:13.551252+00 f t Invitado Amar invitado-1748365453054@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-718 +1715 2025-05-27 17:20:31.398477+00 2025-05-27 17:20:31.398486+00 f t Invitado Amar invitado-1748366422138@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-719 +1716 2025-05-27 17:40:07.227159+00 2025-05-27 17:40:07.227171+00 f t Invitado Amar invitado-1748367605998@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-720 +1717 2025-05-27 17:44:37.95509+00 2025-05-27 17:44:37.955096+00 f t Alejandra Leticia Estrada leticiale63@hotmail.com 91157823672 \N Espinosa 2862 CASA \N FEMALE 1963-02-03 -34.5999164 -58.4729507 34 1024 \N aestrada +1718 2025-05-27 17:49:26.644939+00 2025-05-27 17:49:26.64495+00 f t Invitado Amar invitado-1748368111309@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-721 +1719 2025-05-27 17:50:29.661883+00 2025-05-27 17:50:29.661892+00 f t Invitado Amar invitado-1748368174736@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-722 +1720 2025-05-27 17:51:40.538986+00 2025-05-27 17:51:40.538995+00 f t Invitado Amar invitado-1748368245612@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-723 +1721 2025-05-27 17:51:46.616432+00 2025-05-27 17:51:46.616445+00 f t Invitado Amar invitado-1748368305894@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-724 +1722 2025-05-27 17:53:21.535828+00 2025-05-27 17:53:21.535839+00 f t Invitado Amar invitado-1748368401841@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-725 +1723 2025-05-27 18:30:31.929464+00 2025-05-27 18:30:31.929474+00 f t Invitado Amar invitado-1748370631062@example.com 55555555 \N \N \N \N \N 66 \N \N iamar-726 +1724 2025-05-27 19:03:24.115833+00 2025-05-27 19:03:24.115842+00 f t Invitado Amar invitado-1748372603344@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-727 +1725 2025-05-27 19:45:57.126508+00 2025-05-27 19:45:57.126519+00 f t Invitado Amar invitado-1748375156100@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-728 +1726 2025-05-27 19:46:16.66002+00 2025-05-27 19:46:16.660032+00 f t Natalia Panetta np@bac-dall.com.ar +54 11 4998 9685 \N MARCOS SASTRE 4919 \N \N -34.6170177 -58.5110752 \N \N \N npanetta +1727 2025-05-27 19:52:57.472194+00 2025-05-27 19:52:57.472209+00 f t Invitado Amar invitado-1748375577475@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-729 +1728 2025-05-27 20:47:57.911925+00 2025-05-27 20:47:57.911952+00 f t Invitado Amar invitado-1748378877340@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-730 +1729 2025-05-27 21:56:20.343893+00 2025-05-27 21:56:20.343905+00 f t Invitado Amar invitado-1748382979303@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-731 +1730 2025-05-27 22:07:54.028439+00 2025-05-27 22:07:54.028449+00 f t Invitado Amar invitado-1748383672867@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-732 +1731 2025-05-27 22:36:21.771109+00 2025-05-27 22:36:21.771122+00 f t Mariel Arguelles tianykendra@gmail.com +54 11 3896 1008 \N Lincoln 1295 Esquina oroño \N \N -34.6959382 -58.3015924 \N \N \N marguelles +1732 2025-05-27 22:38:55.716535+00 2025-05-27 22:38:55.716544+00 f t Invitado Amar invitado-1748385534865@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-733 +1733 2025-05-27 22:43:34.415895+00 2025-05-27 22:43:34.415904+00 f t Ruth rivas Ruthypz878@gmail.com +54 11 6901 9046 \N Trelles 2750 2 \N \N -34.5972636 -58.4659229 \N \N \N rrivas +13306 2025-11-14 17:16:16.982064+00 2025-11-14 17:16:16.982073+00 f t Invitado Amar invitado-1763140575966@example.com 55555555 \N \N \N \N \N 71 \N \N \N +1735 2025-05-27 23:13:48.276578+00 2025-05-27 23:13:48.276585+00 f t Daiana teglia daitegliausal@gmail.com +5491158826196 \N o higgins 2495 piso 7 depto A esquina monroe en belgrano \N FEMALE 1992-04-24 -34.5561603 -58.4560514 3 1029 \N dteglia +1736 2025-05-27 23:31:18.537104+00 2025-05-27 23:31:18.537114+00 f t Invitado Amar invitado-1748388677359@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-734 +1737 2025-05-28 00:13:24.354291+00 2025-05-28 00:13:24.354303+00 f t Invitado Amar invitado-1748391203928@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-735 +1738 2025-05-28 00:31:51.970979+00 2025-05-28 00:31:51.970989+00 f t Invitado Amar invitado-1748392311131@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-736 +1739 2025-05-28 00:56:15.553834+00 2025-05-28 00:56:15.553845+00 f t Invitado Amar invitado-1748393774385@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-737 +1740 2025-05-28 00:59:00.812465+00 2025-05-28 00:59:00.812476+00 f t Invitado Amar invitado-1748393940061@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-738 +1741 2025-05-28 01:51:56.810776+00 2025-05-28 01:51:56.810788+00 f t Invitado Amar invitado-1748397050081@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-739 +1742 2025-05-28 01:54:09.563887+00 2025-05-28 01:54:09.563902+00 f t Invitado Amar invitado-1748397183291@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-740 +1743 2025-05-28 01:55:21.575561+00 2025-05-28 01:55:21.575573+00 f t Invitado Amar invitado-1748397255289@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-741 +1744 2025-05-28 02:01:55.494343+00 2025-05-28 02:01:55.494356+00 f t Invitado Amar invitado-1748397715035@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-742 +1745 2025-05-28 02:12:04.170357+00 2025-05-28 02:12:04.170367+00 f t Invitado Amar invitado-1748398323893@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-743 +1746 2025-05-28 02:13:22.652477+00 2025-05-28 02:13:22.65249+00 f t Invitado Amar invitado-1748398402617@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-744 +1747 2025-05-28 02:22:26.203971+00 2025-05-28 02:22:26.20398+00 f t Invitado Amar invitado-1748398945606@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-745 +1748 2025-05-28 02:25:21.582751+00 2025-05-28 02:25:21.582766+00 f t Invitado Amar invitado-1748399120508@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-746 +1749 2025-05-28 02:28:27.696045+00 2025-05-28 02:28:27.696059+00 f t Invitado Amar invitado-1748399306575@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-747 +1750 2025-05-28 02:29:58.015005+00 2025-05-28 02:29:58.015016+00 f t Invitado Amar invitado-1748399397587@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-748 +1751 2025-05-28 02:33:30.781593+00 2025-05-28 02:33:30.781604+00 f t valeria koffman valeriakoffman@hotmail.com +54 11 5838 3061 \N García Lorca 3939 \N \N -34.6270926 -58.5486787 \N \N \N vkoffman +1752 2025-05-28 02:37:52.552789+00 2025-05-28 02:37:52.552798+00 f t Invitado Amar invitado-1748399871536@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-749 +1753 2025-05-28 02:47:01.296356+00 2025-05-28 02:47:01.29637+00 f t Invitado Amar invitado-1748400420997@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-750 +1754 2025-05-28 02:51:24.46208+00 2025-05-28 02:51:24.462089+00 f t Invitado Amar invitado-1748400683362@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-751 +1755 2025-05-28 02:52:03.409422+00 2025-05-28 02:52:03.409436+00 f t Invitado Amar invitado-1748400722621@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-752 +1756 2025-05-28 03:19:04.22275+00 2025-05-28 03:19:04.22276+00 f t Invitado Amar invitado-1748402343741@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-753 +1757 2025-05-28 03:25:32.332915+00 2025-05-28 03:25:32.332927+00 f t Invitado Amar invitado-1748402732373@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-754 +1758 2025-05-28 03:38:11.611156+00 2025-05-28 03:38:11.611169+00 f t Invitado Amar invitado-1748403491107@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-755 +1759 2025-05-28 03:54:07.341348+00 2025-05-28 03:54:07.341361+00 f t Invitado Amar invitado-1748404446836@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-756 +1760 2025-05-28 03:58:24.271784+00 2025-05-28 03:58:24.271798+00 f t Invitado Amar invitado-1748404738991@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-757 +1761 2025-05-28 04:30:44.31014+00 2025-05-28 04:30:44.310152+00 f t Invitado Amar invitado-1748406644248@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-758 +1762 2025-05-28 09:19:03.710738+00 2025-05-28 09:19:03.710753+00 f t Invitado Amar invitado-1748423944458@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-759 +1763 2025-05-28 10:07:20.911423+00 2025-05-28 10:07:20.911433+00 f t Invitado Amar invitado-1748426840591@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-760 +1764 2025-05-28 12:02:53.922723+00 2025-05-28 12:02:53.922732+00 f t Invitado Amar invitado-1748433773428@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-761 +1765 2025-05-28 12:09:38.965353+00 2025-05-28 12:09:38.965363+00 f t Invitado Amar invitado-1748434209649@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-762 +1766 2025-05-28 12:26:36.725254+00 2025-05-28 12:26:36.725288+00 f t Macarena Lopez maquilopez.ml@gmail.com +5491132292643 \N Catamarca 2234 \N \N FEMALE 1997-04-22 -34.635432 -58.4006694 44 1032 \N mlopez-3 +1767 2025-05-28 12:42:54.137528+00 2025-05-28 12:42:54.137537+00 f t Invitado Amar invitado-1748436173743@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-763 +1768 2025-05-28 13:25:20.509605+00 2025-05-28 13:25:20.509614+00 f t Invitado Amar invitado-1748438719939@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-764 +1769 2025-05-28 14:48:37.921099+00 2025-05-28 14:48:37.921108+00 f t Invitado Amar invitado-1748443717535@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-765 +1770 2025-05-28 15:45:00.973539+00 2025-05-28 15:45:00.973549+00 f t Invitado Amar invitado-1748447100513@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-766 +1771 2025-05-28 15:50:09.090059+00 2025-05-28 15:50:09.09007+00 f t Invitado Amar invitado-1748447407799@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-767 +1772 2025-05-28 16:13:44.563608+00 2025-05-28 16:13:44.56362+00 f t Invitado Amar invitado-1748448824199@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-768 +1773 2025-05-28 17:12:20.997113+00 2025-05-28 17:12:20.997125+00 f t Invitado Amar invitado-1748452340530@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-769 +1774 2025-05-28 18:32:24.784535+00 2025-05-28 18:32:24.784545+00 f t Invitado Amar invitado-1748457145374@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-770 +1775 2025-05-28 21:10:16.253377+00 2025-05-28 21:10:16.253388+00 f t Invitado Amar invitado-1748466615206@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-771 +1776 2025-05-28 21:20:57.576054+00 2025-05-28 21:20:57.576063+00 f t Sonia Adriana Terragno soniaaterragno77@hotmail.com 5491124589162 \N Amenedo 2543 Jose marmol \N FEMALE 1977-09-13 -34.7853627 -58.3782287 145 1034 \N sterragno +1777 2025-05-28 21:24:18.784791+00 2025-05-28 21:24:18.784805+00 f t Invitado Amar invitado-1748467458477@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-772 +1778 2025-05-28 21:24:55.377887+00 2025-05-28 21:24:55.3779+00 f t Invitado Amar invitado-1748467495596@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-773 +1779 2025-05-28 23:25:10.41665+00 2025-05-28 23:25:10.416662+00 f t Invitado Amar invitado-1748474709819@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-774 +1780 2025-05-28 23:42:24.271146+00 2025-05-28 23:42:24.271155+00 f t Invitado Amar invitado-1748475743462@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-775 +1781 2025-05-28 23:50:42.369766+00 2025-05-28 23:50:42.369775+00 f t Invitado Amar invitado-1748476242552@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-776 +1782 2025-05-29 00:26:03.940049+00 2025-05-29 00:26:03.940061+00 f t Invitado Amar invitado-1748478361383@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-777 +1783 2025-05-29 01:34:30.996228+00 2025-05-29 01:34:30.996239+00 f t Invitado Amar invitado-1748482472123@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-778 +1784 2025-05-29 01:53:49.852297+00 2025-05-29 01:53:49.852307+00 f t Invitado Amar invitado-1748483628099@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-779 +1785 2025-05-29 01:55:12.152404+00 2025-05-29 01:55:12.152418+00 f t Invitado Amar invitado-1748483711045@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-780 +1786 2025-05-29 02:20:14.968152+00 2025-05-29 02:20:14.968169+00 f t Invitado Amar invitado-1748485214130@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-781 +1787 2025-05-29 04:34:56.407617+00 2025-05-29 04:34:56.407627+00 f t Invitado Amar invitado-1748493295975@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-782 +1788 2025-05-29 05:19:37.736576+00 2025-05-29 05:19:37.736587+00 f t Invitado Amar invitado-1748495978088@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-783 +1789 2025-05-29 06:39:29.460936+00 2025-05-29 06:39:29.460945+00 f t Invitado Amar invitado-1748500769130@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-784 +1790 2025-05-29 06:44:20.188095+00 2025-05-29 06:44:20.188105+00 f t Invitado Amar invitado-1748501059536@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-785 +1791 2025-05-29 12:40:02.777114+00 2025-05-29 12:40:02.777128+00 f t Invitado Amar invitado-1748522404065@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-786 +1792 2025-05-29 12:48:44.95203+00 2025-05-29 12:48:44.952039+00 f t Invitado Amar invitado-1748522926799@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-787 +1793 2025-05-29 12:50:31.643739+00 2025-05-29 12:50:31.643749+00 f t Invitado Amar invitado-1748523032420@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-788 +1794 2025-05-29 12:55:31.164492+00 2025-05-29 12:55:31.164502+00 f t Karina Moreno kmoreno28@gmail.com +541138302810 \N Gral O'higginis 1692 1 A \N FEMALE \N \N \N 70 1038 \N kmoreno +1795 2025-05-29 13:17:50.549378+00 2025-05-29 13:17:50.549389+00 f t Patricia Beatriz Raimondo pbraimondo@gmail.com 91124063917 \N Miguel Cane 882 2B \N FEMALE \N -34.7098347 -58.4058555 70 1037 \N praimondo +1796 2025-05-29 13:41:49.656492+00 2025-05-29 13:41:49.656504+00 f t Invitado Amar invitado-1748526108151@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-789 +1797 2025-05-29 13:51:33.385547+00 2025-05-29 13:51:33.385558+00 f t Invitado Amar invitado-1748526692827@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-790 +1798 2025-05-29 14:30:04.437479+00 2025-05-29 14:30:04.437491+00 f t Sofia Giammarco Arce sofiagiammarcoarce16@gmail.com 91124629454 \N Alcaraz 6000 \N \N FEMALE 1993-11-16 -34.6307188 -58.5162223 62 1039 \N sgiammarcoarce +1799 2025-05-29 14:38:22.066685+00 2025-05-29 14:38:22.066698+00 f t Invitado Amar invitado-1748529501808@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-791 +1800 2025-05-29 14:41:36.698908+00 2025-05-29 14:41:36.698919+00 f t Invitado Amar invitado-1748529695897@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-792 +1801 2025-05-29 14:43:35.962344+00 2025-05-29 14:43:35.962358+00 f t Invitado Amar invitado-1748529816840@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-793 +1802 2025-05-29 14:43:36.617848+00 2025-05-29 14:43:36.617859+00 f t Tatiana Velazquez tatiana.agustina@gmail.com +54 11 3231 5613 \N Virrey Liniers 1134 Pb \N \N \N -34.6244979 -58.4135385 11 1042 \N tvelazquez +1803 2025-05-29 14:47:54.551114+00 2025-05-29 14:47:54.551128+00 f t Invitado Amar invitado-1748530075573@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-794 +1804 2025-05-29 15:02:42.688087+00 2025-05-29 15:02:42.688096+00 f t Invitado Amar invitado-1748530961163@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-795 +1805 2025-05-29 15:13:29.741184+00 2025-05-29 15:13:29.741197+00 f t Invitado Amar invitado-1748531608681@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-796 +1806 2025-05-29 15:15:10.908353+00 2025-05-29 15:15:10.908363+00 f t Invitado Amar invitado-1748531710068@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-797 +1807 2025-05-29 15:17:55.183743+00 2025-05-29 15:17:55.183755+00 f t Hebe Iervasi hebe.iervasi@gmail.com +541535128462 \N Moran Pedro 2334 2B \N \N \N -34.588864 -58.4898432 43 1040 \N hiervasi +1808 2025-05-29 15:50:02.921895+00 2025-05-29 15:50:02.921908+00 f t Invitado Amar invitado-1748533802480@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-798 +1809 2025-05-29 15:55:10.974741+00 2025-05-29 15:55:10.974755+00 f t Invitado Amar invitado-1748534110358@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-799 +1810 2025-05-29 16:00:21.55825+00 2025-05-29 16:00:21.55826+00 f t Invitado Amar invitado-1748534421299@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-800 +1811 2025-05-29 16:43:19.35125+00 2025-05-29 16:43:19.351259+00 f t Cristian Gonzalez Arévalo cristianarevalo.ar@gmail.com 91126942883 \N Venezuela 1823 piso 5 \N MALE \N -34.6152097 -58.404737 18 1041 \N cgonzalezarevalo +1812 2025-05-29 16:55:28.27212+00 2025-05-29 16:55:28.272131+00 f t Invitado Amar invitado-1748537726916@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-801 +1813 2025-05-29 16:56:27.55891+00 2025-05-29 16:56:27.558924+00 f t Invitado Amar invitado-1748537786440@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-802 +1814 2025-05-29 17:08:44.05454+00 2025-05-29 17:08:44.054555+00 f t Invitado Amar invitado-1748538522608@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-803 +1815 2025-05-29 17:44:05.201431+00 2025-05-29 17:44:05.20144+00 f t Invitado Amar invitado-1748540646636@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-804 +1816 2025-05-29 18:23:44.695706+00 2025-05-29 18:23:44.69572+00 f t Invitado Amar invitado-1748543030283@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-805 +1817 2025-05-29 18:30:24.451834+00 2025-05-29 18:30:24.451849+00 f t Invitado Amar invitado-1748543423851@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-806 +1818 2025-05-29 19:19:16.815991+00 2025-05-29 19:19:16.816+00 f t Invitado Amar invitado-1748546356790@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-807 +1819 2025-05-29 19:32:49.938303+00 2025-05-29 19:32:49.938327+00 f t Cecilia Louvet cecilialouvet@hotmail.com +54 11 3317 3244 \N MATIAS STURIZA 417 8D1 \N \N -34.5067336 -58.4792025 \N \N \N clouvet +1820 2025-05-29 20:15:12.34372+00 2025-05-29 20:15:12.34373+00 f t Invitado Amar invitado-1748549710997@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-808 +1821 2025-05-29 20:22:25.824226+00 2025-05-29 20:22:25.824236+00 f t Invitado Amar invitado-1748550144670@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-809 +1822 2025-05-29 21:37:51.281464+00 2025-05-29 21:37:51.281474+00 f t Invitado Amar invitado-1748554670937@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-810 +1823 2025-05-29 22:28:58.666368+00 2025-05-29 22:28:58.666382+00 f t Invitado Amar invitado-1748557737918@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-811 +1824 2025-05-29 22:35:24.089886+00 2025-05-29 22:35:24.0899+00 f t Invitado Amar invitado-1748558123629@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-812 +1825 2025-05-29 22:44:09.017624+00 2025-05-29 22:44:09.017636+00 f t Invitado Amar invitado-1748558647876@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-813 +1826 2025-05-29 23:34:15.068825+00 2025-05-29 23:34:15.068836+00 f t Invitado Amar invitado-1748561654591@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-814 +1827 2025-05-29 23:47:57.640502+00 2025-05-29 23:47:57.640514+00 f t Invitado Amar invitado-1748562477074@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-815 +1828 2025-05-29 23:57:29.490232+00 2025-05-29 23:57:29.490241+00 f t Fernando Greda feragreda2023@gmail.com +5491160559407 \N Conde 959 \N \N FEMALE 1979-02-03 -34.5764239 -58.4524102 38 1044 \N fgreda +1829 2025-05-30 00:11:01.880628+00 2025-05-30 00:11:01.880641+00 f t Invitado Amar invitado-1748563860805@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-816 +1830 2025-05-30 00:13:06.607147+00 2025-05-30 00:13:06.607159+00 f t Invitado Amar invitado-1748563986122@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-817 +1831 2025-05-30 00:23:31.165766+00 2025-05-30 00:23:31.165775+00 f t Invitado Amar invitado-1748564609965@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-818 +1832 2025-05-30 00:25:38.517281+00 2025-05-30 00:25:38.517293+00 f t Invitado Amar invitado-1748564737745@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-819 +1833 2025-05-30 00:27:25.08746+00 2025-05-30 00:27:25.087473+00 f t Invitado Amar invitado-1748564844495@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-820 +1834 2025-05-30 00:43:08.432442+00 2025-05-30 00:43:08.432452+00 f t Invitado Amar invitado-1748565787609@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-821 +1835 2025-05-30 01:35:55.0828+00 2025-05-30 01:35:55.082814+00 f t Invitado Amar invitado-1748568954297@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-822 +1836 2025-05-30 01:37:13.512898+00 2025-05-30 01:37:13.512907+00 f t Invitado Amar invitado-1748569031442@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-823 +1837 2025-05-30 01:37:14.869532+00 2025-05-30 01:37:14.869544+00 f t Invitado Amar invitado-1748569191840@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-824 +1838 2025-05-30 02:22:36.87726+00 2025-05-30 02:22:36.87727+00 f t Invitado Amar invitado-1748571757616@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-825 +1839 2025-05-30 02:35:22.274978+00 2025-05-30 02:35:22.274991+00 f t Invitado Amar invitado-1748572521790@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-826 +1840 2025-05-30 03:07:51.284227+00 2025-05-30 03:07:51.284328+00 f t Invitado Amar invitado-1748574471196@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-827 +1841 2025-05-30 03:42:24.881674+00 2025-05-30 03:42:24.881683+00 f t Invitado Amar invitado-1748576543653@example.com 55555555 \N \N \N \N \N 67 \N \N iamar-828 +1842 2025-05-30 04:01:16.116041+00 2025-05-30 04:01:16.116049+00 f t Invitado Amar invitado-1748577675666@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-829 +1843 2025-05-30 11:06:33.025116+00 2025-05-30 11:06:33.025129+00 f t Invitado Amar invitado-1748603192467@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-830 +1844 2025-05-30 11:11:27.582657+00 2025-05-30 11:11:27.582667+00 f t Invitado Amar invitado-1748603487096@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-831 +1845 2025-05-30 11:17:10.434775+00 2025-05-30 11:17:10.434786+00 f t Invitado Amar invitado-1748603828919@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-832 +1846 2025-05-30 11:36:27.881593+00 2025-05-30 11:36:27.881604+00 f t Invitado Amar invitado-1748604985305@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-833 +1847 2025-05-30 11:36:44.142778+00 2025-05-30 11:36:44.142791+00 f t Invitado Amar invitado-1748605002085@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-834 +1848 2025-05-30 11:59:54.20226+00 2025-05-30 11:59:54.202273+00 f t Invitado Amar invitado-1748606393655@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-835 +1849 2025-05-30 12:03:50.046797+00 2025-05-30 12:03:50.046813+00 f t Invitado Amar invitado-1748606628712@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-836 +1850 2025-05-30 12:07:52.953872+00 2025-05-30 12:07:52.953886+00 f t Invitado Amar invitado-1748606871418@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-837 +1851 2025-05-30 12:16:25.981001+00 2025-05-30 12:16:25.981015+00 f t Invitado Amar invitado-1748607384578@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-838 +1852 2025-05-30 12:27:14.400066+00 2025-05-30 12:27:14.400081+00 f t Invitado Amar invitado-1748608034069@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-839 +1853 2025-05-30 12:44:47.292629+00 2025-05-30 12:44:47.292642+00 f t Invitado Amar invitado-1748609086852@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-840 +1854 2025-05-30 12:46:36.910177+00 2025-05-30 12:46:36.910189+00 f t Carlos Benitez carlos-n-guzman@hotmail.com +54 15 5499 5035 \N Calderon de la Barca 3435 \N \N \N \N -34.6116375 -58.5251489 21 1033 \N cbenitez-2 +1855 2025-05-30 13:06:18.88259+00 2025-05-30 13:06:18.882605+00 f t Invitado Amar invitado-1748610378386@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-841 +1856 2025-05-30 14:29:34.268956+00 2025-05-30 14:29:34.268968+00 f t Invitado Amar invitado-1748615373037@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-842 +1857 2025-05-30 15:32:28.12211+00 2025-05-30 15:32:28.122123+00 f t Invitado Amar invitado-1748619145286@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-843 +1858 2025-05-30 15:39:49.58657+00 2025-05-30 15:39:49.586586+00 f t Invitado Amar invitado-1748619588789@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-844 +1859 2025-05-30 15:56:22.185991+00 2025-05-30 15:56:22.186+00 f t Invitado Amar invitado-1748620581805@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-845 +1860 2025-05-30 16:25:31.38018+00 2025-05-30 16:25:31.380188+00 f t Invitado Amar invitado-1748622330618@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-846 +1861 2025-05-30 16:26:26.533671+00 2025-05-30 16:26:26.533683+00 f t Invitado Amar invitado-1748622386302@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-847 +1862 2025-05-30 17:02:19.961281+00 2025-05-30 17:02:19.96129+00 f t Invitado Amar invitado-1748624539217@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-848 +1863 2025-05-30 17:03:11.768992+00 2025-05-30 17:03:11.769003+00 f t Fernanda Megna fernandamegna@gmail.com 5491164220819 \N Brasil 447 \N \N FEMALE \N \N \N 77 1046 \N fmegna +1864 2025-05-30 17:22:48.47768+00 2025-05-30 17:22:48.477689+00 f t Sarina Casalett sarina@live.com.ar 91138600448 \N Armenia 21522 2 p.20 depto.b \N FEMALE 1996-08-22 -34.5901016 -58.4283319 1 1047 \N scasalett +1865 2025-05-30 17:48:32.438672+00 2025-05-30 17:48:32.438682+00 f t Invitado Amar invitado-1748627312039@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-849 +1866 2025-05-30 18:02:40.689905+00 2025-05-30 18:02:40.689913+00 f t Invitado Amar invitado-1748628159984@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-850 +1867 2025-05-30 18:03:15.774285+00 2025-05-30 18:03:15.774299+00 f t Invitado Amar invitado-1748628195350@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-851 +1868 2025-05-30 18:04:15.574709+00 2025-05-30 18:04:15.57472+00 f t Invitado Amar invitado-1748628254884@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-852 +1869 2025-05-30 18:18:32.292745+00 2025-05-30 18:18:32.292758+00 f t Invitado Amar invitado-1748629112272@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-853 +1870 2025-05-30 18:41:18.353861+00 2025-05-30 18:41:18.353871+00 f t Invitado Amar invitado-1748630476548@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-854 +1871 2025-05-30 20:28:33.754908+00 2025-05-30 20:28:33.754917+00 f t Invitado Amar invitado-1748636912322@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-855 +1872 2025-05-30 20:35:09.679232+00 2025-05-30 20:35:09.679248+00 f t Invitado Amar invitado-1748637309852@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-856 +1873 2025-05-30 20:35:27.398647+00 2025-05-30 20:35:27.398659+00 f t Invitado Amar invitado-1748637327857@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-857 +1874 2025-05-30 20:41:45.019746+00 2025-05-30 20:41:45.019756+00 f t Invitado Amar invitado-1748637704614@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-858 +1875 2025-05-30 20:50:13.517867+00 2025-05-30 20:50:13.517899+00 f t Invitado Amar invitado-1748638212801@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-859 +1876 2025-05-30 21:23:08.41619+00 2025-05-30 21:23:08.416199+00 f t Invitado Amar invitado-1748640187979@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-860 +1877 2025-05-30 21:23:58.048817+00 2025-05-30 21:23:58.048827+00 f t Invitado Amar invitado-1748640237323@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-861 +1878 2025-05-30 21:24:49.505214+00 2025-05-30 21:24:49.505223+00 f t Invitado Amar invitado-1748640288963@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-862 +1879 2025-05-30 21:46:08.967422+00 2025-05-30 21:46:08.967433+00 f t Invitado Amar invitado-1748641568141@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-863 +1880 2025-05-30 21:46:40.942931+00 2025-05-30 21:46:40.94294+00 f t Invitado Amar invitado-1748641600734@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-864 +1881 2025-05-30 21:49:58.647791+00 2025-05-30 21:49:58.647805+00 f t Invitado Amar invitado-1748641798175@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-865 +1882 2025-05-30 21:56:56.55187+00 2025-05-30 21:56:56.551879+00 f t Invitado Amar invitado-1748642214328@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-866 +1883 2025-05-30 22:17:22.71456+00 2025-05-30 22:17:22.714568+00 f t Diana Díaz ríos ddiazrios2@gmail.com +5491154178835 \N Fray justo Santa María de oro 2462 apto 8b \N FEMALE 1990-03-26 \N \N 1 1048 \N ddiazrios +1884 2025-05-30 22:21:27.025998+00 2025-05-30 22:21:27.026005+00 f t Gabriela Costa gabu0023@gmail.com 5491167845365 \N Alvarez Thomas 875 7D \N FEMALE 1985-09-23 -34.57923 -58.4543831 38 1049 \N gcosta +1885 2025-05-30 22:29:34.884319+00 2025-05-30 22:29:34.884329+00 f t Invitado Amar invitado-1748644174746@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-867 +1886 2025-05-30 23:27:25.627805+00 2025-05-30 23:27:25.627842+00 f t Invitado Amar invitado-1748647644781@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-868 +1887 2025-05-30 23:37:29.996033+00 2025-05-30 23:37:29.996045+00 f t Invitado Amar invitado-1748648249785@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-869 +1888 2025-05-30 23:55:36.169305+00 2025-05-30 23:55:36.169312+00 f t Carlos Mendoza fcpystarea2@gmail.com +5491128989893 \N Ravignani 1442 6a \N MALE 1988-03-01 -34.5841651 -58.44226 1 1050 \N cmendoza +1889 2025-05-31 00:18:15.841968+00 2025-05-31 00:18:15.841977+00 f t Invitado Amar invitado-1748650696976@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-870 +1890 2025-05-31 00:18:49.757537+00 2025-05-31 00:18:49.75755+00 f t Invitado Amar invitado-1748650729364@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-871 +1891 2025-05-31 00:20:54.392232+00 2025-05-31 00:20:54.392242+00 f t Invitado Amar invitado-1748650853770@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-872 +1892 2025-05-31 00:45:02.158289+00 2025-05-31 00:45:02.158304+00 f t Invitado Amar invitado-1748652301605@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-873 +1893 2025-05-31 00:45:24.470698+00 2025-05-31 00:45:24.470708+00 f t Invitado Amar invitado-1748652324048@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-874 +1894 2025-05-31 01:01:17.42899+00 2025-05-31 01:01:17.428999+00 f t Invitado Amar invitado-1748653276030@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-875 +1895 2025-05-31 01:04:13.914982+00 2025-05-31 01:04:13.914991+00 f t Invitado Amar invitado-1748653453133@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-876 +1896 2025-05-31 01:36:17.069565+00 2025-05-31 01:36:17.069576+00 f t Invitado Amar invitado-1748655376118@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-877 +1897 2025-05-31 01:37:43.147722+00 2025-05-31 01:37:43.147735+00 f t Candelaria Zambrana candezambrana@gmail.com +54 11 6188 3886 \N Palpa 2581 1a \N \N -34.5711207 -58.4481433 \N \N \N czambrana +1898 2025-05-31 01:41:51.193365+00 2025-05-31 01:41:51.193377+00 f t Invitado Amar invitado-1748655710766@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-878 +1899 2025-05-31 02:11:59.894277+00 2025-05-31 02:11:59.894286+00 f t Invitado Amar invitado-1748657519184@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-879 +1900 2025-05-31 02:12:19.636854+00 2025-05-31 02:12:19.636867+00 f t Invitado Amar invitado-1748657538852@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-880 +1901 2025-05-31 02:43:46.352465+00 2025-05-31 02:43:46.352478+00 f t Invitado Amar invitado-1748659425659@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-881 +1902 2025-05-31 03:30:24.950859+00 2025-05-31 03:30:24.950873+00 f t Invitado Amar invitado-1748662224070@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-882 +1903 2025-05-31 03:35:06.418431+00 2025-05-31 03:35:06.418446+00 f t Invitado Amar invitado-1748662505741@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-883 +1904 2025-05-31 03:38:25.125332+00 2025-05-31 03:38:25.125341+00 f t Invitado Amar invitado-1748662703256@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-884 +1905 2025-05-31 03:40:30.850323+00 2025-05-31 03:40:30.850332+00 f t Invitado Amar invitado-1748662829916@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-885 +1906 2025-05-31 05:02:10.273835+00 2025-05-31 05:02:10.273844+00 f t Invitado Amar invitado-1748667729731@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-886 +1907 2025-05-31 07:05:51.825354+00 2025-05-31 07:05:51.825368+00 f t Javier Vega jvchapu@gmail.com +54 11 5961 9595 \N Treinta y tres orientales 157 1 dpto 8 \N \N \N -34.615463 -58.4245791 23 1056 \N jvega +1908 2025-05-31 09:51:51.627735+00 2025-05-31 09:51:51.627746+00 f t Invitado Amar invitado-1748685111052@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-887 +1909 2025-05-31 09:58:02.996659+00 2025-05-31 09:58:02.996669+00 f t Invitado Amar invitado-1748685482569@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-888 +1910 2025-05-31 10:59:57.71421+00 2025-05-31 10:59:57.714218+00 f t Invitado Amar invitado-1748689197421@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-889 +1911 2025-05-31 12:03:58.861788+00 2025-05-31 12:03:58.861797+00 f t Invitado Amar invitado-1748693038178@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-890 +1912 2025-05-31 13:06:16.467664+00 2025-05-31 13:06:16.467707+00 f t Invitado Amar invitado-1748696775963@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-891 +1913 2025-05-31 13:08:37.673587+00 2025-05-31 13:08:37.673596+00 f t Invitado Amar invitado-1748696917369@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-892 +1914 2025-05-31 13:24:01.836264+00 2025-05-31 13:24:01.836273+00 f t Invitado Amar invitado-1748697841243@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-893 +1915 2025-05-31 13:44:21.397287+00 2025-05-31 13:44:21.397297+00 f t Invitado Amar invitado-1748699061066@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-894 +1916 2025-05-31 13:54:28.149953+00 2025-05-31 13:54:28.149962+00 f t Invitado Amar invitado-1748699673147@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-895 +1917 2025-05-31 13:55:47.613927+00 2025-05-31 13:55:47.613936+00 f t Invitado Amar invitado-1748699753056@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-896 +1918 2025-05-31 13:57:48.282473+00 2025-05-31 13:57:48.282482+00 f t Invitado Amar invitado-1748699873523@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-897 +1919 2025-05-31 13:58:56.44859+00 2025-05-31 13:58:56.448602+00 f t Invitado Amar invitado-1748699941905@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-898 +1920 2025-05-31 14:48:30.881578+00 2025-05-31 14:48:30.88159+00 f t Invitado Amar invitado-1748702908442@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-899 +1921 2025-05-31 14:55:42.587154+00 2025-05-31 14:55:42.58721+00 f t Invitado Amar invitado-1748703339869@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-900 +1922 2025-05-31 15:06:09.204999+00 2025-05-31 15:06:09.205008+00 f t Invitado Amar invitado-1748703968022@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-901 +1923 2025-05-31 15:17:38.328534+00 2025-05-31 15:17:38.328544+00 f t Invitado Amar invitado-1748704657689@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-902 +1924 2025-05-31 16:00:53.515469+00 2025-05-31 16:00:53.515482+00 f t Invitado Amar invitado-1748707249231@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-903 +1925 2025-05-31 16:15:45.051+00 2025-05-31 16:15:45.051008+00 f t Invitado Amar invitado-1748708144248@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-904 +1926 2025-05-31 16:46:25.688886+00 2025-05-31 16:46:25.688894+00 f t Invitado Amar invitado-1748709986193@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-905 +1927 2025-05-31 17:12:36.207527+00 2025-05-31 17:12:36.20754+00 f t Invitado Amar invitado-1748711555871@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-906 +1928 2025-05-31 17:18:20.502915+00 2025-05-31 17:18:20.502926+00 f t Invitado Amar invitado-1748711899976@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-907 +1929 2025-05-31 17:32:43.29145+00 2025-05-31 17:32:43.291462+00 f t Invitado Amar invitado-1748712762853@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-908 +1930 2025-05-31 17:34:48.494873+00 2025-05-31 17:34:48.494886+00 f t Invitado Amar invitado-1748712888248@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-909 +1931 2025-05-31 17:36:47.319852+00 2025-05-31 17:36:47.319864+00 f t Invitado Amar invitado-1748713007078@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-910 +1932 2025-05-31 17:54:10.886207+00 2025-05-31 17:54:10.886216+00 f t Invitado Amar invitado-1748714050344@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-911 +1933 2025-05-31 18:20:02.680692+00 2025-05-31 18:20:02.680707+00 f t Renata Rey renatarey.rr@gmail.com +54 11 5603 8286 \N Parral 34 1a \N \N -34.6189715 -58.4392834 \N \N \N rrey +1934 2025-05-31 18:24:13.993173+00 2025-05-31 18:24:13.993183+00 f t Agustina Gallo mili.la@hotmail.com +54 11 6926 3099 \N Canada 930 Casa, Talar \N \N -37.3215817 -59.1125615 1 \N \N agallo +1935 2025-05-31 19:12:27.205974+00 2025-05-31 19:12:27.205986+00 f t Invitado Amar invitado-1748718746325@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-912 +1936 2025-05-31 19:50:24.127532+00 2025-05-31 19:50:24.127544+00 f t Invitado Amar invitado-1748721023637@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-913 +1937 2025-05-31 20:50:02.426738+00 2025-05-31 20:50:02.426752+00 f t Elizabeth Acuña lizbethv7666@gmail.com +54 11 2453 0033 \N superi 2942 casa \N \N \N -34.5603828 -58.4731564 45 1054 \N eacuna +1938 2025-05-31 20:55:39.921442+00 2025-05-31 20:55:39.921453+00 f t Invitado Amar invitado-1748724939473@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-914 +1939 2025-05-31 21:29:01.253887+00 2025-05-31 21:29:01.253902+00 f t Invitado Amar invitado-1748726940615@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-915 +1940 2025-05-31 21:46:09.871773+00 2025-05-31 21:46:09.871826+00 f t Alejandra Beatriz Lopez alebealopez49@gmail.com 5491131886327 \N Peron 2517 \N \N FEMALE 1965-12-31 -34.6074391 -58.4022841 18 1052 \N alopez-2 +1941 2025-05-31 21:49:37.094117+00 2025-05-31 21:49:37.094127+00 f t Verónica Gorgal veronicagorgal@gmail.com 5491135779035 \N Martínez Castro 1259 dto 1 \N FEMALE 1980-03-06 -34.6452126 -58.4706281 5 1053 \N vgorgal +1942 2025-05-31 22:13:29.407066+00 2025-05-31 22:13:29.407081+00 f t Invitado Amar invitado-1748729608635@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-916 +1943 2025-05-31 22:34:47.397914+00 2025-05-31 22:34:47.397927+00 f t Invitado Amar invitado-1748730886620@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-917 +1944 2025-05-31 23:40:15.96499+00 2025-05-31 23:40:15.965+00 f t Invitado Amar invitado-1748734815783@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-918 +1945 2025-05-31 23:41:09.189316+00 2025-05-31 23:41:09.189328+00 f t Invitado Amar invitado-1748734869262@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-919 +1946 2025-05-31 23:44:32.267253+00 2025-05-31 23:44:32.267267+00 f t Invitado Amar invitado-1748735071817@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-920 +1947 2025-05-31 23:48:59.35796+00 2025-05-31 23:48:59.357972+00 f t Invitado Amar invitado-1748735339502@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-921 +1948 2025-06-01 00:01:00.914517+00 2025-06-01 00:01:00.914531+00 f t Invitado Amar invitado-1748736059989@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-922 +1949 2025-06-01 00:02:43.851205+00 2025-06-01 00:02:43.851216+00 f t Invitado Amar invitado-1748736163421@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-923 +1950 2025-06-01 00:37:53.234096+00 2025-06-01 00:37:53.234104+00 f t Invitado Amar invitado-1748738269027@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-924 +1951 2025-06-01 00:51:10.70831+00 2025-06-01 00:51:10.708319+00 f t Invitado Amar invitado-1748739070250@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-925 +1952 2025-06-01 02:22:32.656306+00 2025-06-01 02:22:32.65632+00 f t Invitado Amar invitado-1748744552228@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-926 +1953 2025-06-01 02:31:57.966375+00 2025-06-01 02:31:57.966388+00 f t Invitado Amar invitado-1748745117365@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-927 +1954 2025-06-01 03:59:52.924835+00 2025-06-01 03:59:52.924845+00 f t Invitado Amar invitado-1748750391738@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-928 +1955 2025-06-01 04:24:16.086483+00 2025-06-01 04:24:16.086492+00 f t Invitado Amar invitado-1748751853923@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-929 +1956 2025-06-01 05:55:05.11846+00 2025-06-01 05:55:05.118474+00 f t Invitado Amar invitado-1748757135246@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-930 +1957 2025-06-01 06:44:32.556993+00 2025-06-01 06:44:32.557001+00 f t Invitado Amar invitado-1748760270653@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-931 +1958 2025-06-01 06:59:00.912073+00 2025-06-01 06:59:00.912085+00 f t Invitado Amar invitado-1748761140360@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-932 +1959 2025-06-01 07:01:07.195886+00 2025-06-01 07:01:07.195896+00 f t Invitado Amar invitado-1748761267006@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-933 +1960 2025-06-01 07:26:11.040725+00 2025-06-01 07:26:11.040734+00 f t Invitado Amar invitado-1748762770675@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-934 +1961 2025-06-01 11:34:07.98151+00 2025-06-01 11:34:07.981519+00 f t Invitado Amar invitado-1748777650650@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-935 +1962 2025-06-01 11:51:40.977005+00 2025-06-01 11:51:40.977014+00 f t Invitado Amar invitado-1748778701387@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-936 +1963 2025-06-01 12:40:04.00951+00 2025-06-01 12:40:04.009525+00 f t Invitado Amar invitado-1748781603380@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-937 +1964 2025-06-01 12:42:01.389274+00 2025-06-01 12:42:01.389283+00 f t Invitado Amar invitado-1748781720702@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-938 +1965 2025-06-01 12:42:39.100206+00 2025-06-01 12:42:39.100215+00 f t Invitado Amar invitado-1748781757056@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-939 +1966 2025-06-01 13:00:36.923039+00 2025-06-01 13:00:36.92305+00 f t Invitado Amar invitado-1748782836029@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-940 +1967 2025-06-01 13:34:50.108431+00 2025-06-01 13:34:50.108441+00 f t Invitado Amar invitado-1748784889763@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-941 +1968 2025-06-01 13:42:47.625196+00 2025-06-01 13:42:47.625209+00 f t Invitado Amar invitado-1748785367095@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-942 +1969 2025-06-01 14:12:54.800144+00 2025-06-01 14:12:54.800155+00 f t Invitado Amar invitado-1748787174340@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-943 +1970 2025-06-01 14:47:03.576368+00 2025-06-01 14:47:03.576381+00 f t Invitado Amar invitado-1748789223205@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-944 +1971 2025-06-01 14:55:07.299938+00 2025-06-01 14:55:07.299948+00 f t Invitado Amar invitado-1748789706932@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-945 +1972 2025-06-01 16:20:49.455856+00 2025-06-01 16:20:49.455865+00 f t Invitado Amar invitado-1748794849283@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-946 +1973 2025-06-01 18:22:20.262504+00 2025-06-01 18:22:20.262518+00 f t silvia lauria silaunew@gmail.com +54 11 6648 5863 \N junin 2372 CASA \N \N \N \N 113 \N \N slauria +1974 2025-06-01 18:32:34.443779+00 2025-06-01 18:32:34.443791+00 f t Invitado Amar invitado-1748802754276@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-947 +1975 2025-06-01 18:43:21.178847+00 2025-06-01 18:43:21.178856+00 f t Invitado Amar invitado-1748803400803@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-948 +1976 2025-06-01 20:21:43.638283+00 2025-06-01 20:21:43.638291+00 f t Mariela florencia fedele fedelemariela@gmail.com +5491123888889 \N Malvinas argentinas 287 1B \N FEMALE 1985-09-20 -34.6279639 -58.450595 14 1057 \N mfedele +1977 2025-06-01 21:07:21.792715+00 2025-06-01 21:07:21.792729+00 f t Invitado Amar invitado-1748812041198@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-949 +1978 2025-06-01 21:35:56.636904+00 2025-06-01 21:35:56.636916+00 f t Invitado Amar invitado-1748813754495@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-950 +1979 2025-06-01 22:18:38.66242+00 2025-06-01 22:18:38.662429+00 f t Invitado Amar invitado-1748816318255@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-951 +1980 2025-06-01 22:40:54.043485+00 2025-06-01 22:40:54.043497+00 f t Invitado Amar invitado-1748817758105@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-952 +1981 2025-06-01 22:43:16.643433+00 2025-06-01 22:43:16.643442+00 f t Invitado Amar invitado-1748817796918@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-953 +1982 2025-06-01 22:51:00.215995+00 2025-06-01 22:51:00.216005+00 f t Invitado Amar invitado-1748818259431@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-954 +1983 2025-06-01 23:03:23.587+00 2025-06-01 23:03:23.587013+00 f t Invitado Amar invitado-1748819002061@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-955 +1984 2025-06-02 00:48:10.022905+00 2025-06-02 00:48:10.022915+00 f t Invitado Amar invitado-1748825289137@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-956 +1985 2025-06-02 01:05:11.131314+00 2025-06-02 01:05:11.131328+00 f t Invitado Amar invitado-1748826310822@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-957 +1986 2025-06-02 01:15:00.358063+00 2025-06-02 01:15:00.358072+00 f t Invitado Amar invitado-1748826901238@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-958 +1987 2025-06-02 01:22:30.473822+00 2025-06-02 01:22:30.473831+00 f t Invitado Amar invitado-1748827349944@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-959 +1988 2025-06-02 02:13:11.186672+00 2025-06-02 02:13:11.186687+00 f t Invitado Amar invitado-1748830390336@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-960 +1989 2025-06-02 02:13:58.127485+00 2025-06-02 02:13:58.127495+00 f t Invitado Amar invitado-1748830437967@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-961 +1990 2025-06-02 02:28:41.149543+00 2025-06-02 02:28:41.149552+00 f t Invitado Amar invitado-1748831320287@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-962 +1991 2025-06-02 02:42:04.191437+00 2025-06-02 02:42:04.191449+00 f t Invitado Amar invitado-1748832123738@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-963 +1992 2025-06-02 03:20:35.931959+00 2025-06-02 03:20:35.931972+00 f t Invitado Amar invitado-1748834434638@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-964 +1993 2025-06-02 03:57:34.590688+00 2025-06-02 03:57:34.590699+00 f t Invitado Amar invitado-1748836654100@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-965 +1994 2025-06-02 04:00:42.38582+00 2025-06-02 04:00:42.385833+00 f t Invitado Amar invitado-1748836842267@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-966 +1995 2025-06-02 05:25:18.377561+00 2025-06-02 05:25:18.377574+00 f t Invitado Amar invitado-1748841917297@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-967 +1996 2025-06-02 07:44:21.263763+00 2025-06-02 07:44:21.263772+00 f t Invitado Amar invitado-1748850260885@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-968 +1997 2025-06-02 07:51:50.759827+00 2025-06-02 07:51:50.759837+00 f t Invitado Amar invitado-1748850710740@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-969 +1998 2025-06-02 08:31:17.741896+00 2025-06-02 08:31:17.741907+00 f t Invitado Amar invitado-1748853078373@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-970 +1999 2025-06-02 08:57:56.274575+00 2025-06-02 08:57:56.274587+00 f t Invitado Amar invitado-1748854674532@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-971 +2000 2025-06-02 09:06:07.465226+00 2025-06-02 09:06:07.465238+00 f t Invitado Amar invitado-1748855166288@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-972 +2001 2025-06-02 09:07:18.775483+00 2025-06-02 09:07:18.775495+00 f t Invitado Amar invitado-1748855237589@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-973 +2002 2025-06-02 09:10:29.804266+00 2025-06-02 09:10:29.804276+00 f t Invitado Amar invitado-1748855428629@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-974 +2053 2025-06-02 22:49:44.243108+00 2025-06-02 22:49:44.243121+00 f t Invitado Amar invitado-1748904583628@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-1016 +2003 2025-06-02 09:11:25.821005+00 2025-06-02 09:11:25.821015+00 f t Gabriela Avena gabvena@hotmail.com +54 9 11 5496 1161 \N Franco 2892 Casa \N \N \N -34.5814362 -58.5063054 51 1062 \N gavena +2004 2025-06-02 10:46:09.542829+00 2025-06-02 10:46:09.542839+00 f t Invitado Amar invitado-1748861176921@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-975 +2005 2025-06-02 12:02:17.464956+00 2025-06-02 12:02:17.464966+00 f t Invitado Amar invitado-1748865736389@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-976 +2006 2025-06-02 12:42:06.911671+00 2025-06-02 12:42:06.911679+00 f t Invitado Amar invitado-1748868125891@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-977 +2007 2025-06-02 12:42:18.617028+00 2025-06-02 12:42:18.617048+00 f t Invitado Amar invitado-1748868137965@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-978 +2008 2025-06-02 13:01:40.393254+00 2025-06-02 13:01:40.393264+00 f t test test test@test.com +54 11 1112 2222 \N Calle falsa 122 a \N \N 40.1850552 -4.4585093 28 \N \N ttest-5 +2009 2025-06-02 13:09:22.10128+00 2025-06-02 13:09:22.10129+00 f t Invitado Amar invitado-1748869761693@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-979 +2010 2025-06-02 13:15:59.227489+00 2025-06-02 13:15:59.227499+00 f t lucas balbiani lpbalbiani@gmail.com +54 11 6226 4537 \N montañeses 2861 301 \N \N -34.5505235 -58.4547697 25 \N \N lbalbiani +2011 2025-06-02 13:27:06.197047+00 2025-06-02 13:27:06.19706+00 f t Invitado Amar invitado-1748870825293@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-980 +2012 2025-06-02 13:34:52.914283+00 2025-06-02 13:34:52.914293+00 f t Invitado Amar invitado-1748871291170@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-981 +2013 2025-06-02 13:36:16.694823+00 2025-06-02 13:36:16.694833+00 f t Invitado Amar invitado-1748871438984@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-982 +2014 2025-06-02 14:44:17.63824+00 2025-06-02 14:44:17.638252+00 f t Invitado Amar invitado-1748875456298@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-983 +2015 2025-06-02 14:49:22.142896+00 2025-06-02 14:49:22.142907+00 f t Myrian Zorrilla myrianzorrilla.g@gmail.com 5491150139891 \N Riobamba 489 2D \N FEMALE \N -34.6033902 -58.3938719 18 1063 \N mzorrilla +2016 2025-06-02 15:58:38.423868+00 2025-06-02 15:58:38.423879+00 f t Invitado Amar invitado-1748879917708@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-984 +2017 2025-06-02 16:07:05.219012+00 2025-06-02 16:07:05.219026+00 f t Invitado Amar invitado-1748880424065@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-985 +2018 2025-06-02 16:19:03.858435+00 2025-06-02 16:19:03.858449+00 f t Invitado Amar invitado-1748881142732@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-986 +2019 2025-06-02 16:21:56.393505+00 2025-06-02 16:21:56.393515+00 f t Invitado Amar invitado-1748881316111@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-987 +2020 2025-06-02 16:25:49.891429+00 2025-06-02 16:25:49.891439+00 f t Invitado Amar invitado-1748881547329@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-988 +2021 2025-06-02 16:28:19.541598+00 2025-06-02 16:28:19.54161+00 f t Invitado Amar invitado-1748881697371@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-989 +2022 2025-06-02 16:48:28.574581+00 2025-06-02 16:48:28.574595+00 f t Invitado Amar invitado-1748882908126@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-990 +2023 2025-06-02 16:54:29.489787+00 2025-06-02 16:54:29.489798+00 f t Invitado Amar invitado-1748883269802@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-991 +2024 2025-06-02 17:17:45.500182+00 2025-06-02 17:17:45.500194+00 f t Invitado Amar invitado-1748884666399@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-992 +2025 2025-06-02 18:19:00.990521+00 2025-06-02 18:19:00.990532+00 f t Invitado Amar invitado-1748888339747@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-993 +2026 2025-06-02 18:22:21.368079+00 2025-06-02 18:22:21.368089+00 f t Invitado Amar invitado-1748888540653@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-994 +2027 2025-06-02 18:46:09.243515+00 2025-06-02 18:46:09.243525+00 f t Invitado Amar invitado-1748889968513@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-995 +2028 2025-06-02 18:59:07.355127+00 2025-06-02 18:59:07.355134+00 f t Daniela Laura Ferradas dlferradas@gmail.com 91165691978 \N Gurruchaga 630 piso 5to A. Entre Vera y Velasco \N FEMALE 1978-05-16 -34.5960584 -58.4399511 26 1065 \N dferradas +2029 2025-06-02 19:00:15.983618+00 2025-06-02 19:00:15.983629+00 f t Invitado Amar invitado-1748890815488@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-996 +2030 2025-06-02 19:07:28.645364+00 2025-06-02 19:07:28.645374+00 f t Invitado Amar invitado-1748891241116@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-997 +2031 2025-06-02 19:11:34.220058+00 2025-06-02 19:11:34.22007+00 f t Invitado Amar invitado-1748891493634@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-998 +2032 2025-06-02 19:41:22.172989+00 2025-06-02 19:41:22.173001+00 f t Gabriela Couselo gabycouselo@gmail.com +54 11 5746 3985 \N Díaz Colodrero 2580 A \N \N -34.5725066 -58.4866502 29 1068 \N gcouselo +2033 2025-06-02 19:44:09.828335+00 2025-06-02 19:44:09.828343+00 f t Invitado Amar invitado-1748893449948@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-999 +2034 2025-06-02 19:46:03.905485+00 2025-06-02 19:46:03.905495+00 f t Invitado Amar invitado-1748893564085@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1000 +2035 2025-06-02 20:09:26.214114+00 2025-06-02 20:09:26.214126+00 f t Invitado Amar invitado-1748894955046@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1001 +2036 2025-06-02 20:10:14.495263+00 2025-06-02 20:10:14.495273+00 f t Invitado Amar invitado-1748895014326@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1002 +2037 2025-06-02 20:11:10.29769+00 2025-06-02 20:11:10.297703+00 f t Invitado Amar invitado-1748895069865@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1003 +2038 2025-06-02 20:11:14.313845+00 2025-06-02 20:11:14.313854+00 f t Invitado Amar invitado-1748895073364@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-1004 +2039 2025-06-02 20:12:17.320698+00 2025-06-02 20:12:17.320708+00 f t Abril Miñon abruli1224@gmail.com +54 11 2883 7673 \N José manuel estrada 2515 2 6 \N \N -34.5105733 -58.4867686 39 \N \N aminon +2040 2025-06-02 20:12:50.872481+00 2025-06-02 20:12:50.872489+00 f t Invitado Amar invitado-1748895170281@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-1005 +2041 2025-06-02 20:12:54.481706+00 2025-06-02 20:12:54.481719+00 f t Invitado Amar invitado-1748895174325@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1006 +2042 2025-06-02 20:15:27.411688+00 2025-06-02 20:15:27.411698+00 f t Laura de Mársico laulaly89@gmail.com 91139187117 \N Mendoza 1714 3°A \N \N FEMALE 1989-07-31 -34.5547404 -58.4468876 3 1067 \N ldemarsico +2043 2025-06-02 20:18:17.262635+00 2025-06-02 20:18:17.262645+00 f t Invitado Amar invitado-1748895496804@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-1007 +2044 2025-06-02 20:24:31.190888+00 2025-06-02 20:24:31.190899+00 f t Invitado Amar invitado-1748895870450@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1008 +2045 2025-06-02 20:25:52.48151+00 2025-06-02 20:25:52.481519+00 f t Invitado Amar invitado-1748895952010@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1009 +2046 2025-06-02 20:53:55.920593+00 2025-06-02 20:53:55.920605+00 f t Marcela Andrea Codaro codaro_ma@hotmail.com +541160521586 \N Av Juan B Justo 3641 1 A \N \N \N -34.6023287 -58.4555647 34 1092 \N mcodaro +2047 2025-06-02 21:10:31.595574+00 2025-06-02 21:10:31.595587+00 f t Invitado Amar invitado-1748898630984@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-1010 +2048 2025-06-02 21:14:41.944689+00 2025-06-02 21:14:41.9447+00 f t Invitado Amar invitado-1748898881643@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1011 +2049 2025-06-02 21:18:59.488465+00 2025-06-02 21:18:59.488474+00 f t Invitado Amar invitado-1748899139033@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1012 +2050 2025-06-02 21:20:36.40331+00 2025-06-02 21:20:36.403321+00 f t Invitado Amar invitado-1748899236328@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1013 +2051 2025-06-02 22:08:08.396643+00 2025-06-02 22:08:08.396654+00 f t Invitado Amar invitado-1748902087707@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1014 +2052 2025-06-02 22:11:40.001811+00 2025-06-02 22:11:40.00182+00 f t Invitado Amar invitado-1748902296363@example.com 55555555 \N \N \N \N \N 54 \N \N iamar-1015 +2054 2025-06-02 23:41:36.669644+00 2025-06-02 23:41:36.669658+00 f t Invitado Amar invitado-1748907696990@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-1017 +2055 2025-06-02 23:44:52.856431+00 2025-06-02 23:44:52.856441+00 f t Invitado Amar invitado-1748907892377@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1018 +2056 2025-06-03 00:14:18.45585+00 2025-06-03 00:14:18.455863+00 f t Luciana Parodi Lucianavparodi@gmail.com +54 9 11 6606 2185 \N General Juan Esteban Pedernera 3368 Timbre garage \N \N -32.8874313 -68.8195034 70 \N \N lparodi +2057 2025-06-03 00:31:28.709204+00 2025-06-03 00:31:28.709213+00 f t Melissa Guardia nenamel_2005@hotmail.com 5491128243493 \N Av.Olazabal 4237 \N \N FEMALE 1998-10-29 -34.5712484 -58.4770544 \N 1069 \N mguardia +2058 2025-06-03 00:39:45.656216+00 2025-06-03 00:39:45.656226+00 f t Cynthia de piero cynthiadepiero@outlook.com 5491138215027 \N Posadas 375 \N \N FEMALE 1989-06-05 -34.6560467 -58.5407574 50 1070 \N cdepiero +2059 2025-06-03 01:14:50.442616+00 2025-06-03 01:14:50.442625+00 f t Invitado Amar invitado-1748913289674@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1019 +2060 2025-06-03 01:41:42.806458+00 2025-06-03 01:41:42.806471+00 f t Invitado Amar invitado-1748914901453@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1020 +2061 2025-06-03 01:44:21.300995+00 2025-06-03 01:44:21.301007+00 f t Invitado Amar invitado-1748915060472@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1021 +2062 2025-06-03 01:47:45.072603+00 2025-06-03 01:47:45.072612+00 f t Invitado Amar invitado-1748915264620@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1022 +2063 2025-06-03 01:59:54.510652+00 2025-06-03 01:59:54.510663+00 f t Invitado Amar invitado-1748915994147@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1023 +2064 2025-06-03 02:00:56.975295+00 2025-06-03 02:00:56.975304+00 f t Invitado Amar invitado-1748916062101@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1024 +2065 2025-06-03 02:15:08.030153+00 2025-06-03 02:15:08.030162+00 f t Invitado Amar invitado-1748916907364@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-1025 +2066 2025-06-03 02:16:07.582071+00 2025-06-03 02:16:07.582084+00 f t Daniela Ortiz marinasidero@gmail.com +54 11 3877 1707 \N Gutenberg 2887 2do 12 \N \N -34.593219 -58.4956185 43 \N \N dortiz +2067 2025-06-03 02:20:53.595983+00 2025-06-03 02:20:53.595995+00 f t Invitado Amar invitado-1748917239582@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1026 +2068 2025-06-03 02:30:56.051392+00 2025-06-03 02:30:56.051401+00 f t Invitado Amar invitado-1748917855373@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-1027 +2069 2025-06-03 02:53:42.572971+00 2025-06-03 02:53:42.572989+00 f t Invitado Amar invitado-1748919221946@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-1028 +2070 2025-06-03 04:02:16.11715+00 2025-06-03 04:02:16.117159+00 f t Invitado Amar invitado-1748923335366@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-1029 +2071 2025-06-03 08:19:56.598586+00 2025-06-03 08:19:56.598595+00 f t Invitado Amar invitado-1748938795572@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1030 +2072 2025-06-03 09:02:36.586484+00 2025-06-03 09:02:36.586494+00 f t Invitado Amar invitado-1748941355879@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1031 +2073 2025-06-03 10:57:48.996545+00 2025-06-03 10:57:48.996554+00 f t Invitado Amar invitado-1748948268623@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1032 +2074 2025-06-03 11:31:55.070865+00 2025-06-03 11:31:55.070873+00 f t Invitado Amar invitado-1748950314732@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1033 +2075 2025-06-03 11:54:07.130732+00 2025-06-03 11:54:07.13074+00 f t Invitado Amar invitado-1748951646758@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1034 +2076 2025-06-03 11:58:32.39924+00 2025-06-03 11:58:32.399252+00 f t Invitado Amar invitado-1748951911696@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1035 +2077 2025-06-03 13:26:42.54233+00 2025-06-03 13:26:42.542341+00 f t Invitado Amar invitado-1748957201384@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1036 +2078 2025-06-03 13:45:43.995829+00 2025-06-03 13:45:43.995842+00 f t Invitado Amar invitado-1748958343476@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1037 +2079 2025-06-03 14:00:36.669845+00 2025-06-03 14:00:36.669858+00 f t Invitado Amar invitado-1748959235801@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1038 +2080 2025-06-03 14:19:48.471131+00 2025-06-03 14:19:48.471141+00 f t Invitado Amar invitado-1748960386858@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1039 +2081 2025-06-03 14:22:51.686513+00 2025-06-03 14:22:51.686525+00 f t Invitado Amar invitado-1748960571130@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1040 +2082 2025-06-03 14:23:59.022584+00 2025-06-03 14:23:59.022594+00 f t Invitado Amar invitado-1748960639027@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1041 +2083 2025-06-03 14:55:34.297563+00 2025-06-03 14:55:34.297576+00 f t Invitado Amar invitado-1748962533488@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1042 +13307 2025-11-14 17:25:53.411516+00 2025-11-14 17:25:53.411527+00 f t Invitado Amar invitado-1763141152507@example.com 55555555 \N \N \N \N \N 9 \N \N \N +2085 2025-06-03 15:18:29.172124+00 2025-06-03 15:18:29.172133+00 f t Invitado Amar invitado-1748963908474@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1043 +2086 2025-06-03 15:38:38.572758+00 2025-06-03 15:38:38.572771+00 f t Invitado Amar invitado-1748965276268@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-1044 +2087 2025-06-03 15:46:18.348125+00 2025-06-03 15:46:18.348136+00 f t Invitado Amar invitado-1748965577503@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1045 +2088 2025-06-03 15:51:04.70755+00 2025-06-03 15:51:04.707559+00 f t Invitado Amar invitado-1748965864226@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1046 +2089 2025-06-03 15:58:23.978936+00 2025-06-03 15:58:23.978945+00 f t Invitado Amar invitado-1748966303409@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-1047 +2090 2025-06-03 16:03:07.626521+00 2025-06-03 16:03:07.626533+00 f t Invitado Amar invitado-1748966586616@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1048 +2091 2025-06-03 16:13:09.701721+00 2025-06-03 16:13:09.701734+00 f t Invitado Amar invitado-1748967188428@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1049 +2092 2025-06-03 16:14:38.504717+00 2025-06-03 16:14:38.50473+00 f t Invitado Amar invitado-1748967277754@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1050 +2093 2025-06-03 16:43:51.682386+00 2025-06-03 16:43:51.682396+00 f t Invitado Amar invitado-1748969030286@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1051 +2094 2025-06-03 16:56:15.19978+00 2025-06-03 16:56:15.199787+00 f t Jesica Silva jalexandra1993@hotmail.com 91127006739 \N Acevedo 536 7B \N FEMALE 1993-03-17 -34.596961 -58.4390346 26 1073 \N jsilva +2095 2025-06-03 17:20:01.817106+00 2025-06-03 17:20:01.817121+00 f t Invitado Amar invitado-1748970709219@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1052 +2096 2025-06-03 18:36:55.495567+00 2025-06-03 18:36:55.495577+00 f t Invitado Amar invitado-1748975815068@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-1053 +2097 2025-06-03 18:44:48.917512+00 2025-06-03 18:44:48.918003+00 f t Invitado Amar invitado-1748976287818@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1054 +2098 2025-06-03 18:53:11.808396+00 2025-06-03 18:53:11.808406+00 f t test tst test@gmail.com +54 11 1122 2211 \N Calle falsa 112 a \N \N 40.1850552 -4.4585093 35 \N \N ttst +2099 2025-06-03 19:38:09.45134+00 2025-06-03 19:38:09.451381+00 f t Diego Cuffaro diegoacuffaro@gmail.com +54 9 11 2185 5626 \N Vergara 1979 \N \N -34.5276883 -58.489039 82 \N \N dcuffaro +2100 2025-06-03 20:02:39.160319+00 2025-06-03 20:02:39.160328+00 f t Virginia Croatto virginiacroatto@gmail.com +541150978000 \N Estados Unidos 1223 Dto 1 A \N \N \N \N \N 60 1245 \N vcroatto +2101 2025-06-03 20:16:27.895287+00 2025-06-03 20:16:27.895297+00 f t Invitado Amar invitado-1748981787223@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1055 +2102 2025-06-03 20:25:25.947702+00 2025-06-03 20:25:25.947712+00 f t Invitado Amar invitado-1748982323334@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-1056 +2103 2025-06-03 21:01:25.478942+00 2025-06-03 21:01:25.478955+00 f t Invitado Amar invitado-1748984485870@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1057 +2104 2025-06-03 21:58:41.518612+00 2025-06-03 21:58:41.518621+00 f t Invitado Amar invitado-1748987921071@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1058 +2105 2025-06-03 22:01:26.785924+00 2025-06-03 22:01:26.785944+00 f t Invitado Amar invitado-1748988086628@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1059 +2106 2025-06-03 22:05:33.029549+00 2025-06-03 22:05:33.029558+00 f t Clara Carrizo claritacarrizi@gmail.com +54 11 2496 9632 \N Sarmiento entre eva Perón e illia 1587 3b \N \N \N \N \N 70 1074 \N ccarrizo +2107 2025-06-03 22:23:40.004289+00 2025-06-03 22:23:40.004297+00 f t Andres Ariza andres.ariza93@gmail.com +54 11 6640 1100 \N Soldado de la Independencia 1130 7 A \N \N -34.56503 -58.4388635 1 \N \N aariza +2108 2025-06-03 22:29:46.030203+00 2025-06-03 22:29:46.030211+00 f t Invitado Amar invitado-1748989783756@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1060 +2109 2025-06-03 23:02:10.124254+00 2025-06-03 23:02:10.124264+00 f t Invitado Amar invitado-1748991729012@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1061 +2110 2025-06-03 23:30:25.483585+00 2025-06-03 23:30:25.483594+00 f t Invitado Amar invitado-1748993423948@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1062 +2111 2025-06-03 23:41:28.093624+00 2025-06-03 23:41:28.093648+00 f t Invitado Amar invitado-1748994087611@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1063 +2112 2025-06-03 23:43:14.393621+00 2025-06-03 23:43:14.393631+00 f t Invitado Amar invitado-1748994193700@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1064 +2113 2025-06-04 00:15:23.572698+00 2025-06-04 00:15:23.572705+00 f t Julieta Romina Acevedo acevedojulieta532@gmail.com 5491133159952 \N Pasaje Bogado 4413 PB A \N FEMALE 1996-11-22 -32.9257585 -60.6875428 23 1075 \N jacevedo +2114 2025-06-04 01:46:28.297703+00 2025-06-04 01:46:28.297714+00 f t Invitado Amar invitado-1749001587194@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1065 +2115 2025-06-04 01:51:33.486692+00 2025-06-04 01:51:33.486705+00 f t Invitado Amar invitado-1749001892109@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1066 +2116 2025-06-04 01:56:56.87882+00 2025-06-04 01:56:56.878832+00 f t Invitado Amar invitado-1749002216102@example.com 55555555 \N \N \N \N \N 54 \N \N iamar-1067 +2117 2025-06-04 02:01:45.200887+00 2025-06-04 02:01:45.2009+00 f t Invitado Amar invitado-1749002504636@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-1068 +2118 2025-06-04 02:09:29.900109+00 2025-06-04 02:09:29.900118+00 f t Invitado Amar invitado-1749002968600@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1069 +2119 2025-06-04 02:21:34.092044+00 2025-06-04 02:21:34.092053+00 f t Invitado Amar invitado-1749003692894@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-1070 +2120 2025-06-04 02:30:21.156066+00 2025-06-04 02:30:21.156076+00 f t Invitado Amar invitado-1749004219904@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1071 +2121 2025-06-04 02:42:56.939028+00 2025-06-04 02:42:56.939037+00 f t Invitado Amar invitado-1749004976542@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1072 +2122 2025-06-04 02:48:48.376301+00 2025-06-04 02:48:48.376311+00 f t Invitado Amar invitado-1749005328196@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1073 +2123 2025-06-04 02:56:26.92984+00 2025-06-04 02:56:26.929849+00 f t Invitado Amar invitado-1749005786515@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1074 +2124 2025-06-04 03:03:16.149231+00 2025-06-04 03:03:16.149244+00 f t Invitado Amar invitado-1749006197266@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-1075 +2125 2025-06-04 03:38:32.78669+00 2025-06-04 03:38:32.786703+00 f t Invitado Amar invitado-1749008311255@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1076 +2126 2025-06-04 03:45:23.392416+00 2025-06-04 03:45:23.392429+00 f t Claudia Amarilla claudiaamarilla72@hotmail.com +54 11 3872 6944 \N Av. Corrientes 2066 A \N \N \N -34.604635 -58.396216 18 1078 \N camarilla +2127 2025-06-04 05:37:13.398616+00 2025-06-04 05:37:13.398628+00 f t Invitado Amar invitado-1749015433166@example.com 55555555 \N \N \N \N \N 7 \N \N iamar-1077 +2128 2025-06-04 05:38:28.938203+00 2025-06-04 05:38:28.938213+00 f t Florencia Pensotti florencia.pensotti@gmail.com +54 11 4161 7028 \N Avenida Fair 1495 414 \N \N -34.8071408 -58.4851751 7 \N \N fpensotti +2129 2025-06-04 05:47:56.531514+00 2025-06-04 05:47:56.531522+00 f t Luis Eduardo Soto luisoriana96@gmail.com +54 11 5136 5406 \N Espronceda 2359 \N \N -34.7158953 -58.4615379 113 \N \N lsoto +2130 2025-06-04 08:22:30.511113+00 2025-06-04 08:22:30.511123+00 f t Invitado Amar invitado-1749025350537@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1078 +2131 2025-06-04 09:16:56.620944+00 2025-06-04 09:16:56.620956+00 f t Invitado Amar invitado-1749028616225@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1079 +2132 2025-06-04 09:24:27.246592+00 2025-06-04 09:24:27.246601+00 f t Invitado Amar invitado-1749029067031@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1080 +2133 2025-06-04 09:38:30.544323+00 2025-06-04 09:38:30.544338+00 f t Invitado Amar invitado-1749029910502@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1081 +2134 2025-06-04 10:25:46.756596+00 2025-06-04 10:25:46.756608+00 f t Invitado Amar invitado-1749032746145@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-1082 +2135 2025-06-04 11:20:10.754616+00 2025-06-04 11:20:10.754631+00 f t Invitado Amar invitado-1749036010387@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1083 +2136 2025-06-04 12:48:24.662162+00 2025-06-04 12:48:24.662172+00 f t Invitado Amar invitado-1749041304032@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1084 +2137 2025-06-04 12:49:11.834655+00 2025-06-04 12:49:11.834665+00 f t Invitado Amar invitado-1749041351189@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-1085 +2138 2025-06-04 12:51:25.950983+00 2025-06-04 12:51:25.950996+00 f t Invitado Amar invitado-1749041485742@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1086 +2139 2025-06-04 13:27:37.674162+00 2025-06-04 13:27:37.674175+00 f t Invitado Amar invitado-1749043657512@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1087 +2140 2025-06-04 13:37:46.157947+00 2025-06-04 13:37:46.157957+00 f t test testu testa@gmail.com +54 9 11 1111 1111 \N test 111 \N \N \N \N 38 \N \N ttestu +2141 2025-06-04 13:41:44.019659+00 2025-06-04 13:41:44.019669+00 f t Invitado Amar invitado-1749044503432@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1088 +2142 2025-06-04 13:58:52.832113+00 2025-06-04 13:58:52.832126+00 f t Invitado Amar invitado-1749045529775@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-1089 +2143 2025-06-04 14:01:05.608109+00 2025-06-04 14:01:05.60812+00 f t Invitado Amar invitado-1749045665128@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1090 +2144 2025-06-04 14:01:46.79199+00 2025-06-04 14:01:46.791998+00 f t Gaston Ariel Estevez gastonestevez13@gmail.com 91153170966 \N Triunvirato 3335 3c \N MALE 1984-06-24 -34.5714076 -58.4901311 29 1077 \N gestevez +2145 2025-06-04 15:04:13.961963+00 2025-06-04 15:04:13.961974+00 f t Invitado Amar invitado-1749049453411@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1091 +2146 2025-06-04 15:18:45.202392+00 2025-06-04 15:18:45.202406+00 f t Invitado Amar invitado-1749050324519@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1092 +2147 2025-06-04 15:19:06.429893+00 2025-06-04 15:19:06.429904+00 f t Invitado Amar invitado-1749050346045@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1093 +2148 2025-06-04 15:34:48.143672+00 2025-06-04 15:34:48.143682+00 f t Invitado Amar invitado-1749051287770@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1094 +2149 2025-06-04 15:36:26.842466+00 2025-06-04 15:36:26.842476+00 f t Invitado Amar invitado-1749051386485@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1095 +2150 2025-06-04 15:42:19.952656+00 2025-06-04 15:42:19.952667+00 f t Invitado Amar invitado-1749051740073@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1096 +2151 2025-06-04 15:43:35.500144+00 2025-06-04 15:43:35.500154+00 f t Invitado Amar invitado-1749051814769@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1097 +2152 2025-06-04 15:44:55.524032+00 2025-06-04 15:44:55.524041+00 f t Invitado Amar invitado-1749051895955@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1098 +2153 2025-06-04 16:11:37.741724+00 2025-06-04 16:11:37.741738+00 f t Invitado Amar invitado-1749053466616@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1099 +2154 2025-06-04 16:14:42.897049+00 2025-06-04 16:14:42.897063+00 f t Invitado Amar invitado-1749053682502@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1100 +2155 2025-06-04 16:15:33.522544+00 2025-06-04 16:15:33.522554+00 f t Invitado Amar invitado-1749053732883@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1101 +2156 2025-06-04 16:15:37.015806+00 2025-06-04 16:15:37.015819+00 f t Invitado Amar invitado-1749053736259@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1102 +2157 2025-06-04 16:16:38.198435+00 2025-06-04 16:16:38.198443+00 f t Silvia Raffe silraffe@gmail.com +5491131085757 \N Zapiola 4251 1A \N FEMALE 1965-09-17 -34.5470674 -58.4776354 31 1080 \N sraffe +2158 2025-06-04 16:25:52.971037+00 2025-06-04 16:25:52.971068+00 f t Invitado Amar invitado-1749054322113@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1103 +2159 2025-06-04 16:28:57.585613+00 2025-06-04 16:28:57.585623+00 f t Andrea Beltran andreadulzuras@gmail.com +5491168824233 \N Marconi 5566 Munro \N FEMALE 1975-01-13 -34.5362826 -58.533305 156 1081 \N abeltran +2161 2025-06-04 16:30:31.078738+00 2025-06-04 16:30:31.078747+00 f t Invitado Amar invitado-1749054630669@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1104 +2162 2025-06-04 17:12:35.051843+00 2025-06-04 17:12:35.051859+00 f t Martin Bardelli comarg@proton.me +54 11 3024 6294 \N De la industria 918 Pb \N \N \N \N 112 \N \N mbardelli +2163 2025-06-04 17:22:35.475508+00 2025-06-04 17:22:35.475518+00 f t Invitado Amar invitado-1749057754795@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1105 +2164 2025-06-04 18:07:22.19865+00 2025-06-04 18:07:22.198657+00 f t Alejandra Cecilia Touriñan mariposamorfazul@hotmail.com +5491151037002 \N Pedro Lozano 3940 dpto 2 \N FEMALE 1972-06-20 \N \N 21 1082 \N atourinan +2165 2025-06-04 18:17:09.6086+00 2025-06-04 18:17:09.608612+00 f t Invitado Amar invitado-1749061030343@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1106 +2166 2025-06-04 18:26:02.46147+00 2025-06-04 18:26:02.461483+00 f t Camila Salgado camila.salgadomondaca@gmail.com +56999140891 \N Av. Libertador 2681 1C \N FEMALE 1987-02-28 \N \N 1 1083 \N csalgado +2167 2025-06-04 18:42:20.295131+00 2025-06-04 18:42:20.295142+00 f t Invitado Amar invitado-1749062541069@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-1107 +2168 2025-06-04 18:44:15.770132+00 2025-06-04 18:44:15.770142+00 f t Invitado Amar invitado-1749062656236@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-1108 +2169 2025-06-04 20:03:49.185094+00 2025-06-04 20:03:49.185107+00 f t Invitado Amar invitado-1749067459882@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1109 +2170 2025-06-04 20:05:42.367456+00 2025-06-04 20:05:42.36747+00 f t Invitado Amar invitado-1749067543406@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1110 +2171 2025-06-04 20:33:57.571048+00 2025-06-04 20:33:57.571062+00 f t Invitado Amar invitado-1749069236831@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1111 +2172 2025-06-04 20:47:07.060071+00 2025-06-04 20:47:07.060085+00 f t Invitado Amar invitado-1749070026340@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1112 +2173 2025-06-04 21:07:16.246278+00 2025-06-04 21:07:16.246291+00 f t Invitado Amar invitado-1749071237167@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1113 +13308 2025-11-14 17:31:39.442921+00 2025-11-14 17:31:39.44293+00 f t Invitado Amar invitado-1763141498781@example.com 55555555 \N \N \N \N \N 9 \N \N \N +2175 2025-06-04 21:09:59.10319+00 2025-06-04 21:09:59.1032+00 f t Invitado Amar invitado-1749071400253@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1114 +2176 2025-06-04 21:14:33.895793+00 2025-06-04 21:14:33.895804+00 f t Invitado Amar invitado-1749071675005@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1115 +2177 2025-06-04 21:15:57.214291+00 2025-06-04 21:15:57.214313+00 f t Invitado Amar invitado-1749071756939@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1116 +2178 2025-06-04 21:56:10.20777+00 2025-06-04 21:56:10.207782+00 f t Invitado Amar invitado-1749074169957@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1117 +2179 2025-06-04 22:03:38.459336+00 2025-06-04 22:03:38.459348+00 f t Invitado Amar invitado-1749074617856@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-1118 +2180 2025-06-04 22:22:57.27367+00 2025-06-04 22:22:57.273684+00 f t Invitado Amar invitado-1749075776178@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1119 +2181 2025-06-04 23:20:30.153788+00 2025-06-04 23:20:30.153798+00 f t Invitado Amar invitado-1749079228772@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1120 +2182 2025-06-04 23:38:42.630506+00 2025-06-04 23:38:42.630515+00 f t Invitado Amar invitado-1749080322229@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1121 +2183 2025-06-05 00:09:22.646987+00 2025-06-05 00:09:22.647001+00 f t Invitado Amar invitado-1749082165657@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1122 +2184 2025-06-05 00:12:04.236028+00 2025-06-05 00:12:04.236038+00 f t Invitado Amar invitado-1749082322620@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1123 +2185 2025-06-05 00:57:01.799406+00 2025-06-05 00:57:01.79942+00 f t Invitado Amar invitado-1749085021017@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1124 +2186 2025-06-05 01:34:42.71604+00 2025-06-05 01:34:42.716052+00 f t Invitado Amar invitado-1749087282176@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1125 +2187 2025-06-05 01:38:23.606647+00 2025-06-05 01:38:23.606661+00 f t Invitado Amar invitado-1749087505664@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1126 +2188 2025-06-05 01:42:03.881689+00 2025-06-05 01:42:03.881703+00 f t Invitado Amar invitado-1749087726186@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1127 +2189 2025-06-05 02:26:53.199085+00 2025-06-05 02:26:53.199097+00 f t Invitado Amar invitado-1749090412770@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1128 +2190 2025-06-05 02:30:35.154563+00 2025-06-05 02:30:35.154572+00 f t Invitado Amar invitado-1749090633577@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-1129 +2191 2025-06-05 02:45:52.741362+00 2025-06-05 02:45:52.741376+00 f t Invitado Amar invitado-1749091552301@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1130 +2192 2025-06-05 02:46:23.093107+00 2025-06-05 02:46:23.093118+00 f t Invitado Amar invitado-1749091582941@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1131 +2193 2025-06-05 03:55:03.074742+00 2025-06-05 03:55:03.074758+00 f t Invitado Amar invitado-1749095702169@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1132 +2194 2025-06-05 03:55:47.232775+00 2025-06-05 03:55:47.232784+00 f t Invitado Amar invitado-1749095745879@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-1133 +2195 2025-06-05 04:14:06.349932+00 2025-06-05 04:14:06.349942+00 f t Invitado Amar invitado-1749096845458@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1134 +2196 2025-06-05 04:14:27.028521+00 2025-06-05 04:14:27.028531+00 f t Invitado Amar invitado-1749096867191@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-1135 +2197 2025-06-05 04:16:17.61949+00 2025-06-05 04:16:17.619502+00 f t Invitado Amar invitado-1749096978169@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-1136 +2198 2025-06-05 04:24:36.172797+00 2025-06-05 04:24:36.172807+00 f t Invitado Amar invitado-1749097475605@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1137 +2199 2025-06-05 04:36:42.187216+00 2025-06-05 04:36:42.187229+00 f t Invitado Amar invitado-1749098202101@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1138 +2200 2025-06-05 05:45:42.593738+00 2025-06-05 05:45:42.593747+00 f t Invitado Amar invitado-1749102340556@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-1139 +2201 2025-06-05 05:56:50.103289+00 2025-06-05 05:56:50.103298+00 f t Invitado Amar invitado-1749103009793@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1140 +2202 2025-06-05 08:55:26.61946+00 2025-06-05 08:55:26.619473+00 f t Invitado Amar invitado-1749113726226@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1141 +2203 2025-06-05 08:56:49.300337+00 2025-06-05 08:56:49.300346+00 f t Alexis Natalio Ghiglieri ghiglieri.alexis@gmail.com +54 11 3289 2429 \N Paraguay 2302 Piso 6 dpto 1 \N \N \N \N 112 1086 \N aghiglieri +2204 2025-06-05 10:53:05.034483+00 2025-06-05 10:53:05.034495+00 f t Invitado Amar invitado-1749120784734@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1142 +2205 2025-06-05 10:53:44.456926+00 2025-06-05 10:53:44.456937+00 f t Invitado Amar invitado-1749120824651@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1143 +2206 2025-06-05 10:56:10.753167+00 2025-06-05 10:56:10.753177+00 f t Invitado Amar invitado-1749120966951@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1144 +2207 2025-06-05 11:23:46.342579+00 2025-06-05 11:23:46.34259+00 f t Invitado Amar invitado-1749122625961@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1145 +2208 2025-06-05 11:51:16.814987+00 2025-06-05 11:51:16.814997+00 f t Invitado Amar invitado-1749124276814@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1146 +2209 2025-06-05 13:42:32.891266+00 2025-06-05 13:42:32.891276+00 f t Invitado Amar invitado-1749130949871@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1147 +2210 2025-06-05 14:05:55.961216+00 2025-06-05 14:05:55.961228+00 f t Invitado Amar invitado-1749132354826@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1148 +13309 2025-11-14 17:39:17.182306+00 2025-11-14 17:39:17.182314+00 f t Invitado Amar invitado-1763141956715@example.com 55555555 \N \N \N \N \N 9 \N \N \N +2212 2025-06-05 14:43:30.348517+00 2025-06-05 14:43:30.348527+00 f t Invitado Amar invitado-1749134608686@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1149 +2213 2025-06-05 14:58:58.429642+00 2025-06-05 14:58:58.429654+00 f t Invitado Amar invitado-1749135537016@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1150 +2214 2025-06-05 15:15:10.784072+00 2025-06-05 15:15:10.784084+00 f t Invitado Amar invitado-1749136509089@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1151 +2215 2025-06-05 15:19:26.164656+00 2025-06-05 15:19:26.164663+00 f t Maria Alejandra Rebagliati alejandrarebagliati@hotmail.com 91159772742 \N MELIAN 4380 1 10 \N \N FEMALE 1976-09-15 \N \N 31 1088 \N mrebagliati +2216 2025-06-05 15:27:40.278702+00 2025-06-05 15:27:40.278713+00 f t Paula Bettino Paulaandrebettino@gmail.com +54 11 5344 2507 \N Av del barco Centenera 438 11 D \N \N -34.6532299 -58.4210195 14 \N \N pbettino +2217 2025-06-05 16:01:56.417117+00 2025-06-05 16:01:56.417128+00 f t Maria Belen Escudero belescudero@hotmail.com 91140425373 \N San José de calasanz 247 3B \N FEMALE 1985-09-24 -34.6220877 -58.43817 14 1089 \N mescudero +2218 2025-06-05 16:11:58.730107+00 2025-06-05 16:11:58.730117+00 f t Invitado Amar invitado-1749139918365@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1152 +2219 2025-06-05 17:07:17.896957+00 2025-06-05 17:07:17.89697+00 f t Invitado Amar invitado-1749143235548@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-1153 +2220 2025-06-05 17:24:08.871798+00 2025-06-05 17:24:08.871809+00 f t Invitado Amar invitado-1749144248441@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1154 +2221 2025-06-05 18:07:04.37262+00 2025-06-05 18:07:04.372631+00 f t Invitado Amar invitado-1749146823609@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1155 +2222 2025-06-05 18:29:06.724759+00 2025-06-05 18:29:06.724769+00 f t Invitado Amar invitado-1749148146241@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-1156 +2223 2025-06-05 18:48:53.361771+00 2025-06-05 18:48:53.361787+00 f t Invitado Amar invitado-1749149333580@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-1157 +2224 2025-06-05 19:03:49.763208+00 2025-06-05 19:03:49.763218+00 f t Rosa María Conte rosaconte@gmail.com 5491155179018 \N Zelada 4775 Timbre 2 \N FEMALE 1944-12-10 -34.6416316 -58.4937134 65 1084 \N rconte +2225 2025-06-05 19:11:35.718086+00 2025-06-05 19:11:35.718095+00 f t Damian Rudniezki drudniezki@gmail.com 5491138762917 \N Ventura de la Vega 3862 \N \N MALE 1984-12-25 -34.6537728 -58.4144652 40 1091 \N drudniezki +2226 2025-06-05 19:12:11.420246+00 2025-06-05 19:12:11.420259+00 f t Invitado Amar invitado-1749150704683@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1158 +2227 2025-06-05 19:27:54.289915+00 2025-06-05 19:27:54.292546+00 f t Invitado Amar invitado-1749151666113@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1159 +2228 2025-06-05 19:37:41.758516+00 2025-06-05 19:37:41.758529+00 f t Invitado Amar invitado-1749152260600@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-1160 +2229 2025-06-05 19:38:15.581344+00 2025-06-05 19:38:15.581354+00 f t Veronica Silva Gomez ivversilvia@gmail.com +5491140664717 \N Humaitá 6978 \N \N FEMALE 1978-07-09 -34.6458274 -58.5239679 52 1093 \N vsilvagomez +2230 2025-06-05 20:49:20.669945+00 2025-06-05 20:49:20.669954+00 f t Lucila Hernandez Ceballos lucerati15@gmail.com 91122760004 \N Av Rivadavia 2057 dpto 4to "C \N FEMALE 1999-04-15 -34.6093259 -58.3956373 18 1094 \N lhernandezceballos +2231 2025-06-05 21:06:45.975259+00 2025-06-05 21:06:45.97527+00 f t Invitado Amar invitado-1749157605151@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1161 +2232 2025-06-05 21:10:20.328848+00 2025-06-05 21:10:20.328863+00 f t Invitado Amar invitado-1749157818265@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1162 +2233 2025-06-05 21:11:36.838114+00 2025-06-05 21:11:36.838127+00 f t Invitado Amar invitado-1749157894785@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1163 +2235 2025-06-05 22:21:05.649938+00 2025-06-05 22:21:05.649948+00 f t Invitado Amar invitado-1749162064360@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1164 +2236 2025-06-05 22:28:48.008532+00 2025-06-05 22:28:48.008548+00 f t Invitado Amar invitado-1749162527616@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1165 +2237 2025-06-05 22:31:12.385991+00 2025-06-05 22:31:12.386004+00 f t Invitado Amar invitado-1749162671431@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1166 +2238 2025-06-05 22:43:31.781521+00 2025-06-05 22:43:31.781535+00 f t Invitado Amar invitado-1749163411465@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1167 +2239 2025-06-06 00:52:16.187658+00 2025-06-06 00:52:16.187668+00 f t Invitado Amar invitado-1749171135529@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-1168 +2240 2025-06-06 00:58:37.357742+00 2025-06-06 00:58:37.357753+00 f t Invitado Amar invitado-1749171515175@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1169 +2241 2025-06-06 01:12:59.225088+00 2025-06-06 01:12:59.225102+00 f t Ludmila Cano canoludmi35@gmail.com +54 657 816 18 \N Calingasta 199 Casa con portón blanco \N \N -34.7004472 -58.4429915 71 \N \N lcano +2242 2025-06-06 01:23:04.159202+00 2025-06-06 01:23:04.159215+00 f t Invitado Amar invitado-1749172983417@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1170 +2243 2025-06-06 01:23:49.34058+00 2025-06-06 01:23:49.340589+00 f t Invitado Amar invitado-1749173028461@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-1171 +2244 2025-06-06 01:32:44.744331+00 2025-06-06 01:32:44.744342+00 f t Invitado Amar invitado-1749173564237@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-1172 +2245 2025-06-06 01:33:02.57948+00 2025-06-06 01:33:02.579493+00 f t Invitado Amar invitado-1749173582411@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-1173 +2246 2025-06-06 01:33:06.271466+00 2025-06-06 01:33:06.271476+00 f t Invitado Amar invitado-1749173586507@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-1174 +2247 2025-06-06 01:38:09.638191+00 2025-06-06 01:38:09.638203+00 f t Invitado Amar invitado-1749173889152@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1175 +2248 2025-06-06 01:45:39.681296+00 2025-06-06 01:45:39.681311+00 f t Invitado Amar invitado-1749174338986@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1176 +2249 2025-06-06 01:53:41.40851+00 2025-06-06 01:53:41.408524+00 f t Invitado Amar invitado-1749174820638@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1177 +2250 2025-06-06 02:03:19.603457+00 2025-06-06 02:03:19.603469+00 f t Invitado Amar invitado-1749175396955@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-1178 +2251 2025-06-06 02:21:07.611778+00 2025-06-06 02:21:07.611787+00 f t Invitado Amar invitado-1749176466398@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1179 +2252 2025-06-06 02:38:02.4022+00 2025-06-06 02:38:02.402209+00 f t Invitado Amar invitado-1749177481440@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-1180 +2253 2025-06-06 03:11:20.713611+00 2025-06-06 03:11:20.713621+00 f t Invitado Amar invitado-1749179479195@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1181 +2254 2025-06-06 10:44:55.951729+00 2025-06-06 10:44:55.95174+00 f t Invitado Amar invitado-1749206695598@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1182 +2255 2025-06-06 11:29:12.63132+00 2025-06-06 11:29:12.631334+00 f t Invitado Amar invitado-1749209352384@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-1183 +13530 2025-11-17 19:09:26.508487+00 2025-11-17 19:09:26.508497+00 f t Invitado Amar invitado-1763406566486@example.com 55555555 \N \N \N \N \N 113 \N \N \N +2256 2025-06-06 12:24:21.191178+00 2025-06-06 12:24:21.191191+00 f t Invitado Amar invitado-1749212660031@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1184 +2257 2025-06-06 12:25:29.708549+00 2025-06-06 12:25:29.70856+00 f t Invitado Amar invitado-1749212731091@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-1185 +2258 2025-06-06 13:34:01.544873+00 2025-06-06 13:34:01.544882+00 f t Invitado Amar invitado-1749216840734@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-1186 +2259 2025-06-06 14:45:41.679745+00 2025-06-06 14:45:41.679756+00 f t Yazmin Padin padinyazmin@gmail.com +54 11 2672 7708 \N Matheu 1771 17 3 \N \N -34.630253 -58.3980087 44 \N \N ypadin +2260 2025-06-06 15:56:08.298483+00 2025-06-06 15:56:08.298546+00 f t Invitado Amar invitado-1749225367578@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1187 +2261 2025-06-06 16:00:54.745898+00 2025-06-06 16:00:54.745907+00 f t Invitado Amar invitado-1749225654288@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-1188 +2262 2025-06-06 16:22:16.079094+00 2025-06-06 16:22:16.079105+00 f t Invitado Amar invitado-1749226935502@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1189 +2263 2025-06-06 17:03:07.546696+00 2025-06-06 17:03:07.546706+00 f t Invitado Amar invitado-1749229386527@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1190 +2264 2025-06-06 17:07:18.514558+00 2025-06-06 17:07:18.514569+00 f t Invitado Amar invitado-1749229637850@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-1191 +2265 2025-06-06 17:47:05.861765+00 2025-06-06 17:47:05.861778+00 f t Invitado Amar invitado-1749232024940@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-1192 +2266 2025-06-06 18:14:53.649348+00 2025-06-06 18:14:53.649357+00 f t Invitado Amar invitado-1749233691833@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1193 +2267 2025-06-06 18:16:13.66682+00 2025-06-06 18:16:13.666836+00 f t Invitado Amar invitado-1749233772369@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1194 +2268 2025-06-06 18:33:26.914654+00 2025-06-06 18:33:26.914664+00 f t Invitado Amar invitado-1749234805875@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1195 +2269 2025-06-06 18:54:24.256309+00 2025-06-06 18:54:24.25632+00 f t Invitado Amar invitado-1749236063377@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-1196 +2270 2025-06-06 19:15:21.919724+00 2025-06-06 19:15:21.919736+00 f t Invitado Amar invitado-1749237321330@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1197 +2271 2025-06-06 20:11:44.463404+00 2025-06-06 20:11:44.463415+00 f t Hanna Mariani hannacmariani01@gmail.com 91153442507 \N Av.Centenera 438 11D entre Hualfin y Valle \N FEMALE 2001-04-06 -2.1569189 -79.9257869 14 1104 \N hmariani +2272 2025-06-06 22:14:39.041692+00 2025-06-06 22:14:39.041702+00 f t Invitado Amar invitado-1749248078735@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-1198 +2273 2025-06-06 22:57:29.185795+00 2025-06-06 22:57:29.185804+00 f t Invitado Amar invitado-1749250648372@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1199 +2274 2025-06-06 23:24:56.393266+00 2025-06-06 23:24:56.393276+00 f t Invitado Amar invitado-1749252295643@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1200 +2275 2025-06-06 23:48:32.763221+00 2025-06-06 23:48:32.763234+00 f t Invitado Amar invitado-1749253712283@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-1201 +2276 2025-06-06 23:56:14.742011+00 2025-06-06 23:56:14.742021+00 f t Invitado Amar invitado-1749254174351@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1202 +2277 2025-06-07 00:12:10.463114+00 2025-06-07 00:12:10.463126+00 f t Invitado Amar invitado-1749255132010@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1203 +2278 2025-06-07 00:21:30.950591+00 2025-06-07 00:21:30.950603+00 f t Invitado Amar invitado-1749255690540@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-1204 +2279 2025-06-07 00:26:18.251512+00 2025-06-07 00:26:18.251522+00 f t Invitado Amar invitado-1749255979420@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-1205 +2280 2025-06-07 00:55:06.034683+00 2025-06-07 00:55:06.034695+00 f t Invitado Amar invitado-1749257705437@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-1206 +2281 2025-06-07 01:28:13.86343+00 2025-06-07 01:28:13.86344+00 f t Invitado Amar invitado-1749259694206@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1207 +2282 2025-06-07 01:44:34.94273+00 2025-06-07 01:44:34.942743+00 f t Invitado Amar invitado-1749260673805@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1208 +2283 2025-06-07 01:57:18.116346+00 2025-06-07 01:57:18.116356+00 f t Invitado Amar invitado-1749261437541@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-1209 +2284 2025-06-07 02:03:57.78206+00 2025-06-07 02:03:57.78207+00 f t Invitado Amar invitado-1749261837330@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1210 +2285 2025-06-07 02:11:05.217972+00 2025-06-07 02:11:05.217986+00 f t Invitado Amar invitado-1749262264623@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1211 +2286 2025-06-07 02:12:40.715134+00 2025-06-07 02:12:40.715146+00 f t Invitado Amar invitado-1749262360197@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1212 +2287 2025-06-07 02:33:06.218912+00 2025-06-07 02:33:06.218923+00 f t Invitado Amar invitado-1749263585812@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-1213 +2288 2025-06-07 02:53:23.63458+00 2025-06-07 02:53:23.634589+00 f t Invitado Amar invitado-1749264787846@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1214 +2289 2025-06-07 03:11:20.222974+00 2025-06-07 03:11:20.222984+00 f t Invitado Amar invitado-1749265879277@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-1215 +2290 2025-06-07 03:55:31.150048+00 2025-06-07 03:55:31.15006+00 f t Invitado Amar invitado-1749268530753@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-1216 +2291 2025-06-07 04:20:30.299516+00 2025-06-07 04:20:30.299531+00 f t Invitado Amar invitado-1749270030027@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1217 +2292 2025-06-07 04:27:24.118187+00 2025-06-07 04:27:24.118199+00 f t Florencia Julio florencia090378@gmail.com +54 11 4073 8975 \N Corredor bancalari benavidez 3901 2c \N \N \N \N 22 \N \N fjulio-2 +2293 2025-06-07 10:53:09.127038+00 2025-06-07 10:53:09.12705+00 f t Fernando Carranza ferfloyd04@gmail.com +54 11 3932 5413 \N Cristóbal Colón 29 \N \N -34.7392826 -56.0371179 113 \N \N fcarranza +2294 2025-06-07 11:06:58.36752+00 2025-06-07 11:06:58.367531+00 f t Ellen Sánchez ellenquero@gmail.com +54 11 2555 7315 \N Pedernera 45 7A \N \N \N -34.6298577 -58.4639092 4 1107 \N esanchez +2295 2025-06-07 11:11:05.751144+00 2025-06-07 11:11:05.751157+00 f t Invitado Amar invitado-1749294666967@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1218 +2296 2025-06-07 11:19:32.656297+00 2025-06-07 11:19:32.65631+00 f t Invitado Amar invitado-1749295179831@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1219 +2297 2025-06-07 11:21:54.19732+00 2025-06-07 11:21:54.197329+00 f t Fernando Carranza ferdami80@gmail.com +54 11 3932 5413 \N Cristóbal Colón 29 \N \N \N \N 113 \N \N fcarranza-2 +2298 2025-06-07 11:55:46.370479+00 2025-06-07 11:55:46.370489+00 f t Gustavo Ponce de Len tavoponcedeleon@hotmail.com +54 11 5424 2854 \N Fray cayetano Rodriguez 448 16 \N \N -34.6248137 -58.4644673 4 \N \N gponcedelen +2299 2025-06-07 11:59:44.718112+00 2025-06-07 11:59:44.718124+00 f t Invitado Amar invitado-1749297592818@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1220 +2300 2025-06-07 12:13:29.175581+00 2025-06-07 12:13:29.175594+00 f t Invitado Amar invitado-1749298408493@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1221 +2301 2025-06-07 12:32:03.165514+00 2025-06-07 12:32:03.165525+00 f t Invitado Amar invitado-1749299522036@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1222 +2302 2025-06-07 12:50:00.822526+00 2025-06-07 12:50:00.822537+00 f t Invitado Amar invitado-1749300600142@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1223 +2303 2025-06-07 12:50:33.828287+00 2025-06-07 12:50:33.828296+00 f t Invitado Amar invitado-1749300633572@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1224 +2304 2025-06-07 12:54:42.964832+00 2025-06-07 12:54:42.964841+00 f t Invitado Amar invitado-1749300882070@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1225 +2305 2025-06-07 12:55:26.646024+00 2025-06-07 12:55:26.646034+00 f t Invitado Amar invitado-1749300925982@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-1226 +2306 2025-06-07 13:32:24.926493+00 2025-06-07 13:32:24.926516+00 f t Invitado Amar invitado-1749303144340@example.com 55555555 \N \N \N \N \N 69 \N \N iamar-1227 +2307 2025-06-07 13:35:16.357279+00 2025-06-07 13:35:16.357288+00 f t Invitado Amar invitado-1749303315943@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1228 +2308 2025-06-07 13:58:37.929626+00 2025-06-07 13:58:37.929639+00 f t Invitado Amar invitado-1749304717090@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1229 +2309 2025-06-07 14:03:29.497789+00 2025-06-07 14:03:29.4978+00 f t Invitado Amar invitado-1749305007962@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1230 +2310 2025-06-07 14:16:32.841754+00 2025-06-07 14:16:32.841764+00 f t Invitado Amar invitado-1749305787269@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1231 +2311 2025-06-07 14:43:57.186681+00 2025-06-07 14:43:57.186696+00 f t Invitado Amar invitado-1749307435726@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-1232 +2312 2025-06-07 15:14:07.964259+00 2025-06-07 15:14:07.964269+00 f t Invitado Amar invitado-1749309247025@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1233 +2313 2025-06-07 15:16:29.13386+00 2025-06-07 15:16:29.133868+00 f t Invitado Amar invitado-1749309388352@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1234 +2314 2025-06-07 16:15:04.538111+00 2025-06-07 16:15:04.53813+00 f t Sebastian Pérez Sebastianperezb@hotmail.com +54 11 3795 4411 \N Honduras 3882 1 1-2 \N \N 14.0982604 -87.194725 1 \N \N sperez +2315 2025-06-07 16:24:27.222151+00 2025-06-07 16:24:27.222163+00 f t Invitado Amar invitado-1749313466730@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-1235 +2316 2025-06-07 16:52:59.898134+00 2025-06-07 16:52:59.898145+00 f t Invitado Amar invitado-1749315179481@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-1236 +2317 2025-06-07 17:00:36.167268+00 2025-06-07 17:00:36.167282+00 f t Invitado Amar invitado-1749315635855@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1237 +2318 2025-06-07 17:14:47.519442+00 2025-06-07 17:14:47.519451+00 f t Invitado Amar invitado-1749316486868@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1238 +2319 2025-06-07 17:59:19.031249+00 2025-06-07 17:59:19.031261+00 f t Invitado Amar invitado-1749319226740@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-1239 +2320 2025-06-07 18:10:22.25913+00 2025-06-07 18:10:22.259142+00 f t Invitado Amar invitado-1749319822733@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1240 +2321 2025-06-07 18:28:34.143267+00 2025-06-07 18:28:34.143279+00 f t Invitado Amar invitado-1749320913601@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1241 +2322 2025-06-07 18:51:15.415278+00 2025-06-07 18:51:15.415288+00 f t Micaela Rodriguez micaela1993.mrg@gmail.com +54 11 2657 9048 \N Urquiza 2241 2 E \N \N \N \N 112 \N \N mrodriguez-4 +2323 2025-06-07 18:59:57.9216+00 2025-06-07 18:59:57.92161+00 f t Invitado Amar invitado-1749322796606@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-1242 +2324 2025-06-07 19:16:16.199234+00 2025-06-07 19:16:16.199244+00 f t Florencia Boldrini florenboldrini@gmail.com +54 11 3781 0091 \N Yerbal 625 1c \N \N -34.6182767 -58.4398978 14 \N \N fboldrini +2325 2025-06-07 19:42:32.764736+00 2025-06-07 19:42:32.764744+00 f t Invitado Amar invitado-1749325352236@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1243 +2326 2025-06-07 20:50:19.572712+00 2025-06-07 20:50:19.572722+00 f t Invitado Amar invitado-1749329418160@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-1244 +2327 2025-06-07 21:17:46.574499+00 2025-06-07 21:17:46.574511+00 f t Invitado Amar invitado-1749331064459@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1245 +2328 2025-06-07 21:20:53.046732+00 2025-06-07 21:20:53.046745+00 f t Fabiana Robles fsrq26@gmail.com +54 11 6875 0069 \N Tucumán 881 3/30 \N \N 1998-10-26 -34.6012157 -58.3792922 13 1109 \N frobles +2329 2025-06-07 21:44:12.682584+00 2025-06-07 21:44:12.682593+00 f t Invitado Amar invitado-1749332650535@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1246 +2330 2025-06-07 22:05:24.890812+00 2025-06-07 22:05:24.890821+00 f t Invitado Amar invitado-1749333924373@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1247 +2331 2025-06-07 22:12:32.172909+00 2025-06-07 22:12:32.172919+00 f t Edith Sangiao edysangiaoh59@hotmail.com 5491169641216 \N Angaco 4276 \N \N FEMALE 1959-01-16 -34.6274995 -58.4249796 11 1106 \N esangiao +2332 2025-06-07 23:09:23.068224+00 2025-06-07 23:09:23.068236+00 f t Invitado Amar invitado-1749337762609@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1248 +2333 2025-06-07 23:40:23.973781+00 2025-06-07 23:40:23.973791+00 f t Invitado Amar invitado-1749339622254@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1249 +2334 2025-06-07 23:56:59.968411+00 2025-06-07 23:56:59.96842+00 f t Invitado Amar invitado-1749340619355@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-1250 +2335 2025-06-07 23:57:17.018355+00 2025-06-07 23:57:17.018367+00 f t Invitado Amar invitado-1749340703225@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-1251 +2336 2025-06-08 00:39:40.511462+00 2025-06-08 00:39:40.511475+00 f t Invitado Amar invitado-1749343179695@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1252 +2337 2025-06-08 00:42:09.260538+00 2025-06-08 00:42:09.260547+00 f t Invitado Amar invitado-1749343328142@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1253 +2338 2025-06-08 00:51:43.464742+00 2025-06-08 00:51:43.464753+00 f t Invitado Amar invitado-1749343902599@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1254 +2339 2025-06-08 00:55:35.509156+00 2025-06-08 00:55:35.509166+00 f t Invitado Amar invitado-1749344131596@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-1255 +2340 2025-06-08 01:02:21.61406+00 2025-06-08 01:02:21.61407+00 f t Invitado Amar invitado-1749344540930@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1256 +2341 2025-06-08 01:24:56.516339+00 2025-06-08 01:24:56.516348+00 f t Invitado Amar invitado-1749345895845@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1257 +2342 2025-06-08 01:36:29.523459+00 2025-06-08 01:36:29.523471+00 f t Invitado Amar invitado-1749347283551@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1258 +2343 2025-06-08 02:09:37.229689+00 2025-06-08 02:09:37.229699+00 f t Invitado Amar invitado-1749348574074@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1259 +2344 2025-06-08 02:32:39.147446+00 2025-06-08 02:32:39.147455+00 f t Invitado Amar invitado-1749349958492@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1260 +2345 2025-06-08 03:03:32.167958+00 2025-06-08 03:03:32.167969+00 f t Invitado Amar invitado-1749351810660@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-1261 +2346 2025-06-08 03:09:27.072066+00 2025-06-08 03:09:27.072075+00 f t Vanesa Gianoli vanesagianoli@gmail.com +54 9 11 3570 2010 \N Talcahuano 132 4H \N \N -34.60715 -58.3850109 13 \N \N vgianoli +2347 2025-06-08 03:14:30.81194+00 2025-06-08 03:14:30.811954+00 f t Invitado Amar invitado-1749352470628@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1262 +2348 2025-06-08 03:19:18.574369+00 2025-06-08 03:19:18.57438+00 f t Invitado Amar invitado-1749352757586@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1263 +2349 2025-06-08 03:20:39.163741+00 2025-06-08 03:20:39.163755+00 f t Invitado Amar invitado-1749352837500@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1264 +2350 2025-06-08 03:21:36.188455+00 2025-06-08 03:21:36.188466+00 f t Invitado Amar invitado-1749352895744@example.com 55555555 \N \N \N \N \N 86 \N \N iamar-1265 +2351 2025-06-08 03:23:49.651046+00 2025-06-08 03:23:49.651056+00 f t Invitado Amar invitado-1749353029407@example.com 55555555 \N \N \N \N \N 86 \N \N iamar-1266 +2352 2025-06-08 03:25:53.066981+00 2025-06-08 03:25:53.06699+00 f t Invitado Amar invitado-1749353152884@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1267 +2353 2025-06-08 03:36:51.734301+00 2025-06-08 03:36:51.73431+00 f t Invitado Amar invitado-1749353811231@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1268 +2354 2025-06-08 03:38:21.90001+00 2025-06-08 03:38:21.900019+00 f t Invitado Amar invitado-1749353900684@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1269 +2355 2025-06-08 03:39:18.59515+00 2025-06-08 03:39:18.595159+00 f t Invitado Amar invitado-1749353957653@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1270 +2356 2025-06-08 03:40:33.813365+00 2025-06-08 03:40:33.813378+00 f t Invitado Amar invitado-1749354033296@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1271 +2357 2025-06-08 05:25:57.432644+00 2025-06-08 05:25:57.432653+00 f t Invitado Amar invitado-1749360357086@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1272 +2358 2025-06-08 10:15:30.289824+00 2025-06-08 10:15:30.289834+00 f t Invitado Amar invitado-1749377729099@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-1273 +2359 2025-06-08 11:30:47.038152+00 2025-06-08 11:30:47.038161+00 f t Invitado Amar invitado-1749382246712@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-1274 +2360 2025-06-08 11:43:16.472146+00 2025-06-08 11:43:16.472156+00 f t Invitado Amar invitado-1749382995973@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1275 +2361 2025-06-08 12:13:56.561281+00 2025-06-08 12:13:56.561292+00 f t Invitado Amar invitado-1749384837517@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1276 +2362 2025-06-08 12:25:13.592177+00 2025-06-08 12:25:13.592201+00 f t Invitado Amar invitado-1749385513257@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-1277 +2363 2025-06-08 12:36:00.1594+00 2025-06-08 12:36:00.15941+00 f t Invitado Amar invitado-1749386159823@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-1278 +2364 2025-06-08 13:01:13.532335+00 2025-06-08 13:01:13.532348+00 f t Invitado Amar invitado-1749387673197@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-1279 +2365 2025-06-08 13:03:32.576984+00 2025-06-08 13:03:32.576993+00 f t Valeria Esteiro valeriesteriolouzao@gmail.com +54 11 3325 9506 \N República de Italia 1016 \N \N \N \N -34.8039199 -58.3906923 84 1111 \N vesteiro +2366 2025-06-08 13:55:24.935176+00 2025-06-08 13:55:24.935186+00 f t Invitado Amar invitado-1749390923084@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-1280 +2367 2025-06-08 14:19:02.357248+00 2025-06-08 14:19:02.357261+00 f t Invitado Amar invitado-1749392340209@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-1281 +2368 2025-06-08 14:19:06.503254+00 2025-06-08 14:19:06.503264+00 f t Invitado Amar invitado-1749392345667@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1282 +2369 2025-06-08 14:28:14.516664+00 2025-06-08 14:28:14.516675+00 f t Invitado Amar invitado-1749392893985@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1283 +2370 2025-06-08 14:32:07.97729+00 2025-06-08 14:32:07.977299+00 f t Mirna Freitez mirnafreitez@gmail.com +541136000981 \N Av. Rivadavia (frente a la plaza del congreso) 1611 5C \N FEMALE \N \N \N 13 1112 \N mfreitez +2371 2025-06-08 14:53:45.664906+00 2025-06-08 14:53:45.664919+00 f t Invitado Amar invitado-1749394423707@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-1284 +2372 2025-06-08 15:06:13.975141+00 2025-06-08 15:06:13.975152+00 f t Invitado Amar invitado-1749395173750@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1285 +2373 2025-06-08 15:07:30.429977+00 2025-06-08 15:07:30.429987+00 f t Invitado Amar invitado-1749395250473@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1286 +2374 2025-06-08 15:22:50.418404+00 2025-06-08 15:22:50.418413+00 f t Invitado Amar invitado-1749396168498@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-1287 +2375 2025-06-08 15:51:55.60342+00 2025-06-08 15:51:55.603429+00 f t Florentina Gambetta florentinagambettaz@gmail.com +54 387 510 1365 \N Billinghurst 1731 6D \N \N \N -34.5904124 -58.4101139 9 1110 \N fgambetta +2376 2025-06-08 16:14:25.753162+00 2025-06-08 16:14:25.753174+00 f t Invitado Amar invitado-1749399264437@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1288 +2377 2025-06-08 16:15:11.650102+00 2025-06-08 16:15:11.650113+00 f t Paola Giloni Giloni.paola@gmail.com +54 011 3689 3680 \N Santos Dumont 3454 3454 4to 31 \N \N -34.5813704 -58.4467898 38 \N \N pgiloni +2378 2025-06-08 16:46:40.726301+00 2025-06-08 16:46:40.726315+00 f t Invitado Amar invitado-1749401200203@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1289 +2379 2025-06-08 17:36:47.272275+00 2025-06-08 17:36:47.272284+00 f t Invitado Amar invitado-1749404205246@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-1290 +2380 2025-06-08 18:37:37.703252+00 2025-06-08 18:37:37.703265+00 f t Invitado Amar invitado-1749407848077@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-1291 +2381 2025-06-08 19:03:08.164624+00 2025-06-08 19:03:08.164633+00 f t Invitado Amar invitado-1749409387306@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1292 +2382 2025-06-08 19:11:54.640705+00 2025-06-08 19:11:54.640714+00 f t Invitado Amar invitado-1749409913950@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-1293 +2383 2025-06-08 19:19:37.207452+00 2025-06-08 19:19:37.20746+00 f t Invitado Amar invitado-1749410376981@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1294 +2384 2025-06-08 19:31:59.111484+00 2025-06-08 19:31:59.111495+00 f t Alan Bravo alandavid9502@hotmail.com 5491153429561 \N Sans Souci 88 \N \N MALE 2025-01-02 52.5483717 4.6751889 \N 1113 \N abravo +2385 2025-06-08 19:37:05.721854+00 2025-06-08 19:37:05.721861+00 f t Maitena Salvatierra maitenasalvatierra@gmail.com 5491131112604 \N Estomba 650 pb A \N FEMALE 1988-08-24 -34.5849083 -58.4652008 24 1114 \N msalvatierra +2386 2025-06-08 19:42:48.698108+00 2025-06-08 19:42:48.698115+00 f t Carolina Miranda Nuñez cmirandanunez@gmail.com 5491169641253 \N Presidente Luis Sáenz Peña 152 2m \N FEMALE 1990-12-14 -34.6107802 -58.3874586 49 1115 \N cnunez +2387 2025-06-08 20:26:06.72083+00 2025-06-08 20:26:06.720837+00 f t Juanita Urrutia urrutiarey@gmail.com 5491122518690 \N Bauness 1776 \N \N FEMALE 1992-02-23 -34.5812885 -58.4819595 29 1116 \N jurrutia +2388 2025-06-08 21:18:05.82916+00 2025-06-08 21:18:05.829169+00 f t Invitado Amar invitado-1749417483362@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-1295 +2389 2025-06-08 21:20:47.952132+00 2025-06-08 21:20:47.95214+00 f t Invitado Amar invitado-1749417647609@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-1296 +2390 2025-06-08 22:13:16.411683+00 2025-06-08 22:13:16.411692+00 f t Invitado Amar invitado-1749420796228@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1297 +2391 2025-06-08 22:14:03.895014+00 2025-06-08 22:14:03.895028+00 f t Invitado Amar invitado-1749420843464@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1298 +2392 2025-06-08 22:31:51.305498+00 2025-06-08 22:31:51.305506+00 f t Invitado Amar invitado-1749421904361@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1299 +2393 2025-06-08 22:51:23.70648+00 2025-06-08 22:51:23.706489+00 f t Invitado Amar invitado-1749423083014@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1300 +2394 2025-06-08 22:58:56.336313+00 2025-06-08 22:58:56.336322+00 f t Invitado Amar invitado-1749423535935@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1301 +2395 2025-06-08 23:11:20.332219+00 2025-06-08 23:11:20.332229+00 f t Invitado Amar invitado-1749424279732@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-1302 +2396 2025-06-08 23:47:16.741961+00 2025-06-08 23:47:16.741971+00 f t Invitado Amar invitado-1749426436088@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-1303 +2397 2025-06-08 23:53:37.818885+00 2025-06-08 23:53:37.818895+00 f t Romina Kaczka rominakaczka@gmail.com +54 11 5344 9287 \N Av dr los lagos 5850 \N \N \N \N 22 \N \N rkaczka +2398 2025-06-09 00:36:26.3223+00 2025-06-09 00:36:26.322312+00 f t Invitado Amar invitado-1749429384487@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1304 +2399 2025-06-09 00:45:45.915816+00 2025-06-09 00:45:45.915826+00 f t Invitado Amar invitado-1749429945192@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1305 +2400 2025-06-09 01:30:00.305106+00 2025-06-09 01:30:00.305115+00 f t Invitado Amar invitado-1749432599903@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-1306 +2401 2025-06-09 03:17:15.701713+00 2025-06-09 03:17:15.701723+00 f t Invitado Amar invitado-1749439033563@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1307 +2402 2025-06-09 03:25:23.832423+00 2025-06-09 03:25:23.832431+00 f t Invitado Amar invitado-1749439523319@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1308 +2403 2025-06-09 05:42:51.663235+00 2025-06-09 05:42:51.663244+00 f t Invitado Amar invitado-1749447771026@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-1309 +2404 2025-06-09 07:07:19.126937+00 2025-06-09 07:07:19.12695+00 f t Invitado Amar invitado-1749452838364@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-1310 +2405 2025-06-09 09:53:07.339012+00 2025-06-09 09:53:07.339021+00 f t Invitado Amar invitado-1749462786803@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1311 +2406 2025-06-09 11:17:14.639619+00 2025-06-09 11:17:14.639631+00 f t Invitado Amar invitado-1749467833612@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-1312 +2407 2025-06-09 11:33:06.183061+00 2025-06-09 11:33:06.183073+00 f t Andrea Vega contadoravega@gmail.com +54 11 3010 1049 \N \N \N -34.6205897 -58.4413922 14 \N \N avega +2408 2025-06-09 12:03:56.48982+00 2025-06-09 12:03:56.489833+00 f t Invitado Amar invitado-1749470636150@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-1313 +2409 2025-06-09 12:05:46.363632+00 2025-06-09 12:05:46.363646+00 f t Invitado Amar invitado-1749470740918@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-1314 +2410 2025-06-09 12:27:46.783177+00 2025-06-09 12:27:46.783189+00 f t Invitado Amar invitado-1749472066260@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1315 +2411 2025-06-09 12:40:34.427247+00 2025-06-09 12:40:34.427259+00 f t Invitado Amar invitado-1749472833530@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1316 +2412 2025-06-09 13:08:23.235913+00 2025-06-09 13:08:23.235924+00 f t Natalia Gomez nagomez864@gmail.com +54 11 6577 2166 \N Monteagudo 1154 \N \N -34.4735386 -58.6534899 22 \N \N ngomez +2413 2025-06-09 13:15:13.009681+00 2025-06-09 13:15:13.009691+00 f t Invitado Amar invitado-1749474912346@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1317 +2414 2025-06-09 13:25:48.659617+00 2025-06-09 13:25:48.659631+00 f t Invitado Amar invitado-1749475548783@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-1318 +2415 2025-06-09 13:46:12.245953+00 2025-06-09 13:46:12.245961+00 f t Invitado Amar invitado-1749476768722@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-1319 +2416 2025-06-09 13:49:44.232969+00 2025-06-09 13:49:44.232978+00 f t Invitado Amar invitado-1749476983750@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1320 +2417 2025-06-09 13:50:32.36782+00 2025-06-09 13:50:32.367831+00 f t Invitado Amar invitado-1749477031936@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-1321 +2418 2025-06-09 13:51:47.242561+00 2025-06-09 13:51:47.242571+00 f t Invitado Amar invitado-1749477107130@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1322 +2419 2025-06-09 13:52:45.061724+00 2025-06-09 13:52:45.061734+00 f t Invitado Amar invitado-1749477164961@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1323 +2420 2025-06-09 13:56:04.041219+00 2025-06-09 13:56:04.041231+00 f t Invitado Amar invitado-1749477365338@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1324 +2421 2025-06-09 14:00:45.680826+00 2025-06-09 14:00:45.680835+00 f t Invitado Amar invitado-1749477645070@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1325 +2422 2025-06-09 14:11:35.402958+00 2025-06-09 14:11:35.402967+00 f t Invitado Amar invitado-1749478294660@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-1326 +2423 2025-06-09 14:35:16.255428+00 2025-06-09 14:35:16.255437+00 f t Patricia Alfonso pointravel@hotmail.com +54 11 5525 8204 \N Avenida Alvear 501 Lote 42 \N \N -34.4132997 -58.6919681 22 \N \N palfonso +2424 2025-06-09 14:46:17.371286+00 2025-06-09 14:46:17.371298+00 f t Invitado Amar invitado-1749480376479@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-1327 +2425 2025-06-09 15:32:55.922068+00 2025-06-09 15:32:55.922084+00 f t Esteban Parisi esteban.parisi@gmail.com +54 59118001 \N av chiclana 2951 Casa \N \N -34.6336213 -58.4102776 44 \N \N eparisi +2426 2025-06-09 16:27:49.683866+00 2025-06-09 16:27:49.683878+00 f t Invitado Amar invitado-1749486469277@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-1328 +2427 2025-06-09 16:30:55.401797+00 2025-06-09 16:30:55.401809+00 f t Invitado Amar invitado-1749486654774@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-1329 +2428 2025-06-09 16:31:06.013253+00 2025-06-09 16:31:06.013263+00 f t Invitado Amar invitado-1749486666189@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1330 +2429 2025-06-09 16:41:40.180379+00 2025-06-09 16:41:40.180389+00 f t Invitado Amar invitado-1749487299765@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1331 +2430 2025-06-09 16:43:21.650184+00 2025-06-09 16:43:21.650195+00 f t Invitado Amar invitado-1749487401192@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1332 +2431 2025-06-09 16:44:29.293587+00 2025-06-09 16:44:29.293601+00 f t Invitado Amar invitado-1749487468858@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1333 +2432 2025-06-09 16:49:00.077507+00 2025-06-09 16:49:00.077521+00 f t Invitado Amar invitado-1749487739648@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1334 +2433 2025-06-09 16:56:14.129939+00 2025-06-09 16:56:14.129948+00 f t Edith González edigonzalezpe@gmail.com +54 11 2173 4450 \N Sarmiento 1287 5 3 \N \N \N \N \N 112 1119 \N egonzalez +2434 2025-06-09 17:00:48.311939+00 2025-06-09 17:00:48.311948+00 f t Invitado Amar invitado-1749488447777@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1335 +2435 2025-06-09 17:22:57.498683+00 2025-06-09 17:22:57.498692+00 f t Invitado Amar invitado-1749489777069@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1336 +2436 2025-06-09 17:38:12.64656+00 2025-06-09 17:38:12.64657+00 f t Invitado Amar invitado-1749490691825@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1337 +2437 2025-06-09 17:38:50.844472+00 2025-06-09 17:38:50.844483+00 f t Invitado Amar invitado-1749490730667@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1338 +2438 2025-06-09 18:14:20.708585+00 2025-06-09 18:14:20.708594+00 f t Invitado Amar invitado-1749492859541@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1339 +2439 2025-06-09 18:33:53.083717+00 2025-06-09 18:33:53.083726+00 f t Invitado Amar invitado-1749494032703@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-1340 +2442 2025-06-09 19:03:04.872088+00 2025-06-09 19:03:04.872097+00 f t Invitado Amar invitado-1749495784612@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1343 +2443 2025-06-09 19:23:44.898315+00 2025-06-09 19:23:44.898326+00 f t Invitado Amar invitado-1749497024347@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1344 +2444 2025-06-09 19:31:05.930023+00 2025-06-09 19:31:05.930034+00 f t Invitado Amar invitado-1749497797023@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-1345 +2445 2025-06-09 19:59:37.471126+00 2025-06-09 19:59:37.471135+00 f t Invitado Amar invitado-1749499176634@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-1346 +2446 2025-06-09 20:24:45.590453+00 2025-06-09 20:24:45.590463+00 f t Invitado Amar invitado-1749500684306@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1347 +2447 2025-06-09 20:25:57.044923+00 2025-06-09 20:25:57.044936+00 f t Invitado Amar invitado-1749500757736@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1348 +2448 2025-06-09 20:33:19.969787+00 2025-06-09 20:33:19.9698+00 f t Invitado Amar invitado-1749501199467@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1349 +2449 2025-06-09 20:34:36.406307+00 2025-06-09 20:34:36.406316+00 f t Invitado Amar invitado-1749501275900@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1350 +2450 2025-06-09 20:46:16.476456+00 2025-06-09 20:46:16.476467+00 f t Norma Beatriz Bruzone normabruzzone@gmail.com 5491168014065 \N O'HIGGINS 4475 5° C ( entre Arias y Ramallo ) \N FEMALE 1963-04-15 -34.5404705 -58.4689293 25 1117 \N nbruzone +2451 2025-06-09 20:47:17.352906+00 2025-06-09 20:47:17.352916+00 f t Invitado Amar invitado-1749502036605@example.com 55555555 \N \N \N \N \N 47 \N \N iamar-1351 +2452 2025-06-09 20:57:26.986411+00 2025-06-09 20:57:26.98642+00 f t Invitado Amar invitado-1749502646442@example.com 55555555 \N \N \N \N \N 86 \N \N iamar-1352 +2453 2025-06-09 22:13:06.103393+00 2025-06-09 22:13:06.103406+00 f t Invitado Amar invitado-1749508331203@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-1353 +2454 2025-06-09 22:14:20.612664+00 2025-06-09 22:14:20.612674+00 f t Natalia Tocci ntocci@gmail.com +54 11 2662 4225 \N Granville 588 \N \N FEMALE \N -34.6929154 -58.6172645 146 \N \N ntocci +2455 2025-06-09 22:16:55.699903+00 2025-06-09 22:16:55.699911+00 f t Invitado Amar invitado-1749507414614@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-1354 +2456 2025-06-09 22:32:48.534479+00 2025-06-09 22:32:48.534488+00 f t Invitado Amar invitado-1749508368076@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-1355 +2457 2025-06-09 22:45:31.796714+00 2025-06-09 22:45:31.796727+00 f t Invitado Amar invitado-1749509131234@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1356 +2458 2025-06-09 23:24:12.990557+00 2025-06-09 23:24:12.990568+00 f t Invitado Amar invitado-1749511450752@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1357 +2459 2025-06-09 23:56:48.386796+00 2025-06-09 23:56:48.386806+00 f t Invitado Amar invitado-1749513406502@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-1358 +2460 2025-06-10 00:14:14.932414+00 2025-06-10 00:14:14.93243+00 f t Invitado Amar invitado-1749514454450@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1359 +2461 2025-06-10 00:46:12.234356+00 2025-06-10 00:46:12.234366+00 f t Laura Agustina Aguirre aguirrelauraagustina@gmail.com 5491141609488 \N Av Pavón 3758 piso 10 Dpto B \N FEMALE 1990-08-19 -34.6304357 -58.4171546 11 1120 \N laguirre +2462 2025-06-10 00:51:28.773167+00 2025-06-10 00:51:28.773177+00 f t Alejandra paola capristo paolaalecapristo@gmail.com 5491163068332 \N Avenida Díaz Vélez 4145 piso 10 A \N FEMALE 1977-10-24 -34.6085309 -58.4254077 23 1121 \N acapristo +2463 2025-06-10 01:07:43.622718+00 2025-06-10 01:07:43.622731+00 f t Invitado Amar invitado-1749517663193@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1360 +2464 2025-06-10 01:34:48.414483+00 2025-06-10 01:34:48.414493+00 f t Invitado Amar invitado-1749519288002@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1361 +2465 2025-06-10 01:39:45.354143+00 2025-06-10 01:39:45.354156+00 f t Invitado Amar invitado-1749519584900@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1362 +2466 2025-06-10 01:44:23.584544+00 2025-06-10 01:44:23.584557+00 f t Invitado Amar invitado-1749519862678@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-1363 +2467 2025-06-10 02:29:21.781381+00 2025-06-10 02:29:21.781392+00 f t Invitado Amar invitado-1749522562825@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1364 +2468 2025-06-10 02:43:54.824937+00 2025-06-10 02:43:54.824947+00 f t Invitado Amar invitado-1749523434361@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1365 +2469 2025-06-10 02:56:41.867116+00 2025-06-10 02:56:41.867124+00 f t Invitado Amar invitado-1749524201318@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1366 +2470 2025-06-10 03:08:06.140202+00 2025-06-10 03:08:06.140213+00 f t Invitado Amar invitado-1749524886002@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1367 +2471 2025-06-10 04:20:40.725077+00 2025-06-10 04:20:40.725088+00 f t Invitado Amar invitado-1749529237963@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-1368 +2472 2025-06-10 05:28:28.530117+00 2025-06-10 05:28:28.530129+00 f t Invitado Amar invitado-1749533307644@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1369 +2473 2025-06-10 05:45:50.323398+00 2025-06-10 05:45:50.323409+00 f t Invitado Amar invitado-1749534349403@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-1370 +2474 2025-06-10 08:30:13.018583+00 2025-06-10 08:30:13.018596+00 f t Invitado Amar invitado-1749544214357@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1371 +2475 2025-06-10 10:24:22.031776+00 2025-06-10 10:24:22.031791+00 f t Invitado Amar invitado-1749551062116@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-1372 +2476 2025-06-10 10:27:54.06805+00 2025-06-10 10:27:54.068059+00 f t Invitado Amar invitado-1749551274351@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-1373 +2477 2025-06-10 11:13:47.340927+00 2025-06-10 11:13:47.340942+00 f t Invitado Amar invitado-1749554026373@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-1374 +2478 2025-06-10 11:19:33.604199+00 2025-06-10 11:19:33.60421+00 f t Invitado Amar invitado-1749554372134@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1375 +2479 2025-06-10 12:08:41.327312+00 2025-06-10 12:08:41.327327+00 f t Invitado Amar invitado-1749557320769@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1376 +2480 2025-06-10 12:23:17.155909+00 2025-06-10 12:23:17.155925+00 f t Invitado Amar invitado-1749558196990@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-1377 +2481 2025-06-10 12:36:39.357317+00 2025-06-10 12:36:39.357329+00 f t Invitado Amar invitado-1749558998956@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-1378 +2482 2025-06-10 12:40:14.275698+00 2025-06-10 12:40:14.275709+00 f t Invitado Amar invitado-1749559213061@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1379 +2483 2025-06-10 12:58:34.63693+00 2025-06-10 12:58:34.636941+00 f t Invitado Amar invitado-1749560312401@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-1380 +2484 2025-06-10 13:06:21.885542+00 2025-06-10 13:06:21.885549+00 f t Mercedes Alonso mechaalonso@hotmail.com 91156442211 \N Pasaje inca 3880 depto 301 \N FEMALE \N 28.1387525 -15.6652369 23 1122 \N malonso +2485 2025-06-10 13:12:20.59248+00 2025-06-10 13:12:20.592494+00 f t Invitado Amar invitado-1749561140194@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1381 +2486 2025-06-10 13:45:05.881001+00 2025-06-10 13:45:05.881011+00 f t Alejandra Rocha rocha.alejandra@hotmail.com 5491163500826 \N Helguera 570 entre las calles Velez Sarfield y Espeleta \N FEMALE \N -34.6798235 -58.3745491 73 1123 \N arocha +2487 2025-06-10 14:18:43.1288+00 2025-06-10 14:18:43.128813+00 f t Invitado Amar invitado-1749565122643@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-1382 +2488 2025-06-10 14:41:49.763194+00 2025-06-10 14:41:49.763208+00 f t Invitado Amar invitado-1749566508200@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1383 +2489 2025-06-10 14:47:18.061214+00 2025-06-10 14:47:18.061222+00 f t Javier Rodriguez Barnes estebanjavierrb@gmail.com 91150208894 \N Caseros 468 \N \N MALE \N -34.7711681 -58.4133165 71 1124 \N jrodriguezbarnes +2490 2025-06-10 15:11:39.906957+00 2025-06-10 15:11:39.906967+00 f t Juan Facundo Barbosa facundo.barboza@live.com.ar 91122959633 \N Emilio Mitre 87 piso 4 dpto 14 \N MALE 1989-01-01 -34.6228531 -58.4438691 14 1125 \N jbarbosa +2491 2025-06-10 15:18:08.498116+00 2025-06-10 15:18:08.498125+00 f t Invitado Amar invitado-1749568687702@example.com 55555555 \N \N \N \N \N 86 \N \N iamar-1384 +2492 2025-06-10 15:45:09.911131+00 2025-06-10 15:45:09.911145+00 f t Invitado Amar invitado-1749570309462@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-1385 +2493 2025-06-10 15:57:03.220297+00 2025-06-10 15:57:03.22031+00 f t Invitado Amar invitado-1749571021468@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1386 +2494 2025-06-10 15:57:18.107458+00 2025-06-10 15:57:18.107469+00 f t Invitado Amar invitado-1749571037658@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-1387 +2495 2025-06-10 15:57:31.072546+00 2025-06-10 15:57:31.072558+00 f t Invitado Amar invitado-1749571048073@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1388 +2496 2025-06-10 15:59:27.920106+00 2025-06-10 15:59:27.920116+00 f t Invitado Amar invitado-1749571167185@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1389 +2497 2025-06-10 16:00:16.483203+00 2025-06-10 16:00:16.483213+00 f t Invitado Amar invitado-1749571215710@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1390 +2498 2025-06-10 16:18:07.901565+00 2025-06-10 16:18:07.901578+00 f t Sol Coronel solagostina.coronel@gmail.com +54 11 4184 9493 \N Avenida santa fe 3452 8B \N \N -34.5867654 -58.4137221 1 1126 \N scoronel +2499 2025-06-10 16:34:18.635546+00 2025-06-10 16:34:18.635559+00 f t Invitado Amar invitado-1749573257927@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1391 +2500 2025-06-10 17:07:57.07414+00 2025-06-10 17:07:57.074154+00 f t Invitado Amar invitado-1749575275676@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1392 +2501 2025-06-10 17:17:16.860873+00 2025-06-10 17:17:16.860882+00 f t Invitado Amar invitado-1749575835775@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1393 +2502 2025-06-10 17:22:08.099806+00 2025-06-10 17:22:08.099816+00 f t Invitado Amar invitado-1749576127868@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1394 +2503 2025-06-10 17:36:49.156102+00 2025-06-10 17:36:49.156112+00 f t Invitado Amar invitado-1749577007098@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1395 +2504 2025-06-10 18:01:03.316834+00 2025-06-10 18:01:03.316845+00 f t Invitado Amar invitado-1749578582128@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-1396 +2505 2025-06-10 18:40:37.292245+00 2025-06-10 18:40:37.292254+00 f t Invitado Amar invitado-1749580836579@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-1397 +2506 2025-06-10 19:19:17.411494+00 2025-06-10 19:19:17.411504+00 f t Invitado Amar invitado-1749583157922@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1398 +2507 2025-06-10 19:31:46.553359+00 2025-06-10 19:31:46.553369+00 f t Invitado Amar invitado-1749583906101@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1399 +2508 2025-06-10 20:08:46.985464+00 2025-06-10 20:08:46.985474+00 f t Invitado Amar invitado-1749586126384@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1400 +2509 2025-06-10 20:17:11.360694+00 2025-06-10 20:17:11.360706+00 f t Invitado Amar invitado-1749586630804@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1401 +2510 2025-06-10 20:23:25.678632+00 2025-06-10 20:23:25.678644+00 f t Invitado Amar invitado-1749587005137@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1402 +2511 2025-06-10 20:27:25.631977+00 2025-06-10 20:27:25.631988+00 f t Invitado Amar invitado-1749587244494@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1403 +2512 2025-06-10 20:28:17.375702+00 2025-06-10 20:28:17.375713+00 f t Invitado Amar invitado-1749587297092@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-1404 +2513 2025-06-10 20:45:53.635086+00 2025-06-10 20:45:53.635101+00 f t elísabeth cisneros elisabeth_cisneros@hotmail.com +54 11 4578 3590 \N Av vergara 5336 Casa entre alvarez thomas y sto baigorria \N \N -34.5753809 -58.6434848 80 \N \N ecisneros +2514 2025-06-10 20:58:16.426586+00 2025-06-10 20:58:16.426599+00 f t Invitado Amar invitado-1749589096364@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1405 +2515 2025-06-10 21:47:02.778698+00 2025-06-10 21:47:02.778711+00 f t Invitado Amar invitado-1749592022203@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-1406 +2516 2025-06-10 21:47:50.911696+00 2025-06-10 21:47:50.911706+00 f t Leila Leone leone.leila94@gmail.com +54 9 11 3913 7139 \N Av Saenz 1165 1B \N \N -34.6541171 -58.416677 40 \N \N lleone +2517 2025-06-10 21:49:39.353898+00 2025-06-10 21:49:39.353909+00 f t Invitado Amar invitado-1749592178715@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1407 +2518 2025-06-10 21:57:03.875786+00 2025-06-10 21:57:03.875801+00 f t Invitado Amar invitado-1749592623513@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1408 +2519 2025-06-10 22:13:13.49429+00 2025-06-10 22:13:13.494302+00 f t Invitado Amar invitado-1749593592235@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1409 +2520 2025-06-10 22:42:59.402386+00 2025-06-10 22:42:59.402396+00 f t Invitado Amar invitado-1749595378822@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-1410 +2521 2025-06-10 22:43:31.495025+00 2025-06-10 22:43:31.495035+00 f t Invitado Amar invitado-1749595410718@example.com 55555555 \N \N \N \N \N 57 \N \N iamar-1411 +2522 2025-06-10 23:14:12.847218+00 2025-06-10 23:14:12.847226+00 f t Invitado Amar invitado-1749597251945@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1412 +2523 2025-06-10 23:17:18.99253+00 2025-06-10 23:17:18.992542+00 f t Invitado Amar invitado-1749597438906@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1413 +2524 2025-06-10 23:17:26.317835+00 2025-06-10 23:17:26.317845+00 f t Invitado Amar invitado-1749597446728@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1414 +2525 2025-06-10 23:20:25.495269+00 2025-06-10 23:20:25.495278+00 f t Invitado Amar invitado-1749597624777@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1415 +2526 2025-06-11 00:03:09.368051+00 2025-06-11 00:03:09.368061+00 f t Invitado Amar invitado-1749600188881@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-1416 +2527 2025-06-11 00:14:28.478193+00 2025-06-11 00:14:28.478207+00 f t Invitado Amar invitado-1749600867942@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1417 +2528 2025-06-11 00:14:46.894376+00 2025-06-11 00:14:46.894389+00 f t Invitado Amar invitado-1749600886399@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-1418 +2529 2025-06-11 01:11:51.458359+00 2025-06-11 01:11:51.458371+00 f t Invitado Amar invitado-1749604311407@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-1419 +2530 2025-06-11 01:40:27.906991+00 2025-06-11 01:40:27.907004+00 f t Invitado Amar invitado-1749606469331@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1420 +2531 2025-06-11 01:40:32.549876+00 2025-06-11 01:40:32.54989+00 f t Invitado Amar invitado-1749606031366@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1421 +2532 2025-06-11 01:58:02.300799+00 2025-06-11 01:58:02.300808+00 f t Invitado Amar invitado-1749607081726@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1422 +2533 2025-06-11 02:00:05.771961+00 2025-06-11 02:00:05.771978+00 f t Invitado Amar invitado-1749607205414@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-1423 +2534 2025-06-11 03:10:52.47041+00 2025-06-11 03:10:52.470423+00 f t Invitado Amar invitado-1749611451022@example.com 55555555 \N \N \N \N \N 67 \N \N iamar-1424 +2535 2025-06-11 03:33:49.129458+00 2025-06-11 03:33:49.129468+00 f t Invitado Amar invitado-1749612828728@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1425 +2536 2025-06-11 03:48:21.47963+00 2025-06-11 03:48:21.479639+00 f t Invitado Amar invitado-1749613701502@example.com 55555555 \N \N \N \N \N 47 \N \N iamar-1426 +2537 2025-06-11 04:06:03.44311+00 2025-06-11 04:06:03.44312+00 f t Invitado Amar invitado-1749614762883@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1427 +2538 2025-06-11 04:33:27.202463+00 2025-06-11 04:33:27.202476+00 f t Invitado Amar invitado-1749616407933@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1428 +2539 2025-06-11 04:52:45.311015+00 2025-06-11 04:52:45.311028+00 f t Invitado Amar invitado-1749617553280@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1429 +2540 2025-06-11 09:37:55.238596+00 2025-06-11 09:37:55.238609+00 f t Invitado Amar invitado-1749634673636@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-1430 +2541 2025-06-11 09:54:41.37904+00 2025-06-11 09:54:41.379054+00 f t Invitado Amar invitado-1749635679731@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1431 +2542 2025-06-11 10:57:43.153261+00 2025-06-11 10:57:43.153271+00 f t Invitado Amar invitado-1749639462499@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1432 +2543 2025-06-11 11:00:01.883345+00 2025-06-11 11:00:01.883393+00 f t Invitado Amar invitado-1749639603179@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-1433 +2544 2025-06-11 11:21:39.13708+00 2025-06-11 11:21:39.137089+00 f t Invitado Amar invitado-1749640898456@example.com 55555555 \N \N \N \N \N 66 \N \N iamar-1434 +2545 2025-06-11 11:27:15.057613+00 2025-06-11 11:27:15.057627+00 f t Invitado Amar invitado-1749641234280@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1435 +2546 2025-06-11 12:38:34.67449+00 2025-06-11 12:38:34.674503+00 f t Invitado Amar invitado-1749645517031@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-1436 +2547 2025-06-11 13:15:56.193145+00 2025-06-11 13:15:56.193155+00 f t Ceci Hierschfeld cecih@hmail.com 5491153453877 \N Díaz Vélez 245 A una cuadra de avenida libertador Piso 3ro depto A \N FEMALE \N -34.4946206 -58.4838563 59 1127 \N chierschfeld +2548 2025-06-11 13:29:20.37523+00 2025-06-11 13:29:20.375245+00 f t Invitado Amar invitado-1749648560805@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-1437 +2549 2025-06-11 13:47:52.842003+00 2025-06-11 13:47:52.842012+00 f t Invitado Amar invitado-1749649671590@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1438 +2550 2025-06-11 14:41:05.770627+00 2025-06-11 14:41:05.770642+00 f t Invitado Amar invitado-1749652865328@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1439 +2551 2025-06-11 14:42:53.61141+00 2025-06-11 14:42:53.611422+00 f t Invitado Amar invitado-1749652961278@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1440 +2552 2025-06-11 15:19:51.538532+00 2025-06-11 15:19:51.53854+00 f t Invitado Amar invitado-1749655191056@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1441 +2553 2025-06-11 15:20:46.647938+00 2025-06-11 15:20:46.647948+00 f t Claudio Alejandro Marcello calejandromarcello@gmail.com 5491162534584 \N Av corrientes 5943 6to N \N MALE 1975-01-24 -34.5936467 -58.4452619 26 1129 \N cmarcello +2554 2025-06-11 15:22:19.503291+00 2025-06-11 15:22:19.503302+00 f t Invitado Amar invitado-1749655338721@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1442 +2555 2025-06-11 15:27:57.089936+00 2025-06-11 15:27:57.089945+00 f t Invitado Amar invitado-1749655676422@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1443 +2556 2025-06-11 15:42:17.153071+00 2025-06-11 15:42:17.153078+00 f t Florencia Rumbolo florenciarumbolo@gmail.com 5491154924736 \N Coronel Ramón Lista 5292 depto 13 \N FEMALE \N -34.6144802 -58.5240261 21 1130 \N frumbolo +2557 2025-06-11 15:46:19.829403+00 2025-06-11 15:46:19.829412+00 f t Invitado Amar invitado-1749656779712@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1444 +2558 2025-06-11 17:28:13.539641+00 2025-06-11 17:28:13.539655+00 f t Invitado Amar invitado-1749662892994@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1445 +2559 2025-06-11 17:29:54.029297+00 2025-06-11 17:29:54.029306+00 f t Invitado Amar invitado-1749662992935@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1446 +2560 2025-06-11 18:22:55.604865+00 2025-06-11 18:22:55.604873+00 f t Invitado Amar invitado-1749666174766@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1447 +2561 2025-06-11 18:24:29.895308+00 2025-06-11 18:24:29.895319+00 f t Invitado Amar invitado-1749666268137@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1448 +2562 2025-06-11 18:30:02.79287+00 2025-06-11 18:30:02.792885+00 f t Melody Barbatto meelody.24@gmail.com +54 11 2700 8562 \N Indalecio Gomez 4018 PB \N \N -34.59396 -58.5228965 113 \N \N mbarbatto +2563 2025-06-11 18:40:16.716439+00 2025-06-11 18:40:16.716455+00 f t Invitado Amar invitado-1749667215944@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1449 +2564 2025-06-11 18:43:26.051603+00 2025-06-11 18:43:26.051613+00 f t Invitado Amar invitado-1749667430010@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-1450 +2565 2025-06-11 18:46:18.580313+00 2025-06-11 18:46:18.580325+00 f t Invitado Amar invitado-1749667603127@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-1451 +2566 2025-06-11 18:53:07.131486+00 2025-06-11 18:53:07.131497+00 f t Invitado Amar invitado-1749667986590@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-1452 +2567 2025-06-11 18:54:46.580744+00 2025-06-11 18:54:46.580752+00 f t Marta Sosa martaisosa@gmail.com +541135670245 \N Terrada 2769 Dto 2 \N \N \N -34.6031765 -58.4865484 17 1132 \N msosa-3 +2568 2025-06-11 19:10:45.172502+00 2025-06-11 19:10:45.17251+00 f t Invitado Amar invitado-1749669044724@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1453 +2569 2025-06-11 19:20:42.059025+00 2025-06-11 19:20:42.059035+00 f t Vanesa Diharce vanesadiharce@gmail.com 5491164151677 \N Av. Avellaneda 2548 3ero B \N FEMALE 1973-07-08 -34.6249706 -58.466715 4 1131 \N vdiharce +2570 2025-06-11 20:42:44.965763+00 2025-06-11 20:42:44.965776+00 f t Invitado Amar invitado-1749674563737@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-1454 +2571 2025-06-11 21:20:59.856131+00 2025-06-11 21:20:59.856138+00 f t Invitado Amar invitado-1749676858178@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-1455 +2572 2025-06-11 21:25:54.025886+00 2025-06-11 21:25:54.025894+00 f t Invitado Amar invitado-1749677153339@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-1456 +2573 2025-06-11 22:29:16.721763+00 2025-06-11 22:29:16.721772+00 f t Mariela Micucci mariela.micucci@gmail.com +54 11 6055 2932 \N Bernardo de Irigoyen 545 \N \N -34.7675223 -58.3867476 85 \N \N mmicucci +2574 2025-06-11 22:33:16.956389+00 2025-06-11 22:33:16.956401+00 f t Invitado Amar invitado-1749681198207@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1457 +2575 2025-06-11 22:40:07.478929+00 2025-06-11 22:40:07.478941+00 f t Invitado Amar invitado-1749681607022@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1458 +2576 2025-06-11 22:53:36.83891+00 2025-06-11 22:53:36.83892+00 f t Invitado Amar invitado-1749682416316@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1459 +2577 2025-06-11 23:16:03.243535+00 2025-06-11 23:16:03.243544+00 f t Invitado Amar invitado-1749683762543@example.com 55555555 \N \N \N \N \N 47 \N \N iamar-1460 +2578 2025-06-11 23:26:53.01722+00 2025-06-11 23:26:53.017228+00 f t Invitado Amar invitado-1749684433668@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-1461 +2579 2025-06-11 23:28:01.60473+00 2025-06-11 23:28:01.604743+00 f t Invitado Amar invitado-1749684502565@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-1462 +2580 2025-06-11 23:35:04.199074+00 2025-06-11 23:35:04.199087+00 f t Invitado Amar invitado-1749684903298@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-1463 +2581 2025-06-12 00:09:00.876697+00 2025-06-12 00:09:00.876709+00 f t Alejandra Mir miralejandra2@gmail.com +54 11 6176 1990 \N Helguera 1515 Casa \N \N -34.6155122 -58.481672 41 \N \N amir +2582 2025-06-12 00:40:23.4287+00 2025-06-12 00:40:23.428709+00 f t Vanesa defey Sosa defey.vane@hotmail.com 5491165053309 \N Cucha cucha 1034 depto 3 \N FEMALE 1995-12-03 -34.6103664 -58.4495027 14 1133 \N vsosa +2583 2025-06-12 00:46:22.436066+00 2025-06-12 00:46:22.436074+00 f t Invitado Amar invitado-1749689181964@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-1464 +2584 2025-06-12 01:40:59.570867+00 2025-06-12 01:40:59.570879+00 f t Invitado Amar invitado-1749692459747@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-1465 +2585 2025-06-12 01:56:50.110336+00 2025-06-12 01:56:50.110347+00 f t Invitado Amar invitado-1749693409607@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1466 +2586 2025-06-12 04:01:43.353071+00 2025-06-12 04:01:43.35308+00 f t Fernanda Villanueva villanuevamf29@gmail.com +54 11 7363 2721 \N Gascón 1227 8/31 \N \N -34.5960354 -58.4230263 1 1134 \N fvillanueva +2587 2025-06-12 05:04:32.82945+00 2025-06-12 05:04:32.829462+00 f t Invitado Amar invitado-1749704672334@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1467 +2588 2025-06-12 10:27:34.220765+00 2025-06-12 10:27:34.220773+00 f t Invitado Amar invitado-1749724054410@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-1468 +2589 2025-06-12 11:15:35.627447+00 2025-06-12 11:15:35.627456+00 f t Invitado Amar invitado-1749726935040@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1469 +2590 2025-06-12 11:28:49.441182+00 2025-06-12 11:28:49.441194+00 f t Invitado Amar invitado-1749727728906@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1470 +2591 2025-06-12 11:53:01.28531+00 2025-06-12 11:53:01.285322+00 f t Invitado Amar invitado-1749729180931@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1471 +2592 2025-06-12 12:11:47.414721+00 2025-06-12 12:11:47.41473+00 f t Invitado Amar invitado-1749730306681@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1472 +2593 2025-06-12 12:14:55.1951+00 2025-06-12 12:14:55.195115+00 f t Invitado Amar invitado-1749730494661@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1473 +2594 2025-06-12 13:08:20.038756+00 2025-06-12 13:08:20.038771+00 f t Invitado Amar invitado-1749733699124@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-1474 +2595 2025-06-12 13:15:57.574008+00 2025-06-12 13:15:57.574017+00 f t Invitado Amar invitado-1749734156582@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1475 +2596 2025-06-12 13:18:00.837719+00 2025-06-12 13:18:00.837728+00 f t Invitado Amar invitado-1749734280722@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-1476 +2597 2025-06-12 13:37:43.017465+00 2025-06-12 13:37:43.017477+00 f t Invitado Amar invitado-1749735459798@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1477 +2598 2025-06-12 13:41:25.054591+00 2025-06-12 13:41:25.054602+00 f t Invitado Amar invitado-1749735684355@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1478 +2599 2025-06-12 14:33:06.401566+00 2025-06-12 14:33:06.401574+00 f t Invitado Amar invitado-1749738785946@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1479 +2600 2025-06-12 15:24:51.973079+00 2025-06-12 15:24:51.973092+00 f t Invitado Amar invitado-1749741891505@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1480 +2601 2025-06-12 15:25:09.323298+00 2025-06-12 15:25:09.323308+00 f t Jose Balleste joseballeste01@gmail.com +54 11 2386 1735 \N Av del barco centenera 481 9 B \N \N -34.6202706 -58.4409055 14 \N \N jballeste +2602 2025-06-12 15:31:03.530584+00 2025-06-12 15:31:03.530594+00 f t Invitado Amar invitado-1749742262486@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1481 +2603 2025-06-12 15:32:54.761212+00 2025-06-12 15:32:54.761221+00 f t Invitado Amar invitado-1749742374119@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-1482 +2604 2025-06-12 15:49:36.014489+00 2025-06-12 15:49:36.014498+00 f t Invitado Amar invitado-1749743375271@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1483 +2605 2025-06-12 15:56:05.838533+00 2025-06-12 15:56:05.838546+00 f t Invitado Amar invitado-1749743765399@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1484 +2606 2025-06-12 16:22:56.825268+00 2025-06-12 16:22:56.825277+00 f t Invitado Amar invitado-1749745352113@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-1485 +2607 2025-06-12 16:40:12.095533+00 2025-06-12 16:40:12.095545+00 f t Lucas Abran abranlucas@gmail.com +54 11 5115 4333 \N Avenida medrano 701 3 depto 9 \N \N -34.601814 -58.420653 23 \N \N labran +2608 2025-06-12 16:46:17.54392+00 2025-06-12 16:46:17.543933+00 f t Invitado Amar invitado-1749746776756@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1486 +2609 2025-06-12 17:05:08.327711+00 2025-06-12 17:05:08.327723+00 f t Ariel Imasaka ariel.imasaka@gmail.com +54 11 6477 2259 \N Luis viale 860 \N \N -34.6068891 -58.4512111 14 \N \N aimasaka +2610 2025-06-12 18:33:15.549274+00 2025-06-12 18:33:15.549286+00 f t Invitado Amar invitado-1749753194001@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-1487 +2611 2025-06-12 18:39:00.22007+00 2025-06-12 18:39:00.220081+00 f t Invitado Amar invitado-1749753538826@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1488 +2612 2025-06-12 18:40:35.900676+00 2025-06-12 18:40:35.900689+00 f t Invitado Amar invitado-1749753635019@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1489 +2613 2025-06-12 18:49:01.425889+00 2025-06-12 18:49:01.425901+00 f t Invitado Amar invitado-1749754140266@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1490 +2614 2025-06-12 19:10:04.294445+00 2025-06-12 19:10:04.294491+00 f t Ariel Imasaka aaariel.imasak@gmail.com 5491164772259 \N Luis viale 860 10 A \N MALE 1984-09-25 -34.6068891 -58.4512111 14 1138 \N aimasaka-2 +2615 2025-06-12 19:37:22.803456+00 2025-06-12 19:37:22.803465+00 f t Johana Caseres johanacaseres92@hotmail.com 5491139531434 \N Lavalle 1844 piso 6 depto 38 \N FEMALE \N -34.6032423 -58.3932076 18 1139 \N jcaseres +2616 2025-06-12 19:37:30.335495+00 2025-06-12 19:37:30.335506+00 f t Invitado Amar invitado-1749757049246@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1491 +2617 2025-06-12 20:21:56.568235+00 2025-06-12 20:21:56.568242+00 f t Analía Fuentes fuentesanaliav@gmail.com 91130833450 \N Luzuriaga 1430 \N \N FEMALE \N -34.6513641 -58.38723 32 1140 \N afuentes +2618 2025-06-12 20:22:30.274506+00 2025-06-12 20:22:30.274517+00 f t Invitado Amar invitado-1749759750355@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1492 +2619 2025-06-12 21:01:43.605509+00 2025-06-12 21:01:43.605517+00 f t Invitado Amar invitado-1749762103499@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-1493 +2620 2025-06-12 21:06:12.615026+00 2025-06-12 21:06:12.615038+00 f t Invitado Amar invitado-1749762372431@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1494 +2621 2025-06-12 21:12:24.620537+00 2025-06-12 21:12:24.620549+00 f t Invitado Amar invitado-1749762744811@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1495 +2622 2025-06-12 21:16:07.816826+00 2025-06-12 21:16:07.816838+00 f t Invitado Amar invitado-1749762968115@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1496 +2623 2025-06-12 21:51:49.175764+00 2025-06-12 21:51:49.175775+00 f t Invitado Amar invitado-1749765108780@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1497 +2624 2025-06-12 22:00:05.352865+00 2025-06-12 22:00:05.352884+00 f t Invitado Amar invitado-1749765604498@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-1498 +2625 2025-06-12 22:05:14.97661+00 2025-06-12 22:05:14.97662+00 f t Invitado Amar invitado-1749765914558@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1499 +2626 2025-06-12 22:10:24.94117+00 2025-06-12 22:10:24.941183+00 f t Invitado Amar invitado-1749766224730@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1500 +2627 2025-06-12 22:13:27.656488+00 2025-06-12 22:13:27.656501+00 f t Invitado Amar invitado-1749766407051@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1501 +2628 2025-06-12 22:28:57.140017+00 2025-06-12 22:28:57.140027+00 f t Invitado Amar invitado-1749767336715@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1502 +2629 2025-06-12 23:02:56.953019+00 2025-06-12 23:02:56.953029+00 f t Invitado Amar invitado-1749769375946@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1503 +2630 2025-06-13 00:09:34.463341+00 2025-06-13 00:09:34.463354+00 f t Invitado Amar invitado-1749773368653@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1504 +2631 2025-06-13 00:10:15.14486+00 2025-06-13 00:10:15.144875+00 f t Invitado Amar invitado-1749773414244@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1505 +2632 2025-06-13 00:18:48.788063+00 2025-06-13 00:18:48.788074+00 f t Emiliano Pagella emilianopagella0@gmail.com 5491159120066 \N Av Cabildo 4879 1-D \N MALE \N -34.5401052 -58.474621 25 1142 \N epagella +2633 2025-06-13 00:44:44.879739+00 2025-06-13 00:44:44.879748+00 f t Invitado Amar invitado-1749775483874@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1506 +2634 2025-06-13 01:43:44.287606+00 2025-06-13 01:43:44.287617+00 f t Invitado Amar invitado-1749779023811@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-1507 +2635 2025-06-13 01:45:24.364247+00 2025-06-13 01:45:24.36426+00 f t Invitado Amar invitado-1749779121968@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-1508 +2636 2025-06-13 02:52:49.555187+00 2025-06-13 02:52:49.555198+00 f t Invitado Amar invitado-1749783168603@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1509 +2637 2025-06-13 03:11:40.52164+00 2025-06-13 03:11:40.521668+00 f t Invitado Amar invitado-1749784299861@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-1510 +2638 2025-06-13 03:19:49.394003+00 2025-06-13 03:19:49.394018+00 f t Invitado Amar invitado-1749784787779@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1511 +2639 2025-06-13 03:33:43.430889+00 2025-06-13 03:33:43.430901+00 f t Invitado Amar invitado-1749785622578@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1512 +2640 2025-06-13 03:53:03.785863+00 2025-06-13 03:53:03.785875+00 f t Invitado Amar invitado-1749786783381@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1513 +2641 2025-06-13 05:38:50.23172+00 2025-06-13 05:38:50.23173+00 f t Invitado Amar invitado-1749793129789@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1514 +2642 2025-06-13 05:49:58.287266+00 2025-06-13 05:49:58.287278+00 f t Invitado Amar invitado-1749793799678@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1515 +2643 2025-06-13 06:22:24.329986+00 2025-06-13 06:22:24.329995+00 f t Invitado Amar invitado-1749795743423@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1516 +2644 2025-06-13 06:33:05.466556+00 2025-06-13 06:33:05.466566+00 f t Invitado Amar invitado-1749796385761@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1517 +2645 2025-06-13 06:37:47.268019+00 2025-06-13 06:37:47.268033+00 f t Invitado Amar invitado-1749796665670@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-1518 +2646 2025-06-13 10:10:44.146243+00 2025-06-13 10:10:44.146256+00 f t Invitado Amar invitado-1749809444209@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1519 +2647 2025-06-13 10:39:54.80391+00 2025-06-13 10:39:54.803919+00 f t Invitado Amar invitado-1749811193408@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-1520 +2648 2025-06-13 10:40:11.680624+00 2025-06-13 10:40:11.680636+00 f t Invitado Amar invitado-1749811210729@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-1521 +2649 2025-06-13 11:13:37.366491+00 2025-06-13 11:13:37.366504+00 f t Invitado Amar invitado-1749813216381@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1522 +2650 2025-06-13 11:29:11.024644+00 2025-06-13 11:29:11.024658+00 f t Invitado Amar invitado-1749814150369@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1523 +2651 2025-06-13 11:38:40.204675+00 2025-06-13 11:38:40.204687+00 f t Invitado Amar invitado-1749814719305@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1524 +2652 2025-06-13 11:59:27.64917+00 2025-06-13 11:59:27.649183+00 f t Invitado Amar invitado-1749815967100@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1525 +2653 2025-06-13 12:01:15.848153+00 2025-06-13 12:01:15.848167+00 f t Invitado Amar invitado-1749816075676@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-1526 +2654 2025-06-13 12:29:42.706412+00 2025-06-13 12:29:42.706421+00 f t Invitado Amar invitado-1749817781627@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1527 +2655 2025-06-13 13:02:35.324033+00 2025-06-13 13:02:35.324045+00 f t Invitado Amar invitado-1749819754653@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-1528 +2656 2025-06-13 13:11:43.95887+00 2025-06-13 13:11:43.958879+00 f t Invitado Amar invitado-1749820304831@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-1529 +2657 2025-06-13 13:47:51.148028+00 2025-06-13 13:47:51.148039+00 f t Maria Silvia LA TEANA mslateana@gmail.com +541153865914 \N Dolores 156 \N \N -34.6344 -58.4758553 16 1278 \N mlateana +2658 2025-06-13 14:12:48.687933+00 2025-06-13 14:12:48.687943+00 f t Invitado Amar invitado-1749823968006@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1530 +2659 2025-06-13 14:15:22.92462+00 2025-06-13 14:15:22.924632+00 f t Invitado Amar invitado-1749824122817@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1531 +2660 2025-06-13 14:19:00.968193+00 2025-06-13 14:19:00.968231+00 f t Invitado Amar invitado-1749824340392@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1532 +2661 2025-06-13 14:40:11.26351+00 2025-06-13 14:40:11.263519+00 f t Cecilia Figueroa mc@gmail.com +541138789406 \N : Mendez de andes 1793 1E \N FEMALE \N -34.6147343 -58.4459677 14 1147 \N cfigueroa-2 +2662 2025-06-13 15:23:43.937154+00 2025-06-13 15:23:43.937168+00 f t Invitado Amar invitado-1749828223554@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-1533 +2663 2025-06-13 15:57:51.994417+00 2025-06-13 15:57:51.994427+00 f t Invitado Amar invitado-1749830271804@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1534 +2664 2025-06-13 15:59:18.482779+00 2025-06-13 15:59:18.482788+00 f t Invitado Amar invitado-1749830358555@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1535 +2665 2025-06-13 16:14:17.367811+00 2025-06-13 16:14:17.367823+00 f t Invitado Amar invitado-1749831256922@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1536 +2666 2025-06-13 16:16:31.487609+00 2025-06-13 16:16:31.487623+00 f t Invitado Amar invitado-1749831391074@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1537 +2667 2025-06-13 16:24:04.475787+00 2025-06-13 16:24:04.475797+00 f t Invitado Amar invitado-1749831844153@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1538 +2668 2025-06-13 16:41:15.407002+00 2025-06-13 16:41:15.407019+00 f t Invitado Amar invitado-1749832874218@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-1539 +2669 2025-06-13 17:13:32.189554+00 2025-06-13 17:13:32.189567+00 f t Invitado Amar invitado-1749834811618@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-1540 +2670 2025-06-13 17:15:22.400361+00 2025-06-13 17:15:22.40037+00 f t Invitado Amar invitado-1749834922220@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-1541 +2671 2025-06-13 17:45:17.174764+00 2025-06-13 17:45:17.174776+00 f t Invitado Amar invitado-1749836717504@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1542 +2672 2025-06-13 17:47:34.056926+00 2025-06-13 17:47:34.056937+00 f t Mónica Leal oade1220@gmail.com +541130555947 \N Santos Dumont 2412 2 2 A \N \N \N -34.5742862 -58.4393758 1 1148 \N mleal +2673 2025-06-13 17:59:20.374962+00 2025-06-13 17:59:20.37497+00 f t Invitado Amar invitado-1749837559919@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1543 +2674 2025-06-13 18:25:58.456+00 2025-06-13 18:25:58.45601+00 f t Augusto Danzi Biaus bulmaro85@hotmail.com +541154854889 \N José Cubas 3211 2 \N \N -34.5910316 -58.5042975 51 \N \N adanzibiaus +2675 2025-06-13 20:25:05.689214+00 2025-06-13 20:25:05.689227+00 f t Invitado Amar invitado-1749846305784@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1544 +2676 2025-06-13 21:27:54.679409+00 2025-06-13 21:27:54.679418+00 f t Invitado Amar invitado-1749850075144@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1545 +2677 2025-06-13 21:29:44.938635+00 2025-06-13 21:29:44.938648+00 f t María Sol Schiavoni marischiavoni333@gmail.com +541125081247 \N General Calle de Alvear 2692 2 \N \N -38.9446631 -68.0064383 70 \N \N mschiavoni +2678 2025-06-13 21:41:11.033876+00 2025-06-13 21:41:11.033888+00 f t Invitado Amar invitado-1749850870417@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-1546 +2679 2025-06-13 21:45:22.858329+00 2025-06-13 21:45:22.858339+00 f t Invitado Amar invitado-1749851122420@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1547 +2680 2025-06-13 21:52:40.733545+00 2025-06-13 21:52:40.733553+00 f t sol estrada solcanaza2004@gmail.com +541161590538 \N sarmiento 2888 1ro \N \N -34.6066775 -58.4071137 18 \N \N sestrada +2681 2025-06-13 22:21:02.885662+00 2025-06-13 22:21:02.885678+00 f t Invitado Amar invitado-1749853261922@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1548 +2682 2025-06-13 23:15:53.4346+00 2025-06-13 23:15:53.434611+00 f t Invitado Amar invitado-1749856550810@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1549 +2683 2025-06-13 23:24:56.52612+00 2025-06-13 23:24:56.526136+00 f t Invitado Amar invitado-1749857096239@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1550 +2684 2025-06-13 23:26:46.54161+00 2025-06-13 23:26:46.541619+00 f t Invitado Amar invitado-1749857206445@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1551 +2685 2025-06-13 23:32:12.300278+00 2025-06-13 23:32:12.30029+00 f t Invitado Amar invitado-1749857531957@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1552 +2686 2025-06-13 23:44:10.235975+00 2025-06-13 23:44:10.235988+00 f t Invitado Amar invitado-1749858249415@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1553 +2687 2025-06-14 01:12:52.219521+00 2025-06-14 01:12:52.219533+00 f t Invitado Amar invitado-1749863571119@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-1554 +2688 2025-06-14 02:20:37.587533+00 2025-06-14 02:20:37.587548+00 f t Invitado Amar invitado-1749867636916@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1555 +2689 2025-06-14 03:54:54.451777+00 2025-06-14 03:54:54.451785+00 f t Invitado Amar invitado-1749873295638@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-1556 +2690 2025-06-14 03:56:33.731842+00 2025-06-14 03:56:33.731854+00 f t Invitado Amar invitado-1749873393363@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1557 +2691 2025-06-14 06:29:26.402648+00 2025-06-14 06:29:26.402657+00 f t Invitado Amar invitado-1749882565354@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1558 +2692 2025-06-14 09:10:03.05359+00 2025-06-14 09:10:03.053605+00 f t Invitado Amar invitado-1749892202444@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1559 +2693 2025-06-14 12:08:30.549501+00 2025-06-14 12:08:30.549512+00 f t Invitado Amar invitado-1749902909028@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1560 +2694 2025-06-14 12:41:51.093068+00 2025-06-14 12:41:51.093078+00 f t Adriana De Brito adrianaedb@gmail.com +541156227718 \N Juan José Paso 1171 Ciudadela \N \N -34.626813 -58.5397406 91 \N \N adebrito +2695 2025-06-14 12:53:24.568141+00 2025-06-14 12:53:24.568151+00 f t Invitado Amar invitado-1749905602424@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-1561 +2696 2025-06-14 12:53:29.541271+00 2025-06-14 12:53:29.541282+00 f t Erica Mariana Wynen erica.m.w81@gmail.com +541132499069 \N Arenales 1025 12 C \N \N -34.481248 -58.503694 68 \N \N ewynen +2697 2025-06-14 14:02:13.338427+00 2025-06-14 14:02:13.338437+00 f t Invitado Amar invitado-1749909731638@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-1562 +2698 2025-06-14 14:03:15.586151+00 2025-06-14 14:03:15.58616+00 f t Invitado Amar invitado-1749909793885@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-1563 +2699 2025-06-14 14:37:12.941142+00 2025-06-14 14:37:12.941151+00 f t Invitado Amar invitado-1749911831430@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1564 +2700 2025-06-14 14:43:54.415354+00 2025-06-14 14:43:54.415363+00 f t Invitado Amar invitado-1749912233982@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-1565 +2701 2025-06-14 14:51:27.57633+00 2025-06-14 14:51:27.576342+00 f t Invitado Amar invitado-1749912686593@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1566 +2702 2025-06-14 14:56:01.690815+00 2025-06-14 14:56:01.690828+00 f t Invitado Amar invitado-1749912961011@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-1567 +2703 2025-06-14 15:03:47.516927+00 2025-06-14 15:03:47.51694+00 f t Milagros Luján Diaz milidiaz1400@gmail.com +541162224305 \N Luzuriaga 2081 Entre José Maria paz y Antártida Argentina, Moreno \N \N -27.3654887 -55.9304731 113 \N \N mdiaz-2 +2704 2025-06-14 16:21:58.007546+00 2025-06-14 16:21:58.00756+00 f t Invitado Amar invitado-1749918115965@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1568 +2705 2025-06-14 17:21:30.523455+00 2025-06-14 17:21:30.523464+00 f t Invitado Amar invitado-1749921690065@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-1569 +2706 2025-06-14 18:13:24.939725+00 2025-06-14 18:13:24.939737+00 f t Invitado Amar invitado-1749924804679@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1570 +2707 2025-06-14 18:40:04.700936+00 2025-06-14 18:40:04.700949+00 f t Invitado Amar invitado-1749926404237@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1571 +2708 2025-06-14 18:49:33.756907+00 2025-06-14 18:49:33.756916+00 f t Invitado Amar invitado-1749926973302@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-1572 +2709 2025-06-14 18:52:41.228887+00 2025-06-14 18:52:41.228897+00 f t Invitado Amar invitado-1749927159789@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1573 +2710 2025-06-14 18:54:32.675732+00 2025-06-14 18:54:32.675741+00 f t Invitado Amar invitado-1749927270697@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1574 +2711 2025-06-14 18:58:20.265904+00 2025-06-14 18:58:20.265914+00 f t Invitado Amar invitado-1749927500859@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-1575 +2712 2025-06-14 20:19:57.531157+00 2025-06-14 20:19:57.531168+00 f t Invitado Amar invitado-1749932396083@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1576 +2713 2025-06-14 20:37:33.868328+00 2025-06-14 20:37:33.868338+00 f t Joana Fernández Castro joanafernandezcastro@yahoo.com 5491132714480 \N juan Agustín garcia 3063 \N \N FEMALE 1984-04-11 -34.6114452 -58.4844055 \N 1150 \N jcastro +2714 2025-06-14 20:37:42.726904+00 2025-06-14 20:37:42.726914+00 f t Invitado Amar invitado-1749933461903@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-1577 +2715 2025-06-14 20:40:48.225567+00 2025-06-14 20:40:48.225579+00 f t Invitado Amar invitado-1749933647778@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-1578 +2716 2025-06-14 20:43:15.48552+00 2025-06-14 20:43:15.485533+00 f t Invitado Amar invitado-1749933795333@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-1579 +2717 2025-06-14 20:47:04.502801+00 2025-06-14 20:47:04.502808+00 f t Patricia Leonardo patocaramelo@yahoo.com.ar 5491138634138 \N Combate de los pozos 1477 3B \N FEMALE 1967-05-13 -34.6261505 -58.3924999 12 1151 \N pleonardo +2718 2025-06-14 20:51:54.267235+00 2025-06-14 20:51:54.267244+00 f t Maria cristina Giovannucci mcgiovannucci@gmail.com 5491150580535 \N Dr Pedro Ignacio Rivera 3402 piso 3 - dpto. F \N FEMALE 1949-11-06 -34.5605347 -58.4677785 3 1152 \N mgiovannucci +2719 2025-06-14 20:59:46.29226+00 2025-06-14 20:59:46.292269+00 f t Jairo Andrés Toledo jairo.toledoo@gmail.com 5491138343880 \N Argerich 679 piso 4 a \N \N 1989-02-09 -34.624853 -58.4739823 4 1153 \N jtoledo +2720 2025-06-14 23:25:16.307708+00 2025-06-14 23:25:16.307718+00 f t Invitado Amar invitado-1749943515740@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-1580 +2721 2025-06-14 23:25:58.788517+00 2025-06-14 23:25:58.788529+00 f t Invitado Amar invitado-1749943557809@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1581 +2722 2025-06-14 23:29:02.501781+00 2025-06-14 23:29:02.501789+00 f t Invitado Amar invitado-1749943741978@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1582 +2723 2025-06-14 23:35:41.882433+00 2025-06-14 23:35:41.882446+00 f t Invitado Amar invitado-1749944142490@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1583 +2724 2025-06-15 00:00:23.732234+00 2025-06-15 00:00:23.732254+00 f t Invitado Amar invitado-1749945623348@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1584 +2725 2025-06-15 00:47:35.458753+00 2025-06-15 00:47:35.458768+00 f t Invitado Amar invitado-1749948455081@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1585 +2726 2025-06-15 00:55:10.282889+00 2025-06-15 00:55:10.282899+00 f t Invitado Amar invitado-1749948909842@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1586 +2727 2025-06-15 01:03:22.890556+00 2025-06-15 01:03:22.890566+00 f t Invitado Amar invitado-1749949399749@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-1587 +2728 2025-06-15 01:22:23.698568+00 2025-06-15 01:22:23.698577+00 f t Invitado Amar invitado-1749950542841@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1588 +2729 2025-06-15 01:53:26.383179+00 2025-06-15 01:53:26.383188+00 f t Invitado Amar invitado-1749952405719@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1589 +2730 2025-06-15 02:08:04.648347+00 2025-06-15 02:08:04.648356+00 f t Invitado Amar invitado-1749953283865@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1590 +2731 2025-06-15 02:45:38.045259+00 2025-06-15 02:45:38.045272+00 f t Invitado Amar invitado-1749955537567@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1591 +2732 2025-06-15 02:52:12.943954+00 2025-06-15 02:52:12.943965+00 f t Maria Jose Mere majo7965@hotmail.com +541158223647 \N Santa Fe 3566 2 A \N FEMALE \N -34.5860892 -58.4147467 1 1155 \N mmere +2733 2025-06-15 03:04:22.797414+00 2025-06-15 03:04:22.797426+00 f t Invitado Amar invitado-1749956661085@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1592 +2734 2025-06-15 03:04:26.768818+00 2025-06-15 03:04:26.768826+00 f t Invitado Amar invitado-1749956665515@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1593 +2735 2025-06-15 03:27:30.362129+00 2025-06-15 03:27:30.362137+00 f t Invitado Amar invitado-1749958049867@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1594 +2736 2025-06-15 03:53:44.303507+00 2025-06-15 03:53:44.303517+00 f t Invitado Amar invitado-1749959623925@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-1595 +2737 2025-06-15 04:43:40.920639+00 2025-06-15 04:43:40.920672+00 f t Invitado Amar invitado-1749962620413@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1596 +2738 2025-06-15 04:45:36.052931+00 2025-06-15 04:45:36.052939+00 f t Invitado Amar invitado-1749962735550@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-1597 +2739 2025-06-15 05:00:51.309439+00 2025-06-15 05:00:51.309447+00 f t Invitado Amar invitado-1749963650966@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1598 +2740 2025-06-15 09:24:37.633235+00 2025-06-15 09:24:37.63325+00 f t Invitado Amar invitado-1749979476565@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-1599 +2741 2025-06-15 12:08:10.330561+00 2025-06-15 12:08:10.330569+00 f t Invitado Amar invitado-1749989289449@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-1600 +2742 2025-06-15 12:47:51.208326+00 2025-06-15 12:47:51.208339+00 f t Invitado Amar invitado-1749991672236@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-1601 +2743 2025-06-15 12:55:22.321588+00 2025-06-15 12:55:22.321603+00 f t Invitado Amar invitado-1749992121588@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-1602 +2744 2025-06-15 13:21:20.109061+00 2025-06-15 13:21:20.109075+00 f t Invitado Amar invitado-1749993677794@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-1603 +2745 2025-06-15 13:23:02.321314+00 2025-06-15 13:23:02.321329+00 f t Invitado Amar invitado-1749993781856@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1604 +2746 2025-06-15 13:42:45.017114+00 2025-06-15 13:42:45.017124+00 f t Invitado Amar invitado-1749994965167@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-1605 +2747 2025-06-15 14:19:27.930385+00 2025-06-15 14:19:27.930397+00 f t Invitado Amar invitado-1749997167473@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1606 +2748 2025-06-15 15:02:29.512867+00 2025-06-15 15:02:29.512879+00 f t Invitado Amar invitado-1749999748823@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-1607 +2749 2025-06-15 15:24:12.82275+00 2025-06-15 15:24:12.82276+00 f t Invitado Amar invitado-1750001051505@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1608 +2750 2025-06-15 15:27:52.214504+00 2025-06-15 15:27:52.214514+00 f t Invitado Amar invitado-1750001271894@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1609 +2751 2025-06-15 16:00:07.67061+00 2025-06-15 16:00:07.670626+00 f t Invitado Amar invitado-1750003206908@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1610 +2752 2025-06-15 16:16:13.608471+00 2025-06-15 16:16:13.608485+00 f t Invitado Amar invitado-1750004172816@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1611 +2753 2025-06-15 17:21:18.011274+00 2025-06-15 17:21:18.011286+00 f t Andru Barrera andrubarrera.ab@gmail.com +541170077632 \N Uriarte 1525 2do 8 \N \N -34.588069 -58.432827 1 \N \N abarrera +2754 2025-06-15 17:24:21.473838+00 2025-06-15 17:24:21.473846+00 f t FATIMA ESCOBEDO fmescobedo.28@gmail.com 5491138587963 \N Av. Carabobo 27 8C \N FEMALE 1999-01-28 -34.6271731 -58.4566402 4 1154 \N fescobedo +2755 2025-06-15 17:37:37.739535+00 2025-06-15 17:37:37.739543+00 f t Invitado Amar invitado-1750009056856@example.com 55555555 \N \N \N \N \N 146 \N \N iamar-1612 +2756 2025-06-15 18:04:26.96621+00 2025-06-15 18:04:26.96622+00 f t Invitado Amar invitado-1750010666567@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1613 +2807 2025-06-16 16:30:50.403545+00 2025-06-16 16:30:50.403554+00 f t Invitado Amar invitado-1750091449760@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1657 +2757 2025-06-15 18:26:29.206906+00 2025-06-15 18:26:29.206919+00 f t Claudio Verbitsky claudio.verbitsky@swissmedical.com +5491141714059 \N Drumond 607 beccar \N \N \N \N 77 \N \N cverbitsky +2758 2025-06-15 19:03:43.459431+00 2025-06-15 19:03:43.459443+00 f t Invitado Amar invitado-1750014221772@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1614 +2759 2025-06-15 20:35:07.250186+00 2025-06-15 20:35:07.250197+00 f t Invitado Amar invitado-1750019706271@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1615 +2760 2025-06-15 20:52:33.243392+00 2025-06-15 20:52:33.243402+00 f t Alberto Enrique grillo vickybrandani@gmail.com +541137583401 \N Avenida rivadavia 2284 9 L \N \N \N -34.6097706 -58.3987758 18 1156 \N agrillo +2761 2025-06-15 21:10:18.387504+00 2025-06-15 21:10:18.387518+00 f t Invitado Amar invitado-1750021816938@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-1616 +2762 2025-06-15 21:13:44.114666+00 2025-06-15 21:13:44.114675+00 f t Invitado Amar invitado-1750022023362@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1617 +2763 2025-06-15 21:26:40.402646+00 2025-06-15 21:26:40.402658+00 f t Nahuel Bogado ivannahuel975@gmail.com +541168912970 \N Charlone 1542 Casa \N \N -34.5807468 -58.4638709 24 \N \N nbogado +2764 2025-06-15 21:54:34.107792+00 2025-06-15 21:54:34.107802+00 f t Invitado Amar invitado-1750024473543@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-1618 +2765 2025-06-15 21:54:57.123806+00 2025-06-15 21:54:57.123814+00 f t Invitado Amar invitado-1750024496954@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-1619 +2766 2025-06-15 21:55:15.508411+00 2025-06-15 21:55:15.508419+00 f t Invitado Amar invitado-1750024515306@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-1620 +2767 2025-06-15 21:59:25.382464+00 2025-06-15 21:59:25.382476+00 f t Invitado Amar invitado-1750024764252@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-1621 +2768 2025-06-15 22:09:00.685545+00 2025-06-15 22:09:00.685557+00 f t Invitado Amar invitado-1750025340132@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1622 +2769 2025-06-15 22:31:08.141844+00 2025-06-15 22:31:08.141854+00 f t Invitado Amar invitado-1750026735851@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1623 +2770 2025-06-15 22:35:20.742549+00 2025-06-15 22:35:20.742559+00 f t Invitado Amar invitado-1750026920113@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-1624 +2771 2025-06-15 22:37:42.810084+00 2025-06-15 22:37:42.810093+00 f t Invitado Amar invitado-1750027062166@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-1625 +2772 2025-06-15 22:48:18.715894+00 2025-06-15 22:48:18.715903+00 f t Invitado Amar invitado-1750027699264@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1626 +2773 2025-06-15 22:51:04.711043+00 2025-06-15 22:51:04.711053+00 f t Invitado Amar invitado-1750027864077@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-1627 +2774 2025-06-15 22:57:15.524113+00 2025-06-15 22:57:15.524123+00 f t Invitado Amar invitado-1750028233519@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1628 +2775 2025-06-15 23:09:00.46261+00 2025-06-15 23:09:00.462623+00 f t Invitado Amar invitado-1750028940774@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1629 +2776 2025-06-15 23:11:50.595683+00 2025-06-15 23:11:50.595693+00 f t Invitado Amar invitado-1750029111156@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1630 +2777 2025-06-15 23:23:53.18671+00 2025-06-15 23:23:53.186722+00 f t Invitado Amar invitado-1750029831679@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-1631 +2778 2025-06-15 23:24:28.517877+00 2025-06-15 23:24:28.517888+00 f t Nadia Casá xaphira63@gmail.com +541123902434 \N Avenida Centenario 1630 13D \N \N \N -34.4654881 -58.5220036 77 \N \N ncasa +2779 2025-06-15 23:40:32.507566+00 2025-06-15 23:40:32.507577+00 f t Invitado Amar invitado-1750030831931@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1632 +2780 2025-06-15 23:41:51.695524+00 2025-06-15 23:41:51.695538+00 f t Invitado Amar invitado-1750030911166@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-1633 +2781 2025-06-16 00:04:39.124308+00 2025-06-16 00:04:39.12432+00 f t Invitado Amar invitado-1750032278039@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1634 +2782 2025-06-16 00:08:29.586813+00 2025-06-16 00:08:29.586825+00 f t Invitado Amar invitado-1750032508774@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-1635 +2783 2025-06-16 00:54:10.492903+00 2025-06-16 00:54:10.492914+00 f t Invitado Amar invitado-1750035249934@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1636 +2784 2025-06-16 01:29:25.995748+00 2025-06-16 01:29:25.995758+00 f t Invitado Amar invitado-1750037365361@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-1637 +2785 2025-06-16 02:10:30.809766+00 2025-06-16 02:10:30.809776+00 f t Invitado Amar invitado-1750039829749@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1638 +2786 2025-06-16 02:11:06.583623+00 2025-06-16 02:11:06.583633+00 f t Invitado Amar invitado-1750039863807@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-1639 +2787 2025-06-16 02:35:30.517209+00 2025-06-16 02:35:30.517222+00 f t Invitado Amar invitado-1750041331137@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-1640 +2788 2025-06-16 02:56:42.790689+00 2025-06-16 02:56:42.790698+00 f t Invitado Amar invitado-1750042601566@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1641 +2789 2025-06-16 03:17:44.439189+00 2025-06-16 03:17:44.439197+00 f t Invitado Amar invitado-1750043863715@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-1642 +2790 2025-06-16 03:21:04.532406+00 2025-06-16 03:21:04.532415+00 f t Invitado Amar invitado-1750044064040@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-1643 +2791 2025-06-16 03:27:28.788007+00 2025-06-16 03:27:28.788018+00 f t Invitado Amar invitado-1750044448191@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-1644 +2792 2025-06-16 03:47:47.759732+00 2025-06-16 03:47:47.759746+00 f t Magali Aguilar aguilarmagali@yahoo.com.ar +541140357949 \N Ibañez 2454 \N \N \N \N 14.1837012 121.5096853 77 1163 \N maguilar +2793 2025-06-16 05:23:55.893677+00 2025-06-16 05:23:55.89369+00 f t Invitado Amar invitado-1750051435520@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1645 +2794 2025-06-16 06:57:53.232584+00 2025-06-16 06:57:53.232596+00 f t Invitado Amar invitado-1750057072430@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-1646 +2795 2025-06-16 08:21:22.378533+00 2025-06-16 08:21:22.378547+00 f t Invitado Amar invitado-1750062080816@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1647 +2796 2025-06-16 09:55:25.508285+00 2025-06-16 09:55:25.508293+00 f t Invitado Amar invitado-1750067725169@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1648 +2797 2025-06-16 11:52:00.192055+00 2025-06-16 11:52:00.192068+00 f t Invitado Amar invitado-1750074720274@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1649 +2798 2025-06-16 12:06:24.530681+00 2025-06-16 12:06:24.53069+00 f t Invitado Amar invitado-1750075585187@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-1650 +2799 2025-06-16 12:26:54.492934+00 2025-06-16 12:26:54.492948+00 f t Invitado Amar invitado-1750076812430@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1651 +2800 2025-06-16 12:45:51.137157+00 2025-06-16 12:45:51.137169+00 f t Invitado Amar invitado-1750077950354@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1652 +2801 2025-06-16 13:53:49.267755+00 2025-06-16 13:53:49.267765+00 f t Invitado Amar invitado-1750082097155@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1653 +2802 2025-06-16 13:56:15.532239+00 2025-06-16 13:56:15.532252+00 f t Invitado Amar invitado-1750082174600@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-1654 +2803 2025-06-16 14:10:06.449587+00 2025-06-16 14:10:06.4496+00 f t Susana Venditto susana.venditto@alvear.com.ar +541144971103 \N virrey arredondo 3038 casa \N \N \N -34.5729799 -58.4553496 38 1162 \N svenditto +2804 2025-06-16 14:32:59.749127+00 2025-06-16 14:32:59.749139+00 f t Invitado Amar invitado-1750084379158@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-1655 +2805 2025-06-16 14:41:48.462861+00 2025-06-16 14:41:48.462873+00 f t Santiago Zucchi Santiagozucchi@gmail.com +541156030039 \N Paraguay 3870 8B \N \N -34.5899071 -58.4176241 1 \N \N szucchi +2806 2025-06-16 16:06:23.748575+00 2025-06-16 16:06:23.748588+00 f t Invitado Amar invitado-1750089983162@example.com 55555555 \N \N \N \N \N 66 \N \N iamar-1656 +2808 2025-06-16 16:42:35.61135+00 2025-06-16 16:42:35.611376+00 f t Invitado Amar invitado-1750092154977@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-1658 +2809 2025-06-16 16:46:59.423773+00 2025-06-16 16:46:59.423785+00 f t Cintia Martino cintlore.clm@gmail.com +541127553882 \N Medrano 609 PB depto1 banfield este, Buenos Aires \N \N -31.7676585 -60.5314832 113 \N \N cmartino +2810 2025-06-16 16:53:00.594477+00 2025-06-16 16:53:00.594491+00 f t Invitado Amar invitado-1750092779971@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1659 +2811 2025-06-16 16:59:02.473314+00 2025-06-16 16:59:02.473329+00 f t Invitado Amar invitado-1750093141212@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1660 +2812 2025-06-16 17:41:15.346498+00 2025-06-16 17:41:15.34651+00 f t Invitado Amar invitado-1750095674424@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1661 +2813 2025-06-16 17:45:11.246821+00 2025-06-16 17:45:11.246834+00 f t Invitado Amar invitado-1750095910531@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1662 +2814 2025-06-16 17:45:23.209724+00 2025-06-16 17:45:23.20974+00 f t Invitado Amar invitado-1750095922673@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-1663 +2815 2025-06-16 17:47:02.419437+00 2025-06-16 17:47:02.419451+00 f t Invitado Amar invitado-1750096021483@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-1664 +2816 2025-06-16 18:01:05.517371+00 2025-06-16 18:01:05.517381+00 f t Invitado Amar invitado-1750096865278@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1665 +2817 2025-06-16 18:32:05.435698+00 2025-06-16 18:32:05.43571+00 f t Invitado Amar invitado-1750098791048@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-1666 +2818 2025-06-16 18:42:55.846871+00 2025-06-16 18:42:55.846884+00 f t Invitado Amar invitado-1750099374964@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-1667 +2819 2025-06-16 18:51:12.528674+00 2025-06-16 18:51:12.528684+00 f t Invitado Amar invitado-1750099865786@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-1668 +2820 2025-06-16 19:55:12.990355+00 2025-06-16 19:55:12.990364+00 f t Invitado Amar invitado-1750103714169@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-1669 +2821 2025-06-16 20:09:12.96456+00 2025-06-16 20:09:12.96457+00 f t Paloma Farfán formente palu.f@hotmail.com +5493434548276 \N Costa Rica 4144 \N \N FEMALE 1996-07-24 -34.5916535 -58.4214571 1 1164 \N pfarfanformente +2822 2025-06-16 20:15:20.906179+00 2025-06-16 20:15:20.906188+00 f t Cynthia Solange Delonc cylonc@gmail.com +5491155998135 \N La pampa 4275 Pb 13 \N FEMALE 1970-09-14 -34.5607209 -58.4472603 3 1165 \N csolangedelonc +2823 2025-06-16 20:19:10.593669+00 2025-06-16 20:19:10.593678+00 f t Carolina thumim carolina.thumim@gmail.com +5491169131410Email \N Av juan bautista alberdi 773 Piso 10 C \N FEMALE 1989-07-14 -34.6229394 -58.4391733 14 1166 \N cthumim +2824 2025-06-16 20:41:51.633308+00 2025-06-16 20:41:51.633317+00 f t Invitado Amar invitado-1750106511204@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1670 +2825 2025-06-16 20:54:01.367645+00 2025-06-16 20:54:01.367658+00 f t Invitado Amar invitado-1750107240918@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1671 +2826 2025-06-16 20:56:01.323493+00 2025-06-16 20:56:01.323507+00 f t Invitado Amar invitado-1750107361047@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1672 +2827 2025-06-16 21:06:23.944994+00 2025-06-16 21:06:23.945007+00 f t Invitado Amar invitado-1750107983298@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1673 +2828 2025-06-16 21:33:03.840557+00 2025-06-16 21:33:03.840568+00 f t Invitado Amar invitado-1750109583048@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1674 +2829 2025-06-16 21:44:27.733593+00 2025-06-16 21:44:27.733602+00 f t Nicolas Teperman nickteperman@gmail.com +5491169278080 \N Teodoro García 1970 piso 15, belgrano, CABA \N MALE 1996-09-07 -34.5692864 -58.4461348 3 1167 \N nteperman +2830 2025-06-16 21:50:11.933371+00 2025-06-16 21:50:11.933385+00 f t Invitado Amar invitado-1750110611215@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-1675 +2831 2025-06-16 22:09:27.652836+00 2025-06-16 22:09:27.652847+00 f t Invitado Amar invitado-1750111766122@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-1676 +2832 2025-06-16 22:14:03.074993+00 2025-06-16 22:14:03.075003+00 f t Invitado Amar invitado-1750112042403@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-1677 +2833 2025-06-16 22:17:07.117258+00 2025-06-16 22:17:07.117266+00 f t Invitado Amar invitado-1750112225142@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1678 +2834 2025-06-16 22:30:30.409377+00 2025-06-16 22:30:30.409388+00 f t Invitado Amar invitado-1750113028847@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-1679 +2835 2025-06-16 23:10:40.991651+00 2025-06-16 23:10:40.991664+00 f t Invitado Amar invitado-1750115440549@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-1680 +2836 2025-06-16 23:45:36.692217+00 2025-06-16 23:45:36.692227+00 f t Invitado Amar invitado-1750117535872@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-1681 +2837 2025-06-17 00:17:12.112168+00 2025-06-17 00:17:12.112178+00 f t Invitado Amar invitado-1750119426807@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-1682 +2838 2025-06-17 00:18:29.316405+00 2025-06-17 00:18:29.316415+00 f t Invitado Amar invitado-1750119508467@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1683 +2839 2025-06-17 00:29:05.997939+00 2025-06-17 00:29:05.997949+00 f t Invitado Amar invitado-1750120144710@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-1684 +2840 2025-06-17 00:47:10.36903+00 2025-06-17 00:47:10.369043+00 f t Invitado Amar invitado-1750121229777@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1685 +2841 2025-06-17 00:56:42.302669+00 2025-06-17 00:56:42.302677+00 f t Invitado Amar invitado-1750121802321@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-1686 +2842 2025-06-17 01:12:31.231498+00 2025-06-17 01:12:31.231513+00 f t Invitado Amar invitado-1750122750850@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1687 +2843 2025-06-17 01:30:21.578368+00 2025-06-17 01:30:21.578382+00 f t Invitado Amar invitado-1750123820630@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-1688 +2844 2025-06-17 03:00:45.59287+00 2025-06-17 03:00:45.59288+00 f t Invitado Amar invitado-1750129244867@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1689 +2845 2025-06-17 03:13:57.12803+00 2025-06-17 03:13:57.128042+00 f t Invitado Amar invitado-1750130036731@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1690 +2846 2025-06-17 03:25:41.742487+00 2025-06-17 03:25:41.7425+00 f t Invitado Amar invitado-1750130740876@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1691 +2847 2025-06-17 04:59:44.767797+00 2025-06-17 04:59:44.767811+00 f t Invitado Amar invitado-1750136384079@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1692 +2848 2025-06-17 05:24:45.633638+00 2025-06-17 05:24:45.633648+00 f t Invitado Amar invitado-1750137885606@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1693 +2849 2025-06-17 12:05:34.670956+00 2025-06-17 12:05:34.670969+00 f t Invitado Amar invitado-1750161933947@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-1694 +2850 2025-06-17 12:47:40.287599+00 2025-06-17 12:47:40.287609+00 f t Invitado Amar invitado-1750164460887@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1695 +2851 2025-06-17 12:49:06.105125+00 2025-06-17 12:49:06.105135+00 f t Invitado Amar invitado-1750164544500@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-1696 +2852 2025-06-17 13:19:53.992068+00 2025-06-17 13:19:53.99208+00 f t Invitado Amar invitado-1750166393511@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-1697 +2853 2025-06-17 13:34:32.43631+00 2025-06-17 13:34:32.436322+00 f t Invitado Amar invitado-1750167271875@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1698 +2854 2025-06-17 13:38:13.913691+00 2025-06-17 13:38:13.913705+00 f t Invitado Amar invitado-1750167493149@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-1699 +2855 2025-06-17 14:05:21.699942+00 2025-06-17 14:05:21.699955+00 f t Invitado Amar invitado-1750169121038@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1700 +2856 2025-06-17 14:22:41.421994+00 2025-06-17 14:22:41.422004+00 f t Violeta Chauqui violetachauqui4@gmail.com 5491161116303 \N Rivadavia 8055 4b \N FEMALE 1980-11-15 -34.6326191 -58.4773963 16 1169 \N vchauqui +2857 2025-06-17 14:27:20.195575+00 2025-06-17 14:27:20.195585+00 f t Invitado Amar invitado-1750170439470@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1701 +2858 2025-06-17 14:34:11.321796+00 2025-06-17 14:34:11.321806+00 f t Invitado Amar invitado-1750170851923@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-1702 +2859 2025-06-17 14:37:20.027377+00 2025-06-17 14:37:20.027391+00 f t Invitado Amar invitado-1750171040876@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-1703 +2860 2025-06-17 14:38:28.83234+00 2025-06-17 14:38:28.832349+00 f t Invitado Amar invitado-1750171109665@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-1704 +2861 2025-06-17 14:38:40.460527+00 2025-06-17 14:38:40.460536+00 f t Invitado Amar invitado-1750171120257@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-1705 +2862 2025-06-17 14:39:13.194527+00 2025-06-17 14:39:13.194536+00 f t Invitado Amar invitado-1750171154024@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-1706 +2863 2025-06-17 14:40:52.120994+00 2025-06-17 14:40:52.121007+00 f t Invitado Amar invitado-1750171252945@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-1707 +2864 2025-06-17 14:44:52.014282+00 2025-06-17 14:44:52.014294+00 f t Invitado Amar invitado-1750171491420@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1708 +2865 2025-06-17 14:46:57.150711+00 2025-06-17 14:46:57.150723+00 f t Invitado Amar invitado-1750171616507@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1709 +2866 2025-06-17 14:58:50.965816+00 2025-06-17 14:58:50.965828+00 f t Invitado Amar invitado-1750172329954@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1710 +2867 2025-06-17 15:09:42.875016+00 2025-06-17 15:09:42.875026+00 f t MARIA DANIELA GIOVANAZ maria.giovanaz@hiba.org.ar 1156568959 \N \N 1980-12-09 38.888238 -3.7118218 23 \N \N mgiovanaz +2868 2025-06-17 15:10:03.2604+00 2025-06-17 15:10:03.260414+00 f t Invitado Amar invitado-1750173002335@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-1711 +2869 2025-06-17 15:20:06.048063+00 2025-06-17 15:20:06.048072+00 f t Jesica Mendoza mendozajesica2811@gmail.com 91128862657 \N Guardia vieja 4159 piso 8 spto 801 \N FEMALE 1989-11-21 -34.6003813 -58.4230831 23 \N \N jmendoza +2870 2025-06-17 15:46:24.091411+00 2025-06-17 15:46:24.09142+00 f t Invitado Amar invitado-1750175183395@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-1712 +2871 2025-06-17 15:51:32.913049+00 2025-06-17 15:51:32.913058+00 f t MARIA DANIELA GIOVANAZ maria.giovanaz@hospitalitaliano.org.ar +541156568959 \N Colombres 250 7 A \N \N -34.6150395 -58.4184942 23 \N \N mgiovanaz-2 +2872 2025-06-17 16:14:06.664363+00 2025-06-17 16:14:06.664371+00 f t Invitado Amar invitado-1750176846179@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1713 +2873 2025-06-17 16:16:31.218607+00 2025-06-17 16:16:31.21862+00 f t Invitado Amar invitado-1750176992113@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1714 +2874 2025-06-17 17:20:36.512394+00 2025-06-17 17:20:36.512405+00 f t Susana Weinstein susana.wein@gmail.com +541155658239 \N Av. Cordoba 3620 303 \N \N -34.5993486 -58.387507 9 \N \N sweinstein +2875 2025-06-17 17:24:53.323355+00 2025-06-17 17:24:53.323364+00 f t Invitado Amar invitado-1750181092732@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1715 +2876 2025-06-17 17:53:17.815001+00 2025-06-17 17:53:17.815014+00 f t Invitado Amar invitado-1750182798019@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1716 +2877 2025-06-17 18:02:03.836448+00 2025-06-17 18:02:03.836457+00 f t Eugenia Hesse euge.hesse@gmail.com +549113359818 \N Juan José Paso 276 8B \N \N -34.4896868 -58.4967166 6 \N \N ehesse +2878 2025-06-17 18:47:29.756144+00 2025-06-17 18:47:29.756157+00 f t Invitado Amar invitado-1750186048978@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1717 +2879 2025-06-17 18:56:18.081288+00 2025-06-17 18:56:18.081297+00 f t Invitado Amar invitado-1750186580284@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-1718 +2880 2025-06-17 18:56:45.316274+00 2025-06-17 18:56:45.316283+00 f t Tuti Macri tuti@lookoptic.com +541125064293 \N Juan bautista Alberdi 410 1105 \N \N -34.5052291 -58.4793901 39 1174 \N tmacri +2881 2025-06-17 20:59:39.508819+00 2025-06-17 20:59:39.508827+00 f t Maria Daniela Giovanaz maria.giovannaz@hiba.org.ar 91156568959 \N Colombres 250 1177 entre Moreno y Belgrano \N FEMALE \N -34.6150395 -58.4184942 23 1175 \N mgiovanaz-3 +2882 2025-06-17 21:16:24.34071+00 2025-06-17 21:16:24.340719+00 f t Invitado Amar invitado-1750194983786@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1719 +2883 2025-06-17 21:30:43.017074+00 2025-06-17 21:30:43.017087+00 f t Invitado Amar invitado-1750195841826@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1720 +2884 2025-06-17 21:54:37.934386+00 2025-06-17 21:54:37.934397+00 f t Invitado Amar invitado-1750197277246@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1721 +2885 2025-06-17 22:52:57.921255+00 2025-06-17 22:52:57.921264+00 f t Invitado Amar invitado-1750200777732@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1722 +2886 2025-06-17 22:56:20.865514+00 2025-06-17 22:56:20.865523+00 f t Invitado Amar invitado-1750200979995@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1723 +2887 2025-06-17 23:18:46.625174+00 2025-06-17 23:18:46.625185+00 f t Invitado Amar invitado-1750202325916@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1724 +2888 2025-06-17 23:19:57.120652+00 2025-06-17 23:19:57.120663+00 f t Invitado Amar invitado-1750202396862@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1725 +2889 2025-06-17 23:49:43.361645+00 2025-06-17 23:49:43.36166+00 f t Invitado Amar invitado-1750204182760@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-1726 +2890 2025-06-18 00:14:51.730649+00 2025-06-18 00:14:51.730663+00 f t Invitado Amar invitado-1750205691326@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1727 +2891 2025-06-18 00:43:12.121193+00 2025-06-18 00:43:12.121205+00 f t Invitado Amar invitado-1750207393526@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1728 +2892 2025-06-18 01:16:00.180025+00 2025-06-18 01:16:00.180034+00 f t Lukas Heraldo lobos lobosheraldo@gmail.com +5491161303256 \N Isabel la católica 340 PB Dpto 3 \N MALE 1974-02-23 -34.6355319 -58.3738659 32 1176 \N llobos +2893 2025-06-18 01:17:56.891935+00 2025-06-18 01:17:56.891944+00 f t Invitado Amar invitado-1750209476298@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1729 +2894 2025-06-18 01:30:47.408277+00 2025-06-18 01:30:47.408286+00 f t Mariana Horn mariana_b_horn@hotmail.com +5491161598132 \N Alberti 1162 \N \N FEMALE 1969-09-18 -34.6285394 -58.3999116 12 1177 \N mhorn +2895 2025-06-18 01:38:07.467582+00 2025-06-18 01:38:07.467591+00 f t Isabella Franco isabella.francobg@gmail.com +5491171629999 \N Cramer 1765 8B \N MALE 2002-06-11 -34.5679161 -58.4583419 3 1178 \N ifranco +2896 2025-06-18 02:31:24.104571+00 2025-06-18 02:31:24.10458+00 f t Invitado Amar invitado-1750213880658@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-1730 +2897 2025-06-18 02:33:57.865225+00 2025-06-18 02:33:57.865234+00 f t Invitado Amar invitado-1750214037228@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-1731 +2898 2025-06-18 02:47:35.298046+00 2025-06-18 02:47:35.298055+00 f t Invitado Amar invitado-1750214853663@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1732 +2899 2025-06-18 02:48:02.765007+00 2025-06-18 02:48:02.765017+00 f t Invitado Amar invitado-1750214881458@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1733 +2900 2025-06-18 02:48:46.277517+00 2025-06-18 02:48:46.277527+00 f t Invitado Amar invitado-1750214924908@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1734 +2901 2025-06-18 02:51:44.693488+00 2025-06-18 02:51:44.693499+00 f t Invitado Amar invitado-1750215103394@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1735 +2902 2025-06-18 04:54:57.535201+00 2025-06-18 04:54:57.535209+00 f t Invitado Amar invitado-1750222495938@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1736 +2903 2025-06-18 05:39:08.50254+00 2025-06-18 05:39:08.502553+00 f t Invitado Amar invitado-1750225147913@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1737 +2904 2025-06-18 06:07:04.684368+00 2025-06-18 06:07:04.684379+00 f t Invitado Amar invitado-1750226823077@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1738 +2905 2025-06-18 06:12:07.100872+00 2025-06-18 06:12:07.100885+00 f t Invitado Amar invitado-1750227125873@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1739 +2906 2025-06-18 06:14:10.866734+00 2025-06-18 06:14:10.866743+00 f t Invitado Amar invitado-1750227250519@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1740 +2907 2025-06-18 07:46:43.374771+00 2025-06-18 07:46:43.37478+00 f t Invitado Amar invitado-1750232802876@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1741 +2908 2025-06-18 10:30:21.384598+00 2025-06-18 10:30:21.38461+00 f t Invitado Amar invitado-1750242620589@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1742 +2909 2025-06-18 10:57:32.942022+00 2025-06-18 10:57:32.942031+00 f t Invitado Amar invitado-1750244252484@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-1743 +2910 2025-06-18 11:24:30.169605+00 2025-06-18 11:24:30.169616+00 f t Invitado Amar invitado-1750245869644@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1744 +2911 2025-06-18 12:24:34.295783+00 2025-06-18 12:24:34.295795+00 f t Invitado Amar invitado-1750249473728@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1745 +2912 2025-06-18 12:28:40.186741+00 2025-06-18 12:28:40.186754+00 f t Invitado Amar invitado-1750249718500@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1746 +2913 2025-06-18 13:04:14.333036+00 2025-06-18 13:04:14.333047+00 f t Invitado Amar invitado-1750251853415@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1747 +2914 2025-06-18 14:07:49.843558+00 2025-06-18 14:07:49.843566+00 f t Invitado Amar invitado-1750255668792@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1748 +2915 2025-06-18 15:15:18.958288+00 2025-06-18 15:15:18.9583+00 f t Invitado Amar invitado-1750259718221@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1749 +2916 2025-06-18 15:17:16.581125+00 2025-06-18 15:17:16.581136+00 f t Invitado Amar invitado-1750259835680@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1750 +2917 2025-06-18 15:18:33.228604+00 2025-06-18 15:18:33.228612+00 f t Invitado Amar invitado-1750259912634@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-1751 +2918 2025-06-18 15:19:07.130182+00 2025-06-18 15:19:07.130194+00 f t Invitado Amar invitado-1750259946695@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-1752 +2919 2025-06-18 15:41:53.762816+00 2025-06-18 15:41:53.762824+00 f t Invitado Amar invitado-1750261312844@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1753 +2920 2025-06-18 15:55:08.003068+00 2025-06-18 15:55:08.003082+00 f t Invitado Amar invitado-1750262107524@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1754 +2921 2025-06-18 16:03:49.897454+00 2025-06-18 16:03:49.897466+00 f t Invitado Amar invitado-1750262629186@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1755 +2922 2025-06-18 16:08:29.307934+00 2025-06-18 16:08:29.307943+00 f t Invitado Amar invitado-1750262909562@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-1756 +2923 2025-06-18 16:11:10.590958+00 2025-06-18 16:11:10.590966+00 f t Invitado Amar invitado-1750263071482@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-1757 +2924 2025-06-18 16:19:31.822819+00 2025-06-18 16:19:31.822831+00 f t Invitado Amar invitado-1750263571340@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-1758 +2925 2025-06-18 16:21:16.635977+00 2025-06-18 16:21:16.635999+00 f t Vanesa Maricruz Vivas vanu.med@gmail.com 5491133049079 \N Camargo 670 3B \N FEMALE 1983-04-20 -34.5993388 -58.4415182 26 1179 \N vmaricruzvivas +2926 2025-06-18 16:28:34.01474+00 2025-06-18 16:28:34.01475+00 f t Invitado Amar invitado-1750264113201@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-1759 +2927 2025-06-18 17:21:53.817633+00 2025-06-18 17:21:53.817645+00 f t Invitado Amar invitado-1750267313819@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1760 +2928 2025-06-18 17:25:35.503412+00 2025-06-18 17:25:35.50342+00 f t Invitado Amar invitado-1750267535807@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1761 +2929 2025-06-18 17:30:25.962351+00 2025-06-18 17:30:25.962361+00 f t Invitado Amar invitado-1750267825556@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1762 +2930 2025-06-18 17:43:21.737462+00 2025-06-18 17:43:21.737473+00 f t Invitado Amar invitado-1750268601944@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1763 +2931 2025-06-18 17:46:18.041064+00 2025-06-18 17:46:18.041073+00 f t Invitado Amar invitado-1750268777610@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1764 +2932 2025-06-18 18:19:34.364912+00 2025-06-18 18:19:34.364924+00 f t Invitado Amar invitado-1750270773893@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1765 +2933 2025-06-18 18:41:59.002785+00 2025-06-18 18:41:59.002798+00 f t Invitado Amar invitado-1750272118541@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1766 +2934 2025-06-18 18:55:15.50443+00 2025-06-18 18:55:15.504439+00 f t Invitado Amar invitado-1750272916223@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1767 +2935 2025-06-18 19:21:47.926095+00 2025-06-18 19:21:47.926107+00 f t Invitado Amar invitado-1750274507529@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1768 +2936 2025-06-18 19:25:14.946383+00 2025-06-18 19:25:14.946395+00 f t Invitado Amar invitado-1750274713978@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-1769 +2937 2025-06-18 19:36:19.099531+00 2025-06-18 19:36:19.099539+00 f t Invitado Amar invitado-1750275378693@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1770 +2938 2025-06-18 19:41:06.899887+00 2025-06-18 19:41:06.8999+00 f t Invitado Amar invitado-1750275666239@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1771 +2939 2025-06-18 21:22:23.813643+00 2025-06-18 21:22:23.813656+00 f t Maria Soledad Martinez Morello msolemm@gmail.com +5491134020865 \N La Merced 5817 \N \N -34.608044 -58.582417 88 \N \N mmartinezmorello +2940 2025-06-18 21:33:44.222448+00 2025-06-18 21:33:44.222456+00 f t Invitado Amar invitado-1750282423073@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-1772 +2941 2025-06-18 22:19:03.185091+00 2025-06-18 22:19:03.185107+00 f t Invitado Amar invitado-1750285141964@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1773 +2942 2025-06-18 22:36:36.310684+00 2025-06-18 22:36:36.310698+00 f t Maria Cabrera mary.3107@hotmail.com +5491132630234 \N Vuelta de obligado 3042 8 2 \N \N -34.5527319 -58.4639555 25 \N \N mcabrera-2 +2943 2025-06-18 22:41:53.985556+00 2025-06-18 22:41:53.985568+00 f t Christian Oliva time007@gmail.com +541158092555 \N Portela 261 \N \N \N \N -34.635197 -58.4720527 4 1188 \N coliva +2944 2025-06-18 22:53:56.910745+00 2025-06-18 22:53:56.910755+00 f t Invitado Amar invitado-1750287236410@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-1774 +2945 2025-06-18 22:54:20.595944+00 2025-06-18 22:54:20.595952+00 f t Invitado Amar invitado-1750287260195@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1775 +2946 2025-06-18 23:21:35.345721+00 2025-06-18 23:21:35.345731+00 f t Invitado Amar invitado-1750288894906@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-1776 +2947 2025-06-18 23:50:10.651206+00 2025-06-18 23:50:10.65122+00 f t Invitado Amar invitado-1750290610063@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1777 +2948 2025-06-18 23:51:21.619829+00 2025-06-18 23:51:21.619842+00 f t Invitado Amar invitado-1750290681466@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1778 +2949 2025-06-19 00:05:04.808544+00 2025-06-19 00:05:04.808559+00 f t Invitado Amar invitado-1750291503977@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1779 +2950 2025-06-19 00:05:47.874477+00 2025-06-19 00:05:47.874485+00 f t Alejandra Becerra alejandrayaelbecerra@gmail.com +5491167589751 \N av. Diaz velez 4038 4B \N FEMALE 1986-04-28 -34.6087052 -58.4236375 23 1189 \N abecerra +2951 2025-06-19 00:06:09.134093+00 2025-06-19 00:06:09.134107+00 f t Lucas Trevisan lucastrevi_1992@hotmail.com +541159273549 \N Viamonte 1337 5A \N \N -34.6004618 -58.3858925 13 \N \N ltrevisan +2952 2025-06-19 00:38:01.871344+00 2025-06-19 00:38:01.871358+00 f t Invitado Amar invitado-1750293481389@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-1780 +2953 2025-06-19 00:38:38.385384+00 2025-06-19 00:38:38.385397+00 f t Invitado Amar invitado-1750293517018@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1781 +2954 2025-06-19 00:56:56.944174+00 2025-06-19 00:56:56.944183+00 f t Invitado Amar invitado-1750294616757@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1782 +2955 2025-06-19 01:07:08.037121+00 2025-06-19 01:07:08.037135+00 f t Invitado Amar invitado-1750295227576@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-1783 +2956 2025-06-19 01:21:28.252829+00 2025-06-19 01:21:28.252844+00 f t Invitado Amar invitado-1750296087904@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1784 +2957 2025-06-19 01:22:47.686571+00 2025-06-19 01:22:47.686584+00 f t Invitado Amar invitado-1750296167503@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1785 +2958 2025-06-19 01:23:17.344194+00 2025-06-19 01:23:17.344209+00 f t Invitado Amar invitado-1750296196509@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1786 +2959 2025-06-19 01:25:25.581386+00 2025-06-19 01:25:25.581396+00 f t Invitado Amar invitado-1750296325063@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1787 +2960 2025-06-19 01:28:00.54886+00 2025-06-19 01:28:00.548872+00 f t Invitado Amar invitado-1750296479975@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1788 +2961 2025-06-19 01:31:30.799919+00 2025-06-19 01:31:30.799977+00 f t Invitado Amar invitado-1750296690221@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1789 +2962 2025-06-19 01:50:25.259468+00 2025-06-19 01:50:25.259478+00 f t Invitado Amar invitado-1750297824755@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1790 +2963 2025-06-19 02:41:05.835666+00 2025-06-19 02:41:05.83568+00 f t Invitado Amar invitado-1750300865073@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1791 +2964 2025-06-19 02:54:10.485422+00 2025-06-19 02:54:10.485436+00 f t Invitado Amar invitado-1750301651406@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-1792 +2965 2025-06-19 03:31:37.840953+00 2025-06-19 03:31:37.84097+00 f t Invitado Amar invitado-1750303899543@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-1793 +2966 2025-06-19 03:33:29.687453+00 2025-06-19 03:33:29.687463+00 f t Invitado Amar invitado-1750304012031@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-1794 +2967 2025-06-19 04:19:13.744771+00 2025-06-19 04:19:13.744795+00 f t Invitado Amar invitado-1750306754094@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1795 +2968 2025-06-19 09:59:55.547297+00 2025-06-19 09:59:55.54731+00 f t Invitado Amar invitado-1750327195400@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1796 +2969 2025-06-19 10:39:10.991239+00 2025-06-19 10:39:10.991252+00 f t Invitado Amar invitado-1750329550212@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1797 +2971 2025-06-19 11:00:20.236102+00 2025-06-19 11:00:20.236113+00 f t Invitado Amar invitado-1750330819840@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1798 +2972 2025-06-19 12:24:29.765786+00 2025-06-19 12:24:29.7658+00 f t Rocio Casado Alvarez rochi1555@gmail.com +541125063469 \N Av Juan Bautista Alberdi 2219 3 c \N \N -34.6304008 -58.4590967 4 \N \N rcasadoalvarez +2973 2025-06-19 12:41:47.374098+00 2025-06-19 12:41:47.374106+00 f t Carlos Martín Pires martinpires@hotmail.com 91164685135 \N Av. Boyacá 520 1C \N MALE \N -34.6211301 -58.4606849 4 1192 \N cpires +2974 2025-06-19 13:12:30.433546+00 2025-06-19 13:12:30.433555+00 f t Invitado Amar invitado-1750338749745@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-1799 +2975 2025-06-19 13:19:43.58283+00 2025-06-19 13:19:43.582844+00 f t Invitado Amar invitado-1750339182947@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1800 +2976 2025-06-19 13:20:10.230268+00 2025-06-19 13:20:10.230279+00 f t Susana Ghizzardi lsusanagh@gmail.com 91138720828 \N Honduras 4004 4B \N FEMALE 1955-09-24 -27.4759134 -59.0069697 1 1194 \N sghizzardi +2977 2025-06-19 15:36:43.772444+00 2025-06-19 15:36:43.772456+00 f t Invitado Amar invitado-1750347402421@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1801 +2978 2025-06-19 16:05:36.493588+00 2025-06-19 16:05:36.493602+00 f t Invitado Amar invitado-1750349135889@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-1802 +2979 2025-06-19 16:15:22.784492+00 2025-06-19 16:15:22.784507+00 f t Invitado Amar invitado-1750349721927@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1803 +2980 2025-06-19 16:42:47.181268+00 2025-06-19 16:42:47.18128+00 f t Invitado Amar invitado-1750351366721@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1804 +2981 2025-06-19 16:43:00.248464+00 2025-06-19 16:43:00.248475+00 f t Invitado Amar invitado-1750351379756@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-1805 +2982 2025-06-19 16:55:03.999607+00 2025-06-19 16:55:03.999621+00 f t Invitado Amar invitado-1750352103602@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-1806 +2983 2025-06-19 16:55:28.335269+00 2025-06-19 16:55:28.335283+00 f t Invitado Amar invitado-1750352127154@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1807 +2984 2025-06-19 17:01:41.310717+00 2025-06-19 17:01:41.31073+00 f t Invitado Amar invitado-1750352498943@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-1808 +2985 2025-06-19 17:04:59.663325+00 2025-06-19 17:04:59.663336+00 f t Invitado Amar invitado-1750352698427@example.com 55555555 \N \N \N \N \N 48 \N \N iamar-1809 +2986 2025-06-19 17:06:56.712261+00 2025-06-19 17:06:56.712271+00 f t Invitado Amar invitado-1750352815631@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-1810 +2987 2025-06-19 17:11:34.473851+00 2025-06-19 17:11:34.473866+00 f t Invitado Amar invitado-1750353094821@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1811 +2988 2025-06-19 17:15:06.320825+00 2025-06-19 17:15:06.32084+00 f t Invitado Amar invitado-1750353305599@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1812 +2989 2025-06-19 17:19:34.782811+00 2025-06-19 17:19:34.782821+00 f t Invitado Amar invitado-1750353574363@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1813 +2990 2025-06-19 17:29:41.628303+00 2025-06-19 17:29:41.628319+00 f t Invitado Amar invitado-1750354181070@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1814 +2991 2025-06-19 17:46:12.317279+00 2025-06-19 17:46:12.317293+00 f t Invitado Amar invitado-1750355171789@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1815 +2992 2025-06-19 18:11:07.297711+00 2025-06-19 18:11:07.297727+00 f t Invitado Amar invitado-1750356666237@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1816 +2993 2025-06-19 18:22:41.715954+00 2025-06-19 18:22:41.715967+00 f t Invitado Amar invitado-1750357360937@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1817 +2994 2025-06-19 18:23:25.247326+00 2025-06-19 18:23:25.247336+00 f t Invitado Amar invitado-1750357404475@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1818 +2995 2025-06-19 18:24:24.265934+00 2025-06-19 18:24:24.265946+00 f t Invitado Amar invitado-1750357463743@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1819 +2996 2025-06-19 18:28:31.473917+00 2025-06-19 18:28:31.47393+00 f t Invitado Amar invitado-1750357709160@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-1820 +2997 2025-06-19 19:06:06.785781+00 2025-06-19 19:06:06.785792+00 f t Invitado Amar invitado-1750359966358@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1821 +2998 2025-06-19 19:14:31.605935+00 2025-06-19 19:14:31.605948+00 f t Invitado Amar invitado-1750360470707@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-1822 +2999 2025-06-19 20:02:44.173738+00 2025-06-19 20:02:44.173751+00 f t Invitado Amar invitado-1750363363715@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1823 +3000 2025-06-19 20:07:23.219958+00 2025-06-19 20:07:23.219969+00 f t Sofia Borelli sofiaborelli27@gmail.com +541136455304 \N Italia 2179 2 A \N \N -34.6834134 -58.3853868 73 \N \N sborelli +3001 2025-06-19 20:26:41.064119+00 2025-06-19 20:26:41.064129+00 f t Invitado Amar invitado-1750364800655@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-1824 +3003 2025-06-19 20:49:34.300992+00 2025-06-19 20:49:34.301002+00 f t Invitado Amar invitado-1750366173822@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-1825 +3004 2025-06-19 21:11:15.007937+00 2025-06-19 21:11:15.007951+00 f t Invitado Amar invitado-1750367474998@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-1826 +3005 2025-06-19 21:27:42.15333+00 2025-06-19 21:27:42.153341+00 f t Invitado Amar invitado-1750368462046@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1827 +3006 2025-06-19 22:16:13.566452+00 2025-06-19 22:16:13.566466+00 f t Invitado Amar invitado-1750371373258@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1828 +3002 2025-06-19 20:31:54.699118+00 2025-06-19 20:31:54.699126+00 f t Silvana Mercado mcdosilvana@gmail.com 5491132643788 \N Juana Manso 1122 \N \N FEMALE \N -34.610723 -58.3625817 30 1197 \N smercado +13531 2025-11-17 19:14:21.511193+00 2025-11-17 19:14:21.511205+00 f t Invitado Amar invitado-1763406860337@example.com 55555555 \N \N \N \N \N 1 \N \N \N +13730 2025-11-19 09:03:03.354745+00 2025-11-19 09:03:03.354755+00 f t Invitado Amar invitado-1763542956282@example.com 55555555 \N \N \N \N \N 70 \N \N \N +3007 2025-06-19 22:30:58.555095+00 2025-06-19 22:30:58.555106+00 f t Diego Olivera diego.olivera74@yahoo.com.ar +541171564670 \N Av las Heras 2078 \N \N -34.5896045 -58.3947112 9 \N \N dolivera-2 +3008 2025-06-19 22:47:50.680213+00 2025-06-19 22:47:50.680252+00 f t Invitado Amar invitado-1750373269773@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1829 +3009 2025-06-19 22:58:48.626025+00 2025-06-19 22:58:48.626038+00 f t Invitado Amar invitado-1750373929147@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-1830 +3010 2025-06-19 23:07:13.159577+00 2025-06-19 23:07:13.159588+00 f t Invitado Amar invitado-1750374434187@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-1831 +3011 2025-06-19 23:16:43.030975+00 2025-06-19 23:16:43.030997+00 f t Invitado Amar invitado-1750374999090@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-1832 +3012 2025-06-19 23:27:19.601294+00 2025-06-19 23:27:19.601307+00 f t Invitado Amar invitado-1750375640036@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-1833 +3013 2025-06-19 23:45:44.693831+00 2025-06-19 23:45:44.693845+00 f t Invitado Amar invitado-1750376744254@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-1834 +3014 2025-06-19 23:46:00.836108+00 2025-06-19 23:46:00.836122+00 f t Invitado Amar invitado-1750376760723@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-1835 +3015 2025-06-19 23:52:16.575726+00 2025-06-19 23:52:16.575737+00 f t Invitado Amar invitado-1750377137027@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1836 +3016 2025-06-19 23:56:49.212799+00 2025-06-19 23:56:49.21281+00 f t Invitado Amar invitado-1750377408871@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-1837 +3017 2025-06-20 00:29:40.180594+00 2025-06-20 00:29:40.180606+00 f t Invitado Amar invitado-1750379379282@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1838 +3018 2025-06-20 00:45:39.390914+00 2025-06-20 00:45:39.390929+00 f t Invitado Amar invitado-1750380381071@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1839 +3019 2025-06-20 00:47:51.84058+00 2025-06-20 00:47:51.840594+00 f t Invitado Amar invitado-1750380513762@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1840 +3020 2025-06-20 00:50:41.316918+00 2025-06-20 00:50:41.316932+00 f t Invitado Amar invitado-1750380683226@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1841 +3021 2025-06-20 00:51:22.622412+00 2025-06-20 00:51:22.622422+00 f t Invitado Amar invitado-1750380724503@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-1842 +3022 2025-06-20 01:04:14.631683+00 2025-06-20 01:04:14.631696+00 f t Invitado Amar invitado-1750381454001@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1843 +3023 2025-06-20 01:07:51.121061+00 2025-06-20 01:07:51.121077+00 f t Invitado Amar invitado-1750381671012@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-1844 +3024 2025-06-20 01:08:10.142652+00 2025-06-20 01:08:10.142662+00 f t Invitado Amar invitado-1750381690615@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-1845 +3025 2025-06-20 01:08:32.777571+00 2025-06-20 01:08:32.777583+00 f t Invitado Amar invitado-1750381713265@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-1846 +3026 2025-06-20 01:10:10.793258+00 2025-06-20 01:10:10.793273+00 f t Invitado Amar invitado-1750381809431@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1847 +3027 2025-06-20 01:12:41.791788+00 2025-06-20 01:12:41.791802+00 f t Invitado Amar invitado-1750381961880@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1848 +3028 2025-06-20 01:15:14.342535+00 2025-06-20 01:15:14.342546+00 f t Invitado Amar invitado-1750382114937@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1849 +3029 2025-06-20 01:15:55.162353+00 2025-06-20 01:15:55.162369+00 f t Invitado Amar invitado-1750382155085@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1850 +3030 2025-06-20 01:16:34.237391+00 2025-06-20 01:16:34.237407+00 f t Invitado Amar invitado-1750382194084@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-1851 +3031 2025-06-20 01:16:44.958297+00 2025-06-20 01:16:44.958309+00 f t Invitado Amar invitado-1750382203374@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-1852 +3032 2025-06-20 02:15:35.653547+00 2025-06-20 02:15:35.653559+00 f t Invitado Amar invitado-1750385735176@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1853 +3033 2025-06-20 03:08:07.760454+00 2025-06-20 03:08:07.760469+00 f t Invitado Amar invitado-1750388887453@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1854 +3034 2025-06-20 03:08:25.49205+00 2025-06-20 03:08:25.492065+00 f t Martin Kuperman Martinkuperman@gmail.com +5491139042991 \N Culpina 159 8 A \N \N -34.6319935 -58.4661029 4 \N \N mkuperman +3035 2025-06-20 03:10:39.702076+00 2025-06-20 03:10:39.702091+00 f t Invitado Amar invitado-1750389038746@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1855 +3036 2025-06-20 03:35:53.158727+00 2025-06-20 03:35:53.158739+00 f t Invitado Amar invitado-1750390552470@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1856 +3037 2025-06-20 03:43:11.068535+00 2025-06-20 03:43:11.068547+00 f t Invitado Amar invitado-1750390990913@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1857 +3038 2025-06-20 06:16:21.606239+00 2025-06-20 06:16:21.606251+00 f t Invitado Amar invitado-1750400180265@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-1858 +3039 2025-06-20 09:15:13.165798+00 2025-06-20 09:15:13.165809+00 f t Invitado Amar invitado-1750410914010@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1859 +3040 2025-06-20 13:13:22.078588+00 2025-06-20 13:13:22.078601+00 f t Invitado Amar invitado-1750425201635@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1860 +3041 2025-06-20 13:47:50.533204+00 2025-06-20 13:47:50.533215+00 f t Invitado Amar invitado-1750427270098@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1861 +3042 2025-06-20 14:20:46.042595+00 2025-06-20 14:20:46.042607+00 f t Paua Perazzo mppzz005@gmail.com +541131408489 \N Mexico 357 PB \N \N -34.6147524 -58.37127 49 \N \N pperazzo +3043 2025-06-20 14:29:27.16636+00 2025-06-20 14:29:27.166374+00 f t Maria Sartori maria_sartori@yahoo.com +541144707580 \N Independencia 2809 3 piso A \N \N -34.6190737 -58.4052619 18 1199 \N msartori +3044 2025-06-20 14:39:12.271382+00 2025-06-20 14:39:12.271394+00 f t Invitado Amar invitado-1750430351794@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1862 +3045 2025-06-20 14:46:48.347614+00 2025-06-20 14:46:48.347628+00 f t Invitado Amar invitado-1750430807740@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-1863 +3046 2025-06-20 15:18:32.793167+00 2025-06-20 15:18:32.793176+00 f t Invitado Amar invitado-1750432712113@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1864 +3047 2025-06-20 15:21:00.563714+00 2025-06-20 15:21:00.563724+00 f t Invitado Amar invitado-1750432860395@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1865 +3048 2025-06-20 15:37:53.989783+00 2025-06-20 15:37:53.989793+00 f t Invitado Amar invitado-1750433873530@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1866 +3049 2025-06-20 15:51:29.192561+00 2025-06-20 15:51:29.192574+00 f t Invitado Amar invitado-1750434688739@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-1867 +3050 2025-06-20 16:27:38.706385+00 2025-06-20 16:27:38.706398+00 f t Invitado Amar invitado-1750436858306@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-1868 +3051 2025-06-20 16:34:17.171338+00 2025-06-20 16:34:17.171349+00 f t Constanza Gutierrez conig_78@yahoo.com +54911538543 \N Hortiguera 1579 B \N \N -34.6387072 -58.4409899 20 \N \N cgutierrez +3052 2025-06-20 17:22:49.717874+00 2025-06-20 17:22:49.717884+00 f t Silvana Rella martasilvanamilagros@gmail.com +541169589849 \N Vuelta de obligado 2789 4C \N \N \N -34.5549968 -58.461116 3 1198 \N srella +3053 2025-06-20 17:36:06.0738+00 2025-06-20 17:36:06.07381+00 f t Invitado Amar invitado-1750440966348@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1869 +13311 2025-11-14 17:42:55.289741+00 2025-11-14 17:42:55.289751+00 f t Invitado Amar invitado-1763142174468@example.com 55555555 \N \N \N \N \N 14 \N \N \N +3055 2025-06-20 18:04:19.466796+00 2025-06-20 18:04:19.466809+00 f t Invitado Amar invitado-1750442658999@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-1870 +3056 2025-06-20 18:05:56.123438+00 2025-06-20 18:05:56.123449+00 f t Invitado Amar invitado-1750442751320@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-1871 +13532 2025-11-17 19:23:07.763016+00 2025-11-17 19:23:07.763025+00 f t Invitado Amar invitado-1763407387359@example.com 55555555 \N \N \N \N \N 34 \N \N \N +3057 2025-06-20 18:24:25.8206+00 2025-06-20 18:24:25.820611+00 f t Invitado Amar invitado-1750443864928@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1872 +3058 2025-06-20 18:37:21.546765+00 2025-06-20 18:37:21.546779+00 f t Invitado Amar invitado-1750444639921@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-1873 +3059 2025-06-20 18:39:25.982913+00 2025-06-20 18:39:25.982923+00 f t Invitado Amar invitado-1750444764597@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-1874 +3060 2025-06-20 18:56:27.946656+00 2025-06-20 18:56:27.946665+00 f t Invitado Amar invitado-1750445787534@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-1875 +3061 2025-06-20 18:57:10.897451+00 2025-06-20 18:57:10.897464+00 f t Invitado Amar invitado-1750445831202@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1876 +3062 2025-06-20 19:02:03.43628+00 2025-06-20 19:02:03.436294+00 f t Invitado Amar invitado-1750446122301@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1877 +3063 2025-06-20 19:02:49.781971+00 2025-06-20 19:02:49.781983+00 f t Invitado Amar invitado-1750446169171@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-1878 +3064 2025-06-20 19:13:36.847748+00 2025-06-20 19:13:36.847758+00 f t Invitado Amar invitado-1750446815924@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-1879 +3065 2025-06-20 19:22:39.812664+00 2025-06-20 19:22:39.812675+00 f t Invitado Amar invitado-1750447359899@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-1880 +3066 2025-06-20 19:38:27.559947+00 2025-06-20 19:38:27.559958+00 f t Invitado Amar invitado-1750448307398@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1881 +3067 2025-06-20 19:56:22.332084+00 2025-06-20 19:56:22.332094+00 f t Invitado Amar invitado-1750449381909@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-1882 +3068 2025-06-20 20:09:08.360988+00 2025-06-20 20:09:08.361003+00 f t Invitado Amar invitado-1750450147735@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-1883 +3069 2025-06-20 20:19:19.629058+00 2025-06-20 20:19:19.629069+00 f t Invitado Amar invitado-1750450758037@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-1884 +3070 2025-06-20 21:12:21.17681+00 2025-06-20 21:12:21.17682+00 f t Invitado Amar invitado-1750453940354@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-1885 +3071 2025-06-20 21:25:05.363993+00 2025-06-20 21:25:05.364009+00 f t Invitado Amar invitado-1750454705392@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1886 +3072 2025-06-20 22:21:44.77802+00 2025-06-20 22:21:44.778029+00 f t Invitado Amar invitado-1750458104266@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1887 +3073 2025-06-20 22:24:45.996582+00 2025-06-20 22:24:45.996591+00 f t Invitado Amar invitado-1750458284828@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1888 +3074 2025-06-20 22:25:49.842735+00 2025-06-20 22:25:49.842744+00 f t Sofia Vidal soofividal@gmail.com +541168390990 \N Guevara 491 101 \N \N \N -34.5863461 -58.4515536 35 1203 \N svidal +3075 2025-06-20 22:31:11.643775+00 2025-06-20 22:31:11.643788+00 f t Invitado Amar invitado-1750458669761@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-1889 +3076 2025-06-20 23:22:45.247169+00 2025-06-20 23:22:45.247178+00 f t Invitado Amar invitado-1750461765120@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-1890 +3077 2025-06-20 23:44:08.68556+00 2025-06-20 23:44:08.685573+00 f t Invitado Amar invitado-1750463048171@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-1891 +3078 2025-06-20 23:51:37.172255+00 2025-06-20 23:51:37.172264+00 f t Invitado Amar invitado-1750463496699@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1892 +3079 2025-06-21 00:06:24.854875+00 2025-06-21 00:06:24.854884+00 f t Invitado Amar invitado-1750464384420@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-1893 +3080 2025-06-21 00:14:55.172284+00 2025-06-21 00:14:55.172299+00 f t Invitado Amar invitado-1750464894382@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-1894 +3081 2025-06-21 00:21:55.990877+00 2025-06-21 00:21:55.990886+00 f t Invitado Amar invitado-1750465315508@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-1895 +3082 2025-06-21 00:24:32.778484+00 2025-06-21 00:24:32.778492+00 f t Invitado Amar invitado-1750465472351@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-1896 +3083 2025-06-21 00:45:54.189228+00 2025-06-21 00:45:54.189242+00 f t Invitado Amar invitado-1750466751999@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-1897 +3084 2025-06-21 00:53:12.278932+00 2025-06-21 00:53:12.278943+00 f t Invitado Amar invitado-1750467191256@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1898 +3085 2025-06-21 01:41:16.551299+00 2025-06-21 01:41:16.551313+00 f t Invitado Amar invitado-1750470076062@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1899 +3086 2025-06-21 01:43:18.810884+00 2025-06-21 01:43:18.810893+00 f t Invitado Amar invitado-1750470198563@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1900 +3087 2025-06-21 02:02:12.71653+00 2025-06-21 02:02:12.716544+00 f t Invitado Amar invitado-1750471331022@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1901 +3088 2025-06-21 03:08:22.806569+00 2025-06-21 03:08:22.806581+00 f t Invitado Amar invitado-1750475300088@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1902 +3089 2025-06-21 03:09:30.569984+00 2025-06-21 03:09:30.569997+00 f t Invitado Amar invitado-1750475370032@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1903 +3090 2025-06-21 03:32:59.360125+00 2025-06-21 03:32:59.36014+00 f t Invitado Amar invitado-1750476779411@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1904 +3091 2025-06-21 03:43:21.070775+00 2025-06-21 03:43:21.070788+00 f t Invitado Amar invitado-1750477400322@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1905 +3092 2025-06-21 05:40:33.741003+00 2025-06-21 05:40:33.741014+00 f t Invitado Amar invitado-1750484433350@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1906 +3093 2025-06-21 06:06:08.801071+00 2025-06-21 06:06:08.801086+00 f t Invitado Amar invitado-1750485968083@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1907 +3094 2025-06-21 06:06:58.922686+00 2025-06-21 06:06:58.922695+00 f t Invitado Amar invitado-1750486018423@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-1908 +3095 2025-06-21 07:17:22.191859+00 2025-06-21 07:17:22.191874+00 f t Invitado Amar invitado-1750490241568@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-1909 +3096 2025-06-21 07:17:38.707583+00 2025-06-21 07:17:38.707595+00 f t Invitado Amar invitado-1750490257718@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1910 +3097 2025-06-21 11:08:14.250001+00 2025-06-21 11:08:14.250014+00 f t Invitado Amar invitado-1750504093619@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-1911 +3098 2025-06-21 12:52:16.565705+00 2025-06-21 12:52:16.565713+00 f t Invitado Amar invitado-1750510336217@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-1912 +3099 2025-06-21 13:22:17.044265+00 2025-06-21 13:22:17.044278+00 f t Invitado Amar invitado-1750512135944@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1913 +3100 2025-06-21 14:04:20.709671+00 2025-06-21 14:04:20.709684+00 f t Invitado Amar invitado-1750514660702@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-1914 +3101 2025-06-21 14:05:20.147503+00 2025-06-21 14:05:20.147515+00 f t Invitado Amar invitado-1750514720725@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1915 +3102 2025-06-21 14:06:18.718785+00 2025-06-21 14:06:18.718794+00 f t Invitado Amar invitado-1750514777123@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1916 +3103 2025-06-21 14:21:52.048165+00 2025-06-21 14:21:52.048174+00 f t Invitado Amar invitado-1750515711442@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-1917 +3104 2025-06-21 14:41:13.46281+00 2025-06-21 14:41:13.46282+00 f t Invitado Amar invitado-1750516872161@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1918 +3105 2025-06-21 14:44:46.868376+00 2025-06-21 14:44:46.868385+00 f t Invitado Amar invitado-1750517080261@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-1919 +3106 2025-06-21 15:12:26.529149+00 2025-06-21 15:12:26.529157+00 f t Invitado Amar invitado-1750518745300@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-1920 +3107 2025-06-21 15:40:57.278564+00 2025-06-21 15:40:57.278573+00 f t Invitado Amar invitado-1750520456897@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1921 +3108 2025-06-21 16:00:57.075416+00 2025-06-21 16:00:57.075425+00 f t Invitado Amar invitado-1750521655967@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-1922 +3109 2025-06-21 16:16:09.555059+00 2025-06-21 16:16:09.555067+00 f t Invitado Amar invitado-1750522569414@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1923 +3110 2025-06-21 17:06:56.429994+00 2025-06-21 17:06:56.430003+00 f t Invitado Amar invitado-1750525616018@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1924 +3111 2025-06-21 17:32:35.162305+00 2025-06-21 17:32:35.162316+00 f t Invitado Amar invitado-1750527154783@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1925 +3112 2025-06-21 17:54:19.866775+00 2025-06-21 17:54:19.866784+00 f t Invitado Amar invitado-1750528458735@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-1926 +3113 2025-06-21 18:37:34.498114+00 2025-06-21 18:37:34.498123+00 f t Invitado Amar invitado-1750531052800@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1927 +3114 2025-06-21 18:49:06.680762+00 2025-06-21 18:49:06.680771+00 f t Invitado Amar invitado-1750531746156@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1928 +3115 2025-06-21 19:43:50.585253+00 2025-06-21 19:43:50.585263+00 f t Invitado Amar invitado-1750535029211@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1929 +3116 2025-06-21 19:48:43.982036+00 2025-06-21 19:48:43.982047+00 f t Invitado Amar invitado-1750535322739@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-1930 +3117 2025-06-21 19:49:12.277988+00 2025-06-21 19:49:12.277996+00 f t camila scholz camilavscholz@yahoo.com.ar +541156446609 \N Ituzaingó 868 casa \N \N -34.6319432 -58.3756891 32 \N \N cscholz +3118 2025-06-21 19:54:01.774454+00 2025-06-21 19:54:01.774464+00 f t Invitado Amar invitado-1750535642144@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1931 +3119 2025-06-21 20:18:55.320205+00 2025-06-21 20:18:55.320214+00 f t Invitado Amar invitado-1750537134686@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1932 +3120 2025-06-21 20:52:34.162278+00 2025-06-21 20:52:34.162286+00 f t Invitado Amar invitado-1750539153623@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-1933 +3121 2025-06-21 20:59:05.048402+00 2025-06-21 20:59:05.048411+00 f t Invitado Amar invitado-1750539543498@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-1934 +3122 2025-06-21 21:03:09.089677+00 2025-06-21 21:03:09.089686+00 f t Invitado Amar invitado-1750539788072@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-1935 +3123 2025-06-21 21:36:47.41271+00 2025-06-21 21:36:47.412718+00 f t Invitado Amar invitado-1750541809307@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-1936 +3124 2025-06-21 21:36:59.968695+00 2025-06-21 21:36:59.968709+00 f t Invitado Amar invitado-1750541819841@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1937 +3125 2025-06-21 21:57:08.155649+00 2025-06-21 21:57:08.155657+00 f t Cristabel Muñiz cristabeltabriela.m@gmail.com 5491124918263 \N la pampa 2349 of a \N FEMALE 1994-03-19 -34.5644743 -58.4537528 3 1201 \N cmuniz +3126 2025-06-21 21:57:14.434979+00 2025-06-21 21:57:14.434988+00 f t Invitado Amar invitado-1750543033339@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1938 +3127 2025-06-21 22:01:38.452893+00 2025-06-21 22:01:38.452904+00 f t Invitado Amar invitado-1750543297508@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-1939 +3128 2025-06-21 22:02:03.384481+00 2025-06-21 22:02:03.38449+00 f t Invitado Amar invitado-1750543321154@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-1940 +3129 2025-06-21 22:16:46.344183+00 2025-06-21 22:16:46.344195+00 f t Invitado Amar invitado-1750544205570@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-1941 +3130 2025-06-21 22:21:51.658186+00 2025-06-21 22:21:51.658195+00 f t Invitado Amar invitado-1750544510976@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1942 +3131 2025-06-21 22:34:19.261415+00 2025-06-21 22:34:19.261425+00 f t Invitado Amar invitado-1750545258541@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-1943 +3132 2025-06-21 22:35:16.537252+00 2025-06-21 22:35:16.53726+00 f t Invitado Amar invitado-1750545316303@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-1944 +3133 2025-06-21 22:37:14.806855+00 2025-06-21 22:37:14.806867+00 f t Invitado Amar invitado-1750545434573@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-1945 +3134 2025-06-21 22:43:53.303208+00 2025-06-21 22:43:53.303216+00 f t Invitado Amar invitado-1750545832910@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1946 +3135 2025-06-21 22:44:06.856259+00 2025-06-21 22:44:06.856268+00 f t Noelia Ajnota noeliajnota@gmail.com +541140899643 \N Camarones 2475 No tiene timbre \N \N -34.609456 -58.475189 63 \N \N najnota +3136 2025-06-21 22:49:59.117678+00 2025-06-21 22:49:59.117691+00 f t Invitado Amar invitado-1750546198328@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-1947 +3137 2025-06-21 23:15:48.149052+00 2025-06-21 23:15:48.149061+00 f t Invitado Amar invitado-1750547747389@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-1948 +3138 2025-06-22 00:57:20.27002+00 2025-06-22 00:57:20.270029+00 f t Invitado Amar invitado-1750553837937@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-1949 +3139 2025-06-22 01:04:58.337611+00 2025-06-22 01:04:58.337624+00 f t Invitado Amar invitado-1750554297253@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1950 +3140 2025-06-22 01:29:33.210754+00 2025-06-22 01:29:33.210765+00 f t Invitado Amar invitado-1750555773163@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1951 +3141 2025-06-22 02:01:42.145883+00 2025-06-22 02:01:42.145897+00 f t Invitado Amar invitado-1750557701229@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1952 +3142 2025-06-22 02:58:20.432244+00 2025-06-22 02:58:20.432253+00 f t Invitado Amar invitado-1750561100107@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1953 +3143 2025-06-22 03:02:43.829879+00 2025-06-22 03:02:43.829889+00 f t Invitado Amar invitado-1750561363351@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1954 +3144 2025-06-22 03:07:25.642592+00 2025-06-22 03:07:25.642604+00 f t Invitado Amar invitado-1750561696732@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-1955 +3145 2025-06-22 03:39:54.255841+00 2025-06-22 03:39:54.255855+00 f t Invitado Amar invitado-1750563592600@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-1956 +3146 2025-06-22 03:42:38.08388+00 2025-06-22 03:42:38.083892+00 f t Invitado Amar invitado-1750563755500@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-1957 +3147 2025-06-22 04:52:36.144817+00 2025-06-22 04:52:36.144826+00 f t Invitado Amar invitado-1750567955799@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1958 +3148 2025-06-22 05:23:24.232169+00 2025-06-22 05:23:24.232181+00 f t Invitado Amar invitado-1750569802674@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1959 +3149 2025-06-22 05:32:18.777981+00 2025-06-22 05:32:18.777994+00 f t m m sp28@gmail.com +5491123915666 \N Ronde 351 \N \N \N \N 44 \N \N mm +3150 2025-06-22 06:33:20.269295+00 2025-06-22 06:33:20.269303+00 f t Invitado Amar invitado-1750573999005@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1960 +3151 2025-06-22 08:46:53.036679+00 2025-06-22 08:46:53.03669+00 f t Invitado Amar invitado-1750582012419@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1961 +3152 2025-06-22 11:08:15.368422+00 2025-06-22 11:08:15.368434+00 f t Invitado Amar invitado-1750590494958@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1962 +3153 2025-06-22 12:08:21.244169+00 2025-06-22 12:08:21.244183+00 f t Invitado Amar invitado-1750594099501@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-1963 +3154 2025-06-22 13:53:21.759699+00 2025-06-22 13:53:21.759709+00 f t Invitado Amar invitado-1750600400671@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-1964 +3155 2025-06-22 13:57:03.509348+00 2025-06-22 13:57:03.509359+00 f t Invitado Amar invitado-1750600622968@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-1965 +3156 2025-06-22 14:01:09.543809+00 2025-06-22 14:01:09.543819+00 f t Paula Hasan pauvaleh@gmail.com +541161620363 \N Jose Murias 2024 7 B \N FEMALE \N -34.600362 -58.5651954 89 1214 \N phasan +3157 2025-06-22 14:02:54.272963+00 2025-06-22 14:02:54.272971+00 f t Invitado Amar invitado-1750601115512@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1966 +3158 2025-06-22 14:25:43.229336+00 2025-06-22 14:25:43.229344+00 f t Invitado Amar invitado-1750602342792@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-1967 +3159 2025-06-22 14:30:15.422879+00 2025-06-22 14:30:15.422892+00 f t Invitado Amar invitado-1750602615024@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-1968 +3160 2025-06-22 14:35:41.726393+00 2025-06-22 14:35:41.726405+00 f t Invitado Amar invitado-1750603076927@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-1969 +3161 2025-06-22 15:07:58.607545+00 2025-06-22 15:07:58.607553+00 f t Invitado Amar invitado-1750604877439@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1970 +3162 2025-06-22 15:15:37.991411+00 2025-06-22 15:15:37.991423+00 f t Invitado Amar invitado-1750605337428@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1971 +3163 2025-06-22 15:40:01.789137+00 2025-06-22 15:40:01.789152+00 f t Invitado Amar invitado-1750606942949@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1972 +3164 2025-06-22 15:57:41.368951+00 2025-06-22 15:57:41.368961+00 f t Invitado Amar invitado-1750608022201@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1973 +3165 2025-06-22 16:05:37.092528+00 2025-06-22 16:05:37.09254+00 f t Invitado Amar invitado-1750608478312@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-1974 +3166 2025-06-22 16:15:00.548636+00 2025-06-22 16:15:00.548644+00 f t Invitado Amar invitado-1750608900337@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1975 +3167 2025-06-22 16:40:32.545769+00 2025-06-22 16:40:32.545779+00 f t Invitado Amar invitado-1750610432048@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1976 +3168 2025-06-22 17:14:59.177014+00 2025-06-22 17:14:59.177024+00 f t Invitado Amar invitado-1750612498810@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-1977 +3169 2025-06-22 17:46:09.242316+00 2025-06-22 17:46:09.242329+00 f t Invitado Amar invitado-1750614368773@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1978 +3170 2025-06-22 18:01:43.59608+00 2025-06-22 18:01:43.596089+00 f t Invitado Amar invitado-1750615303173@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1979 +3171 2025-06-22 20:09:09.238261+00 2025-06-22 20:09:09.238272+00 f t Invitado Amar invitado-1750622948634@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-1980 +3172 2025-06-22 20:39:02.461898+00 2025-06-22 20:39:02.461912+00 f t Invitado Amar invitado-1750624744201@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-1981 +3173 2025-06-22 20:55:45.684852+00 2025-06-22 20:55:45.684894+00 f t Invitado Amar invitado-1750625743797@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-1982 +3174 2025-06-22 21:08:40.945169+00 2025-06-22 21:08:40.945177+00 f t Gianfranco Rossi gianfran.rossi247@gmail.com +541127029467 \N Anchorena 614 2 D \N \N -34.6022459 -58.4097775 18 \N \N grossi +3175 2025-06-22 21:12:17.351441+00 2025-06-22 21:12:17.351453+00 f t Invitado Amar invitado-1750626735809@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1983 +3176 2025-06-22 22:07:56.01003+00 2025-06-22 22:07:56.010036+00 f t Sol kroeck kroecksol@gmail.com 5492995550833 \N Arenales 2669 Piso 8 depto A \N FEMALE 1999-08-04 -34.5925965 -58.4037517 9 1204 \N skroeck +3177 2025-06-22 22:13:56.79495+00 2025-06-22 22:13:56.794959+00 f t Everst Montero everstmontero.m@gmail.com 5491130680985 \N Lerma 44 6 B \N FEMALE 1997-12-26 -34.5979802 -58.4284551 26 1205 \N emontero +3178 2025-06-22 22:40:29.507089+00 2025-06-22 22:40:29.507098+00 f t Invitado Amar invitado-1750632027502@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-1984 +3179 2025-06-22 22:44:07.824851+00 2025-06-22 22:44:07.824862+00 f t Invitado Amar invitado-1750632246270@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1985 +3180 2025-06-22 23:22:19.784705+00 2025-06-22 23:22:19.784714+00 f t Invitado Amar invitado-1750634538919@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-1986 +3181 2025-06-23 00:22:05.036358+00 2025-06-23 00:22:05.03637+00 f t Invitado Amar invitado-1750638123414@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1987 +3182 2025-06-23 01:37:47.854428+00 2025-06-23 01:37:47.854437+00 f t Invitado Amar invitado-1750642667308@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-1988 +3183 2025-06-23 02:15:17.014525+00 2025-06-23 02:15:17.014564+00 f t Invitado Amar invitado-1750644916148@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-1989 +3184 2025-06-23 02:31:04.775408+00 2025-06-23 02:31:04.775418+00 f t Invitado Amar invitado-1750645863696@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-1990 +3185 2025-06-23 02:33:02.278496+00 2025-06-23 02:33:02.278505+00 f t Invitado Amar invitado-1750645981758@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-1991 +3186 2025-06-23 02:34:22.204092+00 2025-06-23 02:34:22.204102+00 f t Invitado Amar invitado-1750646061470@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1992 +3187 2025-06-23 02:36:40.384146+00 2025-06-23 02:36:40.384159+00 f t Invitado Amar invitado-1750646200218@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-1993 +3188 2025-06-23 02:37:51.887338+00 2025-06-23 02:37:51.88735+00 f t Invitado Amar invitado-1750646270410@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-1994 +3189 2025-06-23 02:55:05.61853+00 2025-06-23 02:55:05.618543+00 f t Invitado Amar invitado-1750647234426@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-1995 +3190 2025-06-23 03:22:36.396455+00 2025-06-23 03:22:36.396466+00 f t Antonella Barone anto.barone@hotmail.com +541122542692 \N Ombu 171 8 \N \N -34.6719545 -58.5608904 87 \N \N abarone +3191 2025-06-23 03:53:37.222376+00 2025-06-23 03:53:37.222388+00 f t Invitado Amar invitado-1750650816618@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-1996 +3192 2025-06-23 03:53:42.588204+00 2025-06-23 03:53:42.588217+00 f t Invitado Amar invitado-1750650822033@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-1997 +3193 2025-06-23 04:00:43.817679+00 2025-06-23 04:00:43.817693+00 f t Invitado Amar invitado-1750651243270@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-1998 +3194 2025-06-23 06:54:28.730713+00 2025-06-23 06:54:28.730721+00 f t Invitado Amar invitado-1750661667861@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-1999 +3195 2025-06-23 07:13:14.23667+00 2025-06-23 07:13:14.236678+00 f t Invitado Amar invitado-1750662793669@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2000 +3196 2025-06-23 08:04:36.858753+00 2025-06-23 08:04:36.858762+00 f t Invitado Amar invitado-1750665873204@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-2001 +3197 2025-06-23 10:34:55.446657+00 2025-06-23 10:34:55.446666+00 f t Invitado Amar invitado-1750674894686@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2002 +3198 2025-06-23 11:18:40.009845+00 2025-06-23 11:18:40.009853+00 f t Invitado Amar invitado-1750677519686@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2003 +3199 2025-06-23 11:33:12.460542+00 2025-06-23 11:33:12.46056+00 f t Invitado Amar invitado-1750678391942@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2004 +3200 2025-06-23 12:06:06.302904+00 2025-06-23 12:06:06.302918+00 f t aline Galimidi alinegalimidi@gmail.com +5491164127189 \N Vicente López 1921 6 A \N \N -34.5897878 -58.3921455 9 \N \N agalimidi +3201 2025-06-23 12:07:43.087673+00 2025-06-23 12:07:43.087685+00 f t Invitado Amar invitado-1750680462713@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-2005 +3202 2025-06-23 12:09:20.162805+00 2025-06-23 12:09:20.162814+00 f t Invitado Amar invitado-1750680558581@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-2006 +3203 2025-06-23 13:05:41.742299+00 2025-06-23 13:05:41.742308+00 f t Invitado Amar invitado-1750683941247@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-2007 +3204 2025-06-23 13:11:48.681275+00 2025-06-23 13:11:48.681283+00 f t Invitado Amar invitado-1750684306684@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2008 +3205 2025-06-23 13:37:48.145945+00 2025-06-23 13:37:48.145953+00 f t Invitado Amar invitado-1750685866166@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2009 +3206 2025-06-23 13:48:34.171009+00 2025-06-23 13:48:34.171017+00 f t Anelisa Giorasi betaniagiorasi@outlook.com 5491123351297 \N Santiago del estero 942 entre carlos calvo y estados unidos \N FEMALE 1995-10-23 -34.6170185 -58.3843694 49 1209 \N agiorasi +3207 2025-06-23 14:21:50.959666+00 2025-06-23 14:21:50.959676+00 f t Mariana Bocianowski bocianowskimariana.s@gmail.com +541138978135 \N Guemes 4227 5A \N \N -34.5840903 -58.420015 1 \N \N mbocianowski +3208 2025-06-23 14:23:34.855218+00 2025-06-23 14:23:34.85523+00 f t Invitado Amar invitado-1750688614100@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2010 +3209 2025-06-23 14:40:50.42684+00 2025-06-23 14:40:50.42685+00 f t Invitado Amar invitado-1750689648017@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2011 +3210 2025-06-23 15:16:39.568469+00 2025-06-23 15:16:39.56848+00 f t Invitado Amar invitado-1750691799115@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2012 +3211 2025-06-23 15:23:05.64387+00 2025-06-23 15:23:05.64388+00 f t Maria Isabel Reynoso marec25@yahoo.com.ar 91158086441 \N La Pampa 1230 3ERO B \N FEMALE \N -34.5545725 -58.4369136 3 1210 \N mreynoso +3212 2025-06-23 16:12:11.925735+00 2025-06-23 16:12:11.925743+00 f t Invitado Amar invitado-1750695131328@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2013 +3213 2025-06-23 16:24:21.888994+00 2025-06-23 16:24:21.889004+00 f t Invitado Amar invitado-1750695860906@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2014 +3214 2025-06-23 16:37:32.839513+00 2025-06-23 16:37:32.839521+00 f t Invitado Amar invitado-1750696652381@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-2015 +3215 2025-06-23 16:50:57.534934+00 2025-06-23 16:50:57.534942+00 f t Invitado Amar invitado-1750697455271@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-2016 +3216 2025-06-23 17:33:02.306513+00 2025-06-23 17:33:02.306528+00 f t Invitado Amar invitado-1750699981547@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2017 +3217 2025-06-23 17:43:04.083613+00 2025-06-23 17:43:04.083625+00 f t Invitado Amar invitado-1750700583337@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-2018 +3218 2025-06-23 17:43:48.152029+00 2025-06-23 17:43:48.152037+00 f t Invitado Amar invitado-1750700628012@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2019 +3219 2025-06-23 18:01:20.484374+00 2025-06-23 18:01:20.484386+00 f t Invitado Amar invitado-1750701679971@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2020 +3220 2025-06-23 18:10:04.458981+00 2025-06-23 18:10:04.458995+00 f t Invitado Amar invitado-1750702204348@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2021 +3221 2025-06-23 18:11:58.228366+00 2025-06-23 18:11:58.228374+00 f t Invitado Amar invitado-1750702317548@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2022 +3222 2025-06-23 18:12:09.528225+00 2025-06-23 18:12:09.528234+00 f t Invitado Amar invitado-1750702329370@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2023 +3223 2025-06-23 18:19:35.803515+00 2025-06-23 18:19:35.803523+00 f t Invitado Amar invitado-1750702775197@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2024 +3224 2025-06-23 18:32:18.027074+00 2025-06-23 18:32:18.027082+00 f t Invitado Amar invitado-1750703537098@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-2025 +3225 2025-06-23 18:35:50.043892+00 2025-06-23 18:35:50.043904+00 f t Invitado Amar invitado-1750703750209@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2026 +3226 2025-06-23 19:00:07.880979+00 2025-06-23 19:00:07.880991+00 t t AAA AAA testing1@testing.com.ar +549112345678 \N \N \N \N \N \N \N 44.9379672 7.5400398 \N \N \N aaaa +3227 2025-06-23 19:02:07.807657+00 2025-06-23 19:02:07.807664+00 t t Aldana Segovia testing@testing.com.ar 1123456789 \N falsa 123 piso 2 \N FEMALE \N 42.1838369 12.6559681 86 \N \N asegovia +3228 2025-06-23 19:30:59.009998+00 2025-06-23 19:30:59.010006+00 f t Maria Espin mariees.tsm@gmail.com 91135957646 \N Manuel Ricardo Trelles 2171 depto 204 \N FEMALE 1993-06-14 -34.6031767 -58.4665218 63 1212 \N mespin +3229 2025-06-23 19:49:12.711636+00 2025-06-23 19:49:12.711645+00 f t Invitado Amar invitado-1750708150012@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2027 +3230 2025-06-23 19:59:33.384642+00 2025-06-23 19:59:33.384654+00 f t Invitado Amar invitado-1750708773634@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2028 +3231 2025-06-23 20:07:55.289373+00 2025-06-23 20:07:55.289382+00 f t Invitado Amar invitado-1750709246981@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-2029 +3232 2025-06-23 20:15:58.053574+00 2025-06-23 20:15:58.053583+00 f t Invitado Amar invitado-1750709778413@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2030 +3233 2025-06-23 20:40:49.97501+00 2025-06-23 20:40:49.97502+00 f t Invitado Amar invitado-1750711248823@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2031 +3234 2025-06-23 20:55:11.231603+00 2025-06-23 20:55:11.231612+00 f t Invitado Amar invitado-1750712110356@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-2032 +3235 2025-06-23 21:33:59.881931+00 2025-06-23 21:33:59.881943+00 f t Invitado Amar invitado-1750714441954@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2033 +3236 2025-06-23 22:19:28.246609+00 2025-06-23 22:19:28.24662+00 f t Invitado Amar invitado-1750717166771@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2034 +3237 2025-06-23 22:41:26.126122+00 2025-06-23 22:41:26.126131+00 f t Invitado Amar invitado-1750718485647@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2035 +3238 2025-06-23 23:01:32.261968+00 2025-06-23 23:01:32.26198+00 f t Invitado Amar invitado-1750719692129@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-2036 +3239 2025-06-23 23:38:47.698189+00 2025-06-23 23:38:47.698199+00 f t Invitado Amar invitado-1750721927037@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2037 +3240 2025-06-24 00:07:04.275914+00 2025-06-24 00:07:04.275926+00 f t Invitado Amar invitado-1750723623787@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-2038 +3241 2025-06-24 00:08:12.403401+00 2025-06-24 00:08:12.403413+00 f t Invitado Amar invitado-1750723691959@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-2039 +3242 2025-06-24 00:11:05.112279+00 2025-06-24 00:11:05.112289+00 f t Maria Pia Canedo piacanedo@yahoo.com.ar +5491155963717 \N Murillo 1131 13E \N FEMALE \N -34.5967864 -58.4478891 26 1213 \N mcanedo +3243 2025-06-24 00:33:45.862784+00 2025-06-24 00:33:45.862796+00 f t Invitado Amar invitado-1750725225423@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2040 +3244 2025-06-24 00:36:09.892389+00 2025-06-24 00:36:09.892399+00 f t Invitado Amar invitado-1750725368804@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2041 +3245 2025-06-24 00:38:59.31649+00 2025-06-24 00:38:59.316502+00 f t Invitado Amar invitado-1750725538777@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2042 +3246 2025-06-24 00:39:22.197629+00 2025-06-24 00:39:22.197638+00 f t Invitado Amar invitado-1750725561661@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2043 +3247 2025-06-24 01:19:53.081981+00 2025-06-24 01:19:53.081989+00 f t Invitado Amar invitado-1750727992000@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-2044 +3248 2025-06-24 01:27:37.244581+00 2025-06-24 01:27:37.24459+00 f t Invitado Amar invitado-1750728456476@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-2045 +3249 2025-06-24 01:36:13.849185+00 2025-06-24 01:36:13.849193+00 f t Invitado Amar invitado-1750728973235@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2046 +3250 2025-06-24 01:43:21.766088+00 2025-06-24 01:43:21.766097+00 f t Invitado Amar invitado-1750729401942@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-2047 +3251 2025-06-24 01:55:41.944432+00 2025-06-24 01:55:41.944445+00 f t Invitado Amar invitado-1750730140470@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-2048 +3252 2025-06-24 02:09:10.076037+00 2025-06-24 02:09:10.076049+00 f t Invitado Amar invitado-1750730948172@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2049 +3253 2025-06-24 02:14:17.512548+00 2025-06-24 02:14:17.512558+00 f t Invitado Amar invitado-1750731255931@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2050 +3254 2025-06-24 02:24:01.551699+00 2025-06-24 02:24:01.551711+00 f t Invitado Amar invitado-1750731841060@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2051 +3255 2025-06-24 03:43:21.683901+00 2025-06-24 03:43:21.683911+00 f t Invitado Amar invitado-1750736600156@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2052 +3256 2025-06-24 04:10:13.821203+00 2025-06-24 04:10:13.821215+00 f t Invitado Amar invitado-1750738213179@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2053 +3257 2025-06-24 04:22:33.312255+00 2025-06-24 04:22:33.312266+00 f t Invitado Amar invitado-1750738952450@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2054 +3258 2025-06-24 09:33:37.246509+00 2025-06-24 09:33:37.246517+00 f t Invitado Amar invitado-1750757616334@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2055 +3259 2025-06-24 09:51:21.560913+00 2025-06-24 09:51:21.560926+00 f t Invitado Amar invitado-1750758677002@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2056 +3260 2025-06-24 09:55:22.917662+00 2025-06-24 09:55:22.917673+00 f t Invitado Amar invitado-1750758920973@example.com 55555555 \N \N \N \N \N 47 \N \N iamar-2057 +3261 2025-06-24 12:59:33.755081+00 2025-06-24 12:59:33.755094+00 f t Invitado Amar invitado-1750769973355@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-2058 +3262 2025-06-24 13:16:09.82198+00 2025-06-24 13:16:09.821992+00 f t Invitado Amar invitado-1750770968998@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2059 +3263 2025-06-24 13:18:48.282992+00 2025-06-24 13:18:48.283+00 f t Invitado Amar invitado-1750771127932@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2060 +3264 2025-06-24 13:33:56.03877+00 2025-06-24 13:33:56.038778+00 f t Invitado Amar invitado-1750772035638@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2061 +3265 2025-06-24 13:49:30.246709+00 2025-06-24 13:49:30.246717+00 f t Invitado Amar invitado-1750772968233@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2062 +3266 2025-06-24 14:25:47.808069+00 2025-06-24 14:25:47.808078+00 f t Malena Soledad Ramos Hiur malenaramoshiur@gmail.com 5491165401165 \N Pasaje de Oslo 1255 \N \N FEMALE 1984-09-13 \N \N 61 1216 \N mramoshiur +3267 2025-06-24 14:45:48.229563+00 2025-06-24 14:45:48.229572+00 f t Invitado Amar invitado-1750776348907@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-2063 +3268 2025-06-24 14:50:01.11496+00 2025-06-24 14:50:01.114973+00 f t Invitado Amar invitado-1750776600451@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-2064 +3269 2025-06-24 15:03:31.803693+00 2025-06-24 15:03:31.803703+00 f t Invitado Amar invitado-1750777411191@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-2065 +3270 2025-06-24 15:07:51.510457+00 2025-06-24 15:07:51.51047+00 f t Invitado Amar invitado-1750777669425@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2066 +3271 2025-06-24 15:08:12.840536+00 2025-06-24 15:08:12.840547+00 f t Invitado Amar invitado-1750777692368@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2067 +3272 2025-06-24 15:09:28.730917+00 2025-06-24 15:09:28.730934+00 f t Milena Villegas milenavillegas1997@gmail.com +541168370066 \N Anatole France 342 Pb portero eléctrico \N \N -34.6957394 -58.373228 70 \N \N mvillegas +3273 2025-06-24 15:26:07.871867+00 2025-06-24 15:26:07.871882+00 f t Invitado Amar invitado-1750778767325@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2068 +3274 2025-06-24 15:33:48.080302+00 2025-06-24 15:33:48.08031+00 f t Beatriz Saucedo obsaucedo@hotmail.com +541125156015 \N Infanta Isabel 2953 N/A \N FEMALE \N -34.5850175 -58.5656166 46 \N \N bsaucedo +3275 2025-06-24 15:42:37.345709+00 2025-06-24 15:42:37.345718+00 f t Invitado Amar invitado-1750779756803@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2069 +3276 2025-06-24 16:13:40.455525+00 2025-06-24 16:13:40.455537+00 f t Invitado Amar invitado-1750781621130@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-2070 +3277 2025-06-24 16:37:52.610223+00 2025-06-24 16:37:52.610232+00 f t Invitado Amar invitado-1750783072563@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2071 +3278 2025-06-24 16:39:12.175672+00 2025-06-24 16:39:12.175681+00 f t Invitado Amar invitado-1750783151024@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-2072 +3279 2025-06-24 16:41:49.404867+00 2025-06-24 16:41:49.404877+00 f t Invitado Amar invitado-1750783308974@example.com 55555555 \N \N \N \N \N 7 \N \N iamar-2073 +3280 2025-06-24 17:39:03.394553+00 2025-06-24 17:39:03.394566+00 f t Invitado Amar invitado-1750786741579@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2074 +3281 2025-06-24 18:13:40.919654+00 2025-06-24 18:13:40.919663+00 f t Invitado Amar invitado-1750788820955@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2075 +3282 2025-06-24 18:23:15.485741+00 2025-06-24 18:23:15.485754+00 f t Invitado Amar invitado-1750789393783@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2076 +3283 2025-06-24 18:27:07.667044+00 2025-06-24 18:27:07.667059+00 f t Invitado Amar invitado-1750789627265@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-2077 +3284 2025-06-24 18:36:40.819254+00 2025-06-24 18:36:40.819263+00 f t Invitado Amar invitado-1750790200377@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-2078 +3285 2025-06-24 18:36:56.192425+00 2025-06-24 18:36:56.192439+00 f t Invitado Amar invitado-1750790215332@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-2079 +3286 2025-06-24 18:38:57.87776+00 2025-06-24 18:38:57.877773+00 f t Invitado Amar invitado-1750790337687@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-2080 +3287 2025-06-24 18:39:14.978739+00 2025-06-24 18:39:14.978751+00 f t Invitado Amar invitado-1750790354162@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-2081 +3288 2025-06-24 19:58:29.989616+00 2025-06-24 19:58:29.989625+00 f t Invitado Amar invitado-1750795109462@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2082 +3289 2025-06-24 20:07:59.67059+00 2025-06-24 20:07:59.670599+00 f t Invitado Amar invitado-1750795677603@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-2083 +3290 2025-06-24 20:08:04.961741+00 2025-06-24 20:08:04.961753+00 f t Invitado Amar invitado-1750795683283@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-2084 +3291 2025-06-24 20:11:49.678877+00 2025-06-24 20:11:49.678888+00 f t Invitado Amar invitado-1750795907672@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-2085 +3292 2025-06-24 20:16:17.392697+00 2025-06-24 20:16:17.392706+00 f t Invitado Amar invitado-1750796171924@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-2086 +3293 2025-06-24 20:20:53.809829+00 2025-06-24 20:20:53.809837+00 f t Invitado Amar invitado-1750796455181@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2087 +3294 2025-06-24 20:41:53.356786+00 2025-06-24 20:41:53.356798+00 f t Invitado Amar invitado-1750797712375@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-2088 +3295 2025-06-24 20:42:12.102618+00 2025-06-24 20:42:12.102627+00 f t Invitado Amar invitado-1750797730959@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-2089 +3296 2025-06-24 21:11:40.224735+00 2025-06-24 21:11:40.224746+00 f t Invitado Amar invitado-1750799499247@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2090 +3297 2025-06-24 22:28:00.894876+00 2025-06-24 22:28:00.894912+00 f t Angela Cristina Latorre Brasil aclbrasil@outlook.com +541127048596 \N Zelarrayán 1670 Depto 64 piso 2 \N \N \N -34.6421155 -58.4390797 20 1220 \N alatorrebrasil +3298 2025-06-24 22:47:48.505902+00 2025-06-24 22:47:48.505911+00 f t Invitado Amar invitado-1750805267582@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2091 +3299 2025-06-24 22:48:08.050054+00 2025-06-24 22:48:08.050062+00 f t Yamila Frisone yamilafrisone@gmail.com +541162956242 \N Amenábar 2236 7 35 \N \N -34.5618739 -58.4597323 3 \N \N yfrisone +3300 2025-06-24 23:19:26.657445+00 2025-06-24 23:19:26.657454+00 f t Invitado Amar invitado-1750807165887@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-2092 +3301 2025-06-24 23:22:05.291218+00 2025-06-24 23:22:05.291228+00 f t Invitado Amar invitado-1750807324555@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2093 +3302 2025-06-24 23:22:51.000494+00 2025-06-24 23:22:51.000506+00 f t Invitado Amar invitado-1750807370594@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-2094 +3303 2025-06-24 23:38:45.420849+00 2025-06-24 23:38:45.420858+00 f t Invitado Amar invitado-1750808325024@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-2095 +3304 2025-06-24 23:42:18.131102+00 2025-06-24 23:42:18.131112+00 f t Invitado Amar invitado-1750808537468@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-2096 +3305 2025-06-25 00:01:27.939445+00 2025-06-25 00:01:27.939458+00 f t Invitado Amar invitado-1750809688220@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2097 +3306 2025-06-25 00:20:52.525321+00 2025-06-25 00:20:52.52533+00 f t Invitado Amar invitado-1750811110098@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2098 +3307 2025-06-25 00:24:59.708176+00 2025-06-25 00:24:59.708184+00 f t Invitado Amar invitado-1750811097822@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-2099 +3308 2025-06-25 00:27:55.404466+00 2025-06-25 00:27:55.404479+00 f t Invitado Amar invitado-1750811274903@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2100 +3309 2025-06-25 00:34:24.092475+00 2025-06-25 00:34:24.092485+00 f t Invitado Amar invitado-1750811663191@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-2101 +3310 2025-06-25 00:38:35.768548+00 2025-06-25 00:38:35.768556+00 f t Invitado Amar invitado-1750811914754@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-2102 +3311 2025-06-25 00:55:13.817344+00 2025-06-25 00:55:13.817357+00 f t Invitado Amar invitado-1750812913109@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2103 +3312 2025-06-25 02:06:53.490131+00 2025-06-25 02:06:53.490145+00 f t Invitado Amar invitado-1750817213561@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2104 +3313 2025-06-25 02:19:18.848406+00 2025-06-25 02:19:18.848416+00 f t Invitado Amar invitado-1750817958116@example.com 55555555 \N \N \N \N \N 69 \N \N iamar-2105 +3314 2025-06-25 02:29:42.997694+00 2025-06-25 02:29:42.997707+00 f t Invitado Amar invitado-1750818583019@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2106 +3315 2025-06-25 02:44:12.227757+00 2025-06-25 02:44:12.227769+00 f t Invitado Amar invitado-1750819451727@example.com 55555555 \N \N \N \N \N 66 \N \N iamar-2107 +3316 2025-06-25 02:47:01.343444+00 2025-06-25 02:47:01.343453+00 f t Invitado Amar invitado-1750819621983@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2108 +3317 2025-06-25 02:47:25.431191+00 2025-06-25 02:47:25.431203+00 f t Invitado Amar invitado-1750819646584@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2109 +3318 2025-06-25 02:51:52.421676+00 2025-06-25 02:51:52.421684+00 f t Invitado Amar invitado-1750819912079@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2110 +3319 2025-06-25 03:07:28.966825+00 2025-06-25 03:07:28.966836+00 f t Invitado Amar invitado-1750820848692@example.com 55555555 \N \N \N \N \N 146 \N \N iamar-2111 +3320 2025-06-25 03:13:24.341688+00 2025-06-25 03:13:24.3417+00 f t Invitado Amar invitado-1750821203712@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-2112 +3321 2025-06-25 03:40:48.413094+00 2025-06-25 03:40:48.413103+00 f t Invitado Amar invitado-1750822847922@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2113 +3322 2025-06-25 03:48:11.060433+00 2025-06-25 03:48:11.060444+00 f t Invitado Amar invitado-1750823290404@example.com 55555555 \N \N \N \N \N 47 \N \N iamar-2114 +3323 2025-06-25 05:52:45.539932+00 2025-06-25 05:52:45.539942+00 f t Invitado Amar invitado-1750830766356@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-2115 +3324 2025-06-25 07:19:24.339928+00 2025-06-25 07:19:24.339936+00 f t Invitado Amar invitado-1750835963556@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2116 +3325 2025-06-25 08:23:14.627898+00 2025-06-25 08:23:14.627909+00 f t Invitado Amar invitado-1750839794461@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2117 +3326 2025-06-25 09:34:21.620395+00 2025-06-25 09:34:21.620405+00 f t Invitado Amar invitado-1750844061102@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2118 +3327 2025-06-25 09:37:31.695094+00 2025-06-25 09:37:31.695104+00 f t Invitado Amar invitado-1750844251383@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2119 +3328 2025-06-25 10:18:16.119205+00 2025-06-25 10:18:16.119213+00 f t Invitado Amar invitado-1750846697316@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2120 +3329 2025-06-25 10:29:32.704066+00 2025-06-25 10:29:32.704074+00 f t Invitado Amar invitado-1750847371653@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2121 +3330 2025-06-25 12:44:48.355174+00 2025-06-25 12:44:48.355184+00 f t Invitado Amar invitado-1750855487786@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-2122 +3331 2025-06-25 13:35:04.637786+00 2025-06-25 13:35:04.637801+00 f t Invitado Amar invitado-1750858504055@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2123 +3332 2025-06-25 13:39:52.550468+00 2025-06-25 13:39:52.550477+00 f t Invitado Amar invitado-1750858811776@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-2124 +3333 2025-06-25 13:45:58.516908+00 2025-06-25 13:45:58.516917+00 f t Invitado Amar invitado-1750859158813@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2125 +3334 2025-06-25 14:15:39.51815+00 2025-06-25 14:15:39.518159+00 f t Invitado Amar invitado-1750860939451@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2126 +3335 2025-06-25 14:17:11.408958+00 2025-06-25 14:17:11.408968+00 f t Invitado Amar invitado-1750861031927@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2127 +3336 2025-06-25 14:18:23.403059+00 2025-06-25 14:18:23.403068+00 f t Invitado Amar invitado-1750861103906@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2128 +3337 2025-06-25 14:18:42.081938+00 2025-06-25 14:18:42.081947+00 f t Invitado Amar invitado-1750861121342@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-2129 +3338 2025-06-25 14:21:36.208727+00 2025-06-25 14:21:36.208735+00 f t Invitado Amar invitado-1750861295701@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2130 +3339 2025-06-25 14:23:04.811791+00 2025-06-25 14:23:04.8118+00 f t Invitado Amar invitado-1750861384581@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2131 +3340 2025-06-25 14:24:06.815566+00 2025-06-25 14:24:06.815576+00 f t Invitado Amar invitado-1750861446573@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2132 +3341 2025-06-25 14:24:45.065217+00 2025-06-25 14:24:45.065226+00 f t Invitado Amar invitado-1750861484537@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-2133 +3342 2025-06-25 15:05:48.336682+00 2025-06-25 15:05:48.336691+00 f t Invitado Amar invitado-1750863948618@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2134 +3343 2025-06-25 15:15:18.888312+00 2025-06-25 15:15:18.888319+00 f t Emanuel Guido Lavalle emmanuelavalle3b@gmail.com 5491151359044 \N Rivadavia 6810 3-6 \N MALE 1991-01-20 -34.6285748 -58.4613734 4 1221 \N elavalle +3344 2025-06-25 15:29:45.893484+00 2025-06-25 15:29:45.893491+00 f t Silvina Monica Goldenberg silviamgoldenberg@gmail.com 5491136808812 \N PIZURNO 664 dpto 8 \N FEMALE 1964-06-30 -37.4488252 -61.9240627 50 1222 \N sgoldenberg +3345 2025-06-25 15:38:11.128244+00 2025-06-25 15:38:11.128254+00 f t Invitado Amar invitado-1750865891227@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-2135 +3346 2025-06-25 15:45:55.020369+00 2025-06-25 15:45:55.020378+00 f t lorena amor mlorenamor@gmail.com +5491140811269 \N Avenida Juramento 2790 8A \N \N \N -34.5611784 -58.455199 3 1224 \N lamor +3347 2025-06-25 16:01:50.584084+00 2025-06-25 16:01:50.584092+00 f t Stefania Da Rocha darochastefania512@gmail.com 91123959789 \N Virrey olaguer y Feliu 2690 Departamento 2do 17 \N FEMALE 1990-01-10 -34.5690602 -58.4535809 38 1223 \N sdarocha +3348 2025-06-25 16:11:55.985842+00 2025-06-25 16:11:55.985853+00 f t Invitado Amar invitado-1750867915755@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2136 +3349 2025-06-25 16:48:31.060578+00 2025-06-25 16:48:31.060587+00 f t Invitado Amar invitado-1750870109227@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2137 +3350 2025-06-25 16:50:23.083739+00 2025-06-25 16:50:23.08375+00 f t Invitado Amar invitado-1750870222043@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2138 +3351 2025-06-25 17:05:48.179978+00 2025-06-25 17:05:48.179988+00 f t Invitado Amar invitado-1750871147494@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2139 +3352 2025-06-25 17:24:09.075354+00 2025-06-25 17:24:09.075363+00 f t Invitado Amar invitado-1750872248624@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2140 +3353 2025-06-25 17:25:50.67356+00 2025-06-25 17:25:50.673568+00 f t Invitado Amar invitado-1750872349910@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2141 +3354 2025-06-25 18:07:50.684766+00 2025-06-25 18:07:50.684775+00 f t Invitado Amar invitado-1750874870157@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2142 +3355 2025-06-25 18:30:25.485699+00 2025-06-25 18:30:25.48571+00 f t Invitado Amar invitado-1750876343621@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2143 +3356 2025-06-25 18:51:08.700748+00 2025-06-25 18:51:08.700759+00 f t Invitado Amar invitado-1750877469543@example.com 55555555 \N \N \N \N \N 146 \N \N iamar-2144 +3357 2025-06-25 19:05:18.411121+00 2025-06-25 19:05:18.411155+00 f t Invitado Amar invitado-1750878318164@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-2145 +3358 2025-06-25 19:13:27.619081+00 2025-06-25 19:13:27.61909+00 f t Invitado Amar invitado-1750878807135@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-2146 +3359 2025-06-25 19:14:08.528731+00 2025-06-25 19:14:08.528744+00 f t Invitado Amar invitado-1750878848304@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-2147 +3360 2025-06-25 19:36:31.060139+00 2025-06-25 19:36:31.060146+00 f t Maria Mercedes Lopez lopezmer@gmail.com 91149276360 \N Av. Gaona 1327 1ero A \N FEMALE \N -34.6083458 -58.4482187 14 1225 \N mlopez-4 +3361 2025-06-25 19:45:25.774463+00 2025-06-25 19:45:25.774473+00 f t Invitado Amar invitado-1750880725787@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-2148 +3362 2025-06-25 20:45:30.475927+00 2025-06-25 20:45:30.475937+00 f t Invitado Amar invitado-1750884329687@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2149 +3363 2025-06-25 20:46:18.691011+00 2025-06-25 20:46:18.691018+00 f t Emilse Lorena Bizzi bizziemilse@gmail.com 5492216225038 \N Mariscal Francisco Solano López 3047 timbre 3 \N FEMALE \N -34.5946332 -58.4976009 43 1226 \N ebizzi +3364 2025-06-25 20:47:35.742619+00 2025-06-25 20:47:35.74263+00 f t Invitado Amar invitado-1750884456034@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2150 +3365 2025-06-25 22:09:54.782257+00 2025-06-25 22:09:54.782268+00 f t Invitado Amar invitado-1750889392986@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2151 +3366 2025-06-25 22:24:56.164432+00 2025-06-25 22:24:56.164441+00 f t Invitado Amar invitado-1750890295726@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-2152 +3367 2025-06-25 22:31:34.137762+00 2025-06-25 22:31:34.137774+00 f t Invitado Amar invitado-1750890703766@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-2153 +3368 2025-06-25 22:37:39.630587+00 2025-06-25 22:37:39.630597+00 f t Invitado Amar invitado-1750891058514@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2154 +3369 2025-06-25 22:40:56.661592+00 2025-06-25 22:40:56.6616+00 f t Invitado Amar invitado-1750891254713@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2155 +3370 2025-06-25 22:43:48.145193+00 2025-06-25 22:43:48.145206+00 f t Invitado Amar invitado-1750891427447@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-2156 +3371 2025-06-25 23:02:28.467891+00 2025-06-25 23:02:28.4679+00 f t mICHELL CHOURIO chourio.michell@gmail.com +5491122502325 \N Remedios de Escalada de san Martin 2832 2H \N \N -34.6150458 -58.477346 41 \N \N mchourio +3372 2025-06-25 23:12:51.457077+00 2025-06-25 23:12:51.457087+00 f t Invitado Amar invitado-1750893170811@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-2157 +3373 2025-06-25 23:37:04.234837+00 2025-06-25 23:37:04.23485+00 f t Invitado Amar invitado-1750894623448@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2158 +3374 2025-06-25 23:38:37.486334+00 2025-06-25 23:38:37.486346+00 f t Invitado Amar invitado-1750894717013@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2159 +3375 2025-06-25 23:54:54.913575+00 2025-06-25 23:54:54.913584+00 f t Invitado Amar invitado-1750895695861@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-2160 +3376 2025-06-25 23:55:24.512638+00 2025-06-25 23:55:24.512648+00 f t Invitado Amar invitado-1750895723993@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2161 +3377 2025-06-25 23:58:43.651675+00 2025-06-25 23:58:43.651684+00 f t Invitado Amar invitado-1750895922503@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2162 +3378 2025-06-26 00:09:29.766581+00 2025-06-26 00:09:29.766591+00 f t Invitado Amar invitado-1750896569278@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2163 +3379 2025-06-26 00:32:21.119744+00 2025-06-26 00:32:21.119755+00 f t Invitado Amar invitado-1750897940118@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2164 +3380 2025-06-26 00:36:51.816558+00 2025-06-26 00:36:51.816567+00 f t Maria Eugenia Cogliandro eugecogliandro@hotmail.com +541134052065 \N Julio San Dantas 3238 \N \N -18.301648 -39.9474511 112 \N \N mcogliandro +3381 2025-06-26 00:46:39.330132+00 2025-06-26 00:46:39.330141+00 f t Invitado Amar invitado-1750898798580@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2165 +3382 2025-06-26 00:49:22.768405+00 2025-06-26 00:49:22.768414+00 f t Invitado Amar invitado-1750898961957@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2166 +3383 2025-06-26 00:51:47.251644+00 2025-06-26 00:51:47.251653+00 f t Invitado Amar invitado-1750899106453@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2167 +3384 2025-06-26 01:17:57.383862+00 2025-06-26 01:17:57.383874+00 f t Invitado Amar invitado-1750900676183@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-2168 +3385 2025-06-26 01:19:39.753706+00 2025-06-26 01:19:39.753715+00 f t Invitado Amar invitado-1750900779556@example.com 55555555 \N \N \N \N \N 146 \N \N iamar-2169 +3386 2025-06-26 01:33:14.745908+00 2025-06-26 01:33:14.745922+00 f t Invitado Amar invitado-1750901594357@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-2170 +3387 2025-06-26 01:40:04.41476+00 2025-06-26 01:40:04.414774+00 f t Invitado Amar invitado-1750902004128@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2171 +3388 2025-06-26 01:40:39.373329+00 2025-06-26 01:40:39.373341+00 f t Invitado Amar invitado-1750902039108@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-2172 +3389 2025-06-26 01:47:26.042926+00 2025-06-26 01:47:26.042937+00 f t Invitado Amar invitado-1750902445693@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2173 +3390 2025-06-26 01:52:00.645444+00 2025-06-26 01:52:00.645458+00 f t Invitado Amar invitado-1750902718866@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-2174 +3391 2025-06-26 01:58:02.751388+00 2025-06-26 01:58:02.751401+00 f t Invitado Amar invitado-1750903082139@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2175 +3392 2025-06-26 02:36:36.570211+00 2025-06-26 02:36:36.570223+00 f t Invitado Amar invitado-1750905399023@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2176 +3393 2025-06-26 03:48:19.013203+00 2025-06-26 03:48:19.013212+00 f t Invitado Amar invitado-1750909698251@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2177 +3394 2025-06-26 03:53:11.464428+00 2025-06-26 03:53:11.464437+00 f t Invitado Amar invitado-1750909836961@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2178 +3395 2025-06-26 04:21:32.718572+00 2025-06-26 04:21:32.718582+00 f t Invitado Amar invitado-1750911692092@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2179 +3396 2025-06-26 04:51:28.465208+00 2025-06-26 04:51:28.46522+00 f t Invitado Amar invitado-1750913487959@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2180 +3397 2025-06-26 04:57:13.717062+00 2025-06-26 04:57:13.717071+00 f t Invitado Amar invitado-1750913833817@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2181 +3398 2025-06-26 05:00:02.63129+00 2025-06-26 05:00:02.631303+00 f t Invitado Amar invitado-1750914002011@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2182 +3399 2025-06-26 05:02:13.007018+00 2025-06-26 05:02:13.00703+00 f t Invitado Amar invitado-1750914132455@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-2183 +3400 2025-06-26 05:47:34.995723+00 2025-06-26 05:47:34.995737+00 f t Invitado Amar invitado-1750916854729@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2184 +3401 2025-06-26 09:33:24.945789+00 2025-06-26 09:33:24.945805+00 f t Invitado Amar invitado-1750930576219@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-2185 +3402 2025-06-26 10:57:58.277704+00 2025-06-26 10:57:58.277713+00 f t Invitado Amar invitado-1750935477201@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-2186 +3403 2025-06-26 11:03:19.042176+00 2025-06-26 11:03:19.042183+00 f t Elena Auyero nacha.2678@gmail.com +5491169608282 \N Virrey Arredondo 2437 \N \N FEMALE 1978-02-26 -34.5661543 -58.4501144 3 1228 \N eauyero +3404 2025-06-26 11:03:23.952978+00 2025-06-26 11:03:23.952988+00 f t Invitado Amar invitado-1750935803108@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-2187 +3405 2025-06-26 11:08:43.461346+00 2025-06-26 11:08:43.461356+00 f t Vanessa Lévano lesvanell@gmail.com +5491144081342 \N ROOSEVELT 3386 1A \N FEMALE 1982-06-07 -34.5632343 -58.4701757 45 1229 \N vlevano +3406 2025-06-26 11:12:47.648213+00 2025-06-26 11:12:47.648222+00 f t Invitado Amar invitado-1750936366466@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2188 +3407 2025-06-26 11:20:01.09148+00 2025-06-26 11:20:01.091852+00 f t Invitado Amar invitado-1750936800613@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2189 +3408 2025-06-26 11:24:04.714125+00 2025-06-26 11:24:04.714382+00 f t Invitado Amar invitado-1750937044743@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2190 +3409 2025-06-26 11:43:03.118815+00 2025-06-26 11:43:03.118825+00 f t Geraldine Peña rodriguez geraldine.rodrriguez@gmail.com +541126846350 \N Esmeralda 770 3 F \N \N -34.5993919 -58.378363 13 1230 \N gpenarodriguez +3410 2025-06-26 12:04:35.248877+00 2025-06-26 12:04:35.248887+00 f t Invitado Amar invitado-1750939474873@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2191 +3411 2025-06-26 12:19:41.395229+00 2025-06-26 12:19:41.395244+00 f t Micaela Maugeri micaela.maugeri@gmail.com +541163618338 \N Av congreso 4796 3 B \N \N -34.5678889 -58.4864276 29 \N \N mmaugeri +3412 2025-06-26 12:27:31.899367+00 2025-06-26 12:27:31.899379+00 f t Invitado Amar invitado-1750940851823@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2192 +3413 2025-06-26 12:31:05.545895+00 2025-06-26 12:31:05.545911+00 f t Invitado Amar invitado-1750941065234@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2193 +3414 2025-06-26 12:35:31.714981+00 2025-06-26 12:35:31.714994+00 f t Invitado Amar invitado-1750941331614@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2194 +3415 2025-06-26 12:37:13.301632+00 2025-06-26 12:37:13.301646+00 f t Invitado Amar invitado-1750941433213@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2195 +3416 2025-06-26 12:40:51.204004+00 2025-06-26 12:40:51.204014+00 f t Invitado Amar invitado-1750941650867@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2196 +3417 2025-06-26 12:52:39.097384+00 2025-06-26 12:52:39.097393+00 f t Invitado Amar invitado-1750942358165@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2197 +3418 2025-06-26 12:57:20.069878+00 2025-06-26 12:57:20.069891+00 f t Invitado Amar invitado-1750942546073@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2198 +3419 2025-06-26 14:31:42.456962+00 2025-06-26 14:31:42.456971+00 f t Invitado Amar invitado-1750948301399@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2199 +3420 2025-06-26 14:33:32.355468+00 2025-06-26 14:33:32.355477+00 f t Invitado Amar invitado-1750948411259@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-2200 +3421 2025-06-26 14:35:22.468656+00 2025-06-26 14:35:22.468664+00 f t Sofia Sanchez sofiaelisanchez@gmail.com 5492614609074 \N Leiva 4038 1ero B \N FEMALE 1995-12-02 -34.5898774 -58.4478173 35 1231 \N ssanchez +3422 2025-06-26 15:37:43.946169+00 2025-06-26 15:37:43.946178+00 f t Invitado Amar invitado-1750952263815@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2201 +3423 2025-06-26 15:48:39.301067+00 2025-06-26 15:48:39.301076+00 f t Invitado Amar invitado-1750952915769@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2202 +3424 2025-06-26 15:52:14.014573+00 2025-06-26 15:52:14.014582+00 f t Invitado Amar invitado-1750953131356@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2203 +3425 2025-06-26 16:44:01.367665+00 2025-06-26 16:44:01.367675+00 f t Invitado Amar invitado-1750956240422@example.com 55555555 \N \N \N \N \N 67 \N \N iamar-2204 +3426 2025-06-26 16:45:53.764895+00 2025-06-26 16:45:53.764903+00 f t Invitado Amar invitado-1750956353034@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-2205 +3427 2025-06-26 17:03:45.209199+00 2025-06-26 17:03:45.209211+00 f t Agustina Villarreal agustinavillarreal.fv@gmail.com +541127343096 \N General balcarce 3669 \N \N -37.988996 -57.5536666 113 \N \N avillarreal +3428 2025-06-26 17:20:45.79107+00 2025-06-26 17:20:45.791079+00 f t Invitado Amar invitado-1750958444674@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-2206 +3429 2025-06-26 17:31:02.054794+00 2025-06-26 17:31:02.054807+00 f t Invitado Amar invitado-1750959061402@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2207 +13310 2025-11-14 17:40:35.60519+00 2025-11-14 17:40:35.605203+00 f t Stephanie Kim stephy_kim89@hotmail.com +5491166133011 \N Galileo 2442 10 A \N \N -34.5854191 -58.3978772 9 2150 \N \N +3431 2025-06-26 17:47:54.099127+00 2025-06-26 17:47:54.099165+00 f t Invitado Amar invitado-1750960073603@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2208 +3432 2025-06-26 18:04:38.076608+00 2025-06-26 18:04:38.076691+00 f t Milagros Caballero lahiam.noahcata@gmail.com +541136687859 \N Ostende 1832 1 \N \N -34.7278134 -58.4471502 71 \N \N mcaballero +3433 2025-06-26 18:25:41.231977+00 2025-06-26 18:25:41.231986+00 f t Invitado Amar invitado-1750962341300@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2209 +3434 2025-06-26 18:30:53.696001+00 2025-06-26 18:30:53.69601+00 f t Invitado Amar invitado-1750962654021@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-2210 +3435 2025-06-26 18:39:34.892108+00 2025-06-26 18:39:34.892117+00 f t Invitado Amar invitado-1750963174119@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-2211 +3436 2025-06-26 18:41:08.226972+00 2025-06-26 18:41:08.226982+00 f t Invitado Amar invitado-1750963253411@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2212 +3437 2025-06-26 18:44:03.431108+00 2025-06-26 18:44:03.431116+00 f t Gabriela Boninsegna notiene@gmail.com 91137853476 \N Murguiondo 4154 portero blanco planta baja \N FEMALE 1980-04-06 -34.6737428 -58.4799759 64 1233 \N gboninsegna +3438 2025-06-26 18:50:43.269223+00 2025-06-26 18:50:43.269236+00 f t Victoria Dambrosio vickuuluciachenau@gmail.com +5423630492 \N Luis María Drago 2078 Casa \N \N -34.5188658 -58.5513129 83 \N \N vdambrosio +3439 2025-06-26 19:03:33.828395+00 2025-06-26 19:03:33.828414+00 f t Invitado Amar invitado-1750964613019@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2213 +3440 2025-06-26 19:44:08.043635+00 2025-06-26 19:44:08.043644+00 f t Invitado Amar invitado-1750967047443@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2214 +3441 2025-06-26 19:45:27.404521+00 2025-06-26 19:45:27.404529+00 f t Invitado Amar invitado-1750967127155@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-2215 +3442 2025-06-26 19:49:37.594122+00 2025-06-26 19:49:37.594131+00 f t Melina Georgieff melu_cai@hotmail.com.ar +541140584680 \N Teniente coronel güifra 1548 \N \N -34.6684146 -58.3918446 73 \N \N mgeorgieff +3443 2025-06-26 20:39:05.881328+00 2025-06-26 20:39:05.881335+00 t t Daniela Fernanda Callejo Morrillo danielafernanda@gmail.com 91159533201 \N \N \N \N \N FEMALE \N 44.9379672 7.5400398 9 \N \N dcallejomorrillo +3444 2025-06-26 21:28:05.429134+00 2025-06-26 21:28:05.429144+00 f t Invitado Amar invitado-1750973284798@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2216 +3445 2025-06-26 21:29:06.065272+00 2025-06-26 21:29:06.065281+00 f t Invitado Amar invitado-1750973345891@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2217 +3446 2025-06-26 21:29:32.771872+00 2025-06-26 21:29:32.771883+00 f t Invitado Amar invitado-1750973372596@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2218 +3447 2025-06-26 21:44:55.923592+00 2025-06-26 21:44:55.923603+00 f t Invitado Amar invitado-1750974295217@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2219 +3448 2025-06-26 22:58:08.325973+00 2025-06-26 22:58:08.325982+00 f t Invitado Amar invitado-1750978686043@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2220 +3449 2025-06-26 23:00:39.190016+00 2025-06-26 23:00:39.190029+00 f t Invitado Amar invitado-1750978839073@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2221 +3450 2025-06-26 23:03:51.802419+00 2025-06-26 23:03:51.802428+00 f t Invitado Amar invitado-1750979031202@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2222 +3451 2025-06-26 23:05:44.364503+00 2025-06-26 23:05:44.364515+00 f t Lisi Trejo lisitrejo@gmail.com +543854063505 \N Juramento 2175 6 12 \N \N \N -34.5606409 -58.4545652 3 1235 \N ltrejo +3452 2025-06-26 23:18:11.86349+00 2025-06-26 23:18:11.8635+00 f t Invitado Amar invitado-1750979890164@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-2223 +3453 2025-06-27 00:52:38.338255+00 2025-06-27 00:52:38.338265+00 f t Invitado Amar invitado-1750985557167@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-2224 +3454 2025-06-27 00:56:08.921482+00 2025-06-27 00:56:08.921495+00 f t Invitado Amar invitado-1750985709193@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-2225 +3455 2025-06-27 00:59:50.644322+00 2025-06-27 00:59:50.644334+00 f t Invitado Amar invitado-1750985989855@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-2226 +3456 2025-06-27 01:02:03.21907+00 2025-06-27 01:02:03.219078+00 f t Invitado Amar invitado-1750986122641@example.com 55555555 \N \N \N \N \N 69 \N \N iamar-2227 +3457 2025-06-27 01:02:14.335974+00 2025-06-27 01:02:14.335986+00 f t Invitado Amar invitado-1750986133963@example.com 55555555 \N \N \N \N \N 69 \N \N iamar-2228 +3458 2025-06-27 01:17:21.09101+00 2025-06-27 01:17:21.091022+00 f t Cecilia Ross cecilia.ross@hotmail.com +541168217791 \N Jujuy 346 1 D \N \N -34.6829815 -58.388994 70 1239 \N cross +3459 2025-06-27 02:03:04.274641+00 2025-06-27 02:03:04.27465+00 f t Invitado Amar invitado-1750989783356@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-2229 +3460 2025-06-27 04:22:18.212539+00 2025-06-27 04:22:18.212989+00 f t Invitado Amar invitado-1750998136992@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2230 +3461 2025-06-27 04:22:34.67269+00 2025-06-27 04:22:34.673056+00 f t Invitado Amar invitado-1750998153868@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2231 +3462 2025-06-27 05:58:44.402699+00 2025-06-27 05:58:44.402714+00 f t Invitado Amar invitado-1751003924006@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2232 +3463 2025-06-27 06:23:20.942471+00 2025-06-27 06:23:20.942479+00 f t Invitado Amar invitado-1751005401024@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-2233 +3464 2025-06-27 06:27:02.525586+00 2025-06-27 06:27:02.525597+00 f t Invitado Amar invitado-1751005622802@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-2234 +3465 2025-06-27 09:03:46.095511+00 2025-06-27 09:03:46.095522+00 f t Invitado Amar invitado-1751015025342@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2235 +3466 2025-06-27 09:04:02.58787+00 2025-06-27 09:04:02.587879+00 f t Invitado Amar invitado-1751015041934@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2236 +3467 2025-06-27 09:26:13.443399+00 2025-06-27 09:26:13.443407+00 f t Invitado Amar invitado-1751016372636@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2237 +3468 2025-06-27 09:32:46.717644+00 2025-06-27 09:32:46.717653+00 f t johana flores johanabeatriz627@gmail.com +541162140459 \N Alfredo Sturla 4124 Entre obarrio y beazley \N \N -34.6810544 -58.3281896 113 \N \N jflores +3469 2025-06-27 10:19:28.620642+00 2025-06-27 10:19:28.620651+00 f t Invitado Amar invitado-1751019568402@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2238 +3470 2025-06-27 11:21:46.703994+00 2025-06-27 11:21:46.704003+00 f t Invitado Amar invitado-1751023306278@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-2239 +3471 2025-06-27 11:30:19.981096+00 2025-06-27 11:30:19.981109+00 f t Invitado Amar invitado-1751023819912@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-2240 +3472 2025-06-27 11:33:32.92309+00 2025-06-27 11:33:32.923098+00 f t Invitado Amar invitado-1751024013042@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2241 +3473 2025-06-27 11:49:17.117629+00 2025-06-27 11:49:17.117638+00 f t Invitado Amar invitado-1751024956734@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2242 +3474 2025-06-27 11:57:10.097389+00 2025-06-27 11:57:10.097416+00 f t Invitado Amar invitado-1751025429810@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-2243 +3475 2025-06-27 11:58:54.76243+00 2025-06-27 11:58:54.762437+00 f t Invitado Amar invitado-1751025534375@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2244 +3476 2025-06-27 12:04:00.52792+00 2025-06-27 12:04:00.527933+00 f t Invitado Amar invitado-1751025840077@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2245 +3477 2025-06-27 12:28:18.689998+00 2025-06-27 12:28:18.690006+00 f t Geraldine Peña kmilo@gmail.com +541126846350 \N Esmeralda 770 3F \N \N -34.5993919 -58.378363 13 \N \N gpena +3478 2025-06-27 12:43:22.829644+00 2025-06-27 12:43:22.829652+00 f t Invitado Amar invitado-1751028202167@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2246 +3479 2025-06-27 13:14:43.962898+00 2025-06-27 13:14:43.962907+00 f t Invitado Amar invitado-1751030083241@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2247 +3480 2025-06-27 13:24:08.775319+00 2025-06-27 13:24:08.775327+00 f t Victoria De martini demartinivictoria@gmail.com +5491168680308 \N moreno 3450 4 \N \N -34.6144197 -58.4151988 23 \N \N vdemartini +3481 2025-06-27 13:29:35.295356+00 2025-06-27 13:29:35.295365+00 f t Invitado Amar invitado-1751030975196@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2248 +3482 2025-06-27 13:39:37.915202+00 2025-06-27 13:39:37.91521+00 f t Invitado Amar invitado-1751031577020@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-2249 +3483 2025-06-27 13:52:04.132386+00 2025-06-27 13:52:04.132395+00 f t Invitado Amar invitado-1751032324210@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-2250 +3484 2025-06-27 13:58:27.842897+00 2025-06-27 13:58:27.842906+00 f t Maynao Folchi maynaofolchi@gmail.com 5491122547255 \N Allende 2749 PB4 \N MALE 1999-01-17 -34.6149489 -58.5111647 21 1236 \N mfolchi +3485 2025-06-27 14:08:14.696129+00 2025-06-27 14:08:14.696137+00 f t Andrea Bordenave abordenave.35@hotmail.com 91126351992 \N Martínez Castro 1495 Entre Av Eva Perón y Recuero \N FEMALE \N -34.6471552 -58.4681476 5 1237 \N abordenave +3486 2025-06-27 14:29:20.843627+00 2025-06-27 14:29:20.843637+00 f t Invitado Amar invitado-1751034558956@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2251 +3487 2025-06-27 14:31:46.804128+00 2025-06-27 14:31:46.804139+00 f t Invitado Amar invitado-1751034705421@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2252 +3488 2025-06-27 14:35:16.40027+00 2025-06-27 14:35:16.400278+00 f t Invitado Amar invitado-1751034916044@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-2253 +3489 2025-06-27 14:35:19.728309+00 2025-06-27 14:35:19.728318+00 f t Invitado Amar invitado-1751034919321@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2254 +3490 2025-06-27 14:58:40.393205+00 2025-06-27 14:58:40.393213+00 f t Invitado Amar invitado-1751036318996@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-2255 +3491 2025-06-27 15:07:33.777651+00 2025-06-27 15:07:33.777663+00 f t Invitado Amar invitado-1751036853400@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2256 +3492 2025-06-27 15:58:51.239356+00 2025-06-27 15:58:51.239368+00 f t Invitado Amar invitado-1751039930877@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-2257 +3493 2025-06-27 16:34:19.669452+00 2025-06-27 16:34:19.669463+00 f t Invitado Amar invitado-1751042059164@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2258 +3494 2025-06-27 18:33:05.649927+00 2025-06-27 18:33:05.649934+00 f t Estefania Farfan tefy25.ef@gmail.com 91140976081 \N yerbal 1932 cp 1406 \N FEMALE \N -34.6258136 -58.457778 4 1241 \N efarfan +3495 2025-06-27 18:45:31.394243+00 2025-06-27 18:45:31.394251+00 f t Invitado Amar invitado-1751049931064@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-2259 +3496 2025-06-27 19:20:45.784379+00 2025-06-27 19:20:45.784386+00 f t Julieta Castells julietaartecastells@gmail.com 93364344583 \N Nazca 2360 Timbre 3 \N FEMALE \N -34.6082697 -58.4841216 17 1242 \N jcastells +3497 2025-06-27 19:54:53.009839+00 2025-06-27 19:54:53.00985+00 f t Gaston Landaburo gastonlandaburo@gmail.com +541161884775 \N Maza 876 6/21 \N \N -34.6218614 -58.4148895 11 \N \N glandaburo +3498 2025-06-27 20:00:43.109624+00 2025-06-27 20:00:43.109633+00 f t Invitado Amar invitado-1751054443421@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2260 +3499 2025-06-27 20:30:39.222185+00 2025-06-27 20:30:39.222194+00 f t Invitado Amar invitado-1751056236300@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2261 +3500 2025-06-27 21:26:27.428293+00 2025-06-27 21:26:27.428302+00 f t Invitado Amar invitado-1751059586795@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-2262 +3501 2025-06-27 21:55:21.033358+00 2025-06-27 21:55:21.033366+00 f t Invitado Amar invitado-1751061319728@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2263 +3502 2025-06-27 21:59:41.856962+00 2025-06-27 21:59:41.856971+00 f t Sandra Perez perezsandram@gmail.com +541122846335 \N NECOCHEA 1640 Casa \N \N -34.4472071 -58.5562566 74 \N \N sperez-2 +3503 2025-06-27 22:54:13.244759+00 2025-06-27 22:54:13.244771+00 f t Invitado Amar invitado-1751064851983@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-2264 +3504 2025-06-27 23:09:41.536169+00 2025-06-27 23:09:41.536178+00 f t Invitado Amar invitado-1751065781952@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2265 +3505 2025-06-27 23:15:12.894396+00 2025-06-27 23:15:12.894405+00 f t Invitado Amar invitado-1751066111729@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-2266 +3506 2025-06-27 23:26:20.842779+00 2025-06-27 23:26:20.842788+00 f t Invitado Amar invitado-1751066780443@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-2267 +3507 2025-06-28 01:01:21.994848+00 2025-06-28 01:01:21.994857+00 f t Invitado Amar invitado-1751072481223@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2268 +3508 2025-06-28 01:07:39.83768+00 2025-06-28 01:07:39.837691+00 f t Alejandro Echeverria alejandroquince@gmail.com +541165469522 \N Vuelta de obligado 3810 7 a \N \N -34.5467165 -58.4683834 25 \N \N aecheverria-2 +3509 2025-06-28 02:03:55.077519+00 2025-06-28 02:03:55.077528+00 f t Invitado Amar invitado-1751076232182@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2269 +3510 2025-06-28 02:38:39.964587+00 2025-06-28 02:38:39.964611+00 f t Invitado Amar invitado-1751078318892@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2270 +3511 2025-06-28 03:29:54.62389+00 2025-06-28 03:29:54.623906+00 f t Invitado Amar invitado-1751081394261@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2271 +3512 2025-06-28 03:37:01.844987+00 2025-06-28 03:37:01.845001+00 f t Invitado Amar invitado-1751081821628@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2272 +3513 2025-06-28 03:42:37.197352+00 2025-06-28 03:42:37.197361+00 f t Invitado Amar invitado-1751082156556@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2273 +3514 2025-06-28 04:22:42.755115+00 2025-06-28 04:22:42.755125+00 f t Invitado Amar invitado-1751084561823@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2274 +3515 2025-06-28 05:36:44.509611+00 2025-06-28 05:36:44.509623+00 f t tomas spolzino tomas.spolzino2004@gmail.com +1178305656 \N san juan 424 \N \N -34.7693796 -58.3603426 85 \N \N tspolzino +3516 2025-06-28 10:43:05.928243+00 2025-06-28 10:43:05.928256+00 f t Invitado Amar invitado-1751107385136@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2275 +3517 2025-06-28 11:01:31.141316+00 2025-06-28 11:01:31.141326+00 f t Invitado Amar invitado-1751108489896@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2276 +3518 2025-06-28 12:13:18.725947+00 2025-06-28 12:13:18.725956+00 f t Invitado Amar invitado-1751112798290@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2277 +3519 2025-06-28 12:31:15.27636+00 2025-06-28 12:31:15.276368+00 f t Carlos Gardos carlos.gardos930@gmail.com +5466895679 \N Segurola 2037 9A \N \N -34.612431 -58.507776 21 \N \N cgardos +3520 2025-06-28 12:53:13.034515+00 2025-06-28 12:53:13.034524+00 f t Invitado Amar invitado-1751115192676@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2278 +3521 2025-06-28 12:58:46.209048+00 2025-06-28 12:58:46.209057+00 f t Invitado Amar invitado-1751115525193@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2279 +3522 2025-06-28 13:34:48.904188+00 2025-06-28 13:34:48.9042+00 f t Invitado Amar invitado-1751117688502@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-2280 +3523 2025-06-28 13:56:13.105467+00 2025-06-28 13:56:13.105478+00 f t Invitado Amar invitado-1751118971567@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2281 +3524 2025-06-28 14:13:15.973977+00 2025-06-28 14:13:15.973987+00 f t Invitado Amar invitado-1751119995501@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2282 +3525 2025-06-28 14:35:03.245649+00 2025-06-28 14:35:03.245665+00 f t Invitado Amar invitado-1751121302494@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2283 +3526 2025-06-28 14:40:32.495406+00 2025-06-28 14:40:32.495417+00 f t Invitado Amar invitado-1751121632115@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2284 +3527 2025-06-28 15:31:48.21938+00 2025-06-28 15:31:48.219388+00 f t Invitado Amar invitado-1751124707860@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-2285 +3528 2025-06-28 15:40:21.427979+00 2025-06-28 15:40:21.42799+00 f t Invitado Amar invitado-1751125220325@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-2286 +3529 2025-06-28 15:44:25.970728+00 2025-06-28 15:44:25.970739+00 f t Invitado Amar invitado-1751125465489@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2287 +3530 2025-06-28 16:13:26.369596+00 2025-06-28 16:13:26.369605+00 f t Invitado Amar invitado-1751127206011@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2288 +3531 2025-06-28 16:34:03.427701+00 2025-06-28 16:34:03.427714+00 f t Invitado Amar invitado-1751128443019@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2289 +3532 2025-06-28 16:35:45.061821+00 2025-06-28 16:35:45.061832+00 f t Invitado Amar invitado-1751128545072@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2290 +3533 2025-06-28 17:19:26.317387+00 2025-06-28 17:19:26.317396+00 f t Invitado Amar invitado-1751131165770@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-2291 +3534 2025-06-28 17:21:00.186077+00 2025-06-28 17:21:00.186103+00 f t Invitado Amar invitado-1751131259942@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-2292 +3535 2025-06-28 17:21:22.237238+00 2025-06-28 17:21:22.237248+00 f t Invitado Amar invitado-1751131281999@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-2293 +3536 2025-06-28 17:27:36.587236+00 2025-06-28 17:27:36.587248+00 f t Invitado Amar invitado-1751131656497@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2294 +3537 2025-06-28 17:28:40.562655+00 2025-06-28 17:28:40.562664+00 f t Invitado Amar invitado-1751131718071@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-2295 +3538 2025-06-28 17:32:56.85651+00 2025-06-28 17:32:56.856522+00 f t Invitado Amar invitado-1751131976471@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-2296 +3539 2025-06-28 18:01:38.047779+00 2025-06-28 18:01:38.047788+00 f t Invitado Amar invitado-1751133697250@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2297 +3540 2025-06-28 18:32:04.719954+00 2025-06-28 18:32:04.719964+00 f t Invitado Amar invitado-1751135525785@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2298 +3541 2025-06-28 19:11:14.814369+00 2025-06-28 19:11:14.814382+00 f t Invitado Amar invitado-1751137874720@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2299 +3542 2025-06-28 20:00:32.485481+00 2025-06-28 20:00:32.485494+00 f t Invitado Amar invitado-1751140831815@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-2300 +3543 2025-06-28 20:03:22.375096+00 2025-06-28 20:03:22.375104+00 f t Invitado Amar invitado-1751141002165@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-2301 +3544 2025-06-28 20:06:02.969259+00 2025-06-28 20:06:02.969269+00 f t Invitado Amar invitado-1751141162038@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2302 +3545 2025-06-28 20:14:46.320305+00 2025-06-28 20:14:46.320317+00 f t Invitado Amar invitado-1751141686118@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-2303 +3547 2025-06-28 20:24:59.263317+00 2025-06-28 20:24:59.263329+00 f t Invitado Amar invitado-1751142300961@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-2304 +3548 2025-06-28 20:46:03.573135+00 2025-06-28 20:46:03.573149+00 f t Invitado Amar invitado-1751143561245@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2305 +3549 2025-06-28 20:47:17.74235+00 2025-06-28 20:47:17.742358+00 f t Invitado Amar invitado-1751143635845@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2306 +3550 2025-06-28 20:49:22.817+00 2025-06-28 20:49:22.817009+00 f t Invitado Amar invitado-1751143760583@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2307 +3551 2025-06-28 22:18:12.890849+00 2025-06-28 22:18:12.890856+00 f t Alexander castro graziadio alexandercastrograziadio@gmail.com 5491169535884 \N Av Mendoza 5259 5to B código del portero 052 \N MALE 1980-06-16 -34.57804 -58.4854391 29 \N \N agraziadio +3552 2025-06-28 22:20:39.262884+00 2025-06-28 22:20:39.262892+00 f t Invitado Amar invitado-1751149239518@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2308 +3553 2025-06-28 22:25:14.75598+00 2025-06-28 22:25:14.755987+00 f t DIEGO CALDERON calderonviancha@gmail.com 5491140863066 \N Dorrego 2661 Dpto B \N MALE 1985-06-19 -34.5742886 -58.4337358 1 1244 \N dcalderon +3554 2025-06-28 22:38:39.705171+00 2025-06-28 22:38:39.705178+00 f t Mariana Rempel marianne_rempel@hotmail.com 5491158212394 \N Paraguay 5219 7°A \N FEMALE 1985-10-21 -34.5791975 -58.4311233 1 1247 \N mrempel +3555 2025-06-28 22:40:31.200471+00 2025-06-28 22:40:31.200481+00 f t Invitado Amar invitado-1751150430339@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2309 +3556 2025-06-28 22:53:27.019022+00 2025-06-28 22:53:27.019034+00 f t Invitado Amar invitado-1751151207463@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2310 +3557 2025-06-28 22:57:59.737214+00 2025-06-28 22:57:59.737223+00 f t Invitado Amar invitado-1751151479205@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-2311 +3558 2025-06-28 23:15:54.848161+00 2025-06-28 23:15:54.848169+00 f t Invitado Amar invitado-1751152554011@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2312 +3559 2025-06-28 23:28:44.582138+00 2025-06-28 23:28:44.582146+00 f t Invitado Amar invitado-1751153323597@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2313 +3560 2025-06-28 23:34:02.177957+00 2025-06-28 23:34:02.177971+00 f t Flor Ponzi florenciaponzi@gmail.com +541154674722 \N Guido 1637 5C \N \N \N -34.591265 -58.3882573 9 1249 \N fponzi +3561 2025-06-28 23:49:39.858517+00 2025-06-28 23:49:39.858526+00 f t Invitado Amar invitado-1751154580521@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2314 +3562 2025-06-29 00:16:37.423212+00 2025-06-29 00:16:37.423221+00 f t Invitado Amar invitado-1751156196660@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2315 +3563 2025-06-29 00:18:22.285411+00 2025-06-29 00:18:22.285422+00 f t Invitado Amar invitado-1751156301879@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-2316 +3564 2025-06-29 00:33:56.875041+00 2025-06-29 00:33:56.87505+00 f t Ariel Groothuis arielgrths2@gmail.com +541161289224 \N Yapeyu 4853 \N \N -34.5578332 -58.5634387 113 \N \N agroothuis +3565 2025-06-29 00:36:00.563963+00 2025-06-29 00:36:00.563974+00 f t Invitado Amar invitado-1751157360142@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2317 +3566 2025-06-29 00:48:10.696335+00 2025-06-29 00:48:10.696344+00 f t Invitado Amar invitado-1751158090202@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2318 +3567 2025-06-29 01:01:49.964372+00 2025-06-29 01:01:49.964384+00 f t Invitado Amar invitado-1751158909653@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2319 +3568 2025-06-29 01:04:37.513777+00 2025-06-29 01:04:37.513786+00 f t Invitado Amar invitado-1751159077688@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2320 +3569 2025-06-29 01:08:09.777372+00 2025-06-29 01:08:09.777381+00 f t Invitado Amar invitado-1751159289201@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-2321 +3570 2025-06-29 01:22:27.510974+00 2025-06-29 01:22:27.510982+00 f t Invitado Amar invitado-1751160146798@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2322 +3571 2025-06-29 01:47:14.526699+00 2025-06-29 01:47:14.526709+00 f t Invitado Amar invitado-1751161634546@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-2323 +3572 2025-06-29 02:49:44.014013+00 2025-06-29 02:49:44.014021+00 f t Invitado Amar invitado-1751165383897@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2324 +3573 2025-06-29 03:33:51.602718+00 2025-06-29 03:33:51.60273+00 f t Invitado Amar invitado-1751168030953@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2325 +3574 2025-06-29 03:36:31.464289+00 2025-06-29 03:36:31.464298+00 f t Invitado Amar invitado-1751168191136@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2326 +3575 2025-06-29 03:59:23.206272+00 2025-06-29 03:59:23.206281+00 f t Invitado Amar invitado-1751169562941@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2327 +3576 2025-06-29 04:23:08.536375+00 2025-06-29 04:23:08.536389+00 f t Invitado Amar invitado-1751170988156@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2328 +3577 2025-06-29 06:31:06.894862+00 2025-06-29 06:31:06.894875+00 f t Invitado Amar invitado-1751178666323@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2329 +3578 2025-06-29 06:59:49.068975+00 2025-06-29 06:59:49.068984+00 f t Invitado Amar invitado-1751180387072@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2330 +3579 2025-06-29 10:15:49.290359+00 2025-06-29 10:15:49.290368+00 f t Invitado Amar invitado-1751192148423@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-2331 +3580 2025-06-29 11:22:18.092274+00 2025-06-29 11:22:18.092283+00 f t Invitado Amar invitado-1751196137504@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2332 +3581 2025-06-29 11:43:44.837464+00 2025-06-29 11:43:44.837473+00 f t Invitado Amar invitado-1751197424514@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-2333 +3582 2025-06-29 12:10:52.399587+00 2025-06-29 12:10:52.399597+00 f t Invitado Amar invitado-1751199052698@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2334 +3583 2025-06-29 12:12:07.779382+00 2025-06-29 12:12:07.779391+00 f t Jesus Estela Jesusestela634@gmail.com +541123295709 \N Homero 607 1 D \N \N -34.644274 -58.493562 5 \N \N jestela +3584 2025-06-29 12:28:59.099009+00 2025-06-29 12:28:59.099019+00 f t Invitado Amar invitado-1751200138792@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2335 +3585 2025-06-29 12:45:24.353817+00 2025-06-29 12:45:24.353825+00 f t Invitado Amar invitado-1751201124770@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-2336 +3586 2025-06-29 12:45:27.20978+00 2025-06-29 12:45:27.209791+00 f t Invitado Amar invitado-1751201125563@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2337 +3587 2025-06-29 12:48:08.122782+00 2025-06-29 12:48:08.122794+00 f t Carolina Gobatto carogobatto@gmail.com +541136562112 \N Yapeyu 871 2 C \N \N -34.6224289 -58.4214839 11 \N \N cgobatto +3588 2025-06-29 13:01:38.550992+00 2025-06-29 13:01:38.551001+00 f t Invitado Amar invitado-1751202177528@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2338 +3589 2025-06-29 13:21:02.322598+00 2025-06-29 13:21:02.32261+00 f t Invitado Amar invitado-1751203262015@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-2339 +3590 2025-06-29 13:59:38.954452+00 2025-06-29 13:59:38.954461+00 f t Marisol Schwab marisolschwab@gmail.com +541132842240 \N Concordia 4749 4A \N \N -34.590696 -58.5104604 21 \N \N mschwab +3591 2025-06-29 14:08:57.005524+00 2025-06-29 14:08:57.005533+00 f t Invitado Amar invitado-1751206136091@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2340 +3592 2025-06-29 15:01:25.960945+00 2025-06-29 15:01:25.960956+00 f t Martina Orloff martina.orloff@gmail.com +541130668274 \N Melo 806 Casa \N \N -34.7515154 -58.3850341 72 \N \N morloff +3593 2025-06-29 15:24:49.998667+00 2025-06-29 15:24:49.998676+00 f t Invitado Amar invitado-1751210689616@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-2341 +3594 2025-06-29 15:30:17.068298+00 2025-06-29 15:30:17.068307+00 f t Invitado Amar invitado-1751211016681@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2342 +3595 2025-06-29 15:44:34.754828+00 2025-06-29 15:44:34.754837+00 f t Invitado Amar invitado-1751211874603@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2343 +3596 2025-06-29 15:45:05.548574+00 2025-06-29 15:45:05.548586+00 f t Invitado Amar invitado-1751211905571@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2344 +3597 2025-06-29 15:45:59.732436+00 2025-06-29 15:45:59.732454+00 f t Invitado Amar invitado-1751211959795@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2345 +3598 2025-06-29 16:04:39.216572+00 2025-06-29 16:04:39.21658+00 f t Invitado Amar invitado-1751213078266@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2346 +3599 2025-06-29 16:09:54.500101+00 2025-06-29 16:09:54.50011+00 f t Invitado Amar invitado-1751213393946@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2347 +3600 2025-06-29 16:45:08.289998+00 2025-06-29 16:45:08.290006+00 f t Invitado Amar invitado-1751215434870@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-2348 +3601 2025-06-29 16:53:43.863396+00 2025-06-29 16:53:43.863408+00 f t Invitado Amar invitado-1751216023362@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-2349 +3602 2025-06-29 17:12:31.750736+00 2025-06-29 17:12:31.750745+00 f t Invitado Amar invitado-1751217151428@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2350 +3603 2025-06-29 17:24:15.952298+00 2025-06-29 17:24:15.952306+00 f t Invitado Amar invitado-1751217855621@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2351 +3604 2025-06-29 17:36:48.258882+00 2025-06-29 17:36:48.258891+00 f t Invitado Amar invitado-1751218607630@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-2352 +3605 2025-06-29 18:28:58.878524+00 2025-06-29 18:28:58.878533+00 f t Invitado Amar invitado-1751221738406@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2353 +3606 2025-06-29 18:40:06.23938+00 2025-06-29 18:40:06.239393+00 f t Invitado Amar invitado-1751222405240@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2354 +3607 2025-06-29 19:16:38.828644+00 2025-06-29 19:16:38.828653+00 f t Invitado Amar invitado-1751224598442@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2355 +3608 2025-06-29 19:47:08.91174+00 2025-06-29 19:47:08.911753+00 f t Invitado Amar invitado-1751226428004@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-2356 +3609 2025-06-29 20:18:00.632616+00 2025-06-29 20:18:00.632628+00 f t Invitado Amar invitado-1751228279989@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-2357 +3610 2025-06-29 20:30:43.993193+00 2025-06-29 20:30:43.993204+00 f t Invitado Amar invitado-1751229043607@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-2358 +3611 2025-06-29 21:20:36.552705+00 2025-06-29 21:20:36.552717+00 f t Invitado Amar invitado-1751232036166@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2359 +3612 2025-06-29 21:20:53.719032+00 2025-06-29 21:20:53.719043+00 f t Invitado Amar invitado-1751232051903@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-2360 +3613 2025-06-29 22:02:57.290915+00 2025-06-29 22:02:57.290922+00 f t Camila Fernández camilafernandez1227@gmail.com 5491130560311 \N Doblas 1461 PB 4 \N FEMALE 1997-12-27 -34.6336402 -58.4280824 20 1250 \N cfernandez-3 +3614 2025-06-29 22:10:15.065931+00 2025-06-29 22:10:15.06594+00 f t Invitado Amar invitado-1751235014143@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2361 +3615 2025-06-29 22:25:09.822852+00 2025-06-29 22:25:09.822866+00 f t Invitado Amar invitado-1751235909719@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-2362 +3616 2025-06-29 22:28:58.01679+00 2025-06-29 22:28:58.016799+00 f t Invitado Amar invitado-1751236137673@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2363 +3617 2025-06-29 22:31:53.683932+00 2025-06-29 22:31:53.683945+00 f t Marta Mabel Arias julietapestarino@gmail.com +541156540939 \N Av. Directorio 1614 1 B \N \N -34.630629 -58.450739 14 \N \N marias +3618 2025-06-29 22:48:35.831971+00 2025-06-29 22:48:35.831985+00 f t Invitado Amar invitado-1751237313943@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2364 +3619 2025-06-29 23:01:05.147256+00 2025-06-29 23:01:05.147269+00 f t Invitado Amar invitado-1751238064454@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2365 +3620 2025-06-29 23:53:02.465661+00 2025-06-29 23:53:02.465673+00 f t Yesica Brunetti valebrunetti28@gmail.com +541170631200 \N Conesa 4700 Pb B \N \N -34.5432001 -58.4785005 31 \N \N ybrunetti +3621 2025-06-30 00:00:01.423619+00 2025-06-30 00:00:01.423636+00 f t Invitado Amar invitado-1751241600500@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2366 +3622 2025-06-30 00:44:07.520041+00 2025-06-30 00:44:07.52005+00 f t Invitado Amar invitado-1751244246546@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-2367 +3623 2025-06-30 00:47:01.194649+00 2025-06-30 00:47:01.194661+00 f t Invitado Amar invitado-1751244419422@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2368 +3624 2025-06-30 01:15:31.510937+00 2025-06-30 01:15:31.510947+00 f t Invitado Amar invitado-1751246130738@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2369 +3625 2025-06-30 01:16:40.542534+00 2025-06-30 01:16:40.542544+00 f t Invitado Amar invitado-1751246202691@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-2370 +3626 2025-06-30 01:34:57.900385+00 2025-06-30 01:34:57.900397+00 f t Invitado Amar invitado-1751247296931@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-2371 +3627 2025-06-30 01:39:24.566916+00 2025-06-30 01:39:24.566925+00 f t Invitado Amar invitado-1751247563759@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-2372 +3628 2025-06-30 01:41:28.198857+00 2025-06-30 01:41:28.198869+00 f t Invitado Amar invitado-1751247686894@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-2373 +3629 2025-06-30 03:10:11.703969+00 2025-06-30 03:10:11.703985+00 f t Invitado Amar invitado-1751253010798@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-2374 +3630 2025-06-30 03:47:29.785333+00 2025-06-30 03:47:29.785348+00 f t Invitado Amar invitado-1751255248725@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2375 +3631 2025-06-30 04:27:46.888393+00 2025-06-30 04:27:46.888402+00 f t Invitado Amar invitado-1751257666419@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-2376 +3632 2025-06-30 04:36:57.76651+00 2025-06-30 04:36:57.76652+00 f t Invitado Amar invitado-1751258216831@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2377 +3633 2025-06-30 04:45:50.416455+00 2025-06-30 04:45:50.416464+00 f t Invitado Amar invitado-1751258749964@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2378 +3634 2025-06-30 05:32:42.41538+00 2025-06-30 05:32:42.415391+00 f t Invitado Amar invitado-1751261559161@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-2379 +3635 2025-06-30 05:49:16.823468+00 2025-06-30 05:49:16.823477+00 f t Invitado Amar invitado-1751262556375@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2380 +3636 2025-06-30 05:56:33.813481+00 2025-06-30 05:56:33.81349+00 f t Invitado Amar invitado-1751262993483@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-2381 +3637 2025-06-30 07:31:21.99444+00 2025-06-30 07:31:21.99445+00 f t Invitado Amar invitado-1751268682171@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2382 +3638 2025-06-30 09:17:55.267881+00 2025-06-30 09:17:55.267891+00 f t Invitado Amar invitado-1751275075101@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2383 +3639 2025-06-30 11:08:38.5978+00 2025-06-30 11:08:38.597809+00 f t Rita Bartolo ritanoboa@gmail.com +5401165906454 \N Suipacha 2626 \N \N -34.4606475 -58.5244322 77 \N \N rbartolo +3640 2025-06-30 11:10:16.50237+00 2025-06-30 11:10:16.502384+00 f t Invitado Amar invitado-1751281817429@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2384 +3641 2025-06-30 11:58:45.038806+00 2025-06-30 11:58:45.038816+00 f t Invitado Amar invitado-1751284724439@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2385 +3642 2025-06-30 12:45:49.923323+00 2025-06-30 12:45:49.923332+00 f t Santiago Peñaloza santiagolanza.1994@gmail.com +5491139227152 \N Reconquista 870 3 - 10 \N \N -34.5976859 -58.3729646 37 \N \N spenaloza +3643 2025-06-30 12:46:39.169624+00 2025-06-30 12:46:39.169633+00 f t Myriam García myricaro21@hotmail.com 3104854447 \N Bartolomé mitre 5395 \N \N FEMALE \N -34.5873353 -58.5510212 46 1251 \N mgarcia-2 +3644 2025-06-30 12:55:01.293992+00 2025-06-30 12:55:01.294002+00 f t Invitado Amar invitado-1751288100845@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-2386 +3645 2025-06-30 13:04:54.794659+00 2025-06-30 13:04:54.794671+00 f t Ana Elena Correa correa.anae@gmail.com +541141450578 \N Gurruchaga 2459 2do F \N \N \N -34.5828226 -58.4205191 1 1272 \N acorrea +3646 2025-06-30 13:28:58.480172+00 2025-06-30 13:28:58.480182+00 f t Invitado Amar invitado-1751290137821@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2387 +3647 2025-06-30 13:35:33.843433+00 2025-06-30 13:35:33.843448+00 f t Invitado Amar invitado-1751290533376@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2388 +3648 2025-06-30 13:36:59.155073+00 2025-06-30 13:36:59.155082+00 f t Invitado Amar invitado-1751290618951@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2389 +3649 2025-06-30 13:53:18.491679+00 2025-06-30 13:53:18.491691+00 f t Invitado Amar invitado-1751291598115@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-2390 +3650 2025-06-30 13:59:57.622601+00 2025-06-30 13:59:57.62261+00 f t Invitado Amar invitado-1751291997595@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2391 +3651 2025-06-30 14:10:46.42938+00 2025-06-30 14:10:46.42939+00 f t Invitado Amar invitado-1751292645731@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-2392 +3652 2025-06-30 15:16:34.856454+00 2025-06-30 15:16:34.856463+00 f t Invitado Amar invitado-1751296594719@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2393 +3653 2025-06-30 15:17:46.245927+00 2025-06-30 15:17:46.245936+00 f t Invitado Amar invitado-1751296665476@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-2394 +3654 2025-06-30 15:33:17.71867+00 2025-06-30 15:33:17.718679+00 f t Invitado Amar invitado-1751297597054@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2395 +3655 2025-06-30 15:40:54.420653+00 2025-06-30 15:40:54.420665+00 f t Invitado Amar invitado-1751297905661@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2396 +3656 2025-06-30 16:02:45.263275+00 2025-06-30 16:02:45.263295+00 f t Anabella Alarcon anna.alarcon.97@gmail.com 91168816777 \N Boedo 220 5A \N FEMALE \N -34.5990506 -58.4289199 23 \N \N aalarcon +3657 2025-06-30 16:31:15.739997+00 2025-06-30 16:31:15.740009+00 f t Invitado Amar invitado-1751301074857@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2397 +3658 2025-06-30 16:43:09.223421+00 2025-06-30 16:43:09.22343+00 f t Invitado Amar invitado-1751301788655@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2398 +3659 2025-06-30 16:43:54.765792+00 2025-06-30 16:43:54.765806+00 f t Invitado Amar invitado-1751301834450@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2399 +3660 2025-06-30 17:53:50.572821+00 2025-06-30 17:53:50.572832+00 f t Invitado Amar invitado-1751305555192@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-2400 +3661 2025-06-30 18:01:27.310117+00 2025-06-30 18:01:27.310129+00 f t Invitado Amar invitado-1751306486805@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-2401 +3662 2025-06-30 18:21:23.461096+00 2025-06-30 18:21:23.461106+00 f t Invitado Amar invitado-1751307682840@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2402 +3663 2025-06-30 18:21:47.686212+00 2025-06-30 18:21:47.686222+00 f t Invitado Amar invitado-1751307707092@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2403 +3664 2025-06-30 18:45:31.79033+00 2025-06-30 18:45:31.79034+00 f t Invitado Amar invitado-1751309128287@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2404 +3665 2025-06-30 18:48:05.235929+00 2025-06-30 18:48:05.235937+00 f t Invitado Amar invitado-1751309326791@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2405 +3666 2025-06-30 18:51:46.149902+00 2025-06-30 18:51:46.149912+00 f t Invitado Amar invitado-1751309547989@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2406 +3667 2025-06-30 18:52:20.6464+00 2025-06-30 18:52:20.646412+00 f t Invitado Amar invitado-1751309540021@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-2407 +3668 2025-06-30 19:06:04.694903+00 2025-06-30 19:06:04.694916+00 f t Invitado Amar invitado-1751310363438@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-2408 +3669 2025-06-30 19:18:40.007984+00 2025-06-30 19:18:40.007994+00 f t Invitado Amar invitado-1751311120036@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2409 +3670 2025-06-30 19:37:39.953274+00 2025-06-30 19:37:39.953284+00 f t Invitado Amar invitado-1751312259012@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2410 +3671 2025-06-30 19:39:24.419113+00 2025-06-30 19:39:24.419123+00 f t Invitado Amar invitado-1751312363734@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2411 +3672 2025-06-30 19:40:00.248293+00 2025-06-30 19:40:00.248306+00 f t Invitado Amar invitado-1751312399821@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2412 +3673 2025-06-30 19:44:45.499391+00 2025-06-30 19:44:45.4994+00 f t Invitado Amar invitado-1751312685082@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2413 +3674 2025-06-30 19:55:24.49141+00 2025-06-30 19:55:24.491421+00 f t Invitado Amar invitado-1751313323280@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2414 +3675 2025-06-30 20:04:04.78285+00 2025-06-30 20:04:04.782859+00 f t Invitado Amar invitado-1751313844345@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-2415 +3676 2025-06-30 20:23:15.281771+00 2025-06-30 20:23:15.28178+00 f t Invitado Amar invitado-1751314995884@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-2416 +3677 2025-06-30 20:23:57.715077+00 2025-06-30 20:23:57.715086+00 f t Invitado Amar invitado-1751315037205@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2417 +3678 2025-06-30 20:24:02.577745+00 2025-06-30 20:24:02.577758+00 f t Invitado Amar invitado-1751315041377@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2418 +3679 2025-06-30 21:09:23.731676+00 2025-06-30 21:09:23.73169+00 f t Invitado Amar invitado-1751317760878@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2419 +3680 2025-06-30 21:24:50.312617+00 2025-06-30 21:24:50.312627+00 f t Invitado Amar invitado-1751318688521@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2420 +3681 2025-06-30 21:44:52.421792+00 2025-06-30 21:44:52.421802+00 f t Invitado Amar invitado-1751319891306@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2421 +3682 2025-06-30 21:45:54.270228+00 2025-06-30 21:45:54.270237+00 f t Invitado Amar invitado-1751319953882@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-2422 +3683 2025-06-30 21:49:44.675122+00 2025-06-30 21:49:44.675178+00 f t Invitado Amar invitado-1751320183963@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2423 +3684 2025-06-30 21:56:30.186309+00 2025-06-30 21:56:30.186322+00 f t Invitado Amar invitado-1751320590444@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2424 +3685 2025-06-30 22:01:05.635814+00 2025-06-30 22:01:05.635823+00 f t Invitado Amar invitado-1751320865981@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2425 +3686 2025-06-30 22:46:47.671934+00 2025-06-30 22:46:47.671947+00 f t Invitado Amar invitado-1751323607160@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-2426 +3687 2025-06-30 22:56:19.835587+00 2025-06-30 22:56:19.835599+00 f t Invitado Amar invitado-1751324180120@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2427 +3688 2025-06-30 23:57:02.814693+00 2025-06-30 23:57:02.814702+00 f t Agustina Carballo agustinacarballoherrera@gmail.com +5492235768155 \N Juana manso 590 Piso 23 A 1 torre norte \N FEMALE 1998-01-01 -34.6044463 -58.3632556 2 1254 \N acarballo +3689 2025-06-30 23:58:04.062365+00 2025-06-30 23:58:04.062375+00 f t Invitado Amar invitado-1751327883538@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-2428 +3690 2025-06-30 23:58:55.4617+00 2025-06-30 23:58:55.461709+00 f t Invitado Amar invitado-1751327935356@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-2429 +3691 2025-07-01 00:01:08.584394+00 2025-07-01 00:01:08.584405+00 f t Invitado Amar invitado-1751328068106@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-2430 +13312 2025-11-14 17:50:06.796667+00 2025-11-14 17:50:06.796676+00 f t Invitado Amar invitado-1763142606625@example.com 55555555 \N \N \N \N \N 9 \N \N \N +3693 2025-07-01 00:08:43.353918+00 2025-07-01 00:08:43.353934+00 f t Melisa echazarreta 0000000@gmail.com +5491150604671Emai \N ballivian 3354 dto1 \N FEMALE 1985-03-27 -34.5850214 -58.4870799 61 1255 \N mechazarreta +3694 2025-07-01 00:16:37.974195+00 2025-07-01 00:16:37.974207+00 f t Invitado Amar invitado-1751328997204@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2431 +3695 2025-07-01 00:18:47.335731+00 2025-07-01 00:18:47.335742+00 f t Invitado Amar invitado-1751329127178@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2432 +3696 2025-07-01 00:29:33.362546+00 2025-07-01 00:29:33.362556+00 f t Invitado Amar invitado-1751329772704@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-2433 +3697 2025-07-01 00:33:37.109018+00 2025-07-01 00:33:37.109027+00 f t Lucila Comba lulacomba@gmail.com +541138704094 \N Santa fe 981 4d \N \N -34.6557694 -58.6223732 55 1256 \N lcomba +3698 2025-07-01 00:52:43.206406+00 2025-07-01 00:52:43.206416+00 f t Invitado Amar invitado-1751331008489@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-2434 +3699 2025-07-01 01:21:37.722806+00 2025-07-01 01:21:37.722818+00 f t Invitado Amar invitado-1751332897246@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2435 +3700 2025-07-01 01:32:29.912493+00 2025-07-01 01:32:29.912506+00 f t Invitado Amar invitado-1751333549528@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2436 +3701 2025-07-01 02:10:50.09117+00 2025-07-01 02:10:50.091181+00 f t Invitado Amar invitado-1751335849339@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-2437 +3702 2025-07-01 02:13:19.485018+00 2025-07-01 02:13:19.485028+00 f t Invitado Amar invitado-1751335999253@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-2438 +3703 2025-07-01 02:40:59.655299+00 2025-07-01 02:40:59.655309+00 f t Invitado Amar invitado-1751337659126@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2439 +3704 2025-07-01 03:07:03.628701+00 2025-07-01 03:07:03.62871+00 f t Invitado Amar invitado-1751339222999@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2440 +3705 2025-07-01 09:35:53.280315+00 2025-07-01 09:35:53.280326+00 f t Invitado Amar invitado-1751362551873@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-2441 +3706 2025-07-01 09:57:22.709404+00 2025-07-01 09:57:22.709418+00 f t Invitado Amar invitado-1751363842229@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2442 +3707 2025-07-01 11:35:29.605231+00 2025-07-01 11:35:29.605241+00 f t Invitado Amar invitado-1751369729130@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2443 +3708 2025-07-01 12:03:18.842653+00 2025-07-01 12:03:18.842663+00 f t Invitado Amar invitado-1751371397824@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2444 +3709 2025-07-01 12:36:23.977429+00 2025-07-01 12:36:23.977438+00 f t Invitado Amar invitado-1751373383231@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2445 +3710 2025-07-01 12:39:46.261212+00 2025-07-01 12:39:46.261222+00 f t Rocio Suarez Galan rsuarezgalan@hotmail.com +541156430243 \N 25 de mayo 758 PB D \N \N \N -34.5989907 -58.3714987 13 1259 \N rsuarezgalan +13533 2025-11-17 19:25:15.228857+00 2025-11-17 19:25:15.228869+00 f t Invitado Amar invitado-1763407514489@example.com 55555555 \N \N \N \N \N 91 \N \N \N +3711 2025-07-01 12:48:53.084509+00 2025-07-01 12:48:53.084521+00 f t Invitado Amar invitado-1751374132891@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2446 +3712 2025-07-01 12:50:27.659605+00 2025-07-01 12:50:27.659615+00 f t Alejandra Vietri alevietri@hotmail.com +541153222782 \N Franklin 2062 1 A \N \N -34.6162521 -58.4633856 4 1258 \N avietri +3713 2025-07-01 13:06:01.180764+00 2025-07-01 13:06:01.180778+00 f t Invitado Amar invitado-1751375160495@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-2447 +3714 2025-07-01 13:08:07.997581+00 2025-07-01 13:08:07.997592+00 f t Invitado Amar invitado-1751375287539@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2448 +3715 2025-07-01 13:30:57.215096+00 2025-07-01 13:30:57.215105+00 f t Invitado Amar invitado-1751376656059@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2449 +3716 2025-07-01 13:33:49.761693+00 2025-07-01 13:33:49.761702+00 f t Invitado Amar invitado-1751376828764@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2450 +3717 2025-07-01 13:41:42.874621+00 2025-07-01 13:41:42.874633+00 f t Invitado Amar invitado-1751377302847@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-2451 +3718 2025-07-01 13:58:43.014435+00 2025-07-01 13:58:43.014447+00 f t Invitado Amar invitado-1751378322343@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2452 +3719 2025-07-01 13:59:34.350129+00 2025-07-01 13:59:34.350138+00 f t Mirta Carola marquezabogados@hotmail.com +5491141837776 \N Av juan b justo 2025 7 piso \N \N \N \N \N 112 1277 \N mcarola +3720 2025-07-01 13:59:40.566015+00 2025-07-01 13:59:40.566024+00 f t Invitado Amar invitado-1751378379909@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-2453 +3721 2025-07-01 14:12:01.9052+00 2025-07-01 14:12:01.905209+00 f t Invitado Amar invitado-1751379121022@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2454 +3722 2025-07-01 14:12:58.786727+00 2025-07-01 14:12:58.786738+00 f t Invitado Amar invitado-1751379178840@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2455 +3723 2025-07-01 14:31:52.366616+00 2025-07-01 14:31:52.366626+00 f t Invitado Amar invitado-1751380311835@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-2456 +3724 2025-07-01 14:59:56.517588+00 2025-07-01 14:59:56.517597+00 f t Myriam Ferreyra miri@hotmail.com 91159005813 \N Lavalle 1536 dpt 3 entre parana y Montevideo \N FEMALE \N -34.6030569 -58.3885298 13 1260 \N mferreyra +3725 2025-07-01 15:02:26.06507+00 2025-07-01 15:02:26.065079+00 f t Invitado Amar invitado-1751382144325@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2457 +3726 2025-07-01 15:03:11.907992+00 2025-07-01 15:03:11.908003+00 f t Invitado Amar invitado-1751382191539@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-2458 +3727 2025-07-01 15:07:15.122385+00 2025-07-01 15:07:15.122395+00 f t Invitado Amar invitado-1751382433946@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2459 +3728 2025-07-01 15:14:55.553616+00 2025-07-01 15:14:55.553624+00 f t Invitado Amar invitado-1751382894926@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-2460 +3729 2025-07-01 15:14:56.521914+00 2025-07-01 15:14:56.521922+00 f t Maria kaufmann marsika70@hotmail.com 5491123090990 \N Salguero 7631 1C \N FEMALE \N -34.6066501 -58.4199215 23 1261 \N mkaufmann +3730 2025-07-01 15:31:10.571102+00 2025-07-01 15:31:10.571111+00 f t Invitado Amar invitado-1751383869936@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2461 +3731 2025-07-01 15:33:32.555526+00 2025-07-01 15:33:32.555535+00 f t Invitado Amar invitado-1751384011829@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-2462 +3732 2025-07-01 15:59:05.237753+00 2025-07-01 15:59:05.237765+00 f t Invitado Amar invitado-1751385544855@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2463 +3733 2025-07-01 16:06:54.762333+00 2025-07-01 16:06:54.762345+00 f t Invitado Amar invitado-1751386014016@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-2464 +3734 2025-07-01 16:37:45.37493+00 2025-07-01 16:37:45.374942+00 f t Invitado Amar invitado-1751387864749@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-2465 +3735 2025-07-01 16:38:26.858827+00 2025-07-01 16:38:26.858835+00 f t Cristian Zabala piccolinoycarlitos@gmail.com 5491163509414 \N Paraná 278 2B \N MALE 1974-07-18 -34.6056598 -58.3879476 13 1262 \N czabala +3736 2025-07-01 16:40:36.390521+00 2025-07-01 16:40:36.390533+00 f t Invitado Amar invitado-1751388035631@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2466 +3737 2025-07-01 17:04:14.565888+00 2025-07-01 17:04:14.5659+00 f t Invitado Amar invitado-1751389452686@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2467 +3738 2025-07-01 17:05:15.193199+00 2025-07-01 17:05:15.193208+00 f t Invitado Amar invitado-1751389514412@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2468 +3739 2025-07-01 17:41:55.641389+00 2025-07-01 17:41:55.641398+00 f t Invitado Amar invitado-1751391714197@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-2469 +3740 2025-07-01 17:45:33.017597+00 2025-07-01 17:45:33.017606+00 f t Federico Caserotto federicocaserotto@gmail.com +541127683873 \N La blanqueada 5201 Esquina \N \N \N -34.5882489 -58.5159531 21 1269 \N fcaserotto +3741 2025-07-01 18:08:40.120558+00 2025-07-01 18:08:40.120567+00 f t Invitado Amar invitado-1751393317412@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2470 +3742 2025-07-01 19:20:59.777934+00 2025-07-01 19:20:59.777942+00 f t Invitado Amar invitado-1751397659049@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2471 +3743 2025-07-01 20:40:19.532642+00 2025-07-01 20:40:19.532655+00 f t Invitado Amar invitado-1751402418113@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2472 +3744 2025-07-01 20:48:50.91549+00 2025-07-01 20:48:50.915498+00 f t Invitado Amar invitado-1751402932502@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2473 +3745 2025-07-01 21:16:33.383261+00 2025-07-01 21:16:33.383271+00 f t Enrique Chiapello ferzabal@gmail.com +5491158154613 \N Posadas 1284 piso 4B \N MALE 1923-09-18 -34.5890164 -58.3846624 37 1263 \N echiapello +3746 2025-07-01 21:20:33.713769+00 2025-07-01 21:20:33.713779+00 f t Invitado Amar invitado-1751404833243@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-2474 +3747 2025-07-01 21:53:00.045729+00 2025-07-01 21:53:00.045737+00 f t Invitado Amar invitado-1751406778798@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2475 +3748 2025-07-01 22:09:16.722786+00 2025-07-01 22:09:16.722794+00 f t Invitado Amar invitado-1751407755968@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2476 +3749 2025-07-01 22:25:17.009557+00 2025-07-01 22:25:17.009569+00 f t Invitado Amar invitado-1751408716190@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-2477 +3750 2025-07-01 23:07:13.737796+00 2025-07-01 23:07:13.73781+00 f t Invitado Amar invitado-1751411233317@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2478 +3751 2025-07-01 23:09:14.850396+00 2025-07-01 23:09:14.850409+00 f t Invitado Amar invitado-1751411354675@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2479 +3752 2025-07-01 23:13:27.231091+00 2025-07-01 23:13:27.2311+00 f t Invitado Amar invitado-1751411607028@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2480 +3753 2025-07-01 23:50:24.699752+00 2025-07-01 23:50:24.699761+00 f t Invitado Amar invitado-1751413824125@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-2481 +3754 2025-07-02 00:11:20.29484+00 2025-07-02 00:11:20.294848+00 f t Mariana Almada male434@hotmail.com +541130997146 \N General Paz 170 \N \N \N \N 113 \N \N malmada +3755 2025-07-02 00:12:36.384+00 2025-07-02 00:12:36.38401+00 f t Invitado Amar invitado-1751415155301@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-2482 +3756 2025-07-02 00:20:23.978743+00 2025-07-02 00:20:23.978752+00 f t Invitado Amar invitado-1751415623027@example.com 55555555 \N \N \N \N \N 92 \N \N iamar-2483 +3757 2025-07-02 00:22:44.774949+00 2025-07-02 00:22:44.774956+00 f t Alejandro Cardozo alejandrocardozo@icentralmarket.com.ar +5491130510760 \N Buenos Aires 4447 \N \N MALE 1978-05-27 \N \N 46 1266 \N acardozo +3758 2025-07-02 00:33:45.090607+00 2025-07-02 00:33:45.090616+00 f t Invitado Amar invitado-1751416424232@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2484 +3759 2025-07-02 01:03:24.702352+00 2025-07-02 01:03:24.702361+00 f t Invitado Amar invitado-1751418204255@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2485 +3760 2025-07-02 01:24:35.858324+00 2025-07-02 01:24:35.858333+00 f t Invitado Amar invitado-1751419475378@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2486 +3761 2025-07-02 01:58:29.473386+00 2025-07-02 01:58:29.473396+00 f t Invitado Amar invitado-1751421509077@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-2487 +3762 2025-07-02 02:08:34.671405+00 2025-07-02 02:08:34.671416+00 f t Invitado Amar invitado-1751422114334@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-2488 +3763 2025-07-02 02:12:25.69007+00 2025-07-02 02:12:25.690079+00 f t Invitado Amar invitado-1751422344074@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-2489 +3764 2025-07-02 02:22:16.705616+00 2025-07-02 02:22:16.705626+00 f t Invitado Amar invitado-1751422936206@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2490 +3765 2025-07-02 02:54:43.073524+00 2025-07-02 02:54:43.073535+00 f t Invitado Amar invitado-1751424882331@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-2491 +3766 2025-07-02 02:59:23.39723+00 2025-07-02 02:59:23.397272+00 f t Invitado Amar invitado-1751425162718@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2492 +3767 2025-07-02 03:25:59.722265+00 2025-07-02 03:25:59.722278+00 f t Invitado Amar invitado-1751426759218@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2493 +3768 2025-07-02 03:44:20.295253+00 2025-07-02 03:44:20.295262+00 f t Invitado Amar invitado-1751427859377@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-2494 +3769 2025-07-02 04:32:58.299235+00 2025-07-02 04:32:58.299247+00 f t Invitado Amar invitado-1751430777252@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2495 +3770 2025-07-02 11:13:39.846242+00 2025-07-02 11:13:39.846253+00 f t Invitado Amar invitado-1751454819825@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2496 +3771 2025-07-02 11:19:21.885392+00 2025-07-02 11:19:21.885402+00 f t Invitado Amar invitado-1751455161542@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2497 +3772 2025-07-02 11:24:54.293747+00 2025-07-02 11:24:54.293756+00 f t Invitado Amar invitado-1751455493951@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2498 +3773 2025-07-02 12:42:50.019095+00 2025-07-02 12:42:50.019105+00 f t Invitado Amar invitado-1751460169092@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2499 +3774 2025-07-02 12:48:53.609375+00 2025-07-02 12:48:53.609384+00 f t Invitado Amar invitado-1751460533260@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2500 +3775 2025-07-02 13:08:59.478732+00 2025-07-02 13:08:59.478744+00 f t Invitado Amar invitado-1751461738910@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2501 +3776 2025-07-02 13:15:17.225952+00 2025-07-02 13:15:17.225961+00 f t Invitado Amar invitado-1751462115780@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-2502 +3777 2025-07-02 13:18:13.5154+00 2025-07-02 13:18:13.515411+00 f t Karina Estefania Dominguez Claro karina.st.dominguez@gmail.com 5491139568671 \N Av. Nazca 2547 dpto 3 \N FEMALE \N -34.606267 -58.4855311 17 1265 \N kdominguezclaro +3778 2025-07-02 13:56:31.709999+00 2025-07-02 13:56:31.710011+00 f t Invitado Amar invitado-1751464592509@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2503 +3779 2025-07-02 14:00:55.32666+00 2025-07-02 14:00:55.326672+00 f t Invitado Amar invitado-1751464854664@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-2504 +3780 2025-07-02 15:46:30.412935+00 2025-07-02 15:46:30.412945+00 f t Invitado Amar invitado-1751471189838@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2505 +3781 2025-07-02 16:01:45.285703+00 2025-07-02 16:01:45.285715+00 f t Invitado Amar invitado-1751472105413@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-2506 +3782 2025-07-02 16:54:05.173461+00 2025-07-02 16:54:05.17347+00 f t Emiliano Chamorro emilianoezequiel.chamorro@gmail.com 1151810611 \N Viel 574 \N \N MALE \N -34.6237747 -58.4318042 14 1267 \N echamorro +3783 2025-07-02 17:09:33.523495+00 2025-07-02 17:09:33.523503+00 f t Invitado Amar invitado-1751476174833@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2507 +3784 2025-07-02 17:11:38.488762+00 2025-07-02 17:11:38.488771+00 f t Johana Martinez johanamartinez904@gmail.com +5491163693624 \N Boyaca 929 1 \N \N \N -34.6169743 -58.4633854 4 \N \N jmartinez-2 +3785 2025-07-02 17:33:12.877916+00 2025-07-02 17:33:12.877928+00 f t Invitado Amar invitado-1751477592461@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2508 +3786 2025-07-02 18:02:10.09561+00 2025-07-02 18:02:10.095619+00 f t Invitado Amar invitado-1751479329504@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-2509 +3787 2025-07-02 18:21:03.786896+00 2025-07-02 18:21:03.786908+00 f t Invitado Amar invitado-1751480463130@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2510 +3788 2025-07-02 18:47:48.953175+00 2025-07-02 18:47:48.953184+00 f t Invitado Amar invitado-1751482068091@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-2511 +3789 2025-07-02 19:51:12.828199+00 2025-07-02 19:51:12.828206+00 f t Debora Canfora debo_canfora@hotmail.com +5491141964169 \N crisostomo alvarez 3845 \N \N FEMALE 1978-01-19 -34.6542739 -58.467393 5 1270 \N dcanfora +3790 2025-07-02 19:51:35.186144+00 2025-07-02 19:51:35.186153+00 f t Invitado Amar invitado-1751485978797@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2512 +3791 2025-07-02 19:54:45.896008+00 2025-07-02 19:54:45.896016+00 f t Invitado Amar invitado-1751486169830@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2513 +3792 2025-07-02 19:57:57.107088+00 2025-07-02 19:57:57.107102+00 f t Invitado Amar invitado-1751486360658@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2514 +3793 2025-07-02 20:10:27.460048+00 2025-07-02 20:10:27.460056+00 f t Invitado Amar invitado-1751487027033@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2515 +3794 2025-07-02 20:33:22.89548+00 2025-07-02 20:33:22.895489+00 f t Invitado Amar invitado-1751488404290@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2516 +3795 2025-07-02 20:33:40.327798+00 2025-07-02 20:33:40.327808+00 f t Emiliano Simoes emilianosimoes@gmail.com +5491136324074 \N Av. Hipolito Yrigoyen 4329 1A \N \N -34.6146407 -58.4209742 23 \N \N esimoes +3796 2025-07-02 20:35:08.099473+00 2025-07-02 20:35:08.099486+00 f t Invitado Amar invitado-1751488507869@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2517 +3797 2025-07-02 20:43:14.680924+00 2025-07-02 20:43:14.680933+00 f t Invitado Amar invitado-1751488994264@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-2518 +3798 2025-07-02 20:52:44.612693+00 2025-07-02 20:52:44.612704+00 f t Invitado Amar invitado-1751489563962@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2519 +3799 2025-07-02 21:05:38.521138+00 2025-07-02 21:05:38.521147+00 f t Invitado Amar invitado-1751490337010@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-2520 +3800 2025-07-02 21:59:01.220822+00 2025-07-02 21:59:01.220833+00 f t Invitado Amar invitado-1751493539248@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2521 +3801 2025-07-02 22:08:05.057309+00 2025-07-02 22:08:05.057317+00 f t Invitado Amar invitado-1751494084659@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2522 +3802 2025-07-02 22:08:29.987759+00 2025-07-02 22:08:29.98777+00 f t Invitado Amar invitado-1751494109628@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-2523 +3803 2025-07-02 23:12:57.343208+00 2025-07-02 23:12:57.343219+00 f t María Herrera maru_herrera_76@yahoo.com.ar 🇦🇷+5491153456837 \N Victor Martinez 205 (cp1406) \N FEMALE \N -34.6240081 -58.4449606 14 1273 \N mherrera +3804 2025-07-02 23:15:43.101991+00 2025-07-02 23:15:43.102+00 f t Virginia Davalos virdavalos@gmail.com +5491140631679 \N Paraguay 419 piso cuarto depto 41 \N FEMALE 1964-02-15 -34.5973084 -58.3732995 37 1274 \N vdavalos +3805 2025-07-02 23:35:05.218465+00 2025-07-02 23:35:05.218476+00 f t Rocio Izuel roizuel@gmail.com 🇦🇷+5491169993901 \N Malvinas Argentinas 99 1er piso depto 5 \N FEMALE 2001-05-09 -34.6258157 -58.4515957 14 1275 \N rizuel +3806 2025-07-02 23:48:41.947109+00 2025-07-02 23:48:41.947118+00 f t Invitado Amar invitado-1751500121538@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2524 +3807 2025-07-03 00:50:41.26983+00 2025-07-03 00:50:41.26984+00 f t Invitado Amar invitado-1751503840846@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2525 +3808 2025-07-03 01:08:23.282777+00 2025-07-03 01:08:23.282788+00 f t Invitado Amar invitado-1751504902577@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2526 +3809 2025-07-03 01:12:01.06852+00 2025-07-03 01:12:01.068532+00 f t Invitado Amar invitado-1751505120729@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2527 +3810 2025-07-03 01:16:21.980035+00 2025-07-03 01:16:21.980048+00 f t Invitado Amar invitado-1751505381246@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2528 +3811 2025-07-03 01:51:37.451391+00 2025-07-03 01:51:37.451399+00 f t Invitado Amar invitado-1751507497160@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-2529 +3812 2025-07-03 02:19:17.311452+00 2025-07-03 02:19:17.311464+00 f t Gabriela Celada gcelada22@gmail.com +541134173481 \N Los incas 4496 3d \N \N -34.5812847 -58.4740746 29 \N \N gcelada +3813 2025-07-03 02:26:49.321533+00 2025-07-03 02:26:49.321541+00 f t Invitado Amar invitado-1751509608779@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-2530 +3814 2025-07-03 02:42:56.222715+00 2025-07-03 02:42:56.222729+00 f t Invitado Amar invitado-1751510576064@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-2531 +3815 2025-07-03 02:56:52.153253+00 2025-07-03 02:56:52.153261+00 f t Invitado Amar invitado-1751511411360@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2532 +3816 2025-07-03 02:58:51.013918+00 2025-07-03 02:58:51.013927+00 f t Diego Mihanovich Diegomihanovich@gmail.com +5491149382409 \N Galván 3063 4to 7mo \N \N -34.5672882 -58.4870303 29 \N \N dmihanovich +3817 2025-07-03 03:07:40.642758+00 2025-07-03 03:07:40.642767+00 f t Invitado Amar invitado-1751512060425@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2533 +3818 2025-07-03 06:33:33.932993+00 2025-07-03 06:33:33.933002+00 f t Invitado Amar invitado-1751524413432@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2534 +3819 2025-07-03 11:34:16.544753+00 2025-07-03 11:34:16.544761+00 f t Invitado Amar invitado-1751542456101@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-2535 +3820 2025-07-03 12:53:17.745988+00 2025-07-03 12:53:17.745999+00 f t Jeronimo Rodrigo jero.rodrigo10@gmail.com +5491138225296 \N Avenida Nazca 3188 7 A \N \N \N -34.5994392 -58.4914422 17 1276 \N jrodrigo +3821 2025-07-03 13:36:55.298675+00 2025-07-03 13:36:55.298684+00 f t Invitado Amar invitado-1751549814786@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-2536 +3822 2025-07-03 13:38:58.207173+00 2025-07-03 13:38:58.207182+00 f t Invitado Amar invitado-1751549938338@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2537 +3823 2025-07-03 13:40:24.386339+00 2025-07-03 13:40:24.386347+00 f t Invitado Amar invitado-1751550024924@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-2538 +3824 2025-07-03 13:41:20.011547+00 2025-07-03 13:41:20.01156+00 f t Invitado Amar invitado-1751550079178@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2539 +3825 2025-07-03 13:42:39.717991+00 2025-07-03 13:42:39.718002+00 f t Invitado Amar invitado-1751550160082@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-2540 +3826 2025-07-03 14:21:19.331614+00 2025-07-03 14:21:19.331622+00 f t Invitado Amar invitado-1751552477314@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2541 +3827 2025-07-03 15:09:34.145817+00 2025-07-03 15:09:34.145824+00 f t Invitado Amar invitado-1751555373050@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-2542 +3828 2025-07-03 15:23:16.798029+00 2025-07-03 15:23:16.798037+00 f t Invitado Amar invitado-1751556195787@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-2543 +3829 2025-07-03 15:24:05.732519+00 2025-07-03 15:24:05.732531+00 f t Invitado Amar invitado-1751556246877@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2544 +3830 2025-07-03 15:29:21.089691+00 2025-07-03 15:29:21.089702+00 f t Invitado Amar invitado-1751556560625@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-2545 +3831 2025-07-03 15:57:47.773961+00 2025-07-03 15:57:47.773969+00 f t Invitado Amar invitado-1751558267349@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2546 +3832 2025-07-03 15:59:06.158219+00 2025-07-03 15:59:06.158228+00 f t Raphael Espinoza espinozaedu1998@gmail.com +541172071998 \N Jean Juárez 4590 \N \N 25.543608 -100.1387407 40 \N \N respinoza +3833 2025-07-03 15:59:22.131106+00 2025-07-03 15:59:22.131115+00 f t Invitado Amar invitado-1751558361964@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-2547 +3834 2025-07-03 16:08:08.187035+00 2025-07-03 16:08:08.187045+00 f t Invitado Amar invitado-1751558887490@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2548 +3835 2025-07-03 16:09:30.90449+00 2025-07-03 16:09:30.904501+00 f t Invitado Amar invitado-1751558969818@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2549 +3836 2025-07-03 16:12:26.584445+00 2025-07-03 16:12:26.584453+00 f t Invitado Amar invitado-1751559145907@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2550 +3837 2025-07-03 16:20:57.05097+00 2025-07-03 16:20:57.050979+00 f t Invitado Amar invitado-1751559656271@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2551 +3838 2025-07-03 16:31:21.699197+00 2025-07-03 16:31:21.699206+00 f t Invitado Amar invitado-1751560281156@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-2552 +3839 2025-07-03 16:31:30.337352+00 2025-07-03 16:31:30.337361+00 f t Invitado Amar invitado-1751560289353@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-2553 +3840 2025-07-03 16:33:54.138239+00 2025-07-03 16:33:54.138246+00 f t Invitado Amar invitado-1751560482235@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-2554 +3841 2025-07-03 16:44:45.996373+00 2025-07-03 16:44:45.996381+00 f t Invitado Amar invitado-1751561084562@example.com 55555555 \N \N \N \N \N 7 \N \N iamar-2555 +3842 2025-07-03 17:40:22.28764+00 2025-07-03 17:40:22.287649+00 f t Invitado Amar invitado-1751564421805@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2556 +3843 2025-07-03 17:41:32.31198+00 2025-07-03 17:41:32.311992+00 f t Invitado Amar invitado-1751564492149@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2557 +3844 2025-07-03 17:44:22.398693+00 2025-07-03 17:44:22.398703+00 f t Invitado Amar invitado-1751564662240@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2558 +3845 2025-07-03 17:49:02.7233+00 2025-07-03 17:49:02.723314+00 f t Alicia Battini alicia.battini@gmail.com +541168872328 \N Marcos sastre 3734 \N \N -34.6089634 -58.4973888 17 \N \N abattini +3846 2025-07-03 17:56:14.024506+00 2025-07-03 17:56:14.024515+00 f t Invitado Amar invitado-1751565373636@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2559 +3847 2025-07-03 18:00:13.086028+00 2025-07-03 18:00:13.086041+00 f t Invitado Amar invitado-1751565612646@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2560 +3848 2025-07-03 18:06:45.023434+00 2025-07-03 18:06:45.023443+00 f t Leandro Pomeraniec leandropomeraniec@gmail.com +541141611521 \N Maure 2257 6D \N \N -34.5703388 -58.4406166 1 1279 \N lpomeraniec +3849 2025-07-03 18:07:38.770345+00 2025-07-03 18:07:38.770356+00 f t Barbara Mora wicce81@hotmail.com +541151411141 \N Hernán wineberg 4041 PB \N \N \N -34.4968562 -58.4935212 69 1280 \N bmora +3850 2025-07-03 18:28:32.550407+00 2025-07-03 18:28:32.550415+00 f t Invitado Amar invitado-1751567311440@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-2561 +3851 2025-07-03 18:28:55.688683+00 2025-07-03 18:28:55.688692+00 f t Invitado Amar invitado-1751567338071@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2562 +3852 2025-07-03 18:29:25.85625+00 2025-07-03 18:29:25.856258+00 f t Invitado Amar invitado-1751567365074@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-2563 +3853 2025-07-03 18:29:40.726345+00 2025-07-03 18:29:40.726356+00 f t Invitado Amar invitado-1751567383361@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2564 +3854 2025-07-03 18:29:53.53485+00 2025-07-03 18:29:53.534861+00 f t Invitado Amar invitado-1751567392740@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-2565 +3855 2025-07-03 18:31:50.408651+00 2025-07-03 18:31:50.40866+00 f t Invitado Amar invitado-1751567513039@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2566 +3856 2025-07-03 18:37:12.285658+00 2025-07-03 18:37:12.285669+00 f t Invitado Amar invitado-1751567831622@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2567 +3857 2025-07-03 18:47:18.642474+00 2025-07-03 18:47:18.642484+00 f t Invitado Amar invitado-1751568438466@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2568 +3858 2025-07-03 18:49:05.787338+00 2025-07-03 18:49:05.787351+00 f t Invitado Amar invitado-1751568545603@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2569 +3859 2025-07-03 18:58:33.718405+00 2025-07-03 18:58:33.718413+00 f t Invitado Amar invitado-1751569113307@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2570 +3860 2025-07-03 19:16:57.109135+00 2025-07-03 19:16:57.109147+00 f t Invitado Amar invitado-1751570216517@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-2571 +3861 2025-07-03 19:43:01.834128+00 2025-07-03 19:43:01.834135+00 f t Eleonora Bruno eleonora.bruno@gmail.com 1151113040 \N Yerbal 450 9C \N FEMALE 2025-10-08 -34.6174192 -58.437663 14 1281 \N ebruno +3862 2025-07-03 19:44:38.618281+00 2025-07-03 19:44:38.618293+00 f t Invitado Amar invitado-1751571878498@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2572 +3863 2025-07-03 19:45:47.794429+00 2025-07-03 19:45:47.794441+00 f t Invitado Amar invitado-1751571947379@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-2573 +3864 2025-07-03 19:45:58.802006+00 2025-07-03 19:45:58.802015+00 f t Invitado Amar invitado-1751571959006@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2574 +3865 2025-07-03 19:50:04.540047+00 2025-07-03 19:50:04.540062+00 f t Invitado Amar invitado-1751572204002@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-2575 +13313 2025-11-14 18:00:31.377225+00 2025-11-14 18:00:31.377234+00 f t Invitado Amar invitado-1763143229418@example.com 55555555 \N \N \N \N \N 13 \N \N \N +3867 2025-07-03 20:02:19.402106+00 2025-07-03 20:02:19.402118+00 f t Invitado Amar invitado-1751572823365@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-2576 +3868 2025-07-03 20:39:37.821131+00 2025-07-03 20:39:37.821141+00 f t Gabriela Palopoli gabrielapalopoli22@gmail.com 91168632746 \N Aldecoa 718 \N \N FEMALE \N -34.6629873 -58.3812934 73 1283 \N gpalopoli +3869 2025-07-03 21:38:18.360682+00 2025-07-03 21:38:18.360694+00 f t Invitado Amar invitado-1751578698028@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2577 +3870 2025-07-03 21:44:13.318066+00 2025-07-03 21:44:13.318076+00 f t Invitado Amar invitado-1751579052693@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-2578 +3871 2025-07-03 21:45:23.336505+00 2025-07-03 21:45:23.336514+00 f t Invitado Amar invitado-1751579122310@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-2579 +3872 2025-07-03 21:49:21.380111+00 2025-07-03 21:49:21.380124+00 f t Invitado Amar invitado-1751579360540@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2580 +3873 2025-07-03 22:41:36.062256+00 2025-07-03 22:41:36.062265+00 f t Invitado Amar invitado-1751582495053@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2581 +3874 2025-07-03 22:52:22.41093+00 2025-07-03 22:52:22.410939+00 f t Invitado Amar invitado-1751583141446@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2582 +3875 2025-07-03 23:55:34.675931+00 2025-07-03 23:55:34.67594+00 f t Invitado Amar invitado-1751586934482@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2583 +3876 2025-07-04 00:17:27.367524+00 2025-07-04 00:17:27.367532+00 f t Invitado Amar invitado-1751588246933@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-2584 +3877 2025-07-04 00:24:31.082804+00 2025-07-04 00:24:31.082813+00 f t Invitado Amar invitado-1751588670892@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-2585 +3878 2025-07-04 00:27:50.109476+00 2025-07-04 00:27:50.109485+00 f t Invitado Amar invitado-1751588870133@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2586 +3879 2025-07-04 00:52:44.525576+00 2025-07-04 00:52:44.525583+00 f t Invitado Amar invitado-1751590364508@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-2587 +3880 2025-07-04 00:53:09.509568+00 2025-07-04 00:53:09.509577+00 f t Invitado Amar invitado-1751590390028@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-2588 +3881 2025-07-04 01:43:52.219243+00 2025-07-04 01:43:52.219254+00 f t Invitado Amar invitado-1751593431565@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-2589 +3882 2025-07-04 03:39:27.972714+00 2025-07-04 03:39:27.972725+00 f t Invitado Amar invitado-1751600367578@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2590 +3883 2025-07-04 04:07:47.875733+00 2025-07-04 04:07:47.875742+00 f t Invitado Amar invitado-1751602066830@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2591 +3884 2025-07-04 04:23:49.548484+00 2025-07-04 04:23:49.548493+00 f t Invitado Amar invitado-1751603029024@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2592 +3885 2025-07-04 07:35:43.282409+00 2025-07-04 07:35:43.282419+00 f t Invitado Amar invitado-1751614542490@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-2593 +3886 2025-07-04 09:58:42.136158+00 2025-07-04 09:58:42.136167+00 f t Invitado Amar invitado-1751623121470@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-2594 +3887 2025-07-04 10:38:35.130511+00 2025-07-04 10:38:35.13052+00 f t Agostina Chiodetti tinachiodetti@gmail.com +541156236625 \N Melian 3001 1 b \N \N \N -34.560644 -58.475436 45 1299 \N achiodetti +3888 2025-07-04 11:00:44.269922+00 2025-07-04 11:00:44.269937+00 f t Invitado Amar invitado-1751626844705@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-2595 +3889 2025-07-04 11:15:56.707801+00 2025-07-04 11:15:56.70781+00 f t Invitado Amar invitado-1751627756343@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-2596 +3890 2025-07-04 11:40:22.007727+00 2025-07-04 11:40:22.007738+00 f t Invitado Amar invitado-1751629220194@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-2597 +3891 2025-07-04 12:18:29.378671+00 2025-07-04 12:18:29.378679+00 f t Invitado Amar invitado-1751631509220@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2598 +3892 2025-07-04 12:21:10.657316+00 2025-07-04 12:21:10.657328+00 f t Invitado Amar invitado-1751631669649@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2599 +3893 2025-07-04 12:22:06.05584+00 2025-07-04 12:22:06.05585+00 f t Invitado Amar invitado-1751631723084@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2600 +3894 2025-07-04 12:28:33.742866+00 2025-07-04 12:28:33.742879+00 f t Invitado Amar invitado-1751632114672@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-2601 +3895 2025-07-04 13:16:51.614026+00 2025-07-04 13:16:51.614036+00 f t Invitado Amar invitado-1751635010080@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2602 +3896 2025-07-04 13:25:15.965395+00 2025-07-04 13:25:15.965405+00 f t Invitado Amar invitado-1751635515908@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-2603 +3897 2025-07-04 13:34:14.020025+00 2025-07-04 13:34:14.020037+00 f t Invitado Amar invitado-1751636052728@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2604 +3898 2025-07-04 14:40:27.030023+00 2025-07-04 14:40:27.030032+00 f t Invitado Amar invitado-1751640025254@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2605 +3899 2025-07-04 14:47:37.414398+00 2025-07-04 14:47:37.414407+00 f t Invitado Amar invitado-1751640457075@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2606 +3900 2025-07-04 15:07:01.606863+00 2025-07-04 15:07:01.606876+00 f t Invitado Amar invitado-1751641621006@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-2607 +3901 2025-07-04 15:28:56.373506+00 2025-07-04 15:28:56.373513+00 f t Alejandra Brandan lasalasdelangel2016@hotmail.com 5491151017336 \N Puerto argentino 667 Morazán y filardi \N FEMALE \N -32.9992378 -58.5254477 72 1286 \N abrandan +3902 2025-07-04 15:44:57.991267+00 2025-07-04 15:44:57.991276+00 f t Invitado Amar invitado-1751643896372@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2608 +3903 2025-07-04 15:52:30.100806+00 2025-07-04 15:52:30.100816+00 f t Invitado Amar invitado-1751644349357@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2609 +3904 2025-07-04 16:08:03.450536+00 2025-07-04 16:08:03.45055+00 f t Invitado Amar invitado-1751645282987@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-2610 +3906 2025-07-04 16:28:33.015095+00 2025-07-04 16:28:33.015103+00 f t Invitado Amar invitado-1751646511550@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2611 +3907 2025-07-04 17:00:33.527643+00 2025-07-04 17:00:33.527658+00 f t Invitado Amar invitado-1751648431993@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-2612 +3908 2025-07-04 17:03:36.169255+00 2025-07-04 17:03:36.169266+00 f t Invitado Amar invitado-1751648615327@example.com 55555555 \N \N \N \N \N 69 \N \N iamar-2613 +3909 2025-07-04 17:04:37.650424+00 2025-07-04 17:04:37.650434+00 f t Invitado Amar invitado-1751648677323@example.com 55555555 \N \N \N \N \N 69 \N \N iamar-2614 +3910 2025-07-04 17:19:58.873929+00 2025-07-04 17:19:58.873938+00 f t Invitado Amar invitado-1751649598577@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2615 +13534 2025-11-17 19:36:53.626985+00 2025-11-17 19:36:53.626996+00 f t Invitado Amar invitado-1763408212972@example.com 55555555 \N \N \N \N \N 14 \N \N \N +3911 2025-07-04 17:36:19.911911+00 2025-07-04 17:36:19.91192+00 f t Patricia Andrea Briola patribriola2@gmail.com 91122438948 \N Casimiro Recuero 3733 PB4 \N FEMALE \N -34.647214 -58.4663848 16 1288 \N pbriola +3912 2025-07-04 18:13:44.71542+00 2025-07-04 18:13:44.715429+00 f t Invitado Amar invitado-1751652823421@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2616 +3913 2025-07-04 18:17:26.251154+00 2025-07-04 18:17:26.251163+00 f t Invitado Amar invitado-1751653045251@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2617 +3914 2025-07-04 19:36:29.910153+00 2025-07-04 19:36:29.910162+00 f t Invitado Amar invitado-1751657789933@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2618 +3915 2025-07-04 19:43:22.386843+00 2025-07-04 19:43:22.386851+00 f t Invitado Amar invitado-1751658201388@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2619 +3916 2025-07-04 19:55:29.921486+00 2025-07-04 19:55:29.921494+00 f t Esteban Ignacio Marino esteban_marino@yahoo.com.ar 5491154950454 \N Marcos Sastre 3734 dpto A \N MALE \N -34.6089634 -58.4973888 17 1289 \N emarino +3917 2025-07-04 20:34:40.235806+00 2025-07-04 20:34:40.235815+00 f t Invitado Amar invitado-1751661279178@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2620 +3918 2025-07-04 20:40:33.723706+00 2025-07-04 20:40:33.723717+00 f t Natalia Ramirez natuvram@gmail.com +541164067023 \N \N \N -31.6713317 -60.317545 29 1290 \N nramirez +3919 2025-07-04 21:14:58.364839+00 2025-07-04 21:14:58.364848+00 f t Invitado Amar invitado-1751663697504@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2621 +3920 2025-07-04 21:56:45.49097+00 2025-07-04 21:56:45.490979+00 f t Invitado Amar invitado-1751666205171@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2622 +3921 2025-07-04 22:52:54.942286+00 2025-07-04 22:52:54.942295+00 f t Invitado Amar invitado-1751669574434@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2623 +3922 2025-07-04 22:53:52.019739+00 2025-07-04 22:53:52.019752+00 f t Invitado Amar invitado-1751669631083@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-2624 +3923 2025-07-04 23:09:58.434903+00 2025-07-04 23:09:58.434912+00 f t Invitado Amar invitado-1751670598117@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2625 +3924 2025-07-04 23:33:21.124173+00 2025-07-04 23:33:21.124181+00 f t Invitado Amar invitado-1751672000972@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-2626 +3925 2025-07-04 23:34:35.149712+00 2025-07-04 23:34:35.149721+00 f t Invitado Amar invitado-1751672074520@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2627 +3926 2025-07-04 23:34:50.857886+00 2025-07-04 23:34:50.857893+00 f t María Antonella Caivano caivanoanto@gmail.com +5491131233272 \N Quito 3644 \N \N \N 1995-08-20 -0.2788816 -78.5523669 14 1292 \N mantonellacaivano +3927 2025-07-04 23:41:10.858953+00 2025-07-04 23:41:10.858964+00 f t Vanesa ROSOLEN vanesarosolen@gmail.com +541161010577 \N BERMUDEZ 1821 2B \N \N 1974-04-16 -34.5041046 -58.4986697 39 1293 \N vrosolen +3928 2025-07-05 00:19:51.289917+00 2025-07-05 00:19:51.289926+00 f t Invitado Amar invitado-1751674790567@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2628 +3929 2025-07-05 00:24:47.666922+00 2025-07-05 00:24:47.66693+00 f t Invitado Amar invitado-1751675086476@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2629 +3930 2025-07-05 00:29:54.646817+00 2025-07-05 00:29:54.646825+00 f t Lina Rincon rinconlinap85@gmail.com 5491134115241 \N Avenida Córdoba 3438 depto 7b \N FEMALE 1985-05-04 \N \N 1 \N \N lrincon +3931 2025-07-05 01:04:40.495886+00 2025-07-05 01:04:40.495895+00 f t Invitado Amar invitado-1751677480081@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2630 +3932 2025-07-05 01:08:52.815972+00 2025-07-05 01:08:52.815984+00 f t Invitado Amar invitado-1751677732412@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2631 +3933 2025-07-05 01:20:34.858658+00 2025-07-05 01:20:34.858671+00 f t Invitado Amar invitado-1751678434395@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-2632 +3934 2025-07-05 02:02:05.56308+00 2025-07-05 02:02:05.563091+00 f t Invitado Amar invitado-1751680923890@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2633 +3935 2025-07-05 02:57:41.922583+00 2025-07-05 02:57:41.922592+00 f t Invitado Amar invitado-1751684261546@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-2634 +3936 2025-07-05 03:20:40.330074+00 2025-07-05 03:20:40.330082+00 f t Invitado Amar invitado-1751685640464@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-2635 +3937 2025-07-05 05:11:32.655706+00 2025-07-05 05:11:32.655716+00 f t Noelia Ledesma Belen.noelia21@hotmail.com +541131969785 \N Rondeau 2884 Casa \N \N -34.6355363 -58.4037273 113 \N \N nledesma +3938 2025-07-05 05:23:07.383507+00 2025-07-05 05:23:07.38352+00 f t Invitado Amar invitado-1751692987015@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2636 +3939 2025-07-05 05:38:42.550094+00 2025-07-05 05:38:42.550106+00 f t Invitado Amar invitado-1751693921485@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2637 +3940 2025-07-05 09:56:28.297723+00 2025-07-05 09:56:28.297735+00 f t Diana carolina Bruno franqueira dianabruno85@gmail.com +541168483840 \N Diaz velez 2112 Entre pintos y guatambu casa patio chico adelante rejas negras Localidad loma verde (actualmente malvinas argentinas) adrogue \N \N -34.8157603 -58.4260007 84 \N \N dbrunofranqueira +3941 2025-07-05 11:38:55.68127+00 2025-07-05 11:38:55.681279+00 f t Invitado Amar invitado-1751715534928@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2638 +3942 2025-07-05 11:41:47.412723+00 2025-07-05 11:41:47.412732+00 f t Invitado Amar invitado-1751715705858@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2639 +3943 2025-07-05 11:45:04.815942+00 2025-07-05 11:45:04.815956+00 f t Invitado Amar invitado-1751715903599@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2640 +3944 2025-07-05 11:55:59.991902+00 2025-07-05 11:55:59.991912+00 f t Invitado Amar invitado-1751716559448@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2641 +3945 2025-07-05 12:04:00.277651+00 2025-07-05 12:04:00.277661+00 f t Invitado Amar invitado-1751717039853@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2642 +3946 2025-07-05 12:05:46.251391+00 2025-07-05 12:05:46.251401+00 f t Invitado Amar invitado-1751717145816@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2643 +3947 2025-07-05 12:06:37.332615+00 2025-07-05 12:06:37.332625+00 f t Invitado Amar invitado-1751717196941@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2644 +3948 2025-07-05 12:08:23.763212+00 2025-07-05 12:08:23.76322+00 f t Invitado Amar invitado-1751717303293@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2645 +3949 2025-07-05 12:20:06.747986+00 2025-07-05 12:20:06.748+00 f t Invitado Amar invitado-1751718005547@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2646 +3950 2025-07-05 12:20:26.218927+00 2025-07-05 12:20:26.218936+00 f t Invitado Amar invitado-1751718025755@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2647 +3951 2025-07-05 12:39:13.319769+00 2025-07-05 12:39:13.319778+00 f t Invitado Amar invitado-1751719153544@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2648 +3952 2025-07-05 12:51:38.407073+00 2025-07-05 12:51:38.407082+00 f t Invitado Amar invitado-1751719899056@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2649 +3953 2025-07-05 13:24:26.818771+00 2025-07-05 13:24:26.81878+00 f t Invitado Amar invitado-1751721866786@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2650 +3954 2025-07-05 13:32:06.450523+00 2025-07-05 13:32:06.450532+00 f t Invitado Amar invitado-1751722325520@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2651 +3955 2025-07-05 14:00:15.752868+00 2025-07-05 14:00:15.75288+00 f t Invitado Amar invitado-1751724015776@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2652 +3956 2025-07-05 14:16:43.632711+00 2025-07-05 14:16:43.632723+00 f t Invitado Amar invitado-1751725003895@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2653 +3957 2025-07-05 14:35:01.710545+00 2025-07-05 14:35:01.710559+00 f t Invitado Amar invitado-1751726101312@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2654 +3958 2025-07-05 15:32:41.071917+00 2025-07-05 15:32:41.071926+00 f t Invitado Amar invitado-1751729559144@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2655 +3959 2025-07-05 15:46:32.582339+00 2025-07-05 15:46:32.582346+00 f t Invitado Amar invitado-1751730392175@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2656 +3960 2025-07-05 15:56:55.896837+00 2025-07-05 15:56:55.896848+00 f t Invitado Amar invitado-1751731015278@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2657 +3961 2025-07-05 16:11:04.900195+00 2025-07-05 16:11:04.900202+00 f t Invitado Amar invitado-1751731863410@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2658 +3962 2025-07-05 16:28:52.552702+00 2025-07-05 16:28:52.552711+00 f t Invitado Amar invitado-1751732930275@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2659 +3963 2025-07-05 16:50:17.242425+00 2025-07-05 16:50:17.242434+00 f t Gonzalo Montero gonzalojaviermontero@gmail.com +541136027774 \N Rodney 2810 Entre Aguapey y Alagon \N \N -34.7281247 -58.6233735 146 \N \N gmontero +3964 2025-07-05 16:51:01.299242+00 2025-07-05 16:51:01.299258+00 f t Invitado Amar invitado-1751734261605@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2660 +3965 2025-07-05 17:47:03.408507+00 2025-07-05 17:47:03.408519+00 f t Invitado Amar invitado-1751737622130@example.com 55555555 \N \N \N \N \N 146 \N \N iamar-2661 +3966 2025-07-05 17:50:54.223796+00 2025-07-05 17:50:54.223806+00 f t Gonzalo Montero gonzalojaviermontero@gmial.com +541136027774 \N Rodney 2810 entre Aguapey Y alagon \N \N -34.7281247 -58.6233735 146 \N \N gmontero-2 +3967 2025-07-05 18:08:39.066039+00 2025-07-05 18:08:39.066048+00 f t Invitado Amar invitado-1751738917945@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-2662 +3968 2025-07-05 18:14:36.47724+00 2025-07-05 18:14:36.477249+00 f t Invitado Amar invitado-1751739275562@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2663 +3969 2025-07-05 18:25:18.755652+00 2025-07-05 18:25:18.75566+00 f t Invitado Amar invitado-1751739917610@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2664 +3970 2025-07-05 18:40:15.693647+00 2025-07-05 18:40:15.693655+00 f t Invitado Amar invitado-1751740781485@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2665 +3971 2025-07-05 18:40:34.40159+00 2025-07-05 18:40:34.401599+00 f t Invitado Amar invitado-1751740980498@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2666 +3972 2025-07-05 19:12:19.373505+00 2025-07-05 19:12:19.373514+00 f t Invitado Amar invitado-1751742738830@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2667 +3973 2025-07-05 19:12:23.724177+00 2025-07-05 19:12:23.724184+00 f t Invitado Amar invitado-1751742741160@example.com 55555555 \N \N \N \N \N 48 \N \N iamar-2668 +3974 2025-07-05 19:13:30.652971+00 2025-07-05 19:13:30.65298+00 f t Invitado Amar invitado-1751742809104@example.com 55555555 \N \N \N \N \N 48 \N \N iamar-2669 +3975 2025-07-05 19:14:20.88779+00 2025-07-05 19:14:20.887798+00 f t Invitado Amar invitado-1751742860527@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-2670 +3976 2025-07-05 19:24:29.730849+00 2025-07-05 19:24:29.730861+00 f t Guillermo Gallo gegallo@hotmail.com +5491140267888 \N Barrio Terralagos Canning Lote 80 \N \N \N \N 7 \N \N ggallo +3977 2025-07-05 20:10:12.0301+00 2025-07-05 20:10:12.030111+00 f t Invitado Amar invitado-1751746212973@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2671 +3978 2025-07-05 20:17:29.51551+00 2025-07-05 20:17:29.515522+00 f t Invitado Amar invitado-1751746648923@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2672 +3979 2025-07-05 21:21:50.361489+00 2025-07-05 21:21:50.361499+00 f t Invitado Amar invitado-1751750508628@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-2673 +3980 2025-07-05 21:40:12.034506+00 2025-07-05 21:40:12.034513+00 f t Miriam Giambuzzi mgiambuzzi@gmail.com 5491128449098 \N Burela 1834 1834 La Pampa y Echeverria \N FEMALE \N -34.5834678 -58.4874017 29 1297 \N mgiambuzzi +13314 2025-11-14 18:02:08.310033+00 2025-11-14 18:02:08.310041+00 f t Invitado Amar invitado-1763143327594@example.com 55555555 \N \N \N \N \N 39 \N \N \N +3982 2025-07-05 21:56:58.722295+00 2025-07-05 21:56:58.722304+00 f t Invitado Amar invitado-1751752619017@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2674 +3983 2025-07-05 22:23:19.613809+00 2025-07-05 22:23:19.613819+00 f t Invitado Amar invitado-1751754199046@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2675 +3984 2025-07-05 22:24:52.891826+00 2025-07-05 22:24:52.891834+00 f t Invitado Amar invitado-1751754292724@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2676 +3985 2025-07-05 22:30:33.096227+00 2025-07-05 22:30:33.096235+00 f t Invitado Amar invitado-1751754632985@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2677 +3986 2025-07-05 22:42:46.356788+00 2025-07-05 22:42:46.356796+00 f t Andrea Marisa Capparelli andrecap03@gmail.com +541140611755 \N Av. Caseros 769 7D \N \N \N -34.627031 -58.3753147 15 1301 \N acapparelli +3987 2025-07-05 22:58:51.391167+00 2025-07-05 22:58:51.391175+00 f t Invitado Amar invitado-1751756330024@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2678 +3988 2025-07-05 23:00:24.151423+00 2025-07-05 23:00:24.151435+00 f t Nazareth Dezanzo nazarethdezanzo@hotmail.com +541164532191 \N Bucarelli 1253 \N \N \N \N -34.5870078 -58.478352 61 1302 \N ndezanzo +3989 2025-07-05 23:19:04.154988+00 2025-07-05 23:19:04.154997+00 f t Jonathan Bustos jonito647@gmail.com +5491167428552 \N Mariano Acha 1749 0415 campana \N \N -34.5766073 -58.4731227 112 \N \N jbustos +3990 2025-07-05 23:33:46.354316+00 2025-07-05 23:33:46.354325+00 f t Jazmin Eroles jazmineroles@hotmail.com +541140351326 \N Luis Piedra Buena 961 \N \N -40.7880693 -62.9978267 113 \N \N jeroles +3991 2025-07-05 23:50:06.241597+00 2025-07-05 23:50:06.241611+00 f t Invitado Amar invitado-1751759405777@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2679 +3992 2025-07-06 00:02:15.209992+00 2025-07-06 00:02:15.210001+00 f t Invitado Amar invitado-1751760134786@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2680 +3993 2025-07-06 00:18:11.312559+00 2025-07-06 00:18:11.312569+00 f t Invitado Amar invitado-1751761093076@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-2681 +3994 2025-07-06 00:24:23.867228+00 2025-07-06 00:24:23.86724+00 f t Invitado Amar invitado-1751761464066@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-2682 +3995 2025-07-06 00:24:35.639746+00 2025-07-06 00:24:35.639758+00 f t Invitado Amar invitado-1751761476593@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2683 +3996 2025-07-06 01:39:52.534339+00 2025-07-06 01:39:52.534348+00 f t Invitado Amar invitado-1751765992113@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2684 +3997 2025-07-06 01:47:14.73436+00 2025-07-06 01:47:14.734369+00 f t Invitado Amar invitado-1751766434292@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2685 +3998 2025-07-06 03:30:20.895077+00 2025-07-06 03:30:20.895085+00 f t Invitado Amar invitado-1751772620218@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-2686 +3999 2025-07-06 03:44:46.948755+00 2025-07-06 03:44:46.948763+00 f t Invitado Amar invitado-1751773487666@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2687 +4000 2025-07-06 03:58:36.986135+00 2025-07-06 03:58:36.986143+00 f t Invitado Amar invitado-1751774315839@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2688 +4001 2025-07-06 04:02:44.460747+00 2025-07-06 04:02:44.460755+00 f t Invitado Amar invitado-1751774563567@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-2689 +4002 2025-07-06 04:08:54.034204+00 2025-07-06 04:08:54.034213+00 f t Invitado Amar invitado-1751774933553@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-2690 +4003 2025-07-06 04:47:18.996255+00 2025-07-06 04:47:18.996266+00 f t Invitado Amar invitado-1751777238428@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2691 +4004 2025-07-06 05:28:36.127823+00 2025-07-06 05:28:36.127831+00 f t Milagros Leiva milagrosnoelialeiva0@gmail.com +541158293721 \N Curupaytí 490 \N \N -34.4534621 -58.5992471 22 \N \N mleiva +4005 2025-07-06 05:58:01.217307+00 2025-07-06 05:58:01.217319+00 f t Invitado Amar invitado-1751781480497@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2692 +4006 2025-07-06 08:09:17.937774+00 2025-07-06 08:09:17.937784+00 f t Invitado Amar invitado-1751789357538@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2693 +4007 2025-07-06 08:56:32.607462+00 2025-07-06 08:56:32.607475+00 f t Invitado Amar invitado-1751792191371@example.com 55555555 \N \N \N \N \N 99 \N \N iamar-2694 +4008 2025-07-06 09:05:53.122197+00 2025-07-06 09:05:53.122207+00 f t Rosa Jerez Melina.jerez@hotmail.com +541140997501 \N Saturnino salas 028 \N \N -34.6183683 -58.6303187 80 \N \N rjerez +13535 2025-11-17 19:51:29.436691+00 2025-11-17 19:51:29.436703+00 f t Invitado Amar invitado-1763409089039@example.com 55555555 \N \N \N \N \N 35 \N \N \N +4009 2025-07-06 09:27:11.556871+00 2025-07-06 09:27:11.556882+00 f t Carolina Villarreal carolinavillarreal930@hotmail.com +541133691608 \N Miravé 3640 2D \N \N -34.6460699 -58.4007809 44 \N \N cvillarreal +4010 2025-07-06 09:37:24.048944+00 2025-07-06 09:37:24.048951+00 f t Rosa Jerez melina.jerez@hotmail.com +1140997501 \N saturnino salas 28 Hurlingham \N \N -34.6183683 -58.6303187 80 \N \N rjerez-2 +4011 2025-07-06 09:46:13.582165+00 2025-07-06 09:46:13.582174+00 f t Rosa Jerez jerez.melina085@gmail.com +541140997501 \N saturnino salas 028 Hurlingham (Santos teseis) \N \N -34.6183683 -58.6303187 80 \N \N rjerez-3 +4012 2025-07-06 11:19:52.757714+00 2025-07-06 11:19:52.757723+00 f t Invitado Amar invitado-1751800792106@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-2695 +4013 2025-07-06 11:39:17.716127+00 2025-07-06 11:39:17.716136+00 f t Invitado Amar invitado-1751801957321@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2696 +4014 2025-07-06 12:14:54.823491+00 2025-07-06 12:14:54.823506+00 f t Invitado Amar invitado-1751804094202@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2697 +4015 2025-07-06 12:34:08.676138+00 2025-07-06 12:34:08.676147+00 f t Invitado Amar invitado-1751805248226@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2698 +4016 2025-07-06 12:42:42.71704+00 2025-07-06 12:42:42.717049+00 f t Invitado Amar invitado-1751805761251@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2699 +4017 2025-07-06 12:48:22.166411+00 2025-07-06 12:48:22.16642+00 f t Invitado Amar invitado-1751806101739@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-2700 +4018 2025-07-06 12:48:46.000216+00 2025-07-06 12:48:46.000225+00 f t Invitado Amar invitado-1751806124948@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-2701 +4019 2025-07-06 13:28:15.183314+00 2025-07-06 13:28:15.183322+00 f t Invitado Amar invitado-1751808493925@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2702 +4020 2025-07-06 13:30:09.9496+00 2025-07-06 13:30:09.949609+00 f t Invitado Amar invitado-1751808609403@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-2703 +4021 2025-07-06 13:39:22.265956+00 2025-07-06 13:39:22.265965+00 f t Invitado Amar invitado-1751809161778@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2704 +4022 2025-07-06 13:59:24.681208+00 2025-07-06 13:59:24.681218+00 f t Invitado Amar invitado-1751810363175@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-2705 +4023 2025-07-06 14:11:32.486662+00 2025-07-06 14:11:32.48667+00 f t Invitado Amar invitado-1751811091719@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2706 +4024 2025-07-06 14:22:57.491316+00 2025-07-06 14:22:57.491326+00 f t Invitado Amar invitado-1751811750137@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-2707 +4025 2025-07-06 14:24:07.813769+00 2025-07-06 14:24:07.813779+00 f t Invitado Amar invitado-1751811848347@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2708 +4026 2025-07-06 14:25:19.379071+00 2025-07-06 14:25:19.379082+00 f t Invitado Amar invitado-1751811918562@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2709 +4027 2025-07-06 14:28:32.697312+00 2025-07-06 14:28:32.69732+00 f t Invitado Amar invitado-1751812112103@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2710 +4028 2025-07-06 14:31:11.346295+00 2025-07-06 14:31:11.346303+00 f t Invitado Amar invitado-1751812270747@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2711 +4029 2025-07-06 14:38:38.016178+00 2025-07-06 14:38:38.016186+00 f t Invitado Amar invitado-1751812718637@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2712 +4030 2025-07-06 15:03:09.52596+00 2025-07-06 15:03:09.525971+00 f t Invitado Amar invitado-1751814189116@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-2713 +4031 2025-07-06 15:08:01.217351+00 2025-07-06 15:08:01.217363+00 f t Invitado Amar invitado-1751814480711@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2714 +4032 2025-07-06 15:09:01.144927+00 2025-07-06 15:09:01.144939+00 f t Invitado Amar invitado-1751814539584@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-2715 +4033 2025-07-06 15:09:30.652006+00 2025-07-06 15:09:30.652018+00 f t Invitado Amar invitado-1751814570171@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2716 +4034 2025-07-06 15:17:49.029952+00 2025-07-06 15:17:49.029964+00 f t Invitado Amar invitado-1751815068491@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2717 +4035 2025-07-06 15:38:23.393272+00 2025-07-06 15:38:23.393284+00 f t Pablo Maugis pgmaugis@gmail.com +541160379325 \N rodriguez 1564 Casa \N \N -34.6015223 -58.626003 80 \N \N pmaugis +4036 2025-07-06 15:46:40.248002+00 2025-07-06 15:46:40.24801+00 f t Invitado Amar invitado-1751816799903@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-2718 +4037 2025-07-06 15:55:40.687071+00 2025-07-06 15:55:40.68708+00 f t Invitado Amar invitado-1751817340121@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-2719 +4038 2025-07-06 15:56:49.274162+00 2025-07-06 15:56:49.274172+00 f t Invitado Amar invitado-1751817408177@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2720 +4039 2025-07-06 17:27:47.94248+00 2025-07-06 17:27:47.94249+00 f t Invitado Amar invitado-1751822867446@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2721 +4040 2025-07-06 17:33:18.316055+00 2025-07-06 17:33:18.316069+00 f t Invitado Amar invitado-1751823197928@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-2722 +4041 2025-07-06 17:40:13.780366+00 2025-07-06 17:40:13.780374+00 f t Invitado Amar invitado-1751823613206@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2723 +4042 2025-07-06 17:45:11.286022+00 2025-07-06 17:45:11.286031+00 f t Invitado Amar invitado-1751823911036@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-2724 +4043 2025-07-06 17:51:45.35261+00 2025-07-06 17:51:45.352619+00 f t Invitado Amar invitado-1751824305303@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-2725 +4044 2025-07-06 18:32:07.025022+00 2025-07-06 18:32:07.02503+00 f t Invitado Amar invitado-1751826726407@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-2726 +4045 2025-07-06 18:36:42.10301+00 2025-07-06 18:36:42.103019+00 f t Invitado Amar invitado-1751827001639@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2727 +4046 2025-07-06 18:40:46.315794+00 2025-07-06 18:40:46.315802+00 f t Invitado Amar invitado-1751827247188@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2728 +4047 2025-07-06 18:58:58.666167+00 2025-07-06 18:58:58.666175+00 f t Invitado Amar invitado-1751828340278@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-2729 +4048 2025-07-06 19:06:17.072912+00 2025-07-06 19:06:17.072922+00 f t Invitado Amar invitado-1751828775809@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-2730 +4049 2025-07-06 19:23:27.377724+00 2025-07-06 19:23:27.377733+00 f t Invitado Amar invitado-1751829805439@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-2731 +4050 2025-07-06 19:28:17.703987+00 2025-07-06 19:28:17.703995+00 f t Invitado Amar invitado-1751830097263@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-2732 +4051 2025-07-06 19:58:09.262141+00 2025-07-06 19:58:09.26215+00 f t Ivan Del Prado ivandelprado04@gmail.com +541158648675 \N Marcelo T. De Alvear 3035 \N \N -34.7149857 -58.5991433 88 \N \N idelprado +4052 2025-07-06 20:04:23.610742+00 2025-07-06 20:04:23.61075+00 f t Invitado Amar invitado-1751832262002@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2733 +4053 2025-07-06 20:18:11.346467+00 2025-07-06 20:18:11.34648+00 f t Invitado Amar invitado-1751833089688@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2734 +4054 2025-07-06 20:22:12.866389+00 2025-07-06 20:22:12.866398+00 f t Invitado Amar invitado-1751833332149@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2735 +4055 2025-07-06 20:43:14.098084+00 2025-07-06 20:43:14.098093+00 f t Invitado Amar invitado-1751834593021@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2736 +4056 2025-07-06 20:43:36.013549+00 2025-07-06 20:43:36.013557+00 f t Invitado Amar invitado-1751834614864@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2737 +4057 2025-07-06 20:45:33.090909+00 2025-07-06 20:45:33.090917+00 f t Invitado Amar invitado-1751834732580@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2738 +4058 2025-07-06 20:46:48.141799+00 2025-07-06 20:46:48.141811+00 f t Invitado Amar invitado-1751834807571@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2739 +4059 2025-07-06 20:49:53.811362+00 2025-07-06 20:49:53.811371+00 f t Invitado Amar invitado-1751834993119@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2740 +4060 2025-07-06 21:36:09.133298+00 2025-07-06 21:36:09.133307+00 f t Invitado Amar invitado-1751837768624@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2741 +4061 2025-07-06 21:53:00.551568+00 2025-07-06 21:53:00.551577+00 f t Invitado Amar invitado-1751838774716@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-2742 +4062 2025-07-06 22:06:42.053255+00 2025-07-06 22:06:42.053267+00 f t Invitado Amar invitado-1751839599973@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-2743 +4063 2025-07-06 22:28:20.319381+00 2025-07-06 22:28:20.31939+00 f t Invitado Amar invitado-1751840899486@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2744 +4064 2025-07-06 22:29:45.698841+00 2025-07-06 22:29:45.69885+00 f t Invitado Amar invitado-1751840984806@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2745 +4065 2025-07-06 22:32:42.950524+00 2025-07-06 22:32:42.950532+00 f t Invitado Amar invitado-1751841162407@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2746 +4066 2025-07-06 23:06:34.117173+00 2025-07-06 23:06:34.117182+00 f t Invitado Amar invitado-1751843193694@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2747 +4067 2025-07-07 00:23:12.450359+00 2025-07-07 00:23:12.45037+00 f t Invitado Amar invitado-1751847791969@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-2748 +4068 2025-07-07 00:32:39.191221+00 2025-07-07 00:32:39.19123+00 f t Invitado Amar invitado-1751848358874@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2749 +4069 2025-07-07 00:45:22.811014+00 2025-07-07 00:45:22.811024+00 f t Invitado Amar invitado-1751849118219@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2750 +4070 2025-07-07 00:55:00.246642+00 2025-07-07 00:55:00.246651+00 f t Invitado Amar invitado-1751849699535@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2751 +4071 2025-07-07 01:01:55.777264+00 2025-07-07 01:01:55.777273+00 f t Xoana Gramajo xoana.s.gramajo@gmail.com +541140905581 \N Sargento cabral 1937 \N \N \N \N -34.459076 -58.5841111 74 1315 \N xgramajo +4072 2025-07-07 01:06:27.252944+00 2025-07-07 01:06:27.252954+00 f t Invitado Amar invitado-1751850386593@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2752 +4073 2025-07-07 01:07:42.753568+00 2025-07-07 01:07:42.753578+00 f t Invitado Amar invitado-1751850462565@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2753 +4074 2025-07-07 02:13:04.725446+00 2025-07-07 02:13:04.725454+00 f t Invitado Amar invitado-1751854384388@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2754 +4075 2025-07-07 02:13:31.97655+00 2025-07-07 02:13:31.976563+00 f t Invitado Amar invitado-1751854412174@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2755 +4076 2025-07-07 02:14:22.569097+00 2025-07-07 02:14:22.569105+00 f t Invitado Amar invitado-1751854462772@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-2756 +4077 2025-07-07 03:00:39.825369+00 2025-07-07 03:00:39.825377+00 f t Invitado Amar invitado-1751857239267@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-2757 +4078 2025-07-07 03:09:31.821266+00 2025-07-07 03:09:31.821281+00 f t Invitado Amar invitado-1751857771012@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2758 +4079 2025-07-07 03:23:55.819402+00 2025-07-07 03:23:55.819411+00 f t Invitado Amar invitado-1751858635092@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-2759 +4080 2025-07-07 03:26:02.289263+00 2025-07-07 03:26:02.289272+00 f t Invitado Amar invitado-1751858762103@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-2760 +4081 2025-07-07 03:30:31.34586+00 2025-07-07 03:30:31.345872+00 f t Invitado Amar invitado-1751859030977@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-2761 +4082 2025-07-07 03:30:50.069748+00 2025-07-07 03:30:50.069756+00 f t Invitado Amar invitado-1751859049667@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2762 +4083 2025-07-07 04:06:07.686388+00 2025-07-07 04:06:07.686397+00 f t Invitado Amar invitado-1751861167320@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-2763 +4084 2025-07-07 04:38:17.182042+00 2025-07-07 04:38:17.182051+00 f t Invitado Amar invitado-1751863096831@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-2764 +4085 2025-07-07 06:07:59.140918+00 2025-07-07 06:07:59.140928+00 f t Invitado Amar invitado-1751868477887@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2765 +4086 2025-07-07 07:18:56.350823+00 2025-07-07 07:18:56.350832+00 f t Invitado Amar invitado-1751872736349@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2766 +4087 2025-07-07 07:51:57.862201+00 2025-07-07 07:51:57.862213+00 f t Invitado Amar invitado-1751874718083@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2767 +4088 2025-07-07 09:39:24.975531+00 2025-07-07 09:39:24.975541+00 f t Invitado Amar invitado-1751881165230@example.com 55555555 \N \N \N \N \N 146 \N \N iamar-2768 +4089 2025-07-07 11:11:03.886003+00 2025-07-07 11:11:03.886012+00 f t Invitado Amar invitado-1751886663463@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2769 +4090 2025-07-07 11:12:50.518785+00 2025-07-07 11:12:50.518793+00 f t Invitado Amar invitado-1751886770420@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2770 +4091 2025-07-07 12:46:44.800169+00 2025-07-07 12:46:44.800177+00 f t Invitado Amar invitado-1751892404372@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2771 +4092 2025-07-07 12:59:02.25822+00 2025-07-07 12:59:02.258235+00 f t Invitado Amar invitado-1751893141926@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2772 +4093 2025-07-07 13:12:51.181277+00 2025-07-07 13:12:51.181289+00 f t Invitado Amar invitado-1751893971412@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2773 +4094 2025-07-07 13:13:20.536132+00 2025-07-07 13:13:20.53614+00 f t Invitado Amar invitado-1751894000051@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2774 +4095 2025-07-07 13:16:04.003684+00 2025-07-07 13:16:04.003696+00 f t Invitado Amar invitado-1751894163553@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2775 +4096 2025-07-07 13:19:40.438398+00 2025-07-07 13:19:40.438408+00 f t FEDERICO FERRARI arqfedericoferrari@gmail.com +5491158748240 \N juana manso 590 36A2 torre norte \N \N \N -34.6044463 -58.3632556 30 1348 \N fferrari +4097 2025-07-07 13:49:06.443096+00 2025-07-07 13:49:06.443108+00 f t Invitado Amar invitado-1751896145161@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2776 +4098 2025-07-07 14:17:38.022885+00 2025-07-07 14:17:38.022899+00 f t Karina VASALO GARCIA kvasalogarcia@gmail.com +541144080502 \N belgrano 4525 3C \N \N \N -33.743775 -61.9558044 88 1305 \N kvasalogarcia +4099 2025-07-07 14:33:09.44345+00 2025-07-07 14:33:09.443461+00 f t Invitado Amar invitado-1751898789048@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2777 +4100 2025-07-07 14:41:44.098143+00 2025-07-07 14:41:44.098155+00 f t Invitado Amar invitado-1751899303714@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2778 +4101 2025-07-07 14:45:36.479024+00 2025-07-07 14:45:36.479033+00 t t Benjamin Ramos ramosbenjaminalexis@gmail.com +541140905581 \N Sargento cabral 1937 \N \N \N \N -34.459076 -58.5841111 74 1306 \N bramos +4102 2025-07-07 15:06:00.626176+00 2025-07-07 15:06:00.626185+00 f t Invitado Amar invitado-1751900759938@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2779 +4103 2025-07-07 15:08:11.165164+00 2025-07-07 15:08:11.165176+00 f t Invitado Amar invitado-1751900891003@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2780 +4104 2025-07-07 15:14:47.201872+00 2025-07-07 15:14:47.201882+00 f t Invitado Amar invitado-1751901286032@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2781 +4105 2025-07-07 15:17:00.866448+00 2025-07-07 15:17:00.866457+00 f t Invitado Amar invitado-1751901419547@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2782 +4106 2025-07-07 15:21:15.128365+00 2025-07-07 15:21:15.128373+00 f t Invitado Amar invitado-1751901674568@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-2783 +4107 2025-07-07 15:23:07.466199+00 2025-07-07 15:23:07.466208+00 f t Invitado Amar invitado-1751901787917@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-2784 +4108 2025-07-07 15:29:50.325193+00 2025-07-07 15:29:50.325205+00 f t Invitado Amar invitado-1751902189836@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-2785 +4109 2025-07-07 15:38:22.793122+00 2025-07-07 15:38:22.793132+00 f t Hernan Brunacci hbrunacci+23@gmail.com +541131107990 \N Holmberg 2587 \N \N -34.5681815 -58.4777837 68 \N \N hbrunacci-5 +4159 2025-07-08 02:04:06.109813+00 2025-07-08 02:04:06.109822+00 f t Invitado Amar invitado-1751940245175@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-2822 +4110 2025-07-07 16:34:38.353503+00 2025-07-07 16:34:38.353518+00 f t Lilia BASSO lilia_basso@yahoo.com +541162183425 \N Elpidio Gonzalez 4975 pB 6 \N \N -34.6240887 -58.5055203 28 1318 \N lbasso +4111 2025-07-07 16:39:13.093737+00 2025-07-07 16:39:13.093747+00 f t Invitado Amar invitado-1751906352024@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-2786 +4112 2025-07-07 17:06:45.348615+00 2025-07-07 17:06:45.348626+00 f t Invitado Amar invitado-1751908004567@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2787 +4113 2025-07-07 17:15:10.621922+00 2025-07-07 17:15:10.621929+00 f t Maria Soledad Pose maripose112@gmail.com 5491140548529 \N Arquímedes 2360 \N \N FEMALE 1980-08-16 -34.6442547 -58.4270751 40 1307 \N mpose +4114 2025-07-07 17:26:04.093834+00 2025-07-07 17:26:04.093841+00 f t Raúl González gonzalez.raul1986@gmail.com 5491169976857 \N Quesada 2984 3A \N MALE 1986-02-04 -34.5573381 -58.4686896 25 1308 \N rgonzalez-2 +4115 2025-07-07 17:31:43.742367+00 2025-07-07 17:31:43.742374+00 f t Florencia Mulvihill florenciamulvihill@hotmail.com 5491166820747 \N Manuel R. Trelles 2350 piso 5 dpto B \N FEMALE 1987-11-23 \N \N 34 \N \N fmulvihill +4116 2025-07-07 17:53:23.351797+00 2025-07-07 17:53:23.351807+00 f t Invitado Amar invitado-1751910802921@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-2788 +4117 2025-07-07 18:10:02.910465+00 2025-07-07 18:10:02.910478+00 f t Invitado Amar invitado-1751911801113@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-2789 +4118 2025-07-07 18:12:33.296012+00 2025-07-07 18:12:33.29602+00 f t car cart mar@gmail.com +541134531123 \N San juan 2334 12 \N \N \N \N 43 \N \N ccart +4119 2025-07-07 18:26:14.619439+00 2025-07-07 18:26:14.619451+00 f t Invitado Amar invitado-1751912799076@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2790 +4120 2025-07-07 18:37:39.913501+00 2025-07-07 18:37:39.91351+00 f t Invitado Amar invitado-1751913459771@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-2791 +4121 2025-07-07 18:39:43.929823+00 2025-07-07 18:39:43.929833+00 f t Invitado Amar invitado-1751913583405@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-2792 +4122 2025-07-07 19:15:07.746327+00 2025-07-07 19:15:07.746346+00 f t Invitado Amar invitado-1751915707241@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-2793 +4123 2025-07-07 19:22:54.9552+00 2025-07-07 19:22:54.955211+00 f t Invitado Amar invitado-1751916174367@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2794 +4124 2025-07-07 19:51:41.90936+00 2025-07-07 19:51:41.909367+00 f t Invitado Amar invitado-1751917902141@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2795 +4125 2025-07-07 19:52:22.685246+00 2025-07-07 19:52:22.685254+00 f t Invitado Amar invitado-1751917943241@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2796 +4126 2025-07-07 20:02:33.494513+00 2025-07-07 20:02:33.494523+00 f t Invitado Amar invitado-1751918553023@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-2797 +4127 2025-07-07 20:11:17.801418+00 2025-07-07 20:11:17.801426+00 f t Tulio Escobar tescobar1985@yahoo.com +541149371743 \N Correa 4541 1c \N \N \N -34.5526719 -58.492149 31 1313 \N tescobar +4128 2025-07-07 20:54:41.590646+00 2025-07-07 20:54:41.590655+00 f t Invitado Amar invitado-1751921680705@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-2798 +4129 2025-07-07 21:12:28.143433+00 2025-07-07 21:12:28.143441+00 f t Invitado Amar invitado-1751922747391@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2799 +4130 2025-07-07 21:17:18.452243+00 2025-07-07 21:17:18.452251+00 f t Invitado Amar invitado-1751923037470@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2800 +4131 2025-07-07 21:23:49.346816+00 2025-07-07 21:23:49.346827+00 f t Invitado Amar invitado-1751923428687@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2801 +4132 2025-07-07 21:26:04.783575+00 2025-07-07 21:26:04.783586+00 f t Invitado Amar invitado-1751923565958@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-2802 +4133 2025-07-07 21:26:59.25765+00 2025-07-07 21:26:59.257662+00 f t Invitado Amar invitado-1751923620634@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2803 +4134 2025-07-07 21:38:23.466316+00 2025-07-07 21:38:23.466326+00 f t Invitado Amar invitado-1751924302952@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-2804 +4135 2025-07-07 21:38:28.758334+00 2025-07-07 21:38:28.758343+00 f t Invitado Amar invitado-1751924307878@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-2805 +4136 2025-07-07 21:49:59.37806+00 2025-07-07 21:49:59.378068+00 f t Invitado Amar invitado-1751924997312@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2806 +4137 2025-07-07 21:55:44.900415+00 2025-07-07 21:55:44.900424+00 f t Invitado Amar invitado-1751925344379@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2807 +4138 2025-07-07 22:00:32.960386+00 2025-07-07 22:00:32.960395+00 f t Invitado Amar invitado-1751925632804@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2808 +4139 2025-07-07 22:02:03.548817+00 2025-07-07 22:02:03.548825+00 f t Magali Perez magalisol22@hotmail.com 5492236042210 \N Dolores 530 (casi av. Directorio) \N FEMALE 1987-07-22 -34.6381876 -58.4742018 5 1310 \N mperez +4140 2025-07-07 22:08:56.62839+00 2025-07-07 22:08:56.628398+00 f t Myrian Luján Miño myrianlujan@yahoo.com.ar 5491131265080 \N Mariano Acha 4950 \N \N FEMALE 1970-01-16 -34.5487846 -58.4957126 31 1311 \N mmino +4141 2025-07-07 22:21:04.608296+00 2025-07-07 22:21:04.608306+00 f t Invitado Amar invitado-1751926864249@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-2809 +4142 2025-07-07 22:27:39.964719+00 2025-07-07 22:27:39.96473+00 f t André Jose Da silva andrecasaperu@gmail.com +541155606160 \N Perú 1725 8 \N \N \N -34.6202031 -58.3742669 15 \N \N adasilva +4143 2025-07-07 22:59:22.006599+00 2025-07-07 22:59:22.006607+00 f t Invitado Amar invitado-1751929376401@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-2810 +4144 2025-07-07 23:01:08.537379+00 2025-07-07 23:01:08.537388+00 f t Invitado Amar invitado-1751929310541@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2811 +4145 2025-07-07 23:06:55.257024+00 2025-07-07 23:06:55.257032+00 f t Invitado Amar invitado-1751929614205@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2812 +4146 2025-07-07 23:12:02.432396+00 2025-07-07 23:12:02.432408+00 f t Deborah Prieto Valdez debohprieto@hotmail.com +5491164543201 \N Caracas 2121 \N \N FEMALE 1986-07-28 -34.6071485 -58.4741057 63 1314 \N dprietovaldez +4147 2025-07-07 23:34:12.389114+00 2025-07-07 23:34:12.389123+00 f t Invitado Amar invitado-1751931250576@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2813 +4148 2025-07-07 23:55:30.640785+00 2025-07-07 23:55:30.640794+00 f t Invitado Amar invitado-1751932530916@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2814 +4149 2025-07-08 00:14:23.897985+00 2025-07-08 00:14:23.897992+00 f t Soledad Barboza barboza.soledad@gmail.com +5491123886598 \N Ruggeri 2944 torre señoria 24 C \N FEMALE 2010-04-12 38.1254725 13.3183133 1 1317 \N sbarboza +4150 2025-07-08 00:20:36.309437+00 2025-07-08 00:20:36.309446+00 f t Invitado Amar invitado-1751934036456@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2815 +4151 2025-07-08 00:26:12.404438+00 2025-07-08 00:26:12.404446+00 f t Invitado Amar invitado-1751934371987@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2816 +4152 2025-07-08 01:20:37.16801+00 2025-07-08 01:20:37.168018+00 f t Invitado Amar invitado-1751937636541@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2817 +4153 2025-07-08 01:25:05.553081+00 2025-07-08 01:25:05.553093+00 f t Invitado Amar invitado-1751937904121@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2818 +4154 2025-07-08 01:26:45.432+00 2025-07-08 01:26:45.432008+00 f t Invitado Amar invitado-1751938003096@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2819 +4155 2025-07-08 01:30:53.098224+00 2025-07-08 01:30:53.098232+00 f t Invitado Amar invitado-1751938250316@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2820 +4156 2025-07-08 01:32:48.717273+00 2025-07-08 01:32:48.717283+00 f t Invitado Amar invitado-1751938367287@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2821 +4157 2025-07-08 01:55:01.378393+00 2025-07-08 01:55:01.378402+00 f t Eduardo Hahn eduhahn@hotmail.com +541122763608 \N Iberá 3475 Planta alta \N \N -34.5592058 -58.4750665 45 \N \N ehahn +4158 2025-07-08 01:58:14.5284+00 2025-07-08 01:58:14.528408+00 f t María Celeste Machado mariacelestemachado85@gmail.com +541140487366 \N Malabia 553 DTO4 PB \N \N -34.5979113 -58.4379087 112 \N \N mmachado +4160 2025-07-08 02:24:19.529723+00 2025-07-08 02:24:19.529732+00 f t Gabriela Marín gmarin0304@gmail.com +541161335792 \N Lautaro 80 1d \N \N -34.6281269 -58.4572352 4 \N \N gmarin +4161 2025-07-08 02:30:19.830189+00 2025-07-08 02:30:19.8302+00 f t Invitado Amar invitado-1751941819253@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2823 +4162 2025-07-08 08:02:48.311931+00 2025-07-08 08:02:48.311939+00 f t Invitado Amar invitado-1751961767585@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2824 +4163 2025-07-08 10:46:57.236896+00 2025-07-08 10:46:57.236907+00 f t Rodrigo Fernández rfpc100795@gmail.com +541151432473 \N Constitución 2160 Casa \N \N \N -34.6255828 -58.3952103 12 1320 \N rfernandez +4164 2025-07-08 10:47:15.57307+00 2025-07-08 10:47:15.57308+00 f t Invitado Amar invitado-1751971634537@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2825 +4165 2025-07-08 11:00:09.288395+00 2025-07-08 11:00:09.288406+00 f t Invitado Amar invitado-1751972451718@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2826 +4166 2025-07-08 11:02:47.751116+00 2025-07-08 11:02:47.751124+00 f t Invitado Amar invitado-1751972567082@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2827 +4167 2025-07-08 11:39:54.64022+00 2025-07-08 11:39:54.64023+00 f t Invitado Amar invitado-1751974794319@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-2828 +4168 2025-07-08 12:01:52.872618+00 2025-07-08 12:01:52.872631+00 f t Invitado Amar invitado-1751976105045@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-2829 +4169 2025-07-08 12:37:04.444947+00 2025-07-08 12:37:04.444956+00 f t Invitado Amar invitado-1751978223569@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-2830 +4170 2025-07-08 13:00:39.476688+00 2025-07-08 13:00:39.476699+00 f t Invitado Amar invitado-1751979639402@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2831 +4171 2025-07-08 13:12:19.810926+00 2025-07-08 13:12:19.810932+00 f t Carlos Escalona carlos123@gmail.com 91133307932 \N honduras 4736 ph 1 \N MALE \N -34.590536 -58.427531 1 1319 \N cescalona +4172 2025-07-08 13:28:47.747234+00 2025-07-08 13:28:47.747245+00 f t Invitado Amar invitado-1751981327135@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2832 +4173 2025-07-08 13:31:57.264465+00 2025-07-08 13:31:57.264474+00 f t Invitado Amar invitado-1751981516685@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2833 +4174 2025-07-08 13:34:31.384653+00 2025-07-08 13:34:31.384661+00 f t Invitado Amar invitado-1751981670570@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-2834 +4175 2025-07-08 13:37:44.672988+00 2025-07-08 13:37:44.672996+00 f t Invitado Amar invitado-1751981864344@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2835 +4177 2025-07-08 14:05:27.561331+00 2025-07-08 14:05:27.561339+00 f t Invitado Amar invitado-1751983526930@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2836 +4178 2025-07-08 14:06:35.719543+00 2025-07-08 14:06:35.719551+00 f t Maria Angélica D'Andrea angiedandre@gmail.com +541152603586 \N C. Irigoyen 445 Ventana pb \N FEMALE \N -34.6291849 -58.5154634 65 1323 \N mdandrea +4179 2025-07-08 14:07:29.392984+00 2025-07-08 14:07:29.392993+00 f t Invitado Amar invitado-1751983648903@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2837 +4180 2025-07-08 14:57:13.66221+00 2025-07-08 14:57:13.662219+00 f t Invitado Amar invitado-1751986633085@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2838 +4181 2025-07-08 15:07:52.013295+00 2025-07-08 15:07:52.013305+00 f t Invitado Amar invitado-1751987271299@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2839 +4182 2025-07-08 15:10:45.560925+00 2025-07-08 15:10:45.560934+00 f t Patricia Juncos patobjuncos@hotmail.com 1137994660 \N Huego 283 Casa, porton negro \N FEMALE \N -39.0791849 -67.2335683 1 1321 \N pjuncos +4183 2025-07-08 15:12:13.359831+00 2025-07-08 15:12:13.359843+00 f t Invitado Amar invitado-1751987618086@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2840 +4184 2025-07-08 15:22:11.999474+00 2025-07-08 15:22:11.999483+00 f t Invitado Amar invitado-1751988131685@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2841 +4185 2025-07-08 15:33:41.802748+00 2025-07-08 15:33:41.802762+00 f t Laura Guerra lauraprofucciones@argentina.com +541144244909 \N Puerto principe 2549 \N \N -34.5517408 -58.4498632 112 \N \N lguerra +4186 2025-07-08 15:35:34.738226+00 2025-07-08 15:35:34.738236+00 f t Invitado Amar invitado-1751988934255@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-2842 +4187 2025-07-08 15:40:00.020613+00 2025-07-08 15:40:00.020623+00 f t Laura Guerra lauraproducciones@argentina.com +541144244909 \N Puerto principe 2549 \N \N -34.5517408 -58.4498632 112 \N \N lguerra-2 +4188 2025-07-08 16:03:11.394785+00 2025-07-08 16:03:11.394798+00 f t Invitado Amar invitado-1751990590928@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-2843 +4189 2025-07-08 16:27:41.271251+00 2025-07-08 16:27:41.271264+00 f t Invitado Amar invitado-1751992060628@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2844 +4190 2025-07-08 17:09:11.9985+00 2025-07-08 17:09:11.998512+00 f t Invitado Amar invitado-1751994551706@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-2845 +4191 2025-07-08 17:51:01.650472+00 2025-07-08 17:51:01.650486+00 f t belen iocca beluiocca@gmail.com +541155952663 \N Dr Rene Favaloro 3400 333 - complejo arboris la horqueta \N \N -27.4122775 -58.9621916 74 \N \N biocca +4192 2025-07-08 17:57:28.164601+00 2025-07-08 17:57:28.164612+00 f t Invitado Amar invitado-1751997447604@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2846 +4193 2025-07-08 17:58:30.560748+00 2025-07-08 17:58:30.560758+00 f t Invitado Amar invitado-1751997510910@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2847 +4194 2025-07-08 18:02:25.980004+00 2025-07-08 18:02:25.980012+00 f t Invitado Amar invitado-1751997745183@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2848 +4195 2025-07-08 18:41:49.073617+00 2025-07-08 18:41:49.073628+00 f t Invitado Amar invitado-1752000108040@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2849 +4196 2025-07-08 19:06:24.601443+00 2025-07-08 19:06:24.601456+00 f t Invitado Amar invitado-1752001582250@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2850 +4197 2025-07-08 20:18:37.299778+00 2025-07-08 20:18:37.299786+00 f t Invitado Amar invitado-1752005916918@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-2851 +4198 2025-07-08 20:22:54.298491+00 2025-07-08 20:22:54.2985+00 f t Invitado Amar invitado-1752006173621@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2852 +4199 2025-07-08 20:23:03.694478+00 2025-07-08 20:23:03.694491+00 f t Invitado Amar invitado-1752006180962@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-2853 +4200 2025-07-08 20:37:00.502776+00 2025-07-08 20:37:00.502784+00 f t Invitado Amar invitado-1752007018179@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-2854 +4201 2025-07-08 20:43:25.272735+00 2025-07-08 20:43:25.272745+00 f t Invitado Amar invitado-1752007447937@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2855 +4202 2025-07-08 20:48:51.005483+00 2025-07-08 20:48:51.005494+00 f t Agustina Emilia Fernández fernandezagustinae@gmail.com +541151462156 \N Cuba 4025 2 B \N FEMALE \N -34.54469 -58.4683749 25 1324 \N afernandez-2 +4203 2025-07-08 21:36:19.679061+00 2025-07-08 21:36:19.679073+00 f t Invitado Amar invitado-1752010579290@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-2856 +4204 2025-07-08 21:36:36.629954+00 2025-07-08 21:36:36.629963+00 f t Invitado Amar invitado-1752010596246@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2857 +4205 2025-07-08 21:54:08.302822+00 2025-07-08 21:54:08.302831+00 f t Invitado Amar invitado-1752011647604@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-2858 +4206 2025-07-08 22:11:39.039393+00 2025-07-08 22:11:39.039403+00 f t Invitado Amar invitado-1752012696786@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2859 +4207 2025-07-08 22:19:17.19277+00 2025-07-08 22:19:17.19278+00 f t Invitado Amar invitado-1752013156634@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2860 +4208 2025-07-08 22:21:46.067305+00 2025-07-08 22:21:46.067314+00 f t Invitado Amar invitado-1752013305441@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2861 +4209 2025-07-08 22:24:03.186495+00 2025-07-08 22:24:03.186506+00 f t Invitado Amar invitado-1752013442221@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-2862 +4210 2025-07-08 22:25:58.50336+00 2025-07-08 22:25:58.503368+00 f t Invitado Amar invitado-1752013558204@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-2863 +4211 2025-07-08 22:26:17.60963+00 2025-07-08 22:26:17.609639+00 f t Invitado Amar invitado-1752013577377@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-2864 +4212 2025-07-08 22:28:36.520359+00 2025-07-08 22:28:36.520367+00 f t Invitado Amar invitado-1752013715928@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2865 +4213 2025-07-08 22:29:02.48029+00 2025-07-08 22:29:02.480298+00 f t Invitado Amar invitado-1752013741783@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2866 +4214 2025-07-08 22:41:58.814521+00 2025-07-08 22:41:58.81453+00 f t IVANA CUEVAS ivanacaicedo42@gmail.com +541159063236 \N AV DE MAYO 1316 11 c \N \N \N -34.6094198 -58.3851261 49 1325 \N icuevas +4215 2025-07-08 23:07:10.800674+00 2025-07-08 23:07:10.800685+00 f t Invitado Amar invitado-1752016030440@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2867 +4216 2025-07-08 23:16:01.560787+00 2025-07-08 23:16:01.560798+00 f t Fernanda Visillac ferdivisi@gmail.com +541132519796 \N Cesar Diaz 5248 \N \N -34.6309145 -58.5013318 112 \N \N fvisillac +4217 2025-07-08 23:25:50.168838+00 2025-07-08 23:25:50.16885+00 f t Invitado Amar invitado-1752017149097@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2868 +4218 2025-07-08 23:27:12.824768+00 2025-07-08 23:27:12.82478+00 f t Invitado Amar invitado-1752017230519@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2869 +4219 2025-07-08 23:28:01.295437+00 2025-07-08 23:28:01.295447+00 f t Invitado Amar invitado-1752017279803@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2870 +4220 2025-07-08 23:51:30.581336+00 2025-07-08 23:51:30.581344+00 f t Invitado Amar invitado-1752018690031@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-2871 +4221 2025-07-09 00:05:14.222237+00 2025-07-09 00:05:14.222246+00 f t Invitado Amar invitado-1752019513973@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-2872 +4222 2025-07-09 00:05:42.746381+00 2025-07-09 00:05:42.74639+00 f t Invitado Amar invitado-1752019542185@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-2873 +4223 2025-07-09 00:37:04.954219+00 2025-07-09 00:37:04.954232+00 f t Invitado Amar invitado-1752021424256@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-2874 +4224 2025-07-09 02:11:41.186547+00 2025-07-09 02:11:41.186557+00 f t Invitado Amar invitado-1752027099471@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2875 +4225 2025-07-09 03:28:53.56673+00 2025-07-09 03:28:53.566738+00 f t Invitado Amar invitado-1752031732419@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2876 +4226 2025-07-09 04:27:33.102742+00 2025-07-09 04:27:33.102752+00 f t Invitado Amar invitado-1752035252368@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-2877 +4227 2025-07-09 05:27:12.129302+00 2025-07-09 05:27:12.12931+00 f t Invitado Amar invitado-1752038831420@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2878 +4228 2025-07-09 06:00:07.544078+00 2025-07-09 06:00:07.544092+00 f t Invitado Amar invitado-1752040805833@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2879 +4229 2025-07-09 11:04:43.875231+00 2025-07-09 11:04:43.87524+00 f t Invitado Amar invitado-1752059084873@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2880 +4230 2025-07-09 11:57:04.343843+00 2025-07-09 11:57:04.343852+00 f t Invitado Amar invitado-1752062224250@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2881 +4231 2025-07-09 12:13:49.909422+00 2025-07-09 12:13:49.909434+00 f t Invitado Amar invitado-1752063230211@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2882 +4232 2025-07-09 12:49:19.006752+00 2025-07-09 12:49:19.006762+00 f t Invitado Amar invitado-1752065358257@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2883 +4233 2025-07-09 12:51:18.836592+00 2025-07-09 12:51:18.8366+00 f t Invitado Amar invitado-1752065478494@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2884 +4234 2025-07-09 12:52:23.758573+00 2025-07-09 12:52:23.75858+00 f t Invitado Amar invitado-1752065543439@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2885 +4235 2025-07-09 13:30:18.316682+00 2025-07-09 13:30:18.31669+00 f t Invitado Amar invitado-1752067817600@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-2886 +4236 2025-07-09 15:21:04.990467+00 2025-07-09 15:21:04.990476+00 f t Invitado Amar invitado-1752074466325@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-2887 +4237 2025-07-09 15:48:59.101208+00 2025-07-09 15:48:59.101216+00 f t Invitado Amar invitado-1752076138330@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-2888 +4238 2025-07-09 15:52:57.308288+00 2025-07-09 15:52:57.308297+00 f t Invitado Amar invitado-1752076378855@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-2889 +4239 2025-07-09 15:58:23.924803+00 2025-07-09 15:58:23.924812+00 f t Dante Fanizza dantefanizza@gmail.com +541133121102 \N Indalecio Gómez 634 \N \N -34.7787256 -58.3799168 85 \N \N dfanizza +4240 2025-07-09 16:20:30.765207+00 2025-07-09 16:20:30.765215+00 f t Invitado Amar invitado-1752078029518@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2890 +4241 2025-07-09 16:56:41.002922+00 2025-07-09 16:56:41.002931+00 f t Maria Victoria Bacci mavibacci@hotmail.com +541130119696 \N Pedriel 477 Casa \N \N \N -34.6976116 -58.5537813 90 1333 \N mbacci +4242 2025-07-09 17:45:50.997754+00 2025-07-09 17:45:50.997762+00 f t Invitado Amar invitado-1752083150117@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2891 +4243 2025-07-09 17:46:36.438288+00 2025-07-09 17:46:36.438297+00 f t Invitado Amar invitado-1752083196097@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2892 +4244 2025-07-09 17:59:08.861248+00 2025-07-09 17:59:08.861259+00 f t Invitado Amar invitado-1752083949049@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2893 +4245 2025-07-09 18:46:54.111828+00 2025-07-09 18:46:54.111837+00 f t Invitado Amar invitado-1752086814006@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2894 +4246 2025-07-09 19:03:44.47111+00 2025-07-09 19:03:44.471117+00 f t Invitado Amar invitado-1752087823877@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2895 +4247 2025-07-09 19:05:17.355046+00 2025-07-09 19:05:17.355053+00 f t Invitado Amar invitado-1752087917154@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2896 +4248 2025-07-09 19:11:20.044224+00 2025-07-09 19:11:20.044233+00 f t Invitado Amar invitado-1752088273848@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2897 +4249 2025-07-09 19:16:47.060253+00 2025-07-09 19:16:47.060263+00 f t Invitado Amar invitado-1752088607405@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-2898 +4250 2025-07-09 19:42:01.830583+00 2025-07-09 19:42:01.830591+00 f t Invitado Amar invitado-1752090121562@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2899 +4251 2025-07-09 20:00:22.47431+00 2025-07-09 20:00:22.474322+00 f t Invitado Amar invitado-1752091221794@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-2900 +4252 2025-07-09 20:51:03.578966+00 2025-07-09 20:51:03.578977+00 f t German Sanchez sanchez.german83@gmail.com +541141795924 \N Santa fe 348 11D \N \N -34.4768251 -58.5099666 68 \N \N gsanchez +4253 2025-07-09 21:26:01.504359+00 2025-07-09 21:26:01.504368+00 f t Invitado Amar invitado-1752096361274@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-2901 +4254 2025-07-09 21:34:36.781796+00 2025-07-09 21:34:36.781801+00 f t Maria gabriela laporte gabrielalaporte1971@gmail.com 5491128883824 \N Lambare 1089 1 \N FEMALE 1971-04-29 -34.6012097 -58.4299163 23 1329 \N mlaporte +13315 2025-11-14 18:05:49.075091+00 2025-11-14 18:05:49.075101+00 f t Invitado Amar invitado-1763143549392@example.com 55555555 \N \N \N \N \N 154 \N \N \N +4256 2025-07-09 21:47:07.522994+00 2025-07-09 21:47:07.523007+00 f t uriel paolillo urielpaolillo5@gmail.com +541176183616 \N Colombres 393 1b \N \N \N -34.6172811 -58.4183626 23 1335 \N upaolillo +4257 2025-07-09 21:51:58.269425+00 2025-07-09 21:51:58.269432+00 f t Bibiana Cano bisocava@hotmail.com 5491160232989 \N Charcas 5108 \N \N FEMALE 1983-08-15 -34.5785317 -58.4301434 1 1331 \N bcano +4258 2025-07-09 21:56:04.110556+00 2025-07-09 21:56:04.110566+00 f t Norberto Pelliccioni norbertopelliccioni05@gmail.com 5491148700969 \N te. Gral Eustaquio Frías 263 piso 10 dto 78 villa crespo entre vera y Luis María Drago \N MALE 1951-07-30 \N \N 26 \N \N npelliccioni +13536 2025-11-17 19:57:30.894283+00 2025-11-17 19:57:30.894294+00 f t Invitado Amar invitado-1763409449240@example.com 55555555 \N \N \N \N \N 34 \N \N \N +4259 2025-07-09 22:12:05.918064+00 2025-07-09 22:12:05.918076+00 f t Mercedes Vazquez laga59@gmail.com +5491154055452 \N Maximino perez 402 511 \N \N -34.4468401 -58.5484209 113 \N \N mvazquez +4260 2025-07-09 22:18:06.073911+00 2025-07-09 22:18:06.073924+00 f t Invitado Amar invitado-1752099485625@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2902 +4261 2025-07-09 22:24:32.90733+00 2025-07-09 22:24:32.90734+00 f t Invitado Amar invitado-1752099872407@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-2903 +4262 2025-07-09 22:31:06.808577+00 2025-07-09 22:31:06.808589+00 f t Invitado Amar invitado-1752100266421@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-2904 +4263 2025-07-09 22:58:02.225714+00 2025-07-09 22:58:02.225723+00 f t Ticiana Lascano tlascano@udesa.edu.ar +5491121645359 \N Vito dumas 248, victoria. San fernando Universidad de San andres \N \N -34.4479402 -58.5328717 74 1336 \N tlascano +4264 2025-07-09 23:02:16.638009+00 2025-07-09 23:02:16.638016+00 f t Invitado Amar invitado-1752102135647@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2905 +4265 2025-07-09 23:18:51.744127+00 2025-07-09 23:18:51.744136+00 f t Debora Modelli deb.modelli@gmail.com +541140388603 \N Av congreso 4755 10 a \N \N \N -34.5675473 -58.4862647 29 1342 \N dmodelli +4266 2025-07-09 23:44:06.96254+00 2025-07-09 23:44:06.962551+00 f t Pablo Robañera lobo01ar@gmail.com +541133796146 \N Tedin 159 5 \N \N -34.4126379 -58.5893261 22 \N \N probanera +4267 2025-07-10 00:00:15.148635+00 2025-07-10 00:00:15.148648+00 f t Invitado Amar invitado-1752105613913@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2906 +4268 2025-07-10 01:17:05.881771+00 2025-07-10 01:17:05.881783+00 f t Invitado Amar invitado-1752110225378@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2907 +4269 2025-07-10 01:52:33.569156+00 2025-07-10 01:52:33.569163+00 f t Invitado Amar invitado-1752112353243@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2908 +4270 2025-07-10 01:52:48.882154+00 2025-07-10 01:52:48.882166+00 f t Invitado Amar invitado-1752112367247@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2909 +4271 2025-07-10 01:59:21.748046+00 2025-07-10 01:59:21.748055+00 f t Invitado Amar invitado-1752112761719@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-2910 +4272 2025-07-10 02:09:40.571701+00 2025-07-10 02:09:40.571713+00 f t Invitado Amar invitado-1752113380042@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2911 +4273 2025-07-10 02:13:48.211826+00 2025-07-10 02:13:48.211835+00 f t Invitado Amar invitado-1752113627781@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2912 +4274 2025-07-10 02:15:18.009151+00 2025-07-10 02:15:18.009162+00 f t Invitado Amar invitado-1752113716897@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2913 +4275 2025-07-10 03:08:03.504028+00 2025-07-10 03:08:03.504038+00 f t Invitado Amar invitado-1752116884266@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-2914 +4276 2025-07-10 03:17:25.037776+00 2025-07-10 03:17:25.037786+00 f t Invitado Amar invitado-1752117444708@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2915 +4277 2025-07-10 04:24:02.369486+00 2025-07-10 04:24:02.369496+00 f t Invitado Amar invitado-1752121441129@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-2916 +4278 2025-07-10 09:03:07.771799+00 2025-07-10 09:03:07.771809+00 f t Invitado Amar invitado-1752138186251@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2917 +4279 2025-07-10 10:13:54.910394+00 2025-07-10 10:13:54.910406+00 f t Invitado Amar invitado-1752142434412@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-2918 +4280 2025-07-10 10:19:24.996578+00 2025-07-10 10:19:24.996587+00 f t Invitado Amar invitado-1752142763653@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2919 +4281 2025-07-10 10:20:48.137179+00 2025-07-10 10:20:48.137189+00 f t Invitado Amar invitado-1752142847246@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2920 +4282 2025-07-10 10:40:25.469228+00 2025-07-10 10:40:25.469237+00 f t Invitado Amar invitado-1752144024905@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2921 +4283 2025-07-10 10:54:03.480026+00 2025-07-10 10:54:03.480038+00 f t Invitado Amar invitado-1752144843133@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-2922 +4284 2025-07-10 10:57:00.03148+00 2025-07-10 10:57:00.03149+00 f t Invitado Amar invitado-1752145019728@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-2923 +4285 2025-07-10 12:00:14.046457+00 2025-07-10 12:00:14.046469+00 f t Invitado Amar invitado-1752148813627@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-2924 +4286 2025-07-10 12:06:12.267474+00 2025-07-10 12:06:12.267484+00 f t Invitado Amar invitado-1752149171502@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2925 +4287 2025-07-10 12:36:30.049519+00 2025-07-10 12:36:30.049531+00 f t Invitado Amar invitado-1752150989249@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-2926 +4288 2025-07-10 12:39:49.784931+00 2025-07-10 12:39:49.784939+00 f t Invitado Amar invitado-1752151188737@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2927 +4289 2025-07-10 13:01:15.349163+00 2025-07-10 13:01:15.349174+00 f t Invitado Amar invitado-1752152475006@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2928 +4290 2025-07-10 13:02:43.004164+00 2025-07-10 13:02:43.004173+00 f t Invitado Amar invitado-1752152562657@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2929 +4291 2025-07-10 13:12:02.734145+00 2025-07-10 13:12:02.734157+00 f t Invitado Amar invitado-1752153122899@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2930 +4292 2025-07-10 13:20:12.105104+00 2025-07-10 13:20:12.105113+00 f t Sebastian Tokar sebatokar1980@gmail.com +541154857341 \N Republica Argentina 1946 \N \N \N \N -34.7474483 -58.3686286 70 \N \N stokar +4293 2025-07-10 13:26:35.099295+00 2025-07-10 13:26:35.099304+00 f t Invitado Amar invitado-1752153995301@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2931 +4294 2025-07-10 13:29:12.94596+00 2025-07-10 13:29:12.945972+00 f t Invitado Amar invitado-1752154154281@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-2932 +4295 2025-07-10 13:30:37.121657+00 2025-07-10 13:30:37.121664+00 f t Fernanda Wncelblat ferbence@hotmail.com 91166534151 \N Segurola 1844 1ero A \N FEMALE \N -34.619418 -58.5008119 28 1337 \N fwncelblat +4296 2025-07-10 13:38:47.442793+00 2025-07-10 13:38:47.442802+00 f t Invitado Amar invitado-1752154727045@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2933 +4297 2025-07-10 14:10:58.160774+00 2025-07-10 14:10:58.160783+00 f t Cesar Piriz cesarp@gmail.com 91165175133 \N Olazabal 2120 Es el encargado del edificio \N MALE \N -34.5586636 -58.4556472 3 1338 \N cpiriz +4298 2025-07-10 14:15:20.268164+00 2025-07-10 14:15:20.268172+00 f t Invitado Amar invitado-1752156919416@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2934 +4299 2025-07-10 14:21:54.384437+00 2025-07-10 14:21:54.384445+00 f t Invitado Amar invitado-1752157313878@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2935 +4300 2025-07-10 14:38:12.55661+00 2025-07-10 14:38:12.556616+00 f t Julieta Frum julietafrum.2002@gmail.com 91166548170 \N fray justo santa maria de oro 1868 \N \N FEMALE \N -34.490943 -58.6143805 22 1339 \N jfrum +4301 2025-07-10 14:54:04.4635+00 2025-07-10 14:54:04.463509+00 f t Invitado Amar invitado-1752159223485@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-2936 +4302 2025-07-10 15:07:43.374887+00 2025-07-10 15:07:43.374896+00 f t Invitado Amar invitado-1752160062136@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-2937 +4303 2025-07-10 15:12:14.641691+00 2025-07-10 15:12:14.641699+00 f t Invitado Amar invitado-1752160333905@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-2938 +4304 2025-07-10 15:13:35.494224+00 2025-07-10 15:13:35.494232+00 f t Invitado Amar invitado-1752160415798@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-2939 +4305 2025-07-10 15:18:28.10034+00 2025-07-10 15:18:28.100352+00 f t Maria Cecilia Carzo maria.cecilia.carzo@gmail.com +542901408654 \N Juramento 2796 19 D \N \N -34.5642293 -58.4601248 3 \N \N mcarzo +4306 2025-07-10 15:18:33.170157+00 2025-07-10 15:18:33.170165+00 f t Invitado Amar invitado-1752160712290@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2940 +4307 2025-07-10 15:19:52.376159+00 2025-07-10 15:19:52.376173+00 f t Invitado Amar invitado-1752160792005@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2941 +4308 2025-07-10 15:20:15.557818+00 2025-07-10 15:20:15.557831+00 f t Invitado Amar invitado-1752160815169@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2942 +4309 2025-07-10 15:38:46.764458+00 2025-07-10 15:38:46.764467+00 f t Invitado Amar invitado-1752161926077@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2943 +4310 2025-07-10 16:14:03.662984+00 2025-07-10 16:14:03.662993+00 f t Invitado Amar invitado-1752164044613@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-2944 +4311 2025-07-10 16:28:53.624293+00 2025-07-10 16:28:53.624302+00 f t Invitado Amar invitado-1752164933461@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2945 +4312 2025-07-10 16:49:49.38016+00 2025-07-10 16:49:49.38017+00 f t Invitado Amar invitado-1752166188814@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-2946 +4313 2025-07-10 17:02:01.930346+00 2025-07-10 17:02:01.93036+00 f t Invitado Amar invitado-1752166921467@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-2947 +4314 2025-07-10 17:10:39.537379+00 2025-07-10 17:10:39.53739+00 f t Invitado Amar invitado-1752167439110@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-2948 +4315 2025-07-10 17:53:41.519031+00 2025-07-10 17:53:41.51904+00 f t Invitado Amar invitado-1752170019294@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-2949 +4316 2025-07-10 18:05:57.487048+00 2025-07-10 18:05:57.487061+00 f t Invitado Amar invitado-1752170756672@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-2950 +4317 2025-07-10 18:07:22.336094+00 2025-07-10 18:07:22.336103+00 f t Ignacio Manuel Halle mhcmhalle@gmail.com +541166201339 \N Plaza 1847 Casa \N \N -34.5741054 -58.4712204 29 1369 \N ihalle +4318 2025-07-10 18:23:56.185929+00 2025-07-10 18:23:56.185938+00 f t Invitado Amar invitado-1752171828461@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2951 +4319 2025-07-10 18:58:33.312632+00 2025-07-10 18:58:33.312643+00 f t Invitado Amar invitado-1752173912486@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2952 +4320 2025-07-10 19:23:00.303334+00 2025-07-10 19:23:00.303342+00 f t Invitado Amar invitado-1752175379761@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-2953 +4321 2025-07-10 20:08:56.994242+00 2025-07-10 20:08:56.994251+00 f t Invitado Amar invitado-1752178136098@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2954 +4322 2025-07-10 20:16:58.087419+00 2025-07-10 20:16:58.087428+00 f t Valeria Aruguete valeria0209@gmail.com +541169332319 \N Felipe Vallese 2560 \N \N -34.6217892 -58.4682977 4 1345 \N varuguete +4323 2025-07-10 20:51:53.231019+00 2025-07-10 20:51:53.231028+00 f t Invitado Amar invitado-1752180712838@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2955 +4324 2025-07-10 20:53:02.860013+00 2025-07-10 20:53:02.860022+00 f t Maria Celia Quiroga maceliaquiroga@gmail.com 91159240260 \N Av. Santa Fe 5118 1D \N FEMALE \N -34.576613 -58.4320319 1 1346 \N mquiroga +4325 2025-07-10 21:07:35.448287+00 2025-07-10 21:07:35.448295+00 f t Mónica Margarita Moyano monicamoyano2014@gmail.com +5491158364507 \N Aristóbulo del valle 650 \N \N FEMALE 1971-07-11 -34.4149447 -58.598579 22 1347 \N mmoyano +4326 2025-07-10 21:15:28.180702+00 2025-07-10 21:15:28.18071+00 f t Invitado Amar invitado-1752182053727@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-2956 +4327 2025-07-10 21:16:27.814971+00 2025-07-10 21:16:27.81498+00 f t Invitado Amar invitado-1752182113590@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-2957 +4328 2025-07-10 21:23:41.808318+00 2025-07-10 21:23:41.808327+00 f t Invitado Amar invitado-1752182621726@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-2958 +4329 2025-07-10 21:35:26.002185+00 2025-07-10 21:35:26.002193+00 f t Invitado Amar invitado-1752183324597@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-2959 +4330 2025-07-10 21:51:31.532988+00 2025-07-10 21:51:31.533001+00 f t Invitado Amar invitado-1752184290450@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-2960 +4331 2025-07-10 22:02:51.96524+00 2025-07-10 22:02:51.96525+00 f t Invitado Amar invitado-1752184970975@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2961 +4332 2025-07-10 22:22:42.386648+00 2025-07-10 22:22:42.386656+00 f t Anastasia Domini a.v.domini@gmail.com 91123956467 \N Av. Belgrano 553 depto 3K \N FEMALE 1989-02-07 -53.7846086 -67.6997478 112 1349 \N adomini +4333 2025-07-10 22:23:58.116732+00 2025-07-10 22:23:58.11674+00 f t Invitado Amar invitado-1752186236948@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2962 +4334 2025-07-10 22:51:11.918422+00 2025-07-10 22:51:11.918428+00 f t Mariangeles Barbagallo mariangelesbarbagallo@hotmail.com +5491126998148 \N Libertador 5740 \N \N FEMALE \N -34.5592347 -58.4457407 3 1350 \N mbarbagallo +4335 2025-07-10 22:56:56.774749+00 2025-07-10 22:56:56.774758+00 f t Invitado Amar invitado-1752188216262@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2963 +4336 2025-07-10 23:41:53.566921+00 2025-07-10 23:41:53.566934+00 f t Invitado Amar invitado-1752190913540@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2964 +4337 2025-07-11 00:04:36.524601+00 2025-07-11 00:04:36.524608+00 f t Estrella Terzano estrellaterzano@gmail.com 91162743300 \N Nogoya 3257 PB E \N FEMALE \N -34.6042067 -58.4942493 17 1356 \N eterzano +4338 2025-07-11 01:04:56.624698+00 2025-07-11 01:04:56.624707+00 f t Vanesa Silvina Latorre vane.latorre@live.com.ar +541155634676 \N Piedras 1377 4 A \N \N -34.6247068 -58.3769185 60 \N \N vlatorre +4339 2025-07-11 01:20:27.001583+00 2025-07-11 01:20:27.001591+00 f t Invitado Amar invitado-1752196826288@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-2965 +4340 2025-07-11 01:30:15.552261+00 2025-07-11 01:30:15.552274+00 f t Invitado Amar invitado-1752197414332@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-2966 +4341 2025-07-11 01:43:41.637963+00 2025-07-11 01:43:41.637971+00 f t Invitado Amar invitado-1752198221149@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2967 +4342 2025-07-11 02:09:40.270286+00 2025-07-11 02:09:40.270296+00 f t Belen Malomo belenmalomo@gmail.com +541169189960 \N Lavalleja 202 4C \N FEMALE \N -34.602087 -58.4364159 26 \N \N bmalomo +4343 2025-07-11 02:53:16.713831+00 2025-07-11 02:53:16.713839+00 f t Invitado Amar invitado-1752202396369@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2968 +4344 2025-07-11 03:04:20.092665+00 2025-07-11 03:04:20.092675+00 f t Invitado Amar invitado-1752203059656@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-2969 +4345 2025-07-11 04:07:20.089889+00 2025-07-11 04:07:20.089897+00 f t Nicolas Acquila nicoacquila@gmail.com +541138605508 \N Coronel Burelas 3587 Casa \N \N \N \N 70 \N \N nacquila +4346 2025-07-11 04:16:05.095351+00 2025-07-11 04:16:05.095363+00 f t Fernando Miele franciscofernandomiele@gmail.com +541136438414 \N Martha salotti 574 Piso 12..03 \N \N -34.6134021 -58.3605219 30 \N \N fmiele +4347 2025-07-11 04:30:31.721531+00 2025-07-11 04:30:31.72154+00 f t Invitado Amar invitado-1752208230517@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2970 +4348 2025-07-11 07:46:35.041882+00 2025-07-11 07:46:35.041895+00 f t Invitado Amar invitado-1752219994106@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2971 +4349 2025-07-11 07:48:18.168257+00 2025-07-11 07:48:18.168279+00 f t Invitado Amar invitado-1752220097668@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2972 +4350 2025-07-11 07:52:51.681828+00 2025-07-11 07:52:51.681838+00 f t Invitado Amar invitado-1752220370748@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2973 +4351 2025-07-11 09:42:00.763909+00 2025-07-11 09:42:00.763921+00 f t Invitado Amar invitado-1752226920433@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-2974 +4352 2025-07-11 10:38:21.551202+00 2025-07-11 10:38:21.551212+00 f t Invitado Amar invitado-1752230300464@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-2975 +4353 2025-07-11 10:52:52.336705+00 2025-07-11 10:52:52.336714+00 f t Invitado Amar invitado-1752231147325@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-2976 +4354 2025-07-11 11:30:50.067959+00 2025-07-11 11:30:50.067968+00 f t Invitado Amar invitado-1752233449099@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2977 +4355 2025-07-11 11:31:02.683719+00 2025-07-11 11:31:02.683731+00 f t Invitado Amar invitado-1752233462669@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-2978 +4356 2025-07-11 11:44:05.98825+00 2025-07-11 11:44:05.988259+00 f t Invitado Amar invitado-1752234245529@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2979 +4357 2025-07-11 11:59:20.88964+00 2025-07-11 11:59:20.889649+00 f t Invitado Amar invitado-1752235159723@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-2980 +4358 2025-07-11 12:14:43.138838+00 2025-07-11 12:14:43.138852+00 f t Invitado Amar invitado-1752236082307@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2981 +4359 2025-07-11 12:34:48.214695+00 2025-07-11 12:34:48.214705+00 f t Invitado Amar invitado-1752237287549@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2982 +4360 2025-07-11 13:43:22.777782+00 2025-07-11 13:43:22.777791+00 f t Invitado Amar invitado-1752241402652@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-2983 +4361 2025-07-11 14:09:48.855577+00 2025-07-11 14:09:48.855592+00 f t Invitado Amar invitado-1752242989744@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-2984 +4362 2025-07-11 14:38:35.415489+00 2025-07-11 14:38:35.415497+00 f t Invitado Amar invitado-1752244714230@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2985 +4363 2025-07-11 14:39:46.685635+00 2025-07-11 14:39:46.685644+00 f t Invitado Amar invitado-1752244271029@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2986 +4364 2025-07-11 14:40:17.205153+00 2025-07-11 14:40:17.205161+00 f t Invitado Amar invitado-1752244301765@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2987 +4365 2025-07-11 14:40:36.633829+00 2025-07-11 14:40:36.633842+00 f t Invitado Amar invitado-1752244321190@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-2988 +4366 2025-07-11 15:40:29.553067+00 2025-07-11 15:40:29.553076+00 f t Invitado Amar invitado-1752248429122@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-2989 +4367 2025-07-11 15:41:25.788107+00 2025-07-11 15:41:25.788117+00 f t Invitado Amar invitado-1752248264437@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2990 +4368 2025-07-11 16:10:37.993516+00 2025-07-11 16:10:37.993525+00 f t Invitado Amar invitado-1752250237236@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-2991 +4369 2025-07-11 16:19:35.148795+00 2025-07-11 16:19:35.148807+00 f t Invitado Amar invitado-1752250775406@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-2992 +4370 2025-07-11 17:33:02.060811+00 2025-07-11 17:33:02.060823+00 f t Invitado Amar invitado-1752255181053@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2993 +4371 2025-07-11 18:10:58.507965+00 2025-07-11 18:10:58.507982+00 f t Invitado Amar invitado-1752257457409@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2994 +4372 2025-07-11 18:12:38.090006+00 2025-07-11 18:12:38.090018+00 f t Invitado Amar invitado-1752257556936@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-2995 +4373 2025-07-11 18:16:08.097101+00 2025-07-11 18:16:08.097114+00 f t Invitado Amar invitado-1752257766932@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-2996 +4374 2025-07-11 18:25:16.925892+00 2025-07-11 18:25:16.925901+00 f t Invitado Amar invitado-1752258316194@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-2997 +4375 2025-07-11 18:26:31.411885+00 2025-07-11 18:26:31.411893+00 f t Invitado Amar invitado-1752258391193@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2998 +4376 2025-07-11 18:27:28.176083+00 2025-07-11 18:27:28.176092+00 f t Invitado Amar invitado-1752258447700@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-2999 +4377 2025-07-11 19:18:14.047544+00 2025-07-11 19:18:14.047553+00 f t Invitado Amar invitado-1752261493788@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-3000 +4378 2025-07-11 19:55:30.217822+00 2025-07-11 19:55:30.217831+00 f t Invitado Amar invitado-1752263729388@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-3001 +4379 2025-07-11 20:47:21.565923+00 2025-07-11 20:47:21.565936+00 f t Invitado Amar invitado-1752266841100@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-3002 +4380 2025-07-11 20:56:31.344337+00 2025-07-11 20:56:31.344344+00 f t Camila koenigstein camilakoenigstein@gmail.com 91166865784 \N Maipú 741 5A \N FEMALE 1984-05-28 -34.5994999 -58.3767619 13 1351 \N ckoenigstein +4381 2025-07-11 21:43:16.057807+00 2025-07-11 21:43:16.057816+00 f t Invitado Amar invitado-1752270195661@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3003 +4382 2025-07-11 22:14:38.454617+00 2025-07-11 22:14:38.45463+00 f t Invitado Amar invitado-1752272078079@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-3004 +4383 2025-07-11 22:37:44.719204+00 2025-07-11 22:37:44.719213+00 f t Invitado Amar invitado-1752273463908@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3005 +4384 2025-07-11 22:47:47.762589+00 2025-07-11 22:47:47.762597+00 f t Eduardo Castilla eduarcasti@hotmail.com +541144186821 \N Sucre 2004 6 \N MALE \N -34.561821 -58.4513932 3 1354 \N ecastilla +4385 2025-07-11 22:49:54.119272+00 2025-07-11 22:49:54.11928+00 f t Claudia Apaza Meza claudhia.am@gmail.com +541134961313 \N Av. Triunvirato 3568 3 \N \N -34.5825178 -58.4716293 24 \N \N capazameza +4386 2025-07-11 23:03:13.215705+00 2025-07-11 23:03:13.215714+00 f t Invitado Amar invitado-1752274991836@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3006 +4387 2025-07-11 23:39:53.148378+00 2025-07-11 23:39:53.148386+00 f t Invitado Amar invitado-1752277192440@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-3007 +4388 2025-07-11 23:42:43.541979+00 2025-07-11 23:42:43.541987+00 f t Invitado Amar invitado-1752277362855@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3008 +4389 2025-07-11 23:55:06.809889+00 2025-07-11 23:55:06.809898+00 f t Belén Antonella Falcone belenfalcone00@hotmail.com.ar +5491155087643 \N Justo José de Urquiza 4750 Piso 9h \N FEMALE 2000-07-31 -32.4502868 -58.4586153 88 1352 \N bfalcone +4390 2025-07-12 00:10:03.744779+00 2025-07-12 00:10:03.74479+00 f t Alejandra Conde alitaconde@hotmail.com +5491158666058 \N Don orione 2773 \N \N FEMALE 1977-04-06 -34.7133322 -58.4195405 70 1353 \N aconde +4391 2025-07-12 00:17:22.92997+00 2025-07-12 00:17:22.929983+00 f t Invitado Amar invitado-1752279442530@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-3009 +4392 2025-07-12 00:49:29.737024+00 2025-07-12 00:49:29.737035+00 f t Invitado Amar invitado-1752281370152@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-3010 +4393 2025-07-12 00:59:52.099333+00 2025-07-12 00:59:52.099345+00 f t Invitado Amar invitado-1752281991305@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3011 +4394 2025-07-12 01:15:54.97146+00 2025-07-12 01:15:54.971469+00 f t Invitado Amar invitado-1752282954185@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-3012 +4395 2025-07-12 03:03:05.257639+00 2025-07-12 03:03:05.257654+00 f t Invitado Amar invitado-1752289384550@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-3013 +4396 2025-07-12 04:38:58.597785+00 2025-07-12 04:38:58.597795+00 f t Invitado Amar invitado-1752295137775@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3014 +4397 2025-07-12 05:39:53.916491+00 2025-07-12 05:39:53.916504+00 f t Invitado Amar invitado-1752298793587@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3015 +4398 2025-07-12 06:04:59.180595+00 2025-07-12 06:04:59.180603+00 f t Invitado Amar invitado-1752300299064@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3016 +4399 2025-07-12 07:22:33.039283+00 2025-07-12 07:22:33.039293+00 f t Invitado Amar invitado-1752304952309@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3017 +4400 2025-07-12 07:26:45.569023+00 2025-07-12 07:26:45.569033+00 f t Invitado Amar invitado-1752305205408@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3018 +4401 2025-07-12 07:28:59.117672+00 2025-07-12 07:28:59.117681+00 f t Invitado Amar invitado-1752305338963@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3019 +4402 2025-07-12 07:31:57.35581+00 2025-07-12 07:31:57.355818+00 f t Invitado Amar invitado-1752305517006@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-3020 +4403 2025-07-12 09:06:59.306313+00 2025-07-12 09:06:59.306322+00 f t Invitado Amar invitado-1752311217967@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3021 +4404 2025-07-12 09:12:39.649363+00 2025-07-12 09:12:39.649371+00 f t Invitado Amar invitado-1752311558491@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3022 +4405 2025-07-12 10:29:19.784361+00 2025-07-12 10:29:19.784374+00 f t Invitado Amar invitado-1752316159792@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-3023 +4406 2025-07-12 10:30:04.837178+00 2025-07-12 10:30:04.837192+00 f t Invitado Amar invitado-1752316204382@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-3024 +4407 2025-07-12 10:58:16.235638+00 2025-07-12 10:58:16.235647+00 f t Invitado Amar invitado-1752317895830@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3025 +4408 2025-07-12 11:20:17.988138+00 2025-07-12 11:20:17.988147+00 f t Invitado Amar invitado-1752319217875@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-3026 +4409 2025-07-12 11:37:52.243961+00 2025-07-12 11:37:52.243969+00 f t Invitado Amar invitado-1752320271850@example.com 55555555 \N \N \N \N \N 7 \N \N iamar-3027 +4410 2025-07-12 12:05:47.331251+00 2025-07-12 12:05:47.331264+00 f t Invitado Amar invitado-1752321947924@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3028 +4411 2025-07-12 12:07:06.441598+00 2025-07-12 12:07:06.441608+00 f t Invitado Amar invitado-1752322026114@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3029 +4412 2025-07-12 12:35:34.815733+00 2025-07-12 12:35:34.815741+00 f t Invitado Amar invitado-1752323732734@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3030 +4413 2025-07-12 13:57:11.487836+00 2025-07-12 13:57:11.487848+00 f t Invitado Amar invitado-1752328630693@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-3031 +4414 2025-07-12 14:48:15.925212+00 2025-07-12 14:48:15.925223+00 f t Invitado Amar invitado-1752331695504@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3032 +4415 2025-07-12 14:49:13.715735+00 2025-07-12 14:49:13.715745+00 f t Guillermo Costa jguillermocosta@gmail.com +541158865653 \N Tte gral juan domingo peron 2250 3 J \N \N \N \N \N 18 \N \N gcosta-2 +4416 2025-07-12 14:50:31.327639+00 2025-07-12 14:50:31.327651+00 f t Invitado Amar invitado-1752331831098@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3033 +4417 2025-07-12 16:30:36.518674+00 2025-07-12 16:30:36.518685+00 f t Invitado Amar invitado-1752337835156@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3034 +4418 2025-07-12 16:50:47.869736+00 2025-07-12 16:50:47.869743+00 f t Gustavo Repetto gustavorepetto@gmail.com 491157207246 \N Murguiondo 135 \N \N MALE \N -34.6407928 -58.5186979 52 1360 \N grepetto +4419 2025-07-12 16:56:14.616537+00 2025-07-12 16:56:14.616548+00 f t Invitado Amar invitado-1752339373085@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-3035 +4420 2025-07-12 17:42:17.970055+00 2025-07-12 17:42:17.970066+00 f t Invitado Amar invitado-1752342137564@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3036 +4421 2025-07-12 17:44:12.813114+00 2025-07-12 17:44:12.813126+00 f t Invitado Amar invitado-1752342252212@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-3037 +4422 2025-07-12 17:52:13.609049+00 2025-07-12 17:52:13.609057+00 f t Invitado Amar invitado-1752342732854@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3038 +4423 2025-07-12 17:55:20.855884+00 2025-07-12 17:55:20.855893+00 f t Invitado Amar invitado-1752342920416@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3039 +4424 2025-07-12 17:56:07.94199+00 2025-07-12 17:56:07.941999+00 f t Invitado Amar invitado-1752342967312@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3040 +4425 2025-07-12 18:01:11.352162+00 2025-07-12 18:01:11.352175+00 f t Invitado Amar invitado-1752343271010@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-3041 +4426 2025-07-12 18:47:47.584569+00 2025-07-12 18:47:47.584582+00 f t Invitado Amar invitado-1752346066608@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3042 +4427 2025-07-12 18:52:52.887601+00 2025-07-12 18:52:52.887613+00 f t Invitado Amar invitado-1752346373491@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3043 +4428 2025-07-12 19:08:49.374955+00 2025-07-12 19:08:49.374963+00 f t Invitado Amar invitado-1752347329857@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-3044 +4429 2025-07-12 19:29:09.416259+00 2025-07-12 19:29:09.416267+00 f t Invitado Amar invitado-1752348548920@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-3045 +4430 2025-07-12 20:01:40.280709+00 2025-07-12 20:01:40.28072+00 f t Invitado Amar invitado-1752350499646@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3046 +4431 2025-07-12 20:02:52.743223+00 2025-07-12 20:02:52.743232+00 f t Invitado Amar invitado-1752350572595@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3047 +4432 2025-07-12 20:24:28.730884+00 2025-07-12 20:24:28.730893+00 f t Invitado Amar invitado-1752351867045@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-3048 +4433 2025-07-12 20:30:20.693085+00 2025-07-12 20:30:20.693094+00 f t José cerrada joseacerrada@gmail.com 5491170391288 \N Agrelo 3055 casa \N MALE 1988-06-16 -34.6189976 -58.422672 23 1357 \N jcerrada +4434 2025-07-12 20:35:23.760972+00 2025-07-12 20:35:23.760979+00 f t Nancy Vazquez nacy@gmail.com 5491122497175 \N gascon 772 Deportando 9D \N FEMALE 1948-02-18 -34.6020334 -58.4241163 23 1358 \N nvazquez +4435 2025-07-12 20:39:25.118755+00 2025-07-12 20:39:25.118761+00 f t Fernando Marchetta fmarche6@gmail.com 5491162669990 \N Bustamante 1250 \N \N MALE 1966-12-12 -34.7681999 -58.4171043 71 1359 \N fmarchetta +4436 2025-07-12 21:02:28.277566+00 2025-07-12 21:02:28.277579+00 f t Invitado Amar invitado-1752354147958@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3049 +4437 2025-07-12 21:10:28.471913+00 2025-07-12 21:10:28.471922+00 f t Invitado Amar invitado-1752354628088@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-3050 +4438 2025-07-12 21:19:32.192715+00 2025-07-12 21:19:32.192726+00 f t Invitado Amar invitado-1752355171936@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3051 +4439 2025-07-12 21:21:48.561409+00 2025-07-12 21:21:48.561417+00 f t Guillermo Costa guillermocosta@outlook.com +541158865653 \N TENIENTE GENERAL JUAN DOMINGO PERON 2250 3J \N \N -34.6073701 -58.3985286 18 \N \N gcosta-3 +4440 2025-07-12 22:52:11.199452+00 2025-07-12 22:52:11.199461+00 f t Invitado Amar invitado-1752360730884@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3052 +4441 2025-07-12 23:23:46.915462+00 2025-07-12 23:23:46.915471+00 f t Invitado Amar invitado-1752362625565@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3053 +4442 2025-07-12 23:56:36.513805+00 2025-07-12 23:56:36.513817+00 f t Invitado Amar invitado-1752364595239@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3054 +4443 2025-07-12 23:59:38.229967+00 2025-07-12 23:59:38.229975+00 f t Invitado Amar invitado-1752364777434@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3055 +4444 2025-07-13 00:13:28.897336+00 2025-07-13 00:13:28.897345+00 f t Invitado Amar invitado-1752365609977@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3056 +4445 2025-07-13 00:13:38.000643+00 2025-07-13 00:13:38.000652+00 f t Jeremias Gabriel jeresuperestudio@gmail.com +541140434349 \N Conde 2531 \N \N -34.563287 -58.4688359 45 \N \N jgabriel +4446 2025-07-13 00:14:55.019368+00 2025-07-13 00:14:55.019376+00 f t Invitado Amar invitado-1752365694282@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3057 +4447 2025-07-13 00:22:06.46888+00 2025-07-13 00:22:06.468888+00 f t Invitado Amar invitado-1752366125963@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-3058 +4448 2025-07-13 00:23:53.758724+00 2025-07-13 00:23:53.758735+00 f t Micaela Ramos ramos.micaela1804@gmail.com +541136752188 \N Rosario 465 3ro 13 \N \N -34.620012 -58.4381407 14 \N \N mramos +4449 2025-07-13 00:24:26.150238+00 2025-07-13 00:24:26.150249+00 f t Invitado Amar invitado-1752366264740@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3059 +4450 2025-07-13 00:35:26.583688+00 2025-07-13 00:35:26.583699+00 f t Invitado Amar invitado-1752366891100@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-3060 +4451 2025-07-13 00:55:25.862845+00 2025-07-13 00:55:25.862858+00 f t Invitado Amar invitado-1752368124995@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3061 +4452 2025-07-13 01:14:43.980757+00 2025-07-13 01:14:43.980766+00 f t Invitado Amar invitado-1752369282991@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3062 +4453 2025-07-13 02:02:07.232837+00 2025-07-13 02:02:07.23285+00 f t Invitado Amar invitado-1752372126735@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3063 +4454 2025-07-13 02:04:19.088127+00 2025-07-13 02:04:19.088139+00 f t Invitado Amar invitado-1752372258009@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-3064 +4455 2025-07-13 02:05:12.053613+00 2025-07-13 02:05:12.053625+00 f t Invitado Amar invitado-1752372311430@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-3065 +4456 2025-07-13 02:20:29.721154+00 2025-07-13 02:20:29.721166+00 f t Invitado Amar invitado-1752373229311@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3066 +4457 2025-07-13 03:59:18.815173+00 2025-07-13 03:59:18.81518+00 f t Invitado Amar invitado-1752379160132@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3067 +4458 2025-07-13 04:01:29.599349+00 2025-07-13 04:01:29.59936+00 f t Invitado Amar invitado-1752379291134@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3068 +4459 2025-07-13 06:32:02.435181+00 2025-07-13 06:32:02.435193+00 f t Invitado Amar invitado-1752388321649@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3069 +4460 2025-07-13 09:23:10.782202+00 2025-07-13 09:23:10.782212+00 f t Invitado Amar invitado-1752398590163@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3070 +4461 2025-07-13 09:31:53.479405+00 2025-07-13 09:31:53.479413+00 f t Julia Louis mjulialouis@fibertel.com.ar +5491153018411 \N Arenales 2992 7 \N \N \N -34.5903497 -58.4069467 9 1362 \N jlouis +4462 2025-07-13 11:37:12.47336+00 2025-07-13 11:37:12.473369+00 f t Maru Foix foixmariela@gmail.com +541128311594 \N Juramento 5115 3ero 10 \N \N -34.5784109 -58.4831212 29 \N \N mfoix +4463 2025-07-13 12:08:08.064802+00 2025-07-13 12:08:08.064812+00 f t Invitado Amar invitado-1752408488212@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3071 +4464 2025-07-13 12:14:38.814232+00 2025-07-13 12:14:38.814241+00 f t Invitado Amar invitado-1752408877926@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3072 +4465 2025-07-13 12:47:10.482488+00 2025-07-13 12:47:10.4825+00 f t Invitado Amar invitado-1752410831332@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3073 +4466 2025-07-13 12:55:20.095341+00 2025-07-13 12:55:20.095354+00 f t Ricardo Cordeiro Vitória de Moraes ricardo.deminho@gmail.com +5561996330701 \N Juncal 1627 3 piso \N \N -34.5941807 -58.3904823 9 \N \N rcordeirovitoriademoraes +4467 2025-07-13 13:26:46.913375+00 2025-07-13 13:26:46.913383+00 f t Invitado Amar invitado-1752413207211@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3074 +4468 2025-07-13 13:32:10.782185+00 2025-07-13 13:32:10.782194+00 f t Invitado Amar invitado-1752413531073@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3075 +4469 2025-07-13 13:48:12.762234+00 2025-07-13 13:48:12.762244+00 f t Invitado Amar invitado-1752414491950@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3076 +4470 2025-07-13 13:51:38.448517+00 2025-07-13 13:51:38.448526+00 f t Invitado Amar invitado-1752414698237@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3077 +4471 2025-07-13 14:24:07.66952+00 2025-07-13 14:24:07.66953+00 f t Luca Vitale lucavitale123456789@hotmail.com 91125655346 \N General cesar díaz 5720 \N \N MALE 2000-02-22 -34.6327072 -58.5034867 65 1361 \N lvitale +4472 2025-07-13 14:39:15.755895+00 2025-07-13 14:39:15.755907+00 f t Invitado Amar invitado-1752417555390@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3078 +4473 2025-07-13 14:46:36.692595+00 2025-07-13 14:46:36.692606+00 f t Invitado Amar invitado-1752417998046@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3079 +4474 2025-07-13 14:52:50.613912+00 2025-07-13 14:52:50.613924+00 f t Invitado Amar invitado-1752418370059@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-3080 +4475 2025-07-13 14:54:50.406305+00 2025-07-13 14:54:50.406315+00 f t Maria José Cadevilla belialdemon99@gmail.com +541133142529 \N Cabello 3322 4to 13 \N \N -34.5816866 -58.4079595 1 \N \N mcadevilla +4476 2025-07-13 15:51:29.084996+00 2025-07-13 15:51:29.085005+00 f t Invitado Amar invitado-1752421888591@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-3081 +4477 2025-07-13 16:28:00.615611+00 2025-07-13 16:28:00.61562+00 f t Invitado Amar invitado-1752424080724@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3082 +4478 2025-07-13 17:11:16.88213+00 2025-07-13 17:11:16.882138+00 f t Invitado Amar invitado-1752426676010@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-3083 +4479 2025-07-13 17:25:21.029306+00 2025-07-13 17:25:21.029317+00 f t Invitado Amar invitado-1752427520150@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3084 +4480 2025-07-13 17:26:47.33379+00 2025-07-13 17:26:47.333799+00 f t Invitado Amar invitado-1752427607152@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3085 +4481 2025-07-13 17:32:49.211982+00 2025-07-13 17:32:49.21199+00 f t Invitado Amar invitado-1752427969003@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3086 +4482 2025-07-13 17:38:13.439832+00 2025-07-13 17:38:13.439841+00 f t Invitado Amar invitado-1752428294040@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3087 +4483 2025-07-13 18:19:35.056798+00 2025-07-13 18:19:35.05681+00 f t Invitado Amar invitado-1752430774164@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3088 +4484 2025-07-13 18:55:17.936504+00 2025-07-13 18:55:17.936517+00 f t Invitado Amar invitado-1752432917511@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3089 +4485 2025-07-13 19:24:13.697439+00 2025-07-13 19:24:13.697448+00 f t Malvina Alejandra Chaves malviale82@gmail.com 5491133149928 \N Aguirre 651 2do c e/ Malabia y Acevedo \N FEMALE 1982-05-04 -34.5963143 -58.4367707 26 1363 \N mchaves +4486 2025-07-13 20:30:10.03836+00 2025-07-13 20:30:10.038369+00 f t Invitado Amar invitado-1752438609583@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3090 +4487 2025-07-13 20:31:44.173482+00 2025-07-13 20:31:44.173489+00 f t Invitado Amar invitado-1752438703919@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3091 +4488 2025-07-13 20:47:04.599334+00 2025-07-13 20:47:04.599343+00 f t Invitado Amar invitado-1752439624003@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-3092 +4489 2025-07-13 21:24:40.867317+00 2025-07-13 21:24:40.86733+00 f t Invitado Amar invitado-1752441879977@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3093 +4490 2025-07-13 21:27:10.452969+00 2025-07-13 21:27:10.452981+00 f t Invitado Amar invitado-1752442029770@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3094 +4491 2025-07-13 21:35:08.535235+00 2025-07-13 21:35:08.535248+00 f t Invitado Amar invitado-1752442507902@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-3095 +4492 2025-07-13 21:39:41.136432+00 2025-07-13 21:39:41.136441+00 f t Invitado Amar invitado-1752442780412@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-3096 +4493 2025-07-13 21:57:22.628+00 2025-07-13 21:57:22.628009+00 f t Invitado Amar invitado-1752443841474@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-3097 +4494 2025-07-13 22:01:28.250304+00 2025-07-13 22:01:28.250315+00 f t Invitado Amar invitado-1752444086990@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3098 +4495 2025-07-13 22:28:18.987628+00 2025-07-13 22:28:18.987636+00 f t Invitado Amar invitado-1752445698343@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3099 +4496 2025-07-13 22:41:42.674913+00 2025-07-13 22:41:42.674921+00 f t Invitado Amar invitado-1752446501469@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3100 +4497 2025-07-13 22:50:58.296325+00 2025-07-13 22:50:58.296337+00 f t Invitado Amar invitado-1752447057901@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3101 +4498 2025-07-13 23:00:31.603947+00 2025-07-13 23:00:31.603956+00 f t Maria Mouzo masterpuey899@gmail.com +5491161195904 \N Pichincha 1019 Casa \N \N -34.6210181 -58.3985167 12 \N \N mmouzo +4499 2025-07-13 23:01:15.128619+00 2025-07-13 23:01:15.128629+00 f t Invitado Amar invitado-1752447674996@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3102 +4500 2025-07-13 23:07:26.481968+00 2025-07-13 23:07:26.481977+00 f t Invitado Amar invitado-1752448046009@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3103 +4501 2025-07-13 23:17:40.927167+00 2025-07-13 23:17:40.927177+00 f t Invitado Amar invitado-1752448659011@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3104 +4502 2025-07-13 23:20:21.123073+00 2025-07-13 23:20:21.123084+00 f t Invitado Amar invitado-1752448819550@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3105 +4503 2025-07-14 00:20:04.934268+00 2025-07-14 00:20:04.934282+00 f t Invitado Amar invitado-1752452404506@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3106 +4504 2025-07-14 00:26:37.478843+00 2025-07-14 00:26:37.478855+00 f t Invitado Amar invitado-1752452796675@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-3107 +4505 2025-07-14 00:47:23.979686+00 2025-07-14 00:47:23.979695+00 f t Invitado Amar invitado-1752454043261@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3108 +4506 2025-07-14 01:15:31.484609+00 2025-07-14 01:15:31.484622+00 f t Invitado Amar invitado-1752455730825@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-3109 +4507 2025-07-14 01:17:48.739635+00 2025-07-14 01:17:48.739644+00 f t Invitado Amar invitado-1752455868304@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-3110 +4508 2025-07-14 01:24:59.421169+00 2025-07-14 01:24:59.421181+00 f t Invitado Amar invitado-1752456298870@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-3111 +4509 2025-07-14 01:31:39.917662+00 2025-07-14 01:31:39.917671+00 f t Invitado Amar invitado-1752456698791@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3112 +4510 2025-07-14 01:49:35.569189+00 2025-07-14 01:49:35.569199+00 f t Invitado Amar invitado-1752457774893@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-3113 +4511 2025-07-14 02:04:46.686579+00 2025-07-14 02:04:46.686591+00 f t Invitado Amar invitado-1752458685877@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3114 +13316 2025-11-14 18:12:00.396315+00 2025-11-14 18:12:00.396324+00 f t Invitado Amar invitado-1763143919536@example.com 55555555 \N \N \N \N \N 14 \N \N \N +4513 2025-07-14 02:28:56.315397+00 2025-07-14 02:28:56.31541+00 f t Invitado Amar invitado-1752460135732@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3115 +4514 2025-07-14 03:21:42.792217+00 2025-07-14 03:21:42.792227+00 f t Invitado Amar invitado-1752463302375@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3116 +4515 2025-07-14 03:26:27.848319+00 2025-07-14 03:26:27.848328+00 f t Invitado Amar invitado-1752463587669@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3117 +4516 2025-07-14 04:00:35.818795+00 2025-07-14 04:00:35.818808+00 f t Invitado Amar invitado-1752465635411@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-3118 +4517 2025-07-14 04:56:37.991282+00 2025-07-14 04:56:37.991294+00 f t Invitado Amar invitado-1752468997326@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3119 +4518 2025-07-14 07:09:18.373737+00 2025-07-14 07:09:18.373747+00 f t Invitado Amar invitado-1752476957613@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3120 +4519 2025-07-14 08:35:06.480681+00 2025-07-14 08:35:06.480695+00 f t Invitado Amar invitado-1752482105847@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3121 +4520 2025-07-14 08:58:07.639849+00 2025-07-14 08:58:07.639859+00 f t Invitado Amar invitado-1752483487173@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3122 +4521 2025-07-14 11:40:31.672885+00 2025-07-14 11:40:31.672895+00 f t Invitado Amar invitado-1752493231401@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3123 +4522 2025-07-14 12:11:05.537981+00 2025-07-14 12:11:05.537992+00 f t Invitado Amar invitado-1752495065101@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3124 +4523 2025-07-14 12:44:53.941977+00 2025-07-14 12:44:53.941986+00 f t Invitado Amar invitado-1752497092949@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-3125 +4524 2025-07-14 13:10:31.685563+00 2025-07-14 13:10:31.685571+00 f t Invitado Amar invitado-1752498630243@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3126 +4525 2025-07-14 13:31:43.876293+00 2025-07-14 13:31:43.876301+00 f t Invitado Amar invitado-1752499903456@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-3127 +4526 2025-07-14 13:33:02.736785+00 2025-07-14 13:33:02.736795+00 f t Invitado Amar invitado-1752499981810@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3128 +4527 2025-07-14 13:46:50.336919+00 2025-07-14 13:46:50.336927+00 f t Invitado Amar invitado-1752500809979@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3129 +4528 2025-07-14 14:02:37.486988+00 2025-07-14 14:02:37.486997+00 f t Invitado Amar invitado-1752501756454@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3130 +4529 2025-07-14 14:19:05.434826+00 2025-07-14 14:19:05.434836+00 f t Invitado Amar invitado-1752502744266@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3131 +4530 2025-07-14 14:40:29.023309+00 2025-07-14 14:40:29.023318+00 f t Invitado Amar invitado-1752504028452@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3132 +4531 2025-07-14 15:13:22.504614+00 2025-07-14 15:13:22.504623+00 f t Invitado Amar invitado-1752506002091@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-3133 +4532 2025-07-14 15:24:10.515978+00 2025-07-14 15:24:10.515991+00 f t Gastón Díaz Molina diazmolinag@gmail.com +541136997890 \N España 975 \N \N -34.4272011 -58.5731652 22 \N \N gdiazmolina +4533 2025-07-14 15:25:28.001446+00 2025-07-14 15:25:28.001457+00 f t Invitado Amar invitado-1752506727628@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3134 +4534 2025-07-14 15:29:04.211896+00 2025-07-14 15:29:04.21191+00 f t Invitado Amar invitado-1752506944701@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3135 +4535 2025-07-14 15:50:16.643854+00 2025-07-14 15:50:16.643863+00 f t Invitado Amar invitado-1752508215983@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3136 +4536 2025-07-14 16:02:46.204522+00 2025-07-14 16:02:46.204535+00 f t Invitado Amar invitado-1752508965704@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3137 +4537 2025-07-14 16:08:18.110104+00 2025-07-14 16:08:18.110112+00 f t Invitado Amar invitado-1752509297792@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3138 +4538 2025-07-14 17:05:22.53151+00 2025-07-14 17:05:22.531519+00 f t Malena rosa Castro castro.malenaro@gmail.com +1164142165 \N Gavilan 1273 Casa \N \N -34.6153333 -58.4662826 63 \N \N mcastro +4539 2025-07-14 17:12:49.048384+00 2025-07-14 17:12:49.048393+00 f t Invitado Amar invitado-1752513170597@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3139 +4540 2025-07-14 17:31:20.917165+00 2025-07-14 17:31:20.917175+00 f t Invitado Amar invitado-1752514280316@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3140 +4541 2025-07-14 17:37:29.512987+00 2025-07-14 17:37:29.512995+00 f t Invitado Amar invitado-1752514640532@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3141 +4542 2025-07-14 17:39:31.417137+00 2025-07-14 17:39:31.417145+00 f t Invitado Amar invitado-1752514771019@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3142 +4543 2025-07-14 17:39:41.913517+00 2025-07-14 17:39:41.913528+00 f t Invitado Amar invitado-1752514778186@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3143 +4544 2025-07-14 17:40:18.787811+00 2025-07-14 17:40:18.787822+00 f t Invitado Amar invitado-1752514815454@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3144 +4545 2025-07-14 17:49:47.169061+00 2025-07-14 17:49:47.169069+00 f t Invitado Amar invitado-1752515386842@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-3145 +4546 2025-07-14 18:21:14.016009+00 2025-07-14 18:21:14.016019+00 f t Invitado Amar invitado-1752517272947@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3146 +4547 2025-07-14 18:24:43.709775+00 2025-07-14 18:24:43.709787+00 f t Invitado Amar invitado-1752517483097@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3147 +4548 2025-07-14 18:29:06.616622+00 2025-07-14 18:29:06.616635+00 f t Invitado Amar invitado-1752517745556@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3148 +4549 2025-07-14 18:44:56.436353+00 2025-07-14 18:44:56.436363+00 f t Patricia Garay patogaray2016@gmail.com 91135635785 \N Donato Alvarez 415 1A \N FEMALE 1957-12-23 -34.6208825 -58.4561275 14 1371 \N pgaray +4550 2025-07-14 18:52:06.370695+00 2025-07-14 18:52:06.370702+00 f t Marcos Linari marcos.linari1@hotmail.com +5491155997840 \N La Pampa 2086 , piso 11. Entre Arcos y O´Higgins \N MALE \N -34.5631183 -58.4511472 3 1370 \N mlinari +4551 2025-07-14 18:52:08.297312+00 2025-07-14 18:52:08.297325+00 f t Invitado Amar invitado-1752519127728@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3149 +4552 2025-07-14 19:11:43.691786+00 2025-07-14 19:11:43.691796+00 f t Invitado Amar invitado-1752520302715@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3150 +4553 2025-07-14 19:24:10.871781+00 2025-07-14 19:24:10.871792+00 f t Invitado Amar invitado-1752521041457@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3151 +4554 2025-07-14 20:24:21.152501+00 2025-07-14 20:24:21.15251+00 f t Invitado Amar invitado-1752524660636@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3152 +4555 2025-07-14 20:28:29.499781+00 2025-07-14 20:28:29.499788+00 f t Camila Fraser camilafraser8284@gmail.com 91126150660 \N Nicasio Oroño 1519 Timbre C \N FEMALE \N -34.6077954 -58.459014 14 1373 \N cfraser +4556 2025-07-14 20:39:34.763222+00 2025-07-14 20:39:34.76323+00 f t Invitado Amar invitado-1752525574776@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3153 +4557 2025-07-14 20:45:03.905642+00 2025-07-14 20:45:03.905656+00 f t Invitado Amar invitado-1752525903454@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3154 +13731 2025-11-19 09:11:08.333543+00 2025-11-19 09:11:08.333552+00 f t Invitado Amar invitado-1763543467454@example.com 55555555 \N \N \N \N \N 22 \N \N \N +4558 2025-07-14 20:50:24.837083+00 2025-07-14 20:50:24.837089+00 f t Adriana Terlesky aterlesky@gmail.com 91165027853 \N Republica Arabe Siria 2659 piso 12 D \N FEMALE \N -34.5835319 -58.4156601 1 1372 \N aterlesky +4559 2025-07-14 20:54:50.195405+00 2025-07-14 20:54:50.195414+00 f t Invitado Amar invitado-1752526486612@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-3155 +4560 2025-07-14 20:57:13.809248+00 2025-07-14 20:57:13.809261+00 f t Invitado Amar invitado-1752526630670@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-3156 +4561 2025-07-14 21:31:50.623528+00 2025-07-14 21:31:50.623537+00 f t Invitado Amar invitado-1752528710284@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-3157 +4562 2025-07-14 21:41:23.099044+00 2025-07-14 21:41:23.099056+00 f t Yessica Roman yessica.roman15@gmail.com +541168000593 \N Curupayti 226 \N \N -34.4534621 -58.5992471 22 \N \N yroman +4563 2025-07-14 21:51:59.075799+00 2025-07-14 21:51:59.07581+00 f t Invitado Amar invitado-1752529919373@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3158 +4564 2025-07-14 22:23:31.858692+00 2025-07-14 22:23:31.858703+00 f t Invitado Amar invitado-1752531809597@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3159 +4565 2025-07-14 22:47:52.666122+00 2025-07-14 22:47:52.666134+00 f t Invitado Amar invitado-1752533272218@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3160 +4566 2025-07-14 23:18:10.363551+00 2025-07-14 23:18:10.36356+00 f t Invitado Amar invitado-1752535089812@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3161 +4567 2025-07-14 23:20:23.257234+00 2025-07-14 23:20:23.257244+00 f t Invitado Amar invitado-1752535225670@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3162 +4568 2025-07-14 23:25:48.064327+00 2025-07-14 23:25:48.064336+00 f t Invitado Amar invitado-1752535546282@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-3163 +4569 2025-07-14 23:31:02.299314+00 2025-07-14 23:31:02.299328+00 f t Invitado Amar invitado-1752535861832@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3164 +4570 2025-07-15 00:23:21.396234+00 2025-07-15 00:23:21.396243+00 f t Invitado Amar invitado-1752539000983@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-3165 +4571 2025-07-15 00:32:00.109345+00 2025-07-15 00:32:00.109353+00 f t Invitado Amar invitado-1752539519302@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3166 +4572 2025-07-15 00:38:33.030156+00 2025-07-15 00:38:33.030167+00 f t Invitado Amar invitado-1752539912033@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-3167 +4573 2025-07-15 01:11:49.54175+00 2025-07-15 01:11:49.541759+00 f t Valeria Damiani vale_damiani@hotmail.com +541164789243 \N Cucha Cucha 1150 \N \N \N \N -34.6093602 -58.4345689 14 1380 \N vdamiani +4574 2025-07-15 01:16:15.297274+00 2025-07-15 01:16:15.297286+00 f t Invitado Amar invitado-1752542174714@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3168 +4575 2025-07-15 01:35:10.505153+00 2025-07-15 01:35:10.505164+00 f t Invitado Amar invitado-1752543309876@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-3169 +4576 2025-07-15 01:46:49.555665+00 2025-07-15 01:46:49.555674+00 f t Invitado Amar invitado-1752544009519@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-3170 +4577 2025-07-15 02:00:39.580473+00 2025-07-15 02:00:39.580481+00 f t Gabriela Procopio mgp_jsc@hotmail.com +541168153774 \N Lisandro de la torre 4943 \N \N -34.6719719 -58.4883411 64 \N \N gprocopio +4578 2025-07-15 02:29:05.148199+00 2025-07-15 02:29:05.148212+00 f t Invitado Amar invitado-1752546544643@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3171 +4579 2025-07-15 02:31:48.35959+00 2025-07-15 02:31:48.359599+00 f t Invitado Amar invitado-1752546706993@example.com 55555555 \N \N \N \N \N 146 \N \N iamar-3172 +4580 2025-07-15 02:40:46.033785+00 2025-07-15 02:40:46.033798+00 f t Invitado Amar invitado-1752547246316@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3173 +4581 2025-07-15 07:02:29.766086+00 2025-07-15 07:02:29.766095+00 f t Invitado Amar invitado-1752562948984@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3174 +4582 2025-07-15 07:06:06.799203+00 2025-07-15 07:06:06.799216+00 f t Invitado Amar invitado-1752563164941@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3175 +4583 2025-07-15 07:08:58.029061+00 2025-07-15 07:08:58.029071+00 f t Invitado Amar invitado-1752563337739@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3176 +4584 2025-07-15 09:36:18.392908+00 2025-07-15 09:36:18.392918+00 f t Invitado Amar invitado-1752572177732@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3177 +4585 2025-07-15 10:59:34.944413+00 2025-07-15 10:59:34.944426+00 f t Invitado Amar invitado-1752577174430@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3178 +4586 2025-07-15 11:11:40.121813+00 2025-07-15 11:11:40.121826+00 f t Invitado Amar invitado-1752577899774@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-3179 +4587 2025-07-15 11:26:05.010787+00 2025-07-15 11:26:05.010801+00 f t Invitado Amar invitado-1752578764732@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3180 +4588 2025-07-15 11:56:55.52186+00 2025-07-15 11:56:55.521869+00 f t Invitado Amar invitado-1752580614638@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3181 +4589 2025-07-15 12:31:12.864263+00 2025-07-15 12:31:12.864271+00 f t Invitado Amar invitado-1752582672443@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3182 +4590 2025-07-15 12:39:22.436949+00 2025-07-15 12:39:22.436958+00 f t Invitado Amar invitado-1752583161951@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3183 +4591 2025-07-15 12:42:31.537393+00 2025-07-15 12:42:31.537405+00 f t Invitado Amar invitado-1752583351066@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3184 +4592 2025-07-15 12:47:56.65529+00 2025-07-15 12:47:56.6553+00 f t Invitado Amar invitado-1752583676368@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3185 +4593 2025-07-15 12:54:49.387019+00 2025-07-15 12:54:49.387031+00 f t Invitado Amar invitado-1752584088815@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3186 +4594 2025-07-15 13:18:43.468422+00 2025-07-15 13:18:43.468431+00 f t Invitado Amar invitado-1752585523053@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-3187 +4595 2025-07-15 13:27:24.182836+00 2025-07-15 13:27:24.182847+00 f t Invitado Amar invitado-1752586043858@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3188 +4596 2025-07-15 13:46:59.775338+00 2025-07-15 13:46:59.775348+00 f t Invitado Amar invitado-1752586232444@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3189 +4597 2025-07-15 13:50:07.744607+00 2025-07-15 13:50:07.744686+00 f t Invitado Amar invitado-1752587406610@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3190 +4598 2025-07-15 13:55:23.925414+00 2025-07-15 13:55:23.925426+00 f t Invitado Amar invitado-1752587723640@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-3191 +4599 2025-07-15 13:59:59.089802+00 2025-07-15 13:59:59.08981+00 f t Invitado Amar invitado-1752587998285@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3192 +4600 2025-07-15 14:01:08.550063+00 2025-07-15 14:01:08.550073+00 f t Invitado Amar invitado-1752588067841@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-3193 +4601 2025-07-15 14:08:28.212172+00 2025-07-15 14:08:28.21218+00 f t Invitado Amar invitado-1752588508875@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3194 +4602 2025-07-15 14:10:32.587326+00 2025-07-15 14:10:32.587336+00 f t Invitado Amar invitado-1752588631994@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3195 +4603 2025-07-15 14:11:58.20834+00 2025-07-15 14:11:58.20835+00 f t Invitado Amar invitado-1752588719252@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3196 +4604 2025-07-15 14:16:28.625909+00 2025-07-15 14:16:28.625918+00 f t Candela Lezama candelalezama@gmail.com +541131707075 \N Avenida Hipólito Yrigoyen 2972 3 23 \N \N -34.6114735 -58.4082805 18 1374 \N clezama +4605 2025-07-15 14:20:59.74087+00 2025-07-15 14:20:59.74088+00 f t Invitado Amar invitado-1752589259210@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3197 +4606 2025-07-15 14:33:49.147748+00 2025-07-15 14:33:49.14776+00 f t Invitado Amar invitado-1752590028595@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-3198 +4607 2025-07-15 14:40:56.403089+00 2025-07-15 14:40:56.403102+00 f t Invitado Amar invitado-1752590455689@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3199 +4608 2025-07-15 15:09:22.937774+00 2025-07-15 15:09:22.937783+00 f t Invitado Amar invitado-1752592162395@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3200 +4609 2025-07-15 15:18:31.331441+00 2025-07-15 15:18:31.331454+00 f t Invitado Amar invitado-1752592710141@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3201 +4610 2025-07-15 15:23:04.008853+00 2025-07-15 15:23:04.008866+00 f t Invitado Amar invitado-1752592983664@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3202 +4611 2025-07-15 15:23:39.269632+00 2025-07-15 15:23:39.269642+00 f t Invitado Amar invitado-1752593018958@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-3203 +4612 2025-07-15 15:23:54.784794+00 2025-07-15 15:23:54.784804+00 f t Invitado Amar invitado-1752593034384@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-3204 +4613 2025-07-15 15:29:57.506728+00 2025-07-15 15:29:57.506741+00 f t Invitado Amar invitado-1752593397092@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-3205 +4614 2025-07-15 15:43:15.000216+00 2025-07-15 15:43:15.000228+00 f t Invitado Amar invitado-1752594194931@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3206 +4615 2025-07-15 15:46:59.591761+00 2025-07-15 15:46:59.591774+00 f t Invitado Amar invitado-1752594419245@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-3207 +4616 2025-07-15 15:48:59.560148+00 2025-07-15 15:48:59.560156+00 f t Florencia Cárdenas florenciacardenas@live.com.ar +541134847738 \N 11 de septiembre 2140 3N \N \N -34.7493588 -58.3739039 3 1375 \N fcardenas +4617 2025-07-15 16:29:54.215034+00 2025-07-15 16:29:54.215045+00 f t Invitado Amar invitado-1752596992598@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3208 +4618 2025-07-15 16:35:19.909199+00 2025-07-15 16:35:19.909208+00 f t Diana Hughes dianamayhughes2@gmail.com 91133720961 \N Amenaba 129 Casa - A una cuadra de Dorrego y Nicaragua \N FEMALE \N \N \N 1 1376 \N dhughes +4619 2025-07-15 17:01:51.780213+00 2025-07-15 17:01:51.780226+00 f t Invitado Amar invitado-1752598911277@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3209 +4620 2025-07-15 17:02:40.075123+00 2025-07-15 17:02:40.075152+00 f t Antonela Bianculli antonelabianculli@gmail.com +542920482977 \N Amenabar 2913 4 C \N \N \N -34.559763 -58.4614619 3 1377 \N abianculli +4621 2025-07-15 17:03:24.877271+00 2025-07-15 17:03:24.87728+00 f t Invitado Amar invitado-1752598972408@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-3210 +4622 2025-07-15 17:08:25.971898+00 2025-07-15 17:08:25.971907+00 f t Invitado Amar invitado-1752599304136@example.com 55555555 \N \N \N \N \N 146 \N \N iamar-3211 +4623 2025-07-15 17:16:56.747798+00 2025-07-15 17:16:56.74781+00 f t Invitado Amar invitado-1752599815677@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-3212 +4624 2025-07-15 17:39:25.410969+00 2025-07-15 17:39:25.410978+00 f t Maria Ines Romano mar2005@hotmail.com.ar 91123049677 \N cesar diaz 5162 \N \N FEMALE \N -34.6355013 -58.506542 65 1378 \N mromano +4625 2025-07-15 17:59:34.356125+00 2025-07-15 17:59:34.356134+00 f t Invitado Amar invitado-1752602373866@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3213 +4626 2025-07-15 18:05:19.765861+00 2025-07-15 18:05:19.76587+00 f t Invitado Amar invitado-1752602719652@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-3214 +4627 2025-07-15 18:07:53.009724+00 2025-07-15 18:07:53.009734+00 f t Invitado Amar invitado-1752602870516@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3215 +4628 2025-07-15 18:21:48.145348+00 2025-07-15 18:21:48.145359+00 f t Invitado Amar invitado-1752603707107@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3216 +4629 2025-07-15 18:23:30.738971+00 2025-07-15 18:23:30.738983+00 f t Invitado Amar invitado-1752603810269@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3217 +4630 2025-07-15 19:40:39.905598+00 2025-07-15 19:40:39.905607+00 f t Invitado Amar invitado-1752608438952@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3218 +4631 2025-07-15 20:12:48.563208+00 2025-07-15 20:12:48.563223+00 f t Invitado Amar invitado-1752610367195@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3219 +4632 2025-07-15 20:21:58.388269+00 2025-07-15 20:21:58.38828+00 f t Invitado Amar invitado-1752610916556@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3220 +4633 2025-07-15 20:22:33.336666+00 2025-07-15 20:22:33.336676+00 f t Invitado Amar invitado-1752610952242@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3221 +4634 2025-07-15 20:28:24.159625+00 2025-07-15 20:28:24.159634+00 f t Jhenniffer Paola Silva Torres jhennifferpaolasilvatorres@gmail.com +541150451827 \N José Martí 1573 \N \N \N \N -34.6472013 -58.4602981 4 1379 \N jsilvatorres +4635 2025-07-15 20:46:39.928895+00 2025-07-15 20:46:39.928907+00 f t Invitado Amar invitado-1752612399675@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-3222 +4636 2025-07-15 21:01:03.387929+00 2025-07-15 21:01:03.387945+00 f t Invitado Amar invitado-1752613262466@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3223 +4637 2025-07-15 21:44:25.663437+00 2025-07-15 21:44:25.663451+00 f t Invitado Amar invitado-1752615864984@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3224 +13317 2025-11-14 18:12:54.510117+00 2025-11-14 18:12:54.510126+00 f t Invitado Amar invitado-1763143972865@example.com 55555555 \N \N \N \N \N 13 \N \N \N +4639 2025-07-15 23:10:12.002739+00 2025-07-15 23:10:12.002749+00 f t Invitado Amar invitado-1752621011837@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3225 +4640 2025-07-16 00:03:47.417832+00 2025-07-16 00:03:47.417845+00 f t Invitado Amar invitado-1752624224653@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3226 +4641 2025-07-16 00:19:47.311831+00 2025-07-16 00:19:47.311845+00 f t Invitado Amar invitado-1752625186827@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-3227 +4642 2025-07-16 00:19:51.992062+00 2025-07-16 00:19:51.992071+00 f t Invitado Amar invitado-1752625190817@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3228 +4643 2025-07-16 00:20:52.223231+00 2025-07-16 00:20:52.22324+00 f t Invitado Amar invitado-1752625252295@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-3229 +4644 2025-07-16 01:18:16.672887+00 2025-07-16 01:18:16.672896+00 f t Rodrigo Villarreal rodrigomvillarreal@gmail.com +541167427789 \N Arenales 1749 3 A \N \N -34.594813 -58.3925958 9 1385 \N rvillarreal +4645 2025-07-16 01:39:09.702553+00 2025-07-16 01:39:09.702563+00 f t Martin Vergara martiin.vergara@gmail.com +541149142087 \N Av Álvarez Thomas 3330 Timbre 0064 , se escucha bajo llamar por celular \N \N -34.5706696 -58.4845608 29 1383 \N mvergara +4646 2025-07-16 01:42:23.471886+00 2025-07-16 01:42:23.471895+00 f t Invitado Amar invitado-1752630142853@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3230 +4647 2025-07-16 01:46:48.419079+00 2025-07-16 01:46:48.419088+00 f t Invitado Amar invitado-1752630407477@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3231 +4648 2025-07-16 01:52:38.763939+00 2025-07-16 01:52:38.763953+00 f t Invitado Amar invitado-1752630757248@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3232 +4649 2025-07-16 01:53:18.525788+00 2025-07-16 01:53:18.525801+00 f t Invitado Amar invitado-1752630798593@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-3233 +4650 2025-07-16 02:32:18.83401+00 2025-07-16 02:32:18.83402+00 f t Invitado Amar invitado-1752633138486@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3234 +4651 2025-07-16 04:22:47.890722+00 2025-07-16 04:22:47.890735+00 f t Sonia Villasboa sgvillasboa@gmail.com +541151146674 \N Colonia 647 7 M \N \N -34.6365325 -58.3986651 44 \N \N svillasboa +4652 2025-07-16 04:22:56.1356+00 2025-07-16 04:22:56.13561+00 f t Invitado Amar invitado-1752639775893@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-3235 +4653 2025-07-16 05:18:36.0535+00 2025-07-16 05:18:36.053508+00 f t Invitado Amar invitado-1752643115589@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3236 +4654 2025-07-16 05:36:38.55721+00 2025-07-16 05:36:38.557219+00 f t Invitado Amar invitado-1752644197369@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3237 +4655 2025-07-16 05:38:59.719691+00 2025-07-16 05:38:59.719701+00 f t Invitado Amar invitado-1752644338708@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3238 +4656 2025-07-16 05:47:39.187987+00 2025-07-16 05:47:39.187999+00 f t Invitado Amar invitado-1752644857709@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3239 +4657 2025-07-16 06:54:40.039495+00 2025-07-16 06:54:40.039503+00 f t Invitado Amar invitado-1752648879734@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-3240 +4658 2025-07-16 08:45:10.358031+00 2025-07-16 08:45:10.358044+00 f t Invitado Amar invitado-1752655510039@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3241 +4659 2025-07-16 10:55:32.526036+00 2025-07-16 10:55:32.526045+00 f t Invitado Amar invitado-1752663332287@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3242 +4660 2025-07-16 10:56:03.517541+00 2025-07-16 10:56:03.517553+00 f t Invitado Amar invitado-1752663362559@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3243 +4661 2025-07-16 11:13:19.432099+00 2025-07-16 11:13:19.432107+00 f t Invitado Amar invitado-1752664398752@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3244 +4662 2025-07-16 11:44:29.266498+00 2025-07-16 11:44:29.266509+00 f t Invitado Amar invitado-1752666269339@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3245 +4663 2025-07-16 12:40:38.01632+00 2025-07-16 12:40:38.016334+00 f t Invitado Amar invitado-1752669637919@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-3246 +4664 2025-07-16 12:49:51.282914+00 2025-07-16 12:49:51.282922+00 f t Moira Bertoli moirabertoli1@gmail.com +541156176355 \N San Martin 945 11-80 \N \N \N \N 37 \N \N mbertoli +4665 2025-07-16 12:55:45.104983+00 2025-07-16 12:55:45.104992+00 f t Pablo Agustin Ormachea pabloormaechea8@gmail.com 91172201986 \N Garcia lorca 450 1H \N MALE \N -34.6166903 -58.4458636 14 1382 \N pormachea +4666 2025-07-16 13:05:05.748462+00 2025-07-16 13:05:05.748472+00 f t Invitado Amar invitado-1752671104026@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-3247 +4667 2025-07-16 13:33:42.784539+00 2025-07-16 13:33:42.784551+00 f t Invitado Amar invitado-1752672822314@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3248 +4668 2025-07-16 13:54:03.732879+00 2025-07-16 13:54:03.733666+00 f t Invitado Amar invitado-1752674042525@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3249 +4669 2025-07-16 13:58:03.678289+00 2025-07-16 13:58:03.678302+00 f t Invitado Amar invitado-1752674283669@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-3250 +4670 2025-07-16 14:26:12.031255+00 2025-07-16 14:26:12.031262+00 f t Maria Laura Cacace marialauracacace@outlook.com 91140922121 \N Adolfo P. Carranza 3040 \N \N FEMALE 1996-08-15 -34.608815 -58.4861026 17 1384 \N mcacace +4671 2025-07-16 15:21:49.809999+00 2025-07-16 15:21:49.810013+00 f t Invitado Amar invitado-1752679308612@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3251 +4672 2025-07-16 15:28:45.721046+00 2025-07-16 15:28:45.721062+00 f t Invitado Amar invitado-1752679725335@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3252 +4673 2025-07-16 15:41:41.125845+00 2025-07-16 15:41:41.125852+00 f t Romina Paola Oliva Ballesteros romina_olivab@hotmail.com 91165079772 \N Aguirre 282 1A \N FEMALE 1982-10-22 -34.5996078 -58.4339497 26 1386 \N rolivaballesteros +4674 2025-07-16 15:51:25.438643+00 2025-07-16 15:51:25.438652+00 f t Invitado Amar invitado-1752681084959@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-3253 +4675 2025-07-16 16:33:34.420799+00 2025-07-16 16:33:34.420808+00 f t Invitado Amar invitado-1752683614043@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-3254 +4676 2025-07-16 16:47:59.367112+00 2025-07-16 16:47:59.36712+00 f t Invitado Amar invitado-1752684479682@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3255 +4677 2025-07-16 16:49:30.373863+00 2025-07-16 16:49:30.373875+00 f t Invitado Amar invitado-1752684570986@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3256 +4678 2025-07-16 17:03:42.736199+00 2025-07-16 17:03:42.736208+00 f t Invitado Amar invitado-1752685421918@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3257 +4679 2025-07-16 17:27:49.0832+00 2025-07-16 17:27:49.08321+00 f t Invitado Amar invitado-1752686868634@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3258 +4680 2025-07-16 17:32:08.134051+00 2025-07-16 17:32:08.13406+00 f t Invitado Amar invitado-1752687126989@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3259 +4681 2025-07-16 17:32:11.617833+00 2025-07-16 17:32:11.617841+00 f t Invitado Amar invitado-1752687130853@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3260 +4682 2025-07-16 18:48:29.126173+00 2025-07-16 18:48:29.126185+00 f t Invitado Amar invitado-1752691624622@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3261 +4683 2025-07-16 18:56:00.332441+00 2025-07-16 18:56:00.332451+00 f t Invitado Amar invitado-1752692160145@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3262 +4684 2025-07-16 19:21:35.841705+00 2025-07-16 19:21:35.841716+00 f t Invitado Amar invitado-1752693695249@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3263 +4685 2025-07-16 19:22:07.591102+00 2025-07-16 19:22:07.591114+00 f t Invitado Amar invitado-1752693726545@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-3264 +4686 2025-07-16 19:31:00.52822+00 2025-07-16 19:31:00.528229+00 f t Invitado Amar invitado-1752694258529@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3265 +4687 2025-07-16 19:31:34.310495+00 2025-07-16 19:31:34.310506+00 f t Invitado Amar invitado-1752694292171@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3266 +4688 2025-07-16 19:41:23.859892+00 2025-07-16 19:41:23.8599+00 f t Invitado Amar invitado-1752694882481@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-3267 +4689 2025-07-16 19:51:30.209072+00 2025-07-16 19:51:30.209084+00 f t Invitado Amar invitado-1752695489751@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-3268 +4690 2025-07-16 20:07:28.661055+00 2025-07-16 20:07:28.661063+00 f t Invitado Amar invitado-1752696447176@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-3269 +4691 2025-07-16 20:28:18.811731+00 2025-07-16 20:28:18.81174+00 f t Invitado Amar invitado-1752697698311@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3270 +4692 2025-07-16 20:29:21.824042+00 2025-07-16 20:29:21.82405+00 f t Invitado Amar invitado-1752697761275@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3271 +4693 2025-07-16 20:31:53.619613+00 2025-07-16 20:31:53.619619+00 f t Maria Sol Estrada m.sol.estrada@outlook.com 🇦🇷+5491164914422 \N Hipólito Yrigoyen 2771 piso 6N \N FEMALE 1986-11-08 -34.6111718 -58.4053768 18 1389 \N mestrada +4694 2025-07-16 20:35:56.347436+00 2025-07-16 20:35:56.347448+00 f t Invitado Amar invitado-1752698155594@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-3272 +4695 2025-07-16 21:06:00.60377+00 2025-07-16 21:06:00.603779+00 f t Invitado Amar invitado-1752699960161@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3273 +4696 2025-07-16 21:10:54.659856+00 2025-07-16 21:10:54.659869+00 f t Invitado Amar invitado-1752700253798@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3274 +4697 2025-07-16 21:30:17.132659+00 2025-07-16 21:30:17.132667+00 f t Invitado Amar invitado-1752701416655@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3275 +4698 2025-07-16 22:17:21.771677+00 2025-07-16 22:17:21.77169+00 f t Invitado Amar invitado-1752704241053@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3276 +4699 2025-07-16 22:25:08.311117+00 2025-07-16 22:25:08.311169+00 f t Invitado Amar invitado-1752704709154@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3277 +4700 2025-07-16 22:28:15.024374+00 2025-07-16 22:28:15.024384+00 f t Invitado Amar invitado-1752704896467@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3278 +4701 2025-07-16 22:51:03.874773+00 2025-07-16 22:51:03.874788+00 f t Invitado Amar invitado-1752706262981@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-3279 +4702 2025-07-16 23:15:54.437182+00 2025-07-16 23:15:54.43719+00 f t Invitado Amar invitado-1752707753780@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3280 +4703 2025-07-16 23:30:31.692023+00 2025-07-16 23:30:31.692034+00 f t Invitado Amar invitado-1752708630893@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-3281 +4704 2025-07-16 23:58:15.403187+00 2025-07-16 23:58:15.403197+00 f t Invitado Amar invitado-1752710294742@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3282 +4705 2025-07-17 00:05:43.885408+00 2025-07-17 00:05:43.885418+00 f t Invitado Amar invitado-1752710744723@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3283 +4706 2025-07-17 00:10:32.547996+00 2025-07-17 00:10:32.548009+00 f t Invitado Amar invitado-1752711033311@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3284 +4707 2025-07-17 00:18:58.789164+00 2025-07-17 00:18:58.789178+00 f t Invitado Amar invitado-1752711538978@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3285 +4708 2025-07-17 00:19:29.8075+00 2025-07-17 00:19:29.807511+00 f t Invitado Amar invitado-1752711570238@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3286 +4709 2025-07-17 00:44:39.589205+00 2025-07-17 00:44:39.589217+00 f t Invitado Amar invitado-1752713080390@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3287 +4710 2025-07-17 00:45:45.412334+00 2025-07-17 00:45:45.412343+00 f t Carolina Escobar caromesc@hotmail.com +541164048164 \N Gavilán 630 B \N \N \N -34.6219681 -58.4629982 4 1399 \N cescobar +4711 2025-07-17 01:44:40.011869+00 2025-07-17 01:44:40.011883+00 f t Invitado Amar invitado-1752716679837@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-3288 +4712 2025-07-17 02:11:03.303589+00 2025-07-17 02:11:03.3036+00 f t Invitado Amar invitado-1752718262513@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3289 +4713 2025-07-17 02:33:14.207083+00 2025-07-17 02:33:14.207091+00 f t Invitado Amar invitado-1752719593662@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-3290 +4714 2025-07-17 02:42:07.054439+00 2025-07-17 02:42:07.054449+00 f t Santiago García santiagogarcia1696@gmail.com +541124021292 \N Piedrabuena 231 \N \N -34.7943731 -58.4309139 71 \N \N sgarcia +4715 2025-07-17 04:53:32.664807+00 2025-07-17 04:53:32.664817+00 f t Invitado Amar invitado-1752728010138@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-3291 +4716 2025-07-17 04:54:51.903964+00 2025-07-17 04:54:51.903972+00 f t Invitado Amar invitado-1752728089574@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-3292 +4717 2025-07-17 04:54:54.524987+00 2025-07-17 04:54:54.524997+00 f t Invitado Amar invitado-1752728096228@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3293 +4718 2025-07-17 04:55:43.492383+00 2025-07-17 04:55:43.492395+00 f t Invitado Amar invitado-1752728141351@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-3294 +4719 2025-07-17 05:11:18.556573+00 2025-07-17 05:11:18.556582+00 f t Invitado Amar invitado-1752729077624@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-3295 +4720 2025-07-17 06:33:00.49561+00 2025-07-17 06:33:00.495619+00 f t Invitado Amar invitado-1752733979679@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-3296 +4721 2025-07-17 07:33:41.581462+00 2025-07-17 07:33:41.581471+00 f t Claudia Vanesa Papaianni claudiavpapaianni@gmail.com +541138261743 \N Paroissien 2236 1A \N \N -34.5458694 -58.4681118 25 1390 \N cpapaianni +4722 2025-07-17 10:48:59.512848+00 2025-07-17 10:48:59.512858+00 f t Invitado Amar invitado-1752749339136@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-3297 +4723 2025-07-17 11:35:54.754905+00 2025-07-17 11:35:54.754914+00 f t Invitado Amar invitado-1752752154241@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-3298 +4724 2025-07-17 11:58:53.081009+00 2025-07-17 11:58:53.081019+00 f t Invitado Amar invitado-1752753532756@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3299 +4725 2025-07-17 12:21:11.091863+00 2025-07-17 12:21:11.091874+00 f t Invitado Amar invitado-1752754870552@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3300 +4726 2025-07-17 13:12:36.514638+00 2025-07-17 13:12:36.514647+00 f t Invitado Amar invitado-1752757955055@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3301 +4727 2025-07-17 13:33:18.839901+00 2025-07-17 13:33:18.839915+00 f t Candela Maidana candelamaidana@yahoo.com.ar +541159380689 \N Pumacahua 49 9 A \N \N \N -34.6269306 -58.4550179 14 1391 \N cmaidana +4728 2025-07-17 13:38:22.529996+00 2025-07-17 13:38:22.530009+00 f t Invitado Amar invitado-1752759501766@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3302 +4729 2025-07-17 13:39:40.903336+00 2025-07-17 13:39:40.903344+00 f t Invitado Amar invitado-1752759580188@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3303 +4730 2025-07-17 13:42:21.047938+00 2025-07-17 13:42:21.047946+00 f t Invitado Amar invitado-1752759740564@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3304 +4731 2025-07-17 13:57:35.941384+00 2025-07-17 13:57:35.941395+00 f t Invitado Amar invitado-1752760655425@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3305 +4732 2025-07-17 14:10:17.355486+00 2025-07-17 14:10:17.355495+00 f t Julia Liparoti jotaliparoti@gmail.com +541131482871 \N La Blanqueada (pasaje) 5249 Timbre 1 \N \N \N -35.0097181 -61.0404267 21 1392 \N jliparoti +4733 2025-07-17 14:17:09.132908+00 2025-07-17 14:17:09.132917+00 f t Invitado Amar invitado-1752761828472@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3306 +4734 2025-07-17 14:23:30.170607+00 2025-07-17 14:23:30.170616+00 f t Invitado Amar invitado-1752762209203@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3307 +4735 2025-07-17 14:25:26.024064+00 2025-07-17 14:25:26.024076+00 f t Invitado Amar invitado-1752762325526@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3308 +4736 2025-07-17 14:59:45.279339+00 2025-07-17 14:59:45.27935+00 f t Invitado Amar invitado-1752764385824@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3309 +4737 2025-07-17 15:07:26.640988+00 2025-07-17 15:07:26.640996+00 f t Marcela Pulido marcel_p06@hotmail.com 91158558978 \N Terrada 571 dpto 4 \N FEMALE 1961-07-30 -34.625094 -58.4705457 4 1393 \N mpulido +4738 2025-07-17 15:44:14.165484+00 2025-07-17 15:44:14.165496+00 f t Invitado Amar invitado-1752767053826@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3310 +4739 2025-07-17 15:51:01.53107+00 2025-07-17 15:51:01.531083+00 f t Invitado Amar invitado-1752767460917@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-3311 +4740 2025-07-17 15:54:31.260107+00 2025-07-17 15:54:31.260114+00 f t Valentina Molina valentinamolina101@gmail.com 91153168654 \N Nechochea 250 \N \N FEMALE \N -36.0887616 -57.8163602 33 1394 \N vmolina +4741 2025-07-17 15:56:37.348392+00 2025-07-17 15:56:37.348401+00 f t Invitado Amar invitado-1752767797104@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3312 +4742 2025-07-17 16:03:17.382124+00 2025-07-17 16:03:17.382136+00 f t Invitado Amar invitado-1752768197351@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3313 +4743 2025-07-17 16:11:42.147094+00 2025-07-17 16:11:42.147102+00 f t Invitado Amar invitado-1752768702002@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-3314 +4744 2025-07-17 16:13:30.059032+00 2025-07-17 16:13:30.059044+00 f t Invitado Amar invitado-1752768809677@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3315 +4745 2025-07-17 16:37:01.121061+00 2025-07-17 16:37:01.121073+00 f t Josefina Journe josefinajourne@hotmail.com +541158018080 \N Av de los bosques 1768 Barrio el atardecer lote 151 \N \N \N \N 22 \N \N jjourne +4746 2025-07-17 16:49:38.322815+00 2025-07-17 16:49:38.322825+00 f t Diego Rafael Freedman diego.freedman@gmail.com 91141737981 \N VIRREY ARREDONDO 2980 \N \N \N \N -34.5723106 -58.4548386 38 1395 \N dfreedman +4747 2025-07-17 17:16:19.223677+00 2025-07-17 17:16:19.223689+00 f t Invitado Amar invitado-1752772578620@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3316 +4748 2025-07-17 17:28:55.62242+00 2025-07-17 17:28:55.622427+00 f t Sebastian Pellegrini holzman sebaholzok@gmail.com 91133627207 \N Av chorroarin 1273 2B \N MALE \N -34.5819486 -58.4694018 24 1396 \N spellegriniholzman +4749 2025-07-17 17:29:06.000942+00 2025-07-17 17:29:06.000956+00 f t Geronimo Canevaro gerocane@hotmail.com +5491161782000 \N Libertador 3132 9B \N \N \N \N 1 \N \N gcanevaro +4750 2025-07-17 17:36:04.999049+00 2025-07-17 17:36:04.999063+00 f t Invitado Amar invitado-1752773763092@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3317 +4751 2025-07-17 17:37:34.665435+00 2025-07-17 17:37:34.665444+00 f t Invitado Amar invitado-1752773852916@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3318 +4752 2025-07-17 17:42:06.209577+00 2025-07-17 17:42:06.209591+00 f t Invitado Amar invitado-1752774124545@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3319 +4753 2025-07-17 18:20:26.295329+00 2025-07-17 18:20:26.29534+00 f t Invitado Amar invitado-1752776425540@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3320 +4754 2025-07-17 19:45:53.70523+00 2025-07-17 19:45:53.705237+00 f t Leonardo Fontan sinrumborock2013@gmail.com 92235361365 \N AV. Pavón 1759 \N \N MALE 1984-07-02 -34.6261916 -58.3904951 12 1397 \N lfontan +4755 2025-07-17 19:51:23.610447+00 2025-07-17 19:51:23.610458+00 f t Thairy Rincon thairycrinconq@gmail.com 1124091404 \N Parana 433 2B \N FEMALE 1990-10-07 -34.6036348 -58.3878612 13 1398 \N trincon +4756 2025-07-17 20:28:39.226325+00 2025-07-17 20:28:39.226334+00 f t Invitado Amar invitado-1752784116290@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3321 +4757 2025-07-17 20:34:18.44323+00 2025-07-17 20:34:18.443238+00 f t Invitado Amar invitado-1752784456088@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3322 +4758 2025-07-17 20:35:45.383077+00 2025-07-17 20:35:45.383086+00 f t Invitado Amar invitado-1752784543223@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3323 +4759 2025-07-17 21:14:10.018977+00 2025-07-17 21:14:10.018989+00 f t Invitado Amar invitado-1752786848287@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3324 +4760 2025-07-17 21:34:01.353665+00 2025-07-17 21:34:01.353678+00 f t Invitado Amar invitado-1752788040973@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3325 +4761 2025-07-17 22:01:25.77534+00 2025-07-17 22:01:25.775353+00 f t Invitado Amar invitado-1752789685120@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3326 +4762 2025-07-17 22:01:45.555013+00 2025-07-17 22:01:45.555021+00 f t Invitado Amar invitado-1752789705115@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-3327 +4763 2025-07-17 22:02:06.054659+00 2025-07-17 22:02:06.054673+00 f t Invitado Amar invitado-1752789725265@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3328 +4764 2025-07-17 22:11:31.650552+00 2025-07-17 22:11:31.651094+00 f t Invitado Amar invitado-1752790291709@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-3329 +4765 2025-07-17 22:24:27.449319+00 2025-07-17 22:24:27.450268+00 f t Invitado Amar invitado-1752791066759@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3330 +4766 2025-07-17 22:25:12.720307+00 2025-07-17 22:25:12.720705+00 f t Invitado Amar invitado-1752791111516@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3331 +4767 2025-07-17 22:45:11.451601+00 2025-07-17 22:45:11.451611+00 f t Invitado Amar invitado-1752792311075@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3332 +4768 2025-07-17 23:20:21.011352+00 2025-07-17 23:20:21.011361+00 f t Invitado Amar invitado-1752794420504@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-3333 +4769 2025-07-17 23:21:35.974222+00 2025-07-17 23:21:35.974233+00 f t Invitado Amar invitado-1752794495309@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3334 +4770 2025-07-17 23:31:30.455772+00 2025-07-17 23:31:30.45578+00 f t Invitado Amar invitado-1752795090044@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3335 +4771 2025-07-17 23:42:20.997771+00 2025-07-17 23:42:20.997779+00 f t Maria dolores Villar gbesquerre@hotmail.com +5491168024083 \N av rivadavia 3079 5 J \N FEMALE 1942-04-24 -34.6102951 -58.4100052 18 1400 \N mvillar +4772 2025-07-18 00:27:49.432661+00 2025-07-18 00:27:49.432671+00 f t Invitado Amar invitado-1752798466434@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3336 +4773 2025-07-18 00:34:00.483402+00 2025-07-18 00:34:00.483415+00 f t Invitado Amar invitado-1752798841366@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3337 +4774 2025-07-18 00:57:11.728141+00 2025-07-18 00:57:11.728151+00 f t Ramiro Restifo ramirorestifo20@gmail.com +5491169479198 \N Islandia 5588 Casa puerta derecha \N \N 2002-03-18 -34.5653721 -58.4983282 31 1411 \N rrestifo +4775 2025-07-18 01:08:09.021783+00 2025-07-18 01:08:09.021793+00 f t Invitado Amar invitado-1752800852136@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-3338 +4776 2025-07-18 01:09:01.141123+00 2025-07-18 01:09:01.141135+00 f t Invitado Amar invitado-1752800904823@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-3339 +4777 2025-07-18 01:19:15.088794+00 2025-07-18 01:19:15.088802+00 f t Invitado Amar invitado-1752801554626@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3340 +4778 2025-07-18 02:55:55.56093+00 2025-07-18 02:55:55.560943+00 f t Invitado Amar invitado-1752807354953@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-3341 +4779 2025-07-18 03:20:11.132959+00 2025-07-18 03:20:11.132971+00 f t Invitado Amar invitado-1752808810176@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3342 +4780 2025-07-18 05:25:10.795943+00 2025-07-18 05:25:10.795954+00 f t Invitado Amar invitado-1752816309688@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3343 +4781 2025-07-18 05:39:22.130703+00 2025-07-18 05:39:22.130712+00 f t Invitado Amar invitado-1752817160369@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3344 +4782 2025-07-18 11:29:09.677801+00 2025-07-18 11:29:09.677811+00 f t Invitado Amar invitado-1752838149345@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3345 +4783 2025-07-18 12:43:02.999741+00 2025-07-18 12:43:02.99975+00 f t Invitado Amar invitado-1752842582658@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3346 +4784 2025-07-18 12:47:04.42063+00 2025-07-18 12:47:04.420639+00 f t Invitado Amar invitado-1752842824271@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3347 +4785 2025-07-18 12:57:58.598322+00 2025-07-18 12:57:58.598332+00 f t Matilde Vissani mvissani@gmail.com +5491150519778 \N Thames 968 13B \N \N -34.5921953 -58.4378957 26 \N \N mvissani +4786 2025-07-18 13:00:55.197382+00 2025-07-18 13:00:55.197395+00 f t Invitado Amar invitado-1752843654805@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3348 +4787 2025-07-18 13:28:37.204593+00 2025-07-18 13:28:37.204603+00 f t Invitado Amar invitado-1752845316659@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3349 +4788 2025-07-18 13:53:15.195031+00 2025-07-18 13:53:15.195041+00 f t Invitado Amar invitado-1752846795106@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3350 +4789 2025-07-18 14:23:48.833632+00 2025-07-18 14:23:48.833641+00 f t Vanesa Ramirez vane2k3@hotmail.com 91164912501 \N Blanco encalada 5451 5to D \N FEMALE \N -34.578053 -58.4907947 29 1401 \N vramirez +4790 2025-07-18 14:32:32.543663+00 2025-07-18 14:32:32.543673+00 f t Invitado Amar invitado-1752849152050@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-3351 +4791 2025-07-18 15:54:03.548699+00 2025-07-18 15:54:03.548708+00 f t Invitado Amar invitado-1752854044560@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3352 +4792 2025-07-18 16:28:25.782551+00 2025-07-18 16:28:25.78256+00 f t Invitado Amar invitado-1752856105103@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3353 +4793 2025-07-18 16:31:06.312654+00 2025-07-18 16:31:06.312668+00 f t Invitado Amar invitado-1752856266134@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3354 +4794 2025-07-18 16:53:07.55393+00 2025-07-18 16:53:07.553939+00 f t Invitado Amar invitado-1752857586951@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3355 +4795 2025-07-18 17:07:13.203514+00 2025-07-18 17:07:13.203523+00 f t Invitado Amar invitado-1752858432284@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3356 +4796 2025-07-18 17:36:51.889564+00 2025-07-18 17:36:51.889577+00 f t Invitado Amar invitado-1752860212082@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3357 +4797 2025-07-18 17:37:27.598093+00 2025-07-18 17:37:27.598103+00 f t Invitado Amar invitado-1752860248316@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3358 +4798 2025-07-18 17:43:15.861521+00 2025-07-18 17:43:15.861533+00 f t Invitado Amar invitado-1752860596553@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3359 +4799 2025-07-18 17:51:23.400983+00 2025-07-18 17:51:23.400993+00 f t Invitado Amar invitado-1752861083880@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3360 +4800 2025-07-18 17:54:09.345328+00 2025-07-18 17:54:09.345336+00 f t Invitado Amar invitado-1752861250770@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3361 +4801 2025-07-18 18:20:08.119936+00 2025-07-18 18:20:08.119945+00 f t Invitado Amar invitado-1752862807744@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3362 +4802 2025-07-18 18:59:00.90987+00 2025-07-18 18:59:00.909881+00 f t Mariel Alejandra Villa mariel.alejandra.villa@gmail.com 91141434004 \N Baigorria 3187 piso 4, dpto 12 \N FEMALE \N -34.6044904 -58.4924697 23 1403 \N malejandravilla +4803 2025-07-18 19:22:28.380809+00 2025-07-18 19:22:28.380818+00 f t Invitado Amar invitado-1752866547869@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3363 +4804 2025-07-18 19:59:29.017016+00 2025-07-18 19:59:29.017027+00 f t Invitado Amar invitado-1752868768367@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-3364 +4805 2025-07-18 20:44:09.117913+00 2025-07-18 20:44:09.117923+00 f t Invitado Amar invitado-1752871448506@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-3365 +4806 2025-07-18 20:46:37.047774+00 2025-07-18 20:46:37.047784+00 f t Invitado Amar invitado-1752871596722@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3366 +4807 2025-07-18 20:48:27.580714+00 2025-07-18 20:48:27.580727+00 f t Invitado Amar invitado-1752871706919@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3367 +4808 2025-07-18 20:50:24.986662+00 2025-07-18 20:50:24.986672+00 f t Invitado Amar invitado-1752871824631@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3368 +4809 2025-07-18 21:05:25.760698+00 2025-07-18 21:05:25.760709+00 f t Invitado Amar invitado-1752872724291@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3369 +4810 2025-07-18 21:53:31.088187+00 2025-07-18 21:53:31.088197+00 f t Invitado Amar invitado-1752875610637@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3370 +4811 2025-07-18 22:27:35.557866+00 2025-07-18 22:27:35.557874+00 f t Invitado Amar invitado-1752877653876@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-3371 +4812 2025-07-18 22:32:46.886364+00 2025-07-18 22:32:46.886373+00 f t Invitado Amar invitado-1752877965756@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3372 +4813 2025-07-18 22:34:57.574757+00 2025-07-18 22:34:57.57477+00 f t Invitado Amar invitado-1752878095972@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3373 +4814 2025-07-18 23:16:00.416843+00 2025-07-18 23:16:00.416855+00 f t Invitado Amar invitado-1752880559915@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3374 +4815 2025-07-18 23:17:59.182392+00 2025-07-18 23:17:59.182401+00 f t Invitado Amar invitado-1752880678805@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-3375 +4816 2025-07-18 23:28:59.216818+00 2025-07-18 23:28:59.216829+00 f t Mariana Cassese mariancassese@gmail.com +541153285086 \N Av.avellaneda 431 Pb 3 \N \N -34.6196671 -58.4521082 14 \N \N mcassese +4817 2025-07-18 23:41:22.390564+00 2025-07-18 23:41:22.390572+00 f t Invitado Amar invitado-1752882082509@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3376 +4818 2025-07-18 23:58:25.362906+00 2025-07-18 23:58:25.362916+00 f t Invitado Amar invitado-1752883104969@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3377 +4819 2025-07-19 00:28:04.013614+00 2025-07-19 00:28:04.013623+00 f t Invitado Amar invitado-1752884883166@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-3378 +4820 2025-07-19 00:42:59.191382+00 2025-07-19 00:42:59.191391+00 f t Invitado Amar invitado-1752885776744@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-3379 +4821 2025-07-19 01:33:59.395313+00 2025-07-19 01:33:59.395325+00 f t Invitado Amar invitado-1752888838514@example.com 55555555 \N \N \N \N \N 57 \N \N iamar-3380 +4822 2025-07-19 01:38:33.142047+00 2025-07-19 01:38:33.142056+00 f t Invitado Amar invitado-1752889112712@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-3381 +4823 2025-07-19 01:40:51.235671+00 2025-07-19 01:40:51.23568+00 f t Invitado Amar invitado-1752889250378@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3382 +4824 2025-07-19 01:40:52.372219+00 2025-07-19 01:40:52.372229+00 f t Invitado Amar invitado-1752889251836@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-3383 +4825 2025-07-19 01:55:39.532193+00 2025-07-19 01:55:39.532205+00 f t Invitado Amar invitado-1752890138852@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-3384 +4826 2025-07-19 02:12:01.896592+00 2025-07-19 02:12:01.896605+00 f t Invitado Amar invitado-1752891122789@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3385 +4827 2025-07-19 03:00:17.051368+00 2025-07-19 03:00:17.051382+00 f t Invitado Amar invitado-1752894437328@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3386 +4828 2025-07-19 03:34:24.388393+00 2025-07-19 03:34:24.388405+00 f t Invitado Amar invitado-1752896061966@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3387 +4829 2025-07-19 04:22:28.483396+00 2025-07-19 04:22:28.483406+00 f t Invitado Amar invitado-1752898947096@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-3388 +4830 2025-07-19 04:56:24.123681+00 2025-07-19 04:56:24.123691+00 f t Invitado Amar invitado-1752900983296@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3389 +4831 2025-07-19 05:51:10.277891+00 2025-07-19 05:51:10.2779+00 f t Invitado Amar invitado-1752904269757@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3390 +4832 2025-07-19 10:21:49.314056+00 2025-07-19 10:21:49.314065+00 f t Invitado Amar invitado-1752920508591@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3391 +4833 2025-07-19 10:23:54.633174+00 2025-07-19 10:23:54.633183+00 f t Invitado Amar invitado-1752920634350@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3392 +4834 2025-07-19 10:58:59.618109+00 2025-07-19 10:58:59.618122+00 f t Invitado Amar invitado-1752922739127@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3393 +4835 2025-07-19 11:35:28.177479+00 2025-07-19 11:35:28.177496+00 f t Invitado Amar invitado-1752924928005@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-3394 +4836 2025-07-19 11:58:44.046786+00 2025-07-19 11:58:44.046798+00 f t Invitado Amar invitado-1752926323110@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3395 +4837 2025-07-19 12:16:57.182947+00 2025-07-19 12:16:57.18296+00 f t Invitado Amar invitado-1752927416698@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-3396 +4838 2025-07-19 13:12:21.579086+00 2025-07-19 13:12:21.579099+00 f t Invitado Amar invitado-1752930741244@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-3397 +4839 2025-07-19 13:25:08.534677+00 2025-07-19 13:25:08.534689+00 f t Invitado Amar invitado-1752931507802@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3398 +4840 2025-07-19 13:50:43.437206+00 2025-07-19 13:50:43.437216+00 f t Invitado Amar invitado-1752933041827@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3399 +4841 2025-07-19 14:04:16.845537+00 2025-07-19 14:04:16.845548+00 f t Invitado Amar invitado-1752933857504@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3400 +4842 2025-07-19 14:07:39.656845+00 2025-07-19 14:07:39.656854+00 f t Invitado Amar invitado-1752934059331@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-3401 +4843 2025-07-19 14:09:28.083763+00 2025-07-19 14:09:28.083775+00 f t Invitado Amar invitado-1752934167949@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-3402 +4844 2025-07-19 14:12:10.848489+00 2025-07-19 14:12:10.848498+00 f t Invitado Amar invitado-1752934330536@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-3403 +4845 2025-07-19 14:26:49.265087+00 2025-07-19 14:26:49.265095+00 f t Invitado Amar invitado-1752935209067@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-3404 +4846 2025-07-19 15:10:03.953412+00 2025-07-19 15:10:03.953427+00 f t Invitado Amar invitado-1752937803545@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-3405 +4847 2025-07-19 15:16:15.629322+00 2025-07-19 15:16:15.629331+00 f t Nestor Rolon rolonnestor84@gmail.com 1150501291 \N avenida Márquez 2387 \N \N MALE \N -34.4871429 -58.5374772 77 1406 \N nrolon +4849 2025-07-19 16:52:24.116745+00 2025-07-19 16:52:24.116759+00 f t Invitado Amar invitado-1752943944508@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-3406 +4850 2025-07-19 17:04:35.809569+00 2025-07-19 17:04:35.809578+00 f t Invitado Amar invitado-1752944675336@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-3407 +4851 2025-07-19 17:05:21.926656+00 2025-07-19 17:05:21.926665+00 f t Invitado Amar invitado-1752944715957@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-3408 +4852 2025-07-19 17:08:57.345574+00 2025-07-19 17:08:57.345584+00 f t Invitado Amar invitado-1752944926307@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3409 +4854 2025-07-19 17:59:54.599349+00 2025-07-19 17:59:54.599358+00 f t Invitado Amar invitado-1752947994465@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3411 +4855 2025-07-19 18:13:48.566577+00 2025-07-19 18:13:48.566587+00 f t Invitado Amar invitado-1752948828740@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3412 +4856 2025-07-19 18:33:47.221242+00 2025-07-19 18:33:47.221254+00 f t Andrea Travieso andreatravieso20@gmail.com +541167980163 \N Teodoro Garcia 1733 3B \N \N \N -34.5633032 -58.4401888 1 1412 \N atravieso +4857 2025-07-19 18:49:53.781484+00 2025-07-19 18:49:53.781493+00 f t Invitado Amar invitado-1752950993414@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3413 +4908 2025-07-20 13:04:18.458016+00 2025-07-20 13:04:18.458025+00 f t Invitado Amar invitado-1753016657885@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-3459 +4858 2025-07-19 18:53:09.995836+00 2025-07-19 18:53:09.995845+00 f t Candela Bejarano bejaranocandela4@gmail.com 5492984738004 \N Sanchez de bustamante 2027 \N \N FEMALE 2005-05-15 -34.5886311 -58.4071171 9 \N \N cbejarano +4859 2025-07-19 19:08:13.75502+00 2025-07-19 19:08:13.755034+00 f t Invitado Amar invitado-1752952093204@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3414 +4860 2025-07-19 19:09:49.181842+00 2025-07-19 19:09:49.18186+00 f t Invitado Amar invitado-1752952189460@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3415 +4861 2025-07-19 19:17:11.963647+00 2025-07-19 19:17:11.963656+00 f t Invitado Amar invitado-1752952630797@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3416 +4862 2025-07-19 19:21:38.148713+00 2025-07-19 19:21:38.148725+00 f t Invitado Amar invitado-1752952897342@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3417 +4863 2025-07-19 19:26:54.797062+00 2025-07-19 19:26:54.79707+00 f t Invitado Amar invitado-1752953214138@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3418 +4864 2025-07-19 19:32:08.88076+00 2025-07-19 19:32:08.880774+00 f t Invitado Amar invitado-1752953528731@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-3419 +4865 2025-07-19 19:56:32.546966+00 2025-07-19 19:56:32.546975+00 f t Invitado Amar invitado-1752954991815@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3420 +4866 2025-07-19 20:31:05.4911+00 2025-07-19 20:31:05.491109+00 f t Invitado Amar invitado-1752957065179@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3421 +4867 2025-07-19 20:33:39.69828+00 2025-07-19 20:33:39.698291+00 f t Invitado Amar invitado-1752957217898@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3422 +4868 2025-07-19 21:23:55.975185+00 2025-07-19 21:23:55.975197+00 f t Invitado Amar invitado-1752960233422@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-3423 +4869 2025-07-19 21:51:24.660839+00 2025-07-19 21:51:24.660845+00 f t Claudia Fabiana Dominguez fabianadominguez56@gmail.com 5491125422817 \N Sargento Cabral 4024 Munro \N FEMALE 1973-08-09 -34.5141442 -58.5275447 156 1413 \N cdominguez +4870 2025-07-19 22:20:42.372825+00 2025-07-19 22:20:42.372834+00 f t Invitado Amar invitado-1752963642053@example.com 55555555 \N \N \N \N \N 66 \N \N iamar-3424 +4871 2025-07-19 23:16:05.769809+00 2025-07-19 23:16:05.769819+00 f t Invitado Amar invitado-1752966965796@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-3425 +4872 2025-07-19 23:26:41.485901+00 2025-07-19 23:26:41.485908+00 f t Invitado Amar invitado-1752967601119@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-3426 +4873 2025-07-19 23:28:00.856158+00 2025-07-19 23:28:00.85617+00 f t Invitado Amar invitado-1752967680673@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-3427 +4874 2025-07-19 23:34:53.983693+00 2025-07-19 23:34:53.983701+00 f t Vanesa Toledo vaanee.btel0193@gmail.com +541134372933 \N Ortiz de rosas 1494 2 \N \N \N -34.6594318 -58.615285 55 \N \N vtoledo +4875 2025-07-19 23:47:56.482686+00 2025-07-19 23:47:56.482695+00 f t Invitado Amar invitado-1752968875912@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-3428 +4876 2025-07-19 23:52:55.932427+00 2025-07-19 23:52:55.93244+00 f t Invitado Amar invitado-1752969175098@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-3429 +4877 2025-07-20 00:28:59.061732+00 2025-07-20 00:28:59.061743+00 f t Invitado Amar invitado-1752971338720@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3430 +4878 2025-07-20 00:38:59.666605+00 2025-07-20 00:38:59.666614+00 f t Invitado Amar invitado-1752971939208@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3431 +4879 2025-07-20 01:14:50.624024+00 2025-07-20 01:14:50.624033+00 f t Invitado Amar invitado-1752974089852@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3432 +4880 2025-07-20 01:47:50.51788+00 2025-07-20 01:47:50.517891+00 f t Invitado Amar invitado-1752976070386@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3433 +4881 2025-07-20 01:49:59.356119+00 2025-07-20 01:49:59.356127+00 f t Invitado Amar invitado-1752976199078@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-3434 +4882 2025-07-20 01:58:00.865233+00 2025-07-20 01:58:00.865246+00 f t Invitado Amar invitado-1752976680439@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-3435 +4883 2025-07-20 02:26:43.776803+00 2025-07-20 02:26:43.776814+00 f t Invitado Amar invitado-1752978403423@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3436 +4884 2025-07-20 02:28:25.968808+00 2025-07-20 02:28:25.968822+00 f t Invitado Amar invitado-1752978505800@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3437 +4885 2025-07-20 02:46:14.977969+00 2025-07-20 02:46:14.977979+00 f t Invitado Amar invitado-1752979574310@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3438 +4886 2025-07-20 02:50:22.385486+00 2025-07-20 02:50:22.385497+00 f t Invitado Amar invitado-1752979821919@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3439 +4887 2025-07-20 02:53:22.820855+00 2025-07-20 02:53:22.820869+00 f t Invitado Amar invitado-1752980002635@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3440 +4888 2025-07-20 03:01:50.265937+00 2025-07-20 03:01:50.265946+00 f t Invitado Amar invitado-1752980510010@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3441 +4889 2025-07-20 03:04:23.357548+00 2025-07-20 03:04:23.35756+00 f t Invitado Amar invitado-1752980662828@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3442 +4890 2025-07-20 03:53:35.392712+00 2025-07-20 03:53:35.392722+00 f t Invitado Amar invitado-1752983614763@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3443 +4891 2025-07-20 04:28:22.350241+00 2025-07-20 04:28:22.350249+00 f t Invitado Amar invitado-1752985701852@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3444 +4892 2025-07-20 04:56:06.602393+00 2025-07-20 04:56:06.602402+00 f t Invitado Amar invitado-1752987365390@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-3445 +4893 2025-07-20 05:03:20.405352+00 2025-07-20 05:03:20.405363+00 f t Invitado Amar invitado-1752987799809@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3446 +4894 2025-07-20 05:35:02.832359+00 2025-07-20 05:35:02.832374+00 f t Invitado Amar invitado-1752989780212@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-3447 +4895 2025-07-20 08:20:44.95636+00 2025-07-20 08:20:44.95637+00 f t Invitado Amar invitado-1752999644302@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3448 +4896 2025-07-20 08:23:56.688967+00 2025-07-20 08:23:56.688977+00 f t Invitado Amar invitado-1752999836372@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3449 +4897 2025-07-20 08:24:10.149524+00 2025-07-20 08:24:10.149532+00 f t Invitado Amar invitado-1752999850039@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3450 +4898 2025-07-20 08:27:33.660497+00 2025-07-20 08:27:33.660506+00 f t Invitado Amar invitado-1753000053548@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3451 +4899 2025-07-20 08:27:48.900543+00 2025-07-20 08:27:48.900553+00 f t Invitado Amar invitado-1753000068771@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3452 +4900 2025-07-20 08:31:18.909679+00 2025-07-20 08:31:18.909693+00 f t Invitado Amar invitado-1753000278778@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3453 +4901 2025-07-20 09:36:30.645933+00 2025-07-20 09:36:30.645941+00 f t Invitado Amar invitado-1753004190977@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3454 +4902 2025-07-20 11:28:13.853721+00 2025-07-20 11:28:13.853732+00 f t Invitado Amar invitado-1753010898553@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3455 +4903 2025-07-20 11:28:41.088658+00 2025-07-20 11:28:41.088667+00 f t Invitado Amar invitado-1753010926001@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3456 +4904 2025-07-20 12:05:17.767442+00 2025-07-20 12:05:17.767455+00 f t Invitado Amar invitado-1753013116416@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-3457 +4905 2025-07-20 12:05:40.630395+00 2025-07-20 12:05:40.630405+00 f t Magali Micaela Maria Felicetti maguitune@gmail.com +541133751000 \N Nicolás Avellaneda 3584 \N \N -34.5065775 -58.5005268 39 \N \N mfelicetti +4906 2025-07-20 12:49:24.278975+00 2025-07-20 12:49:24.278983+00 f t Adriana Valdez valdezadrianae@gmail.com +541126543334 \N Av juan b justo 6092 1 \N \N -31.3516535 -64.176113 41 \N \N avaldez +4907 2025-07-20 13:01:45.747693+00 2025-07-20 13:01:45.747701+00 f t Invitado Amar invitado-1753016504997@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-3458 +4909 2025-07-20 13:05:23.633407+00 2025-07-20 13:05:23.633416+00 f t Invitado Amar invitado-1753016723499@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-3460 +4910 2025-07-20 13:08:42.722478+00 2025-07-20 13:08:42.722487+00 f t Invitado Amar invitado-1753016921273@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3461 +4911 2025-07-20 14:06:23.197875+00 2025-07-20 14:06:23.197883+00 f t Invitado Amar invitado-1753020382914@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3462 +4912 2025-07-20 14:39:19.110905+00 2025-07-20 14:39:19.110916+00 f t Invitado Amar invitado-1753022359214@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-3463 +4913 2025-07-20 14:49:32.852453+00 2025-07-20 14:49:32.852463+00 f t Leonardo Rubino leonardo.rubino@telefonica.com +541141479312 \N Serrano 169 \N \N -34.739772 -58.3930738 72 \N \N lrubino +4914 2025-07-20 14:55:50.870757+00 2025-07-20 14:55:50.870766+00 f t Invitado Amar invitado-1753023350038@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3464 +4915 2025-07-20 14:56:29.696519+00 2025-07-20 14:56:29.696531+00 f t Invitado Amar invitado-1753023389392@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3465 +4916 2025-07-20 15:00:14.861767+00 2025-07-20 15:00:14.86178+00 f t Invitado Amar invitado-1753023614422@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3466 +4917 2025-07-20 15:48:33.696039+00 2025-07-20 15:48:33.696047+00 f t Invitado Amar invitado-1753026513224@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3467 +4918 2025-07-20 15:56:56.984759+00 2025-07-20 15:56:56.984768+00 f t Invitado Amar invitado-1753027016279@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-3468 +4919 2025-07-20 15:57:12.814123+00 2025-07-20 15:57:12.814132+00 f t Invitado Amar invitado-1753027032475@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3469 +4920 2025-07-20 16:07:55.235626+00 2025-07-20 16:07:55.235635+00 f t Estefania Arizio arizioestefania@gmail.com +541151085167 \N Mozart 321 Pb A \N \N \N -34.6404641 -58.4914546 65 1414 \N earizio +4921 2025-07-20 16:14:12.715632+00 2025-07-20 16:14:12.71564+00 f t Invitado Amar invitado-1753028053231@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-3470 +4922 2025-07-20 16:42:23.178562+00 2025-07-20 16:42:23.178575+00 f t Invitado Amar invitado-1753029742663@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-3471 +4923 2025-07-20 17:01:44.985783+00 2025-07-20 17:01:44.985791+00 f t Invitado Amar invitado-1753030904579@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3472 +4924 2025-07-20 17:14:31.360298+00 2025-07-20 17:14:31.36031+00 f t Invitado Amar invitado-1753031671015@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3473 +4925 2025-07-20 17:18:42.51602+00 2025-07-20 17:18:42.516032+00 f t Invitado Amar invitado-1753031921828@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3474 +4926 2025-07-20 17:28:52.483431+00 2025-07-20 17:28:52.483443+00 f t Invitado Amar invitado-1753032531418@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-3475 +4927 2025-07-20 17:44:36.085734+00 2025-07-20 17:44:36.085747+00 f t Invitado Amar invitado-1753033476078@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-3476 +4928 2025-07-20 17:44:39.831074+00 2025-07-20 17:44:39.831082+00 f t Invitado Amar invitado-1753033479733@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3477 +4929 2025-07-20 18:35:52.73342+00 2025-07-20 18:35:52.733429+00 f t Invitado Amar invitado-1753036552083@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3478 +4930 2025-07-20 18:45:57.198083+00 2025-07-20 18:45:57.198093+00 f t Invitado Amar invitado-1753037154747@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-3479 +4931 2025-07-20 18:50:40.869296+00 2025-07-20 18:50:40.869307+00 f t Invitado Amar invitado-1753037440529@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-3480 +4932 2025-07-20 19:21:48.558232+00 2025-07-20 19:21:48.558242+00 f t Mariana Furci marianafurci@gmail.com +541169710977 \N Belgrano Av. 1393 DTO 8 \N \N \N -34.6132954 -58.3858981 49 \N \N mfurci +4933 2025-07-20 19:31:31.639731+00 2025-07-20 19:31:31.63974+00 f t Invitado Amar invitado-1753039890565@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3481 +4934 2025-07-20 19:35:49.015675+00 2025-07-20 19:35:49.015687+00 f t Invitado Amar invitado-1753040143861@example.com 55555555 \N \N \N \N \N 99 \N \N iamar-3482 +4935 2025-07-20 19:48:08.078093+00 2025-07-20 19:48:08.078105+00 f t Invitado Amar invitado-1753040887158@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3483 +4936 2025-07-20 19:58:28.628326+00 2025-07-20 19:58:28.628336+00 f t Invitado Amar invitado-1753041508289@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-3484 +4937 2025-07-20 19:58:58.52774+00 2025-07-20 19:58:58.52775+00 f t Invitado Amar invitado-1753041538144@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3485 +4938 2025-07-20 20:32:37.200568+00 2025-07-20 20:32:37.200576+00 f t Aaron Dugo aarondugo24@gmail.com +541154849609 \N Chile 2214 1 4 \N \N -34.6173802 -58.3978656 18 \N \N adugo +4939 2025-07-20 20:41:40.417541+00 2025-07-20 20:41:40.417549+00 f t Invitado Amar invitado-1753044099759@example.com 55555555 \N \N \N \N \N 2 \N \N iamar-3486 +4940 2025-07-20 20:44:22.774288+00 2025-07-20 20:44:22.774299+00 f t Invitado Amar invitado-1753044262404@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3487 +4941 2025-07-20 20:56:24.78143+00 2025-07-20 20:56:24.781438+00 f t Invitado Amar invitado-1753044984284@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-3488 +4942 2025-07-20 20:58:29.992609+00 2025-07-20 20:58:29.992618+00 f t Invitado Amar invitado-1753045109691@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-3489 +4943 2025-07-20 21:20:26.936991+00 2025-07-20 21:20:26.937+00 f t Invitado Amar invitado-1753046426222@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-3490 +4944 2025-07-20 21:33:18.547523+00 2025-07-20 21:33:18.547532+00 f t Invitado Amar invitado-1753047197474@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-3491 +4945 2025-07-20 22:17:19.15462+00 2025-07-20 22:17:19.154629+00 f t Invitado Amar invitado-1753049838967@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3492 +4946 2025-07-20 22:34:39.252065+00 2025-07-20 22:34:39.252074+00 f t Invitado Amar invitado-1753050878393@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-3493 +4947 2025-07-20 22:36:51.634221+00 2025-07-20 22:36:51.634259+00 f t Invitado Amar invitado-1753051010994@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3494 +4948 2025-07-20 23:13:53.70986+00 2025-07-20 23:13:53.70987+00 f t Invitado Amar invitado-1753053232716@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3495 +4949 2025-07-20 23:22:08.77441+00 2025-07-20 23:22:08.774419+00 f t Invitado Amar invitado-1753053727933@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3496 +4950 2025-07-20 23:30:27.117275+00 2025-07-20 23:30:27.117288+00 f t Invitado Amar invitado-1753054226029@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-3497 +4951 2025-07-20 23:52:03.084103+00 2025-07-20 23:52:03.084112+00 f t Invitado Amar invitado-1753055522563@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3498 +4952 2025-07-20 23:53:51.645157+00 2025-07-20 23:53:51.645165+00 f t Invitado Amar invitado-1753055634053@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-3499 +4953 2025-07-21 00:07:41.064562+00 2025-07-21 00:07:41.064572+00 f t Invitado Amar invitado-1753056460367@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3500 +4954 2025-07-21 00:28:59.607084+00 2025-07-21 00:28:59.607094+00 f t Alejandra Baez alejandrabaezguy@gmail.com +541150082916 \N Av Juan B Justo 3966 1* \N \N -31.3784231 -64.1758362 34 1419 \N abaez +4955 2025-07-21 00:34:06.418726+00 2025-07-21 00:34:06.418736+00 f t Invitado Amar invitado-1753058045999@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3501 +4956 2025-07-21 00:49:54.285886+00 2025-07-21 00:49:54.285897+00 f t Invitado Amar invitado-1753058993656@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3502 +4957 2025-07-21 01:09:11.552878+00 2025-07-21 01:09:11.552889+00 f t Invitado Amar invitado-1753060150978@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3503 +4958 2025-07-21 01:36:00.960336+00 2025-07-21 01:36:00.960345+00 f t Invitado Amar invitado-1753061760266@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-3504 +4959 2025-07-21 01:53:00.016592+00 2025-07-21 01:53:00.016601+00 f t Invitado Amar invitado-1753062777430@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3505 +4960 2025-07-21 01:54:45.375861+00 2025-07-21 01:54:45.37587+00 f t Invitado Amar invitado-1753062883178@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3506 +4961 2025-07-21 03:14:00.148467+00 2025-07-21 03:14:00.148477+00 f t Invitado Amar invitado-1753067640362@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3507 +4962 2025-07-21 03:21:38.048608+00 2025-07-21 03:21:38.048616+00 f t Invitado Amar invitado-1753068097453@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3508 +4963 2025-07-21 03:24:25.089044+00 2025-07-21 03:24:25.089052+00 f t Invitado Amar invitado-1753068265503@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3509 +4964 2025-07-21 03:39:07.333279+00 2025-07-21 03:39:07.33329+00 f t Invitado Amar invitado-1753069146316@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3510 +4965 2025-07-21 03:39:54.628262+00 2025-07-21 03:39:54.628286+00 f t Invitado Amar invitado-1753069193875@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3511 +4966 2025-07-21 03:47:20.665863+00 2025-07-21 03:47:20.665871+00 f t Invitado Amar invitado-1753069639669@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3512 +4967 2025-07-21 04:07:20.183501+00 2025-07-21 04:07:20.183512+00 f t Invitado Amar invitado-1753070839836@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3513 +4968 2025-07-21 04:36:07.89845+00 2025-07-21 04:36:07.898461+00 f t Invitado Amar invitado-1753072566955@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3514 +4969 2025-07-21 05:48:41.194463+00 2025-07-21 05:48:41.194473+00 f t Invitado Amar invitado-1753076920059@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3515 +4970 2025-07-21 08:25:37.868266+00 2025-07-21 08:25:37.868278+00 f t Invitado Amar invitado-1753086336339@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-3516 +4971 2025-07-21 08:37:24.675987+00 2025-07-21 08:37:24.675996+00 f t Invitado Amar invitado-1753087044314@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3517 +4972 2025-07-21 10:01:45.82841+00 2025-07-21 10:01:45.828423+00 f t Invitado Amar invitado-1753092105519@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-3518 +4973 2025-07-21 10:03:25.897275+00 2025-07-21 10:03:25.897285+00 f t Invitado Amar invitado-1753092205382@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-3519 +4974 2025-07-21 10:04:06.095017+00 2025-07-21 10:04:06.095027+00 f t Invitado Amar invitado-1753092245968@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-3520 +4975 2025-07-21 11:56:28.476969+00 2025-07-21 11:56:28.476978+00 f t Invitado Amar invitado-1753098987637@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3521 +4976 2025-07-21 11:57:39.761216+00 2025-07-21 11:57:39.761224+00 f t Invitado Amar invitado-1753099060710@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-3522 +4977 2025-07-21 11:59:05.683945+00 2025-07-21 11:59:05.683957+00 f t Invitado Amar invitado-1753099144930@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3523 +4978 2025-07-21 12:02:38.265195+00 2025-07-21 12:02:38.265205+00 f t Invitado Amar invitado-1753099356814@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3524 +4979 2025-07-21 12:04:50.937743+00 2025-07-21 12:04:50.937753+00 f t Invitado Amar invitado-1753099490563@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3525 +4980 2025-07-21 12:06:07.246135+00 2025-07-21 12:06:07.246147+00 f t Invitado Amar invitado-1753099565966@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-3526 +4981 2025-07-21 12:07:12.586977+00 2025-07-21 12:07:12.586994+00 f t Invitado Amar invitado-1753099632407@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3527 +4982 2025-07-21 12:12:55.638583+00 2025-07-21 12:12:55.638592+00 f t Invitado Amar invitado-1753099975830@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-3528 +4983 2025-07-21 12:19:28.3039+00 2025-07-21 12:19:28.303913+00 f t Invitado Amar invitado-1753100367961@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-3529 +4984 2025-07-21 12:41:15.326947+00 2025-07-21 12:41:15.326955+00 f t Invitado Amar invitado-1753101675005@example.com 55555555 \N \N \N \N \N 57 \N \N iamar-3530 +4985 2025-07-21 13:07:04.544653+00 2025-07-21 13:07:04.544666+00 f t Invitado Amar invitado-1753103222378@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3531 +4986 2025-07-21 13:08:38.438407+00 2025-07-21 13:08:38.438414+00 f t Invitado Amar invitado-1753103318097@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3532 +13318 2025-11-14 18:27:32.914519+00 2025-11-14 18:27:32.914527+00 f t Invitado Amar invitado-1763144851551@example.com 55555555 \N \N \N \N \N 53 \N \N \N +4988 2025-07-21 13:40:35.986209+00 2025-07-21 13:40:35.986218+00 f t Invitado Amar invitado-1753105232807@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3533 +4989 2025-07-21 13:47:08.456876+00 2025-07-21 13:47:08.456885+00 f t Nicolas Ballare Scopel nballarescopel@gmail.com +5491154214443 \N Republica Arabe Siria 3242 Piso 1, Depto 4 \N \N -34.5785386 -58.4122148 1 1417 \N nballarescopel +4990 2025-07-21 13:58:20.137497+00 2025-07-21 13:58:20.13751+00 f t Invitado Amar invitado-1753106298689@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3534 +4991 2025-07-21 14:21:49.190686+00 2025-07-21 14:21:49.190695+00 f t Invitado Amar invitado-1753107708188@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3535 +4992 2025-07-21 14:39:22.185066+00 2025-07-21 14:39:22.185079+00 f t Liliana Crego lilianacrego54@gmail.com +541158729899 \N Solis 1 Torre Goletas 2A, depto 801 \N \N -34.4274408 -58.5671117 22 1420 \N lcrego +4993 2025-07-21 15:14:35.651942+00 2025-07-21 15:14:35.651951+00 f t Invitado Amar invitado-1753110873785@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3536 +4994 2025-07-21 15:18:21.284182+00 2025-07-21 15:18:21.284193+00 f t Invitado Amar invitado-1753111100778@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3537 +4995 2025-07-21 15:28:53.256824+00 2025-07-21 15:28:53.256834+00 f t Invitado Amar invitado-1753111732602@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3538 +4996 2025-07-21 15:31:44.090747+00 2025-07-21 15:31:44.090756+00 f t Invitado Amar invitado-1753111903384@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3539 +4997 2025-07-21 15:39:09.704516+00 2025-07-21 15:39:09.704529+00 f t Invitado Amar invitado-1753112349279@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3540 +4998 2025-07-21 15:39:48.396667+00 2025-07-21 15:39:48.396676+00 f t Invitado Amar invitado-1753112388202@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3541 +4999 2025-07-21 15:42:03.47036+00 2025-07-21 15:42:03.47037+00 f t Invitado Amar invitado-1753112523274@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3542 +5000 2025-07-21 15:57:16.851304+00 2025-07-21 15:57:16.851314+00 f t Giselle Carrizo giselle.carrizo@bue.edu.ar 91136005546 \N Pringles 484 6A \N FEMALE \N -34.6062331 -58.4277026 23 1418 \N gcarrizo +5001 2025-07-21 16:25:20.994025+00 2025-07-21 16:25:20.994036+00 f t Invitado Amar invitado-1753115121094@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3543 +5002 2025-07-21 16:33:40.854426+00 2025-07-21 16:33:40.854435+00 f t Invitado Amar invitado-1753115619631@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3544 +5003 2025-07-21 16:38:19.874026+00 2025-07-21 16:38:19.874043+00 f t Invitado Amar invitado-1753115898832@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-3545 +5004 2025-07-21 17:10:24.62099+00 2025-07-21 17:10:24.621002+00 f t Invitado Amar invitado-1753117824560@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3546 +5005 2025-07-21 17:11:12.10422+00 2025-07-21 17:11:12.104229+00 f t Invitado Amar invitado-1753117872656@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3547 +5006 2025-07-21 17:23:55.455353+00 2025-07-21 17:23:55.455368+00 f t Invitado Amar invitado-1753118635458@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3548 +5007 2025-07-21 17:32:57.012106+00 2025-07-21 17:32:57.012117+00 f t Invitado Amar invitado-1753119176449@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-3549 +5008 2025-07-21 17:38:58.013104+00 2025-07-21 17:38:58.013113+00 f t Invitado Amar invitado-1753119536247@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3550 +5009 2025-07-21 17:56:52.175592+00 2025-07-21 17:56:52.175602+00 f t Invitado Amar invitado-1753120611594@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3551 +5010 2025-07-21 17:59:49.136899+00 2025-07-21 17:59:49.136908+00 f t Invitado Amar invitado-1753120788687@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3552 +5011 2025-07-21 18:14:02.051948+00 2025-07-21 18:14:02.051958+00 f t Invitado Amar invitado-1753121641806@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3553 +5012 2025-07-21 18:34:15.448175+00 2025-07-21 18:34:15.448183+00 f t Invitado Amar invitado-1753122853460@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3554 +5013 2025-07-21 19:17:12.554769+00 2025-07-21 19:17:12.554781+00 f t Invitado Amar invitado-1753125431083@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-3555 +5014 2025-07-21 19:58:48.575035+00 2025-07-21 19:58:48.575051+00 f t Invitado Amar invitado-1753127926129@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-3556 +5015 2025-07-21 19:59:39.491839+00 2025-07-21 19:59:39.491848+00 f t Invitado Amar invitado-1753127956956@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-3557 +5016 2025-07-21 20:11:46.215456+00 2025-07-21 20:11:46.215466+00 f t Invitado Amar invitado-1753128707055@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-3558 +5017 2025-07-21 20:32:34.080791+00 2025-07-21 20:32:34.080799+00 f t Invitado Amar invitado-1753129953672@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3559 +5018 2025-07-21 22:10:35.163788+00 2025-07-21 22:10:35.163799+00 f t Invitado Amar invitado-1753135834310@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-3560 +5019 2025-07-21 22:10:59.627346+00 2025-07-21 22:10:59.627357+00 f t Invitado Amar invitado-1753135859262@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3561 +5020 2025-07-21 22:26:16.824286+00 2025-07-21 22:26:16.824295+00 f t Invitado Amar invitado-1753136776543@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-3562 +5021 2025-07-21 23:17:07.638737+00 2025-07-21 23:17:07.638747+00 f t Adriana Viola adriana_viola@hotmail.com +5491131767800 \N Epuyen 509 Timbre 2 \N FEMALE 1976-04-02 -34.6092754 -58.4315079 14 1421 \N aviola +5022 2025-07-21 23:22:44.704143+00 2025-07-21 23:22:44.704151+00 f t Invitado Amar invitado-1753140164229@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3563 +5023 2025-07-21 23:52:53.692671+00 2025-07-21 23:52:53.692683+00 f t Invitado Amar invitado-1753141971919@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3564 +5024 2025-07-21 23:56:51.245663+00 2025-07-21 23:56:51.245672+00 f t Nahuel Fuentes nahuel_xeneize94@hotmail.com +541132486804 \N Av. Juan B. Justo 6889 Casa \N \N -31.3377219 -64.1762113 16 1422 \N nfuentes +5025 2025-07-21 23:59:56.713668+00 2025-07-21 23:59:56.71368+00 f t Invitado Amar invitado-1753142396090@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-3565 +5026 2025-07-22 01:05:04.537716+00 2025-07-22 01:05:04.53773+00 f t Invitado Amar invitado-1753146304088@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3566 +5027 2025-07-22 01:05:23.843887+00 2025-07-22 01:05:23.843897+00 f t Invitado Amar invitado-1753146323686@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-3567 +5028 2025-07-22 01:30:07.582271+00 2025-07-22 01:30:07.582281+00 f t Invitado Amar invitado-1753147806101@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3568 +5029 2025-07-22 02:50:56.494483+00 2025-07-22 02:50:56.494496+00 f t Invitado Amar invitado-1753152656001@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3569 +5030 2025-07-22 03:07:24.461021+00 2025-07-22 03:07:24.461031+00 f t Invitado Amar invitado-1753153643558@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-3570 +5031 2025-07-22 03:42:44.295931+00 2025-07-22 03:42:44.295951+00 f t Invitado Amar invitado-1753155764244@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3571 +5032 2025-07-22 05:46:56.175409+00 2025-07-22 05:46:56.17542+00 f t Invitado Amar invitado-1753163217185@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3572 +5033 2025-07-22 06:58:44.172201+00 2025-07-22 06:58:44.172212+00 f t Invitado Amar invitado-1753167524180@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3573 +5034 2025-07-22 08:23:48.894548+00 2025-07-22 08:23:48.894557+00 f t Invitado Amar invitado-1753172628092@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3574 +5035 2025-07-22 09:08:24.733881+00 2025-07-22 09:08:24.733889+00 f t Invitado Amar invitado-1753175304889@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3575 +5036 2025-07-22 11:01:28.734393+00 2025-07-22 11:01:28.734404+00 f t Invitado Amar invitado-1753182088486@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3576 +5037 2025-07-22 11:16:37.089318+00 2025-07-22 11:16:37.089327+00 f t Invitado Amar invitado-1753182996961@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3577 +5038 2025-07-22 12:04:09.569459+00 2025-07-22 12:04:09.56947+00 f t Invitado Amar invitado-1753185847897@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3578 +5039 2025-07-22 12:18:40.145453+00 2025-07-22 12:18:40.145461+00 f t Invitado Amar invitado-1753186719261@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3579 +5040 2025-07-22 12:41:00.091994+00 2025-07-22 12:41:00.092004+00 f t Invitado Amar invitado-1753188058384@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3580 +5041 2025-07-22 14:31:00.151973+00 2025-07-22 14:31:00.151982+00 f t Invitado Amar invitado-1753194659687@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3581 +5042 2025-07-22 14:40:31.962586+00 2025-07-22 14:40:31.962598+00 f t Invitado Amar invitado-1753195231076@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3582 +5043 2025-07-22 15:21:36.846942+00 2025-07-22 15:21:36.84695+00 f t Invitado Amar invitado-1753197697188@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-3583 +5044 2025-07-22 15:21:52.913857+00 2025-07-22 15:21:52.913869+00 f t Invitado Amar invitado-1753197712559@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3584 +5045 2025-07-22 15:33:32.341734+00 2025-07-22 15:33:32.341743+00 f t Invitado Amar invitado-1753198411724@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-3585 +5046 2025-07-22 15:43:03.09516+00 2025-07-22 15:43:03.095175+00 f t Invitado Amar invitado-1753198983218@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3586 +5047 2025-07-22 15:57:54.075974+00 2025-07-22 15:57:54.075982+00 f t Invitado Amar invitado-1753199767580@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3587 +5048 2025-07-22 15:59:15.107845+00 2025-07-22 15:59:15.107853+00 f t Invitado Amar invitado-1753199848831@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3588 +5049 2025-07-22 16:09:21.45442+00 2025-07-22 16:09:21.454432+00 f t Invitado Amar invitado-1753200560698@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3589 +5050 2025-07-22 16:13:39.777539+00 2025-07-22 16:13:39.777547+00 f t Invitado Amar invitado-1753200820556@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3590 +5051 2025-07-22 16:30:23.629744+00 2025-07-22 16:30:23.629756+00 f t Invitado Amar invitado-1753201823144@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3591 +5052 2025-07-22 16:32:21.230354+00 2025-07-22 16:32:21.230363+00 f t Invitado Amar invitado-1753201941006@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3592 +5053 2025-07-22 16:37:29.219846+00 2025-07-22 16:37:29.219857+00 f t Invitado Amar invitado-1753202249077@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-3593 +5054 2025-07-22 16:42:50.653188+00 2025-07-22 16:42:50.653196+00 f t Invitado Amar invitado-1753202570929@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-3594 +5055 2025-07-22 16:57:20.777265+00 2025-07-22 16:57:20.777274+00 f t Invitado Amar invitado-1753203440801@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3595 +5056 2025-07-22 17:32:35.167749+00 2025-07-22 17:32:35.167757+00 f t Invitado Amar invitado-1753205554618@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3596 +5057 2025-07-22 17:32:56.047293+00 2025-07-22 17:32:56.047304+00 f t Invitado Amar invitado-1753205575776@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3597 +5058 2025-07-22 17:32:56.126776+00 2025-07-22 17:32:56.126781+00 f t Verónica Caligaris elgatoazulado@gmail.com 91158822373 \N Díaz colodrero 3170 1B \N FEMALE \N -34.5675526 -58.4906155 29 1423 \N vcaligaris +5059 2025-07-22 17:33:52.771791+00 2025-07-22 17:33:52.771799+00 f t Invitado Amar invitado-1753205632269@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-3598 +5060 2025-07-22 17:54:29.85001+00 2025-07-22 17:54:29.850022+00 f t Invitado Amar invitado-1753206869431@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3599 +5061 2025-07-22 18:08:24.275465+00 2025-07-22 18:08:24.275473+00 f t Tomas Melogno tomasmelogno84@gmail.com +541128251220 \N Agrelo 4035 4 \N \N -34.6189448 -58.4231196 23 \N \N tmelogno +5062 2025-07-22 18:20:05.30885+00 2025-07-22 18:20:05.308864+00 f t Invitado Amar invitado-1753208404811@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3600 +5063 2025-07-22 18:30:15.950684+00 2025-07-22 18:30:15.950692+00 f t Invitado Amar invitado-1753209015420@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-3601 +5064 2025-07-22 18:31:30.187237+00 2025-07-22 18:31:30.187245+00 f t Invitado Amar invitado-1753209089853@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-3602 +5065 2025-07-22 18:40:35.835449+00 2025-07-22 18:40:35.835457+00 f t Invitado Amar invitado-1753209635254@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3603 +5066 2025-07-22 19:09:56.381483+00 2025-07-22 19:09:56.381492+00 f t Invitado Amar invitado-1753211395795@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3604 +5067 2025-07-22 19:17:35.547269+00 2025-07-22 19:17:35.547277+00 f t Invitado Amar invitado-1753211854614@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-3605 +5068 2025-07-22 19:20:04.259397+00 2025-07-22 19:20:04.259411+00 f t Invitado Amar invitado-1753212003606@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3606 +5069 2025-07-22 19:35:45.825973+00 2025-07-22 19:35:45.825981+00 f t Invitado Amar invitado-1753212944970@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-3607 +5070 2025-07-22 20:03:51.163281+00 2025-07-22 20:03:51.16329+00 f t Invitado Amar invitado-1753214629388@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3608 +5072 2025-07-22 21:00:43.382481+00 2025-07-22 21:00:43.382494+00 f t Invitado Amar invitado-1753218042354@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3609 +5073 2025-07-22 21:24:37.001914+00 2025-07-22 21:24:37.001925+00 f t Invitado Amar invitado-1753219476702@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3610 +5074 2025-07-22 21:42:12.035392+00 2025-07-22 21:42:12.035405+00 f t Invitado Amar invitado-1753220531697@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-3611 +5075 2025-07-22 21:49:33.550798+00 2025-07-22 21:49:33.55081+00 f t Invitado Amar invitado-1753220972949@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-3612 +5076 2025-07-22 21:53:11.017766+00 2025-07-22 21:53:11.017778+00 f t Paula Messina pmessina@gmail.com +541131646620 \N Rocha 1758 5 C \N \N -34.6428694 -58.374787 32 \N \N pmessina +5077 2025-07-22 21:54:51.47446+00 2025-07-22 21:54:51.474468+00 f t Invitado Amar invitado-1753221291269@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-3613 +5078 2025-07-22 22:13:30.198498+00 2025-07-22 22:13:30.198505+00 f t Hilen Gutierrez hilenmg@gmail.com 91123396282 \N colectora panamericana 2065 Remax \N FEMALE \N -34.490197 -58.5588734 58 1425 \N hgutierrez +5079 2025-07-22 23:10:05.090389+00 2025-07-22 23:10:05.090402+00 f t Invitado Amar invitado-1753225803785@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-3614 +5080 2025-07-22 23:39:04.702516+00 2025-07-22 23:39:04.702525+00 f t Invitado Amar invitado-1753227544137@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3615 +5081 2025-07-22 23:41:26.447675+00 2025-07-22 23:41:26.447682+00 f t Amina Sales amina.salespr@gmail.com +5491127352778 \N Jerónimo Salguero 2750 \N \N FEMALE \N -34.5799571 -58.4081579 1 1426 \N asales +5082 2025-07-22 23:47:04.3345+00 2025-07-22 23:47:04.334508+00 f t Invitado Amar invitado-1753228023796@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3616 +5083 2025-07-23 00:01:47.963748+00 2025-07-23 00:01:47.963757+00 f t Invitado Amar invitado-1753228907700@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3617 +5084 2025-07-23 00:04:18.739911+00 2025-07-23 00:04:18.739924+00 f t Invitado Amar invitado-1753229057047@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3618 +5085 2025-07-23 00:07:54.707062+00 2025-07-23 00:07:54.707072+00 f t Invitado Amar invitado-1753229274229@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3619 +5086 2025-07-23 00:10:31.190594+00 2025-07-23 00:10:31.190603+00 f t Invitado Amar invitado-1753229430759@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-3620 +5087 2025-07-23 00:31:31.663443+00 2025-07-23 00:31:31.663453+00 f t Hugo Tonti artehugotonti@gmail.com 1165137452 \N Bogotá 1854 \N \N MALE 1936-10-28 -34.6226601 -58.4563121 4 1427 \N htonti +5088 2025-07-23 01:00:50.528097+00 2025-07-23 01:00:50.528109+00 f t Invitado Amar invitado-1753232449015@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3621 +5089 2025-07-23 01:43:18.368533+00 2025-07-23 01:43:18.368547+00 f t Invitado Amar invitado-1753234997136@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3622 +5090 2025-07-23 02:12:50.749162+00 2025-07-23 02:12:50.749171+00 f t Invitado Amar invitado-1753236770279@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-3623 +5091 2025-07-23 02:32:18.836085+00 2025-07-23 02:32:18.836094+00 f t Invitado Amar invitado-1753237937786@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3624 +5092 2025-07-23 02:39:51.388968+00 2025-07-23 02:39:51.388977+00 f t Invitado Amar invitado-1753238391043@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3625 +5093 2025-07-23 02:56:07.426062+00 2025-07-23 02:56:07.426074+00 f t Invitado Amar invitado-1753239366855@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3626 +5094 2025-07-23 03:28:37.112509+00 2025-07-23 03:28:37.112523+00 f t Invitado Amar invitado-1753241317074@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-3627 +5095 2025-07-23 03:32:42.963205+00 2025-07-23 03:32:42.963217+00 f t Invitado Amar invitado-1753241562411@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3628 +5096 2025-07-23 03:33:13.353942+00 2025-07-23 03:33:13.353954+00 f t Invitado Amar invitado-1753241593181@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3629 +5097 2025-07-23 03:51:41.363603+00 2025-07-23 03:51:41.363614+00 f t Invitado Amar invitado-1753242700802@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-3630 +5098 2025-07-23 03:56:48.397482+00 2025-07-23 03:56:48.397491+00 f t Invitado Amar invitado-1753243007926@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3631 +5099 2025-07-23 03:59:00.607714+00 2025-07-23 03:59:00.607726+00 f t Invitado Amar invitado-1753243140297@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3632 +5100 2025-07-23 04:48:42.013983+00 2025-07-23 04:48:42.013992+00 f t Invitado Amar invitado-1753246121054@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3633 +5101 2025-07-23 08:06:02.529129+00 2025-07-23 08:06:02.529144+00 f t Invitado Amar invitado-1753257963324@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3634 +5102 2025-07-23 08:09:59.859247+00 2025-07-23 08:09:59.859256+00 f t Invitado Amar invitado-1753258200849@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3635 +5103 2025-07-23 08:10:40.095548+00 2025-07-23 08:10:40.095557+00 f t Invitado Amar invitado-1753258238853@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3636 +5104 2025-07-23 08:52:49.064225+00 2025-07-23 08:52:49.064234+00 f t Invitado Amar invitado-1753260767413@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-3637 +5105 2025-07-23 10:11:40.44677+00 2025-07-23 10:11:40.446782+00 f t Invitado Amar invitado-1753265499847@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-3638 +5106 2025-07-23 10:21:13.932805+00 2025-07-23 10:21:13.932814+00 f t Invitado Amar invitado-1753266073555@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3639 +5107 2025-07-23 11:35:42.152821+00 2025-07-23 11:35:42.15283+00 f t Monica Lima Maldonado monica.lima.maldonado@gmail.com +541134253307 \N Arribeños 2617 2A \N \N -34.5532578 -58.4540754 3 1428 \N mlimamaldonado +5108 2025-07-23 11:43:16.738951+00 2025-07-23 11:43:16.738961+00 f t Invitado Amar invitado-1753270996256@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3640 +5109 2025-07-23 11:45:54.639692+00 2025-07-23 11:45:54.639705+00 f t Invitado Amar invitado-1753271154528@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3641 +5110 2025-07-23 11:54:31.287381+00 2025-07-23 11:54:31.28739+00 f t Invitado Amar invitado-1753271671006@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3642 +5111 2025-07-23 12:12:37.740537+00 2025-07-23 12:12:37.740547+00 f t Invitado Amar invitado-1753272755558@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3643 +5112 2025-07-23 12:59:42.615834+00 2025-07-23 12:59:42.615844+00 f t Invitado Amar invitado-1753275582295@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3644 +5113 2025-07-23 13:41:02.96499+00 2025-07-23 13:41:02.964999+00 f t Invitado Amar invitado-1753278064108@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-3645 +5114 2025-07-23 13:47:06.11027+00 2025-07-23 13:47:06.110282+00 f t Invitado Amar invitado-1753278426051@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3646 +5115 2025-07-23 13:48:12.352717+00 2025-07-23 13:48:12.352726+00 f t Invitado Amar invitado-1753278492693@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3647 +5116 2025-07-23 14:19:55.688663+00 2025-07-23 14:19:55.688672+00 f t Invitado Amar invitado-1753280394308@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3648 +5117 2025-07-23 14:49:27.45389+00 2025-07-23 14:49:27.453898+00 f t Invitado Amar invitado-1753282167752@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3649 +5118 2025-07-23 14:50:17.117102+00 2025-07-23 14:50:17.117112+00 f t Invitado Amar invitado-1753282214854@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3650 +5119 2025-07-23 14:57:34.304825+00 2025-07-23 14:57:34.304835+00 f t Invitado Amar invitado-1753282654013@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3651 +5120 2025-07-23 15:55:26.403848+00 2025-07-23 15:55:26.403855+00 f t Maria Cristina Millore crismilon@yahoo.com.ar 91144380443 \N Bacacay 4057 2 A \N FEMALE \N -34.6319725 -58.4846339 16 1429 \N mmillore +5121 2025-07-23 16:21:25.229607+00 2025-07-23 16:21:25.229618+00 f t Invitado Amar invitado-1753287684047@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-3652 +5122 2025-07-23 16:21:52.316432+00 2025-07-23 16:21:52.316444+00 f t Invitado Amar invitado-1753287711517@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-3653 +5123 2025-07-23 16:25:27.78151+00 2025-07-23 16:25:27.78152+00 f t Invitado Amar invitado-1753287927207@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3654 +5124 2025-07-23 17:55:04.235335+00 2025-07-23 17:55:04.23535+00 f t Invitado Amar invitado-1753293303297@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-3655 +5125 2025-07-23 18:01:22.127045+00 2025-07-23 18:01:22.127057+00 f t Invitado Amar invitado-1753293681569@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3656 +5126 2025-07-23 18:42:02.060314+00 2025-07-23 18:42:02.060325+00 f t Invitado Amar invitado-1753296121094@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-3657 +5127 2025-07-23 19:24:15.702307+00 2025-07-23 19:24:15.702316+00 f t Invitado Amar invitado-1753298655900@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3658 +5128 2025-07-23 19:40:55.938848+00 2025-07-23 19:40:55.938857+00 f t Invitado Amar invitado-1753299655559@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3659 +5129 2025-07-23 20:27:40.869881+00 2025-07-23 20:27:40.86989+00 f t Invitado Amar invitado-1753302460330@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-3660 +5130 2025-07-23 21:29:45.951486+00 2025-07-23 21:29:45.951496+00 f t Carolina Yapur yapurr@gmail.com +5401165239449 \N Acuña de Figueroa 1312 9C \N \N -34.5962046 -58.4216289 1 \N \N cyapur +5131 2025-07-23 21:36:18.936434+00 2025-07-23 21:36:18.936444+00 f t Invitado Amar invitado-1753306579429@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3661 +5132 2025-07-23 21:37:13.274853+00 2025-07-23 21:37:13.274862+00 f t Invitado Amar invitado-1753306633095@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3662 +5133 2025-07-23 21:38:13.902676+00 2025-07-23 21:38:13.902688+00 f t Invitado Amar invitado-1753306693567@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3663 +5134 2025-07-23 21:44:01.919314+00 2025-07-23 21:44:01.919323+00 f t Invitado Amar invitado-1753307042857@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3664 +5135 2025-07-23 21:57:38.201631+00 2025-07-23 21:57:38.201641+00 f t Invitado Amar invitado-1753307857483@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-3665 +5136 2025-07-23 21:58:00.586105+00 2025-07-23 21:58:00.586117+00 f t Invitado Amar invitado-1753307879923@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3666 +5137 2025-07-23 22:01:40.199716+00 2025-07-23 22:01:40.199725+00 f t Invitado Amar invitado-1753308099856@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-3667 +5138 2025-07-23 22:02:22.898883+00 2025-07-23 22:02:22.898891+00 f t Invitado Amar invitado-1753308142674@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-3668 +5139 2025-07-23 22:02:51.853164+00 2025-07-23 22:02:51.853174+00 f t Invitado Amar invitado-1753308171679@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-3669 +5140 2025-07-23 22:07:58.060898+00 2025-07-23 22:07:58.060906+00 f t Invitado Amar invitado-1753308476302@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3670 +5141 2025-07-23 22:10:44.483023+00 2025-07-23 22:10:44.483035+00 f t Invitado Amar invitado-1753308643184@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3671 +5142 2025-07-23 22:30:05.769951+00 2025-07-23 22:30:05.769967+00 f t Invitado Amar invitado-1753309804522@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3672 +5143 2025-07-23 22:30:10.986298+00 2025-07-23 22:30:10.986307+00 f t Invitado Amar invitado-1753309810538@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3673 +5144 2025-07-23 23:49:05.061838+00 2025-07-23 23:49:05.061853+00 f t Invitado Amar invitado-1753314544561@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3674 +5145 2025-07-24 00:20:38.603763+00 2025-07-24 00:20:38.603777+00 f t Invitado Amar invitado-1753316437365@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3675 +5146 2025-07-24 00:38:37.75306+00 2025-07-24 00:38:37.753072+00 f t Invitado Amar invitado-1753317517141@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3676 +5147 2025-07-24 01:49:05.865362+00 2025-07-24 01:49:05.866265+00 f t Invitado Amar invitado-1753321739057@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3677 +5148 2025-07-24 02:53:42.36261+00 2025-07-24 02:53:42.362621+00 f t Invitado Amar invitado-1753325621192@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3678 +5149 2025-07-24 03:05:32.527713+00 2025-07-24 03:05:32.527723+00 f t Invitado Amar invitado-1753326331869@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3679 +5150 2025-07-24 03:50:03.184456+00 2025-07-24 03:50:03.184471+00 f t Invitado Amar invitado-1753329002666@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3680 +5151 2025-07-24 04:06:26.426704+00 2025-07-24 04:06:26.426713+00 f t Invitado Amar invitado-1753329986506@example.com 55555555 \N \N \N \N \N 146 \N \N iamar-3681 +5152 2025-07-24 05:06:59.030303+00 2025-07-24 05:06:59.030316+00 f t Invitado Amar invitado-1753333618425@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3682 +5153 2025-07-24 10:28:43.516755+00 2025-07-24 10:28:43.516767+00 f t Invitado Amar invitado-1753352923300@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3683 +5154 2025-07-24 10:53:00.714278+00 2025-07-24 10:53:00.714287+00 f t Invitado Amar invitado-1753354380340@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-3684 +5155 2025-07-24 11:03:31.709058+00 2025-07-24 11:03:31.709067+00 f t Invitado Amar invitado-1753355011552@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-3685 +5156 2025-07-24 11:24:02.404746+00 2025-07-24 11:24:02.404759+00 f t Invitado Amar invitado-1753356242154@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3686 +5157 2025-07-24 11:26:54.49917+00 2025-07-24 11:26:54.499183+00 f t Noelia Vogel noelia.v.vogel@gmail.com +541167464959 \N Av Dorrego 2618 C \N \N \N -34.5742269 -58.4342769 1 1431 \N nvogel +5158 2025-07-24 12:15:45.795939+00 2025-07-24 12:15:45.795952+00 f t Invitado Amar invitado-1753359343888@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3687 +5159 2025-07-24 12:37:13.000358+00 2025-07-24 12:37:13.000368+00 f t Invitado Amar invitado-1753360632802@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3688 +5160 2025-07-24 12:39:10.485654+00 2025-07-24 12:39:10.485683+00 f t Invitado Amar invitado-1753360749244@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3689 +5161 2025-07-24 12:46:24.576075+00 2025-07-24 12:46:24.576084+00 f t Invitado Amar invitado-1753361182499@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3690 +5162 2025-07-24 12:53:02.029064+00 2025-07-24 12:53:02.029072+00 f t Invitado Amar invitado-1753361581404@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3691 +5163 2025-07-24 13:19:57.59362+00 2025-07-24 13:19:57.593629+00 f t Invitado Amar invitado-1753363196612@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3692 +5164 2025-07-24 13:35:44.010704+00 2025-07-24 13:35:44.010714+00 f t Invitado Amar invitado-1753364143841@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3693 +5165 2025-07-24 13:47:53.021426+00 2025-07-24 13:47:53.021436+00 f t Invitado Amar invitado-1753364872423@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3694 +5166 2025-07-24 14:21:24.677361+00 2025-07-24 14:21:24.677369+00 f t Invitado Amar invitado-1753366884404@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-3695 +5167 2025-07-24 14:38:06.592407+00 2025-07-24 14:38:06.592421+00 f t Invitado Amar invitado-1753367886240@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3696 +5168 2025-07-24 14:45:59.01751+00 2025-07-24 14:45:59.017518+00 f t Daniela Catanzaro dani_catanzaro@live.com.ar 91131290716 \N castro Barros 1831 \N \N FEMALE \N -34.6347385 -58.4179902 11 1434 \N dcatanzaro +5169 2025-07-24 14:48:48.49855+00 2025-07-24 14:48:48.498558+00 f t Invitado Amar invitado-1753368528171@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3697 +5170 2025-07-24 14:53:46.500676+00 2025-07-24 14:53:46.500683+00 f t Jesus Medina jalfonsomp@gmail.com 91162925511 \N av chorroarin 1382 piso 1 departamento 5 \N MALE \N -34.5807631 -58.4696783 24 1435 \N jmedina +5171 2025-07-24 15:02:20.162641+00 2025-07-24 15:02:20.162655+00 f t Invitado Amar invitado-1753369339615@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3698 +5172 2025-07-24 15:06:02.134858+00 2025-07-24 15:06:02.134872+00 f t Invitado Amar invitado-1753369560573@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3699 +5173 2025-07-24 15:12:13.596314+00 2025-07-24 15:12:13.596328+00 f t Invitado Amar invitado-1753369934555@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3700 +5174 2025-07-24 15:16:43.636041+00 2025-07-24 15:16:43.636054+00 f t Invitado Amar invitado-1753370204230@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-3701 +5175 2025-07-24 15:17:21.899243+00 2025-07-24 15:17:21.899257+00 f t Invitado Amar invitado-1753370241505@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3702 +5176 2025-07-24 15:51:50.948777+00 2025-07-24 15:51:50.948783+00 f t Ana Carolina Abba abba_ana@hotmail.com 91141498279 \N Defensa 1803 3D \N FEMALE \N -34.6230467 -58.3712722 15 1436 \N aabba +5177 2025-07-24 16:05:11.727028+00 2025-07-24 16:05:11.727038+00 f t Ivanna Vorburges ivorburges@gmail.com 91164148978 \N Avendia Hipólito Yrigoyen 1203 \N \N FEMALE \N \N \N 22 1438 \N ivorburges +5178 2025-07-24 16:28:00.864241+00 2025-07-24 16:28:00.864254+00 f t Invitado Amar invitado-1753374480158@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-3703 +5179 2025-07-24 17:18:23.138961+00 2025-07-24 17:18:23.13897+00 f t Marisa Onetto marisa_o@yahoo.com +5491122886396 \N Edison 732 Piso 1, timbre blanco \N \N \N \N 6 \N \N monetto +5180 2025-07-24 17:20:02.372485+00 2025-07-24 17:20:02.372497+00 f t Invitado Amar invitado-1753377601803@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3704 +5181 2025-07-24 17:24:06.191508+00 2025-07-24 17:24:06.191517+00 f t Invitado Amar invitado-1753377848077@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3705 +5182 2025-07-24 18:03:14.401174+00 2025-07-24 18:03:14.401183+00 f t Invitado Amar invitado-1753380193903@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3706 +5183 2025-07-24 18:32:36.494325+00 2025-07-24 18:32:36.494338+00 f t Invitado Amar invitado-1753381955932@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3707 +5184 2025-07-24 18:43:09.775623+00 2025-07-24 18:43:09.775635+00 f t Invitado Amar invitado-1753382589068@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3708 +5185 2025-07-24 18:56:36.662168+00 2025-07-24 18:56:36.66218+00 f t Invitado Amar invitado-1753383395836@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3709 +5186 2025-07-24 18:57:28.118633+00 2025-07-24 18:57:28.118642+00 f t Invitado Amar invitado-1753383447548@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3710 +5187 2025-07-24 19:20:05.326553+00 2025-07-24 19:20:05.326567+00 f t Invitado Amar invitado-1753384804318@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-3711 +5188 2025-07-24 19:29:54.192847+00 2025-07-24 19:29:54.192859+00 f t Invitado Amar invitado-1753385393442@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3712 +13319 2025-11-14 18:29:27.588707+00 2025-11-14 18:29:27.588715+00 f t Invitado Amar invitado-1763144967177@example.com 55555555 \N \N \N \N \N 79 \N \N \N +5190 2025-07-24 19:38:56.015203+00 2025-07-24 19:38:56.015213+00 f t Invitado Amar invitado-1753385935412@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3713 +5191 2025-07-24 19:48:37.038524+00 2025-07-24 19:48:37.038533+00 f t Invitado Amar invitado-1753386518289@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3714 +5192 2025-07-24 19:53:20.183604+00 2025-07-24 19:53:20.183613+00 f t Invitado Amar invitado-1753386801442@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3715 +5193 2025-07-24 19:53:40.198365+00 2025-07-24 19:53:40.198378+00 f t Invitado Amar invitado-1753386821875@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3716 +5194 2025-07-24 19:56:13.809538+00 2025-07-24 19:56:13.80955+00 f t Invitado Amar invitado-1753386973507@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3717 +5195 2025-07-24 19:59:28.313656+00 2025-07-24 19:59:28.313667+00 f t Invitado Amar invitado-1753387167260@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3718 +5196 2025-07-24 20:36:09.020449+00 2025-07-24 20:36:09.020455+00 f t Graciela Rossi rossi@gmail.com 1157459322 \N Avenida directorio 2073 dpto 2 \N FEMALE \N -34.63199 -58.4562785 4 1440 \N grossi-2 +5197 2025-07-24 21:21:27.02924+00 2025-07-24 21:21:27.029251+00 f t Invitado Amar invitado-1753392086210@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-3719 +5198 2025-07-24 21:29:52.004149+00 2025-07-24 21:29:52.004158+00 f t Invitado Amar invitado-1753392589457@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3720 +5199 2025-07-24 21:41:25.969634+00 2025-07-24 21:41:25.969642+00 f t Invitado Amar invitado-1753393285444@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3721 +5200 2025-07-24 21:48:14.509847+00 2025-07-24 21:48:14.509855+00 f t Invitado Amar invitado-1753393693987@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3722 +5201 2025-07-24 21:48:19.57524+00 2025-07-24 21:48:19.575248+00 f t Invitado Amar invitado-1753393699056@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-3723 +5202 2025-07-24 21:57:33.516882+00 2025-07-24 21:57:33.516891+00 f t Invitado Amar invitado-1753394253881@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-3724 +5203 2025-07-24 21:59:38.449767+00 2025-07-24 21:59:38.44978+00 f t Invitado Amar invitado-1753394377911@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3725 +5204 2025-07-24 22:19:31.835927+00 2025-07-24 22:19:31.835935+00 f t Cristian Silvero arielsilverobruno@gmail.com 91134141333 \N Melo 5027 depto 12 \N \N 1979-01-14 \N \N \N \N \N csilvero +5205 2025-07-24 22:40:06.379422+00 2025-07-24 22:40:06.379437+00 f t Invitado Amar invitado-1753396805300@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3726 +5206 2025-07-24 22:43:22.905423+00 2025-07-24 22:43:22.905433+00 f t Invitado Amar invitado-1753397002974@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3727 +5207 2025-07-24 22:50:55.1459+00 2025-07-24 22:50:55.145913+00 f t Invitado Amar invitado-1753397454040@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3728 +5208 2025-07-24 23:08:05.01205+00 2025-07-24 23:08:05.012059+00 f t Invitado Amar invitado-1753398484999@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3729 +5209 2025-07-24 23:30:28.703582+00 2025-07-24 23:30:28.703591+00 f t Invitado Amar invitado-1753399828271@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3730 +5210 2025-07-25 00:23:14.374739+00 2025-07-25 00:23:14.374748+00 f t Invitado Amar invitado-1753402993885@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-3731 +5211 2025-07-25 00:28:46.067333+00 2025-07-25 00:28:46.067345+00 f t Walter Chirino walterchirino13@gmail.com +5491155947250 \N Avenida Caseros 2428 1 D \N \N -34.6355693 -58.3963792 44 \N \N wchirino +5212 2025-07-25 01:29:01.992938+00 2025-07-25 01:29:01.992949+00 f t Invitado Amar invitado-1753406941953@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-3732 +5213 2025-07-25 01:46:17.114499+00 2025-07-25 01:46:17.114509+00 f t Invitado Amar invitado-1753407976143@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-3733 +5214 2025-07-25 03:43:04.156257+00 2025-07-25 03:43:04.156266+00 f t Invitado Amar invitado-1753414983190@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3734 +5215 2025-07-25 04:01:17.976932+00 2025-07-25 04:01:17.976941+00 f t Invitado Amar invitado-1753416077335@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3735 +5216 2025-07-25 08:43:37.836468+00 2025-07-25 08:43:37.83648+00 f t Invitado Amar invitado-1753433017113@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3736 +5217 2025-07-25 08:45:03.206379+00 2025-07-25 08:45:03.206393+00 f t Invitado Amar invitado-1753433102790@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3737 +5218 2025-07-25 08:55:45.128253+00 2025-07-25 08:55:45.128261+00 f t Malena Santos malesantos@gmail.com +541141632319 \N Cervantes 3045 2B - no funciona el timbre, llamar x teléfono \N \N -34.6135506 -58.5199012 21 1442 \N msantos +5219 2025-07-25 09:32:56.610354+00 2025-07-25 09:32:56.610367+00 f t Invitado Amar invitado-1753435976310@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3738 +5220 2025-07-25 09:38:48.385355+00 2025-07-25 09:38:48.385365+00 f t Invitado Amar invitado-1753436328449@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3739 +5221 2025-07-25 10:12:26.870081+00 2025-07-25 10:12:26.870089+00 f t Invitado Amar invitado-1753438346418@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-3740 +5222 2025-07-25 10:45:06.102255+00 2025-07-25 10:45:06.102266+00 f t Invitado Amar invitado-1753440305658@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-3741 +5223 2025-07-25 12:22:33.24288+00 2025-07-25 12:22:33.242889+00 f t Invitado Amar invitado-1753446153199@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3742 +5224 2025-07-25 12:37:15.86375+00 2025-07-25 12:37:15.863763+00 f t Aldana Canteros micaelacanteros876@gmail.com +5401134638278 \N Unamuno ( entre marsella y puerto argentino) 385 3( reja negra ) \N \N \N \N 71 \N \N acanteros +5225 2025-07-25 12:40:58.360658+00 2025-07-25 12:40:58.360669+00 f t Invitado Amar invitado-1753447258550@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3743 +5226 2025-07-25 13:33:45.005405+00 2025-07-25 13:33:45.005414+00 f t Invitado Amar invitado-1753450424354@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-3744 +5227 2025-07-25 13:55:53.17777+00 2025-07-25 13:55:53.177777+00 f t Nicolas Flores nicooflores2015@gmail.com 92994201095 \N Rodriguez 431 1B \N MALE \N -34.6038838 -58.3907618 13 1443 \N nflores +5228 2025-07-25 14:10:29.113109+00 2025-07-25 14:10:29.11312+00 f t Invitado Amar invitado-1753452628707@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3745 +5229 2025-07-25 14:35:59.454886+00 2025-07-25 14:35:59.454895+00 f t Invitado Amar invitado-1753454160435@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3746 +5230 2025-07-25 14:35:59.713086+00 2025-07-25 14:35:59.713094+00 f t Invitado Amar invitado-1753454159066@example.com 55555555 \N \N \N \N \N 48 \N \N iamar-3747 +5231 2025-07-25 14:42:32.202494+00 2025-07-25 14:42:32.202505+00 f t Invitado Amar invitado-1753454552179@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3748 +5232 2025-07-25 14:50:21.891074+00 2025-07-25 14:50:21.891082+00 f t Invitado Amar invitado-1753455021589@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-3749 +5233 2025-07-25 15:09:18.69434+00 2025-07-25 15:09:18.694349+00 f t Valeria Carrera valecarrera9003@gmail.com +543413612380 \N Heredia 485 Pb \N \N -34.5871213 -58.4653937 24 \N \N vcarrera +5234 2025-07-25 15:15:53.112205+00 2025-07-25 15:15:53.112217+00 f t Invitado Amar invitado-1753456552381@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-3750 +5235 2025-07-25 15:21:18.637926+00 2025-07-25 15:21:18.637939+00 f t Invitado Amar invitado-1753456878575@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3751 +5236 2025-07-25 15:37:03.610911+00 2025-07-25 15:37:03.610924+00 f t Invitado Amar invitado-1753457823125@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3752 +5237 2025-07-25 15:41:57.91955+00 2025-07-25 15:41:57.919557+00 f t Sergio Damico sergiodamico@gmail.com 91171146606 \N Bernardo Irigoyen 1588 6 19 \N MALE \N -34.6158044 -58.3801721 15 1445 \N sdamico +5238 2025-07-25 15:52:30.386117+00 2025-07-25 15:52:30.386128+00 f t Invitado Amar invitado-1753458749699@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-3753 +5239 2025-07-25 15:59:21.88894+00 2025-07-25 15:59:21.888947+00 f t Luciana Piantieri lucianampiantieri@gmail.com 91155278114 \N Fray Cayetano 325 6to A \N FEMALE \N -34.6260609 -58.4637672 4 1627 \N lpiantieri +5240 2025-07-25 16:08:55.186709+00 2025-07-25 16:08:55.18672+00 f t Valeria Biglieri esaideaproducciones@gmail.com +541540412435 \N General bernardo ohiggins 3819 Casa, entre carlos gardel y debenedetti \N \N -33.1387663 -64.3575195 39 \N \N vbiglieri +5241 2025-07-25 16:21:59.003102+00 2025-07-25 16:21:59.003113+00 f t Invitado Amar invitado-1753460518204@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-3754 +5242 2025-07-25 16:27:03.328342+00 2025-07-25 16:27:03.328354+00 f t Invitado Amar invitado-1753460822837@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-3755 +5243 2025-07-25 16:41:37.158687+00 2025-07-25 16:41:37.158699+00 f t Invitado Amar invitado-1753461696755@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3756 +5244 2025-07-25 16:51:46.000573+00 2025-07-25 16:51:46.000584+00 f t Invitado Amar invitado-1753462304942@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3757 +5245 2025-07-25 16:59:52.557856+00 2025-07-25 16:59:52.557865+00 f t Invitado Amar invitado-1753462791742@example.com 55555555 \N \N \N \N \N 86 \N \N iamar-3758 +5246 2025-07-25 17:11:32.140199+00 2025-07-25 17:11:32.140212+00 f t Invitado Amar invitado-1753463491750@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3759 +5247 2025-07-25 17:21:19.529845+00 2025-07-25 17:21:19.529853+00 f t Invitado Amar invitado-1753464078864@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-3760 +5248 2025-07-25 17:45:29.729371+00 2025-07-25 17:45:29.729379+00 f t Invitado Amar invitado-1753465529209@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3761 +13320 2025-11-14 18:41:52.492083+00 2025-11-14 18:41:52.492093+00 f t Invitado Amar invitado-1763145708162@example.com 55555555 \N \N \N \N \N 63 \N \N \N +5250 2025-07-25 19:34:43.262565+00 2025-07-25 19:34:43.262574+00 f t Invitado Amar invitado-1753472082689@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3762 +5251 2025-07-25 20:33:33.91624+00 2025-07-25 20:33:33.916249+00 f t Invitado Amar invitado-1753475613050@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-3763 +5252 2025-07-25 21:30:33.377231+00 2025-07-25 21:30:33.37724+00 f t Invitado Amar invitado-1753479034097@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-3764 +5253 2025-07-25 21:48:57.997459+00 2025-07-25 21:48:57.997467+00 f t Invitado Amar invitado-1753480137555@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-3765 +5254 2025-07-25 22:07:36.23458+00 2025-07-25 22:07:36.234586+00 f t Cristina Nélida León cristinanleon@gmail.com +5491150972753 \N Juan Ramírez de Velasco 1118 timbre 2. \N FEMALE \N -34.5927674 -58.4420611 26 1450 \N cleon +5255 2025-07-25 22:14:33.591911+00 2025-07-25 22:14:33.59192+00 f t Invitado Amar invitado-1753481673192@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3766 +5256 2025-07-25 23:26:05.463215+00 2025-07-25 23:26:05.463229+00 f t Invitado Amar invitado-1753485904853@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-3767 +5257 2025-07-25 23:26:54.437348+00 2025-07-25 23:26:54.437356+00 f t Invitado Amar invitado-1753486014179@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-3768 +5258 2025-07-25 23:29:01.057659+00 2025-07-25 23:29:01.057667+00 f t Invitado Amar invitado-1753486139918@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-3769 +5259 2025-07-25 23:48:35.446943+00 2025-07-25 23:48:35.446951+00 f t Debora Francisca Lynch debolynch@gmail.com 🇦🇷+5491167544813 \N Montevideo 1163 6B \N FEMALE \N -34.5953282 -58.3898884 9 1451 \N dlynch +5260 2025-07-26 00:02:45.826589+00 2025-07-26 00:02:45.826602+00 f t Invitado Amar invitado-1753488165142@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-3770 +13537 2025-11-17 19:59:23.926416+00 2025-11-17 19:59:23.926428+00 f t Juliana Elisabet Sanchez julyanasanchez.js@gmail.com +541161110010 \N Roosevelt 5257 5257 13 c \N \N -34.5776492 -58.494593 29 2170 \N \N +5261 2025-07-26 00:05:56.34367+00 2025-07-26 00:05:56.343679+00 f t Invitado Amar invitado-1753488355328@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3771 +5262 2025-07-26 00:32:31.081768+00 2025-07-26 00:32:31.08178+00 f t Invitado Amar invitado-1753489950958@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-3772 +5263 2025-07-26 00:38:24.462633+00 2025-07-26 00:38:24.462646+00 f t Invitado Amar invitado-1753490303443@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3773 +5264 2025-07-26 01:56:30.020861+00 2025-07-26 01:56:30.020873+00 f t Invitado Amar invitado-1753494989320@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3774 +5265 2025-07-26 02:03:32.409455+00 2025-07-26 02:03:32.409466+00 f t Invitado Amar invitado-1753495411378@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3775 +5266 2025-07-26 02:24:57.912831+00 2025-07-26 02:24:57.91284+00 f t Invitado Amar invitado-1753496697434@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3776 +5267 2025-07-26 06:06:24.256283+00 2025-07-26 06:06:24.256292+00 f t Invitado Amar invitado-1753509983816@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3777 +5268 2025-07-26 07:03:22.656661+00 2025-07-26 07:03:22.656674+00 f t Invitado Amar invitado-1753513401736@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3778 +5269 2025-07-26 10:02:58.742323+00 2025-07-26 10:02:58.742334+00 f t Invitado Amar invitado-1753524178205@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3779 +5270 2025-07-26 11:48:26.114315+00 2025-07-26 11:48:26.114327+00 f t Invitado Amar invitado-1753530505491@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3780 +5271 2025-07-26 11:48:36.123912+00 2025-07-26 11:48:36.12392+00 f t Invitado Amar invitado-1753530515896@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3781 +5272 2025-07-26 12:19:17.030057+00 2025-07-26 12:19:17.030071+00 f t Invitado Amar invitado-1753532356075@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3782 +5273 2025-07-26 12:24:01.616165+00 2025-07-26 12:24:01.616174+00 f t Invitado Amar invitado-1753532640801@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-3783 +5274 2025-07-26 12:38:30.945348+00 2025-07-26 12:38:30.945357+00 f t Invitado Amar invitado-1753533510404@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3784 +5275 2025-07-26 12:44:08.041401+00 2025-07-26 12:44:08.041414+00 f t Invitado Amar invitado-1753533847983@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3785 +5276 2025-07-26 12:59:41.458254+00 2025-07-26 12:59:41.458263+00 f t Invitado Amar invitado-1753534780779@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3786 +5277 2025-07-26 13:18:16.374031+00 2025-07-26 13:18:16.374042+00 f t Invitado Amar invitado-1753535895650@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-3787 +5278 2025-07-26 13:23:02.480214+00 2025-07-26 13:23:02.480226+00 f t Julieta Deangelis julieta.deangelis@gmail.com +541132367016 \N Dr lertora 5184 Casa rejas negras-no funciona el timbre \N \N \N -34.732462 -58.4055209 70 1452 \N jdeangelis +5279 2025-07-26 13:32:47.517079+00 2025-07-26 13:32:47.517091+00 f t Invitado Amar invitado-1753536767183@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3788 +5280 2025-07-26 13:36:35.461732+00 2025-07-26 13:36:35.461743+00 f t Invitado Amar invitado-1753537792306@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3789 +5281 2025-07-26 13:51:14.460268+00 2025-07-26 13:51:14.460277+00 f t Jesica Lagares Zambrini jesi_1686@hotmail.com +541168318171 \N Gregoria Pérez 3521 9 B \N \N \N -34.577299 -58.4551327 38 1453 \N jlagareszambrini +5282 2025-07-26 14:31:24.475294+00 2025-07-26 14:31:24.475304+00 f t Invitado Amar invitado-1753540283845@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3790 +5283 2025-07-26 14:41:18.799614+00 2025-07-26 14:41:18.799623+00 f t Invitado Amar invitado-1753540878838@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3791 +5284 2025-07-26 14:49:55.28468+00 2025-07-26 14:49:55.284693+00 f t Invitado Amar invitado-1753541393166@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-3792 +5285 2025-07-26 14:54:44.029325+00 2025-07-26 14:54:44.029333+00 f t Invitado Amar invitado-1753541683702@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3793 +5286 2025-07-26 15:01:30.13869+00 2025-07-26 15:01:30.138701+00 f t Invitado Amar invitado-1753542089481@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3794 +5287 2025-07-26 15:05:14.164965+00 2025-07-26 15:05:14.164975+00 f t Invitado Amar invitado-1753542313830@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-3795 +5288 2025-07-26 15:05:25.274555+00 2025-07-26 15:05:25.274564+00 f t Invitado Amar invitado-1753542324915@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3796 +5289 2025-07-26 15:53:02.612748+00 2025-07-26 15:53:02.612762+00 f t Invitado Amar invitado-1753545181993@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-3797 +5290 2025-07-26 16:09:05.012549+00 2025-07-26 16:09:05.012562+00 f t Invitado Amar invitado-1753546144384@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3798 +5291 2025-07-26 16:10:21.240173+00 2025-07-26 16:10:21.240181+00 f t Invitado Amar invitado-1753546220736@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3799 +5292 2025-07-26 16:22:06.628769+00 2025-07-26 16:22:06.628783+00 f t Bianca Boninsegna biancaboninsegnaa@gmail.com +541168165440 \N Ramón Falcón 6126 6B \N \N \N -34.6405169 -58.512893 52 1456 \N bboninsegna +5293 2025-07-26 16:38:22.236358+00 2025-07-26 16:38:22.236367+00 f t Invitado Amar invitado-1753547901327@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3800 +5294 2025-07-26 16:43:36.636931+00 2025-07-26 16:43:36.63694+00 f t Invitado Amar invitado-1753548216105@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-3801 +5295 2025-07-26 16:46:28.496959+00 2025-07-26 16:46:28.496967+00 f t Invitado Amar invitado-1753548387700@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3802 +5296 2025-07-26 16:46:44.500857+00 2025-07-26 16:46:44.500869+00 f t Invitado Amar invitado-1753548403898@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3803 +5297 2025-07-26 18:05:26.867034+00 2025-07-26 18:05:26.867042+00 f t Invitado Amar invitado-1753553126764@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-3804 +5298 2025-07-26 18:17:04.453591+00 2025-07-26 18:17:04.453605+00 f t Invitado Amar invitado-1753553823793@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3805 +5299 2025-07-26 18:42:01.442741+00 2025-07-26 18:42:01.44275+00 f t Invitado Amar invitado-1753555320792@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3806 +5300 2025-07-26 18:44:58.287465+00 2025-07-26 18:44:58.287474+00 f t Invitado Amar invitado-1753555497850@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-3807 +5301 2025-07-26 19:35:28.282467+00 2025-07-26 19:35:28.282476+00 f t Josefina Pietranera ana.vera.37051@gmail.com +5491173600100 \N Vicente Oliden 1611 \N \N -34.7777886 -58.4285231 71 \N \N jpietranera +5302 2025-07-26 19:41:47.310832+00 2025-07-26 19:41:47.310845+00 f t Invitado Amar invitado-1753558906915@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-3808 +5303 2025-07-26 20:13:28.780262+00 2025-07-26 20:13:28.78027+00 f t Invitado Amar invitado-1753560807832@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-3809 +5304 2025-07-26 20:13:56.738763+00 2025-07-26 20:13:56.738772+00 f t Invitado Amar invitado-1753560836166@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-3810 +5305 2025-07-26 20:25:55.163972+00 2025-07-26 20:25:55.16398+00 f t Invitado Amar invitado-1753561554772@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3811 +5306 2025-07-26 20:44:21.184718+00 2025-07-26 20:44:21.184728+00 f t Invitado Amar invitado-1753562660822@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-3812 +5307 2025-07-26 21:01:57.426968+00 2025-07-26 21:01:57.426981+00 f t Invitado Amar invitado-1753563718442@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3813 +5308 2025-07-26 21:26:35.344777+00 2025-07-26 21:26:35.344785+00 f t Invitado Amar invitado-1753565244258@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3814 +5309 2025-07-26 21:52:02.813301+00 2025-07-26 21:52:02.813314+00 f t Invitado Amar invitado-1753566722141@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3815 +5310 2025-07-26 22:25:51.081855+00 2025-07-26 22:25:51.081868+00 f t Invitado Amar invitado-1753568749729@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-3816 +5361 2025-07-27 22:52:53.435214+00 2025-07-27 22:52:53.435223+00 f t Invitado Amar invitado-1753656773138@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3860 +5311 2025-07-26 22:40:26.376331+00 2025-07-26 22:40:26.376345+00 f t Lourdes Brodsky lourdes.brodsky@gmail.com +541168594267 \N Azcuenaga 131 6L \N \N -34.6091825 -58.4005071 18 \N \N lbrodsky +5312 2025-07-26 23:00:24.007301+00 2025-07-26 23:00:24.007314+00 f t Invitado Amar invitado-1753570823791@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3817 +5313 2025-07-26 23:21:22.841946+00 2025-07-26 23:21:22.84196+00 f t Invitado Amar invitado-1753572082503@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3818 +5314 2025-07-27 00:18:52.348951+00 2025-07-27 00:18:52.34896+00 f t Invitado Amar invitado-1753575531325@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-3819 +5315 2025-07-27 00:22:20.731234+00 2025-07-27 00:22:20.731246+00 f t Invitado Amar invitado-1753575740463@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3820 +5316 2025-07-27 00:27:53.68887+00 2025-07-27 00:27:53.688882+00 f t Invitado Amar invitado-1753576071107@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-3821 +5317 2025-07-27 03:08:42.3599+00 2025-07-27 03:08:42.359913+00 f t Invitado Amar invitado-1753585720845@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3822 +5318 2025-07-27 03:10:42.188643+00 2025-07-27 03:10:42.188652+00 f t Invitado Amar invitado-1753585841063@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3823 +5319 2025-07-27 03:52:16.916589+00 2025-07-27 03:52:16.916602+00 f t Invitado Amar invitado-1753588336481@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3824 +5320 2025-07-27 04:46:54.557223+00 2025-07-27 04:46:54.557238+00 f t Invitado Amar invitado-1753591613044@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3825 +5321 2025-07-27 06:00:53.125498+00 2025-07-27 06:00:53.12551+00 f t Eugenia Paradiso eugeparadiso11@gmail.com +541167901971 \N Emilio Lamarca 3259 Pb b \N \N -34.6023952 -58.5022297 17 \N \N eparadiso +5322 2025-07-27 09:45:02.222534+00 2025-07-27 09:45:02.222551+00 f t Invitado Amar invitado-1753609501783@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-3826 +5323 2025-07-27 09:48:42.322221+00 2025-07-27 09:48:42.322229+00 f t Invitado Amar invitado-1753609720587@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3827 +5324 2025-07-27 12:37:51.326408+00 2025-07-27 12:37:51.326417+00 f t Invitado Amar invitado-1753619870926@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3828 +5325 2025-07-27 13:05:14.390223+00 2025-07-27 13:05:14.390233+00 f t Invitado Amar invitado-1753621514483@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-3829 +5326 2025-07-27 13:20:48.95853+00 2025-07-27 13:20:48.958538+00 f t Invitado Amar invitado-1753622340989@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3830 +5327 2025-07-27 14:14:08.534402+00 2025-07-27 14:14:08.534412+00 f t Invitado Amar invitado-1753625648139@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3831 +5328 2025-07-27 14:17:10.217467+00 2025-07-27 14:17:10.217476+00 f t Invitado Amar invitado-1753625830015@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3832 +5329 2025-07-27 14:34:37.340663+00 2025-07-27 14:34:37.340672+00 f t Rocio Obrien rocioobrien6@gmail.com 93875243467 \N Talcahuano 1239 1239 piso 2 K \N FEMALE 1998-09-10 -36.7173715 -73.1244031 9 1457 \N robrien +5330 2025-07-27 14:52:18.090701+00 2025-07-27 14:52:18.090711+00 f t Invitado Amar invitado-1753627937472@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3833 +5331 2025-07-27 14:53:13.009311+00 2025-07-27 14:53:13.00932+00 f t Invitado Amar invitado-1753627992399@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3834 +5332 2025-07-27 14:55:49.882396+00 2025-07-27 14:55:49.882405+00 f t Invitado Amar invitado-1753628149561@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3835 +5333 2025-07-27 15:11:22.505053+00 2025-07-27 15:11:22.505062+00 f t Invitado Amar invitado-1753629081992@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3836 +5334 2025-07-27 15:15:36.990075+00 2025-07-27 15:15:36.990084+00 f t Invitado Amar invitado-1753629337251@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3837 +5335 2025-07-27 15:28:47.919786+00 2025-07-27 15:28:47.919799+00 f t Invitado Amar invitado-1753630127097@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3838 +5336 2025-07-27 15:30:17.936606+00 2025-07-27 15:30:17.936615+00 f t Invitado Amar invitado-1753630217606@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3839 +5337 2025-07-27 15:49:25.304137+00 2025-07-27 15:49:25.304149+00 f t Invitado Amar invitado-1753642248718@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-3840 +5338 2025-07-27 15:55:12.109001+00 2025-07-27 15:55:12.109011+00 f t Invitado Amar invitado-1753631711552@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3841 +5339 2025-07-27 16:56:09.543327+00 2025-07-27 16:56:09.543336+00 f t Jorge Alberto Aulita jorge.aulita@bue.edu.ar +541144447441 \N NOGOYA 3586 2A \N \N \N -34.6060917 -58.4971383 17 1459 \N jaulita +5340 2025-07-27 17:02:22.768443+00 2025-07-27 17:02:22.768453+00 f t Lidio Gonzalez lidioga@gmail.com +5491127130133 \N Mafalda 852 4 N \N \N -34.646175 -58.3993191 32 \N \N lgonzalez +5341 2025-07-27 17:27:07.683385+00 2025-07-27 17:27:07.683397+00 f t Invitado Amar invitado-1753637227234@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-3842 +5342 2025-07-27 17:38:16.398616+00 2025-07-27 17:38:16.398624+00 f t Raul Degiovanni rauldegiovanni@hotmail.com 5491168822704 \N RAMON FREIRE 3245 casa, porton verde \N FEMALE 1953-09-27 -34.5562965 -58.4732672 45 1458 \N rdegiovanni +5343 2025-07-27 17:39:38.109864+00 2025-07-27 17:39:38.109874+00 f t Invitado Amar invitado-1753637977074@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3843 +5344 2025-07-27 18:11:28.677016+00 2025-07-27 18:11:28.677028+00 f t Invitado Amar invitado-1753639888194@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3844 +5345 2025-07-27 18:17:12.456178+00 2025-07-27 18:17:12.456187+00 f t Invitado Amar invitado-1753640231439@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3845 +5346 2025-07-27 18:33:14.601155+00 2025-07-27 18:33:14.601164+00 f t Invitado Amar invitado-1753641194259@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-3846 +5347 2025-07-27 18:39:45.518164+00 2025-07-27 18:39:45.518173+00 f t Invitado Amar invitado-1753641585349@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-3847 +5348 2025-07-27 18:42:18.374513+00 2025-07-27 18:42:18.374522+00 f t Martina Enriquez martinaenriquez14@gmail.com +5491136930016 \N Lagrange 1295 5 \N \N \N -34.6273129 -58.512768 65 1460 \N menriquez +5349 2025-07-27 20:21:50.636092+00 2025-07-27 20:21:50.6361+00 f t Invitado Amar invitado-1753647711231@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3848 +5350 2025-07-27 20:24:33.452097+00 2025-07-27 20:24:33.452106+00 f t Invitado Amar invitado-1753647873215@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-3849 +5351 2025-07-27 20:29:07.588353+00 2025-07-27 20:29:07.588362+00 f t Invitado Amar invitado-1753648147196@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3850 +5352 2025-07-27 20:42:15.287799+00 2025-07-27 20:42:15.287807+00 f t Invitado Amar invitado-1753648934633@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3851 +5353 2025-07-27 20:48:33.371657+00 2025-07-27 20:48:33.371666+00 f t Invitado Amar invitado-1753649312393@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3852 +5354 2025-07-27 20:56:10.025675+00 2025-07-27 20:56:10.025683+00 f t Invitado Amar invitado-1753649769672@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-3853 +5355 2025-07-27 21:30:56.578902+00 2025-07-27 21:30:56.578914+00 f t Invitado Amar invitado-1753651832143@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3854 +5356 2025-07-27 21:31:30.098382+00 2025-07-27 21:31:30.098391+00 f t Invitado Amar invitado-1753651888144@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3855 +5357 2025-07-27 21:37:45.046293+00 2025-07-27 21:37:45.046304+00 f t Invitado Amar invitado-1753652264700@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-3856 +5358 2025-07-27 22:10:12.028401+00 2025-07-27 22:10:12.02841+00 f t Invitado Amar invitado-1753654208490@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3857 +5359 2025-07-27 22:10:58.086125+00 2025-07-27 22:10:58.086136+00 f t Invitado Amar invitado-1753654254782@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3858 +5360 2025-07-27 22:30:48.883923+00 2025-07-27 22:30:48.883936+00 f t Invitado Amar invitado-1753655448406@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-3859 +5362 2025-07-27 23:35:26.217323+00 2025-07-27 23:35:26.217331+00 f t Invitado Amar invitado-1753659324109@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3861 +5363 2025-07-27 23:57:01.594037+00 2025-07-27 23:57:01.594051+00 f t Invitado Amar invitado-1753660620965@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3862 +5364 2025-07-27 23:59:07.693456+00 2025-07-27 23:59:07.69347+00 f t Invitado Amar invitado-1753660747549@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3863 +5365 2025-07-28 00:31:58.033602+00 2025-07-28 00:31:58.033614+00 f t Invitado Amar invitado-1753662717573@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-3864 +5366 2025-07-28 00:46:23.476347+00 2025-07-28 00:46:23.476359+00 f t Invitado Amar invitado-1753663582839@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3865 +5367 2025-07-28 01:17:44.100478+00 2025-07-28 01:17:44.10049+00 f t Invitado Amar invitado-1753665462601@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-3866 +5368 2025-07-28 01:28:52.780749+00 2025-07-28 01:28:52.781168+00 f t Invitado Amar invitado-1753666132184@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-3867 +5369 2025-07-28 01:34:14.176306+00 2025-07-28 01:34:14.17632+00 f t Invitado Amar invitado-1753666453372@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3868 +5370 2025-07-28 01:51:29.866745+00 2025-07-28 01:51:29.866758+00 f t Invitado Amar invitado-1753667489364@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3869 +5371 2025-07-28 02:15:04.024585+00 2025-07-28 02:15:04.024595+00 f t Invitado Amar invitado-1753668903107@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3870 +5372 2025-07-28 02:31:41.502826+00 2025-07-28 02:31:41.502838+00 f t Invitado Amar invitado-1753669900081@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-3871 +5373 2025-07-28 02:32:29.360059+00 2025-07-28 02:32:29.360067+00 f t Invitado Amar invitado-1753669948923@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3872 +5374 2025-07-28 02:34:12.419359+00 2025-07-28 02:34:12.419369+00 f t Invitado Amar invitado-1753670051890@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-3873 +5375 2025-07-28 02:40:45.242769+00 2025-07-28 02:40:45.242782+00 f t Invitado Amar invitado-1753670445349@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-3874 +5376 2025-07-28 02:47:04.102619+00 2025-07-28 02:47:04.102627+00 f t Invitado Amar invitado-1753670822557@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3875 +5377 2025-07-28 02:50:06.881028+00 2025-07-28 02:50:06.881037+00 f t Invitado Amar invitado-1753671006443@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3876 +5378 2025-07-28 02:59:30.507868+00 2025-07-28 02:59:30.507882+00 f t Invitado Amar invitado-1753671569959@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3877 +5379 2025-07-28 03:38:32.259343+00 2025-07-28 03:38:32.259356+00 f t Invitado Amar invitado-1753673911477@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3878 +5380 2025-07-28 03:45:27.774742+00 2025-07-28 03:45:27.774752+00 f t Invitado Amar invitado-1753674327225@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3879 +5381 2025-07-28 03:51:26.759055+00 2025-07-28 03:51:26.759067+00 f t Invitado Amar invitado-1753674686082@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-3880 +5382 2025-07-28 03:57:47.521095+00 2025-07-28 03:57:47.521103+00 f t Invitado Amar invitado-1753675067023@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3881 +5383 2025-07-28 04:06:12.973984+00 2025-07-28 04:06:12.973992+00 f t Invitado Amar invitado-1753675572480@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-3882 +5384 2025-07-28 05:34:31.270989+00 2025-07-28 05:34:31.271+00 f t Invitado Amar invitado-1753680870931@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-3883 +5385 2025-07-28 08:21:55.359617+00 2025-07-28 08:21:55.359625+00 f t Invitado Amar invitado-1753690914957@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3884 +5386 2025-07-28 09:13:46.066915+00 2025-07-28 09:13:46.066924+00 f t Invitado Amar invitado-1753694024362@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3885 +5387 2025-07-28 11:55:54.696546+00 2025-07-28 11:55:54.696555+00 f t Invitado Amar invitado-1753703752875@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3886 +5388 2025-07-28 11:57:05.931756+00 2025-07-28 11:57:05.931766+00 f t Invitado Amar invitado-1753703824333@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3887 +5389 2025-07-28 11:59:18.906723+00 2025-07-28 11:59:18.906732+00 f t Gonzalo Yoel Rivero gonzaloyrivero@gmail.com +541157257015 \N Avenida San Juan 2820 5 C \N \N -34.62415 -58.4042859 12 1462 \N grivero +5390 2025-07-28 12:35:51.95058+00 2025-07-28 12:35:51.950592+00 f t Invitado Amar invitado-1753706151485@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-3888 +5391 2025-07-28 13:29:41.699774+00 2025-07-28 13:29:41.699786+00 f t Invitado Amar invitado-1753709391290@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3889 +5392 2025-07-28 13:51:16.574691+00 2025-07-28 13:51:16.5747+00 f t Invitado Amar invitado-1753710676394@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3890 +5393 2025-07-28 13:54:11.620108+00 2025-07-28 13:54:11.620117+00 f t Invitado Amar invitado-1753710850641@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-3891 +5394 2025-07-28 14:28:55.558057+00 2025-07-28 14:28:55.558066+00 f t Invitado Amar invitado-1753712935074@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-3892 +5395 2025-07-28 14:28:57.38095+00 2025-07-28 14:28:57.380959+00 f t Invitado Amar invitado-1753712936812@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3893 +5396 2025-07-28 14:33:30.322382+00 2025-07-28 14:33:30.322391+00 f t Noelia Juarez noelia_juarez@hotmail.com 5491141429893 \N Humboldt 1960 2c \N FEMALE \N -34.5827624 -58.4331366 1 1463 \N njuarez +5397 2025-07-28 14:49:01.735892+00 2025-07-28 14:49:01.735904+00 f t Clementino Mendoza mendozaalejandrohermes23@gmail.com +541127414877 \N El tala 2118 \N \N -34.4603778 -58.653639 22 \N \N cmendoza-2 +5398 2025-07-28 14:52:10.022198+00 2025-07-28 14:52:10.022212+00 f t Invitado Amar invitado-1753714329771@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3894 +5399 2025-07-28 14:53:12.334054+00 2025-07-28 14:53:12.334067+00 f t Invitado Amar invitado-1753714392291@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3895 +5400 2025-07-28 14:55:54.884109+00 2025-07-28 14:55:54.884121+00 f t Invitado Amar invitado-1753714554660@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3896 +5401 2025-07-28 14:57:18.87081+00 2025-07-28 14:57:18.870822+00 f t Invitado Amar invitado-1753714638637@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3897 +5402 2025-07-28 14:57:52.97414+00 2025-07-28 14:57:52.974198+00 f t Invitado Amar invitado-1753714674714@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3898 +5403 2025-07-28 14:58:01.744368+00 2025-07-28 14:58:01.744378+00 f t Invitado Amar invitado-1753714683654@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3899 +5404 2025-07-28 14:58:24.138933+00 2025-07-28 14:58:24.138946+00 f t Invitado Amar invitado-1753714706063@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-3900 +5405 2025-07-28 15:18:33.133219+00 2025-07-28 15:18:33.133231+00 f t Invitado Amar invitado-1753715912762@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3901 +5406 2025-07-28 15:26:57.657908+00 2025-07-28 15:26:57.657917+00 f t Invitado Amar invitado-1753716417906@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3902 +5407 2025-07-28 15:29:09.1709+00 2025-07-28 15:29:09.170911+00 f t Invitado Amar invitado-1753716548594@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3903 +5408 2025-07-28 15:32:15.626921+00 2025-07-28 15:32:15.62693+00 f t Invitado Amar invitado-1753716736198@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3904 +5409 2025-07-28 15:32:43.167243+00 2025-07-28 15:32:43.167251+00 f t Invitado Amar invitado-1753716763755@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3905 +5410 2025-07-28 15:37:08.578088+00 2025-07-28 15:37:08.578101+00 f t Invitado Amar invitado-1753717028075@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3906 +5411 2025-07-28 15:51:01.538258+00 2025-07-28 15:51:01.538265+00 f t María Emilia Viejobueno meviejobueno@gmail.com 91134308928 \N Deheza 1640 3A \N FEMALE \N -34.5378277 -58.4662985 25 1464 \N mviejobueno +5412 2025-07-28 15:57:56.097783+00 2025-07-28 15:57:56.097792+00 f t Invitado Amar invitado-1753718275746@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3907 +5413 2025-07-28 16:10:38.109671+00 2025-07-28 16:10:38.10968+00 f t Invitado Amar invitado-1753719037385@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3908 +5414 2025-07-28 16:41:18.717308+00 2025-07-28 16:41:18.717317+00 f t Invitado Amar invitado-1753720878386@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-3909 +5415 2025-07-28 16:49:13.250716+00 2025-07-28 16:49:13.250724+00 f t Sofia Irene Roberts sofia.i.roberts@gmail.com +541122718230 \N Malabia 2344 1B \N \N -34.5857027 -58.4193309 1 \N \N sroberts +5416 2025-07-28 16:50:23.16864+00 2025-07-28 16:50:23.168652+00 f t Invitado Amar invitado-1753721423280@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-3910 +5417 2025-07-28 16:54:46.111994+00 2025-07-28 16:54:46.112003+00 f t Invitado Amar invitado-1753721685714@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3911 +5418 2025-07-28 17:15:45.523038+00 2025-07-28 17:15:45.523046+00 f t Invitado Amar invitado-1753722945040@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-3912 +5419 2025-07-28 17:16:33.327755+00 2025-07-28 17:16:33.327764+00 f t Invitado Amar invitado-1753722993232@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3913 +5420 2025-07-28 17:18:18.603044+00 2025-07-28 17:18:18.603052+00 f t Invitado Amar invitado-1753723098736@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3914 +5421 2025-07-28 17:24:38.536686+00 2025-07-28 17:24:38.536705+00 f t Invitado Amar invitado-1753723478154@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-3915 +5422 2025-07-28 17:36:47.307121+00 2025-07-28 17:36:47.307149+00 f t Invitado Amar invitado-1753724181054@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-3916 +5423 2025-07-28 17:47:23.049235+00 2025-07-28 17:47:23.049243+00 f t Invitado Amar invitado-1753724842909@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3917 +5424 2025-07-28 17:49:12.239799+00 2025-07-28 17:49:12.239812+00 f t Invitado Amar invitado-1753724951586@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-3918 +5425 2025-07-28 17:54:12.605765+00 2025-07-28 17:54:12.605774+00 f t Invitado Amar invitado-1753725252678@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3919 +5426 2025-07-28 18:01:15.395599+00 2025-07-28 18:01:15.395612+00 f t Invitado Amar invitado-1753725674333@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-3920 +5427 2025-07-28 18:11:10.824037+00 2025-07-28 18:11:10.824048+00 f t Invitado Amar invitado-1753726265777@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-3921 +5428 2025-07-28 18:12:51.926759+00 2025-07-28 18:12:51.926767+00 f t Marcela Campero marale888@gmail.com 91125037070 \N QUERANDIES 4451 PB D ENTRE YATAY Y RIO DE JANEIRO \N FEMALE \N -34.6116901 -58.42955 14 1466 \N mcampero +5429 2025-07-28 18:21:50.300386+00 2025-07-28 18:21:50.300396+00 f t Invitado Amar invitado-1753726905219@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-3922 +5430 2025-07-28 18:56:06.551957+00 2025-07-28 18:56:06.551969+00 f t Invitado Amar invitado-1753728964876@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3923 +5431 2025-07-28 19:16:07.784677+00 2025-07-28 19:16:07.784689+00 f t Invitado Amar invitado-1753730167077@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3924 +5432 2025-07-28 19:26:04.305198+00 2025-07-28 19:26:04.305207+00 f t Invitado Amar invitado-1753730763335@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3925 +5433 2025-07-28 19:34:36.255201+00 2025-07-28 19:34:36.255215+00 f t Invitado Amar invitado-1753731274980@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-3926 +5434 2025-07-28 19:58:17.341872+00 2025-07-28 19:58:17.341881+00 f t Invitado Amar invitado-1753732696772@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-3927 +5435 2025-07-28 20:38:31.565249+00 2025-07-28 20:38:31.565261+00 f t Invitado Amar invitado-1753735110645@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3928 +5436 2025-07-28 20:51:56.000532+00 2025-07-28 20:51:56.00054+00 f t Invitado Amar invitado-1753735914299@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3929 +5437 2025-07-28 21:10:29.822928+00 2025-07-28 21:10:29.822937+00 f t Invitado Amar invitado-1753737029755@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3930 +5438 2025-07-28 21:11:50.472664+00 2025-07-28 21:11:50.472672+00 f t Invitado Amar invitado-1753737110460@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3931 +5439 2025-07-28 21:21:29.822247+00 2025-07-28 21:21:29.82226+00 f t Invitado Amar invitado-1753737689377@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-3932 +5440 2025-07-28 21:35:13.94535+00 2025-07-28 21:35:13.945359+00 f t Invitado Amar invitado-1753738513678@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3933 +5441 2025-07-28 21:53:01.537288+00 2025-07-28 21:53:01.537301+00 f t Invitado Amar invitado-1753739581169@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3934 +5442 2025-07-28 22:01:47.468589+00 2025-07-28 22:01:47.468602+00 f t Invitado Amar invitado-1753740106846@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3935 +5443 2025-07-28 22:28:47.132997+00 2025-07-28 22:28:47.13301+00 f t Invitado Amar invitado-1753741726647@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-3936 +5444 2025-07-28 22:39:06.660784+00 2025-07-28 22:39:06.660791+00 f t Julieta Nottoli j.nottoli@gmail.com 🇦🇷+5491132846366 \N Urquiza 179 6 E \N FEMALE 2014-04-01 -34.6124282 -58.4101883 18 1472 \N jnottoli +5445 2025-07-28 23:04:26.140085+00 2025-07-28 23:04:26.140094+00 f t Invitado Amar invitado-1753743864818@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-3937 +5446 2025-07-28 23:06:46.051081+00 2025-07-28 23:06:46.051094+00 f t Maricarmen Inda maricarmeninda@gmail.com +541154505364 \N asamblea 1356 6 piso \N \N -34.6363551 -58.4435105 20 1473 \N minda +5447 2025-07-28 23:12:13.89196+00 2025-07-28 23:12:13.891968+00 f t Invitado Amar invitado-1753744333841@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-3938 +5448 2025-07-28 23:17:10.126833+00 2025-07-28 23:17:10.126845+00 f t Invitado Amar invitado-1753744629499@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3939 +5449 2025-07-28 23:17:59.692109+00 2025-07-28 23:17:59.692118+00 f t Invitado Amar invitado-1753744679449@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-3940 +5450 2025-07-28 23:59:34.361249+00 2025-07-28 23:59:34.36126+00 f t Invitado Amar invitado-1753747173672@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3941 +5451 2025-07-29 00:08:01.966876+00 2025-07-29 00:08:01.966885+00 f t Invitado Amar invitado-1753747680849@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3942 +5452 2025-07-29 00:09:05.8232+00 2025-07-29 00:09:05.82321+00 f t Invitado Amar invitado-1753747745157@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3943 +5453 2025-07-29 00:09:42.610896+00 2025-07-29 00:09:42.610904+00 f t Ignacio Pineyro ignaciopineyro@gmail.com +541131961232 \N Terrero 1359 Pb C \N \N -34.6124356 -58.4633072 63 1471 \N ipineyro +5454 2025-07-29 00:10:07.155296+00 2025-07-29 00:10:07.155309+00 f t Invitado Amar invitado-1753747806468@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3944 +5455 2025-07-29 00:11:06.988041+00 2025-07-29 00:11:06.988053+00 f t Invitado Amar invitado-1753747866140@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3945 +5456 2025-07-29 00:11:15.705324+00 2025-07-29 00:11:15.705337+00 f t Invitado Amar invitado-1753747874880@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-3946 +5457 2025-07-29 00:41:02.017517+00 2025-07-29 00:41:02.017529+00 f t Invitado Amar invitado-1753749662670@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3947 +5458 2025-07-29 01:40:55.420706+00 2025-07-29 01:40:55.420715+00 f t Invitado Amar invitado-1753753254914@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3948 +5459 2025-07-29 01:45:45.79075+00 2025-07-29 01:45:45.790763+00 f t Invitado Amar invitado-1753753545395@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3949 +5460 2025-07-29 01:49:24.695574+00 2025-07-29 01:49:24.695585+00 f t Invitado Amar invitado-1753753764236@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-3950 +5461 2025-07-29 02:10:36.582159+00 2025-07-29 02:10:36.582169+00 f t Invitado Amar invitado-1753755036165@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3951 +5462 2025-07-29 02:12:58.632556+00 2025-07-29 02:12:58.632567+00 f t Invitado Amar invitado-1753755178255@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-3952 +5463 2025-07-29 02:30:47.261002+00 2025-07-29 02:30:47.261014+00 f t Invitado Amar invitado-1753756245509@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-3953 +5464 2025-07-29 02:50:04.696102+00 2025-07-29 02:50:04.69614+00 f t Invitado Amar invitado-1753757404105@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3954 +5465 2025-07-29 02:55:42.797548+00 2025-07-29 02:55:42.797557+00 f t Invitado Amar invitado-1753757742652@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3955 +5466 2025-07-29 03:03:23.562498+00 2025-07-29 03:03:23.56251+00 f t Invitado Amar invitado-1753758203406@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-3956 +5467 2025-07-29 07:52:42.585042+00 2025-07-29 07:52:42.585051+00 f t Invitado Amar invitado-1753775561344@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3957 +5468 2025-07-29 09:38:44.047695+00 2025-07-29 09:38:44.047708+00 f t Invitado Amar invitado-1753781923740@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3958 +5469 2025-07-29 09:58:39.390379+00 2025-07-29 09:58:39.390396+00 f t Invitado Amar invitado-1753783118489@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-3959 +5470 2025-07-29 10:13:06.915253+00 2025-07-29 10:13:06.915264+00 f t Invitado Amar invitado-1753783986897@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3960 +5471 2025-07-29 10:21:05.476926+00 2025-07-29 10:21:05.476939+00 f t Invitado Amar invitado-1753784464579@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3961 +5472 2025-07-29 10:33:57.957811+00 2025-07-29 10:33:57.957823+00 f t Invitado Amar invitado-1753785237458@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3962 +5473 2025-07-29 10:37:13.10863+00 2025-07-29 10:37:13.108639+00 f t Invitado Amar invitado-1753785432837@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-3963 +5474 2025-07-29 11:36:27.153974+00 2025-07-29 11:36:27.153986+00 f t Invitado Amar invitado-1753788986836@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-3964 +5475 2025-07-29 11:38:24.574787+00 2025-07-29 11:38:24.574796+00 f t Invitado Amar invitado-1753789104467@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-3965 +5476 2025-07-29 11:38:55.960741+00 2025-07-29 11:38:55.960753+00 f t Invitado Amar invitado-1753789135836@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-3966 +5477 2025-07-29 12:30:18.122083+00 2025-07-29 12:30:18.122093+00 f t María Paula Rusticano maparusti@hotmail.com +541155071648 \N gavilan 3633 3 \N \N -34.5890194 -58.4872 43 1477 \N mrusticano +5478 2025-07-29 12:46:42.612551+00 2025-07-29 12:46:42.612563+00 f t Invitado Amar invitado-1753793202908@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-3967 +13321 2025-11-14 18:48:35.757307+00 2025-11-14 18:48:35.757318+00 f t Invitado Amar invitado-1763146115312@example.com 55555555 \N \N \N \N \N 112 \N \N \N +5480 2025-07-29 13:01:29.192162+00 2025-07-29 13:01:29.192172+00 f t Luciana Rios lucianagr@live.com.ar +541122534532 \N Marcos Sastre 745 Empresa Crilen \N \N -34.4209957 -58.5952087 22 1475 \N lrios-2 +5481 2025-07-29 14:14:10.225752+00 2025-07-29 14:14:10.225764+00 f t Invitado Amar invitado-1753798448403@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-3968 +5482 2025-07-29 14:14:52.472108+00 2025-07-29 14:14:52.472119+00 f t Invitado Amar invitado-1753798490846@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-3969 +5483 2025-07-29 14:24:20.415074+00 2025-07-29 14:24:20.415083+00 f t Invitado Amar invitado-1753799059454@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3970 +5484 2025-07-29 14:26:41.979456+00 2025-07-29 14:26:41.979466+00 f t Nicole Yepez yepeznicolemvs@gmail.com +541126422573 \N De la ardilla 16 Barrios Los Castores Lote 188, Nordelta \N \N -34.4106343 -58.6541682 22 \N \N nyepez +5485 2025-07-29 14:29:57.134213+00 2025-07-29 14:29:57.134222+00 f t Invitado Amar invitado-1753799396589@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-3971 +5486 2025-07-29 14:38:40.319588+00 2025-07-29 14:38:40.319596+00 f t Jesica Rojas jesicarojas320@gmail.com 91164030504 \N Homero 1733 \N \N FEMALE \N -34.62958 -58.4314831 20 1474 \N jrojas +5487 2025-07-29 14:48:33.53869+00 2025-07-29 14:48:33.538699+00 f t Invitado Amar invitado-1753800513168@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3972 +5488 2025-07-29 14:49:22.385854+00 2025-07-29 14:49:22.385863+00 f t Sergio Gustavo Barbaro contact@sergiobarbaro.com 5491166236460 \N Jerónimo Salguero 2970 piso 2 depto E CABA \N MALE \N -34.5780329 -58.4063478 1 1476 \N sbarbaro +5489 2025-07-29 14:49:37.324039+00 2025-07-29 14:49:37.324051+00 f t Invitado Amar invitado-1753800576986@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-3973 +5490 2025-07-29 14:54:39.968596+00 2025-07-29 14:54:39.968605+00 f t Invitado Amar invitado-1753800878104@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-3974 +5491 2025-07-29 14:55:14.348124+00 2025-07-29 14:55:14.34814+00 f t Invitado Amar invitado-1753800912921@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-3975 +5492 2025-07-29 14:55:45.213435+00 2025-07-29 14:55:45.213444+00 f t Invitado Amar invitado-1753800943795@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-3976 +5493 2025-07-29 15:22:07.381227+00 2025-07-29 15:22:07.381242+00 f t Invitado Amar invitado-1753802526439@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-3977 +5494 2025-07-29 15:36:54.051617+00 2025-07-29 15:36:54.051625+00 f t Invitado Amar invitado-1753803413674@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-3978 +5495 2025-07-29 15:38:14.576173+00 2025-07-29 15:38:14.576182+00 f t Invitado Amar invitado-1753803493778@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-3979 +5496 2025-07-29 15:47:44.58394+00 2025-07-29 15:47:44.583952+00 f t Invitado Amar invitado-1753803996386@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-3980 +5497 2025-07-29 15:49:21.160961+00 2025-07-29 15:49:21.160969+00 f t Invitado Amar invitado-1753804159942@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-3981 +5498 2025-07-29 15:56:00.373931+00 2025-07-29 15:56:00.373943+00 f t Invitado Amar invitado-1753804559740@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-3982 +5499 2025-07-29 15:57:55.394391+00 2025-07-29 15:57:55.394399+00 f t Invitado Amar invitado-1753804607778@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-3983 +5500 2025-07-29 15:58:43.999556+00 2025-07-29 15:58:43.999566+00 f t Monica Cebrian monicebrian@gmail.com +541121552277 \N F beiro 3569 Casa \N \N -34.5200822 -58.5091599 39 \N \N mcebrian +5501 2025-07-29 16:05:39.754313+00 2025-07-29 16:05:39.754321+00 f t Invitado Amar invitado-1753805140131@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-3984 +5502 2025-07-29 16:23:21.192829+00 2025-07-29 16:23:21.19284+00 f t Lorena Campana lorena.campana@gmail.com +91169571011 \N Acassuso 1753 \N \N \N \N -34.471334 -58.5103064 77 \N \N lcampana +5503 2025-07-29 16:43:43.857136+00 2025-07-29 16:43:43.857145+00 f t Invitado Amar invitado-1753807423163@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-3985 +5504 2025-07-29 16:51:31.473669+00 2025-07-29 16:51:31.473679+00 f t Invitado Amar invitado-1753807891044@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-3986 +5505 2025-07-29 17:03:20.300888+00 2025-07-29 17:03:20.300901+00 f t Invitado Amar invitado-1753808599204@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-3987 +5506 2025-07-29 17:16:41.692112+00 2025-07-29 17:16:41.692125+00 f t Invitado Amar invitado-1753809401147@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-3988 +5507 2025-07-29 17:17:49.363772+00 2025-07-29 17:17:49.363782+00 f t Invitado Amar invitado-1753809469051@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3989 +5508 2025-07-29 17:18:02.051441+00 2025-07-29 17:18:02.05145+00 f t Invitado Amar invitado-1753809481733@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-3990 +5509 2025-07-29 17:41:04.257664+00 2025-07-29 17:41:04.257673+00 f t Invitado Amar invitado-1753810864035@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-3991 +5510 2025-07-29 17:55:24.367069+00 2025-07-29 17:55:24.367083+00 f t Invitado Amar invitado-1753811724194@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-3992 +5511 2025-07-29 18:36:26.046098+00 2025-07-29 18:36:26.046113+00 f t Invitado Amar invitado-1753814184079@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-3993 +5512 2025-07-29 19:03:04.126824+00 2025-07-29 19:03:04.126833+00 f t Invitado Amar invitado-1753815783690@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-3994 +5513 2025-07-29 19:08:24.019616+00 2025-07-29 19:08:24.019623+00 f t Barbara Noemi Burgos barbaranburgos@gmail.com 91123872364 \N Marcos Paz 3493 Octavo 37 \N FEMALE 1973-10-17 -34.6074909 -58.5140504 21 \N \N bburgos +5514 2025-07-29 19:12:46.795602+00 2025-07-29 19:12:46.795614+00 f t Invitado Amar invitado-1753816366156@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-3995 +5515 2025-07-29 19:19:02.088131+00 2025-07-29 19:19:02.088146+00 f t Invitado Amar invitado-1753816715927@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-3996 +5516 2025-07-29 19:20:06.51533+00 2025-07-29 19:20:06.515344+00 f t Maria Biondi ciberbol@hotmail.com +541160151890 \N San Blas 3891 0 \N \N -34.6182347 -58.4924669 41 \N \N mbiondi +5517 2025-07-29 19:23:34.649191+00 2025-07-29 19:23:34.649202+00 f t Invitado Amar invitado-1753817012828@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-3997 +5518 2025-07-29 19:55:30.273858+00 2025-07-29 19:55:30.27387+00 f t Invitado Amar invitado-1753818929211@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-3998 +5519 2025-07-29 20:22:17.059052+00 2025-07-29 20:22:17.059065+00 f t Invitado Amar invitado-1753820536482@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-3999 +5520 2025-07-29 20:23:13.965507+00 2025-07-29 20:23:13.965522+00 f t Invitado Amar invitado-1753820594944@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4000 +5521 2025-07-29 20:32:02.56765+00 2025-07-29 20:32:02.567661+00 f t Invitado Amar invitado-1753821121009@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-4001 +5522 2025-07-29 21:13:01.608402+00 2025-07-29 21:13:01.608412+00 f t Carlos Bulfon cabulfon@hotmail.com.ar 2284214863 \N Combate de los Pozos 143 143 5 A \N MALE \N -34.6246526 -58.392625 18 1480 \N cbulfon +5524 2025-07-29 21:14:37.568794+00 2025-07-29 21:14:37.568803+00 f t Invitado Amar invitado-1753823676337@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4002 +5525 2025-07-29 21:42:39.51285+00 2025-07-29 21:42:39.51286+00 f t Invitado Amar invitado-1753825357550@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4003 +5526 2025-07-29 22:08:37.996923+00 2025-07-29 22:08:37.996936+00 f t Invitado Amar invitado-1753826916947@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-4004 +5527 2025-07-29 22:36:40.069187+00 2025-07-29 22:36:40.069196+00 f t Invitado Amar invitado-1753828601197@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4005 +5528 2025-07-29 22:53:00.767989+00 2025-07-29 22:53:00.767999+00 f t Florencia Pasqualini pasqualini.florencia@gmail.com 91149757174 \N Zapata 31 Piso 22 D \N FEMALE \N -34.5758652 -58.4372036 1 1481 \N fpasqualini +5529 2025-07-29 23:20:52.71358+00 2025-07-29 23:20:52.713593+00 f t Invitado Amar invitado-1753831252370@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4006 +5530 2025-07-30 00:34:10.982121+00 2025-07-30 00:34:10.98213+00 f t Invitado Amar invitado-1753835650518@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4007 +5531 2025-07-30 00:45:46.307974+00 2025-07-30 00:45:46.307984+00 f t Invitado Amar invitado-1753836345875@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-4008 +5532 2025-07-30 01:02:13.79793+00 2025-07-30 01:02:13.79794+00 f t Invitado Amar invitado-1753837331569@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4009 +5533 2025-07-30 03:13:09.586876+00 2025-07-30 03:13:09.586889+00 f t Invitado Amar invitado-1753845188937@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4010 +5534 2025-07-30 05:46:51.04112+00 2025-07-30 05:46:51.041129+00 f t Invitado Amar invitado-1753854410978@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4011 +5535 2025-07-30 09:12:28.256368+00 2025-07-30 09:12:28.256381+00 f t Invitado Amar invitado-1753866747865@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4012 +5536 2025-07-30 09:40:02.296432+00 2025-07-30 09:40:02.296446+00 f t Invitado Amar invitado-1753868401937@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4013 +5537 2025-07-30 09:45:28.158458+00 2025-07-30 09:45:28.158467+00 f t Invitado Amar invitado-1753868727316@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4014 +5538 2025-07-30 09:55:46.301017+00 2025-07-30 09:55:46.301026+00 f t Invitado Amar invitado-1753869346178@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4015 +5539 2025-07-30 10:24:08.765927+00 2025-07-30 10:24:08.765939+00 f t Invitado Amar invitado-1753871048417@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-4016 +5540 2025-07-30 11:09:07.605464+00 2025-07-30 11:09:07.605473+00 f t Invitado Amar invitado-1753873746408@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4017 +5541 2025-07-30 11:42:19.995318+00 2025-07-30 11:42:19.995331+00 f t Invitado Amar invitado-1753875740189@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4018 +5542 2025-07-30 11:51:19.767783+00 2025-07-30 11:51:19.767792+00 f t Invitado Amar invitado-1753876279266@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4019 +5543 2025-07-30 11:55:27.049401+00 2025-07-30 11:55:27.04941+00 f t Invitado Amar invitado-1753876525745@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4020 +5544 2025-07-30 12:01:28.586502+00 2025-07-30 12:01:28.586511+00 f t Invitado Amar invitado-1753876887623@example.com 55555555 \N \N \N \N \N 66 \N \N iamar-4021 +5545 2025-07-30 12:10:44.54319+00 2025-07-30 12:10:44.543199+00 f t Invitado Amar invitado-1753877443958@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4022 +5546 2025-07-30 12:27:41.821188+00 2025-07-30 12:27:41.821198+00 f t Invitado Amar invitado-1753878461464@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4023 +5547 2025-07-30 12:30:57.812766+00 2025-07-30 12:30:57.81278+00 f t Invitado Amar invitado-1753878657655@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4024 +5548 2025-07-30 12:33:30.660444+00 2025-07-30 12:33:30.660455+00 f t Invitado Amar invitado-1753878810456@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4025 +5549 2025-07-30 12:33:51.188362+00 2025-07-30 12:33:51.188374+00 f t Invitado Amar invitado-1753878830118@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4026 +5550 2025-07-30 13:13:07.652235+00 2025-07-30 13:13:07.652244+00 f t Invitado Amar invitado-1753881191005@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4027 +5551 2025-07-30 13:17:03.134851+00 2025-07-30 13:17:03.13486+00 f t Invitado Amar invitado-1753881422385@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4028 +5552 2025-07-30 13:18:59.424478+00 2025-07-30 13:18:59.424488+00 f t Invitado Amar invitado-1753881539025@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4029 +5553 2025-07-30 13:58:05.768361+00 2025-07-30 13:58:05.768373+00 f t Invitado Amar invitado-1753883884884@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-4030 +5554 2025-07-30 14:08:54.349636+00 2025-07-30 14:08:54.349647+00 f t Invitado Amar invitado-1753884533919@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4031 +5555 2025-07-30 14:27:17.822835+00 2025-07-30 14:27:17.822847+00 f t stefania rinaldi rinaldi.stefania09@gmail.com 1126073331 \N \N 1994-09-27 -34.6092155 -58.4031396 18 \N \N srinaldi +5556 2025-07-30 14:35:31.602419+00 2025-07-30 14:35:31.602427+00 f t Invitado Amar invitado-1753886131040@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-4032 +5557 2025-07-30 14:51:54.997034+00 2025-07-30 14:51:54.997044+00 f t Carla Dato carladato@hotmail.com 91170149524 \N Castex 3440 8C \N FEMALE \N -34.5776379 -58.4064962 1 1484 \N cdato +5558 2025-07-30 15:14:34.445196+00 2025-07-30 15:14:34.445205+00 f t Invitado Amar invitado-1753888474114@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-4033 +5559 2025-07-30 15:18:21.633866+00 2025-07-30 15:18:21.633877+00 f t Invitado Amar invitado-1753888701255@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-4034 +5560 2025-07-30 15:22:25.512677+00 2025-07-30 15:22:25.512686+00 f t Alexia Rodriguez alexiam8@hotmail.com 91134141997 \N Martinez Castro 263 piso 1, dpto D \N FEMALE \N -34.6468452 -58.4684276 5 1485 \N arodriguez +5561 2025-07-30 15:27:28.497975+00 2025-07-30 15:27:28.497984+00 f t Invitado Amar invitado-1753889247919@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4035 +5562 2025-07-30 15:28:52.601968+00 2025-07-30 15:28:52.601977+00 f t Invitado Amar invitado-1753889330365@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-4036 +5563 2025-07-30 15:38:14.289387+00 2025-07-30 15:38:14.289396+00 f t Invitado Amar invitado-1753889893729@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4037 +5564 2025-07-30 15:40:11.247654+00 2025-07-30 15:40:11.247668+00 f t Iara Hilsenrat hilsenratiara@gmail.com +541141796074 \N Virrey del pino 2468 405 \N FEMALE \N -34.5667556 -58.4532934 3 1489 \N ihilsenrat +5565 2025-07-30 16:05:53.79815+00 2025-07-30 16:05:53.79816+00 f t Invitado Amar invitado-1753891554215@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-4038 +5566 2025-07-30 16:18:39.861588+00 2025-07-30 16:18:39.861596+00 f t Samanta Walkyria Frangoudis samantafrangoudis@gmail.com 91123619696 \N Av. Directorio 3302 8vo A \N \N \N -34.6369066 -58.4723996 16 1486 \N sfrangoudis +5567 2025-07-30 16:36:22.175489+00 2025-07-30 16:36:22.175498+00 f t Invitado Amar invitado-1753893382705@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4039 +5568 2025-07-30 16:46:30.733626+00 2025-07-30 16:46:30.733639+00 f t Invitado Amar invitado-1753893990876@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4040 +5569 2025-07-30 17:28:54.173502+00 2025-07-30 17:28:54.173511+00 f t Invitado Amar invitado-1753896533752@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4041 +5570 2025-07-30 17:47:02.679813+00 2025-07-30 17:47:02.679822+00 f t Jimena Heriques jimehenriques@gmail.com 5491157232654 \N Miro 854 3 D \N MALE \N -34.6328054 -58.4456458 20 1488 \N jheriques +5571 2025-07-30 17:47:43.739839+00 2025-07-30 17:47:43.739849+00 f t Invitado Amar invitado-1753897661469@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-4042 +5572 2025-07-30 17:56:45.75737+00 2025-07-30 17:56:45.757379+00 f t Bettina Bocchicchio bettina.bocchicchio@gmail.com +541163744680 \N Maure 3330 3 a \N \N -34.5800123 -58.448567 38 \N \N bbocchicchio +5573 2025-07-30 18:02:10.437008+00 2025-07-30 18:02:10.437021+00 f t Invitado Amar invitado-1753898530126@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-4043 +5574 2025-07-30 18:26:30.191088+00 2025-07-30 18:26:30.191099+00 f t Invitado Amar invitado-1753899989662@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4044 +5575 2025-07-30 18:27:17.697521+00 2025-07-30 18:27:17.697531+00 f t Invitado Amar invitado-1753900037335@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-4045 +5576 2025-07-30 18:31:22.513915+00 2025-07-30 18:31:22.513927+00 f t Invitado Amar invitado-1753900282033@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-4046 +5577 2025-07-30 18:32:44.056994+00 2025-07-30 18:32:44.057003+00 f t Invitado Amar invitado-1753900363473@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-4047 +5578 2025-07-30 18:53:33.84251+00 2025-07-30 18:53:33.842519+00 f t Invitado Amar invitado-1753901602210@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4048 +5579 2025-07-30 19:48:01.184118+00 2025-07-30 19:48:01.184127+00 f t Invitado Amar invitado-1753904880410@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4049 +5580 2025-07-30 20:02:23.488553+00 2025-07-30 20:02:23.488567+00 f t Invitado Amar invitado-1753905742795@example.com 55555555 \N \N \N \N \N 86 \N \N iamar-4050 +5581 2025-07-30 20:18:12.41509+00 2025-07-30 20:18:12.415103+00 f t Invitado Amar invitado-1753906692014@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-4051 +5582 2025-07-30 20:46:33.513246+00 2025-07-30 20:46:33.513256+00 f t Invitado Amar invitado-1753908393161@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-4052 +5583 2025-07-30 20:49:49.815378+00 2025-07-30 20:49:49.815388+00 f t Invitado Amar invitado-1753908589757@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4053 +5584 2025-07-30 21:27:58.30492+00 2025-07-30 21:27:58.304929+00 f t Invitado Amar invitado-1753910878773@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4054 +5585 2025-07-30 21:55:23.472117+00 2025-07-30 21:55:23.472129+00 f t Invitado Amar invitado-1753912522797@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-4055 +5586 2025-07-30 21:55:41.191278+00 2025-07-30 21:55:41.19129+00 f t Invitado Amar invitado-1753912540414@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4056 +5587 2025-07-30 21:57:51.744629+00 2025-07-30 21:57:51.744638+00 f t Invitado Amar invitado-1753912671456@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4057 +5588 2025-07-30 22:36:55.303586+00 2025-07-30 22:36:55.303594+00 f t Invitado Amar invitado-1753915014428@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4058 +5589 2025-07-30 23:28:23.766189+00 2025-07-30 23:28:23.766198+00 f t Invitado Amar invitado-1753918103236@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4059 +5590 2025-07-30 23:44:17.831197+00 2025-07-30 23:44:17.831207+00 f t Invitado Amar invitado-1753918995934@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-4060 +5591 2025-07-30 23:52:43.712527+00 2025-07-30 23:52:43.712537+00 f t Invitado Amar invitado-1753919563545@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4061 +5592 2025-07-30 23:55:16.29971+00 2025-07-30 23:55:16.299718+00 f t Invitado Amar invitado-1753919717195@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-4062 +5593 2025-07-31 00:13:14.722511+00 2025-07-31 00:13:14.72252+00 f t Invitado Amar invitado-1753920794179@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-4063 +5594 2025-07-31 00:37:25.014882+00 2025-07-31 00:37:25.014892+00 f t Invitado Amar invitado-1753922244556@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4064 +5595 2025-07-31 00:42:33.983787+00 2025-07-31 00:42:33.983798+00 f t Invitado Amar invitado-1753922553443@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4065 +5596 2025-07-31 00:48:21.410521+00 2025-07-31 00:48:21.410532+00 f t Invitado Amar invitado-1753922807374@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-4066 +5597 2025-07-31 00:53:46.033225+00 2025-07-31 00:53:46.033239+00 f t Invitado Amar invitado-1753923224941@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4067 +5598 2025-07-31 01:36:23.29639+00 2025-07-31 01:36:23.2964+00 f t Invitado Amar invitado-1753925782696@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-4068 +5599 2025-07-31 01:45:59.542511+00 2025-07-31 01:45:59.54252+00 f t Carolina Jesica Achata Huarachi carolinaachata@gmail.com +541161953422 \N Amalia celia Figueredo 4357 1E \N \N -40.784461 -62.9867397 64 \N \N cachatahuarachi +5600 2025-07-31 02:15:10.221779+00 2025-07-31 02:15:10.221791+00 f t Invitado Amar invitado-1753928111254@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-4069 +5601 2025-07-31 02:27:11.691039+00 2025-07-31 02:27:11.691049+00 f t Invitado Amar invitado-1753928831541@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4070 +5602 2025-07-31 02:29:12.306715+00 2025-07-31 02:29:12.306731+00 f t Invitado Amar invitado-1753928951639@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-4071 +5603 2025-07-31 03:11:27.868173+00 2025-07-31 03:11:27.868183+00 f t Invitado Amar invitado-1753931487253@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-4072 +5604 2025-07-31 04:45:13.248588+00 2025-07-31 04:45:13.248598+00 f t Invitado Amar invitado-1753937112382@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-4073 +5605 2025-07-31 06:22:37.376522+00 2025-07-31 06:22:37.376532+00 f t Invitado Amar invitado-1753942956251@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-4074 +5606 2025-07-31 06:26:45.529235+00 2025-07-31 06:26:45.529245+00 f t Invitado Amar invitado-1753943204999@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-4075 +5607 2025-07-31 07:13:12.237156+00 2025-07-31 07:13:12.237165+00 f t Invitado Amar invitado-1753945991605@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-4076 +5608 2025-07-31 09:52:40.666993+00 2025-07-31 09:52:40.667001+00 f t Invitado Amar invitado-1753955560339@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-4077 +5609 2025-07-31 09:56:31.600557+00 2025-07-31 09:56:31.600568+00 f t Invitado Amar invitado-1753955791567@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-4078 +5610 2025-07-31 10:53:55.245837+00 2025-07-31 10:53:55.245846+00 f t Invitado Amar invitado-1753959234949@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-4079 +5611 2025-07-31 11:22:26.402543+00 2025-07-31 11:22:26.402552+00 f t Invitado Amar invitado-1753960946099@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4080 +5612 2025-07-31 11:24:01.370351+00 2025-07-31 11:24:01.370363+00 f t Invitado Amar invitado-1753961039802@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4081 +5613 2025-07-31 11:31:21.177696+00 2025-07-31 11:31:21.177706+00 f t Invitado Amar invitado-1753961480084@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-4082 +5614 2025-07-31 11:35:12.231398+00 2025-07-31 11:35:12.231415+00 f t Invitado Amar invitado-1753961711264@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-4083 +5615 2025-07-31 11:50:36.622201+00 2025-07-31 11:50:36.622211+00 f t Invitado Amar invitado-1753962635855@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-4084 +5616 2025-07-31 11:51:50.605184+00 2025-07-31 11:51:50.605223+00 f t Invitado Amar invitado-1753962711286@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4085 +5617 2025-07-31 12:23:12.418102+00 2025-07-31 12:23:12.418114+00 f t Invitado Amar invitado-1753964592064@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4086 +5618 2025-07-31 12:34:36.609992+00 2025-07-31 12:34:36.610008+00 f t Invitado Amar invitado-1753965275829@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4087 +5619 2025-07-31 13:02:08.684993+00 2025-07-31 13:02:08.685007+00 f t Invitado Amar invitado-1753966927611@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4088 +5620 2025-07-31 13:07:29.600531+00 2025-07-31 13:07:29.60054+00 f t Monica Garcia monihenao7@gmail.com 91126819904 \N México 1220 \N \N FEMALE \N -34.6154252 -58.3834365 49 1491 \N mgarcia-3 +5621 2025-07-31 13:15:13.90612+00 2025-07-31 13:15:13.906133+00 f t Invitado Amar invitado-1753967713499@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4089 +5622 2025-07-31 13:29:52.979422+00 2025-07-31 13:29:52.979436+00 f t Magalí Manzano magali.042@gmail.com +541157320042 \N Bacacay 5042 PB 2 \N \N -34.6348942 -58.4976192 65 \N \N mmanzano +5623 2025-07-31 13:32:53.292283+00 2025-07-31 13:32:53.292295+00 f t Invitado Amar invitado-1753968770990@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-4090 +5624 2025-07-31 13:43:48.585933+00 2025-07-31 13:43:48.58594+00 f t Andrea Mizda andreamizda@gmail.com 91130043928 \N Gaona 2870 dpto 602 \N FEMALE \N -34.6166769 -58.4662788 4 1492 \N amizda +5625 2025-07-31 13:54:36.659706+00 2025-07-31 13:54:36.659715+00 f t Mariana Casas mariana.casas2287@gmail.com +541168450656 \N Miguel De Cervantes 2710 \N \N -32.9568204 -68.8509989 21 1493 \N mcasas +5626 2025-07-31 14:04:52.797419+00 2025-07-31 14:04:52.797428+00 f t Invitado Amar invitado-1753970691275@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4091 +5627 2025-07-31 14:29:20.991872+00 2025-07-31 14:29:20.991885+00 f t Invitado Amar invitado-1753972160486@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4092 +5628 2025-07-31 14:43:08.783942+00 2025-07-31 14:43:08.783953+00 f t Invitado Amar invitado-1753972988435@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4093 +5629 2025-07-31 15:05:21.712812+00 2025-07-31 15:05:21.712821+00 f t Jazmin Buezas jazminbuezassoto2003@gmail.com +5491159910206 \N Migueletes 681 2-1 \N \N -34.5671273 -58.4327958 1 \N \N jbuezas +5630 2025-07-31 15:43:52.970432+00 2025-07-31 15:43:52.970444+00 f t Invitado Amar invitado-1753976632356@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-4094 +5631 2025-07-31 16:08:12.061049+00 2025-07-31 16:08:12.061062+00 f t Invitado Amar invitado-1753978091323@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-4095 +5632 2025-07-31 16:27:11.617351+00 2025-07-31 16:27:11.61736+00 f t Invitado Amar invitado-1753979231521@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4096 +5633 2025-07-31 16:45:39.525029+00 2025-07-31 16:45:39.525038+00 f t Invitado Amar invitado-1753980339153@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4097 +5634 2025-07-31 16:47:21.674999+00 2025-07-31 16:47:21.675012+00 f t Invitado Amar invitado-1753980441485@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4098 +5635 2025-07-31 16:47:46.229259+00 2025-07-31 16:47:46.229268+00 f t Invitado Amar invitado-1753980465162@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-4099 +5636 2025-07-31 16:48:37.231988+00 2025-07-31 16:48:37.231996+00 f t Invitado Amar invitado-1753980517555@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4100 +5637 2025-07-31 16:49:27.108285+00 2025-07-31 16:49:27.108297+00 f t Invitado Amar invitado-1753980566937@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4101 +5638 2025-07-31 16:50:34.355935+00 2025-07-31 16:50:34.355944+00 f t Invitado Amar invitado-1753980633886@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4102 +5639 2025-07-31 16:55:37.828536+00 2025-07-31 16:55:37.828547+00 f t Invitado Amar invitado-1753980939206@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-4103 +5640 2025-07-31 17:33:32.701914+00 2025-07-31 17:33:32.701925+00 f t Andrea Rodriguez rodriguezdilucente@yahoo.com.ar 91162773955 \N Juan Ramírez de Velasco 1212 PB 1 \N FEMALE 1964-08-20 -34.5919707 -58.4428179 26 1494 \N arodriguez-2 +5641 2025-07-31 17:51:08.962315+00 2025-07-31 17:51:08.962327+00 f t Invitado Amar invitado-1753984268089@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4104 +5642 2025-07-31 17:52:10.964146+00 2025-07-31 17:52:10.964156+00 f t Invitado Amar invitado-1753984330491@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-4105 +5643 2025-07-31 18:04:14.63601+00 2025-07-31 18:04:14.636019+00 f t Invitado Amar invitado-1753985053773@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-4106 +5644 2025-07-31 18:05:11.014409+00 2025-07-31 18:05:11.014419+00 f t Invitado Amar invitado-1753985110596@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4107 +5645 2025-07-31 18:09:52.729126+00 2025-07-31 18:09:52.729134+00 f t Invitado Amar invitado-1753985392375@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-4108 +5646 2025-07-31 18:16:15.491521+00 2025-07-31 18:16:15.491529+00 f t Invitado Amar invitado-1753985777168@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4109 +5647 2025-07-31 18:18:21.453114+00 2025-07-31 18:18:21.453124+00 f t Invitado Amar invitado-1753985902889@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4110 +5648 2025-07-31 18:26:59.295621+00 2025-07-31 18:26:59.29563+00 f t Invitado Amar invitado-1753986419530@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-4111 +5649 2025-07-31 18:34:37.916148+00 2025-07-31 18:34:37.91616+00 f t Florencia Lopedote florencia.mercedes.05@gmail.com +541126877969 \N Pelagio Luna 2187 Puerta de madera \N \N \N -34.6015051 -58.5548046 88 1498 \N flopedote +5650 2025-07-31 18:46:03.282186+00 2025-07-31 18:46:03.282198+00 f t Invitado Amar invitado-1753987564460@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-4112 +5651 2025-07-31 18:47:14.180563+00 2025-07-31 18:47:14.18058+00 f t Invitado Amar invitado-1753987635568@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-4113 +5652 2025-07-31 18:47:21.010818+00 2025-07-31 18:47:21.010829+00 f t Invitado Amar invitado-1753987640511@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4114 +5653 2025-07-31 18:52:00.293366+00 2025-07-31 18:52:00.293379+00 f t Invitado Amar invitado-1753987918870@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-4115 +5654 2025-07-31 18:52:29.174482+00 2025-07-31 18:52:29.174493+00 f t Invitado Amar invitado-1753987948520@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-4116 +5656 2025-07-31 19:32:22.847926+00 2025-07-31 19:32:22.847936+00 f t Invitado Amar invitado-1753990341353@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-4118 +5657 2025-07-31 20:07:08.876405+00 2025-07-31 20:07:08.876414+00 f t Invitado Amar invitado-1753992428488@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4119 +5658 2025-07-31 20:24:59.882432+00 2025-07-31 20:24:59.882444+00 f t Invitado Amar invitado-1753993498319@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4120 +5659 2025-07-31 20:26:54.988713+00 2025-07-31 20:26:54.988729+00 f t Invitado Amar invitado-1753993667772@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4121 +5660 2025-07-31 21:09:17.721306+00 2025-07-31 21:09:17.721315+00 f t Invitado Amar invitado-1753996157197@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4122 +5661 2025-07-31 22:44:44.200357+00 2025-07-31 22:44:44.200367+00 f t Invitado Amar invitado-1754001883265@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4123 +5662 2025-07-31 22:45:06.222768+00 2025-07-31 22:45:06.22278+00 f t Jimena Muti jimemuti@gmail.com 91131096991 \N Don Bosco 3870 Piso 8 DEpto D \N FEMALE 1982-07-29 -34.6131024 -58.4200989 23 1499 \N jmuti +5663 2025-07-31 22:46:25.020069+00 2025-07-31 22:46:25.020078+00 f t Invitado Amar invitado-1754001984115@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4124 +5664 2025-07-31 22:48:49.846994+00 2025-07-31 22:48:49.847003+00 f t Invitado Amar invitado-1754002129239@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4125 +5665 2025-07-31 22:52:15.747429+00 2025-07-31 22:52:15.747442+00 f t Invitado Amar invitado-1754002335370@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4126 +5666 2025-07-31 22:55:43.386668+00 2025-07-31 22:55:43.38668+00 f t Invitado Amar invitado-1754002543029@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4127 +5667 2025-07-31 22:56:20.293258+00 2025-07-31 22:56:20.293271+00 f t Invitado Amar invitado-1754002579938@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4128 +5668 2025-07-31 22:58:41.015214+00 2025-07-31 22:58:41.015225+00 f t Invitado Amar invitado-1754002721098@example.com 55555555 \N \N \N \N \N 2 \N \N iamar-4129 +5669 2025-07-31 22:58:47.531935+00 2025-07-31 22:58:47.531948+00 f t Invitado Amar invitado-1754002727411@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4130 +5670 2025-07-31 23:00:06.409962+00 2025-07-31 23:00:06.409975+00 f t Invitado Amar invitado-1754002806351@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-4131 +5671 2025-08-01 00:03:31.380851+00 2025-08-01 00:03:31.380864+00 f t Invitado Amar invitado-1754006610240@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4132 +5672 2025-08-01 00:57:46.256631+00 2025-08-01 00:57:46.256644+00 f t Invitado Amar invitado-1754009865539@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4133 +5673 2025-08-01 00:58:21.577047+00 2025-08-01 00:58:21.577059+00 f t Invitado Amar invitado-1754009901252@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-4134 +5674 2025-08-01 01:08:22.951108+00 2025-08-01 01:08:22.951119+00 f t Invitado Amar invitado-1754010503010@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4135 +5675 2025-08-01 01:08:46.543302+00 2025-08-01 01:08:46.54331+00 f t Invitado Amar invitado-1754010524607@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4136 +5676 2025-08-01 01:22:36.617108+00 2025-08-01 01:22:36.61712+00 f t Invitado Amar invitado-1754011355399@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4137 +5677 2025-08-01 01:50:27.33958+00 2025-08-01 01:50:27.339589+00 f t Invitado Amar invitado-1754013027405@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4138 +5678 2025-08-01 02:24:40.043509+00 2025-08-01 02:24:40.043517+00 f t Invitado Amar invitado-1754015079441@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-4139 +5679 2025-08-01 03:19:45.342528+00 2025-08-01 03:19:45.34254+00 f t Invitado Amar invitado-1754018386105@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-4140 +5680 2025-08-01 03:21:18.921564+00 2025-08-01 03:21:18.921577+00 f t Invitado Amar invitado-1754018479943@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-4141 +5681 2025-08-01 04:35:36.165203+00 2025-08-01 04:35:36.165241+00 f t Invitado Amar invitado-1754022935588@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-4142 +5682 2025-08-01 04:49:58.36227+00 2025-08-01 04:49:58.36228+00 f t Invitado Amar invitado-1754023797837@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-4143 +5683 2025-08-01 06:16:33.609372+00 2025-08-01 06:16:33.60938+00 f t Invitado Amar invitado-1754028996078@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-4144 +5684 2025-08-01 06:42:50.866665+00 2025-08-01 06:42:50.867108+00 f t Invitado Amar invitado-1754030570047@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-4145 +5685 2025-08-01 07:20:30.164602+00 2025-08-01 07:20:30.164611+00 f t Camila Feraut ferautcami5@gmail.com +541155723184 \N Lacroze 4040 \N \N -34.6962417 -58.7652556 53 \N \N cferaut +5686 2025-08-01 07:26:45.929001+00 2025-08-01 07:26:45.92901+00 f t Invitado Amar invitado-1754033205283@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4146 +5687 2025-08-01 09:40:09.278831+00 2025-08-01 09:40:09.278843+00 f t Invitado Amar invitado-1754041209070@example.com 55555555 \N \N \N \N \N 67 \N \N iamar-4147 +5688 2025-08-01 09:41:34.948796+00 2025-08-01 09:41:34.948807+00 f t Invitado Amar invitado-1754041295073@example.com 55555555 \N \N \N \N \N 67 \N \N iamar-4148 +5689 2025-08-01 09:49:29.366513+00 2025-08-01 09:49:29.366533+00 f t Invitado Amar invitado-1754041769885@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4149 +5690 2025-08-01 10:41:34.677238+00 2025-08-01 10:41:34.677248+00 f t Invitado Amar invitado-1754044893855@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4150 +5691 2025-08-01 10:51:03.773075+00 2025-08-01 10:51:03.773085+00 f t Invitado Amar invitado-1754045462766@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4151 +5692 2025-08-01 11:00:18.420638+00 2025-08-01 11:00:18.420649+00 f t Invitado Amar invitado-1754046017249@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-4152 +5693 2025-08-01 11:16:54.314833+00 2025-08-01 11:16:54.314843+00 f t Invitado Amar invitado-1754047013988@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4153 +5694 2025-08-01 11:25:10.190215+00 2025-08-01 11:25:10.190228+00 f t Invitado Amar invitado-1754047509420@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4154 +5695 2025-08-01 11:27:50.298751+00 2025-08-01 11:27:50.298762+00 f t Invitado Amar invitado-1754047669725@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4155 +5696 2025-08-01 11:31:09.22254+00 2025-08-01 11:31:09.222553+00 f t Invitado Amar invitado-1754047868760@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4156 +5697 2025-08-01 11:56:21.715584+00 2025-08-01 11:56:21.715594+00 f t Invitado Amar invitado-1754049381318@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4157 +5698 2025-08-01 12:50:03.028847+00 2025-08-01 12:50:03.028862+00 f t Invitado Amar invitado-1754052600945@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4158 +5699 2025-08-01 13:02:34.931302+00 2025-08-01 13:02:34.931312+00 f t Invitado Amar invitado-1754053353840@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-4159 +5700 2025-08-01 13:07:55.730208+00 2025-08-01 13:07:55.730218+00 f t Invitado Amar invitado-1754053674928@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4160 +5701 2025-08-01 13:12:18.875687+00 2025-08-01 13:12:18.875698+00 f t Invitado Amar invitado-1754053937865@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-4161 +5702 2025-08-01 13:25:09.837155+00 2025-08-01 13:25:09.837169+00 f t Invitado Amar invitado-1754054709274@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-4162 +5703 2025-08-01 13:27:13.148326+00 2025-08-01 13:27:13.148337+00 f t Invitado Amar invitado-1754054833255@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4163 +5704 2025-08-01 13:47:46.681583+00 2025-08-01 13:47:46.681594+00 f t Invitado Amar invitado-1754056066008@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4164 +5705 2025-08-01 13:51:36.873353+00 2025-08-01 13:51:36.873366+00 f t Invitado Amar invitado-1754056296234@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4165 +5706 2025-08-01 14:00:13.177329+00 2025-08-01 14:00:13.177342+00 f t Mariana Comerci marucomerci@gmail.com +541126711499 \N Galvan 3153 3C \N \N -34.5663605 -58.4878111 29 1502 \N mcomerci +5707 2025-08-01 14:08:30.643576+00 2025-08-01 14:08:30.643585+00 f t Invitado Amar invitado-1754057310207@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4166 +5708 2025-08-01 14:18:48.50756+00 2025-08-01 14:18:48.50757+00 f t Invitado Amar invitado-1754057928083@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4167 +5709 2025-08-01 14:20:05.742468+00 2025-08-01 14:20:05.742482+00 f t Invitado Amar invitado-1754058005227@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4168 +5710 2025-08-01 14:46:26.139745+00 2025-08-01 14:46:26.139754+00 f t Invitado Amar invitado-1754059585749@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-4169 +5711 2025-08-01 15:32:07.237702+00 2025-08-01 15:32:07.237712+00 f t Invitado Amar invitado-1754062326690@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4170 +5712 2025-08-01 15:48:35.810957+00 2025-08-01 15:48:35.810971+00 f t Invitado Amar invitado-1754063315431@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4171 +5713 2025-08-01 16:04:01.833633+00 2025-08-01 16:04:01.833647+00 f t Invitado Amar invitado-1754064241415@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4172 +5714 2025-08-01 16:07:06.298388+00 2025-08-01 16:07:06.298397+00 f t Invitado Amar invitado-1754064425981@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4173 +5715 2025-08-01 16:08:06.421994+00 2025-08-01 16:08:06.422005+00 f t Invitado Amar invitado-1754064485886@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-4174 +5716 2025-08-01 16:11:56.227856+00 2025-08-01 16:11:56.227867+00 f t Invitado Amar invitado-1754064715160@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4175 +5717 2025-08-01 16:17:25.978073+00 2025-08-01 16:17:25.978082+00 f t Invitado Amar invitado-1754065066343@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-4176 +5718 2025-08-01 17:06:41.296985+00 2025-08-01 17:06:41.296996+00 f t Invitado Amar invitado-1754068001239@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4177 +5719 2025-08-01 17:06:55.30164+00 2025-08-01 17:06:55.301649+00 f t Invitado Amar invitado-1754068014947@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4178 +5720 2025-08-01 17:37:07.378466+00 2025-08-01 17:37:07.378477+00 f t Claudia Alejandra Cazzaniga ccazzaniga@gmail.com 91145659035 \N Ciudad de la Paz 3136 3ero B \N FEMALE \N -34.5538856 -58.4659651 25 \N \N ccazzaniga +5721 2025-08-01 18:37:32.384403+00 2025-08-01 18:37:32.384412+00 f t Invitado Amar invitado-1754073452156@example.com 55555555 \N \N \N \N \N 67 \N \N iamar-4179 +5722 2025-08-01 18:41:04.624132+00 2025-08-01 18:41:04.624147+00 f t ALEJANDRO MONZANI holaelgatorealizaciones@gmail.com +541133259275 \N Heredia 439 PB 4 \N \N -34.5874377 -58.4657378 35 \N \N amonzani +5723 2025-08-01 18:41:12.761828+00 2025-08-01 18:41:12.761837+00 f t Invitado Amar invitado-1754073673721@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-4180 +5724 2025-08-01 18:42:48.504039+00 2025-08-01 18:42:48.50405+00 f t Invitado Amar invitado-1754073767537@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-4181 +5725 2025-08-01 19:44:19.22044+00 2025-08-01 19:44:19.220452+00 f t Invitado Amar invitado-1754077458480@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4182 +5726 2025-08-01 19:45:30.986297+00 2025-08-01 19:45:30.98631+00 f t Invitado Amar invitado-1754077527967@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4183 +5727 2025-08-01 20:06:05.103732+00 2025-08-01 20:06:05.103745+00 f t Invitado Amar invitado-1754078764781@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4184 +5728 2025-08-01 21:10:17.359382+00 2025-08-01 21:10:17.35939+00 f t Invitado Amar invitado-1754082616695@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4185 +5729 2025-08-01 21:13:10.01374+00 2025-08-01 21:13:10.013752+00 f t Irina Beltran iri.bel@icloud.com +5411121940 \N José andres pacheco de melo 2578 7B \N \N \N \N 9 \N \N ibeltran +5730 2025-08-01 21:13:34.149467+00 2025-08-01 21:13:34.149508+00 f t Invitado Amar invitado-1754082813965@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4186 +5731 2025-08-01 21:21:16.654063+00 2025-08-01 21:21:16.65407+00 f t Claudia Piancatelli claudijuan2013@gmail.com 91161009835 \N segurola 1568 \N \N FEMALE \N -34.6201398 -58.499756 28 1503 \N cpiancatelli +5732 2025-08-01 21:40:30.239531+00 2025-08-01 21:40:30.23954+00 f t Invitado Amar invitado-1754084430273@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-4187 +5733 2025-08-01 22:15:32.206029+00 2025-08-01 22:15:32.206038+00 f t Micaela Luque micaela.duncan77@gmail.com 🇦🇷+5491138444417 \N Bulnes 1250 pb 0001 entre Cabrera y Córdoba Palermo \N FEMALE \N -34.5972255 -58.4172267 1 1504 \N mluque +5734 2025-08-01 22:22:00.017817+00 2025-08-01 22:22:00.01783+00 f t Invitado Amar invitado-1754086918958@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-4188 +5735 2025-08-01 22:22:24.765439+00 2025-08-01 22:22:24.765453+00 f t Invitado Amar invitado-1754086385597@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4189 +5736 2025-08-01 22:23:34.673519+00 2025-08-01 22:23:34.673527+00 f t Invitado Amar invitado-1754087013893@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-4190 +5737 2025-08-01 22:36:52.617736+00 2025-08-01 22:36:52.617745+00 f t Invitado Amar invitado-1754087812087@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4191 +5738 2025-08-01 22:52:00.480662+00 2025-08-01 22:52:00.480676+00 f t Invitado Amar invitado-1754088719990@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4192 +5739 2025-08-01 22:57:46.725782+00 2025-08-01 22:57:46.725791+00 f t Invitado Amar invitado-1754089066208@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-4193 +5740 2025-08-01 23:10:53.621032+00 2025-08-01 23:10:53.621042+00 f t Invitado Amar invitado-1754089854034@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-4194 +5741 2025-08-01 23:11:35.709321+00 2025-08-01 23:11:35.70933+00 f t Invitado Amar invitado-1754089336268@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4195 +5742 2025-08-02 01:54:11.211053+00 2025-08-02 01:54:11.211063+00 f t Invitado Amar invitado-1754099648961@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4196 +5743 2025-08-02 02:28:02.025624+00 2025-08-02 02:28:02.025637+00 f t Daniel Jara el.akdmiko@gmail.com +541158324364 \N Francisco Acuña de Figueroa 134 5 C \N \N \N -34.6094611 -58.4229756 23 1507 \N djara +5744 2025-08-02 02:28:56.625353+00 2025-08-02 02:28:56.625362+00 f t Invitado Amar invitado-1754101737047@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-4197 +5745 2025-08-02 02:34:52.130098+00 2025-08-02 02:34:52.130107+00 f t Invitado Amar invitado-1754102091420@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-4198 +5746 2025-08-02 02:38:41.242896+00 2025-08-02 02:38:41.242905+00 f t Invitado Amar invitado-1754102320909@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4199 +5747 2025-08-02 02:39:57.807875+00 2025-08-02 02:39:57.807885+00 f t Invitado Amar invitado-1754102397664@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4200 +5748 2025-08-02 03:10:27.755939+00 2025-08-02 03:10:27.755951+00 f t Invitado Amar invitado-1754104226838@example.com 55555555 \N \N \N \N \N 67 \N \N iamar-4201 +5749 2025-08-02 04:37:25.644486+00 2025-08-02 04:37:25.644495+00 f t Invitado Amar invitado-1754109446010@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4202 +5750 2025-08-02 04:50:05.60355+00 2025-08-02 04:50:05.603566+00 f t Invitado Amar invitado-1754110198293@example.com 55555555 \N \N \N \N \N 57 \N \N iamar-4203 +5751 2025-08-02 05:44:43.673858+00 2025-08-02 05:44:43.673866+00 f t Daniela Grange grange.d30@gmail.com +541139258069 \N Av. independencia 2172 \N \N -34.6185465 -58.3970318 18 \N \N dgrange +5752 2025-08-02 06:51:28.692122+00 2025-08-02 06:51:28.692145+00 f t Invitado Amar invitado-1754117488328@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4204 +5753 2025-08-02 10:45:27.709698+00 2025-08-02 10:45:27.709707+00 f t Invitado Amar invitado-1754131527287@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4205 +5754 2025-08-02 12:03:44.640283+00 2025-08-02 12:03:44.640292+00 f t Invitado Amar invitado-1754136224180@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4206 +5755 2025-08-02 12:29:41.849936+00 2025-08-02 12:29:41.84995+00 f t Invitado Amar invitado-1754137781304@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4207 +5756 2025-08-02 12:54:57.889279+00 2025-08-02 12:54:57.889292+00 f t Invitado Amar invitado-1754139297274@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4208 +5757 2025-08-02 13:12:55.409085+00 2025-08-02 13:12:55.409578+00 f t Lorena Crocco marialorenacrocco@gmail.com +541150629920 \N Roseti 1028 2 \N \N \N -34.5821334 -58.4572801 35 1508 \N lcrocco +5758 2025-08-02 13:33:35.017539+00 2025-08-02 13:33:35.017553+00 f t Invitado Amar invitado-1754141614670@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-4209 +5759 2025-08-02 14:02:50.739292+00 2025-08-02 14:02:50.739306+00 f t Patricio Alberti drpatricioalberti@gmail.com +541133523032 \N Beruti 3737 Piso 6 dto 22 \N \N -34.5843863 -58.4136767 1 \N \N palberti +5760 2025-08-02 15:01:56.632382+00 2025-08-02 15:01:56.632392+00 f t Invitado Amar invitado-1754146915846@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4210 +5761 2025-08-02 15:04:44.596419+00 2025-08-02 15:04:44.596432+00 f t Invitado Amar invitado-1754147084297@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4211 +5762 2025-08-02 15:08:58.938847+00 2025-08-02 15:08:58.938861+00 f t Maria Alejandra Sosa sosa84872@gmail.com +541131966161 \N Jose bonifacio 1581 8 Bosque \N \N -34.6289914 -58.4494602 14 \N \N msosa-4 +5763 2025-08-02 15:14:13.682585+00 2025-08-02 15:14:13.682597+00 f t Invitado Amar invitado-1754147653058@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4212 +5764 2025-08-02 16:07:51.064576+00 2025-08-02 16:07:51.064585+00 f t Invitado Amar invitado-1754150870890@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-4213 +5765 2025-08-02 16:21:08.172932+00 2025-08-02 16:21:08.17294+00 f t Maria Noel Sanchez de Bustamante mnsanchezdebustamante@gmail.com 91134933555 \N Av Entre Rios 1027 PISO 9 DEPTO 8 \N FEMALE 1988-11-01 -34.6206283 -58.3917458 12 \N \N msanchezdebustamante +5766 2025-08-02 17:12:55.694796+00 2025-08-02 17:12:55.694808+00 f t Invitado Amar invitado-1754154774464@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-4214 +5767 2025-08-02 17:26:52.286242+00 2025-08-02 17:26:52.28625+00 f t Invitado Amar invitado-1754155611915@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4215 +5768 2025-08-02 17:39:42.261515+00 2025-08-02 17:39:42.261525+00 f t Invitado Amar invitado-1754156381344@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4216 +5769 2025-08-02 17:54:03.833349+00 2025-08-02 17:54:03.833362+00 f t Invitado Amar invitado-1754157242555@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4217 +5770 2025-08-02 17:56:00.721238+00 2025-08-02 17:56:00.721247+00 f t Invitado Amar invitado-1754157360161@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4218 +5771 2025-08-02 18:09:02.846894+00 2025-08-02 18:09:02.846908+00 f t Invitado Amar invitado-1754158142253@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-4219 +5772 2025-08-02 18:26:59.252897+00 2025-08-02 18:26:59.252906+00 f t Maria Aguero vimaaguero540@gmail.com 91123563608 \N Muñiz 911 \N \N FEMALE 2025-10-10 40.6095363 -4.9983481 23 1509 \N maguero +5773 2025-08-02 18:57:58.608112+00 2025-08-02 18:57:58.608122+00 f t Invitado Amar invitado-1754161078245@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4220 +5774 2025-08-02 19:08:10.289434+00 2025-08-02 19:08:10.289444+00 f t Ariana Merlo arianacyn@gmail.com 91159571054 \N Rivadavia 5725 \N \N FEMALE 1997-05-05 -34.6224134 -58.4462314 14 1510 \N amerlo +5775 2025-08-02 19:21:57.077646+00 2025-08-02 19:21:57.077657+00 f t Invitado Amar invitado-1754162516683@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4221 +5776 2025-08-02 19:24:21.842581+00 2025-08-02 19:24:21.84259+00 f t Invitado Amar invitado-1754162660592@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4222 +5777 2025-08-02 19:27:58.641379+00 2025-08-02 19:27:58.641388+00 f t Invitado Amar invitado-1754162877608@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4223 +5778 2025-08-02 19:28:07.508928+00 2025-08-02 19:28:07.508937+00 f t Invitado Amar invitado-1754162884925@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4224 +5779 2025-08-02 19:30:26.739946+00 2025-08-02 19:30:26.739958+00 f t Invitado Amar invitado-1754163025732@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4225 +5780 2025-08-02 19:34:04.027901+00 2025-08-02 19:34:04.027914+00 f t Invitado Amar invitado-1754163243201@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4226 +5781 2025-08-02 19:48:40.150061+00 2025-08-02 19:48:40.15007+00 f t Eva Santillan eva_s04@hotmail.com 91161633313 \N Florida 253 11 i \N FEMALE 1974-04-04 -34.6050812 -58.3750903 13 1511 \N esantillan +5782 2025-08-02 20:42:52.935759+00 2025-08-02 20:42:52.935769+00 f t Invitado Amar invitado-1754167372872@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-4227 +5783 2025-08-02 20:44:02.391256+00 2025-08-02 20:44:02.391268+00 f t Invitado Amar invitado-1754167442510@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-4228 +5784 2025-08-02 20:44:40.131774+00 2025-08-02 20:44:40.131788+00 f t Invitado Amar invitado-1754167480259@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-4229 +5785 2025-08-02 21:02:52.685925+00 2025-08-02 21:02:52.685935+00 f t Invitado Amar invitado-1754168571866@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4230 +5786 2025-08-02 21:32:21.881676+00 2025-08-02 21:32:21.881687+00 f t Invitado Amar invitado-1754170341312@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-4231 +5787 2025-08-02 22:07:55.721815+00 2025-08-02 22:07:55.721827+00 f t Invitado Amar invitado-1754172475284@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4232 +5788 2025-08-02 22:20:19.260681+00 2025-08-02 22:20:19.260693+00 f t Invitado Amar invitado-1754173218889@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4233 +5789 2025-08-02 22:31:18.85031+00 2025-08-02 22:31:18.850319+00 f t Invitado Amar invitado-1754173878473@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4234 +5790 2025-08-02 22:38:51.468388+00 2025-08-02 22:38:51.468397+00 f t Invitado Amar invitado-1754174330879@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4235 +5791 2025-08-02 22:58:56.251932+00 2025-08-02 22:58:56.251945+00 f t Invitado Amar invitado-1754175536033@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4236 +5792 2025-08-03 03:06:42.206468+00 2025-08-03 03:06:42.206478+00 f t Invitado Amar invitado-1754190401807@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-4237 +5793 2025-08-03 04:20:40.792918+00 2025-08-03 04:20:40.792927+00 f t Invitado Amar invitado-1754194840132@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4238 +5794 2025-08-03 05:18:55.556366+00 2025-08-03 05:18:55.556379+00 f t Invitado Amar invitado-1754198335008@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4239 +5795 2025-08-03 08:11:42.461678+00 2025-08-03 08:11:42.461692+00 f t Invitado Amar invitado-1754208702308@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4240 +5796 2025-08-03 08:14:03.8891+00 2025-08-03 08:14:03.889113+00 f t Kevin Wood yessik.1130@hotmail.com +541144263771 \N Jeronimo salguero 2750 4 \N \N \N -34.5799571 -58.4081579 1 \N \N kwood +5797 2025-08-03 08:24:26.101683+00 2025-08-03 08:24:26.101692+00 f t Invitado Amar invitado-1754209464714@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-4241 +5798 2025-08-03 08:27:51.17276+00 2025-08-03 08:27:51.172769+00 f t Invitado Amar invitado-1754209670109@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-4242 +5799 2025-08-03 08:37:10.89541+00 2025-08-03 08:37:10.895422+00 f t Emilia Fruto memiliafruto@hotmail.com +541144131850 \N 3 de febrero 3296 3 \N \N \N -34.548547 -58.4606339 25 1513 \N efruto +5800 2025-08-03 11:34:04.893483+00 2025-08-03 11:34:04.893497+00 f t Invitado Amar invitado-1754220844752@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4243 +5801 2025-08-03 12:24:34.815073+00 2025-08-03 12:24:34.815086+00 f t Invitado Amar invitado-1754223874348@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4244 +5802 2025-08-03 12:37:57.52776+00 2025-08-03 12:37:57.527769+00 f t Jessica Wood jessicaparragarcia@gmail.com +541144263771 \N Jeronimo salguero 2750 4 dto 4 \N \N \N -34.5799571 -58.4081579 1 1515 \N jwood +5803 2025-08-03 14:03:14.532733+00 2025-08-03 14:03:14.532746+00 f t Invitado Amar invitado-1754229794399@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-4245 +5804 2025-08-03 14:38:56.55519+00 2025-08-03 14:38:56.555201+00 f t Invitado Amar invitado-1754231936231@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4246 +5805 2025-08-03 14:46:09.138088+00 2025-08-03 14:46:09.138102+00 f t Invitado Amar invitado-1754232368660@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-4247 +5806 2025-08-03 15:42:06.96931+00 2025-08-03 15:42:06.969321+00 f t Invitado Amar invitado-1754235726578@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-4248 +5807 2025-08-03 16:13:09.174234+00 2025-08-03 16:13:09.174245+00 f t Invitado Amar invitado-1754237588233@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-4249 +5808 2025-08-03 18:16:35.45763+00 2025-08-03 18:16:35.457639+00 f t Invitado Amar invitado-1754244995559@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4250 +5809 2025-08-03 19:12:38.028605+00 2025-08-03 19:12:38.028614+00 f t Invitado Amar invitado-1754248355240@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4251 +5810 2025-08-03 19:22:52.645743+00 2025-08-03 19:22:52.645752+00 f t Invitado Amar invitado-1754248970745@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4252 +5811 2025-08-03 19:26:14.063376+00 2025-08-03 19:26:14.063386+00 f t Maria Laura Fernandez laura_ffernandez@hotmail.com 91162530396 \N Washington 3372 piso 3 depto F \N FEMALE 1970-03-06 -34.5529302 -58.4827894 31 1516 \N mfernandez-2 +5812 2025-08-03 19:31:38.72662+00 2025-08-03 19:31:38.726632+00 f t Invitado Amar invitado-1754249498186@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-4253 +5813 2025-08-03 19:43:46.345273+00 2025-08-03 19:43:46.345287+00 f t Invitado Amar invitado-1754250228317@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4254 +5814 2025-08-03 19:58:48.417062+00 2025-08-03 19:58:48.41707+00 f t Invitado Amar invitado-1754251127951@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4255 +5815 2025-08-03 20:01:25.34495+00 2025-08-03 20:01:25.344962+00 f t Melanie Yacovenco mell.yacovenco@gmail.com +541131331538 \N Mansilla 2450 4 E \N \N \N -34.5968423 -58.4024519 9 1520 \N myacovenco +5816 2025-08-03 20:53:02.625109+00 2025-08-03 20:53:02.625123+00 f t Invitado Amar invitado-1754254381168@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-4256 +5817 2025-08-03 21:15:57.097631+00 2025-08-03 21:15:57.097644+00 f t Carla Di Corleto cdicorleto@gmail.com +541156389879 \N Melian 2321 \N \N -34.5666709 -58.4697278 3 \N \N cdicorleto +5818 2025-08-03 21:16:04.124683+00 2025-08-03 21:16:04.1247+00 f t Invitado Amar invitado-1754255763756@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-4257 +5819 2025-08-03 21:16:20.860091+00 2025-08-03 21:16:20.8601+00 f t Invitado Amar invitado-1754255780236@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4258 +5820 2025-08-03 21:44:00.859231+00 2025-08-03 21:44:00.859246+00 f t Invitado Amar invitado-1754257440203@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-4259 +5821 2025-08-03 22:32:50.274223+00 2025-08-03 22:32:50.274234+00 f t Invitado Amar invitado-1754260369213@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-4260 +5822 2025-08-03 22:40:17.860966+00 2025-08-03 22:40:17.860978+00 f t Invitado Amar invitado-1754260816959@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-4261 +5823 2025-08-03 23:01:35.883832+00 2025-08-03 23:01:35.883842+00 f t Invitado Amar invitado-1754262095246@example.com 55555555 \N \N \N \N \N 57 \N \N iamar-4262 +5824 2025-08-03 23:14:04.360677+00 2025-08-03 23:14:04.36069+00 f t Invitado Amar invitado-1754262844037@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4263 +5825 2025-08-03 23:27:53.662302+00 2025-08-03 23:27:53.66231+00 f t Invitado Amar invitado-1754263673063@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-4264 +5826 2025-08-03 23:30:25.496484+00 2025-08-03 23:30:25.496497+00 f t Invitado Amar invitado-1754263824889@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-4265 +5827 2025-08-03 23:32:33.181771+00 2025-08-03 23:32:33.18178+00 f t Invitado Amar invitado-1754263952047@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4266 +5828 2025-08-03 23:37:45.980446+00 2025-08-03 23:37:45.980461+00 f t Invitado Amar invitado-1754264265369@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-4267 +5829 2025-08-04 00:02:32.032365+00 2025-08-04 00:02:32.032374+00 f t Invitado Amar invitado-1754265749039@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4268 +5830 2025-08-04 00:09:09.219009+00 2025-08-04 00:09:09.219024+00 f t Invitado Amar invitado-1754266148606@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-4269 +5831 2025-08-04 00:22:14.921867+00 2025-08-04 00:22:14.921875+00 f t Invitado Amar invitado-1754266934495@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-4270 +5832 2025-08-04 00:52:06.635862+00 2025-08-04 00:52:06.635876+00 f t Invitado Amar invitado-1754268725884@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-4271 +5833 2025-08-04 01:51:06.383266+00 2025-08-04 01:51:06.38328+00 f t Invitado Amar invitado-1754272265648@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4272 +5834 2025-08-04 01:58:32.107741+00 2025-08-04 01:58:32.107754+00 f t Invitado Amar invitado-1754272711062@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4273 +5835 2025-08-04 03:23:40.444292+00 2025-08-04 03:23:40.444301+00 f t Invitado Amar invitado-1754277819836@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4274 +5836 2025-08-04 03:24:53.230488+00 2025-08-04 03:24:53.230497+00 f t Invitado Amar invitado-1754277892876@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4275 +5837 2025-08-04 03:58:04.775679+00 2025-08-04 03:58:04.775689+00 f t Invitado Amar invitado-1754279885449@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-4276 +5838 2025-08-04 07:56:41.584277+00 2025-08-04 07:56:41.584287+00 f t Invitado Amar invitado-1754294201357@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4277 +5839 2025-08-04 07:59:47.423707+00 2025-08-04 07:59:47.423716+00 f t Invitado Amar invitado-1754294387158@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4278 +5840 2025-08-04 08:54:33.841212+00 2025-08-04 08:54:33.841221+00 f t Invitado Amar invitado-1754297673453@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-4279 +5841 2025-08-04 09:19:52.791386+00 2025-08-04 09:19:52.791399+00 f t Invitado Amar invitado-1754299191905@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-4280 +5842 2025-08-04 09:33:31.968316+00 2025-08-04 09:33:31.968328+00 f t Invitado Amar invitado-1754300012524@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4281 +5843 2025-08-04 09:39:03.888419+00 2025-08-04 09:39:03.888435+00 f t Invitado Amar invitado-1754300344795@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4282 +5844 2025-08-04 11:52:34.553882+00 2025-08-04 11:52:34.553892+00 f t Roxana Ramos roxanaramos191@gmail.com +541139430698 \N Martínez Castro 1524 5 \N \N 43.3345249 -8.4072698 4 1519 \N rramos +5845 2025-08-04 13:08:20.045853+00 2025-08-04 13:08:20.045866+00 f t Invitado Amar invitado-1754312899071@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-4283 +5846 2025-08-04 13:09:32.247174+00 2025-08-04 13:09:32.247188+00 f t Invitado Amar invitado-1754312972114@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-4284 +5847 2025-08-04 13:16:34.541136+00 2025-08-04 13:16:34.541147+00 f t Invitado Amar invitado-1754314063978@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4285 +5848 2025-08-04 13:18:16.220815+00 2025-08-04 13:18:16.220826+00 f t Invitado Amar invitado-1754314165840@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4286 +5849 2025-08-04 13:26:31.656719+00 2025-08-04 13:26:31.65673+00 f t Invitado Amar invitado-1754313991139@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-4287 +5850 2025-08-04 13:50:26.033821+00 2025-08-04 13:50:26.03383+00 f t Invitado Amar invitado-1754315425454@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4288 +5851 2025-08-04 14:02:12.761238+00 2025-08-04 14:02:12.76125+00 f t Invitado Amar invitado-1754316132183@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4289 +5852 2025-08-04 14:17:20.875167+00 2025-08-04 14:17:20.875177+00 f t Invitado Amar invitado-1754317040497@example.com 55555555 \N \N \N \N \N 7 \N \N iamar-4290 +5853 2025-08-04 14:29:14.906369+00 2025-08-04 14:29:14.90638+00 f t Invitado Amar invitado-1754317753820@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-4291 +5854 2025-08-04 14:40:35.429166+00 2025-08-04 14:40:35.429177+00 f t Invitado Amar invitado-1754318434768@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4292 +5855 2025-08-04 14:55:35.02902+00 2025-08-04 14:55:35.029029+00 f t Invitado Amar invitado-1754319334411@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4293 +5856 2025-08-04 15:04:20.914877+00 2025-08-04 15:04:20.91489+00 f t Invitado Amar invitado-1754319860260@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-4294 +5857 2025-08-04 15:06:09.032571+00 2025-08-04 15:06:09.032587+00 f t Invitado Amar invitado-1754319968490@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-4295 +5858 2025-08-04 15:09:22.961022+00 2025-08-04 15:09:22.961033+00 f t Invitado Amar invitado-1754320162690@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4296 +5859 2025-08-04 15:10:48.164376+00 2025-08-04 15:10:48.164386+00 f t Invitado Amar invitado-1754320247919@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4297 +5860 2025-08-04 15:17:15.189371+00 2025-08-04 15:17:15.189381+00 f t Mario Miguel Roberts robertsmariom@hotmail.com 91144722427 \N avenida Cordoba 1368 piso 9no a \N MALE \N -34.5993826 -58.3863072 13 1518 \N mroberts +5861 2025-08-04 15:20:33.455517+00 2025-08-04 15:20:33.455526+00 f t Invitado Amar invitado-1754320833034@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-4298 +5862 2025-08-04 15:22:56.885483+00 2025-08-04 15:22:56.885496+00 f t Invitado Amar invitado-1754320976042@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-4299 +5863 2025-08-04 15:26:27.730156+00 2025-08-04 15:26:27.730166+00 f t Invitado Amar invitado-1754321187216@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-4300 +5864 2025-08-04 15:28:16.270517+00 2025-08-04 15:28:16.270531+00 f t Invitado Amar invitado-1754321296058@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-4301 +5865 2025-08-04 15:30:43.348953+00 2025-08-04 15:30:43.348966+00 f t Invitado Amar invitado-1754321442132@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4302 +5866 2025-08-04 15:33:28.228257+00 2025-08-04 15:33:28.228269+00 f t Invitado Amar invitado-1754321607741@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-4303 +5867 2025-08-04 15:41:31.114525+00 2025-08-04 15:41:31.114537+00 f t Paola Riedel paolariedel2013@gmail.com +541141588307 \N Pedro lozano 5092 Casa, timbre de arriba \N \N -34.6152643 -58.517351 28 \N \N priedel +5868 2025-08-04 15:52:39.795951+00 2025-08-04 15:52:39.795959+00 f t Invitado Amar invitado-1754322758901@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4304 +5869 2025-08-04 16:21:29.540508+00 2025-08-04 16:21:29.540521+00 f t Invitado Amar invitado-1754324488982@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4305 +5870 2025-08-04 16:53:35.657745+00 2025-08-04 16:53:35.657759+00 f t Invitado Amar invitado-1754326414845@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4306 +5871 2025-08-04 17:03:12.152717+00 2025-08-04 17:03:12.152727+00 f t Invitado Amar invitado-1754326991432@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4307 +5872 2025-08-04 17:09:35.894046+00 2025-08-04 17:09:35.894055+00 f t Invitado Amar invitado-1754327375298@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4308 +5873 2025-08-04 17:12:42.654999+00 2025-08-04 17:12:42.655008+00 f t Invitado Amar invitado-1754327562080@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4309 +5874 2025-08-04 17:18:59.45344+00 2025-08-04 17:18:59.453449+00 f t Florencia Benteo florenciabenteo@gmail.com 91164800645 \N Conde 493 \N \N FEMALE 1991-04-01 -34.5787874 -58.4476387 38 1521 \N fbenteo +5875 2025-08-04 17:19:34.489168+00 2025-08-04 17:19:34.489182+00 f t Invitado Amar invitado-1754327974202@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-4310 +5876 2025-08-04 17:32:21.733061+00 2025-08-04 17:32:21.733068+00 f t Guillermo Quiceno guilloquiceno@gmail.com 91168465647 \N Mansilla 2935 Depto 4A \N MALE 1984-06-30 -34.5947508 -58.4082584 9 1523 \N gquiceno +5877 2025-08-04 17:38:42.998253+00 2025-08-04 17:38:42.998263+00 f t Cecilia Miguez ceciliam.miguez@gmail.com 1150159716 \N \N 1988-11-28 -34.5794479 -58.5040849 51 \N \N cmiguez +5878 2025-08-04 17:39:22.555504+00 2025-08-04 17:39:22.555515+00 f t Invitado Amar invitado-1754329162196@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4311 +5879 2025-08-04 17:49:53.169847+00 2025-08-04 17:49:53.169857+00 f t Invitado Amar invitado-1754329790776@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-4312 +5880 2025-08-04 17:55:48.216321+00 2025-08-04 17:55:48.216335+00 f t Invitado Amar invitado-1754330147919@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-4313 +5881 2025-08-04 17:57:07.466352+00 2025-08-04 17:57:07.466367+00 f t Invitado Amar invitado-1754330226824@example.com 55555555 \N \N \N \N \N 54 \N \N iamar-4314 +5882 2025-08-04 18:20:22.494923+00 2025-08-04 18:20:22.494935+00 f t Invitado Amar invitado-1754331621874@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4315 +5883 2025-08-04 18:33:07.127374+00 2025-08-04 18:33:07.127384+00 f t Invitado Amar invitado-1754332386680@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-4316 +5884 2025-08-04 18:51:28.065669+00 2025-08-04 18:51:28.06568+00 f t Invitado Amar invitado-1754333486758@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4317 +5885 2025-08-04 19:47:55.348945+00 2025-08-04 19:47:55.348954+00 f t Invitado Amar invitado-1754336873615@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4318 +5886 2025-08-04 20:05:06.514916+00 2025-08-04 20:05:06.514957+00 f t Dayana Rivero dayanavriverob@gmail.com +541168341848 \N Moldes 2556 5B \N \N -34.5595486 -58.4630943 3 \N \N drivero-2 +5887 2025-08-04 20:16:00.905929+00 2025-08-04 20:16:00.905938+00 f t Invitado Amar invitado-1754338560615@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4319 +5888 2025-08-04 20:17:58.364121+00 2025-08-04 20:17:58.364134+00 f t Invitado Amar invitado-1754338678318@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4320 +5889 2025-08-04 20:22:01.359542+00 2025-08-04 20:22:01.359556+00 f t Laura Segovia segolau75@gmail.com +541123441285 \N Del barco centenera 1823 2 47 \N \N \N -34.6398923 -58.4325627 20 1524 \N lsegovia +5890 2025-08-04 20:29:30.139742+00 2025-08-04 20:29:30.139755+00 f t Invitado Amar invitado-1754339370233@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4321 +5891 2025-08-04 20:29:31.133759+00 2025-08-04 20:29:31.133772+00 f t Invitado Amar invitado-1754339370659@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-4322 +5892 2025-08-04 20:34:37.428033+00 2025-08-04 20:34:37.428042+00 f t Invitado Amar invitado-1754339676653@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-4323 +5893 2025-08-04 20:54:56.571348+00 2025-08-04 20:54:56.571357+00 f t Invitado Amar invitado-1754340896032@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4324 +5894 2025-08-04 21:00:02.5996+00 2025-08-04 21:00:02.599616+00 f t Invitado Amar invitado-1754341201916@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4325 +5895 2025-08-04 21:20:56.792957+00 2025-08-04 21:20:56.792967+00 f t Invitado Amar invitado-1754342456260@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-4326 +5896 2025-08-04 21:31:42.01968+00 2025-08-04 21:31:42.019692+00 f t Invitado Amar invitado-1754343101342@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4327 +5897 2025-08-04 22:33:40.507516+00 2025-08-04 22:33:40.507527+00 f t Invitado Amar invitado-1754346820459@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-4328 +5898 2025-08-04 22:35:16.604001+00 2025-08-04 22:35:16.60401+00 f t Invitado Amar invitado-1754346915803@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4329 +5899 2025-08-04 22:37:58.524369+00 2025-08-04 22:37:58.524379+00 f t Invitado Amar invitado-1754347078134@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-4330 +5900 2025-08-04 22:38:12.04961+00 2025-08-04 22:38:12.049619+00 f t Invitado Amar invitado-1754347091191@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-4331 +5901 2025-08-04 22:40:26.019772+00 2025-08-04 22:40:26.019785+00 f t Invitado Amar invitado-1754347225891@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-4332 +5902 2025-08-04 22:52:28.755098+00 2025-08-04 22:52:28.755113+00 f t Invitado Amar invitado-1754347948082@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-4333 +5903 2025-08-04 23:00:54.924709+00 2025-08-04 23:00:54.924723+00 f t Invitado Amar invitado-1754348549472@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4334 +5904 2025-08-04 23:10:53.674123+00 2025-08-04 23:10:53.674134+00 f t Invitado Amar invitado-1754349053411@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-4335 +5905 2025-08-04 23:27:13.167865+00 2025-08-04 23:27:13.167874+00 f t Invitado Amar invitado-1754350032559@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4336 +5906 2025-08-04 23:29:24.292031+00 2025-08-04 23:29:24.292044+00 f t Invitado Amar invitado-1754350164627@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4337 +5907 2025-08-04 23:52:11.032602+00 2025-08-04 23:52:11.032616+00 f t Invitado Amar invitado-1754351529998@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-4338 +5908 2025-08-05 00:47:20.274289+00 2025-08-05 00:47:20.274299+00 f t Invitado Amar invitado-1754354839634@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4339 +5909 2025-08-05 00:51:18.761628+00 2025-08-05 00:51:18.761639+00 f t Invitado Amar invitado-1754355078405@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4340 +5910 2025-08-05 01:21:09.15323+00 2025-08-05 01:21:09.153245+00 f t Invitado Amar invitado-1754356869471@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-4341 +5911 2025-08-05 01:29:45.110743+00 2025-08-05 01:29:45.110756+00 f t Invitado Amar invitado-1754357384722@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-4342 +5912 2025-08-05 01:41:51.192573+00 2025-08-05 01:41:51.192585+00 f t Marcela Perini marcela_perini@yahoo.com.ar +541131957681 \N Salta 3801 - \N \N \N -34.498676 -58.49349 69 1526 \N mperini +5913 2025-08-05 01:59:52.228256+00 2025-08-05 01:59:52.228273+00 f t Invitado Amar invitado-1754359191390@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-4343 +5914 2025-08-05 02:21:04.032265+00 2025-08-05 02:21:04.032277+00 f t Invitado Amar invitado-1754360463725@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-4344 +5915 2025-08-05 02:22:25.190572+00 2025-08-05 02:22:25.190585+00 f t Invitado Amar invitado-1754360544637@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4345 +5916 2025-08-05 04:19:15.398098+00 2025-08-05 04:19:15.398108+00 f t Invitado Amar invitado-1754367555261@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-4346 +5917 2025-08-05 07:21:56.174233+00 2025-08-05 07:21:56.174243+00 f t Invitado Amar invitado-1754378515343@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4347 +5918 2025-08-05 10:35:33.611329+00 2025-08-05 10:35:33.611344+00 f t Invitado Amar invitado-1754390133915@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-4348 +5919 2025-08-05 10:54:00.428764+00 2025-08-05 10:54:00.428775+00 f t Invitado Amar invitado-1754391240099@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4349 +5920 2025-08-05 10:56:05.663199+00 2025-08-05 10:56:05.66321+00 f t Invitado Amar invitado-1754391365318@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4350 +5921 2025-08-05 11:00:01.355401+00 2025-08-05 11:00:01.355416+00 f t Invitado Amar invitado-1754391602670@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4351 +5922 2025-08-05 11:39:48.876195+00 2025-08-05 11:39:48.87621+00 f t Invitado Amar invitado-1754393988441@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4352 +5923 2025-08-05 11:41:47.751858+00 2025-08-05 11:41:47.751869+00 f t Invitado Amar invitado-1754394107517@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4353 +5924 2025-08-05 11:47:56.240745+00 2025-08-05 11:47:56.240758+00 f t Invitado Amar invitado-1754394476507@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-4354 +5925 2025-08-05 11:53:53.96412+00 2025-08-05 11:53:53.964129+00 f t Vanesa ROSOLEN vanesarosolen39@gmail.com +541561010577 \N Capitan Bermudez 1821 2B \N \N -34.5041046 -58.4986697 39 \N \N vrosolen-2 +5926 2025-08-05 12:11:04.933705+00 2025-08-05 12:11:04.933716+00 f t Invitado Amar invitado-1754395864547@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4355 +5927 2025-08-05 12:11:11.230257+00 2025-08-05 12:11:11.23027+00 f t Invitado Amar invitado-1754395870598@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4356 +5928 2025-08-05 13:03:43.29162+00 2025-08-05 13:03:43.29163+00 f t Invitado Amar invitado-1754399021766@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-4357 +5929 2025-08-05 13:16:54.177922+00 2025-08-05 13:16:54.177931+00 f t Invitado Amar invitado-1754399813281@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4358 +5930 2025-08-05 13:32:44.763721+00 2025-08-05 13:32:44.76373+00 f t Invitado Amar invitado-1754400763802@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-4359 +5931 2025-08-05 14:12:46.864988+00 2025-08-05 14:12:46.865002+00 f t Invitado Amar invitado-1754403166291@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-4360 +5932 2025-08-05 14:17:10.971062+00 2025-08-05 14:17:10.971076+00 f t Invitado Amar invitado-1754403431067@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4361 +5933 2025-08-05 14:24:04.779618+00 2025-08-05 14:24:04.779629+00 f t Invitado Amar invitado-1754403844908@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4362 +5934 2025-08-05 14:45:22.81183+00 2025-08-05 14:45:22.81184+00 f t Invitado Amar invitado-1754405122438@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4363 +5935 2025-08-05 15:06:11.777895+00 2025-08-05 15:06:11.777904+00 f t Invitado Amar invitado-1754407136045@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4364 +5936 2025-08-05 15:12:40.202626+00 2025-08-05 15:12:40.202635+00 f t Invitado Amar invitado-1754406759617@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4365 +5937 2025-08-05 15:20:11.274782+00 2025-08-05 15:20:11.274792+00 f t Invitado Amar invitado-1754407210799@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-4366 +5938 2025-08-05 15:55:42.686749+00 2025-08-05 15:55:42.686758+00 f t Invitado Amar invitado-1754409342007@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-4367 +5939 2025-08-05 16:04:10.544733+00 2025-08-05 16:04:10.544748+00 f t Invitado Amar invitado-1754409849336@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4368 +5940 2025-08-05 16:19:58.00415+00 2025-08-05 16:19:58.004159+00 f t Invitado Amar invitado-1754410797485@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4369 +5941 2025-08-05 18:40:14.394569+00 2025-08-05 18:40:14.394581+00 f t Invitado Amar invitado-1754419212605@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4370 +5942 2025-08-05 19:00:36.861315+00 2025-08-05 19:00:36.861325+00 f t Invitado Amar invitado-1754420435664@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-4371 +5943 2025-08-05 19:14:48.667829+00 2025-08-05 19:14:48.667841+00 f t Jimena Simons simonsjimena@gmail.com +541122506803 \N Sarmiento 1759 1°3 \N \N \N -34.6055266 -58.3915782 13 1527 \N jsimons +5944 2025-08-05 19:34:04.367484+00 2025-08-05 19:34:04.367492+00 f t Invitado Amar invitado-1754422443999@example.com 55555555 \N \N \N \N \N 92 \N \N iamar-4372 +5945 2025-08-05 20:55:31.723895+00 2025-08-05 20:55:31.723904+00 f t Invitado Amar invitado-1754427330350@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4373 +5946 2025-08-05 20:58:44.566191+00 2025-08-05 20:58:44.566205+00 f t Invitado Amar invitado-1754427524248@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-4374 +5947 2025-08-05 20:59:55.698812+00 2025-08-05 20:59:55.698824+00 f t Danny Zavaleta dannyzavaletam@gmail.com +541131599953 \N Pasaje San Ireneo 346 3D \N \N \N \N 14 \N \N dzavaleta +5948 2025-08-05 21:10:20.991864+00 2025-08-05 21:10:20.991877+00 f t Invitado Amar invitado-1754428219826@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4375 +5949 2025-08-05 21:34:59.449947+00 2025-08-05 21:34:59.449956+00 f t Invitado Amar invitado-1754429697977@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-4376 +5950 2025-08-05 21:36:55.212019+00 2025-08-05 21:36:55.212028+00 f t Invitado Amar invitado-1754429815661@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4377 +5951 2025-08-05 21:49:06.417996+00 2025-08-05 21:49:06.418008+00 f t María Cecilia Tiratel cecitiratel@yahoo.com.ar +541164507952 \N Luis Pereyra 154 Casa de rejas negras con 2 pinos altos en la entrada \N \N \N -34.4278391 -58.5728479 22 1545 \N mtiratel +5952 2025-08-05 22:00:11.25209+00 2025-08-05 22:00:11.252103+00 f t Invitado Amar invitado-1754431210471@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-4378 +5953 2025-08-05 22:23:34.537122+00 2025-08-05 22:23:34.537134+00 f t Invitado Amar invitado-1754432614183@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4379 +5954 2025-08-05 22:29:43.786007+00 2025-08-05 22:29:43.786016+00 f t Invitado Amar invitado-1754432984244@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-4380 +5955 2025-08-05 22:33:49.846545+00 2025-08-05 22:33:49.846553+00 f t Invitado Amar invitado-1754433230495@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-4381 +5956 2025-08-05 22:43:37.401277+00 2025-08-05 22:43:37.401288+00 f t Invitado Amar invitado-1754433817347@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4382 +5957 2025-08-05 22:45:54.18204+00 2025-08-05 22:45:54.182052+00 f t Invitado Amar invitado-1754433954288@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4383 +5958 2025-08-05 23:13:41.279835+00 2025-08-05 23:13:41.279847+00 f t Invitado Amar invitado-1754435620406@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4384 +5959 2025-08-05 23:14:03.223736+00 2025-08-05 23:14:03.223748+00 f t Invitado Amar invitado-1754435642832@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4385 +5960 2025-08-05 23:25:17.297649+00 2025-08-05 23:25:17.297662+00 f t Invitado Amar invitado-1754436316848@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-4386 +5961 2025-08-05 23:27:17.705836+00 2025-08-05 23:27:17.705844+00 f t Invitado Amar invitado-1754436436873@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-4387 +5962 2025-08-05 23:28:16.066848+00 2025-08-05 23:28:16.066857+00 f t Invitado Amar invitado-1754436495500@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-4388 +5963 2025-08-05 23:29:14.002277+00 2025-08-05 23:29:14.002289+00 f t Invitado Amar invitado-1754436555713@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-4389 +5964 2025-08-05 23:42:45.777848+00 2025-08-05 23:42:45.777861+00 f t Invitado Amar invitado-1754437364683@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4390 +5965 2025-08-06 00:17:39.020244+00 2025-08-06 00:17:39.020258+00 f t Invitado Amar invitado-1754439458636@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-4391 +5966 2025-08-06 00:29:08.839297+00 2025-08-06 00:29:08.839306+00 f t Invitado Amar invitado-1754440147769@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-4392 +5967 2025-08-06 00:32:45.471097+00 2025-08-06 00:32:45.471106+00 f t Grecia Troconiz troconizgrecia@gmail.com +541168360485 \N Godoy Cruz 1514 1-A \N \N \N -34.5886753 -58.4360011 1 1530 \N gtroconiz +5968 2025-08-06 02:04:31.242502+00 2025-08-06 02:04:31.242515+00 f t Invitado Amar invitado-1754445870328@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4393 +5969 2025-08-06 03:40:09.879243+00 2025-08-06 03:40:09.879257+00 f t Invitado Amar invitado-1754451607234@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-4394 +5970 2025-08-06 03:49:02.54304+00 2025-08-06 03:49:02.543053+00 f t Invitado Amar invitado-1754452142109@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-4395 +5971 2025-08-06 03:54:46.768735+00 2025-08-06 03:54:46.768743+00 f t Pedro Lopez jgonipiuma@gmail.com +5461120089 \N Ohiggins 2059 5 \N \N -33.1362903 -64.3566387 3 \N \N plopez +5972 2025-08-06 03:58:44.941983+00 2025-08-06 03:58:44.941995+00 f t Invitado Amar invitado-1754452724247@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4396 +5973 2025-08-06 04:50:09.695082+00 2025-08-06 04:50:09.695096+00 f t Invitado Amar invitado-1754455807803@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4397 +5974 2025-08-06 10:37:06.447471+00 2025-08-06 10:37:06.447485+00 f t Invitado Amar invitado-1754476626096@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4398 +5975 2025-08-06 11:35:03.692959+00 2025-08-06 11:35:03.692974+00 f t Invitado Amar invitado-1754480103818@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-4399 +5976 2025-08-06 11:42:24.680035+00 2025-08-06 11:42:24.680047+00 f t Invitado Amar invitado-1754480543952@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4400 +5977 2025-08-06 11:49:53.103703+00 2025-08-06 11:49:53.103712+00 f t Invitado Amar invitado-1754480993438@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-4401 +5978 2025-08-06 11:54:57.324893+00 2025-08-06 11:54:57.324904+00 f t Invitado Amar invitado-1754481297837@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-4402 +5979 2025-08-06 11:56:25.565471+00 2025-08-06 11:56:25.565482+00 f t Invitado Amar invitado-1754481384767@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4403 +5980 2025-08-06 12:08:30.853656+00 2025-08-06 12:08:30.853665+00 f t Invitado Amar invitado-1754482110414@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4404 +5981 2025-08-06 12:32:58.36212+00 2025-08-06 12:32:58.362128+00 f t Invitado Amar invitado-1754483577950@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4405 +5982 2025-08-06 12:35:25.180024+00 2025-08-06 12:35:25.180036+00 f t Invitado Amar invitado-1754483724733@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4406 +5983 2025-08-06 13:12:27.28322+00 2025-08-06 13:12:27.283234+00 f t Invitado Amar invitado-1754485946370@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-4407 +5984 2025-08-06 13:27:45.895088+00 2025-08-06 13:27:45.8951+00 f t Invitado Amar invitado-1754486865602@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4408 +5985 2025-08-06 13:43:53.19255+00 2025-08-06 13:43:53.192559+00 f t Paz Pallotta ppallotta002@gmail.com +541139035962 \N Luis maria campos 134 2C \N \N \N -34.7247287 -58.2974277 1 1533 \N ppallotta +5986 2025-08-06 14:07:13.529961+00 2025-08-06 14:07:13.52997+00 f t Invitado Amar invitado-1754489233129@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4409 +5987 2025-08-06 14:32:08.708671+00 2025-08-06 14:32:08.708684+00 f t Natalia Prodan natyprodan@gmail.com +541150036581 \N Rafael Hernandez 2737 Casa. Barrio Belgrano, zona estadio de River. \N \N \N -34.5500786 -58.4492881 3 1534 \N nprodan +5988 2025-08-06 15:15:23.042023+00 2025-08-06 15:15:23.042037+00 f t Invitado Amar invitado-1754493323443@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-4410 +5989 2025-08-06 15:29:41.017406+00 2025-08-06 15:29:41.017419+00 f t Invitado Amar invitado-1754494181939@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4411 +5990 2025-08-06 15:52:36.550431+00 2025-08-06 15:52:36.550439+00 f t Invitado Amar invitado-1754495555915@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-4412 +5991 2025-08-06 16:08:38.675535+00 2025-08-06 16:08:38.675547+00 f t Invitado Amar invitado-1754496517920@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4413 +5992 2025-08-06 16:25:20.620125+00 2025-08-06 16:25:20.620138+00 f t Invitado Amar invitado-1754497520482@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-4414 +5993 2025-08-06 16:34:11.832105+00 2025-08-06 16:34:11.832119+00 f t Invitado Amar invitado-1754498051479@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4415 +5994 2025-08-06 16:35:15.966344+00 2025-08-06 16:35:15.966356+00 f t Invitado Amar invitado-1754498115847@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4416 +5995 2025-08-06 16:40:51.695809+00 2025-08-06 16:40:51.695821+00 f t Invitado Amar invitado-1754498451081@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-4417 +5996 2025-08-06 17:14:21.96975+00 2025-08-06 17:14:21.969761+00 f t Invitado Amar invitado-1754500461615@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4418 +5997 2025-08-06 17:31:03.132536+00 2025-08-06 17:31:03.132545+00 f t Thiago Werbach thiagolmgsm@gmail.com +541163367161 \N Azcuénaga 663 3 C \N \N \N -34.6015702 -58.4008817 18 1535 \N twerbach +5998 2025-08-06 17:56:10.183305+00 2025-08-06 17:56:10.183318+00 f t Invitado Amar invitado-1754502970854@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4419 +5999 2025-08-06 17:59:29.637865+00 2025-08-06 17:59:29.637878+00 f t Invitado Amar invitado-1754503168849@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4420 +6000 2025-08-06 18:12:35.374689+00 2025-08-06 18:12:35.374699+00 f t Invitado Amar invitado-1754503952476@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4421 +6001 2025-08-06 18:16:34.457629+00 2025-08-06 18:16:34.457642+00 f t Invitado Amar invitado-1754504194326@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4422 +6002 2025-08-06 18:28:54.58308+00 2025-08-06 18:28:54.583089+00 f t Invitado Amar invitado-1754504932496@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4423 +6003 2025-08-06 18:33:37.596641+00 2025-08-06 18:33:37.59665+00 f t Invitado Amar invitado-1754505215792@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4424 +6004 2025-08-06 18:35:11.520246+00 2025-08-06 18:35:11.520259+00 f t Invitado Amar invitado-1754505309967@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4425 +6005 2025-08-06 18:36:08.173427+00 2025-08-06 18:36:08.17344+00 f t Invitado Amar invitado-1754505367502@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-4426 +6006 2025-08-06 18:42:56.33679+00 2025-08-06 18:42:56.336798+00 f t Invitado Amar invitado-1754505775894@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-4427 +6007 2025-08-06 18:43:11.429446+00 2025-08-06 18:43:11.429457+00 f t Invitado Amar invitado-1754505791159@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-4428 +6008 2025-08-06 18:52:07.582048+00 2025-08-06 18:52:07.582061+00 f t Invitado Amar invitado-1754506327319@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4429 +6009 2025-08-06 19:20:07.114746+00 2025-08-06 19:20:07.11476+00 f t Invitado Amar invitado-1754508007468@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4430 +6010 2025-08-06 19:36:15.931115+00 2025-08-06 19:36:15.931128+00 f t Invitado Amar invitado-1754508976013@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4431 +6011 2025-08-06 19:38:43.944276+00 2025-08-06 19:38:43.944288+00 f t Invitado Amar invitado-1754509123605@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-4432 +6012 2025-08-06 19:41:56.83739+00 2025-08-06 19:41:56.8374+00 f t Invitado Amar invitado-1754509316555@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4433 +6013 2025-08-06 19:45:31.544043+00 2025-08-06 19:45:31.544055+00 f t Invitado Amar invitado-1754509529962@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-4434 +6014 2025-08-06 19:47:01.954849+00 2025-08-06 19:47:01.954864+00 f t Invitado Amar invitado-1754509620785@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-4435 +6015 2025-08-06 19:56:02.094763+00 2025-08-06 19:56:02.094777+00 f t Invitado Amar invitado-1754510161613@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4436 +6016 2025-08-06 20:14:38.114541+00 2025-08-06 20:14:38.114553+00 f t Invitado Amar invitado-1754511277919@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4437 +6017 2025-08-06 20:15:36.346501+00 2025-08-06 20:15:36.346513+00 f t Invitado Amar invitado-1754511335996@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-4438 +6018 2025-08-06 20:16:43.409916+00 2025-08-06 20:16:43.409923+00 f t Gerardo lorenzo gera.mlorenzo@gmail.com 5491151626260 \N Pasaje treveris 2588 pb 1 \N MALE \N \N \N 61 1531 \N glorenzo +6019 2025-08-06 20:25:31.444081+00 2025-08-06 20:25:31.444091+00 f t julieta bogado julieta.bogado@hotmail.com 5491137785711 \N colombres 2352 \N \N FEMALE 1989-02-24 -34.7604401 -58.4282128 71 1532 \N jbogado +6020 2025-08-06 20:31:07.857667+00 2025-08-06 20:31:07.85768+00 f t Invitado Amar invitado-1754512267379@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-4439 +6021 2025-08-06 20:44:18.343649+00 2025-08-06 20:44:18.343662+00 f t Invitado Amar invitado-1754513057166@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4440 +6022 2025-08-06 20:51:25.514344+00 2025-08-06 20:51:25.514351+00 f t Carlos Daniel flores carlisflo15@gmail.com 5492216775113 \N murguiondo 1543 \N \N MALE 1998-09-14 -34.6531759 -58.5054709 19 1536 \N cflores +6023 2025-08-06 20:55:47.135249+00 2025-08-06 20:55:47.135258+00 f t Meza Maria Eugenia eugemeza22@gmail.com 5491160051080 \N Tte juan domingo peron 4227 7J \N FEMALE 1993-01-22 \N \N 23 1537 \N meugenia +6024 2025-08-06 21:02:06.163394+00 2025-08-06 21:02:06.163405+00 f t Mathias Gabriel Huelmo Olavarria mathiasgabriel0011@gmail.com 5491133471740 \N Cochabamba 2977 \N \N MALE 1994-01-25 -34.6257973 -58.4065534 112 1538 \N mhuelmoolavarria +6025 2025-08-06 21:02:09.902713+00 2025-08-06 21:02:09.902726+00 f t Invitado Amar invitado-1754514129201@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-4441 +6026 2025-08-06 21:06:09.586088+00 2025-08-06 21:06:09.586101+00 f t Brenda González brendgonzalez7@hotmail.com +541131736091 \N Filardi 657 \N \N -34.7240206 -58.4303989 72 \N \N bgonzalez +6027 2025-08-06 21:24:08.855351+00 2025-08-06 21:24:08.855365+00 f t Invitado Amar invitado-1754515448244@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4442 +6028 2025-08-06 22:11:28.620756+00 2025-08-06 22:11:28.62077+00 f t Invitado Amar invitado-1754518288213@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-4443 +6029 2025-08-06 22:39:42.559888+00 2025-08-06 22:39:42.5599+00 f t Invitado Amar invitado-1754519982165@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4444 +6030 2025-08-06 22:41:47.018401+00 2025-08-06 22:41:47.018411+00 f t Invitado Amar invitado-1754520106577@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4445 +6031 2025-08-06 22:53:15.249727+00 2025-08-06 22:53:15.249736+00 f t Invitado Amar invitado-1754520794845@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4446 +6032 2025-08-06 22:59:20.030043+00 2025-08-06 22:59:20.030055+00 f t Invitado Amar invitado-1754521159904@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-4447 +6033 2025-08-06 23:06:59.311023+00 2025-08-06 23:06:59.31103+00 f t Patricia Celeste Leiva pacele16@hotmail.com +5491164400247 \N Gaona 2673 9 D \N FEMALE 1985-12-24 -34.6108611 -58.4526168 14 1539 \N pleiva +6034 2025-08-06 23:17:03.916693+00 2025-08-06 23:17:03.916702+00 f t Moises Palacio moisespalacios1942@gmail.com +5491155956621 \N bogado 4562 \N \N MALE \N -34.6050622 -58.429928 23 1540 \N mpalacio +6035 2025-08-06 23:22:47.30451+00 2025-08-06 23:22:47.30452+00 f t Agustina Vizzolini agusvizzolini@hotmail.com 🇦🇷+5491149352183 \N Avenida Callao 1497 10B \N FEMALE \N -34.5918972 -58.3918765 9 1541 \N avizzolini +6036 2025-08-06 23:29:23.805002+00 2025-08-06 23:29:23.805015+00 f t Invitado Amar invitado-1754522963010@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4448 +6037 2025-08-06 23:34:11.396994+00 2025-08-06 23:34:11.397011+00 f t Invitado Amar invitado-1754523250712@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-4449 +6038 2025-08-07 00:09:04.860063+00 2025-08-07 00:09:04.860076+00 f t Invitado Amar invitado-1754525344192@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4450 +6039 2025-08-07 00:44:55.115482+00 2025-08-07 00:44:55.115495+00 f t Invitado Amar invitado-1754527494771@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-4451 +6040 2025-08-07 00:55:21.069116+00 2025-08-07 00:55:21.069129+00 f t Invitado Amar invitado-1754528120394@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4452 +6041 2025-08-07 01:14:47.020564+00 2025-08-07 01:14:47.020576+00 f t Ezequiel Crovi ezequielcrovi@gmail.com +5491125874748 \N Tres arroyos 2903 Casa \N \N -34.6174943 -58.476908 41 \N \N ecrovi +6042 2025-08-07 02:31:46.865393+00 2025-08-07 02:31:46.865402+00 f t Invitado Amar invitado-1754533908381@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4453 +6043 2025-08-07 03:06:00.585664+00 2025-08-07 03:06:00.585676+00 f t Invitado Amar invitado-1754535959876@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4454 +6044 2025-08-07 03:08:01.657414+00 2025-08-07 03:08:01.65743+00 f t Invitado Amar invitado-1754536083222@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4455 +6045 2025-08-07 03:29:02.265448+00 2025-08-07 03:29:02.265461+00 f t Invitado Amar invitado-1754537341826@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4456 +6046 2025-08-07 03:29:39.249884+00 2025-08-07 03:29:39.249893+00 f t Invitado Amar invitado-1754537378901@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4457 +6047 2025-08-07 03:29:39.512233+00 2025-08-07 03:29:39.512245+00 f t Invitado Amar invitado-1754537378688@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4458 +6048 2025-08-07 03:34:17.336778+00 2025-08-07 03:34:17.336788+00 f t Invitado Amar invitado-1754537657184@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4459 +6049 2025-08-07 03:50:06.527597+00 2025-08-07 03:50:06.527611+00 f t Invitado Amar invitado-1754538606318@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-4460 +6050 2025-08-07 05:46:40.279512+00 2025-08-07 05:46:40.279522+00 f t Invitado Amar invitado-1754545599737@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4461 +6051 2025-08-07 05:52:21.568922+00 2025-08-07 05:52:21.568935+00 f t Invitado Amar invitado-1754545940829@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-4462 +6052 2025-08-07 10:36:41.71799+00 2025-08-07 10:36:41.717999+00 f t Invitado Amar invitado-1754563001186@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4463 +6053 2025-08-07 11:55:46.281822+00 2025-08-07 11:55:46.281833+00 f t Invitado Amar invitado-1754567745864@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-4464 +6054 2025-08-07 12:24:15.592681+00 2025-08-07 12:24:15.592692+00 f t Invitado Amar invitado-1754569454630@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-4465 +6055 2025-08-07 12:37:56.099693+00 2025-08-07 12:37:56.099708+00 f t Invitado Amar invitado-1754570274910@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4466 +6056 2025-08-07 12:39:46.803767+00 2025-08-07 12:39:46.80378+00 f t Norma Zanassi normazanassi@gmail.com +5491122558728 \N Filardi 657 \N \N -34.7240206 -58.4303989 72 \N \N nzanassi +6057 2025-08-07 12:41:03.25021+00 2025-08-07 12:41:03.25022+00 f t Invitado Amar invitado-1754570462941@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4467 +6058 2025-08-07 12:46:39.485872+00 2025-08-07 12:46:39.485883+00 f t Facundo Ayala fmayala.fa@gmail.com +541162064113 \N Mendoza 1853 1 b \N \N -34.5580405 -58.4525252 3 \N \N fayala +6059 2025-08-07 12:51:32.639693+00 2025-08-07 12:51:32.639706+00 f t Invitado Amar invitado-1754571091827@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4468 +6060 2025-08-07 12:53:19.556885+00 2025-08-07 12:53:19.556895+00 f t Invitado Amar invitado-1754571198949@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4469 +6061 2025-08-07 12:58:55.524963+00 2025-08-07 12:58:55.524972+00 f t Invitado Amar invitado-1754571534955@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4470 +6062 2025-08-07 13:12:26.374632+00 2025-08-07 13:12:26.374645+00 f t Invitado Amar invitado-1754572345665@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4471 +6063 2025-08-07 13:12:58.994308+00 2025-08-07 13:12:58.99432+00 f t Invitado Amar invitado-1754572378675@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4472 +6064 2025-08-07 13:16:41.90077+00 2025-08-07 13:16:41.900782+00 f t Invitado Amar invitado-1754572601051@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4473 +6065 2025-08-07 13:17:15.514273+00 2025-08-07 13:17:15.514282+00 f t Invitado Amar invitado-1754572635380@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4474 +6066 2025-08-07 13:18:56.605379+00 2025-08-07 13:18:56.605391+00 f t Invitado Amar invitado-1754572736281@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4475 +6067 2025-08-07 13:23:08.256051+00 2025-08-07 13:23:08.256062+00 f t Invitado Amar invitado-1754572987074@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-4476 +6068 2025-08-07 13:23:46.027796+00 2025-08-07 13:23:46.027805+00 f t Invitado Amar invitado-1754573025169@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4477 +6069 2025-08-07 13:39:55.245765+00 2025-08-07 13:39:55.245775+00 f t Invitado Amar invitado-1754573993533@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4478 +6070 2025-08-07 14:18:02.307917+00 2025-08-07 14:18:02.307931+00 f t Invitado Amar invitado-1754576282811@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4479 +6071 2025-08-07 14:19:15.889048+00 2025-08-07 14:19:15.889061+00 f t Invitado Amar invitado-1754576355289@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-4480 +6072 2025-08-07 16:12:57.885836+00 2025-08-07 16:12:57.885845+00 f t Silvina Alonso sil.alonso74@gmail.com +5491124731465 \N Madero 726 B \N \N -34.630022 -58.5267357 62 \N \N salonso +6073 2025-08-07 16:13:49.939841+00 2025-08-07 16:13:49.939854+00 f t Invitado Amar invitado-1754583229318@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-4481 +6074 2025-08-07 16:57:27.743342+00 2025-08-07 16:57:27.743351+00 f t Invitado Amar invitado-1754585800371@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4482 +6075 2025-08-07 17:16:55.670792+00 2025-08-07 17:16:55.670801+00 f t Invitado Amar invitado-1754587015068@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4483 +6076 2025-08-07 17:26:33.830185+00 2025-08-07 17:26:33.830195+00 f t Invitado Amar invitado-1754587593007@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-4484 +6077 2025-08-07 17:37:10.922109+00 2025-08-07 17:37:10.922123+00 f t Invitado Amar invitado-1754588230285@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-4485 +6078 2025-08-07 17:42:24.463304+00 2025-08-07 17:42:24.463317+00 f t Invitado Amar invitado-1754588543856@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4486 +6079 2025-08-07 17:42:57.087402+00 2025-08-07 17:42:57.087411+00 f t Invitado Amar invitado-1754588576968@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-4487 +6080 2025-08-07 17:44:57.262793+00 2025-08-07 17:44:57.262806+00 f t Invitado Amar invitado-1754588697496@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4488 +6081 2025-08-07 18:01:25.870758+00 2025-08-07 18:01:25.870772+00 f t Invitado Amar invitado-1754589685803@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4489 +6082 2025-08-07 18:05:18.560055+00 2025-08-07 18:05:18.560064+00 f t Invitado Amar invitado-1754589917887@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4490 +6083 2025-08-07 18:52:06.501981+00 2025-08-07 18:52:06.501991+00 f t Invitado Amar invitado-1754592726013@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4491 +6084 2025-08-07 19:35:59.618675+00 2025-08-07 19:35:59.618684+00 f t Máximo Da Rocha 9999@gmail.com 🇦🇷+5491167973810 \N Bustamante 731 2do B \N MALE \N -34.6017961 -58.4140467 23 1544 \N mdarocha +6085 2025-08-07 19:56:01.682718+00 2025-08-07 19:56:01.682732+00 f t Invitado Amar invitado-1754596561652@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-4492 +6086 2025-08-07 20:19:56.508069+00 2025-08-07 20:19:56.508079+00 f t Invitado Amar invitado-1754597995905@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4493 +6087 2025-08-07 21:00:18.455286+00 2025-08-07 21:00:18.455299+00 f t Invitado Amar invitado-1754600417702@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4494 +6088 2025-08-07 21:12:36.983796+00 2025-08-07 21:12:36.983807+00 f t Invitado Amar invitado-1754601158795@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4495 +6089 2025-08-07 22:36:15.536683+00 2025-08-07 22:36:15.536696+00 f t Invitado Amar invitado-1754606173444@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4496 +6090 2025-08-07 23:15:42.310268+00 2025-08-07 23:15:42.310276+00 f t Claudi Carpis clau@gmail.com +5492215082822 \N 37 231 231 \N \N 49.9133124 22.2929816 147 \N \N ccarpis +6091 2025-08-08 00:13:36.014641+00 2025-08-08 00:13:36.014654+00 f t Invitado Amar invitado-1754612015710@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-4497 +6092 2025-08-08 00:24:17.593501+00 2025-08-08 00:24:17.593514+00 f t Invitado Amar invitado-1754612657099@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4498 +6093 2025-08-08 00:27:59.883005+00 2025-08-08 00:27:59.883016+00 f t Invitado Amar invitado-1754612879321@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4499 +6094 2025-08-08 00:45:52.443438+00 2025-08-08 00:45:52.443446+00 f t Invitado Amar invitado-1754613951911@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4500 +6095 2025-08-08 00:51:39.453034+00 2025-08-08 00:51:39.453044+00 f t Invitado Amar invitado-1754614298939@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-4501 +6096 2025-08-08 01:15:10.738026+00 2025-08-08 01:15:10.738039+00 f t Invitado Amar invitado-1754615709633@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4502 +6097 2025-08-08 01:18:38.193554+00 2025-08-08 01:18:38.193563+00 f t Invitado Amar invitado-1754615916224@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-4503 +6098 2025-08-08 01:24:38.269828+00 2025-08-08 01:24:38.269841+00 f t Invitado Amar invitado-1754616276610@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-4504 +6099 2025-08-08 02:10:03.877887+00 2025-08-08 02:10:03.877904+00 f t Invitado Amar invitado-1754619002260@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4505 +6100 2025-08-08 02:33:36.00558+00 2025-08-08 02:33:36.005591+00 f t Invitado Amar invitado-1754620415545@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-4506 +6101 2025-08-08 02:42:16.283797+00 2025-08-08 02:42:16.283806+00 f t Invitado Amar invitado-1754620935588@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-4507 +6102 2025-08-08 02:54:48.750986+00 2025-08-08 02:54:48.750997+00 f t Invitado Amar invitado-1754621688470@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-4508 +6103 2025-08-08 02:58:14.218234+00 2025-08-08 02:58:14.218248+00 f t Invitado Amar invitado-1754621893800@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-4509 +6104 2025-08-08 03:15:51.963181+00 2025-08-08 03:15:51.963192+00 f t Invitado Amar invitado-1754622950933@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4510 +6105 2025-08-08 03:49:27.552468+00 2025-08-08 03:49:27.552478+00 f t Invitado Amar invitado-1754624966027@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4511 +6106 2025-08-08 05:26:25.633016+00 2025-08-08 05:26:25.633026+00 f t Invitado Amar invitado-1754630785449@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-4512 +6107 2025-08-08 05:50:52.845279+00 2025-08-08 05:50:52.845288+00 f t Invitado Amar invitado-1754632252583@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-4513 +6108 2025-08-08 07:45:10.060905+00 2025-08-08 07:45:10.060914+00 f t Invitado Amar invitado-1754639109163@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4514 +6109 2025-08-08 07:58:21.360218+00 2025-08-08 07:58:21.360227+00 f t Invitado Amar invitado-1754639900010@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-4515 +6110 2025-08-08 08:14:29.134882+00 2025-08-08 08:14:29.134891+00 f t Invitado Amar invitado-1754640870242@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4516 +6111 2025-08-08 08:45:15.131413+00 2025-08-08 08:45:15.131424+00 f t Invitado Amar invitado-1754642714688@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-4517 +6112 2025-08-08 09:02:19.628418+00 2025-08-08 09:02:19.628429+00 f t Invitado Amar invitado-1754643739233@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-4518 +6113 2025-08-08 10:18:56.801884+00 2025-08-08 10:18:56.801892+00 f t Invitado Amar invitado-1754648336224@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-4519 +6114 2025-08-08 10:49:45.062807+00 2025-08-08 10:49:45.062815+00 f t Invitado Amar invitado-1754650184737@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-4520 +6115 2025-08-08 12:02:06.579742+00 2025-08-08 12:02:06.579751+00 f t Invitado Amar invitado-1754654525982@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-4521 +6116 2025-08-08 12:11:00.893293+00 2025-08-08 12:11:00.893303+00 f t Angel Molokh molox1488@gmail.com +541176091754 \N Andres Lamas 1163 \N \N -34.6147171 -58.4633101 63 \N \N amolokh +6117 2025-08-08 12:43:37.032812+00 2025-08-08 12:43:37.032825+00 f t Invitado Amar invitado-1754657017364@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4522 +6118 2025-08-08 12:48:16.709888+00 2025-08-08 12:48:16.709896+00 f t Patricia Blanc lapatas@aol.com +525540554783 \N Av Alvear 1399 11 \N \N -34.5908788 -58.3840699 9 \N \N pblanc +6119 2025-08-08 13:02:38.998882+00 2025-08-08 13:02:38.998891+00 f t Invitado Amar invitado-1754658157865@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4523 +6120 2025-08-08 13:03:35.024714+00 2025-08-08 13:03:35.024727+00 f t Invitado Amar invitado-1754658214684@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4524 +6121 2025-08-08 13:56:29.099274+00 2025-08-08 13:56:29.099289+00 f t Invitado Amar invitado-1754661388548@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4525 +6122 2025-08-08 13:59:15.853655+00 2025-08-08 13:59:15.853668+00 f t Invitado Amar invitado-1754661555761@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4526 +6123 2025-08-08 14:05:41.680803+00 2025-08-08 14:05:41.680812+00 f t Invitado Amar invitado-1754661940963@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4527 +6124 2025-08-08 14:10:23.004574+00 2025-08-08 14:10:23.004586+00 f t Invitado Amar invitado-1754662223200@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4528 +6125 2025-08-08 14:13:31.870491+00 2025-08-08 14:13:31.870504+00 f t Invitado Amar invitado-1754662411593@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-4529 +6126 2025-08-08 14:15:20.088425+00 2025-08-08 14:15:20.088436+00 f t Invitado Amar invitado-1754662519509@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4530 +6127 2025-08-08 14:25:51.141751+00 2025-08-08 14:25:51.14176+00 f t Invitado Amar invitado-1754663150612@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4531 +6128 2025-08-08 14:26:23.792595+00 2025-08-08 14:26:23.792605+00 f t Rocio Soler rociosoler.mua@gmail.com +541158897763 \N Hipolito Irigoyen 4247 Casa puerta con mango de guitarra \N \N -30.7992176 -60.5860205 87 \N \N rsoler +6129 2025-08-08 14:40:35.118311+00 2025-08-08 14:40:35.118323+00 f t Invitado Amar invitado-1754664035003@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4532 +6130 2025-08-08 14:43:28.846563+00 2025-08-08 14:43:28.846575+00 f t Invitado Amar invitado-1754664208713@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4533 +6131 2025-08-08 14:50:16.255844+00 2025-08-08 14:50:16.255857+00 f t Andres schiefer andres.schiefer@gmail.com +541134928557 \N Avenida Alvear 1399 11 \N \N -34.5908788 -58.3840699 9 \N \N aschiefer +6132 2025-08-08 14:54:30.822827+00 2025-08-08 14:54:30.822838+00 f t Invitado Amar invitado-1754664836867@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-4534 +6133 2025-08-08 14:58:06.519643+00 2025-08-08 14:58:06.519657+00 f t Invitado Amar invitado-1754665085703@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4535 +6134 2025-08-08 15:04:11.058722+00 2025-08-08 15:04:11.058735+00 f t Maria Esther Kilduff kilduffmariaesther@gmsil.com +541155849020 \N Rosario 814 17 c \N \N -34.6206127 -58.4400142 14 \N \N mkilduff +6135 2025-08-08 15:25:12.178124+00 2025-08-08 15:25:12.178133+00 f t Invitado Amar invitado-1754666711857@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-4536 +6136 2025-08-08 15:32:54.10371+00 2025-08-08 15:32:54.103722+00 f t Invitado Amar invitado-1754667173761@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-4537 +6137 2025-08-08 15:44:24.182095+00 2025-08-08 15:44:24.182107+00 f t Invitado Amar invitado-1754667863922@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4538 +6138 2025-08-08 15:55:09.807641+00 2025-08-08 15:55:09.807656+00 f t Invitado Amar invitado-1754668509231@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-4539 +6139 2025-08-08 15:55:21.86796+00 2025-08-08 15:55:21.867973+00 f t Invitado Amar invitado-1754668521828@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4540 +6140 2025-08-08 15:56:58.508144+00 2025-08-08 15:56:58.508157+00 f t Invitado Amar invitado-1754668618345@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-4541 +6141 2025-08-08 16:09:24.689528+00 2025-08-08 16:09:24.689539+00 f t Invitado Amar invitado-1754669364296@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4542 +6142 2025-08-08 16:12:32.201621+00 2025-08-08 16:12:32.201629+00 f t Invitado Amar invitado-1754669551770@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4543 +6143 2025-08-08 16:18:52.674225+00 2025-08-08 16:18:52.674238+00 f t Invitado Amar invitado-1754669932398@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4544 +6144 2025-08-08 17:03:41.020598+00 2025-08-08 17:03:41.020607+00 f t Invitado Amar invitado-1754672621919@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-4545 +6145 2025-08-08 17:11:21.363656+00 2025-08-08 17:11:21.363665+00 f t Invitado Amar invitado-1754673079383@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4546 +6146 2025-08-08 17:49:33.349064+00 2025-08-08 17:49:33.349074+00 f t Invitado Amar invitado-1754675372938@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4547 +6147 2025-08-08 18:27:32.46681+00 2025-08-08 18:27:32.466822+00 f t Invitado Amar invitado-1754677651747@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4548 +6148 2025-08-08 18:33:58.900932+00 2025-08-08 18:33:58.90094+00 f t Invitado Amar invitado-1754678038812@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-4549 +6149 2025-08-08 18:41:10.125459+00 2025-08-08 18:41:10.125472+00 f t Invitado Amar invitado-1754678470180@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-4550 +6150 2025-08-08 19:03:02.150997+00 2025-08-08 19:03:02.151012+00 f t Invitado Amar invitado-1754679783161@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4551 +6151 2025-08-08 19:06:06.52614+00 2025-08-08 19:06:06.526153+00 f t Invitado Amar invitado-1754679968062@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4552 +6152 2025-08-08 19:13:56.417615+00 2025-08-08 19:13:56.417624+00 f t Invitado Amar invitado-1754680437796@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4553 +6153 2025-08-08 20:45:07.485214+00 2025-08-08 20:45:07.485227+00 f t Invitado Amar invitado-1754685906881@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-4554 +6154 2025-08-08 20:56:12.87119+00 2025-08-08 20:56:12.8712+00 f t Franco Mansilla franmifit@outlook.com 5491123420372 \N Simon de iriondo 3347 \N \N MALE \N -34.4588779 -58.5519451 74 1549 \N fmansilla +6155 2025-08-08 21:02:52.360496+00 2025-08-08 21:02:52.360505+00 f t Invitado Amar invitado-1754686972005@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4555 +6156 2025-08-08 21:02:58.600737+00 2025-08-08 21:02:58.600748+00 f t Magali Nogureras magalinogueras@hotmail.com 5491168084118 \N av. cordoba 5467 8A cp: 1414 \N FEMALE 1987-10-04 -34.5882416 -58.4389695 1 1550 \N mnogureras +6157 2025-08-08 21:07:15.127739+00 2025-08-08 21:07:15.127748+00 f t Invitado Amar invitado-1754687234999@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4556 +6158 2025-08-08 21:07:57.027991+00 2025-08-08 21:07:57.028006+00 f t Invitado Amar invitado-1754687274426@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-4557 +6159 2025-08-08 21:08:02.699826+00 2025-08-08 21:08:02.699837+00 f t Mariana Paredes marparedes1301@gmail.com 5491157211059 \N Neuquen 2908 esquina Nazca-6 A \N FEMALE 1971-10-29 -34.6213238 -58.4741076 4 1551 \N mparedes +6160 2025-08-08 21:13:59.378964+00 2025-08-08 21:13:59.378977+00 f t Invitado Amar invitado-1754687638814@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4558 +6161 2025-08-08 21:26:08.063041+00 2025-08-08 21:26:08.063054+00 f t Invitado Amar invitado-1754688368222@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-4559 +6162 2025-08-08 21:35:01.746735+00 2025-08-08 21:35:01.746749+00 f t Invitado Amar invitado-1754688901913@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-4560 +6163 2025-08-08 22:16:36.428155+00 2025-08-08 22:16:36.428167+00 f t Invitado Amar invitado-1754691395860@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4561 +6164 2025-08-08 23:10:14.929892+00 2025-08-08 23:10:14.929904+00 f t Invitado Amar invitado-1754694614529@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4562 +6165 2025-08-08 23:39:38.2854+00 2025-08-08 23:39:38.285413+00 f t Invitado Amar invitado-1754696379541@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-4563 +6166 2025-08-09 00:04:56.256176+00 2025-08-09 00:04:56.256189+00 f t Invitado Amar invitado-1754697894869@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4564 +6167 2025-08-09 00:21:48.941808+00 2025-08-09 00:21:48.941817+00 f t Invitado Amar invitado-1754698908503@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-4565 +6168 2025-08-09 00:32:48.576026+00 2025-08-09 00:32:48.576036+00 f t Invitado Amar invitado-1754699568341@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4566 +6169 2025-08-09 00:46:07.829416+00 2025-08-09 00:46:07.829428+00 f t Invitado Amar invitado-1754700367128@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4567 +6170 2025-08-09 00:46:55.801491+00 2025-08-09 00:46:55.8015+00 f t Invitado Amar invitado-1754700414971@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4568 +6171 2025-08-09 01:00:15.236023+00 2025-08-09 01:00:15.236035+00 f t Invitado Amar invitado-1754701213065@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4569 +6172 2025-08-09 01:01:50.442043+00 2025-08-09 01:01:50.442054+00 f t Invitado Amar invitado-1754701308965@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4570 +6173 2025-08-09 01:23:56.960086+00 2025-08-09 01:23:56.960096+00 f t Invitado Amar invitado-1754702634665@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4571 +6174 2025-08-09 01:26:25.049257+00 2025-08-09 01:26:25.049269+00 f t Invitado Amar invitado-1754702784642@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4572 +6175 2025-08-09 01:30:26.893431+00 2025-08-09 01:30:26.893441+00 f t Invitado Amar invitado-1754703026118@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4573 +6176 2025-08-09 03:23:08.225877+00 2025-08-09 03:23:08.22589+00 f t Aldana de Viegiliis aldidevirgiliis@gmail.com +541126668323 \N Doblas 273 8A \N \N \N -34.6195439 -58.4314185 14 1553 \N adeviegiliis +6177 2025-08-09 03:23:14.057398+00 2025-08-09 03:23:14.057408+00 f t Invitado Amar invitado-1754709792551@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4574 +6178 2025-08-09 03:48:06.873369+00 2025-08-09 03:48:06.873381+00 f t Invitado Amar invitado-1754711286233@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4575 +6179 2025-08-09 06:11:45.653652+00 2025-08-09 06:11:45.653667+00 f t Fernanda Gonzalez mfergh@hotmail.com +541133689469 \N Conesa 3085 \N \N \N \N -34.5566327 -58.469635 25 1552 \N fgonzalez +6180 2025-08-09 07:52:34.248471+00 2025-08-09 07:52:34.248483+00 f t Invitado Amar invitado-1754726594676@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4576 +6181 2025-08-09 08:06:25.979104+00 2025-08-09 08:06:25.979113+00 f t Invitado Amar invitado-1754726785350@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4577 +6182 2025-08-09 09:44:23.821633+00 2025-08-09 09:44:23.821643+00 f t Invitado Amar invitado-1754732663068@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4578 +6183 2025-08-09 11:14:33.898759+00 2025-08-09 11:14:33.898768+00 f t Invitado Amar invitado-1754738072747@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4579 +6184 2025-08-09 11:20:51.923851+00 2025-08-09 11:20:51.923862+00 f t Invitado Amar invitado-1754738450545@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4580 +6185 2025-08-09 11:43:21.639923+00 2025-08-09 11:43:21.639936+00 f t Invitado Amar invitado-1754739802113@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4581 +6186 2025-08-09 12:22:59.759054+00 2025-08-09 12:22:59.759063+00 f t Invitado Amar invitado-1754742180975@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4582 +6187 2025-08-09 12:23:41.679876+00 2025-08-09 12:23:41.679887+00 f t Invitado Amar invitado-1754742221112@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4583 +6188 2025-08-09 12:25:09.347099+00 2025-08-09 12:25:09.347112+00 f t Invitado Amar invitado-1754742309198@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4584 +6189 2025-08-09 12:30:37.061648+00 2025-08-09 12:30:37.061659+00 f t Invitado Amar invitado-1754742638473@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4585 +6190 2025-08-09 12:35:05.31629+00 2025-08-09 12:35:05.316304+00 f t Invitado Amar invitado-1754742906726@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4586 +6191 2025-08-09 14:15:49.319816+00 2025-08-09 14:15:49.319827+00 f t Paula Briasco briascomariapaula@gmail.com +541164556688 \N Río de janeiro 578 2 A \N \N \N -34.6089807 -58.4305483 23 1554 \N pbriasco +6192 2025-08-09 15:31:15.72582+00 2025-08-09 15:31:15.725837+00 f t Invitado Amar invitado-1754753475256@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4587 +6193 2025-08-09 15:45:12.695739+00 2025-08-09 15:45:12.695749+00 f t Invitado Amar invitado-1754754310658@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4588 +6194 2025-08-09 16:30:25.845693+00 2025-08-09 16:30:25.845706+00 f t Invitado Amar invitado-1754757025241@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4589 +6195 2025-08-09 16:55:02.302973+00 2025-08-09 16:55:02.302987+00 f t Invitado Amar invitado-1754758500908@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4590 +6196 2025-08-09 17:35:42.514324+00 2025-08-09 17:35:42.514332+00 f t Lorena Mauriz einmacao@gmail.com 91172229398 \N Dr. Luis Belaustegui 3002 1A \N FEMALE \N -34.617288 -58.478779 112 1555 \N lmauriz +6197 2025-08-09 18:42:38.015161+00 2025-08-09 18:42:38.015176+00 f t Invitado Amar invitado-1754764957648@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4591 +6198 2025-08-09 19:08:07.149494+00 2025-08-09 19:08:07.149505+00 f t Invitado Amar invitado-1754766484174@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-4592 +6199 2025-08-09 20:31:58.407258+00 2025-08-09 20:31:58.407268+00 f t Invitado Amar invitado-1754771518781@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-4593 +6200 2025-08-09 20:56:17.957489+00 2025-08-09 20:56:17.957499+00 f t Invitado Amar invitado-1754772949225@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4594 +6201 2025-08-09 22:13:24.868902+00 2025-08-09 22:13:24.868915+00 f t Invitado Amar invitado-1754777604169@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4595 +6202 2025-08-09 22:16:26.31342+00 2025-08-09 22:16:26.313431+00 f t Invitado Amar invitado-1754777785637@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4596 +6203 2025-08-09 22:31:43.828016+00 2025-08-09 22:31:43.828026+00 f t Invitado Amar invitado-1754778703374@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4597 +6204 2025-08-09 22:42:29.76636+00 2025-08-09 22:42:29.766373+00 f t Invitado Amar invitado-1754779347747@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-4598 +6205 2025-08-09 23:08:06.947709+00 2025-08-09 23:08:06.947722+00 f t Invitado Amar invitado-1754780883756@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4599 +6206 2025-08-09 23:33:12.110947+00 2025-08-09 23:33:12.11096+00 f t Invitado Amar invitado-1754782390387@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-4600 +6207 2025-08-10 00:12:11.14821+00 2025-08-10 00:12:11.148222+00 f t Invitado Amar invitado-1754784730381@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-4601 +6208 2025-08-10 00:22:23.938452+00 2025-08-10 00:22:23.938462+00 f t Invitado Amar invitado-1754785343426@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4602 +6209 2025-08-10 00:28:22.612814+00 2025-08-10 00:28:22.612828+00 f t Invitado Amar invitado-1754785702507@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4603 +6210 2025-08-10 00:37:44.619333+00 2025-08-10 00:37:44.619345+00 f t Pato Pettine patopettine@gmail.com +541170029775 \N Teniente rangugni 3610 Casa \N \N -34.714002 -58.402564 70 \N \N ppettine +6211 2025-08-10 00:42:07.009007+00 2025-08-10 00:42:07.009021+00 f t Invitado Amar invitado-1754786526576@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4604 +6212 2025-08-10 00:58:36.348176+00 2025-08-10 00:58:36.348187+00 f t Invitado Amar invitado-1754787514338@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-4605 +6213 2025-08-10 01:03:11.863562+00 2025-08-10 01:03:11.863577+00 f t Invitado Amar invitado-1754787791338@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-4606 +6214 2025-08-10 01:48:26.633756+00 2025-08-10 01:48:26.633766+00 f t Sabrina Laurenti laurenti_sab@hotmail.com +541163631433 \N Gaona 2634 2c \N \N \N -34.6155111 -58.4634744 4 1557 \N slaurenti +6215 2025-08-10 03:50:33.424961+00 2025-08-10 03:50:33.424976+00 f t Invitado Amar invitado-1754797833055@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4607 +6216 2025-08-10 03:53:43.457735+00 2025-08-10 03:53:43.457745+00 f t Invitado Amar invitado-1754798020700@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-4608 +6217 2025-08-10 05:47:07.307806+00 2025-08-10 05:47:07.30782+00 f t Invitado Amar invitado-1754804826810@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4609 +6218 2025-08-10 06:12:44.06879+00 2025-08-10 06:12:44.0688+00 f t Invitado Amar invitado-1754806363253@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-4610 +6219 2025-08-10 06:28:03.086014+00 2025-08-10 06:28:03.086027+00 f t Invitado Amar invitado-1754807282755@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4611 +6220 2025-08-10 07:20:46.972888+00 2025-08-10 07:20:46.972899+00 f t Invitado Amar invitado-1754810447050@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4612 +6221 2025-08-10 11:51:13.893677+00 2025-08-10 11:51:13.893692+00 f t Invitado Amar invitado-1754826675444@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4613 +6222 2025-08-10 13:17:06.618549+00 2025-08-10 13:17:06.618563+00 f t Invitado Amar invitado-1754831826285@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4614 +6223 2025-08-10 13:54:54.20142+00 2025-08-10 13:54:54.20143+00 f t Invitado Amar invitado-1754834092422@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-4615 +6224 2025-08-10 14:09:30.961847+00 2025-08-10 14:09:30.961856+00 f t Invitado Amar invitado-1754834970464@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4616 +6225 2025-08-10 14:51:34.215216+00 2025-08-10 14:51:34.215229+00 f t Juan carlos Nai Fovino jcnf19@gmail.com +5465650505 \N Marcos paz 2220 \N \N \N \N -34.6184009 -58.5038254 28 1559 \N jnaifovino +6226 2025-08-10 15:23:51.771815+00 2025-08-10 15:23:51.771824+00 f t Invitado Amar invitado-1754839431101@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4617 +6227 2025-08-10 15:36:03.304225+00 2025-08-10 15:36:03.304242+00 f t Invitado Amar invitado-1754840163224@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4618 +6228 2025-08-10 16:21:21.973719+00 2025-08-10 16:21:21.973733+00 f t Invitado Amar invitado-1754842882480@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4619 +6229 2025-08-10 16:22:07.551536+00 2025-08-10 16:22:07.55155+00 f t Invitado Amar invitado-1754842928527@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4620 +6230 2025-08-10 16:24:05.248895+00 2025-08-10 16:24:05.248905+00 f t Invitado Amar invitado-1754843043950@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4621 +6231 2025-08-10 16:26:38.048851+00 2025-08-10 16:26:38.04886+00 f t Invitado Amar invitado-1754843199045@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4622 +6232 2025-08-10 16:33:12.235932+00 2025-08-10 16:33:12.235942+00 f t Invitado Amar invitado-1754843593203@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4623 +6233 2025-08-10 16:37:03.664576+00 2025-08-10 16:37:03.66459+00 f t Invitado Amar invitado-1754843824436@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4624 +6234 2025-08-10 16:52:21.100029+00 2025-08-10 16:52:21.100042+00 f t Invitado Amar invitado-1754844740709@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-4625 +6235 2025-08-10 17:02:01.389087+00 2025-08-10 17:02:01.389103+00 f t Invitado Amar invitado-1754845320744@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-4626 +6236 2025-08-10 17:56:12.76048+00 2025-08-10 17:56:12.760492+00 f t Invitado Amar invitado-1754848572245@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-4627 +6237 2025-08-10 18:05:44.04385+00 2025-08-10 18:05:44.043863+00 f t Invitado Amar invitado-1754849143339@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4628 +6238 2025-08-10 18:56:57.826771+00 2025-08-10 18:56:57.826779+00 f t Yvonne Lemus yvonnelemus007@gmail.com 91171154837 \N Bragado 4761 9A \N FEMALE 2025-02-28 -34.644509 -58.4922319 5 1558 \N ylemus +6239 2025-08-10 18:59:27.625306+00 2025-08-10 18:59:27.62532+00 f t Invitado Amar invitado-1754852366925@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4629 +6240 2025-08-10 19:12:12.50966+00 2025-08-10 19:12:12.509671+00 f t Invitado Amar invitado-1754853132074@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-4630 +6241 2025-08-10 19:30:46.400961+00 2025-08-10 19:30:46.400973+00 f t Invitado Amar invitado-1754854245773@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-4631 +6242 2025-08-10 19:41:09.060854+00 2025-08-10 19:41:09.060868+00 f t Invitado Amar invitado-1754854868664@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-4632 +6243 2025-08-10 20:10:00.474763+00 2025-08-10 20:10:00.474777+00 f t Natacha Haidar natacha.haidar@gmail.com +541161853900 \N Dupuy 1163 2 C \N \N -34.6310568 -58.5176183 62 \N \N nhaidar +6244 2025-08-10 20:51:43.856367+00 2025-08-10 20:51:43.856379+00 f t Josefina Nast josefinastl@gmail.com 984191343 \N Santa Fe 3401 3401 1C \N FEMALE 1986-10-11 \N \N 1 1560 \N jnast +6245 2025-08-10 20:58:34.485306+00 2025-08-10 20:58:34.485319+00 f t Invitado Amar invitado-1754859513526@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4633 +6246 2025-08-10 21:03:19.183347+00 2025-08-10 21:03:19.18336+00 f t Invitado Amar invitado-1754859798645@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4634 +6247 2025-08-10 21:07:46.057942+00 2025-08-10 21:07:46.057956+00 f t Invitado Amar invitado-1754860065674@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4635 +6248 2025-08-10 21:57:33.275126+00 2025-08-10 21:57:33.275165+00 f t Invitado Amar invitado-1754863053223@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-4636 +6249 2025-08-10 22:24:50.879222+00 2025-08-10 22:24:50.879236+00 f t Invitado Amar invitado-1754864689821@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-4637 +6250 2025-08-10 22:27:00.438994+00 2025-08-10 22:27:00.439005+00 f t Invitado Amar invitado-1754864819379@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-4638 +6251 2025-08-10 22:27:23.559474+00 2025-08-10 22:27:23.559486+00 f t Invitado Amar invitado-1754864842920@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-4639 +6252 2025-08-10 22:50:11.694932+00 2025-08-10 22:50:11.694946+00 f t Invitado Amar invitado-1754866175060@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4640 +6253 2025-08-10 22:53:33.372237+00 2025-08-10 22:53:33.372251+00 f t Invitado Amar invitado-1754866412724@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-4641 +6254 2025-08-10 22:57:06.987816+00 2025-08-10 22:57:06.987826+00 f t Invitado Amar invitado-1754866626550@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-4642 +6255 2025-08-10 23:15:13.14347+00 2025-08-10 23:15:13.143521+00 f t Invitado Amar invitado-1754867712974@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4643 +6256 2025-08-11 00:08:19.904911+00 2025-08-11 00:08:19.904926+00 f t Invitado Amar invitado-1754870902489@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4644 +6257 2025-08-11 00:18:21.085841+00 2025-08-11 00:18:21.085853+00 f t Invitado Amar invitado-1754871499986@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4645 +6258 2025-08-11 02:05:13.368642+00 2025-08-11 02:05:13.368656+00 f t Invitado Amar invitado-1754877912941@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-4646 +6259 2025-08-11 03:29:52.098602+00 2025-08-11 03:29:52.098612+00 f t Invitado Amar invitado-1754882991307@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4647 +6260 2025-08-11 04:12:47.230385+00 2025-08-11 04:12:47.2304+00 f t Invitado Amar invitado-1754885566743@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4648 +6261 2025-08-11 05:45:27.629005+00 2025-08-11 05:45:27.62902+00 f t Invitado Amar invitado-1754891127352@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4649 +6262 2025-08-11 10:07:04.819717+00 2025-08-11 10:07:04.819735+00 f t Invitado Amar invitado-1754906824344@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4650 +6263 2025-08-11 10:41:20.403707+00 2025-08-11 10:41:20.403719+00 f t Invitado Amar invitado-1754908879247@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-4651 +6264 2025-08-11 11:55:27.113301+00 2025-08-11 11:55:27.113312+00 f t Invitado Amar invitado-1754913326527@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4652 +6265 2025-08-11 12:05:58.320993+00 2025-08-11 12:05:58.321002+00 f t Invitado Amar invitado-1754913958898@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-4653 +6266 2025-08-11 12:42:28.754564+00 2025-08-11 12:42:28.754576+00 f t Invitado Amar invitado-1754916148343@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-4654 +6267 2025-08-11 13:05:06.419885+00 2025-08-11 13:05:06.419901+00 f t Invitado Amar invitado-1754917504941@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4655 +6268 2025-08-11 13:08:17.970536+00 2025-08-11 13:08:17.970548+00 f t Invitado Amar invitado-1754917696344@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-4656 +6269 2025-08-11 13:40:07.059014+00 2025-08-11 13:40:07.059027+00 f t Invitado Amar invitado-1754919606878@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-4657 +6270 2025-08-11 13:40:17.019727+00 2025-08-11 13:40:17.019737+00 f t Invitado Amar invitado-1754919616411@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4658 +6271 2025-08-11 13:48:24.586277+00 2025-08-11 13:48:24.58629+00 f t Invitado Amar invitado-1754920104226@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4659 +6272 2025-08-11 14:05:03.562048+00 2025-08-11 14:05:03.562062+00 f t Invitado Amar invitado-1754921102864@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4660 +6273 2025-08-11 14:06:21.988978+00 2025-08-11 14:06:21.988988+00 f t Invitado Amar invitado-1754921181446@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4661 +6274 2025-08-11 14:26:20.17829+00 2025-08-11 14:26:20.178302+00 f t Invitado Amar invitado-1754922380399@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4662 +6275 2025-08-11 14:30:48.493281+00 2025-08-11 14:30:48.493291+00 f t Invitado Amar invitado-1754922648025@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-4663 +6276 2025-08-11 15:36:02.904837+00 2025-08-11 15:36:02.904851+00 f t Invitado Amar invitado-1754926562339@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-4664 +6277 2025-08-11 15:38:40.709422+00 2025-08-11 15:38:40.709433+00 f t Invitado Amar invitado-1754926720315@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-4665 +6278 2025-08-11 16:00:41.357694+00 2025-08-11 16:00:41.357708+00 f t Invitado Amar invitado-1754928040815@example.com 55555555 \N \N \N \N \N 66 \N \N iamar-4666 +6279 2025-08-11 16:15:59.216899+00 2025-08-11 16:15:59.216912+00 f t Invitado Amar invitado-1754928958784@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-4667 +6280 2025-08-11 16:17:40.405587+00 2025-08-11 16:17:40.405599+00 f t Invitado Amar invitado-1754929059963@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4668 +6281 2025-08-11 16:33:06.426203+00 2025-08-11 16:33:06.426215+00 f t Invitado Amar invitado-1754929986108@example.com 55555555 \N \N \N \N \N 47 \N \N iamar-4669 +6282 2025-08-11 16:33:31.560016+00 2025-08-11 16:33:31.560027+00 f t Loli Garcia lolaynahu@gmail.com +541137731118 \N Carlos ortiz 1126 Dto A \N \N -34.6403954 -58.452364 4 1563 \N lgarcia-3 +6283 2025-08-11 16:54:00.432934+00 2025-08-11 16:54:00.432944+00 f t Invitado Amar invitado-1754931240013@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4670 +6284 2025-08-11 16:54:31.226356+00 2025-08-11 16:54:31.22637+00 f t Invitado Amar invitado-1754931271007@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4671 +6285 2025-08-11 17:26:36.819478+00 2025-08-11 17:26:36.819492+00 f t Invitado Amar invitado-1754933196073@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4672 +6286 2025-08-11 17:58:35.692228+00 2025-08-11 17:58:35.692239+00 f t Invitado Amar invitado-1754935115276@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4673 +6287 2025-08-11 18:16:07.928366+00 2025-08-11 18:16:07.928381+00 f t Invitado Amar invitado-1754936167529@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4674 +6288 2025-08-11 18:22:30.770864+00 2025-08-11 18:22:30.770878+00 f t Invitado Amar invitado-1754936550556@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4675 +6289 2025-08-11 18:24:38.870944+00 2025-08-11 18:24:38.870957+00 f t Invitado Amar invitado-1754936678235@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4676 +6290 2025-08-11 18:32:09.825466+00 2025-08-11 18:32:09.825477+00 f t Damian Stasi damian_stasi@hotmail.com 91159589422 \N industria 4429 \N \N MALE \N -34.5589232 -58.553643 79 1561 \N dstasi +6291 2025-08-11 18:36:34.21625+00 2025-08-11 18:36:34.216264+00 f t Invitado Amar invitado-1754937393777@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-4677 +6292 2025-08-11 19:04:31.786604+00 2025-08-11 19:04:31.786614+00 f t Invitado Amar invitado-1754939071336@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4678 +6293 2025-08-11 19:13:54.544989+00 2025-08-11 19:13:54.545+00 f t Stacey Bear sbearlfc@gmail.com 91123869946 \N Zabala 3573 \N \N FEMALE \N -34.5759925 -58.4553515 38 1562 \N sbear +6294 2025-08-11 19:17:36.163585+00 2025-08-11 19:17:36.163598+00 f t Invitado Amar invitado-1754939856082@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-4679 +6295 2025-08-11 19:44:12.5726+00 2025-08-11 19:44:12.572614+00 f t Invitado Amar invitado-1754941451936@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4680 +6296 2025-08-11 19:54:52.826608+00 2025-08-11 19:54:52.826617+00 f t Invitado Amar invitado-1754942090658@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4681 +6297 2025-08-11 20:12:57.861862+00 2025-08-11 20:12:57.861875+00 f t Invitado Amar invitado-1754943177437@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4682 +6298 2025-08-11 20:19:16.940614+00 2025-08-11 20:19:16.940628+00 f t Invitado Amar invitado-1754943556573@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4683 +6299 2025-08-11 20:21:56.751037+00 2025-08-11 20:21:56.751051+00 f t Gisela De la cruz Giseladelacruz1983@gmail.com +541138713761 \N Donato Álvarez 2839 \N \N \N \N 24 \N \N gdelacruz +6300 2025-08-11 20:23:36.335507+00 2025-08-11 20:23:36.335522+00 f t Invitado Amar invitado-1754943813074@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-4684 +6301 2025-08-11 20:34:35.654627+00 2025-08-11 20:34:35.654641+00 f t Invitado Amar invitado-1754944475029@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4685 +6302 2025-08-11 20:43:50.308881+00 2025-08-11 20:43:50.308892+00 f t Invitado Amar invitado-1754945029461@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4686 +6303 2025-08-11 20:46:29.761711+00 2025-08-11 20:46:29.761726+00 f t Invitado Amar invitado-1754945189128@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4687 +6304 2025-08-11 20:47:36.629719+00 2025-08-11 20:47:36.629732+00 f t Invitado Amar invitado-1754945256397@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4688 +6305 2025-08-11 20:47:38.03431+00 2025-08-11 20:47:38.034323+00 f t Invitado Amar invitado-1754945258108@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4689 +6306 2025-08-11 20:48:00.088215+00 2025-08-11 20:48:00.088229+00 f t Invitado Amar invitado-1754945279746@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4690 +6307 2025-08-11 20:57:38.822087+00 2025-08-11 20:57:38.8221+00 f t Invitado Amar invitado-1754945858298@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-4691 +6308 2025-08-11 21:16:24.613176+00 2025-08-11 21:16:24.613188+00 f t Invitado Amar invitado-1754946985859@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4692 +6309 2025-08-11 21:18:29.722695+00 2025-08-11 21:18:29.722709+00 f t Invitado Amar invitado-1754947109383@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4693 +6310 2025-08-11 21:31:02.861439+00 2025-08-11 21:31:02.861456+00 f t Invitado Amar invitado-1754947862382@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4694 +6311 2025-08-11 21:46:26.394129+00 2025-08-11 21:46:26.394142+00 f t Invitado Amar invitado-1754948785754@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-4695 +6312 2025-08-11 22:02:07.171519+00 2025-08-11 22:02:07.171534+00 f t Invitado Amar invitado-1754949725483@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4696 +6313 2025-08-11 22:20:27.846925+00 2025-08-11 22:20:27.847312+00 f t Invitado Amar invitado-1754950825864@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4697 +6314 2025-08-11 22:27:48.463545+00 2025-08-11 22:27:48.463575+00 f t Invitado Amar invitado-1754951267584@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4698 +6315 2025-08-11 22:28:40.887978+00 2025-08-11 22:28:40.887991+00 f t Invitado Amar invitado-1754951320515@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-4699 +6316 2025-08-11 22:31:50.245948+00 2025-08-11 22:31:50.245961+00 f t Invitado Amar invitado-1754951509568@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4700 +6317 2025-08-11 22:32:27.758091+00 2025-08-11 22:32:27.758101+00 f t Invitado Amar invitado-1754951547217@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-4701 +6318 2025-08-11 22:50:03.356106+00 2025-08-11 22:50:03.35612+00 f t Invitado Amar invitado-1754952603022@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-4702 +6319 2025-08-11 22:54:28.359705+00 2025-08-11 22:54:28.359719+00 f t Invitado Amar invitado-1754952868376@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4703 +6320 2025-08-11 22:58:51.44208+00 2025-08-11 22:58:51.442092+00 f t Invitado Amar invitado-1754953131824@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4704 +6321 2025-08-11 22:59:07.61836+00 2025-08-11 22:59:07.618373+00 f t Invitado Amar invitado-1754953147184@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4705 +6322 2025-08-11 23:26:44.78237+00 2025-08-11 23:26:44.782379+00 f t Invitado Amar invitado-1754954803636@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4706 +6323 2025-08-11 23:33:56.503747+00 2025-08-11 23:33:56.50376+00 f t Alejandro Zuleta adzuletah@gmail.com +541126290542 \N San jose 338 7B \N \N -34.6126705 -58.3860739 49 \N \N azuleta +6324 2025-08-11 23:49:17.846545+00 2025-08-11 23:49:17.846559+00 f t Invitado Amar invitado-1754956157655@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-4707 +6325 2025-08-11 23:51:16.22878+00 2025-08-11 23:51:16.228792+00 f t Invitado Amar invitado-1754956276058@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-4708 +6326 2025-08-12 00:05:25.812924+00 2025-08-12 00:05:25.812937+00 f t Invitado Amar invitado-1754957127008@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4709 +6327 2025-08-12 00:15:03.959269+00 2025-08-12 00:15:03.959283+00 f t Alejandro Hernandez ezequielperez7165@gmail.com +541123860402 \N Gascon 123 6 b \N \N -34.6109005 -58.4244305 23 \N \N ahernandez +6328 2025-08-12 00:23:48.665297+00 2025-08-12 00:23:48.66531+00 f t Invitado Amar invitado-1754958228295@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4710 +6329 2025-08-12 00:49:34.445029+00 2025-08-12 00:49:34.445041+00 f t Invitado Amar invitado-1754959772857@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4711 +6330 2025-08-12 00:50:00.324027+00 2025-08-12 00:50:00.324037+00 f t Invitado Amar invitado-1754959799353@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4712 +6331 2025-08-12 01:17:51.966404+00 2025-08-12 01:17:51.966417+00 f t Invitado Amar invitado-1754961470733@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4713 +6332 2025-08-12 01:23:29.302537+00 2025-08-12 01:23:29.302549+00 f t Invitado Amar invitado-1754961807656@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4714 +6333 2025-08-12 01:39:22.139957+00 2025-08-12 01:39:22.13997+00 f t Invitado Amar invitado-1754962760918@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4715 +6334 2025-08-12 01:56:11.249609+00 2025-08-12 01:56:11.249625+00 f t Invitado Amar invitado-1754963769962@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-4716 +6335 2025-08-12 02:23:12.105205+00 2025-08-12 02:23:12.105218+00 f t Julian Olivera julianleonelolivera@gmail.com +541156454113 \N Avenida Raúl Scalabrini Ortiz 2886 10 / 1 \N \N -34.582741 -58.4123875 1 \N \N jolivera +6336 2025-08-12 02:25:35.169853+00 2025-08-12 02:25:35.169866+00 f t Invitado Amar invitado-1754965534099@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4717 +6337 2025-08-12 02:41:50.308826+00 2025-08-12 02:41:50.30884+00 f t Invitado Amar invitado-1754966509822@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4718 +6338 2025-08-12 02:46:00.450295+00 2025-08-12 02:46:00.450308+00 f t Invitado Amar invitado-1754966760100@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-4719 +6339 2025-08-12 04:27:50.236063+00 2025-08-12 04:27:50.236076+00 f t Invitado Amar invitado-1754972869704@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4720 +6340 2025-08-12 07:47:23.211608+00 2025-08-12 07:47:23.211618+00 f t Invitado Amar invitado-1754984841140@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4721 +6341 2025-08-12 08:40:23.290989+00 2025-08-12 08:40:23.291006+00 f t Invitado Amar invitado-1754988021971@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4722 +6342 2025-08-12 08:42:15.288806+00 2025-08-12 08:42:15.288823+00 f t Invitado Amar invitado-1754988135466@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4723 +6343 2025-08-12 09:15:54.925594+00 2025-08-12 09:15:54.925605+00 f t Invitado Amar invitado-1754990153647@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4724 +6344 2025-08-12 09:42:58.981683+00 2025-08-12 09:42:58.981692+00 f t Invitado Amar invitado-1754991778654@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-4725 +6345 2025-08-12 10:25:14.339995+00 2025-08-12 10:25:14.340009+00 f t Ana María Torres Valencia anamariatorresva@gmai.com +5491158780822 \N Argerich 3318 3318 3A \N \N -34.5990005 -58.4931874 17 \N \N atorresvalencia +6346 2025-08-12 10:49:38.006992+00 2025-08-12 10:49:38.007002+00 f t Invitado Amar invitado-1754995777734@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4726 +6347 2025-08-12 10:50:35.718651+00 2025-08-12 10:50:35.718662+00 f t Invitado Amar invitado-1754995835376@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4727 +6348 2025-08-12 11:44:22.219509+00 2025-08-12 11:44:22.219521+00 f t Invitado Amar invitado-1754999059761@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4728 +6349 2025-08-12 11:49:49.475786+00 2025-08-12 11:49:49.475794+00 f t Invitado Amar invitado-1754999387407@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4729 +6350 2025-08-12 12:06:40.618971+00 2025-08-12 12:06:40.618985+00 f t Invitado Amar invitado-1755000400264@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-4730 +6351 2025-08-12 12:13:57.73958+00 2025-08-12 12:13:57.739589+00 f t Invitado Amar invitado-1755000837359@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4731 +6352 2025-08-12 12:21:10.981097+00 2025-08-12 12:21:10.981112+00 f t Invitado Amar invitado-1755001270452@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4732 +6353 2025-08-12 12:27:32.648927+00 2025-08-12 12:27:32.648942+00 f t Invitado Amar invitado-1755001651539@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-4733 +6354 2025-08-12 12:30:11.787357+00 2025-08-12 12:30:11.787372+00 f t Giselle Ordoñez giselleord@gmail.com +541163366729 \N Viamonte 961 7C \N \N \N -34.6001095 -58.3805378 13 1565 \N gordonez +6355 2025-08-12 12:36:17.258633+00 2025-08-12 12:36:17.258642+00 f t Cecilia Correa cecilia.35493@gmail.com +542244437971 \N Calle 1 487 1/2 Depto 4 \N \N \N \N 147 \N \N ccorrea-2 +6356 2025-08-12 13:15:32.54998+00 2025-08-12 13:15:32.549993+00 f t Invitado Amar invitado-1755004532117@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-4734 +6357 2025-08-12 13:17:54.452485+00 2025-08-12 13:17:54.452498+00 f t Invitado Amar invitado-1755004674051@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-4735 +13322 2025-11-14 20:43:39.39138+00 2025-11-14 20:43:39.391391+00 f t Invitado Amar invitado-1763153017405@example.com 55555555 \N \N \N \N \N 46 \N \N \N +6359 2025-08-12 13:23:47.694797+00 2025-08-12 13:23:47.694806+00 f t Invitado Amar invitado-1755004995376@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4736 +6360 2025-08-12 14:59:30.679032+00 2025-08-12 14:59:30.679041+00 f t Invitado Amar invitado-1755010769750@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4737 +6361 2025-08-12 15:16:45.029525+00 2025-08-12 15:16:45.029536+00 f t Invitado Amar invitado-1755011803371@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4738 +6362 2025-08-12 15:59:05.432275+00 2025-08-12 15:59:05.432289+00 f t Invitado Amar invitado-1755014348665@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4739 +6363 2025-08-12 16:35:37.440933+00 2025-08-12 16:35:37.440947+00 f t Invitado Amar invitado-1755016529816@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4740 +6364 2025-08-12 16:39:43.426171+00 2025-08-12 16:39:43.426181+00 f t Invitado Amar invitado-1755016783101@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-4741 +6365 2025-08-12 16:40:21.624491+00 2025-08-12 16:40:21.624501+00 f t Invitado Amar invitado-1755016821002@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-4742 +6366 2025-08-12 17:03:52.615444+00 2025-08-12 17:03:52.615457+00 f t Invitado Amar invitado-1755018232221@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-4743 +6367 2025-08-12 17:08:17.624159+00 2025-08-12 17:08:17.624171+00 f t Invitado Amar invitado-1755018496423@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4744 +6368 2025-08-12 17:15:08.506765+00 2025-08-12 17:15:08.506778+00 f t Invitado Amar invitado-1755018907347@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4745 +6369 2025-08-12 18:09:56.981974+00 2025-08-12 18:09:56.981986+00 f t Invitado Amar invitado-1755022196373@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-4746 +6370 2025-08-12 18:10:01.510493+00 2025-08-12 18:10:01.510508+00 f t Invitado Amar invitado-1755022199968@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-4747 +6371 2025-08-12 18:17:44.377134+00 2025-08-12 18:17:44.377145+00 f t Malena Sad malenasad3@gmail.com +541164441300 \N Moldes 3587 Casa \N \N -34.5507098 -58.4707789 25 \N \N msad +6372 2025-08-12 18:22:16.002238+00 2025-08-12 18:22:16.002251+00 f t Invitado Amar invitado-1755022935793@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-4748 +6373 2025-08-12 18:30:19.974895+00 2025-08-12 18:30:19.974907+00 f t Invitado Amar invitado-1755023419564@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4749 +13538 2025-11-17 20:02:50.283815+00 2025-11-17 20:02:50.283825+00 f t Invitado Amar invitado-1763409768724@example.com 55555555 \N \N \N \N \N 29 \N \N \N +6374 2025-08-12 18:35:10.642215+00 2025-08-12 18:35:10.642229+00 f t Invitado Amar invitado-1755023709846@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4750 +6375 2025-08-12 19:12:09.988732+00 2025-08-12 19:12:09.988741+00 f t Laurencia Bozzo laurenciabozzo@gmail.com +541168861477 \N Plaza 2712 No anda timbre \N \N \N -34.5663442 -58.4782645 29 1568 \N lbozzo +6376 2025-08-12 19:19:04.142638+00 2025-08-12 19:19:04.142653+00 f t Invitado Amar invitado-1755026344991@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4751 +6377 2025-08-12 19:33:42.542758+00 2025-08-12 19:33:42.542773+00 f t Invitado Amar invitado-1755027221780@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4752 +6378 2025-08-12 19:57:47.611883+00 2025-08-12 19:57:47.6119+00 f t Invitado Amar invitado-1755028665962@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4753 +6379 2025-08-12 20:17:36.619086+00 2025-08-12 20:17:36.619102+00 f t Invitado Amar invitado-1755029855180@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4754 +6380 2025-08-12 20:46:26.60667+00 2025-08-12 20:46:26.606682+00 f t Invitado Amar invitado-1755031586010@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4755 +6381 2025-08-12 20:47:11.035835+00 2025-08-12 20:47:11.035848+00 f t Invitado Amar invitado-1755031629640@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4756 +6382 2025-08-12 21:01:51.101748+00 2025-08-12 21:01:51.101758+00 f t Invitado Amar invitado-1755032510428@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4757 +6383 2025-08-12 21:04:52.451746+00 2025-08-12 21:04:52.451759+00 f t Invitado Amar invitado-1755032692583@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4758 +6384 2025-08-12 22:28:36.457432+00 2025-08-12 22:28:36.457441+00 f t Invitado Amar invitado-1755037715182@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4759 +6385 2025-08-12 22:29:13.991204+00 2025-08-12 22:29:13.991216+00 f t Invitado Amar invitado-1755037753077@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4760 +6386 2025-08-12 22:32:06.190167+00 2025-08-12 22:32:06.190179+00 f t Invitado Amar invitado-1755037925236@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4761 +6387 2025-08-12 22:32:09.605645+00 2025-08-12 22:32:09.605661+00 f t Invitado Amar invitado-1755037927393@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-4762 +6388 2025-08-12 22:55:49.873909+00 2025-08-12 22:55:49.873923+00 f t Invitado Amar invitado-1755039348614@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4763 +6389 2025-08-12 23:06:54.080986+00 2025-08-12 23:06:54.080998+00 f t Invitado Amar invitado-1755040013478@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4764 +6390 2025-08-12 23:34:56.722408+00 2025-08-12 23:34:56.722419+00 f t Invitado Amar invitado-1755041695404@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4765 +6391 2025-08-12 23:53:16.835476+00 2025-08-12 23:53:16.835487+00 f t Invitado Amar invitado-1755042796509@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-4766 +6392 2025-08-13 00:12:48.772653+00 2025-08-13 00:12:48.772661+00 f t Sol Ossuna solossuna@hotmail.com 5491130143569 \N Cochabamba 2411 \N \N FEMALE 2000-12-09 -34.6245981 -58.399333 12 1570 \N sossuna +6393 2025-08-13 00:14:56.960063+00 2025-08-13 00:14:56.960074+00 f t Invitado Amar invitado-1755044096207@example.com 55555555 \N \N \N \N \N 67 \N \N iamar-4767 +6394 2025-08-13 00:19:16.180206+00 2025-08-13 00:19:16.180216+00 f t Invitado Amar invitado-1755044355595@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4768 +6395 2025-08-13 00:31:28.916835+00 2025-08-13 00:31:28.916844+00 f t Invitado Amar invitado-1755045088343@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-4769 +6396 2025-08-13 00:53:54.99362+00 2025-08-13 00:53:54.993633+00 f t Invitado Amar invitado-1755046434425@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-4770 +6397 2025-08-13 00:57:50.729295+00 2025-08-13 00:57:50.729307+00 f t Invitado Amar invitado-1755046670074@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-4771 +6398 2025-08-13 00:58:11.22432+00 2025-08-13 00:58:11.224334+00 f t Invitado Amar invitado-1755046690936@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4772 +6399 2025-08-13 01:14:24.881879+00 2025-08-13 01:14:24.881892+00 f t Invitado Amar invitado-1755047663828@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-4773 +6400 2025-08-13 01:15:12.096645+00 2025-08-13 01:15:12.096659+00 f t Invitado Amar invitado-1755047711477@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-4774 +6401 2025-08-13 01:17:32.156384+00 2025-08-13 01:17:32.156398+00 f t Invitado Amar invitado-1755047851448@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-4775 +6402 2025-08-13 01:37:42.442139+00 2025-08-13 01:37:42.442152+00 f t Invitado Amar invitado-1755049062022@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4776 +6403 2025-08-13 02:11:20.275661+00 2025-08-13 02:11:20.275673+00 f t Invitado Amar invitado-1755051079306@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4777 +6404 2025-08-13 02:34:34.509641+00 2025-08-13 02:34:34.509655+00 f t Invitado Amar invitado-1755052473694@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4778 +6405 2025-08-13 02:44:57.794143+00 2025-08-13 02:44:57.794153+00 f t Invitado Amar invitado-1755053097179@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-4779 +6406 2025-08-13 02:59:29.393562+00 2025-08-13 02:59:29.393575+00 f t Invitado Amar invitado-1755053967548@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4780 +6407 2025-08-13 04:45:17.866382+00 2025-08-13 04:45:17.866398+00 f t Invitado Amar invitado-1755060316898@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-4781 +6408 2025-08-13 07:21:24.184755+00 2025-08-13 07:21:24.184765+00 f t Invitado Amar invitado-1755069683634@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4782 +6409 2025-08-13 07:25:05.310531+00 2025-08-13 07:25:05.310547+00 f t Invitado Amar invitado-1755069904927@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4783 +6410 2025-08-13 09:12:08.233524+00 2025-08-13 09:12:08.23354+00 f t Invitado Amar invitado-1755076327906@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4784 +6411 2025-08-13 10:15:50.420165+00 2025-08-13 10:15:50.420175+00 f t Invitado Amar invitado-1755080150234@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-4785 +6412 2025-08-13 11:11:17.226463+00 2025-08-13 11:11:17.226479+00 f t Invitado Amar invitado-1755083476670@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-4786 +6413 2025-08-13 11:19:53.199069+00 2025-08-13 11:19:53.199081+00 f t Invitado Amar invitado-1755083992835@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4787 +6414 2025-08-13 11:20:39.708685+00 2025-08-13 11:20:39.708698+00 f t Eugenia Descalzo eugeniadescalzo@gmail.com +541166119470 \N Neuquén 1780 4A \N \N -34.6159587 -58.4581588 14 \N \N edescalzo +6415 2025-08-13 11:45:48.651949+00 2025-08-13 11:45:48.65196+00 f t Invitado Amar invitado-1755085548271@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-4788 +6416 2025-08-13 12:20:05.174348+00 2025-08-13 12:20:05.174363+00 f t Invitado Amar invitado-1755087604768@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4789 +6417 2025-08-13 12:22:41.862863+00 2025-08-13 12:22:41.862872+00 f t Invitado Amar invitado-1755087761557@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4790 +6418 2025-08-13 12:34:19.023257+00 2025-08-13 12:34:19.023271+00 f t Invitado Amar invitado-1755088458661@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-4791 +6419 2025-08-13 12:46:57.07428+00 2025-08-13 12:46:57.074294+00 f t Invitado Amar invitado-1755089215983@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4792 +6420 2025-08-13 12:47:04.387567+00 2025-08-13 12:47:04.387578+00 f t Invitado Amar invitado-1755089223762@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4793 +6421 2025-08-13 12:53:05.314027+00 2025-08-13 12:53:05.314042+00 f t Invitado Amar invitado-1755089584300@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4794 +6422 2025-08-13 12:54:47.08474+00 2025-08-13 12:54:47.084749+00 f t Invitado Amar invitado-1755089686730@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4795 +6423 2025-08-13 12:55:36.908857+00 2025-08-13 12:55:36.908869+00 f t Invitado Amar invitado-1755089738281@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4796 +6424 2025-08-13 12:55:59.836266+00 2025-08-13 12:55:59.836276+00 f t Invitado Amar invitado-1755089761420@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4797 +6425 2025-08-13 12:56:58.436464+00 2025-08-13 12:56:58.43648+00 f t Invitado Amar invitado-1755089818038@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4798 +6426 2025-08-13 12:59:53.333054+00 2025-08-13 12:59:53.333067+00 f t Invitado Amar invitado-1755089990021@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-4799 +6427 2025-08-13 13:06:42.836028+00 2025-08-13 13:06:42.836041+00 f t Invitado Amar invitado-1755090402506@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-4800 +6428 2025-08-13 13:12:12.729127+00 2025-08-13 13:12:12.729141+00 f t Invitado Amar invitado-1755090731591@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4801 +6429 2025-08-13 13:26:12.157173+00 2025-08-13 13:26:12.157187+00 f t Invitado Amar invitado-1755091571750@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4802 +6430 2025-08-13 13:36:49.480805+00 2025-08-13 13:36:49.480817+00 f t Invitado Amar invitado-1755092209549@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4803 +6431 2025-08-13 13:41:06.43616+00 2025-08-13 13:41:06.436174+00 f t Invitado Amar invitado-1755092465859@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-4804 +6432 2025-08-13 13:48:24.60753+00 2025-08-13 13:48:24.607539+00 f t Invitado Amar invitado-1755092904800@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4805 +6433 2025-08-13 14:19:24.389878+00 2025-08-13 14:19:24.389887+00 f t Invitado Amar invitado-1755094764658@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4806 +6434 2025-08-13 14:35:45.666089+00 2025-08-13 14:35:45.666102+00 f t Invitado Amar invitado-1755095745873@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4807 +6435 2025-08-13 14:43:39.526867+00 2025-08-13 14:43:39.526881+00 f t Invitado Amar invitado-1755096219203@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4808 +6436 2025-08-13 14:52:20.162535+00 2025-08-13 14:52:20.162548+00 f t Invitado Amar invitado-1755096738600@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-4809 +6437 2025-08-13 14:58:49.272637+00 2025-08-13 14:58:49.27265+00 f t Julieta Eichengrun juliieich@gmail.com +541169992802 \N Pedro goyena 830 36 \N FEMALE \N -34.6264524 -58.4395655 14 \N \N jeichengrun +6438 2025-08-13 14:59:52.232+00 2025-08-13 14:59:52.232013+00 f t Invitado Amar invitado-1755097191079@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4810 +6439 2025-08-13 15:08:51.674263+00 2025-08-13 15:08:51.674274+00 f t Invitado Amar invitado-1755097731090@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4811 +6440 2025-08-13 15:15:49.869712+00 2025-08-13 15:15:49.869723+00 f t Invitado Amar invitado-1755098149895@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4812 +6441 2025-08-13 15:19:56.614718+00 2025-08-13 15:19:56.614732+00 f t Invitado Amar invitado-1755098396944@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-4813 +6442 2025-08-13 15:21:12.027075+00 2025-08-13 15:21:12.027088+00 f t Invitado Amar invitado-1755098468884@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4814 +6443 2025-08-13 15:39:03.888342+00 2025-08-13 15:39:03.888358+00 f t Invitado Amar invitado-1755099543022@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4815 +6444 2025-08-13 15:42:27.161473+00 2025-08-13 15:42:27.161485+00 f t Invitado Amar invitado-1755099745911@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-4816 +6445 2025-08-13 15:43:33.130709+00 2025-08-13 15:43:33.130724+00 f t Invitado Amar invitado-1755099812835@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4817 +6446 2025-08-13 16:25:19.053558+00 2025-08-13 16:25:19.053567+00 f t Invitado Amar invitado-1755102319282@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-4818 +6447 2025-08-13 16:40:37.678166+00 2025-08-13 16:40:37.678179+00 f t Monica Levy redaustraldereiki@gmail.com +541130878876 \N Ramón Falcón 1336 Ciudad de Buenos Aires 5B 5 B \N FEMALE \N \N \N 14 \N \N mlevy +6448 2025-08-13 16:50:34.087371+00 2025-08-13 16:50:34.087386+00 f t Invitado Amar invitado-1755103833538@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4819 +6449 2025-08-13 16:57:17.066714+00 2025-08-13 16:57:17.066728+00 f t Invitado Amar invitado-1755104236535@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4820 +6450 2025-08-13 17:17:25.613169+00 2025-08-13 17:17:25.613183+00 f t Invitado Amar invitado-1755105436367@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4821 +6451 2025-08-13 17:18:38.868014+00 2025-08-13 17:18:38.868024+00 f t Florencia Paulsen paulsen.florencia@gmail.com 91133893585 \N Av Cabildo 3654 9F \N FEMALE \N -34.5495598 -58.4679477 25 1572 \N fpaulsen +6452 2025-08-13 17:44:34.155821+00 2025-08-13 17:44:34.155837+00 f t Invitado Amar invitado-1755107072747@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4822 +6453 2025-08-13 17:52:27.354481+00 2025-08-13 17:52:27.354494+00 f t Invitado Amar invitado-1755107546498@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4823 +6454 2025-08-13 18:09:48.140881+00 2025-08-13 18:09:48.140892+00 f t Invitado Amar invitado-1755108587555@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-4824 +6455 2025-08-13 18:11:35.424078+00 2025-08-13 18:11:35.424088+00 f t Invitado Amar invitado-1755108694178@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4825 +6456 2025-08-13 18:13:21.986897+00 2025-08-13 18:13:21.986905+00 f t Verónica Montera vemontera@gmail.com +541132559624 \N Argerich 920 5 A \N \N \N -34.6223827 -58.475332 4 1573 \N vmontera +6457 2025-08-13 18:52:22.231725+00 2025-08-13 18:52:22.231737+00 f t Invitado Amar invitado-1755111141856@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4826 +6458 2025-08-13 19:03:47.588154+00 2025-08-13 19:03:47.588163+00 f t Invitado Amar invitado-1755111826972@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4827 +6459 2025-08-13 19:54:00.304782+00 2025-08-13 19:54:00.3048+00 f t Invitado Amar invitado-1755114839837@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4828 +6460 2025-08-13 20:42:14.136972+00 2025-08-13 20:42:14.136982+00 f t Invitado Amar invitado-1755117733358@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4829 +6461 2025-08-13 21:32:28.46962+00 2025-08-13 21:32:28.469633+00 f t Invitado Amar invitado-1755120747539@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4830 +6462 2025-08-13 21:43:48.123196+00 2025-08-13 21:43:48.12321+00 f t Invitado Amar invitado-1755121426148@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-4831 +6463 2025-08-13 21:53:02.192964+00 2025-08-13 21:53:02.192977+00 f t Invitado Amar invitado-1755121981287@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4832 +6464 2025-08-13 22:03:05.779294+00 2025-08-13 22:03:05.779307+00 f t Maria pizurnia mariiapizurnia@gmail.com +541132453904 \N Trelles 2171 103 \N \N -34.5972823 -58.4658005 34 \N \N mpizurnia +6465 2025-08-13 22:54:37.549404+00 2025-08-13 22:54:37.549415+00 f t Emilce Arévalo emilce.arevalo@gmail.com +541157803590 \N Virrey Avilés 3162 Casa \N \N -34.5731769 -58.4583448 38 \N \N earevalo +6466 2025-08-13 23:17:55.482074+00 2025-08-13 23:17:55.482083+00 f t Invitado Amar invitado-1755127074888@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4833 +6467 2025-08-14 00:06:33.068167+00 2025-08-14 00:06:33.068179+00 f t Invitado Amar invitado-1755129991473@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-4834 +6468 2025-08-14 00:13:32.965897+00 2025-08-14 00:13:32.965909+00 f t Invitado Amar invitado-1755130411636@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-4835 +6469 2025-08-14 00:15:27.217115+00 2025-08-14 00:15:27.217125+00 f t Astrid morate astridmorate@gmail.com 5491135676020 \N blanco encalada 2380 6i \N FEMALE 1982-07-18 -34.5590789 -58.4587444 3 1574 \N amorate +6470 2025-08-14 00:28:01.648157+00 2025-08-14 00:28:01.648166+00 f t Natasha Dunne ay@lanegan.net 15412484235 \N Remedios Escalada de San Martín, 1416 piso 2, departamento A, \N FEMALE 1984-05-12 -30.7973257 -60.5792835 26 1575 \N ndunne +6471 2025-08-14 01:09:09.913446+00 2025-08-14 01:09:09.913459+00 f t Invitado Amar invitado-1755133748945@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4836 +6472 2025-08-14 01:21:42.047436+00 2025-08-14 01:21:42.047445+00 f t Invitado Amar invitado-1755134501355@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4837 +6473 2025-08-14 02:19:24.410414+00 2025-08-14 02:19:24.410427+00 f t Invitado Amar invitado-1755137965422@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4838 +6474 2025-08-14 02:25:50.348026+00 2025-08-14 02:25:50.348035+00 f t Invitado Amar invitado-1755138350483@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-4839 +6475 2025-08-14 02:30:47.81047+00 2025-08-14 02:30:47.810481+00 f t Invitado Amar invitado-1755138649220@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-4840 +6476 2025-08-14 02:44:13.756952+00 2025-08-14 02:44:13.756963+00 f t Invitado Amar invitado-1755139446758@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4841 +6477 2025-08-14 02:46:33.508625+00 2025-08-14 02:46:33.508637+00 f t Invitado Amar invitado-1755139593025@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4842 +6478 2025-08-14 02:46:52.031623+00 2025-08-14 02:46:52.031636+00 f t Invitado Amar invitado-1755139612011@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4843 +6479 2025-08-14 02:50:55.813959+00 2025-08-14 02:50:55.813971+00 f t Invitado Amar invitado-1755139855194@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4844 +6480 2025-08-14 02:53:07.912678+00 2025-08-14 02:53:07.912693+00 f t Victoria Testa victoriabtesta@gmail.com +541127870670 \N Teodoro García 2332 1-2 \N \N -34.5692864 -58.4461348 3 \N \N vtesta +6481 2025-08-14 03:47:14.520048+00 2025-08-14 03:47:14.520056+00 f t Invitado Amar invitado-1755143232590@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4845 +6482 2025-08-14 03:49:07.412946+00 2025-08-14 03:49:07.412959+00 f t Invitado Amar invitado-1755143348196@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4846 +6483 2025-08-14 04:33:25.416321+00 2025-08-14 04:33:25.41633+00 f t Invitado Amar invitado-1755146004908@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4847 +6484 2025-08-14 04:34:29.421023+00 2025-08-14 04:34:29.421036+00 f t Invitado Amar invitado-1755146068816@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4848 +6485 2025-08-14 04:37:08.6443+00 2025-08-14 04:37:08.644313+00 f t Invitado Amar invitado-1755146228138@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-4849 +6486 2025-08-14 04:39:04.141713+00 2025-08-14 04:39:04.141727+00 f t Invitado Amar invitado-1755146343798@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-4850 +6487 2025-08-14 04:40:56.391663+00 2025-08-14 04:40:56.391674+00 f t Daiana Jouce day.19_1986@hotmail.com +541161850007 \N Arribeños 1611 Lote 79 \N \N -34.3856094 -58.6708663 22 \N \N djouce +6488 2025-08-14 05:11:15.449624+00 2025-08-14 05:11:15.449635+00 f t Invitado Amar invitado-1755148273481@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4851 +6489 2025-08-14 05:15:49.744188+00 2025-08-14 05:15:49.744202+00 f t María Luz Blanco mluzursi@gmail.com +541159892608 \N Buenos Aires 3645 Pb. Departamento 1 \N \N -38.6812576 -62.2375227 82 \N \N mblanco +6490 2025-08-14 05:33:46.635218+00 2025-08-14 05:33:46.635231+00 f t Invitado Amar invitado-1755149625748@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4852 +6491 2025-08-14 05:34:44.441358+00 2025-08-14 05:34:44.441366+00 f t Invitado Amar invitado-1755149683841@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4853 +6492 2025-08-14 05:37:35.576778+00 2025-08-14 05:37:35.576788+00 f t Invitado Amar invitado-1755149855422@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-4854 +6493 2025-08-14 09:25:35.256301+00 2025-08-14 09:25:35.256313+00 f t Invitado Amar invitado-1755163534155@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4855 +6494 2025-08-14 09:54:12.907386+00 2025-08-14 09:54:12.907396+00 f t Invitado Amar invitado-1755165252827@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4856 +6495 2025-08-14 09:59:53.545972+00 2025-08-14 09:59:53.545981+00 f t Invitado Amar invitado-1755165593125@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4857 +6496 2025-08-14 12:17:04.841043+00 2025-08-14 12:17:04.841058+00 f t Invitado Amar invitado-1755173822998@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4858 +6497 2025-08-14 12:53:36.182811+00 2025-08-14 12:53:36.182824+00 f t Invitado Amar invitado-1755176014323@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4859 +6498 2025-08-14 12:54:37.628845+00 2025-08-14 12:54:37.628858+00 f t Invitado Amar invitado-1755176077168@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-4860 +6499 2025-08-14 12:54:48.044582+00 2025-08-14 12:54:48.044596+00 f t Invitado Amar invitado-1755176087591@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4861 +6500 2025-08-14 13:22:41.113554+00 2025-08-14 13:22:41.113567+00 f t Invitado Amar invitado-1755177760730@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-4862 +6501 2025-08-14 13:26:35.305018+00 2025-08-14 13:26:35.305031+00 f t Invitado Amar invitado-1755177995200@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-4863 +6502 2025-08-14 13:55:45.467183+00 2025-08-14 13:55:45.4672+00 f t Invitado Amar invitado-1755179744997@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-4864 +6503 2025-08-14 14:11:33.229233+00 2025-08-14 14:11:33.229247+00 f t Invitado Amar invitado-1755180690271@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-4865 +6504 2025-08-14 14:15:19.867716+00 2025-08-14 14:15:19.867724+00 f t Invitado Amar invitado-1755180920307@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-4866 +6505 2025-08-14 14:19:50.327331+00 2025-08-14 14:19:50.327342+00 f t Invitado Amar invitado-1755181190310@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4867 +6506 2025-08-14 14:31:43.119095+00 2025-08-14 14:31:43.119108+00 f t Invitado Amar invitado-1755181903942@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4868 +6507 2025-08-14 14:33:07.724493+00 2025-08-14 14:33:07.724505+00 f t Invitado Amar invitado-1755181986205@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-4869 +6508 2025-08-14 14:42:00.922087+00 2025-08-14 14:42:00.922099+00 f t Invitado Amar invitado-1755182520981@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-4870 +6509 2025-08-14 14:50:10.928867+00 2025-08-14 14:50:10.928881+00 f t Lucas Fucek lucasfucek@gmail.com +541163608934 \N Billinghurst 534 6A \N \N \N -34.603368 -58.4156794 23 1581 \N lfucek +6510 2025-08-14 15:12:30.866703+00 2025-08-14 15:12:30.866716+00 f t Invitado Amar invitado-1755184350547@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-4871 +6511 2025-08-14 15:17:36.133137+00 2025-08-14 15:17:36.13315+00 f t Invitado Amar invitado-1755184655773@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4872 +6512 2025-08-14 15:25:07.676078+00 2025-08-14 15:25:07.676092+00 f t Invitado Amar invitado-1755185107137@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4873 +6513 2025-08-14 15:29:03.974193+00 2025-08-14 15:29:03.974206+00 f t Invitado Amar invitado-1755185343582@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4874 +6514 2025-08-14 15:42:01.199696+00 2025-08-14 15:42:01.199709+00 f t Invitado Amar invitado-1755186120712@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4875 +6515 2025-08-14 15:44:37.682923+00 2025-08-14 15:44:37.682936+00 f t Invitado Amar invitado-1755186276803@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-4876 +6516 2025-08-14 15:48:37.532718+00 2025-08-14 15:48:37.532731+00 f t Invitado Amar invitado-1755186517905@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4877 +6517 2025-08-14 15:54:17.176027+00 2025-08-14 15:54:17.176034+00 f t valentina marvaldi valenmarvaldi@gmail.com 91150398180 \N Posadas 1414 8C \N FEMALE 1998-03-09 -34.5880355 -58.3863087 9 1579 \N vmarvaldi +6518 2025-08-14 16:00:17.999008+00 2025-08-14 16:00:17.999021+00 f t Invitado Amar invitado-1755187217457@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4878 +6519 2025-08-14 16:01:33.325448+00 2025-08-14 16:01:33.325458+00 f t Invitado Amar invitado-1755187292871@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4879 +6520 2025-08-14 16:17:02.24035+00 2025-08-14 16:17:02.240363+00 f t Martin Costa mccoyo@hotmail.com +541149272153 \N México 853 1 D \N \N \N -34.6150618 -58.3782292 49 1580 \N mcosta +6521 2025-08-14 16:21:42.358905+00 2025-08-14 16:21:42.358915+00 f t Invitado Amar invitado-1755188502259@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4880 +6522 2025-08-14 16:21:59.907568+00 2025-08-14 16:21:59.907582+00 f t Invitado Amar invitado-1755188520125@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4881 +6523 2025-08-14 16:24:19.939836+00 2025-08-14 16:24:19.939846+00 f t abril canut abbcanut@gmail.com +543416405902 \N arenales 3081 5 A \N \N -34.5861448 -58.4125291 1 \N \N acanut +6524 2025-08-14 17:17:48.764032+00 2025-08-14 17:17:48.764042+00 f t Invitado Amar invitado-1755191868057@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-4882 +6525 2025-08-14 17:59:01.339733+00 2025-08-14 17:59:01.339745+00 f t Invitado Amar invitado-1755194339172@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4883 +6526 2025-08-14 18:06:46.307512+00 2025-08-14 18:06:46.307521+00 f t Invitado Amar invitado-1755194803850@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4884 +6527 2025-08-14 18:13:49.333903+00 2025-08-14 18:13:49.333914+00 f t Invitado Amar invitado-1755195228795@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-4885 +6528 2025-08-14 18:39:02.802187+00 2025-08-14 18:39:02.8022+00 f t Invitado Amar invitado-1755196742363@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-4886 +6529 2025-08-14 18:56:54.081197+00 2025-08-14 18:56:54.081205+00 f t Invitado Amar invitado-1755197813696@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4887 +6530 2025-08-14 18:57:59.078978+00 2025-08-14 18:57:59.07899+00 f t Invitado Amar invitado-1755197878909@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-4888 +6531 2025-08-14 18:58:16.212093+00 2025-08-14 18:58:16.212105+00 f t Invitado Amar invitado-1755197893749@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4889 +6532 2025-08-14 18:59:59.439405+00 2025-08-14 18:59:59.439415+00 f t Invitado Amar invitado-1755197998629@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4890 +6533 2025-08-14 19:02:25.795785+00 2025-08-14 19:02:25.795798+00 f t Invitado Amar invitado-1755198145235@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4891 +6534 2025-08-14 19:09:34.526984+00 2025-08-14 19:09:34.526992+00 f t Invitado Amar invitado-1755198573499@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-4892 +6535 2025-08-14 19:10:37.274767+00 2025-08-14 19:10:37.274779+00 f t Invitado Amar invitado-1755198636480@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-4893 +6536 2025-08-14 19:11:29.272998+00 2025-08-14 19:11:29.273011+00 f t Invitado Amar invitado-1755198688472@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4894 +6537 2025-08-14 19:48:53.90739+00 2025-08-14 19:48:53.907402+00 f t Invitado Amar invitado-1755200933190@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4895 +6538 2025-08-14 20:12:00.901451+00 2025-08-14 20:12:00.901464+00 f t Invitado Amar invitado-1755202320553@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4896 +6539 2025-08-14 20:14:48.794425+00 2025-08-14 20:14:48.794437+00 f t Invitado Amar invitado-1755202488606@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4897 +6540 2025-08-14 20:15:29.390345+00 2025-08-14 20:15:29.390354+00 f t Invitado Amar invitado-1755202528994@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-4898 +6541 2025-08-14 20:16:01.035686+00 2025-08-14 20:16:01.0357+00 f t Invitado Amar invitado-1755202561141@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-4899 +6542 2025-08-14 20:27:06.476298+00 2025-08-14 20:27:06.476311+00 f t Invitado Amar invitado-1755203226029@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-4900 +6543 2025-08-14 20:27:39.628996+00 2025-08-14 20:27:39.629007+00 f t Invitado Amar invitado-1755203259383@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-4901 +6544 2025-08-14 20:27:59.873976+00 2025-08-14 20:27:59.873989+00 f t Invitado Amar invitado-1755203279533@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4902 +6545 2025-08-14 20:51:25.503676+00 2025-08-14 20:51:25.503684+00 f t Fernanda Pastor fernandapastor.84@gmail.com 5491155849412 \N Av. Olazabal 4850 2B \N FEMALE 1987-05-02 -34.5752533 -58.4834771 29 1582 \N fpastor +6546 2025-08-14 21:04:32.608814+00 2025-08-14 21:04:32.608826+00 f t Invitado Amar invitado-1755205472607@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-4903 +6547 2025-08-14 21:41:11.654617+00 2025-08-14 21:41:11.654628+00 f t Invitado Amar invitado-1755207669459@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-4904 +6548 2025-08-14 22:01:56.019278+00 2025-08-14 22:01:56.019288+00 f t Invitado Amar invitado-1755208915666@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4905 +6549 2025-08-14 22:33:43.270492+00 2025-08-14 22:33:43.270501+00 f t Invitado Amar invitado-1755210823198@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-4906 +6550 2025-08-14 22:38:25.741406+00 2025-08-14 22:38:25.741416+00 f t Invitado Amar invitado-1755211105213@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4907 +6551 2025-08-14 22:39:31.25278+00 2025-08-14 22:39:31.252791+00 f t Invitado Amar invitado-1755211170769@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-4908 +6552 2025-08-14 22:45:39.126774+00 2025-08-14 22:45:39.126783+00 f t Invitado Amar invitado-1755211538875@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4909 +6553 2025-08-14 22:49:25.136451+00 2025-08-14 22:49:25.13646+00 f t Invitado Amar invitado-1755211764473@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-4910 +6554 2025-08-14 23:24:30.262108+00 2025-08-14 23:24:30.262125+00 f t Invitado Amar invitado-1755213869067@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4911 +6555 2025-08-14 23:30:49.737011+00 2025-08-14 23:30:49.737025+00 f t Invitado Amar invitado-1755214248570@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4912 +6556 2025-08-15 00:06:29.519031+00 2025-08-15 00:06:29.519041+00 f t Invitado Amar invitado-1755216387502@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-4913 +6557 2025-08-15 00:07:28.981479+00 2025-08-15 00:07:28.981493+00 f t Karina Serrano serranokarina1975@gmail.com +542346500218 \N Marta lynch 451 15 rio \N \N -34.6094898 -58.3624968 30 \N \N kserrano +6558 2025-08-15 00:53:32.154538+00 2025-08-15 00:53:32.154547+00 f t Invitado Amar invitado-1755219211396@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4914 +6559 2025-08-15 01:10:09.242059+00 2025-08-15 01:10:09.242073+00 f t Invitado Amar invitado-1755220144462@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-4915 +6560 2025-08-15 01:25:55.461217+00 2025-08-15 01:25:55.461227+00 f t Invitado Amar invitado-1755221156622@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4916 +6561 2025-08-15 01:27:41.308627+00 2025-08-15 01:27:41.308637+00 f t Invitado Amar invitado-1755221260972@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4917 +6562 2025-08-15 01:45:01.132243+00 2025-08-15 01:45:01.132256+00 f t Invitado Amar invitado-1755222301741@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-4918 +6563 2025-08-15 01:51:31.087621+00 2025-08-15 01:51:31.087632+00 f t Invitado Amar invitado-1755222689265@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4919 +6564 2025-08-15 02:11:38.374907+00 2025-08-15 02:11:38.37492+00 f t Invitado Amar invitado-1755223897864@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-4920 +6565 2025-08-15 02:42:03.928902+00 2025-08-15 02:42:03.928912+00 f t Invitado Amar invitado-1755225723439@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-4921 +6566 2025-08-15 03:19:02.978532+00 2025-08-15 03:19:02.978546+00 f t Invitado Amar invitado-1755227942347@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4922 +6567 2025-08-15 03:44:44.900415+00 2025-08-15 03:44:44.900424+00 f t Invitado Amar invitado-1755229483513@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-4923 +6568 2025-08-15 03:46:59.020648+00 2025-08-15 03:46:59.020662+00 f t Invitado Amar invitado-1755229618657@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-4924 +6569 2025-08-15 03:47:50.612494+00 2025-08-15 03:47:50.612506+00 f t Invitado Amar invitado-1755229670016@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-4925 +6570 2025-08-15 04:38:14.000834+00 2025-08-15 04:38:14.000844+00 f t Invitado Amar invitado-1755232692442@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4926 +6571 2025-08-15 05:05:35.799967+00 2025-08-15 05:05:35.799981+00 f t Invitado Amar invitado-1755234335372@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-4927 +6572 2025-08-15 07:07:05.054091+00 2025-08-15 07:07:05.054107+00 f t Invitado Amar invitado-1755241623761@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4928 +6573 2025-08-15 07:12:01.854576+00 2025-08-15 07:12:01.854589+00 f t Invitado Amar invitado-1755241921046@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4929 +6574 2025-08-15 08:16:23.140811+00 2025-08-15 08:16:23.140826+00 f t Invitado Amar invitado-1755245782509@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-4930 +6575 2025-08-15 08:17:51.502872+00 2025-08-15 08:17:51.502886+00 f t Invitado Amar invitado-1755245871075@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-4931 +6576 2025-08-15 09:48:43.496543+00 2025-08-15 09:48:43.496556+00 f t Invitado Amar invitado-1755251321457@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-4932 +6577 2025-08-15 09:52:38.975752+00 2025-08-15 09:52:38.975766+00 f t Invitado Amar invitado-1755251557097@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-4933 +6578 2025-08-15 12:03:44.088501+00 2025-08-15 12:03:44.088512+00 f t Invitado Amar invitado-1755259423717@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-4934 +6579 2025-08-15 12:40:20.585091+00 2025-08-15 12:40:20.585105+00 f t Invitado Amar invitado-1755261620303@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4935 +6580 2025-08-15 12:42:20.581423+00 2025-08-15 12:42:20.581433+00 f t Invitado Amar invitado-1755261740513@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-4936 +6581 2025-08-15 12:43:19.15401+00 2025-08-15 12:43:19.154022+00 f t Invitado Amar invitado-1755261799086@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-4937 +6582 2025-08-15 12:51:13.57109+00 2025-08-15 12:51:13.571101+00 f t Invitado Amar invitado-1755262273284@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-4938 +6583 2025-08-15 13:27:51.090085+00 2025-08-15 13:27:51.0901+00 f t Invitado Amar invitado-1755264470650@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-4939 +6584 2025-08-15 13:29:56.339989+00 2025-08-15 13:29:56.340001+00 f t Camila Fernandez Nodar camilafnodar@gmail.com +541165460532 \N Sucre 878 PB \N \N -34.5545115 -58.4390746 3 \N \N cfernandeznodar +6585 2025-08-15 13:45:57.357491+00 2025-08-15 13:45:57.357504+00 f t Invitado Amar invitado-1755265556484@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-4940 +6586 2025-08-15 14:01:23.636374+00 2025-08-15 14:01:23.636392+00 f t Invitado Amar invitado-1755266482183@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4941 +6587 2025-08-15 14:43:34.741891+00 2025-08-15 14:43:34.741903+00 f t Invitado Amar invitado-1755269015925@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4942 +13323 2025-11-14 20:56:25.790043+00 2025-11-14 20:56:25.790051+00 f t Invitado Amar invitado-1763153785366@example.com 55555555 \N \N \N \N \N 52 \N \N \N +6589 2025-08-15 14:46:11.054728+00 2025-08-15 14:46:11.054743+00 f t Invitado Amar invitado-1755269170670@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4943 +6590 2025-08-15 14:48:45.862421+00 2025-08-15 14:48:45.862432+00 f t Invitado Amar invitado-1755269327034@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4944 +6591 2025-08-15 15:10:24.294676+00 2025-08-15 15:10:24.29469+00 f t Invitado Amar invitado-1755270629467@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-4945 +6592 2025-08-15 15:16:15.508524+00 2025-08-15 15:16:15.508536+00 f t Invitado Amar invitado-1755270976165@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-4946 +6593 2025-08-15 15:34:45.799698+00 2025-08-15 15:34:45.799708+00 f t Invitado Amar invitado-1755272085380@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-4947 +6594 2025-08-15 15:36:46.529107+00 2025-08-15 15:36:46.529121+00 f t Invitado Amar invitado-1755272205828@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-4948 +6595 2025-08-15 15:36:52.65267+00 2025-08-15 15:36:52.652683+00 f t Invitado Amar invitado-1755272212469@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4949 +6596 2025-08-15 15:38:47.537457+00 2025-08-15 15:38:47.537469+00 f t Invitado Amar invitado-1755272327309@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4950 +6597 2025-08-15 15:41:25.843444+00 2025-08-15 15:41:25.843454+00 f t yamilet gamarra ygs7419@gmail.com 🇦🇷+5491126338908 \N bonpland 2413 \N \N FEMALE 1974-12-20 -34.5777029 -58.4307461 1 1584 \N ygamarra +6598 2025-08-15 15:49:38.061225+00 2025-08-15 15:49:38.061235+00 f t Invitado Amar invitado-1755272977650@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4951 +6599 2025-08-15 15:55:24.125734+00 2025-08-15 15:55:24.125747+00 f t Invitado Amar invitado-1755273323619@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4952 +6600 2025-08-15 16:08:18.964761+00 2025-08-15 16:08:18.96477+00 f t Invitado Amar invitado-1755274098575@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-4953 +6601 2025-08-15 16:20:53.686023+00 2025-08-15 16:20:53.686032+00 f t Invitado Amar invitado-1755274852990@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-4954 +6602 2025-08-15 17:25:33.884104+00 2025-08-15 17:25:33.884121+00 f t Invitado Amar invitado-1755278732095@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4955 +6603 2025-08-15 17:26:22.671694+00 2025-08-15 17:26:22.671705+00 f t Invitado Amar invitado-1755278780725@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4956 +6604 2025-08-15 17:33:21.657518+00 2025-08-15 17:33:21.657528+00 f t Invitado Amar invitado-1755279201314@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4957 +6605 2025-08-15 17:43:12.569802+00 2025-08-15 17:43:12.569811+00 f t Invitado Amar invitado-1755279791892@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4958 +6606 2025-08-15 18:04:44.782228+00 2025-08-15 18:04:44.78224+00 f t Invitado Amar invitado-1755281082726@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4959 +6607 2025-08-15 18:50:12.780669+00 2025-08-15 18:50:12.78068+00 f t Invitado Amar invitado-1755283812108@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-4960 +6608 2025-08-15 19:02:37.423777+00 2025-08-15 19:02:37.423789+00 f t Invitado Amar invitado-1755284555646@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4961 +6609 2025-08-15 19:07:31.974902+00 2025-08-15 19:07:31.974912+00 f t Invitado Amar invitado-1755284851342@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4962 +6610 2025-08-15 19:33:15.988825+00 2025-08-15 19:33:15.98884+00 f t Invitado Amar invitado-1755286395339@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4963 +6611 2025-08-15 20:11:32.477959+00 2025-08-15 20:11:32.477968+00 f t Invitado Amar invitado-1755288691964@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-4964 +6612 2025-08-15 20:18:07.429255+00 2025-08-15 20:18:07.429268+00 f t Invitado Amar invitado-1755289088405@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-4965 +6613 2025-08-15 20:19:54.897932+00 2025-08-15 20:19:54.897944+00 f t Invitado Amar invitado-1755289196381@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-4966 +6614 2025-08-15 20:24:37.087072+00 2025-08-15 20:24:37.087087+00 f t Pamela Herrera herrerapamela.n@gmail.com +541131471406 \N Warnes 123 7B \N \N \N -34.6035112 -58.4390765 26 1588 \N pherrera +6615 2025-08-15 20:29:03.120125+00 2025-08-15 20:29:03.120138+00 f t Invitado Amar invitado-1755289741793@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-4967 +6616 2025-08-15 20:32:06.187214+00 2025-08-15 20:32:06.187225+00 f t Invitado Amar invitado-1755289925438@example.com 55555555 \N \N \N \N \N 69 \N \N iamar-4968 +6617 2025-08-15 20:37:29.1299+00 2025-08-15 20:37:29.129916+00 f t Invitado Amar invitado-1755290248659@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-4969 +6618 2025-08-15 20:41:08.798173+00 2025-08-15 20:41:08.798187+00 f t Invitado Amar invitado-1755290467201@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-4970 +6619 2025-08-15 20:47:02.3278+00 2025-08-15 20:47:02.32781+00 f t Myriam Arditi myriamarditi@gmail.com 🇦🇷+5491158639554 \N Cuyo 378 \N \N FEMALE \N -34.4865707 -58.5086716 6 1585 \N marditi +6620 2025-08-15 21:47:22.905349+00 2025-08-15 21:47:22.905359+00 f t Invitado Amar invitado-1755294436529@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4971 +6621 2025-08-15 22:07:29.417073+00 2025-08-15 22:07:29.417084+00 f t Milagros Guzman milyguzman065@gmail.com +541122512732 \N Av corrientes 3150 4c \N \N -34.6041749 -58.4096692 18 \N \N mguzman +6622 2025-08-15 22:10:18.366714+00 2025-08-15 22:10:18.366728+00 f t Invitado Amar invitado-1755295816775@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4972 +6623 2025-08-15 22:14:45.89982+00 2025-08-15 22:14:45.89983+00 f t Invitado Amar invitado-1755296084662@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4973 +6624 2025-08-15 22:16:45.740854+00 2025-08-15 22:16:45.740865+00 f t Invitado Amar invitado-1755296204248@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4974 +6625 2025-08-15 22:31:16.914899+00 2025-08-15 22:31:16.914911+00 f t Invitado Amar invitado-1755297076694@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4975 +6626 2025-08-15 22:41:36.97192+00 2025-08-15 22:41:36.971932+00 f t Invitado Amar invitado-1755297697145@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4976 +6627 2025-08-15 22:52:30.107797+00 2025-08-15 22:52:30.107807+00 f t Invitado Amar invitado-1755298349152@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4977 +6628 2025-08-15 23:03:23.439116+00 2025-08-15 23:03:23.439152+00 f t Invitado Amar invitado-1755299003066@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4978 +6629 2025-08-15 23:18:18.258226+00 2025-08-15 23:18:18.258236+00 f t Claudio cicchinelli chc1967@gmail.com 5491137844164 \N José Martí 452 PB B \N MALE 1967-09-20 -34.6369145 -58.4698544 4 1586 \N ccicchinelli +6630 2025-08-15 23:24:11.239712+00 2025-08-15 23:24:11.239719+00 f t Martín darakdjian martin.arman.darak@gmail.com 5491132494327 \N Terrada 4061 Nueva York u salvador María del carril \N MALE 1963-05-28 -34.5902456 -58.4967231 51 1587 \N mdarakdjian +6631 2025-08-15 23:38:34.462943+00 2025-08-15 23:38:34.462954+00 f t Invitado Amar invitado-1755301114633@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-4979 +6632 2025-08-16 00:05:47.997276+00 2025-08-16 00:05:47.997287+00 f t Invitado Amar invitado-1755302747914@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-4980 +6633 2025-08-16 00:22:57.800009+00 2025-08-16 00:22:57.800021+00 f t Invitado Amar invitado-1755303775590@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4981 +6634 2025-08-16 00:24:39.346089+00 2025-08-16 00:24:39.346101+00 f t Invitado Amar invitado-1755303878493@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4982 +6635 2025-08-16 00:49:41.635093+00 2025-08-16 00:49:41.635103+00 f t Agnetha Pereyra dra.agnethap@gmail.com +541151077172 \N La pampa 2955 1A/ entre conesa y pampa \N \N \N -34.5678344 -58.4595044 3 1591 \N apereyra +6636 2025-08-16 01:22:08.501926+00 2025-08-16 01:22:08.50194+00 f t Invitado Amar invitado-1755307327195@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4983 +6637 2025-08-16 01:36:17.509122+00 2025-08-16 01:36:17.509132+00 f t Invitado Amar invitado-1755308176569@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-4984 +6638 2025-08-16 01:39:17.544086+00 2025-08-16 01:39:17.544099+00 f t Invitado Amar invitado-1755308359392@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4985 +6639 2025-08-16 01:58:58.604982+00 2025-08-16 01:58:58.604995+00 f t Invitado Amar invitado-1755309539816@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-4986 +6640 2025-08-16 02:29:04.427539+00 2025-08-16 02:29:04.427551+00 f t Invitado Amar invitado-1755311339372@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4987 +6641 2025-08-16 04:47:24.042864+00 2025-08-16 04:47:24.042879+00 f t Invitado Amar invitado-1755319643460@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-4988 +6642 2025-08-16 04:47:33.849718+00 2025-08-16 04:47:33.849729+00 f t Invitado Amar invitado-1755319652303@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-4989 +6643 2025-08-16 04:51:49.689179+00 2025-08-16 04:51:49.689194+00 f t Invitado Amar invitado-1755319908627@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-4990 +6644 2025-08-16 05:03:57.777726+00 2025-08-16 05:03:57.777737+00 f t Invitado Amar invitado-1755320637374@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-4991 +6645 2025-08-16 07:01:56.829298+00 2025-08-16 07:01:56.829311+00 f t Invitado Amar invitado-1755327715737@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4992 +6646 2025-08-16 07:39:33.480442+00 2025-08-16 07:39:33.480454+00 f t Invitado Amar invitado-1755329973130@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-4993 +6647 2025-08-16 11:10:04.272157+00 2025-08-16 11:10:04.272172+00 f t Invitado Amar invitado-1755342603041@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4994 +6648 2025-08-16 12:24:59.002835+00 2025-08-16 12:24:59.002848+00 f t Invitado Amar invitado-1755347094420@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-4995 +6649 2025-08-16 12:34:42.812638+00 2025-08-16 12:34:42.812652+00 f t Invitado Amar invitado-1755347681887@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-4996 +6650 2025-08-16 13:21:21.330755+00 2025-08-16 13:21:21.330767+00 f t Invitado Amar invitado-1755350480408@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-4997 +6651 2025-08-16 13:22:05.591914+00 2025-08-16 13:22:05.591928+00 f t Invitado Amar invitado-1755350525073@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-4998 +6652 2025-08-16 13:26:43.903157+00 2025-08-16 13:26:43.903172+00 f t Invitado Amar invitado-1755350803094@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-4999 +6653 2025-08-16 13:27:45.672293+00 2025-08-16 13:27:45.672305+00 f t Invitado Amar invitado-1755350865163@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5000 +6654 2025-08-16 13:31:41.037404+00 2025-08-16 13:31:41.037417+00 f t Invitado Amar invitado-1755351100533@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5001 +6655 2025-08-16 13:54:03.568965+00 2025-08-16 13:54:03.568978+00 f t Invitado Amar invitado-1755352442840@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5002 +6656 2025-08-16 13:55:08.426826+00 2025-08-16 13:55:08.426836+00 f t Invitado Amar invitado-1755352507677@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5003 +6657 2025-08-16 13:57:44.890295+00 2025-08-16 13:57:44.890305+00 f t Invitado Amar invitado-1755352664162@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5004 +6658 2025-08-16 13:59:29.825716+00 2025-08-16 13:59:29.825725+00 f t Invitado Amar invitado-1755352769052@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5005 +6659 2025-08-16 14:52:51.227665+00 2025-08-16 14:52:51.227675+00 f t Invitado Amar invitado-1755355970881@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5006 +6660 2025-08-16 14:55:45.879506+00 2025-08-16 14:55:45.879518+00 f t Invitado Amar invitado-1755356145306@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-5007 +6661 2025-08-16 14:56:00.281048+00 2025-08-16 14:56:00.28106+00 f t Invitado Amar invitado-1755356159969@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-5008 +6662 2025-08-16 15:07:53.486423+00 2025-08-16 15:07:53.486436+00 f t MARIA ANGELICA BENEDETTI angelicabenedetti@gmail.com +541144143333 \N Mercedes 4102 4102 11/21 \N \N -34.6038609 -58.5095485 21 \N \N mbenedetti +6663 2025-08-16 16:17:28.522982+00 2025-08-16 16:17:28.522991+00 f t Invitado Amar invitado-1755361046436@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-5009 +6664 2025-08-16 16:33:13.301456+00 2025-08-16 16:33:13.301467+00 f t Invitado Amar invitado-1755361993257@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5010 +6665 2025-08-16 17:25:35.260736+00 2025-08-16 17:25:35.260748+00 f t Invitado Amar invitado-1755365134638@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5011 +6666 2025-08-16 17:33:57.96576+00 2025-08-16 17:33:57.965774+00 f t Invitado Amar invitado-1755365637575@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5012 +6667 2025-08-16 17:34:48.678636+00 2025-08-16 17:34:48.678649+00 f t Invitado Amar invitado-1755365687073@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-5013 +6668 2025-08-16 17:39:01.325746+00 2025-08-16 17:39:01.325759+00 f t Invitado Amar invitado-1755365940673@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5014 +6669 2025-08-16 17:46:39.23456+00 2025-08-16 17:46:39.234572+00 f t Invitado Amar invitado-1755366398890@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5015 +6670 2025-08-16 17:54:50.726208+00 2025-08-16 17:54:50.726217+00 f t Invitado Amar invitado-1755366890010@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5016 +6671 2025-08-16 18:22:40.317553+00 2025-08-16 18:22:40.317562+00 f t Lorena miranda lorenaruthmirandaok@gmail.com 91135162534 \N Alberdi 5785 pb 2 \N FEMALE 1982-07-08 -34.6510441 -58.502117 19 1590 \N lmiranda +6672 2025-08-16 18:27:03.414896+00 2025-08-16 18:27:03.41491+00 f t Invitado Amar invitado-1755368822581@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-5017 +6673 2025-08-16 18:27:23.175889+00 2025-08-16 18:27:23.1759+00 f t Invitado Amar invitado-1755368842820@example.com 55555555 \N \N \N \N \N 66 \N \N iamar-5018 +6674 2025-08-16 18:28:18.281003+00 2025-08-16 18:28:18.281015+00 f t Invitado Amar invitado-1755368897785@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-5019 +6675 2025-08-16 18:36:48.941276+00 2025-08-16 18:36:48.94129+00 f t Invitado Amar invitado-1755369408514@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-5020 +6676 2025-08-16 19:20:15.631688+00 2025-08-16 19:20:15.631701+00 f t Invitado Amar invitado-1755372014448@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5021 +6677 2025-08-16 19:23:44.148591+00 2025-08-16 19:23:44.148603+00 f t Invitado Amar invitado-1755372223236@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5022 +6678 2025-08-16 19:51:28.307742+00 2025-08-16 19:51:28.30775+00 f t Invitado Amar invitado-1755373886844@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5023 +6679 2025-08-16 20:09:01.028742+00 2025-08-16 20:09:01.028751+00 f t Invitado Amar invitado-1755374940587@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5024 +6680 2025-08-16 20:56:39.730041+00 2025-08-16 20:56:39.730051+00 f t Invitado Amar invitado-1755377798950@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-5025 +6681 2025-08-16 22:37:54.412886+00 2025-08-16 22:37:54.412895+00 f t Invitado Amar invitado-1755383873278@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5026 +6682 2025-08-16 23:05:29.207893+00 2025-08-16 23:05:29.207906+00 f t Invitado Amar invitado-1755385528582@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5027 +6683 2025-08-16 23:05:59.643427+00 2025-08-16 23:05:59.643435+00 f t Paula marina Dayan eutoniaymovimiento@gmail.com 🇦🇷+5491160226022 \N Sarmiento 4388 \N \N FEMALE \N -34.6042805 -58.427088 23 1593 \N pdayan +6684 2025-08-16 23:10:51.604316+00 2025-08-16 23:10:51.60433+00 f t Invitado Amar invitado-1755385851151@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5028 +6685 2025-08-16 23:14:12.521033+00 2025-08-16 23:14:12.521043+00 f t Invitado Amar invitado-1755386051573@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5029 +6686 2025-08-16 23:20:19.975947+00 2025-08-16 23:20:19.975964+00 f t Invitado Amar invitado-1755386414955@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5030 +6687 2025-08-16 23:45:04.163078+00 2025-08-16 23:45:04.163091+00 f t Invitado Amar invitado-1755387903248@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5031 +13324 2025-11-14 21:29:05.658685+00 2025-11-14 21:29:05.658697+00 f t Invitado Amar invitado-1763155745207@example.com 55555555 \N \N \N \N \N 112 \N \N \N +6689 2025-08-17 00:32:23.98033+00 2025-08-17 00:32:23.980339+00 f t Invitado Amar invitado-1755390743213@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5032 +6690 2025-08-17 00:32:57.057136+00 2025-08-17 00:32:57.057144+00 f t Camilo Valencia caval88@gmail.com +5491123621763 \N Nuñez 1585 3 a \N \N -34.5457394 -58.4597739 25 \N \N cvalencia +6691 2025-08-17 00:56:46.759667+00 2025-08-17 00:56:46.759676+00 f t Invitado Amar invitado-1755392206021@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5033 +6692 2025-08-17 01:02:07.630981+00 2025-08-17 01:02:07.63099+00 f t Invitado Amar invitado-1755392526361@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5034 +6693 2025-08-17 01:02:45.581199+00 2025-08-17 01:02:45.581211+00 f t Invitado Amar invitado-1755392564193@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5035 +6694 2025-08-17 01:05:31.620532+00 2025-08-17 01:05:31.620545+00 f t Invitado Amar invitado-1755392730725@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5036 +6695 2025-08-17 01:43:19.660541+00 2025-08-17 01:43:19.660553+00 f t Invitado Amar invitado-1755394998360@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5037 +6696 2025-08-17 01:59:53.881492+00 2025-08-17 01:59:53.881503+00 f t Invitado Amar invitado-1755395993481@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-5038 +6697 2025-08-17 02:25:21.390603+00 2025-08-17 02:25:21.390617+00 f t Invitado Amar invitado-1755397520911@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-5039 +6698 2025-08-17 03:15:26.458131+00 2025-08-17 03:15:26.458142+00 f t Invitado Amar invitado-1755400525175@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5040 +6699 2025-08-17 03:25:14.577591+00 2025-08-17 03:25:14.577605+00 f t Invitado Amar invitado-1755401107250@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5041 +6700 2025-08-17 03:28:30.477693+00 2025-08-17 03:28:30.477703+00 f t Invitado Amar invitado-1755401310067@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5042 +6701 2025-08-17 04:09:42.931445+00 2025-08-17 04:09:42.931455+00 f t Invitado Amar invitado-1755403782366@example.com 55555555 \N \N \N \N \N 149 \N \N iamar-5043 +6702 2025-08-17 04:58:05.936243+00 2025-08-17 04:58:05.936255+00 f t Invitado Amar invitado-1755406685584@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5044 +6703 2025-08-17 05:07:44.938722+00 2025-08-17 05:07:44.938734+00 f t Invitado Amar invitado-1755407264504@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5045 +6704 2025-08-17 05:08:46.682343+00 2025-08-17 05:08:46.682356+00 f t Invitado Amar invitado-1755407326310@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5046 +6705 2025-08-17 05:33:41.722706+00 2025-08-17 05:33:41.722715+00 f t Invitado Amar invitado-1755408821413@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-5047 +6706 2025-08-17 06:00:01.921979+00 2025-08-17 06:00:01.921995+00 f t Invitado Amar invitado-1755410401307@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5048 +6707 2025-08-17 06:35:38.520539+00 2025-08-17 06:35:38.52055+00 f t Invitado Amar invitado-1755412538430@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-5049 +6708 2025-08-17 06:48:58.171458+00 2025-08-17 06:48:58.171468+00 f t Invitado Amar invitado-1755413338295@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-5050 +6709 2025-08-17 06:58:09.023219+00 2025-08-17 06:58:09.023229+00 f t Invitado Amar invitado-1755413888656@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-5051 +6710 2025-08-17 09:56:19.712634+00 2025-08-17 09:56:19.712645+00 f t Maria Nela Maldonado mnela.maldonado@gmail.com +541125448960 \N Santa rosa 1414 Casa \N \N \N -34.525763 -58.4748977 59 1596 \N mmaldonado +6711 2025-08-17 11:10:54.733861+00 2025-08-17 11:10:54.733875+00 f t Invitado Amar invitado-1755429054319@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5052 +6712 2025-08-17 11:14:08.533843+00 2025-08-17 11:14:08.533852+00 f t Invitado Amar invitado-1755429247992@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-5053 +6713 2025-08-17 11:57:31.416915+00 2025-08-17 11:57:31.416924+00 f t Invitado Amar invitado-1755431851254@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5054 +6714 2025-08-17 12:32:19.065321+00 2025-08-17 12:32:19.065337+00 f t Invitado Amar invitado-1755433937926@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5055 +6715 2025-08-17 12:34:13.578295+00 2025-08-17 12:34:13.578304+00 f t Invitado Amar invitado-1755434052652@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5056 +6716 2025-08-17 12:58:57.186147+00 2025-08-17 12:58:57.186161+00 f t Invitado Amar invitado-1755435536649@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5057 +6717 2025-08-17 13:14:04.198084+00 2025-08-17 13:14:04.198098+00 f t Marcelo Bottaro inglogmp@gmail.comi +1150534556 \N Colombres 22 1a \N \N -34.6296213 -58.4166597 11 \N \N mbottaro +6718 2025-08-17 14:05:28.723434+00 2025-08-17 14:05:28.723443+00 f t Invitado Amar invitado-1755439528997@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5058 +6719 2025-08-17 14:16:53.762316+00 2025-08-17 14:16:53.762325+00 f t Invitado Amar invitado-1755440213404@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5059 +6720 2025-08-17 14:31:47.062443+00 2025-08-17 14:31:47.062453+00 f t Federico Quintana fedexq@me.com +541140312238 \N Donato alvarez 924 12 a \N \N \N -34.6155823 -58.4587501 14 1597 \N fquintana +6721 2025-08-17 15:01:44.397859+00 2025-08-17 15:01:44.397871+00 f t Invitado Amar invitado-1755442904012@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-5060 +6722 2025-08-17 15:05:43.583375+00 2025-08-17 15:05:43.583384+00 f t Invitado Amar invitado-1755443143200@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5061 +6723 2025-08-17 16:15:00.426496+00 2025-08-17 16:15:00.426505+00 f t Invitado Amar invitado-1755447300060@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-5062 +6724 2025-08-17 16:18:28.555899+00 2025-08-17 16:18:28.555909+00 f t Invitado Amar invitado-1755447509163@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-5063 +6725 2025-08-17 16:19:29.951741+00 2025-08-17 16:19:29.951752+00 f t Invitado Amar invitado-1755447569528@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5064 +6726 2025-08-17 16:22:20.089157+00 2025-08-17 16:22:20.089166+00 f t Invitado Amar invitado-1755447738015@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5065 +6727 2025-08-17 16:51:37.786751+00 2025-08-17 16:51:37.786763+00 f t Invitado Amar invitado-1755449497378@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5066 +6728 2025-08-17 17:54:38.366244+00 2025-08-17 17:54:38.366255+00 f t Invitado Amar invitado-1755453277998@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5067 +6729 2025-08-17 18:10:12.922499+00 2025-08-17 18:10:12.922513+00 f t Invitado Amar invitado-1755454212127@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5068 +6730 2025-08-17 18:15:15.809954+00 2025-08-17 18:15:15.809964+00 f t Lucrecia Treviso lalutreviso@gmail.com +541123874351 \N Loyola 788 Es bar. Se llama Doble sentido \N \N \N -34.5937155 -58.4377282 26 1598 \N ltreviso +6731 2025-08-17 19:39:22.348928+00 2025-08-17 19:39:22.34894+00 f t Invitado Amar invitado-1755459561973@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5069 +6732 2025-08-17 20:03:00.373347+00 2025-08-17 20:03:00.373358+00 f t Laura sraik mariasraik276@gmail.com 5491170025588 \N Darwin 1578 Casa \N FEMALE 1974-12-15 -34.5864113 -58.4352466 1 1599 \N lsraik +6733 2025-08-17 20:39:01.784681+00 2025-08-17 20:39:01.784697+00 f t Invitado Amar invitado-1755463141168@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5070 +6734 2025-08-17 21:00:15.806641+00 2025-08-17 21:00:15.806654+00 f t Invitado Amar invitado-1755464415194@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5071 +6735 2025-08-17 21:01:54.143909+00 2025-08-17 21:01:54.143917+00 f t Invitado Amar invitado-1755464513540@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5072 +6736 2025-08-17 21:22:25.798105+00 2025-08-17 21:22:25.798118+00 f t Invitado Amar invitado-1755465745367@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-5073 +6737 2025-08-17 21:45:35.448433+00 2025-08-17 21:45:35.448443+00 f t Invitado Amar invitado-1755467134744@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5074 +6738 2025-08-17 21:49:54.92258+00 2025-08-17 21:49:54.922592+00 f t Invitado Amar invitado-1755467393559@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-5075 +6739 2025-08-17 21:55:31.162831+00 2025-08-17 21:55:31.162843+00 f t Invitado Amar invitado-1755467730184@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-5076 +6740 2025-08-17 21:59:31.752317+00 2025-08-17 21:59:31.752329+00 f t Invitado Amar invitado-1755467970824@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-5077 +6741 2025-08-17 22:01:01.016407+00 2025-08-17 22:01:01.01642+00 f t Invitado Amar invitado-1755468060249@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5078 +6742 2025-08-17 22:01:45.885513+00 2025-08-17 22:01:45.885527+00 f t Invitado Amar invitado-1755468104671@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-5079 +6743 2025-08-17 22:20:47.221704+00 2025-08-17 22:20:47.221718+00 f t Invitado Amar invitado-1755469246583@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-5080 +6744 2025-08-17 22:28:43.072502+00 2025-08-17 22:28:43.072511+00 f t Invitado Amar invitado-1755469722521@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-5081 +6745 2025-08-17 23:00:05.267772+00 2025-08-17 23:00:05.267784+00 f t Invitado Amar invitado-1755471603977@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5082 +6746 2025-08-17 23:13:08.115908+00 2025-08-17 23:13:08.115924+00 f t Invitado Amar invitado-1755472387603@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5083 +6747 2025-08-17 23:27:06.736395+00 2025-08-17 23:27:06.736408+00 f t Invitado Amar invitado-1755473226110@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5084 +6748 2025-08-17 23:30:43.805069+00 2025-08-17 23:30:43.805079+00 f t Invitado Amar invitado-1755473443399@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-5085 +6749 2025-08-17 23:45:10.528594+00 2025-08-17 23:45:10.528607+00 f t Invitado Amar invitado-1755474310036@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5086 +6750 2025-08-17 23:47:26.709518+00 2025-08-17 23:47:26.709529+00 f t Invitado Amar invitado-1755474446329@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5087 +6751 2025-08-18 00:39:19.3919+00 2025-08-18 00:39:19.391914+00 f t Invitado Amar invitado-1755477559029@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5088 +6752 2025-08-18 00:47:15.033083+00 2025-08-18 00:47:15.033095+00 f t Invitado Amar invitado-1755478034513@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5089 +6753 2025-08-18 01:43:14.56968+00 2025-08-18 01:43:14.569689+00 f t Invitado Amar invitado-1755481393838@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-5090 +6754 2025-08-18 01:45:02.508097+00 2025-08-18 01:45:02.508111+00 f t Invitado Amar invitado-1755481501521@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-5091 +6755 2025-08-18 02:08:27.569703+00 2025-08-18 02:08:27.569713+00 f t Invitado Amar invitado-1755482907349@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5092 +6756 2025-08-18 02:10:46.404333+00 2025-08-18 02:10:46.404344+00 f t Invitado Amar invitado-1755483046038@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5093 +6757 2025-08-18 02:32:58.597418+00 2025-08-18 02:32:58.597426+00 f t Invitado Amar invitado-1755484377922@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5094 +6758 2025-08-18 03:55:34.150729+00 2025-08-18 03:55:34.150738+00 f t Invitado Amar invitado-1755489333402@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5095 +6759 2025-08-18 04:10:48.871441+00 2025-08-18 04:10:48.871453+00 f t Invitado Amar invitado-1755490248744@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5096 +6760 2025-08-18 04:17:00.181067+00 2025-08-18 04:17:00.18108+00 f t Invitado Amar invitado-1755490619729@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-5097 +6761 2025-08-18 04:26:43.174988+00 2025-08-18 04:26:43.175002+00 f t Invitado Amar invitado-1755491205180@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5098 +6762 2025-08-18 04:48:36.666754+00 2025-08-18 04:48:36.666767+00 f t Invitado Amar invitado-1755492516221@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-5099 +6763 2025-08-18 08:11:50.934463+00 2025-08-18 08:11:50.934474+00 f t Invitado Amar invitado-1755504710401@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5100 +6764 2025-08-18 11:36:02.122758+00 2025-08-18 11:36:02.122771+00 f t Invitado Amar invitado-1755516959606@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-5101 +6765 2025-08-18 11:43:46.819305+00 2025-08-18 11:43:46.819319+00 f t Invitado Amar invitado-1755517425145@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5102 +6766 2025-08-18 11:44:50.269027+00 2025-08-18 11:44:50.269037+00 f t Invitado Amar invitado-1755517488791@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5103 +6767 2025-08-18 12:09:49.431683+00 2025-08-18 12:09:49.431698+00 f t Invitado Amar invitado-1755518987835@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-5104 +6768 2025-08-18 12:11:48.097566+00 2025-08-18 12:11:48.09758+00 f t LARA CANDELA RAMIREZ canderamirez02@outlook.es +541121728345 \N DIEGO PALMA 1250 121 \N \N -34.4784543 -58.5313327 77 \N \N lramirez-2 +6769 2025-08-18 12:13:45.507117+00 2025-08-18 12:13:45.507126+00 f t Invitado Amar invitado-1755519225087@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5105 +6771 2025-08-18 13:10:07.037412+00 2025-08-18 13:10:07.037426+00 f t Invitado Amar invitado-1755522606047@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5106 +6772 2025-08-18 13:24:59.584431+00 2025-08-18 13:24:59.584445+00 f t Invitado Amar invitado-1755523498771@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-5107 +6773 2025-08-18 13:36:56.415279+00 2025-08-18 13:36:56.415289+00 f t Invitado Amar invitado-1755524214738@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-5108 +6774 2025-08-18 13:38:49.160842+00 2025-08-18 13:38:49.160854+00 f t Invitado Amar invitado-1755524328919@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5109 +6775 2025-08-18 13:39:50.405157+00 2025-08-18 13:39:50.405165+00 f t Invitado Amar invitado-1755524390274@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-5110 +6776 2025-08-18 14:01:24.467657+00 2025-08-18 14:01:24.467671+00 f t Invitado Amar invitado-1755525683590@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-5111 +6777 2025-08-18 14:27:22.595253+00 2025-08-18 14:27:22.595265+00 f t Invitado Amar invitado-1755527241246@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-5112 +6778 2025-08-18 14:38:37.556841+00 2025-08-18 14:38:37.55685+00 f t Invitado Amar invitado-1755527917182@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5113 +6779 2025-08-18 15:08:08.312976+00 2025-08-18 15:08:08.312986+00 f t Invitado Amar invitado-1755529688678@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5114 +6780 2025-08-18 15:09:25.894195+00 2025-08-18 15:09:25.89421+00 f t Invitado Amar invitado-1755529764893@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-5115 +6781 2025-08-18 15:18:39.811928+00 2025-08-18 15:18:39.811936+00 f t Invitado Amar invitado-1755530320007@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5116 +6782 2025-08-18 15:22:24.731699+00 2025-08-18 15:22:24.731712+00 f t Invitado Amar invitado-1755530543842@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-5117 +6783 2025-08-18 16:17:20.374576+00 2025-08-18 16:17:20.374587+00 f t Invitado Amar invitado-1755533839611@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5118 +6784 2025-08-18 16:31:06.445737+00 2025-08-18 16:31:06.44575+00 f t Invitado Amar invitado-1755534665145@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-5119 +6785 2025-08-18 16:31:44.067311+00 2025-08-18 16:31:44.067319+00 f t Alejandra fuentes agiusol@gmail.com 91130938877 \N San juan 3381 piso 8 depto B \N FEMALE \N -34.6249501 -58.4132446 11 1600 \N afuentes-2 +6786 2025-08-18 16:35:39.119394+00 2025-08-18 16:35:39.119406+00 f t Invitado Amar invitado-1755534939384@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-5120 +6787 2025-08-18 16:51:59.183916+00 2025-08-18 16:51:59.183928+00 f t Invitado Amar invitado-1755535918639@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5121 +6788 2025-08-18 17:04:19.511833+00 2025-08-18 17:04:19.511843+00 f t sofia fernandez sofiaproduccion@gmail.com 91130123235 \N tres sargentos 421 2do 3 \N FEMALE \N -34.597866 -58.3732191 13 1601 \N sfernandez-3 +6789 2025-08-18 17:16:47.368529+00 2025-08-18 17:16:47.368538+00 f t isabel pereira isvirdav@hotmail.com 91160162863 \N Juan Bautista Alberdi 1796 piso 5 \N FEMALE 1966-09-19 -34.6286398 -58.4538251 14 1602 \N ipereira +6790 2025-08-18 17:21:51.840674+00 2025-08-18 17:21:51.840684+00 f t Invitado Amar invitado-1755537711504@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-5122 +6791 2025-08-18 17:23:51.616435+00 2025-08-18 17:23:51.616443+00 f t Invitado Amar invitado-1755537830988@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5123 +6792 2025-08-18 17:24:23.315334+00 2025-08-18 17:24:23.315346+00 f t Invitado Amar invitado-1755537862902@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5124 +6793 2025-08-18 17:25:53.831861+00 2025-08-18 17:25:53.831873+00 f t Invitado Amar invitado-1755537953406@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5125 +6794 2025-08-18 17:34:46.83681+00 2025-08-18 17:34:46.836819+00 f t Invitado Amar invitado-1755538484373@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5126 +6795 2025-08-18 17:35:41.140567+00 2025-08-18 17:35:41.140578+00 f t Invitado Amar invitado-1755538540493@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5127 +6796 2025-08-18 17:44:58.462593+00 2025-08-18 17:44:58.462606+00 f t Invitado Amar invitado-1755539098032@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-5128 +6797 2025-08-18 17:55:11.604152+00 2025-08-18 17:55:11.604161+00 f t Invitado Amar invitado-1755539711086@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5129 +6798 2025-08-18 17:58:12.058135+00 2025-08-18 17:58:12.058145+00 f t Invitado Amar invitado-1755539891701@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5130 +6799 2025-08-18 17:59:18.610239+00 2025-08-18 17:59:18.610248+00 f t Invitado Amar invitado-1755540096867@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5131 +6800 2025-08-18 18:23:03.062449+00 2025-08-18 18:23:03.062464+00 f t Invitado Amar invitado-1755541382721@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5132 +6801 2025-08-18 18:23:31.041484+00 2025-08-18 18:23:31.041495+00 f t Invitado Amar invitado-1755541410365@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5133 +6802 2025-08-18 19:07:25.471396+00 2025-08-18 19:07:25.471407+00 f t juan ignacio pesce jipesce@gmail.com 91140518655 \N Bacacay 2876 2C \N MALE 1981-06-27 -34.6283564 -58.4702216 4 1603 \N jpesce +6803 2025-08-18 19:12:58.253308+00 2025-08-18 19:12:58.253318+00 f t Invitado Amar invitado-1755544379321@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5134 +6804 2025-08-18 19:25:36.575991+00 2025-08-18 19:25:36.576003+00 f t Roxana Villegas roxy.villegas74@gmail.com +5491151806763 \N Osorio 1349 Entre Liniers y chaco - valentin alsina \N \N \N -34.6754857 -58.4163758 70 1610 \N rvillegas +6805 2025-08-18 20:00:47.220048+00 2025-08-18 20:00:47.220062+00 f t Invitado Amar invitado-1755547246991@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5135 +6806 2025-08-18 20:10:05.711891+00 2025-08-18 20:10:05.711905+00 f t Invitado Amar invitado-1755547805271@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5136 +6807 2025-08-18 20:28:54.087544+00 2025-08-18 20:28:54.087557+00 f t Invitado Amar invitado-1755548934467@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5137 +6808 2025-08-18 20:30:58.864273+00 2025-08-18 20:30:58.864286+00 f t Invitado Amar invitado-1755549057857@example.com 55555555 \N \N \N \N \N 66 \N \N iamar-5138 +6809 2025-08-18 20:54:41.453728+00 2025-08-18 20:54:41.453741+00 f t Mercedes Abajo mechiabajo@gmail.com +541126401348 \N Comandante Leonardo rosales 3249 Frente \N \N \N -34.5001128 -58.4857626 69 1778 \N mabajo +6810 2025-08-18 21:11:14.29169+00 2025-08-18 21:11:14.291702+00 f t Invitado Amar invitado-1755551473927@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5139 +6811 2025-08-18 21:20:55.462874+00 2025-08-18 21:20:55.462883+00 f t Invitado Amar invitado-1755552055035@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5140 +6812 2025-08-18 21:21:26.302238+00 2025-08-18 21:21:26.302248+00 f t Invitado Amar invitado-1755552085542@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-5141 +6813 2025-08-18 21:21:39.326592+00 2025-08-18 21:21:39.326602+00 f t Invitado Amar invitado-1755552099186@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-5142 +6814 2025-08-18 21:23:07.10466+00 2025-08-18 21:23:07.104672+00 f t Cristina Platz crisplatz@hotmail.com 🇦🇷+5491168891709 \N Vuelta de Obligado 3737 4B Nuñez \N FEMALE 1970-09-17 -34.5471828 -58.4678229 25 1604 \N cplatz +6815 2025-08-18 21:48:21.689702+00 2025-08-18 21:48:21.689711+00 f t Invitado Amar invitado-1755553700776@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5143 +6816 2025-08-18 21:59:35.166379+00 2025-08-18 21:59:35.166388+00 f t Invitado Amar invitado-1755554374970@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5144 +6817 2025-08-18 22:06:30.561492+00 2025-08-18 22:06:30.561502+00 f t Invitado Amar invitado-1755554790231@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5145 +6818 2025-08-18 22:10:37.187225+00 2025-08-18 22:10:37.187236+00 f t Fernanda Montani montanifern@gmail.com +541156628458 \N Av.Independencia 2135 2 E \N \N \N -34.6182777 -58.3965627 12 1605 \N fmontani +6819 2025-08-18 22:35:44.22147+00 2025-08-18 22:35:44.221479+00 f t Invitado Amar invitado-1755556543959@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5146 +6820 2025-08-18 22:38:02.34647+00 2025-08-18 22:38:02.346481+00 f t Invitado Amar invitado-1755556682003@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5147 +6821 2025-08-18 22:41:10.033509+00 2025-08-18 22:41:10.033519+00 f t Invitado Amar invitado-1755556868651@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-5148 +6822 2025-08-18 22:46:01.890201+00 2025-08-18 22:46:01.890219+00 f t Invitado Amar invitado-1755557162498@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5149 +6823 2025-08-18 23:13:41.907727+00 2025-08-18 23:13:41.907736+00 f t Invitado Amar invitado-1755558821398@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-5150 +6824 2025-08-18 23:16:26.271736+00 2025-08-18 23:16:26.271747+00 f t Invitado Amar invitado-1755558985225@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5151 +6825 2025-08-18 23:52:28.950979+00 2025-08-18 23:52:28.950987+00 f t Invitado Amar invitado-1755561148198@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5152 +6826 2025-08-18 23:55:44.574447+00 2025-08-18 23:55:44.57446+00 f t Invitado Amar invitado-1755561346873@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5153 +6827 2025-08-18 23:57:07.501523+00 2025-08-18 23:57:07.501535+00 f t ELIDA VICTORIA CEPPI CUSPIDECEPPI@GMAIL.COM +541154787522 \N PIZARRO 5341 \N \N -34.6431795 -58.5014183 65 \N \N eceppi +6828 2025-08-18 23:58:22.739891+00 2025-08-18 23:58:22.739904+00 f t Invitado Amar invitado-1755561501452@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5154 +6829 2025-08-19 00:31:28.709721+00 2025-08-19 00:31:28.709735+00 f t Invitado Amar invitado-1755563489541@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5155 +6830 2025-08-19 00:37:10.565339+00 2025-08-19 00:37:10.565348+00 f t Invitado Amar invitado-1755563829802@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5156 +6831 2025-08-19 01:19:57.339667+00 2025-08-19 01:19:57.339677+00 f t Invitado Amar invitado-1755566396882@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-5157 +6832 2025-08-19 01:22:10.475589+00 2025-08-19 01:22:10.475598+00 f t Invitado Amar invitado-1755566529612@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5158 +6833 2025-08-19 01:24:20.462409+00 2025-08-19 01:24:20.462417+00 f t Invitado Amar invitado-1755566659748@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5159 +6834 2025-08-19 01:44:58.62843+00 2025-08-19 01:44:58.628443+00 f t Invitado Amar invitado-1755567900208@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5160 +6835 2025-08-19 02:17:20.282752+00 2025-08-19 02:17:20.282763+00 f t Invitado Amar invitado-1755569840156@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-5161 +6836 2025-08-19 02:33:33.71091+00 2025-08-19 02:33:33.710921+00 f t Invitado Amar invitado-1755570813170@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5162 +6837 2025-08-19 02:39:45.720299+00 2025-08-19 02:39:45.720317+00 f t Invitado Amar invitado-1755571182469@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5163 +6838 2025-08-19 02:53:13.696557+00 2025-08-19 02:53:13.696568+00 f t Invitado Amar invitado-1755571992821@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5164 +6839 2025-08-19 03:31:50.562343+00 2025-08-19 03:31:50.562351+00 f t Invitado Amar invitado-1755574312172@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-5165 +6840 2025-08-19 05:32:15.122342+00 2025-08-19 05:32:15.122412+00 f t Tomas Bartel tomasbart@hotmaim.com +541124528301 \N Olaya 1760 1 \N \N -34.6010756 -58.448315 26 \N \N tbartel +6841 2025-08-19 06:30:08.285556+00 2025-08-19 06:30:08.285571+00 f t Invitado Amar invitado-1755585007581@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5166 +6842 2025-08-19 06:45:26.351517+00 2025-08-19 06:45:26.351526+00 f t Invitado Amar invitado-1755585925655@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5167 +6843 2025-08-19 06:53:39.352384+00 2025-08-19 06:53:39.352394+00 f t Invitado Amar invitado-1755586418879@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5168 +6844 2025-08-19 08:27:28.151185+00 2025-08-19 08:27:28.151193+00 f t Invitado Amar invitado-1755592047997@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5169 +6845 2025-08-19 10:56:35.029143+00 2025-08-19 10:56:35.029157+00 f t Ivana Dimare dimareivana@gmail.com +541131016470 \N Condarco 2416 7 \N \N \N -34.6063202 -58.4821609 17 1609 \N idimare +6846 2025-08-19 11:04:21.592418+00 2025-08-19 11:04:21.592432+00 f t Invitado Amar invitado-1755601460215@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-5170 +6847 2025-08-19 11:15:50.148162+00 2025-08-19 11:15:50.148171+00 f t Invitado Amar invitado-1755602149824@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5171 +6848 2025-08-19 11:38:05.609006+00 2025-08-19 11:38:05.609017+00 f t Invitado Amar invitado-1755603484953@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5172 +6849 2025-08-19 11:56:48.435866+00 2025-08-19 11:56:48.435876+00 f t Invitado Amar invitado-1755604608086@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-5173 +6850 2025-08-19 12:10:57.112859+00 2025-08-19 12:10:57.112872+00 f t Invitado Amar invitado-1755605457336@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5174 +6851 2025-08-19 12:15:16.56018+00 2025-08-19 12:15:16.560189+00 f t Invitado Amar invitado-1755605716357@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5175 +6852 2025-08-19 12:15:44.971711+00 2025-08-19 12:15:44.971721+00 f t Invitado Amar invitado-1755605744430@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-5176 +6853 2025-08-19 12:37:23.157559+00 2025-08-19 12:37:23.157567+00 f t Luciano Chaparro manuelalemanchaparro@gmail.com +541132629757 \N Marcelo t de alvear 1472 1 B \N \N \N -34.5971752 -58.3878707 9 1608 \N lchaparro +6854 2025-08-19 12:43:02.379625+00 2025-08-19 12:43:02.379639+00 f t Invitado Amar invitado-1755607381867@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5177 +6855 2025-08-19 12:44:21.993247+00 2025-08-19 12:44:21.993259+00 f t Invitado Amar invitado-1755607436234@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5178 +6856 2025-08-19 12:54:15.863097+00 2025-08-19 12:54:15.863107+00 f t Invitado Amar invitado-1755608055553@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-5179 +6857 2025-08-19 13:12:23.26153+00 2025-08-19 13:12:23.261541+00 f t Invitado Amar invitado-1755609142823@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5180 +6858 2025-08-19 13:20:24.37887+00 2025-08-19 13:20:24.378884+00 f t Invitado Amar invitado-1755609625753@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5181 +6859 2025-08-19 13:22:56.330557+00 2025-08-19 13:22:56.330567+00 f t Invitado Amar invitado-1755609778046@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5182 +6860 2025-08-19 13:34:08.046246+00 2025-08-19 13:34:08.046259+00 f t Invitado Amar invitado-1755610447517@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5183 +6861 2025-08-19 13:57:33.591046+00 2025-08-19 13:57:33.591055+00 f t Invitado Amar invitado-1755611853007@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5184 +6862 2025-08-19 14:00:49.572504+00 2025-08-19 14:00:49.572517+00 f t Invitado Amar invitado-1755612048690@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-5185 +6863 2025-08-19 14:02:15.847541+00 2025-08-19 14:02:15.847555+00 f t Invitado Amar invitado-1755612135207@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-5186 +6864 2025-08-19 14:16:43.052349+00 2025-08-19 14:16:43.052361+00 f t Invitado Amar invitado-1755613002588@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5187 +6865 2025-08-19 14:17:57.407178+00 2025-08-19 14:17:57.407191+00 f t Invitado Amar invitado-1755613077254@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5188 +6866 2025-08-19 14:23:33.086573+00 2025-08-19 14:23:33.086583+00 f t Invitado Amar invitado-1755613414051@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-5189 +6867 2025-08-19 15:00:37.238842+00 2025-08-19 15:00:37.238855+00 f t Invitado Amar invitado-1755615635956@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5190 +6868 2025-08-19 15:14:08.699805+00 2025-08-19 15:14:08.699818+00 f t Invitado Amar invitado-1755616448332@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5191 +6869 2025-08-19 15:52:55.890543+00 2025-08-19 15:52:55.890553+00 f t Jesica Magali Corigliano jesica.corigliano@gmail.com +5491124696230 \N Juan Carlos Cruz 100 Torre 2 dpto 2504 \N FEMALE 1987-02-19 -34.5331578 -58.4651266 59 1611 \N jcorigliano +6870 2025-08-19 15:57:48.02896+00 2025-08-19 15:57:48.028969+00 f t karina lizarraga renata20104@hotmail.com 91151030283 \N marcos paz 1775 1b \N FEMALE 1971-09-10 -34.6233244 -58.5013645 16 1612 \N klizarraga +6871 2025-08-19 16:06:26.449287+00 2025-08-19 16:06:26.449295+00 f t Invitado Amar invitado-1755619586054@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5192 +6872 2025-08-19 16:07:34.441027+00 2025-08-19 16:07:34.441036+00 f t Invitado Amar invitado-1755619654427@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5193 +6873 2025-08-19 16:12:02.658479+00 2025-08-19 16:12:02.658494+00 f t Invitado Amar invitado-1755619922358@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5194 +6874 2025-08-19 16:33:25.649447+00 2025-08-19 16:33:25.649456+00 f t Invitado Amar invitado-1755621204324@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5195 +6875 2025-08-19 16:37:50.461255+00 2025-08-19 16:37:50.461264+00 f t Invitado Amar invitado-1755621469795@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5196 +6876 2025-08-19 16:38:47.739521+00 2025-08-19 16:38:47.739534+00 f t Invitado Amar invitado-1755621526921@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5197 +6877 2025-08-19 17:02:06.355709+00 2025-08-19 17:02:06.355722+00 f t Invitado Amar invitado-1755622925713@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5198 +6878 2025-08-19 17:23:29.175888+00 2025-08-19 17:23:29.175901+00 f t Invitado Amar invitado-1755624209404@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5199 +6879 2025-08-19 17:39:57.171196+00 2025-08-19 17:39:57.172734+00 f t Invitado Amar invitado-1755625195660@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5200 +6880 2025-08-19 17:51:09.519505+00 2025-08-19 17:51:09.519513+00 f t Debora Strazanec rochyyaz@hotmail.com 5491158492772 \N Chile 104 Casa \N FEMALE 1972-07-27 -34.615787 -58.3677463 49 1613 \N dstrazanec +6881 2025-08-19 18:18:19.827119+00 2025-08-19 18:18:19.827164+00 f t Invitado Amar invitado-1755627499970@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5201 +6882 2025-08-19 18:19:05.469195+00 2025-08-19 18:19:05.469211+00 f t Invitado Amar invitado-1755627351607@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5202 +6883 2025-08-19 18:25:56.948439+00 2025-08-19 18:25:56.948449+00 f t Invitado Amar invitado-1755627955071@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-5203 +6884 2025-08-19 18:39:20.037571+00 2025-08-19 18:39:20.037581+00 f t Invitado Amar invitado-1755628759640@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5204 +13325 2025-11-14 21:29:13.794286+00 2025-11-14 21:29:13.794294+00 f t Invitado Amar invitado-1763155753521@example.com 55555555 \N \N \N \N \N 153 \N \N \N +6886 2025-08-19 18:55:21.15751+00 2025-08-19 18:55:21.157519+00 f t Invitado Amar invitado-1755629720180@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5205 +6887 2025-08-19 19:14:16.028285+00 2025-08-19 19:14:16.028298+00 f t Invitado Amar invitado-1755630855155@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-5206 +6888 2025-08-19 19:27:39.629879+00 2025-08-19 19:27:39.62989+00 f t Invitado Amar invitado-1755631658134@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-5207 +6889 2025-08-19 19:42:37.592779+00 2025-08-19 19:42:37.592788+00 f t Invitado Amar invitado-1755632556277@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-5208 +6890 2025-08-19 20:13:30.567723+00 2025-08-19 20:13:30.567735+00 f t Invitado Amar invitado-1755634408753@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5209 +6891 2025-08-19 20:20:18.549015+00 2025-08-19 20:20:18.549027+00 f t Invitado Amar invitado-1755634817546@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-5210 +6892 2025-08-19 21:05:37.164589+00 2025-08-19 21:05:37.164598+00 f t Invitado Amar invitado-1755637536966@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5211 +13539 2025-11-17 20:05:59.411377+00 2025-11-17 20:05:59.411386+00 f t Invitado Amar invitado-1763409957843@example.com 55555555 \N \N \N \N \N 87 \N \N \N +6894 2025-08-19 21:24:00.268006+00 2025-08-19 21:24:00.26802+00 f t Invitado Amar invitado-1755638639559@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-5212 +6895 2025-08-19 21:42:02.88216+00 2025-08-19 21:42:02.882174+00 f t Invitado Amar invitado-1755639722483@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-5213 +6896 2025-08-19 21:49:46.672712+00 2025-08-19 21:49:46.672721+00 f t Invitado Amar invitado-1755640186220@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-5214 +6897 2025-08-19 21:56:34.304102+00 2025-08-19 21:56:34.304112+00 f t Invitado Amar invitado-1755640594865@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5215 +6898 2025-08-19 22:06:02.86967+00 2025-08-19 22:06:02.86968+00 f t Invitado Amar invitado-1755641162525@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5216 +6899 2025-08-19 22:28:22.441209+00 2025-08-19 22:28:22.441221+00 f t Invitado Amar invitado-1755642502028@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5217 +6900 2025-08-19 23:18:19.059495+00 2025-08-19 23:18:19.059507+00 f t Invitado Amar invitado-1755645497762@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-5218 +6901 2025-08-19 23:20:22.620088+00 2025-08-19 23:20:22.620101+00 f t Invitado Amar invitado-1755645622269@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-5219 +6902 2025-08-19 23:21:29.276456+00 2025-08-19 23:21:29.276465+00 f t Invitado Amar invitado-1755645688438@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-5220 +6903 2025-08-19 23:25:24.300438+00 2025-08-19 23:25:24.300448+00 f t Invitado Amar invitado-1755645923461@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-5221 +6904 2025-08-19 23:29:21.266615+00 2025-08-19 23:29:21.266625+00 f t Invitado Amar invitado-1755646160932@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5222 +6906 2025-08-19 23:34:03.786403+00 2025-08-19 23:34:03.786415+00 f t Invitado Amar invitado-1755646443326@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5223 +6907 2025-08-19 23:37:19.269039+00 2025-08-19 23:37:19.269046+00 f t Nélida Borgogna nellbor@yahoo.com.ar 5491154644752 \N Sánchez de Loria 180 planta baja 1 \N FEMALE 1957-10-17 -34.6122462 -58.4135235 18 1621 \N nborgogna +6908 2025-08-19 23:41:12.537543+00 2025-08-19 23:41:12.537555+00 f t Invitado Amar invitado-1755646872119@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5224 +6909 2025-08-19 23:54:28.458121+00 2025-08-19 23:54:28.458127+00 f t Ana Laura Segal anisegal7@gmail.com 5491151107718 \N Virrey Loreto 2595 5B \N FEMALE 1984-10-11 -34.5692627 -58.4514914 38 1623 \N asegal +6910 2025-08-19 23:59:05.051608+00 2025-08-19 23:59:05.051615+00 f t Osvaldo ever paez aguero everaguero573@gmail.com 🇦🇷+5491125256067 \N Pi y margall 910 3B. \N MALE \N -34.630638 -58.3672276 33 1624 \N opaezaguero +6911 2025-08-20 00:06:32.297135+00 2025-08-20 00:06:32.297148+00 f t Invitado Amar invitado-1755648384163@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5225 +6912 2025-08-20 00:11:17.235845+00 2025-08-20 00:11:17.235857+00 f t Invitado Amar invitado-1755648669404@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5226 +6913 2025-08-20 00:15:27.405356+00 2025-08-20 00:15:27.405365+00 f t Invitado Amar invitado-1755648926800@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5227 +6914 2025-08-20 00:21:22.101873+00 2025-08-20 00:21:22.101882+00 f t Invitado Amar invitado-1755649280993@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5228 +6915 2025-08-20 00:22:37.754351+00 2025-08-20 00:22:37.754363+00 f t Invitado Amar invitado-1755649357002@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5229 +6916 2025-08-20 00:29:54.429237+00 2025-08-20 00:29:54.429246+00 f t Invitado Amar invitado-1755649793944@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5230 +6917 2025-08-20 00:34:01.842644+00 2025-08-20 00:34:01.842656+00 f t Invitado Amar invitado-1755650041737@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5231 +6918 2025-08-20 00:38:18.580842+00 2025-08-20 00:38:18.580852+00 f t Invitado Amar invitado-1755650298093@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5232 +6919 2025-08-20 00:43:36.206744+00 2025-08-20 00:43:36.206756+00 f t Invitado Amar invitado-1755650615160@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-5233 +6920 2025-08-20 01:25:18.817719+00 2025-08-20 01:25:18.81773+00 f t Invitado Amar invitado-1755653118431@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-5234 +6921 2025-08-20 01:40:49.679838+00 2025-08-20 01:40:49.679847+00 f t Invitado Amar invitado-1755654049248@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5235 +6922 2025-08-20 01:46:01.921665+00 2025-08-20 01:46:01.921675+00 f t Invitado Amar invitado-1755654361634@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5236 +6923 2025-08-20 02:00:32.327551+00 2025-08-20 02:00:32.327563+00 f t Invitado Amar invitado-1755655231776@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5237 +6924 2025-08-20 04:02:26.282214+00 2025-08-20 04:02:26.282223+00 f t Invitado Amar invitado-1755662545642@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-5238 +6925 2025-08-20 04:07:36.123221+00 2025-08-20 04:07:36.123231+00 f t María celina Sereno celina.sereno@gmail.com +541163542058 \N Guayaquil 708 10 A \N \N \N -34.6216993 -58.4384341 14 1625 \N msereno +6926 2025-08-20 05:18:40.927229+00 2025-08-20 05:18:40.92724+00 f t Invitado Amar invitado-1755667120127@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-5239 +6927 2025-08-20 06:27:05.700471+00 2025-08-20 06:27:05.700483+00 f t Katherine Valeriano katy60v@gmail.com +541138594082 \N Emilio lamarca 186 1 \N \N -34.6304717 -58.4778039 16 \N \N kvaleriano +6905 2025-08-19 23:29:36.442411+00 2025-08-19 23:29:36.442417+00 f t Nadia Rodríguez rodriguez.nadiabeatriz@gmail.com 5491165964269 \N Pasaje Juan Esteban Martínez 2330 Planta B, Depto Nro. 2, \N FEMALE 1982-04-27 \N \N 66 1619 \N nrodriguez +6885 2025-08-19 18:45:39.870153+00 2025-08-19 18:45:39.870163+00 f t Antonella Berutti antonella_b_13@hotmail.com +541167670007 \N Arribeños 2215 6F \N FEMALE \N -34.5569041 -58.4509697 3 1614 \N aberutti +6928 2025-08-20 08:49:59.101213+00 2025-08-20 08:49:59.101222+00 f t Invitado Amar invitado-1755679798728@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5240 +6929 2025-08-20 11:08:10.479451+00 2025-08-20 11:08:10.479465+00 f t Invitado Amar invitado-1755688089839@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5241 +6930 2025-08-20 11:53:59.073658+00 2025-08-20 11:53:59.073667+00 f t Invitado Amar invitado-1755690839583@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-5242 +6931 2025-08-20 12:01:42.762927+00 2025-08-20 12:01:42.762941+00 f t Invitado Amar invitado-1755691307732@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5243 +6932 2025-08-20 12:16:04.73741+00 2025-08-20 12:16:04.73742+00 f t Invitado Amar invitado-1755692164092@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5244 +6933 2025-08-20 12:27:33.247728+00 2025-08-20 12:27:33.247736+00 f t Invitado Amar invitado-1755692854231@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5245 +6934 2025-08-20 12:29:14.061789+00 2025-08-20 12:29:14.061797+00 f t Invitado Amar invitado-1755692953028@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5246 +6935 2025-08-20 13:00:03.98827+00 2025-08-20 13:00:03.988282+00 f t silvina muras silvigmuras@gmail.com +541162062651 \N billinghurst 2364 8 A \N \N \N -34.5849211 -58.4054447 9 1628 \N smuras +6936 2025-08-20 13:13:27.215735+00 2025-08-20 13:13:27.215747+00 f t Invitado Amar invitado-1755695608213@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5247 +6937 2025-08-20 13:29:31.301985+00 2025-08-20 13:29:31.301997+00 f t Invitado Amar invitado-1755696571076@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5248 +6938 2025-08-20 13:39:26.506855+00 2025-08-20 13:39:26.506866+00 f t Invitado Amar invitado-1755697165517@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5249 +6939 2025-08-20 13:41:30.726528+00 2025-08-20 13:41:30.726538+00 f t Invitado Amar invitado-1755697290189@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5250 +6940 2025-08-20 14:17:53.470364+00 2025-08-20 14:17:53.470373+00 f t Invitado Amar invitado-1755699473104@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-5251 +6941 2025-08-20 14:32:27.393581+00 2025-08-20 14:32:27.393589+00 f t Invitado Amar invitado-1755700346853@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-5252 +6942 2025-08-20 14:35:50.879612+00 2025-08-20 14:35:50.87962+00 f t Invitado Amar invitado-1755700550485@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5253 +6943 2025-08-20 14:47:52.875552+00 2025-08-20 14:47:52.875561+00 f t Invitado Amar invitado-1755701272301@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5254 +6944 2025-08-20 14:51:32.071478+00 2025-08-20 14:51:32.07149+00 f t Invitado Amar invitado-1755701492207@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-5255 +6945 2025-08-20 14:52:46.622676+00 2025-08-20 14:52:46.622685+00 f t Invitado Amar invitado-1755701566972@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5256 +6946 2025-08-20 14:55:46.178905+00 2025-08-20 14:55:46.178916+00 f t Invitado Amar invitado-1755701743642@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5257 +6947 2025-08-20 15:05:26.839075+00 2025-08-20 15:05:26.839086+00 f t Invitado Amar invitado-1755702326412@example.com 55555555 \N \N \N \N \N 90 \N \N iamar-5258 +6948 2025-08-20 15:06:02.487181+00 2025-08-20 15:06:02.487193+00 f t Invitado Amar invitado-1755702362404@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5259 +6949 2025-08-20 15:06:15.233012+00 2025-08-20 15:06:15.233025+00 f t Invitado Amar invitado-1755702373422@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5260 +6950 2025-08-20 15:08:39.567233+00 2025-08-20 15:08:39.567242+00 f t Invitado Amar invitado-1755702518845@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5261 +6951 2025-08-20 15:11:03.374246+00 2025-08-20 15:11:03.374256+00 f t Laura Antúnez laupico@hotmail.com 5491141956376 \N Av Alvear 1491 piso 18B \N FEMALE 1968-09-22 -34.5902235 -58.3846542 112 1626 \N lantunez +6952 2025-08-20 15:20:42.871335+00 2025-08-20 15:20:42.871344+00 f t Invitado Amar invitado-1755703242447@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5262 +6953 2025-08-20 15:40:37.269601+00 2025-08-20 15:40:37.269613+00 f t Invitado Amar invitado-1755704435907@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-5263 +6954 2025-08-20 15:44:18.947429+00 2025-08-20 15:44:18.94744+00 f t Invitado Amar invitado-1755704658289@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5264 +6955 2025-08-20 15:44:32.307556+00 2025-08-20 15:44:32.307564+00 f t Invitado Amar invitado-1755704672039@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5265 +6956 2025-08-20 15:53:23.921667+00 2025-08-20 15:53:23.921675+00 f t Isabel chiaramonte isabelchiaramonte@gmail.com 5491153234313 \N Muñiz 1084 7C \N FEMALE 1969-08-21 -34.6265839 -58.4255231 11 1629 \N ichiaramonte +6957 2025-08-20 16:02:30.811301+00 2025-08-20 16:02:30.811314+00 f t Invitado Amar invitado-1755705749923@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-5266 +6958 2025-08-20 16:03:18.73628+00 2025-08-20 16:03:18.736289+00 f t Invitado Amar invitado-1755705797943@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-5267 +6959 2025-08-20 16:14:26.182704+00 2025-08-20 16:14:26.182717+00 f t Invitado Amar invitado-1755706465338@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5268 +6960 2025-08-20 16:15:43.057655+00 2025-08-20 16:15:43.057664+00 f t Invitado Amar invitado-1755706542656@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5269 +6961 2025-08-20 16:19:56.260098+00 2025-08-20 16:19:56.260107+00 f t Invitado Amar invitado-1755706796009@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5270 +6962 2025-08-20 16:22:21.300717+00 2025-08-20 16:22:21.300726+00 f t Invitado Amar invitado-1755706940876@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5271 +6963 2025-08-20 16:42:09.80529+00 2025-08-20 16:42:09.805303+00 f t Invitado Amar invitado-1755708129428@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-5272 +6964 2025-08-20 16:48:06.556606+00 2025-08-20 16:48:06.556622+00 f t Invitado Amar invitado-1755708484415@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5273 +6965 2025-08-20 16:58:51.577658+00 2025-08-20 16:58:51.577668+00 f t Invitado Amar invitado-1755709131732@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5274 +6966 2025-08-20 17:08:32.679679+00 2025-08-20 17:08:32.679689+00 f t Invitado Amar invitado-1755709711731@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5275 +6967 2025-08-20 17:17:48.037783+00 2025-08-20 17:17:48.037792+00 f t Invitado Amar invitado-1755710267550@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5276 +6968 2025-08-20 17:24:03.760757+00 2025-08-20 17:24:03.760765+00 f t Invitado Amar invitado-1755710643153@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5277 +6969 2025-08-20 17:24:11.109736+00 2025-08-20 17:24:11.109748+00 f t Invitado Amar invitado-1755710651052@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-5278 +6970 2025-08-20 17:27:58.88135+00 2025-08-20 17:27:58.881357+00 f t Beatriz Rosano mayraandersin@gmail.com 5491130202458 \N Asuncion 3922 24 \N FEMALE 1990-01-30 -34.6005022 -58.5102667 21 1630 \N brosano +6971 2025-08-20 17:42:07.604886+00 2025-08-20 17:42:07.604895+00 f t Invitado Amar invitado-1755711727200@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5279 +6972 2025-08-20 17:44:10.496962+00 2025-08-20 17:44:10.496972+00 f t Invitado Amar invitado-1755711850344@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5280 +6973 2025-08-20 17:45:11.11587+00 2025-08-20 17:45:11.11588+00 f t Invitado Amar invitado-1755711912691@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5281 +6974 2025-08-20 18:07:09.640754+00 2025-08-20 18:07:09.640765+00 f t Invitado Amar invitado-1755713229195@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-5282 +6975 2025-08-20 18:09:35.882798+00 2025-08-20 18:09:35.882808+00 f t Invitado Amar invitado-1755713375487@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5283 +6976 2025-08-20 18:32:08.579557+00 2025-08-20 18:32:08.579566+00 f t Invitado Amar invitado-1755714727994@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5284 +6977 2025-08-20 18:56:09.224755+00 2025-08-20 18:56:09.224767+00 f t Invitado Amar invitado-1755716168191@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5285 +6978 2025-08-20 19:38:25.037183+00 2025-08-20 19:38:25.037193+00 f t Invitado Amar invitado-1755718704723@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-5286 +6979 2025-08-20 20:12:28.581819+00 2025-08-20 20:12:28.58183+00 f t Invitado Amar invitado-1755720747950@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5287 +6980 2025-08-20 20:51:40.714758+00 2025-08-20 20:51:40.714769+00 f t Invitado Amar invitado-1755723102768@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-5288 +6981 2025-08-20 21:08:14.951351+00 2025-08-20 21:08:14.95136+00 f t Invitado Amar invitado-1755724094446@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5289 +6982 2025-08-20 21:23:15.928449+00 2025-08-20 21:23:15.928457+00 f t Mercedes Gomez gomezmercedes248@gmail.com +541141777129 \N Avenida coronel Roca y lacarra 3500 2j \N \N \N \N 48 \N \N mgomez-2 +6983 2025-08-20 21:32:40.863758+00 2025-08-20 21:32:40.863769+00 f t Invitado Amar invitado-1755725559739@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-5290 +6984 2025-08-20 21:38:55.136535+00 2025-08-20 21:38:55.136552+00 f t Invitado Amar invitado-1755725934752@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5291 +6985 2025-08-20 21:41:28.3754+00 2025-08-20 21:41:28.375411+00 f t Invitado Amar invitado-1755726087968@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-5292 +6986 2025-08-20 21:43:47.599903+00 2025-08-20 21:43:47.599915+00 f t Invitado Amar invitado-1755726227430@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-5293 +6987 2025-08-20 21:50:26.943053+00 2025-08-20 21:50:26.943065+00 f t Bianca Seron biancanseron@gmail.com +541173737908 \N Avenida del Libertador 6836 7C \N \N -34.549382 -58.4545535 25 \N \N bseron +6988 2025-08-20 21:56:59.270462+00 2025-08-20 21:56:59.270471+00 f t Invitado Amar invitado-1755727018961@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5294 +6989 2025-08-20 22:04:38.001046+00 2025-08-20 22:04:38.001056+00 f t Invitado Amar invitado-1755727476815@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-5295 +6990 2025-08-20 22:12:28.375961+00 2025-08-20 22:12:28.375969+00 f t Invitado Amar invitado-1755727945998@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5296 +6991 2025-08-20 22:13:16.694375+00 2025-08-20 22:13:16.694384+00 f t Invitado Amar invitado-1755727994693@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5297 +6992 2025-08-20 22:24:02.754973+00 2025-08-20 22:24:02.754984+00 f t Invitado Amar invitado-1755728641123@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-5298 +6993 2025-08-20 22:35:39.223944+00 2025-08-20 22:35:39.223956+00 f t Invitado Amar invitado-1755729339064@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-5299 +6994 2025-08-20 22:44:38.354282+00 2025-08-20 22:44:38.354291+00 f t Invitado Amar invitado-1755729878007@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5300 +6995 2025-08-20 23:50:19.682523+00 2025-08-20 23:50:19.68253+00 f t Micaela Espeso micaespeso@hotmail.com 5491160419897 \N Esteban de luca 5263 \N \N FEMALE 1994-01-13 -34.5241651 -58.5287316 59 1631 \N mespeso +6996 2025-08-21 00:19:59.373116+00 2025-08-21 00:19:59.373129+00 f t Invitado Amar invitado-1755735598815@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-5301 +6997 2025-08-21 00:26:01.168736+00 2025-08-21 00:26:01.168751+00 f t Invitado Amar invitado-1755735960475@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5302 +6998 2025-08-21 00:32:22.665893+00 2025-08-21 00:32:22.665906+00 f t Invitado Amar invitado-1755736341345@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5303 +6999 2025-08-21 00:58:16.088623+00 2025-08-21 00:58:16.088635+00 f t Invitado Amar invitado-1755737895434@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-5304 +7000 2025-08-21 01:22:33.964617+00 2025-08-21 01:22:33.964628+00 f t Invitado Amar invitado-1755739353310@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-5305 +7001 2025-08-21 01:27:54.998495+00 2025-08-21 01:27:54.998503+00 f t Invitado Amar invitado-1755739674463@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5306 +7002 2025-08-21 01:32:44.950325+00 2025-08-21 01:32:44.950334+00 f t Invitado Amar invitado-1755739964881@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5307 +7003 2025-08-21 01:42:33.597404+00 2025-08-21 01:42:33.597418+00 f t Invitado Amar invitado-1755740552892@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-5308 +7004 2025-08-21 01:56:00.243921+00 2025-08-21 01:56:00.243931+00 f t Invitado Amar invitado-1755741930511@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5309 +7005 2025-08-21 02:08:46.517831+00 2025-08-21 02:08:46.517841+00 f t Invitado Amar invitado-1755742124201@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5310 +7006 2025-08-21 02:11:14.132203+00 2025-08-21 02:11:14.132212+00 f t Invitado Amar invitado-1755742273806@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5311 +7007 2025-08-21 03:09:36.679888+00 2025-08-21 03:09:36.679897+00 f t Invitado Amar invitado-1755745775848@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5312 +7008 2025-08-21 03:09:52.746386+00 2025-08-21 03:09:52.746395+00 f t Invitado Amar invitado-1755745792292@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5313 +7009 2025-08-21 04:20:13.196265+00 2025-08-21 04:20:13.196279+00 f t Invitado Amar invitado-1755750012283@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5314 +7010 2025-08-21 04:55:45.837538+00 2025-08-21 04:55:45.837548+00 f t Invitado Amar invitado-1755752145460@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5315 +7011 2025-08-21 05:36:56.383804+00 2025-08-21 05:36:56.383815+00 f t Invitado Amar invitado-1755754615732@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5316 +7012 2025-08-21 09:49:06.978458+00 2025-08-21 09:49:06.97847+00 f t Invitado Amar invitado-1755769746603@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5317 +7013 2025-08-21 10:13:37.560689+00 2025-08-21 10:13:37.5607+00 f t Invitado Amar invitado-1755771217015@example.com 55555555 \N \N \N \N \N 66 \N \N iamar-5318 +7014 2025-08-21 12:21:11.309903+00 2025-08-21 12:21:11.309917+00 f t Invitado Amar invitado-1755778870313@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-5319 +7015 2025-08-21 12:44:49.963741+00 2025-08-21 12:44:49.963752+00 f t NADIA PERDOMO nadia.jd@hotmail.com +541161567470 \N BOGOTA 3623 PB B \N \N \N -34.6296081 -58.479674 16 1633 \N nperdomo +7016 2025-08-21 13:13:53.826443+00 2025-08-21 13:13:53.826453+00 f t Invitado Amar invitado-1755782033281@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5320 +7017 2025-08-21 13:21:25.383318+00 2025-08-21 13:21:25.383327+00 f t Invitado Amar invitado-1755782484637@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5321 +7018 2025-08-21 13:41:33.242689+00 2025-08-21 13:41:33.242698+00 f t Invitado Amar invitado-1755783693064@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-5322 +7019 2025-08-21 13:54:47.752515+00 2025-08-21 13:54:47.752527+00 f t Invitado Amar invitado-1755784487265@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5323 +7020 2025-08-21 14:36:10.642147+00 2025-08-21 14:36:10.64216+00 f t Invitado Amar invitado-1755786970238@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5324 +7021 2025-08-21 14:37:48.304079+00 2025-08-21 14:37:48.304085+00 f t Rocio Vitale roovitale@hotmail.com 5491157022189 \N César Díaz 5720 Villa Luro CABA \N FEMALE 2001-03-22 -34.6352002 -58.5058601 65 1634 \N rvitale +7022 2025-08-21 14:52:32.708237+00 2025-08-21 14:52:32.708246+00 f t Alejandra medina medina.alejandra46@gmail.com 91169762539 \N Cervantes 1577 2do A \N FEMALE 1964-10-30 -34.6246091 -58.5054308 28 1635 \N amedina +7023 2025-08-21 15:48:08.160565+00 2025-08-21 15:48:08.160579+00 f t Invitado Amar invitado-1755791286761@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5325 +7024 2025-08-21 15:48:52.86734+00 2025-08-21 15:48:52.867349+00 f t Invitado Amar invitado-1755791332598@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5326 +7025 2025-08-21 15:58:29.070307+00 2025-08-21 15:58:29.070316+00 f t Invitado Amar invitado-1755791908310@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-5327 +7026 2025-08-21 16:12:00.092323+00 2025-08-21 16:12:00.092331+00 f t Rocio Miguel rociobelenmiguel.22@gmail.com 5493425222638 \N Paraguay 2440 depto 9 A \N FEMALE 1998-01-22 -34.5977358 -58.4026405 9 1636 \N rmiguel +7027 2025-08-21 16:14:49.131631+00 2025-08-21 16:14:49.131641+00 f t Invitado Amar invitado-1755792890390@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-5328 +7028 2025-08-21 16:17:01.94662+00 2025-08-21 16:17:01.94663+00 f t Invitado Amar invitado-1755793023343@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-5329 +7029 2025-08-21 16:18:22.735533+00 2025-08-21 16:18:22.735542+00 f t Invitado Amar invitado-1755793104199@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-5330 +7030 2025-08-21 16:19:38.099651+00 2025-08-21 16:19:38.099664+00 f t Invitado Amar invitado-1755793177692@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-5331 +7031 2025-08-21 16:22:38.66246+00 2025-08-21 16:22:38.662467+00 f t Noelia Motto noelialmotta@gmail.com 5491167201609 \N Virrey del pino 2425 1 - 2 \N FEMALE 1983-03-28 -34.5663502 -58.4529498 3 1637 \N nmotto +7032 2025-08-21 17:07:58.324309+00 2025-08-21 17:07:58.324319+00 f t Invitado Amar invitado-1755796078753@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5332 +7033 2025-08-21 17:19:09.730802+00 2025-08-21 17:19:09.730811+00 f t Invitado Amar invitado-1755796748194@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-5333 +7034 2025-08-21 17:29:09.673583+00 2025-08-21 17:29:09.673593+00 f t Invitado Amar invitado-1755797562355@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5334 +7035 2025-08-21 17:29:42.577485+00 2025-08-21 17:29:42.577498+00 f t Invitado Amar invitado-1755797382447@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5335 +7036 2025-08-21 17:33:36.637256+00 2025-08-21 17:33:36.637265+00 f t Invitado Amar invitado-1755797616341@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5336 +7037 2025-08-21 17:39:33.414794+00 2025-08-21 17:39:33.414806+00 f t Invitado Amar invitado-1755797972615@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5337 +7038 2025-08-21 17:53:20.890569+00 2025-08-21 17:53:20.89058+00 f t Marcela Alfonzo carolinadulbecco2@gmail.com 5491134649595 \N Dean Funes 869 \N \N FEMALE 1976-05-16 -34.6201896 -58.4063783 12 1638 \N malfonzo +7039 2025-08-21 17:57:09.651008+00 2025-08-21 17:57:09.651017+00 f t Invitado Amar invitado-1755799028340@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5338 +7040 2025-08-21 18:51:13.574131+00 2025-08-21 18:51:13.574146+00 f t Invitado Amar invitado-1755802271927@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5339 +7041 2025-08-21 19:01:05.288775+00 2025-08-21 19:01:05.288788+00 f t Invitado Amar invitado-1755802865251@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5340 +7042 2025-08-21 19:10:22.116118+00 2025-08-21 19:10:22.116128+00 f t Invitado Amar invitado-1755803422338@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-5341 +7043 2025-08-21 19:26:07.702937+00 2025-08-21 19:26:07.70295+00 f t Invitado Amar invitado-1755804366863@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5342 +7044 2025-08-21 19:38:20.263168+00 2025-08-21 19:38:20.263188+00 f t Invitado Amar invitado-1755805099350@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-5343 +7045 2025-08-21 20:29:53.675677+00 2025-08-21 20:29:53.675686+00 f t Invitado Amar invitado-1755808192222@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5344 +7046 2025-08-21 20:40:44.204221+00 2025-08-21 20:40:44.204232+00 f t Invitado Amar invitado-1755808787228@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5345 +7047 2025-08-21 21:05:00.521033+00 2025-08-21 21:05:00.521044+00 f t Invitado Amar invitado-1755810299950@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-5346 +7048 2025-08-21 21:19:46.081355+00 2025-08-21 21:19:46.081364+00 f t Jorge Salum jmsalum@gmail.com +541169107432 \N Libertador 2417 709 \N \N -34.5079777 -58.4793236 39 \N \N jsalum +7049 2025-08-21 21:22:58.750576+00 2025-08-21 21:22:58.750584+00 f t Invitado Amar invitado-1755811378547@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-5347 +7050 2025-08-21 21:29:24.847108+00 2025-08-21 21:29:24.847117+00 f t Invitado Amar invitado-1755811764310@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5348 +7051 2025-08-21 21:38:12.692822+00 2025-08-21 21:38:12.692834+00 f t Invitado Amar invitado-1755812292579@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-5349 +7052 2025-08-21 21:50:55.316175+00 2025-08-21 21:50:55.316184+00 f t Invitado Amar invitado-1755813054940@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-5350 +7053 2025-08-21 22:14:14.325474+00 2025-08-21 22:14:14.325483+00 f t Cristina Lucia Vogt vogtcristinalucia@gmail.com 5491167988586 \N Hamburgo 3094 \N \N FEMALE 1951-04-10 -34.5858204 -58.4823262 112 1639 \N cvogt +7054 2025-08-21 22:58:18.076945+00 2025-08-21 22:58:18.076954+00 f t Invitado Amar invitado-1755817097725@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5351 +7055 2025-08-21 23:22:14.023811+00 2025-08-21 23:22:14.02382+00 f t Nahir Aragón Orfois nahiraragonorfois@gmail.com 5491166692747 \N Virrey Olaguer y feliu 3457 3A - entre Delgado y Martinez \N FEMALE \N -34.5763117 -58.4594452 38 1640 \N norfois +7056 2025-08-21 23:28:00.18965+00 2025-08-21 23:28:00.189657+00 f t Liliana Mancuso mlilianamirta@yahoo.com.ar 5491161935822 \N Thames 422 PB b esquina Camargo \N FEMALE \N -34.5960642 -58.4444303 26 1641 \N lmancuso +7057 2025-08-21 23:31:37.985635+00 2025-08-21 23:31:37.985647+00 f t Invitado Amar invitado-1755819098913@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-5352 +7058 2025-08-21 23:52:18.455257+00 2025-08-21 23:52:18.455264+00 f t Claudia Diana Himidian clauhimidian@gmail.com 5491168038412 \N Pedernera 919 \N \N FEMALE 1973-11-12 -34.6390421 -58.4576907 4 1643 \N chimidian +7059 2025-08-22 00:03:47.007495+00 2025-08-22 00:03:47.007504+00 f t Maria Luciana PUGLIA lupuglia54@gmail.com 5491158041545 \N Pringles 599 \N \N FEMALE 1996-08-13 -34.6050705 -58.4273871 23 1644 \N mpuglia +7060 2025-08-22 00:16:53.763209+00 2025-08-22 00:16:53.763218+00 f t Invitado Amar invitado-1755821813015@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5353 +7061 2025-08-22 00:37:07.459825+00 2025-08-22 00:37:07.459839+00 f t Invitado Amar invitado-1755823026989@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5354 +7062 2025-08-22 00:58:42.308093+00 2025-08-22 00:58:42.308103+00 f t Invitado Amar invitado-1755824321097@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5355 +7063 2025-08-22 02:20:15.029333+00 2025-08-22 02:20:15.029345+00 f t Invitado Amar invitado-1755829213922@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5356 +7064 2025-08-22 03:00:42.351681+00 2025-08-22 03:00:42.351693+00 f t Invitado Amar invitado-1755831641042@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5357 +7065 2025-08-22 03:15:16.484756+00 2025-08-22 03:15:16.48477+00 f t Invitado Amar invitado-1755832514631@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5358 +7066 2025-08-22 03:23:12.572164+00 2025-08-22 03:23:12.572174+00 f t Invitado Amar invitado-1755832991669@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5359 +7067 2025-08-22 04:10:29.305456+00 2025-08-22 04:10:29.305465+00 f t Invitado Amar invitado-1755835827785@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5360 +7068 2025-08-22 04:13:32.11393+00 2025-08-22 04:13:32.113945+00 f t Invitado Amar invitado-1755836011597@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5361 +7069 2025-08-22 04:52:06.848014+00 2025-08-22 04:52:06.848031+00 f t Invitado Amar invitado-1755838326531@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5362 +7070 2025-08-22 04:54:23.68852+00 2025-08-22 04:54:23.688533+00 f t Invitado Amar invitado-1755838462653@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5363 +7071 2025-08-22 08:05:22.199307+00 2025-08-22 08:05:22.199316+00 f t Invitado Amar invitado-1755849921523@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-5364 +7072 2025-08-22 08:14:04.993053+00 2025-08-22 08:14:04.993066+00 f t Invitado Amar invitado-1755850444680@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5365 +7073 2025-08-22 11:28:15.079076+00 2025-08-22 11:28:15.079087+00 f t Invitado Amar invitado-1755862094621@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5366 +7074 2025-08-22 11:34:11.511631+00 2025-08-22 11:34:11.511645+00 f t Invitado Amar invitado-1755862451082@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5367 +7075 2025-08-22 11:51:47.005019+00 2025-08-22 11:51:47.005033+00 f t Invitado Amar invitado-1755863501253@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5368 +7076 2025-08-22 12:35:11.547911+00 2025-08-22 12:35:11.547998+00 f t Invitado Amar invitado-1755866111180@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-5369 +7077 2025-08-22 12:58:43.949636+00 2025-08-22 12:58:43.949645+00 f t Invitado Amar invitado-1755867523782@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-5370 +7078 2025-08-22 13:38:53.302428+00 2025-08-22 13:38:53.302467+00 f t Invitado Amar invitado-1755869932213@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-5371 +7079 2025-08-22 13:56:44.974728+00 2025-08-22 13:56:44.97474+00 f t Invitado Amar invitado-1755871004131@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-5372 +7080 2025-08-22 13:59:37.640017+00 2025-08-22 13:59:37.640026+00 f t Invitado Amar invitado-1755871177732@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-5373 +7081 2025-08-22 14:07:50.378347+00 2025-08-22 14:07:50.378356+00 f t Invitado Amar invitado-1755871669295@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5374 +7082 2025-08-22 14:22:51.332871+00 2025-08-22 14:22:51.332878+00 f t Ariel Belziti arielb2480@gmail.com 5491125960010 \N Defensa 665 1E \N MALE 1980-02-24 -34.6156143 -58.3718242 15 1646 \N abelziti +7083 2025-08-22 15:08:59.012111+00 2025-08-22 15:08:59.01212+00 f t Invitado Amar invitado-1755875338518@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5375 +7084 2025-08-22 15:49:32.686792+00 2025-08-22 15:49:32.686807+00 f t Paula Nuñez genia92@hotmail.com +541144067209 \N Arribeños 2659 1A \N \N \N -34.5529879 -58.4543123 3 1649 \N pnunez +7085 2025-08-22 16:05:35.882961+00 2025-08-22 16:05:35.882974+00 f t Invitado Amar invitado-1755878735467@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5376 +7086 2025-08-22 16:14:53.82347+00 2025-08-22 16:14:53.823483+00 f t Invitado Amar invitado-1755879293154@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5377 +7087 2025-08-22 16:14:55.266027+00 2025-08-22 16:14:55.266037+00 f t Invitado Amar invitado-1755879235928@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5378 +7088 2025-08-22 16:22:28.61783+00 2025-08-22 16:22:28.617842+00 f t Invitado Amar invitado-1755879747859@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5379 +7089 2025-08-22 16:28:11.726726+00 2025-08-22 16:28:11.726741+00 f t Invitado Amar invitado-1755880090931@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5380 +7090 2025-08-22 16:50:39.586465+00 2025-08-22 16:50:39.586474+00 f t Invitado Amar invitado-1755881439425@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-5381 +7091 2025-08-22 17:10:20.056656+00 2025-08-22 17:10:20.056665+00 f t Invitado Amar invitado-1755882619436@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5382 +7092 2025-08-22 17:15:14.247683+00 2025-08-22 17:15:14.247692+00 f t Martin Vallejos mvallejos@isalud.edu.ar 5491144343029 \N Reconquista 629 entre Viamonte y Tucuman. \N MALE \N -34.6004689 -58.3725659 13 1647 \N mvallejos +7093 2025-08-22 17:20:44.577276+00 2025-08-22 17:20:44.577285+00 f t Invitado Amar invitado-1755883244390@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5383 +7094 2025-08-22 17:28:19.384387+00 2025-08-22 17:28:19.3844+00 f t Invitado Amar invitado-1755883698510@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5384 +7095 2025-08-22 17:50:40.585883+00 2025-08-22 17:50:40.585897+00 f t Invitado Amar invitado-1755885040164@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5385 +7096 2025-08-22 18:42:56.945475+00 2025-08-22 18:42:56.945486+00 f t Invitado Amar invitado-1755888177529@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-5386 +7097 2025-08-22 18:45:57.456468+00 2025-08-22 18:45:57.456478+00 f t Invitado Amar invitado-1755888356981@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5387 +7098 2025-08-22 19:23:25.353402+00 2025-08-22 19:23:25.353413+00 f t Invitado Amar invitado-1755890602735@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5388 +7099 2025-08-22 19:26:12.192717+00 2025-08-22 19:26:12.192727+00 f t Invitado Amar invitado-1755890771395@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-5389 +7100 2025-08-22 19:31:30.143725+00 2025-08-22 19:31:30.143736+00 f t Invitado Amar invitado-1755891090666@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-5390 +7101 2025-08-22 19:36:36.762753+00 2025-08-22 19:36:36.762762+00 f t Invitado Amar invitado-1755891396707@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5391 +7102 2025-08-22 19:44:02.887687+00 2025-08-22 19:44:02.887701+00 f t Invitado Amar invitado-1755891842375@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5392 +7103 2025-08-22 19:45:48.382515+00 2025-08-22 19:45:48.382524+00 f t Invitado Amar invitado-1755891948280@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5393 +7104 2025-08-22 19:52:21.086044+00 2025-08-22 19:52:21.086056+00 f t Invitado Amar invitado-1755892339363@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5394 +7105 2025-08-22 19:54:25.446142+00 2025-08-22 19:54:25.446149+00 f t Celina Gómez mcelinagomez92@gmail.com 5491168501053 \N Ancon 5372 7A \N FEMALE 1992-04-11 -34.5746799 -58.4341222 1 1650 \N cgomez +7106 2025-08-22 19:59:50.688003+00 2025-08-22 19:59:50.688014+00 f t Marcela Gabriela Campos marcam2557@hotmail.com 5491123191078 \N Gavilan 2460 \N \N FEMALE 1957-05-02 -34.6036609 -58.4754698 34 1651 \N mcampos +7107 2025-08-22 20:02:41.925634+00 2025-08-22 20:02:41.925646+00 f t Invitado Amar invitado-1755892960409@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5395 +7108 2025-08-22 20:05:51.852009+00 2025-08-22 20:05:51.852016+00 f t Raquel Arias montes raquelariasmontes@hotmail.com 5491158521336 \N Av Juan Bautista Alberdi 1576 5B timbre 52 \N FEMALE 1958-05-26 -34.6267446 -58.4504436 14 1652 \N rmontes +7109 2025-08-22 20:13:44.57848+00 2025-08-22 20:13:44.578488+00 f t Invitado Amar invitado-1755893624124@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5396 +7110 2025-08-22 20:43:08.248664+00 2025-08-22 20:43:08.248673+00 f t Invitado Amar invitado-1755895387570@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-5397 +7111 2025-08-22 20:58:53.94823+00 2025-08-22 20:58:53.948237+00 f t Edith Soto sotoedith65@gmail.com 5491151788900 \N Uriarte 1058 5 D \N FEMALE \N -34.5803682 -58.4223936 1 1653 \N esoto +7112 2025-08-22 21:15:02.46991+00 2025-08-22 21:15:02.469923+00 f t Andres Brasales jandresbrasales@gmail.com +5411360300304 \N Paraguay 4271 7B \N \N \N -34.5863831 -58.421844 1 1654 \N abrasales +7113 2025-08-22 21:17:26.488207+00 2025-08-22 21:17:26.488216+00 f t Invitado Amar invitado-1755897446084@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5398 +7114 2025-08-22 21:30:56.542339+00 2025-08-22 21:30:56.542351+00 f t Invitado Amar invitado-1755898256149@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5399 +7115 2025-08-22 21:34:23.964385+00 2025-08-22 21:34:23.964405+00 f t Priscila Aabye cilasays@hotmail.com +541130412889 \N Garibaldi 631 PB \N \N -34.4705014 -58.5196964 77 \N \N paabye +7116 2025-08-22 21:40:53.436096+00 2025-08-22 21:40:53.436108+00 f t Invitado Amar invitado-1755898853356@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5400 +7117 2025-08-22 21:54:22.67551+00 2025-08-22 21:54:22.675522+00 f t Fran Palasciano francopalasciano@gmail.com +5491164567162 \N Corrientes 399 399 \N \N -34.4909539 -58.6302067 22 \N \N fpalasciano +7118 2025-08-22 22:03:33.076054+00 2025-08-22 22:03:33.076064+00 f t Invitado Amar invitado-1755900211646@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-5401 +7119 2025-08-22 22:23:30.794452+00 2025-08-22 22:23:30.794465+00 f t Invitado Amar invitado-1755901410317@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5402 +7120 2025-08-22 22:29:20.792128+00 2025-08-22 22:29:20.792137+00 f t Invitado Amar invitado-1755901760380@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5403 +7121 2025-08-22 22:31:29.955964+00 2025-08-22 22:31:29.955972+00 f t Invitado Amar invitado-1755901889567@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5404 +7122 2025-08-22 23:20:45.353776+00 2025-08-22 23:20:45.353788+00 f t Invitado Amar invitado-1755904845978@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5405 +7123 2025-08-22 23:25:07.131649+00 2025-08-22 23:25:07.131663+00 f t Invitado Amar invitado-1755905106796@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-5406 +7124 2025-08-22 23:57:51.033117+00 2025-08-22 23:57:51.033127+00 f t Invitado Amar invitado-1755907071363@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5407 +7125 2025-08-23 00:15:50.122008+00 2025-08-23 00:15:50.122022+00 f t Invitado Amar invitado-1755908149729@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-5408 +7126 2025-08-23 00:23:59.726292+00 2025-08-23 00:23:59.726301+00 f t Invitado Amar invitado-1755908639441@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5409 +7127 2025-08-23 01:30:37.294529+00 2025-08-23 01:30:37.294544+00 f t Invitado Amar invitado-1755912636839@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-5410 +7128 2025-08-23 01:32:04.793594+00 2025-08-23 01:32:04.793603+00 f t Invitado Amar invitado-1755912724413@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5411 +7129 2025-08-23 02:15:56.544592+00 2025-08-23 02:15:56.544601+00 f t Invitado Amar invitado-1755915356297@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-5412 +7130 2025-08-23 02:21:12.290225+00 2025-08-23 02:21:12.290238+00 f t Invitado Amar invitado-1755915671627@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5413 +7131 2025-08-23 02:47:37.272766+00 2025-08-23 02:47:37.272775+00 f t Natacha Forciniti natachaforciniti@gmail.com +541141774698 \N Jose Hernandez 1426 \N \N \N \N -34.566256 -58.4520698 3 1657 \N nforciniti +7132 2025-08-23 02:53:01.965892+00 2025-08-23 02:53:01.965905+00 f t Invitado Amar invitado-1755917581789@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5414 +7133 2025-08-23 02:59:27.798186+00 2025-08-23 02:59:27.798195+00 f t Invitado Amar invitado-1755917967641@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5415 +7134 2025-08-23 04:46:06.80758+00 2025-08-23 04:46:06.807592+00 f t Invitado Amar invitado-1755924366503@example.com 55555555 \N \N \N \N \N 146 \N \N iamar-5416 +7135 2025-08-23 06:38:09.588149+00 2025-08-23 06:38:09.588162+00 f t Invitado Amar invitado-1755931088699@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5417 +7136 2025-08-23 11:33:33.442981+00 2025-08-23 11:33:33.442991+00 f t Invitado Amar invitado-1755904031603@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5418 +7137 2025-08-23 11:52:59.728603+00 2025-08-23 11:52:59.728612+00 f t Invitado Amar invitado-1755949979175@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5419 +7138 2025-08-23 12:42:43.004002+00 2025-08-23 12:42:43.004012+00 f t Invitado Amar invitado-1755952961527@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5420 +7139 2025-08-23 13:12:40.858555+00 2025-08-23 13:12:40.858568+00 f t Invitado Amar invitado-1755954760399@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-5421 +7140 2025-08-23 13:32:35.703881+00 2025-08-23 13:32:35.703894+00 f t Invitado Amar invitado-1755955955268@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5422 +7141 2025-08-23 13:46:33.211631+00 2025-08-23 13:46:33.211644+00 f t Invitado Amar invitado-1755956790938@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5423 +7142 2025-08-23 14:01:04.366641+00 2025-08-23 14:01:04.366654+00 f t Gustavo Safenreiter gsafenreiter@equicenter.com.ar +5466651895 \N Llavallol 2456 Casa \N \N -34.607475 -58.4935635 17 \N \N gsafenreiter +7143 2025-08-23 14:06:52.716704+00 2025-08-23 14:06:52.716714+00 f t Invitado Amar invitado-1755958012268@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-5424 +7144 2025-08-23 14:11:52.0112+00 2025-08-23 14:11:52.011209+00 f t Invitado Amar invitado-1755958311659@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5425 +7145 2025-08-23 14:22:26.711782+00 2025-08-23 14:22:26.711795+00 f t Invitado Amar invitado-1755958946170@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-5426 +7146 2025-08-23 14:36:42.520695+00 2025-08-23 14:36:42.520704+00 f t Invitado Amar invitado-1755959802129@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-5427 +7147 2025-08-23 14:42:12.174084+00 2025-08-23 14:42:12.174099+00 f t MARIA CECILIA TICOZZI cecilia.ticozzi@gmail.com +541164635608 \N Lacroze 5159 1 B \N \N -34.5460365 -58.5564439 79 \N \N mticozzi +7148 2025-08-23 16:07:23.856903+00 2025-08-23 16:07:23.856918+00 f t Invitado Amar invitado-1755965242322@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5428 +7149 2025-08-23 16:23:22.958565+00 2025-08-23 16:23:22.958573+00 f t Invitado Amar invitado-1755966202378@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-5429 +7150 2025-08-23 16:24:57.51678+00 2025-08-23 16:24:57.516792+00 f t Invitado Amar invitado-1755966296462@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5430 +7151 2025-08-23 16:32:40.474871+00 2025-08-23 16:32:40.47488+00 f t Invitado Amar invitado-1755966760090@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5431 +7152 2025-08-23 18:00:56.55613+00 2025-08-23 18:00:56.556141+00 f t Laura zangara laura_zangara@yahoo.com.ar 91167538790 \N Melincue 2671 2671 1 B \N FEMALE 1984-01-14 -34.5971189 -58.484799 43 1661 \N lzangara +7153 2025-08-23 18:08:39.85415+00 2025-08-23 18:08:39.85416+00 f t Antonella Vago antovg1989@gmail.com +541121683663 \N Delgado 826 8G \N \N \N -34.5787805 -58.4530682 38 1672 \N avago +7154 2025-08-23 18:50:53.989595+00 2025-08-23 18:50:53.989606+00 f t Zulma crino zulmacrino@hotmail.com 91180248080 \N Caracas 304 Piso 2 timbre i \N FEMALE 1966-10-04 -34.6259117 -58.462391 4 1662 \N zcrino +7155 2025-08-23 18:54:53.148375+00 2025-08-23 18:54:53.148383+00 f t Invitado Amar invitado-1755975291333@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-5432 +7156 2025-08-23 19:16:19.106006+00 2025-08-23 19:16:19.106014+00 f t Invitado Amar invitado-1755976578162@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5433 +7157 2025-08-23 19:31:29.985984+00 2025-08-23 19:31:29.985994+00 f t Elizabeth Fernandez er.fernandez@hotmail.com +541134634647 \N Santos Dumont 2719 2 A torre anarilla \N \N \N -34.5760769 -58.4412852 1 1663 \N efernandez +7158 2025-08-23 19:55:49.930578+00 2025-08-23 19:55:49.93059+00 f t Invitado Amar invitado-1755978949544@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5434 +7159 2025-08-23 20:04:30.304397+00 2025-08-23 20:04:30.304408+00 f t Invitado Amar invitado-1755979469714@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-5435 +7160 2025-08-23 20:26:14.096051+00 2025-08-23 20:26:14.096063+00 f t Invitado Amar invitado-1755980773123@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-5436 +7161 2025-08-23 20:37:46.851382+00 2025-08-23 20:37:46.851394+00 f t Invitado Amar invitado-1755981466483@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-5437 +7162 2025-08-23 21:28:38.069443+00 2025-08-23 21:28:38.069456+00 f t Invitado Amar invitado-1755984518001@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5438 +7163 2025-08-23 21:40:45.97385+00 2025-08-23 21:40:45.973859+00 f t Invitado Amar invitado-1755985245556@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5439 +7164 2025-08-23 21:46:29.104495+00 2025-08-23 21:46:29.104507+00 f t Invitado Amar invitado-1755985588296@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5440 +7165 2025-08-23 21:49:22.532498+00 2025-08-23 21:49:22.53251+00 f t Invitado Amar invitado-1755985763059@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5441 +7166 2025-08-23 22:48:41.555287+00 2025-08-23 22:48:41.555299+00 f t Invitado Amar invitado-1755989320296@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-5442 +7167 2025-08-23 23:12:38.938095+00 2025-08-23 23:12:38.938107+00 f t Invitado Amar invitado-1755990757804@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5443 +7168 2025-08-23 23:18:02.088275+00 2025-08-23 23:18:02.088285+00 f t Invitado Amar invitado-1755991081510@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5444 +7169 2025-08-23 23:47:33.209578+00 2025-08-23 23:47:33.209594+00 f t Invitado Amar invitado-1755992851849@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-5445 +7170 2025-08-23 23:49:03.298302+00 2025-08-23 23:49:03.298317+00 f t Invitado Amar invitado-1755992942369@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-5446 +7171 2025-08-23 23:50:11.641323+00 2025-08-23 23:50:11.641338+00 f t Invitado Amar invitado-1755993010714@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-5447 +7172 2025-08-24 00:45:42.817888+00 2025-08-24 00:45:42.817896+00 f t Invitado Amar invitado-1755996342443@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-5448 +7173 2025-08-24 00:56:26.127298+00 2025-08-24 00:56:26.127311+00 f t Invitado Amar invitado-1755996987497@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5449 +7174 2025-08-24 01:02:40.676043+00 2025-08-24 01:02:40.676055+00 f t Invitado Amar invitado-1755997359273@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5450 +7175 2025-08-24 01:06:19.282963+00 2025-08-24 01:06:19.282972+00 f t Maria Rosa PINTO mariarosapinto@hotmail.com +541126439513 \N Austria 1998 8 33 \N \N \N -34.5889137 -58.4054269 9 1667 \N mpinto +7176 2025-08-24 02:27:25.531687+00 2025-08-24 02:27:25.5317+00 f t Invitado Amar invitado-1756002444319@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-5451 +7177 2025-08-24 04:03:31.74528+00 2025-08-24 04:03:31.745293+00 f t Invitado Amar invitado-1756008211038@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5452 +7178 2025-08-24 04:05:16.30163+00 2025-08-24 04:05:16.301639+00 f t Invitado Amar invitado-1756008316063@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5453 +7179 2025-08-24 04:26:04.106494+00 2025-08-24 04:26:04.106506+00 f t Invitado Amar invitado-1756009563360@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5454 +7180 2025-08-24 05:07:58.268348+00 2025-08-24 05:07:58.268359+00 f t Invitado Amar invitado-1756012077059@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-5455 +7181 2025-08-24 08:13:22.255423+00 2025-08-24 08:13:22.255434+00 f t Invitado Amar invitado-1756023201672@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5456 +7182 2025-08-24 10:04:26.122491+00 2025-08-24 10:04:26.122503+00 f t Jobanny Tarazon murillo mortienus@gmail.com +541160328233 \N San jose 1121 4 A \N \N -34.6223517 -58.3852048 60 \N \N jtarazonmurillo +7183 2025-08-24 11:23:37.247849+00 2025-08-24 11:23:37.247862+00 f t Geraldine Aabye prili029@hotmail.com +541130365435 \N Garibaldi 631 PB, entre 3 de febrero y Don Bosco \N \N \N -34.4705014 -58.5196964 77 1669 \N gaabye +7184 2025-08-24 11:52:36.748188+00 2025-08-24 11:52:36.7482+00 f t Invitado Amar invitado-1756036356977@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5457 +7185 2025-08-24 12:02:04.450489+00 2025-08-24 12:02:04.450501+00 f t Invitado Amar invitado-1756036923874@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5458 +7186 2025-08-24 12:26:51.32003+00 2025-08-24 12:26:51.320039+00 f t Invitado Amar invitado-1756038410703@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-5459 +7187 2025-08-24 12:36:17.262588+00 2025-08-24 12:36:17.262598+00 f t Cecilia Diaz de Souza ceciliadiazdesouza@gmail.com +541121798113 \N Libertador 2802 piso 7 \N FEMALE \N -34.5859057 -58.4248535 1 1670 \N cdiazdesouza +7188 2025-08-24 12:45:01.441489+00 2025-08-24 12:45:01.441503+00 f t Invitado Amar invitado-1756039504806@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5460 +7189 2025-08-24 13:52:59.167229+00 2025-08-24 13:52:59.167238+00 f t Invitado Amar invitado-1756043578686@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5461 +7190 2025-08-24 13:58:04.249777+00 2025-08-24 13:58:04.249787+00 f t Invitado Amar invitado-1756043883621@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-5462 +7191 2025-08-24 14:03:34.557135+00 2025-08-24 14:03:34.557146+00 f t Maria laura Plans lauplans@gmail.com +541165641304 \N Arce 372 Pb C \N \N \N -34.5708292 -58.431191 1 1668 \N mplans +7192 2025-08-24 14:31:14.701172+00 2025-08-24 14:31:14.701182+00 f t Invitado Amar invitado-1756045874308@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5463 +7193 2025-08-24 15:42:36.111917+00 2025-08-24 15:42:36.111927+00 f t Roxy Gómez roxymalove@gmail.com +5491151093426 \N Avenida Corrientes 745 6 65 \N \N -34.6033241 -58.3773055 13 \N \N rgomez +7194 2025-08-24 16:23:35.699235+00 2025-08-24 16:23:35.699244+00 f t Invitado Amar invitado-1756052615367@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5464 +7195 2025-08-24 17:03:51.699919+00 2025-08-24 17:03:51.699931+00 f t Invitado Amar invitado-1756055031163@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5465 +7196 2025-08-24 17:35:42.462133+00 2025-08-24 17:35:42.462144+00 f t Invitado Amar invitado-1756056941706@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5466 +7197 2025-08-24 18:33:20.576355+00 2025-08-24 18:33:20.576368+00 f t Invitado Amar invitado-1756060400196@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5467 +7198 2025-08-24 18:39:42.595724+00 2025-08-24 18:39:42.595734+00 f t María Elena palacios maritapalacios57@gmail.com 5491167228141 \N Juan Francisco Seguí 3770 2piso.dpt6 \N FEMALE 1975-05-02 -34.5781876 -58.4113939 1 1666 \N mpalacios +7199 2025-08-24 18:52:37.674059+00 2025-08-24 18:52:37.67407+00 f t Invitado Amar invitado-1756061557204@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5468 +7200 2025-08-24 19:22:17.524115+00 2025-08-24 19:22:17.524128+00 f t Invitado Amar invitado-1756063337155@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5469 +13326 2025-11-14 21:57:50.517384+00 2025-11-14 21:57:50.517393+00 f t Invitado Amar invitado-1763157469586@example.com 55555555 \N \N \N \N \N 11 \N \N \N +7202 2025-08-24 19:25:21.757285+00 2025-08-24 19:25:21.757294+00 f t Mariano Bejar marianobejar@gmail.com +541155681985 \N Av. Juan Bautista Alberdi 1676 piso 4 - Dpto. 1 \N \N -34.6277772 -58.4522724 14 \N \N mbejar +7203 2025-08-24 19:38:15.656589+00 2025-08-24 19:38:15.656599+00 f t Invitado Amar invitado-1756064295098@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5470 +7204 2025-08-24 20:14:15.976122+00 2025-08-24 20:14:15.976132+00 f t Invitado Amar invitado-1756066455618@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-5471 +7205 2025-08-24 20:19:42.662283+00 2025-08-24 20:19:42.662294+00 f t Invitado Amar invitado-1756066779711@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5472 +7206 2025-08-24 21:07:32.707752+00 2025-08-24 21:07:32.707763+00 f t Invitado Amar invitado-1756069652295@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5473 +7207 2025-08-24 21:19:35.567816+00 2025-08-24 21:19:35.567829+00 f t Invitado Amar invitado-1756070374920@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5474 +7208 2025-08-24 21:19:41.452959+00 2025-08-24 21:19:41.452971+00 f t Invitado Amar invitado-1756070381107@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-5475 +7209 2025-08-24 21:20:55.060696+00 2025-08-24 21:20:55.060705+00 f t Invitado Amar invitado-1756070454672@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5476 +7210 2025-08-24 21:21:55.489388+00 2025-08-24 21:21:55.489397+00 f t Invitado Amar invitado-1756070515101@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5477 +7211 2025-08-24 21:34:38.783021+00 2025-08-24 21:34:38.78303+00 f t Fernanda Cera verafernanda5@gmail.com +542932537010 \N Avenida Hipólito Yrigoyen 2900 14 B \N \N -34.611418 -58.407217 18 \N \N fcera +7212 2025-08-24 21:43:46.878953+00 2025-08-24 21:43:46.878965+00 f t Invitado Amar invitado-1756071826357@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5478 +7213 2025-08-24 21:47:03.37607+00 2025-08-24 21:47:03.376083+00 f t Invitado Amar invitado-1756072022835@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5479 +7214 2025-08-24 21:48:53.76037+00 2025-08-24 21:48:53.760378+00 f t Invitado Amar invitado-1756072133292@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5480 +7215 2025-08-24 21:56:39.562448+00 2025-08-24 21:56:39.562457+00 f t Invitado Amar invitado-1756072598839@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5481 +7216 2025-08-24 22:19:19.314865+00 2025-08-24 22:19:19.314878+00 f t Invitado Amar invitado-1756073957045@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-5482 +7217 2025-08-24 22:22:29.241385+00 2025-08-24 22:22:29.241397+00 f t Invitado Amar invitado-1756074148879@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-5483 +7218 2025-08-24 22:39:51.24215+00 2025-08-24 22:39:51.24216+00 f t Invitado Amar invitado-1756075188616@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5484 +7219 2025-08-24 23:05:48.342572+00 2025-08-24 23:05:48.342582+00 f t Invitado Amar invitado-1756076746012@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5485 +7220 2025-08-24 23:36:53.897215+00 2025-08-24 23:36:53.897225+00 f t Invitado Amar invitado-1756078614019@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5486 +7221 2025-08-24 23:37:51.241802+00 2025-08-24 23:37:51.241811+00 f t Invitado Amar invitado-1756078670739@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-5487 +7222 2025-08-24 23:38:30.073612+00 2025-08-24 23:38:30.073623+00 f t Invitado Amar invitado-1756078709445@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5488 +7223 2025-08-24 23:46:35.422508+00 2025-08-24 23:46:35.422519+00 f t Invitado Amar invitado-1756079127635@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5489 +7224 2025-08-24 23:54:03.688471+00 2025-08-24 23:54:03.68848+00 f t Invitado Amar invitado-1756079643333@example.com 55555555 \N \N \N \N \N 7 \N \N iamar-5490 +7225 2025-08-24 23:58:47.031805+00 2025-08-24 23:58:47.031818+00 f t Agustina Novales puntieri agustina.novales@hotmail.com +541135941360 \N Jose bonifacio 843 7b \N \N -34.6274834 -58.4395155 14 \N \N anovalespuntieri +7226 2025-08-25 00:18:24.65918+00 2025-08-25 00:18:24.659189+00 f t Invitado Amar invitado-1756081104247@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5491 +7227 2025-08-25 00:19:23.163486+00 2025-08-25 00:19:23.163496+00 f t Invitado Amar invitado-1756081163014@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5492 +7228 2025-08-25 00:27:54.777627+00 2025-08-25 00:27:54.777636+00 f t Invitado Amar invitado-1756081674429@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5493 +7229 2025-08-25 00:32:45.871663+00 2025-08-25 00:32:45.871672+00 f t Invitado Amar invitado-1756081968479@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5494 +7230 2025-08-25 00:33:00.1793+00 2025-08-25 00:33:00.17931+00 f t Invitado Amar invitado-1756081978757@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5495 +7231 2025-08-25 00:36:49.049082+00 2025-08-25 00:36:49.04919+00 f t Invitado Amar invitado-1756082206566@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5496 +7232 2025-08-25 01:13:37.807859+00 2025-08-25 01:13:37.80787+00 f t Invitado Amar invitado-1756084417748@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5497 +7233 2025-08-25 01:17:39.296938+00 2025-08-25 01:17:39.296947+00 f t Invitado Amar invitado-1756084658867@example.com 55555555 \N \N \N \N \N 86 \N \N iamar-5498 +7234 2025-08-25 01:29:07.505501+00 2025-08-25 01:29:07.50551+00 f t Invitado Amar invitado-1756085347067@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5499 +7235 2025-08-25 01:56:56.286684+00 2025-08-25 01:56:56.286696+00 f t Invitado Amar invitado-1756087014924@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-5500 +7236 2025-08-25 02:01:34.667745+00 2025-08-25 02:01:34.667762+00 f t Invitado Amar invitado-1756087751636@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5501 +7237 2025-08-25 02:20:10.870557+00 2025-08-25 02:20:10.870568+00 f t Invitado Amar invitado-1756088410253@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5502 +7238 2025-08-25 02:34:24.902911+00 2025-08-25 02:34:24.902922+00 f t Miguel Guevara m.mikeguevara@gmail.com +541168994490 \N Av. Rivadavia 1725 4g \N \N -34.6089546 -58.38845 86 \N \N mguevara +7239 2025-08-25 02:43:59.515476+00 2025-08-25 02:43:59.515485+00 f t Invitado Amar invitado-1756089839152@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5503 +7240 2025-08-25 02:47:08.964154+00 2025-08-25 02:47:08.964167+00 f t Invitado Amar invitado-1756090028603@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-5504 +7241 2025-08-25 02:49:13.36814+00 2025-08-25 02:49:13.368149+00 f t Invitado Amar invitado-1756090152203@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5505 +7242 2025-08-25 02:51:40.333837+00 2025-08-25 02:51:40.333845+00 f t Invitado Amar invitado-1756090299242@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5506 +7244 2025-08-25 04:33:05.52399+00 2025-08-25 04:33:05.524005+00 f t Invitado Amar invitado-1756096384887@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-5507 +7245 2025-08-25 04:37:02.045524+00 2025-08-25 04:37:02.045536+00 f t Invitado Amar invitado-1756096621562@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-5508 +7246 2025-08-25 06:59:34.428827+00 2025-08-25 06:59:34.42884+00 f t Invitado Amar invitado-1756105174195@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5509 +7247 2025-08-25 09:57:59.405771+00 2025-08-25 09:57:59.405782+00 f t Invitado Amar invitado-1756115879209@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5510 +7248 2025-08-25 10:18:05.366778+00 2025-08-25 10:18:05.366788+00 f t Invitado Amar invitado-1756117085129@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-5511 +7249 2025-08-25 11:13:16.388688+00 2025-08-25 11:13:16.388699+00 f t Invitado Amar invitado-1756120395665@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5512 +7250 2025-08-25 11:21:40.425169+00 2025-08-25 11:21:40.425181+00 f t Invitado Amar invitado-1756120900369@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5513 +7251 2025-08-25 11:34:50.846895+00 2025-08-25 11:34:50.846909+00 f t Invitado Amar invitado-1756121690484@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5514 +7252 2025-08-25 12:11:17.495341+00 2025-08-25 12:11:17.495355+00 f t Invitado Amar invitado-1756123876578@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5515 +7253 2025-08-25 12:24:14.504453+00 2025-08-25 12:24:14.504466+00 f t Invitado Amar invitado-1756124653515@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5516 +7254 2025-08-25 12:26:56.240644+00 2025-08-25 12:26:56.240658+00 f t Invitado Amar invitado-1756124815777@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5517 +7255 2025-08-25 12:27:26.228537+00 2025-08-25 12:27:26.228546+00 f t Invitado Amar invitado-1756124845650@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5518 +7256 2025-08-25 12:27:26.460317+00 2025-08-25 12:27:26.460329+00 f t Invitado Amar invitado-1756124846145@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5519 +7257 2025-08-25 12:30:25.736427+00 2025-08-25 12:30:25.736436+00 f t Invitado Amar invitado-1756125024527@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5520 +7258 2025-08-25 12:33:26.85785+00 2025-08-25 12:33:26.857863+00 f t Invitado Amar invitado-1756125206113@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5521 +7259 2025-08-25 13:24:05.108552+00 2025-08-25 13:24:05.108565+00 f t Silvia Gomez silviago-28@hotmail.com +541159039047 \N Av. Belgrano 1855 5 \N \N \N -34.6137638 -58.392572 18 1674 \N sgomez +7260 2025-08-25 13:43:17.917924+00 2025-08-25 13:43:17.917934+00 f t Invitado Amar invitado-1756129397498@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5522 +7261 2025-08-25 13:44:35.153745+00 2025-08-25 13:44:35.153754+00 f t Invitado Amar invitado-1756129473838@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-5523 +7262 2025-08-25 14:03:41.541211+00 2025-08-25 14:03:41.541224+00 f t Invitado Amar invitado-1756130621137@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-5524 +7263 2025-08-25 14:34:58.61659+00 2025-08-25 14:34:58.6166+00 f t Invitado Amar invitado-1756132497897@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5525 +7264 2025-08-25 14:42:59.524975+00 2025-08-25 14:42:59.524985+00 f t Martin Escobar claudegoitia@hotmail.com.ar +1157667045 \N Diputado Pedrera 1790 pb \N MALE \N -34.6818736 -58.404823 70 1676 \N mescobar +7265 2025-08-25 14:43:24.577519+00 2025-08-25 14:43:24.577533+00 f t Invitado Amar invitado-1756133003066@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5526 +7266 2025-08-25 15:00:38.509686+00 2025-08-25 15:00:38.5097+00 f t Invitado Amar invitado-1756134038154@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-5527 +7267 2025-08-25 15:17:08.459726+00 2025-08-25 15:17:08.45974+00 f t Invitado Amar invitado-1756135028000@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5528 +7268 2025-08-25 15:20:27.906953+00 2025-08-25 15:20:27.906967+00 f t Invitado Amar invitado-1756135226396@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5529 +7269 2025-08-25 15:21:12.832604+00 2025-08-25 15:21:12.832617+00 f t Invitado Amar invitado-1756135272387@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5530 +7270 2025-08-25 15:50:29.083175+00 2025-08-25 15:50:29.08319+00 f t Invitado Amar invitado-1756137027914@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5531 +7271 2025-08-25 15:54:04.339277+00 2025-08-25 15:54:04.33929+00 f t Invitado Amar invitado-1756137243415@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5532 +7272 2025-08-25 16:15:21.84638+00 2025-08-25 16:15:21.846393+00 f t Invitado Amar invitado-1756138520316@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-5533 +7273 2025-08-25 16:25:17.811574+00 2025-08-25 16:25:17.811588+00 f t soledad Andersen sol.andersen@gmail.com 5491150085388 \N moreno 1914 \N \N FEMALE \N -34.6128048 -58.3935213 18 1677 \N sandersen +7274 2025-08-25 16:32:04.674006+00 2025-08-25 16:32:04.674019+00 f t Invitado Amar invitado-1756139627963@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5534 +7275 2025-08-25 16:37:03.463002+00 2025-08-25 16:37:03.463017+00 f t Barbara Barlett barbarabarlett@yahoo.com.ar +541168177370 \N Paraguay 419 5to dpto 46 \N \N -34.5973084 -58.3732995 37 \N \N bbarlett +7276 2025-08-25 17:06:23.7664+00 2025-08-25 17:06:23.76641+00 f t Invitado Amar invitado-1756141582409@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5535 +7326 2025-08-26 16:54:51.216529+00 2025-08-26 16:54:51.216542+00 f t Invitado Amar invitado-1756227290820@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-5576 +13327 2025-11-14 21:58:27.232327+00 2025-11-14 21:58:27.232336+00 f t Invitado Amar invitado-1763157507093@example.com 55555555 \N \N \N \N \N 11 \N \N \N +7278 2025-08-25 17:19:26.363549+00 2025-08-25 17:19:26.363574+00 f t veronica esposito veroespo34@gmail.com 91164857545 \N Dr Adolfo Dickman 1421 7 C \N FEMALE 1972-04-11 -34.6020399 -58.4641643 34 1679 \N vesposito +7279 2025-08-25 17:56:26.700236+00 2025-08-25 17:56:26.700249+00 f t Invitado Amar invitado-1756144585766@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-5536 +7280 2025-08-25 18:00:21.232035+00 2025-08-25 18:00:21.232049+00 f t Invitado Amar invitado-1756144820666@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-5537 +7281 2025-08-25 18:19:37.511226+00 2025-08-25 18:19:37.511235+00 f t Invitado Amar invitado-1756145976871@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5538 +7282 2025-08-25 18:40:16.838023+00 2025-08-25 18:40:16.838034+00 f t Invitado Amar invitado-1756147216039@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-5539 +7283 2025-08-25 18:57:20.210007+00 2025-08-25 18:57:20.210017+00 f t Invitado Amar invitado-1756148236135@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5540 +7284 2025-08-25 19:02:31.537264+00 2025-08-25 19:02:31.537272+00 f t marcela saod marcelasaid@hotmail.com 91133828008 \N Av Boyaca 682 piso 4 \N FEMALE \N -34.6197529 -58.4616026 4 1680 \N msaod +7285 2025-08-25 20:21:28.606668+00 2025-08-25 20:21:28.606677+00 f t Invitado Amar invitado-1756153288004@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-5541 +7286 2025-08-25 20:54:22.667932+00 2025-08-25 20:54:22.667943+00 f t Invitado Amar invitado-1756155261122@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5542 +7287 2025-08-25 20:56:29.272784+00 2025-08-25 20:56:29.272794+00 f t Invitado Amar invitado-1756155388654@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5543 +7288 2025-08-25 21:11:10.586147+00 2025-08-25 21:11:10.586158+00 f t Vanesa Ayan vanesaastrid@hotmail.comom 5491161794970 \N estado de palestina 1189 pb 1 \N FEMALE \N -34.599635 -58.425209 23 1682 \N vayan +7289 2025-08-25 21:57:31.722478+00 2025-08-25 21:57:31.722491+00 f t Invitado Amar invitado-1756159051223@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-5544 +7290 2025-08-25 22:05:42.599684+00 2025-08-25 22:05:42.599694+00 f t Invitado Amar invitado-1756159541777@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-5545 +7291 2025-08-25 22:08:01.607079+00 2025-08-25 22:08:01.607093+00 f t Invitado Amar invitado-1756159681054@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-5546 +7292 2025-08-25 23:54:58.266669+00 2025-08-25 23:54:58.266679+00 f t Invitado Amar invitado-1756166094523@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5547 +7293 2025-08-25 23:56:17.033383+00 2025-08-25 23:56:17.033396+00 f t Invitado Amar invitado-1756166175661@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-5548 +7294 2025-08-26 00:10:18.354397+00 2025-08-26 00:10:18.354408+00 f t Invitado Amar invitado-1756167017869@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-5549 +7295 2025-08-26 00:26:01.823192+00 2025-08-26 00:26:01.823207+00 f t Invitado Amar invitado-1756167961168@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-5550 +7296 2025-08-26 00:39:18.0021+00 2025-08-26 00:39:18.002114+00 f t Invitado Amar invitado-1756168757375@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-5551 +7297 2025-08-26 00:41:05.041337+00 2025-08-26 00:41:05.041349+00 f t Invitado Amar invitado-1756168864730@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-5552 +7298 2025-08-26 01:02:49.630978+00 2025-08-26 01:02:49.63099+00 f t Invitado Amar invitado-1756170168901@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5553 +7299 2025-08-26 02:09:13.81243+00 2025-08-26 02:09:13.812443+00 f t Invitado Amar invitado-1756174152307@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5554 +7300 2025-08-26 02:13:06.071051+00 2025-08-26 02:13:06.071063+00 f t Invitado Amar invitado-1756174487231@example.com 55555555 \N \N \N \N \N 7 \N \N iamar-5555 +7301 2025-08-26 02:15:18.839954+00 2025-08-26 02:15:18.839967+00 f t Invitado Amar invitado-1756174518646@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-5556 +7302 2025-08-26 02:16:02.858468+00 2025-08-26 02:16:02.85848+00 f t Invitado Amar invitado-1756174562422@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-5557 +7303 2025-08-26 02:32:19.776576+00 2025-08-26 02:32:19.776592+00 f t Invitado Amar invitado-1756175539445@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5558 +7304 2025-08-26 02:54:17.039075+00 2025-08-26 02:54:17.039091+00 f t Invitado Amar invitado-1756176856247@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-5559 +7305 2025-08-26 03:34:43.71226+00 2025-08-26 03:34:43.712268+00 f t Lucia González gonzalezlucia2896@gmail.com +541130863586 \N Monroe 5388 6 C \N \N \N -34.5713348 -58.4812477 29 1684 \N lgonzalez-2 +7306 2025-08-26 03:58:18.105673+00 2025-08-26 03:58:18.105687+00 f t Luciana Borges laborges@live.com +541132304551 \N Uriburu 1618 7A \N \N \N -34.5899454 -58.3956443 9 1709 \N lborges +7307 2025-08-26 04:05:11.371604+00 2025-08-26 04:05:11.371615+00 f t Invitado Amar invitado-1756181110847@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5560 +7308 2025-08-26 07:00:49.520583+00 2025-08-26 07:00:49.520595+00 f t Invitado Amar invitado-1756191649506@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5561 +7309 2025-08-26 07:01:05.073083+00 2025-08-26 07:01:05.073096+00 f t Invitado Amar invitado-1756191664254@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5562 +7310 2025-08-26 08:17:55.97281+00 2025-08-26 08:17:55.972818+00 f t Invitado Amar invitado-1756196275647@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5563 +7311 2025-08-26 08:18:33.691328+00 2025-08-26 08:18:33.691338+00 f t Invitado Amar invitado-1756196313497@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5564 +7312 2025-08-26 09:54:55.546029+00 2025-08-26 09:54:55.546041+00 f t Invitado Amar invitado-1756202095132@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5565 +7313 2025-08-26 10:00:06.967301+00 2025-08-26 10:00:06.967319+00 f t Invitado Amar invitado-1756202406810@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5566 +7314 2025-08-26 11:40:37.513754+00 2025-08-26 11:40:37.513768+00 f t Invitado Amar invitado-1756208437508@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5567 +7315 2025-08-26 11:43:23.987382+00 2025-08-26 11:43:23.987393+00 f t Invitado Amar invitado-1756208603135@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5568 +7316 2025-08-26 12:02:53.089245+00 2025-08-26 12:02:53.089253+00 f t Nelly Soledad vera 00000012@gmail.com 🇦🇷+5491140636141 \N Martin Rodriguez 1151 pb 8 cuerpo D \N MALE \N -34.6382495 -58.3590111 33 1683 \N nvera +7317 2025-08-26 12:03:12.561163+00 2025-08-26 12:03:12.561175+00 f t Invitado Amar invitado-1756209792180@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5569 +7318 2025-08-26 12:29:31.237196+00 2025-08-26 12:29:31.237207+00 f t Invitado Amar invitado-1756211370497@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-5570 +7319 2025-08-26 13:02:52.925823+00 2025-08-26 13:02:52.925832+00 f t Cecilia Levati cecilevati@gmail.com 541169344045 \N Av. San Martin 1412 No funciona el timbre. Llamar \N FEMALE \N -34.6068755 -58.4496518 14 1685 \N clevati +7320 2025-08-26 13:29:05.767777+00 2025-08-26 13:29:05.76779+00 f t Invitado Amar invitado-1756214945352@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-5571 +7321 2025-08-26 14:16:24.474818+00 2025-08-26 14:16:24.47483+00 f t Invitado Amar invitado-1756217730109@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5572 +7322 2025-08-26 14:25:11.240604+00 2025-08-26 14:25:11.240615+00 f t Invitado Amar invitado-1756218310672@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-5573 +7323 2025-08-26 14:46:58.860972+00 2025-08-26 14:46:58.860982+00 f t Andres Sanchez 83calex@gmail.com 5491126378452 \N Crisologo larralde 5873 \N \N MALE 1983-02-11 -34.5661599 -58.5022532 51 1686 \N asanchez +7324 2025-08-26 15:13:35.043124+00 2025-08-26 15:13:35.04317+00 f t Invitado Amar invitado-1756221213985@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5574 +7325 2025-08-26 15:43:41.45098+00 2025-08-26 15:43:41.450994+00 f t Invitado Amar invitado-1756223021168@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5575 +13540 2025-11-17 20:10:41.633951+00 2025-11-17 20:10:41.633959+00 f t Invitado Amar invitado-1763410240716@example.com 55555555 \N \N \N \N \N 112 \N \N \N +7327 2025-08-26 16:59:09.866708+00 2025-08-26 16:59:09.866717+00 f t Invitado Amar invitado-1756227548203@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5577 +7328 2025-08-26 17:31:04.845378+00 2025-08-26 17:31:04.845388+00 f t Invitado Amar invitado-1756229464467@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5578 +7329 2025-08-26 17:57:58.155929+00 2025-08-26 17:57:58.155937+00 f t Invitado Amar invitado-1756231077725@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-5579 +7330 2025-08-26 18:12:01.648167+00 2025-08-26 18:12:01.64818+00 f t Invitado Amar invitado-1756231917380@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-5580 +7331 2025-08-26 19:18:31.279639+00 2025-08-26 19:18:31.279652+00 f t Invitado Amar invitado-1756235910841@example.com 55555555 \N \N \N \N \N 66 \N \N iamar-5581 +7332 2025-08-26 20:50:27.66911+00 2025-08-26 20:50:27.669121+00 f t Invitado Amar invitado-1756241427088@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5582 +7333 2025-08-26 21:39:22.918302+00 2025-08-26 21:39:22.918315+00 f t Invitado Amar invitado-1756244361158@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5583 +7334 2025-08-26 21:49:05.196996+00 2025-08-26 21:49:05.197013+00 f t Camila Victoria Scholz scholzcamila@gmail.com +541156446609 \N ituzaingo 868 \N \N -34.6319432 -58.3756891 32 \N \N cscholz-2 +7335 2025-08-26 21:58:25.453067+00 2025-08-26 21:58:25.453076+00 f t Invitado Amar invitado-1756245505162@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5584 +7336 2025-08-26 22:46:47.611792+00 2025-08-26 22:46:47.611802+00 f t Invitado Amar invitado-1756248407088@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5585 +7337 2025-08-26 22:55:13.818577+00 2025-08-26 22:55:13.818586+00 f t Invitado Amar invitado-1756248912370@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-5586 +7338 2025-08-26 23:03:05.157949+00 2025-08-26 23:03:05.157959+00 f t Invitado Amar invitado-1756249383646@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-5587 +7339 2025-08-26 23:42:46.377049+00 2025-08-26 23:42:46.377059+00 f t Invitado Amar invitado-1756251761591@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-5588 +7340 2025-08-26 23:57:59.033884+00 2025-08-26 23:57:59.033893+00 f t Invitado Amar invitado-1756252678399@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5589 +7341 2025-08-26 23:58:11.408315+00 2025-08-26 23:58:11.408323+00 f t Sabina Inés Bulcourf sabinabulcourf@gmail.com 5491168530095 \N Bartolomé Mitre 3517 9 A \N FEMALE 2000-09-14 -34.6094136 -58.4162721 23 1687 \N sbulcourf +7342 2025-08-27 00:33:03.125744+00 2025-08-27 00:33:03.125759+00 f t Invitado Amar invitado-1756254783055@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5590 +7343 2025-08-27 00:38:27.465794+00 2025-08-27 00:38:27.465806+00 f t Invitado Amar invitado-1756255106869@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5591 +7344 2025-08-27 01:01:29.997774+00 2025-08-27 01:01:29.997784+00 f t Invitado Amar invitado-1756256489559@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5592 +7345 2025-08-27 01:04:23.83603+00 2025-08-27 01:04:23.83604+00 f t Invitado Amar invitado-1756256659674@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-5593 +7346 2025-08-27 01:37:38.549706+00 2025-08-27 01:37:38.549716+00 f t Invitado Amar invitado-1756258656991@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5594 +7347 2025-08-27 02:14:25.058961+00 2025-08-27 02:14:25.058972+00 f t Invitado Amar invitado-1756260863582@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-5595 +7348 2025-08-27 02:23:05.275687+00 2025-08-27 02:23:05.275702+00 f t Invitado Amar invitado-1756261384980@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5596 +7349 2025-08-27 02:33:44.427452+00 2025-08-27 02:33:44.427463+00 f t Invitado Amar invitado-1756262023600@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-5597 +7350 2025-08-27 02:38:26.927985+00 2025-08-27 02:38:26.927996+00 f t Invitado Amar invitado-1756262305900@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-5598 +7351 2025-08-27 02:48:22.33532+00 2025-08-27 02:48:22.335332+00 f t Invitado Amar invitado-1756262901914@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5599 +7352 2025-08-27 02:49:26.89634+00 2025-08-27 02:49:26.896353+00 f t Invitado Amar invitado-1756262966095@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-5600 +7353 2025-08-27 03:00:18.105345+00 2025-08-27 03:00:18.105359+00 f t Invitado Amar invitado-1756263617205@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5601 +7354 2025-08-27 03:24:48.777033+00 2025-08-27 03:24:48.777047+00 f t Invitado Amar invitado-1756265088116@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-5602 +7355 2025-08-27 07:19:58.512819+00 2025-08-27 07:19:58.512833+00 f t Invitado Amar invitado-1756279198173@example.com 55555555 \N \N \N \N \N 69 \N \N iamar-5603 +7356 2025-08-27 10:22:39.154023+00 2025-08-27 10:22:39.154036+00 f t Invitado Amar invitado-1756290155959@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5604 +7357 2025-08-27 11:49:14.413221+00 2025-08-27 11:49:14.41323+00 f t Invitado Amar invitado-1756295353339@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5605 +7358 2025-08-27 12:38:06.798741+00 2025-08-27 12:38:06.79875+00 f t Invitado Amar invitado-1756298285264@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5606 +7359 2025-08-27 13:03:37.010785+00 2025-08-27 13:03:37.010799+00 f t Invitado Amar invitado-1756299815833@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-5607 +7360 2025-08-27 13:18:27.27652+00 2025-08-27 13:18:27.27653+00 f t Invitado Amar invitado-1756300706798@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5608 +7361 2025-08-27 13:54:55.167458+00 2025-08-27 13:54:55.167469+00 f t Invitado Amar invitado-1756302894808@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5609 +7362 2025-08-27 14:53:04.614154+00 2025-08-27 14:53:04.614167+00 f t Invitado Amar invitado-1756306383627@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5610 +7363 2025-08-27 14:54:55.81068+00 2025-08-27 14:54:55.81069+00 f t Invitado Amar invitado-1756306495452@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5611 +7364 2025-08-27 15:15:08.318678+00 2025-08-27 15:15:08.318692+00 f t Invitado Amar invitado-1756307705760@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-5612 +7365 2025-08-27 15:21:38.097807+00 2025-08-27 15:21:38.097819+00 f t Invitado Amar invitado-1756308096668@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5613 +7366 2025-08-27 16:08:21.885474+00 2025-08-27 16:08:21.885488+00 f t Invitado Amar invitado-1756310902122@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5614 +7367 2025-08-27 16:10:00.701077+00 2025-08-27 16:10:00.701091+00 f t Marcelo Guillan emeguillan@gmail.com +541133730366 \N Quito 3631 1 B \N \N \N -34.6165659 -58.4173835 23 1690 \N mguillan +7368 2025-08-27 16:13:52.276411+00 2025-08-27 16:13:52.276422+00 f t Invitado Amar invitado-1756311231850@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5615 +7369 2025-08-27 16:22:55.27125+00 2025-08-27 16:22:55.271263+00 f t Invitado Amar invitado-1756311757378@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5616 +7370 2025-08-27 17:06:52.908027+00 2025-08-27 17:06:52.908036+00 f t Invitado Amar invitado-1756314410465@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5617 +7371 2025-08-27 17:20:13.678905+00 2025-08-27 17:20:13.678917+00 f t Invitado Amar invitado-1756315212936@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-5618 +7372 2025-08-27 17:27:46.583874+00 2025-08-27 17:27:46.583887+00 f t Invitado Amar invitado-1756315665931@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5619 +7373 2025-08-27 17:33:33.798571+00 2025-08-27 17:33:33.798581+00 f t Invitado Amar invitado-1756316012682@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5620 +7374 2025-08-27 17:38:02.942487+00 2025-08-27 17:38:02.942499+00 f t Invitado Amar invitado-1756316283021@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-5621 +7375 2025-08-27 17:45:26.407806+00 2025-08-27 17:45:26.407816+00 f t Invitado Amar invitado-1756316725635@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-5622 +7376 2025-08-27 18:22:43.616836+00 2025-08-27 18:22:43.616847+00 f t Invitado Amar invitado-1756318962494@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-5623 +7377 2025-08-27 18:30:39.089438+00 2025-08-27 18:30:39.089449+00 f t Invitado Amar invitado-1756319438227@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-5624 +7378 2025-08-27 18:52:05.798626+00 2025-08-27 18:52:05.798639+00 f t Invitado Amar invitado-1756320725209@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5625 +7379 2025-08-27 18:58:57.353743+00 2025-08-27 18:58:57.353756+00 f t Invitado Amar invitado-1756321135607@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5626 +7380 2025-08-27 19:02:14.871789+00 2025-08-27 19:02:14.871799+00 f t Invitado Amar invitado-1756321334196@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-5627 +7381 2025-08-27 19:14:56.620452+00 2025-08-27 19:14:56.620463+00 f t Invitado Amar invitado-1756322095908@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5628 +7382 2025-08-27 19:55:07.313512+00 2025-08-27 19:55:07.313526+00 f t Invitado Amar invitado-1756324506631@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5629 +7383 2025-08-27 19:59:41.031753+00 2025-08-27 19:59:41.031763+00 f t Invitado Amar invitado-1756324781555@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5630 +7384 2025-08-27 20:03:30.431825+00 2025-08-27 20:03:30.431838+00 f t Invitado Amar invitado-1756325009309@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5631 +7385 2025-08-27 20:11:43.912096+00 2025-08-27 20:11:43.91211+00 f t Invitado Amar invitado-1756325503509@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-5632 +7386 2025-08-27 20:49:26.441854+00 2025-08-27 20:49:26.441866+00 f t Invitado Amar invitado-1756327765771@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5633 +7387 2025-08-27 21:08:32.003813+00 2025-08-27 21:08:32.003821+00 f t Invitado Amar invitado-1756328911305@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5634 +7388 2025-08-27 22:05:05.974971+00 2025-08-27 22:05:05.974982+00 f t Invitado Amar invitado-1756332304448@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5635 +7389 2025-08-27 22:11:13.138061+00 2025-08-27 22:11:13.138071+00 f t Invitado Amar invitado-1756332672585@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5636 +7390 2025-08-27 22:37:03.480331+00 2025-08-27 22:37:03.48034+00 f t Invitado Amar invitado-1756334222421@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-5637 +7391 2025-08-27 22:39:14.33315+00 2025-08-27 22:39:14.333159+00 f t Invitado Amar invitado-1756334353659@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5638 +7392 2025-08-27 22:45:14.203279+00 2025-08-27 22:45:14.203295+00 f t Invitado Amar invitado-1756335722305@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5639 +7393 2025-08-27 22:46:04.277144+00 2025-08-27 22:46:04.277154+00 f t Invitado Amar invitado-1756335772365@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5640 +7394 2025-08-27 23:13:07.379696+00 2025-08-27 23:13:07.379709+00 f t Invitado Amar invitado-1756336386547@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5641 +7395 2025-08-27 23:14:08.815304+00 2025-08-27 23:14:08.815314+00 f t Luisa Lopez luisa.e.c.lopez@gmail.com 5491151567790 \N Palpa 2390 altura Cabildo 1000 - Piso 8 Dto D \N FEMALE \N -34.5689637 -58.4462354 1 1692 \N llopez +7397 2025-08-27 23:22:39.334549+00 2025-08-27 23:22:39.334562+00 f t Invitado Amar invitado-1756336958635@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-5642 +7398 2025-08-27 23:33:24.210601+00 2025-08-27 23:33:24.210611+00 f t Invitado Amar invitado-1756337604578@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5643 +7399 2025-08-27 23:37:24.774569+00 2025-08-27 23:37:24.774578+00 f t Invitado Amar invitado-1756337844034@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5644 +7400 2025-08-27 23:54:30.426961+00 2025-08-27 23:54:30.426971+00 f t Claudio Daniel Arce claudio.arce.97@gmail.com 5492966669122 \N Santos Dumont 2582 3B \N MALE 1997-10-06 -34.5750429 -58.4400247 1 1694 \N carce +7401 2025-08-27 23:57:33.880519+00 2025-08-27 23:57:33.880529+00 f t Invitado Amar invitado-1756339052118@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-5645 +7402 2025-08-27 23:58:10.375248+00 2025-08-27 23:58:10.375257+00 f t Invitado Amar invitado-1756339093837@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5646 +7403 2025-08-28 00:00:22.444252+00 2025-08-28 00:00:22.444269+00 f t Invitado Amar invitado-1756339221824@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5647 +7404 2025-08-28 00:01:35.688691+00 2025-08-28 00:01:35.6887+00 f t Invitado Amar invitado-1756339295527@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5648 +7405 2025-08-28 00:04:50.323554+00 2025-08-28 00:04:50.323566+00 f t Invitado Amar invitado-1756339489403@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-5649 +7406 2025-08-28 00:55:02.42781+00 2025-08-28 00:55:02.427826+00 f t Invitado Amar invitado-1756342501960@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-5650 +7407 2025-08-28 01:01:12.40846+00 2025-08-28 01:01:12.408471+00 f t Invitado Amar invitado-1756342871329@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5651 +7408 2025-08-28 01:11:23.328682+00 2025-08-28 01:11:23.328692+00 f t Invitado Amar invitado-1756343481696@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5652 +7409 2025-08-28 01:42:40.787225+00 2025-08-28 01:42:40.787239+00 f t Invitado Amar invitado-1756345359508@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-5653 +7410 2025-08-28 02:01:03.006076+00 2025-08-28 02:01:03.006088+00 f t Invitado Amar invitado-1756346462449@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-5654 +7411 2025-08-28 02:01:35.633177+00 2025-08-28 02:01:35.633187+00 f t Invitado Amar invitado-1756346494600@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5655 +7412 2025-08-28 02:31:19.536008+00 2025-08-28 02:31:19.536021+00 f t Invitado Amar invitado-1756348279086@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-5656 +7413 2025-08-28 02:32:55.455018+00 2025-08-28 02:32:55.455027+00 f t Invitado Amar invitado-1756348374977@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-5657 +7414 2025-08-28 02:45:55.685699+00 2025-08-28 02:45:55.685709+00 f t Invitado Amar invitado-1756349156841@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5658 +7415 2025-08-28 03:09:03.003988+00 2025-08-28 03:09:03.004002+00 f t Micaela Malfitano micaelamalfitano@gmail.com +541131876500 \N Cervantes 1875 \N \N -34.6221226 -58.5086786 28 \N \N mmalfitano +7416 2025-08-28 03:27:49.316188+00 2025-08-28 03:27:49.316196+00 f t Invitado Amar invitado-1756351658579@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5659 +7417 2025-08-28 06:00:57.534843+00 2025-08-28 06:00:57.534854+00 f t Invitado Amar invitado-1756360857148@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5660 +7418 2025-08-28 08:17:23.460856+00 2025-08-28 08:17:23.460867+00 f t Invitado Amar invitado-1756369042674@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5661 +7419 2025-08-28 08:24:32.551672+00 2025-08-28 08:24:32.551686+00 f t Invitado Amar invitado-1756369471741@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5662 +7420 2025-08-28 11:10:47.894806+00 2025-08-28 11:10:47.894814+00 f t Invitado Amar invitado-1756379447162@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5663 +7421 2025-08-28 11:32:08.617203+00 2025-08-28 11:32:08.617213+00 f t Invitado Amar invitado-1756380729868@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5664 +7422 2025-08-28 11:33:02.535068+00 2025-08-28 11:33:02.53508+00 f t Invitado Amar invitado-1756380783985@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5665 +7423 2025-08-28 11:33:56.987437+00 2025-08-28 11:33:56.987446+00 f t Invitado Amar invitado-1756380836254@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5666 +7424 2025-08-28 11:52:17.036926+00 2025-08-28 11:52:17.036938+00 f t Invitado Amar invitado-1756381936535@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5667 +7425 2025-08-28 12:00:55.015549+00 2025-08-28 12:00:55.01556+00 f t Invitado Amar invitado-1756382454616@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5668 +7426 2025-08-28 12:19:27.350171+00 2025-08-28 12:19:27.350183+00 f t Invitado Amar invitado-1756383567014@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5669 +7427 2025-08-28 12:33:09.474852+00 2025-08-28 12:33:09.474863+00 f t Invitado Amar invitado-1756384388965@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-5670 +7428 2025-08-28 12:54:49.258959+00 2025-08-28 12:54:49.258969+00 f t Invitado Amar invitado-1756385688322@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5671 +7429 2025-08-28 12:58:31.231152+00 2025-08-28 12:58:31.231163+00 f t Invitado Amar invitado-1756385910638@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-5672 +7430 2025-08-28 13:00:56.478162+00 2025-08-28 13:00:56.478171+00 f t Invitado Amar invitado-1756386055979@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-5673 +7431 2025-08-28 13:01:34.531958+00 2025-08-28 13:01:34.531967+00 f t Invitado Amar invitado-1756386094297@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-5674 +7432 2025-08-28 14:00:52.118154+00 2025-08-28 14:00:52.118167+00 f t Belén Garateche belu_picus@hotmail.com +541136226161 \N Av F De La Legua 2840 1A \N \N \N \N \N 83 \N \N bgarateche +7433 2025-08-28 14:15:10.621709+00 2025-08-28 14:15:10.621723+00 f t Invitado Amar invitado-1756390509790@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5675 +7434 2025-08-28 15:12:40.319065+00 2025-08-28 15:12:40.319073+00 f t Invitado Amar invitado-1756393958691@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5676 +7435 2025-08-28 15:14:11.98708+00 2025-08-28 15:14:11.987091+00 f t Invitado Amar invitado-1756394049512@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5677 +13328 2025-11-14 22:00:12.204084+00 2025-11-14 22:00:12.204098+00 f t Invitado Amar invitado-1763157611982@example.com 55555555 \N \N \N \N \N 72 \N \N \N +7437 2025-08-28 15:35:13.121195+00 2025-08-28 15:35:13.121204+00 f t Invitado Amar invitado-1756395311605@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5678 +7438 2025-08-28 15:46:44.762805+00 2025-08-28 15:46:44.762815+00 f t Invitado Amar invitado-1756396003077@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5679 +7439 2025-08-28 16:33:09.776387+00 2025-08-28 16:33:09.7764+00 f t Invitado Amar invitado-1756398787892@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-5680 +7440 2025-08-28 16:46:57.927529+00 2025-08-28 16:46:57.927542+00 f t Invitado Amar invitado-1756399616663@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5681 +7441 2025-08-28 17:02:02.811566+00 2025-08-28 17:02:02.811581+00 f t Invitado Amar invitado-1756400521520@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5682 +7442 2025-08-28 17:35:10.035105+00 2025-08-28 17:35:10.035119+00 f t Invitado Amar invitado-1756402509815@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-5683 +7444 2025-08-28 17:42:17.91763+00 2025-08-28 17:42:17.91764+00 f t Invitado Amar invitado-1756402936710@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5684 +7445 2025-08-28 17:44:02.200094+00 2025-08-28 17:44:02.200108+00 f t Invitado Amar invitado-1756403041335@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5685 +7446 2025-08-28 17:44:19.008771+00 2025-08-28 17:44:19.00878+00 f t Invitado Amar invitado-1756403058168@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5686 +7447 2025-08-28 17:46:02.528047+00 2025-08-28 17:46:02.528061+00 f t Invitado Amar invitado-1756403161484@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5687 +7448 2025-08-28 18:58:24.934107+00 2025-08-28 18:58:24.934117+00 f t Invitado Amar invitado-1756407504662@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5688 +7449 2025-08-28 19:06:14.616441+00 2025-08-28 19:06:14.616455+00 f t Invitado Amar invitado-1756407973904@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5689 +7450 2025-08-28 19:12:20.259744+00 2025-08-28 19:12:20.259754+00 f t Invitado Amar invitado-1756408339633@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5690 +7451 2025-08-28 19:33:36.394099+00 2025-08-28 19:33:36.394112+00 f t Invitado Amar invitado-1756409616116@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5691 +7452 2025-08-28 19:40:10.105373+00 2025-08-28 19:40:10.105387+00 f t Invitado Amar invitado-1756410007553@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5692 +7453 2025-08-28 20:07:27.602241+00 2025-08-28 20:07:27.602252+00 f t Jose Candia jose1candia2@gmail.com +541165453426 \N Gascon 288 7 B \N \N \N -34.5977053 -58.4233699 26 1696 \N jcandia +7454 2025-08-28 20:19:00.790406+00 2025-08-28 20:19:00.790421+00 f t Invitado Amar invitado-1756412340383@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-5693 +7455 2025-08-28 20:21:15.142622+00 2025-08-28 20:21:15.142635+00 f t Invitado Amar invitado-1756412474153@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-5694 +7456 2025-08-28 20:27:21.111934+00 2025-08-28 20:27:21.111944+00 f t Invitado Amar invitado-1756412840545@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-5695 +7457 2025-08-28 21:15:15.056442+00 2025-08-28 21:15:15.056452+00 f t Invitado Amar invitado-1756415713906@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5696 +7458 2025-08-28 21:31:09.592395+00 2025-08-28 21:31:09.592405+00 f t Invitado Amar invitado-1756416668875@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-5697 +7459 2025-08-28 21:37:18.886157+00 2025-08-28 21:37:18.886167+00 f t Invitado Amar invitado-1756417037865@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5698 +7460 2025-08-28 21:39:04.712111+00 2025-08-28 21:39:04.712122+00 f t Invitado Amar invitado-1756417144415@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5699 +7461 2025-08-28 22:01:22.165539+00 2025-08-28 22:01:22.165552+00 f t Invitado Amar invitado-1756418480239@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5700 +7462 2025-08-28 22:22:23.399604+00 2025-08-28 22:22:23.399613+00 f t Invitado Amar invitado-1756419742981@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-5701 +7463 2025-08-28 22:47:26.289956+00 2025-08-28 22:47:26.289966+00 f t Invitado Amar invitado-1756421245863@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5702 +7464 2025-08-28 23:57:19.912424+00 2025-08-28 23:57:19.912435+00 f t Invitado Amar invitado-1756425439341@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-5703 +7465 2025-08-29 00:01:38.161803+00 2025-08-29 00:01:38.161814+00 f t Invitado Amar invitado-1756425697740@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-5704 +7466 2025-08-29 00:12:55.998683+00 2025-08-29 00:12:55.998696+00 f t Invitado Amar invitado-1756426374829@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5705 +7467 2025-08-29 00:24:24.129268+00 2025-08-29 00:24:24.12928+00 f t Invitado Amar invitado-1756427062834@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5706 +7468 2025-08-29 01:23:43.460278+00 2025-08-29 01:23:43.460288+00 f t Invitado Amar invitado-1756430622436@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-5707 +7469 2025-08-29 01:27:14.22011+00 2025-08-29 01:27:14.220123+00 f t Invitado Amar invitado-1756430832872@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5708 +7470 2025-08-29 01:37:11.303879+00 2025-08-29 01:37:11.303888+00 f t Giselle Morfez gsmorfez@gmail.com +541133798131 \N Honorio Pueyrredón 595 3 B \N \N -34.6130095 -58.4412082 14 \N \N gmorfez +7471 2025-08-29 01:53:34.184935+00 2025-08-29 01:53:34.184946+00 f t Invitado Amar invitado-1756432412735@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-5709 +7472 2025-08-29 02:16:48.098629+00 2025-08-29 02:16:48.098643+00 f t Invitado Amar invitado-1756433807525@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5710 +7473 2025-08-29 02:35:58.087245+00 2025-08-29 02:35:58.087254+00 f t Invitado Amar invitado-1756434957050@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-5711 +7474 2025-08-29 02:37:47.449457+00 2025-08-29 02:37:47.449471+00 f t Invitado Amar invitado-1756435067596@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5712 +7475 2025-08-29 02:40:39.828175+00 2025-08-29 02:40:39.828191+00 f t Invitado Amar invitado-1756435239207@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5713 +7476 2025-08-29 03:09:51.2702+00 2025-08-29 03:09:51.27021+00 f t Invitado Amar invitado-1756436990601@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5714 +7477 2025-08-29 04:58:57.12085+00 2025-08-29 04:58:57.120858+00 f t Invitado Amar invitado-1756443537083@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5715 +7478 2025-08-29 10:02:27.460575+00 2025-08-29 10:02:27.460585+00 f t Invitado Amar invitado-1756461747617@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-5716 +7479 2025-08-29 10:23:21.019171+00 2025-08-29 10:23:21.019179+00 f t Invitado Amar invitado-1756463001565@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5717 +7480 2025-08-29 10:46:36.824179+00 2025-08-29 10:46:36.82419+00 f t Yamila Comes ycomes@gmail.com +5491128870809 \N Acevedo 1029 Casa \N \N -34.5937056 -58.433573 26 \N \N ycomes +7481 2025-08-29 11:04:47.948885+00 2025-08-29 11:04:47.948898+00 f t Maria Rivas marya-1@hotmail.com.ar +541161511306 \N av.pte.domingo sarmiento 501 2 \N \N -32.907514 -60.7036828 70 \N \N mrivas +7482 2025-08-29 11:11:46.471822+00 2025-08-29 11:11:46.471831+00 f t Invitado Amar invitado-1756465906082@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-5718 +7483 2025-08-29 11:27:32.868907+00 2025-08-29 11:27:32.868916+00 f t Nora Altman noraaltman@gmail.com +541144775805 \N Cabildo 66 piso 14 depto 3 \N \N \N -34.5705744 -58.4438142 38 1702 \N naltman +7484 2025-08-29 11:34:44.855204+00 2025-08-29 11:34:44.855217+00 f t Invitado Amar invitado-1756467284815@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5719 +7485 2025-08-29 11:36:29.591272+00 2025-08-29 11:36:29.591285+00 f t Invitado Amar invitado-1756467389053@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-5720 +7486 2025-08-29 12:10:54.496653+00 2025-08-29 12:10:54.496666+00 f t Invitado Amar invitado-1756469453640@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5721 +7487 2025-08-29 12:11:14.837944+00 2025-08-29 12:11:14.837957+00 f t Invitado Amar invitado-1756469474142@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-5722 +7488 2025-08-29 12:13:37.331868+00 2025-08-29 12:13:37.331882+00 f t Invitado Amar invitado-1756469616949@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5723 +7489 2025-08-29 12:23:59.839662+00 2025-08-29 12:23:59.839672+00 f t Invitado Amar invitado-1756470239346@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-5724 +7490 2025-08-29 12:24:07.404344+00 2025-08-29 12:24:07.404356+00 f t Invitado Amar invitado-1756470247502@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5725 +7491 2025-08-29 12:24:43.756043+00 2025-08-29 12:24:43.756057+00 f t Invitado Amar invitado-1756470284313@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5726 +7492 2025-08-29 12:37:14.524117+00 2025-08-29 12:37:14.524126+00 f t Invitado Amar invitado-1756471032647@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5727 +7493 2025-08-29 12:49:18.086528+00 2025-08-29 12:49:18.086541+00 f t Invitado Amar invitado-1756471757820@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5728 +7494 2025-08-29 12:56:03.013172+00 2025-08-29 12:56:03.013185+00 f t Invitado Amar invitado-1756472162201@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5729 +7495 2025-08-29 13:19:23.457539+00 2025-08-29 13:19:23.457549+00 f t Invitado Amar invitado-1756473563805@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-5730 +7496 2025-08-29 13:31:40.59932+00 2025-08-29 13:31:40.599331+00 f t Invitado Amar invitado-1756474300231@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5731 +7497 2025-08-29 13:35:35.745088+00 2025-08-29 13:35:35.745098+00 f t Invitado Amar invitado-1756474535228@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5732 +7498 2025-08-29 13:36:40.976597+00 2025-08-29 13:36:40.976608+00 f t Invitado Amar invitado-1756474600835@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5733 +7499 2025-08-29 14:01:14.288261+00 2025-08-29 14:01:14.288274+00 f t Invitado Amar invitado-1756476073863@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-5734 +7500 2025-08-29 14:07:38.614241+00 2025-08-29 14:07:38.614251+00 f t Invitado Amar invitado-1756476458211@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-5735 +7502 2025-08-29 14:47:26.847653+00 2025-08-29 14:47:26.847663+00 f t Invitado Amar invitado-1756478845932@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5736 +7503 2025-08-29 15:08:27.689464+00 2025-08-29 15:08:27.689477+00 f t Invitado Amar invitado-1756480106258@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5737 +7504 2025-08-29 15:13:03.442982+00 2025-08-29 15:13:03.442996+00 f t Invitado Amar invitado-1756480385689@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-5738 +7505 2025-08-29 15:19:33.531058+00 2025-08-29 15:19:33.531067+00 f t Invitado Amar invitado-1756480780080@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-5739 +7506 2025-08-29 15:34:48.865704+00 2025-08-29 15:34:48.865714+00 f t Invitado Amar invitado-1756481688232@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5740 +7507 2025-08-29 15:39:18.823335+00 2025-08-29 15:39:18.823348+00 f t Invitado Amar invitado-1756481958641@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5741 +7508 2025-08-29 15:39:57.333454+00 2025-08-29 15:39:57.333466+00 f t Invitado Amar invitado-1756481996917@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5742 +7509 2025-08-29 15:42:37.771909+00 2025-08-29 15:42:37.771917+00 f t Invitado Amar invitado-1756482157843@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5743 +7510 2025-08-29 15:43:21.304453+00 2025-08-29 15:43:21.304465+00 f t Invitado Amar invitado-1756482201601@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5744 +7511 2025-08-29 15:45:11.494974+00 2025-08-29 15:45:11.494984+00 f t Invitado Amar invitado-1756482311757@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5745 +7512 2025-08-29 15:46:16.158529+00 2025-08-29 15:46:16.158538+00 f t Invitado Amar invitado-1756482376460@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5746 +7513 2025-08-29 15:47:13.575324+00 2025-08-29 15:47:13.575335+00 f t Invitado Amar invitado-1756482433850@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5747 +7514 2025-08-29 15:48:18.412599+00 2025-08-29 15:48:18.412607+00 f t Invitado Amar invitado-1756482498692@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5748 +7515 2025-08-29 16:02:25.908239+00 2025-08-29 16:02:25.908251+00 f t Luis Nicolás Muraca luisnicolasm@gmail.com +541154168043 \N Monroe 2685 Piso 2 \N \N -34.5597383 -58.462539 3 \N \N lmuraca +7516 2025-08-29 16:13:42.18274+00 2025-08-29 16:13:42.182752+00 f t Invitado Amar invitado-1756484021929@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-5749 +7517 2025-08-29 17:10:06.239932+00 2025-08-29 17:10:06.239942+00 f t Nicolas Prego naprego@gmail.com 5491163646982 \N trelles 680 Departamento 2 \N MALE \N -34.6184113 -58.4589263 4 1700 \N nprego +7518 2025-08-29 17:22:13.12266+00 2025-08-29 17:22:13.122667+00 f t Martin Ferrari martinmferrari1@gmail.com 5491144100679 \N Timote 3556 Casa, timbre 3 \N MALE \N -34.7234845 -58.406141 70 1701 \N mferrari +7519 2025-08-29 17:26:32.652948+00 2025-08-29 17:26:32.652961+00 f t Invitado Amar invitado-1756488392155@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5750 +7520 2025-08-29 17:51:01.285691+00 2025-08-29 17:51:01.285703+00 f t Invitado Amar invitado-1756489864193@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5751 +7521 2025-08-29 18:05:32.229971+00 2025-08-29 18:05:32.229983+00 f t Invitado Amar invitado-1756490731628@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-5752 +7522 2025-08-29 18:08:35.030318+00 2025-08-29 18:08:35.030328+00 f t Invitado Amar invitado-1756490913977@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5753 +7523 2025-08-29 18:32:08.142483+00 2025-08-29 18:32:08.142493+00 f t Invitado Amar invitado-1756492289291@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-5754 +7524 2025-08-29 18:52:25.771291+00 2025-08-29 18:52:25.771304+00 f t Carola Mihura caromiura@gmail.com +543444629163 \N Rodriguez peña 1057 6 D \N \N -32.6164106 -62.6822198 9 \N \N cmihura +7525 2025-08-29 18:58:17.40052+00 2025-08-29 18:58:17.40053+00 f t Invitado Amar invitado-1756493897073@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5755 +7526 2025-08-29 18:58:42.232318+00 2025-08-29 18:58:42.232328+00 f t Invitado Amar invitado-1756493922087@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5756 +7527 2025-08-29 19:20:31.950177+00 2025-08-29 19:20:31.950186+00 f t Federico Couget fede.couget@gmail.com 5492364225473 \N Jean Jaures 428 PB . Timbre con camamra \N FEMALE 1997-07-20 -34.6103931 -58.4107943 23 1703 \N fcouget +7530 2025-08-29 19:54:33.17374+00 2025-08-29 19:54:33.17375+00 f t Invitado Amar invitado-1756497272449@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5757 +7531 2025-08-29 19:56:43.750134+00 2025-08-29 19:56:43.750143+00 f t Invitado Amar invitado-1756497403316@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-5758 +7501 2025-08-29 14:12:18.718104+00 2025-08-29 14:12:18.718111+00 f t Laura Millan ing.lauramillan@gmail.com 5491138134917 \N Av. Triunvirato 3961 PB B \N FEMALE \N -34.9988575 -61.0341414 3 1698 \N lmillan +7532 2025-08-29 20:46:01.832272+00 2025-08-29 20:46:01.832287+00 f t Invitado Amar invitado-1756500361510@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-5759 +7533 2025-08-29 20:54:19.495271+00 2025-08-29 20:54:19.495281+00 f t Invitado Amar invitado-1756500859351@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5760 +7534 2025-08-29 21:14:12.189487+00 2025-08-29 21:14:12.189496+00 f t Invitado Amar invitado-1756502051741@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5761 +7535 2025-08-29 21:55:18.713943+00 2025-08-29 21:55:18.713952+00 f t Invitado Amar invitado-1756504517951@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5762 +7536 2025-08-29 22:16:30.545365+00 2025-08-29 22:16:30.545377+00 f t Invitado Amar invitado-1756505790190@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5763 +7537 2025-08-29 22:32:58.087871+00 2025-08-29 22:32:58.087885+00 f t Invitado Amar invitado-1756506777923@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-5764 +7538 2025-08-29 22:32:58.341771+00 2025-08-29 22:32:58.341784+00 f t Invitado Amar invitado-1756506777492@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5765 +7539 2025-08-29 22:50:25.470704+00 2025-08-29 22:50:25.470715+00 f t Invitado Amar invitado-1756507824416@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5766 +7540 2025-08-29 22:53:43.073298+00 2025-08-29 22:53:43.07331+00 f t Invitado Amar invitado-1756508086011@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-5767 +7541 2025-08-29 23:11:46.150625+00 2025-08-29 23:11:46.150641+00 f t Invitado Amar invitado-1756509105088@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5768 +7542 2025-08-29 23:13:52.28052+00 2025-08-29 23:13:52.28053+00 f t Invitado Amar invitado-1756509230402@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5769 +7543 2025-08-29 23:31:22.026944+00 2025-08-29 23:31:22.026955+00 f t Invitado Amar invitado-1756510281603@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5770 +7544 2025-08-29 23:37:02.711772+00 2025-08-29 23:37:02.711785+00 f t Invitado Amar invitado-1756510621292@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5771 +7545 2025-08-30 00:00:35.965444+00 2025-08-30 00:00:35.965457+00 f t Invitado Amar invitado-1756512035527@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5772 +7546 2025-08-30 00:02:23.060713+00 2025-08-30 00:02:23.060723+00 f t Invitado Amar invitado-1756512142923@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-5773 +7547 2025-08-30 00:59:57.932856+00 2025-08-30 00:59:57.93287+00 f t Invitado Amar invitado-1756515595983@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5774 +7548 2025-08-30 01:02:18.268666+00 2025-08-30 01:02:18.268675+00 f t Invitado Amar invitado-1756515737860@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5775 +7549 2025-08-30 01:06:18.415496+00 2025-08-30 01:06:18.415506+00 f t Invitado Amar invitado-1756515976828@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5776 +7550 2025-08-30 01:43:49.55295+00 2025-08-30 01:43:49.552959+00 f t Invitado Amar invitado-1756518228283@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5777 +7551 2025-08-30 01:54:54.363607+00 2025-08-30 01:54:54.363619+00 f t Invitado Amar invitado-1756518892535@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5778 +7552 2025-08-30 02:00:30.000856+00 2025-08-30 02:00:30.00087+00 f t Invitado Amar invitado-1756519229459@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-5779 +7553 2025-08-30 02:01:40.117097+00 2025-08-30 02:01:40.11711+00 f t Invitado Amar invitado-1756519300773@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-5780 +7554 2025-08-30 03:10:20.952666+00 2025-08-30 03:10:20.952677+00 f t Invitado Amar invitado-1756523420380@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5781 +7555 2025-08-30 06:21:36.993628+00 2025-08-30 06:21:36.993644+00 f t Invitado Amar invitado-1756534896260@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-5782 +7556 2025-08-30 08:10:28.695111+00 2025-08-30 08:10:28.695122+00 f t Invitado Amar invitado-1756541428266@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5783 +7557 2025-08-30 09:19:49.61041+00 2025-08-30 09:19:49.610418+00 f t Invitado Amar invitado-1756545589285@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5784 +7558 2025-08-30 10:02:03.261358+00 2025-08-30 10:02:03.261369+00 f t Invitado Amar invitado-1756548122327@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5785 +7559 2025-08-30 10:40:59.634317+00 2025-08-30 10:40:59.634327+00 f t Cristina Barreiro cristinalaurabarreiro@gmail.com +541164709525 \N Av Rivadavia 7872 PB DPTO A \N \N \N -34.6324022 -58.475218 16 \N \N cbarreiro +7560 2025-08-30 11:31:49.447456+00 2025-08-30 11:31:49.447467+00 f t Invitado Amar invitado-1756553508020@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5786 +7561 2025-08-30 11:32:36.895489+00 2025-08-30 11:32:36.895499+00 f t Invitado Amar invitado-1756553556484@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5787 +7562 2025-08-30 12:08:20.260769+00 2025-08-30 12:08:20.260778+00 f t Invitado Amar invitado-1756555699368@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-5788 +7563 2025-08-30 13:20:04.652771+00 2025-08-30 13:20:04.652785+00 f t Invitado Amar invitado-1756560004021@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5789 +7564 2025-08-30 13:29:39.945722+00 2025-08-30 13:29:39.945737+00 f t Invitado Amar invitado-1756560576968@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5790 +7565 2025-08-30 13:49:56.918714+00 2025-08-30 13:49:56.918726+00 f t Invitado Amar invitado-1756561796014@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-5791 +7566 2025-08-30 13:53:45.995595+00 2025-08-30 13:53:45.995607+00 f t Invitado Amar invitado-1756562023749@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-5792 +7567 2025-08-30 13:54:52.316972+00 2025-08-30 13:54:52.316981+00 f t Invitado Amar invitado-1756562090570@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-5793 +7568 2025-08-30 14:03:09.385824+00 2025-08-30 14:03:09.385834+00 f t Invitado Amar invitado-1756562589097@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-5794 +7569 2025-08-30 14:23:10.341195+00 2025-08-30 14:23:10.341208+00 f t Invitado Amar invitado-1756563789956@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5795 +7570 2025-08-30 14:23:21.78248+00 2025-08-30 14:23:21.782491+00 f t Invitado Amar invitado-1756563801226@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5796 +7571 2025-08-30 14:41:51.293893+00 2025-08-30 14:41:51.293902+00 f t Invitado Amar invitado-1756564911200@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5797 +7572 2025-08-30 14:44:48.838858+00 2025-08-30 14:44:48.83887+00 f t Invitado Amar invitado-1756565088128@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5798 +7573 2025-08-30 14:45:17.419743+00 2025-08-30 14:45:17.419756+00 f t Invitado Amar invitado-1756565117496@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-5799 +7574 2025-08-30 14:46:14.284355+00 2025-08-30 14:46:14.284365+00 f t Invitado Amar invitado-1756565174090@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5800 +7575 2025-08-30 14:50:57.935963+00 2025-08-30 14:50:57.935977+00 f t Invitado Amar invitado-1756565457017@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-5801 +7576 2025-08-30 15:17:39.824873+00 2025-08-30 15:17:39.824883+00 f t Invitado Amar invitado-1756567059373@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-5802 +7577 2025-08-30 15:46:08.572102+00 2025-08-30 15:46:08.572117+00 f t Invitado Amar invitado-1756568770223@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5803 +7578 2025-08-30 15:47:19.80257+00 2025-08-30 15:47:19.80258+00 f t Invitado Amar invitado-1756568841639@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5804 +7579 2025-08-30 15:48:20.124918+00 2025-08-30 15:48:20.124929+00 f t Invitado Amar invitado-1756568899812@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5805 +7580 2025-08-30 15:54:23.162354+00 2025-08-30 15:54:23.162365+00 f t Invitado Amar invitado-1756569262283@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5806 +7581 2025-08-30 16:02:10.559725+00 2025-08-30 16:02:10.559735+00 f t Invitado Amar invitado-1756569726138@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-5807 +7582 2025-08-30 16:08:06.036721+00 2025-08-30 16:08:06.036734+00 f t Invitado Amar invitado-1756570085580@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5808 +7635 2025-08-31 12:17:51.26353+00 2025-08-31 12:17:51.26354+00 f t Invitado Amar invitado-1756642671083@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5850 +7583 2025-08-30 16:22:55.629551+00 2025-08-30 16:22:55.629562+00 f t PAULA Droz drozpaula@gmail.com +541150413960 \N Remedios Escalada de San Martin 1071 7G \N \N \N -33.8868051 -60.5485568 26 \N \N pdroz +7584 2025-08-30 16:23:47.039337+00 2025-08-30 16:23:47.039346+00 f t Invitado Amar invitado-1756571027222@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5809 +7585 2025-08-30 16:26:10.995853+00 2025-08-30 16:26:10.995862+00 f t Invitado Amar invitado-1756571170556@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5810 +7586 2025-08-30 16:26:12.253513+00 2025-08-30 16:26:12.253522+00 f t Invitado Amar invitado-1756571170421@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-5811 +7587 2025-08-30 16:35:23.61813+00 2025-08-30 16:35:23.618138+00 f t Invitado Amar invitado-1756571723119@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-5812 +7588 2025-08-30 16:39:50.611719+00 2025-08-30 16:39:50.611728+00 f t Invitado Amar invitado-1756571990197@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-5813 +7589 2025-08-30 16:40:55.129743+00 2025-08-30 16:40:55.129751+00 f t Invitado Amar invitado-1756572053757@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-5814 +7590 2025-08-30 16:45:10.981325+00 2025-08-30 16:45:10.981339+00 f t Invitado Amar invitado-1756572310016@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5815 +7591 2025-08-30 16:46:13.612723+00 2025-08-30 16:46:13.612736+00 f t Carla Kexel cakulina77@gmail.com +541133502734 \N Caboto 147 2 4 \N \N \N 41.5878597 2.4773471 32 1711 \N ckexel +7592 2025-08-30 16:46:15.647183+00 2025-08-30 16:46:15.647191+00 f t Invitado Amar invitado-1756572375567@example.com 55555555 \N \N \N \N \N 86 \N \N iamar-5816 +7593 2025-08-30 16:48:23.035795+00 2025-08-30 16:48:23.035805+00 f t Invitado Amar invitado-1756572502138@example.com 55555555 \N \N \N \N \N 92 \N \N iamar-5817 +7594 2025-08-30 17:01:49.796239+00 2025-08-30 17:01:49.796249+00 f t Invitado Amar invitado-1756573309159@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5818 +7595 2025-08-30 17:05:44.313588+00 2025-08-30 17:05:44.313598+00 f t Invitado Amar invitado-1756573543159@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5819 +7596 2025-08-30 17:35:50.745003+00 2025-08-30 17:35:50.745013+00 f t Lucía Betania Rodríguez lulub.rodez@gmail.com +5491125911869 \N Bolivar 615 17 \N \N \N -34.6151289 -58.37329 15 1707 \N lrodriguez +7597 2025-08-30 17:54:20.956703+00 2025-08-30 17:54:20.956718+00 f t Juan Carlos Cattáneo juan.c.cattaneo@gmail.com +541130968462 \N Coronel Vilela 3120 Barrio Ricardo Rojas, Partido de Tigre. \N \N \N -34.4284123 -58.5759148 22 \N \N jcattaneo +7598 2025-08-30 18:03:49.547224+00 2025-08-30 18:03:49.547234+00 f t Invitado Amar invitado-1756577031035@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5820 +7599 2025-08-30 18:35:57.175248+00 2025-08-30 18:35:57.175257+00 f t Invitado Amar invitado-1756578956702@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-5821 +7600 2025-08-30 18:50:39.403665+00 2025-08-30 18:50:39.403674+00 f t Invitado Amar invitado-1756579839025@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5822 +7601 2025-08-30 18:56:15.113207+00 2025-08-30 18:56:15.113217+00 f t Invitado Amar invitado-1756580175481@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-5823 +7602 2025-08-30 19:03:46.684043+00 2025-08-30 19:03:46.684055+00 f t Teresa Pillet teresapillet@gmail.com 91161621307 \N Boyaca 45 piso 7 A \N FEMALE 1949-12-07 -34.6261008 -58.4569317 4 \N \N tpillet-2 +7605 2025-08-30 19:19:17.121558+00 2025-08-30 19:19:17.121566+00 f t Invitado Amar invitado-1756581557574@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5824 +7606 2025-08-30 19:40:43.15667+00 2025-08-30 19:40:43.156682+00 f t Wililiam Alonso williamcaceres1996@gmail.com 91134751411 \N av. juan de garay 2385 \N \N MALE 1996-11-14 -34.628227 -58.398288 12 1710 \N walonso +7607 2025-08-30 19:46:17.431564+00 2025-08-30 19:46:17.431576+00 f t Invitado Amar invitado-1756583176547@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5825 +7608 2025-08-30 20:18:05.130921+00 2025-08-30 20:18:05.130958+00 f t Invitado Amar invitado-1756585085192@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5826 +7609 2025-08-30 20:19:36.834703+00 2025-08-30 20:19:36.834714+00 f t Luciano Zangirolami lzangiro@hotmail.com +541154124271 \N Delgado 853 3p dpto1 \N \N -34.5783991 -58.4533464 38 \N \N lzangirolami +7610 2025-08-30 20:31:58.630776+00 2025-08-30 20:31:58.630788+00 f t Invitado Amar invitado-1756585918582@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5827 +7611 2025-08-30 21:13:26.138352+00 2025-08-30 21:13:26.138361+00 f t Invitado Amar invitado-1756588405774@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-5828 +7612 2025-08-30 21:43:22.509372+00 2025-08-30 21:43:22.509384+00 f t Invitado Amar invitado-1756590199445@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5829 +7613 2025-08-30 21:57:35.433844+00 2025-08-30 21:57:35.433854+00 f t Invitado Amar invitado-1756591054604@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5830 +7614 2025-08-30 22:11:31.692718+00 2025-08-30 22:11:31.692729+00 f t Invitado Amar invitado-1756591891256@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-5831 +7615 2025-08-30 22:12:46.373655+00 2025-08-30 22:12:46.373666+00 f t Invitado Amar invitado-1756591966482@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-5832 +7616 2025-08-30 22:25:34.20292+00 2025-08-30 22:25:34.202929+00 f t Invitado Amar invitado-1756592732890@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-5833 +7617 2025-08-30 22:26:10.91397+00 2025-08-30 22:26:10.913979+00 f t Invitado Amar invitado-1756592770508@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-5834 +7618 2025-08-30 22:39:11.695458+00 2025-08-30 22:39:11.695467+00 f t Invitado Amar invitado-1756593551194@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5835 +7619 2025-08-30 23:28:36.004998+00 2025-08-30 23:28:36.005008+00 f t Invitado Amar invitado-1756596514615@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-5836 +7620 2025-08-30 23:44:23.83174+00 2025-08-30 23:44:23.831749+00 f t Violeta Cardozo violetaacard@gmail.com +541133807500 \N Aguilar 2356 20 G \N \N -34.5702819 -58.4482471 38 \N \N vcardozo +7621 2025-08-30 23:53:12.475802+00 2025-08-30 23:53:12.475812+00 f t Invitado Amar invitado-1756597991706@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5837 +7622 2025-08-31 00:46:46.28371+00 2025-08-31 00:46:46.283724+00 f t Invitado Amar invitado-1756601205109@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5838 +7623 2025-08-31 00:53:40.901924+00 2025-08-31 00:53:40.901934+00 f t Invitado Amar invitado-1756601620035@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5839 +7624 2025-08-31 01:23:41.451871+00 2025-08-31 01:23:41.45188+00 f t Invitado Amar invitado-1756603419960@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5840 +7625 2025-08-31 02:00:33.911125+00 2025-08-31 02:00:33.911169+00 f t Invitado Amar invitado-1756605633619@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5841 +7626 2025-08-31 02:42:10.195324+00 2025-08-31 02:42:10.195337+00 f t Invitado Amar invitado-1756608129188@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5842 +7627 2025-08-31 03:40:21.282565+00 2025-08-31 03:40:21.282575+00 f t Invitado Amar invitado-1756611619627@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5843 +7628 2025-08-31 03:43:54.49101+00 2025-08-31 03:43:54.49102+00 f t Invitado Amar invitado-1756611833888@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5844 +7629 2025-08-31 04:36:45.930756+00 2025-08-31 04:36:45.930767+00 f t Invitado Amar invitado-1756615005560@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5845 +7630 2025-08-31 08:34:21.537465+00 2025-08-31 08:34:21.537477+00 f t Invitado Amar invitado-1756629260580@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-5846 +7631 2025-08-31 09:43:37.413087+00 2025-08-31 09:43:37.413097+00 f t Invitado Amar invitado-1756633416470@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-5847 +7632 2025-08-31 11:26:32.560622+00 2025-08-31 11:26:32.560632+00 f t ceci garcia gm_296@hotmail.com +541139457375 \N pasaje domingo dedico 2192 casa \N \N \N \N 17 \N \N cgarcia +7633 2025-08-31 11:46:39.367153+00 2025-08-31 11:46:39.367168+00 f t Invitado Amar invitado-1756640798855@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-5848 +7634 2025-08-31 11:52:02.360952+00 2025-08-31 11:52:02.360964+00 f t Invitado Amar invitado-1756641122148@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-5849 +7636 2025-08-31 12:22:37.720304+00 2025-08-31 12:22:37.720312+00 f t Invitado Amar invitado-1756642957188@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-5851 +7637 2025-08-31 12:27:39.030194+00 2025-08-31 12:27:39.030202+00 f t Invitado Amar invitado-1756643258632@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5852 +7638 2025-08-31 12:30:46.780139+00 2025-08-31 12:30:46.780149+00 f t Invitado Amar invitado-1756643445895@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5853 +7639 2025-08-31 13:15:07.097868+00 2025-08-31 13:15:07.097881+00 f t Invitado Amar invitado-1756646107400@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5854 +7640 2025-08-31 13:19:08.598242+00 2025-08-31 13:19:08.598254+00 f t Invitado Amar invitado-1756646349133@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5855 +7641 2025-08-31 13:31:27.571432+00 2025-08-31 13:31:27.571442+00 f t Invitado Amar invitado-1756647088094@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5856 +7642 2025-08-31 13:40:51.784062+00 2025-08-31 13:40:51.784072+00 f t Invitado Amar invitado-1756647650973@example.com 55555555 \N \N \N \N \N 57 \N \N iamar-5857 +7643 2025-08-31 13:50:09.084722+00 2025-08-31 13:50:09.084737+00 f t Invitado Amar invitado-1756648207220@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5858 +7644 2025-08-31 14:45:30.226751+00 2025-08-31 14:45:30.226761+00 f t Invitado Amar invitado-1756651529222@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5859 +7645 2025-08-31 14:59:47.516291+00 2025-08-31 14:59:47.516302+00 f t Invitado Amar invitado-1756652387014@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-5860 +7646 2025-08-31 15:11:27.761356+00 2025-08-31 15:11:27.761365+00 f t Invitado Amar invitado-1756653087143@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5861 +7647 2025-08-31 15:17:43.018404+00 2025-08-31 15:17:43.018418+00 f t Invitado Amar invitado-1756653462612@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-5862 +7648 2025-08-31 15:31:51.175638+00 2025-08-31 15:31:51.175646+00 f t Gustavo Gonzalez excelcaba@gmail.com +541153843669 \N Quintino Bocayuva 39 4D \N \N -34.6130789 -58.42354 23 \N \N ggonzalez +7649 2025-08-31 15:35:35.372786+00 2025-08-31 15:35:35.372795+00 f t Invitado Amar invitado-1756654534976@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-5863 +7650 2025-08-31 15:38:55.346267+00 2025-08-31 15:38:55.346276+00 f t Invitado Amar invitado-1756654735093@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5864 +7651 2025-08-31 15:40:35.161937+00 2025-08-31 15:40:35.161947+00 f t Invitado Amar invitado-1756654832450@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5865 +7652 2025-08-31 15:43:48.814754+00 2025-08-31 15:43:48.814763+00 f t Invitado Amar invitado-1756655028484@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-5866 +7653 2025-08-31 15:44:08.924376+00 2025-08-31 15:44:08.924386+00 f t Claudio Guidotti claudioguidotti@gmail.com +541134861821 \N Amenabar 1144 Piso 4 depto 131 \N \N \N -34.5703156 -58.4502566 38 \N \N cguidotti +7654 2025-08-31 16:09:18.99129+00 2025-08-31 16:09:18.991302+00 f t Invitado Amar invitado-1756656558675@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5867 +7655 2025-08-31 16:38:33.900017+00 2025-08-31 16:38:33.900026+00 f t Invitado Amar invitado-1756658312782@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-5868 +7656 2025-08-31 16:40:45.677975+00 2025-08-31 16:40:45.677984+00 f t Invitado Amar invitado-1756658444775@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-5869 +7657 2025-08-31 17:41:52.028767+00 2025-08-31 17:41:52.028775+00 f t Invitado Amar invitado-1756662111585@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-5870 +7658 2025-08-31 17:43:16.221406+00 2025-08-31 17:43:16.221415+00 f t Virginia Spitaleri virginiaspitaleri@hotmail.com +5465352510 \N Libertador 2417 15 10 \N \N -34.5079777 -58.4793236 39 \N \N vspitaleri +7659 2025-08-31 18:14:10.147772+00 2025-08-31 18:14:10.147784+00 f t Invitado Amar invitado-1756664048731@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5871 +7660 2025-08-31 18:43:47.703592+00 2025-08-31 18:43:47.703604+00 f t Invitado Amar invitado-1756665825837@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5872 +7661 2025-08-31 18:59:17.959822+00 2025-08-31 18:59:17.959831+00 f t Nicolas Cerbo nicolascerbo508@gmail.com +541135883688 \N Gaona 1949 5 a \N \N \N -34.6120967 -58.4553783 14 1714 \N ncerbo +7662 2025-08-31 19:49:44.052944+00 2025-08-31 19:49:44.052956+00 f t Invitado Amar invitado-1756669783630@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-5873 +7663 2025-08-31 19:54:14.093537+00 2025-08-31 19:54:14.09355+00 f t Invitado Amar invitado-1756670052858@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5874 +7664 2025-08-31 19:56:31.889737+00 2025-08-31 19:56:31.889748+00 f t Gerardo belio gbelio@fibertel.com.ar 5491167903764 \N José ingenieros 615 la Lucila \N FEMALE 1961-03-26 -34.4997156 -58.4863098 59 1713 \N gbelio +7665 2025-08-31 20:07:26.841365+00 2025-08-31 20:07:26.841377+00 f t Invitado Amar invitado-1756670848004@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-5875 +7667 2025-08-31 20:13:42.0672+00 2025-08-31 20:13:42.067208+00 f t Yelitza Romero jyelitzarome@gmail.com 5491138541681 \N albarellos 743 2B \N FEMALE \N -34.4793362 -58.5063577 68 \N \N yromero +7668 2025-08-31 20:16:48.840683+00 2025-08-31 20:16:48.84069+00 f t Martin Gonzales limpisec2@gmail.com 5491164727418 \N \N \N \N \N MALE 1979-06-01 44.9379672 7.5400398 29 1717 \N mgonzales +7669 2025-08-31 20:21:03.116076+00 2025-08-31 20:21:03.11609+00 f t Invitado Amar invitado-1756671662775@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5876 +7670 2025-08-31 20:21:27.77718+00 2025-08-31 20:21:27.777187+00 f t Leticia Peruf letipperuf@hotmail.com 5491153833188 \N moliere 112 \N \N FEMALE 1979-07-03 -34.6366921 -58.502354 65 1719 \N lperuf +7671 2025-08-31 20:24:37.580122+00 2025-08-31 20:24:37.580132+00 f t Invitado Amar invitado-1756671877501@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5877 +7672 2025-08-31 20:27:57.949005+00 2025-08-31 20:27:57.949012+00 f t Graciela Careri carerigraciela@gmail.com 5491165235004 \N Pasaje Delambre 4521 casa \N FEMALE 1964-02-24 \N \N 16 1720 \N gcareri +7673 2025-08-31 20:29:47.520013+00 2025-08-31 20:29:47.520023+00 f t Invitado Amar invitado-1756672186186@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5878 +7674 2025-08-31 20:49:36.83499+00 2025-08-31 20:49:36.835003+00 f t Invitado Amar invitado-1756673375779@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-5879 +7675 2025-08-31 20:56:38.220516+00 2025-08-31 20:56:38.220527+00 f t Invitado Amar invitado-1756673797630@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-5880 +7676 2025-08-31 20:59:21.029198+00 2025-08-31 20:59:21.029787+00 f t Invitado Amar invitado-1756673960528@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-5881 +7677 2025-08-31 21:00:37.715055+00 2025-08-31 21:00:37.715714+00 f t Invitado Amar invitado-1756674037448@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-5882 +7678 2025-08-31 21:10:40.994342+00 2025-08-31 21:10:40.994352+00 f t Invitado Amar invitado-1756674640194@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5883 +7679 2025-08-31 21:13:11.388363+00 2025-08-31 21:13:11.388374+00 f t Daniel Biscione danielbiscione@hotmail.com +541163636726 \N Aviador Ficarelli 2659 Localidad Ciudad Jardin Lomas del Palomar \N \N -34.5959543 -58.5959863 56 \N \N dbiscione +7680 2025-08-31 21:18:44.280739+00 2025-08-31 21:18:44.280751+00 f t Invitado Amar invitado-1756675123853@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5884 +7681 2025-08-31 21:32:59.945124+00 2025-08-31 21:32:59.945134+00 f t Invitado Amar invitado-1756675979569@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-5885 +7682 2025-08-31 21:55:37.094096+00 2025-08-31 21:55:37.094108+00 f t Invitado Amar invitado-1756677336708@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-5886 +7683 2025-08-31 21:56:04.160438+00 2025-08-31 21:56:04.160449+00 f t Invitado Amar invitado-1756677364002@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-5887 +7684 2025-08-31 22:28:41.334754+00 2025-08-31 22:28:41.334765+00 f t Invitado Amar invitado-1756679321658@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5888 +7685 2025-08-31 22:55:06.969741+00 2025-08-31 22:55:06.969752+00 f t Invitado Amar invitado-1756680907455@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5889 +7686 2025-08-31 22:56:57.903355+00 2025-08-31 22:56:57.903366+00 f t Invitado Amar invitado-1756681017639@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5890 +7687 2025-08-31 23:19:01.079182+00 2025-08-31 23:19:01.079194+00 f t Invitado Amar invitado-1756682340920@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5891 +7688 2025-08-31 23:24:29.333398+00 2025-08-31 23:24:29.333406+00 f t Invitado Amar invitado-1756682669593@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5892 +7689 2025-09-01 01:03:41.365208+00 2025-09-01 01:03:41.365222+00 f t Invitado Amar invitado-1756688620368@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5893 +7690 2025-09-01 01:14:24.594286+00 2025-09-01 01:14:24.594298+00 f t Invitado Amar invitado-1756689264073@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5894 +7691 2025-09-01 01:35:17.216485+00 2025-09-01 01:35:17.216497+00 f t Invitado Amar invitado-1756690516539@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-5895 +7692 2025-09-01 02:39:39.702353+00 2025-09-01 02:39:39.702362+00 f t Invitado Amar invitado-1756694379315@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-5896 +7693 2025-09-01 03:03:03.380652+00 2025-09-01 03:03:03.380666+00 f t Invitado Amar invitado-1756695783139@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5897 +7694 2025-09-01 03:07:53.235838+00 2025-09-01 03:07:53.23585+00 f t Invitado Amar invitado-1756696072834@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-5898 +7695 2025-09-01 03:20:11.406554+00 2025-09-01 03:20:11.406564+00 f t Invitado Amar invitado-1756696810892@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-5899 +7696 2025-09-01 03:27:10.125825+00 2025-09-01 03:27:10.125837+00 f t Invitado Amar invitado-1756697229804@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-5900 +7697 2025-09-01 03:31:32.056556+00 2025-09-01 03:31:32.056565+00 f t Invitado Amar invitado-1756697490091@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-5901 +7698 2025-09-01 03:56:03.789934+00 2025-09-01 03:56:03.789949+00 f t Invitado Amar invitado-1756698963418@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5902 +7699 2025-09-01 05:01:08.427966+00 2025-09-01 05:01:08.42798+00 f t Invitado Amar invitado-1756702868086@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5903 +7700 2025-09-01 07:29:11.233864+00 2025-09-01 07:29:11.233877+00 f t Invitado Amar invitado-1756711750826@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5904 +7701 2025-09-01 07:30:22.673897+00 2025-09-01 07:30:22.673906+00 f t Invitado Amar invitado-1756711822065@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5905 +7702 2025-09-01 07:34:45.545034+00 2025-09-01 07:34:45.545045+00 f t Invitado Amar invitado-1756712085609@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-5906 +7703 2025-09-01 10:08:50.639321+00 2025-09-01 10:08:50.639331+00 f t Invitado Amar invitado-1756721330302@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-5907 +7704 2025-09-01 10:16:32.136813+00 2025-09-01 10:16:32.136823+00 f t Invitado Amar invitado-1756721791646@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5908 +7705 2025-09-01 10:24:19.010801+00 2025-09-01 10:24:19.010812+00 f t Invitado Amar invitado-1756722258917@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-5909 +7706 2025-09-01 11:26:37.955928+00 2025-09-01 11:26:37.955937+00 f t Invitado Amar invitado-1756725997857@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5910 +7707 2025-09-01 11:46:50.653697+00 2025-09-01 11:46:50.653708+00 f t Invitado Amar invitado-1756727209813@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5911 +7708 2025-09-01 11:52:42.568796+00 2025-09-01 11:52:42.568805+00 f t Invitado Amar invitado-1756727562236@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5912 +7709 2025-09-01 12:01:50.407562+00 2025-09-01 12:01:50.407572+00 f t Invitado Amar invitado-1756728110185@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5913 +7710 2025-09-01 12:04:57.063037+00 2025-09-01 12:04:57.063046+00 f t Invitado Amar invitado-1756728297563@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5914 +7711 2025-09-01 12:05:18.334153+00 2025-09-01 12:05:18.334162+00 f t Invitado Amar invitado-1756728319023@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5915 +7712 2025-09-01 12:09:57.579201+00 2025-09-01 12:09:57.579214+00 f t Invitado Amar invitado-1756728595058@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-5916 +7713 2025-09-01 12:13:56.700882+00 2025-09-01 12:13:56.700891+00 f t Invitado Amar invitado-1756728836155@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-5917 +7714 2025-09-01 12:56:20.672554+00 2025-09-01 12:56:20.672566+00 f t Invitado Amar invitado-1756731379801@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5918 +7715 2025-09-01 13:08:44.539182+00 2025-09-01 13:08:44.539193+00 f t Invitado Amar invitado-1756732123006@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5919 +7716 2025-09-01 13:19:50.380842+00 2025-09-01 13:19:50.380856+00 f t Invitado Amar invitado-1756732789699@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5920 +7717 2025-09-01 13:28:20.922713+00 2025-09-01 13:28:20.922723+00 f t Invitado Amar invitado-1756733300384@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-5921 +7718 2025-09-01 13:52:14.658327+00 2025-09-01 13:52:14.658337+00 f t Invitado Amar invitado-1756734732861@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-5922 +7719 2025-09-01 14:07:31.038224+00 2025-09-01 14:07:31.038233+00 f t Invitado Amar invitado-1756735650086@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5923 +7720 2025-09-01 14:34:02.899658+00 2025-09-01 14:34:02.899668+00 f t Invitado Amar invitado-1756737242158@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-5924 +7721 2025-09-01 15:05:12.555488+00 2025-09-01 15:05:12.555496+00 f t Margatira Leguizamon leguizamonamargarita@gmail.com 5491163074153 \N paroissien 4008 esquina estomba \N FEMALE \N -34.5535015 -58.4851516 31 1722 \N mleguizamon +7722 2025-09-01 15:05:57.933328+00 2025-09-01 15:05:57.933338+00 f t Invitado Amar invitado-1756739156878@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-5925 +7723 2025-09-01 15:07:46.555211+00 2025-09-01 15:07:46.55522+00 f t Invitado Amar invitado-1756739265986@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5926 +7724 2025-09-01 15:15:35.150067+00 2025-09-01 15:15:35.150078+00 f t Invitado Amar invitado-1756739733983@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5927 +7725 2025-09-01 15:25:19.432026+00 2025-09-01 15:25:19.432036+00 f t Invitado Amar invitado-1756740319040@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-5928 +7726 2025-09-01 15:31:24.337014+00 2025-09-01 15:31:24.337023+00 f t Invitado Amar invitado-1756740683375@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5929 +7727 2025-09-01 15:45:39.081359+00 2025-09-01 15:45:39.081368+00 f t Invitado Amar invitado-1756741538221@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5930 +7728 2025-09-01 15:46:29.399318+00 2025-09-01 15:46:29.399329+00 f t Invitado Amar invitado-1756741588911@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5931 +7729 2025-09-01 15:51:54.639979+00 2025-09-01 15:51:54.639991+00 f t Invitado Amar invitado-1756741913656@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5932 +7730 2025-09-01 16:19:01.89968+00 2025-09-01 16:19:01.899694+00 f t Invitado Amar invitado-1756743541064@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5933 +7731 2025-09-01 16:58:16.272255+00 2025-09-01 16:58:16.272265+00 f t Juana bronstein juanabrosntein1@gmail.com +541153776220 \N Av. Federico lacroze 3311 8-26 \N \N \N -34.5790441 -58.45022 38 1727 \N jbronstein +7732 2025-09-01 17:34:31.586251+00 2025-09-01 17:34:31.586261+00 f t Invitado Amar invitado-1756748071128@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5934 +7733 2025-09-01 17:35:42.784246+00 2025-09-01 17:35:42.784256+00 f t Invitado Amar invitado-1756748142627@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5935 +7734 2025-09-01 17:38:17.150995+00 2025-09-01 17:38:17.151008+00 f t Invitado Amar invitado-1756748296677@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5936 +7735 2025-09-01 17:38:42.423941+00 2025-09-01 17:38:42.423953+00 f t Invitado Amar invitado-1756748321611@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5937 +7736 2025-09-01 18:09:47.437065+00 2025-09-01 18:09:47.437075+00 f t Invitado Amar invitado-1756750187043@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5938 +7737 2025-09-01 18:15:08.059909+00 2025-09-01 18:15:08.059922+00 f t Invitado Amar invitado-1756750507464@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5939 +7738 2025-09-01 18:19:35.523453+00 2025-09-01 18:19:35.523466+00 f t Invitado Amar invitado-1756750773947@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5940 +7739 2025-09-01 18:36:09.21707+00 2025-09-01 18:36:09.21708+00 f t Invitado Amar invitado-1756751768537@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5941 +7740 2025-09-01 18:40:48.86614+00 2025-09-01 18:40:48.866152+00 f t Invitado Amar invitado-1756752041467@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-5942 +7741 2025-09-01 18:43:59.62639+00 2025-09-01 18:43:59.626403+00 f t Invitado Amar invitado-1756752238805@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-5943 +7742 2025-09-01 18:51:21.508166+00 2025-09-01 18:51:21.508185+00 f t Invitado Amar invitado-1756752681946@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5944 +7743 2025-09-01 19:16:47.637123+00 2025-09-01 19:16:47.637132+00 f t Invitado Amar invitado-1756754206211@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-5945 +7744 2025-09-01 19:32:25.664671+00 2025-09-01 19:32:25.66468+00 f t Maria Eugenia Coffone mecoffone@gmail.com +1565290469 \N Andres Lamas 2071 1 E \N \N -34.6034173 -58.4742419 34 \N \N mcoffone +7745 2025-09-01 19:41:43.614152+00 2025-09-01 19:41:43.614161+00 f t Rosalia Sanchez srosalia.1986@gmail.com 5491140741337 \N Av. Belgrano 3758. Piso 1. Depto D, Entre castro barros y colombres. \N FEMALE \N -34.6159485 -58.4193341 112 1725 \N rsanchez +7746 2025-09-01 19:48:56.568578+00 2025-09-01 19:48:56.568588+00 f t Jacinto Insua jinsua@taboasyasociados.com.ar +541133569397 \N vilela 2323 1a \N \N -34.5455509 -58.4695784 25 \N \N jinsua +7747 2025-09-01 19:55:11.769948+00 2025-09-01 19:55:11.769963+00 f t Invitado Amar invitado-1756756511221@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-5946 +7748 2025-09-01 19:55:49.014628+00 2025-09-01 19:55:49.014638+00 f t Jacintos Insua supertramp925@gmail.com +541133569397 \N vilela 2323 1A \N MALE \N -34.5455509 -58.4695784 25 1729 \N jinsua-2 +7749 2025-09-01 20:03:56.685631+00 2025-09-01 20:03:56.685644+00 f t Invitado Amar invitado-1756757036296@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-5947 +7750 2025-09-01 20:07:38.80339+00 2025-09-01 20:07:38.803403+00 f t Invitado Amar invitado-1756757257466@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-5948 +7751 2025-09-01 20:40:17.952903+00 2025-09-01 20:40:17.952913+00 f t Invitado Amar invitado-1756759217249@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-5949 +7752 2025-09-01 20:46:15.059951+00 2025-09-01 20:46:15.059961+00 f t Invitado Amar invitado-1756759575430@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-5950 +7753 2025-09-01 20:48:29.152529+00 2025-09-01 20:48:29.152541+00 f t Gabriela Paniagua gabipani@hotmail.com +541157207139 \N Manuel Alberti 982 \N \N -34.4502495 -58.7863442 78 \N \N gpaniagua +7754 2025-09-01 21:25:07.040599+00 2025-09-01 21:25:07.040612+00 f t Invitado Amar invitado-1756761906340@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5951 +7755 2025-09-01 21:28:02.944017+00 2025-09-01 21:28:02.94403+00 f t Invitado Amar invitado-1756762082576@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5952 +7756 2025-09-01 21:45:49.830205+00 2025-09-01 21:45:49.830218+00 f t Invitado Amar invitado-1756763149401@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5953 +7757 2025-09-01 22:21:09.300007+00 2025-09-01 22:21:09.300016+00 f t Invitado Amar invitado-1756765266904@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5954 +7758 2025-09-01 22:28:56.765398+00 2025-09-01 22:28:56.765408+00 f t Invitado Amar invitado-1756765734476@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-5955 +7759 2025-09-01 22:38:14.952442+00 2025-09-01 22:38:14.952453+00 f t Invitado Amar invitado-1756766295250@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-5956 +7760 2025-09-01 23:06:57.445365+00 2025-09-01 23:06:57.445375+00 f t Invitado Amar invitado-1756768017062@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5957 +7761 2025-09-01 23:11:22.742163+00 2025-09-01 23:11:22.742172+00 f t Invitado Amar invitado-1756768282397@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-5958 +7762 2025-09-01 23:13:51.431409+00 2025-09-01 23:13:51.431418+00 f t Invitado Amar invitado-1756768431266@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5959 +7763 2025-09-01 23:16:16.395151+00 2025-09-01 23:16:16.395173+00 f t Alma Nuñez nunezalma59@gmail.com +541139063469 \N Hermanos Ros 3226 \N \N \N \N -34.7083223 -58.4097586 70 \N \N anunez +7764 2025-09-01 23:23:16.034788+00 2025-09-01 23:23:16.034797+00 f t Invitado Amar invitado-1756768996239@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-5960 +7765 2025-09-01 23:27:13.463991+00 2025-09-01 23:27:13.464+00 f t Invitado Amar invitado-1756769233501@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5961 +7766 2025-09-01 23:40:26.53348+00 2025-09-01 23:40:26.533492+00 f t Helena Coakley coakleyhl@gmail.com 5491130537453 \N General Enrique Martinez 244 timbre 5 \N FEMALE 1988-06-30 -34.5805083 -58.4469379 35 1728 \N hcoakley +7767 2025-09-01 23:46:51.605517+00 2025-09-01 23:46:51.605538+00 f t Invitado Amar invitado-1756770409907@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-5962 +7768 2025-09-01 23:48:27.78136+00 2025-09-01 23:48:27.78137+00 f t Invitado Amar invitado-1756770507592@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-5963 +7769 2025-09-01 23:53:11.56065+00 2025-09-01 23:53:11.560662+00 f t Silvia Mattos silsumattos@gmail.com +541133768262 \N Bulnes 217 Pb B \N \N -34.6082192 -58.4186838 23 \N \N smattos +7770 2025-09-01 23:55:41.379954+00 2025-09-01 23:55:41.379965+00 f t Janice Lener janicelerner@hotmail.com 5491150949669 \N Alférez Hipólito Bouchard 3186 entre Uzal y Sarmiento). Olives \N FEMALE 2013-06-15 -34.5077338 -58.5145853 59 1730 \N jlener +7771 2025-09-02 00:38:35.243588+00 2025-09-02 00:38:35.243602+00 f t laura grosso laura.grosso@hotmail.es +541161084728 \N av castañares 1026 2do 4 \N \N -34.6343962 -58.433074 20 \N \N lgrosso +7772 2025-09-02 00:52:25.797925+00 2025-09-02 00:52:25.797935+00 f t Invitado Amar invitado-1756774345358@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-5964 +7773 2025-09-02 01:55:59.851082+00 2025-09-02 01:55:59.851092+00 f t Invitado Amar invitado-1756778159894@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5965 +7774 2025-09-02 02:11:51.596445+00 2025-09-02 02:11:51.596457+00 f t Invitado Amar invitado-1756779126762@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-5966 +7775 2025-09-02 02:24:11.213674+00 2025-09-02 02:24:11.213687+00 f t Invitado Amar invitado-1756779851273@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-5967 +7776 2025-09-02 02:27:38.478522+00 2025-09-02 02:27:38.478532+00 f t Invitado Amar invitado-1756780056871@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5968 +7777 2025-09-02 02:51:04.653648+00 2025-09-02 02:51:04.653662+00 f t Invitado Amar invitado-1756781464214@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5969 +7778 2025-09-02 02:52:32.197091+00 2025-09-02 02:52:32.197101+00 f t Invitado Amar invitado-1756781550769@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5970 +7779 2025-09-02 02:53:03.10532+00 2025-09-02 02:53:03.105334+00 f t Invitado Amar invitado-1756781582758@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-5971 +7780 2025-09-02 04:17:15.841591+00 2025-09-02 04:17:15.841602+00 f t Invitado Amar invitado-1756786634506@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-5972 +7781 2025-09-02 04:34:32.857377+00 2025-09-02 04:34:32.857389+00 f t Invitado Amar invitado-1756787672095@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-5973 +7782 2025-09-02 06:05:23.116278+00 2025-09-02 06:05:23.116293+00 f t Invitado Amar invitado-1756793122544@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5974 +7783 2025-09-02 09:18:51.132287+00 2025-09-02 09:18:51.1323+00 f t Invitado Amar invitado-1756804730463@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-5975 +7784 2025-09-02 10:56:30.471195+00 2025-09-02 10:56:30.471207+00 f t Invitado Amar invitado-1756810589759@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-5976 +7785 2025-09-02 10:57:16.107615+00 2025-09-02 10:57:16.107626+00 f t Invitado Amar invitado-1756810635573@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-5977 +7786 2025-09-02 11:00:57.672514+00 2025-09-02 11:00:57.672524+00 f t Invitado Amar invitado-1756810854773@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-5978 +7787 2025-09-02 11:42:52.381228+00 2025-09-02 11:42:52.38124+00 f t Invitado Amar invitado-1756813372096@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5979 +7788 2025-09-02 11:45:15.794988+00 2025-09-02 11:45:15.795003+00 f t Invitado Amar invitado-1756813515550@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-5980 +7789 2025-09-02 11:52:32.993297+00 2025-09-02 11:52:32.993306+00 f t Invitado Amar invitado-1756813952311@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-5981 +7790 2025-09-02 12:01:17.316086+00 2025-09-02 12:01:17.316096+00 f t Invitado Amar invitado-1756814475895@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-5982 +7791 2025-09-02 12:01:58.181255+00 2025-09-02 12:01:58.181267+00 f t Invitado Amar invitado-1756814516817@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-5983 +7792 2025-09-02 12:51:11.380076+00 2025-09-02 12:51:11.380085+00 f t Invitado Amar invitado-1756817463648@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-5984 +7793 2025-09-02 13:06:03.455194+00 2025-09-02 13:06:03.455205+00 f t Invitado Amar invitado-1756818374310@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5985 +7794 2025-09-02 13:12:43.545393+00 2025-09-02 13:12:43.545406+00 f t Invitado Amar invitado-1756818763620@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-5986 +7795 2025-09-02 13:48:21.04563+00 2025-09-02 13:48:21.045639+00 f t Invitado Amar invitado-1756820900445@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-5987 +7796 2025-09-02 14:09:07.566719+00 2025-09-02 14:09:07.566729+00 f t Invitado Amar invitado-1756822145045@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5988 +7797 2025-09-02 14:37:48.21598+00 2025-09-02 14:37:48.21599+00 f t Daiana Acuña daianacuna31@gmail.comd +541125433452 \N Capdevila 2918 2 a \N \N -34.5704511 -58.4898814 29 \N \N dacuna +7798 2025-09-02 14:48:23.83109+00 2025-09-02 14:48:23.831102+00 f t Invitado Amar invitado-1756824502747@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5989 +7799 2025-09-02 14:58:56.453951+00 2025-09-02 14:58:56.453961+00 f t Carolina Mattos caro_mattos23@hotmail.com +541161974873 \N Bulnes 217 PB B \N \N -34.6082192 -58.4186838 23 \N \N cmattos +7800 2025-09-02 15:09:32.876514+00 2025-09-02 15:09:32.876524+00 f t Invitado Amar invitado-1756825772094@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-5990 +7801 2025-09-02 15:18:42.897018+00 2025-09-02 15:18:42.897028+00 f t Invitado Amar invitado-1756826322332@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5991 +7802 2025-09-02 15:30:32.47025+00 2025-09-02 15:30:32.470259+00 f t Invitado Amar invitado-1756827032421@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-5992 +7803 2025-09-02 15:31:05.242223+00 2025-09-02 15:31:05.24224+00 f t Gabriela Piccinna gapiccinna@hotmail.com +541151015936 \N Av Elcano 2855 6 F \N \N -34.569254 -58.45778 3 \N \N gpiccinna +7804 2025-09-02 15:35:00.524559+00 2025-09-02 15:35:00.524569+00 f t Invitado Amar invitado-1756827300099@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-5993 +7805 2025-09-02 15:47:41.332161+00 2025-09-02 15:47:41.332172+00 f t Invitado Amar invitado-1756828060736@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-5994 +7806 2025-09-02 15:51:39.264399+00 2025-09-02 15:51:39.264412+00 f t Invitado Amar invitado-1756828300321@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-5995 +7807 2025-09-02 16:04:06.421483+00 2025-09-02 16:04:06.421494+00 f t Invitado Amar invitado-1756829045950@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-5996 +7808 2025-09-02 16:13:20.469519+00 2025-09-02 16:13:20.469533+00 f t Invitado Amar invitado-1756829599725@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-5997 +7809 2025-09-02 16:16:11.232722+00 2025-09-02 16:16:11.232737+00 f t Invitado Amar invitado-1756829770414@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-5998 +7810 2025-09-02 16:17:00.051499+00 2025-09-02 16:17:00.051512+00 f t Invitado Amar invitado-1756829819442@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-5999 +7811 2025-09-02 16:32:05.819379+00 2025-09-02 16:32:05.819389+00 f t Invitado Amar invitado-1756830724729@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-6000 +7812 2025-09-02 16:36:44.861891+00 2025-09-02 16:36:44.861904+00 f t Invitado Amar invitado-1756831004381@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6001 +7813 2025-09-02 16:37:33.554836+00 2025-09-02 16:37:33.554843+00 f t Mariana Durante md_maydurante@hotmail.com 5491158331916 \N Burela 1660 \N \N \N \N -34.5848903 -58.486291 29 1732 \N mdurante +7814 2025-09-02 16:42:23.064774+00 2025-09-02 16:42:23.064785+00 f t Invitado Amar invitado-1756831342350@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6002 +7815 2025-09-02 16:49:18.567757+00 2025-09-02 16:49:18.567768+00 f t Invitado Amar invitado-1756831757960@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-6003 +7816 2025-09-02 17:04:39.848784+00 2025-09-02 17:04:39.848794+00 f t Invitado Amar invitado-1756832679103@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6004 +7817 2025-09-02 17:30:27.185863+00 2025-09-02 17:30:27.185873+00 f t Invitado Amar invitado-1756834225493@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6005 +7818 2025-09-02 17:37:15.622064+00 2025-09-02 17:37:15.622075+00 f t mariana lima luna mariiilimaluna@gmail.com 91126063986 \N San Martin 982 1A \N MALE 1998-06-17 -34.5965123 -58.3743741 37 \N \N mluna-2 +7820 2025-09-02 18:02:45.884976+00 2025-09-02 18:02:45.884986+00 f t Viacheslav Kyznetsov alxim192@gmail.com +5491171179178 \N Zapiola 2149 \N \N \N \N -34.5654562 -58.4636925 3 1733 \N vkyznetsov +7821 2025-09-02 18:16:17.061405+00 2025-09-02 18:16:17.061417+00 f t Invitado Amar invitado-1756836975950@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6006 +7822 2025-09-02 18:37:41.312838+00 2025-09-02 18:37:41.31285+00 f t Invitado Amar invitado-1756838260896@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-6007 +7823 2025-09-02 18:50:52.041863+00 2025-09-02 18:50:52.041872+00 f t Invitado Amar invitado-1756839051431@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-6008 +7824 2025-09-02 19:25:32.396869+00 2025-09-02 19:25:32.396879+00 f t Invitado Amar invitado-1756841132024@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6009 +7825 2025-09-02 19:39:49.488988+00 2025-09-02 19:39:49.488997+00 f t Invitado Amar invitado-1756841988495@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6010 +7826 2025-09-02 19:43:26.487402+00 2025-09-02 19:43:26.487415+00 f t Invitado Amar invitado-1756842206145@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6011 +7827 2025-09-02 19:55:27.52841+00 2025-09-02 19:55:27.52842+00 f t Lucila de pasquale depasqualelu@gmail.com 91169360699 \N Mariscal Antonio José de Sucre 1563 PB B no funciona timbre \N FEMALE 1998-07-11 -34.5589999 -58.4468812 3 \N \N ldepasquale +7828 2025-09-02 20:36:54.354358+00 2025-09-02 20:36:54.354371+00 f t Invitado Amar invitado-1756845413755@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6012 +7829 2025-09-02 20:52:21.64691+00 2025-09-02 20:52:21.646919+00 f t Emilse Acosta emilseacosta52@gmail.com 5491123371989 \N Colombres 23 2b. \N \N \N -34.6116079 -58.4196251 23 1734 \N eacosta +7830 2025-09-02 20:56:22.097769+00 2025-09-02 20:56:22.09778+00 f t Invitado Amar invitado-1756846580920@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6013 +7831 2025-09-02 21:15:45.333645+00 2025-09-02 21:15:45.33366+00 f t Invitado Amar invitado-1756847742780@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-6014 +7832 2025-09-02 21:48:28.713133+00 2025-09-02 21:48:28.713144+00 f t Invitado Amar invitado-1756849708401@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-6015 +7833 2025-09-02 22:03:03.915236+00 2025-09-02 22:03:03.915251+00 f t Invitado Amar invitado-1756850583094@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6016 +7834 2025-09-02 22:04:12.069741+00 2025-09-02 22:04:12.069751+00 f t Gustavo Fraquelli gfraquelli@hotmail.com 5491123653506 \N San juan 2914 \N \N \N \N \N \N 12 1735 \N gfraquelli +7836 2025-09-02 22:24:09.638238+00 2025-09-02 22:24:09.638254+00 f t Yamila A Aybar yamila.piru@gmail.com +541132277864 \N Alberti 456 5 \N \N \N \N \N 23 \N \N yaaybar +7837 2025-09-02 22:34:15.36365+00 2025-09-02 22:34:15.363664+00 f t Invitado Amar invitado-1756852454031@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-6017 +7838 2025-09-02 22:47:57.406857+00 2025-09-02 22:47:57.406872+00 f t Invitado Amar invitado-1756853277027@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-6018 +7839 2025-09-02 22:48:57.474735+00 2025-09-02 22:48:57.474748+00 f t Invitado Amar invitado-1756853337320@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-6019 +7840 2025-09-02 23:01:22.963356+00 2025-09-02 23:01:22.963367+00 f t Invitado Amar invitado-1756854082468@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6020 +7841 2025-09-02 23:04:40.090492+00 2025-09-02 23:04:40.090503+00 f t Sofia Esteves sofia.esteves.10@gmail.com +50684212621 \N Rivadavia 2195 4A \N \N \N -34.6094674 -58.3974402 18 \N \N sesteves +7842 2025-09-02 23:15:39.953998+00 2025-09-02 23:15:39.954012+00 f t Invitado Amar invitado-1756854938833@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6021 +7843 2025-09-02 23:36:30.931497+00 2025-09-02 23:36:30.931507+00 f t Francisca Ferrari franciscafferrari@gmail.com +541135835985 \N Ayacucho 1221 10A \N \N -34.4424952 -58.5552104 74 \N \N fferrari-2 +7844 2025-09-02 23:53:47.532817+00 2025-09-02 23:53:47.532827+00 f t Invitado Amar invitado-1756857226245@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6022 +7845 2025-09-03 00:02:56.862444+00 2025-09-03 00:02:56.862454+00 f t Invitado Amar invitado-1756857776461@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6023 +7846 2025-09-03 00:06:15.110678+00 2025-09-03 00:06:15.110691+00 f t Invitado Amar invitado-1756857974535@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-6024 +7847 2025-09-03 00:10:26.445114+00 2025-09-03 00:10:26.44513+00 f t Invitado Amar invitado-1756858225341@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6025 +7848 2025-09-03 00:11:22.183217+00 2025-09-03 00:11:22.183231+00 f t Invitado Amar invitado-1756858281456@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6026 +7849 2025-09-03 00:21:33.40835+00 2025-09-03 00:21:33.408363+00 f t Invitado Amar invitado-1756858891627@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6027 +7850 2025-09-03 00:22:33.620488+00 2025-09-03 00:22:33.620497+00 f t Invitado Amar invitado-1756858952875@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6028 +7851 2025-09-03 00:29:20.054726+00 2025-09-03 00:29:20.054737+00 f t Invitado Amar invitado-1756859358809@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6029 +7852 2025-09-03 00:30:07.325024+00 2025-09-03 00:30:07.325035+00 f t Invitado Amar invitado-1756859406597@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6030 +7853 2025-09-03 00:30:47.899587+00 2025-09-03 00:30:47.8996+00 f t Daniela Bollorini daniela.bollorini@gmail.com +541162314405 \N Billinghurst 290 4 B \N FEMALE \N -34.6072042 -58.4162981 23 \N \N dbollorini +7854 2025-09-03 00:47:37.689266+00 2025-09-03 00:47:37.689276+00 f t Invitado Amar invitado-1756860456717@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-6031 +7855 2025-09-03 00:55:37.863532+00 2025-09-03 00:55:37.863545+00 f t Invitado Amar invitado-1756860936690@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-6032 +7856 2025-09-03 00:59:55.997323+00 2025-09-03 00:59:55.997335+00 f t Invitado Amar invitado-1756861196066@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-6033 +7857 2025-09-03 01:04:31.003642+00 2025-09-03 01:04:31.003658+00 f t Invitado Amar invitado-1756861470832@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-6034 +7858 2025-09-03 01:06:26.79264+00 2025-09-03 01:06:26.792653+00 f t Invitado Amar invitado-1756861585868@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-6035 +7859 2025-09-03 01:12:50.744018+00 2025-09-03 01:12:50.744031+00 f t Invitado Amar invitado-1756861970268@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-6036 +7860 2025-09-03 01:51:16.76044+00 2025-09-03 01:51:16.760453+00 f t Invitado Amar invitado-1756864276349@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6037 +7861 2025-09-03 01:56:57.625337+00 2025-09-03 01:56:57.625351+00 f t Invitado Amar invitado-1756864616852@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-6038 +7862 2025-09-03 01:57:50.93241+00 2025-09-03 01:57:50.932423+00 f t Invitado Amar invitado-1756864670699@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-6039 +7863 2025-09-03 02:06:14.438769+00 2025-09-03 02:06:14.438781+00 f t Invitado Amar invitado-1756865173741@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6040 +7864 2025-09-03 02:16:11.89963+00 2025-09-03 02:16:11.899641+00 f t Invitado Amar invitado-1756865770805@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6041 +7865 2025-09-03 02:23:06.17129+00 2025-09-03 02:23:06.1713+00 f t Invitado Amar invitado-1756866186963@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-6042 +7866 2025-09-03 02:24:11.580335+00 2025-09-03 02:24:11.580344+00 f t Invitado Amar invitado-1756866251189@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-6043 +7867 2025-09-03 02:40:54.250532+00 2025-09-03 02:40:54.250544+00 f t Invitado Amar invitado-1756867252168@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6044 +7868 2025-09-03 02:58:49.402632+00 2025-09-03 02:58:49.402642+00 f t Invitado Amar invitado-1756868327670@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6045 +7869 2025-09-03 05:08:44.244015+00 2025-09-03 05:08:44.244028+00 f t Invitado Amar invitado-1756876122489@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6046 +7870 2025-09-03 05:37:55.812904+00 2025-09-03 05:37:55.812913+00 f t Invitado Amar invitado-1756877874506@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6047 +7871 2025-09-03 07:57:59.832326+00 2025-09-03 07:57:59.832335+00 f t Invitado Amar invitado-1756886278862@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-6048 +7872 2025-09-03 10:33:00.95336+00 2025-09-03 10:33:00.953371+00 f t Invitado Amar invitado-1756895580200@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-6049 +7873 2025-09-03 10:38:45.574945+00 2025-09-03 10:38:45.574957+00 f t Invitado Amar invitado-1756895924749@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-6050 +7874 2025-09-03 10:51:24.447758+00 2025-09-03 10:51:24.447768+00 f t Invitado Amar invitado-1756896684033@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6051 +7875 2025-09-03 10:52:23.907427+00 2025-09-03 10:52:23.907444+00 f t Invitado Amar invitado-1756896743242@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-6052 +7876 2025-09-03 10:55:28.664067+00 2025-09-03 10:55:28.664076+00 f t Invitado Amar invitado-1756896928480@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6053 +7877 2025-09-03 10:56:21.749561+00 2025-09-03 10:56:21.749574+00 f t Claudia Korol claudia.korol@gmail.com +541160491996 \N Asuncion 2481 D \N \N -34.5890625 -58.4921894 43 \N \N ckorol +7878 2025-09-03 11:18:21.353825+00 2025-09-03 11:18:21.353835+00 f t Invitado Amar invitado-1756898300696@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6054 +7879 2025-09-03 11:20:12.945781+00 2025-09-03 11:20:12.94579+00 f t Invitado Amar invitado-1756898412478@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-6055 +7880 2025-09-03 12:19:48.425777+00 2025-09-03 12:19:48.425786+00 f t Invitado Amar invitado-1756901987526@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6056 +7881 2025-09-03 12:24:11.149283+00 2025-09-03 12:24:11.149294+00 f t Invitado Amar invitado-1756902250194@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6057 +7882 2025-09-03 13:06:50.188558+00 2025-09-03 13:06:50.188567+00 f t Invitado Amar invitado-1756904810501@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6058 +7883 2025-09-03 13:07:20.4889+00 2025-09-03 13:07:20.488911+00 f t Invitado Amar invitado-1756904839888@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6059 +7884 2025-09-03 13:17:33.598406+00 2025-09-03 13:17:33.598419+00 f t Invitado Amar invitado-1756905453060@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-6060 +7885 2025-09-03 13:22:11.113624+00 2025-09-03 13:22:11.113634+00 f t Invitado Amar invitado-1756905730607@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6061 +7886 2025-09-03 13:22:49.795725+00 2025-09-03 13:22:49.795735+00 f t Karina Garda francopincus2601@gmail.com +541123384439 \N Cortina 2135 10 \N \N \N -34.6216976 -58.523075 66 1746 \N kgarda +7887 2025-09-03 13:39:24.239281+00 2025-09-03 13:39:24.239291+00 f t Invitado Amar invitado-1756906764091@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-6062 +7888 2025-09-03 13:43:27.874339+00 2025-09-03 13:43:27.874351+00 f t Invitado Amar invitado-1756907007231@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6063 +7889 2025-09-03 13:45:05.324929+00 2025-09-03 13:45:05.324942+00 f t Invitado Amar invitado-1756907104726@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-6064 +7890 2025-09-03 14:02:26.391943+00 2025-09-03 14:02:26.391956+00 f t Invitado Amar invitado-1756908145862@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6065 +7891 2025-09-03 14:03:41.048431+00 2025-09-03 14:03:41.048444+00 f t Invitado Amar invitado-1756908219997@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6066 +7892 2025-09-03 14:04:03.100582+00 2025-09-03 14:04:03.100593+00 f t Invitado Amar invitado-1756908242848@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6067 +7893 2025-09-03 14:16:08.829787+00 2025-09-03 14:16:08.829797+00 f t Marta Monacci mbmonacci@gmail.com +541158763919 \N Hualfin 933 PB \N \N -34.6237785 -58.4411443 14 \N \N mmonacci +7894 2025-09-03 14:25:12.838437+00 2025-09-03 14:25:12.83845+00 f t Invitado Amar invitado-1756909512388@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6068 +7895 2025-09-03 14:27:31.250927+00 2025-09-03 14:27:31.250941+00 f t Invitado Amar invitado-1756909650806@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-6069 +7896 2025-09-03 14:31:32.729506+00 2025-09-03 14:31:32.729516+00 f t Invitado Amar invitado-1756909892424@example.com 55555555 \N \N \N \N \N 54 \N \N iamar-6070 +7897 2025-09-03 14:43:58.357258+00 2025-09-03 14:43:58.357271+00 f t Lucia Dana luciadana@gmail.com 5491159967622 \N Anchorena 1238 PB depto 4 \N FEMALE 1991-11-22 -34.7663652 -58.3818266 9 1738 \N ldana +7898 2025-09-03 15:15:02.983989+00 2025-09-03 15:15:02.984004+00 f t Invitado Amar invitado-1756912501545@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6071 +7899 2025-09-03 15:33:47.328542+00 2025-09-03 15:33:47.328551+00 f t Paula Virgara francolevington@gmail.com 5491157047783 \N Remedios escalada de san martin 983 entre Espinosa y Cucha Cucha \N \N \N -33.8878723 -60.5490334 26 1739 \N pvirgara +7900 2025-09-03 16:01:10.174417+00 2025-09-03 16:01:10.17443+00 f t Invitado Amar invitado-1756915268656@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6072 +7901 2025-09-03 16:01:34.109254+00 2025-09-03 16:01:34.109268+00 f t Invitado Amar invitado-1756915293174@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-6073 +7902 2025-09-03 16:28:56.897751+00 2025-09-03 16:28:56.897764+00 f t Invitado Amar invitado-1756916935520@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6074 +7903 2025-09-03 16:56:34.965877+00 2025-09-03 16:56:34.96589+00 f t Invitado Amar invitado-1756918593886@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6075 +7904 2025-09-03 17:02:44.234591+00 2025-09-03 17:02:44.234603+00 f t Invitado Amar invitado-1756918963640@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6076 +7905 2025-09-03 17:10:08.558125+00 2025-09-03 17:10:08.558136+00 f t Invitado Amar invitado-1756919408168@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-6077 +7906 2025-09-03 17:33:10.613202+00 2025-09-03 17:33:10.613217+00 f t Invitado Amar invitado-1756920789814@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-6078 +7907 2025-09-03 17:37:10.238031+00 2025-09-03 17:37:10.238044+00 f t Invitado Amar invitado-1756921029794@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6079 +7908 2025-09-03 17:39:25.60703+00 2025-09-03 17:39:25.607039+00 f t Invitado Amar invitado-1756921164418@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6080 +7909 2025-09-03 17:51:54.529477+00 2025-09-03 17:51:54.529486+00 f t Camila Victoria Scholz camilaenmuchosbits@gmail.com +541156446609 \N Ituzaingó 868 casa \N FEMALE \N -34.6319432 -58.3756891 32 1741 \N cscholz-3 +7910 2025-09-03 18:01:56.564061+00 2025-09-03 18:01:56.56407+00 f t Invitado Amar invitado-1756922515813@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-6081 +7911 2025-09-03 18:04:27.045714+00 2025-09-03 18:04:27.045724+00 f t Invitado Amar invitado-1756922666817@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6082 +7912 2025-09-03 18:14:05.558663+00 2025-09-03 18:14:05.558673+00 f t Invitado Amar invitado-1756923245265@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6083 +7913 2025-09-03 18:26:32.005502+00 2025-09-03 18:26:32.005511+00 f t Invitado Amar invitado-1756923991238@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6084 +7914 2025-09-03 19:42:18.157688+00 2025-09-03 19:42:18.157744+00 f t Invitado Amar invitado-1756928536273@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-6085 +7915 2025-09-03 19:53:17.441634+00 2025-09-03 19:53:17.441644+00 f t Invitado Amar invitado-1756929197064@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-6086 +7916 2025-09-03 19:58:45.61232+00 2025-09-03 19:58:45.61233+00 f t Invitado Amar invitado-1756929524961@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6087 +7917 2025-09-03 20:01:30.012956+00 2025-09-03 20:01:30.012971+00 f t Invitado Amar invitado-1756929689128@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6088 +7918 2025-09-03 20:04:48.24041+00 2025-09-03 20:04:48.240419+00 f t Invitado Amar invitado-1756929887257@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-6089 +7919 2025-09-03 20:16:13.618027+00 2025-09-03 20:16:13.61804+00 f t Invitado Amar invitado-1756930572395@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6090 +7920 2025-09-03 20:26:36.552901+00 2025-09-03 20:26:36.55291+00 f t Invitado Amar invitado-1756931196412@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6091 +7921 2025-09-03 20:29:47.233533+00 2025-09-03 20:29:47.233544+00 f t Invitado Amar invitado-1756931386729@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6092 +7922 2025-09-03 20:36:33.04249+00 2025-09-03 20:36:33.042499+00 f t Invitado Amar invitado-1756931793463@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-6093 +7923 2025-09-03 20:40:14.75596+00 2025-09-03 20:40:14.755972+00 f t Invitado Amar invitado-1756932014200@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6094 +7924 2025-09-03 20:40:50.399358+00 2025-09-03 20:40:50.399368+00 f t Invitado Amar invitado-1756932050146@example.com 55555555 \N \N \N \N \N 7 \N \N iamar-6095 +7925 2025-09-03 20:42:56.226954+00 2025-09-03 20:42:56.226963+00 f t Invitado Amar invitado-1756932175967@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6096 +7926 2025-09-03 20:43:05.381026+00 2025-09-03 20:43:05.381035+00 f t Invitado Amar invitado-1756932186053@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-6097 +7927 2025-09-03 20:43:43.39355+00 2025-09-03 20:43:43.39356+00 f t Invitado Amar invitado-1756932223139@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-6098 +7928 2025-09-03 20:44:32.528722+00 2025-09-03 20:44:32.52873+00 f t Invitado Amar invitado-1756932272274@example.com 55555555 \N \N \N \N \N 7 \N \N iamar-6099 +7929 2025-09-03 21:08:36.3015+00 2025-09-03 21:08:36.301509+00 f t Invitado Amar invitado-1756933714722@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6100 +7930 2025-09-03 21:12:14.985411+00 2025-09-03 21:12:14.985425+00 f t Invitado Amar invitado-1756933934840@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-6101 +7931 2025-09-03 21:23:41.420474+00 2025-09-03 21:23:41.420484+00 f t Invitado Amar invitado-1756934621145@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6102 +7932 2025-09-03 21:42:53.88697+00 2025-09-03 21:42:53.886979+00 f t Invitado Amar invitado-1756935773249@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6103 +7933 2025-09-03 21:46:56.865613+00 2025-09-03 21:46:56.865622+00 f t Invitado Amar invitado-1756936015482@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-6104 +7934 2025-09-03 21:50:01.321472+00 2025-09-03 21:50:01.321484+00 f t Invitado Amar invitado-1756936200709@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6105 +7935 2025-09-03 21:51:01.736187+00 2025-09-03 21:51:01.736199+00 f t Invitado Amar invitado-1756936260999@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6106 +7936 2025-09-03 22:01:02.333984+00 2025-09-03 22:01:02.333996+00 f t Graciela Flo flo.graciela.beatriz@gmail.com +542355508583 \N Matheu 1771 14 dpto 3 \N \N -34.630253 -58.3980087 44 \N \N gflo +7937 2025-09-03 22:18:02.27412+00 2025-09-03 22:18:02.274134+00 f t Invitado Amar invitado-1756937881739@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-6107 +7938 2025-09-03 22:42:22.313635+00 2025-09-03 22:42:22.313644+00 f t Invitado Amar invitado-1756939342457@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6108 +7939 2025-09-03 22:45:02.396617+00 2025-09-03 22:45:02.39663+00 f t Nicolas Lautaro Echegaray Nico.echegaray.04@gmail.com +541170061775 \N Encina 2778 \N \N -34.7272609 -58.8031091 53 \N \N nechegaray +7940 2025-09-03 23:03:11.654567+00 2025-09-03 23:03:11.654579+00 f t Stefania Estoup stefiiestoup@gmail.com +541122463786 \N Virrey del pino 3585 Casa \N \N -34.649469 -58.7156072 53 \N \N sestoup +7941 2025-09-03 23:55:34.515571+00 2025-09-03 23:55:34.515585+00 f t Invitado Amar invitado-1756943733716@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6109 +7942 2025-09-04 00:00:50.812289+00 2025-09-04 00:00:50.812299+00 f t Invitado Amar invitado-1756944050033@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6110 +7943 2025-09-04 00:27:10.876447+00 2025-09-04 00:27:10.876461+00 f t Invitado Amar invitado-1756945630348@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6111 +7944 2025-09-04 00:30:20.116311+00 2025-09-04 00:30:20.116319+00 f t Invitado Amar invitado-1756945819456@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-6112 +7945 2025-09-04 00:43:54.815677+00 2025-09-04 00:43:54.815687+00 f t Invitado Amar invitado-1756946633302@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6113 +7946 2025-09-04 00:50:48.629636+00 2025-09-04 00:50:48.629648+00 f t Invitado Amar invitado-1756947141955@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6114 +7947 2025-09-04 00:51:57.978352+00 2025-09-04 00:51:57.978362+00 f t Invitado Amar invitado-1756947115584@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6115 +7948 2025-09-04 00:55:22.040843+00 2025-09-04 00:55:22.040854+00 f t Jacqueline Nieto jacnieto88@gmail.com +5426411162 \N Sarza 2477 1 \N \N 43.3579286 -7.1245935 53 \N \N jnieto +7949 2025-09-04 01:57:45.308596+00 2025-09-04 01:57:45.308605+00 f t Invitado Amar invitado-1756951065034@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6116 +7950 2025-09-04 01:58:42.142073+00 2025-09-04 01:58:42.142082+00 f t Invitado Amar invitado-1756951122255@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-6117 +7951 2025-09-04 02:03:19.89025+00 2025-09-04 02:03:19.890263+00 f t Invitado Amar invitado-1756951397104@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-6118 +7952 2025-09-04 02:05:28.966764+00 2025-09-04 02:05:28.966777+00 f t Invitado Amar invitado-1756951528438@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6119 +7953 2025-09-04 02:06:26.755236+00 2025-09-04 02:06:26.755258+00 f t Invitado Amar invitado-1756951584930@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6120 +7954 2025-09-04 02:15:47.360537+00 2025-09-04 02:15:47.360546+00 f t Invitado Amar invitado-1756952146470@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6121 +7955 2025-09-04 03:50:08.228079+00 2025-09-04 03:50:08.228092+00 f t Invitado Amar invitado-1756957807131@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6122 +7956 2025-09-04 08:28:35.449004+00 2025-09-04 08:28:35.449015+00 f t Invitado Amar invitado-1756974514832@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6123 +7957 2025-09-04 08:29:24.923199+00 2025-09-04 08:29:24.923209+00 f t Invitado Amar invitado-1756974563941@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6124 +7958 2025-09-04 08:30:15.836699+00 2025-09-04 08:30:15.836709+00 f t Invitado Amar invitado-1756974615662@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6125 +7959 2025-09-04 08:41:58.920103+00 2025-09-04 08:41:58.920112+00 f t Invitado Amar invitado-1756975317961@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6126 +7960 2025-09-04 08:46:20.021343+00 2025-09-04 08:46:20.021353+00 f t Invitado Amar invitado-1756975579686@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6127 +7961 2025-09-04 09:08:02.451201+00 2025-09-04 09:08:02.451213+00 f t Invitado Amar invitado-1756976882120@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6128 +7962 2025-09-04 10:23:37.338955+00 2025-09-04 10:23:37.338964+00 f t Invitado Amar invitado-1756981416809@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6129 +7963 2025-09-04 11:12:26.026158+00 2025-09-04 11:12:26.026173+00 f t Invitado Amar invitado-1756984344268@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-6130 +7964 2025-09-04 11:28:33.06174+00 2025-09-04 11:28:33.061751+00 f t Invitado Amar invitado-1756985313106@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-6131 +7965 2025-09-04 11:34:24.207529+00 2025-09-04 11:34:24.207542+00 f t valquiria erika ahe valquiahe@gmail.com +541166633276 \N Bucarelli 1472 5 11 \N \N -34.5846914 -58.4804283 61 \N \N vahe +7966 2025-09-04 13:01:19.347484+00 2025-09-04 13:01:19.347497+00 f t Invitado Amar invitado-1756990830540@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6132 +7967 2025-09-04 13:27:08.296217+00 2025-09-04 13:27:08.296233+00 f t Invitado Amar invitado-1756992427897@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6133 +7968 2025-09-04 13:40:15.858799+00 2025-09-04 13:40:15.858815+00 f t Invitado Amar invitado-1756993215429@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6134 +7969 2025-09-04 13:48:54.972624+00 2025-09-04 13:48:54.972637+00 f t Invitado Amar invitado-1756993733738@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6135 +7970 2025-09-04 13:52:26.260208+00 2025-09-04 13:52:26.26022+00 f t Invitado Amar invitado-1756993946040@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6136 +7971 2025-09-04 13:54:08.133167+00 2025-09-04 13:54:08.133178+00 f t Invitado Amar invitado-1756994048468@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-6137 +7972 2025-09-04 14:05:49.248209+00 2025-09-04 14:05:49.248218+00 f t Invitado Amar invitado-1756994749598@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6138 +7973 2025-09-04 14:15:54.292018+00 2025-09-04 14:15:54.29203+00 f t Invitado Amar invitado-1756995353872@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6139 +7974 2025-09-04 14:51:59.579069+00 2025-09-04 14:51:59.57908+00 f t ivan weyner ivanweyner@gmail.com +541154142315 \N ramon falcon 2509 2d \N \N -34.6304758 -58.4638265 4 \N \N iweyner +7975 2025-09-04 15:17:07.041696+00 2025-09-04 15:17:07.041708+00 f t JUAN GOLDSTRAJ juangoldstraj@gmail.com +541160211111 \N Asunción 2923 1 c \N \N -32.9547095 -60.6973615 29 \N \N jgoldstraj +7976 2025-09-04 15:23:22.606158+00 2025-09-04 15:23:22.606168+00 f t Invitado Amar invitado-1756999401958@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6140 +7977 2025-09-04 15:49:00.601585+00 2025-09-04 15:49:00.601594+00 f t Invitado Amar invitado-1757000941128@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6141 +7978 2025-09-04 15:58:14.477167+00 2025-09-04 15:58:14.477177+00 f t Invitado Amar invitado-1757001493694@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-6142 +7979 2025-09-04 16:07:51.082455+00 2025-09-04 16:07:51.082468+00 f t Invitado Amar invitado-1757002071106@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6143 +7980 2025-09-04 16:41:47.394763+00 2025-09-04 16:41:47.394775+00 f t Invitado Amar invitado-1757004104844@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-6144 +7981 2025-09-04 16:50:00.733466+00 2025-09-04 16:50:00.733479+00 f t Invitado Amar invitado-1757004599272@example.com 55555555 \N \N \N \N \N 47 \N \N iamar-6145 +7982 2025-09-04 16:57:48.518447+00 2025-09-04 16:57:48.518457+00 f t Invitado Amar invitado-1757005068625@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6146 +7983 2025-09-04 16:58:16.075848+00 2025-09-04 16:58:16.075857+00 f t Invitado Amar invitado-1757005096498@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6147 +7984 2025-09-04 17:13:02.559922+00 2025-09-04 17:13:02.559935+00 f t Invitado Amar invitado-1757005978302@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-6148 +7985 2025-09-04 17:15:52.056278+00 2025-09-04 17:15:52.05629+00 f t Invitado Amar invitado-1757006151876@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-6149 +7986 2025-09-04 17:29:58.239649+00 2025-09-04 17:29:58.239661+00 f t Invitado Amar invitado-1757006996701@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-6150 +7987 2025-09-04 17:32:09.705785+00 2025-09-04 17:32:09.705798+00 f t Invitado Amar invitado-1757007128967@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-6151 +7988 2025-09-04 17:56:26.805599+00 2025-09-04 17:56:26.805609+00 f t Invitado Amar invitado-1757008585927@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6152 +7989 2025-09-04 17:59:19.937427+00 2025-09-04 17:59:19.937436+00 f t Invitado Amar invitado-1757008759786@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6153 +7990 2025-09-04 18:02:29.56218+00 2025-09-04 18:02:29.562189+00 f t Invitado Amar invitado-1757008948894@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6154 +7991 2025-09-04 18:02:56.599819+00 2025-09-04 18:02:56.599828+00 f t Invitado Amar invitado-1757008976425@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6155 +7992 2025-09-04 18:03:22.242671+00 2025-09-04 18:03:22.242681+00 f t Invitado Amar invitado-1757009002067@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6156 +7993 2025-09-04 18:06:25.533422+00 2025-09-04 18:06:25.533431+00 f t Invitado Amar invitado-1757009185109@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6157 +7994 2025-09-04 18:23:08.312552+00 2025-09-04 18:23:08.312563+00 f t Invitado Amar invitado-1757010189546@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-6158 +7995 2025-09-04 18:35:42.837193+00 2025-09-04 18:35:42.837202+00 f t Invitado Amar invitado-1757010941751@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-6159 +7996 2025-09-04 18:50:08.98557+00 2025-09-04 18:50:08.98558+00 f t Invitado Amar invitado-1757011808284@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-6160 +7997 2025-09-04 19:08:32.832455+00 2025-09-04 19:08:32.832464+00 f t Lara Burgos lara.burgos.lb@gmail.com +5491162117254 \N juana manso 1666 606 \N \N -34.616944 -58.361718 30 1745 \N lburgos +7998 2025-09-04 19:08:57.227206+00 2025-09-04 19:08:57.227216+00 f t Invitado Amar invitado-1757012936863@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6161 +7999 2025-09-04 19:12:06.730444+00 2025-09-04 19:12:06.730457+00 f t Invitado Amar invitado-1757013125746@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-6162 +8000 2025-09-04 20:00:10.063649+00 2025-09-04 20:00:10.063662+00 f t Invitado Amar invitado-1757016009261@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6163 +8001 2025-09-04 20:37:36.252329+00 2025-09-04 20:37:36.252338+00 f t Invitado Amar invitado-1757018255936@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-6164 +8002 2025-09-04 20:37:40.758256+00 2025-09-04 20:37:40.758268+00 f t Invitado Amar invitado-1757018260642@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6165 +8003 2025-09-04 20:38:23.999561+00 2025-09-04 20:38:23.99957+00 f t Invitado Amar invitado-1757018303909@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-6166 +8004 2025-09-04 22:39:11.887976+00 2025-09-04 22:39:11.887988+00 f t Invitado Amar invitado-1757025551400@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6167 +8005 2025-09-04 22:47:00.633138+00 2025-09-04 22:47:00.633151+00 f t Invitado Amar invitado-1757026019836@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-6168 +8006 2025-09-04 23:06:59.930975+00 2025-09-04 23:06:59.930988+00 f t Invitado Amar invitado-1757027219479@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-6169 +8007 2025-09-04 23:24:32.847084+00 2025-09-04 23:24:32.847093+00 f t Invitado Amar invitado-1757028271646@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6170 +8008 2025-09-04 23:52:32.993327+00 2025-09-04 23:52:32.993338+00 f t Mayra Mena menamayrajulieta@gmail.com +541133943558 \N Margarita weild 3117 \N \N -34.7237132 -58.3702582 70 \N \N mmena +8009 2025-09-05 00:02:34.249341+00 2025-09-05 00:02:34.249351+00 f t Invitado Amar invitado-1757030553431@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6171 +8010 2025-09-05 00:43:49.581977+00 2025-09-05 00:43:49.581987+00 f t Invitado Amar invitado-1757033028454@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6172 +8011 2025-09-05 00:51:13.068257+00 2025-09-05 00:51:13.068266+00 f t Invitado Amar invitado-1757033472663@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6173 +8012 2025-09-05 01:19:45.041122+00 2025-09-05 01:19:45.041135+00 f t Invitado Amar invitado-1757035183878@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6174 +8013 2025-09-05 01:36:48.759439+00 2025-09-05 01:36:48.759448+00 f t Invitado Amar invitado-1757036208194@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6175 +8014 2025-09-05 02:04:40.422855+00 2025-09-05 02:04:40.422865+00 f t Invitado Amar invitado-1757037879912@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6176 +8015 2025-09-05 02:22:24.909153+00 2025-09-05 02:22:24.909163+00 f t Invitado Amar invitado-1757038944427@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6177 +8016 2025-09-05 02:35:07.277663+00 2025-09-05 02:35:07.277674+00 f t Invitado Amar invitado-1757039706876@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-6178 +8017 2025-09-05 03:16:17.709583+00 2025-09-05 03:16:17.709592+00 f t Invitado Amar invitado-1757042177130@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6179 +8018 2025-09-05 03:19:51.215302+00 2025-09-05 03:19:51.215312+00 f t Invitado Amar invitado-1757042391170@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6180 +8019 2025-09-05 03:24:04.07782+00 2025-09-05 03:24:04.077829+00 f t Invitado Amar invitado-1757042643935@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6181 +8020 2025-09-05 04:02:00.954949+00 2025-09-05 04:02:00.954962+00 f t Invitado Amar invitado-1757044920417@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6182 +8021 2025-09-05 04:02:55.525521+00 2025-09-05 04:02:55.525535+00 f t Invitado Amar invitado-1757044975386@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6183 +8022 2025-09-05 05:07:35.187784+00 2025-09-05 05:07:35.187793+00 f t Invitado Amar invitado-1757048854803@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-6184 +8023 2025-09-05 08:59:38.203822+00 2025-09-05 08:59:38.203831+00 f t Invitado Amar invitado-1757062779033@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6185 +8024 2025-09-05 10:13:01.347301+00 2025-09-05 10:13:01.347314+00 f t Invitado Amar invitado-1757067181136@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6186 +8025 2025-09-05 10:42:59.849699+00 2025-09-05 10:42:59.849709+00 f t Invitado Amar invitado-1757068979028@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6187 +8026 2025-09-05 11:11:15.346117+00 2025-09-05 11:11:15.346127+00 f t Invitado Amar invitado-1757070678993@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-6188 +8027 2025-09-05 11:23:33.55302+00 2025-09-05 11:23:33.55303+00 f t Invitado Amar invitado-1757071412796@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6189 +8028 2025-09-05 11:34:06.62647+00 2025-09-05 11:34:06.62648+00 f t Invitado Amar invitado-1757072046286@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6190 +8029 2025-09-05 12:04:17.244556+00 2025-09-05 12:04:17.244565+00 f t Invitado Amar invitado-1757073856977@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6191 +8030 2025-09-05 12:19:46.273849+00 2025-09-05 12:19:46.273858+00 f t Brenda Soledad Mena mena_brenda@hotmail.com.ar +541161477255 \N Alejandro Magariños Cervantes 4512 1 \N \N \N -34.6235291 -58.494478 16 1747 \N bmena +8031 2025-09-05 12:33:38.348071+00 2025-09-05 12:33:38.348084+00 f t Invitado Amar invitado-1757075617559@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6192 +8032 2025-09-05 12:39:11.103115+00 2025-09-05 12:39:11.103126+00 f t Invitado Amar invitado-1757075950572@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-6193 +8033 2025-09-05 12:49:03.905093+00 2025-09-05 12:49:03.905102+00 f t Invitado Amar invitado-1757076543847@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6194 +8034 2025-09-05 12:59:13.209488+00 2025-09-05 12:59:13.209498+00 f t Invitado Amar invitado-1757077154024@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-6195 +8035 2025-09-05 13:05:26.552026+00 2025-09-05 13:05:26.552035+00 f t Invitado Amar invitado-1757077525811@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6196 +8036 2025-09-05 13:21:48.629362+00 2025-09-05 13:21:48.629369+00 f t Hugo Chazaretta hugochazarreta@hotmail.com 5491164086328 \N Av, Avellaneda 2072 Pb B \N MALE \N -34.6222152 -58.4589545 4 1748 \N hchazaretta +8037 2025-09-05 13:52:47.280759+00 2025-09-05 13:52:47.28077+00 f t Invitado Amar invitado-1757080366594@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-6197 +8038 2025-09-05 14:04:25.089691+00 2025-09-05 14:04:25.089701+00 f t Gustavo Insfran gustavo.g.insfran@hotmail.com +541134341489 \N Sinclair 3044 4D \N \N -34.574536 -58.4233101 1 \N \N ginsfran +8039 2025-09-05 14:16:45.8419+00 2025-09-05 14:16:45.841909+00 f t Jessica Jiménez jessica.jimenezu@gmail.com +541170080149 \N Av avellaneda 1727 3C \N \N -34.6208517 -58.4554423 14 \N \N jjimenez +8040 2025-09-05 14:26:52.100449+00 2025-09-05 14:26:52.10046+00 f t Invitado Amar invitado-1757082411560@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6198 +8041 2025-09-05 14:43:37.931319+00 2025-09-05 14:43:37.931328+00 f t Invitado Amar invitado-1757083417225@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6199 +8042 2025-09-05 15:04:21.294716+00 2025-09-05 15:04:21.294726+00 f t Invitado Amar invitado-1757084660934@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6200 +8043 2025-09-05 15:06:20.390955+00 2025-09-05 15:06:20.390968+00 f t Invitado Amar invitado-1757084779999@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-6201 +8044 2025-09-05 15:10:52.167356+00 2025-09-05 15:10:52.167368+00 f t Bárbara Micaela DEL ZOMPO mica.tm@hotmail.com +541133643354 \N MORENO, JOSE MARIA AV. 507 PB b \N \N \N -34.6221152 -58.4343247 14 1750 \N bdelzompo +8045 2025-09-05 15:23:36.416089+00 2025-09-05 15:23:36.416099+00 f t Invitado Amar invitado-1757085815916@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-6202 +8046 2025-09-05 15:24:29.823529+00 2025-09-05 15:24:29.823539+00 f t Invitado Amar invitado-1757085869215@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6203 +8047 2025-09-05 15:47:20.137952+00 2025-09-05 15:47:20.13796+00 f t Guillermo Gimenez guillegimenez1994@gmail.com 5493454075948 \N Espinosa 1869 depto 3 A \N MALE \N -34.6030078 -58.4576495 34 1749 \N ggimenez +8048 2025-09-05 16:17:45.104081+00 2025-09-05 16:17:45.104093+00 f t Invitado Amar invitado-1757089064026@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-6204 +8049 2025-09-05 16:27:36.47067+00 2025-09-05 16:27:36.470685+00 f t Invitado Amar invitado-1757089656079@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6205 +8050 2025-09-05 16:46:25.395343+00 2025-09-05 16:46:25.395355+00 f t Invitado Amar invitado-1757090784786@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-6206 +8051 2025-09-05 16:48:57.342727+00 2025-09-05 16:48:57.342736+00 f t Invitado Amar invitado-1757090937537@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6207 +8052 2025-09-05 17:00:57.074984+00 2025-09-05 17:00:57.074997+00 f t Invitado Amar invitado-1757091656433@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6208 +8053 2025-09-05 17:11:26.906169+00 2025-09-05 17:11:26.906183+00 f t Invitado Amar invitado-1757092287657@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6209 +8054 2025-09-05 17:13:48.966405+00 2025-09-05 17:13:48.966419+00 f t Leticia Lima leticiacecilia1314@icloud.com +541155123493 \N Ramón falcon 2735 3 A \N \N -34.6314056 -58.4668589 4 \N \N llima +8055 2025-09-05 17:19:57.562166+00 2025-09-05 17:19:57.562175+00 f t Invitado Amar invitado-1757092796901@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-6210 +8056 2025-09-05 18:11:22.952943+00 2025-09-05 18:11:22.952955+00 f t Invitado Amar invitado-1757095882582@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-6211 +8057 2025-09-05 18:12:49.899219+00 2025-09-05 18:12:49.899232+00 f t Invitado Amar invitado-1757095968434@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6212 +8058 2025-09-05 18:20:33.665186+00 2025-09-05 18:20:33.665197+00 f t Invitado Amar invitado-1757096432378@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6213 +8059 2025-09-05 18:20:34.286932+00 2025-09-05 18:20:34.286945+00 f t Invitado Amar invitado-1757096433363@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6214 +8060 2025-09-05 18:41:51.937373+00 2025-09-05 18:41:51.937386+00 f t Invitado Amar invitado-1757097710458@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6215 +8061 2025-09-05 18:49:18.487709+00 2025-09-05 18:49:18.487721+00 f t Invitado Amar invitado-1757098158228@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6216 +8062 2025-09-05 18:53:43.450516+00 2025-09-05 18:53:43.450524+00 f t Invitado Amar invitado-1757098422918@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-6217 +8063 2025-09-05 19:04:48.663104+00 2025-09-05 19:04:48.663114+00 f t Invitado Amar invitado-1757099087290@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-6218 +8064 2025-09-05 19:54:59.288894+00 2025-09-05 19:54:59.288902+00 f t gonzalo estevez gnzlestevez@gmail.com 91123175061 \N zelarrayan 983 \N \N MALE 1986-10-16 -34.640087 -58.4298156 20 1753 \N gestevez-2 +8065 2025-09-05 20:04:04.327972+00 2025-09-05 20:04:04.327985+00 f t Invitado Amar invitado-1757102643555@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6219 +8066 2025-09-05 20:22:28.353765+00 2025-09-05 20:22:28.353774+00 f t Invitado Amar invitado-1757103747873@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-6220 +8067 2025-09-05 20:25:33.574459+00 2025-09-05 20:25:33.574469+00 f t Invitado Amar invitado-1757103933211@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6221 +8068 2025-09-05 20:27:36.979208+00 2025-09-05 20:27:36.979221+00 f t Invitado Amar invitado-1757104056630@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6222 +8069 2025-09-05 20:32:55.704846+00 2025-09-05 20:32:55.70486+00 f t Damian de la Rosa deepb@live.com.ar +541138282403 \N Carlos Casares 2021 PB 2 \N \N -34.6992901 -58.3989293 70 \N \N ddelarosa +8070 2025-09-05 20:44:18.246685+00 2025-09-05 20:44:18.246697+00 f t Invitado Amar invitado-1757105057346@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6223 +8071 2025-09-05 21:15:51.393445+00 2025-09-05 21:15:51.393457+00 f t Rita Santamarina rpilsantamarina@hotmail.com 91161813647 \N SARMIENTO 2338 PISO 8 DTO 26 \N FEMALE \N -34.6061874 -58.3998704 18 1754 \N rsantamarina +8072 2025-09-05 21:31:39.491937+00 2025-09-05 21:31:39.491948+00 f t Invitado Amar invitado-1757107898779@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6224 +8073 2025-09-05 22:23:30.406155+00 2025-09-05 22:23:30.406164+00 f t Invitado Amar invitado-1757111007859@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6225 +8074 2025-09-05 23:11:18.501902+00 2025-09-05 23:11:18.501915+00 f t Invitado Amar invitado-1757113877919@example.com 55555555 \N \N \N \N \N 102 \N \N iamar-6226 +8075 2025-09-05 23:23:53.936018+00 2025-09-05 23:23:53.936027+00 f t Invitado Amar invitado-1757114633958@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6227 +8076 2025-09-05 23:25:44.857141+00 2025-09-05 23:25:44.85715+00 f t Invitado Amar invitado-1757114745116@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6228 +8077 2025-09-05 23:27:21.630065+00 2025-09-05 23:27:21.630075+00 f t Invitado Amar invitado-1757114841882@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6229 +8078 2025-09-05 23:27:41.245803+00 2025-09-05 23:27:41.245812+00 f t Invitado Amar invitado-1757114861495@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6230 +8079 2025-09-05 23:29:22.846664+00 2025-09-05 23:29:22.846675+00 f t Invitado Amar invitado-1757114963087@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6231 +8080 2025-09-05 23:42:51.780601+00 2025-09-05 23:42:51.780611+00 f t Invitado Amar invitado-1757115771596@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-6232 +8081 2025-09-06 00:04:21.190879+00 2025-09-06 00:04:21.190892+00 f t Invitado Amar invitado-1757117060085@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6233 +8082 2025-09-06 00:06:14.461525+00 2025-09-06 00:06:14.461534+00 f t Invitado Amar invitado-1757117172276@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6234 +8083 2025-09-06 00:32:22.976716+00 2025-09-06 00:32:22.976725+00 f t Invitado Amar invitado-1757118742360@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6235 +8084 2025-09-06 00:38:34.617119+00 2025-09-06 00:38:34.617128+00 f t Invitado Amar invitado-1757119114637@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6236 +8085 2025-09-06 00:39:42.963258+00 2025-09-06 00:39:42.963268+00 f t Invitado Amar invitado-1757119183210@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6237 +8086 2025-09-06 01:16:44.277417+00 2025-09-06 01:16:44.277427+00 f t Invitado Amar invitado-1757121404126@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6238 +8087 2025-09-06 01:20:24.525115+00 2025-09-06 01:20:24.525127+00 f t Invitado Amar invitado-1757121623126@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-6239 +8088 2025-09-06 01:40:56.684531+00 2025-09-06 01:40:56.68454+00 f t Invitado Amar invitado-1757122857769@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6240 +8089 2025-09-06 03:46:46.772027+00 2025-09-06 03:46:46.772038+00 f t Invitado Amar invitado-1757130406243@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6241 +8090 2025-09-06 03:47:13.39583+00 2025-09-06 03:47:13.39584+00 f t Invitado Amar invitado-1757130433062@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6242 +8091 2025-09-06 03:48:33.912719+00 2025-09-06 03:48:33.912735+00 f t Maura Masson mauramasson@gmail.com +541133272109 \N Esmeralda 1020 Pb 16 \N \N \N \N 112 \N \N mmasson +8092 2025-09-06 04:25:50.996523+00 2025-09-06 04:25:50.996532+00 f t Invitado Amar invitado-1757132750526@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6243 +8093 2025-09-06 06:14:11.622008+00 2025-09-06 06:14:11.622018+00 f t Invitado Amar invitado-1757139250860@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6244 +8094 2025-09-06 07:39:43.528709+00 2025-09-06 07:39:43.528717+00 f t Invitado Amar invitado-1757144383426@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6245 +8095 2025-09-06 13:10:15.520016+00 2025-09-06 13:10:15.520027+00 f t Invitado Amar invitado-1757164215250@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6246 +8096 2025-09-06 13:16:58.299724+00 2025-09-06 13:16:58.299733+00 f t Invitado Amar invitado-1757164617965@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6247 +8097 2025-09-06 13:57:29.568955+00 2025-09-06 13:57:29.568966+00 f t María Emilia Ladronis emiladronis@gmail.com +542323336007 \N Av santa fe 5268 2B \N \N \N -34.5758473 -58.4338918 1 1756 \N mladronis +8098 2025-09-06 14:08:10.041634+00 2025-09-06 14:08:10.041648+00 f t Invitado Amar invitado-1757167689709@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6248 +8099 2025-09-06 14:10:46.900485+00 2025-09-06 14:10:46.900495+00 f t Invitado Amar invitado-1757167846754@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6249 +8100 2025-09-06 14:11:03.688118+00 2025-09-06 14:11:03.68813+00 f t Invitado Amar invitado-1757167863539@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6250 +8101 2025-09-06 14:13:22.307256+00 2025-09-06 14:13:22.307265+00 f t Invitado Amar invitado-1757168002328@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-6251 +8102 2025-09-06 14:18:32.923379+00 2025-09-06 14:18:32.923391+00 f t Gerardo Pose gvsolucioness@gmail.com +541128555631 \N Marcos avellaneda 2944 5 \N \N \N -31.4508964 -60.9451819 70 \N \N gpose +8103 2025-09-06 14:26:54.974798+00 2025-09-06 14:26:54.974808+00 f t Invitado Amar invitado-1757168814368@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6252 +8104 2025-09-06 14:40:06.145439+00 2025-09-06 14:40:06.145448+00 f t Invitado Amar invitado-1757169604685@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6253 +8105 2025-09-06 14:57:58.980632+00 2025-09-06 14:57:58.980642+00 f t Invitado Amar invitado-1757170679333@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-6254 +8106 2025-09-06 15:24:10.780524+00 2025-09-06 15:24:10.780531+00 f t Noelia Fattori noefattori@gmail.com 91164862433 \N Tres arroyos 889 1ero B \N FEMALE 1981-04-21 -34.6051888 -58.453431 26 1755 \N nfattori +8107 2025-09-06 15:32:36.518613+00 2025-09-06 15:32:36.518626+00 f t Invitado Amar invitado-1757172756576@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6255 +8108 2025-09-06 15:42:23.287006+00 2025-09-06 15:42:23.287016+00 f t Invitado Amar invitado-1757173343833@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6256 +8109 2025-09-06 15:55:22.200297+00 2025-09-06 15:55:22.200307+00 f t Ezequiel Marenco ezemarenco94@hotmail.com +5491138130031 \N Quesada 2441 305 \N \N \N -34.5546849 -58.464128 25 \N \N emarenco +8110 2025-09-06 15:56:38.563036+00 2025-09-06 15:56:38.563045+00 f t Invitado Amar invitado-1757174198024@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6257 +8111 2025-09-06 16:17:55.478978+00 2025-09-06 16:17:55.478987+00 f t Invitado Amar invitado-1757175475266@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6258 +8112 2025-09-06 16:31:29.676319+00 2025-09-06 16:31:29.676329+00 f t Invitado Amar invitado-1757176290798@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6259 +8113 2025-09-06 16:34:38.458045+00 2025-09-06 16:34:38.458053+00 f t Valeria Leal valeriavlc.wattpad@gmail.com +541135083292 \N Rivera Indarte 171 Pb a \N \N -34.6309295 -58.4619487 4 \N \N vleal +8114 2025-09-06 16:57:40.225272+00 2025-09-06 16:57:40.225282+00 f t Invitado Amar invitado-1757177860472@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6260 +8115 2025-09-06 17:30:52.03198+00 2025-09-06 17:30:52.031988+00 f t Invitado Amar invitado-1757179850565@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6261 +8116 2025-09-06 17:43:28.400243+00 2025-09-06 17:43:28.400255+00 f t Invitado Amar invitado-1757180606730@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6262 +8117 2025-09-06 18:29:31.533474+00 2025-09-06 18:29:31.533482+00 f t Florencia Ortiz florenciabelen_99@hotmail.com +541135153279 \N Federico bardi 1496 8B \N \N \N -34.5283723 -58.4808952 59 1775 \N fortiz +8118 2025-09-06 18:38:58.167622+00 2025-09-06 18:38:58.167631+00 f t Invitado Amar invitado-1757183937949@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6263 +8119 2025-09-06 19:05:22.548527+00 2025-09-06 19:05:22.548537+00 f t Invitado Amar invitado-1757185522075@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6264 +8120 2025-09-06 19:06:15.517344+00 2025-09-06 19:06:15.517353+00 f t Maria laura Rossi sofipedicone00@gmail.com +541150443638 \N Chubut 1315 \N \N FEMALE \N -40.7384163 -64.9485624 77 1757 \N mrossi +8121 2025-09-06 19:15:16.780363+00 2025-09-06 19:15:16.780376+00 f t Invitado Amar invitado-1757186116444@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6265 +8122 2025-09-06 19:49:04.019247+00 2025-09-06 19:49:04.019266+00 f t Invitado Amar invitado-1757188143560@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6266 +8123 2025-09-06 21:29:41.202764+00 2025-09-06 21:29:41.202778+00 f t Invitado Amar invitado-1757194180178@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6267 +8124 2025-09-06 22:01:41.559961+00 2025-09-06 22:01:41.559971+00 f t Invitado Amar invitado-1757196101420@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-6268 +8125 2025-09-06 22:19:13.257265+00 2025-09-06 22:19:13.257273+00 f t Invitado Amar invitado-1757197152798@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6269 +8126 2025-09-06 22:19:58.162159+00 2025-09-06 22:19:58.162167+00 f t Invitado Amar invitado-1757197197647@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6270 +8127 2025-09-06 22:30:20.561985+00 2025-09-06 22:30:20.561997+00 f t Invitado Amar invitado-1757197820330@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6271 +8128 2025-09-06 22:37:40.877174+00 2025-09-06 22:37:40.877186+00 f t Invitado Amar invitado-1757198260798@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6272 +8129 2025-09-06 22:49:26.15546+00 2025-09-06 22:49:26.15547+00 f t Invitado Amar invitado-1757198966020@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6273 +8130 2025-09-06 23:16:44.447074+00 2025-09-06 23:16:44.447086+00 f t Invitado Amar invitado-1757200603760@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6274 +8131 2025-09-06 23:37:39.295812+00 2025-09-06 23:37:39.295822+00 f t Invitado Amar invitado-1757201857912@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6275 +8132 2025-09-07 00:05:30.339373+00 2025-09-07 00:05:30.339386+00 f t Invitado Amar invitado-1757203529018@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-6276 +8133 2025-09-07 00:11:49.918737+00 2025-09-07 00:11:49.918747+00 f t Invitado Amar invitado-1757203909809@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-6277 +8134 2025-09-07 00:24:20.500797+00 2025-09-07 00:24:20.50081+00 f t Invitado Amar invitado-1757204660303@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6278 +8135 2025-09-07 00:29:19.429712+00 2025-09-07 00:29:19.429722+00 f t Invitado Amar invitado-1757204959472@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6279 +8136 2025-09-07 03:20:39.135795+00 2025-09-07 03:20:39.135804+00 f t Invitado Amar invitado-1757215238362@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6280 +8137 2025-09-07 03:22:58.711545+00 2025-09-07 03:22:58.711554+00 f t Invitado Amar invitado-1757215377407@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6281 +8138 2025-09-07 03:28:15.029422+00 2025-09-07 03:28:15.029432+00 f t Invitado Amar invitado-1757215694108@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-6282 +8139 2025-09-07 04:17:41.371114+00 2025-09-07 04:17:41.371126+00 f t Invitado Amar invitado-1757218660918@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6283 +8140 2025-09-07 04:22:25.3419+00 2025-09-07 04:22:25.341909+00 f t Invitado Amar invitado-1757218944963@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6284 +8141 2025-09-07 04:42:48.63857+00 2025-09-07 04:42:48.638579+00 f t Invitado Amar invitado-1757220168175@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-6285 +8142 2025-09-07 06:15:24.67646+00 2025-09-07 06:15:24.67647+00 f t Invitado Amar invitado-1757225723717@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6286 +8143 2025-09-07 11:00:14.416962+00 2025-09-07 11:00:14.416982+00 f t Sergio García sergiogarciastyle@gmail.com +541161766953 \N Castro Barros 731 9 \N \N \N -34.6204053 -58.4196618 23 1759 \N sgarcia-2 +8144 2025-09-07 12:54:19.709768+00 2025-09-07 12:54:19.709779+00 f t Invitado Amar invitado-1757249659166@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6287 +8145 2025-09-07 13:49:10.40837+00 2025-09-07 13:49:10.408386+00 f t Invitado Amar invitado-1757252950015@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6288 +8146 2025-09-07 13:53:11.342252+00 2025-09-07 13:53:11.342267+00 f t Invitado Amar invitado-1757253191663@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-6289 +8147 2025-09-07 13:58:01.36346+00 2025-09-07 13:58:01.363469+00 f t Invitado Amar invitado-1757253480789@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6290 +8148 2025-09-07 15:14:55.070548+00 2025-09-07 15:14:55.070557+00 f t Invitado Amar invitado-1757258094619@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6291 +8149 2025-09-07 15:32:52.612937+00 2025-09-07 15:32:52.612949+00 f t Invitado Amar invitado-1757259172212@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6292 +8150 2025-09-07 15:46:53.575612+00 2025-09-07 15:46:53.575621+00 f t Invitado Amar invitado-1757260013149@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6293 +8151 2025-09-07 15:52:00.243302+00 2025-09-07 15:52:00.243316+00 f t Invitado Amar invitado-1757260319477@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6294 +8152 2025-09-07 15:52:55.874557+00 2025-09-07 15:52:55.874568+00 f t Invitado Amar invitado-1757260375450@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-6295 +8153 2025-09-07 15:53:42.579188+00 2025-09-07 15:53:42.579201+00 f t Invitado Amar invitado-1757260422346@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-6296 +8154 2025-09-07 17:02:11.83469+00 2025-09-07 17:02:11.834701+00 f t Gabriela Versari gabrielaversari584@gmail.com +541135084017 \N Azopardo 4581 Casa \N \N \N -36.9130936 -60.3168274 79 1758 \N gversari +8155 2025-09-07 17:58:18.931903+00 2025-09-07 17:58:18.931916+00 f t Invitado Amar invitado-1757267897807@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6297 +8156 2025-09-07 18:11:51.191261+00 2025-09-07 18:11:51.191275+00 f t Invitado Amar invitado-1757268710390@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-6298 +8157 2025-09-07 18:18:27.452393+00 2025-09-07 18:18:27.452403+00 f t Invitado Amar invitado-1757269106844@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-6299 +8158 2025-09-07 19:02:44.985374+00 2025-09-07 19:02:44.985383+00 f t Invitado Amar invitado-1757271764391@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6300 +8159 2025-09-07 19:02:55.112404+00 2025-09-07 19:02:55.112414+00 f t Invitado Amar invitado-1757271775444@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-6301 +8160 2025-09-07 19:05:01.782198+00 2025-09-07 19:05:01.782212+00 f t Invitado Amar invitado-1757271902443@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-6302 +8161 2025-09-07 19:20:55.151526+00 2025-09-07 19:20:55.151535+00 f t Luciano Fontanarrosa lucianofontanarrosa@hotmail.com 5491141691372 \N almirante Daniel de solier 1131 1 piso Depto A ( se toca el portero 101 y campanita) \N MALE 1977-08-12 -34.5491241 -58.4509858 25 1760 \N lfontanarrosa +8162 2025-09-07 19:30:38.231579+00 2025-09-07 19:30:38.231591+00 f t Agustin Vilaseca agustinv@gmail.com +5444486373 \N Lafinur 3259 5k \N \N -34.5781234 -58.4127897 1 \N \N avilaseca +8163 2025-09-07 19:50:17.52071+00 2025-09-07 19:50:17.520722+00 f t Invitado Amar invitado-1757274616899@example.com 55555555 \N \N \N \N \N 152 \N \N iamar-6303 +8164 2025-09-07 19:53:23.983979+00 2025-09-07 19:53:23.98399+00 f t Invitado Amar invitado-1757289234315@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6304 +8165 2025-09-07 20:00:04.368845+00 2025-09-07 20:00:04.36886+00 f t Invitado Amar invitado-1757275203849@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6305 +8166 2025-09-07 20:14:58.328558+00 2025-09-07 20:14:58.328566+00 f t Invitado Amar invitado-1757276098692@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6306 +8167 2025-09-07 20:25:58.999258+00 2025-09-07 20:25:58.999267+00 f t Invitado Amar invitado-1757276758743@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6307 +8169 2025-09-07 20:40:13.848942+00 2025-09-07 20:40:13.848951+00 f t Carolina Cella Grois dra.cellagrois@gmail.com 5491176088885 \N Zapiola 1911 piso 7 \N FEMALE 1986-08-25 -34.5676411 -58.4617956 3 1762 \N cgrois +8170 2025-09-07 22:16:05.631778+00 2025-09-07 22:16:05.631792+00 f t Invitado Amar invitado-1757283365253@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6308 +8171 2025-09-07 22:42:56.928093+00 2025-09-07 22:42:56.928101+00 f t Invitado Amar invitado-1757284976563@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6309 +8172 2025-09-07 23:17:47.151724+00 2025-09-07 23:17:47.151733+00 f t Paola Noel Baca noel.baca01@gmail.com +543886858218 \N Medrano 1650 11 F \N \N -34.5901883 -58.4186985 1 \N \N pbaca +8173 2025-09-08 00:41:14.351007+00 2025-09-08 00:41:14.351019+00 f t Invitado Amar invitado-1757292073596@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6310 +8174 2025-09-08 00:51:44.430631+00 2025-09-08 00:51:44.43064+00 f t Invitado Amar invitado-1757292703742@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6311 +8175 2025-09-08 01:25:58.268559+00 2025-09-08 01:25:58.268568+00 f t Invitado Amar invitado-1757294757652@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6312 +8176 2025-09-08 01:37:40.679128+00 2025-09-08 01:37:40.679166+00 f t Invitado Amar invitado-1757295460279@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-6313 +8177 2025-09-08 03:32:23.749537+00 2025-09-08 03:32:23.749551+00 f t Invitado Amar invitado-1757302343271@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-6314 +8178 2025-09-08 04:08:22.549313+00 2025-09-08 04:08:22.549322+00 f t Andrea Landaeta aals150491@hotmail.com +541169214109 \N Ah juan b justo 2350 \N \N -34.8346509 -64.3715514 26 \N \N alandaeta +8179 2025-09-08 07:53:36.987032+00 2025-09-08 07:53:36.987041+00 f t Invitado Amar invitado-1757318016640@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-6315 +8180 2025-09-08 10:23:34.690845+00 2025-09-08 10:23:34.690854+00 f t Invitado Amar invitado-1757327013772@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6316 +8181 2025-09-08 10:33:35.551991+00 2025-09-08 10:33:35.552+00 f t Invitado Amar invitado-1757327615135@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6317 +8182 2025-09-08 10:35:25.282521+00 2025-09-08 10:35:25.28253+00 f t Bertha Chirinos chirinosber@gmail.com +541127549745 \N av rivadavia 7874 4D \N \N -34.630259 -58.4675678 4 \N \N bchirinos +8183 2025-09-08 10:46:45.274919+00 2025-09-08 10:46:45.274928+00 f t Malena Di Francisco malenaanselmo211@gmail.com +543764700875 \N Av Juan Domingo Perón 4303 Barrio Altos de Pacheco, casa 196 \N \N -34.4544975 -58.6220567 22 \N \N mdifrancisco +8184 2025-09-08 11:22:59.183753+00 2025-09-08 11:22:59.183763+00 f t Invitado Amar invitado-1757330578600@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6318 +8185 2025-09-08 11:59:39.91119+00 2025-09-08 11:59:39.9112+00 f t Invitado Amar invitado-1757332778399@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6319 +8186 2025-09-08 12:10:17.988796+00 2025-09-08 12:10:17.98881+00 f t Invitado Amar invitado-1757333418472@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-6320 +8187 2025-09-08 12:20:28.517184+00 2025-09-08 12:20:28.517194+00 f t Invitado Amar invitado-1757334028106@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-6321 +8188 2025-09-08 12:32:16.361628+00 2025-09-08 12:32:16.361638+00 f t Invitado Amar invitado-1757334734429@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-6322 +13541 2025-11-17 20:32:51.708305+00 2025-11-17 20:32:51.708316+00 f t Invitado Amar invitado-1763411570906@example.com 55555555 \N \N \N \N \N 29 \N \N \N +8189 2025-09-08 12:47:44.436755+00 2025-09-08 12:47:44.436766+00 f t Invitado Amar invitado-1757335663977@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6323 +8190 2025-09-08 13:32:56.42646+00 2025-09-08 13:32:56.426471+00 f t Julian Leon julianleonc@gmail.com +541161511704 \N Arenales 843 2/5 \N \N -34.5940277 -58.3793578 37 1766 \N jleon +8191 2025-09-08 14:32:23.65268+00 2025-09-08 14:32:23.65269+00 f t Invitado Amar invitado-1757341943072@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6324 +8192 2025-09-08 14:38:27.77077+00 2025-09-08 14:38:27.770779+00 f t Invitado Amar invitado-1757342307266@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6325 +8193 2025-09-08 14:40:15.65019+00 2025-09-08 14:40:15.650199+00 f t Invitado Amar invitado-1757342415242@example.com 55555555 \N \N \N \N \N 151 \N \N iamar-6326 +8194 2025-09-08 14:42:18.77414+00 2025-09-08 14:42:18.774149+00 f t Invitado Amar invitado-1757342538173@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6327 +8195 2025-09-08 15:01:14.661978+00 2025-09-08 15:01:14.661987+00 f t IRMA RODRIGUEZ irmajr4@hotmail.com +541131591284 \N Castro Barros 748 casa \N \N -34.7112467 -58.4042631 70 \N \N irodriguez +8196 2025-09-08 15:07:18.197776+00 2025-09-08 15:07:18.197785+00 f t Invitado Amar invitado-1757344037572@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-6328 +8197 2025-09-08 15:20:08.281672+00 2025-09-08 15:20:08.281685+00 f t Invitado Amar invitado-1757344807038@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6329 +8198 2025-09-08 15:36:59.672213+00 2025-09-08 15:36:59.672222+00 f t Invitado Amar invitado-1757345819980@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-6330 +8199 2025-09-08 15:44:47.679786+00 2025-09-08 15:44:47.679795+00 f t Cristina Sala cristina.scrist@hotmail.com 5491158453141 \N 11 de septiembre 5877 1P , Entré Reconquista y Maipú, Villa Ballester \N FEMALE \N -37.9786491 -57.5764888 79 1765 \N csala +8200 2025-09-08 15:54:25.56396+00 2025-09-08 15:54:25.56397+00 f t Invitado Amar invitado-1757346864959@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6331 +8201 2025-09-08 16:18:13.585036+00 2025-09-08 16:18:13.585046+00 f t Invitado Amar invitado-1757348295446@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6332 +8202 2025-09-08 16:45:22.103454+00 2025-09-08 16:45:22.103463+00 f t Invitado Amar invitado-1757349921600@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6333 +8203 2025-09-08 16:52:42.849611+00 2025-09-08 16:52:42.849617+00 f t Susana Menelle ssmenelle@gmail.com 5491169189960 \N Palestina 586 \N \N \N \N -34.6045575 -58.4259943 23 1768 \N smenelle +8204 2025-09-08 16:57:52.21748+00 2025-09-08 16:57:52.217489+00 f t Invitado Amar invitado-1757350671761@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6334 +8205 2025-09-08 16:58:42.440146+00 2025-09-08 16:58:42.440155+00 f t Invitado Amar invitado-1757350722175@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6335 +8206 2025-09-08 17:00:57.414388+00 2025-09-08 17:00:57.414397+00 f t Invitado Amar invitado-1757350856798@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6336 +8207 2025-09-08 17:02:01.013138+00 2025-09-08 17:02:01.013152+00 f t Invitado Amar invitado-1757350920668@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6337 +8208 2025-09-08 17:02:40.974127+00 2025-09-08 17:02:40.974138+00 f t Invitado Amar invitado-1757350960686@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6338 +8209 2025-09-08 17:14:34.425612+00 2025-09-08 17:14:34.425621+00 f t Invitado Amar invitado-1757351675674@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6339 +8210 2025-09-08 17:36:00.806923+00 2025-09-08 17:36:00.806937+00 f t Carla Battista carlabattista@yahoo.com.ar +541158266598 \N Charcas 3371 6 A \N \N \N -34.5906111 -58.4135791 1 1770 \N cbattista +8211 2025-09-08 17:55:00.173143+00 2025-09-08 17:55:00.173153+00 f t Invitado Amar invitado-1757354100532@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6340 +8212 2025-09-08 18:08:24.261704+00 2025-09-08 18:08:24.261717+00 f t Invitado Amar invitado-1757354903854@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-6341 +8213 2025-09-08 18:48:22.855343+00 2025-09-08 18:48:22.856197+00 f t Invitado Amar invitado-1757357301986@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-6342 +8214 2025-09-08 18:50:22.042014+00 2025-09-08 18:50:22.042053+00 f t Invitado Amar invitado-1757357421365@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-6343 +8215 2025-09-08 18:52:41.077183+00 2025-09-08 18:52:41.077576+00 f t Invitado Amar invitado-1757357560438@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6344 +8216 2025-09-08 18:55:14.470157+00 2025-09-08 18:55:14.470878+00 f t Invitado Amar invitado-1757357714750@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-6345 +8217 2025-09-08 18:58:08.725659+00 2025-09-08 18:58:08.725672+00 f t Invitado Amar invitado-1757357888222@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-6346 +8218 2025-09-08 19:22:45.926971+00 2025-09-08 19:22:45.927424+00 f t Nadia hadie Abbou nabboud08@gmail.com +541130412546 \N Juramento 3092 18d \N FEMALE \N -34.5659055 -58.4631092 3 1769 \N nabbou +8219 2025-09-08 19:36:36.90062+00 2025-09-08 19:36:36.900629+00 f t Invitado Amar invitado-1757360196080@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6347 +8220 2025-09-08 19:47:19.820348+00 2025-09-08 19:47:19.820356+00 f t Invitado Amar invitado-1757360839396@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-6348 +8221 2025-09-08 19:48:46.949819+00 2025-09-08 19:48:46.949829+00 f t Invitado Amar invitado-1757360926536@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6349 +8222 2025-09-08 19:51:35.763626+00 2025-09-08 19:51:35.763635+00 f t Invitado Amar invitado-1757361093873@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-6350 +8223 2025-09-08 19:54:25.658138+00 2025-09-08 19:54:25.65815+00 f t Invitado Amar invitado-1757361265622@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6351 +8224 2025-09-08 19:55:50.30248+00 2025-09-08 19:55:50.302489+00 f t Maria Laura Saltari saltari.ml@gmail.com +541157697073 \N San benito de palermo 1555 1a \N \N -34.5671459 -58.4319995 1 \N \N msaltari +8225 2025-09-08 20:02:31.777676+00 2025-09-08 20:02:31.777685+00 f t Invitado Amar invitado-1757361750494@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-6352 +8226 2025-09-08 20:14:39.798462+00 2025-09-08 20:14:39.798473+00 f t Invitado Amar invitado-1757362478835@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6353 +8227 2025-09-08 20:20:40.146167+00 2025-09-08 20:20:40.146176+00 f t Invitado Amar invitado-1757362839375@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6354 +8228 2025-09-08 20:42:07.071457+00 2025-09-08 20:42:07.071467+00 f t Fortuna Fita fortunafita@gmail.com +541140573700 \N Jerónimo salguero 3132 901 \N \N -34.5760209 -58.4045336 1 \N \N ffita +8229 2025-09-08 21:07:24.621235+00 2025-09-08 21:07:24.621243+00 f t Invitado Amar invitado-1757365644346@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6355 +8230 2025-09-08 21:12:15.526818+00 2025-09-08 21:12:15.526826+00 f t Invitado Amar invitado-1757365932835@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6356 +8231 2025-09-08 21:31:29.130411+00 2025-09-08 21:31:29.130425+00 f t Invitado Amar invitado-1757367088582@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6357 +8232 2025-09-08 22:21:57.461474+00 2025-09-08 22:21:57.461484+00 f t Invitado Amar invitado-1757370118293@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-6358 +8233 2025-09-08 23:06:57.358471+00 2025-09-08 23:06:57.358479+00 f t Invitado Amar invitado-1757372816976@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-6359 +8234 2025-09-08 23:20:51.489746+00 2025-09-08 23:20:51.489755+00 f t Invitado Amar invitado-1757373650806@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-6360 +8235 2025-09-08 23:31:04.56439+00 2025-09-08 23:31:04.564403+00 f t Invitado Amar invitado-1757374263896@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-6361 +8236 2025-09-08 23:32:19.470924+00 2025-09-08 23:32:19.470936+00 f t Invitado Amar invitado-1757374338157@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-6362 +8237 2025-09-08 23:37:35.764043+00 2025-09-08 23:37:35.764052+00 f t Sebastian De Marco sebastiandemarcoit@yahoo.com.ar +541123900783 \N Malvinas Argentinas 390 3 A \N MALE \N -34.6289278 -58.4498547 14 1772 \N sdemarco +8238 2025-09-08 23:41:20.909148+00 2025-09-08 23:41:20.909161+00 f t Invitado Amar invitado-1757374880377@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6363 +8239 2025-09-08 23:50:34.2834+00 2025-09-08 23:50:34.28341+00 f t Invitado Amar invitado-1757375433888@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-6364 +8240 2025-09-09 00:20:02.830223+00 2025-09-09 00:20:02.830239+00 f t Invitado Amar invitado-1757377202010@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-6365 +8241 2025-09-09 00:21:59.265068+00 2025-09-09 00:21:59.265078+00 f t Invitado Amar invitado-1757377318250@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-6366 +8242 2025-09-09 00:23:55.625168+00 2025-09-09 00:23:55.625177+00 f t Invitado Amar invitado-1757377435075@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-6367 +8243 2025-09-09 00:26:43.44254+00 2025-09-09 00:26:43.442548+00 f t Invitado Amar invitado-1757377602898@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-6368 +8244 2025-09-09 00:29:18.63039+00 2025-09-09 00:29:18.6304+00 f t Invitado Amar invitado-1757377758089@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-6369 +8245 2025-09-09 00:38:38.370181+00 2025-09-09 00:38:38.370194+00 f t Invitado Amar invitado-1757378317960@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6370 +8246 2025-09-09 00:48:05.629832+00 2025-09-09 00:48:05.629841+00 f t Invitado Amar invitado-1757378885063@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6371 +8247 2025-09-09 00:58:14.408479+00 2025-09-09 00:58:14.408488+00 f t Invitado Amar invitado-1757379494459@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6372 +8248 2025-09-09 01:03:24.294471+00 2025-09-09 01:03:24.29448+00 f t Melisa Socolobsky melisasocolobsky@gmail.com +541164996489 \N Avenida Olazabal 4579 2D \N \N -34.5731933 -58.4804277 29 \N \N msocolobsky +8249 2025-09-09 01:03:57.092647+00 2025-09-09 01:03:57.092657+00 f t Invitado Amar invitado-1757379836672@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6373 +8250 2025-09-09 01:06:02.873072+00 2025-09-09 01:06:02.873122+00 f t Ana Victoria Falcon Rocco victoriafalconrocco@gmail.com +541137970134 \N Roseti 1572 \N \N -34.5818188 -58.464304 24 \N \N afalconrocco +8251 2025-09-09 01:20:13.593701+00 2025-09-09 01:20:13.593711+00 f t Invitado Amar invitado-1757380814005@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-6374 +8252 2025-09-09 01:46:23.563158+00 2025-09-09 01:46:23.563171+00 f t Invitado Amar invitado-1757382383123@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6375 +8253 2025-09-09 01:58:23.641809+00 2025-09-09 01:58:23.641817+00 f t Invitado Amar invitado-1757383102882@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6376 +8254 2025-09-09 02:18:33.759207+00 2025-09-09 02:18:33.759219+00 f t Invitado Amar invitado-1757384313490@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-6377 +8255 2025-09-09 02:28:36.330039+00 2025-09-09 02:28:36.330054+00 f t Invitado Amar invitado-1757384915279@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6378 +8256 2025-09-09 02:34:50.331611+00 2025-09-09 02:34:50.331623+00 f t Ali Mota alimi0211@gmail.com +541132905889 \N Cordoba 1554 5d \N \N -32.6518574 -62.288297 13 \N \N amota-2 +8257 2025-09-09 02:36:12.174208+00 2025-09-09 02:36:12.174219+00 f t Invitado Amar invitado-1757385369809@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-6379 +8258 2025-09-09 02:46:53.32836+00 2025-09-09 02:46:53.328373+00 f t Invitado Amar invitado-1757386011452@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-6380 +8259 2025-09-09 02:47:24.554133+00 2025-09-09 02:47:24.554141+00 f t Invitado Amar invitado-1757386042675@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-6381 +8260 2025-09-09 03:08:17.040461+00 2025-09-09 03:08:17.040471+00 f t Invitado Amar invitado-1757387296558@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6382 +8261 2025-09-09 03:13:20.39416+00 2025-09-09 03:13:20.394169+00 f t Invitado Amar invitado-1757387600041@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6383 +8262 2025-09-09 03:14:33.308519+00 2025-09-09 03:14:33.308529+00 f t Invitado Amar invitado-1757387673165@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6384 +8263 2025-09-09 03:15:12.030898+00 2025-09-09 03:15:12.030908+00 f t Invitado Amar invitado-1757387711873@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6385 +8264 2025-09-09 03:18:24.637019+00 2025-09-09 03:18:24.637028+00 f t Invitado Amar invitado-1757387903922@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6386 +8265 2025-09-09 03:23:02.53032+00 2025-09-09 03:23:02.530329+00 f t Invitado Amar invitado-1757388182154@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6387 +8266 2025-09-09 03:26:56.521498+00 2025-09-09 03:26:56.521507+00 f t Invitado Amar invitado-1757388415076@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6388 +8267 2025-09-09 03:29:24.90689+00 2025-09-09 03:29:24.906899+00 f t Invitado Amar invitado-1757388564474@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6389 +8268 2025-09-09 03:29:25.371095+00 2025-09-09 03:29:25.371104+00 f t Invitado Amar invitado-1757388564356@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6390 +8269 2025-09-09 03:31:59.558002+00 2025-09-09 03:31:59.558011+00 f t Invitado Amar invitado-1757388719256@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6391 +8270 2025-09-09 05:00:50.215816+00 2025-09-09 05:00:50.215829+00 f t Invitado Amar invitado-1757394049918@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-6392 +8271 2025-09-09 05:17:17.506786+00 2025-09-09 05:17:17.506796+00 f t Invitado Amar invitado-1757395037097@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6393 +8272 2025-09-09 07:05:07.79711+00 2025-09-09 07:05:07.797122+00 f t Invitado Amar invitado-1757401507262@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6394 +8273 2025-09-09 09:25:58.583061+00 2025-09-09 09:25:58.58307+00 f t Invitado Amar invitado-1757409958117@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-6395 +8274 2025-09-09 09:53:11.418784+00 2025-09-09 09:53:11.418793+00 f t Invitado Amar invitado-1757411590912@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6396 +8275 2025-09-09 09:58:22.18364+00 2025-09-09 09:58:22.18365+00 f t Carla Marina Contreras carlamarinac@hotmail.com +5491156438954 \N Hipólito Irigoyen 910 2 F \N FEMALE \N -32.7789527 -60.7913486 49 1773 \N ccontreras +8276 2025-09-09 11:19:22.697119+00 2025-09-09 11:19:22.697135+00 f t andrea dominguez andi15dominguez@gmail.com +541161683067 \N amenabar 600 piso 4 depto 7 \N \N -29.1423293 -59.654647 38 \N \N adominguez +8277 2025-09-09 11:20:38.329122+00 2025-09-09 11:20:38.329132+00 f t Invitado Amar invitado-1757416837968@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6397 +8278 2025-09-09 12:36:22.166004+00 2025-09-09 12:36:22.166014+00 f t sabrina arruñada sabrinaarru@gmail.com +541158627468 \N valdenegro 4929 \N \N \N \N -34.5502309 -58.4982267 31 \N \N sarrunada +8279 2025-09-09 12:58:30.325688+00 2025-09-09 12:58:30.325698+00 f t Invitado Amar invitado-1757422707974@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-6398 +8280 2025-09-09 13:05:57.440399+00 2025-09-09 13:05:57.440412+00 f t Invitado Amar invitado-1757423156926@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-6399 +8281 2025-09-09 13:10:07.470398+00 2025-09-09 13:10:07.470411+00 f t Invitado Amar invitado-1757423406663@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6400 +8282 2025-09-09 13:11:55.709443+00 2025-09-09 13:11:55.709454+00 f t Invitado Amar invitado-1757423516769@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6401 +8283 2025-09-09 13:48:09.634645+00 2025-09-09 13:48:09.634655+00 f t Invitado Amar invitado-1757425688797@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6402 +8284 2025-09-09 13:49:42.739279+00 2025-09-09 13:49:42.739289+00 f t Invitado Amar invitado-1757425780693@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6403 +8285 2025-09-09 14:12:41.053262+00 2025-09-09 14:12:41.053273+00 f t Invitado Amar invitado-1757427160653@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-6404 +8286 2025-09-09 14:24:15.369129+00 2025-09-09 14:24:15.369141+00 f t Invitado Amar invitado-1757427854147@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-6405 +8287 2025-09-09 14:25:28.030487+00 2025-09-09 14:25:28.030499+00 f t Nicolás Brañeiro menchisabrina@gmail.com +541153698854 \N Cacheuta 973 Casa \N MALE \N -34.6255603 -58.4899193 16 1780 \N nbraneiro +8288 2025-09-09 14:27:24.36182+00 2025-09-09 14:27:24.361829+00 f t Invitado Amar invitado-1757428043772@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-6406 +8289 2025-09-09 14:43:54.700164+00 2025-09-09 14:43:54.700174+00 f t Invitado Amar invitado-1757429035968@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6407 +8290 2025-09-09 14:51:35.235501+00 2025-09-09 14:51:35.235511+00 f t Invitado Amar invitado-1757429493970@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6408 +8291 2025-09-09 15:15:37.735356+00 2025-09-09 15:15:37.73537+00 f t Invitado Amar invitado-1757430937858@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-6409 +8292 2025-09-09 15:37:07.673218+00 2025-09-09 15:37:07.673229+00 f t Invitado Amar invitado-1757432227514@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6410 +8293 2025-09-09 15:39:13.920151+00 2025-09-09 15:39:13.92016+00 f t Invitado Amar invitado-1757432344052@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-6411 +8294 2025-09-09 16:10:35.761598+00 2025-09-09 16:10:35.761611+00 f t Invitado Amar invitado-1757434235261@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6412 +8295 2025-09-09 16:32:47.517602+00 2025-09-09 16:32:47.517612+00 f t Invitado Amar invitado-1757435566933@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-6413 +8296 2025-09-09 16:43:07.847757+00 2025-09-09 16:43:07.847767+00 f t Invitado Amar invitado-1757436187293@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6414 +8297 2025-09-09 17:03:44.473985+00 2025-09-09 17:03:44.473994+00 f t Invitado Amar invitado-1757437423907@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6415 +8298 2025-09-09 17:06:58.039745+00 2025-09-09 17:06:58.039753+00 f t Invitado Amar invitado-1757437616238@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6416 +8299 2025-09-09 17:39:00.777087+00 2025-09-09 17:39:00.777095+00 f t Invitado Amar invitado-1757439540360@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6417 +8300 2025-09-09 17:41:07.775395+00 2025-09-09 17:41:07.775404+00 f t Invitado Amar invitado-1757439667276@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6418 +8301 2025-09-09 18:18:04.944106+00 2025-09-09 18:18:04.944119+00 f t Invitado Amar invitado-1757441883523@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6419 +8302 2025-09-09 18:25:01.410862+00 2025-09-09 18:25:01.410876+00 f t Pedro Baldeon baldeonpedro122@gmail.com +541167667556 \N Salguero 1417 1417 Pb 1 ( no anda timbre) llamarme \N MALE \N -34.5937884 -58.4181408 1 1795 \N pbaldeon +8303 2025-09-09 18:29:42.075379+00 2025-09-09 18:29:42.075393+00 f t Invitado Amar invitado-1757442581832@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6420 +8304 2025-09-09 18:31:36.168367+00 2025-09-09 18:31:36.168376+00 f t Invitado Amar invitado-1757442695657@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6421 +8305 2025-09-09 18:40:26.719744+00 2025-09-09 18:40:26.719753+00 f t Invitado Amar invitado-1757443226471@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-6422 +8306 2025-09-09 18:52:47.654958+00 2025-09-09 18:52:47.654967+00 f t Invitado Amar invitado-1757443967117@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6423 +8307 2025-09-09 19:00:31.226364+00 2025-09-09 19:00:31.226376+00 f t Invitado Amar invitado-1757444431110@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6424 +8308 2025-09-09 19:04:22.973916+00 2025-09-09 19:04:22.973929+00 f t Invitado Amar invitado-1757444662244@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-6425 +8309 2025-09-09 19:08:10.997773+00 2025-09-09 19:08:10.997783+00 f t Leonardo maffullo maffulloleonardo@gmail.com 5491161708420 \N Zuloaga 488 \N \N \N \N -34.7159825 -58.4011454 70 1776 \N lmaffullo +8310 2025-09-09 19:17:55.748039+00 2025-09-09 19:17:55.748048+00 f t federico ojeda johanadeniseojeda@gmail.com 91132314862 \N Juan b justo 5957 es un ph \N MALE \N 40.947016 -4.1159626 4 1777 \N fojeda +8311 2025-09-09 19:21:16.974796+00 2025-09-09 19:21:16.974805+00 f t Invitado Amar invitado-1757445675990@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-6426 +8312 2025-09-09 19:42:31.063469+00 2025-09-09 19:42:31.063479+00 f t Invitado Amar invitado-1757446950564@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6427 +8313 2025-09-09 19:54:47.366886+00 2025-09-09 19:54:47.366896+00 f t Invitado Amar invitado-1757447687062@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6428 +8314 2025-09-09 19:54:51.813257+00 2025-09-09 19:54:51.813271+00 f t Invitado Amar invitado-1757447691542@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-6429 +8315 2025-09-09 20:02:36.197354+00 2025-09-09 20:02:36.197363+00 f t Invitado Amar invitado-1757448156626@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-6430 +8316 2025-09-09 20:52:15.131629+00 2025-09-09 20:52:15.131641+00 f t Invitado Amar invitado-1757451134750@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6431 +8317 2025-09-09 21:30:28.936635+00 2025-09-09 21:30:28.93665+00 f t Invitado Amar invitado-1757453428842@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-6432 +8318 2025-09-09 21:33:30.830184+00 2025-09-09 21:33:30.830193+00 f t Invitado Amar invitado-1757453612400@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-6433 +8319 2025-09-09 21:35:02.841879+00 2025-09-09 21:35:02.841893+00 f t Invitado Amar invitado-1757453702436@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6434 +8320 2025-09-09 22:07:52.65357+00 2025-09-09 22:07:52.653578+00 f t Invitado Amar invitado-1757455672051@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6435 +8321 2025-09-09 22:49:24.502728+00 2025-09-09 22:49:24.502739+00 f t Invitado Amar invitado-1757458163876@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6436 +8322 2025-09-09 23:21:43.569101+00 2025-09-09 23:21:43.569111+00 f t Invitado Amar invitado-1757460102990@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6437 +8323 2025-09-09 23:36:08.346318+00 2025-09-09 23:36:08.346327+00 f t Invitado Amar invitado-1757460967654@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6438 +8324 2025-09-09 23:50:34.512533+00 2025-09-09 23:50:34.512542+00 f t Invitado Amar invitado-1757461833784@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6439 +8325 2025-09-10 00:01:43.068062+00 2025-09-10 00:01:43.068077+00 f t Invitado Amar invitado-1757462503172@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6440 +8326 2025-09-10 00:16:34.55916+00 2025-09-10 00:16:34.559173+00 f t Invitado Amar invitado-1757463396795@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-6441 +8327 2025-09-10 00:41:17.671198+00 2025-09-10 00:41:17.671208+00 f t Invitado Amar invitado-1757464877282@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6442 +8328 2025-09-10 00:57:52.345823+00 2025-09-10 00:57:52.345832+00 f t Invitado Amar invitado-1757465872346@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6443 +8329 2025-09-10 01:19:23.4911+00 2025-09-10 01:19:23.491108+00 f t Invitado Amar invitado-1757467162883@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6444 +8330 2025-09-10 01:23:30.736069+00 2025-09-10 01:23:30.736081+00 f t Invitado Amar invitado-1757467410316@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6445 +8331 2025-09-10 01:26:15.190207+00 2025-09-10 01:26:15.190217+00 f t Invitado Amar invitado-1757467575012@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6446 +8332 2025-09-10 01:35:46.797378+00 2025-09-10 01:35:46.797388+00 f t Invitado Amar invitado-1757468145977@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-6447 +8333 2025-09-10 01:42:14.900731+00 2025-09-10 01:42:14.900742+00 f t Invitado Amar invitado-1757468534269@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6448 +8334 2025-09-10 02:37:59.113848+00 2025-09-10 02:37:59.113857+00 f t Invitado Amar invitado-1757471879267@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6449 +8335 2025-09-10 06:08:37.297226+00 2025-09-10 06:08:37.297237+00 f t Invitado Amar invitado-1757484516356@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-6450 +8336 2025-09-10 06:23:08.123419+00 2025-09-10 06:23:08.123429+00 f t Invitado Amar invitado-1757485387936@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-6451 +8337 2025-09-10 07:33:50.227838+00 2025-09-10 07:33:50.227851+00 f t Invitado Amar invitado-1757489629893@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6452 +8339 2025-09-10 08:53:19.389388+00 2025-09-10 08:53:19.389401+00 f t Invitado Amar invitado-1757494399070@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6453 +8340 2025-09-10 11:25:20.05283+00 2025-09-10 11:25:20.052839+00 f t Invitado Amar invitado-1757503519057@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-6454 +8341 2025-09-10 11:35:55.014358+00 2025-09-10 11:35:55.014368+00 f t Invitado Amar invitado-1757504153833@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6455 +8342 2025-09-10 11:52:51.426446+00 2025-09-10 11:52:51.426454+00 f t Invitado Amar invitado-1757505170714@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-6456 +8343 2025-09-10 11:53:40.478703+00 2025-09-10 11:53:40.478713+00 f t Invitado Amar invitado-1757505221375@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-6457 +8344 2025-09-10 11:53:50.334928+00 2025-09-10 11:53:50.334937+00 f t Invitado Amar invitado-1757505229851@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-6458 +8345 2025-09-10 12:19:59.359659+00 2025-09-10 12:19:59.359672+00 f t Invitado Amar invitado-1757506798790@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-6459 +8346 2025-09-10 12:30:25.087186+00 2025-09-10 12:30:25.087197+00 f t Invitado Amar invitado-1757507424755@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-6460 +8347 2025-09-10 12:52:37.978004+00 2025-09-10 12:52:37.978015+00 f t Invitado Amar invitado-1757508756920@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-6461 +8348 2025-09-10 13:17:54.549597+00 2025-09-10 13:17:54.549607+00 f t Invitado Amar invitado-1757510271552@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6462 +8349 2025-09-10 13:18:39.324862+00 2025-09-10 13:18:39.324871+00 f t Invitado Amar invitado-1757510318839@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6463 +8350 2025-09-10 13:58:21.782557+00 2025-09-10 13:58:21.782566+00 f t Invitado Amar invitado-1757512727721@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6464 +8351 2025-09-10 14:31:00.279293+00 2025-09-10 14:31:00.279303+00 f t Invitado Amar invitado-1757514610511@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-6465 +8352 2025-09-10 14:52:40.025276+00 2025-09-10 14:52:40.025286+00 f t Invitado Amar invitado-1757515956195@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-6466 +8353 2025-09-10 15:18:05.290388+00 2025-09-10 15:18:05.290398+00 f t marcelo de sande marcelodesande59@gmail.com 91124856653 \N Del temple 2683 2do A \N MALE \N -34.5842306 -58.4773828 61 1779 \N mdesande +8354 2025-09-10 15:22:35.22363+00 2025-09-10 15:22:35.223645+00 f t Invitado Amar invitado-1757517754574@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6467 +8355 2025-09-10 15:27:44.451882+00 2025-09-10 15:27:44.451894+00 f t Invitado Amar invitado-1757518063886@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-6468 +8356 2025-09-10 15:30:14.737715+00 2025-09-10 15:30:14.737725+00 f t Invitado Amar invitado-1757518215400@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-6469 +8357 2025-09-10 15:30:31.271119+00 2025-09-10 15:30:31.271128+00 f t Invitado Amar invitado-1757518230037@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-6470 +8358 2025-09-10 15:32:13.865205+00 2025-09-10 15:32:13.865213+00 f t Invitado Amar invitado-1757518332957@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-6471 +8359 2025-09-10 16:06:50.944013+00 2025-09-10 16:06:50.944024+00 f t Invitado Amar invitado-1757520409024@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6472 +8360 2025-09-10 16:24:40.070133+00 2025-09-10 16:24:40.070145+00 f t Invitado Amar invitado-1757521478991@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6473 +8361 2025-09-10 16:39:03.39416+00 2025-09-10 16:39:03.394175+00 f t Invitado Amar invitado-1757522342244@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6474 +8362 2025-09-10 16:39:09.329725+00 2025-09-10 16:39:09.329734+00 f t Invitado Amar invitado-1757522348713@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-6475 +8363 2025-09-10 16:42:23.099636+00 2025-09-10 16:42:23.099646+00 f t Invitado Amar invitado-1757522542166@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6476 +8364 2025-09-10 16:45:48.292688+00 2025-09-10 16:45:48.292697+00 f t Invitado Amar invitado-1757522746296@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-6477 +8365 2025-09-10 17:07:30.745223+00 2025-09-10 17:07:30.745232+00 f t Invitado Amar invitado-1757524049757@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6478 +8366 2025-09-10 17:08:44.382483+00 2025-09-10 17:08:44.382495+00 f t Invitado Amar invitado-1757524123781@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6479 +8367 2025-09-10 17:22:24.514239+00 2025-09-10 17:22:24.514248+00 f t Invitado Amar invitado-1757524943820@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-6480 +8369 2025-09-10 17:40:51.979785+00 2025-09-10 17:40:51.979797+00 f t Invitado Amar invitado-1757526050122@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6481 +8370 2025-09-10 18:00:35.355508+00 2025-09-10 18:00:35.35552+00 f t Invitado Amar invitado-1757527233658@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-6482 +8371 2025-09-10 18:04:16.196649+00 2025-09-10 18:04:16.196657+00 f t Invitado Amar invitado-1757527455008@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-6483 +8372 2025-09-10 18:07:26.336304+00 2025-09-10 18:07:26.336313+00 f t Invitado Amar invitado-1757527645089@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-6484 +8373 2025-09-10 18:34:05.501404+00 2025-09-10 18:34:05.501413+00 f t Invitado Amar invitado-1757529245209@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6485 +8374 2025-09-10 19:04:39.851927+00 2025-09-10 19:04:39.851936+00 f t Invitado Amar invitado-1757531079239@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6486 +8375 2025-09-10 19:06:48.653373+00 2025-09-10 19:06:48.653382+00 f t Invitado Amar invitado-1757531208354@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-6487 +8376 2025-09-10 19:16:52.225174+00 2025-09-10 19:16:52.225183+00 f t Invitado Amar invitado-1757531811794@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-6488 +8377 2025-09-10 19:19:32.839932+00 2025-09-10 19:19:32.839942+00 f t Invitado Amar invitado-1757531973026@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6489 +8378 2025-09-10 19:29:08.093278+00 2025-09-10 19:29:08.093285+00 f t Alejandro Pourtale apourtale@yahoo.com 5491153432173 \N Arribeños 1599 18 A \N MALE \N -34.5629619 -58.4460244 3 1828 \N apourtale +8379 2025-09-10 19:34:35.48841+00 2025-09-10 19:34:35.48842+00 f t Invitado Amar invitado-1757532874895@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-6490 +8380 2025-09-10 19:36:31.49621+00 2025-09-10 19:36:31.496221+00 f t Invitado Amar invitado-1757532990719@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6491 +8381 2025-09-10 19:36:53.818696+00 2025-09-10 19:36:53.818704+00 f t Invitado Amar invitado-1757533013622@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-6492 +8382 2025-09-10 19:37:08.150571+00 2025-09-10 19:37:08.150584+00 f t Invitado Amar invitado-1757533027509@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6493 +8383 2025-09-10 19:38:36.996238+00 2025-09-10 19:38:36.996246+00 f t Invitado Amar invitado-1757533116832@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6494 +8384 2025-09-10 19:38:53.205713+00 2025-09-10 19:38:53.205722+00 f t Invitado Amar invitado-1757533133081@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-6495 +8385 2025-09-10 19:47:07.02745+00 2025-09-10 19:47:07.02746+00 f t Paula Alvarez paula.alpog@gmail.com 1151326889 \N Franklin Delano Roosevelt 1941 9 C \N FEMALE \N -34.5548393 -58.4565741 3 1801 \N palvarez +8386 2025-09-10 19:48:20.828813+00 2025-09-10 19:48:20.828823+00 f t Invitado Amar invitado-1757533700187@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6496 +8387 2025-09-10 19:53:11.069068+00 2025-09-10 19:53:11.069077+00 f t Invitado Amar invitado-1757533990243@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6497 +8388 2025-09-10 19:57:15.82263+00 2025-09-10 19:57:15.822638+00 f t Invitado Amar invitado-1757534235574@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6498 +8389 2025-09-10 20:00:21.815522+00 2025-09-10 20:00:21.815535+00 f t Invitado Amar invitado-1757534421509@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6499 +8390 2025-09-10 20:04:28.679234+00 2025-09-10 20:04:28.679244+00 f t María José Pagoto mjpagoto@gmail.com +541169552601 \N Agrelo 3359 6 \N \N \N -34.6184613 -58.4164763 11 1789 \N mpagoto +8391 2025-09-10 20:13:45.107499+00 2025-09-10 20:13:45.107507+00 f t Invitado Amar invitado-1757535224700@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6500 +8392 2025-09-10 20:14:27.507895+00 2025-09-10 20:14:27.507908+00 f t Invitado Amar invitado-1757535266684@example.com 55555555 \N \N \N \N \N 57 \N \N iamar-6501 +8393 2025-09-10 20:16:34.42645+00 2025-09-10 20:16:34.426458+00 f t Invitado Amar invitado-1757535394025@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6502 +8394 2025-09-10 20:22:49.098163+00 2025-09-10 20:22:49.098172+00 f t Nohelia Seda noheliaseda77@gmail.com 5491164708446 \N Cuba 1747 porteria \N FEMALE \N -34.5641697 -58.4518359 3 1784 \N nseda +8395 2025-09-10 21:00:35.811207+00 2025-09-10 21:00:35.81122+00 f t Invitado Amar invitado-1757538035348@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6503 +8396 2025-09-10 21:05:06.203494+00 2025-09-10 21:05:06.203504+00 f t Fabiana Jose fabiana.josse@gmail.com 5491168327379 \N Yerbal 2932 4 C \N FEMALE \N -34.6312257 -58.4767565 16 1786 \N fjose +8398 2025-09-10 21:25:33.698644+00 2025-09-10 21:25:33.698653+00 f t Invitado Amar invitado-1757539533338@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6504 +8399 2025-09-10 21:25:58.545611+00 2025-09-10 21:25:58.54562+00 f t Invitado Amar invitado-1757539558196@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-6505 +8400 2025-09-10 21:29:23.663746+00 2025-09-10 21:29:23.663755+00 f t Karina Medina kariirosamedi@gmail.com +541135103566 \N Avenida Independencia 1552 Departamento 9 piso 1 \N \N \N -34.6180364 -58.3882412 60 1788 \N kmedina +8401 2025-09-10 21:59:35.215061+00 2025-09-10 21:59:35.21507+00 f t Invitado Amar invitado-1757541574360@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6506 +8402 2025-09-10 22:21:44.686579+00 2025-09-10 22:21:44.686591+00 f t Invitado Amar invitado-1757542904162@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6507 +8403 2025-09-10 22:40:33.745817+00 2025-09-10 22:40:33.745826+00 f t Invitado Amar invitado-1757544034019@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6508 +8404 2025-09-10 22:43:24.595683+00 2025-09-10 22:43:24.595692+00 f t Invitado Amar invitado-1757544204142@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6509 +8405 2025-09-10 23:06:23.123536+00 2025-09-10 23:06:23.123545+00 f t Invitado Amar invitado-1757545431273@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6510 +8406 2025-09-10 23:43:04.302677+00 2025-09-10 23:43:04.30319+00 f t Invitado Amar invitado-1757547783764@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6511 +8407 2025-09-11 00:39:15.293267+00 2025-09-11 00:39:15.293276+00 f t Invitado Amar invitado-1757551154618@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-6512 +8408 2025-09-11 00:43:21.169832+00 2025-09-11 00:43:21.169841+00 f t Invitado Amar invitado-1757551399449@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-6513 +8409 2025-09-11 00:48:48.843503+00 2025-09-11 00:48:48.843512+00 f t Invitado Amar invitado-1757551727488@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-6514 +8410 2025-09-11 00:58:04.46768+00 2025-09-11 00:58:04.467695+00 f t Invitado Amar invitado-1757552283465@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-6515 +8411 2025-09-11 01:07:15.469922+00 2025-09-11 01:07:15.469934+00 f t Invitado Amar invitado-1757552834245@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-6516 +8412 2025-09-11 01:08:44.764586+00 2025-09-11 01:08:44.764596+00 f t Invitado Amar invitado-1757552924086@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-6517 +8413 2025-09-11 01:08:54.377384+00 2025-09-11 01:08:54.377397+00 f t Invitado Amar invitado-1757552933363@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-6518 +8414 2025-09-11 01:23:49.335628+00 2025-09-11 01:23:49.335638+00 f t Invitado Amar invitado-1757553828776@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-6519 +8415 2025-09-11 01:24:32.687261+00 2025-09-11 01:24:32.68727+00 f t Invitado Amar invitado-1757553871253@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6520 +8416 2025-09-11 01:24:33.330428+00 2025-09-11 01:24:33.330439+00 f t Invitado Amar invitado-1757553872923@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6521 +8417 2025-09-11 02:04:05.746168+00 2025-09-11 02:04:05.746178+00 f t Invitado Amar invitado-1757556245374@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6522 +8418 2025-09-11 02:05:33.307626+00 2025-09-11 02:05:33.307635+00 f t Invitado Amar invitado-1757556332934@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6523 +8419 2025-09-11 02:28:21.837825+00 2025-09-11 02:28:21.837834+00 f t Invitado Amar invitado-1757557594590@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6524 +8420 2025-09-11 02:49:53.745217+00 2025-09-11 02:49:53.745226+00 f t Invitado Amar invitado-1757558992275@example.com 55555555 \N \N \N \N \N 148 \N \N iamar-6525 +8421 2025-09-11 03:03:09.338436+00 2025-09-11 03:03:09.338451+00 f t Invitado Amar invitado-1757559789240@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-6526 +8422 2025-09-11 03:05:05.237913+00 2025-09-11 03:05:05.237923+00 f t Invitado Amar invitado-1757559905261@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-6527 +8423 2025-09-11 03:29:00.069192+00 2025-09-11 03:29:00.069202+00 f t Invitado Amar invitado-1757561339611@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6528 +8424 2025-09-11 03:32:52.890013+00 2025-09-11 03:32:52.890021+00 f t Invitado Amar invitado-1757561572373@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6529 +8425 2025-09-11 03:37:09.518939+00 2025-09-11 03:37:09.518949+00 f t Invitado Amar invitado-1757561829561@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6530 +8426 2025-09-11 03:48:28.620877+00 2025-09-11 03:48:28.620887+00 f t Invitado Amar invitado-1757562507817@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-6531 +8427 2025-09-11 04:24:15.217876+00 2025-09-11 04:24:15.217886+00 f t Invitado Amar invitado-1757564654784@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-6532 +8428 2025-09-11 04:47:24.693105+00 2025-09-11 04:47:24.693114+00 f t Invitado Amar invitado-1757566044438@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6533 +8429 2025-09-11 05:21:23.054881+00 2025-09-11 05:21:23.054891+00 f t Invitado Amar invitado-1757568082450@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-6534 +8430 2025-09-11 08:11:41.721642+00 2025-09-11 08:11:41.721653+00 f t Invitado Amar invitado-1757578301107@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6535 +8431 2025-09-11 10:25:14.662143+00 2025-09-11 10:25:14.662152+00 f t Invitado Amar invitado-1757586314351@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-6536 +8432 2025-09-11 11:16:13.459673+00 2025-09-11 11:16:13.459688+00 f t Invitado Amar invitado-1757589373065@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6537 +8433 2025-09-11 12:10:39.536006+00 2025-09-11 12:10:39.536015+00 f t Invitado Amar invitado-1757592640471@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6538 +8434 2025-09-11 13:30:54.938857+00 2025-09-11 13:30:54.938867+00 f t Invitado Amar invitado-1757597454379@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6539 +8435 2025-09-11 13:44:45.317308+00 2025-09-11 13:44:45.31732+00 f t Invitado Amar invitado-1757598284677@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6540 +8436 2025-09-11 14:05:58.148775+00 2025-09-11 14:05:58.148787+00 f t Invitado Amar invitado-1757599557712@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6541 +8437 2025-09-11 14:07:49.110139+00 2025-09-11 14:07:49.110151+00 f t Invitado Amar invitado-1757599668783@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6542 +8438 2025-09-11 14:13:19.837056+00 2025-09-11 14:13:19.837067+00 f t Invitado Amar invitado-1757599997759@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-6543 +8439 2025-09-11 14:16:00.44027+00 2025-09-11 14:16:00.44028+00 f t Leonardo Peralta eloso51@hotmail.com 5491163775900 \N Álzaga 2226 1 A \N MALE \N -34.6375344 -58.4144903 44 1790 \N lperalta +8440 2025-09-11 14:16:33.769092+00 2025-09-11 14:16:33.769104+00 f t Invitado Amar invitado-1757600193209@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6544 +8441 2025-09-11 14:18:59.458142+00 2025-09-11 14:18:59.458154+00 f t Invitado Amar invitado-1757600340860@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6545 +8442 2025-09-11 14:19:41.626757+00 2025-09-11 14:19:41.626766+00 f t Invitado Amar invitado-1757600381115@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6546 +8443 2025-09-11 14:20:28.212253+00 2025-09-11 14:20:28.212263+00 f t Invitado Amar invitado-1757600428006@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6547 +8444 2025-09-11 14:43:05.645687+00 2025-09-11 14:43:05.645695+00 f t Invitado Amar invitado-1757601785105@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6548 +8445 2025-09-11 15:07:40.184732+00 2025-09-11 15:07:40.184742+00 f t Jessica Angel jessicatangel1@hotmail.com +541144037651 \N Sanchez 1714 6E \N FEMALE \N -34.6084298 -58.4646293 63 1796 \N jangel +8446 2025-09-11 15:24:54.876576+00 2025-09-11 15:24:54.876584+00 f t Gimena Encina top3_3@yahoo.com.ar 5491169326203 \N chaco 1559 Lnus oeste, Entre Santiago playa y Enrique Fernández \N FEMALE \N -34.686533 -58.4036211 70 1791 \N gencina +8447 2025-09-11 15:29:43.768894+00 2025-09-11 15:29:43.768903+00 f t Invitado Amar invitado-1757604579943@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-6549 +8448 2025-09-11 15:34:39.156456+00 2025-09-11 15:34:39.156466+00 f t Invitado Amar invitado-1757604878177@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6550 +8449 2025-09-11 15:46:16.682397+00 2025-09-11 15:46:16.682406+00 f t Invitado Amar invitado-1757605576279@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6551 +8450 2025-09-11 16:15:14.401876+00 2025-09-11 16:15:14.401889+00 f t Invitado Amar invitado-1757607314016@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6552 +8451 2025-09-11 16:41:19.383602+00 2025-09-11 16:41:19.383614+00 f t Invitado Amar invitado-1757608878945@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6553 +8452 2025-09-11 16:41:49.257426+00 2025-09-11 16:41:49.257435+00 f t Invitado Amar invitado-1757608908780@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6554 +8453 2025-09-11 16:58:12.954052+00 2025-09-11 16:58:12.954063+00 f t Invitado Amar invitado-1757609892121@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-6555 +8454 2025-09-11 16:59:27.17241+00 2025-09-11 16:59:27.172419+00 f t Invitado Amar invitado-1757609966244@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6556 +13330 2025-11-14 22:05:56.215356+00 2025-11-14 22:05:56.215366+00 f t Invitado Amar invitado-1763157955339@example.com 55555555 \N \N \N \N \N 26 \N \N \N +8456 2025-09-11 17:37:17.429075+00 2025-09-11 17:37:17.429084+00 f t Invitado Amar invitado-1757612236928@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-6557 +8457 2025-09-11 18:02:37.208835+00 2025-09-11 18:02:37.208844+00 f t Invitado Amar invitado-1757613756798@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-6558 +8458 2025-09-11 18:16:55.980393+00 2025-09-11 18:16:55.980404+00 f t Maria Belen Fuentes estudiobertolinofuentes@gmail.com +541138021169 \N Carabobo 172 4a \N FEMALE \N -34.628846 -58.4555429 4 1794 \N mfuentes +8459 2025-09-11 18:33:30.785842+00 2025-09-11 18:33:30.785851+00 f t Invitado Amar invitado-1757615609762@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-6559 +8460 2025-09-11 18:40:19.019718+00 2025-09-11 18:40:19.019726+00 f t Invitado Amar invitado-1757616018467@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6560 +8461 2025-09-11 18:53:29.053034+00 2025-09-11 18:53:29.053045+00 f t Invitado Amar invitado-1757616808434@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6561 +8462 2025-09-11 19:06:50.466009+00 2025-09-11 19:06:50.466018+00 f t Invitado Amar invitado-1757617608705@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6562 +8463 2025-09-11 19:08:38.866221+00 2025-09-11 19:08:38.866234+00 f t Invitado Amar invitado-1757617718482@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6563 +8464 2025-09-11 19:20:56.139871+00 2025-09-11 19:20:56.139879+00 f t Invitado Amar invitado-1757618455204@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6564 +8465 2025-09-11 19:46:39.508262+00 2025-09-11 19:46:39.50827+00 f t Invitado Amar invitado-1757619938379@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6565 +8466 2025-09-11 20:10:53.784395+00 2025-09-11 20:10:53.784403+00 f t Invitado Amar invitado-1757621452891@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-6566 +8467 2025-09-11 20:32:52.852894+00 2025-09-11 20:32:52.852904+00 f t Invitado Amar invitado-1757622771595@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6567 +8468 2025-09-11 20:48:22.012644+00 2025-09-11 20:48:22.012657+00 f t Invitado Amar invitado-1757623701609@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6568 +8469 2025-09-11 20:54:00.446715+00 2025-09-11 20:54:00.446724+00 f t Invitado Amar invitado-1757624041262@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-6569 +8470 2025-09-11 21:09:40.225862+00 2025-09-11 21:09:40.225874+00 f t Invitado Amar invitado-1757624978767@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-6570 +8471 2025-09-11 22:12:43.017158+00 2025-09-11 22:12:43.017172+00 f t Invitado Amar invitado-1757628762754@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6571 +8472 2025-09-11 22:23:57.334349+00 2025-09-11 22:23:57.334357+00 f t Invitado Amar invitado-1757629436955@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-6572 +8473 2025-09-11 22:31:00.506529+00 2025-09-11 22:31:00.506539+00 f t Invitado Amar invitado-1757629859955@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-6573 +8474 2025-09-11 22:54:01.012406+00 2025-09-11 22:54:01.012415+00 f t Liz Acosta morochaliz90@gmail.com +541156065779 \N Mariano Acosta y riestra 20006 Casa \N \N \N \N 48 \N \N lacosta +8475 2025-09-11 23:01:42.145669+00 2025-09-11 23:01:42.145678+00 f t Invitado Amar invitado-1757631698236@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-6574 +8476 2025-09-11 23:17:04.225498+00 2025-09-11 23:17:04.225508+00 f t Invitado Amar invitado-1757632623439@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6575 +8477 2025-09-11 23:29:41.297195+00 2025-09-11 23:29:41.297204+00 f t Invitado Amar invitado-1757633381472@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6576 +8478 2025-09-11 23:36:38.554787+00 2025-09-11 23:36:38.554795+00 f t ROSE MARY BENITO CANDIO milagrosduran2409@gmail.com 5491161670078 \N garcia del rio 4005 1A \N FEMALE 1992-08-11 -34.5541489 -58.4846511 31 1797 \N rbenitocandio +8479 2025-09-11 23:51:45.809793+00 2025-09-11 23:51:45.809803+00 f t Invitado Amar invitado-1757634705776@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-6577 +8480 2025-09-12 00:10:42.218113+00 2025-09-12 00:10:42.218126+00 f t Invitado Amar invitado-1757635841248@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6578 +8481 2025-09-12 00:11:54.407406+00 2025-09-12 00:11:54.407415+00 f t Invitado Amar invitado-1757635913689@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6579 +8482 2025-09-12 00:14:59.114789+00 2025-09-12 00:14:59.114798+00 f t Invitado Amar invitado-1757636098336@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6580 +8483 2025-09-12 00:17:38.23404+00 2025-09-12 00:17:38.234053+00 f t Invitado Amar invitado-1757636258094@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-6581 +8484 2025-09-12 00:36:22.878865+00 2025-09-12 00:36:22.878874+00 f t Invitado Amar invitado-1757637382324@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6582 +8485 2025-09-12 00:36:54.078583+00 2025-09-12 00:36:54.078596+00 f t Invitado Amar invitado-1757637412656@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6583 +8486 2025-09-12 00:56:37.137403+00 2025-09-12 00:56:37.137412+00 f t Camila Blank camiblankb@gmail.com +541169155824 \N 11 de septiembre 4747 2 e \N FEMALE \N -34.5368356 -58.4676827 25 1798 \N cblank +8487 2025-09-12 02:34:56.453637+00 2025-09-12 02:34:56.453648+00 f t Invitado Amar invitado-1757644495660@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6584 +8488 2025-09-12 02:45:41.815037+00 2025-09-12 02:45:41.815051+00 f t Invitado Amar invitado-1757645146034@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6585 +8489 2025-09-12 03:16:55.305473+00 2025-09-12 03:16:55.305483+00 f t Invitado Amar invitado-1757647013969@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-6586 +8490 2025-09-12 03:35:12.148057+00 2025-09-12 03:35:12.148066+00 f t Invitado Amar invitado-1757648112076@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-6587 +8491 2025-09-12 03:54:28.401897+00 2025-09-12 03:54:28.401906+00 f t Invitado Amar invitado-1757649267063@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6588 +8492 2025-09-12 04:04:23.556462+00 2025-09-12 04:04:23.556471+00 f t Invitado Amar invitado-1757649863131@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6589 +8493 2025-09-12 04:30:18.929346+00 2025-09-12 04:30:18.929355+00 f t Invitado Amar invitado-1757651418593@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-6590 +8494 2025-09-12 05:37:18.009896+00 2025-09-12 05:37:18.009909+00 f t Invitado Amar invitado-1757655437176@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-6591 +8495 2025-09-12 08:29:03.151442+00 2025-09-12 08:29:03.151451+00 f t Invitado Amar invitado-1757665742914@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6592 +8496 2025-09-12 08:29:21.579208+00 2025-09-12 08:29:21.579218+00 f t Invitado Amar invitado-1757665761788@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6593 +8497 2025-09-12 08:40:47.504865+00 2025-09-12 08:40:47.504874+00 f t Invitado Amar invitado-1757666447281@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6594 +8498 2025-09-12 08:50:24.23792+00 2025-09-12 08:50:24.237928+00 f t Invitado Amar invitado-1757667023815@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6595 +8499 2025-09-12 11:05:27.382467+00 2025-09-12 11:05:27.382476+00 f t Invitado Amar invitado-1757675127044@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6596 +8500 2025-09-12 11:28:51.905469+00 2025-09-12 11:28:51.905478+00 f t Invitado Amar invitado-1757676531753@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6597 +8501 2025-09-12 11:49:49.890074+00 2025-09-12 11:49:49.890083+00 f t Invitado Amar invitado-1757677789513@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6598 +8502 2025-09-12 12:02:34.347975+00 2025-09-12 12:02:34.347983+00 f t Invitado Amar invitado-1757678553619@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-6599 +8503 2025-09-12 12:23:04.543768+00 2025-09-12 12:23:04.543777+00 f t Invitado Amar invitado-1757679783570@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-6600 +8504 2025-09-12 12:28:57.011205+00 2025-09-12 12:28:57.011214+00 f t Invitado Amar invitado-1757680136576@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-6601 +8505 2025-09-12 12:39:10.904764+00 2025-09-12 12:39:10.904778+00 f t Invitado Amar invitado-1757680750531@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6602 +8506 2025-09-12 12:59:17.956952+00 2025-09-12 12:59:17.956961+00 f t Invitado Amar invitado-1757681958285@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6603 +8507 2025-09-12 13:04:13.897118+00 2025-09-12 13:04:13.897127+00 f t Invitado Amar invitado-1757682252540@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6604 +8508 2025-09-12 13:04:58.671414+00 2025-09-12 13:04:58.671425+00 f t Invitado Amar invitado-1757682298346@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6605 +8509 2025-09-12 13:21:26.914918+00 2025-09-12 13:21:26.914927+00 f t Invitado Amar invitado-1757683286353@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6606 +8510 2025-09-12 13:21:32.889266+00 2025-09-12 13:21:32.889274+00 f t Invitado Amar invitado-1757683292016@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6607 +8511 2025-09-12 13:24:24.605011+00 2025-09-12 13:24:24.60502+00 f t Invitado Amar invitado-1757683471317@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6608 +8512 2025-09-12 13:26:56.536434+00 2025-09-12 13:26:56.536443+00 f t Invitado Amar invitado-1757683615816@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6609 +8513 2025-09-12 13:29:44.756882+00 2025-09-12 13:29:44.756895+00 f t Invitado Amar invitado-1757683784056@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6610 +8514 2025-09-12 13:38:24.90771+00 2025-09-12 13:38:24.907721+00 f t Invitado Amar invitado-1757684303512@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6611 +8515 2025-09-12 13:39:48.806324+00 2025-09-12 13:39:48.806333+00 f t Invitado Amar invitado-1757684388430@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6612 +8516 2025-09-12 14:06:49.172176+00 2025-09-12 14:06:49.172186+00 f t Invitado Amar invitado-1757686008677@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-6613 +8517 2025-09-12 14:49:31.515694+00 2025-09-12 14:49:31.515707+00 f t Invitado Amar invitado-1757688570799@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6614 +8518 2025-09-12 14:50:35.412551+00 2025-09-12 14:50:35.412561+00 f t Invitado Amar invitado-1757688635090@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6615 +8519 2025-09-12 16:01:41.669073+00 2025-09-12 16:01:41.669083+00 f t Invitado Amar invitado-1757692903010@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6616 +8520 2025-09-12 16:03:06.605144+00 2025-09-12 16:03:06.605158+00 f t Invitado Amar invitado-1757692986286@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-6617 +8521 2025-09-12 16:22:01.416265+00 2025-09-12 16:22:01.416274+00 f t Invitado Amar invitado-1757694121012@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6618 +8522 2025-09-12 16:25:16.052771+00 2025-09-12 16:25:16.052783+00 f t Invitado Amar invitado-1757694317242@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6619 +8523 2025-09-12 16:26:39.526331+00 2025-09-12 16:26:39.526341+00 f t Invitado Amar invitado-1757694398122@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6620 +8524 2025-09-12 16:30:53.646984+00 2025-09-12 16:30:53.646993+00 f t Maria Victoria Ferrari mavictoria.ferrari@gmail.com +541151816534 \N Rosario 238 6 D \N FEMALE \N -34.6188488 -58.4322088 14 1800 \N mferrari-2 +8525 2025-09-12 16:46:31.340653+00 2025-09-12 16:46:31.340666+00 f t Invitado Amar invitado-1757695590995@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-6621 +8526 2025-09-12 16:52:43.852046+00 2025-09-12 16:52:43.85206+00 f t Ivana Andorno andornoivana615@gmail.com +541151071710 \N Vilela entre del case y bibiloni 2947 ex 1147 \N \N \N \N 22 \N \N iandorno +8527 2025-09-12 17:26:26.027714+00 2025-09-12 17:26:26.027722+00 f t Invitado Amar invitado-1757697985584@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-6622 +8528 2025-09-12 18:02:51.063374+00 2025-09-12 18:02:51.063385+00 f t Invitado Amar invitado-1757700169337@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6623 +8529 2025-09-12 18:06:44.057786+00 2025-09-12 18:06:44.057795+00 f t Invitado Amar invitado-1757700403516@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6624 +8530 2025-09-12 18:09:08.753469+00 2025-09-12 18:09:08.753478+00 f t Invitado Amar invitado-1757700546693@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6625 +8531 2025-09-12 18:18:32.354263+00 2025-09-12 18:18:32.354274+00 f t Invitado Amar invitado-1757701111906@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-6626 +8532 2025-09-12 18:25:55.337637+00 2025-09-12 18:25:55.337645+00 f t Miguel Carrizo miguuelange_carrizo1994@hotmail.com +541126660703 \N Colombia 1375 Casa \N \N \N \N 46 \N \N mcarrizo +8533 2025-09-12 18:29:57.227481+00 2025-09-12 18:29:57.227489+00 f t Invitado Amar invitado-1757701796701@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6627 +8534 2025-09-12 18:45:33.667064+00 2025-09-12 18:45:33.667073+00 f t Invitado Amar invitado-1757702733727@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-6628 +8535 2025-09-12 18:57:02.367571+00 2025-09-12 18:57:02.36758+00 f t Invitado Amar invitado-1757703422033@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6629 +8536 2025-09-12 19:18:21.994066+00 2025-09-12 19:18:21.994077+00 f t Invitado Amar invitado-1757704701240@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6630 +8537 2025-09-12 19:20:54.19255+00 2025-09-12 19:20:54.192558+00 f t Invitado Amar invitado-1757704853451@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6631 +8538 2025-09-12 19:40:28.413983+00 2025-09-12 19:40:28.413995+00 f t Invitado Amar invitado-1757706027414@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-6632 +8539 2025-09-12 19:40:30.02128+00 2025-09-12 19:40:30.021287+00 f t rosario trasvacio travascio.r@gmail.com 91131717600 \N Espora 3050 4D, sobre espora llegando a libertador al lado de Harley Davison. Edificio de hormigon con porton de madera \N FEMALE 1992-07-28 -34.5016351 -58.4810195 39 1802 \N rtrasvacio +8540 2025-09-12 19:53:41.367774+00 2025-09-12 19:53:41.367784+00 f t Invitado Amar invitado-1757706815095@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-6633 +8541 2025-09-12 20:58:36.997167+00 2025-09-12 20:58:36.997177+00 f t Invitado Amar invitado-1757710715637@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-6634 +8542 2025-09-12 21:47:24.884525+00 2025-09-12 21:47:24.884535+00 f t Invitado Amar invitado-1757713642813@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6635 +8543 2025-09-12 21:55:33.277377+00 2025-09-12 21:55:33.277386+00 f t Laura Oliverio lauravoliverio@gmail.com +541138949826 \N Quevedo 3757 \N \N FEMALE \N -34.608857 -58.5213932 21 1816 \N loliverio +8544 2025-09-12 21:56:55.588029+00 2025-09-12 21:56:55.588038+00 f t Invitado Amar invitado-1757714214896@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6636 +8545 2025-09-12 21:59:04.745389+00 2025-09-12 21:59:04.745401+00 f t Invitado Amar invitado-1757714344327@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6637 +8546 2025-09-12 22:16:55.541248+00 2025-09-12 22:16:55.54126+00 f t Invitado Amar invitado-1757715415542@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-6638 +8547 2025-09-12 22:48:16.540862+00 2025-09-12 22:48:16.540872+00 f t Rocio Ambrosoni rochiambros@gmail.com +541133215984 \N Salguero 69 PB C \N \N -34.6101617 -58.4197756 23 \N \N rambrosoni +8548 2025-09-12 23:03:01.728947+00 2025-09-12 23:03:01.728957+00 f t Invitado Amar invitado-1757718180212@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-6639 +8549 2025-09-12 23:08:54.683778+00 2025-09-12 23:08:54.683787+00 f t Invitado Amar invitado-1757718533265@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6640 +8551 2025-09-13 00:00:31.390539+00 2025-09-13 00:00:31.390568+00 f t Invitado Amar invitado-1757721629474@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6642 +8552 2025-09-13 00:02:35.710383+00 2025-09-13 00:02:35.710392+00 f t Invitado Amar invitado-1757721755168@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6643 +8553 2025-09-13 00:06:20.885715+00 2025-09-13 00:06:20.885727+00 f t Invitado Amar invitado-1757721980192@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6644 +8554 2025-09-13 00:11:53.658398+00 2025-09-13 00:11:53.658409+00 f t Invitado Amar invitado-1757722313767@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6645 +8555 2025-09-13 00:19:49.077312+00 2025-09-13 00:19:49.07732+00 f t Invitado Amar invitado-1757722788413@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6646 +8556 2025-09-13 00:22:15.925047+00 2025-09-13 00:22:15.925055+00 f t Invitado Amar invitado-1757722935467@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6647 +8557 2025-09-13 00:51:25.866352+00 2025-09-13 00:51:25.866361+00 f t Invitado Amar invitado-1757724685141@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6648 +8558 2025-09-13 00:51:50.429953+00 2025-09-13 00:51:50.429962+00 f t Invitado Amar invitado-1757724709567@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-6649 +8559 2025-09-13 00:52:19.385846+00 2025-09-13 00:52:19.385854+00 f t Invitado Amar invitado-1757724739026@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-6650 +8560 2025-09-13 00:54:25.199291+00 2025-09-13 00:54:25.199299+00 f t Invitado Amar invitado-1757724865643@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6651 +8561 2025-09-13 00:57:54.123948+00 2025-09-13 00:57:54.123957+00 f t Invitado Amar invitado-1757725073057@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6652 +8562 2025-09-13 01:19:19.037877+00 2025-09-13 01:19:19.037887+00 f t Invitado Amar invitado-1757726358190@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-6653 +8563 2025-09-13 01:40:13.832306+00 2025-09-13 01:40:13.83232+00 f t Invitado Amar invitado-1757727613262@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-6654 +8564 2025-09-13 02:19:52.552719+00 2025-09-13 02:19:52.552727+00 f t Invitado Amar invitado-1757729991726@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6655 +8565 2025-09-13 02:23:07.780861+00 2025-09-13 02:23:07.780874+00 f t Invitado Amar invitado-1757730187595@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6656 +8566 2025-09-13 04:13:04.627927+00 2025-09-13 04:13:04.627934+00 f t Invitado Amar invitado-1757736782420@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6657 +8567 2025-09-13 07:30:38.165212+00 2025-09-13 07:30:38.165221+00 f t Invitado Amar invitado-1757748637882@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-6658 +8568 2025-09-13 08:38:11.046628+00 2025-09-13 08:38:11.046636+00 f t Invitado Amar invitado-1757752689410@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-6659 +8569 2025-09-13 11:43:00.961751+00 2025-09-13 11:43:00.961761+00 f t Invitado Amar invitado-1757763780432@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6660 +8570 2025-09-13 11:56:43.6391+00 2025-09-13 11:56:43.639108+00 f t Invitado Amar invitado-1757764603320@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-6661 +8571 2025-09-13 12:02:15.64992+00 2025-09-13 12:02:15.649929+00 f t Victoria Repetur vickyrepetur@gmail.com +541160088193 \N Achaval 710 6B \N \N -34.6328175 -58.4468583 20 \N \N vrepetur +8572 2025-09-13 12:15:16.015008+00 2025-09-13 12:15:16.015019+00 f t Invitado Amar invitado-1757765715421@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6662 +8573 2025-09-13 12:28:46.056048+00 2025-09-13 12:28:46.056056+00 f t Invitado Amar invitado-1757766525453@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6663 +8574 2025-09-13 12:33:23.700005+00 2025-09-13 12:33:23.700016+00 f t Invitado Amar invitado-1757766803364@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6664 +8575 2025-09-13 12:37:22.352504+00 2025-09-13 12:37:22.352512+00 f t Invitado Amar invitado-1757766812703@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-6665 +8576 2025-09-13 12:43:50.050045+00 2025-09-13 12:43:50.050066+00 f t Invitado Amar invitado-1757767429675@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6666 +8578 2025-09-13 13:27:44.075421+00 2025-09-13 13:27:44.075431+00 f t Invitado Amar invitado-1757770063726@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6667 +8579 2025-09-13 13:49:07.705852+00 2025-09-13 13:49:07.705862+00 f t Invitado Amar invitado-1757771347073@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-6668 +8580 2025-09-13 14:45:20.877886+00 2025-09-13 14:45:20.877894+00 f t Invitado Amar invitado-1757774720523@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-6669 +8581 2025-09-13 15:02:43.44527+00 2025-09-13 15:02:43.445282+00 f t Invitado Amar invitado-1757775763036@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-6670 +8582 2025-09-13 16:30:05.662316+00 2025-09-13 16:30:05.66233+00 f t Invitado Amar invitado-1757781005216@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6671 +13331 2025-11-14 22:13:20.082816+00 2025-11-14 22:13:20.082826+00 f t Invitado Amar invitado-1763158399741@example.com 55555555 \N \N \N \N \N 72 \N \N \N +8584 2025-09-13 17:10:41.67208+00 2025-09-13 17:10:41.672093+00 f t Invitado Amar invitado-1757783441749@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6672 +8585 2025-09-13 17:26:00.019235+00 2025-09-13 17:26:00.019252+00 f t Invitado Amar invitado-1757784359617@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-6673 +8586 2025-09-13 17:28:50.40761+00 2025-09-13 17:28:50.407619+00 f t Invitado Amar invitado-1757784530251@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6674 +8587 2025-09-13 17:33:29.497278+00 2025-09-13 17:33:29.49729+00 f t Invitado Amar invitado-1757784809374@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6675 +8588 2025-09-13 17:52:47.162073+00 2025-09-13 17:52:47.162085+00 f t Invitado Amar invitado-1757785965133@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6676 +8589 2025-09-13 18:04:14.539918+00 2025-09-13 18:04:14.539927+00 f t Invitado Amar invitado-1757786654627@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6677 +8590 2025-09-13 18:06:00.31203+00 2025-09-13 18:06:00.312038+00 f t Invitado Amar invitado-1757786761313@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6678 +8591 2025-09-13 18:18:15.873901+00 2025-09-13 18:18:15.873909+00 f t Invitado Amar invitado-1757787496032@example.com 55555555 \N \N \N \N \N 91 \N \N iamar-6679 +8592 2025-09-13 18:19:16.968637+00 2025-09-13 18:19:16.968645+00 f t Invitado Amar invitado-1757787555727@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-6680 +8593 2025-09-13 19:09:23.75342+00 2025-09-13 19:09:23.753439+00 f t Invitado Amar invitado-1757790562675@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6681 +13542 2025-11-17 20:39:40.636321+00 2025-11-17 20:39:40.636331+00 f t Invitado Amar invitado-1763411979726@example.com 55555555 \N \N \N \N \N 13 \N \N \N +8577 2025-09-13 13:14:15.116638+00 2025-09-13 13:14:15.116646+00 f t Gisela Rotblat gisela.rotblat@hospitalitaliano.org.ar +5411630315 \N Avenida Directorio 141 3 \N FEMALE \N -34.6271648 -58.4287947 14 \N \N grotblat +8594 2025-09-13 19:22:54.761654+00 2025-09-13 19:22:54.761664+00 f t Invitado Amar invitado-1757791374412@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-6682 +8595 2025-09-13 19:39:58.995248+00 2025-09-13 19:39:58.995258+00 f t Invitado Amar invitado-1757792396915@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-6683 +8596 2025-09-13 20:01:57.368231+00 2025-09-13 20:01:57.36824+00 f t Invitado Amar invitado-1757793717070@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6684 +8597 2025-09-13 20:04:41.565257+00 2025-09-13 20:04:41.565266+00 f t Invitado Amar invitado-1757793881146@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6685 +8598 2025-09-13 20:07:10.577522+00 2025-09-13 20:07:10.577531+00 f t Invitado Amar invitado-1757794030183@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6686 +8599 2025-09-13 20:17:06.003332+00 2025-09-13 20:17:06.003346+00 f t Invitado Amar invitado-1757794625620@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6687 +8600 2025-09-13 20:52:11.794733+00 2025-09-13 20:52:11.794745+00 f t Invitado Amar invitado-1757796731406@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-6688 +8601 2025-09-13 21:10:08.818532+00 2025-09-13 21:10:08.818546+00 f t Invitado Amar invitado-1757797808211@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6689 +8602 2025-09-13 21:22:47.158668+00 2025-09-13 21:22:47.158677+00 f t Nemesis Infante pamelainfante666@gmail.com +5491124010074 \N Cespedes 2459 5A \N FEMALE \N -34.5690988 -58.4488874 3 \N \N ninfante +8603 2025-09-13 21:24:35.587963+00 2025-09-13 21:24:35.587971+00 f t Silvana Farolfi silvanafarolfi@gmail.com 93815779302 \N Charcas 3233 1B \N FEMALE 1972-06-30 -34.5922652 -58.4113659 9 1805 \N sfarolfi +8604 2025-09-13 21:39:42.00039+00 2025-09-13 21:39:42.000399+00 f t Invitado Amar invitado-1757799581757@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-6690 +8605 2025-09-13 21:54:03.706485+00 2025-09-13 21:54:03.706495+00 f t Invitado Amar invitado-1757800443288@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-6691 +8606 2025-09-13 22:01:06.858961+00 2025-09-13 22:01:06.858972+00 f t Invitado Amar invitado-1757800865355@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6692 +8607 2025-09-13 22:05:14.048722+00 2025-09-13 22:05:14.048732+00 f t Invitado Amar invitado-1757801113415@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6693 +8608 2025-09-13 22:13:04.272841+00 2025-09-13 22:13:04.272854+00 f t Invitado Amar invitado-1757801583039@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-6694 +8609 2025-09-13 22:15:42.167662+00 2025-09-13 22:15:42.167671+00 f t Invitado Amar invitado-1757801741622@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-6695 +8610 2025-09-13 22:45:04.488385+00 2025-09-13 22:45:04.488399+00 f t Conrado Susmano conradosusmano@gmail.com +541131871845 \N Juan José Paso 828 \N \N -34.6551046 -58.6029598 55 \N \N csusmano +8611 2025-09-13 22:57:58.105998+00 2025-09-13 22:57:58.106007+00 f t Invitado Amar invitado-1757804279487@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6696 +8612 2025-09-13 23:26:12.282294+00 2025-09-13 23:26:12.282303+00 f t Yamila Bacchi yamila.bacchi@gmail.com +541151457030 \N Rivera Indarte 1025 \N \N -34.6821661 -58.565236 87 \N \N ybacchi +8613 2025-09-14 00:10:15.283185+00 2025-09-14 00:10:15.283198+00 f t Invitado Amar invitado-1757808615073@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6697 +8614 2025-09-14 02:40:07.160997+00 2025-09-14 02:40:07.16101+00 f t Invitado Amar invitado-1757817608565@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6698 +8615 2025-09-14 03:58:10.249706+00 2025-09-14 03:58:10.249715+00 f t Invitado Amar invitado-1757822291156@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6699 +8616 2025-09-14 04:00:42.673221+00 2025-09-14 04:00:42.673232+00 f t Invitado Amar invitado-1757822443382@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6700 +8617 2025-09-14 04:16:07.494668+00 2025-09-14 04:16:07.494682+00 f t Invitado Amar invitado-1757823367552@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-6701 +8618 2025-09-14 05:08:05.953847+00 2025-09-14 05:08:05.953858+00 f t Invitado Amar invitado-1757826484795@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6702 +8619 2025-09-14 05:54:19.764801+00 2025-09-14 05:54:19.764813+00 f t Invitado Amar invitado-1757829257848@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6703 +8620 2025-09-14 06:41:19.326369+00 2025-09-14 06:41:19.32638+00 f t Invitado Amar invitado-1757832078876@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6704 +8621 2025-09-14 09:09:38.258476+00 2025-09-14 09:09:38.258486+00 f t Invitado Amar invitado-1757840977468@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6705 +8622 2025-09-14 10:42:28.632201+00 2025-09-14 10:42:28.63221+00 f t Graciela López gra18.lopez@gmail.com +541168182232 \N Guardia Nacional 74 (entre calles: cerrito y capitán rojas) \N \N -34.7458143 -58.3729111 72 \N \N glopez-2 +8623 2025-09-14 11:17:37.565771+00 2025-09-14 11:17:37.565781+00 f t Invitado Amar invitado-1757848657179@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6706 +8624 2025-09-14 11:21:52.870897+00 2025-09-14 11:21:52.870907+00 f t Invitado Amar invitado-1757848912717@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6707 +8625 2025-09-14 12:06:47.514162+00 2025-09-14 12:06:47.514175+00 f t Invitado Amar invitado-1757851606979@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6708 +8626 2025-09-14 12:54:31.415272+00 2025-09-14 12:54:31.415285+00 f t Invitado Amar invitado-1757854471044@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6709 +8627 2025-09-14 12:58:04.701082+00 2025-09-14 12:58:04.701099+00 f t Invitado Amar invitado-1757854684387@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6710 +8628 2025-09-14 13:46:42.084268+00 2025-09-14 13:46:42.084277+00 f t Invitado Amar invitado-1757857601757@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6711 +8629 2025-09-14 13:57:31.037388+00 2025-09-14 13:57:31.037398+00 f t Invitado Amar invitado-1757858250711@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6712 +8630 2025-09-14 14:19:17.707394+00 2025-09-14 14:19:17.707406+00 f t Invitado Amar invitado-1757859557632@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6713 +8631 2025-09-14 14:21:45.586275+00 2025-09-14 14:21:45.586287+00 f t Invitado Amar invitado-1757859705750@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6714 +8632 2025-09-14 14:26:23.309425+00 2025-09-14 14:26:23.309438+00 f t Invitado Amar invitado-1757859982721@example.com 55555555 \N \N \N \N \N 57 \N \N iamar-6715 +8633 2025-09-14 14:44:28.507294+00 2025-09-14 14:44:28.507303+00 f t Invitado Amar invitado-1757861068017@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6716 +8634 2025-09-14 15:58:14.241061+00 2025-09-14 15:58:14.24107+00 f t Invitado Amar invitado-1757865493711@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6717 +8635 2025-09-14 16:50:09.624526+00 2025-09-14 16:50:09.624536+00 f t Invitado Amar invitado-1757868609577@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6718 +8636 2025-09-14 16:55:19.246994+00 2025-09-14 16:55:19.247004+00 f t Invitado Amar invitado-1757868919323@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6719 +8637 2025-09-14 18:04:36.491707+00 2025-09-14 18:04:36.491722+00 f t Invitado Amar invitado-1757873076043@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6720 +8638 2025-09-14 18:58:06.344266+00 2025-09-14 18:58:06.344275+00 f t María Josefina Maggi marycuchi@yahoo.com.ar 5491156591096 \N Av. F. Lacroze 3115 2do piso B, esquina Freire \N FEMALE 1961-03-21 \N \N 38 1806 \N mmaggi +8639 2025-09-14 19:04:34.604217+00 2025-09-14 19:04:34.604225+00 f t Daniela Romero danyromero1508@gmail.com 5491173678617 \N Acevedo 348 depto 8C \N FEMALE 1993-08-15 -34.5985323 -58.4413208 26 1807 \N dromero +8640 2025-09-14 19:10:40.033841+00 2025-09-14 19:10:40.033849+00 f t Carolina Piriz carito_p789@hotmail.com 5491161454986 \N Juan jose castelli 5772 \N \N FEMALE 1987-11-17 -34.5265323 -58.535423 59 1808 \N cpiriz-2 +8641 2025-09-14 19:29:46.701827+00 2025-09-14 19:29:46.701835+00 f t Andrea Guistozzi giustolia96@gmail.com 5491140346135 \N Pacheco 3183 PB entre ibera y quesada \N FEMALE 1962-10-04 -34.5665806 -58.4892271 29 1809 \N aguistozzi +8642 2025-09-14 21:02:24.770105+00 2025-09-14 21:02:24.770113+00 f t Invitado Amar invitado-1757883743559@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6721 +8643 2025-09-14 21:07:36.94147+00 2025-09-14 21:07:36.94148+00 f t Invitado Amar invitado-1757884056523@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6722 +8644 2025-09-14 22:21:47.75744+00 2025-09-14 22:21:47.757452+00 f t Invitado Amar invitado-1757888506901@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6723 +8645 2025-09-14 23:22:16.207121+00 2025-09-14 23:22:16.207153+00 f t Invitado Amar invitado-1757892134660@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-6724 +8646 2025-09-14 23:39:47.261097+00 2025-09-14 23:39:47.261106+00 f t Invitado Amar invitado-1757893185701@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6725 +8647 2025-09-14 23:50:10.907005+00 2025-09-14 23:50:10.907019+00 f t Invitado Amar invitado-1757893810308@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-6726 +8648 2025-09-14 23:55:05.997456+00 2025-09-14 23:55:05.997469+00 f t Invitado Amar invitado-1757894106352@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-6727 +8649 2025-09-14 23:58:50.099921+00 2025-09-14 23:58:50.09993+00 f t Lucia Arias lolariasfotografia@gmail.com +5491167361057 \N Amenábar 495 1 \N FEMALE \N -34.5737499 -58.4441627 38 1811 \N larias +8650 2025-09-15 00:21:25.965034+00 2025-09-15 00:21:25.965043+00 f t Invitado Amar invitado-1757895685589@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6728 +8651 2025-09-15 00:26:05.862123+00 2025-09-15 00:26:05.86214+00 f t Invitado Amar invitado-1757895965361@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6729 +8652 2025-09-15 00:45:27.968755+00 2025-09-15 00:45:27.968768+00 f t Invitado Amar invitado-1757897126722@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6730 +8653 2025-09-15 00:46:05.330259+00 2025-09-15 00:46:05.330271+00 f t Invitado Amar invitado-1757897165178@example.com 55555555 \N \N \N \N \N 86 \N \N iamar-6731 +8654 2025-09-15 01:25:45.701275+00 2025-09-15 01:25:45.701286+00 f t Ramon carlos roberto Santich msriano1s2@gmail.com +541168343566 \N Alcaparra y entrada Rafael castillo 1520 Casa \N MALE \N \N \N 87 \N \N rsantich-2 +8655 2025-09-15 04:08:20.638678+00 2025-09-15 04:08:20.638687+00 f t Invitado Amar invitado-1757909300150@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6732 +8656 2025-09-15 04:27:05.284437+00 2025-09-15 04:27:05.284446+00 f t Invitado Amar invitado-1757910424613@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6733 +8657 2025-09-15 11:54:29.666271+00 2025-09-15 11:54:29.666281+00 f t Invitado Amar invitado-1757937269253@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6734 +8658 2025-09-15 12:47:45.678758+00 2025-09-15 12:47:45.678765+00 f t Erika Soledad Sierra sierraeris@hotmail.com 5491131818351 \N Superi 2393 Piso 4 depto 12 \N FEMALE \N -34.5651358 -58.4687841 3 1810 \N esierra +8659 2025-09-15 12:55:23.892824+00 2025-09-15 12:55:23.892834+00 f t Invitado Amar invitado-1757940812221@example.com 55555555 \N \N \N \N \N 48 \N \N iamar-6735 +8660 2025-09-15 13:06:20.290632+00 2025-09-15 13:06:20.290642+00 f t Invitado Amar invitado-1757941579947@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6736 +8661 2025-09-15 13:54:05.391522+00 2025-09-15 13:54:05.391531+00 f t Invitado Amar invitado-1757944444897@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6737 +8662 2025-09-15 14:03:14.462878+00 2025-09-15 14:03:14.462891+00 f t Invitado Amar invitado-1757944994475@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6738 +8663 2025-09-15 15:10:39.429539+00 2025-09-15 15:10:39.429548+00 f t Invitado Amar invitado-1757949039771@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6739 +8664 2025-09-15 15:27:53.401363+00 2025-09-15 15:27:53.401374+00 f t Invitado Amar invitado-1757950072090@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-6740 +8665 2025-09-15 15:41:06.076792+00 2025-09-15 15:41:06.076801+00 f t Invitado Amar invitado-1757950865726@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-6741 +8666 2025-09-15 16:45:13.095202+00 2025-09-15 16:45:13.095215+00 f t Invitado Amar invitado-1757954707723@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-6742 +8667 2025-09-15 17:04:23.02609+00 2025-09-15 17:04:23.026099+00 f t Invitado Amar invitado-1757955862040@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-6743 +8668 2025-09-15 17:52:45.605732+00 2025-09-15 17:52:45.605745+00 f t Invitado Amar invitado-1757958765024@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6744 +8669 2025-09-15 17:56:47.49581+00 2025-09-15 17:56:47.495819+00 f t Invitado Amar invitado-1757959007059@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6745 +8670 2025-09-15 18:02:24.753477+00 2025-09-15 18:02:24.753486+00 f t Invitado Amar invitado-1757959342686@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6746 +8671 2025-09-15 18:13:21.583687+00 2025-09-15 18:13:21.583696+00 f t Invitado Amar invitado-1757960001609@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6747 +8672 2025-09-15 18:16:24.624425+00 2025-09-15 18:16:24.624432+00 f t julia de araujo govaski juliagovaskia@gmail.com 91124741660 \N lima 1125 8G \N FEMALE 2001-01-27 -34.618081 -58.3814932 60 1813 \N jdearaujogovaski +8673 2025-09-15 19:06:00.234784+00 2025-09-15 19:06:00.234797+00 f t Invitado Amar invitado-1757963159913@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6748 +8674 2025-09-15 19:08:20.038103+00 2025-09-15 19:08:20.038111+00 f t Invitado Amar invitado-1757963299166@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6749 +8675 2025-09-15 19:22:54.291923+00 2025-09-15 19:22:54.291934+00 f t Invitado Amar invitado-1757964173485@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-6750 +13332 2025-11-14 22:13:58.484798+00 2025-11-14 22:13:58.484806+00 f t Invitado Amar invitado-1763158436453@example.com 55555555 \N \N \N \N \N 112 \N \N \N +8677 2025-09-15 20:45:18.430033+00 2025-09-15 20:45:18.430042+00 f t Invitado Amar invitado-1757969115724@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6751 +8678 2025-09-15 20:52:37.956402+00 2025-09-15 20:52:37.95641+00 f t Invitado Amar invitado-1757969555009@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6752 +8679 2025-09-15 21:17:32.945072+00 2025-09-15 21:17:32.945081+00 f t Invitado Amar invitado-1757971052289@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6753 +8680 2025-09-15 21:49:13.305572+00 2025-09-15 21:49:13.305584+00 f t Invitado Amar invitado-1757972952772@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6754 +8681 2025-09-15 21:59:14.798782+00 2025-09-15 21:59:14.798791+00 f t Invitado Amar invitado-1757973554426@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-6755 +8682 2025-09-15 22:07:40.256443+00 2025-09-15 22:07:40.256451+00 f t Invitado Amar invitado-1757974059620@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6756 +8683 2025-09-15 22:23:29.201369+00 2025-09-15 22:23:29.201377+00 f t Invitado Amar invitado-1757975008744@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6757 +8684 2025-09-15 22:50:34.213155+00 2025-09-15 22:50:34.213164+00 f t Invitado Amar invitado-1757976634587@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6758 +8685 2025-09-15 22:54:48.953218+00 2025-09-15 22:54:48.953228+00 f t Invitado Amar invitado-1757976888446@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6759 +8686 2025-09-15 22:58:22.512943+00 2025-09-15 22:58:22.512952+00 f t Invitado Amar invitado-1757977102101@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-6760 +8687 2025-09-15 23:26:40.095473+00 2025-09-15 23:26:40.095483+00 f t Invitado Amar invitado-1757978799505@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6761 +8688 2025-09-15 23:38:08.41234+00 2025-09-15 23:38:08.412354+00 f t Invitado Amar invitado-1757979487999@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-6762 +8689 2025-09-15 23:39:19.307052+00 2025-09-15 23:39:19.307061+00 f t Invitado Amar invitado-1757979559116@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-6763 +8690 2025-09-16 00:12:02.595918+00 2025-09-16 00:12:02.595925+00 f t Antonela sofia vila antonellasofiavila@gmail.com 91141437360 \N Arenales 2176 2C \N FEMALE 1998-07-09 -34.5944122 -58.3978056 9 1817 \N asofiavila +8691 2025-09-16 00:29:23.874997+00 2025-09-16 00:29:23.875006+00 f t Invitado Amar invitado-1757982563250@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6764 +8692 2025-09-16 01:02:41.652195+00 2025-09-16 01:02:41.652204+00 f t Invitado Amar invitado-1757984559840@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6765 +13543 2025-11-17 20:44:02.000332+00 2025-11-17 20:44:02.000346+00 f t Invitado Amar invitado-1763412241557@example.com 55555555 \N \N \N \N \N 3 \N \N \N +8693 2025-09-16 01:10:50.044631+00 2025-09-16 01:10:50.044642+00 f t Karina Hermo karinahermo@gmail.com +541169397652 \N Av Belgrano 3422 5 \N \N -34.6156652 -58.4147263 112 \N \N khermo +8694 2025-09-16 01:18:29.874693+00 2025-09-16 01:18:29.874702+00 f t Invitado Amar invitado-1757985508312@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-6766 +8695 2025-09-16 01:19:39.950287+00 2025-09-16 01:19:39.950295+00 f t Invitado Amar invitado-1757985579262@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6767 +8696 2025-09-16 01:27:01.654005+00 2025-09-16 01:27:01.654016+00 f t Invitado Amar invitado-1757986020000@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-6768 +8697 2025-09-16 01:41:54.578587+00 2025-09-16 01:41:54.578599+00 f t Invitado Amar invitado-1757986914187@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6769 +8698 2025-09-16 01:53:13.945779+00 2025-09-16 01:53:13.945788+00 f t Invitado Amar invitado-1757987593489@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6770 +8699 2025-09-16 01:55:49.393919+00 2025-09-16 01:55:49.393928+00 f t Invitado Amar invitado-1757987749607@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6771 +8700 2025-09-16 02:23:28.899969+00 2025-09-16 02:23:28.899979+00 f t Invitado Amar invitado-1757989408689@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6772 +8701 2025-09-16 02:24:10.643183+00 2025-09-16 02:24:10.643193+00 f t Invitado Amar invitado-1757989450733@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6773 +8702 2025-09-16 02:29:46.988416+00 2025-09-16 02:29:46.988425+00 f t Invitado Amar invitado-1757989785008@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6774 +8703 2025-09-16 02:31:36.002318+00 2025-09-16 02:31:36.002327+00 f t Invitado Amar invitado-1757989896046@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6775 +8704 2025-09-16 03:43:34.665329+00 2025-09-16 03:43:34.665338+00 f t Invitado Amar invitado-1757994214017@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6776 +8705 2025-09-16 05:55:25.117767+00 2025-09-16 05:55:25.117785+00 f t Invitado Amar invitado-1758002120763@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-6777 +8706 2025-09-16 06:08:29.697684+00 2025-09-16 06:08:29.697693+00 f t Invitado Amar invitado-1758002909116@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6778 +8707 2025-09-16 06:10:03.165625+00 2025-09-16 06:10:03.165638+00 f t Invitado Amar invitado-1758003002163@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6779 +8708 2025-09-16 06:11:33.074691+00 2025-09-16 06:11:33.0747+00 f t Invitado Amar invitado-1758003092709@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6780 +8709 2025-09-16 06:12:02.862138+00 2025-09-16 06:12:02.86215+00 f t Invitado Amar invitado-1758003122495@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6781 +8711 2025-09-16 10:05:20.505395+00 2025-09-16 10:05:20.505403+00 f t Invitado Amar invitado-1758017118651@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6783 +8712 2025-09-16 10:40:24.060763+00 2025-09-16 10:40:24.060774+00 f t Invitado Amar invitado-1758019223621@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6784 +8713 2025-09-16 10:52:42.130385+00 2025-09-16 10:52:42.130395+00 f t Invitado Amar invitado-1758020075684@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6785 +8714 2025-09-16 10:56:19.092869+00 2025-09-16 10:56:19.092877+00 f t Lourdes Rodríguez loumacarodriguez@gmail.com +541138939679 \N Rosario 238 11A \N \N \N -34.6188488 -58.4322088 14 \N \N lrodriguez-2 +8715 2025-09-16 11:16:29.825673+00 2025-09-16 11:16:29.825682+00 f t Invitado Amar invitado-1758021389292@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6786 +8716 2025-09-16 11:39:58.90762+00 2025-09-16 11:39:58.907635+00 f t Marina Galansky marinagalansky@yahoo.com.ar +541141474918 \N Ambrosetti 101 7 \N FEMALE \N -34.6164471 -58.43582 14 1844 \N mgalansky +8717 2025-09-16 12:15:18.44211+00 2025-09-16 12:15:18.442119+00 f t Invitado Amar invitado-1758024918371@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6787 +8718 2025-09-16 12:44:02.213925+00 2025-09-16 12:44:02.213937+00 f t Invitado Amar invitado-1758026756105@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-6788 +8719 2025-09-16 12:49:16.506526+00 2025-09-16 12:49:16.50654+00 f t Invitado Amar invitado-1758026955996@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6789 +8720 2025-09-16 13:02:44.518463+00 2025-09-16 13:02:44.518471+00 f t Invitado Amar invitado-1758027763573@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-6790 +8721 2025-09-16 13:25:45.845313+00 2025-09-16 13:25:45.845327+00 f t Invitado Amar invitado-1758029144654@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6791 +8722 2025-09-16 13:43:11.26173+00 2025-09-16 13:43:11.261752+00 f t Invitado Amar invitado-1758030304703@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-6792 +8723 2025-09-16 14:54:10.514891+00 2025-09-16 14:54:10.514901+00 f t Invitado Amar invitado-1758034449955@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6793 +8724 2025-09-16 15:00:14.540483+00 2025-09-16 15:00:14.540498+00 f t Brunella Bolocco Boye brunella.21@gmail.com +5491123998904 \N Eduardo Costa 346 \N \N FEMALE \N -34.4760965 -58.5086345 68 1822 \N bboloccoboye +8725 2025-09-16 15:05:49.939959+00 2025-09-16 15:05:49.939972+00 f t Invitado Amar invitado-1758035149530@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6794 +8726 2025-09-16 15:22:22.924547+00 2025-09-16 15:22:22.924558+00 f t Invitado Amar invitado-1758036142518@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6795 +8727 2025-09-16 15:23:06.413322+00 2025-09-16 15:23:06.413335+00 f t Invitado Amar invitado-1758036042136@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6796 +8728 2025-09-16 15:26:40.946925+00 2025-09-16 15:26:40.946937+00 f t Invitado Amar invitado-1758036256928@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6797 +8729 2025-09-16 15:27:09.181981+00 2025-09-16 15:27:09.181991+00 f t Invitado Amar invitado-1758036428619@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-6798 +8730 2025-09-16 15:30:34.864693+00 2025-09-16 15:30:34.864701+00 f t juan jose marino neomarinoneo@gmail.com 91124696911 \N Carabobo 330 1ero B \N MALE 1967-02-18 -34.630752 -58.4545691 4 1820 \N jmarino +8731 2025-09-16 15:31:40.011174+00 2025-09-16 15:31:40.011186+00 f t Invitado Amar invitado-1758036699723@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6799 +8732 2025-09-16 15:37:46.601435+00 2025-09-16 15:37:46.601444+00 f t Jimena Gotelli majigo@hotmail.com 5491164927749 \N Aizpurua 2951 1D \N FEMALE \N -34.5745004 -58.4980821 29 1819 \N jgotelli +8733 2025-09-16 15:41:04.465749+00 2025-09-16 15:41:04.465815+00 f t Invitado Amar invitado-1758037263628@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6800 +8734 2025-09-16 15:51:31.662626+00 2025-09-16 15:51:31.662634+00 f t Invitado Amar invitado-1758037890999@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-6801 +8735 2025-09-16 15:52:53.457916+00 2025-09-16 15:52:53.457926+00 f t cristina farfan drafarfanc@gmail.com 91130294544 \N hidalgo 670 3B \N FEMALE 1963-01-22 52.6130615 16.582373 14 1821 \N cfarfan +8736 2025-09-16 16:04:15.929746+00 2025-09-16 16:04:15.929758+00 f t Invitado Amar invitado-1758038654460@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-6802 +8737 2025-09-16 16:10:14.459481+00 2025-09-16 16:10:14.459494+00 f t Invitado Amar invitado-1758039013928@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6803 +8738 2025-09-16 16:28:07.176343+00 2025-09-16 16:28:07.176351+00 f t Invitado Amar invitado-1758040087098@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-6804 +8739 2025-09-16 16:36:11.334819+00 2025-09-16 16:36:11.334844+00 f t Invitado Amar invitado-1758040570805@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-6805 +8740 2025-09-16 16:44:26.626378+00 2025-09-16 16:44:26.626385+00 f t Johana Zuanny zunny_198@outlook.com 5491173663573 \N martinez castro 548 \N \N FEMALE \N -34.6393345 -58.4778007 5 1823 \N jzuanny +8741 2025-09-16 16:49:15.664977+00 2025-09-16 16:49:15.664987+00 f t Invitado Amar invitado-1758041355217@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6806 +8742 2025-09-16 17:02:58.333599+00 2025-09-16 17:02:58.33361+00 f t Invitado Amar invitado-1758042176586@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6807 +8743 2025-09-16 17:43:33.128686+00 2025-09-16 17:43:33.128696+00 f t Dana Mares fotoscompartidas11@gmail.com 5491130571997 \N chivilcoy 3196 6B \N FEMALE \N -34.604834 -58.5075696 21 1824 \N dmares +8744 2025-09-16 18:07:26.555631+00 2025-09-16 18:07:26.555644+00 f t Invitado Amar invitado-1758046046060@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6808 +8745 2025-09-16 18:14:53.949818+00 2025-09-16 18:14:53.949827+00 f t Invitado Amar invitado-1758046492952@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-6809 +8746 2025-09-16 19:16:18.35641+00 2025-09-16 19:16:18.356418+00 f t Invitado Amar invitado-1758050178423@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6810 +8747 2025-09-16 19:29:15.268658+00 2025-09-16 19:29:15.268668+00 f t Invitado Amar invitado-1758050954723@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6811 +8748 2025-09-16 19:36:08.03031+00 2025-09-16 19:36:08.030319+00 f t Invitado Amar invitado-1758051367298@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6812 +8749 2025-09-16 19:38:28.783755+00 2025-09-16 19:38:28.783764+00 f t Invitado Amar invitado-1758051508298@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6813 +8750 2025-09-16 19:51:01.025808+00 2025-09-16 19:51:01.02582+00 f t Invitado Amar invitado-1758052260289@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6814 +8751 2025-09-16 19:55:54.815867+00 2025-09-16 19:55:54.81588+00 f t Invitado Amar invitado-1758052554201@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-6815 +8752 2025-09-16 19:57:22.051031+00 2025-09-16 19:57:22.051043+00 f t Invitado Amar invitado-1758052687074@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6816 +8753 2025-09-16 20:12:29.568178+00 2025-09-16 20:12:29.568194+00 f t Invitado Amar invitado-1758053548893@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6817 +8754 2025-09-16 20:22:10.843568+00 2025-09-16 20:22:10.843577+00 f t Invitado Amar invitado-1758054130593@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6818 +8755 2025-09-16 20:26:17.473843+00 2025-09-16 20:26:17.473851+00 f t Invitado Amar invitado-1758054376935@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6819 +8756 2025-09-16 20:41:30.36116+00 2025-09-16 20:41:30.36117+00 f t Invitado Amar invitado-1758055289705@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-6820 +8757 2025-09-16 20:52:35.557776+00 2025-09-16 20:52:35.557784+00 f t Invitado Amar invitado-1758055954339@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-6821 +8758 2025-09-16 20:53:03.413872+00 2025-09-16 20:53:03.413885+00 f t Invitado Amar invitado-1758055982427@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-6822 +8759 2025-09-16 20:59:18.087544+00 2025-09-16 20:59:18.087555+00 f t Invitado Amar invitado-1758056357657@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6823 +8760 2025-09-16 21:10:13.460265+00 2025-09-16 21:10:13.460279+00 f t Invitado Amar invitado-1758057013327@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6824 +8761 2025-09-16 21:17:52.701848+00 2025-09-16 21:17:52.701858+00 f t Invitado Amar invitado-1758057471905@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6825 +8762 2025-09-16 22:00:02.470254+00 2025-09-16 22:00:02.470266+00 f t Marisa Pandiella pandi2107@hotmail.com 5491150423345 \N Marcos sastre 5784 \N \N FEMALE 1970-07-21 -34.6257644 -58.5245822 62 1825 \N mpandiella +8763 2025-09-16 22:08:40.726524+00 2025-09-16 22:08:40.726533+00 f t Invitado Amar invitado-1758060520122@example.com 55555555 \N \N \N \N \N 146 \N \N iamar-6826 +8764 2025-09-16 22:11:31.598512+00 2025-09-16 22:11:31.598524+00 f t Invitado Amar invitado-1758060691113@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6827 +8765 2025-09-16 22:33:08.760073+00 2025-09-16 22:33:08.760085+00 f t Invitado Amar invitado-1758061987826@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6828 +8766 2025-09-16 23:17:49.373384+00 2025-09-16 23:17:49.373393+00 f t Invitado Amar invitado-1758064667136@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-6829 +8767 2025-09-16 23:39:43.942076+00 2025-09-16 23:39:43.942089+00 f t Juan ignacio Gonzalez juangonzalez.cdv@gmail.com +541169615185 \N Quesada 2066 4 A \N MALE \N -34.5527067 -58.459983 25 1826 \N jgonzalez-2 +8768 2025-09-17 00:09:48.697469+00 2025-09-17 00:09:48.697478+00 f t Invitado Amar invitado-1758067789385@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6830 +8769 2025-09-17 00:24:52.021285+00 2025-09-17 00:24:52.021294+00 f t Invitado Amar invitado-1758068690354@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6831 +8770 2025-09-17 00:43:56.467784+00 2025-09-17 00:43:56.467794+00 f t Invitado Amar invitado-1758069836047@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-6832 +8771 2025-09-17 01:33:37.879496+00 2025-09-17 01:33:37.879505+00 f t Invitado Amar invitado-1758072821180@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6833 +8772 2025-09-17 02:16:34.420916+00 2025-09-17 02:16:34.420927+00 f t Invitado Amar invitado-1758075392775@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6834 +8773 2025-09-17 07:33:50.577661+00 2025-09-17 07:33:50.57767+00 f t Invitado Amar invitado-1758094430116@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6835 +8774 2025-09-17 10:22:23.520498+00 2025-09-17 10:22:23.520508+00 f t Invitado Amar invitado-1758104542295@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-6836 +8775 2025-09-17 10:22:57.656994+00 2025-09-17 10:22:57.657002+00 f t Invitado Amar invitado-1758104576728@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-6837 +8776 2025-09-17 10:35:00.937101+00 2025-09-17 10:35:00.937115+00 f t Invitado Amar invitado-1758105299871@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6838 +8777 2025-09-17 11:27:34.959925+00 2025-09-17 11:27:34.959934+00 f t Invitado Amar invitado-1758108452839@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-6839 +8778 2025-09-17 11:59:26.832549+00 2025-09-17 11:59:26.832559+00 f t Invitado Amar invitado-1758110366468@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6840 +8779 2025-09-17 12:07:54.700501+00 2025-09-17 12:07:54.700511+00 f t Invitado Amar invitado-1758110873829@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-6841 +8780 2025-09-17 12:43:53.31581+00 2025-09-17 12:43:53.315821+00 f t Invitado Amar invitado-1758113033148@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6842 +8781 2025-09-17 13:17:25.158405+00 2025-09-17 13:17:25.158416+00 f t Invitado Amar invitado-1758115045147@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6843 +8782 2025-09-17 13:30:06.823693+00 2025-09-17 13:30:06.823706+00 f t Maria Laura Bogadzian lalibog@hotmail.com +541552617397 \N Catamarca 538 8 A \N \N -34.6165833 -58.4055928 18 \N \N mbogadzian +8783 2025-09-17 13:46:43.726653+00 2025-09-17 13:46:43.72903+00 f t Invitado Amar invitado-1758116795304@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6844 +8784 2025-09-17 13:48:03.20437+00 2025-09-17 13:48:03.204379+00 f t Invitado Amar invitado-1758116882728@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-6845 +8785 2025-09-17 13:50:19.914428+00 2025-09-17 13:50:19.914437+00 f t Invitado Amar invitado-1758117019739@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6846 +8786 2025-09-17 14:46:46.372401+00 2025-09-17 14:46:46.372411+00 f t Invitado Amar invitado-1758120406317@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6847 +8787 2025-09-17 15:52:42.612318+00 2025-09-17 15:52:42.612327+00 f t Invitado Amar invitado-1758124362254@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-6848 +8788 2025-09-17 16:02:02.58636+00 2025-09-17 16:02:02.586368+00 f t abril sa abrilsa0303@gmail.com +541135812796 \N av del libertador 4918 24 \N \N -34.5642976 -58.4358648 1 \N \N asa +8789 2025-09-17 16:14:43.728936+00 2025-09-17 16:14:43.728942+00 f t Leonardo Pulvirenti leofara00@gmail.com 5491158899343 \N Estomba 3258 \N \N MALE 1990-05-21 -34.5598858 -58.4802436 45 1827 \N lpulvirenti +8790 2025-09-17 17:26:37.764144+00 2025-09-17 17:26:37.764152+00 f t Invitado Amar invitado-1758129997423@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6849 +8791 2025-09-17 17:36:37.771815+00 2025-09-17 17:36:37.771823+00 f t Invitado Amar invitado-1758130596937@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6850 +8792 2025-09-17 18:02:15.950258+00 2025-09-17 18:02:15.950267+00 f t Invitado Amar invitado-1758132135315@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-6851 +8793 2025-09-17 18:26:49.391391+00 2025-09-17 18:26:49.3914+00 f t Invitado Amar invitado-1758133608550@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6852 +8794 2025-09-17 18:28:01.36668+00 2025-09-17 18:28:01.366695+00 f t Invitado Amar invitado-1758133681540@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6853 +8795 2025-09-17 18:28:11.811314+00 2025-09-17 18:28:11.811323+00 f t Invitado Amar invitado-1758133691103@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6854 +8796 2025-09-17 18:32:51.303658+00 2025-09-17 18:32:51.303669+00 f t Invitado Amar invitado-1758133970305@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6855 +8797 2025-09-17 18:33:16.976997+00 2025-09-17 18:33:16.977008+00 f t Invitado Amar invitado-1758133996509@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6856 +8798 2025-09-17 18:34:37.331254+00 2025-09-17 18:34:37.331265+00 f t Invitado Amar invitado-1758134077105@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6857 +8799 2025-09-17 18:35:21.12614+00 2025-09-17 18:35:21.126149+00 f t Invitado Amar invitado-1758134120735@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-6858 +8800 2025-09-17 19:02:57.605987+00 2025-09-17 19:02:57.605999+00 f t Invitado Amar invitado-1758135775268@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6859 +8801 2025-09-17 19:15:19.420076+00 2025-09-17 19:15:19.420083+00 f t Invitado Amar invitado-1758136519061@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6860 +8802 2025-09-17 19:17:30.549377+00 2025-09-17 19:17:30.54939+00 f t Invitado Amar invitado-1758136648142@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6861 +8803 2025-09-17 19:33:08.966975+00 2025-09-17 19:33:08.966987+00 f t Invitado Amar invitado-1758137588344@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6862 +8804 2025-09-17 19:35:04.0072+00 2025-09-17 19:35:04.007214+00 f t Invitado Amar invitado-1758137703837@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-6863 +8805 2025-09-17 19:37:20.709432+00 2025-09-17 19:37:20.70944+00 f t Invitado Amar invitado-1758137840131@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-6864 +8806 2025-09-17 19:51:50.824898+00 2025-09-17 19:51:50.824906+00 f t Invitado Amar invitado-1758138710484@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6865 +8807 2025-09-17 20:02:06.680204+00 2025-09-17 20:02:06.680213+00 f t Invitado Amar invitado-1758139326397@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6866 +8808 2025-09-17 20:30:36.095639+00 2025-09-17 20:30:36.095647+00 f t Invitado Amar invitado-1758141034953@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6867 +8809 2025-09-17 20:38:39.885635+00 2025-09-17 20:38:39.885643+00 f t Invitado Amar invitado-1758141519342@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-6868 +8810 2025-09-17 20:54:57.294076+00 2025-09-17 20:54:57.294085+00 f t Micaela bianca manzione micamanzione6824@gmail.com 5493854027117 \N Humboldt 877 2F \N FEMALE \N \N \N 21 1831 \N mmanzione +8811 2025-09-17 20:56:16.294229+00 2025-09-17 20:56:16.294243+00 f t Invitado Amar invitado-1758142575955@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-6869 +8812 2025-09-17 21:03:15.508783+00 2025-09-17 21:03:15.508792+00 f t Invitado Amar invitado-1758142993415@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6870 +8813 2025-09-17 21:58:00.770516+00 2025-09-17 21:58:00.770526+00 f t Invitado Amar invitado-1758146280257@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-6871 +8814 2025-09-17 22:09:16.821415+00 2025-09-17 22:09:16.821421+00 f t Ona Palacios onapalacio047@gmail.com 5491151617163 \N Iberlucea 2912 6 A \N FEMALE \N -34.7059629 -58.3930025 70 1832 \N opalacios +8815 2025-09-17 22:40:45.549759+00 2025-09-17 22:40:45.551121+00 f t Invitado Amar invitado-1758148844356@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6872 +8816 2025-09-17 22:45:28.443349+00 2025-09-17 22:45:28.44337+00 f t Invitado Amar invitado-1758149126449@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6873 +8817 2025-09-17 22:54:26.557565+00 2025-09-17 22:54:26.557578+00 f t Invitado Amar invitado-1758149665476@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6874 +8818 2025-09-17 22:55:02.181789+00 2025-09-17 22:55:02.181804+00 f t Invitado Amar invitado-1758149701584@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6875 +13333 2025-11-14 22:18:51.976941+00 2025-11-14 22:18:51.976952+00 f t Invitado Amar invitado-1763158730881@example.com 55555555 \N \N \N \N \N 14 \N \N \N +8820 2025-09-17 23:12:01.715406+00 2025-09-17 23:12:01.715419+00 f t Invitado Amar invitado-1758150719867@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6876 +8821 2025-09-17 23:30:37.394767+00 2025-09-17 23:30:37.394775+00 f t Invitado Amar invitado-1758151836321@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6877 +8822 2025-09-17 23:55:23.838923+00 2025-09-17 23:55:23.838933+00 f t Invitado Amar invitado-1758153322200@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6878 +8823 2025-09-18 00:51:24.12634+00 2025-09-18 00:51:24.126353+00 f t Gabriela Medina gabymedina33@hotmail.com +542342463122 \N Valle 553 1e \N FEMALE \N -34.6244242 -58.4354234 14 1841 \N gmedina +8824 2025-09-18 01:16:26.184128+00 2025-09-18 01:16:26.184137+00 f t Invitado Amar invitado-1758158185057@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6879 +8825 2025-09-18 01:20:20.364189+00 2025-09-18 01:20:20.364198+00 f t Invitado Amar invitado-1758158419758@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6880 +8826 2025-09-18 01:26:44.25317+00 2025-09-18 01:26:44.253179+00 f t Ariel Spadoni betsabez@miastral.com +5491128780002 \N Ramon Falcon 1650 Piso 3, depto 27 \N MALE \N -34.6264447 -58.4523698 14 1838 \N aspadoni +8827 2025-09-18 02:06:08.20034+00 2025-09-18 02:06:08.20035+00 f t Invitado Amar invitado-1758161167875@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6881 +8828 2025-09-18 02:49:38.092873+00 2025-09-18 02:49:38.092884+00 f t Invitado Amar invitado-1758163778433@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6882 +8829 2025-09-18 02:54:49.556116+00 2025-09-18 02:54:49.556125+00 f t Invitado Amar invitado-1758164088957@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6883 +8830 2025-09-18 03:39:38.0447+00 2025-09-18 03:39:38.044712+00 f t Invitado Amar invitado-1758166776562@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6884 +8831 2025-09-18 04:05:46.758487+00 2025-09-18 04:05:46.758495+00 f t Invitado Amar invitado-1758168346050@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-6885 +8832 2025-09-18 05:06:59.445741+00 2025-09-18 05:06:59.44576+00 f t Invitado Amar invitado-1758172019202@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6886 +8833 2025-09-18 05:38:38.35945+00 2025-09-18 05:38:38.359463+00 f t Invitado Amar invitado-1758173918198@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6887 +8834 2025-09-18 06:22:01.742297+00 2025-09-18 06:22:01.742307+00 f t Invitado Amar invitado-1758176521132@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6888 +8835 2025-09-18 06:23:49.801146+00 2025-09-18 06:23:49.801159+00 f t Invitado Amar invitado-1758176628787@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-6889 +8836 2025-09-18 06:26:09.650962+00 2025-09-18 06:26:09.650972+00 f t Invitado Amar invitado-1758176769203@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-6890 +8837 2025-09-18 06:26:45.525758+00 2025-09-18 06:26:45.52577+00 f t Invitado Amar invitado-1758176804887@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6891 +8838 2025-09-18 06:32:43.662971+00 2025-09-18 06:32:43.66298+00 f t Invitado Amar invitado-1758177162714@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-6892 +8839 2025-09-18 07:17:11.635192+00 2025-09-18 07:17:11.635201+00 f t Invitado Amar invitado-1758179831063@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6893 +8840 2025-09-18 08:09:48.296483+00 2025-09-18 08:09:48.296492+00 f t Invitado Amar invitado-1758182989103@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6894 +8841 2025-09-18 09:53:56.863797+00 2025-09-18 09:53:56.863806+00 f t Invitado Amar invitado-1758189236517@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-6895 +8842 2025-09-18 10:27:37.449483+00 2025-09-18 10:27:37.449493+00 f t Invitado Amar invitado-1758191257112@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6896 +8843 2025-09-18 10:31:08.752747+00 2025-09-18 10:31:08.752758+00 f t Paula Zabala mpz13@hotmail.com +541162456599 \N Arevalo 2289 3B \N \N -34.576426 -58.4351324 1 \N \N pzabala +8844 2025-09-18 10:38:06.675793+00 2025-09-18 10:38:06.675808+00 f t Invitado Amar invitado-1758191886195@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6897 +8895 2025-09-18 22:47:59.126983+00 2025-09-18 22:47:59.126992+00 f t Invitado Amar invitado-1758235678876@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6939 +8845 2025-09-18 10:39:29.216787+00 2025-09-18 10:39:29.216797+00 f t Anna Piñero Leañez annapineroleanez@gmail.com +541150169487 \N Zapata 71 11 \N \N -34.5756743 -58.4378048 1 \N \N apineroleanez +8846 2025-09-18 11:22:34.537554+00 2025-09-18 11:22:34.537563+00 f t Invitado Amar invitado-1758194554143@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6898 +8847 2025-09-18 11:23:24.539625+00 2025-09-18 11:23:24.539634+00 f t Invitado Amar invitado-1758194603669@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6899 +8848 2025-09-18 11:27:20.362219+00 2025-09-18 11:27:20.362227+00 f t Invitado Amar invitado-1758194839800@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6900 +8849 2025-09-18 11:31:19.676868+00 2025-09-18 11:31:19.676878+00 f t Natalia Alcoba natalie.alcoba@gmail.com +541123913423 \N Cordoba 5641 C \N \N -34.5871535 -58.4405984 1 \N \N nalcoba +8850 2025-09-18 11:51:23.994864+00 2025-09-18 11:51:23.994873+00 f t Invitado Amar invitado-1758196283234@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6901 +8851 2025-09-18 12:14:31.571787+00 2025-09-18 12:14:31.5718+00 f t Invitado Amar invitado-1758197670567@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6902 +8852 2025-09-18 12:19:50.619981+00 2025-09-18 12:19:50.619993+00 f t Invitado Amar invitado-1758197990348@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6903 +8853 2025-09-18 12:24:02.487755+00 2025-09-18 12:24:02.487767+00 f t Invitado Amar invitado-1758198241838@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6904 +13334 2025-11-14 22:23:50.254185+00 2025-11-14 22:23:50.254197+00 f t Invitado Amar invitado-1763159027065@example.com 55555555 \N \N \N \N \N 14 \N \N \N +8855 2025-09-18 13:26:14.879014+00 2025-09-18 13:26:14.879024+00 f t Invitado Amar invitado-1758201974144@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6905 +8856 2025-09-18 13:50:06.981301+00 2025-09-18 13:50:06.981319+00 f t Invitado Amar invitado-1758203406473@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6906 +8857 2025-09-18 13:50:50.499278+00 2025-09-18 13:50:50.499288+00 f t Invitado Amar invitado-1758203450279@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6907 +8858 2025-09-18 13:51:37.557209+00 2025-09-18 13:51:37.557218+00 f t Invitado Amar invitado-1758203496327@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-6908 +8859 2025-09-18 14:04:10.50033+00 2025-09-18 14:04:10.500343+00 f t Invitado Amar invitado-1758204250051@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6909 +8860 2025-09-18 14:50:11.663835+00 2025-09-18 14:50:11.663844+00 f t Ivana Speroni ivanasperoni27@live.com.ar 5491141769793 \N Carlos Antonio Lopez 3346 entre lavallol y Campana \N FEMALE \N -34.5891002 -58.5087848 21 1837 \N isperoni +8861 2025-09-18 15:24:16.314835+00 2025-09-18 15:24:16.314847+00 f t Invitado Amar invitado-1758209056247@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-6910 +8862 2025-09-18 15:35:24.71336+00 2025-09-18 15:35:24.713369+00 f t matias catania matcat73@gmail.com 91122383950 \N RODRÍGUEZ PEÑA 526 PISO 6, DPTO. 11 \N MALE \N -34.6027478 -58.3913122 13 1839 \N mcatania +8863 2025-09-18 16:01:28.523712+00 2025-09-18 16:01:28.523721+00 f t Invitado Amar invitado-1758211288087@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-6911 +8864 2025-09-18 16:08:26.278497+00 2025-09-18 16:08:26.278506+00 f t Invitado Amar invitado-1758211710650@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-6912 +8865 2025-09-18 16:32:57.695511+00 2025-09-18 16:32:57.695525+00 f t Invitado Amar invitado-1758213177079@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6913 +8866 2025-09-18 16:34:11.179208+00 2025-09-18 16:34:11.179217+00 f t Invitado Amar invitado-1758213251001@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6914 +8867 2025-09-18 16:34:42.09768+00 2025-09-18 16:34:42.097694+00 f t Invitado Amar invitado-1758213281898@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6915 +8868 2025-09-18 17:06:51.014483+00 2025-09-18 17:06:51.014492+00 f t Invitado Amar invitado-1758215210426@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6916 +8869 2025-09-18 17:11:11.01572+00 2025-09-18 17:11:11.015734+00 f t marta ochoa martaelenaochoa14@gmail.com 91133491058 \N José Mármol 3229 casa \N FEMALE 1951-09-14 -34.542331 -58.4987652 59 1840 \N mochoa +8870 2025-09-18 17:13:39.065346+00 2025-09-18 17:13:39.065356+00 f t Invitado Amar invitado-1758215618447@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6917 +8871 2025-09-18 17:32:04.530929+00 2025-09-18 17:32:04.530944+00 f t Invitado Amar invitado-1758216724060@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6918 +8872 2025-09-18 17:45:25.151445+00 2025-09-18 17:45:25.151457+00 f t Invitado Amar invitado-1758217522959@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-6919 +8873 2025-09-18 18:10:36.19348+00 2025-09-18 18:10:36.193491+00 f t Invitado Amar invitado-1758219035846@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-6920 +8874 2025-09-18 18:12:03.561826+00 2025-09-18 18:12:03.561837+00 f t Invitado Amar invitado-1758219124480@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6921 +8875 2025-09-18 18:12:16.5754+00 2025-09-18 18:12:16.575409+00 f t Invitado Amar invitado-1758219136191@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6922 +8876 2025-09-18 18:25:29.174561+00 2025-09-18 18:25:29.174573+00 f t Invitado Amar invitado-1758219928200@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6923 +8877 2025-09-18 18:26:36.251232+00 2025-09-18 18:26:36.251241+00 f t Invitado Amar invitado-1758219994183@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6924 +8878 2025-09-18 18:30:23.546514+00 2025-09-18 18:30:23.546523+00 f t Clara Diaz mclaradiaz@gmail.com +541139334111 \N Dr. Norberto Quirno costa 1209 7B \N \N \N \N 9 \N \N cdiaz +8879 2025-09-18 18:30:37.744362+00 2025-09-18 18:30:37.744371+00 f t Selene Galvo candeg234@gmail.com +542616124033 \N Virrey del pino 2632 2 H \N FEMALE \N -34.5715099 -58.4626098 3 1843 \N sgalvo +8880 2025-09-18 18:48:33.797049+00 2025-09-18 18:48:33.797061+00 f t Invitado Amar invitado-1758221312362@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6925 +8881 2025-09-18 19:07:25.47433+00 2025-09-18 19:07:25.474339+00 f t Invitado Amar invitado-1758222444994@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-6926 +8882 2025-09-18 20:24:01.37549+00 2025-09-18 20:24:01.375499+00 f t Invitado Amar invitado-1758227039886@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6927 +8883 2025-09-18 20:42:37.598592+00 2025-09-18 20:42:37.598601+00 f t Invitado Amar invitado-1758228156627@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6928 +8884 2025-09-18 20:46:24.141397+00 2025-09-18 20:46:24.141408+00 f t Invitado Amar invitado-1758228378998@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6929 +8885 2025-09-18 21:01:52.625803+00 2025-09-18 21:01:52.625815+00 f t Invitado Amar invitado-1758229312027@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6930 +8886 2025-09-18 21:11:41.281396+00 2025-09-18 21:11:41.281406+00 f t Mariana Lasarte Bolognini mlasarte4@gmail.com +542215777672 \N 2 824 Pbc \N \N 37.37908 -121.8545025 147 \N \N mlasartebolognini-2 +8887 2025-09-18 21:38:46.526384+00 2025-09-18 21:38:46.526393+00 f t Invitado Amar invitado-1758231526164@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6931 +8888 2025-09-18 21:39:29.940512+00 2025-09-18 21:39:29.940522+00 f t Invitado Amar invitado-1758231569546@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6932 +8889 2025-09-18 21:48:08.078312+00 2025-09-18 21:48:08.078322+00 f t Invitado Amar invitado-1758232086922@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-6933 +8890 2025-09-18 21:53:04.461789+00 2025-09-18 21:53:04.461799+00 f t Invitado Amar invitado-1758232383952@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-6934 +8891 2025-09-18 22:10:38.762716+00 2025-09-18 22:10:38.762726+00 f t Invitado Amar invitado-1758233438369@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-6935 +8892 2025-09-18 22:16:03.534223+00 2025-09-18 22:16:03.534236+00 f t Invitado Amar invitado-1758233763075@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6936 +8893 2025-09-18 22:21:30.386337+00 2025-09-18 22:21:30.38635+00 f t Invitado Amar invitado-1758234089364@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-6937 +8894 2025-09-18 22:43:55.291703+00 2025-09-18 22:43:55.291711+00 f t Invitado Amar invitado-1758235433726@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-6938 +8896 2025-09-18 22:53:46.043429+00 2025-09-18 22:53:46.043441+00 f t Sabrina Caramelo caramelosabrina@gmail.com +541141936998 \N Juan Francisco Seguí 4635 13 02 \N \N \N -34.5733694 -58.4215567 1 1845 \N scaramelo +8897 2025-09-18 22:58:05.209646+00 2025-09-18 22:58:05.209656+00 f t Invitado Amar invitado-1758236284956@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6940 +8898 2025-09-18 22:58:21.831685+00 2025-09-18 22:58:21.831698+00 f t Invitado Amar invitado-1758236301849@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6941 +8899 2025-09-18 23:01:31.458082+00 2025-09-18 23:01:31.458091+00 f t Invitado Amar invitado-1758236491127@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6942 +8900 2025-09-18 23:14:22.525841+00 2025-09-18 23:14:22.525851+00 f t Invitado Amar invitado-1758237262505@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6943 +8901 2025-09-18 23:51:21.068292+00 2025-09-18 23:51:21.068306+00 f t Invitado Amar invitado-1758239481138@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6944 +8902 2025-09-19 00:35:27.320201+00 2025-09-19 00:35:27.320211+00 f t Invitado Amar invitado-1758242127458@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6945 +8903 2025-09-19 01:14:18.787492+00 2025-09-19 01:14:18.787504+00 f t Invitado Amar invitado-1758244458180@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6946 +8904 2025-09-19 01:18:09.067188+00 2025-09-19 01:18:09.067196+00 f t Invitado Amar invitado-1758244688022@example.com 55555555 \N \N \N \N \N 78 \N \N iamar-6947 +8905 2025-09-19 01:29:12.245984+00 2025-09-19 01:29:12.245995+00 f t Invitado Amar invitado-1758245351105@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6948 +8906 2025-09-19 01:32:46.007263+00 2025-09-19 01:32:46.007276+00 f t Invitado Amar invitado-1758245565067@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6949 +8907 2025-09-19 02:04:51.470079+00 2025-09-19 02:04:51.470088+00 f t Adriana Fernandez adrianadeborafernandez@gmail.com +541126179835 \N Guido Spano 2800 Edificio 224 1ro A \N \N -27.4870077 -58.9443121 74 \N \N afernandez-3 +8908 2025-09-19 02:14:29.647157+00 2025-09-19 02:14:29.647166+00 f t Invitado Amar invitado-1758248069012@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-6950 +8909 2025-09-19 02:27:27.644259+00 2025-09-19 02:27:27.644267+00 f t Invitado Amar invitado-1758248846997@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6951 +8910 2025-09-19 03:07:35.885082+00 2025-09-19 03:07:35.885091+00 f t Invitado Amar invitado-1758251255379@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-6952 +8911 2025-09-19 03:13:51.363191+00 2025-09-19 03:13:51.3632+00 f t Invitado Amar invitado-1758251630927@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-6953 +8912 2025-09-19 04:10:00.865373+00 2025-09-19 04:10:00.865385+00 f t Invitado Amar invitado-1758255000467@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6954 +8913 2025-09-19 05:24:48.221518+00 2025-09-19 05:24:48.221527+00 f t Invitado Amar invitado-1758259487507@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-6955 +8914 2025-09-19 05:26:35.478341+00 2025-09-19 05:26:35.47835+00 f t Invitado Amar invitado-1758259595101@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6956 +8915 2025-09-19 07:09:17.50589+00 2025-09-19 07:09:17.5059+00 f t Invitado Amar invitado-1758265757166@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6957 +8916 2025-09-19 09:43:59.501494+00 2025-09-19 09:43:59.501507+00 f t Invitado Amar invitado-1758275039086@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6958 +8917 2025-09-19 09:58:56.639484+00 2025-09-19 09:58:56.639494+00 f t Invitado Amar invitado-1758275936215@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6959 +13335 2025-11-14 22:25:20.394701+00 2025-11-14 22:25:20.394718+00 f t Invitado Amar invitado-1763159120293@example.com 55555555 \N \N \N \N \N 3 \N \N \N +8919 2025-09-19 11:07:57.094101+00 2025-09-19 11:07:57.09411+00 f t Invitado Amar invitado-1758280075544@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6960 +8920 2025-09-19 11:12:16.479241+00 2025-09-19 11:12:16.479252+00 f t Invitado Amar invitado-1758280335985@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-6961 +8921 2025-09-19 11:55:36.343834+00 2025-09-19 11:55:36.343845+00 f t Invitado Amar invitado-1758282935826@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6962 +8922 2025-09-19 12:03:18.954384+00 2025-09-19 12:03:18.954392+00 f t Invitado Amar invitado-1758283397814@example.com 55555555 \N \N \N \N \N 154 \N \N iamar-6963 +8923 2025-09-19 13:23:25.639572+00 2025-09-19 13:23:25.63958+00 f t Invitado Amar invitado-1758288216457@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6964 +8924 2025-09-19 14:14:45.380368+00 2025-09-19 14:14:45.380379+00 f t Invitado Amar invitado-1758291284214@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6965 +8925 2025-09-19 14:17:03.380074+00 2025-09-19 14:17:03.380086+00 f t Invitado Amar invitado-1758291422271@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-6966 +8926 2025-09-19 14:19:24.329561+00 2025-09-19 14:19:24.329571+00 f t Invitado Amar invitado-1758291563958@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-6967 +8927 2025-09-19 14:20:02.771293+00 2025-09-19 14:20:02.771306+00 f t Invitado Amar invitado-1758291601548@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-6968 +8928 2025-09-19 14:21:00.786072+00 2025-09-19 14:21:00.786082+00 f t Invitado Amar invitado-1758291660108@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-6969 +8929 2025-09-19 14:42:10.061254+00 2025-09-19 14:42:10.061263+00 f t Fernando Caraballo fercaraballo1989@gmail.com +541135705744 \N Charlone 1356 6 \N MALE \N -34.580813 -58.4612673 24 1846 \N fcaraballo +8930 2025-09-19 14:50:17.920338+00 2025-09-19 14:50:17.920352+00 f t Invitado Amar invitado-1758293417107@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-6970 +8931 2025-09-19 15:08:28.468653+00 2025-09-19 15:08:28.468662+00 f t Invitado Amar invitado-1758294506813@example.com 55555555 \N \N \N \N \N 155 \N \N iamar-6971 +8932 2025-09-19 15:13:26.000266+00 2025-09-19 15:13:26.000277+00 f t Invitado Amar invitado-1758294806665@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-6972 +8933 2025-09-19 15:25:24.51141+00 2025-09-19 15:25:24.511421+00 f t Invitado Amar invitado-1758295524263@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-6973 +8934 2025-09-19 15:36:53.494724+00 2025-09-19 15:36:53.49474+00 f t Invitado Amar invitado-1758296213052@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6974 +8935 2025-09-19 15:52:38.168408+00 2025-09-19 15:52:38.168419+00 f t Invitado Amar invitado-1758297158251@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-6975 +8936 2025-09-19 16:12:37.44364+00 2025-09-19 16:12:37.443649+00 f t Invitado Amar invitado-1758298355593@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6976 +8937 2025-09-19 16:17:29.833175+00 2025-09-19 16:17:29.833186+00 f t Invitado Amar invitado-1758298649443@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-6977 +8938 2025-09-19 16:31:55.094184+00 2025-09-19 16:31:55.094193+00 f t Invitado Amar invitado-1758299513256@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-6978 +8939 2025-09-19 16:36:37.025618+00 2025-09-19 16:36:37.025626+00 f t Invitado Amar invitado-1758299795320@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6979 +8940 2025-09-19 16:44:54.41492+00 2025-09-19 16:44:54.414928+00 f t Invitado Amar invitado-1758300294480@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-6980 +8941 2025-09-19 16:56:34.797541+00 2025-09-19 16:56:34.797553+00 f t Invitado Amar invitado-1758300994465@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-6981 +8942 2025-09-19 16:59:27.148529+00 2025-09-19 16:59:27.148538+00 f t Invitado Amar invitado-1758301166628@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-6982 +8943 2025-09-19 17:15:00.219389+00 2025-09-19 17:15:00.219402+00 f t Invitado Amar invitado-1758302099057@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6983 +8944 2025-09-19 17:16:21.970726+00 2025-09-19 17:16:21.970735+00 f t Invitado Amar invitado-1758302181089@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6984 +8945 2025-09-19 17:29:01.026982+00 2025-09-19 17:29:01.026994+00 f t Invitado Amar invitado-1758302940746@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6985 +8946 2025-09-19 17:36:18.458409+00 2025-09-19 17:36:18.458419+00 f t Invitado Amar invitado-1758303378017@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6986 +8947 2025-09-19 17:44:11.111604+00 2025-09-19 17:44:11.111613+00 f t Josefina Spehrs josefinaspehrs@yahoo.com 5491141701800 \N Pasaje Cotagaita 1856 \N \N FEMALE \N -34.7218717 -58.3501034 44 \N \N jspehrs +8948 2025-09-19 17:46:33.6121+00 2025-09-19 17:46:33.612109+00 f t Invitado Amar invitado-1758303992914@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6987 +8949 2025-09-19 17:50:27.047115+00 2025-09-19 17:50:27.047126+00 f t Invitado Amar invitado-1758304226276@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-6988 +8950 2025-09-19 17:59:40.469037+00 2025-09-19 17:59:40.469046+00 f t Invitado Amar invitado-1758304780196@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-6989 +8951 2025-09-19 18:00:11.895476+00 2025-09-19 18:00:11.89549+00 f t Invitado Amar invitado-1758304813495@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-6990 +8952 2025-09-19 18:33:44.004439+00 2025-09-19 18:33:44.004449+00 f t Invitado Amar invitado-1758306823637@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6991 +8953 2025-09-19 18:39:49.220171+00 2025-09-19 18:39:49.220181+00 f t Invitado Amar invitado-1758307189035@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6992 +8954 2025-09-19 18:57:44.708796+00 2025-09-19 18:57:44.708808+00 f t Invitado Amar invitado-1758308263948@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-6993 +8955 2025-09-19 19:12:08.450309+00 2025-09-19 19:12:08.450321+00 f t Invitado Amar invitado-1758309127754@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6994 +8956 2025-09-19 19:14:36.366614+00 2025-09-19 19:14:36.366623+00 f t Invitado Amar invitado-1758309276222@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-6995 +8957 2025-09-19 19:53:43.450231+00 2025-09-19 19:53:43.450241+00 f t Invitado Amar invitado-1758311623041@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-6996 +13336 2025-11-14 22:32:24.086433+00 2025-11-14 22:32:24.086446+00 f t Invitado Amar invitado-1763159543076@example.com 55555555 \N \N \N \N \N 84 \N \N \N +8959 2025-09-19 20:08:27.559915+00 2025-09-19 20:08:27.559924+00 f t Invitado Amar invitado-1758312507362@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-6997 +8960 2025-09-19 20:09:07.46598+00 2025-09-19 20:09:07.46599+00 f t Invitado Amar invitado-1758312546731@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-6998 +8961 2025-09-19 20:24:51.922086+00 2025-09-19 20:24:51.922098+00 f t Belen Marcos belu_marc@hotmail.com +541123888303 \N tres argentos 2172 3B \N \N \N -34.4955471 -58.497583 6 \N \N bmarcos +8962 2025-09-19 20:30:00.349213+00 2025-09-19 20:30:00.349227+00 f t Invitado Amar invitado-1758313800149@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-6999 +8963 2025-09-19 20:46:05.366323+00 2025-09-19 20:46:05.366332+00 f t Invitado Amar invitado-1758314765132@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7000 +8964 2025-09-19 20:55:03.238349+00 2025-09-19 20:55:03.238363+00 f t lidia ayala lidiaedithan@gmail.com 91131721021 \N arenal 2445 22 F \N FEMALE 1965-08-03 -34.5746336 -58.4377898 1 \N \N layala +8965 2025-09-19 20:55:40.607631+00 2025-09-19 20:55:40.607642+00 f t Invitado Amar invitado-1758315340764@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-7001 +8966 2025-09-19 21:31:23.201968+00 2025-09-19 21:31:23.201996+00 f t Invitado Amar invitado-1758317481416@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7002 +8967 2025-09-19 21:41:57.620034+00 2025-09-19 21:41:57.620044+00 f t maria paula gudiña mpgudina@gmail.com +541133908444 \N Dean Funes 995 4to c \N \N -34.8457508 -58.5253278 11 \N \N mgudina +8968 2025-09-19 21:42:34.379751+00 2025-09-19 21:42:34.379767+00 f t Invitado Amar invitado-1758318154299@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7003 +8969 2025-09-19 22:07:19.947904+00 2025-09-19 22:07:19.947914+00 f t Invitado Amar invitado-1758319638589@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7004 +8970 2025-09-19 22:14:33.105584+00 2025-09-19 22:14:33.105594+00 f t Invitado Amar invitado-1758320072677@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7005 +8971 2025-09-19 22:14:35.286773+00 2025-09-19 22:14:35.286784+00 f t Invitado Amar invitado-1758320075383@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-7006 +8972 2025-09-19 22:27:03.923686+00 2025-09-19 22:27:03.923695+00 f t Invitado Amar invitado-1758320823162@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-7007 +8973 2025-09-19 22:44:59.432459+00 2025-09-19 22:44:59.432471+00 f t barbara rojas barbarasrm.96@gmail.com 91123935382 \N Cap justo g de Bermúdez 1775 \N \N FEMALE 1996-09-02 \N \N 39 \N \N brojas +8974 2025-09-19 22:49:55.637083+00 2025-09-19 22:49:55.637095+00 f t Invitado Amar invitado-1758322195216@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-7008 +8975 2025-09-19 22:52:13.504992+00 2025-09-19 22:52:13.505001+00 f t Invitado Amar invitado-1758322332746@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7009 +8976 2025-09-19 23:08:23.113218+00 2025-09-19 23:08:23.113227+00 f t Invitado Amar invitado-1758323302715@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7010 +8977 2025-09-19 23:14:03.757485+00 2025-09-19 23:14:03.757497+00 f t Jacqueline Cugliari jacquelinecugliari@gmail.com +541166645884 \N 840 2129 \N \N \N \N 113 \N \N jcugliari +8978 2025-09-19 23:33:55.602161+00 2025-09-19 23:33:55.60217+00 f t Invitado Amar invitado-1758324835249@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7011 +8979 2025-09-19 23:36:36.284478+00 2025-09-19 23:36:36.284488+00 f t Invitado Amar invitado-1758324995900@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-7012 +8980 2025-09-19 23:45:42.614778+00 2025-09-19 23:45:42.61479+00 f t Invitado Amar invitado-1758325542509@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7013 +8981 2025-09-20 00:01:37.497986+00 2025-09-20 00:01:37.498003+00 f t Invitado Amar invitado-1758326497106@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7014 +8982 2025-09-20 00:16:40.192772+00 2025-09-20 00:16:40.192785+00 f t Invitado Amar invitado-1758327398682@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7015 +8983 2025-09-20 00:18:14.470577+00 2025-09-20 00:18:14.47059+00 f t Invitado Amar invitado-1758327493889@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7016 +8984 2025-09-20 00:29:18.796817+00 2025-09-20 00:29:18.796826+00 f t Invitado Amar invitado-1758328158354@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7017 +8985 2025-09-20 01:46:52.311898+00 2025-09-20 01:46:52.311908+00 f t Amalia San Martin sanmartin.malu@gmail.com +541154052908 \N Monseñor Larumbe 138 \N \N -34.4891105 -58.5034227 6 \N \N asanmartin +8986 2025-09-20 03:07:13.035693+00 2025-09-20 03:07:13.035702+00 f t Invitado Amar invitado-1758337631820@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-7018 +8987 2025-09-20 03:38:07.072344+00 2025-09-20 03:38:07.072354+00 f t Invitado Amar invitado-1758339486675@example.com 55555555 \N \N \N \N \N 74 \N \N iamar-7019 +8988 2025-09-20 04:21:51.244846+00 2025-09-20 04:21:51.244855+00 f t Invitado Amar invitado-1758342110888@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7020 +8989 2025-09-20 04:26:53.074843+00 2025-09-20 04:26:53.074855+00 f t Invitado Amar invitado-1758342412671@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7021 +8990 2025-09-20 04:45:15.892741+00 2025-09-20 04:45:15.892755+00 f t Invitado Amar invitado-1758343515864@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7022 +8991 2025-09-20 10:18:36.18933+00 2025-09-20 10:18:36.18934+00 f t Invitado Amar invitado-1758363515628@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-7023 +8992 2025-09-20 10:23:27.582241+00 2025-09-20 10:23:27.582254+00 f t Mariana Distefano chizzoteamo6@gmail.com +541155893073 \N Domingo Faustino Sarmiento 1726 Hacer una llamada porque no funciona el timbre. Entre libertad e Hipólito Irigoyen \N \N -34.5224488 -58.4862564 82 \N \N mdistefano +8993 2025-09-20 10:30:02.910163+00 2025-09-20 10:30:02.91018+00 f t Invitado Amar invitado-1758364202261@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-7024 +8994 2025-09-20 11:04:44.105727+00 2025-09-20 11:04:44.10574+00 f t Invitado Amar invitado-1758366283465@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-7025 +8995 2025-09-20 11:57:14.987783+00 2025-09-20 11:57:14.987795+00 f t Invitado Amar invitado-1758369429024@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7026 +13732 2025-11-19 09:21:03.302425+00 2025-11-19 09:21:03.302434+00 f t Invitado Amar invitado-1763544062498@example.com 55555555 \N \N \N \N \N 9 \N \N \N +8996 2025-09-20 12:18:42.906016+00 2025-09-20 12:18:42.906028+00 f t Invitado Amar invitado-1758370720379@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-7027 +8997 2025-09-20 13:07:09.767002+00 2025-09-20 13:07:09.767012+00 f t Invitado Amar invitado-1758373629904@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-7028 +8998 2025-09-20 13:25:20.664305+00 2025-09-20 13:25:20.66432+00 f t Paula Galeazzi gmp2010@live.com.ar +541167374903 \N avenida riestra 1367 \N \N -34.6448677 -58.4286408 112 \N \N pgaleazzi +8999 2025-09-20 13:33:48.542866+00 2025-09-20 13:33:48.542874+00 f t Invitado Amar invitado-1758375227876@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7029 +9000 2025-09-20 13:43:28.609325+00 2025-09-20 13:43:28.609334+00 f t Invitado Amar invitado-1758375807096@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7030 +9001 2025-09-20 14:33:30.649234+00 2025-09-20 14:33:30.649246+00 f t Invitado Amar invitado-1758378810722@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7031 +9002 2025-09-20 14:48:28.529608+00 2025-09-20 14:48:28.529617+00 f t Matias Nicolas Ramirez mnr241002@gmail.com +5491127770370 \N Adolfo Alsina 1138 6B \N \N -34.6110334 -58.3854053 49 \N \N mramirez +9003 2025-09-20 14:58:19.666119+00 2025-09-20 14:58:19.666128+00 f t Invitado Amar invitado-1758380298348@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-7032 +9004 2025-09-20 15:14:50.389159+00 2025-09-20 15:14:50.389167+00 f t Invitado Amar invitado-1758381289925@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-7033 +9005 2025-09-20 15:19:08.262806+00 2025-09-20 15:19:08.262818+00 f t Invitado Amar invitado-1758381547915@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-7034 +9006 2025-09-20 15:29:19.875417+00 2025-09-20 15:29:19.875431+00 f t Invitado Amar invitado-1758382160369@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7035 +9007 2025-09-20 15:54:38.593061+00 2025-09-20 15:54:38.593071+00 f t Invitado Amar invitado-1758383678052@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7036 +9008 2025-09-20 16:28:56.696828+00 2025-09-20 16:28:56.696835+00 f t Francisco Campillay fcampillay.0710@hmail.com +542646272138 \N San Juan B la Salle 4500 Barrio Militar Duplex L \N \N \N \N \N 27 \N \N fcampillay +9009 2025-09-20 16:31:24.4805+00 2025-09-20 16:31:24.480512+00 f t Invitado Amar invitado-1758385883077@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7037 +9010 2025-09-20 18:00:46.076762+00 2025-09-20 18:00:46.076772+00 f t Natalia Teppa teppanatalia2019@gmail.com +542215756219 \N Humberto 1° 1894 1894 3B \N \N -34.6238365 -58.4113743 12 \N \N nteppa +9011 2025-09-20 18:07:17.919694+00 2025-09-20 18:07:17.919708+00 f t Invitado Amar invitado-1758391637277@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7038 +9012 2025-09-20 18:19:15.497109+00 2025-09-20 18:19:15.497118+00 f t Invitado Amar invitado-1758392355159@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-7039 +9013 2025-09-20 18:33:49.078461+00 2025-09-20 18:33:49.078473+00 f t Invitado Amar invitado-1758393228822@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7040 +9014 2025-09-20 18:50:38.145014+00 2025-09-20 18:50:38.145025+00 f t Invitado Amar invitado-1758394237681@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7041 +9015 2025-09-20 18:55:52.098431+00 2025-09-20 18:55:52.09844+00 f t Invitado Amar invitado-1758394551351@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7042 +9016 2025-09-20 19:06:41.321341+00 2025-09-20 19:06:41.321351+00 f t Invitado Amar invitado-1758395200203@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-7043 +9017 2025-09-20 19:07:44.129536+00 2025-09-20 19:07:44.129546+00 f t Invitado Amar invitado-1758395263444@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-7044 +9018 2025-09-20 19:47:37.098066+00 2025-09-20 19:47:37.098076+00 f t Invitado Amar invitado-1758397656742@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-7045 +9019 2025-09-20 20:24:10.930867+00 2025-09-20 20:24:10.930875+00 f t Invitado Amar invitado-1758399850300@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7046 +9020 2025-09-20 20:39:18.373057+00 2025-09-20 20:39:18.373066+00 f t Invitado Amar invitado-1758400758033@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7047 +9021 2025-09-20 22:04:37.322481+00 2025-09-20 22:04:37.32249+00 f t Invitado Amar invitado-1758405877030@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7048 +9022 2025-09-20 22:16:45.946006+00 2025-09-20 22:16:45.946015+00 f t Invitado Amar invitado-1758406604903@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7049 +9023 2025-09-20 22:19:56.544374+00 2025-09-20 22:19:56.544383+00 f t Lucas Ferrari leferrari.rubin@gmail.com +541555692983 \N Manzanares 3517 2H - Llamar no hay timbre. \N \N \N -34.5525336 -58.4795033 31 \N \N lferrari +9024 2025-09-20 22:33:49.268037+00 2025-09-20 22:33:49.268047+00 f t Invitado Amar invitado-1758407630165@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-7050 +9025 2025-09-20 22:49:18.086093+00 2025-09-20 22:49:18.086106+00 f t Emanuel Angel Roman Perez Frias emanuel.perezfrias@hotmail.com +541162691112 \N Av Corrientes 5463 Depto 4 \N \N -34.5974848 -58.441169 26 \N \N eperezfrias +9026 2025-09-20 23:30:01.518263+00 2025-09-20 23:30:01.518277+00 f t Invitado Amar invitado-1758411001049@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7051 +9027 2025-09-21 00:26:15.880316+00 2025-09-21 00:26:15.880326+00 f t Invitado Amar invitado-1758414375524@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7052 +9028 2025-09-21 00:35:56.700156+00 2025-09-21 00:35:56.700165+00 f t Invitado Amar invitado-1758414956344@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7053 +9029 2025-09-21 01:12:09.267901+00 2025-09-21 01:12:09.267913+00 f t Invitado Amar invitado-1758417128632@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7054 +9030 2025-09-21 01:13:20.901171+00 2025-09-21 01:13:20.90118+00 f t Invitado Amar invitado-1758417200440@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7055 +9031 2025-09-21 01:14:24.174841+00 2025-09-21 01:14:24.17485+00 f t Invitado Amar invitado-1758417264015@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7056 +9032 2025-09-21 02:29:55.716238+00 2025-09-21 02:29:55.716249+00 f t Invitado Amar invitado-1758421795038@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-7057 +9033 2025-09-21 03:23:49.737255+00 2025-09-21 03:23:49.737266+00 f t Invitado Amar invitado-1758425029392@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-7058 +9034 2025-09-21 05:41:51.689162+00 2025-09-21 05:41:51.689175+00 f t Invitado Amar invitado-1758433312155@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-7059 +9035 2025-09-21 07:03:57.94987+00 2025-09-21 07:03:57.949882+00 f t Invitado Amar invitado-1758438237454@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7060 +9036 2025-09-21 07:25:15.210757+00 2025-09-21 07:25:15.210766+00 f t Invitado Amar invitado-1758439514787@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-7061 +9037 2025-09-21 07:41:18.260196+00 2025-09-21 07:41:18.260205+00 f t Jocelyn Carrasco jocelyncarrasco91@gmail.com +541134224137 \N Corrientes 5546 Parrilla \N \N -34.5968973 -58.4421818 26 \N \N jcarrasco +9038 2025-09-21 08:52:13.049726+00 2025-09-21 08:52:13.049734+00 f t Invitado Amar invitado-1758444732370@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7062 +9039 2025-09-21 11:25:39.229649+00 2025-09-21 11:25:39.229658+00 f t Invitado Amar invitado-1758453938577@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7063 +9040 2025-09-21 11:49:57.003554+00 2025-09-21 11:49:57.003566+00 f t Invitado Amar invitado-1758455396454@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7064 +9041 2025-09-21 12:03:10.067337+00 2025-09-21 12:03:10.067348+00 f t Invitado Amar invitado-1758456189689@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7065 +9042 2025-09-21 12:40:19.247759+00 2025-09-21 12:40:19.247769+00 f t Laura Díaz lauri.ld11@gmail.com +541159021488 \N Avda Jujuy 1197 13B \N \N \N -34.6235869 -58.4023788 12 \N \N ldiaz +9043 2025-09-21 12:55:53.524588+00 2025-09-21 12:55:53.524596+00 f t Invitado Amar invitado-1758459352802@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7066 +9044 2025-09-21 14:26:01.97923+00 2025-09-21 14:26:01.979239+00 f t Invitado Amar invitado-1758464761368@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-7067 +9045 2025-09-21 14:38:40.37569+00 2025-09-21 14:38:40.375703+00 f t Invitado Amar invitado-1758465519975@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-7068 +9046 2025-09-21 15:21:00.425434+00 2025-09-21 15:21:00.425443+00 f t Juan Ariel Poczynok apoczynok@hotmail.com +5491169591457 \N Manuel Castro 345 1D no Funciona el portero \N \N -34.7560992 -58.4030321 71 \N \N jpoczynok +9047 2025-09-21 15:24:52.103625+00 2025-09-21 15:24:52.103633+00 f t Invitado Amar invitado-1758468291754@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7069 +9048 2025-09-21 15:35:34.406343+00 2025-09-21 15:35:34.406353+00 f t Invitado Amar invitado-1758468934718@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7070 +9049 2025-09-21 15:36:05.386542+00 2025-09-21 15:36:05.386551+00 f t Roxana Millares roxanaamillares@gmail.com +541126757368 \N General pico 3653 entre acevedo y aberastain \N \N \N -34.7366813 -58.3807562 70 \N \N rmillares +9050 2025-09-21 15:50:19.886031+00 2025-09-21 15:50:19.886042+00 f t Invitado Amar invitado-1758469819705@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-7071 +9051 2025-09-21 15:58:37.209997+00 2025-09-21 15:58:37.210005+00 f t Invitado Amar invitado-1758470316775@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7072 +9052 2025-09-21 16:04:11.654732+00 2025-09-21 16:04:11.65474+00 f t Invitado Amar invitado-1758470651227@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7073 +9053 2025-09-21 16:04:25.430471+00 2025-09-21 16:04:25.430484+00 f t Invitado Amar invitado-1758470665292@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7074 +9054 2025-09-21 16:04:55.738966+00 2025-09-21 16:04:55.738975+00 f t Invitado Amar invitado-1758470695615@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7075 +9055 2025-09-21 16:07:10.050704+00 2025-09-21 16:07:10.050713+00 f t Invitado Amar invitado-1758470829924@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7076 +9056 2025-09-21 16:17:05.965331+00 2025-09-21 16:17:05.96534+00 f t Invitado Amar invitado-1758471425497@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7077 +9057 2025-09-21 16:46:07.736427+00 2025-09-21 16:46:07.736439+00 f t Invitado Amar invitado-1758473167117@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7078 +9058 2025-09-21 18:19:57.289436+00 2025-09-21 18:19:57.289446+00 f t Invitado Amar invitado-1758478796704@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7079 +9059 2025-09-21 18:25:06.107017+00 2025-09-21 18:25:06.107032+00 f t Invitado Amar invitado-1758479105647@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7080 +9060 2025-09-21 19:18:04.951494+00 2025-09-21 19:18:04.951501+00 f t Alejandro Bordino ale.bordino@hotmail.com +541157499447 \N Argerich 2557 1°A \N MALE \N -34.6068491 -58.4868458 112 \N \N abordino +9061 2025-09-21 19:19:34.00987+00 2025-09-21 19:19:34.00988+00 f t Invitado Amar invitado-1758482373654@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7081 +9062 2025-09-21 19:20:21.590365+00 2025-09-21 19:20:21.590378+00 f t Invitado Amar invitado-1758482421309@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7082 +9063 2025-09-21 19:21:58.478519+00 2025-09-21 19:21:58.47853+00 f t Silvina Vernali silvivernali@yahoo.com.ar +541164223586 \N MAnuel R TRELLES 939 4 d \N \N \N \N 14 \N \N svernali +9064 2025-09-21 19:22:50.371305+00 2025-09-21 19:22:50.371317+00 f t Johana Caseres ohanacaseres92@hotmail.com 5491139531434 \N Lavalle 1 1844 piso 6 depto 38 \N FEMALE 1992-08-03 -34.6032697 -58.3953784 18 \N \N jcaseres-2 +9065 2025-09-21 19:29:27.724594+00 2025-09-21 19:29:27.724605+00 f t Invitado Amar invitado-1758482967273@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7083 +9066 2025-09-21 19:30:06.58281+00 2025-09-21 19:30:06.582824+00 f t Invitado Amar invitado-1758483006810@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-7084 +9067 2025-09-21 19:36:10.549476+00 2025-09-21 19:36:10.549485+00 f t Invitado Amar invitado-1758483370229@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7085 +9068 2025-09-21 19:39:36.358371+00 2025-09-21 19:39:36.35838+00 f t Juan Gonzalez bren-28-1997@hotmail.com +541164486013 \N Dr. Emilio ravignani 1251 Piso 1 \N \N -34.5858402 -58.4438042 1 \N \N jgonzalez-3 +9069 2025-09-21 19:58:46.654974+00 2025-09-21 19:58:46.654985+00 f t Invitado Amar invitado-1758484725206@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-7086 +9070 2025-09-21 20:14:09.753042+00 2025-09-21 20:14:09.75305+00 f t Invitado Amar invitado-1758485649318@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7087 +9071 2025-09-21 20:42:49.658451+00 2025-09-21 20:42:49.658464+00 f t Nicole Costas nicoleharder1234@gmail.com 5491170763752 \N Eduardo acevedo 11 \N \N FEMALE 1994-04-18 -34.6154556 -58.4307169 14 \N \N ncostas +9072 2025-09-21 21:05:01.137709+00 2025-09-21 21:05:01.137723+00 f t Invitado Amar invitado-1758488700058@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7088 +9073 2025-09-21 21:29:34.086162+00 2025-09-21 21:29:34.086172+00 f t Invitado Amar invitado-1758490173673@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-7089 +9074 2025-09-21 21:37:05.827518+00 2025-09-21 21:37:05.827527+00 f t Natalia Ferreira de lima natlima7979@gmail.com +541123896453 \N Av directorio 428 8c \N \N -34.6280242 -58.4338832 20 \N \N nferreiradelima +9075 2025-09-21 21:57:50.756342+00 2025-09-21 21:57:50.756351+00 f t Invitado Amar invitado-1758491870349@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-7090 +9076 2025-09-21 22:27:54.914602+00 2025-09-21 22:27:54.914614+00 f t María Cecilia Nalli nallimariacecilia@gmail.com +5491158682951 \N Río de Janeiro 9 11 D \N \N -34.6151566 -58.4299554 23 \N \N mnalli +9077 2025-09-21 22:30:37.338152+00 2025-09-21 22:30:37.33816+00 f t Invitado Amar invitado-1758493836904@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-7091 +9078 2025-09-21 23:47:02.061162+00 2025-09-21 23:47:02.061172+00 f t Invitado Amar invitado-1758498421521@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7092 +9079 2025-09-21 23:52:22.124632+00 2025-09-21 23:52:22.124641+00 f t Invitado Amar invitado-1758498741485@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-7093 +9080 2025-09-21 23:55:15.889403+00 2025-09-21 23:55:15.889412+00 f t Invitado Amar invitado-1758498915492@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-7094 +9081 2025-09-22 00:00:30.869256+00 2025-09-22 00:00:30.869269+00 f t Invitado Amar invitado-1758499230411@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-7095 +9082 2025-09-22 00:24:12.019961+00 2025-09-22 00:24:12.01997+00 f t Invitado Amar invitado-1758500649540@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7096 +9083 2025-09-22 01:12:56.561523+00 2025-09-22 01:12:56.561535+00 f t Invitado Amar invitado-1758503575479@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-7097 +9084 2025-09-22 01:14:19.930331+00 2025-09-22 01:14:19.930341+00 f t Invitado Amar invitado-1758503659109@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-7098 +9085 2025-09-22 01:30:44.604005+00 2025-09-22 01:30:44.604017+00 f t Invitado Amar invitado-1758504643685@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-7099 +9086 2025-09-22 01:57:59.884099+00 2025-09-22 01:57:59.884108+00 f t Invitado Amar invitado-1758506279503@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7100 +9087 2025-09-22 02:02:48.851563+00 2025-09-22 02:02:48.851572+00 f t Invitado Amar invitado-1758506568388@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7101 +13337 2025-11-14 22:58:14.888104+00 2025-11-14 22:58:14.888115+00 f t Invitado Amar invitado-1763161094390@example.com 55555555 \N \N \N \N \N 11 \N \N \N +9089 2025-09-22 03:13:35.637495+00 2025-09-22 03:13:35.637503+00 f t Invitado Amar invitado-1758510815353@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-7102 +9090 2025-09-22 07:03:16.14836+00 2025-09-22 07:03:16.148368+00 f t Invitado Amar invitado-1758524595384@example.com 55555555 \N \N \N \N \N 67 \N \N iamar-7103 +9091 2025-09-22 07:58:47.389794+00 2025-09-22 07:58:47.389804+00 f t Invitado Amar invitado-1758527926912@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7104 +9092 2025-09-22 08:15:42.720007+00 2025-09-22 08:15:42.720016+00 f t Invitado Amar invitado-1758528942250@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7105 +9093 2025-09-22 09:13:45.195839+00 2025-09-22 09:13:45.195847+00 f t Invitado Amar invitado-1758532424715@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-7106 +9094 2025-09-22 09:42:54.495165+00 2025-09-22 09:42:54.495177+00 f t Invitado Amar invitado-1758534173843@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7107 +13545 2025-11-17 21:12:57.576712+00 2025-11-17 21:12:57.576721+00 f t Invitado Amar invitado-1763413977026@example.com 55555555 \N \N \N \N \N 17 \N \N \N +9095 2025-09-22 09:53:08.218159+00 2025-09-22 09:53:08.218167+00 f t Invitado Amar invitado-1758534787659@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7108 +13338 2025-11-14 23:19:12.112606+00 2025-11-14 23:19:12.112619+00 f t Invitado Amar invitado-1763162350413@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9097 2025-09-22 11:05:54.057754+00 2025-09-22 11:05:54.057765+00 f t Invitado Amar invitado-1758539152409@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7109 +9098 2025-09-22 11:20:59.426918+00 2025-09-22 11:20:59.426927+00 f t Fernando Gonzales chinofer1971@gmail.com +542972408586 \N Melincue 3584 3584 1piso dto1 timbre arriba \N \N -33.6609804 -61.4571172 112 \N \N fgonzales +9099 2025-09-22 11:50:19.445323+00 2025-09-22 11:50:19.445332+00 f t Invitado Amar invitado-1758541818908@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7110 +9100 2025-09-22 11:55:29.959696+00 2025-09-22 11:55:29.959708+00 f t Invitado Amar invitado-1758542129213@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7111 +9101 2025-09-22 12:21:55.298103+00 2025-09-22 12:21:55.298115+00 f t Invitado Amar invitado-1758543715153@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7112 +9102 2025-09-22 12:47:05.409682+00 2025-09-22 12:47:05.409691+00 f t Invitado Amar invitado-1758545224742@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-7113 +9103 2025-09-22 12:50:26.567909+00 2025-09-22 12:50:26.567921+00 f t Invitado Amar invitado-1758545426070@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-7114 +9104 2025-09-22 13:08:04.359009+00 2025-09-22 13:08:04.359018+00 f t Invitado Amar invitado-1758546505585@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7115 +9105 2025-09-22 13:12:00.403722+00 2025-09-22 13:12:00.403731+00 f t Invitado Amar invitado-1758546719929@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7116 +9106 2025-09-22 13:12:01.960709+00 2025-09-22 13:12:01.960718+00 f t Invitado Amar invitado-1758546721662@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7117 +9107 2025-09-22 13:38:56.679202+00 2025-09-22 13:38:56.679211+00 f t Invitado Amar invitado-1758548294910@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-7118 +9108 2025-09-22 13:48:34.477974+00 2025-09-22 13:48:34.477983+00 f t Deborah Guerrero dag.1121@hotmail.com 5491151065670 \N Deheza 3131 piso 4 D \N FEMALE \N -34.5437905 -58.4809785 31 \N \N dguerrero +9109 2025-09-22 13:51:41.082733+00 2025-09-22 13:51:41.082741+00 f t Natalia Coldeira natycoldeira2013@gmail.com +541122564017 \N Ingeniero Marconi 1507 \N \N FEMALE \N -34.4666316 -58.5444541 155 \N \N ncoldeira +9110 2025-09-22 14:08:26.481592+00 2025-09-22 14:08:26.481601+00 f t Invitado Amar invitado-1758550105405@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7119 +9111 2025-09-22 14:19:46.369066+00 2025-09-22 14:19:46.369079+00 f t Invitado Amar invitado-1758550785929@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-7120 +9112 2025-09-22 14:27:27.816421+00 2025-09-22 14:27:27.816433+00 f t Invitado Amar invitado-1758551247186@example.com 55555555 \N \N \N \N \N 155 \N \N iamar-7121 +9113 2025-09-22 14:32:32.883247+00 2025-09-22 14:32:32.883257+00 f t Invitado Amar invitado-1758551552512@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-7122 +9114 2025-09-22 14:50:53.936331+00 2025-09-22 14:50:53.93634+00 f t Invitado Amar invitado-1758552653254@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7123 +9115 2025-09-22 14:52:37.994655+00 2025-09-22 14:52:37.994666+00 f t Invitado Amar invitado-1758552757242@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7124 +9116 2025-09-22 14:55:02.674025+00 2025-09-22 14:55:02.674039+00 f t Invitado Amar invitado-1758552902055@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-7125 +9117 2025-09-22 15:19:52.629606+00 2025-09-22 15:19:52.629613+00 f t Invitado Amar invitado-1758554392052@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7126 +9118 2025-09-22 15:20:53.782164+00 2025-09-22 15:20:53.782173+00 f t Invitado Amar invitado-1758554453788@example.com 55555555 \N \N \N \N \N 155 \N \N iamar-7127 +9119 2025-09-22 15:23:19.231025+00 2025-09-22 15:23:19.231034+00 f t Invitado Amar invitado-1758554599231@example.com 55555555 \N \N \N \N \N 155 \N \N iamar-7128 +9120 2025-09-22 15:26:13.811663+00 2025-09-22 15:26:13.811675+00 f t Luciano Mellera luchomellera@gmail.com 5491154643234 \N Jerónimo Salguero 1870 9B \N MALE \N -34.588429 -58.4150075 1 \N \N lmellera +9121 2025-09-22 15:56:42.722331+00 2025-09-22 15:56:42.722342+00 f t Invitado Amar invitado-1758556601620@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-7129 +9122 2025-09-22 15:57:20.029757+00 2025-09-22 15:57:20.029766+00 f t Invitado Amar invitado-1758556639514@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-7130 +9123 2025-09-22 16:04:17.687486+00 2025-09-22 16:04:17.687495+00 f t Invitado Amar invitado-1758557057035@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7131 +9124 2025-09-22 16:31:21.241936+00 2025-09-22 16:31:21.241945+00 f t Invitado Amar invitado-1758559779460@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-7132 +9125 2025-09-22 16:37:58.379595+00 2025-09-22 16:37:58.379604+00 f t Invitado Amar invitado-1758559078028@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-7133 +9126 2025-09-22 16:38:30.910621+00 2025-09-22 16:38:30.910631+00 f t María Clara Pizzurno m.clarapizzurno@gmail.com 5491173617778 \N Tucumán 971 Piso 4, 6.. Entre Carlos Pellegrini y Suipacha \N FEMALE \N -34.6012838 -58.3805787 13 \N \N mpizzurno +9127 2025-09-22 16:42:17.582252+00 2025-09-22 16:42:17.582261+00 f t Invitado Amar invitado-1758559337267@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7134 +9128 2025-09-22 16:53:27.759109+00 2025-09-22 16:53:27.759121+00 f t Invitado Amar invitado-1758560006952@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7135 +9129 2025-09-22 16:56:23.126485+00 2025-09-22 16:56:23.126495+00 f t Invitado Amar invitado-1758560182123@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7136 +9130 2025-09-22 17:05:22.591274+00 2025-09-22 17:05:22.591283+00 f t Invitado Amar invitado-1758560721936@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7137 +9131 2025-09-22 17:07:39.282658+00 2025-09-22 17:07:39.282671+00 f t Invitado Amar invitado-1758560858898@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-7138 +9132 2025-09-22 18:16:16.115726+00 2025-09-22 18:16:16.115738+00 f t Invitado Amar invitado-1758564975715@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7139 +9133 2025-09-22 18:20:58.004737+00 2025-09-22 18:20:58.004747+00 f t Invitado Amar invitado-1758565256466@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7140 +9134 2025-09-22 18:48:23.819038+00 2025-09-22 18:48:23.819047+00 f t Invitado Amar invitado-1758566903457@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-7141 +9135 2025-09-22 19:31:49.15975+00 2025-09-22 19:31:49.159758+00 f t Marina Orengo merymra@hotmail.com +541161872869 \N Nuñez 5350 3 \N \N \N -34.5646273 -58.4949529 29 \N \N morengo +9136 2025-09-22 19:36:18.827219+00 2025-09-22 19:36:18.827228+00 f t Invitado Amar invitado-1758569778384@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-7142 +9138 2025-09-22 19:52:33.404867+00 2025-09-22 19:52:33.404878+00 f t Invitado Amar invitado-1758570753260@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-7143 +9139 2025-09-22 20:51:42.929079+00 2025-09-22 20:51:42.929091+00 f t Invitado Amar invitado-1758574302986@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-7144 +9140 2025-09-22 20:59:21.418866+00 2025-09-22 20:59:21.418878+00 f t Invitado Amar invitado-1758574761077@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-7145 +9141 2025-09-22 21:15:44.208488+00 2025-09-22 21:15:44.208498+00 f t Invitado Amar invitado-1758575743777@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-7146 +9142 2025-09-22 21:20:15.328167+00 2025-09-22 21:20:15.328175+00 f t Invitado Amar invitado-1758576015490@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7147 +9143 2025-09-22 21:21:28.050564+00 2025-09-22 21:21:28.050573+00 f t Invitado Amar invitado-1758576088010@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7148 +9144 2025-09-22 21:45:55.197793+00 2025-09-22 21:45:55.197801+00 f t Invitado Amar invitado-1758577554565@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7149 +9145 2025-09-22 21:57:40.650104+00 2025-09-22 21:57:40.650113+00 f t Invitado Amar invitado-1758578260834@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-7150 +9146 2025-09-22 22:06:45.615329+00 2025-09-22 22:06:45.615339+00 f t Invitado Amar invitado-1758578803602@example.com 55555555 \N \N \N \N \N 33 \N \N iamar-7151 +9147 2025-09-22 22:14:10.816637+00 2025-09-22 22:14:10.816646+00 f t Invitado Amar invitado-1758579249449@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-7152 +9148 2025-09-22 22:28:49.612376+00 2025-09-22 22:28:49.612385+00 f t Invitado Amar invitado-1758580128863@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7153 +9149 2025-09-22 22:51:01.557536+00 2025-09-22 22:51:01.557545+00 f t Invitado Amar invitado-1758581461113@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7154 +9150 2025-09-22 23:23:05.836318+00 2025-09-22 23:23:05.836328+00 f t Invitado Amar invitado-1758583385356@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-7155 +9151 2025-09-22 23:34:19.334411+00 2025-09-22 23:34:19.334421+00 f t Candela Vera candelamvera@hotmail.com 5491161056876 \N Río de Janeiro 1033 4B \N FEMALE \N -34.6034936 -58.4325656 26 \N \N cvera +9152 2025-09-22 23:34:57.273169+00 2025-09-22 23:34:57.273178+00 f t Invitado Amar invitado-1758584095738@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7156 +9153 2025-09-22 23:38:26.458205+00 2025-09-22 23:38:26.458214+00 f t Invitado Amar invitado-1758584306236@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-7157 +9154 2025-09-22 23:38:38.434306+00 2025-09-22 23:38:38.434314+00 f t Invitado Amar invitado-1758584317884@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-7158 +9155 2025-09-22 23:38:38.833489+00 2025-09-22 23:38:38.8335+00 f t Invitado Amar invitado-1758584317416@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7159 +9156 2025-09-23 00:16:55.084264+00 2025-09-23 00:16:55.084273+00 f t Invitado Amar invitado-1758586614691@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7160 +9157 2025-09-23 00:19:40.231834+00 2025-09-23 00:19:40.231842+00 f t Lucila Bidondo bidondo89@gmail.com 5491121874031 \N av san juan 3726 pb a (no tengo timbre tienen que avisar al llegar) \N FEMALE 1989-10-07 -34.6258319 -58.4180325 11 \N \N lbidondo +9158 2025-09-23 00:26:52.670591+00 2025-09-23 00:26:52.670599+00 f t Invitado Amar invitado-1758587212736@example.com 55555555 \N \N \N \N \N 36 \N \N iamar-7161 +9159 2025-09-23 00:29:32.712138+00 2025-09-23 00:29:32.712149+00 f t Regina Cei reginaceiav@gmail.com +543413837812 \N Costa rica 4260 \N \N -34.5911934 -58.4228555 1 \N \N rcei +9160 2025-09-23 00:32:33.294411+00 2025-09-23 00:32:33.29442+00 f t Invitado Amar invitado-1758587552924@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-7162 +9161 2025-09-23 01:05:08.354338+00 2025-09-23 01:05:08.354353+00 f t Invitado Amar invitado-1758589507941@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7163 +9162 2025-09-23 01:16:11.766364+00 2025-09-23 01:16:11.766374+00 f t Invitado Amar invitado-1758590170400@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7164 +9163 2025-09-23 01:49:59.895194+00 2025-09-23 01:49:59.895209+00 f t Invitado Amar invitado-1758592199537@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7165 +9164 2025-09-23 04:00:51.629044+00 2025-09-23 04:00:51.629054+00 f t Invitado Amar invitado-1758600052544@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-7166 +13339 2025-11-14 23:21:17.422797+00 2025-11-14 23:21:17.422809+00 f t Invitado Amar invitado-1763162477023@example.com 55555555 \N \N \N \N \N 31 \N \N \N +9166 2025-09-23 06:44:48.705039+00 2025-09-23 06:44:48.705052+00 f t Invitado Amar invitado-1758609888770@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-7167 +9167 2025-09-23 07:42:18.012369+00 2025-09-23 07:42:18.012377+00 f t Invitado Amar invitado-1758613337473@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7168 +9168 2025-09-23 10:16:26.634807+00 2025-09-23 10:16:26.634819+00 f t Nancy Vargas nanuvargas@hotmail.com +541141640701 \N Manuel Rodriguez 1282 4toB \N FEMALE \N -33.5157941 -70.7599181 14 \N \N nvargas +9169 2025-09-23 10:29:17.811673+00 2025-09-23 10:29:17.811682+00 f t Invitado Amar invitado-1758623357262@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-7169 +9170 2025-09-23 11:11:14.604988+00 2025-09-23 11:11:14.604997+00 f t Invitado Amar invitado-1758625873646@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-7170 +9171 2025-09-23 11:15:13.39434+00 2025-09-23 11:15:13.394352+00 f t Invitado Amar invitado-1758626113244@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-7171 +9172 2025-09-23 11:17:07.104522+00 2025-09-23 11:17:07.104531+00 f t Invitado Amar invitado-1758626229254@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7172 +9173 2025-09-23 11:19:34.620701+00 2025-09-23 11:19:34.620709+00 f t Invitado Amar invitado-1758626374884@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-7173 +9174 2025-09-23 11:38:54.461448+00 2025-09-23 11:38:54.461456+00 f t Invitado Amar invitado-1758627534032@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7174 +9175 2025-09-23 11:46:09.973772+00 2025-09-23 11:46:09.973781+00 f t Invitado Amar invitado-1758627968781@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-7175 +9176 2025-09-23 12:00:59.506917+00 2025-09-23 12:00:59.506928+00 f t Roxana Martini roxanamartini@hotmail.com +541132936226 \N Paraguay 914 2 C \N \N \N -34.5977793 -58.3800662 37 \N \N rmartini +9177 2025-09-23 12:06:45.312706+00 2025-09-23 12:06:45.312715+00 f t Invitado Amar invitado-1758629205286@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7176 +9178 2025-09-23 12:13:03.499058+00 2025-09-23 12:13:03.499066+00 f t Invitado Amar invitado-1758629583663@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7177 +9179 2025-09-23 12:34:19.042217+00 2025-09-23 12:34:19.042229+00 f t Invitado Amar invitado-1758630859048@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7178 +9180 2025-09-23 13:04:09.368934+00 2025-09-23 13:04:09.368946+00 f t Invitado Amar invitado-1758632649609@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7179 +9181 2025-09-23 13:14:41.234678+00 2025-09-23 13:14:41.234686+00 f t Invitado Amar invitado-1758633280836@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7180 +9182 2025-09-23 13:58:18.336547+00 2025-09-23 13:58:18.336556+00 f t Daniel Arancibia rmxdaniels@outlook.com +541159359148 \N Rio de janeiro 609 \N \N -34.6084991 -58.4304193 23 \N \N darancibia +9183 2025-09-23 14:52:48.146262+00 2025-09-23 14:52:48.146272+00 f t Invitado Amar invitado-1758639169422@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7181 +9184 2025-09-23 14:53:32.569588+00 2025-09-23 14:53:32.569597+00 f t Invitado Amar invitado-1758639212101@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7182 +9185 2025-09-23 15:00:12.019577+00 2025-09-23 15:00:12.019592+00 f t Invitado Amar invitado-1758639611511@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-7183 +9186 2025-09-23 16:17:25.743352+00 2025-09-23 16:17:25.743365+00 f t Invitado Amar invitado-1758644245016@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-7184 +9187 2025-09-23 16:19:29.438842+00 2025-09-23 16:19:29.438851+00 f t Invitado Amar invitado-1758644370444@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7185 +9188 2025-09-23 16:28:09.21575+00 2025-09-23 16:28:09.215759+00 f t Invitado Amar invitado-1758644887908@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-7186 +9189 2025-09-23 17:10:00.870636+00 2025-09-23 17:10:00.870649+00 f t Invitado Amar invitado-1758647399297@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-7187 +9190 2025-09-23 17:26:19.823232+00 2025-09-23 17:26:19.823245+00 f t Invitado Amar invitado-1758648379595@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7188 +9191 2025-09-23 18:18:41.672791+00 2025-09-23 18:18:41.672799+00 f t Nicolas Mattera nicolasmattera96@gmail.com +541152621996 \N Riglos 108 7B \N \N -34.6199218 -58.4371985 14 \N \N nmattera +9192 2025-09-23 18:21:52.882851+00 2025-09-23 18:21:52.882863+00 f t Invitado Amar invitado-1758651712205@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7189 +9193 2025-09-23 18:39:29.499244+00 2025-09-23 18:39:29.499256+00 f t Invitado Amar invitado-1758652753215@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7190 +9194 2025-09-23 18:44:53.80016+00 2025-09-23 18:44:53.800172+00 f t Invitado Amar invitado-1758653092464@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7191 +9195 2025-09-23 18:45:21.520339+00 2025-09-23 18:45:21.520349+00 f t Invitado Amar invitado-1758653120323@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7192 +9196 2025-09-23 18:52:40.11758+00 2025-09-23 18:52:40.117592+00 f t Invitado Amar invitado-1758653560392@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7193 +9197 2025-09-23 19:00:42.410825+00 2025-09-23 19:00:42.410841+00 f t Laura Alcaraz lauradaianaalcaraz@gmail.com +541139167508 \N Gallo 1543 1B \N \N -34.5923347 -58.4093686 9 \N \N lalcaraz +9198 2025-09-23 19:16:42.74456+00 2025-09-23 19:16:42.744572+00 f t Invitado Amar invitado-1758655002405@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7194 +9199 2025-09-23 19:35:48.896829+00 2025-09-23 19:35:48.896838+00 f t Invitado Amar invitado-1758656148256@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7195 +9200 2025-09-23 20:25:03.293496+00 2025-09-23 20:25:03.293511+00 f t Invitado Amar invitado-1758659101378@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-7196 +9201 2025-09-23 20:36:15.873616+00 2025-09-23 20:36:15.873628+00 f t Invitado Amar invitado-1758659775629@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7197 +9202 2025-09-23 20:57:49.213019+00 2025-09-23 20:57:49.213033+00 f t Invitado Amar invitado-1758661067678@example.com 55555555 \N \N \N \N \N 15 \N \N iamar-7198 +9203 2025-09-23 21:08:48.42019+00 2025-09-23 21:08:48.420198+00 f t Invitado Amar invitado-1758661726988@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-7199 +9204 2025-09-23 21:44:13.841678+00 2025-09-23 21:44:13.841686+00 f t Invitado Amar invitado-1758663852596@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-7200 +9205 2025-09-23 21:53:18.558016+00 2025-09-23 21:53:18.558024+00 f t Invitado Amar invitado-1758664398010@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7201 +9206 2025-09-23 22:24:03.759563+00 2025-09-23 22:24:03.759571+00 f t Invitado Amar invitado-1758666243037@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7202 +9207 2025-09-23 22:32:54.930853+00 2025-09-23 22:32:54.930862+00 f t Invitado Amar invitado-1758666774569@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7203 +9208 2025-09-23 22:37:45.189886+00 2025-09-23 22:37:45.189898+00 f t Invitado Amar invitado-1758667068733@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-7204 +9209 2025-09-23 22:53:00.419589+00 2025-09-23 22:53:00.419598+00 f t Invitado Amar invitado-1758667980065@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7205 +9210 2025-09-23 22:54:05.954857+00 2025-09-23 22:54:05.95487+00 f t Lourdes Quartino lourdesquartino@hotmail.com +541160173239 \N Franklin 1811 6 B \N \N \N -34.6084169 -58.4428707 14 \N \N lquartino +9211 2025-09-23 23:00:37.84144+00 2025-09-23 23:00:37.841454+00 f t Invitado Amar invitado-1758668437387@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7206 +9212 2025-09-23 23:06:05.765693+00 2025-09-23 23:06:05.765705+00 f t Invitado Amar invitado-1758668765161@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-7207 +9213 2025-09-23 23:08:35.40153+00 2025-09-23 23:08:35.401538+00 f t Invitado Amar invitado-1758668915269@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7208 +9214 2025-09-23 23:09:15.278825+00 2025-09-23 23:09:15.278833+00 f t Invitado Amar invitado-1758668954939@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-7209 +9215 2025-09-23 23:20:39.074501+00 2025-09-23 23:20:39.074509+00 f t Invitado Amar invitado-1758669638687@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7210 +9216 2025-09-23 23:26:34.999633+00 2025-09-23 23:26:34.999643+00 f t Invitado Amar invitado-1758669994499@example.com 55555555 \N \N \N \N \N 153 \N \N iamar-7211 +9217 2025-09-23 23:41:22.326906+00 2025-09-23 23:41:22.326914+00 f t Invitado Amar invitado-1758670881804@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7212 +9218 2025-09-23 23:48:31.556554+00 2025-09-23 23:48:31.556562+00 f t Invitado Amar invitado-1758671310978@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7213 +9219 2025-09-24 00:11:40.984081+00 2025-09-24 00:11:40.984091+00 f t Thaynara Gonçalves Ferreira Gonçalves Ferreira narahgoncalves0823@gmail.com +5491126493555 \N Av Rivadavia 4227 piso 13 dpto 39 \N FEMALE 2025-04-02 -34.6132248 -58.4253355 23 \N \N tgoncalvesferreira +9220 2025-09-24 00:39:02.688362+00 2025-09-24 00:39:02.688375+00 f t Catalina Moso catalinaemosso@gmail.com +5491131351844 \N Jujuy 3350 \N \N FEMALE 2005-05-09 -27.9251297 -55.7581921 79 \N \N cmoso +9221 2025-09-24 00:47:43.655407+00 2025-09-24 00:47:43.655415+00 f t Invitado Amar invitado-1758674863263@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-7214 +9222 2025-09-24 01:33:48.261765+00 2025-09-24 01:33:48.261777+00 f t Invitado Amar invitado-1758677628076@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7215 +9223 2025-09-24 02:12:36.439438+00 2025-09-24 02:12:36.439451+00 f t Invitado Amar invitado-1758679956078@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7216 +9224 2025-09-24 02:35:26.762618+00 2025-09-24 02:35:26.762626+00 f t Invitado Amar invitado-1758681325633@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-7217 +9225 2025-09-24 02:54:08.847436+00 2025-09-24 02:54:08.847445+00 f t Invitado Amar invitado-1758682447378@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7218 +9226 2025-09-24 03:01:07.414813+00 2025-09-24 03:01:07.414826+00 f t Invitado Amar invitado-1758682866591@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7219 +9227 2025-09-24 04:02:25.064291+00 2025-09-24 04:02:25.064302+00 f t Invitado Amar invitado-1758686544520@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7220 +9228 2025-09-24 04:30:03.976594+00 2025-09-24 04:30:03.976609+00 f t Invitado Amar invitado-1758688202940@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7221 +9229 2025-09-24 04:47:46.765731+00 2025-09-24 04:47:46.765739+00 f t Invitado Amar invitado-1758689266163@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7222 +9230 2025-09-24 05:01:40.264357+00 2025-09-24 05:01:40.264368+00 f t Invitado Amar invitado-1758690099738@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-7223 +9231 2025-09-24 10:59:57.723534+00 2025-09-24 10:59:57.723543+00 f t Invitado Amar invitado-1758711596003@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7224 +9232 2025-09-24 11:12:20.067199+00 2025-09-24 11:12:20.067209+00 f t Invitado Amar invitado-1758712339652@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7225 +9233 2025-09-24 11:20:28.010616+00 2025-09-24 11:20:28.010625+00 f t Invitado Amar invitado-1758712827872@example.com 55555555 \N \N \N \N \N 40 \N \N iamar-7226 +9234 2025-09-24 11:37:44.961923+00 2025-09-24 11:37:44.961932+00 f t Invitado Amar invitado-1758713864621@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-7227 +9235 2025-09-24 11:40:37.431534+00 2025-09-24 11:40:37.431542+00 f t Invitado Amar invitado-1758714037284@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-7228 +9236 2025-09-24 11:59:02.310719+00 2025-09-24 11:59:02.310728+00 f t Teodora Antonio teoantonio0492@gmail.com +541127599611 \N Olmos 790 Casa \N \N -34.7616898 -58.4504955 71 \N \N tantonio +9237 2025-09-24 12:28:43.051292+00 2025-09-24 12:28:43.051303+00 f t Invitado Amar invitado-1758716922687@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7229 +9238 2025-09-24 12:29:40.634575+00 2025-09-24 12:29:40.634583+00 f t Invitado Amar invitado-1758716981056@example.com 55555555 \N \N \N \N \N 43 \N \N iamar-7230 +9239 2025-09-24 12:33:43.629229+00 2025-09-24 12:33:43.629239+00 f t Gonzalo Martin gaganplus@gmail.com +5491149747705 \N Av. Rivadavia 4243 9b \N MALE \N -34.6133011 -58.4255123 23 \N \N gmartin +9240 2025-09-24 12:35:50.620035+00 2025-09-24 12:35:50.620049+00 f t Invitado Amar invitado-1758717257280@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-7231 +9241 2025-09-24 13:22:07.065784+00 2025-09-24 13:22:07.065792+00 f t Invitado Amar invitado-1758720126693@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7232 +9242 2025-09-24 13:22:35.721953+00 2025-09-24 13:22:35.721961+00 f t Invitado Amar invitado-1758720155569@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7233 +9243 2025-09-24 13:23:42.274512+00 2025-09-24 13:23:42.274521+00 f t Invitado Amar invitado-1758720222123@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7234 +9244 2025-09-24 14:13:37.500111+00 2025-09-24 14:13:37.50012+00 f t Invitado Amar invitado-1758723216846@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-7235 +9245 2025-09-24 14:56:37.278131+00 2025-09-24 14:56:37.27814+00 f t Invitado Amar invitado-1758725796779@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-7236 +9246 2025-09-24 15:07:02.489118+00 2025-09-24 15:07:02.489127+00 f t Invitado Amar invitado-1758726421816@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7237 +9247 2025-09-24 15:07:21.050627+00 2025-09-24 15:07:21.050636+00 f t Invitado Amar invitado-1758726442790@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7238 +9248 2025-09-24 15:58:15.38629+00 2025-09-24 15:58:15.386302+00 f t Invitado Amar invitado-1758729494625@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-7239 +9249 2025-09-24 16:06:47.75141+00 2025-09-24 16:06:47.751423+00 f t Invitado Amar invitado-1758730007795@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7240 +9250 2025-09-24 16:08:03.757556+00 2025-09-24 16:08:03.757571+00 f t Invitado Amar invitado-1758730083320@example.com 55555555 \N \N \N \N \N 51 \N \N iamar-7241 +9251 2025-09-24 16:24:58.99688+00 2025-09-24 16:24:58.996889+00 f t Invitado Amar invitado-1758731098048@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-7242 +9252 2025-09-24 16:36:16.546908+00 2025-09-24 16:36:16.54692+00 f t Invitado Amar invitado-1758731776067@example.com 55555555 \N \N \N \N \N 54 \N \N iamar-7243 +9253 2025-09-24 16:50:28.523176+00 2025-09-24 16:50:28.523185+00 f t Invitado Amar invitado-1758732626896@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-7244 +9254 2025-09-24 17:20:15.581493+00 2025-09-24 17:20:15.581504+00 f t Matias Acevedo mathias.h.acevedo@gmail.com 5491134509632 \N guardia vieja 3938 1B, esquina av. medrano. \N MALE \N -34.6008494 -58.4197516 9 \N \N macevedo +9255 2025-09-24 17:27:51.701159+00 2025-09-24 17:27:51.70117+00 f t Invitado Amar invitado-1758734871326@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7245 +9256 2025-09-24 17:31:33.571605+00 2025-09-24 17:31:33.571618+00 f t Invitado Amar invitado-1758735093392@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7246 +9257 2025-09-24 17:35:50.904165+00 2025-09-24 17:35:50.904173+00 f t Invitado Amar invitado-1758735351507@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7247 +9258 2025-09-24 17:37:43.059203+00 2025-09-24 17:37:43.059215+00 f t Invitado Amar invitado-1758735462897@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7248 +9259 2025-09-24 17:53:32.459651+00 2025-09-24 17:53:32.459659+00 f t Invitado Amar invitado-1758736413068@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-7249 +9260 2025-09-24 18:03:02.95654+00 2025-09-24 18:03:02.956549+00 f t Invitado Amar invitado-1758736982753@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7250 +9261 2025-09-24 18:03:19.887569+00 2025-09-24 18:03:19.887578+00 f t Invitado Amar invitado-1758736999682@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7251 +9262 2025-09-24 18:08:42.115902+00 2025-09-24 18:08:42.115911+00 f t Invitado Amar invitado-1758737321912@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7252 +9263 2025-09-24 18:08:59.825266+00 2025-09-24 18:08:59.825277+00 f t Invitado Amar invitado-1758737339618@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7253 +9264 2025-09-24 18:09:35.056804+00 2025-09-24 18:09:35.056814+00 f t Invitado Amar invitado-1758737374852@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7254 +9265 2025-09-24 18:09:59.315636+00 2025-09-24 18:09:59.315646+00 f t Invitado Amar invitado-1758737515770@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7255 +9266 2025-09-24 18:13:24.932569+00 2025-09-24 18:13:24.932581+00 f t Invitado Amar invitado-1758737604719@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7256 +9267 2025-09-24 18:21:32.231487+00 2025-09-24 18:21:32.231498+00 f t Invitado Amar invitado-1758738208726@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7257 +9268 2025-09-24 18:24:15.517861+00 2025-09-24 18:24:15.517873+00 f t Invitado Amar invitado-1758738256153@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-7258 +9269 2025-09-24 18:24:48.292282+00 2025-09-24 18:24:48.292293+00 f t Invitado Amar invitado-1758738287924@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7259 +9270 2025-09-24 18:24:49.046199+00 2025-09-24 18:24:49.046214+00 f t Patricia caramelli patricaramelli@hotmail.com 5492215990410 \N Monroe 2470 piso 7 depto 06 \N FEMALE \N -34.5587363 -58.4605521 3 \N \N pcaramelli +9271 2025-09-24 18:25:53.703362+00 2025-09-24 18:25:53.703372+00 f t Invitado Amar invitado-1758738354301@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-7260 +9272 2025-09-24 18:26:03.030293+00 2025-09-24 18:26:03.030305+00 f t Invitado Amar invitado-1758738363861@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-7261 +9273 2025-09-24 18:26:46.245022+00 2025-09-24 18:26:46.24503+00 f t Invitado Amar invitado-1758738407078@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-7262 +9274 2025-09-24 19:19:58.329649+00 2025-09-24 19:19:58.329658+00 f t Invitado Amar invitado-1758741597959@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7263 +9275 2025-09-24 19:22:03.47066+00 2025-09-24 19:22:03.47067+00 f t Invitado Amar invitado-1758741723315@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7264 +9276 2025-09-24 19:26:25.819757+00 2025-09-24 19:26:25.819768+00 f t Pablo Cinquini pcinquini@coto.com.ar 5491154056495 \N Catamarca 985 PB 1 \N MALE \N -34.6212304 -58.4046208 12 \N \N pcinquini +9277 2025-09-24 19:29:04.584805+00 2025-09-24 19:29:04.584815+00 f t Invitado Amar invitado-1758742144104@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7265 +9278 2025-09-24 19:32:04.256989+00 2025-09-24 19:32:04.257002+00 f t Invitado Amar invitado-1758742323763@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7266 +9279 2025-09-24 19:34:32.647315+00 2025-09-24 19:34:32.647327+00 f t Invitado Amar invitado-1758742472387@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7267 +9280 2025-09-24 19:43:21.480646+00 2025-09-24 19:43:21.480657+00 f t Invitado Amar invitado-1758743118129@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7268 +9281 2025-09-24 19:43:56.674924+00 2025-09-24 19:43:56.674937+00 f t Invitado Amar invitado-1758743036289@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7269 +9282 2025-09-24 19:50:55.715802+00 2025-09-24 19:50:55.715815+00 f t Lourdes Sosa lourclausosa@gmail.com 5491132172065 \N Av.Mendoza 5172 1 piso dpto i \N FEMALE \N -34.5777502 -58.4843973 29 \N \N lsosa +9283 2025-09-24 19:52:13.00569+00 2025-09-24 19:52:13.005703+00 f t Invitado Amar invitado-1758743532563@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7270 +9284 2025-09-24 20:03:12.977241+00 2025-09-24 20:03:12.977252+00 f t Invitado Amar invitado-1758744192731@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7271 +9285 2025-09-24 20:30:02.247687+00 2025-09-24 20:30:02.247704+00 f t Invitado Amar invitado-1758745801521@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7272 +9286 2025-09-24 20:46:58.186587+00 2025-09-24 20:46:58.186595+00 f t Invitado Amar invitado-1758746818191@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7273 +9287 2025-09-24 20:51:55.86063+00 2025-09-24 20:51:55.860641+00 f t Invitado Amar invitado-1758747115306@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7274 +9288 2025-09-24 21:02:02.490709+00 2025-09-24 21:02:02.490722+00 f t Invitado Amar invitado-1758747721823@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-7275 +9289 2025-09-24 21:08:59.322816+00 2025-09-24 21:08:59.322825+00 f t Invitado Amar invitado-1758748138642@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-7276 +9290 2025-09-24 21:10:36.748519+00 2025-09-24 21:10:36.748528+00 f t Soledad Pozzuto solpozz@hotmail.com 5491135152500 \N Palestina 554 3 "15" \N FEMALE \N -34.605029 -58.4260597 23 \N \N spozzuto-2 +9291 2025-09-24 21:44:48.263474+00 2025-09-24 21:44:48.263482+00 f t Invitado Amar invitado-1758750287887@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7277 +9292 2025-09-24 22:17:40.533622+00 2025-09-24 22:17:40.53363+00 f t Invitado Amar invitado-1758752260056@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7278 +9293 2025-09-24 22:23:33.620804+00 2025-09-24 22:23:33.620812+00 f t Invitado Amar invitado-1758752612679@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7279 +9294 2025-09-24 22:30:11.940296+00 2025-09-24 22:30:11.94031+00 f t Invitado Amar invitado-1758753011775@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-7280 +9295 2025-09-24 22:31:05.783237+00 2025-09-24 22:31:05.783254+00 f t Invitado Amar invitado-1758753065611@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-7281 +9296 2025-09-24 22:45:00.851843+00 2025-09-24 22:45:00.851853+00 f t Invitado Amar invitado-1758753900268@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7282 +9298 2025-09-24 23:35:34.524498+00 2025-09-24 23:35:34.524512+00 f t Invitado Amar invitado-1758756934170@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7283 +9299 2025-09-24 23:49:04.070029+00 2025-09-24 23:49:04.070041+00 f t Invitado Amar invitado-1758757743453@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7284 +9300 2025-09-24 23:53:27.262548+00 2025-09-24 23:53:27.262558+00 f t Invitado Amar invitado-1758758006886@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7285 +9301 2025-09-25 00:02:00.635284+00 2025-09-25 00:02:00.635294+00 f t Invitado Amar invitado-1758758520225@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-7286 +9302 2025-09-25 00:10:47.786266+00 2025-09-25 00:10:47.786276+00 f t Invitado Amar invitado-1758759047256@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7287 +9303 2025-09-25 01:02:11.149769+00 2025-09-25 01:02:11.149778+00 f t Invitado Amar invitado-1758762130679@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7288 +9304 2025-09-25 01:18:55.399345+00 2025-09-25 01:18:55.399354+00 f t Invitado Amar invitado-1758763134149@example.com 55555555 \N \N \N \N \N 86 \N \N iamar-7289 +9305 2025-09-25 01:22:26.333402+00 2025-09-25 01:22:26.33341+00 f t Invitado Amar invitado-1758763345010@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7290 +9306 2025-09-25 02:06:33.581336+00 2025-09-25 02:06:33.581345+00 f t Invitado Amar invitado-1758765993672@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7291 +9307 2025-09-25 02:23:07.807303+00 2025-09-25 02:23:07.807312+00 f t Michelle Palma palmamichelle1516@gmail.com +541155255783 \N De Tomás Manuel de Anchorrna 1238 Piso 6 depto 42 \N FEMALE \N \N \N 9 \N \N mpalma +9308 2025-09-25 03:27:39.926468+00 2025-09-25 03:27:39.926477+00 f t Invitado Amar invitado-1758770858665@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7292 +9309 2025-09-25 03:57:59.635913+00 2025-09-25 03:57:59.635922+00 f t Invitado Amar invitado-1758772679138@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7293 +13340 2025-11-14 23:51:55.247218+00 2025-11-14 23:51:55.24723+00 f t Invitado Amar invitado-1763164314384@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9311 2025-09-25 06:06:19.92659+00 2025-09-25 06:06:19.926604+00 f t Romina Ntaka romina.ntaka@bue.edu.ar +541140355123 \N 14 de julio 1181 B \N FEMALE \N -34.5799347 -58.4617281 24 \N \N rntaka +9312 2025-09-25 06:37:58.301526+00 2025-09-25 06:37:58.301535+00 f t Invitado Amar invitado-1758782277601@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-7294 +9313 2025-09-25 08:22:56.493882+00 2025-09-25 08:22:56.49389+00 f t Invitado Amar invitado-1758788576100@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-7295 +9314 2025-09-25 09:04:31.624856+00 2025-09-25 09:04:31.624865+00 f t Invitado Amar invitado-1758791071216@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7296 +9315 2025-09-25 09:21:56.297147+00 2025-09-25 09:21:56.297157+00 f t Invitado Amar invitado-1758792115873@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-7297 +9316 2025-09-25 09:31:35.031703+00 2025-09-25 09:31:35.031713+00 f t Invitado Amar invitado-1758792694844@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-7298 +9317 2025-09-25 09:44:21.043491+00 2025-09-25 09:44:21.043501+00 f t Invitado Amar invitado-1758793460591@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7299 +9318 2025-09-25 11:43:11.423154+00 2025-09-25 11:43:11.423162+00 f t Invitado Amar invitado-1758800590182@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7300 +9319 2025-09-25 11:50:55.006963+00 2025-09-25 11:50:55.006979+00 f t Invitado Amar invitado-1758801054477@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7301 +9320 2025-09-25 13:07:49.721067+00 2025-09-25 13:07:49.721075+00 f t Invitado Amar invitado-1758805669394@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-7302 +9321 2025-09-25 13:08:34.870503+00 2025-09-25 13:08:34.870513+00 f t Invitado Amar invitado-1758805714397@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7303 +9322 2025-09-25 13:09:21.706323+00 2025-09-25 13:09:21.706332+00 f t Invitado Amar invitado-1758805761577@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-7304 +9323 2025-09-25 13:10:38.708564+00 2025-09-25 13:10:38.708577+00 f t Invitado Amar invitado-1758805838579@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-7305 +9324 2025-09-25 13:15:22.22587+00 2025-09-25 13:15:22.22588+00 f t Invitado Amar invitado-1758806123775@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-7306 +9325 2025-09-25 13:53:55.107886+00 2025-09-25 13:53:55.107895+00 f t Invitado Amar invitado-1758808434670@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-7307 +9326 2025-09-25 14:15:18.165107+00 2025-09-25 14:15:18.165119+00 f t Jose Roberto Franco francorobertoml@hotmail.com 1549894719 \N Leopardi 140 Piso 9 depto C \N MALE \N -34.6389768 -58.4976137 65 \N \N jfranco +9327 2025-09-25 14:21:31.375581+00 2025-09-25 14:21:31.37559+00 f t Invitado Amar invitado-1758810090145@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-7308 +9328 2025-09-25 14:25:51.594774+00 2025-09-25 14:25:51.594784+00 f t Invitado Amar invitado-1758810350441@example.com 55555555 \N \N \N \N \N 64 \N \N iamar-7309 +9329 2025-09-25 14:28:02.778934+00 2025-09-25 14:28:02.778943+00 f t Invitado Amar invitado-1758810483396@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7310 +9330 2025-09-25 14:45:42.653027+00 2025-09-25 14:45:42.653036+00 f t Invitado Amar invitado-1758811541862@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7311 +9331 2025-09-25 15:13:10.672891+00 2025-09-25 15:13:10.6729+00 f t Nestor Alfredo Yokhdar nesfacu@yahoo.com.ar 91138485261 \N Camarones 1830 PB depto 4 \N MALE \N \N \N 34 \N \N nyokhdar +9332 2025-09-25 15:32:04.505367+00 2025-09-25 15:32:04.505379+00 f t Invitado Amar invitado-1758814323875@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7312 +9333 2025-09-25 15:32:37.573286+00 2025-09-25 15:32:37.573294+00 f t Invitado Amar invitado-1758814357164@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7313 +9334 2025-09-25 15:35:07.265086+00 2025-09-25 15:35:07.265099+00 f t Invitado Amar invitado-1758814506568@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-7314 +9335 2025-09-25 15:52:27.425089+00 2025-09-25 15:52:27.425098+00 f t Invitado Amar invitado-1758815546775@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7315 +9336 2025-09-25 15:57:10.165056+00 2025-09-25 15:57:10.165064+00 f t Invitado Amar invitado-1758815829820@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7316 +9337 2025-09-25 16:00:18.267784+00 2025-09-25 16:00:18.267797+00 f t Invitado Amar invitado-1758816018298@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-7317 +9338 2025-09-25 16:04:38.987491+00 2025-09-25 16:04:38.987499+00 f t Invitado Amar invitado-1758816278166@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7318 +9339 2025-09-25 16:05:47.085452+00 2025-09-25 16:05:47.085462+00 f t Invitado Amar invitado-1758816344683@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7319 +9340 2025-09-25 16:09:28.060569+00 2025-09-25 16:09:28.060578+00 f t Silvina Ferreyra djcastielo@gmail.com +541146735047 \N Monseñor Larumbe 12 9C \N \N \N -34.4882765 -58.501713 6 \N \N sferreyra +9341 2025-09-25 16:40:10.130717+00 2025-09-25 16:40:10.130731+00 f t Invitado Amar invitado-1758818409693@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7320 +9342 2025-09-25 16:45:41.457684+00 2025-09-25 16:45:41.457696+00 f t Invitado Amar invitado-1758818740736@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7321 +9343 2025-09-25 17:25:01.913334+00 2025-09-25 17:25:01.913348+00 f t Invitado Amar invitado-1758821101061@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7322 +9344 2025-09-25 17:32:43.0935+00 2025-09-25 17:32:43.09351+00 f t Carolina Nigro carito.nigro@gmail.con +543543534283 \N Juana manso 1409 111 \N FEMALE \N -34.615049 -58.3623433 30 \N \N cnigro +9345 2025-09-25 17:37:19.96827+00 2025-09-25 17:37:19.96828+00 f t Maria amalia Debenedetto Debenedettoamalia0@gmail.com 5491136206267 \N Avda libertador 680 5 piso , c \N FEMALE \N -34.5279821 -58.471047 59 \N \N mdebenedetto +9297 2025-09-24 22:56:53.419338+00 2025-09-24 22:56:53.419347+00 f t juan perez tumail@gmail.com +541144523698 \N carlos gardel 2164 2a \N \N -34.5977501 -58.4167139 9 \N \N jperez +9346 2025-09-25 17:39:14.211549+00 2025-09-25 17:39:14.211563+00 f t Invitado Amar invitado-1758821953711@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-7323 +9347 2025-09-25 18:02:48.904026+00 2025-09-25 18:02:48.904038+00 f t carla Antonelli carlianto1664@gmail.com +541173695350 \N arenales 2547 pbg \N \N -34.5930174 -58.4028522 9 \N \N cantonelli +9348 2025-09-25 18:33:17.651195+00 2025-09-25 18:33:17.651207+00 f t Invitado Amar invitado-1758825197316@example.com 55555555 \N \N \N \N \N 59 \N \N iamar-7324 +9349 2025-09-25 18:42:15.692466+00 2025-09-25 18:42:15.692478+00 f t Jv Ah car@gmail.com +541454551505 \N Car 92 1 \N \N 29.3888707 89.3141844 112 \N \N jah +9350 2025-09-25 18:44:04.461892+00 2025-09-25 18:44:04.461904+00 f t Invitado Amar invitado-1758825843216@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-7325 +9351 2025-09-25 18:50:38.03945+00 2025-09-25 18:50:38.039466+00 f t Invitado Amar invitado-1758826237160@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-7326 +9352 2025-09-25 18:59:52.48189+00 2025-09-25 18:59:52.4819+00 f t Invitado Amar invitado-1758826791070@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7327 +9353 2025-09-25 19:38:55.213248+00 2025-09-25 19:38:55.21326+00 f t Florencia Perez Ingaramo Toliperez26@gmail.com 5493482445226 \N Bolivar 187 5B \N FEMALE \N -34.6100516 -58.3735854 49 \N \N fingaramo +9354 2025-09-25 19:41:42.726285+00 2025-09-25 19:41:42.726297+00 f t Invitado Amar invitado-1758829302115@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7328 +9355 2025-09-25 19:52:27.067355+00 2025-09-25 19:52:27.067366+00 f t Invitado Amar invitado-1758829946789@example.com 55555555 \N \N \N \N \N 32 \N \N iamar-7329 +9356 2025-09-25 20:03:26.996177+00 2025-09-25 20:03:26.996187+00 f t Invitado Amar invitado-1758830605438@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-7330 +9357 2025-09-25 20:10:06.915387+00 2025-09-25 20:10:06.915401+00 f t Invitado Amar invitado-1758831007182@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7331 +9358 2025-09-25 20:55:00.527369+00 2025-09-25 20:55:00.527379+00 f t Invitado Amar invitado-1758833700092@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7332 +9359 2025-09-25 21:04:49.416608+00 2025-09-25 21:04:49.416618+00 f t Invitado Amar invitado-1758834289216@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7333 +9360 2025-09-25 21:15:27.438024+00 2025-09-25 21:15:27.438034+00 f t Invitado Amar invitado-1758834926894@example.com 55555555 \N \N \N \N \N 83 \N \N iamar-7334 +9361 2025-09-25 21:30:09.760539+00 2025-09-25 21:30:09.760551+00 f t Invitado Amar invitado-1758835809233@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7335 +9362 2025-09-25 21:50:33.876721+00 2025-09-25 21:50:33.876729+00 f t Noelia Batista noepbatista@gmail.com 5491124696518 \N Helguera 2457 PB \N FEMALE \N -34.6065446 -58.4889774 17 \N \N nbatista +9363 2025-09-25 21:58:11.826382+00 2025-09-25 21:58:11.826395+00 f t Invitado Amar invitado-1758837494446@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7336 +9364 2025-09-25 22:04:09.077227+00 2025-09-25 22:04:09.077241+00 f t Invitado Amar invitado-1758837846819@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7337 +9365 2025-09-25 22:25:28.460836+00 2025-09-25 22:25:28.460849+00 f t Juliana Martino martinojuliana7@gmail.com +5491153327413 \N gregorio de laferrere 3000 \N \N -34.63945 -58.463129 4 \N \N jmartino +9366 2025-09-25 22:32:29.457865+00 2025-09-25 22:32:29.457874+00 f t Invitado Amar invitado-1758839549560@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7338 +9367 2025-09-25 22:36:08.899919+00 2025-09-25 22:36:08.899929+00 f t Invitado Amar invitado-1758839769183@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7339 +9368 2025-09-25 22:50:46.708296+00 2025-09-25 22:50:46.708311+00 f t Invitado Amar invitado-1758840645788@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7340 +9369 2025-09-25 23:10:42.765331+00 2025-09-25 23:10:42.765343+00 f t Invitado Amar invitado-1758841842053@example.com 55555555 \N \N \N \N \N 156 \N \N iamar-7341 +9370 2025-09-25 23:19:58.396493+00 2025-09-25 23:19:58.396507+00 f t Invitado Amar invitado-1758842398122@example.com 55555555 \N \N \N \N \N 27 \N \N iamar-7342 +9371 2025-09-25 23:37:54.401818+00 2025-09-25 23:37:54.401833+00 f t Invitado Amar invitado-1758843473890@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-7343 +9372 2025-09-25 23:45:31.830834+00 2025-09-25 23:45:31.830844+00 f t Invitado Amar invitado-1758843930714@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-7344 +9373 2025-09-25 23:54:16.500634+00 2025-09-25 23:54:16.500644+00 f t Invitado Amar invitado-1758844456379@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7345 +9374 2025-09-26 00:11:44.570305+00 2025-09-26 00:11:44.570315+00 f t Invitado Amar invitado-1758845503717@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-7346 +9375 2025-09-26 01:00:17.92299+00 2025-09-26 01:00:17.922999+00 f t Invitado Amar invitado-1758848415576@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7347 +9376 2025-09-26 01:02:23.090024+00 2025-09-26 01:02:23.090033+00 f t Sasha Lemos sashalemos32@gmail.com +541170664401 \N Gascón 574 49 \N \N -34.604933 -58.4245004 23 \N \N slemos +9377 2025-09-26 01:12:51.410557+00 2025-09-26 01:12:51.410566+00 f t Invitado Amar invitado-1758849169674@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-7348 +9378 2025-09-26 01:47:56.077426+00 2025-09-26 01:47:56.077439+00 f t Invitado Amar invitado-1758851273829@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7349 +9379 2025-09-26 01:55:32.79344+00 2025-09-26 01:55:32.793451+00 f t Invitado Amar invitado-1758851732002@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7350 +9380 2025-09-26 02:04:35.520052+00 2025-09-26 02:04:35.520065+00 f t Miriam Aiello aiellomiriamedith@gmail.com +541121939329 \N Oncativo 2178 4 c \N \N -31.4066982 -64.1561631 113 \N \N maiello +9381 2025-09-26 02:33:20.893442+00 2025-09-26 02:33:20.893454+00 f t Invitado Amar invitado-1758854000305@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7351 +9382 2025-09-26 02:35:48.373909+00 2025-09-26 02:35:48.373918+00 f t Invitado Amar invitado-1758854147881@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7352 +9383 2025-09-26 02:42:31.688295+00 2025-09-26 02:42:31.688305+00 f t Invitado Amar invitado-1758854551275@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7353 +9384 2025-09-26 03:06:12.821042+00 2025-09-26 03:06:12.821051+00 f t Invitado Amar invitado-1758856067378@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7354 +9385 2025-09-26 03:06:49.567576+00 2025-09-26 03:06:49.567586+00 f t Invitado Amar invitado-1758856009059@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-7355 +9386 2025-09-26 03:18:32.88119+00 2025-09-26 03:18:32.881201+00 f t Invitado Amar invitado-1758856712129@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-7356 +9387 2025-09-26 03:37:47.234813+00 2025-09-26 03:37:47.234828+00 f t Invitado Amar invitado-1758857961835@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7357 +9388 2025-09-26 04:01:25.293847+00 2025-09-26 04:01:25.293859+00 f t Invitado Amar invitado-1758859284881@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7358 +9389 2025-09-26 04:23:05.674046+00 2025-09-26 04:23:05.674059+00 f t Invitado Amar invitado-1758860584608@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-7359 +9390 2025-09-26 05:09:14.70166+00 2025-09-26 05:09:14.701674+00 f t Invitado Amar invitado-1758863353998@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-7360 +9391 2025-09-26 06:44:20.247908+00 2025-09-26 06:44:20.247917+00 f t Invitado Amar invitado-1758869059823@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-7361 +9392 2025-09-26 07:28:46.841235+00 2025-09-26 07:28:46.841246+00 f t Invitado Amar invitado-1758871725982@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-7362 +9393 2025-09-26 09:33:50.223408+00 2025-09-26 09:33:50.223419+00 f t Invitado Amar invitado-1758879229821@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7363 +9394 2025-09-26 09:58:03.521498+00 2025-09-26 09:58:03.52151+00 f t Invitado Amar invitado-1758880682871@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7364 +9395 2025-09-26 10:54:11.871519+00 2025-09-26 10:54:11.871532+00 f t Invitado Amar invitado-1758884049755@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7365 +9396 2025-09-26 10:57:10.380762+00 2025-09-26 10:57:10.380774+00 f t Invitado Amar invitado-1758884229984@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-7366 +9397 2025-09-26 11:35:24.518473+00 2025-09-26 11:35:24.518487+00 f t Invitado Amar invitado-1758886524083@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7367 +9398 2025-09-26 11:42:51.268945+00 2025-09-26 11:42:51.268954+00 f t Invitado Amar invitado-1758886968476@example.com 55555555 \N \N \N \N \N 65 \N \N iamar-7368 +9399 2025-09-26 11:56:49.587017+00 2025-09-26 11:56:49.587031+00 f t Invitado Amar invitado-1758887809911@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-7369 +9400 2025-09-26 12:25:16.996532+00 2025-09-26 12:25:16.996546+00 f t Invitado Amar invitado-1758889517566@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7370 +9401 2025-09-26 12:28:42.506341+00 2025-09-26 12:28:42.506352+00 f t Invitado Amar invitado-1758889727334@example.com 55555555 \N \N \N \N \N 62 \N \N iamar-7371 +9402 2025-09-26 12:34:48.432276+00 2025-09-26 12:34:48.432288+00 f t Invitado Amar invitado-1758890086793@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7372 +9403 2025-09-26 12:41:24.419823+00 2025-09-26 12:41:24.419833+00 f t Invitado Amar invitado-1758890483021@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7373 +9404 2025-09-26 12:59:47.921886+00 2025-09-26 12:59:47.921895+00 f t Invitado Amar invitado-1758891588011@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7374 +9405 2025-09-26 13:12:40.979101+00 2025-09-26 13:12:40.979111+00 f t Invitado Amar invitado-1758892360235@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7375 +9406 2025-09-26 13:19:10.859279+00 2025-09-26 13:19:10.859289+00 f t Invitado Amar invitado-1758892750504@example.com 55555555 \N \N \N \N \N 63 \N \N iamar-7376 +9407 2025-09-26 13:22:28.145266+00 2025-09-26 13:22:28.145278+00 f t Juan Martinez martinezjuanma39@gmail.com +541158081947 \N juan bautista alberdi 555 14 b \N MALE \N -34.5061309 -58.4815021 39 \N \N jmartinez-3 +9408 2025-09-26 13:31:06.952411+00 2025-09-26 13:31:06.952425+00 f t Invitado Amar invitado-1758893466882@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-7377 +9409 2025-09-26 13:59:12.426296+00 2025-09-26 13:59:12.426306+00 f t Invitado Amar invitado-1758895247338@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7378 +9410 2025-09-26 14:06:52.472189+00 2025-09-26 14:06:52.472199+00 f t Melisa Del Sordo melisanoeli@gmail.com +541134143688 \N Agrelo 3641 3 A \N \N -34.618544 -58.4174054 112 \N \N mdelsordo +9411 2025-09-26 14:22:20.351425+00 2025-09-26 14:22:20.351434+00 f t Invitado Amar invitado-1758896539933@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7379 +9412 2025-09-26 14:24:54.453817+00 2025-09-26 14:24:54.453828+00 f t Franco Casagrande fcasa2014@gmail.com +541162584196 \N Guatemala 6061 1 D \N MALE \N -34.576551 -58.4365793 1 \N \N fcasagrande +9413 2025-09-26 14:25:50.394591+00 2025-09-26 14:25:50.394601+00 f t Invitado Amar invitado-1758896750093@example.com 55555555 \N \N \N \N \N 12 \N \N iamar-7380 +9414 2025-09-26 14:38:03.197395+00 2025-09-26 14:38:03.197407+00 f t Invitado Amar invitado-1758897483049@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-7381 +9415 2025-09-26 14:41:10.433951+00 2025-09-26 14:41:10.433961+00 f t Invitado Amar invitado-1758897669893@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7382 +9416 2025-09-26 14:46:25.399508+00 2025-09-26 14:46:25.399518+00 f t Invitado Amar invitado-1758897983999@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-7383 +9417 2025-09-26 14:55:17.33637+00 2025-09-26 14:55:17.33638+00 f t Invitado Amar invitado-1758898516812@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7384 +9418 2025-09-26 15:42:27.337602+00 2025-09-26 15:42:27.337611+00 f t Invitado Amar invitado-1758901347039@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-7385 +9419 2025-09-26 15:44:27.715932+00 2025-09-26 15:44:27.715941+00 f t Alejandra Klein alejandranklein@gmail.com 5491166046923 \N Olleros 1800 4 A \N FEMALE \N -34.5691683 -58.4425619 3 \N \N aklein +9420 2025-09-26 15:47:39.756372+00 2025-09-26 15:47:39.756381+00 f t Invitado Amar invitado-1758901659441@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-7386 +9421 2025-09-26 15:56:18.1517+00 2025-09-26 15:56:18.151712+00 f t Invitado Amar invitado-1758902177551@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7387 +9422 2025-09-26 16:01:40.968906+00 2025-09-26 16:01:40.968919+00 f t Invitado Amar invitado-1758902500593@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7388 +9423 2025-09-26 16:01:47.010582+00 2025-09-26 16:01:47.010595+00 f t Invitado Amar invitado-1758902506206@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-7389 +9424 2025-09-26 16:06:35.670036+00 2025-09-26 16:06:35.670049+00 f t Invitado Amar invitado-1758902794945@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-7390 +9425 2025-09-26 16:07:52.278006+00 2025-09-26 16:07:52.278018+00 f t Invitado Amar invitado-1758902871637@example.com 55555555 \N \N \N \N \N 30 \N \N iamar-7391 +9426 2025-09-26 16:30:41.251346+00 2025-09-26 16:30:41.251357+00 f t Invitado Amar invitado-1758904240929@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7392 +9427 2025-09-26 16:56:02.73412+00 2025-09-26 16:56:02.734136+00 f t Invitado Amar invitado-1758905765285@example.com 55555555 \N \N \N \N \N 55 \N \N iamar-7393 +9428 2025-09-26 17:03:35.246947+00 2025-09-26 17:03:35.246958+00 f t Invitado Amar invitado-1758906213764@example.com 55555555 \N \N \N \N \N 10 \N \N iamar-7394 +9429 2025-09-26 17:11:09.628072+00 2025-09-26 17:11:09.628082+00 f t Invitado Amar invitado-1758906664102@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-7395 +9430 2025-09-26 17:14:02.781246+00 2025-09-26 17:14:02.781256+00 f t María Julia Suarez Majusuarez@gmail.com 5491121711048 \N Directorio 2540 1a \N FEMALE \N -34.63418 -58.4626477 4 \N \N msuarez +9431 2025-09-26 17:15:47.062706+00 2025-09-26 17:15:47.062715+00 f t Invitado Amar invitado-1758906945574@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-7396 +9432 2025-09-26 17:59:38.85576+00 2025-09-26 17:59:38.85577+00 f t Invitado Amar invitado-1758909578650@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-7397 +9433 2025-09-26 18:02:29.374805+00 2025-09-26 18:02:29.374815+00 f t Invitado Amar invitado-1758909749399@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-7398 +9434 2025-09-26 18:03:58.516429+00 2025-09-26 18:03:58.516438+00 f t Invitado Amar invitado-1758909838495@example.com 55555555 \N \N \N \N \N 58 \N \N iamar-7399 +9435 2025-09-26 18:06:31.329538+00 2025-09-26 18:06:31.329546+00 f t antonio Santana antonio.santana.keheler@gmail.com 5491161418269 \N Concepción arenal 2387 2f \N MALE \N -34.5738502 -58.4370002 3 \N \N asantana +9436 2025-09-26 18:09:43.577991+00 2025-09-26 18:09:43.578002+00 f t Invitado Amar invitado-1758910183585@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7400 +9437 2025-09-26 18:19:10.175171+00 2025-09-26 18:19:10.17518+00 f t Natalia Vazquez Dranvazquez@gmail.com 5491132761478 \N Ramallo 4885 \N \N FEMALE \N -34.5535189 -58.4957639 31 \N \N nvazquez-2 +9438 2025-09-26 18:35:05.143589+00 2025-09-26 18:35:05.143604+00 f t Invitado Amar invitado-1758911704411@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-7401 +9439 2025-09-26 18:47:13.163363+00 2025-09-26 18:47:13.163372+00 f t Invitado Amar invitado-1758912431624@example.com 55555555 \N \N \N \N \N 56 \N \N iamar-7402 +9440 2025-09-26 18:50:40.351109+00 2025-09-26 18:50:40.351118+00 f t Invitado Amar invitado-1758912639946@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-7403 +9441 2025-09-26 19:04:13.331606+00 2025-09-26 19:04:13.331616+00 f t Invitado Amar invitado-1758913453003@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7404 +9442 2025-09-26 19:27:07.246023+00 2025-09-26 19:27:07.246034+00 f t Invitado Amar invitado-1758914826513@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-7405 +9443 2025-09-26 19:37:17.892325+00 2025-09-26 19:37:17.892335+00 f t Noemi Acosta noe.acosta20@gmail.com 5491135627878 \N Guemes 4426 Timbre: Encargado 2 \N FEMALE \N -34.5826882 -58.4222759 1 \N \N nacosta +9444 2025-09-26 20:54:45.237729+00 2025-09-26 20:54:45.23774+00 f t Invitado Amar invitado-1758920084996@example.com 55555555 \N \N \N \N \N 17 \N \N iamar-7406 +9445 2025-09-26 20:55:16.306979+00 2025-09-26 20:55:16.306992+00 f t Facundo Desimone facudesimone@gmail.com +541134633101 \N French 2930 728 \N \N -34.5879502 -58.4044691 9 \N \N fdesimone +9446 2025-09-26 21:02:56.168867+00 2025-09-26 21:02:56.168879+00 f t Invitado Amar invitado-1758920575836@example.com 55555555 \N \N \N \N \N 75 \N \N iamar-7407 +9447 2025-09-26 21:12:08.954587+00 2025-09-26 21:12:08.954599+00 f t Invitado Amar invitado-1758921128086@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7408 +9448 2025-09-26 21:45:46.602049+00 2025-09-26 21:45:46.602058+00 f t Invitado Amar invitado-1758923146120@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-7409 +9449 2025-09-26 22:12:12.579843+00 2025-09-26 22:12:12.579854+00 f t Micaela Leguizamon leguizamon.mica.b@gmail.com +541156212869 \N Bacacay 2122 4D \N \N -34.6253842 -58.4602956 4 \N \N mleguizamon-2 +9450 2025-09-26 22:18:07.924718+00 2025-09-26 22:18:07.924728+00 f t Invitado Amar invitado-1758925087050@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7410 +9451 2025-09-26 22:26:21.159635+00 2025-09-26 22:26:21.159645+00 f t Monica sayago coquis3110@gmail.com +541168317409 \N Solis 785 19 \N FEMALE \N -33.0401463 -60.5920835 49 \N \N msayago +9452 2025-09-26 22:48:19.685545+00 2025-09-26 22:48:19.685554+00 f t Invitado Amar invitado-1758926899385@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7411 +9453 2025-09-26 22:55:54.603059+00 2025-09-26 22:55:54.603069+00 f t Invitado Amar invitado-1758927353914@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-7412 +9454 2025-09-26 22:56:38.430992+00 2025-09-26 22:56:38.431003+00 f t Invitado Amar invitado-1758927398429@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7413 +9455 2025-09-26 23:17:58.11084+00 2025-09-26 23:17:58.110852+00 f t Invitado Amar invitado-1758928676694@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-7414 +9456 2025-09-26 23:18:54.153535+00 2025-09-26 23:18:54.153545+00 f t Invitado Amar invitado-1758928733191@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-7415 +9457 2025-09-26 23:26:21.076105+00 2025-09-26 23:26:21.076117+00 f t Invitado Amar invitado-1758929180558@example.com 55555555 \N \N \N \N \N 155 \N \N iamar-7416 +9458 2025-09-26 23:48:47.045111+00 2025-09-26 23:48:47.045121+00 f t Sonia Elizabeth Acosta juanamagaligarcia247@gmail.com +541128338728 \N Monte 6874 1/ 15 \N FEMALE \N -34.6699739 -58.4984916 19 \N \N sacosta-2 +9459 2025-09-26 23:49:44.873578+00 2025-09-26 23:49:44.873588+00 f t Gustavo Saud gsaud@transplata.com.ar 91144378791 \N Uriburu 1001 Boating club lote 79 \N MALE 1986-03-14 -34.455045 -58.5152246 155 \N \N gsaud +9460 2025-09-27 00:30:59.639974+00 2025-09-27 00:30:59.639986+00 f t Invitado Amar invitado-1758933058625@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7417 +9461 2025-09-27 00:33:09.196755+00 2025-09-27 00:33:09.196765+00 f t Invitado Amar invitado-1758933188609@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7418 +9462 2025-09-27 03:20:58.118882+00 2025-09-27 03:20:58.118894+00 f t Invitado Amar invitado-1758943258139@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-7419 +9463 2025-09-27 04:05:11.468962+00 2025-09-27 04:05:11.468972+00 f t Invitado Amar invitado-1758945909881@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7420 +9464 2025-09-27 04:32:07.304016+00 2025-09-27 04:32:07.304029+00 f t Invitado Amar invitado-1758947526920@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-7421 +9465 2025-09-27 07:34:10.975461+00 2025-09-27 07:34:10.975473+00 f t Invitado Amar invitado-1758958450593@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-7422 +9466 2025-09-27 12:18:49.991884+00 2025-09-27 12:18:49.991893+00 f t Invitado Amar invitado-1758975528578@example.com 55555555 \N \N \N \N \N 39 \N \N iamar-7423 +9467 2025-09-27 13:11:25.857804+00 2025-09-27 13:11:25.857814+00 f t Invitado Amar invitado-1758978685827@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-7424 +9468 2025-09-27 13:36:23.605108+00 2025-09-27 13:36:23.605117+00 f t Invitado Amar invitado-1758980182913@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7425 +9469 2025-09-27 13:47:13.553447+00 2025-09-27 13:47:13.553455+00 f t Invitado Amar invitado-1758980833050@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7426 +9470 2025-09-27 13:51:04.890514+00 2025-09-27 13:51:04.890523+00 f t Invitado Amar invitado-1758981063827@example.com 55555555 \N \N \N \N \N 19 \N \N iamar-7427 +9471 2025-09-27 13:54:43.631935+00 2025-09-27 13:54:43.631949+00 f t Invitado Amar invitado-1758981283138@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7428 +9472 2025-09-27 13:55:21.476984+00 2025-09-27 13:55:21.476992+00 f t Invitado Amar invitado-1758981320856@example.com 55555555 \N \N \N \N \N 80 \N \N iamar-7429 +9473 2025-09-27 13:55:29.395685+00 2025-09-27 13:55:29.395694+00 f t Invitado Amar invitado-1758981328760@example.com 55555555 \N \N \N \N \N 72 \N \N iamar-7430 +9474 2025-09-27 14:04:06.410635+00 2025-09-27 14:04:06.410647+00 f t Invitado Amar invitado-1758981846054@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7431 +9475 2025-09-27 14:16:29.95689+00 2025-09-27 14:16:29.9569+00 f t Invitado Amar invitado-1758982589421@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-7432 +9476 2025-09-27 14:17:41.001072+00 2025-09-27 14:17:41.001081+00 f t Invitado Amar invitado-1758982660495@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7433 +9477 2025-09-27 14:17:49.526645+00 2025-09-27 14:17:49.526655+00 f t Invitado Amar invitado-1758982669101@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7434 +9478 2025-09-27 14:18:30.802146+00 2025-09-27 14:18:30.802161+00 f t Invitado Amar invitado-1758982710341@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-7435 +9479 2025-09-27 14:21:19.918475+00 2025-09-27 14:21:19.918487+00 f t Invitado Amar invitado-1758982879700@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7436 +9480 2025-09-27 14:24:38.401883+00 2025-09-27 14:24:38.401893+00 f t Invitado Amar invitado-1758983078152@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7437 +9481 2025-09-27 14:41:04.968638+00 2025-09-27 14:41:04.968649+00 f t Invitado Amar invitado-1758984063446@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-7438 +9482 2025-09-27 14:52:38.609231+00 2025-09-27 14:52:38.609243+00 f t Invitado Amar invitado-1758984758133@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7439 +9483 2025-09-27 15:14:50.460462+00 2025-09-27 15:14:50.460471+00 f t Invitado Amar invitado-1758986089973@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-7440 +9484 2025-09-27 15:38:44.313519+00 2025-09-27 15:38:44.313529+00 f t Invitado Amar invitado-1758987523887@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7441 +9485 2025-09-27 15:40:18.894669+00 2025-09-27 15:40:18.894682+00 f t sdjkab jkdhik lkgfjkds@gmail.com +542332425445 \N ljg 34 2 \N \N \N \N 9 \N \N sjkdhik +9486 2025-09-27 15:41:47.107989+00 2025-09-27 15:41:47.108+00 f t MARIANGELES DUBE mariangelesdube25@gmail.com +542615886206 \N Avenida Pueyrredón 2478 2c \N FEMALE \N -34.5857368 -58.3939462 9 \N \N mdube +9487 2025-09-27 16:02:23.686591+00 2025-09-27 16:02:23.6866+00 f t Invitado Amar invitado-1758988943121@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7442 +9488 2025-09-27 16:02:52.386044+00 2025-09-27 16:02:52.386058+00 f t Invitado Amar invitado-1758988971985@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7443 +9489 2025-09-27 16:03:04.671766+00 2025-09-27 16:03:04.671776+00 f t Invitado Amar invitado-1758988984519@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7444 +9490 2025-09-27 16:30:18.171489+00 2025-09-27 16:30:18.171504+00 f t Invitado Amar invitado-1758990617407@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-7445 +9491 2025-09-27 16:55:06.866042+00 2025-09-27 16:55:06.866056+00 f t marcelo medere medemar@gmail.com 91162243030 \N Azcuenaga 1038 3 D \N MALE 1964-11-02 -34.5919667 -58.3985746 9 \N \N mmedere +9492 2025-09-27 17:17:52.276578+00 2025-09-27 17:17:52.276587+00 f t Invitado Amar invitado-1758993470657@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7446 +9493 2025-09-27 17:18:44.682792+00 2025-09-27 17:18:44.682801+00 f t Carolina Cos carolinacos96@gmail.com +5491169472371 \N Santa Rosa 2785 \N \N -25.2884705 -57.5918177 9 \N \N ccos +9494 2025-09-27 18:31:53.685556+00 2025-09-27 18:31:53.685576+00 f t Invitado Amar invitado-1758997913123@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7447 +9495 2025-09-27 19:18:05.273895+00 2025-09-27 19:18:05.273909+00 f t Invitado Amar invitado-1759000685774@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7448 +13341 2025-11-14 23:52:39.904477+00 2025-11-14 23:52:39.904488+00 f t Invitado Amar invitado-1763164359498@example.com 55555555 \N \N \N \N \N 14 \N \N \N +13546 2025-11-17 21:14:15.154382+00 2025-11-17 21:14:15.154397+00 f t Invitado Amar invitado-1763414054755@example.com 55555555 \N \N \N \N \N 26 \N \N \N +9497 2025-09-27 20:18:01.443875+00 2025-09-27 20:18:01.443884+00 f t Invitado Amar invitado-1759004280924@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7449 +9498 2025-09-27 20:44:14.955318+00 2025-09-27 20:44:14.95533+00 f t Invitado Amar invitado-1759005854657@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7450 +9499 2025-09-27 23:01:34.427937+00 2025-09-27 23:01:34.427949+00 f t Invitado Amar invitado-1759014093585@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7451 +9500 2025-09-27 23:30:18.193714+00 2025-09-27 23:30:18.193723+00 f t Invitado Amar invitado-1759015817112@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7452 +9501 2025-09-28 00:04:15.457657+00 2025-09-28 00:04:15.457666+00 f t Invitado Amar invitado-1759017854644@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-7453 +9502 2025-09-28 00:27:41.992758+00 2025-09-28 00:27:41.992766+00 f t Invitado Amar invitado-1759019260857@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7454 +9503 2025-09-28 00:34:38.399293+00 2025-09-28 00:34:38.399305+00 f t Invitado Amar invitado-1759019678040@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-7455 +9504 2025-09-28 00:37:20.031693+00 2025-09-28 00:37:20.031702+00 f t Invitado Amar invitado-1759019838221@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7456 +9505 2025-09-28 00:42:28.629903+00 2025-09-28 00:42:28.629916+00 f t Invitado Amar invitado-1759020147890@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-7457 +9506 2025-09-28 01:16:46.568861+00 2025-09-28 01:16:46.56887+00 f t Invitado Amar invitado-1759022205990@example.com 55555555 \N \N \N \N \N 68 \N \N iamar-7458 +9507 2025-09-28 02:16:32.749578+00 2025-09-28 02:16:32.749591+00 f t Invitado Amar invitado-1759025792239@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7459 +9508 2025-09-28 02:49:30.578967+00 2025-09-28 02:49:30.578979+00 f t Invitado Amar invitado-1759027770544@example.com 55555555 \N \N \N \N \N 71 \N \N iamar-7460 +9509 2025-09-28 03:19:00.48791+00 2025-09-28 03:19:00.487925+00 f t Natalia Reynoso nataliaareynoso@gmail.com +541137875601 \N Almirante brown 2453 3. (Puerta negra, al lado del centro de ojos) \N FEMALE \N -34.765386 -58.3967743 71 \N \N nreynoso +9510 2025-09-28 03:44:47.857234+00 2025-09-28 03:44:47.857247+00 f t Invitado Amar invitado-1759031087448@example.com 55555555 \N \N \N \N \N 92 \N \N iamar-7461 +9511 2025-09-28 06:06:29.9554+00 2025-09-28 06:06:29.955409+00 f t Invitado Amar invitado-1759039589377@example.com 55555555 \N \N \N \N \N 31 \N \N iamar-7462 +9512 2025-09-28 06:41:58.175889+00 2025-09-28 06:41:58.175901+00 f t Invitado Amar invitado-1759041717718@example.com 55555555 \N \N \N \N \N 84 \N \N iamar-7463 +9513 2025-09-28 07:49:40.366597+00 2025-09-28 07:49:40.366614+00 f t Invitado Amar invitado-1759045778196@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7464 +13342 2025-11-14 23:53:38.869039+00 2025-11-14 23:53:38.869048+00 f t Invitado Amar invitado-1763164418541@example.com 55555555 \N \N \N \N \N 113 \N \N \N +9515 2025-09-28 11:16:06.734283+00 2025-09-28 11:16:06.734292+00 f t Invitado Amar invitado-1759058165171@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7465 +9517 2025-09-28 12:43:26.169728+00 2025-09-28 12:43:26.169736+00 f t Invitado Amar invitado-1759063404476@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-7467 +9518 2025-09-28 12:55:05.889032+00 2025-09-28 12:55:05.889046+00 f t Invitado Amar invitado-1759064105620@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7468 +9519 2025-09-28 13:03:28.961608+00 2025-09-28 13:03:28.96162+00 f t Invitado Amar invitado-1759064607836@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7469 +9520 2025-09-28 13:07:09.042351+00 2025-09-28 13:07:09.04236+00 f t Invitado Amar invitado-1759064828513@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-7470 +9521 2025-09-28 13:37:37.658807+00 2025-09-28 13:37:37.65882+00 f t Invitado Amar invitado-1759066657351@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7471 +9522 2025-09-28 13:53:53.664627+00 2025-09-28 13:53:53.664636+00 f t Invitado Amar invitado-1759067634488@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7472 +9523 2025-09-28 14:44:10.323696+00 2025-09-28 14:44:10.323708+00 f t Invitado Amar invitado-1759070649546@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7473 +9524 2025-09-28 14:53:32.626655+00 2025-09-28 14:53:32.626664+00 f t Invitado Amar invitado-1759071210919@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-7474 +9525 2025-09-28 14:58:57.146106+00 2025-09-28 14:58:57.146117+00 f t Invitado Amar invitado-1759071536826@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7475 +9526 2025-09-28 15:29:07.853936+00 2025-09-28 15:29:07.853945+00 f t Yamila Cores yamila.cores@hotmail.com +541157970405 \N Av san juan 2714 10 a \N \N \N -34.6239213 -58.402461 12 \N \N ycores +9527 2025-09-28 15:54:22.443523+00 2025-09-28 15:54:22.443534+00 f t Invitado Amar invitado-1759074861047@example.com 55555555 \N \N \N \N \N 87 \N \N iamar-7476 +9528 2025-09-28 15:59:54.265477+00 2025-09-28 15:59:54.265488+00 f t Invitado Amar invitado-1759075194909@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7477 +9529 2025-09-28 16:10:27.371681+00 2025-09-28 16:10:27.371693+00 f t Invitado Amar invitado-1759075826512@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-7478 +9530 2025-09-28 16:23:56.745022+00 2025-09-28 16:23:56.745034+00 f t Invitado Amar invitado-1759076634986@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7479 +9531 2025-09-28 16:40:34.715611+00 2025-09-28 16:40:34.71562+00 f t Invitado Amar invitado-1759077631654@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7480 +9532 2025-09-28 16:40:51.781259+00 2025-09-28 16:40:51.781271+00 f t Invitado Amar invitado-1759077651362@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7481 +9533 2025-09-28 16:42:07.597243+00 2025-09-28 16:42:07.597256+00 f t Invitado Amar invitado-1759077724761@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7482 +9534 2025-09-28 16:46:33.523222+00 2025-09-28 16:46:33.52323+00 f t Invitado Amar invitado-1759077990879@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7483 +9535 2025-09-28 16:48:58.040675+00 2025-09-28 16:48:58.040687+00 f t Invitado Amar invitado-1759078137526@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7484 +9536 2025-09-28 16:50:32.91956+00 2025-09-28 16:50:32.919572+00 f t Invitado Amar invitado-1759078232373@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7485 +9537 2025-09-28 16:53:00.345353+00 2025-09-28 16:53:00.345365+00 f t Invitado Amar invitado-1759078380864@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7486 +9538 2025-09-28 16:58:01.319559+00 2025-09-28 16:58:01.319568+00 f t Irene Suris isuris@usa.com +541131223241 \N ARRIBEÑOS 1599 17 a \N FEMALE \N -34.5629619 -58.4460244 3 \N \N isuris +9539 2025-09-28 17:17:42.353912+00 2025-09-28 17:17:42.35392+00 f t Invitado Amar invitado-1759079862144@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7487 +9540 2025-09-28 17:21:36.378193+00 2025-09-28 17:21:36.378202+00 f t Invitado Amar invitado-1759080096012@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7488 +9541 2025-09-28 17:32:29.981836+00 2025-09-28 17:32:29.981847+00 f t Invitado Amar invitado-1759080749890@example.com 55555555 \N \N \N \N \N 50 \N \N iamar-7489 +9542 2025-09-28 17:55:45.033546+00 2025-09-28 17:55:45.033557+00 f t Natalia Cavallo fgarru@hotmail.com +541157309097 \N Eva Perón 3451 \N \N FEMALE \N -34.7222131 -58.3617453 70 \N \N ncavallo +9543 2025-09-28 18:00:59.84271+00 2025-09-28 18:00:59.84272+00 f t Invitado Amar invitado-1759082459215@example.com 55555555 \N \N \N \N \N 44 \N \N iamar-7490 +9544 2025-09-28 18:08:06.694299+00 2025-09-28 18:08:06.694311+00 f t Invitado Amar invitado-1759082885620@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-7491 +9545 2025-09-28 18:19:29.010138+00 2025-09-28 18:19:29.010149+00 f t Invitado Amar invitado-1759083568321@example.com 55555555 \N \N \N \N \N 89 \N \N iamar-7492 +9546 2025-09-28 18:20:49.495178+00 2025-09-28 18:20:49.495187+00 f t Invitado Amar invitado-1759083648985@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-7493 +9547 2025-09-28 18:42:35.200225+00 2025-09-28 18:42:35.200237+00 f t Invitado Amar invitado-1759084952968@example.com 55555555 \N \N \N \N \N 53 \N \N iamar-7494 +9548 2025-09-28 18:52:51.99793+00 2025-09-28 18:52:51.997938+00 f t Invitado Amar invitado-1759085571614@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-7495 +9549 2025-09-28 19:02:42.649254+00 2025-09-28 19:02:42.649263+00 f t Invitado Amar invitado-1759086162483@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7496 +9550 2025-09-28 19:02:52.714814+00 2025-09-28 19:02:52.714825+00 f t Invitado Amar invitado-1759086171879@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7497 +9551 2025-09-28 19:15:16.821101+00 2025-09-28 19:15:16.821113+00 f t Vanessa Peinado vanessapeinado34@gmail.com 5491158134655 \N Álvarez Jonte 2680 7 cno sirve el portero pero me llaman y bajo \N FEMALE 2007-02-14 -34.6034402 -58.4710625 34 \N \N vpeinado +9552 2025-09-28 19:47:14.745113+00 2025-09-28 19:47:14.745124+00 f t Invitado Amar invitado-1759088834286@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-7498 +9553 2025-09-28 19:50:48.979732+00 2025-09-28 19:50:48.97974+00 f t Invitado Amar invitado-1759089049727@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7499 +9554 2025-09-28 19:52:21.390177+00 2025-09-28 19:52:21.390186+00 f t Invitado Amar invitado-1759089140881@example.com 55555555 \N \N \N \N \N 52 \N \N iamar-7500 +9555 2025-09-28 20:11:40.2617+00 2025-09-28 20:11:40.261709+00 f t Invitado Amar invitado-1759090306633@example.com 55555555 \N \N \N \N \N 8 \N \N iamar-7501 +9556 2025-09-28 20:17:29.759634+00 2025-09-28 20:17:29.759647+00 f t Invitado Amar invitado-1759090656534@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7502 +9557 2025-09-28 20:22:56.211794+00 2025-09-28 20:22:56.211806+00 f t Invitado Amar invitado-1759090975711@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7503 +9558 2025-09-28 20:30:39.495081+00 2025-09-28 20:30:39.49509+00 f t Invitado Amar invitado-1759091439053@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-7504 +9559 2025-09-28 20:37:06.968696+00 2025-09-28 20:37:06.968705+00 f t Invitado Amar invitado-1759091826242@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7505 +9560 2025-09-28 21:11:37.992005+00 2025-09-28 21:11:37.992013+00 f t Invitado Amar invitado-1759093897411@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-7506 +9561 2025-09-28 21:41:33.169351+00 2025-09-28 21:41:33.169367+00 f t Dario Zarate l.dario.zarate@gmail.com +541130075628 \N Carlos Tejedor 2273 \N \N -34.5332299 -58.5224157 156 \N \N dzarate +9562 2025-09-28 21:54:56.543864+00 2025-09-28 21:54:56.543879+00 f t Invitado Amar invitado-1759096496234@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7507 +9563 2025-09-28 21:57:15.719659+00 2025-09-28 21:57:15.719667+00 f t Invitado Amar invitado-1759096635123@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7508 +9564 2025-09-28 22:04:46.123124+00 2025-09-28 22:04:46.123158+00 f t Invitado Amar invitado-1759097085746@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7509 +9565 2025-09-28 22:05:14.318249+00 2025-09-28 22:05:14.318258+00 f t Johanna Lorenzo Colombet jlorenzocolombet@gmail.com +541133095965 \N Thorne 434 5D \N \N -34.6297335 -58.4507258 14 \N \N jlorenzocolombet +9566 2025-09-28 22:11:31.148724+00 2025-09-28 22:11:31.148737+00 f t Invitado Amar invitado-1759097489702@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7510 +9567 2025-09-28 22:35:52.540889+00 2025-09-28 22:35:52.540898+00 f t Invitado Amar invitado-1759098951936@example.com 55555555 \N \N \N \N \N 69 \N \N iamar-7511 +9568 2025-09-28 22:42:05.769846+00 2025-09-28 22:42:05.769858+00 f t Marta Louzao mlouzao27@gmail.com +541133278247 \N Domingo de Acassuso 740 \N \N FEMALE \N -34.5023794 -58.4867159 69 \N \N mlouzao +9569 2025-09-29 00:09:36.955504+00 2025-09-29 00:09:36.955518+00 f t Invitado Amar invitado-1759104576194@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7512 +9570 2025-09-29 00:30:29.402403+00 2025-09-29 00:30:29.402414+00 f t Veronica Gonzalez vero_almagro@hotmail.com +541131696550 \N Emilio Lamarca 1359 2 \N \N -34.6191926 -58.4862952 41 \N \N vgonzalez +9571 2025-09-29 01:22:37.245802+00 2025-09-29 01:22:37.245811+00 f t Invitado Amar invitado-1759108957195@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7513 +9572 2025-09-29 02:35:14.46217+00 2025-09-29 02:35:14.462178+00 f t Invitado Amar invitado-1759113313924@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-7514 +9573 2025-09-29 03:38:26.346603+00 2025-09-29 03:38:26.346615+00 f t Invitado Amar invitado-1759117105838@example.com 55555555 \N \N \N \N \N 155 \N \N iamar-7515 +9574 2025-09-29 04:00:57.163846+00 2025-09-29 04:00:57.163855+00 f t Invitado Amar invitado-1759119249792@example.com 55555555 \N \N \N \N \N 18 \N \N iamar-7516 +9575 2025-09-29 04:34:25.151999+00 2025-09-29 04:34:25.152011+00 f t Invitado Amar invitado-1759120464536@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-7517 +9576 2025-09-29 06:12:55.171607+00 2025-09-29 06:12:55.171616+00 f t Invitado Amar invitado-1759126374874@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-7518 +9577 2025-09-29 09:52:10.937879+00 2025-09-29 09:52:10.937893+00 f t Invitado Amar invitado-1759139530525@example.com 55555555 \N \N \N \N \N 25 \N \N iamar-7519 +9578 2025-09-29 10:26:59.300671+00 2025-09-29 10:26:59.30068+00 f t Invitado Amar invitado-1759141619285@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-7520 +9579 2025-09-29 10:44:50.194871+00 2025-09-29 10:44:50.194882+00 f t Invitado Amar invitado-1759142689587@example.com 55555555 \N \N \N \N \N 79 \N \N iamar-7521 +9580 2025-09-29 10:48:16.274523+00 2025-09-29 10:48:16.274533+00 f t Invitado Amar invitado-1759142895777@example.com 55555555 \N \N \N \N \N 6 \N \N iamar-7522 +9581 2025-09-29 10:52:35.837401+00 2025-09-29 10:52:35.837412+00 f t Invitado Amar invitado-1759143155841@example.com 55555555 \N \N \N \N \N 60 \N \N iamar-7523 +9582 2025-09-29 10:57:57.100116+00 2025-09-29 10:57:57.100124+00 f t Invitado Amar invitado-1759143476595@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-7524 +9583 2025-09-29 11:00:45.572999+00 2025-09-29 11:00:45.573009+00 f t Invitado Amar invitado-1759143645427@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-7525 +9584 2025-09-29 11:03:48.082154+00 2025-09-29 11:03:48.082166+00 f t Invitado Amar invitado-1759143827771@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7526 +9585 2025-09-29 11:23:55.479761+00 2025-09-29 11:23:55.47977+00 f t Invitado Amar invitado-1759145035960@example.com 55555555 \N \N \N \N \N 82 \N \N iamar-7527 +9586 2025-09-29 12:34:02.990538+00 2025-09-29 12:34:02.990548+00 f t Lorena Meza cecynelliel@gmail.com +541140295490 \N Jose Martí 1240 Casa con rejas verdes \N \N -34.774474 -58.3804394 85 \N \N lmeza +9587 2025-09-29 12:40:43.473242+00 2025-09-29 12:40:43.473256+00 f t Invitado Amar invitado-1759149642292@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-7528 +9588 2025-09-29 12:44:20.095831+00 2025-09-29 12:44:20.095839+00 f t Invitado Amar invitado-1759149858935@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7529 +9589 2025-09-29 12:52:07.221386+00 2025-09-29 12:52:07.221396+00 f t Invitado Amar invitado-1759150325981@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-7530 +9590 2025-09-29 12:52:35.472857+00 2025-09-29 12:52:35.472866+00 f t Invitado Amar invitado-1759150354277@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-7531 +9591 2025-09-29 12:59:47.634735+00 2025-09-29 12:59:47.634744+00 f t Invitado Amar invitado-1759150786466@example.com 55555555 \N \N \N \N \N 85 \N \N iamar-7532 +9592 2025-09-29 13:09:47.247646+00 2025-09-29 13:09:47.247659+00 f t Ana Ghisalberti adelosmilagros@yahoo.com.ar +541155116491 \N Dr. Gregorio Araoz Alfaro 241 3 \N \N -34.6148465 -58.4344367 14 \N \N aghisalberti +9593 2025-09-29 13:20:07.303257+00 2025-09-29 13:20:07.303266+00 f t Victoria Bystrov victoria.e.bys@gmail.com +541163017101 \N Lavalle 2559 1 i \N \N -34.6033602 -58.4030002 18 \N \N vbystrov +9594 2025-09-29 13:20:07.723484+00 2025-09-29 13:20:07.723496+00 f t Invitado Amar invitado-1759152007109@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7533 +9595 2025-09-29 13:23:50.2195+00 2025-09-29 13:23:50.219509+00 f t Invitado Amar invitado-1759152229641@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7534 +9596 2025-09-29 13:51:32.197679+00 2025-09-29 13:51:32.197692+00 f t Invitado Amar invitado-1759153891847@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-7535 +9597 2025-09-29 13:52:30.600788+00 2025-09-29 13:52:30.600799+00 f t Invitado Amar invitado-1759153950456@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-7536 +9598 2025-09-29 13:53:46.208941+00 2025-09-29 13:53:46.208951+00 f t Invitado Amar invitado-1759154026072@example.com 55555555 \N \N \N \N \N 88 \N \N iamar-7537 +9599 2025-09-29 14:02:20.329533+00 2025-09-29 14:02:20.329546+00 f t Invitado Amar invitado-1759154539824@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7538 +9600 2025-09-29 14:08:10.843225+00 2025-09-29 14:08:10.843235+00 f t Invitado Amar invitado-1759154890919@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7539 +9601 2025-09-29 14:24:01.359233+00 2025-09-29 14:24:01.359246+00 f t Vanesa Pedrozo Pedrozovanesa09@gmail.com 5491130810281 \N Lerma 25 1C \N FEMALE \N -34.5980338 -58.428125 26 \N \N vpedrozo +9602 2025-09-29 14:36:59.681531+00 2025-09-29 14:36:59.681544+00 f t Invitado Amar invitado-1759156620001@example.com 55555555 \N \N \N \N \N 4 \N \N iamar-7540 +9603 2025-09-29 14:40:18.305973+00 2025-09-29 14:40:18.305987+00 f t Invitado Amar invitado-1759156817833@example.com 55555555 \N \N \N \N \N 21 \N \N iamar-7541 +9604 2025-09-29 14:49:17.677328+00 2025-09-29 14:49:17.677339+00 f t Invitado Amar invitado-1759157356648@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7542 +9605 2025-09-29 15:05:47.438811+00 2025-09-29 15:05:47.438824+00 f t Invitado Amar invitado-1759158347781@example.com 55555555 \N \N \N \N \N 22 \N \N iamar-7543 +9606 2025-09-29 15:09:56.623499+00 2025-09-29 15:09:56.623508+00 f t Invitado Amar invitado-1759158596580@example.com 55555555 \N \N \N \N \N 28 \N \N iamar-7544 +9607 2025-09-29 15:39:54.091473+00 2025-09-29 15:39:54.091481+00 f t Invitado Amar invitado-1759160393398@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7545 +9608 2025-09-29 15:45:44.036656+00 2025-09-29 15:45:44.036671+00 f t Invitado Amar invitado-1759160743983@example.com 55555555 \N \N \N \N \N 45 \N \N iamar-7546 +9609 2025-09-29 15:46:12.964589+00 2025-09-29 15:46:12.964602+00 f t Invitado Amar invitado-1759160772405@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7547 +9610 2025-09-29 16:01:08.595377+00 2025-09-29 16:01:08.595392+00 f t Invitado Amar invitado-1759161667945@example.com 55555555 \N \N \N \N \N 37 \N \N iamar-7548 +9611 2025-09-29 16:08:52.325113+00 2025-09-29 16:08:52.325125+00 f t Invitado Amar invitado-1759162131946@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7549 +9612 2025-09-29 16:18:03.262+00 2025-09-29 16:18:03.262014+00 f t Invitado Amar invitado-1759162681307@example.com 55555555 \N \N \N \N \N 77 \N \N iamar-7550 +9613 2025-09-29 16:22:13.982027+00 2025-09-29 16:22:13.982036+00 f t Invitado Amar invitado-1759162934177@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7551 +9614 2025-09-29 17:04:45.35498+00 2025-09-29 17:04:45.354988+00 f t Invitado Amar invitado-1759165484781@example.com 55555555 \N \N \N \N \N 38 \N \N iamar-7552 +9615 2025-09-29 17:56:58.03769+00 2025-09-29 17:56:58.037699+00 f t Invitado Amar invitado-1759168616677@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7553 +9616 2025-09-29 18:08:21.257778+00 2025-09-29 18:08:21.257791+00 f t Invitado Amar invitado-1759169300464@example.com 55555555 \N \N \N \N \N 111 \N \N iamar-7554 +9617 2025-09-29 18:18:42.784806+00 2025-09-29 18:18:42.784819+00 f t Invitado Amar invitado-1759169922027@example.com 55555555 \N \N \N \N \N 46 \N \N iamar-7555 +9618 2025-09-29 18:21:06.385647+00 2025-09-29 18:21:06.385656+00 f t Invitado Amar invitado-1759170066009@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-7556 +9619 2025-09-29 18:26:31.90532+00 2025-09-29 18:26:31.905334+00 f t Invitado Amar invitado-1759170391163@example.com 55555555 \N \N \N \N \N 26 \N \N iamar-7557 +9620 2025-09-29 18:32:01.936257+00 2025-09-29 18:32:01.936267+00 f t Invitado Amar invitado-1759170721486@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7558 +9621 2025-09-29 19:11:08.562143+00 2025-09-29 19:11:08.562153+00 f t Invitado Amar invitado-1759173067814@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-7559 +9622 2025-09-29 19:14:27.77599+00 2025-09-29 19:14:27.776002+00 f t Invitado Amar invitado-1759173267236@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-7560 +9623 2025-09-29 20:02:52.777904+00 2025-09-29 20:02:52.777915+00 f t Invitado Amar invitado-1759176172479@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-7561 +9624 2025-09-29 20:05:44.245673+00 2025-09-29 20:05:44.245684+00 f t Invitado Amar invitado-1759176344129@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-7562 +9625 2025-09-29 20:09:04.080174+00 2025-09-29 20:09:04.080189+00 f t Invitado Amar invitado-1759176543110@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-7563 +9626 2025-09-29 20:09:59.9117+00 2025-09-29 20:09:59.91171+00 f t Invitado Amar invitado-1759176599121@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7564 +9627 2025-09-29 20:10:23.323844+00 2025-09-29 20:10:23.323858+00 f t Invitado Amar invitado-1759176622880@example.com 55555555 \N \N \N \N \N 61 \N \N iamar-7565 +9628 2025-09-29 20:35:20.726996+00 2025-09-29 20:35:20.727009+00 f t Invitado Amar invitado-1759178120152@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7566 +9629 2025-09-29 20:44:08.977337+00 2025-09-29 20:44:08.97735+00 f t Invitado Amar invitado-1759178647467@example.com 55555555 \N \N \N \N \N 49 \N \N iamar-7567 +9630 2025-09-29 21:12:29.501819+00 2025-09-29 21:12:29.501833+00 f t Invitado Amar invitado-1759180347940@example.com 55555555 \N \N \N \N \N 5 \N \N iamar-7568 +9631 2025-09-29 21:38:54.140792+00 2025-09-29 21:38:54.140802+00 f t Invitado Amar invitado-1759181933299@example.com 55555555 \N \N \N \N \N 147 \N \N iamar-7569 +9632 2025-09-29 21:55:09.891103+00 2025-09-29 21:55:09.891116+00 f t Invitado Amar invitado-1759182909511@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7570 +9633 2025-09-29 22:05:15.750372+00 2025-09-29 22:05:15.750382+00 f t Invitado Amar invitado-1759183512441@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7571 +9634 2025-09-29 22:43:48.638369+00 2025-09-29 22:43:48.638383+00 f t Invitado Amar invitado-1759185828153@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-7572 +9635 2025-09-29 22:44:10.575535+00 2025-09-29 22:44:10.575544+00 f t Invitado Amar invitado-1759185850170@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7573 +9636 2025-09-29 22:45:32.055858+00 2025-09-29 22:45:32.055869+00 f t Invitado Amar invitado-1759185931886@example.com 55555555 \N \N \N \N \N 16 \N \N iamar-7574 +9637 2025-09-29 22:53:47.784269+00 2025-09-29 22:53:47.784278+00 f t Invitado Amar invitado-1759186427164@example.com 55555555 \N \N \N \N \N 23 \N \N iamar-7575 +9638 2025-09-29 23:15:52.399804+00 2025-09-29 23:15:52.399817+00 f t Julieta Elizabeth Ferrari juferrari910@gmail.com 5491124515973 \N Alejandro Magariños Cervantes 1974 casa \N FEMALE 1990-02-27 -34.6076504 -58.4682483 63 \N \N jferrari +9639 2025-09-29 23:19:07.255864+00 2025-09-29 23:19:07.255877+00 f t Invitado Amar invitado-1759187947636@example.com 55555555 \N \N \N \N \N 41 \N \N iamar-7576 +9640 2025-09-29 23:23:35.392254+00 2025-09-29 23:23:35.392264+00 f t Sofía Toibero sofii.toibero@gmail.com 5491139296890 \N MUÑIZ 810 7 B (no funciona el timbre, llamar al 1139296890) \N FEMALE 1996-12-18 -34.6237189 -58.4261141 11 \N \N stoibero +9642 2025-09-29 23:43:22.129422+00 2025-09-29 23:43:22.129432+00 f t Invitado Amar invitado-1759189401448@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7577 +9643 2025-09-29 23:46:12.718232+00 2025-09-29 23:46:12.718241+00 f t Invitado Amar invitado-1759189572028@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-7578 +9645 2025-09-30 00:28:24.864429+00 2025-09-30 00:28:24.864441+00 f t Invitado Amar invitado-1759192101626@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7579 +9646 2025-09-30 00:29:31.038694+00 2025-09-30 00:29:31.038703+00 f t Invitado Amar invitado-1759192170734@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7580 +9647 2025-09-30 00:29:57.891251+00 2025-09-30 00:29:57.891261+00 f t Maria Marta Chaves mariamartachaves@gmail.com +541128899738 \N ZAÑARTu 407 casa \N FEMALE \N -34.6380274 -58.4243034 20 \N \N mchaves-2 +9641 2025-09-29 23:31:33.740947+00 2025-09-29 23:31:33.740959+00 f t Monica Maria de las Mercedes Villar mmmvillar@gmail.com 5491169179340 \N Ramos Mejia 772 entre Cangallo y Estivao. Casa rejas azules. \N FEMALE 1959-10-26 -34.6068174 -58.432002 14 1943 \N mdelasmercedesvillar +9648 2025-09-30 00:53:10.899598+00 2025-09-30 00:53:10.899607+00 f t Invitado Amar invitado-1759193590405@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7581 +9649 2025-09-30 01:05:00.911552+00 2025-09-30 01:05:00.911562+00 f t Invitado Amar invitado-1759194300789@example.com 55555555 \N \N \N \N \N 35 \N \N iamar-7582 +9650 2025-09-30 02:45:10.54022+00 2025-09-30 02:45:10.540233+00 f t Invitado Amar invitado-1759200309481@example.com 55555555 \N \N \N \N \N 24 \N \N iamar-7583 +9651 2025-09-30 02:55:20.603806+00 2025-09-30 02:55:20.603819+00 f t Invitado Amar invitado-1759200918166@example.com 55555555 \N \N \N \N \N 14 \N \N iamar-7584 +9652 2025-09-30 02:58:07.736198+00 2025-09-30 02:58:07.736211+00 f t Invitado Amar invitado-1759201087033@example.com 55555555 \N \N \N \N \N 9 \N \N iamar-7585 +9653 2025-09-30 03:46:37.790832+00 2025-09-30 03:46:37.790841+00 f t Invitado Amar invitado-1759203997428@example.com 55555555 \N \N \N \N \N 20 \N \N iamar-7586 +9654 2025-09-30 03:48:04.133878+00 2025-09-30 03:48:04.133891+00 f t Invitado Amar invitado-1759204083849@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7587 +9656 2025-09-30 07:16:05.334109+00 2025-09-30 07:16:05.334119+00 f t Invitado Amar invitado-1759216563734@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7588 +9657 2025-09-30 07:35:32.069071+00 2025-09-30 07:35:32.069081+00 f t Invitado Amar invitado-1759217731761@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-7589 +9658 2025-09-30 08:05:43.5337+00 2025-09-30 08:05:43.53371+00 f t Invitado Amar invitado-1759219542794@example.com 55555555 \N \N \N \N \N 13 \N \N iamar-7590 +9659 2025-09-30 08:28:13.915334+00 2025-09-30 08:28:13.915343+00 f t Invitado Amar invitado-1759220893382@example.com 55555555 \N \N \N \N \N 112 \N \N iamar-7591 +9660 2025-09-30 08:31:09.146936+00 2025-09-30 08:31:09.14695+00 f t Gabriela Alegre gabrielaalegre@hotmail.com +541141786876 \N Dr Rodolfo Rivarola 139 1ro 1 \N FEMALE \N -34.5981073 -58.4952532 49 \N \N galegre +9661 2025-09-30 08:57:27.889082+00 2025-09-30 08:57:27.88909+00 f t Invitado Amar invitado-1759222647308@example.com 55555555 \N \N \N \N \N 11 \N \N iamar-7592 +9662 2025-09-30 10:39:24.374494+00 2025-09-30 10:39:24.374504+00 f t Invitado Amar invitado-1759228763866@example.com 55555555 \N \N \N \N \N 1 \N \N iamar-7593 +9663 2025-09-30 10:53:37.117486+00 2025-09-30 10:53:37.117502+00 f t Invitado Amar invitado-1759229616308@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-7594 +9664 2025-09-30 11:45:10.355091+00 2025-09-30 11:45:10.355105+00 f t Invitado Amar invitado-1759232709919@example.com 55555555 \N \N \N \N \N 142 \N \N iamar-7595 +9665 2025-09-30 11:50:58.765955+00 2025-09-30 11:50:58.765964+00 f t Invitado Amar invitado-1759233077240@example.com 55555555 \N \N \N \N \N 42 \N \N iamar-7596 +9666 2025-09-30 12:38:00.972523+00 2025-09-30 12:38:00.972533+00 f t Invitado Amar invitado-1759235880512@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7597 +9667 2025-09-30 12:54:44.214575+00 2025-09-30 12:54:44.214586+00 f t Invitado Amar invitado-1759236854938@example.com 55555555 \N \N \N \N \N 113 \N \N iamar-7598 +9669 2025-09-30 14:57:04.455766+00 2025-09-30 14:57:04.45578+00 f t Invitado Amar invitado-1759244224064@example.com 55555555 \N \N \N \N \N 3 \N \N iamar-7599 +13344 2025-11-15 00:11:15.142258+00 2025-11-15 00:11:15.142266+00 f t Invitado Amar invitado-1763165473061@example.com 55555555 \N \N \N \N \N 28 \N \N \N +9672 2025-09-30 15:33:57.33405+00 2025-09-30 15:33:57.334063+00 f t Invitado Amar invitado-1759246431878@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7600 +9680 2025-09-30 17:21:37.43108+00 2025-09-30 17:21:37.43109+00 f t Invitado Amar invitado-1759252895228@example.com 55555555 \N \N \N \N \N 34 \N \N iamar-7604 +9681 2025-09-30 17:31:55.241471+00 2025-09-30 17:31:55.241479+00 f t Invitado Amar invitado-1759253514412@example.com 55555555 \N \N \N \N \N 73 \N \N iamar-7605 +9682 2025-09-30 17:51:22.872182+00 2025-09-30 17:51:22.872195+00 f t Norma Micheltorena normi1774@hotmail.com 91155291628 \N Manuel Ricardo Trelles 2059 casa \N FEMALE 1974-10-17 -34.6043246 -58.4657725 17 \N \N nmicheltorena +9683 2025-09-30 19:16:53.280987+00 2025-09-30 19:16:53.280997+00 f t Invitado Amar invitado-1759259813319@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7606 +9684 2025-09-30 19:18:51.915971+00 2025-09-30 19:18:51.91598+00 f t Invitado Amar invitado-1759259931676@example.com 55555555 \N \N \N \N \N 29 \N \N iamar-7607 +9685 2025-09-30 19:24:20.769056+00 2025-09-30 19:24:20.769066+00 f t Invitado Amar invitado-1759260261018@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7608 +9686 2025-09-30 19:24:43.017157+00 2025-09-30 19:24:43.017165+00 f t Invitado Amar invitado-1759260283260@example.com 55555555 \N \N \N \N \N 70 \N \N iamar-7609 +9864 2025-10-02 13:45:10.208422+00 2025-10-02 13:45:10.208433+00 f t Invitado Amar invitado-1759412711305@example.com 55555555 \N \N \N \N \N 70 \N \N \N +12032 2025-10-31 02:53:58.534827+00 2025-10-31 02:53:58.534835+00 f t Invitado Amar invitado-1761879236428@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9668 2025-09-30 13:48:18.348904+00 2025-09-30 13:48:18.348913+00 f t karina infante kainfante2018@gmail.com +5434961968 \N fray luis beltran 906 Esquina catamarca. \N FEMALE \N -34.821258 -58.4804704 68 \N \N kinfante +10036 2025-10-05 06:27:49.994444+00 2025-10-05 06:27:49.994453+00 f t Invitado Amar invitado-1759645668579@example.com 55555555 \N \N \N \N \N 112 \N \N \N +9514 2025-09-28 09:52:21.926697+00 2025-09-28 09:52:21.92671+00 f t natalia Florencia Molina natumolina10@gmail.com +541158220819 \N armenia 1379 piso 2 dpto 9 \N \N \N -34.5916819 -58.430482 1 \N \N nmolina +10399 2025-10-10 12:15:42.304729+00 2025-10-10 12:15:42.304738+00 f t Invitado Amar invitado-1760098541386@example.com 55555555 \N \N \N \N \N 26 \N \N \N +10581 2025-10-13 02:47:21.071198+00 2025-10-13 02:47:21.071207+00 f t Invitado Amar invitado-1760323642259@example.com 55555555 \N \N \N \N \N 19 \N \N \N +10762 2025-10-15 13:16:59.667225+00 2025-10-15 13:16:59.667238+00 f t Invitado Amar invitado-1760534218729@example.com 55555555 \N \N \N \N \N 22 \N \N \N +10942 2025-10-17 10:23:21.454033+00 2025-10-17 10:23:21.454042+00 f t Invitado Amar invitado-1760696600614@example.com 55555555 \N \N \N \N \N 41 \N \N \N +11122 2025-10-20 10:53:11.735229+00 2025-10-20 10:53:11.735238+00 f t Invitado Amar invitado-1760957590699@example.com 55555555 \N \N \N \N \N 82 \N \N \N +11304 2025-10-22 01:15:14.02336+00 2025-10-22 01:15:14.023373+00 f t Invitado Amar invitado-1761095711796@example.com 55555555 \N \N \N \N \N 4 \N \N \N +11483 2025-10-25 00:30:42.462451+00 2025-10-25 00:30:42.462463+00 f t Invitado Amar invitado-1761352241892@example.com 55555555 \N \N \N \N \N 71 \N \N \N +11666 2025-10-28 00:16:24.955952+00 2025-10-28 00:16:24.955961+00 f t Invitado Amar invitado-1761610581641@example.com 55555555 \N \N \N \N \N 1 \N \N \N +9655 2025-09-30 05:26:52.741522+00 2025-09-30 05:26:52.741534+00 f t ANGIE TORRES angiemairu123@hotmail.com +541164360648 \N presidente arturo illia 1193 4c \N \N -34.7053798 -58.3862937 70 \N \N atorres +11848 2025-10-29 15:59:32.420428+00 2025-10-29 15:59:32.420438+00 f t Invitado Amar invitado-1761753571182@example.com 55555555 \N \N \N \N \N 55 \N \N \N +12215 2025-11-01 23:15:03.250379+00 2025-11-01 23:15:03.250393+00 f t Invitado Amar invitado-1762038901594@example.com 55555555 \N \N \N \N \N 12 \N \N \N +12396 2025-11-04 21:51:55.352408+00 2025-11-04 21:51:55.352421+00 f t Invitado Amar invitado-1762293113723@example.com 55555555 \N \N \N \N \N 17 \N \N \N +9670 2025-09-30 15:16:26.961226+00 2025-09-30 15:16:26.961236+00 f t zulma mujica zulma.mujica@hotmail.com 91150357677 \N Combate de los Pozos 65 1 D \N FEMALE \N -34.6100777 -58.3934405 18 2053 \N zmujica +13733 2025-11-19 09:49:55.915179+00 2025-11-19 09:49:55.915191+00 f t Invitado Amar invitado-1763545795486@example.com 55555555 \N \N \N \N \N 23 \N \N \N +12578 2025-11-07 04:47:06.571109+00 2025-11-07 04:47:06.571118+00 f t MARIA ALEJANDRA CATINI catinialejandra@gmail.com +541162119380 \N Pte Luis Sáenz Peña 243 2 \N \N \N \N 49 2056 \N \N +12758 2025-11-09 03:52:17.312943+00 2025-11-09 03:52:17.312956+00 f t Invitado Amar invitado-1762660336518@example.com 55555555 \N \N \N \N \N 33 \N \N \N +12941 2025-11-11 02:55:08.779784+00 2025-11-11 02:55:08.779796+00 f t Invitado Amar invitado-1762829707438@example.com 55555555 \N \N \N \N \N 74 \N \N \N +13914 2025-11-20 16:07:15.493767+00 2025-11-20 16:07:15.493775+00 f t Invitado Amar invitado-1763654834821@example.com 55555555 \N \N \N \N \N 26 \N \N \N +\. + + +-- +-- Data for Name: mascotas_petowner_tags; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_petowner_tags (id, petowner_id, tag_id) FROM stdin; +\. + + +-- +-- Data for Name: mascotas_petstudy; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_petstudy (id, created_at, updated_at, deleted, active, date, result, image_1, image_2, image_3, pet_id, pet_owner_id, study_type_id, user_id) FROM stdin; +31 2025-07-19 13:13:28.783047+00 2025-07-19 13:13:28.783059+00 f t 2025-07-17 No se observan parasitos superiores.\r\n No se observan formas parasitarias 3560 4265 6 1208 +1 2025-01-22 15:40:39.812531+00 2025-01-22 15:40:39.812539+00 f t 2025-01-22 PRUEBA pet_study_images/960_x_1200-29.jpg 1 1 1 110 +2 2025-07-01 18:34:52.78386+00 2025-07-01 18:34:52.783868+00 f t 2025-02-25 Hemograma con plaquetas, glucemia, urea, creati, pgt, proteinas totales, albumina y PCR no detectabble 585 487 10 1208 +3 2025-07-01 18:38:00.051505+00 2025-07-01 18:38:00.051513+00 f t 2025-02-07 Test Leishmaniosis NEGATIVO 500 420 6 1208 +4 2025-07-01 19:11:14.497945+00 2025-07-01 19:11:14.497954+00 f t 2025-06-14 ECO ABD URG.\r\nCONCLUSIONES:\r\nANIMAL INQUIETO ESTUDIO COMPLICADO\r\nLas imágenes observadas son sugerentes de:\r\nEstomago: Gastritis aguda. Signos de obstrucción de moderada a grave\r\nResto del abdomen sin particularidades\r\nNo se observa líquido en la cavidad al momento del estudio.\r\nSe sugiere correlacionar con otros estudios complementarios y con la\r\nevolución clínica del paciente, según opinión del médico actuante. 2405 2719 1 1208 +5 2025-07-01 19:15:42.273488+00 2025-07-01 19:15:42.273496+00 f t 2025-06-17 ECO ABD.\r\nCONCLUSIONES:\r\nBazo: Esplenomegalia: Hiperplasia focal / Neoplasia?\r\nHígado; Hepatopatía metabólica / infiltrativa (incipiente)\r\nVesícula Biliar: Colecistitis inflamatoria / infecciosa / infiltrativa.\r\nAbundante barro biliar. Microlitiasis?. Mucocele?\r\nRiñones: Nefropatía crónica / senil / infiltrativa\r\nVejiga: Moderada cantidad de sedimento urinario\r\nNo se observa liquido libre en abdomen al momento del estudio\r\nAbundante gas en el tracto gastrointestinal\r\nSe sugiere correlacionar con otros estudios complementarios y con la\r\nevolución clínica del paciente, según opinión del médico actuante. 2529 2869 1 1208 +6 2025-07-01 19:24:04.256605+00 2025-07-01 19:24:04.256617+00 f t 2025-06-21 Eco Abd\r\nCONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nRiñones: Nefropatía crónica / senil /infiltrativa\r\nVejiga: escaso sedimento urinario\r\nPróstata: Prostatomegalia: hiperplasia prostática/Neoplasia?\r\nTestículo Izquierdo: Hiperplasia focal/ Neoplasia?\r\nTestículo Derecho: Retenido. Criptórquido Unilateral\r\nNo se visualiza líquido libre en cavidad abdominal.\r\nSe sugiere correlacionar con otros estudios complementarios y con la\r\nevolución clínica del paciente, según opinión del médico actuante. 2714 3125 1 1208 +7 2025-07-01 19:40:08.457729+00 2025-07-01 19:40:08.457741+00 f t 2025-06-25 ECO ABD.\r\nCONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nEstomago: Gastropatía crónica inflamatoria / infecciosa / infiltrativa\r\nHiperplasia focal / Neoplasia?\r\nIntestinos: Enteropatía difusa inflamatoria / infecciosa / infiltrativa.\r\nRiñones: Nefropatía crónica / senil / infiltrativa\r\nLinfonodulos mesentéricos y gástricos visibles al momento del estudio 2871 3346 1 1208 +8 2025-07-02 18:02:30.821878+00 2025-07-02 18:02:30.821886+00 f t 2025-02-07 SE VISUALIZO MODERADA CANTIDAD DE COLECTA ABDOMINAL DISTRIBUIDO EN TODO EL ABDOMEN DE CARACTERISTICAS\r\nANECOICAS PURAS Y HOMOGENEAS, IMAGEN SUGERENTE DE TRASUDADO.\r\nBAZO: ESPLENOMEGALIA, CON ECOGENICIDAD Y ECOTEXTURA CONSERVADAS.\r\nHIGADO: TAMAÑO CONSERVADO. ECOGENICIDAD Y ECOTEXTURA CONSERVADA. VESICULA BILIAR: DISTENDIDA, CONTENIDO\r\nANECOICO (BILIS), PARED DE 3 MM.\r\nESTOMAGO: DISTENDIDO, CONTENIDO LIQUIDO, PARED CON LEVE REDUCCION DE LA ESTRATIFICACION. ESPESOR DE 6 MM,\r\nENGROSADO. IMAGEN DE GASTRITIS\r\nINTESTINOS: PAREDES CON ESTRATIFICACION CONSERVADA. COLON: CON CONTENIDO, PARED CONSERVADA.\r\nVEJIGA: DISTENDIDA: CONTENIDO ANECOICO (ORINA), PARED FINA, LISA, REGULAR. CONSERVADA.\r\nRIÑONES: AMBOS CONSERVAN RELACION Y DIFERENCIACION CORTICOMEDULAR. TAMAÑOS CONSERVADOS.\r\nNO SE VISUALIZO EN ESTE ESTUDIO LINFOADENOPATIA.\r\nPROSTATA: CONSERVADA. 504 424 1 1026 +9 2025-07-02 18:02:31.759412+00 2025-07-02 18:02:31.759422+00 f t 2025-02-07 SE VISUALIZO MODERADA CANTIDAD DE COLECTA ABDOMINAL DISTRIBUIDO EN TODO EL ABDOMEN DE CARACTERISTICAS\r\nANECOICAS PURAS Y HOMOGENEAS, IMAGEN SUGERENTE DE TRASUDADO.\r\nBAZO: ESPLENOMEGALIA, CON ECOGENICIDAD Y ECOTEXTURA CONSERVADAS.\r\nHIGADO: TAMAÑO CONSERVADO. ECOGENICIDAD Y ECOTEXTURA CONSERVADA. VESICULA BILIAR: DISTENDIDA, CONTENIDO\r\nANECOICO (BILIS), PARED DE 3 MM.\r\nESTOMAGO: DISTENDIDO, CONTENIDO LIQUIDO, PARED CON LEVE REDUCCION DE LA ESTRATIFICACION. ESPESOR DE 6 MM,\r\nENGROSADO. IMAGEN DE GASTRITIS\r\nINTESTINOS: PAREDES CON ESTRATIFICACION CONSERVADA. COLON: CON CONTENIDO, PARED CONSERVADA.\r\nVEJIGA: DISTENDIDA: CONTENIDO ANECOICO (ORINA), PARED FINA, LISA, REGULAR. CONSERVADA.\r\nRIÑONES: AMBOS CONSERVAN RELACION Y DIFERENCIACION CORTICOMEDULAR. TAMAÑOS CONSERVADOS.\r\nNO SE VISUALIZO EN ESTE ESTUDIO LINFOADENOPATIA.\r\nPROSTATA: CONSERVADA. pet_study_images/4.JPG pet_study_images/8.JPG pet_study_images/2.JPG 504 424 1 1026 +10 2025-07-02 18:05:37.605144+00 2025-07-02 18:05:37.605152+00 f t 2025-02-06 En región mesogástrica central se observa imagen de 4,05cm x 2,12cm x 2,16cm de contornos\r\nirregulares, ecoestructura homogénea y ecogenicidad disminuida asociado a un aumento de la\r\necogenicidad de la grasa mesentérica circundante. Dicha imagen se encuentra en íntima\r\nrelación a asa intestinal (debido a movilidad/indocilidad del paciente, no es posible determinar\r\nsu compromiso).\r\nAsociadas a dicha imagen se observan otras de similares características más pequeñas de\r\n1,08cm x 0,56cm y 0,99cm x 0,40cm sugerente de linfoadenopatías mesentéricas.\r\nHígado: Morfología y tamaño conservados, contornos lisos, ecoestructura homogénea y\r\necogenicidad conservada.\r\nVesícula biliar: Contenido anecoico. Paredes lisas de espesor conservado (0,10cm). Vía biliar\r\nintra y extra hepática conservadas.\r\nBazo: Morfología plegada y tamaño aumentado (espesor a nivel del hilio: 1,64cm), contornos\r\nsutilmente irregulares y redondeados, ecoestructura homogénea finamente granular y\r\necogenicidad conservada.\r\nRiñón izquierdo: 3,35cm x 2,24cm\r\nRiñón derecho: 3,75cm x 2,16cm\r\nAmbos de forma y tamaño conservados, contornos lisos, ecoestructura conservada. Correcta\r\nrelación y definición cortico-medular.\r\nGlándulas adrenales: Área de proyección conservada.\r\nVejiga: Con contenido anecoico y muy escasa cantidad de ecos puntiformes en suspensión.\r\nParedes lisas de espesor conservado: 0,08cm.\r\nEstómago: Con contenido gaseoso. Estratificación conservada. Espesor levemente aumentado\r\na expensas de capa mucosa: 0,31cm.\r\n\r\n+5491154525043 www.deved.com.ar @ecografiasdeved\r\nIntestino delgado: Con escaso contenido semisólido. Se observan segmentos intestinales\r\nconservados en grosor y estratificación (0,26cm) Y otros segmentos de estratificación\r\nconservada y espesor levemente aumentado (0,32cm). Unión ileocecocólica no visible.\r\nColon: Estratificación conservada con materia fecal. Espesor: 0,14cm.\r\nPáncreas: Área de proyección conservada.\r\nIncipiente cantidad de líquido libre visible como triangulo anecoico craneal al fundus vesical.\r\nConclusión:\r\n Esplenomegalia moderada (considerar proceso infiltrativo neoplásico difuso con\r\ndiferencial de proceso inflamatorio/infeccioso).\r\n En región mesogástrica central se observa pequeñas linfoadenopatías mesentéricas e\r\nimagen de gran tamaño que podría corresponder a linfoadenopatía mesentérica con\r\ndiferencial de proceso infiltrativo neoplásico de origen intestinal. Dicha imagen se\r\nencuentra asociada a reacción peritoneal focalizada. Se sugiere control evolutivo y/o\r\ncomplementar con estudio cito/histopatológico.\r\n Incipiente efusión peritoneal.\r\n Gastroenteropatía difusa de aspecto inflamatorio en primera instancia con diferencial\r\nde proceso infiltrativo difuso.\r\n Escaso sedimento vesical (cristaluria/celularidad).\r\n Resto del abdomen sin particularidades al momento del estudio. 464 390 1 1026 +16 2025-07-02 18:22:07.41867+00 2025-07-02 18:22:07.418679+00 f t 2025-01-27 HIGADO. TAMAÑO CONSERVADO. ECOGENICIDAD LIGERAMENTE AUMENTADA EN FORMA GENERALIZADA, SIN ATENUACION\r\nDISTAL. ECOTEXTURA CONSERVADA. IMAGEN SUGERENTE DE HEPATOPATIA VACUOLAR(LIPIDOSIS). VESICULA BILIAR:\r\nDISTENSION MEDIA, CONTENIDO ANECOICO (BILIS), PARED CONSERVADA.\r\nBAZO: ECOGENICIDAD Y ECOTEXTURA CONSERVADAS. ESPESOR DE 23,4 mm. CONSERVADO.\r\nRIÑONES: AMBOS CONSERVAN RELACION Y DIFERENCIACION CORTICOMEDULAR. FORMA Y CONTORNOS CONSERVADOS.\r\nTAMAÑOS IZQUIERDO DE 66,7 X 33,8 MM, DERECHO DE 66,8 X 36,9 MM. CONSERVADOS.\r\nVEJIGA: DISTENSION MEDIA, CONTENIDO ANECOICO (ORINA), PARED TRILAMINAR, CONSERVADA. ESPESOR MURAL 2,1 MM.\r\nESTOMAGO E INTESTINOS: VACIOS. PAREDES CON ESTRATIFICACION CONSERVADAS.\r\nNO SE VISUALIZO LINFOADENOPATIA.\r\nPANCREAS: AREA DE PROYECCION CONSERVADA.\r\nNO SE VISUALIZO LIQUIDO LIBRE EN CAVIDAD ABDOMINAL 335 266 1 1026 +11 2025-07-02 18:05:37.610732+00 2025-07-02 18:05:37.61074+00 f t 2025-02-06 En región mesogástrica central se observa imagen de 4,05cm x 2,12cm x 2,16cm de contornos\r\nirregulares, ecoestructura homogénea y ecogenicidad disminuida asociado a un aumento de la\r\necogenicidad de la grasa mesentérica circundante. Dicha imagen se encuentra en íntima\r\nrelación a asa intestinal (debido a movilidad/indocilidad del paciente, no es posible determinar\r\nsu compromiso).\r\nAsociadas a dicha imagen se observan otras de similares características más pequeñas de\r\n1,08cm x 0,56cm y 0,99cm x 0,40cm sugerente de linfoadenopatías mesentéricas.\r\nHígado: Morfología y tamaño conservados, contornos lisos, ecoestructura homogénea y\r\necogenicidad conservada.\r\nVesícula biliar: Contenido anecoico. Paredes lisas de espesor conservado (0,10cm). Vía biliar\r\nintra y extra hepática conservadas.\r\nBazo: Morfología plegada y tamaño aumentado (espesor a nivel del hilio: 1,64cm), contornos\r\nsutilmente irregulares y redondeados, ecoestructura homogénea finamente granular y\r\necogenicidad conservada.\r\nRiñón izquierdo: 3,35cm x 2,24cm\r\nRiñón derecho: 3,75cm x 2,16cm\r\nAmbos de forma y tamaño conservados, contornos lisos, ecoestructura conservada. Correcta\r\nrelación y definición cortico-medular.\r\nGlándulas adrenales: Área de proyección conservada.\r\nVejiga: Con contenido anecoico y muy escasa cantidad de ecos puntiformes en suspensión.\r\nParedes lisas de espesor conservado: 0,08cm.\r\nEstómago: Con contenido gaseoso. Estratificación conservada. Espesor levemente aumentado\r\na expensas de capa mucosa: 0,31cm.\r\n\r\n+5491154525043 www.deved.com.ar @ecografiasdeved\r\nIntestino delgado: Con escaso contenido semisólido. Se observan segmentos intestinales\r\nconservados en grosor y estratificación (0,26cm) Y otros segmentos de estratificación\r\nconservada y espesor levemente aumentado (0,32cm). Unión ileocecocólica no visible.\r\nColon: Estratificación conservada con materia fecal. Espesor: 0,14cm.\r\nPáncreas: Área de proyección conservada.\r\nIncipiente cantidad de líquido libre visible como triangulo anecoico craneal al fundus vesical.\r\nConclusión:\r\n Esplenomegalia moderada (considerar proceso infiltrativo neoplásico difuso con\r\ndiferencial de proceso inflamatorio/infeccioso).\r\n En región mesogástrica central se observa pequeñas linfoadenopatías mesentéricas e\r\nimagen de gran tamaño que podría corresponder a linfoadenopatía mesentérica con\r\ndiferencial de proceso infiltrativo neoplásico de origen intestinal. Dicha imagen se\r\nencuentra asociada a reacción peritoneal focalizada. Se sugiere control evolutivo y/o\r\ncomplementar con estudio cito/histopatológico.\r\n Incipiente efusión peritoneal.\r\n Gastroenteropatía difusa de aspecto inflamatorio en primera instancia con diferencial\r\nde proceso infiltrativo difuso.\r\n Escaso sedimento vesical (cristaluria/celularidad).\r\n Resto del abdomen sin particularidades al momento del estudio. 464 390 1 1026 +13 2025-07-02 18:15:36.179423+00 2025-07-02 18:15:36.179431+00 f t 2025-06-07 HIGADO: TAMAÑO CONSERVADO. ECOGENICIDAD AUMENTADA EN FORMA GENERALIZADA. LIGERA DISMINUCION DEL\r\nCONTRASTE VASCULAR Y DUCTAL. ISOECOGENICO AL BAZO E HIPERECOGENICO AL LIGAMENTO FALCIFORME. ECOTEXTURA\r\nCONSERVADA. PARENQUIMA CONSERVADO. IMAGEN SUGERENTE DE HEPATOPATIA VACUOLAR (LIPIDOS) MODERADA.\r\n\r\nVESICULA BILIAR: DISTENSION MODERADA, VOLUMEN DE 7,2 ML, VALOR DE REFERENCIA EN CANINOS 1 ML /KG DE PESO).\r\nCONTENIDO ANECOICO, HOMOGENEO. PARED CONSERVADA. VIAS BILIARES EXTRAHEPATICAS CONSERVADAS.\r\n\r\nPANCREAS: AREA DE PROYECCION CONSERVADA.\r\n\r\nBAZO: TAMAÑO CONSERVADO. ECOGENICIDAD Y ECOTEXTURA CONSERVADAS. ESPESOR DE 22,7 MM.\r\n\r\nESTOMAGO: CONTENIDO ECOGENICO, DE ECOTEXTURA FINA, HOMOGENEO (ALIMENTO). NOTA PACIENTE CON 12 HORAS DE\r\nAYUNO DE SOLIDOS. PARED CON ESTRATIFICACION CONSERVADA, ESPESOR MURAL DE 4,7 MM. CONSERVADO.\r\n\r\nINTESTINOS: ALGUNAS ASAS CON CONTENIDO ECOGENICO DE GRANO FINO, HOMOGENEO, OTRAS ASAS VACIAS. PAREDES\r\nCON ESTRATIFICACION CONSERVADAS.\r\n\r\nCOLON: PARED CONSERVADA. CONTENIDO SOLIDO Y GASEOSO.\r\n\r\nRIÑONES: AMBOS CONSERVAN RELACION Y DIFERENCIACION CORTICOMEDULAR. FORMA Y CONTORNO CONSERVADOS.\r\nTAMAÑOS IZQUIERDO 65,7 X 38 MM, DERECHO 66,6 X 34 MM.\r\n\r\nVEJIGA: DISTENDIDA, CONTENIDO ANECOICO, HOMOGENEO. PARED LISA, REGULAR, CONSERVADA.\r\n\r\nNO SE VISUALIZO LINFOADENOPATIA.\r\n\r\nNO SE VISUALIZO LIQUIDO LIBRE EN CAVIDAD ABDOMINAL.\r\nINFORME ECOGRÁFICO: pet_study_images/4_1.JPG pet_study_images/7.JPG pet_study_images/1.JPG 335 266 1 1026 +14 2025-07-02 18:18:36.445983+00 2025-07-02 18:18:36.445992+00 f t 2024-12-17 HIGADO: TAMAÑO LIGERAMENTE AUMENTADO. AUMENTO DE LA ECOGENICIDAD EN FORMA GENERALIZADA, CON\r\nDISMINUCION DEL CONTRASTE VASCULAR Y DUCTAL.PARENQUIMA HOMOGENEO, SIN HIPERATENUACION SIGNIFICATIVA.\r\nIMAGEN DE HEPATOPATIA VACUOLAR(LIPIDOSIS)\r\nVESICULA BILIAR: DISTENSION MEDIA, CONTENIDO ANECOICO (BILIS), PARED CONSERVADA. VOLUMEN DE 2,65 ML (VALOR DE\r\nNORMAL EN FELINOS HASTA 2,5 ML TOTALES). VIAS BILIARES EXTRAHEPATICAS CONSERVADAS.\r\nESTOMAGO: VACIO. PARED CON ESTRATIFICACION CONSERVADA. ESPESOR DE 2,1 ML.\r\nINTESTINOS: PAREDES CON ESTRATIFICACION CONSERVADAS.\r\nNO SE VISUALIZO LINFOADENOPATIA.\r\nRIÑONES: AMBOS CONSERVAN RELACION Y DIFERENCIACION CORTICOMEDULAR. FORMA Y CONTORNO CONSERVADOS.\r\nTAMAÑO: IZQUIERDO 36,1 X19 MM, DERECHO 35,9 X 21,4 MM. CONSERVADOS\r\nVEJIGA: DISTENSION BAJA, CONTENIDO ANECOICO.\r\nPANCREAS: AREA DE PROYECCION CONSERVADA.\r\nBAZO: SIN PARTICULARIDADES.\r\nNO SE VISUALIZO LIQUIDO LIBRE EN CAVIDAD ABDOMINAL\r\nSE OBSERVO MODERADA A ELEVADA CANTIDAD DE TEJIDO ADIPOSO EN OMENTO, MESOS Y ESPACIO RETROPERITONEAL. 312 269 1 1026 +15 2025-07-02 18:18:38.088413+00 2025-07-02 18:18:38.088422+00 f t 2024-12-17 HIGADO: TAMAÑO LIGERAMENTE AUMENTADO. AUMENTO DE LA ECOGENICIDAD EN FORMA GENERALIZADA, CON\r\nDISMINUCION DEL CONTRASTE VASCULAR Y DUCTAL.PARENQUIMA HOMOGENEO, SIN HIPERATENUACION SIGNIFICATIVA.\r\nIMAGEN DE HEPATOPATIA VACUOLAR(LIPIDOSIS)\r\nVESICULA BILIAR: DISTENSION MEDIA, CONTENIDO ANECOICO (BILIS), PARED CONSERVADA. VOLUMEN DE 2,65 ML (VALOR DE\r\nNORMAL EN FELINOS HASTA 2,5 ML TOTALES). VIAS BILIARES EXTRAHEPATICAS CONSERVADAS.\r\nESTOMAGO: VACIO. PARED CON ESTRATIFICACION CONSERVADA. ESPESOR DE 2,1 ML.\r\nINTESTINOS: PAREDES CON ESTRATIFICACION CONSERVADAS.\r\nNO SE VISUALIZO LINFOADENOPATIA.\r\nRIÑONES: AMBOS CONSERVAN RELACION Y DIFERENCIACION CORTICOMEDULAR. FORMA Y CONTORNO CONSERVADOS.\r\nTAMAÑO: IZQUIERDO 36,1 X19 MM, DERECHO 35,9 X 21,4 MM. CONSERVADOS\r\nVEJIGA: DISTENSION BAJA, CONTENIDO ANECOICO.\r\nPANCREAS: AREA DE PROYECCION CONSERVADA.\r\nBAZO: SIN PARTICULARIDADES.\r\nNO SE VISUALIZO LIQUIDO LIBRE EN CAVIDAD ABDOMINAL\r\nSE OBSERVO MODERADA A ELEVADA CANTIDAD DE TEJIDO ADIPOSO EN OMENTO, MESOS Y ESPACIO RETROPERITONEAL. pet_study_images/8_1.JPG pet_study_images/7_1.JPG pet_study_images/3.JPG 312 269 1 1026 +30 2025-07-13 19:53:00.655238+00 2025-07-13 19:53:00.655247+00 f t 2025-06-30 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nBazo Esplenomegalia. Hiperplasia difusa infecciosa /inflamatoria /\r\ninfiltrativa. Considerar hemoparásitos\r\nResto del abdomen sin particularidades\r\nNo se observa líquido en el abdomen ni adenopatias.\r\nSe sugiere correlacionar con otros estudios complementarios y con la\r\nevolución clínica del paciente, según opinión del médico actuante. 3037 3560 1 1208 +32 2025-07-20 16:03:09.675252+00 2025-07-20 16:03:09.67526+00 f t 2025-07-20 Las imágenes observadas son sugerentes de:\r\nVejiga: Cistitis inflamatoria / infecciosa / Infiltrativa. Moderada cantidad\r\nde sedimento urinario\r\nResto del abdomen sin particularidades\r\nSe sugiere correlacionar con otros estudios complementarios y con la\r\nevolución clínica del paciente, según opinión del médico actuante. 4011 4856 1 1208 +33 2025-07-20 16:09:09.831029+00 2025-07-20 16:09:09.831038+00 f t 2025-07-20 Hígado: Hepatopatía metabólica /infiltrativa. (Incipiente)\r\nIntestinos: Enteropatía inflamatoria / infecciosa / infiltrativa.\r\nLinfoadenopatia asociada\r\nRiñones: Nefropatía crónica / senil / Infiltrativa\r\nVejiga: Escasa cantidad de sedimento urinario\r\nSe sugiere correlacionar con otros estudios complementarios y con la\r\nevolución clínica del paciente, según opinión del médico actuante. 3970 4802 1 1208 +34 2025-07-20 16:28:21.741638+00 2025-07-20 16:28:21.741648+00 f t 2025-07-17 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nBazo: Esplenomegalia: Hiperplasia difusa: Infecciosa / inflamatoria /\r\ninfiltrativa. Considerar hemoparásitos\r\nHígado: Hepatopatía difusa inflamatoria / infecciosa / infiltrativa\r\nEstomago: Gastritis aguda. Se aconsejan controles posteriores\r\nEnteritis inflamatoria / infecciosa / infiltrativa\r\nNo se observa liquido libre en abdomen ni adenopatias 3937 4755 1 1208 +17 2025-07-02 18:22:08.047611+00 2025-07-02 18:22:08.047619+00 t t 2025-01-27 HIGADO. TAMAÑO CONSERVADO. ECOGENICIDAD LIGERAMENTE AUMENTADA EN FORMA GENERALIZADA, SIN ATENUACION\r\nDISTAL. ECOTEXTURA CONSERVADA. IMAGEN SUGERENTE DE HEPATOPATIA VACUOLAR(LIPIDOSIS). VESICULA BILIAR:\r\nDISTENSION MEDIA, CONTENIDO ANECOICO (BILIS), PARED CONSERVADA.\r\nBAZO: ECOGENICIDAD Y ECOTEXTURA CONSERVADAS. ESPESOR DE 23,4 mm. CONSERVADO.\r\nRIÑONES: AMBOS CONSERVAN RELACION Y DIFERENCIACION CORTICOMEDULAR. FORMA Y CONTORNOS CONSERVADOS.\r\nTAMAÑOS IZQUIERDO DE 66,7 X 33,8 MM, DERECHO DE 66,8 X 36,9 MM. CONSERVADOS.\r\nVEJIGA: DISTENSION MEDIA, CONTENIDO ANECOICO (ORINA), PARED TRILAMINAR, CONSERVADA. ESPESOR MURAL 2,1 MM.\r\nESTOMAGO E INTESTINOS: VACIOS. PAREDES CON ESTRATIFICACION CONSERVADAS.\r\nNO SE VISUALIZO LINFOADENOPATIA.\r\nPANCREAS: AREA DE PROYECCION CONSERVADA.\r\nNO SE VISUALIZO LIQUIDO LIBRE EN CAVIDAD ABDOMINAL pet_study_images/5.JPG pet_study_images/1_1.JPG pet_study_images/9.JPG 335 266 1 1026 +12 2025-07-02 18:15:35.079915+00 2025-07-02 18:15:35.079922+00 t t 2025-06-07 HIGADO: TAMAÑO CONSERVADO. ECOGENICIDAD AUMENTADA EN FORMA GENERALIZADA. LIGERA DISMINUCION DEL\r\nCONTRASTE VASCULAR Y DUCTAL. ISOECOGENICO AL BAZO E HIPERECOGENICO AL LIGAMENTO FALCIFORME. ECOTEXTURA\r\nCONSERVADA. PARENQUIMA CONSERVADO. IMAGEN SUGERENTE DE HEPATOPATIA VACUOLAR (LIPIDOS) MODERADA.\r\n\r\nVESICULA BILIAR: DISTENSION MODERADA, VOLUMEN DE 7,2 ML, VALOR DE REFERENCIA EN CANINOS 1 ML /KG DE PESO).\r\nCONTENIDO ANECOICO, HOMOGENEO. PARED CONSERVADA. VIAS BILIARES EXTRAHEPATICAS CONSERVADAS.\r\n\r\nPANCREAS: AREA DE PROYECCION CONSERVADA.\r\n\r\nBAZO: TAMAÑO CONSERVADO. ECOGENICIDAD Y ECOTEXTURA CONSERVADAS. ESPESOR DE 22,7 MM.\r\n\r\nESTOMAGO: CONTENIDO ECOGENICO, DE ECOTEXTURA FINA, HOMOGENEO (ALIMENTO). NOTA PACIENTE CON 12 HORAS DE\r\nAYUNO DE SOLIDOS. PARED CON ESTRATIFICACION CONSERVADA, ESPESOR MURAL DE 4,7 MM. CONSERVADO.\r\n\r\nINTESTINOS: ALGUNAS ASAS CON CONTENIDO ECOGENICO DE GRANO FINO, HOMOGENEO, OTRAS ASAS VACIAS. PAREDES\r\nCON ESTRATIFICACION CONSERVADAS.\r\n\r\nCOLON: PARED CONSERVADA. CONTENIDO SOLIDO Y GASEOSO.\r\n\r\nRIÑONES: AMBOS CONSERVAN RELACION Y DIFERENCIACION CORTICOMEDULAR. FORMA Y CONTORNO CONSERVADOS.\r\nTAMAÑOS IZQUIERDO 65,7 X 38 MM, DERECHO 66,6 X 34 MM.\r\n\r\nVEJIGA: DISTENDIDA, CONTENIDO ANECOICO, HOMOGENEO. PARED LISA, REGULAR, CONSERVADA.\r\n\r\nNO SE VISUALIZO LINFOADENOPATIA.\r\n\r\nNO SE VISUALIZO LIQUIDO LIBRE EN CAVIDAD ABDOMINAL.\r\nINFORME ECOGRÁFICO: 335 266 1 1026 +18 2025-07-08 21:23:50.304996+00 2025-07-08 21:23:50.305006+00 f t 2025-06-03 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nHígado. Hepatopatía difusa metabólica / infiltrativa\r\nVejiga: Cistitis inflamatoria/ infecciosa / infiltrativa. Escasa cantidad de\r\nsedimento urinario\r\nÚtero: Piómetra / hemómetra / Mucómetra\r\nNo se observa líquido libre al momento del estudio. 1889 2042 1 1208 +19 2025-07-08 21:26:05.368282+00 2025-07-08 21:26:05.368291+00 f t 2025-06-06 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nEstomago: Gastritis leve.\r\nIntestinos: Enteropatía inflamatoria / infecciosa / infiltrativa\r\nSe observa el peristaltismo aumentado al momento del estudio\r\nSe sugiere correlacionar con otros estudios complementarios y con la\r\nevolución clínica del paciente, según opinión del médico actuante. 1919 2084 1 1208 +20 2025-07-08 21:35:07.102104+00 2025-07-08 21:35:07.102112+00 f t 2025-05-14 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nBazo: Hepatomegalia leve; hiperplasia difusa / infecciosa /inflamatoria /\r\ninfiltrativa\r\nHígado: Hepatopatía difusa Metabólica / infiltrativa(incipiente)\r\nResto del abdomen sin particularidades\r\nSe sugiere correlacionar con otros estudios complementarios y con la\r\nEvolución clínica del paciente, según opinión del médico actuante. 1128 1041 1 1208 +21 2025-07-13 17:06:49.045158+00 2025-07-13 17:06:49.045165+00 f t 2025-06-28 Las imágenes observadas son sugerentes de:\r\nHígado y vías biliares: Colangitis / Colangiohepatitis\r\nEstomago e intestinos: Gastritis aguda. Enteritis inflamatoria / infecciosa /\r\ninfiltrativa.\r\nCuerpo extraño? Signos obstructivos al momento del estudio\r\nNo se observa líquido en el abdomen al momento del estudio.\r\nSe sugiere correlacionar con otros estudios complementarios y con la\r\nevolución clínica del paciente, según opinión del médico actuante. 3032 3554 1 1208 +22 2025-07-13 19:22:40.388311+00 2025-07-13 19:22:40.38832+00 f t 2025-07-12 Hígado: Hepatomegalia: hepatopatía difusa inflamatoria / infecciosa\r\n/infiltrativa\r\nVesícula Biliar: Moderada cantidad de Barro biliar\r\nEstomago: Gastritis leve. Cuerpos extraños gástricos? Sin signos\r\nobstructivos al momento del estudio. Se aconsejan controles posteriores\r\nSe sugiere correlacionar con otros estudios complementarios y con la\r\nevolución clínica del paciente, según opinión del médico actuante. 3690 4435 1 1208 +23 2025-07-13 19:24:20.047533+00 2025-07-13 19:24:20.047542+00 f t 2025-07-12 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nBazo: Esplenomegalia leve: hiperplasia difusa. Inflamatoria / infecciosa /\r\ninfiltrativa. Considerar hemoparásitos\r\nHígado: Hepatomegalia: Hiperplasia difusa metabólica / infiltrativa\r\nEstomago: Gastritis leve.\r\nNo se observa líquido libre en cavidad abdominal. 3687 602 1 1208 +24 2025-07-13 19:25:21.755931+00 2025-07-13 19:25:21.755942+00 f t 2025-07-12 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nHígado. Hígado congestivo: Se aconseja control cardiológico\r\nVesícula Biliar: Moderada cantidad de Barro biliar\r\nRiñones: Nefropatía crónica / senil /infiltrativa\r\nEstomago: Gastritis leve\r\nIntestinos: Enteropatía inflamatoria / senil / infiltrativa\r\nNo se observa líquido libre al momento del estudio. 3560 4265 1 1208 +25 2025-07-13 19:33:10.235794+00 2025-07-13 19:33:10.235803+00 f t 2025-07-10 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nSin particularidades al momento del estudio\r\nNo se observa líquido libre en el abdomen, ni adenopatias\r\nSe sugiere correlacionar con otros estudios complementarios y con la\r\nevolución clínica del paciente, según opinión del médico actuante. 3415 4096 1 1208 +26 2025-07-13 19:34:58.94413+00 2025-07-13 19:34:58.944137+00 f t 2025-07-09 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nBazo: Esplenomegalia: hiperplasia difusa: Infecciosa / inflamatoria /\r\ninfiltrativa. Considerar hemoparásitos\r\nVejiga: Cistitis inflamatoria / infecciosa / infiltrativa. Escasa cantidad de\r\nsedimento urinario\r\nResto del abdomen sin particularidades al momento del estudio\r\nNo se observa liquido libre en abdomen ni adenopatias 3517 4214 1 1208 +27 2025-07-13 19:37:37.129714+00 2025-07-13 19:37:37.129723+00 f t 2025-07-09 Las imágenes observadas son sugerentes de:\r\nBazo: Esplenomegalia Leve: Hiperplasia difusa: infecciosa /inflamatoria /\r\ninfiltrativa. Considerar hemoparásitos\r\nHígado y vías biliares: Colangitis / Colangiohepatitis. Moderada\r\ncantidad de Barro Biliar\r\nIntestinos: Enteropatía inflamatoria / infecciosa / infiltrativa.\r\nVejiga; Escasa cantidad de sedimento urinario\r\nModerada reacción peritoneal\r\nSe observa escasa cantidad de líquido en el abdomen (entre los lóbulos\r\nhepáticos) al momento del estudio. 3551 4256 1 1208 +28 2025-07-13 19:40:02.785035+00 2025-07-13 19:40:02.785046+00 f t 2025-07-07 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nSin anormalidades ecográficas al momento del estudio\r\nNo se observa líquido libre en abdomen, ni adenopatias 3457 4149 1 1208 +29 2025-07-13 19:49:27.111219+00 2025-07-13 19:49:27.111226+00 f t 2025-07-01 Las imágenes observadas son sugerentes de:\r\nVejiga: Cistitis inflamatoria/ infecciosa / infiltrativa. Moderada cantidad\r\nde sedimento urinario\r\nNo se observa líquido libre al momento del estudio.\r\nSe sugiere correlacionar con otros estudios complementarios y con la\r\nevolución clínica del paciente, según opinión del médico actuante. 3135 3693 1 1208 +35 2025-07-20 16:39:06.21396+00 2025-07-20 16:39:06.21397+00 f t 2025-07-17 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nHígado: hepatopatía difusa inflamatoria / infecciosa / infiltrativa\r\nEstomago: Cuerpos extraños gástricos? Se aconsejan controles\r\nposteriores. Signos obstructivos leves. Se aconsejan controles posteriores\r\nNo se observa líquido libre en el abdomen al momento del estudio. 3932 4746 1 1208 +36 2025-07-20 16:48:17.145885+00 2025-07-20 16:48:17.145895+00 t t 2025-07-15 Informe\r\nUTERO: Ocupado por gestación múltiple\r\nFrecuencia Cardiaca promedio: 228 latidos por minuto, lo cual indicaría\r\nque no hay sufrimiento fetal.\r\nTiempo estimado de preñez: 54 días +/- 3, según cálculos realizados a\r\npartir del método de los diámetros biparietales. 4072 4920 1 1208 +37 2025-07-20 16:49:06.150651+00 2025-07-20 16:49:06.150657+00 f t 2025-07-15 Informe\r\nUTERO: Ocupado por gestación múltiple\r\nFrecuencia Cardiaca promedio: 228 latidos por minuto, lo cual indicaría\r\nque no hay sufrimiento fetal.\r\nTiempo estimado de preñez: 54 días +/- 3, según cálculos realizados a\r\npartir del método de los diámetros biparietales. 3787 4549 1 1208 +38 2025-07-20 16:52:14.56957+00 2025-07-20 16:52:14.569576+00 f t 2025-07-14 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nHígado. Hepatopatía difusa infecciosa / inflamatoria / infiltrativa\r\nEstomago: Gastritis Leve\r\nÚtero: Piómetra / hemómetra / Mucómetra\r\nNo se observa líquido libre al momento del estudio. 3793 4558 1 1208 +39 2025-07-20 16:55:22.454995+00 2025-07-20 16:55:22.455003+00 f t 2025-04-13 CONCLUSIONES:\r\nLas imágenes observadas son sugerentes de:\r\nHígado: Hepatomegalia: Hepatopatía focal: / Neoplasia? Se\r\naconsejan controles posteriores\r\nEstomago: Gastritis leve\r\nRiñones: Nefropatía crónica / senil / infiltrativa\r\nNo se observa líquido libre en abdomen, ni adenopatias al momento del\r\nestudio 1094 998 1 1208 +\. + + +-- +-- Data for Name: mascotas_petstudyfile; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_petstudyfile (id, created_at, updated_at, deleted, active, file, uploaded_at, study_id, user_id) FROM stdin; +\. + + +-- +-- Data for Name: mascotas_petvaccine; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_petvaccine (id, created_at, updated_at, deleted, active, application_date, next_application_date, pet_id, pet_owner_id, user_id, vaccine_id) FROM stdin; +1 2024-10-30 20:14:34.482+00 2024-10-30 20:14:34.482+00 f t 2024-10-29 \N 179 170 114 8 +2 2024-10-30 20:15:03.14+00 2024-10-30 20:15:03.14+00 f t 2024-10-29 \N 179 170 \N 7 +3 2024-11-19 22:32:26.353+00 2024-11-19 22:32:26.353+00 f t 2024-11-18 2025-11-18 219 205 110 1 +4 2024-11-19 22:32:43.018+00 2024-11-19 22:32:43.018+00 f t 2024-11-18 2025-11-18 219 205 110 2 +5 2024-12-02 13:28:29.192+00 2024-12-02 13:28:29.192+00 f t 2024-11-01 2025-11-01 185 176 110 1 +6 2024-12-02 13:47:55.765+00 2024-12-02 13:47:55.765+00 f t 2024-11-01 2025-11-01 185 176 110 2 +7 2024-12-02 15:56:43.461+00 2024-12-02 15:56:43.461+00 f t 2024-11-06 2025-11-06 204 193 114 2 +8 2024-12-02 15:57:15.476+00 2024-12-02 15:57:15.476+00 f t 2024-12-06 2025-11-06 204 193 114 1 +9 2024-12-02 16:48:47.401+00 2024-12-02 16:48:47.401+00 f t 2024-11-08 \N 190 182 114 2 +10 2024-12-02 16:49:18.443+00 2024-12-02 16:49:18.443+00 f t 2024-11-08 \N 190 182 114 1 +11 2024-12-02 18:06:07.48+00 2024-12-02 18:06:07.48+00 f t 2024-11-08 2025-11-08 244 224 114 1 +12 2024-12-02 18:06:33.16+00 2024-12-02 18:06:33.16+00 f t 2024-11-08 2025-11-08 244 224 114 2 +13 2024-12-02 20:15:50.395+00 2024-12-02 20:15:50.395+00 f t 2024-11-15 \N 206 195 114 1 +14 2024-12-02 20:16:04.898+00 2024-12-02 20:16:04.898+00 f t 2024-11-15 \N 206 195 114 2 +15 2024-12-02 20:16:17.58+00 2024-12-02 20:16:17.58+00 f t 2024-11-15 \N 207 195 114 1 +16 2024-12-02 20:16:30.992+00 2024-12-02 20:16:30.992+00 f t 2024-11-15 \N 207 195 114 2 +17 2024-12-02 20:26:55.111+00 2024-12-02 20:26:55.111+00 f t 2024-11-15 \N 208 196 114 1 +18 2024-12-02 20:28:11.053+00 2024-12-02 20:28:11.053+00 f t 2024-11-15 \N 208 196 114 2 +19 2024-12-03 14:53:41.487+00 2024-12-03 14:53:41.487+00 f t 2024-11-19 \N 212 199 114 7 +20 2024-12-03 14:53:55.3+00 2024-12-03 14:53:55.3+00 f t 2024-11-19 \N 212 199 114 8 +21 2024-12-03 15:17:12.683+00 2024-12-03 15:17:12.683+00 f t 2024-11-20 \N 213 200 114 1 +22 2024-12-03 15:17:25.141+00 2024-12-03 15:17:25.141+00 f t 2024-11-20 \N 213 200 114 2 +23 2024-12-03 15:42:10.889+00 2024-12-03 15:42:10.889+00 f t 2024-11-20 \N 227 209 114 8 +24 2024-12-03 15:42:10.901+00 2024-12-03 15:42:10.901+00 f t 2024-11-20 \N 227 209 114 7 +25 2024-12-03 15:58:02.977+00 2024-12-03 15:58:02.977+00 f t 2024-11-20 \N 201 191 114 1 +26 2024-12-03 15:58:15.045+00 2024-12-03 15:58:15.045+00 f t 2024-11-20 \N 201 191 114 2 +27 2024-12-03 15:58:24.554+00 2024-12-03 15:58:24.554+00 f t 2024-11-20 \N 202 191 114 1 +28 2024-12-03 15:58:39.334+00 2024-12-03 15:58:39.334+00 f t 2024-11-20 \N 201 191 114 2 +29 2024-12-03 16:36:48.4+00 2024-12-03 16:36:48.4+00 f t 2024-11-20 \N 220 206 114 1 +30 2024-12-03 16:36:57.367+00 2024-12-03 16:36:57.367+00 f t 2024-11-20 \N 220 206 114 2 +31 2024-12-03 16:37:06.729+00 2024-12-03 16:37:06.729+00 f t 2024-11-20 \N 221 206 114 1 +32 2024-12-03 16:37:16.308+00 2024-12-03 16:37:16.308+00 f t 2024-11-20 \N 221 206 114 2 +33 2024-12-03 16:39:49.716+00 2024-12-03 16:39:49.716+00 f t 2024-11-20 \N 222 206 114 1 +34 2024-12-03 16:40:05.092+00 2024-12-03 16:40:05.092+00 f t 2024-11-20 \N 222 206 114 2 +35 2024-12-03 17:42:54.301+00 2024-12-03 17:42:54.301+00 f t 2024-11-22 \N 234 214 114 1 +36 2024-12-03 17:43:03.316+00 2024-12-03 17:43:03.316+00 f t 2024-11-22 \N 234 214 114 2 +37 2024-12-03 18:00:52.626+00 2024-12-03 18:00:52.626+00 f t 2024-11-22 \N 235 215 114 2 +38 2024-12-03 18:01:11.252+00 2024-12-03 18:01:11.252+00 f t 2024-11-22 \N 236 215 114 2 +39 2024-12-03 19:00:26.018+00 2024-12-03 19:00:26.018+00 f t 2024-11-23 \N 228 210 114 1 +40 2024-12-03 19:00:37.63+00 2024-12-03 19:00:37.63+00 f t 2024-11-23 \N 228 210 114 2 +41 2024-12-03 19:00:46.12+00 2024-12-03 19:00:46.12+00 f t 2024-11-23 \N 229 210 114 1 +42 2024-12-03 19:00:55.818+00 2024-12-03 19:00:55.818+00 f t 2024-11-23 \N 229 210 114 2 +43 2024-12-03 19:01:10.499+00 2024-12-03 19:01:10.499+00 f t 2024-11-23 \N 230 210 114 1 +44 2024-12-03 19:01:23.884+00 2024-12-03 19:01:23.884+00 f t 2024-11-23 \N 230 210 114 2 +45 2024-12-03 19:33:03.7+00 2024-12-03 19:33:03.7+00 f t 2024-11-25 \N 254 233 114 1 +46 2024-12-03 20:38:41.333+00 2024-12-03 20:38:41.333+00 f t 2024-11-27 \N 256 235 114 1 +47 2024-12-03 20:38:55.307+00 2024-12-03 20:38:55.307+00 f t 2024-11-27 \N 256 235 114 2 +48 2024-12-03 20:39:06.775+00 2024-12-03 20:39:06.775+00 f t 2024-11-27 \N 257 235 114 1 +49 2024-12-03 20:39:17.41+00 2024-12-03 20:39:17.41+00 f t 2024-11-27 \N 257 235 114 2 +50 2024-12-03 20:47:35.234+00 2024-12-03 20:47:35.234+00 f t 2024-11-27 \N 240 219 114 1 +51 2024-12-03 20:47:47.067+00 2024-12-03 20:47:47.067+00 f t 2024-11-27 \N 240 219 114 2 +52 2024-12-03 21:17:52.339+00 2024-12-03 21:17:52.339+00 f t 2024-11-27 \N 259 222 114 8 +53 2024-12-03 21:18:10.759+00 2024-12-03 21:18:10.759+00 f t 2024-11-27 \N 259 222 114 7 +54 2024-12-03 21:18:25.426+00 2024-12-03 21:18:25.426+00 f t 2024-11-27 \N 260 222 114 8 +55 2024-12-03 21:18:39.12+00 2024-12-03 21:18:39.12+00 f t 2024-11-27 \N 260 222 114 7 +56 2024-12-03 21:18:57.948+00 2024-12-03 21:18:57.948+00 f t 2024-11-27 \N 261 222 114 8 +57 2024-12-03 21:19:10.146+00 2024-12-03 21:19:10.146+00 f t 2024-11-27 \N 261 222 114 7 +58 2024-12-03 21:19:21.524+00 2024-12-03 21:19:21.524+00 f t 2024-11-27 \N 262 222 114 1 +59 2024-12-03 21:19:33.52+00 2024-12-03 21:19:33.52+00 f t 2024-11-27 \N 262 222 114 2 +60 2024-12-03 21:19:48.931+00 2024-12-03 21:19:48.931+00 f t 2024-11-27 \N 263 222 114 1 +61 2024-12-03 21:20:10.959+00 2024-12-03 21:20:10.959+00 f t 2024-11-27 \N 263 222 114 2 +62 2024-12-03 21:20:20.85+00 2024-12-03 21:20:20.85+00 f t 2024-11-27 \N 264 222 114 1 +63 2024-12-03 21:20:32.893+00 2024-12-03 21:20:32.893+00 f t 2024-11-27 \N 264 222 114 2 +64 2024-12-03 21:21:41.081+00 2024-12-03 21:21:41.081+00 f t 2024-11-27 \N 264 222 114 1 +65 2024-12-05 13:45:38.489+00 2024-12-05 13:45:38.489+00 f t 2024-11-27 \N 224 207 114 8 +66 2024-12-05 13:45:51.717+00 2024-12-05 13:45:51.717+00 f t 2024-11-27 \N 224 207 114 7 +67 2024-12-05 13:46:03.736+00 2024-12-05 13:46:03.736+00 f t 2024-11-27 \N 225 207 114 8 +68 2024-12-05 13:46:19.683+00 2024-12-05 13:46:19.683+00 f t 2024-11-27 \N 225 207 114 7 +69 2024-12-05 14:31:01.741+00 2024-12-05 14:31:01.741+00 f t 2024-11-29 \N 232 212 114 1 +70 2024-12-05 14:31:16.871+00 2024-12-05 14:31:16.871+00 f t 2024-11-29 \N 232 212 114 2 +71 2024-12-05 15:54:43.548+00 2024-12-05 15:54:43.548+00 f t 2024-11-29 \N 268 240 114 7 +72 2024-12-05 15:54:58.282+00 2024-12-05 15:54:58.282+00 f t 2024-11-29 \N 268 240 114 8 +73 2024-12-09 13:49:05.83+00 2024-12-09 13:49:05.83+00 f t 2024-10-08 \N 155 147 114 1 +74 2024-12-09 13:49:14.801+00 2024-12-09 13:49:14.801+00 f t 2024-10-08 \N 155 147 114 2 +75 2024-12-09 13:55:51.81+00 2024-12-09 13:55:51.81+00 f t 2024-10-08 \N 156 148 114 7 +76 2024-12-09 13:56:01.903+00 2024-12-09 13:56:01.903+00 f t 2024-10-08 \N 156 148 114 8 +77 2024-12-09 14:59:54.579+00 2024-12-09 14:59:54.579+00 f t 2024-10-18 \N 167 158 114 2 +78 2024-12-09 15:00:02.466+00 2024-12-09 15:00:02.466+00 f t 2024-10-18 \N 167 158 114 1 +79 2024-12-09 15:44:08.877+00 2024-12-09 15:44:08.877+00 f t 2024-10-24 \N 172 163 114 1 +80 2024-12-09 15:44:17.251+00 2024-12-09 15:44:17.251+00 f t 2024-10-24 \N 172 163 114 2 +81 2024-12-09 16:31:39.352+00 2024-12-09 16:31:39.352+00 f t 2024-10-29 \N 178 169 114 1 +82 2024-12-09 16:31:47.823+00 2024-12-09 16:31:47.823+00 f t 2024-10-29 \N 178 169 114 2 +83 2024-12-09 16:31:57.261+00 2024-12-09 16:31:57.261+00 f t 2024-10-29 \N 283 169 114 1 +84 2024-12-09 16:32:09.807+00 2024-12-09 16:32:09.807+00 f t 2024-10-29 \N 283 169 114 2 +85 2024-12-09 17:37:54.773+00 2024-12-09 17:37:54.773+00 f t 2024-09-05 \N 98 94 114 1 +86 2024-12-09 17:38:04.728+00 2024-12-09 17:38:04.728+00 f t 2024-09-05 \N 98 94 114 2 +87 2024-12-09 17:38:23.744+00 2024-12-09 17:38:23.744+00 f t 2024-09-05 \N 284 94 114 1 +88 2024-12-09 17:38:37.247+00 2024-12-09 17:38:37.247+00 f t 2024-09-05 \N 284 94 114 2 +89 2024-12-09 18:09:16.814+00 2024-12-09 18:09:16.814+00 f t 2024-09-06 \N 102 98 114 1 +90 2024-12-09 18:09:28.349+00 2024-12-09 18:09:28.349+00 f t 2024-09-06 \N 102 98 114 2 +91 2024-12-09 19:38:27.834+00 2024-12-09 19:38:27.834+00 f t 2024-09-23 \N 129 124 114 1 +92 2024-12-09 19:38:36.053+00 2024-12-09 19:38:36.053+00 f t 2024-09-23 \N 129 124 114 2 +93 2024-12-09 19:38:44.066+00 2024-12-09 19:38:44.066+00 f t 2024-09-23 \N 286 124 114 1 +94 2024-12-09 19:38:53.103+00 2024-12-09 19:38:53.103+00 f t 2024-09-23 \N 286 124 114 2 +95 2024-12-09 19:42:33.427+00 2024-12-09 19:42:33.427+00 f t 2024-09-24 \N 131 126 114 1 +96 2024-12-09 19:42:41.125+00 2024-12-09 19:42:41.125+00 f t 2024-09-24 \N 131 126 114 2 +97 2024-12-10 13:17:50.792+00 2024-12-10 13:17:50.792+00 f t 2024-08-06 \N 61 60 114 7 +98 2024-12-10 13:18:01.797+00 2024-12-10 13:18:01.797+00 f t 2024-08-06 \N 61 60 114 8 +99 2024-12-10 13:23:26.937+00 2024-12-10 13:23:26.937+00 f t 2024-08-30 \N 61 60 114 7 +100 2024-12-10 13:24:14.65+00 2024-12-10 13:24:14.65+00 f t 2024-09-30 \N 61 60 114 7 +101 2024-12-10 13:32:19.438+00 2024-12-10 13:32:19.438+00 f t 2024-08-08 \N 63 62 114 7 +102 2024-12-10 13:32:27.568+00 2024-12-10 13:32:27.568+00 f t 2024-08-08 \N 63 62 114 8 +103 2024-12-10 14:39:45.351+00 2024-12-10 14:39:45.351+00 f t 2024-08-16 \N 68 67 114 1 +104 2024-12-10 14:39:54.429+00 2024-12-10 14:39:54.429+00 f t 2024-08-16 \N 68 67 114 2 +105 2024-12-10 14:40:08.49+00 2024-12-10 14:40:08.49+00 f t 2024-08-16 \N 289 67 114 1 +106 2024-12-10 14:40:18.2+00 2024-12-10 14:40:18.2+00 f t 2024-08-16 \N 289 67 114 2 +107 2024-12-10 14:51:36.284+00 2024-12-10 14:51:36.284+00 f t 2024-08-18 \N 70 68 114 7 +108 2024-12-10 14:51:44.798+00 2024-12-10 14:51:44.798+00 f t 2024-08-18 \N 70 68 114 8 +109 2024-12-10 14:52:03.858+00 2024-12-10 14:52:03.858+00 f t 2024-08-18 \N 290 68 114 7 +110 2024-12-10 14:52:13.192+00 2024-12-10 14:52:13.192+00 f t 2024-08-18 \N 290 68 114 8 +111 2024-12-10 15:12:31.13+00 2024-12-10 15:12:31.13+00 f t 2024-08-18 \N 71 69 114 1 +112 2024-12-10 15:12:38.764+00 2024-12-10 15:12:38.764+00 f t 2024-08-18 \N 71 69 114 2 +113 2024-12-10 15:27:44.758+00 2024-12-10 15:27:44.758+00 f t 2024-08-19 \N 72 70 114 1 +114 2024-12-10 15:27:53.891+00 2024-12-10 15:27:53.891+00 f t 2024-08-19 \N 72 70 114 2 +115 2024-12-10 15:32:04.046+00 2024-12-10 15:32:04.046+00 f t 2024-08-19 \N 73 71 114 1 +116 2024-12-10 15:32:16.839+00 2024-12-10 15:32:16.839+00 f t 2024-08-19 \N 73 71 114 2 +117 2024-12-10 15:48:54.457+00 2024-12-10 15:48:54.457+00 f t 2024-08-20 \N 75 73 114 1 +118 2024-12-10 16:11:12.905+00 2024-12-10 16:11:12.905+00 f t 2024-08-21 \N 77 75 114 1 +119 2024-12-10 16:11:19.527+00 2024-12-10 16:11:19.527+00 f t 2024-08-21 \N 77 75 114 2 +120 2024-12-10 16:51:53.573+00 2024-12-10 16:51:53.573+00 f t 2024-08-26 \N 82 80 114 7 +121 2024-12-10 16:52:05.632+00 2024-12-10 16:52:05.632+00 f t 2024-08-26 \N 82 80 114 8 +122 2024-12-10 17:05:57.13+00 2024-12-10 17:05:57.13+00 f t 2024-08-26 \N 83 81 114 8 +123 2024-12-10 17:15:58.158+00 2024-12-10 17:15:58.158+00 f t 2024-08-26 \N 84 82 114 8 +124 2024-12-10 17:16:07.582+00 2024-12-10 17:16:07.582+00 f t 2024-08-26 \N 84 82 114 7 +125 2024-12-10 17:16:29.772+00 2024-12-10 17:16:29.772+00 f t 2024-08-26 \N 296 82 114 8 +126 2024-12-10 17:16:39.694+00 2024-12-10 17:16:39.694+00 f t 2024-08-26 \N 296 82 114 7 +127 2024-12-10 17:16:54.026+00 2024-12-10 17:16:54.026+00 f t 2024-08-26 \N 297 82 114 1 +128 2024-12-10 17:17:07.394+00 2024-12-10 17:17:07.394+00 f t 2024-08-26 \N 297 82 114 2 +129 2024-12-10 17:17:39.691+00 2024-12-10 17:17:39.691+00 f t 2024-08-26 \N 298 82 114 1 +130 2024-12-10 17:17:50.798+00 2024-12-10 17:17:50.798+00 f t 2024-08-26 \N 298 82 114 2 +131 2024-12-10 17:22:48.534+00 2024-12-10 17:22:48.534+00 f t 2024-08-27 \N 86 84 114 1 +132 2024-12-10 17:22:58.377+00 2024-12-10 17:22:58.377+00 f t 2024-08-26 \N 86 84 114 2 +133 2024-12-10 18:25:52.286+00 2024-12-10 18:25:52.286+00 f t 2024-09-02 \N 93 89 114 7 +134 2024-12-10 18:26:00.235+00 2024-12-10 18:26:00.235+00 f t 2024-09-02 \N 93 89 114 8 +135 2024-12-10 18:29:35.72+00 2024-12-10 18:29:35.72+00 f t 2024-09-03 \N 81 79 114 1 +136 2024-12-10 18:29:46.264+00 2024-12-10 18:29:46.264+00 f t 2024-09-03 \N 81 79 114 2 +137 2024-12-10 18:31:53.935+00 2024-12-10 18:31:53.935+00 f t 2024-07-01 \N 34 34 114 1 +138 2024-12-10 18:32:01.978+00 2024-12-10 18:32:01.978+00 f t 2024-07-02 \N 34 34 114 2 +139 2024-12-10 18:41:36.117+00 2024-12-10 18:41:36.117+00 f t 2024-07-04 \N 36 36 114 1 +140 2024-12-10 18:41:51.985+00 2024-12-10 18:41:51.985+00 f t 2024-07-04 \N 36 36 114 2 +141 2024-12-10 19:19:54.032+00 2024-12-10 19:19:54.032+00 f t 2024-07-08 \N 38 38 114 7 +142 2024-12-10 19:20:03.047+00 2024-12-10 19:20:03.047+00 f t 2024-07-08 \N 38 38 114 8 +143 2024-12-10 19:20:14.29+00 2024-12-10 19:20:14.29+00 f t 2024-07-08 \N 39 38 114 7 +144 2024-12-10 19:20:25.316+00 2024-12-10 19:20:25.316+00 f t 2024-07-08 \N 39 38 114 8 +145 2024-12-10 19:43:20.887+00 2024-12-10 19:43:20.887+00 f t 2024-07-13 \N 41 40 114 1 +146 2024-12-10 19:43:32.48+00 2024-12-10 19:43:32.48+00 f t 2024-07-13 \N 41 40 114 2 +147 2024-12-10 19:43:44.633+00 2024-12-10 19:43:44.633+00 f t 2024-07-13 \N 301 40 114 1 +148 2024-12-10 19:43:53.47+00 2024-12-10 19:43:53.47+00 f t 2024-07-13 \N 301 40 114 2 +149 2024-12-10 20:15:43.746+00 2024-12-10 20:15:43.746+00 f t 2024-07-17 \N 48 47 114 1 +150 2024-12-10 20:15:52.577+00 2024-12-10 20:15:52.577+00 f t 2024-07-17 \N 48 47 114 2 +151 2024-12-10 20:16:05.965+00 2024-12-10 20:16:05.965+00 f t 2024-07-17 \N 302 47 114 1 +152 2024-12-10 20:16:20.313+00 2024-12-10 20:16:20.313+00 f t 2024-07-17 \N 302 47 114 2 +153 2024-12-12 13:40:45.902+00 2024-12-12 13:40:45.902+00 f t 2024-06-03 \N 21 21 114 1 +154 2024-12-12 13:40:56.864+00 2024-12-12 13:40:56.864+00 f t 2024-06-03 \N 21 21 114 2 +155 2024-12-12 19:46:34.251+00 2024-12-12 19:46:34.251+00 f t 2024-12-12 2025-12-12 293 256 110 2 +156 2024-12-18 15:17:34.57+00 2024-12-18 15:17:34.57+00 f t 2024-12-17 2025-12-17 305 262 110 1 +157 2024-12-18 15:22:10.129+00 2024-12-18 15:22:10.129+00 f t 2024-12-17 2025-12-17 305 262 110 2 +158 2024-12-18 15:22:19.288+00 2024-12-18 15:22:19.288+00 f t 2024-12-17 2025-12-17 306 262 110 1 +159 2024-12-18 15:22:32.766+00 2024-12-18 15:22:32.766+00 f t 2024-12-17 2025-12-17 306 262 110 2 +160 2024-12-18 15:35:09.803+00 2024-12-18 15:35:09.803+00 f t 2024-12-16 2025-12-16 311 268 110 8 +161 2024-12-18 15:35:27.212+00 2024-12-18 15:35:27.212+00 f t 2024-12-16 2025-12-16 311 268 110 7 +162 2024-12-18 15:51:24.28+00 2024-12-18 15:51:24.28+00 f t 2024-12-11 2025-12-11 304 261 110 1 +163 2024-12-22 18:45:42.305+00 2024-12-22 18:45:42.305+00 f t 2024-12-22 \N 330 278 114 1 +164 2025-01-13 21:26:03.049+00 2025-01-13 21:26:03.049+00 f t 2025-01-09 2026-01-09 363 306 110 8 +165 2025-01-13 21:26:16.9+00 2025-01-13 21:26:16.9+00 f t 2025-01-09 2026-01-09 363 306 110 7 +166 2025-01-15 13:32:07.117+00 2025-01-15 13:32:07.117+00 f t 2025-01-14 2026-01-14 335 266 118 8 +167 2025-01-15 13:32:23.769+00 2025-01-15 13:32:23.769+00 f t 2025-01-14 2026-01-14 335 266 118 7 +168 2025-01-16 18:48:54.953+00 2025-01-16 18:48:54.953+00 f t 2025-01-17 2026-01-17 383 321 110 1 +169 2025-01-16 18:49:08.349+00 2025-01-16 18:49:08.349+00 f t 2025-01-17 2026-01-17 383 321 110 2 +170 2025-01-16 18:49:20.334+00 2025-01-16 18:49:20.334+00 f t 2025-01-17 2026-01-17 384 321 110 1 +171 2025-01-16 18:49:32.744+00 2025-01-16 18:49:32.744+00 f t 2025-01-17 2026-01-17 384 321 110 2 +172 2025-01-16 20:02:17.817+00 2025-01-16 20:02:17.817+00 f t 2025-01-14 2026-01-14 392 329 118 2 +173 2025-01-16 20:02:34.136+00 2025-01-16 20:02:34.136+00 f t 2025-01-14 2026-01-14 392 329 118 1 +\. + + +-- +-- Data for Name: mascotas_privatenote; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_privatenote (id, note_body, created_at, pet_owner_id, vet_visit_id) FROM stdin; +1 El tutor es poco colaborativo y prepotente.\nxXX\nXX\nXX 2025-02-26 14:31:08.54653+00 499 722 +2 AAA 2025-02-26 16:03:41.710316+00 501 724 +3 AAA 2025-02-26 17:57:11.298017+00 489 708 +4 El apetito caprichoso es preocupante. 2025-02-26 19:55:55.541138+00 500 723 +5 La gata es muy agresiva y los tutores tienen dificultad para sostenerla adecuadamente. 2025-02-26 20:41:40.701424+00 469 679 +6 El animal muestra signos de malestar abdominal moderado, por lo que se recomienda seguimiento cercano. 2025-02-26 20:45:47.51523+00 491 710 +7 El perro se encontraba sedado, y el tutor no sabía manipularlo correctamente. Se indicó no sedar más al animal sin la intervención de un médico veterinario, aunque los tutores mencionaron que esto fue recomendado por su veterinario de cabecera. Aún así, se reiteró que no se debe sedarlo para el control. 2025-02-26 20:48:21.754102+00 493 712 +8 Las tutoras estaban muy afectadas y preferían no tomar la decisión de eutanasiar al gato, aunque entendieron que el pronóstico era incierto 2025-02-26 21:04:29.58588+00 450 652 +9 Adjunte receta con mediciones x5. 2025-03-12 18:51:27.506026+00 425 808 +10 Una vez que tengamos los resultados de laboratorio el control para considerar tratamiento. \nObservar cambios en la orina o algún otro signo. 2025-04-09 19:29:46.128906+00 409 962 +11 Adjuntar el informe de resultados de diagnotest 2025-04-12 19:21:09.293463+00 643 976 +12 Recordar al propietario el ayuno sólido de 8 hs antes de la extracción de sangre y la recolección de orina en un frasco para urianálisis. 2025-05-08 21:46:49.580802+00 854 1122 +13 Se vacuno y se extiende el certificado de salud. Recomendamos a la tutora, pedir un turno con el cardiólogo. 2025-05-09 23:59:35.549314+00 841 1119 +14 Analisis de orina completo con relación cortisol/creatinina 2025-05-10 23:38:07.87887+00 903 1139 +15 Indico la castración en amar mascotas. La tutora se pondrá en contacto para sacar turno a la brevedad posible. 2025-05-12 20:51:56.406576+00 944 1151 +16 Considerar tomografía tiroides. 2025-05-14 16:57:27.103105+00 1009 1172 +17 La ecografía es por el abdomen distendido y mucosas levemente pálidas. 2025-05-23 21:27:47.851188+00 1330 1237 +18 Muy buena predisposición de la propietaria. 2025-05-28 22:10:36.981401+00 1643 1286 +19 S 2025-06-06 01:30:31.534807+00 1735 1304 +20 D 2025-06-06 01:32:10.331088+00 1735 1364 +21 S 2025-06-06 01:37:15.824433+00 2094 1361 +22 D 2025-06-09 19:11:17.634044+00 2234 1390 +23 . 2025-06-10 14:56:11.349579+00 1802 1323 +24 se sugirió control a la semana y no se hizo, desconozco evolución 2025-06-10 14:59:46.770551+00 1461 1268 +25 N 2025-06-20 21:50:22.889243+00 3052 1528 +26 Considerar rinoscopia. 2025-06-24 17:15:50.890557+00 3054 1531 +27 Colotrin para proteger articulaciones 2025-07-08 22:05:51.810796+00 4176 1699 +28 - 2025-07-18 13:17:07.392951+00 4265 1769 +29 - 2025-07-18 13:18:54.525159+00 2894 1796 +30 . 2025-07-19 13:43:49.895338+00 4265 1769 +31 .- 2025-07-19 13:44:01.593606+00 4265 1769 +32 . 2025-07-19 13:47:46.288389+00 4748 1804 +33 Control segun evolucion 2025-07-21 23:04:07.9649+00 1082 1720 +34 - 2025-07-22 14:23:39.214605+00 4954 1837 +35 Sin 2025-07-23 15:18:38.93628+00 3052 1696 +36 Ecografía 2025-07-23 15:20:26.368219+00 3052 1697 +37 O 2025-07-23 15:21:59.240786+00 4869 1831 +38 O 2025-07-23 15:22:04.706977+00 4869 1831 +39 Se explica pronóstico crítico. De no repuntar, se habla de calidad de vida, poner en la balanza la situación del animal. 2025-07-25 03:18:37.56286+00 5204 1875 +40 Tutor estuvo averiguando oftalmos que no llegan a su zona. Se facilita colega que va a domicilio (desconozco si su zona exacta pero para que averigüe) 2025-07-26 01:54:39.28069+00 5227 1877 +41 W 2025-07-30 01:45:21.886719+00 5446 1916 +42 I 2025-08-01 13:21:07.604792+00 5081 1853 +43 0 2025-08-01 13:26:15.704166+00 4992 1838 +44 0 2025-08-01 13:28:52.361383+00 5342 1896 +45 J 2025-08-01 14:32:57.550884+00 5479 1913 +46 Nota 2025-08-04 14:19:50.558952+00 5620 1949 +47 Paciente nerviosa, usar Gabapentina para complementarios 2025-08-05 16:29:44.78832+00 393 1930 +48 Mi apreciación fue una buena conexión con Claudia, muy bien predispuesta a realizar las modificaciones propuestas y a tener un seguimiento de Milo por intermedio del portal. 2025-08-19 23:26:49.085758+00 165 2144 +49 Se percibe buen feedback con los tutores. Se indica que vayan dando devolución en este mes, de cómo va evolucionando el caso. Agradecería puedan transmitírmelo.- 2025-09-04 00:00:01.285625+00 4620 2268 +50 El pronóstico es reservado por el estado general. 2025-09-16 22:45:59.123327+00 8724 2515 +51 Rechazó el ANTIPARASITARIO oral..se ofrece endectocida spot on para la próxima visita. Ya pagó la desparasitacion. 2025-09-23 01:48:20.658808+00 9042 2579 +52 Se adjunta informe e imágenes de la ecografía abdominal del día de la fecha. 2025-09-25 16:21:01.104373+00 9109 2625 +53 . 2025-09-27 22:30:35.384207+00 7897 1861 +54 . 2025-09-27 22:33:41.387754+00 7897 1862 +55 El propietario del gato no se encontraba presente, me recibió su madre la cual no sabia, ni podia, manejar al paciente de manera adecuada (le gritaba). Paciente MUY estresado. 2025-09-27 22:41:22.698513+00 7899 1863 +56 . 2025-09-27 22:42:16.914674+00 7745 1864 +57 Paciente agresivo, no dejaba manipular patas delanteras. usar bozal y buena sujeción 2025-09-27 22:46:44.70921+00 6392 1865 +58 Tutora muy estresada, se puso a llorar durante el procedimiento, a pesar de que no hubo ningún inconveniente durante la maniobra. 2025-09-27 22:57:10.14732+00 1798 1868 +59 Animal de 30 kg con desorden del comportamiento. Indiqué gabapentina 12hs y 2 hs antes de la extracción de sangre + bozal. Los tutores amables. Solicité Perfil 7 + AOC + serología de brucella. Se va a castrar tb así que se aprovecha este estudio como precx. 2025-10-03 10:13:52.961298+00 8854 1947 +60 S/P 2025-10-03 16:31:38.464102+00 7766 1651 +61 Tutora complicada, cambio de direccion una vez que llegue al domicilio teniendo que entrar a otra direccion que no fue la solicitada y puso en duda el conocimiento que tenia sobre las maniobras (una extraccion). 2025-10-03 16:35:18.962261+00 7038 1957 +62 MUERDE! Distraer con comida 2025-10-03 23:27:37.476482+00 9670 1965 +63 Sp 2025-10-07 14:12:03.887222+00 10054 1992 +64 Derivo endocrinólogo por colesterol elevado. \nSaludos 2025-10-10 21:56:55.082273+00 8854 2018 +65 . 2025-10-10 22:00:51.4031+00 9310 2020 +66 El tutor ve que la mascota se pisa encima y manifestó que quería ser de la eutanasia a lo cual explique que sin hacer un mínimo intento en un tratamiento paliativo para su condición, Que la mascota tampoco está en condiciones de una eutanasia 2025-10-11 15:03:02.102114+00 10259 2031 +67 El tutor muy bueno pero el paciente estaba terminal 2025-10-13 23:10:05.493703+00 9491 2046 +68 Muy buenos tutores!! 2025-10-13 23:11:11.752063+00 7131 1742 +69 La tutora es muy amable y entiende la dificultad de manipular su gato. \naunque con indicaciones se puede trabajar 2025-10-13 23:13:10.050597+00 9861 2047 +70 El tutor entiende que el perro es muy inquieto miedoso y no para de ladrar.\n\nse le había dado pregabalina pero estaba muy eufórica 2025-10-13 23:15:56.217238+00 8854 2048 +71 eutanasia 2025-10-13 23:17:17.579114+00 9491 2050 +72 eutanasiado 2025-10-13 23:17:30.438054+00 9491 2050 +73 eutanasiado 2025-10-13 23:17:48.314304+00 9491 2051 +74 eutanasiado 2025-10-13 23:18:03.215083+00 9491 2051 +75 . 2025-10-13 23:42:46.03427+00 10555 2062 +76 Propietaria agresiva: No pudo manejar a su animal, cada vez que el gato bufaba lo soltaba, pretendía que la empresa provea de 2 personas para una ecografía. le dije que era mejor una mesa para el estudio y me dijo que en el comedor no se podía. Decidió hacerla en la cama, el gato se escapo por lo menos 7 veces. Le grito a la madre que tampoco pudo solamente sostener la pata trasera del animal, La propietaria lo levanto en el aire y le pego varios gritos ante la no colaboración de animal Cuando me dijo que no "Estaba cómoda con mi servicio"procedí a guardar mis cosas para retirarme y ahí me dijo: - Que vos te vayas depende que yo te abra la puerta- 2025-10-14 01:56:49.503664+00 10208 2066 +77 Sp 2025-10-14 03:12:15.605528+00 10054 1998 +78 Gatito bueno pero miedoso, manipular lo necesario para no estresarlo 2025-10-15 01:19:14.009745+00 10355 2077 +79 La tutora solicita que le saque el cateter, no entendió que el tto de fluidoterapia lo iba a necesitar nuevamente. Manifestó como un ataque de pánico en la consulta..... 2025-10-17 23:55:49.768424+00 10613 2116 +80 . 2025-10-18 17:56:37.779795+00 10560 2064 +81 Se habla con la Dra. Katerina Dobowik (médica en domicilio que derivó a WellVet) para indagar respecto a lo realizado.\nEl informe radiológico es incompleto y no se condice cronológicamente la imagen con lo que dicen que se hizo. 2025-10-20 00:18:02.813943+00 822 2120 +82 La tutora dijo que le dió de desayunar "un poquito" previo a la extracción de sangre, tener en cuenta alteraciones en los valores sanguineos 2025-10-21 13:10:59.883706+00 123 2135 +83 Consultará por el precio de la ovariectomia. Ya tiene hecho el estudio sanguíneo. Va a sacar turno con cardiología+ endocrinólogo+etología 2025-10-24 01:48:20.503881+00 8854 2018 +84 El canino sufre de varios procesos y esta grande, no sale de la casa pq no camina 2025-10-24 19:57:59.632383+00 11269 2161 +85 Dato: paciente muy indocil, no sabe manejarla el dueño tampoco. Se deja receta para gabapentina \n\nEl espacio en el que habita es pequeño con muchísimo olor a cigarrillo , fuma sin ventilación 2025-10-25 20:45:33.550338+00 11503 2172 +86 Se realiza consulta con muy buena predisposición de los tutores, y con buena recepción de las indicaciones. 2025-10-30 18:36:19.832125+00 11264 3017 +87 . 2025-11-01 10:13:56.819686+00 1100 2245 +88 El gato no está flaco, leve deshidratacion, come plantas y otras cosas no comestibles, se aconsejo dieta, (pollo,zanahoria) tiene hambre, dos dias y control 2025-11-01 21:46:17.276879+00 12160 2258 +89 x 2025-11-04 14:46:04.960218+00 4176 2287 +90 x 2025-11-04 14:46:50.5411+00 10716 2288 +91 ANIMAL COMPLICADO: NO SE PUDO REALIZAR EL ESTUDIO, 40 MINUTOS EN EL DOMICILIO TRATANDO DE POSICIONAR AL ANIMAL. SE NEGARON A PONER BOZAL PORQUE REFERIAN QUE IBA A SER PEOR, AL INSTANTE QUE SE APOYABA EL TRANSDUCTOR EL PERRO SE DABA VUELTA Y MORDIA...SOLO PARA ACERCARLO SE COMIO UN POTE DE TUTUCA SOLO PARA QUE SE ACUESTE: IMPOSIBLE VISUALIZACION ECOGRAFICA. LOS TUTORES NO PUEDEN DOMINAR AL ANIMAL 2025-11-08 04:06:34.869108+00 9670 2309 +92 Control en 1 mes 2025-11-09 21:59:49.518205+00 12061 2322 +93 x 2025-11-11 17:50:09.283944+00 9991 2329 +94 x 2025-11-11 17:52:59.019513+00 9712 2330 +95 Muy buen feedback con la tutora, se sugiere control en un mes, no alcancé a decírselo, se le apagó la computadora. 2025-11-17 15:23:02.034709+00 12804 2395 +96 Se reemplazó informe por nuevos datos de la veterinaria derivante. 2025-11-17 21:03:16.156383+00 10203 2398 +97 Animal muy dócil, algo inquieto pero con tutores predispuestos a ayudar. 2025-11-20 16:14:56.341491+00 13352 2418 +98 Luego de ser medicada en la veterinaria empezó con la claudicación. Me parece un poco raro asociarlo a una disfunción nerviosa, salvó que hayan aplicado medicación intramuscular \nSolicite rx para descartar compromiso oseo en la zona 2025-11-20 22:27:40.407232+00 13916 2425 +99 El tutor debe sacar el turno para el sábado 13 de diciembre 2025-11-23 16:45:28.461561+00 11659 2437 +\. + + +-- +-- Data for Name: mascotas_unavailability; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_unavailability (id, created_at, updated_at, deleted, active, start_day, end_day, start_time, end_time, start_date, end_date, user_id, veterinarian_id, reason) FROM stdin; +1 2025-01-23 12:24:42.029873+00 2025-01-23 12:24:42.029881+00 f t 3 3 08:00:00 21:00:00 2025-01-30 2025-01-30 118 80 Suplencia en veterinaria +2 2025-01-23 12:32:59.017248+00 2025-01-23 12:32:59.017259+00 f t 0 0 08:00:00 21:00:00 2025-01-20 2025-01-27 118 81 Pendiente conseguir algunos medicamentos y certificados para poder hacer domicilios +5 2025-01-27 14:48:55.192041+00 2025-01-27 14:48:55.192048+00 f t 0 1 08:00:00 21:00:00 2025-01-27 2025-01-29 110 1 +34 2025-10-30 09:39:16.016803+00 2025-10-30 09:39:16.016812+00 f t 3 3 00:00:00 23:59:59 2025-10-31 2025-10-31 \N 21 Personal +35 2025-10-30 09:40:26.698295+00 2025-10-30 09:40:26.698304+00 f t 6 6 00:00:00 23:59:59 2025-11-03 2025-11-03 \N 21 Personal +7 2025-01-29 17:47:11.244375+00 2025-01-29 17:47:11.244385+00 f t 0 6 08:00:00 21:00:00 2025-02-03 2025-02-28 118 83 Vacaciones +36 2025-11-03 15:48:04.009844+00 2025-11-03 15:48:04.009854+00 f t 1 1 00:00:00 23:59:59 2025-11-05 2025-11-05 \N 113 Agenda completa +37 2025-11-04 00:06:43.324633+00 2025-11-04 00:06:43.324645+00 f t 1 1 00:00:00 23:59:59 2025-11-05 2025-11-05 \N 113 Día completo +3 2025-01-23 17:48:11.714903+00 2025-01-23 17:48:11.71491+00 f t 0 6 08:00:00 21:00:00 2025-02-01 2025-02-15 118 82 Vacaciones +9 2025-02-05 12:49:26.462904+00 2025-02-05 12:49:26.462912+00 f t 3 3 15:00:00 21:00:00 2025-02-06 2025-02-27 118 1 Cursando +38 2025-11-04 15:09:10.606512+00 2025-11-04 15:09:10.606528+00 t t 2 2 00:00:00 23:59:59 2025-11-06 2025-11-06 \N 70 Personales +8 2025-01-30 19:43:13.297001+00 2025-01-30 19:43:13.29701+00 t t 0 6 08:00:00 21:00:00 2025-02-16 2025-02-24 118 77 Vacaciones +39 2025-11-04 15:09:41.828089+00 2025-11-04 15:09:41.828099+00 t t 2 2 00:00:00 23:59:59 2025-11-06 2025-11-06 \N 70 Personales +6 2025-01-29 13:31:08.98631+00 2025-01-29 13:31:08.986318+00 f t 0 6 08:00:00 21:00:00 2025-02-06 2025-02-13 110 77 Problemas de salud +10 2025-02-19 13:49:16.493784+00 2025-02-19 13:49:16.493792+00 f t 0 6 08:00:00 21:00:00 2025-02-16 2025-02-24 118 77 +11 2025-03-25 19:57:28.439077+00 2025-03-25 19:57:28.439082+00 f t 1 1 18:00:00 21:00:00 2025-03-25 2025-07-04 118 70 Dando clases +12 2025-03-25 19:57:52.672752+00 2025-03-25 19:57:52.672758+00 f t 3 3 18:00:00 21:00:00 2025-03-25 2025-07-04 118 70 Dando clases +13 2025-05-05 20:09:48.731512+00 2025-05-05 20:09:48.731519+00 f t 0 6 08:00:00 21:00:00 2025-06-02 2025-06-30 118 89 Vacaciones +15 2025-06-02 17:27:16.635178+00 2025-06-02 17:27:16.635184+00 f t 0 6 08:00:00 21:00:00 2025-06-02 2025-06-05 118 88 Vacaciones +16 2025-06-17 19:34:25.524932+00 2025-06-17 19:34:25.524939+00 f t 0 6 08:00:00 21:00:00 2025-06-17 2025-06-20 118 79 Vacaciones +17 2025-07-18 17:20:34.468462+00 2025-07-18 17:20:34.468472+00 f t 0 6 08:00:00 21:00:00 2025-07-19 2025-07-29 118 84 Sin turno +18 2025-07-22 15:00:30.558827+00 2025-07-22 15:00:30.558839+00 f t 1 5 08:00:00 21:00:00 2025-07-22 2025-07-26 118 70 Sin disponibilidad +19 2025-07-22 18:15:59.555411+00 2025-07-22 18:15:59.555419+00 f t 1 5 08:00:00 21:00:00 2025-07-22 2025-07-26 118 92 Sin disponibilidad +20 2025-09-23 11:13:12.452777+00 2025-09-23 11:13:12.452786+00 f t 0 0 00:00:00 23:59:59 2025-09-24 2025-09-24 \N 70 TE +21 2025-09-23 11:13:34.464609+00 2025-09-23 11:13:34.464618+00 f t 0 0 00:00:00 23:59:59 2025-09-25 2025-09-25 \N 70 dd +22 2025-09-23 11:14:34.309483+00 2025-09-23 11:14:34.309492+00 f t 0 0 00:00:00 23:59:59 2025-09-29 2025-09-29 \N 70 dawd +23 2025-09-30 14:59:21.968109+00 2025-09-30 14:59:21.968119+00 f t 1 1 00:00:00 23:59:59 2025-10-01 2025-10-01 \N 80 Trabajo +24 2025-10-02 14:29:13.889281+00 2025-10-02 14:29:13.889292+00 f t 3 3 00:00:00 23:59:59 2025-10-03 2025-10-03 \N 80 Trabajo +25 2025-10-21 16:25:47.684454+00 2025-10-21 16:25:47.684462+00 f t 1 1 00:00:00 23:59:59 2025-10-22 2025-10-22 \N 82 Vacaciones +40 2025-11-05 09:49:16.527665+00 2025-11-05 09:49:16.527675+00 f t 4 5 00:00:00 23:59:59 2025-11-08 2025-11-09 \N 21 Personal +4 2025-01-27 14:35:43.846013+00 2025-01-27 14:35:43.846021+00 t t 0 6 08:00:00 21:00:00 2025-01-29 2025-02-10 110 2 Vacaciones +14 2025-05-13 13:08:12.408532+00 2025-05-13 13:08:12.40854+00 t t 0 6 08:00:00 21:00:00 2025-05-13 2025-05-29 118 2 No disponible +26 2025-10-22 13:54:06.074459+00 2025-10-22 13:54:06.074467+00 t t 0 0 08:00:00 21:00:00 2025-11-01 2025-11-06 121 91 +27 2025-10-25 13:46:26.563613+00 2025-10-25 13:46:26.563621+00 f t 0 0 08:00:00 21:00:00 2025-11-01 2025-11-06 121 91 No disponible +28 2025-10-26 19:23:10.772338+00 2025-10-26 19:23:10.772347+00 t t 6 6 09:00:00 15:00:00 2025-10-27 2025-10-27 \N 5 personales +29 2025-10-26 19:23:46.819695+00 2025-10-26 19:23:46.819703+00 t t 6 6 10:00:00 14:00:00 2025-10-27 2025-10-27 \N 5 personales +30 2025-10-26 19:24:18.328978+00 2025-10-26 19:24:18.328987+00 t t 6 6 10:00:00 14:00:00 2025-10-27 2025-10-27 \N 5 personal +31 2025-10-28 20:24:37.953503+00 2025-10-28 20:24:37.953516+00 t t 1 1 00:00:00 23:59:59 2025-10-29 2025-10-29 \N 5 Personal +32 2025-10-28 20:25:08.368059+00 2025-10-28 20:25:08.368071+00 t t 1 1 00:00:00 23:59:59 2025-10-29 2025-10-29 \N 5 Personal +33 2025-10-28 20:25:45.784347+00 2025-10-28 20:25:45.784356+00 f t 2 2 00:00:00 23:59:59 2025-10-30 2025-10-30 \N 5 Personal +41 2025-11-05 09:49:33.35802+00 2025-11-05 09:49:33.358029+00 f t 5 5 00:00:00 23:59:59 2025-11-09 2025-11-09 \N 21 Personal +42 2025-11-06 23:12:40.14955+00 2025-11-06 23:12:40.149561+00 f t 3 3 00:00:00 23:59:00 2025-11-07 2025-11-07 \N 113 Agenda completa +43 2025-11-07 10:06:24.480135+00 2025-11-07 10:06:24.480143+00 f t 4 4 00:00:00 23:59:59 2025-11-08 2025-11-08 \N 5 Sin disponibilidad +44 2025-11-09 10:09:49.607414+00 2025-11-09 10:09:49.607423+00 f t 6 6 00:00:00 23:59:59 2025-11-10 2025-11-10 \N 92 No puedo atender hoy +45 2025-11-09 12:11:49.928731+00 2025-11-09 12:11:49.92874+00 f t 6 6 00:00:00 23:59:59 2025-11-10 2025-11-10 \N 21 Personal +46 2025-11-12 16:49:19.068403+00 2025-11-12 16:49:19.068414+00 f t 2 2 00:00:00 23:59:59 2025-11-13 2025-11-13 \N 113 Agenda completa +47 2025-11-12 16:49:26.089127+00 2025-11-12 16:49:26.089136+00 f t 3 3 00:00:00 23:59:59 2025-11-14 2025-11-14 \N 113 Agenda completa +48 2025-11-15 10:37:46.576087+00 2025-11-15 10:37:46.5761+00 f t 5 6 00:00:00 23:59:59 2025-11-16 2025-11-17 \N 5 Sin turnos disponibles +49 2025-11-21 01:24:57.893638+00 2025-11-21 01:24:57.893651+00 f t 3 6 00:00:00 23:59:59 2025-11-21 2025-11-24 \N 5 No disponible +50 2025-11-21 10:48:45.040787+00 2025-11-21 10:48:45.040796+00 f t 4 6 00:00:00 23:59:59 2025-11-22 2025-11-24 \N 5 No disponible +\. + + +-- +-- Data for Name: mascotas_veterinarian; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_veterinarian (id, created_at, updated_at, deleted, active, first_name, last_name, email, phone, address, medical_license, profile_picture, user_id, alias) FROM stdin; +82 2025-01-23 17:47:21+00 2025-01-23 17:47:21+00 f t Nicolas Alcasena nalcasena@gmail.com +5491132671130 CABA 10085 1187 nalcasena +119 2025-10-27 17:32:54.684451+00 2025-10-27 17:32:54.684458+00 f t Carolina Margarita Marras caro.marras@gmail.com 5491162527567 CABA MN9036 MP13781 1915 cmarras +85 2025-02-03 20:49:40+00 2025-02-03 20:49:40+00 f t Antonella Battimo Totino antobt@hotmail.com.ar +5491152604675 CABA N/A 1183 abattimototino +116 2025-10-03 13:04:24.573606+00 2025-10-03 13:04:24.573614+00 f t Juan Manuel Gallardo zeriodas@hotmail.com +5491164165751 CABA N/A 1873 jgallardo +7 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f f Carolina Cullari \N +5491149731192 CABA 10163 \N ccullari +113 2025-09-09 17:37:21.329118+00 2025-09-09 17:37:21.329128+00 f t Guadalupe Castro guadacastro.vet@gmail.com +5491127396765 Vicente Lopez MP 15687 1774 gcastro +89 2025-02-13 13:39:28+00 2025-02-13 13:39:28+00 f t Katerina Dubowik katerinadubowik@hotmail.com +5491130016394 CABA 10816 135 kdubowik +3 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f f Gerardo Mallo gemaradiovet@gmail.com +5491144148804 CABA 4422 \N gmallo +8 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f f Maria Victoria Poisson victoriapoisson07@gmail.com +5493464446153 Zona Norte Mp15163/Mn 10774 \N mpoisson +73 2024-11-26 14:46:42+00 2024-11-26 14:46:42+00 f f Nicolás Porta porta.nicolas@gmail.com +5491128502628 CABA 9304 \N nporta +84 2025-01-27 15:29:54+00 2025-01-27 15:29:54+00 f t Silvia Campo silviaanacampo46@gmail.com +5491161883705 CABA 24779 1185 scampo +67 2024-11-06 13:19:32+00 2024-11-06 13:19:32+00 f t Yanina Medvuidenur yanifisiovet@gmail.com +5491144036724 CABA 10421 \N ymedvuidenur +14 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f t Esteban Caravello esteban.caravello@hospitalitaliano.org.ar +5491151422318 CABA 10846 119 ecaravello +11 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f t Paula Cleves vethomebuenosaires@gmail.com +5491166551076 CABA 9809 1186 pcleves +79 2025-01-06 17:04:17+00 2025-01-06 17:04:17+00 f t María José Henjes colibria.terapiafloral@gmail.com +5491141601384 Florida 10804 129 mhenjes +66 2024-11-01 12:57:38+00 2024-11-01 12:57:38+00 f f Melanie Belén Cuestas Cánepa melaniecuestas@hotmail.com +5491169421501 CABA No 1184 mcuestascanepa +2 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f t Gerardo Delfino gerardodelfino@hotmail.com +5491154642655 CABA 6902 123 gdelfino +108 2025-07-29 14:45:04.592809+00 2025-07-29 14:45:04.592821+00 f t María Corina Diías Pais mariacorinadiaspais@gmail.com 5492215442513 La Plata Mp 11121 118 mdiiaspais +105 2025-07-22 14:57:48.159109+00 2025-07-22 14:57:48.159116+00 f t Laura Passio laupassio@gmail.com +5491163569948 General Rodriguez MP 7984 1617 lpassio +93 2025-03-17 17:55:26.727073+00 2025-03-17 17:55:26.727079+00 f t Karen Dure durekaren@gmail.com +54 9 3794 60-7281 Corrientes N/A 140 kdure +25 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f f Nahuel Ezquieta \N 1149451064 CABA 11998 \N nezquieta +109 2025-07-29 14:58:42.749726+00 2025-07-29 14:58:42.749735+00 f t Damián Galiñanes damian1257@icloud.com 5492215475273 La Plata MP 12740 1495 dgalinanes +75 2024-12-06 13:31:19+00 2024-12-06 13:31:19+00 f t Paula Kumabe paulakumabe@hotmail.com +5491169596687 CABA 9497 1182 pkumabe +107 2025-07-29 14:34:45.735948+00 2025-07-29 14:34:45.735958+00 f t Daniela Herrera daniela.herrera@usal.edu.ar 5491135872848 La Plata MP 16083 1487 dherrera +111 2025-08-11 18:29:20.181315+00 2025-08-11 18:29:20.181327+00 f t Vera Hualde veraquince@hotmail.com +5491169791638 CABA N/A 1853 vhualde +86 2025-02-05 16:13:25.506161+00 2025-02-05 16:13:25.506172+00 f t Diagnotest Laboratorio \N 1144600018 CABA N/A \N dlaboratorio +115 2025-09-23 16:28:12.294983+00 2025-09-23 16:28:12.294994+00 f t Damián Levisman drlevisman@gmail.com +5491161845530 CABA 8089 1854 dlevisman +72 2024-11-15 18:16:09+00 2024-11-15 18:16:09+00 f f Noelia Macias Landro noeliamacias@live.com 1130301215 CABA 10646 137 nmaciaslandro +6 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f f Carmen Maria Gayo gretonio2000@yahoo.com.ar 1169821934 CABA nan 136 cmariagayo +99 2025-06-03 12:23:08.90833+00 2025-06-03 12:23:08.908338+00 f t Nestor Memed nestordanielmemed@gmail.com +5491165233769 Virreyes, San Fernando, PBA MP 14186 1071 nmemed +106 2025-07-24 14:04:32.283684+00 2025-07-24 14:04:32.283693+00 f t Ursula Palmieri ursulapalmieri@gmail.com 5491130922309 CABA N/A 1433 upalmieri +101 2025-07-14 15:20:40.914883+00 2025-07-14 15:20:40.914892+00 f t Marcela Prack veterinariaprack@gmail.com 1150948878 CABA 8692 1366 mprack +102 2025-07-14 15:20:41.32582+00 2025-07-14 15:20:41.325827+00 t t Marcela Prack veterinariaprack@gmail.com 1150948878 CABA 8692 118 mprack-2 +74 2024-12-06 13:29:40+00 2024-12-06 13:29:40+00 f t Javier Robatto javierpr15@hotmail.com +5491149790131 Ramos Mejía 7843 132 jrobatto +5 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f t Paola Della Bianca estudiosecovet@hotmail.com +5491167836657 CABA 8670 1181 pdellabianca +83 2025-01-27 13:19:31+00 2025-01-27 13:19:31+00 f f Marianela Rius marianela.rius@live.com.ar +5491166713951 CABA N/A \N mrius +117 2025-10-03 13:31:44.653065+00 2025-10-03 13:31:44.653074+00 f t Adrian Grilli grilliecografiaveterinaria@gmail.com +5491121872349 Zona Sur MP 14469 1874 agrilli +71 2024-11-07 20:19:38+00 2024-11-07 20:19:38+00 f t Ana Christophersen anachristophersen@hotmail.com +5491159970968 CABA 9042 125 achristophersen +96 2025-04-16 19:24:44.401178+00 2025-04-16 19:24:44.401186+00 f t Gaston Fernandez gastonfernandez1996@outlook.com +5491167267912 CABA MP 16321 143 gfernandez +88 2025-02-13 13:31:04+00 2025-02-13 13:31:04+00 f t Maria Victoria Gonzalez mariavictoriagonzalez.mve@gmail.com +5492215043592 CABA 10049 134 mgonzalez +80 2025-01-23 12:22:09+00 2025-01-23 12:22:09+00 f t Mariana Palummo marianapalummo22@gmail.com 5491135780787 CABA 10777 128 mpalummo +114 2025-09-10 17:21:55.875453+00 2025-09-10 17:21:55.875464+00 f t Maria Luisa Oviedo marialuisao2005@yahoo.com.ar +5491133494411 CABA 5923 1781 moviedo +9 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f t Nicolás Guasco nicolasguasco82@hotmail.com +5491155672517 CABA 10488 117 nguasco +100 2025-07-11 19:15:21.917245+00 2025-07-11 19:15:21.917254+00 f t Rapela Laboratorio \N 1166612689 Av Ramón Falcón 2542 N/A 118 rlaboratorio +104 2025-07-15 14:47:07.326366+00 2025-07-15 14:47:07.326375+00 f t Maria Paz Frontini mariapazfrontini@live.com.ar 1167136803 GBA N/A 1855 mfrontini +103 2025-07-14 15:46:05.807346+00 2025-07-14 15:46:05.807352+00 f t Virginia Osso vir_osso@hotmail.com 1164797852 Florida MN: 9568. MP: 13850 1367 vosso +70 2024-11-07 20:17:49+00 2024-11-07 20:17:49+00 f t Martín Palladino martinpalladino@yahoo.com +5491156448508 CABA 7489 122 mpalladino +78 2025-01-06 13:42:02+00 2025-01-06 13:42:02+00 f t Javier Gilbert vetemartin@yahoo.com.ar +5491140297152 CABA 6018 130 jgilbert +1 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f t Lisandro Ponce poncelisandro@gmail.com +5493434481646 Gregorio de Laferrère 3684 10451 profile_pictures/Captura_de_pantalla_2024-11-30_a_las_7.22.13p.m..png 116 lponce +21 2024-10-30 14:12:33+00 2024-10-30 14:12:33+00 f t Maria Laura Gorostegui mlgorostegui@gmail.com +5491161809517 Zona Sur 13,046 124 mlauragorostegui +92 2025-02-27 14:54:59+00 2025-02-27 14:54:59+00 f t Mara Leila Martinez maralmartinez@yahoo.com.ar +5491158677827 PBA 7758 139 mmartinez +95 2025-03-27 18:16:26.267616+00 2025-03-27 18:16:26.267627+00 f t Crematorio Inseparables contacto@amarmascotas.com 1160188181 CABA N/A \N cinseparables +87 2025-02-11 18:59:53+00 2025-02-11 18:59:53+00 f t Julian Nápoli Julian_napoli@hotmail.com +5491158565295 PBA MP 15612 133 jnapoli +120 2025-10-29 12:56:37.449432+00 2025-10-29 12:56:37.449441+00 f t Ariel Rodas arielrodas.vete@gmail.com 1157659597 CABA 10503 1928 arodas +68 2024-11-06 18:07:00+00 2024-11-06 18:07:00+00 f t Daniela Ordóñez nelanonez@gmail.com +5491167231104 Zona Norte 13633 126 dordonez +97 2025-04-25 18:03:18.206282+00 2025-04-25 18:03:18.206292+00 f t Marcelo Gastón Giangreco marceloggiangreco@hotmail.com +5491164136102 CABA 8471 147 mgiangreco +94 2025-03-18 18:17:53+00 2025-03-18 18:17:53+00 f t Camila Lorenzo camila@provet.com.ar +5491134883855 Banfield 16219 142 clorenzo +81 2025-01-23 12:29:11+00 2025-01-23 12:29:11+00 f t María Inés Saez mi_saez@hotmail.com +5491168359999 CABA 10994 127 msaez +110 2025-07-31 18:59:14.57614+00 2025-07-31 18:59:14.576147+00 f t Ayelén Salazar ayee.salazar@gmail.com +5492215561149 La Plata 14441 1497 asalazar +76 2024-12-10 15:47:00+00 2024-12-10 15:47:00+00 f f BUSCAR VETE hbrunacci@gmail.com 1159095342 Prueba nan \N bvete +77 2025-01-02 13:42:45+00 2025-01-02 13:42:45+00 f f Gabriela de Caroli vet.magadecaro@gmail.com +5492923425405 CABA 9800 131 gdecaroli +90 2025-02-14 14:35:52+00 2025-02-14 14:35:52+00 f t Daniela di Risio ddirisio@fvet.uba.ar +5491145777760 CABA 10378 1180 ddirisio +118 2025-10-08 18:01:15.176106+00 2025-10-08 18:01:15.176112+00 f t Clínica Burgess clinica.burgess@gmail.com N/A Olivos N/A 1879 cburgess +91 2025-02-21 20:29:05+00 2025-02-21 20:29:05+00 f t Veronica Carolina Szczurek veros_sk@hotmail.com +5491158860399 CABA MN 10.315 / MP 14.646 138 vszczurek +112 2025-08-15 19:20:55.360114+00 2025-08-15 19:20:55.360121+00 f t Nicolás Tisato Tedesco nicotisato@gmail.com +5491151539037 PBA N/A 1645 ntisatotedesco +121 2025-11-13 17:50:35.60069+00 2025-11-13 17:50:35.600696+00 f t Tomas Ignacio Goncalves tomasigoncalves@hotmail.com +5492227520466 CABA 11135 2132 tgoncalves +98 2025-04-28 12:19:09.708602+00 2025-04-28 12:19:09.708964+00 f t Carolina Vecino carolina.v.vecino@gmail.com +5491158485833 CABA 9540 148 cvecino +\. + + +-- +-- Data for Name: mascotas_veterinarian_coverage_areas; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_veterinarian_coverage_areas (id, veterinarian_id, veterinariancoveragearea_id) FROM stdin; +\. + + +-- +-- Data for Name: mascotas_veterinarian_neighborhood; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_veterinarian_neighborhood (id, veterinarian_id, neighborhood_id) FROM stdin; +2953 80 1 +2954 80 3 +2955 80 4 +2956 80 9 +2960 80 14 +2962 80 16 +2963 80 17 +2964 80 18 +2965 80 20 +2966 80 21 +2967 80 23 +2968 80 24 +2969 80 25 +2970 80 26 +2972 80 29 +2974 80 31 +2975 80 34 +2979 80 38 +2980 80 41 +2981 80 43 +2982 80 45 +2984 80 51 +2986 80 61 +2988 80 63 +2989 80 65 +2990 80 66 +3061 84 1 +3062 84 3 +3063 84 4 +3064 84 5 +3065 84 9 +3066 84 11 +3067 84 12 +3068 84 13 +3069 84 14 +3070 84 15 +3071 84 16 +3072 84 17 +3073 84 18 +3074 84 19 +3075 84 20 +3076 84 21 +3077 84 23 +3078 84 24 +3079 84 25 +3080 84 26 +3081 84 28 +3082 84 29 +3083 84 30 +3084 84 31 +3085 84 32 +3086 84 33 +3087 84 34 +3088 84 35 +3089 84 36 +3090 84 37 +3091 84 38 +3092 84 40 +3093 84 41 +3094 84 43 +3095 84 44 +3096 84 45 +3097 84 49 +3098 84 51 +3099 84 52 +3100 84 61 +3101 84 62 +3102 84 63 +3103 84 66 +3117 79 29 +3129 87 79 +3153 89 1 +3154 89 3 +3155 89 35 +3156 89 38 +3157 89 43 +3158 89 45 +3159 89 29 +3160 89 21 +3161 89 25 +3162 89 26 +3163 89 61 +3164 89 31 +3218 91 61 +3222 91 27 +3224 92 1 +3225 92 3 +3226 92 38 +3227 92 45 +3229 92 25 +3230 92 29 +3231 92 31 +3238 94 72 +3239 94 70 +3240 94 71 +3243 76 1 +3244 76 3 +3247 96 88 +3248 96 89 +3249 96 87 +3251 96 92 +3256 97 1 +3257 97 11 +3258 97 12 +3259 97 49 +3260 97 86 +3261 97 26 +3263 98 1 +3264 98 3 +3265 98 4 +3266 98 16 +3267 98 52 +3268 98 21 +3269 98 25 +3270 98 31 +3275 70 74 +3285 101 1 +3287 101 3 +3288 101 38 +3289 101 9 +3291 101 14 +3292 101 18 +3293 101 23 +3294 101 26 +3308 104 32 +3309 104 70 +3310 104 71 +3311 104 72 +3312 104 73 +3313 104 40 +3314 104 85 +3340 67 65 +3341 67 66 +3342 67 4 +3343 67 36 +3344 67 41 +3345 67 43 +2991 81 1 +2992 81 34 +2993 81 3 +2994 81 35 +2995 81 38 +2996 81 43 +2997 81 45 +2998 81 29 +2999 81 51 +3000 81 24 +3001 81 25 +3002 81 26 +3003 81 61 +3004 81 31 +3104 85 4 +3106 85 41 +3107 85 14 +3108 85 16 +3109 85 17 +3110 85 18 +3111 85 52 +3112 85 21 +3113 85 23 +3114 85 28 +3118 87 74 +3119 87 59 +3120 87 39 +3165 90 1 +3166 90 3 +3167 90 4 +3168 90 5 +3169 90 9 +3170 90 11 +3171 90 12 +3172 90 13 +3173 90 14 +3174 90 15 +3175 90 16 +3176 90 18 +3177 90 21 +3178 90 23 +3179 90 24 +3180 90 25 +3181 90 26 +3182 90 28 +3183 90 29 +3184 90 30 +3185 90 31 +3186 90 35 +3187 90 36 +3188 90 37 +3189 90 38 +3190 90 41 +3191 90 43 +3192 90 44 +3193 90 45 +3194 90 49 +3195 90 51 +3196 90 52 +3198 90 61 +3199 90 62 +3200 90 63 +3201 90 66 +3219 91 81 +3220 91 82 +3221 91 83 +3232 92 68 +3233 92 69 +3234 92 6 +3235 92 39 +3236 92 77 +3237 92 59 +3241 94 84 +3242 94 85 +3245 96 50 +3246 96 46 +3250 96 90 +3252 96 56 +3254 71 13 +3255 71 23 +3262 97 15 +3272 21 48 +3276 92 74 +3279 99 68 +3280 99 6 +3281 99 74 +3282 99 77 +3283 99 22 +3284 9 86 +3297 103 68 +3298 103 6 +3299 103 39 +3300 103 74 +3301 103 75 +3302 103 77 +3303 103 82 +3304 103 22 +3306 103 59 +3315 106 1 +3316 106 3 +3317 106 4 +3318 106 9 +3319 106 14 +3320 106 16 +3321 106 17 +3322 106 18 +3323 106 21 +3324 106 23 +3325 106 24 +3326 106 25 +3327 106 26 +3328 106 28 +3329 106 29 +3330 106 31 +3331 106 35 +3332 106 38 +3333 106 41 +3334 106 43 +3335 106 45 +3336 106 52 +3337 106 62 +3338 106 65 +3339 106 66 +3346 67 14 +3347 67 16 +3348 67 17 +3349 67 52 +3350 67 21 +3351 67 26 +3352 67 28 +3353 67 62 +3354 67 63 +3355 105 1 +3356 105 3 +3357 105 4 +3358 105 5 +3359 105 9 +3360 105 11 +3361 105 12 +3362 105 13 +3363 105 14 +3364 105 15 +3365 105 16 +3366 105 17 +3367 105 18 +3368 105 19 +3369 105 20 +3370 105 21 +3005 82 1 +3006 82 3 +3007 82 4 +3008 82 5 +3009 82 9 +3010 82 11 +3011 82 12 +3012 82 13 +3013 82 14 +3014 82 15 +3015 82 16 +3016 82 17 +3017 82 18 +3018 82 19 +3019 82 20 +3020 82 21 +3021 82 23 +3022 82 24 +3023 82 25 +3024 82 26 +3025 82 28 +3026 82 29 +3027 82 30 +3028 82 31 +3029 82 32 +3030 82 33 +3031 82 34 +3032 82 35 +3033 82 36 +3034 82 37 +3035 82 38 +3036 82 40 +3037 82 41 +3038 82 43 +3039 82 44 +3040 82 45 +3041 82 48 +3042 82 49 +3043 82 51 +3044 82 52 +3045 82 60 +3046 82 61 +3047 82 62 +3048 82 63 +3049 82 64 +3050 82 65 +3051 82 66 +3052 82 67 +3115 85 5 +3121 87 77 +3122 87 53 +3123 87 54 +3124 87 55 +3131 88 1 +3132 88 3 +2584 1 4 +2585 1 5 +2586 1 11 +2587 1 14 +2588 1 16 +2589 1 17 +2591 1 19 +2592 1 20 +2593 1 21 +2594 1 23 +2595 1 24 +2596 1 28 +2597 1 34 +2598 1 35 +2599 1 36 +2600 1 41 +2601 1 43 +2602 1 52 +2603 1 62 +2604 1 63 +2605 1 65 +2606 1 66 +2607 2 1 +2608 2 3 +2609 2 4 +2610 2 5 +2611 2 9 +2612 2 11 +2613 2 12 +2614 2 13 +2615 2 14 +2616 2 15 +2617 2 16 +2618 2 17 +2619 2 18 +2620 2 19 +2621 2 20 +2622 2 21 +2623 2 23 +2624 2 24 +2625 2 25 +2626 2 26 +2627 2 28 +2628 2 29 +2629 2 30 +2630 2 31 +2631 2 32 +2632 2 34 +2633 2 35 +2634 2 36 +2635 2 37 +2636 2 38 +2637 2 40 +2638 2 41 +2639 2 43 +2640 2 44 +2641 2 45 +2642 2 49 +2643 2 51 +2644 2 52 +2645 2 61 +2646 2 62 +2647 2 63 +2648 2 66 +2649 3 1 +2650 3 3 +2651 3 4 +2652 3 5 +2653 3 9 +2654 3 11 +2655 3 14 +2656 3 16 +2657 3 17 +2658 3 19 +2659 3 20 +2660 3 21 +2661 3 23 +2662 3 24 +2663 3 25 +2664 3 26 +2665 3 28 +2666 3 29 +2667 3 30 +2668 3 31 +2669 3 32 +2670 3 34 +2671 3 35 +2672 3 36 +2673 3 38 +2674 3 41 +2675 3 43 +2676 3 45 +2677 3 51 +2678 3 52 +2679 3 61 +2680 3 62 +2681 3 63 +2682 3 66 +2683 5 1 +2686 5 14 +2687 5 17 +2688 5 21 +2689 5 23 +2691 5 26 +2692 5 28 +2693 6 32 +2694 6 1 +2695 6 3 +2696 6 9 +2697 6 15 +2698 6 18 +2699 6 25 +2700 6 31 +2701 7 65 +2702 7 4 +2703 7 14 +2704 7 16 +2705 7 52 +2706 7 26 +2707 8 1 +2708 8 3 +2709 8 68 +2710 8 69 +2711 8 38 +2712 8 6 +2713 8 39 +2714 8 27 +2715 8 45 +2716 8 25 +2717 8 59 +2718 8 31 +2719 9 1 +2720 9 3 +2721 9 9 +2722 9 15 +2724 9 25 +2726 11 1 +2727 11 3 +2728 11 35 +2729 11 37 +2730 11 38 +2731 11 9 +2732 11 43 +2733 11 45 +2734 11 14 +2735 11 15 +2736 11 29 +2737 11 21 +2738 11 23 +2739 11 25 +2740 11 61 +2741 11 31 +2742 14 4 +2743 14 5 +2744 14 11 +2745 14 14 +2746 14 16 +2747 14 17 +2748 14 19 +2749 14 20 +2750 14 21 +2751 14 23 +2752 14 24 +2753 14 28 +2754 14 34 +2755 14 35 +2756 14 36 +2757 14 41 +2758 14 43 +2759 14 52 +2760 14 62 +2761 14 63 +2762 14 65 +2763 14 66 +2767 21 70 +2772 66 1 +2773 66 3 +2774 66 35 +2775 66 38 +2776 66 43 +2777 66 45 +2778 66 14 +2779 66 25 +2780 66 26 +2781 66 31 +2782 68 1 +2784 68 3 +2785 68 38 +2786 68 6 +2787 68 39 +2788 68 45 +2791 68 25 +2792 68 26 +2793 68 59 +2794 68 29 +2795 68 31 +2796 70 1 +2797 70 3 +2798 70 6 +2799 70 9 +2800 70 14 +2801 70 18 +2802 70 21 +2804 70 23 +2805 70 24 +2806 70 25 +2807 70 26 +2808 70 29 +2809 70 31 +2810 70 35 +2811 70 37 +2812 70 38 +2813 70 39 +2814 70 41 +2815 70 43 +2816 70 45 +2817 70 59 +2818 70 61 +2819 70 63 +2820 70 68 +2821 70 69 +2822 71 1 +2823 71 37 +2824 71 9 +2825 72 1 +2826 72 3 +2827 72 4 +2828 72 9 +2829 72 14 +2830 72 16 +2831 72 18 +2832 72 20 +2833 72 21 +2834 72 23 +2835 72 24 +2836 72 25 +2837 72 26 +2838 72 28 +2839 72 29 +2840 72 30 +2841 72 31 +2842 72 32 +2843 72 35 +2844 72 37 +2845 72 38 +2846 72 41 +2847 72 44 +2848 72 45 +2849 72 49 +2850 72 61 +2851 72 63 +2852 73 4 +2853 73 5 +2854 73 9 +2855 73 12 +2856 73 13 +2857 73 14 +2858 73 16 +2859 73 17 +2860 73 18 +2861 73 20 +2862 73 21 +2863 73 23 +2864 73 24 +2865 73 25 +2866 73 26 +2867 73 28 +2868 73 29 +2869 73 30 +2870 73 31 +2871 73 32 +2872 73 34 +2873 73 35 +2874 73 36 +2875 73 37 +2876 73 38 +2877 73 40 +2878 73 43 +2879 73 44 +2880 73 45 +2881 73 49 +2882 73 51 +2883 73 52 +2884 73 61 +2885 73 62 +2886 73 63 +2887 73 66 +2888 74 4 +2889 74 16 +2890 74 17 +2891 74 50 +2892 74 52 +2893 74 21 +2894 74 54 +2895 74 55 +2896 74 56 +2897 74 57 +2898 75 1 +2899 75 3 +2900 75 4 +2901 75 9 +2902 75 12 +2903 75 13 +2904 75 14 +2905 75 15 +2906 75 16 +2907 75 17 +2908 75 18 +2909 75 19 +2910 75 21 +2911 75 23 +2912 75 24 +2913 75 25 +2914 75 26 +2915 75 28 +2916 75 29 +2917 75 30 +2918 75 31 +2919 75 34 +2920 75 35 +2921 75 37 +2922 75 38 +2924 75 41 +2925 75 43 +2926 75 44 +2927 75 45 +2928 75 49 +2929 75 51 +2930 77 1 +2931 77 35 +2932 77 3 +2933 77 38 +2934 77 45 +2935 77 25 +2936 77 26 +2937 77 29 +2938 77 31 +2939 78 1 +2940 78 3 +2941 78 38 +2942 78 45 +2943 78 25 +2944 78 31 +2945 79 1 +2946 79 3 +2947 79 38 +2948 79 39 +2949 79 45 +2951 79 59 +2952 79 31 +3053 83 35 +3054 83 13 +3055 83 18 +3056 83 29 +3057 83 23 +3058 83 24 +3059 83 26 +3060 83 61 +3125 87 46 +3126 87 50 +3133 88 14 +3134 88 16 +3135 88 17 +3137 88 25 +3138 88 26 +3139 88 28 +3140 88 29 +3141 88 31 +3142 88 35 +3143 88 38 +3144 88 41 +3145 88 43 +3146 88 45 +3148 88 61 +3149 88 62 +3150 88 63 +3151 88 65 +3152 88 66 +3202 91 1 +3203 91 34 +3204 91 3 +3205 91 35 +3206 91 38 +3207 91 39 +3208 91 41 +3209 91 43 +3210 91 17 +3211 91 29 +3212 91 51 +3213 91 21 +3214 91 24 +3215 91 25 +3216 91 26 +3217 91 59 +3371 105 23 +3372 105 24 +3373 105 25 +3374 105 26 +3375 105 29 +3376 105 30 +3377 105 31 +3378 105 32 +3379 105 33 +3380 105 34 +3381 105 35 +3382 105 36 +3383 105 37 +3384 105 38 +3385 105 41 +3386 105 43 +3387 105 44 +3388 105 45 +3389 105 48 +3390 105 51 +3391 105 52 +3392 105 60 +3393 105 61 +3394 105 62 +3395 105 63 +3396 105 64 +3397 105 65 +3398 105 66 +3399 105 67 +3400 105 6 +3401 105 22 +3402 105 28 +3403 105 39 +3404 105 40 +3405 105 46 +3406 105 49 +3407 105 53 +3408 105 54 +3409 105 55 +3410 105 59 +3411 105 68 +3412 105 69 +3413 105 71 +3414 105 72 +3415 105 73 +3416 105 74 +3417 105 75 +3418 105 77 +3419 105 79 +3420 105 82 +3421 105 86 +3422 105 89 +3423 107 147 +3424 107 148 +3425 107 149 +3426 107 150 +3427 107 151 +3428 109 147 +3429 109 148 +3430 109 149 +3431 109 150 +3432 109 151 +3433 110 147 +3434 110 148 +3435 110 149 +3436 110 150 +3437 108 147 +3438 108 148 +3439 108 149 +3440 108 150 +3441 111 4 +3442 111 36 +3443 111 14 +3444 111 16 +3445 111 18 +3446 111 52 +3447 111 21 +3448 111 23 +3449 111 62 +3450 112 3 +3451 112 6 +3452 112 39 +3453 112 74 +3454 112 45 +3455 112 77 +3456 112 21 +3457 112 22 +3458 112 25 +3459 112 29 +3460 112 31 +3461 112 82 +3462 112 59 +3465 70 112 +3466 70 113 +3467 82 112 +3468 82 113 +3469 75 112 +3470 75 113 +3471 103 113 +3472 90 112 +3495 84 112 +3496 84 113 +3497 68 82 +3499 68 79 +3500 113 27 +3501 113 82 +3502 113 59 +3504 113 39 +3505 113 77 +3506 113 79 +3507 113 83 +3508 113 156 +3509 114 1 +3510 114 35 +3511 114 3 +3512 114 45 +3513 114 25 +3514 114 26 +3515 114 29 +3516 114 31 +3517 2 64 +3518 2 33 +3519 2 65 +3520 2 67 +3521 2 48 +3522 2 86 +3523 2 60 +3524 82 82 +3525 82 86 +3526 90 33 +3527 90 34 +3528 90 65 +3529 90 40 +3530 90 17 +3531 90 19 +3532 90 20 +3533 90 86 +3534 90 60 +3535 105 70 +3536 105 112 +3537 105 113 +3538 105 147 +3539 105 83 +3540 105 154 +3541 105 155 +3542 105 156 +3544 1 44 +3545 70 30 +3546 70 4 +3547 70 5 +3548 70 11 +3549 70 12 +3550 70 13 +3551 70 15 +3552 70 16 +3553 70 17 +3554 70 19 +3555 70 20 +3556 70 28 +3557 70 32 +3559 70 34 +3560 70 36 +3561 70 40 +3562 70 44 +3563 70 49 +3564 70 51 +3565 70 52 +3566 70 60 +3567 70 62 +3568 70 66 +3569 70 67 +3570 70 86 +3573 92 9 +3600 92 61 +3608 100 13 +3610 100 1 +3611 100 3 +3612 100 4 +3613 100 5 +3614 100 6 +3615 100 9 +3616 100 11 +3617 100 12 +3618 100 142 +3619 100 14 +3620 100 16 +3621 100 15 +3622 100 18 +3623 100 19 +3624 100 20 +3625 100 21 +3626 100 22 +3627 100 23 +3628 100 24 +3629 100 25 +3630 100 26 +3631 100 155 +3632 100 28 +3633 100 29 +3634 100 30 +3635 100 31 +3636 100 32 +3637 100 33 +3638 100 34 +3639 100 35 +3640 100 36 +3641 100 37 +3642 100 38 +3643 100 39 +3644 100 40 +3645 100 41 +3646 100 43 +3647 100 44 +3648 100 45 +3649 100 46 +3650 100 49 +3651 100 51 +3652 100 52 +3653 100 59 +3654 100 60 +3655 100 61 +3656 100 62 +3657 100 63 +3658 100 64 +3659 100 65 +3660 100 66 +3661 100 67 +3662 100 68 +3663 100 69 +3664 100 70 +3665 100 72 +3666 100 73 +3667 100 74 +3668 100 75 +3669 100 77 +3670 100 79 +3671 100 82 +3672 100 83 +3673 100 84 +3674 100 86 +3675 100 17 +3676 100 89 +3677 100 112 +3678 100 113 +3679 113 68 +3680 113 69 +3681 113 75 +3682 113 155 +3683 113 3 +3685 1 26 +3686 115 23 +3687 115 1 +3688 115 3 +3689 115 4 +3690 115 5 +3691 115 6 +3692 115 7 +3693 115 8 +3694 115 9 +3695 115 11 +3696 115 12 +3697 115 13 +3698 115 14 +3699 115 15 +3700 115 16 +3701 115 17 +3702 115 18 +3703 115 19 +3704 115 20 +3705 115 21 +3706 115 22 +3707 115 24 +3708 115 25 +3709 115 26 +3710 115 27 +3711 115 28 +3712 115 29 +3713 115 30 +3714 115 31 +3715 115 32 +3716 115 33 +3717 115 34 +3718 115 35 +3719 115 36 +3720 115 37 +3721 115 38 +3722 115 39 +3723 115 40 +3724 115 41 +3725 115 42 +3726 115 43 +3727 115 44 +3728 115 45 +3729 115 46 +3730 115 47 +3731 115 48 +3732 115 49 +3733 115 50 +3734 115 51 +3735 115 52 +3736 115 53 +3737 115 54 +3738 115 55 +3739 115 56 +3740 115 57 +3741 115 58 +3742 115 59 +3743 115 60 +3744 115 61 +3745 115 62 +3746 115 63 +3747 115 64 +3748 115 65 +3749 115 66 +3750 115 67 +3751 115 68 +3752 115 69 +3753 115 70 +3754 115 71 +3755 115 72 +3756 115 73 +3757 115 74 +3758 115 75 +3759 115 77 +3760 115 78 +3761 115 79 +3762 115 80 +3763 115 82 +3764 115 83 +3765 115 84 +3766 115 85 +3767 115 86 +3768 115 87 +3769 115 88 +3770 115 89 +3771 115 90 +3772 115 91 +3773 115 92 +3774 115 99 +3775 115 111 +3776 115 112 +3777 115 113 +3778 115 142 +3779 115 146 +3780 115 147 +3781 115 148 +3782 115 149 +3783 115 150 +3784 115 151 +3785 115 153 +3786 115 154 +3787 115 155 +3788 115 156 +3789 88 23 +3791 95 79 +3792 95 1 +3793 95 3 +3794 95 4 +3795 95 5 +3796 95 6 +3797 95 7 +3798 95 8 +3799 95 9 +3800 95 10 +3801 95 11 +3802 95 12 +3803 95 13 +3805 95 15 +3806 95 16 +3807 95 17 +3808 95 18 +3809 95 19 +3810 95 20 +3811 95 21 +3812 95 22 +3813 95 23 +3814 95 24 +3815 95 25 +3816 95 26 +3817 95 27 +3818 95 28 +3819 95 29 +3820 95 30 +3821 95 31 +3822 95 32 +3823 95 33 +3824 95 34 +3825 95 35 +3826 95 36 +3827 95 37 +3828 95 38 +3829 95 39 +3830 95 40 +3831 95 41 +3832 95 42 +3833 95 43 +3834 95 44 +3835 95 45 +3836 95 46 +3837 95 47 +3838 95 48 +3839 95 49 +3840 95 50 +3841 95 51 +3842 95 52 +3843 95 53 +3844 95 54 +3845 95 55 +3846 95 56 +3847 95 57 +3848 95 58 +3849 95 59 +3850 95 60 +3851 95 61 +3852 95 62 +3853 95 63 +3854 95 64 +3855 95 65 +3856 95 66 +3857 95 67 +3858 95 68 +3859 95 69 +3860 95 70 +3861 95 71 +3862 95 72 +3863 95 73 +3864 95 74 +3865 95 75 +3866 95 77 +3867 95 78 +3868 95 80 +3869 95 82 +3870 95 83 +3871 95 84 +3872 95 85 +3873 95 86 +3874 95 87 +3875 95 88 +3876 95 89 +3877 95 90 +3878 95 91 +3879 95 92 +3880 95 99 +3881 95 111 +3882 95 112 +3883 95 113 +3884 95 142 +3885 95 146 +3886 95 147 +3887 95 148 +3888 95 149 +3889 95 150 +3890 95 151 +3891 95 153 +3892 95 154 +3893 95 155 +3894 95 156 +3895 85 49 +3896 103 155 +3897 1 12 +3901 75 65 +3902 88 34 +3903 85 6 +3904 1 49 +3906 104 14 +3907 104 49 +3908 104 60 +3909 104 30 +3910 104 13 +3911 104 15 +3912 104 18 +3913 104 12 +3914 104 33 +3915 104 23 +3916 104 11 +3917 104 20 +3918 104 43 +3919 68 155 +3920 112 9 +3923 88 20 +3924 88 21 +3925 88 51 +3926 88 24 +3927 113 31 +3928 101 37 +3929 5 38 +3930 94 142 +3931 94 21 +3932 94 4 +3933 94 14 +3934 94 43 +3935 94 61 +3936 94 62 +3937 94 51 +3938 94 29 +3939 94 3 +3940 94 34 +3941 94 9 +3942 21 60 +3944 21 30 +3947 21 15 +3949 21 12 +3951 21 33 +3952 21 40 +3953 21 44 +3954 21 11 +3955 21 73 +3956 21 71 +3958 82 70 +3959 79 21 +3960 79 9 +3961 79 24 +3962 79 51 +3963 79 34 +3965 79 61 +3966 79 35 +3967 79 43 +3971 89 17 +3973 94 49 +3974 94 11 +3975 94 20 +3976 94 52 +3977 94 19 +3978 94 16 +3979 94 28 +3980 94 30 +3982 94 24 +3983 98 14 +3984 1 38 +3985 103 69 +3986 116 25 +3987 116 3 +3988 117 72 +3989 117 70 +3990 5 18 +3991 112 26 +3992 117 42 +3993 117 85 +3994 117 71 +3995 71 30 +3996 71 18 +3997 71 3 +3998 71 38 +4002 21 4 +4004 89 9 +4005 9 30 +4006 9 18 +4007 9 21 +4008 9 31 +4009 9 29 +4010 9 43 +4011 9 59 +4015 85 113 +4016 118 1 +4017 118 3 +4018 118 22 +4019 118 24 +4020 118 153 +4021 118 25 +4022 118 155 +4023 118 156 +4024 118 27 +4025 118 29 +4026 118 31 +4027 118 35 +4028 118 38 +4029 118 39 +4030 118 45 +4031 118 46 +4032 118 51 +4033 118 59 +4034 118 61 +4035 118 68 +4036 118 69 +4037 118 74 +4038 118 75 +4039 118 79 +4040 118 82 +4041 118 83 +4042 118 112 +4043 118 113 +4044 100 71 +4045 70 33 +4047 88 4 +4048 118 26 +4050 78 23 +4051 78 61 +4052 104 9 +4053 112 30 +4054 112 37 +4055 112 15 +4056 112 23 +4057 112 28 +4058 112 62 +4059 112 17 +4060 112 51 +4061 112 38 +4062 112 1 +4063 112 43 +4064 112 35 +4065 112 61 +4066 112 34 +4067 112 24 +4072 112 88 +4073 112 80 +4076 112 79 +4077 112 4 +4080 104 4 +4081 113 6 +4082 82 46 +4085 96 91 +4086 100 50 +4087 103 156 +4088 85 13 +4089 95 14 +4091 98 113 +4093 114 13 +4094 114 18 +4095 114 23 +4096 114 14 +4097 114 38 +4099 114 34 +4103 114 43 +4104 114 39 +4105 114 59 +4109 114 9 +4110 119 25 +4111 119 3 +4112 119 21 +4113 119 1 +4114 120 4 +4115 120 14 +4116 120 16 +4117 120 18 +4118 120 52 +4119 120 21 +4120 120 23 +4121 68 153 +4122 120 19 +4123 120 65 +4124 120 17 +4125 120 43 +4126 68 160 +4127 79 25 +4128 96 161 +4129 97 60 +4130 94 60 +4131 116 1 +4132 104 1 +4133 68 162 +4134 121 1 +4135 121 3 +4136 121 4 +4137 121 38 +4138 121 9 +4139 121 11 +4140 121 12 +4141 121 14 +4142 121 18 +4143 121 23 +4144 121 26 +4145 121 29 +4146 121 30 +4147 121 49 +4148 121 13 +4150 121 43 +4152 121 34 +4154 121 61 +4155 21 20 +4156 21 52 +4157 21 19 +4158 21 17 +4159 21 21 +4160 21 42 +4161 21 59 +4162 21 39 +4163 21 91 +4164 121 20 +4166 92 12 +\. + + +-- +-- Data for Name: mascotas_veterinarian_specialization; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_veterinarian_specialization (id, veterinarian_id, specialty_id) FROM stdin; +288 1 3 +289 1 4 +290 1 70 +291 1 23 +292 2 3 +293 2 4 +294 2 23 +295 3 41 +296 3 6 +297 5 41 +299 6 3 +300 6 4 +301 6 23 +302 7 8 +303 8 4 +304 9 70 +305 11 53 +306 14 70 +307 21 70 +308 25 71 +309 66 74 +310 67 43 +311 68 70 +312 70 75 +313 70 70 +314 70 23 +315 71 70 +316 72 70 +317 73 8 +318 74 70 +319 75 4 +320 75 71 +321 76 70 +322 77 4 +323 77 70 +324 78 4 +325 78 70 +326 79 54 +327 79 4 +328 79 70 +329 80 4 +330 80 70 +332 81 43 +333 81 4 +334 81 70 +335 82 8 +337 83 74 +338 84 6 +339 68 23 +340 1 75 +341 2 70 +342 6 70 +343 85 74 +345 86 76 +346 87 70 +347 88 4 +348 88 70 +349 89 43 +350 89 4 +351 89 70 +352 90 41 +353 91 4 +354 91 70 +355 92 75 +356 92 4 +357 92 70 +358 93 4 +359 94 4 +360 94 70 +361 95 23 +362 96 70 +363 96 23 +365 97 70 +366 98 72 +367 99 70 +368 100 76 +369 101 70 +370 102 70 +372 104 74 +373 105 34 +374 106 74 +375 107 70 +376 108 70 +377 109 70 +378 110 70 +379 111 74 +380 112 74 +381 21 54 +382 113 4 +383 113 70 +384 114 70 +385 100 70 +386 115 80 +387 95 81 +388 103 82 +389 67 78 +390 116 74 +392 117 82 +393 118 83 +394 119 41 +395 119 70 +396 120 8 +397 121 70 +\. + + +-- +-- Data for Name: mascotas_veterinariancoveragearea; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_veterinariancoveragearea (id, created_at, updated_at, deleted, active, name, polygon, user_id, polygon_type, province_id, locality_id) FROM stdin; +\. + + +-- +-- Data for Name: mascotas_vetvisit; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_vetvisit (id, created_at, updated_at, deleted, active, date, hour, visit_state, visit_type, reason, observations, price, deposit, vet_fee, visit_datetime, pay_transaction, owner_id, pet_id, user_id, veterinarian_id, google_calendar_event_id, afip_receipt_id, service_request_id) FROM stdin; +475 2025-01-24 15:14:56.877841+00 2025-01-24 15:14:56.877848+00 f t 2025-01-24 13:00:00 COMPLETED clinical Chequeo general labrador adulto 41600.00 43000.00 33000.00 2025-01-24 16:00:00+00 \N 177 194 111 1 \N \N \N +479 2025-01-24 21:18:34.952834+00 2025-01-24 21:18:34.952841+00 f t 2025-01-25 10:30:00 COMPLETED vaccination consulta clinica + Vacunación anual perro adulto 60750.00 15750.00 45000.00 2025-01-25 13:30:00+00 100305064936 363 428 111 2 \N \N \N +473 2025-01-23 15:10:32.229514+00 2025-01-23 15:10:32.22952+00 f t 2025-01-27 10:30:00 COMPLETED vaccination control y vacunacion anual 60750.00 15750.00 45000.00 2025-01-27 13:30:00+00 100160730570 360 425 111 2 \N \N \N +494 2025-01-27 20:06:25.461131+00 2025-01-27 20:06:25.46114+00 f t 2025-01-27 18:30:00 COMPLETED clinical Estreñimiento 35000.00 7000.00 28000.00 2025-01-27 21:30:00+00 7L8GYKNXWRYDDJPP2MPRZ5 373 438 114 77 qpmtumm9gltedfain0iauu1es0 \N \N +545 2025-02-01 21:49:04.728588+00 2025-02-01 21:49:04.728595+00 f t 2025-02-01 19:00:00 NO_REPORT telemedicina Consulta de seguimiento 24000.00 24000.00 0.00 2025-02-01 22:00:00+00 100669510851 395 469 114 70 osk0uiv65qedknuf6u9mnp3jpo \N \N +500 2025-01-28 14:25:19.908732+00 2025-01-28 14:25:19.908741+00 f t 2025-01-24 18:30:00 COMPLETED vaccination Vacunacion anual 2 gatos adultos 109350.00 23850.00 85500.00 2025-01-24 21:30:00+00 99589106817 350 411 114 70 \N \N \N +482 2025-01-25 20:55:01.929469+00 2025-01-25 20:55:01.929481+00 t t 2025-01-27 17:30:00 PENDING clinical Rayos x 2 75000.00 15000.00 60000.00 2025-01-27 20:30:00+00 L18MKX9R71M8KMLO9O6WYV 365 430 114 3 \N \N \N +474 2025-01-23 17:41:35.173347+00 2025-01-23 17:41:35.173353+00 f t 2025-01-24 14:00:00 COMPLETED clinical control clinico + chequeo de parasitos externos (garrapatas) 35000.00 35000.00 28000.00 2025-01-24 17:00:00+00 99816354639 361 426 111 70 \N \N \N +527 2025-01-30 23:20:47.998453+00 2025-01-30 23:20:47.99846+00 f t 2025-01-31 10:00:00 NO_REPORT clinical Posible eutanasia por decaimiento del paciente Palladino cobrara el valor de la eutanasia en el domicilio 35000.00 7000.00 28000.00 2025-01-31 13:00:00+00 100849501372 380 450 113 70 8obld0a7i7drthgq0re1neqrr8 \N \N +453 2025-01-21 19:07:19.113369+00 2025-01-21 19:07:19.113379+00 f t 2025-01-08 17:00:00 NO_REPORT clinical Clínica en el día Vómito frecuente, al menos 1 vez al día. Decaimiento.\r\nTutor refiere que el animal come y tiene apetito 41600.00 8600.00 33000.00 2025-01-08 20:00:00+00 \N 307 364 118 2 \N \N \N +1635 2025-07-02 16:52:27.677233+00 2025-07-02 16:52:27.677242+00 f t 2025-07-03 10:00:00 COMPLETED clinical Motomensajeria: 12.000\r\nCopro+Orina+ Sangre: 188.100 Revisar el laboratorio: \r\nHabiamos calculado.\r\nPerfil general con orina + aparte Trigliceridos + Vit D\r\nOrina + proteina/creatinina + Microalbuminuria\r\nCopro seriando(Giardia Lamblia)+ Copro con tecnica Baerman 200100.00 200100.00 0.00 2025-07-03 13:00:00+00 0 3745 3176 113 86 c413cs6ikp383ks3dtebgqg4rg 726 \N +2849 2025-10-11 18:36:00.77192+00 2025-10-11 18:36:00.771932+00 f t 2025-10-11 19:00:00 CANCELLED clinical derivacion por vete maria luisa, continua con vomitos. Come y vomita 0.00 0.00 0.00 2025-10-11 22:00:00+00 0 73 75 118 118 m0k4q523ljq7ikqruvonsh9log \N 964 +579 2025-02-03 23:55:28.358938+00 2025-02-03 23:55:28.358945+00 f t 2025-02-06 17:00:00 CANCELLED clinical Control, posible administracion de suero S/C Se reprogramos el turno 35000.00 7000.00 28000.00 2025-02-06 20:00:00+00 100839082577 370 435 114 77 n9dg2sbiv9gm9rbbgvmvus6p34 \N \N +495 2025-01-27 20:34:40.91333+00 2025-01-27 20:34:40.913337+00 f t 2025-01-28 14:00:00 COMPLETED vaccination Vacunación anual 109350.00 23850.00 85500.00 2025-01-28 17:00:00+00 100175907961 374 440 114 74 \N \N \N +33 2024-06-27 09:00:00+00 2024-06-27 09:00:00+00 f t 2024-06-27 09:00:00 NO_REPORT Vacunación (Rabia + Sext/Triple) Gato decaído, no come 46000.00 0.00 30000.00 2024-06-27 12:00:00+00 32 32 114 14 lai4gg68c2i8173vhtf3s9l4mg \N \N +603 2025-02-07 18:39:20.827694+00 2025-02-07 18:39:20.827702+00 f t 2025-02-10 11:30:00 COMPLETED clinical Consulta oftalmolofica 65000.00 10000.00 55000.00 2025-02-10 14:30:00+00 101612176154 425 505 111 11 \N \N \N +519 2025-01-30 14:55:05.229598+00 2025-01-30 14:55:05.229608+00 t t 2025-01-31 15:00:00 PENDING clinical ecografia abdominal 65000.00 15000.00 50000.00 2025-01-31 18:00:00+00 \N 373 438 111 3 \N \N \N +540 2025-01-31 19:23:36.790734+00 2025-01-31 19:23:36.79074+00 t t 2025-02-07 08:00:00 PENDING clinical PRUEBA 0.00 0.00 0.00 2025-02-07 11:00:00+00 0 346 246 110 76 lle6jh80gmo5h1lg5urcuonpu0 \N \N +492 2025-01-27 16:55:24.584586+00 2025-01-27 16:55:24.584595+00 f t 2025-01-19 15:30:00 NO_REPORT clinical Dificultad para orinar 41600.00 8600.00 33000.00 2025-01-19 18:30:00+00 99789108246 339 402 114 68 \N \N \N +502 2025-01-28 20:44:10.471774+00 2025-01-28 20:44:10.471783+00 f t 2025-01-29 11:00:00 COMPLETED clinical Revisión y chequeo de seguimiento 35000.00 7000.00 28000.00 2025-01-29 14:00:00+00 100274129593 364 429 114 68 \N \N \N +476 2025-01-24 17:43:15.074642+00 2025-01-24 17:43:15.074649+00 f t 2025-01-24 16:30:00 COMPLETED clinical Chequeo general 41600.00 8600.00 33000.00 2025-01-24 19:30:00+00 99913089871 143 150 111 2 \N \N \N +1820 2025-07-19 15:25:33.567086+00 2025-07-19 15:25:33.567094+00 f t 2025-07-29 18:00:00 COMPLETED clinical eco abdominal 122176909 Abonarle a Dani sus honorarios 62000.00 12000.00 50000.00 2025-07-29 21:00:00+00 7700151530 4848 4007 1208 90 didnho8mfmimu1cbt19hkaep90 501 \N +1893 2025-07-26 20:01:33.806255+00 2025-07-26 20:01:33.806263+00 f t 2025-07-27 11:00:00 COMPLETED clinical Viene muy mal estomacalmente, vomita bilis, hace caca sangre 50000.00 10000.00 40000.00 2025-07-27 14:00:00+00 119988107456 5292 4350 1208 92 cndmgm5vr1f1uf6gfbdchssqmg 524 \N +1144 2025-05-11 19:27:58.160403+00 2025-05-11 19:27:58.160411+00 f t 2025-05-11 19:00:00 NO_REPORT clinical Dificulta en la marcha, aclara el dueño que se esta orinando encima 46000.00 9500.00 36500.00 2025-05-11 22:00:00+00 \N 918 1023 113 70 a4ril414aprija3laqfi2gu308 \N \N +553 2025-02-02 17:50:40.550148+00 2025-02-02 17:50:40.550156+00 f t 2025-02-02 15:00:00 COMPLETED telemedicina Consulta de seguimiento 24000.00 24000.00 15000.00 2025-02-02 18:00:00+00 RD06ZO9W11V86EK725GP7X 400 474 114 70 q7i6c86h8l2a59clkrrvnop240 \N \N +419 2025-01-15 12:56:07.38+00 2025-01-15 12:56:07.38+00 f t 2025-01-20 20:00:00 COMPLETED vaccination Vacunación anual $2000 pendientes a abonar al veterinario por parte de Amar 60750.00 17750.00 43000.00 2025-01-20 23:00:00+00 99348552192 318 380 111 1 \N \N \N +496 2025-01-27 23:22:36.014623+00 2025-01-27 23:22:36.01463+00 f t 2025-01-28 12:30:00 COMPLETED vaccination Vacunacion anual perro 60750.00 15750.00 45000.00 2025-01-28 15:30:00+00 \N 375 441 110 80 \N \N \N +544 2025-01-31 23:20:06.346391+00 2025-01-31 23:20:06.3464+00 f t 2025-02-01 09:00:00 CANCELLED clinical 2 rx 75000.00 15000.00 60000.00 2025-02-01 12:00:00+00 36121049117 391 465 114 3 niq1iiqlf61hdtu8s8ojr9gd2o \N \N +491 2025-01-27 14:19:36.196534+00 2025-01-27 14:19:36.196543+00 f t 2025-01-27 15:00:00 COMPLETED telemedicina Teleconsulta 24000.00 24000.00 15000.00 2025-01-27 18:00:00+00 46YGOW9M8JR5JEYM9EXD8J 372 437 114 77 45lljmlne3is9ljqu0h4fb9vm8 \N \N +467 2025-01-22 23:49:07.991804+00 2025-01-22 23:49:07.991811+00 f t 2025-01-25 10:00:00 COMPLETED vaccination Vacunacion para la tres mascotas 164025.00 35775.00 128250.00 2025-01-25 13:00:00+00 99751323353 356 419 113 70 km54it14llkopa7e4e601ojelg \N \N +511 2025-01-29 14:59:53.868382+00 2025-01-29 14:59:53.868393+00 f t 2025-01-30 15:30:00 NO_REPORT vaccination Vacunación anual gatos adultos x 2 109350.00 23850.00 85500.00 2025-01-30 18:30:00+00 100711269770 381 451 111 68 pjkqi79kc69qlim6a62e5liicg \N \N +2132 2025-08-17 20:49:07.904779+00 2025-08-17 20:49:07.90479+00 f t 2025-08-17 20:30:00 COMPLETED clinical Vomitos continuos 50000.00 10000.00 40000.00 2025-08-17 23:30:00+00 1221617375 745 869 114 91 bf0t9u7a2fkgimc51rjbl9ruog 332 \N +647 2025-02-13 22:20:32.993409+00 2025-02-13 22:20:32.993415+00 f t 2025-02-13 19:00:00 NO_REPORT clinical Decaimiento 41600.00 8600.00 33000.00 2025-02-13 22:00:00+00 36281424662 446 529 113 88 qn9komb6k2mvilscslbti8ge14 \N \N +113 2024-10-30 14:13:09.283+00 2024-10-30 14:13:09.283+00 f t 2024-09-10 07:30:00 COMPLETED Clinica Gata en cuidados paliativos, hace dos dias no come ni toma agua y no se mueve, estuvo internada hace 2 semanas, está con antibioticos, tampoco hace sus necesidades. Tutor solicita eutanasia, se le indica que es previa revisión. Transaccion 87408303428 35000.00 15000.00 20000.00 2024-09-10 10:30:00+00 104 108 \N 1 \N \N \N +520 2025-01-30 14:56:53.339787+00 2025-01-30 14:56:53.339797+00 t t 2025-01-31 15:00:00 PENDING clinical ecografia abdominal 65000.00 15000.00 50000.00 2025-01-31 18:00:00+00 100722017096 373 438 111 3 \N \N \N +554 2025-02-02 17:50:44.003334+00 2025-02-02 17:50:44.003344+00 t t 2025-02-02 15:00:00 NO_REPORT telemedicina Consulta de seguimiento 24000.00 24000.00 0.00 2025-02-02 18:00:00+00 RD06ZO9W11V86EK725GP7X 400 474 114 70 03v8emvn5silnf99m5md1h67a4 \N \N +468 2025-01-22 23:50:15.417879+00 2025-01-22 23:50:15.417885+00 f t 2025-01-25 10:00:00 COMPLETED vaccination Vacunacion 0.00 0.00 0.00 2025-01-25 13:00:00+00 99751323353 356 420 113 70 30lqiaovu6lv8sgcsufkks1j3s \N \N +292 2024-12-02 22:28:42.602+00 2024-12-02 22:28:42.602+00 f t 2024-12-11 18:00:00 COMPLETED clinical ECG+ECO Transacción 95091222500\r\nNota 18dic: El precio original del estudio era de 67200, lo cambiamos ya que no se pudo concretar el estudio por inconvenientes en el domicilio entre el tutor y la veterinaria 11200.00 11200.00 56000.00 2024-12-11 21:00:00+00 214 234 110 7 \N \N \N +537 2025-01-31 17:04:01.095034+00 2025-01-31 17:04:01.095043+00 f t 2025-02-03 13:30:00 CANCELLED clinical chequeo de resultados 35000.00 7000.00 28000.00 2025-02-03 16:30:00+00 100900429816 384 455 111 78 m8j1kgj6pt4s1hhtvi4jc4ptck \N \N +541 2025-01-31 21:13:56.403908+00 2025-01-31 21:13:56.403914+00 f t 2025-02-01 10:00:00 COMPLETED vaccination Vacunacion + revision 60750.00 15750.00 45000.00 2025-02-01 13:00:00+00 100556140321 393 467 113 70 9rk0sutohj26hgpje5pdsqt89s \N \N +582 2025-02-04 15:48:19.979387+00 2025-02-04 15:48:19.979395+00 f t 2025-02-04 16:00:00 COMPLETED telemedicina Presenta Estreñimiento, defeca poco y hace 1 semana vomitos 24000.00 24000.00 0.00 2025-02-04 19:00:00+00 1815ac42-8391-477b-8bf5-8438ec 415 494 114 1 m2qoue9223oi8lc9a6apm7n0bg \N \N +2919 2025-10-17 13:33:57.887864+00 2025-10-17 13:33:57.887874+00 f t 2025-10-17 16:30:00 COMPLETED clinical Revision por vomitos repetitivos \N 46000.00 11000.00 35000.00 2025-10-17 19:30:00+00 129660019413 10911 9054 \N 80 3mbdef247rnvju916p7frp1lgc \N 1057 +636 2025-02-11 23:57:39.130625+00 2025-02-11 23:57:39.13063+00 f t 2025-02-12 14:30:00 COMPLETED telemedicina Resolución de laboratorio- tratamiento a seguir cliente tiene a favor $25.750 porque no se pudo vacunar a sus mascotas= Por lo tanto le quedaria pendiente:$1750 a favor 24000.00 0.00 15000.00 2025-02-12 17:30:00+00 0 390 464 111 80 6s01mjolf1f617ogduj96qeio4 \N \N +497 2025-01-28 01:46:48.537288+00 2025-01-28 01:46:48.537297+00 f t 2025-01-28 16:30:00 COMPLETED clinical Extracción de sangre + curaciones en el perine 42000.00 9000.00 33000.00 2025-01-28 19:30:00+00 \N 373 438 110 77 3nq3u3nd466t0bkiq54jesbr0s \N \N +449 2025-01-21 12:08:29.214227+00 2025-01-21 12:08:29.214233+00 f t 2025-01-21 11:00:00 COMPLETED clinical Px adulto con problemas de cadera . 35000.00 7000.00 28000.00 2025-01-21 14:00:00+00 99555544471 348 409 114 2 \N \N \N +604 2025-02-07 20:48:33.243066+00 2025-02-07 20:48:33.243075+00 f t 2025-02-07 18:30:00 NO_REPORT telemedicina Sufrió la pérdida de su dueña porq falleció\r\nEstá desorientado. Se pone agresivo con personas que no conoce. Busca soledad. No ve bien y no se deja agarrar 24000.00 24000.00 15000.00 2025-02-07 21:30:00+00 101634572570 426 506 111 70 tkh4cqitime9ma9vfb6sdmkjtg \N \N +2778 2025-10-05 20:04:40.260468+00 2025-10-05 20:04:40.260476+00 f t 2025-10-06 17:00:00 NO_REPORT clinical Consulta cardiologica \N 107000.00 12000.00 95000.00 2025-10-06 20:00:00+00 128748914546 10067 8331 \N 82 lv4i5b2svjsnbltcdj3o3mcnlo \N 862 +528 2025-01-30 23:20:49.046428+00 2025-01-30 23:20:49.046435+00 t t 2025-01-31 10:00:00 PENDING clinical Posible eutanasia por decaimiento del paciente Palladino cobrara el valor de la eutanasia en el domicilio 35000.00 7000.00 28000.00 2025-01-31 13:00:00+00 100849501372 380 450 113 70 \N \N \N +876 2025-03-23 22:41:16.126051+00 2025-03-23 22:41:16.126061+00 f t 2025-03-22 19:00:00 COMPLETED clinical urgencia, presenta rengueo e hinchazón 46000.00 9500.00 36500.00 2025-03-22 22:00:00+00 105626514686 599 701 114 80 5coe3g8c9ho6rdu9h3n4fmo7d8 \N \N +758 2025-03-03 21:08:15.683704+00 2025-03-03 21:08:15.683713+00 f t 2025-03-03 15:00:00 NO_REPORT clinical Adm de calmante 20000.00 5000.00 15000.00 2025-03-03 18:00:00+00 103592939033 530 625 114 85 a3lakpdctiaqcab360t83j6he8 \N \N +546 2025-02-01 21:49:08.072497+00 2025-02-01 21:49:08.072505+00 t t 2025-02-01 19:00:00 NO_REPORT telemedicina Consulta de seguimiento 24000.00 24000.00 0.00 2025-02-01 22:00:00+00 100669510851 395 469 114 70 l3f0r5duqrgu7mbnqpbgu117pk \N \N +481 2025-01-25 14:40:27.934473+00 2025-01-25 14:40:27.934479+00 f t 2025-01-25 14:30:00 COMPLETED clinical Eutanasia 56250.00 11250.00 45000.00 2025-01-25 17:30:00+00 46YGOW9M8JV5YOZM9EXD8J 345 407 114 70 l1057efqc7kc23940srmrnarus \N \N +2526 2025-09-17 12:57:06.038005+00 2025-09-17 12:57:06.038011+00 f t 2025-09-17 10:30:00 COMPLETED clinical retiro de muestra de orina 13200.00 13200.00 0.00 2025-09-17 13:30:00+00 38889489036 266 335 1208 100 m50i0h2ptsagebuhq4egi9spp8 24 \N +538 2025-01-31 17:35:12.414854+00 2025-01-31 17:35:12.414864+00 f t 2025-01-31 18:00:00 COMPLETED vaccination Vacunacion anual 60750.00 15750.00 45000.00 2025-01-31 21:00:00+00 100925675054 392 466 111 70 8j60ibel6rcs3sej6uat8f043o \N \N +501 2025-01-28 18:40:56.23404+00 2025-01-28 18:40:56.234049+00 f t 2025-01-28 14:00:00 COMPLETED vaccination Vacunación anual 109350.00 23850.00 85500.00 2025-01-28 17:00:00+00 100175907961 374 439 114 74 \N \N \N +700 2025-02-21 20:26:37.731342+00 2025-02-21 20:26:37.731353+00 f t 2025-02-21 20:00:00 NO_REPORT clinical Ecografía abdominal 52000.00 12000.00 40000.00 2025-02-21 23:00:00+00 103067864374 482 572 113 90 60idgmld2dm9lds2hhrh8t7mb0 \N \N +1025 2025-04-21 20:10:04.37223+00 2025-04-21 20:10:04.372239+00 f t 2025-04-21 18:00:00 COMPLETED vaccination Refuerzo de la vacuna Quíntuple 59500.00 15500.00 44000.00 2025-04-21 21:00:00+00 \N 709 826 113 92 ktk8a4q0t1dlbs2sps20ut7sgc \N \N +2368 2025-09-03 14:46:06.480509+00 2025-09-03 14:46:06.480519+00 f t 2025-09-04 15:30:00 NO_REPORT clinical Radiografia Rayos x4 110000.00 15000.00 95000.00 2025-09-04 18:30:00+00 WY7ZEPN6QDVYOLRONQ0M51 7897 6499 1583 84 le4n0mqbaau4t87n9bv8o3i1do 142 \N +483 2025-01-25 20:55:09.865344+00 2025-01-25 20:55:09.865354+00 f t 2025-01-27 17:30:00 COMPLETED clinical Rayos x 2 75000.00 15000.00 60000.00 2025-01-27 20:30:00+00 L18MKX9R71M8KMLO9O6WYV 365 430 114 3 \N \N \N +525 2025-01-30 19:48:07.436673+00 2025-01-30 19:48:07.43668+00 f t 2025-02-03 10:00:00 COMPLETED vaccination vacunacion anual x 2 gatos Se pone el monto total de la vacunación de las dos gatas aquí 109350.00 23850.00 85500.00 2025-02-03 13:00:00+00 100451300335 386 459 114 78 \N \N \N +493 2025-01-27 17:10:37.723162+00 2025-01-27 17:10:37.723171+00 f t 2025-01-26 09:00:00 COMPLETED clinical Seña de la extracción(2000) + Perfil General Completo sin Orina + Traslado de la muestra (14000) 47000.00 47000.00 0.00 2025-01-26 12:00:00+00 100071130099 364 429 114 68 \N \N \N +486 2025-01-26 18:45:35.042184+00 2025-01-26 18:45:35.042191+00 f t 2025-01-26 17:30:00 COMPLETED clinical Administracion de suero Singer Lactato y ademas comenta que la px esta con diarrea. 51600.00 8600.00 43000.00 2025-01-26 20:30:00+00 1000804648825 368 433 113 70 \N \N \N +791 2025-03-08 21:19:40.34389+00 2025-03-08 21:19:40.343897+00 f t 2025-03-18 15:30:00 COMPLETED clinical Vacunación anual 66000.00 17000.00 49000.00 2025-03-18 18:30:00+00 \N 547 644 111 88 fnhn59kb05ekdpfhsabekq95dg \N \N +771 2025-03-05 18:16:13.753875+00 2025-03-05 18:16:13.753882+00 t t 2025-03-06 08:00:00 PENDING clinical PRUEBA b PRUEBA b 10.00 5.00 5.00 2025-03-06 11:00:00+00 111 346 246 110 76 9927gv09g2ihinj5qikm47ro7o \N \N +498 2025-01-28 01:51:17.290543+00 2025-01-28 01:51:17.290552+00 f t 2025-01-28 15:00:00 COMPLETED clinical Consulta clinica: Es un control. Es una gatita que suele vomitar. Come gastrointestinal desde chiquita por este tema. La tutora quiere ver si hay que desparasitar. Tiene 2 animalitos más. 35000.00 7000.00 28000.00 2025-01-28 18:00:00+00 \N 376 442 110 80 \N \N \N +469 2025-01-22 23:50:44.596271+00 2025-01-22 23:50:44.596278+00 f t 2025-01-25 10:00:00 COMPLETED vaccination Vacunacion 0.00 0.00 0.00 2025-01-25 13:00:00+00 99751323353 356 421 113 70 ab5m638s7vlrgvupucm7l0b2ao \N \N +504 2025-01-28 21:15:34.258131+00 2025-01-28 21:15:34.258139+00 f t 2025-01-29 13:00:00 NO_REPORT clinical Control cardiologico 95000.00 10000.00 85000.00 2025-01-29 16:00:00+00 36086137645 378 448 114 82 \N \N \N +583 2025-02-04 15:51:18.333872+00 2025-02-04 15:51:18.333879+00 f t 2025-02-04 15:00:00 COMPLETED clinical Vómitos muy frecuentes Temperamento fuerte 35000.00 7000.00 28000.00 2025-02-04 18:00:00+00 LOEJWV9JLL6OZDQDNQMD0G 414 493 114 74 pjs72fgu6ruqjhfohdb3g8b6ck \N \N +547 2025-02-01 21:56:59.223026+00 2025-02-01 21:56:59.223035+00 f t 2025-02-01 19:30:00 COMPLETED clinical Irritación en el ojo 41600.00 8600.00 33000.00 2025-02-01 22:30:00+00 101046587318 396 470 114 1 866bips4sgfmsu8o1cl4afsl08 \N \N +1884 2025-07-25 20:53:26.529018+00 2025-07-25 20:53:26.529029+00 f t 2025-07-28 08:00:00 NO_REPORT clinical extraccion de sangre y orina Abonarle a Meli el monto de la extraccion + enfermeria $23000 \r\nPodemos solventarlo por meli lleva las muestras 30700.00 0.00 23000.00 2025-07-28 11:00:00+00 \N 409 488 113 66 94jhuv9i2j79klsi2d9l5vcrmc \N \N +637 2025-02-12 18:06:27.317805+00 2025-02-12 18:06:27.31781+00 f t 2025-02-12 19:30:00 COMPLETED clinical gato con posible infeccion urinaria 41600.00 8600.00 33000.00 2025-02-12 22:30:00+00 101728721565 377 446 111 70 27iuhj6c39c6irf066jmo58oik \N \N +555 2025-02-02 18:06:08.433773+00 2025-02-02 18:06:08.433782+00 t t 2025-02-02 16:00:00 NO_REPORT clinical drenar líquidos por edematización 101600.00 8600.00 93000.00 2025-02-02 19:00:00+00 d25e68f1-f768-4f3a-a81c-f73d02 401 475 114 1 3dnmjl7ve18aav3g5gctp56erg \N \N +513 2025-01-29 18:02:09.588505+00 2025-01-29 18:02:09.588513+00 t t 2025-01-30 08:00:00 PENDING clinical 11111.00 222222.00 1111111.00 2025-01-30 11:00:00+00 \N 346 246 109 82 \N \N \N +450 2025-01-21 12:19:59.329588+00 2025-01-21 12:19:59.329594+00 f t 2025-01-21 12:00:00 COMPLETED clinical Curaciones 35000.00 7000.00 28000.00 2025-01-21 15:00:00+00 99904379682 340 403 114 68 hqgdfalsp22fmeasrk9krs37hs \N \N +2115 2025-08-15 23:16:09.401748+00 2025-08-15 23:16:09.401758+00 f t 2025-08-16 14:00:00 COMPLETED clinical Diente Roto 50000.00 10000.00 40000.00 2025-08-16 17:00:00+00 38464538402 4732 3919 114 92 fr37ld99rm1pcjai1vv8qm7014 344 \N +649 2025-02-14 18:56:15.68167+00 2025-02-14 18:56:15.681678+00 f t 2025-02-18 16:00:00 NO_REPORT clinical Control general 35000.00 7000.00 28000.00 2025-02-18 19:00:00+00 102331049132 448 531 111 74 japi8pnv74h40jrc27sfl8udn4 \N \N +521 2025-01-30 14:58:19.928732+00 2025-01-30 14:58:19.928739+00 f t 2025-02-03 18:00:00 CANCELLED clinical ecografia abdominal 65000.00 15000.00 50000.00 2025-02-03 21:00:00+00 100722017096 373 438 114 3 1ht5u3nuvull5112pa809p3rjc \N \N +539 2025-01-31 18:33:10.203046+00 2025-01-31 18:33:10.203054+00 t t 2025-01-31 18:00:00 NO_REPORT clinical 12 123 12000.00 12111.00 12312312.00 2025-01-31 21:00:00+00 \N 346 246 110 76 q31kv75feidtqvtcvrhv9oqin0 \N \N +815 2025-03-13 21:29:03.181994+00 2025-03-13 21:29:03.182004+00 f t 2025-03-12 17:00:00 NO_REPORT clinical Estudio de orina :6500: * 2\r\nRestante envio 25000.00 25000.00 0.00 2025-03-12 20:00:00+00 104952566614 265 309 113 86 5fcs3pcm0eojrg8nea97sphimo \N \N +319 2024-12-09 12:48:05.426+00 2024-12-09 12:48:05.426+00 f t 2024-12-19 16:00:00 COMPLETED clinical Vacunación anual para 3 gatos Transaccion 95154294527\r\n$161.600\t$60.600\t$101.000 161600.00 60600.00 10100.00 2024-12-19 19:00:00+00 \N 248 277 110 1 fdnotkfbnte1buub1g4bvn7sas \N \N +542 2025-01-31 21:13:59.971543+00 2025-01-31 21:13:59.971553+00 t t 2025-02-01 10:00:00 NO_REPORT vaccination Vacunacion + revision 60750.00 15750.00 45000.00 2025-02-01 13:00:00+00 100556140321 393 467 113 70 3tasdr8vkc58dvplcngsuaae3c \N \N +605 2025-02-07 20:59:46.691769+00 2025-02-07 20:59:46.691777+00 f t 2024-02-07 18:30:00 NO_REPORT telemedicina Desorientacion 24000.00 24000.00 15000.00 2024-02-07 21:30:00+00 101634572570 427 507 113 70 maat8i07avt545insubagibnds \N \N +2441 2025-09-10 14:09:21.839197+00 2025-09-10 14:09:21.839203+00 t t 2025-09-10 09:00:00 NO_REPORT clinical resultado Urocultivo 0.00 0.00 0.00 2025-09-10 12:00:00+00 0 7766 6397 1583 100 r0bmn3fu9bl77oqkacs31mk0fk \N \N +487 2025-01-26 18:49:27.092357+00 2025-01-26 18:49:27.092365+00 f t 2025-01-26 16:30:00 COMPLETED clinical Cambios en el comportamiento,dificultad en la movilidad manifiesta dolor el paciente. 41600.00 8600.00 33000.00 2025-01-26 19:30:00+00 100076501505 369 434 113 70 \N \N \N +526 2025-01-30 20:24:15.433114+00 2025-01-30 20:24:15.433121+00 f t 2025-01-31 09:30:00 COMPLETED telemedicina Chequeo de resultados 24000.00 24000.00 15000.00 2025-01-31 12:30:00+00 100455452347 370 435 111 77 \N \N \N +619 2025-02-10 14:36:15.234502+00 2025-02-10 14:36:15.235276+00 t t 2025-02-09 12:00:00 COMPLETED clinical PRUEBA 10.00 10.00 10.00 2025-02-09 15:00:00+00 1 346 246 110 76 s20g90vdnf9347o02185cfr17k \N \N +701 2025-02-21 20:39:37.474413+00 2025-02-21 20:39:37.474422+00 f t 2025-02-21 17:30:00 NO_REPORT clinical 41600.00 8600.00 33000.00 2025-02-21 20:30:00+00 103073590634 483 573 114 88 u8dcjtu39jgddmsp5ua6pip4n8 \N \N +677 2025-02-18 19:11:04.967235+00 2025-02-18 19:11:04.967246+00 f t 2025-02-21 14:00:00 COMPLETED telemedicina Reprogramación, de consulta clinica 24000.00 24000.00 15000.00 2025-02-21 17:00:00+00 102688561496 468 555 111 80 bu45076iu2ia38j53ta83786hs \N \N +472 2025-01-23 13:18:13.494165+00 2025-01-23 13:18:13.494172+00 f t 2025-01-24 11:00:00 COMPLETED clinical Perro geronte desganado, no quiere comer, no quiere tomar agua. No tiene ganas de salir. Que se puede hacer para mejorar la calidad de vida. 35000.00 7000.00 28000.00 2025-01-24 14:00:00+00 \N 359 424 111 1 \N \N \N +792 2025-03-09 20:42:52.686037+00 2025-03-09 20:42:52.686045+00 f t 2025-03-10 16:00:00 COMPLETED vaccination Vacunación anual 66000.00 17000.00 49000.00 2025-03-10 19:00:00+00 104521999932 548 645 114 88 lhicbh7vdte149eph96t8tktm4 \N \N +484 2025-01-25 21:22:27.576151+00 2025-01-25 21:22:27.576158+00 f t 2025-01-25 17:00:00 COMPLETED clinical Sangrado de cavidad anal 41600.00 8600.00 33000.00 2025-01-25 20:00:00+00 100387036276 366 431 114 70 \N \N \N +759 2025-03-04 18:46:21.857931+00 2025-03-04 18:46:21.857938+00 f t 2025-03-10 18:00:00 COMPLETED clinical Revisión de herida 38500.00 8500.00 30000.00 2025-03-10 21:00:00+00 103762852716 444 527 111 88 7gm3ps64keabqqt5s2r13vjn4g \N \N +678 2025-02-18 19:26:41.857687+00 2025-02-18 19:26:41.857695+00 f t 2025-02-18 19:00:00 COMPLETED clinical Extracción de muestras 75420.00 42420.00 33000.00 2025-02-18 22:00:00+00 \N 410 489 111 70 9aa2kk8kkov5ucikcn9iquhr4c \N \N +772 2025-03-05 18:36:28.891347+00 2025-03-05 18:36:28.891355+00 t t 2025-03-14 08:00:00 PENDING clinical prueba bbb 1.00 1.00 1.00 2025-03-14 11:00:00+00 1 346 246 110 76 535vn71orq2qer5il1o4411o18 \N \N +566 2025-02-03 12:17:08.950604+00 2025-02-03 12:17:08.950613+00 f t 2025-02-05 19:30:00 COMPLETED clinical Medición de la presión y aplicación de ringerlactato 0.00 0.00 148000.00 2025-02-05 22:30:00+00 \N 406 483 114 66 6donnrr84lbfegjpqksdu75aag \N \N +3133 2025-11-04 19:12:03.879996+00 2025-11-04 19:12:03.880004+00 f t 2025-11-07 10:00:00 COMPLETED clinical Vacunacion anual y corte de garras. 85700.00 23700.00 62000.00 2025-11-07 13:00:00+00 70376586007251104 12377 10225 1583 94 4m9vs8hdvab9q8qbg92lf975fc \N 1402 +3331 2025-11-19 19:02:57.460885+00 2025-11-19 19:02:57.460894+00 f t 2025-11-21 10:00:00 NO_REPORT clinical fluidoterapia endovenosa ya esta cargada la seña en los otros turnos 56000.00 0.00 56000.00 2025-11-21 13:00:00+00 133879580779 13352 11001 1208 70 8c6vjeckkkpfncid0h2f26n7o8 \N 1684 +650 2025-02-14 19:57:51.193956+00 2025-02-14 19:57:51.193961+00 f t 2025-02-17 12:30:00 COMPLETED vaccination vacunacion, vacuna sextuple 55350.00 14350.00 41000.00 2025-02-17 15:30:00+00 102343264604 449 532 111 1 h32r46v6ho49mau4srii0qs7d8 \N \N +584 2025-02-04 16:34:11.376597+00 2025-02-04 16:34:11.376604+00 t t 2025-02-04 20:00:00 PENDING telemedicina Presenta babeos abundantes y estornudos poco frecuentes 24000.00 24000.00 0.00 2025-02-04 23:00:00+00 1190360528 416 495 113 70 iqb7e56ncaudur85odrjn8d7o4 \N \N +505 2025-01-28 23:31:30.975374+00 2025-01-28 23:31:30.975382+00 f t 2025-01-28 21:00:00 NO_REPORT clinical Lesion de cavidad bucal con hernia de disco 41600.00 8600.00 33000.00 2025-01-29 00:00:00+00 100274817099 379 449 113 70 dac3ugaf703pao93qt60asq9tc \N \N +606 2025-02-08 03:14:06.111261+00 2025-02-08 03:14:06.111268+00 f t 2025-02-09 18:00:00 COMPLETED telemedicina Alergia generalizada 37000.00 7000.00 30000.00 2025-02-09 21:00:00+00 36214023883 428 508 114 75 nqldmesoh15v0fr3b778gd4n2o \N \N +638 2025-02-12 19:34:32.616955+00 2025-02-12 19:34:32.616961+00 f t 2025-02-15 10:00:00 NO_REPORT vaccination Vacunacion para dos pacientes(Perro y Gato) abono 31mil en trasaccion 101645681409 y 500 en transaccion 102028345226 121500.00 31500.00 90000.00 2025-02-15 13:00:00+00 101645681409 441 522 111 2 7v6bv6tkh3ames2lc8vvsu5j0c \N \N +1873 2025-07-24 20:40:32.489595+00 2025-07-24 20:40:32.489604+00 f t 2025-07-25 08:30:00 NO_REPORT clinical Extracción 20000.00 0.00 20000.00 2025-07-25 11:30:00+00 \N 5196 4270 1026 85 cttkqt68ohksjsa6odibb92jjg \N \N +1395 2025-06-06 16:10:25.970246+00 2025-06-06 16:10:25.970254+00 f t 2025-06-13 08:00:00 CANCELLED clinical 0.00 0.00 0.00 2025-06-13 11:00:00+00 \N 2224 2035 1026 85 s2ldao5pt6eph5bojep9jmhu08 \N \N +2038 2025-08-09 18:10:52.384978+00 2025-08-09 18:10:52.385013+00 f t 2025-08-02 20:00:00 NO_REPORT clinical 29700.00 29700.00 0.00 2025-08-02 23:00:00+00 120821825218 5774 4726 1208 95 e8cvul7de0tjt35252kugg3b1g 457 \N +556 2025-02-02 18:06:11.473642+00 2025-02-02 18:06:11.473652+00 f t 2025-02-02 16:00:00 COMPLETED clinical drenar líquidos por edematización 101600.00 8600.00 93000.00 2025-02-02 19:00:00+00 d25e68f1-f768-4f3a-a81c-f73d02 401 475 114 1 f1nmdols7jf5tb9ue7oofqsgvg \N \N +760 2025-03-04 19:25:06.940714+00 2025-03-04 19:25:06.940725+00 f t 2025-03-02 18:00:00 NO_REPORT clinical Eutansia 108500.00 22000.00 86500.00 2025-03-02 21:00:00+00 \N 531 626 114 70 uraqmj1sjgra8jedf8rb3khbv4 \N \N +548 2025-02-01 22:08:54.577597+00 2025-02-01 22:08:54.577606+00 f t 2025-02-01 20:30:00 COMPLETED clinical estreñimiento y diarrea 41600.00 8600.00 33000.00 2025-02-01 23:30:00+00 56687646 397 471 110 68 s1nencu55lu5amf1eppp3eob4o \N \N +1895 2025-07-27 15:01:42.83534+00 2025-07-27 15:01:42.835348+00 f t 2025-07-27 08:00:00 COMPLETED clinical 0.00 0.00 0.00 2025-07-27 11:00:00+00 0 5329 4376 1208 100 \N \N \N +816 2025-03-13 21:32:25.850872+00 2025-03-13 21:32:25.85088+00 f t 2025-03-14 17:30:00 NO_REPORT clinical Diarrea 38500.00 8500.00 30000.00 2025-03-14 20:30:00+00 36575244768 563 660 113 9 naa3hufojkfjb4hl6mu6i4rsj4 \N \N +586 2025-02-04 19:46:27.364258+00 2025-02-04 19:46:27.364268+00 f t 2025-02-04 19:00:00 COMPLETED clinical Perro geronte desganado, se esta lástimando de nuevo la piel y está más decaído 37440.00 4440.00 33000.00 2025-02-04 22:00:00+00 101302678476 359 424 111 70 rebvq2km37kdbs4iv52cfphveg \N \N +488 2025-01-26 21:35:11.606128+00 2025-01-26 21:35:11.606137+00 f t 2025-01-27 17:00:00 COMPLETED clinical Cistitis + extraccion de sangre Se pago la seña de 9800, en dos pagos distintos 7000 + 2.800(N° transacción: 100468271734) 44800.00 9800.00 33000.00 2025-01-27 20:00:00+00 100095331557 370 435 114 77 \N \N \N +470 2025-01-22 23:56:57.665542+00 2025-01-22 23:56:57.66555+00 f t 2025-01-22 21:00:00 COMPLETED clinical Jadeo intermitente, dificultad en la movilidad 41600.00 8600.00 33000.00 2025-01-23 00:00:00+00 100120277574 357 422 113 70 \N \N \N +626 2025-02-11 01:03:03.83433+00 2025-02-11 01:03:03.834338+00 f t 2025-02-11 09:00:00 COMPLETED clinical Lesion en la oreja 35000.00 7000.00 28000.00 2025-02-11 12:00:00+00 LMORZP90553Z16Y6NEGJ46 438 518 113 1 fqpc7biqj6gqm35mm0ihqcd69o \N \N +522 2025-01-30 15:37:38.280871+00 2025-01-30 15:37:38.280879+00 f t 2025-01-30 10:00:00 NO_REPORT clinical Analisis de ecografia 35000.00 7000.00 28000.00 2025-01-30 13:00:00+00 100375455923 384 455 111 78 ejbvrgs8vhj6u5jbol6mncd5ck \N \N +807 2025-03-11 23:45:34.860862+00 2025-03-11 23:45:34.860872+00 f t 2025-03-17 18:00:00 NO_REPORT clinical Eco cardiologico 95000.00 10000.00 85000.00 2025-03-17 21:00:00+00 104816514558 559 656 113 82 8defq9hlaat9o2j07loghe0p9c \N \N +403 2025-01-10 19:03:46.22+00 2025-01-10 19:03:46.22+00 f t 2025-01-14 10:30:00 NO_REPORT clinical Ecografía abdominal 65000.00 15000.00 5000.00 2025-01-14 13:30:00+00 98388906469 299 353 113 3 lciu5rcav4jop39dkp4md7q4q8 \N \N +2035 2025-08-09 17:09:03.371506+00 2025-08-09 17:09:03.37152+00 f t 2025-08-03 19:30:00 COMPLETED clinical vac. anual 122850.00 22350.00 100500.00 2025-08-03 22:30:00+00 121129170013 6191 5055 1208 1 ef29qqohkqsr26op1554biupe0 448 \N +716 2025-02-25 19:35:36.770115+00 2025-02-25 19:35:36.770125+00 f t 2025-03-06 11:00:00 COMPLETED vaccination vacunación anual para 2 gatitas Aquí esta el monto total de las 2 vacunaciones 109350.00 23850.00 85500.00 2025-03-06 14:00:00+00 103029185167 497 587 114 88 dqm7amdecf5ofritgp19mudb0s \N \N +1641 2025-07-02 20:03:32.683409+00 2025-07-02 20:03:32.683415+00 f t 2025-07-03 17:30:00 COMPLETED clinical chequeo y vacunacion 0.00 0.00 0.00 2025-07-03 20:30:00+00 \N 3789 3212 1208 1 7gc3gi96lgrqc0l1rgojrf2kf8 \N \N +1219 2025-05-19 16:47:27.047198+00 2025-05-19 16:47:27.047207+00 f t 2025-05-20 18:30:00 COMPLETED clinical 0.00 0.00 0.00 2025-05-20 21:30:00+00 111599171785 1275 1300 112 70 cuimm94kb8epbrtm0bd6k3hiqk \N \N +543 2025-01-31 21:22:50.580678+00 2025-01-31 21:22:50.580685+00 f t 2025-02-04 15:00:00 COMPLETED vaccination Desparasitacion externa + corte de garras+ Vacunacion anual 92550.00 23550.00 69000.00 2025-02-04 18:00:00+00 WY7ZEPN6QRKJQK5ONQ0M51 394 468 113 80 8g9gn741l3g3poq0b9d8fd6lno \N \N +2076 2025-08-13 14:57:16.468876+00 2025-08-13 14:57:16.468892+00 f t 2025-08-13 20:00:00 COMPLETED telemedicina 24750.00 24750.00 0.00 2025-08-13 23:00:00+00 62409819 2732 2418 1208 91 vjjckpscd6pdubpk2obumlvnos 366 \N +854 2025-03-20 12:52:55.83089+00 2025-03-20 12:52:55.830899+00 f t 2025-03-26 12:30:00 NO_REPORT clinical Ecografía abdominal 52000.00 12000.00 40000.00 2025-03-26 15:30:00+00 \N 584 685 110 90 p6h51hf8vupgi80db6sgtbbkeg \N \N +1730 2025-07-11 14:16:21.623173+00 2025-07-11 14:16:21.62318+00 f t 2025-07-15 19:30:00 NO_REPORT clinical control 42000.00 9500.00 32500.00 2025-07-15 22:30:00+00 117714767485 345 3632 1026 70 fatqqd5afdlb8b8kfqvjco2aok 620 \N +689 2025-02-20 23:46:44.969776+00 2025-02-20 23:46:44.969783+00 f t 2025-02-22 10:00:00 CANCELLED clinical consulta clinica 41600.00 8600.00 33000.00 2025-02-22 13:00:00+00 \N 432 559 113 80 rr6qmolq40m2jliu8p7jpe40q8 \N \N +1251 2025-05-21 17:46:27.138653+00 2025-05-21 17:46:27.138662+00 f t 2025-05-22 10:00:00 COMPLETED clinical Desde el 20/05 por la noche, está con dolor en la pata trasera izquierda. Come, toma agua, hace sus necesidades. El problema está cuando quiere caminar o saltar. 38500.00 8500.00 30000.00 2025-05-22 13:00:00+00 30209991008250521 1388 1374 112 97 gj4v956774hfrmp0o7kp6qfiq8 \N \N +58 2024-10-30 14:13:08.82+00 2024-10-30 14:13:08.82+00 f t 2024-08-01 18:30:00 NO_REPORT Clinica Gato 12 años problemas respiratorios, maulla mucho y esta muy débil Transaccion 84086712796 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-08-01 21:30:00+00 57 58 \N 2 \N \N \N +2888 2025-10-14 18:50:42.988337+00 2025-10-14 18:50:42.988346+00 f t 2025-10-15 09:00:00 COMPLETED clinical analisis de orina completo con UPC 0.00 0.00 0.00 2025-10-15 12:00:00+00 100000004523263 10203 8472 1208 100 q80kmt49640vc7nnm5facd18b0 \N 1013 +1935 2025-07-30 15:27:10.027196+00 2025-07-30 15:27:10.027207+00 f t 2025-07-31 10:30:00 COMPLETED clinical traslado + laboratorio 117600.00 117600.00 0.00 2025-07-31 13:30:00+00 119864414883 5560 4556 1026 100 ccs5gaidpt8q2h3pbaj267gqb0 486 \N +625 2025-02-10 23:09:54.128501+00 2025-02-10 23:09:54.128509+00 f t 2025-02-11 09:30:00 COMPLETED telemedicina Resolución de laboratorio y control Abonarles los 15.000 al dr 24000.00 24000.00 0.00 2025-02-11 12:30:00+00 101553073445 431 511 113 70 o46eo3ndkr8jc1830o3ls6bj94 \N \N +320 2024-12-09 12:48:57.154+00 2024-12-09 12:48:57.154+00 f t 2024-12-19 16:00:00 COMPLETED vaccination Vacunación anual Es vacunacion para 3 gatos pagado todo junto en la transaccion de MP 95154294527 0.00 0.00 0.00 2024-12-19 19:00:00+00 \N 248 278 110 1 hctt06pq2qdrptsp6mciilej88 \N \N +549 2025-02-01 22:08:56.699175+00 2025-02-01 22:08:56.699182+00 t t 2025-02-01 20:30:00 COMPLETED clinical estreñimiento y diarrea 416000.00 8600.00 33000.00 2025-02-01 23:30:00+00 56687646 397 471 114 68 q0eof45aecollqkefvt8l4a1bs \N \N +1642 2025-07-02 20:04:06.632778+00 2025-07-02 20:04:06.632791+00 f t 2025-07-03 17:30:00 COMPLETED clinical chequeo y vacunacion 0.00 0.00 0.00 2025-07-03 20:30:00+00 \N 3789 3214 1208 1 emgnrhmj999u4331m23na47qf8 \N \N +607 2025-02-08 18:01:23.608716+00 2025-02-08 18:01:23.608723+00 f t 2025-02-08 16:30:00 COMPLETED clinical Consulta clínica por decaimiento y perdida de orina Puede llegar a presentar comportamiento nervioso o errático 41600.00 8600.00 33000.00 2025-02-08 19:30:00+00 RD06Z09W1160VRY325GP7X 429 509 114 68 i3ok5n02i7mkkgg5uqlacnq6ug \N \N +627 2025-02-11 01:08:51.260314+00 2025-02-11 01:08:51.26032+00 f t 2025-02-11 19:00:00 COMPLETED clinical Consulta clinica + eutanasia 87750.00 9750.00 78000.00 2025-02-11 22:00:00+00 101544849819 364 429 114 70 fk2s7g0ks8ems651jr0o86k49g \N \N +1996 2025-08-05 21:11:55.205765+00 2025-08-05 21:11:55.205776+00 f t 2025-08-05 20:30:00 COMPLETED telemedicina Asma 27500.00 27500.00 17500.00 2025-08-05 23:30:00+00 \N 5943 4851 113 92 o1nrjad1bbvlrqo3mmpmrvl394 429 \N +728 2025-02-26 16:21:02.439247+00 2025-02-26 16:21:02.439258+00 f t 2025-02-26 19:00:00 COMPLETED clinical consulta clínica por inflamación en pata trasera 41600.00 8600.00 33000.00 2025-02-26 22:00:00+00 103103866401 503 595 111 89 r2ae5q9jeklkif1im2bo4feigg \N \N +585 2025-02-04 16:34:14.773069+00 2025-02-04 16:34:14.773077+00 f t 2025-02-04 20:00:00 COMPLETED telemedicina Presenta babeos abundantes y estornudos poco frecuentes 24000.00 24000.00 0.00 2025-02-04 23:00:00+00 1190360528 416 495 113 70 b98aokd9eth81mtpnojk4othgc \N \N +858 2025-03-21 00:00:20.471275+00 2025-03-21 00:00:20.471284+00 f t 2025-03-21 18:30:00 NO_REPORT clinical Dificultad en la marcha 38500.00 8500.00 30000.00 2025-03-21 21:30:00+00 105422180349 587 688 113 70 kojcfh235mh7hmqg1dnjhkmgvc \N \N +523 2025-01-30 16:33:50.519729+00 2025-01-30 16:33:50.519736+00 f t 2025-01-30 15:00:00 NO_REPORT clinical Eutanasia + retiro de cuerpo 105000.00 20000.00 85000.00 2025-01-30 18:00:00+00 100443348733 379 449 111 70 jpl5fnuo3p52d43spigplrgur8 \N \N +1397 2025-06-06 17:14:33.869293+00 2025-06-06 17:14:33.869304+00 f t 2025-06-11 19:00:00 COMPLETED clinical 0.00 0.00 0.00 2025-06-11 22:00:00+00 70272401009250606 1811 1716 1026 97 tr10j56peog5g1o0j72kcgp4qs \N \N +690 2025-02-20 23:50:17.433866+00 2025-02-20 23:50:17.433875+00 f t 2025-02-20 17:00:00 COMPLETED clinical Deposiciones con sangre 41600.00 8600.00 33000.00 2025-02-20 20:00:00+00 \N 476 564 113 1 6r78a325dshjcovgi0t6va37u4 \N \N +1220 2025-05-19 16:47:59.824521+00 2025-05-19 16:47:59.824528+00 f t 2025-05-20 18:30:00 COMPLETED vaccination 0.00 0.00 0.00 2025-05-20 21:30:00+00 111599171785 1275 1301 112 70 j32suqtqn0skndq9fuca0c5ou0 \N \N +667 2025-02-17 13:47:35.084559+00 2025-02-17 13:47:35.084567+00 t t 2025-02-22 15:00:00 PENDING clinical PRUEBA MOTICO PRUEBA Observaciones 1.00 1.00 1.00 2025-02-22 18:00:00+00 1 346 246 110 76 34f8f7pcmrhqf5f7c2so0gtd1g \N \N +651 2025-02-14 21:43:45.978813+00 2025-02-14 21:43:45.978818+00 t t 2025-02-15 08:00:00 NO_REPORT clinical PRUEBAAAA LALALA 1.00 1.00 1.00 2025-02-15 11:00:00+00 1 346 246 110 76 85doipdakuq4n0u46sm51no920 \N \N +1862 2025-07-23 20:30:13.646895+00 2025-07-23 20:30:13.646909+00 f t 2025-07-24 19:00:00 NO_REPORT clinical Extraccion 30700.00 7700.00 23000.00 2025-07-24 22:00:00+00 119138395631 409 488 113 85 1njssn5jaqrfesgl0hf4lhvre8 550 \N +639 2025-02-12 20:06:08.048432+00 2025-02-12 20:06:08.048438+00 f t 2025-02-15 10:00:00 NO_REPORT vaccination Vacunacion para dos pacientes(Perro y Gato) Valores en el otro paciente 0.00 0.00 0.00 2025-02-15 13:00:00+00 \N 441 523 110 2 ujgrh6l7n0v10mcrkuesob3goo \N \N +471 2025-01-23 00:00:55.26278+00 2025-01-23 00:00:55.262789+00 f t 2025-01-24 17:00:00 COMPLETED vaccination Vacunación Anual 109350.00 23850.00 85500.00 2025-01-24 20:00:00+00 95387931 358 423 113 70 \N \N \N +1433 2025-06-10 14:50:22.990373+00 2025-06-10 14:50:22.990384+00 f t 2025-06-11 15:00:00 COMPLETED vaccination 0.00 0.00 0.00 2025-06-11 18:00:00+00 114126209295 2489 2233 1026 94 o1fovpn50tcmr1hn5iu86bi7f4 \N \N +750 2025-03-01 22:16:21.114998+00 2025-03-01 22:16:21.115006+00 f t 2025-03-04 16:00:00 COMPLETED telemedicina Lesiones en el cuerpo,con descamacion y prurito 25000.00 25000.00 16000.00 2025-03-04 19:00:00+00 103464378397 522 617 113 89 nc7rvng5q4anf9dgb2m88et7fo \N \N +2818 2025-10-08 16:29:11.129871+00 2025-10-08 16:29:11.129882+00 f t 2025-10-08 16:00:00 COMPLETED clinical Pérdida de movilidad patas traseras. 55000.00 11000.00 44000.00 2025-10-08 19:00:00+00 Z4K6DVNODZYE7Z8495J8LQ 10243 8504 1208 1 6qhccbemlop22642o60lhomddg \N 910 +703 2025-02-22 21:32:34.497121+00 2025-02-22 21:32:34.497133+00 f t 2025-02-22 15:00:00 NO_REPORT clinical Ecografía Abdominal 62000.00 12000.00 50000.00 2025-02-22 18:00:00+00 \N 485 575 114 90 g9trkqai10benae5hj101b8vko \N \N +2435 2025-09-09 15:47:08.299234+00 2025-09-09 15:47:08.299242+00 f t 2025-09-09 18:00:00 COMPLETED telemedicina Control de resultado de estudios Le debemos $19.500 al Martin 30000.00 30000.00 19500.00 2025-09-09 21:00:00+00 125511562158 8161 6712 1583 70 6lfidm7a4q7lils9hcukc4q2hk 96 \N +489 2025-01-26 21:42:06.432084+00 2025-01-26 21:42:06.432091+00 f t 2025-01-26 09:00:00 COMPLETED clinical Inflamacion de ojo 41600.00 8600.00 33000.00 2025-01-26 12:00:00+00 100467837550 371 436 114 70 \N \N \N +557 2025-02-02 18:40:52.076941+00 2025-02-02 18:40:52.076948+00 f t 2025-02-02 16:30:00 NO_REPORT clinical gatita con malestar general, presenta estrés en traladarla 41600.00 8600.00 33000.00 2025-02-02 19:30:00+00 101110572692 402 476 114 70 sivb1vkdl3s20kimf8i7pd2d1s \N \N +660 2025-02-16 21:31:39.367146+00 2025-02-16 21:31:39.367155+00 f t 2025-02-16 19:00:00 NO_REPORT clinical Consulta clínica por vómitos y dolencias de cadera La transferencia fue por macro 41600.00 8600.00 33000.00 2025-02-16 22:00:00+00 \N 457 541 114 70 25fg9kv29lveaqa52f26m8gqm0 \N \N +531 2025-01-30 23:29:09.972218+00 2025-01-30 23:29:09.972224+00 f t 2025-02-03 11:30:00 CANCELLED vaccination Vacunacion anul La clienta pago 16000- diferencia 250 al gilbert 60750.00 16000.00 44750.00 2025-02-03 14:30:00+00 100845828246 388 462 113 78 hol83tcsmcmh2ajceu5f2bve8c \N \N +568 2025-02-03 17:08:21.914213+00 2025-02-03 17:08:21.91422+00 f t 2025-02-07 19:00:00 CANCELLED vaccination vacunacion anual x 3. perros adultos 161600.00 60600.00 101000.00 2025-02-07 22:00:00+00 101189475654 407 486 111 70 cn5cgssj0440b4s4052oej8c2s \N \N +717 2025-02-25 19:37:53.680982+00 2025-02-25 19:37:53.680989+00 f t 2025-03-06 11:00:00 NO_REPORT vaccination Vacunación anual de 2 gatitos 0.00 0.00 0.00 2025-03-06 14:00:00+00 0 497 588 114 88 jltl1t6158m8oe241lhbc9aolo \N \N +761 2025-03-04 19:33:32.809589+00 2025-03-04 19:33:32.809598+00 f t 2025-03-03 16:00:00 COMPLETED clinical Urgencia por mucho dolor en pierna con precedentes de quebradura La veterinaria cobro $68.000 aparte por la distancia 46000.00 9500.00 36500.00 2025-03-03 19:00:00+00 103607165795 532 627 114 21 v651n3lt80lf9q44pfpeh0430g \N \N +3341 2025-11-20 15:03:11.893255+00 2025-11-20 15:03:11.893266+00 f t 2025-11-20 17:30:00 NO_REPORT clinical Perdida de pelo en abdomen y zona cercana al inicio de la cola \N 55000.00 11000.00 44000.00 2025-11-20 20:30:00+00 133988561993 12236 10105 \N 88 1tclkm4jnbcpb6718dkr7l312k \N 1360 +194 2024-10-30 14:13:10.037+00 2024-10-30 14:13:10.037+00 f t 2024-10-28 12:00:00 NO_REPORT Clinica Chequeo general Transaccion 91164901137 41600.00 15600.00 26000.00 2024-10-28 15:00:00+00 167 176 114 1 0145u4onnmf3e2v6cgg3ss0amk \N \N +729 2025-02-26 16:35:04.527759+00 2025-02-26 16:35:04.527766+00 f t 2025-02-26 16:00:00 NO_REPORT clinical Ecografía abdominal 52000.00 12000.00 40000.00 2025-02-26 19:00:00+00 103110877347 505 597 111 90 cnitaee1heiu107h82p9a04h1g \N \N +2098 2025-08-15 15:43:18.137771+00 2025-08-15 15:43:18.137779+00 f t 2025-08-15 13:00:00 COMPLETED telemedicina Alergia en piel, picazon 27500.00 27500.00 17500.00 2025-08-15 16:00:00+00 \N 6597 5381 113 68 gkt89hvs52lf1v8beg1o0n6kf0 353 \N +691 2025-02-20 23:56:33.862368+00 2025-02-20 23:56:33.862375+00 f t 2025-02-20 18:00:00 NO_REPORT clinical Temblor y dolor intermitente 41600.00 8600.00 33000.00 2025-02-20 21:00:00+00 70964969 477 565 113 88 iojbgkdl5hjcoq4kvjq05f9qd8 \N \N +458 2025-01-22 14:47:43.001828+00 2025-01-22 14:47:43.001835+00 t t 2025-01-24 11:00:00 PENDING clinical 12000.00 24000.00 123456.00 2025-01-24 14:00:00+00 123456789 346 246 110 76 \N \N \N +588 2025-02-05 14:34:40.248077+00 2025-02-05 14:34:40.248084+00 f t 2025-02-06 16:30:00 COMPLETED vaccination vacunacion anual gato + perro 109350.00 23850.00 85500.00 2025-02-06 19:30:00+00 100920414291 418 497 111 1 tv07oskp3ejghpoufk180va2po \N \N +195 2024-10-30 14:13:10.041+00 2024-10-30 14:13:10.041+00 f t 2024-10-28 09:00:00 COMPLETED Clinica clinica + Extraccion de sangre + traslado + pgc c/orina Transaccion 91235629349 92700.00 61700.00 31000.00 2024-10-28 12:00:00+00 \N 166 175 114 1 \N \N \N +738 2025-02-27 18:18:57.615221+00 2025-02-27 18:18:57.615232+00 f t 2025-02-28 10:00:00 NO_REPORT clinical vacunacion anual gato adulto, y consulta clinica gato adoptado adulto 86175.00 16825.00 69350.00 2025-02-28 13:00:00+00 103615614564 513 605 111 70 musdnu4os98ld867rkopdeiu3g \N \N +762 2025-03-04 19:37:01.039866+00 2025-03-04 19:37:01.039874+00 f t 2025-03-03 20:00:00 NO_REPORT clinical Vacunación Anua 66000.00 17000.00 49000.00 2025-03-03 23:00:00+00 104014056420 521 616 114 70 5abcf0lgh9h1hdakd0reuc6klo \N \N +532 2025-01-30 23:32:25.40817+00 2025-01-30 23:32:25.408179+00 t t 2025-01-30 11:00:00 NO_REPORT clinical Control general 35000.00 7000.00 28000.00 2025-01-30 14:00:00+00 100836154902 389 463 113 74 \N \N \N +668 2025-02-17 15:03:10.864772+00 2025-02-17 15:03:10.864779+00 t t 2025-02-22 08:00:00 PENDING clinical Prueba Motivo Prueba Observaciones 0.00 0.00 0.00 2025-02-22 11:00:00+00 0 346 182 110 76 p3dpaurqtdqttbfmbi1erkrd1c \N \N +652 2025-02-14 23:18:51.779428+00 2025-02-14 23:18:51.779476+00 f t 2025-02-15 13:00:00 COMPLETED clinical Solicita admnistracion de Dexamentasona 0,3 kg, tambien requiere un control debido a que posiblemente sea px oncologico. 41600.00 8600.00 33000.00 2025-02-15 16:00:00+00 101977709381 450 533 113 88 pdf2r57ln5vplrbsr80upchugc \N \N +580 2025-02-04 00:25:23.45534+00 2025-02-04 00:25:23.455352+00 f t 2025-02-04 09:00:00 COMPLETED clinical Consulta con dermatología por lesiones ulcerativa en el cuerpo 60000.00 10000.00 50000.00 2025-02-04 12:00:00+00 101224019694 412 491 113 75 1cnv0qbrtbom3hc1n3jn467sic \N \N +569 2025-02-03 17:08:25.616785+00 2025-02-03 17:08:25.616792+00 f t 2025-02-07 19:00:00 CANCELLED vaccination vacunacion anual x 3. perros adultos 161600.00 60600.00 101000.00 2025-02-07 22:00:00+00 101189475654 407 485 111 70 8r1rk0agg3peiblp6t8o37a37o \N \N +799 2025-03-10 23:29:30.40271+00 2025-03-10 23:29:30.402717+00 f t 2025-03-09 09:00:00 COMPLETED clinical problema motriz en ambas piernas traseras 46000.00 9500.00 36500.00 2025-03-09 12:00:00+00 104552405360 553 650 113 80 2817n158crdfbqtpbgmfjiek6c \N \N +490 2025-01-26 21:42:08.790421+00 2025-01-26 21:42:08.790428+00 t t 2025-01-26 08:00:00 NO_REPORT clinical Inflamacion de ojo 41600.00 8600.00 33000.00 2025-01-26 11:00:00+00 100467837550 371 436 114 70 \N \N \N +774 2025-03-05 23:28:44.349587+00 2025-03-05 23:28:44.349596+00 f t 2025-03-05 20:00:00 NO_REPORT clinical control clinicp 46000.00 9500.00 36500.00 2025-03-05 23:00:00+00 \N 540 636 113 70 jheod8kduphr34u50suchlji98 \N \N +1864 2025-07-23 22:33:56.873825+00 2025-07-23 22:33:56.873831+00 f t 2025-07-31 14:30:00 COMPLETED clinical 4 rx 99000.00 15000.00 84000.00 2025-07-31 17:30:00+00 \N 409 488 113 84 198l3m5iv4d1itd0p977ijq790 484 \N +2250 2025-08-26 13:39:18.835454+00 2025-08-26 13:39:18.835466+00 f t 2025-08-26 20:00:00 COMPLETED clinical vomitos constantes 50000.00 10000.00 40000.00 2025-08-26 23:00:00+00 11053005008250826 7305 5993 1208 80 p62p0pgguvii4neg39mmgas290 227 \N +2278 2025-08-28 15:01:31.863989+00 2025-08-28 15:01:31.864005+00 t t 2025-08-28 15:00:00 PENDING clinical Problemas para pararse y desplazarse \N 50000.00 10000.00 0.00 2025-08-28 18:00:00+00 123447854521 7432 6115 \N 91 442t6a7aq7au4eqqho6m9vhs7k \N \N +558 2025-02-02 20:39:56.262306+00 2025-02-02 20:39:56.262313+00 f t 2025-02-04 10:00:00 COMPLETED vaccination Vacunación anual 60750.00 15750.00 45000.00 2025-02-04 13:00:00+00 100666662173 403 477 114 1 83p37fm7227j2smq94gf2r5oi8 \N \N +550 2025-02-01 22:14:26.245644+00 2025-02-01 22:14:26.245651+00 f t 2025-02-05 10:00:00 COMPLETED clinical vacunación anual 60750.00 15750.00 45000.00 2025-02-05 13:00:00+00 101022332046 398 472 114 74 9o3hflc47r0mrgphh55qvtg9fs \N \N +1726 2025-07-10 21:14:47.54562+00 2025-07-10 21:14:47.545628+00 f t 2025-07-14 12:00:00 COMPLETED clinical Consulta clínica, cuadro con secreciones mucosa, tos 42000.00 9500.00 32500.00 2025-07-14 15:00:00+00 37989393853 916 1021 113 88 heqpd25d41dti4t9h7hcf384e8 638 \N +809 2025-03-11 23:50:51.300573+00 2025-03-11 23:50:51.300581+00 f t 2025-03-11 19:00:00 COMPLETED clinical tos y dolor en tráquea por la edad Se le abono 6500 a la vete por el incoveniente de la confirmacion previo a la seña 45000.00 8500.00 36500.00 2025-03-11 22:00:00+00 850895538 560 657 113 80 03tugvkv3u7mg2abq9lcvva3e8 \N \N +608 2025-02-08 18:11:19.252695+00 2025-02-08 18:11:19.252701+00 f t 2025-02-09 11:00:00 COMPLETED clinical Consulta clínica por vómitos seguidos Puede llegar a presentar comportamiento errático 41600.00 8600.00 33000.00 2025-02-09 14:00:00+00 101250726267 430 510 114 70 7rg593d70u7o5pmtbac7uoc9o0 \N \N +718 2025-02-25 19:51:45.915638+00 2025-02-25 19:51:45.915646+00 f t 2025-02-28 08:30:00 CANCELLED vaccination Vacunación de 2 dosis de séxtuple y una antirrábica Aquí estarán las 3 ventas de las vacunaciones. cancelado, queda el dinero a cuenta de la clienta 123120.00 9120.00 114000.00 2025-02-28 11:30:00+00 73889209 492 581 111 80 2ffpghcfjo5el4b0hfgj13p6rk \N \N +628 2025-02-11 01:14:10.074764+00 2025-02-11 01:14:10.07477+00 f t 2025-02-12 18:00:00 COMPLETED clinical Inicio de controles debido a que fue rescatado 35000.00 7000.00 28000.00 2025-02-12 21:00:00+00 Z60LMDN3XXOD6OQK9E7RQ5 439 519 113 70 22q36ce6hsj92f4gvbu26plf74 \N \N +640 2025-02-12 21:15:37.298121+00 2025-02-12 21:15:37.298128+00 f t 2025-02-13 18:30:00 COMPLETED vaccination Vacunacion anual x2 la clienta le paga 48.750, Amar le debe pagar $36.750 109350.00 60600.00 85500.00 2025-02-13 21:30:00+00 \N 407 485 111 70 ka0ga9bhtrd536cvp9qmmkrqak \N \N +782 2025-03-06 23:29:41.207789+00 2025-03-06 23:29:41.207797+00 f t 2025-03-06 21:30:00 COMPLETED clinical Px thena con vomitos 100800.00 19575.00 81225.00 2025-03-07 00:30:00+00 104317532774 542 638 113 89 klov7q3m3kqll9uarc2u1i6gvk \N \N +704 2025-02-22 21:40:24.775822+00 2025-02-22 21:40:24.775833+00 f t 2025-02-24 17:00:00 NO_REPORT vaccination Adm de triple felina para un px gato de 3 meses 55350.00 14350.00 41000.00 2025-02-24 20:00:00+00 102698503643 486 576 113 2 ukoonqkdv6n914dntjsskh20no \N \N +620 2025-02-10 16:07:14.112648+00 2025-02-10 16:07:14.112655+00 f t 2025-01-29 18:00:00 COMPLETED clinical Vacunación anual 0.00 0.00 0.00 2025-01-29 21:00:00+00 \N 377 444 114 70 9u3u72knd481o6rogm727v3r78 \N \N +2213 2025-08-23 17:27:27.026858+00 2025-08-23 17:27:27.026866+00 f t 2025-08-28 18:00:00 NO_REPORT clinical vac. triple felina y control general se equivoco en la transf, tiene $3mil a favor 64500.00 17000.00 47500.00 2025-08-28 21:00:00+00 122888368873 1351 1353 1208 74 jvg4gjkh7eilpu6ct5u05e98g4 212 \N +459 2025-01-22 14:52:49.281491+00 2025-01-22 14:52:49.281497+00 t t 2025-01-24 10:00:00 PENDING clinical PRUEBA DE CALENDARIO PRUEBA DE CALENDARIO 0.00 0.00 0.00 2025-01-24 13:00:00+00 0 346 246 110 76 \N \N \N +705 2025-02-22 21:47:20.604184+00 2025-02-22 21:47:20.604191+00 f t 2025-02-27 08:30:00 COMPLETED clinical Control Clínico 35000.00 7000.00 28000.00 2025-02-27 11:30:00+00 102742967493 432 559 113 80 bpls6ojhdt8c9v9j4114f3fg1c \N \N +508 2025-01-28 23:43:54.285397+00 2025-01-28 23:43:54.285407+00 f t 2025-01-28 20:00:00 NO_REPORT clinical Lesion en genitales, posible bichera 41600.00 8600.00 33000.00 2025-01-28 23:00:00+00 100284366137 380 450 113 70 t1otga378q29oqfi0c9kc6gtpg \N \N +641 2025-02-12 21:18:19.748016+00 2025-02-12 21:18:19.748023+00 f t 2025-02-13 18:30:00 NO_REPORT vaccination vacunacion x 2 valores cargados en el otro turno 0.00 0.00 0.00 2025-02-13 21:30:00+00 \N 407 486 111 70 as8tm0lrl033gggo1i8kk085p8 \N \N +719 2025-02-25 19:52:37.741482+00 2025-02-25 19:52:37.741491+00 f t 2025-03-21 08:30:00 COMPLETED vaccination Vacunación de la sextuple - 2dosis 0.00 0.00 0.00 2025-03-21 11:30:00+00 0 492 581 114 80 rlhf150spmfsh85dslncbum8e8 \N \N +2300 2025-08-30 16:45:27.548884+00 2025-08-30 16:45:27.548893+00 f t 2025-08-30 17:00:00 COMPLETED clinical Ecografia abdominal 78000.00 13000.00 65000.00 2025-08-30 20:00:00+00 38649770680 7583 6236 1208 90 k94i7p3c5df6terqr7m6s6sb9o 191 \N +834 2025-03-18 19:02:43.769041+00 2025-03-18 19:02:43.769048+00 f t 2025-03-16 16:30:00 COMPLETED clinical Ojo con hinchazón que imposibilita que lo abra 46000.00 9500.00 36500.00 2025-03-16 19:30:00+00 \N 577 675 110 68 6dusrpbc05i9ehfk3h6t788ep4 \N \N +2193 2025-08-21 23:24:40.168427+00 2025-08-21 23:24:40.168434+00 f t 2025-08-21 22:00:00 NO_REPORT clinical Ecografía Abdominal 78000.00 13000.00 65000.00 2025-08-22 01:00:00+00 122656813687 7055 5771 114 90 vn3vcp2jl1k6s6l4hvvgi69qlg 283 \N +681 2025-02-19 16:42:32.52795+00 2025-02-19 16:42:32.52796+00 f t 2025-03-01 11:30:00 COMPLETED clinical Vacunacion anual + desparasitacion 98150.00 23650.00 74500.00 2025-03-01 14:30:00+00 102840168808 471 558 111 68 gvuoognt5n370f0cr4g0qaekik \N \N +1444 2025-06-11 13:20:53.647271+00 2025-06-11 13:20:53.647281+00 f t 2025-06-25 10:30:00 COMPLETED clinical 0.00 0.00 0.00 2025-06-25 13:30:00+00 114686965100 2547 2277 1026 68 i2hesu0981r1j74ud1egditl08 \N \N +795 2025-03-09 20:58:11.735433+00 2025-03-09 20:58:11.735445+00 f t 2025-03-10 18:30:00 NO_REPORT clinical bola cerca de una de las bolsas primordiales. 38500.00 8500.00 30000.00 2025-03-10 21:30:00+00 104556481236 550 647 114 70 klsfbufecpfr8nov63kupvp3ho \N \N +3151 2025-11-05 19:54:27.006715+00 2025-11-05 19:54:27.006725+00 f t 2025-11-07 12:00:00 COMPLETED clinical extraccion de sangre por pcr vif / vilef 0.00 0.00 0.00 2025-11-07 15:00:00+00 132627912526 12446 10278 1208 100 ul861fj1872joisotj047tjog0 \N 1425 +121 2024-10-30 14:13:09.363+00 2024-10-30 14:13:09.363+00 f t 2024-09-13 09:00:00 NO_REPORT Clinica Gata de 14 años, está muy flaca, con vómitos. Transaccion 87718740148 35000.00 15000.00 20000.00 2024-09-13 12:00:00+00 110 115 114 1 \N \N \N +810 2025-03-11 23:56:11.39855+00 2025-03-11 23:56:11.398559+00 t t 2025-03-10 21:30:00 NO_REPORT clinical Revisión de resultados 250000.00 25000.00 16000.00 2025-03-11 00:30:00+00 104751729965 503 595 113 89 g2udi2dh9up2ifjlvoma2buis4 \N \N +775 2025-03-05 23:32:01.159262+00 2025-03-05 23:32:01.159269+00 f t 2025-03-05 20:00:00 COMPLETED clinical Intoxicación con desparasitador 46000.00 46000.00 36500.00 2025-03-05 23:00:00+00 103820486769 270 318 111 68 stqal134f0f33ushfakjlttj68 \N \N +1865 2025-07-24 13:07:37.411828+00 2025-07-24 13:07:37.411837+00 f t 2025-07-24 13:00:00 COMPLETED clinical Eutanasia 131500.00 26500.00 105000.00 2025-07-24 16:00:00+00 119718956236 5157 4250 1026 88 rupjivjoa0739sjis1fibtn1rc 552 \N +589 2025-02-05 14:53:39.000634+00 2025-02-05 14:53:39.000664+00 f t 2025-02-05 16:00:00 COMPLETED clinical consulta clínica chequeo Abonarla a ordonñez la consulta + bravecto que es 35500 35000.00 7000.00 28000.00 2025-02-05 19:00:00+00 101296650658 417 496 114 68 4nbjoa9fjuc04dvlcfbs5ab2f4 \N \N +1158 2025-05-13 13:45:00.021718+00 2025-05-13 13:45:00.021727+00 f t 2025-05-17 10:30:00 COMPLETED vaccination 111082920721\r\n11997571225\r\nComprobantes de transferencia 66000.00 17000.00 49000.00 2025-05-17 13:30:00+00 \N 745 869 112 80 gg5d7nq5pa5jt8eojg9ctg7uj4 \N \N +739 2025-02-27 18:49:48.792263+00 2025-02-27 18:49:48.792272+00 f t 2025-02-28 10:00:00 NO_REPORT clinical vacunacion anual gato adulto, y consulta clinica gato adoptado adulto abonado en el otro turno 0.00 0.00 0.00 2025-02-28 13:00:00+00 \N 513 606 111 70 do9n4glmijql74fijpq903c2fk \N \N +1972 2025-08-02 18:29:53.691116+00 2025-08-02 18:29:53.691165+00 f t 2025-08-05 20:00:00 COMPLETED clinical descatar que tenga otitis bacteriana gabapentina 42000.00 9500.00 32500.00 2025-08-05 23:00:00+00 120258457587 5772 4724 1208 80 l0fog5cvpc8ugs3scjac7v3iqo 430 \N +669 2025-02-17 15:58:05.753416+00 2025-02-17 15:58:05.753423+00 f t 2025-02-17 19:00:00 NO_REPORT clinical perro adulto con un huevo en una oreja del lado de adentro y le molesta mucho 41600.00 8600.00 33000.00 2025-02-17 22:00:00+00 102239867025 462 548 111 70 r2jf3mjaq0d7nilh284q6ucel4 \N \N +1221 2025-05-19 16:48:27.935788+00 2025-05-19 16:48:27.935795+00 f t 2025-05-20 08:00:00 COMPLETED vaccination 0.00 0.00 0.00 2025-05-20 11:00:00+00 111599171785 1275 1303 112 70 9otffoehithke3fi3qorkpgkfk \N \N +2443 2025-09-10 15:24:32.236211+00 2025-09-10 15:24:32.236219+00 f t 2025-09-10 16:00:00 COMPLETED telemedicina revision de estudios 19.500 al vete. Tiene desc. de recompra 27000.00 27000.00 19500.00 2025-09-10 19:00:00+00 \N 6869 5610 1208 68 n9p9dc0c8q0untifaaie5vt4j8 82 \N +570 2025-02-03 17:08:59.801048+00 2025-02-03 17:08:59.801057+00 f t 2025-02-07 19:00:00 CANCELLED vaccination vacunacion anual x 3. perros adultos 161600.00 60600.00 101000.00 2025-02-07 22:00:00+00 \N 407 484 111 70 \N \N \N +517 2025-01-29 23:34:51.207679+00 2025-01-29 23:34:51.207687+00 f t 2025-01-30 09:00:00 NO_REPORT clinical Lesion en las patas traseras 41600.00 8600.00 33000.00 2025-01-30 12:00:00+00 250129154125 382 453 113 74 7igqsq4ql0d6b2fsi7hkb7puok \N \N +783 2025-03-06 23:30:25.853015+00 2025-03-06 23:30:25.853026+00 f t 2025-03-06 21:30:00 COMPLETED clinical Vacunación anual 0.00 0.00 0.00 2025-03-07 00:30:00+00 0 542 639 113 89 9ag65jhj8djck3336rgo5popks \N \N +653 2025-02-14 23:23:02.527968+00 2025-02-14 23:23:02.527982+00 f t 2025-02-15 14:30:00 NO_REPORT clinical Lesion en la piel tiene, como granitos 41600.00 8600.00 33000.00 2025-02-15 17:30:00+00 1221476969 451 534 113 88 3bm2q5v1ttg49prnqrv004q9jk \N \N +559 2025-02-02 20:49:13.982162+00 2025-02-02 20:49:13.982168+00 f t 2025-02-02 13:30:00 COMPLETED vaccination Vacunación anual $45.000 + $40.000(adicionales por la distancia) 100750.00 15750.00 85000.00 2025-02-02 16:30:00+00 100722374317 404 478 114 21 9l1uv89oan7326ecfua0i4bbjg \N \N +330 2024-12-09 19:38:04.103+00 2024-12-09 19:38:04.103+00 f t 2024-09-23 19:30:00 NO_REPORT vaccination Vacunación anual Abonó ambas vacunaciones en transacción 88532846778 0.00 0.00 0.00 2024-09-23 22:30:00+00 124 286 114 1 1rv3elj6l4ial3s7r7jo16bk8o \N \N +1860 2025-07-23 18:00:45.500107+00 2025-07-23 18:00:45.500116+00 f t 2025-07-23 18:30:00 NO_REPORT clinical Corte de garras 30700.00 7700.00 23000.00 2025-07-23 21:30:00+00 119124335881 139 146 1026 85 6hr3e5f78phsqeq8okpmu7ud04 556 \N +730 2025-02-26 16:37:39.305881+00 2025-02-26 16:37:39.305891+00 f t 2025-02-26 16:00:00 NO_REPORT clinical Ecografía abdominal 52000.00 12000.00 40000.00 2025-02-26 19:00:00+00 1250708595 505 597 114 90 1qqoe9gekaihegeie5jjeslkrc \N \N +679 2025-02-18 20:38:33.873441+00 2025-02-18 20:38:33.873449+00 f t 2025-02-19 16:30:00 COMPLETED vaccination vacunación anual y desparasitación 84110.00 21310.00 62800.00 2025-02-19 19:30:00+00 102740209190 469 556 111 89 d4qsvlj6uisjvit3obfd0raqe8 \N \N +609 2025-02-08 22:04:13.840861+00 2025-02-08 22:04:13.840868+00 f t 2025-02-09 09:30:00 COMPLETED clinical Consulta clínica por fiebre y decaimiento 41600.00 8600.00 33000.00 2025-02-09 12:30:00+00 101366197629 431 511 114 70 2euvp7d5imitbkttief6ekaals \N \N +629 2025-02-11 17:21:14.907735+00 2025-02-11 17:21:14.907746+00 f t 2025-02-11 19:00:00 COMPLETED clinical Eutanasia 116600.00 23600.00 93000.00 2025-02-11 22:00:00+00 101625474715 440 520 114 68 jta2qrevq6376s6rct7lke20fg \N \N +1377 2025-06-04 22:25:33.827317+00 2025-06-04 22:25:33.827325+00 f t 2025-06-05 08:30:00 COMPLETED clinical Hormonas Tiroideas\r\nTSH (Quimioluminiscencia) → $35.000\r\nT4 Libre → $8.000\r\nT4 Total → $8.000\r\nUremia y Creatinina -> $3.000\r\nHepatograma (GOT, GPT, FAS, PT, Alb, Bili, Col, Glob) -> $8.900 137800.00 137800.00 0.00 2025-06-05 11:30:00+00 1519565370 1735 1652 114 86 4qjmfn8e47jkvsheua1t9a16c0 934 \N +460 2025-01-22 14:57:35.516509+00 2025-01-22 14:57:35.516516+00 t t 2025-01-22 21:00:00 PENDING clinical Problema con patita Esto es privado 0.00 0.00 10.00 2025-01-23 00:00:00+00 0 346 246 110 76 \N \N \N +2953 2025-10-20 19:35:01.962359+00 2025-10-20 19:35:01.962372+00 f t 2025-10-22 10:00:00 COMPLETED clinical Consulta post estudios. 30000.00 30000.00 19500.00 2025-10-22 13:00:00+00 130644821828 9310 7733 1583 92 mn43slmhf5bdl16u3b72sbg6rs \N 1122 +921 2025-03-31 23:46:10.027638+00 2025-03-31 23:46:10.027647+00 f t 2025-03-31 20:00:00 NO_REPORT clinical Eco abdominal 52000.00 12000.00 40000.00 2025-03-31 23:00:00+00 106470000967 626 736 113 90 5k7a4e0uspojivbp9876n9n22o \N \N +571 2025-02-03 17:09:12.938559+00 2025-02-03 17:09:12.938567+00 t t 2025-02-07 19:00:00 PENDING vaccination vacunacion anual x 3. perros adultos 161600.00 60600.00 101000.00 2025-02-07 22:00:00+00 101189475654 407 485 111 70 689d4n84bkslaqg09apkum22t8 \N \N +3342 2025-11-20 15:10:27.767511+00 2025-11-20 15:10:27.767522+00 f t 2025-11-26 17:00:00 PENDING clinical Consulta general 46000.00 11000.00 35000.00 2025-11-26 20:00:00+00 XJ8G7V95DE5JE1PR9EMPYR 13809 11390 1583 68 tk7nfej95ah95ucmog7mvepkg4 \N 1680 +654 2025-02-14 23:26:17.87217+00 2025-02-14 23:26:17.872178+00 f t 2025-02-15 16:30:00 NO_REPORT clinical Perdida de peso, cambios en la alimentacio 41600.00 8600.00 33000.00 2025-02-15 19:30:00+00 101993253993 452 535 113 88 94c9lab84gri6bcvq3qg0op358 \N \N +720 2025-02-25 19:53:14.688822+00 2025-02-25 19:53:14.68883+00 f t 2025-04-11 08:30:00 COMPLETED vaccination Vacunación de la antirrábica 0.00 0.00 0.00 2025-04-11 11:30:00+00 0 492 581 114 80 g8tn9p5jnuceup7qovmhrll5co \N \N +1229 2025-05-20 14:29:28.585368+00 2025-05-20 14:29:28.585376+00 f t 2025-05-22 18:30:00 CANCELLED clinical devolución 112579433934 \r\ndoc solicita cambio de horario y no acepta 0.00 0.00 0.00 2025-05-22 21:30:00+00 112225536950 1316 1328 112 70 g96bhf96rmsamu785ol2cgsi4o \N \N +509 2025-01-28 23:43:57.494704+00 2025-01-28 23:43:57.494711+00 t t 2025-01-28 20:00:00 NO_REPORT clinical Lesion en genitales, posible bichera 41600.00 8600.00 33000.00 2025-01-28 23:00:00+00 100284366137 380 450 113 70 \N \N \N +60 2024-10-30 14:13:08.833+00 2024-10-30 14:13:08.833+00 f t 2024-08-05 16:00:00 NO_REPORT Vacunación x 4 animales Vacunación 3 gatitos solo triple y perro sextuple y antirrabica + corte de uñas Transaccion 84095959125 Cliente pagó 50% transferencia y 50% efectivo 140000.00 70000.00 110000.00 2024-08-05 19:00:00+00 59 60 \N 1 ft0j7edcgv1t5qvn3ob8853tgk \N \N +682 2025-02-19 18:20:07.142983+00 2025-02-19 18:20:07.14299+00 t t 2025-02-22 10:00:00 PENDING clinical Consulta clinica 41600.00 8600.00 33000.00 2025-02-22 13:00:00+00 102437271821 432 512 111 80 2fqctvl2h8hoc6qf8ucoitssq8 \N \N +670 2025-02-17 16:54:26.966132+00 2025-02-17 16:54:26.96614+00 f t 2025-02-17 20:30:00 NO_REPORT clinical Chequeo de glandulas inflamadas 41600.00 8600.00 33000.00 2025-02-17 23:30:00+00 102249834711 410 489 111 70 htrobbrss7ui1j4urkkclpo3l4 \N \N +642 2025-02-12 21:23:17.494036+00 2025-02-12 21:23:17.494044+00 f t 2025-02-13 19:00:00 NO_REPORT clinical Drenajes de saco+vacunacion con antirrabica+ cortes de garra 57200.00 15200.00 42000.00 2025-02-13 22:00:00+00 102128366056 442 524 113 2 l856kg618lc4c85ffj41f01np0 \N \N +752 2025-03-02 21:33:30.000718+00 2025-03-02 21:33:30.000727+00 f t 2025-03-02 17:00:00 COMPLETED clinical Problemas para apoyar la pata no funciona el timbre golpear la puerta o llamar por celular 46000.00 9500.00 36500.00 2025-03-02 20:00:00+00 \N 524 619 114 80 l6bp8pnfpvf4ie704fueltddks \N \N +764 2025-03-04 21:25:59.132288+00 2025-03-04 21:25:59.132298+00 f t 2025-03-03 17:30:00 NO_REPORT clinical Vomitos y paracitos internos Aquí se encuentra el monto total de la consulta 82800.00 13450.00 69350.00 2025-03-03 20:30:00+00 \N 534 629 114 88 79klfaoq15l7j4dkenuk6jl9j8 \N \N +801 2025-03-10 23:48:17.379884+00 2025-03-10 23:48:17.379893+00 f t 2025-03-10 16:30:00 COMPLETED clinical urgencia decaimiento y problemas al caminar 46000.00 9500.00 36500.00 2025-03-10 19:30:00+00 36547730452 555 652 113 88 u4rvsjnulaohgcroaane3m2er0 \N \N +518 2025-01-29 23:40:37.737534+00 2025-01-29 23:40:37.737541+00 f t 2025-02-04 13:30:00 COMPLETED clinical Vacunación anual 60750.00 15750.00 45000.00 2025-02-04 16:30:00+00 100378953277 383 454 113 68 \N \N \N +828 2025-03-17 15:35:12.233283+00 2025-03-17 15:35:12.23329+00 f t 2025-03-17 13:30:00 COMPLETED clinical Consulta clinica + corte garras 53000.00 11500.00 41500.00 2025-03-17 16:30:00+00 105470219642 533 628 111 1 p3bun9ovov6vtrnt4c3vpi6a84 \N \N +731 2025-02-26 17:31:35.155893+00 2025-02-26 17:31:35.1559+00 f t 2025-02-25 21:30:00 NO_REPORT clinical Retiro de Via 41600.00 8600.00 33000.00 2025-02-26 00:30:00+00 103461907768 506 598 111 70 r9sreihj6mitqjs3948p93j5bg \N \N +796 2025-03-09 21:36:54.169257+00 2025-03-09 21:36:54.169266+00 f t 2025-03-09 20:30:00 NO_REPORT clinical Irritación al orinar 46500.00 9500.00 36500.00 2025-03-09 23:30:00+00 RD06ZO9W14RW8JM525GP7X 551 648 114 70 nlg622pjeam6vea3nsej7l677o \N \N +693 2025-02-21 12:26:36.580861+00 2025-02-21 12:26:36.58087+00 f t 2025-02-25 13:00:00 NO_REPORT clinical ecografia abdominal 52000.00 12000.00 40000.00 2025-02-25 16:00:00+00 102469827467 473 561 111 90 fhkvsdt17qs1g8sh54ascik9dc \N \N +87 2024-10-30 14:13:09.039+00 2024-10-30 14:13:09.039+00 f t 2024-08-27 09:00:00 NO_REPORT Clinica Consulta clínica genral para perrito. Transaccion 86230230726 Cliente abonó 100% 35000.00 35000.00 20000.00 2024-08-27 12:00:00+00 83 85 \N 1 \N \N \N +1896 2025-07-27 17:44:30.130168+00 2025-07-27 17:44:30.130178+00 f t 2025-07-27 17:00:00 COMPLETED clinical dolor de oidos 50000.00 10000.00 40000.00 2025-07-27 20:00:00+00 11955300193 5342 4386 1208 68 4tkom92inhhefra59ldudh3pfo 521 \N +534 2025-01-30 23:41:27.063881+00 2025-01-30 23:41:27.063888+00 f t 2025-02-02 11:30:00 COMPLETED vaccination Vacunacion anual 60750.00 15750.00 45000.00 2025-02-02 14:30:00+00 100844883140 390 464 113 80 \N \N \N +590 2025-02-05 18:03:15.31911+00 2025-02-05 18:03:15.319117+00 f t 2025-02-05 15:00:00 COMPLETED telemedicina Chequeo de resultados de analisis 21600.00 21600.00 15000.00 2025-02-05 18:00:00+00 101380933556 413 492 114 1 odojt6r5e9ob66ngiodv6ibifs \N \N +860 2025-03-21 00:04:24.358437+00 2025-03-21 00:04:24.358447+00 f t 2025-03-22 08:30:00 NO_REPORT clinical Rayos 65000.00 15000.00 50000.00 2025-03-22 11:30:00+00 105407062781 578 676 113 84 0c4b4rongh4ncu64n1nuiolunk \N \N +818 2025-03-13 21:41:55.160701+00 2025-03-13 21:41:55.160711+00 f t 2025-03-13 16:30:00 COMPLETED clinical urgencia decaimiento y no quiere comer, presenta delgadez 46000.00 9500.00 36500.00 2025-03-13 19:30:00+00 \N 565 662 113 1 ou9e08un5hkbgn8rlntomvc7mk \N \N +2043 2025-08-10 18:23:19.151618+00 2025-08-10 18:23:19.151627+00 f t 2025-08-10 13:00:00 NO_REPORT clinical 23250.00 23250.00 0.00 2025-08-10 16:00:00+00 121239246735 1734 1651 1208 95 cgl96g9i1k72i1furlppmkvvqs 395 \N +560 2025-02-02 20:56:16.478338+00 2025-02-02 20:56:16.478345+00 f t 2025-02-06 11:00:00 COMPLETED vaccination 1 Desparasitación + vacunación Aquí se puso el monto total a pagar de toda la consulta 271980.00 56805.00 215175.00 2025-02-06 14:00:00+00 101022379700 405 479 114 1 m5omj8if7squomnolort0pchfk \N \N +776 2025-03-05 23:55:18.954051+00 2025-03-05 23:55:18.954059+00 f t 2025-03-06 17:00:00 NO_REPORT clinical Rayos Le dieron inyectable un analgesico y un antiespasmodico y esta tomando cefalexina 500 cada 12 y tramadol cada 8\r\nEs tranquila 65000.00 15000.00 50000.00 2025-03-06 20:00:00+00 103794156031 526 621 110 84 7kictoqpo1fgmpecmqdb5mqge4 \N \N +706 2025-02-23 22:38:22.180172+00 2025-02-23 22:38:22.180182+00 f t 2025-02-28 13:00:00 COMPLETED clinical Hinchazón y lastimadura 35000.00 7000.00 28000.00 2025-02-28 16:00:00+00 103259070318 488 577 111 68 vpd87otc0v9ct8jcr2krfmi1uo \N \N +461 2025-01-22 15:10:53.143557+00 2025-01-22 15:10:53.143568+00 t t 2025-01-24 08:00:00 PENDING clinical 1010101.00 111.00 111.00 2025-01-24 11:00:00+00 123 346 246 110 76 \N \N \N +510 2025-01-28 23:45:26.802904+00 2025-01-28 23:45:26.802912+00 f t 2025-01-29 20:00:00 COMPLETED clinical Control por dx de bichera 35000.00 7000.00 28000.00 2025-01-29 23:00:00+00 100292157841 380 450 113 70 \N \N \N +561 2025-02-02 20:56:19.22766+00 2025-02-02 20:56:19.227667+00 t t 2025-02-06 11:00:00 NO_REPORT vaccination 1 Desparasitación + 4 vacunaciones 271980.00 56805.00 215175.00 2025-02-06 14:00:00+00 101022379700 405 479 114 1 btpfjifsdv5iv4cg7i5hamh66s \N \N +2484 2025-09-14 18:53:09.675509+00 2025-09-14 18:53:09.675521+00 t t 2025-09-12 20:00:00 COMPLETED clinical Ecografía Abdominal 0.00 0.00 0.00 2025-09-12 23:00:00+00 0 6033 4926 114 68 t9cdhp427jgffhbmnisve8h4i8 \N \N +797 2025-03-09 21:44:06.617085+00 2025-03-09 21:44:06.617092+00 f t 2025-03-09 17:00:00 COMPLETED clinical Urgencia por vomitos y problemas para ingerir alimento desde hace 3 días 46000.00 9500.00 36500.00 2025-03-09 20:00:00+00 10097166010250309 552 649 114 88 94883gon0vju3tq55shpe69hu4 \N \N +564 2025-02-03 12:15:23.811742+00 2025-02-03 12:15:23.811751+00 t t 2025-02-03 16:00:00 NO_REPORT clinical Medición de la presión y aplicación de ringerlactato Se puso el monto total al igual que la seña completa de los tres turnos 56400.00 12000.00 14800.00 2025-02-03 19:00:00+00 100627016295 406 483 114 66 i5qqsugs59ueaid74jete19keg \N \N +802 2025-03-10 23:55:13.870864+00 2025-03-10 23:55:13.870871+00 f t 2025-03-11 15:00:00 COMPLETED clinical Chequeo de rutina por bajo de peso e hincazón 38500.00 8500.00 30000.00 2025-03-11 18:00:00+00 36548376681 556 653 113 88 5t65n95lb0pfdli9esfpug0ubg \N \N +861 2025-03-21 14:21:01.51394+00 2025-03-21 14:21:01.513947+00 f t 2025-03-21 12:30:00 COMPLETED clinical perra está tirada no quiere comer ni tomar agua, ayer vomito y hoy hizo caca como una gelatina marron sanguíneo 46000.00 9500.00 36500.00 2025-03-21 15:30:00+00 105902018212 589 690 111 1 9i8jccrmoldsu9cr9tc57mpgn0 \N \N +3328 2025-11-19 17:34:26.660937+00 2025-11-19 17:34:26.660949+00 t t 2025-12-03 14:00:00 PENDING clinical vacunacion anual. 78000.00 21500.00 56500.00 2025-12-03 17:00:00+00 70085828010251119 10880 9030 1208 74 dcer0s5lvrl84um3r3vuonv2k8 \N 1674 +753 2025-03-02 21:49:39.620934+00 2025-03-02 21:49:39.620945+00 f t 2025-03-02 16:00:00 COMPLETED clinical Erupciones y lastimaduras en la piel 46000.00 9500.00 36500.00 2025-03-02 19:00:00+00 77607524 525 620 114 80 76o77ln7vodhnpn006gnhof3q8 \N \N +683 2025-02-19 18:24:21.496421+00 2025-02-19 18:24:21.496428+00 f t 2025-02-20 17:00:00 NO_REPORT clinical Control 35000.00 7000.00 28000.00 2025-02-20 20:00:00+00 102842782342 370 435 111 77 66j4pe4t99tqt3fcau92ch4f5g \N \N +694 2025-02-21 12:37:36.026008+00 2025-02-21 12:37:36.026017+00 f t 2025-02-25 10:00:00 NO_REPORT clinical Colocacion de via 25000.00 6000.00 19000.00 2025-02-25 13:00:00+00 102567693095 479 567 111 66 e7rbi9b0d67i5rtgt8gq6dpbjo \N \N +829 2025-03-17 20:44:49.277397+00 2025-03-17 20:44:49.277408+00 f t 2025-03-16 16:30:00 COMPLETED clinical urgencia por problemas de retención de orina y al caminar 45000.00 9500.00 36500.00 2025-03-16 19:30:00+00 \N 574 672 111 1 6538nnnq2n1ra4pavntpc78tfk \N \N +499 2025-01-28 01:59:18.260628+00 2025-01-28 01:59:18.260635+00 f t 2025-01-30 16:00:00 COMPLETED telemedicina Control del tratamiento Día 1: Meloxivet 20 gotas (por vía oral con jeringa; se puede dar todo junto). Ranitidina 36 gotas.\r\nDía 2: Meloxivet 10 gotas (a las 24 horas). Ranitidina 36 gotas.\r\nDía 3: Meloxivet 5 gotas. Ranitidina 36 gotas.\r\nNota adicional: "Siempre con estómago lleno." 24000.00 24000.00 15000.00 2025-01-30 19:00:00+00 \N 372 437 110 77 cf99v454nqmovjd2htr7p7t8lg \N \N +643 2025-02-12 21:41:56.631134+00 2025-02-12 21:41:56.631142+00 f t 2025-02-20 19:00:00 NO_REPORT vaccination Vacunacion anual para dos px 109350.00 23850.00 85500.00 2025-02-20 22:00:00+00 102119314201 443 525 113 2 oj5fb7t7v113lnmo7lgi1l82b8 \N \N +707 2025-02-23 22:41:55.137342+00 2025-02-23 22:41:55.137351+00 f t 2025-02-23 18:30:00 NO_REPORT clinical Lesión sangrante detrás de la oreja 41600.00 8600.00 33000.00 2025-02-23 21:30:00+00 103246024740 37 37 114 88 es55d6cl4le7rgouhbk5hijh5s \N \N +623 2025-02-10 16:10:01.044233+00 2025-02-10 16:10:01.04424+00 f t 2025-01-29 18:00:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-01-29 21:00:00+00 \N 377 445 114 70 t2o0godch707vvppvhc2skhqf0 \N \N +655 2025-02-14 23:28:51.541807+00 2025-02-14 23:28:51.541813+00 f t 2025-02-15 15:00:00 NO_REPORT clinical Lesion inflamatoria en la oreja, edema 41600.00 8600.00 33000.00 2025-02-15 18:00:00+00 1221756854 453 536 113 70 fc27f28c8sbt7g6sft42jvi2d4 \N \N +535 2025-01-31 13:46:16.65295+00 2025-01-31 13:46:16.652961+00 f t 2025-01-30 21:00:00 NO_REPORT clinical Malestar general 41600.00 8600.00 33000.00 2025-01-31 00:00:00+00 100857839272 391 465 111 1 m8tf4a0ue9gk9hrsrfjmsokcag \N \N +741 2025-02-27 23:20:46.706497+00 2025-02-27 23:20:46.706504+00 f t 2025-02-27 19:00:00 COMPLETED clinical Vomitos y deshidratacion 41600.00 8600.00 33000.00 2025-02-27 22:00:00+00 103642741354 515 608 113 78 iheml0oknggdm5uic5i9jtlm70 \N \N +2191 2025-08-21 23:16:37.422392+00 2025-08-21 23:16:37.422401+00 f t 2025-08-28 12:00:00 COMPLETED clinical Ecografía abdominal 78000.00 13000.00 65000.00 2025-08-28 15:00:00+00 123212376238 6869 5610 114 103 nsruue0glhb680u0c0sas30j7s 216 \N +824 2025-03-14 15:45:24.077592+00 2025-03-14 15:45:24.077602+00 f t 2025-03-19 15:00:00 COMPLETED vaccination vacunacion anual 66000.00 17000.00 49000.00 2025-03-19 18:00:00+00 104766413395 570 668 111 1 3rav423aten56unbg70ai4s100 \N \N +648 2025-02-13 22:23:10.944802+00 2025-02-13 22:23:10.944809+00 f t 2025-02-13 19:30:00 NO_REPORT clinical Dolor en patas trasera, dificultad en al movilidad 41600.00 8600.00 33000.00 2025-02-13 22:30:00+00 101873601317 447 530 113 70 lh96vgjhtforev8f5qfh9ip358 \N \N +611 2025-02-09 22:14:53.869887+00 2025-02-09 22:14:53.869895+00 f t 2025-02-10 18:30:00 COMPLETED clinical consulta clínica por desprendimiento de pelaje en las patas Se le cae el pelo como una alopecia no alérgica ni pica 35000.00 7000.00 28000.00 2025-02-10 21:30:00+00 36231423122 433 513 114 70 aj00iq8v07umeh73cddndn8vpc \N \N +732 2025-02-26 20:55:36.386952+00 2025-02-26 20:55:36.38696+00 f t 2025-03-13 15:00:00 COMPLETED vaccination Vacunacion anual 60750.00 15750.00 45000.00 2025-03-13 18:00:00+00 \N 507 599 111 91 btm7p8cmf57bjokm63fpgfb434 \N \N +785 2025-03-07 16:00:54.421095+00 2025-03-07 16:00:54.421105+00 f t 2025-03-04 20:00:00 NO_REPORT clinical sospecha de resfrío y babeo leve 38500.00 8500.00 36500.00 2025-03-04 23:00:00+00 \N 543 640 111 70 hrnjl00ahe1jih1gki748965r0 \N \N +176 2024-10-30 14:13:09.865+00 2024-10-30 14:13:09.865+00 f t 2024-10-10 16:00:00 COMPLETED Clinica Mi gatito tiene en su ojito algo (creo una pelusa) y lo tiene cerrado hace 1 día + desparasitación 2 gatos Transaccion 89851611161 Nos queda una diferencia $12.800 a favor, la dejamos para una proxima consulta si te parece. De los $77.800 - $ 65.000 (consulta + Desparasitación). 96400.00 18600.00 65000.00 2024-10-10 19:00:00+00 153 162 114 6 pqiadbalbk9jteaurui1tmrnqs \N \N +819 2025-03-13 23:45:35.4653+00 2025-03-13 23:45:35.46531+00 f t 2025-03-13 16:30:00 NO_REPORT clinical urgencia por vómitos continuos y temblores 46000.00 9500.00 36500.00 2025-03-13 19:30:00+00 105095145166 566 663 113 2 u1kr40tosqi4uaue0h3lsgl7jg \N \N +671 2025-02-18 13:07:02.3046+00 2025-02-18 13:07:02.304612+00 f t 2025-02-18 11:00:00 NO_REPORT clinical Control clinico y tratamiento( Se adjuntas estudios complementarios y tratamiento anterior) 35000.00 7000.00 28000.00 2025-02-18 14:00:00+00 102646529830 463 549 111 74 pjntt7n9n99thdk1d108g4mkfo \N \N +228 2024-11-12 19:59:19.406+00 2024-11-12 19:59:19.406+00 f t 2024-11-16 10:00:00 COMPLETED clinical Control Transacción 931816665554 41600.00 15600.00 26000.00 2024-11-16 13:00:00+00 192 203 114 70 bc81uvorm6bs07k4ucu5q3vv7g \N \N +631 2025-02-11 17:55:44.049176+00 2025-02-11 17:55:44.049185+00 f t 2025-02-06 11:00:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-02-06 14:00:00+00 0 405 481 114 1 4lito93pjlsj0gvnmeuilptbe4 \N \N +786 2025-03-07 16:12:15.100126+00 2025-03-07 16:12:15.100137+00 f t 2025-03-07 19:00:00 COMPLETED clinical Control y seguimiento de tratamiento, chequeo de resultados serv con descuento 10% x recompra 41400.00 4900.00 36500.00 2025-03-07 22:00:00+00 104415312692 410 489 111 88 qigcrmnbb74qtrqhukatbc2tss \N \N +672 2025-02-18 14:31:37.322695+00 2025-02-18 14:31:37.322704+00 f t 2025-02-18 10:00:00 COMPLETED vaccination Vacunacion para dos pacientes de 3 meses (Gatos) 99630.00 21730.00 77900.00 2025-02-18 13:00:00+00 \N 464 551 111 78 850el4947bj6kd3rv2gpu31rm0 \N \N +155 2024-10-30 14:13:09.686+00 2024-10-30 14:13:09.686+00 f t 2024-10-01 18:00:00 COMPLETED Eutanasia (minimo) Eutanasia Transacción 89040691997 cliente luego de abonar seña quiso agregar el servicio de cremación, y abono el monto faltante total al veterinario generando que el vete reciba un monto mayor a sus honorarios por todo el servicio. No le solicite que realice otra seña ya que el vete se estaba dirigiendo a su domicilio, y no generar que realice 3 transferencias ya que al veterinario le transferiría también. 170000.00 20000.00 110000.00 2024-10-01 21:00:00+00 137 144 114 2 \N \N \N +1695 2025-07-08 14:10:21.15645+00 2025-07-08 14:10:21.156459+00 f t 2025-07-08 17:30:00 COMPLETED clinical Presenta secuelas post síndrome vestibular ocurrido hace ya 2 o 3 años. En este momento Lula ya no controla esfinteres y se vive haciendo sus necesidades encima o en cualquier parte y está como perdida. Ella ya tiene mas de 20 años. De apetito esta bien. Osea la consulta es mas que nada para saber si hay que seguir así o ya no es una vida digna para ella. 50000.00 10000.00 40000.00 2025-07-08 20:30:00+00 81568676 4163 3470 1026 88 5fjenb73t7b731ik8vcgmjocos 687 \N +591 2025-02-05 19:40:55.764342+00 2025-02-05 19:40:55.764348+00 f t 2025-02-07 20:00:00 NO_REPORT telemedicina chequeo de resultados de analisis 21600.00 21600.00 15000.00 2025-02-07 23:00:00+00 101023264247 410 489 111 70 drfq0lunl5ec6d3jakk9trivb8 \N \N +536 2025-01-31 15:07:17.569324+00 2025-01-31 15:07:17.569352+00 f t 2025-01-31 12:30:00 COMPLETED clinical Retiro de via 41600.00 8600.00 33000.00 2025-01-31 15:30:00+00 100910282088 364 429 111 70 \N \N \N +733 2025-02-26 23:21:24.603296+00 2025-02-26 23:21:24.603306+00 f t 2025-02-26 19:30:00 NO_REPORT clinical Ecografia abdominal 52000.00 12000.00 40000.00 2025-02-26 22:30:00+00 JMQKYZ9QOGOO1G5R2V50P3 508 600 113 90 3mpfl66uk1c1dj6divrfk1o0s0 \N \N +644 2025-02-12 21:42:41.062961+00 2025-02-12 21:42:41.062973+00 f t 2025-02-20 19:00:00 NO_REPORT vaccination Vacunación anual para dos mascotas Se adjunto el monto en el primer turno 0.00 0.00 0.00 2025-02-20 22:00:00+00 0 443 526 113 2 5h54fuh5n2fancv17gjo6soo7o \N \N +1916 2025-07-29 13:49:48.383983+00 2025-07-29 13:49:48.383991+00 f t 2025-07-29 19:00:00 COMPLETED clinical decaimiento y problemas de huesos 50000.00 10000.00 40000.00 2025-07-29 22:00:00+00 119745213985 5446 4468 1026 70 qvqgjvi6b8tbtona9hih0m7j3s 500 \N +624 2025-02-10 16:55:28.769628+00 2025-02-10 16:55:28.77157+00 f t 2025-02-03 10:00:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-02-03 13:00:00+00 \N 386 460 114 78 vlp6gbbr1jpe2gnhm0qsu1u5r8 \N \N +823 2025-03-14 15:24:27.114997+00 2025-03-14 15:24:27.115006+00 f t 2025-03-18 16:30:00 COMPLETED vaccination vacunación anual perro 66000.00 17000.00 49000.00 2025-03-18 19:30:00+00 \N 569 667 111 89 qsr4tap6hft8ujp20rcqcmqm8s \N \N +2259 2025-08-26 21:17:44.809457+00 2025-08-26 21:17:44.809468+00 t t 2025-08-27 11:00:00 PENDING clinical Hemograma 0.00 0.00 0.00 2025-08-27 14:00:00+00 0 7038 5756 1583 100 32n7qefe8uavf5ic72lnteg5eg \N \N +820 2025-03-13 23:48:55.945754+00 2025-03-13 23:48:55.945764+00 f t 2025-03-14 15:00:00 COMPLETED clinical Lesión en ojos 38500.00 8500.00 30000.00 2025-03-14 18:00:00+00 105118298800 567 664 113 1 tlpl80pd49k2rgh9simur1ftv0 \N \N +830 2025-03-17 20:52:22.764232+00 2025-03-17 20:52:22.764239+00 f t 2025-03-18 19:30:00 NO_REPORT clinical ECG 95000.00 10000.00 85000.00 2025-03-18 22:30:00+00 105498860664 575 673 111 82 95d7qk6qnhkhgq94gsqfhrn90c \N \N +766 2025-03-04 21:30:52.970165+00 2025-03-04 21:30:52.970175+00 f t 2025-03-03 18:30:00 NO_REPORT clinical Orina con sangre 46000.00 9500.00 36500.00 2025-03-03 21:30:00+00 104030840914 535 631 114 88 lg291gsm0ejl22i0upu035oke8 \N \N +572 2025-02-03 19:39:35.039202+00 2025-02-03 19:39:35.039211+00 f t 2025-02-02 18:00:00 COMPLETED clinical dificultad motriz y problemas de alimentación 41600.00 8600.00 33000.00 2025-02-02 21:00:00+00 \N 408 487 114 70 5k3ukt7g1sblvgfkmc90fjln9o \N \N +1863 2025-07-23 20:31:29.235599+00 2025-07-23 20:31:29.235608+00 f t 2025-07-28 08:00:00 COMPLETED clinical PGC con Orina + traslado 46000.00 46000.00 0.00 2025-07-28 11:00:00+00 119138395631 409 488 113 100 jdgr0gamirkespvffki89tl114 519 \N +777 2025-03-06 15:38:50.070343+00 2025-03-06 15:38:50.070353+00 f t 2025-03-06 10:00:00 NO_REPORT clinical colocacion de via 25000.00 6000.00 19000.00 2025-03-06 13:00:00+00 \N 479 567 111 66 aoqk81a4uehgg6662uu7a1d9uk \N \N +708 2025-02-24 22:57:52.933023+00 2025-02-24 22:57:52.93303+00 f t 2025-02-24 18:00:00 COMPLETED clinical Lastimaduras en la zonas cercanas al ojo, barbilla y lomo 35000.00 7000.00 28000.00 2025-02-24 21:00:00+00 10331967174 489 578 114 70 9hmt66n2pipt8f1u45bm86dokk \N \N +798 2025-03-09 21:45:12.595303+00 2025-03-09 21:45:12.595312+00 f t 2025-03-09 18:30:00 NO_REPORT clinical Ecografía abdominal 62000.00 12000.00 50000.00 2025-03-09 21:30:00+00 30193827007250309 552 649 114 90 2o2cjmj3c829od54gt86aeoepk \N \N +455 2025-01-21 23:54:14.331842+00 2025-01-21 23:54:14.331868+00 f t 2025-01-22 11:00:00 COMPLETED clinical Traslado de muestra :$16.800\r\nExamen de orina x2: 6500x2=13.000\r\nClinica: control para Joaquín Solicite los restante 2800 39600.00 36800.00 53200.00 2025-01-22 14:00:00+00 100006513488 115 132 113 1 8eonou1bbjf0riqm062vm5utdo \N \N +632 2025-02-11 17:56:32.690246+00 2025-02-11 17:56:32.690255+00 f t 2025-02-06 11:00:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-02-06 14:00:00+00 0 405 480 114 1 e71lgdu9lruv8p4gt5j77tuvvg \N \N +462 2025-01-22 17:12:26.699081+00 2025-01-22 17:12:26.69909+00 f t 2025-01-23 16:00:00 COMPLETED vaccination Vacunación para dos pacientes 121500.00 31500.00 900000.00 2025-01-23 19:00:00+00 100006749832 353 415 113 2 \N \N \N +695 2025-02-21 18:12:52.433755+00 2025-02-21 18:12:52.433766+00 f t 2025-02-25 13:00:00 NO_REPORT clinical extracción de sangre 67200.00 48200.00 19000.00 2025-02-25 16:00:00+00 102637293277 452 535 111 85 23rdqu5cgf7paqnq7g9pltrdbo \N \N +612 2025-02-09 22:23:12.795045+00 2025-02-09 22:23:12.795051+00 f t 2025-02-13 18:30:00 CANCELLED clinical consulta clínica por desnutrición y costras a lo largo de la cola Barrio Piedras Buenas 35000.00 7000.00 28000.00 2025-02-13 21:30:00+00 101820972306 434 514 114 70 6riurek16vn35t54akk4h9urmc \N \N +721 2025-02-25 21:11:36.05945+00 2025-02-25 21:11:36.059459+00 f t 2025-02-26 16:00:00 COMPLETED clinical vacunación anual 60750.00 15750.00 45000.00 2025-02-26 19:00:00+00 103022074559 498 589 114 89 u5lhmk14vndfd7fel754gdtork \N \N +562 2025-02-02 21:00:54.381779+00 2025-02-02 21:00:54.381786+00 f t 2025-02-01 09:00:00 COMPLETED clinical consulta clínica + extracción de sangre por vomitos y diarrea 4400 por el descuento de recompra 42400.00 4400.00 38000.00 2025-02-01 12:00:00+00 564097260 387 461 110 70 hu6erfg07kn7rin0atu9bvj4dc \N \N +879 2025-03-24 19:13:32.991927+00 2025-03-24 19:13:32.991957+00 f t 2025-03-22 19:00:00 NO_REPORT clinical Ecografía Abdominal 62000.00 12000.00 50000.00 2025-03-22 22:00:00+00 36684716272 602 704 114 90 idr4ng4eli2ji6hs3hjsmo33uo \N \N +862 2025-03-21 23:07:38.236305+00 2025-03-21 23:07:38.236314+00 f t 2025-03-22 11:00:00 COMPLETED telemedicina Resolución de estudios 25000.00 25000.00 16000.00 2025-03-22 14:00:00+00 105511991795 590 691 113 80 t1gvuorboqok0v4dsfbfji3cjk \N \N +754 2025-03-02 22:03:06.428977+00 2025-03-02 22:03:06.428985+00 f t 2025-03-01 18:30:00 NO_REPORT clinical Ecografia abdominal 52000.00 12000.00 40000.00 2025-03-01 21:30:00+00 103457291945 526 621 114 90 u3bvvufnnkinp8ujgugpldvppc \N \N +1940 2025-07-30 16:27:44.085658+00 2025-07-30 16:27:44.085664+00 f t 2025-07-30 19:00:00 COMPLETED clinical Ecografía abdominal 67000.00 12000.00 55000.00 2025-07-30 22:00:00+00 95957089 5566 4558 1026 90 0v3fos94cg30iqe9hgr4tpf7ek 491 \N +463 2025-01-22 17:12:49.233439+00 2025-01-22 17:12:49.233448+00 t t 2025-01-22 16:00:00 PENDING vaccination Vacunación para dos pacientes 121500.00 31500.00 900000.00 2025-01-22 19:00:00+00 100006749832 353 415 113 2 \N \N \N +831 2025-03-17 23:41:44.496129+00 2025-03-17 23:41:44.496138+00 f t 2025-03-18 18:30:00 COMPLETED vaccination vacunacion anual 66000.00 17000.00 49000.00 2025-03-18 21:30:00+00 105527066114 439 519 114 70 bli8t9a2rv8bqvmias2fnsb6k0 \N \N +563 2025-02-02 21:00:57.748294+00 2025-02-02 21:00:57.748301+00 t t 2025-02-01 08:00:00 NO_REPORT clinical consulta clínica + extracción de sangre por vomitos y diarrea 4400 por el descuento de recompra 42400.00 4400.00 38000.00 2025-02-01 11:00:00+00 56409726 387 461 114 70 8l4giere8m7mjhkuhmdu18utk8 \N \N +709 2025-02-24 23:10:44.697126+00 2025-02-24 23:10:44.697135+00 f t 2025-02-27 19:30:00 NO_REPORT vaccination Vacunación de la Sextuple 55350.00 14350.00 41000.00 2025-02-27 22:30:00+00 103329348260 490 579 114 9 ncc6c6p7dp8aiina5g7irrj6ok \N \N +613 2025-02-09 22:28:49.447577+00 2025-02-09 22:28:49.447585+00 f t 2025-02-09 14:00:00 COMPLETED clinical Consulta clínica por colicos 41600.00 8600.00 33000.00 2025-02-09 17:00:00+00 8D0Q619LO0J61WOL97JZ5R 435 515 114 1 1qfqfh29bud8k04v90hemh86qo \N \N +1959 2025-07-31 22:47:57.800449+00 2025-07-31 22:47:57.80046+00 f t 2025-07-31 20:00:00 COMPLETED clinical hinchazon en su ojo y lagrimeo 50000.00 10000.00 40000.00 2025-07-31 23:00:00+00 1683513141 5662 4635 1208 1 gfd37212ldviagn50fanlm75uo 480 \N +825 2025-03-14 18:37:07.877222+00 2025-03-14 18:37:07.87723+00 f t 2025-03-14 16:00:00 NO_REPORT clinical ecografia abdominal 52000.00 12000.00 40000.00 2025-03-14 19:00:00+00 104793571219 571 669 111 90 79v0gpqv1fm9f51m566ci6putg \N \N +722 2025-02-26 00:01:48.153003+00 2025-02-26 00:01:48.153009+00 f t 2025-02-25 20:00:00 NO_REPORT clinical Vacunacion anual + certifiacion de salud 74750.00 19750.00 55000.00 2025-02-25 23:00:00+00 103039835033 499 590 113 70 aij059rkreb1ad4569fje3a9ec \N \N +673 2025-02-18 14:32:19.263302+00 2025-02-18 14:32:19.263311+00 f t 2025-02-18 10:00:00 COMPLETED vaccination Vacunacion para dos pacientes de 3 meses (Gatos) cargado en el otro gato 99630.00 0.00 0.00 2025-02-18 13:00:00+00 \N 464 550 111 78 rse1fmntmvdmb352ck40p4j0qc \N \N +836 2025-03-18 19:22:58.536497+00 2025-03-18 19:22:58.536507+00 f t 2025-03-20 10:30:00 COMPLETED vaccination vacunacion 2da dosis gato cachorro datos de dinero argados en este turno, en el otro gato nada 107100.00 23500.00 83600.00 2025-03-20 13:30:00+00 \N 464 551 111 78 pqqs1ih4vob874ivd6deab3p70 \N \N +863 2025-03-21 23:18:30.122803+00 2025-03-21 23:18:30.122813+00 f t 2025-03-21 20:00:00 COMPLETED clinical Consumo de pasta dental 46000.00 9500.00 36500.00 2025-03-21 23:00:00+00 10559986385 591 692 113 1 d2a3e802fo27dv48fjgejuiuao \N \N +227 2024-11-12 19:50:53.539+00 2024-11-12 19:50:53.539+00 f t 0024-11-20 18:30:00 COMPLETED clinical Control y Vacunación Transacción 961202611 114400.00 42900.00 71500.00 0024-11-20 22:23:48+00 191 202 114 70 \N \N \N +645 2025-02-13 16:13:15.153885+00 2025-02-13 16:13:15.153891+00 f t 2025-02-18 10:30:00 NO_REPORT telemedicina gato adulto con pera lastimada 24000.00 24000.00 15000.00 2025-02-18 13:30:00+00 102247440890 444 527 113 88 m5hu37ui02v7aevct5flk3qsuk \N \N +767 2025-03-04 21:35:14.248536+00 2025-03-04 21:35:14.248544+00 f t 2025-03-07 18:00:00 COMPLETED clinical vacunación anual 66000.00 17000.00 49000.00 2025-03-07 21:00:00+00 \N 536 632 114 89 8qqsd7uqf1hsa2r5pkrnnjlg7g \N \N +1921 2025-07-29 15:27:52.082754+00 2025-07-29 15:27:52.082761+00 f t 2025-07-30 14:00:00 COMPLETED clinical Hongos pack- visita N° 4 0.00 0.00 0.00 2025-07-30 17:00:00+00 \N 1734 1651 1026 92 4hod9e4pg5ooc4fubbe89i65do \N \N +684 2025-02-19 18:56:50.425523+00 2025-02-19 18:56:50.425532+00 t t 2025-02-22 10:00:00 NO_REPORT clinical Consulta clinica 41600.00 8600.00 33000.00 2025-02-22 13:00:00+00 \N 432 559 113 80 sfipuhuh3693j1jo33vk5151c0 \N \N +592 2025-02-05 20:11:54.813083+00 2025-02-05 20:11:54.813092+00 f t 2025-02-05 20:00:00 COMPLETED clinical Rengueo de pata trasera 41600.00 8600.00 33000.00 2025-02-05 23:00:00+00 5079570121 419 499 114 70 seaqj027prsg6jba2jme08710g \N \N +2485 2025-09-14 19:01:10.858881+00 2025-09-14 19:01:10.858888+00 f t 2025-09-15 17:00:00 COMPLETED clinical Ecografía Abdominal 78000.00 13000.00 65000.00 2025-09-15 20:00:00+00 50019782011250914 8638 7126 114 90 olmrcc8r53doqefap7e774u3u0 48 \N +821 2025-03-13 23:54:15.882281+00 2025-03-13 23:54:15.882292+00 f t 2025-03-14 10:00:00 NO_REPORT clinical Vacunación anual para dos mascotas 118800.00 25700.00 93100.00 2025-03-14 13:00:00+00 36589665975 568 665 113 70 gdenjfflkleae1asrp78mug7d0 \N \N +846 2025-03-18 23:58:52.308401+00 2025-03-18 23:58:52.308409+00 f t 2025-03-19 15:00:00 COMPLETED vaccination Vacunacion anual para dos mascotas 132000.00 34000.00 98000.00 2025-03-19 18:00:00+00 10524448171 581 680 113 89 1one9qpqt83b67smsjtrng5vc4 \N \N +696 2025-02-21 18:32:33.068362+00 2025-02-21 18:32:33.06837+00 f t 2025-02-22 13:00:00 COMPLETED vaccination Vacunación de la antirrábica para dos perritas 77760.00 16960.00 60800.00 2025-02-22 16:00:00+00 102641932787 480 568 111 80 dq5a2kg9ngrigscvn898fq53q0 \N \N +1915 2025-07-29 13:18:08.27572+00 2025-07-29 13:18:08.275729+00 f t 2025-07-29 20:00:00 COMPLETED clinical Ecografía abdominal 62000.00 12000.00 50000.00 2025-07-29 23:00:00+00 27-32278752-4 5444 4467 1026 90 fr902m0ip5eop4uomd19ik4tr8 498 \N +745 2025-03-01 16:22:14.771825+00 2025-03-01 16:22:14.771836+00 f t 2025-03-03 11:00:00 NO_REPORT clinical Vacunacion anual Nosotros le debemos abonar a delfino le abonamos el restante que es $19250 60750.00 35000.00 25750.00 2025-03-03 14:00:00+00 103575937426 518 611 113 2 nikv7bapgc94nvn5oqogslqph4 \N \N +2181 2025-08-21 14:54:40.285431+00 2025-08-21 14:54:40.285438+00 f t 2025-08-21 14:00:00 NO_REPORT clinical 50000.00 10000.00 40000.00 2025-08-21 17:00:00+00 122622762319 7022 5742 1208 74 q3kmqrnjgp4ue7m45si4i8cupk 289 \N +617 2025-02-10 13:28:58.521311+00 2025-02-10 13:28:58.521318+00 f t 2025-02-09 16:00:00 COMPLETED vaccination Vacunación quintuple 55350.00 14350.00 41000.00 2025-02-09 19:00:00+00 PDX4OGNY11KK48XR20L6EY 437 517 114 70 p5t3rrjr2hp1od2mrslafhp9q4 \N \N +804 2025-03-11 15:35:54.297816+00 2025-03-11 15:35:54.297825+00 f t 2025-03-11 13:00:00 COMPLETED clinical chequeo, gato con obstruccion 46000.00 9500.00 36500.00 2025-03-11 16:00:00+00 \N 265 309 111 68 i56h8bfo0sh6mli4h2rissbb7c \N \N +2854 2025-10-12 19:58:08.206014+00 2025-10-12 19:58:08.206023+00 f t 2025-10-12 14:00:00 COMPLETED clinical Revisión de vulto y lastimadura en la cola \N 55000.00 11000.00 44000.00 2025-10-12 17:00:00+00 129658267050 10560 8764 \N 92 t3r0876f2g9fil4jctnog93664 \N 971 +726 2025-02-26 15:38:01.310043+00 2025-02-26 15:38:01.310053+00 f t 2025-02-27 16:00:00 COMPLETED clinical Consulta clínica por desprendimiento de olor fuerte y caída de pelaje 35000.00 7000.00 28000.00 2025-02-27 19:00:00+00 \N 504 596 111 89 hf6vrik4gb517bqpovepqr93g8 \N \N +633 2025-02-11 17:57:31.691574+00 2025-02-11 17:57:31.691584+00 f t 2025-02-06 11:00:00 COMPLETED vaccination Vacunación Anual 0.00 0.00 0.00 2025-02-06 14:00:00+00 0 405 482 114 1 sn79fa73hq5sme852nbmnfd360 \N \N +787 2025-03-08 16:38:12.410123+00 2025-03-08 16:38:12.410134+00 f t 2025-03-07 21:00:00 COMPLETED clinical Lesion en la cara 46000.00 9500.00 36500.00 2025-03-08 00:00:00+00 e467902d-64e9-468f-8ce8-c96d03 544 641 114 89 kv5en66lpevoaoije42tj0lrrg \N \N +755 2025-03-02 22:07:59.174833+00 2025-03-02 22:07:59.174843+00 f t 2025-03-02 14:00:00 COMPLETED clinical Eutanasia 123250.00 23250.00 100000.00 2025-03-02 17:00:00+00 77561321 527 622 114 68 75m5jq0rpo33igc2v52tfr8fs0 \N \N +734 2025-02-27 00:18:48.686111+00 2025-02-27 00:18:48.686124+00 f t 2025-02-27 17:30:00 NO_REPORT clinical Ecografia abdominal 52000.00 12000.00 40000.00 2025-02-27 20:30:00+00 103158789813 509 601 113 90 0rkbl2eq2ctm18ccfpgodqedv4 \N \N +452 2025-01-21 18:06:40.742039+00 2025-01-21 18:06:40.742048+00 f t 2025-01-24 18:30:00 COMPLETED vaccination Vacunacion anual 2 gatos adultos 109350.00 23850.00 85500.00 2025-01-24 21:30:00+00 99589106817 350 411 114 70 \N \N \N +788 2025-03-08 20:49:00.861174+00 2025-03-08 20:49:00.861185+00 f t 2025-03-07 18:30:00 COMPLETED clinical Lesion en la cola por mordedura 46000.00 9500.00 36500.00 2025-03-07 21:30:00+00 104022511939 545 642 114 1 p0f7ebll04ht2mo7o70m0hcgt4 \N \N +727 2025-02-26 16:20:47.971581+00 2025-02-26 16:20:47.97159+00 t t 2025-02-26 19:00:00 NO_REPORT clinical consulta clínica por inflamación en pata trasera la seña se pago por separado 7.000 y 1.600 (103515564772) 41600.00 8600.00 33000.00 2025-02-26 22:00:00+00 103103866401 503 595 114 89 9l4n4jcc38hg3q75g8o43fdl2g \N \N +822 2025-03-13 23:54:34.265541+00 2025-03-13 23:54:34.265547+00 f t 2025-03-14 10:00:00 NO_REPORT clinical Vacunación anual para dos mascotas 0.00 0.00 0.00 2025-03-14 13:00:00+00 0 568 666 113 70 sjhlqji672ansfgq4iaic16tl0 \N \N +749 2025-03-01 22:13:54.634664+00 2025-03-01 22:13:54.634672+00 f t 2025-03-01 21:00:00 NO_REPORT clinical Posible bichera 46000.00 9500.00 36500.00 2025-03-02 00:00:00+00 103862960922 521 616 113 70 bic0iv2spqrg8v23h9lpun19q0 \N \N +634 2025-02-11 22:35:43.772354+00 2025-02-11 22:35:43.772361+00 t t 2025-02-14 19:30:00 PENDING clinical Gato con decaimiento y lesion, paciente de 18 años 35000.00 7000.00 28000.00 2025-02-14 22:30:00+00 \N 428 508 113 78 jks7qh10kiqp49o2b3m15c0fds \N \N +817 2025-03-13 21:35:19.561636+00 2025-03-13 21:35:19.561646+00 f t 2025-03-14 08:00:00 COMPLETED clinical decaimiento y problemas para comer Se le solicita los 500, por que la clienta solo envio $8000 38500.00 8000.00 30000.00 2025-03-14 11:00:00+00 \N 564 661 113 80 h3the100h2rtpd25igq53pjhj4 \N \N +2188 2025-08-21 20:18:44.586388+00 2025-08-21 20:18:44.586396+00 t t 2025-09-06 20:00:00 PENDING vaccination Vacunacion anual (Antirrabica y sextuple) 115200.00 9200.00 106000.00 2025-09-06 23:00:00+00 122661752229 3052 3484 1583 68 3fvaqtbvg3282crmumk09euaq4 \N \N +768 2025-03-04 21:44:14.406105+00 2025-03-04 21:44:14.406115+00 f t 2025-03-04 19:00:00 NO_REPORT clinical extracción de sangre y revisión de los genitales 95000.00 53000.00 41500.00 2025-03-04 22:00:00+00 36468524540 537 633 114 70 c1gem0tdpgqjqjjf167ndi408o \N \N +889 2025-03-25 21:07:38.567895+00 2025-03-25 21:07:38.567905+00 t t 2025-04-02 16:00:00 PENDING vaccination Vacunacion anual 66000.00 17000.00 49000.00 2025-04-02 19:00:00+00 105879112833 326 711 113 89 2cj36on9hfupp5vp96k1mm90tg \N \N +723 2025-02-26 00:09:16.804086+00 2025-02-26 00:09:16.804093+00 f t 2025-02-26 08:30:00 COMPLETED clinical Control clinico por vomitos 35000.00 7000.00 28000.00 2025-02-26 11:30:00+00 \N 500 591 113 80 0qclvsi9ecg0fg7nbp5vnafv2g \N \N +697 2025-02-21 18:33:14.473853+00 2025-02-21 18:33:14.473865+00 f t 2025-02-22 13:00:00 COMPLETED vaccination vacunacion x 2 antirrabica toda la info cargada en el otro perro 0.00 0.00 0.00 2025-02-22 16:00:00+00 102641932787 480 568 111 80 iltrbs7irrmf62q9bt9s7gokrk \N \N +864 2025-03-21 23:23:05.180478+00 2025-03-21 23:23:05.180486+00 f t 2025-04-02 14:30:00 NO_REPORT clinical Vacunación anual 66000.00 17000.00 49000.00 2025-04-02 17:30:00+00 105532072293 592 693 113 2 4597jta12fcnk3gpu3s64qaeo0 \N \N +770 2025-03-04 21:56:24.057237+00 2025-03-04 21:56:24.057247+00 f t 2025-03-04 18:30:00 NO_REPORT vaccination vacunación anual 66000.00 17000.00 49000.00 2025-03-04 21:30:00+00 104110599610 539 635 114 2 2bbvruq5ebiguk46vg3ak23fos \N \N +852 2025-03-19 16:43:33.279416+00 2025-03-19 16:43:33.279424+00 f t 2025-03-21 13:00:00 NO_REPORT clinical Estudio cardiologicos prequirurgicos Pago 2 turnos en el mismo MPago 95000.00 10000.00 85000.00 2025-03-21 16:00:00+00 105633926632 528 623 110 82 m8723tc4bpsc63p171u8d9gd80 \N \N +847 2025-03-18 23:59:56.783479+00 2025-03-18 23:59:56.783486+00 f t 2025-03-19 15:00:00 COMPLETED vaccination Vacunacion anual 0.00 0.00 0.00 2025-03-19 18:00:00+00 0 581 681 113 89 4iuu3qrnva8acerdj9o2dvmj9k \N \N +464 2025-01-22 17:13:00.887453+00 2025-01-22 17:13:00.88746+00 f t 2025-01-23 16:00:00 COMPLETED vaccination Vacunación para dos pacientes 0.00 0.00 0.00 2025-01-23 19:00:00+00 100006749832 353 416 113 2 \N \N \N +826 2025-03-15 22:00:02.365586+00 2025-03-15 22:00:02.365595+00 f t 2025-03-17 15:30:00 COMPLETED clinical Control clinico 38500.00 8500.00 30000.00 2025-03-17 18:30:00+00 105317695752 572 670 114 88 9gol388iko96bhdvthle79tuto \N \N +685 2025-02-19 19:11:59.320906+00 2025-02-19 19:11:59.320915+00 f t 2025-02-20 18:00:00 NO_REPORT clinical control, está medicada con Gerioox y pregabalina 100 mg 35000.00 7000.00 28000.00 2025-02-20 21:00:00+00 102458765439 472 560 111 77 n2788mt4cdafsvf6s5suqm973s \N \N +805 2025-03-11 23:24:14.112904+00 2025-03-11 23:24:14.112912+00 f t 2025-03-12 14:00:00 COMPLETED telemedicina LESION EN CUELLO 25000.00 25000.00 16000.00 2025-03-12 17:00:00+00 104462059579 558 655 113 80 nd6hu68uip6ogiuiuij5cq068k \N \N +674 2025-02-18 15:11:08.019745+00 2025-02-18 15:11:08.019754+00 f t 2025-02-17 19:00:00 COMPLETED clinical control y posible desparasitacion 56600.00 8600.00 48000.00 2025-02-17 22:00:00+00 \N 465 552 111 21 8m7iiltdhdsnlha1ku4eun76fg \N \N +832 2025-03-18 17:25:13.687759+00 2025-03-18 17:25:13.687771+00 f t 2025-03-18 15:00:00 COMPLETED vaccination vacunacion anual 66000.00 17000.00 49000.00 2025-03-18 18:00:00+00 105173875455 576 674 111 1 pubmbbu5kbftu1va5777nedf64 \N \N +903 2025-03-28 20:40:10.634765+00 2025-03-28 20:40:10.634774+00 f t 2025-03-31 17:30:00 COMPLETED clinical Vacunacion anul y desparasitacion interna y extena para dos mascotas. 189900.00 29900.00 152000.00 2025-03-31 20:30:00+00 LMORZP905YVJDDJYNEGJ46 617 721 113 88 ki8fp3lqd3kje037i1ce68savo \N \N +837 2025-03-18 19:23:00.466359+00 2025-03-18 19:23:00.466369+00 f t 2025-03-16 18:00:00 COMPLETED clinical clínica por ojos hinchados, y comezón\r\nNo tomo ninguna medicación\r\nSe asusta pero no ataca 46000.00 9500.00 36500.00 2025-03-16 21:00:00+00 \N 579 677 110 1 d1rpt5ujmcmsaes996jda5sm18 \N \N +2321 2025-09-01 17:26:55.331547+00 2025-09-01 17:26:55.331555+00 f t 2025-09-03 09:00:00 CANCELLED clinical 3 extracciones, cortisol post dexa 196000.00 75000.00 121000.00 2025-09-03 12:00:00+00 LOEJWV9JLM17Y3Q8NQMDOG 5021 4145 1583 88 0kb2u5sme038gsq63kurjsif9c \N \N +663 2025-02-16 21:50:43.330946+00 2025-02-16 21:50:43.330954+00 f t 2025-02-18 18:30:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-02-18 21:30:00+00 0 459 544 114 89 uvdvl3etr4fau32uik37vtvuog \N \N +574 2025-02-03 21:20:00.714579+00 2025-02-03 21:20:00.714586+00 f t 2025-02-03 20:30:00 COMPLETED clinical Dificultad motriz por antecedente de displasia de cadera y artritis, y perdida de peso 41600.00 8600.00 33000.00 2025-02-03 23:30:00+00 100831509549 410 489 113 70 54pgja9f7hqm306t4jrlq12qrg \N \N +1867 2025-07-24 14:48:57.631219+00 2025-07-24 14:48:57.631227+00 f t 2025-07-28 19:00:00 COMPLETED vaccination Se detalla en el turno de Humo 0.00 0.00 0.00 2025-07-28 22:00:00+00 0 5168 4253 1026 97 liju1fq2amskrt1ubahvo14ins \N \N +657 2025-02-15 21:36:53.334774+00 2025-02-15 21:36:53.334782+00 f t 2025-02-19 18:30:00 COMPLETED vaccination Vacunación anual de dos gatitos Aquí está el coste total de la consulta 109350.00 23850.00 85550.00 2025-02-19 21:30:00+00 7L8GYKNXW0K1EX402MPRZ5 455 539 114 70 1j2s5jhdubpc8g4t4bu7165seg \N \N +614 2025-02-09 22:37:13.18037+00 2025-02-09 22:37:13.180376+00 f t 2025-02-11 12:00:00 COMPLETED clinical vacunación anual 60750.00 15750.00 45000.00 2025-02-11 15:00:00+00 1204197890 436 516 114 1 r4m4afuq4jols22fst4d3o52vc \N \N +886 2025-03-25 00:01:24.247835+00 2025-03-25 00:01:24.247842+00 f t 2025-03-23 19:30:00 COMPLETED clinical Revisión por posible embarazo 46000.00 9500.00 36500.00 2025-03-23 22:30:00+00 105707641205 607 709 113 70 ipfbfmbdqv1lctbqk5us1268n0 \N \N +710 2025-02-24 23:19:47.047919+00 2025-02-24 23:19:47.047927+00 f t 2025-02-24 17:00:00 COMPLETED clinical Urgencia decaimiento y problemas para defecar 41600.00 8600.00 33000.00 2025-02-24 20:00:00+00 103335289502 491 580 114 89 9j2h0bifbd2pjp2ud8o13n15ko \N \N +827 2025-03-15 22:02:29.11309+00 2025-03-15 22:02:29.1131+00 f t 2025-03-14 19:30:00 COMPLETED clinical Ojos lesiones con secreccion purulenta, se le pegan 46000.00 9500.00 36500.00 2025-03-14 22:30:00+00 \N 573 671 114 88 ov9voo20ava17sj1ddhdveb7kk \N \N +711 2025-02-24 23:40:06.858357+00 2025-02-24 23:40:06.858368+00 f t 2025-02-25 08:30:00 COMPLETED clinical consulta clínica por rengueo y estrés 35000.00 7000.00 28000.00 2025-02-25 11:30:00+00 73680836 492 581 114 80 5ueollstv9613mhttrbbktr4uk \N \N +865 2025-03-21 23:42:14.790513+00 2025-03-21 23:42:14.790521+00 f t 2025-03-23 10:00:00 COMPLETED clinical Vacunación anual 66000.00 17000.00 49000.00 2025-03-23 13:00:00+00 105524317493 593 694 113 80 v8cjvokd1bojsbp6d3ameu0mg0 \N \N +1939 2025-07-30 15:58:00.604195+00 2025-07-30 15:58:00.604204+00 f t 2025-08-08 19:30:00 NO_REPORT clinical Radiografías 78300.00 6300.00 72000.00 2025-08-08 22:30:00+00 120386563708 313 372 1026 84 pnmngihm0rcte4sjd7cfalcu5k 409 \N +803 2025-03-11 00:00:38.489056+00 2025-03-11 00:00:38.489064+00 f t 2025-03-10 19:30:00 COMPLETED clinical urgencia por problemas de diarrea continua 46000.00 9500.00 36500.00 2025-03-10 22:30:00+00 \N 557 654 113 88 sqcbi28vh1dh0sc490okobvoko \N \N +2183 2025-08-21 16:24:30.989661+00 2025-08-21 16:24:30.98967+00 f t 2025-08-22 20:00:00 COMPLETED clinical Consulta general y corte de unas 49700.00 11700.00 38000.00 2025-08-22 23:00:00+00 \N 7031 5747 1583 68 p6qq4kshsto92a2vep3lsptkmo 276 \N +686 2025-02-19 23:24:13.258121+00 2025-02-19 23:24:13.258128+00 t t 2025-02-22 10:00:00 PENDING clinical Ecografia abdominal 52000.00 12000.00 40000.00 2025-02-22 13:00:00+00 123405437 473 561 113 5 jgmrp23icbuhcdj4hdkefq09bc \N \N +2322 2025-09-01 17:27:21.969805+00 2025-09-01 17:27:21.969815+00 f t 2025-09-03 13:00:00 CANCELLED clinical 2da extracciones, cortison post dexa 0.00 0.00 0.00 2025-09-03 16:00:00+00 0 5021 4145 1583 88 qfoeroa6fjs86filnvc63kt0r0 \N \N +778 2025-03-06 22:28:05.072647+00 2025-03-06 22:28:05.072656+00 f t 2025-03-06 18:30:00 COMPLETED clinical Control clinico 82800.00 13450.00 69350.00 2025-03-06 21:30:00+00 1027552600725306 407 485 113 68 pd2p9ldrr9hbt90nr6fgu9g430 \N \N +756 2025-03-03 16:50:58.912655+00 2025-03-03 16:50:58.912667+00 f t 2025-03-02 19:30:00 COMPLETED clinical colmillo flojo 46000.00 9500.00 36500.00 2025-03-02 22:30:00+00 103946177122 528 623 114 89 mu8bsauqpitted3134bt0b6gjk \N \N +813 2025-03-13 21:22:10.193773+00 2025-03-13 21:22:10.193783+00 f t 2025-03-12 20:00:00 NO_REPORT clinical Extracción de sangre y revisión por retención de líquido 53000.00 11500.00 41500.00 2025-03-12 23:00:00+00 WGRXJE27G81QO10JN7MYQL 561 658 113 70 1opo9im7svh3f5vd3dd3egmek8 \N \N +575 2025-02-03 21:57:21.386534+00 2025-02-03 21:57:21.386541+00 t t 2025-02-03 20:30:00 NO_REPORT clinical Decaimiento, movimiento intermitente de la cabeza 41600.00 8600.00 33000.00 2025-02-03 23:30:00+00 100833912575 411 490 113 70 na9bjegq2mh40otu56p2eeiq04 \N \N +615 2025-02-10 12:28:09.032693+00 2025-02-10 12:28:09.0327+00 t t 2025-02-11 10:30:00 NO_REPORT clinical PRUEBA PRUEBA 0.00 0.00 0.00 2025-02-11 13:30:00+00 0 266 335 110 76 qsja8m1r42s7qjf25se6e68kc4 \N \N +2326 2025-09-01 19:00:27.453506+00 2025-09-01 19:00:27.453519+00 f t 2025-09-06 11:00:00 NO_REPORT clinical Radiografia 80000.00 15000.00 65000.00 2025-09-06 14:00:00+00 0012771236 4848 4007 1583 84 app5ic7pcpgni60qqsdns339vs 124 \N +812 2025-03-13 21:18:19.09659+00 2025-03-13 21:18:19.096599+00 f t 2025-03-13 17:30:00 COMPLETED clinical dificultad en la marcha y dolor en la cadera 38500.00 85000.00 30000.00 2025-03-13 20:30:00+00 \N 377 443 113 1 5i3mdhie5et10n9qo67cq6btic \N \N +743 2025-02-28 18:12:42.750461+00 2025-02-28 18:12:42.750469+00 f t 2025-02-28 16:30:00 COMPLETED clinical Lesion turmoral en ano, con dificultad en la marcha 41600.00 8600.00 33000.00 2025-02-28 19:30:00+00 36433037655 516 609 113 21 vnjpge0jmmkrtr0ln6b5el7cn4 \N \N +724 2025-02-26 00:20:39.667525+00 2025-02-26 00:20:39.667534+00 f t 2025-02-25 22:30:00 COMPLETED clinical Px con antecedente reanles, aparacion de masa en perineo, padecedor de artrosis avanzada, que dificultad la marcha. Derivacion de la Dra. Palummo 121600.00 8600.00 113000.00 2025-02-26 01:30:00+00 103462571976 501 592 113 70 n29e1mf2c8gv3soql5g7rr26jc \N \N +658 2025-02-15 21:37:53.260122+00 2025-02-15 21:37:53.260127+00 f t 2025-02-19 18:30:00 NO_REPORT vaccination Vacunación anual de dos gatitos 0.00 0.00 0.00 2025-02-19 21:30:00+00 0 455 538 114 70 p697eu0lus0a5m9khfhposhvao \N \N +2754 2025-10-03 19:24:59.282503+00 2025-10-03 19:24:59.282511+00 f t 2025-10-06 11:00:00 COMPLETED clinical Analisis de sangre Perfil 7 con orina, brucella 0.00 0.00 0.00 2025-10-06 14:00:00+00 0 8854 7319 1583 100 aunpcmeg9r5ma8kfg6b7th0img \N 830 +882 2025-03-24 19:52:49.059211+00 2025-03-24 19:52:49.059218+00 f t 2025-03-23 16:30:00 NO_REPORT clinical Lastimadura en la piel 46000.00 9500.00 36500.00 2025-03-23 19:30:00+00 \N 603 705 114 2 pnhsorva58dof0p6mljeddv7ms \N \N +675 2025-02-18 16:19:59.993289+00 2025-02-18 16:19:59.993297+00 f t 2025-02-18 15:30:00 COMPLETED clinical almohadilla levantas con ampollas y bultos en la cabeza 35000.00 7000.00 28000.00 2025-02-18 18:30:00+00 1027344926924 466 553 114 88 1plj3lgoupao1lodvf8tm44d4o \N \N +255 2024-11-21 15:47:24.543+00 2024-11-21 15:47:24.543+00 f t 2024-11-26 09:00:00 COMPLETED clinical Visita para Drenaje de glándulas perianales y chequeo de salud y seguimiento. vacunación anual si corresponde. Transacción 92926585575 35360.00 35360.00 26000.00 2024-11-26 12:00:00+00 123 128 114 1 ljpq6h8iqnhseo694e4et15evk \N \N +849 2025-03-19 14:46:50.65504+00 2025-03-19 14:46:50.65505+00 f t 2025-03-22 13:00:00 COMPLETED vaccination vacunacion anual 66000.00 17000.00 49000.00 2025-03-22 16:00:00+00 105268587807 582 683 111 68 klvhrip4gdrtds1md7g1u56tno \N \N +841 2025-03-18 23:24:53.178953+00 2025-03-18 23:24:53.17896+00 f t 2025-03-25 17:30:00 COMPLETED telemedicina Resolucion de resultado Nosotros abonas por el incoveniente con el cambio de cadete 0.00 0.00 16000.00 2025-03-25 20:30:00+00 0 444 527 113 88 4lupj9qniemc4ecj33oughva0g \N \N +594 2025-02-05 23:09:38.204957+00 2025-02-05 23:09:38.204964+00 f t 2025-02-06 18:30:00 COMPLETED clinical Colocación de chip\r\nExtracción para testeo\r\nTraslado de muestra\r\nLaboratorio de Leishmaniasis pagar a vete honorarios. clienta transfirio por error a amar 150200.00 57200.00 93000.00 2025-02-06 21:30:00+00 101036438839 420 500 114 70 uhstocne8rp6uni4jof0ocpa8c \N \N +1396 2025-06-06 17:13:22.844199+00 2025-06-06 17:13:22.844208+00 f t 2025-06-11 19:00:00 COMPLETED clinical Corte de garras hay que transferirle $75000 ya que el cliente nos abono la consulta a nosotros 88200.00 13200.00 75000.00 2025-06-11 22:00:00+00 70272401009250606 1811 1715 1026 97 ba1n0ouva312erqltcnoo6ima0 878 \N +2853 2025-10-12 19:49:20.15849+00 2025-10-12 19:49:20.158502+00 f t 2025-10-14 18:00:00 COMPLETED clinical Tiene estornudos esporádicos y estos últimos días presentó algunos temas de respiración. 46000.00 11000.00 35000.00 2025-10-14 21:00:00+00 129668893072 10554 8758 114 113 uecd29h54r4spe21v95a2ja5s8 \N 968 +635 2025-02-11 22:55:04.589967+00 2025-02-11 22:55:04.589974+00 f t 2025-02-14 19:30:00 NO_REPORT clinical Px de 18 años con decaimiento , lesion en el lomo 35000.00 7000.00 28000.00 2025-02-14 22:30:00+00 36257523874 428 521 113 78 od895aei4hcmfnp94p8i89sdgo \N \N +698 2025-02-21 18:40:33.557732+00 2025-02-21 18:40:33.557737+00 f t 2025-02-21 15:00:00 NO_REPORT clinical Lastimadura en la cavidad anal 41600.00 8600.00 33000.00 2025-02-21 18:00:00+00 103060792340 366 570 114 88 vaji50oa4kbg0qpf71jntkb4vc \N \N +736 2025-02-27 00:26:33.069029+00 2025-02-27 00:26:33.069036+00 f t 2025-02-27 11:00:00 NO_REPORT clinical Inflamacion ocular 35000.00 7000.00 28000.00 2025-02-27 14:00:00+00 \N 511 603 113 88 6vas1tu9np9ueqf14k8t7h50do \N \N +769 2025-03-04 21:52:29.584562+00 2025-03-04 21:52:29.584573+00 f t 2025-03-04 17:00:00 NO_REPORT clinical Posible conjuntivitis 46000.00 9500.00 36500.00 2025-03-04 20:00:00+00 104094889970 538 634 114 2 ro9g3tf9clkepl2kftv9t77gto \N \N +16 2024-05-11 11:00:00+00 2024-05-11 11:00:00+00 f t 2024-05-11 11:00:00 NO_REPORT Vacunación (Rabia + Sext/Triple) Vacunación Transacción cliente pago 50% por web 46000.00 0.00 0.00 2024-05-11 14:00:00+00 15 15 114 2 arll5l5jhtjavktaac1qaemai0 \N \N +12 2024-10-30 14:13:08.367+00 2024-10-30 14:13:08.367+00 f t 2024-03-18 15:30:00 NO_REPORT Clinica Clínica Transacción 0.00 0.00 0.00 2024-03-18 18:30:00+00 11 11 114 2 mmvpjvbundr2ctrdg3c59db6oc \N \N +24 2024-06-15 11:00:00+00 2024-06-15 11:00:00+00 f t 2024-06-15 11:00:00 NO_REPORT Clinica (Findes y feriados) Clínica 33600.00 0.00 0.00 2024-06-15 14:00:00+00 23 23 114 2 \N \N \N +576 2025-02-03 21:57:23.684795+00 2025-02-03 21:57:23.684802+00 t t 2025-02-03 20:30:00 NO_REPORT clinical Decaimiento, movimiento intermitente de la cabeza 41600.00 8600.00 33000.00 2025-02-03 23:30:00+00 100833912575 411 490 113 70 \N \N \N +2 2024-01-08 11:00:00+00 2024-01-08 11:00:00+00 f t 2024-01-08 11:00:00 NO_REPORT Clinica Visita con turno programado 14999.99 0.00 0.00 2024-01-08 14:00:00+00 2 2 114 8 qf4dm2v5fipmifk3sbplugkf2c \N \N +210 2024-11-03 20:04:37.528+00 2024-11-03 20:04:37.528+00 f t 2024-11-03 09:00:00 COMPLETED clinical Vomito repetitivo- Imposibilidad administración de fármacos postquirúrgicos Transacción 91982315205 49600.00 18600.00 31000.00 2024-11-03 12:00:00+00 \N 179 187 114 14 f5ppofkiu2ne7egvhb931hi950 \N \N +32 2024-06-26 17:00:00+00 2024-06-26 17:00:00+00 f t 2024-06-26 17:00:00 COMPLETED Clinica Gato Transaccion Clienta transfirio $16k la diferencia se la abona al vete 33600.00 16000.00 20000.00 2024-06-26 20:00:00+00 31 31 \N 1 \N \N \N +1899 2025-07-27 20:01:59.50482+00 2025-07-27 20:01:59.50483+00 f t 2025-08-01 14:00:00 COMPLETED clinical eco abdominal 55800.00 5800.00 50000.00 2025-08-01 17:00:00+00 d7969adc-2998-4114-bbc9-520c56 4727 3916 1208 90 gc3dkhnu8i47qosrho27bp6khg 477 \N +2122 2025-08-16 18:29:25.981473+00 2025-08-16 18:29:25.981484+00 f t 2025-08-16 20:00:00 COMPLETED clinical eco abdominal 78000.00 13000.00 65000.00 2025-08-16 23:00:00+00 122590976936 6671 5442 1208 90 bengu98hoikm2a3ovubnbe6b70 341 \N +21 2024-05-24 11:00:00+00 2024-05-24 11:00:00+00 f t 2024-05-24 11:00:00 NO_REPORT Vacunación (Rabia + Sext/Triple) Vacunación 46000.00 0.00 0.00 2024-05-24 14:00:00+00 20 20 114 2 \N \N \N +28 2024-06-21 16:00:00+00 2024-06-21 16:00:00+00 f t 2024-06-21 16:00:00 NO_REPORT Clinica Visita con turno programado. 33600.00 0.00 0.00 2024-06-21 19:00:00+00 27 27 114 2 \N \N \N +31 2024-06-26 20:00:00+00 2024-06-26 20:00:00+00 f t 2024-06-26 20:00:00 NO_REPORT Clinica Consulta con turno programado 33600.00 0.00 0.00 2024-06-26 23:00:00+00 30 30 114 2 \N \N \N +19 2024-05-18 11:00:00+00 2024-05-18 11:00:00+00 f t 2024-05-18 11:00:00 NO_REPORT Vacunación (Rabia + Sext/Triple) Vacunación 46000.00 0.00 0.00 2024-05-18 14:00:00+00 18 18 114 2 tggq19va9g09t2u540v5ks4omc \N \N +10 2024-10-30 14:13:08+00 2024-10-30 14:13:08+00 f t 2024-01-30 12:20:00 NO_REPORT clinical vacunacion Transaccion 36000.00 0.00 0.00 2024-01-30 15:20:00+00 \N 10 10 \N 76 hevdg7ttpbae587ok70rao6tp8 \N \N +13 2024-03-26 15:00:00+00 2024-03-26 15:00:00+00 f t 2024-03-26 15:00:00 NO_REPORT Clinica clinica Transaccion 0.00 0.00 0.00 2024-03-26 18:00:00+00 12 12 \N 76 \N \N \N +9 2024-01-29 17:00:00+00 2024-01-29 17:00:00+00 f t 2024-01-29 17:00:00 NO_REPORT Telemedicina Teleconsulta 0.00 0.00 0.00 2024-01-29 20:00:00+00 9 9 114 25 355ejffmh9boscbnk2k1a8cq7g \N \N +17 2024-05-14 16:00:00+00 2024-05-14 16:00:00+00 f t 2024-05-14 16:00:00 NO_REPORT Clinica Visita con turno programado 21500.00 0.00 0.00 2024-05-14 19:00:00+00 16 16 114 2 \N \N \N +2487 2025-09-14 19:26:02.191804+00 2025-09-14 19:26:02.191812+00 f t 2025-09-14 16:00:00 COMPLETED clinical Ecografía Abdominal 92000.00 12000.00 80000.00 2025-09-14 19:00:00+00 125606754537 8640 7128 114 103 7gaamrqlqkd0daakjq8d7912bo 51 \N +5 2024-01-13 11:00:00+00 2024-01-13 11:00:00+00 f t 2024-01-13 11:00:00 COMPLETED Consulta Dermatologia Dermatología 0.00 0.00 0.00 2024-01-13 14:00:00+00 5 5 114 25 r4587qejh1autu4u1nvo2dtqrg \N \N +23 2024-06-11 14:00:00+00 2024-06-11 14:00:00+00 f t 2024-06-11 14:00:00 NO_REPORT Vacunación (Rabia + Sext/Triple) Vacunación 46000.00 0.00 0.00 2024-06-11 17:00:00+00 22 22 114 2 dl96i47nb0u5p7028pplerstng \N \N +29 2024-06-25 17:00:00+00 2024-06-25 17:00:00+00 f t 2024-06-25 17:00:00 NO_REPORT Ecografia (vet. Mallo) nan Transaccion 50000.00 0.00 0.00 2024-06-25 20:00:00+00 28 28 \N 3 \N \N \N +14 2024-03-28 16:00:00+00 2024-03-28 16:00:00+00 f t 2024-03-28 16:00:00 NO_REPORT Vacunación (Rabia + Sext/Triple) Vacunación 46000.00 0.00 0.00 2024-03-28 19:00:00+00 13 13 114 2 \N \N \N +3 2024-01-09 10:00:00+00 2024-01-09 10:00:00+00 f t 2024-01-09 10:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación 36000.00 0.00 0.00 2024-01-09 13:00:00+00 3 3 114 9 1tokt5t5i01lme772je5qd88os \N \N +18 2024-05-15 21:00:00+00 2024-05-15 21:00:00+00 f t 2024-05-15 09:00:00 NO_REPORT Telemedicina Telemedicina 33600.00 0.00 0.00 2024-05-15 12:00:00+00 17 17 114 8 \N \N \N +616 2025-02-10 12:38:19.856338+00 2025-02-10 12:38:19.856815+00 t t 2025-02-10 12:00:00 CANCELLED clinical PRUEBA 10.00 10.00 5.00 2025-02-10 15:00:00+00 0 346 246 110 76 q2e695cl6iup338igac372euj4 \N \N +35 2024-07-03 15:00:00+00 2024-07-03 15:00:00+00 f t 2024-07-03 15:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación gato recién adoptado Transaccion 81705083839 Cliente pagó 50% transferencia y 50% efectivo 53000.00 26500.00 30000.00 2024-07-03 18:00:00+00 34 34 \N 1 \N \N \N +15 2024-04-08 13:00:00+00 2024-04-08 13:00:00+00 f t 2024-04-08 13:00:00 NO_REPORT Clinica Clínica 0.00 0.00 0.00 2024-04-08 16:00:00+00 14 14 114 76 \N \N \N +27 2024-06-20 15:00:00+00 2024-06-20 15:00:00+00 f t 2024-06-20 15:00:00 NO_REPORT Clinica Visita con turno programado 33600.00 0.00 0.00 2024-06-20 18:00:00+00 26 26 114 2 fuq32krtmthdegbu3die1s40pk \N \N +1985 2025-08-04 17:22:39.652574+00 2025-08-04 17:22:39.652585+00 f t 2025-08-06 21:00:00 NO_REPORT clinical precx 95000.00 10000.00 85000.00 2025-08-07 00:00:00+00 120983714764 5874 4803 1208 82 40dn4ocfrs5d29fva0rf8eaam0 425 \N +22 2024-06-03 17:00:00+00 2024-06-03 17:00:00+00 f t 2024-06-03 17:00:00 NO_REPORT Vacunación (Rabia + Sext/Triple) Gato 12 años vacunación Transaccion 79673616662 46000.00 0.00 0.00 2024-06-03 20:00:00+00 21 21 \N 2 \N \N \N +34 2024-06-27 20:00:00+00 2024-06-27 20:00:00+00 f t 2024-06-27 20:00:00 COMPLETED Urgencias Perro con convulsiones Transaccion Cliente pago 100% transferencia 46000.00 46000.00 30000.00 2024-06-27 23:00:00+00 33 33 114 1 \N \N \N +30 2024-10-30 14:13:08.496+00 2024-10-30 14:13:08.496+00 f t 2024-06-25 18:30:00 NO_REPORT Clinica Certificado de viaje y desparacitacion Transaccion 33600.00 0.00 0.00 2024-06-25 21:30:00+00 29 29 \N 2 \N \N \N +26 2024-06-19 16:00:00+00 2024-06-19 16:00:00+00 f t 2024-06-19 16:00:00 NO_REPORT Telemedicina Telemedicina 21500.00 0.00 0.00 2024-06-19 19:00:00+00 25 25 114 8 t5ej7vrlrrfo0knkn2afs07vto \N \N +595 2025-02-05 23:11:51.712384+00 2025-02-05 23:11:51.712392+00 f t 2025-02-10 19:30:00 COMPLETED clinical Vacunación\r\nDesparasitación\r\nCertificados 0.00 0.00 82000.00 2025-02-10 22:30:00+00 0 420 500 114 70 b68qshm4tsbu3ugf0kdfds1090 \N \N +25 2024-06-18 10:00:00+00 2024-06-18 10:00:00+00 f t 2024-06-18 10:00:00 NO_REPORT Rayos Rx 110000.00 0.00 0.00 2024-06-18 13:00:00+00 24 24 114 3 \N \N \N +8 2024-01-27 10:00:00+00 2024-01-27 10:00:00+00 f t 2024-01-27 10:00:00 NO_REPORT clinical vacunacion Transaccion 4k pagado el 25/1 36000.00 0.00 0.00 2024-01-27 13:00:00+00 \N 8 8 \N 76 \N \N \N +20 2024-05-18 19:00:00+00 2024-05-18 19:00:00+00 f t 2024-05-18 19:00:00 NO_REPORT Urgencias nan Transaccion 0.00 0.00 0.00 2024-05-18 22:00:00+00 19 19 \N 2 aiaqvbc0u43769emjrds0b8594 \N \N +46 2024-07-16 14:00:00+00 2024-07-16 14:00:00+00 f t 2024-07-16 14:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Gata 9 años con alopecia en algunas zonas Transaccion 82879311734 Cliente pagó 50% transferencia y 50% efectivo 53000.00 26500.00 35000.00 2024-07-16 17:00:00+00 45 46 \N 1 \N \N \N +40 2024-10-30 14:13:08.611+00 2024-10-30 14:13:08.611+00 f t 2024-07-12 16:30:00 NO_REPORT Ecografia (vet. Mallo) Ecografía Transacción 82336317837 60000.00 30000.00 35000.00 2024-07-12 19:30:00+00 39 40 114 3 \N \N \N +43 2024-10-30 14:13:08.642+00 2024-10-30 14:13:08.642+00 f t 2024-07-13 16:30:00 COMPLETED Clinica (Findes y feriados) Gato 8 años, diente por caer Transaccion 82488395233 Cliente pagó 10k transferencia y resto transferencia 35000.00 35000.00 32000.00 2024-07-13 19:30:00+00 42 43 \N 21 sbokm3lmqte90415neicbnocis \N \N +51 2024-07-22 16:00:00+00 2024-07-22 16:00:00+00 f t 2024-07-22 16:00:00 COMPLETED Clinica Gato con estornudos frecuentes Transaccion 82891648217 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-07-22 19:00:00+00 50 51 114 1 \N \N \N +56 2024-10-30 14:13:08.801+00 2024-10-30 14:13:08.801+00 f t 2024-07-29 15:30:00 COMPLETED Clinica Motivo de Consulta: Gato con alergia en la piel Transaccion 83526681745 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-07-29 18:30:00+00 55 56 \N 1 \N \N \N +659 2025-02-15 21:47:14.633896+00 2025-02-15 21:47:14.633906+00 f t 2025-02-15 20:30:00 NO_REPORT clinical consulta clínica por fiebres y vomitos 41600.00 8600.00 33000.00 2025-02-15 23:30:00+00 102483802682 456 540 111 68 olptcphdq98aaitvuas63h2jc0 \N \N +61 2024-10-30 14:13:08.839+00 2024-10-30 14:13:08.839+00 f t 2024-08-06 17:30:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación perro Transaccion 84280087008 Cliente pagó 50% transferencia y 50% efectivo 53000.00 26500.00 35000.00 2024-08-06 20:30:00+00 60 61 \N 2 \N \N \N +52 2024-07-24 10:00:00+00 2024-07-24 10:00:00+00 f t 2024-07-24 10:00:00 NO_REPORT Vacunación x 4 animales Produccion + vacunacion Transaccion 0.00 0.00 120000.00 2024-07-24 13:00:00+00 51 52 \N 1 \N \N \N +63 2024-10-30 14:13:08.857+00 2024-10-30 14:13:08.857+00 f t 2024-08-08 18:30:00 COMPLETED Vacunación (Rabia + Sext/Triple) vacunacion anual (sextuple + antirrabica) Transaccion 84482190321 Cliente pagó 50% transferencia y 50% efectivo 53000.00 26500.00 35000.00 2024-08-08 21:30:00+00 62 63 \N 1 \N \N \N +53 2024-07-26 14:00:00+00 2024-07-26 14:00:00+00 f t 2024-07-26 14:00:00 COMPLETED Clinica gato diarrea explosiva Transaccion 83414003827 Cliente pago 100% transferencia 35000.00 35000.00 20000.00 2024-07-26 17:00:00+00 52 53 \N 14 4sjrvkl5c3jpu5b0pmeoth54c8 \N \N +42 2024-10-30 14:13:08.63+00 2024-10-30 14:13:08.63+00 f t 2024-07-13 11:15:00 COMPLETED Clinica (Findes y feriados) Perro 12 años comezon Transaccion 82710465408 Cliente pago 100% transferencia 35000.00 35000.00 20000.00 2024-07-13 14:15:00+00 41 42 \N 1 m20155k3skhnq8c18fc11ebpng \N \N +37 2024-07-04 16:00:00+00 2024-07-04 16:00:00+00 f t 2024-07-04 16:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación gato + certificado vacuna antirrábica Transacción 81958227432 46000.00 23000.00 30000.00 2024-07-04 19:00:00+00 36 36 114 1 \N \N \N +44 2024-07-13 19:00:00+00 2024-07-13 19:00:00+00 f t 2024-07-13 19:00:00 COMPLETED Clinica (Findes y feriados) Perro 16 años - inyección anti artrosico Transaccion 82489794369 Cliente pagó 10k transferencia y resto efectivo 35000.00 10000.00 20000.00 2024-07-13 22:00:00+00 43 44 \N 2 \N \N \N +2325 2025-09-01 18:59:58.150804+00 2025-09-01 18:59:58.150812+00 t t 2025-09-06 11:00:00 PENDING clinical Radiografia 80000.00 15000.00 65000.00 2025-09-06 14:00:00+00 0012771236 4848 4007 1583 84 f2lqvineome2anvhnlf23nkr6g \N \N +57 2024-10-30 14:13:08.813+00 2024-10-30 14:13:08.813+00 f t 2024-07-29 16:30:00 COMPLETED Clinica Gato adulto hinchazón, evacuaciones poco frecuentes, decaimiento Transacción 83598263333 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-07-29 19:30:00+00 56 57 114 1 \N \N \N +39 2024-07-08 15:00:00+00 2024-07-08 15:00:00+00 f t 2024-07-08 15:00:00 COMPLETED Vacunación x 2 animales Vacunación anual 2 perros yorkis Transaccion 82287904436 Cliente pagó 50% transferencia y 50% efectivo 97000.00 48500.00 60000.00 2024-07-08 18:00:00+00 38 38 \N 1 \N \N \N +38 2024-10-30 14:13:08.577+00 2024-10-30 14:13:08.577+00 f t 2024-07-07 20:30:00 COMPLETED Clinica (Findes y feriados) Gato con salivación excesiva Transaccion 82018973119 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-07-07 23:30:00+00 37 37 \N 1 \N \N \N +47 2024-10-30 14:13:08.693+00 2024-10-30 14:13:08.693+00 f t 2024-07-16 15:30:00 COMPLETED Clinica Chequeo de tumores en mamas, y halitosis. Perra 17 mestiza, operada de tumores a los 13años (extraccion 1 linea mamaria y utero) Transaccion 82915572050 35000.00 17500.00 20000.00 2024-07-16 18:30:00+00 46 47 \N 1 \N \N \N +54 2024-10-30 14:13:08.776+00 2024-10-30 14:13:08.776+00 f t 2024-07-27 15:30:00 COMPLETED Analisis Prequirurgico analisis préquirurgico extracción Transaccion 82968993399 Cliente pagó 50% transferencia y 50% efectivo 70000.00 35000.00 59000.00 2024-07-27 18:30:00+00 53 54 \N 1 \N \N \N +55 2024-07-28 12:00:00+00 2024-07-28 12:00:00+00 f t 2024-07-28 12:00:00 COMPLETED Clinica (Findes y feriados) gato con estornudos Transaccion 83549843289 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-07-28 15:00:00+00 54 55 \N 1 ugmc8jvb18f0ul6rok00e2ie68 \N \N +36 2024-07-03 10:00:00+00 2024-07-03 10:00:00+00 f t 2024-07-03 10:00:00 COMPLETED Urgencias Gato vomitando Transaccion 81995037746 Cliente pago 100% transferencia 55000.00 55000.00 30000.00 2024-07-03 13:00:00+00 35 35 \N 1 \N \N \N +41 2024-07-13 09:00:00+00 2024-07-13 09:00:00+00 f t 2024-07-13 09:00:00 COMPLETED Vacunación x 2 animales Vacunación, desparasitación y certificado de salud por viaje a Mendoza x 2 mascotas Transaccion 82007556928 Cliente pagó una parte transferencia 172000.00 106000.00 102000.00 2024-07-13 12:00:00+00 40 41 114 1 \N \N \N +171 2024-10-08 21:00:00+00 2024-10-08 21:00:00+00 f t 2024-10-08 21:00:00 COMPLETED Clinica Perro Drenaje de glándulas perianales que se le han inflamado Transaccion 89667306131 57700.00 19700.00 38000.00 2024-10-09 00:00:00+00 123 128 \N 1 tiklnku00rkrf937fclmp1vhbg \N \N +64 2024-10-30 14:13:08.869+00 2024-10-30 14:13:08.869+00 f t 2024-08-12 09:00:00 COMPLETED Clinica Gatita con inflamación en la zona de la cola\n Transaccion 85025970268 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-08-12 12:00:00+00 63 64 \N 1 \N \N \N +45 2024-07-14 16:00:00+00 2024-07-14 16:00:00+00 f t 2024-07-14 16:00:00 COMPLETED Clinica (Findes y feriados) Gato 10 años con vomitos Transaccion 82553732361 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-07-14 19:00:00+00 44 45 \N 1 \N \N \N +59 2024-08-03 18:00:00+00 2024-08-03 18:00:00+00 f t 2024-08-03 18:00:00 NO_REPORT Clinica (Findes y feriados) Consulta clinica Perro 2 años y 5 meses Caniche toy. Asesoramiento sobre nutricion ya que no quiere comer balanceado Transaccion 84100636450 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-08-03 21:00:00+00 58 59 \N 2 \N \N \N +62 2024-10-30 14:13:08.845+00 2024-10-30 14:13:08.845+00 f t 2024-08-08 16:30:00 COMPLETED Clinica Motivo de Consulta: Perro con grano en la pata Transaccion 84683166066 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-08-08 19:30:00+00 61 69 114 1 \N \N \N +3278 2025-11-14 18:35:42.397772+00 2025-11-14 18:35:42.39778+00 f t 2025-11-15 18:00:00 COMPLETED clinical Ecografia abdominal. 86000.00 11000.00 75000.00 2025-11-15 21:00:00+00 RD06ZO9WV1L4LKZ1N5GP7X 12160 10053 1583 90 m7uo5fq7fpfvek25h5c7guiv4k \N 1605 +1945 2025-07-30 22:40:29.9496+00 2025-07-30 22:40:29.949608+00 f t 2025-08-02 10:30:00 COMPLETED clinical vacunacion triple felina 58050.00 10550.00 47500.00 2025-08-02 13:30:00+00 Z0KV87948M67X4R02PEYDX 4202 3506 1208 89 oa9gkr3b40738ks8ap9sj4prn4 467 \N +2207 2025-08-22 21:00:58.56133+00 2025-08-22 21:00:58.561337+00 f t 2025-08-23 16:00:00 COMPLETED clinical Vacunacion anual (Sextuple y Antirrabica) 72000.00 19000.00 53000.00 2025-08-23 19:00:00+00 122793524365 7111 5818 1583 89 bh2j42u2hj2uc20ljl1i2mbuo0 268 \N +2744 2025-10-03 13:28:51.193513+00 2025-10-03 13:28:51.193523+00 f t 2025-10-03 14:00:00 COMPLETED clinical Caida, dolor en una pata 55000.00 11000.00 44000.00 2025-10-03 17:00:00+00 98570177 9932 8207 1583 114 d0p5t2l447ggg8376rqsdbuupc \N 818 +1991 2025-08-05 12:17:53.500488+00 2025-08-05 12:17:53.500497+00 f t 2025-08-14 09:30:00 NO_REPORT clinical Endocrinología 61000.00 61000.00 0.00 2025-08-14 12:30:00+00 771208812170 4848 4007 1026 98 a285ank8n17a21co4iu1i58ank 363 \N +71 2024-10-30 14:13:08.922+00 2024-10-30 14:13:08.922+00 f t 2024-08-18 16:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación anual gato Transaccion 85192947769 Cliente pagó 100% MP 47700.00 47700.00 35000.00 2024-08-18 19:00:00+00 69 71 114 1 \N \N \N +85 2024-10-30 14:13:09.026+00 2024-10-30 14:13:09.026+00 f t 2024-08-26 15:00:00 COMPLETED Chip de identificacion chip + vacunacion + desparasitacion + certificados Transaccion 85668175919 134000.00 34000.00 100000.00 2024-08-26 18:00:00+00 81 83 \N 1 \N \N \N +80 2024-08-23 17:00:00+00 2024-08-23 17:00:00+00 f t 2024-08-23 17:00:00 COMPLETED Urgencias Perrito que llora, algo le duele Transaccion 85728710071 55000.00 25000.00 30000.00 2024-08-23 20:00:00+00 77 79 114 14 56rsfe28hq8natvm5cv4ipvhp8 \N \N +88 2024-10-30 14:13:09.045+00 2024-10-30 14:13:09.045+00 f t 2024-08-27 16:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación anual gato Transacción 86017252967 53000.00 18000.00 35000.00 2024-08-27 19:00:00+00 84 86 \N 1 \N \N \N +91 2024-08-29 17:00:00+00 2024-08-29 17:00:00+00 f t 2024-08-29 17:00:00 COMPLETED Clinica Gato adulto con pérdida de pelaje en algunas zonas Transaccion 86366550928 35000.00 15000.00 20000.00 2024-08-29 20:00:00+00 86 89 \N 1 \N \N \N +92 2024-10-30 14:13:09.076+00 2024-10-30 14:13:09.076+00 f t 2024-08-30 18:30:00 NO_REPORT Vacunación (Rabia + Sext/Triple) Vacunación perro + desparasitación Transacción 86021625721 60000.00 20000.00 40000.00 2024-08-30 21:30:00+00 60 61 114 2 \N \N \N +96 2024-10-30 14:13:09.107+00 2024-10-30 14:13:09.107+00 f t 2024-09-02 09:00:00 COMPLETED Clinica Perro pequeño adulto diagnosticado epiléptico medicado con posible tumoración en cabeza. Transaccion 86286264112 35000.00 15000.00 20000.00 2024-09-02 12:00:00+00 90 94 114 1 \N \N \N +1973 2025-08-02 19:11:56.961289+00 2025-08-02 19:11:56.961298+00 f t 2025-08-02 21:00:00 COMPLETED clinical eutanasia 111000.00 23500.00 87500.00 2025-08-03 00:00:00+00 120261718733 5774 4726 1208 1 04uq01de0o44c2b0ncc3r1hn38 455 \N +74 2024-10-30 14:13:08.941+00 2024-10-30 14:13:08.941+00 f t 2024-08-19 17:00:00 NO_REPORT Clinica Consulta clinica perra Transaccion 85573388334 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-08-19 20:00:00+00 72 74 \N 1 cg3c1jf7jp95t65ctl166vs030 \N \N +69 2024-10-30 14:13:08.91+00 2024-10-30 14:13:08.91+00 f t 2024-08-17 14:45:00 NO_REPORT Clinica (Findes y feriados) Clinica perro / control Transaccion 85458087218 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-08-17 17:45:00+00 61 69 \N 1 \N \N \N +77 2024-10-30 14:13:08.963+00 2024-10-30 14:13:08.963+00 f t 2024-08-21 18:00:00 NO_REPORT Clinica Gato 12 años problemas respiratorios, maulla mucho y esta muy débil Transaccion 85850960314 Cliente abonó 100% 91000.00 91000.00 0.00 2024-08-21 21:00:00+00 57 58 \N 1 \N \N \N +70 2024-10-30 14:13:08.916+00 2024-10-30 14:13:08.916+00 f t 2024-08-18 13:00:00 COMPLETED Vacunación x 2 animales Vacunación sext + antirrábica Transacción 85183357445 Cliente pagó 50% transferencia y 50% efectivo 96364.00 53000.00 60000.00 2024-08-18 16:00:00+00 68 70 114 8 \N \N \N +84 2024-08-26 14:00:00+00 2024-08-26 14:00:00+00 f t 2024-08-26 14:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación anual perro Transaccion 85707318271 53000.00 26500.00 35000.00 2024-08-26 17:00:00+00 80 82 114 1 \N \N \N +82 2024-08-24 12:00:00+00 2024-08-24 12:00:00+00 f t 2024-08-24 12:00:00 NO_REPORT Rayos Estudios RX Transaccion 85725904249 60000.00 30000.00 45000.00 2024-08-24 15:00:00+00 72 74 \N 3 nurtqdv5mgrs8hl84b556l0ij4 \N \N +68 2024-10-30 14:13:08.905+00 2024-10-30 14:13:08.905+00 f t 2024-08-16 09:00:00 COMPLETED Vacunación x 2 animales Vacnación x 2 gatitas Transaccion 84816935309 Cliente pagó 50% transferencia y 50% efectivo 97000.00 48500.00 60000.00 2024-08-16 12:00:00+00 67 68 \N 1 tom9le113o2ktid5n51ubvtmak \N \N +83 2024-10-30 14:13:09.007+00 2024-10-30 14:13:09.007+00 f t 2024-08-24 09:00:00 COMPLETED Clinica (Findes y feriados) Control gato + corte uñas Transaccion 86004754196 35000.00 15000.00 20000.00 2024-08-24 12:00:00+00 79 81 114 1 jisgjmus1cvug7vekn0oeeuq1k \N \N +95 2024-10-30 14:13:09.101+00 2024-10-30 14:13:09.101+00 f t 2024-09-02 09:30:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación anual para perrita Moretita Transaccion 86559004628 47700.00 12700.00 35000.00 2024-09-02 12:30:00+00 89 93 \N 1 10ui80k0ionp8528f5nm9obg14 \N \N +661 2025-02-16 21:41:00.676112+00 2025-02-16 21:41:00.676121+00 f t 2025-02-17 10:30:00 COMPLETED clinical Consulta clínica por inflación en una extremidad 35000.00 7000.00 28000.00 2025-02-17 13:30:00+00 102560068782 458 542 114 1 dium5rtkmrk9dbr90isoinith8 \N \N +90 2024-08-29 11:00:00+00 2024-08-29 11:00:00+00 f t 2024-08-29 11:00:00 NO_REPORT Ecografia (vet. Paola) Ecografía Transacción 86109692169 45000.00 20000.00 25000.00 2024-08-29 14:00:00+00 85 87 114 5 6bfrscqb8j3j1ccv46bc1ldmhk \N \N +3305 2025-11-18 00:07:34.862777+00 2025-11-18 00:07:34.862785+00 f t 2025-12-05 18:30:00 NO_REPORT clinical Chequeo para Limpieza de dientes 55000.00 11000.00 44000.00 2025-12-05 21:30:00+00 88405386 13573 11191 1583 70 30ltf25iopbol940gg836v9uds \N 1644 +86 2024-10-30 14:13:09.033+00 2024-10-30 14:13:09.033+00 f t 2024-08-26 17:30:00 COMPLETED Vacunación x 4 animales Vacunación anual Transacción 85829146827 Cliente abonó seña de $47.000 164700.00 44700.00 120000.00 2024-08-26 20:30:00+00 82 84 114 1 \N \N \N +73 2024-10-30 14:13:08.935+00 2024-10-30 14:13:08.935+00 f t 2024-08-19 14:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación anual gata Transaccion 85618346044 Cliente abonó 100% 53000.00 53000.00 35000.00 2024-08-19 17:00:00+00 71 73 114 1 8c5safgna5v8s2kp8uo32nvkq8 \N \N +148 2024-10-30 14:13:09.606+00 2024-10-30 14:13:09.606+00 f t 2024-09-28 16:30:00 COMPLETED Clinica (Findes y feriados) Gato presenta vomitos desde hace 2 días y se ve desganado, tiene las orejitas un poco amarillentas. Transaccion 88774283031 49600.00 18600.00 30000.00 2024-09-28 19:30:00+00 132 138 \N 6 97dm21saqn87qqd0q6aj33oec0 \N \N +78 2024-10-30 14:13:08.969+00 2024-10-30 14:13:08.969+00 f t 2024-08-21 19:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación anual gato Transaccion 85488199787 47700.00 23850.00 35000.00 2024-08-21 22:00:00+00 75 77 114 1 8p5a7i02vnina829uksio9nges \N \N +1871 2025-07-24 17:35:11.196337+00 2025-07-24 17:35:11.196345+00 f t 2025-08-02 15:00:00 COMPLETED vaccination Vacunación anual Mal temperamento 72000.00 19000.00 53000.00 2025-08-02 18:00:00+00 119746501820 920 1025 1026 92 g86pfla1f41b5km1i1pq65onkc 463 \N +89 2024-08-29 15:00:00+00 2024-08-29 15:00:00+00 f t 2024-08-29 15:00:00 NO_REPORT Rayos 4 Radiografías Transacción 86109692169 85000.00 20000.00 65000.00 2024-08-29 18:00:00+00 85 87 114 3 8heca3jsvsvg1u22bf5pbmfj4k \N \N +2528 2025-09-17 15:02:57.089646+00 2025-09-17 15:02:57.089652+00 f t 2025-09-24 21:00:00 NO_REPORT clinical control general todo aclaro en el otro turno 0.00 0.00 0.00 2025-09-25 00:00:00+00 0 8767 7239 1208 9 bdf0ur3b00o5lp0h8mcd3ch5oo \N \N +100 2024-10-30 14:13:09.147+00 2024-10-30 14:13:09.147+00 f t 2024-09-03 18:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Clinica revisar lastimadura en los pliegues + Vacunacion perro sextuple y rabia Transaccion 86857078552 53000.00 18000.00 35000.00 2024-09-03 21:00:00+00 92 96 \N 2 \N \N \N +107 2024-10-30 14:13:09.22+00 2024-10-30 14:13:09.22+00 f t 2024-09-07 10:00:00 COMPLETED Clinica (Findes y feriados) Gato adulto con sensibilidad al tacto en la zona de la cadera Transaccion 87137300836 35000.00 15000.00 20000.00 2024-09-07 13:00:00+00 99 103 \N 2 \N \N \N +110 2024-10-30 14:13:09.248+00 2024-10-30 14:13:09.248+00 f t 2024-09-09 14:00:00 COMPLETED Clinica Gata 4 años se rasca constantemente, le han recetado pastillas y antipungas y no presenta mejorias Transaccion 86753238643 35000.00 15000.00 20000.00 2024-09-09 17:00:00+00 101 105 114 1 \N \N \N +1279 2025-05-25 20:42:56.377751+00 2025-05-25 20:42:56.377761+00 f t 2025-05-24 19:00:00 COMPLETED telemedicina Dificultad para defecar https://meet.google.com/ghp-xmms-rxe 25000.00 25000.00 0.00 2025-05-24 22:00:00+00 112727403830 1605 1548 114 89 k0ufh55uu002243obv2pgpapr8 \N \N +114 2024-10-30 14:13:09.294+00 2024-10-30 14:13:09.294+00 f t 2024-09-10 17:00:00 COMPLETED Clinica Gato 6 años hace 1 día está decaído, no está queriendo comer o tomar, intenta pero le dan como arcadas Transaccion 87503123866 35000.00 15000.00 20000.00 2024-09-10 20:00:00+00 105 109 \N 1 \N \N \N +116 2024-10-30 14:13:09.318+00 2024-10-30 14:13:09.318+00 f t 2024-09-10 18:30:00 COMPLETED Urgencias Gato adulto con diarrea Transaccion 87238583093 55000.00 25000.00 30000.00 2024-09-10 21:30:00+00 107 111 114 2 \N \N \N +2395 2025-09-05 16:04:16.934729+00 2025-09-05 16:04:16.934737+00 f t 2025-09-05 13:30:00 NO_REPORT clinical Diarrea 55000.00 11000.00 44000.00 2025-09-05 16:30:00+00 124451939189 8044 6630 1583 68 cesn4dm4351sv7p10238nlkork 132 \N +122 2024-10-30 14:13:09.369+00 2024-10-30 14:13:09.369+00 f t 2024-09-13 17:00:00 NO_REPORT Urgencias Consulta general clínica, evaluación general y cuidados. Transaccion 87490306765 55000.00 25000.00 30000.00 2024-09-13 20:00:00+00 111 116 \N 2 \N \N \N +123 2024-10-30 14:13:09.376+00 2024-10-30 14:13:09.376+00 f t 2024-09-17 16:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación anual gatita Transaccion 87668154789 53000.00 53000.00 35000.00 2024-09-17 19:00:00+00 112 117 \N 2 \N \N \N +118 2024-10-30 14:13:09.333+00 2024-10-30 14:13:09.333+00 f t 2024-09-12 09:00:00 NO_REPORT Clinica Consulta de control, revisión de estudios. Transaccion 87312850005 35000.00 15000.00 20000.00 2024-09-12 12:00:00+00 90 94 \N 1 \N \N \N +1561 2025-06-25 19:38:35.924433+00 2025-06-25 19:38:35.924439+00 f t 2025-06-25 18:00:00 NO_REPORT clinical Aplicación de inyectable 23000.00 5500.00 17500.00 2025-06-25 21:00:00+00 116344245398 3360 2881 1026 85 s193m4umu23aid50fkp3ccdleo 789 \N +103 2024-10-30 14:13:09.177+00 2024-10-30 14:13:09.177+00 f t 2024-09-05 15:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación anual perro Transaccion 86762568584 53000.00 18000.00 35000.00 2024-09-05 18:00:00+00 95 99 \N 1 \N \N \N +101 2024-10-30 14:13:09.153+00 2024-10-30 14:13:09.153+00 f t 2024-09-05 09:30:00 COMPLETED Clinica Clínica general, consejos, evaluación y manejo. Transaccion 86662150487 35000.00 15000.00 20000.00 2024-09-05 12:30:00+00 93 97 \N 2 \N \N \N +120 2024-10-30 14:13:09.351+00 2024-10-30 14:13:09.351+00 f t 2024-09-12 14:15:00 COMPLETED Clinica Gato, presenta vomitos y diarrea, tutor indica que necesita un analisis de orina ya que presuntamente tiene problemas renales Transaccion 87235205642 35000.00 15000.00 20000.00 2024-09-12 17:15:00+00 109 114 \N 1 \N \N \N +893 2025-03-25 21:41:27.464985+00 2025-03-25 21:41:27.464993+00 f t 2025-03-27 17:00:00 COMPLETED clinical Control clinico para el paciente 38500.00 8500.00 30000.00 2025-03-27 20:00:00+00 30708178787 611 714 113 1 un17hsskfk546dkie050uoi9l8 \N \N +111 2024-10-30 14:13:09.26+00 2024-10-30 14:13:09.26+00 f t 2024-09-09 21:00:00 COMPLETED Clinica Vómitos y diarrea expulsando parásitos Transaccion 87425346200 55000.00 25000.00 20000.00 2024-09-10 00:00:00+00 102 106 \N 1 98eueshcudlqklocm9na26ac3s \N \N +108 2024-10-30 14:13:09.23+00 2024-10-30 14:13:09.23+00 f t 2024-09-07 12:00:00 COMPLETED Ecografia (vet. Paola) Ecografia abdominal Transaccion 86778548787 la clienta hizo dos transacciones para abonar el total 86778548787/86757690917 50000.00 50000.00 25000.00 2024-09-07 15:00:00+00 28 28 \N 5 oa03hp1kln2oshm7a1pbg5vln8 \N \N +112 2024-10-30 14:13:09.271+00 2024-10-30 14:13:09.271+00 f t 2024-09-09 22:30:00 COMPLETED Clinica Gatito de 2 meses presenta falta de apetito y no toma agua, vomitó, tiene lagañas, espasmos, no ha hecho sus necesidades y le preocupa estado de animo. Comenta lo adopto hoy. Transaccion 87430568338 55000.00 25000.00 30000.00 2024-09-10 01:30:00+00 103 107 \N 1 0nj420u121ihn9qdb8ului8gbc \N \N +102 2024-10-30 14:13:09.165+00 2024-10-30 14:13:09.165+00 f t 2024-09-05 12:00:00 COMPLETED Vacunación x 2 animales Vacunación anual para dos gatos adultos Transaccion 86642344041 97000.00 37000.00 60000.00 2024-09-05 15:00:00+00 94 98 114 2 lndvi62ru1eote2r9cd30jqino \N \N +117 2024-10-30 14:13:09.329+00 2024-10-30 14:13:09.329+00 f t 2024-09-12 09:00:00 COMPLETED Rayos Radiografía de cadera frente y perfil perro. Transaccion 86323079928 55000.00 20000.00 35000.00 2024-09-12 12:00:00+00 77 79 114 3 \N \N \N +104 2024-10-30 14:13:09.183+00 2024-10-30 14:13:09.183+00 f t 2024-09-06 09:00:00 COMPLETED Clinica Perra 11 años se rompió la uña del dedo chiquito de una para trasera Transaccion 86756498165 35000.00 35000.00 20000.00 2024-09-06 12:00:00+00 96 100 114 2 q0rdl7j4aa7lf77ufuusiqcr9o \N \N +115 2024-10-30 14:13:09.306+00 2024-10-30 14:13:09.306+00 f t 2024-09-10 18:30:00 COMPLETED Clinica Perro, hace unos meses se le abrían las patas, se le estuvo dando medicación para las articulaciones y unas botas antideslizantes, tiembla mucho y pasa muchas horas en la cucha. Tutor solicita eutanasia, se le indica que es previa revisión. Transaccion 87421987652 35000.00 15000.00 20000.00 2024-09-10 21:30:00+00 106 110 \N 1 ac9hjkm1illisevi18518g990g \N \N +109 2024-10-30 14:13:09.236+00 2024-10-30 14:13:09.236+00 f t 2024-09-07 14:15:00 COMPLETED Clinica (Findes y feriados) Consulta general clínica por presentar sintomas como vomito, diarrea, baja energía, gatito de refugio, tutor advierte que es muy nervioso, se esconde al recibir visitas. Transaccion 86983801476 35000.00 15000.00 20000.00 2024-09-07 17:15:00+00 100 104 \N 1 dc7sce896909ejublpdqf4d7u8 \N \N +98 2024-10-30 14:13:09.132+00 2024-10-30 14:13:09.132+00 f t 2024-09-02 15:00:00 COMPLETED Clinica Consulta clinica + Certificado de Salud Transaccion 86468048513 50000.00 50000.00 27000.00 2024-09-02 18:00:00+00 91 157 114 1 33o4m6jckntn4fvhmhpskieo90 \N \N +2807 2025-10-07 21:43:45.613899+00 2025-10-07 21:43:45.613908+00 f t 2025-10-31 15:00:00 NO_REPORT clinical Inyectable 2/4 0.00 0.00 0.00 2025-10-31 18:00:00+00 Pagado 160 169 1583 89 893v5mkc2v4674qfeedctcjrfk \N 905 +1872 2025-07-24 19:36:09.607125+00 2025-07-24 19:36:09.60717+00 f t 2025-07-24 21:00:00 COMPLETED clinical Eco abdominal 62000.00 12000.00 50000.00 2025-07-25 00:00:00+00 92685001 5189 4266 113 90 720fbth528o0eklr2vujqdp7hg 546 \N +2908 2025-10-16 19:02:42.03577+00 2025-10-16 19:02:42.035781+00 f t 2025-10-17 16:00:00 NO_REPORT clinical extraccion de sangre perfil 7 + PCR vif vilef 50351773008251017 - comprobante de pago porque sumo PCR mycoplasma 231400.00 190900.00 40500.00 2025-10-17 19:00:00+00 30255737017251016 10880 9030 1208 96 bfui39h20qs1512a9sc7gfurek \N 1047 +131 2024-10-30 14:13:09.453+00 2024-10-30 14:13:09.453+00 f t 2024-09-23 13:00:00 NO_REPORT Clinica Gatita presenta muchos estornudos desde ayer 21/09. Transaccion 88540721568 35000.00 15000.00 20000.00 2024-09-23 16:00:00+00 119 124 114 2 \N \N \N +143 2024-10-30 14:13:09.56+00 2024-10-30 14:13:09.56+00 f t 2024-09-26 16:00:00 COMPLETED Clinica Perro presenta dolores cervicales fue diagnosticado con rectificado de cervicales hace unos años y comienzo nuevamente con dolor y quejas Transaccion 88895772804 41600.00 15600.00 26000.00 2024-09-26 19:00:00+00 128 134 \N 1 \N \N \N +2855 2025-10-12 20:00:08.709048+00 2025-10-12 20:00:08.709061+00 f t 2025-10-18 14:00:00 COMPLETED clinical Vacunación Anual + Chequeo \N 78000.00 21500.00 56500.00 2025-10-18 17:00:00+00 129658267050 10560 8764 \N 92 t77bif3t58nvqiiik620geq4c0 \N 972 +145 2024-10-30 14:13:09.576+00 2024-10-30 14:13:09.576+00 f t 2024-09-26 17:30:00 COMPLETED Clinica Consulta de control, revisión de estudios Transaccion 88803078880 31500.00 5500.00 26000.00 2024-09-26 20:30:00+00 122 127 \N 1 \N \N \N +146 2024-10-30 14:13:09.588+00 2024-10-30 14:13:09.588+00 f t 2024-09-26 18:30:00 COMPLETED Urgencias Gato lastimado, tiene unas peladuras en el cuerpo que se hizo Transaccion 88929595322 49600.00 18600.00 31000.00 2024-09-26 21:30:00+00 130 136 \N 1 \N \N \N +1898 2025-07-27 19:47:49.748895+00 2025-07-27 19:47:49.748902+00 f t 2025-07-27 18:00:00 COMPLETED clinical vomitos por 5 veces seguidas 50000.00 10000.00 40000.00 2025-07-27 21:00:00+00 7L8GYKNXWYZL3ZQQ2MPRZ5 5348 4391 1208 1 6foj3blbksgbag97ko695bfmlk 520 \N +149 2024-10-30 14:13:09.616+00 2024-10-30 14:13:09.616+00 f t 2024-09-30 09:00:00 COMPLETED Eutanasia (minimo) Procedimiento, eutanasia para perro Transaccion 89035906824 70000.00 20000.00 50000.00 2024-09-30 12:00:00+00 128 134 \N 1 \N \N \N +2203 2025-08-22 19:57:16.933701+00 2025-08-22 19:57:16.933707+00 f t 2025-08-26 20:00:00 COMPLETED clinical Eocgrafía Abdominal 68000.00 13000.00 55000.00 2025-08-26 23:00:00+00 122771406487 7105 5813 114 90 9i1gl5u38d1cc6h46gsdrorln4 226 \N +142 2024-10-30 14:13:09.548+00 2024-10-30 14:13:09.548+00 f t 2024-09-26 11:00:00 COMPLETED Clinica Hace 2 días le molesta algo en la boca, estornuda y a veces muestra que quiere vomitar. Transaccion 88465723763 41600.00 15600.00 26000.00 2024-09-26 14:00:00+00 127 133 114 2 \N \N \N +140 2024-10-30 14:13:09.525+00 2024-10-30 14:13:09.525+00 f t 2024-09-24 15:00:00 COMPLETED Vacunación x 3 animales Vacunación + chequeo general x 3 Transaccion 88250504575 Cliente abonó el 50% 106000.00 53000.00 70000.00 2024-09-24 18:00:00+00 115 132 114 1 gn4khcciedvnk9a7fkpm957hrk \N \N +152 2024-10-30 14:13:09.651+00 2024-10-30 14:13:09.651+00 f t 2024-09-30 17:45:00 COMPLETED Telemedicina Gato presenta irritación en el contorno de sus ojos. Transaccion 88943473943 24000.00 9000.00 15000.00 2024-09-30 20:45:00+00 134 141 \N 8 \N \N \N +147 2024-10-30 14:13:09.6+00 2024-10-30 14:13:09.6+00 f t 2024-09-27 17:30:00 NO_REPORT Telemedicina Gata con problemas para orinar Transaccion 89012432142 24000.00 9000.00 15000.00 2024-09-27 20:30:00+00 131 137 \N 8 \N \N \N +137 2024-10-30 14:13:09.495+00 2024-10-30 14:13:09.495+00 f t 2024-09-23 19:30:00 COMPLETED Vacunación x 2 animales Vacunación anual Transaccion 88532846778 97000.00 37000.00 60000.00 2024-09-23 22:30:00+00 124 129 114 1 2vl63fme2l45hd9hfdnemvb3to \N \N +2402 2025-09-06 15:28:31.525626+00 2025-09-06 15:28:31.525635+00 f t 2025-09-08 15:30:00 COMPLETED clinical Interconsulta porque comenzo con asma felino y continuo todo el invierno, antes le agarraba una semana y con la medicacion se le iba 46000.00 11000.00 35000.00 2025-09-08 18:30:00+00 125122275980 8106 6670 1208 91 02jk66ans130bvuhvr9na47hnc 107 \N +126 2024-10-30 14:13:09.4+00 2024-10-30 14:13:09.4+00 f t 2024-09-19 09:15:00 COMPLETED Clinica Gata presenta abultamiento en el abdomen, pario un gatito hace 2 días. Transaccion 88237911562 35000.00 15000.00 20000.00 2024-09-19 12:15:00+00 115 120 \N 1 oq4l2rvmqvpd80hi2o58qqvqig \N \N +130 2024-10-30 14:13:09.446+00 2024-10-30 14:13:09.446+00 f t 2024-09-21 13:00:00 NO_REPORT Ecografia (vet. Mallo) Ecografía abdominal Transaccion 88416372588 60000.00 15000.00 45000.00 2024-09-21 16:00:00+00 115 120 \N 3 8cbqnbjr5i5fe4m040lcmcdbl4 \N \N +132 2024-10-30 14:13:09.459+00 2024-10-30 14:13:09.459+00 f t 2024-09-23 16:15:00 COMPLETED Clinica Perrita con problemas de artrosis, le está costando poder levantarse, deben ayudarla. Transaccion 88555890304 35000.00 15000.00 20000.00 2024-09-23 19:15:00+00 120 125 \N 2 njvq1vvmj4li974iaineerujis \N \N +134 2024-10-30 14:13:09.478+00 2024-10-30 14:13:09.478+00 f t 2024-09-23 17:00:00 NO_REPORT Urgencias Hace 2 Días que no come casi nada y tampoco toma agua. a veces vomita Transaccion 88309444907 55000.00 25000.00 30000.00 2024-09-23 20:00:00+00 122 127 \N 1 \N \N \N +150 2024-10-30 14:13:09.627+00 2024-10-30 14:13:09.627+00 f t 2024-09-30 18:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación última dosis sextúple Transaccion 88697593815 56160.00 17160.00 39000.00 2024-09-30 21:00:00+00 60 4 \N 2 \N \N \N +133 2024-10-30 14:13:09.472+00 2024-10-30 14:13:09.472+00 f t 2024-09-23 16:30:00 NO_REPORT Clinica Perrita, desde el sabado a la noche camina rengueando de la pata delantera derecha Transaccion 88312674403 35000.00 15000.00 20000.00 2024-09-23 19:30:00+00 121 126 \N 1 \N \N \N +138 2024-10-30 14:13:09.507+00 2024-10-30 14:13:09.507+00 f t 2024-09-24 10:00:00 NO_REPORT Clinica Clínica general para perro Transaccion 88062347880 35000.00 15000.00 20000.00 2024-09-24 13:00:00+00 125 130 \N 2 \N \N \N +128 2024-10-30 14:13:09.424+00 2024-10-30 14:13:09.424+00 f t 2024-09-20 09:00:00 COMPLETED Clinica Perro, está decaído no camina y estuvo con vomitos hasta ayer Transaccion 88003911705 35000.00 15000.00 20000.00 2024-09-20 12:00:00+00 117 122 \N 1 19ime2hhraef4uh4qqbj261of8 \N \N +135 2024-10-30 14:13:09.482+00 2024-10-30 14:13:09.482+00 f t 2024-09-23 17:30:00 COMPLETED Rayos Rayos x 2 - Gata que presenta cuadro de tos y congestión para respirar, suele presentarlo en el invierno. Transaccion 87921013237 65000.00 20000.00 45000.00 2024-09-23 20:30:00+00 116 121 \N 3 vs1vs1r01g49f6vg5urcaijl8s \N \N +129 2024-10-30 14:13:09.436+00 2024-10-30 14:13:09.436+00 f t 2024-09-21 16:00:00 COMPLETED Clinica (Findes y feriados) Chequeo general, perra con diagnóstico de fiebre de Sharpei, presenta de nuevo espisodio de fiebre e inflamación en las articulaciones. Transaccion 88080239597 35000.00 15000.00 20000.00 2024-09-21 19:00:00+00 118 123 \N 1 \N \N \N +1399 2025-06-06 20:13:52.115258+00 2025-06-06 20:13:52.115312+00 f t 2025-06-06 19:00:00 COMPLETED clinical Miska estuvo internada tiene 20 años esta c antibiótico, suero y con el último análisis de sangre, le dio el resultado que tiene los glóbulos blancos altos 50000.00 10000.00 40000.00 2025-06-06 22:00:00+00 114170291312 2271 2065 1026 1 if5tl9bofv8tps00oikpd35dcg 916 \N +125 2024-10-30 14:13:09.388+00 2024-10-30 14:13:09.388+00 f t 2024-09-17 18:30:00 COMPLETED Urgencias Perro con movilidad reducida, Apoya la pata pero arrastra el empeine Transaccion 87824571929 55000.00 25000.00 30000.00 2024-09-17 21:30:00+00 114 119 \N 2 \N \N \N +127 2024-10-30 14:13:09.411+00 2024-10-30 14:13:09.411+00 f t 2024-09-19 12:00:00 COMPLETED Clinica Gata que presenta cuadro de tos y congestión para respirar, suele presentarlo en el invierno. Transaccion 87921013237 35000.00 15000.00 20000.00 2024-09-19 15:00:00+00 116 121 \N 1 j57ml0q7l28v79k9d3dtk6403g \N \N +141 2024-10-30 14:13:09.536+00 2024-10-30 14:13:09.536+00 f t 2024-09-25 10:00:00 COMPLETED Ecografia (vet. Paola) Ecografia abdominal Transaccion 88700588740 40000.00 12000.00 28000.00 2024-09-25 13:00:00+00 123 128 \N 5 hj5bc39fjsmr5r75nssmt6md7k \N \N +136 2024-10-30 14:13:09.489+00 2024-10-30 14:13:09.489+00 f t 2024-09-23 18:00:00 COMPLETED Clinica Chequeo general, perra con enfermedad crónica de vesícula Transaccion 88066082073 35000.00 15000.00 20000.00 2024-09-23 21:00:00+00 \N 123 128 \N 1 n84d5281ntjpdncgd4okpafheo \N \N +2323 2025-09-01 17:28:09.798245+00 2025-09-01 17:28:09.798267+00 f t 2025-09-03 17:00:00 CANCELLED clinical 3ra extracciones, cortisol post dexa 0.00 0.00 0.00 2025-09-03 20:00:00+00 0 5021 4145 1583 88 k5lukequdir7ouofip6fjl8dp4 \N \N +161 2024-10-30 14:13:09.731+00 2024-10-30 14:13:09.731+00 f t 2024-10-04 20:00:00 COMPLETED Urgencias Perro hace 2 días que no orina Transacción 89294291349 49600.00 18600.00 31000.00 2024-10-04 23:00:00+00 141 148 114 1 \N \N \N +1861 2025-07-23 20:27:35.904892+00 2025-07-23 20:27:35.904899+00 f t 2025-07-24 19:30:00 COMPLETED clinical Eco abdominal 62000.00 12000.00 50000.00 2025-07-24 22:30:00+00 119646779618 409 488 113 90 f1chp32ar3b1rppidukpqlc560 549 \N +168 2024-10-30 14:13:09.798+00 2024-10-30 14:13:09.798+00 f t 2024-10-08 10:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunacion inicial y chequeo general Transaccion 89002311103 Lisandro en HC le indicó hacerle un análisis de materia fecal para poder avanzar con la desparasitación. 62400.00 23400.00 39000.00 2024-10-08 13:00:00+00 147 155 \N 1 \N \N \N +1571 2025-06-26 18:46:03.798546+00 2025-06-26 18:46:03.798558+00 f t 2025-06-27 18:30:00 NO_REPORT clinical La mascota presenta dificultad para caminar con las patas traseras y rigidez en la cadera desde hace semanas. Puede llegar a estresarse 42000.00 9500.00 32500.00 2025-06-27 21:30:00+00 116453239408 3437 2940 1026 70 q8id7qc7ej84sh50d609fp2s40 770 \N +163 2024-10-30 14:13:09.754+00 2024-10-30 14:13:09.754+00 f t 2024-10-06 15:00:00 NO_REPORT Clinica (Findes y feriados) Consulta clínica para perra que presenta sangre en la orina. Transaccion 89423829107 49600.00 18600.00 31000.00 2024-10-06 18:00:00+00 143 150 \N 1 sd4n36ndmi7gdfq74utadriv7c \N \N +712 2025-02-25 00:07:39.68249+00 2025-02-25 00:07:39.682502+00 f t 2025-02-25 16:00:00 COMPLETED clinical Lastimadura en el ojo, pareciese una úlcera Prueba a ver si cambia el excel 35000.00 7000.00 28000.00 2025-02-25 19:00:00+00 102966028129 493 582 114 89 id7j30qnvq853q4b75d7bk99es \N \N +3061 2025-10-29 17:30:10.461258+00 2025-10-29 17:30:10.461272+00 f t 2025-10-29 18:00:00 COMPLETED clinical Le cuesta caminar, dolor abdominal. 55000.00 11000.00 44000.00 2025-10-29 21:00:00+00 131725442364 11855 9803 1583 114 fga7m18odnpn7v8g6clcrrii58 \N 1284 +158 2024-10-30 14:13:09.706+00 2024-10-30 14:13:09.706+00 f t 2024-10-03 15:00:00 NO_REPORT Clinica Devolucion de analisis clinicos Transaccion 89332586770 41600.00 15600.00 26000.00 2024-10-03 18:00:00+00 123 128 \N 1 d1t4ugvcc88ihgjsqnl3kshmm4 \N \N +166 2024-10-30 14:13:09.785+00 2024-10-30 14:13:09.785+00 f t 2024-10-07 10:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) vacunacion anual gata Transaccion 89048660809 68800.00 25800.00 43000.00 2024-10-07 13:00:00+00 145 153 \N 2 \N \N \N +169 2024-10-30 14:13:09.81+00 2024-10-30 14:13:09.81+00 f t 2024-10-08 17:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación 3r dosis cachorro - Séxtuple y Antirrábica. Transaccion 89513534792 56160.00 13160.00 43000.00 2024-10-08 20:00:00+00 148 156 \N 2 \N \N \N +867 2025-03-23 21:22:33.691528+00 2025-03-23 21:22:33.691536+00 f t 2025-03-23 15:00:00 COMPLETED vaccination Vacunacion anual y revision por lesiones en el cuerpo 66000.00 17000.00 49000.00 2025-03-23 18:00:00+00 30151893017250321 594 695 114 88 udutchpl4u6vqruuiq8f1kf4es \N \N +162 2024-10-30 14:13:09.743+00 2024-10-30 14:13:09.743+00 f t 2024-10-05 09:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunacion anual y chequeo general Transaccion 88995864857 68800.00 25800.00 43000.00 2024-10-05 12:00:00+00 142 149 114 1 qpo73ksa6q8hg16v0pegcm3c34 \N \N +3060 2025-10-29 17:29:47.559304+00 2025-10-29 17:29:47.559312+00 f t 2025-11-04 15:30:00 COMPLETED clinical Comenzar con vacunacion 70000.00 19000.00 51000.00 2025-11-04 18:30:00+00 WGRXJE27DEP3PGMLN7MYQL 11840 9788 1208 21 akdv5qq8q4n7i7mc7cmplc4em4 \N 1280 +174 2024-10-30 14:13:09.846+00 2024-10-30 14:13:09.846+00 f t 2024-10-10 15:00:00 COMPLETED Consulta Dermatologia Consulta para gatita, caso de dermatitis milliar. Transaccion 89904509880 48000.00 18000.00 30000.00 2024-10-10 18:00:00+00 151 160 \N 25 \N \N \N +165 2024-10-30 14:13:09.773+00 2024-10-30 14:13:09.773+00 f t 2024-10-07 08:30:00 COMPLETED Clinica Consulta clínica 2 gatos + extracción Transaccion 89350355405 Aguardando resultados de myciplasma, que demora entre 5 y 7 dias habiles 0.00 17600.00 0.00 2024-10-07 11:30:00+00 144 152 \N 1 \N \N \N +175 2024-10-30 14:13:09.858+00 2024-10-30 14:13:09.858+00 f t 2024-10-10 16:00:00 COMPLETED Clinica Consulta para perrito, está un poco obeso y hace dos semanas empezó a renguear al caminar. Transaccion 89793749993 41600.00 15600.00 26000.00 2024-10-10 19:00:00+00 152 161 \N 1 \N \N \N +179 2024-10-30 14:13:09.886+00 2024-10-30 14:13:09.886+00 f t 2024-10-14 15:00:00 COMPLETED Clinica Clínica + extracción Transaccion 89956950349 Se le ofrece 10% 43740.00 12740.00 31000.00 2024-10-14 18:00:00+00 152 161 \N 1 \N \N \N +577 2025-02-03 21:57:25.077479+00 2025-02-03 21:57:25.077486+00 t t 2025-02-03 20:30:00 NO_REPORT clinical Decaimiento, movimiento intermitente de la cabeza 41600.00 8600.00 33000.00 2025-02-03 23:30:00+00 100833912575 411 490 113 70 hfkqbko02teqhdgfgup7rgtdeg \N \N +687 2025-02-20 11:47:45.168214+00 2025-02-20 11:47:45.168221+00 t t 2025-02-21 18:00:00 PENDING clinical PRUEBA Cambie las observaciones 35000.00 7000.00 28000.00 2025-02-21 21:00:00+00 \N 346 246 110 76 sokb284lioaom0vu16th0v47ng \N \N +172 2024-10-30 14:13:09.833+00 2024-10-30 14:13:09.833+00 f t 2024-10-09 14:00:00 NO_REPORT Clinica Gata regurgitando la comida entera Transaccion 89707664119 41600.00 0.00 26000.00 2024-10-09 17:00:00+00 149 158 114 2 \N \N \N +156 2024-10-30 14:13:09.69+00 2024-10-30 14:13:09.69+00 f t 2024-10-02 10:00:00 NO_REPORT Clinica Devolucion de analisis clinicos y estudios Transaccion 89361017844 37440.00 11440.00 26000.00 2024-10-02 13:00:00+00 116 121 \N 1 v2cffdsh7r6q0r5q6564ik3bbg \N \N +167 2024-10-30 14:13:09.791+00 2024-10-30 14:13:09.791+00 f t 2024-10-07 20:00:00 NO_REPORT Urgencias Consulta general. Aplicación de eritropoyetina para gato. Transaccion 89899644020 49600.00 18600.00 31000.00 2024-10-07 23:00:00+00 146 154 \N 2 dgp2etd1obfahg6pdiubgtv40o \N \N +699 2025-02-21 19:50:23.526125+00 2025-02-21 19:50:23.526132+00 f t 2025-02-15 16:30:00 COMPLETED clinical eutanasia 124100.00 26000.00 98000.00 2025-02-15 19:30:00+00 102472860854 481 571 111 1 7aboftqm9let99on3eaegr19kg \N \N +2572 2025-09-19 23:25:23.042206+00 2025-09-19 23:25:23.042214+00 f t 2025-09-22 18:30:00 COMPLETED clinical Otra vez la dermatitis. Se rasca mucho y tiene pelada la zona donde se rasca 46000.00 11000.00 35000.00 2025-09-22 21:30:00+00 126292937355 3981 3336 1208 92 9ior1un2csa7s529duceaq8m90 \N \N +2077 2025-08-13 15:22:35.358017+00 2025-08-13 15:22:35.358024+00 f t 2025-08-13 16:00:00 NO_REPORT clinical vac. anual 64800.00 11800.00 53000.00 2025-08-13 19:00:00+00 Z0KV879486G78GJJ2PEYDX 6293 5130 1208 70 pkct65qapbh1ret040a6kpld94 369 \N +578 2025-02-03 21:57:29.012887+00 2025-02-03 21:57:29.012908+00 f t 2025-02-03 20:30:00 COMPLETED clinical Decaimiento, movimiento intermitente de la cabeza 41600.00 8600.00 33000.00 2025-02-03 23:30:00+00 100833912575 411 490 113 70 26lm51pleqev42ve518r5rngfo \N \N +159 2024-10-30 14:13:09.713+00 2024-10-30 14:13:09.713+00 f t 2024-10-03 10:30:00 COMPLETED Vacunación Sext/Triple/Tos/Vlef Vacunacion inicial gato, corte de uñas Transaccion 89094483365 62400.00 23400.00 39000.00 2024-10-03 13:30:00+00 139 146 113 1 4s1qlhbk15mo9ei7eee6bl5qr4 \N \N +170 2024-10-30 14:13:09.816+00 2024-10-30 14:13:09.816+00 f t 2024-10-08 16:30:00 NO_REPORT Urgencias Perro boxer con trompa inflamada Transaccion 89683599155 49600.00 18600.00 31000.00 2024-10-08 19:30:00+00 91 157 \N 2 i3ukp13tgvhkqt777b9beep69k \N \N +597 2025-02-05 23:49:53.736558+00 2025-02-05 23:49:53.736568+00 f t 2025-02-06 09:30:00 COMPLETED clinical ADM de Suero S/c 35000.00 7000.00 28000.00 2025-02-06 12:30:00+00 101053130781 413 492 114 1 at9c4r0dve5qkec5b6jj7pl2bs \N \N +2174 2025-08-20 17:31:36.68772+00 2025-08-20 17:31:36.687729+00 f t 2025-08-20 18:30:00 COMPLETED vaccination Antirrabica y sextuple 72000.00 19000.00 53000.00 2025-08-20 21:30:00+00 123048665464 6970 5698 1583 91 o62rsg5vq0ce902ts6416npup0 299 \N +196 2024-10-30 14:13:10.047+00 2024-10-30 14:13:10.047+00 f t 2024-10-28 13:30:00 COMPLETED Rayos x 2 2 RX para dos gatitos 3 meses Transaccion 91375322676 144000.00 144000.00 90000.00 2024-10-28 16:30:00+00 168 177 \N 3 n7i53dbng0d8m11sr00ttbthd4 \N \N +184 2024-10-30 14:13:09.932+00 2024-10-30 14:13:09.932+00 f t 2024-10-18 09:00:00 COMPLETED Clinica Perro Drenaje de glándulas perianales que se le han inflamado Transaccion 90523768715 35000.00 9000.00 26000.00 2024-10-18 12:00:00+00 123 128 \N 1 6kch8ck4jgb1fog06cgbhq50co \N \N +219 2024-11-06 19:46:16.88+00 2024-11-06 19:46:16.88+00 f t 2024-11-07 09:30:00 COMPLETED clinical Control y desparasitación 37267.00 10600.00 26667.00 2024-11-07 12:30:00+00 115 120 110 1 01g4ir8fqivc2p42v6t31t2s0g \N \N +211 2024-11-04 23:04:43.991+00 2024-11-04 23:04:43.991+00 f t 2024-11-04 18:00:00 COMPLETED vaccination Vacunación y certificado de salud 82000.00 29800.00 53000.00 2024-11-04 21:00:00+00 180 188 114 1 \N \N \N +207 2024-11-02 22:18:39.521+00 2024-11-02 22:18:39.521+00 f t 2024-11-07 19:00:00 COMPLETED clinical Control de Peso y revision 41600.00 15600.00 26000.00 2024-11-07 22:00:00+00 177 194 110 1 \N \N \N +2324 2025-09-01 17:51:22.957078+00 2025-09-01 17:51:22.957088+00 f t 2025-09-04 09:00:00 CANCELLED clinical Cortisol post dexa 0.00 0.00 0.00 2025-09-04 12:00:00+00 0 5021 4145 1583 100 8nv922tndjcrubb9msphcjnq1g \N \N +220 2024-11-06 19:46:43.644+00 2024-11-06 19:46:43.644+00 f t 2024-11-07 09:30:00 COMPLETED clinical Control y desparasitación 37267.00 10600.00 26667.00 2024-11-07 12:30:00+00 115 132 110 1 99ukm1er4gap2lhr9bq8dt7pa0 \N \N +185 2024-10-30 14:13:09.938+00 2024-10-30 14:13:09.938+00 f t 2024-10-18 17:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Gata adoptada recientemente chequeo general y vacunación Transaccion 90721297444 61920.00 18920.00 43000.00 2024-10-18 20:00:00+00 158 167 114 9 uppucvs1lum6pj5qu3eqctce7c \N \N +212 2024-11-04 23:23:40.345+00 2024-11-04 23:23:40.345+00 f t 2024-11-04 18:30:00 COMPLETED clinical Perro con nauseas 49600.00 18600.00 31000.00 2024-11-04 21:30:00+00 181 189 114 1 \N \N \N +744 2025-02-28 23:58:20.504858+00 2025-02-28 23:58:20.504871+00 f t 2025-02-28 22:00:00 NO_REPORT clinical Vomitos rojizos 41500.00 8600.00 33000.00 2025-03-01 01:00:00+00 103365721655 517 610 113 70 5ht8aapfgkdlcgd2n178cbuvio \N \N +203 2024-10-30 14:13:10.107+00 2024-10-30 14:13:10.107+00 f t 2024-11-23 09:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación de Viaje. Transaccion 91468551783 68800.00 25800.00 43000.00 2024-11-23 12:00:00+00 172 181 \N 1 peji8a1qdarp8pm6a4kccjr620 \N \N +213 2024-11-05 16:02:23.551+00 2024-11-05 16:02:23.551+00 f t 2024-11-08 09:00:00 COMPLETED vaccination Vacunación anual gato 68800.00 25800.00 43000.00 2024-11-08 12:00:00+00 182 190 \N 1 \N \N \N +189 2024-10-30 14:13:09.987+00 2024-10-30 14:13:09.987+00 f t 2024-10-23 09:30:00 COMPLETED Telemedicina Teleconsulta por medicación Transaccion 9096711721 24000.00 24000.00 15000.00 2024-10-23 12:30:00+00 \N 162 171 \N 1 \N \N \N +215 2024-11-05 18:25:58.832+00 2024-11-05 18:25:58.832+00 f t 2024-11-05 18:00:00 COMPLETED clinical Motivo de consulta: paciente con vomito con plantas y evacuaciones fuera de lugar sanitario 49600.00 49600.00 31000.00 2024-11-05 21:00:00+00 184 192 \N 1 \N \N \N +2781 2025-10-06 14:03:35.051762+00 2025-10-06 14:03:35.051771+00 f t 2025-10-07 10:00:00 NO_REPORT clinical Coproparasitologico\r\nCoprocultivo traslado $13.200\r\ncoproparasitoriogico $11.000\r\ncooprocultivo $30.500 54700.00 54700.00 0.00 2025-10-07 13:00:00+00 128263356893 9239 7660 1583 100 tb4bu3leaguk7cg7fkq18196fc \N 869 +197 2024-10-30 14:13:10.06+00 2024-10-30 14:13:10.06+00 f t 2024-10-29 16:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación perra geronte Transaccion 35143710356 68800.00 25800.00 43000.00 2024-10-29 19:00:00+00 170 179 114 1 jdoi3k8fc3eu9s6jui0hji8728 \N \N +206 2024-10-31 23:23:14.463+00 2024-10-31 23:23:14.463+00 f t 2024-10-31 18:00:00 COMPLETED clinical Perra con atrosis en pata derecha. Luego de la vacuna antirrábica y séxtuple se encuentra decaída, casi no come, no quiere tomar agua, ni hacer sus necesidades. Transacción: 92024643456 49600.00 18600.00 31000.00 2024-10-31 21:00:00+00 174 183 114 1 d8gr92r1l4lmj6dbfdbfm7jaas \N \N +208 2024-11-03 17:05:47.281+00 2024-11-03 17:05:47.281+00 f t 2024-11-03 17:30:00 NO_REPORT clinical Telemedicina Transaccion 90403935759 24000.00 0.00 0.00 2024-11-03 20:30:00+00 157 166 114 14 0mfjotr724i3009m7fgg51c94k \N \N +2806 2025-10-07 21:38:21.160989+00 2025-10-07 21:38:21.160999+00 f t 2025-10-24 15:00:00 NO_REPORT clinical Inyectable 1/4 4 visitas para inyectable\r\nDescuento por recompra -$18.400es 184000.00 44000.00 140000.00 2025-10-24 18:00:00+00 57644976 160 169 1583 89 ics74qe108vbgbbum68rabbi94 \N 904 +218 2024-11-06 14:33:13.841+00 2024-11-06 14:33:13.841+00 f t 2024-11-07 11:30:00 COMPLETED clinical Seguimiento, tiene artrosis, está tomando Canabis medicinal, en ultima consulta se le receto calmantes venta bajo receta Transacción 92237746913 24000.00 24000.00 15000.00 2024-11-07 14:30:00+00 162 171 114 1 \N \N \N +199 2024-10-30 14:13:10.082+00 2024-10-30 14:13:10.082+00 f t 2024-11-01 11:30:00 NO_REPORT Consulta Oftalmologia Chequeo de membranas en los ojos Transaccion 91759875798 65000.00 42500.00 45000.00 2024-11-01 14:30:00+00 171 180 \N 11 \N \N \N +214 2024-11-05 17:33:59.119+00 2024-11-05 17:33:59.119+00 f t 2024-11-05 09:00:00 COMPLETED clinical Control previaje parasitos 41600.00 15600.00 0.00 2024-11-05 12:00:00+00 183 191 \N 1 dfropqqhh54915lslcq1k54ul4 \N \N +187 2024-10-30 14:13:09.963+00 2024-10-30 14:13:09.963+00 f t 2024-10-21 19:30:00 COMPLETED Clinica Gata con cancer - colocación de medicamentos qué cliente proporciona junto con los descartables Transaccion 90426100969 31500.00 31500.00 26000.00 2024-10-21 22:30:00+00 160 169 \N 9 0i2pfau125jg40dtoadu6oc0og \N \N +198 2024-10-30 14:13:10.07+00 2024-10-30 14:13:10.07+00 f t 2024-10-29 19:30:00 COMPLETED Clinica Gata con cancer - colocación de medicamentos qué cliente proporciona junto con los descartables Transaccion 91004743705 31500.00 31500.00 26000.00 2024-10-29 22:30:00+00 160 169 \N 9 dm4t72o5lar7mernmrceupbgf0 \N \N +186 2024-10-30 14:13:09.95+00 2024-10-30 14:13:09.95+00 f t 2024-10-19 15:45:00 COMPLETED Telemedicina Gata de 6 años con perdida de pelaje Transaccion 91006285336 24000.00 24000.00 15000.00 2024-10-19 18:45:00+00 159 168 \N 8 40k5k7p8boh9e197da68kvi4nk \N \N +200 2024-10-30 14:13:10.086+00 2024-10-30 14:13:10.086+00 f t 2024-11-02 13:30:00 COMPLETED Rayos Radiografía de tórax Transaccion 90964815781 84000.00 24000.00 60000.00 2024-11-02 16:30:00+00 161 170 114 3 \N \N \N +216 2024-11-05 20:20:08.726+00 2024-11-05 20:20:08.726+00 f t 2024-11-05 15:00:00 COMPLETED clinical Gata con vomitos pocos frecuentes 41600.00 15600.00 26000.00 2024-11-05 18:00:00+00 185 193 110 1 \N \N \N +190 2024-10-30 14:13:09.994+00 2024-10-30 14:13:09.994+00 f t 2024-10-24 15:03:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunacion de Gato de 3 meses Transaccion 91028414317 68800.00 25800.00 43000.00 2024-10-24 18:03:00+00 163 172 \N 1 \N \N \N +188 2024-10-30 14:13:09.975+00 2024-10-30 14:13:09.975+00 f t 2024-10-21 18:42:00 COMPLETED Clinica Gato de 7,5 kg con Vomito Transaccion 90866635221 41600.00 15600.00 26000.00 2024-10-21 21:42:00+00 161 170 \N 1 \N \N \N +193 2024-10-30 14:13:10.024+00 2024-10-30 14:13:10.024+00 f t 2024-10-25 09:00:00 COMPLETED Clinica Consulta clinica por fatiga Transaccion 91142848707 0.00 0.00 31000.00 2024-10-25 12:00:00+00 \N 166 175 \N 1 \N \N \N +205 2024-10-31 23:14:08.85+00 2024-10-31 23:14:08.85+00 f t 2024-10-31 16:00:00 COMPLETED clinical Devolución de análisis de laboratorio. Transacción: 92022043138 24000.00 24000.00 15000.00 2024-10-31 19:00:00+00 \N 166 175 114 1 \N \N \N +2796 2025-10-06 23:47:41.494241+00 2025-10-06 23:47:41.494252+00 f t 2025-10-15 16:00:00 NO_REPORT clinical Vacunación Antirrábica + tos de las perreras + Vacunación anual. 39232771014 - comprobante de $19.000 por tos de las perreras 14/10 156000.00 35000.00 113000.00 2025-10-15 19:00:00+00 39116777108 7529 6193 114 89 h7dmps8m6kpjrerfm6med5mjf0 \N 883 +244 2024-11-16 21:47:29.752+00 2024-11-16 21:47:29.752+00 f t 2024-11-17 15:00:00 COMPLETED clinical Modificaciones en el pelaje, con cambios en el comportamiento. Transacción 35332087597 49600.00 18600.00 31000.00 2024-11-17 18:00:00+00 203 217 114 70 i66vhdgjdara1rs6qnuak5luhc \N \N +1103 2025-05-06 14:50:41.143514+00 2025-05-06 14:50:41.143521+00 f t 2025-05-08 19:00:00 COMPLETED vaccination cuil de la titular 27-28473584-1 por si no encontras la transacción 59500.00 15500.00 44000.00 2025-05-08 22:00:00+00 6db17cc8-3b25-4778-96d6-382b5f 824 930 112 88 0ckfrtcr0bissh4suacneb1kbk \N \N +240 2024-11-16 00:40:28.159+00 2024-11-16 00:40:28.159+00 f t 2024-11-20 09:00:00 COMPLETED clinical Vacunación antirrábica+triple felina (primer dósis) Transacción 93511828772 91520.00 20020.00 71500.00 2024-11-20 12:00:00+00 200 214 114 68 q5ik59d5r339f3apda05f2qjtc \N \N +239 2024-11-16 00:39:32.828+00 2024-11-16 00:39:32.828+00 f t 2024-11-20 09:00:00 COMPLETED clinical Vacunación antirrábica+triple felina (primer dosis) Transacción 93511828772 91520.00 20020.00 71500.00 2024-11-20 12:00:00+00 200 213 114 68 fdqdq4fokjvl2po4tu0gssodh4 \N \N +230 2024-11-13 22:24:02.121+00 2024-11-13 22:24:02.121+00 f t 2024-11-14 16:30:00 COMPLETED vaccination Vacunacion Transacción 92971805747 55040.00 120040.00 43000.00 2024-11-14 19:30:00+00 \N 194 205 113 6 dp9oqgrch71mh27fvn4no3eohs \N \N +225 2024-11-12 19:36:24.172+00 2024-11-12 19:36:24.172+00 f t 2024-11-12 17:00:00 COMPLETED clinical Incontinencia urinaria 49600.00 18600.00 31000.00 2024-11-12 20:00:00+00 190 200 110 2 3skerobhnmntq3lu4feq480c4k \N \N +235 2024-11-14 23:24:01.711+00 2024-11-14 23:24:01.711+00 f t 2024-11-16 11:30:00 COMPLETED clinical Control de la vía auditiva Transacción 93084722157 60000.00 22500.00 37500.00 2024-11-16 14:30:00+00 197 210 114 70 cgp9p3cv6f9oms694mgk81vs2g \N \N +245 2024-11-17 16:14:24.526+00 2024-11-17 16:14:24.526+00 f t 2024-11-17 14:00:00 COMPLETED clinical Lesión en la patas, dificultad de movilidad Transacción 93657729944 49600.00 18600.00 31000.00 2024-11-17 17:00:00+00 204 218 114 70 \N \N \N +234 2024-11-14 23:23:26.087+00 2024-11-14 23:23:26.087+00 f t 2024-11-16 11:30:00 COMPLETED clinical Control de la vía auditiva Transacción 93084722157 60000.00 22500.00 37500.00 2024-11-16 14:30:00+00 197 209 114 70 bel943cbe2vq1j5gnk5b5tu660 \N \N +229 2024-11-13 13:40:21.965+00 2024-11-13 13:40:21.965+00 f t 2024-11-06 10:30:00 COMPLETED vaccination Vacunación anual 68800.00 25800.00 43000.00 2024-11-06 13:30:00+00 193 204 110 1 \N \N \N +250 2024-11-20 18:50:16.06+00 2024-11-20 18:50:16.06+00 f t 2024-11-20 09:30:00 COMPLETED clinical Vacunación Transacción 93877688342 55040.00 12040.00 43000.00 2024-11-20 12:30:00+00 209 227 114 1 \N \N \N +232 2024-11-13 22:36:01.642+00 2024-11-13 22:36:01.642+00 f t 2024-11-15 09:30:00 COMPLETED vaccination Dos vacunaciones Aclarado en el primer paciente que deposito la clienta el monto total de dos vacunaciones 0.00 0.00 0.00 2024-11-15 12:30:00+00 195 207 114 9 \N \N \N +226 2024-11-12 19:49:27.903+00 2024-11-12 19:49:27.903+00 f t 2024-11-20 18:30:00 COMPLETED clinical Control y vacunacion Transacción 961202611 0.00 0.00 0.00 2024-11-20 21:30:00+00 191 201 114 70 \N \N \N +249 2024-11-19 20:08:37.006+00 2024-11-19 20:08:37.006+00 f t 2024-11-27 19:30:00 COMPLETED clinical Vaunación sextuple+antirrábica + corte de uñas. Transacción 93837056178 110080.00 25000.00 86000.00 2024-11-27 22:30:00+00 207 224 114 70 r2crv1mrrqu4fijql240h045u4 \N \N +221 2024-11-06 19:47:51.747+00 2024-11-06 19:47:51.747+00 f t 2024-11-07 09:30:00 COMPLETED clinical Control y desparasitación 37267.00 10600.00 26667.00 2024-11-07 12:30:00+00 115 195 110 1 bi62tf0meki2pj3psinpvmjggg \N \N +224 2024-11-10 18:40:45.359+00 2024-11-10 18:40:45.359+00 f t 2024-11-11 20:30:00 COMPLETED clinical Alergia generalizada Transacción 92987491762 41600.00 41600.00 26000.00 2024-11-11 23:30:00+00 188 198 114 1 egso2tao1u1kbvsucfkp93levk \N \N +251 2024-11-20 19:00:34.413+00 2024-11-20 19:00:34.413+00 f t 2024-11-23 09:30:00 COMPLETED clinical Vacunacion Transacción 93549574689 129280.00 28280.00 101000.00 2024-11-23 12:30:00+00 210 228 114 70 \N \N \N +256 2024-11-22 00:31:50.405+00 2024-11-22 00:31:50.405+00 f t 2024-11-22 09:00:00 COMPLETED clinical Devolución y control Transacción 93719096195 37440.00 16600.00 26000.00 2024-11-22 12:00:00+00 198 211 114 1 2dbkioa0rs0vnphli406jqjerg \N \N +3356 2025-11-21 16:43:20.957075+00 2025-11-21 16:43:20.957084+00 f t 2025-11-25 19:00:00 NO_REPORT clinical Vacunacion anual dos caninos, Hembra reactiva, tendra bozal, no muerde solo ladra \N 146800.00 43000.00 113000.00 2025-11-25 22:00:00+00 134126721967 14050 11591 \N 80 aab9vsp25oqe20ev6qaur59ot4 \N 1720 +254 2024-11-20 23:42:29.981+00 2024-11-20 23:42:29.981+00 f t 2024-11-20 20:30:00 COMPLETED clinical Cambios en la conducta y fatiga Transacción 93956808884 49600.00 18600.00 31000.00 2024-11-20 23:30:00+00 211 231 114 70 gf4eon9h13phfrcv35ga13n2kc \N \N +243 2024-11-16 18:56:17.962+00 2024-11-16 18:56:17.962+00 f t 2024-11-19 09:00:00 COMPLETED clinical Consulta + extraccion Transacción 93534181914 43740.00 12740.00 31000.00 2024-11-19 12:00:00+00 198 211 114 1 akm35muvco08cc15930fgujs40 \N \N +222 2024-11-07 18:10:08.319+00 2024-11-07 18:10:08.319+00 f t 2024-11-07 19:30:00 COMPLETED clinical Hace unos dias estuvo orinando fuera de sus piedras, desde el dia 6/11 comenzo a orinar con sangre 41600.00 15600.00 26000.00 2024-11-07 22:30:00+00 186 196 111 1 1rrhb2scnfl5ivmu0lf35ft3bk \N \N +246 2024-11-17 22:08:29.593+00 2024-11-17 22:08:29.593+00 f t 2024-11-18 17:30:00 COMPLETED clinical Vacunacion Triple Felina, Rabia y corte de uñas. 60640.00 12640.00 48000.00 2024-11-18 20:30:00+00 205 219 114 68 cptdh9meph16b3iek70ch3fdi0 \N \N +231 2024-11-13 22:35:07.438+00 2024-11-13 22:35:07.438+00 f t 2024-11-15 09:30:00 COMPLETED clinical Dos vacunaciones Transacción 92955191155 (abonó el total de ambos turnos) 114400.00 114400.00 71500.00 2024-11-15 12:30:00+00 195 206 114 9 \N \N \N +598 2025-02-06 14:14:32.471509+00 2025-02-06 14:14:32.471519+00 f t 2025-02-11 14:30:00 COMPLETED vaccination vacunacion anual 60750.00 15730.00 45000.00 2025-02-11 17:30:00+00 101475550584 422 502 111 74 qees041486oalvprl8pdkt4jnc \N \N +1875 2025-07-24 22:21:58.67917+00 2025-07-24 22:21:58.679184+00 f t 2025-07-24 20:00:00 COMPLETED clinical no come hace 3 dias 50000.00 10000.00 40000.00 2025-07-24 23:00:00+00 119776290966 5204 4277 1208 79 9235inht0hbrftn2ueffbu9cg0 548 \N +253 2024-11-20 19:02:26.892+00 2024-11-20 19:02:26.892+00 f t 2024-11-23 09:30:00 COMPLETED clinical Vacunacion Transacción 93549574689 0.00 0.00 0.00 2024-11-23 12:30:00+00 210 230 114 70 \N \N \N +241 2024-11-16 00:43:41.083+00 2024-11-16 00:43:41.083+00 f t 2024-11-19 10:00:00 COMPLETED clinical Controles de su vacunación y sugerencias de alimentación esta castrada Transacción 93523156524 41600.00 15600.00 26000.00 2024-11-19 13:00:00+00 201 215 114 1 \N \N \N +242 2024-11-16 18:54:00.285+00 2024-11-16 18:54:00.285+00 f t 2024-11-16 16:00:00 COMPLETED clinical Motivo de consulta: Dx presuntivo de otitis Transacción 93576541234 47680.00 8680.00 39000.00 2024-11-16 19:00:00+00 202 216 114 68 \N \N \N +237 2024-11-15 18:06:48.126+00 2024-11-15 18:06:48.126+00 f t 2024-11-16 13:00:00 COMPLETED clinical Ecografía abdominal Tenemos que pagarle la diferencia mallo 6500.00 45000.00 45000.00 2024-11-16 16:00:00+00 185 193 114 3 \N \N \N +94 2024-10-30 14:13:09.089+00 2024-10-30 14:13:09.089+00 f t 2024-09-01 10:30:00 COMPLETED Vacunación x 2 animales Vacunacion anual 2 perros adultos Transaccion 86448597844 87300.00 27300.00 60000.00 2024-09-01 13:30:00+00 88 92 \N 1 kdi65jce3jtrv4mhcc2nfdc9n0 \N \N +2330 2025-09-01 22:04:29.409001+00 2025-09-01 22:04:29.409011+00 f t 2025-09-03 11:30:00 NO_REPORT clinical 0.00 0.00 0.00 2025-09-03 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 dt6rb9b6v2o1bfispf219fvofs \N \N +779 2025-03-06 22:28:59.222064+00 2025-03-06 22:28:59.222074+00 f t 2025-03-06 18:30:00 COMPLETED clinical consulta clinica 0.00 0.00 0.00 2025-03-06 21:30:00+00 0 407 486 113 68 e8hjm4jaio2mcc9dj2erknpor4 \N \N +262 2024-11-22 23:23:11.123+00 2024-11-22 23:23:11.123+00 f t 2024-11-20 20:00:00 COMPLETED clinical Vacunación completa para Garfield, Gea, Palta.\r\nRevisar el panorama de Perlita\r\nDesparasitación de Todos internas Transacción 93813842564 206280.00 80000.00 131000.00 2024-11-20 23:00:00+00 206 221 114 70 8salof125jg3sjovvlc71ih44g \N \N +1856 2025-07-23 00:35:20.386519+00 2025-07-23 00:35:20.386527+00 f t 2025-07-23 09:00:00 COMPLETED clinical Eutanasia otra transf por 500 trnasaccion: 119560407974 111000.00 22500.00 87500.00 2025-07-23 12:00:00+00 119559041792 5087 4197 1208 1 c0p4e0e8qcd9vhnk9756qljovo 564 \N +258 2024-11-22 22:56:39.947+00 2024-11-22 22:56:39.947+00 f t 2024-11-22 20:30:00 COMPLETED clinical Control Transacción 93808935093 49600.00 18600.00 31000.00 2024-11-22 23:30:00+00 213 233 114 70 6j0k0q43r7ulgu5at8612c1cu8 \N \N +746 2025-03-01 16:28:45.630355+00 2025-03-01 16:28:45.630364+00 f t 2025-03-01 10:00:00 NO_REPORT clinical Vacunacion anual 0.00 0.00 0.00 2025-03-01 13:00:00+00 0 359 612 113 70 r2ji7gf6269mui3qj7elm5qv1k \N \N +282 2024-12-02 18:59:09.593+00 2024-12-02 18:59:09.593+00 f t 2024-11-08 16:00:00 COMPLETED clinical Vómitos intermitentes Transacción 92673220693 49600.00 18600.00 31000.00 2024-11-08 19:00:00+00 189 199 114 6 \N \N \N +275 2024-12-02 14:40:11.106+00 2024-12-02 14:40:11.106+00 f t 2024-11-04 18:30:00 COMPLETED clinical Dr Ponce le indica 4 rx 136000.00 46000.00 90000.00 2024-11-04 21:30:00+00 174 183 114 3 bk1g83lhqaeq8sheebq5niurv4 \N \N +869 2025-03-23 21:49:39.908379+00 2025-03-23 21:49:39.908389+00 f t 2025-03-27 10:00:00 NO_REPORT clinical Corte de uñas 0.00 0.00 0.00 2025-03-27 13:00:00+00 0 595 697 114 2 4flefia3c6ota82ap5a8c4hlf0 \N \N +290 2024-12-02 21:19:37.368+00 2024-12-02 21:19:37.368+00 f t 2024-12-02 19:00:00 COMPLETED clinical Control y tratamiento Transacción 94747372105 41600.00 18600.00 31000.00 2024-12-02 22:00:00+00 198 211 114 1 qgiqg96c425lo1o5be9rnba4ac \N \N +286 2024-12-02 21:01:52.297+00 2024-12-02 21:01:52.297+00 f t 2024-12-05 16:00:00 NO_REPORT clinical Vacunación + certificación Transacción 94709225451 0.00 0.00 0.00 2024-12-05 19:00:00+00 228 249 114 68 \N \N \N +263 2024-11-22 23:24:24.064+00 2024-11-22 23:24:24.064+00 f t 2024-11-20 20:00:00 COMPLETED clinical Vacunación completa para Garfield, Gea, Palta.\r\nRevisar el panorama de Perlita\r\nDesparasitación de Todos internas Transacción 93813842564 206280.00 800000.00 131000.00 2024-11-20 23:00:00+00 206 222 118 70 v2ljcd7ih5oi6cuk0nvitug714 \N \N +259 2024-11-22 23:11:01.092+00 2024-11-22 23:11:01.092+00 f t 2024-10-22 18:30:00 COMPLETED clinical Vacunación de su gato y los de su hermana (Tutor: Cristina Echegoyen) Transacción 94134308140 129280.00 28280.00 101000.00 2024-10-22 21:30:00+00 214 234 114 70 j3otvlhp1t1lit44u4vajcqffo \N \N +293 2024-12-03 17:23:01.057+00 2024-12-03 17:23:01.057+00 f t 2024-11-21 17:30:00 COMPLETED clinical Eutanasia 84680.00 8680.00 76000.00 2024-11-21 20:30:00+00 208 226 114 1 \N \N \N +2822 2025-10-08 19:08:22.272222+00 2025-10-08 19:08:22.272232+00 f t 2025-10-09 09:30:00 COMPLETED clinical extraccion rapela perfil 5 derivado rapela 0.00 0.00 0.00 2025-10-09 12:30:00+00 128585906469 10287 8540 1208 100 emsnr4s1po1m9ai3b3lg6m58ak \N 922 +273 2024-12-02 13:26:03.425+00 2024-12-02 13:26:03.425+00 f t 2024-11-01 20:00:00 COMPLETED vaccination Vacunación antirrábica+triple felina Transacción 91759875798 68800.00 25800.00 43000.00 2024-11-01 23:00:00+00 176 185 114 1 \N \N \N +260 2024-11-22 23:13:02.424+00 2024-11-22 23:13:02.424+00 f t 2024-11-22 18:30:00 COMPLETED clinical Control y vacunacion con los gatos de su hermana Delia Echegoyen Pago realizado por su hermana, transacción 94134308140 0.00 0.00 0.00 2024-11-22 21:30:00+00 215 235 114 70 igcq9lipptr51p0u04onjt2dk4 \N \N +291 2024-12-02 21:31:41.695+00 2024-12-02 21:31:41.695+00 f t 2024-12-06 18:30:00 COMPLETED clinical Otitis en su oreja izquierda 26000.00 0.00 26000.00 2024-12-06 21:30:00+00 231 252 114 70 dfclv0llv955bqcmmbpo54cb5o \N \N +284 2024-12-02 20:56:38.368+00 2024-12-02 20:56:38.368+00 f t 2024-12-01 13:30:00 COMPLETED clinical Sangrado de cuello Transacción 94632448711 41600.00 18600.00 31000.00 2024-12-01 16:30:00+00 227 247 113 68 76k3tt0mcbfkdts00m9jem25j4 \N \N +288 2024-12-02 21:13:30.822+00 2024-12-02 21:13:30.822+00 f t 2024-12-05 18:30:00 COMPLETED clinical Vacunacion con triple felina Transacción 35453001426 49920.00 10920.00 39000.00 2024-12-05 21:30:00+00 229 250 113 70 pu6h6h8hpnf7kp335j951a0mnk \N \N +2437 2025-09-09 19:09:09.204055+00 2025-09-09 19:09:09.204063+00 f t 2025-09-13 09:00:00 COMPLETED clinical extraccion para perfil basico, + pcr de vif, vilef y mycoplasma, t4 libre, tsh y colesterol 0.00 0.00 0.00 2025-09-13 12:00:00+00 \N 8117 6678 1208 100 gj3drpavl8fjun6rgkb98fhi1k \N \N +269 2024-11-28 13:26:03.678+00 2024-11-28 13:26:03.678+00 f t 2024-11-29 16:00:00 NO_REPORT telemedicina Teleconsulta por erupciones en la piel Transacción 94276353349 24000.00 24000.00 15000.00 2024-11-29 19:00:00+00 220 241 114 8 dbmhrpvpcjtrd8vudni5epis4g \N \N +261 2024-11-22 23:14:34.417+00 2024-11-22 23:14:34.417+00 f t 2024-11-22 18:30:00 COMPLETED clinical Vacunacion y control con el gato de la hermana Pago realizado por su hermana, transacción 94134308140 129280.00 28280.00 101000.00 2024-11-22 21:30:00+00 215 236 114 70 ce0tkr1g6shd488t0l8ee7a570 \N \N +283 2024-12-02 19:39:41.856+00 2024-12-02 19:39:41.856+00 f t 2024-11-15 09:00:00 COMPLETED clinical Control y extracción de sangre. Transacción 35267066890 48600.00 17600.00 31000.00 2024-11-15 12:00:00+00 184 192 114 1 \N \N \N +266 2024-11-23 21:06:31.348+00 2024-11-23 21:06:31.348+00 f t 2024-11-23 18:00:00 COMPLETED clinical Tos con expulsion de espuma Transacción 94236532866 39680.00 8680.00 31000.00 2024-11-23 21:00:00+00 217 238 114 70 \N \N \N +287 2024-12-02 21:12:09.994+00 2024-12-02 21:12:09.994+00 f t 2024-12-05 18:30:00 COMPLETED clinical Control + extracción Transacción 35452300321 38280.00 7880.00 38880.00 2024-12-05 21:30:00+00 \N 229 250 114 70 chk3ppg8fie5dbh9ongau202o8 \N \N +265 2024-11-23 21:03:35.643+00 2024-11-23 21:03:35.643+00 f t 2024-11-23 19:00:00 COMPLETED clinical Diarrea y vomitos Transacción 93913487269 39680.00 8680.00 31000.00 2024-11-23 22:00:00+00 216 237 114 70 \N \N \N +285 2024-12-02 21:01:03.013+00 2024-12-02 21:01:03.013+00 f t 2024-12-05 16:00:00 NO_REPORT clinical Vacunación + certificación Transacción 94709225451 113920.00 22240.00 91500.00 2024-12-05 19:00:00+00 228 248 114 68 \N \N \N +274 2024-12-02 13:46:36.986+00 2024-12-02 13:46:36.986+00 f t 2024-11-01 20:30:00 COMPLETED clinical Perro desganado y se queja Transacción 91828387031 49600.00 18600.00 31000.00 2024-11-01 23:30:00+00 175 184 114 1 \N \N \N +267 2024-11-24 21:52:16.37+00 2024-11-24 21:52:16.37+00 f t 2024-11-25 18:00:00 COMPLETED clinical Desmayos Transacción 93983095969 33280.00 7280.00 26000.00 2024-11-25 21:00:00+00 218 239 114 70 lgdfgfuaf8ctbn1pu0410657o0 \N \N +268 2024-11-26 17:30:03.353+00 2024-11-26 17:30:03.353+00 f t 2024-11-27 17:30:00 COMPLETED clinical Vacunacion anual + chequeo Transacción 94483690316 68800.00 25800.00 43000.00 2024-11-27 20:30:00+00 219 240 114 68 \N \N \N +323 2024-12-09 16:10:51.363+00 2024-12-09 16:10:51.363+00 f t 2024-12-08 14:00:00 COMPLETED telemedicina Posible infección urinaria 24000.00 24000.00 15000.00 2024-12-08 17:00:00+00 250 281 113 70 tues9a51l340j2q8dultb0sv94 \N \N +300 2024-12-03 21:15:42.817+00 2024-12-03 21:15:42.817+00 f t 2024-11-27 19:00:00 COMPLETED vaccination Vacunación anual para tres perros y tres gatos Transacción 94249932272 0.00 0.00 0.00 2024-11-27 22:00:00+00 \N 222 260 114 68 0oc5gnb8jc2480t1utkjgerd1c \N \N +2331 2025-09-01 22:04:44.447209+00 2025-09-01 22:04:44.447218+00 f t 2025-09-04 11:30:00 NO_REPORT clinical 0.00 0.00 0.00 2025-09-04 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 l2jvh27ourdvrijnkiujuhk638 \N \N +308 2024-12-04 23:29:12.405+00 2024-12-04 23:29:12.405+00 f t 2024-12-07 09:00:00 COMPLETED clinical Vacunación y control lesión en piel Transacción 95307542982 68800.00 25800.00 43000.00 2024-12-07 12:00:00+00 239 267 113 70 1bc4c6ld68fiplfg6dt6l68ads \N \N +301 2024-12-03 21:16:15.312+00 2024-12-03 21:16:15.312+00 f t 2024-11-27 19:00:00 COMPLETED vaccination Vacunación anual para tres perros y tres gatos Transacción 94249932272 0.00 0.00 0.00 2024-11-27 22:00:00+00 \N 222 261 114 68 aurq9jj77rp8cglit969j8kat4 \N \N +321 2024-12-09 12:49:15.294+00 2024-12-09 12:49:15.294+00 f t 2024-12-19 16:00:00 COMPLETED vaccination Vacunación anual Es vacunacion para 3 gatos pagado todo junto en la transaccion de MP 95154294527 0.00 0.00 0.00 2024-12-19 19:00:00+00 248 279 110 1 aeqk79kbp6o4ulmtugacgsbslk \N \N +322 2024-12-09 16:03:36.342+00 2024-12-09 16:03:36.342+00 f t 2024-12-08 18:00:00 COMPLETED clinical Vomitos intermitente por 3 dias 49600.00 18600.00 31000.00 2024-12-08 21:00:00+00 249 280 113 70 1p5iu61j8kklpd870vidcd8su4 \N \N +304 2024-12-03 21:17:38.516+00 2024-12-03 21:17:38.516+00 f t 2024-11-27 19:00:00 COMPLETED vaccination Vacunación anual para tres perros y tres gatos Vacunación anual para tres perros y tres gatos 0.00 0.00 0.00 2024-11-27 22:00:00+00 \N 222 264 114 68 tflhspgpk5tdt0dc47lersfs9s \N \N +297 2024-12-03 20:34:02.367+00 2024-12-03 20:34:02.367+00 f t 2024-11-27 17:00:00 COMPLETED vaccination Vacunacion anual + desparasitacion interna y externa Abonó el servicio de ambos gatos Transacción 94163391383 0.00 0.00 0.00 2024-11-27 20:00:00+00 235 257 114 68 kghb0r7d3u6c3e0uc40tgvanrs \N \N +317 2024-12-05 16:45:38.219+00 2024-12-05 16:45:38.219+00 f t 2024-12-05 18:30:00 COMPLETED clinical Consulta dermatológica para perro adulto con ojos inflamados e irritados. Transacción 95368454208 60000.00 10000.00 50000.00 2024-12-05 21:30:00+00 246 274 114 71 \N \N \N +312 2024-12-05 14:29:10.393+00 2024-12-05 14:29:10.393+00 f t 2024-11-30 15:00:00 COMPLETED clinical Control 39680.00 8680.00 31000.00 2024-11-30 18:00:00+00 243 271 111 70 dvmpobapb4naps40ehqjan4208 \N \N +309 2024-12-05 13:52:15.65+00 2024-12-05 13:52:15.65+00 f t 2024-11-29 10:00:00 COMPLETED vaccination Vacunación Transacción 94808197404 55040.00 12040.00 43000.00 2024-11-29 13:00:00+00 240 268 114 70 p30vecljcqs8d81ohcdba890gs \N \N +326 2024-12-09 16:31:11.787+00 2024-12-09 16:31:11.788+00 f t 2024-10-20 09:00:00 COMPLETED vaccination Vacunación triple felina + antirrábica para dos gatitas Transacción 91757275658 0.00 0.00 0.00 2024-10-20 12:00:00+00 169 283 114 1 \N \N \N +295 2024-12-03 19:47:03.928+00 2024-12-03 19:47:03.928+00 f t 2024-11-25 19:30:00 COMPLETED clinical Perro adulto con convulsión esporádica Transacción 94063160547 49600.00 18600.00 31000.00 2024-11-25 22:30:00+00 234 255 114 70 \N \N \N +303 2024-12-03 21:17:15.586+00 2024-12-03 21:17:15.586+00 f t 2024-11-27 19:00:00 COMPLETED vaccination Vacunación anual para tres perros y tres gatos Transacción 94249932272 0.00 0.00 0.00 2024-11-27 22:00:00+00 \N 222 263 114 68 dejcdspheu78vbnm1313vh7mjk \N \N +307 2024-12-04 20:10:16.107+00 2024-12-04 20:10:16.107+00 f t 2024-12-04 20:00:00 COMPLETED clinical Vacunación de Tos Transacción 35496857432 62400.00 23400.00 39000.00 2024-12-04 23:00:00+00 92 96 113 68 \N \N \N +313 2024-12-05 15:08:26.026+00 2024-12-05 15:08:26.026+00 f t 2024-12-01 15:30:00 COMPLETED clinical Lesion ulcerativa en lomo. Leia es una perra de 11 años. Amaneció ayer con parte del lomo pelado, por lo que me dijeron de rascárselo/mordérselo Transaccion MP: 94971705808 57600.00 18600.00 39000.00 2024-12-01 18:30:00+00 244 272 110 21 \N \N \N +306 2024-12-04 20:08:40.936+00 2024-12-04 20:08:40.936+00 f t 0024-12-04 19:00:00 COMPLETED clinical Inmovilidad en patas traseras Transacción 94941428049 49600.00 18600.00 31000.00 0024-12-04 22:53:48+00 238 266 113 70 \N \N \N +311 2024-12-05 14:24:52.277+00 2024-12-05 14:24:52.277+00 f t 2024-11-30 17:30:00 COMPLETED clinical Control Transacción 94552620553 69680.00 8680.00 61000.00 2024-11-30 20:30:00+00 242 270 114 21 02h8eoarac820i1dk2bked9bc4 \N \N +294 2024-12-03 19:31:09.971+00 2024-12-03 19:31:09.971+00 f t 2024-11-25 14:30:00 COMPLETED vaccination Aplicación antirrábica Transacción 94052556797 48000.00 18000.00 30000.00 2024-11-25 17:30:00+00 233 254 114 2 uoholt3f9ojia7s5pvg84dc8rg \N \N +298 2024-12-03 20:57:14.272+00 2024-12-03 20:57:14.272+00 f t 2024-11-27 18:30:00 COMPLETED clinical Cambio pigmentación en la oreja, con perdida del pelo. Transacción 94586715996 41600.00 15600.00 26000.00 2024-11-27 21:30:00+00 236 258 114 70 q8ih3m4kq4vcogvin2phhgrlqg \N \N +154 2024-10-30 14:13:09.674+00 2024-10-30 14:13:09.674+00 f t 2024-10-01 14:00:00 COMPLETED Clinica Gata esta con estornudos y mosquito blanco/gris con mal olor Ella tiene libreta sanitaria y todas las vacunas correspondientes Transaccion 89004972069 49600.00 18600.00 31000.00 2024-10-01 17:00:00+00 136 143 114 1 8744elqhh56equphe195kk7dj8 \N \N +201 2024-10-30 14:13:10.091+00 2024-10-30 14:13:10.091+00 f t 2024-11-05 19:30:00 COMPLETED Clinica Gata con cancer - colocación de medicamentos qué cliente proporciona junto con los descartables Transaccion 91004743705 31500.00 31500.00 26000.00 2024-11-05 22:30:00+00 160 169 \N 9 pcrph98fdh2e3rlkvfl52e6v2s \N \N +289 2024-12-02 21:18:33.209+00 2024-12-02 21:18:33.209+00 f t 2024-12-11 10:00:00 COMPLETED clinical Prequirúrgico cardiológico a domicilio. Transacción 95083666404 65000.00 9000.00 56000.00 2024-12-11 13:00:00+00 \N 230 251 113 7 gk4bgq38i3k51q0fau1jrj77qc \N \N +314 2024-12-05 15:40:49.104+00 2024-12-05 15:40:49.104+00 f t 2024-11-29 12:00:00 COMPLETED clinical Gatita con una posible lesión en la patita. Transacción 94711520588 33280.00 7280.00 26000.00 2024-11-29 15:00:00+00 245 273 114 1 bf9lqg86qa5dt5rprhnf1no28c \N \N +318 2024-12-07 16:36:42.228+00 2024-12-07 16:36:42.228+00 f t 2024-12-07 14:00:00 COMPLETED clinical Desparasitación + corte de uñas 75040.00 17040.00 58000.00 2024-12-07 17:00:00+00 \N 139 146 113 70 ce5gnvkgs0lk5j4i85semmu08o \N \N +325 2024-12-09 16:30:49.479+00 2024-12-09 16:30:49.479+00 f t 2024-10-29 09:00:00 COMPLETED vaccination Vacunación triple felina + antirrábica para dos gatitas Transacción 91757275658 114000.00 42900.00 71500.00 2024-10-29 12:00:00+00 169 178 114 1 \N \N \N +316 2024-12-05 16:42:06.922+00 2024-12-05 16:42:06.922+00 f t 2024-12-11 10:00:00 COMPLETED vaccination Vacunación anual x2, colocación de chip de identidad x1 Transacción 95035425329 177400.00 60900.00 116500.00 2024-12-11 13:00:00+00 247 275 114 1 \N \N \N +302 2024-12-03 21:16:49.116+00 2024-12-03 21:16:49.116+00 f t 2024-11-27 19:00:00 COMPLETED vaccination Vacunación anual para tres perros y tres gatos Transacción 94249932272 0.00 0.00 0.00 2024-11-27 22:00:00+00 \N 222 262 114 68 771b6sg2fdbcji4s5ednl8t648 \N \N +299 2024-12-03 21:14:45.686+00 2024-12-03 21:14:45.686+00 f t 2024-11-27 19:00:00 COMPLETED vaccination Vacunación anual para tres perros y tres gatos Transacción: 94249932272 Abona la seña de todos los servicios acá 258560.00 56560.00 202000.00 2024-11-27 22:00:00+00 \N 222 259 114 68 \N \N \N +209 2024-11-03 17:32:49.496+00 2024-11-03 17:32:49.496+00 f t 2024-11-03 16:00:00 NO_REPORT clinical Control px con artrosis en patas traseras 49600.00 18600.00 31000.00 2024-11-03 19:00:00+00 178 186 114 14 jfodgsfcl507ic4vcq0bvunjgc \N \N +354 2024-12-16 23:29:54.671+00 2024-12-16 23:29:54.671+00 f t 2024-12-16 18:30:00 COMPLETED clinical Vacunacion Anual 68800.00 25800.00 43000.00 2024-12-16 21:30:00+00 268 311 113 70 89422h34ljl4an8oth6c04uqm8 \N \N +344 2024-12-10 19:28:02.663+00 2024-12-10 19:28:02.663+00 f t 2024-07-09 18:00:00 COMPLETED clinical Gato que vomita la comida Transacción 82157934165 35000.00 10000.00 20000.00 2024-07-09 21:00:00+00 258 300 114 1 \N \N \N +334 2024-12-10 14:50:56.675+00 2024-12-10 14:50:56.675+00 f t 2024-08-18 18:00:00 COMPLETED vaccination Vacunación sext + antirrábica Transacción 85183357445 Cliente pagó 50% transferencia y 50% efectivo 0.00 0.00 0.00 2024-08-18 21:00:00+00 68 290 114 8 \N \N \N +332 2024-12-10 13:11:06.756+00 2024-12-10 13:11:06.756+00 f t 2024-12-10 19:30:00 COMPLETED clinical Perro adopatado con tos de la perrera 49600.00 18600.00 31000.00 2024-12-10 22:30:00+00 253 288 113 68 \N \N \N +331 2024-12-09 19:41:13.968+00 2024-12-09 19:41:13.968+00 f t 2024-12-09 20:00:00 COMPLETED clinical Gata hembra que dio a luz hace 24hs con posible mastitis 49600.00 18600.00 31000.00 2024-12-09 23:00:00+00 252 287 110 1 \N \N \N +347 2024-12-11 14:13:47.184+00 2024-12-11 14:13:47.184+00 f t 2024-12-13 10:00:00 COMPLETED vaccination vacunación solo antirrabica 55040.00 12040.00 43000.00 2024-12-13 13:00:00+00 261 304 111 1 \N \N \N +358 2024-12-18 14:16:19.858+00 2024-12-18 14:16:19.858+00 f t 2024-12-20 18:00:00 COMPLETED vaccination vacunacion anual perro 68800.00 25800.00 43000.00 2024-12-20 21:00:00+00 271 319 111 70 5ct2q8bf2bap0qmd090v3q380c \N \N +328 2024-12-09 17:01:51.24+00 2024-12-09 17:01:51.24+00 f t 2024-12-12 18:30:00 CANCELLED clinical Vacunación + certificación para viaje Interprovincial. MPago: 94896178282 \r\nCANCELADO y pago devuelto 0.00 0.00 0.00 2024-12-12 21:30:00+00 232 253 110 72 ng84ko2p95b24svasltnh4io9o \N \N +345 2024-12-10 20:19:58.829+00 2024-12-10 20:19:58.829+00 f t 2024-07-18 19:00:00 COMPLETED clinical Gato defeca con sangre Transacción 82816076427 55000.00 30000.00 30000.00 2024-07-18 22:00:00+00 259 303 114 1 \N \N \N +329 2024-12-09 17:36:05.037+00 2024-12-09 17:36:05.037+00 f t 2024-09-05 12:00:00 COMPLETED vaccination Vacunación anual para dos gatos adultos Transaccion 86642344041 0.00 0.00 0.00 2024-09-05 15:00:00+00 94 284 114 2 u5lcnpfqle8a947kdt7hcb7c0s \N \N +339 2024-12-10 17:13:27.535+00 2024-12-10 17:13:27.535+00 f t 2024-08-26 17:30:00 COMPLETED clinical Vacunación anual Transacción 85829146827 Cliente abonó seña de $47.000 0.00 0.00 0.00 2024-08-26 20:30:00+00 82 296 114 1 \N \N \N +360 2024-12-19 13:34:21.614+00 2024-12-19 13:34:21.614+00 f t 2024-12-21 10:30:00 COMPLETED vaccination segunda dosis sextuple 62400.00 23400.00 39000.00 2024-12-21 13:30:00+00 240 268 111 70 oeek2p6rjoq81j51tjigf3ovig \N \N +363 2024-12-20 18:19:09.271+00 2024-12-20 18:19:09.271+00 f t 2024-12-21 11:00:00 COMPLETED clinical Vacunación y revisión de 2 gatos Noha y Mia 114400.00 42900.00 71500.00 2024-12-21 14:00:00+00 274 322 110 1 7riian0qnnsism6seg2tmrr8p8 \N \N +340 2024-12-10 17:14:30.142+00 2024-12-10 17:14:30.142+00 f t 2024-08-26 17:30:00 COMPLETED vaccination Vacunación anual Transacción 85829146827 Cliente abonó seña de $47.000 0.00 0.00 0.00 2024-08-26 20:30:00+00 82 297 114 1 \N \N \N +357 2024-12-17 18:51:54.34+00 2024-12-17 18:51:54.34+00 f t 2024-12-18 14:00:00 COMPLETED vaccination Vacunacion x 6 + desparasitacion int/ext x6 357260.00 357260.00 316500.00 2024-12-18 17:00:00+00 270 313 110 68 vpchu4i74g1i8t9m6bnlsov008 \N \N +362 2024-12-20 16:55:56.098+00 2024-12-20 16:55:56.098+00 f t 2024-12-19 20:30:00 COMPLETED clinical Control clinico urgencia posible leucemia felina 49600.00 18600.00 31000.00 2024-12-19 23:30:00+00 273 321 110 68 ugnfogcptjqcrftgko90cbbh90 \N \N +335 2024-12-10 14:54:46.338+00 2024-12-10 14:54:46.338+00 f t 2024-12-11 13:00:00 COMPLETED vaccination vacunación anual (sextuple + antirrabica) 55040.00 12040.00 43000.00 2024-12-11 16:00:00+00 254 291 111 14 ul68r4a2ruhimqak5i9tsm8lcs \N \N +343 2024-12-10 18:49:51.843+00 2024-12-10 18:49:51.843+00 f t 2024-07-07 18:00:00 NO_REPORT clinical Urgencia: Cambio de suero, administración de medicación 35000.00 17500.00 17500.00 2024-07-07 21:00:00+00 257 299 114 1 hmb4ss3l8ru8jmnf5vcd2jjn00 \N \N +350 2024-12-12 13:49:52.112+00 2024-12-12 13:49:52.112+00 f t 2024-06-14 18:00:00 NO_REPORT vaccination Vacunación 46000.00 16000.00 30000.00 2024-06-14 21:00:00+00 263 307 114 2 \N \N \N +355 2024-12-16 23:33:16.226+00 2024-12-16 23:33:16.226+00 f t 2024-12-17 11:00:00 COMPLETED clinical Ecografia abdominal- Dx presuntivo de ictericia 55000.00 15000.00 40000.00 2024-12-17 14:00:00+00 \N 269 312 113 5 9ukidi9uh7objbb00lhqm692ng \N \N +336 2024-12-10 15:50:02.114+00 2024-12-10 15:50:02.114+00 f t 2024-12-12 10:00:00 COMPLETED clinical Vacunación triple felina y corte de garras para gato Bombay de 7años pesa 8kg 62400.00 23400.00 39000.00 2024-12-12 13:00:00+00 256 293 110 68 \N \N \N +359 2024-12-18 17:46:58.921+00 2024-12-18 17:46:58.921+00 f t 2024-12-11 10:00:00 COMPLETED vaccination Vacunacion anual caniche Los valores de la consulta estan registrados en el turno del otro paciente que tienen la tutora 0.00 0.00 0.00 2024-12-11 13:00:00+00 247 276 110 1 \N \N \N +356 2024-12-17 13:26:25.055+00 2024-12-17 13:26:25.055+00 f t 2024-12-17 12:30:00 COMPLETED clinical absceso en el lateral izquierdo del rostro, presentando herida abierta y drenaje. 49600.00 18600.00 31000.00 2024-12-17 15:30:00+00 227 247 111 68 nm26plrikn9gbn1bq2g1s9rcsc \N \N +338 2024-12-10 16:17:22.106+00 2024-12-10 16:17:22.106+00 f t 2024-12-19 14:00:00 COMPLETED vaccination Vacunación anual Gato 55040.00 12040.00 43000.00 2024-12-19 17:00:00+00 255 292 111 1 3egoisfq8av93pihmdv798nupo \N \N +349 2024-12-11 23:10:13.076+00 2024-12-11 23:10:13.076+00 f t 2024-12-17 09:00:00 COMPLETED clinical Vacunación anual gato Los valores de la visita $$ estan en el otro paciente de la misma tutora 0.00 0.00 0.00 2024-12-17 12:00:00+00 262 305 110 68 qmrij7shgvek9bgfd76cqh86es \N \N +352 2024-12-12 17:09:24.218+00 2024-12-12 17:09:24.218+00 f t 2024-12-12 14:30:00 COMPLETED clinical Gato con posible obstruccion urinaria 49600.00 18600.00 31000.00 2024-12-12 17:30:00+00 \N 265 309 113 68 \N \N \N +351 2024-12-12 17:05:01.978+00 2024-12-12 17:05:01.978+00 f t 2024-01-16 12:00:00 NO_REPORT vaccination Vacunación x2 64000.00 32000.00 32000.00 2024-01-16 15:00:00+00 110 115 114 9 \N \N \N +348 2024-12-11 23:09:06.961+00 2024-12-11 23:09:06.961+00 f t 2024-12-17 09:00:00 COMPLETED vaccination Vacunación anual gato 114400.00 42900.00 71500.00 2024-12-17 12:00:00+00 262 306 110 68 g18drf7qo0ml6cucgqntskters \N \N +342 2024-12-10 18:48:41.202+00 2024-12-10 18:48:41.202+00 f t 2024-07-06 18:30:00 COMPLETED clinical Urgencia: Cambio de suero , administración de medicación 55000.00 27500.00 27500.00 2024-07-06 21:30:00+00 257 299 114 1 320aeqj4mau94ff84n938uu27o \N \N +346 2024-12-11 13:06:36.7+00 2024-12-11 13:06:36.7+00 f t 2024-12-11 17:30:00 COMPLETED telemedicina chequeo de estudios 21600.00 21600.00 15000.00 2024-12-11 20:30:00+00 250 281 111 70 69tlf95288uedtb0pdgfllus4s \N \N +341 2024-12-10 17:14:59.37+00 2024-12-10 17:14:59.37+00 f t 2024-08-26 17:30:00 COMPLETED vaccination Vacunación anual Transacción 85829146827 Cliente abonó seña de $47.000 0.00 0.00 0.00 2024-08-26 20:30:00+00 82 298 114 1 \N \N \N +386 2025-01-03 17:32:12.072+00 2025-01-03 17:32:12.072+00 f t 2025-01-03 15:00:00 COMPLETED vaccination Vacunación anual 60750.00 15750.00 45000.00 2025-01-03 18:00:00+00 \N 291 345 113 2 30djnqkpljh3coonpd50ali6lk \N \N +370 2024-12-21 17:49:25.765+00 2024-12-21 17:49:25.765+00 f t 2024-12-23 15:30:00 COMPLETED clinical Control clinico 0.00 0.00 0.00 2024-12-23 18:30:00+00 277 327 113 68 1aeo9batqfsdk8t59q3bg0nvmk \N \N +2823 2025-10-08 19:11:10.901483+00 2025-10-08 19:11:10.901492+00 f t 2025-10-09 15:00:00 COMPLETED clinical Vacuncion anual felino 78000.00 21500.00 56500.00 2025-10-09 18:00:00+00 128588477237 10288 8541 1583 1 iq6hfa0877c02df0tsp23mjp48 \N 924 +382 2024-12-31 14:09:21.772+00 2024-12-31 14:09:21.772+00 f t 2025-01-03 19:30:00 NO_REPORT clinical Gato que presenta vomitos y diarrea intermitente y pérdida de peso 41600.00 15600.00 26000.00 2025-01-03 22:30:00+00 287 341 111 70 n3alq60qrlkpmm8j2pfr9kbig8 \N \N +390 2025-01-05 19:57:44.382+00 2025-01-05 19:57:44.382+00 f t 2025-01-04 09:00:00 COMPLETED telemedicina Otitis Abonar a guasco 25000.00 25000.00 14000.00 2025-01-04 12:00:00+00 295 349 113 9 t7rughnposeuttnl46joj7fdhs \N \N +395 2025-01-06 16:12:36.583+00 2025-01-06 16:12:36.583+00 f t 2025-01-07 09:00:00 NO_REPORT clinical Consulta clinica + corte de uñas 42000.00 9000.00 33000.00 2025-01-07 12:00:00+00 299 353 111 1 7nffnrmj6407d8dam188riu2rg \N \N +383 2025-01-02 18:22:48.175+00 2025-01-02 18:22:48.175+00 f t 2025-01-07 10:30:00 NO_REPORT vaccination vacunacion anual 60750.00 15750.00 45000.00 2025-01-07 13:30:00+00 288 342 111 1 pgkm3cu9lleni3q76378l2gk68 \N \N +310 2024-12-05 13:55:22.253+00 2024-12-05 13:55:22.253+00 f t 2024-11-30 17:30:00 COMPLETED clinical Control Transacción 94553562895 39680.00 8680.00 31000.00 2024-11-30 20:30:00+00 241 269 114 70 rbsd0h65f9onv7h0t2nuj7hpg4 \N \N +402 2025-01-09 23:50:15.036+00 2025-01-09 23:50:15.036+00 f t 2025-01-15 13:00:00 COMPLETED clinical Vacunacion anual 60750.00 15750.00 45000.00 2025-01-15 16:00:00+00 35869861332 305 362 113 68 \N \N \N +401 2025-01-09 23:44:55.171+00 2025-01-09 23:44:55.171+00 f t 2025-01-10 17:00:00 COMPLETED clinical Vacunación anual 0.00 0.00 0.00 2025-01-10 20:00:00+00 0 304 360 113 77 \N \N \N +367 2024-12-21 17:29:26.223+00 2024-12-21 17:29:26.223+00 f t 2024-12-21 11:00:00 COMPLETED clinical Vacunacion anual 0.00 0.00 0.00 2024-12-21 14:00:00+00 \N 276 325 113 74 h4dshdncolsgedtfit31gl35g4 \N \N +372 2024-12-22 19:41:13.441+00 2024-12-22 19:41:13.441+00 f t 2024-12-22 16:00:00 COMPLETED clinical Perro golden de cinco años demuestra molestia en una pata Transacción 97191826436 49600.00 18600.00 31000.00 2024-12-22 19:00:00+00 279 331 114 70 69p74elock16g9t9ufkmt02140 \N \N +366 2024-12-21 17:27:58.384+00 2024-12-21 17:27:58.384+00 f t 2024-12-21 11:00:00 COMPLETED clinical Vacunacion anual 114400.00 114400.00 0.00 2024-12-21 14:00:00+00 276 326 113 74 aia6l9cvh2b40792nntv09bmv8 \N \N +373 2024-12-23 16:23:09.448+00 2024-12-23 16:23:09.448+00 f t 2024-12-23 13:30:00 COMPLETED clinical perra con dificultades para caminar 49600.00 18600.00 31000.00 2024-12-23 16:30:00+00 280 332 111 1 bmt4t1vkrntuqp91q0ik5hh458 \N \N +381 2024-12-31 12:58:02.055+00 2024-12-31 12:58:02.055+00 f t 2025-01-03 18:30:00 COMPLETED vaccination Vacunación anual antirrábica y triple felina 68800.00 25800.00 43000.00 2025-01-03 21:30:00+00 \N 286 340 118 70 \N \N \N +392 2025-01-05 20:07:08.349+00 2025-01-05 20:07:08.349+00 f t 2025-01-05 18:00:00 NO_REPORT clinical Lesion y eritema en la cabeza. 41600.00 8600.00 33000.00 2025-01-05 21:00:00+00 297 351 113 70 o5lplfkp7vu860uiabn6q67co8 \N \N +374 2024-12-23 23:59:51.562+00 2024-12-23 23:59:51.562+00 f t 2024-12-23 17:00:00 COMPLETED clinical Posible infeccion urinaria 49600.00 18600.00 31000.00 2024-12-23 20:00:00+00 281 333 113 2 6npc8ppem4dvu2l5pp8hchbt9g \N \N +1810 2025-07-18 12:53:28.533304+00 2025-07-18 12:53:28.533313+00 f t 2025-07-26 09:00:00 COMPLETED clinical Extracción de sangre 49700.00 11700.00 38000.00 2025-07-26 12:00:00+00 38082273917 3820 3232 1026 91 1hes70vudbuee6cheae0ous0t8 533 \N +223 2024-11-08 15:37:19.136+00 2024-11-08 15:37:19.136+00 f t 2024-11-08 17:00:00 COMPLETED clinical Clínica estuvo algunos días perdido en el campo, ahora está decaído - Además requiere desparasitación. Peso 20/25kg 45000.00 0.00 45000.00 2024-11-08 20:00:00+00 187 197 110 6 \N \N \N +3125 2025-11-04 15:39:58.607319+00 2025-11-04 15:39:58.607331+00 f t 2025-11-29 14:00:00 PENDING clinical certificado de salud y desparacitacion desc. recompra 55260.00 9260.00 46000.00 2025-11-29 17:00:00+00 50228408007251104 10142 8399 1208 92 j24mu5h63g4n3reb5cpmgq36ac \N 1387 +391 2025-01-05 20:01:54.805+00 2025-01-05 20:01:54.805+00 f t 2025-01-07 12:00:00 COMPLETED clinical Control clinico 35000.00 7000.00 28000.00 2025-01-07 15:00:00+00 296 350 111 2 \N \N \N +375 2024-12-24 00:02:32.727+00 2024-12-24 00:02:32.727+00 f t 2024-12-24 10:00:00 COMPLETED clinical Posible infección urinaria 52000.00 52000.00 47000.00 2024-12-24 13:00:00+00 282 334 113 70 80kvs6arjjslvlm8pdqghio3v0 \N \N +369 2024-12-21 17:48:42.655+00 2024-12-21 17:48:42.655+00 f t 0024-12-23 15:30:00 COMPLETED clinical Clinica 0.00 0.00 0.00 0024-12-23 19:23:48+00 277 329 113 68 q66b43ffcklg2o7b45c174tkek \N \N +387 2025-01-03 17:40:58.5+00 2025-01-03 17:40:58.5+00 f t 2025-01-04 10:30:00 COMPLETED vaccination Vacunación Anual 60750.00 15750.00 45000.00 2025-01-04 13:30:00+00 292 346 113 70 \N \N \N +371 2024-12-22 18:45:25.549+00 2024-12-22 18:45:25.549+00 f t 2024-12-22 15:00:00 COMPLETED clinical Antirrábica+certificado de salud Transacción 97186043490 62000.00 22000.00 40000.00 2024-12-22 18:00:00+00 278 330 114 70 o6jufhi08e7tnaee9p590r491k \N \N +404 2025-01-10 19:13:36.979+00 2025-01-10 19:13:36.979+00 f t 2025-01-10 10:30:00 NO_REPORT clinical Control Clinico 35000.00 7000.00 28000.00 2025-01-10 13:30:00+00 \N 308 365 113 2 28d6nastgftao5gsn92qlrj0tk \N \N +379 2024-12-29 22:04:56.083+00 2024-12-29 22:04:56.083+00 f t 2025-01-07 09:00:00 NO_REPORT clinical convulsiones sin motivo, perdida de peso importante 41600.00 15600.00 26000.00 2025-01-07 12:00:00+00 284 337 113 68 in1hodp5asobuk6m11ip5mplhk \N \N +380 2024-12-30 16:39:25.851+00 2024-12-30 16:39:25.851+00 f t 2025-01-02 19:30:00 COMPLETED vaccination Vacunación anual gato hembra, vacunacion inicial gato macho 114400.00 42900.00 71500.00 2025-01-02 22:30:00+00 285 338 111 9 \N \N \N +384 2025-01-03 14:04:48.646+00 2025-01-03 14:04:48.646+00 f t 2025-01-04 15:00:00 NO_REPORT vaccination vacunacion anual 60750.00 15750.00 45000.00 2025-01-04 18:00:00+00 \N 289 343 111 74 9psl5glgl3vg5ckal9amsakq54 \N \N +385 2025-01-03 15:39:01.372+00 2025-01-03 15:39:01.372+00 f t 2025-01-06 17:00:00 NO_REPORT vaccination vacunacion anual 60750.00 15750.00 45000.00 2025-01-06 20:00:00+00 290 344 111 77 \N \N \N +399 2025-01-09 16:01:57.893+00 2025-01-09 16:01:57.893+00 f t 2025-01-10 12:30:00 NO_REPORT clinical Chequeo general x 3 105000.00 21000.00 84000.00 2025-01-10 15:30:00+00 98817757902 303 359 111 9 \N \N \N +393 2025-01-05 20:11:25.315+00 2025-01-05 20:11:25.315+00 f t 2025-01-05 14:30:00 COMPLETED clinical Vomitos a repetición. 25000.00 25000.00 15000.00 2025-01-05 17:30:00+00 298 352 113 68 \N \N \N +389 2025-01-05 19:53:18.765+00 2025-01-05 19:53:18.765+00 f t 2025-01-04 11:00:00 COMPLETED clinical Control Clinico 35000.00 7000.00 28000.00 2025-01-04 14:00:00+00 294 348 113 68 \N \N \N +400 2025-01-09 23:44:23.9+00 2025-01-09 23:44:23.9+00 f t 2025-01-10 17:00:00 COMPLETED clinical Vacunación anual 121500.00 31500.00 90000.00 2025-01-10 20:00:00+00 50234302009250107 304 361 113 77 \N \N \N +430 2025-01-16 16:59:47.243+00 2025-01-16 16:59:47.243+00 f t 2025-01-16 18:30:00 COMPLETED clinical Rstuvo todo el día hechada sobre la alfombra, y si bien comió y tomó agua, no estuvo como siempre. Le he sentido el cuerpo caliente , pero hoy ya no lo siento así. Si bien come, toma agua y hace pis, su comportamiento está más enlentecido. 41600.00 8600.00 33000.00 2025-01-16 21:30:00+00 \N 328 391 110 71 \N \N \N +1961 2025-08-01 17:50:29.399735+00 2025-08-01 17:50:29.399745+00 f t 2025-08-01 20:00:00 COMPLETED clinical Eco abdominal 78000.00 13000.00 65000.00 2025-08-01 23:00:00+00 120646805604 5706 4664 1026 90 8ilkm3f12g22gdm5hds715a4ac 469 \N +916 2025-03-31 16:02:00.822971+00 2025-03-31 16:02:00.822982+00 f t 2025-03-31 18:30:00 NO_REPORT clinical ecografia abdominal 46800.00 6800.00 40000.00 2025-03-31 21:30:00+00 106443980039 123 128 111 90 9751h8scanduh3t2hi0tqsuaac \N \N +878 2025-03-24 16:44:45.678057+00 2025-03-24 16:44:45.678066+00 f t 2025-03-25 10:00:00 COMPLETED vaccination vacunación anual 66000.00 17000.00 49000.00 2025-03-25 13:00:00+00 105698498893 601 703 114 88 n7egmlpcm7bobaftajb3tia3v0 \N \N +432 2025-01-16 18:48:44+00 2025-01-16 18:48:44+00 f t 2025-01-17 16:00:00 COMPLETED clinical Vacunacion anual x 2 Precios en el otro turno paciente 0.00 0.00 0.00 2025-01-17 19:00:00+00 \N 321 383 110 9 su2ntv3u86oa704pvuvb9j00ac \N \N +427 2025-01-16 14:41:10.832+00 2025-01-16 14:41:10.832+00 f t 2025-01-20 12:00:00 COMPLETED clinical 35000.00 7000.00 28000.00 2025-01-20 15:00:00+00 \N 325 388 110 79 \N \N \N +431 2025-01-16 18:48:13.412+00 2025-01-16 18:48:13.412+00 f t 2025-01-17 16:00:00 COMPLETED clinical Vacunación anual para dos pacientes 121500.00 28350.00 81000.00 2025-01-17 19:00:00+00 \N 321 383 110 9 mehigdom96i0l5n035e3tq6td0 \N \N +429 2025-01-16 15:36:31.977+00 2025-01-16 15:36:31.977+00 f t 2025-01-16 15:00:00 CANCELLED clinical perra muy decaida y tiene mal una patita 41600.00 8600.00 33000.00 2025-01-16 18:00:00+00 99138545531 327 390 111 1 \N \N \N +600 2025-02-06 20:08:28.585417+00 2025-02-06 20:08:28.585426+00 f t 2025-02-11 20:30:00 COMPLETED clinical control cliente tiene $54800 a favor por el analsis que no le realizamos por perder la muestra, por lo qye no tenemos nro de operacion. con este turno, el dinero que le queda a favor es $19800 35000.00 35000.00 28000.00 2025-02-11 23:30:00+00 \N 359 424 111 70 3m2jnpv5fa8p8el8nshb70ddc0 \N \N +414 2025-01-13 21:44:12.069+00 2025-01-13 21:44:12.069+00 f t 2025-01-15 18:30:00 COMPLETED clinical Revision general x2 gatos Precios en el otro paciente 0.00 0.00 0.00 2025-01-15 21:30:00+00 0 313 372 110 71 \N \N \N +410 2025-01-13 21:07:00.911+00 2025-01-13 21:07:00.911+00 f t 2025-01-13 20:00:00 COMPLETED vaccination Vacunacion anual gato Numero de operacion MP - 99056111176\r\nTotal $109.350\t28.350\t81.000\r\nPor consulta 54.675\t14.175\t40.500 54675.00 14175.00 40500.00 2025-01-13 23:00:00+00 99056111176 312 371 110 1 \N \N \N +433 2025-01-16 19:55:36.315+00 2025-01-16 19:55:36.315+00 f t 2025-01-20 11:00:00 COMPLETED vaccination Vacunacion anual 60750.00 15750.00 45000.00 2025-01-20 14:00:00+00 99429101900 330 393 111 1 \N \N \N +418 2025-01-15 11:56:20.792+00 2025-01-15 11:56:20.792+00 f t 2025-01-15 11:00:00 COMPLETED clinical control clinico 35000.00 7000.00 28000.00 2025-01-15 14:00:00+00 35949521886 317 379 113 78 \N \N \N +417 2025-01-14 21:28:25.064+00 2025-01-14 21:28:25.064+00 f t 2025-01-14 19:30:00 COMPLETED clinical control y chequeo de protuberancia en cara 41600.00 8600.00 36000.00 2025-01-14 22:30:00+00 99328251510 316 378 111 1 \N \N \N +409 2025-01-13 21:03:10.666+00 2025-01-13 21:03:10.666+00 f t 2025-01-13 20:00:00 COMPLETED clinical Vacunación anual x 2 gatos Numero de operacion MP - 99056111176\r\nTotal $109.350\t28.350\t81.000\r\nPor consulta 54.675\t14.175\t40.500 54675.00 14175.00 40500.00 2025-01-13 23:00:00+00 \N 312 370 110 1 \N \N \N +416 2025-01-14 16:24:54.151+00 2025-01-14 16:24:54.151+00 f t 2025-01-14 18:30:00 COMPLETED clinical gatos con tos carraspera 74880.00 12180.00 62700.00 2025-01-14 21:30:00+00 99298259266 315 376 111 21 \N \N \N +2110 2025-08-15 21:05:05.652259+00 2025-08-15 21:05:05.652271+00 f t 2025-08-27 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-08-27 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 ehu889fb8kis09vuh24i83i12c \N \N +3120 2025-11-03 23:15:14.574678+00 2025-11-03 23:15:14.574687+00 f t 2025-11-06 18:30:00 COMPLETED clinical Revisión de Resultados \N 45000.00 45000.00 35000.00 2025-11-06 21:30:00+00 131749170651 8854 7319 \N 98 8tc623ap2k2ms1qsl2nsvhupe4 \N 1381 +421 2025-01-15 17:37:23.738+00 2025-01-15 17:37:23.738+00 f t 2025-01-16 16:00:00 COMPLETED vaccination vacunacion anual 60750.00 15750.00 45000.00 2025-01-16 19:00:00+00 99041198111 319 381 111 1 idj2egfmvvqk2uh7a9q02u74p0 \N \N +426 2025-01-16 14:15:40.215+00 2025-01-16 14:15:40.215+00 f t 2025-01-16 11:30:00 COMPLETED clinical Paciente sin apetito, no consume agua,hoy temblores y escalofrios 35000.00 7000.00 28000.00 2025-01-16 14:30:00+00 99029799829 317 379 111 1 \N \N \N +425 2025-01-16 14:04:56.331+00 2025-01-16 14:04:56.331+00 f t 2025-01-16 17:30:00 COMPLETED clinical Chequeo general 35000.00 7000.00 28000.00 2025-01-16 20:30:00+00 99080193905 324 387 110 71 \N \N \N +415 2025-01-14 16:14:43.602+00 2025-01-14 16:14:43.602+00 f t 2025-01-16 17:00:00 COMPLETED clinical vacunacion anual Perro - gato 109350.00 23850.00 85500.00 2025-01-16 20:00:00+00 98922037907 314 374 111 1 \N \N \N +434 2025-01-16 20:01:51.879+00 2025-01-16 20:01:51.879+00 f t 2025-01-14 18:30:00 COMPLETED vaccination Vacunación anual Pagado con link de pago\r\nPendiente abonar honorarios al veterinario 60750.00 60750.00 45000.00 2025-01-14 21:30:00+00 98611066899 329 392 118 1 \N \N \N +618 2025-02-10 14:01:25.110446+00 2025-02-10 14:01:25.110456+00 f t 2025-02-10 21:00:00 COMPLETED clinical aplicacion de inyectable 37440.00 4440.00 33000.00 2025-02-11 00:00:00+00 101884477596 410 489 111 70 nr2kduuqmji2bt6fcslj7v31lk \N \N +435 2025-01-16 20:10:00.88+00 2025-01-16 20:10:00.88+00 f t 2025-01-10 19:00:00 NO_REPORT clinical Consulta en el día gata adulta de 11 años\r\nTiene sobrepeso\r\nPero hace unos días se mueve poco, no sube a dónde está su comida, come poco, yo creo q tiene su lado izquierdo dolorido 41600.00 8600.00 33000.00 2025-01-10 22:00:00+00 98605380199 331 394 118 2 \N \N \N +2248 2025-08-26 12:05:56.469656+00 2025-08-26 12:05:56.469664+00 f t 2025-08-26 08:00:00 NO_REPORT clinical PG sin orina 31500.00 31500.00 0.00 2025-08-26 11:00:00+00 0 7316 6002 113 100 3ekjhlmt5ka5e1p0kr6mpigsko 239 \N +601 2025-02-06 22:45:54.366999+00 2025-02-06 22:45:54.367009+00 f t 2025-02-07 16:00:00 COMPLETED clinical Dermatitis 35000.00 7000.00 28000.00 2025-02-07 19:00:00+00 22950157 89 93 114 1 0mpft962l4um6s7a0ho1vo63bk \N \N +411 2025-01-13 21:12:03.747+00 2025-01-13 21:12:03.747+00 f t 2025-01-13 16:30:00 COMPLETED clinical Chequeo general para Coco Precio en la consulta de la otra mascota 0.00 0.00 0.00 2025-01-13 19:30:00+00 98689974657 310 368 110 21 \N \N \N +3307 2025-11-18 00:15:24.107062+00 2025-11-18 00:15:24.10707+00 f t 2025-11-18 08:00:00 NO_REPORT clinical No se especificó motivo de consulta. se solicitó: ... \N 46000.00 11000.00 35000.00 2025-11-18 11:00:00+00 134248959262 12810 10572 \N 70 bg9eicghs0hmldandpmg3jt7i0 \N 1646 +420 2025-01-15 13:31:01.337+00 2025-01-15 13:31:01.337+00 f t 2025-01-15 10:30:00 COMPLETED vaccination Vacunación anual 60750.00 15750.00 45000.00 2025-01-15 13:30:00+00 99222174670 231 252 118 78 \N \N \N +907 2025-03-30 21:37:20.754279+00 2025-03-30 21:37:20.754287+00 t t 2025-04-01 18:30:00 PENDING telemedicina Teleconsulta https://meet.google.com/wan-unae-qxq 25000.00 25000.00 0.00 2025-04-01 21:30:00+00 106728125746 619 724 114 89 mq3pagvi3d6kivdaaj37810qdo \N \N +422 2025-01-15 17:57:26.134+00 2025-01-15 17:57:26.134+00 f t 2025-01-16 18:30:00 NO_REPORT clinical Gatita diabetica, perdida de peso. 35000.00 7000.00 28000.00 2025-01-16 21:30:00+00 \N 320 382 110 78 3kphm6j97aoseta13bb3go1488 \N \N +405 2025-01-10 19:29:54.382+00 2025-01-10 19:29:54.382+00 f t 2025-01-10 11:00:00 NO_REPORT vaccination Vacunacion anual 60750.00 15750.00 45000.00 2025-01-10 14:00:00+00 98845230268 309 366 113 78 \N \N \N +443 2025-01-19 16:26:38.398+00 2025-01-19 16:26:38.398+00 f t 2025-01-18 09:00:00 COMPLETED clinical Curaciones + corte de uñas 48600.00 10600.00 38000.00 2025-01-18 12:00:00+00 99712171834 340 403 113 68 gicq7ocn96mtgucdsfa1vekjqg \N \N +2109 2025-08-15 21:04:24.891755+00 2025-08-15 21:04:24.891765+00 f t 2025-08-26 12:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-08-26 15:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 o0iv20illujpus3bd1rnbcdh0g \N \N +441 2025-01-18 16:53:41.524+00 2025-01-18 16:53:41.524+00 f t 2025-01-18 15:30:00 COMPLETED vaccination Vacunación anual 60750.00 15750.00 45000.00 2025-01-18 18:30:00+00 \N 337 400 113 1 \N \N \N +439 2025-01-17 15:54:44.971+00 2025-01-17 15:54:44.971+00 f t 2025-01-24 16:00:00 COMPLETED vaccination chequeo general + vacunacion anual gato adulto 60750.00 15750.00 45000.00 2025-01-24 19:00:00+00 99608131910 335 398 111 9 cf5upvvntdl07n970vfa7fdjt4 \N \N +725 2025-02-26 00:27:30.675212+00 2025-02-26 00:27:30.675221+00 f t 2025-02-23 19:00:00 COMPLETED clinical Certificado de salud + corte de garras 75600.00 12900.00 62700.00 2025-02-23 22:00:00+00 \N 502 593 113 1 ndvcc8daelonnngugi0p8grrsk \N \N +445 2025-01-20 12:58:08.634+00 2025-01-20 12:58:08.634+00 f t 2025-01-19 16:00:00 COMPLETED clinical Lesión en genitales 41600.00 8600.00 33000.00 2025-01-19 19:00:00+00 99428721653 343 405 114 70 0mhik2vb9kqridt9dtiuna1ctg \N \N +676 2025-02-18 18:58:52.034327+00 2025-02-18 18:58:52.034338+00 f t 2025-02-17 20:00:00 COMPLETED clinical Recto inflamado, con cambios en su evacuaciones 41600.00 8600.00 33000.00 2025-02-17 23:00:00+00 102656022914 467 554 111 1 mj9kiip57o1uhs9n4a2vop7i7k \N \N +436 2025-01-16 20:35:48.802+00 2025-01-16 20:35:48.802+00 f t 2025-01-09 20:30:00 COMPLETED clinical Clínica en el día 41600.00 8600.00 31000.00 2025-01-09 23:30:00+00 98822590724 332 395 118 9 cul9hgjrm2nja28ins6ip5f12s \N \N +790 2025-03-08 21:14:57.845419+00 2025-03-08 21:14:57.845427+00 f t 2025-03-15 09:00:00 NO_REPORT clinical Radiografía 65000.00 15000.00 50000.00 2025-03-15 12:00:00+00 46a4fa48-34f0-4a07-a282-70b272 544 641 114 84 sgoselra34oda8kqilobosnang \N \N +666 2025-02-16 22:01:56.516174+00 2025-02-16 22:01:56.51618+00 f t 2025-02-17 11:30:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-02-17 14:30:00+00 0 461 547 114 1 dt6h23rgcbjrmvi2qvli3vv5is \N \N +448 2025-01-20 17:33:13.836+00 2025-01-20 17:33:13.836+00 f t 2025-01-19 21:30:00 COMPLETED clinical Otitis grave 41600.00 8600.00 33000.00 2025-01-20 00:30:00+00 93368600 347 408 114 70 \N \N \N +444 2025-01-19 16:40:39.491+00 2025-01-19 16:40:39.491+00 f t 2025-01-10 13:00:00 COMPLETED clinical Dificultad en la evacuación 41600.00 8600.00 33000.00 2025-01-10 16:00:00+00 98926138186 341 404 113 1 \N \N \N +446 2025-01-20 13:17:52.987+00 2025-01-20 13:17:52.987+00 f t 2025-01-21 09:00:00 COMPLETED clinical Vacunacion anual 60750.00 15750.00 45000.00 2025-01-21 12:00:00+00 99812699126 344 406 114 74 \N \N \N +842 2025-03-18 23:47:02.352918+00 2025-03-18 23:47:02.352924+00 f t 2025-03-20 20:00:00 NO_REPORT clinical Estudio ecográfico amar debe pagar 15mil a vete 52000.00 12000.00 55000.00 2025-03-20 23:00:00+00 36639948348 535 631 111 90 tenjb4ur1rvdus5josh42g7q10 \N \N +480 2025-01-25 14:37:15.126106+00 2025-01-25 14:37:15.126116+00 f t 2025-01-25 15:00:00 COMPLETED clinical Consulta clínica porque el gato se estresa mucho yendo a la veterinaria y no quiere comer desde un día + extracción de sangre 41600.00 8600.00 38000.00 2025-01-25 18:00:00+00 99985542649 364 429 114 68 \N \N \N +440 2025-01-17 20:51:04.713+00 2025-01-17 20:51:04.713+00 f t 2025-01-18 13:30:00 COMPLETED clinical Chequeo general + eutanasia 91250.00 18250.00 73000.00 2025-01-18 16:30:00+00 99638336208 336 399 111 1 \N \N \N +3308 2025-11-18 16:20:23.537794+00 2025-11-18 16:20:23.537803+00 f t 2025-11-22 16:30:00 COMPLETED clinical Vacunacion anual antirrábica y corte de garras. 61700.00 15700.00 46000.00 2025-11-22 19:30:00+00 cuenta DNI 5951 4861 1583 99 mmucgues7hri67dlp68itenep0 \N 1651 +1186 2025-05-15 12:54:16.40059+00 2025-05-15 12:54:16.400601+00 f t 2025-05-17 10:30:00 NO_REPORT clinical Jade es una perra adulta de 13 años que tiene sobrepeso, ahora esta mucho mas delgada pero le duelen mucho las patas de atrás y le cuesta levantarse y caminar. Come y toma agua normal sin problemas. Hace unos meses le encontraron unos bultitos en las patas también pero como no se puede realizar cirugía, solo medicaron, busca tratamiento 46000.00 9500.00 36500.00 2025-05-17 13:30:00+00 37274407773 1033 1123 112 70 isg30qbn9socr19leuo7rf4ds4 \N \N +447 2025-01-20 13:29:07.688+00 2025-01-20 13:29:07.688+00 f t 2025-01-23 17:00:00 COMPLETED clinical Problemas renales y perdidas de peso 35000.00 7000.00 28000.00 2025-01-23 20:00:00+00 PDX4OGNY1J1WEO7M20L6EY 345 407 114 70 spadeft2cu6bq8ki2m39f16180 \N \N +2780 2025-10-06 13:07:43.129885+00 2025-10-06 13:07:43.129896+00 f t 2025-10-06 13:00:00 COMPLETED clinical Consulta general y desparasitacion int + ext, gaato 1-2kg 86000.00 17000.00 69000.00 2025-10-06 16:00:00+00 128256371049 10103 8364 1583 1 5fi56d6oeb6mo5jt4gc4vapps4 \N 865 +438 2025-01-17 13:47:25.96+00 2025-01-17 13:47:25.96+00 f t 2025-01-17 12:00:00 COMPLETED clinical muy caido, camina lento y se queda parado sin respuesta, tiembla. Tiene un tumor en la adrenal derecha con invasión en la vena cava 41600.00 8600.00 33000.00 2025-01-17 15:00:00+00 \N 334 397 111 1 \N \N \N +437 2025-01-17 13:20:23.236+00 2025-01-17 13:20:23.236+00 f t 2025-01-20 19:30:00 COMPLETED clinical Vacunacion anual gato 60750.00 15750.00 45000.00 2025-01-20 22:30:00+00 99172944053 333 396 111 1 \N \N \N +2284 2025-08-28 21:51:07.376148+00 2025-08-28 21:51:07.376158+00 t t 2025-08-29 08:00:00 CANCELLED clinical Tiene Moco y parece que respira mal 42000.00 9500.00 32500.00 2025-08-29 11:00:00+00 123491352449 5342 6134 1583 68 f0lqipijlirdl1rj0bb94p5hj0 \N \N +1870 2025-07-24 16:07:57.868022+00 2025-07-24 16:07:57.868031+00 f t 2025-07-26 10:30:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-07-26 13:30:00+00 540f5ece-3446-45b7-aa91-b991e9 5177 4260 1026 99 kefqleubmot58gpeg3cvbarmek 532 \N +2160 2025-08-19 23:27:45.823616+00 2025-08-19 23:27:45.823623+00 f t 2025-08-19 19:00:00 COMPLETED clinical Chequeo para Oni Abono $6.000 de seña 37800.00 5300.00 32500.00 2025-08-19 22:00:00+00 38514525487 6789 5644 114 88 7qital0opoh6c5fcc6hupiu42c 312 \N +780 2025-03-06 23:08:33.445599+00 2025-03-06 23:08:33.445609+00 f t 2025-03-06 20:30:00 COMPLETED clinical Vacunación anual 66000.00 17000.00 49000.00 2025-03-06 23:30:00+00 104317054604 541 637 113 91 kb9o9071rp85kjppv5n50aoeqo \N \N +602 2025-02-07 13:35:44.454536+00 2025-02-07 13:35:44.454544+00 f t 2025-02-07 11:00:00 COMPLETED clinical Ecografia abdominal los veterinarios creen que puede tener un sangrado en el vaso 55000.00 15000.00 40000.00 2025-02-07 14:00:00+00 \N 424 504 110 5 159of8h7h4tkudkbrpsfmbqots \N \N +646 2025-02-13 22:14:54.92493+00 2025-02-13 22:14:54.924938+00 f t 2025-02-13 18:30:00 COMPLETED clinical Decaimiento, no se alimenta con regularidad. 41600.00 8600.00 33000.00 2025-02-13 21:30:00+00 RDO6ZO9W1VE031J125GO7X 445 528 113 1 cvft9bvfplif9mcqqr23uoj0lg \N \N +164 2024-10-30 14:13:09.761+00 2024-10-30 14:13:09.761+00 f t 2024-10-07 08:30:00 COMPLETED Clínica x 2 animales Consulta clínica 2 gatos + extracción Transaccion 89709098720 Aguardando resultados de myciplasma, que demora entre 5 y 7 dias habiles. El valor 209500.00 61295.00 51500.00 2024-10-07 11:30:00+00 144 151 \N 1 \N \N \N +442 2025-01-19 15:35:11.16+00 2025-01-19 15:35:11.16+00 t t 2025-01-18 17:30:00 NO_REPORT clinical Lesion generalizada 41600.00 8600.00 33000.00 2025-01-18 20:30:00+00 35990155984 338 401 113 1 \N \N \N +871 2025-03-23 22:12:44.163434+00 2025-03-23 22:12:44.16344+00 f t 2025-03-23 18:00:00 COMPLETED clinical vacunación de la triple felina 59500.00 15500.00 44000.00 2025-03-23 21:00:00+00 105966127580 597 699 114 70 8qlshjnonks40j1r7qasrhdfds \N \N +512 2025-01-29 15:00:43.952559+00 2025-01-29 15:00:43.952569+00 f t 2025-01-30 15:30:00 NO_REPORT vaccination Vacunación anual gatos adultos x 2 109350.00 23850.00 85500.00 2025-01-30 18:30:00+00 100711269770 381 452 111 68 h118a0rehe8altuq2m6786o3qo \N \N +806 2025-03-11 23:40:47.335199+00 2025-03-11 23:40:47.335205+00 f t 2025-03-14 11:30:00 COMPLETED clinical Extraccion + clinica el valor total es 128.150, visita de la vete, la extraccion, el traslado de la muestra, y el analisis de la muestra, el analisis que se realiza en la muestra es un perfil hepatico y vif y vilef. cliente abona 128150.00 93150.00 35000.00 2025-03-14 14:30:00+00 104461620307 444 527 111 88 ohbcvk2tcmqmshcpaktjasbioo \N \N +748 2025-03-01 17:06:05.567223+00 2025-03-01 17:06:05.567232+00 f t 2025-03-01 20:00:00 NO_REPORT clinical Vacunacion anual 60750.00 15750.00 45000.00 2025-03-01 23:00:00+00 103371743395 520 615 113 70 f8f0mbi7ql0p43hil0te5rql14 \N \N +922 2025-03-31 23:48:13.462014+00 2025-03-31 23:48:13.46202+00 f t 2025-03-31 19:00:00 COMPLETED clinical Urgencia por continuas diarrea 46000.00 9500.00 36500.00 2025-03-31 22:00:00+00 \N 627 737 113 70 9rv77b0opccn7517n3i8llnvqk \N \N +2123 2025-08-16 18:42:19.299827+00 2025-08-16 18:42:19.299835+00 f t 2025-08-19 20:00:00 COMPLETED clinical vac. anual 72000.00 19000.00 53000.00 2025-08-19 23:00:00+00 70155852009250816 6635 5410 1208 89 besjeiogs8hbskd4djcofvd39c 310 \N +713 2025-02-25 16:37:54.948205+00 2025-02-25 16:37:54.948213+00 f t 2025-03-01 11:30:00 NO_REPORT vaccination vacunación anual 60750.00 16000.00 45000.00 2025-03-01 14:30:00+00 36398537334 494 583 113 70 onpkptalrcjd0q1i8sam7n6hvc \N \N +937 2025-04-03 17:06:57.467456+00 2025-04-03 17:06:57.467463+00 f t 2025-04-03 16:30:00 COMPLETED vaccination Vacunacion anual para tres mascotas 178200.00 31200.00 147000.00 2025-04-03 19:30:00+00 106669623817 637 747 113 2 gujsfpgih3u4g2pb50kt8hufpk \N \N +925 2025-04-01 17:57:55.51312+00 2025-04-01 17:57:55.513126+00 f t 2025-04-04 15:00:00 COMPLETED clinical radiografia de columna 58500.00 8500.00 50000.00 2025-04-04 18:00:00+00 106571587677 123 128 111 84 j5qp1q4d97ts2g6e0lho1gh2f0 \N \N +2332 2025-09-01 22:05:00.605099+00 2025-09-01 22:05:00.605108+00 f t 2025-09-05 11:30:00 NO_REPORT clinical 0.00 0.00 0.00 2025-09-05 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 gbkh9l4ct7g821glu1sgiiuvco \N \N +485 2025-01-26 17:47:24.374513+00 2025-01-26 17:47:24.37452+00 f t 2025-01-26 20:30:00 COMPLETED clinical Presenta dificultad motriz y no ingiriere alimentos hace 2 días 41600.00 8600.00 33000.00 2025-01-26 23:30:00+00 100454778542 367 432 114 68 \N \N \N +933 2025-04-03 16:45:22.823956+00 2025-04-03 16:45:22.823966+00 f t 2025-04-07 11:30:00 NO_REPORT clinical Chequeo y revisión 38500.00 8500.00 30000.00 2025-04-07 14:30:00+00 36790756770 633 743 113 2 f5t14nrfv2pushau5d5g5la40g \N \N +843 2025-03-18 23:49:17.110228+00 2025-03-18 23:49:17.110238+00 f t 2025-03-20 16:00:00 COMPLETED clinical Seguimiento por tratamiento 38500.00 8500.00 30000.00 2025-03-20 19:00:00+00 86VRPQ2GVEZ7KDWM2GLY0M 562 659 113 89 sn4f7tka01k7q8jm414cdqkuko \N \N +950 2025-04-06 20:52:49.836639+00 2025-04-06 20:52:49.836646+00 f t 2025-04-06 19:00:00 COMPLETED clinical urgencia, no come y vomito 2 veces 46500.00 9500.00 36500.00 2025-04-06 22:00:00+00 107542993178 643 758 114 92 hhjnferufdjd1vq9ufa65uh68c \N \N +929 2025-04-01 23:09:36.024454+00 2025-04-01 23:09:36.024461+00 f t 2025-04-01 18:30:00 NO_REPORT clinical Eco abdominal 52000.00 12000.00 40000.00 2025-04-01 21:30:00+00 \N 630 740 113 90 tou3son65mhhisbbe6hocs487c \N \N +887 2025-03-25 00:04:53.648561+00 2025-03-25 00:04:53.648567+00 f t 2025-03-24 15:30:00 NO_REPORT clinical Desparasitación y certificación de salud 96000.00 21500.00 74500.00 2025-03-24 18:30:00+00 \N 608 710 113 2 a7gcm49c8e0s9mak2ushcndm74 \N \N +872 2025-03-23 22:17:34.978632+00 2025-03-23 22:17:34.978641+00 f t 2025-03-22 18:00:00 COMPLETED clinical Alergia en la piel, se ha lastimado 46000.00 9500.00 36500.00 2025-03-22 21:00:00+00 106013474480 598 700 114 80 fp3t03oug8ah16qifa43aqgv6k \N \N +899 2025-03-27 18:30:01.137908+00 2025-03-27 18:30:01.137917+00 f t 2025-03-27 17:00:00 COMPLETED clinical Lesiones en pies por rascarse. Hoy amaneció con el ojitos izquierdo hinchado. 46000.00 9500.00 36500.00 2025-03-27 20:00:00+00 106492715722 615 718 111 89 qk2na0octn0nh8uckk1u4mkabo \N \N +2125 2025-08-16 23:07:32.963717+00 2025-08-16 23:07:32.963723+00 f t 2025-08-16 20:30:00 COMPLETED clinical Dificultad para orinar 50000.00 10000.00 40000.00 2025-08-16 23:30:00+00 122094921839 6683 5452 113 1 5vdk8l1kncflscm03h5jahcu0s 340 \N +908 2025-03-30 21:44:21.6212+00 2025-03-30 21:44:21.621208+00 f t 2025-03-30 16:00:00 COMPLETED telemedicina Posibles paracitos https://meet.google.com/htn-oyjo-mqs 25000.00 25000.00 0.00 2025-03-30 19:00:00+00 106791449468 620 725 114 80 l65obsrdgh2ogpcn48qp5dpj30 \N \N +2533 2025-09-17 19:10:05.944548+00 2025-09-17 19:10:05.944561+00 f t 2025-09-18 09:30:00 COMPLETED clinical citologia 36700.00 36700.00 0.00 2025-09-18 12:30:00+00 126529895906 8543 7041 1208 100 mm4rjg1oduvonqtgcnlkmk3rdo 18 \N +952 2025-04-07 22:08:41.37147+00 2025-04-07 22:08:41.371478+00 f t 2025-04-07 19:00:00 COMPLETED telemedicina Vomito por tto con corticoides 25000.00 25000.00 16000.00 2025-04-07 22:00:00+00 59503681 644 759 113 1 sraq2l689idos06hmcfje0h2vg \N \N +2532 2025-09-17 17:02:19.617934+00 2025-09-17 17:02:19.617941+00 f t 2025-09-19 12:00:00 COMPLETED clinical perfil precx 0.00 0.00 0.00 2025-09-19 15:00:00+00 125970935735 8378 6902 1208 100 26opppfsdeud3hugld0oc1em8s \N \N +913 2025-03-30 22:02:33.607966+00 2025-03-30 22:02:33.607973+00 f t 2025-03-30 17:00:00 NO_REPORT clinical Eutanasia El can murió antes de que el veterinario llegara 121000.00 24500.00 96500.00 2025-03-30 20:00:00+00 106792626520 621 730 114 70 v5n36501f4or76ke0iusil8hsc \N \N +917 2025-03-31 16:10:32.350163+00 2025-03-31 16:10:32.35017+00 f t 2025-03-31 15:30:00 COMPLETED clinical gato con posible obstruccion, hace pis con gotas de sangre + consulta gral gato adulto Cambio este campo para reproducir error 82800.00 9800.00 73000.00 2025-03-31 18:30:00+00 106875052928 623 732 110 94 5s5ecvq6fn531ag2q4mbf7nfa4 \N \N +946 2025-04-05 20:48:54.07332+00 2025-04-05 20:48:54.073328+00 f t 2025-04-08 12:00:00 COMPLETED vaccination Segunda dosis de la sextuple Acá se encuentra el monto total de la consulta 112950.00 19950.00 93000.00 2025-04-08 15:00:00+00 107430388770 548 645 114 88 72b132cb1jv7vs1ug0mt01imos \N \N +970 2025-04-10 21:11:25.402794+00 2025-04-10 21:11:25.402801+00 f t 2025-04-11 12:00:00 NO_REPORT vaccination Se aclara todo en el turno de choe 0.00 0.00 0.00 2025-04-11 15:00:00+00 0 655 773 113 88 nlfi4igihmnj891uuba72obhls \N \N +965 2025-04-09 23:43:47.640015+00 2025-04-09 23:43:47.640024+00 f t 2025-04-12 11:30:00 COMPLETED vaccination Vacunacion anual para dos mascotas Se aclara en el turno de victor el monto 0.00 0.00 0.00 2025-04-12 14:30:00+00 0 652 769 113 89 4u9v20fbfo046q1n1792eim7l8 \N \N +3371 2025-11-24 22:40:15.403446+00 2025-11-24 22:40:15.403455+00 f t 2025-11-26 17:00:00 PENDING clinical Vacunacion anual. 78000.00 21500.00 56500.00 2025-11-26 20:00:00+00 134502379695 14164 11678 1583 89 v0gtnfaqkjv4m5hd3bot09mgmk \N 1755 +2159 2025-08-19 23:21:28.366718+00 2025-08-19 23:21:28.366725+00 f t 2025-08-20 18:30:00 COMPLETED clinical lamido excesivo y heridas 42000.00 9500.00 32500.00 2025-08-20 21:30:00+00 122423297203 6885 5627 114 70 s6opc0q4gp3kdhvolbgj2mpnq4 300 \N +942 2025-04-04 23:20:19.637974+00 2025-04-04 23:20:19.637982+00 f t 2025-04-04 19:00:00 COMPLETED clinical Vacunación antirrábica y corte de uñas 91500.00 21500.00 70000.00 2025-04-04 22:00:00+00 106801533881 139 146 113 70 cfc4prs01d3mfl5f5mug2hveg8 \N \N +702 2025-02-22 21:28:26.74616+00 2025-02-22 21:28:26.746168+00 f t 2025-02-22 16:00:00 COMPLETED clinical Urgencia por dificultad al orinar 41600.00 8600.00 33000.00 2025-02-22 19:00:00+00 36374126780 484 574 114 68 gcfisfecgqsgrf926gkirdn01o \N \N +909 2025-03-30 21:53:58.091093+00 2025-03-30 21:53:58.0911+00 f t 2025-04-01 18:30:00 COMPLETED vaccination Vacunación anual Acá se encuentra el monto toral del servicio 237600.00 41600.00 196000.00 2025-04-01 21:30:00+00 106795916674 564 728 114 80 k7iptp3luahfk72ihs27gdg4g0 \N \N +2112 2025-08-15 21:06:20.33214+00 2025-08-15 21:06:20.332148+00 f t 2025-08-29 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-08-29 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 aql5ud5826f2rgh0kbdilueq90 \N \N +811 2025-03-12 00:01:50.942785+00 2025-03-12 00:01:50.942795+00 f t 2025-03-10 21:30:00 COMPLETED telemedicina Resultados 25000.00 25000.00 16000.00 2025-03-11 00:30:00+00 104751729964 503 595 113 89 8n4jkoc21r6ksieug5eopj8ipc \N \N +2218 2025-08-23 18:54:14.952142+00 2025-08-23 18:54:14.952153+00 f t 2025-08-25 16:00:00 COMPLETED clinical eco abd 68000.00 13000.00 55000.00 2025-08-25 19:00:00+00 123432652054 7154 5861 1208 90 njjlupjharostmc7qc9gbk63bk 247 \N +793 2025-03-09 20:50:51.0834+00 2025-03-09 20:50:51.08341+00 f t 2025-03-08 13:30:00 COMPLETED clinical Clínica, hinchazón y lastimadura en pata 46000.00 9500.00 36500.00 2025-03-08 16:30:00+00 104521068976 549 646 114 89 i4rsfmmoang9fknn4qevlutkfg \N \N +959 2025-04-07 22:53:31.984295+00 2025-04-07 22:53:31.984302+00 f t 2025-04-07 19:30:00 COMPLETED clinical Eco abdominal 52000.00 12000.00 40000.00 2025-04-07 22:30:00+00 \N 649 765 113 90 5uuuvi7inp6i8r9il0ti8me7k0 \N \N +955 2025-04-07 22:41:16.580317+00 2025-04-07 22:41:16.580324+00 f t 2025-04-07 21:30:00 COMPLETED clinical desparasitación interna + externa y Vacunación anual 105500.00 25500.00 80000.00 2025-04-08 00:30:00+00 \N 646 761 113 89 eq7eb65e39rgalkbutd60npkjs \N \N +894 2025-03-26 15:49:29.461767+00 2025-03-26 15:49:29.461774+00 f t 2025-04-02 16:00:00 COMPLETED vaccination Vacunacion anual 66000.00 17000.00 49000.00 2025-04-02 19:00:00+00 \N 118 123 111 89 \N \N \N +934 2025-04-03 16:48:27.327709+00 2025-04-03 16:48:27.327717+00 f t 2025-04-02 18:00:00 COMPLETED clinical 144900.00 17900.00 127000.00 2025-04-02 21:00:00+00 106677867541 634 744 113 2 fupmv8do0rqa445nk5h2na7348 \N \N +900 2025-03-28 15:05:14.75943+00 2025-03-28 15:05:14.759437+00 f t 2025-03-28 18:30:00 NO_REPORT clinical Recomposicion de vendaje 38500.00 8500.00 30000.00 2025-03-28 21:30:00+00 \N 616 720 111 70 d83prs1kiu87bdm9h61svo87a8 \N \N +938 2025-04-03 17:07:32.774179+00 2025-04-03 17:07:32.774185+00 f t 2025-04-03 16:30:00 COMPLETED vaccination Vacunacion anual Se aclara monto en el primer px 0.00 0.00 0.00 2025-04-03 19:30:00+00 0 637 748 113 2 dm9lhbk19o9q38s5gug03d299g \N \N +930 2025-04-01 23:19:53.18889+00 2025-04-01 23:19:53.188901+00 f t 2025-03-26 18:30:00 NO_REPORT clinical Lesion en la movilidad 38500.00 8500.00 30000.00 2025-03-26 21:30:00+00 \N 612 715 113 70 cnv95gm2ti1aaa04htrce5o1ho \N \N +838 2025-03-18 19:23:41.866962+00 2025-03-18 19:23:41.866972+00 f t 2025-03-19 10:30:00 COMPLETED vaccination vacunacion 2da dosis 2 gatos cachorros datos de dinero cargado en el otro gato 0.00 0.00 0.00 2025-03-19 13:30:00+00 \N 464 550 111 78 ijm6s0grdesvj9n5d3f7smg87o \N \N +998 2025-04-15 21:03:36.152364+00 2025-04-15 21:03:36.152372+00 f t 2025-04-16 11:00:00 COMPLETED clinical 49000.00 0.00 49000.00 2025-04-16 14:00:00+00 \N 187 197 112 92 sk67n6hovduo6rtd4o3rmrtdr8 \N \N +808 2025-03-11 23:47:10.145366+00 2025-03-11 23:47:10.145373+00 f t 2025-03-12 15:30:00 COMPLETED clinical Medición de la presión 38500.00 8500.00 30000.00 2025-03-12 18:30:00+00 104866364024 425 505 113 68 agct1jrmtoohsqud7h7cfh1qck \N \N +1919 2025-07-29 14:51:08.375531+00 2025-07-29 14:51:08.37554+00 f t 2025-07-29 20:00:00 COMPLETED telemedicina está renga d euna pata y la radiografía dice que tiene estrechamiento de vértebras abonarle a majo $17.500 27500.00 27500.00 0.00 2025-07-29 23:00:00+00 95268123 5488 4496 1026 79 j9p4di003dlrpu017re29d5q90 499 \N +963 2025-04-09 16:22:55.250973+00 2025-04-09 16:22:55.250984+00 f t 2025-04-12 16:00:00 COMPLETED clinical Vacunacion anual Abonarle a Camila Lorezon los $3000--> porque la clienta abono 20.000 en vez de 17.000 66000.00 20000.00 49000.00 2025-04-12 19:00:00+00 36869300727 651 767 113 94 klm9ddnoqbgc6qrd93u6tge010 \N \N +897 2025-03-27 15:03:25.728772+00 2025-03-27 15:03:25.72878+00 f t 2025-03-27 14:00:00 COMPLETED clinical Se rasca mucho, tiene costritas pagar a vete $6500 por ser en el dia, la vete vic gonz no podia ir 38500.00 8500.00 30000.00 2025-03-27 17:00:00+00 105997600971 614 717 111 80 53fsn5sifc09s7ehchf9ggdkcs \N \N +918 2025-03-31 16:12:31.847224+00 2025-03-31 16:12:31.847231+00 f t 2025-03-31 15:30:00 COMPLETED clinical datos de dinero cargados en el otro turno 0.00 0.00 0.00 2025-03-31 18:30:00+00 \N 623 733 111 94 n7dieod6tm86e8c9jt8bcpv55o \N \N +943 2025-04-05 20:36:26.155343+00 2025-04-05 20:36:26.155351+00 f t 2025-04-05 19:00:00 COMPLETED clinical Vómitos, diarrea con sangre y jadeos 46000.00 9500.00 36500.00 2025-04-05 22:00:00+00 107027856377 640 753 114 1 9pk6q6am3684graevgvojsleos \N \N +1876 2025-07-25 13:34:21.378987+00 2025-07-25 13:34:21.378994+00 f t 2025-07-25 11:00:00 COMPLETED clinical Vómitos y falta de apetito 50000.00 10000.00 40000.00 2025-07-25 14:00:00+00 119327481625 5218 4285 1026 1 bpgch1hn4llribehikurtromt4 542 \N +890 2025-03-25 21:11:41.072239+00 2025-03-25 21:11:41.072246+00 f t 2025-03-25 17:00:00 COMPLETED clinical Lesion ocular 46000.00 9500.00 36500.00 2025-03-25 20:00:00+00 106311408124 71 719 113 89 nt8v64rmts4a9hjvfnk0e8u7bo \N \N +914 2025-03-30 22:06:59.94554+00 2025-03-30 22:06:59.94555+00 f t 2025-03-30 18:30:00 COMPLETED clinical chequeo por problemas con la respiración 46000.00 9500.00 36500.00 2025-03-30 21:30:00+00 36756561066 622 731 114 80 j19ud0js8ap5e7edce7eso77a0 \N \N +407 2025-01-13 19:33:42.081+00 2025-01-13 19:33:42.081+00 f t 2025-01-13 16:30:00 COMPLETED clinical Consulta clínica, gatita con vómitos frecuentes y esta tosiendo mas de lo habitual. Chequeo general para Coco A pagar 9mil 63000.00 12600.00 50400.00 2025-01-13 19:30:00+00 98689974657 310 367 110 21 \N \N \N +947 2025-04-05 20:49:40.445652+00 2025-04-05 20:49:40.445661+00 f t 2025-04-08 12:00:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-04-08 15:00:00+00 0 548 755 114 88 fsj1cgcfdrtlj5o5b5ttm0ne28 \N \N +951 2025-04-07 20:20:24.063012+00 2025-04-07 20:20:24.063018+00 f t 2025-04-08 09:00:00 COMPLETED clinical PCG sin orina la vet mara martinez en el turno del dia 6/4 realizo una extraccion para el analisis pcg sin orina, la cual se retira en el dia dia 8/4 9hs. 43000.00 43000.00 0.00 2025-04-08 12:00:00+00 107220383759 643 758 111 86 \N \N \N +923 2025-03-31 23:51:19.25715+00 2025-03-31 23:51:19.257156+00 f t 2025-03-31 18:30:00 COMPLETED clinical Eutanasia 108500.00 22000.00 86500.00 2025-03-31 21:30:00+00 106483732479 628 738 113 1 r4f4t87bvkv7qq0h2k52aovjbo \N \N +2214 2025-08-23 17:35:45.631495+00 2025-08-23 17:35:45.631506+00 f t 2025-08-26 16:00:00 NO_REPORT clinical 95000.00 10000.00 85000.00 2025-08-26 19:00:00+00 122889563483 6869 5610 1208 82 3hpqstts46cnnq72qd8npomr94 232 \N +926 2025-04-01 17:59:25.399957+00 2025-04-01 17:59:25.399963+00 f t 2025-04-07 09:00:00 NO_REPORT clinical PGC con orina 69300.00 49300.00 20000.00 2025-04-07 12:00:00+00 106996749310 123 128 111 66 lf85mb4g55ll8f56c2k6btpt9k \N \N +960 2025-04-08 18:16:13.865009+00 2025-04-08 18:16:13.865016+00 f t 2025-04-08 15:30:00 COMPLETED telemedicina 25000.00 25000.00 16000.00 2025-04-08 18:30:00+00 \N 167 176 111 1 ohncf4kcirvmciu6q2059e3ppg \N \N +1266 2025-05-22 16:59:31.95087+00 2025-05-22 16:59:31.950877+00 f t 2025-05-24 08:30:00 COMPLETED vaccination 0.00 0.00 0.00 2025-05-24 11:30:00+00 112473043366 1452 1431 112 91 tju2igcf6m3cne6hcsaikap52g \N \N +2490 2025-09-15 14:49:37.742511+00 2025-09-15 14:49:37.742517+00 f t 2025-09-16 20:00:00 COMPLETED clinical Consulta de control, sigue igual, se pica y se rasca 55000.00 11000.00 44000.00 2025-09-16 23:00:00+00 125713013041 6788 5547 1583 92 jsv2k3t5sco57ampukn73r6pts 29 \N +940 2025-04-04 23:09:15.250475+00 2025-04-04 23:09:15.250487+00 f t 2025-04-03 19:30:00 NO_REPORT clinical Eco abdominal 52000.00 12000.00 40000.00 2025-04-03 22:30:00+00 \N 638 750 113 90 pafapv9nk8n8laqq0dh5tbnc84 \N \N +794 2025-03-09 20:53:19.739289+00 2025-03-09 20:53:19.739298+00 f t 2025-03-08 15:30:00 CANCELLED telemedicina Revisión de resultados No se presento a la consulta 25000.00 25000.00 0.00 2025-03-08 18:30:00+00 104517231578 503 595 113 89 fnpgv22v4282h0okafi8pm799g \N \N +905 2025-03-29 22:20:16.194124+00 2025-03-29 22:20:16.194131+00 f t 2025-03-29 16:00:00 COMPLETED clinical Px con lesión vestibular 46000.00 9500.00 36500.00 2025-03-29 19:00:00+00 106213618073 618 723 113 88 mdt273u15csj5rpsk5rgv3sv38 \N \N +910 2025-03-30 21:54:31.398457+00 2025-03-30 21:54:31.398464+00 f t 2025-04-01 18:30:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-04-01 21:30:00+00 0 564 729 114 80 f2abs1vpsjs2fminj7scv52h94 \N \N +3132 2025-11-04 18:42:31.176019+00 2025-11-04 18:42:31.176027+00 f t 2025-11-04 20:00:00 COMPLETED clinical Ecografia abdominal 88000.00 13000.00 75000.00 2025-11-04 23:00:00+00 Modo 12370 10219 1583 90 8mre8vb9jve42l2422vuf1iv8c \N 1401 +919 2025-03-31 23:40:47.039913+00 2025-03-31 23:40:47.03992+00 f t 2025-04-01 16:00:00 COMPLETED clinical vomitos continuos 46000.00 9500.00 36500.00 2025-04-01 19:00:00+00 106887776596 624 734 113 68 defuisgi03m0gdncv2jhjalrk8 \N \N +747 2025-03-01 16:56:05.786843+00 2025-03-01 16:56:05.786853+00 f t 2025-03-04 11:00:00 COMPLETED telemedicina Tos espontanea Solicita el rebolso de los $1000 pesos 24000.00 25000.00 15000.00 2025-03-04 14:00:00+00 103773769814 519 614 113 89 90i8bd6b7qrj7i8er5ujh6e0vk \N \N +11 2024-10-30 14:13:08.361+00 2024-10-30 14:13:08.361+00 f t 2024-03-05 13:30:00 NO_REPORT Consulta Oftalmologia Oftalmología Transaccion cliente abono total x la pag, nosotros tenemos q abonarle el 50% a la profesional 36000.00 0.00 0.00 2024-03-05 16:30:00+00 6 6 \N 11 ieti5uq0o3s9hr2eqb6pm7jluk \N \N +883 2025-03-24 23:50:56.027863+00 2025-03-24 23:50:56.02787+00 f t 2025-03-24 16:00:00 COMPLETED clinical vómitos y falta de apetito 46000.00 9500.00 36500.00 2025-03-24 19:00:00+00 105760343723 604 706 113 88 1gubpt2jek7eoc5hc0qh3pdd48 \N \N +948 2025-04-06 15:40:51.214296+00 2025-04-06 15:40:51.214305+00 f t 2025-04-08 18:00:00 COMPLETED clinical Chequeo General 38500.00 8500.00 30000.00 2025-04-08 21:00:00+00 107515791880 641 756 113 89 a9lnro100ioina8d5escnkdcus \N \N +844 2025-03-18 23:56:07.010689+00 2025-03-18 23:56:07.010696+00 f t 2025-03-19 17:00:00 COMPLETED vaccination Vacunacion anual 118800.00 25700.00 93100.00 2025-03-19 20:00:00+00 76V4MR2ZPKVZ08L89DEZOL 580 679 113 89 1vo0cgvijvvoulrvlu5q0m9rbs \N \N +833 2025-03-18 18:17:22.423784+00 2025-03-18 18:17:22.423792+00 f t 2025-02-23 19:00:00 COMPLETED clinical Certificado de salud + corte de garras Turno de febrero que nunca se cargó.\r\nLos valores están cargados en el turno de Cookies.\r\n75600.00\r\n12900.00\r\n62700.00 0.00 0.00 0.00 2025-02-23 22:00:00+00 \N 502 594 110 1 s1dtlljengthg0uiqtdee07lvs \N \N +901 2025-03-28 15:08:23.166865+00 2025-03-28 15:08:23.166871+00 f t 2025-03-28 08:00:00 COMPLETED clinical Consulta clinica por vomitos amarillento y no tiene una alimentacio uniforme 38500.00 8500.00 30000.00 2025-03-28 11:00:00+00 \N 299 353 111 1 g0aalap0igs6dibt48l0ldr2so \N \N +874 2025-03-23 22:33:35.519776+00 2025-03-23 22:33:35.519785+00 f t 2025-04-10 17:00:00 CANCELLED vaccination Vacunación anual de dos gatitos 128900.00 20000.00 108100.00 2025-04-10 20:00:00+00 1060977228670 310 368 114 21 0kvaiosf6fqvi46cl5a3eutl2k \N \N +65 2024-10-30 14:13:08.88+00 2024-10-30 14:13:08.88+00 f t 2024-08-13 10:00:00 COMPLETED Clinica Motivo de Consulta: Desparasitación y emisión de certificado de salud Transaccion 85081063824 Cliente pagó 50% transferencia y 50% efectivo 69000.00 34500.00 46500.00 2024-08-13 13:00:00+00 64 65 \N 1 \N \N \N +814 2025-03-13 21:25:55.711296+00 2025-03-13 21:25:55.711306+00 f t 2025-03-13 16:00:00 COMPLETED clinical Revisión y aplicación de gotitas para los oídos 38500.00 8500.00 30000.00 2025-03-13 19:00:00+00 LOEJWV9JL7651DK8NQMD0G 562 659 113 89 euhhp24i56v6mnkq2ak0q113tg \N \N +927 2025-04-01 22:55:07.296766+00 2025-04-01 22:55:07.296774+00 f t 2025-04-03 20:00:00 NO_REPORT clinical Ecografia abdominal 52000.00 12000.00 40000.00 2025-04-03 23:00:00+00 107023410404 110 115 113 90 mrggovoaiadek0bpjc19v8akgo \N \N +891 2025-03-25 21:30:34.767109+00 2025-03-25 21:30:34.767117+00 f t 2025-03-26 12:30:00 NO_REPORT clinical Decaimineto, episodios previos de vomitos 38500.00 8500.00 30000.00 2025-03-26 15:30:00+00 106229065928 609 712 113 2 86boig2pa6921l2mfqmfbhskpo \N \N +956 2025-04-07 22:44:47.468316+00 2025-04-07 22:44:47.468323+00 f t 2025-04-09 11:00:00 NO_REPORT clinical Vacunación anual para dos mascotas 118800.00 20800.00 98000.00 2025-04-09 14:00:00+00 107646170716 647 762 113 88 b1b3qugnoclsk74sqa92np6ukc \N \N +662 2025-02-16 21:49:53.292916+00 2025-02-16 21:49:53.292921+00 f t 2025-02-18 18:30:00 COMPLETED vaccination Vacunación anual de dos gatos Acá se adjunta el monto total de toda la consulta 109350.00 23850.00 85500.00 2025-02-18 21:30:00+00 102166838221 459 543 114 89 sfm857dveigr43207gf368jsf8 \N \N +935 2025-04-03 16:53:16.702559+00 2025-04-03 16:53:16.702568+00 f t 2025-04-02 18:00:00 NO_REPORT clinical Eco abdominal 62000.00 12000.00 50000.00 2025-04-02 21:00:00+00 107093440606 635 745 113 90 qpdsie0vip275f7oou4rjf675c \N \N +845 2025-03-18 23:56:38.070055+00 2025-03-18 23:56:38.070063+00 f t 2025-03-19 17:00:00 COMPLETED vaccination Vacunacion anual 0.00 0.00 0.00 2025-03-19 20:00:00+00 76V4MR2ZPKVZ08L89DEZOL 580 678 113 89 3isr97djt2jvr74fv0ma57fnmg \N \N +939 2025-04-03 17:08:33.979225+00 2025-04-03 17:08:33.979235+00 f t 2025-04-03 16:30:00 COMPLETED vaccination Vacunacion anual Se aclara monto en el primer px 0.00 0.00 0.00 2025-04-03 19:30:00+00 0 637 749 113 2 nscobvijqhvsuofjb6de8tsvrs \N \N +2042 2025-08-10 18:21:15.830831+00 2025-08-10 18:21:15.830842+00 f t 2025-08-11 20:00:00 NO_REPORT clinical eutanasia 99900.00 12400.00 87500.00 2025-08-11 23:00:00+00 121238236509 425 505 1208 70 9hfp4n9s3v3ti57l37ecmdtb2o 383 \N +904 2025-03-28 20:41:00.616863+00 2025-03-28 20:41:00.61687+00 f t 2025-03-31 17:30:00 COMPLETED vaccination Vacunacion anual y desparasitacion interna y extena para dos mascotas. 0.00 0.00 0.00 2025-03-31 20:30:00+00 0 617 721 113 88 bed34mu3oaa6su9t2u1l3nfa9o \N \N +853 2025-03-19 21:24:57.44382+00 2025-03-19 21:24:57.443833+00 f t 2025-03-19 20:00:00 NO_REPORT clinical Ecografía abdominal por vómitos 52000.00 12000.00 40000.00 2025-03-19 23:00:00+00 \N 585 686 110 90 jdei8da60p2lt2hki3c7fpmcmg \N \N +839 2025-03-18 19:41:16.245266+00 2025-03-18 19:41:16.245276+00 f t 2025-04-01 18:30:00 NO_REPORT clinical consulta oftalmologica 65000.00 10000.00 55000.00 2025-04-01 21:30:00+00 105606785676 425 505 114 11 \N \N \N +931 2025-04-03 12:32:56.846779+00 2025-04-03 12:32:56.84679+00 f t 2025-04-03 19:00:00 COMPLETED vaccination vacunacion anual 66000.00 17000.00 49000.00 2025-04-03 22:00:00+00 106743889179 629 739 111 94 rs3iofkehnh0omu6kq4aaogll4 \N \N +1267 2025-05-22 17:00:03.197664+00 2025-05-22 17:00:03.197677+00 f t 2025-05-24 08:30:00 COMPLETED vaccination 0.00 0.00 0.00 2025-05-24 11:30:00+00 112473043366 1452 1432 112 91 semcup6peo87p9sjan1enccgas \N \N +944 2025-04-05 20:39:48.399256+00 2025-04-05 20:39:48.399264+00 f t 2025-04-05 18:00:00 COMPLETED clinical Lastimadura de la pata 46000.00 9500.00 36500.00 2025-04-05 21:00:00+00 67REZ8NPW7KR87X494KVGO 439 519 114 70 ib1er92gm66d9j42t0m6lcj4io \N \N +924 2025-04-01 00:02:16.712693+00 2025-04-01 00:02:16.712699+00 f t 2025-04-01 19:00:00 COMPLETED clinical Teleconsulta 25000.00 25000.00 16000.00 2025-04-01 22:00:00+00 106728125746 619 724 113 89 e8jvi12hhf9kqdhhk23mk1bkvc \N \N +3279 2025-11-14 21:43:14.43092+00 2025-11-14 21:43:14.43093+00 f t 2025-11-15 09:30:00 NO_REPORT clinical Revision de radiografia, por dolor cervical. 55000.00 11000.00 44000.00 2025-11-15 12:30:00+00 133872006888 12810 10572 1583 70 v0i1c7u0fngn9cv4t2ihcssbi0 \N 1608 +875 2025-03-23 22:34:20.994236+00 2025-03-23 22:34:20.994242+00 f t 2025-04-10 17:00:00 CANCELLED vaccination Vacunación anual de dos gatitos 0.00 0.00 0.00 2025-04-10 20:00:00+00 0 310 367 114 21 gt3bjfgpg9f3si66nt6t4oda0k \N \N +870 2025-03-23 21:57:05.609901+00 2025-03-23 21:57:05.609909+00 f t 2025-03-24 16:30:00 COMPLETED telemedicina Consulta Online https://meet.google.com/qpr-yaeq-vxc 24000.00 24000.00 0.00 2025-03-24 19:30:00+00 PDX40GNY18GJWK7Y20L6EY 596 698 114 89 61it23p9l3rith5ac6it5qgufo \N \N +892 2025-03-25 21:36:31.495516+00 2025-03-25 21:36:31.495523+00 f t 2025-04-01 15:00:00 COMPLETED clinical consulta clínica, chequeo general 38500.00 8500.00 30000.00 2025-04-01 18:00:00+00 105891250049 610 713 113 94 tlf2tv8me15tr6ifg8ggh1i8pg \N \N +2442 2025-09-10 15:20:18.701376+00 2025-09-10 15:20:18.701387+00 f t 2025-09-10 14:00:00 COMPLETED clinical tiene 5cm de intestino afuera, lo operan mañana pero hoy no quiso comer y debe aplicarle 2 inyectables 55000.00 11000.00 44000.00 2025-09-10 17:00:00+00 125092704293 8353 6884 1208 1 9u66qeho5bvtgutrsrl298uj18 86 \N +714 2025-02-25 18:52:29.473498+00 2025-02-25 18:52:29.473507+00 f t 2025-02-24 16:30:00 NO_REPORT clinical Extracción de sangre + traslado de muestras + laboratorio de Pre-quirúrgico hemostático y Dou Vilef y Vif Dou Vilef y Vif (56.000 - 102934475633) 139800.00 106800.00 33000.00 2025-02-24 19:30:00+00 36382057052 487 585 114 88 gk4g5mkf4gi2m9rd65ctrv4t5o \N \N +2196 2025-08-22 00:05:57.904838+00 2025-08-22 00:05:57.904848+00 f t 2025-08-22 19:00:00 COMPLETED clinical Mamas Inflamadas 42000.00 9500.00 32500.00 2025-08-22 22:00:00+00 122691324317 7059 5775 114 88 r5gqfgmalng66vm61he6m9pnuo 279 \N +966 2025-04-09 23:54:40.953527+00 2025-04-09 23:54:40.953536+00 f t 2025-04-14 10:30:00 COMPLETED clinical Vacunación anual 66000.00 17000.00 49000.00 2025-04-14 13:30:00+00 107891580096 653 770 113 80 lmot3gp26tt13oojhrfjmegnk8 \N \N +911 2025-03-30 21:55:20.038385+00 2025-03-30 21:55:20.038392+00 f t 2025-04-01 18:30:00 COMPLETED vaccination vacunación anual 0.00 0.00 0.00 2025-04-01 21:30:00+00 0 564 727 114 80 qk0bnqun4h6d0nql576u41ubkc \N \N +941 2025-04-04 23:16:12.727502+00 2025-04-04 23:16:12.727508+00 f t 2025-04-12 12:00:00 COMPLETED clinical Vacunacion anual para dos pacientes 132000.00 34000.00 98000.00 2025-04-12 15:00:00+00 9151 639 751 113 88 3np0d3oqgn88pvj2r3t97shhp0 \N \N +928 2025-04-01 23:02:44.285893+00 2025-04-01 23:02:44.2859+00 f t 2025-04-02 08:00:00 COMPLETED clinical Vacunacion anual La vete fue y la clienta no la atencion, hay que pagarle a la vete $30.000 66000.00 17000.00 49000.00 2025-04-02 11:00:00+00 98850445 629 739 111 94 tf7ucgs61aqdvfviffsi82per4 \N \N +920 2025-03-31 23:43:12.565655+00 2025-03-31 23:43:12.565663+00 f t 2025-03-31 20:30:00 COMPLETED clinical Lastimadura en el lomo 46000.00 9500.00 36500.00 2025-03-31 23:30:00+00 4481 625 735 113 91 9hnm99d1f6pghsrhmm8q448b70 \N \N +953 2025-04-07 22:36:02.554586+00 2025-04-07 22:36:02.554594+00 f t 2025-04-11 18:00:00 NO_REPORT clinical Vacunación anual 66000.00 17000.00 49000.00 2025-04-11 21:00:00+00 107637713216 645 760 113 70 hurhhmuhhok3ip69rs45uvg6t8 \N \N +954 2025-04-07 22:37:46.761381+00 2025-04-07 22:37:46.761389+00 f t 2025-04-09 10:00:00 NO_REPORT clinical Ecocardiograma 95000.00 10000.00 85000.00 2025-04-09 13:00:00+00 107209387539 110 115 113 82 1o3c3t1go5p27smpud9saja25k \N \N +895 2025-03-26 15:56:05.729847+00 2025-03-26 15:56:05.729856+00 t t 2025-04-02 16:00:00 PENDING vaccination vacunacion anual 66000.00 17000.00 49000.00 2025-04-02 19:00:00+00 \N 118 123 111 89 5iunhgb34ldc8q56fvv2e2orm0 \N \N +2346 2025-09-01 23:52:04.09901+00 2025-09-01 23:52:04.099017+00 f t 2025-09-03 14:30:00 COMPLETED clinical Tiene una protuberancia abajo de la cola y el ano 76000.00 11000.00 65000.00 2025-09-03 17:30:00+00 R7ZG0QNDJZLW4W1GNEXYPO 7748 6380 114 75 pav4ooulah6r6crkvrcmdrorls 149 \N +884 2025-03-24 23:53:21.29425+00 2025-03-24 23:53:21.294257+00 f t 2025-03-24 17:00:00 COMPLETED clinical urgencia dolor estomacal 46000.00 9500.00 36500.00 2025-03-24 20:00:00+00 105763661135 605 707 113 70 sig8e6dg34ivhbhjpdjiadmfhg \N \N +968 2025-04-10 21:06:41.953844+00 2025-04-10 21:06:41.953853+00 f t 2025-04-10 16:00:00 COMPLETED clinical Estudio orina con sedimento : 6500x2\r\nTraslado de muestra:10.500 25000.00 25000.00 25000.00 2025-04-10 19:00:00+00 \N 409 488 113 86 84e0km470vftm0faqlvuml9cms \N \N +2279 2025-08-28 16:00:37.595675+00 2025-08-28 16:00:37.595684+00 f t 2025-08-28 19:00:00 COMPLETED clinical Vomitos, 1 dia sin comer 50000.00 10000.00 40000.00 2025-08-28 22:00:00+00 123447935491 7436 6120 \N 80 5bi1ea7ddudm11li4qb1e13usc 210 \N +964 2025-04-09 23:42:46.915604+00 2025-04-09 23:42:46.915613+00 f t 2025-04-12 11:30:00 COMPLETED clinical Vacunacion anual para 2 mascotas 118800.00 20800.00 98000.00 2025-04-12 14:30:00+00 8D0Q619LOK1O151397JZ5R 652 769 113 89 cv21v8u6op86l1qqksr70n0dqo \N \N +855 2025-03-20 14:08:50.326605+00 2025-03-20 14:08:50.326615+00 f t 2025-03-19 21:30:00 NO_REPORT clinical Ecografia abdominal de Urgencia 52000.00 40000.00 12000.00 2025-03-20 00:30:00+00 \N 586 687 110 90 7h3r3fiu8f4sk27o92atd0rcl4 \N \N +2329 2025-09-01 22:04:13.430772+00 2025-09-01 22:04:13.430782+00 f t 2025-09-02 11:30:00 NO_REPORT clinical Fluidoterapia 241500.00 49500.00 192000.00 2025-09-02 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 0js6e125tmli0o5m76jvmsjl8k 162 \N +902 2025-03-28 20:32:49.196538+00 2025-03-28 20:32:49.196545+00 f t 2025-03-31 08:30:00 COMPLETED telemedicina Devolución de resultados 25000.00 25000.00 16000.00 2025-03-31 11:30:00+00 1061173622871 541 637 113 91 av3d9jt3bjtrl35vvfljc8e4js \N \N +936 2025-04-03 17:01:40.844706+00 2025-04-03 17:01:40.844715+00 f t 2025-04-02 14:30:00 COMPLETED clinical Dificultad en la marcha, Mialgia 46000.00 9500.00 36500.00 2025-04-02 17:30:00+00 106663503569 636 746 113 91 rudlo2ee4c4ppgvkfmcohb56ns \N \N +912 2025-03-30 21:56:08.903721+00 2025-03-30 21:56:08.903731+00 f t 2025-04-01 18:30:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-04-01 21:30:00+00 0 564 726 114 80 geieqk0m80h8fp0tknb8g65kls \N \N +898 2025-03-27 15:56:28.17927+00 2025-03-27 15:56:28.179278+00 f t 2025-03-28 15:00:00 COMPLETED clinical Presenta ronchas en el cuerpo, creen que es sarna. 38500.00 8500.00 30000.00 2025-03-28 18:00:00+00 106482864436 462 548 111 88 6cm4le3pm5vuu5i0ampt44jkos \N \N +949 2025-04-06 20:45:42.905621+00 2025-04-06 20:45:42.905631+00 f t 2025-04-06 18:00:00 COMPLETED clinical clínica por lastimadura en genitales y dolor de cadera 46000.00 9500.00 36500.00 2025-04-06 21:00:00+00 107107405753 642 757 114 70 1sj3d10tneule1ovadj0jjt5gg \N \N +906 2025-03-29 22:21:40.125188+00 2025-03-29 22:21:40.125196+00 f t 2025-04-01 09:00:00 NO_REPORT clinical ecocardiograma 95000.00 10000.00 85000.00 2025-04-01 12:00:00+00 106286253037 526 621 113 82 1t9637uomaujfs9c6mv0kaj154 \N \N +2253 2025-08-26 15:05:26.635831+00 2025-08-26 15:05:26.635839+00 f t 2025-08-26 15:00:00 COMPLETED clinical Perra con flema hace 1 dia 50000.00 10000.00 40000.00 2025-08-26 18:00:00+00 123198616841 7323 6009 1583 1 6mho6v53b979ediph38v1at7rc 233 \N +888 2025-03-25 21:02:28.671262+00 2025-03-25 21:02:28.671272+00 f t 2025-03-28 14:00:00 COMPLETED vaccination Revisión general 38500.00 8500.00 30000.00 2025-03-28 17:00:00+00 106301113984 507 599 113 91 6j7bqcvith7ltbdchsl0hisnm8 \N \N +2730 2025-10-02 17:24:01.113787+00 2025-10-02 17:24:01.113797+00 f t 2025-10-03 18:30:00 COMPLETED clinical Viene hace 5 días con un cuadro indefinido. Los primeros días no comía, pero si tomaba agua. Recién hace dos días que volvió a comer pero no quiere balanceado. Solo come carne hervida. Toma poca agua y está decaído.. extra por distancia 64000.00 11000.00 53000.00 2025-10-03 21:30:00+00 127786344467 9496 7904 1208 21 v3t80rushrfj3f679atgljus90 \N 794 +1477 2025-06-15 17:27:39.282151+00 2025-06-15 17:27:39.282157+00 f t 2025-06-17 10:00:00 COMPLETED clinical Revisión por salpullidos 0.00 0.00 0.00 2025-06-17 13:00:00+00 0 2754 2434 114 1 api907r3f6e22ta29i2utnpejk \N \N +1942 2025-07-30 17:49:38.456852+00 2025-07-30 17:49:38.45686+00 f t 2025-07-30 20:00:00 COMPLETED clinical cistitis hace meses, orina con sangre 67000.00 12000.00 55000.00 2025-07-30 23:00:00+00 XJ8G7V95EG84EOZ42EMPYR 5570 4562 1208 90 ii0uu4srj41k4cg0oddlejiaug 490 \N +1922 2025-07-29 17:10:50.812318+00 2025-07-29 17:10:50.812327+00 f t 2025-08-01 08:00:00 COMPLETED clinical Seguimiento del paciente, evaluación para realizar vacunación 37800.00 5300.00 32500.00 2025-08-01 11:00:00+00 67REZ8NPWY80561R94KVGO 5480 4490 1026 68 0mls25eqrp48qpfvst93p01i70 479 \N +408 2025-01-13 20:45:56.873+00 2025-01-13 20:45:56.873+00 f t 2025-01-13 17:00:00 COMPLETED clinical **Anamnesis** \r\nEl tutor reporta que el gato presenta vómitos intermitentes desde hace un tiempo, inicialmente esporádicos tras consumir su alimento balanceado habitual (Royal Canin FIT). También se le ofrecieron alimentos como atún, pollo e hígado ocasionalmente. Recientemente, entre viernes y sábado, los vómitos se hicieron más frecuentes y ocurrían inmediatamente después de comer, especialmente cuando consumía rápido. Este comportamiento podría haberse visto influido por la presencia de un gato intruso en la casa, lo cual podría generar ansiedad durante la alimentación. \r\n\r\nAyer, al retirar el alimento balanceado y ofrecer pollo por la noche, volvió a comer rápidamente y vomitó nuevamente. Hoy por la mañana se le ofreció solo caldo de pollo, el cual toleró sin vómitos y logró defecar, lo que era una preocupación del tutor. El gato se mantiene activo, juega, y demuestra interés por la comida, aunque su hábito de comer rápido persiste. 35000.00 7000.00 28000.00 2025-01-13 20:00:00+00 98767080545 311 369 110 1 \N \N \N +2105 2025-08-15 20:58:50.315259+00 2025-08-15 20:58:50.315268+00 f t 2025-08-25 11:30:00 COMPLETED clinical Fluidoterapia 0.00 0.00 0.00 2025-08-25 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 utrb288046n3usdtjfm82glo6g \N \N +961 2025-04-09 15:14:27.723513+00 2025-04-09 15:14:27.723522+00 f t 2025-04-10 10:00:00 COMPLETED clinical hace rato que le lagrimea un ojito y se rasca y lastima la piel cercana. Ya la hicimos ver 2 veces este año. No hay ulcera ambas veces nos indicaron un colirio con corticoide y antibiotico pero no mejora\r\nEstos últimos dias estuvo con diarrea y la notamos un poco caiducha 38500.00 8500.00 30000.00 2025-04-10 13:00:00+00 \N 650 766 111 1 20i1jpn33qduefnqe074b41hn0 \N \N +2438 2025-09-09 19:10:24.367268+00 2025-09-09 19:10:24.367275+00 f t 2025-09-09 17:30:00 COMPLETED clinical Sangrado por debajo de la cola. Le cuesta levaantarse 55000.00 11000.00 44000.00 2025-09-09 20:30:00+00 RDO6ZO09W100POP8325GP7X 8309 6842 1583 21 tc8qov6iu2p8a05s172u172d90 97 \N +2177 2025-08-20 23:46:48.480448+00 2025-08-20 23:46:48.480455+00 f t 2025-08-21 15:00:00 NO_REPORT clinical 2 Extracciones para VIf y Vilef Hay que transferirle a anto $20.000 72000.00 72000.00 0.00 2025-08-21 18:00:00+00 38524194995 6024 4916 114 85 88kliqfr8hju754581uf7u523o 288 \N +2287 2025-08-29 17:12:26.624945+00 2025-08-29 17:12:26.624955+00 f t 2025-08-30 20:00:00 NO_REPORT clinical Ecografia abdomial Abona todo con transferencia 78000.00 78000.00 65000.00 2025-08-30 23:00:00+00 123590194765 7517 6181 1583 90 ce15uq3pv641522ait6qlq5ta0 186 \N +1963 2025-08-01 21:22:28.376083+00 2025-08-01 21:22:28.37609+00 f t 2025-08-02 16:00:00 COMPLETED vaccination vacunación anual 72000.00 19000.00 53000.00 2025-08-02 19:00:00+00 120674603140 5731 4685 1026 1 pekeoeo6drucdv03v0s9ci1ajg 461 \N +1982 2025-08-04 15:18:31.372965+00 2025-08-04 15:18:31.372977+00 f t 2025-08-04 22:00:00 NO_REPORT clinical Eco abdominal 78000.00 13000.00 65000.00 2025-08-05 01:00:00+00 120450590335 5860 4789 1026 90 0rddpt7lcotr1m26uiifv9ovko 435 \N +742 2025-02-27 23:44:39.993024+00 2025-02-27 23:44:39.993031+00 f t 2025-03-01 10:00:00 NO_REPORT clinical Vacunacion anual para ambas gatas por el fallecimiento del negro Debemos abonarle a palladino la diferencia $19809 \r\n\r\nTenia a favor 19809 + seña de consulta de finde semana 8600 109350.00 28409.00 80441.00 2025-03-01 13:00:00+00 103629016056 359 613 113 70 n8gum9aoetbtdosol8hhccu58g \N \N +1751 2025-07-13 19:00:02.199358+00 2025-07-13 19:00:02.199367+00 f t 2025-07-14 15:00:00 COMPLETED clinical Hace una semana tiene alguna que otra vez vomitó apenas come. Esporádicos. Ayer vomitó luego de comer varias veces . Luego poco apetito y decaimiento 42000.00 9500.00 32500.00 2025-07-14 18:00:00+00 118464092748 4461 3709 1208 92 b56cq9porvlrs0hrr6shsp3s10 637 \N +1992 2025-08-05 12:48:27.547725+00 2025-08-05 12:48:27.547774+00 f t 2025-08-09 13:00:00 COMPLETED clinical Tos 50000.00 10000.00 40000.00 2025-08-09 16:00:00+00 L18MKX9R7OKXBQ5V9O6WYV 3927 3297 1026 88 antdtn7ckauslf5qvvduncv6fc 405 \N +1987 2025-08-04 19:55:39.063945+00 2025-08-04 19:55:39.063953+00 f t 2025-08-05 08:00:00 COMPLETED clinical 60500.00 60500.00 0.00 2025-08-05 11:00:00+00 120482811621 5802 4745 1208 100 gjhcb8b8h0l7i840cqeadmq22s 434 \N +1064 2025-04-26 21:12:47.67545+00 2025-04-26 21:12:47.675456+00 f t 2025-04-29 13:00:00 COMPLETED vaccination Vacunación de 2 gatos Abono con tarjeta, lo $98.000 restantes de lo entregado se lo tenemos que transferir al veterinario 118000.00 118000.00 0.00 2025-04-29 16:00:00+00 109563575864 742 865 114 1 la20f9vhrov58cbn46g9f9uhjs \N \N +1990 2025-08-04 22:29:36.618793+00 2025-08-04 22:29:36.618803+00 f t 2025-08-06 13:30:00 COMPLETED clinical vac. anual + certificado de salud 87400.00 23400.00 64000.00 2025-08-06 16:30:00+00 R7ZG0QNDJEKGEMP4NEXYPO 841 4818 1208 80 eru79t4dobisms4rscvmv9vask 427 \N +1983 2025-08-04 15:23:27.008536+00 2025-08-04 15:23:27.008544+00 f t 2025-08-04 21:00:00 NO_REPORT clinical Eco abdominal 78000.00 13000.00 65000.00 2025-08-05 00:00:00+00 120451448955 5844 4777 1026 90 nucvfbhf4j4pil2b76o12ptbs8 436 \N +2249 2025-08-26 12:11:48.485772+00 2025-08-26 12:11:48.485782+00 f t 2025-08-26 20:30:00 COMPLETED clinical Eco abdominal 78000.00 13000.00 75000.00 2025-08-26 23:30:00+00 \N 6789 5644 113 90 hm9cg212qm2ilrdpdglrdvr4e0 225 \N +680 2025-02-18 20:45:43.4237+00 2025-02-18 20:45:43.42371+00 f t 2025-02-18 17:00:00 NO_REPORT vaccination Vacunación anual 60750.00 15750.00 45000.00 2025-02-18 20:00:00+00 102336337677 470 557 114 88 92auckok3i22rne50l0u8r6ifs \N \N +2852 2025-10-12 19:14:31.583382+00 2025-10-12 19:14:31.583408+00 f t 2025-10-12 16:00:00 COMPLETED clinical Estornudos constantes \N 55000.00 11000.00 44000.00 2025-10-12 19:00:00+00 39202500799 10555 8759 \N 92 ualj2isrf5bqav4ocp4fdc72vg \N 969 +2824 2025-10-08 19:56:54.058377+00 2025-10-08 19:56:54.058386+00 f t 2025-10-10 10:00:00 COMPLETED clinical 3ra dosis triple felinaa Se debe $51000 a la vete, tutor paga con link de pago 70000.00 70000.00 0.00 2025-10-10 13:00:00+00 129164503536 10291 8544 1583 114 1dgupiv653rh0dnj7mpp6blivs \N 925 +859 2025-03-21 00:03:11.422762+00 2025-03-21 00:03:11.422769+00 f t 2025-03-20 19:00:00 COMPLETED clinical Diarrea- decaimiento 46000.00 9500.00 36500.00 2025-03-20 22:00:00+00 36663825133 588 689 113 68 7bklfcbsooaphi7oqp9hmfs73k \N \N +529 2025-01-30 23:22:20.496322+00 2025-01-30 23:22:20.49633+00 f t 2025-02-19 16:00:00 COMPLETED clinical Consulta cardiologia +ECG+Eco Derivacion de Palladino 95000.00 10000.00 85000.00 2025-02-19 19:00:00+00 100473765045 377 443 113 82 \N \N \N +2397 2025-09-05 17:00:29.534927+00 2025-09-05 17:00:29.534938+00 f t 2025-09-07 11:00:00 COMPLETED vaccination Vacunacion anual para los dos perritos descuento por mas de un animal de -$15.600 140000.00 27400.00 113000.00 2025-09-07 14:00:00+00 124461152277 88 6561 1583 80 14dvv498qajo8rq5vv5s725mu4 113 \N +2956 2025-10-20 22:52:05.327819+00 2025-10-20 22:52:05.32783+00 f t 2025-10-24 17:30:00 COMPLETED clinical Ecografía de Ojos 78000.00 13000.00 65000.00 2025-10-24 20:30:00+00 46YGOW9M1DGV066PNEXD8J 11179 9270 1208 90 hs53vcrp6vno5mgfg0vj0tvdnk \N 1123 +3372 2025-11-24 22:49:55.761812+00 2025-11-24 22:49:55.761821+00 f t 2025-12-02 16:00:00 PENDING clinical Vacunacion anual 2 caninos 140400.00 27400.00 113000.00 2025-12-02 19:00:00+00 135117108972 14387 11869 1583 114 vb4b72mas7g24oq142sdvdordc \N 1762 +2175 2025-08-20 23:42:04.801762+00 2025-08-20 23:42:04.801771+00 f t 2025-08-22 19:30:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-08-22 22:30:00+00 123049578996 1888 5828 114 92 l1tiu72do5edid9676epugujec 278 \N +2194 2025-08-21 23:29:42.547231+00 2025-08-21 23:29:42.547241+00 f t 2025-08-22 10:00:00 COMPLETED clinical ulceras en la cara 42000.00 9500.00 32500.00 2025-08-22 13:00:00+00 122664107699 7056 5772 114 80 dpsos8vgfeg4grt3knv541kuec 282 \N +984 2025-04-14 21:04:21.059628+00 2025-04-14 21:04:21.059637+00 f t 2025-04-21 18:00:00 COMPLETED vaccination vacunacion anual gato + corte de garras X 2 datos dinero en el otro gato 0.00 0.00 0.00 2025-04-21 21:00:00+00 108408387286 662 783 111 70 aeqv5vtjgpvahm6clkplce3v5o \N \N +157 2024-10-30 14:13:09.697+00 2024-10-30 14:13:09.697+00 f t 2024-10-02 14:30:00 COMPLETED Urgencias Gato lagrimea un ojo Transaccion 89113652635 49600.00 18600.00 31000.00 2024-10-02 17:30:00+00 138 145 \N 2 \N \N \N +1957 2025-07-31 18:17:24.15632+00 2025-07-31 18:17:24.156328+00 f t 2025-08-04 08:00:00 COMPLETED clinical orina 41800.00 41800.00 0.00 2025-08-04 11:00:00+00 7L8GYKNXWYVG3K3P2MPRZ5 5021 4145 1208 100 ou107t3p87og48afovjhe1e63g 446 \N +1879 2025-07-25 16:00:54.373822+00 2025-07-25 16:00:54.373833+00 f t 2025-07-26 14:00:00 COMPLETED clinical Control clínico completo, lo adoptamos hace un mes y notamos ciertas cosas que queremos evaluar. 50000.00 10000.00 40000.00 2025-07-26 17:00:00+00 119343020001 5239 4305 1026 92 vmbegjgqen118oe2o8mo46136c 529 \N +851 2025-03-19 16:38:12.296195+00 2025-03-19 16:38:12.296207+00 f t 2025-03-19 20:00:00 COMPLETED clinical Consulta clinica, extracción para analisis Perfil Prequirúrgico Pago 2 turnos en la misma transaccion de MP\r\n\r\nClínica \t$38.500\tseña $8.500\r\nPerfil Prequirúrgico Hemostático 1\t$30.000\tseña$30.000\r\nTraslado de las muestras\t$12.000\tseña$12.000\r\nExtraccion de sangre\t$7.000\tseña$2.000 87500.00 52500.00 35000.00 2025-03-19 23:00:00+00 105633926632 528 623 110 70 44h8138sdjpbkqlt81lr00fkq0 \N \N +2170 2025-08-20 15:45:45.049626+00 2025-08-20 15:45:45.049634+00 f t 2025-08-20 19:00:00 COMPLETED clinical hace pis muy seguido .. se hace el q hace y no hace mucho o a penas unas gotitas ... como una sistitis 50000.00 10000.00 40000.00 2025-08-20 22:00:00+00 123036960922 6935 5673 1208 89 ubsnf8gl72qngg9n2jo3rbuk5k 298 \N +621 2025-02-10 16:08:08.69324+00 2025-02-10 16:08:08.693248+00 f t 2025-01-29 18:00:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-01-29 21:00:00+00 \N 377 446 114 70 cnedgjpk36l6h0r8ulf4a7rqmo \N \N +972 2025-04-11 14:14:31.77786+00 2025-04-11 14:14:31.77787+00 f t 2025-04-12 10:00:00 NO_REPORT vaccination vacunacion anual x 2 gatos 118800.00 20800.00 98000.00 2025-04-12 13:00:00+00 107641970157 656 775 111 71 mp1ug25eoipn45gsgel1oejoas \N \N +995 2025-04-15 16:32:46.34243+00 2025-04-15 16:32:46.342439+00 f t 2025-04-16 11:00:00 COMPLETED clinical Estrés 38500.00 8500.00 30000.00 2025-04-16 14:00:00+00 108056768117 669 792 112 1 qmp6lcoj4jq9agsqjjrat2dmbo \N \N +2748 2025-10-03 14:33:26.664133+00 2025-10-03 14:33:26.664142+00 f t 2025-10-09 10:00:00 COMPLETED clinical Hemograma completo 0.00 0.00 0.00 2025-10-09 13:00:00+00 0 9899 8181 1583 100 90lug15kir9i285fcspd2rm0dc \N 822 +983 2025-04-14 21:03:34.855578+00 2025-04-14 21:03:34.855584+00 f t 2025-04-21 18:00:00 COMPLETED vaccination Vacunacion anual gato + corte de garras X 2 131400.00 23400.00 108000.00 2025-04-21 21:00:00+00 108408387286 662 782 111 70 um7rtgfn81dlnsjvfklfq3c8hs \N \N +2529 2025-09-17 16:17:59.778292+00 2025-09-17 16:17:59.778299+00 f t 2025-09-19 21:00:00 COMPLETED clinical 2da dosis triple felina 70000.00 19000.00 51000.00 2025-09-20 00:00:00+00 125978974633 8789 7258 1583 79 kcfis9upjrk6a3deudppf77nvs \N \N +2044 2025-08-10 18:59:00.069267+00 2025-08-10 18:59:00.069277+00 f t 2025-08-10 14:00:00 NO_REPORT clinical decaido y tiembla mucho 50000.00 10000.00 40000.00 2025-08-10 17:00:00+00 L18MKX9R7OOY3J5O9O6WYV 6238 5088 1208 2 1p0qs782220js7ih25i6q6brss 394 \N +1926 2025-07-29 23:00:35.35101+00 2025-07-29 23:00:35.35102+00 f t 2025-07-30 08:30:00 COMPLETED clinical 0.00 0.00 0.00 2025-07-30 11:30:00+00 0 5528 4528 1208 100 \N \N \N +233 2024-11-14 22:35:18.437+00 2024-11-14 22:35:18.437+00 f t 2024-11-15 16:30:00 COMPLETED clinical -Vacunación (Rabia + Sext/Triple)\r\n-Certifcados de salud\r\n-Desparasitacion Transacción 88779475\r\nNo se pudo llevar a cabo la consulta ya que la gata no estaba en el domicilio, se abona únicamente $26.000 al veterinario por consulta clínica. 111800.02 37800.00 73000.00 2024-11-15 19:30:00+00 196 208 114 9 uhdnroanu2c0atcackrbju1sj4 \N \N +985 2025-04-15 00:46:34.648711+00 2025-04-15 00:46:34.648719+00 f t 2025-05-03 11:30:00 COMPLETED clinical Refuerzo con triple felina para ambos pacientes 107100.00 19100.00 88000.00 2025-05-03 14:30:00+00 \N 652 769 113 89 105gl8ekdms0gvravhbf3jgnqc \N \N +530 2025-01-30 23:24:51.209138+00 2025-01-30 23:24:51.209146+00 f t 2025-01-30 21:30:00 NO_REPORT clinical Vomitos y Diarrea 41600.00 8600.00 33000.00 2025-01-31 00:30:00+00 55166247 387 461 113 1 q1eos2u1o7ni0f3rvllo58iu6g \N \N +973 2025-04-11 14:17:19.307499+00 2025-04-11 14:17:19.307506+00 f t 2025-04-12 10:00:00 COMPLETED vaccination vacunacion anual x 2 gatos valores cargados en el otro gato 0.00 0.00 0.00 2025-04-12 13:00:00+00 \N 656 774 111 71 2s2goe3ugkgoaj1i4ga5vh7v0o \N \N +976 2025-04-12 18:46:20.706765+00 2025-04-12 18:46:20.706773+00 f t 2025-04-12 15:00:00 COMPLETED telemedicina teleconsulta para ver resultados del estudio https://meet.google.com/ren-ayhm-kee 25000.00 25000.00 0.00 2025-04-12 18:00:00+00 108199462530 643 758 114 92 orf598kne910ceqkgc9vv12bn8 \N \N +986 2025-04-15 00:47:39.511071+00 2025-04-15 00:47:39.511078+00 f t 2025-05-03 11:30:00 COMPLETED clinical Refuerzo con triple felina para ambos pacientes 0.00 0.00 0.00 2025-05-03 14:30:00+00 0 652 768 113 89 8sa537nlhd3vjiho31eviapbk8 \N \N +993 2025-04-15 15:48:40.86884+00 2025-04-15 15:48:40.868848+00 t t 2025-04-15 13:00:00 PENDING telemedicina Consultas puntuales sobre Tura abonar a la vet 25000.00 25000.00 25000.00 2025-04-15 16:00:00+00 \N 668 791 112 89 sgrcuu8entslsnhg0tm7v719ho \N \N +1944 2025-07-30 21:26:30.432303+00 2025-07-30 21:26:30.43231+00 f t 2025-08-03 10:00:00 COMPLETED clinical Revision 50000.00 10000.00 40000.00 2025-08-03 13:00:00+00 119901461257 4325 3603 113 99 ar9ipm844rf1k4j4o7j06on2u8 453 \N +1953 2025-07-31 16:31:18.531856+00 2025-07-31 16:31:18.531865+00 f t 2025-08-02 10:00:00 NO_REPORT clinical Eco abdominal 67000.00 12000.00 55000.00 2025-08-02 13:00:00+00 38239533346 393 467 1026 5 p26offp1t58og5368opdf9bbak 468 \N +2333 2025-09-01 22:05:21.567206+00 2025-09-01 22:05:21.567219+00 f t 2025-09-06 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-09-06 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 u13um6gm306s7igd97vu1uqbq0 \N \N +988 2025-04-15 00:55:09.008234+00 2025-04-15 00:55:09.008244+00 f t 2025-04-16 18:00:00 CANCELLED clinical Eco abdominal 52000.00 12000.00 40000.00 2025-04-16 21:00:00+00 107973689181 664 785 113 90 vplshloimfvtmregkifj2av604 \N \N +1925 2025-07-29 22:58:59.470999+00 2025-07-29 22:58:59.471009+00 f t 2025-07-30 08:30:00 NO_REPORT clinical Otra transaccion 27388348 48500.00 28500.00 20000.00 2025-07-30 11:30:00+00 27382308 5528 4528 1208 85 v3ocke0gs5c33n0d07e7a6sn2s 495 \N +622 2025-02-10 16:09:05.648397+00 2025-02-10 16:09:05.648406+00 f t 2025-01-29 18:00:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-01-29 21:00:00+00 \N 377 447 114 70 jgkn4hj7kq7a1aqbd4vlrrdddo \N \N +2264 2025-08-26 23:56:51.232573+00 2025-08-26 23:56:51.23258+00 f t 2025-08-30 10:00:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-08-30 13:00:00+00 \N 6905 5647 114 1 dff13tct7k97pfhnvu6037ib8k 194 \N +1902 2025-07-28 14:48:40.158657+00 2025-07-28 14:48:40.158664+00 f t 2025-07-29 09:00:00 COMPLETED clinical Extracción y laboratorio 27630.00 4630.00 23000.00 2025-07-29 12:00:00+00 119637954863 1798 1709 1026 104 mmc0vibemqfv23hdh80tfrgjo4 510 \N +981 2025-04-14 20:51:27.958973+00 2025-04-14 20:51:27.958979+00 f t 2025-04-13 18:00:00 COMPLETED clinical Paciente con vómitos y diarrea 46000.00 9500.00 36500.00 2025-04-13 21:00:00+00 Z4K6DVNODXIR66KM95J8LQ 661 781 112 89 l9l5pki66kb64910cdnm91s4io \N \N +1052 2025-04-24 17:40:37.229256+00 2025-04-24 17:40:37.229264+00 f t 2025-04-25 10:00:00 NO_REPORT clinical Vacunacion con sextuple 0.00 0.00 0.00 2025-04-25 13:00:00+00 \N 715 833 113 74 n9u7vvfs2mv1fah2frstkhp780 \N \N +1697 2025-07-08 14:40:18.850167+00 2025-07-08 14:40:18.850176+00 f t 2025-07-19 16:00:00 COMPLETED clinical 0.00 0.00 0.00 2025-07-19 19:00:00+00 0 3052 2661 1026 68 0m1h6pqpftb2m54ea3u57la3m8 \N \N +1964 2025-08-01 22:19:44.116931+00 2025-08-01 22:19:44.11694+00 f t 2025-08-02 18:30:00 COMPLETED clinical acunacion anual para simon y vacunacion con antirrabica para arthur y agatha 153900.00 24900.00 129000.00 2025-08-02 21:30:00+00 120680922630 5733 4688 113 68 1k2re7oe63arr3m0nma6n1jask 458 \N +1911 2025-07-28 21:03:28.521582+00 2025-07-28 21:03:28.521589+00 f t 2025-07-28 20:30:00 COMPLETED clinical Resolución de estudios Abonarle a Vero 17500 24750.00 24750.00 0.00 2025-07-28 23:30:00+00 94944190 4485 3735 1026 91 aijuha8e9kih23km9qnmk7se90 514 \N +1003 2025-04-16 18:20:19.178428+00 2025-04-16 18:20:19.178437+00 f t 2025-04-16 13:00:00 COMPLETED clinical Aclaracoion de valores\r\nCitologia por PAF: 16.000 x 2 = 32.000= (Eran dos muestras)3\r\nEnvio:12.000 76000.00 76000.00 0.00 2025-04-16 16:00:00+00 108115950265 659 778 113 86 911tulvr63996nklmlbrfs4308 \N \N +1002 2025-04-16 18:11:01.509096+00 2025-04-16 18:11:01.509104+00 f t 2025-04-16 19:00:00 COMPLETED clinical Seguimiento + corte de uña se aplica descuento de recompra 40950.00 5950.00 35000.00 2025-04-16 22:00:00+00 86VRPQ2GVEZ7KDWM2GLY0M 677 800 113 88 08lkhakdolc5rf9rs8kgti0ms4 \N \N +1001 2025-04-16 18:09:39.321357+00 2025-04-16 18:09:39.321367+00 f t 2025-04-15 19:00:00 COMPLETED clinical Falta de alimentación por decaimiento 46000.00 9500.00 36500.00 2025-04-15 22:00:00+00 z4k6dvnodlwxoeo495j8lq 677 800 113 88 cfg2f77k37mbirnieco5upd6lo \N \N +1788 2025-07-16 14:53:07.849418+00 2025-07-16 14:53:07.849428+00 f t 2025-07-16 17:00:00 NO_REPORT clinical tiene episodios de tos pero se atraganta incluso a veces lleva a vomitar,Supe quedar con la lengua afuera.\r\nYa lo vio una neumonologa que me dió un Puff con corticoide considerando q podría ser origen alérgico. Pero es imposible aplicarle la máscara. Abonarle a Martín $17.500 27500.00 27500.00 0.00 2025-07-16 20:00:00+00 118295486253 4644 3858 1026 70 6hqb0iheg2vq5i20sfs64blhvg 612 \N +1868 2025-07-24 14:54:56.217014+00 2025-07-24 14:54:56.217024+00 f t 2025-07-24 14:30:00 COMPLETED clinical Vómitos 50000.00 10000.00 40000.00 2025-07-24 17:30:00+00 20-95824362-7 5170 4255 1026 88 qbjpoghq7gvh4gjrramlsg9kfs 551 \N +1054 2025-04-24 17:45:59.137074+00 2025-04-24 17:45:59.137083+00 f t 2025-04-24 19:00:00 COMPLETED vaccination vacunacion anual 66000.00 17000.00 49000.00 2025-04-24 22:00:00+00 \N 727 851 111 1 iid860fht5glr5599sgf3gqsog \N \N +1913 2025-07-29 12:53:34.425575+00 2025-07-29 12:53:34.425583+00 f t 2025-07-29 18:00:00 COMPLETED clinical Soy medica, parece tener una ITU comencé con amoxi clabulanico pero es muy complicado darle las pastillas 2/ día\r\nQuería que lo viesen y saber si se puede darle inyectable de depósito? 50000.00 10000.00 40000.00 2025-07-29 21:00:00+00 95204867 5479 4489 1026 68 84pc96cqvq7quci4er3sbjqjes 502 \N +1880 2025-07-25 18:07:49.195734+00 2025-07-25 18:07:49.195741+00 f t 2025-08-01 14:30:00 COMPLETED vaccination Vacunación anual 129600.00 23600.00 106000.00 2025-08-01 17:30:00+00 38174324886 5240 4307 1026 68 qle9p6p1srn4mtb32p75scsl9g 476 \N +997 2025-04-15 19:43:05.160653+00 2025-04-15 19:43:05.160662+00 f t 2025-04-15 19:00:00 COMPLETED clinical Orina con sangre Medicado con Pregabalina, Epinefrina, sedación B, Colocación de sonda y collar isabelino, pañales. puede estresarse fuera de casa 46000.00 9500.00 36500.00 2025-04-15 22:00:00+00 108517218650 670 795 112 1 m2d5v6sf94c8gkq10636gg6o08 \N \N +1897 2025-07-27 19:31:13.192611+00 2025-07-27 19:31:13.19262+00 f t 2025-07-28 20:00:00 COMPLETED clinical Tumor de mama avanzado progresivo. Último coágulograma cardiología y sangre ya tiene. Revision de resultados para evaluar cirugia Quieren ver si puede ir a cirugia o si es para eutanasia 42000.00 9500.00 32500.00 2025-07-28 23:00:00+00 D4RO172VEY30X8YVNKJ3QE 5339 4382 1208 70 16tjm8s6l3u45ee4u2q2do2i9s 515 \N +1193 2025-05-15 17:34:00.587918+00 2025-05-15 17:34:00.587926+00 f t 2025-05-15 19:30:00 COMPLETED clinical 46000.00 9500.00 36500.00 2025-05-15 22:30:00+00 CA 6226025575 625 735 112 91 25rbamms9jpqmbs4rdiedeu19c \N \N +2185 2025-08-21 18:06:02.562228+00 2025-08-21 18:06:02.562238+00 f t 2025-08-20 12:00:00 COMPLETED clinical Hemograma 0.00 0.00 0.00 2025-08-20 15:00:00+00 0 7038 5756 1583 100 i9r68uhksujn7sc97kl71uo8d8 \N \N +1943 2025-07-30 18:02:02.875382+00 2025-07-30 18:02:02.875392+00 f t 2025-08-01 17:00:00 COMPLETED vaccination Vacunación antirábica 49500.00 11500.00 38000.00 2025-08-01 20:00:00+00 1LMP68NKJR01QLVK2R7OEV 812 923 1026 89 fv9pq05okolk3cjbsk74336otk 472 \N +996 2025-04-15 18:57:38.689125+00 2025-04-15 18:57:38.689133+00 f t 2025-04-15 20:00:00 COMPLETED clinical control 103950.00 103950.00 90000.00 2025-04-15 23:00:00+00 \N 667 788 111 80 3krfpsfsusvrin6kqah9prde7c \N \N +1894 2025-07-27 14:49:20.202329+00 2025-07-27 14:49:20.202337+00 f t 2025-07-29 08:00:00 COMPLETED clinical extraccion 99200.00 57700.00 38000.00 2025-07-29 11:00:00+00 03556985 5329 4376 1208 68 9hvq4jra1ahpmpvpnimqndpcig 512 \N +1954 2025-07-31 16:58:17.818618+00 2025-07-31 16:58:17.818626+00 f t 2025-07-31 17:00:00 NO_REPORT clinical Aplicación de inyectable 23000.00 5500.00 17500.00 2025-07-31 20:00:00+00 3823994743 393 467 1026 66 utpv2c6h9kvfjmceak0ji0pfa0 481 \N +1004 2025-04-16 18:24:48.933273+00 2025-04-16 18:24:48.93328+00 f t 2025-04-22 14:30:00 COMPLETED clinical Consulta clinica 38500.00 8500.00 30000.00 2025-04-22 17:30:00+00 108548273510 678 801 113 94 is2hgn30tg3dd1navl8ojtpap4 \N \N +1930 2025-07-30 12:56:20.156829+00 2025-07-30 12:56:20.156836+00 f t 2025-07-30 20:30:00 COMPLETED clinical Vómitos 50000.00 10000.00 40000.00 2025-07-30 23:30:00+00 38223641903 393 467 1026 9 40hsish6fqc10b6500s24rlmsc 489 \N +451 2025-01-21 14:19:55.039595+00 2025-01-21 14:19:55.039604+00 f t 2025-01-21 18:30:00 COMPLETED clinical “aparente” celo desde el domingo. Está con lamido vulvar excesivo. Decaída y vómito ayer una vez y hoy nuevamente (el vómito es color amarillo espumoso). Con posible fiebre 41600.00 8600.00 33000.00 2025-01-21 21:30:00+00 99964320788 349 410 111 1 2dqum5t96vbndnp9h0tp723qso \N \N +1281 2025-05-25 20:52:09.178516+00 2025-05-25 20:52:09.178527+00 f t 2025-05-25 17:30:00 COMPLETED clinical 62000.00 12000.00 50000.00 2025-05-25 20:30:00+00 \N 1606 1549 114 90 v3i2119q8iur46pkbtrfp6317o \N \N +1000 2025-04-16 18:05:20.485163+00 2025-04-16 18:05:20.485169+00 f t 2025-04-15 21:30:00 COMPLETED clinical Decaimiento// Esta en lugares raros (maúlla mucho y toma muchísima agüita. Tambien va bastante a las piedritas aunque no siempre hace pis. 46000.00 9500.00 36500.00 2025-04-16 00:30:00+00 108501231798 676 799 113 80 cuifelvmnple7slncpqc78n4s8 \N \N +999 2025-04-16 13:57:44.260351+00 2025-04-16 13:57:44.260357+00 f t 2025-04-21 16:00:00 COMPLETED clinical Posible dermatitis 38500.00 8500.00 30000.00 2025-04-21 19:00:00+00 1LPM68NKJZ713RK2R7OEV 675 798 111 1 a4nb27el5cbe2s2q15e011s19c \N \N +975 2025-04-12 00:14:43.880889+00 2025-04-12 00:14:43.880898+00 f t 2025-04-12 15:00:00 NO_REPORT clinical Resolución endocrinológica Carolina Endocrinologa 45000.00 45000.00 30000.00 2025-04-12 18:00:00+00 10369888011250411 658 777 118 98 8p76v026hjj2jc01tfptt12vqc \N \N +1903 2025-07-28 14:50:38.080266+00 2025-07-28 14:50:38.080273+00 f t 2025-07-29 10:30:00 COMPLETED clinical Retiro + Laboratorio Pago en dos partes 119637954863 y 12015118016 83600.00 83600.00 0.00 2025-07-29 13:30:00+00 119637954863 1798 1710 1026 100 k4ng68t1ajsgpv7qq5gm38btfg 508 \N +1053 2025-04-24 17:44:19.108879+00 2025-04-24 17:44:19.10889+00 f t 2025-05-01 18:00:00 NO_REPORT clinical Consulta clinica 38500.00 8500.00 30000.00 2025-05-01 21:00:00+00 \N 726 850 113 70 oqeu5gg0n4dd1mv9aiv6je7bmk \N \N +3282 2025-11-15 19:15:22.480317+00 2025-11-15 19:15:22.480325+00 f t 2025-12-13 14:00:00 PENDING clinical vacunacion anual. 78000.00 21500.00 56500.00 2025-12-13 17:00:00+00 Z6OLMDN3VXW1JDXK2E7RQ5 13329 10978 1208 80 5kftieghungojes080c356guck \N 1609 +1904 2025-07-28 15:52:21.512974+00 2025-07-28 15:52:21.512981+00 f t 2025-08-01 10:00:00 COMPLETED clinical Vacunación anual 72000.00 19000.00 53000.00 2025-08-01 13:00:00+00 119645633095 5411 4436 1026 79 f4tcfpcf6t5aku7s4o3484743g 478 \N +1021 2025-04-20 21:57:50.770722+00 2025-04-20 21:57:50.770729+00 f t 2025-04-22 16:00:00 COMPLETED clinical :Vacunacion anual y control por gingivitis Se adjunta el valor en el paciente odin 0.00 0.00 0.00 2025-04-22 19:00:00+00 0 703 820 114 89 sn4h9olfhnhbnvk083btgk7lvc \N \N +979 2025-04-14 16:47:33.591712+00 2025-04-14 16:47:33.591719+00 f t 2025-04-15 18:30:00 NO_REPORT clinical consulta general, se cree dolencia por su mirada, por como come, y se mueve 38500.00 8500.00 30000.00 2025-04-15 21:30:00+00 108390668798 660 780 111 2 7fm9ts34mr6jmpf5765ef362fg \N \N +1017 2025-04-19 21:47:42.800506+00 2025-04-19 21:47:42.800512+00 f t 2025-04-19 19:00:00 NO_REPORT clinical Ecografía Abdominal 62000.00 12000.00 50000.00 2025-04-19 22:00:00+00 108465948807 700 817 114 90 he4136hue2qt8npbkq285b47vk \N \N +987 2025-04-15 00:51:16.857672+00 2025-04-15 00:51:16.857679+00 f t 2025-04-14 11:30:00 COMPLETED clinical Vacunacion con triple felina 59500.00 15500.00 44000.00 2025-04-14 14:30:00+00 108305651290 663 784 113 80 ubf5egbf71fdagsoprk0pr85pg \N \N +992 2025-04-15 01:23:47.92661+00 2025-04-15 01:23:47.92662+00 f t 2025-04-15 08:30:00 NO_REPORT clinical Extraccion de sangre pagar a vet $35.000. 0.00 0.00 35000.00 2025-04-15 11:30:00+00 \N 613 716 111 68 po0c1obcstmdjnt7q0p9dn8rcc \N \N +980 2025-04-14 18:50:06.886762+00 2025-04-14 18:50:06.886772+00 f t 2025-04-15 15:00:00 COMPLETED clinical Lesión en el ano Hay que abonarle a la vete. transfirió el total 38500.00 38500.00 30000.00 2025-04-15 18:00:00+00 107880132299 270 313 112 68 9kuko3fq2pk9hm7q5vmjk65bqs \N \N +1012 2025-04-19 00:10:39.931737+00 2025-04-19 00:10:39.931743+00 f t 2025-04-18 19:30:00 COMPLETED clinical Dificultad en la marcha 46000.00 9500.00 36500.00 2025-04-18 22:30:00+00 108403019037 696 813 113 89 kmnm466mcu79eo8chlt6iuopq4 \N \N +1010 2025-04-18 23:57:41.60462+00 2025-04-18 23:57:41.604629+00 f t 2025-04-18 14:00:00 NO_REPORT clinical No puede abrir el ojo 46000.00 9500.00 36500.00 2025-04-18 17:00:00+00 108368689431 694 811 113 70 cllp69ql648715qnca52aiv3co \N \N +994 2025-04-15 15:54:42.894956+00 2025-04-15 15:54:42.894964+00 f t 2025-04-15 13:00:00 COMPLETED telemedicina Consultas sobre su gatita 25000.00 25000.00 16000.00 2025-04-15 16:00:00+00 108059100707 668 791 112 89 muu5pkur1crkjea30js9a1d4pg \N \N +1014 2025-04-19 00:18:51.113123+00 2025-04-19 00:18:51.11313+00 f t 2025-04-18 19:00:00 COMPLETED clinical Diarrea, no presenta decaimiento, vomitos 25000.00 25000.00 16000.00 2025-04-18 22:00:00+00 108403344047 698 815 113 92 ivgkvha3hdf5vnobvkhpms74u4 \N \N +1007 2025-04-18 23:48:28.612381+00 2025-04-18 23:48:28.612387+00 f t 2025-05-12 19:00:00 COMPLETED clinical Refuerzo de triple felina 59500.00 15000.00 44000.00 2025-05-12 22:00:00+00 \N 656 775 113 70 cjbca7ch78ta72hlbtppg5oa9k \N \N +1296 2025-05-27 19:30:58.001707+00 2025-05-27 19:30:58.001718+00 f t 2025-05-08 17:00:00 NO_REPORT clinical 14850.00 14850.00 0.00 2025-05-08 20:00:00+00 \N 137 961 118 95 65ebuuonun7q64sf0jhq3giue0 \N \N +1023 2025-04-20 22:13:32.579946+00 2025-04-20 22:13:32.579955+00 f t 2025-04-20 20:00:00 NO_REPORT telemedicina Decaimiento, cambios en el comportamiento,dificultad respiratorio 25000.00 25000.00 16000.00 2025-04-20 23:00:00+00 68879233 705 823 114 70 e4984rrbfvqa8hbrvh6o5grs18 \N \N +1009 2025-04-18 23:53:37.482952+00 2025-04-18 23:53:37.482958+00 f t 2025-04-18 13:00:00 COMPLETED clinical Bulto que supura en la zona del cuello 46000.00 9500.00 36500.00 2025-04-18 16:00:00+00 108807848260 693 810 113 70 7dfp8e148o7u5htovpt1f30i4s \N \N +977 2025-04-12 18:57:45.883624+00 2025-04-12 18:57:45.883631+00 f t 2025-04-15 18:30:00 COMPLETED vaccination vacunación anual y revisión de bulto Milo cuando tocan timbre le da mucha ansiedad o estrés si es posible que me mande mensaje en la puerta, pero no se va a poner a la defensiva 66000.00 17000.00 49000.00 2025-04-15 21:30:00+00 108203601404 659 778 114 80 n0dof40nas9d76u3so37fsth0o \N \N +1022 2025-04-20 22:01:00.824369+00 2025-04-20 22:01:00.824378+00 f t 2025-04-20 18:00:00 COMPLETED clinical Vómitos alimenticio 46000.00 9500.00 36500.00 2025-04-20 21:00:00+00 108557076477 704 822 114 89 5dj9r3f3sfunf29etmv68tcg74 \N \N +1016 2025-04-19 21:41:22.12113+00 2025-04-19 21:41:22.121138+00 f t 2025-04-09 15:30:00 COMPLETED clinical Hinchazón e irritación en el ojo 46000.00 9500.00 36500.00 2025-04-09 18:30:00+00 2e3ab70a-4d82-45a3-afc3-e71f66 699 816 114 1 f1sb4b1qslk8evaqbluhb3vbe4 \N \N +991 2025-04-15 01:06:21.098536+00 2025-04-15 01:06:21.098543+00 f t 2025-04-15 13:30:00 COMPLETED clinical Consulta clinica 38500.00 8500.00 30000.00 2025-04-15 16:30:00+00 50471110009250414 666 787 113 91 vqh3r83ipuuggtu80c3c18ukkg \N \N +1881 2025-07-25 18:08:17.819294+00 2025-07-25 18:08:17.819301+00 f t 2025-08-01 14:30:00 COMPLETED clinical Se detalla en el turno de Luno 0.00 0.00 0.00 2025-08-01 17:30:00+00 \N 5240 4306 1026 68 d2sdc4g8r6mavmoth2ggkalvis \N \N +1011 2025-04-19 00:03:07.695683+00 2025-04-19 00:03:07.695691+00 f t 2025-04-18 18:00:00 NO_REPORT clinical Cambio en el comportamiento 46000.00 9500.00 36500.00 2025-04-18 21:00:00+00 108392181701 695 812 113 70 rt1hhiths5uubs2u8hj79obpjk \N \N +1019 2025-04-20 21:53:28.751033+00 2025-04-20 21:53:28.751045+00 f t 2025-04-20 16:00:00 COMPLETED clinical Vomitos intermitentes 46000.00 9500.00 36500.00 2025-04-20 19:00:00+00 108984268978 701 818 114 89 r1jv1tsm3ba3qjaeruth6vtsno \N \N +982 2025-04-14 21:02:55.41727+00 2025-04-14 21:02:55.41728+00 f t 2025-04-15 14:00:00 NO_REPORT clinical Físioterepia 53000.00 8000.00 45000.00 2025-04-15 17:00:00+00 36937870793 616 720 112 67 4ts61sgmrikgrnba0lhn5vnvec \N \N +1005 2025-04-18 21:45:55.147725+00 2025-04-18 21:45:55.147735+00 f t 2025-04-18 19:00:00 COMPLETED clinical Consulta por vomitos 25000.00 25000.00 16000.00 2025-04-18 22:00:00+00 \N 691 808 113 92 egj3kiseehbo5akm4g531b53sg \N \N +2612 2025-09-23 19:59:43.135637+00 2025-09-23 19:59:43.13565+00 f t 2025-09-26 11:00:00 COMPLETED clinical perfil 7 todos los costos cargados en el otro turno 0.00 0.00 0.00 2025-09-26 14:00:00+00 126722301095 9071 7507 1208 100 d3ts8c76rcs8av4kosgv2qloh4 \N \N +989 2025-04-15 00:59:43.825352+00 2025-04-15 00:59:43.825362+00 f t 2025-04-14 21:00:00 COMPLETED clinical Urgencia : :Falta de apetito, y no bebe agua. Evacuaciones normales 46000.00 9500.00 36500.00 2025-04-15 00:00:00+00 \N 665 786 113 1 5i45cm1nbb7cplrpggf78h6pj8 \N \N +1006 2025-04-18 23:46:29.529445+00 2025-04-18 23:46:29.529453+00 f t 2025-04-17 12:30:00 COMPLETED clinical Falta de aire, paciente con antecedente respiratorios 46000.00 9500.00 36500.00 2025-04-17 15:30:00+00 108756207814 692 809 113 89 8boe0p5a087otm5qe8jbuoaofc \N \N +2166 2025-08-20 00:00:36.968871+00 2025-08-20 00:00:36.968882+00 f t 2025-08-19 21:30:00 CANCELLED telemedicina Diarrea- defecacion blanda 27500.00 27500.00 17500.00 2025-08-20 00:30:00+00 \N 6910 5652 113 68 s69uue8imc72el41jbs7nflemg \N \N +252 2024-11-20 19:01:51.941+00 2024-11-20 19:01:51.941+00 f t 2024-11-23 09:30:00 COMPLETED clinical Vacunacion Transacción 93549574689 0.00 0.00 0.00 2024-11-23 12:30:00+00 210 229 114 70 1pbde07qn562o5lfa5ou5veb7o \N \N +1080 2025-04-29 23:41:28.558577+00 2025-04-29 23:41:28.558584+00 f t 2025-05-02 11:30:00 COMPLETED clinical Vacunacion anual para dos pacientes Abonarle a katherina el monto, ya que hizo el pago por medio de un link de mercado pago 118000.00 118000.00 97200.00 2025-05-02 14:30:00+00 109457145549 757 883 113 89 csbuk23va8kmh1hvt91so5q0kc \N \N +1686 2025-07-07 22:04:20.255908+00 2025-07-07 22:04:20.255918+00 f t 2025-07-07 17:00:00 COMPLETED clinical posible dermatitis, tiene pedazos de pelaje faltante 50000.00 10000.00 40000.00 2025-07-07 20:00:00+00 37945545355 4139 3448 114 1 h80rv8bkl4a4of1fkmm8jte2ck 695 \N +2492 2025-09-15 15:16:48.678746+00 2025-09-15 15:16:48.678753+00 f t 2025-09-18 19:30:00 COMPLETED clinical triple felina y desparasitacion 0.00 0.00 0.00 2025-09-18 22:30:00+00 \N 8649 7141 1583 92 pk3bf7is5b9e8dmdhvph9ohmvo \N \N +1696 2025-07-08 14:39:45.607763+00 2025-07-08 14:39:45.607769+00 f t 2025-07-19 16:00:00 COMPLETED clinical Control+ corte de garras 115400.00 24400.00 91000.00 2025-07-19 19:00:00+00 37956862369 3052 3484 1026 68 n4df4p2u25lmc0f48cq04oeojg 583 \N +1048 2025-04-24 15:30:36.685054+00 2025-04-24 15:30:36.685064+00 f t 2025-04-26 10:00:00 NO_REPORT vaccination El monto total está en el otro turno 0.00 0.00 0.00 2025-04-26 13:00:00+00 109365454264 722 843 112 70 144rabr3q63vdcqoe82q8u7n6s \N \N +1877 2025-07-25 13:57:59.535896+00 2025-07-25 13:57:59.535903+00 f t 2025-07-25 20:30:00 COMPLETED telemedicina Telita azulada en los ojos abonarle a Majo $17.500 27500.00 27500.00 0.00 2025-07-25 23:30:00+00 93095631 5227 4292 1026 79 f3hq0mutdc2oqm802qdtelom3g 536 \N +1537 2025-06-23 12:52:13.271703+00 2025-06-23 12:52:13.27171+00 f t 2025-06-24 15:00:00 NO_REPORT clinical Radiografías 75000.00 15000.00 60000.00 2025-06-24 18:00:00+00 116078617824 576 674 1026 84 ktkpalt7iblp7vt72o1rm8fqss 797 \N +1027 2025-04-21 20:17:32.59334+00 2025-04-21 20:17:32.593348+00 f t 2025-04-21 19:00:00 COMPLETED clinical Chequeo de seguimiento 46000.00 9500.00 36500.00 2025-04-21 22:00:00+00 108635525819 677 800 113 88 9vgiqvt7apamkmos32kck5ei8c \N \N +1051 2025-04-24 17:36:50.111613+00 2025-04-24 17:36:50.11162+00 f t 2025-04-25 10:00:00 NO_REPORT clinical Vacunacion sextuple y triple felina 107100.00 19100.00 88000.00 2025-04-25 13:00:00+00 37012981738 715 834 113 74 4ed50113nv2olv4k7foavdvo8g \N \N +1049 2025-04-24 17:22:36.134097+00 2025-04-24 17:22:36.134104+00 f t 2025-04-24 19:30:00 NO_REPORT clinical Eco abdominal 52000.00 12000.00 40000.00 2025-04-24 22:30:00+00 108936325867 724 848 112 90 lq8nlum1hcb9ai8822rjfj5ae4 \N \N +1882 2025-07-25 18:14:10.783809+00 2025-07-25 18:14:10.783816+00 f t 2025-07-31 15:30:00 NO_REPORT clinical Radiografias 75000.00 15000.00 60000.00 2025-07-31 18:30:00+00 194-360894/2 5249 4316 1026 84 q9c9lnehi3agu90q3revlf0030 483 \N +3123 2025-11-04 00:13:03.281597+00 2025-11-04 00:13:03.281606+00 t t 2025-11-04 10:00:00 NO_REPORT clinical No se especificó motivo de consulta. se solicitó: ... \N 13200.00 13200.00 0.00 2025-11-04 13:00:00+00 132388449542 10707 8891 \N 100 3me7ippnubceckr8ji2ai15f3s \N 1383 +2825 2025-10-08 20:20:56.737612+00 2025-10-08 20:20:56.737623+00 f t 2025-10-14 13:00:00 COMPLETED clinical Control . 46000.00 11000.00 35000.00 2025-10-14 16:00:00+00 129167404416 409 488 1583 68 dplcr3fi0fab776lb3d1m1d3uc \N 930 +1037 2025-04-23 17:22:11.478602+00 2025-04-23 17:22:11.478609+00 f t 2025-04-30 11:00:00 COMPLETED vaccination Corte de garras, desparasitación, antirabica 67000.00 17000.00 50000.00 2025-04-30 14:00:00+00 108831206367 201 215 112 1 5q5f5opeqa7ivcbqajuq561hs0 \N \N +1031 2025-04-22 00:21:26.554484+00 2025-04-22 00:21:26.554493+00 f t 2025-04-21 20:30:00 COMPLETED clinical Decaimiento, vomito 46000.00 9500.00 36500.00 2025-04-21 23:30:00+00 0000003100120231813939 713 832 113 88 0gj6kj5a1ldeqhoiij2lrftnu8 \N \N +1036 2025-04-23 14:09:14.487501+00 2025-04-23 14:09:14.48751+00 f t 2025-04-26 14:00:00 COMPLETED clinical dolor de oidos 38500.00 8500.00 30000.00 2025-04-26 17:00:00+00 108749334517 719 838 111 1 3c2ufgr90av9au9i4f3dl2r5ig \N \N +1042 2025-04-24 00:53:49.477696+00 2025-04-24 00:53:49.477708+00 f t 2025-04-23 15:00:00 COMPLETED clinical Perfil hepatico+ calcemia + fosfatemia+ ionograma + frotis es Parasitos Hematico 44000.00 44000.00 0.00 2025-04-23 18:00:00+00 108826100093 713 832 113 86 4pqhvpf3cbfj31tpanvt9f0ol4 \N \N +1073 2025-04-27 21:50:12.890833+00 2025-04-27 21:50:12.890842+00 f t 2025-04-28 18:00:00 NO_REPORT clinical certificado de salud 52500.00 12500.00 40000.00 2025-04-28 21:00:00+00 109674 749 874 114 2 ms5rm0i5n837cr3t9b4ti6imd8 \N \N +1047 2025-04-24 15:27:15.775353+00 2025-04-24 15:27:15.775359+00 f t 2025-04-26 10:00:00 NO_REPORT vaccination 118800.00 20800.00 98000.00 2025-04-26 13:00:00+00 109365454264 722 844 112 70 9rpurtjjp30fnrgjiqk4rkp808 \N \N +1072 2025-04-27 21:42:56.437377+00 2025-04-27 21:42:56.437386+00 f t 2025-05-01 12:30:00 COMPLETED vaccination Vacunación anual 66000.00 17000.00 49000.00 2025-05-01 15:30:00+00 L18MKX9R7ERY8MP1906WYV 748 873 114 92 gs2sh4f8s4pjsimef28ffb7tfc \N \N +1028 2025-04-21 20:21:44.509653+00 2025-04-21 20:21:44.509662+00 f t 2025-04-21 18:30:00 COMPLETED clinical Falta de apetito, decaimiento y defecto con sangre 46000.00 9500.00 36500.00 2025-04-21 21:30:00+00 69392577 710 827 113 88 grr0tme6ga0r9tucmhl2huhcgk \N \N +1297 2025-05-27 19:31:51.309873+00 2025-05-27 19:31:51.30988+00 f t 2025-05-06 20:00:00 NO_REPORT clinical 34500.00 34500.00 0.00 2025-05-06 23:00:00+00 \N 830 936 118 95 3cl3lnulpasoou4jniua4i63hs \N \N +1030 2025-04-21 21:49:33.09943+00 2025-04-21 21:49:33.099438+00 f t 2025-04-22 14:30:00 COMPLETED vaccination Vacunación anual a dos gatos 0.00 0.00 0.00 2025-04-22 17:30:00+00 0 712 831 113 89 kgjncf64ti2vclajhsb5hej75s \N \N +1044 2025-04-24 13:31:53.102476+00 2025-04-24 13:31:53.102484+00 f t 2025-05-17 10:30:00 COMPLETED clinical Gata con cáncer, colocación de medicamentos Hay que abonarle a la vete 92400.00 92400.00 90000.00 2025-05-17 13:30:00+00 109276886456 160 169 112 89 jngr7bn7eom6a5g6jtp29eopvo \N \N +1041 2025-04-24 00:48:50.464146+00 2025-04-24 00:48:50.464154+00 f t 2025-04-23 15:30:00 COMPLETED clinical Consulta clinica por orina con sangre en poca cantidad 38500.00 8500.00 30000.00 2025-04-23 18:30:00+00 109159465684 716 835 113 88 tflkbkr5aj3uh0g474vmj1nmv8 \N \N +1046 2025-04-24 13:37:37.417334+00 2025-04-24 13:37:37.417342+00 f t 2025-05-31 10:30:00 COMPLETED clinical Gata con cáncer, suministrar medicación pagarle a la vete 0.00 0.00 0.00 2025-05-31 13:30:00+00 109276886456 160 169 112 89 gtfann8tt9qgdfqsscsqhi57v4 \N \N +1035 2025-04-23 13:36:38.016755+00 2025-04-23 13:36:38.016764+00 f t 2025-04-25 18:00:00 COMPLETED vaccination 66000.00 17000.00 49000.00 2025-04-25 21:00:00+00 108806861943 718 837 112 1 qdivlp8oogfg089f70hnl45e40 \N \N +1050 2025-04-24 17:31:32.839279+00 2025-04-24 17:31:32.83929+00 f t 2025-04-25 11:30:00 COMPLETED clinical Posible diagnostico de tiroides 38500.00 8500.00 30000.00 2025-04-25 14:30:00+00 69968463 725 849 113 1 uhkbrpcjfun7n06dkfjst0407k \N \N +1038 2025-04-23 18:52:32.648743+00 2025-04-23 18:52:32.64875+00 f t 2025-04-25 16:00:00 NO_REPORT clinical Control 0.00 0.00 0.00 2025-04-25 19:00:00+00 108836996521 720 841 112 2 mua9g2pn08o5vnjh1ssqnk6qf4 \N \N +1039 2025-04-23 18:58:13.096305+00 2025-04-23 18:58:13.096315+00 f t 2025-04-25 16:00:00 NO_REPORT clinical 0.00 0.00 0.00 2025-04-25 19:00:00+00 108836996521 720 839 112 2 irgo0nnioo9q88gkr1lhstav38 \N \N +1040 2025-04-23 18:59:11.963088+00 2025-04-23 18:59:11.963097+00 t t 2025-04-25 16:00:00 NO_REPORT clinical Control 103950.00 13950.00 90000.00 2025-04-25 19:00:00+00 108836996521 720 841 112 2 5b5quag27ur4g1596pf8jlqjt8 \N \N +1029 2025-04-21 21:48:50.432231+00 2025-04-21 21:48:50.432238+00 f t 2025-04-22 14:30:00 COMPLETED vaccination Vacunación anual a 2 gatos Hay que transferirle a Katerina la parte sobrante de la seña debido a que el cliente abono más- $9.300 118800.00 30100.00 88700.00 2025-04-22 17:30:00+00 108651698057 712 831 113 89 t0lqbnt3qp882f3k0jdtqcbuj0 \N \N +1024 2025-04-21 20:09:50.331686+00 2025-04-21 20:09:50.331696+00 f t 2025-04-25 10:30:00 COMPLETED clinical Dolor de piernas Abonó un poquito mas en la seña 34650.00 5000.00 29650.00 2025-04-25 13:30:00+00 109055984622 207 224 112 1 56hebdt1pds9l18a85orr9tm5o \N \N +1026 2025-04-21 20:15:07.401164+00 2025-04-21 20:15:07.401174+00 f t 2025-04-21 18:00:00 NO_REPORT clinical Físioterepia 53000.00 8000.00 45000.00 2025-04-21 21:00:00+00 109080950384 616 720 113 67 r3tkjeu04ocd6j3e4qq8ibtf04 \N \N +1119 2025-05-07 20:06:01.464807+00 2025-05-07 20:06:01.464818+00 f t 2025-05-09 18:30:00 COMPLETED vaccination 80000.00 21000.00 59000.00 2025-05-09 21:30:00+00 86VRPQ2GV8ZEZR302GLY0M 841 950 112 92 6vtpf703jojkadhbvs86afl24g \N \N +1058 2025-04-25 20:28:30.879942+00 2025-04-25 20:28:30.87995+00 f t 2025-04-25 19:00:00 COMPLETED clinical Segunda opinion sobre el cuadro comentado 38500.00 8500.00 30000.00 2025-04-25 22:00:00+00 \N 733 856 111 88 0relr10i2hbjo0kjgi46rnclo0 \N \N +1076 2025-04-28 20:53:44.070192+00 2025-04-28 20:53:44.070199+00 f t 2025-05-06 09:00:00 COMPLETED vaccination vacunación anual 66000.00 17000.00 49000.00 2025-05-06 12:00:00+00 109781503414 752 877 113 1 b1hcinvg23ptfpudcgbrqh4vv0 \N \N +1070 2025-04-27 20:51:28.536837+00 2025-04-27 20:51:28.536845+00 f t 2025-04-27 18:00:00 COMPLETED clinical Eutanasia 114750.00 23250.00 91500.00 2025-04-27 21:00:00+00 109235694111 744 868 114 70 neajl281810eolshac77qsre20 \N \N +1083 2025-05-01 19:04:18.803825+00 2025-05-01 19:04:18.803835+00 f t 2025-05-01 17:00:00 COMPLETED clinical urgencia por dolores provocados por la sonda (IMPORTANTE, NO ANDA EL PORTERO, TIENE QUE LLAMAR AL LLEGAR Y BAJO) 46000.00 9500.00 36500.00 2025-05-01 20:00:00+00 37107223417 765 890 114 92 8q3qgb81ev2r3j511pa342vpr8 \N \N +1059 2025-04-25 21:01:47.243769+00 2025-04-25 21:01:47.243779+00 f t 2025-04-26 12:00:00 NO_REPORT clinical Falta de movilidad 38500.00 8500.00 30000.00 2025-04-26 15:00:00+00 109062333617 734 858 112 70 odnf7jqnmo2p24c6rppclancp8 \N \N +1067 2025-04-26 21:22:29.077062+00 2025-04-26 21:22:29.07707+00 f t 2025-04-26 13:30:00 COMPLETED clinical Decaimiento y cambio en la conducta 46000.00 9500.00 36500.00 2025-04-26 16:30:00+00 37051289435 743 867 114 1 k3tagkq4mvkfli594ko7rsdi3c \N \N +688 2025-02-20 19:46:11.169541+00 2025-02-20 19:46:11.169548+00 f t 2025-02-21 10:00:00 NO_REPORT telemedicina se rasca mucho la oreja, genera mucha cera, meses anteriores tuvo una infeccion y fue medicado. 24000.00 24000.00 15000.00 2025-02-21 13:00:00+00 102564797281 475 563 111 70 6gtaidlnoio1fo4ig3ehg3vg1o \N \N +1074 2025-04-27 22:02:52.170722+00 2025-04-27 22:02:52.170733+00 f t 2025-04-29 16:30:00 COMPLETED vaccination Vacunación anual y corte de garras 73000.00 19000.00 54000.00 2025-04-29 19:30:00+00 \N 750 875 114 80 mcblkbk23s1n84k66ne14jsfnk \N \N +1075 2025-04-28 16:18:20.095688+00 2025-04-28 16:18:20.095696+00 f t 2025-05-16 18:30:00 COMPLETED vaccination 66000.00 17000.00 49000.00 2025-05-16 21:30:00+00 109313650751 751 876 112 89 gi0l86j1qvnijodmh3j5r3elj4 \N \N +2114 2025-08-15 21:07:25.109948+00 2025-08-15 21:07:25.109959+00 f t 2025-08-31 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-08-31 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 avrdk7mh4qkt2afn3vas87klfo \N \N +1068 2025-04-26 21:26:45.459523+00 2025-04-26 21:26:45.459533+00 f t 2025-04-26 16:00:00 COMPLETED clinical Dolor por artrosis, suministrar mediación 46000.00 9500.00 36500.00 2025-04-26 19:00:00+00 109570011932 744 868 114 80 n361pfqhpjui44b065fm7ts1i0 \N \N +1065 2025-04-26 21:12:51.404164+00 2025-04-26 21:12:51.404173+00 f t 2025-04-29 13:00:00 COMPLETED vaccination Vacunación de 2 gatos 0.00 0.00 0.00 2025-04-29 16:00:00+00 0 742 866 114 1 er4c265bpc29d8ehgn3j8dcot4 \N \N +1078 2025-04-29 18:14:26.617824+00 2025-04-29 18:14:26.617833+00 f t 2025-04-30 09:30:00 NO_REPORT clinical Orina con sangre Puede estresarse, tutora indica que puede ser necesario el uso de bozal 38500.00 8500.00 30000.00 2025-04-30 12:30:00+00 74465173 755 881 112 74 ef21j12tmpvf1asaijtkdhfo84 \N \N +1063 2025-04-26 21:05:55.884193+00 2025-04-26 21:05:55.884201+00 f t 2025-04-25 21:30:00 COMPLETED telemedicina Resolucion y tratamiento a seguir https://meet.google.com/cks-iuho-ckc 20000.00 20000.00 0.00 2025-04-26 00:30:00+00 109514898140 713 832 114 88 po7ds6ai9kpllmo3pf3bkj6pro \N \N +1066 2025-04-26 21:17:20.990168+00 2025-04-26 21:17:20.99018+00 f t 2025-05-06 20:00:00 COMPLETED clinical Resolucion endocrinologica https://meet.google.com/zjw-dovv-cpq 38500.00 8500.00 30000.00 2025-05-06 23:00:00+00 72915912 725 849 114 98 ujfgtd2cb8ilp93c7dvt0sdilc \N \N +1055 2025-04-25 12:16:26.86447+00 2025-04-25 12:16:26.864481+00 f t 2025-04-25 18:30:00 COMPLETED vaccination Seña en transferencia 1089941591851\r\n total de la doc con tarjeta 109014019079 66000.00 17000.00 49000.00 2025-04-25 21:30:00+00 1089941591851 729 853 112 89 77ijlf9tkulalotqeghqqu1aok \N \N +1062 2025-04-25 22:12:16.693042+00 2025-04-25 22:12:16.693048+00 f t 2025-04-25 21:30:00 COMPLETED telemedicina Resolucion y tratamiento 20000.00 20000.00 16000.00 2025-04-26 00:30:00+00 109514898140 713 832 113 88 7lk9leq6e7331nrdikfddpglrg \N \N +1057 2025-04-25 19:35:48.996678+00 2025-04-25 19:35:48.996687+00 f t 2025-04-26 16:00:00 COMPLETED clinical Vacunación anual 118000.00 118000.00 98000.00 2025-04-26 19:00:00+00 109493484168 732 855 112 88 ls2e91tq6g3aiuujjlmqosb1mo \N \N +1081 2025-04-30 15:03:47.612273+00 2025-04-30 15:03:47.61228+00 f t 2025-04-30 12:30:00 COMPLETED clinical Tiene la panza dura y le cuesta moverse. 46000.00 9500.00 36500.00 2025-04-30 15:30:00+00 superviell sa2931 758 885 112 1 c2bn9mgnhbjl8l18vq9r99a76k \N \N +1174 2025-05-14 15:33:28.920619+00 2025-05-14 15:33:28.920627+00 f t 2025-05-14 18:30:00 COMPLETED clinical Camina encorvado Abonarle $36.500 al vete 46000.00 46000.00 0.00 2025-05-14 21:30:00+00 111579282836 1022 1112 112 1 d7r9qc3n6f2p3rg543bi9ioh64 \N \N +3345 2025-11-20 18:04:37.035002+00 2025-11-20 18:04:37.035014+00 f t 2025-12-18 11:00:00 PENDING clinical Certificado de salud, desparasitacio int+ext 20-30kg canino \N 102400.00 23400.00 73500.00 2025-12-18 14:00:00+00 134615204454 10953 9089 \N 80 p023udg1pc3ejefuoalr51pqls \N 1702 +2296 2025-08-30 00:16:27.559751+00 2025-08-30 00:16:27.559761+00 f t 2025-09-05 17:00:00 NO_REPORT clinical Extraccion Abonarle $4000 por el traslado a nicolas 30700.00 7700.00 23000.00 2025-09-05 20:00:00+00 8D0Q619LO75VVX7X97JZ5R 7443 6127 113 112 8s0t87r98ioddseul0jrv9dfu4 131 \N +1071 2025-04-27 20:58:01.449402+00 2025-04-27 20:58:01.449409+00 f t 2025-04-27 08:00:00 COMPLETED clinical Dolores y arrastre el la pata trasera, precedentes de dolores en la cadera 46000.00 9500.00 36500.00 2025-04-27 11:00:00+00 109675732026 747 872 114 92 ngh014ec6brculpnqfqbpr7a04 \N \N +1077 2025-04-28 20:58:09.445113+00 2025-04-28 20:58:09.44512+00 f t 2025-05-02 12:00:00 COMPLETED clinical Chequeo General 46000.00 9500.00 36500.00 2025-05-02 15:00:00+00 109335266961 753 878 113 80 7057f5sc3vds8u8s661b62aj48 \N \N +1085 2025-05-02 14:24:04.901611+00 2025-05-02 14:24:04.901619+00 f t 2025-05-02 13:00:00 COMPLETED vaccination 66000.00 17000.00 49000.00 2025-05-02 16:00:00+00 110164221040 770 893 112 88 ien9h8grup41egfv9al33ljk6c \N \N +1079 2025-04-29 20:57:23.595665+00 2025-04-29 20:57:23.595673+00 f t 2025-05-06 10:00:00 COMPLETED vaccination Pagarle al vete 66000.00 66000.00 49000.00 2025-05-06 13:00:00+00 109443486633 756 882 112 1 59ciho9m8v6q0b6m8la7agc3ak \N \N +1061 2025-04-25 21:10:41.335621+00 2025-04-25 21:10:41.33563+00 f t 2025-04-25 19:00:00 COMPLETED clinical Dificultad para apoyar la patita 46000.00 9500.00 36500.00 2025-04-25 22:00:00+00 \N 735 859 111 1 koi8em4kqibdqroqqtsijhct60 \N \N +364 2024-12-20 18:45:21.791+00 2024-12-20 18:45:21.791+00 f t 2024-12-21 19:30:00 COMPLETED clinical Clinica para gato Hercules, de 14 años. Tiene tos y anoche tuvo un pequeño sangrado de nariz 41600.00 15600.00 26000.00 2024-12-21 22:30:00+00 272 320 110 68 14hefhdom12l393il95fbg9f00 \N \N +2611 2025-09-23 19:57:02.732091+00 2025-09-23 19:57:02.732103+00 f t 2025-09-26 09:30:00 COMPLETED clinical perfil 7 + antirrabica para Gaia y Antirrabica para Pluton descuento multimascota 144510.00 58010.00 86500.00 2025-09-26 12:30:00+00 126722301095 9071 7507 1208 1 f99m62sda5shvkthlnd3ueqn9s \N \N +1082 2025-04-30 17:23:24.887226+00 2025-04-30 17:23:24.887237+00 f t 2025-05-05 10:30:00 COMPLETED clinical Control 38500.00 8500.00 30000.00 2025-05-05 13:30:00+00 76V4MR2ZPDKEZ54G9DEZOL 472 560 112 88 eld7s82hd6u78p7ikhbc4b2mv8 \N \N +2924 2025-10-17 15:42:48.220955+00 2025-10-17 15:42:48.220965+00 f t 2025-10-21 14:00:00 NO_REPORT clinical Rayos. 80000.00 15000.00 65000.00 2025-10-21 17:00:00+00 Modo 10957 9091 1583 84 id03vks8f5sri1ofnb4hr1gekc \N 1067 +1101 2025-05-06 13:00:24.800002+00 2025-05-06 13:00:24.80001+00 f t 2025-05-06 18:30:00 COMPLETED clinical defeca con sangre 38500.00 8500.00 30000.00 2025-05-06 21:30:00+00 110124434819 822 928 112 89 9af8j96llnmiejpir5i5dtjie4 \N \N +1109 2025-05-07 13:29:41.939518+00 2025-05-07 13:29:41.939525+00 f t 2025-05-10 09:30:00 COMPLETED vaccination 53550.00 9550.00 44000.00 2025-05-10 12:30:00+00 110247261267 753 878 112 80 1r75uj1ubaag8iu6lt15bvt0r4 \N \N +1485 2025-06-16 20:08:04.97305+00 2025-06-16 20:08:04.973059+00 f t 2025-06-16 16:00:00 COMPLETED clinical Dificultad en la movilidad 50000.00 10000.00 40000.00 2025-06-16 19:00:00+00 37667966936 2792 2462 113 99 rh623cl0mvmm8qeaa7jrvoud7k 847 \N +1113 2025-05-07 19:11:30.638947+00 2025-05-07 19:11:30.638955+00 f t 2025-05-12 18:30:00 COMPLETED vaccination El monto total de la consulta se cargó en el turno de Tony 0.00 0.00 0.00 2025-05-12 21:30:00+00 30413417017250507 839 944 112 87 96o1972p3h652emb6hn69p69ok \N \N +2369 2025-09-03 15:36:05.744653+00 2025-09-03 15:36:05.74466+00 f t 2025-09-04 08:00:00 COMPLETED clinical Extraccion para IGF1, profesterona cuantitatica, fructosamina, sodio, potasio, urea, creatina, CPK 94060.00 71060.00 23000.00 2025-09-04 11:00:00+00 RD06ZO9W1ZKLOE0525GP7X 7899 6503 1583 104 0g3nenmmtln9he9bdjefcem6ug 143 \N +1093 2025-05-04 21:51:50.239951+00 2025-05-04 21:51:50.239958+00 f t 2025-05-05 09:00:00 COMPLETED clinical decaimiento y diarrea 38500.00 8500.00 30000.00 2025-05-05 12:00:00+00 110404414450 796 911 114 88 tjf6dm716gv6mfrjkib3e3moqk \N \N +3096 2025-11-01 15:48:57.753611+00 2025-11-01 15:48:57.753621+00 f t 2025-11-05 17:00:00 COMPLETED clinical Ultima dosis de sextuple. 70000.00 19000.00 51000.00 2025-11-05 20:00:00+00 131475221479 10870 9025 1208 88 tp6bkdgib84cee0hmq4imfp93c \N 1347 +1105 2025-05-06 16:59:39.289081+00 2025-05-06 16:59:39.28909+00 f t 2025-05-10 10:30:00 COMPLETED vaccination 59500.00 15500.00 44000.00 2025-05-10 13:30:00+00 110156203115 826 932 112 88 bi89ipatms9gssrgc888b94ekg \N \N +1100 2025-05-05 20:25:34.82873+00 2025-05-05 20:25:34.828738+00 f t 2025-05-06 18:00:00 NO_REPORT clinical 52000.00 12000.00 4000.00 2025-05-06 21:00:00+00 110054720173 816 926 112 90 hcdctl7d53445kmbv5q5nkofec \N \N +2133 2025-08-18 13:58:38.240365+00 2025-08-18 13:58:38.240373+00 f t 2025-08-18 13:00:00 COMPLETED clinical muestra de orina completa 21500.00 21500.00 0.00 2025-08-18 16:00:00+00 122246179885 6683 5452 1208 100 l05ormhqooovo6fi0t8fqu847c 331 \N +1110 2025-05-07 14:13:09.647628+00 2025-05-07 14:13:09.647638+00 f t 2025-05-10 14:30:00 COMPLETED clinical va mucho a la piedritas y orina poco 38500.00 8500.00 30000.00 2025-05-10 17:30:00+00 11025115077 834 939 112 92 n79f17fv61dl5edi6cn0f7qv6c \N \N +1114 2025-05-07 19:12:22.55886+00 2025-05-07 19:12:22.558869+00 f t 2025-05-12 18:30:00 COMPLETED vaccination El monto total de la consulta se cargó en el turno de Tony 0.00 0.00 0.00 2025-05-12 21:30:00+00 30413417017250507 839 946 112 87 n0p7hj4v1u76qp7htouh3eog8g \N \N +1092 2025-05-03 21:16:18.169235+00 2025-05-03 21:16:18.169244+00 f t 2025-05-05 13:30:00 COMPLETED vaccination Vacunación anual 66000.00 17000.00 49000.00 2025-05-05 16:30:00+00 110300866962 786 903 114 80 d2hohss4bs3ji9ag7cpscpc61c \N \N +1096 2025-05-05 16:51:59.576742+00 2025-05-05 16:51:59.576749+00 f t 2025-05-10 11:00:00 COMPLETED vaccination 66000.00 17000.00 49000.00 2025-05-10 14:00:00+00 110481112078 745 869 112 80 vq33g9312d4cqqk76dcs7k88n4 \N \N +1095 2025-05-04 22:13:11.758928+00 2025-05-04 22:13:11.758935+00 f t 2025-05-04 18:00:00 COMPLETED clinical Vomitos y tambaleo 46000.00 9500.00 36500.00 2025-05-04 21:00:00+00 109942860295 798 913 114 92 pu9rqu6pnsq641qrvgccq32o9o \N \N +1112 2025-05-07 15:48:37.34089+00 2025-05-07 15:48:37.340899+00 f t 2025-05-07 16:00:00 COMPLETED clinical Decaimiento Abonarle a la vete 36500 46000.00 46000.00 0.00 2025-05-07 19:00:00+00 110265107915 837 942 112 21 m3n67to5kls4gav2lmq72bogv8 \N \N +1089 2025-05-03 21:02:24.163045+00 2025-05-03 21:02:24.163056+00 f t 2025-05-06 10:30:00 COMPLETED vaccination vacunación anual 66000.00 17000.00 49000.00 2025-05-06 13:30:00+00 110287397556 784 901 114 88 gik4uh2q7vs9t5i3q19hs899bg \N \N +1087 2025-05-03 00:07:55.309999+00 2025-05-03 00:07:55.310006+00 f t 2025-05-03 11:00:00 NO_REPORT clinical Consulta clinica por lesion en el sector genital 46000.00 9500.00 36500.00 2025-05-03 14:00:00+00 LMORZP905EP6LKGPNEGJ46 775 896 113 70 6n0phjrcc8gienrlp4o3p8ke60 \N \N +1106 2025-05-06 17:34:24.770893+00 2025-05-06 17:34:24.7709+00 f t 2025-05-08 18:30:00 NO_REPORT clinical Cardiologica 95000.00 10000.00 85000.00 2025-05-08 21:30:00+00 50165979011250506 827 933 112 82 u8lrko3rl1d0hls382rc6dcm0s \N \N +1107 2025-05-06 21:16:43.204822+00 2025-05-06 21:16:43.204829+00 f t 2025-05-08 15:00:00 COMPLETED vaccination 66000.00 17000.00 49000.00 2025-05-08 18:00:00+00 110183220995 829 935 112 94 g62nhfdhet205tg4i12v66h7fs \N \N +1099 2025-05-05 19:28:29.898909+00 2025-05-05 19:28:29.898918+00 f t 2025-05-05 20:00:00 COMPLETED vaccination 59500.00 15500.00 44000.00 2025-05-05 23:00:00+00 709909271 812 923 112 89 17v3g5sjlbuvbsb5g76in3q2p4 \N \N +1104 2025-05-06 15:58:04.823941+00 2025-05-06 15:58:04.823948+00 f t 2025-05-06 17:30:00 COMPLETED clinical Aplicación de inyectables, revisión del estado de salud 38500.00 8500.00 30000.00 2025-05-06 20:30:00+00 110145415067 796 911 112 89 q1lup98v81gegtvc68i5crjr88 \N \N +3369 2025-11-24 17:49:43.820966+00 2025-11-24 17:49:43.820975+00 f t 2025-11-25 14:00:00 NO_REPORT clinical Vacunacion anual \N 54000.00 13500.00 40500.00 2025-11-25 17:00:00+00 134471725805 14350 11833 \N 21 uoitj7pq4nunicm5q6mj6ptf88 \N 1760 +1097 2025-05-05 18:13:28.345125+00 2025-05-05 18:13:28.345135+00 f t 2025-05-09 14:00:00 COMPLETED vaccination 66000.00 17000.00 49000.00 2025-05-09 17:00:00+00 110044367643 811 922 112 1 665vgscruipm57oaghl4e0akho \N \N +1118 2025-05-07 19:54:49.69504+00 2025-05-07 19:54:49.695051+00 f t 2025-05-09 18:00:00 COMPLETED clinical Eco Abdominal Pagarle a la vete $45.000 57000.00 57000.00 0.00 2025-05-09 21:00:00+00 110746888814 840 949 112 90 bkudlqc4ffm87nf0si3bjrtkqc \N \N +551 2025-02-01 22:18:18.641232+00 2025-02-01 22:18:18.641239+00 f t 2025-02-05 18:00:00 COMPLETED clinical Revisión por posible dermatitis y pulgas Reprogramcion para 07/02, se le solicito seña por avisar fuera del horario 35000.00 7000.00 28000.00 2025-02-05 21:00:00+00 19225d13-515d-46c6-8f01-c7dbcc 89 93 113 1 l2skfuk5ejvhm8i8f54aa9occo \N \N +740 2025-02-27 20:05:46.410385+00 2025-02-27 20:05:46.410391+00 f t 2025-02-27 18:30:00 NO_REPORT clinical Ecografia abdominal 52000.00 12000.00 40000.00 2025-02-27 21:30:00+00 D4RO172VEPZY8MRDNKJ3QE 514 607 113 90 ss0lh51fm0ncm3g0quvcao97jo \N \N +1091 2025-05-03 21:11:43.851189+00 2025-05-03 21:11:43.851197+00 f t 2025-05-03 17:00:00 COMPLETED vaccination Vacunación anual 66000.00 17000.00 49000.00 2025-05-03 20:00:00+00 Z4K6DVNODE3KVP4K95J8LQ 533 628 114 92 79tej8magr1s966h1sv34o3ej0 \N \N +2494 2025-09-15 15:34:11.038738+00 2025-09-15 15:34:11.038748+00 t t 2025-09-16 20:00:00 PENDING clinical Control post tratamiento 46000.00 11000.00 35000.00 2025-09-16 23:00:00+00 126271879950 6907 5957 1583 92 ng2uk5rl463m8halraihl5s5vs \N \N +1111 2025-05-07 14:30:34.736241+00 2025-05-07 14:30:34.73625+00 f t 2025-05-12 16:00:00 COMPLETED clinical Derivación médica 38500.00 8500.00 30000.00 2025-05-12 19:00:00+00 110703915298 835 940 113 88 k93ca7va5qv2csv9i49rucitnc \N \N +1115 2025-05-07 19:13:01.777138+00 2025-05-07 19:13:01.777149+00 f t 2025-05-12 18:30:00 COMPLETED clinical El monto total de la consulta se cargó en el turno de Tony 0.00 0.00 0.00 2025-05-12 21:30:00+00 30413417017250507 839 948 112 87 rsdsub3dsg0d26h90o8vojq8r0 \N \N +1088 2025-05-03 00:25:20.190023+00 2025-05-03 00:25:20.190034+00 f t 2025-05-06 14:30:00 COMPLETED clinical Radiografia 70000.00 15000.00 55000.00 2025-05-06 17:30:00+00 110235653554 734 858 113 84 6il3k87igu0dgokop2nrqhpji0 \N \N +1132 2025-05-09 13:19:55.774629+00 2025-05-09 13:19:55.774637+00 f t 2025-06-06 18:30:00 COMPLETED vaccination Vacunación anual hizo la seña en dos pagos, la otra transacción es 1110022572332 118800.00 20800.00 98000.00 2025-06-06 21:30:00+00 110507147647 872 983 1026 92 t8tfh3s3g79boocd9gdg4oqa4k 917 \N +1145 2025-05-11 19:29:24.093989+00 2025-05-11 19:29:24.093998+00 f t 2025-05-11 20:00:00 NO_REPORT clinical Seguimiento por tratamiento 46000.00 9500.00 36500.00 2025-05-11 23:00:00+00 110811385073 892 1003 113 70 5lsdi9d5313n8gno2cvo6qeph8 \N \N +1139 2025-05-10 18:12:55.727709+00 2025-05-10 18:12:55.727721+00 f t 2025-05-10 16:00:00 COMPLETED clinical Se encuentra bajo tratatamiento con ciprofloxacina, dificultad para orinar 25000.00 25000.00 16000.00 2025-05-10 19:00:00+00 \N 903 1010 113 92 taatj3no2i17tnd2s23iqasmbc \N \N +2040 2025-08-09 20:38:35.982941+00 2025-08-09 20:38:35.982949+00 f t 2025-08-10 12:00:00 COMPLETED clinical inyectable tribiotic y control post cx 45000.00 5000.00 40000.00 2025-08-10 15:00:00+00 38384278178 1798 1710 1208 1 7svs1tqiab7eq0gg99qvod0obo 400 \N +1124 2025-05-08 15:57:31.000196+00 2025-05-08 15:57:31.000203+00 f t 2025-05-09 13:30:00 COMPLETED vaccination Vacunación solo sextuple 59500.00 15500.00 44000.00 2025-05-09 16:30:00+00 1442690136 856 964 112 80 achbh00niqnqkk2a6bopen26bc \N \N +1142 2025-05-11 19:17:23.742196+00 2025-05-11 19:17:23.742205+00 f t 2025-05-12 13:00:00 COMPLETED clinical Consulta clínica, cuadro con secreciones mucosa, tos 38500.00 8500.00 30000.00 2025-05-12 16:00:00+00 37223625617 916 1021 113 88 b8jun39hi9s94pan9qqg1u01c4 \N \N +2489 2025-09-15 12:49:41.392067+00 2025-09-15 12:49:41.392074+00 f t 2025-09-16 16:00:00 COMPLETED clinical Consulta General, un poco decaido 55000.00 11000.00 44000.00 2025-09-16 19:00:00+00 LOEJWV9JLPY4KV8NQMD0G 8658 7148 1583 68 7cnf87fo2br7hi4vk46ndqhr3c 34 \N +1120 2025-05-07 20:11:26.362683+00 2025-05-07 20:11:26.362693+00 f t 2025-05-12 12:30:00 COMPLETED vaccination 59500.00 15500.00 44000.00 2025-05-12 15:30:00+00 110298132841 842 951 112 88 8vjbm41g38r99h2iud3387h0v0 \N \N +1128 2025-05-08 23:25:19.568282+00 2025-05-08 23:25:19.568289+00 f t 2025-05-12 14:00:00 COMPLETED vaccination Vacunación anual 66000.00 17000.00 49000.00 2025-05-12 17:00:00+00 2423e6bd-a5b0-46bf-bbf8-885441 867 979 114 80 4lo79sjcb73lpp8a69nu3stnl4 \N \N +3063 2025-10-29 20:26:33.474381+00 2025-10-29 20:26:33.47439+00 f t 2025-11-06 17:00:00 COMPLETED clinical Gata tricolor pelo largo, tiene caspa, quisiera un análisis de sangre para chequeo general, tiene sus vacunas al dia. 98400.00 57900.00 40500.00 2025-11-06 20:00:00+00 131148817641 11825 9775 113 1 avoo06sd8g01rii7cau21hmiis \N 1276 +1122 2025-05-08 14:15:50.60556+00 2025-05-08 14:15:50.605569+00 f t 2025-05-08 18:00:00 COMPLETED telemedicina Vulva inflamada Abonarle $16.000 a la vete 25000.00 25000.00 16000.00 2025-05-08 21:00:00+00 110434362405 854 962 112 92 tg2s9vdagslr3cltcsjotcqg2c \N \N +1140 2025-05-11 19:09:45.659291+00 2025-05-11 19:09:45.659301+00 f t 2025-05-10 20:30:00 NO_REPORT clinical Tratamiento indicado por el dr 46000.00 9500.00 36500.00 2025-05-10 23:30:00+00 111169043958 892 1003 113 70 u72baqq6hunv0me2e2rrj9t9o4 \N \N +1133 2025-05-09 13:33:37.281398+00 2025-05-09 13:33:37.281408+00 f t 2025-05-12 18:00:00 COMPLETED telemedicina Heces blandas pagarle a la vete $16.000 25000.00 25000.00 16000.00 2025-05-12 21:00:00+00 82493136 873 985 112 92 rekhat3ejvjcv4ernbpia0jekk \N \N +1135 2025-05-09 21:04:03.315533+00 2025-05-09 21:04:03.315541+00 f t 2025-05-09 21:00:00 NO_REPORT clinical Decaimiento general del animal, falta de apetito 46000.00 9500.00 36000.00 2025-05-10 00:00:00+00 110610113297 892 1003 112 70 8s94m2uuoqreteghhe32pm2f00 \N \N +1127 2025-05-08 19:12:16.00113+00 2025-05-08 19:12:16.001137+00 f t 2025-05-10 09:00:00 NO_REPORT clinical Fisioterapia 53000.00 8000.00 45000.00 2025-05-10 12:00:00+00 CA 6096086122 859 967 112 67 o3bkhqo8s0b7kcbaqh3aa33hlc \N \N +945 2025-04-05 20:45:17.609129+00 2025-04-05 20:45:17.609138+00 f t 2025-04-05 14:00:00 COMPLETED vaccination Vacunación de la triple felina, segunda dosis 59500.00 15500.00 44000.00 2025-04-05 17:00:00+00 106935756829 333 754 114 1 edslhit5v22vjjj6hp18kf389c \N \N +2335 2025-09-01 22:06:02.071118+00 2025-09-01 22:06:02.071168+00 f t 2025-09-08 11:30:00 NO_REPORT clinical fluidoterapia 0.00 0.00 0.00 2025-09-08 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 e6r7479rq8ipcfn63dkiblfbm8 \N \N +1138 2025-05-09 23:08:26.690906+00 2025-05-09 23:08:26.690913+00 f t 2025-05-10 12:30:00 COMPLETED clinical Revision por dificultad en la marcha 46000.00 9500.00 36500.00 2025-05-10 15:30:00+00 37207814561 897 1007 113 1 13sd3b71vd6hl9k091rqbt7sgs \N \N +1121 2025-05-08 13:59:52.377619+00 2025-05-08 13:59:52.377628+00 f t 2025-05-08 17:00:00 COMPLETED clinical Eutanasia Pagarle a la vete $86.500 108500.00 108500.00 0.00 2025-05-08 20:00:00+00 110884761882 137 961 112 94 g1fh1ggcn8afk2j6puk640gb0o \N \N +1131 2025-05-09 13:17:54.015731+00 2025-05-09 13:17:54.015741+00 f t 2025-06-06 18:30:00 COMPLETED vaccination Vacunación anual El monto total de la consulta se cargó en el otro turno 0.00 0.00 0.00 2025-06-06 21:30:00+00 110507147647 872 984 1026 92 6vv38504284bo399jc9blnn8q0 \N \N +1108 2025-05-07 00:06:58.211799+00 2025-05-07 00:06:58.211807+00 f t 2025-05-06 20:00:00 COMPLETED clinical eutanasia 108500.00 22000.00 86500.00 2025-05-06 23:00:00+00 \N 830 936 113 70 l3kdu92r87tn201h21201kfk88 \N \N +1102 2025-05-06 13:38:30.530595+00 2025-05-06 13:38:30.530602+00 f t 2025-05-07 10:30:00 COMPLETED vaccination 66000.00 17000.00 49000.00 2025-05-07 13:30:00+00 CA 9168 823 929 112 88 nrjqa7pljm7m4a8jqb0jm8cbcc \N \N +1129 2025-05-08 23:32:05.557109+00 2025-05-08 23:32:05.557118+00 f t 2025-05-09 16:30:00 COMPLETED clinical Chequeo rutinario 34650.00 4650.00 30000.00 2025-05-09 19:30:00+00 110950767018 837 942 114 21 vo54qeh5rko2vmsveqpv7c3j0s \N \N +1125 2025-05-08 16:58:29.71636+00 2025-05-08 16:58:29.716366+00 f t 2025-05-12 09:00:00 NO_REPORT clinical Extracción para análisis 69300.00 49300.00 20000.00 2025-05-12 12:00:00+00 81715399 734 858 113 66 9ci1kgrqcgbq0hfdnkosbnuhnc \N \N +1126 2025-05-08 17:49:06.777022+00 2025-05-08 17:49:06.777032+00 f t 2025-05-08 16:00:00 COMPLETED vaccination Refuerzo sextuple + desparasitación externa 76950.00 13450.00 63500.00 2025-05-08 19:00:00+00 CUIL 2340392710-4 646 761 112 89 radubsbr03ar83b5a3hmc8a0jg \N \N +1148 2025-05-12 17:22:10.431011+00 2025-05-12 17:22:10.431021+00 f t 2025-05-14 16:00:00 COMPLETED clinical Vacunación y desparasitación interna y externa Al no poder realizarse la vacunación y desparasitación, ajustamos el valor y montos ya que solo se hizo una consulta clínica. Se le hizo una devolución al cliente por el resto 77000.00 17000.00 60000.00 2025-05-14 19:00:00+00 WY7ZEPN6QWO85W4QNQ0M51 941 1045 112 89 3n7cn90jkpt875hsqnhu9q3k3k \N \N +1489 2025-06-16 20:17:44.342763+00 2025-06-16 20:17:44.342774+00 f t 2025-06-16 17:30:00 COMPLETED clinical Consulta clinica Abona el cliente por el link de mercado pago: Debemos abonarle a victoria 50000.00 50000.00 0.00 2025-06-16 20:30:00+00 \N 2822 2482 113 88 2a5sgum2abh9hqn7if1na8ra48 845 \N +1143 2025-05-11 19:20:18.004137+00 2025-05-11 19:20:18.004147+00 f t 2025-05-15 19:30:00 COMPLETED clinical Vacunacion anual 66000.00 17000.00 49000.00 2025-05-15 22:30:00+00 50309189007250510 917 1022 113 89 d6a0h5mo037s22t3rhjchd005k \N \N +1123 2025-05-08 14:48:57.426667+00 2025-05-08 14:48:57.426676+00 f t 2025-05-08 18:00:00 COMPLETED clinical decaimiento, vómitos, bulto en lomo 46000.00 9500.00 36500.00 2025-05-08 21:00:00+00 110436005923 855 963 112 88 epgghble8eda56e6oc0r2o3hmg \N \N +1130 2025-05-08 23:50:27.56658+00 2025-05-08 23:50:27.566588+00 f t 2025-05-09 19:00:00 COMPLETED vaccination Vacunación anual y chequeo 66000.00 17000.00 49000.00 2025-05-09 22:00:00+00 110954819904 868 980 114 92 p9mkkfsgmc83n0ni67lkmvvlv8 \N \N +1134 2025-05-09 13:45:10.339304+00 2025-05-09 13:45:10.339317+00 f t 2025-05-09 12:00:00 COMPLETED clinical Vaciado de vejiga 46000.00 9500.00 36500.00 2025-05-09 15:00:00+00 111006366268 876 988 112 1 mfsk0k3bc8qksccnu2gir1ojao \N \N +1168 2025-05-13 20:49:14.89836+00 2025-05-13 20:49:14.898378+00 f t 2025-05-14 19:00:00 COMPLETED clinical Antirrábica+ desparasitación interna y externa El monto total de la consulta está cargado en el otro turno 0.00 0.00 0.00 2025-05-14 22:00:00+00 111042873689 992 1089 112 70 ne3fpmcn7u1emtfoosghe9tc7c \N \N +1698 2025-07-08 15:12:06.545822+00 2025-07-08 15:12:06.545829+00 f t 2025-07-08 14:30:00 COMPLETED clinical Molestia en pata trasera 50000.00 10000.00 40000.00 2025-07-08 17:30:00+00 117850425246 4182 3487 1026 91 9f51btdmfhbcncfqb6lg8fbiuc 690 \N +1164 2025-05-13 19:27:45.179669+00 2025-05-13 19:27:45.179677+00 f t 2025-05-19 13:00:00 COMPLETED clinical Vacunacion anual 66000.00 17000.00 49000.00 2025-05-19 16:00:00+00 1453997094 999 1095 113 80 guirhppit37smjq326b4i0lcuc \N \N +1149 2025-05-12 17:22:49.606748+00 2025-05-12 17:22:49.606758+00 f t 2025-05-14 16:00:00 COMPLETED vaccination Vacunación y desparasitación El valor total está cargado en el otro turno 0.00 0.00 0.00 2025-05-14 19:00:00+00 WY7ZEPN6QWO85W4QNQ0M51 941 1044 112 89 1o58vfv0mifkhtlfglv2u8f2o8 \N \N +1163 2025-05-13 19:25:24.993117+00 2025-05-13 19:25:24.993127+00 f t 2025-05-13 16:30:00 NO_REPORT clinical ECO ABDOMINAL 52000.00 12000.00 40000.00 2025-05-13 19:30:00+00 110932517189 998 1094 113 90 edg4m0elqqm93u3ar0c2ori638 \N \N +2344 2025-09-01 23:35:21.480415+00 2025-09-01 23:35:21.480422+00 f t 2025-09-03 14:00:00 NO_REPORT clinical Control Cardiologico con Ecocardiograma 95000.00 10000.00 85000.00 2025-09-03 17:00:00+00 123944409991 7731 6363 114 82 n48j39g679lrnmfs5k17grehtk 151 \N +1946 2025-07-30 22:42:44.878953+00 2025-07-30 22:42:44.87896+00 f t 2025-08-04 15:00:00 COMPLETED clinical Revision clinica 42000.00 9500.00 32500.00 2025-08-04 18:00:00+00 120430877272 5564 4557 113 68 jekkov9jpsbf7tkbiak1v4h4vc 443 \N +337 2024-12-10 15:55:01.278+00 2024-12-10 15:55:01.278+00 f t 2024-08-21 16:00:00 COMPLETED vaccination Vacunación x 2 gatitos / Chequeo Tiña Transaccion 85549365982 Cliente abonó 100% 0.00 0.00 0.00 2024-08-21 19:00:00+00 74 295 114 8 gmes1k116drl66ef2ihm6idkko \N \N +1153 2025-05-12 19:42:49.549285+00 2025-05-12 19:42:49.549292+00 f t 2025-05-14 15:00:00 NO_REPORT clinical rx 65000.00 15000.00 50000.00 2025-05-14 18:00:00+00 100918993881 952 1056 112 84 6hvi03b3nkrsmlrmq5inshigq8 \N \N +868 2025-03-23 21:48:47.160894+00 2025-03-23 21:48:47.160903+00 f t 2025-03-27 10:00:00 NO_REPORT vaccination vacunación de la triple felina a un gatito y el corte de uñas el monto total esta puesto aca 126000.00 23400.00 102600.00 2025-03-27 13:00:00+00 105500746157 595 696 114 2 avjoto9cglhvu7sqq92vi1vdjs \N \N +1344 2025-06-02 14:44:42.073822+00 2025-06-02 14:44:42.07383+00 f t 2025-06-05 15:00:00 COMPLETED clinical Perdida de la vista-Tos seca 42000.00 9500.00 32500.00 2025-06-05 18:00:00+00 Z0KV87948D31Y5JQ2PEYDX 2003 1865 1026 91 1m0mrbrkgguso617cdmii79o6s 933 \N +1156 2025-05-13 01:14:21.805295+00 2025-05-13 01:14:21.805302+00 f t 2025-05-13 09:30:00 COMPLETED clinical Caida del pelo 38500.00 8500.00 300000.00 2025-05-13 12:30:00+00 \N 47 48 113 1 vijghm4dbv7qvq63si3vl30gac \N \N +76 2024-10-30 14:13:08.959+00 2024-10-30 14:13:08.959+00 f t 2024-08-21 16:00:00 COMPLETED Vacunación x 2 animales Vacunación x 2 gatitos / Chequeo Tiña Transaccion 85549365982 Cliente abonó 100% 97000.00 97000.00 60000.00 2024-08-21 19:00:00+00 74 76 \N 8 nhct12vqe09a6innadi93d204g \N \N +1687 2025-07-07 22:12:22.568037+00 2025-07-07 22:12:22.568044+00 f t 2025-07-07 20:30:00 COMPLETED clinical Ecografía Abdominal 67000.00 12000.00 55000.00 2025-07-07 23:30:00+00 \N 4140 3449 114 90 rensa4s7thuqt7papoenn2qmn8 692 \N +1161 2025-05-13 19:01:41.258568+00 2025-05-13 19:01:41.258576+00 f t 2025-05-16 22:00:00 NO_REPORT clinical electro, ecocardiograma 95000.00 10000.00 85000.00 2025-05-17 01:00:00+00 ORD6LEN876DXOWOPM1Y30 983 1079 112 82 pp6tvtcv67d6s54aonrl9qqvi4 \N \N +1320 2025-05-29 16:48:41.873103+00 2025-05-29 16:48:41.873113+00 f t 2025-05-30 20:00:00 NO_REPORT clinical Abonarle al vete 0.00 0.00 0.00 2025-05-30 23:00:00+00 113210531944 1811 1716 1026 82 ufj4rucibq1hhuiqhahudt07vk \N \N +1151 2025-05-12 19:15:24.95262+00 2025-05-12 19:15:24.952628+00 f t 2025-05-12 17:00:00 COMPLETED telemedicina Pagarle a la vete $16.000 25000.00 25000.00 0.00 2025-05-12 20:00:00+00 11371446120 944 1049 112 92 apjlpepmdg18o119g02mml5ic0 \N \N +1157 2025-05-13 12:57:05.383111+00 2025-05-13 12:57:05.383121+00 f t 2025-05-13 13:00:00 COMPLETED telemedicina 2da opinión respecto a medicación 25000.00 25000.00 16000.00 2025-05-13 16:00:00+00 37249815370 978 1074 112 80 icvustjn73adtojj52t7l7h88o \N \N +1169 2025-05-13 20:51:24.491521+00 2025-05-13 20:51:24.491533+00 f t 2025-05-14 19:00:00 COMPLETED clinical Antirrábica + desparasitación interna y externa (ambos pacientes están tramitando para salir del país) 150300.00 21300.00 129000.00 2025-05-14 22:00:00+00 111042873689 992 1090 112 70 14j53jvglcc5m8m35oj386onk4 \N \N +173 2024-10-30 14:13:09.839+00 2024-10-30 14:13:09.839+00 f t 2024-10-09 15:30:00 COMPLETED Ecografia (vet. Mallo) Ecografia perro a domicilio porque esta descompensada y no la pueden mover Transaccion 90077066342 64000.00 9000.00 55000.00 2024-10-09 18:30:00+00 150 159 \N 3 \N \N \N +1173 2025-05-14 15:13:03.658537+00 2025-05-14 15:13:03.65855+00 f t 2025-05-15 10:30:00 COMPLETED clinical Últimamente esta como que vomita pero no lo hace, como que se asfixia pareciera. Otra cosa que tiene es una gran acumulación de lagaña en uno de sus ojos 38500.00 8500.00 30000.00 2025-05-15 13:30:00+00 111122135959 1021 1111 112 88 ls6sfhn33i88l3jcq3qefcjlbc \N \N +1165 2025-05-13 19:31:30.811423+00 2025-05-13 19:31:30.811431+00 f t 2025-05-17 09:00:00 CANCELLED clinical rx x 4 145000.00 30000.00 115000.00 2025-05-17 12:00:00+00 745535114 893 1004 113 84 ru2divm1jeosk51drpki83rmg8 \N \N +1620 2025-07-01 12:58:47.473347+00 2025-07-01 12:58:47.473354+00 f t 2025-07-03 15:00:00 COMPLETED clinical Diarrea, delgadez, pelaje sucio, posible parásitos 42000.00 9500.00 32500.00 2025-07-03 18:00:00+00 116473930741 3692 3133 1026 74 tghmluol45k97blvi4ngsjca8o 725 \N +1136 2025-05-09 21:10:19.045798+00 2025-05-09 21:10:19.045805+00 f t 2025-05-12 20:30:00 COMPLETED clinical Control de nodulos 38500.00 8500.00 30000.00 2025-05-12 23:30:00+00 731891913 893 1004 112 89 q775aus4evdn5psl1i53231l94 \N \N +1199 2025-05-15 22:22:46.572817+00 2025-05-15 22:22:46.572824+00 f t 2025-05-18 15:00:00 COMPLETED clinical Tiene secreccion de de lado izquierdo y con lagrimeo del ojo 46000.00 9500.00 36500.00 2025-05-18 18:00:00+00 111289377167 1110 1175 113 92 ifvupqbrfo2nah2p3ujbarhv54 \N \N +1175 2025-05-14 16:53:13.131766+00 2025-05-14 16:53:13.131773+00 f t 2025-05-20 08:30:00 COMPLETED vaccination Vacunación anual 66000.00 17000.00 49000.00 2025-05-20 11:30:00+00 1bb51b7c-9fcc-4e5e-8c5c-c065f7 1028 1120 112 80 4t2fpvaul9gnjn3mei1r3c62hc \N \N +3058 2025-10-29 15:32:26.72325+00 2025-10-29 15:32:26.723259+00 f t 2025-10-31 08:00:00 COMPLETED clinical Ecografia abdominal. 83000.00 13000.00 70000.00 2025-10-31 11:00:00+00 131711990370 11745 9712 1583 103 77b8cila2khldkgt7gkv9dgul4 \N 1281 +3122 2025-11-03 23:59:08.733283+00 2025-11-03 23:59:08.733295+00 f t 2025-11-03 20:00:00 NO_REPORT clinical Cremación 27750.00 27750.00 0.00 2025-11-03 23:00:00+00 132386940858 12295 10150 114 95 mlt77p5i8bin7kemqhvl59g668 \N 1384 +856 2025-03-20 18:34:56.657701+00 2025-03-20 18:34:56.657712+00 f t 2025-03-24 08:00:00 COMPLETED clinical Colocacion de via para terapia de filtraciones, es subcutáneo medicación homeópata Abonarle a lisandro los $7000 pesos faltante, por el incoveniente del domingo con antonela 23000.00 0.00 23000.00 2025-03-24 11:00:00+00 \N 479 567 113 1 hee3evm54qqf4m7r7b94q83u9o \N \N +1160 2025-05-13 18:40:44.262601+00 2025-05-13 18:40:44.262614+00 f t 2025-05-17 09:00:00 NO_REPORT clinical Fisioterapia 53000.00 8000.00 45000.00 2025-05-17 12:00:00+00 CA 6096086122 859 967 112 67 goud8varf0rtrc37h8mhcmra1o \N \N +1162 2025-05-13 19:03:36.108259+00 2025-05-13 19:03:36.108269+00 f t 2025-05-14 17:30:00 COMPLETED clinical Eco abdominal 57000.00 12000.00 45000.00 2025-05-14 20:30:00+00 L18MKX9R75EXEZ4E9O6WYV 983 1079 112 90 lo5ctv88ngd9kp3njf17e916t8 \N \N +1190 2025-05-15 15:47:33.560992+00 2025-05-15 15:47:33.561043+00 f t 2025-05-15 17:00:00 COMPLETED vaccination Vacunación antirrábica Pacientes oncológicas 0.00 0.00 0.00 2025-05-15 20:00:00+00 37276681429 1087 1156 112 88 \N \N \N +1185 2025-05-15 00:04:38.090039+00 2025-05-15 00:04:38.090046+00 f t 2025-05-16 20:00:00 COMPLETED clinical Consulta clinica para revision de posible eutanasia 108900.00 13900.00 95000.00 2025-05-16 23:00:00+00 111622009842 587 688 113 70 ohp07g25vl0pkgvl6f7dasfajs \N \N +1625 2025-07-01 15:18:43.164877+00 2025-07-01 15:18:43.164887+00 f t 2025-07-02 17:30:00 COMPLETED clinical mí gato tiene 11 años y hace aproximadamente 2meses bajo mucho de peso y empezó con vómitos y diarrea de forma esporádica , fui a un veterinario hace 15 días aproximadamente y le recetó unas gotas Meloxivet pq creía qué tenía inflamada la vejiga, aparentemente le hizo bien pq los síntomas desaparecieron, pero me sugirieron que le haga una ecografía y ahí le salí que tiene un tumor no se bien me mandaron el informe. La sugerencia es operarlo y no quiero. Come, toma agua y hace sus necesidades pero lo noto que duerme mucho y está distante con nosotros 42000.00 9500.00 32500.00 2025-07-02 20:30:00+00 7L8GYKNXWQKO5ZPPMPRZ5 3729 3161 1026 1 p8i6edgsap4obj1s9vjlpaf5b8 734 \N +1191 2025-05-15 15:56:44.205601+00 2025-05-15 15:56:44.205613+00 f t 2025-05-15 17:00:00 COMPLETED vaccination Vacunación Antirrábica 0.00 0.00 0.00 2025-05-15 20:00:00+00 5491124506071 1087 1158 112 88 1041ajc1ac7n0gbcktl126bsns \N \N +1187 2025-05-15 13:51:48.498782+00 2025-05-15 13:51:48.498792+00 f t 2025-05-16 11:30:00 COMPLETED clinical Dermatológica 70000.00 10000.00 60000.00 2025-05-16 14:30:00+00 1LMP68NKJW5Q1M0D2R7OEV 1082 1150 112 75 qua333e2u61f9hkcv01r1o5ntc \N \N +1196 2025-05-15 18:29:28.285781+00 2025-05-15 18:29:28.28579+00 f t 2025-05-17 15:00:00 COMPLETED vaccination la vete atiende a Sunny y Ozzie 0.00 0.00 0.00 2025-05-17 18:00:00+00 37278976192 1098 1164 112 92 l77dgrvtisq824lo1k4ks6qtug \N \N +1178 2025-05-14 18:17:44.832827+00 2025-05-14 18:17:44.832837+00 f t 2025-05-16 12:30:00 COMPLETED clinical Vacunacion con antirrabica y medicacion para la incotinencia 46000.00 11000.00 35000.00 2025-05-16 15:30:00+00 37259105427 1042 1129 113 80 8rdcb3orof4kkb57d6iqldh7sk \N \N +1189 2025-05-15 15:47:14.471707+00 2025-05-15 15:47:14.471717+00 f t 2025-05-15 17:00:00 COMPLETED vaccination Vacunación antirrábica Pacientes oncológicas 124200.00 19200.00 105000.00 2025-05-15 20:00:00+00 37276681429 1087 1157 112 88 crqnrk64rs7ruoum87ssjktcc0 \N \N +1146 2025-05-11 21:40:44.363634+00 2025-05-11 21:40:44.363641+00 f t 2025-05-11 21:00:00 NO_REPORT clinical Consulta clinica por un gato que presenta vomitos y diarrea Mal temperamento 46000.00 9500.00 36500.00 2025-05-12 00:00:00+00 110821456519 920 1025 113 70 9svdvq3heuqck9meodsfjv8uh0 \N \N +1177 2025-05-14 18:14:39.716466+00 2025-05-14 18:14:39.716474+00 f t 2025-05-14 19:30:00 NO_REPORT clinical ECO 57000.00 12000.00 45000.00 2025-05-14 22:30:00+00 111500351660 1041 1128 113 90 fng257ceu8c7u4bb58e4q72le8 \N \N +1179 2025-05-14 18:21:16.139503+00 2025-05-14 18:21:16.139514+00 f t 2025-05-14 20:00:00 COMPLETED clinical Extraccion 46200.00 10700.00 35500.00 2025-05-14 23:00:00+00 \N 893 1004 113 70 p1fiv3sge2ujmeat1ds5sq88c8 \N \N +1194 2025-05-15 17:39:40.798051+00 2025-05-15 17:39:40.798059+00 f t 2025-05-15 17:00:00 NO_REPORT clinical Abonarle $16.000 a la vete 25000.00 25000.00 0.00 2025-05-15 20:00:00+00 11244717253 1096 1162 112 93 2hlq4moqk7p3g29e1gqrb4o6oo \N \N +3050 2025-10-28 20:56:40.03944+00 2025-10-28 20:56:40.039454+00 f t 2025-10-28 19:30:00 COMPLETED clinical Consulta post estudios. 55000.00 11000.00 44000.00 2025-10-28 22:30:00+00 131035343475 541 9621 1583 80 e6mmf6bl6h0jrgg20u1hvfhp4c \N 1265 +1223 2025-05-19 20:51:56.077171+00 2025-05-19 20:51:56.077179+00 f t 2025-05-23 10:00:00 COMPLETED clinical Vacunación (2da dosis) Es probable que se asuste 59500.00 15500.00 44000.00 2025-05-23 13:00:00+00 111692051363 1296 1313 112 88 o8of565v7p146br1bj60059ftc \N \N +2163 2025-08-19 23:39:11.891031+00 2025-08-19 23:39:11.891038+00 f t 2025-08-19 19:00:00 COMPLETED clinical No puede defecar y vomita baba 50000.00 10000.00 40000.00 2025-08-19 22:00:00+00 122401061555 6907 5649 114 92 2j6fqitk5lbrl2gqv2n032f3hc 313 \N +1197 2025-05-15 18:44:17.144253+00 2025-05-15 18:44:17.144264+00 f t 2025-05-21 09:00:00 COMPLETED vaccination Vacunación anual 66000.00 17000.00 49000.00 2025-05-21 12:00:00+00 4W2H-17R1-VW50 1100 1167 112 88 tsitvik2js233e58obs292633k \N \N +1198 2025-05-15 21:51:27.236078+00 2025-05-15 21:51:27.236086+00 f t 2025-05-19 12:00:00 COMPLETED clinical :Prurito en la oreja 38500.00 8500.00 30000.00 2025-05-19 15:00:00+00 11273893225 1109 1174 112 1 c9rp63j8cn7s43rlhrt02hgthg \N \N +1152 2025-05-12 19:35:01.589738+00 2025-05-12 19:35:01.589748+00 f t 2025-05-14 18:30:00 COMPLETED vaccination 118800.00 20800.00 98000.00 2025-05-14 21:30:00+00 3D5W612EJY7EZXGQ0GXYVR 942 1046 112 89 1vutgt1k24gntc5kf1s4s45oks \N \N +1181 2025-05-14 18:27:29.485525+00 2025-05-14 18:27:29.485534+00 f t 2025-05-14 21:00:00 NO_REPORT clinical Eco abdominal 57000.00 12000.00 45000.00 2025-05-15 00:00:00+00 \N 991 1088 113 90 opo8b9rutka987ve59a206q6r8 \N \N +1167 2025-05-13 19:34:49.179946+00 2025-05-13 19:34:49.179955+00 f t 2025-05-13 19:30:00 COMPLETED clinical Control por vomitos 46000.00 9500.00 36500.00 2025-05-13 22:30:00+00 111033363929 490 579 113 1 u5ksqj9ioc0si30moibapn8ar8 \N \N +1188 2025-05-15 14:35:57.632263+00 2025-05-15 14:35:57.632271+00 f t 2025-05-12 20:30:00 COMPLETED clinical 46000.00 9500.00 6500.00 2025-05-12 23:30:00+00 CA 6226025575 625 735 112 91 fub16e90ngmbll9p96jvkunm9o \N \N +1155 2025-05-12 20:16:15.549921+00 2025-05-12 20:16:15.549928+00 f t 2025-05-14 11:30:00 COMPLETED vaccination 153900.00 26900.00 127000.00 2025-05-14 14:30:00+00 CA 24-40535041-2 73 75 112 1 4l671nujn4u03eqkdhfv1185c4 \N \N +1182 2025-05-14 18:28:29.100591+00 2025-05-14 18:28:29.100601+00 f t 2025-05-14 09:00:00 COMPLETED clinical Perfil general con orina + tralado 43000.00 43000.00 0.00 2025-05-14 12:00:00+00 0 991 1088 113 86 8trjfqf69opknd018mknk8pu6g \N \N +1184 2025-05-15 00:02:12.186117+00 2025-05-15 00:02:12.186126+00 f t 2025-05-26 20:30:00 COMPLETED clinical Consulta clinica 69300.00 9300.00 60000.00 2025-05-26 23:30:00+00 111621613822 353 415 113 89 v7vilqrngn9pnpgvgb8re46l34 \N \N +1172 2025-05-14 13:37:28.488948+00 2025-05-14 13:37:28.488957+00 f t 2025-05-14 12:00:00 COMPLETED clinical No sube de peso 46000.00 9500.00 36500.00 2025-05-14 15:00:00+00 11566453472 1009 1103 112 68 lnn7on8rk5p60fbm7v7kqd1btg \N \N +1171 2025-05-14 00:33:31.203642+00 2025-05-14 00:33:31.20365+00 f t 2025-05-13 19:00:00 NO_REPORT clinical Extraccion + consulta+ traslado+ laboratorio 164600.00 129100.00 35500.00 2025-05-13 22:00:00+00 746618755 893 1004 113 70 kon404rbd5hso99acjd01620o0 \N \N +1192 2025-05-15 17:00:09.308298+00 2025-05-15 17:00:09.308313+00 f t 2025-05-15 14:30:00 COMPLETED telemedicina Abonarle a la vete $16.000 25000.00 25000.00 0.00 2025-05-15 17:30:00+00 11125380639 1072 1147 112 92 spuvavfdk8jg08sj9jirdt6vuc \N \N +1094 2025-05-04 21:58:30.909246+00 2025-05-04 21:58:30.909254+00 f t 2025-05-04 18:00:00 NO_REPORT clinical Larga gotas de sangre por el recto 46000.00 9500.00 36500.00 2025-05-04 21:00:00+00 D4RO172VEVD7ML31NKJ3QE 797 912 114 70 g184lg65bivgto6o42b43bn32s \N \N +2336 2025-09-01 22:06:34.316024+00 2025-09-01 22:06:34.316031+00 f t 2025-09-09 11:30:00 NO_REPORT clinical fluidoterapia 0.00 0.00 0.00 2025-09-09 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 mdvpivp17tj7qo8gd1hklv1bac \N \N +1195 2025-05-15 18:27:53.140669+00 2025-05-15 18:27:53.140677+00 f t 2025-05-17 15:00:00 COMPLETED vaccination Vacunación anual 118800.00 20800.00 98000.00 2025-05-17 18:00:00+00 37278976192 1098 1166 112 92 6phc0794249lgi0imcb9d7n1dk \N \N +72 2024-10-30 14:13:08.929+00 2024-10-30 14:13:08.929+00 f t 2024-08-19 09:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación anual gata Transaccion 85536095270 Cliente pagó 50% transferencia y 50% efectivo 47000.00 23850.00 35000.00 2024-08-19 12:00:00+00 70 72 114 1 \N \N \N +1183 2025-05-14 18:31:45.61038+00 2025-05-14 18:31:45.610389+00 f t 2025-05-13 22:00:00 COMPLETED telemedicina Dolor en patas 25000.00 25000.00 16000.00 2025-05-14 01:00:00+00 111068034895 1047 1131 113 92 lgj5cpcfkjriff2v7nuccohirs \N \N +1204 2025-05-17 20:56:50.702071+00 2025-05-17 20:56:50.702081+00 f t 2025-05-19 20:00:00 COMPLETED clinical Lesion en la tetilla Abono $15.500--> porque no aclaro el domiciilio 25000.00 25000.00 16000.00 2025-05-19 23:00:00+00 11960179326 1174 1221 113 92 5aumkee7q99rajei9244nq3v58 \N \N +1225 2025-05-20 00:14:17.126377+00 2025-05-20 00:14:17.126385+00 f t 2025-05-23 10:30:00 NO_REPORT clinical Desparasitacion interna-externa+ vacunacion anual 92600.00 12050.00 80550.00 2025-05-23 13:30:00+00 111715865803 1136 1194 113 70 nsk0vh2aj2r90ua15nru2vao8k \N \N +1979 2025-08-03 15:50:18.442881+00 2025-08-03 15:50:18.442888+00 f t 2025-08-03 20:00:00 COMPLETED clinical vomitos y no cme hace 2 dias 45000.00 5000.00 40000.00 2025-08-03 23:00:00+00 120861279622 5802 4745 1208 92 cre6cqnduj4bdupms0v1u5pef0 447 \N +1230 2025-05-20 15:06:05.214757+00 2025-05-20 15:06:05.214764+00 f t 2025-05-21 18:30:00 COMPLETED clinical se paspo debajo de las axilas y hay una que se infectó y le está supurando 38500.00 8500.00 30000.00 2025-05-21 21:30:00+00 70121914012250502 1320 1333 112 70 ao6qosafdmavsf2s1mtl76r7ec \N \N +1166 2025-05-13 19:32:59.967017+00 2025-05-13 19:32:59.967026+00 f t 2025-05-13 18:00:00 COMPLETED clinical Paciente con decaimiento, cambios en sus habitos alimenticios y evacuatorios 46000.00 9500.00 36500.00 2025-05-13 21:00:00+00 11486822374 991 1088 113 1 e1733fnf161phhp55ckj1ik1ss \N \N +1231 2025-05-20 15:30:08.074528+00 2025-05-20 15:30:08.074538+00 f t 2025-05-23 21:00:00 NO_REPORT clinical Cardiológica 105000.00 10000.00 95000.00 2025-05-24 00:00:00+00 111773552339 1323 1336 112 82 42t93i5sdv7a12n4vopsa7i1vs \N \N +1214 2025-05-19 16:29:01.734702+00 2025-05-19 16:29:01.734712+00 t t 2025-05-22 19:00:00 PENDING clinical Retiro de muestras de orina + laboratorio 41000.00 41000.00 0.00 2025-05-22 22:00:00+00 112123996070 896 1006 112 76 n7dks5v6i2ou56s210uh88nje0 \N \N +1207 2025-05-18 21:27:41.460382+00 2025-05-18 21:27:41.460389+00 f t 2025-05-18 18:30:00 COMPLETED telemedicina Sangre en la orina 25000.00 25000.00 0.00 2025-05-18 21:30:00+00 \N 1248 1275 114 94 bldc2a9aunkgph3uj8qarcutnk \N \N +1215 2025-05-19 16:29:25.417872+00 2025-05-19 16:29:25.417882+00 t t 2025-05-22 19:00:00 PENDING clinical Retiro de muestras de orina + laboratorio 41000.00 41000.00 0.00 2025-05-22 22:00:00+00 112123996070 896 1006 112 76 dod13m6jb6ui64ba4c3cgliofk \N \N +1216 2025-05-19 16:29:25.421381+00 2025-05-19 16:29:25.421389+00 t t 2025-05-22 19:00:00 PENDING clinical Retiro de muestras de orina + laboratorio 41000.00 41000.00 0.00 2025-05-22 22:00:00+00 112123996070 896 1006 112 76 q06j165s9hb35d35spukrmvfn4 \N \N +1217 2025-05-19 16:29:28.635094+00 2025-05-19 16:29:28.635101+00 f t 2025-05-22 19:00:00 COMPLETED clinical Retiro de muestras de orina + laboratorio 41000.00 41000.00 0.00 2025-05-22 22:00:00+00 112123996070 896 1006 112 86 bb5m1ifq0vofe5isqvd1f6r3nc \N \N +2047 2025-08-10 20:07:37.536242+00 2025-08-10 20:07:37.536253+00 f t 2025-08-10 20:00:00 NO_REPORT clinical 37350.00 37350.00 0.00 2025-08-10 23:00:00+00 121254610005 425 505 1208 95 pi5dr0o15r58tqr0oco88581ok 391 \N +1222 2025-05-19 17:48:05.887605+00 2025-05-19 17:48:05.887615+00 f t 2025-05-22 10:00:00 COMPLETED clinical Análisis de PGC 0.00 0.00 0.00 2025-05-22 13:00:00+00 0 734 858 113 86 \N \N \N +1224 2025-05-19 23:37:43.632162+00 2025-05-19 23:37:43.632169+00 f t 2025-05-22 16:00:00 COMPLETED telemedicina Resolucion de resultados 25000.00 25000.00 16000.00 2025-05-22 19:00:00+00 112173281452 659 778 113 80 khngeppn775rob1namjuai92nc \N \N +587 2025-02-05 14:33:46.786688+00 2025-02-05 14:33:46.786697+00 f t 2025-02-06 16:30:00 COMPLETED vaccination vacunacion anual gato + perro 109350.00 23850.00 85500.00 2025-02-06 19:30:00+00 100920414291 418 498 111 1 mrhp50crbkaa00dsgoitm4t05o \N \N +1227 2025-05-20 13:04:37.284674+00 2025-05-20 13:04:37.284682+00 t t 2025-05-20 09:00:00 COMPLETED clinical 38500.00 8500.00 30000.00 2025-05-20 12:00:00+00 37322665025 338 401 112 1 29nfin7q2okh3660r1d9qupa9s \N \N +1202 2025-05-16 23:25:56.853094+00 2025-05-16 23:25:56.853101+00 f t 2025-05-18 18:00:00 COMPLETED telemedicina resolucion de caso 25000.00 25000.00 16000.00 2025-05-18 21:00:00+00 \N 811 922 114 1 oqoqscuk6k1u891ge3hhi18s3k \N \N +1200 2025-05-16 16:12:01.709701+00 2025-05-16 16:12:01.709732+00 f t 2025-05-16 21:00:00 NO_REPORT clinical Cistitis 46000.00 9500.00 36500.00 2025-05-17 00:00:00+00 111822323832 1136 1194 112 70 be2l0886qqpch9cukvdcrlhmsk \N \N +1212 2025-05-19 15:53:55.825008+00 2025-05-19 15:53:55.825017+00 f t 2025-05-21 16:00:00 COMPLETED vaccination Vacunación 112950.00 20000.00 93000.00 2025-05-21 19:00:00+00 112121938302 1271 1295 112 89 39nobn3eitohaetc8237jpioik \N \N +1947 2025-07-30 23:25:00.419175+00 2025-07-30 23:25:00.419185+00 f t 2025-07-31 16:00:00 COMPLETED telemedicina 24750.00 24750.00 0.00 2025-07-31 19:00:00+00 120433722498 1798 1709 1208 94 5kmgpvddjq14q61sdkruc9ciqo 482 \N +1150 2025-05-12 18:01:51.725157+00 2025-05-12 18:01:51.725164+00 f t 2025-05-14 18:30:00 COMPLETED vaccination Vacunación 118800.00 20800.00 98000.00 2025-05-14 21:30:00+00 3D5W612EJY7EZXGQ9GXYVR 942 1047 112 89 40vc5ufdaqhl966m7m9nci5l5k \N \N +1956 2025-07-31 17:41:00.130769+00 2025-07-31 17:41:00.130777+00 f t 2025-08-01 16:00:00 COMPLETED clinical vacunacion anual 0.00 0.00 0.00 2025-08-01 19:00:00+00 \N 5640 4619 1208 1 llk469d0lvk3raln1132m192e8 \N \N +1117 2025-05-07 19:14:51.013352+00 2025-05-07 19:14:51.013359+00 f t 2025-05-12 18:30:00 COMPLETED vaccination 297000.00 52000.00 245000.00 2025-05-12 21:30:00+00 30413417017250507 839 947 112 87 kejgo65v0pvuco8fjj47m9hook \N \N +1211 2025-05-19 13:06:57.515772+00 2025-05-19 13:06:57.515782+00 f t 2025-05-19 10:30:00 COMPLETED clinical Diarrea 46000.00 9500.00 36500.00 2025-05-19 13:30:00+00 CA4358781/4 1249 1276 112 1 t1ni00n90uv3u0b2692173g5qs \N \N +1931 2025-07-30 14:44:46.577604+00 2025-07-30 14:44:46.577611+00 f t 2025-07-31 09:30:00 COMPLETED clinical Extracción de sangre 97530.00 59530.00 38000.00 2025-07-31 12:30:00+00 3D5W612EJGR715PG9GXYVR 167 176 1026 88 46se24ub6kg9a48ip4oh06pres 487 \N +1201 2025-05-16 18:06:30.651644+00 2025-05-16 18:06:30.651653+00 f t 2025-05-16 16:30:00 COMPLETED clinical Cistitis 46000.00 9500.00 36500.00 2025-05-16 19:30:00+00 88235236 1140 1197 112 89 dqrokldgvpvabniulfbiv56h3c \N \N +1228 2025-05-20 14:28:43.749359+00 2025-05-20 14:28:43.749365+00 f t 2025-05-22 18:30:00 CANCELLED clinical corte de garras 112579433934 devolución, doc solicita cambio de horario y no acepta 81900.00 11900.00 70000.00 2025-05-22 21:30:00+00 112225536950 1316 1329 112 70 ggrisa7pr8s3ts7lt6b48i7tqg \N \N +1205 2025-05-17 21:10:36.868197+00 2025-05-17 21:10:36.868208+00 f t 2025-05-18 18:00:00 COMPLETED clinical Infeccion urinaria 46500.00 9500.00 36500.00 2025-05-18 21:00:00+00 88991627 1193 1231 114 92 32ir90a525umbacld63nl7s3jk \N \N +1301 2025-05-27 23:06:51.299194+00 2025-05-27 23:06:51.299203+00 f t 2025-06-28 16:00:00 COMPLETED clinical Pack de 5 visitas -Visita Numero 1 Se aplico el descuento del pack de 3 visitas para que acceda 154000.00 4000.00 150000.00 2025-06-28 19:00:00+00 112919116470 1734 1651 113 92 2nii9581ojt0k6q43i43i5n374 766 \N +3324 2025-11-19 16:09:58.878772+00 2025-11-19 16:09:58.878781+00 f t 2025-11-19 19:00:00 COMPLETED clinical Ecografia abdominal. Se le debe $75.000 a la vete, la tutora abono con link de pago 88000.00 88000.00 0.00 2025-11-19 22:00:00+00 MP 13646 11252 1583 90 muuvh4m59sbr2g9quvm030jqe8 \N 1673 +1209 2025-05-18 21:47:45.583737+00 2025-05-18 21:47:45.583746+00 f t 2025-05-21 11:00:00 COMPLETED clinical Chequeo por conductas agresivas y 38500.00 8500.00 30000.00 2025-05-21 14:00:00+00 112029132556 1239 1266 113 88 a57q31heu6fqddpotes6nk0qts \N \N +1206 2025-05-17 21:28:43.813687+00 2025-05-17 21:28:43.813696+00 f t 2025-05-19 18:30:00 COMPLETED vaccination Vacunacion anual 66000.00 17000.00 49000.00 2025-05-19 21:30:00+00 \N 1194 1232 114 70 gcqmup3hn7fa1fu8i83tc8ofug \N \N +1208 2025-05-18 21:44:19.588176+00 2025-05-18 21:44:19.588184+00 f t 2025-05-18 16:00:00 COMPLETED clinical Estornudos y decaimiento 46000.00 9500.00 36500.00 2025-05-18 19:00:00+00 1120233878168 1201 1240 114 68 rfn46d5limfuvqa5j0t1gcksfo \N \N +1325 2025-05-30 12:51:24.826448+00 2025-05-30 12:51:24.826459+00 f t 2025-05-31 10:00:00 COMPLETED vaccination 0.00 0.00 0.00 2025-05-31 13:00:00+00 112755885313 1828 1729 1026 91 7tj9v1un5ef8no06kkstkoisj4 \N \N +1235 2025-05-20 16:53:45.414583+00 2025-05-20 16:53:45.41459+00 f t 2025-05-20 20:00:00 COMPLETED clinical Eco abdominal abonarle 8.000 a la vete, nos pasó mas seña 67000.00 20000.00 47000.00 2025-05-20 23:00:00+00 112243859054 1327 1338 112 90 6vno2u991l3ah850opk70fk7ak \N \N +1236 2025-05-20 17:09:56.140127+00 2025-05-20 17:09:56.140135+00 f t 2025-05-28 20:00:00 NO_REPORT vaccination Vacunación (refuerzo) 59500.00 15500.00 44000.00 2025-05-28 23:00:00+00 90548334 1328 1339 113 70 p693jv8g6481e9gclvbm7e95ok \N \N +1250 2025-05-21 17:26:26.824436+00 2025-05-21 17:26:26.824444+00 f t 2025-06-01 17:00:00 CANCELLED vaccination Vacunación 59500.00 15500.00 44000.00 2025-06-01 20:00:00+00 37342047229 703 820 113 92 sq8t8heh3hics6cdu93qvrb3fs \N \N +1907 2025-07-28 18:24:39.406288+00 2025-07-28 18:24:39.406297+00 f t 2025-08-02 14:00:00 COMPLETED vaccination Se detalla en el turno de Estrellita 0.00 0.00 0.00 2025-08-02 17:00:00+00 \N 5428 4455 1026 80 3o5hg8jt81l1r5r4oq3c6ta6bc \N \N +1258 2025-05-21 22:45:53.061906+00 2025-05-21 22:45:53.061916+00 f t 2025-05-22 09:00:00 COMPLETED clinical Debemos cubri los 12.000 del traslado 50000.00 0.00 0.00 2025-05-22 12:00:00+00 0 734 858 113 86 \N \N \N +1242 2025-05-20 21:06:55.861276+00 2025-05-20 21:06:55.861284+00 f t 2025-05-22 19:00:00 NO_REPORT vaccination Vacunación anual 66000.00 17000.00 49000.00 2025-05-22 22:00:00+00 112270749558 1343 1346 112 70 v6t3df8mf99onrl1e2559j9eng \N \N +1694 2025-07-08 13:14:22.166505+00 2025-07-08 13:14:22.166513+00 f t 2025-07-08 17:00:00 COMPLETED clinical px con vòmitos 50000.00 10000.00 40000.00 2025-07-08 20:00:00+00 117336005201 4171 3475 1026 79 t7dpjfhrep4jrcu4p5t4576098 688 \N +1254 2025-05-21 22:33:13.259461+00 2025-05-21 22:33:13.259468+00 f t 2025-05-19 17:30:00 COMPLETED clinical Eco abdominal 57000.00 12000.00 45000.00 2025-05-19 20:30:00+00 \N 1249 1276 113 90 h79pb2c3mcvaju69rjmsqhvelk \N \N +1259 2025-05-22 13:41:49.17857+00 2025-05-22 13:41:49.178578+00 f t 2025-05-22 22:00:00 NO_REPORT clinical Cardiológica 95000.00 10000.00 85000.00 2025-05-23 01:00:00+00 111990064651 1440 1419 112 82 o1aflg9r7u6si5tboqqsaftnec \N \N +1248 2025-05-21 14:50:45.561455+00 2025-05-21 14:50:45.561466+00 f t 2025-05-28 09:00:00 COMPLETED clinical Vacunación anual 66000.00 17000.00 49000.00 2025-05-28 12:00:00+00 111884436459 1381 1370 112 80 8b0kdinuuhs5hibdfk0ce8peno \N \N +1239 2025-05-20 18:47:49.212671+00 2025-05-20 18:47:49.212678+00 t t 2025-05-20 17:30:00 PENDING telemedicina Temblores en su mascota Abonarle a la vete 25000.00 25000.00 16000.00 2025-05-20 20:30:00+00 112255636802 1337 1343 112 21 5tept8rlla1mcit595n5r1pous \N \N +1244 2025-05-21 00:53:14.932479+00 2025-05-21 00:53:14.93249+00 f t 2025-05-22 16:30:00 COMPLETED clinical Vacunacion anual 66000.00 17000.00 49000.00 2025-05-22 19:30:00+00 \N 1352 1354 113 1 2jojjfkueihbhflvb569h6fv3k \N \N +1238 2025-05-20 18:30:46.739071+00 2025-05-20 18:30:46.739079+00 f t 2025-05-20 18:00:00 COMPLETED clinical Ojo lloroso ,no tiene vacunas,en el lomo se le hace bodoque de pelo 46000.00 9500.00 36500.00 2025-05-20 21:00:00+00 37330880989 1335 1342 112 1 dr7nnkrbv8g5o6a809c6p7kdfc \N \N +2943 2025-10-19 17:27:05.894456+00 2025-10-19 17:27:05.894469+00 f t 2025-11-03 18:30:00 COMPLETED clinical Desparacitasión interna y externa + Certificado de Salud 94400.00 21900.00 72500.00 2025-11-03 21:30:00+00 0000000000000 7501 6168 114 70 8pl3b160h5ns6tk4qhhenhurv0 \N 1100 +277 2024-12-02 15:42:30.697+00 2024-12-02 15:42:30.697+00 f t 2024-11-06 09:00:00 COMPLETED telemedicina Devolucion 4 radiografias 24000.00 24000.00 0.00 2024-11-06 12:00:00+00 174 183 114 1 08qh1nvf5iscphf6eslffopjsk \N \N +610 2025-02-08 22:16:05.861303+00 2025-02-08 22:16:05.86131+00 f t 2025-02-11 18:00:00 COMPLETED vaccination Refuerzo para la vacunación anual 101358585055 60750.00 15750.00 45000.00 2025-02-11 21:00:00+00 101358585055 432 512 110 70 gpf6rqlm2aahgo0rf6kato96c0 \N \N +1246 2025-05-21 13:18:37.608866+00 2025-05-21 13:18:37.608873+00 f t 2025-05-21 14:00:00 COMPLETED clinical Eutanasia 103275.00 11775.00 91500.00 2025-05-21 17:00:00+00 86VRPQ2GVQL71K8G2GLY0M 983 1079 112 88 vi1ue315o8csm0f9rk11bhevnk \N \N +1255 2025-05-21 22:34:25.000558+00 2025-05-21 22:34:25.000568+00 f t 2025-05-20 10:30:00 COMPLETED clinical Completo General s/orina 50000.00 50000.00 0.00 2025-05-20 13:30:00+00 \N 1249 1276 113 86 \N \N \N +1240 2025-05-20 18:47:51.857461+00 2025-05-20 18:47:51.857471+00 f t 2025-05-20 17:30:00 COMPLETED telemedicina Temblores en su mascota Abonarle a la vete 25000.00 25000.00 16000.00 2025-05-20 20:30:00+00 112255636802 1337 1343 112 21 f0j0onog7i923kvj7mlkauhlcg \N \N +3365 2025-11-22 19:24:54.04455+00 2025-11-22 19:24:54.04456+00 f t 2025-11-26 16:00:00 PENDING clinical Se un poco más delgada la zona de la cadera y un leve caminar extraño 46000.00 11000.00 35000.00 2025-11-26 19:00:00+00 134268727047 14175 11687 1208 88 r4pg0i03p4g2p9iu40mlqa7akk \N 1741 +1237 2025-05-20 17:41:31.624392+00 2025-05-20 17:41:31.624399+00 f t 2025-05-23 13:00:00 COMPLETED clinical Enfermedad de piel 38500.00 8500.00 30000.00 2025-05-23 16:00:00+00 JMQKYZ9QO50860G82V50P3 1330 1341 112 68 bg3ita19l393pdta10ucf38bvg \N \N +1260 2025-05-22 14:12:34.915708+00 2025-05-22 14:12:34.915719+00 f t 2025-05-23 10:00:00 COMPLETED clinical lastimadura en la pata trasera pagarle al vete $30.000 38500.00 38500.00 0.00 2025-05-23 13:00:00+00 112456532258 1430 1411 112 1 b0jalcoikuh85fbcehu0l8dpt0 \N \N +1241 2025-05-20 18:59:32.138667+00 2025-05-20 18:59:32.138674+00 f t 2025-05-20 19:30:00 COMPLETED telemedicina Seguimiento Abonarle a la vete 25000.00 25000.00 16000.00 2025-05-20 22:30:00+00 112256598654 837 942 112 21 7l34q4p3fdg79rorqbfjjmqhk4 \N \N +1247 2025-05-21 13:48:52.397576+00 2025-05-21 13:48:52.397588+00 f t 2025-05-21 19:30:00 COMPLETED clinical Problemas para caminar 46000.00 9500.00 36500.00 2025-05-21 22:30:00+00 111877617587 1371 1366 112 91 l8e58jk8ic7n5pbcml4egvkq2g \N \N +1932 2025-07-30 14:45:14.091427+00 2025-07-30 14:45:14.091434+00 f t 2025-07-31 10:30:00 COMPLETED clinical Retiro y laboratorio 0.00 0.00 0.00 2025-07-31 13:30:00+00 \N 167 176 1026 100 jfk56pjtudfvkdntgsfidofs0k \N \N +1245 2025-05-21 12:38:43.546782+00 2025-05-21 12:38:43.54679+00 f t 2025-05-21 10:30:00 COMPLETED clinical está con el ano rojo e irritado, a causa de diarrea. No para de lamerse 46000.00 9500.00 36500.00 2025-05-21 13:30:00+00 112331621530 432 559 112 1 qdb2bt07eefj9ndeupusosdkbg \N \N +1256 2025-05-21 22:36:21.327556+00 2025-05-21 22:36:21.327567+00 f t 2025-05-21 19:00:00 COMPLETED clinical Vacunación anual 66000.00 17000.00 49000.00 2025-05-21 22:00:00+00 \N 1239 1266 113 88 shs5egsnjg8gvomntqpqmb8fio \N \N +139 2024-10-30 14:13:09.514+00 2024-10-30 14:13:09.514+00 f t 2024-09-24 11:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Chequeo + vacunación anual + certificado de salud. Transaccion 88074616069 Cliente solicita Chequeo general + vacunación anual + certificado de salud 68000.00 26000.00 42000.00 2024-09-24 14:00:00+00 126 131 \N 1 \N \N \N +1253 2025-05-21 20:51:40.606518+00 2025-05-21 20:51:40.606526+00 f t 2025-05-21 15:00:00 NO_REPORT clinical 32100.00 32100.00 0.00 2025-05-21 18:00:00+00 111906194147 983 1079 112 95 63mp8goldn2agpp3vgbr2cmcmo \N \N +1249 2025-05-21 16:26:46.594863+00 2025-05-21 16:26:46.594871+00 f t 2025-05-23 13:30:00 COMPLETED clinical Tiene una pelotita en la pata derecha y no sabemos el porqué le ha salido. 38500.00 8500.00 30000.00 2025-05-23 16:30:00+00 27957928159 1372 1367 112 91 q9qk92omhsj23vtrtdb6fljdmc \N \N +1257 2025-05-21 22:44:01.881256+00 2025-05-21 22:44:01.881272+00 f t 2025-05-22 08:00:00 NO_REPORT clinical Extraccion Abonarle a antonela por el incoveniente con la muestra 0.00 0.00 20000.00 2025-05-22 11:00:00+00 \N 734 858 113 85 e7b14le2id7e6gm5i9p63sg9o4 \N \N +1329 2025-05-30 17:26:46.186737+00 2025-05-30 17:26:46.186746+00 t t 2025-05-31 19:00:00 PENDING clinical 0.00 0.00 0.00 2025-05-31 22:00:00+00 113330502392 1864 1755 1026 70 n0v1ohp7ogrhqk2qgopgbja354 \N \N +1233 2025-05-20 16:12:35.989278+00 2025-05-20 16:12:35.989285+00 f t 2025-05-21 09:30:00 COMPLETED clinical EXTRACCIÓN DE SANGRE 46200.00 10700.00 35500.00 2025-05-21 12:30:00+00 111776655407 1325 1337 112 1 7rplfp4r8feistppk64oldl010 \N \N +1908 2025-07-28 18:25:06.338731+00 2025-07-28 18:25:06.338741+00 f t 2025-08-02 14:00:00 COMPLETED clinical Se detalla en el turno de Estrellita 0.00 0.00 0.00 2025-08-02 17:00:00+00 \N 5428 4453 1026 80 v3qofd31i1ptp0d5uu4jkvnl08 \N \N +1284 2025-05-26 17:05:24.359004+00 2025-05-26 17:05:24.359017+00 f t 2025-05-26 17:30:00 COMPLETED clinical Eutanasia 101000.00 21000.00 80000.00 2025-05-26 20:30:00+00 112417235621 1646 1583 111 1 2gnq8tm22o5h1mohakr90oefj8 \N \N +2337 2025-09-01 22:06:57.800828+00 2025-09-01 22:06:57.800836+00 f t 2025-09-10 11:30:00 NO_REPORT clinical fluidoterapia 0.00 0.00 0.00 2025-09-10 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 slbl576taauav2l1kkvvpg9f24 \N \N +1280 2025-05-25 20:49:27.59012+00 2025-05-25 20:49:27.59013+00 t t 2025-05-25 17:30:00 IN_PROGRESS clinical Ecografía abdominal 62000.00 12000.00 50000.00 2025-05-25 20:30:00+00 112782252312 1606 1549 114 90 \N \N \N +1264 2025-05-22 16:11:35.320341+00 2025-05-22 16:11:35.320348+00 f t 2025-05-24 19:00:00 COMPLETED vaccination 0.00 0.00 0.00 2025-05-24 22:00:00+00 R7ZG0QNDJYJW5O5DNEXYPO 1448 1427 112 92 jl9bc4kqjnuup77jtg2fglsqp8 \N \N +1273 2025-05-23 19:17:20.652087+00 2025-05-23 19:17:20.652095+00 f t 2025-05-25 14:00:00 NO_REPORT vaccination vacunación anual 66000.00 17000.00 49000.00 2025-05-25 17:00:00+00 e1e20f48-1fcf-4764-b8f0-c0bb5a 1502 1481 114 70 f3e8b57kla207bo20db0jscvcs \N \N +1268 2025-05-22 19:25:03.518832+00 2025-05-22 19:25:03.518843+00 f t 2025-05-22 19:00:00 COMPLETED telemedicina perro con oreja lastimada luego de una pelea, solicita teleconsulta para saber como cuidar la herida y antibioticos Abonarle al vete 25000.00 25000.00 16000.00 2025-05-22 22:00:00+00 Z6OLMDN3XLX5GOR59E7RQ5 1461 1438 112 94 cgog7m48b47iv5qjqhi29bakp4 \N \N +1210 2025-05-18 21:51:43.009483+00 2025-05-18 21:51:43.00949+00 f t 2025-05-18 19:00:00 COMPLETED clinical picazón y leve sangrado en el ano después de defecar 46000.00 9500.00 36500.00 2025-05-18 22:00:00+00 11580803973 1251 1278 114 92 hqrsueetcljf9gr1mfvhs2dh7g \N \N +1498 2025-06-18 01:17:40.573674+00 2025-06-18 01:17:40.573682+00 f t 2025-06-23 19:00:00 COMPLETED vaccination Vacunacion anual Se le informó a la vete que era un gato, no un perro, entonces llevó otras vacunas. \r\nAcordaron entre ellos el cambio de hs 72000.00 19000.00 53000.00 2025-06-23 22:00:00+00 \N 2892 2547 113 92 a52agav5fv4ia4p73n0igpju10 808 \N +2345 2025-09-01 23:46:31.520959+00 2025-09-01 23:46:31.520967+00 f t 2025-09-01 18:30:00 NO_REPORT clinical Extracción Rapela 90500.00 70500.00 20000.00 2025-09-01 21:30:00+00 70222849011250901 7766 6397 114 106 9kr9fd10hvg9mfe08v2obuo038 168 \N +1271 2025-05-23 14:27:43.680981+00 2025-05-23 14:27:43.680988+00 f t 2025-05-23 18:30:00 NO_REPORT clinical Pérdida de un colmillo 46000.00 9500.00 36500.00 2025-05-23 21:30:00+00 112574824030 1487 1463 112 70 7s38vi7ih62ktr32ateh74o0lo \N \N +1272 2025-05-23 16:31:28.303847+00 2025-05-23 16:31:28.303857+00 f t 2025-05-23 17:00:00 COMPLETED clinical desde el martes a la tarde está vomitando, el martes vomitó 2 veces alimento, ayer vomitó 3 liquido una de ellas despidió un carozo de durazno, a la madrugada liquido, hoy un liquido y recién parecía la bilis. En todo el día de hoy no quiso comer pero si toma agua, esta decaída 46000.00 9500.00 36500.00 2025-05-23 20:00:00+00 112590167282 1471 1448 111 1 nj6l4b2c4bnso54q9o2bcv5r34 \N \N +1270 2025-05-23 00:05:59.773736+00 2025-05-23 00:05:59.773746+00 f t 2025-05-23 16:00:00 COMPLETED clinical Resolución del caso 38500.00 8500.00 30000.00 2025-05-23 19:00:00+00 \N 1249 1276 113 1 61niu6fbgr36an83ab69kb4pf0 \N \N +1288 2025-05-26 23:34:54.003703+00 2025-05-26 23:34:54.003714+00 f t 2025-05-27 15:30:00 COMPLETED clinical Refuerzo con quintuple 59500.00 15500.00 44000.00 2025-05-27 18:30:00+00 \N 812 923 113 89 8rm2a63o0o9ooq08juodpkuuvc \N \N +1262 2025-05-22 16:10:03.404403+00 2025-05-22 16:10:03.404416+00 f t 2025-05-24 19:00:00 COMPLETED vaccination 178200.00 31200.00 147000.00 2025-05-24 22:00:00+00 R7ZG0QNDJYJW5O5DNEXYPO 1448 1428 112 92 piqirit66s3ufvha392cueen4c \N \N +1287 2025-05-26 23:32:24.350722+00 2025-05-26 23:32:24.350729+00 f t 2025-05-28 21:30:00 NO_REPORT clinical Consulta cardiologica 95000.00 10000.00 85000.00 2025-05-29 00:30:00+00 1129035400520 1487 1463 113 82 cu08ef3imv9g2es5h7540mbpu0 \N \N +2212 2025-08-23 16:27:18.370934+00 2025-08-23 16:27:18.370942+00 f t 2025-08-26 14:30:00 NO_REPORT clinical eco abd por obstruccion 78000.00 13000.00 65000.00 2025-08-26 17:30:00+00 123416665498 7131 5835 1208 90 et4isn27kc8l2hoi8ircvidq1c 235 \N +1269 2025-05-22 20:55:33.81484+00 2025-05-22 20:55:33.814848+00 f t 2025-05-26 18:30:00 COMPLETED clinical Se rasca mucho , tipo alergia, 38500.00 8500.00 30000.00 2025-05-26 21:30:00+00 112035524129 1464 1441 112 1 ie74i6dgdtahoqr44khq1943rk \N \N +1290 2025-05-27 13:09:09.791564+00 2025-05-27 13:09:09.791573+00 f t 2025-06-07 11:00:00 COMPLETED vaccination se encontrará en: Larrea 1465 departamento\r\nsextuple 59500.00 15500.00 44000.00 2025-06-07 14:00:00+00 112934388206 826 932 112 88 kso5euek5aiukbv8r6q1ui633c 912 \N +1278 2025-05-25 20:37:45.282924+00 2025-05-25 20:37:45.282931+00 f t 2025-06-07 11:00:00 COMPLETED clinical Vacunación de Triple Felina 59500.00 15500.00 44000.00 2025-06-07 14:00:00+00 112724814298 753 878 114 80 bo4mh9jpsbaok08lo669lhnuh4 913 \N +1263 2025-05-22 16:10:52.466089+00 2025-05-22 16:10:52.466096+00 f t 2025-05-24 19:00:00 COMPLETED vaccination 0.00 0.00 0.00 2025-05-24 22:00:00+00 R7ZG0QNDJYJW5O5DNEXYPO 1448 1429 112 92 n28erha7urab699sdnvhnn0jgs \N \N +1265 2025-05-22 16:58:39.783967+00 2025-05-22 16:58:39.783974+00 f t 2025-05-24 08:30:00 COMPLETED vaccination Vacunación anual 178200.00 31200.00 147000.00 2025-05-24 11:30:00+00 112473043366 1452 1430 112 91 hnci047cd4kek0dllq6r6duiq4 \N \N +1032 2025-04-22 12:12:47.503586+00 2025-04-22 12:12:47.503598+00 f t 2025-04-22 18:30:00 COMPLETED clinical 38500.00 8500.00 30000.00 2025-04-22 21:30:00+00 108670310377 710 827 118 88 mp7db1omf08n6gn84kd7lpcl7c \N \N +7 2024-01-25 11:00:00+00 2024-01-25 11:00:00+00 f t 2024-01-25 11:00:00 NO_REPORT Clinica Clínica Transaccion Cliente pago 100% x web, se le abona al veterinario a fin de mes 24000.00 0.00 0.00 2024-01-25 14:00:00+00 7 7 114 8 \N \N \N +1286 2025-05-26 23:28:12.593583+00 2025-05-26 23:28:12.593592+00 f t 2025-05-26 18:00:00 COMPLETED telemedicina dolor de patas traseras, decaímiento 25000.00 25000.00 16000.00 2025-05-26 21:00:00+00 \N 1643 1580 113 93 dhbfhth0jfoasi93gdjgbq66i0 \N \N +1045 2025-04-24 13:36:29.415602+00 2025-04-24 13:36:29.415609+00 f t 2025-05-24 10:30:00 COMPLETED clinical Gata con Cancer, aplicar inyectables Hay que abonarle a la vete 0.00 0.00 0.00 2025-05-24 13:30:00+00 109276886456 160 169 112 89 vpkp6pn83j5tjbt7p01kmmarfg \N \N +1277 2025-05-25 16:08:12.838218+00 2025-05-25 16:08:12.838225+00 f t 2025-05-25 15:00:00 COMPLETED clinical Mucho Vomito 46000.00 9500.00 36500.00 2025-05-25 18:00:00+00 112317182205 1586 1534 114 91 obep3sf5q3665ed8mtk290rrq4 \N \N +1285 2025-05-26 22:53:44.379095+00 2025-05-26 22:53:44.379102+00 f t 2025-05-26 20:00:00 COMPLETED telemedicina Perdida del pelo 45000.00 45000.00 35000.00 2025-05-26 23:00:00+00 \N 1661 1592 113 75 8815udtaqteh41cdaae60949uo \N \N +2826 2025-10-08 20:50:04.720075+00 2025-10-08 20:50:04.72009+00 f t 2025-10-10 19:00:00 COMPLETED clinical Ecografia abdominal. 68000.00 13000.00 55000.00 2025-10-10 22:00:00+00 1LMP68NKJED3KV7D2R70EV 10297 8549 1583 90 j4sj0hb407mqg4cbst5gb0qkk0 \N 928 +1282 2025-05-25 20:57:26.192883+00 2025-05-25 20:57:26.192891+00 f t 2025-05-25 16:00:00 COMPLETED clinical Decaimiento, no come 46000.00 9500.00 36500.00 2025-05-25 19:00:00+00 112327894779 1607 1550 114 91 rtesab3sniui3qft8u6g9r66bc \N \N +1343 2025-06-02 13:10:46.127123+00 2025-06-02 13:10:46.127132+00 f t 2025-06-02 14:30:00 COMPLETED clinical 0.00 0.00 0.00 2025-06-02 17:30:00+00 113146620053 1009 1325 1026 91 13r570bifo4dnql94m6cej59ho \N \N +1274 2025-05-24 21:03:32.895773+00 2025-05-24 21:03:32.895782+00 f t 2025-05-28 11:00:00 COMPLETED clinical Chequeo 38500.00 8500.00 30000.00 2025-05-28 14:00:00+00 112699073572 340 403 113 68 nd824f9p16go1bkbe43hvhe3h0 \N \N +1295 2025-05-27 19:26:58.858507+00 2025-05-27 19:26:58.858514+00 f t 2025-05-30 19:00:00 NO_REPORT clinical Consulta por dolor y malestar general 38500.00 8500.00 30000.00 2025-05-30 22:00:00+00 \N 1707 1629 113 70 ri4vo2qkan0tco7kblodc3r08g \N \N +1323 2025-05-29 18:18:07.381649+00 2025-05-29 18:18:07.381658+00 f t 2025-05-29 20:30:00 COMPLETED clinical Eutanasia 180750.00 40250.00 140400.00 2025-05-29 23:30:00+00 113220496052 1802 1712 1026 94 g9vmq5tiua0m2ghnmb3bht16pk \N \N +2118 2025-08-15 23:29:31.574531+00 2025-08-15 23:29:31.574539+00 f t 2025-08-16 11:30:00 COMPLETED clinical Falta de incentivo para alimentarse 50000.00 10000.00 40000.00 2025-08-16 14:30:00+00 121961857411 6614 5392 114 88 olpi70i95uedsps48ta4p6iu88 347 \N +1294 2025-05-27 17:48:09.917597+00 2025-05-27 17:48:09.917603+00 f t 2025-05-28 20:00:00 COMPLETED clinical eco abdominal 57000.00 12000.00 45000.00 2025-05-28 23:00:00+00 112528237017 1717 1637 112 90 0sk1ubsqcv3m1ckfuovc2ubimk \N \N +1008 2025-04-18 23:50:43.319838+00 2025-04-18 23:50:43.319848+00 f t 2025-04-17 11:30:00 COMPLETED clinical Retiro de sonda y control 46000.00 9500.00 36500.00 2025-04-17 14:30:00+00 108770084224 670 795 113 1 alpe6bopgbidolga1k7vj5a798 \N \N +1275 2025-05-24 21:09:39.399704+00 2025-05-24 21:09:39.399713+00 f t 2025-06-08 12:00:00 NO_REPORT clinical Limpieza bucal 118500.00 8500.00 110000.00 2025-06-08 15:00:00+00 112243262707 1487 1463 113 70 isjb2ui58ft3km3l2u7u8e3cqo 906 \N +1317 2025-05-29 14:35:27.672862+00 2025-05-29 14:35:27.672893+00 f t 2025-06-02 11:00:00 COMPLETED clinical 0.00 0.00 0.00 2025-06-02 14:00:00+00 L18MKX9R70D1GJEE9O6WYV 1798 1709 1026 94 c3bbq3ne45jngsm17vilrhp1nk \N \N +1305 2025-05-28 12:29:11.146101+00 2025-05-28 12:29:11.146111+00 f t 2025-05-30 19:00:00 COMPLETED clinical Sarpullido en la barbilla. Revisión general de salud 38500.00 8500.00 30000.00 2025-05-30 22:00:00+00 \N 1766 1679 118 97 2joqecst84g6590qah4iboj52c \N \N +2827 2025-10-08 20:55:17.708344+00 2025-10-08 20:55:17.708356+00 f t 2025-10-08 18:30:00 COMPLETED clinical Esta hinchado en patas delanteras y cabeza. 55000.00 11000.00 44000.00 2025-10-08 21:30:00+00 129171908266 10298 8550 1583 79 7drpm75u2fjfq5jt7pmd24q09o \N 929 +1311 2025-05-29 02:17:39.769837+00 2025-05-29 02:17:39.769847+00 f t 2025-05-30 18:30:00 COMPLETED clinical Resolucion de resultados 25000.00 25000.00 16000.00 2025-05-30 21:30:00+00 112661973305 896 1006 1026 1 mpua2gdp42jj17tvl02rj5l2qo \N \N +1303 2025-05-27 23:11:53.161248+00 2025-05-27 23:11:53.161266+00 f t 2025-05-29 20:00:00 COMPLETED clinical PGB/C ORINA + TRASLADO 50000.00 50000.00 0.00 2025-05-29 23:00:00+00 0 1487 1463 113 86 \N \N \N +376 2024-12-26 15:14:02.062+00 2024-12-26 15:14:02.062+00 f t 2024-12-26 17:30:00 COMPLETED clinical Perro adulto con dificultades en la cadera, dolencias para levantarse y moverse, requiere segunda evaluación para determinar tratamiento y medicación 49600.00 1800.00 31600.00 2024-12-26 20:30:00+00 283 336 111 71 oois8bdn37kavo3racbvbpbk7g \N \N +1308 2025-05-28 21:24:43.195205+00 2025-05-28 21:24:43.195214+00 f t 2025-06-07 17:30:00 COMPLETED clinical Pochi le corresponde desparasitacion Interna- Externa - Vacunacion con sextuple 241650.00 35650.00 206000.00 2025-06-07 20:30:00+00 37415985747 1776 1689 113 94 vl1cuvf0l2un8imiobcjkscn40 907 \N +1351 2025-06-02 19:01:45.923247+00 2025-06-02 19:01:45.923255+00 f t 2025-06-03 16:00:00 COMPLETED vaccination Vacunación anual + corte de pelo 129000.00 28500.00 100500.00 2025-06-03 19:00:00+00 55045622 2028 1883 1026 91 mvbnjumjmgia3caplforonaarg 946 \N +1700 2025-07-08 17:38:14.865576+00 2025-07-08 17:38:14.865587+00 f t 2025-07-11 13:00:00 CANCELLED clinical Ecodoppler Cancela porque prefiere ir con otro profesional\r\nn° -118119345152 13000.00 15000.00 115000.00 2025-07-11 16:00:00+00 81792247 4178 3482 1026 82 fv6mb8rh29hcp7842ljpcf274g \N \N +1304 2025-05-27 23:15:18.007492+00 2025-05-27 23:15:18.007502+00 f t 2025-06-03 08:30:00 COMPLETED clinical Extraccion + toma de presion 45500.00 10500.00 35000.00 2025-06-03 11:30:00+00 37407925222 1735 1652 113 68 tfcmq8ansglsv6qvs5k0seqcu0 950 \N +1315 2025-05-29 14:34:04.274994+00 2025-05-29 14:34:04.275002+00 f t 2025-06-02 11:00:00 COMPLETED vaccination Vacunación y revisión 178200.00 31200.00 147000.00 2025-06-02 14:00:00+00 L18MKX9R70D1GJEE9O6WYV 1798 1710 1026 94 rgg4an1b1betrse94jrl68vgi8 959 \N +1316 2025-05-29 14:34:55.515215+00 2025-05-29 14:34:55.515224+00 f t 2025-06-02 11:00:00 COMPLETED vaccination 0.00 0.00 0.00 2025-06-02 14:00:00+00 L18MKX9R70D1GJEE9O6WYV 1798 1711 1026 94 kp9u4707ldbccne6ftar1kupkc \N \N +396 2025-01-07 00:00:40.108+00 2025-01-07 00:00:40.108+00 f t 2025-01-06 18:30:00 COMPLETED clinical Sinusitis 41600.00 8600.00 33000.00 2025-01-06 21:30:00+00 300 354 113 68 l76opok31mr5dhro6l3knq3frk \N \N +1321 2025-05-29 17:19:38.760096+00 2025-05-29 17:19:38.76011+00 f t 2025-05-30 12:30:00 COMPLETED clinical Extracción de sangre + vacunación anual abonarle al vete 276500.00 276500.00 130500.00 2025-05-30 15:30:00+00 113213693256 1811 1715 1026 97 lh6a5m5j22r3eso3965aunqbps \N \N +1322 2025-05-29 17:20:41.032057+00 2025-05-29 17:20:41.032067+00 f t 2025-05-30 12:30:00 COMPLETED clinical abonarle al vete 0.00 0.00 0.00 2025-05-30 15:30:00+00 113213693256 1811 1716 1026 97 ncfovagdmftavmi3v9gvku98ko \N \N +1909 2025-07-28 18:25:32.333044+00 2025-07-28 18:25:32.333051+00 f t 2025-08-02 14:00:00 COMPLETED vaccination Se detalla en el turno de Estrellita 0.00 0.00 0.00 2025-08-02 17:00:00+00 \N 5428 4454 1026 80 q6752e4kftj362fna03n4ns89g \N \N +1309 2025-05-28 21:25:24.462986+00 2025-05-28 21:25:24.462995+00 f t 2025-06-07 17:30:00 COMPLETED clinical Rita del corresponde Desparasitacion interna- externa 0.00 0.00 0.00 2025-06-07 20:30:00+00 0 1776 1688 113 94 t1ai70gikidqjnuki2rfc4uaao \N \N +1292 2025-05-27 15:00:19.446714+00 2025-05-27 15:00:19.446724+00 f t 2025-05-27 19:00:00 COMPLETED clinical Eco Abdominal 67000.00 12000.00 55000.00 2025-05-27 22:00:00+00 CA0841001798 1699 1623 112 90 f2fdjp91c8om4o5fc91vkqgkho \N \N +1299 2025-05-27 21:08:16.101935+00 2025-05-27 21:08:16.101943+00 f t 2025-05-27 19:00:00 COMPLETED clinical Paciente con la boca hinchada 46000.00 9500.00 36500.00 2025-05-27 22:00:00+00 113017051382 139 146 1026 1 cdbl478o1u1lvh79dlphd1fh1c \N \N +1319 2025-05-29 16:48:02.565221+00 2025-05-29 16:48:02.565232+00 f t 2025-05-30 20:00:00 NO_REPORT clinical Electro Abonarle al vete 190000.00 190000.00 170000.00 2025-05-30 23:00:00+00 113210531944 1811 1715 1026 82 1i2mmubli1d7tmo19jg8lfkqjs \N \N +1318 2025-05-29 16:28:10.49958+00 2025-05-29 16:28:10.499592+00 f t 2025-05-29 15:30:00 COMPLETED clinical Le cuesta orinar 46000.00 9500.00 36500.00 2025-05-29 18:30:00+00 113209617994 1807 1714 1026 91 dk2rkqr9obv0h2ugc75g30md6k \N \N +1371 2025-06-04 16:22:12.298697+00 2025-06-04 16:22:12.298705+00 f t 2025-06-06 10:30:00 COMPLETED clinical 0.00 0.00 0.00 2025-06-06 13:30:00+00 1134406060219 2157 1977 1026 79 6u5qid8ukaqn0j9ssobl2ig76k \N \N +1310 2025-05-28 21:26:05.123819+00 2025-05-28 21:26:05.123831+00 f t 2025-06-07 17:30:00 COMPLETED clinical Desparasitacion interna- Externa- Vacunacion anual 0.00 0.00 0.00 2025-06-07 20:30:00+00 0 1776 1687 113 94 t2ht9r0600bu0bvc2qio8sv0ro \N \N +1300 2025-05-27 23:03:27.711141+00 2025-05-27 23:03:27.711149+00 f t 2025-05-28 10:00:00 COMPLETED clinical Lesion amplian y graves en piel 38500.00 8500.00 30000.00 2025-05-28 13:00:00+00 37408262414 462 548 113 1 3vo6nua60hd4p71i7fcinb8qeo \N \N +3373 2025-11-24 23:00:50.837579+00 2025-11-24 23:00:50.837588+00 f t 2025-12-04 13:00:00 PENDING clinical vacunacion anual. 78000.00 21500.00 56500.00 2025-12-04 16:00:00+00 135118970068 648 764 1583 121 du5tkt2pshpascnqcptf600q4c \N 1761 +1298 2025-05-27 21:00:57.761893+00 2025-05-27 21:00:57.761901+00 f t 2025-05-28 09:30:00 NO_REPORT clinical Eco abdominal 65000.00 15000.00 50000.00 2025-05-28 12:30:00+00 113015605470 1709 1631 1026 3 mdagu0qp33vlhdm22kq1di35es \N \N +2496 2025-09-15 17:08:46.669933+00 2025-09-15 17:08:46.66994+00 t t 2025-09-18 10:00:00 PENDING clinical Ecografia abdominal 68000.00 11000.00 55000.00 2025-09-18 13:00:00+00 125730983895 1794 1705 1583 5 0cddj7fb2rejbk4ban9a4oql30 \N \N +1306 2025-05-28 12:52:30.648361+00 2025-05-28 12:52:30.648369+00 f t 2025-05-31 08:30:00 NO_REPORT clinical Radiografías 70000.00 15000.00 55000.00 2025-05-31 11:30:00+00 112314369215 1315 1327 1026 84 1i1pclp33j7h46ir8u77rp0i20 \N \N +1333 2025-05-30 22:24:19.40106+00 2025-05-30 22:24:19.401069+00 f t 2025-06-04 18:00:00 COMPLETED clinical Vacunacion anual para dos mascotas 0.00 0.00 0.00 2025-06-04 21:00:00+00 10379743008250530 1884 1771 113 92 j82rqgob3ljcdro558aj4miqac \N \N +1346 2025-06-02 15:10:50.82826+00 2025-06-02 15:10:50.82827+00 f t 2025-06-02 12:00:00 COMPLETED clinical retiro de muestras + laboratorio 80000.00 80000.00 0.00 2025-06-02 15:00:00+00 113161072599 1864 1756 1026 86 4uc47dflrcd3bvvvi19o5a0v10 957 \N +3064 2025-10-29 20:27:50.893685+00 2025-10-29 20:27:50.893694+00 f t 2025-11-07 10:00:00 COMPLETED clinical Muestra para perfil completo sin orina. 0.00 0.00 0.00 2025-11-07 13:00:00+00 0 11825 9775 1583 100 g9b0acvpfkd4niq0lg7uib038c \N 1289 +1350 2025-06-02 18:01:42.273773+00 2025-06-02 18:01:42.273781+00 f t 2025-06-03 18:30:00 COMPLETED clinical Presenta los ojos llorosos 42000.00 9500.00 32500.00 2025-06-03 21:30:00+00 7L8GYKNXW7O1Z1WP2MPRZ5 416 495 1026 97 14ij1v5m60jp9o5hv6bf37l38o 945 \N +1440 2025-06-11 00:28:05.852545+00 2025-06-11 00:28:05.852554+00 f t 2025-06-18 18:00:00 COMPLETED clinical Revisión de tratamiento Hace teleconsulta finalmente, abonó los $2500 restantes que le faltaban para completarla.\r\nHay que abonarle al vete 42000.00 27500.00 32500.00 2025-06-18 21:00:00+00 115041321521 2385 2152 114 70 l017mv1hkl9o75qkopngtg3rg0 832 \N +1324 2025-05-30 12:50:47.821564+00 2025-05-30 12:50:47.821572+00 f t 2025-05-31 10:00:00 COMPLETED vaccination Vacunación anual 118800.00 20800.00 98000.00 2025-05-31 13:00:00+00 112755885313 1828 1728 1026 91 9emqs5l5uhhvfnqrsatcet2c1k \N \N +1927 2025-07-29 23:05:36.460907+00 2025-07-29 23:05:36.460917+00 f t 2025-08-02 16:30:00 COMPLETED clinical Vacunacion anual Se le hace el descuento de reecompra 129600.00 23600.00 106000.00 2025-08-02 19:30:00+00 95610013 710 827 113 92 acc2eg85mid55valj29du585nc 460 \N +1340 2025-06-01 14:52:19.379267+00 2025-06-01 14:52:19.379275+00 f t 2025-05-31 13:00:00 CANCELLED clinical Posible Infección urinaria, irritación en zona genital 46000.00 9500.00 36500.00 2025-05-31 16:00:00+00 \N 1907 1793 114 68 14ovcomjtgt6eqe3qvgi1vl2lk \N \N +1336 2025-05-31 21:43:20.197531+00 2025-05-31 21:43:20.197544+00 f t 2025-05-31 20:00:00 COMPLETED clinical vomitos continuos 46000.00 9500.00 36500.00 2025-05-31 23:00:00+00 \N 775 896 114 70 kfhb9cjm0ck9b5ich9hhq8tgc4 \N \N +1332 2025-05-30 22:23:52.294716+00 2025-05-30 22:23:52.294724+00 f t 2025-06-04 18:00:00 COMPLETED clinical Vacunacion anual para dos mascotas 132000.00 34000.00 98000.00 2025-06-04 21:00:00+00 10379743008250530 1884 1770 113 92 jv5f7opo8q2t3s3r5m4pf9rv0o 937 \N +1352 2025-06-02 20:18:06.424489+00 2025-06-02 20:18:06.424497+00 f t 2025-06-03 20:00:00 NO_REPORT clinical eco abdominal 57000.00 12000.00 45000.00 2025-06-03 23:00:00+00 374757599339 2042 1889 1026 90 8ve85455su7s5ri3j2opd6cde0 943 \N +1375 2025-06-04 18:11:31.360182+00 2025-06-04 18:11:31.360189+00 f t 2025-06-07 12:30:00 COMPLETED clinical 0.00 0.00 0.00 2025-06-07 15:30:00+00 3750324428 2164 1986 1026 80 2qot0crvdn4i1nsisr8lc1bnho \N \N +1326 2025-05-30 13:57:30.613015+00 2025-05-30 13:57:30.613027+00 f t 2025-06-03 14:00:00 COMPLETED vaccination Vacunación anual 66000.00 17000.00 49000.00 2025-06-03 17:00:00+00 113305121878 1854 1748 1026 91 hlgfi5pp439efiu7ikq9r0s24o 948 \N +1348 2025-06-02 16:18:02.12758+00 2025-06-02 16:18:02.12759+00 f t 2025-06-04 18:00:00 COMPLETED clinical Limpieza de orejas y revisión de las mismas 37800.00 5300.00 32500.00 2025-06-04 21:00:00+00 113169338251 745 869 1026 91 djrc46mf5ae9vp8gqtioo2ik2g 936 \N +1342 2025-06-02 13:10:04.257971+00 2025-06-02 13:10:04.257985+00 f t 2025-06-02 14:30:00 COMPLETED vaccination Vacunación anual 129600.00 23600.00 106000.00 2025-06-02 17:30:00+00 113146620053 1009 1118 1026 91 s8smorridr04qjqm7op0af0ids 955 \N +1337 2025-05-31 21:47:48.054791+00 2025-05-31 21:47:48.054798+00 f t 2025-06-01 10:00:00 COMPLETED clinical Dificulta para orinar y orina con sangre 46000.00 9500.00 36500.00 2025-06-01 13:00:00+00 112985248529 1940 1815 114 1 6g4lv9sm7sftet90olu2ueqtms 961 \N +1449 2025-06-11 19:24:02.115916+00 2025-06-11 19:24:02.115924+00 f t 2025-06-12 18:00:00 COMPLETED clinical Vacunación anual 129600.00 23600.00 106000.00 2025-06-12 21:00:00+00 114285215633 2569 2298 1026 92 koigjqfvm3c4vf0570p1d911rg 871 \N +1312 2025-05-29 13:09:33.758943+00 2025-05-29 13:09:33.758954+00 f t 2025-05-29 14:30:00 COMPLETED telemedicina Manchita en la nariz Abonarle a la vete 25000.00 25000.00 16000.00 2025-05-29 17:30:00+00 112683601321 1682 1605 1026 21 dkd99kid87p8lfdmc548dj6nso \N \N +1347 2025-06-02 15:54:25.586969+00 2025-06-02 15:54:25.586976+00 f t 2025-06-03 15:00:00 COMPLETED clinical repetir la medicación inyectable 37800.00 5300.00 32500.00 2025-06-03 18:00:00+00 113163485339 1807 1714 1026 91 stnhts1t927bbebolb42mo97v0 947 \N +1330 2025-05-30 22:15:40.478336+00 2025-05-30 22:15:40.478343+00 f t 2025-06-02 18:30:00 NO_REPORT clinical ECG y Eco 95000.00 10000.00 85000.00 2025-06-02 21:30:00+00 113354448252 734 858 113 82 hd9q9acqek1lda9f6jp9lcfvv4 954 \N +1349 2025-06-02 16:23:04.34059+00 2025-06-02 16:23:04.3406+00 f t 2025-06-02 13:30:00 COMPLETED telemedicina Seguimiento de Dinart Abonarle a la vete $17.500 27500.00 27500.00 0.00 2025-06-02 16:30:00+00 113170422607 1605 1548 1026 94 uhs0cg6dvqi980fkdo8n7mfsqc 956 \N +1069 2025-04-26 21:29:44.773697+00 2025-04-26 21:29:44.773706+00 f t 2025-05-01 19:00:00 NO_REPORT clinical Gato con tos 38500.00 8500.00 30000.00 2025-05-01 22:00:00+00 \N 745 869 113 70 g4qh0n44faqlm0cnq1cru5t6pc \N \N +1327 2025-05-30 17:06:06.785485+00 2025-05-30 17:06:06.785494+00 f t 2025-05-31 19:00:00 NO_REPORT clinical 102000.00 12000.00 90000.00 2025-05-31 22:00:00+00 112858869877 1863 1754 1026 90 20esfdg6hhgjp9r8oeu54j432s \N \N +1328 2025-05-30 17:26:14.030231+00 2025-05-30 17:26:14.03024+00 f t 2025-05-31 19:00:00 COMPLETED clinical Perdida de pelo 82800.00 9800.00 73000.00 2025-05-31 22:00:00+00 113330502392 1864 1756 1026 70 2hn7nukv4ac6juo6pkp3uevfd0 \N \N +1339 2025-05-31 22:04:54.013006+00 2025-05-31 22:04:54.013013+00 f t 2025-05-31 21:00:00 COMPLETED clinical Rengueo en la pata 46000.00 9500.00 36500.00 2025-06-01 00:00:00+00 113002700655 1937 1812 114 70 s97aa8vlhv6nelgmhtigsb28jo \N \N +1891 2025-07-26 18:10:42.693609+00 2025-07-26 18:10:42.693616+00 f t 2025-07-27 12:30:00 COMPLETED clinical bulto en la zona del pecho 50000.00 10000.00 40000.00 2025-07-27 15:30:00+00 119463902281 313 372 1208 80 c6ng72ajrf2978vekrltool8p4 523 \N +1969 2025-08-02 16:24:04.492382+00 2025-08-02 16:24:04.492391+00 f t 2025-08-04 20:00:00 NO_REPORT clinical otitis crónica, molestia y muy mal olor 42000.00 9500.00 32500.00 2025-08-04 23:00:00+00 120244977243 5765 4717 1208 70 p8tat8fmdnc31mghntj0kq525s 439 \N +1701 2025-07-08 17:41:25.0319+00 2025-07-08 17:41:25.031907+00 f t 2025-07-14 11:00:00 COMPLETED clinical Vacunación antirábica 49500.00 11500.00 38000.00 2025-07-14 14:00:00+00 117869573722 3343 2869 1026 92 iggrtno0io2ai8mpib33im2hck 639 \N +1923 2025-07-29 20:56:18.360692+00 2025-07-29 20:56:18.360703+00 f t 2025-09-06 09:00:00 CANCELLED clinical extraccion para precx Se realiza devolicion 126700.00 88700.00 38000.00 2025-09-06 12:00:00+00 \N 5513 4511 1208 91 eun5gdnetv3sr9dnihv8k915n8 \N \N +1331 2025-05-30 22:20:10.243748+00 2025-05-30 22:20:10.243757+00 f t 2025-05-30 20:00:00 NO_REPORT clinical Valoracion sobre el estado de salud, y evaluar un posible laboratorio. 46000.00 9500.00 36500.00 2025-05-30 23:00:00+00 112854968493 1883 1769 113 70 ijvgl8mcqo1jkc0pcr4mp95dfk \N \N +2347 2025-09-01 23:58:47.628963+00 2025-09-01 23:58:47.628972+00 f t 2025-09-01 16:00:00 NO_REPORT clinical Ecografía Abdominal Nos paso $15.000 porque la atendimos bien, según ella 80000.00 15000.00 65000.00 2025-09-01 19:00:00+00 124482423590 7770 6400 114 90 7psjrijdun0emkl71p0tjt8efo 173 \N +1709 2025-07-09 21:58:42.21257+00 2025-07-09 21:58:42.212577+00 f t 2025-07-11 13:00:00 COMPLETED clinical Vacunación de la Antirrábica + corte de Garras 57200.00 13700.00 43500.00 2025-07-11 16:00:00+00 \N 4258 3553 114 80 lsvsi271ubaprppkmauon3kea0 661 \N +1302 2025-05-27 23:10:23.918269+00 2025-05-27 23:10:23.918277+00 f t 2025-05-29 18:00:00 NO_REPORT clinical Extracción 27000.00 7000.00 20000.00 2025-05-29 21:00:00+00 \N 1487 1463 113 66 036j805507dp5456nol043rorc \N \N +1338 2025-05-31 21:52:00.253326+00 2025-05-31 21:52:00.253333+00 f t 2025-06-16 12:30:00 COMPLETED vaccination Vacunación triple felina (refuerzo) + antirrábica 66000.00 17000.00 49000.00 2025-06-16 15:30:00+00 1507629633 1941 1816 114 1 46g9pdaqpgnci0ijao546dshak 851 \N +1366 2025-06-04 00:17:21.183928+00 2025-06-04 00:17:21.183934+00 f t 2025-06-06 18:00:00 COMPLETED clinical Lunares con sangre 42000.00 9500.00 32500.00 2025-06-06 21:00:00+00 37492265998 2113 1940 114 1 s2sa3gqbin41efknm74207qurk 918 \N +1887 2025-07-26 14:40:29.61143+00 2025-07-26 14:40:29.61144+00 f t 2025-07-26 13:30:00 COMPLETED clinical Desde ayer la perra está con vomito y diarrea sin ánimo de comer Casa rejas negras-no funciona el timbre 50000.00 10000.00 40000.00 2025-07-26 16:30:00+00 93777351 5278 4341 1208 21 dbqf99kn7b9p5ic8krrqf3ndc8 530 \N +1367 2025-06-04 14:04:33.208459+00 2025-06-04 14:04:33.208472+00 f t 2025-06-04 16:00:00 COMPLETED clinical Gato estresado por mudanza, se le cayó un poquito de piel 50000.00 10000.00 40000.00 2025-06-04 19:00:00+00 113862250604 2144 1967 1026 91 fsodf3dven5tb6afom2uht70p4 938 \N +1450 2025-06-11 19:24:46.842238+00 2025-06-11 19:24:46.842247+00 f t 2025-06-12 18:00:00 COMPLETED clinical 0.00 0.00 0.00 2025-06-12 21:00:00+00 114285215633 2569 2297 1026 92 elg159gn8rk3fr8hfigdr5b6e4 \N \N +1384 2025-06-05 19:06:32.82854+00 2025-06-05 19:06:32.82855+00 f t 2025-06-05 17:30:00 NO_REPORT clinical Aplicación de inyectable 23000.00 5500.00 17500.00 2025-06-05 20:30:00+00 114030389492 2224 2035 1026 85 hs6rbpe1hknbc7fhrbkqggs0ik 928 \N +1372 2025-06-04 16:31:23.998529+00 2025-06-04 16:31:23.998536+00 f t 2025-06-05 16:00:00 NO_REPORT clinical Consulta cardiológica 130000.00 10000.00 120000.00 2025-06-05 19:00:00+00 113407674717 2159 1979 1026 82 0ua8kt906i3hj31s126t5lpvp8 929 \N +1374 2025-06-04 18:10:52.516568+00 2025-06-04 18:10:52.516578+00 f t 2025-06-07 12:30:00 COMPLETED clinical Vacunación anual 129600.00 23600.00 106000.00 2025-06-07 15:30:00+00 3750324428 2164 1985 1026 80 kevgughdfbvi7t32pl3piqvtho 911 \N +1394 2025-06-06 16:09:51.58819+00 2025-06-06 16:09:51.588197+00 f t 2025-06-11 08:00:00 CANCELLED clinical 0.00 0.00 0.00 2025-06-11 11:00:00+00 \N 2224 2035 1026 85 s2f92db5prnfj10bv7qce4fmk8 \N \N +1710 2025-07-09 22:02:10.789957+00 2025-07-09 22:02:10.789963+00 f t 2025-07-09 19:30:00 NO_REPORT clinical Ecografía abdominal La atiende en su consultorio 85000.00 12000.00 73000.00 2025-07-09 22:30:00+00 117987374532 4241 3537 114 90 1017vruc5s9mb6vm8kitb1s5sk 674 \N +1383 2025-06-05 16:05:34.071063+00 2025-06-05 16:05:34.071072+00 f t 2025-06-07 13:00:00 COMPLETED vaccination 0.00 0.00 0.00 2025-06-07 16:00:00+00 56687618 2217 2028 1026 88 qa6l3tvu3mcjhdv3g41fs8gom4 \N \N +1381 2025-06-05 15:21:47.585686+00 2025-06-05 15:21:47.585697+00 f t 2025-06-05 15:00:00 COMPLETED telemedicina Consulta dermatológica Abonarle a la vete 45000.00 45000.00 35000.00 2025-06-05 18:00:00+00 11400529770 2215 2025 1026 75 brv6pq4k15mebds0qg8392ejh4 932 \N +1373 2025-06-04 17:27:20.830665+00 2025-06-04 17:27:20.830688+00 f t 2025-06-06 14:30:00 COMPLETED clinical Radiología 75000.00 15000.00 60000.00 2025-06-06 17:30:00+00 113414884509 536 632 1026 84 veuee31ia6bagk0ed5e4ub5aio 921 \N +1376 2025-06-04 18:34:16.24358+00 2025-06-04 18:34:16.243587+00 f t 2025-06-05 15:00:00 COMPLETED clinical Pequeña herida en el cuello, se rasca y vuelve a aparecer 42000.00 9500.00 32500.00 2025-06-05 18:00:00+00 113402782245 2166 1988 1026 79 h08d2988jrdbkko6o18gr3101s 931 \N +2081 2025-08-13 18:24:06.1771+00 2025-08-13 18:24:06.177116+00 f t 2025-08-22 20:00:00 COMPLETED clinical Chequeos generales Transfirio 10.600 para la seña, pero decidio que al final fuera solo un chequeo) 42000.00 9500.00 32500.00 2025-08-22 23:00:00+00 121613211619 6437 5239 114 70 0b314ddts5gl64ahlmo97ceqds 277 \N +1368 2025-06-04 14:48:38.576848+00 2025-06-04 14:48:38.576858+00 f t 2025-06-05 19:00:00 COMPLETED clinical Le cuesta orinar, corte de garras 42000.00 9500.00 40200.00 2025-06-05 22:00:00+00 52508230 2126 1951 1026 97 2hckidhbbq2g1orlku8m31nadk 925 \N +1358 2025-06-03 12:53:49.552348+00 2025-06-03 12:53:49.552355+00 f t 2025-06-05 14:00:00 COMPLETED vaccination Vacunación Sigue el pack de vacunación vendido 0.00 0.00 0.00 2025-06-05 17:00:00+00 \N 667 788 1026 80 jb77kdve3qqo61519bhp6s463k \N \N +1356 2025-06-03 00:33:25.990435+00 2025-06-03 00:33:25.990445+00 f t 2025-06-02 21:00:00 NO_REPORT clinical Ecografía abdominal 67000.00 12000.00 55000.00 2025-06-03 00:00:00+00 113207739647 2057 1899 114 90 o7bkh1uu48617ufnpbafk6gius 951 \N +2747 2025-10-03 14:19:40.702345+00 2025-10-03 14:19:40.702355+00 f t 2025-10-08 17:00:00 COMPLETED clinical Extraccion de sangre para hemograma completo 98400.00 57900.00 40500.00 2025-10-08 20:00:00+00 TID11C83C8586 9899 8181 1583 79 bvi3af34pam4cqsmf1unltuhsk \N 812 +967 2025-04-10 15:48:59.675876+00 2025-04-10 15:48:59.675884+00 f t 2025-04-14 08:00:00 COMPLETED vaccination vacunacion anual 66000.00 17000.00 49000.00 2025-04-14 11:00:00+00 107969878366 654 771 111 91 9i1dde7f21jnifqshva9uafo98 \N \N +1365 2025-06-04 00:12:23.206943+00 2025-06-04 00:12:23.20695+00 f t 2025-06-04 12:00:00 COMPLETED clinical Vómito con sangre y gusanos 42000.00 9500.00 32500.00 2025-06-04 15:00:00+00 70476997009250603 2106 1934 114 94 57g58kdu81mp9aps2acj9qaspc 940 \N +1379 2025-06-05 14:26:12.687162+00 2025-06-05 14:26:12.687173+00 f t 2025-06-06 12:30:00 COMPLETED vaccination Vacunación anual 129600.00 23600.00 106000.00 2025-06-06 15:30:00+00 70067949026250605 2211 2020 1026 79 ebf91l5tqeppoocijcrr781bkk 923 \N +1369 2025-06-04 14:53:23.167687+00 2025-06-04 14:53:23.167695+00 f t 2025-06-07 10:30:00 COMPLETED clinical Eco abdominal 45000.00 0.00 45000.00 2025-06-07 13:30:00+00 \N 266 335 1026 5 ucnq72nksdejbhvbb8910roo7g \N \N +1584 2025-06-27 00:21:06.163223+00 2025-06-27 00:21:06.163231+00 f t 2025-07-01 10:30:00 COMPLETED clinical Detallado de Berna 0.00 0.00 0.00 2025-07-01 13:30:00+00 0 710 2947 113 86 \N \N \N +1354 2025-06-02 20:50:43.182422+00 2025-06-02 20:50:43.182451+00 f t 2025-06-04 19:30:00 COMPLETED vaccination Continuar plan de vacunación y desparasitación interna Lo abona cata, debe transferirle a Mara 0.00 0.00 0.00 2025-06-04 22:30:00+00 \N 938 1042 118 92 8kjgrvoig92q71a2sib9angg1k \N \N +958 2025-04-07 22:50:25.895158+00 2025-04-07 22:50:25.895167+00 f t 2025-04-09 13:00:00 COMPLETED clinical vacunación anual 66000.00 17000.00 49000.00 2025-04-09 16:00:00+00 \N 648 764 113 92 a3vb1pmk0tt2trva8sijo420vk \N \N +1357 2025-06-03 00:41:29.706626+00 2025-06-03 00:41:29.706635+00 f t 2025-06-02 21:00:00 COMPLETED telemedicina Consejos sobre la alimentación Abonarle un 10% extra a la vete por el inconveniente del mes anterior 27500.00 27500.00 0.00 2025-06-03 00:00:00+00 113694467712 2058 1900 114 80 ekvn94ndh917bk9d933mgd2ofk 952 \N +1361 2025-06-03 16:58:25.16864+00 2025-06-03 16:58:25.168647+00 f t 2025-06-05 15:00:00 COMPLETED clinical Visita+ extracción+ retiro de muestras+ laboratorio Abonarle al vete 102700.00 102700.00 38000.00 2025-06-05 18:00:00+00 11375111938 2094 1924 1026 68 4dmdjqfao2j5f5ftekvlbea828 930 \N +1380 2025-06-05 14:26:53.302869+00 2025-06-05 14:26:53.30288+00 f t 2025-06-06 12:30:00 COMPLETED clinical 0.00 0.00 0.00 2025-06-06 15:30:00+00 70067949026250605 2211 2021 1026 79 v6h94nhnr046tpifdo5qos71l0 \N \N +1364 2025-06-04 00:09:28.052441+00 2025-06-04 00:09:28.052451+00 f t 2025-06-04 08:30:00 COMPLETED clinical Extraccion de sangre, pedido de laboratorio para tiroides 45500.00 10500.00 35000.00 2025-06-04 11:30:00+00 113814078180 1735 1652 114 68 13cl2teu68obc9gr36sgnrsdt8 942 \N +1355 2025-06-02 20:57:37.026114+00 2025-06-02 20:57:37.026127+00 f t 2025-06-03 19:00:00 NO_REPORT clinical Extraccion sangre Se aplica el descuento de reecompra: 27630.00 4630.00 23000.00 2025-06-03 22:00:00+00 37476524579 2042 1889 1026 85 inmfrgduqhcd4klmh8rsnk74ko 944 \N +3355 2025-11-21 16:37:19.962065+00 2025-11-21 16:37:19.962077+00 f t 2025-11-22 16:30:00 COMPLETED clinical Ecografia abdominal 78000.00 13000.00 65000.00 2025-11-22 19:30:00+00 Redlink 9712 8096 1583 90 ufu1cfmdvm7co73n69bp4eudgc \N 1715 +1362 2025-06-03 19:02:04.875848+00 2025-06-03 19:02:04.875863+00 f t 2025-06-04 15:00:00 COMPLETED clinical Radiografias 75000.00 15000.00 60000.00 2025-06-04 18:00:00+00 113780533344 1888 1775 1026 84 pc8k0u45402jk78or0gml7p9ps 939 \N +1406 2025-06-07 22:14:20.218487+00 2025-06-07 22:14:20.218495+00 f t 2025-06-07 16:00:00 COMPLETED clinical Ecografía abdominal 67000.00 12000.00 55000.00 2025-06-07 19:00:00+00 59062473 2331 2107 114 90 cq6e01pl391v6ckit779mictb8 908 \N +465 2025-01-22 17:51:02.950108+00 2025-01-22 17:51:02.950117+00 f t 2025-01-24 14:00:00 NO_REPORT clinical La gata tiene tos, ya hace como un año pero ahora está con episodios recurrentes hace como 2 días está tosiendo seguido 35000.00 7000.00 28000.00 2025-01-24 17:00:00+00 30188245008250122 354 417 114 1 sofepi7bnaisdtaiscg5bvs50o \N \N +1408 2025-06-07 22:28:50.573736+00 2025-06-07 22:28:50.573747+00 f t 2025-06-09 09:00:00 NO_REPORT clinical Extracción de sangre + traslado de los 65700 --> 46.000 son de los análisis 65700.00 65700.00 23000.00 2025-06-09 12:00:00+00 59216602 2331 2107 114 85 47aikq3pp580jgmt5ig3hnnu8s 900 \N +2614 2025-09-24 00:17:27.88445+00 2025-09-24 00:17:27.884458+00 f t 2025-09-25 17:30:00 COMPLETED clinical 46000.00 11000.00 35000.00 2025-09-25 20:30:00+00 127313995656 9219 7642 113 88 5776ujh0d3vev0ec9vvesp5a70 \N \N +1176 2025-05-14 17:28:03.578016+00 2025-05-14 17:28:03.578029+00 f t 2025-05-15 13:00:00 NO_REPORT clinical Derivación (paciente con soplo) 95000.00 10000.00 85000.00 2025-05-15 16:00:00+00 111139403129 1009 1103 112 82 2sm2vunmdurfvjade426snp2oo \N \N +1693 2025-07-08 12:51:12.081238+00 2025-07-08 12:51:12.081244+00 f t 2025-07-08 14:30:00 COMPLETED clinical Radiografìas 157000.00 30000.00 127000.00 2025-07-08 17:30:00+00 \N 4110 3426 1026 84 1i5i8b9bu51s8p5fmqhtvg4mto 689 \N +573 2025-02-03 21:12:57.627277+00 2025-02-03 21:12:57.627287+00 f t 2025-02-04 12:00:00 COMPLETED vaccination Vacunación anual y revisión por posible infección en las orejas 60750.00 15750.00 45000.00 2025-02-04 15:00:00+00 100829169109 409 488 113 78 su5t2gb125aftsieesfhjqm9i4 \N \N +1411 2025-06-08 19:18:28.125691+00 2025-06-08 19:18:28.125699+00 f t 2025-06-08 16:00:00 COMPLETED clinical Tumor mamario lastimado 62000.00 10000.00 52000.00 2025-06-08 19:00:00+00 113903349039 2365 2137 114 21 k3hll1vpg6ihvtg83oecdqt6cc 902 \N +2186 2025-08-21 18:46:55.922162+00 2025-08-21 18:46:55.92217+00 f t 2025-08-21 16:30:00 COMPLETED clinical perfil 7 + traslado 40500.00 40500.00 0.00 2025-08-21 19:30:00+00 123187239826 6869 5610 1208 100 igvg8oj4o0406hmavrrnrbriso 286 \N +1611 2025-06-30 13:46:52.061497+00 2025-06-30 13:46:52.061506+00 f t 2025-06-30 20:00:00 COMPLETED clinical Aplicación de inyectable 42000.00 9500.00 32500.00 2025-06-30 23:00:00+00 116351157427 3546 3027 1026 92 k4i4avt816art9cma3jsmmrbgo 754 \N +1391 2025-06-06 00:31:33.787111+00 2025-06-06 00:31:33.78712+00 f t 2025-06-26 14:00:00 COMPLETED vaccination Vacunación 0.00 0.00 0.00 2025-06-26 17:00:00+00 0 667 788 114 80 7mpno5m2huk145niru36ldj8eg \N \N +2116 2025-08-15 23:20:30.775405+00 2025-08-15 23:20:30.775414+00 f t 2025-08-19 19:00:00 NO_REPORT clinical Chequeo general por precedentes de leucemia Crónica 42000.00 9500.00 32500.00 2025-08-19 22:00:00+00 122486327542 6629 5404 114 74 0ehkh2rjq9ehvbvp1ssdaacmjg 315 \N +1910 2025-07-28 20:07:19.793522+00 2025-07-28 20:07:19.793528+00 f t 2025-07-29 20:00:00 COMPLETED clinical control 42000.00 9500.00 32500.00 2025-07-29 23:00:00+00 PDX40GNYIYELOVPY20LGEY 416 2200 113 97 svb287eaprs8t2be3clkbhp1sc 497 \N +1402 2025-06-07 22:00:06.899195+00 2025-06-07 22:00:06.899207+00 f t 2025-05-26 09:00:00 COMPLETED clinical Citología de PAF de formación suave, coloración rojiza en dedo de mano - informe ya entregado - 99800.00 99800.00 0.00 2025-05-26 12:00:00+00 112166605573 1372 1367 114 86 \N \N \N +1518 2025-06-19 13:22:33.688372+00 2025-06-19 13:22:33.688381+00 f t 2025-06-19 13:00:00 COMPLETED clinical Vomitó algo extraño\r\nPx con temperamento 50000.00 10000.00 40000.00 2025-06-19 16:00:00+00 115656521393 2976 2609 1026 78 66l28mr0u571nnhlp3rqni0l8k 827 \N +1393 2025-06-06 16:08:41.575903+00 2025-06-06 16:08:41.575913+00 f t 2025-06-09 16:00:00 CANCELLED clinical Pack de consultas por aplicación de inyectables 0.00 0.00 0.00 2025-06-09 19:00:00+00 113663464995 2224 2035 1026 85 jdoi1l3fbaum2r8d2b65j2a448 \N \N +1390 2025-06-06 00:28:23.830259+00 2025-06-06 00:28:23.830268+00 f t 2025-06-06 19:30:00 COMPLETED clinical vacunación antirrábica 49500.00 11500.00 38000.00 2025-06-06 22:30:00+00 114062530144 2234 2042 114 68 2fcp374i35cr0hgm9elaoba878 915 \N +1404 2025-06-07 22:06:14.729823+00 2025-06-07 22:06:14.729832+00 f t 2025-06-12 15:00:00 NO_REPORT clinical Consulta Cardiológica 95000.00 10000.00 85000.00 2025-06-12 18:00:00+00 113803445065 1888 1775 114 82 fjss7i8k7p50jk98sgdpldknok 874 \N +2371 2025-09-03 15:53:04.184132+00 2025-09-03 15:53:04.18414+00 f t 2025-09-04 18:00:00 NO_REPORT clinical Control Cardiologico 106000.00 11000.00 95000.00 2025-09-04 21:00:00+00 124723770900 7131 5835 1583 82 ql20voltnrr77n70johsh226a4 141 \N +3117 2025-11-03 18:49:10.297101+00 2025-11-03 18:49:10.297112+00 f t 2025-11-03 20:30:00 COMPLETED clinical Consulta post estudios. Se le debe 19500 a la doc 30000.00 30000.00 0.00 2025-11-03 23:30:00+00 132346508164 11745 9712 1583 68 r14295osph65362bo4p02n2tfk \N 1378 +1401 2025-06-06 21:28:32.966076+00 2025-06-06 21:28:32.966086+00 f t 2025-06-12 12:30:00 COMPLETED clinical Eco abdominal 52000.00 12000.00 45000.00 2025-06-12 15:30:00+00 \N 2157 1976 114 90 bcq1h7d6e9l8nm404nso9follc 875 \N +1409 2025-06-08 18:47:01.824098+00 2025-06-08 18:47:01.824105+00 f t 2025-06-08 14:00:00 NO_REPORT clinical Vómitos continuos 50000.00 10000.00 40000.00 2025-06-08 17:00:00+00 \N 2328 2105 114 70 rjfm0ga8kfv088ti91fooqsjuk 905 \N +2080 2025-08-13 17:51:12.364091+00 2025-08-13 17:51:12.364103+00 f t 2025-08-14 15:00:00 COMPLETED clinical vacunacion triple y atp interno y externo 122140861808 los $6.500 restantes aca 97500.00 23500.00 74000.00 2025-08-14 18:00:00+00 122140529152 6451 5252 1208 68 1kvh50mdb9p5s2p34blc1r220c 361 \N +1388 2025-06-05 19:47:18.409582+00 2025-06-05 19:47:18.40959+00 f t 2025-06-12 09:00:00 NO_REPORT clinical Extracción de sangre, retiro y estudios de laboratorio 142500.00 119500.00 23000.00 2025-06-12 12:00:00+00 114035007448 526 621 1026 85 isvtmh23am6j7ctn4qn9l8kvas 876 \N +1392 2025-06-06 16:07:07.101475+00 2025-06-06 16:07:07.101484+00 f t 2025-06-07 14:00:00 NO_REPORT clinical Aplicación de inyectable 82800.00 12800.00 70000.00 2025-06-07 17:00:00+00 113663464995 2224 2035 1026 85 706rkrannnuhr07hu6f0h10amg 909 \N +1389 2025-06-05 20:52:36.976856+00 2025-06-05 20:52:36.976863+00 f t 2025-06-09 19:00:00 COMPLETED vaccination Vacunación anual.\r\n\r\nAvisar cuando esté abajo porque no anda el timbre 72000.00 19000.00 53000.00 2025-06-09 22:00:00+00 76V4MR2ZP08E1KPE9DEZOL 2230 2039 1026 97 2icv7c6mkk94562sn0srcaprdg 896 \N +1582 2025-06-27 00:18:54.189834+00 2025-06-27 00:18:54.189843+00 f t 2025-06-30 16:00:00 COMPLETED clinical Extraccion + pedido de laboratorio Detallado en el turno de berna 0.00 0.00 0.00 2025-06-30 19:00:00+00 0 710 827 113 88 4ltils248nlfmjhhm400f51gsc \N \N +1407 2025-06-07 22:19:06.773318+00 2025-06-07 22:19:06.773325+00 f t 2025-06-09 17:00:00 COMPLETED clinical Lame compulsivamente su vulva y presenta un endurecimiento en la zona abdominal 42000.00 9500.00 32500.00 2025-06-09 20:00:00+00 114313063060 2294 2081 114 1 k3r7g4c1ngnd533o1mpp8365rs 898 \N +1398 2025-06-06 18:57:00.969045+00 2025-06-06 18:57:00.969055+00 f t 2025-06-06 20:00:00 COMPLETED telemedicina resolución de análisis 24750.00 24750.00 17500.00 2025-06-06 23:00:00+00 114167642900 1888 1775 1026 92 ps51evppmka2vusks7g2h4bdsg 914 \N +1410 2025-06-08 18:58:28.421971+00 2025-06-08 18:58:28.42198+00 f t 2025-06-08 15:00:00 NO_REPORT clinical Vomitó varias veces ayer y hoy. Es muy posible que sea por intoxicación por crisantemos 50000.00 10000.00 40000.00 2025-06-08 18:00:00+00 3edffc24-fbfd-4c91-b3ca-f44783 2375 2145 114 70 si9dcsspja5r7hpiu45hdft8o0 903 \N +1405 2025-06-07 22:08:10.888001+00 2025-06-07 22:08:10.88801+00 f t 2025-06-04 19:00:00 COMPLETED clinical Estudios de laboratorio PGc O: $41.000\r\nCitologia: $20.000\r\nTraslado 12.000 0.00 0.00 0.00 2025-06-04 22:00:00+00 0 1888 1775 114 86 mga6lif1vcodd57qjnire7qqj8 \N \N +1435 2025-06-10 15:43:08.414963+00 2025-06-10 15:43:08.414973+00 f t 2025-06-12 18:00:00 COMPLETED clinical Eco abodminal 51300.00 6300.00 45000.00 2025-06-12 21:00:00+00 XJ8G7V95EV4O36EL2EMPYR 472 560 1026 90 h76f21b2cglo0u6c801j9sffq4 872 \N +1589 2025-06-27 14:16:19.496985+00 2025-06-27 14:16:19.496993+00 f t 2025-08-10 12:00:00 CANCELLED clinical Vacunación triple felina 0.00 0.00 47500.00 2025-08-10 15:00:00+00 \N 3409 2914 1026 94 1mpq6to7m0q5aihput2qsg8eso \N \N +1446 2025-06-11 15:22:42.594136+00 2025-06-11 15:22:42.594144+00 f t 2025-06-11 17:00:00 COMPLETED clinical Vómitos abonarle al vete 50000.00 50000.00 40000.00 2025-06-11 20:00:00+00 114259435665 2553 2284 1026 1 jvf341g0ngilkere5ohv819bts 880 \N +1442 2025-06-11 00:33:00.506041+00 2025-06-11 00:33:00.506052+00 f t 2025-06-17 19:00:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-06-17 22:00:00+00 \N 873 985 114 1 f4n1g53dnm6csv70tmphheglr4 838 \N +1448 2025-06-11 16:16:03.989031+00 2025-06-11 16:16:03.989039+00 f t 2025-06-13 11:00:00 COMPLETED clinical Seguimiento de la paciente 42000.00 9500.00 32500.00 2025-06-13 14:00:00+00 70199457011250611 2106 1934 1026 94 0mm72lk4qdhk4ote5uh203v48s 867 \N +1430 2025-06-10 13:09:37.010928+00 2025-06-10 13:09:37.010938+00 f t 2025-06-10 20:00:00 COMPLETED clinical mordida de perro, se realiza limpieza, pero no hay mejoría 50000.00 10000.00 40000.00 2025-06-10 23:00:00+00 60930245 2484 2230 1026 70 8sb3a87lb3kjebis4ue3jn8uu8 887 \N +2828 2025-10-08 23:18:21.19432+00 2025-10-08 23:18:21.194328+00 f t 2025-10-08 22:00:00 COMPLETED clinical Ecografia abdominal \N 78000.00 13000.00 65000.00 2025-10-09 01:00:00+00 129188691480 10314 8564 \N 90 kfus82fk15ido9ih9t0u970tbk \N 931 +1417 2025-06-09 18:54:46.14858+00 2025-06-09 18:54:46.148589+00 f t 2025-06-10 10:30:00 COMPLETED clinical Vómitos y diarrea 37800.00 5300.00 32500.00 2025-06-10 13:30:00+00 114509104614 826 932 1026 88 s2jj6jhjug8uqsrhg40cqlo4q8 893 \N +1579 2025-06-27 00:15:14.464953+00 2025-06-27 00:15:14.464961+00 f t 2025-07-02 16:00:00 NO_REPORT clinical ECG PREQUIRURGICO 190000.00 20000.00 170000.00 2025-07-02 19:00:00+00 72718532 710 827 113 82 4mc6h0amm7ugeajn3d2k46hfto 735 \N +397 2025-01-07 00:04:58.558+00 2025-01-07 00:04:58.558+00 f t 2025-01-09 10:30:00 NO_REPORT clinical Lesion corporal 35000.00 7000.00 28000.00 2025-01-09 13:30:00+00 301 355 113 1 ipmrdsjiiqoadc08fuem20n4qc \N \N +1413 2025-06-08 19:35:12.369422+00 2025-06-08 19:35:12.369433+00 f t 2025-06-08 15:00:00 COMPLETED clinical Eutanasia 124000.00 24000.00 100000.00 2025-06-08 18:00:00+00 113901655929 2384 2151 114 68 sgb3rs6rroutfjn1efd0khnink 904 \N +1434 2025-06-10 15:15:33.516227+00 2025-06-10 15:15:33.516237+00 f t 2025-06-11 13:30:00 COMPLETED vaccination Vacunación con Triple Felina 64500.00 17000.00 47500.00 2025-06-11 16:30:00+00 114607664318 2490 2235 1026 80 r1din352frmhom9svbdum7beu4 883 \N +1429 2025-06-10 01:04:00.65214+00 2025-06-10 01:04:00.652148+00 f t 2025-06-10 09:00:00 COMPLETED telemedicina Resultados de los análisis 17500.00 0.00 17500.00 2025-06-10 12:00:00+00 0 266 335 114 94 u5acnh4mh8ruqhdleulmo7lp6s \N \N +1428 2025-06-10 00:56:55.677022+00 2025-06-10 00:56:55.677029+00 f t 2025-06-20 18:00:00 NO_REPORT clinical Fluido terapia 0.00 0.00 0.00 2025-06-20 21:00:00+00 0 2462 2210 114 85 uvs1h001b1ebtko3v60ojjvkhs \N \N +1439 2025-06-10 19:42:45.987815+00 2025-06-10 19:42:45.987826+00 f t 2025-06-10 18:00:00 COMPLETED clinical eco abdominal 67000.00 12000.00 55000.00 2025-06-10 21:00:00+00 114164080349 826 932 1026 90 qtq93hq19houqn1od6ofngdrlk 890 \N +1421 2025-06-10 00:38:17.843203+00 2025-06-10 00:38:17.843213+00 f t 2025-06-10 16:00:00 COMPLETED clinical Ecografía Abdominal 57000.00 12000.00 45000.00 2025-06-10 19:00:00+00 cc5fa77c-bbfc-476d-bafd-78e7cf 2370 2141 114 90 sb38gjqlcf72i61f0lmvuvd144 892 \N +1414 2025-06-08 19:40:12.581428+00 2025-06-08 19:40:12.581436+00 f t 2025-06-08 19:00:00 COMPLETED clinical Posible eutanasia 125000.00 25000.00 100000.00 2025-06-08 22:00:00+00 114389140222 2385 2152 114 70 vrut7kvrk8jd60ejcjpjpepiqg 901 \N +1423 2025-06-10 00:48:34.972209+00 2025-06-10 00:48:34.97224+00 f t 2025-06-10 09:00:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-06-10 12:00:00+00 114543760886 2461 2209 114 1 crt03r2fmfuai8482vq0a5dt04 894 \N +1420 2025-06-09 20:49:08.028296+00 2025-06-09 20:49:08.028303+00 f t 2025-06-10 18:30:00 NO_REPORT clinical Corte de Garras\r\nPx con temperamento 30700.00 7700.00 23000.00 2025-06-10 21:30:00+00 \N 2450 2202 1026 85 qc2jd0r6m7dmr2hj44gklbdmao 889 \N +1427 2025-06-10 00:56:31.844775+00 2025-06-10 00:56:31.844783+00 f t 2025-06-18 18:00:00 NO_REPORT clinical Fluido terapia 0.00 0.00 0.00 2025-06-18 21:00:00+00 0 2462 2210 114 85 4r3vku6ampifhev8q2l25l3t94 \N \N +1431 2025-06-10 13:47:43.550615+00 2025-06-10 13:47:43.550624+00 f t 2025-06-27 12:00:00 NO_REPORT clinical Consulta Oftalmológica 80000.00 10000.00 70000.00 2025-06-27 15:00:00+00 11417530015 2486 2231 1026 11 pjb6ogeq3788eo9dngknvrggik 778 \N +2613 2025-09-23 20:42:08.956901+00 2025-09-23 20:42:08.956909+00 f t 2025-10-01 10:00:00 NO_REPORT clinical Control Cardiologico 107000.00 12000.00 95000.00 2025-10-01 13:00:00+00 127287734174 9071 7507 1583 82 8dllc34na5l3384q5qjoklt8ms \N \N +1416 2025-06-08 20:29:29.444592+00 2025-06-08 20:29:29.444599+00 f t 2025-06-10 20:30:00 COMPLETED clinical Vacunación anual 72000.00 19000.00 53000.00 2025-06-10 23:30:00+00 114399810246 2387 2154 114 80 vr5o7n4sgdpgenbspp3cen0bng 886 \N +1424 2025-06-10 00:54:45.94437+00 2025-06-10 00:54:45.944377+00 f t 2025-06-11 18:00:00 NO_REPORT clinical fluidoterapia (solo la aplicación) En este se encuentra el total de las 5 visitas 97750.00 10250.00 87500.00 2025-06-11 21:00:00+00 114550933140 2462 2210 114 85 algukihtqn635c01senvr66nus 879 \N +1934 2025-07-30 15:25:26.866431+00 2025-07-30 15:25:26.86644+00 f t 2025-07-31 09:00:00 COMPLETED clinical Extracción 49700.00 11700.00 38000.00 2025-07-31 12:00:00+00 119864414883 5560 4556 1026 1 1u9b467ah8mpokf85f2dllanmc 488 \N +1948 2025-07-31 13:10:05.26191+00 2025-07-31 13:10:05.261923+00 f t 2025-08-03 19:00:00 COMPLETED vaccination Vacunación anual 126600.00 23600.00 106000.00 2025-08-03 22:00:00+00 3D5W612EJGKEYYPL9GXYVR 5620 4600 1026 70 8befukkim0vut8jp8iab85qpo8 451 \N +1441 2025-06-11 00:31:15.763003+00 2025-06-11 00:31:15.763011+00 f t 2025-06-11 09:00:00 NO_REPORT clinical Extracción los estudios están en las notas 107100.00 84100.00 23000.00 2025-06-11 12:00:00+00 114189487327 1888 1775 114 85 e6cts9vbq2d69gqdd0f0c8spcs 885 \N +1422 2025-06-10 00:44:12.884872+00 2025-06-10 00:44:12.884883+00 f t 2025-06-09 21:00:00 COMPLETED clinical Eco abdominal y renal 67000.00 12000.00 55000.00 2025-06-10 00:00:00+00 \N 2433 2191 114 90 97rb2b1sr2gn6074vm22pdghtg 895 \N +1928 2025-07-29 23:06:05.270207+00 2025-07-29 23:06:05.270218+00 f t 2025-08-02 16:30:00 COMPLETED clinical Vacunacion anual 0.00 0.00 0.00 2025-08-02 19:30:00+00 95610013 710 2947 113 92 ar40hdp6gv2v4g6063sg2u9a54 \N \N +1563 2025-06-25 20:48:27.590771+00 2025-06-25 20:48:27.59078+00 f t 2025-06-26 20:30:00 COMPLETED clinical Dolor en una patita abonarle a la vete 42000.00 42000.00 32500.00 2025-06-26 23:30:00+00 116352116780 3363 2883 1026 79 nmnbvf39kspeje3j2lpemapv4g 781 \N +1438 2025-06-10 18:36:03.504309+00 2025-06-10 18:36:03.504318+00 f t 2025-06-16 18:00:00 NO_REPORT clinical Consulta cardiológica 95000.00 10000.00 85000.00 2025-06-16 21:00:00+00 114630098546 1372 1367 1026 82 i740rgsh7rmkb8qe1a7jolvk2c 843 \N +1521 2025-06-19 19:43:43.799889+00 2025-06-19 19:43:43.7999+00 t t 2025-06-20 13:00:00 PENDING clinical Revision 27500.00 27500.00 17500.00 2025-06-20 16:00:00+00 \N 2792 2462 113 99 s1ant31opubdncqe5ll479tha0 \N \N +1447 2025-06-11 15:44:05.308559+00 2025-06-11 15:44:05.308566+00 f t 2025-06-11 15:30:00 COMPLETED clinical Gato con problemas respiratorios 50000.00 10000.00 40000.00 2025-06-11 18:30:00+00 114263109533 2556 2286 1026 1 o7e77ig9dcnvgt20fk3d0ooo7s 881 \N +1426 2025-06-10 00:56:01.646592+00 2025-06-10 00:56:01.6466+00 f t 2025-06-16 18:00:00 NO_REPORT clinical Fluido terapia 0.00 0.00 0.00 2025-06-16 21:00:00+00 0 2462 2210 114 85 u322mtj64u9be8fsmamhe0v77g \N \N +1425 2025-06-10 00:55:30.361523+00 2025-06-10 00:55:30.361532+00 f t 2025-06-13 18:00:00 NO_REPORT clinical Fluido terapia 0.00 0.00 0.00 2025-06-13 21:00:00+00 0 2462 2210 114 85 b5lnum4duaamnn1mrri7oea3jo \N \N +1711 2025-07-09 22:05:21.778778+00 2025-07-09 22:05:21.778785+00 f t 2025-07-10 11:00:00 NO_REPORT clinical Eutanasia 111150.00 13650.00 97500.00 2025-07-10 14:00:00+00 \N 4127 3442 114 70 mq53a0cn338aomvpq5ppohcn14 671 \N +2117 2025-08-15 23:27:29.991347+00 2025-08-15 23:27:29.991355+00 f t 2025-08-15 17:30:00 COMPLETED clinical Dolencias en el cuerpo y decaimiento 50000.00 10000.00 40000.00 2025-08-15 20:30:00+00 64133182 6630 5405 114 1 2l5366v5aiia6f5tdhc699o3r8 352 \N +1462 2025-06-12 19:39:16.416158+00 2025-06-12 19:39:16.416165+00 f t 2025-06-12 18:00:00 NO_REPORT clinical Pata trasera inflamada 50000.00 10000.00 40000.00 2025-06-12 21:00:00+00 114890205426 2615 2328 1026 2 rn5alb5c9tiuslnfvhrgkour98 870 \N +1455 2025-06-12 13:57:16.675411+00 2025-06-12 13:57:16.67542+00 f t 2025-06-14 14:00:00 COMPLETED clinical Control de la mascota, consejos de adaptación con su otra mascota, aplicación de la primera vacuna 64500.00 17000.00 47500.00 2025-06-14 17:00:00+00 114369798113 352 2317 1026 1 kftuj5ti4lrd0mvnpdhgsr6684 856 \N +1419 2025-06-09 20:37:03.790881+00 2025-06-09 20:37:03.790887+00 f t 2025-06-10 08:00:00 CANCELLED clinical Retiro de muestras Se realiza devolución.\r\nCausas: No se coordinó el cadete el mismo día de extracción, se coordinó retiro para el día siguiente y la moto mensajería se demoró, entonces la tutora buscó otro laboratorio 0.00 0.00 0.00 2025-06-10 11:00:00+00 0 2331 2107 1026 86 \N \N \N +456 2025-01-22 11:26:37.015431+00 2025-01-22 11:26:37.015439+00 f t 2025-02-13 18:00:00 NO_REPORT clinical Clinica + extraccion+ perfil prequirurgico+ traslado 88800.00 55800.00 33000.00 2025-02-13 21:00:00+00 99634251939 351 413 111 70 vt17avmcp61i1di27i93n6ia20 \N \N +457 2025-01-22 12:46:01.73796+00 2025-01-22 12:46:01.737967+00 f t 2025-01-22 12:30:00 COMPLETED vaccination Vacunación sextuple y antirrábica 60750.00 15750.00 45000.00 2025-01-22 15:30:00+00 100056503596 352 414 114 1 3r209itqpumsc4tibogeqvtgpk \N \N +1866 2025-07-24 14:48:23.04465+00 2025-07-24 14:48:23.044657+00 f t 2025-07-28 19:00:00 COMPLETED clinical Vacunación anual 129600.00 23600.00 106000.00 2025-07-28 22:00:00+00 119208137479 5168 4254 1026 97 dkkdj0psaepboak9tlen4q32fs 517 \N +1585 2025-06-27 12:42:12.614018+00 2025-06-27 12:42:12.614025+00 f t 2025-06-27 13:00:00 COMPLETED clinical Mascota con estornudos 50000.00 50000.00 40000.00 2025-06-27 16:00:00+00 116532890554 2976 2609 1026 80 6hn8c450bls9gk95s9k1ni7g5o 777 \N +1842 2025-07-21 23:14:28.307202+00 2025-07-21 23:14:28.307211+00 f t 2025-07-22 15:30:00 COMPLETED clinical Dolor en una pata, no la apoya bien 42000.00 9500.00 32500.00 2025-07-22 18:30:00+00 119408379166 409 488 113 68 9jstnnopav43bns8slkbemb3pc 568 \N +270 2024-11-28 15:08:14.923+00 2024-11-28 15:08:14.923+00 f t 2024-11-28 18:00:00 NO_REPORT vaccination Vacunación anual Transacción 94323884337 68800.00 25800.00 43000.00 2024-11-28 21:00:00+00 221 242 114 1 i1tsq3j8fatt0umku16fh8u2fg \N \N +1454 2025-06-12 13:21:59.158684+00 2025-06-12 13:21:59.158692+00 f t 2025-06-13 20:00:00 COMPLETED clinical Chequeo general 42000.00 9500.00 32500.00 2025-06-13 23:00:00+00 27-96121640-6 2586 2311 1026 70 tis2ifpi7rpp266iqpgtff6blc 861 \N +1538 2025-06-23 14:01:13.803185+00 2025-06-23 14:01:13.803196+00 f t 2025-06-24 19:00:00 COMPLETED clinical Vacunación de las pacientes + corte de garras Abonarle al vete!!\r\nEl corte de garras lo abonó aparte, el comprobante es 116086422962 135450.00 135450.00 110500.00 2025-06-24 22:00:00+00 115596744525 3206 2770 1026 97 f3tpvv1v5sd7lnd0o0niodol8c 796 \N +1760 2025-07-14 19:43:40.241508+00 2025-07-14 19:43:40.241515+00 f t 2025-05-08 19:30:00 COMPLETED clinical Eco abdominal 52000.00 12000.00 40000.00 2025-05-08 22:30:00+00 \N 855 963 113 90 61r54m9fisjup1irqconrdp3k0 \N \N +1458 2025-06-12 14:46:20.41221+00 2025-06-12 14:46:20.41222+00 f t 2025-06-12 19:00:00 CANCELLED clinical Extracción de Sangre para estudios 75330.00 52330.00 23000.00 2025-06-12 22:00:00+00 c6576ca-b380-478c-9c47-3839478 2370 2141 1026 66 dt9e6fafc9ic7jnruq6d3pjhgo \N \N +1459 2025-06-12 14:48:25.053607+00 2025-06-12 14:48:25.053615+00 f t 2025-06-13 09:00:00 CANCELLED clinical Retiro de muestras + laboratorio (Se solicita perfil general completo con orina) 0.00 0.00 0.00 2025-06-13 12:00:00+00 c6576ca-b380-478c-9c47-3839478 2370 2141 1026 86 \N \N \N +1889 2025-07-26 16:21:25.018821+00 2025-07-26 16:21:25.01883+00 f t 2025-07-27 14:00:00 COMPLETED clinical Revision de analisis 27500.00 27500.00 17500.00 2025-07-27 17:00:00+00 LOEJWV9JLEDY41DRNQMDOG 5021 4145 1208 80 c3efk3bpjeu55gqohrcp23qe2c 522 \N +1453 2025-06-12 12:36:30.351364+00 2025-06-12 12:36:30.35137+00 f t 2025-06-14 15:00:00 COMPLETED clinical Refuerzo El ultimo turno fue cancelado y le quedó la seña a favor 64500.00 0.00 47500.00 2025-06-14 18:00:00+00 \N 703 820 1026 92 2vbr291nhl1f6s91mgqoke75r8 \N \N +1456 2025-06-12 14:06:02.114446+00 2025-06-12 14:06:02.114457+00 f t 2025-06-14 11:00:00 COMPLETED clinical Paciente con tos 50000.00 10000.00 40000.00 2025-06-14 14:00:00+00 37618251847 576 2318 1026 88 jfpg993klq05ur0kpn59g8k99c 858 \N +1452 2025-06-12 00:42:14.97276+00 2025-06-12 00:42:14.972767+00 f t 2025-06-12 19:00:00 COMPLETED clinical Tiene una oreja inflamada y un bolto en el pecho 42000.00 9500.00 32500.00 2025-06-12 22:00:00+00 62400775 2582 2309 114 70 84q2j7n2h0nl017d1748sh4eb8 869 \N +2857 2025-10-12 20:20:24.214277+00 2025-10-12 20:20:24.214286+00 f t 2025-10-12 13:00:00 NO_REPORT clinical Inquieta, presenta dolor abdominal y diarrea \N 55000.00 11000.00 44000.00 2025-10-12 16:00:00+00 61473890 710 827 \N 78 ppenjv28avg6bpi1nfo9u16gnc \N 974 +1432 2025-06-10 14:49:53.423329+00 2025-06-10 14:49:53.423341+00 f t 2025-06-11 15:00:00 COMPLETED clinical Vacunación Antirrábica 89100.00 13100.00 76000.00 2025-06-11 18:00:00+00 114126209295 2489 2234 1026 94 5m6fqhihuvslc21je1ip9ktfd0 882 \N +2129 2025-08-17 19:57:23.553681+00 2025-08-17 19:57:23.553693+00 f t 2025-08-17 13:00:00 COMPLETED clinical Ojos Hinchados 50000.00 10000.00 40000.00 2025-08-17 16:00:00+00 76V4MR2ZPVGE0QM89DEZOL 6720 5487 114 88 1rconj8iljbem7sqh3j3am1vjo 338 \N +2819 2025-10-08 17:40:36.348313+00 2025-10-08 17:40:36.348325+00 f t 2025-10-10 19:30:00 NO_REPORT clinical Extraccion rapela, perfil 7, t4 libre y tsh derivado rapela 116500.00 96500.00 20000.00 2025-10-10 22:30:00+00 128573563569 10281 8533 1208 85 9tvfj7juh6e9l963pbhumcimps \N 919 +1463 2025-06-12 20:23:42.46397+00 2025-06-12 20:23:42.463977+00 f t 2025-06-13 19:00:00 COMPLETED clinical Infección en el oído 42000.00 9500.00 32500.00 2025-06-13 22:00:00+00 114894482506 2617 2329 1026 70 1e3nq4sbfr7peb5ehf9b4h7hhs 863 \N +1465 2025-06-12 21:02:32.8789+00 2025-06-12 21:02:32.878909+00 f t 2025-06-13 15:00:00 COMPLETED clinical Eco abdominal 57000.00 12000.00 45000.00 2025-06-13 18:00:00+00 114419865713 2614 2327 1026 90 rrfm8hpvda2ut2cmnn0m2ekdb4 866 \N +1524 2025-06-19 20:02:35.592356+00 2025-06-19 20:02:35.592364+00 f t 2025-07-12 12:00:00 COMPLETED clinical 0.00 0.00 0.00 2025-07-12 15:00:00+00 0 2925 2623 1026 88 afja016socbr615rvqme5es5p0 \N \N +1457 2025-06-12 14:35:38.140089+00 2025-06-12 14:35:38.140095+00 f t 2025-06-12 20:00:00 COMPLETED clinical Eco Abdominal 67000.00 12000.00 55000.00 2025-06-12 23:00:00+00 114855293596 330 393 1026 90 2lsp9e5lsi6bdi80cihuevrd08 868 \N +1461 2025-06-12 19:11:38.217768+00 2025-06-12 19:11:38.217775+00 f t 2025-06-12 17:00:00 COMPLETED clinical Decaimiento de la mascota, toma agua pero no quiere comer 50000.00 10000.00 40000.00 2025-06-12 20:00:00+00 114887900886 2614 2327 1026 1 o2mt92ahu9i36dtl1k9jvataho 873 \N +3346 2025-11-20 18:57:46.625695+00 2025-11-20 18:57:46.625704+00 f t 2025-11-26 18:00:00 PENDING clinical Consulta endocrinologa 61000.00 61000.00 0.00 2025-11-26 21:00:00+00 7712001378 4848 4007 114 98 cnol2ahst607tvki3p7g5u17l4 \N 1704 +1464 2025-06-12 20:52:01.874715+00 2025-06-12 20:52:01.874725+00 f t 2025-06-13 10:00:00 CANCELLED clinical Retiro de muestras + laboratorio\r\nSe solicita perfil general completo sin orina 45000.00 45000.00 0.00 2025-06-13 13:00:00+00 114417588341 2614 2327 1026 86 n7ra82ithacf23lg3otslqmhps \N \N +1800 2025-07-17 15:08:45.353662+00 2025-07-17 15:08:45.353669+00 f t 2025-07-17 19:30:00 COMPLETED clinical Hinchazón en la boca 50000.00 10000.00 40000.00 2025-07-17 22:30:00+00 118925481818 4737 3922 1026 92 ukn119i02hbsccnh5nbue7lh10 594 \N +763 2025-03-04 21:05:28.253409+00 2025-03-04 21:05:28.253419+00 f t 2025-03-03 18:30:00 NO_REPORT clinical urgencia por sangrado en el recto, decaimiento y no está ingiriendo alimento 46000.00 9500.00 36500.00 2025-03-03 21:30:00+00 36461790268 533 628 114 70 gchdksrat6199dv05n0lge8b8g \N \N +1583 2025-06-27 00:20:36.328908+00 2025-06-27 00:20:36.328915+00 f t 2025-07-01 10:00:00 COMPLETED clinical Perfil Prequirurgico Hemostatico por dos + Traslado 66.000 PERFIL PREQUIRURGICO HEMOSTATICO X 2\r\n12.000 DE TRASLADO 144000.00 144000.00 0.00 2025-07-01 13:00:00+00 0 710 827 113 86 470sf4sb22efreegshumbrlll4 751 \N +1472 2025-06-14 20:49:15.257917+00 2025-06-14 20:49:15.257924+00 f t 2025-06-16 16:00:00 COMPLETED clinical endocrinología 61000.00 11000.00 50000.00 2025-06-16 19:00:00+00 50095205009250614 2717 2402 114 98 jggfhhvfja7vml7puqmt1it3lk 848 \N +1490 2025-06-16 20:20:29.372904+00 2025-06-16 20:20:29.37291+00 f t 2025-06-18 17:30:00 COMPLETED clinical Extraccion + consulta clinica 49700.00 11700.00 38000.00 2025-06-18 20:30:00+00 115326454972 2823 2483 113 88 eciklcaehgsehpvega7rjmkhu8 833 \N +1491 2025-06-16 21:47:02.707638+00 2025-06-16 21:47:02.707645+00 f t 2025-06-17 12:00:00 COMPLETED clinical Eutanasia 117000.00 24500.00 92500.00 2025-06-17 15:00:00+00 30182763011250616 2829 2488 113 88 2r7me5buuau8euipj17r92e5oo 842 \N +2679 2025-09-29 12:52:24.14527+00 2025-09-29 12:52:24.145283+00 f t 2025-10-01 09:30:00 NO_REPORT clinical Cosnulta post estudios Se pidio la sena en este caso, y no el valor completo, el cliente debe abonar $50.000 restantes al vete 60000.00 10000.00 50000.00 2025-10-01 12:30:00+00 127925529536 822 928 1583 115 k4sug6mgh3e0e2qn2c2flfufng \N \N +1488 2025-06-16 20:13:11.384749+00 2025-06-16 20:13:11.38476+00 f t 2025-06-16 13:00:00 COMPLETED clinical Eutanasia en el domicilio 75000.00 15000.00 60000.00 2025-06-16 16:00:00+00 65339324 2760 2439 113 92 d8pogtllqifsv65u19245h5kak 850 \N +1474 2025-06-14 20:55:39.863041+00 2025-06-14 20:55:39.863052+00 f t 2025-06-17 18:30:00 CANCELLED clinical Corte de garras 0.00 0.00 0.00 2025-06-17 21:30:00+00 0 2718 2403 114 85 qt97g5ifjb6oaobc26173trvmc \N \N +1703 2025-07-08 20:26:12.53752+00 2025-07-08 20:26:12.537527+00 f t 2025-07-10 17:00:00 COMPLETED clinical antiparasitario y consulta por analisis extra por otros parasitos 42000.00 9500.00 32500.00 2025-07-10 20:00:00+00 117887411090 3347 2872 1208 88 j6dsjnmbrfuovml4b0n5bmfejg 666 \N +1468 2025-06-13 18:28:18.941554+00 2025-06-13 18:28:18.941565+00 f t 2025-06-20 15:00:00 COMPLETED clinical Mascota con tos 50000.00 10000.00 40000.00 2025-06-20 18:00:00+00 376377225665 2672 2369 1026 91 eeqp86k1hg1go7iinp76irslkk 817 \N +2113 2025-08-15 21:06:48.285184+00 2025-08-15 21:06:48.285194+00 f t 2025-08-30 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-08-30 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 9h3vopi1bqsitfe682ue036ajc \N \N +2127 2025-08-17 19:48:59.934316+00 2025-08-17 19:48:59.934325+00 f t 2025-08-17 12:00:00 NO_REPORT clinical Eutanasia 125000.00 25000.00 100000.00 2025-08-17 15:00:00+00 WGRXJE27G0LKV61ON7MYQL 6710 5477 114 70 4pibf07bub4vgq07r8dpobvki8 339 \N +1466 2025-06-13 00:20:35.312027+00 2025-06-13 00:20:35.312034+00 f t 2025-06-18 19:30:00 NO_REPORT clinical Chequeo 42000.00 9500.00 32500.00 2025-06-18 22:30:00+00 63186072 2632 2345 114 68 q1c3frl7cv9ru8sfpvjucni3do 831 \N +1475 2025-06-14 21:03:40.426225+00 2025-06-14 21:03:40.426235+00 f t 2025-06-14 17:00:00 COMPLETED clinical Vómitos continuos 50000.00 10000.00 40000.00 2025-06-14 20:00:00+00 115138640834 2719 2405 114 1 j54p8kc7p2nat6mnn5a6kv52h4 854 \N +1586 2025-06-27 14:01:28.251634+00 2025-06-27 14:01:28.251641+00 f t 2025-07-02 18:30:00 COMPLETED clinical Control de las mascotas 75600.00 10600.00 65000.00 2025-07-02 21:30:00+00 1581759990 3484 2977 1026 91 2a8lnfqd5rpri2blcdt1a6ucsg 733 \N +1484 2025-06-16 20:04:36.99412+00 2025-06-16 20:04:36.994145+00 f t 2025-06-17 11:30:00 CANCELLED clinical Ecografia abdominal 57000.00 12000.00 45000.00 2025-06-17 14:30:00+00 65383466 2803 2467 113 5 k710i0poda6ij29or3sqchh0ek \N \N +2079 2025-08-13 16:28:40.325464+00 2025-08-13 16:28:40.325476+00 f t 2025-08-13 20:30:00 COMPLETED telemedicina control 24750.00 24750.00 0.00 2025-08-13 23:30:00+00 901349c9-4426-471a-a50c-4ee82e 6179 5045 1208 68 j39nhipmc8499lnqscdrd6m1e8 365 \N +1487 2025-06-16 20:11:30.945364+00 2025-06-16 20:11:30.945395+00 f t 2025-06-16 18:00:00 COMPLETED clinical Vacunacion anual 0.00 0.00 0.00 2025-06-16 21:00:00+00 115318256752 2821 2481 113 92 2ktrcpq3ju2t7aqgnb8jk9mhgg \N \N +1492 2025-06-17 14:28:28.094001+00 2025-06-17 14:28:28.094011+00 f t 2025-06-19 17:00:00 COMPLETED clinical Evaluación general 42000.00 9500.00 32500.00 2025-06-19 20:00:00+00 37676833779 2856 2516 1026 1 vd61uud574605cif3rl80lttqg 824 \N +1412 2025-06-08 19:21:58.181407+00 2025-06-08 19:21:58.181415+00 f t 2025-06-09 10:00:00 COMPLETED clinical levanta de madrugada con ruidos intestinales y vomita la bilis 42000.00 9500.00 32500.00 2025-06-09 13:00:00+00 01b6bbbf-727d-4d7e-bd85-8e27fe 2370 2141 114 1 4vkds3rck6jfuqgd9nurc4jii4 899 \N +1542 2025-06-23 17:43:02.331079+00 2025-06-23 17:43:02.33109+00 f t 2025-06-24 10:00:00 COMPLETED clinical Pérdida de pelo Abonarle al vete 42000.00 42000.00 32500.00 2025-06-24 13:00:00+00 115623320131 386 460 1026 78 qe6emr54ssrovqni1gqqkk5qr4 804 \N +1471 2025-06-14 20:39:57.520862+00 2025-06-14 20:39:57.520871+00 f t 2025-06-13 20:00:00 COMPLETED clinical Dolor de pata trasera 50000.00 10000.00 40000.00 2025-06-13 23:00:00+00 115042645676 2713 2400 114 70 ha0ds8bi23iqof60f7h6jadfvk 860 \N +1473 2025-06-14 20:55:00.491865+00 2025-06-14 20:55:00.491873+00 f t 2025-06-17 18:30:00 CANCELLED clinical Corte de garras Acá esta el monto total de la consulta 54000.00 9000.00 45000.00 2025-06-17 21:30:00+00 LOEJWV9JL4YV8Q8RNQMD0G 2718 2404 114 85 1sul1hnror98jbv0d3k520ols4 \N \N +1481 2025-06-16 20:00:59.637382+00 2025-06-16 20:00:59.637391+00 f t 2025-06-16 13:00:00 COMPLETED clinical Dificultad para levantarse 50000.00 10000.00 40000.00 2025-06-16 16:00:00+00 65302084 2803 2467 113 70 v0oim48vscbnt6cm6n43om29og 849 \N +3347 2025-11-20 19:05:53.224961+00 2025-11-20 19:05:53.224969+00 f t 2025-11-20 18:00:00 COMPLETED clinical Eutanasia. 124000.00 25000.00 99000.00 2025-11-20 21:00:00+00 134017742255 12999 11490 1583 121 0t07ud0russg1u7spheoped86k \N 1703 +1478 2025-06-15 20:00:09.634795+00 2025-06-15 20:00:09.634809+00 f t 2025-06-14 20:00:00 COMPLETED clinical eco abdominal Solo le abono a la vete $50.000 67000.00 12000.00 55000.00 2025-06-14 23:00:00+00 115156136036 2719 2405 114 90 5bv3i2p59umbhublm7fjoovpok 853 \N +1476 2025-06-15 17:27:07.902369+00 2025-06-15 17:27:07.902376+00 f t 2025-06-17 17:00:00 COMPLETED clinical Revisión por salpullidos Acá esta el coste total de las 2 consultas 90000.00 10000.00 80000.00 2025-06-17 20:00:00+00 115220731972 2754 2433 114 1 48m7879f9p4323jtoe52f4f620 840 \N +1480 2025-06-15 21:20:37.444587+00 2025-06-15 21:20:37.444594+00 f t 2025-06-16 12:00:00 COMPLETED clinical Urgencia por deshidratación y falta de movimiento 50000.00 10000.00 40000.00 2025-06-16 15:00:00+00 65057770 2760 2439 114 92 dnb859r2cotn9il6d7q7o2cdgs 852 \N +1470 2025-06-14 20:26:19.159938+00 2025-06-14 20:26:19.159945+00 f t 2025-06-14 16:00:00 COMPLETED clinical Indigestión, diarrea continua por 3 días 50000.00 10000.00 40000.00 2025-06-14 19:00:00+00 D4R0172VED81W63DNKJ3QE 533 628 114 92 0dlpc4gitohr3lb4117ad0kpr4 855 \N +1482 2025-06-16 20:02:12.381309+00 2025-06-16 20:02:12.381318+00 f t 2025-06-17 09:00:00 CANCELLED clinical Perfil general con orina + traslado 53000.00 53000.00 0.00 2025-06-17 12:00:00+00 \N 2803 2467 113 86 \N \N \N +1486 2025-06-16 20:10:59.858567+00 2025-06-16 20:10:59.858573+00 f t 2025-06-16 18:00:00 COMPLETED clinical Vacunacion anual 129600.00 23600.00 106000.00 2025-06-16 21:00:00+00 115318256752 2821 2480 113 92 fjprbjkapige2tte6ei85j5ans 844 \N +1469 2025-06-13 20:59:45.019623+00 2025-06-13 20:59:45.019632+00 f t 2025-06-13 21:00:00 COMPLETED clinical Heces blandas 50000.00 10000.00 40000.00 2025-06-14 00:00:00+00 115033834622 2498 2241 1026 70 4asevk65td2m8ls00ehukiq7ng 859 \N +1511 2025-06-18 23:29:15.126118+00 2025-06-18 23:29:15.126127+00 f t 2025-06-19 12:00:00 COMPLETED clinical Traslado y perfil general con orina Abonarle a diagnotest y cadeteria por que se perdieron las muestras 0.00 0.00 53000.00 2025-06-19 15:00:00+00 \N 2370 2141 113 86 \N \N \N +1509 2025-06-18 22:55:47.461727+00 2025-06-18 22:55:47.461737+00 f t 2025-06-19 15:30:00 COMPLETED clinical Perfil general sin orina + traslado de muestra Se le debe abonar a diagnotest y cadeteria por la perdida de la muestra de ariel 45000.00 0.00 45000.00 2025-06-19 18:30:00+00 0 2614 2327 113 86 qie1ato7q38gaf379k7n71tesg \N \N +1505 2025-06-18 14:58:11.447308+00 2025-06-18 14:58:11.447316+00 f t 2025-06-18 17:30:00 NO_REPORT clinical Dolor en una pata, no la apoya bien Abonarle al vete 50000.00 50000.00 40000.00 2025-06-18 20:30:00+00 115545723364 409 488 112 2 9vh5gl5ninai6vf8q2r6pqvn6s 834 \N +1494 2025-06-17 15:46:43.998882+00 2025-06-17 15:46:43.998892+00 f t 2025-06-23 10:00:00 NO_REPORT clinical Extracción de sangre 57700.00 34700.00 23000.00 2025-06-23 13:00:00+00 65845409 2732 2418 1026 85 4u6p3ioskadoc6cn7aq1emenog 810 \N +1508 2025-06-18 22:53:32.825754+00 2025-06-18 22:53:32.825765+00 f t 2025-06-18 08:00:00 COMPLETED clinical Extraccion Abonarle a victoria $38000 por el inconveniente con las muestras perdidas 0.00 0.00 38000.00 2025-06-18 11:00:00+00 0 2614 2327 113 88 lpioi86d2k8r8dktqianjfc49c \N \N +2328 2025-09-01 20:09:10.431123+00 2025-09-01 20:09:10.431158+00 f t 2025-09-09 19:30:00 COMPLETED vaccination Vacuna anual (triple y antirrabica) 15% Descuento EPAM 66300.00 9800.00 56500.00 2025-09-09 22:30:00+00 124492424702 1025 1115 1583 80 cfjoosk5vncngt5rbhc551ap4c 94 \N +2288 2025-08-29 17:27:57.503702+00 2025-08-29 17:27:57.503712+00 f t 2025-08-29 17:30:00 CANCELLED clinical Paciente oncologico terminal 131500.00 26500.00 120000.00 2025-08-29 20:30:00+00 3D5W612EJVOPM7PG9GXYVR 7518 6182 1583 21 q84v36rt0fibid459jmu9fi2fg \N \N +1495 2025-06-17 15:51:19.258023+00 2025-06-17 15:51:19.258033+00 f t 2025-06-23 11:00:00 COMPLETED clinical Laboratorio la transacción se encuentra en el turno con la enfemera 57700.00 0.00 0.00 2025-06-23 14:00:00+00 0 2732 2418 1026 86 2truatg7oaou1rbgl7fh49ulg4 \N \N +1510 2025-06-18 23:27:57.050348+00 2025-06-18 23:27:57.050355+00 f t 2025-06-19 11:30:00 COMPLETED clinical Extraccion Abonarle a victoria por el incoveniente de las perdida de muestra: $38000 le corresponde 0.00 0.00 38000.00 2025-06-19 14:30:00+00 \N 2370 2141 113 88 vlh60d1sh16fi16ufntqkhdeic \N \N +1869 2025-07-24 15:54:20.176758+00 2025-07-24 15:54:20.176766+00 f t 2025-07-25 15:30:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-07-25 18:30:00+00 R7Zg0qndjmrkvyenexypo 5176 4259 1026 1 trc8o579dhoc0743pvsk5kcboc 537 \N +1496 2025-06-17 20:43:12.8971+00 2025-06-17 20:43:12.897108+00 f t 2025-06-17 20:30:00 COMPLETED clinical Vómitos y problemas al defecar Hay que transferirle $30.000 al vete 50000.00 40000.00 40000.00 2025-06-17 23:30:00+00 114977549247 2880 2539 1026 70 86mgopc5lbg99280f9t2rsmafg 837 \N +1704 2025-07-08 22:59:05.126029+00 2025-07-08 22:59:05.126036+00 f t 2025-07-10 18:30:00 COMPLETED clinical Control postrescate 42000.00 9500.00 32500.00 2025-07-10 21:30:00+00 0V1JX0N1D4KKPOM79Z64EL 4202 3506 113 89 nclqvjv8m5g4jqojsnvm2kgf5g 665 \N +1500 2025-06-18 01:25:54.11754+00 2025-06-18 01:25:54.117546+00 f t 2025-06-20 16:00:00 COMPLETED clinical Control clinico y drenaje de glandulas 2da visita del pack de tres 0.00 0.00 0.00 2025-06-20 19:00:00+00 \N 123 128 113 1 oc71ojcr7k29q5pvbgr8ur6gm8 \N \N +1540 2025-06-23 15:25:48.082695+00 2025-06-23 15:25:48.082702+00 f t 2025-06-24 11:00:00 COMPLETED clinical Eco abdominal 62000.00 12000.00 50000.00 2025-06-24 14:00:00+00 115606782135 3211 2775 1026 5 os335gndajnhbfhc5hp0lhhklk 803 \N +1513 2025-06-19 00:09:09.986848+00 2025-06-19 00:09:09.986859+00 f t 2025-06-20 10:00:00 COMPLETED clinical Vacunaciona anual para tres gatos Debemos abonarle a mara $159.000 porque abona con T. de credito 194400.00 194400.00 0.00 2025-06-20 13:00:00+00 \N 2950 2586 113 92 31d4q301um94o56om5mipp4ehs 820 \N +1502 2025-06-18 01:33:35.977824+00 2025-06-18 01:33:35.977833+00 f t 2025-06-20 10:00:00 COMPLETED clinical Vacunacion anual para dos pacientes 129600.00 23600.00 106000.00 2025-06-20 13:00:00+00 114999450939 2894 2549 113 88 p60gt671gbkmjaqo9gj7puv7hs 821 \N +1516 2025-06-19 12:43:51.075383+00 2025-06-19 12:43:51.075392+00 f t 2025-06-19 19:00:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-06-19 22:00:00+00 37703025102 2973 2606 1026 1 l9a57pu6ag6t4nfcnmqvimdl3c 822 \N +1517 2025-06-19 13:13:19.44955+00 2025-06-19 13:13:19.44956+00 f t 2025-06-19 12:00:00 COMPLETED clinical Respira mal, se siente caliente el cuerpo. No pudo dormir durante la noche Abonarle al vete 50000.00 50000.00 40000.00 2025-06-19 15:00:00+00 115656413964 2970 2604 1026 78 kbem7n10au38tk87n5389rq7oo 829 \N +3333 2025-11-19 19:09:26.88828+00 2025-11-19 19:09:26.888296+00 f t 2025-11-24 15:00:00 COMPLETED clinical Ccertificado de salud, desparasitacion int+ext felino mas de 5kg, y corte de garras 102100.00 24100.00 78000.00 2025-11-24 18:00:00+00 MP 12455 10288 1583 91 raq5m1p2ur86svpka2cigli7mc \N 1670 +1514 2025-06-19 00:09:55.71483+00 2025-06-19 00:09:55.714836+00 f t 2025-06-20 10:00:00 COMPLETED clinical Vacunacion anual Abonarle a mara $159.000 por abona con tarjeta de credito 0.00 0.00 0.00 2025-06-20 13:00:00+00 0 2950 2588 113 92 l1bps24vju1jsj84plhcckass4 \N \N +1501 2025-06-18 01:29:25.279691+00 2025-06-18 01:29:25.279698+00 f t 2025-06-19 18:00:00 COMPLETED clinical Revisión por salpullidos 90000.00 10000.00 80000.00 2025-06-19 21:00:00+00 \N 2754 2433 113 1 1oahto2u5lb3e8f2avrlckgvss 823 \N +1813 2025-07-18 13:03:47.511676+00 2025-07-18 13:03:47.511685+00 f t 2025-08-04 19:00:00 COMPLETED clinical Vacunación triple felina + antirrábica 64800.00 11800.00 53000.00 2025-08-04 22:00:00+00 119034278024 4471 3722 1026 92 idkaumfudg8e99c298mvtnvnpg 441 \N +1512 2025-06-18 23:50:38.425259+00 2025-06-18 23:50:38.425268+00 f t 2025-06-19 12:00:00 COMPLETED clinical Ecografia abdominal Verificar como pagaria 60000.00 12000.00 50000.00 2025-06-19 15:00:00+00 1560156962 2943 2581 113 90 a0qq2ishvfdjqm47ghpv1drluk 828 \N +1497 2025-06-17 21:05:16.629873+00 2025-06-17 21:05:16.62988+00 f t 2025-06-18 16:00:00 COMPLETED vaccination Vacunación anual y desparasitación interna + externa 105000.00 25500.00 79500.00 2025-06-18 19:00:00+00 23442d53-3263-455d-af45-32a9af 2881 2540 1026 88 7ofcknv5jhol1sntd8734gf6qc 835 \N +1493 2025-06-17 15:23:07.605973+00 2025-06-17 15:23:07.605982+00 f t 2025-06-17 13:00:00 NO_REPORT clinical Eco abdominal 67000.00 12000.00 55000.00 2025-06-17 16:00:00+00 115425144454 2869 2529 1026 90 o564hcnjvucqeppuhmk72u5nq0 841 \N +1507 2025-06-18 18:56:00.254979+00 2025-06-18 18:56:00.254987+00 f t 2025-06-18 20:00:00 COMPLETED vaccination Refuerzo 47500,00 abonarle a palladino, eso porque lo abono a la cuenta de amar 64500.00 64500.00 0.00 2025-06-18 23:00:00+00 23-40392710-4 646 761 112 70 lblsilaihtj07krlttntha8v9g 830 \N +1515 2025-06-19 00:10:36.525457+00 2025-06-19 00:10:36.525467+00 f t 2025-06-20 10:00:00 COMPLETED clinical Vacunacion anual 0.00 0.00 0.00 2025-06-20 13:00:00+00 0 2950 2587 113 92 kufkd38u6fu821crj4vp27uf7g \N \N +1499 2025-06-18 01:23:02.964553+00 2025-06-18 01:23:02.964561+00 f t 2025-06-17 18:30:00 COMPLETED clinical dificultad en la marcha 50000.00 10000.00 40000.00 2025-06-17 21:30:00+00 \N 544 641 113 70 e1vbutt2p4umsc3el1f8htpkf8 839 \N +1506 2025-06-18 16:23:21.946614+00 2025-06-18 16:23:21.946622+00 f t 2025-06-19 14:30:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-06-19 17:30:00+00 115556736136 2925 2567 112 88 uru0kfcug4if4jhnc26moikefs 826 \N +2373 2025-09-03 16:56:25.737696+00 2025-09-03 16:56:25.737703+00 f t 2025-09-03 22:00:00 COMPLETED clinical eco abdominal 78000.00 13000.00 65000.00 2025-09-04 01:00:00+00 76584485 7820 6434 1208 90 262vhlgsussf09plsia4tf0s20 144 \N +1503 2025-06-18 01:34:04.016832+00 2025-06-18 01:34:04.016841+00 f t 2025-06-20 10:00:00 COMPLETED clinical Vacunaciona anual para dos pacientes 0.00 0.00 0.00 2025-06-20 13:00:00+00 114999450939 2894 2548 113 88 bmorbfe4gmk373ahbh17522sqk \N \N +1483 2025-06-16 20:03:42.171104+00 2025-06-16 20:03:42.171117+00 f t 2025-06-17 09:00:00 CANCELLED clinical EXTRACCION Aclaracion la clienta abono una seña de 64700; eso corresponde a la seña por extraccion+ laboratorio+ traslado + seña de consulta clinica 49700.00 11700.00 38000.00 2025-06-17 12:00:00+00 653383221 2803 2467 113 88 fntp734adhuulao24b0lpnffkc \N \N +1549 2025-06-24 00:14:15.819805+00 2025-06-24 00:14:15.819812+00 f t 2025-06-28 10:00:00 COMPLETED clinical Radiografia 75000.00 15000.00 60000.00 2025-06-28 13:00:00+00 37760841204 2672 2369 113 84 gf8o9bg3r7jo2cbh8g2jbvf05s 768 \N +1522 2025-06-19 19:47:14.211725+00 2025-06-19 19:47:14.211735+00 t t 2025-06-20 13:00:00 PENDING telemedicina Avance del paciente Abonarle al vete 27500.00 27500.00 17500.00 2025-06-20 16:00:00+00 37700978421 2792 2462 1026 99 3pai0684opt3feaifsff9bht08 \N \N +1526 2025-06-20 00:05:14.904125+00 2025-06-20 00:05:14.904136+00 f t 2025-06-25 19:30:00 COMPLETED clinical Eutanasia 129500.00 27000.00 102500.00 2025-06-25 22:30:00+00 115712756692 1888 1775 113 92 tsn0kn6v5r0plqm7jg3kjc7os4 788 \N +1539 2025-06-23 14:02:01.988466+00 2025-06-23 14:02:01.988475+00 f t 2025-06-24 19:00:00 COMPLETED clinical Está todo detallado en el turno de Milka 0.00 0.00 0.00 2025-06-24 22:00:00+00 0 3206 2771 1026 97 tmdas56i8sl01r8atrvh95nlus \N \N +1553 2025-06-24 16:19:41.41178+00 2025-06-24 16:19:41.411787+00 f t 2025-06-25 09:30:00 COMPLETED clinical Extracción para estudios de sangre y orina 132500.00 94500.00 38000.00 2025-06-25 12:30:00+00 37768435146 2046 1891 1026 1 inoap838g9skfd8jc24dgesms4 795 \N +1588 2025-06-27 14:10:26.505323+00 2025-06-27 14:10:26.505333+00 f t 2025-06-27 18:00:00 COMPLETED clinical Vacunación antirrábica 49500.00 11500.00 38000.00 2025-06-27 21:00:00+00 37805847809 3485 2979 1026 1 uqpn8qj35801goqh9ashg7ghl8 771 \N +1543 2025-06-23 18:02:59.639314+00 2025-06-23 18:02:59.639321+00 f t 2025-06-23 20:00:00 COMPLETED clinical Eutanasia 107100.00 12100.00 95000.00 2025-06-23 23:00:00+00 115625308775 3176 2747 1026 92 nsv3moecghnq77urnk67ih9e9k 807 \N +1534 2025-06-22 22:06:02.631909+00 2025-06-22 22:06:02.631925+00 f t 2025-06-22 18:00:00 COMPLETED clinical Problemas de contención 50000.00 10000.00 40000.00 2025-06-22 21:00:00+00 115516821183 264 308 114 92 r6ip6u61lp83852u0ckqm434bs 811 \N +1554 2025-06-24 19:58:05.491805+00 2025-06-24 19:58:05.491814+00 f t 2025-06-25 12:30:00 CANCELLED clinical Extraccion 293100.00 255100.00 38000.00 2025-06-25 15:30:00+00 30717420698 2717 2402 113 1 je0u6jcf6ctfa5i6iaf6c35cj8 \N \N +1550 2025-06-24 00:50:22.165191+00 2025-06-24 00:50:22.1652+00 f t 2025-06-24 14:00:00 NO_REPORT clinical control por un protuberancia 42000.00 9500.00 32500.00 2025-06-24 17:00:00+00 18970674 3156 2735 113 74 ggapks4k7bud9a6nv6b11373io 800 \N +1529 2025-06-20 21:06:56.737859+00 2025-06-20 21:06:56.737866+00 f t 2025-06-20 18:00:00 COMPLETED clinical desparasitación 88000.00 19000.00 69000.00 2025-06-20 21:00:00+00 115303744301 3043 2654 114 92 tshifam7kqek9hh05p78i99ehg 815 \N +1520 2025-06-19 19:42:27.008238+00 2025-06-19 19:42:27.008247+00 t t 2025-06-20 11:00:00 PENDING clinical control 27500.00 27500.00 17500.00 2025-06-20 14:00:00+00 37709785421 2792 2462 113 99 \N \N \N +1525 2025-06-19 20:33:29.937656+00 2025-06-19 20:33:29.937664+00 f t 2025-06-20 13:00:00 COMPLETED clinical Infección en el oido 50000.00 10000.00 40000.00 2025-06-20 16:00:00+00 37710195381 3002 2626 1026 88 cubpjjf06ftnn6aatkitve9898 818 \N +1551 2025-06-24 14:30:13.495519+00 2025-06-24 14:30:13.495528+00 f t 2025-06-24 15:00:00 COMPLETED clinical Eutanasia 119000.00 24000.00 95000.00 2025-06-24 18:00:00+00 f8c6558-3909-4866-85b5-389cbe9 3266 2817 1026 1 meg98n8oqjof11ttfr1ncd7nqg 798 \N +735 2025-02-27 00:23:22.680195+00 2025-02-27 00:23:22.680203+00 f t 2025-03-01 11:00:00 COMPLETED vaccination VACUNACION ANUAL 60750.00 15750.00 45000.00 2025-03-01 14:00:00+00 ZOKV8794878Z1ZWO2PEYDX 510 602 113 21 dseit9t8kt4o4tnsnmsqnc9890 \N \N +1552 2025-06-24 14:34:09.118436+00 2025-06-24 14:34:09.118443+00 f t 2025-06-27 10:00:00 COMPLETED clinical Extracción de Sangre 144350.00 106350.00 38000.00 2025-06-27 13:00:00+00 70271735 734 858 1026 92 51s8kpkriji40c8t5r8se23h7s 780 \N +1530 2025-06-20 21:49:59.691795+00 2025-06-20 21:49:59.691801+00 f t 2025-06-21 15:00:00 COMPLETED telemedicina Revisión de resultados https://meet.google.com/odj-pefm-twf 27500.00 27500.00 0.00 2025-06-21 18:00:00+00 b4411c00-9047-4866-891e-6aefbf 2370 2141 114 1 ftcqn7b03nr4o0emmk86fvr7mk 814 \N +1536 2025-06-22 22:16:18.552411+00 2025-06-22 22:16:18.552422+00 f t 2025-06-26 11:00:00 NO_REPORT clinical Limpieza de dientes 130000.00 10000.00 120000.00 2025-06-26 14:00:00+00 Z6OLMDN3X14X11DX9E7RQ5 3177 2748 114 70 gdvhtia9njv8npns7vrtvtu1p4 787 \N +1547 2025-06-24 00:08:39.466626+00 2025-06-24 00:08:39.466634+00 f t 2025-07-21 19:30:00 COMPLETED clinical Resfuerzo de la sextuple 64500.00 17000.00 47500.00 2025-07-21 22:30:00+00 \N 2892 2547 113 92 t426euflrrvj8eo886nsbok35k 574 \N +1523 2025-06-19 20:01:54.135103+00 2025-06-19 20:01:54.135113+00 f t 2025-07-12 12:00:00 COMPLETED vaccination vacunación anual abonarle $2700 a vicky, se confundió la tutora al transferir la seña 129600.00 26300.00 103300.00 2025-07-12 15:00:00+00 115701256486 2925 2622 1026 88 ds0ouoi6lekg6d5rji0epo9b0k 649 \N +1548 2025-06-24 00:12:23.492629+00 2025-06-24 00:12:23.492638+00 f t 2025-06-23 21:30:00 COMPLETED clinical Dolor lumbar 50000.00 10000.00 40000.00 2025-06-24 00:30:00+00 115662668579 3242 2804 113 1 8601qrafgmp435t1oqadrc78is 806 \N +1546 2025-06-23 20:56:35.074833+00 2025-06-23 20:56:35.07484+00 f t 2025-06-25 18:00:00 COMPLETED telemedicina Resolución de estudios 27500.00 27500.00 17500.00 2025-06-25 21:00:00+00 115643569667 1864 1756 1026 70 gb1m4pumup1b7ui1mlr3efkc30 791 \N +1822 2025-07-19 17:50:29.540575+00 2025-07-19 17:50:29.540585+00 f t 2025-07-18 08:00:00 COMPLETED clinical Pack visita n3 0.00 0.00 0.00 2025-07-18 11:00:00+00 \N 1734 1651 1208 92 o9hoc76feenlto90mqgm7eui0k \N \N +2372 2025-09-03 16:55:56.206812+00 2025-09-03 16:55:56.206821+00 t t 2025-09-03 22:00:00 PENDING clinical eco abdominal 78000.00 13000.00 65000.00 2025-09-04 01:00:00+00 76584485 7820 6434 1208 90 5195hvhjt4spk4koagjrk4k3m0 \N \N +1532 2025-06-21 21:59:24.509906+00 2025-06-21 21:59:24.509913+00 f t 2025-06-21 18:00:00 NO_REPORT clinical Ecografía Abdominal 67000.00 12000.00 55000.00 2025-06-21 21:00:00+00 115909269526 3125 2714 114 90 tnp1etoe6o4ktgoapar6vfull4 813 \N +3286 2025-11-15 20:19:08.742342+00 2025-11-15 20:19:08.742352+00 f t 2025-11-22 15:00:00 COMPLETED clinical comenzar con vacunacion. 70000.00 19000.00 51000.00 2025-11-22 18:00:00+00 1465964047 11659 9648 1208 92 him6cr0ujfj14teak2b5pmiios \N 1618 +1519 2025-06-19 16:51:59.243246+00 2025-06-19 16:51:59.243254+00 f t 2025-06-23 18:00:00 COMPLETED clinical Control de la mascota y devolución de estudios 37800.00 5300.00 32500.00 2025-06-23 21:00:00+00 L18MKX9R7VE7Q04E9O6WYV 472 560 1026 88 2i1a2uqphjjptjdleqp446r2gk 809 \N +1535 2025-06-22 22:11:27.836527+00 2025-06-22 22:11:27.836537+00 f t 2025-06-22 17:00:00 COMPLETED clinical Letargo y Decaimiento 50000.00 10000.00 40000.00 2025-06-22 20:00:00+00 116005671264 3176 2747 114 92 6k7v86n0nbku6tv0ggjo26h974 812 \N +1527 2025-06-20 00:06:46.96177+00 2025-06-20 00:06:46.961781+00 f t 2025-06-20 11:00:00 COMPLETED clinical Evolución del paciente 27500.00 27500.00 17500.00 2025-06-20 14:00:00+00 37709785421 2792 2462 113 99 lm9134a1r3ao7cp7fl8qggfe58 819 \N +1418 2025-06-09 20:09:43.751324+00 2025-06-09 20:09:43.751334+00 f t 2025-06-10 19:00:00 NO_REPORT clinical Está en tratamiento, hubo mejoría, de ánimo esta como siempre, juega, corre y come bien. Respira bien, solo que estornuda o respira y se le escucha moco en la nariz. 37800.00 5300.00 32500.00 2025-06-10 22:00:00+00 67REZ8NPWL44LVZK94KVGO 416 2200 1026 70 p2mv5584uptb5isoag1rm96a3s 888 \N +1541 2025-06-23 17:35:40.411426+00 2025-06-23 17:35:40.411436+00 t t 2025-06-23 19:00:00 COMPLETED clinical Reprogramación 720000.00 0.00 53000.00 2025-06-23 22:00:00+00 \N 2892 2547 1026 92 gc6j22s5toavo6onq4b28ld2gs \N \N +1555 2025-06-24 19:59:03.942854+00 2025-06-24 19:59:03.942863+00 f t 2025-06-25 12:00:00 CANCELLED clinical Perfil personalizado+ traslado 255100.00 255100.00 0.00 2025-06-25 15:00:00+00 0 2717 2402 113 86 bk35kauqngfr7m73pnpfhjnchs \N \N +1844 2025-07-22 14:32:52.868515+00 2025-07-22 14:32:52.868525+00 f t 2025-07-22 17:00:00 COMPLETED clinical Se rasca intensamente los oidos, gira la cabeza para el lado en que le duele 50000.00 10000.00 40000.00 2025-07-22 20:00:00+00 118985019821 5024 4146 1026 1 prr786c0p7q1li27q8sv378ilc 567 \N +1566 2025-06-26 11:10:32.175368+00 2025-06-26 11:10:32.175377+00 f t 2025-06-27 13:30:00 COMPLETED clinical Vacunacion anual 72000.00 19000.00 53000.00 2025-06-27 16:30:00+00 115876848499 3405 2911 113 68 tj3v3f8le6frcfjdmcarha38qo 775 \N +2338 2025-09-01 22:07:18.73023+00 2025-09-01 22:07:18.73024+00 f t 2025-09-11 11:30:00 NO_REPORT clinical fluidoterapia 0.00 0.00 0.00 2025-09-11 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 bphha5b1ueckgn8udkv70to90c \N \N +1293 2025-05-27 16:04:50.840011+00 2025-05-27 16:04:50.840019+00 f t 2025-05-29 19:00:00 COMPLETED clinical posible eutanasia \r\nnos comenta que su perra no esta bien, se para y camina cada tanto, dejo de tener los movimientos de los ojos, Dejo de recibir el suero porque la venita se le rompía entonces no podían ponerle la vía. Hoy no quiso comer Y no se levanta. nos comenta que su perra no esta bien, se para y camina cada tanto, dejo de tener los movimientos de los ojos, Dejo de recibir el suero porque la venita se le rompía entonces no podían ponerle la vía. Hoy no quiso comer . Hoy no quiso comer y no se levanta 108500.00 22000.00 86500.00 2025-05-29 22:00:00+00 94911442 1708 1630 112 1 h8016gq3qh8ssbju7oqtr2eu3c \N \N +1560 2025-06-25 16:27:25.585455+00 2025-06-25 16:27:25.585461+00 f t 2025-06-25 16:30:00 COMPLETED clinical diarrea 50000.00 10000.00 40000.00 2025-06-25 19:30:00+00 115835467459 3346 2871 1026 88 33l2a775bvt973fsq0t4sos348 793 \N +1559 2025-06-25 16:03:26.930696+00 2025-06-25 16:03:26.930707+00 f t 2025-06-25 18:00:00 COMPLETED clinical Px con diarrea y vómitos 50000.00 10000.00 40000.00 2025-06-25 21:00:00+00 115831100119 3347 2872 1026 88 f2859uhrp3io09iau71fhvje54 790 \N +1570 2025-06-26 17:42:01.899805+00 2025-06-26 17:42:01.899816+00 f t 2025-06-27 19:00:00 COMPLETED clinical Extracción de punto 42000.00 9500.00 32500.00 2025-06-27 22:00:00+00 115957042185 839 944 1026 87 7cf1ilf2ihus0d2u3qu7k65i94 769 \N +1849 2025-07-22 20:16:47.551635+00 2025-07-22 20:16:47.551647+00 f t 2025-07-25 14:30:00 COMPLETED vaccination se detalla en el turno de la otra mascota 0.00 0.00 0.00 2025-07-25 17:30:00+00 \N 2144 1967 1026 91 3ggmf6hg5ktcknpvnoviktepoc \N \N +1437 2025-06-10 16:56:02.584043+00 2025-06-10 16:56:02.584052+00 f t 2025-06-10 17:30:00 COMPLETED clinical Llego a casa el martes pasado y quiero ver cómo está. Ya tiene una vacuna. Ayer empezó a tener como una lagaña y no sé si es normal 50000.00 10000.00 40000.00 2025-06-10 20:30:00+00 114623339438 2498 2241 1026 68 3gl6h78jfpsst8qn8f5rn3ivdg 891 \N +1575 2025-06-26 19:49:25.657792+00 2025-06-26 19:49:25.657802+00 f t 2025-06-26 17:30:00 NO_REPORT telemedicina Tos a repeticio- revision de radiografias nuevas 27500.00 27500.00 17500.00 2025-06-26 20:30:00+00 115968918715 811 922 113 70 lb8nrih2cje13l3i8patk9i8as 785 \N +1531 2025-06-21 21:54:24.582586+00 2025-06-21 21:54:24.582594+00 f t 2025-06-24 13:00:00 COMPLETED clinical Revisión por la nariz tapada 42000.00 9500.00 32500.00 2025-06-24 16:00:00+00 115820265324 3054 2662 114 68 apv9fb8tee8m8e6d7ni15ldpn8 801 \N +1568 2025-06-26 13:35:36.361209+00 2025-06-26 13:35:36.361218+00 f t 2025-06-26 18:00:00 COMPLETED clinical Seguimiento del px 50000.00 10000.00 40000.00 2025-06-26 21:00:00+00 116422057522 3211 2775 1026 80 nvhpkmmt1h90p70c562dn44dbc 784 \N +1572 2025-06-26 18:51:49.110887+00 2025-06-26 18:51:49.110895+00 f t 2025-07-17 13:00:00 COMPLETED vaccination Refuerzo de vacunacion + antirrabica 0.00 0.00 0.00 2025-07-17 16:00:00+00 \N 667 788 113 80 5q46am66fj4o8fr68nip47ngro \N \N +1970 2025-08-02 16:33:00.142937+00 2025-08-02 16:33:00.142947+00 f t 2025-08-02 17:00:00 COMPLETED clinical dolor de espalda 50000.00 10000.00 40000.00 2025-08-02 20:00:00+00 120763076298 5743 4697 1208 92 8op1mo2ecur99kefbo6gmdekk0 459 \N +1576 2025-06-26 20:42:46.933202+00 2025-06-26 20:42:46.933211+00 f t 2025-06-27 13:00:00 COMPLETED clinical quiere administrarle sedación a su mascota para poder realizar un viaje 42000.00 9500.00 32500.00 2025-06-27 16:00:00+00 115974239167 722 844 1026 79 9mngg1mq021lpm6j7dits2591c 776 \N +1577 2025-06-26 23:48:24.880567+00 2025-06-26 23:48:24.880574+00 f t 2025-07-01 18:30:00 COMPLETED clinical Consulta clinica con evaluacion para castracion 42000.00 9500.00 32500.00 2025-07-01 21:30:00+00 \N 3451 2945 113 68 p7jce7a99995ttmtn1snp49si0 739 \N +1699 2025-07-08 15:16:37.39533+00 2025-07-08 15:16:37.395337+00 f t 2025-07-08 18:00:00 COMPLETED clinical Control por edad 50000.00 10000.00 40000.00 2025-07-08 21:00:00+00 117850803396 4176 3479 1026 68 lftt06i3bido85fthbnnafnq9g 686 \N +1545 2025-06-23 19:39:32.75618+00 2025-06-23 19:39:32.75619+00 f t 2025-06-24 14:00:00 COMPLETED vaccination TODO EL DETALLE EN EL TURNO DEL OTRO PX 0.00 0.00 0.00 2025-06-24 17:00:00+00 0 3228 2794 1026 1 50f1k2rv9ra8vd7u6tt1me8srk \N \N +1569 2025-06-26 14:37:45.945751+00 2025-06-26 14:37:45.945758+00 t t 2025-06-26 19:00:00 NO_REPORT clinical Intenta vomitar y no puede 50000.00 10000.00 40000.00 2025-06-26 22:00:00+00 116428565248 3421 2923 1026 80 ts2gqor0stf4c8djbnjvd4g9fk \N \N +1341 2025-06-01 20:23:05.113482+00 2025-06-01 20:23:05.113493+00 f t 2025-06-28 18:00:00 COMPLETED vaccination VACUNACION ANUAL 72000.00 19000.00 53000.00 2025-06-28 21:00:00+00 113550512602 1976 1840 114 92 4pnjhf0dhen24g8nsu8s7d7e60 765 \N +1557 2025-06-25 15:17:00.581344+00 2025-06-25 15:17:00.581354+00 f t 2025-06-27 11:30:00 COMPLETED clinical Control 42000.00 9500.00 32500.00 2025-06-27 14:30:00+00 116309090906 3343 2869 1026 92 o1mo6ksos38mdnfbcqt4g15oj0 779 \N +1573 2025-06-26 18:53:11.041594+00 2025-06-26 18:53:11.041603+00 f t 2025-06-26 16:00:00 NO_REPORT clinical Urgencia por mal estar, con vomitos 50000.00 10000.00 40000.00 2025-06-26 19:00:00+00 116453584330 3430 2933 113 74 peffh0r4o6kqu6p94uuko5b280 786 \N +1558 2025-06-25 15:32:41.004017+00 2025-06-25 15:32:41.004026+00 f t 2025-07-01 09:00:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-07-01 12:00:00+00 LOEJWV9JL4ME1VKDNQMD0G 3344 2870 1026 74 kpfim35nsb2hf42eq26ttmkrk0 752 \N +1565 2025-06-26 11:07:12.374748+00 2025-06-26 11:07:12.374758+00 f t 2025-07-01 16:00:00 COMPLETED clinical Revision y extraccion 0.00 0.00 0.00 2025-07-01 19:00:00+00 116361989362 3403 2908 113 68 ffjrts6skb3gf8l2ufjhd9qafs \N \N +1544 2025-06-23 19:36:39.480115+00 2025-06-23 19:36:39.480122+00 f t 2025-06-24 14:00:00 COMPLETED clinical Vacunación anual 129600.00 23600.00 106000.00 2025-06-24 17:00:00+00 b6761726-do6c-410f-81fe-5dac63 3228 2793 1026 1 2uamv1kpurfm0fqdbcov8ptgq8 799 \N +1562 2025-06-25 20:01:35.978987+00 2025-06-25 20:01:35.978998+00 f t 2025-06-25 17:30:00 COMPLETED clinical Eco abdominal 67000.00 12000.00 55000.00 2025-06-25 20:30:00+00 115857672771 3346 2871 1026 90 rtt8lhtn9aq2d87k5ksceqjc0k 792 \N +1564 2025-06-26 11:06:09.378805+00 2025-06-26 11:06:09.378812+00 f t 2025-07-01 16:00:00 COMPLETED clinical Revision + extraccion 99400.00 23400.00 76000.00 2025-07-01 19:00:00+00 \N 3403 2909 113 68 6mvs09oitvect68ivggn61n578 743 \N +1574 2025-06-26 19:41:06.714502+00 2025-06-26 19:41:06.71451+00 f t 2025-07-10 14:30:00 COMPLETED clinical emisión de orden para perfil general completo s/o y extracción de sangre 85230.00 47230.00 38000.00 2025-07-10 17:30:00+00 115968380635 272 320 1026 79 o2ke7oub429a8onr1koi1bo56g 669 \N +1556 2025-06-24 23:50:00.744603+00 2025-06-24 23:50:00.744613+00 f t 2025-06-26 18:00:00 CANCELLED clinical Lesion en la piel 45000.00 45000.00 35000.00 2025-06-26 21:00:00+00 115766038437 3297 2843 113 75 6stk1jb30lm3r9o35skir3qlqo \N \N +1382 2025-06-05 16:04:57.17737+00 2025-06-05 16:04:57.177379+00 f t 2025-06-07 13:00:00 COMPLETED vaccination Vacunación anual 129600.00 23600.00 106000.00 2025-06-07 16:00:00+00 56687618 2217 2027 1026 88 843es0gq66ct83ippkspducuo8 910 \N +1580 2025-06-27 00:16:10.955201+00 2025-06-27 00:16:10.955209+00 f t 2025-07-02 19:30:00 NO_REPORT clinical ECG PREQUIRURQUICO 0.00 0.00 0.00 2025-07-02 22:30:00+00 0 710 2947 113 82 d1muqn0n4vgcs79ht8j0iirmcs \N \N +1628 2025-07-01 21:19:17.428269+00 2025-07-01 21:19:17.428279+00 f t 2025-07-03 08:00:00 NO_REPORT clinical Extraccion 0.00 0.00 0.00 2025-07-03 11:00:00+00 0 3745 3175 113 85 gob6e6v36f9ms2c6pm4lcanti0 \N \N +1609 2025-06-30 12:48:45.391566+00 2025-06-30 12:48:45.391573+00 f t 2025-06-30 11:30:00 NO_REPORT clinical Come poco, vomita lo que consume 50000.00 10000.00 40000.00 2025-06-30 14:30:00+00 LMORZP9054G16ZYRNEGJ46 3643 3093 1026 74 qb9a13hp0u7u7ej40bu20auov8 760 \N +1612 2025-06-30 14:47:41.261086+00 2025-06-30 14:47:41.261094+00 f t 2025-07-01 17:30:00 COMPLETED clinical Tiene lastimaduras en la piel 42000.00 9500.00 32500.00 2025-07-01 20:30:00+00 116358337333 676 799 1026 80 ck6nq8jdom7phnchv225m2n514 741 \N +1614 2025-06-30 18:07:52.597148+00 2025-06-30 18:07:52.597155+00 f t 2025-07-01 17:30:00 COMPLETED telemedicina Resolución de estudios Abonarle a Vero 27500.00 27500.00 17500.00 2025-07-01 20:30:00+00 74420096 2732 2418 1026 91 p5fmgglegfqnvd6m2fsl8ogj64 742 \N +1618 2025-07-01 00:10:05.67019+00 2025-07-01 00:10:05.670202+00 f t 2025-07-01 13:00:00 COMPLETED clinical Eco por diagnostico de cistitis 62000.00 12000.00 50000.00 2025-07-01 16:00:00+00 \N 3693 3135 113 90 up8r8l9knq03g0mpvjvita50s4 747 \N +1622 2025-07-01 13:43:14.913202+00 2025-07-01 13:43:14.91321+00 f t 2025-07-11 15:30:00 COMPLETED clinical Endocrinología 61000.00 11000.00 50000.00 2025-07-11 18:30:00+00 CA167-379529/1 3712 3149 1026 98 4ngbk11b03u9dhc9qkabigqhcs 659 \N +1261 2025-05-22 15:19:32.971806+00 2025-05-22 15:19:32.971816+00 f t 2025-05-24 16:00:00 COMPLETED clinical desparasitación interna y externa 71100.00 9100.00 62000.00 2025-05-24 19:00:00+00 112463559846 753 878 112 80 7bdji1jpfb32vjsldi7bn4s7po \N \N +1616 2025-06-30 23:55:38.62578+00 2025-06-30 23:55:38.625789+00 f t 2025-07-04 14:30:00 COMPLETED clinical RX 70000.00 15000.00 55000.00 2025-07-04 17:30:00+00 116267417857 507 599 113 84 t72avff6o1ladf5t3qdc3ravuk 714 \N +1600 2025-06-28 22:23:33.33093+00 2025-06-28 22:23:33.330938+00 f t 2025-07-01 15:30:00 NO_REPORT clinical Corte de garras 30700.00 7700.00 23000.00 2025-07-01 18:30:00+00 116175581663 3551 3029 114 85 t4d6j9vh0s5g0kovtqaenq0t2k 744 \N +1621 2025-07-01 13:35:09.598304+00 2025-07-01 13:35:09.598315+00 f t 2025-07-01 15:00:00 COMPLETED clinical Reaparición de síntomas urinarios 50000.00 10000.00 40000.00 2025-07-01 18:00:00+00 116479472561 1807 1714 1026 91 7cssfk4dt77iopuf3frc6kqnj8 745 \N +1593 2025-06-27 18:37:08.053001+00 2025-06-27 18:37:08.05301+00 f t 2025-06-27 17:00:00 COMPLETED clinical Eco abdominal 67000.00 12000.00 55000.00 2025-06-27 20:00:00+00 116079547457 3494 2987 1026 90 1pmelnkjilteu9t4a1l7e3l3fs 772 \N +2574 2025-09-20 16:10:54.618958+00 2025-09-20 16:10:54.618967+00 f t 2025-10-01 17:00:00 COMPLETED clinical vac. anual x2 descuento multimascota 140400.00 27400.00 113000.00 2025-10-01 20:00:00+00 126912746336 5733 7451 1208 68 oqqaoph5p7gqkukdui20cppobs \N \N +1613 2025-06-30 16:04:58.718082+00 2025-06-30 16:04:58.718092+00 f t 2025-07-01 13:00:00 COMPLETED clinical Control anual+ antirrábica 49500.00 11500.00 38000.00 2025-07-01 16:00:00+00 116368759635 3656 3104 1026 80 qceg0uegh21a7hpsn6kmh97d2g 746 \N +1610 2025-06-30 13:39:09.058697+00 2025-06-30 13:39:09.058704+00 f t 2025-06-30 13:30:00 COMPLETED clinical Está con estornudos y come menos 50000.00 10000.00 40000.00 2025-06-30 16:30:00+00 74163731 3645 3095 1026 91 aud82nl49c8375u652qc2lrt4k 758 \N +2208 2025-08-22 22:25:40.318067+00 2025-08-22 22:25:40.318078+00 f t 2025-08-23 17:00:00 COMPLETED clinical Tos Sospecha de asma y desparasitacion int + ext Tos Sospecha de asma y desparasitacion int + ext 83000.00 16500.00 66500.00 2025-08-23 20:00:00+00 123344397558 7112 5819 1583 89 mj9hom1651vtbu889pajv9g59c 267 \N +1601 2025-06-28 22:27:31.062932+00 2025-06-28 22:27:31.062938+00 f t 2025-06-28 16:00:00 COMPLETED clinical agitación y solo toma agua 50000.00 10000.00 40000.00 2025-06-28 19:00:00+00 116178739721 3553 3031 114 68 pojbfi68dshddpluv8nc1b0690 767 \N +1243 2025-05-21 00:49:44.995924+00 2025-05-21 00:49:44.995933+00 f t 2025-06-10 18:30:00 COMPLETED clinical Pack de visitas- Ultima visita 0.00 0.00 0.00 2025-06-10 21:30:00+00 0 631 741 113 87 p4rglss3p4ipt5d1cp4mijbmv8 \N \N +2439 2025-09-09 19:19:57.969653+00 2025-09-09 19:19:57.969661+00 f t 2025-09-09 17:00:00 COMPLETED clinical no come y no se quiere mover de la cama 55000.00 11000.00 44000.00 2025-09-09 20:00:00+00 L18MKX9R7LEK4OPK9O6WYV 8310 6843 1208 1 kf32p6qvibudnqsd4sfuhfjk9g 98 \N +1850 2025-07-22 20:25:08.130531+00 2025-07-22 20:25:08.130539+00 f t 2025-07-25 10:00:00 COMPLETED clinical extraccion de sangre sedado con gabapentina 94700.00 56700.00 38000.00 2025-07-25 13:00:00+00 119529202310 5071 4186 1208 1 8nvhljufd47elnijvkkdicm7lo 543 \N +1596 2025-06-27 19:26:39.228057+00 2025-06-27 19:26:39.228064+00 f t 2025-06-30 17:30:00 COMPLETED vaccination Se detalla en el turno de Gris 0.00 0.00 0.00 2025-06-30 20:30:00+00 0 3496 2988 1026 1 p27hvs5qla2o7vipkpqnrshf60 \N \N +1594 2025-06-27 19:25:04.398963+00 2025-06-27 19:25:04.398973+00 f t 2025-06-30 17:30:00 COMPLETED clinical Vacunación anual + desparasitación interna y externa 283500.00 45000.00 238500.00 2025-06-30 20:30:00+00 116083406011 3496 2990 1026 1 f0j03ob37m5h5ofci5kvtj3elg 756 \N +1840 2025-07-21 23:10:25.711886+00 2025-07-21 23:10:25.711895+00 f t 2025-07-25 13:00:00 CANCELLED clinical Extraccion Pagarle a antonella los 23.000- se le cobro en la devolucion hecha 30700.00 7700.00 23000.00 2025-07-25 16:00:00+00 \N 1807 1714 113 85 ukvc4vqm0ftl0u41f33djqk608 \N \N +1591 2025-06-27 15:21:10.377869+00 2025-06-27 15:21:10.377879+00 f t 2025-07-01 10:30:00 NO_REPORT clinical Eco abdominal 55800.00 5800.00 50000.00 2025-07-01 13:30:00+00 37806896067 2046 1891 1026 5 68b03esa570o4clbp0sc921i20 750 \N +1605 2025-06-29 21:54:11.286449+00 2025-06-29 21:54:11.286458+00 f t 2025-06-30 12:30:00 COMPLETED vaccination Segunda dosis de la quíntuple 64500.00 17000.00 47500.00 2025-06-30 15:30:00+00 151b74bc-9aba-4ba7-bcab-db2214 824 930 114 88 b88p8lmig4a291vr7f0qeou63s 759 \N +1604 2025-06-28 22:40:42.990968+00 2025-06-28 22:40:42.990975+00 f t 2025-06-28 19:30:00 COMPLETED clinical Ecografía Abdominal 67000.00 12000.00 55000.00 2025-06-28 22:30:00+00 50256649009250628 3554 3032 114 90 ae9bf2au64e28vsn2f3e38atg0 763 \N +1592 2025-06-27 15:30:23.856316+00 2025-06-27 15:30:23.856325+00 f t 2025-06-27 16:30:00 COMPLETED clinical Eco abdominal de urgencia 67000.00 12000.00 55000.00 2025-06-27 19:30:00+00 116551676752 3480 2973 1026 90 c3imiv22hgg65b4sfibuafsh30 773 \N +3348 2025-11-20 19:08:26.75263+00 2025-11-20 19:08:26.75264+00 f t 2025-11-20 18:00:00 NO_REPORT clinical Consulta post estudios Se le debe 19500 a la doctora 30000.00 30000.00 0.00 2025-11-20 21:00:00+00 82916194 13661 11265 1583 68 dg6ka712k2nosr10ibu3mp56fg \N 1701 +1615 2025-06-30 21:57:38.975757+00 2025-06-30 21:57:38.975765+00 t t 2025-07-15 10:00:00 NO_REPORT clinical Traslado de Muestra: $12.000\r\nPerfil prequirurgico:$66.000 78000.00 78000.00 0.00 2025-07-15 13:00:00+00 0 703 821 113 86 \N \N \N +1603 2025-06-28 22:36:16.367927+00 2025-06-28 22:36:16.367966+00 f t 2025-06-28 19:00:00 COMPLETED clinical Perro con parálisis patas traseras, Uña infectada 50000.00 10000.00 40000.00 2025-06-28 22:00:00+00 11669774756 3546 3027 114 92 fb6nkciuun0h4n8b6vu7krsb24 764 \N +1608 2025-06-29 22:04:58.535717+00 2025-06-29 22:04:58.535725+00 f t 2025-06-29 21:00:00 COMPLETED clinical Aplicación de suero vía endovenosa 50000.00 10000.00 40000.00 2025-06-30 00:00:00+00 116774493268 3613 3078 114 80 dtggsvgfnn4k87qnl5ubepeo2g 761 \N +1443 2025-06-11 13:19:57.984346+00 2025-06-11 13:19:57.984352+00 f t 2025-06-25 10:30:00 COMPLETED clinical Vacunación anual 129600.00 23600.00 106000.00 2025-06-25 13:30:00+00 114686965100 2547 2276 1026 68 sl0q7ca7fr0040n11gmctfje0o 794 \N +1587 2025-06-27 14:02:19.667534+00 2025-06-27 14:02:19.667543+00 f t 2025-07-02 18:30:00 COMPLETED clinical Está todo cargado en el turno de Quirón 0.00 0.00 0.00 2025-07-02 21:30:00+00 1581759990 3484 2978 1026 91 6ncm2nfse1djt58kjus7b23768 \N \N +1595 2025-06-27 19:26:00.94583+00 2025-06-27 19:26:00.945837+00 f t 2025-06-30 17:30:00 COMPLETED vaccination Se detalla en el turno de Gris 0.00 0.00 0.00 2025-06-30 20:30:00+00 0 3496 2989 1026 1 7dop1gvodl13jv5qh89fc6ijss \N \N +1643 2025-07-02 20:12:47.592698+00 2025-07-02 20:12:47.592705+00 f t 2025-07-04 16:30:00 NO_REPORT clinical El veterinario solicito control cardiólogo porque tuvimos que sedarlo porque tenia una herida en un cachete y su ritmo cardiaco disminuyo, y el oftalmólogo porque tiene inflamados los ojos el veterinario le dio unas gotas pero no vemos cambio y según nos dijeron las pestañas medio que se van hacia adentro.. 95000.00 10000.00 85000.00 2025-07-04 19:30:00+00 D4RO172VEOV50QPKNKJ3QE 3784 3207 1208 82 jhp1dqu06h81qdqdd8t986c1e8 712 \N +1633 2025-07-02 15:26:14.523109+00 2025-07-02 15:26:14.523117+00 f t 2025-07-02 13:00:00 COMPLETED clinical PGC S/O + RETIRO 45000.00 45000.00 0.00 2025-07-02 16:00:00+00 117110617710 449 532 1026 86 1dcejm7l8g26kt9f27j2q6e6ng 736 \N +1639 2025-07-02 18:54:07.296784+00 2025-07-02 18:54:07.296791+00 f t 2025-06-03 10:00:00 COMPLETED clinical Perfil general sin orina \r\nTraslado 45000.00 45000.00 0.00 2025-06-03 13:00:00+00 0 2042 1889 113 86 7nanbqk5peq21m0a3qifdcbbps 949 \N +1636 2025-07-02 16:53:20.617461+00 2025-07-02 16:53:20.617467+00 f t 2025-07-03 08:00:00 COMPLETED clinical Verificar todo en laboratorio de Kamal 0.00 0.00 0.00 2025-07-03 11:00:00+00 0 3745 3175 113 86 \N \N \N +1644 2025-07-02 23:06:39.999514+00 2025-07-02 23:06:39.999523+00 f t 2025-07-02 20:30:00 COMPLETED telemedicina Devolucion de resultados 27500.00 27500.00 17500.00 2025-07-02 23:30:00+00 3877045905 3645 3095 113 91 qcos0gqe25pmqnjjmu7hka094c 730 \N +1624 2025-07-01 15:01:47.484145+00 2025-07-01 15:01:47.484155+00 f t 2025-07-01 13:00:00 COMPLETED clinical Posible eutanasia 137500.00 27500.00 110000.00 2025-07-01 16:00:00+00 116983046214 3724 3157 1026 1 lga87k5m7630nrc90oab96q8i0 748 \N +1116 2025-05-07 19:14:10.44137+00 2025-05-07 19:14:10.441379+00 f t 2025-05-12 18:30:00 COMPLETED vaccination El monto total de la consulta se cargó en el turno de Tony 0.00 0.00 0.00 2025-05-12 21:30:00+00 30413417017250507 839 945 112 87 aqeg10v5jj7b2esol4j8aqs458 \N \N +1685 2025-07-07 17:34:12.288103+00 2025-07-07 17:34:12.28811+00 f t 2025-07-08 20:00:00 NO_REPORT clinical Desparasitación interna y externa más vacunación antirrábica Px con temperamento y también hizo dos transferencias - 10517209009250708 72000.00 19000.00 53000.00 2025-07-08 23:00:00+00 117733029458 4115 3432 114 70 phkq8ffq5eoi1s471peiri2dag 683 \N +1634 2025-07-02 16:37:25.716+00 2025-07-02 16:37:25.716007+00 f t 2025-07-03 09:30:00 COMPLETED clinical Derivacion con el servicio de endocrinologia Abonarle a caro la teleconsulta $30.000 40000.00 10000.00 0.00 2025-07-03 12:30:00+00 76233472 2732 2418 113 98 rtcr4fh5al5loo8h4bskn5622c 727 \N +1857 2025-07-23 13:31:14.814578+00 2025-07-23 13:31:14.814586+00 f t 2025-07-24 20:00:00 COMPLETED clinical Eco abdominal 62000.00 12000.00 50000.00 2025-07-24 23:00:00+00 119604223698 5107 4213 1026 90 s1b53st4p9j1ovqg0rt5bom4ic 547 \N +3137 2025-11-04 21:13:32.339973+00 2025-11-04 21:13:32.339982+00 f t 2025-11-05 16:00:00 COMPLETED clinical Consulta general de estado de salud, vacunas anuales y desparasitacion interna y externa para 29kg 124900.00 30900.00 94000.00 2025-11-05 19:00:00+00 132498394646 12388 10233 1583 88 328ngekjbrnmr5q2f63hmpoodg \N 1408 +1632 2025-07-02 13:54:14.853364+00 2025-07-02 13:54:14.853374+00 f t 2025-07-04 10:00:00 COMPLETED clinical cara lastimada y un ojo medio cerrado, posiblemente por una pelea con un perro. 42000.00 9500.00 32500.00 2025-07-04 13:00:00+00 117101382612 3757 3188 1026 74 u3k26mpt5re6j313bpp41tbmdg 715 \N +1147 2025-05-12 16:58:15.091796+00 2025-05-12 16:58:15.091807+00 f t 2025-05-12 18:00:00 COMPLETED vaccination vacunación y posible desparasitación Lo abona cata, hay que transferirle a Palladino 59500.00 59500.00 0.00 2025-05-12 21:00:00+00 lo abona cata 938 1042 112 70 j3qb49m4vr75qmdc6d8t5bstv4 \N \N +1851 2025-07-22 20:25:26.909146+00 2025-07-22 20:25:26.909153+00 f t 2025-07-25 10:00:00 COMPLETED clinical 0.00 0.00 0.00 2025-07-25 13:00:00+00 0 5071 4186 1208 100 v9jpsq47jio3s1eu44d7o92cg8 \N \N +1821 2025-07-19 16:16:27.506619+00 2025-07-19 16:16:27.506626+00 f t 2025-07-21 21:00:00 COMPLETED clinical Control y revision de analisis 37800.00 5300.00 32500.00 2025-07-22 00:00:00+00 119173164084 3710 3148 1208 70 6o950ok1kdqjbsarjd5kgi353o 572 \N +1845 2025-07-22 15:13:36.397669+00 2025-07-22 15:13:36.397675+00 f t 2025-07-22 14:30:00 COMPLETED clinical Está con vómitos 50000.00 10000.00 40000.00 2025-07-22 17:30:00+00 119499956924 1009 1325 1026 91 khh5vmqpbfib82v3tp01du7l4c 569 \N +3127 2025-11-04 17:03:31.207905+00 2025-11-04 17:03:31.207913+00 f t 2025-11-14 10:00:00 NO_REPORT clinical Extraccion para erlichia, encontro una garrapata muerta. 66900.00 26400.00 40500.00 2025-11-14 13:00:00+00 131869978593 7277 5971 1583 68 o75r1n7qpja1mpajm34b658qck \N 1396 +1646 2025-07-02 23:16:53.690916+00 2025-07-02 23:16:53.690923+00 f t 2025-07-04 18:30:00 COMPLETED clinical Vomitos intermitentes 42000.00 9500.00 32500.00 2025-07-04 21:30:00+00 \N 3804 3223 113 70 5025bpe135v2oesrdlstbtdmvk 710 \N +1629 2025-07-01 23:02:36.507875+00 2025-07-01 23:02:36.507897+00 f t 2025-07-03 18:00:00 COMPLETED clinical refuerzo vacunacion 64500.00 17000.00 47500.00 2025-07-03 21:00:00+00 67REZ8NPWJD11YXP94KVGO 812 923 1208 89 krq9nqaq7f8700khd4srmj3glg 722 \N +2339 2025-09-01 22:07:40.708584+00 2025-09-01 22:07:40.708592+00 f t 2025-09-12 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-09-12 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 rklmv0cn723vs5tbstus53q5p8 \N \N +3332 2025-11-19 19:03:42.257737+00 2025-11-19 19:03:42.257746+00 f t 2025-11-22 10:00:00 NO_REPORT clinical fluidoterapia endovenosa 56000.00 0.00 56000.00 2025-11-22 13:00:00+00 133879580779 13352 11001 1208 70 mu9daev7cmn6efakacvqu8m2j4 \N 1685 +1638 2025-07-02 17:14:44.051216+00 2025-07-02 17:14:44.051226+00 f t 2025-07-02 21:00:00 COMPLETED clinical Irritacion de ojos- estornudos a repeticios- se le observa un tercer parpado pronunciado 50000.00 10000.00 40000.00 2025-07-03 00:00:00+00 116631828851 3740 3171 113 70 38ccqgj0ctbpq4asu9qrc0gekg 729 \N +1645 2025-07-02 23:14:20.01599+00 2025-07-02 23:14:20.015999+00 f t 2025-07-02 19:30:00 COMPLETED clinical Eco abdominal 62000.00 12000.00 52000.00 2025-07-02 22:30:00+00 116655421825 3803 3222 113 90 ahn69qj7798qdahljk19gncfe0 732 \N +1640 2025-07-02 20:00:34.30777+00 2025-07-02 20:00:34.307779+00 f t 2025-07-03 17:30:00 COMPLETED clinical consulta clinica y vacunaciones 153900.00 26400.00 127500.00 2025-07-03 20:30:00+00 37873400691 3789 3213 1208 1 qip8t4u2bp3o3pgm6th2rdq788 723 \N +1627 2025-07-01 21:18:40.021913+00 2025-07-01 21:18:40.02192+00 f t 2025-07-03 08:00:00 NO_REPORT clinical Extraccion 38400.00 9900.00 28500.00 2025-07-03 11:00:00+00 37854740167 3745 3176 113 85 gp4mka04hv7p1rh13gap89fm5s 728 \N +1630 2025-07-02 00:31:14.245906+00 2025-07-02 00:31:14.245913+00 f t 2025-07-02 09:00:00 COMPLETED clinical cheque clinico y extraccion de sangre 49700.00 11700.00 38000.00 2025-07-02 12:00:00+00 117051692728 449 532 1208 1 gbbe067q263mpd410tsnl1tijk 737 \N +1363 2025-06-03 20:30:44.986341+00 2025-06-03 20:30:44.986348+00 f t 2025-06-04 18:30:00 COMPLETED clinical Toma de muestras- retiro- 99360.00 55860.00 43500.00 2025-06-04 21:30:00+00 113790478806 1888 1775 1026 92 cjgu81ea5qqq7iigf1i4li59ko 935 \N +1761 2025-07-14 19:54:40.197647+00 2025-07-14 19:54:40.197654+00 f t 2025-07-14 17:30:00 COMPLETED clinical Rescatamos a una perrita preñada está por tener..necesito vete a domicilio no quiere caminar tiene mucho miedo .. 50000.00 10000.00 40000.00 2025-07-14 20:30:00+00 118080048459 4549 3787 1026 1 6096ruqc5kolbnsu1j66g0ag00 630 \N +2816 2025-10-08 15:34:37.69321+00 2025-10-08 15:34:37.693222+00 f t 2025-10-09 09:00:00 COMPLETED clinical Consulta post estudios Se le debe $ 19500 a la vete 30000.00 30000.00 0.00 2025-10-09 12:00:00+00 128561246245 9991 8265 1583 88 qqp98iif3a55l19sv4ejf63890 \N 917 +1626 2025-07-01 16:40:50.005875+00 2025-07-01 16:40:50.005935+00 f t 2025-07-01 19:30:00 NO_REPORT clinical ruidos en la pancita y diarrea 50000.00 10000.00 40000.00 2025-07-01 22:30:00+00 116502549245 3735 3166 1026 70 bhfllj9a002aq9g9ud0rk4a4g8 738 \N +1665 2025-07-04 17:42:04.983351+00 2025-07-04 17:42:04.983359+00 f t 2025-07-04 14:30:00 NO_REPORT clinical Comisión por la cremación de la mascota 29250.00 0.00 0.00 2025-07-04 17:30:00+00 116874646537 544 641 1026 95 i7067m842fvgas5ifibi2hk11g \N \N +1659 2025-07-04 13:29:20.113024+00 2025-07-04 13:29:20.113032+00 f t 2025-07-08 12:30:00 CANCELLED clinical Consulta oftalmológica 85000.00 47500.00 37500.00 2025-07-08 15:30:00+00 R7ZG0QNJ846GPY4NEXYPO 3784 3207 1026 11 suc80am1k1r41pfsmcdnmdgo9o \N \N +1664 2025-07-04 17:38:48.203491+00 2025-07-04 17:38:48.203499+00 f t 2025-07-06 11:00:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-07-06 14:00:00+00 37900248794 3911 3286 1026 92 kek8vj5kpha64s1gl73fpkgkb4 698 \N +1666 2025-07-04 19:58:31.983514+00 2025-07-04 19:58:31.983522+00 f t 2025-07-05 11:00:00 COMPLETED clinical Eutanasia 175000.00 35000.00 140000.00 2025-07-05 14:00:00+00 117398202038 3916 3289 1026 1 2buvc8s0aggupuobreaab1dvi0 706 \N +1917 2025-07-29 14:40:05.897067+00 2025-07-29 14:40:05.897076+00 f t 2025-07-30 14:00:00 COMPLETED clinical Revisión de la mascota para avanzar con la vacunación (está con parásitos) 42000.00 9500.00 32500.00 2025-07-30 17:00:00+00 120264730702 5486 4495 1026 1 3s7hun54cfrj7bltkoncbg03eg 494 \N +1650 2025-07-03 15:48:09.749178+00 2025-07-03 15:48:09.749185+00 f t 2025-07-05 13:00:00 COMPLETED vaccination Vacunación anual Abonarle a la vete: 53000,00 72000.00 72000.00 53000.00 2025-07-05 16:00:00+00 117235557636 3719 3152 1026 80 qu5han24i5drcl5hotbji26glk 704 \N +1654 2025-07-03 19:30:54.477237+00 2025-07-03 19:30:54.477244+00 f t 2025-07-29 09:00:00 COMPLETED clinical extracción + emisión de orden perfil general 82700.00 44700.00 38000.00 2025-07-29 12:00:00+00 77340764 3849 3250 1026 79 arnj0mufp3flfion162gv5erkk 511 \N +1852 2025-07-22 22:15:32.127302+00 2025-07-22 22:15:32.127309+00 f t 2025-07-23 10:30:00 COMPLETED clinical Consulta por perrito en mal estado general, muy flaco y con un ojito lastimado 42000.00 9500.00 32500.00 2025-07-23 13:30:00+00 11178245009250722 5078 4191 1208 68 5ggssjfrnnq70mg5b4og3q4olo 560 \N +1651 2025-07-03 18:03:52.326573+00 2025-07-03 18:03:52.32658+00 f t 2025-07-03 20:00:00 COMPLETED clinical Está resfriado, congestión nasal y estornudos 50000.00 10000.00 40000.00 2025-07-03 23:00:00+00 116759557223 2657 2361 1026 1 lumuh148h838ijtu3s8s4g14gg 717 \N +1661 2025-07-04 16:25:03.422603+00 2025-07-04 16:25:03.422613+00 f t 2025-07-04 18:00:00 COMPLETED clinical molestias en las orejas 75000.00 10000.00 65000.00 2025-07-04 21:00:00+00 116873211241 745 869 1026 91 bpnmiv4l617f8se94q290g0ogc 711 \N +1660 2025-07-04 15:34:25.520234+00 2025-07-04 15:34:25.520242+00 f t 2025-07-05 14:00:00 COMPLETED clinical heces con sangre 55000.00 10000.00 45000.00 2025-07-05 17:00:00+00 117357595330 3901 3279 1026 21 0pfc2shg47cs3hjb5cp1nucpjc 703 \N +1606 2025-06-29 21:57:27.540773+00 2025-06-29 21:57:27.54078+00 f t 2025-06-29 18:00:00 COMPLETED clinical Ecografía abdominal 67000.00 12000.00 55000.00 2025-06-29 21:00:00+00 70099038010250629 3560 3037 114 90 iaejtg9t6h1mf1eghunknt0olc 762 \N +1705 2025-07-08 23:10:47.267366+00 2025-07-08 23:10:47.267375+00 f t 2025-07-09 15:00:00 COMPLETED clinical eco abdominal 67000.00 12000.00 55000.00 2025-07-09 18:00:00+00 117910523538 4214 3517 1208 90 40s9r760bsr4u5punv1bng6olc 678 \N +2571 2025-09-19 22:47:13.111703+00 2025-09-19 22:47:13.111713+00 f t 2025-09-20 11:00:00 COMPLETED clinical Evaluar si esta para eutanasia, no puede costear los gastos veterinarios y darle calidad de vida. Perrita ciega, no camina, no tiene dientes y comenzo con diarrea Abono con credito.\r\nAbonar a Dani $44.000 55000.00 55000.00 44000.00 2025-09-20 14:00:00+00 126843074020 8973 7426 1208 68 jhrb79cd45h70rchgvk63o9u10 \N \N +1647 2025-07-02 23:36:24.790665+00 2025-07-02 23:36:24.790673+00 f t 2025-07-03 19:30:00 COMPLETED clinical Decaimiento, temblor, inflamacion de glandulas anales 42000.00 9500.00 32500.00 2025-07-03 22:30:00+00 37877771273 3805 3224 113 1 01gj5gkdu68f9aagn725c55uik 719 \N +1667 2025-07-04 20:46:10.58093+00 2025-07-04 20:46:10.58094+00 f t 2025-07-12 12:00:00 COMPLETED clinical Vacunacion anual Suma otra vacunacion anual para Valentina 64800.00 11800.00 53000.00 2025-07-12 15:00:00+00 116909669337 2925 2567 1208 88 8sg7bf1j6rfggf8bskfd9b0pp8 650 \N +2167 2025-08-20 13:29:28.970199+00 2025-08-20 13:29:28.970207+00 f t 2025-08-20 12:00:00 COMPLETED clinical Vomitó unas 4 veces, comió poco, durmió más de lo normal y cuando la alzo y quiero moverla maúlla suave 50000.00 10000.00 40000.00 2025-08-20 15:00:00+00 38519623372 6925 5666 1208 1 cbh8pj74jap1i6b6gqlc4ss86g 303 \N +1662 2025-07-04 16:26:35.600479+00 2025-07-04 16:26:35.60049+00 f t 2025-07-04 18:00:00 COMPLETED clinical detalle en el turno de Thor 0.00 0.00 0.00 2025-07-04 21:00:00+00 0 745 3282 1026 91 5q9jvia6spt28g8a2i36it4s88 \N \N +1649 2025-07-03 13:27:56.50699+00 2025-07-03 13:27:56.506997+00 f t 2025-07-04 19:00:00 COMPLETED clinical Completar plan de vacunación Lo abona Cata 53000.00 53000.00 53000.00 2025-07-04 22:00:00+00 \N 938 1042 118 92 s04tp2tqqch3hr18lem65n246o 709 \N +1658 2025-07-03 20:52:26.615293+00 2025-07-03 20:52:26.615303+00 f t 2025-07-05 14:00:00 COMPLETED clinical Pack de visitas- visita N°2 0.00 0.00 0.00 2025-07-05 17:00:00+00 0 1734 1651 1026 92 r339potqg4hdg9e5uhn0jjprig \N \N +1656 2025-07-03 20:29:33.959185+00 2025-07-03 20:29:33.959194+00 f t 2025-07-04 20:00:00 COMPLETED clinical Decaimiento general, con perdida del apetito, baja ingesta de agua 42000.00 9500.00 32500.00 2025-07-04 23:00:00+00 116774235907 3866 3257 113 70 kgkedgge7n4m1sfl5cial7pmgk 708 \N +1762 2025-07-14 20:40:44.77089+00 2025-07-14 20:40:44.770899+00 t t 2025-07-19 12:30:00 PENDING clinical Eutanasia 99900.00 12400.00 87500.00 2025-07-19 15:30:00+00 \N 4163 3470 1026 88 q8dpst814qil787fbv139tiu8o \N \N +1653 2025-07-03 19:13:22.697103+00 2025-07-03 19:13:22.697109+00 f t 2025-07-03 15:00:00 COMPLETED clinical Vacunación antirrábica y certificado de salud Transacción: Z4K6DVNOD03QXGV495J8LQ del certificado de salud 64900.00 15900.00 49000.00 2025-07-03 18:00:00+00 Z4K6DVNOD037K3QM95J8LQ 1941 1816 1208 1 684c289rn9pablieuq8kddmoik 724 \N +1345 2025-06-02 14:52:48.066519+00 2025-06-02 14:52:48.066526+00 f t 2025-06-05 18:00:00 NO_REPORT clinical le cuesta caminar, esta comiendo poco Se cancela el turno por la muerte de la mascota\r\n113753224888 (devolución) 42000.00 9500.00 32500.00 2025-06-05 21:00:00+00 70188641009250602 2015 1876 1026 97 arpucouv7fg0s1uhqokbgfrgv8 927 \N +1599 2025-06-27 20:27:34.311393+00 2025-06-27 20:27:34.3114+00 f t 2025-07-20 11:00:00 CANCELLED clinical Limpieza dental 1. Consulta clínica + extracción de sangre: $49.800\r\n2. Traslado muestra + Laboratorio: $78.000\r\n3. Analisis cardiologico de $95.000\r\n4. Cirugía: $145.000 145000.00 25000.00 120000.00 2025-07-20 14:00:00+00 3781143872 703 821 1026 92 g5ro366bbl7pouv47oad4dq4ck \N \N +2751 2025-10-03 18:17:46.217892+00 2025-10-03 18:17:46.217901+00 f t 2025-10-15 15:30:00 COMPLETED clinical Ecografia abdominal. 73000.00 13000.00 60000.00 2025-10-15 18:30:00+00 Z4K6DVN0DZ34R87M95J8LQ 9953 8226 1583 117 ati4gj1vmmkse8fk03a5ub2b04 \N 826 +1892 2025-07-26 19:01:06.965374+00 2025-07-26 19:01:06.965381+00 f t 2025-08-05 14:00:00 NO_REPORT clinical Prequirurgicos para cx de bulto en la cara 95000.00 10000.00 85000.00 2025-08-05 17:00:00+00 119980927276 1798 1709 1208 82 rant63ole3lcan12a9dgai5kdg 433 \N +1706 2025-07-09 21:40:21.064472+00 2025-07-09 21:40:21.064478+00 f t 2025-07-09 15:30:00 COMPLETED clinical Eutanasia 119000.00 24000.00 95000.00 2025-07-09 18:30:00+00 LMORZP905WKE1KM4NEGJ46 4254 3549 114 1 qasnbr6knama2224frsj288lt0 677 \N +3283 2025-11-15 20:08:30.213144+00 2025-11-15 20:08:30.213153+00 f t 2025-11-19 18:00:00 COMPLETED clinical Note que tiene una pelota en la panza nose que será. Se estresa y se asusta cuando va al vete. 46000.00 11000.00 35000.00 2025-11-19 21:00:00+00 39684565424 13402 11037 1208 101 3ij0vbfru4rh5auhphkubo9tsg \N 1614 +1691 2025-07-08 00:01:40.461592+00 2025-07-08 00:01:40.461601+00 f t 2025-07-09 12:00:00 COMPLETED clinical Caida del pelo 42000.00 9500.00 32500.00 2025-07-09 15:00:00+00 37951439202 4142 3452 113 92 fpai5u8d1gla37idm3s4tt00g8 679 \N +2256 2025-08-26 17:31:15.55823+00 2025-08-26 17:31:15.558241+00 f t 2025-08-26 14:30:00 COMPLETED clinical chequeo 50000.00 10000.00 40000.00 2025-08-26 17:30:00+00 123218636289 7319 6015 1208 88 giper9emjk9mhskpf9llgf6s9c 234 \N +1682 2025-07-07 17:18:12.357113+00 2025-07-07 17:18:12.357122+00 f t 2025-07-08 14:00:00 NO_REPORT clinical Rengueo 42000.00 9500.00 32500.00 2025-07-08 17:00:00+00 117728618504 4113 3430 114 70 mdecuuanqk5qetb3peeplusruk 691 \N +1684 2025-07-07 17:28:47.016045+00 2025-07-07 17:28:47.016055+00 f t 2025-07-07 20:00:00 COMPLETED clinical Vómitos continuos desde ayer 50000.00 10000.00 40000.00 2025-07-07 23:00:00+00 1177174988 4114 3431 114 68 44macpgjgbfm1huegtudtsj6ng 693 \N +1688 2025-07-07 23:04:17.283161+00 2025-07-07 23:04:17.28317+00 f t 2025-07-08 21:00:00 NO_REPORT clinical Dx de tiroides,protusiones por el cuerpo. 42000.00 9500.00 32500.00 2025-07-09 00:00:00+00 117774011484 4127 3442 113 70 0rlsb5c7oqc91bk1u1gik3pdng 682 \N +1678 2025-07-06 20:37:04.022598+00 2025-07-06 20:37:04.022603+00 f t 2025-07-14 11:00:00 NO_REPORT vaccination Vacunación Antirrábica 49500.00 11500.00 38000.00 2025-07-14 14:00:00+00 117610226808 3986 3338 114 2 c259qmlgr0n64javv1suisdm54 640 \N +1677 2025-07-05 21:51:08.552966+00 2025-07-05 21:51:08.552973+00 f t 2025-07-05 18:30:00 COMPLETED clinical Lastimadura en el lomo 50000.00 10000.00 40000.00 2025-07-05 21:30:00+00 0 3656 3104 114 70 1haruut9834cfroc4qotos0ksg 700 \N +1885 2025-07-25 22:11:26.611915+00 2025-07-25 22:11:26.611922+00 f t 2025-07-26 16:00:00 COMPLETED clinical Vacunacion anual 72000.00 19000.00 53000.00 2025-07-26 19:00:00+00 119385459367 5254 4321 113 92 nu4kgccn38hdrqp10lm4op6ajk 526 \N +1672 2025-07-05 19:10:55.142986+00 2025-07-05 19:10:55.142992+00 f t 2025-02-04 10:30:00 COMPLETED clinical Perfil General Completo 41800.00 41800.00 0.00 2025-02-04 13:30:00+00 101267069580 413 492 114 86 qu7rg73mbtaeff17ucerm99a74 \N \N +1060 2025-04-25 21:07:55.902495+00 2025-04-25 21:07:55.902506+00 f t 2025-04-28 18:30:00 COMPLETED vaccination VISITA 2. Pack 4 visitas, vacunacion inicial para 2 cachorros. clienta compro pack de 4 visitas, son 5 5 vacunas sextuple y 2 antirrabica, son 5 sextuple porque 1 perro ya tiene la primer dosis, el vete recibe pago total por parte de la clienta en 1er visita 0.00 0.00 0.00 2025-04-28 21:30:00+00 \N 631 741 111 87 d5r2kj3720t7ilol8tjp1qdsgs \N \N +1702 2025-07-08 18:12:35.481235+00 2025-07-08 18:12:35.481244+00 f t 2025-07-11 20:30:00 COMPLETED telemedicina mascota con edad, quiere saber si hay que darle vitaminas, etc Abonarle a Cami $17.500 27500.00 27500.00 0.00 2025-07-11 23:30:00+00 117373800293 854 962 1026 94 745lke0aam0plj6gvnt6m28ljk 656 \N +1679 2025-07-06 20:48:06.430546+00 2025-07-06 20:48:06.430553+00 f t 2025-07-12 10:30:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-07-12 13:30:00+00 117114053019 3988 3339 114 88 8dst5naqpaj1soeaol9te14k80 652 \N +1669 2025-07-04 23:38:16.455686+00 2025-07-04 23:38:16.455694+00 f t 2025-07-09 09:00:00 COMPLETED clinical Vacunacion anual + corte de garra 79700.00 21200.00 58500.00 2025-07-09 12:00:00+00 \N 3926 3296 113 80 qhon75ccsnlkbco00im0jib8qc 681 \N +2164 2025-08-19 23:40:49.618424+00 2025-08-19 23:40:49.618434+00 f t 2025-08-19 21:00:00 COMPLETED clinical Defeca con sangre 50000.00 10000.00 40000.00 2025-08-20 00:00:00+00 122952263736 6893 5636 114 92 5etcqkudgd1gi1sc1rojj3u5ts 309 \N +1213 2025-05-19 15:56:34.057965+00 2025-05-19 15:56:34.057975+00 f t 2025-05-21 16:00:00 COMPLETED clinical 0.00 0.00 0.00 2025-05-21 19:00:00+00 112121938302 1271 1296 112 89 sckumtflkd32u8rv92ff69tv3k \N \N +1370 2025-06-04 16:21:27.097771+00 2025-06-04 16:21:27.09778+00 f t 2025-06-06 10:30:00 COMPLETED clinical Oaky tuvo problemas urinarios y mejoró con medicación.\r\nSilvia indica que encontró orina con color más oscuro (pareciera sangre), quiere realizar control por ambas mascotas 75600.00 10600.00 65000.00 2025-06-06 13:30:00+00 1134406060219 2157 1976 1026 79 ltajl6kn74pirhn6grosv9vl50 924 \N +1692 2025-07-08 00:17:02.661182+00 2025-07-08 00:17:02.661193+00 f t 2025-07-08 20:00:00 COMPLETED clinical Eco abdominal 62000.00 12000.00 50000.00 2025-07-08 23:00:00+00 117280831947 4149 3457 113 90 n389bidssko4239n7lscgv462s 684 \N +2265 2025-08-27 00:00:42.879873+00 2025-08-27 00:00:42.879886+00 f t 2025-08-28 08:00:00 COMPLETED clinical Extracción 48500.00 28500.00 20000.00 2025-08-28 11:00:00+00 123242512655 7341 6029 114 104 vc29lbrq800s74lhs0pr3gf0rg 219 \N +2168 2025-08-20 15:16:43.491834+00 2025-08-20 15:16:43.491841+00 f t 2025-08-23 10:30:00 NO_REPORT clinical Rayos x2 80000.00 65000.00 15000.00 2025-08-23 13:30:00+00 123031637004 6951 5687 1583 84 n920h5sfmbu29u65j3i4nb0h6s 271 \N +1676 2025-07-05 21:49:06.128021+00 2025-07-05 21:49:06.128028+00 f t 2025-07-05 17:30:00 COMPLETED clinical Urgencia por Vómitos y diarrea continos desde ayer 50000.00 10000.00 40000.00 2025-07-05 20:30:00+00 XJ8G7V95EYGQ3W6M2EMPYR 3887 3270 114 92 mivedt09k3k7pgf80u1819fk44 701 \N +1631 2025-07-02 13:20:37.345272+00 2025-07-02 13:20:37.345279+00 f t 2025-07-03 19:30:00 CANCELLED clinical Eutanasia 117000.00 24500.00 92500.00 2025-07-03 22:30:00+00 117051370028 3777 3202 1026 91 sqrmvci2bes02h05jgqsh259lo \N \N +1707 2025-07-09 21:48:07.017662+00 2025-07-09 21:48:07.017671+00 f t 2025-07-09 16:30:00 COMPLETED clinical Tiene artrosis regenerativa, presenra decaimiento 50000.00 10000.00 40000.00 2025-07-09 19:30:00+00 117970960626 4255 3550 114 88 7rj1cu2dmlg3b6ms5r4kc3s914 676 \N +1670 2025-07-05 00:18:11.130114+00 2025-07-05 00:18:11.130125+00 f t 2025-07-05 11:30:00 COMPLETED clinical Falta de apetito- tos 50000.00 10000.00 40000.00 2025-07-05 14:30:00+00 0V1JXON1D54P1KQG9Z64EL 3927 3297 113 88 f459j4743i19hv5epabpfsdcno 705 \N +1675 2025-07-05 21:47:27.953404+00 2025-07-05 21:47:27.95341+00 f t 2025-07-05 19:30:00 COMPLETED clinical granos y Costras en la zona del cuello 50000.00 10000.00 40000.00 2025-07-05 22:30:00+00 117527433142 3981 3336 114 92 reilba9aqeqdjtv2gv76ipq2jo 699 \N +1725 2025-07-10 21:09:50.333222+00 2025-07-10 21:09:50.333229+00 f t 2025-07-12 11:30:00 COMPLETED clinical Dolor de oidos 50000.00 10000.00 40000.00 2025-07-12 14:30:00+00 \N 4325 3603 113 99 hvm1t8lej530p5pkm88od9rlao 651 \N +2850 2025-10-11 20:19:26.268188+00 2025-10-11 20:19:26.268197+00 f t 2025-10-12 17:00:00 COMPLETED clinical Es para drenar una glándula perianal que está obstruida e inflamada. 55000.00 11000.00 44000.00 2025-10-12 20:00:00+00 128996033115 10504 8722 1208 91 5d88c2j88obqbi81ej3fosp1o0 \N 965 +1681 2025-07-07 17:13:22.211382+00 2025-07-07 17:13:22.21139+00 t t 2025-07-07 18:30:00 NO_REPORT clinical Bulto que supura 50000.00 10000.00 40000.00 2025-07-07 21:30:00+00 117718329154 4101 3420 114 99 010g70js2d55ar73ff55poggok \N \N +1782 2025-07-15 21:26:22.004907+00 2025-07-15 21:26:22.004915+00 f t 2025-09-05 09:00:00 NO_REPORT clinical Consulta cardiológica 0.00 0.00 0.00 2025-09-05 12:00:00+00 0 4573 3804 1026 73 8f4u85bp2nn6cp86io4balkm6o \N \N +1252 2025-05-21 20:43:03.887502+00 2025-05-21 20:43:03.887511+00 f t 2025-05-22 19:00:00 COMPLETED clinical Le apareció un granito en la espalda antes era rosa y ahora se oscureció.\r\nPx con temperamento. 38500.00 8500.00 30000.00 2025-05-22 22:00:00+00 112384127102 1402 1386 112 97 athhvkp52osap7fdl801fsge38 \N \N +1671 2025-07-05 00:33:25.731624+00 2025-07-05 00:33:25.731631+00 f t 2025-07-04 17:00:00 CANCELLED clinical eco de urgencia por posible piometra 67000.00 12000.00 55000.00 2025-07-04 20:00:00+00 \N 3930 3299 1208 90 2kpti9u2dekmlpsau8gltp5290 \N \N +2292 2025-08-29 19:18:45.288102+00 2025-08-29 19:18:45.288111+00 f t 2025-08-29 20:00:00 COMPLETED clinical Extracción de sangre y revisión por vomitos 57700.00 12200.00 45500.00 2025-08-29 23:00:00+00 \N 7483 6153 114 68 qtf067bv6meq4maaof32mehs38 197 \N +1715 2025-07-10 14:13:39.662507+00 2025-07-10 14:13:39.662516+00 f t 2025-07-10 17:00:00 COMPLETED clinical Dolores en los huesos 50000.00 10000.00 40000.00 2025-07-10 20:00:00+00 118081651138 4297 3585 1026 80 693fglm3tih7aimos9cd13eui0 667 \N +1581 2025-06-27 00:18:21.741594+00 2025-06-27 00:18:21.741602+00 f t 2025-06-30 16:00:00 COMPLETED clinical Extraccion mas pedido de prequirurgico + con recuento de plaqueta 99400.00 23400.00 76000.00 2025-06-30 19:00:00+00 \N 710 827 113 88 cot8srgj0l0cn9j3p6fluvgad8 757 \N +1716 2025-07-10 14:40:02.93128+00 2025-07-10 14:40:02.931291+00 f t 2025-07-10 15:30:00 COMPLETED clinical Eutanasia 134000.00 24000.00 110000.00 2025-07-10 18:30:00+00 118085810518 4300 3587 1026 68 463f03m6lsjc9nbqa0bqtnmp4g 668 \N +1708 2025-07-09 21:53:56.691917+00 2025-07-09 21:53:56.691925+00 f t 2025-07-09 17:00:00 COMPLETED clinical Presenta Vómitos y sangrado, decaímiento 50000.00 10000.00 40000.00 2025-07-09 20:00:00+00 37972346878 4257 3552 114 92 dm9bk1jpv0h736js7ckbqj24pc 675 \N +1378 2025-06-05 13:29:30.455029+00 2025-06-05 13:29:30.455038+00 f t 2025-06-05 18:30:00 COMPLETED clinical estuvo maullando mucho desde las 6 de la mañana. Parece que le cuesta tomar agua, como si le doliera la boca. Cuando se queda quieto se le cae un poco la saliva 50000.00 10000.00 40000.00 2025-06-05 21:30:00+00 37514392524 2203 2014 1026 70 0si8ork3ufoc99344u93a14oas 926 \N +1731 2025-07-11 19:31:55.996434+00 2025-07-11 19:31:55.996444+00 f t 2025-07-09 11:30:00 COMPLETED clinical Perfil general sin orina 33000.00 33000.00 33000.00 2025-07-09 14:30:00+00 \N 272 320 113 100 e9eebn27bs3l6ru0kq0bhoh6u0 680 \N +2263 2025-08-26 23:54:57.686239+00 2025-08-26 23:54:57.686248+00 f t 2025-08-26 19:00:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-08-26 22:00:00+00 0 183 6027 114 88 uqnpvs7iak6ph7nv1t8l2ib228 \N \N +1733 2025-07-11 20:48:23.732393+00 2025-07-11 20:48:23.732402+00 f t 2025-07-14 15:30:00 COMPLETED clinical Traslado+laboratorio 70300.00 70300.00 0.00 2025-07-14 18:30:00+00 118263671810 2894 2549 1026 100 h45dog20gf3an1m52umake9il8 634 \N +1724 2025-07-10 20:57:00.680696+00 2025-07-10 20:57:00.680705+00 f t 2025-07-12 10:30:00 COMPLETED clinical Vacunación anual 72000.00 19000.00 53000.00 2025-07-12 13:30:00+00 76V4MR2ZP6VJ8M89DEZOL 4324 3602 1026 89 cn25pgcsvk8tb7r1flp346tld0 653 \N +1720 2025-07-10 18:18:57.876755+00 2025-07-10 18:18:57.876763+00 f t 2025-07-15 12:30:00 COMPLETED clinical Consulta dermatológica 70000.00 10000.00 60000.00 2025-07-15 15:30:00+00 WY7ZEPN6Q6Q5MXGQNQ0M51 1082 1150 1026 75 8q4hudqfrcqnv9cp3nf5nf9g50 624 \N +413 2025-01-13 21:43:43.877+00 2025-01-13 21:43:43.877+00 f t 2025-01-15 18:30:00 COMPLETED clinical Revision general x2 gatos Pendiente pagar vete honorarios 63000.00 63000.00 50400.00 2025-01-15 21:30:00+00 99222866488 313 373 110 71 \N \N \N +1723 2025-07-10 20:49:13.551188+00 2025-07-10 20:49:13.551194+00 f t 2025-07-10 19:00:00 COMPLETED clinical Esta con calmantes orales pero hoy no quiere comer y no le puedo dar sus calmantes. 50000.00 10000.00 40000.00 2025-07-10 22:00:00+00 37989174176 4322 3601 1026 1 feubcc29r0a4kloh3661kqihu0 663 \N +1980 2025-08-03 19:28:42.774351+00 2025-08-03 19:28:42.774357+00 f t 2025-08-03 19:00:00 COMPLETED clinical diarrea desde el viernes, no come y toma poca agua pago con link de pago, se le debe a Majo 50000.00 50000.00 40000.00 2025-08-03 22:00:00+00 120365570825 5811 4752 1208 79 rl2j4u9ftvc1ogb53snj3m1soo 450 \N +1920 2025-07-29 15:15:36.638813+00 2025-07-29 15:15:36.63882+00 f t 2025-07-29 17:00:00 COMPLETED clinical Ecografía 67000.00 12000.00 55000.00 2025-07-29 20:00:00+00 8D0Q619LO8EEKMXZ97JZ5R 5477 4487 1026 90 11oo0j2q5k0pck45l6tv3qgodo 503 \N +1721 2025-07-10 18:40:24.251508+00 2025-07-10 18:40:24.251517+00 f t 2025-07-11 18:30:00 NO_REPORT clinical 72000.00 19000.00 53000.00 2025-07-11 21:30:00+00 118115946092 1275 3598 1208 70 ioijcolh6bsjahp1o92nl5uupg 658 \N +1729 2025-07-10 22:52:44.000757+00 2025-07-10 22:52:44.000764+00 f t 2025-07-11 13:30:00 COMPLETED clinical Tos como con catarro y el maullido 42000.00 9500.00 32500.00 2025-07-11 16:30:00+00 \N 4334 3609 113 68 kqbl70sq8q7posc083n7evbui0 660 \N +1734 2025-07-11 20:58:25.831745+00 2025-07-11 20:58:25.831752+00 f t 2025-07-11 20:00:00 NO_REPORT clinical Hinchazon en la zona de los ojos 50000.00 10000.00 40000.00 2025-07-11 23:00:00+00 JMQKYZ9QO61G3P162V5OP3 4380 3643 1026 70 1kuq10cgjsf3po50fm5p86igbk 657 \N +2319 2025-09-01 15:28:04.872921+00 2025-09-01 15:28:04.87293+00 f t 2025-09-01 14:00:00 NO_REPORT clinical Ecografia abdominal 68000.00 13000.00 55000.00 2025-09-01 17:00:00+00 123916303625 7721 6357 1583 90 jkjgecsgamcmac1kn87roo0sgc 175 \N +2447 2025-09-10 20:26:10.117702+00 2025-09-10 20:26:10.117709+00 f t 2025-09-16 13:30:00 COMPLETED clinical Chequeo general por que come poco 46000.00 11000.00 35000.00 2025-09-16 16:30:00+00 125133226799 8394 6915 1583 101 f4uh2po85frqgbic4dsump0cek 36 \N +1690 2025-07-07 23:42:50.908856+00 2025-07-07 23:42:50.908864+00 f t 2025-07-07 18:30:00 COMPLETED clinical Lesion supurativa 50000.00 10000.00 40000.00 2025-07-07 21:30:00+00 117718329154 4071 3400 113 99 kra92moc8no7f202kari6hgqlg 694 \N +3164 2025-11-06 16:54:06.840519+00 2025-11-06 16:54:06.84053+00 f t 2025-11-11 15:00:00 NO_REPORT clinical Vacunas anuales Descuento recompra 140400.00 27400.00 113000.00 2025-11-11 18:00:00+00 132143626367 11481 9508 1208 1 tii8lq0r6j9m9d9ktl47mglkb4 \N 1435 +1727 2025-07-10 21:32:23.935547+00 2025-07-10 21:32:23.935557+00 f t 2025-07-10 08:00:00 COMPLETED clinical Diagnostico de gestación 62000.00 12000.00 50000.00 2025-07-10 11:00:00+00 37946341589 4096 3415 113 90 srp1iv76tptms028e48hu6f1bk 672 \N +1728 2025-07-10 22:27:28.954665+00 2025-07-10 22:27:28.954678+00 f t 2025-07-18 11:30:00 COMPLETED clinical 72000.00 19000.00 53000.00 2025-07-18 14:30:00+00 118144935570 4332 3608 1208 97 2nitdi4bcgvtu3aojvm047qs5s 593 \N +1445 2025-06-11 13:43:24.517994+00 2025-06-11 13:43:24.518005+00 f t 2025-06-11 20:00:00 COMPLETED clinical Tiene tos 50000.00 10000.00 40000.00 2025-06-11 23:00:00+00 11424774025 1009 1325 1026 91 i5ut7kvnhgp6vkgvk97iiuu640 877 \N +1717 2025-07-10 15:36:40.854525+00 2025-07-10 15:36:40.854533+00 f t 2025-07-10 12:30:00 NO_REPORT clinical Comisión 29250.00 0.00 0.00 2025-07-10 15:30:00+00 117593848405 4127 3442 1026 95 hdebo79jlf10g5ephpnta860og \N \N +1977 2025-08-03 13:37:32.271215+00 2025-08-03 13:37:32.271225+00 f t 2025-08-03 13:00:00 COMPLETED clinical posible conjuntivitis 50000.00 10000.00 40000.00 2025-08-03 16:00:00+00 98872344 5189 4266 1208 68 gs70d6f19h7rmop6pqbnemae0c 452 \N +1722 2025-07-10 20:27:22.887402+00 2025-07-10 20:27:22.887411+00 f t 2025-07-10 18:30:00 NO_REPORT clinical control clinico 45000.00 5000.00 40000.00 2025-07-10 21:30:00+00 D4RO172VE6ZYK3DKNKJ3QE 451 534 113 70 k87dr4ag0b6o9o4b9pm317m84s 664 \N +1712 2025-07-09 22:37:22.318043+00 2025-07-09 22:37:22.31805+00 f t 2025-07-09 21:00:00 COMPLETED clinical Ecografía Abdominal 67000.00 12000.00 55000.00 2025-07-10 00:00:00+00 118017756764 4256 3551 114 90 j2j3anp3io25t9braot8rqbtbk 673 \N +840 2025-03-18 23:14:59.73181+00 2025-03-18 23:14:59.731819+00 f t 2025-03-20 10:00:00 NO_REPORT clinical Consulta clínica con extracción de sangre para realizar estudios Servicios\tPrecio cliente\tCliente paga seña\r\nClínica \t$38.500\t$8.500\r\nExtraccion de sangre\t$7.000\t$2.000\r\nPCR Leucemia Felina ViLeF\t$42.000\t$42.000\r\nPerfil General Básico\t$20.000\t$20.000\r\nTraslado de las muestras\t$12.000\t$12.000 95000.00 10000.00 85000.00 2025-03-20 13:00:00+00 \N 541 637 110 82 1curl7v58h1ikk8navjnl2utlc \N \N +3010 2025-10-26 18:30:07.986916+00 2025-10-26 18:30:07.986927+00 f t 2025-10-26 14:00:00 COMPLETED clinical Dolor en la pata trasera \N 55000.00 11000.00 44000.00 2025-10-26 17:00:00+00 71242068 11560 9572 \N 70 lnt5oedgn53tu1l1k72ofu3rmo \N 1214 +2858 2025-10-12 20:27:05.865467+00 2025-10-12 20:27:05.865477+00 f t 2025-10-12 17:30:00 COMPLETED clinical Miasis 86500.00 17000.00 69500.00 2025-10-12 20:30:00+00 129078756353 10564 8766 114 92 resfs6call3cavbnap01sgjgr0 \N 975 +2169 2025-08-20 15:26:23.285926+00 2025-08-20 15:26:23.285933+00 f t 2025-08-20 20:00:00 COMPLETED telemedicina 27500.00 27500.00 17500.00 2025-08-20 23:00:00+00 122497721171 5239 4305 1583 80 ch0g4ua85vptn3elcqhsq6jjrg 295 \N +1752 2025-07-13 19:28:06.536685+00 2025-07-13 19:28:06.536693+00 f t 2025-07-14 17:00:00 COMPLETED clinical Defecta con sangre 42000.00 9500.00 32500.00 2025-07-14 20:00:00+00 117944626377 4485 3735 114 91 s7176iieei50cmls1rd7m8jdd0 632 \N +1335 2025-05-30 23:58:27.486342+00 2025-05-30 23:58:27.486349+00 f t 2025-06-01 16:00:00 COMPLETED clinical Revision de estado de salud, solicitud para realizar un citologico. 46000.00 9500.00 36500.00 2025-06-01 19:00:00+00 113377054310 1888 1775 113 92 ma4vtpiuoh19avrfojhfcdt3jg 960 \N +1385 2025-06-05 19:14:16.538545+00 2025-06-05 19:14:16.538556+00 f t 2025-06-06 17:00:00 COMPLETED clinical está viejo ya y está teniendo problemas de cadera y patas de atrás porque es callejero con ovejero\r\nEstá teniendo problemas para dormir, camina en círculos para avanzar y creemos que está perdiendo mucho la vista. 48000.00 9500.00 38500.00 2025-06-06 20:00:00+00 113553199525 2225 2036 1026 21 eppo8cib8je3tsrobm2fl49bks 919 \N +932 2025-04-03 15:56:33.58639+00 2025-04-03 15:56:33.586396+00 f t 2025-04-03 18:00:00 COMPLETED vaccination Pack 4 visitas, vacunacion inicial para 2 cachorros. clienta compro pack de 4 visitas, son 5 5 vacunas sextuple y 2 antirrabica, son 5 sextuple porque 1 perro ya tiene la primer dosis, el vete recibe pago total por parte de la clienta en 1er visita 311600.00 22600.00 290000.00 2025-04-03 21:00:00+00 \N 631 741 111 87 mgedr4bi9pt1hca49u9im37k88 \N \N +1758 2025-07-14 18:02:54.113412+00 2025-07-14 18:02:54.113423+00 f t 2025-07-14 17:00:00 NO_REPORT clinical Radiografías 157000.00 30000.00 127000.00 2025-07-14 20:00:00+00 30237808010250714 4317 3596 1026 84 1em53qbbuvv7peb8tk20eje2lg 631 \N +1739 2025-07-12 00:29:06.942791+00 2025-07-12 00:29:06.942798+00 f t 2025-07-15 10:00:00 COMPLETED clinical control clinico por perdida de peso 42000.00 9500.00 32500.00 2025-07-15 13:00:00+00 \N 4384 3648 113 80 77jd167o5i355gte3ffc3ukl5k 626 \N +1753 2025-07-13 19:34:48.365462+00 2025-07-13 19:34:48.365473+00 f t 2025-07-19 09:00:00 NO_REPORT clinical Radiografía - Placas 75000.00 15000.00 60000.00 2025-07-19 12:00:00+00 117956642559 4433 3688 114 84 p4flt4ree0bumjnvstafs7qv3o 588 \N +1747 2025-07-13 12:17:28.975479+00 2025-07-13 12:17:28.975485+00 f t 2025-07-14 16:00:00 COMPLETED clinical vac. anual 102600.00 17100.00 85500.00 2025-07-14 19:00:00+00 11850105308 4418 3677 1208 1 knb57ro4d0pi88ect7pe9au9i8 633 \N +1043 2025-04-24 00:56:37.820782+00 2025-04-24 00:56:37.82079+00 f t 2025-04-25 18:00:00 COMPLETED clinical Eco abdominal Se le debe abonar a daniela la consulta--> revisando el chat estaba mal cobrado porque dani cambio los honorario por lo que vi a 50k 52000.00 12000.00 50000.00 2025-04-25 21:00:00+00 108846740537 713 832 113 90 f73tefalhqd43bspfhlojftph4 \N \N +1971 2025-08-02 18:18:01.796791+00 2025-08-02 18:18:01.796802+00 f t 2025-08-02 21:00:00 COMPLETED clinical descatar que sea piometra 78000.00 13000.00 65000.00 2025-08-03 00:00:00+00 120774654040 5757 4709 1208 90 idqpf1r4f45nckm3s1dgn09rqs 456 \N +1967 2025-08-01 22:38:26.444577+00 2025-08-01 22:38:26.444585+00 f t 2025-08-02 15:00:00 COMPLETED clinical Revision por el cuadro en cuestion 50000.00 10000.00 40000.00 2025-08-02 18:00:00+00 120172027803 733 856 113 88 j6qfjkaj5bc7g1gt28ni5996b0 462 \N +1740 2025-07-12 00:29:12.84909+00 2025-07-12 00:29:12.849098+00 t t 2025-07-15 10:00:00 PENDING clinical control clinico por perdida de peso 42000.00 9500.00 32500.00 2025-07-15 13:00:00+00 \N 4384 3648 113 80 2okpvpslotb4l895ffr0s4bj8g \N \N +1741 2025-07-12 16:11:34.802707+00 2025-07-12 16:11:34.802716+00 f t 2025-07-12 19:30:00 COMPLETED clinical Eco abdominal por regurgitaciones, vómitos, diarrea y perdida de peso 67000.00 12000.00 55000.00 2025-07-12 22:30:00+00 84952637 4265 3560 1208 90 al0er688tcilqpos6gogr6v4hg 647 \N +1755 2025-07-13 19:40:10.746279+00 2025-07-13 19:40:10.746286+00 f t 2025-07-13 17:00:00 COMPLETED clinical Vacunación anual 72000.00 19000.00 53000.00 2025-07-13 20:00:00+00 117953682021 264 308 114 92 c5i74mgl185oeq5dvsim5eh4qs 641 \N +1745 2025-07-12 20:37:20.969228+00 2025-07-12 20:37:20.969238+00 f t 2025-07-13 12:00:00 COMPLETED clinical Llora continuamente 50000.00 10000.00 40000.00 2025-07-13 15:00:00+00 \N 4434 3689 114 92 ippvrthakbrks0lphkshvc2b8s 643 \N +1746 2025-07-12 20:42:04.141969+00 2025-07-12 20:42:04.141979+00 f t 2025-07-12 21:00:00 NO_REPORT clinical Ecografía abdominal en centro 85000.00 12000.00 73000.00 2025-07-13 00:00:00+00 38016077074 4435 3690 114 90 a3ch4i9k9o6bfihidrreo5739g 646 \N +1738 2025-07-12 00:12:06.349451+00 2025-07-12 00:12:06.349461+00 f t 2025-07-13 10:30:00 COMPLETED clinical Vacunación anual 72000.00 19000.00 53000.00 2025-07-13 13:30:00+00 84610887 4390 3654 113 21 1chf11ilea9al9mvb5sirbv608 645 \N +1756 2025-07-14 13:52:48.793342+00 2025-07-14 13:52:48.79335+00 f t 2025-07-14 20:00:00 COMPLETED vaccination Vacunación antirábica 99000.00 23000.00 76000.00 2025-07-14 23:00:00+00 118036922551 4512 3758 1026 68 e4hji22d6bjnl1q45hq39lqef0 628 \N +1744 2025-07-12 20:32:25.04366+00 2025-07-12 20:32:25.043668+00 f t 2025-07-13 11:00:00 COMPLETED clinical Control general por tos 50000.00 10000.00 40000.00 2025-07-13 14:00:00+00 117850807225 4433 3688 114 80 6celaikmg7f10ujmpaa8mj5e6o 644 \N +1757 2025-07-14 13:53:19.245577+00 2025-07-14 13:53:19.245584+00 f t 2025-07-14 22:00:00 COMPLETED vaccination Se detalla en el turno de Mateo 0.00 0.00 0.00 2025-07-15 01:00:00+00 0 4512 3757 1026 68 bajre4u1lghquvrrbt9htjn7mc \N \N +1750 2025-07-13 14:35:49.351844+00 2025-07-13 14:35:49.351851+00 f t 2025-07-15 18:00:00 COMPLETED vaccination Vacunación de la Triple Felina 64500.00 17000.00 47500.00 2025-07-15 21:00:00+00 \N 4471 3722 114 92 nu81bv8ccrb80loo660pvs0n0s 623 \N +1749 2025-07-13 14:35:34.116685+00 2025-07-13 14:35:34.116692+00 t t 2025-07-13 13:00:00 PENDING vaccination Vacunación de la Triple Felina 64500.00 17000.00 47500.00 2025-07-13 16:00:00+00 \N 4471 3722 114 92 s310fafg2c7bt4pc8gdskmvdk4 \N \N +1742 2025-07-12 17:16:11.375965+00 2025-07-12 17:16:11.375975+00 f t 2025-07-14 15:30:00 NO_REPORT clinical 75000.00 15000.00 60000.00 2025-07-14 18:30:00+00 118148666408 4337 3611 1208 84 6imrnjn0bpd91b5pf1rgdkdh0s 635 \N +1748 2025-07-13 12:18:29.639374+00 2025-07-13 12:18:29.639382+00 f t 2025-07-14 16:00:00 COMPLETED clinical Consulta clinica porque se rasca atras de las orejas y tiene un poco pelado 0.00 0.00 0.00 2025-07-14 19:00:00+00 0 4418 3678 1208 1 0np3mb9cfbvdsr3fent8v4lf2o \N \N +1759 2025-07-14 18:53:51.817818+00 2025-07-14 18:53:51.817829+00 f t 2025-07-17 14:00:00 COMPLETED clinical en la zona de los bigotes del lado derecho le falta pelo 42000.00 9500.00 32500.00 2025-07-17 17:00:00+00 38036753988 4550 3788 1026 80 1vgbq63nltdq836cttd9ehbnno 603 \N +1754 2025-07-13 19:38:09.504526+00 2025-07-13 19:38:09.504536+00 f t 2025-07-13 14:00:00 COMPLETED clinical Control por descompostura 50000.00 10000.00 40000.00 2025-07-13 17:00:00+00 L0EJWV9JL8GVVZ38NQMD0G 533 628 114 92 5ev96dp276tmdb17ee5hdlhpic 642 \N +1743 2025-07-12 20:27:01.312537+00 2025-07-12 20:27:01.312545+00 f t 2025-07-12 18:30:00 NO_REPORT clinical Ecografía abdominal 67000.00 12000.00 55000.00 2025-07-12 21:30:00+00 38013960179 602 3687 114 90 83519phekju0eitv613os6r93c 648 \N +1853 2025-07-22 23:43:27.252556+00 2025-07-22 23:43:27.252563+00 f t 2025-07-23 13:00:00 COMPLETED clinical Control clinico + extraccion 49700.00 11700.00 38000.00 2025-07-23 16:00:00+00 119044110911 5081 4193 113 68 t58rvlte1lmf7l86v7phkjjbdk 557 \N +1283 2025-05-26 15:39:52.712609+00 2025-05-26 15:39:52.712615+00 f t 2025-05-26 14:00:00 COMPLETED clinical Tiene los ganglios inflamados y dificultades al tragar/comer sus pelets; no ha dejado de hidratarse ni de comer pero si lo siento más bajo de energía y no se si tendrá gripe o algo en un diente pagarle al vete $6500 por confusion en el chat con el cliente. 46000.00 8500.00 30000.00 2025-05-26 17:00:00+00 112863013106 1589 1537 111 91 2vhpvsujhifqutc6l7g7astklk \N \N +1607 2025-06-29 22:01:01.085628+00 2025-06-29 22:01:01.085635+00 f t 2025-06-30 19:00:00 COMPLETED telemedicina Revisión de resultados https://meet.google.com/rqr-psss-xki 27500.00 27500.00 0.00 2025-06-30 22:00:00+00 37830497509 2672 2369 114 91 bth83rombibo9ks56jj6kr5lfg 755 \N +1771 2025-07-15 13:11:29.292089+00 2025-07-15 13:11:29.292096+00 f t 2025-07-18 17:30:00 COMPLETED clinical Extracción de puntos 84000.00 19000.00 65000.00 2025-07-18 20:30:00+00 86602243 710 827 1026 91 f5cl5m12u91b213fib0bjlvvqg 590 \N +1787 2025-07-16 14:30:54.676132+00 2025-07-16 14:30:54.676138+00 f t 2025-07-17 15:30:00 CANCELLED clinical Traslado+ PCR VILEF 57500.00 57500.00 0.00 2025-07-17 18:30:00+00 30106047010250716 4670 3878 1026 100 qea577t53nc8qua1rfeitg0ta4 \N \N +1763 2025-07-14 20:41:58.172515+00 2025-07-14 20:41:58.172522+00 t t 2025-07-18 18:00:00 PENDING clinical Retiro de puntos 42000.00 9500.00 32500.00 2025-07-18 21:00:00+00 \N 4263 3558 1026 70 hukpc1a7ao452m4ldht0glh9r4 \N \N +2859 2025-10-12 20:34:27.480717+00 2025-10-12 20:34:27.480726+00 f t 2025-10-17 18:30:00 COMPLETED clinical Ecografia Abdominal. 68000.00 13000.00 55000.00 2025-10-17 21:30:00+00 39202193670 123 128 114 90 9ivepqfovdvnqvmrmlkr6jviv4 \N 996 +1929 2025-07-30 00:32:34.071776+00 2025-07-30 00:32:34.071782+00 f t 2025-07-30 08:30:00 COMPLETED clinical Retiro de orina que no se pudo realizar hoy 12000.00 12000.00 0.00 2025-07-30 11:30:00+00 10342154008250729 5329 4376 1208 100 6qajuejh7slvfdfiqv3f5780bg 496 \N +1767 2025-07-14 23:40:12.031952+00 2025-07-14 23:40:12.031962+00 f t 2025-07-14 19:30:00 COMPLETED clinical Secrecion de moco 50000.00 10000.00 40000.00 2025-07-14 22:30:00+00 118598937742 3360 2881 113 1 8rm9bngnjhlvk4rgurlhh48tr8 629 \N +1769 2025-07-15 00:01:27.912428+00 2025-07-15 00:01:27.912438+00 f t 2025-07-17 11:00:00 COMPLETED clinical PGC S/o= $33.000\r\nT4 TOTAL: 16000\r\nTralado :$12000\r\nCopropasitologico:$12000 La clienta tranfirio $103.300. \r\n\r\nSeria $103700 73000.00 73000.00 0.00 2025-07-17 14:00:00+00 \N 4265 3560 113 100 r795n3p8v49sc7rn5usb51m468 608 \N +1846 2025-07-22 17:34:56.248056+00 2025-07-22 17:34:56.248063+00 f t 2025-07-23 09:30:00 COMPLETED clinical Extracción ABONARLE $38.000 A LISANDRO 49700.00 49700.00 0.00 2025-07-23 12:30:00+00 119004320777 5058 4178 1026 1 pu28hefge3tiab2ehonus1rf08 562 \N +1020 2025-04-20 21:57:09.73972+00 2025-04-20 21:57:09.739727+00 f t 2025-04-22 16:00:00 COMPLETED clinical Vacunacion anual y control por gingivitis 104500.00 25500.00 79000.00 2025-04-22 19:00:00+00 36993506493 703 821 114 89 e71e6dm9anbccvgd6brc0h2f4c \N \N +1776 2025-07-15 16:17:23.051552+00 2025-07-15 16:17:23.051562+00 f t 2025-07-15 20:30:00 NO_REPORT clinical Eutanasia 119000.00 24000.00 95000.00 2025-07-15 23:30:00+00 86771585 4616 3836 1026 70 7nphq0alv6gp1eopnm9ikeeqf0 618 \N +1784 2025-07-16 12:57:12.787256+00 2025-07-16 12:57:12.787263+00 f t 2025-07-16 10:30:00 COMPLETED clinical Eutanasia 125000.00 25000.00 100000.00 2025-07-16 13:30:00+00 118280956677 4665 3873 1026 1 njqdqam79k67aenmd5maknmhmg 616 \N +1774 2025-07-15 14:56:20.156647+00 2025-07-15 14:56:20.156654+00 f t 2025-07-16 18:30:00 NO_REPORT vaccination Se detalla en el turno de Pejerrey 0.00 0.00 0.00 2025-07-16 21:30:00+00 0 4604 3830 1026 70 f2ualoqjae766krv34s2ror1n4 \N \N +1768 2025-07-14 23:45:23.008751+00 2025-07-14 23:45:23.008758+00 f t 2025-07-17 09:00:00 NO_REPORT clinical Extraccion 30700.00 7700.00 23000.00 2025-07-17 12:00:00+00 118608911764 4265 3560 113 85 s3locgs204j43v6eaked29ji8s 609 \N +1773 2025-07-15 14:54:55.928425+00 2025-07-15 14:54:55.928435+00 f t 2025-07-16 18:30:00 NO_REPORT vaccination Vacunación anual 129600.00 23600.00 106000.00 2025-07-16 21:30:00+00 1186725770048 4604 3826 1026 70 nnbml1k07b75fcir57ldoln220 611 \N +1765 2025-07-14 21:19:01.454231+00 2025-07-14 21:19:01.454238+00 f t 2025-07-30 16:00:00 NO_REPORT clinical Fluidoterapia 48500.00 9500.00 39000.00 2025-07-30 19:00:00+00 118587344610 4555 3791 1026 66 186usq469s301f35h8r0flnb20 493 \N +1812 2025-07-18 12:57:26.851968+00 2025-07-18 12:57:26.851977+00 f t 2025-07-22 14:00:00 COMPLETED clinical Eco abdominal 62000.00 12000.00 55000.00 2025-07-22 17:00:00+00 38082273917 3820 3232 1026 90 86okejnu6ptl5nsbi2t1utps38 570 \N +1783 2025-07-16 00:09:33.622544+00 2025-07-16 00:09:33.622551+00 f t 2025-07-17 18:00:00 NO_REPORT clinical 89100.00 5100.00 84000.00 2025-07-17 21:00:00+00 8d0q619loe1jqoox97jz5r 4624 3841 1208 84 li9cjum998o44jkth8g4ncjv8c 597 \N +1775 2025-07-15 15:21:14.80787+00 2025-07-15 15:21:14.807878+00 f t 2025-07-15 20:00:00 COMPLETED clinical Eco abdominal 60300.00 5300.00 55000.00 2025-07-15 23:00:00+00 118171789311 4549 3787 1026 90 ccfrhp9mh29p30ottij1k7d28c 619 \N +2575 2025-09-20 17:10:47.125775+00 2025-09-20 17:10:47.125784+00 f t 2025-09-20 17:30:00 COMPLETED clinical Tiene lastimado en su cole, con sangrado, por pelea con otros gatos 55000.00 11000.00 44000.00 2025-09-20 20:30:00+00 ORD6LEN87WKG1Y8Y2M1Y30 9008 7454 1208 91 1pc1mlfacek62ir77knf6rcvo4 \N \N +1883 2025-07-25 18:33:12.246952+00 2025-07-25 18:33:12.246961+00 f t 2025-07-26 12:30:00 COMPLETED clinical Molestia en oidos 50000.00 10000.00 40000.00 2025-07-26 15:30:00+00 983083964 167 176 1026 88 e06gtudveqj4v2kolji6ahfu9g 531 \N +1777 2025-07-15 16:37:04.414446+00 2025-07-15 16:37:04.414456+00 f t 2025-07-15 19:30:00 COMPLETED clinical Un gato prestado no castrado de unos 4/5 años , grita las 24 h , pensé que había entrado en celo … pero hace 20/25 días que está así . 50000.00 10000.00 40000.00 2025-07-15 22:30:00+00 99391567 4618 3838 1026 89 4vhg5ns5n4fr83mmtmpvot56ek 621 \N +2452 2025-09-10 23:41:05.932819+00 2025-09-10 23:41:05.932827+00 f t 2025-09-11 19:00:00 COMPLETED clinical Control por vomitos 46000.00 11000.00 35000.00 2025-09-11 22:00:00+00 125162393821 8400 6924 113 70 h4eulau5bcfqrg222b8ovtncig 71 \N +1766 2025-07-14 23:38:11.267165+00 2025-07-14 23:38:11.267172+00 f t 2025-07-17 17:30:00 COMPLETED telemedicina Seguimiento de tratamiento 27500.00 27500.00 17500.00 2025-07-17 20:30:00+00 3D5W612EJD5Y7K359GXYVR 3804 3223 113 70 ig6s4aid39va3a1c6egua92drs 598 \N +1218 2025-05-19 16:46:53.535098+00 2025-05-19 16:46:53.535106+00 f t 2025-05-20 18:30:00 COMPLETED clinical Vacunación anual 237600.00 41600.00 196000.00 2025-05-20 21:30:00+00 111599171785 1275 1302 112 70 eia3f1grd4vfd661hklccgtu0c \N \N +1785 2025-07-16 13:47:44.040624+00 2025-07-16 13:47:44.040634+00 f t 2025-07-17 13:00:00 COMPLETED clinical Eco abdominal 62000.00 12000.00 50000.00 2025-07-17 16:00:00+00 118790783426 4645 3859 1026 90 3up1hmrprjqq1fa380nsu7uhrs 605 \N +3153 2025-11-05 20:08:46.351956+00 2025-11-05 20:08:46.351965+00 f t 2025-11-06 09:00:00 COMPLETED clinical Eutanasia 127500.00 27500.00 100000.00 2025-11-06 12:00:00+00 132626878202 12453 10284 1583 113 bmdjvpm1i4h9tpd5ksknkc02fg \N 1426 +1786 2025-07-16 14:28:32.08227+00 2025-07-16 14:28:32.082279+00 f t 2025-07-17 14:00:00 COMPLETED clinical Emisión de orden PCR VILEF + extracción Vicky tuvo incoveniente con la extraccion y cobro solo $32500. 49000.00 11700.00 32500.00 2025-07-17 17:00:00+00 30106047010250716 4670 3878 1026 88 shku8c90s66bjt326v0v3qr6tk 604 \N +1772 2025-07-15 13:12:04.22934+00 2025-07-15 13:12:04.22935+00 f t 2025-07-18 17:30:00 COMPLETED clinical Extracción de puntos 0.00 0.00 0.00 2025-07-18 20:30:00+00 0 710 2947 1026 91 96r1q49n38bu9t5le690hckcgk \N \N +1843 2025-07-21 23:18:24.669242+00 2025-07-21 23:18:24.669248+00 f t 2025-07-22 20:30:00 COMPLETED clinical Orina por todos lados 42000.00 9500.00 32500.00 2025-07-22 23:30:00+00 67REZ8NPWYWLL8QG94KVGO 5021 4145 113 80 qce6rle9kojq3p6di740clvjbo 565 \N +1764 2025-07-14 20:58:35.083102+00 2025-07-14 20:58:35.083109+00 f t 2025-07-14 22:00:00 COMPLETED clinical Eco abdominal 67000.00 12000.00 55000.00 2025-07-15 01:00:00+00 38038847939 4558 3793 1026 90 1rfgsf6rtd04c0v8og9t8ul7ao 627 \N +1924 2025-07-29 22:17:17.067925+00 2025-07-29 22:17:17.067933+00 f t 2025-07-30 18:00:00 CANCELLED clinical eco abdominal 62000.00 12000.00 50000.00 2025-07-30 21:00:00+00 120302464818 5522 4526 1208 90 nruidd2smqav3dsomq5tehj508 \N \N +1781 2025-07-15 21:25:57.617031+00 2025-07-15 21:25:57.617039+00 f t 2025-09-05 09:00:00 NO_REPORT clinical Consulta cardiologica 190000.00 20000.00 170000.00 2025-09-05 12:00:00+00 118720145710 4573 3803 1026 73 mja708sgulq9nrd41kc2li3a6s 136 \N +1793 2025-07-16 19:51:01.293281+00 2025-07-16 19:51:01.29329+00 f t 2025-07-17 17:00:00 NO_REPORT clinical Radiografías 75000.00 15000.00 60000.00 2025-07-17 20:00:00+00 118328203443 4549 3787 1026 84 nlqpm4v9pleioqnp15kh5iac78 600 \N +1436 2025-06-10 16:19:02.674079+00 2025-06-10 16:19:02.674092+00 f t 2025-06-13 18:30:00 NO_REPORT clinical RX X4 hay que transferirle 10400 a al vete, transfirió más de seña 89100.00 15000.00 84000.00 2025-06-13 21:30:00+00 JMQKYZ9QOD616GKV2V50P3 472 560 1026 84 g9dlkk24347etelb1ueeqif2dk 865 \N +1811 2025-07-18 12:55:44.119533+00 2025-07-18 12:55:44.119542+00 f t 2025-07-26 09:00:00 COMPLETED clinical PGC S/O + TRASLADO 45000.00 45000.00 0.00 2025-07-26 12:00:00+00 38082273917 3820 3232 1026 100 5n92n506ebum7sfj73abhkv7gc 534 \N +1790 2025-07-16 17:14:09.877236+00 2025-07-16 17:14:09.877244+00 f t 2025-07-16 16:30:00 COMPLETED telemedicina Resolución de estudios abonarle a vicky $17500 27500.00 27500.00 0.00 2025-07-16 19:30:00+00 118817592246 2894 2549 1026 88 bh5jahhq3d9u7t00kkol695vf0 613 \N +1770 2025-07-15 00:24:56.788074+00 2025-07-15 00:24:56.788081+00 f t 2025-07-19 13:00:00 COMPLETED clinical Coproparasitologico Coproparasitologico: $12000\r\nRetiro: $12000 24000.00 24000.00 0.00 2025-07-19 16:00:00+00 \N 4485 3735 113 100 kukvhjr4216riqm4tcvb29neks 585 \N +1968 2025-08-02 15:53:26.78891+00 2025-08-02 15:53:26.788921+00 f t 2025-08-02 14:00:00 COMPLETED clinical eutanasia 69000.00 14000.00 55000.00 2025-08-02 17:00:00+00 120758403388 5237 4302 1208 92 r0cpu50d5tm475vtp0nqq4eeuk 466 \N +1796 2025-07-16 22:33:33.378338+00 2025-07-16 22:33:33.378346+00 f t 2025-07-19 08:00:00 COMPLETED clinical T4 $7500X2 Es a partir de la muestra que ya retiramos 15000.00 15000.00 0.00 2025-07-19 11:00:00+00 0 2894 2549 113 100 kmjcc25q9a2110jvnkc47dtofc 589 \N +1806 2025-07-17 19:53:20.375492+00 2025-07-17 19:53:20.375501+00 f t 2025-07-17 17:00:00 COMPLETED clinical eco abdominal de urg 67000.00 12000.00 55000.00 2025-07-17 20:00:00+00 118953583260 4755 3937 1208 90 4o9p51p43llvlttr43qrgu3tro 599 \N +1804 2025-07-17 17:35:34.04326+00 2025-07-17 17:35:34.043271+00 f t 2025-07-18 12:00:00 COMPLETED clinical Traslado + pgc s/o 45000.00 45000.00 0.00 2025-07-18 15:00:00+00 118435510371 4748 3935 1026 100 8i4o7qot54rqfsjltg7jdio7gc 592 \N +2537 2025-09-18 00:16:22.392224+00 2025-09-18 00:16:22.392233+00 f t 2025-09-17 21:30:00 COMPLETED clinical Chequeo general 19500- Abonarle a mara 30000.00 30000.00 19500.00 2025-09-18 00:30:00+00 38898284075 1100 7308 113 92 4vq2ok6k5pjglf5hvqcsm31fco 20 \N +1807 2025-07-17 20:10:20.439391+00 2025-07-17 20:10:20.439398+00 f t 2025-07-19 15:00:00 COMPLETED clinical Control 50000.00 10000.00 40000.00 2025-07-19 18:00:00+00 118957538050 2823 2483 1026 88 tv0ptmmj5gknbe9cqe3iv6ij9k 584 \N +2783 2025-10-06 15:19:59.815982+00 2025-10-06 15:19:59.815994+00 f t 2025-10-08 14:30:00 COMPLETED clinical Se rasca permanentemente y no tiene pulgas se lastimó el lomo y lo tiene muy nervioso 82000.00 12000.00 70000.00 2025-10-08 17:30:00+00 39113357360 10114 8375 113 75 okovj54rr778lbick1r1sk3fu0 \N 870 +1966 2025-08-01 22:20:31.108537+00 2025-08-01 22:20:31.108543+00 f t 2025-08-02 18:30:00 NO_REPORT clinical Vacunacion anual para simon y vacunacion con antirrabica para arthur y agatha 0.00 0.00 0.00 2025-08-02 21:30:00+00 120680922630 5733 4689 113 68 6bkdfusbb0m79bd401lt62j7o8 \N \N +1794 2025-07-16 20:12:03.420716+00 2025-07-16 20:12:03.420726+00 f t 2025-07-16 16:00:00 COMPLETED clinical 2 muestras de materia fecal 34560.00 34560.00 0.00 2025-07-16 19:00:00+00 118329806157 3347 2872 1208 100 7stgo3kmt5j8tk0ggbehj4j05c 615 \N +1960 2025-08-01 17:40:14.225783+00 2025-08-01 17:40:14.225792+00 f t 2025-08-01 21:00:00 CANCELLED clinical Ecografía Abonarle a daniela $65000 - 76v4mr2pymr1mqe9dz0l 78000.00 78000.00 0.00 2025-08-02 00:00:00+00 WGRXJE27GOR4D3RJN7MYQL 5720 4676 1026 90 rv32bv895g7hlma77mn6vt8l3c \N \N +1936 2025-07-30 15:54:15.098675+00 2025-07-30 15:54:15.098682+00 f t 2025-08-01 16:30:00 COMPLETED clinical Extracción 27630.00 4630.00 23000.00 2025-08-01 19:30:00+00 120386563708 313 372 1026 104 dri63j4uki8k0f34ltni0v7m9s 473 \N +1792 2025-07-16 19:22:23.816228+00 2025-07-16 19:22:23.816236+00 f t 2025-07-19 12:00:00 COMPLETED clinical Avance del px y medición de bulto para cirugía 50000.00 10000.00 40000.00 2025-07-19 15:00:00+00 118324988875 1798 1709 1026 94 e70hj0a4bvd777jos87isqvmtk 586 \N +1803 2025-07-17 17:31:53.206389+00 2025-07-17 17:31:53.206397+00 f t 2025-07-17 11:00:00 COMPLETED clinical Extracción de sangre 49700.00 11700.00 38000.00 2025-07-17 14:00:00+00 118435510371 4748 3935 1026 79 mqs4jroruc1d74rrhboh5c9lmo 607 \N +1795 2025-07-16 21:16:06.266821+00 2025-07-16 21:16:06.266829+00 f t 2025-07-19 10:00:00 COMPLETED clinical Corte de Garra\r\nConsulta Clinica\r\nDesparasitacion interna- externa 90700.00 18700.00 72000.00 2025-07-19 13:00:00+00 \N 4693 3896 113 80 dr4g5q0civs9edk398ndrv28fo 587 \N +1801 2025-07-17 16:44:43.509514+00 2025-07-17 16:44:43.50952+00 f t 2025-07-17 18:00:00 CANCELLED clinical Eco abdominal No se realizo el estudio debido a la zona 67000.00 12000.00 55000.00 2025-07-17 21:00:00+00 3D5W612EJDRR0Z3O9GXYVR 4740 3925 1026 90 jfn873n8kd5ntmgdq5qvrtva64 \N \N +2534 2025-09-17 20:58:06.186188+00 2025-09-17 20:58:06.186196+00 f t 2025-09-17 21:00:00 COMPLETED clinical Dificultad para orinar 55000.00 11000.00 44000.00 2025-09-18 00:00:00+00 126007650201 8810 7279 1583 1 4cbc533is3l0ec03tqtfrbu99k 21 \N +1809 2025-07-17 23:44:45.024046+00 2025-07-17 23:44:45.024056+00 f t 2025-07-22 18:00:00 COMPLETED clinical Eco abdominal Abonarle a la vete 18000, porque le corresponde $55.000 y el cliente pago 30 de seña 67000.00 30000.00 37000.00 2025-07-22 21:00:00+00 118973518068 4771 3951 113 90 2t2cvuobl8lmqlm6ccohkbo38g 566 \N +2171 2025-08-20 15:52:50.95262+00 2025-08-20 15:52:50.952627+00 f t 2025-08-21 10:00:00 COMPLETED clinical extraccion 93130.00 55130.00 38000.00 2025-08-21 13:00:00+00 38521504348 6789 5548 1208 88 74c7df0es7r7nq9tberekrb52s 291 \N +1797 2025-07-17 13:52:08.905485+00 2025-07-17 13:52:08.905498+00 f t 2025-07-17 15:00:00 COMPLETED clinical px con vómitos 50000.00 10000.00 40000.00 2025-07-17 18:00:00+00 118916921300 4721 3911 1026 68 ma934bbc2k6kqldeie8ops8qo0 601 \N +1799 2025-07-17 14:34:01.030157+00 2025-07-17 14:34:01.030168+00 f t 2025-07-17 19:00:00 COMPLETED clinical Diarrea con sangre 50000.00 10000.00 40000.00 2025-07-17 22:00:00+00 38072519871 4732 3919 1026 92 t128b05h68q1j0juaursp2kguk 595 \N +1314 2025-05-29 13:37:55.839821+00 2025-05-29 13:37:55.839831+00 f t 2025-05-30 19:00:00 COMPLETED clinical Respira con ruidos 38500.00 8500.00 30000.00 2025-05-30 22:00:00+00 1127721031381 1794 1705 1026 21 c3f02pis5gmfv7oq70f9vm26jc \N \N +1802 2025-07-17 16:51:08.29867+00 2025-07-17 16:51:08.298676+00 f t 2025-07-17 14:30:00 COMPLETED clinical eco abdominal 67000.00 12000.00 55000.00 2025-07-17 17:30:00+00 118936704994 4746 3932 1026 90 8c7v213h5qnbj5pk43ae8ebmd8 602 \N +1791 2025-07-16 19:10:38.576748+00 2025-07-16 19:10:38.576757+00 f t 2025-07-16 16:00:00 NO_REPORT clinical Comisión 29250.00 29250.00 0.00 2025-07-16 19:00:00+00 118323743647 4665 3873 1026 95 8jnpj8878cbjgff06upm3tisp0 614 \N +1906 2025-07-28 18:23:56.91336+00 2025-07-28 18:23:56.913371+00 f t 2025-08-02 14:00:00 COMPLETED vaccination Vacunación (2 antirrábicas, 4 triple felina) 245700.00 47700.00 201000.00 2025-08-02 17:00:00+00 LMORZP90504G7JE6NEGJ46 5428 4452 1026 80 bpukqfj6pt55756ikbkgl8h2mo 465 \N +1805 2025-07-17 19:48:31.565348+00 2025-07-17 19:48:31.565358+00 f t 2025-07-17 18:00:00 COMPLETED clinical Se rasca mucho y se pelo 50000.00 10000.00 40000.00 2025-07-17 21:00:00+00 443e5023-3132-4cae-b916-9f8c14 4754 3936 1208 1 4uf23fe1kqn8jm2uj8ofi8funo 596 \N +2128 2025-08-17 19:53:54.596399+00 2025-08-17 19:53:54.596409+00 f t 2025-08-17 17:00:00 COMPLETED clinical Recaida del tratamiento 50000.00 10000.00 40000.00 2025-08-17 20:00:00+00 38485621076 2792 2462 114 68 ctoe44c59280qlafmfhp09n42c 337 \N +1981 2025-08-04 15:12:56.096812+00 2025-08-04 15:12:56.096822+00 f t 2025-08-04 14:30:00 NO_REPORT clinical Eco abdominal 78000.00 13000.00 65000.00 2025-08-04 17:30:00+00 38291909906 393 467 1026 90 ddvtnmmfteugng3jkt89df1fa8 444 \N +2119 2025-08-15 23:43:59.210432+00 2025-08-15 23:43:59.21044+00 f t 2025-08-21 08:30:00 NO_REPORT clinical Extracción para prueba de Vif/vilef 194700.00 171700.00 23000.00 2025-08-21 11:30:00+00 38469431714 3789 3213 114 85 enhnth2caetd7iujf2l1vbmsbc 292 \N +2341 2025-09-01 22:08:22.670198+00 2025-09-01 22:08:22.670207+00 f t 2025-09-14 11:30:00 NO_REPORT clinical fluidoterapia 0.00 0.00 0.00 2025-09-14 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 hba3sak0nqens0h5ge3ruqpbc8 \N \N +3083 2025-10-31 12:26:07.164835+00 2025-10-31 12:26:07.164844+00 f t 2025-11-10 09:00:00 COMPLETED clinical Extraccion de sangre 23000.00 5500.00 17500.00 2025-11-10 12:00:00+00 Santander 9991 8265 \N 112 73aqk1dhcaudkq9926ilra8sq0 \N 1261 +1816 2025-07-18 17:08:33.925123+00 2025-07-18 17:08:33.925135+00 f t 2025-07-19 16:00:00 COMPLETED clinical Fluidoterapia 56500.00 10000.00 46500.00 2025-07-19 19:00:00+00 119064326518 4727 3916 1026 88 u9sf2r78t29hcdk2t9lub0dbv8 582 \N +1837 2025-07-21 16:58:23.345124+00 2025-07-21 16:58:23.345131+00 f t 2025-07-21 19:00:00 COMPLETED clinical eco abdominal 67000.00 12000.00 55000.00 2025-07-21 22:00:00+00 119388915474 4954 4100 1026 90 0koe6pj1eup6sn4e435r927tvs 575 \N +1848 2025-07-22 20:16:16.482462+00 2025-07-22 20:16:16.482471+00 f t 2025-07-25 14:30:00 COMPLETED vaccination control y vacunación anual Abonarle a Vero $3000 porque el tutor se confundió con la seña 129600.00 26600.00 103000.00 2025-07-25 17:30:00+00 119020687561 2144 4184 1026 91 t2qus5sli8u5iq2p5qiigfu3eg 538 \N +1854 2025-07-23 00:09:26.960684+00 2025-07-23 00:09:26.960691+00 f t 2025-07-23 19:30:00 COMPLETED clinical extraccion 49700.00 11700.00 38000.00 2025-07-23 22:30:00+00 ZOKV87948M7146OJ2PEYDX 5021 4145 113 88 91h725ulvkn8u740h5st68q2k0 555 \N +1826 2025-07-19 19:38:41.334735+00 2025-07-19 19:38:41.334742+00 f t 2025-07-23 09:00:00 NO_REPORT clinical extraccion de sangre 106100.00 83100.00 23000.00 2025-07-23 12:00:00+00 118688344109 4727 3916 1208 85 ip55p6p24cfqtkcf27bne07jok 563 \N +2856 2025-10-12 20:13:36.600246+00 2025-10-12 20:13:36.600255+00 f t 2025-10-12 18:30:00 COMPLETED clinical Vacunación Anual \N 78000.00 21500.00 56500.00 2025-10-12 21:30:00+00 39202500799 7501 6168 \N 70 135t5icofbbuesl6lrro22ilgc \N 973 +1827 2025-07-19 19:41:24.267231+00 2025-07-19 19:41:24.267239+00 f t 2025-07-23 09:00:00 COMPLETED clinical perfil hepatico + calcio + fósforo + ionograma serico + AOC y UPC 0.00 0.00 0.00 2025-07-23 12:00:00+00 0 4727 3916 1208 100 nqnsfl6alrqd314qvl4dh8hunc \N \N +1838 2025-07-21 19:47:48.177791+00 2025-07-21 19:47:48.177797+00 f t 2025-07-25 13:30:00 COMPLETED vaccination Vacunación anual + Bordetella 245700.00 44700.00 201000.00 2025-07-25 16:30:00+00 WY7ZEPN6Q7QLEXWWNQ0M51 4992 4126 1026 68 geaqv5qnp1lhtaipjeb3m675u8 541 \N +1830 2025-07-19 21:49:16.876086+00 2025-07-19 21:49:16.876094+00 f t 2025-07-19 18:00:00 COMPLETED clinical Ecografía abdominal 67000.00 12000.00 55000.00 2025-07-19 21:00:00+00 \N 4856 4011 114 90 t544d9gifjn6c8hou1rhqkj770 580 \N +2860 2025-10-12 20:38:58.569796+00 2025-10-12 20:38:58.569804+00 f t 2025-10-16 08:00:00 COMPLETED clinical Extracción de Sangre 43900.00 20900.00 23000.00 2025-10-16 11:00:00+00 000 123 128 114 104 j4ov5arqbssskk5ppfqs3h2qqs \N 977 +2172 2025-08-20 15:53:16.734504+00 2025-08-20 15:53:16.734514+00 f t 2025-08-21 10:00:00 COMPLETED clinical 0.00 0.00 0.00 2025-08-21 13:00:00+00 0 6789 5644 1208 100 q3jo7nfbp7283rh2pibgfju5b4 \N \N +1831 2025-07-19 21:53:45.836382+00 2025-07-19 21:53:45.836392+00 f t 2025-07-19 18:00:00 COMPLETED clinical Urgencia por choque y orina con sangrado La clienta nos paso todo el valor de la consulta, ahi que transferirle a la vete los $40.000 50000.00 10000.00 40000.00 2025-07-19 21:00:00+00 38103172943 4869 4026 114 68 7v9oodfcdb7jnsb2s7ap5k8i9k 581 \N +1832 2025-07-20 18:54:41.290156+00 2025-07-20 18:54:41.290162+00 f t 2025-07-23 10:00:00 COMPLETED clinical Tiene mucho rascado y se esta pelando 42000.00 9500.00 32500.00 2025-07-23 13:00:00+00 ORDGLEN873ERQZOY2M1Y30 4920 4072 1208 1 9127dk0n8al96dfalcbam8kvq8 561 \N +1937 2025-07-30 15:55:40.476561+00 2025-07-30 15:55:40.476569+00 f t 2025-08-01 18:00:00 COMPLETED clinical Traslado + laboratorio 89150.00 89150.00 0.00 2025-08-01 21:00:00+00 120386563708 313 372 1026 100 tp7cko7spat247602r70ehfg5o 471 \N +1819 2025-07-19 15:18:18.164823+00 2025-07-19 15:18:18.16483+00 f t 2025-07-20 11:00:00 COMPLETED clinical Presenta e pene inflamado, como infeccion, hoy duro 50000.00 10000.00 40000.00 2025-07-20 14:00:00+00 118655914469 4847 4006 1208 70 84j0ao3rtfq1mokqm7p10vo4q4 579 \N +1825 2025-07-19 19:36:53.409535+00 2025-07-19 19:36:53.409543+00 t t 2025-07-23 09:00:00 PENDING clinical extraccion 106100.00 83100.00 230000.00 2025-07-23 12:00:00+00 118688344109 4858 4013 1208 85 olbvj4dc0g8qpum943kpgu42us \N \N +2440 2025-09-10 13:48:09.985107+00 2025-09-10 13:48:09.985113+00 f t 2025-09-20 15:30:00 COMPLETED clinical vac. anual 78000.00 21500.00 56500.00 2025-09-20 18:30:00+00 125633340944 6809 5560 1208 92 m0t1p371bu5n1rj4betuk1tkjs \N \N +1834 2025-07-21 14:20:02.049979+00 2025-07-21 14:20:02.049989+00 f t 2025-07-24 17:00:00 COMPLETED clinical Control clinico y drenaje de glandulas 3 er visita del pack de 3 0.00 0.00 0.00 2025-07-24 20:00:00+00 \N 123 128 1026 1 r6ni6t8ukjm6m9kansncf51jpg \N \N +1818 2025-07-18 18:59:56.355565+00 2025-07-18 18:59:56.355574+00 f t 2025-07-18 16:30:00 COMPLETED clinical Eco abdominal 67000.00 12000.00 55000.00 2025-07-18 19:30:00+00 38090394707 4802 3970 1026 90 o0g3c5rldvef3fav3gtbvprmuc 591 \N +1833 2025-07-21 13:19:44.387819+00 2025-07-21 13:19:44.387825+00 f t 2025-07-25 09:00:00 COMPLETED clinical Consulta con endocrinologa- px con cushing, se le hincha mucho la panza y hace mucho pis 61000.00 11000.00 50000.00 2025-07-25 12:00:00+00 R7ZG0QNDJM0R0Y84NEXYPO 4987 4122 1026 98 0u587f4teat08ps41vl39jdelg 545 \N +1839 2025-07-21 19:48:46.347024+00 2025-07-21 19:48:46.347031+00 f t 2025-07-25 13:00:00 COMPLETED vaccination Se detalla en el turno de Mona 0.00 0.00 0.00 2025-07-25 16:00:00+00 \N 4992 4125 1026 68 98eebshg76vd49kjc89j98s1nk \N \N +1836 2025-07-21 15:58:31.445632+00 2025-07-21 15:58:31.445638+00 f t 2025-07-21 18:30:00 COMPLETED clinical eco abdominal 67000.00 12000.00 55000.00 2025-07-21 21:30:00+00 118875715413 5000 4131 1026 90 si1ussp8uu54j3ho7mvkjtv5nk 576 \N +1823 2025-07-19 18:04:45.415243+00 2025-07-19 18:04:45.415251+00 f t 2025-07-25 14:00:00 COMPLETED clinical Vacuna 3er dosis Vilef 64800.00 11800.00 53000.00 2025-07-25 17:00:00+00 119186183034 1555 1510 1208 1 rue2llt9p8sc58q08ite8onekc 539 \N +2039 2025-08-09 18:16:36.183657+00 2025-08-09 18:16:36.183666+00 f t 2025-08-09 17:30:00 COMPLETED telemedicina mudanza, consultar por medicacion para darle a los gatitos 27500.00 27500.00 0.00 2025-08-09 20:30:00+00 8D0Q619LOJE1660897JZ5R 6196 5059 1208 88 vthq23md6t93qesfj2ba1f04vc 402 \N +1841 2025-07-21 23:12:14.693549+00 2025-07-21 23:12:14.693556+00 f t 2025-07-25 15:00:00 CANCELLED clinical Perfil Hemostatico Prequirurgico+ traslado de muestra PHP: $66.000\r\nTM:$12.000 78000.00 78000.00 0.00 2025-07-25 18:00:00+00 118918672113 1807 1714 113 100 fbhklgcl66831u15tq6c9tkv0k \N \N +1817 2025-07-18 18:03:23.155748+00 2025-07-18 18:03:23.155758+00 f t 2025-07-29 15:00:00 NO_REPORT clinical Radiografías 75000.00 15000.00 60000.00 2025-07-29 18:00:00+00 38089325038 916 1021 1026 84 85tipsnqacv5i9brm741ueoh5c 504 \N +1824 2025-07-19 18:56:02.032483+00 2025-07-19 18:56:02.032497+00 f t 2025-07-21 16:00:00 COMPLETED clinical vacunacion anual y certificado de salud 87400.00 23400.00 64000.00 2025-07-21 19:00:00+00 118684313947 4858 4013 1208 92 sgjsrcn64j9ppal9p4ap55q7qs 577 \N +1829 2025-07-19 21:46:30.100821+00 2025-07-19 21:46:30.10083+00 f t 2025-07-24 11:00:00 COMPLETED telemedicina Consulta de estado https://meet.google.com/xnp-jbez-mkw 27500.00 27500.00 0.00 2025-07-24 14:00:00+00 89756930 4774 3954 114 92 appau52srom60f3qdg7srsksqo 553 \N +1858 2025-07-23 15:56:21.909517+00 2025-07-23 15:56:21.909524+00 f t 2025-07-29 14:30:00 COMPLETED clinical Ecografía 62000.00 12000.00 50000.00 2025-07-29 17:30:00+00 Z6OLMDN3XDJ8XZXW9E7RQ5 5120 4225 1026 90 hargj17q12fn78q1krudrm52jc 505 \N +2173 2025-08-20 15:55:02.00466+00 2025-08-20 15:55:02.00467+00 f t 2025-08-23 09:00:00 COMPLETED vaccination Antirrabica + Triple felina 72000.00 19000.00 53000.00 2025-08-23 12:00:00+00 122504858383 6956 5691 1583 80 fvpnptoquae9i1fdd2gck21j44 274 \N +1814 2025-07-18 14:26:22.500366+00 2025-07-18 14:26:22.500374+00 f t 2025-07-25 13:30:00 COMPLETED vaccination Vacunación con séxtuple 64500.00 17000.00 47500.00 2025-07-25 16:30:00+00 38085991800 4789 3965 1026 91 qbvincm8chjikd271cl4hfe600 540 \N +2453 2025-09-10 23:49:46.968791+00 2025-09-10 23:49:46.968969+00 f t 2025-09-10 20:30:00 COMPLETED clinical Revisio por recaidas 55000.00 11000.00 44000.00 2025-09-10 23:30:00+00 125154035993 8120 6682 113 92 2pl9v15hhtv6fg1bqpkrn1qs4o 78 \N +2082 2025-08-13 18:31:32.440253+00 2025-08-13 18:31:32.440263+00 f t 2025-08-18 14:00:00 COMPLETED clinical Picazón que no cede con el antipulgas aplicado 42000.00 9500.00 32500.00 2025-08-18 17:00:00+00 122138950296. 6447 5247 114 80 3hk5ealuklbm3p72iajbunf100 330 \N +2176 2025-08-20 23:44:08.796184+00 2025-08-20 23:44:08.796191+00 f t 2025-08-31 09:00:00 COMPLETED vaccination Control y Vacunación anual 72000.00 19000.00 53000.00 2025-08-31 12:00:00+00 123080408074 4433 3688 114 80 slu8aho3fh9tbit9rlei5ec4as 185 \N +2178 2025-08-20 23:52:06.369989+00 2025-08-20 23:52:06.369999+00 f t 2025-08-20 18:00:00 COMPLETED clinical Decaimiento, con vomitos y diarrea Agresiva 50000.00 10000.00 40000.00 2025-08-20 21:00:00+00 30214992009250820 6995 5720 114 92 t4ndce8ssr8qcigi5tjjr0uov8 301 \N +1674 2025-07-05 21:43:04.404693+00 2025-07-05 21:43:04.4047+00 f t 2025-07-05 14:30:00 COMPLETED clinical Ruidos extraños, retraído y no quiere comer 50000.00 10000.00 40000.00 2025-07-05 17:30:00+00 117005783415 3980 3335 114 88 kp9jt99pmgck7ahlq7jf8ccfgc 702 \N +1949 2025-07-31 13:14:08.904404+00 2025-07-31 13:14:08.904415+00 f t 2025-08-03 18:00:00 COMPLETED clinical Se detalla en el turno de Horus 0.00 0.00 0.00 2025-08-03 21:00:00+00 \N 5620 4601 1026 70 hnmib5d37bcl0eeqfqojs8ersg \N \N +2162 2025-08-19 23:35:04.972779+00 2025-08-19 23:35:04.972789+00 f t 2025-08-20 19:00:00 NO_REPORT clinical Hace una semana está con dificultad para respirar debido a mucha mucosidad en las vías respiratorias, tiene lagañas. 42000.00 9500.00 32500.00 2025-08-20 22:00:00+00 122964032396 6770 5531 114 96 gtstac9klgf53ut88i1a37m18k 297 \N +1938 2025-07-30 15:56:53.007799+00 2025-07-30 15:56:53.007809+00 f t 2025-08-01 15:00:00 COMPLETED clinical Ecografía 60300.00 5300.00 55000.00 2025-08-01 18:00:00+00 120386563708 313 372 1026 90 rbk81rd6dkja4g5enkm5vr2fu4 475 \N +1617 2025-06-30 23:58:21.790458+00 2025-06-30 23:58:21.790467+00 f t 2025-06-30 21:00:00 NO_REPORT clinical Vacunacion sextuple y antirrabica + desparasitacion Certificado de salud por vuelo en cabotaje\r\nVacunacion sextuple y antirrabica + desparasitacion con moxidex plus 1/4 de comp, repite en 15 dias.\r\nCondicion corp optima. 105000.00 25500.00 79500.00 2025-07-01 00:00:00+00 \N 3688 3129 113 9 8kk2ljpg3u6ot7cfsoavgrk2f4 753 \N +1976 2025-08-03 13:22:31.046688+00 2025-08-03 13:22:31.046697+00 f t 2025-08-03 19:00:00 COMPLETED clinical vomitos constantes 50000.00 10000.00 40000.00 2025-08-03 22:00:00+00 120851112296 5799 4742 1208 92 hncv9ab3d2kv3dn90o653ht3co 449 \N +1975 2025-08-02 19:50:15.042919+00 2025-08-02 19:50:15.042927+00 f t 2025-08-02 21:00:00 COMPLETED telemedicina persistencia de pulgas, ya tomo pipeta el 15/7 27500.00 27500.00 0.00 2025-08-03 00:00:00+00 120784995330 5781 4733 1208 80 ekapktg76ns7nirg5bnjt5vej4 454 \N +1912 2025-07-28 22:36:07.932357+00 2025-07-28 22:36:07.932366+00 f t 2025-07-29 09:30:00 COMPLETED telemedicina Resolucion de resultados 27500.00 27500.00 17500.00 2025-07-29 12:30:00+00 \N 5071 4220 113 1 ipfpictbdm5qr5f19rufs2nh04 509 \N +1732 2025-07-11 20:45:53.614962+00 2025-07-11 20:45:53.614969+00 f t 2025-07-14 15:00:00 COMPLETED clinical Extracción de sangre 11.700 clinica + extracción\r\n70.300 traslado+ laboratorio 49700.00 11700.00 38000.00 2025-07-14 18:00:00+00 118263671810 2894 2549 1026 1 jvai7rli1omnd4qmfqbef5urvs 636 \N +1933 2025-07-30 14:53:25.159631+00 2025-07-30 14:53:25.159638+00 f t 2025-07-30 17:00:00 COMPLETED clinical ecografía abdominal 67000.00 12000.00 55000.00 2025-07-30 20:00:00+00 119864061199 5557 4554 1026 90 2gov8b5b27pg3qb9j76jfdopks 492 \N +3334 2025-11-19 19:46:54.115089+00 2025-11-19 19:46:54.115098+00 f t 2025-11-26 18:00:00 PENDING clinical Ecografia abdominal por calculos renales. 78000.00 13000.00 65000.00 2025-11-26 21:00:00+00 67REZ8NPQWO7R60R94KVGO 13812 11392 1583 90 bhg6pm1bu7q0igvs2d2he6904c \N 1686 +2307 2025-08-30 20:49:36.72897+00 2025-08-30 20:49:36.728977+00 f t 2025-09-01 19:30:00 COMPLETED clinical Alergia en la piel, bulto en axila 42000.00 9500.00 32500.00 2025-09-01 22:30:00+00 123736893617 7591 6248 1208 92 ao5s80qi1n352ph4l9rrtk6a3k 167 \N +877 2025-03-24 16:38:44.792399+00 2025-03-24 16:38:44.79241+00 f t 2025-03-23 16:30:00 COMPLETED clinical urgencia rengueo en la pata y corte de uñas Pago 9.500 y después 2.000(106113310510)x\r\nTransferir a la veterinaria $41,500 53000.00 11500.00 41500.00 2025-03-23 19:30:00+00 106112723856 600 702 114 91 pb3miv88ufek5bj54ud3b9ebd0 \N \N +1888 2025-07-26 14:45:53.911481+00 2025-07-26 14:45:53.911488+00 f t 2025-07-26 15:00:00 COMPLETED clinical Paciente viejita, antecedentes de melanoma con mandibulectomia hace 2 años, actualmente con sme paraneoplasico ciega. Evolucionó en los últimos 2 meses con deterioro en su cuadro general, desde ayer no se levanta y no come le doy agua en jeringa 50000.00 10000.00 40000.00 2025-07-26 18:00:00+00 119954107250 5281 4344 1208 92 s1ijo936alrd98dhorjstuh7t8 527 \N +1789 2025-07-16 15:44:22.334448+00 2025-07-16 15:44:22.334455+00 f t 2025-07-22 09:30:00 COMPLETED clinical búsqueda de segunda opinión\r\ntiene tumores en los intestinos. No es operable me dijeron. Los estudios de sangre no dieron mal. Solo esta un poco anemica Abonarle a Mara -$17500\r\nPagó en 2 veces, el turno iba a ser presencial pero lo cambiamos a teleconsulta 27500.00 27500.00 0.00 2025-07-22 12:30:00+00 CA- 8192 4673 3880 1026 92 fqjrm6e1jtvhb7uqrs9pqvmr8o 571 \N +1808 2025-07-17 22:29:40.42217+00 2025-07-17 22:29:40.423018+00 f t 2025-07-17 08:00:00 COMPLETED clinical esta decaído, la mayor parte del tiempo acostado, impresiona dificultad o dolor en cadera/ pelvis, patas traseras. 50000.00 10000.00 40000.00 2025-07-17 11:00:00+00 118974092594 4710 3906 1208 1 n0m2bbi3dlg54k9tj8oo1eghig 610 \N +885 2025-03-24 23:58:52.820094+00 2025-03-24 23:58:52.820102+00 f t 2025-03-24 13:30:00 COMPLETED clinical urgencia, dermatitis, posible inyección de corticoide 46000.00 9500.00 36500.00 2025-03-24 16:30:00+00 106180778432 606 708 113 91 8fhl9rurf8no6mv0b8msj0ck9g \N \N +751 2025-03-02 21:29:26.96933+00 2025-03-02 21:29:26.96934+00 f t 2025-03-04 08:00:00 CANCELLED clinical Jadeos continuos, estornudos y tos. Se puede escuchar un leve soplo abonarle a la vete la consulta 46000.00 9500.00 36500.00 2025-03-04 11:00:00+00 103946598362 523 618 111 68 ak9lm1fj7e2ilkg9si3onr5pgc \N \N +1914 2025-07-29 13:11:47.56896+00 2025-07-29 13:11:47.568967+00 f t 2025-07-29 14:30:00 COMPLETED clinical No se puede levantar y llora. Cua do logra levantarse esta encorbado como gato.es un perrito de 14 anos. hace 3 meses tuvo un episodio parecido, le di media pastilla\r\n tramadol 50 mg, y meloxicam 2g también media pastilla. porque estaba tumbado intentaba levantarse y no podía y lloraba del dolor.hoy amanecio un poco mejor 50000.00 10000.00 40000.00 2025-07-29 17:30:00+00 119741248867 5453 4471 1026 1 9ciah3m5p410lnmirn4ft9rn0c 506 \N +1900 2025-07-28 13:12:17.184709+00 2025-07-28 13:12:17.184715+00 f t 2025-07-28 20:30:00 COMPLETED clinical Hace 3 días que está comiendo con dificultad. Tiene hambre, pero no le convence la comida. Y entre ayer y hoy vómito 2 veces. Además notamos desde el 1er día una molestia en una oreja que se rasca. Es VIF positivo y come Barf 50000.00 10000.00 40000.00 2025-07-28 23:30:00+00 119628498611 5389 4417 1026 92 s36p6lglmkc8v67um1s1mqr1gk 513 \N +124 2024-10-30 14:13:09.382+00 2024-10-30 14:13:09.382+00 f t 2024-09-17 15:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación anual perra Transaccion 87755905437 Ciente no está de acuerdo en abonar una seña, se logra que abone con seña miníma de $10.000. Resta saldo a favor de AMAR de $13.000 ya que abona al vete $43.000. 53000.00 10000.00 30000.00 2024-09-17 18:00:00+00 113 118 \N 2 abj42b8sl770r6srcvabp6uapo \N \N +279 2024-12-02 18:05:28.017+00 2024-12-02 18:05:28.017+00 f t 2024-11-08 09:00:00 NO_REPORT vaccination Vacunación Transacción 35159815135 68800.00 25800.00 43000.00 2024-11-08 12:00:00+00 224 244 114 9 9i586jdimrf5nupt00v350igk8 \N \N +2498 2025-09-15 17:12:17.471798+00 2025-09-15 17:12:17.471805+00 f t 2025-09-18 08:30:00 NO_REPORT clinical Extraccion para perfil 7 0.00 0.00 0.00 2025-09-18 11:30:00+00 125730983895 8524 7021 1583 85 egqonh3hgau74c27g1bok1b044 \N \N +1013 2025-04-19 00:14:35.354678+00 2025-04-19 00:14:35.354686+00 f t 2025-04-19 10:00:00 COMPLETED clinical primera consulta + desparasitacion interna + externa 79000.00 17000.00 62000.00 2025-04-19 13:00:00+00 108841397540 697 814 113 80 26cjessmop1h8if2jnu9p3r030 \N \N +2374 2025-09-03 17:36:40.731661+00 2025-09-03 17:36:40.731675+00 f t 2025-09-03 20:00:00 COMPLETED clinical Vómitos y falta de apetito 55000.00 11000.00 44000.00 2025-09-03 23:00:00+00 38703626669 7836 6448 1208 1 mltth5h7rpaenuq7318aginebc 146 \N +388 2025-01-03 19:23:22.907+00 2025-01-03 19:23:22.907+00 f t 2025-01-07 19:30:00 COMPLETED vaccination Vacunacion 1ra dosis triple + desprasitacion 88070.00 21470.00 66600.00 2025-01-07 22:30:00+00 293 347 111 9 ea2h9vqdc3iklnjhq17jeuiak0 \N \N +2158 2025-08-19 23:19:22.261581+00 2025-08-19 23:19:22.261588+00 f t 2025-08-19 19:30:00 COMPLETED telemedicina Revisión de Resultados del análisis https://meet.google.com/vkq-vsev-toe 27500.00 27500.00 0.00 2025-08-19 22:30:00+00 122414121267 5889 4811 114 80 ljkcr6jq13omlv62gro03v2qic 311 \N +365 2024-12-20 19:05:02.297+00 2024-12-20 19:05:02.297+00 f t 2024-12-21 13:00:00 COMPLETED clinical Cambio de hábitos gato: Después de hacer sus necesidades se frota con el suelo cosa que no es habitual 41600.00 41600.00 0.00 2024-12-21 16:00:00+00 275 324 113 1 bhi7eprd8gisuefibsbdasg0uc \N \N +3084 2025-10-31 12:31:43.514734+00 2025-10-31 12:31:43.514745+00 f t 2025-11-10 10:00:00 COMPLETED clinical Muestra de sangre 0.00 0.00 0.00 2025-11-10 13:00:00+00 0 9991 8265 1583 100 4h760ns06sqh5onpdcs63nnrag \N 1315 +1815 2025-07-18 14:41:28.825056+00 2025-07-18 14:41:28.825063+00 f t 2025-08-25 13:30:00 COMPLETED vaccination Vacunación antirrábica 49500.00 11500.00 38000.00 2025-08-25 16:30:00+00 38086202128 4789 3965 1026 91 biua8tauod89hm03s59sar1rs4 252 \N +2041 2025-08-10 18:09:40.657262+00 2025-08-10 18:09:40.657274+00 f t 2025-08-10 13:00:00 COMPLETED clinical No hace pis. Estuvimos en la guardia el martes 30/7. El 31 volvimos y lo medicaron. Mejoró, pero ahora sigue sin poder hacer pis. Tengo los estudios que mandaron a hacerle: eco, radiografía, de sangre y de orina 50000.00 10000.00 40000.00 2025-08-10 16:00:00+00 30072866008250810 6214 5071 1208 1 t59vkivmfs7r5iqrj09louvhs0 396 \N +2050 2025-08-11 15:55:16.633903+00 2025-08-11 15:55:16.63391+00 f t 2025-08-12 10:00:00 COMPLETED clinical sextuple y corte de uñas 64980.00 11980.00 53000.00 2025-08-12 13:00:00+00 RD06ZO9W1WZW05V125GP7X 562 659 1208 1 jdal5u54rf6mnfn5641t12cqdk 381 \N +2342 2025-09-01 22:08:42.507891+00 2025-09-01 22:08:42.507902+00 f t 2025-09-15 11:30:00 NO_REPORT clinical fluidoterapia 0.00 0.00 0.00 2025-09-15 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 fvf7d063v5m34gofmbib5sa460 \N \N +181 2024-10-30 14:13:09.911+00 2024-10-30 14:13:09.911+00 f t 2024-10-15 17:00:00 COMPLETED Urgencias Esta con problema de artrosis, bajo tratamiento. Esta con fisioterapia y analgésicos, y no tiene control de esfinter (anal). Anoche notamos que el ano esta bastante dilatado, y ya píerde liquido intestinal. Anoche no durmió en ningún momento, está muy agitada y con dolor. Transaccion 90278213149 49600.00 18600.00 31000.00 2024-10-15 20:00:00+00 156 165 \N 1 qkj545u8jagnvr4tj5bcmip3q8 \N \N +2619 2025-09-24 14:36:47.08028+00 2025-09-24 14:36:47.080291+00 f t 2025-09-24 13:00:00 COMPLETED clinical retiro de muestra de orina para cultivo y atb + citologia 67200.00 67200.00 0.00 2025-09-24 16:00:00+00 127367614300 9109 7541 1208 100 l8pbrqfpi01kv1n3eud4862rjc \N \N +2813 2025-10-08 14:22:04.433854+00 2025-10-08 14:22:04.433865+00 f t 2025-10-09 11:00:00 COMPLETED clinical Buen día. Perro adulto casi 14 años (labrador) ya no se para ni vale por sus propios medios y sufre. No controla esfínteres. $8.000 extra por distancia 141500.00 28500.00 113000.00 2025-10-09 14:00:00+00 129113720612 10259 8518 1208 21 j764j224v5v1g2vg40etbu9v0s \N 911 +2262 2025-08-26 23:54:26.06548+00 2025-08-26 23:54:26.065491+00 f t 2025-08-26 19:00:00 COMPLETED vaccination Vacunación anual de un gato y perro 129600.00 23600.00 106000.00 2025-08-26 22:00:00+00 123762482998 183 191 114 88 h8o3jtb5lkv9c0k4uhbc4g1drk 228 \N +2049 2025-08-11 14:25:57.818152+00 2025-08-11 14:25:57.818165+00 f t 2025-08-11 12:30:00 COMPLETED clinical retiro de muestra pendiente 12000.00 12000.00 0.00 2025-08-11 15:30:00+00 38400861255 6033 4925 1208 100 tcf599fhf0lsucm7ok3c30s94c 388 \N +2252 2025-08-26 14:10:07.798898+00 2025-08-26 14:10:07.798909+00 f t 2025-08-26 14:00:00 COMPLETED clinical vomito con sangre 50000.00 10000.00 40000.00 2025-08-26 17:00:00+00 123194172133 7319 6004 1208 88 7il077k43em6up0mc980bquch4 236 \N +2131 2025-08-17 20:04:44.161038+00 2025-08-17 20:04:44.161049+00 f t 2025-08-17 19:00:00 NO_REPORT clinical Orina con Sangre 50000.00 10000.00 40000.00 2025-08-17 22:00:00+00 R7ZG0QNDJ5VGG5Y4NEXYPO 6732 5497 114 70 mtgfl6i4qpv2hafv0j2bh5l1h8 334 \N +478 2025-01-24 21:06:28.206896+00 2025-01-24 21:06:28.206903+00 f t 2025-01-27 12:30:00 COMPLETED clinical ecografia abdominal para control esplenico (del bazo) 55000.00 15000.00 40000.00 2025-01-27 15:30:00+00 \N 266 335 111 5 0lqd1vbjffpvfjitdo096o228s \N \N +2454 2025-09-10 23:54:30.471695+00 2025-09-10 23:54:30.471703+00 f t 2025-09-12 17:00:00 COMPLETED clinical gastroenteritis 46000.00 11000.00 35000.00 2025-09-12 20:00:00+00 680d026d-ded8-446b-8196-4be678 8390 6911 113 1 6e49s00bjlpvg89kd8iqm53r28 63 \N +2266 2025-08-27 00:01:47.931916+00 2025-08-27 00:01:47.931929+00 f t 2025-08-28 10:00:00 NO_REPORT clinical Perfil general 7 0.00 0.00 0.00 2025-08-28 13:00:00+00 0 7341 6029 114 100 oe4slpttn5cladrv6ql6eq7v3g \N \N +2180 2025-08-21 14:40:51.681663+00 2025-08-21 14:40:51.681673+00 f t 2025-08-25 17:00:00 COMPLETED clinical Chequeo general. Come muche pero no engorda 42000.00 9500.00 32500.00 2025-08-25 20:00:00+00 XJ8G7V95EZG614042EMPYR 7021 5741 1583 1 5o0s0p81n1hac7obgs0agh56q8 245 \N +2753 2025-10-03 19:06:55.556198+00 2025-10-03 19:06:55.556207+00 f t 2025-10-03 18:00:00 NO_REPORT clinical control cardiologico indicado por vete clinica. 107000.00 12000.00 95000.00 2025-10-03 21:00:00+00 12636639991 8583 7067 1208 82 mqi3qr7d2npis7pkdnrc4kb6bg \N 829 +2276 2025-08-28 14:53:44.686121+00 2025-08-28 14:53:44.686133+00 f t 2025-08-29 09:00:00 COMPLETED clinical Vomitos recurrentes 42000.00 9500.00 32500.00 2025-08-29 12:00:00+00 38619447696 999 1095 1208 14 32hvfp6e9krom82nis09jnlk7c 206 \N +3349 2025-11-20 20:04:54.541991+00 2025-11-20 20:04:54.542003+00 f t 2025-12-04 11:00:00 PENDING clinical Extraccion de sangre para perfil completo 100900.00 60400.00 40500.00 2025-12-04 14:00:00+00 134017546041 13437 11059 1583 88 nob7fnjhgud8aejemfdrne8vqc \N 1697 +3313 2025-11-18 21:30:05.963104+00 2025-11-18 21:30:05.963118+00 f t 2025-11-28 14:00:00 PENDING clinical Muetras de orina para orina completa y upc para los dos gatitos 0.00 0.00 0.00 2025-11-28 17:00:00+00 naranjaX 10559 10123 1583 100 4vvdher8g3pk3o3quv3g38l3og \N 1659 +236 2024-11-15 00:31:49.431+00 2024-11-15 00:31:49.431+00 f t 2024-11-15 10:30:00 COMPLETED clinical Consulta clinica de control por sangrado en cavidad bucal Transacción 93416685486 41600.00 15600.00 26000.00 2024-11-15 13:30:00+00 198 211 114 1 hss5lu201p7ssb4svm9rd02mi0 \N \N +850 2025-03-19 16:23:48.830675+00 2025-03-19 16:23:48.830683+00 f t 2025-03-21 13:00:00 COMPLETED clinical Consulta clínica con extracción de sangre para realizar estudios 119500.00 84500.00 35000.00 2025-03-21 16:00:00+00 \N 541 637 110 91 7b22h410f0c6i2ajcv9lg6fgf4 \N \N +2318 2025-09-01 15:06:44.843635+00 2025-09-01 15:06:44.843643+00 f t 2025-09-01 18:00:00 NO_REPORT clinical Coinsulta cardiologica 105000.00 10000.00 95000.00 2025-09-01 21:00:00+00 124455849090 7721 6357 1583 82 q63orju5v9jon43n000psb0nkc 170 \N +507 2025-01-28 23:37:32.24563+00 2025-01-28 23:37:32.245638+00 f t 2025-01-29 10:00:00 COMPLETED vaccination Vacunacion anual 60750.00 15750.00 45000.00 2025-01-29 13:00:00+00 100649047566 293 347 113 70 5j2k172iuplsd60ss6j615il6k \N \N +2199 2025-08-22 17:17:00.506943+00 2025-08-22 17:17:00.506949+00 f t 2025-09-01 19:30:00 COMPLETED clinical Consulta general 42000.00 9500.00 32500.00 2025-09-01 22:30:00+00 122770986763 7092 5802 1583 92 gpar1e3ls0ikm1jaun6gjtumbo 166 \N +2375 2025-09-03 18:53:08.767896+00 2025-09-03 18:53:08.767906+00 f t 2025-09-04 20:30:00 COMPLETED clinical diarrea 46000.00 11000.00 35000.00 2025-09-04 23:30:00+00 124199016915 7909 6512 1208 92 rd0o88pu2fec28vs3s3qhq5dv4 137 \N +1403 2025-06-07 22:01:32.764729+00 2025-06-07 22:01:32.764737+00 f t 2025-06-09 19:00:00 COMPLETED telemedicina Resultados de análisis Vínculo a la videollamada: https://meet.google.com/qzy-ueci-qne 27500.00 27500.00 0.00 2025-06-09 22:00:00+00 114309963814 1372 1367 114 91 5e99aie4ft69fr2pnjls0ln66o 897 \N +2399 2025-09-05 20:05:00.716321+00 2025-09-05 20:05:00.716331+00 f t 2025-09-05 19:00:00 NO_REPORT clinical eutanasia 124483928121 transfirio $25mil y 125030044496 $1.000 121000.00 26000.00 95000.00 2025-09-05 22:00:00+00 124483928121 8064 6643 1208 70 4rfjbn1ub721qhn44eqpi1537c 129 \N +2277 2025-08-28 15:01:31.848451+00 2025-08-28 15:01:31.848461+00 f t 2025-08-28 19:00:00 COMPLETED clinical Problemas para pararse y desplazarse 50000.00 10000.00 40000.00 2025-08-28 22:00:00+00 123447854521 7432 6115 1208 91 7gmu5un6updud52se8vun68b0o 209 \N +377 2024-12-27 15:47:46.736+00 2024-12-27 15:47:46.736+00 f t 2024-12-27 20:30:00 COMPLETED clinical gato sin poder defecar, vomitos esporadicos, posible obstrucción urinaria, se encuentra animado 44640.00 13640.00 31000.00 2024-12-27 23:30:00+00 97624138044 265 309 111 68 jm8qpjhcpecpvm09okbau3e320 \N \N +2267 2025-08-27 13:51:45.038732+00 2025-08-27 13:51:45.038741+00 f t 2025-08-27 12:00:00 NO_REPORT clinical perfil 7 + traslado 40500.00 40500.00 0.00 2025-08-27 15:00:00+00 123317425529 4471 3722 1208 100 2ec2lmv0as4ae01j85dmg4ca8o 222 \N +2255 2025-08-26 16:44:18.76097+00 2025-08-26 16:44:18.760981+00 f t 2025-08-28 11:00:00 NO_REPORT clinical revision de estudios 37800.00 5300.00 32500.00 2025-08-28 14:00:00+00 38596427585 6789 5548 1208 88 5pjutio7lo95b7eh6mqin25k3s 218 \N +2280 2025-08-28 18:34:06.181196+00 2025-08-28 18:34:06.181204+00 f t 2025-08-29 17:00:00 COMPLETED vaccination Vacunacion anual descuento por mas de 1 animal $7.200 64800.00 11800.00 53000.00 2025-08-29 20:00:00+00 R7ZG0QNDJZ7GK3DENEXYPO 7443 6126 1583 1 kvbufc2vk7psk2h6fekk3ilom0 201 \N +2195 2025-08-21 23:55:12.473574+00 2025-08-21 23:55:12.473585+00 f t 2025-08-23 11:30:00 NO_REPORT clinical Radiografías 80000.00 15000.00 65000.00 2025-08-23 14:30:00+00 122685684025 7058 5774 114 84 8vbf3dt165h5eo98kfg52qub04 270 \N +1878 2025-07-25 15:43:34.300971+00 2025-07-25 15:43:34.300978+00 f t 2025-08-02 14:00:00 COMPLETED clinical el último vete que lo vio me dijo que le había dado un ACV porque se le caía la cabeza para el costado, no pudo hacerle estudios por lo agresivo que estaba, si me dio una pastilla (pregabalina) de 75 m, que le de 1/4 cada 24 hs, si bien no volvió a tener episodio de que queda duro o se le cae la cabeza para el costado, pero está siempre echado, agua toma muy poca- PX CON TEMPERAMENTO 42000.00 9500.00 32500.00 2025-08-02 17:00:00+00 119850524178 5237 4302 1026 92 39coh4d0i5d479ljon9sn2oqfc 464 \N +1718 2025-07-10 16:07:10.968681+00 2025-07-10 16:07:10.968691+00 f t 2025-07-11 20:30:00 COMPLETED clinical Está vomitando la comida hace tres días, a veces en el vómito se ven los granitos de la comida balanceada y a veces es más diluido. Sus dueños están de viaje y ella está siendo cuidada por familiares, pensamos que puede ser estrés. 42000.00 9500.00 32500.00 2025-07-11 23:30:00+00 117598144553 4305 3589 1026 79 75otr8h2a8ufjjkfjp9o6lhp2g 655 \N +2291 2025-08-29 19:17:23.243863+00 2025-08-29 19:17:23.243873+00 f t 2025-08-30 18:30:00 COMPLETED clinical Ecografía abdominal 78000.00 13000.00 65000.00 2025-08-30 21:30:00+00 \N 7483 6153 114 90 56do1i5mr0g2nst25ehabg5vhs 189 \N +2306 2025-08-30 20:35:24.956127+00 2025-08-30 20:35:24.956134+00 f t 2025-09-01 21:00:00 COMPLETED clinical vac. anual 72000.00 19000.00 53000.00 2025-09-02 00:00:00+00 124275107302 7606 6259 1208 80 cajkcgfib6hgbomf6jorhek108 164 \N +2221 2025-08-23 20:19:20.345021+00 2025-08-23 20:19:20.345029+00 t t 2025-08-30 10:00:00 PENDING clinical Es un turno de prueba para verificar la agenda Prueba 1.00 1.00 1.00 2025-08-30 13:00:00+00 \N 266 335 121 76 i0mhgpcqj4no6l694c0lbojg4c \N \N +757 2025-03-03 21:01:29.337286+00 2025-03-03 21:01:29.337294+00 f t 2025-03-07 11:00:00 COMPLETED clinical Vacunación anual y Corte de garras 73000.00 19000.00 54000.00 2025-03-07 14:00:00+00 R7ZG0QNDJKO3QRKVNEXYPO 529 624 114 88 48j23nrc2q93ln6ogp7i5cb9sg \N \N +2135 2025-08-18 16:33:47.849106+00 2025-08-18 16:33:47.849115+00 f t 2025-08-18 15:30:00 NO_REPORT clinical Salio a caminar, hizo un mal movimiento y empezo a renguear, ya una vez le paso y era algo muscular 50000.00 10000.00 40000.00 2025-08-18 18:30:00+00 122266199547 6785 5545 1208 2 kbo4l43ut00s81f0vh2rr24l6s 328 \N +1451 2025-06-12 00:38:10.321503+00 2025-06-12 00:38:10.32151+00 f t 2025-06-19 15:00:00 COMPLETED clinical Se rasca mucho y no tiene pulgas 42000.00 9500.00 32500.00 2025-06-19 18:00:00+00 ORD6LEN87LJJXDZ42M1Y30 2567 2295 114 91 ssi0df4dfb94ejuat7fbup87kk 825 \N +1989 2025-08-04 21:38:06.367703+00 2025-08-04 21:38:06.367714+00 f t 2025-08-04 20:30:00 COMPLETED telemedicina Últimamente no está pudiendo levantarse solo, ni caminar, se paspa porque se hace pis acostado, y se arranca los pañales. Es un labrador de 14 años, muy grandote de cuerpo telemedicina 27500.00 27500.00 0.00 2025-08-04 23:30:00+00 120496369323 5889 4811 1208 80 4vqjnuk3nm8meb12rehs2t21tc 438 \N +2107 2025-08-15 21:00:52.455049+00 2025-08-15 21:00:52.455056+00 f t 2025-08-23 12:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-08-23 15:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 157eogeu0au2npgs4agb6t42gs \N \N +2293 2025-08-29 19:22:17.09318+00 2025-08-29 19:22:17.09319+00 f t 2025-08-29 13:00:00 COMPLETED clinical Vomitos continuos 50000.00 10000.00 40000.00 2025-08-29 16:00:00+00 72581445 7527 6191 114 92 5258j58jolqgsl0ohjbnanfvj0 204 \N +2051 2025-08-11 17:51:23.311443+00 2025-08-11 17:51:23.311453+00 f t 2025-08-14 17:30:00 COMPLETED clinical eco abdominal 61200.00 6200.00 55000.00 2025-08-14 20:30:00+00 \N 167 176 1208 90 hgep834a519pe5ism8ovd5iqco 359 \N +67 2024-10-30 14:13:08.898+00 2024-10-30 14:13:08.898+00 f t 2024-08-15 10:30:00 COMPLETED Vacunación x 3 animales Chequeo estado gral de 3 gatos, y vacunacion primer dosis triple felina para 2 gatos, y segunda dosis para 1 gato. Transaccion 84922628413 Cliente pagó 50% transferencia y 50% efectivo 95400.00 47700.00 70000.00 2024-08-15 13:30:00+00 66 67 \N 1 fgc2loj31j42partddb0j2uvi4 \N \N +2048 2025-08-10 20:56:43.683621+00 2025-08-10 20:56:43.683631+00 f t 2025-08-10 20:00:00 COMPLETED telemedicina hace 1 día que está estornudando seguido. Y bueno no es común en él y estuvo con un poco de lagrimeo, no tiene secreción nasal aparente. Pero anda con poca hambre ( raro) y lo veo medio constipado. Tiene como algo pegado en la nariz pareciera moco 27500.00 27500.00 0.00 2025-08-10 23:00:00+00 121781479782 6244 5092 1208 80 3bqkleo4icacdmus2c9me5el8k 392 \N +2210 2025-08-23 12:43:18.283436+00 2025-08-23 12:43:18.283444+00 f t 2025-08-23 10:30:00 COMPLETED clinical perfil 7 + motomensajeria 35500.00 35500.00 0.00 2025-08-23 13:30:00+00 123392388718 6905 5647 1208 100 sn6jfmdr3vj2uimbfrqslo3gj0 272 \N +2984 2025-10-23 15:18:05.758587+00 2025-10-23 15:18:05.758598+00 f t 2025-10-24 12:00:00 COMPLETED clinical Muestra para prequirugico. 0.00 0.00 0.00 2025-10-24 15:00:00+00 0 10716 8899 1583 100 20mlcpd5rkiuugebt2bgqmqt38 \N 1173 +1663 2025-07-04 16:46:16.64211+00 2025-07-04 16:46:16.642117+00 f t 2025-07-04 14:30:00 COMPLETED clinical Jadea constantemente, tiene problemas de cadera, (displacia) artrosis. Recientemente tuvo problemas gástricos asociados a la vesícula, también tiene incontinencia. 50000.00 10000.00 40000.00 2025-07-04 17:30:00+00 1604877631 3905 3281 1026 91 t2q87s6cjb95hfou8sjqf4faq0 713 \N +1648 2025-07-03 13:27:19.993466+00 2025-07-03 13:27:19.993475+00 f t 2025-07-03 19:30:00 COMPLETED clinical Con la llegada de otro gato. Almendra empezo a hacer pis (mucho pis) fuera de las piedras y ayer encontre sangre en su caca. Ella ya habia tenido problemas urinarios cuando era pequeña 50000.00 10000.00 40000.00 2025-07-03 22:30:00+00 116728438717 3820 3232 1026 91 6n4mporubrci6olq5v31kanjlk 718 \N +1602 2025-06-28 22:31:59.325972+00 2025-06-28 22:31:59.325979+00 f t 2025-07-01 18:30:00 NO_REPORT clinical Tos felina 42000.00 9500.00 32500.00 2025-07-01 21:30:00+00 ORD6LEN87576MMKO2M1Y30 2100 1930 114 70 ph0lpt57akin70l7fjed3q1bcc 740 \N +2121 2025-08-16 15:48:01.338206+00 2025-08-16 15:48:01.338216+00 f t 2025-08-16 13:00:00 COMPLETED clinical Lo vio una de nuestras vetes el martes por diarrea y no comia hace un dia, la vete en el domicilio vio una cascarita en la zona genital porque esta recien castrado, ahora la herida esa le sangra y supura y ahra renguea de una pata 45000.00 5000.00 40000.00 2025-08-16 16:00:00+00 122574763830 6354 5170 1208 88 lsbfm9vtueuj2kscsi172bvh5c 345 \N +353 2024-12-14 21:56:39.86+00 2024-12-14 21:56:39.86+00 f t 2024-12-14 10:30:00 COMPLETED clinical Control por no toma agua 41600.00 15600.00 26000.00 2024-12-14 13:30:00+00 267 310 113 70 d32kr3jh790l625sgj12pnu7bk \N \N +2136 2025-08-18 16:38:56.281106+00 2025-08-18 16:38:56.281113+00 f t 2025-08-18 16:00:00 COMPLETED clinical eco abd urgencia 78000.00 13000.00 65000.00 2025-08-18 19:00:00+00 65688265 1328 1339 1208 90 ktlijr70vlpe41fjk82uu7vp7k 327 \N +257 2024-11-22 16:18:17.47+00 2024-11-22 16:18:17.47+00 f t 2024-11-29 18:30:00 COMPLETED vaccination Vacunación antirábica+triple felina. Hace varios años no se la dan. Transacción 94046159546 0.00 0.00 43000.00 2024-11-29 21:30:00+00 212 232 114 9 5htmmf12d75lmomo89nsjnoa2g \N \N +1997 2025-08-06 20:01:00.97081+00 2025-08-06 20:01:00.970818+00 f t 2025-08-06 20:00:00 NO_REPORT clinical Ecografía Abdominal 85000.00 12000.00 73000.00 2025-08-06 23:00:00+00 1699261080 301 355 114 90 l2b55h2qv1u7mjfgbsr2d4iubs 426 \N +848 2025-03-19 13:36:35.203585+00 2025-03-19 13:36:35.203592+00 f t 2025-04-03 16:30:00 CANCELLED clinical 3 radiografias agendamos turno con mallo, mallo pide seña del 50% (agendamos con el porque la otra vete no va a esa zona), por lo que le pagamos la seña al vete ahora. El valor total del servicio es 105mil. los honorarios del vete 90mil, la seña que pago la clienta 15mil. le pedi 45mil mas de seña a la clienta, ya que nosotros le pagamos ese monto de seña al vete que es el 50% del total, y la clienta en la visita paga el otro 50%. Lo dejo en nota interna del chat tambien y en slack. LA CLIENTA CANCELO EL TURNO EL 22/3, LE DEVOLVIMOS LA SEÑA Y EL VETE NO NOS DEVUELVE LA SEÑA 0.00 0.00 45000.00 2025-04-03 19:30:00+00 \N 377 682 111 3 akcp88496v8hakr4sg4vi5bv20 \N \N +503 2025-01-28 21:04:22.025229+00 2025-01-28 21:04:22.025238+00 f t 2025-01-29 18:00:00 COMPLETED vaccination Vacunación anual para 3 gatas y 2 perros Se pone el monto total aquí de las 5 vacunaciones 273375.00 59625.00 213750.00 2025-01-29 21:00:00+00 36087485376 377 443 114 70 \N \N \N +1353 2025-06-02 20:23:24.636914+00 2025-06-02 20:23:24.636923+00 f t 2025-06-02 19:30:00 COMPLETED clinical La pata trasera derecha está flácida o sin fuerzas, sin movimiento y no se puede levantar. Ya tenía previos problemas de cadera. 50000.00 10000.00 40000.00 2025-06-02 22:30:00+00 113667878168 2032 1886 1026 91 uvv25jls2ejo8rft3ienc6ucls 953 \N +2260 2025-08-26 22:09:00.7789+00 2025-08-26 22:09:00.778908+00 f t 2025-08-29 09:00:00 NO_REPORT clinical Extraccion de sangre para perfil completo con orina 76700.00 53700.00 23000.00 2025-08-29 12:00:00+00 123786812994 7323 6009 1583 111 8s1kpi9mpq9vv0rq419oca25sk 205 \N +3015 2025-10-26 19:23:08.326908+00 2025-10-26 19:23:08.326917+00 f t 2025-11-15 11:00:00 NO_REPORT clinical Desparacitación interna+externa y Vacunación anual 111000.00 28000.00 83000.00 2025-11-15 14:00:00+00 131366815446 11576 9582 114 74 keb5mckbsgkburl54omd5t3d38 \N 1219 +2617 2025-09-24 00:57:00.162739+00 2025-09-24 00:57:00.162751+00 f t 2025-09-25 17:00:00 COMPLETED clinical Desde que es bebé Ramón tiene episodios que parecen de granuloma eosinofilico (los análisis de sangre no reflejan eso) y ahora está con el labio inflamado 46000.00 11000.00 35000.00 2025-09-25 20:00:00+00 127319277346 9210 7634 113 1 1ckugfq1s7lkn00qtqfir6da98 \N \N +2200 2025-08-22 17:38:41.503047+00 2025-08-22 17:38:41.503057+00 f t 2025-08-27 11:00:00 COMPLETED clinical Hace ruido al tragar, ver subpatita izquierda Pago por Brubank 42000.00 9500.00 32500.00 2025-08-27 14:00:00+00 Brubank 7084 5796 1583 68 grlptoeml0jcubk09m1kq4u0jc 223 \N +1998 2025-08-06 20:14:11.315338+00 2025-08-06 20:14:11.315346+00 f t 2025-08-11 19:00:00 COMPLETED clinical Chequeo general: corte de uñas, revisión bucal, información sobre chip 49700.00 11700.00 38000.00 2025-08-11 22:00:00+00 120747745201 5967 4871 114 92 557ol9phghkkmn28f52j82uqdc 384 \N +2046 2025-08-10 19:11:00.15537+00 2025-08-10 19:11:00.155383+00 f t 2025-08-11 15:00:00 COMPLETED clinical eco abdominal derivado de Dani Ordoñez 61200.00 6200.00 55000.00 2025-08-11 18:00:00+00 a8bad879-208d-4087-b0a5-4af147 6179 5045 1208 90 uivqk51fj90e4qanosss6cfdm8 387 \N +1901 2025-07-28 14:39:37.715843+00 2025-07-28 14:39:37.71585+00 f t 2025-07-28 18:30:00 COMPLETED vaccination Vacunación triple felina+ corte de garras 72200.00 19200.00 53000.00 2025-07-28 21:30:00+00 18201224079 5396 4421 1026 88 87d8h74e115dn3rlpsabkdsvgk 518 \N +1226 2025-05-20 12:54:02.242259+00 2025-05-20 12:54:02.242266+00 f t 2025-05-20 09:30:00 COMPLETED clinical Perfil Pancreático: $46.000\r\nPerfil geronte canino: $50.000\r\nInmunocomatrografia (Serologia para Ehrlichia) : $31.500\r\nCadete: $12.000 139500.00 139500.00 0.00 2025-05-20 12:30:00+00 \N 266 335 112 86 ht0rm7qk9hrcgumuuamkj26344 \N \N +3115 2025-11-03 18:37:15.99741+00 2025-11-03 18:37:15.997417+00 f t 2025-11-04 19:00:00 COMPLETED clinical Ecografia abdominal. 68000.00 13000.00 55000.00 2025-11-04 22:00:00+00 Santander 11616 9611 1583 90 hddin4a2t8qkrjn0vpn09bkeac \N 1377 +2350 2025-09-02 15:16:46.494853+00 2025-09-02 15:16:46.494867+00 f t 2025-09-03 14:00:00 NO_REPORT clinical 95000.00 10000.00 85000.00 2025-09-03 17:00:00+00 124587931264 6885 6006 1208 82 g7rgohh8uk9sgbcl96o5drbhfs 150 \N +2294 2025-08-29 19:24:22.335882+00 2025-08-29 19:24:22.335892+00 f t 2025-08-30 09:00:00 COMPLETED vaccination Vacunacion anual (Antirrabica y triple felina) 72000.00 19000.00 53000.00 2025-08-30 12:00:00+00 5491133934813 7528 6192 1583 80 0uhiqhocglrudjjh6941m4lnss 195 \N +3364 2025-11-22 18:31:50.751385+00 2025-11-22 18:31:50.751396+00 f t 2025-11-23 10:30:00 COMPLETED clinical Verruga en el cuello, sufrio algun tipo de herida y florecio con secreciones leves 55000.00 11000.00 44000.00 2025-11-23 13:30:00+00 134263552333 14055 11596 1208 80 sd1up5jfakneks206g2f4rbng8 \N 1740 +2120 2025-08-15 23:45:07.314576+00 2025-08-15 23:45:07.314585+00 f t 2025-08-21 12:00:00 COMPLETED clinical Llegada de la muestra, PGC / PCR de ADN proviral de Vilef, test rápido de Vif y Vilef. 0.00 0.00 0.00 2025-08-21 15:00:00+00 0 3789 3213 114 100 dnf1l5uiv90vagkncepdemmub4 \N \N +2285 2025-08-28 23:45:38.229609+00 2025-08-28 23:45:38.229617+00 f t 2025-08-30 14:00:00 CANCELLED clinical Vómito con pequeño coágulo de sangre El cliente reprogramo y luego nos cancelo todo en menos de 20min no le cooresponde devolución porque no aviso 48hr antes del turno 50000.00 10000.00 40000.00 2025-08-30 17:00:00+00 123482308591 7453 6132 114 92 as2lnudsbqtpmkd3jko0rv0qpo \N \N +1655 2025-07-03 19:59:16.393658+00 2025-07-03 19:59:16.393666+00 f t 2025-07-03 18:30:00 COMPLETED clinical hoy le dieron los resultados de los analisis, Hace 6 dias mas o menos empeoro su cuadro, suero subcutaneo con ranitidina, B12 y antiinflamatorio hace 2 dias porque tiene problemas en el corazon, ayer a la noche estaba pasada de vueltas, no durmio ni podia bajar la cabeza, el tema es que no quiere comer solidos y no tomo la pastilla del corazon hace 72hs porque no tolera los solidos, Nariz seca, tiembla conmigo, las patas medias rigidas.\r\nToma Pimonden 2.5 x dia, Cardial B, y Levotiroxina. Le dieron x suero: 0002510 CERENIA DOSIS - KUALCOVIT DOSIS\r\nNOVOTIOC -MELOXIVET--RANITIDINA -VETALGINA\r\nSe asusta y se estresa, pero no muerde 50000.00 10000.00 40000.00 2025-07-03 21:30:00+00 77315762 3861 3258 1208 1 epi8tdl1nf9vq824cf6acktf8k 720 \N +1137 2025-05-09 23:05:00.819413+00 2025-05-09 23:05:00.81942+00 f t 2025-05-12 18:00:00 COMPLETED clinical Esta bajo tratamiento con apokel, comenta la dueña que se generalizo el cuadro de alergia 38500.00 8500.00 30000.00 2025-05-12 21:00:00+00 11065635954 896 1006 113 1 e647lk6qqp6fclush9ook4ikgk \N \N +361 2024-12-19 21:57:07.202+00 2024-12-19 21:57:07.202+00 f t 2024-12-19 13:30:00 COMPLETED clinical - Visita medico clinico: $41.600\r\n- Extracción de sangre: $7.000 c/u → $14.000\r\n- Traslado de las muestras: $11.700\r\n- Test de Leishmaniasis laboratorio: $33.465 c/u → $66.930\r\n- Certificados de salud: $14.000 c/u → $28.000\r\n\r\nSubtotal: $162.230\r\n✨ Este mes tenemos un 20% de descuento, el total te queda en $129.784 129784.00 73784.00 5600.00 2024-12-19 16:30:00+00 247 276 113 1 fc1h0ftsb1bt9k8v5dc3q48oj8 \N \N +1313 2025-05-29 13:20:06.824594+00 2025-05-29 13:20:06.824613+00 f t 2025-05-30 10:00:00 CANCELLED clinical No ve bien al paciente, mucha ingesta de agua 38500.00 8500.00 30000.00 2025-05-30 13:00:00+00 113187409560 1795 1706 1026 21 u57i1srr1g27dpn7449hvu8igg \N \N +1713 2025-07-10 13:05:26.819733+00 2025-07-10 13:05:26.819739+00 f t 2025-07-11 12:00:00 COMPLETED clinical Está encerrada en una esquina adentro de un rack de cables y no la podemos sacar. Fue operada hace 2 días y desde ahí no come ni va al baño. Está petrificada y no la podemos sacar. Necesitamos que alguien nos ayude a sacarla de ahí y poder ver cómo está de la cirugía y darle comida y agua Sbonarle al vete $32500 42000.00 42000.00 0.00 2025-07-11 15:00:00+00 117572025029 4263 3558 1026 99 klij31ijvn4g38ukko90h99fjk 662 \N +524 2025-01-30 19:05:50.682315+00 2025-01-30 19:05:50.682325+00 f t 2025-01-30 17:00:00 NO_REPORT clinical Vacunacion anual gato + consulta clinica perra pis con sangre 92115.00 18015.00 74100.00 2025-01-30 20:00:00+00 100828621360 385 458 111 1 qvmovt3tnshdbubet6sskltb38 \N \N +773 2025-03-05 18:54:19.90958+00 2025-03-05 18:54:19.909588+00 f t 2025-03-06 19:30:00 COMPLETED clinical Inflamación de Pata trasera 38500.00 8500.00 30000.00 2025-03-06 22:30:00+00 104201302110 503 595 113 89 f2sol7f5t96e9ghn6fqf8slkr4 \N \N +1276 2025-05-24 21:14:05.410365+00 2025-05-24 21:14:05.410372+00 f t 2025-05-24 08:00:00 COMPLETED telemedicina https://meet.google.com/wsu-zxiz-swz 25000.00 25000.00 0.00 2025-05-24 11:00:00+00 112234124105 1555 1510 114 89 kr31puoao75csk4lu9kpi3ip94 \N \N +533 2025-01-30 23:32:25.69066+00 2025-01-30 23:32:25.690667+00 f t 2025-01-31 11:00:00 NO_REPORT clinical Control general 35000.00 7000.00 28000.00 2025-01-31 14:00:00+00 100836154902 389 463 113 74 8gs64tkddgh899ucbr889lcupk \N \N +2830 2025-10-09 14:37:41.566365+00 2025-10-09 14:37:41.566373+00 f t 2025-10-09 15:00:00 NO_REPORT clinical Llora y no saben por que, parece que le cuesta orinar y ahora vomito 2 veces. 55000.00 11000.00 44000.00 2025-10-09 18:00:00+00 Z4K6DVNODYGZ5DQM95J8LQ 10342 8586 1208 89 kpihi1rss713bfedp6af84q1j8 \N 933 +2052 2025-08-11 18:45:27.307387+00 2025-08-11 18:45:27.307401+00 f t 2025-08-13 08:30:00 NO_REPORT clinical Extraccion 314700.00 291700.00 23000.00 2025-08-13 11:30:00+00 86VRPQ2GV5JLJP0M2GLY0M 6290 5128 1208 111 a344b477n56r8mn1g2o09i2irk 372 \N +1780 2025-07-15 20:52:45.043631+00 2025-07-15 20:52:45.04364+00 f t 2025-07-16 09:30:00 COMPLETED clinical Gato se cayó hace una semana, duerme más de lo debido, no está tomando líquidos. Charly apareció el año pasado a casa y no tenemos un estudio de él solo está castrado, es muy miedoso Nos pago a nosotros, hay que abonarle a licha $42.500-\r\n n° comprobante-87319836 42000.00 42000.00 32500.00 2025-07-16 12:30:00+00 86973569 4634 3849 1208 1 q7idtpvepbi7od33l5is2rdngs 617 \N +2960 2025-10-21 14:45:19.588051+00 2025-10-21 14:45:19.588065+00 f t 2025-10-22 10:00:00 COMPLETED clinical extraccion de sangre perfil 7 NICOLAS AUX HACE EL TRASLADO, LE DEBEMOS LA PLATA A EL DEL TRASLADO 72400.00 49400.00 23000.00 2025-10-22 13:00:00+00 39322371633 10764 8941 1208 112 k1hhf0do2acc0n0q8fkel0gnjc \N 1133 +2401 2025-09-05 23:09:52.173209+00 2025-09-05 23:09:52.173218+00 f t 2025-09-06 16:00:00 COMPLETED clinical vomitos esporadicos una vez por semana (en agosto la visitaron los vetes y tambien el mes pasado se le realizo eco abdominal) 55000.00 11000.00 44000.00 2025-09-06 19:00:00+00 38746379384 393 467 1208 92 d7mkd76rpqkmj5ke5r9gcc7qdo 118 \N +2254 2025-08-26 15:44:37.586053+00 2025-08-26 15:44:37.586063+00 f t 2025-08-28 20:00:00 COMPLETED clinical chequeo 37800.00 5300.00 32500.00 2025-08-28 23:00:00+00 123745093658 6907 5957 1208 92 9s31dgj5nte6lugnp7s8umnvf0 208 \N +144 2024-10-30 14:13:09.572+00 2024-10-30 14:13:09.572+00 f t 2024-09-26 17:00:00 NO_REPORT Clinica Gata con problemas en la piel Transaccion 88404770799 35000.00 15000.00 20000.00 2024-09-26 20:00:00+00 129 135 \N 2 4ri26q0jqmjk3r9stdivaeiokg \N \N +2184 2025-08-21 17:58:11.836875+00 2025-08-21 17:58:11.836883+00 f t 2025-08-20 11:00:00 NO_REPORT clinical Extraccion para hemograma Está tomando\r\nPeliran gotas 1ml\r\nRumiclamox 250mg\r\nEnrofloxacina 100ml 52700.00 29700.00 23000.00 2025-08-20 14:00:00+00 122424580003 7038 5756 1583 111 rj3t6nq2g9dkok439c8382ddps 305 \N +692 2025-02-20 23:59:59.348635+00 2025-02-20 23:59:59.348642+00 f t 2025-02-20 16:30:00 COMPLETED clinical Bulto en la faringe. ATP: demodexia heredada de su mamá nose si tendra relacion lo q le esta pasando. 41600.00 8600.00 33000.00 2025-02-20 19:30:00+00 102550138807 478 566 113 21 3v4vcmtc48bqe6gahchgho5n7k \N \N +1289 2025-05-26 23:37:24.90957+00 2025-05-26 23:37:24.90958+00 f t 2025-06-02 11:00:00 COMPLETED clinical Estudio de orina+ urocultivo + retiro de muestra 59000.00 59000.00 0.00 2025-06-02 14:00:00+00 112924735312 1555 1510 113 86 euh5hgq1qunl7669iidafj8n90 958 \N +2921 2025-10-17 14:00:35.865966+00 2025-10-17 14:00:35.865977+00 f t 2025-10-17 12:00:00 COMPLETED clinical Dolor, tiene ecografia hecha, deshidratada, no come Abonar $44.000 a la vete. Enviado sin cargo por mala experiencia de otra vete que fue antes 0.00 0.00 0.00 2025-10-17 15:00:00+00 0 10613 8812 1583 21 m2293p81b4us2uf48c0mc0iuqk \N 1065 +2137 2025-08-18 17:08:52.20259+00 2025-08-18 17:08:52.202598+00 f t 2025-08-23 10:00:00 COMPLETED clinical gingivitis administrar gabapentina 50000.00 10000.00 40000.00 2025-08-23 13:00:00+00 122801761384 6788 5547 1208 80 t4a5voa4gs5h96r3bcvlkvgb90 273 \N +1974 2025-08-02 19:20:02.766844+00 2025-08-02 19:20:02.766856+00 f t 2025-08-04 10:00:00 COMPLETED clinical revision por diarrea y corte de garras al gatito Transferir a Licha los $8.000 restantes 30000.00 0.00 30000.00 2025-08-04 13:00:00+00 \N 4549 3787 1208 1 mq2e51helnbgk1em677p43veuo \N \N +2301 2025-08-30 19:17:01.484312+00 2025-08-30 19:17:01.48432+00 f t 2025-08-31 14:00:00 CANCELLED clinical no está queriendo comer hace unos días, le estamos dando paté recovery diluido con una jeringa 50000.00 10000.00 40000.00 2025-08-31 17:00:00+00 38651148378 7596 6251 1208 92 qsmnth312euo9r511gi2jn6u80 \N \N +2215 2025-08-23 18:04:20.686973+00 2025-08-23 18:04:20.686984+00 f t 2025-08-26 14:00:00 COMPLETED clinical control y medicion de presion 42000.00 9500.00 32500.00 2025-08-26 17:00:00+00 122890815081 7152 5859 1208 1 0ocb2u7mbs0ii41b7fsd0sfb74 237 \N +2377 2025-09-03 19:54:00.610953+00 2025-09-03 19:54:00.610961+00 f t 2025-09-06 10:00:00 COMPLETED clinical extraccion de sangre para perfil completo y coagulograma Pago el coagulograma $35000. La muestra anterior se coagulo en el laboratorio, no se le cobro nuevamente 0.00 0.00 0.00 2025-09-06 13:00:00+00 0 7131 5835 1583 112 dnjspjk26duchn8fnktqivhkqk \N \N +1736 2025-07-11 23:53:19.949517+00 2025-07-11 23:53:19.949524+00 f t 2025-08-06 12:00:00 COMPLETED clinical Control clinico 0.00 0.00 0.00 2025-08-06 15:00:00+00 117784252965 301 3644 113 88 7spnrpma36dgcrk82mf927o97o \N \N +2083 2025-08-14 00:06:58.257436+00 2025-08-14 00:06:58.257443+00 f t 2025-08-19 13:30:00 COMPLETED clinical Extracción de sangre 30700.00 7700.00 23000.00 2025-08-19 16:30:00+00 122189253648. 6392 5199 114 104 utmirj9ms6r55d4locsuji1fp8 323 \N +2053 2025-08-11 18:59:07.581615+00 2025-08-11 18:59:07.581624+00 f t 2025-08-13 08:00:00 COMPLETED clinical 0.00 0.00 0.00 2025-08-13 11:00:00+00 . 6290 5128 1208 100 3juoilc8eb1klafdrc4g2lhm3s \N \N +412 2025-01-13 21:25:44.205+00 2025-01-13 21:25:44.205+00 f t 2025-01-09 14:30:00 COMPLETED vaccination Vacunacion Anual perro 60750.00 15750.00 45000.00 2025-01-09 17:30:00+00 98657337136 306 363 110 79 qbtpmrm2eps1288lmvmk0tlu44 \N \N +2302 2025-08-30 19:21:05.357797+00 2025-08-30 19:21:05.35781+00 f t 2025-08-30 19:00:00 COMPLETED clinical eco abd 78000.00 13000.00 65000.00 2025-08-30 22:00:00+00 46YGOW9M8OQRMZYQ9EXD8J 7602 6257 1208 90 8cdsg9kl1geamveuls3q2k30mk 188 \N +2289 2025-08-29 19:08:51.497814+00 2025-08-29 19:08:51.497825+00 f t 2025-08-29 19:00:00 COMPLETED telemedicina Revisión de Resultados 27500.00 27500.00 0.00 2025-08-29 22:00:00+00 38637806498 3789 3213 114 1 ilv7iufebhno7hg160kduefhf8 198 \N +1999 2025-08-06 20:22:10.889871+00 2025-08-06 20:22:10.889881+00 f t 2025-08-07 09:30:00 COMPLETED clinical Chequeo de dos gatos 75600.00 10600.00 65000.00 2025-08-07 12:30:00+00 R7ZGOQNDJER84YOENEXYРО 6018 4910 114 88 c9n4nkh0tmg9ppmvop8bjvvfuk 424 \N +2138 2025-08-18 17:18:37.82637+00 2025-08-18 17:18:37.82638+00 f t 2025-08-19 19:00:00 COMPLETED clinical chequeo general 42000.00 9500.00 32500.00 2025-08-19 22:00:00+00 da07bf7e-49db-425c-ab14-98be04 6789 5548 1208 88 tbgj78apaopsgrur27vs2qri34 314 \N +2182 2025-08-21 16:14:48.265471+00 2025-08-21 16:14:48.26548+00 f t 2025-09-01 16:00:00 COMPLETED vaccination Vacunacion triple felina + desparasitacion int y ext 97500.00 23500.00 74000.00 2025-09-01 19:00:00+00 123170684220 7026 5744 1583 89 aa79opu90041id1lg5f41sbuds 172 \N +2025 2025-08-08 20:52:11.465024+00 2025-08-08 20:52:11.465035+00 f t 2025-08-16 12:00:00 COMPLETED telemedicina Resultados de Análsis 27500.00 27500.00 0.00 2025-08-16 15:00:00+00 120982354231 313 373 114 80 k15hlu6i1b0ea8mncn5a3prc58 346 \N +2078 2025-08-13 15:29:27.014768+00 2025-08-13 15:29:27.014776+00 f t 2025-08-13 18:00:00 COMPLETED clinical hace 14 dias la vio clinico con analisis le pidio turno para endocrinologa, tiene turno para el 28. ayer la bañé y ella no es muy amiga del agua.. La vi muy quieta, le cuesta un poco caminar porq pareciera que las patitas traseras las tiene cansadas, está hechada en su cucha todo el tiempo\r\nNo la veo bien, tiene el cuerpito colorado, la piel se la veo rojiza\r\nY dsps esta hinchada, bastante 50000.00 10000.00 40000.00 2025-08-13 21:00:00+00 122127869256 6392 5199 1208 92 4hb0nh9velqn9oi8fn15maiq1g 367 \N +2376 2025-09-03 19:27:09.954714+00 2025-09-03 19:27:09.954725+00 f t 2025-09-04 19:30:00 COMPLETED clinical Consulta por tos Felina 46000.00 11000.00 35000.00 2025-09-04 22:30:00+00 0V1JXON1DZ6GVZPG9Z64EL 2100 1930 1583 70 g1f92nvo1d9krg61ha47km30ks 138 \N +2444 2025-09-10 17:05:50.400708+00 2025-09-10 17:05:50.400715+00 f t 2025-09-10 16:00:00 COMPLETED clinical 2 citologias 2 citos $72.000 + traslado 85200.00 85200.00 0.00 2025-09-10 19:00:00+00 125659985910 8287 6823 1208 100 nm8h1o52jckh6r8mvbhd6e6rp0 83 \N +2179 2025-08-21 14:38:27.097859+00 2025-08-21 14:38:27.097866+00 f t 2025-08-21 13:30:00 COMPLETED clinical posible infeccion en cav bucal 50000.00 10000.00 40000.00 2025-08-21 16:30:00+00 67561511 7015 5735 1208 88 fjhlens5qseiaj7ul64pbe53js 290 \N +857 2025-03-20 19:30:25.31911+00 2025-03-20 19:30:25.319117+00 f t 2025-03-20 18:00:00 COMPLETED telemedicina Seguimiento del caso 22500.00 22500.00 16000.00 2025-03-20 21:00:00+00 36659555086 123 128 113 1 rcj81cjuole47v9lmdimhcr990 \N \N +1988 2025-08-04 20:16:38.020272+00 2025-08-04 20:16:38.020281+00 f t 2025-08-09 14:00:00 COMPLETED clinical vacunacion y desparacitacion + microchip Seña de $18.750 y los honorarios de $75.000 para el microchip 256150.00 58150.00 198000.00 2025-08-09 17:00:00+00 120983179004 5876 4804 1208 92 og9gh4ovusc8cdmuv4q1igij18 403 \N +305 2024-12-04 18:17:18.083+00 2024-12-04 18:17:18.083+00 f t 2024-11-28 20:30:00 NO_REPORT clinical Urgencia posible infeccion Transacción 94364607499 49600.00 18600.00 31000.00 2024-11-28 23:30:00+00 237 265 114 1 cqjker7s2e3ibbgsje5meoruoo \N \N +2111 2025-08-15 21:05:53.056174+00 2025-08-15 21:05:53.056184+00 f t 2025-08-28 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-08-28 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 6edo9l5t3ke5ggkuh1um4a4q0c \N \N +2161 2025-08-19 23:32:38.810131+00 2025-08-19 23:32:38.81014+00 f t 2025-08-22 17:00:00 COMPLETED clinical Chequeo y extracción de sangre 49700.00 11700.00 38000.00 2025-08-22 20:00:00+00 46YG0W9M8MV44Y1P9EXD8J 6905 5647 114 1 uepbm70vmtg92pkck13gr53kgg 281 \N +2222 2025-08-24 18:35:08.343982+00 2025-08-24 18:35:08.344042+00 f t 2025-08-24 21:00:00 COMPLETED clinical Ecografías 78000.00 13000.00 65000.00 2025-08-25 00:00:00+00 123517453012 5249 5900 114 90 tcaaiv07nm1cdbdciq071mgij8 257 \N +3150 2025-11-05 19:02:08.917924+00 2025-11-05 19:02:08.917933+00 f t 2025-11-17 17:30:00 COMPLETED clinical consulta cardiologica para castracion alcasena cobra mas por distancia 120000.00 10000.00 110000.00 2025-11-17 20:30:00+00 132620609558 12441 10274 1208 82 8458c7edg9lvmmdp6ntf8eb4po \N 1423 +2309 2025-08-31 20:01:26.852675+00 2025-08-31 20:01:26.852683+00 f t 2025-08-31 18:30:00 COMPLETED clinical Orina multiples veces 50000.00 10000.00 40000.00 2025-08-31 21:30:00+00 124370095214 7664 6311 114 68 7b4g9kbkl5k8r46latostu2dek 178 \N +324 2024-12-09 16:16:35.835+00 2024-12-09 16:16:35.835+00 f t 2024-12-08 19:00:00 COMPLETED clinical Se despertó vomitando con un líquido transparente y algunos granos de comida visibles en el vómito. También tiene diarrea de consistencia pastosa y parece estar atragantado. Por el momento, ya comió y está bebiendo agua, pero me parece que está un poco inquieto. 49600.00 18600.00 31000.00 2024-12-08 22:00:00+00 251 282 113 70 hsj9olqkeni1vbvs0jhikkc2is \N \N +3138 2025-11-04 21:53:08.826934+00 2025-11-04 21:53:08.826942+00 f t 2025-11-06 10:00:00 NO_REPORT clinical Chequeo general 46000.00 11000.00 35000.00 2025-11-06 13:00:00+00 131904694719 12380 10228 1583 80 d2mvqk5a6hlmtv76ks7n9e3vjc \N 1404 +2299 2025-08-30 12:53:49.365063+00 2025-08-30 12:53:49.365073+00 f t 2025-08-30 10:30:00 COMPLETED clinical Hace 2 semanas dejo de caminar. Tiene 15 años. Ahora presenta un problema en la piel. Se le salió el pelo en el cuello. Tipo parche caliente. Usa pañal no puede caminar. Y creo que tiene una fistula en el ano. Se queja y grita 50000.00 10000.00 40000.00 2025-08-30 13:30:00+00 124223271900 7559 6216 1208 1 6bhdl7cjkfkeasdeb2vspcto3c 193 \N +2261 2025-08-26 22:09:45.438864+00 2025-08-26 22:09:45.438872+00 f t 2025-08-29 11:00:00 COMPLETED clinical Perfil completo con orina $$34.000 0.00 0.00 0.00 2025-08-29 14:00:00+00 0 7323 6009 1583 100 r1fifo5vkciflafcn4rjb7sf6o \N \N +2396 2025-09-05 16:32:09.767113+00 2025-09-05 16:32:09.767121+00 f t 2025-09-06 13:00:00 COMPLETED clinical Consulta de control, sigue con mocos y ya termino el medicamento 55000.00 11000.00 44000.00 2025-09-06 16:00:00+00 125002648200 7323 6009 1583 1 r8rf4667rikjik5qsil5k8riv8 122 \N +296 2024-12-03 20:33:05.665+00 2024-12-03 20:33:05.665+00 f t 2024-11-27 17:00:00 COMPLETED vaccination Vacunacion anual + desparasitacion interna y externa Abonó el servicio de ambos gatos Transacción 94163391383 145920.00 20420.00 125500.00 2024-11-27 20:00:00+00 235 256 114 68 n7c3bsgolif235c6p5etjgdia0 \N \N +2223 2025-08-24 18:43:24.836787+00 2025-08-24 18:43:24.836797+00 f t 2025-08-24 18:00:00 COMPLETED clinical Revisión por caida 50000.00 10000.00 40000.00 2025-08-24 21:00:00+00 69588995 7198 5902 114 92 17960k9rlq83fls5dgvd0lhpqo 260 \N +2378 2025-09-03 19:54:41.852551+00 2025-09-03 19:54:41.852558+00 f t 2025-09-06 11:30:00 COMPLETED clinical muestra de sangre para perfil completo l y coagulograma 0.00 0.00 0.00 2025-09-06 14:30:00+00 0 7131 5835 1583 100 alpvhnid97lt609k90up4jalto \N \N +315 2024-12-05 16:13:21.924+00 2024-12-05 16:13:21.924+00 f t 2024-11-30 09:00:00 COMPLETED clinical Perro adulto con ojos inflamados e irritados. Transacción 94712496290 41600.00 15600.00 26000.00 2024-11-30 12:00:00+00 246 274 114 70 48d2f5lerouo6jiahkjup9ckek \N \N +2268 2025-08-27 14:17:00.635922+00 2025-08-27 14:17:00.635934+00 f t 2025-09-01 17:00:00 COMPLETED telemedicina Gata de 1 y de 4 años, la de 4 tiene una personalidad muy ansiosa, le cuesta adaptarse a todo, la de 1 tiene mucha energia, no los dejan dormir. Y esta embarazada asi que quieren hacer la introduccion con el bebe. teleconsulta 72500.00 72500.00 0.00 2025-09-01 20:00:00+00 1352944557 4620 3839 1208 105 7cksvdro60niqgsl79521nmanc 171 \N +2084 2025-08-14 00:11:05.197856+00 2025-08-14 00:11:05.197864+00 f t 2025-08-20 19:00:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-08-20 22:00:00+00 38439998715. 6456 5256 114 1 ku1qd480iseh2brp7ag2l8hlc4 296 \N +1623 2025-07-01 14:15:06.659816+00 2025-07-01 14:15:06.659826+00 f t 2025-07-02 20:00:00 COMPLETED clinical Hace más de 1 año tiene vomitos y está bajando de peso. La vieron varios veterinarios y no saben que tiene. Le recetaron nogastrol pero sigue igual. Los análisis de sangre y ecocardiograma dan bien. 42000.00 9500.00 32500.00 2025-07-02 23:00:00+00 116977476664 3710 3148 1026 70 mgc3olbfckloubi7llic7n26fg 731 \N +2310 2025-08-31 20:07:35.591895+00 2025-08-31 20:07:35.591908+00 f t 2025-08-31 18:30:00 COMPLETED clinical Defeca con sangre y vomitos 50000.00 10000.00 40000.00 2025-08-31 21:30:00+00 124371821838 7661 6307 114 92 562ca1811k30fs90he1jqavnko 177 \N +2782 2025-10-06 15:10:29.035682+00 2025-10-06 15:10:29.03569+00 f t 2025-10-06 14:00:00 COMPLETED clinical Extraccion de puntos 55000.00 11000.00 44000.00 2025-10-06 17:00:00+00 128263356893 8958 7414 1583 114 5db807mtdeu1tcrm4m61o7sbp4 \N 867 +2303 2025-08-30 19:23:23.771504+00 2025-08-30 19:23:23.771518+00 f t 2025-08-30 19:30:00 COMPLETED clinical eco abdominal 78000.00 13000.00 65000.00 2025-08-30 22:30:00+00 46YGOW9M8OQRMZYQ9EXD8J 7602 6256 1208 90 afsvcvo6q20l51o1rb0q8gtvj8 187 \N +2187 2025-08-21 19:15:44.872861+00 2025-08-21 19:15:44.872869+00 f t 2025-09-06 15:00:00 COMPLETED clinical Emisión del certificado 0.00 0.00 0.00 2025-09-06 18:00:00+00 0 5876 4804 114 92 ii2331cdg02aiernjc6bfp5aok \N \N +866 2025-03-23 14:54:17.898198+00 2025-03-23 14:54:17.898204+00 f t 2025-03-13 13:30:00 NO_REPORT clinical Retiro de muestras 69600.00 69600.00 0.00 2025-03-13 16:30:00+00 36576635529 556 653 114 86 5d9s2pu4mq22m5g22tl3u23u5c \N \N +3314 2025-11-18 21:46:22.797559+00 2025-11-18 21:46:22.797572+00 f t 2025-11-24 19:00:00 NO_REPORT clinical Antirrabica, certificado de salud y desparacitacion interna y externa 102400.00 24400.00 78000.00 2025-11-24 22:00:00+00 134378106642 13610 11226 1583 1 vnanvji3ragsrenp8obbjcon6c \N 1649 +2099 2025-08-15 20:49:46.86772+00 2025-08-15 20:49:46.867729+00 f t 2025-08-16 11:30:00 NO_REPORT clinical Fluidoterapia 1era seccion de 16 secciones 240000.00 48000.00 193000.00 2025-08-16 14:30:00+00 \N 6619 5396 113 112 ramgk725g05uoujdoqbom6u0bc 348 \N +2026 2025-08-08 20:54:04.115284+00 2025-08-08 20:54:04.115294+00 f t 2025-08-08 12:00:00 COMPLETED telemedicina Resolución de Análsis 27500.00 27500.00 0.00 2025-08-08 15:00:00+00 120974252737 5802 4745 114 92 ckn396fukip3giprtpu44ksetg 414 \N +3093 2025-11-01 13:24:39.600518+00 2025-11-01 13:24:39.600527+00 f t 2025-11-01 11:00:00 NO_REPORT clinical No come, se mueve poco y camina raro, esta como si tuviera algo en la garganta. 55000.00 11000.00 44000.00 2025-11-01 14:00:00+00 L18MKX9RX17EKV719O6WYV 12121 10020 1208 1 nohdhmfld9dahn2lp9cf08kc6o \N 1339 +3008 2025-10-25 15:49:34.890923+00 2025-10-25 15:49:34.890931+00 f t 2025-10-25 15:00:00 COMPLETED clinical Vómitos frecuentes 55000.00 11000.00 44000.00 2025-10-25 18:00:00+00 PDX4OGNYGR781E74N0L6EY 11503 9531 1208 94 i16gt3m2hjhm1clgilq51d2phg \N 1203 +2343 2025-09-01 22:11:43.272124+00 2025-09-01 22:11:43.272131+00 f t 2025-09-16 11:30:00 COMPLETED clinical fluidoterapia 0.00 0.00 0.00 2025-09-16 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 iqkfe0i6fhfpgidkg0gbbutdq8 \N \N +3035 2025-10-28 00:16:18.48606+00 2025-10-28 00:16:18.486069+00 f t 2025-10-28 08:00:00 COMPLETED clinical traslado de muestra de orina 13200.00 13200.00 0.00 2025-10-28 11:00:00+00 130916752867 11302 9364 114 100 hp3830sqqb8a7djbkh10e0ssuk \N 1245 +3062 2025-10-29 18:50:46.252893+00 2025-10-29 18:50:46.252904+00 f t 2025-10-29 17:30:00 COMPLETED clinical No camina , no se mueve casi nada y no come hace 2 días. 55000.00 11000.00 44000.00 2025-10-29 20:30:00+00 131140037281 11857 9805 1208 92 lcmociuenj5uabrgf2g0apn1mg \N 1286 +428 2025-01-16 14:56:57.963+00 2025-01-16 14:56:57.963+00 f t 2025-01-16 11:00:00 COMPLETED clinical La paciente estuvo deshidratada, ahora está mejor pero muy delgada y débil. Neurológicamente estable, usa las piedritas, pero no come su alimento y bebe poca agua. El tutor la hidrata manualmente y le da Ensure, buscando apoyo para mejorar su condición y recuperar peso. 41600.00 8600.00 33000.00 2025-01-16 14:00:00+00 \N 326 389 110 2 2pb20vnin5uctnndbdrajrbmvg \N \N +2257 2025-08-26 19:22:18.437848+00 2025-08-26 19:22:18.437856+00 f t 2025-08-26 19:00:00 COMPLETED clinical Eco abdominal 68000.00 13000.00 55000.00 2025-08-26 22:00:00+00 123313192180 6818 5567 1583 90 r9po4kgavakkafmobrlbh10gd0 229 \N +2000 2025-08-06 20:23:13.53684+00 2025-08-06 20:23:13.536848+00 f t 2025-08-07 09:30:00 COMPLETED clinical Chequeo de dos gatos 0.00 0.00 0.00 2025-08-07 12:30:00+00 0 6018 4909 114 88 c9ucmpsug8b1a093npku7nh32c \N \N +2455 2025-09-11 00:12:04.906994+00 2025-09-11 00:12:04.907003+00 f t 2025-09-17 10:00:00 COMPLETED clinical Ecografia abdominal 68000.00 13000.00 55000.00 2025-09-17 13:00:00+00 83225834 7082 5794 113 90 tdf8u1j6n75mr4vq51ocrn0480 25 \N +599 2025-02-06 15:46:11.842116+00 2025-02-06 15:46:11.842126+00 f t 2025-02-06 12:30:00 COMPLETED telemedicina consulta porque perro comio marihuana 24000.00 24000.00 15000.00 2025-02-06 15:30:00+00 101491386934 423 503 111 1 a7f7d9cd1fjapqjqeedr6bifho \N \N +3014 2025-10-26 19:04:31.055468+00 2025-10-26 19:04:31.055476+00 f t 2025-10-30 15:00:00 NO_REPORT clinical Radiologíax2 Abono todo en una sola seña de $26.000 80000.00 15000.00 65000.00 2025-10-30 18:00:00+00 Z4K6DVNOWO6XD61E25J8LQ 11517 9541 114 84 g41rq06kkfasmk4ukosico2c00 \N 1207 +2054 2025-08-11 19:19:12.916234+00 2025-08-11 19:19:12.916246+00 f t 2025-08-13 11:00:00 NO_REPORT clinical chequeo 42000.00 9500.00 32500.00 2025-08-13 14:00:00+00 46YGOW9M8L4JEMJ89EXD8J 6293 5130 1208 70 g1g65jnbfh2em9u2vuedee0a8c 370 \N +3155 2025-11-05 21:02:57.400927+00 2025-11-05 21:02:57.400939+00 f t 2025-11-06 18:00:00 COMPLETED clinical Vacunacion anual. Se le debe 56500 a la doc, el tutor pago el total por link de pago 78000.00 78000.00 0.00 2025-11-06 21:00:00+00 MP 12455 10288 1583 68 l54uinvae08hs30jhe5ua6a98c \N 1427 +1950 2025-07-31 13:47:31.770822+00 2025-07-31 13:47:31.77083+00 f t 2025-08-01 19:00:00 COMPLETED clinical Está bastante asustado, pero es dócil. Cómo tengo otros gatos quisiera una evaluación a ver edad, si está castrado y si tiene alguna condición que pudiera ser contagiosa 42000.00 9500.00 32500.00 2025-08-01 22:00:00+00 119975891787 5624 4604 1026 92 1ukqdqbg56ohp1ogusi60nuq2o 470 \N +1528 2025-06-20 21:03:32.963777+00 2025-06-20 21:03:32.963787+00 f t 2025-06-20 17:00:00 COMPLETED clinical Consulta clínica de urgencia por diarrea con sangre 50000.00 10000.00 40000.00 2025-06-20 20:00:00+00 115318496071 3052 2661 114 68 5n43n7uo072tqa4v0dvisa4374 816 \N +2055 2025-08-11 19:38:05.940307+00 2025-08-11 19:38:05.940332+00 f t 2025-08-11 17:30:00 COMPLETED clinical masa en intestino en eco abd 45000.00 5000.00 40000.00 2025-08-11 20:30:00+00 e09fa7a9-bbf4-4b0b-b563-51d115 6179 5045 1208 1 tpgnv3205ofv8q95tbianiuhns 386 \N +271 2024-11-28 21:12:50.202+00 2024-11-28 21:12:50.202+00 f t 2024-11-27 19:30:00 COMPLETED clinical Vaunación sextuple+antirrábica + corte de uñas. Transacción 93837056178 0.00 0.00 0.00 2024-11-27 22:30:00+00 207 225 114 70 79qkn36nj12ghn1dvok835iq0c \N \N +2027 2025-08-08 20:59:36.507247+00 2025-08-08 20:59:36.507257+00 f t 2025-08-08 13:30:00 COMPLETED clinical Tos continua 50000.00 10000.00 40000.00 2025-08-08 16:30:00+00 121523068936 6154 5021 114 68 chr9ov00dfr17goftrmrjl4vd4 413 \N +2001 2025-08-06 20:27:53.02864+00 2025-08-06 20:27:53.02865+00 f t 2025-08-07 17:00:00 NO_REPORT clinical Perro accidentado por un auto 42000.00 9500.00 32500.00 2025-08-07 20:00:00+00 3609d423-b497-4d96-9592-9fb786 6019 4911 114 94 i6afkseh6fcl0pp5onv2gjsuus 419 \N +2108 2025-08-15 21:01:23.071813+00 2025-08-15 21:01:23.071823+00 f t 2025-08-24 11:30:00 COMPLETED clinical Fluidoterapia 0.00 0.00 0.00 2025-08-24 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 1mjd4uhnhd41kgtsjljvqlaqss \N \N +2304 2025-08-30 20:03:25.153043+00 2025-08-30 20:03:25.15305+00 f t 2025-08-30 18:00:00 COMPLETED clinical eutanasia 123750.00 13750.00 110000.00 2025-08-30 21:00:00+00 123732188969 7058 5774 1208 1 4moc4hh0vnafuu9b1qb5bk0ilc 190 \N +2448 2025-09-10 21:08:00.325514+00 2025-09-10 21:08:00.325525+00 f t 2025-09-12 16:00:00 COMPLETED clinical Consulta general para ambos gatos Descuento por mas de un anumal -$9.200 82800.00 12800.00 70000.00 2025-09-12 19:00:00+00 125138701795 8396 6919 1583 1 brll3gee23uhoq2ic3s5bd91ao 64 \N +3250 2025-11-12 21:35:46.024473+00 2025-11-12 21:35:46.024483+00 f t 2025-11-13 17:00:00 COMPLETED clinical Es un gatito de más de 15 años, dejó de comer balanceado y ya no come ni siquiera comida húmeda. Muy desganado 46000.00 11000.00 35000.00 2025-11-13 20:00:00+00 D4RO172VZEP8O8L1NKJ3QE 13117 10828 1583 1 prm51s92um6f0oa3jvaqo8hcb0 \N 1565 +2139 2025-08-18 17:23:46.641617+00 2025-08-18 17:23:46.641628+00 f t 2025-08-17 18:30:00 NO_REPORT clinical 25500.00 25500.00 0.00 2025-08-17 21:30:00+00 122801006832 6710 5477 1208 95 erq0qevpeuql4f896lvcq93f58 335 \N +2714 2025-10-01 16:21:00.10413+00 2025-10-01 16:21:00.104144+00 f t 2025-10-03 14:00:00 NO_REPORT clinical 2 radiografias. . 80000.00 15000.00 65000.00 2025-10-03 17:00:00+00 128210747134 8676 7168 1208 84 pf4duu107uajcr8hcc0t1aob3g \N 779 +1951 2025-07-31 14:37:48.548527+00 2025-07-31 14:37:48.548535+00 f t 2025-07-31 12:00:00 COMPLETED clinical Hace aprox 72 horas esta como con arcadas, no llega a ser vomito y un episodio de diarrea aislado. Toma agua, come (poco), hace pis y se lo ve decaido 50000.00 10000.00 40000.00 2025-07-31 15:00:00+00 120498728948 5625 4605 1026 1 pdodutdtdbtlmsinka81q9747o 485 \N +2085 2025-08-14 00:18:38.798928+00 2025-08-14 00:18:38.798936+00 f t 2025-08-15 12:30:00 COMPLETED vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-08-15 15:30:00+00 121633518733. 6469 5271 114 92 4qma8ja3lqp63mmqj8eivrb37s 354 \N +2190 2025-08-21 22:17:44.272974+00 2025-08-21 22:17:44.272983+00 f t 2025-08-21 19:30:00 COMPLETED clinical no camina, jadea mucho, anorexia, decaimiento, está echado sin moverse, se hace pis encima. 50000.00 10000.00 40000.00 2025-08-21 22:30:00+00 123212739110 7053 5770 1583 1 0ltrcod89voqhc3vtrf1sdgbr8 285 \N +1835 2025-07-21 15:24:55.225287+00 2025-07-21 15:24:55.225294+00 f t 2025-07-23 11:00:00 COMPLETED clinical Se rasca y se esta sacando el pelo, tiene colorado podria ser una reaccion alergica, un hongo o alguna otra cosa 42500.00 9500.00 32500.00 2025-07-23 14:00:00+00 ca-0255 4989 4124 1026 1 h6lmhs91l4lbpo6ijj246d9rco 559 \N +2649 2025-09-25 23:51:06.795237+00 2025-09-25 23:51:06.795246+00 f t 2025-09-26 19:30:00 COMPLETED clinical revision final 130000.00 26000.00 104000.00 2025-09-26 22:30:00+00 126994269255 3553 3031 113 68 09nns4sij6nf00mnrodc87aes8 \N \N +1778 2025-07-15 17:44:06.492276+00 2025-07-15 17:44:06.492287+00 f t 2025-07-21 15:30:00 COMPLETED clinical Px se encuentra estresada, consulta para descartar causas físicas 42000.00 9500.00 32500.00 2025-07-21 18:30:00+00 27-35591956-6 4620 3839 1026 91 rfv5v5rd35u1ol30opn1qbq38o 578 \N +2311 2025-08-31 20:12:23.835484+00 2025-08-31 20:12:23.835492+00 f t 2025-09-01 15:30:00 COMPLETED clinical Ojo inflamado y le molesta comer 50200.00 9500.00 40700.00 2025-09-01 18:30:00+00 124359465666 7666 6313 114 21 n13h4a8e7n7e1geb8m0assht2c 174 \N +2403 2025-09-06 15:47:37.076596+00 2025-09-06 15:47:37.076605+00 f t 2025-09-06 15:00:00 COMPLETED clinical Sufrió ataques y ahora no se levanta del piso y no come 55000.00 11000.00 44000.00 2025-09-06 18:00:00+00 125133504606 8102 6666 1208 21 1j05dvc72gtig0rt72pms2tk9k 119 \N +2201 2025-08-22 19:49:09.689989+00 2025-08-22 19:49:09.689999+00 f t 2025-08-28 18:30:00 COMPLETED telemedicina Endocrinología Seña : $10.000 de endocrinologia- Abonar a Carolina $35.000 99000.00 99000.00 0.00 2025-08-28 21:30:00+00 8812910790 4848 4007 114 98 is5hb3vh4lau1cpjk8j71psj80 211 \N +2890 2025-10-15 14:25:45.384326+00 2025-10-15 14:25:45.384337+00 f t 2025-10-15 20:00:00 COMPLETED clinical eco abdominal de urgencia 88000.00 13000.00 75000.00 2025-10-15 23:00:00+00 39242789045 10764 8941 1208 90 vplj46cihnn4d541vodguiob70 \N 1021 +1307 2025-05-28 21:18:44.612292+00 2025-05-28 21:18:44.6123+00 f t 2025-05-28 14:00:00 COMPLETED clinical Consulta de emergencia por tratamiento 25000.00 25000.00 16000.00 2025-05-28 17:00:00+00 113102800570 1555 1510 113 89 qkm0rl2ccukqspuvsbucpujcmc \N \N +2561 2025-09-19 13:00:04.40104+00 2025-09-19 13:00:04.40105+00 f t 2025-09-18 21:00:00 COMPLETED clinical Eco abdominal 68000.00 13000.00 55000.00 2025-09-19 00:00:00+00 126659078036 8716 7196 1583 90 f3on247os5u004hm0t989pc0uk 9 \N +2967 2025-10-21 20:16:22.194481+00 2025-10-21 20:16:22.194491+00 f t 2025-10-24 10:00:00 COMPLETED clinical Dicponible viernes de 10-17hs. no camina mucho y una lesión en la pata trasera, colorado picadura piel. \N 46000.00 11000.00 35000.00 2025-10-24 13:00:00+00 ORD6LEN8PE8DRD3ONM1Y30 11269 9340 \N 78 usuijbp728m4924cc4urv23984 \N 1147 +2269 2025-08-27 16:43:02.046749+00 2025-08-27 16:43:02.046757+00 f t 2025-09-01 20:00:00 COMPLETED clinical Consulta general, gatito rescatado 42000.00 9500.00 32500.00 2025-09-01 23:00:00+00 123339405305 7367 6052 1583 80 4891vu7tur3l2pel5s0tla2qpc 165 \N +1952 2025-07-31 14:56:43.037206+00 2025-07-31 14:56:43.037216+00 f t 2025-08-04 19:00:00 NO_REPORT vaccination Vacunación anual 72000.00 19000.00 53000.00 2025-08-04 22:00:00+00 38237844779 121 126 1026 70 p8m9ngc43bkor32l1nemet23h0 442 \N +3335 2025-11-19 20:51:55.212162+00 2025-11-19 20:51:55.21217+00 f t 2025-11-20 12:00:00 NO_REPORT clinical Vacunacion anual 78000.00 21500.00 56500.00 2025-11-20 15:00:00+00 134507402324 13709 11307 1583 1 mod0c13tkurvups7v83ame1j6o \N 1688 +2407 2025-09-07 19:00:10.682539+00 2025-09-07 19:00:10.682552+00 f t 2025-09-07 17:00:00 COMPLETED clinical https://meet.google.com/urc-pynh-qhe\r\nTiene mocos y no quiere comer 19500 al vet 30000.00 30000.00 19500.00 2025-09-07 20:00:00+00 125268037894 8154 6705 114 92 smpurb9hgt871ge81cfd4hd3vc 108 \N +2622 2025-09-24 17:26:14.503285+00 2025-09-24 17:26:14.503293+00 f t 2025-09-24 21:30:00 NO_REPORT clinical eco abdominal 78000.00 13000.00 65000.00 2025-09-25 00:30:00+00 brubank 9254 7673 1583 90 8vphc0hvnbd17j9q4dc8opmclo \N \N +3136 2025-11-04 20:50:28.219594+00 2025-11-04 20:50:28.219604+00 f t 2025-11-04 19:00:00 COMPLETED clinical Operada de tumor, no se levanta, esta decaida desde ayer. 55000.00 11000.00 44000.00 2025-11-04 22:00:00+00 132495118348 12381 10229 1583 1 jt458t09mgtel9dpnv0egspvjs \N 1405 +2451 2025-09-10 21:57:24.837489+00 2025-09-10 21:57:24.837497+00 f t 2025-09-10 21:30:00 COMPLETED telemedicina Teleconsulta por Perro que se eca y se para, come pasto se le debe $19.500 a la vete 30000.00 30000.00 19500.00 2025-09-11 00:30:00+00 1255696965308 8397 6920 1583 79 osoe0taad5vlt7r8cu23harev8 76 \N +1828 2025-07-19 21:43:23.991812+00 2025-07-19 21:43:23.991819+00 f t 2025-07-21 19:30:00 COMPLETED telemedicina Revisión de los resultados 27500.00 27500.00 0.00 2025-07-21 22:30:00+00 89686885 4265 3560 114 91 7b6c2vllpmh8659h1n1lbjrf3o 573 \N +2002 2025-08-06 20:38:39.05181+00 2025-08-06 20:38:39.051818+00 f t 2025-08-13 16:30:00 COMPLETED vaccination Vacunación Triple Felina 64500.00 17000.00 47500.00 2025-08-13 19:30:00+00 121224533760 5985 4884 114 89 2lei985omus3uuiiq6imiltff0 368 \N +2028 2025-08-08 21:05:36.144379+00 2025-08-08 21:05:36.144387+00 f t 2025-08-11 18:00:00 NO_REPORT clinical Decaimiento, falta de alimento 42000.00 9500.00 32500.00 2025-08-11 21:00:00+00 120994249497 6156 5023 114 89 vm4eotshrtskqehhdh2bm7um20 385 \N +2258 2025-08-26 21:17:07.124786+00 2025-08-26 21:17:07.124797+00 f t 2025-08-27 09:00:00 NO_REPORT clinical Extraccion para hemograma El traslado es de $12.500 por que la tutora lo quiso llevar a otra vete 43200.00 20200.00 23000.00 2025-08-27 12:00:00+00 123241635915 7038 5756 1583 106 n6e2hgfdp40hnu6u2qvh9ps0pk 224 \N +2404 2025-09-06 16:40:32.730354+00 2025-09-06 16:40:32.730363+00 f t 2025-09-06 16:30:00 COMPLETED clinical diarrea con moco transparente y un coágulo de sangre como a las 4am, luego continuó alterado y a la hora otra vez pero solo con moco. A este momento no tuvo otra diarrea pero está decaído y escondido 55000.00 11000.00 44000.00 2025-09-06 19:30:00+00 125138305038 8097 6662 1208 92 ri4ksvfsqtrngee82m7t9a9s9o 117 \N +2400 2025-09-05 21:20:24.038091+00 2025-09-05 21:20:24.038098+00 f t 2025-09-09 11:30:00 COMPLETED clinical estudios de la semana pasada de Sangre y orina\r\nVomitos recurrentes pero con apetto, fue atendida en vete el sábado pasado con suero y retomó aliento sin problemas ..pero hoy volvió a vomitar..sin apetito.\r\nIMPORTANTE: LA t4 subió a 15..había bajado a 5 debemos abonar los $50.000 a caro, la tutora nos abono a nosotros 61000.00 61000.00 50000.00 2025-09-09 14:30:00+00 70499598011250905 8071 6648 1208 98 a7ono3skja9ef14jm3itphen5o 100 \N +2086 2025-08-14 00:24:38.553932+00 2025-08-14 00:24:38.55394+00 f t 2025-08-15 20:30:00 COMPLETED clinical desparacitación para 2 gatos 135000.00 17000.00 118000.00 2025-08-15 23:30:00+00 122147157890. 5071 4220 114 1 k9p0kpvca3rha30maockq3p10o 349 \N +2408 2025-09-07 19:11:44.396856+00 2025-09-07 19:11:44.396862+00 f t 2025-09-07 12:00:00 COMPLETED clinical Tos continua desde hace 4 días 55000.00 11000.00 44000.00 2025-09-07 15:00:00+00 38764432090 8143 6696 114 80 4blspfvcp9je23a711saj5cqhg 112 \N +2685 2025-09-29 23:38:04.245242+00 2025-09-29 23:38:04.245253+00 f t 2025-10-01 15:30:00 NO_REPORT clinical 2 Electrocardiograma Katrina -> Toma condrovet forte Ha, levotiroxina.\r\nNo es de atacar, puede ponerse nerviosa , cualquier cosa tengo bozal.\r\nJano -> Toma medicación antialérgica por la piel y el condrovet.\r\nEs muy bueno, no hay problema 214000.00 24000.00 190000.00 2025-10-01 18:30:00+00 127424725533 9641 8031 114 82 ohdlfdtufmcqcs344tkfkflrl4 \N \N +2106 2025-08-15 21:00:22.210787+00 2025-08-15 21:00:22.210797+00 f t 2025-08-22 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-08-22 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 ienla74l9stjs5ji11bfepmbec \N \N +2483 2025-09-13 21:31:05.79924+00 2025-09-13 21:31:05.799247+00 f t 2025-09-16 20:00:00 COMPLETED clinical todo aclarado en el primer turno, tiene descuento por multimascotas 0.00 0.00 0.00 2025-09-16 23:00:00+00 125508820549 8603 7089 1208 80 p09191rsftk04dchuekdgl3h2s \N \N +2450 2025-09-10 21:56:55.315853+00 2025-09-10 21:56:55.315862+00 t t 2025-09-10 21:30:00 NO_REPORT telemedicina Teleconsulta por Perro que se eca y se para, come pasto se le debe $19.500 a la vete 30000.00 30000.00 0.00 2025-09-11 00:30:00+00 1255696965308 8397 6920 1583 79 tjc13mc7fjbku9so1tjueecuh8 77 \N +2623 2025-09-24 17:26:29.89469+00 2025-09-24 17:26:29.894697+00 f t 2025-09-23 20:00:00 NO_REPORT clinical 29250.00 29250.00 0.00 2025-09-23 23:00:00+00 126797636803 9220 7643 1208 95 hjg5htejg5s75jc90l5bm5v6pc \N \N +49 2024-07-19 13:00:00+00 2024-07-19 13:00:00+00 f t 2024-07-19 13:00:00 COMPLETED Clinica Gata con protuberancia en la cabeza e inflamación de vientre Transaccion 83160266524 Cliente pagó 50% transferencia y 50% efectivo 35000.00 17500.00 20000.00 2024-07-19 16:00:00+00 48 49 114 1 69jp055qi7gvge7eh6sqrc88s4 \N \N +2056 2025-08-11 20:18:08.065623+00 2025-08-11 20:18:08.065634+00 f t 2025-08-14 08:30:00 NO_REPORT clinical radiografia de maxilar superior derecho 75000.00 15000.00 60000.00 2025-08-14 11:30:00+00 121377657983 6282 5123 1208 84 sv3ri1r2hasei42j5r0n24r91k 364 \N +2104 2025-08-15 20:57:49.262799+00 2025-08-15 20:57:49.262808+00 f t 2025-08-20 11:30:00 NO_REPORT clinical fluidoterapia 0.00 0.00 0.00 2025-08-20 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 jndq4pnfqdel7uhv27p7jf38ns \N \N +3316 2025-11-19 02:29:05.80742+00 2025-11-19 02:29:05.807429+00 f t 2025-12-03 14:00:00 PENDING clinical Consulta cardiologica. 110000.00 10000.00 110000.00 2025-12-03 17:00:00+00 Modo 13544 11169 1583 82 m8ho5ak0vuorbf1rvvlocpssj8 \N 1642 +1203 2025-05-16 23:30:48.061637+00 2025-05-16 23:30:48.061646+00 f t 2025-05-20 15:00:00 COMPLETED clinical Desparasitación externa e interna\r\nVacuna triple felina\r\nVacuna antirrábica\r\nControl general 105500.00 25500.00 80000.00 2025-05-20 18:00:00+00 \N 1156 1211 112 89 ksrodav8hsk2k0sisu8hn8iugo \N \N +2224 2025-08-24 18:50:35.054209+00 2025-08-24 18:50:35.054219+00 f t 2025-08-24 20:00:00 COMPLETED clinical Revisión por cristales en la orina , desde enero, tiene estudios hechos 50000.00 10000.00 40000.00 2025-08-24 23:00:00+00 122970802043 4334 5903 114 68 bcsd6jf3v5sp86eqevmcq9tisg 258 \N +378 2024-12-29 22:01:14.95+00 2024-12-29 22:01:14.95+00 f t 2024-12-28 20:30:00 COMPLETED clinical Vomito 49600.00 18600.00 31000.00 2024-12-28 23:30:00+00 277 328 113 70 blgf7pmel5ttqr2n87q6aoc09c \N \N +2891 2025-10-15 14:31:42.593797+00 2025-10-15 14:31:42.593807+00 f t 2025-10-16 10:30:00 COMPLETED clinical Extraccion para prequirurgico y trigliceridos 23000.00 5500.00 17500.00 2025-10-16 13:30:00+00 129957707796 7306 5994 1583 112 uu1r76fpu5rnrtrfq8to6t422o \N 988 +2650 2025-09-26 14:29:51.07283+00 2025-09-26 14:29:51.072839+00 f t 2025-09-27 13:00:00 NO_REPORT clinical Se genero heridas y como le pican se rasca y empeora 46000.00 11000.00 35000.00 2025-09-27 16:00:00+00 127615511112 9407 7820 \N 113 43lcsr0hgs28ef8ufd0e6nhqsk \N \N +2251 2025-08-26 13:56:01.046441+00 2025-08-26 13:56:01.046449+00 f t 2025-09-02 13:00:00 COMPLETED clinical extraccion 30700.00 7700.00 23000.00 2025-09-02 16:00:00+00 123191850823 6392 5199 1208 104 a0371j1n3lp3jtl6j523og1chk 161 \N +2220 2025-08-23 19:58:22.308569+00 2025-08-23 19:58:22.308577+00 f t 2025-08-23 20:00:00 COMPLETED clinical diarrea y parasitos 45000.00 5000.00 40000.00 2025-08-23 23:00:00+00 69285438 5189 4266 1208 68 qlj52982or246uvrnefmmt7shg 266 \N +2312 2025-08-31 20:15:27.867945+00 2025-08-31 20:15:27.867951+00 f t 2025-08-31 12:00:00 COMPLETED clinical Vómitos Continuos 50000.00 10000.00 40000.00 2025-08-31 15:00:00+00 38657230659 7667 6314 114 68 155meqn33o8cbffosbijvlksd0 182 \N +160 2024-10-30 14:13:09.719+00 2024-10-30 14:13:09.719+00 f t 2024-10-03 09:30:00 COMPLETED Ecografia (vet. Paola) Ecografía abdominal Transaccion 89426800544 40000.00 12000.00 30000.00 2024-10-03 12:30:00+00 140 147 \N 5 dsi5cne9l17j9i0nnuejajtvf8 \N \N +2562 2025-09-19 15:30:07.319367+00 2025-09-19 15:30:07.319377+00 f t 2025-09-19 19:00:00 COMPLETED clinical Ecografia abdominal 78000.00 13000.00 65000.00 2025-09-19 22:00:00+00 126234994151 8929 7389 1583 90 is1ohpnqefpn3u0o305esosarc \N \N +2497 2025-09-15 17:11:53.781295+00 2025-09-15 17:11:53.781303+00 f t 2025-09-18 10:00:00 NO_REPORT clinical Ecografia abdominal Se abono la ecografia y la extraccion para perfil 7 ($28000)\r\nSe abona en el domicilio $55.000 a paola y $23.000 a Antonella\r\n\r\nEco (total, sena, vete) $68.000 $13.000 $55.000\r\nEnfermeria (total, sena, vete) $43.900 $20.900 $23.000\r\nEstudios perfil 7 $28.000 139900.00 61900.00 78000.00 2025-09-18 13:00:00+00 125730983895 8524 7021 1583 5 t8fams1v1be1ju0c7usbmqh1ks 17 \N +2576 2025-09-21 19:06:41.162575+00 2025-09-21 19:06:41.162587+00 f t 2025-09-21 12:00:00 COMPLETED clinical Decaimiento, perdida de peso, heces blandas. Gato no sumiso, caracter fuerte. 55000.00 11000.00 44000.00 2025-09-21 15:00:00+00 126445430143 9023 7462 114 68 vut888cia22f49vaevsr4tpfps \N \N +1993 2025-08-05 12:56:44.580957+00 2025-08-05 12:56:44.580967+00 f t 2025-08-10 13:00:00 COMPLETED clinical Seguimiento del px 45000.00 5000.00 40000.00 2025-08-10 16:00:00+00 121033568608 5889 4811 1026 80 rsvtjocc91lk45c37r46ltn9go 397 \N +2988 2025-10-23 19:14:43.46202+00 2025-10-23 19:14:43.462028+00 f t 2025-11-06 18:00:00 NO_REPORT clinical placas x3 desc recompra 85500.00 5500.00 80000.00 2025-11-06 21:00:00+00 130454216011 11321 9380 1208 84 cps6hivaimd49b8g8d0v0ffm2g \N 1178 +106 2024-10-30 14:13:09.208+00 2024-10-30 14:13:09.208+00 f t 2024-09-06 15:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunacion gata hembra castrada Transaccion 87026371596 53000.00 18000.00 35000.00 2024-09-06 18:00:00+00 98 102 114 2 jkol7325e5a0ipgv360d7rg934 \N \N +2029 2025-08-08 21:09:40.353248+00 2025-08-08 21:09:40.353256+00 f t 2025-08-08 20:00:00 COMPLETED clinical Se le salieron dos uñas y sangra 50000.00 10000.00 40000.00 2025-08-08 23:00:00+00 30415212010250808 6159 5026 114 1 kimjq5s66uuvr297qvalo19h6o 408 \N +2488 2025-09-14 19:33:51.048907+00 2025-09-14 19:33:51.048913+00 f t 2025-09-17 09:30:00 COMPLETED clinical Bulto en el estomago 46000.00 11000.00 35000.00 2025-09-17 12:30:00+00 125625132015 8641 7129 114 80 u8o481m3540nvuv43r5ehpvku0 27 \N +2313 2025-08-31 20:18:20.756202+00 2025-08-31 20:18:20.75621+00 f t 2025-08-31 10:30:00 COMPLETED telemedicina Revisión de resultados de estudios 27500.00 27500.00 0.00 2025-08-31 13:30:00+00 123795174985 7668 6315 114 80 gi01s15bt8m7se6co17rke7kj8 183 \N +2225 2025-08-24 19:00:54.223735+00 2025-08-24 19:00:54.223746+00 f t 2025-05-24 16:00:00 CANCELLED clinical Con dolor y posee espondilosis 50000.00 10000.00 40000.00 2025-05-24 19:00:00+00 70041210009250824 7175 5882 114 92 24vjjetveuo1f64sigknkrlq6k \N \N +2398 2025-09-05 17:01:43.772606+00 2025-09-05 17:01:43.772614+00 f t 2025-09-07 11:00:00 COMPLETED vaccination Vacunas anuales para los dos perritos Pagado en el perfil de Paco 0.00 0.00 0.00 2025-09-07 14:00:00+00 0 88 6562 1583 80 brf4q1mpbvago4re95cgtp2tt4 \N \N +1504 2025-06-18 01:40:57.096627+00 2025-06-18 01:40:57.096637+00 f t 2025-06-18 14:00:00 COMPLETED clinical Se rasca contamente y tiene cera negra en la oreja Abono con tarjeta de credito- Hay que abonarle a victoria 42000.00 42000.00 32500.00 2025-06-18 17:00:00+00 \N 2895 2550 113 88 jq330ddq54ui6nk2i4s2n2a7j4 836 \N +2651 2025-09-26 14:49:03.87636+00 2025-09-26 14:49:03.876372+00 f t 2025-10-10 17:00:00 COMPLETED clinical Vacunacion triple felina 70000.00 19000.00 51000.00 2025-10-10 20:00:00+00 WY7ZEPN6QE84LR1WNQ0M51 6905 5647 1583 1 lm7224j2a88c6te48vo1h9lq3c \N \N +2140 2025-08-18 19:17:21.148228+00 2025-08-18 19:17:21.148238+00 f t 2025-08-20 10:00:00 NO_REPORT clinical pago con tarjeta, debemos los $85.000 a nico 95000.00 95000.00 85000.00 2025-08-20 13:00:00+00 122807851892 6802 5555 1208 82 b5me3hk94gnv3a9l7s5v30cb28 307 \N +2710 2025-10-01 13:53:02.498521+00 2025-10-01 13:53:02.498535+00 f t 2025-10-01 18:00:00 COMPLETED clinical Control para un perro rescatado \r\nYa tiene todos los estudios hechos DEBEMOS ABONARLE LOS $44.000 A LA VETE, el tutor se confundio al transferir 55000.00 11000.00 44000.00 2025-10-01 21:00:00+00 128190536284 9727 8106 1208 88 86ji2vh6l63sdnj90o9d3vfll4 \N 771 +2101 2025-08-15 20:56:16.90195+00 2025-08-15 20:56:16.901961+00 f t 2025-08-21 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-08-21 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 4paut80jh3d0sen8dkha60o864 \N \N +2100 2025-08-15 20:55:21.493013+00 2025-08-15 20:55:21.493021+00 f t 2025-08-17 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-08-17 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 6s5oaosuir0h09b9qnpki28iis \N \N +2538 2025-09-18 14:53:38.333346+00 2025-09-18 14:53:38.333354+00 f t 2025-09-25 18:00:00 COMPLETED clinical Consulta general y toma de presion 46000.00 11000.00 35000.00 2025-09-25 21:00:00+00 126098548213 8860 7324 1583 1 b8ruden60o0tpbu3arc6bhplfk \N \N +2624 2025-09-24 17:32:52.474479+00 2025-09-24 17:32:52.474491+00 f t 2025-09-26 08:30:00 NO_REPORT clinical aplicacion de clamoxyl 23000.00 5500.00 17500.00 2025-09-26 11:30:00+00 127386713758 8275 6835 1208 85 ir1j2d3q5ad9pvqqidpd9jv5c4 \N \N +2784 2025-10-06 15:32:11.356516+00 2025-10-06 15:32:11.356526+00 f t 2025-10-06 15:00:00 COMPLETED clinical Consulta post estudios se le deve $19500 a Palummo 30000.00 30000.00 0.00 2025-10-06 18:00:00+00 3D5W612EJEKXR16O9GXYVR 7443 6127 1583 80 rt82o7a13i96ef2mf4m3s2gons \N 872 +2003 2025-08-06 20:45:45.100537+00 2025-08-06 20:45:45.100547+00 f t 2025-08-07 10:00:00 COMPLETED clinical Revisión Post operatoria 42000.00 9500.00 32500.00 2025-08-07 13:00:00+00 120709593727 5987 4887 114 88 ikrppbhha8eh1q0fbsg88bs6n0 423 \N +2756 2025-10-03 21:48:43.344373+00 2025-10-03 21:48:43.344381+00 f t 2025-10-04 10:00:00 COMPLETED clinical placasx2 derivada de su veterinario. 80000.00 15000.00 65000.00 2025-10-04 13:00:00+00 128520374956 822 928 1208 84 fc4st8f65cshn4kovs23tmf2f0 \N 835 +2087 2025-08-14 00:25:23.666403+00 2025-08-14 00:25:23.666415+00 f t 2025-08-15 20:30:00 COMPLETED clinical Desparacitación 0.00 0.00 0.00 2025-08-15 23:30:00+00 0 5071 4186 114 1 n5jthrrjbkdfhk752bl34i2coc \N \N +2821 2025-10-08 19:08:09.343068+00 2025-10-08 19:08:09.343076+00 f t 2025-10-09 08:30:00 NO_REPORT clinical extraccion rapela perfil 5 derivado rapela 40500.00 20500.00 20000.00 2025-10-09 11:30:00+00 128585906469 10287 8540 1208 85 db6i6eousu2av9gnegbmg7of3c \N 921 +2297 2025-08-30 00:18:58.43406+00 2025-08-30 00:18:58.43407+00 f t 2025-09-05 17:00:00 COMPLETED clinical Perfil 7 + orina Abonarle a nicola $4000 del tralado 52000.00 52000.00 0.00 2025-09-05 20:00:00+00 0 7443 6127 113 100 gvbbvd4mf08o1lc2tt9i06kqlg 130 \N +1619 2025-07-01 12:51:36.349251+00 2025-07-01 12:51:36.349261+00 f t 2025-07-01 11:30:00 COMPLETED clinical La castré el dia sabado 28-jun, la tengo que llevar al chequeo y se me hace imposible meterla en la transportadora. El veterinario me dijo que le tienen que administrar antibióticos y de paso quiero colocarle un collar isabelino 50000.00 10000.00 40000.00 2025-07-01 14:30:00+00 116473749175 3697 3140 1026 74 nnk6cc85iq4kiftpenk1eid8qg 749 \N +2351 2025-09-02 16:26:12.28064+00 2025-09-02 16:26:12.28065+00 f t 2025-09-27 15:00:00 COMPLETED clinical tratamiento artrosis descuento por cliente 41400.00 6400.00 35000.00 2025-09-27 18:00:00+00 WGRXJE27GMOVLPVPN7MYQL 4255 3550 1208 88 2hf4144e4pm6flfg0ldj3vsr14 \N \N +2366 2025-09-03 14:03:58.441565+00 2025-09-03 14:03:58.441575+00 f t 2025-09-03 17:00:00 COMPLETED clinical bulto por posible golpe 55000.00 11000.00 44000.00 2025-09-03 20:00:00+00 76408098 5189 4266 1583 68 17sd79ggbje0kdil80pfvr6er4 148 \N +2683 2025-09-29 23:20:23.000993+00 2025-09-29 23:20:23.001006+00 f t 2025-09-30 16:00:00 NO_REPORT clinical Ecografía Abdominal 78000.00 13000.00 65000.00 2025-09-30 19:00:00+00 127983233476 9638 8028 114 90 jgu6lev3bj85cp46hohcbds884 \N \N +1918 2025-07-29 14:43:20.333543+00 2025-07-29 14:43:20.33355+00 f t 2025-07-29 12:30:00 COMPLETED telemedicina Es un perrito que apareció de la calle, tiene lastimada la piel en algunas partes y está muy desnutrido Abonarle a la vete $17.500 27500.00 27500.00 0.00 2025-07-29 15:30:00+00 JMQKYZ9QOY6ZLGE62V50P3 5480 4490 1026 68 petppohdlbeq4s65euquc3om2g 507 \N +2539 2025-09-18 15:15:50.818953+00 2025-09-18 15:15:50.81896+00 f t 2025-09-18 19:30:00 COMPLETED clinical estuvo sintiendose medio decaido porque comió unas flores (las vimos en la caca). Ahora le esta costando hacer pis. Hace gotitas, muchisimas veces al dia (esto viene de antes) 55000.00 11000.00 44000.00 2025-09-18 22:30:00+00 126653611882 822 928 1208 89 52hashdo6h4k7s6t4ouehta75k 13 \N +2851 2025-10-12 19:11:25.81188+00 2025-10-12 19:11:25.811889+00 f t 2025-10-12 12:00:00 NO_REPORT clinical El perro no puede mover sus patas traseras, hasta ayer estaba bien \N 55000.00 11000.00 44000.00 2025-10-12 15:00:00+00 129061301847 10534 8742 \N 78 eca9rl7osg6d62e2tgmeshmk8k \N 967 +2314 2025-08-31 20:25:57.489925+00 2025-08-31 20:25:57.489934+00 f t 2025-08-31 15:00:00 COMPLETED clinical Eutanasia 119000.00 24000.00 95000.00 2025-08-31 18:00:00+00 124341237292 7670 6316 114 92 9g0jqctlbejej4jqvel8bcdhfc 181 \N +2004 2025-08-06 20:48:33.229579+00 2025-08-06 20:48:33.229586+00 f t 2025-08-07 20:00:00 NO_REPORT clinical Le pica y le duele la oreja derecha muchísimo, le intenté limpiar pero sigue con lo mismo hace 2 días 42000.00 9500.00 32500.00 2025-08-07 23:00:00+00 121252096892 5997 4895 114 70 4e9epeinbabjhcpjkesnpg3arg 416 \N +2456 2025-09-11 14:18:16.970763+00 2025-09-11 14:18:16.970769+00 f t 2025-09-13 10:00:00 COMPLETED clinical Consulta general 55000.00 11000.00 44000.00 2025-09-13 13:00:00+00 44bc79b3-36a3-42f5-94ac-2ca1d 8439 6955 1583 80 93n1rv3or5ddjmb0f8u2tf5nk4 56 \N +2652 2025-09-26 15:20:46.552111+00 2025-09-26 15:20:46.55212+00 f t 2025-09-26 16:30:00 COMPLETED clinical Extraccion de sangre, para perfil general sin orina 23000.00 5500.00 17500.00 2025-09-26 19:30:00+00 127060277679 822 928 1583 85 vr7t754me6toh85vh7qaie3ldk \N \N +2716 2025-10-01 16:28:54.402306+00 2025-10-01 16:28:54.402319+00 f t 2025-10-01 15:00:00 COMPLETED clinical Perdio un diente por una caida 55000.00 11000.00 44000.00 2025-10-01 18:00:00+00 127648447947 1109 1174 1583 1 binb37o8mvs34p8llhoek87v9g \N 777 +2088 2025-08-14 00:31:12.363097+00 2025-08-14 00:31:12.363108+00 f t 2025-08-16 15:00:00 COMPLETED clinical Certificados de salud y desparacitación Abonarle a Mara: 133000\r\nSeña:16400 149400.00 149400.00 0.00 2025-08-16 18:00:00+00 \N 6470 5273 114 92 6avieka4sjlvu8n19gtbhaa67s 343 \N +2501 2025-09-15 18:18:26.299953+00 2025-09-15 18:18:26.29996+00 f t 2025-09-16 19:00:00 COMPLETED clinical vac. anual 78000.00 21500.00 56500.00 2025-09-16 22:00:00+00 86350911 8672 7163 1208 92 p5l0gpopjeqqsa2g8hv5u51mf8 32 \N +2352 2025-09-02 16:39:50.99699+00 2025-09-02 16:39:50.997002+00 f t 2025-09-03 19:30:00 COMPLETED clinical Se rasca las patas, abajo de la trompa. 46000.00 11000.00 35000.00 2025-09-03 22:30:00+00 7L8GYKNXWVYDMJQP2MPRZ5 7813 6431 1583 68 j48flpbhisvn6ft1bfnb4pgses 147 \N +2752 2025-10-03 18:35:53.808743+00 2025-10-03 18:35:53.808752+00 f t 2025-10-06 10:00:00 COMPLETED clinical Extraccion para analisis, perfil 7 con orina, y brucella Abonar traslado a Nico $12.000\r\nextraccion, traslado y enfermeriaa $43.900\r\nPerfil 7 con orina $34.000\r\nbrucella $16.500\r\ntotal $94.400 94400.00 71400.00 23000.00 2025-10-06 13:00:00+00 127934892683 8854 7319 1583 112 hauj2s6b9dsb09pnpk4ad14beo \N 823 +2270 2025-08-27 18:36:52.044106+00 2025-08-27 18:36:52.044117+00 t t 2025-08-27 22:00:00 PENDING clinical PRUEBA PRUEBA 0.00 0.00 0.00 2025-08-28 01:00:00+00 0 266 335 110 76 1nv9ah2u3tglhtog4rb4e04co0 \N \N +1387 2025-06-05 19:41:06.138016+00 2025-06-05 19:41:06.138026+00 f t 2025-06-06 15:00:00 COMPLETED clinical Come lento y toma poca agua, es lento debido a su edad.\r\nLe salió un tumor, fue tratado y no hay nada para hacer y no es operable (le dijo su vete de cabecera)\r\nCuando come hace ruido raro y palpa tumor por la garganta.\r\nQuiere que vayan a verlo, así conoce segunda opinión o como proceder, que cuidados darle. 42000.00 9500.00 32500.00 2025-06-06 18:00:00+00 113557457241 2229 2038 1026 1 ejc30k0cds7gvur9mri8rm6fh0 920 \N +2141 2025-08-18 19:19:10.90466+00 2025-08-18 19:19:10.904668+00 f t 2025-08-20 21:00:00 NO_REPORT clinical eco abdominal pago con tarjeta le debemos $65mil a Dani 68000.00 68000.00 65000.00 2025-08-21 00:00:00+00 122281529327 6802 5555 1208 90 p6qhc3aplbjuik4tgh73d7d58o 294 \N +180 2024-10-30 14:13:09.898+00 2024-10-30 14:13:09.898+00 f t 2024-10-14 16:00:00 COMPLETED Urgencias Perro 12 años Desde un día y medio está decaído, no come ni toma agua, babea mucho y ahora le costó pararse. Hace dos días que está con diarrea, a lo último parecía sangre. Transaccion 90508923666 49600.00 18600.00 31000.00 2024-10-14 19:00:00+00 155 164 114 1 cepkgj6llc7pc6b15v30go0ki4 \N \N +2409 2025-09-07 19:18:05.078772+00 2025-09-07 19:18:05.078783+00 f t 2025-09-08 19:00:00 COMPLETED clinical Revisión del tratamiento 46000.00 11000.00 35000.00 2025-09-08 22:00:00+00 124705924355 8120 6682 114 92 lbopdl172b8dirr3kk7g6h0fgc 105 \N +2535 2025-09-17 21:47:33.6197+00 2025-09-17 21:47:33.619709+00 f t 2025-09-19 08:30:00 NO_REPORT clinical Extraccion para coagulograma 44400.00 21400.00 23000.00 2025-09-19 11:30:00+00 126018102997 7038 6754 1583 85 36tn4uknk8a79cr5o9nallpupo 7 \N +2406 2025-09-06 19:41:03.110677+00 2025-09-06 19:41:03.110686+00 f t 2025-09-07 12:00:00 COMPLETED clinical Hace 1 semanas que mi gato no está bien, le cuesta respirar, come muy poco y no toma agua. Está decaído y solo duerme. Nos dieron un remedio llamado enroxina para que tome pero es imposible dárselo. No toma la medicacion y cada vez esta peor 55000.00 11000.00 44000.00 2025-09-07 15:00:00+00 124616274355 8120 6682 1208 92 8abecn0vgrolb15orqjml7oiso 111 \N +2684 2025-09-29 23:28:01.951969+00 2025-09-29 23:28:01.951983+00 f t 2025-10-04 14:00:00 COMPLETED clinical Vacunación Anual 78000.00 21500.00 56500.00 2025-10-04 17:00:00+00 39020086904 9640 8029 114 92 pp0b3nd5mnlag4u1uu3um11280 \N \N +2030 2025-08-08 23:29:52.529921+00 2025-08-08 23:29:52.52993+00 f t 2025-08-09 11:00:00 NO_REPORT telemedicina Revision por decaimiento Abonarle a martin $17500 27500.00 27500.00 0.00 2025-08-09 14:00:00+00 121049290053 2385 2152 113 70 1n8qsm7s2v7k9f49764afl21js 406 \N +2577 2025-09-21 19:19:11.777999+00 2025-09-21 19:19:11.778009+00 f t 2025-09-23 16:00:00 COMPLETED clinical Chequeo general y arcadas continuas 46000.00 11000.00 35000.00 2025-09-23 19:00:00+00 127038335118 2234 2042 114 113 iplb98dl913g1g1l2jdpe4eupo \N \N +2226 2025-08-24 19:07:37.899596+00 2025-08-24 19:07:37.899606+00 f t 2025-08-24 17:30:00 COMPLETED clinical Aparenta dolor, no come, no toma agua y casi no se mueve 50000.00 10000.00 40000.00 2025-08-24 20:30:00+00 67REZ8NPWOVJVW7R94KVGO 7191 5896 114 92 b4m3c1dlubm3ojtnr1dif5oams 261 \N +2757 2025-10-03 22:57:17.163056+00 2025-10-03 22:57:17.163069+00 f t 2025-10-06 16:00:00 COMPLETED clinical vac. anual + bordetella x2. descuento multimascota 172400.00 27400.00 145000.00 2025-10-06 19:00:00+00 39082292971 9963 8240 1208 113 t0ec02k66k14ehs134tjrssc00 \N 831 +2379 2025-09-03 20:30:34.570513+00 2025-09-03 20:30:34.57052+00 f t 2025-09-03 21:30:00 COMPLETED clinical vomitos y diarrea 55000.00 11000.00 44000.00 2025-09-04 00:30:00+00 124210436443 399 473 1583 1 j5eko1fdnkoh187uufs9mahcrc 145 \N +2570 2025-09-19 22:29:22.77089+00 2025-09-19 22:29:22.7709+00 f t 2025-09-20 18:00:00 NO_REPORT clinical Es una gatita que encontré en la calle, está internada pero no tienen servicio de ecografía. Está en mal estados. Le hicimos análisis de sangre pero me recomendaron hacerle una eco 95000.00 10000.00 85000.00 2025-09-20 21:00:00+00 126842703730 8961 7416 1208 90 q6h7tlljsful8haftmbponu6is \N \N +2206 2025-08-22 20:07:52.036428+00 2025-08-22 20:07:52.036438+00 f t 2025-08-22 22:00:00 NO_REPORT clinical Ecografía abdominal 78000.00 13000.00 65000.00 2025-08-23 01:00:00+00 122778999837 7108 5816 114 90 6fftgjb0jhfjaj3chlubf8bir8 275 \N +2540 2025-09-18 15:31:47.401+00 2025-09-18 15:31:47.40101+00 f t 2025-09-18 15:00:00 COMPLETED clinical la veterinaria le recomendo hacer una eco porque esta con muchos vomitos 78000.00 13000.00 65000.00 2025-09-18 18:00:00+00 126657796908 8826 7295 1208 90 8pqk7tdd6naue507cl08n9bdq8 14 \N +2031 2025-08-09 00:05:54.20752+00 2025-08-09 00:05:54.207531+00 f t 2025-08-11 10:00:00 NO_REPORT clinical Extraccion 30700.00 7700.00 23000.00 2025-08-11 13:00:00+00 121584411388 313 373 113 85 01mi9sbt7h1v3g6r7hfsdaslco 390 \N +3235 2025-11-11 23:52:12.976578+00 2025-11-11 23:52:12.976592+00 f t 2025-11-12 11:00:00 NO_REPORT clinical Ecografia \N 78000.00 13000.00 65000.00 2025-11-12 14:00:00+00 132862637295 13016 10735 \N 5 gi2oo79rd3ogvst39807tdsias \N 1543 +2755 2025-10-03 21:40:02.579698+00 2025-10-03 21:40:02.579712+00 f t 2025-10-03 19:30:00 NO_REPORT clinical Inicio con deposiciones blandas hace 4 dias , hoy ya diarreicas con presencia de moco sin sangre . 55000.00 11000.00 44000.00 2025-10-03 22:30:00+00 128525179304 9969 8245 1208 89 se5c6u7rjm0r2u4943q63csbkc \N 833 +2785 2025-10-06 16:15:23.258333+00 2025-10-06 16:15:23.258346+00 f t 2025-10-07 13:00:00 NO_REPORT clinical Ecografia abdominal 73000.00 13000.00 60000.00 2025-10-07 16:00:00+00 128282302511 10119 8379 1583 5 e7tem4167tb3vlgnpqkkmvlo48 \N 871 +3244 2025-11-12 17:47:16.69474+00 2025-11-12 17:47:16.694748+00 f t 2025-11-13 17:00:00 NO_REPORT clinical Rayos \N 85000.00 15000.00 70000.00 2025-11-13 20:00:00+00 132958332475 13097 10809 \N 84 8fo430o099jti6ns8at4i1gjk0 \N 1558 +2578 2025-09-21 19:27:49.75797+00 2025-09-21 19:27:49.75798+00 f t 2025-09-22 18:00:00 COMPLETED clinical Chequeo para revisar pata trasera 46000.00 11000.00 35000.00 2025-09-22 21:00:00+00 126468636769 9064 7499 114 92 idbrnervgb7jtkf3sk72rot1pk \N \N +2861 2025-10-13 13:12:03.311866+00 2025-10-13 13:12:03.311876+00 f t 2025-10-16 09:00:00 COMPLETED clinical Consulta post estudios La vete indico que el control valia $25.000 36000.00 11000.00 25000.00 2025-10-16 12:00:00+00 67REZ8NPW658RX4494KVGO 4987 4122 1583 98 9f7v42jn2dmu5d3ct90cghu048 \N 983 +2410 2025-09-07 19:23:05.006758+00 2025-09-07 19:23:05.006766+00 f t 2025-09-07 16:00:00 COMPLETED clinical Golpe en la Pata 55000.00 11000.00 44000.00 2025-09-07 19:00:00+00 125269445618 8161 6712 114 70 b9oamsqsauakcm2m6lmedjqbs8 109 \N +477 2025-01-24 18:06:55.297694+00 2025-01-24 18:06:55.297703+00 f t 2025-01-25 13:00:00 COMPLETED vaccination Primer vacuna gato cachorro la clienta Aldana Arroyo, pago 2 veces la seña del monto 14.350- la primera la pago con 8600 y la otra con 5750(N° de transacción: 100292062500) 55350.00 14350.00 41000.00 2025-01-25 16:00:00+00 100283813376 362 427 111 70 t4miqh44o8c8nd67cn2udvlt74 \N \N +781 2025-03-06 23:17:26.523712+00 2025-03-06 23:17:26.523721+00 f t 2025-03-06 18:30:00 NO_REPORT clinical Decaimiento Esta coordinado con palladino para mañana, pero la clienta lo vio mal al paciente, entonces lo coordine con victoria 45000.00 8500.00 36500.00 2025-03-06 21:30:00+00 104311249418 410 489 113 88 h8eij1lu875l41t834ph6k0hp8 \N \N +2625 2025-09-24 17:38:48.901532+00 2025-09-24 17:38:48.90154+00 f t 2025-09-25 08:30:00 COMPLETED clinical eco abdominal 83000.00 13000.00 70000.00 2025-09-25 11:30:00+00 127386982984 9109 7541 1208 103 h7rshgam7nokiq0i6s1h78cldg \N \N +1590 2025-06-27 15:07:44.116515+00 2025-06-27 15:07:44.116523+00 f t 2025-06-27 14:00:00 COMPLETED clinical Mi gata no come hace 3 días. Le cambiamos el alimento varias veces pero no hay caso. Solo come alimento húmedo pero muy poquito. Notamos que está tomando mucha agua frecuentemente. Es una gata que siempre comió alimento balanceado excellent, siempre fue de comer mucho y ahora directamente no está comiendo casi nada. Esta castrada, tiene 7 años. Es muy arisca y se estresa mucho con extraños por eso no la podemos llevar a una veterinaria. 50000.00 10000.00 40000.00 2025-06-27 17:00:00+00 LMORZP9051LPJ1MPNEGJ46 3458 2952 1026 21 6cjtorqhq7a5e6obvp3a65csuo 774 \N +2353 2025-09-02 16:46:14.011881+00 2025-09-02 16:46:14.011891+00 f t 2025-09-02 08:00:00 NO_REPORT clinical coproparasitologico 43700.00 43700.00 0.00 2025-09-02 11:00:00+00 124048294813 3347 2872 1208 100 4dsa9gg2j474kdghe15oiq5pkg 163 \N +2227 2025-08-24 19:15:07.050253+00 2025-08-24 19:15:07.050266+00 f t 2025-08-24 17:00:00 COMPLETED clinical Revisión y suministrar suero 50000.00 10000.00 40000.00 2025-08-24 20:00:00+00 123523389296 7183 5888 114 99 7c76o69ud1da17k1hh0qnmq8ao 262 \N +2142 2025-08-18 19:48:10.92952+00 2025-08-18 19:48:10.929527+00 f t 2025-08-19 15:00:00 COMPLETED clinical control y revision de placa 37800.00 5300.00 32500.00 2025-08-19 18:00:00+00 122286415189 2144 4184 1208 91 7eht74c66rqvq8u0ed0ak68s1c 322 \N +2283 2025-08-28 21:50:38.110354+00 2025-08-28 21:50:38.110365+00 f t 2025-08-29 08:00:00 COMPLETED clinical Tiene Moco y parece que respira mal 42000.00 9500.00 32500.00 2025-08-29 11:00:00+00 123491352449 5342 6134 1583 68 7clqeqjnb8vpsv7flmirj4ami4 207 \N +2563 2025-09-19 16:46:17.691668+00 2025-09-19 16:46:17.691677+00 f t 2025-09-20 10:00:00 NO_REPORT clinical Orina Completa 0.00 0.00 0.00 2025-09-20 13:00:00+00 0 822 928 1583 100 ipvdsr2h6nv2iu7pfgcp66hfpo \N \N +2758 2025-10-03 23:02:44.191106+00 2025-10-03 23:02:44.191118+00 f t 2025-10-04 17:00:00 COMPLETED clinical ecografia abdominal. 88000.00 13000.00 75000.00 2025-10-04 20:00:00+00 127966865505 1381 1370 1208 90 1vfjnp688hp3m6svu11fgnskd4 \N 836 +784 2025-03-07 15:50:46.844847+00 2025-03-07 15:50:46.844858+00 f t 2025-03-07 15:30:00 COMPLETED clinical Control abonarle al vete $3.850, que la clienta abono de mas de seña. 34650.00 8500.00 30000.00 2025-03-07 18:30:00+00 103945077065 504 596 111 89 m1cvsakj6rvv0o9gt0agb5dlgk \N \N +2615 2025-09-24 00:34:05.891315+00 2025-09-24 00:34:05.891327+00 f t 2025-09-24 09:30:00 COMPLETED clinical 46000.00 11000.00 35000.00 2025-09-24 12:30:00+00 127302156190 9109 7541 113 113 76kroul1vqrt9l16i5id82dn1s \N \N +2305 2025-08-30 20:25:03.85561+00 2025-08-30 20:25:03.856533+00 f t 2025-09-02 16:00:00 COMPLETED clinical esta ciega y tiene un problema en la coluna, Roma medicamento diariamente. La llevava en una clínica y además de no me gustar el atendimento ella si estresa muchísimo. Entonces necesito hacer el acompañamiento de Bianca y sabe como está su estado de salud 42000.00 9500.00 32500.00 2025-09-02 19:00:00+00 123713556609 7306 5994 1208 89 e8bd8e42pcapfpptiv8m6og19k 159 \N +2247 2025-08-26 12:04:52.893771+00 2025-08-26 12:04:52.893783+00 f t 2025-08-26 08:00:00 COMPLETED clinical Extraccion Rapela Abonarle a Nico 20.000 de la extraccion 20000.00 20000.00 0.00 2025-08-26 11:00:00+00 \N 7316 6002 113 112 88qdc6bnufi80ad2bcqp28106s 240 \N +2315 2025-08-31 20:30:34.296191+00 2025-08-31 20:30:34.296203+00 f t 2025-08-31 17:00:00 COMPLETED clinical Revisión por Probabilidad de Parásitos La dueña pago dos servicios en uno pago 10.000 del clínico y 13.000 de una eco 50000.00 10000.00 40000.00 2025-08-31 20:00:00+00 Z0KV87948JZX54Z42PEYDX 7672 6318 114 70 b647ep0tdemks285c40f43pof8 179 \N +3311 2025-11-18 20:11:26.574662+00 2025-11-18 20:11:26.574675+00 f t 2025-11-22 12:30:00 NO_REPORT clinical Consulta cardiologica 120000.00 10000.00 110000.00 2025-11-22 15:30:00+00 WY7ZEPN6MQ7LXEOQ2Q0M51 13648 11255 1583 82 dlhapomtprnneds1mpd2t1p1hc \N 1658 +2457 2025-09-11 15:18:58.608016+00 2025-09-11 15:18:58.608023+00 f t 2025-09-11 15:00:00 COMPLETED telemedicina Control post estucios Se le debe $19.5000 a vero 30000.00 30000.00 19500.00 2025-09-11 18:00:00+00 125783807884 8275 6835 1583 91 fjcp4f3mc2mto4f6a4l7s9kqvc 75 \N +2653 2025-09-26 15:47:34.6174+00 2025-09-26 15:47:34.617409+00 f t 2025-09-26 14:00:00 COMPLETED clinical Vomitos desde ayer 55000.00 11000.00 44000.00 2025-09-26 17:00:00+00 38987929905 9419 7830 1583 113 t13cjemu70t98ob2lcev55j044 \N \N +1637 2025-07-02 16:56:24.887502+00 2025-07-02 16:56:24.88751+00 f t 2025-07-07 16:00:00 CANCELLED clinical Consulta dermatológica 70000.00 10000.00 60000.00 2025-07-07 19:00:00+00 37871276384 3782 3205 1026 75 8j1osvbq0sfk3b9k3oqinr932k \N \N +2228 2025-08-24 19:19:34.111799+00 2025-08-24 19:19:34.111808+00 f t 2025-05-24 17:00:00 COMPLETED clinical Tiene la oreja infectada 50000.00 10000.00 40000.00 2025-05-24 20:00:00+00 69586662 7187 5891 114 92 4d7sn2h5mvtc4dt1n5iin7bjtc \N \N +2786 2025-10-06 16:20:18.776627+00 2025-10-06 16:20:18.776636+00 f t 2025-10-06 19:00:00 COMPLETED clinical Revisar alimentacion por sobrepeso se le debe $45.000 a la vete 60000.00 60000.00 0.00 2025-10-06 22:00:00+00 128852345002 10123 8383 1583 21 6sm9f0ijcmm6de207uaavtg9ac \N 873 +2458 2025-09-11 15:28:35.451595+00 2025-09-11 15:28:35.451603+00 f t 2025-09-11 15:30:00 COMPLETED clinical Conuslta generaal y corte de unas, una una enroscada 62700.00 13200.00 49500.00 2025-09-11 18:30:00+00 125234010265 8446 6959 1583 21 0ubaju5qcgth83q5kot25loukk 74 \N +2742 2025-10-03 12:14:47.345819+00 2025-10-03 12:14:47.345828+00 f t 2025-10-04 09:00:00 COMPLETED clinical Extraccion de sanagre para perfil general Abonar a Nico $12.000 por la cadeteria 75400.00 52499.00 22901.00 2025-10-04 12:00:00+00 98493852 9882 8167 1583 112 nu896ln2npva8t1q7n0c3cht04 \N 800 +2057 2025-08-11 23:49:19.675403+00 2025-08-11 23:49:19.675412+00 f t 2025-08-12 12:00:00 COMPLETED clinical Revisión Final 117000.00 24500.00 92500.00 2025-08-12 15:00:00+00 121390848151 4163 3470 113 88 6f7gc5pss05apk8i7vrrlaopg0 380 \N +2032 2025-08-09 00:06:24.150668+00 2025-08-09 00:06:24.150675+00 f t 2025-08-11 11:00:00 COMPLETED clinical Traslado 12000.00 12000.00 0.00 2025-08-11 14:00:00+00 \N 313 373 113 100 2fkh42bdkp696uq4semh54q8ic 389 \N +2006 2025-08-06 20:58:24.759368+00 2025-08-06 20:58:24.759376+00 f t 2025-08-07 12:00:00 COMPLETED clinical Estornudos y corte de garras 49700.00 11700.00 38000.00 2025-08-07 15:00:00+00 3D5W612EJROWQQ159GXYVR 6023 4914 114 88 15rthp415rtsdmoiveb8gn8dns 420 \N +2271 2025-08-27 20:06:15.792719+00 2025-08-27 20:06:15.79273+00 f t 2025-09-01 18:00:00 NO_REPORT telemedicina Control 27500.00 27500.00 0.00 2025-09-01 21:00:00+00 123359766269 6885 6006 1583 70 gho2bvrqfh27a5qa2r8c3te54s 169 \N +2686 2025-09-30 00:02:32.059386+00 2025-09-30 00:02:32.0594+00 f t 2025-10-01 16:00:00 NO_REPORT clinical Chequo + Desparasitación interna y externa 71100.00 9600.00 61500.00 2025-10-01 19:00:00+00 0000 1555 1510 114 89 cb0c008dnfdq6mfd6861t0kon8 \N \N +2718 2025-10-01 17:34:16.402478+00 2025-10-01 17:34:16.402488+00 f t 2025-10-06 16:00:00 NO_REPORT clinical vacunacion triple felina 2 pacientes. desc. multi. 126000.00 24000.00 102000.00 2025-10-06 19:00:00+00 PDX4OGNY1385JLRY20L6EY 9769 8140 1208 89 s2dun7b4q6d87kdumbn05gdl3c \N 781 +2354 2025-09-02 16:46:43.510453+00 2025-09-02 16:46:43.51046+00 t t 2025-09-02 08:00:00 NO_REPORT clinical coproparasitologico 43700.00 43700.00 0.00 2025-09-02 11:00:00+00 124048294813 3347 2872 1208 100 fqf6l4gemcbflddslq43vbn52c \N \N +2579 2025-09-21 19:36:32.064418+00 2025-09-21 19:36:32.064427+00 f t 2025-09-22 19:30:00 COMPLETED clinical Vomita los trocitos húmedos (optimun) apenas come lo vomita enteros. Dos días que pasa lo mismo.\r\nAdemás quisiera que al hacer la visita la desparaciten. 79000.00 17500.00 61500.00 2025-09-22 22:30:00+00 127005704356 9042 7479 114 92 prus6dl6peqht1rlp5qaalc8rk \N \N +2626 2025-09-24 17:55:02.932577+00 2025-09-24 17:55:02.932593+00 f t 2025-09-24 16:00:00 COMPLETED clinical perfil 7 para los dos gatitos perfil 7 + traslado 70200.00 70200.00 0.00 2025-09-24 19:00:00+00 127393664868 9137 7566 1208 100 2j0jinkjjba9h1mab3tpqldotk \N \N +93 2024-10-30 14:13:09.083+00 2024-10-30 14:13:09.083+00 f t 2024-08-30 16:00:00 NO_REPORT Clinica Consulta clínica perro adulto con posible acv Transacción 86463754592 35000.00 15000.00 20000.00 2024-08-30 19:00:00+00 87 91 114 2 srgflpuhtll4g10suuiaqnlsko \N \N +2102 2025-08-15 20:56:54.28146+00 2025-08-15 20:56:54.281469+00 f t 2025-08-18 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-08-18 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 g33dj1e5f498cr9url2r1urahk \N \N +2541 2025-09-18 15:39:21.410157+00 2025-09-18 15:39:21.410168+00 f t 2025-09-18 20:00:00 COMPLETED clinical eco abd descuento multimascota, esta todo aclarado en el otro turno. 0.00 0.00 0.00 2025-09-18 23:00:00+00 126658581772 8862 7326 1208 90 ppfh02esk5vmp3fusjs3nvuutc \N \N +2502 2025-09-15 20:01:00.687599+00 2025-09-15 20:01:00.687608+00 f t 2025-09-30 20:30:00 COMPLETED clinical 1 vacunacion anual + desp int ext gato 2-5kg $33.000 desp int + ext gato 2-5kg\r\n$78.000 1 vacuna anual 111000.00 28000.00 83000.00 2025-09-30 23:30:00+00 126302013788 8676 7168 1583 92 rupo8qhu1b11uap3491oljduhk \N \N +2411 2025-09-07 20:29:40.769759+00 2025-09-07 20:29:40.769766+00 f t 2025-09-13 14:00:00 COMPLETED vaccination Vacunación Quíntuple y Desparacitación interna y externa 103000.00 25500.00 77500.00 2025-09-13 17:00:00+00 125275556802 8168 6717 114 92 96drg9o6tp85e5vkgkfqi6981o 53 \N +3281 2025-11-15 18:28:33.773192+00 2025-11-15 18:28:33.773203+00 f t 2025-11-16 08:00:00 NO_REPORT clinical aplicacion de medicacion inyectable. Desc. recompra 49500.00 5500.00 44000.00 2025-11-16 11:00:00+00 133377356067 12810 10572 1208 70 8ve879uchmck3ddc4ug3u4tql4 \N 1615 +1098 2025-05-05 18:22:47.581331+00 2025-05-05 18:22:47.581338+00 f t 2025-05-06 16:30:00 COMPLETED clinical Administrar antibiótico (tribotie) 38500.00 8500.00 30000.00 2025-05-06 19:30:00+00 7L8GYKNXWJ66Z0YX2MPRZ5 797 912 112 1 q94c93679l5d170dvdiaeaacb0 \N \N +2862 2025-10-13 13:27:04.377739+00 2025-10-13 13:27:04.377748+00 f t 2025-10-13 12:00:00 COMPLETED clinical Irritacion en el cuello por uso de corea 55000.00 11000.00 44000.00 2025-10-13 15:00:00+00 cuenta DNI 10600 8799 1583 1 noensbv8hqrpo75ujnedsa9eu0 \N 981 +2892 2025-10-15 14:36:22.26437+00 2025-10-15 14:36:22.264379+00 f t 2025-10-16 12:30:00 COMPLETED clinical Prequirurgico, trigliceridos y orina. 0.00 0.00 0.00 2025-10-16 15:30:00+00 0 7306 5994 1583 100 uj0val543h3g1q57fg2sqtrsag \N 1024 +2961 2025-10-21 14:59:04.244968+00 2025-10-21 14:59:04.244981+00 f t 2025-10-21 12:00:00 COMPLETED clinical En un mes mi gato desarrollo un nivel 4 de insuficiencia renal. Tengo estudios de sangre y orina al día y esta con tratamiento de ringer lactato y medicación 60000.00 60000.00 0.00 2025-10-21 15:00:00+00 39322752195 11221 9313 1208 115 eg4tr2mggr3m8bmrev4kdd4rkc \N 1132 +2316 2025-08-31 20:31:18.679098+00 2025-08-31 20:31:18.679106+00 f t 2025-08-31 20:30:00 COMPLETED clinical Ecografía Abdominal 78000.00 13000.00 65000.00 2025-08-31 23:30:00+00 0 7672 6318 114 90 5nk4n7i0p5gacph3a2pejg0uk8 176 \N +3012 2025-10-26 18:52:04.100449+00 2025-10-26 18:52:04.100458+00 f t 2025-10-26 14:00:00 COMPLETED clinical Vomitos con un poco de sangre \N 55000.00 11000.00 44000.00 2025-10-26 17:00:00+00 130781723253 11575 9581 \N 94 aancli7465qom3kop0j8kg41eo \N 1217 +2654 2025-09-26 16:41:52.864275+00 2025-09-26 16:41:52.864283+00 f t 2025-09-26 17:00:00 NO_REPORT clinical Se le debe $19.500 a Martin 30000.00 30000.00 19500.00 2025-09-26 20:00:00+00 L18MKX9R7443KJ8V9O6WYV 7201 5906 1583 70 m9hp8ff5feo4pmob9s7hrfup7o \N \N +3165 2025-11-06 16:56:07.091525+00 2025-11-06 16:56:07.091533+00 f t 2025-11-06 17:00:00 COMPLETED clinical Ecografia abdominal por Mucho dolor abdominal, vomito y diarrea 82000.00 12000.00 70000.00 2025-11-06 20:00:00+00 132147061611 12531 10353 1583 103 s5smtpvhaib2fvt2gvi8bovtc0 \N 1446 +3100 2025-11-01 17:20:19.141946+00 2025-11-01 17:20:19.141956+00 f t 2025-11-01 16:00:00 COMPLETED clinical recien vomito con sangre. 55000.00 11000.00 44000.00 2025-11-01 19:00:00+00 10175317007251101 2211 2020 1208 92 e2gmh2ugr9ml42n6l9tg32olak \N 1348 +2564 2025-09-19 17:23:38.297212+00 2025-09-19 17:23:38.297221+00 f t 2025-09-23 18:30:00 COMPLETED clinical Es para vacunación anual (antirrábica y séxtuple) 78000.00 21500.00 56500.00 2025-09-23 21:30:00+00 126248518383 7909 6512 113 92 840j6j57b8j6v4dc8utli9h4bc \N \N +2787 2025-10-06 17:06:27.276881+00 2025-10-06 17:06:27.276894+00 f t 2025-10-06 17:30:00 NO_REPORT clinical Ecografía Abdominal 88000.00 13000.00 75000.00 2025-10-06 20:30:00+00 128289184835 10039 8307 114 90 k4lap32rb3ve6e831ffhdhqaic \N 874 +2648 2025-09-25 21:53:37.588749+00 2025-09-25 21:53:37.588757+00 f t 2025-09-30 14:00:00 NO_REPORT clinical Rayos, 4 placas 110000.00 15000.00 95000.00 2025-09-30 17:00:00+00 126979720877 9362 7778 1583 84 6g2l1rmu3rs38defd3a6f8dmnk \N \N +2317 2025-08-31 20:35:03.393921+00 2025-08-31 20:35:03.393933+00 f t 2025-08-31 16:00:00 COMPLETED clinical Problemas de movilidad. Aparentemente lesión en pata delantera derecha. Cadera caída 50000.00 10000.00 40000.00 2025-08-31 19:00:00+00 123809992327 7653 6298 114 92 3jtqcf3vt7cbg49a7pkq61sk44 180 \N +2580 2025-09-21 19:43:18.93635+00 2025-09-21 19:43:18.936359+00 f t 2025-09-22 15:30:00 COMPLETED clinical Defeca con sangre 46000.00 11000.00 35000.00 2025-09-22 18:30:00+00 127030830674 9049 7485 114 21 d25mg4tb6d5el0vs2l40kr2dso \N \N +2033 2025-08-09 15:51:49.268392+00 2025-08-09 15:51:49.268401+00 f t 2025-08-09 19:00:00 COMPLETED clinical fiebre, come poco, diarrea con sangre. Administran gaba para poder revisarlo 50000.00 10000.00 40000.00 2025-08-09 22:00:00+00 3000c0da-1003-4309-94de-fff32 6179 5045 1208 68 5g8fjnsuiefu8ccs54hpr0akl8 401 \N +2007 2025-08-06 21:05:21.898969+00 2025-08-06 21:05:21.89898+00 f t 2025-08-07 11:00:00 NO_REPORT clinical Extracción de Sangre 143000.00 123000.00 20000.00 2025-08-07 14:00:00+00 38330132360 6024 4916 114 85 i0skhk7nr3r9p6a67822ptg4eo 422 \N +3158 2025-11-06 14:10:15.096978+00 2025-11-06 14:10:15.09699+00 f t 2025-11-06 15:00:00 COMPLETED clinical Se encuentra muy caido y bajo de energias, no tiene apetito y duerme mucho 55000.00 11000.00 44000.00 2025-11-06 18:00:00+00 132122263539 12510 10337 1208 101 ehd291o3idf8e0e3bk56snko7c \N 1436 +2759 2025-10-04 12:50:51.013328+00 2025-10-04 12:50:51.013337+00 f t 2025-10-08 11:00:00 COMPLETED clinical vacunacion anual para 2. desc. multimascota 140400.00 27400.00 113000.00 2025-10-08 14:00:00+00 128020659897 9955 8230 1208 68 00i32ijkhpb11q3e40lr79koqc \N 839 +2058 2025-08-11 23:50:18.795764+00 2025-08-11 23:50:18.795775+00 f t 2025-08-12 08:00:00 NO_REPORT clinical Servicio classic de cremación individual con la devolución de las cenizas 0.00 0.00 0.00 2025-08-12 11:00:00+00 0 4163 3470 113 95 jfn608mec53bl6jtplgccnj7pk \N \N +2503 2025-09-15 20:36:12.575948+00 2025-09-15 20:36:12.575958+00 f t 2025-09-16 14:00:00 COMPLETED telemedicina control de estudios descuento recompra 27000.00 27000.00 0.00 2025-09-16 17:00:00+00 Z4K6DVNODVYOJ8LM95J8LQ 8106 6670 1208 91 1feqfvn7m84ugld30ra9195m2g 35 \N +2542 2025-09-18 15:40:43.744679+00 2025-09-18 15:40:43.744687+00 f t 2025-09-18 20:30:00 COMPLETED clinical eco abd descuento multimascota + el descuento por efectivo de dirisio 120400.00 10400.00 110000.00 2025-09-18 23:30:00+00 126658581772 8862 7327 1208 90 tloc45m92jpf68mvi6spq77m9s 1 \N +2893 2025-10-15 14:50:17.191411+00 2025-10-15 14:50:17.191419+00 f t 2025-10-16 10:00:00 COMPLETED clinical Muestra de sangre 0.00 0.00 0.00 2025-10-16 13:00:00+00 0 123 128 1583 100 f8ic4a9h1hgr6olhmo0l18tivc \N 1025 +2459 2025-09-11 17:18:19.862006+00 2025-09-11 17:18:19.862013+00 f t 2025-09-10 16:00:00 COMPLETED clinical mycoplasma 0.00 0.00 0.00 2025-09-10 19:00:00+00 0 5071 4220 114 100 o8unhe7inrkuk50s1o2l311b80 \N \N +2370 2025-09-03 15:36:26.2773+00 2025-09-03 15:36:26.277309+00 f t 2025-09-04 10:30:00 NO_REPORT clinical Muestra para IGF1, profesterona cuantitatica, fructosamina, sodio, potasio, urea, creatina, CPK 0.00 0.00 0.00 2025-09-04 13:30:00+00 0 7899 6503 1583 100 m20oqbhe8lhc0ajebu8mqo2e50 \N \N +2832 2025-10-09 19:06:52.247098+00 2025-10-09 19:06:52.247107+00 f t 2025-10-14 14:00:00 NO_REPORT clinical Rayos 2 placas 80000.00 15000.00 65000.00 2025-10-14 17:00:00+00 128721097201 10006 8279 1583 84 2o3rp4h83r8555pn1682tp4l74 \N 937 +2229 2025-08-24 19:26:10.424967+00 2025-08-24 19:26:10.424978+00 f t 2025-08-24 15:00:00 NO_REPORT clinical ojos rojos, Lagaña Verde y breve cegera 50000.00 10000.00 40000.00 2025-08-24 18:00:00+00 \N 7201 5906 114 70 3oqtfcv699j3fn4qt392127978 264 \N +2412 2025-09-07 20:42:31.549719+00 2025-09-07 20:42:31.549726+00 f t 2025-09-08 19:30:00 COMPLETED clinical Lagrimeo del ojo izquierdo 46000.00 11000.00 35000.00 2025-09-08 22:30:00+00 125278096894 8169 6718 114 68 gk8ammgjinmgqpb3uhm49ge39s 104 \N +2355 2025-09-02 16:57:33.130551+00 2025-09-02 16:57:33.130567+00 f t 2025-09-02 17:00:00 COMPLETED clinical Mi gata tiene una herida que no se le cicatriza le aplicamos desinfectantes que nos dijeron otros veterinarios pero al ser grande tampoco se la puede trasladar porque es arisca. Y se rasca entonces nunca se le cura 46000.00 11000.00 35000.00 2025-09-02 20:00:00+00 38687302422 7763 6395 1208 94 55588stgk54esfrocpuqlsg6ds 157 \N +2923 2025-10-17 14:53:32.235185+00 2025-10-17 14:53:32.235195+00 f t 2025-10-17 16:00:00 COMPLETED clinical Vacuna sextuple. 70000.00 19000.00 51000.00 2025-10-17 19:00:00+00 130291705286 10953 9089 1583 68 j9svd1tutvfv0ml736ednkss80 \N 1064 +2272 2025-08-27 20:57:24.711821+00 2025-08-27 20:57:24.711829+00 f t 2025-08-27 18:00:00 COMPLETED clinical Consulta por una uña morada 50000.00 10000.00 40000.00 2025-08-27 21:00:00+00 123365586129 227 247 1583 68 g6f5rce0prpl2r1ml21pt5ehpc 220 \N +2627 2025-09-24 18:27:30.036012+00 2025-09-24 18:27:30.036021+00 f t 2025-09-25 08:30:00 COMPLETED clinical Consulta gral, come poco y toma poca agua se le deben $3.000 a Palummo 46000.00 14000.00 35000.00 2025-09-25 11:30:00+00 R7ZG0QNDJDEYED5GNEXYPO 9270 7688 1583 80 5r4rmd5lk0lvgnt2pcbp5kne00 \N \N +3038 2025-10-28 16:17:27.967518+00 2025-10-28 16:17:27.967527+00 f t 2025-11-07 09:00:00 COMPLETED clinical Extraccion para perfil tiroideo. 116400.00 93400.00 23000.00 2025-11-07 12:00:00+00 LOEJVV9JZYJW1MLR2QMD0G 9712 8096 1583 112 pn9alo6fj8ha4vn49qtho9d8eo \N 1253 +2655 2025-09-26 16:45:27.972227+00 2025-09-26 16:45:27.972236+00 f t 2025-09-27 11:00:00 COMPLETED clinical Vacunacino anual y control general 78000.00 21500.00 56500.00 2025-09-27 14:00:00+00 0V1JXON1DGGE036V9Z64EL 9412 7824 1583 80 2c1ulh4jlie9gq0b94u8p49uk8 \N \N +3284 2025-11-15 20:12:47.452572+00 2025-11-15 20:12:47.452586+00 f t 2025-11-15 17:30:00 COMPLETED clinical Tiene 17 años tiene diagnóstico de enfermedad renal en este momento está con un absceso en la cara necesitaría ayuda para tratar el absceso. 55000.00 11000.00 44000.00 2025-11-15 20:30:00+00 39684872393 13408 11039 1208 1 r5pgeq1ijuabr7hud6hn2oubfg \N 1616 +2962 2025-10-21 15:23:48.485911+00 2025-10-21 15:23:48.485921+00 f t 2025-10-24 18:00:00 COMPLETED clinical No puede mover las patas de atras. 46000.00 11000.00 35000.00 2025-10-24 21:00:00+00 130178495685 11234 9322 1583 99 n5pmap2i6ekpk6o0nm69mdrno8 \N 1137 +2749 2025-10-03 15:08:02.123585+00 2025-10-03 15:08:02.123596+00 f t 2025-10-03 17:00:00 COMPLETED clinical Constipacion se le debe a lisandro $19500 30000.00 30000.00 0.00 2025-10-03 20:00:00+00 128474519378 1381 1370 1583 1 tr02icp59q860u8mrgauutolos \N 815 +2687 2025-09-30 00:11:29.690554+00 2025-09-30 00:11:29.690567+00 f t 2025-10-02 12:30:00 COMPLETED clinical Chequeo + Extracción de sangre 53700.00 13200.00 40500.00 2025-10-02 15:30:00+00 127437183029 9644 8033 114 88 pqnr3g1f2l9rrlev7v8mdjtrc0 \N \N +238 2024-11-15 20:50:16.876+00 2024-11-15 20:50:16.876+00 f t 2024-11-19 15:00:00 COMPLETED clinical Vacunacion Transacción 93502537948 68800.00 25800.00 42999.99 2024-11-19 18:00:00+00 199 212 114 1 q018nvdumeurdkm7kcr7mka3u0 \N \N +2788 2025-10-06 19:15:45.341071+00 2025-10-06 19:15:45.341081+00 f t 2025-10-08 09:30:00 COMPLETED clinical Consulta general 46000.00 11000.00 35000.00 2025-10-08 12:30:00+00 128305627705 340 403 1583 68 1qcv9hjdeu8tgsgl952bk4mdmc \N 875 +2034 2025-08-09 15:58:49.018586+00 2025-08-09 15:58:49.018596+00 f t 2025-08-09 14:00:00 COMPLETED clinical Esta en muy mal estado, muy flaco. Lo rescate hace 1 día 50000.00 10000.00 40000.00 2025-08-09 17:00:00+00 9d065be3-7454-4e5c-abdd-ce569b 6176 5041 1208 1 0jl32rv7bedfkjaubrv94hscno 404 \N +2273 2025-08-27 23:16:29.091983+00 2025-08-27 23:16:29.091993+00 f t 2025-08-28 17:00:00 COMPLETED clinical Ecografía Abdominal 68000.00 13000.00 55000.00 2025-08-28 20:00:00+00 86VRPQ2GVJXEKK7Y2GLY0M 7395 6077 114 90 6plaquholpgqgsn9mpv90k7itc 213 \N +2543 2025-09-18 15:56:31.057546+00 2025-09-18 15:56:31.057553+00 f t 2025-09-19 18:00:00 COMPLETED clinical Vacunacino anual para los 3 Dsecuento de $46.800 por ser dos mascotas y ser cliente 187200.00 17700.00 169500.00 2025-09-19 21:00:00+00 78abd38f-f7d7-44ea-a65c-2bbc91 277 328 1583 68 me6feldcmaecv5kd3lattgchro \N \N +2634 2025-09-25 14:31:55.762035+00 2025-09-25 14:31:55.762047+00 f t 2025-09-25 16:00:00 COMPLETED clinical Le estuvo saliendo mucha lágrima en estos dos días que ya se convirtieron en lagañas blancas y tiene irritado el recorrido de la lágrima del lado izquierdo. Los ojos están bien por ahora pero tiene la piel alrededor de los ojos irritada. 55000.00 11000.00 44000.00 2025-09-25 19:00:00+00 127490199516 3656 3104 1208 88 ilph32kdoj6jtofkbgv7r1bc0c \N \N +454 2025-01-21 19:09:34.111116+00 2025-01-21 19:09:34.111124+00 f t 2025-01-29 09:00:00 NO_REPORT clinical Chequeo general, vaciamiento de glandulas + corte de garras 35360.00 35360.00 26000.00 2025-01-29 12:00:00+00 \N 123 128 111 1 99tk3drsdodo5tkvf5hf2dh7c4 \N \N +2059 2025-08-11 23:52:43.310222+00 2025-08-11 23:52:43.310232+00 f t 2025-08-12 09:30:00 COMPLETED clinical Perfil Numero 7 Le cobre la seña de 2200, porque lisandro hizo una extracion su avisar 42200.00 42200.00 0.00 2025-08-12 12:30:00+00 \N 6179 5045 113 100 iu9iavpseo7j599hsiu2pcjjq8 382 \N +2656 2025-09-26 17:16:23.956086+00 2025-09-26 17:16:23.956097+00 f t 2025-09-27 13:00:00 COMPLETED clinical Vacunacion anual y consulta general 78000.00 21500.00 56500.00 2025-09-27 16:00:00+00 naranjaX 9430 7837 1583 1 cbshv8d993bqkigm49shfvttb4 \N \N +2037 2025-08-09 17:27:38.993298+00 2025-08-09 17:27:38.993308+00 f t 2025-08-10 12:00:00 COMPLETED clinical inflamacion en pata trasera 45000.00 5000.00 40000.00 2025-08-10 15:00:00+00 121653981652 1734 1651 1208 92 llni4odiant2tm75kubcf3365g 399 \N +2008 2025-08-06 23:08:56.413814+00 2025-08-06 23:08:56.413822+00 f t 2025-08-08 08:30:00 NO_REPORT clinical Extraccion 20000.00 0.00 20000.00 2025-08-08 11:30:00+00 38333616781 6033 4925 113 85 oqv3ac97frlib4cd7e00iu6qcg \N \N +2286 2025-08-29 14:14:32.232022+00 2025-08-29 14:14:32.232034+00 f t 2025-09-07 15:00:00 COMPLETED clinical Colocacion de microchip 164000.00 28250.00 135750.00 2025-09-07 18:00:00+00 Brubank 7501 6168 1583 70 50a3elqp8rb81pipvs5mbd5v9g 110 \N +202 2024-10-30 14:13:10.095+00 2024-10-30 14:13:10.095+00 f t 2024-11-12 19:30:00 COMPLETED Clinica Gata con cancer - colocación de medicamentos qué cliente proporciona junto con los descartables Transaccion 91004743705 31500.00 31500.00 26000.00 2024-11-12 22:30:00+00 160 169 \N 9 464baj5snfcialqsfs3b39ddeg \N \N +2014 2025-08-07 19:21:50.233922+00 2025-08-07 19:21:50.233933+00 f t 2025-08-07 11:30:00 COMPLETED clinical Reorgacion de estudios 27500.00 27500.00 17500.00 2025-08-07 14:30:00+00 38345421981 5912 4831 113 68 lphpksl6um8bm3ceq9go31nt84 421 \N +2230 2025-08-24 19:34:11.186796+00 2025-08-24 19:34:11.186806+00 f t 2025-08-24 18:30:00 COMPLETED clinical Mucha diarrea desde ayer a la tarde 50000.00 10000.00 40000.00 2025-08-24 21:30:00+00 38572190776 7153 5860 114 92 slitpmrdtfktd8f2r8chu2paj4 259 \N +2334 2025-09-01 22:05:42.312837+00 2025-09-01 22:05:42.312846+00 f t 2025-09-07 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-09-07 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 o5523ligfk35qa15rtstf5bt90 \N \N +2628 2025-09-24 19:35:33.98431+00 2025-09-24 19:35:33.984321+00 f t 2025-09-24 18:00:00 COMPLETED clinical Consulta gral, se arrastra, no ve ni escucha 55000.00 11000.00 44000.00 2025-09-24 21:00:00+00 127401816658 9276 7695 1583 1 pliqkqh2qmfu1kp406h7hasg3k \N \N +974 2025-04-11 15:16:44.825442+00 2025-04-11 15:16:44.825451+00 f t 2025-04-12 14:30:00 COMPLETED vaccination vacunacion anual + corte de garras abonarle a vete $5.000 por error le indicamos un valor menor a la cliente por el servicio total 66500.00 17500.00 49000.00 2025-04-12 17:30:00+00 107599670267 657 776 111 89 mvc8ok32elr0gvkn6n7d6lav7s \N \N +2143 2025-08-18 21:29:26.664424+00 2025-08-18 21:29:26.664431+00 f t 2025-08-20 09:00:00 COMPLETED clinical Extraccion + Revision clinica 49700.00 11700.00 38000.00 2025-08-20 12:00:00+00 38500343589 6814 5564 1583 88 9v16ldnladnepl2nnf36fvglks 308 \N +2460 2025-09-11 17:23:45.504224+00 2025-09-11 17:23:45.50423+00 t t 2025-09-10 16:00:00 NO_REPORT clinical mycoplasma 0.00 0.00 0.00 2025-09-10 19:00:00+00 0 5071 4186 114 100 3qh2ndqkoecs8915kq7eqesu04 \N \N +2760 2025-10-04 13:23:12.164178+00 2025-10-04 13:23:12.164186+00 f t 2025-10-07 14:30:00 COMPLETED clinical eco abdominal derivacion de vete clinica. desc. recompra 73800.00 3800.00 70000.00 2025-10-07 17:30:00+00 30093229009251004 9668 8053 1208 103 gd8f482rcocmo6e0rhd8dj6cv0 \N 832 +2864 2025-10-13 14:09:26.218871+00 2025-10-13 14:09:26.218879+00 f t 2025-10-13 14:00:00 COMPLETED clinical Problema de la cadera 55000.00 55000.00 44000.00 2025-10-13 17:00:00+00 MP 9435 7841 1583 114 hcud322oqch910f7dadhuroe28 \N 982 +2719 2025-10-01 18:20:52.658439+00 2025-10-01 18:20:52.658449+00 f t 2025-10-10 18:00:00 COMPLETED clinical vacunacion triple felina y control general para la mama recien castrada desc. multimasc 105000.00 19000.00 86000.00 2025-10-10 21:00:00+00 127656010185 9772 8142 1208 92 lb380ffoekh92pfjf2dk9j97m4 \N 782 +1995 2025-08-05 13:28:05.979518+00 2025-08-05 13:28:05.979526+00 f t 2025-08-05 16:00:00 COMPLETED telemedicina Resolución de estudios Abonarle a palummo 17500 24750.00 24750.00 0.00 2025-08-05 19:00:00+00 1LMP68NKJ033XXJD2R7OEV 5021 4145 1026 80 6tfj1qo207ft9af96rs7691q8s 432 \N +2833 2025-10-09 19:25:23.794995+00 2025-10-09 19:25:23.795006+00 f t 2025-10-14 10:00:00 COMPLETED clinical extraccion rapela perfil general completo con orina mas calcio ionizado y relacion proteinuria/creatinuria derivado rapela 68000.00 48000.00 20000.00 2025-10-14 13:00:00+00 Z0KV87948E85QKJD2PEYDX 10355 8597 1208 104 jdotvd39j398srsvugg3m5nolo \N 934 +2894 2025-10-15 15:09:54.940585+00 2025-10-15 15:09:54.940594+00 f t 2025-10-15 17:00:00 COMPLETED clinical Rascado inusual, vive en departamento Se le debe $19500 a la doc 30000.00 30000.00 0.00 2025-10-15 20:00:00+00 129445138719 10773 8950 1583 80 sqirf7gq1eum2oqa1u3k6d51os \N 1026 +2565 2025-09-19 18:59:48.698744+00 2025-09-19 18:59:48.698754+00 f t 2025-09-30 10:00:00 COMPLETED clinical Vacunacion anual 2 perros y 2 gatos Descuento de $62.400 por mas de un animal y descuento en vacunas 249600.00 23000.00 226000.00 2025-09-30 13:00:00+00 126801013818 8947 7402 1583 1 ksr5dd9t2c6om6vgobdc4l0dns \N \N +3129 2025-11-04 17:13:41.986366+00 2025-11-04 17:13:41.986374+00 f t 2025-11-05 19:30:00 COMPLETED clinical Dificultad para mover las patas traseras. 46000.00 11000.00 35000.00 2025-11-05 22:30:00+00 L18MKX9RX1E131XK9O6WYVV 12361 10214 1583 70 k0lftpleh9tmi93bq7kgk7ucdk \N 1395 +1986 2025-08-04 18:45:45.651315+00 2025-08-04 18:45:45.651326+00 f t 2025-08-10 12:00:00 COMPLETED clinical control 45000.00 5000.00 40000.00 2025-08-10 15:00:00+00 a2332a6c-c3a5-4115-a250-572408 4433 3688 1208 80 asendm9n4epeu4714vacrub2o8 398 \N +3159 2025-11-06 14:26:26.830001+00 2025-11-06 14:26:26.83001+00 f t 2025-11-06 10:00:00 NO_REPORT clinical Cremacion. 51600 en el comprobante 51600.00 51600.00 0.00 2025-11-06 13:00:00+00 132119478891 12453 10284 1583 95 djt2kraoued5m7ehnn0l2pu5k8 \N 1439 +2209 2025-08-22 23:32:54.065047+00 2025-08-22 23:32:54.065056+00 f t 2025-08-24 16:00:00 COMPLETED clinical Evalucion por alteraciones en la respiracion 50000.00 10000.00 40000.00 2025-08-24 19:00:00+00 122810291065 5239 4305 113 92 0rr9k5fkgt2sa11f2jljl7hjok 263 \N +552 2025-02-01 22:23:50.981423+00 2025-02-01 22:23:50.98143+00 f t 2025-02-07 17:00:00 COMPLETED vaccination Vacunación anual 60750.00 15750.00 45000.00 2025-02-07 20:00:00+00 10063610695 399 473 114 1 a513kugvupff0jforohl5h7emc \N \N +2060 2025-08-11 23:58:35.132354+00 2025-08-11 23:58:35.132364+00 f t 2025-08-14 18:30:00 NO_REPORT clinical Extraccion 30700.00 7700.00 23000.00 2025-08-14 21:30:00+00 \N 5889 4811 113 111 3dadvaogg16073824qpfo4bvho 358 \N +2504 2025-09-15 21:35:09.769041+00 2025-09-15 21:35:09.769048+00 f t 2025-09-15 20:00:00 COMPLETED clinical vac. antirrabica y clinica 97200.00 16200.00 81000.00 2025-09-15 23:00:00+00 38868591208 8543 7038 1208 80 276rka9us86iolb7jcuamj03bc 45 \N +2834 2025-10-09 19:25:37.161591+00 2025-10-09 19:25:37.161599+00 f t 2025-10-14 11:00:00 COMPLETED clinical extraccion rapela perfil general completo con orina mas calcio ionizado y relacion proteinuria/creatinuria derivado rapela 0.00 0.00 0.00 2025-10-14 14:00:00+00 Z0KV87948E85QKJD2PEYDX 10355 8597 1208 100 bac8iqs1d6j6k7ob7k28k4k4jo \N 936 +2544 2025-09-18 15:56:55.163828+00 2025-09-18 15:56:55.163838+00 f t 2025-09-19 18:00:00 COMPLETED clinical Vacunacion anual 0.00 0.00 0.00 2025-09-19 21:00:00+00 0 277 329 1583 68 lfhq147ct9rcqjiccu6317682s \N \N +2015 2025-08-07 19:23:08.473991+00 2025-08-07 19:23:08.474+00 f t 2025-08-09 12:00:00 CANCELLED clinical RX 4 99000.00 15000.00 84000.00 2025-08-09 15:00:00+00 38348876910 5912 4831 113 84 aqihcv6j1r8dhb9sacs4cscuc8 \N \N +2134 2025-08-18 15:01:26.950941+00 2025-08-18 15:01:26.950951+00 f t 2025-08-18 19:30:00 COMPLETED clinical eutanasia 116550.00 14050.00 102500.00 2025-08-18 22:30:00+00 38494513417 2792 2462 1208 68 020part2l5ddb5595es5pcj7ro 326 \N +3107 2025-11-02 19:55:05.078171+00 2025-11-02 19:55:05.078182+00 f t 2025-12-07 11:00:00 PENDING clinical Certificado anual + Desparacitación interna y externa \N 93900.00 21900.00 72000.00 2025-12-07 14:00:00+00 39476542573 3002 2626 \N 70 3lpq0tohgoa6765s634haa7bb4 \N 1361 +2789 2025-10-06 19:20:45.071894+00 2025-10-06 19:20:45.071903+00 f t 2025-10-10 18:30:00 COMPLETED clinical 3ra dosis de Vacuna Sextuple 70000.00 19000.00 51000.00 2025-10-10 21:30:00+00 Nranja X 10133 8390 1583 92 f2iqr5ph4qnkibl3566u0s4qh0 \N 876 +2629 2025-09-24 19:52:32.149982+00 2025-09-24 19:52:32.149994+00 f t 2025-09-24 21:00:00 COMPLETED clinical Vomitos posterior a periodo 55000.00 11000.00 44000.00 2025-09-25 00:00:00+00 10234933010250924 9282 7700 1583 80 dnmtq4ngahgapbn4ak37u06is4 \N \N +2963 2025-10-21 15:28:54.564564+00 2025-10-21 15:28:54.564573+00 f t 2025-10-23 08:00:00 NO_REPORT clinical Extraccion para hemograma completo. DERIVADO DE RAPELA\r\nPRECIO QUE PASO EL LABORATORIO\r\nTraslado bonificado 29500.00 9500.00 20000.00 2025-10-23 11:00:00+00 130758786470 11230 9319 1583 85 tptpad5t1b1nqmvrf3c1e2to48 \N 1134 +2895 2025-10-15 17:08:10.425635+00 2025-10-15 17:08:10.425643+00 f t 2025-10-15 18:00:00 COMPLETED clinical Consulta Clinica Sena bonificada\r\nLe vete cobro $20.000 por la distancia, abonada por Cata 55000.00 0.00 44000.00 2025-10-15 21:00:00+00 0 10784 8958 1583 68 acmf99oi6fseu7g9hv8e9sbd7c \N 1028 +2461 2025-09-11 17:23:50.847824+00 2025-09-11 17:23:50.847832+00 f t 2025-09-12 20:30:00 COMPLETED vaccination Vacuncion anual 1 vacuncion anual\r\n1 vacuncion triple\r\ndescuento por mas de 1 animal -$14.800 133200.00 27500.00 107500.00 2025-09-12 23:30:00+00 125243864613 8455 6967 1583 79 1icd74k7sgsv923usbi530m5ck 58 \N +2657 2025-09-26 18:09:20.693381+00 2025-09-26 18:09:20.693391+00 f t 2025-09-26 19:00:00 COMPLETED clinical Consulta general Dele debe 44.000 al vete, el tutor abono todo junto 55000.00 55000.00 44000.00 2025-09-26 22:00:00+00 127079514897 9435 7841 1583 114 lukj03evne186orjie7kq70mmk \N \N +2274 2025-08-27 23:21:31.181198+00 2025-08-27 23:21:31.181209+00 f t 2025-08-30 15:00:00 COMPLETED clinical Revisión por diarrea 42000.00 9500.00 32500.00 2025-08-30 18:00:00+00 123381371185 7396 6078 114 92 did1h29nf7npv65tm2sfdjkj60 192 \N +2865 2025-10-13 14:54:30.617777+00 2025-10-13 14:54:30.61779+00 f t 2025-10-13 18:00:00 COMPLETED clinical estornuda mucho, tiene mal aliento y le cuesta tragar (aunque sigue comiendo bien). 55000.00 11000.00 44000.00 2025-10-13 21:00:00+00 1LMP68NKJEW8807P2R7OEV 10616 8814 1583 114 vloa4g0lpvgb3q46qrspqmkq5g \N 989 +2566 2025-09-19 19:26:27.911693+00 2025-09-19 19:26:27.911705+00 f t 2025-09-19 18:00:00 COMPLETED clinical Vomitos e inapetencia 55000.00 11000.00 44000.00 2025-09-19 21:00:00+00 126261133125 470 557 113 1 njeku0h707ff99dqq9bhd7mkk8 \N \N +2720 2025-10-01 20:05:18.516647+00 2025-10-01 20:05:18.516659+00 f t 2025-10-01 21:00:00 COMPLETED clinical Se rasca y se lastimo 55000.00 11000.00 44000.00 2025-10-02 00:00:00+00 WY7ZEPN6Q4ZM6GEONQ0M51 6893 5636 1583 70 gfnt4dbfn9ojifosbrbqrue280 \N 784 +2958 2025-10-21 00:20:07.031579+00 2025-10-21 00:20:07.031588+00 f t 2025-10-21 15:30:00 NO_REPORT clinical Consulta endocrinologa 37000.00 2000.00 35000.00 2025-10-21 18:30:00+00 D4RO172VZ8Z6MQ6RNKJ3QE 11198 9292 114 98 3rto3j8ligbnv136uc6mut4mn0 \N 1128 +2308 2025-08-30 20:53:47.538031+00 2025-08-30 20:53:47.53804+00 f t 2025-08-31 09:00:00 COMPLETED clinical No come, no quiere tomar agua, no tiene movilidad, está acostado y su panza está inflamada, se orina y llora todo el día. 146500.00 26500.00 120000.00 2025-08-31 12:00:00+00 124279289348 7597 6252 1208 68 t558aaq5g7bv82p9p6f8kdi268 184 \N +1034 2025-04-22 22:15:14.367186+00 2025-04-22 22:15:14.367194+00 f t 2025-04-29 15:00:00 COMPLETED vaccination Pack 4 visitas. vacunacion x 3 gatos cachorros. VISITA 1 ABONARLE A VETE 501000. Se le abona ala vete en el mes de mayo, correspondiente a abril. se le abona a la vete las 4 visitas juntas. acordado con vete. 538800.00 538800.00 501000.00 2025-04-29 18:00:00+00 107946606427 667 788 111 80 3p7sh62l05orrhoqid4i252ud8 \N \N +2211 2025-08-23 14:00:13.88024+00 2025-08-23 14:00:13.88025+00 f t 2025-08-23 11:30:00 COMPLETED clinical Vomitos desde el sabado pasado, lo llevaron a una vete, le dieron rani y cerenia y sigue con vomitos intermitentes, mientras tanto le dan gastrointestinal pouch cada 2/3 hs, desde anoche que esta con vomitos mas seguido. 50000.00 10000.00 40000.00 2025-08-23 14:30:00+00 123393079700 7131 5835 1208 80 eemiagsdbi178756ltsts4fdls 269 \N +2582 2025-09-21 20:40:12.818647+00 2025-09-21 20:40:12.818662+00 f t 2025-09-23 12:00:00 COMPLETED clinical Decaimiento y agitación 46000.00 11000.00 35000.00 2025-09-23 15:00:00+00 126487206145 523 618 114 68 rkbdt9sk4m7jpm7nols3pdhb3o \N \N +2009 2025-08-06 23:09:26.107647+00 2025-08-06 23:09:26.107658+00 f t 2025-08-08 08:30:00 CANCELLED clinical Extraccion 20000.00 0.00 20000.00 2025-08-08 11:30:00+00 38333616781 6033 4926 113 85 4578qeqsu7dmqo1fagde3f82tc \N \N +2606 2025-09-23 15:28:28.824334+00 2025-09-23 15:28:28.824346+00 f t 2025-09-29 18:00:00 COMPLETED clinical eco abdominal pago seña ecografia + rapela retiro de muestra de orina 68000.00 13000.00 55000.00 2025-09-29 21:00:00+00 46YGOW9M8WR8LVPQ9EXD8J 7443 6127 1208 90 4b8p5pf8bqpkt0kbh42d7rodu0 \N \N +2927 2025-10-17 20:31:29.201252+00 2025-10-17 20:31:29.20126+00 f t 2025-10-24 08:00:00 COMPLETED clinical control post cx y extraccion de puntos 35000.00 0.00 35000.00 2025-10-24 11:00:00+00 0 266 335 1208 68 dk9thj1723eft6umeb76qs5rog \N 1073 +565 2025-02-03 12:15:25.945129+00 2025-02-03 12:15:25.945136+00 f t 2025-02-03 16:00:00 COMPLETED clinical Medición de la presión y aplicación de ringerlactato Se puso el monto total al igual que la seña completa de los tres turnos 56400.00 12000.00 14800.00 2025-02-03 19:00:00+00 100627016295 406 483 114 66 7lrranfou3f0ou0iitek56p3mg \N \N +192 2024-10-30 14:13:10.018+00 2024-10-30 14:13:10.018+00 f t 2024-10-24 16:30:00 COMPLETED Urgencias Gato esta con dificultad para orinar Transaccion 91109067229 Clienta transfirio 18mil, y en otra transferencia transfirio los 600 que le faltaron 49600.00 18600.00 31000.00 2024-10-24 19:30:00+00 \N 165 174 114 1 ct6ss82pb7k0muucaeboopmt6g \N \N +2989 2025-10-23 20:20:15.67535+00 2025-10-23 20:20:15.675358+00 f t 2025-10-23 18:00:00 COMPLETED clinical Muestra para perfil 7 13200.00 13200.00 0.00 2025-10-23 21:00:00+00 131048115120 11387 9430 1208 100 jfbeatj2cdp2ufucp5hq7tpgog \N 1180 +2762 2025-10-04 15:47:39.052927+00 2025-10-04 15:47:39.052936+00 f t 2025-10-08 11:00:00 COMPLETED clinical perfil geronte felino. pagar a nicolas lo del traslado, el llevo la muestra 0.00 0.00 0.00 2025-10-08 14:00:00+00 128023174769 9861 8150 1208 100 cl2uo548te4q1see9rt16ovp54 \N 912 +3191 2025-11-08 14:25:19.102013+00 2025-11-08 14:25:19.102028+00 f t 2025-11-10 18:00:00 NO_REPORT clinical chqueo general, cachorro de 3 meses y primer vacunacion 70000.00 19000.00 51000.00 2025-11-10 21:00:00+00 133005256982 12644 10443 1208 1 ep91is2gcetf76lu7ls36r1k24 \N 1476 +2567 2025-09-19 19:59:09.322296+00 2025-09-19 19:59:09.322306+00 f t 2025-09-19 19:00:00 COMPLETED clinical Ayer vomito y tuvo diarrea. Pasó mal la noche y pareciera tener mucho dolor de panza 55000.00 11000.00 44000.00 2025-09-19 22:00:00+00 126821982910 8918 7379 1583 1 l9qlmonlnkgt2geub0o8e4osrs \N \N +2952 2025-10-20 18:46:52.897749+00 2025-10-20 18:46:52.897759+00 f t 2025-10-21 11:00:00 COMPLETED clinical Gata con perdida de pelaje, presenta comezón e irritabilidad \N 46000.00 11000.00 35000.00 2025-10-21 14:00:00+00 130555914342 11172 9264 \N 114 5irthp07dvk4k1aa41hd5scqc8 \N 1121 +2165 2025-08-19 23:56:03.962897+00 2025-08-19 23:56:03.962907+00 f t 2025-08-25 09:00:00 COMPLETED telemedicina Endocrinología 61000.00 61000.00 0.00 2025-08-25 12:00:00+00 LOEJWV9JLJ4RRZOZNQMD0G 6909 5651 114 98 j9ugaa8am1igbrmon79196k95o 256 \N +2545 2025-09-18 15:57:21.346319+00 2025-09-18 15:57:21.346326+00 f t 2025-09-19 18:00:00 COMPLETED clinical Vacunacion anual 0.00 0.00 0.00 2025-09-19 21:00:00+00 0 277 327 1583 68 ohcdbccun71ltodefhpm6oqh8c \N \N +2061 2025-08-12 00:01:30.243387+00 2025-08-12 00:01:30.243397+00 f t 2025-08-15 09:30:00 COMPLETED clinical PGC/con orina \r\nTraslado\r\nRelacion creatinina \r\nCItologia PGC: 34.000\r\nT: 12.000\r\nCitologico : 24\r\nrelacion: 3400 64400.00 64400.00 0.00 2025-08-15 12:30:00+00 \N 5889 4811 113 100 qsjq2nji5dfr2s8vrtlpm3qafs 355 \N +2630 2025-09-24 21:40:36.30391+00 2025-09-24 21:40:36.30392+00 f t 2025-09-24 21:00:00 COMPLETED clinical Esta resfriado hace varios dias, hoy ya no comió, parece q estornudó sangre. Está decaído. 55000.00 11000.00 44000.00 2025-09-25 00:00:00+00 127418612520 9290 7706 1583 70 c4g65n3dc2o2juuj7gbs9bgbto \N \N +2583 2025-09-21 20:46:02.902063+00 2025-09-21 20:46:02.902072+00 f t 2025-09-22 20:00:00 COMPLETED clinical Perdida de Colmillo 46000.00 11000.00 35000.00 2025-09-22 23:00:00+00 127045347086 9071 7507 114 92 2159a2rffhbk4ql0dllnbhtqjs \N \N +2016 2025-08-07 19:28:46.450821+00 2025-08-07 19:28:46.450828+00 f t 2025-08-12 13:30:00 COMPLETED clinical Eco abdominal para dos mascotas 136000.00 26000.00 110000.00 2025-08-12 16:30:00+00 120861446437 3347 2872 113 90 llgcsv96e80hircq1qrnc4bvag 378 \N +3209 2025-11-09 20:25:49.995579+00 2025-11-09 20:25:49.995587+00 f t 2025-11-10 16:00:00 COMPLETED clinical Chequeo por tos seca y extracción de sangre. \N 53700.00 13200.00 40500.00 2025-11-10 19:00:00+00 133167803892 12684 10475 \N 114 lo2ivfkf6cphc74kc7gu19g710 \N 1484 +3157 2025-11-05 21:31:10.218756+00 2025-11-05 21:31:10.218767+00 f t 2025-09-12 15:00:00 NO_REPORT clinical Dolor al orinar 55000.00 11000.00 44000.00 2025-09-12 18:00:00+00 naranjaX 10559 10123 1583 92 aubv0m20u3s11lbuo8liai301o \N 1430 +2089 2025-08-14 14:47:31.792897+00 2025-08-14 14:47:31.792905+00 f t 2025-08-19 19:30:00 CANCELLED telemedicina 45000.00 45000.00 0.00 2025-08-19 22:30:00+00 7712601800 4848 4007 1208 98 2h8nvgq16s81bk8qmndaemo4gs \N \N +2688 2025-09-30 12:56:57.811913+00 2025-09-30 12:56:57.811925+00 f t 2025-09-30 14:00:00 NO_REPORT clinical Acumula liquido pleural, le hicieron 2 punciones ya (ayer y hoy) 122000.00 12000.00 110000.00 2025-09-30 17:00:00+00 128048755994 9647 8035 1208 82 t7qan9vj02a00sh4t2a4q4ftoo \N \N +2010 2025-08-06 23:12:04.108649+00 2025-08-06 23:12:04.10866+00 f t 2025-08-08 08:30:00 NO_REPORT clinical PGC/O 34000.00 34000.00 34000.00 2025-08-08 11:30:00+00 \N 6033 4925 113 100 a8vupb2bor2mlr1pndr8g759ng 415 \N +2275 2025-08-27 23:56:36.834869+00 2025-08-27 23:56:36.834879+00 f t 2025-08-28 13:30:00 COMPLETED clinical Vomitos y Falta de insentivo para alimentarse 42000.00 9500.00 32500.00 2025-08-28 16:30:00+00 123386155129 7400 6081 114 91 a4al2d8njdbbosjv1nuobihp1o 215 \N +2356 2025-09-02 17:44:25.193252+00 2025-09-02 17:44:25.193262+00 f t 2025-09-09 20:00:00 COMPLETED clinical 78000.00 21500.00 56500.00 2025-09-09 23:00:00+00 124051201035 7818 6433 1208 70 e9i9vmak8nkbs1noa180jf36o8 92 \N +2835 2025-10-09 20:58:29.662188+00 2025-10-09 20:58:29.662196+00 f t 2025-10-10 18:00:00 COMPLETED clinical Ecografia abdominal. 88000.00 13000.00 75000.00 2025-10-10 21:00:00+00 RD06ZO9W1R1ZZKV125GP7X 10361 8601 1583 90 t4qhsi2ckntmt5tipoodvlvk10 \N 939 +2505 2025-09-15 21:36:55.927818+00 2025-09-15 21:36:55.92783+00 f t 2025-09-15 20:30:00 COMPLETED clinical vac. antirrabica y clinica todo aclarado en la otra paciente 0.00 0.00 0.00 2025-09-15 23:30:00+00 38871440782 8543 7041 1208 80 ps9sq87ii35bhpv02hers9ifl4 \N \N +2658 2025-09-26 18:28:06.765633+00 2025-09-26 18:28:06.765646+00 f t 2025-09-27 14:00:00 COMPLETED clinical Vaacunacion anual Descuento de -$31.200 por ser mas de una mascota 280800.00 54800.00 226000.00 2025-09-27 17:00:00+00 127640643062 9437 7847 1583 92 kpulmjione7bbuqlq35v2vt094 \N \N +3128 2025-11-04 17:05:33.826789+00 2025-11-04 17:05:33.826801+00 f t 2025-11-14 12:30:00 COMPLETED clinical Muestra de sangre para Erlichia PCR 0.00 0.00 0.00 2025-11-14 15:30:00+00 0 7277 5971 1583 100 eg29tgivgc7rv6qfg82ov0sdd4 \N 1397 +2866 2025-10-13 15:00:11.653959+00 2025-10-13 15:00:11.653975+00 f t 2025-10-15 18:00:00 COMPLETED clinical Consulta general 46000.00 11000.00 35000.00 2025-10-15 21:00:00+00 cuenta DNI 10615 8813 1583 70 si2afl8e17788t5avotv5qsklo \N 987 +2928 2025-10-17 21:49:53.836414+00 2025-10-17 21:49:53.836423+00 f t 2025-10-18 09:00:00 NO_REPORT clinical extraccion de sangre perfil 7 + orina completa 102010.00 79010.00 23000.00 2025-10-18 12:00:00+00 129764579787 9310 7733 1208 85 u5eotnh00nj0mjh7g9i1mq68pg \N 1074 +2741 2025-10-03 00:21:33.182954+00 2025-10-03 00:21:33.182964+00 f t 2025-10-06 16:00:00 COMPLETED clinical Vacunas anuales \N 78000.00 21500.00 56500.00 2025-10-06 19:00:00+00 Z0KV87948PYOWPOQ2PEYDX 9896 8179 \N 88 3p5vamkt395i8sjgqlp5en0pdo \N 811 +2462 2025-09-11 17:24:12.394031+00 2025-09-11 17:24:12.394038+00 f t 2025-09-12 20:30:00 COMPLETED vaccination Triple felina 0.00 0.00 0.00 2025-09-12 23:30:00+00 0 8455 6966 1583 79 ji3k0lsd04c44gu2823tndi7pc \N \N +1597 2025-06-27 20:23:50.942011+00 2025-06-27 20:23:50.942018+00 f t 2025-07-14 10:00:00 CANCELLED clinical Detallo todo en el turno del 20/07\r\nCorregido 30/6. Al final ponemos el valor correspondiente en cada turno para que le aparezcan los valores al vete en la plataforma 49800.00 11800.00 38000.00 2025-07-14 13:00:00+00 0 703 820 1026 97 cdkcusc4dlckbf73vgebrgl5u8 \N \N +2896 2025-10-15 19:20:43.929511+00 2025-10-15 19:20:43.92952+00 f t 2025-10-21 09:30:00 COMPLETED clinical extraccion de sangre para calcio ionizado y glucosa le pagamos nosotros a maria paz + motomensajeria 0.00 0.00 0.00 2025-10-21 12:30:00+00 0 10355 8597 1208 104 vc7cfvhtt57pnqrc8grhiao7rc \N 1033 +2964 2025-10-21 15:34:54.312214+00 2025-10-21 15:34:54.312222+00 f t 2025-10-23 10:00:00 COMPLETED clinical Hemograma completo 0.00 0.00 0.00 2025-10-23 13:00:00+00 0 11230 9319 1583 100 37fth2ih2lv8g1ivlfvaj5kkog \N 1138 +2608 2025-09-23 16:08:34.444518+00 2025-09-23 16:08:34.444527+00 f t 2025-09-24 19:00:00 COMPLETED clinical control de estudios solicitados descuento recompra 41400.00 6400.00 35000.00 2025-09-24 22:00:00+00 R7ZG0QNDJDLJRVDENEXYPO 4384 3648 1208 80 dba90570vjlgk12oap9npt1bt8 \N \N +2144 2025-08-18 22:43:36.346533+00 2025-08-18 22:43:36.346541+00 f t 2025-08-19 18:00:00 COMPLETED clinical consulta con etologia 70000.00 70000.00 60000.00 2025-08-19 21:00:00+00 \N 165 174 113 105 01p0647kejlja4jfpolgr9di98 318 \N +2721 2025-10-01 21:50:46.945049+00 2025-10-01 21:50:46.945058+00 f t 2025-10-01 19:00:00 COMPLETED clinical Perfil completo sin orina traslado $15.000 (uber ) estudios $31.500 13200.00 13200.00 0.00 2025-10-01 22:00:00+00 30717420698 9668 8053 1583 100 rtmu78k68pejdekfll3apq4640 \N 785 +2836 2025-10-09 22:21:38.773584+00 2025-10-09 22:21:38.773592+00 f t 2025-10-14 19:30:00 COMPLETED clinical Aplicación de micro chip para ambos gatos para viajar al exterior + vacuna antirrabica para uno 129254149063 - seña de vacuna antirrabica 287500.00 62000.00 225500.00 2025-10-14 22:30:00+00 129307789986 10358 8599 1208 91 jjen90o7r0v8uva7dfremch2e8 \N 938 +1689 2025-07-07 23:15:27.262998+00 2025-07-07 23:15:27.263006+00 f t 2025-07-07 16:00:00 COMPLETED clinical Dificultad en movilidad de la patas traseras. 50000.00 10000.00 40000.00 2025-07-07 19:00:00+00 \N 4146 3455 113 1 l1j856hlr5tp1q9iberifjcu8g 696 \N +1090 2025-05-03 21:07:10.232341+00 2025-05-03 21:07:10.23235+00 f t 2025-05-03 16:30:00 COMPLETED telemedicina Consulta Dermatológica Vínculo a la videollamada: https://meet.google.com/fjc-zqtf-hah 44000.00 44000.00 0.00 2025-05-03 19:30:00+00 77235237 785 902 114 75 l0cdjbdb4hk9ksbrt5dmrv0r20 \N \N +2659 2025-09-26 19:40:32.944509+00 2025-09-26 19:40:32.944523+00 f t 2025-09-28 11:00:00 NO_REPORT clinical Electrocardiograma Extra para el vete por distaancia 127000.00 12000.00 115000.00 2025-09-28 14:00:00+00 D4RO172VE00DMM7VNKJ3QE 9443 7852 1583 82 rm9q485521mr6vfep6b6s50fs4 \N \N +2499 2025-09-15 17:12:53.170868+00 2025-09-15 17:12:53.170874+00 f t 2025-09-18 11:00:00 COMPLETED clinical Extraccdion de Perfil 7 0.00 0.00 0.00 2025-09-18 14:00:00+00 0 8524 7021 1583 100 bk5pmfpsv7uvdit4v2tbie12fs \N \N +2689 2025-09-30 14:10:32.338806+00 2025-09-30 14:10:32.338818+00 f t 2025-09-30 14:30:00 COMPLETED clinical esta haciendo caca con sangre desc. recompra 49500.00 5500.00 44000.00 2025-09-30 17:30:00+00 127488396771 264 308 1208 68 1816prbfc6c7divkch2b1k0vuc \N \N +2584 2025-09-21 20:59:41.478141+00 2025-09-21 20:59:41.478154+00 f t 2025-09-25 20:30:00 COMPLETED clinical Ecografía abdominal para gato y perro Se aclara que se le debe a abonar a cada veterinario por cada paciente 0.00 0.00 0.00 2025-09-25 23:30:00+00 0 8397 7504 114 90 v5hc1b046vsjnj12vgi0m2r604 \N \N +2090 2025-08-14 16:02:22.516231+00 2025-08-14 16:02:22.51624+00 f t 2025-08-14 19:30:00 COMPLETED clinical eco abdominal de urgencia 78000.00 13000.00 65000.00 2025-08-14 22:30:00+00 38449178929 6517 5315 1208 90 u6t12dtnpjb203usngiu3fhr64 356 \N +2062 2025-08-12 13:19:10.647333+00 2025-08-12 13:19:10.647345+00 f t 2025-08-12 18:30:00 COMPLETED clinical Desde ayer presenta una diarrea, se lo ve muy molesto y no come 50000.00 10000.00 40000.00 2025-08-12 21:30:00+00 121982768458 6354 5170 1208 92 erpor7qqdlq41hnkmgf1fmv560 376 \N +2546 2025-09-18 16:08:36.087427+00 2025-09-18 16:08:36.087435+00 f t 2025-09-19 12:30:00 COMPLETED clinical coproparasotologico sin cargo, no sabemos que paso con la muestra anterior 0.00 0.00 0.00 2025-09-19 15:30:00+00 0 3347 2872 1208 100 ac7d2ntj1g6a29gga3p7b937a0 \N \N +2017 2025-08-07 19:30:49.107164+00 2025-08-07 19:30:49.107196+00 f t 2025-08-12 13:30:00 COMPLETED clinical Eco abdominal 0.00 0.00 0.00 2025-08-12 16:30:00+00 120861446437 3347 2872 113 90 d0boorbae2jnnebbfcqjdhese0 \N \N +3009 2025-10-25 17:19:45.909094+00 2025-10-25 17:19:45.909104+00 f t 2025-10-26 14:00:00 COMPLETED clinical ecografia abdominal de urgencia era turno para dani di risio y despues cambio para turno en clinica burgess, por eso quedaron los $5.200 de seña 0.00 5200.00 0.00 2025-10-26 17:00:00+00 Z6OLMDN3VM1LZ8Y62E7RQ5 11447 9474 1208 118 f2elpjafkchmj58p40ittp7l0o \N 1206 +2929 2025-10-17 21:50:06.552809+00 2025-10-17 21:50:06.552822+00 f t 2025-10-18 10:00:00 COMPLETED clinical extraccion de sangre perfil 7 + orina 0.00 0.00 0.00 2025-10-18 13:00:00+00 129764579787 9310 7733 1208 100 g2uc461bdcu7ejkn8fltkc4vog \N 1077 +2380 2025-09-04 14:29:24.179608+00 2025-09-04 14:29:24.179618+00 f t 2025-09-05 12:00:00 COMPLETED clinical copro + traslado 24200.00 24200.00 0.00 2025-09-05 15:00:00+00 124840956410 6869 5610 1208 100 7gfhef8fhr3a9nnhcdujlrkjuo 133 \N +2867 2025-10-13 15:39:02.822068+00 2025-10-13 15:39:02.822082+00 f t 2025-10-14 16:00:00 COMPLETED clinical Vacunacion anual \N 78000.00 21500.00 56500.00 2025-10-14 19:00:00+00 129187749385 345 407 \N 70 8uoeq72j3fq16go2flh8c9n46o \N 992 +2790 2025-10-06 19:43:31.538403+00 2025-10-06 19:43:31.538412+00 f t 2025-10-08 19:30:00 COMPLETED clinical Vacunacion anual y desparasitacion interna y externa felino 5kg 111000.00 28000.00 83000.00 2025-10-08 22:30:00+00 30542022008251006 10142 8399 1583 92 v8qp0h6j6b90sm7tmmt3avsje0 \N 877 +2495 2025-09-15 16:45:35.863368+00 2025-09-15 16:45:35.863376+00 f t 2025-09-15 18:00:00 COMPLETED clinical Consulta por que esta comiendo poco desde ayer 55000.00 11000.00 44000.00 2025-09-15 21:00:00+00 125726550479 8524 7021 1583 1 psa3asv892o5svktmqe4aejh70 46 \N +3016 2025-10-27 13:25:17.298995+00 2025-10-27 13:25:17.299003+00 f t 2025-10-27 19:00:00 NO_REPORT clinical Gato rescatado, parece que va a perder un ojo, diarrea 55000.00 11000.00 44000.00 2025-10-27 22:00:00+00 131457298214 920 9593 1583 70 46dvfkmncanseu5stm8u5tf0qk \N 1221 +2897 2025-10-15 19:20:57.326716+00 2025-10-15 19:20:57.326724+00 f t 2025-10-21 10:30:00 COMPLETED clinical extraccion de sangre para calcio ionizado y glucosa le pagamos nosotros a maria paz + motomensajeria 0.00 0.00 0.00 2025-10-21 13:30:00+00 0 10355 8597 1208 100 8pgcdt3hc6l5kpqc6qqqeuj3ks \N 1034 +2414 2025-09-08 15:47:48.43603+00 2025-09-08 15:47:48.436037+00 f t 2025-09-10 11:00:00 COMPLETED vaccination Vacunacino anual 0.00 0.00 0.00 2025-09-10 14:00:00+00 0 8199 6745 1583 68 unhf1ufhbvi73knqgdj8tg2kt0 \N \N +2011 2025-08-06 23:15:47.452213+00 2025-08-06 23:15:47.452221+00 f t 2025-08-08 08:00:00 CANCELLED clinical PGC/O 34000.00 34000.00 0.00 2025-08-08 11:00:00+00 0 6033 4926 113 100 8p44jkmslmqrgl8g4h819cffu8 \N \N +2231 2025-08-25 13:59:05.577305+00 2025-08-25 13:59:05.577313+00 f t 2025-08-25 19:30:00 COMPLETED clinical Da vueltas en la batea para orinar y maulla. Da la impresion como si le costara. 50000.00 10000.00 40000.00 2025-08-25 22:30:00+00 123605590452 7259 5955 1208 92 b7opffe2agdl87ilnvhiu08678 243 \N +2763 2025-10-04 15:52:19.455068+00 2025-10-04 15:52:19.455077+00 f t 2025-10-04 14:30:00 COMPLETED clinical Estuvo con vómitos, para mí desde que compré su nueva bolsa de alimentos, vomita una vez por semana. Y no es que vomita pelo sino el balanceado. Es pro plan purina adulto, el que comió siempre . 55000.00 11000.00 44000.00 2025-10-04 17:30:00+00 128041411487 9991 8264 1208 88 jkp9lmgofurav9kv5fbnllukco \N 840 +2463 2025-09-11 18:52:40.952806+00 2025-09-11 18:52:40.952812+00 f t 2025-09-11 20:00:00 NO_REPORT clinical Ecografia abdominal 78000.00 13000.00 65000.00 2025-09-11 23:00:00+00 125809118762 8458 6970 1583 90 7nfrneobhd65isghhk0jetm2lc 70 \N +2925 2025-10-17 15:44:40.354142+00 2025-10-17 15:44:40.35415+00 f t 2025-10-21 13:30:00 NO_REPORT clinical Consulta cardiologica y toma de presion. 127000.00 12000.00 115000.00 2025-10-21 16:30:00+00 Modo 10957 9091 1583 82 j6i8t5o28egjlj7qrf5dbvn6ac \N 1068 +2145 2025-08-18 22:52:39.161603+00 2025-08-18 22:52:39.16161+00 f t 2025-08-21 20:00:00 NO_REPORT clinical Eco abdominal 68000.00 13000.00 55000.00 2025-08-21 23:00:00+00 \N 6818 5567 113 90 tiheah9bnfhkjk0h0q560o4t9g 284 \N +2091 2025-08-14 17:10:21.671723+00 2025-08-14 17:10:21.671735+00 f t 2025-08-16 15:00:00 COMPLETED clinical Restante que quedo de los certificados 30800.00 5720.00 22000.00 2025-08-16 18:00:00+00 121807419573 6470 5273 1208 92 9q2k5jgvt1t6m8jhr22tntu82k 342 \N +2063 2025-08-12 15:14:08.016818+00 2025-08-12 15:14:08.01683+00 f t 2025-08-13 09:30:00 COMPLETED clinical Beto el 18/7 tuvo una obstrucción urinaria. Estuvo con sonda 5 días. La sacaron y estuvo con medicación. Hasta el día de hoy sigue con medicación porque a veces tiene la sensación de querer hacer pis y no hace. Va varias veces a las piedras y no logra hacer pis. Luego, a las horas, logra hacer pis de nuevo y ya hace vida normal. Pero en el momento que no puede yo me muero de nervios. Me dijeron que sospechan de cistitis idiopática. 37800.00 5300.00 32500.00 2025-08-13 12:30:00+00 121471053905 5000 4131 1208 1 4jetlsdjb7vopqpnd7cr4gacto 371 \N +2012 2025-08-06 23:18:59.478747+00 2025-08-06 23:18:59.478755+00 f t 2025-08-12 18:00:00 COMPLETED clinical Servicio de dermatologia por cuadro de alergia 76000.00 11000.00 65000.00 2025-08-12 21:00:00+00 120771168605 6034 4927 113 75 h4f5epro41c2qqk46u80a99kvg 377 \N +2486 2025-09-14 19:08:05.409451+00 2025-09-14 19:08:05.409459+00 f t 2025-09-15 09:30:00 COMPLETED clinical Diarrea continuos desde hace 4 días 46000.00 11000.00 35000.00 2025-09-15 12:30:00+00 30090974009250914 8639 7127 114 80 abno78srt6ijvcj55td86ko2vc 50 \N +2889 2025-10-15 13:33:01.325449+00 2025-10-15 13:33:01.325462+00 f t 2025-10-15 18:00:00 COMPLETED clinical necesitamos que vengan a verla, porque tiene un problema en la columna y esta con mucho dolor + corte de garras 129463814205 - comprobante de pago por sumar corte de garras despues\r\nTutora transfirio por erro a Amar, se le debe $44.000 a la vete 63000.00 13500.00 49500.00 2025-10-15 21:00:00+00 129431866187 10740 8919 1208 88 5he301crk85dk52ika548i3erg \N 1017 +2232 2025-08-25 14:03:15.607355+00 2025-08-25 14:03:15.607366+00 f t 2025-08-25 20:00:00 COMPLETED clinical Se ha rascado el cuello hasta lastimarselo y además apoya mal una de sus patas delanteras 45000.00 5000.00 40000.00 2025-08-25 23:00:00+00 123605555646 6907 5957 1208 92 vk5gmc0ve0l8krkm48l4024phk 242 \N +2722 2025-10-01 23:48:28.759221+00 2025-10-01 23:48:28.75923+00 f t 2025-10-02 20:00:00 COMPLETED clinical . 30000.00 30000.00 19500.00 2025-10-02 23:00:00+00 127700996579 9514 8148 1208 68 ebk299thgki252r385krllli5o \N 786 +2018 2025-08-07 19:33:02.032228+00 2025-08-07 19:33:02.03224+00 f t 2025-08-07 18:30:00 COMPLETED clinical Decaimiento, falta de apetito 50000.00 10000.00 40000.00 2025-08-07 21:30:00+00 38345796101 2792 2462 113 68 23rpgi2t22bk4a76a7s35aj710 418 \N +2660 2025-09-26 22:33:48.441234+00 2025-09-26 22:33:48.441244+00 f t 2025-09-26 21:00:00 COMPLETED clinical revision de estudios desc. recompra 27000.00 7500.00 19500.00 2025-09-27 00:00:00+00 127673414328 9071 7507 1208 92 6dek1gcq3qrvhoki4b0qv2823s \N \N +2415 2025-09-08 16:11:09.125237+00 2025-09-08 16:11:09.125621+00 f t 2025-09-09 10:30:00 COMPLETED vaccination Vacunacion anual (Antirrabica y triple felina) 78000.00 21500.00 56500.00 2025-09-09 13:30:00+00 124828428273 8190 6737 1583 101 dn70lr3gjh2vo3o027cs6hdon4 101 \N +2381 2025-09-04 15:30:27.712672+00 2025-09-04 15:30:27.71268+00 f t 2025-09-09 20:30:00 COMPLETED clinical triple felina descuento por recompra 63000.00 12000.00 51000.00 2025-09-09 23:30:00+00 124849821652 7367 6052 1208 80 bt84rhc00b2hfdb49ushplo86g 91 \N +3254 2025-11-13 00:04:09.787921+00 2025-11-13 00:04:09.787929+00 f t 2025-11-16 11:00:00 COMPLETED clinical limpieza dental 168000.00 28000.00 140000.00 2025-11-16 14:00:00+00 133615386458 274 323 1208 92 4ihibcqbj7rg3euksh5d1d8jl4 \N 1568 +2547 2025-09-18 16:28:43.794308+00 2025-09-18 16:28:43.794314+00 f t 2025-09-19 19:00:00 COMPLETED telemedicina consulta clinica descuento recompra 27000.00 27000.00 0.00 2025-09-19 22:00:00+00 88414868 2732 2418 1208 91 8sb259gt6okkcvdqahgfth9cp8 \N \N +2779 2025-10-05 20:20:21.54172+00 2025-10-05 20:20:21.541728+00 f t 2025-10-06 20:00:00 COMPLETED clinical Sacar los puntos y quitarle una Vía \N 46000.00 11000.00 35000.00 2025-10-06 23:00:00+00 R7ZG0QNDJQM4K4MENEXYPO 10068 8332 \N 70 6ieroh4g70ss194halhf5inp4o \N 863 +177 2024-10-30 14:13:09.877+00 2024-10-30 14:13:09.877+00 f t 2024-10-10 17:30:00 NO_REPORT Clinica Gato de 13 años y hace 5 días obstruido que no hace ni caca ni pis. Ha dejado de comer. Transaccion 89838453261 49600.00 18600.00 31000.00 2024-10-10 20:30:00+00 154 163 \N 1 557e70b8i3trokvmt8rgmeunr0 \N \N +2527 2025-09-17 15:02:20.902824+00 2025-09-17 15:02:20.90283+00 f t 2025-09-24 20:30:00 NO_REPORT clinical control general seña por $12.800 - 125963702139\r\nLink de pago por $70.000 - 125968758141\r\nABONAR A NICO GUASCO NOSOTROS 82800.00 82800.00 70000.00 2025-09-24 23:30:00+00 125968758141 8767 7238 1208 9 852nu8fiv6u0gb1ocnucfe697o \N \N +2405 2025-09-06 17:19:15.714463+00 2025-09-06 17:19:15.714471+00 f t 2025-09-06 20:00:00 NO_REPORT clinical Thor tuvo cistitis mejoró en las otras oportunidades pero ahora con los mismos medicamentos no mejora. Lo llevé al veterinario y me recomendó que le haga una ecografía para ver si tiene cálculos. 78000.00 13000.00 65000.00 2025-09-06 23:00:00+00 124599722785 8109 6672 1208 90 cjd9cdha2umdmu44jgt203r5fo 115 \N +2955 2025-10-20 20:19:45.691324+00 2025-10-20 20:19:45.691337+00 f t 2025-10-20 18:00:00 COMPLETED clinical Consulta sobre procedimientos. Turno sin cargo por el vete 0.00 0.00 0.00 2025-10-20 21:00:00+00 0 10203 8472 1583 115 7jicmjqselqsk0p1k2m2a8i7e4 \N 1125 +1415 2025-06-08 19:45:16.003928+00 2025-06-08 19:45:16.003937+00 f t 2025-06-14 14:00:00 COMPLETED clinical Vómitos esporádicos 42000.00 9500.00 32500.00 2025-06-14 17:00:00+00 831077145 2386 2153 114 92 or7hb87pmbnuk0ecr2feemchts 857 \N +2764 2025-10-04 16:06:06.409204+00 2025-10-04 16:06:06.409216+00 f t 2025-10-06 10:00:00 COMPLETED clinical vacunacion anual a los dos. descuento multimascota\r\nAbona con credito, debemos abonarle nosotros a Palummo $113.000 140400.00 27400.00 113000.00 2025-10-06 13:00:00+00 128044741601 9759 8130 1208 80 tgddq5q56rvlk899ksbdak41ik \N 844 +2990 2025-10-23 21:54:03.330319+00 2025-10-23 21:54:03.330329+00 f t 2025-10-24 16:30:00 COMPLETED clinical Vomitos desde hoy. 46000.00 11000.00 35000.00 2025-10-24 19:30:00+00 130475316481 11178 9327 1583 80 5ssft08d1l5sc6pi3fumqvmi1o \N 1179 +3310 2025-11-18 19:16:25.774369+00 2025-11-18 19:16:25.774381+00 f t 2025-11-18 19:00:00 NO_REPORT clinical letargico, no puede caminar mucho, alerta, toma agua, comio muy poquito, hizo pis y caca. Se le debe $44.000 a la vete, el tuto abono con link de pago 55000.00 55000.00 0.00 2025-11-18 22:00:00+00 MP 13646 11252 1583 79 8rls6rc9egp65mc58v9di06jbk \N 1653 +2464 2025-09-11 19:43:35.855901+00 2025-09-11 19:43:35.855907+00 f t 2025-09-12 10:00:00 COMPLETED telemedicina Control post analisis Se le debe $19.500 a Lisandro 30000.00 30000.00 19500.00 2025-09-12 13:00:00+00 125815183694 5071 4220 1583 1 lkjdse860jabb47khbh59oj3c8 68 \N +2930 2025-10-17 22:21:50.7224+00 2025-10-17 22:21:50.722409+00 f t 2025-10-18 08:00:00 COMPLETED clinical perfil 7 41700.00 41700.00 0.00 2025-10-18 11:00:00+00 R7ZG0QNDJ1DX58PDNEXYPO 10963 9096 1208 100 vt9skkh66v6g619ioc3fs3bdg4 \N 1078 +2690 2025-09-30 14:24:54.191986+00 2025-09-30 14:24:54.191996+00 f t 2025-09-30 17:00:00 COMPLETED clinical no come 55000.00 11000.00 44000.00 2025-09-30 20:00:00+00 30717420698 9668 8053 1583 113 blspkqu73nrv0am3efrmul5350 \N \N +2233 2025-08-25 14:16:31.028765+00 2025-08-25 14:16:31.028773+00 f t 2025-08-25 12:30:00 COMPLETED clinical defeco con sangre 50000.00 10000.00 40000.00 2025-08-25 15:30:00+00 123607813780 7243 5944 1208 88 v7t67t01dldlielcg6obdg8nek 254 \N +1965 2025-08-01 22:20:08.526581+00 2025-08-01 22:20:08.526593+00 f t 2025-08-02 18:30:00 NO_REPORT clinical vacunacion anual para simon y vacunacion con antirrabica para arthur y agatha 0.00 0.00 0.00 2025-08-02 21:30:00+00 120680922630 5733 4687 113 68 qd7890i7t1qvldru14u9a5988o \N \N +3135 2025-11-04 20:32:10.608333+00 2025-11-04 20:32:10.608344+00 f t 2025-11-04 18:00:00 COMPLETED clinical Vomitos, tiene estudios hechos. 55000.00 11000.00 44000.00 2025-11-04 21:00:00+00 131893352719 12383 10230 1583 1 2bbd77vecgvj6hjpc9cbnphnf0 \N 1406 +278 2024-12-02 16:59:50.406+00 2024-12-02 16:59:50.406+00 f t 2024-11-08 16:00:00 COMPLETED clinical Gato no orina, un vete le mando a hacer un análisis y aun no están los resultados, y quiere que alguien vea a su gato porque le preocupa que este orinando poco. 49600.00 18600.00 31000.00 2024-11-08 19:00:00+00 165 174 114 2 smr5oft8sodhepacn0sbtm3k9s \N \N +2019 2025-08-07 19:37:56.678057+00 2025-08-07 19:37:56.678065+00 f t 2025-08-08 18:30:00 COMPLETED clinical Vacunacion y Cortes de uñas 79700.00 21200.00 58500.00 2025-08-08 21:30:00+00 \N 6084 4969 113 1 f86i0rvbpuo250gk1565heml1c 410 \N +2750 2025-10-03 17:03:11.37186+00 2025-10-03 17:03:11.37187+00 f t 2025-10-04 15:00:00 COMPLETED clinical Consulta general, previamnte por vomitos y diarrea 55000.00 11000.00 44000.00 2025-10-04 18:00:00+00 127924046981 9954 8228 1583 94 acsv6s12j2gu7j4sq9abn1j6hg \N 827 +3040 2025-10-28 17:32:25.703249+00 2025-10-28 17:32:25.703261+00 f t 2025-11-04 11:30:00 NO_REPORT clinical control cardiologico para dos desc. recompra 210000.00 10000.00 200000.00 2025-11-04 14:30:00+00 131603051884 4176 3479 1208 82 4f2t349djd69bgnt2f5jbmr9ck \N 1252 +2013 2025-08-06 23:24:58.772523+00 2025-08-06 23:24:58.772529+00 f t 2025-08-20 10:30:00 COMPLETED clinical Consulta clinica + toma de presion 42000.00 9500.00 32500.00 2025-08-20 13:30:00+00 50623543008250806 6035 4928 113 1 opdj5gsio426tij2uvsq3cs5o8 306 \N +2765 2025-10-04 17:28:10.141274+00 2025-10-04 17:28:10.141282+00 f t 2025-10-06 09:00:00 COMPLETED clinical coproparasitologico. 128058188131 . de los $1.000 que faltaban 24200.00 24200.00 0.00 2025-10-06 12:00:00+00 128058188131 9969 8245 1208 100 vti4shbiv87hmvfls29cad7a7c \N 846 +2092 2025-08-14 20:41:56.96295+00 2025-08-14 20:41:56.962961+00 f t 2025-08-14 19:00:00 COMPLETED clinical Está muy flaca, come muy poco y se le está haciendo unas lagañas en los ojos 50000.00 10000.00 40000.00 2025-08-14 22:00:00+00 122342508314 6520 5317 114 1 hhqul6t3823c7sjge9orprptk4 357 \N +2931 2025-10-17 22:30:43.411912+00 2025-10-17 22:30:43.411921+00 f t 2025-10-17 21:00:00 NO_REPORT clinical ecografia abdominal de urgencia 80200.00 5200.00 75000.00 2025-10-18 00:00:00+00 Z0KV87948E311GMQ2PEYDX 10963 9096 1208 90 c7ki0u93pjosmve9fivbb9q4j8 \N 1079 +2991 2025-10-23 22:20:49.504509+00 2025-10-23 22:20:49.504519+00 f t 2025-10-30 14:00:00 NO_REPORT clinical placas x2 descuento recompra 72000.00 7000.00 65000.00 2025-10-30 17:00:00+00 R7ZG0QNDWPVMR1E09EXYPO 11393 9439 1208 84 17nrlsqu6p939udp1fnqao0c7s \N 1184 +2966 2025-10-21 19:27:07.345671+00 2025-10-21 19:27:07.34568+00 f t 2025-10-22 20:00:00 COMPLETED clinical vacunacion anual 78000.00 21500.00 56500.00 2025-10-22 23:00:00+00 39326868812 8577 7061 1208 80 hdsfigltfebf6pe15pg5pcn33g \N 1145 +2661 2025-09-26 23:53:59.079564+00 2025-09-26 23:53:59.079574+00 f t 2025-09-27 14:00:00 COMPLETED clinical vac. anual y revision de una uña 38994658094 . comprobante de $11.000\r\nel otro es de $10.500 78000.00 21500.00 56500.00 2025-09-27 17:00:00+00 38994990387 9459 7869 1208 68 nb75c0hgjfo9dvevf7pa1kf6m0 \N \N +2465 2025-09-11 23:28:47.887775+00 2025-09-11 23:28:47.887782+00 f t 2025-09-12 20:00:00 COMPLETED clinical Ecografía Abdominal Abono con tarjeta - a la vete le corresponde $130.000 (Paso los restantes $65.000 - 126172896538) 143000.00 143000.00 130000.00 2025-09-12 23:00:00+00 125295374905 6033 4925 114 90 9j0101tbcfll0ko6j5tps7nv00 59 \N +1 2024-01-04 12:00:00+00 2024-01-04 12:00:00+00 f t 2024-01-04 12:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación 27999.99 0.00 0.00 2024-01-04 15:00:00+00 \N 1 1 110 2 ei81p4lu9eprgqct1n0c8k6vh8 \N \N +2898 2025-10-15 20:10:26.408422+00 2025-10-15 20:10:26.408431+00 f t 2025-10-17 17:30:00 NO_REPORT clinical control general. 46000.00 11000.00 35000.00 2025-10-17 20:30:00+00 130056037704 10795 8968 1208 96 fvmaceosufn3h2h35e8oqrkt38 \N 1032 +2735 2025-10-02 19:39:03.138087+00 2025-10-02 19:39:03.138102+00 f t 2025-10-10 10:30:00 NO_REPORT clinical Sesion 1/4 de fisioterapia Abono pack 4 visitas, dcto -$39.600 224400.00 4400.00 220000.00 2025-10-10 13:30:00+00 128367891606 9641 8030 1583 67 lv30065n5jbfqk2jcoi6fjou6k \N 803 +2869 2025-10-13 16:24:29.097335+00 2025-10-13 16:24:29.097349+00 f t 2025-10-13 18:00:00 COMPLETED clinical Constulta post estudios. Se le debe $19500 a Mara 30000.00 30000.00 0.00 2025-10-13 21:00:00+00 129193944617 9126 7557 1583 92 au4iieo81blmf7r8hcp3vg0u7s \N 993 +2568 2025-09-19 20:51:22.520102+00 2025-09-19 20:51:22.520112+00 f t 2025-09-20 11:00:00 COMPLETED clinical Control post cx por reparacion de eventracion umbilical, y administracion de tribiotic 55000.00 11000.00 44000.00 2025-09-20 14:00:00+00 126821432082 8958 7414 110 70 47cmu2esg007bba18tq451fjvk \N \N +2507 2025-09-16 00:14:24.584347+00 2025-09-16 00:14:24.584355+00 f t 2025-09-16 11:00:00 COMPLETED clinical se quiso subir al sillon y se golpeo, esta con mucho dolor 46000.00 11000.00 35000.00 2025-09-16 14:00:00+00 126329057050 8690 7177 1208 68 d0tq3j0hr53clq5u767i54g2mk 41 \N +971 2025-04-10 21:16:54.935128+00 2025-04-10 21:16:54.935139+00 f t 2025-04-14 16:00:00 COMPLETED clinical control clinico + drenaje glandulas la clienta pago 105000 por pack 3 turnos. feb, mar. abr. Al vete se le pago las 3 visitas en el mes de febrero ($84000) las visitas de mar y abr quedan en cero. 0.00 0.00 0.00 2025-04-14 19:00:00+00 0 123 128 111 1 s7vrem8hbsei57ml0rqlhvgukk \N \N +2610 2025-09-23 16:22:32.546267+00 2025-09-23 16:22:32.546276+00 f t 2025-09-24 19:30:00 COMPLETED clinical gatita tuvo crias anoche/madrugada, quiere saber que este todob bien descuento recompra 49500.00 5500.00 44000.00 2025-09-24 22:30:00+00 126695096903 6788 7614 1208 92 rvjpg4k16qlva8lfntv0umpdkc \N \N +506 2025-01-28 23:34:09.046489+00 2025-01-28 23:34:09.046498+00 f t 2025-01-29 10:30:00 NO_REPORT clinical Control por empeoramiento del cuadro 35000.00 7000.00 28000.00 2025-01-29 13:30:00+00 100282827969 198 211 113 1 7l6k9jsash1tj8q0mbvbutiko4 \N \N +2586 2025-09-22 13:17:04.472014+00 2025-09-22 13:17:04.472024+00 f t 2025-09-22 11:00:00 COMPLETED clinical Hace 3 dias que no ingiere agua, ni alimento, apenas si le puedo mojar la boca. NO logra sostenerse sobre sus patas traseras, tiene los ojos hundidos . 55000.00 11000.00 44000.00 2025-09-22 14:00:00+00 126556195261 9096 7529 1583 113 k0c8vf3n0osq2i2uf4g652d9ss \N \N +2530 2025-09-17 16:30:30.628758+00 2025-09-17 16:30:30.628766+00 f t 2025-09-18 12:00:00 COMPLETED clinical control precx descuento, tiene ademas extraccion para precx cobrado 96300.00 1300.00 95000.00 2025-09-18 15:00:00+00 125970935735 8378 6902 1208 82 hf3p988e9oa3ck7uutqvt76kec 15 \N +2691 2025-09-30 14:30:44.343059+00 2025-09-30 14:30:44.343068+00 f t 2025-10-04 14:00:00 NO_REPORT clinical 78000.00 21500.00 56500.00 2025-10-04 17:00:00+00 39020086904 9640 8029 \N 70 p1d0d0qdg49i5fq55o2ij9vn00 \N \N +2416 2025-09-08 17:01:12.409753+00 2025-09-08 17:01:12.409762+00 f t 2025-09-10 15:00:00 COMPLETED vaccination Vacunacino aual (tiple y antirrabica) La tutora pago $30.000 se sena. Debemos pagarle $8500 al veterinario 78000.00 30000.00 48000.00 2025-09-10 18:00:00+00 124835258425 8203 6748 1583 101 c7enfhd4hft4i5oicn69814n3k 84 \N +2417 2025-09-08 19:05:06.715414+00 2025-09-08 19:05:06.715428+00 f t 2025-09-09 09:00:00 COMPLETED clinical 3 extracciones, 3 traslados para 1 hemograma completo, 2 prequirúrgico completo Van a otra veterinaria. Se cobro $500 mas a mensajeria por la distancia 77630.00 43630.00 34000.00 2025-09-09 12:00:00+00 125389967936 7038 6755 1583 112 26bvd3vdqkoe68fni4tmk76kbk 103 \N +280 2024-12-02 18:16:18.233+00 2024-12-02 18:16:18.233+00 f t 2024-11-08 17:00:00 COMPLETED clinical Está con vómitos hace unos días, eventualmente ha pasado y al poco tiempo vuelve a la normalidad, pero esta vez no. Transacción 92463402935 49600.00 18600.00 31000.00 2024-11-08 20:00:00+00 225 245 114 2 4ni30qdpoiclh33qfl7o47oivc \N \N +66 2024-10-30 14:13:08.892+00 2024-10-30 14:13:08.892+00 f t 2024-08-13 14:30:00 COMPLETED Rayos Ecografia abdominal, radiografia de abdomen Transaccion 84877987843 Cliente pagó $40000 transferencia y $70000 efectivo 110000.00 40000.00 70000.00 2024-08-13 17:30:00+00 65 66 \N 3 beku3osfgklc90sglhgsjom6bo \N \N +424 2025-01-15 20:19:26.707+00 2025-01-15 20:19:26.707+00 f t 2025-01-16 10:00:00 COMPLETED clinical se le hincho un lado de la carita por debajo del ojo, y parece que le duele porque el come bien pero hoy casi no comio. Hoy lo revisaba y tiene una lastimadura en la parte trasera en una de sus patas El cartel dice remeras térmicas es un local comercial 35000.00 7000.00 28000.00 2025-01-16 13:00:00+00 \N 322 385 110 1 cojoeb8016g81d5sqr70ahc068 \N \N +2713 2025-10-01 15:48:21.422983+00 2025-10-01 15:48:21.422993+00 f t 2025-10-04 13:00:00 COMPLETED clinical vac. antirrabic la vacunacion ya se abono hace unos meses, era un turno pendiente. 54000.00 13500.00 40500.00 2025-10-04 16:00:00+00 00 667 788 1208 80 sji0e3ibrfulco2hlafe6hnm4g \N 775 +1978 2025-08-03 13:56:46.453805+00 2025-08-03 13:56:46.453812+00 f t 2025-08-04 19:30:00 COMPLETED telemedicina consulta dermatologica 44100.00 44100.00 0.00 2025-08-04 22:30:00+00 38279250467 785 902 1208 75 54gghj91p33197clir1uuvfosg 440 \N +2126 2025-08-17 19:47:30.345126+00 2025-08-17 19:47:30.345137+00 f t 2025-08-17 18:00:00 COMPLETED clinical le duele el hombro al moverselo 50000.00 10000.00 40000.00 2025-08-17 21:00:00+00 122666462280 6688 5457 114 92 86rvki1olacfrg0t4kbokiire0 336 \N +2508 2025-09-16 13:23:48.67578+00 2025-09-16 13:23:48.675788+00 f t 2025-09-16 11:00:00 COMPLETED clinical Está decaído. No quiere levantarse y en él es nada normal..Es Golden. Y siempre inquieto 55000.00 11000.00 44000.00 2025-09-16 14:00:00+00 126382185160 8716 7196 1208 1 40iu5ra1jr228vmqd1cdr4hmrc 40 \N +1386 2025-06-05 19:27:37.460329+00 2025-06-05 19:27:37.460337+00 f t 2025-06-24 11:00:00 COMPLETED clinical Consulta dermatológica 70000.00 10000.00 60000.00 2025-06-24 14:00:00+00 37521864030 2046 1891 1026 75 eed46cv5tmmsaepgd36lt0e8gc 802 \N +2349 2025-09-02 14:08:41.876247+00 2025-09-02 14:08:41.876259+00 f t 2025-09-02 15:00:00 COMPLETED clinical extraccion de sangre perfil tiroideo + relacion AOC 121500.00 121500.00 0.00 2025-09-02 18:00:00+00 124032547739 6392 5199 1208 100 o3em66faajkcun89458t0o0srs 160 \N +2189 2025-08-21 20:19:30.403901+00 2025-08-21 20:19:30.403908+00 f t 2025-09-06 18:30:00 NO_REPORT vaccination Vacunacion anual (Antirrabica y sextuple) 115200.00 9200.00 106000.00 2025-09-06 21:30:00+00 122661752229 3052 2661 1583 68 m2p52bgthg2ejuc7aruhrtdm48 116 \N +2662 2025-09-27 00:19:51.577599+00 2025-09-27 00:19:51.577608+00 f t 2025-09-27 12:00:00 COMPLETED clinical Tiene una tos rara. Como q quiere vomitar algo pero no . 55000.00 11000.00 44000.00 2025-09-27 15:00:00+00 127681450426 9451 7861 1208 80 ilpnevhn93upc8f7n6ubebot9k \N \N +2899 2025-10-15 21:38:26.257036+00 2025-10-15 21:38:26.257045+00 f t 2025-10-23 11:00:00 COMPLETED clinical vacunacion anual Extra por la distancia 78000.00 21500.00 56500.00 2025-10-23 14:00:00+00 46YGOW9M8K5R463Y9EXD8J 10793 8966 1583 21 nqhmqaairholtmqf69oqeg05j8 \N 1031 +1018 2025-04-20 21:51:10.195348+00 2025-04-20 21:51:10.195355+00 f t 2025-04-20 16:30:00 COMPLETED clinical Vomitos intermitentes 46000.00 9500.00 36500.00 2025-04-20 19:30:00+00 108984108938 702 819 114 70 ap39c8l7gpca83p8pumh794fn0 \N \N +2466 2025-09-11 23:31:07.725906+00 2025-09-11 23:31:07.725913+00 f t 2022-09-11 20:00:00 NO_REPORT clinical Urgencia por dolores de cadera y paralisis 55000.00 11000.00 44000.00 2022-09-11 23:00:00+00 125289633763 8302 6837 114 70 apspnfcb68t6polgfnb27ddj2c \N \N +2792 2025-10-06 23:22:30.559845+00 2025-10-06 23:22:30.55986+00 f t 2025-10-10 19:30:00 COMPLETED clinical Vacunacion Anual 128878509799 ($8.000 restante de la seña de la vacunación anual) 78000.00 21500.00 56500.00 2025-10-10 22:30:00+00 128339908463 10163 8423 114 92 5gqnng8j2assnv78o77p5inqg8 \N 880 +2531 2025-09-17 16:50:37.749683+00 2025-09-17 16:50:37.74969+00 f t 2025-09-19 10:30:00 COMPLETED clinical perfil precx descuento por recompra 89460.00 48960.00 40500.00 2025-09-19 13:30:00+00 125970935735 8378 6902 1208 68 7nal8p2o543pg6vnqthvijde10 4 \N +2932 2025-10-17 22:56:38.266804+00 2025-10-17 22:56:38.266813+00 f t 2025-10-17 20:30:00 COMPLETED clinical posible eutanasia 111600.00 12600.00 99000.00 2025-10-17 23:30:00+00 129777379659 10901 9045 1208 113 m472hhnjl8vqbc8ntnc08d6knk \N 1075 +1984 2025-08-04 16:44:12.733559+00 2025-08-04 16:44:12.733568+00 f t 2025-08-04 20:30:00 NO_REPORT clinical Hace casi dos semanas le cuesta ir al baño a hacer caca, va al baño como si tuviera ganas, hace el espasmo y todo pero no puede hacer caca. Cada varios día logra hacer y lo que hace es normal pero es poquito para la cantidad de días. Pis hacia normal pero hace días que arranca a hacer pis sentado y se termina parando mientras hace. Lo lleve a la veterinaria hace una semana y me dieron un laxante pero sigue igual. Me dijeron que si seguía así le iba a tener que hacer análisis de orina para ver si tenía una infección por eso ya hago la consulta con el turno para laboratorio 50000.00 10000.00 40000.00 2025-08-04 23:30:00+00 120461629153 5815 4755 1208 9 uj49mvufubv9vpo0qv5571bj1o 437 \N +2064 2025-08-12 18:14:56.184994+00 2025-08-12 18:14:56.185003+00 f t 2025-08-14 13:30:00 COMPLETED clinical chequeo tiene $4.300 a favor 91200.00 5700.00 85500.00 2025-08-14 16:30:00+00 8D0Q619LOJ4V06MX97JZ5R 165 174 1208 91 nv9du55n0ljjvafhu1jr9a9h5c 362 \N +2587 2025-09-22 13:50:29.821638+00 2025-09-22 13:50:29.82165+00 f t 2025-09-26 18:30:00 COMPLETED clinical Consulta General 46000.00 11000.00 35000.00 2025-09-26 21:30:00+00 1843674579 9108 7540 1583 92 dqqikqgdc4adlnlc3tj6ngnoq0 \N \N +2746 2025-10-03 14:08:28.708036+00 2025-10-03 14:08:28.708045+00 f t 2025-10-04 09:30:00 NO_REPORT clinical Rayos 75000.00 15000.00 60000.00 2025-10-04 12:30:00+00 127898794273 9126 7557 1583 84 glhs7pkkthkabnkasua99s5an4 \N 820 +3350 2025-11-20 20:15:42.113172+00 2025-11-20 20:15:42.113184+00 f t 2025-12-04 15:00:00 PENDING clinical Muestra de sangre para perfil completo con orina y upc 0.00 0.00 0.00 2025-12-04 18:00:00+00 0 13437 11059 1583 100 60mjs5147n6q37kv1i00fqadfg \N 1707 +2870 2025-10-13 16:57:15.055218+00 2025-10-13 16:57:15.055228+00 f t 2025-10-14 18:00:00 COMPLETED clinical Ecogafia abdominal 68000.00 13000.00 55000.00 2025-10-14 21:00:00+00 Santander 10608 8808 1583 90 unhv0lgvoqj55cdjpp61u4km9g \N 984 +3156 2025-11-05 21:21:08.773503+00 2025-11-05 21:21:08.773512+00 f t 2025-11-06 10:00:00 COMPLETED clinical Alergia en la piel , enrojecida , se rasca mucho esta molesto y esta inquieto. Se le debe 45000 a la doc 57000.00 57000.00 0.00 2025-11-06 13:00:00+00 132640990140 12459 10291 1583 75 4vkhdhi20jvpt72q9mqsecb88s \N 1429 +2093 2025-08-14 20:47:03.043019+00 2025-08-14 20:47:03.04303+00 f t 2025-08-22 18:00:00 COMPLETED clinical Revisión y extracción de sangre para pruebas de Vilef y VIf coordinar moto mensajería 281060.00 205060.00 76000.00 2025-08-22 21:00:00+00 122350981570 6509 5308 114 1 v7rgv3f20h16gmi40qb2eht3nc 280 \N +2693 2025-09-30 15:35:11.792197+00 2025-09-30 15:35:11.792209+00 f t 2025-09-30 19:00:00 NO_REPORT clinical extraccion de sangre derivado de rapela 83000.00 63000.00 20000.00 2025-09-30 22:00:00+00 128063332902 9671 8056 1208 85 464rvhiqtvg04rophrs00ecfho \N \N +2647 2025-09-25 19:45:27.962798+00 2025-09-25 19:45:27.962807+00 f t 2025-09-25 19:30:00 NO_REPORT clinical Tiene la nariz muy tapada y está respirando muy mal! También le tenemos que dar otra vacuna 55000.00 11000.00 44000.00 2025-09-25 22:30:00+00 127524417446 9344 7763 1583 2 759n2icjj22df6k13cclhlqlac \N \N +2146 2025-08-19 13:32:02.517394+00 2025-08-19 13:32:02.517404+00 f t 2025-08-19 18:00:00 COMPLETED clinical caca floja y apetito disminuido 50000.00 10000.00 40000.00 2025-08-19 21:00:00+00 122367044073 6853 5598 1208 89 7sgbe2galpgrds3se6remnad2s 319 \N +2631 2025-09-25 13:11:25.040528+00 2025-09-25 13:11:25.040537+00 f t 2025-09-25 20:00:00 COMPLETED clinical Diarrea tuvo los días viernes por la noche y sábado. Vómito solo el viernes.\r\nLunes empezó a comer pollo hervido. Miércoles tuvo diarrea nuevamente. \r\nEstá muy débil la perra, sumada a su edad y a su tutor que tiene colocado en una de sus patas traseras. 55000.00 11000.00 44000.00 2025-09-25 23:00:00+00 127482584376 9310 7733 1208 92 sbc3dbouugime93qe5nuacefh8 \N \N +2548 2025-09-18 17:08:06.302428+00 2025-09-18 17:08:06.302436+00 f t 2025-10-06 19:00:00 COMPLETED clinical vac. quintuple desc recompra. \r\nComprobante de los $7.000 restantes: BVMR-O5IH-BFWZ 63000.00 12000.00 51000.00 2025-10-06 22:00:00+00 BV6I-O79N-Z4WZ 1100 7308 1208 92 i53hs1q2042nu9ps8rpokb381k \N \N +2933 2025-10-18 00:18:24.296874+00 2025-10-18 00:18:24.296889+00 f t 2025-10-18 13:00:00 COMPLETED clinical inyectable artrosan. 49500.00 5500.00 44000.00 2025-10-18 16:00:00+00 R7ZG0QNDJ1DDPXDENEXYPO 4255 3550 1208 88 qfa1a1gs4pd7tb8hkd8i4mi6s4 \N 1081 +2467 2025-09-11 23:34:21.615406+00 2025-09-11 23:34:21.615414+00 f t 2025-09-15 20:00:00 COMPLETED vaccination Vacunación Antirrábica Con posibilidad de Vacunación Séxtuple 54000.00 13500.00 40500.00 2025-09-15 23:00:00+00 10395126010250911 8445 6958 114 92 4g3aonno0sdndfg1n8kk3it0mc 44 \N +2793 2025-10-06 23:25:13.039866+00 2025-10-06 23:25:13.039876+00 f t 2025-10-07 20:30:00 COMPLETED clinical La veo que está flaca, y que no respira muy bien! 46000.00 11000.00 35000.00 2025-10-07 23:30:00+00 39119808933 10146 8407 1583 92 4j8lmqfcoei8lb9p46020pa940 \N 878 +2588 2025-09-22 14:21:52.192787+00 2025-09-22 14:21:52.1928+00 f t 2025-09-23 18:00:00 NO_REPORT clinical Radiografia rayos x4 110000.00 15000.00 95000.00 2025-09-23 21:00:00+00 24b488a2-fd36-4b10-a058-5d6835 8237 6782 1583 84 b16e03fpbjur1rug5obluoltgs \N \N +873 2025-03-23 22:26:15.613625+00 2025-03-23 22:26:15.613633+00 f t 2025-03-22 20:00:00 NO_REPORT telemedicina Revisión de resultados https://meet.google.com/xfq-mhzn-kcs 25000.00 25000.00 0.00 2025-03-22 23:00:00+00 105616999414 578 676 114 70 lbrsp8428hjtp9e9jpolk2feis \N \N +1714 2025-07-10 13:33:25.120875+00 2025-07-10 13:33:25.120881+00 f t 2025-07-10 11:30:00 COMPLETED clinical alcula que tiene artrosis, le cuesta andar por la edad, lo nota muy caido, come y toma agua, pero le cuesta la movilidad de las patas delanteras, come acelerado y termina vomitando. Abonarle a Robatto $10.000 50000.00 20000.00 30000.00 2025-07-10 14:30:00+00 3D5W612EJDJRWRJQ9GXYVR 4295 3583 1026 74 upsmjml0e4ts30bdn06f9mvt1g 670 \N +2509 2025-09-16 13:29:43.063753+00 2025-09-16 13:29:43.06378+00 f t 2025-09-16 12:00:00 COMPLETED clinical Está vomitando 55000.00 11000.00 44000.00 2025-09-16 15:00:00+00 125828574365 8714 7193 1208 1 5lvn6l3hfhclae8hra7qof53f8 38 \N +2837 2025-10-10 00:05:29.49323+00 2025-10-10 00:05:29.493239+00 f t 2025-10-10 12:30:00 COMPLETED clinical tiene mal la oreja y cómo no puede caminar, \N 55000.00 11000.00 44000.00 2025-10-10 15:30:00+00 129341149848 765 890 \N 88 tvbqrb0tpjmjl54sj8pqr5du80 \N 943 +2418 2025-09-08 19:05:41.242507+00 2025-09-08 19:05:41.242532+00 f t 2025-09-09 09:00:00 COMPLETED clinical 3 extracciones, 3 traslados para 1 hemograma completo, 2 prequirúrgico completo 0.00 0.00 0.00 2025-09-09 12:00:00+00 0 7038 5756 1583 112 68t6ogu9lcc7jd96qpdg589t84 \N \N +3309 2025-11-18 17:50:10.598537+00 2025-11-18 17:50:10.598553+00 f t 2025-11-19 16:00:00 NO_REPORT clinical Se fatiga muy rápido al caminar 46000.00 11000.00 35000.00 2025-11-19 19:00:00+00 ORD6LEN8P74W64P4NM1Y30 9712 8096 1208 91 0vik517vedvo88ceaioa1hod48 \N 1652 +2663 2025-09-27 00:32:31.334259+00 2025-09-27 00:32:31.334268+00 f t 2025-10-07 10:00:00 COMPLETED clinical Come bien, toma agua, hace caca bien pero adelgazo mucho\r\nEs alérgico a las pulgas y estuvo con pulgas. 46000.00 11000.00 35000.00 2025-10-07 13:00:00+00 127688112438 9458 7868 1208 14 7oriqpa4u5hip115u74v8r4l7o \N \N +630 2025-02-11 17:31:03.541669+00 2025-02-11 17:31:03.541676+00 f t 2025-02-13 17:00:00 COMPLETED clinical Certificado de salud No toma ninguna medicación y puede llegar a estresarse con personas que no conoce 81972.00 10572.00 71400.00 2025-02-13 20:00:00+00 102105856978 170 179 114 1 58pdvsipbeegtf0vjds73k8ah0 \N \N +2234 2025-08-25 14:31:27.805921+00 2025-08-25 14:31:27.805931+00 f t 2025-08-25 13:00:00 COMPLETED clinical eco abdominal 78000.00 13000.00 65000.00 2025-08-25 16:00:00+00 70062619 65 66 1208 90 37bn0dmoodrad8dln0cugpr3d8 253 \N +2065 2025-08-12 18:16:13.703803+00 2025-08-12 18:16:13.703812+00 f t 2025-08-14 13:30:00 COMPLETED clinical vac. anual 0.00 0.00 0.00 2025-08-14 16:30:00+00 0 165 5183 1208 91 3h97c6chiqbaamgl24q34t3828 \N \N +2968 2025-10-22 00:02:58.710662+00 2025-10-22 00:02:58.710674+00 f t 2025-10-24 10:00:00 COMPLETED clinical consulta dermatologica desc. recompra\r\nPAGAR A LA VETE EL RESTANTE 73800.00 73800.00 0.00 2025-10-24 13:00:00+00 130792272710 1082 1150 1208 75 ltlv68v8uo6v52mqt84l86cdc4 \N 1142 +1234 2025-05-20 16:22:56.256968+00 2025-05-20 16:22:56.256977+00 f t 2025-05-20 09:00:00 COMPLETED clinical Lesion en la oreja 38500.00 8500.00 30000.00 2025-05-20 12:00:00+00 \N 338 401 113 1 r2d376q20gac8mbsedosn4rp3o \N \N +3124 2025-11-04 15:34:47.407762+00 2025-11-04 15:34:47.40777+00 f t 2025-11-04 13:00:00 COMPLETED clinical Está decaído, vomito los doguis enteros varias veces y se queda echado sin moverse, siendo que es un perro muy imperativo 55000.00 11000.00 44000.00 2025-11-04 16:00:00+00 a9a8df87-1ddc-47f1-9b29-706c4e 12325 10177 1208 114 de712413q2cmefq8pe5q6e2kp0 \N 1392 +3019 2025-10-27 15:05:03.901199+00 2025-10-27 15:05:03.901212+00 f t 2025-10-27 21:00:00 COMPLETED clinical Consulta post estudios. Se le debe a la doc 19500 30000.00 30000.00 0.00 2025-10-28 00:00:00+00 130879361591 9239 7660 1583 92 tnu1kgmab82liphklte70bfi5k \N 1226 +3041 2025-10-28 17:48:39.552986+00 2025-10-28 17:48:39.552998+00 f t 2025-10-29 16:30:00 COMPLETED clinical vacunacion anual. 78000.00 21500.00 56500.00 2025-10-29 19:30:00+00 131602557670 11732 9703 1208 68 h271dc8b7mpatskb5ujusrl660 \N 1255 +2094 2025-08-14 20:47:56.432538+00 2025-08-14 20:47:56.432547+00 f t 2025-08-22 18:00:00 COMPLETED clinical Revisión y extracción de sangre para pruebas de Vilef y VIf Descuento por 2 mascotas 0.00 0.00 0.00 2025-08-22 21:00:00+00 122350981570 6509 5307 114 1 sfemphh7jil268e4qpuvu6569o \N \N +2992 2025-10-23 22:51:34.282941+00 2025-10-23 22:51:34.282949+00 f t 2025-10-30 15:30:00 NO_REPORT clinical consulta cardiologica desc. recompra y alcasena cobra $10.000 + por distancia 106300.00 1300.00 105000.00 2025-10-30 18:30:00+00 R7ZG0QNDWPVMR1E09EXYPO 11393 9439 1208 82 ltcjtmquho7icedha35hvcae98 \N 1185 +1180 2025-05-14 18:24:41.901586+00 2025-05-14 18:24:41.901596+00 f t 2025-05-15 09:00:00 COMPLETED clinical Traslado ---> 12.000\r\nLaboratorio-->Perfil general c/orina + serologia especifica= 117.000\r\nPGC con orina: 38000\r\nSerologia x 2 ambas: 79.100 129100.00 129100.00 0.00 2025-05-15 12:00:00+00 0 893 1004 113 86 gu26mjhfp3npmp7bf7apebvqlo \N \N +2468 2025-09-11 23:40:11.236457+00 2025-09-11 23:40:11.236468+00 f t 2025-09-12 20:00:00 COMPLETED vaccination Vacunación anual Le quedo a favor $6.500 que se le debe abonar después a Mara después los 78000.00 28000.00 50000.00 2025-09-12 23:00:00+00 125839077136 8478 6985 114 92 v1k2v59t1jfq15g8sbfe8s28ug 60 \N +2500 2025-09-15 17:28:16.868618+00 2025-09-15 17:28:16.868625+00 f t 2025-09-24 14:00:00 COMPLETED clinical Electro cardiograma y Presion arterial $95.000 la consulta de alcasena y $11.000 la medicion de presion arterial 117000.00 11000.00 106000.00 2025-09-24 17:00:00+00 125732953709 1794 1705 1583 82 vdjrbsiqh5q7gumqk46cg6oaj0 \N \N +3205 2025-11-09 20:00:39.061617+00 2025-11-09 20:00:39.06163+00 f t 2025-11-09 18:00:00 COMPLETED clinical Piel Irritada \N 30000.00 30000.00 19500.00 2025-11-09 21:00:00+00 82174413 12807 10570 \N 92 a1nun9c2jao6jhh34ja8n0l6tk \N 1502 +2095 2025-08-14 20:55:43.093046+00 2025-08-14 20:55:43.093053+00 f t 2025-08-19 09:00:00 COMPLETED vaccination Vacunación anual de tres gatos 194400.00 35400.00 159000.00 2025-08-19 12:00:00+00 121823312931 6545 5341 114 80 7iv9dlfq5ifo00pohmudeetnfg 324 \N +2664 2025-09-27 12:44:19.468568+00 2025-09-27 12:44:19.468576+00 f t 2025-09-27 13:00:00 COMPLETED clinical eutanasia eutanasia de urgencia, desc. recompra 117000.00 13000.00 104000.00 2025-09-27 16:00:00+00 127156424395 9109 7541 1208 113 fm6rrdl8mopd6sakone23ojv58 \N \N +6 2024-01-16 11:00:00+00 2024-01-16 11:00:00+00 f t 2024-01-16 11:00:00 NO_REPORT Consulta Oftalmologia Oftalmología 36000.00 0.00 0.00 2024-01-16 14:00:00+00 6 6 114 11 o0h9g5rt1mdco210a38bqmhba4 \N \N +2235 2025-08-25 15:06:24.622398+00 2025-08-25 15:06:24.622409+00 f t 2025-08-25 15:30:00 COMPLETED clinical cultivo y antibiograma 42500.00 42500.00 0.00 2025-08-25 18:30:00+00 123074961417 4334 5903 1208 100 44fecjh6hdb6el9vhmmpbu1vb8 249 \N +2794 2025-10-06 23:31:04.506081+00 2025-10-06 23:31:04.506094+00 f t 2025-10-06 20:00:00 NO_REPORT clinical No se especificó motivo de consulta. se solicitó: Telemedicina... 30000.00 30000.00 19500.00 2025-10-06 23:00:00+00 128337784051 10165 8425 114 89 19p342kls2eobpeiojghomrptc \N 881 +2829 2025-10-09 00:20:05.169801+00 2025-10-09 00:20:05.169816+00 f t 2025-10-09 21:00:00 NO_REPORT clinical Vacunacion anual+ corte de garras + certificado de salud \N 101100.00 28100.00 73000.00 2025-10-10 00:00:00+00 58802126. 10316 8565 \N 89 a75e8kc08pfpsmfqan9a3m0r6g \N 932 +2124 2025-08-16 19:05:33.734981+00 2025-08-16 19:05:33.73499+00 f t 2025-08-17 11:30:00 CANCELLED clinical revision de analisis y diagnostico presuntivo 50000.00 10000.00 40000.00 2025-08-17 14:30:00+00 122066109895 6671 5442 1208 88 e777f9mlharmnq0pm51f79b1ao \N \N +2993 2025-10-24 14:04:51.518801+00 2025-10-24 14:04:51.518813+00 f t 2025-10-24 12:30:00 COMPLETED clinical Le cuesta levantarse y no quiere comer. 55000.00 11000.00 44000.00 2025-10-24 15:30:00+00 69958871 11447 9474 1583 113 q0erv79hucj9dqm9oeagoe91tg \N 1188 +2723 2025-10-02 14:12:28.23214+00 2025-10-02 14:12:28.23215+00 f t 2025-10-02 16:30:00 COMPLETED clinical extraccion de sangre para hemograma completo+ glucemia y pcr erlichia. . 146700.00 106200.00 40500.00 2025-10-02 19:30:00+00 128327343688 9727 8106 1208 88 43s5aiqdfrarf8bnpl04msl9fc \N 790 +398 2025-01-08 13:23:37.261+00 2025-01-08 13:23:37.261+00 f t 2025-01-08 14:00:00 NO_REPORT clinical gato con manchas por todo su cuerpo donde pierde el pelo y le sangra la piel 35000.00 7000.00 28000.00 2025-01-08 17:00:00+00 98678539456 302 356 111 74 sorfr0keahca83tqu198re47bk \N \N +2766 2025-10-04 18:35:48.892754+00 2025-10-04 18:35:48.892762+00 f t 2025-10-06 17:30:00 COMPLETED clinical aplicacion de tribiotic subcutaneo 46000.00 11000.00 35000.00 2025-10-06 20:30:00+00 39093167470 10000 8274 1208 1 bksua376qj3flg0protutsc658 \N 845 +3142 2025-11-05 16:15:01.055328+00 2025-11-05 16:15:01.05534+00 f t 2025-11-06 12:00:00 NO_REPORT clinical consulta cardiologica de urgencia lo operan el sabado alcasena cobra mas por distancia 120000.00 10000.00 110000.00 2025-11-06 15:00:00+00 132600044768 12432 10263 1208 82 lak2dubdlpn2ilmrsrhd4a3i94 \N 1414 +2327 2025-09-01 19:43:45.517023+00 2025-09-01 19:43:45.517032+00 f t 2025-09-02 16:00:00 COMPLETED clinical Extraccion para perfil 7 70700.00 47700.00 23000.00 2025-09-02 19:00:00+00 123927254717 7745 6377 1583 104 hfoofmrt0fjf512mu0t7h74jho 158 \N +2632 2025-09-25 13:37:00.488003+00 2025-09-25 13:37:00.488014+00 f t 2025-09-25 12:30:00 COMPLETED clinical chequeo descuento recompra 49500.00 5500.00 44000.00 2025-09-25 15:30:00+00 126924860427 9109 7541 1208 113 4v2ni6da306n1bbc9sn7lptv9c \N \N +2446 2025-09-10 19:32:20.075682+00 2025-09-10 19:32:20.075691+00 f t 2025-09-10 19:00:00 COMPLETED clinical Consulta general 55000.00 11000.00 44000.00 2025-09-10 22:00:00+00 125102703231 8378 6902 1583 68 op2nha1qdcl5m74u2d2bgpqgpk 80 \N +2419 2025-09-08 19:06:37.517137+00 2025-09-08 19:06:37.517479+00 f t 2025-09-09 09:00:00 COMPLETED clinical 3 extracciones, 3 traslados para 1 hemograma completo, 2 prequirúrgico completo 0.00 0.00 0.00 2025-09-09 12:00:00+00 0 7038 6754 1583 112 n3fe2ui75r18jrromi88e9b2bo \N \N +2589 2025-09-22 14:57:04.90106+00 2025-09-22 14:57:04.901073+00 f t 2025-09-22 12:00:00 COMPLETED clinical No puede orinar , cuando está acostada se orina y creo que tiene inflamado el sector donde orina 55000.00 11000.00 44000.00 2025-09-22 15:00:00+00 126567689701 9109 7541 1583 113 258i8t1obe58u72hoee2fm2790 \N \N +2694 2025-09-30 15:36:12.940792+00 2025-09-30 15:36:12.940801+00 f t 2025-10-01 08:00:00 COMPLETED clinical perfil 7 + trigliceridos + medicion fenobarbital en el turno de antonella cargue los $20.000 que serian para ella 0.00 0.00 0.00 2025-10-01 11:00:00+00 128063332902 9671 8056 1208 100 811kjmc1a4rf87hmpk76441jpg \N \N +2621 2025-09-24 16:25:04.945771+00 2025-09-24 16:25:04.945786+00 f t 2025-09-24 20:00:00 COMPLETED clinical Hara una semana y media encontre sangre en el arenero y hoy nuevamente encontre heces con sangre.\r\nTengo 3 gatas. Sospecho que es la mayor pero realmente no estoy seguro de cual es. Me gustaria analizar las heces para saber de que se trata y como solucionarlo. Gracias 55000.00 11000.00 44000.00 2025-09-24 23:00:00+00 126811528187 9239 7660 1208 92 pjoml9av00gmfrtnoobdbcc5hk \N \N +2020 2025-08-07 23:33:55.120859+00 2025-08-07 23:33:55.120869+00 f t 2025-08-08 20:00:00 NO_REPORT clinical Revisión por agujero en la cola que supura 42000.00 9500.00 32500.00 2025-08-08 23:00:00+00 57837607 480 569 114 70 pmhhgg7h5oigv0obgo62ukbtt4 407 \N +3130 2025-11-04 17:29:59.666951+00 2025-11-04 17:29:59.66696+00 f t 2025-11-05 09:00:00 NO_REPORT clinical Ecocardiograma 0.00 0.00 0.00 2025-11-05 12:00:00+00 0 11745 9712 1583 118 te3tt24ijdjet8hv8lq2id3kko \N 1399 +2969 2025-10-22 00:07:02.204188+00 2025-10-22 00:07:02.204201+00 f t 2025-10-22 19:00:00 COMPLETED clinical vacunacion anual. 78000.00 21500.00 56500.00 2025-10-22 22:00:00+00 WY7ZEPN6MLXJ6RLW2Q0M51 11255 9334 1208 88 bh2hft6f26jhonm5rvoinlinv8 \N 1143 +2066 2025-08-12 18:36:15.307927+00 2025-08-12 18:36:15.307936+00 f t 2025-08-12 21:00:00 COMPLETED telemedicina tiene una parte circular chica sin pelo, que le salio hace unos dias. Esta vacunado y desparasitado, lo llevamos este año. 49000.00 49000.00 0.00 2025-08-13 00:00:00+00 61853811 6358 5175 1208 75 ubts3of9uos395bpgm0grc148g 373 \N +3192 2025-11-08 17:48:16.950814+00 2025-11-08 17:48:16.950822+00 f t 2025-11-08 15:30:00 NO_REPORT clinical hace unos días que comenzó con tos y con poco apetito 30000.00 30000.00 19500.00 2025-11-08 18:30:00+00 RD06ZO9WVEZ1V731N5GP7X 12721 10510 1208 80 mfcbu0c6eol5256ppj634s0ln0 \N 1486 +3042 2025-10-28 18:01:26.188214+00 2025-10-28 18:01:26.188223+00 f t 2025-10-31 19:30:00 COMPLETED clinical vacunacion quintuple desc, recompra 63000.00 12000.00 51000.00 2025-10-31 22:30:00+00 S25H-M60Y-MK8F 1100 7308 1208 92 uuehucdp41dd9p2fc0aal5aueg \N 1257 +2616 2025-09-24 00:44:13.321797+00 2025-09-24 00:44:13.321805+00 f t 2025-09-23 20:30:00 COMPLETED clinical 142500.00 28500.00 114000.00 2025-09-23 23:30:00+00 126750966585 9220 7643 113 92 3dhilfa25feem3q1qgfund2ooo \N \N +2067 2025-08-12 18:51:39.203258+00 2025-08-12 18:51:39.203273+00 f t 2025-08-18 15:00:00 COMPLETED clinical vac. anual 64800.00 11800.00 53000.00 2025-08-18 18:00:00+00 122020465082 3451 2945 1208 68 urqjqrqu89lvgqiaji4a16p4j0 329 \N +664 2025-02-16 21:55:49.654056+00 2025-02-16 21:55:49.654064+00 f t 2025-02-16 18:00:00 COMPLETED clinical Consulta clínica por inflamación en el moflete 41600.00 8600.00 33000.00 2025-02-16 21:00:00+00 LMORZP9058Q3R11PNEGJ46 460 545 114 80 719q4vs5l2r5c4vvh56sqbfdl8 \N \N +2767 2025-10-04 19:34:13.393685+00 2025-10-04 19:34:13.393694+00 f t 2025-10-08 17:00:00 COMPLETED clinical se contagio pulgas pero de tanto rascarse se hizo una herida detrás de la oreja y desparacitacion. Chequeo + desparacitacion interna y externa 79000.00 17500.00 61500.00 2025-10-08 20:00:00+00 128072162523 10006 8279 1208 80 ffq2orle7b1mv60qdiknhjs2vk \N 847 +2357 2025-09-02 19:58:14.095898+00 2025-09-02 19:58:14.095911+00 t t 2025-09-02 21:00:00 PENDING clinical \N \N 55000.00 11000.00 0.00 2025-09-03 00:00:00+00 124072312283 7827 6440 \N 80 s59dhp2clka8on9cr7d43c0pg8 \N \N +2021 2025-08-07 23:36:33.82108+00 2025-08-07 23:36:33.821089+00 f t 2025-09-06 14:00:00 COMPLETED vaccination vacunación anua 72000.00 19000.00 53000.00 2025-09-06 17:00:00+00 120910782039 1976 4975 114 92 sa2itpq8qkjtmp7jjnununacc8 121 \N +2795 2025-10-06 23:34:54.125849+00 2025-10-06 23:34:54.125858+00 f t 2025-10-07 09:30:00 NO_REPORT clinical control por estornudos continuos \N 46000.00 11000.00 35000.00 2025-10-07 12:30:00+00 128874659804 7528 6192 \N 68 c4s6e8hgbge9mtjihos3f72s14 \N 882 +99 2024-10-30 14:13:09.141+00 2024-10-30 14:13:09.141+00 f t 2024-09-03 17:00:00 NO_REPORT Clinica Desparasitacion + certificado Transaccion Bonificado Cliente desconforme con atencion de lisandro Ponce, se le bonifica la consulta, cliente abona al veterinario los desparasitantes, desparasitacion y certificados. 0.00 0.00 0.00 2024-09-03 20:00:00+00 91 157 114 2 ueje16j9aqjl33ue2hse4julmg \N \N +2103 2025-08-15 20:57:21.096755+00 2025-08-15 20:57:21.096763+00 f t 2025-08-19 11:30:00 NO_REPORT clinical Fluidoterapia 0.00 0.00 0.00 2025-08-19 14:30:00+00 Z0KV879486LK0WKJ2PEYDX 6619 5396 113 112 pkd89tgjdqbqup0nvoc1ig8dp0 \N \N +2096 2025-08-14 20:56:48.029304+00 2025-08-14 20:56:48.029314+00 f t 2025-08-19 09:00:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-08-19 12:00:00+00 0 6545 5341 114 80 8euht2qd36692eange4vmu45rs \N \N +2695 2025-09-30 15:50:54.144043+00 2025-09-30 15:50:54.144056+00 f t 2025-09-30 19:30:00 COMPLETED clinical Vomitos de bilis más o menos frecuentes 55000.00 11000.00 44000.00 2025-09-30 22:30:00+00 127500605255 9660 8045 1208 92 ujcub62n4n1s5e6uuulh654614 \N \N +1154 2025-05-12 20:15:08.171091+00 2025-05-12 20:15:08.1711+00 f t 2025-05-14 11:30:00 COMPLETED vaccination Vacunación + desparasitación externa El valor total está cargado en el otro turno 0.00 0.00 0.00 2025-05-14 14:30:00+00 CA 24-40535041-2 73 294 112 1 afe1jga9ge4kggt2mln1dh3ujs \N \N +2970 2025-10-22 00:17:09.457499+00 2025-10-22 00:17:09.457511+00 f t 2025-10-22 16:30:00 COMPLETED clinical Deterinar si es o no cushing 45000.00 10000.00 35000.00 2025-10-22 19:30:00+00 0V1JXON1LKVJPK1PNZ64EL 11278 9346 114 98 geh7bors06r1a5gqk6fpd9lb80 \N 1149 +2871 2025-10-13 17:49:13.704109+00 2025-10-13 17:49:13.704122+00 f t 2025-10-14 12:30:00 COMPLETED clinical No come, no mueve bien sus patas de atrás 46000.00 11000.00 35000.00 2025-10-14 15:30:00+00 62229179 10613 8812 1583 114 5msqodm9rfske586rgfanlgico \N 986 +2469 2025-09-12 12:57:08.02997+00 2025-09-12 12:57:08.029977+00 f t 2025-09-12 11:30:00 COMPLETED clinical Tiene la parte de la boca hinchada y con feo olor Se le debe $79.000 a la vete. La tutora abono el total 90000.00 90000.00 79000.00 2025-09-12 14:30:00+00 125352790721 979 1075 1583 21 536sk04pllkh8jpjrr2btt1s10 66 \N +2510 2025-09-16 14:51:27.758132+00 2025-09-16 14:51:27.75814+00 f t 2025-09-17 08:00:00 NO_REPORT clinical Analisis los habia abonado previamente, se cancelo por el extraccionista 0.00 0.00 23000.00 2025-09-17 11:00:00+00 67955288 7082 5794 1583 85 97h5q479j03g7rbaqu1n4j6utg \N \N +2197 2025-08-22 14:29:39.931339+00 2025-08-22 14:29:39.93135+00 f t 2025-08-25 09:00:00 COMPLETED clinical Extraccion de sangre para P7 y Sodio 74400.00 51400.00 23000.00 2025-08-25 12:00:00+00 67955288 7082 5794 1583 112 0ge3l3cgvsnf6c7gvuigcbhdtc 255 \N +75 2024-10-30 14:13:08.947+00 2024-10-30 14:13:08.947+00 f t 2024-08-20 14:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación gato / Desparasitación para 2 gatitos Transaccion 85278710969 Cliente pagó 50% por MP vacunación, total de los servicios $91.000 91000.00 26500.00 61000.00 2024-08-20 17:00:00+00 73 75 \N 1 317o0ra72k4eeo6bbio6p6c7kk \N \N +2633 2025-09-25 14:19:49.69085+00 2025-09-25 14:19:49.690859+00 f t 2025-10-02 12:00:00 COMPLETED clinical Está diagnósticado y medicado para trastornos de ansiedad y con problemas dermatologícos sin diagnóstico. Está tomando pregavalina, pragnisol y aceite cbd. 76000.00 11000.00 65000.00 2025-10-02 15:00:00+00 126929317161 9326 7746 1208 75 t5tv2nfikh8chnb97uh9mnfdp8 \N \N +3020 2025-10-27 16:01:44.398631+00 2025-10-27 16:01:44.398641+00 f t 2025-11-04 08:00:00 COMPLETED clinical Extraccion de sangre 30700.00 7700.00 23000.00 2025-11-04 11:00:00+00 3D5W612E6LG1XR1G2GXYVR 797 912 1583 112 eiomakm89k4cgs3lsdvt1gptqs \N 1228 +2934 2025-10-18 16:09:05.715767+00 2025-10-18 16:09:05.715776+00 f t 2025-10-18 14:30:00 COMPLETED clinical Artrosis , muy dolorida , no come 17 años. 55000.00 11000.00 44000.00 2025-10-18 17:30:00+00 129850171143 11029 9152 1208 88 i68lhbg4fet20jkib3rp197tt0 \N 1088 +1359 2025-06-03 15:48:29.367611+00 2025-06-03 15:48:29.367619+00 f t 2025-06-06 14:00:00 NO_REPORT clinical Eco abdominal Abonarle a la vete 57000.00 57000.00 45000.00 2025-06-06 17:00:00+00 113287006347 2084 1919 1026 90 vk44dqppdvq2cfra0c2u61mm2c 922 \N +2901 2025-10-16 13:55:13.431728+00 2025-10-16 13:55:13.431737+00 f t 2025-10-17 18:00:00 COMPLETED clinical Boxer, tiene como "pelones" sin pelo. No parece molesto pero no es normal. También tiene algo en la oreja por lo que siempre me indicaron unas gotas (punta orejas) y no logra sanar bien.toma regularmente apoquel \N 57000.00 57000.00 0.00 2025-10-17 21:00:00+00 JMQKYZ9QOVY3MR1P2V50P3 8918 7379 \N 75 dpec86nkq94rmc39pku2dqq84c \N 1039 +2420 2025-09-08 19:49:53.871524+00 2025-09-08 19:49:53.871532+00 f t 2025-09-10 15:00:00 COMPLETED clinical Extraccion de muestra para Frotis de sangre periférica para hemoparasitos 74400.00 45900.00 28500.00 2025-09-10 18:00:00+00 124853749941 5071 4220 1583 91 7u03eqd2q1ihibpt4gh4odsmsk 85 \N +2590 2025-09-22 15:29:12.744591+00 2025-09-22 15:29:12.744601+00 f t 2025-09-23 13:30:00 NO_REPORT clinical Ecograafaiaaa 65000.00 15000.00 65000.00 2025-09-23 16:30:00+00 38942639724 9120 7552 1583 90 jousuf86f2e7vn2ilaon4s6nls \N \N +3344 2025-11-20 17:54:37.260427+00 2025-11-20 17:54:37.260435+00 f t 2025-11-20 17:00:00 NO_REPORT clinical Consulta post estudios. Se le debe 19500,00 a la doc 30000.00 30000.00 0.00 2025-11-20 20:00:00+00 3D5W612E6JQ83MRG2GXYVR 7443 6127 1583 80 p7i5vofpcosecc675dtpj94n9o \N 1700 +2724 2025-10-02 14:12:42.157227+00 2025-10-02 14:12:42.15724+00 f t 2025-10-02 17:00:00 COMPLETED clinical hemograma completo+ glucemia y pcr erlichia. . 0.00 0.00 0.00 2025-10-02 20:00:00+00 128327343688 9727 8106 1208 100 h3oorqekg6uhlf4svhg40tohv4 \N 791 +2838 2025-10-10 13:11:56.711669+00 2025-10-10 13:11:56.711678+00 f t 2025-10-10 11:30:00 COMPLETED clinical Vomitos de hace 3 dias. 55000.00 11000.00 44000.00 2025-10-10 14:30:00+00 Brubaank 73 294 1583 114 h4d2dlvkqrvgttvjkoibvr8bk4 \N 945 +2147 2025-08-19 14:37:01.910824+00 2025-08-19 14:37:01.910834+00 f t 2025-08-20 11:30:00 COMPLETED clinical consulta cardio por precx 95000.00 10000.00 85000.00 2025-08-20 14:30:00+00 38507876089 6845 5589 1208 82 q141erie81luiemrrsvqd8uqcc 304 \N +2068 2025-08-12 20:01:56.18105+00 2025-08-12 20:01:56.18106+00 f t 2025-08-12 19:30:00 COMPLETED clinical Tiene hinchamada la zona de la boca y parece tener dolor 50000.00 10000.00 40000.00 2025-08-12 22:30:00+00 121505083129 6375 5187 1208 79 qri8ls8g2s2vgk0ag5fcftp2gk 375 \N +2470 2025-09-12 13:03:38.10389+00 2025-09-12 13:03:38.103897+00 f t 2025-09-12 11:00:00 COMPLETED clinical Ojo lastimado, parece que otro gato lo arañó 55000.00 11000.00 44000.00 2025-09-12 14:00:00+00 125903855126 8486 6991 1583 68 1v6sivi82nrk20cgpb2bbg026g 67 \N +2097 2025-08-14 20:57:19.872429+00 2025-08-14 20:57:19.872437+00 f t 2025-08-19 09:00:00 COMPLETED vaccination Vacunación anual 0.00 0.00 0.00 2025-08-19 12:00:00+00 0 6545 5341 114 80 ljl9ekm42q3150m5kljch6ff48 \N \N +1141 2025-05-11 19:14:02.580013+00 2025-05-11 19:14:02.580025+00 f t 2025-05-10 19:00:00 NO_REPORT clinical Diagnostico de una lesion de piel con similitud a sarna,manifiesta muchas lesiones 46000.00 9500.00 36500.00 2025-05-10 22:00:00+00 110722473477 915 1020 113 70 01gc3g3dfj3l13ova5r6v6ogeo \N \N +3143 2025-11-05 16:41:42.188999+00 2025-11-05 16:41:42.189007+00 f t 2025-11-06 14:00:00 NO_REPORT clinical ecografia abdominal 78000.00 13000.00 65000.00 2025-11-06 17:00:00+00 4e9c77c0966e442db91b0cb7e7 12325 10177 1208 90 v1m9aqakorat739krslo38vqa8 \N 1420 +2900 2025-10-16 13:26:05.90763+00 2025-10-16 13:26:05.907643+00 f t 2025-10-17 12:00:00 COMPLETED clinical medicion de presion y chequeo general 46000.00 11000.00 35000.00 2025-10-17 15:00:00+00 67REZ8NPW6GE1R8194KVGO 10853 9010 1208 1 t3eirtqu2rciab6b48r4knnvss \N 1038 +2971 2025-10-22 13:07:17.822082+00 2025-10-22 13:07:17.822095+00 f t 2025-10-22 18:00:00 COMPLETED clinical vacunacion anual . 78000.00 21500.00 56500.00 2025-10-22 21:00:00+00 130870008342 11321 9380 1208 91 pgaadgbg67rkfach81stto48pc \N 1154 +2358 2025-09-02 19:58:14.096441+00 2025-09-02 19:58:14.096449+00 f t 2025-09-02 21:00:00 COMPLETED clinical vomitos recurrentes. Se solicito receta de gabapentina 55000.00 11000.00 44000.00 2025-09-03 00:00:00+00 124072312283 7827 6440 1208 80 es6ioii5lsu39buufbi1237k3s 154 \N +2236 2025-08-25 15:48:55.82012+00 2025-08-25 15:48:55.820131+00 f t 2025-08-25 17:00:00 COMPLETED clinical escatado que tiene severos problemas tales como: sarna, nutrición, maltratado 50000.00 10000.00 40000.00 2025-08-25 20:00:00+00 123082229895 7264 5961 1583 21 952vqrm9109ttjrm9ap4rcvo9s 246 \N +2421 2025-09-08 19:50:16.399375+00 2025-09-08 19:50:16.399385+00 f t 2025-09-10 15:00:00 COMPLETED clinical Extraccion de muestra para Frotis de sangre periférica para hemoparasitos 0.00 0.00 0.00 2025-09-10 18:00:00+00 0 5071 4186 1583 91 homl1ng402fq15d68170icucsg \N \N +2994 2025-10-24 14:56:20.258769+00 2025-10-24 14:56:20.258778+00 f t 2025-10-24 15:00:00 COMPLETED clinical Extraccion para perfil completo 75400.00 52400.00 23000.00 2025-10-24 18:00:00+00 70003969 2084 9471 1583 112 54frij9dhmrj9mbtm0dussr98k \N 1187 +2022 2025-08-07 23:41:55.088465+00 2025-08-07 23:41:55.088472+00 f t 2025-08-08 21:00:00 CANCELLED clinical Diarrea y decaimiento 42000.00 9500.00 32500.00 2025-08-09 00:00:00+00 8DQ0Q619LOJGZ643V97JZ5R 3804 3223 114 70 92f5kee1k0p3bjuvpha0la4is8 \N \N +2511 2025-09-16 14:52:33.405634+00 2025-09-16 14:52:33.405656+00 f t 2025-09-17 10:00:00 COMPLETED clinical Extraccion de sangre para P7 y Sodio 0.00 0.00 0.00 2025-09-17 13:00:00+00 0 7082 5794 1583 100 q1hege453o889jlj373hiiq968 \N \N +2573 2025-09-20 13:16:19.873845+00 2025-09-20 13:16:19.873855+00 f t 2025-09-22 09:00:00 COMPLETED clinical retiro de citologia 36700.00 36700.00 0.00 2025-09-22 12:00:00+00 126894210674 6788 5547 1208 100 55aj0rhd0iuq392b0dc9msucak \N \N +2591 2025-09-22 15:36:17.652592+00 2025-09-22 15:36:17.652604+00 f t 2025-09-22 17:00:00 COMPLETED clinical Aparante conjuntivitis y mal aliento 55000.00 11000.00 44000.00 2025-09-22 20:00:00+00 50068389010250922 8385 6907 1583 113 87drsrjfrepq8japnn0rkbrgo8 \N \N +2696 2025-09-30 16:11:05.649768+00 2025-09-30 16:11:05.649777+00 f t 2025-09-30 18:00:00 COMPLETED clinical Despues de un estiramiento de columna hacia atras, jugando con la pelota en el parque, dejo de jugar al momento, desde ahi no camino normal, le cuesta y ya no corre 55000.00 11000.00 44000.00 2025-09-30 21:00:00+00 128074598596 9674 8059 1583 1 l81ti1b6lqsjg2ruamqsp1vp74 \N \N +3036 2025-10-28 14:16:36.630667+00 2025-10-28 14:16:36.630675+00 f t 2025-10-31 10:00:00 COMPLETED clinical Control. Vacuna triple y antirrábica. 78000.00 21500.00 56500.00 2025-10-31 13:00:00+00 130989888015 11685 9676 114 80 kth5os485g70d0u03liqttg4ro \N 1247 +3059 2025-10-29 16:07:56.133299+00 2025-10-29 16:07:56.133309+00 f t 2025-10-29 14:00:00 COMPLETED clinical perfil 7. 41700.00 41700.00 0.00 2025-10-29 17:00:00+00 131716325274 11818 9769 1208 100 ru9800b2v4io15nef7gvh7o17o \N 1282 +1567 2025-06-26 12:29:02.722963+00 2025-06-26 12:29:02.722974+00 f t 2025-06-26 19:30:00 NO_REPORT vaccination Vacunación triple felina Le deje la seña a favor, ya que el vete no pudo vacunarlo porque es muy chiquito 64500.00 17000.00 47500.00 2025-06-26 22:30:00+00 70066367008250626 3409 2914 1026 70 gu8iol3uqd71nqt7r91v8dpd5g 783 \N +2902 2025-10-16 15:39:18.19929+00 2025-10-16 15:39:18.1993+00 f t 2025-10-16 14:00:00 COMPLETED clinical Los dos fueron castrados y hay que sacarles la via desc multimascota 41400.00 6400.00 35000.00 2025-10-16 17:00:00+00 129574955877 2174 9015 1208 104 vnqfpjreoh6h0fln9rf3vgtkt8 \N 1040 +2725 2025-10-02 15:02:18.329978+00 2025-10-02 15:02:18.329989+00 f t 2025-10-02 20:00:00 COMPLETED clinical hace un tiempo tiene una peladilla en la pata que no se le cura y se le está extendiendo. 55000.00 11000.00 44000.00 2025-10-02 23:00:00+00 128336314148 8854 7319 1208 92 dmiebmctua8c9h5nepu8h2835o \N 793 +2348 2025-09-02 00:13:09.592144+00 2025-09-02 00:13:09.592156+00 f t 2025-09-02 08:00:00 COMPLETED clinical Urocultivo\r\nIdentificación\r\nRecuento de colonias\r\nAntibiograma \r\nHemograma\r\nGlucemia\r\nHepatograma\r\nUrea\r\nCreatinina 0.00 0.00 0.00 2025-09-02 11:00:00+00 0 7766 6397 114 100 alnk827aao72f3p630j0b0561g \N \N +2872 2025-10-13 18:48:37.502698+00 2025-10-13 18:48:37.502709+00 f t 2025-10-14 09:30:00 COMPLETED clinical Consulta por vomitos 46000.00 11000.00 35000.00 2025-10-14 12:30:00+00 129209531017 10636 8830 1583 1 2esf0vmhmc72huhle444hnrr10 \N 994 +2965 2025-10-21 18:18:59.440259+00 2025-10-21 18:18:59.440269+00 f t 2025-10-22 16:30:00 COMPLETED clinical chequeo general 130917609308 abono la consulta por link de pago\r\nSE LO DEBEMOS A VICKY 46000.00 11000.00 35000.00 2025-10-22 19:30:00+00 68026718 11240 9325 1208 88 p2c786spqbri15jiepaupb4k1k \N 1141 +3131 2025-11-04 17:30:50.863636+00 2025-11-04 17:30:50.863648+00 f t 2025-11-05 11:00:00 NO_REPORT clinical Radiografia 0.00 0.00 0.00 2025-11-05 14:00:00+00 0 11745 9712 1583 118 a293k8ks5kqk46o8b23bu0jahg \N 1400 +50 2024-10-30 14:13:08.731+00 2024-10-30 14:13:08.731+00 f t 2024-07-19 14:30:00 COMPLETED Urgencias Perro caniche 13 años con molestias y dolores durante la noche Transaccion 82928805119 Cliente pagó 50% transferencia y 50% efectivo 55000.00 27500.00 30000.00 2024-07-19 17:30:00+00 49 50 114 1 uvtvjlmhi95t9vjduer975drmg \N \N +2935 2025-10-18 16:18:53.748852+00 2025-10-18 16:18:53.748867+00 f t 2025-10-18 19:00:00 COMPLETED clinical posibles estornudos inversos desc. recompra 49500.00 5500.00 44000.00 2025-10-18 22:00:00+00 66095556 5189 4266 1208 68 hil0jtre05bg50p150cfr2ordg \N 1089 +394 2025-01-06 14:58:43.415+00 2025-01-06 14:58:43.415+00 f t 2025-01-10 14:00:00 COMPLETED clinical Chequeo general Solbra y Odin 66560.00 14560.00 56000.00 2025-01-10 17:00:00+00 73 75 111 1 1unhgnrskl0a9ods04a2v2jamc \N \N +1886 2025-07-25 23:50:19.721812+00 2025-07-25 23:50:19.721818+00 f t 2025-07-26 09:00:00 NO_REPORT clinical Eutanasia 119000.00 24000.00 95000.00 2025-07-26 12:00:00+00 119908141168 5259 4325 113 1 1lvgaf44343h7v2t3jce50elm0 535 \N +2148 2025-08-19 15:06:14.855838+00 2025-08-19 15:06:14.855848+00 f t 2025-08-19 15:30:00 COMPLETED clinical Diarrea y vomitos 50000.00 10000.00 40000.00 2025-08-19 18:30:00+00 122377463205 1794 1705 1583 21 d3d7vuqsvora9ekmo5hftpm6g0 321 \N +2972 2025-10-22 14:04:40.615315+00 2025-10-22 14:04:40.615324+00 f t 2025-10-22 18:30:00 COMPLETED clinical Vomita liquido casi todas más mañanas. 55000.00 11000.00 44000.00 2025-10-22 21:30:00+00 130876614304 11302 9364 1208 88 ci7fce9o99gp9rm8os354hpuns \N 1152 +3141 2025-11-05 15:35:43.78074+00 2025-11-05 15:35:43.780749+00 f t 2025-11-06 10:00:00 COMPLETED clinical 3 consultas por caida de pelo, tiene pipeta, viven en departamento 138000.00 33000.00 105000.00 2025-11-06 13:00:00+00 Santander 12433 10264 1583 88 3hhl59njore1j8lse9feehos2c \N 1415 +1941 2025-07-30 16:31:28.974195+00 2025-07-30 16:31:28.974204+00 f t 2025-08-12 13:00:00 NO_REPORT clinical Cardiología 85500.00 500.00 85000.00 2025-08-12 16:00:00+00 120386563708 313 373 1026 82 klck7i2tp6uf96ot2jfio2sr88 379 \N +2903 2025-10-16 15:40:36.588714+00 2025-10-16 15:40:36.588723+00 f t 2025-10-16 17:00:00 COMPLETED clinical ecografia abdominal \N 78000.00 13000.00 65000.00 2025-10-16 20:00:00+00 129510136135 10865 9022 \N 90 25ria4f35qo0gmpo88vhcafd74 \N 1042 +2023 2025-08-07 23:46:26.961697+00 2025-08-07 23:46:26.961706+00 f t 2025-08-08 15:00:00 COMPLETED clinical Perro accidentado por un auto 42000.00 9500.00 32500.00 2025-08-08 18:00:00+00 3609d423-b497-4d96-9592-9fb786 6019 4911 114 94 b2h1vfmpb53n85e1p8af7jp8ss 411 \N +2422 2025-09-08 20:04:48.296662+00 2025-09-08 20:04:48.296671+00 t t 2025-09-12 17:30:00 IN_PROGRESS clinical Ecografia abdominal por parto 78000.00 13000.00 65000.00 2025-09-12 20:30:00+00 125400618538 8218 6761 1583 90 prjbavtcnv62jhmmqdi2uunufo \N \N +2382 2025-09-04 20:03:24.424385+00 2025-09-04 20:03:24.424393+00 f t 2025-09-07 10:00:00 COMPLETED clinical 1er extraccion post dexa Traslado bonificado por ser cliente de rapela\r\nAl vete se le paga $60.000 por las 3 extracciones en el domicilio\r\nNosotros le abonamos la diferencia de $61500 196500.00 75000.00 121500.00 2025-09-07 13:00:00+00 LOEJWV9JLM17Y3Q8NQMDOG 5021 4145 1208 70 q4ghn2ns2f9a9u5h9j4o4r3eks 114 \N +2512 2025-09-16 15:39:38.689829+00 2025-09-16 15:39:38.689838+00 f t 2025-09-16 18:30:00 COMPLETED clinical Le pica la oreja, rasca y se lastima 55000.00 11000.00 44000.00 2025-09-16 21:30:00+00 125843031529 8732 7211 1583 80 fqbq33jjs1j5cftkfi78or68q8 33 \N +2697 2025-09-30 16:26:02.827244+00 2025-09-30 16:26:02.827254+00 f t 2025-10-03 15:00:00 COMPLETED clinical Vacunacion anual y despasrasitacion int+ ext canino 20-30kg x2 Generar link de pago para el tutor por $179.000, abono con link de pago la sena\r\nDescuento por cantidad de animal $23.800 214200.00 35200.00 179000.00 2025-10-03 18:00:00+00 128074886246 9676 8060 1583 68 2pgddh5c6fgtnrktl1mh674ug8 \N \N +1955 2025-07-31 17:40:12.32418+00 2025-07-31 17:40:12.324193+00 f t 2025-08-01 16:00:00 COMPLETED clinical vacunacion anual 143460.00 26460.00 117000.00 2025-08-01 19:00:00+00 120002512581 5640 4620 1208 1 vfqndj5hhrnl6tl3c3hsjsd2j0 474 \N +2237 2025-08-25 16:26:56.394685+00 2025-08-25 16:26:56.394696+00 f t 2025-08-26 16:00:00 COMPLETED telemedicina segunda opinión con respecto a dos coagulogramas prequirurgicos 27500.00 27500.00 0.00 2025-08-26 19:00:00+00 123624058984 7273 5967 1583 94 je2f8e7p42jnlapinhatm9uj5s 231 \N +2936 2025-10-18 16:24:19.412344+00 2025-10-18 16:24:19.412354+00 f t 2025-10-22 16:00:00 COMPLETED clinical chikito: vacunacion anual\r\nluna: control, neumonia cronica, ultimamente esta tosiendo muy seguido desc. multimascota 111600.00 20100.00 91500.00 2025-10-22 19:00:00+00 10137053017251018 10993 9123 1208 94 acfkcvdbrl0ha10rm8bhraca94 \N 1080 +2592 2025-09-22 15:54:40.897509+00 2025-09-22 15:54:40.897519+00 f t 2025-09-23 13:00:00 COMPLETED clinical 46000.00 11000.00 35000.00 2025-09-23 16:00:00+00 127133252950 9096 7529 113 113 k9rumb6tkdefsdlcnd571jljg8 \N \N +2665 2025-09-27 16:59:17.693691+00 2025-09-27 16:59:17.693699+00 f t 2025-09-28 12:00:00 NO_REPORT clinical pack 6 visitas, inyeccion subcutanea $27.500 de seña por las 6 visitas (hicimos el descuento de una visita bonificada) 23000.00 5500.00 17500.00 2025-09-28 15:00:00+00 127179569391 9491 7899 1208 112 m3sjt1pnmlnjspliq540oa4e0g \N \N +2726 2025-10-02 15:11:54.768249+00 2025-10-02 15:11:54.76826+00 f t 2025-10-03 17:00:00 COMPLETED clinical . 46000.00 11000.00 35000.00 2025-10-03 20:00:00+00 127772732857 9861 8150 1208 113 5mjqu83kpp805rvf937osgvbc0 \N 789 +2635 2025-09-25 14:57:29.374245+00 2025-09-25 14:57:29.374254+00 f t 2025-09-25 13:00:00 COMPLETED clinical muestra de secreciones oticas, cultivo y antibiograma 43700.00 43700.00 0.00 2025-09-25 16:00:00+00 Z6OLMDN3XO63JYW69E7RQ5 167 176 1208 100 8qhgs89db4et8svuc4kspdu6ig \N \N +2873 2025-10-13 20:19:18.140849+00 2025-10-13 20:19:18.140862+00 f t 2025-10-13 18:00:00 COMPLETED clinical Control. 55000.00 11000.00 44000.00 2025-10-13 21:00:00+00 foto 8378 6902 1583 68 37b05ng5po3itcp9i3daogchbk \N 995 +3144 2025-11-05 16:42:32.611413+00 2025-11-05 16:42:32.611422+00 f t 2025-11-06 15:30:00 COMPLETED clinical perfil 7 0.00 0.00 0.00 2025-11-06 18:30:00+00 132600955350 12325 10177 1208 100 1eneem1tccsatvqogl5r73k98g \N 1419 +2769 2025-10-04 20:20:55.884505+00 2025-10-04 20:20:55.884515+00 f t 2025-10-07 13:00:00 NO_REPORT clinical Ecografia abdominal para Merluza desc. recompra 61200.00 6200.00 55000.00 2025-10-07 16:00:00+00 128077548603 9991 8265 1208 90 jrlsp7dbas942oa8a056rvq5nc \N 849 +2995 2025-10-24 15:07:58.412501+00 2025-10-24 15:07:58.412512+00 f t 2025-10-24 16:00:00 COMPLETED clinical Muestra para Perfil Completo 0.00 0.00 0.00 2025-10-24 19:00:00+00 0 2084 9471 1583 100 i9un1kk8kid8uiq86g86eihsks \N 1189 +3021 2025-10-27 16:34:25.995027+00 2025-10-27 16:34:25.995037+00 f t 2025-10-27 18:00:00 COMPLETED clinical no quiere comer, desde ayer, toma agua pero se escondió bajo la cama y está distinto 55000.00 11000.00 44000.00 2025-10-27 21:00:00+00 LOEJVV9JZYE8341Z2QMDBOG 11610 9608 1583 1 2gijvfjm1gb4d5j84eeskeq948 \N 1229 +2797 2025-10-07 13:27:20.048635+00 2025-10-07 13:27:20.048648+00 f t 2025-10-07 20:00:00 COMPLETED clinical Respiracion agitada/especie de soplido. Ataque de tos a la noche. 55000.00 11000.00 44000.00 2025-10-07 23:00:00+00 128403085487 10184 8446 1208 79 uaecevfpisdn3ti09lb85l8gu0 \N 884 +2987 2025-10-23 19:14:32.118115+00 2025-10-23 19:14:32.118124+00 f t 2025-11-06 14:00:00 NO_REPORT clinical consulta cardiologica desc recompra, alcasena cobra + por distancia 116300.00 1300.00 115000.00 2025-11-06 17:00:00+00 130454216011 11321 9380 1208 82 5ijsquu21836obn7q5fqqaath0 \N 1177 +2550 2025-09-18 17:52:31.002407+00 2025-09-18 17:52:31.002415+00 f t 2025-09-19 17:30:00 COMPLETED telemedicina Tos Se debe $19.500 a Vero 30000.00 30000.00 19500.00 2025-09-19 20:30:00+00 126675893480 8823 7293 1583 91 4eafdhlhch7eonpclo8u4nhjbk \N \N +2471 2025-09-12 13:13:36.303958+00 2025-09-12 13:13:36.303965+00 f t 2025-09-16 12:00:00 NO_REPORT clinical Consulta cardiologica El vete agrego $15.000 por la distancia 130000.00 10000.00 120000.00 2025-09-16 15:00:00+00 125905152264 7666 6313 1583 82 cnmu9g15laf7id1pdvubtuk0g8 39 \N +1232 2025-05-20 15:35:32.268392+00 2025-05-20 15:35:32.268398+00 f t 2025-05-21 19:30:00 COMPLETED clinical Tiene un diagnostico de rinitis. Hace ruido al respirar. Desde ayer además no retiene lo que come, aunque hoy toleró la comida. 38500.00 8500.00 30000.00 2025-05-21 22:30:00+00 112235335152 1315 1327 112 70 j4d39njiirk7v0qskjt5v90sq8 \N \N +2798 2025-10-07 13:56:14.21908+00 2025-10-07 13:56:14.219089+00 f t 2025-10-07 14:00:00 COMPLETED clinical Vómitos blancos y amarillos desde ayer, vomitó a la noche, está inquieto y parece tener dolor abdominal. 55000.00 11000.00 44000.00 2025-10-07 17:00:00+00 790000969 10193 8460 1208 1 2k8f9rb47o8ffbs4s42qaqujrk \N 885 +2839 2025-10-10 14:03:43.519907+00 2025-10-10 14:03:43.519916+00 f t 2025-10-10 14:00:00 COMPLETED clinical linfoma avanzado. 124000.00 25000.00 99000.00 2025-10-10 17:00:00+00 129394665788 10401 8635 1583 1 4noejes3flhjuhu1ubfiact0d8 \N 946 +2551 2025-09-18 19:13:15.735691+00 2025-09-18 19:13:15.735702+00 t t 2025-09-18 21:00:00 NO_REPORT telemedicina Control post estudios Se le debe #19.500 a Kate 30000.00 30000.00 0.00 2025-09-19 00:00:00+00 0 7082 5794 1583 89 srtt4vk658od23ko70sgqqg7u0 10 \N +2593 2025-09-22 16:25:02.465295+00 2025-09-22 16:25:02.465311+00 f t 2025-09-23 09:30:00 COMPLETED clinical Vacunacion anual 78000.00 21500.00 56500.00 2025-09-23 12:30:00+00 30176867009250922 8639 7127 1583 80 g0m24hpu2lp2kgfrs7jv7lfnr8 \N \N +3065 2025-10-29 23:52:23.588691+00 2025-10-29 23:52:23.588702+00 f t 2025-10-31 09:00:00 COMPLETED clinical perfil completo sin orina 0.00 0.00 0.00 2025-10-31 12:00:00+00 131759609216 11851 9800 1208 100 4rt39c6dn1lah1ti060q38jh3c \N 1292 +2149 2025-08-19 15:41:53.451495+00 2025-08-19 15:41:53.451506+00 f t 2025-08-22 15:30:00 CANCELLED clinical consulta clinica y vacunacion anual 72000.00 19000.00 53000.00 2025-08-22 18:30:00+00 122381786017 6804 5557 1583 21 18lbshhcm3f1udg2mbml41556o \N \N +2770 2025-10-04 20:21:07.832148+00 2025-10-04 20:21:07.832156+00 f t 2025-10-07 14:00:00 COMPLETED clinical Estudios de laboratorio, Perfil hepatico + calcio+ forforo+ ionograma serico+ + aoc + upc explicado todo en los otros turnos 0.00 0.00 0.00 2025-10-07 17:00:00+00 128077548603 9991 8265 1208 100 1rs79mokqjv6lkrlp9aic5errk \N 850 +2937 2025-10-18 17:29:14.770696+00 2025-10-18 17:29:14.770704+00 f t 2025-10-18 20:00:00 COMPLETED clinical ecografia abbdominal de urgencia Abono el cliente en efectivo a dirisio 78000.00 13000.00 65000.00 2025-10-18 23:00:00+00 129860113707 11038 9159 1208 90 mloulgn5hbm9oekn37gl52id3g \N 1092 +1798 2025-07-17 14:16:15.469508+00 2025-07-17 14:16:15.469515+00 f t 2025-07-17 12:00:00 COMPLETED clinical Está muy viejita, se escondió no quiere salir ni comer, solo sale toma algo de agua y se vuelve a esconder 50000.00 10000.00 40000.00 2025-07-17 15:00:00+00 118414278335 4727 3916 1026 88 jsfjsaag7uj7euf9gkkemt2k0k 606 \N +2636 2025-09-25 15:25:25.046872+00 2025-09-25 15:25:25.046885+00 f t 2025-09-25 18:30:00 COMPLETED clinical Servicio de eutanasia 124000.00 25000.00 99000.00 2025-09-25 21:30:00+00 126936046075 9331 7753 1208 88 ng5t76ip7advr7cg0ls2b61df8 \N \N +2666 2025-09-27 17:02:13.691911+00 2025-09-27 17:02:13.691922+00 f t 2025-09-29 08:00:00 COMPLETED clinical pack 6 visitas, inyeccion subcutanea 23000.00 5500.00 17500.00 2025-09-29 11:00:00+00 127179569391 9491 7899 1208 112 d2c59urrqjt38skg9rncda8edk \N \N +2513 2025-09-16 15:43:26.434938+00 2025-09-16 15:43:26.434949+00 f t 2025-09-17 09:30:00 COMPLETED clinical vac. anual\r\nReceta de gabapentina descuento del mes en vac 70200.00 13700.00 56500.00 2025-09-17 12:30:00+00 126385310414 8730 7209 1208 1 g3tno8idp2c6pe6rdi9134eec4 26 \N +2359 2025-09-02 20:20:22.743308+00 2025-09-02 20:20:22.743321+00 f t 2025-09-02 20:00:00 COMPLETED clinical Mi perro tiene diarrea desde hace dos días, sospechamos que pudo haber tragado un hueso. Debe $1.000 de sena, abono $10.000 55000.00 10000.00 44000.00 2025-09-02 23:00:00+00 75907962 7820 6434 1583 80 npolctcvb2aar3bqn2n7q8dogg 155 \N +2727 2025-10-02 16:16:41.089666+00 2025-10-02 16:16:41.089678+00 f t 2025-10-02 16:30:00 COMPLETED clinical Perfil prequirurgico 3 Se cobro traslado y estudio 33700.00 33700.00 0.00 2025-10-02 19:30:00+00 39059103184 9644 8033 1583 100 f78hhmdj47t1v0f9reo7ftb76g \N 795 +423 2025-01-15 19:11:00.055+00 2025-01-15 19:11:00.055+00 f t 2025-01-20 12:00:00 NO_REPORT clinical Gato macho 8 años - Tiene lagañas sanguinolentas. El siempre tuvo lagañitas, desde bebe, pero ahora cambiaron de color. Él come, toma agua, juega, esta como siempre. Su tercer parpado no esta afectado, parece una alergia. 35000.00 7000.00 28000.00 2025-01-20 15:00:00+00 \N 323 386 110 1 10bb8mqclncts6thsavb74bfc0 \N \N +2238 2025-08-25 17:16:01.206204+00 2025-08-25 17:16:01.206216+00 f t 2025-08-29 14:00:00 NO_REPORT clinical Rx Torax LL y VD, Rx Cuello Estuvo tomando Cefalexina 250mg y Prednisolona 10mg. 95000.00 15000.00 80000.00 2025-08-29 17:00:00+00 123092910835 7277 5971 1583 84 pmqpcua2v404memr13rqle7j10 203 \N +2219 2025-08-23 19:55:56.239289+00 2025-08-23 19:55:56.239297+00 f t 2025-08-23 21:00:00 NO_REPORT clinical Hace un tiempo tiene unas lesiones q se las atribuimos a como se rasca, pero ahora nos dimos cuenta q tiene una lesión muy grande pareciera d tanto lamerse 50000.00 10000.00 40000.00 2025-08-24 00:00:00+00 XJ8G7V95EZQ3G08M2EMPYR 7157 5864 1208 68 sdv49oohee0ab0kpvt7a6gbpik 265 \N +2698 2025-09-30 16:36:58.961449+00 2025-09-30 16:36:58.961462+00 f t 2025-09-30 17:00:00 NO_REPORT clinical Vomitos 88000.00 13000.00 75000.00 2025-09-30 20:00:00+00 127513710773 9678 8063 1583 90 cj0airvbo6upqk0u9jso8t63jc \N \N +2874 2025-10-13 20:27:39.748915+00 2025-10-13 20:27:39.748924+00 f t 2025-10-13 18:30:00 COMPLETED clinical Drako comio ibuprofeno, revision de analisis Se le debe $50000 al vete 60000.00 60000.00 0.00 2025-10-13 21:30:00+00 129221193629 10650 8838 1583 115 37pmtlqcuvchgdkaigmsdevvks \N 997 +2383 2025-09-04 20:04:01.48493+00 2025-09-04 20:04:01.484939+00 f t 2025-09-07 14:00:00 COMPLETED clinical 2da extrac post dexa todo detallado en el primer turno 0.00 0.00 0.00 2025-09-07 17:00:00+00 LOEJWV9JLM17Y3Q8NQMDOG 5021 4145 1208 70 pklol5okh09q6ieaipebe4djg8 \N \N +2024 2025-08-07 23:53:51.94232+00 2025-08-07 23:53:51.942329+00 f t 2025-08-08 13:30:00 COMPLETED vaccination Vacunación de la Séxtuple, Hizo dos pagos para la seña - $9,500 y $7,500 (WGRXJE27GKK766P5PN7MYQL) 64500.00 17000.00 47500.00 2025-08-08 16:30:00+00 76V4MR2ZPZ3P4DVL9DEZOL 5951 4861 114 68 p5emt849vs2vcsbah1iavk9pa4 412 \N +2922 2025-10-17 14:50:57.675659+00 2025-10-17 14:50:57.675669+00 f t 2025-10-17 15:30:00 COMPLETED clinical Vacunacion anual 78000.00 21500.00 56500.00 2025-10-17 18:30:00+00 130291557528 10927 9067 1583 80 4b7uknc6r3ulf1vffdg0817e24 \N 1066 +2904 2025-10-16 16:25:42.85006+00 2025-10-16 16:25:42.85007+00 f t 2025-10-16 15:00:00 COMPLETED clinical tiene problemas en las patas traseras, debilidad, ahora grita de dolor y no puede caminar, ya estuvo en tratamiento: Con Prednisona 20 dos veces por día y tramadol un cuarto cada 12 hs. 55000.00 11000.00 44000.00 2025-10-16 18:00:00+00 130165053746 10863 9021 1208 1 emgn6u2r74qmcq1idoslkpgstc \N 1041 +3022 2025-10-27 17:10:10.0569+00 2025-10-27 17:10:10.056913+00 f t 2025-10-30 15:00:00 COMPLETED clinical Consulta general y extraccion para analisis de control con orina. Hacer ordenes para estudios 100900.00 60400.00 40500.00 2025-10-30 18:00:00+00 Santander 11616 9611 1583 88 pm5vfmicgb6q6ihcpncat4b06c \N 1230 +2959 2025-10-21 14:44:56.882263+00 2025-10-21 14:44:56.882271+00 f t 2025-10-22 11:00:00 COMPLETED clinical perfil 7 0.00 0.00 0.00 2025-10-22 14:00:00+00 39322371633 10764 8941 1208 100 pjnv8faf8vpaj4jsn5ibcj6si0 \N 1135 +2996 2025-10-24 15:28:52.354322+00 2025-10-24 15:28:52.354331+00 f t 2025-10-25 14:00:00 COMPLETED clinical Vacunacion anual Se le debe $56.500 ala doc, el cliente abono con tarjeta 78000.00 78000.00 56500.00 2025-10-25 17:00:00+00 130556904951 9928 8204 1583 94 mc8hs4e34mr8gde4mge70fpknk \N 1186 +3045 2025-10-28 19:51:00.101789+00 2025-10-28 19:51:00.101801+00 f t 2025-11-07 18:00:00 NO_REPORT clinical cardiologico x2 des. multim 210000.00 10000.00 200000.00 2025-11-07 21:00:00+00 JMQKYZ9QQW338EYP9V50P3 11720 9690 1208 82 j0eprn50k6aiuhhekr1rf3sb8k \N 1250 +3046 2025-10-28 19:51:17.454022+00 2025-10-28 19:51:17.454031+00 f t 2025-11-11 18:00:00 NO_REPORT clinical extraccion de sangre perfil 7 + tigliceridos + t4 total + AOC Y UPC desc. multim 205020.00 159020.00 46000.00 2025-11-11 21:00:00+00 JMQKYZ9QQW338EYP9V50P3 11720 9690 1208 85 ggqrjkebkir7ga77rtmjuau310 \N 1249 +2384 2025-09-04 20:04:42.488805+00 2025-09-04 20:04:42.488813+00 f t 2025-09-07 18:00:00 COMPLETED clinical 3era extraccion post dexa 0.00 0.00 0.00 2025-09-07 21:00:00+00 LOEJWV9JLM17Y3Q8NQMDOG 5021 4145 1208 70 cff05a2n654gmqooirt4s60p1k \N \N +2360 2025-09-02 20:20:22.744538+00 2025-09-02 20:20:22.744548+00 t t 2025-09-02 20:00:00 PENDING clinical Mi perro tiene diarrea desde hace dos días, sospechamos que pudo haber tragado un hueso. \N 55000.00 11000.00 0.00 2025-09-02 23:00:00+00 75907962 7820 6434 \N 80 76ttpu5r2k9upph5cceb4ib8qk \N \N +2514 2025-09-16 15:57:37.783595+00 2025-09-16 15:57:37.783602+00 t t 2025-09-19 16:00:00 PENDING clinical control cardiologico debemos abonarle los $10mil a Nico 95000.00 10000.00 85000.00 2025-09-19 19:00:00+00 126396102108 8735 7213 1208 82 m854hps7o6b4m00m70co9ii93c \N \N +3329 2025-11-19 18:53:14.870983+00 2025-11-19 18:53:14.870991+00 f t 2025-11-19 18:00:00 NO_REPORT clinical Muestra de sangre para perfil 7 + t4 0.00 0.00 0.00 2025-11-19 21:00:00+00 133880692417 13744 11337 1583 100 jgr6lippco0gu6rli7rjtkkabg \N 1682 +2637 2025-09-25 15:56:50.701221+00 2025-09-25 15:56:50.70123+00 f t 2025-09-27 10:00:00 NO_REPORT clinical perfil general completo SIN orina 75400.00 52400.00 23000.00 2025-09-27 13:00:00+00 0V1JXON1DGZL3LDP9Z64EL 9270 7688 1208 112 4dileu9ngps8r9rbqd6qojp1sk \N \N +2817 2025-10-08 16:05:11.446423+00 2025-10-08 16:05:11.446437+00 f t 2025-10-08 19:00:00 COMPLETED clinical Amanecion con le contorno del ojo izquierdo rojo. Se le debe a la vete $19500 30000.00 30000.00 0.00 2025-10-08 22:00:00+00 128566117583 631 742 1583 80 rppqlmbpq8oljgvqkua77lju0s \N 916 +1847 2025-07-22 17:36:11.070264+00 2025-07-22 17:36:11.070272+00 f t 2025-07-23 12:30:00 COMPLETED clinical Retiro de muestras + laboratorio 66500.00 66500.00 0.00 2025-07-23 15:30:00+00 119004320777 5058 4178 1026 100 7e17415bkup1o4p28jq5g4j8mg 558 \N +2150 2025-08-19 15:57:11.64525+00 2025-08-19 15:57:11.645262+00 f t 2025-08-21 15:00:00 COMPLETED clinical Clinica y extraccion 49700.00 11700.00 38000.00 2025-08-21 18:00:00+00 122915340082 6869 5610 1583 68 219hr38m325j4jaibeovu5cqho 287 \N +2667 2025-09-27 17:09:03.956289+00 2025-09-27 17:09:03.956302+00 f t 2025-09-30 09:00:00 COMPLETED clinical pack 6 visitas, inyeccion subcutanea 23000.00 5500.00 17500.00 2025-09-30 12:00:00+00 127179569391 9491 7899 1208 112 2m6baofqs3siesdhh7i2n6bels \N \N +2552 2025-09-18 19:13:44.683052+00 2025-09-18 19:13:44.683061+00 f t 2025-09-18 21:00:00 NO_REPORT telemedicina Control post estudios Se le debe #19.500 a Kate 30000.00 30000.00 19500.00 2025-09-19 00:00:00+00 0 7082 5794 1583 89 f7cr6l5hg1egs6m7qjv2aocq48 8 \N +2423 2025-09-08 20:26:13.447773+00 2025-09-08 20:26:13.447781+00 f t 2025-09-08 19:00:00 COMPLETED telemedicina Control post estudios 19500, le debemos lisadro 30000.00 30000.00 19500.00 2025-09-08 22:00:00+00 B6VRPQ2GVR6LYP3G2GLY0M 7443 6127 1583 1 au7m6cl1lo9qk3sh521g2nat98 106 \N +2472 2025-09-12 15:29:02.378608+00 2025-09-12 15:29:02.378615+00 f t 2025-09-12 15:00:00 COMPLETED clinical Diarrea 55000.00 11000.00 44000.00 2025-09-12 18:00:00+00 125372235833 4334 3609 1583 68 2cbutkn1icf6p536rsfka57dd8 65 \N +2594 2025-09-22 16:40:34.636708+00 2025-09-22 16:40:34.636718+00 f t 2025-09-24 18:30:00 COMPLETED clinical Silvido al respirar de hace unas semanas 46000.00 11000.00 35000.00 2025-09-24 21:30:00+00 127139188656 9126 7557 1583 92 i9ovv202lpd50gthhik127lc9k \N \N +2204 2025-08-22 20:02:38.70466+00 2025-08-22 20:02:38.704667+00 f t 2025-08-25 13:30:00 NO_REPORT clinical Extracción de sangre Rapela hay que transferirle después a anto los $20.000 de la extracción 146000.00 146000.00 0.00 2025-08-25 16:30:00+00 123292180760 7106 5814 114 85 cb2aikjtmj5e17lprq8gv9471k 251 \N +2973 2025-10-22 15:26:09.052084+00 2025-10-22 15:26:09.052093+00 f t 2025-10-22 14:00:00 COMPLETED clinical Vómitos\r\nLas primeras veces con visible cantidad de pelos; en las siguientes veces, el vómito blanco con algo de espuma y hasta sin color.\r\nSe alimenta poco, duerme mucho más de lo habitual 55000.00 11000.00 44000.00 2025-10-22 17:00:00+00 130888399134 510 602 1583 21 k5gft7ekl0hmlm8c08cekvj768 \N 1151 +2938 2025-10-18 21:08:56.209583+00 2025-10-18 21:08:56.209592+00 f t 2025-10-24 17:00:00 COMPLETED clinical vacunacion anual + chequeo 78000.00 21500.00 56500.00 2025-10-24 20:00:00+00 39291549533 11035 9157 1208 99 vv4aen4g94t1aoob2r1tjpv8uk \N 1091 +2905 2025-10-16 16:40:33.119202+00 2025-10-16 16:40:33.119214+00 f t 2025-10-16 18:30:00 COMPLETED clinical Sangrado en las heces en el día de hoy, no manifiesta dolor ni desgano 55000.00 11000.00 44000.00 2025-10-16 21:30:00+00 130170008929 10867 9023 1583 94 tdg8npd9gcii54appsjjfmvlic \N 1043 +3023 2025-10-27 17:14:27.777783+00 2025-10-27 17:14:27.777792+00 f t 2025-10-30 16:00:00 COMPLETED clinical Muestra para perfil completo con orina. 0.00 0.00 0.00 2025-10-30 19:00:00+00 0 11616 9611 1583 100 29vd0tbe63ifq5ghafcrj43d0k \N 1231 +2728 2025-10-02 17:02:28.417141+00 2025-10-02 17:02:28.417151+00 f t 2025-10-02 17:30:00 COMPLETED clinical Eutanasia 125000.00 25000.00 100000.00 2025-10-02 20:30:00+00 128353416354 405 480 1583 1 cee1n2mok52pk0ok07t0gp0i4s \N 796 +2743 2025-10-03 12:41:56.42695+00 2025-10-03 12:41:56.426962+00 f t 2025-10-04 15:30:00 COMPLETED clinical Sextuple Abonar $7000 a la vete, se le dio precio con descuento a la tutora pero se le cobro la sen completa 70000.00 19000.00 51000.00 2025-10-04 18:30:00+00 128441981752 8168 6717 1583 92 n181ri7540kjmpbotfmq8fc9rc \N 810 +3145 2025-11-05 16:42:44.326205+00 2025-11-05 16:42:44.326214+00 f t 2025-11-06 13:30:00 NO_REPORT clinical extraccion de sangre perfil 7 desc. recompra 68000.00 45000.00 23000.00 2025-11-06 16:30:00+00 132600955350 12325 10177 1208 104 rt7osplkjaaj3h4ofnnefr368o \N 1418 +2699 2025-09-30 16:42:45.185793+00 2025-09-30 16:42:45.185802+00 f t 2025-10-02 09:30:00 COMPLETED clinical perfil general completo sin orina 0.00 0.00 0.00 2025-10-02 12:30:00+00 128077733444 9670 8055 1208 100 hkksarc8kun21b3froj31m41ck \N \N +2799 2025-10-07 14:27:53.356605+00 2025-10-07 14:27:53.356616+00 f t 2025-10-07 15:00:00 COMPLETED clinical Teleconsulta post estudios. Se le debe $19.500 a Mara 30000.00 30000.00 0.00 2025-10-07 18:00:00+00 128981528692 8854 7319 1583 92 5lee6tad75ll6eiss1vdhbjn4s \N 891 +3097 2025-11-01 15:52:53.402502+00 2025-11-01 15:52:53.402511+00 f t 2025-11-01 17:00:00 COMPLETED clinical al parecer está con mucho dolor y quiero que lo vea nuevamente la misma doctora que ya lo vio quizás tenga que recetarle algún calmante \N 55000.00 11000.00 44000.00 2025-11-01 20:00:00+00 131481197997 11855 9803 \N 114 pj2je14p9jvut5v8kvimlfcmrk \N 1338 +183 2024-10-30 14:13:09.928+00 2024-10-30 14:13:09.928+00 f t 2024-10-17 09:00:00 NO_REPORT telemedicina Gato de 13 años y hace 5 días obstruido que no hace ni caca ni pis. Ha dejado de comer. Transaccion 90629296968 consulta online con descuento. Abonó el total 21600.00 21600.00 15000.00 2024-10-17 12:00:00+00 154 163 \N 1 9lo7k2mc12ee505m7udbajlsvc \N \N +2202 2025-08-22 19:50:49.284087+00 2025-08-22 19:50:49.284093+00 f t 2025-08-25 13:30:00 COMPLETED telemedicina Consulta para dieta natural Seña: $10.000\r\n Abonarle por la teleconsulta Gorostegui: $44.000 54000.00 54000.00 0.00 2025-08-25 16:30:00+00 0 4848 4007 114 21 6l0nppfefilfsg82heetaqgpkg 250 \N +2997 2025-10-24 15:32:35.456905+00 2025-10-24 15:32:35.456914+00 f t 2025-10-24 17:00:00 COMPLETED clinical Mi perro está viejito, tuvo una convulsión anoche. 55000.00 11000.00 44000.00 2025-10-24 20:00:00+00 131142853986 8869 7334 1583 113 6kpf20t46ehi7ncl08j7kq5btk \N 1190 +2515 2025-09-16 16:19:14.846952+00 2025-09-16 16:19:14.846962+00 f t 2025-09-16 13:30:00 COMPLETED clinical No se puede para, Problemas previos de columna 55000.00 11000.00 44000.00 2025-09-16 16:30:00+00 53874001-44f4-4bed-b097-407a0e 8724 7203 1583 68 l88a7eddsjj1ea0hhh3ang811o 37 \N +2361 2025-09-02 20:21:40.87569+00 2025-09-02 20:21:40.875701+00 t t 2025-09-02 20:00:00 PENDING clinical Diarrea de hace dos dias Debe $1000 de sena, transfirio $10.000 55000.00 10000.00 44000.00 2025-09-02 23:00:00+00 75907962 7820 6434 1583 80 7i9ghjlcl9nlbuq8cikpu48ecs \N \N +2553 2025-09-18 19:30:14.81277+00 2025-09-18 19:30:14.812777+00 f t 2025-09-18 20:30:00 COMPLETED clinical No tiene apetito desde ayer, vomita lo poco que come y a veces vomita con un tono amarillento 55000.00 11000.00 44000.00 2025-09-18 23:30:00+00 126684164892 8879 7341 1208 114 igfenf9uf11m46og8q1vdefmdc 11 \N +2668 2025-09-27 17:09:18.34681+00 2025-09-27 17:09:18.346819+00 f t 2025-10-01 09:00:00 COMPLETED clinical pack 6 visitas, inyeccion subcutanea 23000.00 5500.00 17500.00 2025-10-01 12:00:00+00 127179569391 9491 7899 1208 112 kudmkuuctp6kspemdaues40png \N \N +3043 2025-10-28 18:09:57.834622+00 2025-10-28 18:09:57.834633+00 f t 2025-10-29 11:00:00 COMPLETED clinical A veces vomita. Como mucho pasto. Desanimada. Se levanta y le cuesta caminar. Es una pit Bull. Tiene fuerzas. Pero se lave debil. 46000.00 11000.00 35000.00 2025-10-29 14:00:00+00 131018180679 11745 9712 1583 68 u36emp05sd85du7fjb0rp37f9k \N 1258 +2069 2025-08-13 00:01:12.637344+00 2025-08-13 00:01:12.637355+00 f t 2025-08-14 15:00:00 NO_REPORT clinical Radiografías 72000.00 7000.00 65000.00 2025-08-14 18:00:00+00 122050882944 2144 4184 114 84 fsc4jldpvmeefuvvchm46o7o38 360 \N +2239 2025-08-25 17:25:03.196071+00 2025-08-25 17:25:03.196083+00 f t 2025-09-02 19:00:00 NO_REPORT clinical 95000.00 10000.00 85000.00 2025-09-02 22:00:00+00 123630582076 7278 5972 1208 82 0on5s6ikdg99cfibd461rsku4c 156 \N +3146 2025-11-05 17:05:10.157068+00 2025-11-05 17:05:10.157077+00 f t 2025-11-07 17:00:00 NO_REPORT clinical Está perdiendo demasiado pelo y la piel hirritada. Además empezó a hacer pis en cualquier lado. 46000.00 11000.00 35000.00 2025-11-07 20:00:00+00 132606334428 12422 10255 1208 1 o84a67mvra7sc48pvjo44crbg8 \N 1411 +2906 2025-10-16 17:04:03.635408+00 2025-10-16 17:04:03.635416+00 f t 2025-10-16 15:00:00 COMPLETED clinical ayer la vacunaron con tercera dosis y estaba muy decaída por la noche, temblando. La llevo a la clinica, esta un poco mejor pero sigue algo decaida. 55000.00 11000.00 44000.00 2025-10-16 18:00:00+00 130172464350 10870 9025 1208 88 kga692psvgughmtjn34dsueq70 \N 1044 +2729 2025-10-02 17:05:30.253685+00 2025-10-02 17:05:30.253693+00 f t 2025-10-07 11:00:00 NO_REPORT clinical revision de estudios por posible diabete mellitus Teleconsulta con descuento por recompra 39000.00 4000.00 35000.00 2025-10-07 14:00:00+00 JMQKYZ9QO0EQJ4V82V50P3 7201 5906 1208 98 r13pabkeuevd7pogi8fs6tmi9g \N 797 +2939 2025-10-18 21:13:32.786924+00 2025-10-18 21:13:32.786936+00 f t 2025-10-16 16:00:00 NO_REPORT clinical inseparables comision inseparables 14850.00 14850.00 0.00 2025-10-16 19:00:00+00 129824594295 10863 9021 1208 95 uottipegi9tn44li2pgl820n9o \N 1090 +2800 2025-10-07 16:39:24.638191+00 2025-10-07 16:39:24.638201+00 f t 2025-10-07 16:30:00 NO_REPORT clinical Rdiografia. 95000.00 15000.00 80000.00 2025-10-07 19:30:00+00 Brubaank 10213 8483 1583 84 q7qcffs1vg3g0ggbkjqd92mlhk \N 897 +3024 2025-10-27 17:50:12.475594+00 2025-10-27 17:50:12.475609+00 f t 2025-10-31 17:30:00 NO_REPORT clinical Estudio cardiologico prequirurgico. 107000.00 12000.00 95000.00 2025-10-31 20:30:00+00 71732136 11591 9592 1583 82 18ooo3nker8hkk75rbr03hbq9c \N 1222 +2595 2025-09-22 17:22:17.995243+00 2025-09-22 17:22:17.995255+00 f t 2025-09-25 10:30:00 COMPLETED clinical Otitis 46000.00 11000.00 35000.00 2025-09-25 13:30:00+00 Z6OLMDN3XO1LMXRW9E7RQ5 167 176 1583 88 i9n5nkipk96vutbmpcrc33bap4 \N \N +2638 2025-09-25 16:01:15.002282+00 2025-09-25 16:01:15.002296+00 f t 2025-09-27 11:30:00 NO_REPORT clinical perfil general completo sin orina Se corresponde con el turno del aux nicolas 0.00 0.00 0.00 2025-09-27 14:30:00+00 0V1JXON1DGZL3LDP9Z64EL 9270 7688 1208 100 mpv8ncoblktq5i27jqe4e37lg4 \N \N +2549 2025-09-18 17:12:49.077438+00 2025-09-18 17:12:49.077446+00 f t 2025-09-30 20:30:00 COMPLETED clinical tiene un testiculo muy abultado 46000.00 11000.00 35000.00 2025-09-30 23:30:00+00 126114558463 8869 7334 1208 79 kge0svtfef2bohnbugim7fcvdk \N \N +2868 2025-10-13 15:56:50.691107+00 2025-10-13 15:56:50.691118+00 f t 2025-10-14 14:00:00 COMPLETED clinical Vacunacion anual para 2 felinos 140400.00 27400.00 113000.00 2025-10-14 17:00:00+00 naranjaX 10624 8819 1583 1 memrb6vdo6mm6qaa8dijblnq1c \N 990 +2473 2025-09-12 16:51:51.924359+00 2025-09-12 16:51:51.924366+00 f t 2025-09-13 11:00:00 COMPLETED clinical Consulta post estudios 55000.00 11000.00 44000.00 2025-09-13 14:00:00+00 84469242 8287 6823 1583 80 lm8emu25o5gkftl07qst36ih48 55 \N +3317 2025-11-19 12:59:26.255295+00 2025-11-19 12:59:26.255308+00 f t 2025-11-19 11:00:00 COMPLETED clinical muestra de orina 22700.00 22700.00 0.00 2025-11-19 14:00:00+00 RD06ZO9WV1W0PY85N5GP7X 7443 6127 1208 100 1n9pjg54tsulg02700g76d73cc \N 1665 +3057 2025-10-29 14:51:21.168589+00 2025-10-29 14:51:21.168603+00 f t 2025-10-30 10:00:00 COMPLETED clinical Se rasca y se lastima. 46000.00 11000.00 35000.00 2025-10-30 13:00:00+00 39421319433 47 48 1583 80 rh38hgfot17gtt6qi1icg37hi4 \N 1278 +2875 2025-10-14 00:06:46.810584+00 2025-10-14 00:06:46.810596+00 f t 2025-10-13 19:30:00 COMPLETED clinical ecografía abdominal 78000.00 13000.00 65000.00 2025-10-13 22:30:00+00 30921609009251013 10671 8857 114 90 22pr80qo73oubrjk1phjq4a0gg \N 999 +2974 2025-10-22 17:03:32.070118+00 2025-10-22 17:03:32.070127+00 f t 2025-10-22 14:30:00 COMPLETED clinical tengo una gata con cistitis comencé con ciprofloxacina ABONARLE A MARIA LUISA $44.000, la tutora se confundio y transifirio la totalidad a nosotros 55000.00 11000.00 44000.00 2025-10-22 17:30:00+00 68716845 5479 4489 1208 114 o2qoh2b51s1snl87713qfbp258 \N 1157 +2151 2025-08-19 15:59:36.534446+00 2025-08-19 15:59:36.534453+00 f t 2025-08-19 16:00:00 NO_REPORT clinical Piel irritada despues de baño y corte, decaimiento, costra con sangre de una zona. Come y toma agua con normalidad 50000.00 10000.00 40000.00 2025-08-19 19:00:00+00 bde6d974-32a3-4736-8af2-6961cf 6870 5611 1208 74 4r3j09t104r0gb2ifbccs9v9ag 320 \N +2385 2025-09-04 20:09:49.820433+00 2025-09-04 20:09:49.820441+00 f t 2025-09-05 21:00:00 NO_REPORT clinical Extraccion de puntos Descuento por cantidad de mascotas 82800.00 12800.00 70000.00 2025-09-06 00:00:00+00 cf3dc703-c099-4feb-accb-aa2eca 7997 6589 1583 70 eui3q2u6hicvr68qushsr7o3bg 126 \N +2700 2025-09-30 16:43:59.732417+00 2025-09-30 16:43:59.732426+00 f t 2025-10-02 08:00:00 COMPLETED clinical perfil general completo sin orina 75400.00 52400.00 23000.00 2025-10-02 11:00:00+00 128077733444 9670 8055 1208 104 3cgp46turs3p4b0e2o8i9rkfv8 \N \N +2820 2025-10-08 17:40:48.385618+00 2025-10-08 17:40:48.385627+00 f t 2025-10-11 08:30:00 COMPLETED clinical extraccion rapela perfil 7, tsh y t4 libre derivado rapela 0.00 0.00 0.00 2025-10-11 11:30:00+00 128573563569 10281 8533 1208 100 kqm0sp2cmbe0ijk5sbb702phbk \N 920 +1400 2025-06-06 20:25:35.240358+00 2025-06-06 20:25:35.240366+00 f t 2025-06-11 09:30:00 COMPLETED vaccination Vacunación antirrábica no se cobra el insumo ya que no se pudo dar la vacuna en la visita anterior por el temperamento de la px 42000.00 9500.00 32500.00 2025-06-11 12:30:00+00 11240307009250606 2211 2020 1026 79 5885b3auj8bjlfepjcu9au6o98 884 \N +1334 2025-05-30 22:26:06.118018+00 2025-05-30 22:26:06.118027+00 f t 2025-05-30 21:30:00 NO_REPORT clinical Consulta por que termino el tratamiento con amoxicilina y prednisolona, y tuvo cambio de comportamiento donde se lame en repetidas ocasiones 46000.00 9500.00 36500.00 2025-05-31 00:30:00+00 112887348355 811 922 113 70 1375upu9sufiehjblso2n4i33k \N \N +333 2024-12-10 14:37:38.41+00 2024-12-10 14:37:38.41+00 f t 2024-08-16 09:00:00 COMPLETED clinical Vacunación Transaccion 84816935309 0.00 0.00 0.00 2024-08-16 12:00:00+00 67 289 114 1 n2bhmcr6rn508a9kc204nvqvkc \N \N +1680 2025-07-07 17:10:31.130055+00 2025-07-07 17:10:31.130065+00 f t 2025-07-11 16:00:00 CANCELLED clinical Le cuesta levantarse con sus patas traseras Se cancela porque tuvo que ir a urgencias con la mascota 42000.00 9500.00 32500.00 2025-07-11 19:00:00+00 37942445606 4098 3417 114 96 8kv843i71al17b6hlr3g45keuc \N \N +2036 2025-08-09 17:09:49.875003+00 2025-08-09 17:09:49.875012+00 f t 2025-09-03 19:30:00 COMPLETED clinical triple felina detallado el costo en el otro turno 0.00 0.00 0.00 2025-09-03 22:30:00+00 121129170013 6191 5056 1208 1 tddklrof24bbpim7698tmumsj8 \N \N +3288 2025-11-16 17:30:03.827384+00 2025-11-16 17:30:03.827399+00 f t 2025-11-17 17:30:00 NO_REPORT clinical vacunacion anual para dos desc. multimascota 140400.00 27400.00 113000.00 2025-11-17 20:30:00+00 2021089487 13367 11011 1208 96 ipq5b3nod596o2466u9027feco \N 1611 +2554 2025-09-18 20:26:18.409669+00 2025-09-18 20:26:18.409676+00 f t 2025-09-20 09:00:00 NO_REPORT clinical Radiografia Boca bajo sedacion Se abono la consulta de la sedacion mas los raoys 121500.00 12500.00 65000.00 2025-09-20 12:00:00+00 126691850812 6788 5547 1583 84 2m076nmil0dmlt1m5l80om94jo \N \N +2240 2025-08-25 19:05:23.457681+00 2025-08-25 19:05:23.45769+00 f t 2025-08-27 16:00:00 COMPLETED clinical Resfrio, pero me gustaría tener otra opinión ya que cuando la llevo a la veterinaria se estreza mucho y me gustaría que la atiendan en casa. Tiene problemas en su hígado, tuvo y tiene cálculos fue operada, lo último me la diagnosticaron con Cushing pero después los valores de laboratorio mostraron otros valores 42000.00 9500.00 32500.00 2025-08-27 19:00:00+00 70254656 7284 5977 1208 1 fpen5bncdo9mn8lfbh6qgahq60 221 \N +2516 2025-09-16 17:17:52.227536+00 2025-09-16 17:17:52.227543+00 f t 2025-09-22 17:00:00 COMPLETED clinical vacunacino anual y desparasitacion int + ext gato +5k Vacuna anual $78.000\r\nInterna + Externa - Gato - más de 5kg $33.000 111000.00 28000.00 83000.00 2025-09-22 20:00:00+00 126405590006 8740 7219 1583 92 sp7298ce9otf03ikjol2lqaccc 2 \N +2070 2025-08-13 00:07:24.097413+00 2025-08-13 00:07:24.097421+00 f t 2025-08-15 18:30:00 COMPLETED vaccination vacunación anual y chequeo de ojos 72000.00 19000.00 53000.00 2025-08-15 21:30:00+00 38424868547 3789 3213 114 1 qc6e450o9mk7g5jelajjjrb9dk 351 \N +1855 2025-07-23 00:13:09.811256+00 2025-07-23 00:13:09.811267+00 f t 2025-07-24 08:00:00 COMPLETED clinical Perfil general completo con orina + Relacion proteina/creatinina+ Traslado PGC /o :41.000\r\nTM: 12000\r\nRelacion P/C:$3200x2: 59400.00 59400.00 0.00 2025-07-24 11:00:00+00 ZOKV87948M7146OJ2PEYDX 5021 4145 113 100 a1tajsmn0ahno9anrpaf95rd1c 554 \N +2682 2025-09-29 14:42:21.817411+00 2025-09-29 14:42:21.817425+00 f t 2025-09-29 12:30:00 COMPLETED clinical Vomitos hasce 2 dias La tutora abono el total en dos pagos, este el el comprobante de $46.000 127374399057 y 127374673729 de $9.000\r\nSe debe $44.000 a Castro 55000.00 55000.00 44000.00 2025-09-29 15:30:00+00 127374673729 9568 7962 1583 113 qg0aoamfvdme53ptqp6e06rlnc \N \N +2152 2025-08-19 16:16:10.62875+00 2025-08-19 16:16:10.628758+00 f t 2025-08-20 12:30:00 COMPLETED clinical extraccion de puntos 37800.00 5300.00 32500.00 2025-08-20 15:30:00+00 122386111353 5987 4887 1208 88 fdq5c6257umdek2j8dvohv956s 302 \N +1737 2025-07-11 23:56:20.844395+00 2025-07-11 23:56:20.844402+00 f t 2025-07-15 10:30:00 NO_REPORT clinical Control clinico por inflamacion de encias 42000.00 9500.00 32500.00 2025-07-15 13:30:00+00 118290313752 4389 3653 113 96 oqe95ufahavmt1p6oefk4b40ec 625 \N +2607 2025-09-23 15:42:29.142047+00 2025-09-23 15:42:29.142056+00 f t 2025-10-03 12:00:00 NO_REPORT clinical retiro de orina pago estudio + seña de ecografia 20200.00 20200.00 0.00 2025-10-03 15:00:00+00 46YGOW9M8WR8LVPQ9EXD8J 7443 6126 1208 100 gkb9isur3lvnunmio48gfnqabs \N \N +2801 2025-10-07 16:40:59.125424+00 2025-10-07 16:40:59.125437+00 f t 2025-10-10 11:00:00 NO_REPORT clinical me derivaron a un especialista, para tratamiento abonar al vete los $50.000 60000.00 60000.00 50000.00 2025-10-10 14:00:00+00 100000004397517 10203 8472 1208 115 gsap6vo3h1ekjiuc25p63po7fo \N 889 +2474 2025-09-12 17:39:39.033195+00 2025-09-12 17:39:39.033201+00 f t 2025-09-12 18:00:00 COMPLETED clinical estreñimiento ambos gatitos igual 99000.00 11000.00 88000.00 2025-09-12 21:00:00+00 125387855531 8524 7021 1208 1 un5rbo1h7ae6i8rknkv9odd144 62 \N +2669 2025-09-27 17:09:34.745437+00 2025-09-27 17:09:34.745449+00 f t 2025-10-02 08:00:00 COMPLETED clinical pack 6 visitas, inyeccion subcutanea 23000.00 5500.00 17500.00 2025-10-02 11:00:00+00 127179569391 9491 7899 1208 112 va4astjclqqvuv12ta58ajg7uc \N \N +2940 2025-10-19 14:16:32.664389+00 2025-10-19 14:16:32.664399+00 f t 2025-10-20 20:30:00 COMPLETED clinical Estornudos, mocos y Lagrimeos \N 46000.00 11000.00 35000.00 2025-10-20 23:30:00+00 76V4MRZZ7LLQ657Q8NDEZOL 10895 9039 \N 68 ru0s5l2q0kikafbpn1hroau4ao \N 1095 +2975 2025-10-22 17:05:53.161673+00 2025-10-22 17:05:53.161686+00 f t 2025-10-28 10:00:00 NO_REPORT clinical Ecografia abdominal. 78000.00 13000.00 65000.00 2025-10-28 13:00:00+00 68724145 10716 8899 1583 5 ju755rg45vvmn3t1l5ep2lnb4o \N 1155 +2386 2025-09-04 20:10:25.061514+00 2025-09-04 20:10:25.06152+00 f t 2025-09-05 21:00:00 NO_REPORT clinical Diarrea Descuento por cantidad de mascotas. Monto total cargado en el otro turno 0.00 0.00 0.00 2025-09-06 00:00:00+00 cf3dc703-c099-4feb-accb-aa2eca 7997 6587 1583 70 e9q6kie87p4mp654rc5np0vm7g \N \N +2876 2025-10-14 00:10:26.987805+00 2025-10-14 00:10:26.987815+00 f t 2025-10-13 20:30:00 COMPLETED clinical Ecografía Abdominal \N 78000.00 13000.00 65000.00 2025-10-13 23:30:00+00 129242913523 4604 3826 \N 90 6bhq0vkvc7dgivo9ahti1b1mtg \N 1000 +3047 2025-10-28 20:03:56.798001+00 2025-10-28 20:03:56.79801+00 f t 2025-10-28 19:00:00 COMPLETED clinical Diarrea y vomito con sangre 78000.00 13000.00 65000.00 2025-10-28 22:00:00+00 Brubaank 11398 9590 1583 90 2p5udut1sd8qpd95ut0d97cdo8 \N 1260 +2639 2025-09-25 16:22:07.237034+00 2025-09-25 16:22:07.237043+00 f t 2025-09-25 21:00:00 COMPLETED clinical ecografia abdominal por posible piometra 78000.00 13000.00 65000.00 2025-09-26 00:00:00+00 30151584010250925 9282 7700 1208 90 2m56rr9o252tnm9h49knsp5du0 \N \N +2998 2025-10-24 17:54:06.080615+00 2025-10-24 17:54:06.080628+00 f t 2025-10-29 09:00:00 COMPLETED clinical extraccion de sangre perfil prequirurgico descuento recompra 89460.00 48960.00 40500.00 2025-10-29 12:00:00+00 1LMP68NKVMDM7E0452R7OEV 6905 5647 1208 1 eabkvidcvqip7pkq8g4jv1co80 \N 1162 +3025 2025-10-27 18:26:47.516109+00 2025-10-27 18:26:47.516122+00 f t 2025-10-27 20:00:00 COMPLETED clinical Consulta general, respira raro hace dias 55000.00 11000.00 44000.00 2025-10-27 23:00:00+00 130901893063 541 9621 1583 80 g4ad0t53hofd2talfh0ngckol4 \N 1232 +2907 2025-10-16 18:04:01.651923+00 2025-10-16 18:04:01.651933+00 f t 2025-10-24 20:30:00 COMPLETED clinical Tiene como caspa y necesito le corten uñas. 53700.00 13200.00 40500.00 2025-10-24 23:30:00+00 129601947279 10832 8994 1208 70 fdajgtrggodbqh3du4mfa3069o \N 1036 +2842 2025-10-10 17:00:02.028785+00 2025-10-10 17:00:02.028798+00 f t 2025-10-10 19:00:00 COMPLETED clinical Consulta general. 55000.00 11000.00 44000.00 2025-10-10 22:00:00+00 129419249962 10435 8667 1583 114 85ehks7st9aab8vb947iid3ba0 \N 954 +3078 2025-10-30 22:57:54.690541+00 2025-10-30 22:57:54.690552+00 f t 2025-10-31 10:00:00 COMPLETED clinical perfil 7 0.00 0.00 0.00 2025-10-31 13:00:00+00 131265748825 11977 9897 1208 100 8ae8b8rvd1g0nlpao55r985uqk \N 1309 +2670 2025-09-27 17:09:48.824156+00 2025-09-27 17:09:48.824167+00 f t 2025-10-03 09:00:00 COMPLETED clinical pack 6 visitas, inyeccion subcutanea ultima visita bonificada 0.00 0.00 0.00 2025-10-03 12:00:00+00 127179569391 9491 7899 1208 112 c0tem50roumff9uorl59sukh7k \N \N +2153 2025-08-19 17:30:40.47803+00 2025-08-19 17:30:40.478042+00 f t 2025-08-20 22:00:00 COMPLETED clinical 78000.00 13000.00 65000.00 2025-08-21 01:00:00+00 38510383636 6845 5589 1208 90 lf7clgppc700027v6jfkaur1rg 293 \N +2387 2025-09-04 20:10:54.35866+00 2025-09-04 20:10:54.358667+00 t t 2025-09-05 21:00:00 PENDING clinical Diarrea Descuento por cantidad de mascotas 82800.00 12800.00 70000.00 2025-09-06 00:00:00+00 cf3dc703-c099-4feb-accb-aa2eca 7997 6587 1583 70 akqbnikjbmjm5ododpv4lqhjsc \N \N +2475 2025-09-12 17:40:12.83853+00 2025-09-12 17:40:12.838536+00 f t 2025-09-12 18:30:00 COMPLETED clinical todo detallado en el otro turno, descuento por multimascota 0.00 0.00 0.00 2025-09-12 21:30:00+00 125387855531 8524 7021 1208 1 clkjg36u8gq6e9h1r9e5778ltc \N \N +2814 2025-10-08 15:15:25.991086+00 2025-10-08 15:15:25.991096+00 f t 2025-10-23 19:30:00 COMPLETED clinical vacunacion anual 78000.00 21500.00 56500.00 2025-10-23 22:30:00+00 128554159745 8854 7319 1208 92 cpvknlrhquar2rh98i5b5h7j58 \N 915 +2071 2025-08-13 00:15:38.729718+00 2025-08-13 00:15:38.729727+00 f t 2025-09-11 18:30:00 COMPLETED clinical Endicronología 54900.00 4900.00 50000.00 2025-09-11 21:30:00+00 \N 6392 5199 114 98 72jkvv2pk4fc6mgbrokl17uhf4 72 \N +2976 2025-10-22 18:02:18.527188+00 2025-10-22 18:02:18.5272+00 f t 2025-10-24 17:30:00 COMPLETED clinical resultado de los estudios y Peke ha tenido una involucion muy notable pese a continuar medicado desc recompra 41400.00 6400.00 35000.00 2025-10-24 20:30:00+00 JMQKYZ9QQWP156P69V50P3 10243 8504 1208 1 nm81hv7a0m04f69qtl7qm4nc00 \N 1158 +79 2024-10-30 14:13:08.975+00 2024-10-30 14:13:08.975+00 f t 2024-08-21 20:30:00 NO_REPORT Clinica Consulta clinica gatita Transaccion 85408611425 Cliente abonó 100% 35000.00 35000.00 20000.00 2024-08-21 23:30:00+00 76 78 \N 1 trj6ho438vltdnmv659o9gaqvc \N \N +2640 2025-09-25 16:27:58.032008+00 2025-09-25 16:27:58.032018+00 f t 2025-09-29 17:30:00 COMPLETED clinical chequeo de estudios descuento recompra 35100.00 5100.00 30000.00 2025-09-29 20:30:00+00 92961849 2732 2418 1208 98 rb5avknrsap4tkn1vs6gek51pk \N \N +3086 2025-10-31 14:52:43.838455+00 2025-10-31 14:52:43.838465+00 f t 2025-11-04 18:00:00 NO_REPORT clinical Ecografia abdominal. 78000.00 13000.00 65000.00 2025-11-04 21:00:00+00 naranjaX 11855 9803 1583 90 2a8rt3vcs2r9f77nookk4bfg3g \N 1320 +2281 2025-08-28 18:35:56.151799+00 2025-08-28 18:35:56.151809+00 f t 2025-08-29 17:00:00 COMPLETED vaccination Vacunacion anual descuento por mas de 1 animal -$7.200 64800.00 11800.00 53000.00 2025-08-29 20:00:00+00 R7ZG0QNDJZ7GK3DENEXYPO 7443 6127 1583 1 5t95a4li34pu9djrt66pqfpk50 200 \N +915 2025-03-31 13:22:14.494185+00 2025-03-31 13:22:14.494192+00 f t 2025-04-01 08:30:00 COMPLETED clinical Devolución de resultados 25000.00 25000.00 16000.00 2025-04-01 11:30:00+00 \N 541 637 111 91 18kqhsbt2dd2aal3a75a1eok2o \N \N +2680 2025-09-29 13:03:19.480396+00 2025-09-29 13:03:19.480409+00 f t 2025-09-29 15:00:00 COMPLETED clinical Cosnulta general 55000.00 11000.00 44000.00 2025-09-29 18:00:00+00 127363186453 5342 4386 1583 68 e3if4jvb82qa3pmu7dv7hssueo \N \N +2941 2025-10-19 14:24:13.114478+00 2025-10-19 14:24:13.114487+00 f t 2025-10-19 14:00:00 COMPLETED clinical Diarrea con sangre \N 55000.00 11000.00 44000.00 2025-10-19 17:00:00+00 130526141910 10927 9067 \N 1 hup8k9gedvoj3ncv7488bqmjkg \N 1096 +2596 2025-09-22 17:56:48.947104+00 2025-09-22 17:56:48.947113+00 f t 2025-09-22 16:00:00 NO_REPORT clinical Consulta post estudios sele debe $19.500 a la vete 30000.00 30000.00 19500.00 2025-09-22 19:00:00+00 ORD6LEN87VVOWEPP2M1Y30 7443 6127 1583 80 gc6pno7campuaklitene7qt83g \N \N +2802 2025-10-07 19:24:18.587375+00 2025-10-07 19:24:18.587386+00 f t 2025-10-09 09:30:00 COMPLETED clinical Ecograafia abdominal 82000.00 12000.00 70000.00 2025-10-09 12:30:00+00 Santander 10219 8485 1583 103 fchcb9o8jb5qp185k76upf6i2k \N 898 +2241 2025-08-25 19:11:16.625651+00 2025-08-25 19:11:16.625661+00 f t 2025-08-26 11:30:00 COMPLETED clinical consulta cardiologica 95000.00 10000.00 85000.00 2025-08-26 14:30:00+00 123105895681 7055 5771 1208 82 4v87ks6abqmlfpdhejbuabj6a8 238 \N +2424 2025-09-08 23:23:48.906337+00 2025-09-08 23:23:48.906346+00 f t 2025-09-09 10:00:00 COMPLETED clinical Diarrea y vómitos 46000.00 11000.00 35000.00 2025-09-09 13:00:00+00 38779289476 8210 6752 114 68 mjtlscur8ofmd3a78psvncqf1g 102 \N +3048 2025-10-28 20:25:56.204184+00 2025-10-28 20:25:56.204193+00 f t 2025-11-12 09:00:00 NO_REPORT clinical perfil 7 + tigliceridos + t4 total + AOC Y UPC 0.00 0.00 0.00 2025-11-12 12:00:00+00 JMQKYZ9QQW338EYP9V50P3 11720 9690 1208 100 dugg81oej93h9s05nh4nqn4uso \N 1263 +2517 2025-09-16 17:44:35.046986+00 2025-09-16 17:44:35.046993+00 f t 2025-09-17 18:30:00 COMPLETED clinical vomitos desde ayer 55000.00 11000.00 44000.00 2025-09-17 21:30:00+00 a89c6986-edcb-477a-87b3-5a934f 8743 7220 1583 1 lqvggas81fj3j6tsqlrd54dsa8 22 \N +2731 2025-10-02 18:38:27.989673+00 2025-10-02 18:38:27.989685+00 f t 2025-10-02 21:00:00 COMPLETED clinical extraccion de puntos post cirugia. desc. recompra 41400.00 6400.00 35000.00 2025-10-03 00:00:00+00 128362602732 8958 7414 1208 70 e0c4o7moagmbklq7944vdco2g8 \N 798 +3067 2025-10-30 14:57:58.284545+00 2025-10-30 14:57:58.284553+00 f t 2025-10-30 18:00:00 COMPLETED clinical La adopte ayer , y se queda en el sillon , no quiere comer, hoy hizo pis y caca bien. 55000.00 11000.00 44000.00 2025-10-30 21:00:00+00 131759609216 11946 9871 1208 1 bu4sntfvlcfdct6bpllirgu990 \N 1296 +2701 2025-09-30 17:09:15.449974+00 2025-09-30 17:09:15.449983+00 f t 2025-10-07 10:00:00 COMPLETED clinical control cardiologico 107000.00 12000.00 95000.00 2025-10-07 13:00:00+00 D4RO172VEGPMYMDDNKJ3QE 7528 6192 1208 82 98tu7b1cc47qqpbvg87eljqjug \N \N +2999 2025-10-24 17:56:15.934045+00 2025-10-24 17:56:15.934054+00 f t 2025-10-29 10:30:00 COMPLETED clinical extraccion de sangre perfil prequirurgico 0.00 0.00 0.00 2025-10-29 13:30:00+00 1LMP68NKVMDM7E0452R7OEV 6905 5647 1208 100 hn096s36voc4a1o21an51er18k \N 1191 +2877 2025-10-14 00:17:41.583974+00 2025-10-14 00:17:41.583985+00 f t 2025-10-20 15:00:00 COMPLETED clinical Vacunación Anual 78000.00 21500.00 56500.00 2025-10-20 18:00:00+00 JMQKYZ9QQV8YWE0V2V50P3 10672 8858 1208 113 q4nsor4dafvank9cbihdnlo9pg \N 1001 +182 2024-10-30 14:13:09.923+00 2024-10-30 14:13:09.923+00 f t 2024-10-17 09:00:00 NO_REPORT Clinica Perro . Tiene reacción alérgica y las patas se lastimo al mordisquearse. En el paseo pienso que por el pasto largo. Ya viene hace rato Transaccion 88377632532 41600.00 15600.00 26000.00 2024-10-17 12:00:00+00 157 166 114 1 gj3u2r1dtnvu88kaod8scmdu48 \N \N +2761 2025-10-04 15:39:19.706353+00 2025-10-04 15:39:19.706362+00 f t 2025-10-08 10:00:00 COMPLETED clinical extraccion de sangre perfil geronte felino. 128023174769 comprobante con $46.710\r\ndescuento recompra\r\nSe realiza la extraccion con nicolas- Por los tanto no es $40500, sino mas bien $23.000- Ganancia para amar de 17.500 187210.00 146710.00 23000.00 2025-10-08 13:00:00+00 1885810915 9861 8150 1208 112 os6hdmftinllb7sd61sjqli68s \N 841 +3289 2025-11-16 19:25:36.145444+00 2025-11-16 19:25:36.145452+00 f t 2025-11-21 19:00:00 NO_REPORT clinical Vacunación anual \N 78000.00 21500.00 56500.00 2025-11-21 22:00:00+00 0V1JXON1LDOLJRJPNZ64EL 13451 11072 \N 88 loncdukbu58l6uou2t8j335k4c \N 1623 +2555 2025-09-18 20:27:32.470244+00 2025-09-18 20:27:32.470255+00 f t 2025-09-20 09:00:00 COMPLETED clinical Sedacion para radiografia de boca 0.00 0.00 44000.00 2025-09-20 12:00:00+00 126691850812 6788 5547 1583 70 aht06klauls3pjrj407jgva85g \N \N +2216 2025-08-23 18:16:28.24581+00 2025-08-23 18:16:28.245821+00 f t 2025-08-25 16:00:00 COMPLETED clinical perfil general completo + t4 total Los $14.500 de t4 total, comprobante: 123430190700 88700.00 65700.00 23000.00 2025-08-25 19:00:00+00 122889657069 7131 5835 1208 112 1loqef8pos461f1oegq9d1g9ug 248 \N +2518 2025-09-16 19:35:13.49796+00 2025-09-16 19:35:13.497968+00 f t 2025-09-19 10:00:00 COMPLETED clinical extraccion precx descuento recompra, pago junto con cardiologico 89460.00 48960.00 40500.00 2025-09-19 13:00:00+00 126423511254 264 308 1208 68 0a6gep6m7io1n3ht02nm1a1a4c 5 \N +2702 2025-09-30 17:27:57.624189+00 2025-09-30 17:27:57.624204+00 f t 2025-10-03 16:00:00 NO_REPORT clinical Soplo El doc grego un adicional por la distancia 137000.00 12000.00 125000.00 2025-10-03 19:00:00+00 128083857380 9677 8062 1583 82 6s0aohl9smg52ilfpj0cf0aik4 \N \N +2942 2025-10-19 17:20:31.847625+00 2025-10-19 17:20:31.847634+00 f t 2025-10-19 14:30:00 COMPLETED clinical Picazon o dolor en pata derecha trasera ( almohadón) \N 55000.00 11000.00 44000.00 2025-10-19 17:30:00+00 129965369415 11081 9193 \N 88 ib3lap2bl1agvr8bnf2dv865us \N 1099 +2425 2025-09-08 23:26:18.387775+00 2025-09-08 23:26:18.387783+00 f t 2025-09-12 09:00:00 COMPLETED clinical Coproparasitologico 24200.00 24200.00 0.00 2025-09-12 12:00:00+00 124865622801 6545 5341 114 100 ejocsq9ulsc2hq54k8r0skef3o 69 \N +2362 2025-09-02 20:55:34.63192+00 2025-09-02 20:55:34.631931+00 f t 2025-09-03 09:00:00 NO_REPORT clinical Extraccion para perfil 7 48500.00 26500.00 20000.00 2025-09-03 12:00:00+00 124627976116 7829 6442 1583 111 9stfs9slim1baateec56516h4c 153 \N +2154 2025-08-19 17:42:23.848059+00 2025-08-19 17:42:23.850585+00 f t 2025-08-20 09:00:00 NO_REPORT clinical repetimos para hemograma 0.00 0.00 0.00 2025-08-20 12:00:00+00 \N 6290 5128 1208 111 eqmbsfqmtb01qkk69r1jdm3h2c \N \N +2843 2025-10-10 23:06:26.706388+00 2025-10-10 23:06:26.706396+00 f t 2025-10-11 14:30:00 COMPLETED clinical Revisión de tratamiento de los ojos \N 55000.00 11000.00 44000.00 2025-10-11 17:30:00+00 128862179659 10429 8661 \N 88 4bpbp3ea9bb6eursfj3ik86lb8 \N 956 +2072 2025-08-13 00:20:49.820657+00 2025-08-13 00:20:49.820665+00 f t 2025-08-12 19:30:00 COMPLETED clinical Recaida de tratamiento, dejo de alimentarse 50000.00 10000.00 40000.00 2025-08-12 22:30:00+00 \N 6179 5045 114 92 4j0vef5vagfotokd0lm9r79pjc 374 \N +3108 2025-11-03 13:22:28.478862+00 2025-11-03 13:22:28.478872+00 f t 2025-11-05 18:30:00 COMPLETED clinical Vacunacion anual 78000.00 21500.00 56500.00 2025-11-05 21:30:00+00 131700184695 12237 10106 1583 70 a1p024n6lufd2g9fuker8ok0lc \N 1362 +2388 2025-09-04 20:36:08.614809+00 2025-09-04 20:36:08.614818+00 f t 2025-09-08 10:00:00 NO_REPORT clinical 3 muestras de extraccion post dexa 0.00 0.00 0.00 2025-09-08 13:00:00+00 0 5021 4145 1583 100 9njsckgsmap9n03t8udljg83q4 \N \N +1479 2025-06-15 20:04:49.704743+00 2025-06-15 20:04:49.704753+00 f t 2025-06-16 17:00:00 COMPLETED clinical Después de dos meses de su castración toma muchísima agua y orina demasiado 50000.00 10000.00 40000.00 2025-06-16 20:00:00+00 64996865 2732 2418 114 91 t7hqor0vh9evj4qa8lc5e679k8 846 \N +596 2025-02-05 23:30:12.17734+00 2025-02-05 23:30:12.17735+00 f t 2025-02-05 19:30:00 COMPLETED clinical Lesion en el cuello 41600.00 8600.00 33000.00 2025-02-05 22:30:00+00 101415342222 421 501 114 1 gr15a4cbv4ckkfs6rvk1k3f89s \N \N +3079 2025-10-30 23:32:04.609481+00 2025-10-30 23:32:04.609494+00 f t 2025-11-10 11:00:00 NO_REPORT clinical Sesion de fisio 1/4 Descuento or pack 4 visitas -$26.400 237600.00 17600.00 220000.00 2025-11-10 14:00:00+00 131296118451 9641 8031 113 67 h9dsvevubn9u7qaq69qcq23hh8 \N 1310 +2556 2025-09-18 21:26:44.581013+00 2025-09-18 21:26:44.581021+00 f t 2025-09-23 14:00:00 NO_REPORT clinical Radriografia 80000.00 15000.00 65000.00 2025-09-23 17:00:00+00 126143878587 8716 7196 1583 84 u7r9hkk76jvroi5qdignoqiim0 \N \N +2217 2025-08-23 18:17:08.330463+00 2025-08-23 18:17:08.33047+00 f t 2025-08-25 16:00:00 NO_REPORT clinical t4 total + perfil general 0.00 0.00 0.00 2025-08-25 19:00:00+00 123430190700 7131 5835 1208 100 1ncho2tt9eugj4v7deo4o8l4sc \N \N +3290 2025-11-16 19:30:49.915817+00 2025-11-16 19:30:49.915828+00 f t 2025-11-19 16:00:00 COMPLETED clinical Vacunación anual \N 78000.00 21500.00 56500.00 2025-11-19 19:00:00+00 133469985133 13437 11059 \N 88 losetnr5ak8djudgq6j1cv2utg \N 1622 +2803 2025-10-07 19:32:47.466743+00 2025-10-07 19:32:47.466752+00 f t 2025-10-07 16:30:00 COMPLETED clinical Retiro Muetra de sangre Perfil 7 con glucosa Perfil 7 $25.000\r\nGlucosa $3.500\r\ntraslado $13.200\r\ntotal $41.700\r\nLa extraccion se l ahizo el vete en el dom 41700.00 41700.00 0.00 2025-10-07 19:30:00+00 79006915 10193 8460 1583 100 35g621ahfn0mivps3blh8ar97c \N 899 +2711 2025-10-01 14:05:30.868269+00 2025-10-01 14:05:30.868283+00 f t 2025-10-01 20:00:00 NO_REPORT clinical Diarrea y vómitos. 55000.00 11000.00 44000.00 2025-10-01 23:00:00+00 127626990697 9750 8124 1208 70 v5o2g6u9tqrk5h6gpgh8l56908 \N 773 +2791 2025-10-06 20:09:01.38582+00 2025-10-06 20:09:01.385829+00 f t 2025-10-09 19:00:00 COMPLETED clinical Control clinico y limpieza de oidos, aplicacion atrosan Paack 3 visitas 0.00 0.00 0.00 2025-10-09 22:00:00+00 pack3visitas 123 128 1583 1 d13372jnrisoe206q5c5rbmkv0 \N 879 +2878 2025-10-14 15:13:54.956926+00 2025-10-14 15:13:54.956934+00 f t 2025-10-14 19:00:00 NO_REPORT clinical continua con diarrea. 55000.00 11000.00 44000.00 2025-10-14 22:00:00+00 129888577558 3692 3134 1208 74 7j0qj854brfn6cion0kammviv0 \N 1005 +3087 2025-10-31 14:54:46.74879+00 2025-10-31 14:54:46.748798+00 f t 2025-11-08 08:30:00 COMPLETED clinical Rayos x2. 80000.00 15000.00 65000.00 2025-11-08 11:30:00+00 naranjaX 11855 9803 1583 84 dthut9qluhuj7c39j9tj3gdfno \N 1321 +2732 2025-10-02 18:56:14.72327+00 2025-10-02 18:56:14.723278+00 f t 2025-10-15 18:30:00 COMPLETED clinical vacunacion anual. desc. recompra 70200.00 13700.00 56500.00 2025-10-15 21:30:00+00 127798277531 745 869 1208 91 es20nj8spfsb42egvjjdl3c30k \N 799 +3000 2025-10-24 20:40:05.205104+00 2025-10-24 20:40:05.20512+00 f t 2025-10-25 08:00:00 COMPLETED clinical perfil general completo sin orina + pcr erlichia abono con link de pago 97200.00 97200.00 0.00 2025-10-25 11:00:00+00 130591824969 11035 9157 1208 100 fi5v2fsvh6jnjcavb5dcttptq8 \N 1193 +2476 2025-09-12 18:22:20.324228+00 2025-09-12 18:22:20.324235+00 f t 2025-09-15 18:00:00 COMPLETED clinical eco abd paga en efectivo 68000.00 13000.00 55000.00 2025-09-15 21:00:00+00 11136321009250912 8385 6907 1208 90 0ufk7i12fqt4hokdgabok07ah0 47 \N +2977 2025-10-22 23:08:59.119842+00 2025-10-22 23:08:59.119851+00 f t 2025-10-28 14:00:00 NO_REPORT clinical 2 placas para Titino y 2 para Tito desc. recompra 144000.00 14000.00 130000.00 2025-10-28 17:00:00+00 130347340051 4176 3479 1208 84 fr467oohhjscpq449irbm4j48o \N 1159 +2909 2025-10-16 19:07:09.996679+00 2025-10-16 19:07:09.996688+00 f t 2025-10-17 18:00:00 COMPLETED clinical Extraccion de asngre perfil 7 sin glucosa+ PCR vif-vilef + pcr mycoplasma 0.00 0.00 0.00 2025-10-17 21:00:00+00 30255737017251016 10880 9030 1208 100 f6dt4dn71hik6spjlk8ptrqee8 \N 1048 +3068 2025-10-30 15:06:26.563532+00 2025-10-30 15:06:26.563541+00 f t 2025-10-30 14:00:00 NO_REPORT clinical No puede hacer pis, tiene estudios hechos 55000.00 11000.00 44000.00 2025-10-30 17:00:00+00 131832221744 11966 9884 1583 74 27uljtrcij193p5o7a9g50bcdk \N 1301 +2282 2025-08-28 18:37:15.744359+00 2025-08-28 18:37:15.744366+00 f t 2025-08-29 17:00:00 COMPLETED vaccination Vacunacion anual descuento por mas de 1 animal -$7.200 64800.00 11800.00 53000.00 2025-08-29 20:00:00+00 R7ZG0QNDJZ7GK3DENEXYPO 7443 6125 1583 1 f6qpndh75fuj5qf35h3v0ph4ec 199 \N +3026 2025-10-27 18:35:36.830466+00 2025-10-27 18:35:36.830475+00 f t 2025-11-04 10:30:00 NO_REPORT clinical Vacunación anual y dos desparasitaciones int y ext para 15 y 25kg $75.500 la desparasitacion 153500.00 36500.00 117000.00 2025-11-04 13:30:00+00 71759526 11591 9592 1583 68 qnsb1ib905paa2o3gjurktgs40 \N 1233 +153 2024-10-30 14:13:09.662+00 2024-10-30 14:13:09.662+00 f t 2024-09-30 19:00:00 COMPLETED Urgencias Gato que presenta una placa de alopecia, tiene pulgas desde hace meses, aproximadamente lleva un año recibiendo pipeta. Transaccion 88946872337 49600.00 18600.00 31000.00 2024-09-30 22:00:00+00 135 142 114 2 eanl9dhnqpsf4adlod10feq1lc \N \N +3109 2025-11-03 14:00:15.815196+00 2025-11-03 14:00:15.815205+00 f t 2025-11-07 17:00:00 NO_REPORT clinical consulta cardiologica de control. 120000.00 10000.00 110000.00 2025-11-07 20:00:00+00 131711023615 6885 6007 1583 82 kdhrh29u5v04tkklnv2ir8rec0 \N 1367 +2641 2025-09-25 16:38:36.89678+00 2025-09-25 16:38:36.896793+00 f t 2025-09-27 15:00:00 COMPLETED clinical eutanasia 124000.00 25000.00 99000.00 2025-09-27 18:00:00+00 127503234818 6788 5547 1208 92 8emts1c211evds0iub2jglhr60 \N \N +2155 2025-08-19 17:52:43.759851+00 2025-08-19 17:52:43.759863+00 f t 2025-08-19 18:30:00 COMPLETED clinical Tiene el pecho pelado y colorado. Se rasco y se lastimo 50000.00 10000.00 40000.00 2025-08-19 21:30:00+00 7L8GYKNXWPZ8PRQW2MPRZ5 6880 5622 1583 70 5d501qggfe9ast0n7puml7dbns 316 \N +3193 2025-11-08 18:03:48.849506+00 2025-11-08 18:03:48.849515+00 f t 2025-11-11 14:00:00 NO_REPORT clinical 2 placas 85000.00 15000.00 70000.00 2025-11-11 17:00:00+00 133041470734 3430 2933 1208 84 cg4o1togcq6lcllr7r8ilu204o \N 1481 +881 2025-03-24 19:22:04.623279+00 2025-03-24 19:22:04.62329+00 f t 2025-03-24 13:30:00 NO_REPORT clinical Ecografía abdominal 62000.00 12000.00 50000.00 2025-03-24 16:30:00+00 105702713677 556 653 114 90 vdhmui2b7ut83i1n8vpsc5mnp4 \N \N +2733 2025-10-02 19:08:26.433469+00 2025-10-02 19:08:26.433477+00 f t 2025-10-03 09:30:00 COMPLETED clinical Creemos que tiene mastitis. 46000.00 11000.00 35000.00 2025-10-03 12:30:00+00 127800786417 9885 8170 1208 113 pecmp9j49egrkveauo0h24gtns \N 802 +2426 2025-09-08 23:37:05.789067+00 2025-09-08 23:37:05.789079+00 f t 2025-09-10 18:30:00 COMPLETED vaccination Segunda Dosis de la Triple Felina + Corte de Garras 77700.00 21200.00 56500.00 2025-09-10 21:30:00+00 Z4K6DVNODVR07ZE495J8LQ 4202 3506 114 89 hlp15m1u262hdmfa7senj8jsn4 81 \N +789 2025-03-08 21:06:11.504011+00 2025-03-08 21:06:11.504024+00 f t 2025-03-11 15:00:00 NO_REPORT vaccination Vacunación anual Pago por separado los otros $10.000(1041466460617) 66000.00 17000.00 49000.00 2025-03-11 18:00:00+00 104452134248 546 643 114 74 2hch1qiicethcftif796jdvuk4 \N \N +466 2025-01-22 18:21:37.452273+00 2025-01-22 18:21:37.452282+00 f t 2025-01-23 11:30:00 NO_REPORT clinical Vacunación y Desparasitación 74750.00 19750.00 55000.00 2025-01-23 14:30:00+00 99708108391 355 418 114 1 sdotn6p2oa4tpe3iuokcsidp4k \N \N +2745 2025-10-03 13:59:53.949011+00 2025-10-03 13:59:53.949021+00 f t 2025-10-04 15:30:00 COMPLETED clinical Aplicacion Atrosan 55000.00 11000.00 44000.00 2025-10-04 18:30:00+00 L18MKX9R78OXQ84O9O6WYV 4255 3550 1583 88 vmsjarp99mtm3r7ims5frto9g8 \N 819 +2389 2025-09-04 20:59:54.75237+00 2025-09-04 20:59:54.752379+00 f t 2025-09-06 11:30:00 NO_REPORT clinical Radiografia $110,000 descuento por ser cliente 99000.00 4000.00 95000.00 2025-09-06 14:30:00+00 124889461016 7886 6492 1583 84 9lq9ampustfdf8lem4758ov5r8 123 \N +1033 2025-04-22 19:09:01.989245+00 2025-04-22 19:09:01.989252+00 f t 2025-04-24 17:30:00 COMPLETED telemedicina Evaluación de resultados 22500.00 22500.00 16000.00 2025-04-24 20:30:00+00 \N 123 128 111 1 ehdj4qukcl582lbk6ocf0frjco \N \N +2569 2025-09-19 22:11:58.70357+00 2025-09-19 22:11:58.703579+00 f t 2025-09-20 10:00:00 COMPLETED clinical clínica + extracción (evaluar que perfil hacer) tiene Adison toma lonikan, está con gastroenteritis queda coordinar perfil de rapela 75900.00 26400.00 49500.00 2025-09-20 13:00:00+00 126825098890 8964 7417 1208 70 2eh0l85033eqn6urmjd0bmgvi4 \N \N +2703 2025-09-30 19:19:50.258073+00 2025-09-30 19:19:50.258082+00 f t 2025-10-01 15:00:00 COMPLETED clinical vac. anual felipe\r\nvac. triple y chequeo tito desc. multimasc\r\nPAGO CON CREDITO, LE DEBEMOS A VICTORIA 133200.00 133200.00 107500.00 2025-10-01 18:00:00+00 128094519670 9682 8068 1208 88 q8om6n6mtg1nps9h2uf6k17pl8 \N \N +3149 2025-11-05 19:01:56.732941+00 2025-11-05 19:01:56.73295+00 f t 2025-11-11 11:30:00 COMPLETED clinical perfil prequirurgico 0.00 0.00 0.00 2025-11-11 14:30:00+00 132620609558 12441 10274 1208 100 nkk2a7foumf1kicinqjvspvt2c \N 1422 +3315 2025-11-18 22:26:32.316832+00 2025-11-18 22:26:32.316841+00 f t 2025-11-18 22:00:00 COMPLETED clinical Ecografia abdominal. 88000.00 13000.00 75000.00 2025-11-19 01:00:00+00 134383924390 13674 11276 1583 90 l7gvi4v6k7ca8779dhlh1gg5to \N 1660 +2879 2025-10-14 16:01:21.909958+00 2025-10-14 16:01:21.909971+00 f t 2025-10-17 15:00:00 NO_REPORT clinical consulta cardiologica para prequirurgico 135000.00 15000.00 120000.00 2025-10-17 18:00:00+00 PDX4OGNY1P7O3KMV20L6EY 10698 8885 1208 82 mhbrkc2q6kpdegsljc66k7pu1g \N 1003 +2519 2025-09-16 19:36:09.512246+00 2025-09-16 19:36:09.512253+00 f t 2025-09-19 20:00:00 NO_REPORT clinical control precx pago junto con extraccion 96300.00 1300.00 95000.00 2025-09-19 23:00:00+00 126423511254 264 308 1208 82 91oumq20615rkjlq7fuaj7efr8 \N \N +2815 2025-10-08 15:17:43.94591+00 2025-10-08 15:17:43.945919+00 f t 2025-10-08 18:00:00 COMPLETED clinical Sintomas de vomitos y tumor. 55000.00 11000.00 44000.00 2025-10-08 21:00:00+00 brubank 10271 8526 1583 114 1i3jd9nmegengetrjuu0vfsk5g \N 914 +3069 2025-10-30 15:11:33.023066+00 2025-10-30 15:11:33.023079+00 f t 2025-11-02 11:00:00 COMPLETED clinical vacunacion anual y control 78000.00 21500.00 56500.00 2025-11-02 14:00:00+00 131824448124 11952 9874 1208 80 5qqcck4p00qrh2gf4cn73ldae4 \N 1297 +880 2025-03-24 19:19:16.483666+00 2025-03-24 19:19:16.483675+00 f t 2025-03-23 16:00:00 NO_REPORT clinical Revisión y chequeo de urgencia 46000.00 9500.00 36500.00 2025-03-23 19:00:00+00 105682379461 556 653 114 88 4c9jhnja53k909c321sej6cj4g \N \N +2910 2025-10-16 19:34:22.7136+00 2025-10-16 19:34:22.713609+00 f t 2025-10-20 18:30:00 COMPLETED clinical Problemas para defecar desde hoy 46000.00 11000.00 35000.00 2025-10-20 21:30:00+00 130188571450 3866 3257 1583 70 hkbos9gunipstn80t0umb4ko0s \N 1049 +2205 2025-08-22 20:03:33.76411+00 2025-08-22 20:03:33.764119+00 f t 2025-08-25 15:00:00 COMPLETED clinical Ehrlichia (PCR)\r\nAnaplasma (PCR)\r\nHepatozoon (PCR)\r\nMycoplasma (PCR) 0.00 0.00 0.00 2025-08-25 18:00:00+00 0 7106 5814 114 100 g6ppdrlut4f14237g57in8l9f4 \N \N +2844 2025-10-10 23:11:59.679245+00 2025-10-10 23:11:59.679253+00 f t 2025-10-11 13:30:00 COMPLETED clinical No se especificó motivo de consulta. se solicitó: ... \N 55000.00 11000.00 44000.00 2025-10-11 16:30:00+00 76V4MR2ZP4KJZ4EL9DEZOL 4255 3550 \N 88 edjd2tiiq3h5d11o9jdvpsujgs \N 957 +3139 2025-11-05 13:22:27.599365+00 2025-11-05 13:22:27.599374+00 f t 2025-11-05 12:00:00 NO_REPORT clinical extraccion de sangre para PCR VIF y ViLeF 153900.00 113400.00 40500.00 2025-11-05 15:00:00+00 ORD6LEN8PQ6MPK5ONM1Y30 12364 10216 1208 68 77ccodpse4b4f1u9l6mik21n2c \N 1398 +3080 2025-10-30 23:35:35.559078+00 2025-10-30 23:35:35.559091+00 f t 2025-12-01 11:00:00 PENDING clinical Sesione de fisio 4/4. 0.00 0.00 0.00 2025-12-01 14:00:00+00 000000 9641 8031 1583 67 lhec9am48lvn7dk59hrqlq8a74 \N 1311 +3161 2025-11-06 15:48:07.72419+00 2025-11-06 15:48:07.724198+00 f t 2025-11-06 16:00:00 COMPLETED clinical Ecografia abdominal. Pago efectivo 78000.00 13000.00 65000.00 2025-11-06 19:00:00+00 PDX4OGNYGJVQDVKVN0L6EY 12361 10214 1583 90 irv1f08qhvesgogasku95o8e90 \N 1441 +2672 2025-09-28 18:55:44.960296+00 2025-09-28 18:55:44.960306+00 f t 2024-09-28 17:00:00 COMPLETED clinical Problemas para caminar 73000.00 11000.00 62000.00 2024-09-28 20:00:00+00 127855410132 9542 7940 114 21 7dq1pfgeotslak0tn5khre22rk \N \N +2427 2025-09-08 23:40:54.299765+00 2025-09-08 23:40:54.299773+00 f t 2025-09-09 18:30:00 COMPLETED clinical Chequeo 46000.00 11000.00 35000.00 2025-09-09 21:30:00+00 124879663925 8120 6682 114 92 re0oge1et2omv6pjt0chr5ogog 95 \N +1779 2025-07-15 17:47:44.072658+00 2025-07-15 17:47:44.072667+00 f t 2025-07-15 18:00:00 COMPLETED clinical Le cuesta caminar aveces camina otras se quiere arrastrar observe que le cuesta acostarse, el pelo en la parte del lado de la pierna que parece que le duele tiene como anudado 50000.00 10000.00 40000.00 2025-07-15 21:00:00+00 zokv8794841jp3m42peydx 4624 3841 1208 1 nh5rjmb74ma295lnus1e5m5luo 622 \N +248 2024-11-19 20:03:43.786+00 2024-11-19 20:03:43.786+00 f t 2024-11-20 20:00:00 COMPLETED clinical Vacunación completa para Garfield, Gea, Palta.\r\nRevisar el panorama de Perlita\r\nDesparasitación de Todos internas Transacción 93813842564 206280.00 79999.98 129280.00 2024-11-20 23:00:00+00 206 220 114 70 plssaqcv69qvcie22piap26k90 \N \N +2805 2025-10-07 20:51:35.849529+00 2025-10-07 20:51:35.849538+00 f t 2025-10-13 19:30:00 COMPLETED clinical Control 82000.00 12000.00 70000.00 2025-10-13 22:30:00+00 128461516215 6034 4927 1583 75 5vkid24u1lapbt3mal9qqfd6bg \N 901 +2156 2025-08-19 17:55:20.004451+00 2025-08-19 17:55:20.004458+00 f t 2025-08-18 20:00:00 NO_REPORT clinical 29250.00 29250.00 0.00 2025-08-18 23:00:00+00 122396226931 2792 2462 1208 95 sr1l6vaf89es10pubpcem71qds 325 \N +3081 2025-10-30 23:42:44.386835+00 2025-10-30 23:42:44.386845+00 f t 2025-11-17 11:00:00 NO_REPORT clinical Sesion de fisio 2/4 0.00 0.00 0.00 2025-11-17 14:00:00+00 0 9641 8031 1583 67 t8qokmf8t2gdhf1qf0a60bjrq4 \N 1312 +2979 2025-10-23 00:06:44.301993+00 2025-10-23 00:06:44.302004+00 f t 2025-10-27 09:30:00 COMPLETED clinical extraccion de sangre perfil general completo con orina x2 descuento recompra 140220.00 94220.00 46000.00 2025-10-27 12:30:00+00 91169615185 4176 3479 1208 112 n2jt01b71ptddoo6c6bg2atnr4 \N 1167 +3001 2025-10-24 21:30:29.004494+00 2025-10-24 21:30:29.004506+00 f t 2025-10-27 19:00:00 COMPLETED clinical teleconsulta descuento recompra 27000.00 7500.00 19500.00 2025-10-27 22:00:00+00 39370054339 123 128 1208 1 rik7c0g9oi3omujnsvpl2ki4hg \N 1194 +2242 2025-08-25 19:38:31.614478+00 2025-08-25 19:38:31.614488+00 f t 2025-08-28 13:30:00 NO_REPORT clinical consulta cardiologica $10.000 de cardio 95000.00 10000.00 85000.00 2025-08-28 16:30:00+00 123108525357 7201 5906 1208 82 fnpqarj90c2m02kddj9u0fnbg8 214 \N +962 2025-04-09 15:44:47.079671+00 2025-04-09 15:44:47.079681+00 f t 2025-04-09 15:00:00 COMPLETED clinical Tiene unos granitos en el bozal y ayer hizo pis con un poco de sangre y un gusano salio. Un gusano como si parefiera de tierra. 46000.00 9500.00 36500.00 2025-04-09 18:00:00+00 107853294922 409 488 111 68 sgfu1bjci0204q4ne68qhp1na4 \N \N +2911 2025-10-16 19:35:28.525877+00 2025-10-16 19:35:28.525885+00 f t 2025-10-17 16:30:00 COMPLETED clinical Consulta por problema en la rodilĺa \N 46000.00 11000.00 35000.00 2025-10-17 19:30:00+00 129602836427 10879 9029 \N 107 q87middd19o7bppb2kmtdspd5g \N 1045 +3051 2025-10-28 21:11:09.373671+00 2025-10-28 21:11:09.373679+00 f t 2025-10-28 20:00:00 COMPLETED clinical Hace gotitas de pis, quiere hacer pero no le sale. 55000.00 11000.00 44000.00 2025-10-28 23:00:00+00 131628645322 11759 9722 1583 1 bkp1elaf0onb3hps7h4sihgvt4 \N 1264 +2944 2025-10-19 19:49:13.016496+00 2025-10-19 19:49:13.016508+00 f t 2025-10-21 17:30:00 COMPLETED clinical Revisión de la pata trasera \N 46000.00 11000.00 35000.00 2025-10-21 20:30:00+00 130555914342 11081 9193 \N 88 vsve1hm9n4eg0s70igst7r90gg \N 1102 +2491 2025-09-15 15:11:26.70704+00 2025-09-15 15:11:26.707049+00 f t 2025-09-18 19:30:00 COMPLETED vaccination 2 vacunaciones treiples felinas y desparasitacion interna y externa Descuento de -$20.600 por mas de 1 animal\r\ndesparasitacion interna y externa para gato entre 2 y 5kg 185400.00 30400.00 155000.00 2025-09-18 22:30:00+00 fc3f2a57-d1ea-4c4e-b72d-79e327 8649 7140 1583 92 grqoggu1ubhd39ih6cvb25fi9o 12 \N +2734 2025-10-02 19:21:06.123772+00 2025-10-02 19:21:06.123781+00 f t 2025-10-10 20:00:00 COMPLETED clinical Para miranda: triple felina y test rapido vilef. Juliana: vacuna leucemia felina. desc. recompra 191000.00 24000.00 167000.00 2025-10-10 23:00:00+00 128366746312 8455 6967 1208 79 irt86q5tagum9scsrhe4ohlibc \N 788 +2073 2025-08-13 00:24:11.506975+00 2025-08-13 00:24:11.506985+00 f t 2025-08-15 19:30:00 COMPLETED clinical control clinico + drenaje glandulas 134190.00 134190.00 0.00 2025-08-15 22:30:00+00 38425833275 123 128 114 1 1o005hq0q2v8l1ipj3345onb3c 350 \N +2520 2025-09-16 22:02:54.773353+00 2025-09-16 22:02:54.773457+00 f t 2025-09-17 10:30:00 COMPLETED clinical dolor en una pata, tiembla y se queda quiero llorando 46000.00 11000.00 35000.00 2025-09-17 13:30:00+00 WGRXJE27GRQW7ORPN7MYQL 8762 7232 1583 1 0l8ja96d36vvtr8956vtu79c5c 23 \N +2704 2025-09-30 19:49:39.431495+00 2025-09-30 19:49:39.431506+00 f t 2025-10-01 14:00:00 COMPLETED clinical Control general de alimentacion 46000.00 11000.00 35000.00 2025-10-01 17:00:00+00 39031674090 9687 8073 1583 91 1g8dm0juoiav3av4r38ht6vb5k \N \N +2845 2025-10-10 23:29:15.303722+00 2025-10-10 23:29:15.303732+00 f t 2025-10-10 17:30:00 COMPLETED clinical Falta de apetito y vomitos, presenta débilidad \N 55000.00 11000.00 44000.00 2025-10-10 20:30:00+00 128846517643 10459 8690 \N 21 f9q9r9biql9r7afs4iugad96f8 \N 958 +2449 2025-09-10 21:13:45.162362+00 2025-09-10 21:13:45.162368+00 f t 2025-09-12 16:00:00 COMPLETED clinical Consulta general 0.00 0.00 0.00 2025-09-12 19:00:00+00 0 8396 6921 1583 1 ba3593jhjt2h9a9e3l1hd8agnc \N \N +3070 2025-10-30 16:12:13.789256+00 2025-10-30 16:12:13.789267+00 f t 2025-10-31 09:00:00 NO_REPORT clinical Perfil 4 + orina completa DERIVADO RAPELA 50000.00 30000.00 20000.00 2025-10-31 12:00:00+00 131835746172 11955 9875 1208 85 vunpesi1558rene2hk9l91mhjc \N 1298 +3098 2025-11-01 16:20:32.733701+00 2025-11-01 16:20:32.733712+00 f t 2025-11-01 15:00:00 COMPLETED clinical Se le torcio una garra. 55000.00 11000.00 44000.00 2025-11-01 18:00:00+00 132101160598 12172 10060 1208 92 rqmkc8qmvjhktiv2ajbdgia2ug \N 1344 +2618 2025-09-24 00:57:51.863208+00 2025-09-24 00:57:51.863217+00 f t 2025-10-01 16:30:00 COMPLETED clinical 76000.00 11000.00 65000.00 2025-10-01 19:30:00+00 127317242994 6358 5175 113 75 s7pfcffq22sq31kvmpcn53koqc \N \N +2597 2025-09-22 19:53:34.080356+00 2025-09-22 19:53:34.080364+00 f t 2025-09-24 13:00:00 COMPLETED clinical consulta general y extraccion para ambos gatos 120420.00 39429.00 81000.00 2025-09-24 16:00:00+00 127157032904 9137 7566 1583 1 rfoershaheruulsbg7lfmq8tig \N \N +3028 2025-10-27 19:24:28.462956+00 2025-10-27 19:24:28.462967+00 f t 2025-10-27 15:30:00 COMPLETED clinical Revisión de Resultados \N 30000.00 30000.00 19500.00 2025-10-27 18:30:00+00 46YGOW9M1D544768NEXD8J 11035 9157 \N 99 m2jemefs65ob12so9qeprgvkh0 \N 1234 +3103 2025-11-01 19:52:32.42248+00 2025-11-01 19:52:32.422489+00 f t 2025-11-01 19:30:00 NO_REPORT clinical Tele consulta para revisión de análisis desc. recompra 27000.00 27000.00 19500.00 2025-11-01 22:30:00+00 76V4MR2Z7I7K7REGNDEZOL 11851 9921 1208 68 ebqufc3rrgqh0a2dm87ghsmk3g \N 1354 +2705 2025-09-30 20:56:23.508076+00 2025-09-30 20:56:23.508086+00 f t 2025-10-01 11:00:00 COMPLETED clinical Vacunacion anual Descuento por cantidad de mascotas -$15.600 140400.00 27400.00 113000.00 2025-10-01 14:00:00+00 128104169470 9700 8082 1583 1 ed944jork7qscupdf6lou0e348 \N \N +2980 2025-10-23 00:11:27.277688+00 2025-10-23 00:11:27.277697+00 f t 2025-10-27 10:00:00 COMPLETED clinical extraccion de sangre perfil completo con orina x2 0.00 0.00 0.00 2025-10-27 13:00:00+00 130364496851 4176 3479 1208 100 f5t07e5r7sqq28aulfbe6f4c3k \N 1164 +2493 2025-09-15 15:33:41.860422+00 2025-09-15 15:33:41.860434+00 f t 2025-09-16 20:00:00 COMPLETED clinical Control post tratamiento 46000.00 11000.00 35000.00 2025-09-16 23:00:00+00 126271879950 6907 5957 1583 92 3g4lnj7rki51ec2mb6mp7hmfrk 30 \N +2157 2025-08-19 18:22:29.885708+00 2025-08-19 18:22:29.885718+00 f t 2025-08-19 18:00:00 COMPLETED telemedicina revision analisis 24750.00 24750.00 0.00 2025-08-19 21:00:00+00 122398237253 6683 5452 1208 1 6o8v0imslc4orqel0ckbolun2c 317 \N +3195 2025-11-08 19:14:30.207493+00 2025-11-08 19:14:30.207502+00 f t 2025-11-10 13:30:00 COMPLETED clinical aplicacion de medicacion. 46000.00 11000.00 35000.00 2025-11-10 16:30:00+00 81670188 12624 10428 1208 114 np2i93ca28tm8nas9480b3bj3s \N 1489 +2074 2025-08-13 00:25:02.947388+00 2025-08-13 00:25:02.9474+00 f t 2025-09-12 19:00:00 COMPLETED clinical control clinico + drenaje glandulas 0.00 0.00 0.00 2025-09-12 22:00:00+00 0 123 128 114 1 3q3rromundvjm7r5nit1hgquig \N \N +2771 2025-10-05 19:18:54.353618+00 2025-10-05 19:18:54.353627+00 f t 2025-10-05 17:30:00 COMPLETED clinical Evacuar dudas de la ecografía. 30000.00 30000.00 19500.00 2025-10-05 20:30:00+00 128165244275 1381 1370 1208 1 ct5ev69gb3shb315g1qeq4oppc \N 860 +2390 2025-09-04 22:01:24.687686+00 2025-09-04 22:01:24.687694+00 f t 2025-09-09 18:00:00 COMPLETED clinical Control a una verruga que esta creciendo de tamano Sena bonificada 35000.00 0.00 35000.00 2025-09-09 21:00:00+00 0 266 335 1583 68 vq6905gke1jcnpftq3v2fh671k \N \N +2482 2025-09-13 21:30:25.087094+00 2025-09-13 21:30:25.087103+00 f t 2025-09-16 19:30:00 COMPLETED clinical 1 gata: vacunacion antirrabica\r\n2 gata: chequeo general \r\ndesparacitacion interna y externa para las dos 149400.00 20900.00 128500.00 2025-09-16 22:30:00+00 125508820549 8603 7088 1208 80 kqeh2k02hst6g7cme1enh4l37o 31 \N +3029 2025-10-27 21:17:33.251069+00 2025-10-27 21:17:33.251078+00 f t 2025-10-31 10:00:00 COMPLETED clinical Revisión por Otitis 46000.00 11000.00 35000.00 2025-10-31 13:00:00+00 JMQKYZ9QQW74V8KR9V50P3 11648 9641 114 1 suijds93bpahlukjpmnhq8pd9s \N 1241 +2557 2025-09-18 23:59:05.10131+00 2025-09-18 23:59:05.101318+00 f t 2025-09-19 17:30:00 COMPLETED clinical Eco abdominal 78000.00 13000.00 65000.00 2025-09-19 20:30:00+00 88761566 8896 7359 113 90 glt2lhliuapgf57ki6n1nqd5qg \N \N +264 2024-11-22 23:25:06.53+00 2024-11-22 23:25:06.53+00 f t 2024-11-20 20:30:00 COMPLETED clinical Vacunación completa para Garfield, Gea, Palta.\r\nRevisar el panorama de Perlita\r\nDesparasitación de Todos internas Transacción 93813842564 206280.00 80000.00 1310000.00 2024-11-20 23:30:00+00 206 223 114 70 278lietdvjn7ufn5kubafpaagc \N \N +2846 2025-10-10 23:40:24.325111+00 2025-10-10 23:40:24.325119+00 f t 2025-10-10 16:00:00 COMPLETED clinical Ecografía Abdominal \N 78000.00 13000.00 65000.00 2025-10-10 19:00:00+00 39183572304 10460 8691 \N 90 8qkqfg694pcjegul5lal0a0jn0 \N 959 +1994 2025-08-05 13:16:09.862359+00 2025-08-05 13:16:09.862369+00 f t 2025-08-05 18:30:00 COMPLETED telemedicina Hace una semana Sasha, de la nada comenzó a tener episodios de llanto como de dolor, como fue lunes al mediodía que noté eso, pensé se habra bajado del sommier que es alto y se lastimó, pero al no caminar bien por momentos y llorar, me desesperé y la llevé a su veterinario quien diagnostico q puede ser muscular u oseo arterial al tocarle su cuello y ella llorar mucho ahí pero desde ahí solo le dio inyección tipo valium me dijo y luego calmantes (onsulte con su veterinario quien diagnostico q puede ser muscular o oseo arterial al tocarle su cuello pero solo da calmantes (Meloxicam) desde hace una semana. Por eso me gustaria 2da opinion, tal vez con con estudio, como ser placa, ya ahí no sé si es radiografía, ecografía... A su vez me di cuenta que cuando la lleve al control y el sabado por la noche, al estresarse se contrae como su cuerpo y actúa de la misma forma, así sea sin tocarla, como que con tensión se empeora su situacion. ultimo episodio pequeño fue ayer al mediodía. Hoy hasta el momento no, pero bueno.. no es la misma y tengo miedo tenga algo más, al menos saber con exactitud diagnóstico :) Desde ya muchas gracias por su atención. Abonarle a la vete 17500 27500.00 27500.00 0.00 2025-08-05 21:30:00+00 38306402817 5912 4831 1026 68 8qer28m2n1lgpf4e3euva59330 431 \N +2243 2025-08-25 19:40:30.944892+00 2025-08-25 19:40:30.944903+00 f t 2025-08-28 12:00:00 NO_REPORT clinical extraccion perfil 7 $48.200 de perfil 7 71200.00 48200.00 23000.00 2025-08-28 15:00:00+00 123108525357 7201 5906 1208 111 l2e4k36i0iu9i96e5fu9khfits 217 \N +1015 2025-04-19 21:29:33.556276+00 2025-04-19 21:29:33.556286+00 f t 2025-04-20 15:30:00 COMPLETED clinical Revisión de bulto que supura en la zona del cuello Pago una seña de $16.000 por lo que restandole la seña, se le tiene que transferir al veterinario los $6.500 46000.00 16000.00 30000.00 2025-04-20 18:30:00+00 108416249509 693 810 114 70 dh2273p4867fhsqrc0rcqu3qn8 \N \N +2477 2025-09-12 19:04:47.865514+00 2025-09-12 19:04:47.865522+00 f t 2025-09-16 09:00:00 NO_REPORT clinical perfil precx al costo 52600.00 29600.00 23000.00 2025-09-16 12:00:00+00 38839287395 266 335 1208 111 j145p815hknm1gke0rmqrtdht4 43 \N +3201 2025-11-09 19:33:20.371275+00 2025-11-09 19:33:20.371286+00 f t 2025-11-09 19:30:00 COMPLETED clinical Ecografía Abdominal \N 88000.00 13000.00 75000.00 2025-11-09 22:30:00+00 132544042079 12802 10567 \N 90 t8t3qvh3cjtmv0msonauu8m6ik \N 1498 +3110 2025-11-03 14:30:35.072959+00 2025-11-03 14:30:35.072969+00 f t 2025-11-03 21:00:00 NO_REPORT clinical Consulta de control. 55000.00 11000.00 44000.00 2025-11-04 00:00:00+00 naranjaX 11851 9921 1583 68 jlbmj0ta3489suj66mhpse9te0 \N 1370 +2598 2025-09-22 19:55:38.852535+00 2025-09-22 19:55:38.852545+00 f t 2025-09-24 13:00:00 COMPLETED clinical Consulta general y extraccion 0.00 0.00 0.00 2025-09-24 16:00:00+00 0 9137 7566 1583 1 oluu976muj6m0g11o1548h8gno \N \N +1958 2025-07-31 19:30:29.672683+00 2025-07-31 19:30:29.67269+00 f t 2025-08-04 09:30:00 NO_REPORT clinical Picazón, se rasca el cuello hasta quedar en carne viva 42000.00 9500.00 32500.00 2025-08-04 12:30:00+00 120014784171 5649 4624 1208 74 7i314lbknsbbu53um5tktavo74 445 \N +3052 2025-10-28 21:49:02.02183+00 2025-10-28 21:49:02.021841+00 f t 2025-10-29 20:00:00 COMPLETED clinical Vacunacion anual. 78000.00 21500.00 56500.00 2025-10-29 23:00:00+00 caja de ahorro 330455180/1 11765 9728 1583 92 6m21iguj942tr81uiuqdib3oa0 \N 1267 +2673 2025-09-28 18:59:28.783285+00 2025-09-28 18:59:28.783298+00 f t 2025-09-28 19:00:00 COMPLETED clinical Dolencias y llanto continuo 55000.00 11000.00 44000.00 2025-09-28 22:00:00+00 30022661012250928 9538 7935 114 114 ejhhrm2rmslqaaj33hq7a5u6qo \N \N +3071 2025-10-30 16:16:45.364326+00 2025-10-30 16:16:45.364335+00 f t 2025-10-31 10:30:00 COMPLETED clinical perfil 4 + orina completa 0.00 0.00 0.00 2025-10-31 13:30:00+00 131835746172 11955 9875 1208 100 qoj38pj5hjb2dimpdh55e4ed98 \N 1303 +2945 2025-10-20 13:53:41.79706+00 2025-10-20 13:53:41.797071+00 f t 2025-10-21 17:30:00 COMPLETED clinical Vacunacion anual y corte de garras de ambos gatitos 154260.00 30260.00 124000.00 2025-10-21 20:30:00+00 39306430758 11134 9232 1583 88 b6e1qea0j7tqm41pl1n15kcgdo \N 1110 +2558 2025-09-19 00:06:47.697648+00 2025-09-19 00:06:47.697655+00 f t 2025-09-19 14:30:00 NO_REPORT clinical Devolucion de resultados Abonarle 19500 a la vete 30000.00 30000.00 19500.00 2025-09-19 17:30:00+00 126707799446 8524 7021 113 89 94n4fep7k97mqnt0hsph9j9b70 3 \N +800 2025-03-10 23:43:51.518093+00 2025-03-10 23:43:51.5181+00 f t 2025-03-10 20:30:00 NO_REPORT clinical urgencia por decaimiento 46000.00 9500.00 36500.00 2025-03-10 23:30:00+00 36552296506 554 651 113 70 0a52sgn8pl04pb8pnoe09lvj00 \N \N +2599 2025-09-22 20:03:58.492172+00 2025-09-22 20:03:58.492181+00 f t 2025-09-22 18:30:00 NO_REPORT clinical Control post estudios Se le debe $19.500 a la vete 30000.00 30000.00 19500.00 2025-09-22 21:30:00+00 126600766649 822 928 1583 89 fqgc4gn0lg3unrhl7kgjk2e3ig \N \N +2706 2025-09-30 23:31:54.21711+00 2025-09-30 23:31:54.217122+00 t t 2025-10-01 18:30:00 PENDING clinical Mi gata tiene alergia ambiental y ya empezo a tener nuevamente por la estacion lastimaduras y tiene la boca hinchada en este momento \N 46000.00 11000.00 0.00 2025-10-01 21:30:00+00 128129163912 9710 8090 \N 9 tmotain35gtu12qok3tim5fa68 \N \N +2429 2025-09-09 13:25:05.591514+00 2025-09-09 13:25:05.591522+00 f t 2025-09-09 11:30:00 COMPLETED clinical Algo le duele al moverse y se queja, camina muy lento, no se puede subir al sillon ni a la cama. Estuvo todo el dia en su camita del piso y cuando se mueve hace un leve llantito. Daría la impresión que le duele la columna o las patitas de atras 55000.00 11000.00 44000.00 2025-09-09 14:30:00+00 WGRXJE27GPLLWRMPN7MYQL 8237 6782 1208 1 aurghsoo5rqnb7h7a71pns1l9o 99 \N +3210 2025-11-10 13:47:21.176431+00 2025-11-10 13:47:21.17644+00 f t 2025-11-10 17:30:00 COMPLETED clinical Muestra de sangre. 0.00 0.00 0.00 2025-11-10 20:30:00+00 0 12684 10475 1583 100 6bqsg4po65km90c4ji8qku2mos \N 1509 +3178 2025-11-06 22:30:23.045667+00 2025-11-06 22:30:23.045675+00 f t 2025-11-07 15:00:00 COMPLETED clinical Ecografia abdominal. 78000.00 13000.00 65000.00 2025-11-07 18:00:00+00 Santander 12527 10350 1583 90 2gs87a3d7cq3b93ibufncpl8vc \N 1456 +2521 2025-09-16 23:53:08.141997+00 2025-09-16 23:53:08.142005+00 f t 2025-09-18 10:30:00 COMPLETED clinical Extraccion Esto incluye tambien el procesamiento de muestra + traslado 0.00 0.00 0.00 2025-09-18 13:30:00+00 \N 7897 7240 113 104 p4mo7n47o2obsbruaq55hi1q3k 16 \N +2478 2025-09-12 19:46:15.231583+00 2025-09-12 19:46:15.231592+00 f t 2025-09-12 18:30:00 COMPLETED clinical eco abdominal de urgencia por diarrea hace 2 dias paga con transf y por distancia es un poco mas 95000.00 10000.00 85000.00 2025-09-12 21:30:00+00 84619124 8539 7033 1208 90 36n8gbbjvpni2gh778lnbbs1hk 61 \N +2642 2025-09-25 17:34:19.621034+00 2025-09-25 17:34:19.621047+00 f t 2025-09-29 19:30:00 COMPLETED clinical vacunacion de tos de las perreras 70000.00 19000.00 51000.00 2025-09-29 22:30:00+00 93027074 7187 5891 1208 92 loja5ck6ju50k1uua6rn3ir34s \N \N +3085 2025-10-31 14:15:24.832292+00 2025-10-31 14:15:24.832301+00 f t 2025-10-31 18:30:00 COMPLETED clinical Eutanasia 130000.00 26000.00 104000.00 2025-10-31 21:30:00+00 131358259777 8869 7334 1583 113 nbch07g4mtoj3ddvti0m6mlm00 \N 1318 +2913 2025-10-17 00:05:00.708974+00 2025-10-17 00:05:00.708982+00 f t 2025-10-17 12:30:00 COMPLETED clinical Ecografia abdominal 82000.00 12000.00 70000.00 2025-10-17 15:30:00+00 129648256149 10901 9045 114 103 hl3gm07veqnp554balaisjkflc \N 1055 +2363 2025-09-02 22:06:53.334595+00 2025-09-02 22:06:53.334603+00 f t 2025-09-06 14:00:00 COMPLETED clinical Se rasca y se ha hecho pelones. Desparasitacion Debe $1.000 de sena 69000.00 15000.00 54000.00 2025-09-06 17:00:00+00 124094183431 7834 6447 1583 1 v4aank2n53839fgm2hm940d2f0 120 \N +3163 2025-11-06 16:12:53.384564+00 2025-11-06 16:12:53.384575+00 f t 2025-11-11 09:00:00 NO_REPORT clinical pcr vilef 0.00 0.00 0.00 2025-11-11 12:00:00+00 132729277424 12474 10308 1208 100 5rtpv6r81e63vqrhke0k0ln8l8 \N 1443 +2244 2025-08-25 19:44:31.207082+00 2025-08-25 19:44:31.207089+00 f t 2025-08-28 12:00:00 COMPLETED clinical perfil 7 0.00 0.00 0.00 2025-08-28 15:00:00+00 0 7201 5906 1208 100 iu9fqooq2oij82e5l4ufitptt8 \N \N +3030 2025-10-27 23:06:06.052144+00 2025-10-27 23:06:06.052158+00 f t 2025-10-29 19:00:00 COMPLETED clinical Chequeo \N 46000.00 11000.00 35000.00 2025-10-29 22:00:00+00 00000 11659 9648 \N 92 5r26orodj127mdgjc4qn55o6hk \N 1242 +1170 2025-05-13 21:24:07.926633+00 2025-05-13 21:24:07.926643+00 f t 2025-05-15 17:30:00 COMPLETED clinical consulta clinica + drenaje de glandulas la clienta pago 116.000 por pack 3 turnos. Mayo, Junio, Julio . Al vete se le pago las 3 visitas en el mes de febrero ($84000) 116000.00 116000.00 105000.00 2025-05-15 20:30:00+00 372253476327 123 128 113 1 djovn50cs3c1ncot1154aof4kc \N \N +2320 2025-09-01 15:33:15.027113+00 2025-09-01 15:33:15.027121+00 f t 2025-09-04 19:00:00 NO_REPORT clinical Ecografia abdominal Pago efectivo 68000.00 13000.00 55000.00 2025-09-04 22:00:00+00 123416665498 7131 5835 1583 90 qt1dukcf4f8k5o27ngvh7eeimo 140 \N +2075 2025-08-13 00:25:47.946503+00 2025-08-13 00:25:47.946511+00 f t 2025-01-12 19:00:00 NO_REPORT clinical control clinico + drenaje glandulas 0.00 0.00 0.00 2025-01-12 22:00:00+00 0 123 128 114 1 9ip523khdqmhjhrs2fu6jei008 \N \N +2946 2025-10-20 14:48:33.584061+00 2025-10-20 14:48:33.584069+00 f t 2025-10-20 16:00:00 COMPLETED clinical Ecografia abdominal por vomitos. 78000.00 13000.00 65000.00 2025-10-20 19:00:00+00 39307782187 11152 9246 1583 90 epfe6u579vaovlmo9ov31vt94o \N 1114 +2736 2025-10-02 19:43:10.147229+00 2025-10-02 19:43:10.147238+00 f t 2025-10-18 10:30:00 NO_REPORT clinical Sesion 2/4 de fisioterapia 0.00 0.00 0.00 2025-10-18 13:30:00+00 128367891606 9641 8030 1583 67 kvbpkjilsgkuesufkv008r67fc \N 804 +2772 2025-10-05 19:28:23.437781+00 2025-10-05 19:28:23.437789+00 f t 2025-10-05 15:00:00 COMPLETED clinical una vacunación anual + una desparacitación interna y externa + una consulta clínica 149400.00 22400.00 127000.00 2025-10-05 18:00:00+00 70131137011251005 10052 8317 114 92 aoe7oircp8n2od8csvgvkrj3mg \N 857 +2847 2025-10-10 23:46:06.580454+00 2025-10-10 23:46:06.580464+00 f t 2025-10-10 21:30:00 COMPLETED clinical Diarrea y Vomitos continuos \N 55000.00 11000.00 44000.00 2025-10-11 00:30:00+00 128891320917 10456 8687 \N 68 h6icfsaqndbmjs45iqpvuubg4g \N 960 +3003 2025-10-25 13:37:01.51621+00 2025-10-25 13:37:01.516223+00 f t 2025-10-25 11:00:00 COMPLETED clinical no mejoro, vomitos desc. recompra\r\nINGRESO UN PAGO DE $75.000 QUE ERA PARA GUADALUPE EL TUTOR SE CONFUNDIO Y NOS TRANSFIRIO A NOSOTROS, PARA QUE LE HAGAN EL PAGO 49500.00 5500.00 44000.00 2025-10-25 14:00:00+00 70635861 11447 9474 1208 113 pr6jqj4r4bmmi2ola86lr4m4v4 \N 1199 +3291 2025-11-16 19:33:50.819685+00 2025-11-16 19:33:50.819696+00 f t 2025-11-16 14:00:00 COMPLETED clinical Dificultades para orinar, posible deshidratación \N 55000.00 11000.00 44000.00 2025-11-16 17:00:00+00 XJ8G7V95DEMXDWJM9EMPYR 13436 11058 \N 92 ii8c3td2aoe41apf8c1hmqtgr8 \N 1621 +2920 2025-10-17 13:39:36.239877+00 2025-10-17 13:39:36.239886+00 f t 2025-10-18 10:00:00 COMPLETED clinical Vacunacion sextuple con coronavirus, certificado de salud, desparasitaacion int + ext Desparasitacion $33.000\r\nCertifcados de salud $15.400\r\nvacuncion $70.000 118400.00 29900.00 88500.00 2025-10-18 13:00:00+00 46YGOW9M8K4GEJJQ9EXD8J 10951 9087 1583 113 jo02ej43sfc29pjebuq4ejn2eo \N 1059 +3002 2025-10-24 23:07:06.616112+00 2025-10-24 23:07:06.616126+00 f t 2025-11-01 14:00:00 COMPLETED clinical vacunacion anual desc. recompra 70200.00 13700.00 56500.00 2025-11-01 17:00:00+00 131198088068 8168 6717 1208 92 t8q99ikucdn9a0fv1jo95e0ulo \N 1195 +2881 2025-10-14 17:21:49.197446+00 2025-10-14 17:21:49.197455+00 f t 2025-10-21 09:30:00 COMPLETED clinical Muestra para Prequirurgico 0.00 0.00 0.00 2025-10-21 12:30:00+00 0 10707 8891 1583 100 ie4dbjo7upecl0vvpeom52oc74 \N 1008 +2522 2025-09-16 23:53:53.337147+00 2025-09-16 23:53:53.337154+00 f t 2025-09-18 08:00:00 COMPLETED clinical Extraccion Esto incluye tambien el procesamiento de muestra + traslado. Es decir el monto anotado, es extraccion+ enfemeria+procesamiento + traslado 156000.00 110000.00 46000.00 2025-09-18 11:00:00+00 \N 7897 6499 113 104 v5abluo5eblc6ki36f585filok 19 \N +2912 2025-10-16 21:31:08.413718+00 2025-10-16 21:31:08.413731+00 f t 2025-10-20 10:30:00 COMPLETED clinical Lo noto hace varios dias muy inquieto con maullidos muuuy frecuentes y mas sobre las hs de descanso, pide comida. 46000.00 11000.00 35000.00 2025-10-20 13:30:00+00 L18MKX9R7JQ858119O6WYV 10886 9033 1583 1 n225sutl4pralscop682b10l9g \N 1050 +1652 2025-07-03 18:51:02.441114+00 2025-07-03 18:51:02.441122+00 f t 2025-07-03 21:00:00 COMPLETED clinical Tiene un cálculo en la vejiga y cada tanto no puede orinar, la semana que viene tengo turno para urología para programar operación, de mientras le venía dando Meloxicam que lo venía desinflamado bien pero desde este martes dejó de hacer efecto, quiero ver la posibilidad de que la inyecten algún antiinflamatorio no corticoide a ver si el efecto le dura algunos días más. 50000.00 10000.00 40000.00 2025-07-04 00:00:00+00 117259317304 3848 3249 1026 79 5108ndm9sjrfdknevp61cvmih8 716 \N +2600 2025-09-22 20:09:30.952169+00 2025-09-22 20:09:30.952177+00 f t 2025-09-23 10:30:00 COMPLETED clinical Sextuple para ambos perros 126000.00 24000.00 102000.00 2025-09-23 13:30:00+00 91163802 2484 7564 1583 1 r7bt7691ko8lb31g12afupq374 \N \N +2430 2025-09-09 14:20:59.930026+00 2025-09-09 14:20:59.930035+00 f t 2025-09-09 19:30:00 COMPLETED clinical Mi gato no esta comiendo y vomita 55000.00 11000.00 44000.00 2025-09-09 22:30:00+00 125497364466 8278 6815 1208 92 ciudm7h9aivhqnqm2bu4n68d4s 93 \N +2436 2025-09-09 19:08:05.112946+00 2025-09-09 19:08:05.112957+00 f t 2025-09-13 08:00:00 COMPLETED clinical extraccion para perfil basico, + pcr de vif, vilef y mycoplasma, t4 libre, tsh y colesterol + vac. anual pago con credito.\r\nSe hizo devolucion de TSH $53.500 276900.00 214900.00 62000.00 2025-09-13 11:00:00+00 124983430969 8117 6678 1208 68 flv336kp15991ebdbbrtouk070 57 \N +191 2024-10-30 14:13:10.006+00 2024-10-30 14:13:10.006+00 f t 2024-10-24 15:30:00 COMPLETED Urgencias Consulta clínica en el día + eutanasia si corresponde Transaccion 91100139697 Eutanasia realizada 49600.00 49600.00 31000.00 2024-10-24 18:30:00+00 164 173 114 1 ln86tfu0vf3drgvs0q4kj9iq3c \N \N +1719 2025-07-10 16:33:27.621771+00 2025-07-10 16:33:27.621778+00 f t 2025-07-12 10:00:00 COMPLETED clinical Hace un año tuve a ni bebe y desde hace unos 6 meses que viene vomitando mucho. Bajo de peso. Cambiamos la comida y sigue vomitando 50000.00 10000.00 40000.00 2025-07-12 13:00:00+00 83235752 4265 3560 1026 91 bf0gop0o07r6dc5ifnd5gcnt9c 654 \N +2445 2025-09-10 18:16:48.684021+00 2025-09-10 18:16:48.684031+00 f t 2025-09-10 19:30:00 NO_REPORT clinical Llora y lo tocamos y llora más, creen que no se golpeo ni se cayo, ya le paso una vez y se le paso solo 55000.00 11000.00 44000.00 2025-09-10 22:30:00+00 125118838419 8368 6895 1208 74 f60tle51b4kn0su35iguhg0v1g 79 \N +2198 2025-08-22 14:30:12.750373+00 2025-08-22 14:30:12.750381+00 f t 2025-08-25 11:00:00 NO_REPORT clinical Extraccion de sangre para P7 y Sodio\r\n\r\nOrina completo + relacion creatina/proteina 0.00 0.00 0.00 2025-08-25 14:00:00+00 0 7082 5794 1583 100 f27mf0fik8r3el26su20dlbpoo \N \N +2981 2025-10-23 14:30:48.996562+00 2025-10-23 14:30:48.996571+00 f t 2025-10-23 12:00:00 COMPLETED clinical Consulta post estudios. Se le debe 19500 a la doc 30000.00 30000.00 0.00 2025-10-23 15:00:00+00 39350192304 10764 8941 1583 92 p4d0u65sgabrd55nro4fj34tb8 \N 1169 +2773 2025-10-05 19:33:49.35009+00 2025-10-05 19:33:49.350098+00 f t 2025-10-06 09:00:00 COMPLETED clinical Aparente abseso en el cachete derecho. \N 46000.00 11000.00 35000.00 2025-10-06 12:00:00+00 000 10060 8324 \N 68 4atbklv04af58h276d2geu6nac \N 859 +2914 2025-10-17 00:27:59.025929+00 2025-10-17 00:27:59.025938+00 f t 2025-10-19 10:00:00 COMPLETED clinical La gata eta flaca \N 55000.00 11000.00 44000.00 2025-10-19 13:00:00+00 30-71742069-8. 2211 2020 \N 80 spt64f4adao2f6dvscfcbf2sd8 \N 1051 +2391 2025-09-05 12:40:15.282184+00 2025-09-05 12:40:15.282196+00 f t 2025-09-05 11:00:00 COMPLETED clinical No sé puede levantar y llora, diagnostico previo de problemas de cadera 55000.00 11000.00 44000.00 2025-09-05 14:00:00+00 124423882979 8030 6618 1583 1 sddgttod1auo8lgcguor9i6t6s 135 \N +2559 2025-09-19 00:23:52.92366+00 2025-09-19 00:23:52.923669+00 f t 2025-09-22 19:00:00 COMPLETED clinical Revision de resultado Abonarle a la vete $30000 30000.00 30000.00 30000.00 2025-09-22 22:00:00+00 \N 266 335 113 98 8ic8r56r1208gjjccs257ntohk \N \N +2643 2025-09-25 17:43:55.412055+00 2025-09-25 17:43:55.412067+00 f t 2025-09-25 20:30:00 COMPLETED clinical Vomita las croquetas 55000.00 11000.00 44000.00 2025-09-25 23:30:00+00 126952135961 9307 7724 1208 92 89d8193qsmq8ad8an5m2nb8nps \N \N +2947 2025-10-20 15:03:20.036509+00 2025-10-20 15:03:20.036518+00 f t 2025-10-22 11:00:00 COMPLETED clinical Consulta por granos para valentina, y saber si esta castrado o no Figaro 92000.00 22000.00 70000.00 2025-10-22 14:00:00+00 17881031 11136 9235 1583 94 ec5cnl1sheurla5741jhkd7bg0 \N 1113 +2707 2025-09-30 23:32:18.620738+00 2025-09-30 23:32:18.620751+00 f t 2025-10-01 18:30:00 COMPLETED clinical Mi gata tiene alergia ambiental y ya empezo a tener nuevamente por la estacion lastimaduras y tiene la boca hinchada en este momento 46000.00 11000.00 35000.00 2025-10-01 21:30:00+00 128129163912 9710 8090 \N 97 pk367eds28butmjgn68c5mhgk4 \N \N +3053 2025-10-29 13:06:52.87473+00 2025-10-29 13:06:52.874743+00 f t 2025-10-29 10:30:00 NO_REPORT clinical inseparables 32250.00 32250.00 0.00 2025-10-29 13:30:00+00 131693764208 10259 8518 1208 95 hbs9fs7qcir88i0mte5m8p4tfk \N 1274 +2808 2025-10-07 21:45:21.263968+00 2025-10-07 21:45:21.263977+00 f t 2025-11-07 15:00:00 NO_REPORT clinical Inyectaable 3/4 0.00 0.00 0.00 2025-11-07 18:00:00+00 0 160 169 1583 89 affv4qkf85o15moanrbi3081b0 \N 906 +2737 2025-10-02 19:44:45.598634+00 2025-10-02 19:44:45.598643+00 f t 2025-10-25 10:30:00 NO_REPORT clinical Sesion 3/4 de fisioterapia 0.00 0.00 0.00 2025-10-25 13:30:00+00 128367891606 9641 8030 1583 67 ne5f4ba7eg8v53322a6hc7u9vg \N 805 +3089 2025-10-31 15:45:47.163327+00 2025-10-31 15:45:47.163335+00 f t 2025-11-03 20:00:00 COMPLETED clinical Ecografia abdominal. 68000.00 13000.00 55000.00 2025-11-03 23:00:00+00 D4RO172VZ18W4YW0NKJ3QE 11503 9531 1583 90 upej9e0e2gqjehmubdjgsr4ltg \N 1319 +514 2025-01-29 21:06:27.655688+00 2025-01-29 21:06:27.655695+00 f t 2025-02-12 19:00:00 COMPLETED clinical Control clinico + drenaje de glandula la clienta pago 105000 por pack 3 turnos. feb, mar. abr. Al vete se le pago las 3 visitas en el mes de febrero ($84000) las visitas de mar y abr quedan en cero. 105000.00 21000.00 84000.00 2025-02-12 22:00:00+00 99699597197 123 128 111 1 e687b2mlgumk37b5bnjklmc0ko \N \N +2295 2025-08-29 19:45:26.291526+00 2025-08-29 19:45:26.291536+00 f t 2025-08-30 09:00:00 COMPLETED vaccination 3 Dosis de sextuple. 4 Meses Quedan $2000 a favor al tutor en senas, pago $19.000 64500.00 17000.00 47500.00 2025-08-30 12:00:00+00 M. Libre 7529 6193 1583 89 m53kdvvhq5js2h3qe6uj2rpo20 196 \N +2675 2025-09-28 19:06:16.699559+00 2025-09-28 19:06:16.699569+00 f t 2025-09-28 20:00:00 NO_REPORT clinical Parece tener una infección en el oído.Se rasca,tiene la oreja roja y se la lleva para atrás. 55000.00 11000.00 44000.00 2025-09-28 23:00:00+00 127844350960 9526 7930 114 70 stbqessnt3v9hqri8lgcuenlpg \N \N +2882 2025-10-14 17:24:02.576073+00 2025-10-14 17:24:02.576085+00 f t 2025-10-21 10:00:00 COMPLETED clinical Control cardiologico prequirugico. 107000.00 12000.00 95000.00 2025-10-21 13:00:00+00 0 10707 8891 1583 82 l0b5tjpsncpo2i94fein8ricr8 \N 1009 +2883 2025-10-14 17:56:32.121867+00 2025-10-14 17:56:32.121876+00 f t 2025-10-16 13:00:00 COMPLETED clinical chequeo general 46000.00 11000.00 35000.00 2025-10-16 16:00:00+00 129264583165 10709 8894 1208 114 s56uvrmvphchobp9f4s2duhp54 \N 1007 +2601 2025-09-22 23:39:13.557875+00 2025-09-22 23:39:13.557884+00 f t 2025-09-22 17:00:00 COMPLETED clinical Costras en la oreja, irritación y comezón en la zona 30000.00 30000.00 19500.00 2025-09-22 20:00:00+00 38945287034 9151 7583 114 80 v67ef1vd64tq3fsv9cm9avtoek \N \N +2644 2025-09-25 17:45:24.170079+00 2025-09-25 17:45:24.170088+00 f t 2025-09-25 21:00:00 COMPLETED clinical consulta generala 55000.00 11000.00 44000.00 2025-09-26 00:00:00+00 santander s/c 9345 7765 1583 92 q5fd2jcsi88taqbh8q72c8ii98 \N \N +1086 2025-05-02 18:37:33.390257+00 2025-05-02 18:37:33.390265+00 f t 2025-05-02 17:30:00 NO_REPORT clinical Le cuesta pararse 46000.00 9500.00 36500.00 2025-05-02 20:30:00+00 Cta- 000-603244/7 772 894 112 74 49n8u6t4d86mls36iukdusdn2s \N \N +2809 2025-10-07 21:46:59.740871+00 2025-10-07 21:46:59.74088+00 f t 2025-11-14 15:00:00 NO_REPORT clinical Inyectable 4/4 0.00 0.00 0.00 2025-11-14 18:00:00+00 0 160 169 1583 89 qhbj0qb6jmsatpgkgbk26lomjc \N 907 +105 2024-09-06 10:00:00+00 2024-09-06 10:00:00+00 f t 2024-09-06 10:00:00 COMPLETED Clinica Consulta clinica - Gata que está excedida de peso. Le cuesta bastante caminar y tiene una picazón que no sabemos si son pulgas porque se le aplicó la pipeta pero sigue de la misma manera Transaccion 87037366170 35000.00 15000.00 20000.00 2024-09-06 13:00:00+00 97 101 \N 2 74v8s5h5g4fr3udm01618s6ei8 \N \N +2774 2025-10-05 19:35:26.404433+00 2025-10-05 19:35:26.404442+00 f t 2025-10-05 17:30:00 COMPLETED clinical Orina seguido y con un poco de sangre \N 55000.00 11000.00 44000.00 2025-10-05 20:30:00+00 128716204688 10039 8307 \N 114 v1hullnt8tueu0mpcve8d9dg98 \N 855 +2676 2025-09-28 19:08:42.778374+00 2025-09-28 19:08:42.778383+00 t t 2025-09-28 20:00:00 PENDING clinical mi gatito toby de 3 años presenta arcadas, vomita saliva, ayer vomitó un poquito de saliva con sangre. Tambien noto que le cuesta comer, al masticar se le escucha raro y come poquito cuando antes era de buen comer y con los dientes rompia normalmente el alimento balanceado. es un gatito que lamentablemente no se deja tocar por extraños por lo cual le podria mandar videos si me lo indica. 30000.00 10500.00 19500.00 2025-09-28 23:00:00+00 127823762086 9514 7924 114 68 7ij35f55g0t1u6n9q46nukbatc \N \N +3032 2025-10-27 23:46:31.151044+00 2025-10-27 23:46:31.151057+00 f t 2025-10-28 16:30:00 COMPLETED clinical La perrita tiene un bulto en las mamas grande. Ahora no está comiendo, si toma agua. Pero esta tirada y le cuesta mucho caminar (si toma agua) la noto muy agitada por momentos \N 46000.00 11000.00 35000.00 2025-10-28 19:30:00+00 71962369 11658 9647 \N 88 kht0fuo6n07h32qtr5okd2rn20 \N 1243 +581 2025-02-04 13:02:36.530129+00 2025-02-04 13:02:36.530136+00 f t 2025-02-04 09:00:00 COMPLETED clinical Decaimiento, cambios en el comportamiento. 35000.00 7000.00 28000.00 2025-02-04 12:00:00+00 100849284893 413 492 111 1 i6lfu3ga4bc5pf5j3ckvf59ij0 \N \N +3054 2025-10-29 13:48:29.671284+00 2025-10-29 13:48:29.671294+00 f t 2025-10-29 12:00:00 COMPLETED clinical Es un perro de gran apetito pero ayer no quiso comer y le cuesta (o no quiere) pararse. Hay que insistirle mucho y ayudarla para que no se resbale. Parece dolerle la cadera. 55000.00 11000.00 44000.00 2025-10-29 15:00:00+00 131699085022 11818 9769 1208 1 q1b53l9fivjqvtlhu00d21l5rc \N 1272 +2523 2025-09-16 23:55:12.206984+00 2025-09-16 23:55:12.206989+00 f t 2025-09-18 08:00:00 COMPLETED clinical Procesamiento de muestra 0.00 0.00 0.00 2025-09-18 11:00:00+00 0 7897 6499 113 100 4grrcd9gjh0rmg14t7froj1o60 \N \N +2948 2025-10-20 15:44:55.952828+00 2025-10-20 15:44:55.952839+00 f t 2025-10-21 09:00:00 COMPLETED clinical Extraccion para perfil completo. 75400.00 52400.00 23000.00 2025-10-21 12:00:00+00 39309164656 11152 9246 1583 112 r6vci0otkvvv694eh24g719jtk \N 1115 +2479 2025-09-13 14:32:18.875751+00 2025-09-13 14:32:18.875759+00 f t 2025-09-13 12:30:00 COMPLETED clinical Decaimiento de 48 hs de evolución. Disminución de la ingesta de líquidos y comida 55000.00 11000.00 44000.00 2025-09-13 15:30:00+00 125481950725 8577 7061 1208 80 apibvim78fqqf9houarh9tlumk 54 \N +3077 2025-10-30 22:52:58.21512+00 2025-10-30 22:52:58.215128+00 f t 2025-10-31 08:00:00 NO_REPORT clinical perfil 7 derivado de rapela 48500.00 28500.00 20000.00 2025-10-31 11:00:00+00 131265748825 11977 9897 1208 85 ashauesn536rejt8r8nkhrrvpo \N 1305 +2245 2025-08-25 21:42:26.22066+00 2025-08-25 21:42:26.220671+00 f t 2025-08-26 17:30:00 COMPLETED vaccination Vacunacion anual (Antirrabica y triple felina) 72000.00 19000.00 53000.00 2025-08-26 20:30:00+00 123117174173 7288 5979 1583 91 35tkhivnp9f0e7at5hmiht5kv0 230 \N +2392 2025-09-05 13:23:24.018577+00 2025-09-05 13:23:24.018585+00 f t 2025-09-05 11:00:00 COMPLETED clinical Diarrea 55000.00 11000.00 44000.00 2025-09-05 14:00:00+00 124973899796 8036 6623 1583 1 30knu9qj05cpsls1dgni55ur3g 134 \N +3031 2025-10-27 23:20:34.826401+00 2025-10-27 23:20:34.82641+00 f t 2025-10-29 19:30:00 COMPLETED clinical Hola, la gata tiene algun problema urinario, comenzo a ir muy seguido a las piedritas y vi unas gotitas de sangre en la orina \N 46000.00 11000.00 35000.00 2025-10-29 22:30:00+00 130933288311 11644 9637 \N 92 nnr3b675qh2r5442suna2bhq9g \N 1239 +2298 2025-08-30 00:20:23.887419+00 2025-08-30 00:20:23.887432+00 f t 2025-09-06 09:00:00 NO_REPORT clinical Rx x2 80000.00 15000.00 65000.00 2025-09-06 12:00:00+00 86VRPQ2GVJ8KY6XJ2GLY0M 7443 6127 113 84 422e0r0emhfu9tjskdd1flp5gg 125 \N +2915 2025-10-17 00:29:44.653264+00 2025-10-17 00:29:44.653272+00 f t 2025-10-16 21:30:00 COMPLETED clinical Vomitos a repeticion, paciente con temperamento- teleconsulta \N 30000.00 30000.00 19500.00 2025-10-17 00:30:00+00 30-71742069-8. 10911 9054 \N 80 2vssd10oj94hqalsmovjfdrfco \N 1056 +2431 2025-09-09 14:29:30.645238+00 2025-09-09 14:29:30.645249+00 f t 2025-09-10 13:00:00 NO_REPORT clinical PRECX PARA CIRUGIa 95000.00 10000.00 85000.00 2025-09-10 16:00:00+00 124951799825 8275 6835 1208 82 4oo60phm8kf2bchd483bk1pkig 87 \N +656 2025-02-15 21:25:36.144139+00 2025-02-15 21:25:36.144148+00 f t 2025-02-17 10:30:00 NO_REPORT clinical Dificultad motriz y disminución en la alimentación 35000.00 7000.00 28000.00 2025-02-17 13:30:00+00 102064096989 454 537 114 74 hnhtrh6444cb604qd2q98ir4is \N \N +3004 2025-10-25 14:01:50.0699+00 2025-10-25 14:01:50.069908+00 f t 2025-10-27 16:00:00 NO_REPORT clinical ecografia abdominal desc. recompra, pago junto con laboratorio + extraccion 70200.00 5200.00 65000.00 2025-10-27 19:00:00+00 131247472324 11302 9364 1208 90 5npti30a1u4k4vr41cd73tvkmk \N 1200 +2982 2025-10-23 15:06:05.40566+00 2025-10-23 15:06:05.405671+00 f t 2025-10-28 12:00:00 NO_REPORT clinical Ecocardiograma. 107000.00 12000.00 95000.00 2025-10-28 15:00:00+00 69316650 10716 8899 1583 82 ouhl78v8pekqq6uici95svtpd0 \N 1172 +3049 2025-10-28 20:50:15.634066+00 2025-10-28 20:50:15.634075+00 f t 2025-10-30 14:00:00 COMPLETED clinical Ecografia abdominal. 68000.00 13000.00 55000.00 2025-10-30 17:00:00+00 72434654 11658 9647 1583 90 bclsvoa18itkkofagr1rfcsvdk \N 1262 +3074 2025-10-30 19:16:13.081769+00 2025-10-30 19:16:13.08178+00 f t 2025-11-01 10:30:00 NO_REPORT clinical Es un gato q no se deja agarrar, no puedo meterlo en la transportadora. Hace varias semanas q tiene una tos seca, pense q era de pelos pero no vomita ni saca nada. 46000.00 11000.00 35000.00 2025-11-01 13:30:00+00 BBVA 11894 9837 1583 114 lh0ikjec3q1g14aetbj0uc1ip0 \N 1291 +1874 2025-07-24 21:03:41.397058+00 2025-07-24 21:03:41.397064+00 f t 2025-07-25 09:30:00 COMPLETED clinical Retiro de muestras mas laboratorio 120500.00 120500.00 0.00 2025-07-25 12:30:00+00 38163362208 5196 4270 1026 100 4tujgcgvqodrknk76idve6ro54 544 \N +3073 2025-10-30 18:42:00.035665+00 2025-10-30 18:42:00.035674+00 f t 2025-11-06 13:30:00 NO_REPORT clinical Corte de garras 30700.00 7700.00 23000.00 2025-11-06 16:30:00+00 131854248066 11962 9879 1208 104 cc0nf8ms6fehb5rv9ne7n87lc8 \N 1300 +2480 2025-09-13 16:49:27.168539+00 2025-09-13 16:49:27.168546+00 f t 2025-09-16 09:30:00 COMPLETED clinical vac. anual descuento recompra 70200.00 13700.00 56500.00 2025-09-16 12:30:00+00 f68cd929-320e-4ac5-92a2-a7f0d3 8439 6955 1208 80 1isoj9pshdrs8vq0phi0no8bk8 42 \N +2432 2025-09-09 15:27:25.530829+00 2025-09-09 15:27:25.530841+00 f t 2025-09-09 21:00:00 COMPLETED clinical Dolor intenso, suponemos qué proviene de una bola de supuestamente benigna en la axila derecha, pero se le ha expandido a la pata y cuello. 55000.00 11000.00 44000.00 2025-09-10 00:00:00+00 81798687 8287 6823 1208 80 1ojah896jsmhirg0gavpqihvuc 90 \N +2602 2025-09-22 23:43:40.631088+00 2025-09-22 23:43:40.631097+00 f t 2025-09-24 20:00:00 COMPLETED clinical Ojos hinchados 46000.00 11000.00 35000.00 2025-09-24 23:00:00+00 38946290426 9135 7565 114 80 12fk0p9ifild1k6o2cbh38rs88 \N \N +3055 2025-10-29 14:06:13.140516+00 2025-10-29 14:06:13.140525+00 f t 2025-10-30 08:00:00 NO_REPORT clinical Hace unos dias tiene la pancita un poco hinchada cerca de las patas traseras, esta bien de animo. 46000.00 11000.00 35000.00 2025-10-30 11:00:00+00 131108714131 11780 9738 1208 96 uioj92m25bsjncb0ujfqa19pj8 \N 1275 +835 2025-03-18 19:15:17.389892+00 2025-03-18 19:15:17.389901+00 f t 2025-03-19 19:00:00 COMPLETED clinical Consulta clínica\r\nEstá o estuvo tomando alguna medicación en los últimos 7 días? No\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Si 38500.00 8500.00 30000.00 2025-03-19 22:00:00+00 \N 578 676 110 70 hl2hquhqhu572bk8ovv90ifqb4 \N \N +969 2025-04-10 21:09:43.980995+00 2025-04-10 21:09:43.981003+00 f t 2025-04-11 12:00:00 NO_REPORT vaccination Resfuerzo + corte de uña para el gatito y control clinico Choe alergias en la piel 104500.00 25500.00 79000.00 2025-04-11 15:00:00+00 67REZ8NPW7YGL0QK94KVGO 655 772 113 88 a7614a4sfnsgpcpfhkf62vo6c4 \N \N +2645 2025-09-25 19:04:22.713268+00 2025-09-25 19:04:22.713278+00 f t 2025-09-27 08:30:00 COMPLETED clinical Extraccion de sangre perfil 6+fosforo+t4+igf1+orina+prot+creat $43.900 extraccion y traslado\r\n$20.000 hepatograma\r\n$20.500 perfil renal\r\n$9.500 hemograma 93900.00 70900.00 23000.00 2025-09-27 11:30:00+00 127521209104 9340 7760 1583 112 02a3qg1vsi8agq034jmvjhghhg \N \N +2524 2025-09-16 23:55:35.60355+00 2025-09-16 23:55:35.60356+00 f t 2025-09-18 08:00:00 COMPLETED clinical Procesamiento de muestra 0.00 0.00 0.00 2025-09-18 11:00:00+00 0 7897 6499 113 100 dtmjpjbvt8mul8399ialgbqbo4 \N \N +2708 2025-09-30 23:59:07.034347+00 2025-09-30 23:59:07.034356+00 f t 2025-10-06 17:00:00 NO_REPORT clinical 39000.00 39000.00 30000.00 2025-10-06 20:00:00+00 RD06ZO9W17PP5JQK25GP7X 9712 8096 \N 98 i1qqi2nhmjr23vq584hk3u2bbs \N \N +2916 2025-10-17 13:02:01.316658+00 2025-10-17 13:02:01.31667+00 f t 2025-10-17 13:30:00 COMPLETED clinical Alergia, se queda con la boca abierta, estornuda mucho. 55000.00 11000.00 44000.00 2025-10-17 16:30:00+00 XJ8G7V95EW5EZOMRZEMPYR 10895 9039 1583 68 t6eum3mhno4u82klp28oreq2bo \N 1054 +3033 2025-10-27 23:54:17.398953+00 2025-10-27 23:54:17.398961+00 f t 2025-10-28 15:00:00 NO_REPORT clinical Ecografía Abdominal \N 78000.00 13000.00 65000.00 2025-10-28 18:00:00+00 130938960337 541 9621 \N 90 9blhqbanm7rnn7lnp4advcs0gg \N 1244 +2246 2025-08-25 21:46:06.52832+00 2025-08-25 21:46:06.528328+00 f t 2025-08-25 21:00:00 COMPLETED clinical Consulta de seguimiento, no responde al tratamiento 50000.00 10000.00 40000.00 2025-08-26 00:00:00+00 LMORZP905XJR7QK6NEGJ46 7191 5896 1583 92 soruo3p92mgbr9cl7nmqpclm9c 241 \N +2884 2025-10-14 18:29:17.343375+00 2025-10-14 18:29:17.343383+00 f t 2025-10-15 20:30:00 COMPLETED clinical Control post estudios Se le debe $19500 a la vete 30000.00 30000.00 19500.00 2025-10-15 23:30:00+00 3D5W612EJZ4Q656L9GXYVR 9861 8150 1583 113 8dhpphfh8m4f4krutvshv6jkn0 \N 1011 +978 2025-04-14 14:18:48.725521+00 2025-04-14 14:18:48.725529+00 f t 2025-04-14 12:00:00 NO_REPORT vaccination 1er visita cachorro perro. vacunacion abonar a la vete 44mil 59500.00 60000.00 44000.00 2025-04-14 15:00:00+00 108375888164 388 779 111 88 ilp3sdjmif9j9r2eh78dutceq0 \N \N +3005 2025-10-25 14:02:58.174936+00 2025-10-25 14:02:58.174945+00 f t 2025-10-27 15:30:00 COMPLETED clinical extraccion de sangre perfil general completo con orina + upc descuento recompra, en el mismo pago seño la ecografia 70110.00 47110.00 23000.00 2025-10-27 18:30:00+00 131247472324 11302 9364 1208 112 3nornmkfk0np7s8dlu381687hg \N 1201 +2367 2025-09-03 14:17:36.017564+00 2025-09-03 14:17:36.017574+00 f t 2025-09-03 12:00:00 COMPLETED clinical Sangrado de nariz, no se levanta de la cama, tiene el cuerpo duro. Tiene 11 años 55000.00 11000.00 44000.00 2025-09-03 15:00:00+00 124710324104 7886 6492 1208 1 6ss0boh4bn38mv0llg50uqsdis 152 \N +3196 2025-11-08 19:15:39.132598+00 2025-11-08 19:15:39.132609+00 f t 2025-11-09 10:00:00 COMPLETED clinical control de estudios y paciente. 55000.00 11000.00 44000.00 2025-11-09 13:00:00+00 81651940 12527 10350 1208 88 tbaqph9jf92m7h46muv0u1jldg \N 1488 +2983 2025-10-23 15:16:00.198413+00 2025-10-23 15:16:00.198423+00 f t 2025-10-24 10:00:00 COMPLETED clinical Extraccion para prequirurgico 76400.00 53400.00 23000.00 2025-10-24 13:00:00+00 69329188 10716 8899 1583 112 qfoqg67qpldhanv826t6denro4 \N 1171 +2677 2025-09-28 19:10:06.672147+00 2025-09-28 19:10:06.672159+00 f t 2025-09-28 19:30:00 COMPLETED clinical mi gatito toby de 3 años presenta arcadas, vomita saliva, ayer vomitó un poquito de saliva con sangre. Tambien noto que le cuesta comer, al masticar se le escucha raro y come poquito cuando antes era de buen comer y con los dientes rompia normalmente el alimento balanceado. es un gatito que lamentablemente no se deja tocar por extraños por lo cual le podria mandar videos si me lo indica. Telemedicina. Transferir los $19500 a la vete 30000.00 30000.00 19500.00 2025-09-28 22:30:00+00 127823762086 9514 7924 \N 68 0ku30pu1ckoln8gmf42tuioku8 \N \N +2775 2025-10-05 19:38:38.944468+00 2025-10-05 19:38:38.944479+00 f t 2025-10-06 22:00:00 COMPLETED clinical ECP + Ecocardiograma 107000.00 12000.00 95000.00 2025-10-07 01:00:00+00 55482309 10054 8320 114 82 0ioi7v8n5q5rnf5rsuqlgq2eq4 \N 858 +2949 2025-10-20 15:47:40.025911+00 2025-10-20 15:47:40.025923+00 f t 2025-10-21 10:00:00 COMPLETED clinical Perfil completo. 0.00 0.00 0.00 2025-10-21 13:00:00+00 0 11152 9246 1583 100 mmmu2hf687gmj63km02g2kil20 \N 1118 +3091 2025-10-31 23:00:29.745212+00 2025-10-31 23:00:29.745225+00 f t 2025-11-01 11:00:00 COMPLETED clinical Dolor de patas, posible artrosis por vejez. 55000.00 11000.00 44000.00 2025-11-01 14:00:00+00 131427041769 12093 9998 1208 80 9b1f9a12phffa7oguu5jfa6eno \N 1333 +2364 2025-09-03 00:50:54.609576+00 2025-09-03 00:50:54.609586+00 f t 2025-09-04 19:30:00 COMPLETED clinical Diarrea a repeticion 46000.00 11000.00 35000.00 2025-09-04 22:30:00+00 0TGD-915E-ACAT 7841 6453 113 92 pm7ih463q1901dcds5lstke3nk 139 \N +2810 2025-10-07 21:54:43.841915+00 2025-10-07 21:54:43.841925+00 f t 2025-10-10 15:30:00 COMPLETED clinical ecografia abdominal \N 68000.00 13000.00 55000.00 2025-10-10 18:30:00+00 Modo 10208 8476 \N 90 ih55qid2ed02h88gjd3aaejef0 \N 903 +1735 2025-07-11 23:52:57.781381+00 2025-07-11 23:52:57.781388+00 f t 2025-07-06 12:00:00 NO_REPORT clinical Control clinico 100000.00 20000.00 80000.00 2025-07-06 15:00:00+00 117784252965 301 355 113 88 7svnvlfftjhv3tmp38s0db9pd4 697 \N +3318 2025-11-19 13:20:39.800712+00 2025-11-19 13:20:39.80072+00 f t 2025-11-19 12:00:00 COMPLETED clinical muestra de orina 22700.00 22700.00 0.00 2025-11-19 15:00:00+00 100982912072 13661 11265 1208 100 6o19jgiu63uncsvrr5d06924uk \N 1669 +1291 2025-05-27 13:48:46.41711+00 2025-05-27 13:48:46.417117+00 f t 2025-05-27 11:00:00 COMPLETED telemedicina Hace 48 horas que no defeca. Está tomando corticoides y antibióticos porque salió de estar internado el jueves pasado. Tiene una ataxia y parálisis leve del lado izquierdo. Tengo consulta programada con neuróloga pero como no defeca tengo que consultar a un clínico mientras tanto abonarle a la vete 25000.00 25000.00 16000.00 2025-05-27 14:00:00+00 112968541140 1605 1548 112 94 2va8dmvlvtsoeurjedhi4nbufo \N \N +1084 2025-05-01 19:06:20.675348+00 2025-05-01 19:06:20.675429+00 f t 2025-05-06 08:30:00 COMPLETED vaccination Vacunación anual Pagarle a la vete $49.000 (n° trans 110571920226) 66000.00 66000.00 66000.00 2025-05-06 11:30:00+00 1423975879 764 889 112 94 d15pc4p9lkr8f7ugj54a2iovs8 \N \N +2620 2025-09-24 15:02:17.267408+00 2025-09-24 15:02:17.267417+00 f t 2025-09-25 16:30:00 NO_REPORT clinical extraccion de sonda + chequeo descuento recompra 41400.00 6400.00 35000.00 2025-09-25 19:30:00+00 126813712633 822 928 1208 89 9dbejvg8ceuicmvebokd93sau0 \N \N +3252 2025-11-12 23:27:27.329372+00 2025-11-12 23:27:27.32938+00 f t 2025-11-17 09:00:00 COMPLETED clinical Ecografia abdominal. 80000.00 12000.00 70000.00 2025-11-17 12:00:00+00 39643541381 13103 10814 1583 103 8jdbnhj2g3rurrpotpud0mp8kk \N 1563 +737 2025-02-27 18:11:44.356265+00 2025-02-27 18:11:44.356275+00 f t 2025-02-27 19:00:00 NO_REPORT clinical castrado el sábado y tiene una costra encima de la herida. cheque si está todo bien y recomendaciones para curaciones y recuperacion 41600.00 8600.00 33000.00 2025-02-27 22:00:00+00 103221620137 512 604 111 70 ri1ba19jta3t86fo60a45c56gc \N \N +1159 2025-05-13 15:18:07.537496+00 2025-05-13 15:18:07.537503+00 f t 2025-05-13 18:30:00 COMPLETED clinical paciente desmejorado que le cuesta levantarse + corte de garras 53700.00 11700.00 42000.00 2025-05-13 21:30:00+00 11108615424 979 1075 112 94 o82b2n7g5bev5dra0mgor62gbo \N \N +2536 2025-09-17 22:13:04.740685+00 2025-09-17 22:13:04.740692+00 f t 2025-09-19 09:00:00 NO_REPORT clinical Vomitos, consulta general 46000.00 11000.00 35000.00 2025-09-19 12:00:00+00 126020643939 8814 7284 1583 94 s7vv7omi7ak0ahihnp84vds6r4 6 \N +2917 2025-10-17 13:12:20.082528+00 2025-10-17 13:12:20.082539+00 f t 2025-10-22 12:30:00 COMPLETED clinical segunda dosis de sextuple 70000.00 19000.00 51000.00 2025-10-22 15:30:00+00 130280193618 10933 9073 1583 1 tvd7r4qnchr082tngeo0k5s2oc \N 1058 +2603 2025-09-23 00:24:25.262062+00 2025-09-23 00:24:25.26207+00 f t 2025-09-27 12:00:00 COMPLETED clinical 3 Vacunaciones anuales y 1 séxtuple 273600.00 53100.00 220500.00 2025-09-27 15:00:00+00 126631640347 9157 7587 114 1 i3i9jqsvo6f6ce0juaf08q2sdk \N \N +2433 2025-09-09 15:43:54.895116+00 2025-09-09 15:43:54.895125+00 f t 2025-09-10 08:00:00 NO_REPORT clinical perfil prequirurgicos para cirugia 76400.00 53400.00 23000.00 2025-09-10 11:00:00+00 125509805228 8275 6835 1208 85 801q5s62lmtubtgk2gf18thhjc 89 \N +2978 2025-10-22 23:52:01.075216+00 2025-10-22 23:52:01.075226+00 f t 2025-10-23 20:00:00 COMPLETED clinical Encontré un gatito bebé en la calle y lo voy a adoptar y quisiera bebehacerle un chequeo, desparasitarlo , vacunas, etc.\r\nMuchas gracias! sumamos desparacitacion interna y ext 77000.00 17000.00 60000.00 2025-10-23 23:00:00+00 130364496851 11361 9410 1208 92 4sfitmpiseoblhibfbmdm97to8 \N 1166 +2340 2025-09-01 22:08:03.350982+00 2025-09-01 22:08:03.35099+00 f t 2025-09-13 11:30:00 NO_REPORT clinical fluidoterapia 0.00 0.00 0.00 2025-09-13 14:30:00+00 WGRXJE27GM5P80KJN7MYQL 6619 5396 113 112 c63t23bj597qld1f5vtlfa3n6g \N \N +3179 2025-11-07 12:17:48.230016+00 2025-11-07 12:17:48.230024+00 f t 2025-11-07 14:30:00 NO_REPORT clinical Extraccion para prequierugicos. Valor incluye traslado,laboratorio 76400.00 53400.00 23000.00 2025-11-07 17:30:00+00 XJ8G7V5SDJ4E5PMW9EMPYR 12361 10214 1583 85 0m1totejfmmjkf295rf51le78s \N 1461 +3094 2025-11-01 14:21:15.755066+00 2025-11-01 14:21:15.755074+00 f t 2025-11-01 13:00:00 COMPLETED clinical debe adminitrarle dexametasona inyectable, paciente con cancer terminal desc. recompra 49500.00 5500.00 44000.00 2025-11-01 16:00:00+00 131483519731 5249 5900 1208 68 i38lumbqejleab1b4th3v84uv8 \N 1340 +2811 2025-10-08 14:11:35.767708+00 2025-10-08 14:11:35.76772+00 f t 2025-10-08 19:00:00 COMPLETED clinical Orden para una ecografia. 78000.00 13000.00 65000.00 2025-10-08 22:00:00+00 128546688563 10239 8499 1208 90 ui5aol8kno7hkftm7m6ee4scjo \N 909 +3034 2025-10-27 23:57:16.217575+00 2025-10-27 23:57:16.217624+00 f t 2025-10-27 19:00:00 COMPLETED clinical Tiene como una especie de cortecito en la zona cercana al ano 63000.00 11000.00 52000.00 2025-10-27 22:00:00+00 131508975940 11639 9632 114 21 00qtg5kq05pcb09oi7rho89ai4 \N 1237 +2739 2025-10-02 20:25:00.896985+00 2025-10-02 20:25:00.896996+00 f t 2025-10-03 11:00:00 COMPLETED clinical Vacunacion anual 78000.00 21500.00 56500.00 2025-10-03 14:00:00+00 128376147230 9889 8173 1583 1 kn06bcl2rakp4e9k011tbps8b4 \N 807 +3092 2025-10-31 23:19:04.264538+00 2025-10-31 23:19:04.264551+00 f t 2025-11-03 20:00:00 COMPLETED clinical telemedicina para revision de estudios 27000.00 27000.00 19500.00 2025-11-03 23:00:00+00 131426871747 11302 9364 1208 88 15eej63gsmd0khlknf96u7f5a0 \N 1335 +2738 2025-10-02 19:46:19.448229+00 2025-10-02 19:46:19.44824+00 f t 2025-11-01 10:30:00 NO_REPORT clinical Sesion 4/4 de fisioterapia 0.00 0.00 0.00 2025-11-01 13:30:00+00 128367891606 9641 8030 1583 67 lk7tp17e07vh8dul7264nmbklo \N 806 +2393 2025-09-05 15:07:31.804594+00 2025-09-05 15:07:31.804603+00 f t 2025-09-05 19:30:00 NO_REPORT telemedicina Consulta por resultado de analisis 30000.00 30000.00 0.00 2025-09-05 22:30:00+00 124443494445 4334 5903 1583 68 l4spg2etrc7boteagrcplplk7o 128 \N +2776 2025-10-05 19:42:58.301846+00 2025-10-05 19:42:58.301854+00 f t 2025-10-06 20:30:00 NO_REPORT clinical Extracción de Sangre 76400.00 53400.00 23000.00 2025-10-06 23:30:00+00 000 10054 8320 114 106 ldpv66lmjr2tjnku3i1t8rrujk \N 861 +2848 2025-10-11 13:26:57.589018+00 2025-10-11 13:26:57.589027+00 f t 2025-10-11 12:00:00 COMPLETED clinical se corto la pata con un vidrio, la herida finalmente no es profunda, ya no sangra 55000.00 11000.00 44000.00 2025-10-11 15:00:00+00 128942569585 10465 8696 1208 1 kt6j6p3c4cqrvmv4emdnnkucc4 \N 962 +2950 2025-10-20 16:25:20.071827+00 2025-10-20 16:25:20.071837+00 f t 2025-10-21 17:30:00 NO_REPORT clinical Ecocardiograma. 107000.00 12000.00 95000.00 2025-10-21 20:30:00+00 RD06ZO9WV81WMO01N5GP7X 11140 9238 1583 82 t294oub4fs9p3forp0gkc72dqg \N 1111 +2885 2025-10-14 18:45:51.566684+00 2025-10-14 18:45:51.566693+00 f t 2025-10-15 18:00:00 COMPLETED clinical Ecografia abdominal. 68000.00 13000.00 55000.00 2025-10-15 21:00:00+00 63067747 10613 8812 1583 90 mbl9onclok7b3qfnm7j9ku3ki4 \N 1014 +2678 2025-09-28 19:17:52.570719+00 2025-09-28 19:17:52.570729+00 f t 2025-09-28 11:30:00 COMPLETED clinical Vomitos Continuos y Diarrea Líquida 55000.00 11000.00 44000.00 2025-09-28 14:30:00+00 127263015405 9551 7949 114 80 mp8j7levhlg5lv22pjmb3kc2b4 \N \N +2709 2025-10-01 00:11:35.65335+00 2025-10-01 00:11:35.653363+00 f t 2025-10-01 16:00:00 COMPLETED clinical 46000.00 11000.00 35000.00 2025-10-01 19:00:00+00 127566904479 9716 8098 113 114 34o1damfjppvr3t0lbkus662bo \N \N +2525 2025-09-16 23:57:57.775994+00 2025-09-16 23:57:57.776002+00 f t 2025-09-16 21:00:00 COMPLETED clinical Teleconsulta No estaba modificado el valor nuevo en el mensaje del excel. Ya lo modifique. \r\nAbonarle a daniela 19.500 27500.00 27500.00 19500.00 2025-09-17 00:00:00+00 \N 7243 5944 113 68 36tl7j4irft0t7ou6117llng00 28 \N +3056 2025-10-29 14:25:46.254729+00 2025-10-29 14:25:46.25474+00 t t 2025-10-30 18:30:00 COMPLETED clinical Consulta post estudios. Se le debe 19500 al vete 30000.00 30000.00 0.00 2025-10-30 21:30:00+00 131704402966 10707 8891 1583 68 p3nbo4vimm941iqjs1s5a6df30 \N 1266 +119 2024-10-30 14:13:09.339+00 2024-10-30 14:13:09.339+00 f t 2024-09-12 09:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Consulta clínica (estreñimiento) + vacunación anual + desparasitación interna ext +5kg Transaccion 87677062328 53000.00 18000.00 35000.00 2024-09-12 12:00:00+00 108 113 114 2 6fl3v3idcdsorekf45roovgd64 \N \N +2604 2025-09-23 13:12:38.823218+00 2025-09-23 13:12:38.823227+00 f t 2025-09-23 19:30:00 COMPLETED clinical Un ojo le supura y se le forma una lagaña larga, líquida y amarilla. 55000.00 11000.00 44000.00 2025-09-23 22:30:00+00 126678700227 9176 7605 1208 70 1ecr5eevq038e2ppkn0fiht96g \N \N +151 2024-10-30 14:13:09.639+00 2024-10-30 14:13:09.639+00 f t 2024-09-30 18:00:00 COMPLETED Clinica Perra, 14 años que no puede caminar. Es como que los cuartos traseros cayeron o algo asi, al tocarla le duele Transaccion 89211764462 41600.00 15600.00 26000.00 2024-09-30 21:00:00+00 133 140 \N 1 q98545bui5497hd99cjm2evgao \N \N +3198 2025-11-08 19:49:45.952227+00 2025-11-08 19:49:45.952235+00 f t 2025-11-10 20:00:00 NO_REPORT clinical clinica, extraccion y pcr vif/vilef sin cargo, por error de cami lorenzo 0.00 0.00 0.00 2025-11-10 23:00:00+00 0 12446 10278 1208 94 3i8l6o33hh14e4ccobh3068f6s \N 1491 +2646 2025-09-25 19:42:13.772896+00 2025-09-25 19:42:13.772905+00 f t 2025-09-26 13:00:00 COMPLETED clinical 46000.00 11000.00 35000.00 2025-09-26 16:00:00+00 127525289488 9353 7771 1583 1 r696sh6basf4kp9798g8q3ad3s \N \N +406 2025-01-13 17:22:55.054+00 2025-01-13 17:22:55.054+00 f t 2025-01-14 20:30:00 COMPLETED vaccination vacunacion anual 60750.00 15750.00 45000.00 2025-01-14 23:30:00+00 \N 266 335 111 68 cnr6l11ad8fg70rpbtt5ef85bk \N \N +48 2024-07-17 19:00:00+00 2024-07-17 19:00:00+00 f t 2024-07-17 19:00:00 COMPLETED Vacunación x 2 animales Consulta clinica + vacunación x 2 gatos - Tiler macho de 2 años hace 2 meses tiene diarrea, se le cambio la comida a una intestinal y no mejoró Transaccion 83046287382 94000.00 47000.00 60000.00 2024-07-17 22:00:00+00 47 48 \N 1 fi0f0qqbi2op76v3tfi1avuhr0 \N \N +3217 2025-11-10 23:15:00.143635+00 2025-11-10 23:15:00.143644+00 f t 2025-11-11 11:00:00 COMPLETED clinical Muestra para prequirurgico 0.00 0.00 0.00 2025-11-11 14:00:00+00 0 12866 10618 1583 100 2i15ke1ncj1ukgqb4k4rpq9p68 \N 1517 +1905 2025-07-28 16:04:15.066324+00 2025-07-28 16:04:15.066331+00 f t 2025-07-28 19:30:00 COMPLETED clinical Desde el viernes está yendo continuamente al baño a hacer pis por más que no tiene nada para hacer. Estuvo con un cálculo en la vejiga que le generaba inflamación, no ha habido infección hasta ahora ni obstruccion de la vía urinaria.\r\n\r\nHasta ahora una inyección de tramadol + meloxicam es lo más eficiente para solucionar la urgencia. 50000.00 10000.00 40000.00 2025-07-28 22:30:00+00 119647358591 3848 3249 1026 79 pcl2771t119g291vuloi1ig9qg 516 \N +2926 2025-10-17 16:41:01.761927+00 2025-10-17 16:41:01.761936+00 f t 2025-10-17 18:00:00 COMPLETED clinical Es una Golden viejita, está caída y no está comiendo. 55000.00 11000.00 44000.00 2025-10-17 21:00:00+00 ORD6LEN87YXZPZ0Y2M1Y30 10963 9096 1583 1 m6n1rh8ef637kksas7gfn4v76o \N 1070 +2434 2025-09-09 15:44:24.202602+00 2025-09-09 15:44:24.202609+00 f t 2025-09-10 08:30:00 COMPLETED clinical perfil precx 0.00 0.00 0.00 2025-09-10 11:30:00+00 125509805228 8275 6835 1208 100 f9bu5b5odehe3rbjm3qeu05uk8 \N \N +2740 2025-10-02 21:06:01.00626+00 2025-10-02 21:06:01.00627+00 f t 2025-10-08 13:00:00 NO_REPORT clinical Consulta Cardiologica $110.000 es el valor del estudio 122000.00 12000.00 110000.00 2025-10-08 16:00:00+00 128381493826 9126 7557 1583 82 sknf2sf6ljisgd0sffb0lkn8co \N 809 +2365 2025-09-03 13:47:49.052092+00 2025-09-03 13:47:49.052101+00 f t 2025-09-15 13:30:00 COMPLETED clinical Control por pequeño soplo. 95000.00 10000.00 85000.00 2025-09-15 16:30:00+00 124161928389 7853 6462 1208 82 284g6rbd7je1p3368c49ndr0ag 49 \N +3007 2025-10-25 15:01:55.400944+00 2025-10-25 15:01:55.400956+00 f t 2025-10-25 14:00:00 COMPLETED clinical traslado + extraccion de sangre perfl general completo sin orina desc recompra 40230.00 40230.00 0.00 2025-10-25 17:00:00+00 70684448 11447 9474 1208 100 otjo0b5mo3t00nlb3n95at90is \N 1204 +2985 2025-10-23 15:58:49.64339+00 2025-10-23 15:58:49.643399+00 f t 2025-10-23 16:30:00 COMPLETED clinical No come. Le cuesta defecar y vomito amarillo. 55000.00 11000.00 44000.00 2025-10-23 19:30:00+00 130433464353 11387 9430 1208 1 b3nju5fs3bcrepm9sa9j28dv7g \N 1174 +2812 2025-10-08 14:19:38.602356+00 2025-10-08 14:19:38.602369+00 f t 2025-10-08 11:00:00 COMPLETED clinical Analisis de sangre y coagulograma 0.00 0.00 0.00 2025-10-08 14:00:00+00 0 10054 8320 1583 100 ne80isp51g89hfd4mun17p6p3c \N 913 +3006 2025-10-25 14:03:09.907759+00 2025-10-25 14:03:09.907769+00 f t 2025-10-27 17:00:00 COMPLETED clinical extraccion de sangre perfil general completo con orina + upc 0.00 0.00 0.00 2025-10-27 20:00:00+00 131247472324 11302 9364 1208 100 tk3mo4cjlndb9nuep9codfitic \N 1202 +2560 2025-09-19 12:22:53.13486+00 2025-09-19 12:22:53.134867+00 f t 2025-09-22 15:30:00 COMPLETED clinical 3ra dosis de sextuple 70000.00 19000.00 51000.00 2025-09-22 18:30:00+00 38907262559 7529 6193 1583 89 pd61v4m32p32tj602vurssko8k \N \N +2918 2025-10-17 13:22:39.233351+00 2025-10-17 13:22:39.23336+00 f t 2025-10-18 09:00:00 COMPLETED clinical Vomitos recurrentes. 55000.00 11000.00 44000.00 2025-10-18 12:00:00+00 130281259738 619 724 1583 80 m0r64vgq6l7lif3vg0nl86uvq8 \N 1053 +2886 2025-10-14 18:46:36.266202+00 2025-10-14 18:46:36.26621+00 f t 2025-10-14 18:00:00 COMPLETED clinical Esta con vomitos desde hace 3 dias. Lo que come no lo puede retener. Hace poca caca, de color oscura. Le cambiamos la dieta a pollo pero la cosa no mejora. 55000.00 11000.00 44000.00 2025-10-14 21:00:00+00 63064364 10716 8899 1208 114 fkku8abb32qp1fbt96vng1tpfk \N 1010 +3180 2025-11-07 12:22:10.667098+00 2025-11-07 12:22:10.667109+00 f t 2025-11-07 15:30:00 COMPLETED clinical Muestra para prequirurgico. 0.00 0.00 0.00 2025-11-07 18:30:00+00 0 12361 10214 1583 100 ipptrudrhqeqqe9ckhmsnao9n0 \N 1465 +2951 2025-10-20 16:50:08.115148+00 2025-10-20 16:50:08.115157+00 f t 2025-10-20 19:30:00 COMPLETED clinical Tiene mal la patita derecha, hace un par de semanas, disponible cualquier dia despues de las 18h \N 55000.00 11000.00 44000.00 2025-10-20 22:30:00+00 Z6OLMDN3VMX6JO562E7RQ5 439 519 \N 70 d173old0djblrls54ld4up1j68 \N 1109 +327 2024-12-09 16:55:51.169+00 2024-12-09 16:55:51.169+00 f t 2024-10-31 09:00:00 COMPLETED telemedicina Evacuar dudas y seguimiento Transacción 91914048942 24000.00 24000.00 15000.00 2024-10-31 12:00:00+00 123 128 114 1 bes2efq0eqrfelk34db55enfms \N \N +515 2025-01-29 21:07:07.950434+00 2025-01-29 21:07:07.950441+00 f t 2025-03-12 17:30:00 COMPLETED clinical control clinico + drenaje glandulas la clienta pago 105000 por pack 3 turnos. feb, mar. abr. Al vete se le pago las 3 visitas en el mes de febrero ($84000) las visitas de mar y abr quedan en cero. 0.00 0.00 0.00 2025-03-12 20:30:00+00 \N 123 128 111 1 0blh1q9de7kb80i6u6c3k7bsm8 \N \N +2481 2025-09-13 19:16:42.21628+00 2025-09-13 19:16:42.216288+00 f t 2025-09-14 11:00:00 COMPLETED clinical Tiene el ojo completamente cerrado ,con secreción . No sé queja directamente,pero hace 14 horas que está asi 55000.00 11000.00 44000.00 2025-09-14 14:00:00+00 126071194612 8583 7067 1208 80 er3b5iog44alkfr8jiai4f39m0 52 \N +2777 2025-10-05 19:53:51.661559+00 2025-10-05 19:53:51.661568+00 f t 2025-10-05 14:00:00 COMPLETED clinical Ojo hinchado y colorado \N 55000.00 11000.00 44000.00 2025-10-05 17:00:00+00 1887762953 10031 8300 \N 92 5j4ufd2cffv19d5pfkpb2lfe2c \N 854 +2609 2025-09-23 16:09:07.877445+00 2025-09-23 16:09:07.877454+00 f t 2025-09-28 11:00:00 COMPLETED clinical Control 46000.00 11000.00 35000.00 2025-09-28 14:00:00+00 127259584226 4433 3688 1583 80 4csu7ml7d0d4d8ec3gcf7goen4 \N \N +3072 2025-10-30 16:29:30.672954+00 2025-10-30 16:29:30.672964+00 f t 2025-10-31 17:00:00 COMPLETED clinical Está extremadamente llorona, pero no parece dolerle nada, es... Emocional, quiere estar pegada a nosotros, si la acariciamos se calma, si nos alejamos más de un metro comienzan los lamentos. Es como que tuviera las emociones a full... Puede ser celo? cuando no estamos llora incluso con aullido basset (la escuchan en la Base Marambio). 46000.00 11000.00 35000.00 2025-10-31 20:00:00+00 RD06ZO9WVV87V4YDXN5GP7X 11943 9869 1208 1 0rscrq9av9gnfk8dchj9133cp0 \N 1295 +3336 2025-11-19 21:02:25.065351+00 2025-11-19 21:02:25.06536+00 f t 2025-11-20 12:00:00 COMPLETED clinical Muestra de orina para analisis fisico-quimico-sedimento, y relacion creatinina en orina. relacion creatina/ cortisol $13200\r\nfis-quim-sedi- $9.500\r\ntraslado $13.200\r\ntotal $35900 35900.00 35900.00 0.00 2025-11-20 15:00:00+00 PDX4OGNYG1Z08WR4N0L6EY 9712 8096 1583 100 j65e3moidecjok9b3thggdlehg \N 1690 +2715 2025-10-01 16:28:37.257714+00 2025-10-01 16:28:37.257728+00 f t 2025-10-02 10:00:00 COMPLETED clinical Es un ovejero alemán de 13 años, le cuesta moverse, cada día se mueve un poco menos. Camina por la casa pero esta muy débil, no quiere comer su alimento, solo si se lo mezclo con pollo u algún sobrecito. Tiene muchos dolores en la cadera baja, cuando se acuesta llora, le lagrimean mucho los ojos. Por la edad ya tiene artrosis, y en su última visita al veterinario en Junio estaban empezando las molestias pero con los meses empeoro. 46000.00 11000.00 35000.00 2025-10-02 13:00:00+00 128208907574 9758 8129 1208 94 1alp0toj453f3u8kn7t838d54g \N 776 +3105 2025-11-02 19:01:39.009976+00 2025-11-02 19:01:39.009987+00 f t 2025-11-02 17:00:00 COMPLETED clinical Crash está con carraspeo como si le molestase la garganta y a veces vomita blanco y transparente, le molesta la garganta Nos pago todo la clienta a nosotros. Necesitamos pasarle a la vete los $44.000 55000.00 11000.00 44000.00 2025-11-02 20:00:00+00 132225807538 6688 5457 114 92 9o2t49prbqq499r7gq9g1hji1g \N 1358 +3018 2025-10-27 14:57:02.888335+00 2025-10-27 14:57:02.888344+00 f t 2025-10-27 19:00:00 COMPLETED clinical Vacunación Anual+ Desparasitación interna y externa 98100.00 16600.00 81500.00 2025-10-27 22:00:00+00 30717420698 10052 8317 1583 92 t96ct45fdshecjin3amhdlc6r4 \N 1225 +2581 2025-09-21 19:48:24.609214+00 2025-09-21 19:48:24.609222+00 f t 2025-09-25 21:30:00 NO_REPORT clinical Consulta cardiologica Se le cobro para los estudios de Burton:\r\n- Cardiología --> $107.000 --> le corresponde a Alcasena --> $95.000\r\n - Ecografía de Burton --> $78.000 --> le corresponde $65.000\r\n - Extracción de sangre para Burton --> Perfil 7, más proteínas totales, Ionograma (Na/K, Cl) + Orina completa --> $94.900 --> extracción con Nicolás le corresponden de este --> paciente $23.000\r\n - Citolgía de Burthon --> $23.500 - (127149720586) 301400.00 118400.00 183000.00 2025-09-26 00:30:00+00 127030065932 8397 6920 114 82 ia5g36pmkdisjvs24nl2stost4 \N \N +3312 2025-11-18 21:05:04.408096+00 2025-11-18 21:05:04.408111+00 f t 2025-11-18 20:30:00 NO_REPORT clinical vómitos, se pone muy molesta cuando hace pis. se le debe $44.000 a la vete, la tutora abono con link de pago 55000.00 55000.00 0.00 2025-11-18 23:30:00+00 134372093292 13661 11265 1583 68 o1d00n3l33j5pdpe67jlvvll8g \N 1655 +3118 2025-11-03 23:06:40.825105+00 2025-11-03 23:06:40.825117+00 f t 2025-11-04 08:30:00 COMPLETED clinical 2 Vacunacion anual y despesrasitacion felina int y ext para 5 y 8kg 212800.00 56000.00 166000.00 2025-11-04 11:30:00+00 132379639534 12252 10117 114 80 5tdi4jl7v0jqu349i0tum6b270 \N 1366 +2674 2025-09-28 19:04:13.793593+00 2025-09-28 19:04:13.793602+00 f t 2025-09-28 14:30:00 COMPLETED clinical Empezó en el día de ayer a estar decaida, dejó de comer, solo toma agua, hoy sigue igual, vomito 2 veces como flema amarilla. Si la sacamos a pasear vuelve a estar con la energía de siempre. Hace 1 semana se murió una cachorrita que teníamos hace 3 meses con la cual jugaba mucho, nunca nos dijeron en el hospital el motivo exacto solo que era algo viral. Nose si puede estar triste por la ausencia de la misma o también tenga algo que se pueda haber contagiado. 46000.00 11000.00 35000.00 2025-09-28 17:30:00+00 76V4MR2ZPQL4RG709DEZOL 9509 7917 114 21 ho7bj4f0sfc794trs06rudjt8c \N \N +2671 2025-09-27 17:29:45.822556+00 2025-09-27 17:29:45.822569+00 f t 2025-09-27 16:00:00 COMPLETED clinical está con molestias. Desde anoche se muestra muy inquieto, se mueve de un lado a otro, busca esconderse debajo de los muebles y le cuesta encontrar una posición para descansar. Hoy después de comer también siguió igual, debemos abonarle los $44.000 a nosotros porque la tutora se confundio y abono la totalidad 55000.00 55000.00 44000.00 2025-09-27 19:00:00+00 RD06ZO9W1JRP7E3725GP7X 9486 7892 1208 114 14hcfflpeg17q3t4tps9lgntek \N \N +2192 2025-08-21 23:18:52.311409+00 2025-08-21 23:18:52.311417+00 f t 2025-08-25 18:00:00 COMPLETED clinical Revisión y sacar puntos 42000.00 9500.00 32500.00 2025-08-25 21:00:00+00 122683537281 1798 1710 114 1 qhsfih6uidic8lfig25j07qdeo 244 \N +1859 2025-07-23 16:04:36.496909+00 2025-07-23 16:04:36.496919+00 f t 2025-07-26 14:30:00 COMPLETED clinical Ecografía 60300.00 5300.00 55000.00 2025-07-26 17:30:00+00 119622813640 1798 1709 1026 90 gqdji5e74kpn9p394nr3nt3mp4 528 \N +3076 2025-10-30 22:28:05.097374+00 2025-10-30 22:28:05.097386+00 f t 2025-10-30 20:30:00 COMPLETED clinical Hoy tuve un episodio con mis dos perros. Se pelearon entre ellos, a uno de los dos lo llevé inmediatamente a la veterinaria porque tenía cortes en la cara y sangraba mucho.\nEl otro (apolo) estaba bien sin cortes visibles ni sangraba.\nAcabo de llegar y veo que en el cuello si tiene lastimado, tiene sangre en la herida propia de la lastimadura pero no cae sangre ni chorrea. Necesito si puede venir un veterinario a verlo y evaluar si es para coser o si le dan antibiótico y calmantes en caso de que no \N 30000.00 30000.00 19500.00 2025-10-30 23:30:00+00 73724938 2582 2309 \N 92 evtr78k0f09pc82pls9k5marn8 \N 1307 +3319 2025-11-19 13:33:49.925856+00 2025-11-19 13:33:49.925868+00 f t 2025-11-19 15:00:00 COMPLETED clinical Hace 3/4 días q no quiere comer o come poquito, está con vómitos. 55000.00 11000.00 44000.00 2025-11-19 18:00:00+00 134449682960 13744 11337 1208 91 9cu6b22filsbg0heqrlsgks32k \N 1662 +957 2025-04-07 22:45:21.577671+00 2025-04-07 22:45:21.577682+00 f t 2025-04-09 11:00:00 NO_REPORT clinical Vacunación anual para dos mascotas 0.00 0.00 0.00 2025-04-09 14:00:00+00 0 647 763 113 88 ffa9q7dn61sg46su3q94pt8i24 \N \N +3292 2025-11-16 20:29:46.196479+00 2025-11-16 20:29:46.196489+00 f t 2025-11-17 11:30:00 COMPLETED clinical 4 Vacunaciones Anuales y 4 desparasitaciones internas + externas para gatos de 3 entre 2 a 5 kg 332000,00 corresponde a la vete 399600.00 399600.00 0.00 2025-11-17 14:30:00+00 134109161328 13457 11080 114 88 8l9nvrdcg1gmvp5928153tjsjk \N 1624 +3112 2025-11-03 15:04:02.003283+00 2025-11-03 15:04:02.003298+00 f t 2025-11-04 16:00:00 COMPLETED clinical Paul y Romeo - Dos gatos con cistitis. 92000.00 22000.00 70000.00 2025-11-04 19:00:00+00 naranjaX 10559 10123 1583 88 efpg2bt34dq6rbv9qbufn1u22s \N 1368 +3343 2025-11-20 16:28:20.258343+00 2025-11-20 16:28:20.258351+00 f t 2025-11-20 16:30:00 COMPLETED clinical Problemas urinarios y rengueo en la pata \N 55000.00 11000.00 44000.00 2025-11-20 19:30:00+00 134612590444 13916 11470 \N 121 k2sirj4lfi0maaml9q93nunqv8 \N 1698 +3090 2025-10-31 21:47:37.475247+00 2025-10-31 21:47:37.475255+00 f t 2025-11-03 11:30:00 COMPLETED clinical extraccion de sangre pcr vif/vilef y en lo posible medicion de presion NO VA A RAPELA 53700.00 13200.00 40500.00 2025-11-03 14:30:00+00 132011669606 12084 9992 1208 1 5ik948n743b2dm28pa702q095c \N 1329 +3044 2025-10-28 19:36:22.62187+00 2025-10-28 19:36:22.621882+00 f t 2025-10-29 17:00:00 COMPLETED clinical Vacunacion antirrabica. Se le debe $40.500, la tutora abono el total a nosotros 54000.00 54000.00 0.00 2025-10-29 20:00:00+00 131617727012 9682 8068 1583 1 ul580e4hjq0a8h4ito5mlf1rig \N 1259 +3140 2025-11-05 13:22:41.336408+00 2025-11-05 13:22:41.33642+00 f t 2025-11-05 13:30:00 COMPLETED clinical pcr vif/ vilef 0.00 0.00 0.00 2025-11-05 16:30:00+00 ORD6LEN8PQ6MPK5ONM1Y30 12364 10216 1208 100 bhekvpnr2gjo0a4metlkuugjfs \N 1412 +3113 2025-11-03 15:37:36.754928+00 2025-11-03 15:37:36.75494+00 t t 2025-11-25 18:30:00 PENDING clinical Vacunacion anual \N 78000.00 21500.00 56500.00 2025-11-25 21:30:00+00 39487238170 12260 10124 \N 89 24087n2c97kq18lh45d99tkmng \N 1372 +3160 2025-11-06 14:42:07.219407+00 2025-11-06 14:42:07.219416+00 f t 2025-11-06 18:00:00 COMPLETED clinical El gato tiene los mismos síntomas y lesiones en la piel x los q consulté 2 veces (última consulta 19 septiembre desc. recompra 27000.00 27000.00 19500.00 2025-11-06 21:00:00+00 132727396216 3981 3336 1208 92 111jbp6ola6t4jbjq38dfgoi50 \N 1440 +3011 2025-10-26 18:41:43.561471+00 2025-10-26 18:41:43.561482+00 f t 2025-10-26 16:00:00 COMPLETED clinical Revisión por sangre al defecar \N 55000.00 11000.00 44000.00 2025-10-26 19:00:00+00 71211613 10716 8899 \N 114 6gto6ufqc5csu987kfosrupdhg \N 1216 +1578 2025-06-26 23:52:35.182872+00 2025-06-26 23:52:35.182881+00 f t 2025-06-26 19:30:00 NO_REPORT clinical Vomitos Se realizo la modificación del turno anterior por que palummo no pudo estacionar 50000.00 10000.00 40000.00 2025-06-26 22:30:00+00 \N 3421 2923 113 70 ga0mgb7k9kfn4uu14ist759jng 782 \N +1533 2025-06-22 22:03:01.146677+00 2025-06-22 22:03:01.146686+00 f t 2025-06-23 22:00:00 NO_REPORT clinical Ecocardiograma Abonarle al vete, nos pasó sus honorarios a nosotros->115673856129 95000.00 95000.00 85000.00 2025-06-24 01:00:00+00 115947133678 3074 2678 114 82 hkqng5s7v9i0nik02bgko9gcag 805 \N +3114 2025-11-03 15:41:12.888797+00 2025-11-03 15:41:12.888806+00 f t 2025-11-03 13:00:00 COMPLETED clinical Aulla mucho por celo. 55000.00 11000.00 44000.00 2025-11-03 16:00:00+00 132314021682 12255 10119 1583 80 b71t7i5gen0139gekm0f7ua3n0 \N 1369 +3380 2025-11-25 16:12:48.640188+00 2025-11-25 16:12:48.640201+00 f t 2025-11-25 19:30:00 NO_REPORT clinical Desde el 30/7 tiene vomitos esporádicos. Se realizó tratamiento con antiemeticos, antiácidos.\nTiene 3 ecografias con muestra de gastritis pero aún con vómitos.\nEn los últimos días más seguidos \N 46000.00 11000.00 35000.00 2025-11-25 22:30:00+00 135200080834 393 467 \N 91 0vumdl2qemhgp3btjuqahigtu4 \N 1769 +2841 2025-10-10 16:44:30.268794+00 2025-10-10 16:44:30.268804+00 f t 2025-10-10 15:00:00 COMPLETED clinical Tiene un ojo con desprendimiento de retina y hoy amaneció muy hinchado y supurando , se nota que le duele por qué no se levanta, no es muy sociable con los humanos pero en casa se deja tocar \N 55000.00 11000.00 44000.00 2025-10-10 18:00:00+00 128843284981 10429 8661 \N 88 qkmp1897m6r78v57bcd9seobbk \N 953 +3106 2025-11-02 19:04:40.228289+00 2025-11-02 19:04:40.228298+00 f t 2025-11-02 12:00:00 COMPLETED clinical Ojo Lagrimoso, poco apetito, letargo y estornudos 55000.00 11000.00 44000.00 2025-11-02 15:00:00+00 39473468135 12155 10049 114 80 h2i3j174v8s7940dm14bfu5snc \N 1341 +3027 2025-10-27 19:12:58.647605+00 2025-10-27 19:12:58.647614+00 f t 2025-11-02 16:00:00 COMPLETED clinical Vacunación anual \N 78000.00 21500.00 56500.00 2025-11-02 19:00:00+00 Z0KV87940GM3ZWGQNPEYDX 11632 9626 \N 92 nas89146ir7mu6u51v37e32dl8 \N 1235 +3119 2025-11-03 23:12:53.132075+00 2025-11-03 23:12:53.132083+00 f t 2025-11-03 18:00:00 NO_REPORT clinical Eutanasia \N 133500.00 28500.00 105000.00 2025-11-03 21:00:00+00 132350158164 12295 10150 \N 1 2r0qkg81shkigmldv2rlofv4v0 \N 1382 +2986 2025-10-23 18:11:33.460846+00 2025-10-23 18:11:33.460855+00 f t 2025-10-24 13:00:00 COMPLETED clinical tiene una alergía que no sabemos a qué. Se le hincha el labio de abajo y ahora encima tiene la patita pelada. La veterinaria le dio corticoides hace 15 días y me dijo que le de una segunda dosis en estos días\r\nMiguel: chequeo y receta de gabapentina descuento multimasc 87400.00 17400.00 70000.00 2025-10-24 16:00:00+00 LOEJWV9JZYGG66582QMD0G 11393 9439 1208 114 9plefi0md5baavj2h4tcndqmhg \N 1176 +3066 2025-10-29 23:52:36.619222+00 2025-10-29 23:52:36.619231+00 f t 2025-10-30 20:30:00 NO_REPORT clinical GATA AGRESIVA, busca veterinario con experiencia y receta de gabapentina\r\nBajo mucho de peso, control general y extraccion de sangre 98400.00 57900.00 40500.00 2025-10-30 23:30:00+00 131759609216 11851 9800 1208 68 ucikf3p1dn9dt39phptfkveido \N 1283 +2804 2025-10-07 19:33:21.415364+00 2025-10-07 19:33:21.415373+00 f t 2025-10-10 17:30:00 COMPLETED clinical Hace una semana fue chequeado por una diarrea. Con dieta recomendada mejoró.\r\nEl tema es que ahora anda débil , le cuesta pararse , ya casi no se levanta de su cama, pierde el equilibrio. Se levanta a tomar agua , baja a hacer pis pero en brazos y solo la dejo en el suelo para que orine. desc. recompra 41400.00 6400.00 35000.00 2025-10-10 20:30:00+00 39136468083 9310 7733 1208 92 9shj0ceu63t5qdu1p2gm3bl0n8 \N 888 +3147 2025-11-05 17:43:13.991311+00 2025-11-05 17:43:13.99132+00 f t 2025-11-05 14:00:00 COMPLETED clinical vacunacion anual tiene 3500 a favor porque transfirio mal 78000.00 21500.00 56500.00 2025-11-05 17:00:00+00 131999645885 12438 10270 1208 80 q2qlr06ngsio4m996hbq1ra554 \N 1416 +3037 2025-10-28 16:00:52.546155+00 2025-10-28 16:00:52.546164+00 f t 2025-10-29 15:00:00 NO_REPORT clinical consulta cardiologica alcasena cobra $120 por distancia, por eso cobre $10mil de seña 130000.00 10000.00 120000.00 2025-10-29 18:00:00+00 131595608638 11722 9691 1208 82 qbj0p65ktqj88o20tdhpbdt68s \N 1251 +2840 2025-10-10 15:17:54.616194+00 2025-10-10 15:17:54.616203+00 f t 2025-10-10 16:00:00 COMPLETED clinical Consulta clinica, artrosis, se cayo y se le inflamo la pata 55000.00 11000.00 44000.00 2025-10-10 19:00:00+00 MP 10420 8652 1583 70 7ch09hfu2ivp8hccfcnsjg03ok \N 950 +3017 2025-10-27 13:57:00.973307+00 2025-10-27 13:57:00.97332+00 f t 2025-10-30 11:30:00 COMPLETED clinical Consulta etologica. 72500.00 72500.00 60000.00 2025-10-30 14:30:00+00 130870771261 11264 9338 1583 105 5uvlvqdicecbnbb397mg221bi4 \N 1223 +3075 2025-10-30 19:42:32.964153+00 2025-10-30 19:42:32.964166+00 f t 2025-10-31 17:30:00 COMPLETED clinical Consulta general, antiinflamatorio 46000.00 11000.00 35000.00 2025-10-31 20:30:00+00 MP 9435 7841 1583 114 fu0lgvrj3spl0p2vrs6sceco74 \N 1304 +3013 2025-10-26 19:02:46.432145+00 2025-10-26 19:02:46.432153+00 f t 2025-10-31 16:00:00 COMPLETED clinical Chequeo y revisión de resultados de la radiografía \N 46000.00 11000.00 35000.00 2025-10-31 19:00:00+00 00000 11517 9541 \N 114 gnpns5m4pecqpi5hbdb9bfjg3k \N 1218 +3104 2025-11-01 23:16:10.821849+00 2025-11-01 23:16:10.821857+00 f t 2025-11-02 11:00:00 COMPLETED clinical vacunacion + microchip + test de leshmania desc. recompra, el test lo hace mara 204575.00 23075.00 181500.00 2025-11-02 14:00:00+00 39466403423 3002 2626 1208 70 906be99p7i7cec53ff48oijnu4 \N 1357 +3116 2025-11-03 18:42:17.070387+00 2025-11-03 18:42:17.070396+00 f t 2025-11-03 18:00:00 COMPLETED clinical Orina con sangre hace dos dias. 55000.00 11000.00 44000.00 2025-11-03 21:00:00+00 132344980262 12287 10146 1583 88 uu9mi0cg8psdjq5ea5keirqln4 \N 1376 +593 2025-02-05 21:37:30.574933+00 2025-02-05 21:37:30.57494+00 f t 2025-02-06 15:00:00 COMPLETED telemedicina Resolucion de laboratorio Ordoñez<>Vivero\r\nJueves, 6 febrero · 3:00 – 4:00pm\r\nZona horaria: America/Argentina/Buenos_Aires\r\nInformación para unirse a la reunión de Google Meet\r\nVínculo a la videollamada: https://meet.google.com/qpi-ihdi-gwo\r\nO marca el: ‪(AR) +54 11 3986-3700‬ PIN: ‪252 803 060 8973‬#\r\nMás números de teléfono: https://tel.meet/qpi-ihdi-gwo?pin=2528030608973\r\n\r\nHonorarios ya pagados por Agus directo a la vete 15000.00 0.00 15000.00 2025-02-06 18:00:00+00 0 266 335 114 68 3nglcion7kbrr4rad8dqo9c31k \N \N +2605 2025-09-23 14:01:20.551244+00 2025-09-23 14:01:20.551255+00 f t 2025-09-25 19:00:00 COMPLETED clinical Vomita seguido, día por medio. Ya le cambié la comida y no se si tiene algún problema gastrointestinal. Come, toma agua y tiene su rutina normal pero no sube de peso nunca. Quisiera saber si está bien así. debemos abonarle los $35.000 a martin nosotros, pago con CREDITO 46000.00 46000.00 35000.00 2025-09-25 22:00:00+00 127241139910 9168 7599 1208 70 aevcadue6l80kgvtvq49l0eh5s \N \N +1673 2025-07-05 20:06:50.721839+00 2025-07-05 20:06:50.721845+00 f t 2025-02-03 14:30:00 COMPLETED clinical Arritmia, medicación 0.00 0.00 0.00 2025-02-03 17:30:00+00 0 266 335 114 7 era00nj7crroe4b6ljs91st6l8 \N \N +3102 2025-11-01 18:55:25.322462+00 2025-11-01 18:55:25.322472+00 f t 2025-11-05 19:00:00 COMPLETED clinical quiere realizar una limpieza dental a su mascota, desea saber costos de la intervencion y las recetas para hacer dichos estudios. 46000.00 11000.00 35000.00 2025-11-05 22:00:00+00 132115498374 274 323 1208 92 h4v9nv14l53p8uqu22jv8de1dg \N 1351 +3379 2025-11-25 15:46:21.682227+00 2025-11-25 15:46:21.682239+00 f t 2025-11-25 18:00:00 NO_REPORT clinical desde ayer a la tarde está con problemas de constipacion y está con vómitos\r\nSolo toma agua y como ya le dio una vez le di por recomendación de otra colega Lactulon eso la tranquilizó\r\nPero recién le di y lo vomitó. 55000.00 11000.00 44000.00 2025-11-25 21:00:00+00 135192607000 14482 11942 1208 114 94mmat8s2l25ltvroqqtiut884 \N 1778 +3134 2025-11-04 19:25:27.079049+00 2025-11-04 19:25:27.079058+00 f t 2025-11-05 18:00:00 COMPLETED clinical Mi perra tiene 15 años y tiene un bulto en la vejiga. Esta con tratamiento de tramado, y meloxicam, Esta con un poco de perdidas y la noto decaida. 46000.00 11000.00 35000.00 2025-11-05 21:00:00+00 132482752478 12087 9995 1208 94 4m11akqp8fpbf71j6onopdgoco \N 1403 +2394 2025-09-05 15:49:50.704931+00 2025-09-05 15:49:50.704941+00 f t 2025-09-05 20:00:00 NO_REPORT clinical Vacunacion, y desparasitacion Vacunacion con sextuple + antirrabia + consulta clinica + desparasitacion interna + desparasitacion externa: 111000.00 28000.00 83000.00 2025-09-05 23:00:00+00 124111401467 8047 6633 1583 70 tr8jqasq3d95a40uqtcb4ouc6k 127 \N +2130 2025-08-17 19:59:15.906523+00 2025-08-17 19:59:15.906536+00 f t 2025-08-17 20:00:00 NO_REPORT clinical Sangre en la zona de la oreja/cuello y la pata. Presenta Rengueo 50000.00 10000.00 40000.00 2025-08-17 23:00:00+00 122697221048 6730 5495 114 70 ken46b1l98ul8pg8n4d5pu68a0 333 \N +2045 2025-08-10 19:03:30.419182+00 2025-08-10 19:03:30.41919+00 f t 2025-08-10 19:00:00 NO_REPORT clinical Tiene un problema renal crónico se queja de dolor le cuesta caminar y se queda quietito debajo de la estufa ayer y anteayer recibió suero intradermico y demás medicación. 50000.00 10000.00 40000.00 2025-08-10 22:00:00+00 WY7ZEPN6Q5VL6RG4NQ0M51 6225 5079 1208 70 4vjb0vr7ompb9kuqhv3lfspfbk 393 \N +3121 2025-11-03 23:16:35.534113+00 2025-11-03 23:16:35.534122+00 f t 2025-11-03 18:00:00 COMPLETED clinical Tiene más de 11 años y está ciego, pero ahora ya no se mueve casi, está acostado, no quiere comer y toma agua cuando le damos con jeringa nomás 55000.00 11000.00 44000.00 2025-11-03 21:00:00+00 39490419552 12281 10142 1583 21 11rqmmsu8dcep8t7a8t4t16a00 \N 1374 +2712 2025-10-01 15:07:38.241612+00 2025-10-01 15:07:38.241623+00 f t 2025-10-01 19:00:00 NO_REPORT clinical -1-Le molesta mucho la oreja derecha, se la rasca todo el tiempo y sacude mucho a cabeza,2- estuvo tosiendo por la mañana y parece como si estuviera resfriada pero no le vi mocos. 3-la ultima vete que la reviso me pidio una radiografia de la columna porque reacciona cuando se le acaricia el lomo. Si tienen equipo de rx estaria bueno que lo lleven para hacerselo tambien.. 55000.00 11000.00 44000.00 2025-10-01 22:00:00+00 128198561216 9748 8123 1208 70 jr2cmp5fcqmuuec3q3n0gu4jjs \N 772 +3337 2025-11-19 21:22:06.155783+00 2025-11-19 21:22:06.155794+00 f t 2025-11-26 16:00:00 PENDING clinical Pre quirurgicos electrocardiograma y eco cardiograma 120000.00 10000.00 110000.00 2025-11-26 19:00:00+00 134511621986 13820 11398 1583 82 qngv5gnb2mith4atose3mvff3s \N 1687 +1467 2025-06-13 14:43:02.388088+00 2025-06-13 14:43:02.388098+00 f t 2025-06-13 19:00:00 COMPLETED clinical Mascota de edad. No tiene movilidad en patas delanteras. Usa pañal. La tutora indicó que encontró sangre en la orina. \r\nQuiere saber si hay algún otro estudio o control para realizarle o si es preferible recurrir a la eutanasia 50000.00 10000.00 40000.00 2025-06-13 22:00:00+00 114496908661 2661 2364 1026 1 s6il5741hp6ear6agl2548hfbg 864 \N +3293 2025-11-17 12:46:29.016403+00 2025-11-17 12:46:29.016412+00 f t 2025-11-18 15:00:00 NO_REPORT clinical Re toma de rayos La primera toma no salieron bien, silvia volvio 0.00 0.00 0.00 2025-11-18 18:00:00+00 0 13290 10950 1583 84 85u94t6ksl54rq52anaqg9lfag \N 1625 +3381 2025-11-25 16:48:51.572994+00 2025-11-25 16:48:51.573003+00 f t 2025-11-26 16:00:00 PENDING clinical consulta general y extraccion de sangre para control. 66900.00 26400.00 40500.00 2025-11-26 19:00:00+00 Santander 14473 11936 1583 113 k52hgpfh2q3e8p8f2bv222mutc \N 1777 +3351 2025-11-20 21:36:58.414805+00 2025-11-20 21:36:58.414812+00 f t 2025-11-21 18:00:00 COMPLETED clinical Ecografia abdominal por hematuria. 78000.00 13000.00 65000.00 2025-11-21 21:00:00+00 134035541659 11644 9637 1583 90 m7vj154do5v5793oi5b0ipjrik \N 1709 +3374 2025-11-25 02:44:25.163786+00 2025-11-25 02:44:25.163794+00 f t 2025-11-25 20:00:00 NO_REPORT clinical gato con FIV que vomito 3 veces la ultima semana, Dejó de comer balanceado seco 46000.00 11000.00 35000.00 2025-11-25 23:00:00+00 Santander 14306 11794 1583 80 t6kp8femk0n8v4s2aehscs1p9s \N 1757 +3367 2025-11-23 18:37:43.832501+00 2025-11-23 18:37:43.832514+00 f t 2025-11-24 19:00:00 NO_REPORT clinical Consulta cardiologica y toma de presion \N 120000.00 10000.00 110000.00 2025-11-24 22:00:00+00 Redlink 9712 8096 \N 82 ge451c2b5eor194ptcnk6cpj50 \N 1748 +2887 2025-10-14 18:50:29.67939+00 2025-10-14 18:50:29.679398+00 f t 2025-10-15 08:00:00 COMPLETED clinical analisis de orina con cistocentesis - Consulta clinica $46.000\r\n- Traslado de motomensajeria de su casa al laboratorio $13.200\r\n- Analisis de orina + UPC $16.500\r\nTOTAL= $75.700 75700.00 40700.00 35000.00 2025-10-15 11:00:00+00 100000004523263 10203 8472 1208 80 777b5a79u6udqhgu88jois3oq0 \N 1012 +3338 2025-11-19 21:38:11.818283+00 2025-11-19 21:38:11.818291+00 f t 2025-11-19 19:30:00 NO_REPORT clinical Bulto en la encia 55000.00 11000.00 44000.00 2025-11-19 22:30:00+00 134514109798 13824 11402 1583 1 mik86f798n7nidm4sv5dsidbj8 \N 1689 +3359 2025-11-21 19:33:17.206623+00 2025-11-21 19:33:17.206632+00 f t 2025-11-25 16:00:00 NO_REPORT clinical esta con el ojo rojo hace unos dias. 46000.00 11000.00 35000.00 2025-11-25 19:00:00+00 0 266 335 1208 68 pcbdfesogl95rsak17c0i1g3vo \N 1724 +3368 2025-11-23 19:22:09.195754+00 2025-11-23 19:22:09.195762+00 f t 2025-12-03 09:00:00 PENDING clinical 3 vacunas anuales felinos\r\n3 desparasitaciones int+ext 6kg, 4kg, 8 kg\r\nDisponibilidad Miércoles y viernes de 9 a 11hs. 275400.00 48900.00 226500.00 2025-12-03 12:00:00+00 134988032674 14046 11585 1583 94 acl2ipmac87ut306rifkkb4f44 \N 1719 +81 2024-08-24 11:00:00+00 2024-08-24 11:00:00+00 f t 2024-08-24 11:00:00 NO_REPORT Clinica (Findes y feriados) Consulta clínica genral para gatito. Transaccion 85735890239 35000.00 15000.00 20000.00 2024-08-24 14:00:00+00 78 80 \N 1 u0gir0cagjjnu5job4hk57t13g \N \N +3382 2025-11-25 17:03:22.568171+00 2025-11-25 17:03:22.568182+00 f t 2025-11-25 18:00:00 NO_REPORT clinical No come no hace pis. Letargo no quiere caminar. 55000.00 11000.00 44000.00 2025-11-25 21:00:00+00 135206531918 14499 11959 1583 21 3fetujs3elbv4gk8v387d9nvag \N 1783 +3325 2025-11-19 16:48:40.242344+00 2025-11-19 16:48:40.242352+00 f t 2025-11-21 09:00:00 NO_REPORT clinical Consulta post estudios. Se le debe $19500 a la vete 30000.00 30000.00 0.00 2025-11-21 12:00:00+00 134479101444 1734 6190 1583 92 ng17aqsg5rlk0p4v7rk12b4kho \N 1678 +368 2024-12-21 17:48:05.775+00 2024-12-21 17:48:05.775+00 f t 2024-12-23 15:30:00 COMPLETED clinical Consulta clinica 80000.00 30000.00 50000.00 2024-12-23 18:30:00+00 277 328 113 68 dpr21a19320gp5ek1ce60tn2lc \N \N +3285 2025-11-15 20:17:02.322616+00 2025-11-15 20:17:02.32263+00 f t 2025-11-16 13:00:00 NO_REPORT clinical Mí madrina tiene un gato de unos 7 años castrado ,no come desde ayer si toma agua pero necesitaría que vayan a domicilio, a mí madrina muchas veces le dije que no le de carne picada ni dulce de leche ni manteca pero es complicado con una persona mayor \N 55000.00 11000.00 44000.00 2025-11-16 16:00:00+00 133998426504 13399 11034 \N 70 97953gd0rkpgdfqktnqbd417f8 \N 1613 +3387 2025-11-25 21:08:30.4825+00 2025-11-25 21:08:30.482514+00 f t 2025-11-26 13:00:00 PENDING clinical Extraccion para perfil 7. 72400.00 49400.00 23000.00 2025-11-26 16:00:00+00 135234697204 14506 11963 1583 112 648pccmk1matjs0pli8mmui0rs \N 1793 +178 2024-10-30 14:13:09.882+00 2024-10-30 14:13:09.882+00 f t 2024-10-11 14:00:00 NO_REPORT Clinica PGC sin orina +traslado Transaccion 89953461261 Cliente abono el total por transferencia, retiro de muestra se realiza por MotoUber ya que mensajero de Amar no podía realizar el retiro. 41200.00 41200.00 0.00 2024-10-11 17:00:00+00 154 163 \N 1 7jn3bfmtkgmb4a6oacsk5bujm0 \N \N +3294 2025-11-17 13:44:33.685672+00 2025-11-17 13:44:33.685683+00 f t 2025-11-18 15:00:00 NO_REPORT clinical Ecografia abdominal 78000.00 13000.00 65000.00 2025-11-18 18:00:00+00 LOEJWV9JZL51LXZZ2QMD0G 13436 11058 1583 90 hoes8rflch6muji0jksnuiasd8 \N 1629 +3352 2025-11-21 12:29:52.477144+00 2025-11-21 12:29:52.477156+00 f t 2025-11-21 14:00:00 NO_REPORT clinical Consulta cardiologica urgente por arritmia. 120000.00 10000.00 110000.00 2025-11-21 17:00:00+00 13408370330 14017 11560 1583 82 j043vtr7gi4nr8dkaeq289dc0k \N 1712 +1360 2025-06-03 16:26:17.857212+00 2025-06-03 16:26:17.857221+00 f t 2025-06-04 09:00:00 COMPLETED telemedicina Tuvo pancreatitis aguda y esta con tratamiento. \r\nRecomendaron cambiar el alimento al hepático de royal canin y medicación. \r\n2 pastillas de Digestil cada 8h, 1.5 pastillas de Urovier al dia, 1.5 pastillas de Spectryl cada 12h. Ademas reforzar con DermCaps\r\ny le estamos pasando 1 unidad de Ringer lactato al dia\r\nBusca una segunda opinión 27500.00 27500.00 17500.00 2025-06-04 12:00:00+00 \N 266 335 1026 94 bgarddpo1fctt49nvhdknt9btc 941 \N +3339 2025-11-20 00:22:05.255491+00 2025-11-20 00:22:05.255501+00 f t 2025-11-19 21:30:00 NO_REPORT clinical Lesion en lomo \N 55000.00 11000.00 44000.00 2025-11-20 00:30:00+00 133922628793 13855 11426 \N 1 954k6ali83nnt6ik6iv5fah3l0 \N 1692 +3375 2025-11-25 13:36:26.373637+00 2025-11-25 13:36:26.373646+00 f t 2025-12-02 17:00:00 PENDING clinical Ver su estado general, vacunacion anual + leudemia felina 97000.00 24500.00 72500.00 2025-12-02 20:00:00+00 134563453015 14438 11914 1208 1 edj8g3ta1pv7ouv2dilkhct340 \N 1768 +3166 2025-11-06 17:25:05.579245+00 2025-11-06 17:25:05.579258+00 f t 2025-11-06 16:00:00 COMPLETED clinical Tiene dos días comiendo poco y teniendo problemas para caminar, es un perro de 16 años, ciego. 55000.00 11000.00 44000.00 2025-11-06 19:00:00+00 Santander 12527 10350 1583 88 1virsivt1t6r3mu81k7877v5l0 \N 1445 +3388 2025-11-25 21:20:58.681952+00 2025-11-25 21:20:58.681962+00 f t 2025-12-02 17:00:00 PENDING clinical vacunacion anual para los dos 140400.00 27100.00 113000.00 2025-12-02 20:00:00+00 0 14497 11957 1208 94 d7vg63cfump0o4c8le7mffmd90 \N 1782 +3383 2025-11-25 17:15:47.212466+00 2025-11-25 17:15:47.212475+00 f t 2025-12-04 10:00:00 PENDING clinical extraccion de sangre perfil 7 88710.00 48210.00 40500.00 2025-12-04 13:00:00+00 39803050963 12857 10612 1208 1 0oednj5fpt9nlspf94mf9s0ois \N 1774 +3320 2025-11-19 14:46:59.620666+00 2025-11-19 14:46:59.620678+00 f t 2025-11-23 18:00:00 NO_REPORT clinical Extraccion para prequirurgico, revision por otitis y para limpieza dental. 108400.00 58900.00 49500.00 2025-11-23 21:00:00+00 133850422863 13663 11267 1583 92 kbtrt1cn4h3tgaoqe9okro953k \N 1656 +3287 2025-11-15 20:24:01.25433+00 2025-11-15 20:24:01.254341+00 f t 2025-11-20 19:00:00 COMPLETED clinical ecografia abdominal desc recompra y abona en efectivo 60200.00 5200.00 55000.00 2025-11-20 22:00:00+00 39684718891 12857 10612 1208 90 i5jt6870v8te9k52phf0rivuig \N 1617 +3306 2025-11-18 00:11:49.8745+00 2025-11-18 00:11:49.874508+00 f t 2025-11-19 15:00:00 COMPLETED clinical No se especificó motivo de consulta. se solicitó: ... \N 46000.00 11000.00 35000.00 2025-11-19 18:00:00+00 134250625542 12696 11148 \N 114 utqmjgb4jhq9n0uab34rnjavfo \N 1645 +3304 2025-11-18 00:01:18.299366+00 2025-11-18 00:01:18.299375+00 f t 2025-11-18 13:30:00 NO_REPORT clinical No se especificó motivo de consulta. se solicitó: Consulta general clínica programada... \N 46000.00 11000.00 35000.00 2025-11-18 16:30:00+00 133642846293 13565 11185 \N 114 lv7nkfin23avulic9ivof29vao \N 1643 +3389 2025-11-25 21:24:04.43603+00 2025-11-25 21:24:04.436039+00 f t 2025-11-26 11:00:00 PENDING clinical Teleconsulta post estudios Se le debe 19500 a la vete 30000.00 30000.00 0.00 2025-11-26 14:00:00+00 134619986903 11644 9637 121 92 97pd53u4fgu57lmvnmf7rr60sc \N 1796 +3360 2025-11-21 21:19:48.856507+00 2025-11-21 21:19:48.856518+00 f t 2025-11-22 09:30:00 IN_PROGRESS clinical extraccion de sangre perfil 5 + glucosa + t4 total y libre 96900.00 73900.00 23000.00 2025-11-22 12:30:00+00 134158553625 79 81 1208 112 0otv3bee0eojju5bla1fh43s3c \N 1726 +3295 2025-11-17 14:55:42.703069+00 2025-11-17 14:55:42.703079+00 f t 2025-11-18 14:00:00 NO_REPORT clinical Gatita poco sociable, camina con dificultad , lagrimea y bota mocos. Vacunacion anual, desparasitacion interna y externa 7kg, extraccion de sangre (ver que estudios necesita) 111000.00 28000.00 83000.00 2025-11-18 17:00:00+00 133579055797 13490 11121 1583 68 8tnq9402e8ukiv6sohfk4tihf8 \N 1627 +2005 2025-08-06 20:53:36.15796+00 2025-08-06 20:53:36.157972+00 f t 2025-08-06 13:00:00 NO_REPORT clinical ha estado vomitando, perdió mucho peso, está desorientado y tiene espasmos. 50000.00 10000.00 40000.00 2025-08-06 16:00:00+00 120717503837 6022 4913 114 88 8gb7kj9apuriaqj250t6oip8rg 428 \N +715 2025-02-25 19:00:16.807499+00 2025-02-25 19:00:16.80751+00 f t 2025-05-26 14:00:00 NO_REPORT clinical Bulto en el cuello y posible alergia en la piel 35000.00 7000.00 28000.00 2025-05-26 17:00:00+00 74098049 496 586 114 88 b6e01tmqa4e9t2gj0eof6bjpug \N \N +1056 2025-04-25 19:17:13.598321+00 2025-04-25 19:17:13.598329+00 f t 2025-04-26 16:00:00 NO_REPORT vaccination Vacunación anual Hay que pagarle a la vete 0.00 0.00 0.00 2025-04-26 19:00:00+00 109493484168 732 854 112 88 fbktclrqjr2il9m82nnicedq40 \N \N +765 2025-03-04 21:26:34.043646+00 2025-03-04 21:26:34.043656+00 f t 2025-03-03 17:30:00 NO_REPORT clinical Vomitos y paracitos internos 0.00 0.00 0.00 2025-03-03 20:30:00+00 0 534 630 114 88 pcqo3gaibebtaa7bpv62v7ntps \N \N +3126 2025-11-04 15:50:36.91856+00 2025-11-04 15:50:36.91857+00 f t 2025-11-04 14:00:00 COMPLETED clinical notamos que le salio desde la cola algo como si fuera pus, 55000.00 11000.00 44000.00 2025-11-04 17:00:00+00 131860626689 7396 6078 1208 114 5cqqhud15g6q7oanllghm1ucso \N 1391 +3039 2025-10-28 16:24:13.532744+00 2025-10-28 16:24:13.532752+00 f t 2025-11-07 10:00:00 COMPLETED clinical Muestra para perfil tiroideo 2 0.00 0.00 0.00 2025-11-07 13:00:00+00 0 9712 8096 1583 100 2k15nuuqogmkj6tsi7ft65ii54 \N 1254 +3082 2025-10-30 23:44:08.891742+00 2025-10-30 23:44:08.891751+00 f t 2025-11-24 11:00:00 NO_REPORT clinical Sesion de fisio 3/4 0.00 0.00 0.00 2025-11-24 14:00:00+00 0 9641 8031 1583 67 dj6jg5dv5bvu6ro7t5av2qlak4 \N 1313 +3321 2025-11-19 14:49:56.460446+00 2025-11-19 14:49:56.460455+00 f t 2025-11-24 09:00:00 COMPLETED clinical Muestra para prquirugico 0.00 0.00 0.00 2025-11-24 12:00:00+00 0 13663 11267 1583 100 9baeg7tt0aa5jqmm8ljd7mr8s8 \N 1676 +3363 2025-11-22 16:22:57.100971+00 2025-11-22 16:22:57.100979+00 f t 2025-11-23 09:00:00 COMPLETED clinical Hace pis en el sillón cuando siempre hizo en su caja y ayer encontré un poquito de sangre en la arena. pago con credito, le debemos la consulta a palummo 55000.00 11000.00 44000.00 2025-11-23 12:00:00+00 134245171723 14157 11674 1208 80 5jk2ofdkt5253sqtg59krd8h7o \N 1736 +3199 2025-11-08 19:50:47.917115+00 2025-11-08 19:50:47.917127+00 f t 2025-11-11 11:30:00 COMPLETED clinical pcr vif/vilef sin cargo, por error de cami lorenzo 0.00 0.00 0.00 2025-11-11 14:30:00+00 0 12446 10278 1208 100 8ijgrlvqhthod640be098vkne0 \N 1492 +3169 2025-11-06 18:36:10.630236+00 2025-11-06 18:36:10.630248+00 f t 2025-11-10 20:00:00 COMPLETED clinical vacunas sextuple para los dos desc. recompra 126000.00 24000.00 102000.00 2025-11-10 23:00:00+00 39543014871 4512 3758 1208 68 hs125iogp79ilour8muclg7q7g \N 1442 +3176 2025-11-06 21:40:43.309264+00 2025-11-06 21:40:43.309276+00 f t 2025-11-07 10:00:00 COMPLETED clinical Sigue con vómitos recurrentes. Ha dejado de comer y de beber. 46000.00 11000.00 35000.00 2025-11-07 13:00:00+00 8D0Q619L0Y1EKOELN7JZ5R 11503 9531 1583 1 8lc2h1brlhjjphuu2aojc4jqo8 \N 1451 +2692 2025-09-30 15:07:55.815086+00 2025-09-30 15:07:55.815095+00 f t 2025-09-30 15:00:00 COMPLETED clinical Se doblo la pata delantera izquierda y no puede pisar. Tiene inflamado en la articulación. Es perro macho y la dirección es mexico 4134 depto b caballito 55000.00 11000.00 44000.00 2025-09-30 18:00:00+00 95796943 873 985 1208 1 tfde8td57imf3p5orfemkalk2s \N \N +2681 2025-09-29 14:28:18.508246+00 2025-09-29 14:28:18.508262+00 f t 2025-09-29 16:00:00 COMPLETED clinical Consulta general, limpieza gladulas y vacunacion anual de canino, dos vacunas anuales felino Descuento por mas de un animal -$23.400 210600.00 41100.00 169500.00 2025-09-29 19:00:00+00 127935012100 9601 7993 1583 1 hd14vmg60rbp572bej419mnpho \N \N +3175 2025-11-06 21:36:04.64654+00 2025-11-06 21:36:04.646553+00 f t 2025-11-07 08:30:00 NO_REPORT clinical Extraccion de sangre para perfil completo sin orina Le debemos $23.000 a Anto, extracciion previa no se pudo realizar por que no le avismos del ayuno ala tutora 0.00 0.00 0.00 2025-11-07 11:30:00+00 0 11825 9775 1583 85 qjb05qvvdpcm497qvph090s6ac \N 1459 +3234 2025-11-11 22:47:56.75642+00 2025-11-11 22:47:56.756432+00 f t 2025-11-12 15:00:00 NO_REPORT clinical Ecografia abdominal \N 78000.00 13000.00 65000.00 2025-11-12 18:00:00+00 132862637295 13016 10735 \N 90 fpmmafr2m5b2smnpn5dhcep3d0 \N 1542 +3171 2025-11-06 19:05:13.675936+00 2025-11-06 19:05:13.675947+00 f t 2025-11-07 10:00:00 NO_REPORT clinical muestra de orina muestra de orina y traslado 22700.00 22700.00 0.00 2025-11-07 13:00:00+00 132160976405 12287 10146 1208 100 fbv1q9ag64ijm2sfntb6u9aofg \N 1453 +3174 2025-11-06 21:08:56.490678+00 2025-11-06 21:08:56.490686+00 f t 2025-11-07 12:00:00 COMPLETED clinical Muestra para perfil general completo con orina, upc, calcio, fosforo, ionograma serico. 0.00 0.00 0.00 2025-11-07 15:00:00+00 0 12527 10350 1583 100 pvtk3pg1cdpvg2h9moibide9es \N 1458 +3184 2025-11-07 15:18:19.692027+00 2025-11-07 15:18:19.69204+00 f t 2025-11-08 11:00:00 COMPLETED clinical Muestra de orina para urocultivo urocultivo $30.500\r\ntraslado $13.200 43700.00 43700.00 0.00 2025-11-08 14:00:00+00 132279312239 11644 9637 1583 100 t6vesaff1n9tl0cdagh9v4rfcc \N 1470 +272 2024-11-29 15:18:10.447+00 2024-11-29 15:18:10.447+00 f t 2024-11-29 13:00:00 NO_REPORT clinical Evaluación inicial, gatito rescatado. Transacción 94762075282 49600.00 18600.00 31000.00 2024-11-29 16:00:00+00 223 243 114 1 0r04nqpmvnihkn7lb5umda2bbk \N \N +3148 2025-11-05 19:01:45.237987+00 2025-11-05 19:01:45.237999+00 f t 2025-11-12 18:00:00 COMPLETED clinical extraccion de sangre para prequirurgico por castracion 99400.00 58900.00 40500.00 2025-11-12 21:00:00+00 132620609558 12441 10274 1208 68 1a8atp9r1f811mkajpkbk9ndq0 \N 1417 +2717 2025-10-01 16:53:35.838192+00 2025-10-01 16:53:35.838204+00 f t 2025-10-02 11:00:00 COMPLETED clinical Tony está estornudando y con mocos hace 3 días aproximadamente. . 46000.00 11000.00 35000.00 2025-10-02 14:00:00+00 39044399372 9763 8134 1208 88 sedpp7qtppbd88bvp0smluf070 \N 778 +3277 2025-11-14 16:58:42.238831+00 2025-11-14 16:58:42.23884+00 f t 2025-11-14 20:00:00 COMPLETED clinical Pata hinchada, temblor, poca movilidad. 55000.00 11000.00 44000.00 2025-11-14 23:00:00+00 MP 10193 8460 1583 1 qg667mbsamvoplojleaj1a84sg \N 1603 +3101 2025-11-01 18:26:47.388848+00 2025-11-01 18:26:47.388857+00 f t 2025-11-04 13:30:00 NO_REPORT clinical consulta cardiologica desc recompra, alcasena cobra 105 110000.00 5000.00 105000.00 2025-11-04 16:30:00+00 131517632409 12093 9998 1208 82 ib468b27haqi0e9hstp3msl0m0 \N 1352 +3183 2025-11-07 14:19:48.863702+00 2025-11-07 14:19:48.863723+00 f t 2025-11-17 11:00:00 COMPLETED clinical Muestra para perfil general completo sin orina 0.00 0.00 0.00 2025-11-17 14:00:00+00 0 1734 6190 1583 100 dftj7s3l5ncvmcahqup616uhfo \N 1469 +3361 2025-11-21 21:21:31.486669+00 2025-11-21 21:21:31.486677+00 f t 2025-11-22 10:30:00 PENDING clinical perfil 5 + glucosa + t4 libre y total 0.00 0.00 0.00 2025-11-22 13:30:00+00 134158553625 79 81 1208 100 2phl23bm9qoaa35js7ikku24qk \N 1727 +3111 2025-11-03 14:36:35.060383+00 2025-11-03 14:36:35.060392+00 f t 2025-11-06 19:00:00 NO_REPORT clinical Vacunacion tos de las perreras. 72500.00 21500.00 51000.00 2025-11-06 22:00:00+00 36152366602 7529 6193 1583 89 pcm1av968l7n6h5fv2fe62e2fk \N 1371 +3207 2025-11-09 20:13:38.884693+00 2025-11-09 20:13:38.884701+00 f t 2025-11-09 19:30:00 COMPLETED clinical Dolor por displacia cervical y artitris \N 55000.00 11000.00 44000.00 2025-11-09 22:30:00+00 132555285131 12810 10572 \N 99 eoqmdbhj9q4tkuk1k184r7s1do \N 1505 +2954 2025-10-20 19:52:54.150603+00 2025-10-20 19:52:54.150615+00 f t 2025-10-20 17:30:00 COMPLETED clinical Consulta general 55000.00 11000.00 44000.00 2025-10-20 20:30:00+00 LOEJWV9JZYZYLP082QMD0G 11180 9271 1583 88 t7dngn5cd3gro14innl77fegp0 \N 1124 +2831 2025-10-09 16:19:35.196505+00 2025-10-09 16:19:35.196515+00 f t 2025-10-13 11:00:00 COMPLETED clinical Vacunacion anual felino 78000.00 21500.00 56500.00 2025-10-13 14:00:00+00 128708087627 10293 8545 1583 80 o1voda3alvtmtmrpjbu63gqnvk \N 927 +1460 2025-06-12 16:43:38.336998+00 2025-06-12 16:43:38.337008+00 f t 2025-06-13 19:00:00 NO_REPORT telemedicina Resolución de estudios. \r\nPaciente de Dra Katerina\r\n\r\nmeet.google.com/qmd-ynpc-kyz Abonarle a la vete 24750.00 24750.00 17500.00 2025-06-13 22:00:00+00 114871876848 1555 1510 1026 93 180h7hjs5602k184r09fucgbnc 862 \N +3154 2025-11-05 20:23:29.435761+00 2025-11-05 20:23:29.435772+00 f t 2025-11-06 17:00:00 NO_REPORT clinical Vacunacion anual y desparasitacion interna y externa, 4,5kg, felino \N 111000.00 28000.00 83000.00 2025-11-06 20:00:00+00 132031959273 12451 10282 \N 68 838h3hpnlevs7f3k9h93loahds \N 1424 +2957 2025-10-20 23:21:23.397495+00 2025-10-20 23:21:23.397504+00 f t 2025-10-30 11:00:00 COMPLETED clinical Chequeo Clínico 46000.00 11000.00 35000.00 2025-10-30 14:00:00+00 130677657082 11194 9287 1583 80 ngj98ehu5tj2mkdeuja6363bqo \N 1127 +3170 2025-11-06 18:41:33.055644+00 2025-11-06 18:41:33.055652+00 f t 2025-11-08 15:00:00 NO_REPORT clinical vacuna leucemia felina + antirrabica desc, recompra 73700.00 13700.00 60000.00 2025-11-08 18:00:00+00 0V1JXON1L75V4O83NZ64EL 8455 6966 1208 79 cocu3ke14ongnbci0feg4i3cvo \N 1452 +3232 2025-11-11 21:20:24.416611+00 2025-11-11 21:20:24.41662+00 t t 2025-11-13 18:00:00 PENDING clinical Muestra para perfil 7 y vif vilef pcr. 0.00 0.00 0.00 2025-11-13 21:00:00+00 0 12968 10696 1583 100 q6g8q0ntgnu8mufolmnch0qn9k \N 1540 +3230 2025-11-11 20:51:18.109888+00 2025-11-11 20:51:18.109897+00 f t 2025-12-02 15:00:00 PENDING clinical vacunacion antirrabica Tutora abono directamente a la vete esta consulta, habia pagado por las dos vacunas antirrabica y sextuple, pero la doc no le quido poner la antirrabica aun 0.00 0.00 0.00 2025-12-02 18:00:00+00 0 12851 10609 1583 89 dkuv4mn2ri27qokluf2er4m9dc \N 1539 +3202 2025-11-09 19:45:26.437528+00 2025-11-09 19:45:26.437541+00 f t 2025-11-09 12:30:00 NO_REPORT clinical No se especificó motivo de consulta. se solicitó: Consulta clínica de urgencia... \N 55000.00 11000.00 44000.00 2025-11-09 15:30:00+00 Z0KV87940KWW858DNPEYDX 12803 10568 \N 80 ullp65kc65ome4lu3pv9pg5ank \N 1499 +2428 2025-09-08 23:43:42.006665+00 2025-09-08 23:43:42.006675+00 f t 2025-09-11 17:30:00 COMPLETED clinical Control clinico, drenaje de glandulas, Limpieza de oidos y Corte de garras 12700.00 2200.00 10500.00 2025-09-11 20:30:00+00 38781021465 123 128 114 1 covfcjt45t60b7muc31eo31lgs 73 \N +516 2025-01-29 21:07:55.784434+00 2025-01-29 21:07:55.784442+00 f t 2025-04-16 09:00:00 CANCELLED clinical control clinico + drenaje glandulas la clienta pago 105000 por pack 3 turnos. feb, mar. abr. Al vete se le pago las 3 visitas en el mes de febrero ($84000) las visitas de mar y abr quedan en cero.\r\nEste turno queda cancelado, coorespondia al 3er turno del ultimo paquete contratado por la clienta, el cual se volvio a cargar (turno del 14/4) 0.00 0.00 0.00 2025-04-16 12:00:00+00 \N 123 128 111 1 3oqqa9oo9sslag10joj56frs28 \N \N +3197 2025-11-08 19:39:05.464731+00 2025-11-08 19:39:05.464742+00 f t 2025-11-10 19:00:00 COMPLETED clinical control de estudios complementarios desc. recompra 27000.00 27000.00 19500.00 2025-11-10 22:00:00+00 133052430882 11855 9803 1208 114 hjar8gqa8do73949q3fo6pmkqk \N 1490 +3095 2025-11-01 14:27:45.468649+00 2025-11-01 14:27:45.468656+00 f t 2025-11-01 14:00:00 COMPLETED clinical Hace 3/4 días el gato vomita todo lo que come, está más flaco. Quiere comer la comida de ellos 55000.00 11000.00 44000.00 2025-11-01 17:00:00+00 WGRXJE27DQGJX0WJN7MYQL 12160 10053 1208 78 73glbldri0o4mmu48kb4p589n4 \N 1342 +247 2024-11-17 22:10:15.864+00 2024-11-17 22:10:15.864+00 f t 2024-11-27 18:30:00 COMPLETED clinical Control Transacción 35336918703 41600.00 15600.00 26000.00 2024-11-27 21:30:00+00 203 217 114 70 mdrvmbkn2gg62d5u77mmq8k79c \N \N +3185 2025-11-07 16:48:18.163234+00 2025-11-07 16:48:18.163246+00 f t 2025-11-24 14:00:00 COMPLETED clinical -Mulan: desparasitacion, certificado de lectura de microchip, certificado de salud\r\n-Mushu: Vacunacion antirrabica. La lectura de microchip la vete lo cobra como certificado de salud, $15.400\r\nDescuento por recompra -$16.380 147420.00 23420.00 124000.00 2025-11-24 17:00:00+00 132292687841 10358 8599 1583 91 5d2af7gj5hiem6qkhlafb7l528 \N 1471 +3152 2025-11-05 19:57:22.143488+00 2025-11-05 19:57:22.1435+00 f t 2025-11-07 12:00:00 COMPLETED clinical extraccion de sangre pcr vif/vilef ABONO CON CREDITO\r\nDebemos abonarle a camila $40.500 153900.00 113400.00 40500.00 2025-11-07 15:00:00+00 132627912526 12446 10278 1208 94 de6hdbhfto36v0h97pkurc6upc \N 1421 +896 2025-03-27 13:03:01.475316+00 2025-03-27 13:03:01.475325+00 f t 2025-04-01 18:30:00 COMPLETED clinical Tiene 2 cosas q nos preoucpan: por un lado, gastrointestinal. Se descompone bastante seguido. Y por otro lado, respira con dificultad. También quisiéramos quedarnos tranquilos de que no hay nada grave\r\nAl ser de la calle, tuvo sarna hace un par de años. Y si bien hoy está 100% curado, no sabemos si algo de esto es una secuela hay que pagarle a la vete $5.000 29750.00 4750.00 25000.00 2025-04-01 21:30:00+00 \N 613 716 111 68 kvuu27aghovfecqvhm3ho816gk \N \N +1657 2025-07-03 20:42:35.28689+00 2025-07-03 20:42:35.2869+00 f t 2025-07-03 18:00:00 COMPLETED clinical está descompuesta, viene desde el martes medio mal y hoy la nota peor , se lame mucho 50000.00 10000.00 40000.00 2025-07-03 21:00:00+00 116776303305 3868 3260 1026 21 qg6ms0bu8uvli5rjjkfl60ka78 721 \N +3204 2025-11-09 19:51:29.259442+00 2025-11-09 19:51:29.259451+00 f t 2025-11-10 17:00:00 COMPLETED clinical Extracción de sangre (Perfil General Completo sin Orina) Paso $88.400, nos abono los estudios y la consulta de Nicolas. Hay que pasarle a Nicolas después lo que le falta a el 75400.00 52400.00 23000.00 2025-11-10 20:00:00+00 000000 12803 10568 114 112 1310bi6q34t4hjq8uqhcg61j64 \N 1501 +3200 2025-11-09 19:31:17.042463+00 2025-11-09 19:31:17.042471+00 f t 2025-11-09 11:00:00 COMPLETED clinical Revisión por falta de apetito y decaimiento \N 55000.00 11000.00 44000.00 2025-11-09 14:00:00+00 132529639527 12802 10567 \N 88 hhj8buaf3ojc7foss009q2ok2c \N 1497 +3208 2025-11-09 20:14:56.359495+00 2025-11-09 20:14:56.359508+00 f t 2025-11-10 18:30:00 COMPLETED clinical Chequeo por agitación y mucho apetito \N 82800.00 22000.00 70000.00 2025-11-10 21:30:00+00 133138531922 12702 10490 \N 92 nmqj1nsilj8ecef65ena9r2l34 \N 1493 +3187 2025-11-07 19:39:54.432322+00 2025-11-07 19:39:54.432331+00 f t 2025-11-07 18:00:00 COMPLETED clinical Rubi: posible infeccion urinaria, hoy la vio orinar varias veces\r\nRoko: vacunacion anual 133000.00 32500.00 100500.00 2025-11-07 21:00:00+00 80750631 12624 10428 1208 114 gioee7grqbq3vdubgfvocilt8g \N 1473 +3186 2025-11-07 17:38:58.69198+00 2025-11-07 17:38:58.691992+00 f t 2025-11-12 18:30:00 NO_REPORT clinical vacunacion anual y corte de garras TIENE ABONADO DOS CONSULTAS CLINICAS PROGRAMADAS TAMBIEN. \r\nCuando decida tomar los turnos, hay que cargarlos pero ya estan abonados 78000.00 21500.00 56500.00 2025-11-12 21:30:00+00 39544320216 123 128 1208 1 g55vrfnqh98tli5nb2ug085i6s \N 1454 +990 2025-04-15 01:02:25.914259+00 2025-04-15 01:02:25.914266+00 f t 2025-04-14 12:00:00 COMPLETED vaccination Refuerzo con sextuple Abonarle los 44000 a victoria por que la clienta pago todo el monto(60000) 60000.00 15500.00 44000.00 2025-04-14 15:00:00+00 108375888164 388 779 113 88 5m5nq0h9478s1hms7ruf2r75kk \N \N +3190 2025-11-07 23:05:33.017096+00 2025-11-07 23:05:33.017107+00 f t 2025-11-07 20:30:00 COMPLETED clinical mi gato defeco 2 veces normal pero sigue haciendo fuerza e hizo un poco liquido. El normalmente hace bien de cuerpo pero es un gato grande y complicado de actitud desc. recompra 27000.00 27000.00 19500.00 2025-11-07 23:30:00+00 39568606177 6358 5175 1208 68 qrn9vhtpglc7easv8eq1nrccmc \N 1477 +3099 2025-11-01 16:49:58.326765+00 2025-11-01 16:49:58.326774+00 f t 2025-11-05 16:30:00 NO_REPORT clinical triple felina + corte de garras a los dos desc recompra 139860.00 26860.00 113000.00 2025-11-05 19:30:00+00 R7ZG0QNDW0J3O1GG9EXYPO 9769 8140 1208 89 tpr1ds8h79rj56utjs4psbjd08 \N 1349 +2290 2025-08-29 19:14:43.159866+00 2025-08-29 19:14:43.159875+00 f t 2025-08-29 14:00:00 COMPLETED clinical Perdida de Peso y pelo cerca de la cola 50000.00 10000.00 40000.00 2025-08-29 17:00:00+00 124105759804 1734 6190 114 92 u5h0hcj7esn7538le5u2fkjjh4 202 \N +3088 2025-10-31 15:19:58.831788+00 2025-10-31 15:19:58.831796+00 f t 2025-10-31 12:30:00 COMPLETED clinical Nutricion. Se le debe 45000 a la vete, Se me hizo lio y cobre mal el valor total, quedaira con sena $0 45000.00 45000.00 0.00 2025-10-31 15:30:00+00 LOEJWV9JZ0YXMO832QMD0G 12061 9974 1583 21 d3l265tpb60unft9apjethhqqo \N 1322 +3177 2025-11-06 22:23:14.435898+00 2025-11-06 22:23:14.435907+00 f t 2025-11-07 20:00:00 COMPLETED clinical Ecografia abdomial. Hay un extra de $3000 por error, le cobre $68.000 al tutor, un pago de $13.000 y uno de $68.000 81000.00 13000.00 68000.00 2025-11-07 23:00:00+00 132793383916 9670 8055 1583 90 rt8olnhug028pvrkrivp7rbtqo \N 1460 +3264 2025-11-13 20:38:34.269897+00 2025-11-13 20:38:34.269906+00 f t 2025-11-17 15:00:00 COMPLETED clinical tengo un gato que esta orinando mucho. Me gustaría arreglar una consulta y los analisis especialmente sangre a domicilio. 133116301495 - $19.900 100900.00 60400.00 40500.00 2025-11-17 18:00:00+00 133114746019 308 365 1208 101 5d2gl7m398ajriq5es7d7isd0g \N 1574 +3188 2025-11-07 19:59:56.821159+00 2025-11-07 19:59:56.821167+00 f t 2025-11-07 19:00:00 COMPLETED clinical Consulta post estudios. Se le debe 19500 a la vete 30000.00 30000.00 19500.00 2025-11-07 22:00:00+00 86VRPQ2GMD0JG7YY2GLY0M 11180 9271 1583 88 nbkmhtrvqasqdbc9jpd97nvv4g \N 1466 +3218 2025-11-10 23:16:12.40838+00 2025-11-10 23:16:12.408388+00 f t 2025-11-11 08:00:00 NO_REPORT clinical Extraccion prequirurgico 68700.00 51200.00 17500.00 2025-11-11 11:00:00+00 132704210009 12866 10618 1583 116 as2h4n5oem9ruflajvan603b08 \N 1514 +3327 2025-11-19 17:07:30.15019+00 2025-11-19 17:07:30.150203+00 f t 2025-11-19 20:30:00 NO_REPORT clinical Linfoma temrinal, dificultad para caminar, segunda opinion para tratamiento 55000.00 11000.00 44000.00 2025-11-19 23:30:00+00 13386268361 13658 11263 1583 70 7516djknjhdbje0253mnmajjf0 \N 1677 +3221 2025-11-11 13:56:10.1053+00 2025-11-11 13:56:10.105309+00 f t 2025-11-11 12:00:00 COMPLETED clinical extraccion perfil general completo sin orina desc recompra 97560.00 48060.00 49500.00 2025-11-11 15:00:00+00 132791097701 12802 10567 1208 88 rgu1su6stv44tds5bul0uj80ek \N 1526 +3297 2025-11-17 16:37:34.590244+00 2025-11-17 16:37:34.590252+00 f t 2025-11-18 14:30:00 NO_REPORT clinical Consulta cardiologica 120000.00 10000.00 110000.00 2025-11-18 17:30:00+00 86VRPQ2GMV4O1RRJ2GLY0M 12325 10177 1583 82 cc13j32f3opjro4sgdolia8ui8 \N 1634 +3225 2025-11-11 16:39:51.33269+00 2025-11-11 16:39:51.332698+00 f t 2025-11-11 18:00:00 COMPLETED clinical Perrita geronte, no quiere comer hace 2 dias y tiene diarrea 55000.00 11000.00 44000.00 2025-11-11 21:00:00+00 133409404126 10879 9029 1208 107 nbm5hrohnrpa4dga8room1rf28 \N 1530 +3222 2025-11-11 13:56:19.893464+00 2025-11-11 13:56:19.893473+00 f t 2025-11-11 13:30:00 COMPLETED clinical perfi general completo s/orina 0.00 0.00 0.00 2025-11-11 16:30:00+00 132791097701 12802 10567 1208 100 590p1fhp7puohvv06vgn41km9c \N 1527 +3214 2025-11-10 15:08:33.066564+00 2025-11-10 15:08:33.066576+00 f t 2025-11-14 19:00:00 COMPLETED clinical Diarrea constante.zona sin pelo en patas y cuello 46000.00 11000.00 35000.00 2025-11-14 22:00:00+00 39602354633 12857 10612 1583 1 inkugdfv6djqspi89bbo48tdq0 \N 1511 +3224 2025-11-11 16:14:38.101387+00 2025-11-11 16:14:38.101396+00 f t 2025-11-11 16:30:00 COMPLETED clinical desde aproximadamente un mes que noto que se agita y estornuda mucho, tambien empezo a roncar cuando duerme que nunca lo hizo previamente. 55000.00 11000.00 44000.00 2025-11-11 19:30:00+00 133416800968 12968 10696 1208 1 bh809cke1cgb57um9iqn627no0 \N 1531 +3303 2025-11-17 20:25:30.742651+00 2025-11-17 20:25:30.742659+00 f t 2025-11-19 18:30:00 NO_REPORT clinical Consulta post estudios, y chequeo general. Se le debe 52.500 al vete, la tutora abono el total , valor 50% mas en este barrio 46000.00 46000.00 0.00 2025-11-19 21:30:00+00 133605433321 2234 2042 1583 70 rgpq06lug67h6b88ljvfej1l90 \N 1639 +3211 2025-11-10 13:56:08.285578+00 2025-11-10 13:56:08.285588+00 f t 2025-11-11 15:00:00 COMPLETED clinical Está peleando mucho con el otro gato. Fueron creados juntos y desde que mudamos para Argentina (hace 5 meses) empezaron las peleas y están insoportables Se le debe $60000 a la vete 72500.00 72500.00 0.00 2025-11-11 18:00:00+00 MP 12804 10569 1583 105 lcbb71ok8o1ra264feotg2ba18 \N 1503 +3167 2025-11-06 18:17:42.093302+00 2025-11-06 18:17:42.093315+00 f t 2025-11-11 08:30:00 NO_REPORT clinical perfil general completo con orina desc. recompra 70100.00 47100.00 23000.00 2025-11-11 11:30:00+00 132752057880 274 10354 1208 85 6q2v5f81brrmbtobokgco133l4 \N 1447 +3223 2025-11-11 16:01:27.133785+00 2025-11-11 16:01:27.133799+00 f t 2025-11-12 19:30:00 COMPLETED clinical Aplicar analgésico y antibiótico y control post estudios. 46000.00 11000.00 35000.00 2025-11-12 22:30:00+00 132810031147 12684 10475 1583 114 7lbfbsjm1g11rmvrfpgbkcjksg \N 1529 +3162 2025-11-06 16:12:42.221223+00 2025-11-06 16:12:42.221231+00 f t 2025-11-12 18:30:00 COMPLETED clinical No tiene ningún síntoma es preventivo, pcr vilef 119400.00 78900.00 40500.00 2025-11-12 21:30:00+00 132729277424 12474 10308 1208 70 rjbusqb36smaofiadgc8j2sqeg \N 1432 +3168 2025-11-06 18:18:08.037519+00 2025-11-06 18:18:08.037528+00 f t 2025-11-11 09:00:00 COMPLETED clinical perfil general completo con orina 0.00 0.00 0.00 2025-11-11 12:00:00+00 132752057880 274 10354 1208 100 6p46e6hbjft4jd8ts78tov89ks \N 1449 +3229 2025-11-11 20:27:49.786043+00 2025-11-11 20:27:49.786051+00 f t 2025-11-22 14:00:00 COMPLETED clinical Consulta post estudios para limpieza dental. 46000.00 11000.00 35000.00 2025-11-22 17:00:00+00 39626152385 12866 10618 1583 92 l59n00c3ha181umdjvu593o3r4 \N 1518 +1890 2025-07-26 16:38:34.875494+00 2025-07-26 16:38:34.875504+00 f t 2025-07-27 11:00:00 COMPLETED clinical revision de placa y corte de garras 51930.00 6430.00 45500.00 2025-07-27 14:00:00+00 119453938781 4433 3688 1208 80 t3p795f9asop8gptlhc3fnv5sk 525 \N +3213 2025-11-10 15:04:11.478307+00 2025-11-10 15:04:11.478319+00 f t 2025-11-10 13:00:00 NO_REPORT clinical vacunacion triple felina, corte de garras, desparasitacion int + ext 5 kg felino 110700.00 27000.00 83000.00 2025-11-10 16:00:00+00 132658437315 7243 5944 1583 1 0rm6dd20q0n89svqun1oaq2mig \N 1510 +3219 2025-11-10 23:42:54.406994+00 2025-11-10 23:42:54.407002+00 f t 2025-11-11 14:00:00 NO_REPORT clinical Extracción de Sangre para Perfil 7 sin orina 72400.00 49400.00 23000.00 2025-11-11 17:00:00+00 132728231967 11855 9803 114 85 lt73j5rip32erbtg4isgtivjnc \N 1522 +3181 2025-11-07 13:36:49.607675+00 2025-11-07 13:36:49.607684+00 f t 2025-11-13 20:30:00 NO_REPORT clinical 2 vacunacion anual de felinos. Se le debe $113.000 a la vete, la tutora abono con link de pago \r\nDescuento por recompra -$15.600 140000.00 140000.00 0.00 2025-11-13 23:30:00+00 MP 6033 4925 1583 80 e4tmn0m2quoi3io0veo8ntmo1o \N 1457 +3228 2025-11-11 19:41:54.843165+00 2025-11-11 19:41:54.843177+00 f t 2025-11-11 21:00:00 NO_REPORT clinical Teleconsulta de nutricion. Canino, está sintiéndose mal con la comida Se le debe $45.000 a la doctora 60000.00 60000.00 0.00 2025-11-12 00:00:00+00 Santander 4774 3954 1583 79 k37263akkr4a7infa0elo1tsu4 \N 1536 +3226 2025-11-11 17:15:13.295598+00 2025-11-11 17:15:13.29561+00 f t 2025-11-13 09:00:00 NO_REPORT clinical Deposiciones con signos de parásitos Desc. multimasc\r\n132818601553 - $200 que faltaban 142200.00 19200.00 123000.00 2025-11-13 12:00:00+00 132817438453 12976 10703 1208 80 hjmk0qvf0v71rd2qub56obsohg \N 1533 +1962 2025-08-01 20:44:18.499419+00 2025-08-01 20:44:18.499427+00 f t 2025-08-07 19:30:00 COMPLETED vaccination Vacunación anual + desparasitación interna y externa 116000.00 30000.00 86000.00 2025-08-07 22:30:00+00 20746160 4774 3954 1026 92 djfbpt0ojvbabu4u9v7h8bjr04 417 \N +3194 2025-11-08 18:22:11.353454+00 2025-11-08 18:22:11.353462+00 f t 2025-11-08 16:00:00 COMPLETED clinical Mi mamá tiene una perra de 18 años que no se puede levantar desde hace un día. A principio de año comenzó a tener dificultades con las patas de atrás pero con Artrin y acupuntura mejoró mucho. El tema es que tiene una pata muy lastimada porque se auto lesiona y cuesta mucho curarle la herida. 55000.00 11000.00 44000.00 2025-11-08 19:00:00+00 0 12718 10507 113 68 vcbeoi83ofhrt5dm3vrdl2lrf4 \N 1485 +3215 2025-11-10 16:24:59.301263+00 2025-11-10 16:24:59.301272+00 f t 2025-11-10 18:00:00 COMPLETED clinical Perro y gato con picazon en la cola, se rascan, desparasitacion int felino +5kg, desparasitacion int canino hasta 10kg 158000.00 32000.00 126000.00 2025-11-10 21:00:00+00 Santander 12819 10583 1583 88 da1p2q5qun2lv4aucn2ov6hjq4 \N 1506 +3216 2025-11-10 23:14:49.066256+00 2025-11-10 23:14:49.066264+00 f t 2025-11-11 18:00:00 NO_REPORT clinical Control cardiologico prequirurgico. 120000.00 10000.00 110000.00 2025-11-11 21:00:00+00 132704210009 12866 10618 1583 82 e62m6l8v4dvgs8enr08lrcn6kg \N 1516 +3231 2025-11-11 21:19:05.144537+00 2025-11-11 21:19:05.144546+00 t t 2025-11-13 15:00:00 PENDING clinical Extraccion de sangre para perfil 7 y vif vilef pcr. perfil 7 $28.500\r\npcr vif vilef $87.000\r\nenf,extr,tras $43.900\r\ntotal $159.400 159400.00 136400.00 23000.00 2025-11-13 18:00:00+00 133457045228 12968 10696 1583 112 o1bk6ad049bqjtdbaecti2g0ms \N 1538 +3242 2025-11-12 17:21:00.916743+00 2025-11-12 17:21:00.916753+00 f t 2025-11-11 09:00:00 COMPLETED clinical Muestra para Sangre para Perfil 7 sin orina 0.00 0.00 0.00 2025-11-11 12:00:00+00 0 11855 9803 1583 100 1eipsu466s8kg5omkjso18ogmo \N 1556 +3238 2025-11-12 14:29:21.754389+00 2025-11-12 14:29:21.754399+00 f t 2025-11-13 16:00:00 COMPLETED clinical vacunacion anual. 78000.00 21500.00 56500.00 2025-11-13 19:00:00+00 133542787454 13071 10782 1208 1 plds5b8euagp768ftlkllip3j0 \N 1548 +3237 2025-11-12 13:35:27.295647+00 2025-11-12 13:35:27.295658+00 f t 2025-11-12 13:00:00 NO_REPORT clinical Mi perra está un poco desanimada y lo único que note es que hizo un poco de heces oscuras. 55000.00 11000.00 44000.00 2025-11-12 16:00:00+00 OV1JXON1LDDGM6Z7NZ64EL 13037 10754 1208 1 o3psv9mkcks5t60o0nta2rrch0 \N 1545 +3220 2025-11-10 23:50:54.808725+00 2025-11-10 23:50:54.808737+00 f t 2025-11-10 15:00:00 NO_REPORT clinical Diarrea de Color Negro \N 30000.00 30000.00 19500.00 2025-11-10 18:00:00+00 133285610292 12930 10664 \N 68 cu9cit4clsrqshq0t0mseoo5dg \N 1523 +3182 2025-11-07 14:15:05.942609+00 2025-11-07 14:15:05.942625+00 f t 2025-11-17 10:00:00 COMPLETED clinical Extraccino para perfil general completo 98400.00 57900.00 40500.00 2025-11-17 13:00:00+00 132873173996 1734 10411 1583 88 ltsi2f5ir7169rgrbe08f6c0ps \N 1468 +3243 2025-11-12 17:37:35.6196+00 2025-11-12 17:37:35.619607+00 f t 2025-11-12 15:30:00 COMPLETED clinical perfil 7 lleva la muestra la tutora 28500.00 28500.00 0.00 2025-11-12 18:30:00+00 8DOQ619LO00Z7ZVVN7JZ5R 13037 10754 1208 100 083855c0a7ror8l1kinfsr14mo \N 1557 +1598 2025-06-27 20:24:37.316544+00 2025-06-27 20:24:37.316552+00 f t 2025-07-14 12:00:00 CANCELLED clinical Se detalla todo en el turno del 20/07\r\nCorregido 30/6. Al final ponemos el valor correspondiente en cada turno para que le aparezca bien al vete en la plataforma 95000.00 10000.00 85000.00 2025-07-14 15:00:00+00 0 703 820 1026 82 neh8rkp1bb2vnjb1b5cm0saugo \N \N +2863 2025-10-13 14:03:09.712266+00 2025-10-13 14:03:09.712279+00 f t 2025-10-15 09:00:00 COMPLETED clinical Estudios cardiologicos, electrocardiograma y ecocardiograma 107000.00 12000.00 95000.00 2025-10-15 12:00:00+00 39202193670 123 128 1583 82 828gc02mkvpummklj3tl6el88c \N 985 +3296 2025-11-17 15:10:53.378255+00 2025-11-17 15:10:53.378266+00 f t 2025-11-18 17:00:00 COMPLETED clinical Muestra de sangre. 0.00 0.00 0.00 2025-11-18 20:00:00+00 0 13490 11121 1583 100 vn78pc8mqq63231e9mq26v8v48 \N 1630 +3247 2025-11-12 18:41:57.697746+00 2025-11-12 18:41:57.697755+00 t t 2025-11-13 18:00:00 PENDING clinical Aplicacion tribiotic y control post quirurgico. 46000.00 11000.00 35000.00 2025-11-13 21:00:00+00 132966787405 10707 8891 1583 68 3c3hdn7m32dhhja501rs3jtls8 \N 1553 +97 2024-10-30 14:13:09.117+00 2024-10-30 14:13:09.117+00 f t 2024-09-03 10:00:00 COMPLETED Vacunación (Rabia + Sext/Triple) Vacunación + desparasitación + extracción de sangre Transaccion 86224440026 Cliente abonó 100% 117450.00 117450.00 81500.00 2024-09-03 13:00:00+00 79 81 \N 1 e98l9s83e9v4n213h7pm7n7gus \N \N +2880 2025-10-14 17:18:54.30698+00 2025-10-14 17:18:54.306989+00 f t 2025-10-21 09:00:00 COMPLETED clinical Consulta general por castracion y extraccion de sangre para prequirurgico 99400.00 58900.00 40500.00 2025-10-21 12:00:00+00 129903801246 10707 8891 1583 68 99rtfodku9a1tb3ta93faqtccc \N 1006 +3240 2025-11-12 15:26:13.128284+00 2025-11-12 15:26:13.128295+00 f t 2025-11-29 09:00:00 PENDING clinical control y vacunacion anual para perro y gato Desc. multimasc 140400.00 27400.00 113000.00 2025-11-29 12:00:00+00 84561212 12977 10705 1208 80 raghbq81j0qiqv3g6okv2nnsrc \N 1547 +3212 2025-11-10 14:44:48.79061+00 2025-11-10 14:44:48.790626+00 f t 2025-11-11 16:00:00 NO_REPORT clinical vacunacion anual, desparasitacion int + ext para 7kg, corte de unas. Se le debe $88500 a la doc, la tutora abono el total 118700.00 118700.00 0.00 2025-11-11 19:00:00+00 39601899956 12851 10609 1583 89 9uv75fgc85k6mifqgbr88k4eu0 \N 1508 +3245 2025-11-12 18:23:39.298082+00 2025-11-12 18:23:39.298091+00 f t 2025-11-12 20:00:00 COMPLETED clinical Teleconsulta post estudios. Se le debe $19500 a la vete 30000.00 30000.00 0.00 2025-11-12 23:00:00+00 133571852974 11855 9803 1583 92 oh02hggojbjiest96b8ehqclgs \N 1559 +3239 2025-11-12 15:16:58.562524+00 2025-11-12 15:16:58.562536+00 f t 2025-11-14 09:00:00 COMPLETED clinical Ecografia abdominal. 82000.00 12000.00 70000.00 2025-11-14 12:00:00+00 132942131801 12810 10572 1583 103 s0h5qr6om5ik5rrfp2s791iebk \N 1550 +3233 2025-11-11 22:32:39.381905+00 2025-11-11 22:32:39.381913+00 f t 2025-11-11 20:00:00 COMPLETED clinical Dolor por displacia cervical y artitris \N 55000.00 11000.00 44000.00 2025-11-11 23:00:00+00 132861032979 12810 10572 \N 92 4dqqsahh9sna9a648an8k9ueu8 \N 1541 +3322 2025-11-19 15:21:17.068983+00 2025-11-19 15:21:17.068992+00 f t 2025-11-19 16:00:00 COMPLETED clinical viene con diarreas liquidas intermitentes hace unos dias 55000.00 11000.00 44000.00 2025-11-19 19:00:00+00 39731236439 703 820 1208 114 10osmebrmpn50c63o2tsi9mupg \N 1675 +3173 2025-11-06 21:04:37.968171+00 2025-11-06 21:04:37.968179+00 f t 2025-11-07 09:00:00 COMPLETED clinical Extraccion para perfil general completo con orina, upc, calcio, fosforo, ionograma serico 119400.00 78900.00 40500.00 2025-11-07 12:00:00+00 Santander 12527 10350 1583 88 10k26sgd78p8p5nilmj3jkkgjc \N 1455 +3241 2025-11-12 15:46:34.2684+00 2025-11-12 15:46:34.268408+00 f t 2025-11-14 16:00:00 COMPLETED clinical la escucho como resfriada o con moco. 46000.00 11000.00 35000.00 2025-11-14 19:00:00+00 132945941727 10291 8544 1583 114 drkl4aa6sjq4t4r5d8ctoic6os \N 1551 +3376 2025-11-25 14:39:14.266078+00 2025-11-25 14:39:14.26609+00 f t 2025-12-06 10:00:00 PENDING clinical Vacunacion anual y desparasitacion int+ext 4kg. 111000.00 28000.00 83000.00 2025-12-06 13:00:00+00 135186947892 14476 11939 1583 1 8rr6ambemvu3743n23t1vbrt8s \N 1776 +3280 2025-11-15 17:58:01.569175+00 2025-11-15 17:58:01.569188+00 f t 2025-11-16 11:00:00 NO_REPORT clinical Mi perro fue dado de alta luego de estar internado por una nefrectomia. Me indicaron que tenga un control clínico el día de hoy para chequear que todo estuviera bien. 55000.00 11000.00 44000.00 2025-11-16 14:00:00+00 6601b7a1-a2a5-42ae-bd43-757398 13352 11001 1208 80 r2rf8rhbln7qa0s6dnjqmr8oic \N 1610 +3246 2025-11-12 18:37:15.086415+00 2025-11-12 18:37:15.086422+00 f t 2025-11-13 19:30:00 NO_REPORT clinical ecografia abdominal 78000.00 13000.00 65000.00 2025-11-13 22:30:00+00 76V4MR2Z7P7678OLNDEZOL 13037 10754 1208 90 71len73nmfje8gb0deq5dqu3sk \N 1560 +3384 2025-11-25 18:55:49.413697+00 2025-11-25 18:55:49.413746+00 f t 2025-11-26 20:30:00 PENDING clinical Eutanasia. 136500.00 27500.00 109000.00 2025-11-26 23:30:00+00 134445546123 14336 11820 1583 70 3smf2u58ln98m5sgqjo8ndufnc \N 1754 +3298 2025-11-17 16:40:07.354145+00 2025-11-17 16:40:07.354157+00 f t 2025-11-21 12:30:00 COMPLETED clinical Consulta post estudios. 46000.00 11000.00 35000.00 2025-11-21 15:30:00+00 WY7ZEPN6MQ178PE42Q0M51 12325 10177 1583 114 t6mcb49p1eiqr3u5a8tm4fe4k4 \N 1635 +3236 2025-11-12 13:25:11.261643+00 2025-11-12 13:25:11.261656+00 f t 2025-11-12 15:00:00 COMPLETED clinical vomito y deposiciones con sangre. 55000.00 11000.00 44000.00 2025-11-12 18:00:00+00 133534415026 11255 9334 1208 88 oroebo90sk63utq1sai50v3be4 \N 1546 +3370 2025-11-24 22:19:14.271475+00 2025-11-24 22:19:14.271486+00 f t 2025-11-25 21:00:00 NO_REPORT clinical Teleconsulta post estudios Se le debe 19500 a la doc, tutor abona con link de pago 30000.00 30000.00 0.00 2025-11-26 00:00:00+00 MP 13490 11121 1583 68 qmkea5nmd3u9j6hm8e1gc0baq4 \N 1756 +2413 2025-09-08 15:47:19.067522+00 2025-09-08 15:47:19.067532+00 f t 2025-09-10 11:00:00 COMPLETED vaccination Vacunas anuales La tutora pago $10.000 extra al vete por la distancia, esta fuera del area de cobertura\r\nDescuento por mas de 1 animal -$15.600 150400.00 27400.00 123000.00 2025-09-10 14:00:00+00 LOEJWV9JLK6R8K48NQMD0G 8199 6745 1583 68 5k43elutffn30f29qpmdt5q014 88 \N +3257 2025-11-13 15:06:43.185688+00 2025-11-13 15:06:43.185698+00 f t 2025-11-14 20:30:00 NO_REPORT clinical Encuentro que anda muy chillona. 46000.00 11000.00 35000.00 2025-11-14 23:30:00+00 10146978008251113 12946 10678 1583 70 peaud761oek0va7eui56oc4i18 \N 1573 +1668 2025-07-04 21:08:55.055417+00 2025-07-04 21:08:55.055427+00 f t 2025-07-04 21:00:00 COMPLETED telemedicina Desde el miércoles tiene falta de apetito y tiembla. Toma agua y hace pis y caca de manera normal pagarle a majo $17500 27500.00 27500.00 0.00 2025-07-05 00:00:00+00 Confirme con agus 3918 3291 1026 79 khu7r7lsnh5kjm2tbkh0lrjjus 707 \N +3255 2025-11-13 13:37:15.574088+00 2025-11-13 13:37:15.574096+00 f t 2025-11-13 21:00:00 COMPLETED clinical eutanasia desc recompra 128250.00 14250.00 114000.00 2025-11-14 00:00:00+00 133669600688 11855 9803 1208 92 8tn8rn4h2eievng4ket5lqjk28 \N 1571 +2768 2025-10-04 20:20:42.78002+00 2025-10-04 20:20:42.780028+00 f t 2025-10-07 13:00:00 COMPLETED clinical extraccion de sangre, Perfil hepatico + calcio+ forforo+ ionograma serico+ + aoc + upc Desc. recompra\r\nen este turno iria: Clinica, extraccion, traslado y laboratorio: Hepatograma $20.000\r\ncalcio 3500\r\nfosforo 3500\r\ninoograma 7500\r\nAOC: 9500\r\nproteínas totales 3500\r\ncreati 3500 111210.00 70710.00 40500.00 2025-10-07 16:00:00+00 128077548603 9991 8265 1208 88 8imbeb87hu452dncr69i3k3pks \N 848 +3259 2025-11-13 17:10:12.525375+00 2025-11-13 17:10:12.525389+00 f t 2025-11-13 14:00:00 NO_REPORT clinical Gusanos en materia fecal e inflamacion en ano, quiere receta de atp ya que tiene otros gatos. 30000.00 30000.00 19500.00 2025-11-13 17:00:00+00 133092717371 13183 10877 1208 80 kf7ipjl11h8dhngvfvqlcb84o8 \N 1577 +665 2025-02-16 22:01:21.945501+00 2025-02-16 22:01:21.945506+00 f t 2025-02-17 11:30:00 COMPLETED vaccination Vacunación anual de dos gatos La clienta paso el monto total del pago, hacer devolución a lisandro 109350.00 23850.00 85500.00 2025-02-17 14:30:00+00 102173671801 461 546 114 1 lv16hndvss1p4e6su2r7cfmg2g \N \N +3265 2025-11-13 20:40:27.708075+00 2025-11-13 20:40:27.708084+00 f t 2025-11-14 16:00:00 NO_REPORT clinical 2 vacunacion anual, felino y canino. \N 146800.00 43000.00 113000.00 2025-11-14 19:00:00+00 19352765 418 498 \N 1 m0rj0irorm5uh81cvr0ect3ep0 \N 1585 +3256 2025-11-13 15:00:51.495752+00 2025-11-13 15:00:51.495761+00 f t 2025-11-13 17:30:00 COMPLETED clinical Vacunacion antirrabica con urgencia, perro pitbull mordio a un niño en la calle, se lo pide el medico 63000.00 13500.00 49500.00 2025-11-13 20:30:00+00 PDX4OGNYG1WME06RN0L6EY 13168 10863 1208 21 1ukobt8gkumg3379n6jq9vvo0c \N 1572 +3299 2025-11-17 17:15:09.237969+00 2025-11-17 17:15:09.237984+00 f t 2025-11-22 08:30:00 NO_REPORT clinical Extraccion de sangre para Perfil 7 + Orina Completo/con sedimento 84900.00 61900.00 23000.00 2025-11-22 11:30:00+00 L0EJVV9JZL51LXZZ2QMD0G 13436 11058 1583 104 5648rp6njmc3h93mo7overm564 \N 1632 +3249 2025-11-12 20:23:19.844646+00 2025-11-12 20:23:19.844655+00 f t 2025-11-13 17:00:00 COMPLETED clinical Tiene una bolita cerca de las mamas y queremos hacer una consulta. 46000.00 11000.00 35000.00 2025-11-13 20:00:00+00 132978350997 3054 2662 1208 68 oct3r2b52pgei7u6c7k55u7o4o \N 1552 +3262 2025-11-13 18:57:30.711578+00 2025-11-13 18:57:30.711587+00 f t 2025-11-14 14:00:00 NO_REPORT clinical Dejo de comer su comida hace 2 dias 46000.00 11000.00 35000.00 2025-11-14 17:00:00+00 133104594193 13188 10879 1583 94 glf27lal3bhmcvqihob0pv1vvs \N 1579 +1683 2025-07-07 17:22:04.803714+00 2025-07-07 17:22:04.803721+00 f t 2025-07-08 18:30:00 NO_REPORT telemedicina Comenzó con síntomas de diarrea nuevamente Vínculo a la videollamada: https://meet.google.com/iuu-emyw-zca 27500.00 27500.00 0.00 2025-07-08 21:30:00+00 117219748967 3735 3166 114 70 uec33oeri89phu8o7ih18gka6c 685 \N +3258 2025-11-13 15:11:40.283897+00 2025-11-13 15:11:40.283909+00 f t 2025-11-13 15:00:00 NO_REPORT clinical El tuvo un complejo respiratorio felino de chiquito, tiene vacunas al día y seguimiento constante pero se encuentra con bastante moco y tos hace 48hs. 55000.00 11000.00 44000.00 2025-11-13 18:00:00+00 133076120611 13162 10859 1208 2 vq2j5m7okbvec1p8e6r9ks080s \N 1570 +3248 2025-11-12 20:11:07.325667+00 2025-11-12 20:11:07.325675+00 f t 2025-11-12 17:30:00 COMPLETED clinical No come hace 3/4 días, tiene movilidad reducida. 55000.00 11000.00 44000.00 2025-11-12 20:30:00+00 0 13088 10798 1208 113 i0hl51el5q7npcqlqrllmjlvvc \N 1562 +3189 2025-11-07 21:43:21.330026+00 2025-11-07 21:43:21.330035+00 f t 2025-11-08 10:00:00 COMPLETED clinical muestra de orina volvemos a enviar 13200.00 13200.00 0.00 2025-11-08 13:00:00+00 132935774420 12287 10146 1208 100 995ivb2r9166sehi83dp7m55ag \N 1475 +3266 2025-11-13 23:19:41.111114+00 2025-11-13 23:19:41.111121+00 f t 2025-11-14 17:30:00 COMPLETED clinical Decaimiento y falta de apetito 59000.00 11000.00 48000.00 2025-11-14 20:30:00+00 133747839322 13215 10900 114 21 pv0cl1sfuhe48bqslh89k031lk \N 1587 +3260 2025-11-13 18:18:48.076385+00 2025-11-13 18:18:48.076393+00 f t 2025-12-16 19:00:00 PENDING clinical Vacunacion anual. Abona con link de pago la parte del vete 78000.00 21500.00 56500.00 2025-12-16 22:00:00+00 cuenta DNI 12875 10626 1583 88 5j564uqq7555c5va4srh7ffs68 \N 1515 +3267 2025-11-14 12:35:05.916034+00 2025-11-14 12:35:05.916044+00 f t 2025-11-14 12:00:00 NO_REPORT clinical Se rasca mucho. 55000.00 11000.00 44000.00 2025-11-14 15:00:00+00 30075205008251114 13262 10929 1583 68 rq628fil46k1e9uip0n4c6hkeg \N 1592 +3268 2025-11-14 13:22:55.544991+00 2025-11-14 13:22:55.545002+00 f t 2025-11-14 15:00:00 NO_REPORT clinical Come poco, agua normal. 55000.00 11000.00 44000.00 2025-11-14 18:00:00+00 133203562943 13248 10920 1583 74 npe8ijc445ko1m8e5icremukf0 \N 1590 +3253 2025-11-12 23:55:04.654196+00 2025-11-12 23:55:04.65421+00 f t 2025-11-15 09:00:00 NO_REPORT clinical placas de falange/metacarpo 85000.00 15000.00 70000.00 2025-11-15 12:00:00+00 133615156362 13127 10834 1208 84 ganfl27lks0634m74hikk1aibc \N 1567 +3261 2025-11-13 18:43:16.460929+00 2025-11-13 18:43:16.460943+00 f t 2025-11-14 10:00:00 COMPLETED clinical Tos, le vi pelotitas en las piernas y panza 46000.00 11000.00 35000.00 2025-11-14 13:00:00+00 133711189110 384 456 1583 68 anml0gf06a79qasjthlhoiiebc \N 1575 +3354 2025-11-21 16:22:02.50195+00 2025-11-21 16:22:02.501963+00 f t 2025-11-21 20:00:00 COMPLETED clinical Ecografia abdominal urgencia 78000.00 13000.00 65000.00 2025-11-21 23:00:00+00 8D0Q619L0O4ZZGXVN7JZ5R 14017 11560 1583 90 m6r56llpseug230gvki7rck31s \N 1713 +3251 2025-11-12 21:52:31.838705+00 2025-11-12 21:52:31.838713+00 f t 2025-11-13 12:00:00 NO_REPORT clinical Teleconsulta post estudio. Se le debe 19500 a la vete 30000.00 30000.00 0.00 2025-11-13 15:00:00+00 133599282892 7528 6192 1583 80 621keus85fhcbrlriimtbonotg \N 1566 +3263 2025-11-13 20:38:20.321558+00 2025-11-13 20:38:20.321569+00 f t 2025-11-17 16:00:00 NO_REPORT clinical extraccion de sangre perfil general completo con orina, hay que ver si se suma alguna determinacion 0.00 0.00 0.00 2025-11-17 19:00:00+00 133114746019 308 365 1208 100 40e105kjnk8239p94ejp69iags \N 1586 +3172 2025-11-06 19:28:57.992001+00 2025-11-06 19:28:57.992014+00 f t 2025-11-11 16:00:00 NO_REPORT clinical consulta cardiologica precirugia alcasena cobra mas por distancia 125000.00 5000.00 120000.00 2025-11-11 19:00:00+00 132165063733 274 323 1208 82 mlcmhvhrsd7uq30al7sh4o7qac \N 1450 +3390 2025-11-26 00:23:37.687388+00 2025-11-26 00:23:37.687401+00 f t 2025-11-29 16:00:00 PENDING clinical Toma de muestra 46000.00 13200.00 40500.00 2025-11-29 19:00:00+00 79006687 10193 8460 113 1 ke4vkggokvo53spi5cg7ufr4j4 \N 1802 +2506 2025-09-15 23:50:16.005991+00 2025-09-15 23:50:16.006+00 f t 2025-11-04 19:30:00 COMPLETED clinical desparacitacion interna y externa + certificado de salud Se le debe $35.000 a la vete por la cosnulta. Tomo el turno de Mara, a quien ya le habian pagado la consulta, y cancelo el turno presencial para hacerlo virtual y el tutor no quiso por que tenian que firmar el certificado de salud 43560.00 6060.00 37500.00 2025-11-04 22:30:00+00 125772281949 8478 6985 1208 80 odtn2k5rqv9nlaj49e9prh70io \N \N +3269 2025-11-14 13:43:51.206829+00 2025-11-14 13:43:51.206837+00 f t 2025-11-14 09:30:00 COMPLETED clinical Muestra Perfil General Completo sin Orina. 0.00 0.00 0.00 2025-11-14 12:30:00+00 0 12803 10568 1583 100 nnab5cq8mvsel78ipqto0scnic \N 1596 +3302 2025-11-17 19:33:57.380361+00 2025-11-17 19:33:57.380369+00 f t 2025-11-18 19:00:00 NO_REPORT clinical Picazón y con un bulto en los dientes 46000.00 11000.00 35000.00 2025-11-18 22:00:00+00 39707134735 6770 11053 1583 96 ihsqlb09nlgf7rerj9i1fms6uc \N 1620 +3385 2025-11-25 19:01:15.735947+00 2025-11-25 19:01:15.735956+00 f t 2025-11-26 16:00:00 PENDING clinical Ecografia abdominal. 78000.00 13000.00 65000.00 2025-11-26 19:00:00+00 135218415218 14506 11963 1583 5 mt2gq39k4hb773ph67cubj0cig \N 1785 +3300 2025-11-17 17:16:00.671649+00 2025-11-17 17:16:00.671658+00 f t 2025-11-22 10:00:00 COMPLETED clinical Muestra para Perfil 7 0.00 0.00 0.00 2025-11-22 13:00:00+00 0 13436 11058 1583 100 ruvtq33qgdqd982crc5hq3i09g \N 1637 +3323 2025-11-19 15:52:31.736564+00 2025-11-19 15:52:31.736573+00 f t 2025-11-27 11:00:00 PENDING clinical Vacunacion triple felina 133859567603 - $7.000 70000.00 19000.00 51000.00 2025-11-27 14:00:00+00 133858837497 13762 11353 1208 80 raoq9hu5795646o6vrq8rt786k \N 1666 +3377 2025-11-25 14:40:30.651276+00 2025-11-25 14:40:30.651288+00 f t 2025-11-25 13:00:00 NO_REPORT clinical Vomito 3 veces hoy (2 fueron líquido sin pelos ni plantas? E hizo caca fuera de su arenero 3 veces 55000.00 11000.00 44000.00 2025-11-25 16:00:00+00 c346aeeb-f177-4f55-ab03-59fbd9 277 328 1208 114 hhd25besv7knkaitnnduafq484 \N 1770 +567 2025-02-03 12:18:14.791649+00 2025-02-03 12:18:14.791657+00 f t 2025-02-07 19:00:00 COMPLETED vaccination Medición de la presión y aplicación de ringerlactato 0.00 0.00 14800.00 2025-02-07 22:00:00+00 \N 406 483 114 66 d9fm68vt7t99o5qgv44m1g7jgc \N \N +3326 2025-11-19 16:50:06.573664+00 2025-11-19 16:50:06.573678+00 f t 2025-11-19 18:00:00 COMPLETED clinical Presentó un cuadro de vomitos el Lunes por la tarde. Ayer se hizo visita al veterinario, presentaba fiebre. Se le inyectó un antibiótico. Se ordenó Ecografia de Utero 88000.00 13000.00 77000.00 2025-11-19 21:00:00+00 8DDQ619L0QJW6QVNH7JZ5R 13766 11356 1208 90 47s6761e5qq5tijbsdlhddelt0 \N 1667 +3357 2025-11-21 18:04:05.885663+00 2025-11-21 18:04:05.885682+00 f t 2025-11-21 17:00:00 NO_REPORT clinical Le acabo de ver pelada la cabecita en la parte interna de la oreja 55000.00 11000.00 44000.00 2025-11-21 20:00:00+00 39762556134 1098 1164 1208 1 afcsdk4pdj6esv3l34ets270eo \N 1721 +3330 2025-11-19 19:01:00.166822+00 2025-11-19 19:01:00.166832+00 f t 2025-11-20 10:30:00 COMPLETED clinical fluidoterapia endovenosa 81860.00 25860.00 56000.00 2025-11-20 13:30:00+00 133879580779 13352 11001 1208 121 1il9ts0v1o22auqdof8u1lrsj0 \N 1683 +3358 2025-11-21 18:07:36.240799+00 2025-11-21 18:07:36.24081+00 f t 2025-11-21 20:00:00 COMPLETED clinical Verruga en el cuello, sufrio algun tipo de herida y florecio con secreciones leves. DEBEMOS ABONAR NOSOTROS, PALUMMO FUE Y NUNCA LA ATENDIERON 55000.00 11000.00 44000.00 2025-11-21 23:00:00+00 134133661357 14055 11596 1208 80 sm29mpcifq7n0hubl9cemop1qo \N 1722 +3274 2025-11-14 16:08:20.624592+00 2025-11-14 16:08:20.624602+00 f t 2025-11-14 17:00:00 NO_REPORT clinical Diarrea con sangre. 55000.00 11000.00 44000.00 2025-11-14 20:00:00+00 133834573184 8397 6920 1583 68 k3lqcatr5ub6rld1lokkindvh8 \N 1599 +3227 2025-11-11 19:29:32.862705+00 2025-11-11 19:29:32.862714+00 f t 2025-11-12 16:00:00 COMPLETED clinical Tengo la gatita hace una semana tiene dos meses aprox y solo le hicieron la primera desparasitacion. Además me gustaría que la vean y me digan que más debo hacer con ella. 46000.00 11000.00 35000.00 2025-11-12 19:00:00+00 133441616092 12991 10715 1208 68 j3tadnhvo73hp4b7jf80mccfog \N 1535 +3203 2025-11-09 19:47:37.255944+00 2025-11-09 19:47:37.255952+00 f t 2025-11-10 15:30:00 NO_REPORT clinical Ecografía Abdominal \N 78000.00 13000.00 65000.00 2025-11-10 18:30:00+00 86VRPQ2GMD7E7K302GLY0M 12803 10568 \N 90 13lt97p53k2ddfqcc8g1cklks0 \N 1500 +2585 2025-09-21 21:15:57.58409+00 2025-09-21 21:15:57.584103+00 f t 2025-09-25 21:00:00 COMPLETED clinical Extracción de sangre para gato y perro (Citología de Burton) Estudios de Leif (la seña tiene un descuento por recompra)-->\r\n - Extracción de Sangre, perfil general completo 7 --> A Nicolas le corresponden por este paciente --> $23.000\r\n - Ecografía Abdominal con Di Risio --> le corresponden por este paciente --> $65.000\r\n\r\nSeña de ecografia + extraccion+ traslado = descuento de recompra 161710.00 73710.00 88000.00 2025-09-26 00:00:00+00 127032777030 8397 7504 114 112 jts98gvv5ljfckm9hgr8fsjuf8 \N \N +3206 2025-11-09 20:06:12.406533+00 2025-11-09 20:06:12.406541+00 f t 2025-11-10 15:30:00 NO_REPORT clinical Resultados del estudio 40500.00 5500.00 35000.00 2025-11-10 18:30:00+00 00000000 9712 8096 114 98 effh6f9l147ejl06a6460p4dbg \N 1504 +3340 2025-11-20 14:35:26.612209+00 2025-11-20 14:35:26.612217+00 f t 2025-11-26 11:00:00 PENDING clinical Vacunacion anual, desparasitacion int+ext 5kg. 111000.00 28000.00 83000.00 2025-11-26 14:00:00+00 133986194933 13882 11446 1583 80 1i7m3l3e8u25agrhlgqqbcksm0 \N 1694 +3271 2025-11-14 14:02:53.867939+00 2025-11-14 14:02:53.867947+00 f t 2025-11-14 18:00:00 COMPLETED clinical Aplicacion de inyectable 55000.00 11000.00 44000.00 2025-11-14 21:00:00+00 133817130306 12684 10475 1583 114 lf5rrijuuf22s73g39jjk0itns \N 1594 +3301 2025-11-17 18:30:45.219483+00 2025-11-17 18:30:45.21949+00 f t 2025-11-17 17:30:00 COMPLETED clinical Incontinencia, vomitos y fiebre luego de Castración \N 55000.00 11000.00 44000.00 2025-11-17 20:30:00+00 1133604588893 12696 11148 \N 114 04601fivct9e98ch7kdo1i2b28 \N 1638 +3378 2025-11-25 14:49:37.557412+00 2025-11-25 14:49:37.557419+00 f t 2025-11-25 17:00:00 NO_REPORT clinical estaba indispuesta, y hace unos tres dias esta con mucha perdida, pero ayer no quiso comer, y eso nos esta preocupando, si toma mucha agua, la tocamos y no se queja de ningun dolor. 55000.00 11000.00 44000.00 2025-11-25 20:00:00+00 135185242622 14472 11935 1208 68 1oaltiu8vmfupcqpr99g7okabo \N 1775 +3276 2025-11-14 16:35:28.681304+00 2025-11-14 16:35:28.681314+00 f t 2025-11-19 15:30:00 COMPLETED clinical Toma de presion $15.000 xtra por la toma de presion 61000.00 11000.00 50000.00 2025-11-19 18:30:00+00 86246768 13305 10959 1583 113 ih4gli76sp6c7a2j2sr2ic6kqo \N 1601 +3270 2025-11-14 13:48:41.553394+00 2025-11-14 13:48:41.553405+00 f t 2025-11-15 10:00:00 NO_REPORT clinical Rayos 85000.00 15000.00 70000.00 2025-11-15 13:00:00+00 Link MP 13290 10950 1583 84 k4vem14evmu6bu8p914u3lhvf0 \N 1597 +3275 2025-11-14 16:28:33.314293+00 2025-11-14 16:28:33.314304+00 f t 2025-11-14 18:00:00 NO_REPORT clinical Nefrologia. Se le debe $50000 al vete 60000.00 60000.00 0.00 2025-11-14 21:00:00+00 86249351 12527 10350 1583 115 dhjta8lk7j2sgkfqsuho01em64 \N 1600 +3273 2025-11-14 15:22:21.13935+00 2025-11-14 15:22:21.139358+00 f t 2025-11-15 17:30:00 COMPLETED clinical Ecografia abdominal por vomitos. 88000.00 13000.00 75000.00 2025-11-15 20:30:00+00 39666341719 13291 10951 1583 90 o1i3vppfgpba1c04l6svq66vog \N 1598 +3272 2025-11-14 15:16:42.729288+00 2025-11-14 15:16:42.7293+00 f t 2025-11-14 12:30:00 NO_REPORT clinical Teleconsulta post estudios Se le debe 19500,00 a la vete 30000.00 30000.00 0.00 2025-11-14 15:30:00+00 133828070702 12287 10146 1583 80 9324oh6n4kv4hn7pn4666p6c8o \N 1583 +3353 2025-11-21 13:20:54.572709+00 2025-11-21 13:20:54.572721+00 f t 2025-11-21 11:30:00 COMPLETED clinical Inflamación y secresión de mucosa de color turbio en ojo izquierdo 55000.00 11000.00 44000.00 2025-11-21 14:30:00+00 3D5W612E6JE3J0GG2GXYVR 13993 11541 1583 70 g2a29hfjeg68estm2lfv18mvi4 \N 1714 +3362 2025-11-22 16:15:32.23918+00 2025-11-22 16:15:32.239188+00 f t 2025-11-25 15:00:00 NO_REPORT clinical Es una gata de interior, queremos chequear su estado de salud porque muy pronto tendremos un BB. 46000.00 11000.00 35000.00 2025-11-25 18:00:00+00 39772692145 14127 11649 1208 114 0538fj0c6vv0oskdq2dc54hbok \N 1733 +3366 2025-11-23 16:44:03.834456+00 2025-11-23 16:44:03.834465+00 f t 2025-11-24 11:00:00 NO_REPORT clinical Herida en el labio superior derecho. Es una herida rosada, que no sangra y que mostrou una pequeña evolución desde que fue observada hace dos o tres semanas. 55000.00 11000.00 44000.00 2025-11-24 14:00:00+00 1LMP68NKVVJGYO3D2R7OEV 14229 11729 1583 80 o4cleguhipojrqm3feh2a7b560 \N 1746 +3386 2025-11-25 19:45:57.890165+00 2025-11-25 19:45:57.890173+00 f t 2025-11-25 22:00:00 NO_REPORT clinical No puede caminar \N 55000.00 11000.00 44000.00 2025-11-26 01:00:00+00 134609320145 12810 10572 \N 70 nfurnjhbqb0a3bljlk3ecjpbq4 \N 1788 +\. + + +-- +-- Data for Name: mascotas_vetvisit_pets; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_vetvisit_pets (id, vetvisit_id, pet_id) FROM stdin; +1 2081 5238 +2 2081 5239 +3 2082 5247 +4 2276 1095 +5 2278 6115 +6 2277 6115 +7 2279 6120 +8 2299 6216 +9 2300 6236 +10 2302 6257 +11 2303 6256 +12 2308 6252 +13 2350 6006 +14 2355 6395 +15 2356 6433 +16 2357 6440 +17 2358 6440 +18 2359 6434 +19 2360 6434 +20 2365 6462 +21 2366 4266 +22 2367 6492 +23 2381 6052 +24 2403 6666 +25 2405 6672 +26 2430 6815 +27 2432 6823 +28 2479 7061 +29 2481 7067 +30 2508 7196 +31 2509 7193 +32 2564 6512 +33 2565 7402 +34 2565 7403 +35 2565 7404 +36 2565 7405 +37 2566 557 +38 2567 7379 +39 2568 7414 +40 2569 7417 +41 2570 7416 +42 2571 7426 +43 2572 3336 +44 2573 5547 +45 2574 7451 +46 2574 7453 +47 2575 7454 +48 2576 7462 +49 2577 2042 +50 2578 7499 +51 2579 7479 +52 2580 7485 +53 2581 7504 +54 2582 618 +55 2583 7507 +56 2584 7504 +57 2584 6920 +58 2585 7504 +59 2585 6920 +60 2586 7529 +61 2587 7540 +62 2588 6782 +63 2589 7541 +64 2590 7552 +65 2591 6907 +66 2592 7529 +67 2593 7127 +68 2594 7557 +69 2595 176 +70 2596 6126 +71 2597 7566 +72 2598 7566 +73 2599 928 +74 2600 7564 +75 2600 2230 +76 2601 7583 +77 2602 7565 +78 2603 7587 +79 2604 7605 +80 2605 7599 +81 2606 6127 +82 2607 6126 +83 2608 3648 +84 2609 3688 +85 2610 7614 +86 2611 7626 +87 2611 7507 +88 2612 7507 +89 2613 7507 +90 2614 7642 +91 2615 7541 +92 2616 7643 +93 2617 7634 +94 2618 5175 +95 2619 7541 +96 2620 928 +97 2621 7660 +98 2622 7673 +99 2623 7643 +100 2624 6835 +101 2625 7541 +102 2626 7566 +103 2627 7688 +104 2628 7695 +105 2629 7700 +106 2630 7706 +107 2631 7733 +108 2632 7541 +109 2633 7746 +110 2634 3104 +111 2635 176 +112 2636 7753 +113 2637 7688 +114 2638 7688 +115 2639 7700 +116 2640 2418 +117 2641 5547 +118 2642 5891 +119 2643 7724 +120 2644 7765 +121 2645 7760 +122 2646 7771 +123 2647 7763 +124 2648 7777 +125 2648 7778 +126 2649 3031 +127 2650 7820 +128 2651 5647 +129 2652 928 +130 2653 7830 +131 2654 5906 +132 2655 7824 +133 2656 7837 +134 2657 7841 +135 2658 7844 +136 2658 7845 +137 2658 7846 +138 2658 7847 +139 2659 7852 +140 2660 7507 +141 2661 7869 +142 2662 7861 +143 2663 7868 +144 2664 7541 +145 2665 7899 +146 2666 7899 +147 2667 7899 +148 2668 7899 +149 2669 7899 +150 2670 7899 +151 2671 7892 +152 2672 7940 +153 2673 7935 +154 2674 7917 +155 2675 7930 +156 2676 7924 +157 2677 7924 +158 2678 7949 +159 2679 928 +160 2680 4386 +161 2681 7992 +162 2681 7993 +163 2681 7994 +164 2682 7962 +165 2683 8028 +166 2684 8029 +167 2685 8030 +168 2685 8031 +169 2686 1510 +170 2687 8033 +171 2688 8035 +172 2689 308 +173 2690 8053 +174 2691 8029 +175 2692 985 +176 2693 8056 +177 2694 8056 +178 2695 8045 +179 2696 8059 +180 2697 8060 +181 2697 8061 +182 2698 8063 +183 2699 8055 +184 2700 8055 +185 2701 6192 +186 2702 8062 +187 2703 8067 +188 2703 8068 +189 2704 8073 +190 2705 8082 +191 2705 8083 +192 2706 8090 +193 2707 8090 +194 2708 8096 +195 2709 8098 +196 2710 8106 +197 2711 8124 +198 2712 8123 +199 2713 788 +200 2714 7168 +201 2715 8129 +202 2716 1174 +203 2717 8134 +204 2718 8139 +205 2718 8140 +206 2719 8142 +207 2720 5636 +208 2721 8053 +209 2722 8148 +210 2723 8106 +211 2724 8106 +212 2725 7319 +213 2726 8150 +214 2727 8033 +215 2728 480 +216 2729 5906 +217 2730 7904 +218 2731 7414 +219 2732 869 +220 2733 8170 +221 2734 6967 +222 2735 8030 +223 2736 8030 +224 2737 8031 +225 2738 8031 +226 2739 8173 +227 2740 7557 +228 2741 8179 +229 2742 8167 +230 2743 6717 +231 2744 8207 +232 2745 3550 +233 2746 7557 +234 2747 8181 +235 2748 8181 +236 2749 1370 +237 2750 8227 +238 2751 8226 +239 2752 7319 +240 2753 7067 +241 2754 7319 +242 2755 8245 +243 2756 928 +244 2757 8240 +245 2757 8238 +246 2758 1370 +247 2759 8229 +248 2759 8231 +249 2760 8053 +250 2761 8150 +251 2762 8150 +252 2763 8264 +253 2764 8130 +254 2764 8131 +255 2765 8245 +256 2766 8274 +257 2767 8279 +258 2768 8265 +259 2769 8265 +260 2770 8265 +261 2771 1370 +262 2772 8317 +263 2772 8318 +264 2773 8324 +265 2774 8307 +266 2775 8320 +267 2776 8320 +268 2777 8300 +269 2778 8331 +270 2779 8332 +271 2780 8364 +272 2781 7660 +273 2782 7414 +274 2783 8375 +275 2784 6126 +276 2785 8379 +277 2786 8383 +278 2787 8307 +279 2788 403 +280 2789 8390 +281 2790 8399 +282 2791 128 +283 2792 8423 +284 2793 8407 +285 2794 8425 +286 2795 6192 +287 2796 6193 +288 2796 8427 +289 2797 8446 +290 2798 8460 +291 2799 7319 +292 2800 8483 +293 2801 8472 +294 2802 8485 +295 2803 8460 +296 2804 7733 +297 2805 4927 +298 2806 169 +299 2807 169 +300 2808 169 +301 2809 169 +302 2810 8476 +303 2811 8499 +304 2812 8320 +305 2813 8518 +306 2814 7319 +307 2815 8526 +308 2816 8265 +309 2817 741 +310 2818 8504 +311 2819 8533 +312 2820 8533 +313 2821 8540 +314 2822 8540 +315 2823 8541 +316 2824 8544 +317 2825 488 +318 2826 8549 +319 2827 8550 +320 2828 8564 +321 2829 8565 +322 2830 8586 +323 2831 8545 +324 2832 8279 +325 2833 8597 +326 2834 8597 +327 2835 8601 +328 2836 8599 +329 2837 890 +330 2838 294 +331 2839 8635 +332 2840 8652 +333 2841 8661 +334 2842 8667 +335 2843 8661 +336 2844 3550 +337 2845 8690 +338 2846 8691 +339 2847 8687 +340 2848 8696 +341 2849 75 +342 2850 8722 +343 2851 8742 +344 2852 8759 +345 2853 8758 +346 2854 8764 +347 2855 8764 +348 2856 6168 +349 2857 827 +350 2858 8766 +351 2859 128 +352 2860 128 +353 2861 4122 +354 2862 8799 +355 2863 128 +357 2865 8814 +358 2866 8813 +359 2867 407 +360 2868 8819 +361 2868 8821 +362 2869 7557 +363 2870 8808 +364 2871 8812 +365 2872 8830 +366 2873 6902 +367 2874 8838 +368 2875 8857 +369 2876 3826 +370 2877 8858 +371 2878 3134 +372 2879 8885 +373 2880 8891 +374 2881 8891 +375 2882 8891 +376 2883 8894 +377 2884 8150 +378 2885 8812 +379 2886 8899 +380 2887 8472 +381 2888 8472 +382 2889 8919 +383 2890 8941 +384 2891 5994 +385 2892 5994 +386 2893 128 +387 2894 8950 +388 2895 8958 +389 2896 8597 +390 2897 8597 +391 2898 8968 +392 2899 8966 +393 2900 9010 +394 2901 7379 +395 2902 9013 +396 2902 9015 +397 2903 9022 +398 2904 9021 +399 2905 9023 +400 2906 9025 +401 2907 8994 +402 2908 9030 +403 2909 9030 +404 2910 3257 +405 2911 9029 +406 2912 9033 +407 2913 9045 +408 2914 2020 +409 2915 9054 +410 2916 9039 +411 2917 9073 +412 2918 724 +413 2919 9054 +414 2920 9087 +415 2921 8812 +416 2922 9067 +417 2923 9089 +418 2924 9091 +419 2925 9091 +420 2926 9096 +421 2927 335 +422 2928 7733 +423 2929 7733 +424 2930 9096 +425 2931 9096 +426 2932 9045 +427 2933 3550 +428 2934 9152 +429 2935 4266 +430 2936 9121 +431 2936 9123 +432 2937 9159 +433 2938 9157 +434 2939 9021 +435 2940 9039 +436 2941 9067 +437 2942 9193 +438 2943 6168 +439 2944 9193 +440 2945 9232 +441 2945 9233 +442 2946 9246 +443 2947 9235 +444 2947 9236 +445 2948 9246 +446 2949 9246 +447 2950 9238 +448 2951 519 +449 2952 9264 +450 2953 7733 +451 2954 9271 +452 2955 8472 +453 2956 9270 +454 2957 9287 +455 2958 9292 +456 2959 8941 +457 2960 8941 +458 2961 9313 +459 2962 9322 +460 2963 9319 +461 2964 9319 +462 2965 9325 +463 2966 7061 +464 2967 9340 +465 2968 1150 +466 2969 9334 +467 2970 9346 +468 2971 9380 +469 2972 9364 +470 2973 602 +471 2974 4489 +472 2975 8899 +473 2976 8504 +474 2977 3480 +475 2977 3479 +476 2978 9410 +477 2979 3480 +478 2979 3479 +479 2980 3479 +480 2981 8941 +481 2982 8899 +482 2983 8899 +483 2984 8899 +484 2985 9430 +485 2986 9439 +486 2987 9380 +487 2988 9380 +488 2989 9430 +489 2990 9327 +490 2991 9439 +491 2992 9439 +492 2993 9474 +493 2994 9471 +494 2995 9471 +496 2997 7334 +497 2998 5647 +498 2999 5647 +499 3000 9157 +500 3001 128 +501 3002 6717 +502 3003 9474 +503 3004 9364 +504 3005 9364 +505 3006 9364 +506 3007 9474 +507 3008 9531 +508 3009 9474 +509 3010 9572 +510 3011 8899 +511 3012 9581 +512 3013 9541 +513 3014 9541 +514 3015 9582 +515 3016 1025 +517 3018 8317 +518 3019 7660 +519 3020 912 +520 3021 9608 +521 3022 9611 +522 3023 9611 +523 3024 9592 +524 3025 637 +525 3026 9592 +526 3027 9626 +527 3028 9157 +528 3029 9641 +529 3030 9648 +530 3031 9637 +531 3032 9647 +532 3033 9621 +533 3034 9632 +534 3035 9364 +535 3036 9676 +536 3037 9691 +537 3038 8096 +538 3039 8096 +539 3040 3480 +540 3040 3479 +541 3041 9703 +542 3042 7308 +543 3043 9712 +544 3044 8068 +545 3045 9689 +546 3045 9690 +547 3046 9689 +548 3046 9690 +549 3047 9590 +550 3048 9690 +551 3049 9647 +552 3050 9621 +553 3051 9722 +554 3052 9728 +555 3053 8518 +556 3054 9769 +557 3055 9738 +558 3056 8891 +559 3057 48 +560 3058 9712 +561 3059 9769 +562 3060 9788 +563 3061 9803 +564 3062 9805 +565 3063 9775 +566 3064 9775 +567 3065 9800 +568 3066 9800 +569 3067 9871 +570 3068 9884 +572 3070 9875 +573 3071 9875 +574 3072 9869 +575 3073 9879 +576 3074 9837 +577 3075 7841 +578 3076 2309 +579 3077 9897 +580 3078 9897 +581 3079 8031 +582 3080 8031 +583 3081 8031 +584 3082 8031 +586 3084 8265 +587 3085 7334 +588 3086 9803 +589 3087 9803 +590 3088 9974 +591 3089 9531 +592 3090 9992 +593 3091 9998 +594 3092 9364 +595 3093 10020 +596 3094 5900 +597 3095 10053 +598 3096 9025 +599 3097 9803 +600 3098 10060 +601 3099 8139 +602 3099 8140 +603 3100 2020 +604 3101 9998 +605 3102 323 +606 3103 9921 +607 3104 2626 +608 3105 5457 +609 3106 10049 +610 3107 2626 +611 3108 10106 +612 3109 6006 +613 3110 9921 +614 3111 6193 +615 3112 8763 +616 3112 10123 +617 3113 10124 +618 3114 10119 +619 3115 9611 +620 3116 10146 +621 3117 9712 +622 3118 10117 +623 3118 10118 +624 3119 10150 +625 3120 7319 +626 3121 10142 +627 3122 10150 +628 3123 8891 +629 3124 10177 +630 3125 8399 +631 3126 6078 +632 3127 5971 +633 3128 5971 +634 3129 10214 +635 3130 9712 +636 3131 9712 +637 3132 10219 +638 3133 10225 +639 3134 9995 +640 3135 10230 +641 3136 10229 +642 3137 10233 +643 3138 10228 +644 3139 10216 +645 3140 10216 +646 3141 10264 +647 3141 10265 +648 3141 10266 +649 3142 10263 +650 3143 10177 +651 3144 10177 +652 3145 10177 +653 3146 10255 +654 3147 10270 +655 3148 10274 +656 3149 10274 +657 3150 10274 +658 3151 10278 +659 3152 10278 +660 3153 10284 +661 3154 10282 +662 3155 10288 +663 3156 10291 +664 3157 10123 +665 3158 10337 +666 3159 10284 +667 3160 3336 +668 3161 10214 +669 3162 10308 +670 3163 10308 +671 3164 9507 +672 3164 9509 +673 3165 10353 +674 3166 10350 +675 3167 10354 +676 3168 10354 +677 3169 3757 +678 3169 3758 +679 3170 6966 +680 3171 10146 +681 3172 323 +682 3173 10350 +683 3174 10350 +684 3175 9775 +685 3176 9531 +686 3177 8055 +687 3178 10350 +688 3179 10214 +689 3180 10214 +690 3181 4925 +691 3181 4926 +692 3182 10411 +693 3182 6190 +694 3183 6190 +695 3184 9637 +696 3185 8600 +697 3185 8599 +698 3186 128 +699 3187 10427 +700 3187 10428 +701 3188 9271 +702 3189 10146 +703 3190 5175 +704 3191 10443 +705 3192 10510 +706 3193 2933 +707 3194 10507 +708 3195 10428 +709 3196 10350 +710 3197 9803 +711 3198 10278 +712 3199 10278 +713 3200 10567 +714 3201 10567 +715 3202 10568 +716 3203 10568 +717 3204 10568 +718 3205 10570 +719 3206 8096 +720 3207 10572 +721 3208 10490 +722 3208 10491 +723 3209 10475 +724 3210 10475 +725 3211 10569 +726 3212 10609 +727 3213 5944 +728 3214 10612 +729 3215 10581 +730 3215 10583 +731 3216 10618 +732 3217 10618 +733 3218 10618 +734 3219 9803 +735 3220 10664 +736 3221 10567 +737 3222 10567 +738 3223 10475 +739 3224 10696 +740 3225 9029 +741 3226 10704 +742 3226 10703 +743 3227 10715 +744 3228 3954 +746 3230 10609 +747 3231 10696 +748 3232 10696 +749 3233 10572 +750 3234 10735 +751 3235 10735 +752 3236 9334 +753 3237 10754 +754 3238 10782 +755 3239 10572 +756 3240 10705 +757 3240 10706 +758 3241 8544 +759 3242 9803 +760 3243 10754 +761 3244 10809 +762 3245 9803 +763 3246 10754 +764 3247 8891 +765 3248 10798 +766 3249 2662 +767 3250 10828 +768 3251 6192 +769 3252 10814 +770 3253 10834 +771 3254 323 +772 3255 9803 +773 3256 10863 +774 3257 10678 +775 3258 10859 +776 3259 10877 +777 3260 10626 +778 3261 455 +779 3262 10879 +780 3263 365 +781 3264 365 +782 3265 497 +783 3265 498 +784 3266 10900 +785 3267 10929 +786 3268 10920 +787 3269 10568 +788 3270 10950 +789 3271 10475 +790 3272 10146 +791 3273 10951 +792 3274 6920 +793 3275 10350 +794 3276 10959 +795 3277 8460 +796 3278 10053 +797 3279 10572 +798 3280 11001 +799 3281 10572 +800 3282 10978 +801 3283 11037 +802 3284 11039 +803 3285 11034 +804 3286 9648 +805 3287 10612 +806 3288 11011 +807 3288 11012 +808 3289 11072 +809 3290 11059 +810 3291 11058 +811 3292 11080 +812 3292 11081 +813 3292 11082 +814 3292 11083 +815 3293 10950 +816 3294 11058 +817 3295 11121 +818 3296 11121 +819 3297 10177 +820 3298 10177 +821 3299 11058 +822 3300 11058 +823 3301 11148 +824 3302 11053 +825 3303 2042 +826 3304 11185 +827 3305 11191 +828 3306 11148 +829 3307 10572 +830 3308 4861 +831 3309 8096 +832 3310 11252 +833 3311 11253 +834 3312 11265 +835 3313 10123 +836 3314 11226 +837 3315 11276 +838 3316 11169 +839 3317 6127 +840 3318 11265 +841 3319 11337 +842 3320 11267 +843 3321 11267 +844 3322 820 +845 3323 11353 +846 3324 11252 +847 3325 6190 +848 3326 11356 +849 3327 11263 +850 3328 9030 +851 3329 11337 +852 3330 11001 +853 3331 11001 +854 3332 11001 +855 3333 10288 +856 3334 11392 +857 3335 11307 +858 3336 8096 +859 3337 11398 +860 3338 11402 +861 3339 11426 +862 3340 11446 +863 3341 10105 +864 3342 11390 +865 3343 11470 +866 3344 6126 +867 3345 9089 +868 3346 4007 +869 3347 11490 +870 3348 11265 +871 3349 11059 +872 3350 11059 +873 3351 9637 +874 3352 11560 +875 3353 11541 +876 3354 11560 +877 3355 8096 +878 3356 11592 +879 3356 11591 +880 3357 1164 +881 3358 11596 +882 3359 335 +883 3360 81 +884 3361 81 +885 3362 11649 +886 3363 11674 +887 3364 11596 +888 3365 11687 +889 3366 11729 +890 3367 8096 +891 3368 11585 +892 3368 11586 +893 3369 11833 +894 3370 11121 +895 3371 11678 +896 3372 11869 +897 3373 764 +898 3374 11794 +899 3375 11914 +900 3376 11939 +901 3377 328 +902 3378 11935 +903 3379 11942 +904 3380 467 +905 3381 11936 +906 3382 11959 +907 3383 10612 +908 3384 11820 +909 3385 11963 +910 3386 10572 +911 3387 11963 +912 3388 11957 +913 3388 11958 +915 3390 8460 +\. + + +-- +-- Data for Name: mascotas_vetvisitfollowup; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_vetvisitfollowup (id, created_at, updated_at, deleted, active, comments, follow_up_state, new_symptoms, new_symptom_details, pet_id, user_id, visit_id) FROM stdin; +\. + + +-- +-- Data for Name: mascotas_vetvisitpetreason; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_vetvisitpetreason (id, created_at, updated_at, deleted, active, user_id, pet_id, visit_id, reason) FROM stdin; +1 2025-11-22 01:25:16.758896+00 2025-11-22 01:25:16.75891+00 f t \N 9089 3345 Certificado de salud, desparasitacio int+ext 20-30kg canino +2 2025-11-22 01:25:16.765418+00 2025-11-22 01:25:16.765429+00 f t \N 10626 3260 Vacunacion anual. +3 2025-11-22 01:25:16.770565+00 2025-11-22 01:25:16.770575+00 f t \N 10978 3282 vacunacion anual. +4 2025-11-22 01:25:16.775746+00 2025-11-22 01:25:16.775757+00 f t \N 2626 3107 Certificado anual + Desparacitación interna y externa +5 2025-11-22 01:25:16.780389+00 2025-11-22 01:25:16.780398+00 f t \N 11059 3350 Muestra de sangre para perfil completo con orina y upc +6 2025-11-22 01:25:16.784307+00 2025-11-22 01:25:16.784315+00 f t \N 11059 3349 Extraccion de sangre para perfil completo +7 2025-11-22 01:25:16.788442+00 2025-11-22 01:25:16.78845+00 f t \N 11169 3316 Consulta cardiologica. +8 2025-11-22 01:25:16.792481+00 2025-11-22 01:25:16.792491+00 f t \N 9030 3328 vacunacion anual. +9 2025-11-22 01:25:16.796612+00 2025-11-22 01:25:16.79662+00 f t \N 10609 3230 vacunacion antirrabica +10 2025-11-22 01:25:16.800402+00 2025-11-22 01:25:16.800409+00 f t \N 8031 3080 Sesione de fisio 4/4. +11 2025-11-22 01:25:16.804169+00 2025-11-22 01:25:16.804177+00 f t \N 8399 3125 certificado de salud y desparacitacion +12 2025-11-22 01:25:16.808045+00 2025-11-22 01:25:16.808053+00 f t \N 10705 3240 control y vacunacion anual para perro y gato +13 2025-11-22 01:25:16.809657+00 2025-11-22 01:25:16.809663+00 f t \N 10706 3240 control y vacunacion anual para perro y gato +14 2025-11-22 01:25:16.813415+00 2025-11-22 01:25:16.813423+00 f t \N 10123 3313 Muetras de orina para orina completa y upc para los dos gatitos +15 2025-11-22 01:25:16.817167+00 2025-11-22 01:25:16.817174+00 f t \N 11353 3323 Vacunacion triple felina +16 2025-11-22 01:25:16.821019+00 2025-11-22 01:25:16.821027+00 f t \N 11392 3334 Ecografia abdominal por calculos renales. +17 2025-11-22 01:25:16.824789+00 2025-11-22 01:25:16.824797+00 f t \N 4007 3346 Consulta endocrinologa +18 2025-11-22 01:25:16.828616+00 2025-11-22 01:25:16.828627+00 f t \N 11390 3342 Consulta general +19 2025-11-22 01:25:16.832564+00 2025-11-22 01:25:16.832573+00 f t \N 11398 3337 Pre quirurgicos electrocardiograma y eco cardiograma +20 2025-11-22 01:25:16.836505+00 2025-11-22 01:25:16.836512+00 f t \N 11446 3340 Vacunacion anual, desparasitacion int+ext 5kg. +21 2025-11-22 01:25:16.840423+00 2025-11-22 01:25:16.840431+00 f t \N 11591 3356 Vacunacion anual dos caninos, Hembra reactiva, tendra bozal, no muerde solo ladra +22 2025-11-22 01:25:16.842022+00 2025-11-22 01:25:16.842028+00 f t \N 11592 3356 Vacunacion anual dos caninos, Hembra reactiva, tendra bozal, no muerde solo ladra +23 2025-11-22 01:25:16.846236+00 2025-11-22 01:25:16.846243+00 f t \N 10124 3113 Vacunacion anual +24 2025-11-22 01:25:16.850348+00 2025-11-22 01:25:16.85036+00 f t \N 335 3359 esta con el ojo rojo hace unos dias. +25 2025-11-22 01:25:16.854577+00 2025-11-22 01:25:16.854585+00 f t \N 11226 3314 Antirrabica, certificado de salud y desparacitacion interna y externa +26 2025-11-22 01:25:16.858401+00 2025-11-22 01:25:16.858409+00 f t \N 10288 3333 Ccertificado de salud, desparasitacion int+ext felino mas de 5kg, y corte de garras +27 2025-11-22 01:25:16.862712+00 2025-11-22 01:25:16.86272+00 f t \N 8599 3185 -Mulan: desparasitacion, certificado de lectura de microchip, certificado de salud\r\n-Mushu: Vacunacion antirrabica. +28 2025-11-22 01:25:16.864605+00 2025-11-22 01:25:16.864612+00 f t \N 8600 3185 -Mulan: desparasitacion, certificado de lectura de microchip, certificado de salud\r\n-Mushu: Vacunacion antirrabica. +29 2025-11-22 01:25:16.86879+00 2025-11-22 01:25:16.8688+00 f t \N 8031 3082 Sesion de fisio 3/4 +30 2025-11-22 01:25:16.872989+00 2025-11-22 01:25:16.872997+00 f t \N 11267 3321 Muestra para prquirugico +31 2025-11-22 01:25:16.876769+00 2025-11-22 01:25:16.876777+00 f t \N 11267 3320 Extraccion para prequirurgico, revision por otitis y para limpieza dental. +32 2025-11-22 01:25:16.880803+00 2025-11-22 01:25:16.880812+00 f t \N 4861 3308 Vacunacion anual antirrábica y corte de garras. +33 2025-11-22 01:25:16.884827+00 2025-11-22 01:25:16.884835+00 f t \N 8096 3355 Ecografia abdominal +34 2025-11-22 01:25:16.888842+00 2025-11-22 01:25:16.888849+00 f t \N 9648 3286 comenzar con vacunacion. +35 2025-11-22 01:25:16.892589+00 2025-11-22 01:25:16.892597+00 f t \N 10618 3229 Consulta post estudios para limpieza dental. +36 2025-11-22 01:25:16.896356+00 2025-11-22 01:25:16.896364+00 f t \N 11255 3311 Consulta cardiologica +37 2025-11-22 01:25:16.897936+00 2025-11-22 01:25:16.897942+00 f t \N 11253 3311 Consulta cardiologica +38 2025-11-22 01:25:16.901788+00 2025-11-22 01:25:16.901797+00 f t \N 81 3361 perfil 5 + glucosa + t4 libre y total +39 2025-11-22 01:25:16.905849+00 2025-11-22 01:25:16.905856+00 f t \N 11001 3332 fluidoterapia endovenosa +40 2025-11-22 01:25:16.909806+00 2025-11-22 01:25:16.909815+00 f t \N 11058 3300 Muestra para Perfil 7 +41 2025-11-22 01:25:16.913801+00 2025-11-22 01:25:16.91381+00 f t \N 81 3360 extraccion de sangre perfil 5 + glucosa + t4 total y libre +42 2025-11-22 01:25:16.917759+00 2025-11-22 01:25:16.917767+00 f t \N 11058 3299 Extraccion de sangre para Perfil 7 + Orina Completo/con sedimento +43 2025-11-22 01:25:16.921749+00 2025-11-22 01:25:16.921756+00 f t \N 11596 3358 Verruga en el cuello, sufrio algun tipo de herida y florecio con secreciones leves. +44 2025-11-22 01:25:16.925699+00 2025-11-22 01:25:16.925706+00 f t \N 11560 3354 Ecografia abdominal urgencia +45 2025-11-22 01:25:16.929761+00 2025-11-22 01:25:16.92977+00 f t \N 11072 3289 Vacunación anual +46 2025-11-22 01:25:16.933816+00 2025-11-22 01:25:16.933823+00 f t \N 11191 3305 Chequeo para Limpieza de dientes +47 2025-11-22 01:25:16.937467+00 2025-11-22 01:25:16.937474+00 f t \N 9637 3351 Ecografia abdominal por hematuria. +48 2025-11-22 01:25:16.94117+00 2025-11-22 01:25:16.941178+00 f t \N 1164 3357 Le acabo de ver pelada la cabecita en la parte interna de la oreja +49 2025-11-22 01:25:16.944826+00 2025-11-22 01:25:16.944833+00 f t \N 11560 3352 Consulta cardiologica urgente por arritmia. +50 2025-11-22 01:25:16.948447+00 2025-11-22 01:25:16.948455+00 f t \N 10177 3298 Consulta post estudios. +51 2025-11-22 01:25:16.952079+00 2025-11-22 01:25:16.952086+00 f t \N 11541 3353 Inflamación y secresión de mucosa de color turbio en ojo izquierdo +52 2025-11-22 01:25:16.955758+00 2025-11-22 01:25:16.955765+00 f t \N 11001 3331 fluidoterapia endovenosa +53 2025-11-22 01:25:16.95949+00 2025-11-22 01:25:16.959498+00 f t \N 6190 3325 Consulta post estudios. +54 2025-11-22 01:25:16.963077+00 2025-11-22 01:25:16.963085+00 f t \N 10612 3287 ecografia abdominal +55 2025-11-22 01:25:16.966784+00 2025-11-22 01:25:16.966791+00 f t \N 11490 3347 Eutanasia. +56 2025-11-22 01:25:16.972051+00 2025-11-22 01:25:16.972061+00 f t \N 11265 3348 Consulta post estudios +57 2025-11-22 01:25:16.977371+00 2025-11-22 01:25:16.97738+00 f t \N 10105 3341 Perdida de pelo en abdomen y zona cercana al inicio de la cola +58 2025-11-22 01:25:16.981578+00 2025-11-22 01:25:16.981586+00 f t \N 6127 3344 Consulta post estudios. +59 2025-11-22 01:25:16.983306+00 2025-11-22 01:25:16.983314+00 f t \N 6126 3344 Consulta post estudios. +60 2025-11-22 01:25:16.986991+00 2025-11-22 01:25:16.987032+00 f t \N 11470 3343 Problemas urinarios y rengueo en la pata +61 2025-11-22 01:25:16.990752+00 2025-11-22 01:25:16.990758+00 f t \N 8096 3336 Muestra de orina para analisis fisico-quimico-sedimento, y relacion creatinina en orina. +62 2025-11-22 01:25:16.994399+00 2025-11-22 01:25:16.994407+00 f t \N 11307 3335 Vacunacion anual +891 2025-11-22 01:25:20.618293+00 2025-11-22 01:25:20.6183+00 f t \N 7293 2550 Tos +63 2025-11-22 01:25:16.998056+00 2025-11-22 01:25:16.998063+00 f t \N 11001 3330 fluidoterapia endovenosa +64 2025-11-22 01:25:17.002086+00 2025-11-22 01:25:17.002094+00 f t \N 11426 3339 Lesion en lomo +65 2025-11-22 01:25:17.005777+00 2025-11-22 01:25:17.005784+00 f t \N 11263 3327 Linfoma temrinal, dificultad para caminar, segunda opinion para tratamiento +66 2025-11-22 01:25:17.009471+00 2025-11-22 01:25:17.009479+00 f t \N 11402 3338 Bulto en la encia +67 2025-11-22 01:25:17.013146+00 2025-11-22 01:25:17.013154+00 f t \N 11252 3324 Ecografia abdominal. +68 2025-11-22 01:25:17.016817+00 2025-11-22 01:25:17.016824+00 f t \N 2042 3303 Consulta post estudios, y chequeo general. +69 2025-11-22 01:25:17.020401+00 2025-11-22 01:25:17.020407+00 f t \N 11337 3329 Muestra de sangre para perfil 7 + t4 +70 2025-11-22 01:25:17.024069+00 2025-11-22 01:25:17.024076+00 f t \N 11356 3326 Presentó un cuadro de vomitos el Lunes por la tarde. Ayer se hizo visita al veterinario, presentaba fiebre. Se le inyectó un antibiótico. Se ordenó Ecografia de Utero +71 2025-11-22 01:25:17.027605+00 2025-11-22 01:25:17.027611+00 f t \N 11037 3283 Note que tiene una pelota en la panza nose que será. Se estresa y se asusta cuando va al vete. +72 2025-11-22 01:25:17.031204+00 2025-11-22 01:25:17.031211+00 f t \N 820 3322 viene con diarreas liquidas intermitentes hace unos dias +73 2025-11-22 01:25:17.035197+00 2025-11-22 01:25:17.035208+00 f t \N 11059 3290 Vacunación anual +74 2025-11-22 01:25:17.040103+00 2025-11-22 01:25:17.040114+00 f t \N 8096 3309 Se fatiga muy rápido al caminar +75 2025-11-22 01:25:17.045348+00 2025-11-22 01:25:17.045358+00 f t \N 10959 3276 Toma de presion +76 2025-11-22 01:25:17.050706+00 2025-11-22 01:25:17.050714+00 f t \N 11337 3319 Hace 3/4 días q no quiere comer o come poquito, está con vómitos. +77 2025-11-22 01:25:17.056017+00 2025-11-22 01:25:17.056028+00 f t \N 11148 3306 No se especificó motivo de consulta. se solicitó: ... +78 2025-11-22 01:25:17.061374+00 2025-11-22 01:25:17.061385+00 f t \N 11265 3318 muestra de orina +79 2025-11-22 01:25:17.066868+00 2025-11-22 01:25:17.06688+00 f t \N 6127 3317 muestra de orina +80 2025-11-22 01:25:17.072391+00 2025-11-22 01:25:17.072403+00 f t \N 11276 3315 Ecografia abdominal. +81 2025-11-22 01:25:17.077846+00 2025-11-22 01:25:17.077858+00 f t \N 11265 3312 vómitos, se pone muy molesta cuando hace pis. +82 2025-11-22 01:25:17.083428+00 2025-11-22 01:25:17.083439+00 f t \N 11053 3302 Picazón y con un bulto en los dientes +83 2025-11-22 01:25:17.089079+00 2025-11-22 01:25:17.08909+00 f t \N 11252 3310 letargico, no puede caminar mucho, alerta, toma agua, comio muy poquito, hizo pis y caca. +84 2025-11-22 01:25:17.09453+00 2025-11-22 01:25:17.094541+00 f t \N 11121 3296 Muestra de sangre. +85 2025-11-22 01:25:17.10021+00 2025-11-22 01:25:17.100222+00 f t \N 10950 3293 Re toma de rayos +86 2025-11-22 01:25:17.105761+00 2025-11-22 01:25:17.105773+00 f t \N 11058 3294 Ecografia abdominal +87 2025-11-22 01:25:17.111489+00 2025-11-22 01:25:17.111501+00 f t \N 10177 3297 Consulta cardiologica +88 2025-11-22 01:25:17.117045+00 2025-11-22 01:25:17.117056+00 f t \N 11121 3295 Gatita poco sociable, camina con dificultad , lagrimea y bota mocos. Vacunacion anual, desparasitacion interna y externa 7kg, extraccion de sangre (ver que estudios necesita) +89 2025-11-22 01:25:17.122495+00 2025-11-22 01:25:17.122507+00 f t \N 11185 3304 No se especificó motivo de consulta. se solicitó: Consulta general clínica programada... +90 2025-11-22 01:25:17.128127+00 2025-11-22 01:25:17.128139+00 f t \N 10572 3307 No se especificó motivo de consulta. se solicitó: ... +91 2025-11-22 01:25:17.133557+00 2025-11-22 01:25:17.133568+00 f t \N 11148 3301 Incontinencia, vomitos y fiebre luego de Castración +92 2025-11-22 01:25:17.139063+00 2025-11-22 01:25:17.139075+00 f t \N 11011 3288 vacunacion anual para dos +93 2025-11-22 01:25:17.141432+00 2025-11-22 01:25:17.141443+00 f t \N 11012 3288 vacunacion anual para dos +94 2025-11-22 01:25:17.146809+00 2025-11-22 01:25:17.14682+00 f t \N 10274 3150 consulta cardiologica para castracion +95 2025-11-22 01:25:17.152081+00 2025-11-22 01:25:17.152092+00 f t \N 365 3263 extraccion de sangre perfil general completo con orina, hay que ver si se suma alguna determinacion +96 2025-11-22 01:25:17.1575+00 2025-11-22 01:25:17.15751+00 f t \N 365 3264 tengo un gato que esta orinando mucho. Me gustaría arreglar una consulta y los analisis especialmente sangre a domicilio. +97 2025-11-22 01:25:17.163019+00 2025-11-22 01:25:17.16303+00 f t \N 11080 3292 4 Vacunaciones Anuales y 4 desparasitaciones internas + externas para gatos de 3 entre 2 a 5 kg +98 2025-11-22 01:25:17.165244+00 2025-11-22 01:25:17.165254+00 f t \N 11081 3292 4 Vacunaciones Anuales y 4 desparasitaciones internas + externas para gatos de 3 entre 2 a 5 kg +99 2025-11-22 01:25:17.167432+00 2025-11-22 01:25:17.167441+00 f t \N 11083 3292 4 Vacunaciones Anuales y 4 desparasitaciones internas + externas para gatos de 3 entre 2 a 5 kg +100 2025-11-22 01:25:17.169503+00 2025-11-22 01:25:17.169512+00 f t \N 11082 3292 4 Vacunaciones Anuales y 4 desparasitaciones internas + externas para gatos de 3 entre 2 a 5 kg +101 2025-11-22 01:25:17.17492+00 2025-11-22 01:25:17.17493+00 f t \N 8031 3081 Sesion de fisio 2/4 +102 2025-11-22 01:25:17.180397+00 2025-11-22 01:25:17.180408+00 f t \N 6190 3183 Muestra para perfil general completo sin orina +103 2025-11-22 01:25:17.18605+00 2025-11-22 01:25:17.186059+00 f t \N 6190 3182 Extraccino para perfil general completo +104 2025-11-22 01:25:17.188459+00 2025-11-22 01:25:17.18847+00 f t \N 10411 3182 Extraccino para perfil general completo +105 2025-11-22 01:25:17.193346+00 2025-11-22 01:25:17.193353+00 f t \N 10814 3252 Ecografia abdominal. +106 2025-11-22 01:25:17.19747+00 2025-11-22 01:25:17.19748+00 f t \N 11058 3291 Dificultades para orinar, posible deshidratación +107 2025-11-22 01:25:17.201801+00 2025-11-22 01:25:17.201809+00 f t \N 11034 3285 Mí madrina tiene un gato de unos 7 años castrado ,no come desde ayer si toma agua pero necesitaría que vayan a domicilio, a mí madrina muchas veces le dije que no le de carne picada ni dulce de leche ni manteca pero es complicado con una persona mayor +108 2025-11-22 01:25:17.206325+00 2025-11-22 01:25:17.206333+00 f t \N 323 3254 limpieza dental +109 2025-11-22 01:25:17.210252+00 2025-11-22 01:25:17.21026+00 f t \N 11001 3280 Mi perro fue dado de alta luego de estar internado por una nefrectomia. Me indicaron que tenga un control clínico el día de hoy para chequear que todo estuviera bien. +110 2025-11-22 01:25:17.21417+00 2025-11-22 01:25:17.214178+00 f t \N 10572 3281 aplicacion de medicacion inyectable. +111 2025-11-22 01:25:17.218389+00 2025-11-22 01:25:17.218396+00 f t \N 10053 3278 Ecografia abdominal. +112 2025-11-22 01:25:17.222253+00 2025-11-22 01:25:17.222261+00 f t \N 11039 3284 Tiene 17 años tiene diagnóstico de enfermedad renal en este momento está con un absceso en la cara necesitaría ayuda para tratar el absceso. +113 2025-11-22 01:25:17.226647+00 2025-11-22 01:25:17.226654+00 f t \N 10951 3273 Ecografia abdominal por vomitos. +114 2025-11-22 01:25:17.23136+00 2025-11-22 01:25:17.231371+00 f t \N 9582 3015 Desparacitación interna+externa y Vacunación anual +115 2025-11-22 01:25:17.235543+00 2025-11-22 01:25:17.235551+00 f t \N 10950 3270 Rayos +116 2025-11-22 01:25:17.23935+00 2025-11-22 01:25:17.239363+00 f t \N 10572 3279 Revision de radiografia, por dolor cervical. +117 2025-11-22 01:25:17.244786+00 2025-11-22 01:25:17.244798+00 f t \N 10834 3253 placas de falange/metacarpo +118 2025-11-22 01:25:17.250364+00 2025-11-22 01:25:17.250376+00 f t \N 10678 3257 Encuentro que anda muy chillona. +119 2025-11-22 01:25:17.256154+00 2025-11-22 01:25:17.256166+00 f t \N 8460 3277 Pata hinchada, temblor, poca movilidad. +120 2025-11-22 01:25:17.261502+00 2025-11-22 01:25:17.261512+00 f t \N 10612 3214 Diarrea constante.zona sin pelo en patas y cuello +121 2025-11-22 01:25:17.266659+00 2025-11-22 01:25:17.266669+00 f t \N 10475 3271 Aplicacion de inyectable +122 2025-11-22 01:25:17.272014+00 2025-11-22 01:25:17.272025+00 f t \N 10350 3275 Nefrologia. +123 2025-11-22 01:25:17.277395+00 2025-11-22 01:25:17.277406+00 f t \N 10900 3266 Decaimiento y falta de apetito +124 2025-11-22 01:25:17.283192+00 2025-11-22 01:25:17.283203+00 f t \N 6920 3274 Diarrea con sangre. +125 2025-11-22 01:25:17.289097+00 2025-11-22 01:25:17.289109+00 f t \N 498 3265 2 vacunacion anual, felino y canino. +126 2025-11-22 01:25:17.2916+00 2025-11-22 01:25:17.29161+00 f t \N 497 3265 2 vacunacion anual, felino y canino. +127 2025-11-22 01:25:17.297327+00 2025-11-22 01:25:17.297338+00 f t \N 8544 3241 la escucho como resfriada o con moco. +128 2025-11-22 01:25:17.302821+00 2025-11-22 01:25:17.302831+00 f t \N 10920 3268 Come poco, agua normal. +129 2025-11-22 01:25:17.308197+00 2025-11-22 01:25:17.308208+00 f t \N 169 2809 Inyectable 4/4 +130 2025-11-22 01:25:17.313608+00 2025-11-22 01:25:17.313619+00 f t \N 10879 3262 Dejo de comer su comida hace 2 dias +131 2025-11-22 01:25:17.319506+00 2025-11-22 01:25:17.319517+00 f t \N 5971 3128 Muestra de sangre para Erlichia PCR +132 2025-11-22 01:25:17.325234+00 2025-11-22 01:25:17.325245+00 f t \N 10146 3272 Teleconsulta post estudios +133 2025-11-22 01:25:17.330876+00 2025-11-22 01:25:17.330887+00 f t \N 10929 3267 Se rasca mucho. +134 2025-11-22 01:25:17.33669+00 2025-11-22 01:25:17.336701+00 f t \N 5971 3127 Extraccion para erlichia, encontro una garrapata muerta. +135 2025-11-22 01:25:17.342322+00 2025-11-22 01:25:17.342333+00 f t \N 456 3261 Tos, le vi pelotitas en las piernas y panza +136 2025-11-22 01:25:17.344799+00 2025-11-22 01:25:17.34481+00 f t \N 455 3261 Tos, le vi pelotitas en las piernas y panza +137 2025-11-22 01:25:17.350457+00 2025-11-22 01:25:17.350469+00 f t \N 10568 3269 Muestra Perfil General Completo sin Orina. +138 2025-11-22 01:25:17.356242+00 2025-11-22 01:25:17.356254+00 f t \N 10572 3239 Ecografia abdominal. +139 2025-11-22 01:25:17.36182+00 2025-11-22 01:25:17.361832+00 f t \N 9803 3255 eutanasia +140 2025-11-22 01:25:17.367207+00 2025-11-22 01:25:17.367219+00 f t \N 4925 3181 2 vacunacion anual de felinos. +141 2025-11-22 01:25:17.369546+00 2025-11-22 01:25:17.369557+00 f t \N 4926 3181 2 vacunacion anual de felinos. +142 2025-11-22 01:25:17.375335+00 2025-11-22 01:25:17.375346+00 f t \N 10754 3246 ecografia abdominal +143 2025-11-22 01:25:17.380933+00 2025-11-22 01:25:17.380945+00 f t \N 10696 3232 Muestra para perfil 7 y vif vilef pcr. +144 2025-11-22 01:25:17.386594+00 2025-11-22 01:25:17.386603+00 f t \N 8891 3247 Aplicacion tribiotic y control post quirurgico. +145 2025-11-22 01:25:17.392461+00 2025-11-22 01:25:17.392472+00 f t \N 10863 3256 Vacunacion antirrabica con urgencia, perro pitbull mordio a un niño en la calle, se lo pide el medico +146 2025-11-22 01:25:17.398756+00 2025-11-22 01:25:17.398768+00 f t \N 10828 3250 Es un gatito de más de 15 años, dejó de comer balanceado y ya no come ni siquiera comida húmeda. Muy desganado +147 2025-11-22 01:25:17.4044+00 2025-11-22 01:25:17.404412+00 f t \N 10809 3244 Rayos +148 2025-11-22 01:25:17.410239+00 2025-11-22 01:25:17.41025+00 f t \N 2662 3249 Tiene una bolita cerca de las mamas y queremos hacer una consulta. +149 2025-11-22 01:25:17.415406+00 2025-11-22 01:25:17.415415+00 f t \N 10782 3238 vacunacion anual. +150 2025-11-22 01:25:17.419896+00 2025-11-22 01:25:17.419904+00 f t \N 10859 3258 El tuvo un complejo respiratorio felino de chiquito, tiene vacunas al día y seguimiento constante pero se encuentra con bastante moco y tos hace 48hs. +151 2025-11-22 01:25:17.424237+00 2025-11-22 01:25:17.424246+00 f t \N 10696 3231 Extraccion de sangre para perfil 7 y vif vilef pcr. +152 2025-11-22 01:25:17.429031+00 2025-11-22 01:25:17.429043+00 f t \N 10877 3259 Gusanos en materia fecal e inflamacion en ano, quiere receta de atp ya que tiene otros gatos. +153 2025-11-22 01:25:17.434844+00 2025-11-22 01:25:17.434854+00 f t \N 6192 3251 Teleconsulta post estudio. +154 2025-11-22 01:25:17.439643+00 2025-11-22 01:25:17.439656+00 f t \N 10703 3226 Deposiciones con signos de parásitos +155 2025-11-22 01:25:17.441272+00 2025-11-22 01:25:17.441279+00 f t \N 10704 3226 Deposiciones con signos de parásitos +156 2025-11-22 01:25:17.445427+00 2025-11-22 01:25:17.445434+00 f t \N 9803 3245 Teleconsulta post estudios. +157 2025-11-22 01:25:17.44967+00 2025-11-22 01:25:17.449678+00 f t \N 10475 3223 Aplicar analgésico y antibiótico y control post estudios. +158 2025-11-22 01:25:17.453785+00 2025-11-22 01:25:17.453794+00 f t \N 10308 3162 No tiene ningún síntoma es preventivo, pcr vilef +159 2025-11-22 01:25:17.458113+00 2025-11-22 01:25:17.45812+00 f t \N 128 3186 vacunacion anual y corte de garras +160 2025-11-22 01:25:17.463096+00 2025-11-22 01:25:17.463107+00 f t \N 10274 3148 extraccion de sangre para prequirurgico por castracion +161 2025-11-22 01:25:17.468392+00 2025-11-22 01:25:17.4684+00 f t \N 10798 3248 No come hace 3/4 días, tiene movilidad reducida. +162 2025-11-22 01:25:17.472599+00 2025-11-22 01:25:17.472606+00 f t \N 10715 3227 Tengo la gatita hace una semana tiene dos meses aprox y solo le hicieron la primera desparasitacion. Además me gustaría que la vean y me digan que más debo hacer con ella. +163 2025-11-22 01:25:17.47677+00 2025-11-22 01:25:17.476777+00 f t \N 10754 3243 perfil 7 +164 2025-11-22 01:25:17.480773+00 2025-11-22 01:25:17.48078+00 f t \N 9334 3236 vomito y deposiciones con sangre. +165 2025-11-22 01:25:17.484946+00 2025-11-22 01:25:17.484954+00 f t \N 10735 3234 Ecografia abdominal +166 2025-11-22 01:25:17.489479+00 2025-11-22 01:25:17.489487+00 f t \N 10754 3237 Mi perra está un poco desanimada y lo único que note es que hizo un poco de heces oscuras. +167 2025-11-22 01:25:17.493984+00 2025-11-22 01:25:17.493992+00 f t \N 10735 3235 Ecografia +168 2025-11-22 01:25:17.498817+00 2025-11-22 01:25:17.498825+00 f t \N 9690 3048 perfil 7 + tigliceridos + t4 total + AOC Y UPC +169 2025-11-22 01:25:17.503475+00 2025-11-22 01:25:17.503483+00 f t \N 3954 3228 Teleconsulta de nutricion. Canino, está sintiéndose mal con la comida +170 2025-11-22 01:25:17.507746+00 2025-11-22 01:25:17.507757+00 f t \N 10572 3233 Dolor por displacia cervical y artitris +171 2025-11-22 01:25:17.511746+00 2025-11-22 01:25:17.511758+00 f t \N 9690 3046 extraccion de sangre perfil 7 + tigliceridos + t4 total + AOC Y UPC +172 2025-11-22 01:25:17.513885+00 2025-11-22 01:25:17.513893+00 f t \N 9689 3046 extraccion de sangre perfil 7 + tigliceridos + t4 total + AOC Y UPC +173 2025-11-22 01:25:17.518507+00 2025-11-22 01:25:17.518516+00 f t \N 10618 3216 Control cardiologico prequirurgico. +174 2025-11-22 01:25:17.522949+00 2025-11-22 01:25:17.522957+00 f t \N 9029 3225 Perrita geronte, no quiere comer hace 2 dias y tiene diarrea +175 2025-11-22 01:25:17.527233+00 2025-11-22 01:25:17.527241+00 f t \N 10696 3224 desde aproximadamente un mes que noto que se agita y estornuda mucho, tambien empezo a roncar cuando duerme que nunca lo hizo previamente. +176 2025-11-22 01:25:17.531528+00 2025-11-22 01:25:17.531536+00 f t \N 323 3172 consulta cardiologica precirugia +177 2025-11-22 01:25:17.535681+00 2025-11-22 01:25:17.535689+00 f t \N 10609 3212 vacunacion anual, desparasitacion int + ext para 7kg, corte de unas. +239 2025-11-22 01:25:17.801588+00 2025-11-22 01:25:17.801596+00 f t \N 10214 3179 Extraccion para prequierugicos. +178 2025-11-22 01:25:17.539549+00 2025-11-22 01:25:17.539559+00 f t \N 10569 3211 Está peleando mucho con el otro gato. Fueron creados juntos y desde que mudamos para Argentina (hace 5 meses) empezaron las peleas y están insoportables +179 2025-11-22 01:25:17.54377+00 2025-11-22 01:25:17.543777+00 f t \N 9508 3164 Vacunas anuales +180 2025-11-22 01:25:17.545622+00 2025-11-22 01:25:17.545631+00 f t \N 9507 3164 Vacunas anuales +181 2025-11-22 01:25:17.547543+00 2025-11-22 01:25:17.547549+00 f t \N 9509 3164 Vacunas anuales +182 2025-11-22 01:25:17.551722+00 2025-11-22 01:25:17.551728+00 f t \N 2933 3193 2 placas +183 2025-11-22 01:25:17.55568+00 2025-11-22 01:25:17.555687+00 f t \N 9803 3219 Extracción de Sangre para Perfil 7 sin orina +184 2025-11-22 01:25:17.559731+00 2025-11-22 01:25:17.559739+00 f t \N 10567 3222 perfi general completo s/orina +185 2025-11-22 01:25:17.563725+00 2025-11-22 01:25:17.563732+00 f t \N 10567 3221 extraccion perfil general completo sin orina +186 2025-11-22 01:25:17.567629+00 2025-11-22 01:25:17.567637+00 f t \N 10274 3149 perfil prequirurgico +187 2025-11-22 01:25:17.571494+00 2025-11-22 01:25:17.571501+00 f t \N 10278 3199 pcr vif/vilef +188 2025-11-22 01:25:17.575787+00 2025-11-22 01:25:17.575794+00 f t \N 10618 3217 Muestra para prequirurgico +189 2025-11-22 01:25:17.57981+00 2025-11-22 01:25:17.579817+00 f t \N 10308 3163 pcr vilef +190 2025-11-22 01:25:17.583638+00 2025-11-22 01:25:17.583645+00 f t \N 9803 3242 Muestra para Sangre para Perfil 7 sin orina +191 2025-11-22 01:25:17.587531+00 2025-11-22 01:25:17.587539+00 f t \N 10354 3168 perfil general completo con orina +192 2025-11-22 01:25:17.591575+00 2025-11-22 01:25:17.591583+00 f t \N 10354 3167 perfil general completo con orina +193 2025-11-22 01:25:17.596117+00 2025-11-22 01:25:17.596126+00 f t \N 10618 3218 Extraccion prequirurgico +194 2025-11-22 01:25:17.600424+00 2025-11-22 01:25:17.600432+00 f t \N 3758 3169 vacunas sextuple para los dos +195 2025-11-22 01:25:17.602333+00 2025-11-22 01:25:17.602342+00 f t \N 3757 3169 vacunas sextuple para los dos +196 2025-11-22 01:25:17.606889+00 2025-11-22 01:25:17.606897+00 f t \N 10278 3198 clinica, extraccion y pcr vif/vilef +197 2025-11-22 01:25:17.612755+00 2025-11-22 01:25:17.612767+00 f t \N 9803 3197 control de estudios complementarios +198 2025-11-22 01:25:17.618412+00 2025-11-22 01:25:17.618421+00 f t \N 10490 3208 Chequeo por agitación y mucho apetito +199 2025-11-22 01:25:17.62048+00 2025-11-22 01:25:17.620487+00 f t \N 10491 3208 Chequeo por agitación y mucho apetito +200 2025-11-22 01:25:17.624881+00 2025-11-22 01:25:17.624888+00 f t \N 10583 3215 Perro y gato con picazon en la cola, se rascan, desparasitacion int felino +5kg, desparasitacion int canino hasta 10kg +201 2025-11-22 01:25:17.627047+00 2025-11-22 01:25:17.627058+00 f t \N 10581 3215 Perro y gato con picazon en la cola, se rascan, desparasitacion int felino +5kg, desparasitacion int canino hasta 10kg +202 2025-11-22 01:25:17.633075+00 2025-11-22 01:25:17.633087+00 f t \N 10443 3191 chqueo general, cachorro de 3 meses y primer vacunacion +203 2025-11-22 01:25:17.63886+00 2025-11-22 01:25:17.638871+00 f t \N 10475 3210 Muestra de sangre. +204 2025-11-22 01:25:17.644515+00 2025-11-22 01:25:17.644526+00 f t \N 10568 3204 Extracción de sangre (Perfil General Completo sin Orina) +205 2025-11-22 01:25:17.650292+00 2025-11-22 01:25:17.650305+00 f t \N 10475 3209 Chequeo por tos seca y extracción de sangre. +206 2025-11-22 01:25:17.656178+00 2025-11-22 01:25:17.656189+00 f t \N 10568 3203 Ecografía Abdominal +207 2025-11-22 01:25:17.663397+00 2025-11-22 01:25:17.663409+00 f t \N 8096 3206 Resultados del estudio +208 2025-11-22 01:25:17.669467+00 2025-11-22 01:25:17.669478+00 f t \N 10664 3220 Diarrea de Color Negro +209 2025-11-22 01:25:17.675239+00 2025-11-22 01:25:17.67525+00 f t \N 10428 3195 aplicacion de medicacion. +210 2025-11-22 01:25:17.68025+00 2025-11-22 01:25:17.680258+00 f t \N 5944 3213 vacunacion triple felina, corte de garras, desparasitacion int + ext 5 kg felino +211 2025-11-22 01:25:17.685063+00 2025-11-22 01:25:17.685073+00 f t \N 8031 3079 Sesion de fisio 1/4 +212 2025-11-22 01:25:17.690305+00 2025-11-22 01:25:17.690316+00 f t \N 8265 3084 Muestra de sangre +213 2025-11-22 01:25:17.695583+00 2025-11-22 01:25:17.695594+00 f t \N 8265 3083 Extraccion de sangre +214 2025-11-22 01:25:17.700717+00 2025-11-22 01:25:17.700726+00 f t \N 10572 3207 Dolor por displacia cervical y artitris +215 2025-11-22 01:25:17.705269+00 2025-11-22 01:25:17.705283+00 f t \N 10567 3201 Ecografía Abdominal +216 2025-11-22 01:25:17.70947+00 2025-11-22 01:25:17.709478+00 f t \N 10570 3205 Piel Irritada +217 2025-11-22 01:25:17.713363+00 2025-11-22 01:25:17.71337+00 f t \N 10568 3202 No se especificó motivo de consulta. se solicitó: Consulta clínica de urgencia... +218 2025-11-22 01:25:17.717913+00 2025-11-22 01:25:17.717922+00 f t \N 10567 3200 Revisión por falta de apetito y decaimiento +219 2025-11-22 01:25:17.722264+00 2025-11-22 01:25:17.722275+00 f t \N 10350 3196 control de estudios y paciente. +220 2025-11-22 01:25:17.72686+00 2025-11-22 01:25:17.726868+00 f t \N 10507 3194 Mi mamá tiene una perra de 18 años que no se puede levantar desde hace un día. A principio de año comenzó a tener dificultades con las patas de atrás pero con Artrin y acupuntura mejoró mucho. El tema es que tiene una pata muy lastimada porque se auto lesiona y cuesta mucho curarle la herida. +221 2025-11-22 01:25:17.732243+00 2025-11-22 01:25:17.732255+00 f t \N 10510 3192 hace unos días que comenzó con tos y con poco apetito +222 2025-11-22 01:25:17.736692+00 2025-11-22 01:25:17.7367+00 f t \N 6966 3170 vacuna leucemia felina + antirrabica +223 2025-11-22 01:25:17.741006+00 2025-11-22 01:25:17.741013+00 f t \N 9637 3184 Muestra de orina para urocultivo +224 2025-11-22 01:25:17.745159+00 2025-11-22 01:25:17.745166+00 f t \N 10146 3189 muestra de orina +225 2025-11-22 01:25:17.749091+00 2025-11-22 01:25:17.749099+00 f t \N 9803 3087 Rayos x2. +226 2025-11-22 01:25:17.753594+00 2025-11-22 01:25:17.753603+00 f t \N 5175 3190 mi gato defeco 2 veces normal pero sigue haciendo fuerza e hizo un poco liquido. El normalmente hace bien de cuerpo pero es un gato grande y complicado de actitud +227 2025-11-22 01:25:17.758054+00 2025-11-22 01:25:17.758065+00 f t \N 8055 3177 Ecografia abdomial. +228 2025-11-22 01:25:17.762294+00 2025-11-22 01:25:17.762301+00 f t \N 9271 3188 Consulta post estudios. +229 2025-11-22 01:25:17.766315+00 2025-11-22 01:25:17.766327+00 f t \N 10428 3187 Rubi: posible infeccion urinaria, hoy la vio orinar varias veces\r\nRoko: vacunacion anual +230 2025-11-22 01:25:17.768268+00 2025-11-22 01:25:17.768278+00 f t \N 10427 3187 Rubi: posible infeccion urinaria, hoy la vio orinar varias veces\r\nRoko: vacunacion anual +231 2025-11-22 01:25:17.772469+00 2025-11-22 01:25:17.772476+00 f t \N 9690 3045 cardiologico x2 +232 2025-11-22 01:25:17.774209+00 2025-11-22 01:25:17.77422+00 f t \N 9689 3045 cardiologico x2 +233 2025-11-22 01:25:17.778852+00 2025-11-22 01:25:17.77886+00 f t \N 10255 3146 Está perdiendo demasiado pelo y la piel hirritada. Además empezó a hacer pis en cualquier lado. +234 2025-11-22 01:25:17.783809+00 2025-11-22 01:25:17.783819+00 f t \N 6007 3109 consulta cardiologica de control. +235 2025-11-22 01:25:17.785954+00 2025-11-22 01:25:17.785961+00 f t \N 6006 3109 consulta cardiologica de control. +236 2025-11-22 01:25:17.789821+00 2025-11-22 01:25:17.789829+00 f t \N 10214 3180 Muestra para prequirurgico. +237 2025-11-22 01:25:17.793659+00 2025-11-22 01:25:17.793666+00 f t \N 10350 3178 Ecografia abdominal. +238 2025-11-22 01:25:17.797408+00 2025-11-22 01:25:17.797415+00 f t \N 169 2808 Inyectaable 3/4 +826 2025-11-22 01:25:20.31281+00 2025-11-22 01:25:20.312819+00 f t \N 7673 2622 eco abdominal +240 2025-11-22 01:25:17.805334+00 2025-11-22 01:25:17.805342+00 f t \N 10278 3151 extraccion de sangre por pcr vif / vilef +241 2025-11-22 01:25:17.80922+00 2025-11-22 01:25:17.809228+00 f t \N 10278 3152 extraccion de sangre pcr vif/vilef +242 2025-11-22 01:25:17.813481+00 2025-11-22 01:25:17.813489+00 f t \N 10350 3174 Muestra para perfil general completo con orina, upc, calcio, fosforo, ionograma serico. +243 2025-11-22 01:25:17.817782+00 2025-11-22 01:25:17.817789+00 f t \N 10225 3133 Vacunacion anual y corte de garras. +244 2025-11-22 01:25:17.821618+00 2025-11-22 01:25:17.821624+00 f t \N 10146 3171 muestra de orina +245 2025-11-22 01:25:17.82543+00 2025-11-22 01:25:17.825437+00 f t \N 9775 3064 Muestra para perfil completo sin orina. +246 2025-11-22 01:25:17.829568+00 2025-11-22 01:25:17.829577+00 f t \N 9531 3176 Sigue con vómitos recurrentes. Ha dejado de comer y de beber. +247 2025-11-22 01:25:17.833453+00 2025-11-22 01:25:17.83346+00 f t \N 8096 3039 Muestra para perfil tiroideo 2 +248 2025-11-22 01:25:17.837648+00 2025-11-22 01:25:17.837656+00 f t \N 10350 3173 Extraccion para perfil general completo con orina, upc, calcio, fosforo, ionograma serico +249 2025-11-22 01:25:17.841353+00 2025-11-22 01:25:17.841361+00 f t \N 8096 3038 Extraccion para perfil tiroideo. +250 2025-11-22 01:25:17.845863+00 2025-11-22 01:25:17.845874+00 f t \N 9775 3175 Extraccion de sangre para perfil completo sin orina +251 2025-11-22 01:25:17.850741+00 2025-11-22 01:25:17.850749+00 f t \N 6193 3111 Vacunacion tos de las perreras. +252 2025-11-22 01:25:17.85521+00 2025-11-22 01:25:17.855218+00 f t \N 7319 3120 Revisión de Resultados +253 2025-11-22 01:25:17.859402+00 2025-11-22 01:25:17.85941+00 f t \N 10288 3155 Vacunacion anual. +254 2025-11-22 01:25:17.863085+00 2025-11-22 01:25:17.863094+00 f t \N 9380 2988 placas x3 +255 2025-11-22 01:25:17.867708+00 2025-11-22 01:25:17.867716+00 f t \N 3336 3160 El gato tiene los mismos síntomas y lesiones en la piel x los q consulté 2 veces (última consulta 19 septiembre +256 2025-11-22 01:25:17.871727+00 2025-11-22 01:25:17.871734+00 f t \N 10353 3165 Ecografia abdominal por Mucho dolor abdominal, vomito y diarrea +257 2025-11-22 01:25:17.87566+00 2025-11-22 01:25:17.875667+00 f t \N 9775 3063 Gata tricolor pelo largo, tiene caspa, quisiera un análisis de sangre para chequeo general, tiene sus vacunas al dia. +258 2025-11-22 01:25:17.879586+00 2025-11-22 01:25:17.879593+00 f t \N 10282 3154 Vacunacion anual y desparasitacion interna y externa, 4,5kg, felino +259 2025-11-22 01:25:17.883452+00 2025-11-22 01:25:17.883459+00 f t \N 10214 3161 Ecografia abdominal. +260 2025-11-22 01:25:17.887656+00 2025-11-22 01:25:17.887664+00 f t \N 10350 3166 Tiene dos días comiendo poco y teniendo problemas para caminar, es un perro de 16 años, ciego. +261 2025-11-22 01:25:17.891744+00 2025-11-22 01:25:17.891752+00 f t \N 10177 3144 perfil 7 +262 2025-11-22 01:25:17.895723+00 2025-11-22 01:25:17.895731+00 f t \N 10337 3158 Se encuentra muy caido y bajo de energias, no tiene apetito y duerme mucho +263 2025-11-22 01:25:17.899652+00 2025-11-22 01:25:17.89966+00 f t \N 9380 2987 consulta cardiologica +264 2025-11-22 01:25:17.903586+00 2025-11-22 01:25:17.903593+00 f t \N 10177 3143 ecografia abdominal +265 2025-11-22 01:25:17.907109+00 2025-11-22 01:25:17.907115+00 f t \N 9879 3073 Corte de garras +266 2025-11-22 01:25:17.910821+00 2025-11-22 01:25:17.910828+00 f t \N 10177 3145 extraccion de sangre perfil 7 +267 2025-11-22 01:25:17.914396+00 2025-11-22 01:25:17.914401+00 f t \N 10263 3142 consulta cardiologica de urgencia lo operan el sabado +268 2025-11-22 01:25:17.918055+00 2025-11-22 01:25:17.918062+00 f t \N 10291 3156 Alergia en la piel , enrojecida , se rasca mucho esta molesto y esta inquieto. +269 2025-11-22 01:25:17.921632+00 2025-11-22 01:25:17.921639+00 f t \N 10228 3138 Chequeo general +270 2025-11-22 01:25:17.925242+00 2025-11-22 01:25:17.925248+00 f t \N 10284 3159 Cremacion. +271 2025-11-22 01:25:17.929121+00 2025-11-22 01:25:17.929131+00 f t \N 10264 3141 3 consultas por caida de pelo, tiene pipeta, viven en departamento +272 2025-11-22 01:25:17.930939+00 2025-11-22 01:25:17.930945+00 f t \N 10266 3141 3 consultas por caida de pelo, tiene pipeta, viven en departamento +273 2025-11-22 01:25:17.93265+00 2025-11-22 01:25:17.932656+00 f t \N 10265 3141 3 consultas por caida de pelo, tiene pipeta, viven en departamento +274 2025-11-22 01:25:17.936489+00 2025-11-22 01:25:17.936495+00 f t \N 10284 3153 Eutanasia +275 2025-11-22 01:25:17.940306+00 2025-11-22 01:25:17.940312+00 f t \N 10214 3129 Dificultad para mover las patas traseras. +276 2025-11-22 01:25:17.944421+00 2025-11-22 01:25:17.944427+00 f t \N 323 3102 quiere realizar una limpieza dental a su mascota, desea saber costos de la intervencion y las recetas para hacer dichos estudios. +277 2025-11-22 01:25:17.948138+00 2025-11-22 01:25:17.948147+00 f t \N 10106 3108 Vacunacion anual +278 2025-11-22 01:25:17.95224+00 2025-11-22 01:25:17.952248+00 f t \N 9995 3134 Mi perra tiene 15 años y tiene un bulto en la vejiga. Esta con tratamiento de tramado, y meloxicam, Esta con un poco de perdidas y la noto decaida. +279 2025-11-22 01:25:17.956461+00 2025-11-22 01:25:17.956468+00 f t \N 9025 3096 Ultima dosis de sextuple. +280 2025-11-22 01:25:17.960309+00 2025-11-22 01:25:17.960317+00 f t \N 8140 3099 triple felina + corte de garras a los dos +281 2025-11-22 01:25:17.961803+00 2025-11-22 01:25:17.961809+00 f t \N 8139 3099 triple felina + corte de garras a los dos +282 2025-11-22 01:25:17.965401+00 2025-11-22 01:25:17.965408+00 f t \N 10233 3137 Consulta general de estado de salud, vacunas anuales y desparasitacion interna y externa para 29kg +283 2025-11-22 01:25:17.968967+00 2025-11-22 01:25:17.968973+00 f t \N 10270 3147 vacunacion anual +284 2025-11-22 01:25:17.972884+00 2025-11-22 01:25:17.972893+00 f t \N 10216 3140 pcr vif/ vilef +285 2025-11-22 01:25:17.97721+00 2025-11-22 01:25:17.97722+00 f t \N 10216 3139 extraccion de sangre para PCR VIF y ViLeF +286 2025-11-22 01:25:17.981116+00 2025-11-22 01:25:17.981125+00 f t \N 9712 3131 Radiografia +287 2025-11-22 01:25:17.984694+00 2025-11-22 01:25:17.984702+00 f t \N 9712 3130 Ecocardiograma +288 2025-11-22 01:25:17.988743+00 2025-11-22 01:25:17.98875+00 f t \N 10219 3132 Ecografia abdominal +289 2025-11-22 01:25:17.992509+00 2025-11-22 01:25:17.992515+00 f t \N 6985 2506 desparacitacion interna y externa + certificado de salud +290 2025-11-22 01:25:17.99621+00 2025-11-22 01:25:17.996217+00 f t \N 10229 3136 Operada de tumor, no se levanta, esta decaida desde ayer. +291 2025-11-22 01:25:18.000059+00 2025-11-22 01:25:18.000066+00 f t \N 9611 3115 Ecografia abdominal. +292 2025-11-22 01:25:18.003847+00 2025-11-22 01:25:18.003855+00 f t \N 10230 3135 Vomitos, tiene estudios hechos. +293 2025-11-22 01:25:18.007813+00 2025-11-22 01:25:18.007823+00 f t \N 9803 3086 Ecografia abdominal. +294 2025-11-22 01:25:18.011813+00 2025-11-22 01:25:18.01182+00 f t \N 10123 3112 Paul y Romeo - Dos gatos con cistitis. +295 2025-11-22 01:25:18.013348+00 2025-11-22 01:25:18.013353+00 f t \N 8763 3112 Paul y Romeo - Dos gatos con cistitis. +296 2025-11-22 01:25:18.017069+00 2025-11-22 01:25:18.017075+00 f t \N 9788 3060 Comenzar con vacunacion +297 2025-11-22 01:25:18.020992+00 2025-11-22 01:25:18.020998+00 f t \N 6078 3126 notamos que le salio desde la cola algo como si fuera pus, +298 2025-11-22 01:25:18.024761+00 2025-11-22 01:25:18.024767+00 f t \N 9998 3101 consulta cardiologica +299 2025-11-22 01:25:18.028551+00 2025-11-22 01:25:18.028558+00 f t \N 10177 3124 Está decaído, vomito los doguis enteros varias veces y se queda echado sin moverse, siendo que es un perro muy imperativo +892 2025-11-22 01:25:20.621972+00 2025-11-22 01:25:20.62198+00 f t \N 7359 2557 Eco abdominal +300 2025-11-22 01:25:18.03272+00 2025-11-22 01:25:18.032728+00 f t \N 3479 3040 control cardiologico para dos +301 2025-11-22 01:25:18.034471+00 2025-11-22 01:25:18.034477+00 f t \N 3480 3040 control cardiologico para dos +302 2025-11-22 01:25:18.038236+00 2025-11-22 01:25:18.038242+00 f t \N 9592 3026 Vacunación anual y dos desparasitaciones int y ext para 15 y 25kg +303 2025-11-22 01:25:18.041945+00 2025-11-22 01:25:18.041952+00 f t \N 8891 3123 No se especificó motivo de consulta. se solicitó: ... +304 2025-11-22 01:25:18.045841+00 2025-11-22 01:25:18.045853+00 f t \N 10117 3118 2 Vacunacion anual y despesrasitacion felina int y ext para 5 y 8kg +305 2025-11-22 01:25:18.04788+00 2025-11-22 01:25:18.047887+00 f t \N 10118 3118 2 Vacunacion anual y despesrasitacion felina int y ext para 5 y 8kg +306 2025-11-22 01:25:18.05279+00 2025-11-22 01:25:18.052797+00 f t \N 912 3020 Extraccion de sangre +307 2025-11-22 01:25:18.057176+00 2025-11-22 01:25:18.057188+00 f t \N 9921 3110 Consulta de control. +308 2025-11-22 01:25:18.061578+00 2025-11-22 01:25:18.061587+00 f t \N 9712 3117 Consulta post estudios. +309 2025-11-22 01:25:18.065396+00 2025-11-22 01:25:18.065402+00 f t \N 9364 3092 telemedicina para revision de estudios +310 2025-11-22 01:25:18.069028+00 2025-11-22 01:25:18.069035+00 f t \N 9531 3089 Ecografia abdominal. +311 2025-11-22 01:25:18.072678+00 2025-11-22 01:25:18.072685+00 f t \N 10150 3122 Cremación +312 2025-11-22 01:25:18.076953+00 2025-11-22 01:25:18.07696+00 f t \N 6168 2943 Desparacitasión interna y externa + Certificado de Salud +313 2025-11-22 01:25:18.080886+00 2025-11-22 01:25:18.080892+00 f t \N 10150 3119 Eutanasia +314 2025-11-22 01:25:18.084837+00 2025-11-22 01:25:18.084843+00 f t \N 10146 3116 Orina con sangre hace dos dias. +315 2025-11-22 01:25:18.088896+00 2025-11-22 01:25:18.088903+00 f t \N 10142 3121 Tiene más de 11 años y está ciego, pero ahora ya no se mueve casi, está acostado, no quiere comer y toma agua cuando le damos con jeringa nomás +316 2025-11-22 01:25:18.093103+00 2025-11-22 01:25:18.093109+00 f t \N 10119 3114 Aulla mucho por celo. +317 2025-11-22 01:25:18.097476+00 2025-11-22 01:25:18.097483+00 f t \N 9992 3090 extraccion de sangre pcr vif/vilef y en lo posible medicion de presion +318 2025-11-22 01:25:18.101313+00 2025-11-22 01:25:18.10132+00 f t \N 5457 3105 Crash está con carraspeo como si le molestase la garganta y a veces vomita blanco y transparente, le molesta la garganta +319 2025-11-22 01:25:18.105845+00 2025-11-22 01:25:18.105853+00 f t \N 9626 3027 Vacunación anual +320 2025-11-22 01:25:18.109805+00 2025-11-22 01:25:18.109812+00 f t \N 10049 3106 Ojo Lagrimoso, poco apetito, letargo y estornudos +321 2025-11-22 01:25:18.113892+00 2025-11-22 01:25:18.113899+00 f t \N 2626 3104 vacunacion + microchip + test de leshmania +322 2025-11-22 01:25:18.117826+00 2025-11-22 01:25:18.117834+00 f t \N 9874 3069 vacunacion anual y control +323 2025-11-22 01:25:18.122193+00 2025-11-22 01:25:18.122203+00 f t \N 9921 3103 Tele consulta para revisión de análisis +324 2025-11-22 01:25:18.126097+00 2025-11-22 01:25:18.126105+00 f t \N 9803 3097 al parecer está con mucho dolor y quiero que lo vea nuevamente la misma doctora que ya lo vio quizás tenga que recetarle algún calmante +325 2025-11-22 01:25:18.130528+00 2025-11-22 01:25:18.130536+00 f t \N 2020 3100 recien vomito con sangre. +326 2025-11-22 01:25:18.134662+00 2025-11-22 01:25:18.13467+00 f t \N 10060 3098 Se le torcio una garra. +327 2025-11-22 01:25:18.138552+00 2025-11-22 01:25:18.13856+00 f t \N 10053 3095 Hace 3/4 días el gato vomita todo lo que come, está más flaco. Quiere comer la comida de ellos +328 2025-11-22 01:25:18.142347+00 2025-11-22 01:25:18.142355+00 f t \N 6717 3002 vacunacion anual +329 2025-11-22 01:25:18.146281+00 2025-11-22 01:25:18.146289+00 f t \N 5900 3094 debe adminitrarle dexametasona inyectable, paciente con cancer terminal +330 2025-11-22 01:25:18.150255+00 2025-11-22 01:25:18.150263+00 f t \N 10020 3093 No come, se mueve poco y camina raro, esta como si tuviera algo en la garganta. +331 2025-11-22 01:25:18.154161+00 2025-11-22 01:25:18.154168+00 f t \N 9998 3091 Dolor de patas, posible artrosis por vejez. +332 2025-11-22 01:25:18.158138+00 2025-11-22 01:25:18.158146+00 f t \N 8030 2738 Sesion 4/4 de fisioterapia +333 2025-11-22 01:25:18.159724+00 2025-11-22 01:25:18.159731+00 f t \N 8031 2738 Sesion 4/4 de fisioterapia +334 2025-11-22 01:25:18.163374+00 2025-11-22 01:25:18.163381+00 f t \N 9837 3074 Es un gato q no se deja agarrar, no puedo meterlo en la transportadora. Hace varias semanas q tiene una tos seca, pense q era de pelos pero no vomita ni saca nada. +335 2025-11-22 01:25:18.167029+00 2025-11-22 01:25:18.167036+00 f t \N 7308 3042 vacunacion quintuple +336 2025-11-22 01:25:18.170846+00 2025-11-22 01:25:18.170854+00 f t \N 7334 3085 Eutanasia +337 2025-11-22 01:25:18.17495+00 2025-11-22 01:25:18.174957+00 f t \N 9592 3024 Estudio cardiologico prequirurgico. +338 2025-11-22 01:25:18.178923+00 2025-11-22 01:25:18.17893+00 f t \N 7841 3075 Consulta general, antiinflamatorio +339 2025-11-22 01:25:18.182769+00 2025-11-22 01:25:18.182776+00 f t \N 9869 3072 Está extremadamente llorona, pero no parece dolerle nada, es... Emocional, quiere estar pegada a nosotros, si la acariciamos se calma, si nos alejamos más de un metro comienzan los lamentos. Es como que tuviera las emociones a full... Puede ser celo? cuando no estamos llora incluso con aullido basset (la escuchan en la Base Marambio). +340 2025-11-22 01:25:18.186632+00 2025-11-22 01:25:18.18664+00 f t \N 9541 3013 Chequeo y revisión de resultados de la radiografía +341 2025-11-22 01:25:18.190401+00 2025-11-22 01:25:18.190408+00 f t \N 169 2807 Inyectable 2/4 +342 2025-11-22 01:25:18.194193+00 2025-11-22 01:25:18.1942+00 f t \N 9974 3088 Nutricion. +343 2025-11-22 01:25:18.19829+00 2025-11-22 01:25:18.198297+00 f t \N 9875 3071 perfil 4 + orina completa +344 2025-11-22 01:25:18.201905+00 2025-11-22 01:25:18.201912+00 f t \N 9676 3036 Control. Vacuna triple y antirrábica. +345 2025-11-22 01:25:18.205976+00 2025-11-22 01:25:18.205983+00 f t \N 9897 3078 perfil 7 +346 2025-11-22 01:25:18.209961+00 2025-11-22 01:25:18.209968+00 f t \N 9641 3029 Revisión por Otitis +347 2025-11-22 01:25:18.214117+00 2025-11-22 01:25:18.214124+00 f t \N 9800 3065 perfil completo sin orina +348 2025-11-22 01:25:18.218138+00 2025-11-22 01:25:18.218146+00 f t \N 9875 3070 Perfil 4 + orina completa +349 2025-11-22 01:25:18.222+00 2025-11-22 01:25:18.222007+00 f t \N 9897 3077 perfil 7 +350 2025-11-22 01:25:18.225694+00 2025-11-22 01:25:18.225701+00 f t \N 9712 3058 Ecografia abdominal. +351 2025-11-22 01:25:18.229373+00 2025-11-22 01:25:18.22938+00 f t \N 9800 3066 GATA AGRESIVA, busca veterinario con experiencia y receta de gabapentina\r\nBajo mucho de peso, control general y extraccion de sangre +352 2025-11-22 01:25:18.233019+00 2025-11-22 01:25:18.233026+00 f t \N 2309 3076 Hoy tuve un episodio con mis dos perros. Se pelearon entre ellos, a uno de los dos lo llevé inmediatamente a la veterinaria porque tenía cortes en la cara y sangraba mucho.\nEl otro (apolo) estaba bien sin cortes visibles ni sangraba.\nAcabo de llegar y veo que en el cuello si tiene lastimado, tiene sangre en la herida propia de la lastimadura pero no cae sangre ni chorrea. Necesito si puede venir un veterinario a verlo y evaluar si es para coser o si le dan antibiótico y calmantes en caso de que no +353 2025-11-22 01:25:18.236691+00 2025-11-22 01:25:18.236699+00 f t \N 8891 3056 Consulta post estudios. +354 2025-11-22 01:25:18.240465+00 2025-11-22 01:25:18.240478+00 f t \N 9871 3067 La adopte ayer , y se queda en el sillon , no quiere comer, hoy hizo pis y caca bien. +355 2025-11-22 01:25:18.244203+00 2025-11-22 01:25:18.24421+00 f t \N 9611 3023 Muestra para perfil completo con orina. +356 2025-11-22 01:25:18.248223+00 2025-11-22 01:25:18.24823+00 f t \N 9439 2992 consulta cardiologica +357 2025-11-22 01:25:18.25182+00 2025-11-22 01:25:18.251827+00 f t \N 9541 3014 Radiologíax2 +358 2025-11-22 01:25:18.255459+00 2025-11-22 01:25:18.255467+00 f t \N 9611 3022 Consulta general y extraccion para analisis de control con orina. Hacer ordenes para estudios +359 2025-11-22 01:25:18.259059+00 2025-11-22 01:25:18.259067+00 f t \N 9439 2991 placas x2 +360 2025-11-22 01:25:18.262724+00 2025-11-22 01:25:18.262731+00 f t \N 9884 3068 No puede hacer pis, tiene estudios hechos +361 2025-11-22 01:25:18.266366+00 2025-11-22 01:25:18.266373+00 f t \N 9647 3049 Ecografia abdominal. +362 2025-11-22 01:25:18.269892+00 2025-11-22 01:25:18.269899+00 f t \N 9338 3017 Consulta etologica. +363 2025-11-22 01:25:18.273428+00 2025-11-22 01:25:18.273435+00 f t \N 9287 2957 Chequeo Clínico +364 2025-11-22 01:25:18.277226+00 2025-11-22 01:25:18.277235+00 f t \N 48 3057 Se rasca y se lastima. +365 2025-11-22 01:25:18.280826+00 2025-11-22 01:25:18.280833+00 f t \N 9738 3055 Hace unos dias tiene la pancita un poco hinchada cerca de las patas traseras, esta bien de animo. +366 2025-11-22 01:25:18.284889+00 2025-11-22 01:25:18.284901+00 f t \N 9728 3052 Vacunacion anual. +367 2025-11-22 01:25:18.289118+00 2025-11-22 01:25:18.289125+00 f t \N 9637 3031 Hola, la gata tiene algun problema urinario, comenzo a ir muy seguido a las piedritas y vi unas gotitas de sangre en la orina +368 2025-11-22 01:25:18.293332+00 2025-11-22 01:25:18.29334+00 f t \N 9648 3030 Chequeo +369 2025-11-22 01:25:18.297084+00 2025-11-22 01:25:18.297091+00 f t \N 9803 3061 Le cuesta caminar, dolor abdominal. +370 2025-11-22 01:25:18.301144+00 2025-11-22 01:25:18.301156+00 f t \N 9805 3062 No camina , no se mueve casi nada y no come hace 2 días. +371 2025-11-22 01:25:18.305586+00 2025-11-22 01:25:18.305595+00 f t \N 8068 3044 Vacunacion antirrabica. +372 2025-11-22 01:25:18.30952+00 2025-11-22 01:25:18.309527+00 f t \N 9703 3041 vacunacion anual. +373 2025-11-22 01:25:18.31366+00 2025-11-22 01:25:18.313668+00 f t \N 9691 3037 consulta cardiologica +374 2025-11-22 01:25:18.318095+00 2025-11-22 01:25:18.318103+00 f t \N 9769 3059 perfil 7. +375 2025-11-22 01:25:18.322114+00 2025-11-22 01:25:18.322122+00 f t \N 9769 3054 Es un perro de gran apetito pero ayer no quiso comer y le cuesta (o no quiere) pararse. Hay que insistirle mucho y ayudarla para que no se resbale. Parece dolerle la cadera. +376 2025-11-22 01:25:18.326333+00 2025-11-22 01:25:18.326341+00 f t \N 9712 3043 A veces vomita. Como mucho pasto. Desanimada. Se levanta y le cuesta caminar. Es una pit Bull. Tiene fuerzas. Pero se lave debil. +377 2025-11-22 01:25:18.330414+00 2025-11-22 01:25:18.33042+00 f t \N 8518 3053 inseparables +378 2025-11-22 01:25:18.334905+00 2025-11-22 01:25:18.334913+00 f t \N 5647 2999 extraccion de sangre perfil prequirurgico +379 2025-11-22 01:25:18.339059+00 2025-11-22 01:25:18.339067+00 f t \N 5647 2998 extraccion de sangre perfil prequirurgico +380 2025-11-22 01:25:18.343119+00 2025-11-22 01:25:18.343127+00 f t \N 9722 3051 Hace gotitas de pis, quiere hacer pero no le sale. +381 2025-11-22 01:25:18.347232+00 2025-11-22 01:25:18.347242+00 f t \N 9621 3050 Consulta post estudios. +382 2025-11-22 01:25:18.351519+00 2025-11-22 01:25:18.351526+00 f t \N 9590 3047 Diarrea y vomito con sangre +383 2025-11-22 01:25:18.355448+00 2025-11-22 01:25:18.355456+00 f t \N 9647 3032 La perrita tiene un bulto en las mamas grande. Ahora no está comiendo, si toma agua. Pero esta tirada y le cuesta mucho caminar (si toma agua) la noto muy agitada por momentos +384 2025-11-22 01:25:18.359421+00 2025-11-22 01:25:18.359429+00 f t \N 9621 3033 Ecografía Abdominal +385 2025-11-22 01:25:18.363451+00 2025-11-22 01:25:18.363459+00 f t \N 3479 2977 2 placas para Titino y 2 para Tito +386 2025-11-22 01:25:18.365081+00 2025-11-22 01:25:18.365088+00 f t \N 3480 2977 2 placas para Titino y 2 para Tito +387 2025-11-22 01:25:18.3689+00 2025-11-22 01:25:18.368906+00 f t \N 8899 2982 Ecocardiograma. +388 2025-11-22 01:25:18.37265+00 2025-11-22 01:25:18.37266+00 f t \N 8899 2975 Ecografia abdominal. +389 2025-11-22 01:25:18.376577+00 2025-11-22 01:25:18.376584+00 f t \N 9364 3035 traslado de muestra de orina +390 2025-11-22 01:25:18.380446+00 2025-11-22 01:25:18.380453+00 f t \N 7660 3019 Consulta post estudios. +391 2025-11-22 01:25:18.384871+00 2025-11-22 01:25:18.384883+00 f t \N 9621 3025 Consulta general, respira raro hace dias +392 2025-11-22 01:25:18.387044+00 2025-11-22 01:25:18.387051+00 f t \N 637 3025 Consulta general, respira raro hace dias +393 2025-11-22 01:25:18.391536+00 2025-11-22 01:25:18.391544+00 f t \N 8317 3018 Vacunación Anual+ Desparasitación interna y externa +394 2025-11-22 01:25:18.395738+00 2025-11-22 01:25:18.395746+00 f t \N 9593 3016 Gato rescatado, parece que va a perder un ojo, diarrea +395 2025-11-22 01:25:18.397665+00 2025-11-22 01:25:18.397671+00 f t \N 1025 3016 Gato rescatado, parece que va a perder un ojo, diarrea +396 2025-11-22 01:25:18.401782+00 2025-11-22 01:25:18.401788+00 f t \N 128 3001 teleconsulta +397 2025-11-22 01:25:18.405759+00 2025-11-22 01:25:18.405766+00 f t \N 9632 3034 Tiene como una especie de cortecito en la zona cercana al ano +398 2025-11-22 01:25:18.409721+00 2025-11-22 01:25:18.409728+00 f t \N 9608 3021 no quiere comer, desde ayer, toma agua pero se escondió bajo la cama y está distinto +399 2025-11-22 01:25:18.413694+00 2025-11-22 01:25:18.413701+00 f t \N 9364 3006 extraccion de sangre perfil general completo con orina + upc +400 2025-11-22 01:25:18.417386+00 2025-11-22 01:25:18.417393+00 f t \N 9364 3004 ecografia abdominal +401 2025-11-22 01:25:18.421514+00 2025-11-22 01:25:18.42152+00 f t \N 9364 3005 extraccion de sangre perfil general completo con orina + upc +402 2025-11-22 01:25:18.425459+00 2025-11-22 01:25:18.425467+00 f t \N 9157 3028 Revisión de Resultados +403 2025-11-22 01:25:18.429157+00 2025-11-22 01:25:18.429164+00 f t \N 3479 2980 extraccion de sangre perfil completo con orina x2 +404 2025-11-22 01:25:18.432859+00 2025-11-22 01:25:18.432869+00 f t \N 3479 2979 extraccion de sangre perfil general completo con orina x2 +405 2025-11-22 01:25:18.434888+00 2025-11-22 01:25:18.434895+00 f t \N 3480 2979 extraccion de sangre perfil general completo con orina x2 +406 2025-11-22 01:25:18.438763+00 2025-11-22 01:25:18.43877+00 f t \N 8899 3011 Revisión por sangre al defecar +407 2025-11-22 01:25:18.44258+00 2025-11-22 01:25:18.44259+00 f t \N 9581 3012 Vomitos con un poco de sangre +408 2025-11-22 01:25:18.446463+00 2025-11-22 01:25:18.44647+00 f t \N 9572 3010 Dolor en la pata trasera +409 2025-11-22 01:25:18.450348+00 2025-11-22 01:25:18.450354+00 f t \N 9474 3009 ecografia abdominal de urgencia +410 2025-11-22 01:25:18.454047+00 2025-11-22 01:25:18.454054+00 f t \N 9531 3008 Vómitos frecuentes +411 2025-11-22 01:25:18.457865+00 2025-11-22 01:25:18.457872+00 f t \N 9474 3007 traslado + extraccion de sangre perfl general completo sin orina +412 2025-11-22 01:25:18.461757+00 2025-11-22 01:25:18.461763+00 f t \N 8204 2996 Vacunacion anual +413 2025-11-22 01:25:18.46574+00 2025-11-22 01:25:18.465747+00 f t \N 9474 3003 no mejoro, vomitos +414 2025-11-22 01:25:18.469931+00 2025-11-22 01:25:18.469938+00 f t \N 8030 2737 Sesion 3/4 de fisioterapia +415 2025-11-22 01:25:18.471684+00 2025-11-22 01:25:18.47169+00 f t \N 8031 2737 Sesion 3/4 de fisioterapia +416 2025-11-22 01:25:18.475674+00 2025-11-22 01:25:18.475681+00 f t \N 9157 3000 perfil general completo sin orina + pcr erlichia +417 2025-11-22 01:25:18.479417+00 2025-11-22 01:25:18.479423+00 f t \N 8994 2907 Tiene como caspa y necesito le corten uñas. +418 2025-11-22 01:25:18.483361+00 2025-11-22 01:25:18.483368+00 f t \N 9322 2962 No puede mover las patas de atras. +419 2025-11-22 01:25:18.487047+00 2025-11-22 01:25:18.487053+00 f t \N 8504 2976 resultado de los estudios y Peke ha tenido una involucion muy notable pese a continuar medicado +420 2025-11-22 01:25:18.491023+00 2025-11-22 01:25:18.491029+00 f t \N 9270 2956 Ecografía de Ojos +421 2025-11-22 01:25:18.495003+00 2025-11-22 01:25:18.49501+00 f t \N 7334 2997 Mi perro está viejito, tuvo una convulsión anoche. +422 2025-11-22 01:25:18.498822+00 2025-11-22 01:25:18.498828+00 f t \N 9157 2938 vacunacion anual + chequeo +423 2025-11-22 01:25:18.502974+00 2025-11-22 01:25:18.502981+00 f t \N 9327 2990 Vomitos desde hoy. +424 2025-11-22 01:25:18.506732+00 2025-11-22 01:25:18.506739+00 f t \N 9471 2995 Muestra para Perfil Completo +425 2025-11-22 01:25:18.510969+00 2025-11-22 01:25:18.510976+00 f t \N 169 2806 Inyectable 1/4 +426 2025-11-22 01:25:18.515049+00 2025-11-22 01:25:18.515055+00 f t \N 9471 2994 Extraccion para perfil completo +427 2025-11-22 01:25:18.518854+00 2025-11-22 01:25:18.518862+00 f t \N 9439 2986 tiene una alergía que no sabemos a qué. Se le hincha el labio de abajo y ahora encima tiene la patita pelada. La veterinaria le dio corticoides hace 15 días y me dijo que le de una segunda dosis en estos días\r\nMiguel: chequeo y receta de gabapentina +428 2025-11-22 01:25:18.522833+00 2025-11-22 01:25:18.52284+00 f t \N 9474 2993 Le cuesta levantarse y no quiere comer. +429 2025-11-22 01:25:18.526873+00 2025-11-22 01:25:18.526879+00 f t \N 8899 2984 Muestra para prequirugico. +430 2025-11-22 01:25:18.530966+00 2025-11-22 01:25:18.530972+00 f t \N 8899 2983 Extraccion para prequirurgico +431 2025-11-22 01:25:18.534962+00 2025-11-22 01:25:18.534968+00 f t \N 9340 2967 Dicponible viernes de 10-17hs. no camina mucho y una lesión en la pata trasera, colorado picadura piel. +432 2025-11-22 01:25:18.538902+00 2025-11-22 01:25:18.538909+00 f t \N 1150 2968 consulta dermatologica +433 2025-11-22 01:25:18.542867+00 2025-11-22 01:25:18.542874+00 f t \N 335 2927 control post cx y extraccion de puntos +434 2025-11-22 01:25:18.546926+00 2025-11-22 01:25:18.546933+00 f t \N 9410 2978 Encontré un gatito bebé en la calle y lo voy a adoptar y quisiera bebehacerle un chequeo, desparasitarlo , vacunas, etc.\r\nMuchas gracias! +435 2025-11-22 01:25:18.551058+00 2025-11-22 01:25:18.551065+00 f t \N 7319 2814 vacunacion anual +436 2025-11-22 01:25:18.554644+00 2025-11-22 01:25:18.55465+00 f t \N 9430 2989 Muestra para perfil 7 +437 2025-11-22 01:25:18.558146+00 2025-11-22 01:25:18.558153+00 f t \N 9430 2985 No come. Le cuesta defecar y vomito amarillo. +438 2025-11-22 01:25:18.562049+00 2025-11-22 01:25:18.562055+00 f t \N 8941 2981 Consulta post estudios. +439 2025-11-22 01:25:18.566081+00 2025-11-22 01:25:18.566088+00 f t \N 8966 2899 vacunacion anual +440 2025-11-22 01:25:18.56971+00 2025-11-22 01:25:18.569716+00 f t \N 9319 2964 Hemograma completo +441 2025-11-22 01:25:18.573147+00 2025-11-22 01:25:18.573153+00 f t \N 9319 2963 Extraccion para hemograma completo. +442 2025-11-22 01:25:18.576851+00 2025-11-22 01:25:18.576856+00 f t \N 7061 2966 vacunacion anual +443 2025-11-22 01:25:18.580491+00 2025-11-22 01:25:18.580497+00 f t \N 9334 2969 vacunacion anual. +444 2025-11-22 01:25:18.584095+00 2025-11-22 01:25:18.584101+00 f t \N 9364 2972 Vomita liquido casi todas más mañanas. +445 2025-11-22 01:25:18.587592+00 2025-11-22 01:25:18.587598+00 f t \N 9380 2971 vacunacion anual +446 2025-11-22 01:25:18.591034+00 2025-11-22 01:25:18.591041+00 f t \N 9325 2965 chequeo general +447 2025-11-22 01:25:18.594699+00 2025-11-22 01:25:18.594706+00 f t \N 9346 2970 Deterinar si es o no cushing +448 2025-11-22 01:25:18.598741+00 2025-11-22 01:25:18.598748+00 f t \N 9123 2936 chikito: vacunacion anual\r\nluna: control, neumonia cronica, ultimamente esta tosiendo muy seguido +449 2025-11-22 01:25:18.60048+00 2025-11-22 01:25:18.600485+00 f t \N 9121 2936 chikito: vacunacion anual\r\nluna: control, neumonia cronica, ultimamente esta tosiendo muy seguido +450 2025-11-22 01:25:18.604791+00 2025-11-22 01:25:18.604797+00 f t \N 4489 2974 tengo una gata con cistitis comencé con ciprofloxacina +451 2025-11-22 01:25:18.608858+00 2025-11-22 01:25:18.608866+00 f t \N 602 2973 Vómitos\r\nLas primeras veces con visible cantidad de pelos; en las siguientes veces, el vómito blanco con algo de espuma y hasta sin color.\r\nSe alimenta poco, duerme mucho más de lo habitual +452 2025-11-22 01:25:18.612689+00 2025-11-22 01:25:18.612696+00 f t \N 9073 2917 segunda dosis de sextuple +453 2025-11-22 01:25:18.616559+00 2025-11-22 01:25:18.616565+00 f t \N 8941 2959 perfil 7 +454 2025-11-22 01:25:18.620164+00 2025-11-22 01:25:18.62017+00 f t \N 9236 2947 Consulta por granos para valentina, y saber si esta castrado o no Figaro +455 2025-11-22 01:25:18.621546+00 2025-11-22 01:25:18.621551+00 f t \N 9235 2947 Consulta por granos para valentina, y saber si esta castrado o no Figaro +456 2025-11-22 01:25:18.625612+00 2025-11-22 01:25:18.625618+00 f t \N 7733 2953 Consulta post estudios. +457 2025-11-22 01:25:18.629306+00 2025-11-22 01:25:18.629312+00 f t \N 8941 2960 extraccion de sangre perfil 7 +458 2025-11-22 01:25:18.633178+00 2025-11-22 01:25:18.633185+00 f t \N 9193 2944 Revisión de la pata trasera +459 2025-11-22 01:25:18.637249+00 2025-11-22 01:25:18.637257+00 f t \N 9238 2950 Ecocardiograma. +460 2025-11-22 01:25:18.641021+00 2025-11-22 01:25:18.641027+00 f t \N 9232 2945 Vacunacion anual y corte de garras de ambos gatitos +461 2025-11-22 01:25:18.642494+00 2025-11-22 01:25:18.6425+00 f t \N 9233 2945 Vacunacion anual y corte de garras de ambos gatitos +462 2025-11-22 01:25:18.645943+00 2025-11-22 01:25:18.645949+00 f t \N 9292 2958 Consulta endocrinologa +463 2025-11-22 01:25:18.649556+00 2025-11-22 01:25:18.649562+00 f t \N 9091 2924 Rayos. +464 2025-11-22 01:25:18.653216+00 2025-11-22 01:25:18.653222+00 f t \N 9091 2925 Consulta cardiologica y toma de presion. +465 2025-11-22 01:25:18.657114+00 2025-11-22 01:25:18.657123+00 f t \N 9313 2961 En un mes mi gato desarrollo un nivel 4 de insuficiencia renal. Tengo estudios de sangre y orina al día y esta con tratamiento de ringer lactato y medicación +466 2025-11-22 01:25:18.661372+00 2025-11-22 01:25:18.661379+00 f t \N 9264 2952 Gata con perdida de pelaje, presenta comezón e irritabilidad +467 2025-11-22 01:25:18.665165+00 2025-11-22 01:25:18.665173+00 f t \N 8597 2897 extraccion de sangre para calcio ionizado y glucosa +468 2025-11-22 01:25:18.669601+00 2025-11-22 01:25:18.669612+00 f t \N 9246 2949 Perfil completo. +469 2025-11-22 01:25:18.674728+00 2025-11-22 01:25:18.674739+00 f t \N 8891 2882 Control cardiologico prequirugico. +470 2025-11-22 01:25:18.681045+00 2025-11-22 01:25:18.681056+00 f t \N 8597 2896 extraccion de sangre para calcio ionizado y glucosa +471 2025-11-22 01:25:18.686432+00 2025-11-22 01:25:18.686443+00 f t \N 8891 2881 Muestra para Prequirurgico +472 2025-11-22 01:25:18.691725+00 2025-11-22 01:25:18.691736+00 f t \N 9246 2948 Extraccion para perfil completo. +473 2025-11-22 01:25:18.697577+00 2025-11-22 01:25:18.697589+00 f t \N 8891 2880 Consulta general por castracion y extraccion de sangre para prequirurgico +474 2025-11-22 01:25:18.703063+00 2025-11-22 01:25:18.703075+00 f t \N 9039 2940 Estornudos, mocos y Lagrimeos +475 2025-11-22 01:25:18.708834+00 2025-11-22 01:25:18.708846+00 f t \N 519 2951 Tiene mal la patita derecha, hace un par de semanas, disponible cualquier dia despues de las 18h +476 2025-11-22 01:25:18.714425+00 2025-11-22 01:25:18.714437+00 f t \N 3257 2910 Problemas para defecar desde hoy +477 2025-11-22 01:25:18.719812+00 2025-11-22 01:25:18.719824+00 f t \N 8472 2955 Consulta sobre procedimientos. +478 2025-11-22 01:25:18.725095+00 2025-11-22 01:25:18.725107+00 f t \N 9271 2954 Consulta general +479 2025-11-22 01:25:18.730336+00 2025-11-22 01:25:18.730346+00 f t \N 9246 2946 Ecografia abdominal por vomitos. +480 2025-11-22 01:25:18.735695+00 2025-11-22 01:25:18.735706+00 f t \N 8858 2877 Vacunación Anual +481 2025-11-22 01:25:18.741504+00 2025-11-22 01:25:18.741516+00 f t \N 9033 2912 Lo noto hace varios dias muy inquieto con maullidos muuuy frecuentes y mas sobre las hs de descanso, pide comida. +482 2025-11-22 01:25:18.746778+00 2025-11-22 01:25:18.74679+00 f t \N 9193 2942 Picazon o dolor en pata derecha trasera ( almohadón) +483 2025-11-22 01:25:18.752176+00 2025-11-22 01:25:18.752187+00 f t \N 9067 2941 Diarrea con sangre +484 2025-11-22 01:25:18.757245+00 2025-11-22 01:25:18.757256+00 f t \N 2020 2914 La gata eta flaca +485 2025-11-22 01:25:18.762588+00 2025-11-22 01:25:18.762598+00 f t \N 9159 2937 ecografia abbdominal de urgencia +486 2025-11-22 01:25:18.768291+00 2025-11-22 01:25:18.768302+00 f t \N 4266 2935 posibles estornudos inversos +487 2025-11-22 01:25:18.774072+00 2025-11-22 01:25:18.774083+00 f t \N 9152 2934 Artrosis , muy dolorida , no come 17 años. +488 2025-11-22 01:25:18.779622+00 2025-11-22 01:25:18.779633+00 f t \N 8764 2855 Vacunación Anual + Chequeo +489 2025-11-22 01:25:18.784951+00 2025-11-22 01:25:18.784962+00 f t \N 3550 2933 inyectable artrosan. +490 2025-11-22 01:25:18.790234+00 2025-11-22 01:25:18.790244+00 f t \N 8030 2736 Sesion 2/4 de fisioterapia +491 2025-11-22 01:25:18.795792+00 2025-11-22 01:25:18.795804+00 f t \N 7733 2929 extraccion de sangre perfil 7 + orina +492 2025-11-22 01:25:18.801272+00 2025-11-22 01:25:18.801283+00 f t \N 9087 2920 Vacunacion sextuple con coronavirus, certificado de salud, desparasitaacion int + ext +493 2025-11-22 01:25:18.8067+00 2025-11-22 01:25:18.806711+00 f t \N 7733 2928 extraccion de sangre perfil 7 + orina completa +494 2025-11-22 01:25:18.812463+00 2025-11-22 01:25:18.812475+00 f t \N 724 2918 Vomitos recurrentes. +495 2025-11-22 01:25:18.818015+00 2025-11-22 01:25:18.818026+00 f t \N 9096 2930 perfil 7 +496 2025-11-22 01:25:18.823609+00 2025-11-22 01:25:18.823623+00 f t \N 9096 2931 ecografia abdominal de urgencia +497 2025-11-22 01:25:18.829291+00 2025-11-22 01:25:18.829302+00 f t \N 9045 2932 posible eutanasia +498 2025-11-22 01:25:18.834679+00 2025-11-22 01:25:18.83469+00 f t \N 128 2859 Ecografia Abdominal. +499 2025-11-22 01:25:18.840267+00 2025-11-22 01:25:18.840278+00 f t \N 7379 2901 Boxer, tiene como "pelones" sin pelo. No parece molesto pero no es normal. También tiene algo en la oreja por lo que siempre me indicaron unas gotas (punta orejas) y no logra sanar bien.toma regularmente apoquel +500 2025-11-22 01:25:18.84564+00 2025-11-22 01:25:18.845652+00 f t \N 9096 2926 Es una Golden viejita, está caída y no está comiendo. +501 2025-11-22 01:25:18.851328+00 2025-11-22 01:25:18.851339+00 f t \N 9030 2909 Extraccion de asngre perfil 7 sin glucosa+ PCR vif-vilef + pcr mycoplasma +502 2025-11-22 01:25:18.856907+00 2025-11-22 01:25:18.856919+00 f t \N 8968 2898 control general. +503 2025-11-22 01:25:18.862603+00 2025-11-22 01:25:18.862614+00 f t \N 9029 2911 Consulta por problema en la rodilĺa +504 2025-11-22 01:25:18.86812+00 2025-11-22 01:25:18.868132+00 f t \N 9054 2919 Revision por vomitos repetitivos +505 2025-11-22 01:25:18.873691+00 2025-11-22 01:25:18.873704+00 f t \N 9089 2923 Vacuna sextuple. +506 2025-11-22 01:25:18.879432+00 2025-11-22 01:25:18.879445+00 f t \N 9030 2908 extraccion de sangre perfil 7 + PCR vif vilef +507 2025-11-22 01:25:18.884857+00 2025-11-22 01:25:18.884869+00 f t \N 9067 2922 Vacunacion anual +508 2025-11-22 01:25:18.890267+00 2025-11-22 01:25:18.890279+00 f t \N 8885 2879 consulta cardiologica para prequirurgico +509 2025-11-22 01:25:18.895954+00 2025-11-22 01:25:18.895962+00 f t \N 9039 2916 Alergia, se queda con la boca abierta, estornuda mucho. +510 2025-11-22 01:25:18.900078+00 2025-11-22 01:25:18.900085+00 f t \N 9045 2913 Ecografia abdominal +511 2025-11-22 01:25:18.904152+00 2025-11-22 01:25:18.904161+00 f t \N 9010 2900 medicion de presion y chequeo general +512 2025-11-22 01:25:18.908464+00 2025-11-22 01:25:18.908474+00 f t \N 8812 2921 Dolor, tiene ecografia hecha, deshidratada, no come +513 2025-11-22 01:25:18.913255+00 2025-11-22 01:25:18.913266+00 f t \N 9054 2915 Vomitos a repeticion, paciente con temperamento- teleconsulta +514 2025-11-22 01:25:18.917884+00 2025-11-22 01:25:18.917894+00 f t \N 9023 2905 Sangrado en las heces en el día de hoy, no manifiesta dolor ni desgano +515 2025-11-22 01:25:18.922906+00 2025-11-22 01:25:18.922917+00 f t \N 9022 2903 ecografia abdominal +516 2025-11-22 01:25:18.928126+00 2025-11-22 01:25:18.928137+00 f t \N 9021 2939 inseparables +517 2025-11-22 01:25:18.93365+00 2025-11-22 01:25:18.933661+00 f t \N 9025 2906 ayer la vacunaron con tercera dosis y estaba muy decaída por la noche, temblando. La llevo a la clinica, esta un poco mejor pero sigue algo decaida. +518 2025-11-22 01:25:18.939251+00 2025-11-22 01:25:18.939263+00 f t \N 9021 2904 tiene problemas en las patas traseras, debilidad, ahora grita de dolor y no puede caminar, ya estuvo en tratamiento: Con Prednisona 20 dos veces por día y tramadol un cuarto cada 12 hs. +519 2025-11-22 01:25:18.944886+00 2025-11-22 01:25:18.944897+00 f t \N 9015 2902 Los dos fueron castrados y hay que sacarles la via +520 2025-11-22 01:25:18.947075+00 2025-11-22 01:25:18.947084+00 f t \N 9013 2902 Los dos fueron castrados y hay que sacarles la via +521 2025-11-22 01:25:18.952887+00 2025-11-22 01:25:18.952895+00 f t \N 8894 2883 chequeo general +522 2025-11-22 01:25:18.957591+00 2025-11-22 01:25:18.957602+00 f t \N 5994 2892 Prequirurgico, trigliceridos y orina. +523 2025-11-22 01:25:18.962493+00 2025-11-22 01:25:18.962501+00 f t \N 5994 2891 Extraccion para prequirurgico y trigliceridos +524 2025-11-22 01:25:18.966852+00 2025-11-22 01:25:18.96686+00 f t \N 128 2893 Muestra de sangre +525 2025-11-22 01:25:18.971334+00 2025-11-22 01:25:18.971342+00 f t \N 4122 2861 Consulta post estudios +526 2025-11-22 01:25:18.975696+00 2025-11-22 01:25:18.975704+00 f t \N 128 2860 Extracción de Sangre +527 2025-11-22 01:25:18.981006+00 2025-11-22 01:25:18.981016+00 f t \N 8150 2884 Control post estudios +528 2025-11-22 01:25:18.986195+00 2025-11-22 01:25:18.986206+00 f t \N 8941 2890 eco abdominal de urgencia +529 2025-11-22 01:25:18.992158+00 2025-11-22 01:25:18.992169+00 f t \N 869 2732 vacunacion anual. +530 2025-11-22 01:25:18.997546+00 2025-11-22 01:25:18.997557+00 f t \N 8812 2885 Ecografia abdominal. +531 2025-11-22 01:25:19.003283+00 2025-11-22 01:25:19.003296+00 f t \N 8813 2866 Consulta general +532 2025-11-22 01:25:19.008895+00 2025-11-22 01:25:19.008905+00 f t \N 8919 2889 necesitamos que vengan a verla, porque tiene un problema en la columna y esta con mucho dolor + corte de garras +533 2025-11-22 01:25:19.014519+00 2025-11-22 01:25:19.014532+00 f t \N 8958 2895 Consulta Clinica +534 2025-11-22 01:25:19.024452+00 2025-11-22 01:25:19.024465+00 f t \N 8950 2894 Rascado inusual, vive en departamento +535 2025-11-22 01:25:19.031428+00 2025-11-22 01:25:19.031441+00 f t \N 6193 2796 Vacunación Antirrábica + tos de las perreras + Vacunación anual. +536 2025-11-22 01:25:19.033935+00 2025-11-22 01:25:19.033945+00 f t \N 8427 2796 Vacunación Antirrábica + tos de las perreras + Vacunación anual. +537 2025-11-22 01:25:19.040555+00 2025-11-22 01:25:19.040567+00 f t \N 8226 2751 Ecografia abdominal. +538 2025-11-22 01:25:19.046899+00 2025-11-22 01:25:19.046909+00 f t \N 128 2863 Estudios cardiologicos, electrocardiograma y ecocardiograma +539 2025-11-22 01:25:19.052747+00 2025-11-22 01:25:19.052757+00 f t \N 8472 2888 analisis de orina completo con UPC +540 2025-11-22 01:25:19.059276+00 2025-11-22 01:25:19.059287+00 f t \N 8472 2887 analisis de orina con cistocentesis +541 2025-11-22 01:25:19.065405+00 2025-11-22 01:25:19.065415+00 f t \N 8599 2836 Aplicación de micro chip para ambos gatos para viajar al exterior + vacuna antirrabica para uno +542 2025-11-22 01:25:19.070608+00 2025-11-22 01:25:19.070616+00 f t \N 3134 2878 continua con diarrea. +543 2025-11-22 01:25:19.075715+00 2025-11-22 01:25:19.075726+00 f t \N 8808 2870 Ecogafia abdominal +544 2025-11-22 01:25:19.080725+00 2025-11-22 01:25:19.080735+00 f t \N 8899 2886 Esta con vomitos desde hace 3 dias. Lo que come no lo puede retener. Hace poca caca, de color oscura. Le cambiamos la dieta a pollo pero la cosa no mejora. +545 2025-11-22 01:25:19.08544+00 2025-11-22 01:25:19.085452+00 f t \N 8758 2853 Tiene estornudos esporádicos y estos últimos días presentó algunos temas de respiración. +546 2025-11-22 01:25:19.090589+00 2025-11-22 01:25:19.0906+00 f t \N 407 2867 Vacunacion anual +547 2025-11-22 01:25:19.095612+00 2025-11-22 01:25:19.09562+00 f t \N 8819 2868 Vacunacion anual para 2 felinos +548 2025-11-22 01:25:19.097741+00 2025-11-22 01:25:19.097749+00 f t \N 8821 2868 Vacunacion anual para 2 felinos +549 2025-11-22 01:25:19.10296+00 2025-11-22 01:25:19.102968+00 f t \N 8279 2832 Rayos 2 placas +550 2025-11-22 01:25:19.107649+00 2025-11-22 01:25:19.107656+00 f t \N 488 2825 Control . +551 2025-11-22 01:25:19.113203+00 2025-11-22 01:25:19.113216+00 f t \N 8812 2871 No come, no mueve bien sus patas de atrás +552 2025-11-22 01:25:19.117957+00 2025-11-22 01:25:19.117966+00 f t \N 8597 2834 extraccion rapela perfil general completo con orina mas calcio ionizado y relacion proteinuria/creatinuria +553 2025-11-22 01:25:19.122715+00 2025-11-22 01:25:19.122728+00 f t \N 8597 2833 extraccion rapela perfil general completo con orina mas calcio ionizado y relacion proteinuria/creatinuria +554 2025-11-22 01:25:19.12769+00 2025-11-22 01:25:19.127699+00 f t \N 8830 2872 Consulta por vomitos +555 2025-11-22 01:25:19.132317+00 2025-11-22 01:25:19.132327+00 f t \N 3826 2876 Ecografía Abdominal +556 2025-11-22 01:25:19.136744+00 2025-11-22 01:25:19.136751+00 f t \N 8857 2875 ecografía abdominal +557 2025-11-22 01:25:19.142128+00 2025-11-22 01:25:19.142136+00 f t \N 4927 2805 Control +558 2025-11-22 01:25:19.147303+00 2025-11-22 01:25:19.147316+00 f t \N 8838 2874 Drako comio ibuprofeno, revision de analisis +559 2025-11-22 01:25:19.151905+00 2025-11-22 01:25:19.151913+00 f t \N 8814 2865 estornuda mucho, tiene mal aliento y le cuesta tragar (aunque sigue comiendo bien). +560 2025-11-22 01:25:19.157081+00 2025-11-22 01:25:19.157088+00 f t \N 7557 2869 Constulta post estudios. +561 2025-11-22 01:25:19.162187+00 2025-11-22 01:25:19.1622+00 f t \N 6902 2873 Control. +562 2025-11-22 01:25:19.166844+00 2025-11-22 01:25:19.166855+00 f t \N 7841 2864 Problema de la cadera +563 2025-11-22 01:25:19.171478+00 2025-11-22 01:25:19.171487+00 f t \N 8799 2862 Irritacion en el cuello por uso de corea +564 2025-11-22 01:25:19.176076+00 2025-11-22 01:25:19.176084+00 f t \N 8545 2831 Vacunacion anual felino +565 2025-11-22 01:25:19.180741+00 2025-11-22 01:25:19.180748+00 f t \N 6168 2856 Vacunación Anual +566 2025-11-22 01:25:19.185128+00 2025-11-22 01:25:19.185137+00 f t \N 8766 2858 Miasis +567 2025-11-22 01:25:19.189744+00 2025-11-22 01:25:19.189752+00 f t \N 8722 2850 Es para drenar una glándula perianal que está obstruida e inflamada. +568 2025-11-22 01:25:19.194399+00 2025-11-22 01:25:19.19441+00 f t \N 8759 2852 Estornudos constantes +569 2025-11-22 01:25:19.199067+00 2025-11-22 01:25:19.199076+00 f t \N 8764 2854 Revisión de vulto y lastimadura en la cola +570 2025-11-22 01:25:19.204233+00 2025-11-22 01:25:19.204243+00 f t \N 827 2857 Inquieta, presenta dolor abdominal y diarrea +571 2025-11-22 01:25:19.20972+00 2025-11-22 01:25:19.209731+00 f t \N 8742 2851 El perro no puede mover sus patas traseras, hasta ayer estaba bien +572 2025-11-22 01:25:19.215327+00 2025-11-22 01:25:19.215339+00 f t \N 75 2849 derivacion por vete maria luisa, continua con vomitos. Come y vomita +573 2025-11-22 01:25:19.220188+00 2025-11-22 01:25:19.220195+00 f t \N 8661 2843 Revisión de tratamiento de los ojos +574 2025-11-22 01:25:19.224531+00 2025-11-22 01:25:19.22454+00 f t \N 3550 2844 No se especificó motivo de consulta. se solicitó: ... +575 2025-11-22 01:25:19.229445+00 2025-11-22 01:25:19.229454+00 f t \N 8696 2848 se corto la pata con un vidrio, la herida finalmente no es profunda, ya no sangra +576 2025-11-22 01:25:19.234443+00 2025-11-22 01:25:19.234453+00 f t \N 8533 2820 extraccion rapela perfil 7, tsh y t4 libre +577 2025-11-22 01:25:19.239967+00 2025-11-22 01:25:19.239979+00 f t \N 8687 2847 Diarrea y Vomitos continuos +578 2025-11-22 01:25:19.245559+00 2025-11-22 01:25:19.24557+00 f t \N 6967 2734 Para miranda: triple felina y test rapido vilef. Juliana: vacuna leucemia felina. +579 2025-11-22 01:25:19.251053+00 2025-11-22 01:25:19.251064+00 f t \N 8533 2819 Extraccion rapela, perfil 7, t4 libre y tsh +580 2025-11-22 01:25:19.256859+00 2025-11-22 01:25:19.25687+00 f t \N 8423 2792 Vacunacion Anual +581 2025-11-22 01:25:19.262471+00 2025-11-22 01:25:19.262482+00 f t \N 8549 2826 Ecografia abdominal. +582 2025-11-22 01:25:19.268078+00 2025-11-22 01:25:19.268087+00 f t \N 8667 2842 Consulta general. +583 2025-11-22 01:25:19.272834+00 2025-11-22 01:25:19.272845+00 f t \N 8390 2789 3ra dosis de Vacuna Sextuple +584 2025-11-22 01:25:19.277437+00 2025-11-22 01:25:19.277446+00 f t \N 8142 2719 vacunacion triple felina y control general para la mama recien castrada +585 2025-11-22 01:25:19.28205+00 2025-11-22 01:25:19.282059+00 f t \N 8601 2835 Ecografia abdominal. +586 2025-11-22 01:25:19.286337+00 2025-11-22 01:25:19.286347+00 f t \N 8690 2845 Falta de apetito y vomitos, presenta débilidad +587 2025-11-22 01:25:19.291613+00 2025-11-22 01:25:19.291624+00 f t \N 7733 2804 Hace una semana fue chequeado por una diarrea. Con dieta recomendada mejoró.\r\nEl tema es que ahora anda débil , le cuesta pararse , ya casi no se levanta de su cama, pierde el equilibrio. Se levanta a tomar agua , baja a hacer pis pero en brazos y solo la dejo en el suelo para que orine. +588 2025-11-22 01:25:19.296617+00 2025-11-22 01:25:19.296628+00 f t \N 5647 2651 Vacunacion triple felina +589 2025-11-22 01:25:19.302346+00 2025-11-22 01:25:19.302357+00 f t \N 8691 2846 Ecografía Abdominal +590 2025-11-22 01:25:19.308117+00 2025-11-22 01:25:19.308127+00 f t \N 8652 2840 Consulta clinica, artrosis, se cayo y se le inflamo la pata +591 2025-11-22 01:25:19.31381+00 2025-11-22 01:25:19.313822+00 f t \N 8476 2810 ecografia abdominal +592 2025-11-22 01:25:19.320065+00 2025-11-22 01:25:19.320077+00 f t \N 8661 2841 Tiene un ojo con desprendimiento de retina y hoy amaneció muy hinchado y supurando , se nota que le duele por qué no se levanta, no es muy sociable con los humanos pero en casa se deja tocar +593 2025-11-22 01:25:19.32562+00 2025-11-22 01:25:19.325629+00 f t \N 8635 2839 linfoma avanzado. +594 2025-11-22 01:25:19.330301+00 2025-11-22 01:25:19.330309+00 f t \N 890 2837 tiene mal la oreja y cómo no puede caminar, +595 2025-11-22 01:25:19.334557+00 2025-11-22 01:25:19.334565+00 f t \N 294 2838 Vomitos de hace 3 dias. +596 2025-11-22 01:25:19.339079+00 2025-11-22 01:25:19.339086+00 f t \N 8472 2801 me derivaron a un especialista, para tratamiento +1588 2025-11-22 01:25:23.614375+00 2025-11-22 01:25:23.614381+00 f t \N 4213 1857 Eco abdominal +597 2025-11-22 01:25:19.343502+00 2025-11-22 01:25:19.343512+00 f t \N 8030 2735 Sesion 1/4 de fisioterapia +598 2025-11-22 01:25:19.348805+00 2025-11-22 01:25:19.348817+00 f t \N 8544 2824 3ra dosis triple felinaa +599 2025-11-22 01:25:19.354523+00 2025-11-22 01:25:19.354536+00 f t \N 8565 2829 Vacunacion anual+ corte de garras + certificado de salud +600 2025-11-22 01:25:19.360611+00 2025-11-22 01:25:19.360621+00 f t \N 128 2791 Control clinico y limpieza de oidos, aplicacion atrosan +601 2025-11-22 01:25:19.365522+00 2025-11-22 01:25:19.365532+00 f t \N 8586 2830 Llora y no saben por que, parece que le cuesta orinar y ahora vomito 2 veces. +602 2025-11-22 01:25:19.370422+00 2025-11-22 01:25:19.370432+00 f t \N 8541 2823 Vacuncion anual felino +603 2025-11-22 01:25:19.374716+00 2025-11-22 01:25:19.374727+00 f t \N 8518 2813 Buen día. Perro adulto casi 14 años (labrador) ya no se para ni vale por sus propios medios y sufre. No controla esfínteres. +604 2025-11-22 01:25:19.379552+00 2025-11-22 01:25:19.379561+00 f t \N 8181 2748 Hemograma completo +605 2025-11-22 01:25:19.384342+00 2025-11-22 01:25:19.38435+00 f t \N 8540 2822 extraccion rapela perfil 5 +606 2025-11-22 01:25:19.38893+00 2025-11-22 01:25:19.38894+00 f t \N 8485 2802 Ecograafia abdominal +607 2025-11-22 01:25:19.393031+00 2025-11-22 01:25:19.393039+00 f t \N 8265 2816 Consulta post estudios +608 2025-11-22 01:25:19.39753+00 2025-11-22 01:25:19.39754+00 f t \N 8540 2821 extraccion rapela perfil 5 +609 2025-11-22 01:25:19.401364+00 2025-11-22 01:25:19.401372+00 f t \N 8564 2828 Ecografia abdominal +610 2025-11-22 01:25:19.405257+00 2025-11-22 01:25:19.405265+00 f t \N 8399 2790 Vacunacion anual y desparasitacion interna y externa felino 5kg +611 2025-11-22 01:25:19.409133+00 2025-11-22 01:25:19.40914+00 f t \N 742 2817 Amanecion con le contorno del ojo izquierdo rojo. +612 2025-11-22 01:25:19.410763+00 2025-11-22 01:25:19.410769+00 f t \N 741 2817 Amanecion con le contorno del ojo izquierdo rojo. +613 2025-11-22 01:25:19.415722+00 2025-11-22 01:25:19.415736+00 f t \N 8499 2811 Orden para una ecografia. +614 2025-11-22 01:25:19.421182+00 2025-11-22 01:25:19.42119+00 f t \N 8550 2827 Esta hinchado en patas delanteras y cabeza. +615 2025-11-22 01:25:19.425419+00 2025-11-22 01:25:19.425427+00 f t \N 8526 2815 Sintomas de vomitos y tumor. +616 2025-11-22 01:25:19.429641+00 2025-11-22 01:25:19.429649+00 f t \N 8279 2767 se contagio pulgas pero de tanto rascarse se hizo una herida detrás de la oreja y desparacitacion. Chequeo + desparacitacion interna y externa +617 2025-11-22 01:25:19.434227+00 2025-11-22 01:25:19.434235+00 f t \N 8181 2747 Extraccion de sangre para hemograma completo +618 2025-11-22 01:25:19.439053+00 2025-11-22 01:25:19.439064+00 f t \N 8504 2818 Pérdida de movilidad patas traseras. +619 2025-11-22 01:25:19.443398+00 2025-11-22 01:25:19.443407+00 f t \N 8375 2783 Se rasca permanentemente y no tiene pulgas se lastimó el lomo y lo tiene muy nervioso +620 2025-11-22 01:25:19.447681+00 2025-11-22 01:25:19.447689+00 f t \N 7557 2740 Consulta Cardiologica +621 2025-11-22 01:25:19.452255+00 2025-11-22 01:25:19.452262+00 f t \N 8150 2762 perfil geronte felino. +622 2025-11-22 01:25:19.456899+00 2025-11-22 01:25:19.456906+00 f t \N 8320 2812 Analisis de sangre y coagulograma +623 2025-11-22 01:25:19.461053+00 2025-11-22 01:25:19.461063+00 f t \N 8230 2759 vacunacion anual para 2. +624 2025-11-22 01:25:19.462758+00 2025-11-22 01:25:19.462765+00 f t \N 8229 2759 vacunacion anual para 2. +625 2025-11-22 01:25:19.464412+00 2025-11-22 01:25:19.464418+00 f t \N 8231 2759 vacunacion anual para 2. +626 2025-11-22 01:25:19.468719+00 2025-11-22 01:25:19.468726+00 f t \N 8150 2761 extraccion de sangre perfil geronte felino. +627 2025-11-22 01:25:19.47289+00 2025-11-22 01:25:19.472897+00 f t \N 403 2788 Consulta general +628 2025-11-22 01:25:19.47709+00 2025-11-22 01:25:19.477098+00 f t \N 8407 2793 La veo que está flaca, y que no respira muy bien! +629 2025-11-22 01:25:19.481509+00 2025-11-22 01:25:19.481517+00 f t \N 8446 2797 Respiracion agitada/especie de soplido. Ataque de tos a la noche. +630 2025-11-22 01:25:19.485671+00 2025-11-22 01:25:19.485679+00 f t \N 8460 2803 Retiro Muetra de sangre Perfil 7 con glucosa +631 2025-11-22 01:25:19.490131+00 2025-11-22 01:25:19.490141+00 f t \N 8483 2800 Rdiografia. +632 2025-11-22 01:25:19.494461+00 2025-11-22 01:25:19.494469+00 f t \N 7319 2799 Teleconsulta post estudios. +633 2025-11-22 01:25:19.498272+00 2025-11-22 01:25:19.49828+00 f t \N 8053 2760 eco abdominal derivacion de vete clinica. +634 2025-11-22 01:25:19.502086+00 2025-11-22 01:25:19.502093+00 f t \N 8265 2770 Estudios de laboratorio, Perfil hepatico + calcio+ forforo+ ionograma serico+ + aoc + upc +635 2025-11-22 01:25:19.506206+00 2025-11-22 01:25:19.506213+00 f t \N 8460 2798 Vómitos blancos y amarillos desde ayer, vomitó a la noche, está inquieto y parece tener dolor abdominal. +636 2025-11-22 01:25:19.510333+00 2025-11-22 01:25:19.510343+00 f t \N 8379 2785 Ecografia abdominal +637 2025-11-22 01:25:19.514779+00 2025-11-22 01:25:19.514786+00 f t \N 8265 2768 extraccion de sangre, Perfil hepatico + calcio+ forforo+ ionograma serico+ + aoc + upc +638 2025-11-22 01:25:19.51899+00 2025-11-22 01:25:19.518997+00 f t \N 8265 2769 Ecografia abdominal para Merluza +639 2025-11-22 01:25:19.523005+00 2025-11-22 01:25:19.523013+00 f t \N 5906 2729 revision de estudios por posible diabete mellitus +640 2025-11-22 01:25:19.526987+00 2025-11-22 01:25:19.526994+00 f t \N 6192 2701 control cardiologico +641 2025-11-22 01:25:19.531726+00 2025-11-22 01:25:19.531734+00 f t \N 7660 2781 Coproparasitologico\r\nCoprocultivo +642 2025-11-22 01:25:19.536472+00 2025-11-22 01:25:19.536479+00 f t \N 7868 2663 Come bien, toma agua, hace caca bien pero adelgazo mucho\r\nEs alérgico a las pulgas y estuvo con pulgas. +643 2025-11-22 01:25:19.540532+00 2025-11-22 01:25:19.54054+00 f t \N 6192 2795 control por estornudos continuos +644 2025-11-22 01:25:19.544359+00 2025-11-22 01:25:19.544366+00 f t \N 8320 2775 ECP + Ecocardiograma +645 2025-11-22 01:25:19.548402+00 2025-11-22 01:25:19.548409+00 f t \N 8320 2776 Extracción de Sangre +646 2025-11-22 01:25:19.552433+00 2025-11-22 01:25:19.552441+00 f t \N 8425 2794 No se especificó motivo de consulta. se solicitó: Telemedicina... +647 2025-11-22 01:25:19.556579+00 2025-11-22 01:25:19.556588+00 f t \N 8332 2779 Sacar los puntos y quitarle una Vía +648 2025-11-22 01:25:19.560979+00 2025-11-22 01:25:19.560987+00 f t \N 8383 2786 Revisar alimentacion por sobrepeso +649 2025-11-22 01:25:19.565205+00 2025-11-22 01:25:19.565217+00 f t \N 7308 2548 vac. quintuple +650 2025-11-22 01:25:19.569241+00 2025-11-22 01:25:19.569253+00 f t \N 8274 2766 aplicacion de tribiotic subcutaneo +651 2025-11-22 01:25:19.573561+00 2025-11-22 01:25:19.57357+00 f t \N 8307 2787 Ecografía Abdominal +652 2025-11-22 01:25:19.577759+00 2025-11-22 01:25:19.577768+00 f t \N 8096 2708 +653 2025-11-22 01:25:19.582264+00 2025-11-22 01:25:19.582272+00 f t \N 8331 2778 Consulta cardiologica +654 2025-11-22 01:25:19.586419+00 2025-11-22 01:25:19.586426+00 f t \N 8140 2718 vacunacion triple felina 2 pacientes. +655 2025-11-22 01:25:19.588443+00 2025-11-22 01:25:19.58845+00 f t \N 8139 2718 vacunacion triple felina 2 pacientes. +656 2025-11-22 01:25:19.592942+00 2025-11-22 01:25:19.592951+00 f t \N 8240 2757 vac. anual + bordetella x2. +657 2025-11-22 01:25:19.594752+00 2025-11-22 01:25:19.594758+00 f t \N 8238 2757 vac. anual + bordetella x2. +658 2025-11-22 01:25:19.598855+00 2025-11-22 01:25:19.598862+00 f t \N 8179 2741 Vacunas anuales +659 2025-11-22 01:25:19.602913+00 2025-11-22 01:25:19.602922+00 f t \N 6127 2784 Consulta post estudios +660 2025-11-22 01:25:19.605131+00 2025-11-22 01:25:19.605139+00 f t \N 6126 2784 Consulta post estudios +661 2025-11-22 01:25:19.609568+00 2025-11-22 01:25:19.609575+00 f t \N 7414 2782 Extraccion de puntos +662 2025-11-22 01:25:19.614258+00 2025-11-22 01:25:19.614268+00 f t \N 8364 2780 Consulta general y desparasitacion int + ext, gaato 1-2kg +663 2025-11-22 01:25:19.619049+00 2025-11-22 01:25:19.619057+00 f t \N 7319 2754 Analisis de sangre Perfil 7 con orina, brucella +664 2025-11-22 01:25:19.623519+00 2025-11-22 01:25:19.623526+00 f t \N 8130 2764 vacunacion anual a los dos. +665 2025-11-22 01:25:19.625196+00 2025-11-22 01:25:19.625201+00 f t \N 8131 2764 vacunacion anual a los dos. +666 2025-11-22 01:25:19.629276+00 2025-11-22 01:25:19.629286+00 f t \N 7319 2752 Extraccion para analisis, perfil 7 con orina, y brucella +667 2025-11-22 01:25:19.634361+00 2025-11-22 01:25:19.634371+00 f t \N 8324 2773 Aparente abseso en el cachete derecho. +668 2025-11-22 01:25:19.639356+00 2025-11-22 01:25:19.639367+00 f t \N 8245 2765 coproparasitologico. +669 2025-11-22 01:25:19.644955+00 2025-11-22 01:25:19.644966+00 f t \N 8307 2774 Orina seguido y con un poco de sangre +670 2025-11-22 01:25:19.650151+00 2025-11-22 01:25:19.650162+00 f t \N 1370 2771 Evacuar dudas de la ecografía. +671 2025-11-22 01:25:19.655965+00 2025-11-22 01:25:19.655989+00 f t \N 8317 2772 una vacunación anual + una desparacitación interna y externa + una consulta clínica +672 2025-11-22 01:25:19.65807+00 2025-11-22 01:25:19.65808+00 f t \N 8318 2772 una vacunación anual + una desparacitación interna y externa + una consulta clínica +673 2025-11-22 01:25:19.662854+00 2025-11-22 01:25:19.662864+00 f t \N 8300 2777 Ojo hinchado y colorado +674 2025-11-22 01:25:19.669613+00 2025-11-22 01:25:19.669621+00 f t \N 1370 2758 ecografia abdominal. +675 2025-11-22 01:25:19.674919+00 2025-11-22 01:25:19.674928+00 f t \N 3550 2745 Aplicacion Atrosan +676 2025-11-22 01:25:19.680692+00 2025-11-22 01:25:19.680702+00 f t \N 6717 2743 Sextuple +677 2025-11-22 01:25:19.685618+00 2025-11-22 01:25:19.685628+00 f t \N 8228 2750 Consulta general, previamnte por vomitos y diarrea +678 2025-11-22 01:25:19.687723+00 2025-11-22 01:25:19.68773+00 f t \N 8227 2750 Consulta general, previamnte por vomitos y diarrea +679 2025-11-22 01:25:19.691817+00 2025-11-22 01:25:19.691824+00 f t \N 8264 2763 Estuvo con vómitos, para mí desde que compré su nueva bolsa de alimentos, vomita una vez por semana. Y no es que vomita pelo sino el balanceado. Es pro plan purina adulto, el que comió siempre +680 2025-11-22 01:25:19.695798+00 2025-11-22 01:25:19.695807+00 f t \N 8029 2691 +681 2025-11-22 01:25:19.699963+00 2025-11-22 01:25:19.699971+00 f t \N 8029 2684 Vacunación Anual +682 2025-11-22 01:25:19.70403+00 2025-11-22 01:25:19.704038+00 f t \N 788 2713 vac. antirrabic +683 2025-11-22 01:25:19.707812+00 2025-11-22 01:25:19.707819+00 f t \N 928 2756 placasx2 derivada de su veterinario. +684 2025-11-22 01:25:19.711896+00 2025-11-22 01:25:19.711904+00 f t \N 7557 2746 Rayos +685 2025-11-22 01:25:19.715799+00 2025-11-22 01:25:19.715808+00 f t \N 8167 2742 Extraccion de sanagre para perfil general +686 2025-11-22 01:25:19.720633+00 2025-11-22 01:25:19.720641+00 f t \N 8245 2755 Inicio con deposiciones blandas hace 4 dias , hoy ya diarreicas con presencia de moco sin sangre +687 2025-11-22 01:25:19.724782+00 2025-11-22 01:25:19.724791+00 f t \N 7904 2730 Viene hace 5 días con un cuadro indefinido. Los primeros días no comía, pero si tomaba agua. Recién hace dos días que volvió a comer pero no quiere balanceado. Solo come carne hervida. Toma poca agua y está decaído.. +688 2025-11-22 01:25:19.729042+00 2025-11-22 01:25:19.72905+00 f t \N 7067 2753 control cardiologico indicado por vete clinica. +689 2025-11-22 01:25:19.733371+00 2025-11-22 01:25:19.73338+00 f t \N 8150 2726 +690 2025-11-22 01:25:19.737164+00 2025-11-22 01:25:19.737171+00 f t \N 1370 2749 Constipacion +691 2025-11-22 01:25:19.741427+00 2025-11-22 01:25:19.741438+00 f t \N 8062 2702 Soplo +692 2025-11-22 01:25:19.747073+00 2025-11-22 01:25:19.747085+00 f t \N 8060 2697 Vacunacion anual y despasrasitacion int+ ext canino 20-30kg x2 +693 2025-11-22 01:25:19.750265+00 2025-11-22 01:25:19.750276+00 f t \N 8061 2697 Vacunacion anual y despasrasitacion int+ ext canino 20-30kg x2 +694 2025-11-22 01:25:19.756289+00 2025-11-22 01:25:19.7563+00 f t \N 7168 2714 2 radiografias. +695 2025-11-22 01:25:19.761822+00 2025-11-22 01:25:19.761832+00 f t \N 8207 2744 Caida, dolor en una pata +696 2025-11-22 01:25:19.767253+00 2025-11-22 01:25:19.767262+00 f t \N 6126 2607 retiro de orina +697 2025-11-22 01:25:19.771082+00 2025-11-22 01:25:19.77109+00 f t \N 8173 2739 Vacunacion anual +698 2025-11-22 01:25:19.774845+00 2025-11-22 01:25:19.774853+00 f t \N 8170 2733 Creemos que tiene mastitis. +699 2025-11-22 01:25:19.780523+00 2025-11-22 01:25:19.780535+00 f t \N 7899 2670 pack 6 visitas, inyeccion subcutanea +700 2025-11-22 01:25:19.785658+00 2025-11-22 01:25:19.785666+00 f t \N 7414 2731 extraccion de puntos post cirugia. +701 2025-11-22 01:25:19.789552+00 2025-11-22 01:25:19.789559+00 f t \N 8148 2722 +702 2025-11-22 01:25:19.79358+00 2025-11-22 01:25:19.793588+00 f t \N 7319 2725 hace un tiempo tiene una peladilla en la pata que no se le cura y se le está extendiendo. +703 2025-11-22 01:25:19.797872+00 2025-11-22 01:25:19.79788+00 f t \N 480 2728 Eutanasia +704 2025-11-22 01:25:19.801897+00 2025-11-22 01:25:19.801904+00 f t \N 8106 2724 hemograma completo+ glucemia y pcr erlichia. +705 2025-11-22 01:25:19.806073+00 2025-11-22 01:25:19.806081+00 f t \N 8106 2723 extraccion de sangre para hemograma completo+ glucemia y pcr erlichia. +706 2025-11-22 01:25:19.810361+00 2025-11-22 01:25:19.810369+00 f t \N 8033 2727 Perfil prequirurgico 3 +707 2025-11-22 01:25:19.81435+00 2025-11-22 01:25:19.814357+00 f t \N 8033 2687 Chequeo + Extracción de sangre +708 2025-11-22 01:25:19.818295+00 2025-11-22 01:25:19.818303+00 f t \N 7746 2633 Está diagnósticado y medicado para trastornos de ansiedad y con problemas dermatologícos sin diagnóstico. Está tomando pregavalina, pragnisol y aceite cbd. +709 2025-11-22 01:25:19.822095+00 2025-11-22 01:25:19.822102+00 f t \N 8134 2717 Tony está estornudando y con mocos hace 3 días aproximadamente. +710 2025-11-22 01:25:19.826131+00 2025-11-22 01:25:19.82614+00 f t \N 8129 2715 Es un ovejero alemán de 13 años, le cuesta moverse, cada día se mueve un poco menos. Camina por la casa pero esta muy débil, no quiere comer su alimento, solo si se lo mezclo con pollo u algún sobrecito. Tiene muchos dolores en la cadera baja, cuando se acuesta llora, le lagrimean mucho los ojos. Por la edad ya tiene artrosis, y en su última visita al veterinario en Junio estaban empezando las molestias pero con los meses empeoro. +711 2025-11-22 01:25:19.830247+00 2025-11-22 01:25:19.830254+00 f t \N 8055 2699 perfil general completo sin orina +712 2025-11-22 01:25:19.83405+00 2025-11-22 01:25:19.834057+00 f t \N 8055 2700 perfil general completo sin orina +713 2025-11-22 01:25:19.837917+00 2025-11-22 01:25:19.837926+00 f t \N 7899 2669 pack 6 visitas, inyeccion subcutanea +714 2025-11-22 01:25:19.842277+00 2025-11-22 01:25:19.842283+00 f t \N 5636 2720 Se rasca y se lastimo +715 2025-11-22 01:25:19.846966+00 2025-11-22 01:25:19.846975+00 f t \N 8124 2711 Diarrea y vómitos. +827 2025-11-22 01:25:20.316671+00 2025-11-22 01:25:20.316678+00 f t \N 7700 2629 Vomitos posterior a periodo +828 2025-11-22 01:25:20.320583+00 2025-11-22 01:25:20.32059+00 f t \N 7706 2630 Esta resfriado hace varios dias, hoy ya no comió, parece q estornudó sangre. Está decaído. +829 2025-11-22 01:25:20.325374+00 2025-11-22 01:25:20.325382+00 f t \N 7239 2528 control general +716 2025-11-22 01:25:19.85132+00 2025-11-22 01:25:19.851328+00 f t \N 8123 2712 -1-Le molesta mucho la oreja derecha, se la rasca todo el tiempo y sacude mucho a cabeza,2- estuvo tosiendo por la mañana y parece como si estuviera resfriada pero no le vi mocos. 3-la ultima vete que la reviso me pidio una radiografia de la columna porque reacciona cuando se le acaricia el lomo. Si tienen equipo de rx estaria bueno que lo lleven para hacerselo tambien.. +717 2025-11-22 01:25:19.855508+00 2025-11-22 01:25:19.855515+00 f t \N 8053 2721 Perfil completo sin orina +718 2025-11-22 01:25:19.859516+00 2025-11-22 01:25:19.859523+00 f t \N 8090 2707 Mi gata tiene alergia ambiental y ya empezo a tener nuevamente por la estacion lastimaduras y tiene la boca hinchada en este momento +719 2025-11-22 01:25:19.863634+00 2025-11-22 01:25:19.863642+00 f t \N 8090 2706 Mi gata tiene alergia ambiental y ya empezo a tener nuevamente por la estacion lastimaduras y tiene la boca hinchada en este momento +720 2025-11-22 01:25:19.867633+00 2025-11-22 01:25:19.867645+00 f t \N 8106 2710 Control para un perro rescatado \r\nYa tiene todos los estudios hechos +721 2025-11-22 01:25:19.871448+00 2025-11-22 01:25:19.871455+00 f t \N 7451 2574 vac. anual x2 +722 2025-11-22 01:25:19.873029+00 2025-11-22 01:25:19.873035+00 f t \N 7453 2574 vac. anual x2 +723 2025-11-22 01:25:19.876777+00 2025-11-22 01:25:19.876786+00 f t \N 5175 2618 +724 2025-11-22 01:25:19.880813+00 2025-11-22 01:25:19.880819+00 f t \N 8098 2709 +725 2025-11-22 01:25:19.884891+00 2025-11-22 01:25:19.8849+00 f t \N 1510 2686 Chequo + Desparasitación interna y externa +726 2025-11-22 01:25:19.889171+00 2025-11-22 01:25:19.889178+00 f t \N 8031 2685 2 Electrocardiograma +727 2025-11-22 01:25:19.890875+00 2025-11-22 01:25:19.89088+00 f t \N 8030 2685 2 Electrocardiograma +728 2025-11-22 01:25:19.894906+00 2025-11-22 01:25:19.894913+00 f t \N 1174 2716 Perdio un diente por una caida +729 2025-11-22 01:25:19.899408+00 2025-11-22 01:25:19.899415+00 f t \N 8068 2703 vac. anual felipe\r\nvac. triple y chequeo tito +730 2025-11-22 01:25:19.9014+00 2025-11-22 01:25:19.901408+00 f t \N 8067 2703 vac. anual felipe\r\nvac. triple y chequeo tito +731 2025-11-22 01:25:19.906325+00 2025-11-22 01:25:19.906333+00 f t \N 8073 2704 Control general de alimentacion +732 2025-11-22 01:25:19.911934+00 2025-11-22 01:25:19.911945+00 f t \N 8082 2705 Vacunacion anual +733 2025-11-22 01:25:19.914126+00 2025-11-22 01:25:19.914136+00 f t \N 8083 2705 Vacunacion anual +734 2025-11-22 01:25:19.919452+00 2025-11-22 01:25:19.91946+00 f t \N 7507 2613 Control Cardiologico +735 2025-11-22 01:25:19.924029+00 2025-11-22 01:25:19.924037+00 f t \N 928 2679 Cosnulta post estudios +736 2025-11-22 01:25:19.928672+00 2025-11-22 01:25:19.928683+00 f t \N 7899 2668 pack 6 visitas, inyeccion subcutanea +737 2025-11-22 01:25:19.93298+00 2025-11-22 01:25:19.932988+00 f t \N 8056 2694 perfil 7 + trigliceridos + medicion fenobarbital +738 2025-11-22 01:25:19.937445+00 2025-11-22 01:25:19.937454+00 f t \N 7334 2549 tiene un testiculo muy abultado +739 2025-11-22 01:25:19.941867+00 2025-11-22 01:25:19.941875+00 f t \N 7168 2502 1 vacunacion anual + desp int ext gato 2-5kg +740 2025-11-22 01:25:19.946134+00 2025-11-22 01:25:19.946146+00 f t \N 8045 2695 Vomitos de bilis más o menos frecuentes +741 2025-11-22 01:25:19.95046+00 2025-11-22 01:25:19.950468+00 f t \N 8056 2693 extraccion de sangre +742 2025-11-22 01:25:19.954972+00 2025-11-22 01:25:19.95498+00 f t \N 8059 2696 Despues de un estiramiento de columna hacia atras, jugando con la pelota en el parque, dejo de jugar al momento, desde ahi no camino normal, le cuesta y ya no corre +743 2025-11-22 01:25:19.95938+00 2025-11-22 01:25:19.959388+00 f t \N 8053 2690 no come +744 2025-11-22 01:25:19.963766+00 2025-11-22 01:25:19.963775+00 f t \N 8063 2698 Vomitos +745 2025-11-22 01:25:19.968273+00 2025-11-22 01:25:19.968281+00 f t \N 8028 2683 Ecografía Abdominal +746 2025-11-22 01:25:19.97278+00 2025-11-22 01:25:19.972788+00 f t \N 985 2692 Se doblo la pata delantera izquierda y no puede pisar. Tiene inflamado en la articulación. Es perro macho y la dirección es mexico 4134 depto b caballito +747 2025-11-22 01:25:19.977265+00 2025-11-22 01:25:19.977273+00 f t \N 308 2689 esta haciendo caca con sangre +748 2025-11-22 01:25:19.981709+00 2025-11-22 01:25:19.981716+00 f t \N 7778 2648 Rayos, 4 placas +749 2025-11-22 01:25:19.98442+00 2025-11-22 01:25:19.984429+00 f t \N 7777 2648 Rayos, 4 placas +750 2025-11-22 01:25:19.989059+00 2025-11-22 01:25:19.989067+00 f t \N 8035 2688 Acumula liquido pleural, le hicieron 2 punciones ya (ayer y hoy) +751 2025-11-22 01:25:19.993331+00 2025-11-22 01:25:19.993339+00 f t \N 7402 2565 Vacunacion anual 2 perros y 2 gatos +752 2025-11-22 01:25:19.995346+00 2025-11-22 01:25:19.995355+00 f t \N 7405 2565 Vacunacion anual 2 perros y 2 gatos +753 2025-11-22 01:25:19.997846+00 2025-11-22 01:25:19.997854+00 f t \N 7403 2565 Vacunacion anual 2 perros y 2 gatos +754 2025-11-22 01:25:19.999833+00 2025-11-22 01:25:19.99984+00 f t \N 7404 2565 Vacunacion anual 2 perros y 2 gatos +755 2025-11-22 01:25:20.004016+00 2025-11-22 01:25:20.004024+00 f t \N 7899 2667 pack 6 visitas, inyeccion subcutanea +756 2025-11-22 01:25:20.008301+00 2025-11-22 01:25:20.008307+00 f t \N 5891 2642 vacunacion de tos de las perreras +757 2025-11-22 01:25:20.012367+00 2025-11-22 01:25:20.012374+00 f t \N 6127 2606 eco abdominal +758 2025-11-22 01:25:20.016175+00 2025-11-22 01:25:20.016183+00 f t \N 2418 2640 chequeo de estudios +759 2025-11-22 01:25:20.020123+00 2025-11-22 01:25:20.02013+00 f t \N 7993 2681 Consulta general, limpieza gladulas y vacunacion anual de canino, dos vacunas anuales felino +760 2025-11-22 01:25:20.021703+00 2025-11-22 01:25:20.021708+00 f t \N 7994 2681 Consulta general, limpieza gladulas y vacunacion anual de canino, dos vacunas anuales felino +761 2025-11-22 01:25:20.02346+00 2025-11-22 01:25:20.023466+00 f t \N 7992 2681 Consulta general, limpieza gladulas y vacunacion anual de canino, dos vacunas anuales felino +762 2025-11-22 01:25:20.027449+00 2025-11-22 01:25:20.027456+00 f t \N 4386 2680 Cosnulta general +763 2025-11-22 01:25:20.031475+00 2025-11-22 01:25:20.031484+00 f t \N 7962 2682 Vomitos hasce 2 dias +764 2025-11-22 01:25:20.035378+00 2025-11-22 01:25:20.035386+00 f t \N 7899 2666 pack 6 visitas, inyeccion subcutanea +765 2025-11-22 01:25:20.040182+00 2025-11-22 01:25:20.040192+00 f t \N 7924 2676 mi gatito toby de 3 años presenta arcadas, vomita saliva, ayer vomitó un poquito de saliva con sangre. Tambien noto que le cuesta comer, al masticar se le escucha raro y come poquito cuando antes era de buen comer y con los dientes rompia normalmente el alimento balanceado. es un gatito que lamentablemente no se deja tocar por extraños por lo cual le podria mandar videos si me lo indica. +766 2025-11-22 01:25:20.044742+00 2025-11-22 01:25:20.044751+00 f t \N 7930 2675 Parece tener una infección en el oído.Se rasca,tiene la oreja roja y se la lleva para atrás. +767 2025-11-22 01:25:20.049403+00 2025-11-22 01:25:20.049412+00 f t \N 7924 2677 mi gatito toby de 3 años presenta arcadas, vomita saliva, ayer vomitó un poquito de saliva con sangre. Tambien noto que le cuesta comer, al masticar se le escucha raro y come poquito cuando antes era de buen comer y con los dientes rompia normalmente el alimento balanceado. es un gatito que lamentablemente no se deja tocar por extraños por lo cual le podria mandar videos si me lo indica. +768 2025-11-22 01:25:20.054663+00 2025-11-22 01:25:20.054674+00 f t \N 7935 2673 Dolencias y llanto continuo +830 2025-11-22 01:25:20.329349+00 2025-11-22 01:25:20.329356+00 f t \N 7238 2527 control general +1830 2025-11-22 01:25:24.621711+00 2025-11-22 01:25:24.621717+00 f t \N 1891 1591 Eco abdominal +769 2025-11-22 01:25:20.060609+00 2025-11-22 01:25:20.060618+00 f t \N 7917 2674 Empezó en el día de ayer a estar decaida, dejó de comer, solo toma agua, hoy sigue igual, vomito 2 veces como flema amarilla. Si la sacamos a pasear vuelve a estar con la energía de siempre. Hace 1 semana se murió una cachorrita que teníamos hace 3 meses con la cual jugaba mucho, nunca nos dijeron en el hospital el motivo exacto solo que era algo viral. Nose si puede estar triste por la ausencia de la misma o también tenga algo que se pueda haber contagiado. +770 2025-11-22 01:25:20.066289+00 2025-11-22 01:25:20.066301+00 f t \N 7899 2665 pack 6 visitas, inyeccion subcutanea +771 2025-11-22 01:25:20.072405+00 2025-11-22 01:25:20.072417+00 f t \N 7949 2678 Vomitos Continuos y Diarrea Líquida +772 2025-11-22 01:25:20.077846+00 2025-11-22 01:25:20.077855+00 f t \N 3688 2609 Control +773 2025-11-22 01:25:20.082083+00 2025-11-22 01:25:20.08209+00 f t \N 7852 2659 Electrocardiograma +774 2025-11-22 01:25:20.08737+00 2025-11-22 01:25:20.087382+00 f t \N 7892 2671 está con molestias. Desde anoche se muestra muy inquieto, se mueve de un lado a otro, busca esconderse debajo de los muebles y le cuesta encontrar una posición para descansar. Hoy después de comer también siguió igual, +775 2025-11-22 01:25:20.093099+00 2025-11-22 01:25:20.093111+00 f t \N 3550 2351 tratamiento artrosis +776 2025-11-22 01:25:20.098426+00 2025-11-22 01:25:20.098437+00 f t \N 5547 2641 eutanasia +777 2025-11-22 01:25:20.103438+00 2025-11-22 01:25:20.103447+00 f t \N 7869 2661 vac. anual y revision de una uña +778 2025-11-22 01:25:20.108289+00 2025-11-22 01:25:20.108298+00 f t \N 7847 2658 Vaacunacion anual +779 2025-11-22 01:25:20.110283+00 2025-11-22 01:25:20.110292+00 f t \N 7844 2658 Vaacunacion anual +780 2025-11-22 01:25:20.11251+00 2025-11-22 01:25:20.112518+00 f t \N 7846 2658 Vaacunacion anual +781 2025-11-22 01:25:20.114296+00 2025-11-22 01:25:20.114303+00 f t \N 7845 2658 Vaacunacion anual +782 2025-11-22 01:25:20.11861+00 2025-11-22 01:25:20.118618+00 f t \N 7820 2650 Se genero heridas y como le pican se rasca y empeora +783 2025-11-22 01:25:20.123632+00 2025-11-22 01:25:20.123643+00 f t \N 7837 2656 Vacunacion anual y consulta general +784 2025-11-22 01:25:20.128265+00 2025-11-22 01:25:20.128272+00 f t \N 7541 2664 eutanasia +785 2025-11-22 01:25:20.132438+00 2025-11-22 01:25:20.132446+00 f t \N 7861 2662 Tiene una tos rara. Como q quiere vomitar algo pero no . +786 2025-11-22 01:25:20.13655+00 2025-11-22 01:25:20.136557+00 f t \N 7587 2603 3 Vacunaciones anuales y 1 séxtuple +787 2025-11-22 01:25:20.140695+00 2025-11-22 01:25:20.140702+00 f t \N 7688 2638 perfil general completo sin orina +788 2025-11-22 01:25:20.144786+00 2025-11-22 01:25:20.144794+00 f t \N 7824 2655 Vacunacino anual y control general +789 2025-11-22 01:25:20.149206+00 2025-11-22 01:25:20.149214+00 f t \N 7688 2637 perfil general completo SIN orina +790 2025-11-22 01:25:20.153467+00 2025-11-22 01:25:20.153477+00 f t \N 7760 2645 Extraccion de sangre perfil 6+fosforo+t4+igf1+orina+prot+creat +791 2025-11-22 01:25:20.157699+00 2025-11-22 01:25:20.157708+00 f t \N 7507 2660 revision de estudios +792 2025-11-22 01:25:20.163608+00 2025-11-22 01:25:20.163618+00 f t \N 3031 2649 revision final +793 2025-11-22 01:25:20.168816+00 2025-11-22 01:25:20.168824+00 f t \N 7841 2657 Consulta general +794 2025-11-22 01:25:20.176308+00 2025-11-22 01:25:20.176319+00 f t \N 7540 2587 Consulta General +795 2025-11-22 01:25:20.181262+00 2025-11-22 01:25:20.181272+00 f t \N 5906 2654 +796 2025-11-22 01:25:20.185567+00 2025-11-22 01:25:20.185575+00 f t \N 928 2652 Extraccion de sangre, para perfil general sin orina +797 2025-11-22 01:25:20.18978+00 2025-11-22 01:25:20.189788+00 f t \N 7830 2653 Vomitos desde ayer +798 2025-11-22 01:25:20.194384+00 2025-11-22 01:25:20.194392+00 f t \N 7771 2646 +799 2025-11-22 01:25:20.198653+00 2025-11-22 01:25:20.198662+00 f t \N 7507 2612 perfil 7 +800 2025-11-22 01:25:20.202747+00 2025-11-22 01:25:20.202755+00 f t \N 7507 2611 perfil 7 + antirrabica para Gaia y Antirrabica para Pluton +801 2025-11-22 01:25:20.204447+00 2025-11-22 01:25:20.204452+00 f t \N 7626 2611 perfil 7 + antirrabica para Gaia y Antirrabica para Pluton +802 2025-11-22 01:25:20.208509+00 2025-11-22 01:25:20.208517+00 f t \N 6835 2624 aplicacion de clamoxyl +803 2025-11-22 01:25:20.21296+00 2025-11-22 01:25:20.212968+00 f t \N 6920 2581 Consulta cardiologica +804 2025-11-22 01:25:20.215217+00 2025-11-22 01:25:20.215226+00 f t \N 7504 2581 Consulta cardiologica +805 2025-11-22 01:25:20.219697+00 2025-11-22 01:25:20.219704+00 f t \N 7504 2585 Extracción de sangre para gato y perro (Citología de Burton) +806 2025-11-22 01:25:20.221496+00 2025-11-22 01:25:20.221503+00 f t \N 6920 2585 Extracción de sangre para gato y perro (Citología de Burton) +807 2025-11-22 01:25:20.225737+00 2025-11-22 01:25:20.225745+00 f t \N 7700 2639 ecografia abdominal por posible piometra +808 2025-11-22 01:25:20.230141+00 2025-11-22 01:25:20.23015+00 f t \N 7765 2644 consulta generala +809 2025-11-22 01:25:20.234813+00 2025-11-22 01:25:20.234823+00 f t \N 7724 2643 Vomita las croquetas +810 2025-11-22 01:25:20.240236+00 2025-11-22 01:25:20.240247+00 f t \N 7504 2584 Ecografía abdominal para gato y perro +811 2025-11-22 01:25:20.2424+00 2025-11-22 01:25:20.242409+00 f t \N 6920 2584 Ecografía abdominal para gato y perro +812 2025-11-22 01:25:20.247564+00 2025-11-22 01:25:20.247574+00 f t \N 7733 2631 Diarrea tuvo los días viernes por la noche y sábado. Vómito solo el viernes.\r\nLunes empezó a comer pollo hervido. Miércoles tuvo diarrea nuevamente. \r\nEstá muy débil la perra, sumada a su edad y a su tutor que tiene colocado en una de sus patas traseras. +813 2025-11-22 01:25:20.252744+00 2025-11-22 01:25:20.252754+00 f t \N 7763 2647 Tiene la nariz muy tapada y está respirando muy mal! También le tenemos que dar otra vacuna +814 2025-11-22 01:25:20.257022+00 2025-11-22 01:25:20.25703+00 f t \N 7599 2605 Vomita seguido, día por medio. Ya le cambié la comida y no se si tiene algún problema gastrointestinal. Come, toma agua y tiene su rutina normal pero no sube de peso nunca. Quisiera saber si está bien así. +815 2025-11-22 01:25:20.261681+00 2025-11-22 01:25:20.261692+00 f t \N 7753 2636 Servicio de eutanasia +816 2025-11-22 01:25:20.266771+00 2025-11-22 01:25:20.266782+00 f t \N 7324 2538 Consulta general y toma de presion +817 2025-11-22 01:25:20.271704+00 2025-11-22 01:25:20.271712+00 f t \N 7642 2614 +818 2025-11-22 01:25:20.275747+00 2025-11-22 01:25:20.275757+00 f t \N 7634 2617 Desde que es bebé Ramón tiene episodios que parecen de granuloma eosinofilico (los análisis de sangre no reflejan eso) y ahora está con el labio inflamado +819 2025-11-22 01:25:20.280144+00 2025-11-22 01:25:20.280152+00 f t \N 928 2620 extraccion de sonda + chequeo +820 2025-11-22 01:25:20.285361+00 2025-11-22 01:25:20.28537+00 f t \N 3104 2634 Le estuvo saliendo mucha lágrima en estos dos días que ya se convirtieron en lagañas blancas y tiene irritado el recorrido de la lágrima del lado izquierdo. Los ojos están bien por ahora pero tiene la piel alrededor de los ojos irritada. +821 2025-11-22 01:25:20.290113+00 2025-11-22 01:25:20.290124+00 f t \N 176 2635 muestra de secreciones oticas, cultivo y antibiograma +822 2025-11-22 01:25:20.29563+00 2025-11-22 01:25:20.295642+00 f t \N 7541 2632 chequeo +823 2025-11-22 01:25:20.301076+00 2025-11-22 01:25:20.301085+00 f t \N 176 2595 Otitis +824 2025-11-22 01:25:20.30498+00 2025-11-22 01:25:20.304987+00 f t \N 7541 2625 eco abdominal +825 2025-11-22 01:25:20.308826+00 2025-11-22 01:25:20.308834+00 f t \N 7688 2627 Consulta gral, come poco y toma poca agua +831 2025-11-22 01:25:20.334037+00 2025-11-22 01:25:20.334046+00 f t \N 7660 2621 Hara una semana y media encontre sangre en el arenero y hoy nuevamente encontre heces con sangre.\r\nTengo 3 gatas. Sospecho que es la mayor pero realmente no estoy seguro de cual es. Me gustaria analizar las heces para saber de que se trata y como solucionarlo. Gracias +832 2025-11-22 01:25:20.338866+00 2025-11-22 01:25:20.338875+00 f t \N 7565 2602 Ojos hinchados +833 2025-11-22 01:25:20.343491+00 2025-11-22 01:25:20.343499+00 f t \N 7614 2610 gatita tuvo crias anoche/madrugada, quiere saber que este todob bien +834 2025-11-22 01:25:20.347523+00 2025-11-22 01:25:20.347532+00 f t \N 3648 2608 control de estudios solicitados +835 2025-11-22 01:25:20.351884+00 2025-11-22 01:25:20.351892+00 f t \N 7557 2594 Silvido al respirar de hace unas semanas +836 2025-11-22 01:25:20.357035+00 2025-11-22 01:25:20.357043+00 f t \N 7695 2628 Consulta gral, se arrastra, no ve ni escucha +837 2025-11-22 01:25:20.361536+00 2025-11-22 01:25:20.361545+00 f t \N 7566 2626 perfil 7 para los dos gatitos +838 2025-11-22 01:25:20.365847+00 2025-11-22 01:25:20.365858+00 f t \N 1705 2500 Electro cardiograma y Presion arterial +839 2025-11-22 01:25:20.370306+00 2025-11-22 01:25:20.370315+00 f t \N 7566 2597 consulta general y extraccion para ambos gatos +840 2025-11-22 01:25:20.374585+00 2025-11-22 01:25:20.374592+00 f t \N 7541 2619 retiro de muestra de orina para cultivo y atb + citologia +841 2025-11-22 01:25:20.378834+00 2025-11-22 01:25:20.378845+00 f t \N 7566 2598 Consulta general y extraccion +842 2025-11-22 01:25:20.383491+00 2025-11-22 01:25:20.383499+00 f t \N 7541 2615 +843 2025-11-22 01:25:20.388353+00 2025-11-22 01:25:20.388362+00 f t \N 7643 2616 +844 2025-11-22 01:25:20.393053+00 2025-11-22 01:25:20.393066+00 f t \N 7643 2623 +845 2025-11-22 01:25:20.397465+00 2025-11-22 01:25:20.397473+00 f t \N 7605 2604 Un ojo le supura y se le forma una lagaña larga, líquida y amarilla. +846 2025-11-22 01:25:20.401902+00 2025-11-22 01:25:20.40191+00 f t \N 6512 2564 Es para vacunación anual (antirrábica y séxtuple) +847 2025-11-22 01:25:20.407714+00 2025-11-22 01:25:20.407726+00 f t \N 6782 2588 Radiografia +848 2025-11-22 01:25:20.415675+00 2025-11-22 01:25:20.415688+00 f t \N 2042 2577 Chequeo general y arcadas continuas +849 2025-11-22 01:25:20.421952+00 2025-11-22 01:25:20.421963+00 f t \N 7196 2556 Radriografia +850 2025-11-22 01:25:20.428171+00 2025-11-22 01:25:20.42818+00 f t \N 7552 2590 Ecograafaiaaa +851 2025-11-22 01:25:20.434199+00 2025-11-22 01:25:20.434208+00 f t \N 7529 2592 +852 2025-11-22 01:25:20.440344+00 2025-11-22 01:25:20.440357+00 f t \N 618 2582 Decaimiento y agitación +853 2025-11-22 01:25:20.445922+00 2025-11-22 01:25:20.445933+00 f t \N 7564 2600 Sextuple para ambos perros +854 2025-11-22 01:25:20.448151+00 2025-11-22 01:25:20.448159+00 f t \N 2230 2600 Sextuple para ambos perros +855 2025-11-22 01:25:20.452715+00 2025-11-22 01:25:20.452724+00 f t \N 7127 2593 Vacunacion anual +856 2025-11-22 01:25:20.457789+00 2025-11-22 01:25:20.457797+00 f t \N 7507 2583 Perdida de Colmillo +857 2025-11-22 01:25:20.46263+00 2025-11-22 01:25:20.462638+00 f t \N 7479 2579 Vomita los trocitos húmedos (optimun) apenas come lo vomita enteros. Dos días que pasa lo mismo.\r\nAdemás quisiera que al hacer la visita la desparaciten. +858 2025-11-22 01:25:20.467568+00 2025-11-22 01:25:20.467575+00 f t \N 335 2559 Revision de resultado +859 2025-11-22 01:25:20.471916+00 2025-11-22 01:25:20.471922+00 f t \N 928 2599 Control post estudios +860 2025-11-22 01:25:20.475981+00 2025-11-22 01:25:20.475989+00 f t \N 3336 2572 Otra vez la dermatitis. Se rasca mucho y tiene pelada la zona donde se rasca +861 2025-11-22 01:25:20.481973+00 2025-11-22 01:25:20.481981+00 f t \N 7499 2578 Chequeo para revisar pata trasera +862 2025-11-22 01:25:20.486879+00 2025-11-22 01:25:20.486887+00 f t \N 6907 2591 Aparante conjuntivitis y mal aliento +863 2025-11-22 01:25:20.491975+00 2025-11-22 01:25:20.491983+00 f t \N 7219 2516 vacunacino anual y desparasitacion int + ext gato +5k +864 2025-11-22 01:25:20.496801+00 2025-11-22 01:25:20.496812+00 f t \N 7583 2601 Costras en la oreja, irritación y comezón en la zona +865 2025-11-22 01:25:20.502149+00 2025-11-22 01:25:20.502158+00 f t \N 6127 2596 Consulta post estudios +866 2025-11-22 01:25:20.50426+00 2025-11-22 01:25:20.504267+00 f t \N 6126 2596 Consulta post estudios +867 2025-11-22 01:25:20.508639+00 2025-11-22 01:25:20.508646+00 f t \N 7485 2580 Defeca con sangre +868 2025-11-22 01:25:20.513452+00 2025-11-22 01:25:20.51346+00 f t \N 6193 2560 3ra dosis de sextuple +869 2025-11-22 01:25:20.517969+00 2025-11-22 01:25:20.517978+00 f t \N 7541 2589 No puede orinar , cuando está acostada se orina y creo que tiene inflamado el sector donde orina +870 2025-11-22 01:25:20.522615+00 2025-11-22 01:25:20.522626+00 f t \N 7529 2586 Hace 3 dias que no ingiere agua, ni alimento, apenas si le puedo mojar la boca. NO logra sostenerse sobre sus patas traseras, tiene los ojos hundidos . +871 2025-11-22 01:25:20.527923+00 2025-11-22 01:25:20.527934+00 f t \N 5547 2573 retiro de citologia +872 2025-11-22 01:25:20.532773+00 2025-11-22 01:25:20.532781+00 f t \N 7462 2576 Decaimiento, perdida de peso, heces blandas. Gato no sumiso, caracter fuerte. +873 2025-11-22 01:25:20.536988+00 2025-11-22 01:25:20.536997+00 f t \N 7416 2570 Es una gatita que encontré en la calle, está internada pero no tienen servicio de ecografía. Está en mal estados. Le hicimos análisis de sangre pero me recomendaron hacerle una eco +874 2025-11-22 01:25:20.541421+00 2025-11-22 01:25:20.541429+00 f t \N 7454 2575 Tiene lastimado en su cole, con sangrado, por pelea con otros gatos +875 2025-11-22 01:25:20.546325+00 2025-11-22 01:25:20.546335+00 f t \N 5560 2440 vac. anual +876 2025-11-22 01:25:20.550369+00 2025-11-22 01:25:20.55038+00 f t \N 7414 2568 Control post cx por reparacion de eventracion umbilical, y administracion de tribiotic +877 2025-11-22 01:25:20.554281+00 2025-11-22 01:25:20.55429+00 f t \N 7426 2571 Evaluar si esta para eutanasia, no puede costear los gastos veterinarios y darle calidad de vida. Perrita ciega, no camina, no tiene dientes y comenzo con diarrea +878 2025-11-22 01:25:20.558193+00 2025-11-22 01:25:20.558201+00 f t \N 7417 2569 clínica + extracción (evaluar que perfil hacer) tiene Adison toma lonikan, está con gastroenteritis +879 2025-11-22 01:25:20.562115+00 2025-11-22 01:25:20.562124+00 f t \N 928 2563 Orina Completa +880 2025-11-22 01:25:20.566828+00 2025-11-22 01:25:20.566839+00 f t \N 5547 2555 Sedacion para radiografia de boca +881 2025-11-22 01:25:20.572571+00 2025-11-22 01:25:20.572583+00 f t \N 5547 2554 Radiografia Boca bajo sedacion +882 2025-11-22 01:25:20.578238+00 2025-11-22 01:25:20.57825+00 f t \N 7258 2529 2da dosis triple felina +883 2025-11-22 01:25:20.58425+00 2025-11-22 01:25:20.584261+00 f t \N 308 2519 control precx +884 2025-11-22 01:25:20.59+00 2025-11-22 01:25:20.590011+00 f t \N 7379 2567 Ayer vomito y tuvo diarrea. Pasó mal la noche y pareciera tener mucho dolor de panza +885 2025-11-22 01:25:20.594944+00 2025-11-22 01:25:20.594952+00 f t \N 7389 2562 Ecografia abdominal +886 2025-11-22 01:25:20.598917+00 2025-11-22 01:25:20.598926+00 f t \N 2418 2547 consulta clinica +887 2025-11-22 01:25:20.602764+00 2025-11-22 01:25:20.602772+00 f t \N 328 2543 Vacunacino anual para los 3 +888 2025-11-22 01:25:20.606581+00 2025-11-22 01:25:20.606589+00 f t \N 329 2544 Vacunacion anual +889 2025-11-22 01:25:20.610646+00 2025-11-22 01:25:20.610654+00 f t \N 327 2545 Vacunacion anual +890 2025-11-22 01:25:20.614585+00 2025-11-22 01:25:20.614593+00 f t \N 557 2566 Vomitos e inapetencia +893 2025-11-22 01:25:20.625855+00 2025-11-22 01:25:20.625864+00 f t \N 7213 2514 control cardiologico +894 2025-11-22 01:25:20.630184+00 2025-11-22 01:25:20.630193+00 f t \N 7021 2558 Devolucion de resultados +895 2025-11-22 01:25:20.634936+00 2025-11-22 01:25:20.634947+00 f t \N 2872 2546 coproparasotologico +896 2025-11-22 01:25:20.640651+00 2025-11-22 01:25:20.640664+00 f t \N 6902 2532 perfil precx +897 2025-11-22 01:25:20.645262+00 2025-11-22 01:25:20.645271+00 f t \N 6902 2531 perfil precx +898 2025-11-22 01:25:20.649561+00 2025-11-22 01:25:20.649573+00 f t \N 308 2518 extraccion precx +899 2025-11-22 01:25:20.653807+00 2025-11-22 01:25:20.653815+00 f t \N 7284 2536 Vomitos, consulta general +900 2025-11-22 01:25:20.658061+00 2025-11-22 01:25:20.658073+00 f t \N 6754 2535 Extraccion para coagulograma +901 2025-11-22 01:25:20.662669+00 2025-11-22 01:25:20.662677+00 f t \N 5794 2552 Control post estudios +902 2025-11-22 01:25:20.666547+00 2025-11-22 01:25:20.666555+00 f t \N 7196 2561 Eco abdominal +903 2025-11-22 01:25:20.670338+00 2025-11-22 01:25:20.670346+00 f t \N 5794 2551 Control post estudios +904 2025-11-22 01:25:20.674294+00 2025-11-22 01:25:20.674302+00 f t \N 7327 2542 eco abd +905 2025-11-22 01:25:20.67821+00 2025-11-22 01:25:20.678218+00 f t \N 7341 2553 No tiene apetito desde ayer, vomita lo poco que come y a veces vomita con un tono amarillento +906 2025-11-22 01:25:20.68217+00 2025-11-22 01:25:20.682178+00 f t \N 7326 2541 eco abd +907 2025-11-22 01:25:20.686823+00 2025-11-22 01:25:20.686831+00 f t \N 7141 2492 triple felina y desparasitacion +908 2025-11-22 01:25:20.690798+00 2025-11-22 01:25:20.690806+00 f t \N 928 2539 estuvo sintiendose medio decaido porque comió unas flores (las vimos en la caca). Ahora le esta costando hacer pis. Hace gotitas, muchisimas veces al dia (esto viene de antes) +909 2025-11-22 01:25:20.696514+00 2025-11-22 01:25:20.696526+00 f t \N 7140 2491 2 vacunaciones treiples felinas y desparasitacion interna y externa +910 2025-11-22 01:25:20.701936+00 2025-11-22 01:25:20.701947+00 f t \N 7295 2540 la veterinaria le recomendo hacer una eco porque esta con muchos vomitos +911 2025-11-22 01:25:20.707045+00 2025-11-22 01:25:20.707057+00 f t \N 6902 2530 control precx +912 2025-11-22 01:25:20.71231+00 2025-11-22 01:25:20.712319+00 f t \N 7021 2499 Extraccdion de Perfil 7 +913 2025-11-22 01:25:20.717835+00 2025-11-22 01:25:20.717847+00 f t \N 7240 2521 Extraccion +914 2025-11-22 01:25:20.723237+00 2025-11-22 01:25:20.723248+00 f t \N 1705 2496 Ecografia abdominal +915 2025-11-22 01:25:20.728598+00 2025-11-22 01:25:20.72861+00 f t \N 7021 2497 Ecografia abdominal +916 2025-11-22 01:25:20.734081+00 2025-11-22 01:25:20.734093+00 f t \N 7041 2533 citologia +917 2025-11-22 01:25:20.739428+00 2025-11-22 01:25:20.739439+00 f t \N 7021 2498 Extraccion para perfil 7 +918 2025-11-22 01:25:20.744584+00 2025-11-22 01:25:20.744594+00 f t \N 6499 2523 Procesamiento de muestra +919 2025-11-22 01:25:20.749943+00 2025-11-22 01:25:20.749954+00 f t \N 6499 2522 Extraccion +920 2025-11-22 01:25:20.756015+00 2025-11-22 01:25:20.756027+00 f t \N 6499 2524 Procesamiento de muestra +921 2025-11-22 01:25:20.76188+00 2025-11-22 01:25:20.761889+00 f t \N 7308 2537 Chequeo general +922 2025-11-22 01:25:20.766993+00 2025-11-22 01:25:20.767004+00 f t \N 7279 2534 Dificultad para orinar +923 2025-11-22 01:25:20.772093+00 2025-11-22 01:25:20.772102+00 f t \N 7220 2517 vomitos desde ayer +924 2025-11-22 01:25:20.776681+00 2025-11-22 01:25:20.776688+00 f t \N 7232 2520 dolor en una pata, tiembla y se queda quiero llorando +925 2025-11-22 01:25:20.781393+00 2025-11-22 01:25:20.781402+00 f t \N 335 2526 retiro de muestra de orina +926 2025-11-22 01:25:20.785975+00 2025-11-22 01:25:20.785983+00 f t \N 5794 2511 Extraccion de sangre para P7 y Sodio +927 2025-11-22 01:25:20.790728+00 2025-11-22 01:25:20.79074+00 f t \N 5794 2455 Ecografia abdominal +928 2025-11-22 01:25:20.794955+00 2025-11-22 01:25:20.794962+00 f t \N 7129 2488 Bulto en el estomago +929 2025-11-22 01:25:20.799622+00 2025-11-22 01:25:20.799631+00 f t \N 7209 2513 vac. anual\r\nReceta de gabapentina +930 2025-11-22 01:25:20.803762+00 2025-11-22 01:25:20.803772+00 f t \N 5794 2510 +931 2025-11-22 01:25:20.808462+00 2025-11-22 01:25:20.808474+00 f t \N 5944 2525 Teleconsulta +932 2025-11-22 01:25:20.813541+00 2025-11-22 01:25:20.813552+00 f t \N 5547 2490 Consulta de control, sigue igual, se pica y se rasca +933 2025-11-22 01:25:20.817563+00 2025-11-22 01:25:20.817571+00 f t \N 5957 2493 Control post tratamiento +934 2025-11-22 01:25:20.822067+00 2025-11-22 01:25:20.822076+00 f t \N 7089 2483 +935 2025-11-22 01:25:20.826155+00 2025-11-22 01:25:20.826163+00 f t \N 5957 2494 Control post tratamiento +936 2025-11-22 01:25:20.830207+00 2025-11-22 01:25:20.830215+00 f t \N 7088 2482 1 gata: vacunacion antirrabica\r\n2 gata: chequeo general \r\ndesparacitacion interna y externa para las dos +937 2025-11-22 01:25:20.834326+00 2025-11-22 01:25:20.834333+00 f t \N 7163 2501 vac. anual +938 2025-11-22 01:25:20.83813+00 2025-11-22 01:25:20.838138+00 f t \N 7211 2512 Le pica la oreja, rasca y se lastima +939 2025-11-22 01:25:20.842175+00 2025-11-22 01:25:20.842182+00 f t \N 7148 2489 Consulta General, un poco decaido +940 2025-11-22 01:25:20.846054+00 2025-11-22 01:25:20.846061+00 f t \N 6670 2503 control de estudios +941 2025-11-22 01:25:20.850018+00 2025-11-22 01:25:20.850026+00 f t \N 7203 2515 No se puede para, Problemas previos de columna +942 2025-11-22 01:25:20.853921+00 2025-11-22 01:25:20.853928+00 f t \N 6915 2447 Chequeo general por que come poco +943 2025-11-22 01:25:20.858458+00 2025-11-22 01:25:20.858469+00 f t \N 6313 2471 Consulta cardiologica +944 2025-11-22 01:25:20.86264+00 2025-11-22 01:25:20.862648+00 f t \N 7193 2509 Está vomitando +945 2025-11-22 01:25:20.866395+00 2025-11-22 01:25:20.866401+00 f t \N 5396 2343 fluidoterapia +946 2025-11-22 01:25:20.870588+00 2025-11-22 01:25:20.870595+00 f t \N 7196 2508 Está decaído. No quiere levantarse y en él es nada normal..Es Golden. Y siempre inquieto +947 2025-11-22 01:25:20.874397+00 2025-11-22 01:25:20.874404+00 f t \N 7177 2507 se quiso subir al sillon y se golpeo, esta con mucho dolor +948 2025-11-22 01:25:20.878521+00 2025-11-22 01:25:20.878539+00 f t \N 6955 2480 vac. anual +949 2025-11-22 01:25:20.882427+00 2025-11-22 01:25:20.882434+00 f t \N 335 2477 perfil precx +950 2025-11-22 01:25:20.88614+00 2025-11-22 01:25:20.886146+00 f t \N 7041 2505 vac. antirrabica y clinica +951 2025-11-22 01:25:20.890157+00 2025-11-22 01:25:20.890163+00 f t \N 6958 2467 Vacunación Antirrábica +952 2025-11-22 01:25:20.893896+00 2025-11-22 01:25:20.893904+00 f t \N 7038 2504 vac. antirrabica y clinica +953 2025-11-22 01:25:20.897576+00 2025-11-22 01:25:20.897583+00 f t \N 7021 2495 Consulta por que esta comiendo poco desde ayer +954 2025-11-22 01:25:20.901344+00 2025-11-22 01:25:20.901352+00 f t \N 6907 2476 eco abd +955 2025-11-22 01:25:20.905162+00 2025-11-22 01:25:20.905169+00 f t \N 7126 2485 Ecografía Abdominal +956 2025-11-22 01:25:20.909046+00 2025-11-22 01:25:20.909053+00 f t \N 6462 2365 Control por pequeño soplo. +957 2025-11-22 01:25:20.913132+00 2025-11-22 01:25:20.91314+00 f t \N 5396 2342 fluidoterapia +958 2025-11-22 01:25:20.917122+00 2025-11-22 01:25:20.91713+00 f t \N 7127 2486 Diarrea continuos desde hace 4 días +959 2025-11-22 01:25:20.921094+00 2025-11-22 01:25:20.921101+00 f t \N 7128 2487 Ecografía Abdominal +960 2025-11-22 01:25:20.925086+00 2025-11-22 01:25:20.925093+00 f t \N 5396 2341 fluidoterapia +1026 2025-11-22 01:25:21.240403+00 2025-11-22 01:25:21.24041+00 f t \N 6843 2439 no come y no se quiere mover de la cama +961 2025-11-22 01:25:20.929086+00 2025-11-22 01:25:20.929094+00 f t \N 7067 2481 Tiene el ojo completamente cerrado ,con secreción . No sé queja directamente,pero hace 14 horas que está asi +962 2025-11-22 01:25:20.933331+00 2025-11-22 01:25:20.933341+00 f t \N 6717 2411 Vacunación Quíntuple y Desparacitación interna y externa +963 2025-11-22 01:25:20.937674+00 2025-11-22 01:25:20.937681+00 f t \N 7061 2479 Decaimiento de 48 hs de evolución. Disminución de la ingesta de líquidos y comida +964 2025-11-22 01:25:20.9415+00 2025-11-22 01:25:20.941507+00 f t \N 5396 2340 fluidoterapia +965 2025-11-22 01:25:20.94541+00 2025-11-22 01:25:20.945418+00 f t \N 6823 2473 Consulta post estudios +966 2025-11-22 01:25:20.949222+00 2025-11-22 01:25:20.949229+00 f t \N 6955 2456 Consulta general +967 2025-11-22 01:25:20.953054+00 2025-11-22 01:25:20.953062+00 f t \N 6678 2437 extraccion para perfil basico, + pcr de vif, vilef y mycoplasma, t4 libre, tsh y colesterol +968 2025-11-22 01:25:20.956887+00 2025-11-22 01:25:20.956894+00 f t \N 6678 2436 extraccion para perfil basico, + pcr de vif, vilef y mycoplasma, t4 libre, tsh y colesterol + vac. anual +969 2025-11-22 01:25:20.96102+00 2025-11-22 01:25:20.961027+00 f t \N 6967 2461 Vacuncion anual +970 2025-11-22 01:25:20.965448+00 2025-11-22 01:25:20.965455+00 f t \N 6966 2462 Triple felina +971 2025-11-22 01:25:20.969766+00 2025-11-22 01:25:20.969773+00 f t \N 4925 2465 Ecografía Abdominal +972 2025-11-22 01:25:20.973604+00 2025-11-22 01:25:20.973611+00 f t \N 4926 2484 Ecografía Abdominal +973 2025-11-22 01:25:20.9782+00 2025-11-22 01:25:20.978211+00 f t \N 6985 2468 Vacunación anual +974 2025-11-22 01:25:20.983214+00 2025-11-22 01:25:20.983225+00 f t \N 128 2074 control clinico + drenaje glandulas +975 2025-11-22 01:25:20.988914+00 2025-11-22 01:25:20.988926+00 f t \N 7033 2478 eco abdominal de urgencia por diarrea hace 2 dias +976 2025-11-22 01:25:20.994685+00 2025-11-22 01:25:20.994695+00 f t \N 7021 2475 +977 2025-11-22 01:25:21.000941+00 2025-11-22 01:25:21.000953+00 f t \N 7021 2474 estreñimiento ambos gatitos igual +978 2025-11-22 01:25:21.006826+00 2025-11-22 01:25:21.006838+00 f t \N 6761 2422 Ecografia abdominal por parto +979 2025-11-22 01:25:21.012765+00 2025-11-22 01:25:21.012778+00 f t \N 6911 2454 gastroenteritis +980 2025-11-22 01:25:21.018583+00 2025-11-22 01:25:21.018596+00 f t \N 6921 2449 Consulta general +981 2025-11-22 01:25:21.024336+00 2025-11-22 01:25:21.024345+00 f t \N 6919 2448 Consulta general para ambos gatos +982 2025-11-22 01:25:21.030374+00 2025-11-22 01:25:21.030384+00 f t \N 10123 3157 Dolor al orinar +983 2025-11-22 01:25:21.035408+00 2025-11-22 01:25:21.035419+00 f t \N 3609 2472 Diarrea +984 2025-11-22 01:25:21.039677+00 2025-11-22 01:25:21.039685+00 f t \N 1075 2469 Tiene la parte de la boca hinchada y con feo olor +985 2025-11-22 01:25:21.043901+00 2025-11-22 01:25:21.043912+00 f t \N 5396 2339 Fluidoterapia +986 2025-11-22 01:25:21.049127+00 2025-11-22 01:25:21.049138+00 f t \N 6991 2470 Ojo lastimado, parece que otro gato lo arañó +987 2025-11-22 01:25:21.054232+00 2025-11-22 01:25:21.054244+00 f t \N 4220 2464 Control post analisis +988 2025-11-22 01:25:21.059582+00 2025-11-22 01:25:21.059593+00 f t \N 5341 2425 Coproparasitologico +989 2025-11-22 01:25:21.065708+00 2025-11-22 01:25:21.06572+00 f t \N 6970 2463 Ecografia abdominal +990 2025-11-22 01:25:21.074568+00 2025-11-22 01:25:21.074579+00 f t \N 6924 2452 Control por vomitos +991 2025-11-22 01:25:21.079232+00 2025-11-22 01:25:21.07924+00 f t \N 5199 2071 Endicronología +992 2025-11-22 01:25:21.084186+00 2025-11-22 01:25:21.084197+00 f t \N 128 2428 Control clinico, drenaje de glandulas, Limpieza de oidos y Corte de garras +993 2025-11-22 01:25:21.088669+00 2025-11-22 01:25:21.088679+00 f t \N 6959 2458 Conuslta generaal y corte de unas, una una enroscada +994 2025-11-22 01:25:21.092899+00 2025-11-22 01:25:21.092909+00 f t \N 6835 2457 Control post estucios +995 2025-11-22 01:25:21.097538+00 2025-11-22 01:25:21.097545+00 f t \N 5396 2338 fluidoterapia +996 2025-11-22 01:25:21.102245+00 2025-11-22 01:25:21.102252+00 f t \N 6920 2451 Teleconsulta por Perro que se eca y se para, come pasto +997 2025-11-22 01:25:21.107539+00 2025-11-22 01:25:21.107548+00 f t \N 6920 2450 Teleconsulta por Perro que se eca y se para, come pasto +998 2025-11-22 01:25:21.112485+00 2025-11-22 01:25:21.112494+00 f t \N 6682 2453 Revisio por recaidas +999 2025-11-22 01:25:21.117308+00 2025-11-22 01:25:21.117316+00 f t \N 6895 2445 Llora y lo tocamos y llora más, creen que no se golpeo ni se cayo, ya le paso una vez y se le paso solo +1000 2025-11-22 01:25:21.122618+00 2025-11-22 01:25:21.122628+00 f t \N 6902 2446 Consulta general +1001 2025-11-22 01:25:21.128052+00 2025-11-22 01:25:21.128063+00 f t \N 3506 2426 Segunda Dosis de la Triple Felina + Corte de Garras +1002 2025-11-22 01:25:21.132908+00 2025-11-22 01:25:21.132916+00 f t \N 4220 2459 mycoplasma +1003 2025-11-22 01:25:21.137109+00 2025-11-22 01:25:21.137117+00 f t \N 4186 2460 mycoplasma +1004 2025-11-22 01:25:21.141872+00 2025-11-22 01:25:21.14188+00 f t \N 6823 2444 2 citologias +1005 2025-11-22 01:25:21.146235+00 2025-11-22 01:25:21.146246+00 f t \N 5610 2443 revision de estudios +1006 2025-11-22 01:25:21.150609+00 2025-11-22 01:25:21.150616+00 f t \N 6748 2416 Vacunacino aual (tiple y antirrabica) +1007 2025-11-22 01:25:21.154778+00 2025-11-22 01:25:21.154786+00 f t \N 4220 2420 Extraccion de muestra para Frotis de sangre periférica para hemoparasitos +1008 2025-11-22 01:25:21.1593+00 2025-11-22 01:25:21.159307+00 f t \N 4186 2421 Extraccion de muestra para Frotis de sangre periférica para hemoparasitos +1009 2025-11-22 01:25:21.164008+00 2025-11-22 01:25:21.164018+00 f t \N 6884 2442 tiene 5cm de intestino afuera, lo operan mañana pero hoy no quiso comer y debe aplicarle 2 inyectables +1010 2025-11-22 01:25:21.168812+00 2025-11-22 01:25:21.16882+00 f t \N 6835 2431 PRECX PARA CIRUGIa +1011 2025-11-22 01:25:21.173493+00 2025-11-22 01:25:21.173501+00 f t \N 5396 2337 fluidoterapia +1012 2025-11-22 01:25:21.177858+00 2025-11-22 01:25:21.177872+00 f t \N 6745 2413 Vacunas anuales +1013 2025-11-22 01:25:21.18225+00 2025-11-22 01:25:21.182261+00 f t \N 6745 2414 Vacunacino anual +1014 2025-11-22 01:25:21.186633+00 2025-11-22 01:25:21.18664+00 f t \N 6397 2441 resultado Urocultivo +1015 2025-11-22 01:25:21.190561+00 2025-11-22 01:25:21.190569+00 f t \N 6835 2434 perfil precx +1016 2025-11-22 01:25:21.195652+00 2025-11-22 01:25:21.19566+00 f t \N 6835 2433 perfil prequirurgicos para cirugia +1017 2025-11-22 01:25:21.200203+00 2025-11-22 01:25:21.200211+00 f t \N 6823 2432 Dolor intenso, suponemos qué proviene de una bola de supuestamente benigna en la axila derecha, pero se le ha expandido a la pata y cuello. +1018 2025-11-22 01:25:21.20493+00 2025-11-22 01:25:21.204939+00 f t \N 6052 2381 triple felina +1019 2025-11-22 01:25:21.209302+00 2025-11-22 01:25:21.20931+00 f t \N 6433 2356 +1020 2025-11-22 01:25:21.213811+00 2025-11-22 01:25:21.213819+00 f t \N 6815 2430 Mi gato no esta comiendo y vomita +1021 2025-11-22 01:25:21.218104+00 2025-11-22 01:25:21.218112+00 f t \N 1115 2328 Vacuna anual (triple y antirrabica) +1022 2025-11-22 01:25:21.222807+00 2025-11-22 01:25:21.222818+00 f t \N 6682 2427 Chequeo +1023 2025-11-22 01:25:21.227675+00 2025-11-22 01:25:21.227684+00 f t \N 6712 2435 Control de resultado de estudios +1024 2025-11-22 01:25:21.232289+00 2025-11-22 01:25:21.232296+00 f t \N 335 2390 Control a una verruga que esta creciendo de tamano +1025 2025-11-22 01:25:21.236439+00 2025-11-22 01:25:21.236447+00 f t \N 6842 2438 Sangrado por debajo de la cola. Le cuesta levaantarse +1027 2025-11-22 01:25:21.244479+00 2025-11-22 01:25:21.244487+00 f t \N 5396 2336 fluidoterapia +1028 2025-11-22 01:25:21.248437+00 2025-11-22 01:25:21.248445+00 f t \N 6648 2400 estudios de la semana pasada de Sangre y orina\r\nVomitos recurrentes pero con apetto, fue atendida en vete el sábado pasado con suero y retomó aliento sin problemas ..pero hoy volvió a vomitar..sin apetito.\r\nIMPORTANTE: LA t4 subió a 15..había bajado a 5 +1029 2025-11-22 01:25:21.252577+00 2025-11-22 01:25:21.252585+00 f t \N 6782 2429 Algo le duele al moverse y se queja, camina muy lento, no se puede subir al sillon ni a la cama. Estuvo todo el dia en su camita del piso y cuando se mueve hace un leve llantito. Daría la impresión que le duele la columna o las patitas de atras +1030 2025-11-22 01:25:21.256538+00 2025-11-22 01:25:21.256546+00 f t \N 6737 2415 Vacunacion anual (Antirrabica y triple felina) +1031 2025-11-22 01:25:21.260345+00 2025-11-22 01:25:21.260353+00 f t \N 6752 2424 Diarrea y vómitos +1032 2025-11-22 01:25:21.264378+00 2025-11-22 01:25:21.264385+00 f t \N 6754 2419 3 extracciones, 3 traslados para 1 hemograma completo, 2 prequirúrgico completo +1033 2025-11-22 01:25:21.268452+00 2025-11-22 01:25:21.268461+00 f t \N 5756 2418 3 extracciones, 3 traslados para 1 hemograma completo, 2 prequirúrgico completo +1034 2025-11-22 01:25:21.272541+00 2025-11-22 01:25:21.272548+00 f t \N 6755 2417 3 extracciones, 3 traslados para 1 hemograma completo, 2 prequirúrgico completo +1035 2025-11-22 01:25:21.276533+00 2025-11-22 01:25:21.276541+00 f t \N 6718 2412 Lagrimeo del ojo izquierdo +1036 2025-11-22 01:25:21.28041+00 2025-11-22 01:25:21.280419+00 f t \N 6682 2409 Revisión del tratamiento +1037 2025-11-22 01:25:21.28501+00 2025-11-22 01:25:21.285022+00 f t \N 6127 2423 Control post estudios +1038 2025-11-22 01:25:21.289224+00 2025-11-22 01:25:21.289231+00 f t \N 6670 2402 Interconsulta porque comenzo con asma felino y continuo todo el invierno, antes le agarraba una semana y con la medicacion se le iba +1039 2025-11-22 01:25:21.293577+00 2025-11-22 01:25:21.293586+00 f t \N 5396 2335 fluidoterapia +1040 2025-11-22 01:25:21.297873+00 2025-11-22 01:25:21.297884+00 f t \N 4145 2388 3 muestras de extraccion post dexa +1041 2025-11-22 01:25:21.302844+00 2025-11-22 01:25:21.302853+00 f t \N 4145 2384 3era extraccion post dexa +1042 2025-11-22 01:25:21.307276+00 2025-11-22 01:25:21.307287+00 f t \N 6705 2407 https://meet.google.com/urc-pynh-qhe\r\nTiene mocos y no quiere comer +1043 2025-11-22 01:25:21.311775+00 2025-11-22 01:25:21.311784+00 f t \N 6712 2410 Golpe en la Pata +1044 2025-11-22 01:25:21.316282+00 2025-11-22 01:25:21.316292+00 f t \N 6168 2286 Colocacion de microchip +1045 2025-11-22 01:25:21.32166+00 2025-11-22 01:25:21.321673+00 f t \N 4145 2383 2da extrac post dexa +1046 2025-11-22 01:25:21.327029+00 2025-11-22 01:25:21.32704+00 f t \N 6696 2408 Tos continua desde hace 4 días +1047 2025-11-22 01:25:21.332505+00 2025-11-22 01:25:21.332519+00 f t \N 6682 2406 Hace 1 semanas que mi gato no está bien, le cuesta respirar, come muy poco y no toma agua. Está decaído y solo duerme. Nos dieron un remedio llamado enroxina para que tome pero es imposible dárselo. No toma la medicacion y cada vez esta peor +1048 2025-11-22 01:25:21.337417+00 2025-11-22 01:25:21.337425+00 f t \N 5396 2334 Fluidoterapia +1049 2025-11-22 01:25:21.342096+00 2025-11-22 01:25:21.342107+00 f t \N 6562 2398 Vacunas anuales para los dos perritos +1050 2025-11-22 01:25:21.346866+00 2025-11-22 01:25:21.346879+00 f t \N 6561 2397 Vacunacion anual para los dos perritos +1051 2025-11-22 01:25:21.352096+00 2025-11-22 01:25:21.352104+00 f t \N 4145 2382 1er extraccion post dexa +1052 2025-11-22 01:25:21.357114+00 2025-11-22 01:25:21.357121+00 f t \N 6672 2405 Thor tuvo cistitis mejoró en las otras oportunidades pero ahora con los mismos medicamentos no mejora. Lo llevé al veterinario y me recomendó que le haga una ecografía para ver si tiene cálculos. +1053 2025-11-22 01:25:21.362034+00 2025-11-22 01:25:21.362041+00 f t \N 3484 2188 Vacunacion anual (Antirrabica y sextuple) +1054 2025-11-22 01:25:21.366975+00 2025-11-22 01:25:21.366984+00 f t \N 2661 2189 Vacunacion anual (Antirrabica y sextuple) +1055 2025-11-22 01:25:21.371637+00 2025-11-22 01:25:21.371645+00 f t \N 6662 2404 diarrea con moco transparente y un coágulo de sangre como a las 4am, luego continuó alterado y a la hora otra vez pero solo con moco. A este momento no tuvo otra diarrea pero está decaído y escondido +1056 2025-11-22 01:25:21.37538+00 2025-11-22 01:25:21.375387+00 f t \N 467 2401 vomitos esporadicos una vez por semana (en agosto la visitaron los vetes y tambien el mes pasado se le realizo eco abdominal) +1057 2025-11-22 01:25:21.379444+00 2025-11-22 01:25:21.379451+00 f t \N 6666 2403 Sufrió ataques y ahora no se levanta del piso y no come +1058 2025-11-22 01:25:21.383639+00 2025-11-22 01:25:21.383646+00 f t \N 4804 2187 Emisión del certificado +1059 2025-11-22 01:25:21.387688+00 2025-11-22 01:25:21.387695+00 f t \N 4975 2021 vacunación anua +1060 2025-11-22 01:25:21.391553+00 2025-11-22 01:25:21.391562+00 f t \N 6447 2363 Se rasca y se ha hecho pelones. Desparasitacion +1061 2025-11-22 01:25:21.395637+00 2025-11-22 01:25:21.395644+00 f t \N 6009 2396 Consulta de control, sigue con mocos y ya termino el medicamento +1062 2025-11-22 01:25:21.399242+00 2025-11-22 01:25:21.399249+00 f t \N 6492 2389 Radiografia +1063 2025-11-22 01:25:21.403527+00 2025-11-22 01:25:21.403536+00 f t \N 5396 2333 Fluidoterapia +1064 2025-11-22 01:25:21.407961+00 2025-11-22 01:25:21.40797+00 f t \N 5835 2378 muestra de sangre para perfil completo l y coagulograma +1065 2025-11-22 01:25:21.412436+00 2025-11-22 01:25:21.412444+00 f t \N 4007 2325 Radiografia +1066 2025-11-22 01:25:21.41714+00 2025-11-22 01:25:21.417162+00 f t \N 4007 2326 Radiografia +1067 2025-11-22 01:25:21.421572+00 2025-11-22 01:25:21.42158+00 f t \N 5835 2377 extraccion de sangre para perfil completo y coagulograma +1068 2025-11-22 01:25:21.425384+00 2025-11-22 01:25:21.425393+00 f t \N 4511 1923 extraccion para precx +1069 2025-11-22 01:25:21.429697+00 2025-11-22 01:25:21.429704+00 f t \N 6127 2298 Rx x2 +1070 2025-11-22 01:25:21.4341+00 2025-11-22 01:25:21.43411+00 f t \N 6587 2386 Diarrea +1071 2025-11-22 01:25:21.438023+00 2025-11-22 01:25:21.438031+00 f t \N 6589 2385 Extraccion de puntos +1072 2025-11-22 01:25:21.441868+00 2025-11-22 01:25:21.441876+00 f t \N 6587 2387 Diarrea +1073 2025-11-22 01:25:21.445969+00 2025-11-22 01:25:21.445976+00 f t \N 6633 2394 Vacunacion, y desparasitacion +1074 2025-11-22 01:25:21.449916+00 2025-11-22 01:25:21.449923+00 f t \N 5903 2393 Consulta por resultado de analisis +1075 2025-11-22 01:25:21.454052+00 2025-11-22 01:25:21.454058+00 f t \N 6643 2399 eutanasia +1076 2025-11-22 01:25:21.457918+00 2025-11-22 01:25:21.457924+00 f t \N 6127 2297 Perfil 7 + orina +1077 2025-11-22 01:25:21.461818+00 2025-11-22 01:25:21.461824+00 f t \N 6127 2296 Extraccion +1078 2025-11-22 01:25:21.465795+00 2025-11-22 01:25:21.465801+00 f t \N 6630 2395 Diarrea +1079 2025-11-22 01:25:21.46987+00 2025-11-22 01:25:21.469877+00 f t \N 5610 2380 copro + traslado +1080 2025-11-22 01:25:21.473971+00 2025-11-22 01:25:21.473978+00 f t \N 5396 2332 +1081 2025-11-22 01:25:21.477804+00 2025-11-22 01:25:21.477815+00 f t \N 6623 2392 Diarrea +1082 2025-11-22 01:25:21.48174+00 2025-11-22 01:25:21.481748+00 f t \N 6618 2391 No sé puede levantar y llora, diagnostico previo de problemas de cadera +1083 2025-11-22 01:25:21.485842+00 2025-11-22 01:25:21.485849+00 f t \N 3804 1782 Consulta cardiológica +1084 2025-11-22 01:25:21.490107+00 2025-11-22 01:25:21.490114+00 f t \N 3803 1781 Consulta cardiologica +1085 2025-11-22 01:25:21.494242+00 2025-11-22 01:25:21.494251+00 f t \N 6512 2375 diarrea +1086 2025-11-22 01:25:21.498435+00 2025-11-22 01:25:21.498442+00 f t \N 1930 2376 Consulta por tos Felina +1087 2025-11-22 01:25:21.502484+00 2025-11-22 01:25:21.502494+00 f t \N 6453 2364 Diarrea a repeticion +1088 2025-11-22 01:25:21.50807+00 2025-11-22 01:25:21.508078+00 f t \N 5835 2320 Ecografia abdominal +1089 2025-11-22 01:25:21.513182+00 2025-11-22 01:25:21.51319+00 f t \N 5835 2371 Control Cardiologico +1090 2025-11-22 01:25:21.517471+00 2025-11-22 01:25:21.517479+00 f t \N 6499 2368 Radiografia +1091 2025-11-22 01:25:21.52205+00 2025-11-22 01:25:21.522057+00 f t \N 5396 2331 +1092 2025-11-22 01:25:21.526685+00 2025-11-22 01:25:21.526693+00 f t \N 6503 2370 Muestra para IGF1, profesterona cuantitatica, fructosamina, sodio, potasio, urea, creatina, CPK +1093 2025-11-22 01:25:21.53088+00 2025-11-22 01:25:21.530887+00 f t \N 4145 2324 Cortisol post dexa +1094 2025-11-22 01:25:21.534957+00 2025-11-22 01:25:21.534967+00 f t \N 6503 2369 Extraccion para IGF1, profesterona cuantitatica, fructosamina, sodio, potasio, urea, creatina, CPK +1095 2025-11-22 01:25:21.539552+00 2025-11-22 01:25:21.539561+00 f t \N 6434 2372 eco abdominal +1096 2025-11-22 01:25:21.543756+00 2025-11-22 01:25:21.543762+00 f t \N 6434 2373 eco abdominal +1097 2025-11-22 01:25:21.547865+00 2025-11-22 01:25:21.547871+00 f t \N 473 2379 vomitos y diarrea +1098 2025-11-22 01:25:21.55192+00 2025-11-22 01:25:21.551932+00 f t \N 6448 2374 Vómitos y falta de apetito +1099 2025-11-22 01:25:21.555887+00 2025-11-22 01:25:21.555894+00 f t \N 6431 2352 Se rasca las patas, abajo de la trompa. +1100 2025-11-22 01:25:21.559822+00 2025-11-22 01:25:21.559829+00 f t \N 5056 2036 triple felina +1101 2025-11-22 01:25:21.563668+00 2025-11-22 01:25:21.563674+00 f t \N 4145 2323 3ra extracciones, cortisol post dexa +1102 2025-11-22 01:25:21.567368+00 2025-11-22 01:25:21.567377+00 f t \N 4266 2366 bulto por posible golpe +1103 2025-11-22 01:25:21.570865+00 2025-11-22 01:25:21.570874+00 f t \N 6380 2346 Tiene una protuberancia abajo de la cola y el ano +1104 2025-11-22 01:25:21.574824+00 2025-11-22 01:25:21.574831+00 f t \N 6363 2344 Control Cardiologico con Ecocardiograma +1105 2025-11-22 01:25:21.578597+00 2025-11-22 01:25:21.578604+00 f t \N 6006 2350 +1106 2025-11-22 01:25:21.582168+00 2025-11-22 01:25:21.582175+00 f t \N 4145 2322 2da extracciones, cortison post dexa +1107 2025-11-22 01:25:21.58601+00 2025-11-22 01:25:21.586016+00 f t \N 6492 2367 Sangrado de nariz, no se levanta de la cama, tiene el cuerpo duro. Tiene 11 años +1108 2025-11-22 01:25:21.590068+00 2025-11-22 01:25:21.590075+00 f t \N 5396 2330 +1109 2025-11-22 01:25:21.593942+00 2025-11-22 01:25:21.593948+00 f t \N 6442 2362 Extraccion para perfil 7 +1110 2025-11-22 01:25:21.597566+00 2025-11-22 01:25:21.597572+00 f t \N 4145 2321 3 extracciones, cortisol post dexa +1111 2025-11-22 01:25:21.601434+00 2025-11-22 01:25:21.60144+00 f t \N 6440 2357 +1112 2025-11-22 01:25:21.605435+00 2025-11-22 01:25:21.605442+00 f t \N 6440 2358 vomitos recurrentes. Se solicito receta de gabapentina +1113 2025-11-22 01:25:21.609198+00 2025-11-22 01:25:21.609205+00 f t \N 6434 2361 Diarrea de hace dos dias +1114 2025-11-22 01:25:21.613009+00 2025-11-22 01:25:21.613016+00 f t \N 6434 2360 Mi perro tiene diarrea desde hace dos días, sospechamos que pudo haber tragado un hueso. +1115 2025-11-22 01:25:21.61688+00 2025-11-22 01:25:21.616888+00 f t \N 6434 2359 Mi perro tiene diarrea desde hace dos días, sospechamos que pudo haber tragado un hueso. +1116 2025-11-22 01:25:21.620953+00 2025-11-22 01:25:21.620961+00 f t \N 5972 2239 +1117 2025-11-22 01:25:21.625041+00 2025-11-22 01:25:21.625049+00 f t \N 6395 2355 Mi gata tiene una herida que no se le cicatriza le aplicamos desinfectantes que nos dijeron otros veterinarios pero al ser grande tampoco se la puede trasladar porque es arisca. Y se rasca entonces nunca se le cura +1118 2025-11-22 01:25:21.629314+00 2025-11-22 01:25:21.629322+00 f t \N 5994 2305 esta ciega y tiene un problema en la coluna, Roma medicamento diariamente. La llevava en una clínica y además de no me gustar el atendimento ella si estresa muchísimo. Entonces necesito hacer el acompañamiento de Bianca y sabe como está su estado de salud +1119 2025-11-22 01:25:21.633448+00 2025-11-22 01:25:21.633455+00 f t \N 6377 2327 Extraccion para perfil 7 +1120 2025-11-22 01:25:21.637859+00 2025-11-22 01:25:21.637867+00 f t \N 5199 2349 extraccion de sangre perfil tiroideo + relacion AOC +1121 2025-11-22 01:25:21.641881+00 2025-11-22 01:25:21.641888+00 f t \N 5199 2251 extraccion +1122 2025-11-22 01:25:21.645713+00 2025-11-22 01:25:21.645721+00 f t \N 5396 2329 Fluidoterapia +1123 2025-11-22 01:25:21.650689+00 2025-11-22 01:25:21.650699+00 f t \N 6397 2348 Urocultivo\r\nIdentificación\r\nRecuento de colonias\r\nAntibiograma \r\nHemograma\r\nGlucemia\r\nHepatograma\r\nUrea\r\nCreatinina +1124 2025-11-22 01:25:21.655983+00 2025-11-22 01:25:21.655995+00 f t \N 2872 2354 coproparasitologico +1125 2025-11-22 01:25:21.660951+00 2025-11-22 01:25:21.660961+00 f t \N 2872 2353 coproparasitologico +1126 2025-11-22 01:25:21.667255+00 2025-11-22 01:25:21.667267+00 f t \N 6259 2306 vac. anual +1127 2025-11-22 01:25:21.672552+00 2025-11-22 01:25:21.672563+00 f t \N 6052 2269 Consulta general, gatito rescatado +1128 2025-11-22 01:25:21.677775+00 2025-11-22 01:25:21.677786+00 f t \N 5802 2199 Consulta general +1129 2025-11-22 01:25:21.682901+00 2025-11-22 01:25:21.682912+00 f t \N 6248 2307 Alergia en la piel, bulto en axila +1130 2025-11-22 01:25:21.688811+00 2025-11-22 01:25:21.688822+00 f t \N 6397 2345 Extracción Rapela +1131 2025-11-22 01:25:21.693997+00 2025-11-22 01:25:21.694008+00 f t \N 6357 2318 Coinsulta cardiologica +1132 2025-11-22 01:25:21.699002+00 2025-11-22 01:25:21.699012+00 f t \N 6006 2271 Control +1133 2025-11-22 01:25:21.704249+00 2025-11-22 01:25:21.70426+00 f t \N 3839 2268 Gata de 1 y de 4 años, la de 4 tiene una personalidad muy ansiosa, le cuesta adaptarse a todo, la de 1 tiene mucha energia, no los dejan dormir. Y esta embarazada asi que quieren hacer la introduccion con el bebe. +1134 2025-11-22 01:25:21.709299+00 2025-11-22 01:25:21.709309+00 f t \N 6400 2347 Ecografía Abdominal +1135 2025-11-22 01:25:21.714186+00 2025-11-22 01:25:21.714198+00 f t \N 5744 2182 Vacunacion triple felina + desparasitacion int y ext +1136 2025-11-22 01:25:21.719085+00 2025-11-22 01:25:21.719096+00 f t \N 6313 2311 Ojo inflamado y le molesta comer +1137 2025-11-22 01:25:21.72427+00 2025-11-22 01:25:21.724281+00 f t \N 6357 2319 Ecografia abdominal +1138 2025-11-22 01:25:21.729304+00 2025-11-22 01:25:21.729315+00 f t \N 6318 2316 Ecografía Abdominal +1139 2025-11-22 01:25:21.734446+00 2025-11-22 01:25:21.734457+00 f t \N 6311 2309 Orina multiples veces +1140 2025-11-22 01:25:21.739394+00 2025-11-22 01:25:21.739407+00 f t \N 6307 2310 Defeca con sangre y vomitos +1141 2025-11-22 01:25:21.744564+00 2025-11-22 01:25:21.744575+00 f t \N 6318 2315 Revisión por Probabilidad de Parásitos +1142 2025-11-22 01:25:21.74969+00 2025-11-22 01:25:21.7497+00 f t \N 6298 2317 Problemas de movilidad. Aparentemente lesión en pata delantera derecha. Cadera caída +1143 2025-11-22 01:25:21.754693+00 2025-11-22 01:25:21.754704+00 f t \N 6316 2314 Eutanasia +1144 2025-11-22 01:25:21.759757+00 2025-11-22 01:25:21.759768+00 f t \N 6251 2301 no está queriendo comer hace unos días, le estamos dando paté recovery diluido con una jeringa +1145 2025-11-22 01:25:21.76479+00 2025-11-22 01:25:21.764801+00 f t \N 6314 2312 Vómitos Continuos +1146 2025-11-22 01:25:21.769679+00 2025-11-22 01:25:21.769686+00 f t \N 5396 2114 Fluidoterapia +1147 2025-11-22 01:25:21.773444+00 2025-11-22 01:25:21.773451+00 f t \N 6315 2313 Revisión de resultados de estudios +1215 2025-11-22 01:25:22.054756+00 2025-11-22 01:25:22.054763+00 f t \N 6004 2252 vomito con sangre +1148 2025-11-22 01:25:21.777353+00 2025-11-22 01:25:21.777361+00 f t \N 6252 2308 No come, no quiere tomar agua, no tiene movilidad, está acostado y su panza está inflamada, se orina y llora todo el día. +1149 2025-11-22 01:25:21.781335+00 2025-11-22 01:25:21.781342+00 f t \N 3688 2176 Control y Vacunación anual +1150 2025-11-22 01:25:21.785217+00 2025-11-22 01:25:21.785224+00 f t \N 6181 2287 Ecografia abdomial +1151 2025-11-22 01:25:21.789214+00 2025-11-22 01:25:21.789223+00 f t \N 6256 2303 eco abdominal +1152 2025-11-22 01:25:21.79345+00 2025-11-22 01:25:21.793457+00 f t \N 6257 2302 eco abd +1153 2025-11-22 01:25:21.797344+00 2025-11-22 01:25:21.797351+00 f t \N 6153 2291 Ecografía abdominal +1154 2025-11-22 01:25:21.800998+00 2025-11-22 01:25:21.801005+00 f t \N 5774 2304 eutanasia +1155 2025-11-22 01:25:21.80522+00 2025-11-22 01:25:21.805226+00 f t \N 6236 2300 Ecografia abdominal +1156 2025-11-22 01:25:21.808919+00 2025-11-22 01:25:21.808926+00 f t \N 6078 2274 Revisión por diarrea +1157 2025-11-22 01:25:21.813008+00 2025-11-22 01:25:21.813017+00 f t \N 6132 2285 Vómito con pequeño coágulo de sangre +1158 2025-11-22 01:25:21.81715+00 2025-11-22 01:25:21.817157+00 f t \N 5396 2113 Fluidoterapia +1159 2025-11-22 01:25:21.821156+00 2025-11-22 01:25:21.821163+00 f t \N 6216 2299 Hace 2 semanas dejo de caminar. Tiene 15 años. Ahora presenta un problema en la piel. Se le salió el pelo en el cuello. Tipo parche caliente. Usa pañal no puede caminar. Y creo que tiene una fistula en el ano. Se queja y grita +1160 2025-11-22 01:25:21.825373+00 2025-11-22 01:25:21.825382+00 f t \N 335 2221 Es un turno de prueba para verificar la agenda +1161 2025-11-22 01:25:21.829849+00 2025-11-22 01:25:21.829861+00 f t \N 5647 2264 Vacunación anual +1162 2025-11-22 01:25:21.834399+00 2025-11-22 01:25:21.834406+00 f t \N 6192 2294 Vacunacion anual (Antirrabica y triple felina) +1163 2025-11-22 01:25:21.838202+00 2025-11-22 01:25:21.838209+00 f t \N 6193 2295 3 Dosis de sextuple. 4 Meses +1164 2025-11-22 01:25:21.842336+00 2025-11-22 01:25:21.842343+00 f t \N 6153 2292 Extracción de sangre y revisión por vomitos +1165 2025-11-22 01:25:21.846221+00 2025-11-22 01:25:21.846229+00 f t \N 3213 2289 Revisión de Resultados +1166 2025-11-22 01:25:21.85032+00 2025-11-22 01:25:21.850329+00 f t \N 6182 2288 Paciente oncologico terminal +1167 2025-11-22 01:25:21.85441+00 2025-11-22 01:25:21.854417+00 f t \N 6125 2282 Vacunacion anual +1168 2025-11-22 01:25:21.858161+00 2025-11-22 01:25:21.858167+00 f t \N 6127 2281 Vacunacion anual +1169 2025-11-22 01:25:21.862169+00 2025-11-22 01:25:21.862176+00 f t \N 6126 2280 Vacunacion anual +1170 2025-11-22 01:25:21.866418+00 2025-11-22 01:25:21.866424+00 f t \N 6190 2290 Perdida de Peso y pelo cerca de la cola +1171 2025-11-22 01:25:21.869946+00 2025-11-22 01:25:21.869952+00 f t \N 5971 2238 Rx Torax LL y VD, Rx Cuello +1172 2025-11-22 01:25:21.873623+00 2025-11-22 01:25:21.873629+00 f t \N 6191 2293 Vomitos continuos +1173 2025-11-22 01:25:21.87756+00 2025-11-22 01:25:21.877566+00 f t \N 5396 2112 Fluidoterapia +1174 2025-11-22 01:25:21.881627+00 2025-11-22 01:25:21.881634+00 f t \N 6009 2261 +1175 2025-11-22 01:25:21.885742+00 2025-11-22 01:25:21.885749+00 f t \N 1095 2276 Vomitos recurrentes +1176 2025-11-22 01:25:21.889917+00 2025-11-22 01:25:21.889925+00 f t \N 6009 2260 Extraccion de sangre para perfil completo con orina +1177 2025-11-22 01:25:21.893893+00 2025-11-22 01:25:21.8939+00 f t \N 6134 2283 Tiene Moco y parece que respira mal +1178 2025-11-22 01:25:21.898126+00 2025-11-22 01:25:21.898134+00 f t \N 6134 2284 Tiene Moco y parece que respira mal +1179 2025-11-22 01:25:21.90201+00 2025-11-22 01:25:21.902017+00 f t \N 5957 2254 chequeo +1180 2025-11-22 01:25:21.906009+00 2025-11-22 01:25:21.90602+00 f t \N 6120 2279 Vomitos, 1 dia sin comer +1181 2025-11-22 01:25:21.910427+00 2025-11-22 01:25:21.910437+00 f t \N 6115 2277 Problemas para pararse y desplazarse +1182 2025-11-22 01:25:21.915118+00 2025-11-22 01:25:21.915126+00 f t \N 4007 2201 Endocrinología +1183 2025-11-22 01:25:21.918892+00 2025-11-22 01:25:21.9189+00 f t \N 1353 2213 vac. triple felina y control general +1184 2025-11-22 01:25:21.923427+00 2025-11-22 01:25:21.923434+00 f t \N 6077 2273 Ecografía Abdominal +1185 2025-11-22 01:25:21.927726+00 2025-11-22 01:25:21.927733+00 f t \N 6115 2278 Problemas para pararse y desplazarse +1186 2025-11-22 01:25:21.93221+00 2025-11-22 01:25:21.932217+00 f t \N 5906 2242 consulta cardiologica +1187 2025-11-22 01:25:21.936802+00 2025-11-22 01:25:21.93681+00 f t \N 6081 2275 Vomitos y Falta de insentivo para alimentarse +1188 2025-11-22 01:25:21.940667+00 2025-11-22 01:25:21.940675+00 f t \N 5906 2243 extraccion perfil 7 +1189 2025-11-22 01:25:21.944384+00 2025-11-22 01:25:21.94439+00 f t \N 5906 2244 perfil 7 +1190 2025-11-22 01:25:21.948377+00 2025-11-22 01:25:21.948384+00 f t \N 5610 2191 Ecografía abdominal +1191 2025-11-22 01:25:21.952212+00 2025-11-22 01:25:21.952219+00 f t \N 5396 2111 Fluidoterapia +1192 2025-11-22 01:25:21.956871+00 2025-11-22 01:25:21.956878+00 f t \N 5548 2255 revision de estudios +1193 2025-11-22 01:25:21.96075+00 2025-11-22 01:25:21.960759+00 f t \N 6029 2266 Perfil general 7 +1194 2025-11-22 01:25:21.964555+00 2025-11-22 01:25:21.964562+00 f t \N 6029 2265 Extracción +1195 2025-11-22 01:25:21.969806+00 2025-11-22 01:25:21.969814+00 f t \N 335 2270 PRUEBA +1196 2025-11-22 01:25:21.976208+00 2025-11-22 01:25:21.976217+00 f t \N 247 2272 Consulta por una uña morada +1197 2025-11-22 01:25:21.980339+00 2025-11-22 01:25:21.980346+00 f t \N 5977 2240 Resfrio, pero me gustaría tener otra opinión ya que cuando la llevo a la veterinaria se estreza mucho y me gustaría que la atiendan en casa. Tiene problemas en su hígado, tuvo y tiene cálculos fue operada, lo último me la diagnosticaron con Cushing pero después los valores de laboratorio mostraron otros valores +1198 2025-11-22 01:25:21.984544+00 2025-11-22 01:25:21.984552+00 f t \N 3722 2267 perfil 7 + traslado +1199 2025-11-22 01:25:21.988704+00 2025-11-22 01:25:21.988712+00 f t \N 5396 2110 Fluidoterapia +1200 2025-11-22 01:25:21.99271+00 2025-11-22 01:25:21.992718+00 f t \N 5756 2259 Hemograma +1201 2025-11-22 01:25:21.996691+00 2025-11-22 01:25:21.996699+00 f t \N 5796 2200 Hace ruido al tragar, ver subpatita izquierda +1202 2025-11-22 01:25:22.001177+00 2025-11-22 01:25:22.001189+00 f t \N 5756 2258 Extraccion para hemograma +1203 2025-11-22 01:25:22.005536+00 2025-11-22 01:25:22.005545+00 f t \N 5644 2249 Eco abdominal +1204 2025-11-22 01:25:22.009457+00 2025-11-22 01:25:22.009464+00 f t \N 5813 2203 Eocgrafía Abdominal +1205 2025-11-22 01:25:22.013625+00 2025-11-22 01:25:22.013632+00 f t \N 5993 2250 vomitos constantes +1206 2025-11-22 01:25:22.017797+00 2025-11-22 01:25:22.017804+00 f t \N 191 2262 Vacunación anual de un gato y perro +1207 2025-11-22 01:25:22.022299+00 2025-11-22 01:25:22.022308+00 f t \N 5567 2257 Eco abdominal +1208 2025-11-22 01:25:22.026757+00 2025-11-22 01:25:22.026765+00 f t \N 6027 2263 Vacunación anual +1209 2025-11-22 01:25:22.030908+00 2025-11-22 01:25:22.030915+00 f t \N 5979 2245 Vacunacion anual (Antirrabica y triple felina) +1210 2025-11-22 01:25:22.0347+00 2025-11-22 01:25:22.034708+00 f t \N 5610 2214 +1211 2025-11-22 01:25:22.038741+00 2025-11-22 01:25:22.038749+00 f t \N 5967 2237 segunda opinión con respecto a dos coagulogramas prequirurgicos +1212 2025-11-22 01:25:22.042573+00 2025-11-22 01:25:22.04258+00 f t \N 6009 2253 Perra con flema hace 1 dia +1213 2025-11-22 01:25:22.046454+00 2025-11-22 01:25:22.046461+00 f t \N 5835 2212 eco abd por obstruccion +1214 2025-11-22 01:25:22.050358+00 2025-11-22 01:25:22.050368+00 f t \N 6015 2256 chequeo +1216 2025-11-22 01:25:22.058575+00 2025-11-22 01:25:22.058582+00 f t \N 5859 2215 control y medicion de presion +1217 2025-11-22 01:25:22.06238+00 2025-11-22 01:25:22.062388+00 f t \N 5396 2109 Fluidoterapia +1218 2025-11-22 01:25:22.066935+00 2025-11-22 01:25:22.066944+00 f t \N 5771 2241 consulta cardiologica +1219 2025-11-22 01:25:22.074716+00 2025-11-22 01:25:22.074724+00 f t \N 6002 2247 Extraccion Rapela +1220 2025-11-22 01:25:22.078711+00 2025-11-22 01:25:22.078719+00 f t \N 6002 2248 PG sin orina +1221 2025-11-22 01:25:22.082521+00 2025-11-22 01:25:22.082529+00 f t \N 5896 2246 Consulta de seguimiento, no responde al tratamiento +1222 2025-11-22 01:25:22.08632+00 2025-11-22 01:25:22.086327+00 f t \N 5957 2232 Se ha rascado el cuello hasta lastimarselo y además apoya mal una de sus patas delanteras +1223 2025-11-22 01:25:22.090194+00 2025-11-22 01:25:22.0902+00 f t \N 5955 2231 Da vueltas en la batea para orinar y maulla. Da la impresion como si le costara. +1224 2025-11-22 01:25:22.093923+00 2025-11-22 01:25:22.093929+00 f t \N 1710 2192 Revisión y sacar puntos +1225 2025-11-22 01:25:22.097548+00 2025-11-22 01:25:22.097554+00 f t \N 5741 2180 Chequeo general. Come muche pero no engorda +1226 2025-11-22 01:25:22.101434+00 2025-11-22 01:25:22.101441+00 f t \N 5961 2236 escatado que tiene severos problemas tales como: sarna, nutrición, maltratado +1227 2025-11-22 01:25:22.105391+00 2025-11-22 01:25:22.105396+00 f t \N 5861 2218 eco abd +1228 2025-11-22 01:25:22.108956+00 2025-11-22 01:25:22.108962+00 f t \N 5835 2217 +1229 2025-11-22 01:25:22.112573+00 2025-11-22 01:25:22.112578+00 f t \N 5835 2216 perfil general completo + t4 total +1230 2025-11-22 01:25:22.116175+00 2025-11-22 01:25:22.116181+00 f t \N 5903 2235 cultivo y antibiograma +1231 2025-11-22 01:25:22.119878+00 2025-11-22 01:25:22.119884+00 f t \N 5814 2205 Ehrlichia (PCR)\r\nAnaplasma (PCR)\r\nHepatozoon (PCR)\r\nMycoplasma (PCR) +1232 2025-11-22 01:25:22.123658+00 2025-11-22 01:25:22.123664+00 f t \N 5814 2204 Extracción de sangre Rapela +1233 2025-11-22 01:25:22.127431+00 2025-11-22 01:25:22.127438+00 f t \N 4007 2202 Consulta para dieta natural +1234 2025-11-22 01:25:22.131014+00 2025-11-22 01:25:22.13102+00 f t \N 3965 1815 Vacunación antirrábica +1235 2025-11-22 01:25:22.134857+00 2025-11-22 01:25:22.134863+00 f t \N 66 2234 eco abdominal +1236 2025-11-22 01:25:22.138706+00 2025-11-22 01:25:22.138713+00 f t \N 5944 2233 defeco con sangre +1237 2025-11-22 01:25:22.142564+00 2025-11-22 01:25:22.142572+00 f t \N 5396 2105 Fluidoterapia +1238 2025-11-22 01:25:22.146616+00 2025-11-22 01:25:22.146623+00 f t \N 5794 2198 Extraccion de sangre para P7 y Sodio\r\n\r\nOrina completo + relacion creatina/proteina +1239 2025-11-22 01:25:22.150981+00 2025-11-22 01:25:22.150988+00 f t \N 5794 2197 Extraccion de sangre para P7 y Sodio +1240 2025-11-22 01:25:22.154855+00 2025-11-22 01:25:22.154862+00 f t \N 5651 2165 Endocrinología +1241 2025-11-22 01:25:22.159097+00 2025-11-22 01:25:22.159107+00 f t \N 5900 2222 Ecografías +1242 2025-11-22 01:25:22.16351+00 2025-11-22 01:25:22.163517+00 f t \N 5903 2224 Revisión por cristales en la orina , desde enero, tiene estudios hechos +1243 2025-11-22 01:25:22.168005+00 2025-11-22 01:25:22.168012+00 f t \N 5860 2230 Mucha diarrea desde ayer a la tarde +1244 2025-11-22 01:25:22.172419+00 2025-11-22 01:25:22.172426+00 f t \N 5902 2223 Revisión por caida +1245 2025-11-22 01:25:22.177118+00 2025-11-22 01:25:22.177128+00 f t \N 5896 2226 Aparenta dolor, no come, no toma agua y casi no se mueve +1246 2025-11-22 01:25:22.18226+00 2025-11-22 01:25:22.182269+00 f t \N 5888 2227 Revisión y suministrar suero +1247 2025-11-22 01:25:22.186737+00 2025-11-22 01:25:22.186746+00 f t \N 4305 2209 Evalucion por alteraciones en la respiracion +1248 2025-11-22 01:25:22.190806+00 2025-11-22 01:25:22.190813+00 f t \N 5906 2229 ojos rojos, Lagaña Verde y breve cegera +1249 2025-11-22 01:25:22.194443+00 2025-11-22 01:25:22.19445+00 f t \N 5396 2108 Fluidoterapia +1250 2025-11-22 01:25:22.198491+00 2025-11-22 01:25:22.198499+00 f t \N 5864 2219 Hace un tiempo tiene unas lesiones q se las atribuimos a como se rasca, pero ahora nos dimos cuenta q tiene una lesión muy grande pareciera d tanto lamerse +1251 2025-11-22 01:25:22.202256+00 2025-11-22 01:25:22.202262+00 f t \N 4266 2220 diarrea y parasitos +1252 2025-11-22 01:25:22.205842+00 2025-11-22 01:25:22.205849+00 f t \N 5819 2208 Tos Sospecha de asma y desparasitacion int + ext +1253 2025-11-22 01:25:22.209494+00 2025-11-22 01:25:22.2095+00 f t \N 5818 2207 Vacunacion anual (Sextuple y Antirrabica) +1254 2025-11-22 01:25:22.212955+00 2025-11-22 01:25:22.212961+00 f t \N 5396 2107 Fluidoterapia +1255 2025-11-22 01:25:22.216621+00 2025-11-22 01:25:22.216627+00 f t \N 5835 2211 Vomitos desde el sabado pasado, lo llevaron a una vete, le dieron rani y cerenia y sigue con vomitos intermitentes, mientras tanto le dan gastrointestinal pouch cada 2/3 hs, desde anoche que esta con vomitos mas seguido. +1256 2025-11-22 01:25:22.220159+00 2025-11-22 01:25:22.220168+00 f t \N 5774 2195 Radiografías +1257 2025-11-22 01:25:22.224019+00 2025-11-22 01:25:22.224025+00 f t \N 5647 2210 +1258 2025-11-22 01:25:22.228035+00 2025-11-22 01:25:22.228042+00 f t \N 5687 2168 +1259 2025-11-22 01:25:22.232099+00 2025-11-22 01:25:22.232107+00 f t \N 5547 2137 gingivitis +1260 2025-11-22 01:25:22.235945+00 2025-11-22 01:25:22.235951+00 f t \N 5691 2173 +1261 2025-11-22 01:25:22.239598+00 2025-11-22 01:25:22.239604+00 f t \N 5816 2206 Ecografía abdominal +1262 2025-11-22 01:25:22.243214+00 2025-11-22 01:25:22.243222+00 f t \N 5747 2183 Consulta general y corte de unas +1263 2025-11-22 01:25:22.24712+00 2025-11-22 01:25:22.247127+00 f t \N 5239 2081 Chequeos generales +1264 2025-11-22 01:25:22.249052+00 2025-11-22 01:25:22.249058+00 f t \N 5238 2081 Chequeos generales +1265 2025-11-22 01:25:22.252685+00 2025-11-22 01:25:22.252691+00 f t \N 5828 2175 Vacunación anual +1266 2025-11-22 01:25:22.256496+00 2025-11-22 01:25:22.256502+00 f t \N 5775 2196 Mamas Inflamadas +1267 2025-11-22 01:25:22.260067+00 2025-11-22 01:25:22.260072+00 f t \N 5308 2093 Revisión y extracción de sangre para pruebas de Vilef y VIf +1268 2025-11-22 01:25:22.263821+00 2025-11-22 01:25:22.263827+00 f t \N 5307 2094 Revisión y extracción de sangre para pruebas de Vilef y VIf +1269 2025-11-22 01:25:22.267866+00 2025-11-22 01:25:22.267873+00 f t \N 5647 2161 Chequeo y extracción de sangre +1270 2025-11-22 01:25:22.27182+00 2025-11-22 01:25:22.271826+00 f t \N 5557 2149 consulta clinica y vacunacion anual +1271 2025-11-22 01:25:22.276113+00 2025-11-22 01:25:22.276125+00 f t \N 5396 2106 Fluidoterapia +1272 2025-11-22 01:25:22.280382+00 2025-11-22 01:25:22.280388+00 f t \N 5772 2194 ulceras en la cara +1273 2025-11-22 01:25:22.284327+00 2025-11-22 01:25:22.284333+00 f t \N 5771 2193 Ecografía Abdominal +1274 2025-11-22 01:25:22.288181+00 2025-11-22 01:25:22.288187+00 f t \N 5567 2145 Eco abdominal +1275 2025-11-22 01:25:22.292015+00 2025-11-22 01:25:22.292021+00 f t \N 5770 2190 no camina, jadea mucho, anorexia, decaimiento, está echado sin moverse, se hace pis encima. +1276 2025-11-22 01:25:22.29566+00 2025-11-22 01:25:22.295667+00 f t \N 5610 2186 +1277 2025-11-22 01:25:22.299504+00 2025-11-22 01:25:22.299512+00 f t \N 5610 2150 Clinica y extraccion +1278 2025-11-22 01:25:22.3037+00 2025-11-22 01:25:22.303706+00 f t \N 4916 2177 2 Extracciones para VIf y Vilef +1279 2025-11-22 01:25:22.307481+00 2025-11-22 01:25:22.307487+00 f t \N 5742 2181 +1280 2025-11-22 01:25:22.310856+00 2025-11-22 01:25:22.310862+00 f t \N 5735 2179 posible infeccion en cav bucal +1405 2025-11-22 01:25:22.813079+00 2025-11-22 01:25:22.813086+00 f t \N 4811 1993 Seguimiento del px +1281 2025-11-22 01:25:22.314802+00 2025-11-22 01:25:22.314809+00 f t \N 3213 2120 Llegada de la muestra, PGC / PCR de ADN proviral de Vilef, test rápido de Vif y Vilef. +1282 2025-11-22 01:25:22.318806+00 2025-11-22 01:25:22.318813+00 f t \N 5396 2101 Fluidoterapia +1283 2025-11-22 01:25:22.322864+00 2025-11-22 01:25:22.322871+00 f t \N 5644 2172 +1284 2025-11-22 01:25:22.326567+00 2025-11-22 01:25:22.326573+00 f t \N 5548 2171 extraccion +1285 2025-11-22 01:25:22.330717+00 2025-11-22 01:25:22.330723+00 f t \N 3213 2119 Extracción para prueba de Vif/vilef +1286 2025-11-22 01:25:22.334341+00 2025-11-22 01:25:22.334347+00 f t \N 5589 2153 +1287 2025-11-22 01:25:22.337955+00 2025-11-22 01:25:22.337961+00 f t \N 5555 2141 eco abdominal +1288 2025-11-22 01:25:22.341547+00 2025-11-22 01:25:22.341554+00 f t \N 4305 2169 +1289 2025-11-22 01:25:22.345298+00 2025-11-22 01:25:22.345305+00 f t \N 5531 2162 Hace una semana está con dificultad para respirar debido a mucha mucosidad en las vías respiratorias, tiene lagañas. +1290 2025-11-22 01:25:22.349312+00 2025-11-22 01:25:22.349319+00 f t \N 5256 2084 Vacunación anual +1291 2025-11-22 01:25:22.352892+00 2025-11-22 01:25:22.352898+00 f t \N 5673 2170 hace pis muy seguido .. se hace el q hace y no hace mucho o a penas unas gotitas ... como una sistitis +1292 2025-11-22 01:25:22.356834+00 2025-11-22 01:25:22.35684+00 f t \N 5698 2174 +1293 2025-11-22 01:25:22.360953+00 2025-11-22 01:25:22.360959+00 f t \N 5627 2159 lamido excesivo y heridas +1294 2025-11-22 01:25:22.364536+00 2025-11-22 01:25:22.364543+00 f t \N 5720 2178 Decaimiento, con vomitos y diarrea +1295 2025-11-22 01:25:22.368288+00 2025-11-22 01:25:22.368294+00 f t \N 4887 2152 extraccion de puntos +1296 2025-11-22 01:25:22.371911+00 2025-11-22 01:25:22.371917+00 f t \N 5666 2167 Vomitó unas 4 veces, comió poco, durmió más de lo normal y cuando la alzo y quiero moverla maúlla suave +1297 2025-11-22 01:25:22.375751+00 2025-11-22 01:25:22.375757+00 f t \N 5756 2185 Hemograma +1298 2025-11-22 01:25:22.379758+00 2025-11-22 01:25:22.379764+00 f t \N 5396 2104 fluidoterapia +1299 2025-11-22 01:25:22.383459+00 2025-11-22 01:25:22.383466+00 f t \N 5589 2147 consulta cardio por precx +1300 2025-11-22 01:25:22.387041+00 2025-11-22 01:25:22.387047+00 f t \N 5756 2184 Extraccion para hemograma +1301 2025-11-22 01:25:22.390874+00 2025-11-22 01:25:22.39088+00 f t \N 4928 2013 Consulta clinica + toma de presion +1302 2025-11-22 01:25:22.394701+00 2025-11-22 01:25:22.394707+00 f t \N 5555 2140 +1303 2025-11-22 01:25:22.398392+00 2025-11-22 01:25:22.398397+00 f t \N 5564 2143 Extraccion + Revision clinica +1304 2025-11-22 01:25:22.402047+00 2025-11-22 01:25:22.402053+00 f t \N 5128 2154 repetimos para hemograma +1305 2025-11-22 01:25:22.405854+00 2025-11-22 01:25:22.40586+00 f t \N 5652 2166 Diarrea- defecacion blanda +1306 2025-11-22 01:25:22.409673+00 2025-11-22 01:25:22.409679+00 f t \N 5636 2164 Defeca con sangre +1307 2025-11-22 01:25:22.413268+00 2025-11-22 01:25:22.413274+00 f t \N 5410 2123 vac. anual +1308 2025-11-22 01:25:22.417169+00 2025-11-22 01:25:22.417176+00 f t \N 4007 2089 +1309 2025-11-22 01:25:22.421093+00 2025-11-22 01:25:22.421099+00 f t \N 4811 2158 Revisión de Resultados del análisis +1310 2025-11-22 01:25:22.424847+00 2025-11-22 01:25:22.424853+00 f t \N 5644 2160 Chequeo para Oni +1311 2025-11-22 01:25:22.428881+00 2025-11-22 01:25:22.428887+00 f t \N 5649 2163 No puede defecar y vomita baba +1312 2025-11-22 01:25:22.433213+00 2025-11-22 01:25:22.433219+00 f t \N 5548 2138 chequeo general +1313 2025-11-22 01:25:22.437083+00 2025-11-22 01:25:22.43709+00 f t \N 5404 2116 Chequeo general por precedentes de leucemia Crónica +1314 2025-11-22 01:25:22.44078+00 2025-11-22 01:25:22.440787+00 f t \N 5622 2155 Tiene el pecho pelado y colorado. Se rasco y se lastimo +1315 2025-11-22 01:25:22.444487+00 2025-11-22 01:25:22.444493+00 f t \N 174 2144 consulta con etologia +1316 2025-11-22 01:25:22.448325+00 2025-11-22 01:25:22.448332+00 f t \N 5598 2146 caca floja y apetito disminuido +1317 2025-11-22 01:25:22.452284+00 2025-11-22 01:25:22.452291+00 f t \N 5452 2157 revision analisis +1318 2025-11-22 01:25:22.456484+00 2025-11-22 01:25:22.456493+00 f t \N 5611 2151 Piel irritada despues de baño y corte, decaimiento, costra con sangre de una zona. Come y toma agua con normalidad +1319 2025-11-22 01:25:22.4607+00 2025-11-22 01:25:22.460707+00 f t \N 1705 2148 Diarrea y vomitos +1320 2025-11-22 01:25:22.464592+00 2025-11-22 01:25:22.464598+00 f t \N 4184 2142 control y revision de placa +1321 2025-11-22 01:25:22.468379+00 2025-11-22 01:25:22.468385+00 f t \N 5199 2083 Extracción de sangre +1322 2025-11-22 01:25:22.472181+00 2025-11-22 01:25:22.472187+00 f t \N 5396 2103 Fluidoterapia +1323 2025-11-22 01:25:22.476099+00 2025-11-22 01:25:22.476105+00 f t \N 5341 2095 Vacunación anual de tres gatos +1324 2025-11-22 01:25:22.480079+00 2025-11-22 01:25:22.480087+00 f t \N 5341 2097 Vacunación anual +1325 2025-11-22 01:25:22.483837+00 2025-11-22 01:25:22.483846+00 f t \N 5341 2096 Vacunación anual +1326 2025-11-22 01:25:22.48794+00 2025-11-22 01:25:22.487947+00 f t \N 2462 2156 +1327 2025-11-22 01:25:22.492008+00 2025-11-22 01:25:22.492016+00 f t \N 2462 2134 eutanasia +1328 2025-11-22 01:25:22.495738+00 2025-11-22 01:25:22.495744+00 f t \N 1339 2136 eco abd urgencia +1329 2025-11-22 01:25:22.499645+00 2025-11-22 01:25:22.499652+00 f t \N 5545 2135 Salio a caminar, hizo un mal movimiento y empezo a renguear, ya una vez le paso y era algo muscular +1330 2025-11-22 01:25:22.503345+00 2025-11-22 01:25:22.503351+00 f t \N 2945 2067 vac. anual +1331 2025-11-22 01:25:22.506989+00 2025-11-22 01:25:22.506995+00 f t \N 5247 2082 Picazón que no cede con el antipulgas aplicado +1332 2025-11-22 01:25:22.510676+00 2025-11-22 01:25:22.510683+00 f t \N 5452 2133 muestra de orina completa +1333 2025-11-22 01:25:22.514293+00 2025-11-22 01:25:22.514299+00 f t \N 5396 2102 Fluidoterapia +1334 2025-11-22 01:25:22.51793+00 2025-11-22 01:25:22.517937+00 f t \N 869 2132 Vomitos continuos +1335 2025-11-22 01:25:22.521864+00 2025-11-22 01:25:22.52187+00 f t \N 5495 2130 Sangre en la zona de la oreja/cuello y la pata. Presenta Rengueo +1336 2025-11-22 01:25:22.525627+00 2025-11-22 01:25:22.525633+00 f t \N 5497 2131 Orina con Sangre +1337 2025-11-22 01:25:22.529418+00 2025-11-22 01:25:22.529427+00 f t \N 5477 2139 +1338 2025-11-22 01:25:22.533209+00 2025-11-22 01:25:22.533215+00 f t \N 5457 2126 le duele el hombro al moverselo +1339 2025-11-22 01:25:22.536997+00 2025-11-22 01:25:22.537003+00 f t \N 2462 2128 Recaida del tratamiento +1340 2025-11-22 01:25:22.540804+00 2025-11-22 01:25:22.540811+00 f t \N 5487 2129 Ojos Hinchados +1341 2025-11-22 01:25:22.544917+00 2025-11-22 01:25:22.544924+00 f t \N 5477 2127 Eutanasia +1342 2025-11-22 01:25:22.548699+00 2025-11-22 01:25:22.548706+00 f t \N 5442 2124 revision de analisis y diagnostico presuntivo +1343 2025-11-22 01:25:22.552834+00 2025-11-22 01:25:22.552844+00 f t \N 5396 2100 Fluidoterapia +1344 2025-11-22 01:25:22.556863+00 2025-11-22 01:25:22.55687+00 f t \N 5452 2125 Dificultad para orinar +1345 2025-11-22 01:25:22.560993+00 2025-11-22 01:25:22.561001+00 f t \N 5442 2122 eco abdominal +1346 2025-11-22 01:25:22.565396+00 2025-11-22 01:25:22.565403+00 f t \N 5273 2088 Certificados de salud y desparacitación +1347 2025-11-22 01:25:22.569877+00 2025-11-22 01:25:22.569885+00 f t \N 5273 2091 +1348 2025-11-22 01:25:22.573999+00 2025-11-22 01:25:22.574008+00 f t \N 3919 2115 Diente Roto +1406 2025-11-22 01:25:22.817311+00 2025-11-22 01:25:22.817321+00 f t \N 1651 2043 +1407 2025-11-22 01:25:22.822107+00 2025-11-22 01:25:22.822117+00 f t \N 3688 1986 control +1349 2025-11-22 01:25:22.578553+00 2025-11-22 01:25:22.57856+00 f t \N 5170 2121 Lo vio una de nuestras vetes el martes por diarrea y no comia hace un dia, la vete en el domicilio vio una cascarita en la zona genital porque esta recien castrado, ahora la herida esa le sangra y supura y ahra renguea de una pata +1350 2025-11-22 01:25:22.582866+00 2025-11-22 01:25:22.582874+00 f t \N 373 2025 Resultados de Análsis +1351 2025-11-22 01:25:22.587392+00 2025-11-22 01:25:22.587399+00 f t \N 5392 2118 Falta de incentivo para alimentarse +1352 2025-11-22 01:25:22.592057+00 2025-11-22 01:25:22.592066+00 f t \N 5396 2099 Fluidoterapia +1353 2025-11-22 01:25:22.596694+00 2025-11-22 01:25:22.596702+00 f t \N 4220 2086 desparacitación para 2 gatos +1354 2025-11-22 01:25:22.600887+00 2025-11-22 01:25:22.600894+00 f t \N 4186 2087 Desparacitación +1355 2025-11-22 01:25:22.604854+00 2025-11-22 01:25:22.604862+00 f t \N 128 2073 control clinico + drenaje glandulas +1356 2025-11-22 01:25:22.609104+00 2025-11-22 01:25:22.609112+00 f t \N 3213 2070 vacunación anual y chequeo de ojos +1357 2025-11-22 01:25:22.61305+00 2025-11-22 01:25:22.613058+00 f t \N 5405 2117 Dolencias en el cuerpo y decaimiento +1358 2025-11-22 01:25:22.616828+00 2025-11-22 01:25:22.616836+00 f t \N 5381 2098 Alergia en piel, picazon +1359 2025-11-22 01:25:22.620757+00 2025-11-22 01:25:22.620765+00 f t \N 5271 2085 Vacunación anual +1360 2025-11-22 01:25:22.624557+00 2025-11-22 01:25:22.624564+00 f t \N 4811 2061 PGC/con orina \r\nTraslado\r\nRelacion creatinina \r\nCItologia +1361 2025-11-22 01:25:22.628616+00 2025-11-22 01:25:22.628625+00 f t \N 5315 2090 eco abdominal de urgencia +1362 2025-11-22 01:25:22.632891+00 2025-11-22 01:25:22.632898+00 f t \N 5317 2092 Está muy flaca, come muy poco y se le está haciendo unas lagañas en los ojos +1363 2025-11-22 01:25:22.636792+00 2025-11-22 01:25:22.636799+00 f t \N 4811 2060 Extraccion +1364 2025-11-22 01:25:22.640607+00 2025-11-22 01:25:22.640614+00 f t \N 176 2051 eco abdominal +1365 2025-11-22 01:25:22.644572+00 2025-11-22 01:25:22.644579+00 f t \N 5252 2080 vacunacion triple y atp interno y externo +1366 2025-11-22 01:25:22.648283+00 2025-11-22 01:25:22.64829+00 f t \N 4184 2069 Radiografías +1367 2025-11-22 01:25:22.652402+00 2025-11-22 01:25:22.652409+00 f t \N 5183 2065 vac. anual +1368 2025-11-22 01:25:22.656076+00 2025-11-22 01:25:22.656086+00 f t \N 174 2064 chequeo +1369 2025-11-22 01:25:22.659783+00 2025-11-22 01:25:22.65979+00 f t \N 4007 1991 Endocrinología +1370 2025-11-22 01:25:22.663842+00 2025-11-22 01:25:22.663849+00 f t \N 5123 2056 radiografia de maxilar superior derecho +1371 2025-11-22 01:25:22.667717+00 2025-11-22 01:25:22.667723+00 f t \N 5045 2079 control +1372 2025-11-22 01:25:22.671447+00 2025-11-22 01:25:22.671454+00 f t \N 2418 2076 +1373 2025-11-22 01:25:22.675428+00 2025-11-22 01:25:22.675437+00 f t \N 5199 2078 hace 14 dias la vio clinico con analisis le pidio turno para endocrinologa, tiene turno para el 28. ayer la bañé y ella no es muy amiga del agua.. La vi muy quieta, le cuesta un poco caminar porq pareciera que las patitas traseras las tiene cansadas, está hechada en su cucha todo el tiempo\r\nNo la veo bien, tiene el cuerpito colorado, la piel se la veo rojiza\r\nY dsps esta hinchada, bastante +1374 2025-11-22 01:25:22.679533+00 2025-11-22 01:25:22.679541+00 f t \N 4884 2002 Vacunación Triple Felina +1375 2025-11-22 01:25:22.683672+00 2025-11-22 01:25:22.683679+00 f t \N 5130 2077 vac. anual +1376 2025-11-22 01:25:22.68732+00 2025-11-22 01:25:22.687327+00 f t \N 5130 2054 chequeo +1377 2025-11-22 01:25:22.69182+00 2025-11-22 01:25:22.691827+00 f t \N 4131 2063 Beto el 18/7 tuvo una obstrucción urinaria. Estuvo con sonda 5 días. La sacaron y estuvo con medicación. Hasta el día de hoy sigue con medicación porque a veces tiene la sensación de querer hacer pis y no hace. Va varias veces a las piedras y no logra hacer pis. Luego, a las horas, logra hacer pis de nuevo y ya hace vida normal. Pero en el momento que no puede yo me muero de nervios. Me dijeron que sospechan de cistitis idiopática. +1378 2025-11-22 01:25:22.696221+00 2025-11-22 01:25:22.696228+00 f t \N 5128 2052 Extraccion +1379 2025-11-22 01:25:22.70018+00 2025-11-22 01:25:22.700188+00 f t \N 5128 2053 +1380 2025-11-22 01:25:22.704223+00 2025-11-22 01:25:22.704234+00 f t \N 5175 2066 tiene una parte circular chica sin pelo, que le salio hace unos dias. Esta vacunado y desparasitado, lo llevamos este año. +1381 2025-11-22 01:25:22.708547+00 2025-11-22 01:25:22.708554+00 f t \N 5045 2072 Recaida de tratamiento, dejo de alimentarse +1382 2025-11-22 01:25:22.713237+00 2025-11-22 01:25:22.713245+00 f t \N 5187 2068 Tiene hinchamada la zona de la boca y parece tener dolor +1383 2025-11-22 01:25:22.717603+00 2025-11-22 01:25:22.717612+00 f t \N 5170 2062 Desde ayer presenta una diarrea, se lo ve muy molesto y no come +1384 2025-11-22 01:25:22.721613+00 2025-11-22 01:25:22.72162+00 f t \N 4927 2012 Servicio de dermatologia por cuadro de alergia +1385 2025-11-22 01:25:22.725947+00 2025-11-22 01:25:22.725957+00 f t \N 2872 2017 Eco abdominal +1386 2025-11-22 01:25:22.730324+00 2025-11-22 01:25:22.73033+00 f t \N 2872 2016 Eco abdominal para dos mascotas +1387 2025-11-22 01:25:22.734237+00 2025-11-22 01:25:22.734244+00 f t \N 373 1941 Cardiología +1388 2025-11-22 01:25:22.738042+00 2025-11-22 01:25:22.738049+00 f t \N 3470 2057 Revisión Final +1389 2025-11-22 01:25:22.742095+00 2025-11-22 01:25:22.742104+00 f t \N 659 2050 sextuple y corte de uñas +1390 2025-11-22 01:25:22.746301+00 2025-11-22 01:25:22.746309+00 f t \N 5045 2059 Perfil Numero 7 +1391 2025-11-22 01:25:22.750178+00 2025-11-22 01:25:22.750186+00 f t \N 3470 2058 Servicio classic de cremación individual con la devolución de las cenizas +1392 2025-11-22 01:25:22.754025+00 2025-11-22 01:25:22.754036+00 f t \N 505 2042 eutanasia +1393 2025-11-22 01:25:22.758087+00 2025-11-22 01:25:22.758094+00 f t \N 4871 1998 Chequeo general: corte de uñas, revisión bucal, información sobre chip +1394 2025-11-22 01:25:22.762111+00 2025-11-22 01:25:22.762119+00 f t \N 5023 2028 Decaimiento, falta de alimento +1395 2025-11-22 01:25:22.766467+00 2025-11-22 01:25:22.766474+00 f t \N 5045 2055 masa en intestino en eco abd +1396 2025-11-22 01:25:22.770631+00 2025-11-22 01:25:22.770639+00 f t \N 5045 2046 eco abdominal derivado de Dani Ordoñez +1397 2025-11-22 01:25:22.77541+00 2025-11-22 01:25:22.775417+00 f t \N 4925 2049 retiro de muestra pendiente +1398 2025-11-22 01:25:22.779919+00 2025-11-22 01:25:22.779926+00 f t \N 373 2032 Traslado +1399 2025-11-22 01:25:22.784606+00 2025-11-22 01:25:22.784614+00 f t \N 373 2031 Extraccion +1400 2025-11-22 01:25:22.789707+00 2025-11-22 01:25:22.789716+00 f t \N 5092 2048 hace 1 día que está estornudando seguido. Y bueno no es común en él y estuvo con un poco de lagrimeo, no tiene secreción nasal aparente. Pero anda con poca hambre ( raro) y lo veo medio constipado. Tiene como algo pegado en la nariz pareciera moco +1401 2025-11-22 01:25:22.794794+00 2025-11-22 01:25:22.794803+00 f t \N 505 2047 +1402 2025-11-22 01:25:22.799866+00 2025-11-22 01:25:22.799877+00 f t \N 5079 2045 Tiene un problema renal crónico se queja de dolor le cuesta caminar y se queda quietito debajo de la estufa ayer y anteayer recibió suero intradermico y demás medicación. +1403 2025-11-22 01:25:22.804702+00 2025-11-22 01:25:22.80471+00 f t \N 5088 2044 decaido y tiembla mucho +1404 2025-11-22 01:25:22.809075+00 2025-11-22 01:25:22.809085+00 f t \N 5071 2041 No hace pis. Estuvimos en la guardia el martes 30/7. El 31 volvimos y lo medicaron. Mejoró, pero ahora sigue sin poder hacer pis. Tengo los estudios que mandaron a hacerle: eco, radiografía, de sangre y de orina +1408 2025-11-22 01:25:22.82695+00 2025-11-22 01:25:22.82696+00 f t \N 2914 1589 Vacunación triple felina +1409 2025-11-22 01:25:22.831859+00 2025-11-22 01:25:22.831869+00 f t \N 1651 2037 inflamacion en pata trasera +1410 2025-11-22 01:25:22.836718+00 2025-11-22 01:25:22.836727+00 f t \N 1710 2040 inyectable tribiotic y control post cx +1411 2025-11-22 01:25:22.841705+00 2025-11-22 01:25:22.841714+00 f t \N 5045 2033 fiebre, come poco, diarrea con sangre. Administran gaba para poder revisarlo +1412 2025-11-22 01:25:22.846745+00 2025-11-22 01:25:22.846752+00 f t \N 5059 2039 mudanza, consultar por medicacion para darle a los gatitos +1413 2025-11-22 01:25:22.850772+00 2025-11-22 01:25:22.850779+00 f t \N 5041 2034 Esta en muy mal estado, muy flaco. Lo rescate hace 1 día +1414 2025-11-22 01:25:22.855813+00 2025-11-22 01:25:22.855822+00 f t \N 4804 1988 vacunacion y desparacitacion + microchip +1415 2025-11-22 01:25:22.861003+00 2025-11-22 01:25:22.861013+00 f t \N 3297 1992 Tos +1416 2025-11-22 01:25:22.866144+00 2025-11-22 01:25:22.866155+00 f t \N 4831 2015 RX 4 +1417 2025-11-22 01:25:22.871029+00 2025-11-22 01:25:22.871039+00 f t \N 2152 2030 Revision por decaimiento +1418 2025-11-22 01:25:22.875822+00 2025-11-22 01:25:22.87583+00 f t \N 3223 2022 Diarrea y decaimiento +1419 2025-11-22 01:25:22.880431+00 2025-11-22 01:25:22.880438+00 f t \N 569 2020 Revisión por agujero en la cola que supura +1420 2025-11-22 01:25:22.884859+00 2025-11-22 01:25:22.884868+00 f t \N 5026 2029 Se le salieron dos uñas y sangra +1421 2025-11-22 01:25:22.889195+00 2025-11-22 01:25:22.889204+00 f t \N 372 1939 Radiografías +1422 2025-11-22 01:25:22.893775+00 2025-11-22 01:25:22.893783+00 f t \N 4969 2019 Vacunacion y Cortes de uñas +1423 2025-11-22 01:25:22.898088+00 2025-11-22 01:25:22.898096+00 f t \N 4911 2023 Perro accidentado por un auto +1424 2025-11-22 01:25:22.903788+00 2025-11-22 01:25:22.903797+00 f t \N 5021 2027 Tos continua +1425 2025-11-22 01:25:22.908194+00 2025-11-22 01:25:22.908202+00 f t \N 4861 2024 Vacunación de la Séxtuple, +1426 2025-11-22 01:25:22.912688+00 2025-11-22 01:25:22.912696+00 f t \N 4745 2026 Resolución de Análsis +1427 2025-11-22 01:25:22.91727+00 2025-11-22 01:25:22.917278+00 f t \N 4925 2008 Extraccion +1428 2025-11-22 01:25:22.921698+00 2025-11-22 01:25:22.921706+00 f t \N 4926 2009 Extraccion +1429 2025-11-22 01:25:22.926057+00 2025-11-22 01:25:22.926069+00 f t \N 4925 2010 PGC/O +1430 2025-11-22 01:25:22.930767+00 2025-11-22 01:25:22.930776+00 f t \N 4926 2011 PGC/O +1431 2025-11-22 01:25:22.935188+00 2025-11-22 01:25:22.935197+00 f t \N 4895 2004 Le pica y le duele la oreja derecha muchísimo, le intenté limpiar pero sigue con lo mismo hace 2 días +1432 2025-11-22 01:25:22.938875+00 2025-11-22 01:25:22.938881+00 f t \N 3954 1962 Vacunación anual + desparasitación interna y externa +1433 2025-11-22 01:25:22.942719+00 2025-11-22 01:25:22.942727+00 f t \N 2462 2018 Decaimiento, falta de apetito +1434 2025-11-22 01:25:22.946585+00 2025-11-22 01:25:22.946592+00 f t \N 4911 2001 Perro accidentado por un auto +1435 2025-11-22 01:25:22.950861+00 2025-11-22 01:25:22.950869+00 f t \N 4914 2006 Estornudos y corte de garras +1436 2025-11-22 01:25:22.955291+00 2025-11-22 01:25:22.955299+00 f t \N 4831 2014 Reorgacion de estudios +1437 2025-11-22 01:25:22.95909+00 2025-11-22 01:25:22.959097+00 f t \N 4916 2007 Extracción de Sangre +1438 2025-11-22 01:25:22.963639+00 2025-11-22 01:25:22.963646+00 f t \N 4887 2003 Revisión Post operatoria +1439 2025-11-22 01:25:22.967956+00 2025-11-22 01:25:22.967963+00 f t \N 4910 1999 Chequeo de dos gatos +1440 2025-11-22 01:25:22.972198+00 2025-11-22 01:25:22.972205+00 f t \N 4909 2000 Chequeo de dos gatos +1441 2025-11-22 01:25:22.976291+00 2025-11-22 01:25:22.976299+00 f t \N 4803 1985 precx +1442 2025-11-22 01:25:22.980226+00 2025-11-22 01:25:22.980232+00 f t \N 355 1997 Ecografía Abdominal +1443 2025-11-22 01:25:22.984042+00 2025-11-22 01:25:22.984049+00 f t \N 4818 1990 vac. anual + certificado de salud +1444 2025-11-22 01:25:22.988458+00 2025-11-22 01:25:22.988466+00 f t \N 4913 2005 ha estado vomitando, perdió mucho peso, está desorientado y tiene espasmos. +1445 2025-11-22 01:25:22.992565+00 2025-11-22 01:25:22.992572+00 f t \N 3644 1736 Control clinico +1446 2025-11-22 01:25:22.996398+00 2025-11-22 01:25:22.996405+00 f t \N 4851 1996 Asma +1447 2025-11-22 01:25:23.001066+00 2025-11-22 01:25:23.001077+00 f t \N 4724 1972 descatar que tenga otitis bacteriana +1448 2025-11-22 01:25:23.005789+00 2025-11-22 01:25:23.0058+00 f t \N 4831 1994 Hace una semana Sasha, de la nada comenzó a tener episodios de llanto como de dolor, como fue lunes al mediodía que noté eso, pensé se habra bajado del sommier que es alto y se lastimó, pero al no caminar bien por momentos y llorar, me desesperé y la llevé a su veterinario quien diagnostico q puede ser muscular u oseo arterial al tocarle su cuello y ella llorar mucho ahí pero desde ahí solo le dio inyección tipo valium me dijo y luego calmantes (onsulte con su veterinario quien diagnostico q puede ser muscular o oseo arterial al tocarle su cuello pero solo da calmantes (Meloxicam) desde hace una semana. Por eso me gustaria 2da opinion, tal vez con con estudio, como ser placa, ya ahí no sé si es radiografía, ecografía... A su vez me di cuenta que cuando la lleve al control y el sabado por la noche, al estresarse se contrae como su cuerpo y actúa de la misma forma, así sea sin tocarla, como que con tensión se empeora su situacion. ultimo episodio pequeño fue ayer al mediodía. Hoy hasta el momento no, pero bueno.. no es la misma y tengo miedo tenga algo más, al menos saber con exactitud diagnóstico :) Desde ya muchas gracias por su atención. +1449 2025-11-22 01:25:23.010378+00 2025-11-22 01:25:23.010386+00 f t \N 4145 1995 Resolución de estudios +1450 2025-11-22 01:25:23.014718+00 2025-11-22 01:25:23.014726+00 f t \N 1709 1892 Prequirurgicos para cx de bulto en la cara +1451 2025-11-22 01:25:23.018674+00 2025-11-22 01:25:23.018681+00 f t \N 4745 1987 +1452 2025-11-22 01:25:23.022666+00 2025-11-22 01:25:23.022673+00 f t \N 4789 1982 Eco abdominal +1453 2025-11-22 01:25:23.026653+00 2025-11-22 01:25:23.02666+00 f t \N 4777 1983 Eco abdominal +1454 2025-11-22 01:25:23.030918+00 2025-11-22 01:25:23.030926+00 f t \N 4811 1989 Últimamente no está pudiendo levantarse solo, ni caminar, se paspa porque se hace pis acostado, y se arranca los pañales. Es un labrador de 14 años, muy grandote de cuerpo +1455 2025-11-22 01:25:23.035308+00 2025-11-22 01:25:23.035315+00 f t \N 4755 1984 Hace casi dos semanas le cuesta ir al baño a hacer caca, va al baño como si tuviera ganas, hace el espasmo y todo pero no puede hacer caca. Cada varios día logra hacer y lo que hace es normal pero es poquito para la cantidad de días. Pis hacia normal pero hace días que arranca a hacer pis sentado y se termina parando mientras hace. Lo lleve a la veterinaria hace una semana y me dieron un laxante pero sigue igual. Me dijeron que si seguía así le iba a tener que hacer análisis de orina para ver si tenía una infección por eso ya hago la consulta con el turno para laboratorio +1456 2025-11-22 01:25:23.039315+00 2025-11-22 01:25:23.039322+00 f t \N 4717 1969 otitis crónica, molestia y muy mal olor +1457 2025-11-22 01:25:23.043317+00 2025-11-22 01:25:23.043324+00 f t \N 902 1978 consulta dermatologica +1458 2025-11-22 01:25:23.047652+00 2025-11-22 01:25:23.047659+00 f t \N 126 1952 Vacunación anual +1459 2025-11-22 01:25:23.051924+00 2025-11-22 01:25:23.051931+00 f t \N 3722 1813 Vacunación triple felina + antirrábica +1460 2025-11-22 01:25:23.056137+00 2025-11-22 01:25:23.056145+00 f t \N 4557 1946 Revision clinica +1461 2025-11-22 01:25:23.06039+00 2025-11-22 01:25:23.060397+00 f t \N 467 1981 Eco abdominal +1462 2025-11-22 01:25:23.064575+00 2025-11-22 01:25:23.064582+00 f t \N 3787 1974 revision por diarrea y corte de garras al gatito +1463 2025-11-22 01:25:23.068785+00 2025-11-22 01:25:23.068793+00 f t \N 4624 1958 Picazón, se rasca el cuello hasta quedar en carne viva +1464 2025-11-22 01:25:23.072941+00 2025-11-22 01:25:23.072948+00 f t \N 4145 1957 orina +1465 2025-11-22 01:25:23.077148+00 2025-11-22 01:25:23.077156+00 f t \N 4745 1979 vomitos y no cme hace 2 dias +1466 2025-11-22 01:25:23.08187+00 2025-11-22 01:25:23.081881+00 f t \N 5055 2035 vac. anual +1467 2025-11-22 01:25:23.087835+00 2025-11-22 01:25:23.087846+00 f t \N 4742 1976 vomitos constantes +1468 2025-11-22 01:25:23.093029+00 2025-11-22 01:25:23.093042+00 f t \N 4600 1948 Vacunación anual +1469 2025-11-22 01:25:23.098311+00 2025-11-22 01:25:23.098322+00 f t \N 4752 1980 diarrea desde el viernes, no come y toma poca agua +1470 2025-11-22 01:25:23.103586+00 2025-11-22 01:25:23.103596+00 f t \N 4601 1949 +1471 2025-11-22 01:25:23.10887+00 2025-11-22 01:25:23.10888+00 f t \N 4266 1977 posible conjuntivitis +1472 2025-11-22 01:25:23.114185+00 2025-11-22 01:25:23.114196+00 f t \N 3603 1944 Revision +1473 2025-11-22 01:25:23.119413+00 2025-11-22 01:25:23.119423+00 f t \N 4733 1975 persistencia de pulgas, ya tomo pipeta el 15/7 +1474 2025-11-22 01:25:23.124504+00 2025-11-22 01:25:23.124516+00 f t \N 4709 1971 descatar que sea piometra +1475 2025-11-22 01:25:23.129362+00 2025-11-22 01:25:23.129373+00 f t \N 4726 1973 eutanasia +1476 2025-11-22 01:25:23.13435+00 2025-11-22 01:25:23.134362+00 f t \N 4726 2038 +1477 2025-11-22 01:25:23.139344+00 2025-11-22 01:25:23.139355+00 f t \N 4689 1966 Vacunacion anual para simon y vacunacion con antirrabica para arthur y agatha +1478 2025-11-22 01:25:23.144344+00 2025-11-22 01:25:23.144354+00 f t \N 4688 1964 acunacion anual para simon y vacunacion con antirrabica para arthur y agatha +1479 2025-11-22 01:25:23.149256+00 2025-11-22 01:25:23.149266+00 f t \N 4687 1965 vacunacion anual para simon y vacunacion con antirrabica para arthur y agatha +1480 2025-11-22 01:25:23.1541+00 2025-11-22 01:25:23.154111+00 f t \N 4697 1970 dolor de espalda +1481 2025-11-22 01:25:23.159081+00 2025-11-22 01:25:23.159091+00 f t \N 2947 1928 Vacunacion anual +1482 2025-11-22 01:25:23.164046+00 2025-11-22 01:25:23.164056+00 f t \N 827 1927 Vacunacion anual +1483 2025-11-22 01:25:23.168658+00 2025-11-22 01:25:23.168669+00 f t \N 4685 1963 vacunación anual +1484 2025-11-22 01:25:23.172994+00 2025-11-22 01:25:23.173005+00 f t \N 856 1967 Revision por el cuadro en cuestion +1485 2025-11-22 01:25:23.177779+00 2025-11-22 01:25:23.17779+00 f t \N 1025 1871 Vacunación anual +1486 2025-11-22 01:25:23.183078+00 2025-11-22 01:25:23.183088+00 f t \N 4302 1968 eutanasia +1487 2025-11-22 01:25:23.188457+00 2025-11-22 01:25:23.188468+00 f t \N 4453 1908 Se detalla en el turno de Estrellita +1488 2025-11-22 01:25:23.194048+00 2025-11-22 01:25:23.194059+00 f t \N 4455 1907 +1489 2025-11-22 01:25:23.199419+00 2025-11-22 01:25:23.199427+00 f t \N 4454 1909 +1490 2025-11-22 01:25:23.20432+00 2025-11-22 01:25:23.204332+00 f t \N 4452 1906 Vacunación (2 antirrábicas, 4 triple felina) +1491 2025-11-22 01:25:23.210286+00 2025-11-22 01:25:23.210298+00 f t \N 4302 1878 el último vete que lo vio me dijo que le había dado un ACV porque se le caía la cabeza para el costado, no pudo hacerle estudios por lo agresivo que estaba, si me dio una pastilla (pregabalina) de 75 m, que le de 1/4 cada 24 hs, si bien no volvió a tener episodio de que queda duro o se le cae la cabeza para el costado, pero está siempre echado, agua toma muy poca- PX CON TEMPERAMENTO +1492 2025-11-22 01:25:23.215872+00 2025-11-22 01:25:23.215883+00 f t \N 3506 1945 vacunacion triple felina +1493 2025-11-22 01:25:23.22173+00 2025-11-22 01:25:23.221741+00 f t \N 467 1953 Eco abdominal +1494 2025-11-22 01:25:23.227632+00 2025-11-22 01:25:23.22764+00 f t \N 4676 1960 Ecografía +1495 2025-11-22 01:25:23.233259+00 2025-11-22 01:25:23.23327+00 f t \N 4664 1961 Eco abdominal +1496 2025-11-22 01:25:23.238316+00 2025-11-22 01:25:23.238326+00 f t \N 4604 1950 Está bastante asustado, pero es dócil. Cómo tengo otros gatos quisiera una evaluación a ver edad, si está castrado y si tiene alguna condición que pudiera ser contagiosa +1497 2025-11-22 01:25:23.242444+00 2025-11-22 01:25:23.242451+00 f t \N 372 1937 Traslado + laboratorio +1498 2025-11-22 01:25:23.246487+00 2025-11-22 01:25:23.246495+00 f t \N 923 1943 Vacunación antirábica +1499 2025-11-22 01:25:23.250939+00 2025-11-22 01:25:23.250946+00 f t \N 372 1936 Extracción +1500 2025-11-22 01:25:23.255366+00 2025-11-22 01:25:23.255374+00 f t \N 4619 1956 vacunacion anual +1501 2025-11-22 01:25:23.259513+00 2025-11-22 01:25:23.259521+00 f t \N 4620 1955 vacunacion anual +1502 2025-11-22 01:25:23.263633+00 2025-11-22 01:25:23.26364+00 f t \N 372 1938 Ecografía +1503 2025-11-22 01:25:23.267522+00 2025-11-22 01:25:23.267529+00 f t \N 4306 1881 +1504 2025-11-22 01:25:23.271338+00 2025-11-22 01:25:23.271349+00 f t \N 4307 1880 Vacunación anual +1505 2025-11-22 01:25:23.275413+00 2025-11-22 01:25:23.27542+00 f t \N 3916 1899 eco abdominal +1506 2025-11-22 01:25:23.279559+00 2025-11-22 01:25:23.279567+00 f t \N 4436 1904 Vacunación anual +1507 2025-11-22 01:25:23.283648+00 2025-11-22 01:25:23.283654+00 f t \N 4490 1922 Seguimiento del paciente, evaluación para realizar vacunación +1508 2025-11-22 01:25:23.287667+00 2025-11-22 01:25:23.287675+00 f t \N 4635 1959 hinchazon en su ojo y lagrimeo +1509 2025-11-22 01:25:23.291849+00 2025-11-22 01:25:23.291856+00 f t \N 467 1954 Aplicación de inyectable +1510 2025-11-22 01:25:23.295852+00 2025-11-22 01:25:23.295858+00 f t \N 1709 1947 +1511 2025-11-22 01:25:23.29979+00 2025-11-22 01:25:23.299799+00 f t \N 4316 1882 Radiografias +1512 2025-11-22 01:25:23.304235+00 2025-11-22 01:25:23.304245+00 f t \N 488 1864 4 rx +1513 2025-11-22 01:25:23.309242+00 2025-11-22 01:25:23.30925+00 f t \N 4605 1951 Hace aprox 72 horas esta como con arcadas, no llega a ser vomito y un episodio de diarrea aislado. Toma agua, come (poco), hace pis y se lo ve decaido +1514 2025-11-22 01:25:23.313759+00 2025-11-22 01:25:23.31377+00 f t \N 4556 1935 traslado + laboratorio +1515 2025-11-22 01:25:23.319295+00 2025-11-22 01:25:23.319308+00 f t \N 176 1932 Retiro y laboratorio +1516 2025-11-22 01:25:23.323478+00 2025-11-22 01:25:23.323486+00 f t \N 176 1931 Extracción de sangre +1517 2025-11-22 01:25:23.327522+00 2025-11-22 01:25:23.327529+00 f t \N 4556 1934 Extracción +1518 2025-11-22 01:25:23.331541+00 2025-11-22 01:25:23.331548+00 f t \N 467 1930 Vómitos +1519 2025-11-22 01:25:23.335736+00 2025-11-22 01:25:23.335745+00 f t \N 4562 1942 cistitis hace meses, orina con sangre +1520 2025-11-22 01:25:23.34016+00 2025-11-22 01:25:23.340166+00 f t \N 4558 1940 Ecografía abdominal +1521 2025-11-22 01:25:23.343967+00 2025-11-22 01:25:23.343973+00 f t \N 4526 1924 eco abdominal +1522 2025-11-22 01:25:23.347602+00 2025-11-22 01:25:23.347608+00 f t \N 4554 1933 ecografía abdominal +1523 2025-11-22 01:25:23.351723+00 2025-11-22 01:25:23.351729+00 f t \N 3791 1765 Fluidoterapia +1524 2025-11-22 01:25:23.355721+00 2025-11-22 01:25:23.355729+00 f t \N 1651 1921 Hongos +1525 2025-11-22 01:25:23.359874+00 2025-11-22 01:25:23.359883+00 f t \N 4495 1917 Revisión de la mascota para avanzar con la vacunación (está con parásitos) +1526 2025-11-22 01:25:23.36385+00 2025-11-22 01:25:23.363856+00 f t \N 4528 1926 +1527 2025-11-22 01:25:23.367714+00 2025-11-22 01:25:23.36772+00 f t \N 4376 1929 Retiro de orina que no se pudo realizar hoy +1528 2025-11-22 01:25:23.37181+00 2025-11-22 01:25:23.371818+00 f t \N 4528 1925 +1529 2025-11-22 01:25:23.375946+00 2025-11-22 01:25:23.375952+00 f t \N 4467 1915 Ecografía abdominal +1530 2025-11-22 01:25:23.380016+00 2025-11-22 01:25:23.380023+00 f t \N 2200 1910 control +1531 2025-11-22 01:25:23.384106+00 2025-11-22 01:25:23.384113+00 f t \N 4496 1919 está renga d euna pata y la radiografía dice que tiene estrechamiento de vértebras +1532 2025-11-22 01:25:23.388307+00 2025-11-22 01:25:23.388317+00 f t \N 4468 1916 decaimiento y problemas de huesos +1533 2025-11-22 01:25:23.392736+00 2025-11-22 01:25:23.392744+00 f t \N 4489 1913 Soy medica, parece tener una ITU comencé con amoxi clabulanico pero es muy complicado darle las pastillas 2/ día\r\nQuería que lo viesen y saber si se puede darle inyectable de depósito? +1534 2025-11-22 01:25:23.396784+00 2025-11-22 01:25:23.396791+00 f t \N 4007 1820 eco abdominal +1535 2025-11-22 01:25:23.400915+00 2025-11-22 01:25:23.400922+00 f t \N 4487 1920 Ecografía +1536 2025-11-22 01:25:23.404884+00 2025-11-22 01:25:23.40489+00 f t \N 1021 1817 Radiografías +1537 2025-11-22 01:25:23.408893+00 2025-11-22 01:25:23.4089+00 f t \N 4225 1858 Ecografía +1538 2025-11-22 01:25:23.413709+00 2025-11-22 01:25:23.413717+00 f t \N 4471 1914 No se puede levantar y llora. Cua do logra levantarse esta encorbado como gato.es un perrito de 14 anos. hace 3 meses tuvo un episodio parecido, le di media pastilla\r\n tramadol 50 mg, y meloxicam 2g también media pastilla. porque estaba tumbado intentaba levantarse y no podía y lloraba del dolor.hoy amanecio un poco mejor +1539 2025-11-22 01:25:23.418147+00 2025-11-22 01:25:23.418154+00 f t \N 4490 1918 Es un perrito que apareció de la calle, tiene lastimada la piel en algunas partes y está muy desnutrido +1540 2025-11-22 01:25:23.422078+00 2025-11-22 01:25:23.422087+00 f t \N 1710 1903 Retiro + Laboratorio +1541 2025-11-22 01:25:23.426004+00 2025-11-22 01:25:23.426013+00 f t \N 4220 1912 Resolucion de resultados +1542 2025-11-22 01:25:23.429771+00 2025-11-22 01:25:23.429777+00 f t \N 3250 1654 extracción + emisión de orden perfil general +1543 2025-11-22 01:25:23.434171+00 2025-11-22 01:25:23.434179+00 f t \N 1709 1902 Extracción y laboratorio +1544 2025-11-22 01:25:23.438096+00 2025-11-22 01:25:23.438105+00 f t \N 4376 1894 extraccion +1545 2025-11-22 01:25:23.442162+00 2025-11-22 01:25:23.442168+00 f t \N 3735 1911 Resolución de estudios +1546 2025-11-22 01:25:23.446036+00 2025-11-22 01:25:23.446043+00 f t \N 4417 1900 Hace 3 días que está comiendo con dificultad. Tiene hambre, pero no le convence la comida. Y entre ayer y hoy vómito 2 veces. Además notamos desde el 1er día una molestia en una oreja que se rasca. Es VIF positivo y come Barf +1547 2025-11-22 01:25:23.449988+00 2025-11-22 01:25:23.449994+00 f t \N 4382 1897 Tumor de mama avanzado progresivo. Último coágulograma cardiología y sangre ya tiene. Revision de resultados para evaluar cirugia +1548 2025-11-22 01:25:23.453876+00 2025-11-22 01:25:23.453883+00 f t \N 3249 1905 Desde el viernes está yendo continuamente al baño a hacer pis por más que no tiene nada para hacer. Estuvo con un cálculo en la vejiga que le generaba inflamación, no ha habido infección hasta ahora ni obstruccion de la vía urinaria.\r\n\r\nHasta ahora una inyección de tramadol + meloxicam es lo más eficiente para solucionar la urgencia. +1549 2025-11-22 01:25:23.457528+00 2025-11-22 01:25:23.457536+00 f t \N 4253 1867 +1550 2025-11-22 01:25:23.461394+00 2025-11-22 01:25:23.4614+00 f t \N 4254 1866 Vacunación anual +1551 2025-11-22 01:25:23.46509+00 2025-11-22 01:25:23.465098+00 f t \N 4421 1901 Vacunación triple felina+ corte de garras +1552 2025-11-22 01:25:23.469222+00 2025-11-22 01:25:23.469228+00 f t \N 488 1884 extraccion de sangre y orina +1553 2025-11-22 01:25:23.473101+00 2025-11-22 01:25:23.473107+00 f t \N 488 1863 PGC con Orina + traslado +1554 2025-11-22 01:25:23.47675+00 2025-11-22 01:25:23.476757+00 f t \N 4391 1898 vomitos por 5 veces seguidas +1555 2025-11-22 01:25:23.480646+00 2025-11-22 01:25:23.480652+00 f t \N 4386 1896 dolor de oidos +1556 2025-11-22 01:25:23.484371+00 2025-11-22 01:25:23.484379+00 f t \N 4145 1889 Revision de analisis +1557 2025-11-22 01:25:23.488249+00 2025-11-22 01:25:23.488255+00 f t \N 372 1891 bulto en la zona del pecho +1558 2025-11-22 01:25:23.491969+00 2025-11-22 01:25:23.491975+00 f t \N 3688 1890 revision de placa y corte de garras +1559 2025-11-22 01:25:23.495701+00 2025-11-22 01:25:23.495707+00 f t \N 4350 1893 Viene muy mal estomacalmente, vomita bilis, hace caca sangre +1560 2025-11-22 01:25:23.499399+00 2025-11-22 01:25:23.499405+00 f t \N 4376 1895 +1561 2025-11-22 01:25:23.502972+00 2025-11-22 01:25:23.502978+00 f t \N 4321 1885 Vacunacion anual +1562 2025-11-22 01:25:23.506965+00 2025-11-22 01:25:23.506972+00 f t \N 4344 1888 Paciente viejita, antecedentes de melanoma con mandibulectomia hace 2 años, actualmente con sme paraneoplasico ciega. Evolucionó en los últimos 2 meses con deterioro en su cuadro general, desde ayer no se levanta y no come le doy agua en jeringa +1563 2025-11-22 01:25:23.510846+00 2025-11-22 01:25:23.510852+00 f t \N 1709 1859 Ecografía +1564 2025-11-22 01:25:23.514917+00 2025-11-22 01:25:23.514924+00 f t \N 4305 1879 Control clínico completo, lo adoptamos hace un mes y notamos ciertas cosas que queremos evaluar. +1565 2025-11-22 01:25:23.518734+00 2025-11-22 01:25:23.518741+00 f t \N 4341 1887 Desde ayer la perra está con vomito y diarrea sin ánimo de comer +1566 2025-11-22 01:25:23.523588+00 2025-11-22 01:25:23.523597+00 f t \N 176 1883 Molestia en oidos +1567 2025-11-22 01:25:23.528832+00 2025-11-22 01:25:23.528841+00 f t \N 4260 1870 Vacunación anual +1568 2025-11-22 01:25:23.534199+00 2025-11-22 01:25:23.534207+00 f t \N 4325 1886 Eutanasia +1569 2025-11-22 01:25:23.538639+00 2025-11-22 01:25:23.538647+00 f t \N 3232 1811 PGC S/O + TRASLADO +1570 2025-11-22 01:25:23.542508+00 2025-11-22 01:25:23.542515+00 f t \N 3232 1810 Extracción de sangre +1571 2025-11-22 01:25:23.546396+00 2025-11-22 01:25:23.546402+00 f t \N 4292 1877 Telita azulada en los ojos +1572 2025-11-22 01:25:23.550367+00 2025-11-22 01:25:23.550374+00 f t \N 4259 1869 Vacunación anual +1573 2025-11-22 01:25:23.554191+00 2025-11-22 01:25:23.554197+00 f t \N 1714 1841 Perfil Hemostatico Prequirurgico+ traslado de muestra +1574 2025-11-22 01:25:23.558031+00 2025-11-22 01:25:23.558037+00 f t \N 4184 1848 control y vacunación anual +1575 2025-11-22 01:25:23.562002+00 2025-11-22 01:25:23.562008+00 f t \N 1967 1849 +1576 2025-11-22 01:25:23.566078+00 2025-11-22 01:25:23.566085+00 f t \N 1510 1823 Vacuna 3er dosis Vilef +1577 2025-11-22 01:25:23.570011+00 2025-11-22 01:25:23.570018+00 f t \N 4126 1838 Vacunación anual + Bordetella +1578 2025-11-22 01:25:23.573951+00 2025-11-22 01:25:23.573957+00 f t \N 3965 1814 Vacunación con séxtuple +1579 2025-11-22 01:25:23.578099+00 2025-11-22 01:25:23.578105+00 f t \N 4125 1839 +1580 2025-11-22 01:25:23.582197+00 2025-11-22 01:25:23.582204+00 f t \N 1714 1840 Extraccion +1581 2025-11-22 01:25:23.586006+00 2025-11-22 01:25:23.586013+00 f t \N 4285 1876 Vómitos y falta de apetito +1582 2025-11-22 01:25:23.59012+00 2025-11-22 01:25:23.590126+00 f t \N 4186 1850 extraccion de sangre +1583 2025-11-22 01:25:23.594374+00 2025-11-22 01:25:23.59438+00 f t \N 4186 1851 +1584 2025-11-22 01:25:23.598123+00 2025-11-22 01:25:23.598131+00 f t \N 4270 1874 Retiro de muestras mas laboratorio +1585 2025-11-22 01:25:23.602495+00 2025-11-22 01:25:23.602504+00 f t \N 4122 1833 Consulta con endocrinologa- px con cushing, se le hincha mucho la panza y hace mucho pis +1586 2025-11-22 01:25:23.60663+00 2025-11-22 01:25:23.606637+00 f t \N 4270 1873 Extracción +1587 2025-11-22 01:25:23.610496+00 2025-11-22 01:25:23.610503+00 f t \N 4266 1872 Eco abdominal +1589 2025-11-22 01:25:23.618338+00 2025-11-22 01:25:23.618344+00 f t \N 4277 1875 no come hace 3 dias +1590 2025-11-22 01:25:23.622348+00 2025-11-22 01:25:23.622356+00 f t \N 488 1861 Eco abdominal +1591 2025-11-22 01:25:23.626323+00 2025-11-22 01:25:23.62633+00 f t \N 488 1862 Extraccion +1592 2025-11-22 01:25:23.630344+00 2025-11-22 01:25:23.630351+00 f t \N 128 1834 Control clinico y drenaje de glandulas +1593 2025-11-22 01:25:23.634257+00 2025-11-22 01:25:23.634265+00 f t \N 4255 1868 Vómitos +1594 2025-11-22 01:25:23.638394+00 2025-11-22 01:25:23.638401+00 f t \N 4250 1865 Eutanasia +1595 2025-11-22 01:25:23.642304+00 2025-11-22 01:25:23.642311+00 f t \N 3954 1829 Consulta de estado +1596 2025-11-22 01:25:23.646371+00 2025-11-22 01:25:23.646378+00 f t \N 4145 1855 Perfil general completo con orina + Relacion proteina/creatinina+ Traslado +1597 2025-11-22 01:25:23.650233+00 2025-11-22 01:25:23.650239+00 f t \N 4145 1854 extraccion +1598 2025-11-22 01:25:23.654185+00 2025-11-22 01:25:23.654192+00 f t \N 146 1860 Corte de garras +1599 2025-11-22 01:25:23.658156+00 2025-11-22 01:25:23.658164+00 f t \N 4193 1853 Control clinico + extraccion +1600 2025-11-22 01:25:23.6621+00 2025-11-22 01:25:23.662106+00 f t \N 4178 1847 Retiro de muestras + laboratorio +1601 2025-11-22 01:25:23.66604+00 2025-11-22 01:25:23.666047+00 f t \N 4124 1835 Se rasca y se esta sacando el pelo, tiene colorado podria ser una reaccion alergica, un hongo o alguna otra cosa +1602 2025-11-22 01:25:23.669994+00 2025-11-22 01:25:23.67+00 f t \N 4191 1852 Consulta por perrito en mal estado general, muy flaco y con un ojito lastimado +1603 2025-11-22 01:25:23.674212+00 2025-11-22 01:25:23.674219+00 f t \N 4072 1832 Tiene mucho rascado y se esta pelando +1604 2025-11-22 01:25:23.678108+00 2025-11-22 01:25:23.678115+00 f t \N 4178 1846 Extracción +1605 2025-11-22 01:25:23.682007+00 2025-11-22 01:25:23.682014+00 f t \N 3916 1826 extraccion de sangre +1606 2025-11-22 01:25:23.685914+00 2025-11-22 01:25:23.685921+00 f t \N 3916 1827 perfil hepatico + calcio + fósforo + ionograma serico + AOC y UPC +1607 2025-11-22 01:25:23.689878+00 2025-11-22 01:25:23.689884+00 f t \N 4013 1825 extraccion +1608 2025-11-22 01:25:23.693778+00 2025-11-22 01:25:23.693785+00 f t \N 4197 1856 Eutanasia +1609 2025-11-22 01:25:23.697572+00 2025-11-22 01:25:23.697578+00 f t \N 4145 1843 Orina por todos lados +1610 2025-11-22 01:25:23.701411+00 2025-11-22 01:25:23.701417+00 f t \N 3951 1809 Eco abdominal +1611 2025-11-22 01:25:23.70519+00 2025-11-22 01:25:23.705197+00 f t \N 4146 1844 Se rasca intensamente los oidos, gira la cabeza para el lado en que le duele +1612 2025-11-22 01:25:23.709331+00 2025-11-22 01:25:23.709338+00 f t \N 488 1842 Dolor en una pata, no la apoya bien +1613 2025-11-22 01:25:23.713198+00 2025-11-22 01:25:23.713205+00 f t \N 1325 1845 Está con vómitos +1614 2025-11-22 01:25:23.71731+00 2025-11-22 01:25:23.717318+00 f t \N 3232 1812 Eco abdominal +1615 2025-11-22 01:25:23.721144+00 2025-11-22 01:25:23.721151+00 f t \N 3880 1789 búsqueda de segunda opinión\r\ntiene tumores en los intestinos. No es operable me dijeron. Los estudios de sangre no dieron mal. Solo esta un poco anemica +1616 2025-11-22 01:25:23.725048+00 2025-11-22 01:25:23.725056+00 f t \N 3148 1821 Control y revision de analisis +1617 2025-11-22 01:25:23.729012+00 2025-11-22 01:25:23.729019+00 f t \N 2547 1547 Resfuerzo de la sextuple +1618 2025-11-22 01:25:23.733018+00 2025-11-22 01:25:23.733025+00 f t \N 3560 1828 Revisión de los resultados +1619 2025-11-22 01:25:23.736947+00 2025-11-22 01:25:23.736954+00 f t \N 4100 1837 eco abdominal +1620 2025-11-22 01:25:23.740789+00 2025-11-22 01:25:23.740795+00 f t \N 4131 1836 eco abdominal +1621 2025-11-22 01:25:23.744599+00 2025-11-22 01:25:23.744606+00 f t \N 4013 1824 vacunacion anual y certificado de salud +1622 2025-11-22 01:25:23.748681+00 2025-11-22 01:25:23.748689+00 f t \N 3839 1778 Px se encuentra estresada, consulta para descartar causas físicas +1623 2025-11-22 01:25:23.752767+00 2025-11-22 01:25:23.752774+00 f t \N 821 1599 Limpieza dental +1624 2025-11-22 01:25:23.756614+00 2025-11-22 01:25:23.756621+00 f t \N 4006 1819 Presenta e pene inflamado, como infeccion, hoy duro +1625 2025-11-22 01:25:23.760528+00 2025-11-22 01:25:23.760536+00 f t \N 4011 1830 Ecografía abdominal +1626 2025-11-22 01:25:23.764444+00 2025-11-22 01:25:23.76445+00 f t \N 4026 1831 Urgencia por choque y orina con sangrado +1627 2025-11-22 01:25:23.768191+00 2025-11-22 01:25:23.768198+00 f t \N 3484 1696 Control+ corte de garras +1628 2025-11-22 01:25:23.772415+00 2025-11-22 01:25:23.772422+00 f t \N 2661 1697 +1629 2025-11-22 01:25:23.776185+00 2025-11-22 01:25:23.776191+00 f t \N 3916 1816 Fluidoterapia +1630 2025-11-22 01:25:23.780081+00 2025-11-22 01:25:23.780088+00 f t \N 2483 1807 Control +1631 2025-11-22 01:25:23.784117+00 2025-11-22 01:25:23.784123+00 f t \N 3735 1770 Coproparasitologico +1632 2025-11-22 01:25:23.789045+00 2025-11-22 01:25:23.789053+00 f t \N 3470 1762 Eutanasia +1633 2025-11-22 01:25:23.793648+00 2025-11-22 01:25:23.793655+00 f t \N 1709 1792 Avance del px y medición de bulto para cirugía +1634 2025-11-22 01:25:23.798125+00 2025-11-22 01:25:23.798132+00 f t \N 3896 1795 Corte de Garra\r\nConsulta Clinica\r\nDesparasitacion interna- externa +1635 2025-11-22 01:25:23.80249+00 2025-11-22 01:25:23.802496+00 f t \N 3688 1753 Radiografía - Placas +1636 2025-11-22 01:25:23.806944+00 2025-11-22 01:25:23.806952+00 f t \N 2549 1796 T4 +1637 2025-11-22 01:25:23.811883+00 2025-11-22 01:25:23.811891+00 f t \N 3558 1763 Retiro de puntos +1638 2025-11-22 01:25:23.816549+00 2025-11-22 01:25:23.816558+00 f t \N 827 1771 Extracción de puntos +1639 2025-11-22 01:25:23.820802+00 2025-11-22 01:25:23.82081+00 f t \N 2947 1772 Extracción de puntos +1640 2025-11-22 01:25:23.825119+00 2025-11-22 01:25:23.825127+00 f t \N 3970 1818 Eco abdominal +1641 2025-11-22 01:25:23.829047+00 2025-11-22 01:25:23.829055+00 f t \N 3935 1804 Traslado + pgc s/o +1642 2025-11-22 01:25:23.833464+00 2025-11-22 01:25:23.833473+00 f t \N 3608 1728 +1643 2025-11-22 01:25:23.838002+00 2025-11-22 01:25:23.83801+00 f t \N 1651 1822 +1644 2025-11-22 01:25:23.842103+00 2025-11-22 01:25:23.84211+00 f t \N 3922 1800 Hinchazón en la boca +1645 2025-11-22 01:25:23.846185+00 2025-11-22 01:25:23.846192+00 f t \N 3919 1799 Diarrea con sangre +1646 2025-11-22 01:25:23.849944+00 2025-11-22 01:25:23.84995+00 f t \N 3936 1805 Se rasca mucho y se pelo +1647 2025-11-22 01:25:23.855114+00 2025-11-22 01:25:23.85512+00 f t \N 3841 1783 +1648 2025-11-22 01:25:23.859369+00 2025-11-22 01:25:23.859377+00 f t \N 3925 1801 Eco abdominal +1649 2025-11-22 01:25:23.863578+00 2025-11-22 01:25:23.863585+00 f t \N 3223 1766 Seguimiento de tratamiento +1650 2025-11-22 01:25:23.867589+00 2025-11-22 01:25:23.867596+00 f t \N 3937 1806 eco abdominal de urg +1651 2025-11-22 01:25:23.871349+00 2025-11-22 01:25:23.871356+00 f t \N 3787 1793 Radiografías +1652 2025-11-22 01:25:23.875624+00 2025-11-22 01:25:23.875632+00 f t \N 3878 1787 Traslado+ PCR VILEF +1653 2025-11-22 01:25:23.879438+00 2025-11-22 01:25:23.879445+00 f t \N 3911 1797 px con vómitos +1654 2025-11-22 01:25:23.883254+00 2025-11-22 01:25:23.883263+00 f t \N 3932 1802 eco abdominal +1655 2025-11-22 01:25:23.887308+00 2025-11-22 01:25:23.887316+00 f t \N 3788 1759 en la zona de los bigotes del lado derecho le falta pelo +1656 2025-11-22 01:25:23.891232+00 2025-11-22 01:25:23.891239+00 f t \N 3878 1786 Emisión de orden PCR VILEF + extracción +1657 2025-11-22 01:25:23.895066+00 2025-11-22 01:25:23.895074+00 f t \N 3859 1785 Eco abdominal +1658 2025-11-22 01:25:23.89878+00 2025-11-22 01:25:23.898787+00 f t \N 788 1572 Refuerzo de vacunacion + antirrabica +1659 2025-11-22 01:25:23.902986+00 2025-11-22 01:25:23.902993+00 f t \N 3916 1798 Está muy viejita, se escondió no quiere salir ni comer, solo sale toma algo de agua y se vuelve a esconder +1660 2025-11-22 01:25:23.906817+00 2025-11-22 01:25:23.906824+00 f t \N 3935 1803 Extracción de sangre +1661 2025-11-22 01:25:23.910746+00 2025-11-22 01:25:23.910753+00 f t \N 3560 1769 PGC S/o= $33.000\r\nT4 TOTAL: 16000\r\nTralado :$12000\r\nCopropasitologico:$12000 +1662 2025-11-22 01:25:23.914718+00 2025-11-22 01:25:23.914726+00 f t \N 3560 1768 Extraccion +1663 2025-11-22 01:25:23.918769+00 2025-11-22 01:25:23.918776+00 f t \N 3906 1808 esta decaído, la mayor parte del tiempo acostado, impresiona dificultad o dolor en cadera/ pelvis, patas traseras. +1664 2025-11-22 01:25:23.922602+00 2025-11-22 01:25:23.922609+00 f t \N 3826 1773 Vacunación anual +1665 2025-11-22 01:25:23.926543+00 2025-11-22 01:25:23.92655+00 f t \N 3830 1774 +1666 2025-11-22 01:25:23.930486+00 2025-11-22 01:25:23.930492+00 f t \N 3858 1788 tiene episodios de tos pero se atraganta incluso a veces lleva a vomitar,Supe quedar con la lengua afuera.\r\nYa lo vio una neumonologa que me dió un Puff con corticoide considerando q podría ser origen alérgico. Pero es imposible aplicarle la máscara. +1667 2025-11-22 01:25:23.934605+00 2025-11-22 01:25:23.934612+00 f t \N 2549 1790 Resolución de estudios +1668 2025-11-22 01:25:23.938432+00 2025-11-22 01:25:23.938439+00 f t \N 2872 1794 2 muestras de materia fecal +1669 2025-11-22 01:25:23.942528+00 2025-11-22 01:25:23.942534+00 f t \N 3873 1791 Comisión +1670 2025-11-22 01:25:23.946422+00 2025-11-22 01:25:23.946428+00 f t \N 3873 1784 Eutanasia +1671 2025-11-22 01:25:23.950212+00 2025-11-22 01:25:23.950219+00 f t \N 3849 1780 Gato se cayó hace una semana, duerme más de lo debido, no está tomando líquidos. Charly apareció el año pasado a casa y no tenemos un estudio de él solo está castrado, es muy miedoso +1672 2025-11-22 01:25:23.954133+00 2025-11-22 01:25:23.95414+00 f t \N 3836 1776 Eutanasia +1673 2025-11-22 01:25:23.957994+00 2025-11-22 01:25:23.958001+00 f t \N 3787 1775 Eco abdominal +1674 2025-11-22 01:25:23.961844+00 2025-11-22 01:25:23.961851+00 f t \N 3632 1730 control +1675 2025-11-22 01:25:23.965657+00 2025-11-22 01:25:23.965663+00 f t \N 3838 1777 Un gato prestado no castrado de unos 4/5 años , grita las 24 h , pensé que había entrado en celo … pero hace 20/25 días que está así . +1676 2025-11-22 01:25:23.969714+00 2025-11-22 01:25:23.969722+00 f t \N 3841 1779 Le cuesta caminar aveces camina otras se quiere arrastrar observe que le cuesta acostarse, el pelo en la parte del lado de la pierna que parece que le duele tiene como anudado +1677 2025-11-22 01:25:23.973647+00 2025-11-22 01:25:23.973654+00 f t \N 3722 1750 Vacunación de la Triple Felina +1678 2025-11-22 01:25:23.977484+00 2025-11-22 01:25:23.977491+00 f t \N 1150 1720 Consulta dermatológica +1679 2025-11-22 01:25:23.981756+00 2025-11-22 01:25:23.981764+00 f t \N 3653 1737 Control clinico por inflamacion de encias +1680 2025-11-22 01:25:23.986139+00 2025-11-22 01:25:23.986146+00 f t \N 3648 1740 control clinico por perdida de peso +1681 2025-11-22 01:25:23.990259+00 2025-11-22 01:25:23.990266+00 f t \N 821 1615 Traslado de Muestra: $12.000\r\nPerfil prequirurgico:$66.000 +1682 2025-11-22 01:25:23.994632+00 2025-11-22 01:25:23.99464+00 f t \N 3648 1739 control clinico por perdida de peso +1683 2025-11-22 01:25:23.999653+00 2025-11-22 01:25:23.999663+00 f t \N 3757 1757 +1684 2025-11-22 01:25:24.004163+00 2025-11-22 01:25:24.00417+00 f t \N 3793 1764 Eco abdominal +1685 2025-11-22 01:25:24.008894+00 2025-11-22 01:25:24.008902+00 f t \N 3758 1756 Vacunación antirábica +1686 2025-11-22 01:25:24.013369+00 2025-11-22 01:25:24.013377+00 f t \N 2881 1767 Secrecion de moco +1687 2025-11-22 01:25:24.017891+00 2025-11-22 01:25:24.017903+00 f t \N 3787 1761 Rescatamos a una perrita preñada está por tener..necesito vete a domicilio no quiere caminar tiene mucho miedo .. +1688 2025-11-22 01:25:24.023362+00 2025-11-22 01:25:24.023373+00 f t \N 3596 1758 Radiografías +1689 2025-11-22 01:25:24.0276+00 2025-11-22 01:25:24.02761+00 f t \N 3735 1752 Defecta con sangre +1690 2025-11-22 01:25:24.031769+00 2025-11-22 01:25:24.031777+00 f t \N 3677 1747 vac. anual +1691 2025-11-22 01:25:24.036081+00 2025-11-22 01:25:24.03609+00 f t \N 3678 1748 Consulta clinica porque se rasca atras de las orejas y tiene un poco pelado +1692 2025-11-22 01:25:24.040271+00 2025-11-22 01:25:24.040278+00 f t \N 3611 1742 +1693 2025-11-22 01:25:24.044665+00 2025-11-22 01:25:24.044673+00 f t \N 2549 1733 Traslado+laboratorio +1694 2025-11-22 01:25:24.048894+00 2025-11-22 01:25:24.048903+00 f t \N 3709 1751 Hace una semana tiene alguna que otra vez vomitó apenas come. Esporádicos. Ayer vomitó luego de comer varias veces . Luego poco apetito y decaimiento +1695 2025-11-22 01:25:24.05382+00 2025-11-22 01:25:24.053828+00 f t \N 2549 1732 Extracción de sangre +1696 2025-11-22 01:25:24.058512+00 2025-11-22 01:25:24.058522+00 f t \N 1021 1726 Consulta clínica, cuadro con secreciones mucosa, tos +1697 2025-11-22 01:25:24.06287+00 2025-11-22 01:25:24.062878+00 f t \N 820 1598 +1698 2025-11-22 01:25:24.066878+00 2025-11-22 01:25:24.066886+00 f t \N 3338 1678 Vacunación Antirrábica +1699 2025-11-22 01:25:24.071002+00 2025-11-22 01:25:24.071011+00 f t \N 2869 1701 Vacunación antirábica +1700 2025-11-22 01:25:24.075567+00 2025-11-22 01:25:24.075574+00 f t \N 820 1597 +1701 2025-11-22 01:25:24.079836+00 2025-11-22 01:25:24.079844+00 f t \N 308 1755 Vacunación anual +1702 2025-11-22 01:25:24.084133+00 2025-11-22 01:25:24.084142+00 f t \N 628 1754 Control por descompostura +1703 2025-11-22 01:25:24.088243+00 2025-11-22 01:25:24.088251+00 f t \N 3722 1749 Vacunación de la Triple Felina +1704 2025-11-22 01:25:24.093757+00 2025-11-22 01:25:24.093767+00 f t \N 3689 1745 Llora continuamente +1705 2025-11-22 01:25:24.098918+00 2025-11-22 01:25:24.098926+00 f t \N 3688 1744 Control general por tos +1706 2025-11-22 01:25:24.103239+00 2025-11-22 01:25:24.103248+00 f t \N 3654 1738 Vacunación anual +1707 2025-11-22 01:25:24.107543+00 2025-11-22 01:25:24.107551+00 f t \N 3690 1746 Ecografía abdominal en centro +1708 2025-11-22 01:25:24.111964+00 2025-11-22 01:25:24.111974+00 f t \N 3560 1741 Eco abdominal por regurgitaciones, vómitos, diarrea y perdida de peso +1709 2025-11-22 01:25:24.116689+00 2025-11-22 01:25:24.1167+00 f t \N 3687 1743 Ecografía abdominal +1710 2025-11-22 01:25:24.121245+00 2025-11-22 01:25:24.121253+00 f t \N 2567 1667 Vacunacion anual +1711 2025-11-22 01:25:24.125747+00 2025-11-22 01:25:24.125755+00 f t \N 2623 1524 +1712 2025-11-22 01:25:24.130111+00 2025-11-22 01:25:24.13012+00 f t \N 2622 1523 vacunación anual +1713 2025-11-22 01:25:24.134141+00 2025-11-22 01:25:24.13415+00 f t \N 3603 1725 Dolor de oidos +1714 2025-11-22 01:25:24.138235+00 2025-11-22 01:25:24.138243+00 f t \N 3602 1724 Vacunación anual +1715 2025-11-22 01:25:24.14244+00 2025-11-22 01:25:24.142447+00 f t \N 3339 1679 Vacunación anual +1716 2025-11-22 01:25:24.146446+00 2025-11-22 01:25:24.146455+00 f t \N 3560 1719 Hace un año tuve a ni bebe y desde hace unos 6 meses que viene vomitando mucho. Bajo de peso. Cambiamos la comida y sigue vomitando +1717 2025-11-22 01:25:24.150788+00 2025-11-22 01:25:24.150796+00 f t \N 962 1702 mascota con edad, quiere saber si hay que darle vitaminas, etc +1718 2025-11-22 01:25:24.154858+00 2025-11-22 01:25:24.154867+00 f t \N 3589 1718 Está vomitando la comida hace tres días, a veces en el vómito se ven los granitos de la comida balanceada y a veces es más diluido. Sus dueños están de viaje y ella está siendo cuidada por familiares, pensamos que puede ser estrés. +1719 2025-11-22 01:25:24.159078+00 2025-11-22 01:25:24.159085+00 f t \N 3643 1734 Hinchazon en la zona de los ojos +1720 2025-11-22 01:25:24.163629+00 2025-11-22 01:25:24.163636+00 f t \N 3598 1721 +1721 2025-11-22 01:25:24.167874+00 2025-11-22 01:25:24.167884+00 f t \N 3417 1680 Le cuesta levantarse con sus patas traseras +1722 2025-11-22 01:25:24.172406+00 2025-11-22 01:25:24.172414+00 f t \N 3149 1622 Endocrinología +1723 2025-11-22 01:25:24.176774+00 2025-11-22 01:25:24.176782+00 f t \N 3609 1729 Tos como con catarro y el maullido +1724 2025-11-22 01:25:24.180917+00 2025-11-22 01:25:24.180925+00 f t \N 3553 1709 Vacunación de la Antirrábica + corte de Garras +1725 2025-11-22 01:25:24.185451+00 2025-11-22 01:25:24.185459+00 f t \N 3482 1700 Ecodoppler +1726 2025-11-22 01:25:24.18939+00 2025-11-22 01:25:24.189398+00 f t \N 3558 1713 Está encerrada en una esquina adentro de un rack de cables y no la podemos sacar. Fue operada hace 2 días y desde ahí no come ni va al baño. Está petrificada y no la podemos sacar. Necesitamos que alguien nos ayude a sacarla de ahí y poder ver cómo está de la cirugía y darle comida y agua +1727 2025-11-22 01:25:24.193979+00 2025-11-22 01:25:24.193987+00 f t \N 3601 1723 Esta con calmantes orales pero hoy no quiere comer y no le puedo dar sus calmantes. +1728 2025-11-22 01:25:24.198741+00 2025-11-22 01:25:24.198752+00 f t \N 3506 1704 Control postrescate +1729 2025-11-22 01:25:24.203826+00 2025-11-22 01:25:24.203836+00 f t \N 534 1722 control clinico +1730 2025-11-22 01:25:24.208368+00 2025-11-22 01:25:24.208375+00 f t \N 2872 1703 antiparasitario y consulta por analisis extra por otros parasitos +1731 2025-11-22 01:25:24.212755+00 2025-11-22 01:25:24.212762+00 f t \N 3585 1715 Dolores en los huesos +1732 2025-11-22 01:25:24.217303+00 2025-11-22 01:25:24.21731+00 f t \N 3587 1716 Eutanasia +1733 2025-11-22 01:25:24.221272+00 2025-11-22 01:25:24.221279+00 f t \N 320 1574 emisión de orden para perfil general completo s/o y extracción de sangre +1734 2025-11-22 01:25:24.225603+00 2025-11-22 01:25:24.22561+00 f t \N 3442 1717 Comisión +1735 2025-11-22 01:25:24.230156+00 2025-11-22 01:25:24.230165+00 f t \N 3583 1714 alcula que tiene artrosis, le cuesta andar por la edad, lo nota muy caido, come y toma agua, pero le cuesta la movilidad de las patas delanteras, come acelerado y termina vomitando. +1736 2025-11-22 01:25:24.234769+00 2025-11-22 01:25:24.234776+00 f t \N 3442 1711 Eutanasia +1737 2025-11-22 01:25:24.238948+00 2025-11-22 01:25:24.238956+00 f t \N 3415 1727 Diagnostico de gestación +1738 2025-11-22 01:25:24.242761+00 2025-11-22 01:25:24.242768+00 f t \N 3551 1712 Ecografía Abdominal +1739 2025-11-22 01:25:24.246742+00 2025-11-22 01:25:24.246749+00 f t \N 3537 1710 Ecografía abdominal +1740 2025-11-22 01:25:24.251003+00 2025-11-22 01:25:24.25101+00 f t \N 3552 1708 Presenta Vómitos y sangrado, decaímiento +1741 2025-11-22 01:25:24.255774+00 2025-11-22 01:25:24.255782+00 f t \N 3550 1707 Tiene artrosis regenerativa, presenra decaimiento +1742 2025-11-22 01:25:24.260528+00 2025-11-22 01:25:24.260536+00 f t \N 3549 1706 Eutanasia +1743 2025-11-22 01:25:24.265111+00 2025-11-22 01:25:24.265119+00 f t \N 3517 1705 eco abdominal +1744 2025-11-22 01:25:24.26961+00 2025-11-22 01:25:24.269618+00 f t \N 3452 1691 Caida del pelo +1745 2025-11-22 01:25:24.273813+00 2025-11-22 01:25:24.273821+00 f t \N 320 1731 Perfil general sin orina +1746 2025-11-22 01:25:24.277801+00 2025-11-22 01:25:24.277813+00 f t \N 3296 1669 Vacunacion anual + corte de garra +1747 2025-11-22 01:25:24.281639+00 2025-11-22 01:25:24.281646+00 f t \N 3442 1688 Dx de tiroides,protusiones por el cuerpo. +1748 2025-11-22 01:25:24.285842+00 2025-11-22 01:25:24.285848+00 f t \N 3432 1685 Desparasitación interna y externa más vacunación antirrábica +1749 2025-11-22 01:25:24.29003+00 2025-11-22 01:25:24.290037+00 f t \N 3457 1692 Eco abdominal +1750 2025-11-22 01:25:24.294006+00 2025-11-22 01:25:24.294014+00 f t \N 3166 1683 Comenzó con síntomas de diarrea nuevamente +1751 2025-11-22 01:25:24.298306+00 2025-11-22 01:25:24.298314+00 f t \N 3479 1699 Control por edad +1752 2025-11-22 01:25:24.302379+00 2025-11-22 01:25:24.302386+00 f t \N 3470 1695 Presenta secuelas post síndrome vestibular ocurrido hace ya 2 o 3 años. En este momento Lula ya no controla esfinteres y se vive haciendo sus necesidades encima o en cualquier parte y está como perdida. Ella ya tiene mas de 20 años. De apetito esta bien. Osea la consulta es mas que nada para saber si hay que seguir así o ya no es una vida digna para ella. +1753 2025-11-22 01:25:24.306715+00 2025-11-22 01:25:24.306721+00 f t \N 3475 1694 px con vòmitos +1754 2025-11-22 01:25:24.310659+00 2025-11-22 01:25:24.310666+00 f t \N 3426 1693 Radiografìas +1755 2025-11-22 01:25:24.314855+00 2025-11-22 01:25:24.314866+00 f t \N 3487 1698 Molestia en pata trasera +1756 2025-11-22 01:25:24.319708+00 2025-11-22 01:25:24.319716+00 f t \N 3430 1682 Rengueo +1757 2025-11-22 01:25:24.324218+00 2025-11-22 01:25:24.324226+00 f t \N 3207 1659 Consulta oftalmológica +1758 2025-11-22 01:25:24.328501+00 2025-11-22 01:25:24.328509+00 f t \N 3449 1687 Ecografía Abdominal +1759 2025-11-22 01:25:24.332457+00 2025-11-22 01:25:24.332465+00 f t \N 3431 1684 Vómitos continuos desde ayer +1760 2025-11-22 01:25:24.33691+00 2025-11-22 01:25:24.336918+00 f t \N 3420 1681 Bulto que supura +1761 2025-11-22 01:25:24.341446+00 2025-11-22 01:25:24.341457+00 f t \N 3400 1690 Lesion supurativa +1762 2025-11-22 01:25:24.345723+00 2025-11-22 01:25:24.345732+00 f t \N 3448 1686 posible dermatitis, tiene pedazos de pelaje faltante +1763 2025-11-22 01:25:24.349861+00 2025-11-22 01:25:24.349869+00 f t \N 3455 1689 Dificultad en movilidad de la patas traseras. +1764 2025-11-22 01:25:24.353996+00 2025-11-22 01:25:24.354004+00 f t \N 3205 1637 Consulta dermatológica +1765 2025-11-22 01:25:24.358651+00 2025-11-22 01:25:24.358661+00 f t \N 355 1735 Control clinico +1766 2025-11-22 01:25:24.362894+00 2025-11-22 01:25:24.362902+00 f t \N 3286 1664 Vacunación anual +1767 2025-11-22 01:25:24.367387+00 2025-11-22 01:25:24.367395+00 f t \N 3336 1675 granos y Costras en la zona del cuello +1768 2025-11-22 01:25:24.371357+00 2025-11-22 01:25:24.371365+00 f t \N 3104 1677 Lastimadura en el lomo +1769 2025-11-22 01:25:24.375116+00 2025-11-22 01:25:24.375124+00 f t \N 3270 1676 Urgencia por Vómitos y diarrea continos desde ayer +1770 2025-11-22 01:25:24.378979+00 2025-11-22 01:25:24.378986+00 f t \N 3335 1674 Ruidos extraños, retraído y no quiere comer +1771 2025-11-22 01:25:24.382904+00 2025-11-22 01:25:24.382911+00 f t \N 1651 1658 Pack de visitas- visita N°2 +1772 2025-11-22 01:25:24.387407+00 2025-11-22 01:25:24.387415+00 f t \N 3279 1660 heces con sangre +1773 2025-11-22 01:25:24.39182+00 2025-11-22 01:25:24.391828+00 f t \N 3152 1650 Vacunación anual +1774 2025-11-22 01:25:24.396369+00 2025-11-22 01:25:24.396376+00 f t \N 3297 1670 Falta de apetito- tos +1775 2025-11-22 01:25:24.40049+00 2025-11-22 01:25:24.400496+00 f t \N 3289 1666 Eutanasia +1776 2025-11-22 01:25:24.404639+00 2025-11-22 01:25:24.404646+00 f t \N 3291 1668 Desde el miércoles tiene falta de apetito y tiembla. Toma agua y hace pis y caca de manera normal +1777 2025-11-22 01:25:24.40869+00 2025-11-22 01:25:24.4087+00 f t \N 3257 1656 Decaimiento general, con perdida del apetito, baja ingesta de agua +1778 2025-11-22 01:25:24.41372+00 2025-11-22 01:25:24.413727+00 f t \N 1042 1649 Completar plan de vacunación +1779 2025-11-22 01:25:24.418159+00 2025-11-22 01:25:24.418166+00 f t \N 3223 1646 Vomitos intermitentes +1780 2025-11-22 01:25:24.422666+00 2025-11-22 01:25:24.422675+00 f t \N 869 1661 molestias en las orejas +1781 2025-11-22 01:25:24.427008+00 2025-11-22 01:25:24.427016+00 f t \N 3282 1662 +1782 2025-11-22 01:25:24.431007+00 2025-11-22 01:25:24.431014+00 f t \N 3299 1671 eco de urgencia por posible piometra +1783 2025-11-22 01:25:24.435415+00 2025-11-22 01:25:24.435422+00 f t \N 3207 1643 El veterinario solicito control cardiólogo porque tuvimos que sedarlo porque tenia una herida en un cachete y su ritmo cardiaco disminuyo, y el oftalmólogo porque tiene inflamados los ojos el veterinario le dio unas gotas pero no vemos cambio y según nos dijeron las pestañas medio que se van hacia adentro.. +1784 2025-11-22 01:25:24.4393+00 2025-11-22 01:25:24.439307+00 f t \N 599 1616 RX +1785 2025-11-22 01:25:24.444118+00 2025-11-22 01:25:24.444126+00 f t \N 641 1665 Comisión por la cremación de la mascota +1786 2025-11-22 01:25:24.448132+00 2025-11-22 01:25:24.44814+00 f t \N 3281 1663 Jadea constantemente, tiene problemas de cadera, (displacia) artrosis. Recientemente tuvo problemas gástricos asociados a la vesícula, también tiene incontinencia. +1787 2025-11-22 01:25:24.452341+00 2025-11-22 01:25:24.452348+00 f t \N 3188 1632 cara lastimada y un ojo medio cerrado, posiblemente por una pelea con un perro. +1788 2025-11-22 01:25:24.456311+00 2025-11-22 01:25:24.456318+00 f t \N 3249 1652 Tiene un cálculo en la vejiga y cada tanto no puede orinar, la semana que viene tengo turno para urología para programar operación, de mientras le venía dando Meloxicam que lo venía desinflamado bien pero desde este martes dejó de hacer efecto, quiero ver la posibilidad de que la inyecten algún antiinflamatorio no corticoide a ver si el efecto le dura algunos días más. +1789 2025-11-22 01:25:24.460238+00 2025-11-22 01:25:24.460246+00 f t \N 2361 1651 Está resfriado, congestión nasal y estornudos +1790 2025-11-22 01:25:24.464287+00 2025-11-22 01:25:24.464294+00 f t \N 3224 1647 Decaimiento, temblor, inflamacion de glandulas anales +1791 2025-11-22 01:25:24.468152+00 2025-11-22 01:25:24.468158+00 f t \N 3202 1631 Eutanasia +1792 2025-11-22 01:25:24.472004+00 2025-11-22 01:25:24.472011+00 f t \N 3232 1648 Con la llegada de otro gato. Almendra empezo a hacer pis (mucho pis) fuera de las piedras y ayer encontre sangre en su caca. Ella ya habia tenido problemas urinarios cuando era pequeña +1793 2025-11-22 01:25:24.475744+00 2025-11-22 01:25:24.475751+00 f t \N 3258 1655 hoy le dieron los resultados de los analisis, Hace 6 dias mas o menos empeoro su cuadro, suero subcutaneo con ranitidina, B12 y antiinflamatorio hace 2 dias porque tiene problemas en el corazon, ayer a la noche estaba pasada de vueltas, no durmio ni podia bajar la cabeza, el tema es que no quiere comer solidos y no tomo la pastilla del corazon hace 72hs porque no tolera los solidos, Nariz seca, tiembla conmigo, las patas medias rigidas.\r\nToma Pimonden 2.5 x dia, Cardial B, y Levotiroxina. Le dieron x suero: 0002510 CERENIA DOSIS - KUALCOVIT DOSIS\r\nNOVOTIOC -MELOXIVET--RANITIDINA -VETALGINA\r\nSe asusta y se estresa, pero no muerde +1794 2025-11-22 01:25:24.479587+00 2025-11-22 01:25:24.479594+00 f t \N 923 1629 refuerzo vacunacion +1795 2025-11-22 01:25:24.483099+00 2025-11-22 01:25:24.483105+00 f t \N 3260 1657 está descompuesta, viene desde el martes medio mal y hoy la nota peor , se lame mucho +1796 2025-11-22 01:25:24.487347+00 2025-11-22 01:25:24.487355+00 f t \N 3214 1642 chequeo y vacunacion +1797 2025-11-22 01:25:24.491275+00 2025-11-22 01:25:24.491283+00 f t \N 3212 1641 chequeo y vacunacion +1798 2025-11-22 01:25:24.495116+00 2025-11-22 01:25:24.495123+00 f t \N 3213 1640 consulta clinica y vacunaciones +1799 2025-11-22 01:25:24.499387+00 2025-11-22 01:25:24.499393+00 f t \N 3133 1620 Diarrea, delgadez, pelaje sucio, posible parásitos +1800 2025-11-22 01:25:24.503468+00 2025-11-22 01:25:24.503475+00 f t \N 1816 1653 Vacunación antirrábica y certificado de salud +1801 2025-11-22 01:25:24.507499+00 2025-11-22 01:25:24.507506+00 f t \N 3176 1635 Motomensajeria: 12.000\r\nCopro+Orina+ Sangre: 188.100 +1802 2025-11-22 01:25:24.511773+00 2025-11-22 01:25:24.511781+00 f t \N 2418 1634 Derivacion con el servicio de endocrinologia +1803 2025-11-22 01:25:24.516226+00 2025-11-22 01:25:24.516236+00 f t \N 3175 1628 Extraccion +1804 2025-11-22 01:25:24.52029+00 2025-11-22 01:25:24.520296+00 f t \N 3175 1636 Verificar todo en laboratorio de Kamal +1805 2025-11-22 01:25:24.52407+00 2025-11-22 01:25:24.524076+00 f t \N 3176 1627 Extraccion +1806 2025-11-22 01:25:24.52808+00 2025-11-22 01:25:24.52809+00 f t \N 3171 1638 Irritacion de ojos- estornudos a repeticios- se le observa un tercer parpado pronunciado +1807 2025-11-22 01:25:24.532058+00 2025-11-22 01:25:24.532066+00 f t \N 3095 1644 Devolucion de resultados +1808 2025-11-22 01:25:24.536079+00 2025-11-22 01:25:24.536087+00 f t \N 3148 1623 Hace más de 1 año tiene vomitos y está bajando de peso. La vieron varios veterinarios y no saben que tiene. Le recetaron nogastrol pero sigue igual. Los análisis de sangre y ecocardiograma dan bien. +1809 2025-11-22 01:25:24.53997+00 2025-11-22 01:25:24.539976+00 f t \N 3222 1645 Eco abdominal +1810 2025-11-22 01:25:24.543936+00 2025-11-22 01:25:24.543943+00 f t \N 2947 1580 ECG PREQUIRURQUICO +1811 2025-11-22 01:25:24.54796+00 2025-11-22 01:25:24.547966+00 f t \N 2978 1587 +1812 2025-11-22 01:25:24.551927+00 2025-11-22 01:25:24.551934+00 f t \N 2977 1586 Control de las mascotas +1813 2025-11-22 01:25:24.55574+00 2025-11-22 01:25:24.555746+00 f t \N 3161 1625 mí gato tiene 11 años y hace aproximadamente 2meses bajo mucho de peso y empezó con vómitos y diarrea de forma esporádica , fui a un veterinario hace 15 días aproximadamente y le recetó unas gotas Meloxivet pq creía qué tenía inflamada la vejiga, aparentemente le hizo bien pq los síntomas desaparecieron, pero me sugirieron que le haga una ecografía y ahí le salí que tiene un tumor no se bien me mandaron el informe. La sugerencia es operarlo y no quiero. Come, toma agua y hace sus necesidades pero lo noto que duerme mucho y está distante con nosotros +1814 2025-11-22 01:25:24.559488+00 2025-11-22 01:25:24.559495+00 f t \N 827 1579 ECG PREQUIRURGICO +1815 2025-11-22 01:25:24.563557+00 2025-11-22 01:25:24.563563+00 f t \N 532 1633 PGC S/O + RETIRO +1816 2025-11-22 01:25:24.567425+00 2025-11-22 01:25:24.567433+00 f t \N 532 1630 cheque clinico y extraccion de sangre +1817 2025-11-22 01:25:24.57131+00 2025-11-22 01:25:24.571317+00 f t \N 3166 1626 ruidos en la pancita y diarrea +1818 2025-11-22 01:25:24.575097+00 2025-11-22 01:25:24.575103+00 f t \N 2945 1577 Consulta clinica con evaluacion para castracion +1819 2025-11-22 01:25:24.578861+00 2025-11-22 01:25:24.578867+00 f t \N 1930 1602 Tos felina +1820 2025-11-22 01:25:24.582444+00 2025-11-22 01:25:24.582451+00 f t \N 2418 1614 Resolución de estudios +1821 2025-11-22 01:25:24.586117+00 2025-11-22 01:25:24.586123+00 f t \N 799 1612 Tiene lastimaduras en la piel +1822 2025-11-22 01:25:24.589808+00 2025-11-22 01:25:24.589815+00 f t \N 2908 1565 Revision y extraccion +1823 2025-11-22 01:25:24.594074+00 2025-11-22 01:25:24.594083+00 f t \N 2909 1564 Revision + extraccion +1824 2025-11-22 01:25:24.59842+00 2025-11-22 01:25:24.598427+00 f t \N 3029 1600 Corte de garras +1825 2025-11-22 01:25:24.602271+00 2025-11-22 01:25:24.602278+00 f t \N 1714 1621 Reaparición de síntomas urinarios +1826 2025-11-22 01:25:24.606097+00 2025-11-22 01:25:24.606103+00 f t \N 3104 1613 Control anual+ antirrábica +1827 2025-11-22 01:25:24.60989+00 2025-11-22 01:25:24.609897+00 f t \N 3157 1624 Posible eutanasia +1828 2025-11-22 01:25:24.613674+00 2025-11-22 01:25:24.613683+00 f t \N 3135 1618 Eco por diagnostico de cistitis +1829 2025-11-22 01:25:24.617641+00 2025-11-22 01:25:24.617647+00 f t \N 3140 1619 La castré el dia sabado 28-jun, la tengo que llevar al chequeo y se me hace imposible meterla en la transportadora. El veterinario me dijo que le tienen que administrar antibióticos y de paso quiero colocarle un collar isabelino +1831 2025-11-22 01:25:24.625622+00 2025-11-22 01:25:24.625629+00 f t \N 2947 1584 Detallado de Berna +1832 2025-11-22 01:25:24.62967+00 2025-11-22 01:25:24.629677+00 f t \N 827 1583 Perfil Prequirurgico Hemostatico por dos + Traslado +1833 2025-11-22 01:25:24.633535+00 2025-11-22 01:25:24.633542+00 f t \N 2870 1558 Vacunación anual +1834 2025-11-22 01:25:24.637797+00 2025-11-22 01:25:24.637804+00 f t \N 3129 1617 Vacunacion sextuple y antirrabica + desparasitacion +1835 2025-11-22 01:25:24.642628+00 2025-11-22 01:25:24.642635+00 f t \N 3027 1611 Aplicación de inyectable +1836 2025-11-22 01:25:24.646768+00 2025-11-22 01:25:24.646774+00 f t \N 2369 1607 Revisión de resultados +1837 2025-11-22 01:25:24.651085+00 2025-11-22 01:25:24.651092+00 f t \N 2989 1595 +1838 2025-11-22 01:25:24.655116+00 2025-11-22 01:25:24.655123+00 f t \N 2988 1596 +1839 2025-11-22 01:25:24.659003+00 2025-11-22 01:25:24.659011+00 f t \N 2990 1594 Vacunación anual + desparasitación interna y externa +1840 2025-11-22 01:25:24.66305+00 2025-11-22 01:25:24.663057+00 f t \N 827 1581 Extraccion mas pedido de prequirurgico + con recuento de plaqueta +1841 2025-11-22 01:25:24.667378+00 2025-11-22 01:25:24.667384+00 f t \N 827 1582 Extraccion + pedido de laboratorio +1842 2025-11-22 01:25:24.671476+00 2025-11-22 01:25:24.671483+00 f t \N 3095 1610 Está con estornudos y come menos +1843 2025-11-22 01:25:24.675622+00 2025-11-22 01:25:24.675628+00 f t \N 930 1605 Segunda dosis de la quíntuple +1844 2025-11-22 01:25:24.679651+00 2025-11-22 01:25:24.679661+00 f t \N 3093 1609 Come poco, vomita lo que consume +1845 2025-11-22 01:25:24.683597+00 2025-11-22 01:25:24.683604+00 f t \N 3078 1608 Aplicación de suero vía endovenosa +1846 2025-11-22 01:25:24.687378+00 2025-11-22 01:25:24.687384+00 f t \N 3037 1606 Ecografía abdominal +1847 2025-11-22 01:25:24.69153+00 2025-11-22 01:25:24.691537+00 f t \N 3032 1604 Ecografía Abdominal +1848 2025-11-22 01:25:24.696113+00 2025-11-22 01:25:24.696119+00 f t \N 3027 1603 Perro con parálisis patas traseras, Uña infectada +1849 2025-11-22 01:25:24.700159+00 2025-11-22 01:25:24.700166+00 f t \N 1840 1341 VACUNACION ANUAL +1850 2025-11-22 01:25:24.704214+00 2025-11-22 01:25:24.70422+00 f t \N 3031 1601 agitación y solo toma agua +1851 2025-11-22 01:25:24.708141+00 2025-11-22 01:25:24.708148+00 f t \N 1651 1301 Pack de 5 visitas -Visita Numero 1 +1852 2025-11-22 01:25:24.712327+00 2025-11-22 01:25:24.712334+00 f t \N 2369 1549 Radiografia +1853 2025-11-22 01:25:24.716466+00 2025-11-22 01:25:24.716472+00 f t \N 944 1570 Extracción de punto +1854 2025-11-22 01:25:24.720681+00 2025-11-22 01:25:24.720688+00 f t \N 2940 1571 La mascota presenta dificultad para caminar con las patas traseras y rigidez en la cadera desde hace semanas. Puede llegar a estresarse +1855 2025-11-22 01:25:24.724636+00 2025-11-22 01:25:24.724643+00 f t \N 2979 1588 Vacunación antirrábica +1856 2025-11-22 01:25:24.728856+00 2025-11-22 01:25:24.728867+00 f t \N 2987 1593 Eco abdominal +1857 2025-11-22 01:25:24.733027+00 2025-11-22 01:25:24.733034+00 f t \N 2973 1592 Eco abdominal de urgencia +1858 2025-11-22 01:25:24.73708+00 2025-11-22 01:25:24.737087+00 f t \N 2952 1590 Mi gata no come hace 3 días. Le cambiamos el alimento varias veces pero no hay caso. Solo come alimento húmedo pero muy poquito. Notamos que está tomando mucha agua frecuentemente. Es una gata que siempre comió alimento balanceado excellent, siempre fue de comer mucho y ahora directamente no está comiendo casi nada. Esta castrada, tiene 7 años. Es muy arisca y se estresa mucho con extraños por eso no la podemos llevar a una veterinaria. +1859 2025-11-22 01:25:24.741155+00 2025-11-22 01:25:24.741162+00 f t \N 2911 1566 Vacunacion anual +1860 2025-11-22 01:25:24.74524+00 2025-11-22 01:25:24.745247+00 f t \N 2609 1585 Mascota con estornudos +1861 2025-11-22 01:25:24.749117+00 2025-11-22 01:25:24.749124+00 f t \N 844 1576 quiere administrarle sedación a su mascota para poder realizar un viaje +1862 2025-11-22 01:25:24.75302+00 2025-11-22 01:25:24.753027+00 f t \N 2231 1431 Consulta Oftalmológica +1863 2025-11-22 01:25:24.757099+00 2025-11-22 01:25:24.757108+00 f t \N 2869 1557 Control +1864 2025-11-22 01:25:24.761075+00 2025-11-22 01:25:24.761082+00 f t \N 858 1552 Extracción de Sangre +1865 2025-11-22 01:25:24.764921+00 2025-11-22 01:25:24.764928+00 f t \N 2883 1563 Dolor en una patita +1866 2025-11-22 01:25:24.768955+00 2025-11-22 01:25:24.768962+00 f t \N 2914 1567 Vacunación triple felina +1867 2025-11-22 01:25:24.773169+00 2025-11-22 01:25:24.773176+00 f t \N 2923 1578 Vomitos +1868 2025-11-22 01:25:24.776792+00 2025-11-22 01:25:24.776798+00 f t \N 2923 1569 Intenta vomitar y no puede +1869 2025-11-22 01:25:24.780749+00 2025-11-22 01:25:24.780755+00 f t \N 2843 1556 Lesion en la piel +1870 2025-11-22 01:25:24.784902+00 2025-11-22 01:25:24.784908+00 f t \N 2775 1568 Seguimiento del px +1871 2025-11-22 01:25:24.788871+00 2025-11-22 01:25:24.788877+00 f t \N 922 1575 Tos a repeticio- revision de radiografias nuevas +1872 2025-11-22 01:25:24.792557+00 2025-11-22 01:25:24.792563+00 f t \N 2933 1573 Urgencia por mal estar, con vomitos +1873 2025-11-22 01:25:24.797121+00 2025-11-22 01:25:24.797127+00 f t \N 788 1391 Vacunación +1874 2025-11-22 01:25:24.801458+00 2025-11-22 01:25:24.801465+00 f t \N 2748 1536 Limpieza de dientes +1875 2025-11-22 01:25:24.805883+00 2025-11-22 01:25:24.80589+00 f t \N 1775 1526 Eutanasia +1876 2025-11-22 01:25:24.809543+00 2025-11-22 01:25:24.809549+00 f t \N 2872 1559 Px con diarrea y vómitos +1877 2025-11-22 01:25:24.813442+00 2025-11-22 01:25:24.813448+00 f t \N 2881 1561 Aplicación de inyectable +1878 2025-11-22 01:25:24.817496+00 2025-11-22 01:25:24.817503+00 f t \N 1756 1546 Resolución de estudios +1879 2025-11-22 01:25:24.821807+00 2025-11-22 01:25:24.821815+00 f t \N 2871 1562 Eco abdominal +1880 2025-11-22 01:25:24.825805+00 2025-11-22 01:25:24.825811+00 f t \N 2871 1560 diarrea +1881 2025-11-22 01:25:24.829719+00 2025-11-22 01:25:24.829725+00 f t \N 2402 1554 Extraccion +1882 2025-11-22 01:25:24.83449+00 2025-11-22 01:25:24.834498+00 f t \N 2402 1555 Perfil personalizado+ traslado +1883 2025-11-22 01:25:24.838782+00 2025-11-22 01:25:24.838789+00 f t \N 2277 1444 +1884 2025-11-22 01:25:24.843213+00 2025-11-22 01:25:24.843222+00 f t \N 2276 1443 Vacunación anual +1885 2025-11-22 01:25:24.847802+00 2025-11-22 01:25:24.847811+00 f t \N 1891 1553 Extracción para estudios de sangre y orina +1886 2025-11-22 01:25:24.852431+00 2025-11-22 01:25:24.852439+00 f t \N 2770 1538 Vacunación de las pacientes + corte de garras +1887 2025-11-22 01:25:24.856816+00 2025-11-22 01:25:24.856824+00 f t \N 2771 1539 +1888 2025-11-22 01:25:24.861169+00 2025-11-22 01:25:24.861178+00 f t \N 2817 1551 Eutanasia +1889 2025-11-22 01:25:24.865749+00 2025-11-22 01:25:24.865757+00 f t \N 674 1537 Radiografías +1890 2025-11-22 01:25:24.870305+00 2025-11-22 01:25:24.870313+00 f t \N 2735 1550 control por un protuberancia +1891 2025-11-22 01:25:24.874803+00 2025-11-22 01:25:24.87481+00 f t \N 2793 1544 Vacunación anual +1892 2025-11-22 01:25:24.880046+00 2025-11-22 01:25:24.880055+00 f t \N 2794 1545 +1893 2025-11-22 01:25:24.884449+00 2025-11-22 01:25:24.884456+00 f t \N 2662 1531 Revisión por la nariz tapada +1894 2025-11-22 01:25:24.889142+00 2025-11-22 01:25:24.88915+00 f t \N 1891 1386 Consulta dermatológica +1895 2025-11-22 01:25:24.893828+00 2025-11-22 01:25:24.893835+00 f t \N 2775 1540 Eco abdominal +1896 2025-11-22 01:25:24.898106+00 2025-11-22 01:25:24.898113+00 f t \N 460 1542 Pérdida de pelo +1897 2025-11-22 01:25:24.902076+00 2025-11-22 01:25:24.902083+00 f t \N 2678 1533 Ecocardiograma +1898 2025-11-22 01:25:24.905821+00 2025-11-22 01:25:24.905828+00 f t \N 2804 1548 Dolor lumbar +1899 2025-11-22 01:25:24.909816+00 2025-11-22 01:25:24.909822+00 f t \N 2747 1543 Eutanasia +1900 2025-11-22 01:25:24.913497+00 2025-11-22 01:25:24.913503+00 f t \N 2547 1541 +1901 2025-11-22 01:25:24.917306+00 2025-11-22 01:25:24.917313+00 f t \N 2547 1498 Vacunacion anual +1902 2025-11-22 01:25:24.921371+00 2025-11-22 01:25:24.921378+00 f t \N 560 1519 Control de la mascota y devolución de estudios +1903 2025-11-22 01:25:24.925205+00 2025-11-22 01:25:24.925211+00 f t \N 2418 1495 Laboratorio +1904 2025-11-22 01:25:24.929379+00 2025-11-22 01:25:24.929385+00 f t \N 2418 1494 Extracción de sangre +1905 2025-11-22 01:25:24.933216+00 2025-11-22 01:25:24.933222+00 f t \N 308 1534 Problemas de contención +1906 2025-11-22 01:25:24.936841+00 2025-11-22 01:25:24.936849+00 f t \N 2747 1535 Letargo y Decaimiento +1907 2025-11-22 01:25:24.940476+00 2025-11-22 01:25:24.940481+00 f t \N 2714 1532 Ecografía Abdominal +1908 2025-11-22 01:25:24.944146+00 2025-11-22 01:25:24.944152+00 f t \N 2141 1530 Revisión de resultados +1909 2025-11-22 01:25:24.947926+00 2025-11-22 01:25:24.947932+00 f t \N 2654 1529 desparasitación +1910 2025-11-22 01:25:24.95197+00 2025-11-22 01:25:24.951976+00 f t \N 2210 1428 Fluido terapia +1911 2025-11-22 01:25:24.955809+00 2025-11-22 01:25:24.955817+00 f t \N 2661 1528 Consulta clínica de urgencia por diarrea con sangre +1912 2025-11-22 01:25:24.960044+00 2025-11-22 01:25:24.960051+00 f t \N 128 1500 Control clinico y drenaje de glandulas +1913 2025-11-22 01:25:24.964285+00 2025-11-22 01:25:24.964293+00 f t \N 2369 1468 Mascota con tos +1914 2025-11-22 01:25:24.968599+00 2025-11-22 01:25:24.968607+00 f t \N 2462 1521 Revision +1915 2025-11-22 01:25:24.97287+00 2025-11-22 01:25:24.972877+00 f t \N 2626 1525 Infección en el oido +1916 2025-11-22 01:25:24.977168+00 2025-11-22 01:25:24.977175+00 f t \N 2462 1522 Avance del paciente +1917 2025-11-22 01:25:24.981694+00 2025-11-22 01:25:24.981702+00 f t \N 2462 1527 Evolución del paciente +1918 2025-11-22 01:25:24.985862+00 2025-11-22 01:25:24.985869+00 f t \N 2462 1520 control +1919 2025-11-22 01:25:24.99016+00 2025-11-22 01:25:24.990167+00 f t \N 2588 1514 Vacunacion anual +1920 2025-11-22 01:25:24.994253+00 2025-11-22 01:25:24.994262+00 f t \N 2548 1503 Vacunaciona anual para dos pacientes +1921 2025-11-22 01:25:24.998704+00 2025-11-22 01:25:24.998711+00 f t \N 2587 1515 Vacunacion anual +1922 2025-11-22 01:25:25.002768+00 2025-11-22 01:25:25.002776+00 f t \N 2549 1502 Vacunacion anual para dos pacientes +1923 2025-11-22 01:25:25.006903+00 2025-11-22 01:25:25.006911+00 f t \N 2586 1513 Vacunaciona anual para tres gatos +1924 2025-11-22 01:25:25.011044+00 2025-11-22 01:25:25.011051+00 f t \N 2606 1516 Vacunación anual +1925 2025-11-22 01:25:25.014922+00 2025-11-22 01:25:25.014929+00 f t \N 2433 1501 Revisión por salpullidos +1926 2025-11-22 01:25:25.01925+00 2025-11-22 01:25:25.019258+00 f t \N 2516 1492 Evaluación general +1927 2025-11-22 01:25:25.023948+00 2025-11-22 01:25:25.023956+00 f t \N 2327 1509 Perfil general sin orina + traslado de muestra +1928 2025-11-22 01:25:25.027909+00 2025-11-22 01:25:25.027916+00 f t \N 2295 1451 Se rasca mucho y no tiene pulgas +1929 2025-11-22 01:25:25.032181+00 2025-11-22 01:25:25.032189+00 f t \N 2567 1506 Vacunación anual +1930 2025-11-22 01:25:25.036328+00 2025-11-22 01:25:25.036336+00 f t \N 2609 1518 Vomitó algo extraño\r\nPx con temperamento +1931 2025-11-22 01:25:25.04053+00 2025-11-22 01:25:25.040538+00 f t \N 2604 1517 Respira mal, se siente caliente el cuerpo. No pudo dormir durante la noche +1932 2025-11-22 01:25:25.044786+00 2025-11-22 01:25:25.044793+00 f t \N 2141 1511 Traslado y perfil general con orina +1933 2025-11-22 01:25:25.049297+00 2025-11-22 01:25:25.049304+00 f t \N 2581 1512 Ecografia abdominal +1934 2025-11-22 01:25:25.05335+00 2025-11-22 01:25:25.053357+00 f t \N 2141 1510 Extraccion +1935 2025-11-22 01:25:25.057686+00 2025-11-22 01:25:25.057693+00 f t \N 761 1507 Refuerzo +1936 2025-11-22 01:25:25.062219+00 2025-11-22 01:25:25.062228+00 f t \N 2345 1466 Chequeo +1937 2025-11-22 01:25:25.067222+00 2025-11-22 01:25:25.067235+00 f t \N 2152 1440 Revisión de tratamiento +1938 2025-11-22 01:25:25.071823+00 2025-11-22 01:25:25.071834+00 f t \N 2210 1427 Fluido terapia +1939 2025-11-22 01:25:25.077108+00 2025-11-22 01:25:25.07712+00 f t \N 2483 1490 Extraccion + consulta clinica +1940 2025-11-22 01:25:25.08268+00 2025-11-22 01:25:25.082694+00 f t \N 488 1505 Dolor en una pata, no la apoya bien +1941 2025-11-22 01:25:25.092776+00 2025-11-22 01:25:25.092788+00 f t \N 2540 1497 Vacunación anual y desparasitación interna + externa +1942 2025-11-22 01:25:25.098503+00 2025-11-22 01:25:25.098514+00 f t \N 2550 1504 Se rasca contamente y tiene cera negra en la oreja +1943 2025-11-22 01:25:25.103583+00 2025-11-22 01:25:25.103596+00 f t \N 2327 1508 Extraccion +1944 2025-11-22 01:25:25.109305+00 2025-11-22 01:25:25.109316+00 f t \N 2539 1496 Vómitos y problemas al defecar +1945 2025-11-22 01:25:25.11488+00 2025-11-22 01:25:25.11489+00 f t \N 985 1442 Vacunación anual +1946 2025-11-22 01:25:25.120424+00 2025-11-22 01:25:25.120433+00 f t \N 2404 1473 Corte de garras +1947 2025-11-22 01:25:25.126284+00 2025-11-22 01:25:25.126295+00 f t \N 641 1499 dificultad en la marcha +1948 2025-11-22 01:25:25.132173+00 2025-11-22 01:25:25.132184+00 f t \N 2403 1474 Corte de garras +1949 2025-11-22 01:25:25.137737+00 2025-11-22 01:25:25.137749+00 f t \N 2433 1476 Revisión por salpullidos +1950 2025-11-22 01:25:25.143902+00 2025-11-22 01:25:25.143915+00 f t \N 2529 1493 Eco abdominal +1951 2025-11-22 01:25:25.149489+00 2025-11-22 01:25:25.149499+00 f t \N 2488 1491 Eutanasia +1952 2025-11-22 01:25:25.155001+00 2025-11-22 01:25:25.155012+00 f t \N 2467 1484 Ecografia abdominal +1953 2025-11-22 01:25:25.160803+00 2025-11-22 01:25:25.160815+00 f t \N 2434 1477 Revisión por salpullidos +1954 2025-11-22 01:25:25.166322+00 2025-11-22 01:25:25.166333+00 f t \N 2467 1482 Perfil general con orina + traslado +1955 2025-11-22 01:25:25.171826+00 2025-11-22 01:25:25.171837+00 f t \N 2467 1483 EXTRACCION +1956 2025-11-22 01:25:25.177373+00 2025-11-22 01:25:25.177386+00 f t \N 2210 1426 Fluido terapia +1957 2025-11-22 01:25:25.182905+00 2025-11-22 01:25:25.182916+00 f t \N 2480 1486 Vacunacion anual +1958 2025-11-22 01:25:25.188373+00 2025-11-22 01:25:25.188385+00 f t \N 1367 1438 Consulta cardiológica +1959 2025-11-22 01:25:25.193955+00 2025-11-22 01:25:25.193967+00 f t \N 2481 1487 Vacunacion anual +1960 2025-11-22 01:25:25.199648+00 2025-11-22 01:25:25.19966+00 f t \N 2482 1489 Consulta clinica +1961 2025-11-22 01:25:25.205002+00 2025-11-22 01:25:25.205013+00 f t \N 2418 1479 Después de dos meses de su castración toma muchísima agua y orina demasiado +1962 2025-11-22 01:25:25.210437+00 2025-11-22 01:25:25.210448+00 f t \N 2402 1472 endocrinología +1963 2025-11-22 01:25:25.21623+00 2025-11-22 01:25:25.216242+00 f t \N 2462 1485 Dificultad en la movilidad +1964 2025-11-22 01:25:25.2221+00 2025-11-22 01:25:25.222111+00 f t \N 2467 1481 Dificultad para levantarse +1965 2025-11-22 01:25:25.228134+00 2025-11-22 01:25:25.228145+00 f t \N 2439 1488 Eutanasia en el domicilio +1966 2025-11-22 01:25:25.233917+00 2025-11-22 01:25:25.233928+00 f t \N 1816 1338 Vacunación triple felina (refuerzo) + antirrábica +1967 2025-11-22 01:25:25.239732+00 2025-11-22 01:25:25.23974+00 f t \N 2439 1480 Urgencia por deshidratación y falta de movimiento +1968 2025-11-22 01:25:25.244701+00 2025-11-22 01:25:25.244709+00 f t \N 2405 1478 eco abdominal +1969 2025-11-22 01:25:25.249467+00 2025-11-22 01:25:25.249476+00 f t \N 2405 1475 Vómitos continuos +1970 2025-11-22 01:25:25.254569+00 2025-11-22 01:25:25.254576+00 f t \N 628 1470 Indigestión, diarrea continua por 3 días +1971 2025-11-22 01:25:25.259411+00 2025-11-22 01:25:25.259419+00 f t \N 820 1453 Refuerzo +1972 2025-11-22 01:25:25.263961+00 2025-11-22 01:25:25.263969+00 f t \N 2317 1455 Control de la mascota, consejos de adaptación con su otra mascota, aplicación de la primera vacuna +1973 2025-11-22 01:25:25.26902+00 2025-11-22 01:25:25.26903+00 f t \N 2153 1415 Vómitos esporádicos +1974 2025-11-22 01:25:25.274598+00 2025-11-22 01:25:25.274606+00 f t \N 2318 1456 Paciente con tos +1975 2025-11-22 01:25:25.279419+00 2025-11-22 01:25:25.279427+00 f t \N 2241 1469 Heces blandas +1976 2025-11-22 01:25:25.28423+00 2025-11-22 01:25:25.28424+00 f t \N 2400 1471 Dolor de pata trasera +1977 2025-11-22 01:25:25.289227+00 2025-11-22 01:25:25.289239+00 f t \N 2311 1454 Chequeo general +1978 2025-11-22 01:25:25.294423+00 2025-11-22 01:25:25.294433+00 f t \N 2364 1467 Mascota de edad. No tiene movilidad en patas delanteras. Usa pañal. La tutora indicó que encontró sangre en la orina. \r\nQuiere saber si hay algún otro estudio o control para realizarle o si es preferible recurrir a la eutanasia +1979 2025-11-22 01:25:25.299707+00 2025-11-22 01:25:25.299716+00 f t \N 2329 1463 Infección en el oído +1980 2025-11-22 01:25:25.304627+00 2025-11-22 01:25:25.304634+00 f t \N 1510 1460 Resolución de estudios. \r\nPaciente de Dra Katerina\r\n\r\nmeet.google.com/qmd-ynpc-kyz +1981 2025-11-22 01:25:25.309395+00 2025-11-22 01:25:25.309402+00 f t \N 560 1436 RX X4 +1982 2025-11-22 01:25:25.314032+00 2025-11-22 01:25:25.314038+00 f t \N 2210 1425 Fluido terapia +1983 2025-11-22 01:25:25.319582+00 2025-11-22 01:25:25.31959+00 f t \N 2327 1465 Eco abdominal +1984 2025-11-22 01:25:25.324447+00 2025-11-22 01:25:25.324454+00 f t \N 1934 1448 Seguimiento de la paciente +1985 2025-11-22 01:25:25.329626+00 2025-11-22 01:25:25.329633+00 f t \N 2327 1464 Retiro de muestras + laboratorio\r\nSe solicita perfil general completo sin orina +1986 2025-11-22 01:25:25.334488+00 2025-11-22 01:25:25.334496+00 f t \N 2141 1459 Retiro de muestras + laboratorio (Se solicita perfil general completo con orina) +1987 2025-11-22 01:25:25.339196+00 2025-11-22 01:25:25.339205+00 f t \N 2035 1395 +1988 2025-11-22 01:25:25.344132+00 2025-11-22 01:25:25.344139+00 f t \N 393 1457 Eco Abdominal +1989 2025-11-22 01:25:25.349023+00 2025-11-22 01:25:25.349029+00 f t \N 2309 1452 Tiene una oreja inflamada y un bolto en el pecho +1990 2025-11-22 01:25:25.353983+00 2025-11-22 01:25:25.353991+00 f t \N 2141 1458 Extracción de Sangre para estudios +1991 2025-11-22 01:25:25.358772+00 2025-11-22 01:25:25.358781+00 f t \N 2297 1450 +1992 2025-11-22 01:25:25.363479+00 2025-11-22 01:25:25.363485+00 f t \N 2328 1462 Pata trasera inflamada +1993 2025-11-22 01:25:25.368395+00 2025-11-22 01:25:25.368404+00 f t \N 560 1435 Eco abodminal +1994 2025-11-22 01:25:25.37309+00 2025-11-22 01:25:25.373098+00 f t \N 2298 1449 Vacunación anual +1995 2025-11-22 01:25:25.378+00 2025-11-22 01:25:25.378007+00 f t \N 2327 1461 Decaimiento de la mascota, toma agua pero no quiere comer +1996 2025-11-22 01:25:25.382264+00 2025-11-22 01:25:25.382271+00 f t \N 1775 1404 Consulta Cardiológica +1997 2025-11-22 01:25:25.386542+00 2025-11-22 01:25:25.386549+00 f t \N 1976 1401 Eco abdominal +1998 2025-11-22 01:25:25.390575+00 2025-11-22 01:25:25.390581+00 f t \N 621 1388 Extracción de sangre, retiro y estudios de laboratorio +1999 2025-11-22 01:25:25.394662+00 2025-11-22 01:25:25.394674+00 f t \N 1325 1445 Tiene tos +2000 2025-11-22 01:25:25.39982+00 2025-11-22 01:25:25.399827+00 f t \N 1716 1397 +2001 2025-11-22 01:25:25.404722+00 2025-11-22 01:25:25.404729+00 f t \N 1715 1396 Corte de garras +2002 2025-11-22 01:25:25.40971+00 2025-11-22 01:25:25.40972+00 f t \N 2210 1424 fluidoterapia (solo la aplicación) +2003 2025-11-22 01:25:25.414535+00 2025-11-22 01:25:25.414542+00 f t \N 2284 1446 Vómitos +2004 2025-11-22 01:25:25.419496+00 2025-11-22 01:25:25.419503+00 f t \N 2286 1447 Gato con problemas respiratorios +2005 2025-11-22 01:25:25.424626+00 2025-11-22 01:25:25.424637+00 f t \N 2233 1433 +2006 2025-11-22 01:25:25.429494+00 2025-11-22 01:25:25.429501+00 f t \N 2234 1432 Vacunación Antirrábica +2007 2025-11-22 01:25:25.433984+00 2025-11-22 01:25:25.43399+00 f t \N 2235 1434 Vacunación con Triple Felina +2008 2025-11-22 01:25:25.438857+00 2025-11-22 01:25:25.438864+00 f t \N 2020 1400 Vacunación antirrábica +2009 2025-11-22 01:25:25.443392+00 2025-11-22 01:25:25.443399+00 f t \N 1775 1441 Extracción los estudios están en las notas +2010 2025-11-22 01:25:25.447769+00 2025-11-22 01:25:25.447776+00 f t \N 2035 1394 +2011 2025-11-22 01:25:25.451908+00 2025-11-22 01:25:25.451914+00 f t \N 2154 1416 Vacunación anual +2012 2025-11-22 01:25:25.456293+00 2025-11-22 01:25:25.456302+00 f t \N 2230 1430 mordida de perro, se realiza limpieza, pero no hay mejoría +2013 2025-11-22 01:25:25.460955+00 2025-11-22 01:25:25.460962+00 f t \N 2200 1418 Está en tratamiento, hubo mejoría, de ánimo esta como siempre, juega, corre y come bien. Respira bien, solo que estornuda o respira y se le escucha moco en la nariz. +2014 2025-11-22 01:25:25.465475+00 2025-11-22 01:25:25.465481+00 f t \N 741 1243 Pack de visitas- Ultima visita +2015 2025-11-22 01:25:25.470231+00 2025-11-22 01:25:25.47024+00 f t \N 2202 1420 Corte de Garras\r\nPx con temperamento +2016 2025-11-22 01:25:25.475024+00 2025-11-22 01:25:25.47503+00 f t \N 932 1439 eco abdominal +2017 2025-11-22 01:25:25.479071+00 2025-11-22 01:25:25.479077+00 f t \N 2241 1437 Llego a casa el martes pasado y quiero ver cómo está. Ya tiene una vacuna. Ayer empezó a tener como una lagaña y no sé si es normal +2018 2025-11-22 01:25:25.482832+00 2025-11-22 01:25:25.482838+00 f t \N 2141 1421 Ecografía Abdominal +2019 2025-11-22 01:25:25.486653+00 2025-11-22 01:25:25.486659+00 f t \N 932 1417 Vómitos y diarrea +2020 2025-11-22 01:25:25.490448+00 2025-11-22 01:25:25.490455+00 f t \N 335 1429 Resultados de los análisis +2021 2025-11-22 01:25:25.494296+00 2025-11-22 01:25:25.494303+00 f t \N 2209 1423 Vacunación anual +2022 2025-11-22 01:25:25.498149+00 2025-11-22 01:25:25.498156+00 f t \N 2107 1419 Retiro de muestras +2023 2025-11-22 01:25:25.501934+00 2025-11-22 01:25:25.50194+00 f t \N 2191 1422 Eco abdominal y renal +2024 2025-11-22 01:25:25.505722+00 2025-11-22 01:25:25.505728+00 f t \N 1367 1403 Resultados de análisis +2025 2025-11-22 01:25:25.50962+00 2025-11-22 01:25:25.509626+00 f t \N 2039 1389 Vacunación anual.\r\n\r\nAvisar cuando esté abajo porque no anda el timbre +2026 2025-11-22 01:25:25.513654+00 2025-11-22 01:25:25.513662+00 f t \N 2081 1407 Lame compulsivamente su vulva y presenta un endurecimiento en la zona abdominal +2027 2025-11-22 01:25:25.51779+00 2025-11-22 01:25:25.517797+00 f t \N 2035 1393 +2028 2025-11-22 01:25:25.52182+00 2025-11-22 01:25:25.521826+00 f t \N 2141 1412 levanta de madrugada con ruidos intestinales y vomita la bilis +2029 2025-11-22 01:25:25.52601+00 2025-11-22 01:25:25.526016+00 f t \N 2107 1408 Extracción de sangre + traslado +2030 2025-11-22 01:25:25.529988+00 2025-11-22 01:25:25.529994+00 f t \N 2152 1414 Posible eutanasia +2031 2025-11-22 01:25:25.533868+00 2025-11-22 01:25:25.533874+00 f t \N 2137 1411 Tumor mamario lastimado +2032 2025-11-22 01:25:25.53772+00 2025-11-22 01:25:25.537726+00 f t \N 2151 1413 Eutanasia +2033 2025-11-22 01:25:25.541517+00 2025-11-22 01:25:25.541522+00 f t \N 2145 1410 Vomitó varias veces ayer y hoy. Es muy posible que sea por intoxicación por crisantemos +2034 2025-11-22 01:25:25.545193+00 2025-11-22 01:25:25.545199+00 f t \N 2105 1409 Vómitos continuos +2035 2025-11-22 01:25:25.549003+00 2025-11-22 01:25:25.549009+00 f t \N 1463 1275 Limpieza bucal +2036 2025-11-22 01:25:25.553897+00 2025-11-22 01:25:25.553905+00 f t \N 1689 1308 Pochi le corresponde desparasitacion Interna- Externa - Vacunacion con sextuple +2037 2025-11-22 01:25:25.558461+00 2025-11-22 01:25:25.558468+00 f t \N 1687 1310 Desparasitacion interna- Externa- Vacunacion anual +2038 2025-11-22 01:25:25.562767+00 2025-11-22 01:25:25.562774+00 f t \N 1688 1309 Rita del corresponde Desparasitacion interna- externa +2039 2025-11-22 01:25:25.566765+00 2025-11-22 01:25:25.566772+00 f t \N 2107 1406 Ecografía abdominal +2040 2025-11-22 01:25:25.571114+00 2025-11-22 01:25:25.571122+00 f t \N 2035 1392 Aplicación de inyectable +2041 2025-11-22 01:25:25.57603+00 2025-11-22 01:25:25.576037+00 f t \N 2027 1382 Vacunación anual +2042 2025-11-22 01:25:25.58035+00 2025-11-22 01:25:25.580357+00 f t \N 2028 1383 +2043 2025-11-22 01:25:25.584806+00 2025-11-22 01:25:25.584814+00 f t \N 1986 1375 +2044 2025-11-22 01:25:25.588979+00 2025-11-22 01:25:25.588986+00 f t \N 1985 1374 Vacunación anual +2045 2025-11-22 01:25:25.593096+00 2025-11-22 01:25:25.593103+00 f t \N 878 1278 Vacunación de Triple Felina +2046 2025-11-22 01:25:25.597148+00 2025-11-22 01:25:25.597154+00 f t \N 932 1290 se encontrará en: Larrea 1465 departamento\r\nsextuple +2047 2025-11-22 01:25:25.602015+00 2025-11-22 01:25:25.602022+00 f t \N 335 1369 Eco abdominal +2048 2025-11-22 01:25:25.606654+00 2025-11-22 01:25:25.606662+00 f t \N 1775 1398 resolución de análisis +2049 2025-11-22 01:25:25.611085+00 2025-11-22 01:25:25.611095+00 f t \N 2042 1390 vacunación antirrábica +2050 2025-11-22 01:25:25.615652+00 2025-11-22 01:25:25.615666+00 f t \N 2065 1399 Miska estuvo internada tiene 20 años esta c antibiótico, suero y con el último análisis de sangre, le dio el resultado que tiene los glóbulos blancos altos +2051 2025-11-22 01:25:25.620404+00 2025-11-22 01:25:25.620412+00 f t \N 984 1131 Vacunación anual +2052 2025-11-22 01:25:25.625621+00 2025-11-22 01:25:25.625632+00 f t \N 983 1132 Vacunación anual +2053 2025-11-22 01:25:25.63251+00 2025-11-22 01:25:25.63252+00 f t \N 1940 1366 Lunares con sangre +2054 2025-11-22 01:25:25.638053+00 2025-11-22 01:25:25.638063+00 f t \N 2036 1385 está viejo ya y está teniendo problemas de cadera y patas de atrás porque es callejero con ovejero\r\nEstá teniendo problemas para dormir, camina en círculos para avanzar y creemos que está perdiendo mucho la vista. +2055 2025-11-22 01:25:25.643758+00 2025-11-22 01:25:25.643766+00 f t \N 2038 1387 Come lento y toma poca agua, es lento debido a su edad.\r\nLe salió un tumor, fue tratado y no hay nada para hacer y no es operable (le dijo su vete de cabecera)\r\nCuando come hace ruido raro y palpa tumor por la garganta.\r\nQuiere que vayan a verlo, así conoce segunda opinión o como proceder, que cuidados darle. +2056 2025-11-22 01:25:25.64833+00 2025-11-22 01:25:25.648341+00 f t \N 632 1373 Radiología +2057 2025-11-22 01:25:25.653031+00 2025-11-22 01:25:25.653039+00 f t \N 1919 1359 Eco abdominal +2058 2025-11-22 01:25:25.657448+00 2025-11-22 01:25:25.657457+00 f t \N 2021 1380 +2059 2025-11-22 01:25:25.661627+00 2025-11-22 01:25:25.661635+00 f t \N 2020 1379 Vacunación anual +2060 2025-11-22 01:25:25.665823+00 2025-11-22 01:25:25.665831+00 f t \N 1976 1370 Oaky tuvo problemas urinarios y mejoró con medicación.\r\nSilvia indica que encontró orina con color más oscuro (pareciera sangre), quiere realizar control por ambas mascotas +2061 2025-11-22 01:25:25.671236+00 2025-11-22 01:25:25.671244+00 f t \N 1977 1371 +2062 2025-11-22 01:25:25.675615+00 2025-11-22 01:25:25.675622+00 f t \N 1951 1368 Le cuesta orinar, corte de garras +2063 2025-11-22 01:25:25.679942+00 2025-11-22 01:25:25.67995+00 f t \N 2014 1378 estuvo maullando mucho desde las 6 de la mañana. Parece que le cuesta tomar agua, como si le doliera la boca. Cuando se queda quieto se le cae un poco la saliva +2064 2025-11-22 01:25:25.684476+00 2025-11-22 01:25:25.684484+00 f t \N 1876 1345 le cuesta caminar, esta comiendo poco +2065 2025-11-22 01:25:25.688418+00 2025-11-22 01:25:25.688426+00 f t \N 2035 1384 Aplicación de inyectable +2066 2025-11-22 01:25:25.692488+00 2025-11-22 01:25:25.692495+00 f t \N 1979 1372 Consulta cardiológica +2067 2025-11-22 01:25:25.696784+00 2025-11-22 01:25:25.696791+00 f t \N 2025 1381 Consulta dermatológica +2068 2025-11-22 01:25:25.701853+00 2025-11-22 01:25:25.701863+00 f t \N 1988 1376 Pequeña herida en el cuello, se rasca y vuelve a aparecer +2069 2025-11-22 01:25:25.706335+00 2025-11-22 01:25:25.706343+00 f t \N 1865 1344 Perdida de la vista-Tos seca +2070 2025-11-22 01:25:25.710759+00 2025-11-22 01:25:25.710767+00 f t \N 1924 1361 Visita+ extracción+ retiro de muestras+ laboratorio +2071 2025-11-22 01:25:25.714924+00 2025-11-22 01:25:25.714934+00 f t \N 788 1358 Vacunación +2072 2025-11-22 01:25:25.719459+00 2025-11-22 01:25:25.719467+00 f t \N 1652 1377 Hormonas Tiroideas\r\nTSH (Quimioluminiscencia) → $35.000\r\nT4 Libre → $8.000\r\nT4 Total → $8.000\r\nUremia y Creatinina -> $3.000\r\nHepatograma (GOT, GPT, FAS, PT, Alb, Bili, Col, Glob) -> $8.900 +2073 2025-11-22 01:25:25.723634+00 2025-11-22 01:25:25.72364+00 f t \N 1042 1354 Continuar plan de vacunación y desparasitación interna +2074 2025-11-22 01:25:25.728752+00 2025-11-22 01:25:25.728761+00 f t \N 1775 1405 Estudios de laboratorio +2075 2025-11-22 01:25:25.733075+00 2025-11-22 01:25:25.733083+00 f t \N 1775 1363 Toma de muestras- retiro- +2076 2025-11-22 01:25:25.737546+00 2025-11-22 01:25:25.737554+00 f t \N 1770 1332 Vacunacion anual para dos mascotas +2077 2025-11-22 01:25:25.742168+00 2025-11-22 01:25:25.742174+00 f t \N 1771 1333 Vacunacion anual para dos mascotas +2078 2025-11-22 01:25:25.746377+00 2025-11-22 01:25:25.746384+00 f t \N 869 1348 Limpieza de orejas y revisión de las mismas +2079 2025-11-22 01:25:25.750517+00 2025-11-22 01:25:25.750525+00 f t \N 1967 1367 Gato estresado por mudanza, se le cayó un poquito de piel +2080 2025-11-22 01:25:25.754854+00 2025-11-22 01:25:25.754861+00 f t \N 1775 1362 Radiografias +2081 2025-11-22 01:25:25.759463+00 2025-11-22 01:25:25.759471+00 f t \N 1934 1365 Vómito con sangre y gusanos +2082 2025-11-22 01:25:25.763831+00 2025-11-22 01:25:25.763838+00 f t \N 335 1360 Tuvo pancreatitis aguda y esta con tratamiento. \r\nRecomendaron cambiar el alimento al hepático de royal canin y medicación. \r\n2 pastillas de Digestil cada 8h, 1.5 pastillas de Urovier al dia, 1.5 pastillas de Spectryl cada 12h. Ademas reforzar con DermCaps\r\ny le estamos pasando 1 unidad de Ringer lactato al dia\r\nBusca una segunda opinión +2083 2025-11-22 01:25:25.76816+00 2025-11-22 01:25:25.768167+00 f t \N 1652 1364 Extraccion de sangre, pedido de laboratorio para tiroides +2084 2025-11-22 01:25:25.772643+00 2025-11-22 01:25:25.772651+00 f t \N 1889 1352 eco abdominal +2085 2025-11-22 01:25:25.776931+00 2025-11-22 01:25:25.776939+00 f t \N 1889 1355 Extraccion sangre +2086 2025-11-22 01:25:25.781262+00 2025-11-22 01:25:25.78127+00 f t \N 495 1350 Presenta los ojos llorosos +2087 2025-11-22 01:25:25.785742+00 2025-11-22 01:25:25.785749+00 f t \N 1883 1351 Vacunación anual + corte de pelo +2088 2025-11-22 01:25:25.790154+00 2025-11-22 01:25:25.790162+00 f t \N 1714 1347 repetir la medicación inyectable +2089 2025-11-22 01:25:25.794424+00 2025-11-22 01:25:25.794432+00 f t \N 1748 1326 Vacunación anual +2090 2025-11-22 01:25:25.798695+00 2025-11-22 01:25:25.798702+00 f t \N 1889 1639 Perfil general sin orina \r\nTraslado +2091 2025-11-22 01:25:25.803221+00 2025-11-22 01:25:25.80323+00 f t \N 1652 1304 Extraccion + toma de presion +2092 2025-11-22 01:25:25.807535+00 2025-11-22 01:25:25.807542+00 f t \N 1900 1357 Consejos sobre la alimentación +2093 2025-11-22 01:25:25.811802+00 2025-11-22 01:25:25.81181+00 f t \N 1899 1356 Ecografía abdominal +2094 2025-11-22 01:25:25.816181+00 2025-11-22 01:25:25.816189+00 f t \N 1886 1353 La pata trasera derecha está flácida o sin fuerzas, sin movimiento y no se puede levantar. Ya tenía previos problemas de cadera. +2095 2025-11-22 01:25:25.820494+00 2025-11-22 01:25:25.820502+00 f t \N 858 1330 ECG y Eco +2096 2025-11-22 01:25:25.824992+00 2025-11-22 01:25:25.824999+00 f t \N 1118 1342 Vacunación anual +2097 2025-11-22 01:25:25.829399+00 2025-11-22 01:25:25.829407+00 f t \N 1325 1343 +2098 2025-11-22 01:25:25.833788+00 2025-11-22 01:25:25.833795+00 f t \N 1548 1349 Seguimiento de Dinart +2099 2025-11-22 01:25:25.838175+00 2025-11-22 01:25:25.838182+00 f t \N 1756 1346 retiro de muestras + laboratorio +2100 2025-11-22 01:25:25.842511+00 2025-11-22 01:25:25.842517+00 f t \N 1710 1315 Vacunación y revisión +2101 2025-11-22 01:25:25.846842+00 2025-11-22 01:25:25.846849+00 f t \N 1711 1316 +2102 2025-11-22 01:25:25.851284+00 2025-11-22 01:25:25.851291+00 f t \N 1709 1317 +2103 2025-11-22 01:25:25.855493+00 2025-11-22 01:25:25.8555+00 f t \N 1510 1289 Estudio de orina+ urocultivo + retiro de muestra +2104 2025-11-22 01:25:25.859539+00 2025-11-22 01:25:25.859545+00 f t \N 820 1250 Vacunación +2105 2025-11-22 01:25:25.864197+00 2025-11-22 01:25:25.864204+00 f t \N 1775 1335 Revision de estado de salud, solicitud para realizar un citologico. +2106 2025-11-22 01:25:25.869907+00 2025-11-22 01:25:25.869914+00 f t \N 1815 1337 Dificulta para orinar y orina con sangre +2107 2025-11-22 01:25:25.875384+00 2025-11-22 01:25:25.875394+00 f t \N 1812 1339 Rengueo en la pata +2108 2025-11-22 01:25:25.880913+00 2025-11-22 01:25:25.880921+00 f t \N 896 1336 vomitos continuos +2109 2025-11-22 01:25:25.886244+00 2025-11-22 01:25:25.886252+00 f t \N 1755 1329 +2110 2025-11-22 01:25:25.890625+00 2025-11-22 01:25:25.890632+00 f t \N 1754 1327 +2111 2025-11-22 01:25:25.894705+00 2025-11-22 01:25:25.894712+00 f t \N 1756 1328 Perdida de pelo +2112 2025-11-22 01:25:25.898736+00 2025-11-22 01:25:25.898743+00 f t \N 1793 1340 Posible Infección urinaria, irritación en zona genital +2113 2025-11-22 01:25:25.902772+00 2025-11-22 01:25:25.902778+00 f t \N 169 1046 Gata con cáncer, suministrar medicación +2114 2025-11-22 01:25:25.906717+00 2025-11-22 01:25:25.906723+00 f t \N 1729 1325 +2115 2025-11-22 01:25:25.91082+00 2025-11-22 01:25:25.910827+00 f t \N 1728 1324 Vacunación anual +2116 2025-11-22 01:25:25.914738+00 2025-11-22 01:25:25.914744+00 f t \N 1327 1306 Radiografías +2117 2025-11-22 01:25:25.919431+00 2025-11-22 01:25:25.91944+00 f t \N 922 1334 Consulta por que termino el tratamiento con amoxicilina y prednisolona, y tuvo cambio de comportamiento donde se lame en repetidas ocasiones +2118 2025-11-22 01:25:25.924746+00 2025-11-22 01:25:25.924757+00 f t \N 1769 1331 Valoracion sobre el estado de salud, y evaluar un posible laboratorio. +2119 2025-11-22 01:25:25.930652+00 2025-11-22 01:25:25.930663+00 f t \N 1715 1319 Electro +2120 2025-11-22 01:25:25.937036+00 2025-11-22 01:25:25.937048+00 f t \N 1716 1320 +2121 2025-11-22 01:25:25.943044+00 2025-11-22 01:25:25.943055+00 f t \N 1629 1295 Consulta por dolor y malestar general +2122 2025-11-22 01:25:25.949228+00 2025-11-22 01:25:25.949239+00 f t \N 1679 1305 Sarpullido en la barbilla. Revisión general de salud +2123 2025-11-22 01:25:25.955213+00 2025-11-22 01:25:25.955225+00 f t \N 1705 1314 Respira con ruidos +2124 2025-11-22 01:25:25.961132+00 2025-11-22 01:25:25.961145+00 f t \N 1006 1311 Resolucion de resultados +2125 2025-11-22 01:25:25.966878+00 2025-11-22 01:25:25.966888+00 f t \N 1715 1321 Extracción de sangre + vacunación anual +2126 2025-11-22 01:25:25.972744+00 2025-11-22 01:25:25.972755+00 f t \N 1716 1322 +2127 2025-11-22 01:25:25.978+00 2025-11-22 01:25:25.978008+00 f t \N 1706 1313 No ve bien al paciente, mucha ingesta de agua +2128 2025-11-22 01:25:25.982105+00 2025-11-22 01:25:25.982112+00 f t \N 1712 1323 Eutanasia +2129 2025-11-22 01:25:25.986078+00 2025-11-22 01:25:25.986086+00 f t \N 1463 1303 PGB/C ORINA + TRASLADO +2130 2025-11-22 01:25:25.990395+00 2025-11-22 01:25:25.990405+00 f t \N 1630 1293 posible eutanasia \r\nnos comenta que su perra no esta bien, se para y camina cada tanto, dejo de tener los movimientos de los ojos, Dejo de recibir el suero porque la venita se le rompía entonces no podían ponerle la vía. Hoy no quiso comer Y no se levanta. nos comenta que su perra no esta bien, se para y camina cada tanto, dejo de tener los movimientos de los ojos, Dejo de recibir el suero porque la venita se le rompía entonces no podían ponerle la vía. Hoy no quiso comer . Hoy no quiso comer y no se levanta +2131 2025-11-22 01:25:25.99476+00 2025-11-22 01:25:25.994772+00 f t \N 1463 1302 Extracción +2132 2025-11-22 01:25:26.000502+00 2025-11-22 01:25:26.000515+00 f t \N 1714 1318 Le cuesta orinar +2133 2025-11-22 01:25:26.005401+00 2025-11-22 01:25:26.00541+00 f t \N 1605 1312 Manchita en la nariz +2134 2025-11-22 01:25:26.010028+00 2025-11-22 01:25:26.010036+00 f t \N 1463 1287 Consulta cardiologica +2135 2025-11-22 01:25:26.014309+00 2025-11-22 01:25:26.014316+00 f t \N 1637 1294 eco abdominal +2136 2025-11-22 01:25:26.018309+00 2025-11-22 01:25:26.018317+00 f t \N 1339 1236 Vacunación (refuerzo) +2137 2025-11-22 01:25:26.022501+00 2025-11-22 01:25:26.022509+00 f t \N 1510 1307 Consulta de emergencia por tratamiento +2138 2025-11-22 01:25:26.02675+00 2025-11-22 01:25:26.026757+00 f t \N 403 1274 Chequeo +2139 2025-11-22 01:25:26.031122+00 2025-11-22 01:25:26.031175+00 f t \N 548 1300 Lesion amplian y graves en piel +2140 2025-11-22 01:25:26.035294+00 2025-11-22 01:25:26.0353+00 f t \N 1631 1298 Eco abdominal +2141 2025-11-22 01:25:26.038952+00 2025-11-22 01:25:26.038959+00 f t \N 1370 1248 Vacunación anual +2142 2025-11-22 01:25:26.042835+00 2025-11-22 01:25:26.042842+00 f t \N 1623 1292 Eco Abdominal +2143 2025-11-22 01:25:26.046915+00 2025-11-22 01:25:26.046922+00 f t \N 146 1299 Paciente con la boca hinchada +2144 2025-11-22 01:25:26.05098+00 2025-11-22 01:25:26.050986+00 f t \N 923 1288 Refuerzo con quintuple +2145 2025-11-22 01:25:26.054982+00 2025-11-22 01:25:26.054989+00 f t \N 1548 1291 Hace 48 horas que no defeca. Está tomando corticoides y antibióticos porque salió de estar internado el jueves pasado. Tiene una ataxia y parálisis leve del lado izquierdo. Tengo consulta programada con neuróloga pero como no defeca tengo que consultar a un clínico mientras tanto +2146 2025-11-22 01:25:26.058983+00 2025-11-22 01:25:26.058991+00 f t \N 415 1184 Consulta clinica +2147 2025-11-22 01:25:26.063053+00 2025-11-22 01:25:26.06306+00 f t \N 1592 1285 Perdida del pelo +2148 2025-11-22 01:25:26.067003+00 2025-11-22 01:25:26.06701+00 f t \N 1441 1269 Se rasca mucho , tipo alergia, +2149 2025-11-22 01:25:26.071036+00 2025-11-22 01:25:26.071043+00 f t \N 1580 1286 dolor de patas traseras, decaímiento +2150 2025-11-22 01:25:26.074795+00 2025-11-22 01:25:26.074801+00 f t \N 1583 1284 Eutanasia +2151 2025-11-22 01:25:26.0786+00 2025-11-22 01:25:26.078606+00 f t \N 1537 1283 Tiene los ganglios inflamados y dificultades al tragar/comer sus pelets; no ha dejado de hidratarse ni de comer pero si lo siento más bajo de energía y no se si tendrá gripe o algo en un diente +2152 2025-11-22 01:25:26.082537+00 2025-11-22 01:25:26.082544+00 f t \N 586 715 Bulto en el cuello y posible alergia en la piel +2153 2025-11-22 01:25:26.088871+00 2025-11-22 01:25:26.088879+00 f t \N 1367 1402 Citología de PAF de formación suave, coloración rojiza en dedo de mano +2154 2025-11-22 01:25:26.09354+00 2025-11-22 01:25:26.093548+00 f t \N 1549 1281 +2155 2025-11-22 01:25:26.097971+00 2025-11-22 01:25:26.097981+00 f t \N 1549 1280 Ecografía abdominal +2156 2025-11-22 01:25:26.102523+00 2025-11-22 01:25:26.102531+00 f t \N 1550 1282 Decaimiento, no come +2157 2025-11-22 01:25:26.107317+00 2025-11-22 01:25:26.107328+00 f t \N 1534 1277 Mucho Vomito +2158 2025-11-22 01:25:26.111959+00 2025-11-22 01:25:26.111966+00 f t \N 1481 1273 vacunación anual +2159 2025-11-22 01:25:26.116633+00 2025-11-22 01:25:26.116641+00 f t \N 1428 1262 +2160 2025-11-22 01:25:26.121209+00 2025-11-22 01:25:26.121219+00 f t \N 1548 1279 Dificultad para defecar +2161 2025-11-22 01:25:26.125864+00 2025-11-22 01:25:26.125875+00 f t \N 1427 1264 +2162 2025-11-22 01:25:26.130454+00 2025-11-22 01:25:26.130465+00 f t \N 1429 1263 +2163 2025-11-22 01:25:26.135007+00 2025-11-22 01:25:26.135014+00 f t \N 5891 2228 Tiene la oreja infectada +2164 2025-11-22 01:25:26.139457+00 2025-11-22 01:25:26.139464+00 f t \N 878 1261 desparasitación interna y externa +2165 2025-11-22 01:25:26.143524+00 2025-11-22 01:25:26.143534+00 f t \N 5882 2225 Con dolor y posee espondilosis +2166 2025-11-22 01:25:26.147749+00 2025-11-22 01:25:26.147758+00 f t \N 169 1045 Gata con Cancer, aplicar inyectables +2167 2025-11-22 01:25:26.152061+00 2025-11-22 01:25:26.152068+00 f t \N 1432 1267 +2168 2025-11-22 01:25:26.156083+00 2025-11-22 01:25:26.15609+00 f t \N 1430 1265 Vacunación anual +2169 2025-11-22 01:25:26.16006+00 2025-11-22 01:25:26.160068+00 f t \N 1431 1266 +2170 2025-11-22 01:25:26.164369+00 2025-11-22 01:25:26.164376+00 f t \N 1510 1276 https://meet.google.com/wsu-zxiz-swz +2171 2025-11-22 01:25:26.168458+00 2025-11-22 01:25:26.168468+00 f t \N 1336 1231 Cardiológica +2172 2025-11-22 01:25:26.172565+00 2025-11-22 01:25:26.172572+00 f t \N 1463 1271 Pérdida de un colmillo +2173 2025-11-22 01:25:26.176942+00 2025-11-22 01:25:26.176949+00 f t \N 1448 1272 desde el martes a la tarde está vomitando, el martes vomitó 2 veces alimento, ayer vomitó 3 liquido una de ellas despidió un carozo de durazno, a la madrugada liquido, hoy un liquido y recién parecía la bilis. En todo el día de hoy no quiso comer pero si toma agua, esta decaída +2174 2025-11-22 01:25:26.181654+00 2025-11-22 01:25:26.181662+00 f t \N 1276 1270 Resolución del caso +2175 2025-11-22 01:25:26.185802+00 2025-11-22 01:25:26.185813+00 f t \N 1367 1249 Tiene una pelotita en la pata derecha y no sabemos el porqué le ha salido. +2176 2025-11-22 01:25:26.190019+00 2025-11-22 01:25:26.190026+00 f t \N 1341 1237 Enfermedad de piel +2177 2025-11-22 01:25:26.194943+00 2025-11-22 01:25:26.194952+00 f t \N 1194 1225 Desparasitacion interna-externa+ vacunacion anual +2178 2025-11-22 01:25:26.199986+00 2025-11-22 01:25:26.199995+00 f t \N 1313 1223 Vacunación (2da dosis) +2179 2025-11-22 01:25:26.204801+00 2025-11-22 01:25:26.204809+00 f t \N 1411 1260 lastimadura en la pata trasera +2180 2025-11-22 01:25:26.20938+00 2025-11-22 01:25:26.209388+00 f t \N 1419 1259 Cardiológica +2181 2025-11-22 01:25:26.213678+00 2025-11-22 01:25:26.213685+00 f t \N 1006 1217 Retiro de muestras de orina + laboratorio +2182 2025-11-22 01:25:26.217812+00 2025-11-22 01:25:26.21782+00 f t \N 1346 1242 Vacunación anual +2183 2025-11-22 01:25:26.221724+00 2025-11-22 01:25:26.221731+00 f t \N 1006 1216 Retiro de muestras de orina + laboratorio +2184 2025-11-22 01:25:26.225857+00 2025-11-22 01:25:26.225864+00 f t \N 1438 1268 perro con oreja lastimada luego de una pelea, solicita teleconsulta para saber como cuidar la herida y antibioticos +2185 2025-11-22 01:25:26.229883+00 2025-11-22 01:25:26.22989+00 f t \N 1006 1215 Retiro de muestras de orina + laboratorio +2186 2025-11-22 01:25:26.234341+00 2025-11-22 01:25:26.234347+00 f t \N 1006 1214 Retiro de muestras de orina + laboratorio +2187 2025-11-22 01:25:26.23816+00 2025-11-22 01:25:26.238166+00 f t \N 1386 1252 Le apareció un granito en la espalda antes era rosa y ahora se oscureció.\r\nPx con temperamento. +2188 2025-11-22 01:25:26.242097+00 2025-11-22 01:25:26.242103+00 f t \N 1328 1229 +2189 2025-11-22 01:25:26.246017+00 2025-11-22 01:25:26.246023+00 f t \N 1329 1228 corte de garras +2190 2025-11-22 01:25:26.249896+00 2025-11-22 01:25:26.249902+00 f t \N 1354 1244 Vacunacion anual +2191 2025-11-22 01:25:26.25368+00 2025-11-22 01:25:26.253686+00 f t \N 778 1224 Resolucion de resultados +2192 2025-11-22 01:25:26.25749+00 2025-11-22 01:25:26.257496+00 f t \N 1374 1251 Desde el 20/05 por la noche, está con dolor en la pata trasera izquierda. Come, toma agua, hace sus necesidades. El problema está cuando quiere caminar o saltar. +2193 2025-11-22 01:25:26.261575+00 2025-11-22 01:25:26.261583+00 f t \N 858 1222 Análisis de PGC +2194 2025-11-22 01:25:26.265287+00 2025-11-22 01:25:26.265293+00 f t \N 858 1258 Debemos cubri los 12.000 del traslado +2195 2025-11-22 01:25:26.268862+00 2025-11-22 01:25:26.268868+00 f t \N 858 1257 Extraccion +2196 2025-11-22 01:25:26.272727+00 2025-11-22 01:25:26.272734+00 f t \N 1327 1232 Tiene un diagnostico de rinitis. Hace ruido al respirar. Desde ayer además no retiene lo que come, aunque hoy toleró la comida. +2197 2025-11-22 01:25:26.276557+00 2025-11-22 01:25:26.276563+00 f t \N 1366 1247 Problemas para caminar +2198 2025-11-22 01:25:26.280547+00 2025-11-22 01:25:26.280554+00 f t \N 1266 1256 Vacunación anual +2199 2025-11-22 01:25:26.284947+00 2025-11-22 01:25:26.284953+00 f t \N 1333 1230 se paspo debajo de las axilas y hay una que se infectó y le está supurando +2200 2025-11-22 01:25:26.288985+00 2025-11-22 01:25:26.288992+00 f t \N 1295 1212 Vacunación +2201 2025-11-22 01:25:26.292982+00 2025-11-22 01:25:26.292989+00 f t \N 1296 1213 +2202 2025-11-22 01:25:26.296979+00 2025-11-22 01:25:26.296985+00 f t \N 1079 1253 +2203 2025-11-22 01:25:26.301025+00 2025-11-22 01:25:26.301032+00 f t \N 1079 1246 Eutanasia +2204 2025-11-22 01:25:26.305155+00 2025-11-22 01:25:26.305163+00 f t \N 1266 1209 Chequeo por conductas agresivas y +2205 2025-11-22 01:25:26.309277+00 2025-11-22 01:25:26.309284+00 f t \N 559 1245 está con el ano rojo e irritado, a causa de diarrea. No para de lamerse +2206 2025-11-22 01:25:26.313624+00 2025-11-22 01:25:26.313632+00 f t \N 1337 1233 EXTRACCIÓN DE SANGRE +2207 2025-11-22 01:25:26.317637+00 2025-11-22 01:25:26.317644+00 f t \N 1167 1197 Vacunación anual +2208 2025-11-22 01:25:26.321753+00 2025-11-22 01:25:26.32176+00 f t \N 1338 1235 Eco abdominal +2209 2025-11-22 01:25:26.326235+00 2025-11-22 01:25:26.326242+00 f t \N 942 1241 Seguimiento +2210 2025-11-22 01:25:26.330412+00 2025-11-22 01:25:26.33042+00 f t \N 1300 1219 +2211 2025-11-22 01:25:26.33434+00 2025-11-22 01:25:26.334352+00 f t \N 1301 1220 +2212 2025-11-22 01:25:26.338353+00 2025-11-22 01:25:26.33836+00 f t \N 1302 1218 Vacunación anual +2213 2025-11-22 01:25:26.34264+00 2025-11-22 01:25:26.342647+00 f t \N 1342 1238 Ojo lloroso ,no tiene vacunas,en el lomo se le hace bodoque de pelo +2214 2025-11-22 01:25:26.346693+00 2025-11-22 01:25:26.346703+00 f t \N 1343 1239 Temblores en su mascota +2215 2025-11-22 01:25:26.350699+00 2025-11-22 01:25:26.350706+00 f t \N 1343 1240 Temblores en su mascota +2216 2025-11-22 01:25:26.356584+00 2025-11-22 01:25:26.356599+00 f t \N 1211 1203 Desparasitación externa e interna\r\nVacuna triple felina\r\nVacuna antirrábica\r\nControl general +2217 2025-11-22 01:25:26.363468+00 2025-11-22 01:25:26.36348+00 f t \N 1276 1255 Completo General s/orina +2218 2025-11-22 01:25:26.369198+00 2025-11-22 01:25:26.36921+00 f t \N 335 1226 +2219 2025-11-22 01:25:26.37458+00 2025-11-22 01:25:26.374589+00 f t \N 401 1227 +2220 2025-11-22 01:25:26.378672+00 2025-11-22 01:25:26.37868+00 f t \N 401 1234 Lesion en la oreja +2221 2025-11-22 01:25:26.382723+00 2025-11-22 01:25:26.382731+00 f t \N 1120 1175 Vacunación anual +2222 2025-11-22 01:25:26.387044+00 2025-11-22 01:25:26.387051+00 f t \N 1303 1221 +2223 2025-11-22 01:25:26.39149+00 2025-11-22 01:25:26.391498+00 f t \N 1221 1204 Lesion en la tetilla +2224 2025-11-22 01:25:26.395777+00 2025-11-22 01:25:26.395787+00 f t \N 1232 1206 Vacunacion anual +2225 2025-11-22 01:25:26.39976+00 2025-11-22 01:25:26.399768+00 f t \N 1276 1254 Eco abdominal +2226 2025-11-22 01:25:26.403957+00 2025-11-22 01:25:26.403964+00 f t \N 1095 1164 Vacunacion anual +2227 2025-11-22 01:25:26.408553+00 2025-11-22 01:25:26.40856+00 f t \N 1174 1198 :Prurito en la oreja +2228 2025-11-22 01:25:26.413023+00 2025-11-22 01:25:26.413032+00 f t \N 1276 1211 Diarrea +2229 2025-11-22 01:25:26.417559+00 2025-11-22 01:25:26.417568+00 f t \N 1278 1210 picazón y leve sangrado en el ano después de defecar +2230 2025-11-22 01:25:26.421954+00 2025-11-22 01:25:26.421961+00 f t \N 1275 1207 Sangre en la orina +2231 2025-11-22 01:25:26.426346+00 2025-11-22 01:25:26.426353+00 f t \N 922 1202 resolucion de caso +2232 2025-11-22 01:25:26.430491+00 2025-11-22 01:25:26.430498+00 f t \N 1231 1205 Infeccion urinaria +2233 2025-11-22 01:25:26.435044+00 2025-11-22 01:25:26.435054+00 f t \N 1240 1208 Estornudos y decaimiento +2234 2025-11-22 01:25:26.439682+00 2025-11-22 01:25:26.439689+00 f t \N 1175 1199 Tiene secreccion de de lado izquierdo y con lagrimeo del ojo +2235 2025-11-22 01:25:26.443901+00 2025-11-22 01:25:26.443907+00 f t \N 1166 1195 Vacunación anual +2236 2025-11-22 01:25:26.448156+00 2025-11-22 01:25:26.448164+00 f t \N 1164 1196 +2237 2025-11-22 01:25:26.452273+00 2025-11-22 01:25:26.45228+00 f t \N 169 1044 Gata con cáncer, colocación de medicamentos +2238 2025-11-22 01:25:26.456308+00 2025-11-22 01:25:26.456316+00 f t \N 869 1158 +2239 2025-11-22 01:25:26.460396+00 2025-11-22 01:25:26.460404+00 f t \N 1123 1186 Jade es una perra adulta de 13 años que tiene sobrepeso, ahora esta mucho mas delgada pero le duelen mucho las patas de atrás y le cuesta levantarse y caminar. Come y toma agua normal sin problemas. Hace unos meses le encontraron unos bultitos en las patas también pero como no se puede realizar cirugía, solo medicaron, busca tratamiento +2240 2025-11-22 01:25:26.464866+00 2025-11-22 01:25:26.464872+00 f t \N 1004 1165 rx x 4 +2241 2025-11-22 01:25:26.469254+00 2025-11-22 01:25:26.469261+00 f t \N 967 1160 Fisioterapia +2242 2025-11-22 01:25:26.473642+00 2025-11-22 01:25:26.47365+00 f t \N 1079 1161 electro, ecocardiograma +2243 2025-11-22 01:25:26.478456+00 2025-11-22 01:25:26.478463+00 f t \N 1194 1200 Cistitis +2244 2025-11-22 01:25:26.482797+00 2025-11-22 01:25:26.482804+00 f t \N 688 1185 Consulta clinica para revision de posible eutanasia +2245 2025-11-22 01:25:26.486972+00 2025-11-22 01:25:26.486979+00 f t \N 876 1075 +2246 2025-11-22 01:25:26.491258+00 2025-11-22 01:25:26.491268+00 f t \N 1197 1201 Cistitis +2247 2025-11-22 01:25:26.496099+00 2025-11-22 01:25:26.496138+00 f t \N 1129 1178 Vacunacion con antirrabica y medicacion para la incotinencia +2248 2025-11-22 01:25:26.500589+00 2025-11-22 01:25:26.500597+00 f t \N 1150 1187 Dermatológica +2249 2025-11-22 01:25:26.505139+00 2025-11-22 01:25:26.505148+00 f t \N 735 1193 +2250 2025-11-22 01:25:26.50954+00 2025-11-22 01:25:26.509546+00 f t \N 1022 1143 Vacunacion anual +2251 2025-11-22 01:25:26.513925+00 2025-11-22 01:25:26.513933+00 f t \N 128 1170 consulta clinica + drenaje de glandulas +2252 2025-11-22 01:25:26.518736+00 2025-11-22 01:25:26.518744+00 f t \N 1157 1189 Vacunación antirrábica +2253 2025-11-22 01:25:26.523236+00 2025-11-22 01:25:26.523243+00 f t \N 1162 1194 +2254 2025-11-22 01:25:26.527545+00 2025-11-22 01:25:26.527553+00 f t \N 1158 1191 Vacunación Antirrábica +2255 2025-11-22 01:25:26.531915+00 2025-11-22 01:25:26.531922+00 f t \N 1156 1190 Vacunación antirrábica +2256 2025-11-22 01:25:26.536364+00 2025-11-22 01:25:26.536371+00 f t \N 1147 1192 +2257 2025-11-22 01:25:26.540375+00 2025-11-22 01:25:26.540382+00 f t \N 1103 1176 Derivación (paciente con soplo) +2258 2025-11-22 01:25:26.544302+00 2025-11-22 01:25:26.544309+00 f t \N 1111 1173 Últimamente esta como que vomita pero no lo hace, como que se asfixia pareciera. Otra cosa que tiene es una gran acumulación de lagaña en uno de sus ojos +2259 2025-11-22 01:25:26.548295+00 2025-11-22 01:25:26.548304+00 f t \N 1004 1180 Traslado ---> 12.000\r\nLaboratorio-->Perfil general c/orina + serologia especifica= 117.000\r\nPGC con orina: 38000\r\nSerologia x 2 ambas: 79.100 +2260 2025-11-22 01:25:26.553876+00 2025-11-22 01:25:26.553887+00 f t \N 1088 1181 Eco abdominal +2261 2025-11-22 01:25:26.558238+00 2025-11-22 01:25:26.558246+00 f t \N 1004 1179 Extraccion +2262 2025-11-22 01:25:26.562426+00 2025-11-22 01:25:26.562432+00 f t \N 1128 1177 ECO +2263 2025-11-22 01:25:26.566357+00 2025-11-22 01:25:26.566363+00 f t \N 1089 1168 Antirrábica+ desparasitación interna y externa +2264 2025-11-22 01:25:26.570568+00 2025-11-22 01:25:26.570574+00 f t \N 1090 1169 Antirrábica + desparasitación interna y externa (ambos pacientes están tramitando para salir del país) +2265 2025-11-22 01:25:26.574545+00 2025-11-22 01:25:26.574552+00 f t \N 1112 1174 Camina encorvado +2266 2025-11-22 01:25:26.578439+00 2025-11-22 01:25:26.578446+00 f t \N 1047 1150 Vacunación +2267 2025-11-22 01:25:26.582407+00 2025-11-22 01:25:26.582413+00 f t \N 1046 1152 +2268 2025-11-22 01:25:26.586248+00 2025-11-22 01:25:26.586255+00 f t \N 1079 1162 Eco abdominal +2269 2025-11-22 01:25:26.590145+00 2025-11-22 01:25:26.590152+00 f t \N 1045 1148 Vacunación y desparasitación interna y externa +2270 2025-11-22 01:25:26.593984+00 2025-11-22 01:25:26.59399+00 f t \N 1044 1149 Vacunación y desparasitación +2271 2025-11-22 01:25:26.597955+00 2025-11-22 01:25:26.597961+00 f t \N 1056 1153 rx +2272 2025-11-22 01:25:26.602066+00 2025-11-22 01:25:26.602073+00 f t \N 1103 1172 No sube de peso +2273 2025-11-22 01:25:26.606049+00 2025-11-22 01:25:26.606055+00 f t \N 75 1155 +2274 2025-11-22 01:25:26.609925+00 2025-11-22 01:25:26.609932+00 f t \N 294 1154 Vacunación + desparasitación externa +2275 2025-11-22 01:25:26.613764+00 2025-11-22 01:25:26.61377+00 f t \N 1088 1182 Perfil general con orina + tralado +2276 2025-11-22 01:25:26.617635+00 2025-11-22 01:25:26.617641+00 f t \N 1131 1183 Dolor en patas +2277 2025-11-22 01:25:26.621442+00 2025-11-22 01:25:26.621449+00 f t \N 579 1167 Control por vomitos +2278 2025-11-22 01:25:26.625379+00 2025-11-22 01:25:26.625386+00 f t \N 1004 1171 Extraccion + consulta+ traslado+ laboratorio +2279 2025-11-22 01:25:26.629311+00 2025-11-22 01:25:26.629318+00 f t \N 1075 1159 paciente desmejorado que le cuesta levantarse + corte de garras +2280 2025-11-22 01:25:26.633134+00 2025-11-22 01:25:26.63314+00 f t \N 1088 1166 Paciente con decaimiento, cambios en sus habitos alimenticios y evacuatorios +2281 2025-11-22 01:25:26.637002+00 2025-11-22 01:25:26.637009+00 f t \N 1094 1163 ECO ABDOMINAL +2282 2025-11-22 01:25:26.640991+00 2025-11-22 01:25:26.640998+00 f t \N 1074 1157 2da opinión respecto a medicación +2283 2025-11-22 01:25:26.645012+00 2025-11-22 01:25:26.645019+00 f t \N 48 1156 Caida del pelo +2284 2025-11-22 01:25:26.649116+00 2025-11-22 01:25:26.649123+00 f t \N 735 1188 +2285 2025-11-22 01:25:26.653093+00 2025-11-22 01:25:26.653101+00 f t \N 1004 1136 Control de nodulos +2286 2025-11-22 01:25:26.657092+00 2025-11-22 01:25:26.657099+00 f t \N 775 1007 Refuerzo de triple felina +2287 2025-11-22 01:25:26.661092+00 2025-11-22 01:25:26.661099+00 f t \N 946 1114 +2288 2025-11-22 01:25:26.665079+00 2025-11-22 01:25:26.665086+00 f t \N 945 1116 +2289 2025-11-22 01:25:26.669028+00 2025-11-22 01:25:26.669035+00 f t \N 948 1115 +2290 2025-11-22 01:25:26.673009+00 2025-11-22 01:25:26.673016+00 f t \N 947 1117 +2291 2025-11-22 01:25:26.677306+00 2025-11-22 01:25:26.677313+00 f t \N 944 1113 +2292 2025-11-22 01:25:26.681245+00 2025-11-22 01:25:26.681252+00 f t \N 985 1133 Heces blandas +2293 2025-11-22 01:25:26.68512+00 2025-11-22 01:25:26.685127+00 f t \N 1006 1137 Esta bajo tratamiento con apokel, comenta la dueña que se generalizo el cuadro de alergia +2294 2025-11-22 01:25:26.689022+00 2025-11-22 01:25:26.68903+00 f t \N 1042 1147 vacunación y posible desparasitación +2295 2025-11-22 01:25:26.692926+00 2025-11-22 01:25:26.692933+00 f t \N 1049 1151 +2296 2025-11-22 01:25:26.697092+00 2025-11-22 01:25:26.697099+00 f t \N 940 1111 Derivación médica +2297 2025-11-22 01:25:26.701125+00 2025-11-22 01:25:26.701132+00 f t \N 979 1128 Vacunación anual +2298 2025-11-22 01:25:26.705414+00 2025-11-22 01:25:26.705421+00 f t \N 1021 1142 Consulta clínica, cuadro con secreciones mucosa, tos +2299 2025-11-22 01:25:26.709456+00 2025-11-22 01:25:26.709462+00 f t \N 951 1120 +2300 2025-11-22 01:25:26.713724+00 2025-11-22 01:25:26.713731+00 f t \N 858 1125 Extracción para análisis +2301 2025-11-22 01:25:26.717697+00 2025-11-22 01:25:26.717704+00 f t \N 1025 1146 Consulta clinica por un gato que presenta vomitos y diarrea +2302 2025-11-22 01:25:26.721515+00 2025-11-22 01:25:26.721521+00 f t \N 1003 1145 Seguimiento por tratamiento +2303 2025-11-22 01:25:26.725209+00 2025-11-22 01:25:26.725215+00 f t \N 1023 1144 Dificulta en la marcha, aclara el dueño que se esta orinando encima +2304 2025-11-22 01:25:26.728914+00 2025-11-22 01:25:26.72892+00 f t \N 1003 1140 Tratamiento indicado por el dr +2305 2025-11-22 01:25:26.732842+00 2025-11-22 01:25:26.732848+00 f t \N 1020 1141 Diagnostico de una lesion de piel con similitud a sarna,manifiesta muchas lesiones +2306 2025-11-22 01:25:26.736814+00 2025-11-22 01:25:26.736821+00 f t \N 1010 1139 Se encuentra bajo tratatamiento con ciprofloxacina, dificultad para orinar +2307 2025-11-22 01:25:26.740547+00 2025-11-22 01:25:26.740553+00 f t \N 939 1110 va mucho a la piedritas y orina poco +2308 2025-11-22 01:25:26.744554+00 2025-11-22 01:25:26.744561+00 f t \N 1007 1138 Revision por dificultad en la marcha +2309 2025-11-22 01:25:26.748816+00 2025-11-22 01:25:26.748823+00 f t \N 869 1096 +2310 2025-11-22 01:25:26.752868+00 2025-11-22 01:25:26.752875+00 f t \N 932 1105 +2311 2025-11-22 01:25:26.756879+00 2025-11-22 01:25:26.756886+00 f t \N 878 1109 +2312 2025-11-22 01:25:26.760861+00 2025-11-22 01:25:26.760867+00 f t \N 967 1127 Fisioterapia +2313 2025-11-22 01:25:26.764789+00 2025-11-22 01:25:26.764795+00 f t \N 1003 1135 Decaimiento general del animal, falta de apetito +2314 2025-11-22 01:25:26.769133+00 2025-11-22 01:25:26.769139+00 f t \N 980 1130 Vacunación anual y chequeo +2315 2025-11-22 01:25:26.773032+00 2025-11-22 01:25:26.773037+00 f t \N 950 1119 +2316 2025-11-22 01:25:26.777019+00 2025-11-22 01:25:26.777025+00 f t \N 949 1118 Eco Abdominal +2317 2025-11-22 01:25:26.780975+00 2025-11-22 01:25:26.780981+00 f t \N 942 1129 Chequeo rutinario +2318 2025-11-22 01:25:26.784957+00 2025-11-22 01:25:26.784963+00 f t \N 922 1097 +2319 2025-11-22 01:25:26.788998+00 2025-11-22 01:25:26.789004+00 f t \N 964 1124 Vacunación solo sextuple +2320 2025-11-22 01:25:26.793022+00 2025-11-22 01:25:26.793028+00 f t \N 988 1134 Vaciado de vejiga +2321 2025-11-22 01:25:26.796993+00 2025-11-22 01:25:26.797+00 f t \N 963 1760 Eco abdominal +2322 2025-11-22 01:25:26.801007+00 2025-11-22 01:25:26.801013+00 f t \N 930 1103 +2323 2025-11-22 01:25:26.805304+00 2025-11-22 01:25:26.805314+00 f t \N 933 1106 Cardiologica +2324 2025-11-22 01:25:26.80944+00 2025-11-22 01:25:26.809446+00 f t \N 963 1123 decaimiento, vómitos, bulto en lomo +2325 2025-11-22 01:25:26.813377+00 2025-11-22 01:25:26.813384+00 f t \N 962 1122 Vulva inflamada +2326 2025-11-22 01:25:26.817214+00 2025-11-22 01:25:26.81722+00 f t \N 961 1121 Eutanasia +2327 2025-11-22 01:25:26.821213+00 2025-11-22 01:25:26.821219+00 f t \N 961 1296 +2328 2025-11-22 01:25:26.825287+00 2025-11-22 01:25:26.825294+00 f t \N 761 1126 Refuerzo sextuple + desparasitación externa +2329 2025-11-22 01:25:26.829675+00 2025-11-22 01:25:26.829684+00 f t \N 935 1107 +2330 2025-11-22 01:25:26.833984+00 2025-11-22 01:25:26.833991+00 f t \N 942 1112 Decaimiento +2331 2025-11-22 01:25:26.838036+00 2025-11-22 01:25:26.838043+00 f t \N 929 1102 +2332 2025-11-22 01:25:26.842068+00 2025-11-22 01:25:26.842074+00 f t \N 849 1066 Resolucion endocrinologica +2333 2025-11-22 01:25:26.846083+00 2025-11-22 01:25:26.84609+00 f t \N 936 1297 +2334 2025-11-22 01:25:26.850305+00 2025-11-22 01:25:26.850314+00 f t \N 936 1108 eutanasia +2335 2025-11-22 01:25:26.854385+00 2025-11-22 01:25:26.854392+00 f t \N 928 1101 defeca con sangre +2336 2025-11-22 01:25:26.858481+00 2025-11-22 01:25:26.858487+00 f t \N 926 1100 +2337 2025-11-22 01:25:26.862477+00 2025-11-22 01:25:26.862486+00 f t \N 911 1104 Aplicación de inyectables, revisión del estado de salud +2338 2025-11-22 01:25:26.866688+00 2025-11-22 01:25:26.866694+00 f t \N 912 1098 Administrar antibiótico (tribotie) +2339 2025-11-22 01:25:26.870595+00 2025-11-22 01:25:26.870602+00 f t \N 858 1088 Radiografia +2340 2025-11-22 01:25:26.874527+00 2025-11-22 01:25:26.874533+00 f t \N 901 1089 vacunación anual +2341 2025-11-22 01:25:26.87844+00 2025-11-22 01:25:26.878446+00 f t \N 882 1079 +2342 2025-11-22 01:25:26.882433+00 2025-11-22 01:25:26.882439+00 f t \N 877 1076 vacunación anual +2343 2025-11-22 01:25:26.886316+00 2025-11-22 01:25:26.886324+00 f t \N 889 1084 Vacunación anual +2344 2025-11-22 01:25:26.890214+00 2025-11-22 01:25:26.890221+00 f t \N 923 1099 +2345 2025-11-22 01:25:26.894236+00 2025-11-22 01:25:26.894242+00 f t \N 903 1092 Vacunación anual +2346 2025-11-22 01:25:26.898441+00 2025-11-22 01:25:26.898447+00 f t \N 560 1082 Control +2347 2025-11-22 01:25:26.902477+00 2025-11-22 01:25:26.902484+00 f t \N 911 1093 decaimiento y diarrea +2348 2025-11-22 01:25:26.906702+00 2025-11-22 01:25:26.906709+00 f t \N 912 1094 Larga gotas de sangre por el recto +2349 2025-11-22 01:25:26.910888+00 2025-11-22 01:25:26.910895+00 f t \N 913 1095 Vomitos y tambaleo +2350 2025-11-22 01:25:26.916616+00 2025-11-22 01:25:26.916627+00 f t \N 628 1091 Vacunación anual +2351 2025-11-22 01:25:26.922125+00 2025-11-22 01:25:26.922137+00 f t \N 902 1090 Consulta Dermatológica +2352 2025-11-22 01:25:26.927863+00 2025-11-22 01:25:26.927875+00 f t \N 768 986 Refuerzo con triple felina para ambos pacientes +2353 2025-11-22 01:25:26.933503+00 2025-11-22 01:25:26.933511+00 f t \N 769 985 Refuerzo con triple felina para ambos pacientes +2354 2025-11-22 01:25:26.937542+00 2025-11-22 01:25:26.937549+00 f t \N 896 1087 Consulta clinica por lesion en el sector genital +2355 2025-11-22 01:25:26.941671+00 2025-11-22 01:25:26.941678+00 f t \N 894 1086 Le cuesta pararse +2356 2025-11-22 01:25:26.945474+00 2025-11-22 01:25:26.945482+00 f t \N 893 1085 +2357 2025-11-22 01:25:26.949433+00 2025-11-22 01:25:26.949441+00 f t \N 878 1077 Chequeo General +2358 2025-11-22 01:25:26.953977+00 2025-11-22 01:25:26.953984+00 f t \N 883 1080 Vacunacion anual para dos pacientes +2359 2025-11-22 01:25:26.958158+00 2025-11-22 01:25:26.958165+00 f t \N 869 1069 Gato con tos +2360 2025-11-22 01:25:26.962721+00 2025-11-22 01:25:26.962729+00 f t \N 850 1053 Consulta clinica +2361 2025-11-22 01:25:26.966901+00 2025-11-22 01:25:26.966908+00 f t \N 890 1083 urgencia por dolores provocados por la sonda +2362 2025-11-22 01:25:26.971465+00 2025-11-22 01:25:26.971474+00 f t \N 873 1072 Vacunación anual +2363 2025-11-22 01:25:26.975673+00 2025-11-22 01:25:26.975681+00 f t \N 885 1081 Tiene la panza dura y le cuesta moverse. +2364 2025-11-22 01:25:26.979874+00 2025-11-22 01:25:26.979883+00 f t \N 215 1037 Corte de garras, desparasitación, antirabica +2365 2025-11-22 01:25:26.983915+00 2025-11-22 01:25:26.983924+00 f t \N 881 1078 Orina con sangre +2366 2025-11-22 01:25:26.987991+00 2025-11-22 01:25:26.987998+00 f t \N 875 1074 Vacunación anual y corte de garras +2367 2025-11-22 01:25:26.993064+00 2025-11-22 01:25:26.993073+00 f t \N 788 1034 Pack 4 visitas. vacunacion x 3 gatos cachorros. VISITA 1 +2368 2025-11-22 01:25:26.997862+00 2025-11-22 01:25:26.99787+00 f t \N 866 1065 Vacunación de 2 gatos +2369 2025-11-22 01:25:27.002639+00 2025-11-22 01:25:27.002648+00 f t \N 865 1064 Vacunación de 2 gatos +2370 2025-11-22 01:25:27.007641+00 2025-11-22 01:25:27.007649+00 f t \N 741 1060 VISITA 2. Pack 4 visitas, vacunacion inicial para 2 cachorros. +2371 2025-11-22 01:25:27.012252+00 2025-11-22 01:25:27.01226+00 f t \N 874 1073 certificado de salud +2372 2025-11-22 01:25:27.01765+00 2025-11-22 01:25:27.017659+00 f t \N 868 1070 Eutanasia +2373 2025-11-22 01:25:27.025717+00 2025-11-22 01:25:27.02573+00 f t \N 872 1071 Dolores y arrastre el la pata trasera, precedentes de dolores en la cadera +2374 2025-11-22 01:25:27.032359+00 2025-11-22 01:25:27.032371+00 f t \N 855 1057 Vacunación anual +2375 2025-11-22 01:25:27.038586+00 2025-11-22 01:25:27.038598+00 f t \N 868 1068 Dolor por artrosis, suministrar mediación +2376 2025-11-22 01:25:27.044944+00 2025-11-22 01:25:27.044955+00 f t \N 854 1056 Vacunación anual +2377 2025-11-22 01:25:27.051221+00 2025-11-22 01:25:27.051233+00 f t \N 838 1036 dolor de oidos +2378 2025-11-22 01:25:27.057133+00 2025-11-22 01:25:27.057145+00 f t \N 867 1067 Decaimiento y cambio en la conducta +2379 2025-11-22 01:25:27.062596+00 2025-11-22 01:25:27.062608+00 f t \N 858 1059 Falta de movilidad +2380 2025-11-22 01:25:27.068139+00 2025-11-22 01:25:27.068151+00 f t \N 843 1048 +2381 2025-11-22 01:25:27.073653+00 2025-11-22 01:25:27.073666+00 f t \N 844 1047 +2382 2025-11-22 01:25:27.079071+00 2025-11-22 01:25:27.079082+00 f t \N 832 1062 Resolucion y tratamiento +2383 2025-11-22 01:25:27.084708+00 2025-11-22 01:25:27.084719+00 f t \N 832 1063 Resolucion y tratamiento a seguir +2384 2025-11-22 01:25:27.09031+00 2025-11-22 01:25:27.090323+00 f t \N 859 1061 Dificultad para apoyar la patita +2385 2025-11-22 01:25:27.096012+00 2025-11-22 01:25:27.096025+00 f t \N 856 1058 Segunda opinion sobre el cuadro comentado +2386 2025-11-22 01:25:27.101527+00 2025-11-22 01:25:27.101539+00 f t \N 853 1055 +2387 2025-11-22 01:25:27.107406+00 2025-11-22 01:25:27.107417+00 f t \N 837 1035 +2388 2025-11-22 01:25:27.111993+00 2025-11-22 01:25:27.112003+00 f t \N 832 1043 Eco abdominal +2389 2025-11-22 01:25:27.117095+00 2025-11-22 01:25:27.117103+00 f t \N 841 1038 Control +2390 2025-11-22 01:25:27.121693+00 2025-11-22 01:25:27.121704+00 f t \N 839 1039 +2391 2025-11-22 01:25:27.126424+00 2025-11-22 01:25:27.126432+00 f t \N 841 1040 Control +2392 2025-11-22 01:25:27.131025+00 2025-11-22 01:25:27.131032+00 f t \N 849 1050 Posible diagnostico de tiroides +2393 2025-11-22 01:25:27.135309+00 2025-11-22 01:25:27.135317+00 f t \N 224 1024 Dolor de piernas +2394 2025-11-22 01:25:27.139587+00 2025-11-22 01:25:27.139596+00 f t \N 833 1052 Vacunacion con sextuple +2395 2025-11-22 01:25:27.144826+00 2025-11-22 01:25:27.144837+00 f t \N 834 1051 Vacunacion sextuple y triple felina +2396 2025-11-22 01:25:27.153606+00 2025-11-22 01:25:27.153615+00 f t \N 848 1049 Eco abdominal +2397 2025-11-22 01:25:27.158171+00 2025-11-22 01:25:27.158178+00 f t \N 851 1054 vacunacion anual +2398 2025-11-22 01:25:27.162724+00 2025-11-22 01:25:27.162733+00 f t \N 128 1033 Evaluación de resultados +2399 2025-11-22 01:25:27.167244+00 2025-11-22 01:25:27.167252+00 f t \N 835 1041 Consulta clinica por orina con sangre en poca cantidad +2400 2025-11-22 01:25:27.171748+00 2025-11-22 01:25:27.171759+00 f t \N 832 1042 Perfil hepatico+ calcemia + fosfatemia+ ionograma + frotis es Parasitos Hematico +2401 2025-11-22 01:25:27.176186+00 2025-11-22 01:25:27.176193+00 f t \N 827 1032 +2402 2025-11-22 01:25:27.18062+00 2025-11-22 01:25:27.180628+00 f t \N 820 1021 :Vacunacion anual y control por gingivitis +2403 2025-11-22 01:25:27.185686+00 2025-11-22 01:25:27.185697+00 f t \N 821 1020 Vacunacion anual y control por gingivitis +2404 2025-11-22 01:25:27.191309+00 2025-11-22 01:25:27.19132+00 f t \N 801 1004 Consulta clinica +2405 2025-11-22 01:25:27.197598+00 2025-11-22 01:25:27.197609+00 f t \N 831 1030 Vacunación anual a dos gatos +2406 2025-11-22 01:25:27.203106+00 2025-11-22 01:25:27.203114+00 f t \N 831 1029 Vacunación anual a 2 gatos +2407 2025-11-22 01:25:27.207748+00 2025-11-22 01:25:27.207758+00 f t \N 832 1031 Decaimiento, vomito +2408 2025-11-22 01:25:27.212447+00 2025-11-22 01:25:27.212454+00 f t \N 800 1027 Chequeo de seguimiento +2409 2025-11-22 01:25:27.217675+00 2025-11-22 01:25:27.217686+00 f t \N 827 1028 Falta de apetito, decaimiento y defecto con sangre +2410 2025-11-22 01:25:27.222045+00 2025-11-22 01:25:27.222052+00 f t \N 782 983 Vacunacion anual gato + corte de garras X 2 +2411 2025-11-22 01:25:27.226203+00 2025-11-22 01:25:27.22621+00 f t \N 783 984 vacunacion anual gato + corte de garras X 2 +2412 2025-11-22 01:25:27.230658+00 2025-11-22 01:25:27.230664+00 f t \N 720 1026 Físioterepia +2413 2025-11-22 01:25:27.234618+00 2025-11-22 01:25:27.234624+00 f t \N 826 1025 Refuerzo de la vacuna Quíntuple +2414 2025-11-22 01:25:27.238269+00 2025-11-22 01:25:27.238276+00 f t \N 798 999 Posible dermatitis +2415 2025-11-22 01:25:27.242059+00 2025-11-22 01:25:27.242066+00 f t \N 823 1023 Decaimiento, cambios en el comportamiento,dificultad respiratorio +2416 2025-11-22 01:25:27.246124+00 2025-11-22 01:25:27.246131+00 f t \N 822 1022 Vómitos alimenticio +2417 2025-11-22 01:25:27.250267+00 2025-11-22 01:25:27.250274+00 f t \N 819 1018 Vomitos intermitentes +2418 2025-11-22 01:25:27.254105+00 2025-11-22 01:25:27.254112+00 f t \N 818 1019 Vomitos intermitentes +2419 2025-11-22 01:25:27.258375+00 2025-11-22 01:25:27.258383+00 f t \N 810 1015 Revisión de bulto que supura en la zona del cuello +2420 2025-11-22 01:25:27.262396+00 2025-11-22 01:25:27.262403+00 f t \N 817 1017 Ecografía Abdominal +2421 2025-11-22 01:25:27.266426+00 2025-11-22 01:25:27.266433+00 f t \N 814 1013 primera consulta + desparasitacion interna + externa +2422 2025-11-22 01:25:27.272178+00 2025-11-22 01:25:27.272184+00 f t \N 813 1012 Dificultad en la marcha +2423 2025-11-22 01:25:27.2762+00 2025-11-22 01:25:27.276206+00 f t \N 815 1014 Diarrea, no presenta decaimiento, vomitos +2424 2025-11-22 01:25:27.279873+00 2025-11-22 01:25:27.279879+00 f t \N 808 1005 Consulta por vomitos +2425 2025-11-22 01:25:27.283598+00 2025-11-22 01:25:27.283604+00 f t \N 812 1011 Cambio en el comportamiento +2426 2025-11-22 01:25:27.28742+00 2025-11-22 01:25:27.287426+00 f t \N 811 1010 No puede abrir el ojo +2427 2025-11-22 01:25:27.291456+00 2025-11-22 01:25:27.291463+00 f t \N 810 1009 Bulto que supura en la zona del cuello +2428 2025-11-22 01:25:27.295431+00 2025-11-22 01:25:27.295437+00 f t \N 809 1006 Falta de aire, paciente con antecedente respiratorios +2429 2025-11-22 01:25:27.299285+00 2025-11-22 01:25:27.299291+00 f t \N 795 1008 Retiro de sonda y control +2430 2025-11-22 01:25:27.303194+00 2025-11-22 01:25:27.303203+00 f t \N 800 1002 Seguimiento + corte de uña +2431 2025-11-22 01:25:27.307504+00 2025-11-22 01:25:27.307511+00 f t \N 785 988 Eco abdominal +2432 2025-11-22 01:25:27.311776+00 2025-11-22 01:25:27.311784+00 f t \N 778 1003 Aclaracoion de valores\r\nCitologia por PAF: 16.000 x 2 = 32.000= (Eran dos muestras)3\r\nEnvio:12.000 +2433 2025-11-22 01:25:27.316386+00 2025-11-22 01:25:27.316393+00 f t \N 197 998 +2434 2025-11-22 01:25:27.320953+00 2025-11-22 01:25:27.32096+00 f t \N 792 995 Estrés +2435 2025-11-22 01:25:27.325227+00 2025-11-22 01:25:27.325234+00 f t \N 128 516 control clinico + drenaje glandulas +2436 2025-11-22 01:25:27.329928+00 2025-11-22 01:25:27.329935+00 f t \N 799 1000 Decaimiento// Esta en lugares raros (maúlla mucho y toma muchísima agüita. Tambien va bastante a las piedritas aunque no siempre hace pis. +2437 2025-11-22 01:25:27.33523+00 2025-11-22 01:25:27.335238+00 f t \N 788 996 control +2438 2025-11-22 01:25:27.339717+00 2025-11-22 01:25:27.339725+00 f t \N 795 997 Orina con sangre +2439 2025-11-22 01:25:27.344312+00 2025-11-22 01:25:27.344319+00 f t \N 800 1001 Falta de alimentación por decaimiento +2440 2025-11-22 01:25:27.348742+00 2025-11-22 01:25:27.348751+00 f t \N 780 979 consulta general, se cree dolencia por su mirada, por como come, y se mueve +2441 2025-11-22 01:25:27.353052+00 2025-11-22 01:25:27.353061+00 f t \N 778 977 vacunación anual y revisión de bulto +2442 2025-11-22 01:25:27.35719+00 2025-11-22 01:25:27.357197+00 f t \N 313 980 Lesión en el ano +2443 2025-11-22 01:25:27.361392+00 2025-11-22 01:25:27.361399+00 f t \N 720 982 Físioterepia +2444 2025-11-22 01:25:27.365375+00 2025-11-22 01:25:27.365381+00 f t \N 787 991 Consulta clinica +2445 2025-11-22 01:25:27.369349+00 2025-11-22 01:25:27.369356+00 f t \N 791 994 Consultas sobre su gatita +2446 2025-11-22 01:25:27.373241+00 2025-11-22 01:25:27.373246+00 f t \N 791 993 Consultas puntuales sobre Tura +2447 2025-11-22 01:25:27.37731+00 2025-11-22 01:25:27.377316+00 f t \N 716 992 Extraccion de sangre +2448 2025-11-22 01:25:27.381861+00 2025-11-22 01:25:27.381868+00 f t \N 786 989 Urgencia : :Falta de apetito, y no bebe agua. Evacuaciones normales +2449 2025-11-22 01:25:27.38587+00 2025-11-22 01:25:27.385879+00 f t \N 128 971 control clinico + drenaje glandulas +2450 2025-11-22 01:25:27.39004+00 2025-11-22 01:25:27.390046+00 f t \N 779 990 Refuerzo con sextuple +2451 2025-11-22 01:25:27.394125+00 2025-11-22 01:25:27.394131+00 f t \N 779 978 1er visita cachorro perro. vacunacion +2452 2025-11-22 01:25:27.398144+00 2025-11-22 01:25:27.39815+00 f t \N 784 987 Vacunacion con triple felina +2453 2025-11-22 01:25:27.402373+00 2025-11-22 01:25:27.40238+00 f t \N 770 966 Vacunación anual +2454 2025-11-22 01:25:27.406341+00 2025-11-22 01:25:27.406347+00 f t \N 771 967 vacunacion anual +2455 2025-11-22 01:25:27.410749+00 2025-11-22 01:25:27.410756+00 f t \N 781 981 Paciente con vómitos y diarrea +2456 2025-11-22 01:25:27.415044+00 2025-11-22 01:25:27.415051+00 f t \N 767 963 Vacunacion anual +2457 2025-11-22 01:25:27.419446+00 2025-11-22 01:25:27.419453+00 f t \N 777 975 Resolución endocrinológica +2458 2025-11-22 01:25:27.423559+00 2025-11-22 01:25:27.423567+00 f t \N 758 976 teleconsulta para ver resultados del estudio +2459 2025-11-22 01:25:27.42781+00 2025-11-22 01:25:27.427816+00 f t \N 776 974 vacunacion anual + corte de garras +2460 2025-11-22 01:25:27.432762+00 2025-11-22 01:25:27.432771+00 f t \N 751 941 Vacunacion anual para dos pacientes +2461 2025-11-22 01:25:27.437038+00 2025-11-22 01:25:27.437045+00 f t \N 769 965 Vacunacion anual para dos mascotas +2462 2025-11-22 01:25:27.44122+00 2025-11-22 01:25:27.441227+00 f t \N 769 964 Vacunacion anual para 2 mascotas +2463 2025-11-22 01:25:27.445376+00 2025-11-22 01:25:27.445385+00 f t \N 774 973 vacunacion anual x 2 gatos +2464 2025-11-22 01:25:27.449449+00 2025-11-22 01:25:27.449456+00 f t \N 775 972 vacunacion anual x 2 gatos +2465 2025-11-22 01:25:27.453463+00 2025-11-22 01:25:27.453469+00 f t \N 760 953 Vacunación anual +2466 2025-11-22 01:25:27.457977+00 2025-11-22 01:25:27.457984+00 f t \N 772 969 Resfuerzo + corte de uña para el gatito y control clinico Choe alergias en la piel +2467 2025-11-22 01:25:27.46217+00 2025-11-22 01:25:27.462177+00 f t \N 773 970 Se aclara todo en el turno de choe +2468 2025-11-22 01:25:27.466363+00 2025-11-22 01:25:27.46637+00 f t \N 581 720 Vacunación de la antirrábica +2469 2025-11-22 01:25:27.471173+00 2025-11-22 01:25:27.471184+00 f t \N 367 875 Vacunación anual de dos gatitos +2470 2025-11-22 01:25:27.475194+00 2025-11-22 01:25:27.475202+00 f t \N 368 874 Vacunación anual de dos gatitos +2471 2025-11-22 01:25:27.479942+00 2025-11-22 01:25:27.479953+00 f t \N 488 968 Estudio orina con sedimento : 6500x2\r\nTraslado de muestra:10.500 +2472 2025-11-22 01:25:27.485233+00 2025-11-22 01:25:27.485241+00 f t \N 766 961 hace rato que le lagrimea un ojito y se rasca y lastima la piel cercana. Ya la hicimos ver 2 veces este año. No hay ulcera ambas veces nos indicaron un colirio con corticoide y antibiotico pero no mejora\r\nEstos últimos dias estuvo con diarrea y la notamos un poco caiducha +2473 2025-11-22 01:25:27.489731+00 2025-11-22 01:25:27.489739+00 f t \N 816 1016 Hinchazón e irritación en el ojo +2474 2025-11-22 01:25:27.494078+00 2025-11-22 01:25:27.494086+00 f t \N 488 962 Tiene unos granitos en el bozal y ayer hizo pis con un poco de sangre y un gusano salio. Un gusano como si parefiera de tierra. +2475 2025-11-22 01:25:27.498473+00 2025-11-22 01:25:27.498481+00 f t \N 764 958 vacunación anual +2476 2025-11-22 01:25:27.503422+00 2025-11-22 01:25:27.503431+00 f t \N 762 956 Vacunación anual para dos mascotas +2477 2025-11-22 01:25:27.508541+00 2025-11-22 01:25:27.508549+00 f t \N 763 957 Vacunación anual para dos mascotas +2478 2025-11-22 01:25:27.512743+00 2025-11-22 01:25:27.512751+00 f t \N 115 954 Ecocardiograma +2479 2025-11-22 01:25:27.517238+00 2025-11-22 01:25:27.517244+00 f t \N 756 948 Chequeo General +2480 2025-11-22 01:25:27.521892+00 2025-11-22 01:25:27.521899+00 f t \N 176 960 +2481 2025-11-22 01:25:27.526678+00 2025-11-22 01:25:27.526685+00 f t \N 755 947 Vacunación anual +2482 2025-11-22 01:25:27.530926+00 2025-11-22 01:25:27.530932+00 f t \N 645 946 Segunda dosis de la sextuple +2483 2025-11-22 01:25:27.535837+00 2025-11-22 01:25:27.535845+00 f t \N 758 951 PCG sin orina +2484 2025-11-22 01:25:27.540657+00 2025-11-22 01:25:27.540665+00 f t \N 761 955 desparasitación interna + externa y Vacunación anual +2485 2025-11-22 01:25:27.545273+00 2025-11-22 01:25:27.545281+00 f t \N 765 959 Eco abdominal +2486 2025-11-22 01:25:27.549572+00 2025-11-22 01:25:27.549579+00 f t \N 759 952 Vomito por tto con corticoides +2487 2025-11-22 01:25:27.554457+00 2025-11-22 01:25:27.554469+00 f t \N 743 933 Chequeo y revisión +2488 2025-11-22 01:25:27.559504+00 2025-11-22 01:25:27.559513+00 f t \N 128 926 PGC con orina +2489 2025-11-22 01:25:27.564158+00 2025-11-22 01:25:27.56417+00 f t \N 758 950 urgencia, no come y vomito 2 veces +2490 2025-11-22 01:25:27.569299+00 2025-11-22 01:25:27.569307+00 f t \N 757 949 clínica por lastimadura en genitales y dolor de cadera +2491 2025-11-22 01:25:27.573985+00 2025-11-22 01:25:27.573993+00 f t \N 753 943 Vómitos, diarrea con sangre y jadeos +2492 2025-11-22 01:25:27.578295+00 2025-11-22 01:25:27.578303+00 f t \N 519 944 Lastimadura de la pata +2493 2025-11-22 01:25:27.582468+00 2025-11-22 01:25:27.582478+00 f t \N 754 945 Vacunación de la triple felina, segunda dosis +2494 2025-11-22 01:25:27.586689+00 2025-11-22 01:25:27.586697+00 f t \N 146 942 Vacunación antirrábica y corte de uñas +2495 2025-11-22 01:25:27.591957+00 2025-11-22 01:25:27.591966+00 f t \N 128 925 radiografia de columna +2496 2025-11-22 01:25:27.596575+00 2025-11-22 01:25:27.596582+00 f t \N 115 927 Ecografia abdominal +2497 2025-11-22 01:25:27.601045+00 2025-11-22 01:25:27.601053+00 f t \N 750 940 Eco abdominal +2498 2025-11-22 01:25:27.605696+00 2025-11-22 01:25:27.605703+00 f t \N 739 931 vacunacion anual +2499 2025-11-22 01:25:27.610226+00 2025-11-22 01:25:27.610236+00 f t \N 741 932 Pack 4 visitas, vacunacion inicial para 2 cachorros. +2500 2025-11-22 01:25:27.615306+00 2025-11-22 01:25:27.615316+00 f t \N 747 937 Vacunacion anual para tres mascotas +2501 2025-11-22 01:25:27.619694+00 2025-11-22 01:25:27.619701+00 f t \N 682 848 3 radiografias +2502 2025-11-22 01:25:27.623827+00 2025-11-22 01:25:27.623835+00 f t \N 749 939 Vacunacion anual +2503 2025-11-22 01:25:27.627972+00 2025-11-22 01:25:27.627979+00 f t \N 748 938 Vacunacion anual +2504 2025-11-22 01:25:27.632167+00 2025-11-22 01:25:27.632174+00 f t \N 744 934 +2505 2025-11-22 01:25:27.636602+00 2025-11-22 01:25:27.636614+00 f t \N 745 935 Eco abdominal +2506 2025-11-22 01:25:27.641491+00 2025-11-22 01:25:27.641499+00 f t \N 711 889 Vacunacion anual +2507 2025-11-22 01:25:27.646225+00 2025-11-22 01:25:27.646233+00 f t \N 123 894 Vacunacion anual +2508 2025-11-22 01:25:27.650933+00 2025-11-22 01:25:27.650944+00 f t \N 123 895 vacunacion anual +2509 2025-11-22 01:25:27.656066+00 2025-11-22 01:25:27.656075+00 f t \N 693 864 Vacunación anual +2510 2025-11-22 01:25:27.66051+00 2025-11-22 01:25:27.660519+00 f t \N 746 936 Dificultad en la marcha, Mialgia +2511 2025-11-22 01:25:27.664793+00 2025-11-22 01:25:27.664801+00 f t \N 739 928 Vacunacion anual +2512 2025-11-22 01:25:27.669267+00 2025-11-22 01:25:27.669276+00 f t \N 724 924 Teleconsulta +2513 2025-11-22 01:25:27.674936+00 2025-11-22 01:25:27.674945+00 f t \N 726 912 Vacunación anual +2514 2025-11-22 01:25:27.679373+00 2025-11-22 01:25:27.67938+00 f t \N 727 911 vacunación anual +2515 2025-11-22 01:25:27.683706+00 2025-11-22 01:25:27.683713+00 f t \N 505 839 consulta oftalmologica +2516 2025-11-22 01:25:27.688216+00 2025-11-22 01:25:27.688223+00 f t \N 740 929 Eco abdominal +2517 2025-11-22 01:25:27.692758+00 2025-11-22 01:25:27.692765+00 f t \N 724 907 Teleconsulta +2518 2025-11-22 01:25:27.697537+00 2025-11-22 01:25:27.697544+00 f t \N 729 910 Vacunación anual +2519 2025-11-22 01:25:27.702328+00 2025-11-22 01:25:27.702337+00 f t \N 716 896 Tiene 2 cosas q nos preoucpan: por un lado, gastrointestinal. Se descompone bastante seguido. Y por otro lado, respira con dificultad. También quisiéramos quedarnos tranquilos de que no hay nada grave\r\nAl ser de la calle, tuvo sarna hace un par de años. Y si bien hoy está 100% curado, no sabemos si algo de esto es una secuela +2520 2025-11-22 01:25:27.707826+00 2025-11-22 01:25:27.707833+00 f t \N 728 909 Vacunación anual +2521 2025-11-22 01:25:27.712518+00 2025-11-22 01:25:27.712525+00 f t \N 734 919 vomitos continuos +2522 2025-11-22 01:25:27.717181+00 2025-11-22 01:25:27.717189+00 f t \N 713 892 consulta clínica, chequeo general +2523 2025-11-22 01:25:27.721659+00 2025-11-22 01:25:27.721666+00 f t \N 621 906 ecocardiograma +2524 2025-11-22 01:25:27.725867+00 2025-11-22 01:25:27.725874+00 f t \N 637 915 Devolución de resultados +2525 2025-11-22 01:25:27.729954+00 2025-11-22 01:25:27.729961+00 f t \N 735 920 Lastimadura en el lomo +2526 2025-11-22 01:25:27.734405+00 2025-11-22 01:25:27.734413+00 f t \N 736 921 Eco abdominal +2527 2025-11-22 01:25:27.738675+00 2025-11-22 01:25:27.738681+00 f t \N 737 922 Urgencia por continuas diarrea +2528 2025-11-22 01:25:27.743317+00 2025-11-22 01:25:27.743324+00 f t \N 128 916 ecografia abdominal +2529 2025-11-22 01:25:27.748203+00 2025-11-22 01:25:27.74821+00 f t \N 738 923 Eutanasia +2530 2025-11-22 01:25:27.753056+00 2025-11-22 01:25:27.753064+00 f t \N 721 903 Vacunacion anul y desparasitacion interna y extena para dos mascotas. +2531 2025-11-22 01:25:27.757582+00 2025-11-22 01:25:27.757589+00 f t \N 721 904 Vacunacion anual y desparasitacion interna y extena para dos mascotas. +2532 2025-11-22 01:25:27.761671+00 2025-11-22 01:25:27.761677+00 f t \N 732 917 gato con posible obstruccion, hace pis con gotas de sangre + consulta gral gato adulto +2533 2025-11-22 01:25:27.765792+00 2025-11-22 01:25:27.765798+00 f t \N 733 918 +2534 2025-11-22 01:25:27.769863+00 2025-11-22 01:25:27.769869+00 f t \N 637 902 Devolución de resultados +2535 2025-11-22 01:25:27.774053+00 2025-11-22 01:25:27.774058+00 f t \N 731 914 chequeo por problemas con la respiración +2536 2025-11-22 01:25:27.778092+00 2025-11-22 01:25:27.778097+00 f t \N 730 913 Eutanasia +2537 2025-11-22 01:25:27.782079+00 2025-11-22 01:25:27.782085+00 f t \N 725 908 Posibles paracitos +2538 2025-11-22 01:25:27.785966+00 2025-11-22 01:25:27.785972+00 f t \N 723 905 Px con lesión vestibular +2539 2025-11-22 01:25:27.789873+00 2025-11-22 01:25:27.789879+00 f t \N 720 900 Recomposicion de vendaje +2540 2025-11-22 01:25:27.793793+00 2025-11-22 01:25:27.7938+00 f t \N 548 898 Presenta ronchas en el cuerpo, creen que es sarna. +2541 2025-11-22 01:25:27.797956+00 2025-11-22 01:25:27.797964+00 f t \N 599 888 Revisión general +2542 2025-11-22 01:25:27.802049+00 2025-11-22 01:25:27.802056+00 f t \N 353 901 Consulta clinica por vomitos amarillento y no tiene una alimentacio uniforme +2543 2025-11-22 01:25:27.806091+00 2025-11-22 01:25:27.806097+00 f t \N 718 899 Lesiones en pies por rascarse. Hoy amaneció con el ojitos izquierdo hinchado. +2544 2025-11-22 01:25:27.810303+00 2025-11-22 01:25:27.810309+00 f t \N 714 893 Control clinico para el paciente +2545 2025-11-22 01:25:27.814247+00 2025-11-22 01:25:27.814254+00 f t \N 717 897 Se rasca mucho, tiene costritas +2546 2025-11-22 01:25:27.818164+00 2025-11-22 01:25:27.81817+00 f t \N 696 868 vacunación de la triple felina a un gatito y el corte de uñas +2547 2025-11-22 01:25:27.822684+00 2025-11-22 01:25:27.82269+00 f t \N 697 869 Corte de uñas +2548 2025-11-22 01:25:27.827662+00 2025-11-22 01:25:27.827668+00 f t \N 715 930 Lesion en la movilidad +2549 2025-11-22 01:25:27.832768+00 2025-11-22 01:25:27.832778+00 f t \N 712 891 Decaimineto, episodios previos de vomitos +2550 2025-11-22 01:25:27.837824+00 2025-11-22 01:25:27.837831+00 f t \N 685 854 Ecografía abdominal +2551 2025-11-22 01:25:27.842957+00 2025-11-22 01:25:27.842967+00 f t \N 527 841 Resolucion de resultado +2552 2025-11-22 01:25:27.848201+00 2025-11-22 01:25:27.84821+00 f t \N 719 890 Lesion ocular +2553 2025-11-22 01:25:27.853086+00 2025-11-22 01:25:27.853092+00 f t \N 703 878 vacunación anual +2554 2025-11-22 01:25:27.858479+00 2025-11-22 01:25:27.858486+00 f t \N 707 884 urgencia dolor estomacal +2555 2025-11-22 01:25:27.863347+00 2025-11-22 01:25:27.863355+00 f t \N 698 870 Consulta Online +2556 2025-11-22 01:25:27.868008+00 2025-11-22 01:25:27.868014+00 f t \N 706 883 vómitos y falta de apetito +2557 2025-11-22 01:25:27.872677+00 2025-11-22 01:25:27.872684+00 f t \N 710 887 Desparasitación y certificación de salud +2558 2025-11-22 01:25:27.877362+00 2025-11-22 01:25:27.877368+00 f t \N 708 885 urgencia, dermatitis, posible inyección de corticoide +2559 2025-11-22 01:25:27.882086+00 2025-11-22 01:25:27.882092+00 f t \N 653 881 Ecografía abdominal +2560 2025-11-22 01:25:27.886234+00 2025-11-22 01:25:27.886241+00 f t \N 567 856 Colocacion de via para terapia de filtraciones, es subcutáneo medicación homeópata +2561 2025-11-22 01:25:27.890102+00 2025-11-22 01:25:27.890109+00 f t \N 709 886 Revisión por posible embarazo +2562 2025-11-22 01:25:27.893978+00 2025-11-22 01:25:27.893984+00 f t \N 699 871 vacunación de la triple felina +2563 2025-11-22 01:25:27.897934+00 2025-11-22 01:25:27.89794+00 f t \N 702 877 urgencia rengueo en la pata y corte de uñas +2564 2025-11-22 01:25:27.901645+00 2025-11-22 01:25:27.901651+00 f t \N 705 882 Lastimadura en la piel +2565 2025-11-22 01:25:27.9054+00 2025-11-22 01:25:27.905405+00 f t \N 653 880 Revisión y chequeo de urgencia +2566 2025-11-22 01:25:27.909141+00 2025-11-22 01:25:27.909147+00 f t \N 695 867 Vacunacion anual y revision por lesiones en el cuerpo +2567 2025-11-22 01:25:27.913057+00 2025-11-22 01:25:27.913064+00 f t \N 694 865 Vacunación anual +2568 2025-11-22 01:25:27.916957+00 2025-11-22 01:25:27.916964+00 f t \N 676 873 Revisión de resultados +2569 2025-11-22 01:25:27.920972+00 2025-11-22 01:25:27.920978+00 f t \N 701 876 urgencia, presenta rengueo e hinchazón +2570 2025-11-22 01:25:27.925054+00 2025-11-22 01:25:27.925061+00 f t \N 704 879 Ecografía Abdominal +2571 2025-11-22 01:25:27.929342+00 2025-11-22 01:25:27.929349+00 f t \N 700 872 Alergia en la piel, se ha lastimado +2572 2025-11-22 01:25:27.933326+00 2025-11-22 01:25:27.933332+00 f t \N 683 849 vacunacion anual +2573 2025-11-22 01:25:27.938484+00 2025-11-22 01:25:27.938494+00 f t \N 691 862 Resolución de estudios +2574 2025-11-22 01:25:27.944431+00 2025-11-22 01:25:27.944441+00 f t \N 676 860 Rayos +2575 2025-11-22 01:25:27.950476+00 2025-11-22 01:25:27.950487+00 f t \N 692 863 Consumo de pasta dental +2576 2025-11-22 01:25:27.956613+00 2025-11-22 01:25:27.956621+00 f t \N 688 858 Dificultad en la marcha +2577 2025-11-22 01:25:27.961755+00 2025-11-22 01:25:27.961763+00 f t \N 623 852 Estudio cardiologicos prequirurgicos +2578 2025-11-22 01:25:27.966586+00 2025-11-22 01:25:27.966595+00 f t \N 637 850 Consulta clínica con extracción de sangre para realizar estudios +2579 2025-11-22 01:25:27.971522+00 2025-11-22 01:25:27.97153+00 f t \N 690 861 perra está tirada no quiere comer ni tomar agua, ayer vomito y hoy hizo caca como una gelatina marron sanguíneo +2580 2025-11-22 01:25:27.976274+00 2025-11-22 01:25:27.97629+00 f t \N 581 719 Vacunación de la sextuple - 2dosis +2581 2025-11-22 01:25:27.980436+00 2025-11-22 01:25:27.980442+00 f t \N 631 842 Estudio ecográfico +2582 2025-11-22 01:25:27.984613+00 2025-11-22 01:25:27.98462+00 f t \N 689 859 Diarrea- decaimiento +2583 2025-11-22 01:25:27.988573+00 2025-11-22 01:25:27.98858+00 f t \N 128 857 Seguimiento del caso +2584 2025-11-22 01:25:27.992719+00 2025-11-22 01:25:27.992727+00 f t \N 659 843 Seguimiento por tratamiento +2585 2025-11-22 01:25:27.997119+00 2025-11-22 01:25:27.997127+00 f t \N 551 836 vacunacion 2da dosis gato cachorro +2586 2025-11-22 01:25:28.001075+00 2025-11-22 01:25:28.001081+00 f t \N 637 840 Consulta clínica con extracción de sangre para realizar estudios +2587 2025-11-22 01:25:28.005375+00 2025-11-22 01:25:28.005383+00 f t \N 687 855 Ecografia abdominal de Urgencia +2588 2025-11-22 01:25:28.009953+00 2025-11-22 01:25:28.009959+00 f t \N 686 853 Ecografía abdominal por vómitos +2589 2025-11-22 01:25:28.013848+00 2025-11-22 01:25:28.013855+00 f t \N 623 851 Consulta clinica, extracción para analisis Perfil Prequirúrgico +2590 2025-11-22 01:25:28.018262+00 2025-11-22 01:25:28.018269+00 f t \N 676 835 Consulta clínica\r\nEstá o estuvo tomando alguna medicación en los últimos 7 días? No\r\nPuede asustarse, estresarse o ponerse a la defensiva con personas que no conoce? Si +2591 2025-11-22 01:25:28.022523+00 2025-11-22 01:25:28.02253+00 f t \N 678 845 Vacunacion anual +2592 2025-11-22 01:25:28.026518+00 2025-11-22 01:25:28.026525+00 f t \N 679 844 Vacunacion anual +2593 2025-11-22 01:25:28.030515+00 2025-11-22 01:25:28.030522+00 f t \N 681 847 Vacunacion anual +2594 2025-11-22 01:25:28.034576+00 2025-11-22 01:25:28.034582+00 f t \N 680 846 Vacunacion anual para dos mascotas +2595 2025-11-22 01:25:28.038892+00 2025-11-22 01:25:28.038899+00 f t \N 668 824 vacunacion anual +2596 2025-11-22 01:25:28.042942+00 2025-11-22 01:25:28.042949+00 f t \N 550 838 vacunacion 2da dosis 2 gatos cachorros +2597 2025-11-22 01:25:28.046791+00 2025-11-22 01:25:28.046797+00 f t \N 673 830 ECG +2598 2025-11-22 01:25:28.050598+00 2025-11-22 01:25:28.050604+00 f t \N 519 831 vacunacion anual +2599 2025-11-22 01:25:28.054442+00 2025-11-22 01:25:28.054448+00 f t \N 667 823 vacunación anual perro +2600 2025-11-22 01:25:28.058276+00 2025-11-22 01:25:28.058282+00 f t \N 644 791 Vacunación anual +2601 2025-11-22 01:25:28.063063+00 2025-11-22 01:25:28.063073+00 f t \N 674 832 vacunacion anual +2602 2025-11-22 01:25:28.069382+00 2025-11-22 01:25:28.069391+00 f t \N 656 807 Eco cardiologico +2603 2025-11-22 01:25:28.073448+00 2025-11-22 01:25:28.073455+00 f t \N 670 826 Control clinico +2604 2025-11-22 01:25:28.077539+00 2025-11-22 01:25:28.077546+00 f t \N 628 828 Consulta clinica + corte garras +2605 2025-11-22 01:25:28.082075+00 2025-11-22 01:25:28.082082+00 f t \N 677 837 clínica por ojos hinchados, y comezón\r\nNo tomo ninguna medicación\r\nSe asusta pero no ataca +2606 2025-11-22 01:25:28.086268+00 2025-11-22 01:25:28.086275+00 f t \N 672 829 urgencia por problemas de retención de orina y al caminar +2607 2025-11-22 01:25:28.090346+00 2025-11-22 01:25:28.090353+00 f t \N 675 834 Ojo con hinchazón que imposibilita que lo abra +2608 2025-11-22 01:25:28.09433+00 2025-11-22 01:25:28.094336+00 f t \N 641 790 Radiografía +2609 2025-11-22 01:25:28.0985+00 2025-11-22 01:25:28.098507+00 f t \N 671 827 Ojos lesiones con secreccion purulenta, se le pegan +2610 2025-11-22 01:25:28.103306+00 2025-11-22 01:25:28.103317+00 f t \N 660 816 Diarrea +2611 2025-11-22 01:25:28.107685+00 2025-11-22 01:25:28.107691+00 f t \N 669 825 ecografia abdominal +2612 2025-11-22 01:25:28.111846+00 2025-11-22 01:25:28.111853+00 f t \N 664 820 Lesión en ojos +2613 2025-11-22 01:25:28.116002+00 2025-11-22 01:25:28.116008+00 f t \N 527 806 Extraccion + clinica +2614 2025-11-22 01:25:28.120198+00 2025-11-22 01:25:28.120204+00 f t \N 666 822 Vacunación anual para dos mascotas +2615 2025-11-22 01:25:28.124138+00 2025-11-22 01:25:28.124145+00 f t \N 665 821 Vacunación anual para dos mascotas +2616 2025-11-22 01:25:28.128192+00 2025-11-22 01:25:28.128198+00 f t \N 246 772 prueba +2617 2025-11-22 01:25:28.132756+00 2025-11-22 01:25:28.132763+00 f t \N 661 817 decaimiento y problemas para comer +2618 2025-11-22 01:25:28.137054+00 2025-11-22 01:25:28.13706+00 f t \N 443 812 dificultad en la marcha y dolor en la cadera +2619 2025-11-22 01:25:28.141083+00 2025-11-22 01:25:28.141089+00 f t \N 663 819 urgencia por vómitos continuos y temblores +2620 2025-11-22 01:25:28.145219+00 2025-11-22 01:25:28.145225+00 f t \N 662 818 urgencia decaimiento y no quiere comer, presenta delgadez +2621 2025-11-22 01:25:28.149562+00 2025-11-22 01:25:28.149569+00 f t \N 659 814 Revisión y aplicación de gotitas para los oídos +2622 2025-11-22 01:25:28.153521+00 2025-11-22 01:25:28.153527+00 f t \N 599 732 Vacunacion anual +2623 2025-11-22 01:25:28.157757+00 2025-11-22 01:25:28.157768+00 f t \N 653 866 Retiro de muestras +2624 2025-11-22 01:25:28.161913+00 2025-11-22 01:25:28.16192+00 f t \N 658 813 Extracción de sangre y revisión por retención de líquido +2625 2025-11-22 01:25:28.166079+00 2025-11-22 01:25:28.166086+00 f t \N 128 515 control clinico + drenaje glandulas +2626 2025-11-22 01:25:28.169864+00 2025-11-22 01:25:28.169869+00 f t \N 309 815 Estudio de orina :6500: * 2\r\nRestante envio +2627 2025-11-22 01:25:28.174058+00 2025-11-22 01:25:28.174064+00 f t \N 505 808 Medición de la presión +2628 2025-11-22 01:25:28.178848+00 2025-11-22 01:25:28.178855+00 f t \N 655 805 LESION EN CUELLO +2629 2025-11-22 01:25:28.183449+00 2025-11-22 01:25:28.183456+00 f t \N 657 809 tos y dolor en tráquea por la edad +2630 2025-11-22 01:25:28.187832+00 2025-11-22 01:25:28.187842+00 f t \N 653 802 Chequeo de rutina por bajo de peso e hincazón +2631 2025-11-22 01:25:28.191977+00 2025-11-22 01:25:28.191983+00 f t \N 643 789 Vacunación anual +2632 2025-11-22 01:25:28.196202+00 2025-11-22 01:25:28.196208+00 f t \N 309 804 chequeo, gato con obstruccion +2633 2025-11-22 01:25:28.200644+00 2025-11-22 01:25:28.20065+00 f t \N 595 810 Revisión de resultados +2634 2025-11-22 01:25:28.204592+00 2025-11-22 01:25:28.204598+00 f t \N 595 811 Resultados +2635 2025-11-22 01:25:28.208717+00 2025-11-22 01:25:28.208722+00 f t \N 651 800 urgencia por decaimiento +2636 2025-11-22 01:25:28.212684+00 2025-11-22 01:25:28.212692+00 f t \N 654 803 urgencia por problemas de diarrea continua +2637 2025-11-22 01:25:28.217016+00 2025-11-22 01:25:28.217022+00 f t \N 647 795 bola cerca de una de las bolsas primordiales. +2638 2025-11-22 01:25:28.221207+00 2025-11-22 01:25:28.221213+00 f t \N 527 759 Revisión de herida +2639 2025-11-22 01:25:28.225503+00 2025-11-22 01:25:28.225509+00 f t \N 652 801 urgencia decaimiento y problemas al caminar +2640 2025-11-22 01:25:28.229709+00 2025-11-22 01:25:28.229716+00 f t \N 645 792 Vacunación anual +2641 2025-11-22 01:25:28.233811+00 2025-11-22 01:25:28.23382+00 f t \N 648 796 Irritación al orinar +2642 2025-11-22 01:25:28.237862+00 2025-11-22 01:25:28.237868+00 f t \N 649 798 Ecografía abdominal +2643 2025-11-22 01:25:28.242417+00 2025-11-22 01:25:28.242423+00 f t \N 649 797 Urgencia por vomitos y problemas para ingerir alimento desde hace 3 días +2644 2025-11-22 01:25:28.247512+00 2025-11-22 01:25:28.24752+00 f t \N 650 799 problema motriz en ambas piernas traseras +2645 2025-11-22 01:25:28.252323+00 2025-11-22 01:25:28.25233+00 f t \N 595 794 Revisión de resultados +2646 2025-11-22 01:25:28.256836+00 2025-11-22 01:25:28.256843+00 f t \N 646 793 Clínica, hinchazón y lastimadura en pata +2647 2025-11-22 01:25:28.26087+00 2025-11-22 01:25:28.260877+00 f t \N 641 787 Lesion en la cara +2648 2025-11-22 01:25:28.265147+00 2025-11-22 01:25:28.265154+00 f t \N 489 786 Control y seguimiento de tratamiento, chequeo de resultados +2649 2025-11-22 01:25:28.269573+00 2025-11-22 01:25:28.269579+00 f t \N 642 788 Lesion en la cola por mordedura +2650 2025-11-22 01:25:28.273594+00 2025-11-22 01:25:28.2736+00 f t \N 632 767 vacunación anual +2651 2025-11-22 01:25:28.277552+00 2025-11-22 01:25:28.277559+00 f t \N 596 784 Control +2652 2025-11-22 01:25:28.281836+00 2025-11-22 01:25:28.281843+00 f t \N 624 757 Vacunación anual y Corte de garras +2653 2025-11-22 01:25:28.286+00 2025-11-22 01:25:28.286007+00 f t \N 638 782 Px thena con vomitos +2654 2025-11-22 01:25:28.290214+00 2025-11-22 01:25:28.29022+00 f t \N 639 783 Vacunación anual +2655 2025-11-22 01:25:28.294634+00 2025-11-22 01:25:28.294642+00 f t \N 637 780 Vacunación anual +2656 2025-11-22 01:25:28.298635+00 2025-11-22 01:25:28.298643+00 f t \N 595 773 Inflamación de Pata trasera +2657 2025-11-22 01:25:28.302606+00 2025-11-22 01:25:28.302614+00 f t \N 486 779 consulta clinica +2658 2025-11-22 01:25:28.30673+00 2025-11-22 01:25:28.306736+00 f t \N 489 781 Decaimiento +2659 2025-11-22 01:25:28.31124+00 2025-11-22 01:25:28.311251+00 f t \N 485 778 Control clinico +2660 2025-11-22 01:25:28.315586+00 2025-11-22 01:25:28.315593+00 f t \N 621 776 Rayos +2661 2025-11-22 01:25:28.319917+00 2025-11-22 01:25:28.319924+00 f t \N 588 717 Vacunación anual de 2 gatitos +2662 2025-11-22 01:25:28.323971+00 2025-11-22 01:25:28.323977+00 f t \N 587 716 vacunación anual para 2 gatitas +2663 2025-11-22 01:25:28.328298+00 2025-11-22 01:25:28.328305+00 f t \N 567 777 colocacion de via +2664 2025-11-22 01:25:28.3326+00 2025-11-22 01:25:28.332606+00 f t \N 246 771 PRUEBA b +2665 2025-11-22 01:25:28.33676+00 2025-11-22 01:25:28.336767+00 f t \N 636 774 control clinicp +2666 2025-11-22 01:25:28.340952+00 2025-11-22 01:25:28.340958+00 f t \N 318 775 Intoxicación con desparasitador +2667 2025-11-22 01:25:28.345041+00 2025-11-22 01:25:28.345048+00 f t \N 640 785 sospecha de resfrío y babeo leve +2668 2025-11-22 01:25:28.348993+00 2025-11-22 01:25:28.349+00 f t \N 633 768 extracción de sangre y revisión de los genitales +2669 2025-11-22 01:25:28.353375+00 2025-11-22 01:25:28.353383+00 f t \N 635 770 vacunación anual +2670 2025-11-22 01:25:28.358619+00 2025-11-22 01:25:28.358628+00 f t \N 634 769 Posible conjuntivitis +2671 2025-11-22 01:25:28.363482+00 2025-11-22 01:25:28.363489+00 f t \N 617 750 Lesiones en el cuerpo,con descamacion y prurito +2672 2025-11-22 01:25:28.368655+00 2025-11-22 01:25:28.368663+00 f t \N 614 747 Tos espontanea +2673 2025-11-22 01:25:28.373003+00 2025-11-22 01:25:28.373011+00 f t \N 618 751 Jadeos continuos, estornudos y tos. Se puede escuchar un leve soplo +2674 2025-11-22 01:25:28.377339+00 2025-11-22 01:25:28.377346+00 f t \N 616 762 Vacunación Anua +2675 2025-11-22 01:25:28.381503+00 2025-11-22 01:25:28.381511+00 f t \N 628 763 urgencia por sangrado en el recto, decaimiento y no está ingiriendo alimento +2676 2025-11-22 01:25:28.385838+00 2025-11-22 01:25:28.385845+00 f t \N 631 766 Orina con sangre +2677 2025-11-22 01:25:28.390004+00 2025-11-22 01:25:28.390012+00 f t \N 630 765 Vomitos y paracitos internos +2678 2025-11-22 01:25:28.394118+00 2025-11-22 01:25:28.394125+00 f t \N 629 764 Vomitos y paracitos internos +2679 2025-11-22 01:25:28.398131+00 2025-11-22 01:25:28.398138+00 f t \N 627 761 Urgencia por mucho dolor en pierna con precedentes de quebradura +2680 2025-11-22 01:25:28.403336+00 2025-11-22 01:25:28.403347+00 f t \N 625 758 Adm de calmante +2681 2025-11-22 01:25:28.408081+00 2025-11-22 01:25:28.408088+00 f t \N 611 745 Vacunacion anual +2682 2025-11-22 01:25:28.412252+00 2025-11-22 01:25:28.412259+00 f t \N 623 756 colmillo flojo +2683 2025-11-22 01:25:28.416242+00 2025-11-22 01:25:28.416249+00 f t \N 626 760 Eutansia +2684 2025-11-22 01:25:28.420304+00 2025-11-22 01:25:28.420312+00 f t \N 619 752 Problemas para apoyar la pata +2685 2025-11-22 01:25:28.424392+00 2025-11-22 01:25:28.424399+00 f t \N 620 753 Erupciones y lastimaduras en la piel +2686 2025-11-22 01:25:28.428626+00 2025-11-22 01:25:28.428635+00 f t \N 622 755 Eutanasia +2687 2025-11-22 01:25:28.432703+00 2025-11-22 01:25:28.43271+00 f t \N 616 749 Posible bichera +2688 2025-11-22 01:25:28.436805+00 2025-11-22 01:25:28.436812+00 f t \N 615 748 Vacunacion anual +2689 2025-11-22 01:25:28.440764+00 2025-11-22 01:25:28.440771+00 f t \N 621 754 Ecografia abdominal +2690 2025-11-22 01:25:28.445363+00 2025-11-22 01:25:28.44537+00 f t \N 583 713 vacunación anual +2691 2025-11-22 01:25:28.449563+00 2025-11-22 01:25:28.449569+00 f t \N 558 681 Vacunacion anual + desparasitacion +2692 2025-11-22 01:25:28.453773+00 2025-11-22 01:25:28.453779+00 f t \N 602 735 VACUNACION ANUAL +2693 2025-11-22 01:25:28.457923+00 2025-11-22 01:25:28.45793+00 f t \N 612 746 Vacunacion anual +2694 2025-11-22 01:25:28.46181+00 2025-11-22 01:25:28.461817+00 f t \N 613 742 Vacunacion anual para ambas gatas por el fallecimiento del negro +2695 2025-11-22 01:25:28.465824+00 2025-11-22 01:25:28.46583+00 f t \N 610 744 Vomitos rojizos +2696 2025-11-22 01:25:28.469927+00 2025-11-22 01:25:28.469934+00 f t \N 609 743 Lesion turmoral en ano, con dificultad en la marcha +2697 2025-11-22 01:25:28.474047+00 2025-11-22 01:25:28.474054+00 f t \N 577 706 Hinchazón y lastimadura +2698 2025-11-22 01:25:28.478114+00 2025-11-22 01:25:28.478122+00 f t \N 605 738 vacunacion anual gato adulto, y consulta clinica gato adoptado adulto +2699 2025-11-22 01:25:28.482158+00 2025-11-22 01:25:28.482164+00 f t \N 606 739 vacunacion anual gato adulto, y consulta clinica gato adoptado adulto +2700 2025-11-22 01:25:28.486035+00 2025-11-22 01:25:28.486041+00 f t \N 581 718 Vacunación de 2 dosis de séxtuple y una antirrábica +2701 2025-11-22 01:25:28.490079+00 2025-11-22 01:25:28.490087+00 f t \N 579 709 Vacunación de la Sextuple +2702 2025-11-22 01:25:28.494456+00 2025-11-22 01:25:28.494464+00 f t \N 604 737 castrado el sábado y tiene una costra encima de la herida. cheque si está todo bien y recomendaciones para curaciones y recuperacion +2703 2025-11-22 01:25:28.498525+00 2025-11-22 01:25:28.498534+00 f t \N 608 741 Vomitos y deshidratacion +2704 2025-11-22 01:25:28.502856+00 2025-11-22 01:25:28.502863+00 f t \N 607 740 Ecografia abdominal +2705 2025-11-22 01:25:28.507084+00 2025-11-22 01:25:28.50709+00 f t \N 601 734 Ecografia abdominal +2706 2025-11-22 01:25:28.511093+00 2025-11-22 01:25:28.511099+00 f t \N 596 726 Consulta clínica por desprendimiento de olor fuerte y caída de pelaje +2707 2025-11-22 01:25:28.515231+00 2025-11-22 01:25:28.515237+00 f t \N 603 736 Inflamacion ocular +2708 2025-11-22 01:25:28.519777+00 2025-11-22 01:25:28.519784+00 f t \N 559 705 Control Clínico +2709 2025-11-22 01:25:28.523966+00 2025-11-22 01:25:28.523973+00 f t \N 600 733 Ecografia abdominal +2710 2025-11-22 01:25:28.528186+00 2025-11-22 01:25:28.528193+00 f t \N 595 727 consulta clínica por inflamación en pata trasera +2711 2025-11-22 01:25:28.532884+00 2025-11-22 01:25:28.532894+00 f t \N 595 728 consulta clínica por inflamación en pata trasera +2712 2025-11-22 01:25:28.537227+00 2025-11-22 01:25:28.537237+00 f t \N 597 730 Ecografía abdominal +2713 2025-11-22 01:25:28.541462+00 2025-11-22 01:25:28.541469+00 f t \N 597 729 Ecografía abdominal +2714 2025-11-22 01:25:28.545652+00 2025-11-22 01:25:28.545659+00 f t \N 589 721 vacunación anual +2715 2025-11-22 01:25:28.549593+00 2025-11-22 01:25:28.549601+00 f t \N 591 723 Control clinico por vomitos +2716 2025-11-22 01:25:28.55405+00 2025-11-22 01:25:28.554058+00 f t \N 592 724 Px con antecedente reanles, aparacion de masa en perineo, padecedor de artrosis avanzada, que dificultad la marcha. +2717 2025-11-22 01:25:28.5587+00 2025-11-22 01:25:28.558709+00 f t \N 598 731 Retiro de Via +2718 2025-11-22 01:25:28.56362+00 2025-11-22 01:25:28.563628+00 f t \N 590 722 Vacunacion anual + certifiacion de salud +2719 2025-11-22 01:25:28.568605+00 2025-11-22 01:25:28.568616+00 f t \N 582 712 Lastimadura en el ojo, pareciese una úlcera +2720 2025-11-22 01:25:28.57353+00 2025-11-22 01:25:28.573538+00 f t \N 561 693 ecografia abdominal +2721 2025-11-22 01:25:28.57846+00 2025-11-22 01:25:28.578468+00 f t \N 535 695 extracción de sangre +2722 2025-11-22 01:25:28.582956+00 2025-11-22 01:25:28.582964+00 f t \N 567 694 Colocacion de via +2723 2025-11-22 01:25:28.587701+00 2025-11-22 01:25:28.587709+00 f t \N 581 711 consulta clínica por rengueo y estrés +2724 2025-11-22 01:25:28.592126+00 2025-11-22 01:25:28.592133+00 f t \N 578 708 Lastimaduras en la zonas cercanas al ojo, barbilla y lomo +2725 2025-11-22 01:25:28.596429+00 2025-11-22 01:25:28.596437+00 f t \N 580 710 Urgencia decaimiento y problemas para defecar +2726 2025-11-22 01:25:28.600812+00 2025-11-22 01:25:28.600819+00 f t \N 576 704 Adm de triple felina para un px gato de 3 meses +2727 2025-11-22 01:25:28.605703+00 2025-11-22 01:25:28.605711+00 f t \N 585 714 Extracción de sangre + traslado de muestras + laboratorio de Pre-quirúrgico hemostático y Dou Vilef y Vif +2728 2025-11-22 01:25:28.610473+00 2025-11-22 01:25:28.61048+00 f t \N 593 725 Certificado de salud + corte de garras +2729 2025-11-22 01:25:28.614716+00 2025-11-22 01:25:28.614724+00 f t \N 594 833 Certificado de salud + corte de garras +2730 2025-11-22 01:25:28.619268+00 2025-11-22 01:25:28.619276+00 f t \N 37 707 Lesión sangrante detrás de la oreja +2731 2025-11-22 01:25:28.623523+00 2025-11-22 01:25:28.623534+00 f t \N 574 702 Urgencia por dificultad al orinar +2732 2025-11-22 01:25:28.627657+00 2025-11-22 01:25:28.627664+00 f t \N 575 703 Ecografía Abdominal +2733 2025-11-22 01:25:28.632207+00 2025-11-22 01:25:28.632215+00 f t \N 246 667 PRUEBA MOTICO +2734 2025-11-22 01:25:28.636719+00 2025-11-22 01:25:28.636727+00 f t \N 568 697 vacunacion x 2 antirrabica +2735 2025-11-22 01:25:28.641214+00 2025-11-22 01:25:28.641245+00 f t \N 568 696 Vacunación de la antirrábica para dos perritas +2736 2025-11-22 01:25:28.64578+00 2025-11-22 01:25:28.645788+00 f t \N 561 686 Ecografia abdominal +2737 2025-11-22 01:25:28.650111+00 2025-11-22 01:25:28.65012+00 f t \N 559 684 Consulta clinica +2738 2025-11-22 01:25:28.654655+00 2025-11-22 01:25:28.654663+00 f t \N 512 682 Consulta clinica +2739 2025-11-22 01:25:28.659219+00 2025-11-22 01:25:28.65923+00 f t \N 559 689 consulta clinica +2740 2025-11-22 01:25:28.663616+00 2025-11-22 01:25:28.663624+00 f t \N 182 668 Prueba Motivo +2741 2025-11-22 01:25:28.667943+00 2025-11-22 01:25:28.667955+00 f t \N 572 700 Ecografía abdominal +2742 2025-11-22 01:25:28.672482+00 2025-11-22 01:25:28.672489+00 f t \N 246 687 PRUEBA +2743 2025-11-22 01:25:28.676664+00 2025-11-22 01:25:28.676671+00 f t \N 573 701 +2744 2025-11-22 01:25:28.680968+00 2025-11-22 01:25:28.680976+00 f t \N 570 698 Lastimadura en la cavidad anal +2745 2025-11-22 01:25:28.685077+00 2025-11-22 01:25:28.685085+00 f t \N 555 677 Reprogramación, de consulta clinica +2746 2025-11-22 01:25:28.689153+00 2025-11-22 01:25:28.689161+00 f t \N 563 688 se rasca mucho la oreja, genera mucha cera, meses anteriores tuvo una infeccion y fue medicado. +2747 2025-11-22 01:25:28.694618+00 2025-11-22 01:25:28.694629+00 f t \N 526 644 Vacunación anual para dos mascotas +2748 2025-11-22 01:25:28.699234+00 2025-11-22 01:25:28.699243+00 f t \N 525 643 Vacunacion anual para dos px +2749 2025-11-22 01:25:28.70419+00 2025-11-22 01:25:28.704199+00 f t \N 560 685 control, está medicada con Gerioox y pregabalina 100 mg +2750 2025-11-22 01:25:28.709184+00 2025-11-22 01:25:28.709191+00 f t \N 565 691 Temblor y dolor intermitente +2751 2025-11-22 01:25:28.713308+00 2025-11-22 01:25:28.713316+00 f t \N 435 683 Control +2752 2025-11-22 01:25:28.717505+00 2025-11-22 01:25:28.717513+00 f t \N 564 690 Deposiciones con sangre +2753 2025-11-22 01:25:28.721866+00 2025-11-22 01:25:28.721874+00 f t \N 566 692 Bulto en la faringe. ATP: demodexia heredada de su mamá nose si tendra relacion lo q le esta pasando. +2754 2025-11-22 01:25:28.726015+00 2025-11-22 01:25:28.726023+00 f t \N 538 658 Vacunación anual de dos gatitos +2755 2025-11-22 01:25:28.73017+00 2025-11-22 01:25:28.730178+00 f t \N 539 657 Vacunación anual de dos gatitos +2756 2025-11-22 01:25:28.734335+00 2025-11-22 01:25:28.734342+00 f t \N 556 679 vacunación anual y desparasitación +2757 2025-11-22 01:25:28.738423+00 2025-11-22 01:25:28.73843+00 f t \N 443 529 Consulta cardiologia +ECG+Eco +2758 2025-11-22 01:25:28.742678+00 2025-11-22 01:25:28.742689+00 f t \N 489 678 Extracción de muestras +2759 2025-11-22 01:25:28.747236+00 2025-11-22 01:25:28.747244+00 f t \N 544 663 Vacunación anual +2760 2025-11-22 01:25:28.751622+00 2025-11-22 01:25:28.751629+00 f t \N 543 662 Vacunación anual de dos gatos +2761 2025-11-22 01:25:28.75617+00 2025-11-22 01:25:28.756177+00 f t \N 557 680 Vacunación anual +2762 2025-11-22 01:25:28.760362+00 2025-11-22 01:25:28.76037+00 f t \N 531 649 Control general +2763 2025-11-22 01:25:28.7643+00 2025-11-22 01:25:28.764306+00 f t \N 553 675 almohadilla levantas con ampollas y bultos en la cabeza +2764 2025-11-22 01:25:28.768549+00 2025-11-22 01:25:28.768556+00 f t \N 549 671 Control clinico y tratamiento( Se adjuntas estudios complementarios y tratamiento anterior) +2765 2025-11-22 01:25:28.772884+00 2025-11-22 01:25:28.772895+00 f t \N 527 645 gato adulto con pera lastimada +2766 2025-11-22 01:25:28.777192+00 2025-11-22 01:25:28.777199+00 f t \N 550 673 Vacunacion para dos pacientes de 3 meses (Gatos) +2767 2025-11-22 01:25:28.780964+00 2025-11-22 01:25:28.780971+00 f t \N 551 672 Vacunacion para dos pacientes de 3 meses (Gatos) +2768 2025-11-22 01:25:28.784929+00 2025-11-22 01:25:28.784935+00 f t \N 489 670 Chequeo de glandulas inflamadas +2769 2025-11-22 01:25:28.789133+00 2025-11-22 01:25:28.78914+00 f t \N 554 676 Recto inflamado, con cambios en su evacuaciones +2770 2025-11-22 01:25:28.793199+00 2025-11-22 01:25:28.793205+00 f t \N 548 669 perro adulto con un huevo en una oreja del lado de adentro y le molesta mucho +2771 2025-11-22 01:25:28.797338+00 2025-11-22 01:25:28.797345+00 f t \N 552 674 control y posible desparasitacion +2772 2025-11-22 01:25:28.801499+00 2025-11-22 01:25:28.801508+00 f t \N 532 650 vacunacion, vacuna sextuple +2773 2025-11-22 01:25:28.805414+00 2025-11-22 01:25:28.80542+00 f t \N 547 666 Vacunación anual +2774 2025-11-22 01:25:28.809796+00 2025-11-22 01:25:28.809804+00 f t \N 546 665 Vacunación anual de dos gatos +2775 2025-11-22 01:25:28.81423+00 2025-11-22 01:25:28.814236+00 f t \N 542 661 Consulta clínica por inflación en una extremidad +2776 2025-11-22 01:25:28.818459+00 2025-11-22 01:25:28.818466+00 f t \N 537 656 Dificultad motriz y disminución en la alimentación +2777 2025-11-22 01:25:28.822513+00 2025-11-22 01:25:28.82252+00 f t \N 541 660 Consulta clínica por vómitos y dolencias de cadera +2778 2025-11-22 01:25:28.826722+00 2025-11-22 01:25:28.82673+00 f t \N 545 664 Consulta clínica por inflamación en el moflete +2779 2025-11-22 01:25:28.831311+00 2025-11-22 01:25:28.83132+00 f t \N 540 659 consulta clínica por fiebres y vomitos +2780 2025-11-22 01:25:28.836306+00 2025-11-22 01:25:28.836313+00 f t \N 535 654 Perdida de peso, cambios en la alimentacio +2781 2025-11-22 01:25:28.840847+00 2025-11-22 01:25:28.840854+00 f t \N 571 699 eutanasia +2782 2025-11-22 01:25:28.844902+00 2025-11-22 01:25:28.844908+00 f t \N 536 655 Lesion inflamatoria en la oreja, edema +2783 2025-11-22 01:25:28.848969+00 2025-11-22 01:25:28.848975+00 f t \N 534 653 Lesion en la piel tiene, como granitos +2784 2025-11-22 01:25:28.852908+00 2025-11-22 01:25:28.852914+00 f t \N 533 652 Solicita admnistracion de Dexamentasona 0,3 kg, tambien requiere un control debido a que posiblemente sea px oncologico. +2785 2025-11-22 01:25:28.856768+00 2025-11-22 01:25:28.856774+00 f t \N 523 639 Vacunacion para dos pacientes(Perro y Gato) +2786 2025-11-22 01:25:28.86077+00 2025-11-22 01:25:28.860776+00 f t \N 522 638 Vacunacion para dos pacientes(Perro y Gato) +2787 2025-11-22 01:25:28.864846+00 2025-11-22 01:25:28.864854+00 f t \N 246 651 PRUEBAAAA +2788 2025-11-22 01:25:28.869029+00 2025-11-22 01:25:28.869036+00 f t \N 508 634 Gato con decaimiento y lesion, paciente de 18 años +2789 2025-11-22 01:25:28.873008+00 2025-11-22 01:25:28.873014+00 f t \N 521 635 Px de 18 años con decaimiento , lesion en el lomo +2790 2025-11-22 01:25:28.876895+00 2025-11-22 01:25:28.876901+00 f t \N 530 648 Dolor en patas trasera, dificultad en al movilidad +2791 2025-11-22 01:25:28.880816+00 2025-11-22 01:25:28.880822+00 f t \N 524 642 Drenajes de saco+vacunacion con antirrabica+ cortes de garra +2792 2025-11-22 01:25:28.885045+00 2025-11-22 01:25:28.885052+00 f t \N 529 647 Decaimiento +2793 2025-11-22 01:25:28.889386+00 2025-11-22 01:25:28.889393+00 f t \N 485 640 Vacunacion anual x2 +2794 2025-11-22 01:25:28.893726+00 2025-11-22 01:25:28.893733+00 f t \N 486 641 vacunacion x 2 +2795 2025-11-22 01:25:28.897807+00 2025-11-22 01:25:28.897814+00 f t \N 528 646 Decaimiento, no se alimenta con regularidad. +2796 2025-11-22 01:25:28.902094+00 2025-11-22 01:25:28.902102+00 f t \N 514 612 consulta clínica por desnutrición y costras a lo largo de la cola +2797 2025-11-22 01:25:28.906657+00 2025-11-22 01:25:28.906665+00 f t \N 413 456 Clinica + extraccion+ perfil prequirurgico+ traslado +2798 2025-11-22 01:25:28.911125+00 2025-11-22 01:25:28.911182+00 f t \N 179 630 Certificado de salud +2799 2025-11-22 01:25:28.915466+00 2025-11-22 01:25:28.915474+00 f t \N 446 637 gato con posible infeccion urinaria +2800 2025-11-22 01:25:28.919736+00 2025-11-22 01:25:28.919743+00 f t \N 128 514 Control clinico + drenaje de glandula +2801 2025-11-22 01:25:28.924319+00 2025-11-22 01:25:28.924327+00 f t \N 519 628 Inicio de controles debido a que fue rescatado +2802 2025-11-22 01:25:28.928473+00 2025-11-22 01:25:28.928481+00 f t \N 464 636 Resolución de laboratorio- tratamiento a seguir +2803 2025-11-22 01:25:28.932558+00 2025-11-22 01:25:28.932565+00 f t \N 424 600 control +2804 2025-11-22 01:25:28.93668+00 2025-11-22 01:25:28.936686+00 f t \N 520 629 Eutanasia +2805 2025-11-22 01:25:28.941416+00 2025-11-22 01:25:28.941423+00 f t \N 429 627 Consulta clinica + eutanasia +2806 2025-11-22 01:25:28.946138+00 2025-11-22 01:25:28.946148+00 f t \N 512 610 Refuerzo para la vacunación anual +2807 2025-11-22 01:25:28.950602+00 2025-11-22 01:25:28.95061+00 f t \N 502 598 vacunacion anual +2808 2025-11-22 01:25:28.954835+00 2025-11-22 01:25:28.954845+00 f t \N 516 614 vacunación anual +2809 2025-11-22 01:25:28.959442+00 2025-11-22 01:25:28.95945+00 f t \N 335 615 PRUEBA +2810 2025-11-22 01:25:28.963472+00 2025-11-22 01:25:28.963479+00 f t \N 511 625 Resolución de laboratorio y control +2811 2025-11-22 01:25:28.967605+00 2025-11-22 01:25:28.967612+00 f t \N 518 626 Lesion en la oreja +2812 2025-11-22 01:25:28.971747+00 2025-11-22 01:25:28.971754+00 f t \N 489 618 aplicacion de inyectable +2813 2025-11-22 01:25:28.976533+00 2025-11-22 01:25:28.976541+00 f t \N 500 595 Vacunación\r\nDesparasitación\r\nCertificados +2814 2025-11-22 01:25:28.982096+00 2025-11-22 01:25:28.982105+00 f t \N 513 611 consulta clínica por desprendimiento de pelaje en las patas +2815 2025-11-22 01:25:28.988138+00 2025-11-22 01:25:28.988149+00 f t \N 246 616 PRUEBA +2816 2025-11-22 01:25:28.993867+00 2025-11-22 01:25:28.993879+00 f t \N 505 603 Consulta oftalmolofica +2817 2025-11-22 01:25:29.000617+00 2025-11-22 01:25:29.000627+00 f t \N 508 606 Alergia generalizada +2818 2025-11-22 01:25:29.005655+00 2025-11-22 01:25:29.005667+00 f t \N 517 617 Vacunación quintuple +2819 2025-11-22 01:25:29.011549+00 2025-11-22 01:25:29.011557+00 f t \N 515 613 Consulta clínica por colicos +2820 2025-11-22 01:25:29.017032+00 2025-11-22 01:25:29.017041+00 f t \N 246 619 PRUEBA +2821 2025-11-22 01:25:29.022616+00 2025-11-22 01:25:29.02263+00 f t \N 510 608 Consulta clínica por vómitos seguidos +2822 2025-11-22 01:25:29.028166+00 2025-11-22 01:25:29.028176+00 f t \N 511 609 Consulta clínica por fiebre y decaimiento +2823 2025-11-22 01:25:29.034271+00 2025-11-22 01:25:29.034283+00 f t \N 509 607 Consulta clínica por decaimiento y perdida de orina +2824 2025-11-22 01:25:29.039751+00 2025-11-22 01:25:29.03976+00 f t \N 489 591 chequeo de resultados de analisis +2825 2025-11-22 01:25:29.0446+00 2025-11-22 01:25:29.044608+00 f t \N 485 569 vacunacion anual x 3. perros adultos +2826 2025-11-22 01:25:29.049799+00 2025-11-22 01:25:29.04981+00 f t \N 483 567 Medición de la presión y aplicación de ringerlactato +2827 2025-11-22 01:25:29.054982+00 2025-11-22 01:25:29.054993+00 f t \N 485 571 vacunacion anual x 3. perros adultos +2828 2025-11-22 01:25:29.060642+00 2025-11-22 01:25:29.060651+00 f t \N 486 568 vacunacion anual x 3. perros adultos +2829 2025-11-22 01:25:29.066949+00 2025-11-22 01:25:29.06696+00 f t \N 484 570 vacunacion anual x 3. perros adultos +2830 2025-11-22 01:25:29.076053+00 2025-11-22 01:25:29.076063+00 f t \N 506 604 Sufrió la pérdida de su dueña porq falleció\r\nEstá desorientado. Se pone agresivo con personas que no conoce. Busca soledad. No ve bien y no se deja agarrar +2831 2025-11-22 01:25:29.081796+00 2025-11-22 01:25:29.081807+00 f t \N 473 552 Vacunación anual +2832 2025-11-22 01:25:29.087269+00 2025-11-22 01:25:29.08728+00 f t \N 93 601 Dermatitis +2833 2025-11-22 01:25:29.092291+00 2025-11-22 01:25:29.092304+00 f t \N 504 602 Ecografia abdominal los veterinarios creen que puede tener un sangrado en el vaso +2834 2025-11-22 01:25:29.096891+00 2025-11-22 01:25:29.096898+00 f t \N 246 540 PRUEBA +2835 2025-11-22 01:25:29.101713+00 2025-11-22 01:25:29.101721+00 f t \N 500 594 Colocación de chip\r\nExtracción para testeo\r\nTraslado de muestra\r\nLaboratorio de Leishmaniasis +2836 2025-11-22 01:25:29.106623+00 2025-11-22 01:25:29.106632+00 f t \N 435 579 Control, posible administracion de suero S/C +2837 2025-11-22 01:25:29.111633+00 2025-11-22 01:25:29.11164+00 f t \N 498 587 vacunacion anual gato + perro +2838 2025-11-22 01:25:29.116443+00 2025-11-22 01:25:29.116452+00 f t \N 497 588 vacunacion anual gato + perro +2839 2025-11-22 01:25:29.121536+00 2025-11-22 01:25:29.121544+00 f t \N 335 593 Resolucion de laboratorio +2840 2025-11-22 01:25:29.12682+00 2025-11-22 01:25:29.126828+00 f t \N 503 599 consulta porque perro comio marihuana +2841 2025-11-22 01:25:29.131886+00 2025-11-22 01:25:29.131893+00 f t \N 480 632 Vacunación anual +2842 2025-11-22 01:25:29.136793+00 2025-11-22 01:25:29.1368+00 f t \N 479 561 1 Desparasitación + 4 vacunaciones +2843 2025-11-22 01:25:29.141637+00 2025-11-22 01:25:29.141645+00 f t \N 482 633 Vacunación Anual +2844 2025-11-22 01:25:29.146855+00 2025-11-22 01:25:29.146863+00 f t \N 481 631 Vacunación anual +2845 2025-11-22 01:25:29.151424+00 2025-11-22 01:25:29.151431+00 f t \N 479 560 1 Desparasitación + vacunación +2846 2025-11-22 01:25:29.156238+00 2025-11-22 01:25:29.156245+00 f t \N 492 597 ADM de Suero S/c +2847 2025-11-22 01:25:29.160987+00 2025-11-22 01:25:29.160995+00 f t \N 499 592 Rengueo de pata trasera +2848 2025-11-22 01:25:29.165385+00 2025-11-22 01:25:29.165391+00 f t \N 501 596 Lesion en el cuello +2849 2025-11-22 01:25:29.169993+00 2025-11-22 01:25:29.17+00 f t \N 483 566 Medición de la presión y aplicación de ringerlactato +2850 2025-11-22 01:25:29.174973+00 2025-11-22 01:25:29.174981+00 f t \N 93 551 Revisión por posible dermatitis y pulgas +2851 2025-11-22 01:25:29.180136+00 2025-11-22 01:25:29.180145+00 f t \N 496 589 consulta clínica chequeo +2852 2025-11-22 01:25:29.184983+00 2025-11-22 01:25:29.18499+00 f t \N 492 590 Chequeo de resultados de analisis +2853 2025-11-22 01:25:29.189792+00 2025-11-22 01:25:29.189799+00 f t \N 472 550 vacunación anual +2854 2025-11-22 01:25:29.195583+00 2025-11-22 01:25:29.195592+00 f t \N 495 585 Presenta babeos abundantes y estornudos poco frecuentes +2855 2025-11-22 01:25:29.200662+00 2025-11-22 01:25:29.200671+00 f t \N 495 584 Presenta babeos abundantes y estornudos poco frecuentes +2856 2025-11-22 01:25:29.205564+00 2025-11-22 01:25:29.205574+00 f t \N 424 586 Perro geronte desganado, se esta lástimando de nuevo la piel y está más decaído +2857 2025-11-22 01:25:29.21029+00 2025-11-22 01:25:29.210297+00 f t \N 494 582 Presenta Estreñimiento, defeca poco y hace 1 semana vomitos +2858 2025-11-22 01:25:29.214926+00 2025-11-22 01:25:29.214937+00 f t \N 493 583 Vómitos muy frecuentes +2859 2025-11-22 01:25:29.219414+00 2025-11-22 01:25:29.219424+00 f t \N 468 543 Desparasitacion externa + corte de garras+ Vacunacion anual +2860 2025-11-22 01:25:29.223982+00 2025-11-22 01:25:29.22399+00 f t \N 454 518 Vacunación anual +2861 2025-11-22 01:25:29.228418+00 2025-11-22 01:25:29.228426+00 f t \N 488 573 Vacunación anual y revisión por posible infección en las orejas +2862 2025-11-22 01:25:29.233234+00 2025-11-22 01:25:29.233263+00 f t \N 492 1672 Perfil General Completo +2863 2025-11-22 01:25:29.23821+00 2025-11-22 01:25:29.238217+00 f t \N 477 558 Vacunación anual +2864 2025-11-22 01:25:29.243223+00 2025-11-22 01:25:29.243231+00 f t \N 492 581 Decaimiento, cambios en el comportamiento. +2865 2025-11-22 01:25:29.247884+00 2025-11-22 01:25:29.247891+00 f t \N 491 580 Consulta con dermatología por lesiones ulcerativa en el cuerpo +2866 2025-11-22 01:25:29.252797+00 2025-11-22 01:25:29.252804+00 f t \N 490 577 Decaimiento, movimiento intermitente de la cabeza +2867 2025-11-22 01:25:29.257565+00 2025-11-22 01:25:29.257573+00 f t \N 490 576 Decaimiento, movimiento intermitente de la cabeza +2868 2025-11-22 01:25:29.262021+00 2025-11-22 01:25:29.262029+00 f t \N 490 578 Decaimiento, movimiento intermitente de la cabeza +2869 2025-11-22 01:25:29.266657+00 2025-11-22 01:25:29.266668+00 f t \N 490 575 Decaimiento, movimiento intermitente de la cabeza +2870 2025-11-22 01:25:29.271849+00 2025-11-22 01:25:29.271858+00 f t \N 489 574 Dificultad motriz por antecedente de displasia de cadera y artritis, y perdida de peso +2871 2025-11-22 01:25:29.276388+00 2025-11-22 01:25:29.276396+00 f t \N 438 521 ecografia abdominal +2872 2025-11-22 01:25:29.28066+00 2025-11-22 01:25:29.280667+00 f t \N 483 565 Medición de la presión y aplicación de ringerlactato +2873 2025-11-22 01:25:29.285302+00 2025-11-22 01:25:29.285309+00 f t \N 483 564 Medición de la presión y aplicación de ringerlactato +2874 2025-11-22 01:25:29.290214+00 2025-11-22 01:25:29.290225+00 f t \N 335 1673 Arritmia, medicación +2875 2025-11-22 01:25:29.295562+00 2025-11-22 01:25:29.295572+00 f t \N 455 537 chequeo de resultados +2876 2025-11-22 01:25:29.301236+00 2025-11-22 01:25:29.301248+00 f t \N 462 531 Vacunacion anul +2877 2025-11-22 01:25:29.307576+00 2025-11-22 01:25:29.307585+00 f t \N 459 525 vacunacion anual x 2 gatos +2878 2025-11-22 01:25:29.312852+00 2025-11-22 01:25:29.312861+00 f t \N 460 624 Vacunación anual +2879 2025-11-22 01:25:29.317615+00 2025-11-22 01:25:29.317623+00 f t \N 487 572 dificultad motriz y problemas de alimentación +2880 2025-11-22 01:25:29.322511+00 2025-11-22 01:25:29.322519+00 f t \N 476 557 gatita con malestar general, presenta estrés en traladarla +2881 2025-11-22 01:25:29.327511+00 2025-11-22 01:25:29.327524+00 f t \N 475 555 drenar líquidos por edematización +2882 2025-11-22 01:25:29.33234+00 2025-11-22 01:25:29.33235+00 f t \N 475 556 drenar líquidos por edematización +2883 2025-11-22 01:25:29.337098+00 2025-11-22 01:25:29.337111+00 f t \N 474 553 Consulta de seguimiento +2884 2025-11-22 01:25:29.342278+00 2025-11-22 01:25:29.342288+00 f t \N 474 554 Consulta de seguimiento +2885 2025-11-22 01:25:29.347063+00 2025-11-22 01:25:29.347071+00 f t \N 478 559 Vacunación anual +2886 2025-11-22 01:25:29.351796+00 2025-11-22 01:25:29.351804+00 f t \N 464 534 Vacunacion anual +2887 2025-11-22 01:25:29.356572+00 2025-11-22 01:25:29.356579+00 f t \N 471 549 estreñimiento y diarrea +2888 2025-11-22 01:25:29.360953+00 2025-11-22 01:25:29.360962+00 f t \N 471 548 estreñimiento y diarrea +2889 2025-11-22 01:25:29.366061+00 2025-11-22 01:25:29.366073+00 f t \N 470 547 Irritación en el ojo +2890 2025-11-22 01:25:29.371249+00 2025-11-22 01:25:29.371258+00 f t \N 469 545 Consulta de seguimiento +2891 2025-11-22 01:25:29.376004+00 2025-11-22 01:25:29.376012+00 f t \N 469 546 Consulta de seguimiento +3135 2025-11-22 01:25:30.689585+00 2025-11-22 01:25:30.689598+00 f t \N 239 267 Desmayos +2892 2025-11-22 01:25:29.381165+00 2025-11-22 01:25:29.381172+00 f t \N 467 541 Vacunacion + revision +2893 2025-11-22 01:25:29.386126+00 2025-11-22 01:25:29.386134+00 f t \N 467 542 Vacunacion + revision +2894 2025-11-22 01:25:29.390801+00 2025-11-22 01:25:29.390809+00 f t \N 461 562 consulta clínica + extracción de sangre por vomitos y diarrea +2895 2025-11-22 01:25:29.395617+00 2025-11-22 01:25:29.395626+00 f t \N 465 544 2 rx +2896 2025-11-22 01:25:29.400393+00 2025-11-22 01:25:29.400401+00 f t \N 461 563 consulta clínica + extracción de sangre por vomitos y diarrea +2897 2025-11-22 01:25:29.405123+00 2025-11-22 01:25:29.405131+00 f t \N 246 539 12 +2898 2025-11-22 01:25:29.410008+00 2025-11-22 01:25:29.41002+00 f t \N 466 538 Vacunacion anual +2899 2025-11-22 01:25:29.415947+00 2025-11-22 01:25:29.415956+00 f t \N 438 520 ecografia abdominal +2900 2025-11-22 01:25:29.420816+00 2025-11-22 01:25:29.420829+00 f t \N 438 519 ecografia abdominal +2901 2025-11-22 01:25:29.427014+00 2025-11-22 01:25:29.427027+00 f t \N 429 536 Retiro de via +2902 2025-11-22 01:25:29.432845+00 2025-11-22 01:25:29.432856+00 f t \N 463 533 Control general +2903 2025-11-22 01:25:29.437864+00 2025-11-22 01:25:29.437872+00 f t \N 450 527 Posible eutanasia por decaimiento del paciente +2904 2025-11-22 01:25:29.442415+00 2025-11-22 01:25:29.442423+00 f t \N 450 528 Posible eutanasia por decaimiento del paciente +2905 2025-11-22 01:25:29.448845+00 2025-11-22 01:25:29.448857+00 f t \N 435 526 Chequeo de resultados +2906 2025-11-22 01:25:29.455182+00 2025-11-22 01:25:29.455195+00 f t \N 461 530 Vomitos y Diarrea +2907 2025-11-22 01:25:29.461491+00 2025-11-22 01:25:29.461503+00 f t \N 465 535 Malestar general +2908 2025-11-22 01:25:29.46813+00 2025-11-22 01:25:29.468141+00 f t \N 458 524 Vacunacion anual gato + consulta clinica perra pis con sangre +2909 2025-11-22 01:25:29.474625+00 2025-11-22 01:25:29.474639+00 f t \N 437 499 Control del tratamiento +2910 2025-11-22 01:25:29.48081+00 2025-11-22 01:25:29.480822+00 f t \N 452 512 Vacunación anual gatos adultos x 2 +2911 2025-11-22 01:25:29.486631+00 2025-11-22 01:25:29.486643+00 f t \N 451 511 Vacunación anual gatos adultos x 2 +2912 2025-11-22 01:25:29.492652+00 2025-11-22 01:25:29.492665+00 f t \N 449 523 Eutanasia + retiro de cuerpo +2913 2025-11-22 01:25:29.498312+00 2025-11-22 01:25:29.498321+00 f t \N 463 532 Control general +2914 2025-11-22 01:25:29.503072+00 2025-11-22 01:25:29.503084+00 f t \N 455 522 Analisis de ecografia +2915 2025-11-22 01:25:29.509174+00 2025-11-22 01:25:29.509186+00 f t \N 453 517 Lesion en las patas traseras +2916 2025-11-22 01:25:29.515958+00 2025-11-22 01:25:29.515971+00 f t \N 246 513 +2917 2025-11-22 01:25:29.52202+00 2025-11-22 01:25:29.522034+00 f t \N 450 510 Control por dx de bichera +2918 2025-11-22 01:25:29.529137+00 2025-11-22 01:25:29.529149+00 f t \N 443 503 Vacunación anual para 3 gatas y 2 perros +2919 2025-11-22 01:25:29.535019+00 2025-11-22 01:25:29.535031+00 f t \N 445 623 Vacunación anual +2920 2025-11-22 01:25:29.541141+00 2025-11-22 01:25:29.541153+00 f t \N 446 621 Vacunación anual +2921 2025-11-22 01:25:29.547494+00 2025-11-22 01:25:29.547505+00 f t \N 447 622 Vacunación anual +2922 2025-11-22 01:25:29.553505+00 2025-11-22 01:25:29.553519+00 f t \N 444 620 Vacunación anual +2923 2025-11-22 01:25:29.5595+00 2025-11-22 01:25:29.559511+00 f t \N 448 504 Control cardiologico +2924 2025-11-22 01:25:29.56535+00 2025-11-22 01:25:29.565361+00 f t \N 429 502 Revisión y chequeo de seguimiento +2925 2025-11-22 01:25:29.571371+00 2025-11-22 01:25:29.571383+00 f t \N 211 506 Control por empeoramiento del cuadro +2926 2025-11-22 01:25:29.578237+00 2025-11-22 01:25:29.578249+00 f t \N 347 507 Vacunacion anual +2927 2025-11-22 01:25:29.584162+00 2025-11-22 01:25:29.584174+00 f t \N 128 454 Chequeo general, vaciamiento de glandulas + corte de garras +2928 2025-11-22 01:25:29.589833+00 2025-11-22 01:25:29.589845+00 f t \N 449 505 Lesion de cavidad bucal con hernia de disco +2929 2025-11-22 01:25:29.596649+00 2025-11-22 01:25:29.59666+00 f t \N 450 509 Lesion en genitales, posible bichera +2930 2025-11-22 01:25:29.602296+00 2025-11-22 01:25:29.602307+00 f t \N 450 508 Lesion en genitales, posible bichera +2931 2025-11-22 01:25:29.608186+00 2025-11-22 01:25:29.608197+00 f t \N 438 497 Extracción de sangre + curaciones en el perine +2932 2025-11-22 01:25:29.614185+00 2025-11-22 01:25:29.614196+00 f t \N 442 498 Consulta clinica: Es un control. Es una gatita que suele vomitar. Come gastrointestinal desde chiquita por este tema. La tutora quiere ver si hay que desparasitar. Tiene 2 animalitos más. +2933 2025-11-22 01:25:29.619902+00 2025-11-22 01:25:29.619913+00 f t \N 439 501 Vacunación anual +2934 2025-11-22 01:25:29.625643+00 2025-11-22 01:25:29.625655+00 f t \N 440 495 Vacunación anual +2935 2025-11-22 01:25:29.631443+00 2025-11-22 01:25:29.631454+00 f t \N 441 496 Vacunacion anual perro +2936 2025-11-22 01:25:29.637141+00 2025-11-22 01:25:29.637152+00 f t \N 438 494 Estreñimiento +2937 2025-11-22 01:25:29.643117+00 2025-11-22 01:25:29.643184+00 f t \N 430 483 Rayos x 2 +2938 2025-11-22 01:25:29.64797+00 2025-11-22 01:25:29.647977+00 f t \N 430 482 Rayos x 2 +2939 2025-11-22 01:25:29.65213+00 2025-11-22 01:25:29.652137+00 f t \N 435 488 Cistitis + extraccion de sangre +2940 2025-11-22 01:25:29.656036+00 2025-11-22 01:25:29.656042+00 f t \N 437 491 Teleconsulta +2941 2025-11-22 01:25:29.65994+00 2025-11-22 01:25:29.659946+00 f t \N 335 478 ecografia abdominal para control esplenico (del bazo) +2942 2025-11-22 01:25:29.663916+00 2025-11-22 01:25:29.663922+00 f t \N 425 473 control y vacunacion anual +2943 2025-11-22 01:25:29.667933+00 2025-11-22 01:25:29.667939+00 f t \N 432 485 Presenta dificultad motriz y no ingiriere alimentos hace 2 días +2944 2025-11-22 01:25:29.671967+00 2025-11-22 01:25:29.671975+00 f t \N 433 486 Administracion de suero Singer Lactato y ademas comenta que la px esta con diarrea. +2945 2025-11-22 01:25:29.676776+00 2025-11-22 01:25:29.676783+00 f t \N 434 487 Cambios en el comportamiento,dificultad en la movilidad manifiesta dolor el paciente. +2946 2025-11-22 01:25:29.681049+00 2025-11-22 01:25:29.681056+00 f t \N 429 493 Seña de la extracción(2000) + Perfil General Completo sin Orina + Traslado de la muestra (14000) +2947 2025-11-22 01:25:29.685148+00 2025-11-22 01:25:29.685154+00 f t \N 436 489 Inflamacion de ojo +2948 2025-11-22 01:25:29.689122+00 2025-11-22 01:25:29.689128+00 f t \N 436 490 Inflamacion de ojo +2949 2025-11-22 01:25:29.693073+00 2025-11-22 01:25:29.693078+00 f t \N 431 484 Sangrado de cavidad anal +2950 2025-11-22 01:25:29.697088+00 2025-11-22 01:25:29.697094+00 f t \N 429 480 Consulta clínica porque el gato se estresa mucho yendo a la veterinaria y no quiere comer desde un día + extracción de sangre +2951 2025-11-22 01:25:29.701295+00 2025-11-22 01:25:29.701302+00 f t \N 407 481 Eutanasia +2952 2025-11-22 01:25:29.705396+00 2025-11-22 01:25:29.705403+00 f t \N 427 477 Primer vacuna gato cachorro +2953 2025-11-22 01:25:29.71007+00 2025-11-22 01:25:29.710078+00 f t \N 428 479 consulta clinica + Vacunación anual perro adulto +2954 2025-11-22 01:25:29.715477+00 2025-11-22 01:25:29.715488+00 f t \N 420 468 Vacunacion +2955 2025-11-22 01:25:29.720043+00 2025-11-22 01:25:29.720051+00 f t \N 419 467 Vacunacion para la tres mascotas +2956 2025-11-22 01:25:29.724498+00 2025-11-22 01:25:29.724506+00 f t \N 421 469 Vacunacion +2957 2025-11-22 01:25:29.72853+00 2025-11-22 01:25:29.728538+00 f t \N 411 500 Vacunacion anual 2 gatos adultos +3451 2025-11-25 18:55:49.425003+00 2025-11-25 18:55:49.425011+00 f t \N 11820 3384 Eutanasia +2958 2025-11-22 01:25:29.733032+00 2025-11-22 01:25:29.733043+00 f t \N 411 452 Vacunacion anual 2 gatos adultos +2959 2025-11-22 01:25:29.737422+00 2025-11-22 01:25:29.737429+00 f t \N 423 471 Vacunación Anual +2960 2025-11-22 01:25:29.741701+00 2025-11-22 01:25:29.741709+00 f t \N 150 476 Chequeo general +2961 2025-11-22 01:25:29.745977+00 2025-11-22 01:25:29.745988+00 f t \N 398 439 chequeo general + vacunacion anual gato adulto +2962 2025-11-22 01:25:29.750277+00 2025-11-22 01:25:29.750284+00 f t \N 417 465 La gata tiene tos, ya hace como un año pero ahora está con episodios recurrentes hace como 2 días está tosiendo seguido +2963 2025-11-22 01:25:29.754564+00 2025-11-22 01:25:29.754572+00 f t \N 426 474 control clinico + chequeo de parasitos externos (garrapatas) +2964 2025-11-22 01:25:29.75911+00 2025-11-22 01:25:29.759119+00 f t \N 194 475 Chequeo general labrador adulto +2965 2025-11-22 01:25:29.763853+00 2025-11-22 01:25:29.763861+00 f t \N 424 472 Perro geronte desganado, no quiere comer, no quiere tomar agua. No tiene ganas de salir. Que se puede hacer para mejorar la calidad de vida. +2966 2025-11-22 01:25:29.768976+00 2025-11-22 01:25:29.768984+00 f t \N 246 458 +2967 2025-11-22 01:25:29.773516+00 2025-11-22 01:25:29.773525+00 f t \N 246 459 PRUEBA DE CALENDARIO +2968 2025-11-22 01:25:29.778624+00 2025-11-22 01:25:29.778635+00 f t \N 246 461 +2969 2025-11-22 01:25:29.784768+00 2025-11-22 01:25:29.78478+00 f t \N 407 447 Problemas renales y perdidas de peso +2970 2025-11-22 01:25:29.790392+00 2025-11-22 01:25:29.790404+00 f t \N 416 464 Vacunación para dos pacientes +2971 2025-11-22 01:25:29.795996+00 2025-11-22 01:25:29.796006+00 f t \N 415 462 Vacunación para dos pacientes +2972 2025-11-22 01:25:29.801325+00 2025-11-22 01:25:29.801334+00 f t \N 418 466 Vacunación y Desparasitación +2973 2025-11-22 01:25:29.806092+00 2025-11-22 01:25:29.8061+00 f t \N 246 460 Problema con patita +2974 2025-11-22 01:25:29.811516+00 2025-11-22 01:25:29.811528+00 f t \N 422 470 Jadeo intermitente, dificultad en la movilidad +2975 2025-11-22 01:25:29.817706+00 2025-11-22 01:25:29.817716+00 f t \N 415 463 Vacunación para dos pacientes +2976 2025-11-22 01:25:29.82364+00 2025-11-22 01:25:29.823651+00 f t \N 414 457 Vacunación sextuple y antirrábica +2977 2025-11-22 01:25:29.82991+00 2025-11-22 01:25:29.829922+00 f t \N 132 455 Traslado de muestra :$16.800\r\nExamen de orina x2: 6500x2=13.000\r\nClinica: control para Joaquín +2978 2025-11-22 01:25:29.836074+00 2025-11-22 01:25:29.836086+00 f t \N 410 451 “aparente” celo desde el domingo. Está con lamido vulvar excesivo. Decaída y vómito ayer una vez y hoy nuevamente (el vómito es color amarillo espumoso). Con posible fiebre +2979 2025-11-22 01:25:29.842348+00 2025-11-22 01:25:29.842358+00 f t \N 403 450 Curaciones +2980 2025-11-22 01:25:29.848436+00 2025-11-22 01:25:29.848447+00 f t \N 409 449 Px adulto con problemas de cadera . +2981 2025-11-22 01:25:29.854066+00 2025-11-22 01:25:29.854077+00 f t \N 406 446 Vacunacion anual +2982 2025-11-22 01:25:29.860638+00 2025-11-22 01:25:29.86065+00 f t \N 380 419 Vacunación anual +2983 2025-11-22 01:25:29.867081+00 2025-11-22 01:25:29.867092+00 f t \N 396 437 Vacunacion anual gato +2984 2025-11-22 01:25:29.873598+00 2025-11-22 01:25:29.873611+00 f t \N 386 423 Gato macho 8 años - Tiene lagañas sanguinolentas. El siempre tuvo lagañitas, desde bebe, pero ahora cambiaron de color. Él come, toma agua, juega, esta como siempre. Su tercer parpado no esta afectado, parece una alergia. +2985 2025-11-22 01:25:29.880164+00 2025-11-22 01:25:29.880175+00 f t \N 388 427 +2986 2025-11-22 01:25:29.886643+00 2025-11-22 01:25:29.886654+00 f t \N 393 433 Vacunacion anual +2987 2025-11-22 01:25:29.893164+00 2025-11-22 01:25:29.893175+00 f t \N 408 448 Otitis grave +2988 2025-11-22 01:25:29.899217+00 2025-11-22 01:25:29.899228+00 f t \N 405 445 Lesión en genitales +2989 2025-11-22 01:25:29.905198+00 2025-11-22 01:25:29.905209+00 f t \N 402 492 Dificultad para orinar +2990 2025-11-22 01:25:29.911004+00 2025-11-22 01:25:29.911016+00 f t \N 401 442 Lesion generalizada +2991 2025-11-22 01:25:29.916908+00 2025-11-22 01:25:29.916918+00 f t \N 400 441 Vacunación anual +2992 2025-11-22 01:25:29.922827+00 2025-11-22 01:25:29.922839+00 f t \N 399 440 Chequeo general + eutanasia +2993 2025-11-22 01:25:29.928643+00 2025-11-22 01:25:29.928656+00 f t \N 403 443 Curaciones + corte de uñas +2994 2025-11-22 01:25:29.935039+00 2025-11-22 01:25:29.93505+00 f t \N 383 431 Vacunación anual para dos pacientes +2995 2025-11-22 01:25:29.941198+00 2025-11-22 01:25:29.941209+00 f t \N 383 432 Vacunacion anual x 2 +2996 2025-11-22 01:25:29.947181+00 2025-11-22 01:25:29.947193+00 f t \N 397 438 muy caido, camina lento y se queda parado sin respuesta, tiembla. Tiene un tumor en la adrenal derecha con invasión en la vena cava +2997 2025-11-22 01:25:29.953423+00 2025-11-22 01:25:29.953435+00 f t \N 382 422 Gatita diabetica, perdida de peso. +2998 2025-11-22 01:25:29.959557+00 2025-11-22 01:25:29.959569+00 f t \N 391 430 Rstuvo todo el día hechada sobre la alfombra, y si bien comió y tomó agua, no estuvo como siempre. Le he sentido el cuerpo caliente , pero hoy ya no lo siento así. Si bien come, toma agua y hace pis, su comportamiento está más enlentecido. +2999 2025-11-22 01:25:29.965379+00 2025-11-22 01:25:29.965391+00 f t \N 387 425 Chequeo general +3000 2025-11-22 01:25:29.971397+00 2025-11-22 01:25:29.971409+00 f t \N 374 415 vacunacion anual Perro - gato +3001 2025-11-22 01:25:29.977865+00 2025-11-22 01:25:29.977876+00 f t \N 381 421 vacunacion anual +3002 2025-11-22 01:25:29.984082+00 2025-11-22 01:25:29.984093+00 f t \N 390 429 perra muy decaida y tiene mal una patita +3003 2025-11-22 01:25:29.989894+00 2025-11-22 01:25:29.989906+00 f t \N 379 426 Paciente sin apetito, no consume agua,hoy temblores y escalofrios +3004 2025-11-22 01:25:29.995501+00 2025-11-22 01:25:29.995512+00 f t \N 389 428 La paciente estuvo deshidratada, ahora está mejor pero muy delgada y débil. Neurológicamente estable, usa las piedritas, pero no come su alimento y bebe poca agua. El tutor la hidrata manualmente y le da Ensure, buscando apoyo para mejorar su condición y recuperar peso. +3005 2025-11-22 01:25:30.001414+00 2025-11-22 01:25:30.001425+00 f t \N 385 424 se le hincho un lado de la carita por debajo del ojo, y parece que le duele porque el come bien pero hoy casi no comio. Hoy lo revisaba y tiene una lastimadura en la parte trasera en una de sus patas +3006 2025-11-22 01:25:30.007379+00 2025-11-22 01:25:30.007388+00 f t \N 372 414 Revision general x2 gatos +3007 2025-11-22 01:25:30.012372+00 2025-11-22 01:25:30.012381+00 f t \N 373 413 Revision general x2 gatos +3008 2025-11-22 01:25:30.017576+00 2025-11-22 01:25:30.017588+00 f t \N 362 402 Vacunacion anual +3009 2025-11-22 01:25:30.02362+00 2025-11-22 01:25:30.023632+00 f t \N 379 418 control clinico +3010 2025-11-22 01:25:30.029165+00 2025-11-22 01:25:30.029177+00 f t \N 252 420 Vacunación anual +3011 2025-11-22 01:25:30.035653+00 2025-11-22 01:25:30.035665+00 f t \N 335 406 vacunacion anual +3012 2025-11-22 01:25:30.042382+00 2025-11-22 01:25:30.042393+00 f t \N 378 417 control y chequeo de protuberancia en cara +3013 2025-11-22 01:25:30.04854+00 2025-11-22 01:25:30.048551+00 f t \N 392 434 Vacunación anual +3014 2025-11-22 01:25:30.054843+00 2025-11-22 01:25:30.054856+00 f t \N 376 416 gatos con tos carraspera +3015 2025-11-22 01:25:30.061416+00 2025-11-22 01:25:30.061427+00 f t \N 353 403 Ecografía abdominal +3016 2025-11-22 01:25:30.069312+00 2025-11-22 01:25:30.069325+00 f t \N 370 409 Vacunación anual x 2 gatos +3017 2025-11-22 01:25:30.07426+00 2025-11-22 01:25:30.074269+00 f t \N 371 410 Vacunacion anual gato +3018 2025-11-22 01:25:30.079379+00 2025-11-22 01:25:30.079391+00 f t \N 369 408 **Anamnesis** \r\nEl tutor reporta que el gato presenta vómitos intermitentes desde hace un tiempo, inicialmente esporádicos tras consumir su alimento balanceado habitual (Royal Canin FIT). También se le ofrecieron alimentos como atún, pollo e hígado ocasionalmente. Recientemente, entre viernes y sábado, los vómitos se hicieron más frecuentes y ocurrían inmediatamente después de comer, especialmente cuando consumía rápido. Este comportamiento podría haberse visto influido por la presencia de un gato intruso en la casa, lo cual podría generar ansiedad durante la alimentación. \r\n\r\nAyer, al retirar el alimento balanceado y ofrecer pollo por la noche, volvió a comer rápidamente y vomitó nuevamente. Hoy por la mañana se le ofreció solo caldo de pollo, el cual toleró sin vómitos y logró defecar, lo que era una preocupación del tutor. El gato se mantiene activo, juega, y demuestra interés por la comida, aunque su hábito de comer rápido persiste. +3019 2025-11-22 01:25:30.085552+00 2025-11-22 01:25:30.085561+00 f t \N 368 411 Chequeo general para Coco +3020 2025-11-22 01:25:30.090716+00 2025-11-22 01:25:30.090725+00 f t \N 367 407 Consulta clínica, gatita con vómitos frecuentes y esta tosiendo mas de lo habitual. Chequeo general para Coco +3021 2025-11-22 01:25:30.095989+00 2025-11-22 01:25:30.096+00 f t \N 128 2075 control clinico + drenaje glandulas +3022 2025-11-22 01:25:30.101691+00 2025-11-22 01:25:30.101699+00 f t \N 394 435 Consulta en el día +3023 2025-11-22 01:25:30.106625+00 2025-11-22 01:25:30.106633+00 f t \N 361 400 Vacunación anual +3024 2025-11-22 01:25:30.111509+00 2025-11-22 01:25:30.111518+00 f t \N 360 401 Vacunación anual +3025 2025-11-22 01:25:30.116667+00 2025-11-22 01:25:30.116676+00 f t \N 75 394 Chequeo general Solbra y Odin +3026 2025-11-22 01:25:30.121686+00 2025-11-22 01:25:30.121697+00 f t \N 404 444 Dificultad en la evacuación +3027 2025-11-22 01:25:30.126994+00 2025-11-22 01:25:30.127005+00 f t \N 359 399 Chequeo general x 3 +3028 2025-11-22 01:25:30.13228+00 2025-11-22 01:25:30.132295+00 f t \N 366 405 Vacunacion anual +3029 2025-11-22 01:25:30.138322+00 2025-11-22 01:25:30.13833+00 f t \N 365 404 Control Clinico +3030 2025-11-22 01:25:30.143753+00 2025-11-22 01:25:30.143761+00 f t \N 395 436 Clínica en el día +3031 2025-11-22 01:25:30.148819+00 2025-11-22 01:25:30.148827+00 f t \N 363 412 Vacunacion Anual perro +3032 2025-11-22 01:25:30.153933+00 2025-11-22 01:25:30.153942+00 f t \N 355 397 Lesion corporal +3033 2025-11-22 01:25:30.159101+00 2025-11-22 01:25:30.159224+00 f t \N 364 453 Clínica en el día +3034 2025-11-22 01:25:30.165294+00 2025-11-22 01:25:30.165307+00 f t \N 356 398 gato con manchas por todo su cuerpo donde pierde el pelo y le sangra la piel +3035 2025-11-22 01:25:30.170593+00 2025-11-22 01:25:30.170602+00 f t \N 347 388 Vacunacion 1ra dosis triple + desprasitacion +3036 2025-11-22 01:25:30.176153+00 2025-11-22 01:25:30.176163+00 f t \N 350 391 Control clinico +3037 2025-11-22 01:25:30.181038+00 2025-11-22 01:25:30.181047+00 f t \N 342 383 vacunacion anual +3038 2025-11-22 01:25:30.186446+00 2025-11-22 01:25:30.186455+00 f t \N 353 395 Consulta clinica + corte de uñas +3039 2025-11-22 01:25:30.191207+00 2025-11-22 01:25:30.191219+00 f t \N 337 379 convulsiones sin motivo, perdida de peso importante +3040 2025-11-22 01:25:30.19678+00 2025-11-22 01:25:30.196788+00 f t \N 354 396 Sinusitis +3041 2025-11-22 01:25:30.202195+00 2025-11-22 01:25:30.202204+00 f t \N 344 385 vacunacion anual +3042 2025-11-22 01:25:30.207833+00 2025-11-22 01:25:30.207844+00 f t \N 351 392 Lesion y eritema en la cabeza. +3043 2025-11-22 01:25:30.213158+00 2025-11-22 01:25:30.213166+00 f t \N 352 393 Vomitos a repetición. +3044 2025-11-22 01:25:30.21851+00 2025-11-22 01:25:30.218518+00 f t \N 343 384 vacunacion anual +3045 2025-11-22 01:25:30.223848+00 2025-11-22 01:25:30.223856+00 f t \N 348 389 Control Clinico +3046 2025-11-22 01:25:30.228571+00 2025-11-22 01:25:30.228579+00 f t \N 346 387 Vacunación Anual +3047 2025-11-22 01:25:30.233578+00 2025-11-22 01:25:30.233586+00 f t \N 349 390 Otitis +3048 2025-11-22 01:25:30.23942+00 2025-11-22 01:25:30.239429+00 f t \N 341 382 Gato que presenta vomitos y diarrea intermitente y pérdida de peso +3049 2025-11-22 01:25:30.244686+00 2025-11-22 01:25:30.244695+00 f t \N 340 381 Vacunación anual antirrábica y triple felina +3050 2025-11-22 01:25:30.249718+00 2025-11-22 01:25:30.249726+00 f t \N 345 386 Vacunación anual +3051 2025-11-22 01:25:30.254105+00 2025-11-22 01:25:30.254112+00 f t \N 338 380 Vacunación anual gato hembra, vacunacion inicial gato macho +3052 2025-11-22 01:25:30.259539+00 2025-11-22 01:25:30.259549+00 f t \N 328 378 Vomito +3053 2025-11-22 01:25:30.264717+00 2025-11-22 01:25:30.264726+00 f t \N 309 377 gato sin poder defecar, vomitos esporadicos, posible obstrucción urinaria, se encuentra animado +3054 2025-11-22 01:25:30.269682+00 2025-11-22 01:25:30.26969+00 f t \N 336 376 Perro adulto con dificultades en la cadera, dolencias para levantarse y moverse, requiere segunda evaluación para determinar tratamiento y medicación +3055 2025-11-22 01:25:30.274198+00 2025-11-22 01:25:30.274207+00 f t \N 334 375 Posible infección urinaria +3056 2025-11-22 01:25:30.279761+00 2025-11-22 01:25:30.279772+00 f t \N 333 374 Posible infeccion urinaria +3057 2025-11-22 01:25:30.2845+00 2025-11-22 01:25:30.284509+00 f t \N 327 370 Control clinico +3058 2025-11-22 01:25:30.290092+00 2025-11-22 01:25:30.2901+00 f t \N 328 368 Consulta clinica +3059 2025-11-22 01:25:30.294974+00 2025-11-22 01:25:30.294982+00 f t \N 332 373 perra con dificultades para caminar +3060 2025-11-22 01:25:30.29979+00 2025-11-22 01:25:30.299798+00 f t \N 331 372 Perro golden de cinco años demuestra molestia en una pata +3061 2025-11-22 01:25:30.304884+00 2025-11-22 01:25:30.304893+00 f t \N 330 371 Antirrábica+certificado de salud +3062 2025-11-22 01:25:30.309884+00 2025-11-22 01:25:30.309892+00 f t \N 320 364 Clinica para gato Hercules, de 14 años. Tiene tos y anoche tuvo un pequeño sangrado de nariz +3063 2025-11-22 01:25:30.315262+00 2025-11-22 01:25:30.315274+00 f t \N 324 365 Cambio de hábitos gato: Después de hacer sus necesidades se frota con el suelo cosa que no es habitual +3064 2025-11-22 01:25:30.320344+00 2025-11-22 01:25:30.320352+00 f t \N 322 363 Vacunación y revisión de 2 gatos Noha y Mia +3065 2025-11-22 01:25:30.325639+00 2025-11-22 01:25:30.325651+00 f t \N 325 367 Vacunacion anual +3066 2025-11-22 01:25:30.331256+00 2025-11-22 01:25:30.331266+00 f t \N 326 366 Vacunacion anual +3067 2025-11-22 01:25:30.336242+00 2025-11-22 01:25:30.336256+00 f t \N 268 360 segunda dosis sextuple +3068 2025-11-22 01:25:30.341748+00 2025-11-22 01:25:30.341759+00 f t \N 319 358 vacunacion anual perro +3069 2025-11-22 01:25:30.347244+00 2025-11-22 01:25:30.347257+00 f t \N 321 362 Control clinico urgencia posible leucemia felina +3070 2025-11-22 01:25:30.352665+00 2025-11-22 01:25:30.352675+00 f t \N 278 320 Vacunación anual +3071 2025-11-22 01:25:30.359078+00 2025-11-22 01:25:30.359086+00 f t \N 277 319 Vacunación anual para 3 gatos +3072 2025-11-22 01:25:30.364409+00 2025-11-22 01:25:30.364417+00 f t \N 279 321 Vacunación anual +3073 2025-11-22 01:25:30.369568+00 2025-11-22 01:25:30.369578+00 f t \N 292 338 Vacunación anual Gato +3134 2025-11-22 01:25:30.684145+00 2025-11-22 01:25:30.684158+00 f t \N 255 295 Perro adulto con convulsión esporádica +3074 2025-11-22 01:25:30.375124+00 2025-11-22 01:25:30.375201+00 f t \N 276 361 - Visita medico clinico: $41.600\r\n- Extracción de sangre: $7.000 c/u → $14.000\r\n- Traslado de las muestras: $11.700\r\n- Test de Leishmaniasis laboratorio: $33.465 c/u → $66.930\r\n- Certificados de salud: $14.000 c/u → $28.000\r\n\r\nSubtotal: $162.230\r\n✨ Este mes tenemos un 20% de descuento, el total te queda en $129.784 +3075 2025-11-22 01:25:30.380298+00 2025-11-22 01:25:30.380305+00 f t \N 313 357 Vacunacion x 6 + desparasitacion int/ext x6 +3076 2025-11-22 01:25:30.385349+00 2025-11-22 01:25:30.385361+00 f t \N 247 356 absceso en el lateral izquierdo del rostro, presentando herida abierta y drenaje. +3077 2025-11-22 01:25:30.391365+00 2025-11-22 01:25:30.391373+00 f t \N 312 355 Ecografia abdominal- +3078 2025-11-22 01:25:30.395916+00 2025-11-22 01:25:30.395923+00 f t \N 305 349 Vacunación anual gato +3079 2025-11-22 01:25:30.400885+00 2025-11-22 01:25:30.400893+00 f t \N 306 348 Vacunación anual gato +3080 2025-11-22 01:25:30.40579+00 2025-11-22 01:25:30.405796+00 f t \N 311 354 Vacunacion Anual +3081 2025-11-22 01:25:30.41078+00 2025-11-22 01:25:30.410788+00 f t \N 310 353 Control por no toma agua +3082 2025-11-22 01:25:30.416275+00 2025-11-22 01:25:30.416282+00 f t \N 304 347 vacunación solo antirrabica +3083 2025-11-22 01:25:30.421429+00 2025-11-22 01:25:30.421437+00 f t \N 253 328 Vacunación + certificación para viaje Interprovincial. +3084 2025-11-22 01:25:30.426256+00 2025-11-22 01:25:30.426264+00 f t \N 309 352 Gato con posible obstruccion urinaria +3085 2025-11-22 01:25:30.431413+00 2025-11-22 01:25:30.431422+00 f t \N 293 336 Vacunación triple felina y corte de garras para gato Bombay de 7años pesa 8kg +3086 2025-11-22 01:25:30.43632+00 2025-11-22 01:25:30.436329+00 f t \N 234 292 ECG+ECO +3087 2025-11-22 01:25:30.441162+00 2025-11-22 01:25:30.44117+00 f t \N 281 346 chequeo de estudios +3088 2025-11-22 01:25:30.446144+00 2025-11-22 01:25:30.446151+00 f t \N 291 335 vacunación anual (sextuple + antirrabica) +3089 2025-11-22 01:25:30.451273+00 2025-11-22 01:25:30.451282+00 f t \N 275 316 Vacunación anual x2, colocación de chip de identidad x1 +3090 2025-11-22 01:25:30.4565+00 2025-11-22 01:25:30.456507+00 f t \N 251 289 Prequirúrgico cardiológico a domicilio. +3091 2025-11-22 01:25:30.461749+00 2025-11-22 01:25:30.461757+00 f t \N 276 359 Vacunacion anual caniche +3092 2025-11-22 01:25:30.466895+00 2025-11-22 01:25:30.466904+00 f t \N 288 332 Perro adopatado con tos de la perrera +3093 2025-11-22 01:25:30.472446+00 2025-11-22 01:25:30.472454+00 f t \N 287 331 Gata hembra que dio a luz hace 24hs con posible mastitis +3094 2025-11-22 01:25:30.477764+00 2025-11-22 01:25:30.477771+00 f t \N 282 324 Se despertó vomitando con un líquido transparente y algunos granos de comida visibles en el vómito. También tiene diarrea de consistencia pastosa y parece estar atragantado. Por el momento, ya comió y está bebiendo agua, pero me parece que está un poco inquieto. +3095 2025-11-22 01:25:30.482777+00 2025-11-22 01:25:30.482785+00 f t \N 280 322 Vomitos intermitente por 3 dias +3096 2025-11-22 01:25:30.489052+00 2025-11-22 01:25:30.489061+00 f t \N 281 323 Posible infección urinaria +3097 2025-11-22 01:25:30.494071+00 2025-11-22 01:25:30.494079+00 f t \N 146 318 Desparasitación + corte de uñas +3098 2025-11-22 01:25:30.499101+00 2025-11-22 01:25:30.499108+00 f t \N 267 308 Vacunación y control lesión en piel +3099 2025-11-22 01:25:30.504617+00 2025-11-22 01:25:30.504626+00 f t \N 252 291 Otitis en su oreja izquierda +3100 2025-11-22 01:25:30.510247+00 2025-11-22 01:25:30.510262+00 f t \N 274 317 Consulta dermatológica para perro adulto con ojos inflamados e irritados. +3101 2025-11-22 01:25:30.51573+00 2025-11-22 01:25:30.515737+00 f t \N 250 288 Vacunacion con triple felina +3102 2025-11-22 01:25:30.520982+00 2025-11-22 01:25:30.52099+00 f t \N 250 287 Control + extracción +3103 2025-11-22 01:25:30.526805+00 2025-11-22 01:25:30.526813+00 f t \N 249 286 Vacunación + certificación +3104 2025-11-22 01:25:30.532005+00 2025-11-22 01:25:30.532014+00 f t \N 248 285 Vacunación + certificación +3105 2025-11-22 01:25:30.537296+00 2025-11-22 01:25:30.537305+00 f t \N 96 307 Vacunación de Tos +3106 2025-11-22 01:25:30.542329+00 2025-11-22 01:25:30.542338+00 f t \N 211 290 Control y tratamiento +3107 2025-11-22 01:25:30.547588+00 2025-11-22 01:25:30.5476+00 f t \N 272 313 Lesion ulcerativa en lomo. Leia es una perra de 11 años. Amaneció ayer con parte del lomo pelado, por lo que me dijeron de rascárselo/mordérselo +3108 2025-11-22 01:25:30.552699+00 2025-11-22 01:25:30.552707+00 f t \N 247 284 Sangrado de cuello +3109 2025-11-22 01:25:30.557817+00 2025-11-22 01:25:30.557828+00 f t \N 270 311 Control +3110 2025-11-22 01:25:30.562912+00 2025-11-22 01:25:30.56292+00 f t \N 269 310 Control +3111 2025-11-22 01:25:30.568165+00 2025-11-22 01:25:30.568173+00 f t \N 271 312 Control +3112 2025-11-22 01:25:30.573202+00 2025-11-22 01:25:30.573213+00 f t \N 274 315 Perro adulto con ojos inflamados e irritados. +3113 2025-11-22 01:25:30.578621+00 2025-11-22 01:25:30.57863+00 f t \N 232 257 Vacunación antirábica+triple felina. Hace varios años no se la dan. +3114 2025-11-22 01:25:30.583921+00 2025-11-22 01:25:30.583929+00 f t \N 241 269 Teleconsulta por erupciones en la piel +3115 2025-11-22 01:25:30.589282+00 2025-11-22 01:25:30.58929+00 f t \N 243 272 Evaluación inicial, gatito rescatado. +3116 2025-11-22 01:25:30.594555+00 2025-11-22 01:25:30.594563+00 f t \N 273 314 Gatita con una posible lesión en la patita. +3117 2025-11-22 01:25:30.599663+00 2025-11-22 01:25:30.599672+00 f t \N 268 309 Vacunación +3118 2025-11-22 01:25:30.604317+00 2025-11-22 01:25:30.604327+00 f t \N 265 305 Urgencia posible infeccion +3119 2025-11-22 01:25:30.60896+00 2025-11-22 01:25:30.608968+00 f t \N 242 270 Vacunación anual +3120 2025-11-22 01:25:30.613456+00 2025-11-22 01:25:30.613464+00 f t \N 225 271 Vaunación sextuple+antirrábica + corte de uñas. +3121 2025-11-22 01:25:30.617809+00 2025-11-22 01:25:30.617816+00 f t \N 224 249 Vaunación sextuple+antirrábica + corte de uñas. +3122 2025-11-22 01:25:30.622542+00 2025-11-22 01:25:30.62255+00 f t \N 264 304 Vacunación anual para tres perros y tres gatos +3123 2025-11-22 01:25:30.626858+00 2025-11-22 01:25:30.626866+00 f t \N 260 300 Vacunación anual para tres perros y tres gatos +3124 2025-11-22 01:25:30.631382+00 2025-11-22 01:25:30.63139+00 f t \N 261 301 Vacunación anual para tres perros y tres gatos +3125 2025-11-22 01:25:30.63588+00 2025-11-22 01:25:30.635888+00 f t \N 259 299 Vacunación anual para tres perros y tres gatos +3126 2025-11-22 01:25:30.640228+00 2025-11-22 01:25:30.640236+00 f t \N 262 302 Vacunación anual para tres perros y tres gatos +3127 2025-11-22 01:25:30.644663+00 2025-11-22 01:25:30.644672+00 f t \N 263 303 Vacunación anual para tres perros y tres gatos +3128 2025-11-22 01:25:30.650697+00 2025-11-22 01:25:30.650711+00 f t \N 258 298 Cambio pigmentación en la oreja, con perdida del pelo. +3129 2025-11-22 01:25:30.656368+00 2025-11-22 01:25:30.656376+00 f t \N 217 247 Control +3130 2025-11-22 01:25:30.661522+00 2025-11-22 01:25:30.661532+00 f t \N 240 268 Vacunacion anual + chequeo +3131 2025-11-22 01:25:30.666568+00 2025-11-22 01:25:30.666578+00 f t \N 256 296 Vacunacion anual + desparasitacion interna y externa +3132 2025-11-22 01:25:30.67235+00 2025-11-22 01:25:30.672359+00 f t \N 257 297 Vacunacion anual + desparasitacion interna y externa +3133 2025-11-22 01:25:30.67823+00 2025-11-22 01:25:30.678243+00 f t \N 128 255 Visita para Drenaje de glándulas perianales y chequeo de salud y seguimiento. vacunación anual si corresponde. +3136 2025-11-22 01:25:30.695014+00 2025-11-22 01:25:30.695022+00 f t \N 254 294 Aplicación antirrábica +3137 2025-11-22 01:25:30.700371+00 2025-11-22 01:25:30.700379+00 f t \N 237 265 Diarrea y vomitos +3138 2025-11-22 01:25:30.70501+00 2025-11-22 01:25:30.705019+00 f t \N 238 266 Tos con expulsion de espuma +3139 2025-11-22 01:25:30.710304+00 2025-11-22 01:25:30.710313+00 f t \N 230 253 Vacunacion +3140 2025-11-22 01:25:30.718656+00 2025-11-22 01:25:30.718666+00 f t \N 228 251 Vacunacion +3141 2025-11-22 01:25:30.724645+00 2025-11-22 01:25:30.724654+00 f t \N 229 252 Vacunacion +3142 2025-11-22 01:25:30.729206+00 2025-11-22 01:25:30.729216+00 f t \N 181 203 Vacunación de Viaje. +3143 2025-11-22 01:25:30.739354+00 2025-11-22 01:25:30.739367+00 f t \N 233 258 Control +3144 2025-11-22 01:25:30.744912+00 2025-11-22 01:25:30.74492+00 f t \N 235 260 Control y vacunacion con los gatos de su hermana Delia Echegoyen +3145 2025-11-22 01:25:30.74943+00 2025-11-22 01:25:30.749438+00 f t \N 236 261 Vacunacion y control con el gato de la hermana +3146 2025-11-22 01:25:30.753905+00 2025-11-22 01:25:30.753913+00 f t \N 211 256 Devolución y control +3147 2025-11-22 01:25:30.75858+00 2025-11-22 01:25:30.758587+00 f t \N 226 293 Eutanasia +3148 2025-11-22 01:25:30.763532+00 2025-11-22 01:25:30.763541+00 f t \N 223 264 Vacunación completa para Garfield, Gea, Palta.\r\nRevisar el panorama de Perlita\r\nDesparasitación de Todos internas +3149 2025-11-22 01:25:30.768682+00 2025-11-22 01:25:30.768691+00 f t \N 231 254 Cambios en la conducta y fatiga +3150 2025-11-22 01:25:30.773113+00 2025-11-22 01:25:30.77312+00 f t \N 222 263 Vacunación completa para Garfield, Gea, Palta.\r\nRevisar el panorama de Perlita\r\nDesparasitación de Todos internas +3151 2025-11-22 01:25:30.777669+00 2025-11-22 01:25:30.777677+00 f t \N 221 262 Vacunación completa para Garfield, Gea, Palta.\r\nRevisar el panorama de Perlita\r\nDesparasitación de Todos internas +3152 2025-11-22 01:25:30.782479+00 2025-11-22 01:25:30.782489+00 f t \N 220 248 Vacunación completa para Garfield, Gea, Palta.\r\nRevisar el panorama de Perlita\r\nDesparasitación de Todos internas +3153 2025-11-22 01:25:30.788299+00 2025-11-22 01:25:30.788308+00 f t \N 201 226 Control y vacunacion +3154 2025-11-22 01:25:30.793046+00 2025-11-22 01:25:30.793064+00 f t \N 227 250 Vacunación +3155 2025-11-22 01:25:30.798151+00 2025-11-22 01:25:30.79816+00 f t \N 213 239 Vacunación antirrábica+triple felina (primer dosis) +3156 2025-11-22 01:25:30.802745+00 2025-11-22 01:25:30.802754+00 f t \N 214 240 Vacunación antirrábica+triple felina (primer dósis) +3157 2025-11-22 01:25:30.807716+00 2025-11-22 01:25:30.807724+00 f t \N 212 238 Vacunacion +3158 2025-11-22 01:25:30.812229+00 2025-11-22 01:25:30.812237+00 f t \N 215 241 Controles de su vacunación y sugerencias de alimentación esta castrada +3159 2025-11-22 01:25:30.817439+00 2025-11-22 01:25:30.817447+00 f t \N 211 243 Consulta + extraccion +3160 2025-11-22 01:25:30.822401+00 2025-11-22 01:25:30.822408+00 f t \N 219 246 Vacunacion Triple Felina, Rabia y corte de uñas. +3161 2025-11-22 01:25:30.828106+00 2025-11-22 01:25:30.828115+00 f t \N 217 244 Modificaciones en el pelaje, con cambios en el comportamiento. +3162 2025-11-22 01:25:30.833202+00 2025-11-22 01:25:30.833213+00 f t \N 218 245 Lesión en la patas, dificultad de movilidad +3163 2025-11-22 01:25:30.838394+00 2025-11-22 01:25:30.838405+00 f t \N 216 242 Motivo de consulta: Dx presuntivo de otitis +3164 2025-11-22 01:25:30.843836+00 2025-11-22 01:25:30.843844+00 f t \N 193 237 Ecografía abdominal +3165 2025-11-22 01:25:30.848728+00 2025-11-22 01:25:30.84874+00 f t \N 209 234 Control de la vía auditiva +3166 2025-11-22 01:25:30.853623+00 2025-11-22 01:25:30.853631+00 f t \N 210 235 Control de la vía auditiva +3167 2025-11-22 01:25:30.858522+00 2025-11-22 01:25:30.858533+00 f t \N 203 228 Control +3168 2025-11-22 01:25:30.863632+00 2025-11-22 01:25:30.86364+00 f t \N 208 233 -Vacunación (Rabia + Sext/Triple)\r\n-Certifcados de salud\r\n-Desparasitacion +3169 2025-11-22 01:25:30.869091+00 2025-11-22 01:25:30.869101+00 f t \N 211 236 Consulta clinica de control por sangrado en cavidad bucal +3170 2025-11-22 01:25:30.874992+00 2025-11-22 01:25:30.875003+00 f t \N 206 231 Dos vacunaciones +3171 2025-11-22 01:25:30.88159+00 2025-11-22 01:25:30.881601+00 f t \N 207 232 Dos vacunaciones +3172 2025-11-22 01:25:30.888093+00 2025-11-22 01:25:30.888103+00 f t \N 192 283 Control y extracción de sangre. +3173 2025-11-22 01:25:30.893769+00 2025-11-22 01:25:30.893777+00 f t \N 205 230 Vacunacion +3174 2025-11-22 01:25:30.899273+00 2025-11-22 01:25:30.899283+00 f t \N 169 202 Gata con cancer - colocación de medicamentos qué cliente proporciona junto con los descartables +3175 2025-11-22 01:25:30.904568+00 2025-11-22 01:25:30.904578+00 f t \N 200 225 Incontinencia urinaria +3176 2025-11-22 01:25:30.909336+00 2025-11-22 01:25:30.909344+00 f t \N 198 224 Alergia generalizada +3177 2025-11-22 01:25:30.913981+00 2025-11-22 01:25:30.913994+00 f t \N 245 280 Está con vómitos hace unos días, eventualmente ha pasado y al poco tiempo vuelve a la normalidad, pero esta vez no. +3178 2025-11-22 01:25:30.918778+00 2025-11-22 01:25:30.918786+00 f t \N 197 223 Clínica estuvo algunos días perdido en el campo, ahora está decaído - Además requiere desparasitación. Peso 20/25kg +3179 2025-11-22 01:25:30.924469+00 2025-11-22 01:25:30.92448+00 f t \N 174 278 Gato no orina, un vete le mando a hacer un análisis y aun no están los resultados, y quiere que alguien vea a su gato porque le preocupa que este orinando poco. +3180 2025-11-22 01:25:30.93044+00 2025-11-22 01:25:30.93045+00 f t \N 199 282 Vómitos intermitentes +3181 2025-11-22 01:25:30.936791+00 2025-11-22 01:25:30.936802+00 f t \N 190 213 Vacunación anual gato +3182 2025-11-22 01:25:30.943623+00 2025-11-22 01:25:30.943634+00 f t \N 244 279 Vacunación +3183 2025-11-22 01:25:30.950381+00 2025-11-22 01:25:30.950392+00 f t \N 196 222 Hace unos dias estuvo orinando fuera de sus piedras, desde el dia 6/11 comenzo a orinar con sangre +3184 2025-11-22 01:25:30.957187+00 2025-11-22 01:25:30.957199+00 f t \N 194 207 Control de Peso y revision +3185 2025-11-22 01:25:30.963975+00 2025-11-22 01:25:30.963986+00 f t \N 171 218 Seguimiento, tiene artrosis, está tomando Canabis medicinal, en ultima consulta se le receto calmantes venta bajo receta +3186 2025-11-22 01:25:30.970521+00 2025-11-22 01:25:30.970532+00 f t \N 132 220 Control y desparasitación +3187 2025-11-22 01:25:30.977265+00 2025-11-22 01:25:30.977277+00 f t \N 195 221 Control y desparasitación +3188 2025-11-22 01:25:30.984216+00 2025-11-22 01:25:30.984228+00 f t \N 120 219 Control y desparasitación +3189 2025-11-22 01:25:30.990641+00 2025-11-22 01:25:30.990653+00 f t \N 204 229 Vacunación anual +3190 2025-11-22 01:25:30.99726+00 2025-11-22 01:25:30.997271+00 f t \N 183 277 Devolucion 4 radiografias +3191 2025-11-22 01:25:31.004327+00 2025-11-22 01:25:31.004339+00 f t \N 169 201 Gata con cancer - colocación de medicamentos qué cliente proporciona junto con los descartables +3192 2025-11-22 01:25:31.011117+00 2025-11-22 01:25:31.01119+00 f t \N 192 215 Motivo de consulta: paciente con vomito con plantas y evacuaciones fuera de lugar sanitario +3193 2025-11-22 01:25:31.017993+00 2025-11-22 01:25:31.018004+00 f t \N 193 216 Gata con vomitos pocos frecuentes +3194 2025-11-22 01:25:31.02535+00 2025-11-22 01:25:31.025361+00 f t \N 191 214 Control previaje parasitos +3195 2025-11-22 01:25:31.032826+00 2025-11-22 01:25:31.032838+00 f t \N 183 275 Dr Ponce le indica 4 rx +3196 2025-11-22 01:25:31.039863+00 2025-11-22 01:25:31.039875+00 f t \N 189 212 Perro con nauseas +3197 2025-11-22 01:25:31.046487+00 2025-11-22 01:25:31.0465+00 f t \N 188 211 Vacunación y certificado de salud +3198 2025-11-22 01:25:31.053245+00 2025-11-22 01:25:31.053256+00 f t \N 166 208 Telemedicina +3199 2025-11-22 01:25:31.05982+00 2025-11-22 01:25:31.059831+00 f t \N 186 209 Control px con artrosis en patas traseras +3200 2025-11-22 01:25:31.066077+00 2025-11-22 01:25:31.066087+00 f t \N 187 210 Vomito repetitivo- Imposibilidad administración de fármacos postquirúrgicos +3201 2025-11-22 01:25:31.072191+00 2025-11-22 01:25:31.072202+00 f t \N 170 200 Radiografía de tórax +3202 2025-11-22 01:25:31.078682+00 2025-11-22 01:25:31.078696+00 f t \N 184 274 Perro desganado y se queja +3203 2025-11-22 01:25:31.084885+00 2025-11-22 01:25:31.084894+00 f t \N 185 273 Vacunación antirrábica+triple felina +3204 2025-11-22 01:25:31.089969+00 2025-11-22 01:25:31.089977+00 f t \N 180 199 Chequeo de membranas en los ojos +3205 2025-11-22 01:25:31.09472+00 2025-11-22 01:25:31.094733+00 f t \N 183 206 Perra con atrosis en pata derecha. Luego de la vacuna antirrábica y séxtuple se encuentra decaída, casi no come, no quiere tomar agua, ni hacer sus necesidades. +3206 2025-11-22 01:25:31.100816+00 2025-11-22 01:25:31.100827+00 f t \N 175 205 Devolución de análisis de laboratorio. +3207 2025-11-22 01:25:31.106719+00 2025-11-22 01:25:31.106732+00 f t \N 128 327 Evacuar dudas y seguimiento +3208 2025-11-22 01:25:31.112864+00 2025-11-22 01:25:31.112875+00 f t \N 169 198 Gata con cancer - colocación de medicamentos qué cliente proporciona junto con los descartables +3209 2025-11-22 01:25:31.118577+00 2025-11-22 01:25:31.118588+00 f t \N 179 197 Vacunación perra geronte +3210 2025-11-22 01:25:31.124761+00 2025-11-22 01:25:31.124773+00 f t \N 178 325 Vacunación triple felina + antirrábica para dos gatitas +3211 2025-11-22 01:25:31.13076+00 2025-11-22 01:25:31.130771+00 f t \N 177 196 2 RX para dos gatitos 3 meses +3212 2025-11-22 01:25:31.137275+00 2025-11-22 01:25:31.137287+00 f t \N 176 194 Chequeo general +3213 2025-11-22 01:25:31.143581+00 2025-11-22 01:25:31.143592+00 f t \N 175 195 clinica + Extraccion de sangre + traslado + pgc c/orina +3214 2025-11-22 01:25:31.149896+00 2025-11-22 01:25:31.149909+00 f t \N 175 193 Consulta clinica por fatiga +3215 2025-11-22 01:25:31.15639+00 2025-11-22 01:25:31.156401+00 f t \N 174 192 Gato esta con dificultad para orinar +3216 2025-11-22 01:25:31.162834+00 2025-11-22 01:25:31.162846+00 f t \N 173 191 Consulta clínica en el día + eutanasia si corresponde +3217 2025-11-22 01:25:31.169087+00 2025-11-22 01:25:31.169098+00 f t \N 172 190 Vacunacion de Gato de 3 meses +3218 2025-11-22 01:25:31.175077+00 2025-11-22 01:25:31.17509+00 f t \N 171 189 Teleconsulta por medicación +3219 2025-11-22 01:25:31.181894+00 2025-11-22 01:25:31.181907+00 f t \N 234 259 Vacunación de su gato y los de su hermana (Tutor: Cristina Echegoyen) +3220 2025-11-22 01:25:31.18869+00 2025-11-22 01:25:31.188701+00 f t \N 169 187 Gata con cancer - colocación de medicamentos qué cliente proporciona junto con los descartables +3221 2025-11-22 01:25:31.194749+00 2025-11-22 01:25:31.194763+00 f t \N 170 188 Gato de 7,5 kg con Vomito +3222 2025-11-22 01:25:31.200967+00 2025-11-22 01:25:31.20098+00 f t \N 283 326 Vacunación triple felina + antirrábica para dos gatitas +3223 2025-11-22 01:25:31.206676+00 2025-11-22 01:25:31.206689+00 f t \N 168 186 Gata de 6 años con perdida de pelaje +3224 2025-11-22 01:25:31.212721+00 2025-11-22 01:25:31.212734+00 f t \N 167 185 Gata adoptada recientemente chequeo general y vacunación +3225 2025-11-22 01:25:31.218769+00 2025-11-22 01:25:31.218781+00 f t \N 128 184 Perro Drenaje de glándulas perianales que se le han inflamado +3226 2025-11-22 01:25:31.225118+00 2025-11-22 01:25:31.225129+00 f t \N 163 183 Gato de 13 años y hace 5 días obstruido que no hace ni caca ni pis. Ha dejado de comer. +3227 2025-11-22 01:25:31.230869+00 2025-11-22 01:25:31.23088+00 f t \N 166 182 Perro . Tiene reacción alérgica y las patas se lastimo al mordisquearse. En el paseo pienso que por el pasto largo. Ya viene hace rato +3228 2025-11-22 01:25:31.236917+00 2025-11-22 01:25:31.23693+00 f t \N 165 181 Esta con problema de artrosis, bajo tratamiento. Esta con fisioterapia y analgésicos, y no tiene control de esfinter (anal). Anoche notamos que el ano esta bastante dilatado, y ya píerde liquido intestinal. Anoche no durmió en ningún momento, está muy agitada y con dolor. +3229 2025-11-22 01:25:31.243265+00 2025-11-22 01:25:31.243277+00 f t \N 164 180 Perro 12 años Desde un día y medio está decaído, no come ni toma agua, babea mucho y ahora le costó pararse. Hace dos días que está con diarrea, a lo último parecía sangre. +3230 2025-11-22 01:25:31.249049+00 2025-11-22 01:25:31.249061+00 f t \N 161 179 Clínica + extracción +3231 2025-11-22 01:25:31.254977+00 2025-11-22 01:25:31.254988+00 f t \N 163 178 PGC sin orina +traslado +3232 2025-11-22 01:25:31.260923+00 2025-11-22 01:25:31.260934+00 f t \N 163 177 Gato de 13 años y hace 5 días obstruido que no hace ni caca ni pis. Ha dejado de comer. +3233 2025-11-22 01:25:31.267123+00 2025-11-22 01:25:31.267201+00 f t \N 161 175 Consulta para perrito, está un poco obeso y hace dos semanas empezó a renguear al caminar. +3234 2025-11-22 01:25:31.273531+00 2025-11-22 01:25:31.273543+00 f t \N 162 176 Mi gatito tiene en su ojito algo (creo una pelusa) y lo tiene cerrado hace 1 día + desparasitación 2 gatos +3235 2025-11-22 01:25:31.280445+00 2025-11-22 01:25:31.280456+00 f t \N 160 174 Consulta para gatita, caso de dermatitis milliar. +3236 2025-11-22 01:25:31.286745+00 2025-11-22 01:25:31.286757+00 f t \N 159 173 Ecografia perro a domicilio porque esta descompensada y no la pueden mover +3237 2025-11-22 01:25:31.292853+00 2025-11-22 01:25:31.292865+00 f t \N 158 172 Gata regurgitando la comida entera +3238 2025-11-22 01:25:31.298677+00 2025-11-22 01:25:31.298688+00 f t \N 128 171 Perro Drenaje de glándulas perianales que se le han inflamado +3239 2025-11-22 01:25:31.304514+00 2025-11-22 01:25:31.304525+00 f t \N 156 169 Vacunación 3r dosis cachorro - Séxtuple y Antirrábica. +3240 2025-11-22 01:25:31.310713+00 2025-11-22 01:25:31.310724+00 f t \N 157 170 Perro boxer con trompa inflamada +3241 2025-11-22 01:25:31.317299+00 2025-11-22 01:25:31.317311+00 f t \N 155 168 Vacunacion inicial y chequeo general +3242 2025-11-22 01:25:31.323846+00 2025-11-22 01:25:31.323854+00 f t \N 154 167 Consulta general. Aplicación de eritropoyetina para gato. +3243 2025-11-22 01:25:31.329319+00 2025-11-22 01:25:31.329326+00 f t \N 153 166 vacunacion anual gata +3244 2025-11-22 01:25:31.334649+00 2025-11-22 01:25:31.334656+00 f t \N 151 164 Consulta clínica 2 gatos + extracción +3245 2025-11-22 01:25:31.33991+00 2025-11-22 01:25:31.339917+00 f t \N 152 165 Consulta clínica 2 gatos + extracción +3246 2025-11-22 01:25:31.345398+00 2025-11-22 01:25:31.345406+00 f t \N 150 163 Consulta clínica para perra que presenta sangre en la orina. +3247 2025-11-22 01:25:31.35131+00 2025-11-22 01:25:31.351318+00 f t \N 149 162 Vacunacion anual y chequeo general +3248 2025-11-22 01:25:31.356654+00 2025-11-22 01:25:31.356662+00 f t \N 148 161 Perro hace 2 días que no orina +3249 2025-11-22 01:25:31.361979+00 2025-11-22 01:25:31.361987+00 f t \N 128 158 Devolucion de analisis clinicos +3250 2025-11-22 01:25:31.367654+00 2025-11-22 01:25:31.367664+00 f t \N 146 159 Vacunacion inicial gato, corte de uñas +3251 2025-11-22 01:25:31.372816+00 2025-11-22 01:25:31.372824+00 f t \N 147 160 Ecografía abdominal +3252 2025-11-22 01:25:31.378966+00 2025-11-22 01:25:31.378974+00 f t \N 145 157 Gato lagrimea un ojo +3253 2025-11-22 01:25:31.384702+00 2025-11-22 01:25:31.38471+00 f t \N 121 156 Devolucion de analisis clinicos y estudios +3254 2025-11-22 01:25:31.389789+00 2025-11-22 01:25:31.389798+00 f t \N 144 155 Eutanasia +3255 2025-11-22 01:25:31.394897+00 2025-11-22 01:25:31.394905+00 f t \N 143 154 Gata esta con estornudos y mosquito blanco/gris con mal olor Ella tiene libreta sanitaria y todas las vacunas correspondientes +3256 2025-11-22 01:25:31.400496+00 2025-11-22 01:25:31.400507+00 f t \N 142 153 Gato que presenta una placa de alopecia, tiene pulgas desde hace meses, aproximadamente lleva un año recibiendo pipeta. +3257 2025-11-22 01:25:31.405529+00 2025-11-22 01:25:31.405537+00 f t \N 4 150 Vacunación última dosis sextúple +3258 2025-11-22 01:25:31.410494+00 2025-11-22 01:25:31.410504+00 f t \N 140 151 Perra, 14 años que no puede caminar. Es como que los cuartos traseros cayeron o algo asi, al tocarla le duele +3259 2025-11-22 01:25:31.416074+00 2025-11-22 01:25:31.416085+00 f t \N 141 152 Gato presenta irritación en el contorno de sus ojos. +3260 2025-11-22 01:25:31.421837+00 2025-11-22 01:25:31.421848+00 f t \N 134 149 Procedimiento, eutanasia para perro +3261 2025-11-22 01:25:31.427588+00 2025-11-22 01:25:31.427599+00 f t \N 7940 2672 Problemas para caminar +3262 2025-11-22 01:25:31.433225+00 2025-11-22 01:25:31.433238+00 f t \N 138 148 Gato presenta vomitos desde hace 2 días y se ve desganado, tiene las orejitas un poco amarillentas. +3263 2025-11-22 01:25:31.438198+00 2025-11-22 01:25:31.438206+00 f t \N 137 147 Gata con problemas para orinar +3264 2025-11-22 01:25:31.442665+00 2025-11-22 01:25:31.442674+00 f t \N 136 146 Gato lastimado, tiene unas peladuras en el cuerpo que se hizo +3265 2025-11-22 01:25:31.447292+00 2025-11-22 01:25:31.447304+00 f t \N 127 145 Consulta de control, revisión de estudios +3266 2025-11-22 01:25:31.452282+00 2025-11-22 01:25:31.452293+00 f t \N 135 144 Gata con problemas en la piel +3267 2025-11-22 01:25:31.458236+00 2025-11-22 01:25:31.458249+00 f t \N 134 143 Perro presenta dolores cervicales fue diagnosticado con rectificado de cervicales hace unos años y comienzo nuevamente con dolor y quejas +3268 2025-11-22 01:25:31.464092+00 2025-11-22 01:25:31.4641+00 f t \N 133 142 Hace 2 días le molesta algo en la boca, estornuda y a veces muestra que quiere vomitar. +3269 2025-11-22 01:25:31.46886+00 2025-11-22 01:25:31.468868+00 f t \N 128 141 Ecografia abdominal +3270 2025-11-22 01:25:31.474184+00 2025-11-22 01:25:31.474196+00 f t \N 132 140 Vacunación + chequeo general x 3 +3271 2025-11-22 01:25:31.479588+00 2025-11-22 01:25:31.479599+00 f t \N 131 139 Chequeo + vacunación anual + certificado de salud. +3272 2025-11-22 01:25:31.485287+00 2025-11-22 01:25:31.485298+00 f t \N 130 138 Clínica general para perro +3273 2025-11-22 01:25:31.491109+00 2025-11-22 01:25:31.49112+00 f t \N 286 330 Vacunación anual +3274 2025-11-22 01:25:31.496988+00 2025-11-22 01:25:31.496998+00 f t \N 129 137 Vacunación anual +3275 2025-11-22 01:25:31.502564+00 2025-11-22 01:25:31.502575+00 f t \N 128 136 Chequeo general, perra con enfermedad crónica de vesícula +3276 2025-11-22 01:25:31.50946+00 2025-11-22 01:25:31.509471+00 f t \N 121 135 Rayos x 2 - Gata que presenta cuadro de tos y congestión para respirar, suele presentarlo en el invierno. +3277 2025-11-22 01:25:31.516105+00 2025-11-22 01:25:31.516115+00 f t \N 127 134 Hace 2 Días que no come casi nada y tampoco toma agua. a veces vomita +3278 2025-11-22 01:25:31.521201+00 2025-11-22 01:25:31.521208+00 f t \N 126 133 Perrita, desde el sabado a la noche camina rengueando de la pata delantera derecha +3279 2025-11-22 01:25:31.525823+00 2025-11-22 01:25:31.525831+00 f t \N 125 132 Perrita con problemas de artrosis, le está costando poder levantarse, deben ayudarla. +3280 2025-11-22 01:25:31.531765+00 2025-11-22 01:25:31.531777+00 f t \N 124 131 Gatita presenta muchos estornudos desde ayer 21/09. +3281 2025-11-22 01:25:31.537211+00 2025-11-22 01:25:31.537221+00 f t \N 123 129 Chequeo general, perra con diagnóstico de fiebre de Sharpei, presenta de nuevo espisodio de fiebre e inflamación en las articulaciones. +3282 2025-11-22 01:25:31.542135+00 2025-11-22 01:25:31.542143+00 f t \N 120 130 Ecografía abdominal +3283 2025-11-22 01:25:31.546937+00 2025-11-22 01:25:31.546943+00 f t \N 122 128 Perro, está decaído no camina y estuvo con vomitos hasta ayer +3284 2025-11-22 01:25:31.552213+00 2025-11-22 01:25:31.552222+00 f t \N 121 127 Gata que presenta cuadro de tos y congestión para respirar, suele presentarlo en el invierno. +3285 2025-11-22 01:25:31.557261+00 2025-11-22 01:25:31.557267+00 f t \N 120 126 Gata presenta abultamiento en el abdomen, pario un gatito hace 2 días. +3286 2025-11-22 01:25:31.56237+00 2025-11-22 01:25:31.562378+00 f t \N 119 125 Perro con movilidad reducida, Apoya la pata pero arrastra el empeine +3287 2025-11-22 01:25:31.567498+00 2025-11-22 01:25:31.567505+00 f t \N 117 123 Vacunación anual gatita +3288 2025-11-22 01:25:31.572545+00 2025-11-22 01:25:31.572552+00 f t \N 118 124 Vacunación anual perra +3289 2025-11-22 01:25:31.577737+00 2025-11-22 01:25:31.577753+00 f t \N 116 122 Consulta general clínica, evaluación general y cuidados. +3290 2025-11-22 01:25:31.582677+00 2025-11-22 01:25:31.582684+00 f t \N 115 121 Gata de 14 años, está muy flaca, con vómitos. +3291 2025-11-22 01:25:31.587457+00 2025-11-22 01:25:31.587466+00 f t \N 114 120 Gato, presenta vomitos y diarrea, tutor indica que necesita un analisis de orina ya que presuntamente tiene problemas renales +3292 2025-11-22 01:25:31.59282+00 2025-11-22 01:25:31.592828+00 f t \N 94 118 Consulta de control, revisión de estudios. +3293 2025-11-22 01:25:31.597944+00 2025-11-22 01:25:31.597952+00 f t \N 113 119 Consulta clínica (estreñimiento) + vacunación anual + desparasitación interna ext +5kg +3294 2025-11-22 01:25:31.602821+00 2025-11-22 01:25:31.602828+00 f t \N 79 117 Radiografía de cadera frente y perfil perro. +3295 2025-11-22 01:25:31.608276+00 2025-11-22 01:25:31.608284+00 f t \N 111 116 Gato adulto con diarrea +3296 2025-11-22 01:25:31.613487+00 2025-11-22 01:25:31.613494+00 f t \N 110 115 Perro, hace unos meses se le abrían las patas, se le estuvo dando medicación para las articulaciones y unas botas antideslizantes, tiembla mucho y pasa muchas horas en la cucha. Tutor solicita eutanasia, se le indica que es previa revisión. +3297 2025-11-22 01:25:31.618813+00 2025-11-22 01:25:31.61882+00 f t \N 109 114 Gato 6 años hace 1 día está decaído, no está queriendo comer o tomar, intenta pero le dan como arcadas +3298 2025-11-22 01:25:31.623782+00 2025-11-22 01:25:31.623794+00 f t \N 108 113 Gata en cuidados paliativos, hace dos dias no come ni toma agua y no se mueve, estuvo internada hace 2 semanas, está con antibioticos, tampoco hace sus necesidades. Tutor solicita eutanasia, se le indica que es previa revisión. +3299 2025-11-22 01:25:31.629695+00 2025-11-22 01:25:31.629706+00 f t \N 107 112 Gatito de 2 meses presenta falta de apetito y no toma agua, vomitó, tiene lagañas, espasmos, no ha hecho sus necesidades y le preocupa estado de animo. Comenta lo adopto hoy. +3300 2025-11-22 01:25:31.63551+00 2025-11-22 01:25:31.635521+00 f t \N 106 111 Vómitos y diarrea expulsando parásitos +3301 2025-11-22 01:25:31.641713+00 2025-11-22 01:25:31.641725+00 f t \N 105 110 Gata 4 años se rasca constantemente, le han recetado pastillas y antipungas y no presenta mejorias +3302 2025-11-22 01:25:31.647882+00 2025-11-22 01:25:31.647894+00 f t \N 104 109 Consulta general clínica por presentar sintomas como vomito, diarrea, baja energía, gatito de refugio, tutor advierte que es muy nervioso, se esconde al recibir visitas. +3303 2025-11-22 01:25:31.653562+00 2025-11-22 01:25:31.653573+00 f t \N 28 108 Ecografia abdominal +3304 2025-11-22 01:25:31.659421+00 2025-11-22 01:25:31.659429+00 f t \N 103 107 Gato adulto con sensibilidad al tacto en la zona de la cadera +3305 2025-11-22 01:25:31.664522+00 2025-11-22 01:25:31.664533+00 f t \N 102 106 Vacunacion gata hembra castrada +3306 2025-11-22 01:25:31.670032+00 2025-11-22 01:25:31.670043+00 f t \N 101 105 Consulta clinica - Gata que está excedida de peso. Le cuesta bastante caminar y tiene una picazón que no sabemos si son pulgas porque se le aplicó la pipeta pero sigue de la misma manera +3307 2025-11-22 01:25:31.675529+00 2025-11-22 01:25:31.67554+00 f t \N 100 104 Perra 11 años se rompió la uña del dedo chiquito de una para trasera +3308 2025-11-22 01:25:31.68282+00 2025-11-22 01:25:31.682831+00 f t \N 99 103 Vacunación anual perro +3309 2025-11-22 01:25:31.69025+00 2025-11-22 01:25:31.690283+00 f t \N 284 329 Vacunación anual para dos gatos adultos +3310 2025-11-22 01:25:31.702878+00 2025-11-22 01:25:31.702898+00 f t \N 98 102 Vacunación anual para dos gatos adultos +3311 2025-11-22 01:25:31.714877+00 2025-11-22 01:25:31.714899+00 f t \N 97 101 Clínica general, consejos, evaluación y manejo. +3312 2025-11-22 01:25:31.725797+00 2025-11-22 01:25:31.725808+00 f t \N 96 100 Clinica revisar lastimadura en los pliegues + Vacunacion perro sextuple y rabia +3313 2025-11-22 01:25:31.73217+00 2025-11-22 01:25:31.732181+00 f t \N 157 99 Desparasitacion + certificado +3314 2025-11-22 01:25:31.738281+00 2025-11-22 01:25:31.738293+00 f t \N 81 97 Vacunación + desparasitación + extracción de sangre +3315 2025-11-22 01:25:31.74444+00 2025-11-22 01:25:31.744451+00 f t \N 157 98 Consulta clinica + Certificado de Salud +3316 2025-11-22 01:25:31.750532+00 2025-11-22 01:25:31.750544+00 f t \N 93 95 Vacunación anual para perrita Moretita +3317 2025-11-22 01:25:31.75683+00 2025-11-22 01:25:31.756841+00 f t \N 94 96 Perro pequeño adulto diagnosticado epiléptico medicado con posible tumoración en cabeza. +3318 2025-11-22 01:25:31.763064+00 2025-11-22 01:25:31.763074+00 f t \N 92 94 Vacunacion anual 2 perros adultos +3319 2025-11-22 01:25:31.769272+00 2025-11-22 01:25:31.769283+00 f t \N 61 92 Vacunación perro + desparasitación +3320 2025-11-22 01:25:31.775455+00 2025-11-22 01:25:31.775466+00 f t \N 91 93 Consulta clínica perro adulto con posible acv +3321 2025-11-22 01:25:31.782624+00 2025-11-22 01:25:31.782635+00 f t \N 89 91 Gato adulto con pérdida de pelaje en algunas zonas +3322 2025-11-22 01:25:31.788973+00 2025-11-22 01:25:31.788987+00 f t \N 87 89 4 Radiografías +3323 2025-11-22 01:25:31.794595+00 2025-11-22 01:25:31.794603+00 f t \N 87 90 Ecografía +3324 2025-11-22 01:25:31.799921+00 2025-11-22 01:25:31.799929+00 f t \N 86 88 Vacunación anual gato +3325 2025-11-22 01:25:31.804252+00 2025-11-22 01:25:31.80426+00 f t \N 85 87 Consulta clínica genral para perrito. +3326 2025-11-22 01:25:31.808902+00 2025-11-22 01:25:31.80891+00 f t \N 298 341 Vacunación anual +3327 2025-11-22 01:25:31.813351+00 2025-11-22 01:25:31.813359+00 f t \N 297 340 Vacunación anual +3328 2025-11-22 01:25:31.818357+00 2025-11-22 01:25:31.818364+00 f t \N 84 86 Vacunación anual +3329 2025-11-22 01:25:31.823052+00 2025-11-22 01:25:31.823062+00 f t \N 296 339 Vacunación anual +3330 2025-11-22 01:25:31.827937+00 2025-11-22 01:25:31.827945+00 f t \N 83 85 chip + vacunacion + desparasitacion + certificados +3331 2025-11-22 01:25:31.833036+00 2025-11-22 01:25:31.833046+00 f t \N 82 84 Vacunación anual perro +3332 2025-11-22 01:25:31.837735+00 2025-11-22 01:25:31.837746+00 f t \N 74 82 Estudios RX +3333 2025-11-22 01:25:31.842886+00 2025-11-22 01:25:31.842894+00 f t \N 80 81 Consulta clínica genral para gatito. +3334 2025-11-22 01:25:31.847773+00 2025-11-22 01:25:31.847781+00 f t \N 81 83 Control gato + corte uñas +3335 2025-11-22 01:25:31.852068+00 2025-11-22 01:25:31.852075+00 f t \N 79 80 Perrito que llora, algo le duele +3336 2025-11-22 01:25:31.857482+00 2025-11-22 01:25:31.857493+00 f t \N 78 79 Consulta clinica gatita +3337 2025-11-22 01:25:31.863947+00 2025-11-22 01:25:31.863959+00 f t \N 77 78 Vacunación anual gato +3338 2025-11-22 01:25:31.869641+00 2025-11-22 01:25:31.869652+00 f t \N 58 77 Gato 12 años problemas respiratorios, maulla mucho y esta muy débil +3339 2025-11-22 01:25:31.875342+00 2025-11-22 01:25:31.875353+00 f t \N 76 76 Vacunación x 2 gatitos / Chequeo Tiña +3340 2025-11-22 01:25:31.881158+00 2025-11-22 01:25:31.881166+00 f t \N 295 337 Vacunación x 2 gatitos / Chequeo Tiña +3341 2025-11-22 01:25:31.886647+00 2025-11-22 01:25:31.886659+00 f t \N 75 75 Vacunación gato / Desparasitación para 2 gatitos +3342 2025-11-22 01:25:31.89228+00 2025-11-22 01:25:31.892292+00 f t \N 74 74 Consulta clinica perra +3343 2025-11-22 01:25:31.897956+00 2025-11-22 01:25:31.897967+00 f t \N 73 73 Vacunación anual gata +3344 2025-11-22 01:25:31.903913+00 2025-11-22 01:25:31.903925+00 f t \N 72 72 Vacunación anual gata +3345 2025-11-22 01:25:31.909493+00 2025-11-22 01:25:31.909504+00 f t \N 290 334 Vacunación sext + antirrábica +3346 2025-11-22 01:25:31.915182+00 2025-11-22 01:25:31.915195+00 f t \N 71 71 Vacunación anual gato +3347 2025-11-22 01:25:31.920776+00 2025-11-22 01:25:31.920788+00 f t \N 70 70 Vacunación sext + antirrábica +3348 2025-11-22 01:25:31.926839+00 2025-11-22 01:25:31.92685+00 f t \N 69 69 Clinica perro / control +3349 2025-11-22 01:25:31.93304+00 2025-11-22 01:25:31.933052+00 f t \N 68 68 Vacnación x 2 gatitas +3350 2025-11-22 01:25:31.938546+00 2025-11-22 01:25:31.938555+00 f t \N 289 333 Vacunación +3351 2025-11-22 01:25:31.943436+00 2025-11-22 01:25:31.943445+00 f t \N 67 67 Chequeo estado gral de 3 gatos, y vacunacion primer dosis triple felina para 2 gatos, y segunda dosis para 1 gato. +3352 2025-11-22 01:25:31.948036+00 2025-11-22 01:25:31.948044+00 f t \N 66 66 Ecografia abdominal, radiografia de abdomen +3353 2025-11-22 01:25:31.953923+00 2025-11-22 01:25:31.953933+00 f t \N 65 65 Motivo de Consulta: Desparasitación y emisión de certificado de salud +3354 2025-11-22 01:25:31.959062+00 2025-11-22 01:25:31.959073+00 f t \N 64 64 Gatita con inflamación en la zona de la cola\n +3355 2025-11-22 01:25:31.964903+00 2025-11-22 01:25:31.964911+00 f t \N 63 63 vacunacion anual (sextuple + antirrabica) +3356 2025-11-22 01:25:31.969685+00 2025-11-22 01:25:31.969695+00 f t \N 69 62 Motivo de Consulta: Perro con grano en la pata +3357 2025-11-22 01:25:31.975289+00 2025-11-22 01:25:31.9753+00 f t \N 61 61 Vacunación perro +3358 2025-11-22 01:25:31.980609+00 2025-11-22 01:25:31.98062+00 f t \N 60 60 Vacunación 3 gatitos solo triple y perro sextuple y antirrabica + corte de uñas +3359 2025-11-22 01:25:31.986339+00 2025-11-22 01:25:31.98635+00 f t \N 59 59 Consulta clinica Perro 2 años y 5 meses Caniche toy. Asesoramiento sobre nutricion ya que no quiere comer balanceado +3360 2025-11-22 01:25:31.991931+00 2025-11-22 01:25:31.991942+00 f t \N 58 58 Gato 12 años problemas respiratorios, maulla mucho y esta muy débil +3361 2025-11-22 01:25:31.997754+00 2025-11-22 01:25:31.997767+00 f t \N 57 57 Gato adulto hinchazón, evacuaciones poco frecuentes, decaimiento +3362 2025-11-22 01:25:32.004116+00 2025-11-22 01:25:32.004126+00 f t \N 56 56 Motivo de Consulta: Gato con alergia en la piel +3363 2025-11-22 01:25:32.00964+00 2025-11-22 01:25:32.009651+00 f t \N 55 55 gato con estornudos +3364 2025-11-22 01:25:32.015222+00 2025-11-22 01:25:32.015233+00 f t \N 54 54 analisis préquirurgico extracción +3365 2025-11-22 01:25:32.021008+00 2025-11-22 01:25:32.02102+00 f t \N 53 53 gato diarrea explosiva +3366 2025-11-22 01:25:32.027278+00 2025-11-22 01:25:32.027289+00 f t \N 52 52 Produccion + vacunacion +3367 2025-11-22 01:25:32.033331+00 2025-11-22 01:25:32.033341+00 f t \N 51 51 Gato con estornudos frecuentes +3368 2025-11-22 01:25:32.0392+00 2025-11-22 01:25:32.039217+00 f t \N 50 50 Perro caniche 13 años con molestias y dolores durante la noche +3369 2025-11-22 01:25:32.045152+00 2025-11-22 01:25:32.045164+00 f t \N 49 49 Gata con protuberancia en la cabeza e inflamación de vientre +3370 2025-11-22 01:25:32.050909+00 2025-11-22 01:25:32.050921+00 f t \N 303 345 Gato defeca con sangre +3371 2025-11-22 01:25:32.056876+00 2025-11-22 01:25:32.056887+00 f t \N 48 48 Consulta clinica + vacunación x 2 gatos - Tiler macho de 2 años hace 2 meses tiene diarrea, se le cambio la comida a una intestinal y no mejoró +3372 2025-11-22 01:25:32.062793+00 2025-11-22 01:25:32.062805+00 f t \N 47 47 Chequeo de tumores en mamas, y halitosis. Perra 17 mestiza, operada de tumores a los 13años (extraccion 1 linea mamaria y utero) +3373 2025-11-22 01:25:32.06866+00 2025-11-22 01:25:32.068672+00 f t \N 46 46 Gata 9 años con alopecia en algunas zonas +3374 2025-11-22 01:25:32.074366+00 2025-11-22 01:25:32.074376+00 f t \N 45 45 Gato 10 años con vomitos +3375 2025-11-22 01:25:32.080388+00 2025-11-22 01:25:32.080401+00 f t \N 44 44 Perro 16 años - inyección anti artrosico +3376 2025-11-22 01:25:32.086364+00 2025-11-22 01:25:32.086376+00 f t \N 43 43 Gato 8 años, diente por caer +3377 2025-11-22 01:25:32.093433+00 2025-11-22 01:25:32.093446+00 f t \N 42 42 Perro 12 años comezon +3378 2025-11-22 01:25:32.100714+00 2025-11-22 01:25:32.100727+00 f t \N 41 41 Vacunación, desparasitación y certificado de salud por viaje a Mendoza x 2 mascotas +3379 2025-11-22 01:25:32.105994+00 2025-11-22 01:25:32.106006+00 f t \N 40 40 Ecografía +3380 2025-11-22 01:25:32.110543+00 2025-11-22 01:25:32.110551+00 f t \N 300 344 Gato que vomita la comida +3381 2025-11-22 01:25:32.115495+00 2025-11-22 01:25:32.115503+00 f t \N 38 39 Vacunación anual 2 perros yorkis +3382 2025-11-22 01:25:32.120591+00 2025-11-22 01:25:32.120603+00 f t \N 37 38 Gato con salivación excesiva +3383 2025-11-22 01:25:32.126669+00 2025-11-22 01:25:32.126681+00 f t \N 299 343 Urgencia: Cambio de suero, administración de medicación +3384 2025-11-22 01:25:32.132818+00 2025-11-22 01:25:32.13283+00 f t \N 299 342 Urgencia: Cambio de suero , administración de medicación +3385 2025-11-22 01:25:32.138872+00 2025-11-22 01:25:32.138883+00 f t \N 36 37 Vacunación gato + certificado vacuna antirrábica +3386 2025-11-22 01:25:32.144907+00 2025-11-22 01:25:32.144919+00 f t \N 34 35 Vacunación gato recién adoptado +3387 2025-11-22 01:25:32.150675+00 2025-11-22 01:25:32.150686+00 f t \N 35 36 Gato vomitando +3388 2025-11-22 01:25:32.156381+00 2025-11-22 01:25:32.156393+00 f t \N 33 34 Perro con convulsiones +3389 2025-11-22 01:25:32.162231+00 2025-11-22 01:25:32.162242+00 f t \N 32 33 Gato decaído, no come +3390 2025-11-22 01:25:32.168322+00 2025-11-22 01:25:32.168333+00 f t \N 30 31 Consulta con turno programado +3391 2025-11-22 01:25:32.174205+00 2025-11-22 01:25:32.174217+00 f t \N 31 32 Gato +3392 2025-11-22 01:25:32.18071+00 2025-11-22 01:25:32.180723+00 f t \N 29 30 Certificado de viaje y desparacitacion +3393 2025-11-22 01:25:32.187343+00 2025-11-22 01:25:32.187355+00 f t \N 28 29 nan +3394 2025-11-22 01:25:32.193322+00 2025-11-22 01:25:32.193333+00 f t \N 27 28 Visita con turno programado. +3395 2025-11-22 01:25:32.199552+00 2025-11-22 01:25:32.199562+00 f t \N 26 27 Visita con turno programado +3396 2025-11-22 01:25:32.204659+00 2025-11-22 01:25:32.20467+00 f t \N 25 26 Telemedicina +3397 2025-11-22 01:25:32.210561+00 2025-11-22 01:25:32.210572+00 f t \N 24 25 Rx +3398 2025-11-22 01:25:32.215986+00 2025-11-22 01:25:32.215995+00 f t \N 23 24 Clínica +3399 2025-11-22 01:25:32.221273+00 2025-11-22 01:25:32.221286+00 f t \N 307 350 Vacunación +3400 2025-11-22 01:25:32.226962+00 2025-11-22 01:25:32.226973+00 f t \N 22 23 Vacunación +3401 2025-11-22 01:25:32.232954+00 2025-11-22 01:25:32.232965+00 f t \N 21 22 Gato 12 años vacunación +3402 2025-11-22 01:25:32.238713+00 2025-11-22 01:25:32.238725+00 f t \N 20 21 Vacunación +3403 2025-11-22 01:25:32.244794+00 2025-11-22 01:25:32.244806+00 f t \N 19 20 nan +3404 2025-11-22 01:25:32.25036+00 2025-11-22 01:25:32.250371+00 f t \N 18 19 Vacunación +3405 2025-11-22 01:25:32.256052+00 2025-11-22 01:25:32.256063+00 f t \N 17 18 Telemedicina +3406 2025-11-22 01:25:32.261853+00 2025-11-22 01:25:32.261864+00 f t \N 16 17 Visita con turno programado +3407 2025-11-22 01:25:32.267063+00 2025-11-22 01:25:32.26707+00 f t \N 15 16 Vacunación +3408 2025-11-22 01:25:32.272141+00 2025-11-22 01:25:32.272149+00 f t \N 14 15 Clínica +3409 2025-11-22 01:25:32.276749+00 2025-11-22 01:25:32.276758+00 f t \N 13 14 Vacunación +3410 2025-11-22 01:25:32.281439+00 2025-11-22 01:25:32.281447+00 f t \N 12 13 clinica +3411 2025-11-22 01:25:32.286546+00 2025-11-22 01:25:32.286555+00 f t \N 11 12 Clínica +3412 2025-11-22 01:25:32.291122+00 2025-11-22 01:25:32.29115+00 f t \N 6 11 Oftalmología +3413 2025-11-22 01:25:32.296068+00 2025-11-22 01:25:32.296076+00 f t \N 507 605 Desorientacion +3414 2025-11-22 01:25:32.300489+00 2025-11-22 01:25:32.300497+00 f t \N 10 10 vacunacion +3415 2025-11-22 01:25:32.304913+00 2025-11-22 01:25:32.30492+00 f t \N 9 9 Teleconsulta +3416 2025-11-22 01:25:32.309113+00 2025-11-22 01:25:32.30912+00 f t \N 8 8 vacunacion +3417 2025-11-22 01:25:32.313374+00 2025-11-22 01:25:32.313381+00 f t \N 7 7 Clínica +3418 2025-11-22 01:25:32.317463+00 2025-11-22 01:25:32.31747+00 f t \N 115 351 Vacunación x2 +3419 2025-11-22 01:25:32.321689+00 2025-11-22 01:25:32.321696+00 f t \N 6 6 Oftalmología +3420 2025-11-22 01:25:32.326079+00 2025-11-22 01:25:32.326085+00 f t \N 5 5 Dermatología +3421 2025-11-22 01:25:32.330341+00 2025-11-22 01:25:32.330348+00 f t \N 3 3 Vacunación +3422 2025-11-22 01:25:32.334714+00 2025-11-22 01:25:32.334721+00 f t \N 2 2 Visita con turno programado +3423 2025-11-22 01:25:32.338828+00 2025-11-22 01:25:32.338835+00 f t \N 1 1 Vacunación +3424 2025-11-22 01:25:32.343221+00 2025-11-22 01:25:32.343227+00 f t \N 6837 2466 Urgencia por dolores de cadera y paralisis +3425 2025-11-22 01:25:32.347577+00 2025-11-22 01:25:32.347583+00 f t \N 329 369 Clinica +3426 2025-11-22 01:25:32.351739+00 2025-11-22 01:25:32.351746+00 f t \N 266 306 Inmovilidad en patas traseras +3427 2025-11-22 01:25:32.35573+00 2025-11-22 01:25:32.355737+00 f t \N 202 227 Control y Vacunación +3428 2025-11-22 16:15:32.253425+00 2025-11-22 16:15:32.253434+00 f t \N 11649 3362 Es una gata de interior, queremos chequear su estado de salud porque muy pronto tendremos un BB +3429 2025-11-22 16:22:57.113121+00 2025-11-22 16:22:57.113129+00 f t \N 11674 3363 Hace pis en el sillón cuando siempre hizo en su caja y ayer encontré un poquito de sangre en la arena +3430 2025-11-22 18:31:50.764723+00 2025-11-22 18:31:50.764733+00 f t \N 11596 3364 Verruga en el cuello, sufrio algun tipo de herida y florecio con secreciones leves +3431 2025-11-22 19:24:54.05774+00 2025-11-22 19:24:54.05775+00 f t \N 11687 3365 Se un poco más delgada la zona de la cadera y un leve caminar extraño. +3432 2025-11-23 16:44:03.850024+00 2025-11-23 16:44:03.850033+00 f t \N 11729 3366 El gato presenta una pequeña herida en el labio superior derecho. Es una herida rosada, que no sangra y que mostrou una pequeña evolución desde que fue observada hace dos o tres semanas. +3433 2025-11-23 18:37:43.849404+00 2025-11-23 18:37:43.849416+00 f t \N 8096 3367 Consulta cardiologica y toma de presion +3434 2025-11-23 19:22:09.211206+00 2025-11-23 19:22:09.211216+00 f t \N 11585 3368 3 vacunas anuales felinos\n3 desparasitaciones int+ext 6kg, 4kg, 8 kg\nDisponibilidad Miércoles y viernes de 9 a 11hs +3435 2025-11-23 19:22:09.21409+00 2025-11-23 19:22:09.214098+00 f t \N 11586 3368 3 vacunas anuales felinos\n3 desparasitaciones int+ext 6kg, 4kg, 8 kg\nDisponibilidad Miércoles y viernes de 9 a 11hs +3436 2025-11-24 17:49:43.832909+00 2025-11-24 17:49:43.832917+00 f t \N 11833 3369 Vacunacion anual +3437 2025-11-24 22:19:14.286664+00 2025-11-24 22:19:14.286679+00 f t \N 11121 3370 Teleconsulta post estudios +3438 2025-11-24 22:40:15.419372+00 2025-11-24 22:40:15.419385+00 f t \N 11678 3371 Vacunacion anual +3439 2025-11-24 22:49:55.77666+00 2025-11-24 22:49:55.776671+00 f t \N 11869 3372 Vacunacion anual +3440 2025-11-24 23:00:50.852923+00 2025-11-24 23:00:50.852932+00 f t \N 764 3373 vacunacion anual +3441 2025-11-25 02:44:25.176687+00 2025-11-25 02:44:25.176698+00 f t \N 11794 3374 Tengo un gato con FIV que vomito 3 veces la ultima semana, la ultima anoche. Dejó de comer balanceado seco, esta comiendo comida casera húmeda pero creo que esta bajando de peso y no se si está bien hidratado. \nNo fue posible meterlo en la transportadora para llevarlo al vet,es un gato rescatado. +3442 2025-11-25 13:36:26.388609+00 2025-11-25 13:36:26.388623+00 f t \N 11914 3375 Ver su estado general +3443 2025-11-25 14:39:14.282572+00 2025-11-25 14:39:14.282585+00 f t \N 11939 3376 Vacunacion anual y desparasitacion int+ext 4kg +3444 2025-11-25 14:40:30.667045+00 2025-11-25 14:40:30.667055+00 f t \N 328 3377 Vomito 3 veces hoy (2 fueron líquido sin pelos ni plantas? E hizo caca fuera de su arenero 3 veces +3445 2025-11-25 14:49:37.569512+00 2025-11-25 14:49:37.569519+00 f t \N 11935 3378 estaba indispuesta, y hace unos tres dias esta con mucha perdida, pero ayer no quiso comer, y eso nos esta preocupando, si toma mucha agua, la tocamos y no se queja de ningun dolor +3446 2025-11-25 15:46:21.69689+00 2025-11-25 15:46:21.696898+00 f t \N 11942 3379 desde ayer a la tarde está con problemas de constipacion\nY está con vómitos\nSolo toma agua y como ya le dio una vez le di por recomendación de otra colega Lactulon eso la tranquilizó\nPero recién le di y lo vomitó +3447 2025-11-25 16:12:48.656011+00 2025-11-25 16:12:48.656021+00 f t \N 467 3380 Desde el 30/7 tiene vomitos esporádicos. Se realizó tratamiento con antiemeticos, antiácidos.\nTiene 3 ecografias con muestra de gastritis pero aún con vómitos.\nEn los últimos días más seguidos +3448 2025-11-25 16:48:51.588714+00 2025-11-25 16:48:51.588727+00 f t \N 11936 3381 consulta general y extraccion de sangre para control +3449 2025-11-25 17:03:22.581432+00 2025-11-25 17:03:22.58144+00 f t \N 11959 3382 13 años no come no hace pis ahora hizo 24hr. Letargo no quiere caminar. +3450 2025-11-25 17:15:47.225218+00 2025-11-25 17:15:47.225228+00 f t \N 10612 3383 extraccion de sangre perfil 7 +3452 2025-11-25 19:01:15.74767+00 2025-11-25 19:01:15.747683+00 f t \N 11963 3385 Esta muy debil, hace dias no come, no toma, casi no camina, pasa por mucho dolor, no tiene fiebre. +3453 2025-11-25 19:45:57.90283+00 2025-11-25 19:45:57.902837+00 f t \N 10572 3386 No puede caminar +3454 2025-11-25 21:08:30.498668+00 2025-11-25 21:08:30.498681+00 f t \N 11963 3387 Extraccion para perfil 7 +3455 2025-11-25 21:20:58.693846+00 2025-11-25 21:20:58.693854+00 f t \N 11957 3388 vacunacion anual para los dos +3456 2025-11-25 21:20:58.696061+00 2025-11-25 21:20:58.696068+00 f t \N 11958 3388 vacunacion anual para los dos +3457 2025-11-25 21:24:04.450063+00 2025-11-25 21:24:04.450073+00 f t \N 9637 3389 Teleconsulta post estudios +3458 2025-11-26 00:23:37.701474+00 2025-11-26 00:23:37.701489+00 f t \N 8460 3390 Toma de muestra +\. + + +-- +-- Data for Name: mascotas_vetvisitreport; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.mascotas_vetvisitreport (id, created_at, updated_at, deleted, active, diagnosis, recommendation, treatment, physical_exam, observations, next_visit_date, owner_id, pet_id, user_id, vet_id, visit_id, aditional_fields) FROM stdin; +317 2025-01-21 18:15:32.069429+00 2025-01-21 18:15:32.069435+00 f t Problemas recurrentes en los sacos anales, descartando cirugía debido a los riesgos de incontinencia y complicaciones en la cicatrización. Continuar con controles mensuales y evaluar la respuesta al tratamiento, manteniendo comunicación clara con la propietaria para evitar malentendidos. Seguir el tratamiento médico prescrito y realizar controles mensuales para asegurar que los sacos anales se vacíen correctamente. Pancha presentó problemas con los sacos anales, ya drenados correctamente. Se encuentra bajo tratamiento médico. La propietaria de Pancha tiene diagnóstico de bipolaridad, lo que requiere mantener una comunicación clara y cuidadosa, ya que su comportamiento puede ser impredecible. \N 123 128 114 1 136 \N +340 2025-01-22 20:06:30.023798+00 2025-01-22 20:06:30.023806+00 f t La perrita presenta problemas de comportamiento relacionados con su hiperactividad, lo que dificulta el manejo por parte de los propietarios. Sin embargo, no se observan problemas de salud. Se recomienda trabajar en el manejo de su comportamiento, posiblemente con la ayuda de un profesional en adiestramiento canino, para corregir los problemas de comportamiento y lograr una mejor relación con los propietarios. Se administraron las vacunas séptuple y antirrábica sin complicaciones. La perrita es una labrador de 1 año y 4 o 5 meses. Durante el examen físico, no se encontraron particularidades ni signos de enfermedad. Fue vacunada con la séptuple y antirrábica sin inconvenientes. \N 330 393 114 1 433 \N +362 2025-01-28 14:06:45.246456+00 2025-01-28 14:06:45.246463+00 f t Estado de salud normal, apto para vacunación. Continuar con el esquema anual de vacunación y desparasitación. Realizar controles veterinarios periódicos para seguimiento de salud general. Se administraron las siguientes vacunas:\r\n\r\nTriple felina.\r\nAntirrábica Tita, una gata Común Europeo hembra de 9 años, de color marrón y negro, presentó un examen orgánico general sin particularidades:\r\n\r\nSensorio normal.\r\nGanglios, piel, ojos y cavidad bucal sin alteraciones visibles.\r\nApetito, micción y defecación normales.\r\nPalpación abdominal sin hallazgos.\r\nAuscultación cardíaca y pulmonar sin particularidades. \N 356 421 114 70 469 \N +384 2025-01-29 20:51:29.410724+00 2025-01-29 20:51:29.410731+00 f t Obstipación persistente con leve mejoría clínica. Dermatitis perineal en resolución Secar el periné tras cada micción y aplicar Dermomax. Continuar con dieta RC Gastrointestinal Fibre. Se extiende orden para ecografía abdominal y perineal. Pronóstico reservado. Se realiza toilette del periné en tres etapas. Se administra Meloxivet (0.5 mg), Novotioc y Ranitidina. Se administra por vía oral ½ comprimido de enrofloxacina (50 mg) y una medida chica de Colotrin en pasta, a continuar cada 24 h. Paciente alerta, hidratada y con obesidad marcada. Dolor abdominal disminuido en comparación con el día anterior. Continúa con dolor al levantar la cola, pero menos molestias al moverla lateralmente. Se observa periné mojado tras la micción, con menor mal olor. \N 373 438 114 77 497 \N +406 2025-02-07 23:01:19.575552+00 2025-02-07 23:01:19.575563+00 f t Dx presuntivo: Toxoplasmosis Recomiendo esperar unos días para ver evolución y realizar el tratamiento correspondiente. La propietaria muestra un vídeo con la gata moviendo la cabeza aparentando enfermedad neurológica. Toxoplasmosis? VIF/VILEF? elino, Común Europeo, hembra, 3 años, blanco, marrón y negro. EOG correcto. Sensorio normal. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito disminuído, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar sin particularidades. \N 411 490 113 70 578 \N +448 2025-02-12 13:29:34.548059+00 2025-02-12 13:29:34.548069+00 f t Presunción de hemobartonelosis subclínica\r\nSupuesta hipertermia (sin confirmación en la consulta) Monitorizar el estado general y el apetito en los próximos días.\r\nEvaluar temperatura en caso de persistir signos clínicos.\r\nControl y reevaluación según evolución del cuadro. Triobiotic: 0,5 ml SC\r\nEnrofloxacina: 0,2 ml SC Especie: Felino\r\nRaza: Siamés (Blue Point)\r\nSexo: Macho castrado\r\nEdad: 3 años\r\nExamen orgánico general (EOG): Correcto\r\nSensorio levemente deprimido\r\nApetito disminuido, pero micción y defecación normales\r\nGanglios, piel, ojos y cavidad bucal sin alteraciones\r\nPalpación abdominal sin hallazgos\r\nAuscultación cardíaca y pulmonar sin particularidades \N 431 511 114 70 609 \N +513 2025-03-10 02:17:21.392363+00 2025-03-10 02:17:21.392376+00 f t Hematoma-Traumatismo/Neoplasia Se recomendó realizar un estudio cardiológico debido a la edad del paciente (y para descartar problemas circulatorios) y una radiografía del MPI. \nA espera de los resultados de los estudios para evaluar cómo continuar con el tratamiento.\nSe habló con el tutor de los posibles dx diferenciales pudiendo ser los mismos. \n-Traumatismo/hematoma\n-Neoplasia\n-Problemas circulatorios Edit: Furosemida inyectable.\nSe recetó Prednisol - gotas para un tratamiento PO de corticoide de 8 días a dosis decreciente. EOG S/P\nEOP Edema en MPI distal. Presencia de una deformación en más en proximal del miembro. Presentó molestia a la palpación-presión. \N \N 503 595 \N 89 773 {"studies": ["3", "12", "2"], "medications": [{"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "704", "next_application_months": 0}, {"id_medicina": "777", "next_application_months": 0}], "specialities": ["8", "6"]} +470 2025-02-26 14:29:29.300274+00 2025-02-26 14:29:29.300285+00 t t Diagnóstico presuntivo Interconsulta cardiológica por arritmia Sin tratamiento Anamnesis \N \N 499 590 \N 70 722 {"studies": ["3", "12"], "medications": [{"id_medicina": "1155", "next_application_months": 2}, {"id_medicina": "1180", "next_application_months": 12}], "specialities": ["8"]} +492 2025-02-26 21:04:09.814767+00 2025-02-26 21:04:09.814778+00 f t Estado crítico con sospecha de masa en un lóbulo pulmonar, efusión pleural, renomegalia derecha marcada y alteraciones en hígado y bazo. Alto riesgo de complicaciones respiratorias. Se explicó a las tutoras que el estado del animal es muy crítico y que las probabilidades de complicaciones respiratorias son altas. Aunque las tutoras preferían que el gato se “quedara dormido tranquilo” sin tomar la decisión de la eutanasia, se aclaró que no había certeza de cómo evolucionaría. Se les recomendó continuar con la medicación y el suero para ver si había alguna mejoría, pero se les advirtió sobre los riesgos de insuficiencia respiratoria. Ringer lactato subcutáneo para rehidratar al paciente.\nRanitidina Novotioc para tratar posibles úlceras gástricas.\nDexametasona 0.3 mg/kg para controlar la inflamación.\nTramadol 1 mg/kg para el manejo del dolor. Estado general: Deprimido, en decúbito lateral, temperatura de 36.4°C, deshidratación del 7-8%. \N \N 450 533 \N 88 652 {"studies": [], "medications": [], "specialities": []} +563 2025-03-24 21:35:48.578892+00 2025-03-24 21:35:48.578903+00 f t Diabacteriosis y colitis Transicion previo nuevo balanceado. Dieta y ayuno Llegó hace un par de días de España, cambió en la dieta. A demás del viaje. \nCólicos y dolor abdominal. Norma termina y conserva el apetito. Suele tener sensibilidad dietaría. \N \N 588 689 \N 68 859 {"studies": [], "medications": [{"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "702", "next_application_months": 0}], "specialities": []} +318 2025-01-21 18:50:27.227624+00 2025-01-21 18:50:27.227634+00 f t Problema recurrente de sacos anales y sospecha de hipotiroidismo Coordinar la interconsulta con un endocrinólogo para confirmar y tratar el hipotiroidismo, además de realizar el monitoreo mensual del vaciamiento de los sacos anales Se explicó el cuadro de hipotiroidismo a la propietaria y se indicó realizar una interconsulta con un endocrinólogo. Continuar el tratamiento médico para los sacos anales con controles \N 162 171 114 1 189 \N +341 2025-01-22 20:10:58.898371+00 2025-01-22 20:10:58.898379+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 344 406 114 74 446 \N +363 2025-01-28 14:09:47.702422+00 2025-01-28 14:09:47.70243+00 f t Estado de salud normal, apto para vacunación Mantener el esquema anual de vacunación y desparasitación. Realizar chequeos veterinarios regulares para garantizar una salud óptima. Se administraron las siguientes vacunas:\r\n\r\nTriple felina.\r\nAntirrábica. Coco, un gato Común Europeo macho de 3 años, de color blanco, presentó un examen orgánico general sin particularidades:\r\n\r\nSensorio normal.\r\nGanglios, piel, ojos y cavidad bucal sin alteraciones visibles.\r\nApetito, micción y defecación normales.\r\nPalpación abdominal sin hallazgos.\r\nAuscultación cardíaca y pulmonar sin particularidades. \N 356 419 114 70 467 \N +385 2025-01-29 20:59:00.735847+00 2025-01-29 20:59:00.735858+00 f t Falla renal crónica con anemia y azotemia. Pronóstico reservado. Si hay deterioro, se considerará la opción de no continuar con el tratamiento. Se mantiene con vitaminas, antibiótico y fluidoterapia en casa. Paciente con diagnóstico de insuficiencia renal, anemia y azotemia. Ha comenzado a comer. \N 364 429 114 68 502 \N +407 2025-02-07 23:04:17.455729+00 2025-02-07 23:04:17.455735+00 f t Dx presuntivo: Melanoma Explico que primero hay que evaluar clinicamente, dejo ordenes para analisis de sangre y ecografia abdominal Rp baños con clorhexidina, ciprovet 1 gota en cada ojo x dia, tonico total 2.5ml de cada frasco x dia. paciente con cuadro de unos meses de evolución. La anamnesis es algo confusa. Hace 1 semana empeoró, pero estuvo en tto por 1 mes con Dermil 1 comp x día, aparentemente el cuadro inició hace 3 meses. \r\n\r\nPresenta lesiones papulocostrosas, no ulcerativas periocular, puente nasal, dorso, lomo flancos. Inflamacion palpebral y dentro de narina derecha.\r\nPrurito asociado y excoriaciones x rascado.\r\nClinicamennte esta estable pero con cuadro de diarrea hace 6 meses y adelgazamiento.\r\nTomo muestras para citología de lesiones debajo de costras de cara int de pabellones y periocular \N 412 491 113 75 580 \N +421 2025-02-10 18:26:41.376082+00 2025-02-10 18:26:41.376089+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 409 488 114 78 573 \N +426 2025-02-11 16:27:36.154707+00 2025-02-11 16:27:36.154715+00 f t Ulceraciones indolentes en escápula y rodilla derechas.\r\nPostración y disminución del sensorio.\r\nPérdida de peso. Se recomienda continuar con los vendajes y el tratamiento antibiótico indicado. Se sugiere monitorear su evolución y acudir a control si hay cambios en su estado general o en la evolución de las heridas. Se realizaron vendajes con azúcar, con indicación de agregar azúcar diariamente.\r\nSe aplicó Tribiotic en las lesiones.\r\nSe indicó Cefalexina 500 mg, ¾ comprimido cada 12 horas por 15 días. Negro presenta postración y sensorio disminuido. Se observa pérdida de peso. Los ganglios no presentan alteraciones. La cavidad bucal, la palpación abdominal y la auscultación cardíaca y pulmonar son normales. Presenta ulceraciones indolentes en la escápula y la rodilla derechas. \N 359 424 114 70 586 \N +449 2025-02-12 13:40:15.689286+00 2025-02-12 13:40:15.689298+00 f t Gastritis (por vómitos recurrentes y cada vez más frecuentes) Monitorizar la frecuencia de los vómitos y evaluar si hay mejoría con el tratamiento.\r\nSi persisten los vómitos, evaluar estudios complementarios (ecografía, análisis de sangre).\r\nCepillado frecuente para reducir la ingesta de pelo. Ranitidina 20 mg: ½ comprimido cada 12 horas\r\nFelilax: Para favorecer la eliminación de bolas de pelo Especie: Felino\r\nRaza: Mestizo Persa\r\nSexo: Hembra castrada\r\nColor: Marrón\r\nExamen orgánico general (EOG): Correcto\r\nSensorio normal\r\nGanglios, piel, ojos y cavidad bucal sin alteraciones\r\nApetito, micción y defecación normales\r\nPalpación abdominal sin hallazgos\r\nAuscultación cardíaca y pulmonar sin particularidades \N 430 510 114 70 608 \N +471 2025-02-26 16:03:05.067737+00 2025-02-26 16:03:05.067746+00 f t AAA AAA AAA AAA \N \N 501 592 \N 70 724 {"studies": ["3"], "medications": [{"id_medicina": "1155", "next_application_months": 12}, {"id_medicina": "1159", "next_application_months": 0}], "specialities": ["8"]} +493 2025-02-28 15:58:23.192421+00 2025-02-28 15:58:23.192436+00 f t Infección bacteriana, micosis? De ser necesario se sugiere punción y posterior envío a laboratorio Spectril 20 Canino macho entero de aproximadamente kg de peso, Eog: linfonodulos mandibulares infartados, resto s/p. Buen estado de salud general,\nSugiero tratamiento antibiótico de amplio espectro inyectable u orales, prefieren orales. Indicó Spectril 20, 1 y 1/2 comprimidos x 10 días, control en 1 semana. \N \N 478 566 \N 21 692 {"studies": [], "medications": [], "specialities": []} +514 2025-03-10 02:20:32.608836+00 2025-03-10 02:20:32.608847+00 f t Vacunación anual El paciente no presentaba historial de vacunación en los últimos 3 años, contando solamente con una dosis a los 4/5 meses de edad.Se recomendó aplicar una segunda dosis de Vacuna Triple Felina como refuerzo. - EOP S/P\nSe aplicó Vacuna Triple Felina y Antirrábica. \N \N 542 639 \N 89 783 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 3}, {"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +531 2025-03-12 00:33:09.793398+00 2025-03-12 00:33:09.79341+00 f t C: Estado cardiovascular actualmente compensado.\nRx: MPI - deformación en más del tejido blando sugerente de inflamación o edema. Monitorear a Alú diariamente. Volver a comunicarse frente a cualquier cambio comportamental o físico. \nSe habló la posibilidad de hacer una PAAF en caso de volver a aparecer la deformación en más. Continúa con Prednisol hasta cumplir los 8 días de tto. Telemedicina.\nSe evaluaron los resultados de la Rx y el estudio cardiológico. \nEl tutor refiere que la inflamación del MPI disminuyó por completo. \N \N 503 595 \N 89 811 {"studies": [], "medications": [], "specialities": []} +32 2024-10-30 14:13:09.117+00 2024-10-30 14:13:09.117+00 f t Cliente abonó 100% \N 79 81 \N 1 97 \N +319 2025-01-21 18:58:02.314389+00 2025-01-21 18:58:02.314396+00 f t Inicio de un episodio de Síndrome Urológico Felino (FUS), con antecedentes de episodios previos. Reemplazar la dieta actual por una específica para gatos con problemas urinarios. Recoger y enviar la muestra de orina para análisis tan pronto como sea posible. Continuar monitoreando su comportamiento y estado general, y reportar cualquier cambio a la clínica. Se aplicaron Meloxicam, Dipirona y Tramadol para manejo del dolor e inflamación. Se indicó el cambio de alimento a una dieta urinaria y la recolección de una muestra de orina para análisis. El gato presentaba vejiga vacía al momento de la revisación, sin otros hallazgos anormales. Milo es un gato de 5 años con un historial de FUS y un temperamento agresivo. A pesar de esto, se encontraba de buen ánimo durante la consulta, sin signos de depresión. \N 165 174 114 1 192 \N +342 2025-01-22 20:13:11.705843+00 2025-01-22 20:13:11.70585+00 f t La herida está evolucionando de forma favorable, con cierre parcial y sin complicaciones. La abertura restante es mínima y no presenta signos de infección. Es importante mantener la herida protegida y evitar que el animal se lama o toque la zona. Asegurarse de que la herida se mantenga limpia hasta la retirada final del isabelino. Realizar un seguimiento de la cicatrización y, si aparece alguna señal de infección o complicaciones, acudir a consulta. No es necesario realizar más intervenciones en este momento, solo continuar observando la herida y mantenerla limpia. El viernes se retirará la bata protectora y el próximo martes se quitará el isabelino, lo que permitirá un mayor acceso para la cicatrización sin barreras. Se ha retirado el vendaje de la herida, observando una pequeña abertura en el punto donde se realizó la incisión, sin signos de infección ni complicaciones evidentes. La herida ha cerrado adecuadamente, pero aún queda esta pequeña abertura que se espera cicatrice completamente en los próximos días. \N 340 403 114 68 450 \N +364 2025-01-28 14:11:18.994782+00 2025-01-28 14:11:18.994788+00 f t Estado de salud normal, apta para vacunación. Continuar con el esquema anual de vacunación y desparasitación. Realizar controles veterinarios periódicos para seguimiento de su salud general. Se administraron las siguientes vacunas:\r\n\r\nTriple felina.\r\nAntirrábica. Menta, una gata Común Europeo hembra de 3 años, de color blanco, presentó un examen orgánico general sin particularidades:\r\n\r\nSensorio normal.\r\nGanglios, piel, ojos y cavidad bucal sin alteraciones visibles.\r\nApetito, micción y defecación normales.\r\nPalpación abdominal sin hallazgos.\r\nAuscultación cardíaca y pulmonar sin particularidades. \N 356 420 114 70 468 \N +386 2025-01-30 23:18:05.418464+00 2025-01-30 23:18:05.418471+00 f t Presenta bichera en región inguinal izq, punta del prepucio y 4to dedo MAD. El dedo presenta una tumoración que lo abarca en forma completa Charly: Control de 24 hs. Extraigo larvas muertas, realizo nuevo vendaje y recomiendo extracción quirúrgica del dedo Rp/ aplico 2 ml Triobiotic + ivomec 1,3 ML + curabichera en zonas comprometidas + vendaje con azúcar en el dedo canino, ov alemán, negro y marrón 12 años. Consulta por inflamación zona genital. EOG: postración, sensorio disminuído; ganglios y cavidad bucal sin particularidades. Palpación abdominal y de columna: sin particularidades. Auscultación cardíaca y pulmonar: sin particularidades. \N 380 450 113 70 510 \N +494 2025-02-28 16:05:24.023181+00 2025-02-28 16:05:24.023194+00 f t Parasitosis Alimentación natural.\nComenzar con plan sanitario de vacunas en 1 semana Triplex comprimidos Canino mestizo hembra de aprox 5, 6 meses, en el domicilio hace 24hs, solo le indicaron control de ectoparasitos... Eog normal, buen estado gral y buen ánimo, sin signos de enfermedades infectocontagiosas. \N \N 465 552 \N 21 674 {"studies": [], "medications": [], "specialities": []} +408 2025-02-10 12:30:02.405724+00 2025-02-10 12:30:02.405734+00 t t PRUEBA \N 266 335 110 76 615 \N +422 2025-02-10 18:41:37.87734+00 2025-02-10 18:41:37.877348+00 f t Historia de vómitos y diarreas previas.\r\nSospecha de prostatomegalia.\r\nPresencia de ectoparásitos (pulgas).\r\nTaquipnea con posible compromiso pulmonar. Se recomienda realizar los estudios previos a la castración para evaluar riesgos quirúrgicos. Además, se sugiere continuar con el control clínico debido a la sospecha de prostatomegalia y la dificultad respiratoria observada. También se aconseja el manejo adecuado de ectoparásitos y el monitoreo de la respuesta a la desparasitación. Se administraron vacunas séxtuple y antirrábica. Se indicó desparasitación y se explicó que, a diferencia de lo informado previamente, el paciente es apto para castración, siguiendo los estudios prequirúrgicos necesarios (consulta cardiológica, ecografía abdominal y análisis de sangre). El paciente presenta mucosas rosadas y taquipnea, lo que dificulta la auscultación. Se detecta una leve disminución de los sonidos en el hemitórax derecho. Además, muestra menor agilidad para subir escaleras y un mayor tiempo de recuperación post paseos. Se observan signos de urticaria en el mentón, presencia de pulgas y exposición del pene. \N 383 454 114 68 518 \N +33 2024-10-30 14:13:09.132+00 2024-10-30 14:13:09.132+00 f t \N 91 4 \N 1 98 \N +427 2025-02-11 16:41:13.636376+00 2025-02-11 16:41:13.636386+00 f t Estreñimiento severo.\r\nVómitos y anorexia de tres días de evolución.\r\nSospecha de deshidratación. Se recomendó llevar al gatito a una guardia veterinaria para realizar una revisión clínica completa, evaluar su estado de hidratación y definir el mejor abordaje terapéutico. Dado el cuadro clínico y la evolución de los síntomas, se informó a la propietaria sobre la gravedad de la situación y la necesidad de una evaluación médica urgente. No se realizó examen físico directo en consulta, pero según lo informado por la propietaria, el gatito presentaba dificultad para defecar desde hace cinco días, además de vómitos y falta de apetito desde hace tres días, lo que sugiere un posible cuadro de deshidratación. \N 415 494 114 1 582 \N +450 2025-02-12 13:56:05.239147+00 2025-02-12 13:56:05.239155+00 f t Paciente sano, en control de rutina Próxima vacunación según calendario\r\nMonitorear posibles reacciones postvacunales (letargo, fiebre, inflamación en el sitio de aplicación)\r\nMantener plan de desparasitación y control veterinario anual Vacuna Séxtuple con Corona aplicada Especie: Canino\r\nRaza: Dachshund\r\nSexo: Macho\r\nColor: Marrón\r\nFecha de nacimiento: 12/2025\r\nExamen orgánico general (EOG): Correcto\r\nSensorio normal\r\nGanglios, piel, ojos y cavidad bucal sin alteraciones\r\nApetito, micción y defecación normales\r\nPalpación abdominal sin hallazgos\r\nAuscultación cardíaca y pulmonar sin particularidades \N 437 517 114 70 617 \N +472 2025-02-26 17:47:59.981038+00 2025-02-26 17:47:59.981048+00 t t AAA AAA AAA AAA \N \N 506 598 \N 70 731 {"studies": ["3"], "medications": [{"id_medicina": "1155", "next_application_months": 2}], "specialities": ["8"]} +532 2025-03-12 18:51:05.446906+00 2025-03-12 18:51:05.446916+00 f t Control de presión pre quirúrgico. Riesgo leve. Mediciones en reposo, con paciente calmo.\nPAM= en parámetros normales.\nDiastólica en sus rangos superiores asociado a sobrepeso; pero que promedia con la sístolica una presión media normal. Felino con herpes virus.\nSobrepeso aunq comenta descenso en el último tiempo. \N \N 425 505 \N 68 808 {"studies": [], "medications": [], "specialities": []} +1503 2025-08-19 16:43:40.578541+00 2025-08-19 16:43:40.57855+00 f t . . . . \N \N 6683 5452 \N 100 2133 \N +473 2025-02-26 17:56:42.512515+00 2025-02-26 17:56:42.512528+00 f t AAA AAA AAA AAA \N \N 489 578 \N 70 708 {"studies": ["3"], "medications": [{"id_medicina": "1155", "next_application_months": 2}], "specialities": ["8"]} +320 2025-01-21 19:02:01.466456+00 2025-01-21 19:02:01.46647+00 f t Se le realizó las extracciones correspondientes, para su análisis y posterior devolución \N 166 175 114 1 195 \N +343 2025-01-22 20:14:10.344089+00 2025-01-22 20:14:10.344097+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 318 380 114 1 419 \N +365 2025-01-28 14:13:30.848821+00 2025-01-28 14:13:30.848828+00 f t Estado de salud normal, apta para vacunación. Mantener el esquema anual de vacunación y desparasitación. Realizar chequeos regulares para asegurar una salud óptima. Se administraron las siguientes vacunas:\r\n\r\nTriple felina.\r\nAntirrábica. Nigiri, una gata Común Europeo hembra castrada de 7 años, de color marrón, negra y blanca, presentó un examen orgánico general sin particularidades:\r\n\r\nSensorio normal.\r\nGanglios, piel, ojos y cavidad bucal sin alteraciones visibles.\r\nApetito, sed, micción y defecación normales.\r\nPalpación abdominal sin hallazgos.\r\nAuscultación cardíaca y pulmonar sin particularidades. \N 350 411 114 70 452 \N +387 2025-02-03 13:48:03.341409+00 2025-02-03 13:48:03.341417+00 f t Paciente en buen estado general, sin signos clínicos de enfermedad. Control veterinario anual y mantener esquema de vacunación y desparasitación al día. Se administra vacunación triple felina y antirrábica. Gata Común Europeo, hembra, 4 años, blanco y marrón. Sensorio normal, EOG sin alteraciones. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito, micción y defecación normales. Palpación abdominal y auscultación cardíaca y pulmonar sin hallazgos. \N 393 467 114 70 541 \N +409 2025-02-10 13:49:37.069496+00 2025-02-10 13:49:37.069504+00 f t Sospecha de gastroenteritis infecciosa o parasitaria. Se recomienda realizar análisis de sangre para un perfil básico de control. Supervisar la evolución de los síntomas y mantener un control estricto de la alimentación. En caso de persistencia de la diarrea o agravamiento del cuadro, reevaluar. Se indica ayuno con reintroducción progresiva de una dieta casera basada en pollo y zanahoria. Control estricto de las ingestas. Se prescribe Metronidazol 250 mg, administrar ¼ de comprimido cada 12 horas durante 5 días, seguido de desparasitación. Se aplican Dexametasona y Tribiotic. Felino de 10 años con cuadro de diarrea verde de varios días de evolución. Presenta un episodio de vómito en el día de ayer. Se observa polidipsia y poliuria tras un cambio en la alimentación, la cual se ofrece ad libitum sin control de ración. En contacto con otro gato que presenta los mismos síntomas. \N 397 471 114 68 548 \N +423 2025-02-10 19:10:13.709517+00 2025-02-10 19:10:13.709844+00 f t Soplo cardíaco grado 1-2/6.\r\nSarro dental.\r\nAntecedente de alopecia psicogénica. Se recomienda control en dos semanas para evaluar respuesta al tratamiento con fluoxetina. Además, se sugiere realizar la consulta cardiológica para valorar el soplo y considerar la limpieza dental si es posible. Se indicó realizar un perfil prequirúrgico hemostático en caso de optar por la limpieza dental, o un perfil general básico si no se realiza la limpieza. Se dejó pendiente el peso exacto de la paciente para ajustar dosis si es necesario. Se suspende el uso de corticoides y se prescribe fluoxetina (comp. de 20 mg), comenzando con 2,5 mg diarios. Mina es una paciente que recibió su vacunación anual (triple felina y antirrábica). En la auscultación cardíaca se detecta un soplo grado 1-2/6, por lo que se indica una consulta cardiológica. Presenta sarro dental y se conversó sobre la necesidad de una limpieza dental. \N 394 468 114 80 543 \N +428 2025-02-11 16:49:47.056115+00 2025-02-11 16:49:47.056121+00 f t Examen clínico sin particularidades. Se recomienda continuar con los controles anuales y mantener al día el calendario de vacunación y desparasitación. Se realizó vacunación anual sin inconvenientes. El paciente no presenta alteraciones en el examen físico. No se observan anomalías torácicas ni abdominales. Auscultación cardíaca normal y aparato locomotor sin problemas. \N 398 472 114 74 550 \N +34 2024-10-30 14:13:09.153+00 2024-10-30 14:13:09.153+00 f t \N 93 97 \N 2 101 \N +451 2025-02-12 13:58:54.021059+00 2025-02-12 13:58:54.021065+00 f t Alopecia de posible origen endocrino Monitoreo de la evolución de la alopecia\r\nEvaluación endocrina si no hay mejoría con el tratamiento inicial\r\nControl veterinario en 15 días para ajuste de tratamiento si es necesario Singestar: ¼ comprimido por día durante 15 días Especie: Felino\r\nRaza: Común Europeo\r\nSexo: Hembra (castrada aparentemente)\r\nEdad: 4 años\r\nColor: Atigrado\r\nExamen orgánico general (EOG): Correcto\r\nSensorio normal\r\nGanglios, ojos y cavidad bucal sin alteraciones\r\nPresencia de alopecías en palmar de ambos miembros anteriores y en ingles\r\nApetito, micción y defecación normales\r\nPalpación abdominal sin hallazgos\r\nAuscultación cardíaca y pulmonar sin particularidades \N 433 513 114 70 611 \N +495 2025-02-28 16:52:20.789517+00 2025-02-28 16:52:20.789528+00 f t Quiste dérmico ulcerado\nDd/. Neoplasia ulcerada Escisión quirúrgica sino remite con tratamiento médico. Prednisolona 5mg cada 24hs durante 5 días y después 5 días más cada 48hs, completar en conjunto 10 días de Cefalexina. Hiperplasia ulcerada dérmica en cráneo dorsal. Lesion exudativa con varios días de evolución. Tratada por colega con Cefalexina y Curabicheras local. \N \N 488 577 \N 68 706 {"studies": [], "medications": [], "specialities": []} +515 2025-03-10 02:42:14.073762+00 2025-03-10 02:42:14.073777+00 f t Gastroenteritis El paciente no presentaba historial de vacunación en los últimos 3 años, contando solamente con una dosis a los 4/5 meses de edad.Se recomendó aplicar las vacunas anuales una vez que estuviera de alta y luego una segunda dosis de Vacuna Triple Felina como refuerzo. Ranitidina 2,5mg/kg\nMetoclopramida 0,5 mg/kg (Previamente se realizó una exhaustiva anamnesis para corroborar que no haya ingerido un cuerpo extraño)\nTramadol 1 mg/kg EOP S/P\nEOG Dolor abdominal moderado. El tutor refiere que vomitó 4 veces a lo largo del día. \N \N 542 638 \N 89 782 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "883", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +543 2025-03-18 19:16:50.242082+00 2025-03-18 19:16:50.242091+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal.\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N \N 461 547 \N 1 666 {"studies": [], "medications": [], "specialities": []} +90 2024-10-30 14:13:10.024+00 2024-10-30 14:13:10.024+00 f t Estado general acorde a su edad avanzada, sin hallazgos groseros o preocupantes en la revisión clínica. Coordinar la extracción de sangre con la plataforma, asegurando un ayuno previo adecuado. Continuar observando su comportamiento y alimentación, y realizar controles regulares para monitorear su estado de salud. Se indicó realizar un análisis de sangre con perfil general completo para evaluar su estado de salud en detalle. Felina hembra de 15-16 años, en buen estado general para su edad. Se encuentra tranquila, con rotación normal, sin dolor abdominal, y con apetito adecuado. No se observaron anomalías significativas durante la consulta. Los propietarios expresan preocupación porque duerme mucho y se mueve poco, aunque esto es esperable dado su edad. \N 166 175 114 1 193 \N +344 2025-01-22 20:15:13.479173+00 2025-01-22 20:15:13.479181+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 333 396 114 1 437 \N +366 2025-01-28 14:15:23.599814+00 2025-01-28 14:15:23.599821+00 f t Estado de salud normal, apto para vacunación. Continuar con el esquema anual de vacunación y desparasitación. Realizar controles veterinarios regulares para seguimiento de salud general. Se administraron las siguientes vacunas:\r\n\r\nTriple felina.\r\nAntirrábica. Kissy, un gato Común Europeo macho castrado de 1 año, de color gris, presentó un examen orgánico general sin particularidades:\r\n\r\nSensorio normal.\r\nGanglios, piel, ojos y cavidad bucal sin alteraciones visibles.\r\nApetito, sed, micción y defecación normales.\r\nPalpación abdominal sin hallazgos.\r\nAuscultación cardíaca y pulmonar sin particularidades. \N 358 423 114 70 471 \N +388 2025-02-03 14:10:22.149236+00 2025-02-03 14:10:22.149898+00 f t Paciente en buen estado general, con pequeña tumoración en el labio superior izquierdo. Monitorear la evolución de la tumoración y consultar si hay cambios en tamaño, color o textura. Mantener esquema de vacunación y desparasitación al día. Se administra vacunación triple felina y antirrábica. Se indica aplicación tópica de Pervinox en la tumoración, dos veces al día. Gata mestiza (Común Europeo y Persa), hembra, 3 años, color negro. Sensorio normal, EOG sin alteraciones. Ganglios, piel, ojos y cavidad bucal sin particularidades, excepto por una pequeña tumoración en el labio superior izquierdo. Apetito, micción y defecación normales. Palpación abdominal y auscultación cardíaca y pulmonar sin hallazgos. \N 392 466 114 70 538 \N +410 2025-02-10 13:56:20.854005+00 2025-02-10 13:56:20.854015+00 f t Sospecha de gastroenteritis infecciosa o parasitaria. Se recomienda realizar análisis de sangre para un perfil básico de control. Supervisar la evolución de los síntomas y mantener un control estricto de la alimentación. En caso de persistencia de la diarrea o agravamiento del cuadro, reevaluar. Se indica ayuno con reintroducción progresiva de una dieta casera basada en pollo y zanahoria. Control estricto de las ingestas. Se prescribe Metronidazol 250 mg, administrar ¼ de comprimido cada 12 horas durante 5 días, seguido de desparasitación. Se aplican Dexametasona y Tribiotic Felino de 10 años con cuadro de diarrea verde de varios días de evolución. Presenta un episodio de vómito en el día de ayer. Se observa polidipsia y poliuria tras un cambio en la alimentación, la cual se ofrece ad libitum sin control de ración. En contacto con otro gato que presenta los mismos síntomas. \N 397 471 114 68 549 \N +424 2025-02-10 19:22:49.646174+00 2025-02-10 19:22:49.646461+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 403 477 114 1 558 \N +429 2025-02-11 17:45:15.769158+00 2025-02-11 17:45:15.769167+00 f t Diarrea hemorrágica de causa no determinada.\r\nDolor abdominal leve.\r\nBorborigmos marcados. Se recomendó monitoreo de la evolución y acudir a consulta si la diarrea persiste o empeora.\r\nDado que hace mucho tiempo que no se desparasita, se ofrecieron dos opciones:\r\nRealizar un coproparasitológico (decisión tomada por los propietarios).\r\nProceder con la desparasitación sin análisis previo.\r\nEsperar el resultado del coproparasitológico para definir si es necesario ajustar el tratamiento. Se administró antidiarreico, antibiótico (Sulfatrimetoprim) y Novalgina para aliviar el malestar.\r\nSe indicó continuar con Sulfatrimetoprim vía oral por 7 días. Paciente canino de aproximadamente 10 años. Presenta borborigmos marcados, leve dolor abdominal y diarrea líquida con evolución hacia aspecto sanguinolento. No se observaron vómitos. Estado de hidratación adecuado y buen ánimo. \N 435 515 114 1 613 \N +452 2025-02-12 14:01:47.155653+00 2025-02-12 14:01:47.155661+00 f t Desparasitación realizada\r\nCertificado de Leishmaniasis negativo Repetir desparacitación interna en el intervalo recomendado por el producto.\r\nMantener control veterinario para continuar con el tratamiento preventivo contra Leishmaniasis. Pipeta Brower (desparacitación externa)\r\nTotal Full comprimidos (desparacitación interna) Especie: Canina\r\nNombre: Lila \N 420 500 114 70 595 \N +35 2024-10-30 14:13:09.165+00 2024-10-30 14:13:09.165+00 f t \N 94 98 \N 2 102 \N +474 2025-02-26 18:25:20.038937+00 2025-02-26 18:25:20.038947+00 f t estado normal seguir seguimiento nada bien \N \N 455 539 \N 70 657 {"studies": [], "medications": [{"id_medicina": "1151", "next_application_months": 3}], "specialities": []} +496 2025-02-28 21:38:44.742948+00 2025-02-28 21:38:44.74296+00 f t Cardiopatia descompensada, Mississippi avanzada . Eutanasia Presenta miasis en la base de la cola, mal estado general, no come hace más de 2 días, toma poca agua. Dificultad para incorporarse, caquexia manifiesta.\nCardiopatia no tratada hace varios meses, arritmia manifiesta. Pronóstico infausto.\nEn conjunto con la autorizacion de la familia, se decide realizar la eutanasia \N \N 516 609 \N 21 743 {"studies": [], "medications": [], "specialities": []} +516 2025-03-10 02:50:46.32914+00 2025-03-10 02:50:46.329166+00 f t Otitis bilateral Se recomendó el cepillado (con vapor, como venía haciéndolo con anterioridad) semanalmente, reemplazando el perfume que utilizaba por Clorhexidina 4%. Se aplicó "Pipeta Advocate" contemplando la posibilidad de que la caspa y el pelo hirsuto fueran causados por parásitos externos y/o internos. A su vez se suministró a la tutora Clorhexidina 4% para el cepillado del pelaje. EOG S/P\nEOP Gran mejoría de la otitis bilateral en comparación a la semana pasada. A su vez también presentó mejoría en su pelaje. \N \N 504 596 \N 89 784 {"studies": [], "medications": [{"id_medicina": "8", "next_application_months": 0}], "specialities": []} +952 2025-06-16 17:50:38.845042+00 2025-06-16 17:50:38.845052+00 f t . . . Se cancelo \N \N 2498 2241 \N 70 1469 {"studies": [], "medications": [], "specialities": []} +321 2025-01-21 19:46:30.201403+00 2025-01-21 19:46:30.20141+00 f t Sospecha de ehrlichiosis u otra infección grave que pone en riesgo la vida del paciente. Trasladar al paciente de inmediato a una clínica veterinaria de atención 24 horas para una evaluación completa, diagnóstico y tratamiento urgente. Cualquier demora adicional podría ser fatal. No se realizaron tratamientos durante la consulta actual debido a la gravedad del caso y la necesidad de evaluación inmediata en un centro veterinario. Paciente en estado grave, con signos clínicos que sugieren una posible infección grave. No se detallaron parámetros específicos en el examen físico, pero la condición del animal es crítica. \N 179 187 114 14 210 \N +345 2025-01-22 20:18:38.227279+00 2025-01-22 20:18:38.227287+00 f t Los episodios de vómitos pueden estar asociados a una posible gastritis. Sin embargo, no se observó ninguna alteración significativa en el examen físico que sugiriera un problema mayor. Es importante monitorear cualquier síntoma adicional y mantener la dieta baja en residuos. En caso de que los vómitos continúen o surjan otros síntomas, se debe comunicar nuevamente con la plataforma para un seguimiento adecuado. Se administró un antiemético para controlar los vómitos y un protector gástrico para aliviar cualquier posible irritación estomacal. También se recomendó iniciar una dieta baja en residuos para ayudar en la recuperación. Es una perrita Schnauzer Mini de 4 años, si no me equivoco, que había tenido episodios de vómitos. El día anterior había vomitado una vez la comida, al día siguiente había vomitado 4 veces o 5. El propietario dijo que la notaba de caída, y yo cuando fui la verdad que de caída no la noté. Al examen orgánico particular, al examen orgánico general sin particularidades, normotérmica, normohidratada, no tenía dolor abdominal, se habló de que podía llegar a tener una gastritis, se hizo un tratamiento con un antiemético y un protector gástrico, se indicó dieta bajo en residuos y controlar que cualquier cosa se comunicara nuevamente con la plataforma. Básicamente fue eso. \N 349 410 114 1 451 \N +367 2025-01-28 18:33:37.522945+00 2025-01-28 18:33:37.522955+00 f t Estado de salud normal, apta para vacunación. Mantener el esquema anual de vacunación y desparasitación. Realizar chequeos veterinarios regulares para garantizar una salud óptima. Se administraron las siguientes vacunas:\r\n\r\nTriple felina.\r\nAntirrábica. Wasabi, una gata Común Europeo hembra castrada de 1 año, de color marrón y negra, presentó un examen orgánico general sin particularidades:\r\n\r\nSensorio normal.\r\nGanglios, piel, ojos y cavidad bucal sin alteraciones visibles.\r\nApetito, sed, micción y defecación normales.\r\nPalpación abdominal sin hallazgos.\r\nAuscultación cardíaca y pulmonar sin particularidades. \N 350 411 114 70 500 \N +389 2025-02-03 14:13:37.902318+00 2025-02-03 14:13:37.903873+00 f t Paciente en buen estado general, sin signos clínicos de enfermed Control veterinario anual y mantener esquema de vacunación y desparasitación al día. Se administra vacunación triple felina y antirrábica. Gato Común Europeo, macho, 6 meses, blanco y marrón. Sensorio normal, EOG sin alteraciones. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito, micción y defecación normales. Palpación abdominal y auscultación cardíaca y pulmonar sin hallazgos. \N 293 347 114 70 507 \N +411 2025-02-10 14:08:40.703033+00 2025-02-10 14:08:40.703043+00 f t La presencia de vómitos crónicos y la palpación de una posible masa en mesogastrio sugieren la necesidad de estudios complementarios para determinar el origen del cuadro clínico. Dado el estado del gato, no es posible administrarle vacunas en este momento. Se entregaron órdenes para una ecografía abdominal y análisis de sangre con el fin de obtener un diagnóstico más preciso. Se recomienda realizar estos estudios a la brevedad para definir el tratamiento adecuado. Se indica tratamiento sintomático para controlar los vómitos y evitar el deterioro del estado general del paciente. El paciente es un gato que presenta vómitos crónicos. En la palpación abdominal, se detecta una estructura en mesogastrio que podría ser de origen tumoral. Se encuentra alerta, con mucosas rosadas y buen sensorio. No se evidencian signos de deshidratación severa, y su condición corporal es estable. No se observan alteraciones en la auscultación cardíaca y pulmonar. El paciente no puede ser vacunado debido a su estado clínico. Se debe considerar la posibilidad de un proceso tumoral en base a la palpación abdominal. \N 390 464 114 80 534 \N +425 2025-02-10 20:10:23.98244+00 2025-02-10 20:10:23.984043+00 f t Vómitos esporádicos posiblemente relacionados con la ingesta de pelo al lamerse y posible consumo de pasto o plantas. Se aconseja vigilarlo al salir al exterior para evitar el consumo de pasto o plantas. Se sugiere control clínico en caso de persistencia o agravamiento de los síntomas. Se medicó con Reliverán y Ranitidina.\r\nSe indicó Tribiotic.\r\nSe recomendó el uso de Omeprazol junto con la comida para evitar vómitos. Milo no presenta alteraciones torácicas ni abdominales fuera de los episodios de vómitos esporádicos. \N 414 493 114 74 583 \N +1604 2025-09-01 05:09:49.44304+00 2025-09-01 05:09:49.443048+00 f t - - Se comenta que mientras no tenga síntomas no tendría que haber problemas, en el momento que comience q demostrar molesta se comienza el tratamiento. Por la presencia de gingivitis que presentaba el paciente en la última visita, se habían indicado realizar chequeos de sangre con un vif y vilef, de los cuales ambos salió negativo, y el perfil general completo resultó que todos los valores estaban dentro del paramentro. \N \N 3789 3212 \N 1 2289 \N +453 2025-02-12 14:03:33.993223+00 2025-02-12 14:03:33.993232+00 f t Muy buena evolución; prácticamente normal. Control en 20 días para evaluar la evolución.\r\nMonitorear posibles efectos secundarios de la medicación. Doxiciclina 50 mg: 1 comprimido cada 24 horas durante 20 días Especie: Felino\r\nRaza: Siamés\r\nSexo: Macho (castrado)\r\nEdad: 3 años \N 431 511 114 70 625 \N +475 2025-02-26 18:48:57.844455+00 2025-02-26 18:48:57.844467+00 f t Buen estado general, apto para recibir la vacunación.\nAuscultación cardíaca: bradicardia. Mantener el esquema de vacunación al día.\nRealizar controles veterinarios regulares, especialmente seguimiento cardíaco debido a la bradicardia. Aplicación de vacuna séxtuple con leptospira y antirrábica. canino, mestizo, macho 15 años, negro y blanco. EOG: sensorio normal; ganglios, piel sin particularidades. Cavidad bucal: abundante sarro dental. Sobrepeso. Palpación abdominal sin particularidades. \N \N 407 485 \N 70 640 {"studies": [], "medications": [], "specialities": []} +497 2025-02-28 22:45:58.745704+00 2025-02-28 22:45:58.745716+00 f t - Se recomienda vacunar a Cora contra Tos de las perreras. - EOG SPP \N \N 498 589 \N 89 721 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1174", "next_application_months": 12}], "specialities": []} +574 2025-03-28 00:09:43.046899+00 2025-03-28 00:09:43.046907+00 f t hepatopatia indico ecografia abdominal por hallazgos en valores sanguineos elevado. gpt (212) pt (830) globulinas (3.10) . lectura de analisis \N \N 444 527 \N 88 841 {"studies": [], "medications": [], "specialities": []} +1505 2025-08-19 19:05:42.931672+00 2025-08-19 19:05:42.931682+00 f t . . . . \N \N 6671 5442 \N 90 2122 \N +36 2024-10-30 14:13:09.183+00 2024-10-30 14:13:09.183+00 f t \N 96 100 \N 2 104 \N +1565 2025-08-27 18:02:49.980701+00 2025-08-27 18:02:49.980714+00 f t . . . . \N \N 7055 5771 \N 82 2241 \N +322 2025-01-21 20:04:09.352615+00 2025-01-21 20:04:09.352622+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 194 205 114 6 230 \N +346 2025-01-22 20:30:14.805817+00 2025-01-22 20:30:14.805825+00 f t Las lesiones en los miembros y cabeza son producto de las peleas con otros gatos. La lesión en la córnea del ojo izquierdo es consecuencia del arañazo sufrido durante el enfrentamiento. Es recomendable realizar un control en 10 días para evaluar la evolución de las lesiones y el estado de la córnea. Mientras tanto, se debe evitar que Joaquín se escape o se pelee para prevenir nuevas lesiones. Se indicó un tratamiento con antibiótico y antiinflamatorio para las lesiones generales. Para el ojo izquierdo, se prescribió un colirio sin esteroides y un cicatrizante ocular. El tratamiento debe seguirse por 15 días. Joaquín es un gato macho entero que presenta múltiples lesiones, aparentemente causadas por peleas con otros machos. Las heridas se encuentran en los miembros anteriores y en la cabeza. Además, en su ojo izquierdo tiene un arañazo que ha producido una lesión en la córnea. \N 115 132 114 1 455 \N +368 2025-01-28 18:37:02.935557+00 2025-01-28 18:37:02.935567+00 f t Estado de salud normal, apto para vacunación. Consultar con el propietario si desea que la vacunación incluya:\r\n\r\nQuíntuple.\r\nSextuple.\r\nAntirrábica.\r\nO si se desea añadir vacunas adicionales como las dos de ferreras. Esto debe confirmarse antes de proceder. Se indicó realizar vacunación según las preferencias del propietario. Milan, un perro que goza de perfecta salud, no presentó ninguna cuestión clínica relevante en el examen físico. \N 374 440 114 74 495 \N +390 2025-02-03 14:49:06.353195+00 2025-02-03 14:49:06.353201+00 f t Constipación y posible compromiso urinario. Se requieren estudios complementarios para determinar la causa subyacente. Se solicita análisis completos (perfil general Diagnotest) y ecografía abdominal para evaluar función renal, digestiva y urinaria. Seguimiento según resultados. Se aplica 1 ml de Triobiotic. Canino, Caniche, macho entero, 12 años. Fue atendido hace 48 horas por vómitos y diarrea. Actualmente presenta constipación y disminución en la micción. Sensorio normal, sin hallazgos relevantes en el examen físico general. \N 387 461 114 70 562 \N +412 2025-02-10 14:36:39.752993+00 2025-02-10 14:36:39.753742+00 f t PRUEBA 2 PRUEBA2 \N 346 246 110 76 619 \N +431 2025-02-11 19:06:05.650084+00 2025-02-11 19:06:05.650093+00 f t Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 418 498 114 1 587 \N +454 2025-02-12 14:16:41.641003+00 2025-02-12 14:16:41.641015+00 f t Paciente sano, en control de vacunación Monitorear posibles reacciones postvacunales.\r\nPróxima vacunación según calendario.\r\nMantener control veterinario anual. eatment\r\n\r\nTriple felina + antirrábica aplicadas Especie: Felino\r\nRaza: Persa\r\nSexo: Macho (castrado)\r\nEdad: 1 año 2 meses\r\nColor: Marrón\r\nExamen orgánico general (EOG): Correcto\r\nSensorio normal\r\nGanglios, piel, ojos y cavidad bucal sin alteraciones\r\nApetito, micción y defecación normales\r\nPalpación abdominal sin hallazgos\r\nAuscultación cardíaca y pulmonar sin particularidades \N 432 512 114 70 610 \N +476 2025-02-26 19:00:46.593037+00 2025-02-26 19:00:46.593052+00 f t A la revisión, no se observa inflamación en el labio superior, pero hay molestia a la palpación. Normotermia. Se reporta linfopenia en un estudio sanguíneo no disponible. Dolor a la palpación de la columna toraco-lumbar Aplicar Meloxicam 2 mg (1/4 comprimido por día durante 3 días, iniciando mañana). Se administra dexametasona, tramadol y ranitidina. Propietario observa inflamación en el labio superior y cambios en el comportamiento desde el miércoles.\nMicción fuera de la litera. \N \N 460 545 \N 80 664 {"studies": ["1", "7", "10"], "medications": [], "specialities": []} +498 2025-02-28 22:54:28.374123+00 2025-02-28 22:54:28.374135+00 f t Edema en MPI (por traumatismo o picadura de insecto) El peso de "Alú" es de 5,2 kg.\nSe recomienda vacunación con Triple Felina y Antirrábica. ("Alú" se sube a los techos y pelea con otros gatos y no cuenta con registro de vacunación en los últimos años) Edit: Furosemida inyectable 1mg/kg\nTramadol 1mg/kg\nDexametasona 0,5 mg/kg EOG S/P\nEOP Edema en MPI (Signo de Godet +) \N \N 503 595 \N 89 728 {"studies": [], "medications": [{"id_medicina": "715", "next_application_months": 0}, {"id_medicina": "776", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +517 2025-03-10 02:56:05.24341+00 2025-03-10 02:56:05.243424+00 f t Enfermedad degenerativa El paciente no presentaba historial de vacunación en los últimos 5 años.Se recomendó aplicar una segunda dosis de Vacuna Triple Felina como refuerzo. Se indicó realizar una Rx LL y DV de la columna toracolumbar.\nSe recetó "Colotrín +HA" hasta contar con los resultados de la Rx. EOG S/P\nEOP La tutora refiere que Neón presenta un cambio comportamental con respecto a posturas que adapta y una leve claudicación en los MMPP. A la palpación-presión Neón manifestó dolor en la columna toracolumbar. \N \N 536 632 \N 89 767 {"studies": ["2"], "medications": [{"id_medicina": "1158", "next_application_months": 3}, {"id_medicina": "1153", "next_application_months": 12}], "specialities": ["6"]} +533 2025-03-12 20:43:03.008464+00 2025-03-12 20:43:03.008473+00 f t Cardiopatia derecha, neoplasia en una de las mamas, posible diabetes No. No. Consultan por tos cronica. La adoptaron de un refugio hace 1 mes. Hace unas semanas hicieron una consulta veterinaria por este tema y le indicaron enrofloxacina y prednisolona, con la prednisolona mejoro un poco segun los tutores. Tose espontaneamente sin hacerle reflejo tusigeno, es una tos discreta. A la auscultacion tanto el corazon como los pulmones se escuchan bien. Tienen hecho un cardiologico que esta ok y unas rx de torax en distintas posiciones en donde se observa cardiomegalia importante del corazon derecho, con vasculatura pulmonar congestiva y desvio de la traquea. Explico que vamos a repetir el estudio cardiologico ya que no es fidedigno (ellos no estuvieron presentes cuando le hicieron el estudio cardiologico, fue hecho en el refugio antes de castrarla). Presenta una neoplasia en mama inguinal caudal. Me relatan que toma mucho agua (tienen un estudio de sangre actual de hemograma y bioquimica donde esta todo ok, pero NO informan glucemia). Se da orden para consulta cardiologica y para medicion de glucemia. \N \N 560 657 \N 80 809 {"studies": [], "medications": [], "specialities": ["8"]} +1506 2025-08-19 19:08:57.459836+00 2025-08-19 19:08:57.459849+00 f t . . . . \N \N 5889 4811 \N 100 2061 \N +323 2025-01-21 20:11:17.00624+00 2025-01-21 20:11:17.006247+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 222 260 114 68 300 \N +347 2025-01-22 20:42:33.096464+00 2025-01-22 20:42:33.096474+00 f t La causa probable de la descompensación del perrito parece ser el consumo excesivo de comida húmeda, lo cual pudo haber provocado malestares digestivos y dolor. No se observaron complicaciones graves en el examen físico. Se recomienda observar la evolución del perrito y ajustar su dieta según sea necesario. Es importante seguir de cerca su progreso y evitar darle más comida húmeda en el futuro. Si los síntomas persisten o empeoran, se debe realizar un nuevo seguimiento. Se indicó una dieta distinta para evitar el problema relacionado con la comida húmeda, y se administraron una inyección de corticoide y tramadol para aliviar el dolor y mejorar su bienestar. El perrito es un animal de edad avanzada, que presentó síntomas de malestar posiblemente debido a un exceso de comida húmeda. Al examen, se notó que estaba algo dolorido y con malestar general. \N 348 409 114 2 449 \N +369 2025-01-28 18:43:01.296214+00 2025-01-28 18:43:01.296222+00 f t Estado de salud normal, apto para vacunación. Preguntar al propietario si se prefiere:\r\n\r\nQuíntuple.\r\nSextuple.\r\nAntirrábica.\r\nY si desean añadir las vacunas adicionales de ferreras, en caso de ser necesario. Confirmar antes de proceder con la vacunación. Pendiente de vacunación según las instrucciones del propietario. Roma, una perra en excelente estado de salud, sin hallazgos clínicos relevantes en el examen físico. \N 374 439 114 74 501 \N +391 2025-02-03 14:57:05.815797+00 2025-02-03 14:57:05.815806+00 f t Cicatrización de úlcera corneal con formación de nubécula residual. Si el ojo se mantiene abierto sin signos de dolor o inflamación, la nubécula quedará como cicatriz y no requerirá tratamiento adicional. Se otorgará el alta médica en 15 días si no hay nuevas complicaciones. Se indican 2 días más de Meloxi (5 gotas) + Ranitidina. Continuar con 1-2 gotas de Ocuflox cada 24 horas hasta completar 15 días de tratamiento. Consulta por videollamada para control del ojo izquierdo. Se observa que el paciente ya abre el ojo, con presencia de una nubécula en la córnea, aproximadamente en el centro del globo ocular. \N 372 437 114 77 499 \N +413 2025-02-10 14:37:50.041108+00 2025-02-10 14:37:50.041128+00 f t Úlcera corneal superficial confirmada por prueba de fluoresceína positiva. Realizar un control al finalizar el tratamiento para evaluar la evolución de la úlcera. Se recomienda observar si la lesión se extiende o si se resuelve completamente. Se indica tratamiento con colirio sin esteroides y cicatrizante ocular para favorecer la recuperación de la lesión. El paciente presenta una lesión ocular de aparición aguda, manifestando epífora y leve blefaroespasmo. A la prueba de fluoresceína, el resultado es positivo, evidenciándose una úlcera corneal superficia \N 396 470 114 1 547 \N +432 2025-02-11 19:07:46.821349+00 2025-02-11 19:07:46.821355+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 418 497 114 1 588 \N +455 2025-02-12 14:18:13.60693+00 2025-02-12 14:18:13.606938+00 f t Insuficiencia renal crónica terminal Se brindó acompañamiento al propietario durante el proceso.\r\nRecomendación de cuidados post-eutanasia para el duelo. Eutanasia realizada por indicación veterinaria. Especie: Felino\r\nEstado: Paciente en etapa terminal \N 364 429 114 70 627 \N +477 2025-02-26 19:12:34.500901+00 2025-02-26 19:12:34.50091+00 f t Se realiza tricotomía parcial en dorsolomo y porción ventral del pecho, observando lesiones eritematosas-costrosas y pruriginosas (7/10). Parche caliente. Se sugiere pipeta para desparasitación interna y externa. impieza con iodo al 50 % (2 veces al día por 4-5 días), tribiotic + dexametasona (0.5 mg/kg). Golden macho, 8 años, entero, 44.5 kg, CC 5/6. Lesiones en piel y almohadilla digital de miembro posterior izquierdo. \N \N 466 553 \N 88 675 {"studies": [], "medications": [{"id_medicina": "708", "next_application_months": 0}], "specialities": []} +499 2025-02-28 23:02:47.922292+00 2025-02-28 23:02:47.922306+00 f t Otitis bilateral "Chile" es cepillada diariamente con vapor y perfume. Se sugirió dejar de utilizar el perfume y evaluar el pelo en el control. En caso de continuar con la signología de "Caspa" se desparasitará interna y externamente y se evaluará evolución. Amoxicilina - clavulánico a 20mg/kg PO / 7 días\nOtovier NF 5 gotas/4 veces/día durante 1 semana y control. (Viernes 07) EOG S/P\nEOP Secreción amarronada de olor fétido en ambos oídos. Prurito en los mismos al revisar, compatible con Otitis.\nSignología compatible con "Caspa". \N \N 504 596 \N 89 726 {"studies": [], "medications": [], "specialities": []} +518 2025-03-10 03:04:46.348058+00 2025-03-10 03:04:46.348072+00 f t Neoplasia Se recetó:\n1-PAAF de la deformación en más de la cara.\n2-Rx LL y VD de cráneo.\n3- Consulta oncológica.\n4- Estudios preqx completos con orina.\n5- Consulta cardiológica para preqx.\n6- Consulta con servicio de Cirugía.\n\nUna vez que cuente con los primeros 2 estudios se solicitó que tome contacto con Amar mascotas para enviarlos y así, en base a lo que presenten los resultados, continuar con la derivación al profesional oncólogo. Dexametasona 0,5 mg/kg.\nTramadol 1mg/kg.\n1 dosis de Tribiotic.\nY se recetó Prednisol-gotas para un tto corticoice PO de 8 días a dosis decreciente.\nSe recomendó concurrir a "Wellvet" el día siguiente para realizar una adecuada limpieza de la cara y analizar el ojo (que no podía revisarse en el momento por el gran nivel de inflamación que presentaba) EOG S/P\nEOP Deformación en más en la cara. Presentaba un sangrado activo en el ojo izquiero (que se encontraba cerrado debido a un alto nivel de inflamación).\nHalitosis, gran presencia de odontolitiasis. \N \N 544 641 \N 89 787 {"studies": ["3", "12", "2", "9"], "medications": [{"id_medicina": "704", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": ["8", "74", "76", "6"]} +37 2024-09-06 10:00:00+00 2024-09-06 10:00:00+00 f t \N 97 101 \N 2 105 \N +38 2024-10-30 14:13:09.208+00 2024-10-30 14:13:09.208+00 f t ** Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos." \N 98 102 \N 2 106 \N +576 2025-03-28 00:25:26.902754+00 2025-03-28 00:25:26.902764+00 f t . . saco sangre para perfil hepatico + vif vilef por pcr. repito ranitidina dexa tribiotic . \N \N 444 527 \N 88 806 {"studies": [], "medications": [], "specialities": []} +324 2025-01-21 20:13:14.092461+00 2025-01-21 20:13:14.092471+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 222 263 114 68 303 \N +348 2025-01-22 20:46:04.919937+00 2025-01-22 20:46:04.919948+00 f t La consulta no se realizo porque el tutor cancelo la misma \N 325 388 114 79 427 \N +370 2025-01-28 18:48:44.324533+00 2025-01-28 18:48:44.324543+00 f t Se detectó la presencia de Eog spp., lo que sugiere la necesidad de una desparacitación interna. La mascota no estaba desparacitada en ese momento. Es importante realizar la desparacitación interna con Total Full como medida preventiva. También se sugiere controlar la salud general de la mascota con consultas periódicas y mantener al día las vacunas anuales. Se recomendó el uso de Total Full para la desparacitación interna. No se pudo aplicar una dosificación precisa debido a que no se proporcionó el peso del animal en el momento de la consulta. La mascota fue revisada en consulta, mostrando un buen estado general. Se aplicaron las vacunas correspondientes: antirrábica y séxtuple, sin complicaciones durante el proceso. No se observaron particularidades durante el examen físico. \N 376 442 114 80 498 \N +392 2025-02-03 15:10:19.631449+00 2025-02-03 15:10:19.631458+00 f t Inflamación significativa en el tracto urinario sin bacterias detectables en el análisis actual, pero con antecedentes de bacterias en un estudio previo. Se sugiere evaluar la evolución durante el fin de semana. En caso de no presentar mejoría, se procederá con fluidoterapia subcutánea a domicilio. Se mantiene el tratamiento con enrofloxacina. Se indica continuar con Meloxivet (5 gotas por la noche con comida). Se recomienda seguir con la alimentación Urinary S/O en pouch y la administración de Colotrin pasta y Urovier. En la videoconsulta, Runa se observó alerta y activa. En los análisis de orina se evidenció una marcada inflamación, aunque sin presencia de bacterias. No se reportaron otros signos clínicos preocupantes en la evaluación. \N 370 435 114 77 526 \N +414 2025-02-10 14:55:20.482605+00 2025-02-10 14:55:20.482612+00 f t Enfermedad avanzada con deterioro severo de la calidad de vida, requiriendo intervenciones constantes sin una expectativa clara de recuperación. Se brindó apoyo a la propietaria durante el proceso y se aseguró un procedimiento tranquilo y respetuoso para el paciente. Se informó a la propietaria sobre la situación y las opciones de tratamiento paliativo. Dado el pronóstico reservado y la progresión esperada de la enfermedad, la propietaria tomó la decisión de proceder con la eutanasia, la cual se realizó de manera compasiva y sin sufrimiento para el paciente. El paciente se encontraba en un estado de salud muy deteriorado. Se evaluaron los estudios previos junto con el cuadro clínico, determinando que su condición era grave y progresiva, con pocas posibilidades de mejoría. \N 401 475 114 1 556 \N +433 2025-02-11 19:14:54.107375+00 2025-02-11 19:14:54.107382+00 f t Trasudado abdominal con esplenomegalia y signos de gastritis. El hígado, vesícula biliar, intestinos, vejiga y riñones presentan condiciones dentro de los parámetros normales. No se identificaron otras alteraciones significativas. Es importante realizar un seguimiento cercano de los signos clínicos de Rocco, en especial la distensión abdominal y los posibles síntomas derivados de la gastritis. Se recomienda el tratamiento adecuado para la gastritis, y en función de la evolución del trasudado, podría ser necesario realizar nuevas pruebas o tomar medidas adicionales. No se especifica tratamiento en este informe; sin embargo, es probable que se consideren medidas para manejar la gastritis y el trasudado abdominal según el diagnóstico final y la evolución clínica de Rocco. Rocco presenta una moderada colecta abdominal sugestiva de trasudado, con esplenomegalia y gastritis (pared gástrica engrosada). El hígado, riñones, vesícula biliar, intestinos y vejiga están dentro de los parámetros normales. La próstata también está conservada y no se observó linfadenopatía. \N 424 504 114 5 602 \N +456 2025-02-12 14:20:31.060747+00 2025-02-12 14:20:31.060754+00 f t Úlcera en tuberosidad isquiática Control en los próximos días para evaluar la evolución de la úlcera.\r\nMantener el tratamiento con vendajes y antibiótico.\r\nEvitar que el animal se lama la zona afectada. Vendajes con azúcar para el tratamiento de la úlcera.\r\nCefalexina 500 mg: 3/4 comprimido cada 12 horas. Especie: Felino\r\nEstado: Paciente en seguimiento \N 359 424 114 70 600 \N +478 2025-02-26 19:25:27.258137+00 2025-02-26 19:25:27.258148+00 f t DAPP (Dermatitis Alérgica a la Picadura de Pulga). Alimentación con Whiskas desde siempre. Se recomienda mejorar la dieta. Prednisol en gotas en dosis decrecientes por 5 días, luego suspender. Prurito en el mentón y cuello. Estuvo en contacto con gatos en otra casa y regresó con pulgas. El tutor aplicó pipeta, pero persiste el rascado. \N \N 468 555 \N 80 677 {"studies": [], "medications": [{"id_medicina": "987", "next_application_months": 0}], "specialities": []} +500 2025-03-01 15:07:52.06425+00 2025-03-01 15:07:52.06426+00 f t Vacunación Paciente indocil y agresiva Vacunación Paciente sana, con alopecia por dermatitia psicogenica \N \N 471 558 \N 68 681 {"studies": [], "medications": [{"id_medicina": "1155", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}, {"id_medicina": "171", "next_application_months": 0}], "specialities": []} +519 2025-03-10 03:05:43.345926+00 2025-03-10 03:05:43.345943+00 f t El tutor no se presentó a la telemedicina. El tutor no se presentó a la telemedicina. El tutor no se presentó a la telemedicina. El tutor no se presentó a la telemedicina. \N \N 503 595 \N 89 794 {"studies": [], "medications": [], "specialities": []} +534 2025-03-12 20:47:24.215479+00 2025-03-12 20:47:24.215497+00 f t Estrechamiento de espacios intervertebrales Intentar que se levante, ya que esta reteniendo orina. Si no logramos levantarlo colocarle un carrito. Se habla sobre hacer rx de columna y estudios de sangre pero por temas economicos no es posible Se indica tramadol por 1 dia, meloxicam a dosis decrecientes 2 dias y pregabalina de forma cronica. Postracion. Toma protectores de cartilago porque notan hace bastante que tenia problemas para caminar. Mucho dolor en toda la columna, caderas aceptables. Sensibilidad superficial +, propiocepcion muy mal en ambos mps. \nAplique tramadol, dipirona y dexametasona. \N \N 553 650 \N 80 799 {"studies": [], "medications": [], "specialities": []} +544 2025-03-18 19:29:20.245013+00 2025-03-18 19:29:20.245024+00 f t Prueba de cajón y compresión tibial positiva, rotura de ligamento cruzado. Realizar placa para constatar diagnostico. Su veterinario de cabecera, al cual había visitado anteriormente, le había indicado Previcox, Se le dijo que en caso de notarle molestias repita dicho remedio. Presentaba una inflamación en el miembro contralateral al que se había operado anteriormente y aumento del tamaño de la articulación. \N \N 458 542 \N 1 661 {"studies": [], "medications": [], "specialities": []} +325 2025-01-21 20:15:00.215963+00 2025-01-21 20:15:00.215973+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactan Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 222 262 114 68 302 \N +349 2025-01-26 15:10:38.006951+00 2025-01-26 15:10:38.006959+00 f t Alice presenta signos clínicos compatibles con problemas renales y anemia, junto con deshidratación y anorexia. Se debe observar la evolución de Alice en las próximas 48 horas con las medidas de hidratación y alimentación indicadas. Si no hay una mejoría significativa, se considerará la opción de eutanasia para evitar sufrimiento. Es importante monitorear cualquier cambio en su estado general y comportamiento. Se administraron 50 ml de solución fisiológica subcutánea para rehidratarla, aunque el tratamiento fue suspendido a pedido de la propietaria. Se indicó hidratación oral y alimentación forzada durante las próximas 48 horas. Alice es una gata Común Europeo, hembra castrada de 9 años, de color negro y blanco. Presenta mucosas anémicas, deshidratación leve (5%) y anorexia de 3 días, acompañada de una disminución en la micción. Durante el examen, no se encontraron alteraciones en ganglios, piel, ojos ni cavidad bucal. La palpación abdominal y la auscultación cardíaca y pulmonar no mostraron particularidades. \N 345 407 114 70 447 \N +371 2025-01-28 18:51:20.950796+00 2025-01-28 18:51:20.950803+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. Animal de mal temperamento, se recomienda tener precaución, ya que ya mordió levemente a uno de los veterinarios a cargo de su vacunación \N 375 441 114 80 496 \N +393 2025-02-03 16:39:05.470176+00 2025-02-03 16:39:05.470187+00 f t Control de rutina para vacunación, sin signos clínicos de enfermedad. Se recomienda continuar con el calendario de vacunación y mantener un control veterinario regular. Se administraron vacunas séxtuple y antirrábica. Mia, Border Collie hembra de 5 meses, presenta un examen orgánico general normal, sin anomalías detectadas. \N 404 478 114 21 559 \N +415 2025-02-10 16:18:13.252205+00 2025-02-10 16:18:13.252214+00 f t Examen clínico sin particularidades relevantes, salvo la presencia de sarro dental. Se recomienda evaluar la higiene bucal para evitar progresión de la acumulación de sarro y posibles complicaciones dentales en el futuro. Se realizó la vacunación anual con antirrábica y séxtuple con leptospira. Fady es un canino de raza Caniche, color gris, de 9 años. Presenta sensorio normal, ganglios linfáticos sin alteraciones, piel en buen estado y cavidad bucal con presencia de sarro. La palpación abdominal no muestra anomalías y la auscultación cardíaca y pulmonar es norma \N 377 444 114 70 620 \N +434 2025-02-11 19:19:29.23554+00 2025-02-11 19:19:29.235547+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 399 473 114 1 552 \N +457 2025-02-12 14:24:33.443501+00 2025-02-12 14:24:33.443507+00 f t Absceso fistulizado en la oreja Controlar las peleas entre los gatos, ya que las heridas podrían seguir apareciendo debido a estos conflictos.\r\nCortar las uñas a los otros gatos para reducir el riesgo de lesiones.\r\nMantener al gato lesionado lo más tranquilo posible y evitar que tenga contacto cercano con los otros animales para facilitar su recuperación. Tribiótic: Aplicación local.\r\nDexametasona 0,5 mg/kg: Inyección.\r\nBactroprofen (comprimidos): Administrar 1 comprimido cada 12 horas durante 7 a 10 días.\r\nLimpieza periódica de la lesión Especie: Felino\r\nSexo: Macho (castrado)\r\nColor: Naranja (similar a un europeo)\r\nCondición: Lesión en la oreja \N 438 518 114 1 626 \N +479 2025-02-26 19:38:42.72986+00 2025-02-26 19:38:42.72987+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. En 21 dias aplicar la sextuple y castrar Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 480 568 114 80 697 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}], "specialities": ["70"]} +501 2025-03-01 19:56:52.48699+00 2025-03-01 19:56:52.486999+00 f t S/p Repetir la desparasitacion en 1 mes.y luego cada.6.meses Vacunad anuales y desparasitacion con pipeta Meltra spot on Macho entero siames, sin plan sanitario vigente. Peso 2,8kg. Buen estado general \N \N 510 602 \N 21 735 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +535 2025-03-13 20:31:08.108209+00 2025-03-13 20:31:08.108216+00 f t Vacunación - - Es macho. Convive con una perra en un dto, hábitos indoor. Come alimento para gato castrado. Tiene sobre peso, algo bajó xq lo están cuidando con la porción y estimulando a moverse. Hace un año aprox le hicieron estudios xq tuvo mocos y una gatita q convivía con él falleció de pif, manifiesta que todo dió bien, va a tratar de buscar los resultados y pasarlos para adjuntar a la HC.\nEOG s/p \N \N 507 599 \N 91 732 {"studies": [], "medications": [{"id_medicina": "1157", "next_application_months": 12}, {"id_medicina": "1154", "next_application_months": 12}], "specialities": []} +545 2025-03-18 19:33:50.383204+00 2025-03-18 19:33:50.383216+00 f t ... ... ... Falleció antes de la llegada del veterinario. \N \N 481 571 \N 1 699 {"studies": [], "medications": [], "specialities": []} +550 2025-03-18 22:44:53.055542+00 2025-03-18 22:44:53.055549+00 f t Vacunación anual. Arrancamiento uña 1er dedo MAI. Revacunar con triple en un mes. Cefalexina 500 1/4 c/12 hs x 10 días + Pervinox tópico 3 veces x día. EOG correcto. Sensorio normal. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito, micción y defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar sin particularidades. Se arrancó la uña del 1er dedo MAI. 2025-04-19 439 519 110 70 831 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 3}, {"id_medicina": "639", "next_application_months": 0}], "specialities": []} +1511 2025-08-20 02:48:14.416369+00 2025-08-20 02:48:14.416379+00 f t Vacunación - - EOG SP \N \N 812 923 \N 89 1943 \N +326 2025-01-21 20:16:37.17351+00 2025-01-21 20:16:37.173518+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactan Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 222 261 114 68 301 \N +350 2025-01-26 15:36:14.891413+00 2025-01-26 15:36:14.89142+00 f t Los síntomas observados son compatibles con artritis, una condición común en perros mayores. Se sugiere continuar con las pastillas según las indicaciones y observar cualquier cambio en la movilidad o el comportamiento del perrito. En caso de empeoramiento, se recomienda un seguimiento adicional. Se administraron analgésicos para aliviar el dolor y se aplicó una inyección de un protector articular. Además, se dejaron pastillas para el manejo del problema articular. El perrito, de edad avanzada, fue evaluado debido a problemas articulares relacionados con artritis. No se observó un mal estado general, pero presentaba signos de dolor articular \N 143 150 114 2 476 \N +372 2025-01-28 19:16:50.825804+00 2025-01-28 19:16:50.82581+00 f t Úlcera de córnea en el ojo afectado, sin evidencia de complicaciones sistémicas asociadas. Se recomienda seguir estrictamente las indicaciones de la medicación prescrita. Monitorear cualquier cambio en el ojo afectado, como aumento de secreción, inflamación o dolor. De no observar mejoría o ante cualquier empeoramiento, se sugiere reconsulta para reevaluación Se indicó medicación por vía oral y la aplicación de gotas oftálmicas específicas para tratar la úlcera de córnea. Tina, una gatita, fue revisada en consulta por presentar una úlcera de córnea. Durante el examen, no se observaron otras particularidades en su estado general. \N 372 437 114 77 491 \N +394 2025-02-03 19:49:19.418325+00 2025-02-03 19:49:19.418331+00 f t Deterioro general severo con afección cardíaca y pulmonar, sumado a dolor en la columna cervical y lumbosacra. El cuadro clínico indicaba una condición irreversible. No se indicaron recomendaciones adicionales, ya que el procedimiento de eutanasia se realizó a solicitud de los propietarios ante la falta de opciones terapéuticas viables. Se sugirió la realización de análisis de sangre y ecografía para precisar el diagnóstico y evaluar opciones de tratamiento, pero los propietarios optaron por no realizarlos. Debido al estado crítico e irreversible del paciente, se llevó a cabo la eutanasia. Rocco, canino macho Golden Retriever de 14 años, presentó postración de 3 días y anorexia. En el examen físico se observó sensorio disminuido, ganglios sin particularidades, peso reducido y cavidad bucal sin alteraciones visibles. La palpación abdominal no mostró anomalías, pero se detectó dolor en la columna cervical y lumbosacra. En la auscultación cardíaca se identificó un soplo mitral y se confirmó que solo uno de los pulmones estaba funcionando. \N 408 487 114 70 572 \N +416 2025-02-10 16:44:01.520231+00 2025-02-10 16:44:01.520241+00 f t Examen clínico dentro de parámetros normales. Se recomienda continuar con los controles veterinarios regulares y mantener el calendario de vacunación al día. Se realizó vacunación con triple felina y antirrábica. Hallie es una felina Común Europeo, hembra de 3 años, de color negro y blanco. Presenta un examen orgánico general sin alteraciones, con sensorio normal. Los ganglios linfáticos, piel, ojos y cavidad bucal no muestran particularidades. Su apetito, micción y defecación son normales. La palpación abdominal no revela anomalías y la auscultación cardíaca y pulmonar es normal. \N 377 446 114 70 621 \N +435 2025-02-11 20:40:31.903335+00 2025-02-11 20:40:31.903341+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 407 484 114 70 570 \N +458 2025-02-12 14:29:23.112833+00 2025-02-12 14:29:23.11284+00 f t Vacunación triple felina y rabia No se reportaron hallazgos clínicos en el examen físico.\r\nPróximo control según calendario de vacunación o en caso de presentar síntomas. Vacunación triple felina\r\nVacunación antirrábica Especie: Felino\r\nSexo: Macho\r\nRaza: Común Europeo\r\nEdad: Adulto joven \N 436 516 114 1 614 \N +480 2025-02-26 19:43:31.943511+00 2025-02-26 19:43:31.943523+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. En 21 días se le debe aplicar la sextuple Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N \N 480 568 \N 80 696 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +502 2025-03-03 00:42:17.889122+00 2025-03-03 00:42:17.889135+00 f t Dermatofitosis, cushing. Suele salir a pasear con paseador, pasea 2 hs por dia. Se indica reposo hasta mejoria, para no contagiar. Indico spray de ketoconazol 3 veces al dia Lesiones circulares eritematosas no pruriginosas en el dorso del lomo, unas 8 lesiones. La tutora le estuvo limpiando con pervinox y le dio una aspirineta por indicacion de su veterinaria. Tiene un analisis de sangre de octubre 2024 donde se observa GPT y FAS elevada (FAS muy elevada) y ecografia en donde se observa hepatomegalia. Suele tener problemas de piel, tiene su dermatologa. Presenta sobrepeso, a pesar de comer Fawna light en cantidades adecuadas y caminar 2 hs por dia. Se indica relacion cortisol/creatinina en orina. \N \N 525 620 \N 80 753 {"studies": ["7"], "medications": [], "specialities": []} +536 2025-03-14 15:01:04.904571+00 2025-03-14 15:01:04.904585+00 f t DAPP Desparasitacion externa Amoxicilina clavulanico y dermil Telemedicina. El tutor envia una foto de region de masetero con lesion por rascado. No tiene buena calidad la foto y el perro es de temperamento muy fuerte, no lo deja revisar. Primero aparecio el prurito y luego la lesion. Pregunto por pulgas, debe colocarle un antiparasitario. Tambien indago sobre los oidos, el tutor me dice que los ve bien. Le indicaron dermil por 8 dias en dosis decrecientes. Sumo amoxicilina clavulanico por 6 dias. Control en 5 dias por telemedicina. \N \N 558 655 \N 80 805 {"studies": [], "medications": [], "specialities": []} +553 2025-03-20 00:53:58.675145+00 2025-03-20 00:53:58.675157+00 f t - - - EOG SP \N \N 569 667 \N 89 823 {"studies": [], "medications": [{"id_medicina": "1175", "next_application_months": 12}, {"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +39 2024-10-30 14:13:09.22+00 2024-10-30 14:13:09.22+00 f t \N 99 103 \N 2 107 \N +40 2024-10-30 14:13:09.236+00 2024-10-30 14:13:09.236+00 f t \N 100 104 \N 1 109 \N +41 2024-10-30 14:13:09.248+00 2024-10-30 14:13:09.248+00 f t \N 101 105 \N 1 110 \N +42 2024-10-30 14:13:09.26+00 2024-10-30 14:13:09.26+00 f t \N 102 106 \N 1 111 \N +1525 2025-08-21 16:38:40.186635+00 2025-08-21 16:38:40.186645+00 f t . . . . \N \N 6845 5589 \N 90 2153 \N +327 2025-01-21 20:18:00.450278+00 2025-01-21 20:18:00.450286+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 222 264 114 68 304 \N +351 2025-01-26 19:10:33.506787+00 2025-01-26 19:10:33.506797+00 f t La sospecha diagnóstica principal es una posible afección de la columna vertebral que compromete la movilidad del perro. Esto debe confirmarse con estudios complementarios. Se indicó realizar un perfil general completo mediante análisis de sangre y coordinar una radiografía de columna para evaluar la extensión del problema. Según los resultados, se ajustará el tratamiento con antiinflamatorios u otros medicamentos. Se recomienda vigilar su ingesta de alimento y agua, así como su movilidad, y reportar cualquier cambio significativo. Se administró un antiinflamatorio no esteroideo (Meloxicam) y un complejo vitamínico para estimular el apetito y mejorar su condición general mientras se esperan los resultados de los estudios. Se trata de un perro mestizo, macho entero, geronte de aproximadamente 15 años, con un peso de 15 kg. Presenta inestabilidad marcada en los miembros posteriores, lo que le dificulta levantarse para tomar agua y desplazarse. Sin embargo, cuando se le acerca el plato, el perro come y bebe agua. Al ser manipulado y estimulado, mostró disposición para comer. Durante la consulta, deambuló con ayuda, evidenciando debilidad motriz. \N 359 424 114 1 472 \N +373 2025-01-28 19:44:49.284061+00 2025-01-28 19:44:49.284068+00 f t El hígado muestra signos de hepatopatía vacuolar (lipidosis), mientras que el resto de los órganos abdominales no presenta alteraciones. Realizar un análisis de sangre completo (hematología y perfil bioquímico, incluyendo enzimas hepáticas, colesterol y triglicéridos) para confirmar el grado de afectación hepática.\r\nIniciar una dieta específica para soporte hepático bajo indicación veterinaria.\r\nRealizar controles ecográficos periódicos según evolución clínica.\r\nMonitorear síntomas clínicos como vómitos, inapetencia, letargo o ictericia, y consultar de inmediato en caso de observarlos Dado el hallazgo de hepatopatía vacuolar (lipidosis), se recomienda iniciar tratamiento hepático específico con medicamentos hepatoprotectores y dieta adecuada para el soporte del hígado. Se realizó un estudio ecográfico abdominal a Mocca, una canina hembra castrada de 9 años de edad. \N 266 335 114 5 478 \N +395 2025-02-03 19:57:28.165982+00 2025-02-03 19:57:28.165991+00 f t Infección urinaria recurrente con resistencia documentada a la enrofloxacina. Se espera el resultado del urocultivo en cuatro días para determinar el tratamiento antibiótico más adecuado. Se debe esperar el resultado del urocultivo para ajustar el tratamiento según el patrón de resistencia. Se recomienda observar signos de mejoría o empeoramiento y comunicar cualquier cambio en el estado del paciente. Aplicación de Triobiotic 2 ml.\r\nUrovier 4 comprimidos/día para reducir la inflamación vesical. Tyron, canino Weimaraner de 12 años, con antecedentes de infecciones urinarias recurrentes. Actualmente presenta un nuevo episodio iniciado hace un día. \N 400 474 114 70 553 \N +417 2025-02-10 16:45:48.071686+00 2025-02-10 16:45:48.071694+00 f t Examen clínico dentro de parámetros normales. Se recomienda continuar con los controles veterinarios regulares y mantener el calendario de vacunación al día. Se realizó vacunación con triple felina y antirrábica. Leía es una felina Común Europeo, hembra de 9 años, de color negro y blanco. Presenta un examen orgánico general sin alteraciones, con sensorio normal. Los ganglios linfáticos, piel, ojos y cavidad bucal no muestran particularidades. Su apetito, micción y defecación son normales. La palpación abdominal no revela anomalías y la auscultación cardíaca y pulmonar es normal. \N 377 447 114 70 622 \N +436 2025-02-11 20:42:20.166384+00 2025-02-11 20:42:20.166391+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 407 485 114 70 569 \N +459 2025-02-12 14:34:03.145381+00 2025-02-12 14:34:03.145391+00 f t Vacunación realizada sin inconvenientes\r\nExamen físico sin hallazgos en tórax ni abdomen Desparacitar dos veces al año, ya que hace un tiempo que no se realiza este tratamiento.\r\nPróximo control de vacunación y desparasitación según el calendario recomendado. Vacunación realizada según lo programado Especie: Canino\r\nRaza: Bulldog Francés\r\nSexo: Macho (castrado)\r\nEdad: 4 años \N 422 502 114 74 598 \N +481 2025-02-26 19:55:38.366216+00 2025-02-26 19:55:38.366228+00 f t Posible lipidosis hepática por la baja ingesta alimentaria. Se ordena ecografía abdominal y extracción de sangre. Supervisar la ingesta de alimentos para evitar lipidosis hepática. Control con los resultados de las pruebas para ajustar tratamiento. Consultar si persisten problemas de apetito Mantener la mezcla de recovery y balanceado Royal Canin.\nCambiar marca de alimento y probar mezclar con recovery.\nPrescripción de mirtazapina si no quiere comer.\nEcografía abdominal y perfil general básico. Apetito caprichoso desde diciembre, prefiere atún o pollo y rechaza el balanceado. Actualmente acepta Recovery mezclado con Royal Canin, pero ha presentado pérdida de peso. \N \N 500 591 \N 80 723 {"studies": [], "medications": [], "specialities": []} +503 2025-03-03 00:54:12.900483+00 2025-03-03 00:54:12.900496+00 f t Fractura MAI Dar con el alimento Meloxicam 2 mg (1/2 comp hoy, 1/4 mañana y pasado) Se escapo de la casa y tardo 5 dias en volver. Esta comiendo y orinando bien, el paladar esta ok. Aparentemente tiene otra familia, porque aparece aveces con un moño, y estos dias estuvo comiendo. Aparecio con claudicacion de 4to grado MAI, y me da la sensacion de que tambien claudica MPI pero es dificil de evaluar. Presenta dolor a partir de articulacion humero-radio-cubital hacia proximal, al llegar a esa zona no me permitio revisar mas. Aplique tramadol 3 mg/kg. Se indica rx MAI A-P y L-L foco art humero-radio-cubital. \N \N 524 619 \N 80 752 {"studies": ["2"], "medications": [], "specialities": []} +546 2025-03-18 19:43:32.549252+00 2025-03-18 19:43:32.549259+00 f t Gatita muy avanzada en edad. ... Se le aplicó eutanasia. Gatita muy avanzada en edad. \N \N 445 528 \N 1 646 {"studies": [], "medications": [], "specialities": []} +554 2025-03-20 00:55:09.606313+00 2025-03-20 00:55:09.606321+00 f t - - - EOG SP \N \N 581 681 \N 89 847 {"studies": [], "medications": [{"id_medicina": "1170", "next_application_months": 12}, {"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +596 2025-04-01 21:20:00.774106+00 2025-04-01 21:20:00.774114+00 f t - - Fluidos S/C + medicacion Se realiza aplicación de fluido subcutáneo de medicamento que tenía indicaciones. \N \N 479 567 \N 1 856 {"studies": [], "medications": [], "specialities": []} +328 2025-01-21 20:19:06.200237+00 2025-01-21 20:19:06.200244+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 222 259 114 68 299 \N +352 2025-01-27 17:00:51.346958+00 2025-01-27 17:00:51.346966+00 f t Diagnóstico presuntivo: conjuntivitis en el ojo derecho. Seguir el tratamiento indicado durante el tiempo prescrito y controlar la evolución del ojo afectado. Si no se observa mejoría o si aparecen nuevos signos (como secreción abundante o cambios en el comportamiento), consultar nuevamente. Evitar que el gato se rasque el ojo inflamado. Se indicó la aplicación de colirio antibiótico con esteroides (Tau oftálmico o similar), administrando 1 gota cada 8 horas en el ojo afectado. Nino es un gato Común Europeo, macho, de 1,5 años, de color blanco, negro y marrón. Presenta sensorio normal, con apetito, sed, micción y defecación dentro de parámetros normales. Durante el examen físico, los ganglios, piel, ojos y cavidad bucal no mostraron anormalidades, y tanto la palpación abdominal como la auscultación cardíaca y pulmonar fueron normales. En el ojo derecho se observan mucosas hiperémicas, y la prueba con fluoresceína fue negativa. \N 371 436 114 70 489 \N +374 2025-01-28 19:55:04.774388+00 2025-01-28 19:55:04.774399+00 f t Pérdida de peso secundaria a estrés (mudanza reciente y convivencia con un perro hiperquinético).\r\nAntecedentes de constipación ocasional, asociada a vómitos esporádicos Ofrecer agua fresca continuamente y considerar el uso de fuentes o combinaciones de agua con comida húmeda para estimular la ingesta hídrica.\r\nRotar el alimento para mantener el interés de Milka y priorizar dietas de alta calidad nutricional adaptadas a su edad.\r\nMonitorear los episodios de vómitos y constipación. Si persisten o aumentan en frecuencia, considerar realizar un chequeo clínico más detallado.\r\nBrindar un espacio tranquilo donde pueda refugiarse del perro Simón, ya que la hiperactividad del perro podría estar contribuyendo al estrés. Continuar administrando Fililax, incrementando la duración del tratamiento en episodios de constipación (de 2 días a unos días más, según sea necesario).\r\nFomentar el aumento en la ingesta hídrica para prevenir constipación y vómitos relacionados.\r\nCambiar la dieta a un alimento más sustancioso y apetecible para favorecer la recuperación del peso. Milka es una gata siamesa de 16 años que fue evaluada para vacunación. En el examen físico, presentó parámetros normales. Sin embargo, se detectaron signos de ligera pérdida de peso, lo cual el tutor relaciona con situaciones de estrés, como mudanzas o ausencias del tutor. Es importante trabajar en reducir factores que puedan causar estrés, especialmente tras la mudanza reciente y la convivencia con Simón, el perro hiperactivo. \N 335 398 114 9 439 \N +396 2025-02-06 22:06:20.548507+00 2025-02-06 22:06:20.548514+00 f t Consumo de marihuana No manifiesta camboi en su comportamiento y en su sensorio \N 423 503 114 1 599 \N +418 2025-02-10 16:49:40.926907+00 2025-02-10 16:49:40.926915+00 f t Examen clínico dentro de parámetros normales. Se recomienda continuar con los controles veterinarios regulares y mantener el calendario de vacunación al día. Se realizó vacunación con triple felina y antirrábica. Mía es una felina Común Europeo, hembra de 3 años, de color negro y blanco. Presenta un examen orgánico general sin alteraciones, con sensorio normal. Los ganglios linfáticos, piel, ojos y cavidad bucal no muestran particularidades. Su apetito, micción y defecación son normales. La palpación abdominal no revela anomalías y la auscultación cardíaca y pulmonar es normal. \N 377 445 114 70 623 \N +437 2025-02-11 20:43:34.355476+00 2025-02-11 20:43:34.355482+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 407 486 114 70 568 \N +460 2025-02-12 20:32:42.200231+00 2025-02-12 20:32:42.200239+00 f t Alta sospecha de neoplasia abdominal, con posibilidad de malignidad. Se explicó a los tutores la gravedad del cuadro y los posibles pasos a seguir.\r\nSe evaluarán opciones terapéuticas según los resultados de los estudios. Esperar los resultados del perfil prequirúrgico hemostático para evaluar viabilidad de cirugía.\r\nEn caso de avanzar con la cirugía, se considerará una laparotomía exploratoria con biopsia.\r\nConsulta cardiológica prequirúrgica en caso de proceder con la intervención. Especie: Felino \N 390 464 114 80 636 \N +482 2025-02-26 20:03:24.401108+00 2025-02-26 20:03:24.401122+00 f t No se observan problemas clínicos significativos en el examen físico. Se recomienda seguir el plan de vacunación y desparasitación, y realizar la castración para evitar problemas reproductivos. Desparacitación.\nVacunación con triple felina y refuerzo al mes con triple + antirrábica.\nRecomendación de castración. Paciente: Floppy\nEspecie: Felino\nRaza: Común Europeo\nSexo: Macho\nEdad: 1 año\nColor: Negro y blanco\nEOG correcto. Sensorio normal. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito, micción y defecación normales. Palpación abdominal sin alteraciones. Auscultación cardíaca y pulmonar sin hallazgos. \N \N 439 519 \N 70 628 {"studies": [], "medications": [], "specialities": []} +504 2025-03-03 01:08:34.142407+00 2025-03-03 01:08:34.142422+00 f t Paraneoplasia Ninguna Eutanasia Paciente con convulsiones, a demás de parecía e hiporexia \N \N 527 622 \N 68 755 {"studies": [], "medications": [], "specialities": []} +520 2025-03-10 03:20:31.887412+00 2025-03-10 03:20:31.887425+00 f t Herida punzante MAI Se recomienda:\n1- Si no nota mejoría en los próximos 5 días: Acuda a una clínica para realizar una sedación (en caso de ser necesario) en un ambiente controlado para revisar que no haya presencia de cuerpos extraños dentro de la herida.\n2- De ser posible vendar la herida con azúcar.\n3- Una vez que Pepino se recupere realizar las vacunaciones anuales (no cuenta con ninguna dosis hasta el día de la fecha) y desparasitación contra parásitos internos y externos (presencia de pulgas).\n4- Colocación de redes de protección en el balcón de la casa, al representar un gran riesgo para la vida e integridad del animal una posible caída (Contando con el dato de la tutora de que a Pepino le gusta caminar en el borde del balcón). Dexametasona 0,5 mg/kg. Tramadol 1 mg/kg. 1 dosis de tribiotic.\nSe suministró a la tutora Amoxicilina-clavulánico para un tto PO a 13,5 mg/kg/12hs durante 5 días.\nSe intentó vendar la herida con azúcar pero debido a agresividad del paciente no fue posible realizar el vendaje. EOG S/P\nEOP Claudicación 3/4, inflamación y herida aparentemente punzante en MAI. \nLa tutora refiere que Pepino pudo haberse lesionado con astillas de madera que había en el balcón. \N \N 549 646 \N 89 793 {"studies": [], "medications": [{"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "704", "next_application_months": 0}], "specialities": []} +329 2025-01-21 21:00:55.538676+00 2025-01-21 21:00:55.538683+00 f t Condición general estable, pérdida dental parcial. No presenta signos de enfermedad. Repetir la vacuna en un mes. Seguir controlando el estado dental. Vacunación triple felina administrada. Condición general: Correcta.\r\nSensorio: Normal.\r\nGanglios, piel, ojos: Sin particularidades.\r\nCavidad bucal: Ausencia de la mayoría de las piezas dentales, salvo los colmillos y algunos incisivos.\r\nApetito, micción y defecación: Normales.\r\nPalpación abdominal: Sin particularidades.\r\nAuscultación cardíaca: Sin particularidades. \N 229 250 114 70 287 \N +353 2025-01-27 17:04:55.839247+00 2025-01-27 17:04:55.839255+00 f t Sospecha de insuficiencia renal crónica (IRC) basada en los antecedentes de alteración renal, el cuadro clínico actual y el análisis de sangre con perfil general completo (sin orina disponible). Realizar control evolutivo estrecho según la respuesta al tratamiento. Si no hay mejoría significativa, considerar repetir análisis de sangre y complementar con análisis de orina para confirmar el diagnóstico y ajustar el manejo clínico. Mantener comunicación activa con el tutor para informar sobre el estado del paciente. Pronóstico grave debido a la condición avanzada. Se inició tratamiento con ranitidina subcutánea y fluidoterapia endovenosa administrada cada 12 horas. Además, se indicó la administración de Kualcovit B jarabe, 1 ml cada 8 horas, para soporte nutricional y vitamínico. Tomás es un gato geronte de 18 años con un bajo score corporal y pérdida notable de masa muscular. Presenta halitosis y mucosas rosa pálidas. Según el tutor, ha experimentado vómitos esporádicos durante la última semana y anorexia que persiste por más de 48 horas. \N 364 429 114 68 480 \N +375 2025-01-28 19:57:25.645891+00 2025-01-28 19:57:25.645898+00 f t Presunción diagnóstica: conjuntivitis en el ojo derecho. Prueba de fluoresceína negativa, descartando ulceración corneal. Administrar el colirio según la indicación.\r\nMonitorear el ojo afectado por signos de empeoramiento como secreción abundante, inflamación o dolor.\r\nEvitar que el gato se toque o rasque el ojo para prevenir irritaciones adicionales.\r\nReconsultar en caso de no observar mejoría en 5-7 días o si aparecen nuevos síntomas. Se indicó el uso de colirio antibiótico con esteroides (Tau Oftálmico o similar), aplicando 1 gota cada 8 horas en el ojo afectado Nino es un felino Común Europeo de 1,5 años, macho, con pelaje blanco, negro y marrón. Presenta un ojo derecho inflamado, con mucosas hiperémicas. En el examen físico, mostró sensorio normal y no se encontraron particularidades en ganglios, piel, ojos (excepto el ojo derecho), cavidad bucal, ni en la palpación abdominal o la auscultación cardíaca y pulmonar. Apetito, sed, micción y defecación son normales. \N 361 426 114 70 474 \N +419 2025-02-10 17:03:51.404181+00 2025-02-10 17:03:51.404191+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 386 459 114 78 525 \N +438 2025-02-11 20:48:56.814921+00 2025-02-11 20:48:56.814925+00 f t Posible neoplasia gastrointestinal con signos clínicos de anorexia, vómitos y diarrea. Se observó trasudado abdominal y esplenomegalia en la ecografía, lo que puede estar relacionado con la condición primaria Se indicó una ecografía abdominal de urgencia y derivación a un centro especializado para realizar estudios complementarios que permitan confirmar el diagnóstico y definir el tratamiento adecuado. Es fundamental el monitoreo de signos clínicos y evolución general de Rocco. Se administró dexametasona y ranitidina por vía subcutánea para manejo sintomático. Rocco se presenta adinámico, con una temperatura de 39.8°C y mucosas pálidas. Presenta bajo peso, anorexia, vómitos intermitentes y episodios ocasionales de diarrea. A la palpación abdominal, se detecta una masa en la región hipogástrica, lo que sugiere la posibilidad de una neoplasia gastrointestinal. \N 429 509 114 68 607 \N +397 2025-02-06 22:10:08.755851+00 2025-02-06 22:10:08.755859+00 f t Sospecha de insuficiencia renal con azotemia. Se explicó a la propietaria la gravedad y pronóstico reservado del cuadro.\r\nSe dejó una orden de derivación por si la propietaria decide trasladarlo a una clínica para manejo más intensivo.\r\nSe aclaró que el objetivo es estabilizarlo, pero la enfermedad no es curable. Fluidoterapia subcutánea: Se administraron 90 ml/kg de solución subcutánea debido a la dificultad de manejo del paciente.\r\nAntibiótico aplicado durante la consulta.\r\nComplejo vitamínico administrado como soporte. Tomás presentó un cuadro compatible con insuficiencia renal, evidenciado por la presencia de azotemia. Su estado general es delicado y su temperamento dificulta la manipulación. El gato es muy indócil, lo que limita las opciones de tratamiento. \N 413 492 114 1 597 \N +461 2025-02-12 20:38:24.00927+00 2025-02-12 20:38:24.009279+00 f t Excelente estado de salud Se le suministro el fármaco sin complicaciones \N 406 483 114 66 565 \N +483 2025-02-26 20:07:09.941648+00 2025-02-26 20:07:09.941661+00 f t Probable infección urinaria con hematuria. Seguir tratamiento con enrofloxacina y realizar control para evaluar la evolución de la infección urinaria. Prescripción de enrofloxacina 50 mg, 1/2 comprimido por día durante 10 días. Se recomienda control posterior. Paciente: Hallie\nEspecie: Felino\nRaza: Común Europeo\nSexo: Hembra\nEdad: 3 años\nColor: Negro y blanco\nEOG correcto. Sensorio normal. Ganglios, piel, ojos y cavidad bucal sin alteraciones. Apetito y defecación normales. Micción: probable hematuria. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar sin hallazgos. \N \N 377 446 \N 70 637 {"studies": [], "medications": [], "specialities": []} +521 2025-03-11 17:29:03.120071+00 2025-03-11 17:29:03.120087+00 f t Cistitis idiopatica felina. Descenso de peso, paciente obeso.\nIndico análisis de orina completo físico químico con sedimento. Controlar que orine, tiene riesgo de obstrucción. Cumplir con estudios complementarios Vómito 48hs antes, hematuria, oliguria.\nGlucemia 78 \N \N 265 309 \N 68 804 {"studies": ["1"], "medications": [{"id_medicina": "872", "next_application_months": 0}], "specialities": []} +555 2025-03-20 00:55:49.356719+00 2025-03-20 00:55:49.356728+00 f t - - - EOG SP \N \N 581 680 \N 89 846 {"studies": [], "medications": [{"id_medicina": "1170", "next_application_months": 12}, {"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +564 2025-03-24 22:10:12.170774+00 2025-03-24 22:10:12.170782+00 f t autoinmune/neoplasico No. No. Anemia cronica. Tiene hechos estudios de sangre seriados con hematocritos bajos e IR menor a 2. Esta en tratamiento con hematologa por hipoplasia eritroide por puncion medular. Toma azatioprina. Buscaba una segunda opinion. Explico cuadro muy complejo que debe ser seguido por su hematologa. \N \N 590 691 \N 80 862 {"studies": [], "medications": [], "specialities": []} +43 2024-10-30 14:13:09.271+00 2024-10-30 14:13:09.271+00 f t \N 103 107 \N 1 112 \N +44 2024-10-30 14:13:09.283+00 2024-10-30 14:13:09.283+00 f t \N 104 108 \N 1 113 \N +45 2024-10-30 14:13:09.294+00 2024-10-30 14:13:09.294+00 f t \N 105 109 \N 1 114 \N +330 2025-01-21 21:04:21.18957+00 2025-01-21 21:04:21.189578+00 f t Paciente desparacitado correctamente con Fentel Max y tratado con pipeta FRONTLINE Plus para pulgas. Uñas recortadas. Mantener el tratamiento de desparacitación según indicaciones. Repetir pipeta cada mes para control de pulgas y seguir controlando el estado de las uñas. Desparacitación con Fentel Max (4 ML).\r\nTratamiento con pipeta FRONTLINE Plus.\r\nCortado de uñas. Condición general: Correcta.\r\nApariencia física: Sin particularidades. \N 139 146 114 70 318 \N +354 2025-01-27 17:15:22.961475+00 2025-01-27 17:15:22.961482+00 f t Se sospecha una condición grave que requiere confirmación mediante ecografía abdominal y análisis de sangre urgentes. Tato fue derivado para atención urgente con ecografía abdominal y análisis de sangre. Se deberá realizar un seguimiento estrecho del caso en función de los resultados obtenidos. Se administraron los siguientes medicamentos:\r\n\r\nDexametasona 5 mg EV.\r\nTramadol 20 mg.\r\nPenicilina estreptomicina 2 m Tato presentó dolor abdominal, temperatura elevada (40.3°C), vasos episclerales inyectados, mucosas de color rosa, hiporexia progresiva hasta llegar a anorexia de 2 días, bajo score corporal e inestabilidad al andar. \N 367 432 114 68 485 \N +376 2025-01-28 20:05:51.080619+00 2025-01-28 20:05:51.080626+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 353 415 114 2 462 \N +398 2025-02-06 22:17:27.210834+00 2025-02-06 22:17:27.21085+00 f t Movilidad acomplejada ). Aplico meloxivet 0,8ml y sigue PO con gotas. Solicito Rx L-L y A-P de rodilla. Olivia: canino, mestizo, marrón y negro, hembra, 3 años. Consulta por rengueo pierna izquierda. EOG: sensorio normal, ganglios, cavidad bucal y ojos sin particularidades. Peso levemente aumentado\r\n Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar: normal. Palpación\r\n\r\n MPI: dolor al realizar la prueba de cajón (+ \N 419 499 114 70 592 \N +420 2025-02-10 17:09:51.541139+00 2025-02-10 17:09:51.541147+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 386 460 114 78 624 \N +439 2025-02-12 12:36:55.94407+00 2025-02-12 12:36:55.944083+00 f t Parasitosis intestinal posiblemente asociada con infestación de pulgas. Repetir la desparasitación en 15 días.\r\nControlar la presencia de pulgas, ya que podrían ser la fuente del parásito. Se recomienda el uso de antiparasitarios externos. Se administró la vacuna triple felina y la vacuna antirrábica.\r\nSe realizó desparasitación. Campanita presentó signos de parasitosis intestinal, eliminando un tipo de parásito en sus heces. Se encontraba en buen estado general. \N 405 479 114 1 560 \N +462 2025-02-12 20:39:04.039527+00 2025-02-12 20:39:04.039536+00 f t Presión Pececito 3/2, manguito 3, cola:\r\n- Pmax: 152\r\n- Pmin: 102\r\n- Pmed: 123\r\n- FC: 200 Se le suministro el fármaco sin complicaciones \N 406 483 114 66 567 \N +484 2025-02-26 20:33:09.33522+00 2025-02-26 20:33:09.33523+00 f t Probable origen de la claudicación en la columna torácica. Odontolitiasis severa y criptorquidismo. Condición general de salud comprometida debido a la falta de vacunación actual. Comenzar con el esquema de vacunación y continuar con el tratamiento con meloxicam. Evaluar la posibilidad de limpieza dental y/o castración según los resultados de los estudios. Se explica la importancia de la vacunación Meloxicam por 3 días para aliviar el dolor y la inflamación.\nPerfil prequirúrgico hemostático con orina completa + relación proteína/creatinina en orina.\nConsulta cardiológica y ecografía abdominal.\nIniciar vacunación el viernes: 2 sextuples y luego antirrábica. Consulta por claudicación intermitente, comenzada ayer, con episodios de hasta 4° grado de MAD. Soplo cardíaco 5/6 y tórax despejado. Odontolitiasis severa con mal olor y criptorquidismo. Alopecia generalizada sin prurito actual, pero con episodios previos de prurito. Vacunas vencidas hace más de 6 años. No dolor en miembros ni limitación de movimiento, pero dolor en la columna torácica, posible origen de la claudicación. \N \N 492 581 \N 80 711 {"studies": ["1", "7"], "medications": [], "specialities": []} +505 2025-03-04 22:45:26.225402+00 2025-03-04 22:45:26.225413+00 f t Asma felina / Bronquitis Se recomienda disminuir al máximo la presencia de agentes alérgenos (polvo, humo de sahumerio y humo de cigarrillo).\nSe explicó que la tos es un síntoma y se debe hallar la enfermedad subyacente para un tratamiento acorde a la patología.\nA su vez se informaron los signos de emergencia: Respiración con boca abierta y/o cianosis. Se solicitó Rx de tórax LL y DV y perfil general sanguíneo completo sin orina. Se recetó Prednisolona en gotas para un tto sintomático PO de 8 días de duración. Los primeros 4 días a 1mg/kg, los dos siguientes a 0,5 mg/kg y los últimos dos a 0,25 mg/kg.\nSe evaluará evolución en un próximo control presencial una vez que la tutora cuente con los resultados de los estudios, para arribar a un diagnóstico definitivo. Telemedicina. La tutora refiere que "Churro" comenzó con tos esporádica hace aproximadamente 2/3 años. Incrementó en las últimas dos semanas, presentando el día de ayer un episodio de 5-10 minutos. "Churro" aumenta la frecuencia de la tos frente a alérgenos como polvo, humo de sahumerio y humo de cigarrillo. \N \N 519 614 \N 89 747 {"studies": ["8", "2"], "medications": [], "specialities": ["74", "6"]} +522 2025-03-11 20:49:57.755271+00 2025-03-11 20:49:57.755294+00 f t tumor esplenico/ hepatico hacer ecografia abdominal luego del estudio de sangre saco sangre para perfil hepatico + aoc + upc. \nindico alimentacion palatable, estaban ofreciendole pollo por 2 semanas y comia bien, pero ahora ya no queria el pollo. indico ir variando la alimentacion ( carne de vaca cerdo pollo pescado) siempre cocido + fibra ( pure calabaza pure zanahoria brocoli) + balanceado.\nuna vez que tengamos estudios de sangre, dejo orden para realizar ecografia abdominal \nindico rumivital pq me comentan que tiene alteraciones en columna ( protrusion de discos intervertebrales) 1 1/4 de comprimido cada 24 hs por tiempo indeterminado canino hembra mestiza 11 años castrada 13kg\nconsulta por hiporexia y distension abdominal.\nen diciembre del 2024 se le hicieron estudios de sangre y ecograficos. en los valores de sangre , salvo la got aumentada con respecto al valor de referencia, el resto de parametros estaban dentro de lo normal.\nen la ecografia abdominal se observa una masa quistica de 15 cm de diametro . no se puede distinguir si dicha masa se encuentra en bazo o higado . Este estudio lo realizaron en Panama y los vetes de alla le dijeron que no habia mucho para hacer.\nDesde entonces, notaron que dicha masa aumento mucho de tamaño, ya que observan en caudal a la ultima costilla derecha , una masa mucho mayor a la que observaban hace 3 meses.\naus s/p\nbuena cc\nnormohidratada\nconectada con el medio, activa.\nsaco sangre para perfil hepatico + aoc + upc. \nindico alimentacion palatable, estaban ofreciendole pollo por 2 semanas y comia bien, pero ahora ya no queria el pollo. indico ir variando la alimentacion ( carne de vaca cerdo pollo pescado) siempre cocido + fibra ( pure calabaza pure zanahoria brocoli) + balanceado.\nuna vez que tengamos estudios de sangre, dejo orden para realizar ecografia abdominal \nindico rumivital pq me comentan que tiene alteraciones en columna ( protrusion de discos intervertebrales) 1 1/4 de comprimido cada 24 hs por tiempo indeterminado \N \N 556 653 \N 88 802 {"studies": [], "medications": [], "specialities": []} +547 2025-03-18 19:55:38.732893+00 2025-03-18 19:55:38.732901+00 f t El animal se encuentra en buen estado general. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal.\nSi observas algún cambio en su comportamiento o síntomas, contactanos. Se emite certificado de salud y de desparasitación. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N \N 170 179 \N 1 630 {"studies": [], "medications": [], "specialities": []} +46 2024-10-30 14:13:09.306+00 2024-10-30 14:13:09.306+00 f t \N 106 110 \N 1 115 \N +331 2025-01-22 19:04:53.776679+00 2025-01-22 19:04:53.77669+00 f t Coco tiene insuficiencia mitral crónica ACVIM B1 y arritmia sinusal. Su función cardíaca es mayormente normal, aunque con cambios degenerativos en la válvula mitral. El riesgo quirúrgico es levemente mayor por su condición. Se recomienda proporcionar a Coco una dieta senior adaptada a su edad y condición actual. Es importante realizar un control cardiovascular dentro de 8 a 12 meses, o antes si su veterinario lo considera necesario en función de su evolución clínica. En caso de procedimientos quirúrgicos, es esencial considerar el leve aumento del riesgo quirúrgico asociado a la insuficiencia mitral Por el momento, no se consideró necesario implementar tratamiento farmacológico. El paciente Coco, un canino mestizo macho castrado de 9 años y 1 día de edad con un peso de 25 kg, fue llevado a consulta para una evaluación prequirúrgica debido a una deformación en la piel. Durante el examen, se encontraron tonos cardíacos y pulmonares conservados, así como un pulso regular. Las mucosas estaban rosadas y el sensorio del animal era alerta. No se detectó presencia de tos ni síncope. \N 230 251 114 7 289 \N +355 2025-01-27 17:17:46.185197+00 2025-01-27 17:17:46.185205+00 f t No se indicó un diagnóstico en este caso puntual. Se presume que el tratamiento está orientado a la rehidratación y manejo de algún malestar. Se recomienda observar la respuesta al tratamiento, controlar cualquier síntoma adicional y realizar seguimiento según sea necesario Se administraron:\r\n\r\n150 ml de solución Ringer Lactato SC.\r\n0,3 ml de Diafin2 Morita, una gata de 8 años, de raza exótico de pelo corto y color marrón, no presenta detalles adicionales específicos del examen físico en esta consulta. \N 368 433 114 70 486 \N +377 2025-01-28 20:07:04.642299+00 2025-01-28 20:07:04.642307+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 177 194 114 1 475 \N +399 2025-02-06 22:19:28.83646+00 2025-02-06 22:19:28.836468+00 f t Adminitracion de Riger Lactato Presión Pececito 3/2, manguito 3, cola:\r\n- Pmax: 152\r\n- Pmin: 102\r\n- Pmed: 123\r\n- FC: 200 \N 406 483 114 66 566 \N +440 2025-02-12 12:39:59.959146+00 2025-02-12 12:39:59.959155+00 f t Vacunación de rutina. Mantener el plan de vacunación al día.\r\nControlar la presencia de parásitos internos y externos de manera periódica. Se administró la vacuna triple felina y la vacuna antirrábica. Billy fue evaluado y se encontró en buen estado general. \N 405 481 114 1 631 \N +463 2025-02-12 20:52:42.991811+00 2025-02-12 20:52:42.991818+00 f t Enfermedad oncológica en estadio terminal, con deterioro severo de la calidad de vida. Se brindó contención y apoyo a los tutores durante el proceso, explicando cada paso del procedimiento. Se realizó eutanasia sin particularidades, asegurando un procedimiento humanitario y sin dolor para el paciente. Paciente geronte, postrado, con diagnóstico oncológico avanzado. Se evaluó su estado general antes del procedimiento, sin hallazgos adicionales de relevancia. \N 440 520 114 68 629 \N +485 2025-02-26 20:35:58.513624+00 2025-02-26 20:35:58.513633+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N \N 459 543 \N 89 662 {"studies": [], "medications": [], "specialities": []} +506 2025-03-04 22:56:05.149526+00 2025-03-04 22:56:05.149538+00 f t Telemedicina. El tutor no se presentó a la consulta. Telemedicina. El tutor no se presentó a la consulta. Telemedicina. El tutor no se presentó a la consulta. Telemedicina. El tutor no se presentó a la consulta. \N \N 522 617 \N 89 750 {"studies": [], "medications": [], "specialities": []} +523 2025-03-11 21:03:43.594205+00 2025-03-11 21:03:43.594216+00 f t enteritis por causa parasitaria ??\nintolerancia alimenticia ? si no mejora el cuadro, sugiero coproparasitogico + analisis fresco de la materia fecal indico arroz con pollo + yogurt natural hasta que normalice deposiciones, explico que una vez que defeque normalmente por 3 dias consecutivos , hacemos el cambio progresivo al balanceado nutrique.\nindico desparasitacion con moxidex plus repitiendo a los 15 dias . hembra border collie 1 año 13.5 kg entera.\nconsulta por diarreas no hemorragicas . evolucion 4 dias .\ncome nutrique\nultima desparasitacion interna 04/2024.\nvacunacion al dia \nbuen animo , mantiene apetito . no vomitos \N \N 557 654 \N 88 803 {"studies": [], "medications": [], "specialities": []} +537 2025-03-15 16:16:49.025263+00 2025-03-15 16:16:49.025272+00 f t Otitis bilateral Se recomienda repetir la aplicación de OSURNIA a los 7 días.\nTambién se recomendó sacar a pasear a "Coco" con las medidas de seguridad adecuadas para estimular el bienestar mental y físico, ya que el tutor relata que no sale a pasear desde hace meses. Dexametasona 0,5mg/kg\nSe proporcionó penicilina-estreptomicina al tutor para un tto PO de una duración de 5 días a 13,75mg/kg/12hs.\nSe aplicó en ambos oídos "OSURNIA - gel ótico" que el tutor ya poseía. El tutor refiere que "Coco" sacude mucho la cabeza y se rasca las orejas desde hace unos meses.\nEOG S/P\nEOP Inflamación del oído externo. Presencia de secreción amarronada de olor fétido. \N \N 562 659 \N 89 814 {"studies": [], "medications": [{"id_medicina": "705", "next_application_months": 0}], "specialities": []} +548 2025-03-18 20:03:42.023546+00 2025-03-18 20:03:42.023562+00 f t Úlcera de cornea Es adoptada; si persiste considerar conjuntitivos infecciosa. Ciprovet 1 gota cada 12hs 3 días y después 1 gota diaria. Edema parpebral, conjuntiva. Fluorosceina positiva \N \N 577 675 \N 68 834 {"studies": [], "medications": [{"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "705", "next_application_months": 0}], "specialities": []} +556 2025-03-20 00:59:29.575856+00 2025-03-20 00:59:29.575867+00 f t - - Edit: Vacuna Cultivac (Rosenbusch). EOG SP\nPresentaba el pelo más corto en algunas regiones por lamido (sin prurito). \N \N 580 678 \N 89 845 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}, {"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +581 2025-03-29 15:38:50.267052+00 2025-03-29 15:38:50.267062+00 f t IRC Se realizo orden para internacion, ecografia y analisis de ssngre No permite la aplicacion de suero sc y aplicaciones Anorexia y vomitos de 5 dias de evolucion \N \N 564 661 \N 80 817 {"studies": [], "medications": [], "specialities": []} +47 2024-10-30 14:13:09.318+00 2024-10-30 14:13:09.318+00 f t \N 107 111 \N 2 116 \N +48 2024-10-30 14:13:09.339+00 2024-10-30 14:13:09.339+00 f t \N 108 113 \N 2 119 \N +49 2024-10-30 14:13:09.351+00 2024-10-30 14:13:09.351+00 f t \N 109 114 \N 1 120 \N +332 2025-01-22 19:14:58.110479+00 2025-01-22 19:14:58.110487+00 f t Astrea presenta una hepatopatía vacuolar (lipidosis hepática), un leve aumento en el volumen de la vesícula biliar, pero sin signos de obstrucción de las vías biliares. El resto de los órganos abdominales evaluados no presentan alteraciones grandes Implementar una dieta baja en grasas y altamente digestible, adecuada para felinos con posible lipidosis hepática.\r\nProgramar un control clínico y ecográfico en 4 a 6 semanas para evaluar la evolución del hígado y la vesícula biliar.\r\nRealizar análisis de sangre para monitorear enzimas hepáticas, bilirrubina y perfil lipídico.\r\nVigilar la ingesta alimentaria de Astrea y cualquier signo clínico como vómitos, diarrea, letargo o anorexia, que puedan requerir atención médica inmediata. No se indicó tratamiento farmacológico inmediato. Se sugiere realizar un monitoreo y evaluación de la función hepática mediante análisis de sangre (perfil hepático completo) y controlar el estado metabólico general de la paciente. El paciente Astrea, una felina hembra castrada de 4 años, fue evaluada mediante ecografía abdominal. Se observó un hígado ligeramente aumentado con características compatibles con hepatopatía vacuolar (lipidosis) y una vesícula biliar levemente distendida (2,65 ml, ligeramente superior al normal). El estómago estaba vacío, intestinos y riñones conservados, sin linfadenopatía ni líquido libre en cavidad abdominal. También se detectó una acumulación moderada de tejido adiposo en la región abdominal. \N 269 312 114 5 355 \N +356 2025-01-27 17:20:14.381216+00 2025-01-27 17:20:14.381224+00 f t Se sospecha peritonitis o hernia lumbosacra como diagnósticos diferenciales. Alma fue derivada a Desivet para internación, realización de estudios complementarios (como ecografía abdominal, radiografías y análisis de sangre) e instauración del tratamiento correspondiente. No se instauró tratamiento en esta consulta, ya que Alma fue derivada para internación y manejo especializado. Alma, una perra mestiza de pastor alemán de 9 años, de color negro y marrón, presentó postración en decúbito lateral y anorexia de 24 horas de evolución.\r\n\r\nSensorio disminuido.\r\nGanglios, piel y cavidad bucal sin alteraciones visibles.\r\nAusencia de ojo izquierdo.\r\nAnorexia, sed disminuida e incontinencia urinaria.\r\nDolor significativo a la palpación abdominal y de columna.\r\nAuscultación cardíaca y pulmonar sin hallazgos anormales. \N 369 434 114 70 487 \N +378 2025-01-28 20:20:24.87935+00 2025-01-28 20:20:24.879358+00 f t Tomas presenta insuficiencia renal crónica avanzada, con:\r\nAzotemia severa (urea y creatinina muy elevadas).\r\nHiperfosfatemia y amilasemia elevada, asociadas a daño renal y pancreatitis. Plaquetopenia y leucocitosis con neutrofilia segmentada Realizar una consulta inmediata con el veterinario para iniciar tratamiento agresivo y monitoreo en un centro de atención.\r\nRepetir análisis en 48-72 horas tras la estabilización inicial para evaluar respuesta al tratamiento.\r\nImplementar dieta renal específica para reducir la carga de trabajo sobre los riñones.\r\nConsiderar estudios de imagen (ecografía abdominal) para evaluar la estructura renal y detectar otras posibles complicaciones.\r\nMonitorear clínicamente a Tomas para evaluar signos como letargo, inapetencia, vómitos o cambios en la micción. El paciente presenta signos compatibles con insuficiencia renal crónica avanzada y posible pancreatitis, dados los valores bioquímicos observados. Se recomienda:\r\n\r\nHidratación intensiva (fluidoterapia) para manejar la deshidratación y promover la eliminación de metabolitos acumulados.\r\nUso de antieméticos y protectores gástricos para controlar posibles síntomas asociados, como náuseas o vómitos.\r\nManejo específico para hiperfosfatemia (quelantes de fósforo con la dieta). Tomas, un paciente felino, fue sometido a un análisis hematológico y bioquímico como parte de una evaluación médica general. No se mencionaron anomalías específicas en el examen físico asociado. \N 364 429 114 68 493 \N +400 2025-02-06 22:33:24.334169+00 2025-02-06 22:33:24.334179+00 f t Otitis externa con secretion que sugiere presencia de acaros Coloco bravectospot on e indico tratamiento en oídos con Otiflex como complemento de otitis.\r\nSugerencias de hidratación Mucosas rosa, alerta \N 417 496 114 68 589 \N +441 2025-02-12 12:42:17.745898+00 2025-02-12 12:42:17.745907+00 f t Vacunación de rutina. Mantener el plan de vacunación al día.\r\nControl de parásitos internos y externos de forma periódica. Se administró la vacuna triple felina y la vacuna antirrábica. Gringer fue evaluado y se encontraba en buen estado general \N 405 480 114 1 632 \N +464 2025-02-12 21:52:33.575237+00 2025-02-12 21:52:33.575246+00 f t Lesión en cuello No fue posible una tricotomia limpieza se aplicó antibiótico y antiinflamatorio y se indicó que continuara con medicación biaoral con Bacter Profem. Lesión en cuello, px no docil. \N 421 501 113 1 596 \N +486 2025-02-26 20:38:06.555818+00 2025-02-26 20:38:06.555832+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N \N 459 544 \N 89 663 {"studies": [], "medications": [], "specialities": []} +507 2025-03-04 23:05:54.906426+00 2025-03-04 23:05:54.906439+00 f t Odontolitiasis + Periodontitis Se le informó a los tutores que durante el procedimiento quirúrgico extraerían piezas dentarias.\nControl presencial luego de la limpieza dentaria. Tramadol 1 mg/kg SC. Dexametasona 0,5 mg/kg SC. Se le proporcionó a los tutores Amoxicilina - clavulánico en comprimidos para tratamiento antibiótico a 12,5 mg/kg PO durante 5 días.\nSe solicitó perfil quirúrgico completo y consulta cardiológica para preqx. Limpieza dentaria una vez que se cuente con ambos estudios y en caso de estar apta para anestesia. Los tutores refieren que "Uma" tuvo una limpieza dentaria 7/8 años atrás. Notan que presenta piezas dentarias móviles.\nEOP S/P\nEOG Odontolitiasis, canino inferior izquierdo móvil, posicionado fuera de la boca. Canino superior izquierdo moderadamente móvil. Presenta dolor a la palpación. \N \N 528 623 \N 89 756 {"studies": ["9"], "medications": [{"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "705", "next_application_months": 0}], "specialities": ["8", "74", "76"]} +657 2025-04-17 03:40:54.232874+00 2025-04-17 03:40:54.232882+00 f t . . . Se aplico vacuna triple felina \N \N 663 784 \N 80 987 {"studies": [], "medications": [], "specialities": []} +50 2024-10-30 14:13:09.388+00 2024-10-30 14:13:09.388+00 f t \N 114 119 \N 2 125 \N +51 2024-10-30 14:13:09.4+00 2024-10-30 14:13:09.4+00 f t \N 115 120 \N 1 126 \N +52 2024-10-30 14:13:09.411+00 2024-10-30 14:13:09.411+00 f t \N 116 121 \N 1 127 \N +53 2024-10-30 14:13:09.424+00 2024-10-30 14:13:09.424+00 f t \N 117 122 \N 1 128 \N +54 2024-10-30 14:13:09.436+00 2024-10-30 14:13:09.436+00 f t \N 118 123 \N 1 129 \N +55 2024-10-30 14:13:09.459+00 2024-10-30 14:13:09.459+00 f t \N 120 125 \N 2 132 \N +56 2024-10-30 14:13:09.495+00 2024-10-30 14:13:09.495+00 f t \N 124 129 \N 1 137 \N +65 2024-10-30 14:13:09.616+00 2024-10-30 14:13:09.616+00 f t \N 128 134 \N 1 149 \N +333 2025-01-22 19:22:16.676123+00 2025-01-22 19:22:16.676132+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 248 277 114 1 319 \N +357 2025-01-28 13:40:59.997346+00 2025-01-28 13:40:59.997358+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos Se aplicó la vacuna correspondiente Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. Gata asustadizo \N 360 425 114 2 473 \N +379 2025-01-28 20:21:31.493981+00 2025-01-28 20:21:31.493989+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 353 416 114 2 464 \N +401 2025-02-06 22:37:39.649963+00 2025-02-06 22:37:39.649972+00 f t Lesión en cuello Se inicia tratamiento con adm de suero S/C \N 413 492 114 1 581 \N +442 2025-02-12 12:45:03.608279+00 2025-02-12 12:45:03.608286+00 f t Presencia de un tumor pendular ulcerado en el codo. Evaluar la posibilidad de extracción del tumor. Dado que es pendular y no invasivo, podría realizarse bajo anestesia local.\r\nEstudios previos a la cirugía:\r\nControl cardiológico para evaluar tolerancia a la anestesia.\r\nAnálisis de sangre para determinar el estado general antes de la intervención.\r\nEl propietario decidirá si procederá con los estudios y la posible cirugía. Se administró la vacuna séxtuple y la vacuna antirrábica. Lola es una perrita de edad avanzada con buen estado general. Se identificó un tumor pendular ulcerado en la zona del codo, el cual se lastima debido al roce con el suelo al acostarse. \N 405 482 114 1 633 \N +465 2025-02-12 21:56:58.438444+00 2025-02-12 21:56:58.43845+00 f t Ojo izquierdo: secuestro corneal con ulcera superficial \r\nOjo derecho: Cicatrizacion ocular con ciclosporina 1% Alimentacion renal + vomito \N 425 505 113 11 603 \N +57 2024-10-30 14:13:09.514+00 2024-10-30 14:13:09.514+00 f t Cliente solicita Chequeo general + vacunación anual + certificado de salud \N 126 131 \N 1 139 \N +487 2025-02-26 20:41:30.59603+00 2025-02-26 20:41:30.596046+00 f t Sin problemas clínicos específicos detectados durante la consulta. No se requiere tratamiento adicional por el momento. Si se vuelve a atender, se recomienda un manejo adecuado para evitar el estrés y la agresividad. Vacunación con triple felina, antirrábica y antiparasitario. G S/P. Se le aplicaron vacunas triple felina, antirrábica y antiparasitario interno \N \N 469 556 \N 89 679 {"studies": [], "medications": [], "specialities": []} +508 2025-03-05 23:36:32.471594+00 2025-03-05 23:36:32.471607+00 f t Reacción adversa leve. Limpieza con toallas en zona de aplicación. Sintomático. Por ahora come, y salvo el reflejo fotopupilar disminuido está estable. No se medica Paciente con jadeos, urticaria sin alopecia y leve eritema por aplicación correcta de antiparasitario externo recetado. Bravecto de 2.8 a 6.25kg \N \N 270 318 \N 68 775 {"studies": [], "medications": [], "specialities": []} +524 2025-03-11 21:09:46.996312+00 2025-03-11 21:09:46.996321+00 f t acné felino ? sugiero realizar perfil hepatico + vif vilef por pcr aplico tribiotic + dexa a 4 mg/kg + ranitidina .\n12 y 14/03 indico repetir mismo esquema de medicacion inyectable, segun respuesta, evaluar continuar o no el tto \nindico advocate gatos de 4 a 8 kg, ya que hace mucho no se desparasitan interna y externamente felino macho castrado 6 años , 4.5 kg \nconsulta por dermatitis en menton. evolucion 1 mes.\nestuvo siendo tratado por otro vete, le indico cefalexina por 15 dias via oral pero no notaron mejoria .\nhicimos teleconsulta hace unas semanas, indiqué limpiezas con iodo al 50 % pero tampoco hubo mejorias. \N \N 444 527 \N 88 759 {"studies": [], "medications": [], "specialities": []} +538 2025-03-18 18:24:45.331821+00 2025-03-18 18:24:45.33183+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal.\nSi observas algún cambio en su comportamiento o síntomas contactanos Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N \N 502 594 \N 1 833 {"studies": [], "medications": [], "specialities": []} +549 2025-03-18 20:16:07.851706+00 2025-03-18 20:16:07.851714+00 f t Hasta hace 3 días con poliuria y polidipsia, ahora, no toma agua. Estuvo con vómitos principalmente de agua. Presentaba conjuntivitis en el ojo izquierdo con secreción purulenta. Se aconseja darle pequeñas cantidades de agua fresca o cubitos y esperar por si vomita. Pronostico reservado a grave. En caso de no mejoría se aconseja internación. solución ringer lactato, 400 cc y pileran. Ciprovet colirio para conjuntivitis. Se extrae sangre para análisis. Paciente deshidratada, 15%, anorexia, casi no camina. En el día de la consulta solo tuvo un vomito y estaba muy deprimida. Temperatura de 38.7, no quiere salir, tiene la piel muy delgada ,finita y fría. \N \N 515 608 \N 78 741 {"studies": [], "medications": [], "specialities": []} +557 2025-03-20 01:00:08.98209+00 2025-03-20 01:00:08.982101+00 f t - - Edit: Vacuna Cultivac (Rosenbusch). EOG SP \N \N 580 679 \N 89 844 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}, {"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +565 2025-03-24 22:20:41.613914+00 2025-03-24 22:20:41.613921+00 f t Fx ungueal longitudinal de 4to dedo derecho. Se explica q x el tipo de fx puede llevar tiempo resolver y puede tener dolor hasta q uña crezca, en ese caso, se indica ciclos de meloxicam con descansos.\nTambién se explica que al afectar matriz, puede crecer uña con defecto.\nSolicitar nuevo control de acuerdo a evolución del paciente. Se aplica meloxicam y tramadol.\nRp/ meloxicam oral x 3 días y antiséptico local. Mc: renguera. Se observa claudicación sin apoyo en forma intermitente de MAD. Paciente alerta, buen estado general, buen ánimo. Se revisa todo el miembro, locus dolenti: 4ta uña derecha. \N \N 600 702 \N 91 877 {"studies": [], "medications": [], "specialities": []} +601 2025-04-01 21:53:26.482042+00 2025-04-01 21:53:26.482056+00 f t - - - Ego: s/p continua con pérdidas de orina mientras duerme. Se indica subir la dosis de medicación. \N \N 123 128 \N 1 516 {"studies": [], "medications": [], "specialities": []} +334 2025-01-22 19:23:00.957021+00 2025-01-22 19:23:00.957028+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 248 278 114 1 320 \N +358 2025-01-28 13:57:28.241451+00 2025-01-28 13:57:28.24146+00 f t Fístula perineal lado derecho con sangrado. Mantener la zona limpia y revisar diariamente para detectar cualquier signo de infección o agravamiento. Continuar con la administración de Cefalexina según lo indicado y realizar un control veterinario al finalizar el tratamiento o antes si el cuadro no mejora. Se realizó:\r\n\r\nDepilación de la zona afectada.\r\nLavado de la fístula con agua oxigenada.\r\nAplicación de 0,5 ml de Triobiotic.\r\nSe indicó:\r\nCefalexina 500 mg, ½ comprimido cada 12 horas por vía oral durante 15 días. Blanquito, un gato Común Europeo macho de 10 años, de color blanco, negro y marrón, consulta por un sangrado en la región perineal.\r\n\r\nSensorio normal.\r\nGanglios, piel, ojos y cavidad bucal sin alteraciones visibles.\r\nApetito, sed, micción y defecación normales.\r\nPalpación abdominal sin hallazgos.\r\nAuscultación cardíaca y pulmonar sin particularidades.\r\nSe observa una fístula perineal en el lado derecho. \N 366 431 114 70 484 \N +380 2025-01-28 20:27:12.298764+00 2025-01-28 20:27:12.298772+00 f t Presunción diagnóstica: golpe de calor leve. Vigilar el estado general del perro, prestando atención a cambios en el sensorio o en la frecuencia respiratoria.\r\nEvitar la exposición prolongada al calor o ejercicios intensos en horarios de altas temperaturas.\r\nReconsultar si no mejora en las próximas horas o si aparecen signos como letargo severo, vómitos o dificultad para respirar. Se recomendó:\r\n\r\nOfrecer agua fresca con hielo para rehidratar.\r\nBañar con agua fría para bajar la temperatura corporal.\r\nRealizar un corte de pelo para facilitar la regulación térmica. Nonno es un canino cocker dorado de 12 años que consulta por ojos hundidos y mirada perdida. Se observó una leve pérdida de estereocepción al deambular y sensorio levemente disminuido. Ojos, cavidad bucal y auscultación cardíaca sin particularidades. Apetito, sed, micción y defecación normales \N 357 422 114 70 470 \N +443 2025-02-12 12:49:07.507321+00 2025-02-12 12:49:07.507328+00 f t Dermatitis alérgica por picadura de pulgas. Realizar un tratamiento ambiental exhaustivo, ya que el entorno es clave para eliminar las pulgas.\r\nSe explicó a la propietaria que las alfombras representan un desafío importante en la eliminación de pulgas y pueden ser una fuente constante de reinfestación.\r\nLa erradicación completa de las pulgas tomará tiempo, y hasta que no se controlen en el ambiente, la dermatitis puede persistir. Se indicó tratamiento local para la piel afectada.\r\nSe recomendó el uso de antiparasitarios orales (comprimidos) en lugar de pipetas, para un mejor control de la infestación. La perrita presentó signos de dermatitis asociada a picadura de pulgas. Se realizó una limpieza de oídos durante la consulta. \N 89 93 114 1 551 \N +58 2024-10-30 14:13:09.525+00 2024-10-30 14:13:09.525+00 f t Cliente abonó el 50% \N 115 132 \N 1 140 \N +59 2024-10-30 14:13:09.536+00 2024-10-30 14:13:09.536+00 f t \N 123 128 \N 5 141 \N +539 2025-03-18 18:52:14.490042+00 2025-03-18 18:52:14.490055+00 f t Se revisó una muestra de materia fecal que tenía la dueña y se ve que tenía estrellas de sangre Evaluar de cambiar el alimento balanceado, dado que el actual era de baja calidad y posiblemente era eso lo que podía llegar a estar produciendo el trastorno. Se avanza en la aplicación de un antibiótico y se indica continuar con giacoxide, o sea sulfatrimetropin, por siete días Se realizó un examen físico general (Examen Órgano General: Sin Particularidades) \N \N 476 564 \N 1 690 {"studies": [], "medications": [], "specialities": []} +466 2025-02-20 11:43:37.895809+00 2025-02-20 11:43:37.895818+00 t t A A A A \N \N 455 538 \N 70 658 {"studies": [], "medications": [], "specialities": []} +488 2025-02-26 20:45:36.272449+00 2025-02-26 20:45:36.27246+00 f t Posible obstrucción o problema gastrointestinal, con dolor abdominal moderado y mucosas pálidas. Controlar por videollamada con "Amar" al recibir los resultados del perfil general completo. Si no defeca en las próximas 24 horas, se indica acudir a Desivet. Vaselina líquida 8 ml PO.\nSolución fisiológica SC.\nTramadol 1 mg/kg.\nDexametasona 1 mg/kg. EOG - mucosas pálidas. EOP dolor abdominal moderado. \N \N 491 580 \N 89 710 {"studies": [], "medications": [], "specialities": []} +509 2025-03-06 19:28:20.61088+00 2025-03-06 19:28:20.610893+00 f t Ead/ displasia, grado?\nEn breve verán nuevamente al traumatologo Interconsulta con traumatologo Tramadol inyectable 90mg totales, meloxicam 5 mg iny, única dosis.\nLuego siguen con tramadol orales cada 12hs, y meloxicam 2.5 mg 1 vez x dia x 4 días mas Canino macho que según la Tutora presenta episodios de dolor agudo por una patología de enfermedad articular degenerativa/ displasia. Me muestran una placa de una fractura? En tratamiento con tramadol, pero se quedó sin medicación \N \N 532 627 \N 21 761 {"studies": [], "medications": [{"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "870", "next_application_months": 0}], "specialities": ["59"]} +402 2025-02-06 23:03:03.139602+00 2025-02-06 23:03:03.13961+00 f t Control Se encuentra con pañales debido a incontinencia urinaria. Sugiero realizar análisis de sangre perfil general básico y gerontológico canino, mestizo Dogo, blanco con pintas negras, macho, 14 años. Consulta para control general. EOG: postración, sensorio disminuído; ganglios sin particularidades. Peso disminuído. Cavidad bucal: sin particularidades. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar: normal \N 410 489 113 70 574 \N +525 2025-03-11 21:15:56.645248+00 2025-03-11 21:15:56.645259+00 f t descompensacion diabetica derivo paciente para internacion , medicion urgente de glucemia , estabilizacion y fluidoterapia endovenosa + realizacion de metodos complementarios ( perfil hepatico + aoc + upc ) + ecografia abdominal realizo pasaje de solucion fisiologica sc ( 250 ml) + raniditina + novotioc + meloxivet a 0.2 mg/kg felino siames macho 14 años 6 kg\nconsulta por decaimiento , anorexia. evolucion 48 hs \nno vomitos ni diarrea\nestado comatoso\ndeshidratacion 9 %\naus s/p\npalpacion abdominal s/p\nmidriasis bilateral \N \N 555 652 \N 88 801 {"studies": [], "medications": [], "specialities": []} +558 2025-03-21 11:51:04.41815+00 2025-03-21 11:51:04.418161+00 t t AA AA AA AA \N \N 575 673 \N 82 830 {"studies": [], "medications": [], "specialities": []} +566 2025-03-24 22:25:44.429774+00 2025-03-24 22:25:44.429782+00 f t Alergia alimentaria/atopia Alimento hipoalergenico Prednisolona 5 dias Prurito interdigital, debajo de axilas y en ingles. Come old prince cordero y arroz. Tomo el primer y segundo dia prednisolona a 0,5 mg/kg y continuo con prurito. Aplique dexametasona a 0,3 mg/kg, continuar con prednisolona a dosis decrecientes. Cambio de alimento a royal canin hipoalergenico. Control en 2 semanas. \N \N 598 700 \N 80 872 {"studies": [], "medications": [], "specialities": []} +335 2025-01-22 19:25:46.175258+00 2025-01-22 19:25:46.175265+00 f t Lupe se encuentra en buen estado general, con caída de pelo estacional como único hallazgo relevante Continuar con el calendario de vacunación según lo indicado.\r\n\r\nMantener un cepillado regular durante la temporada de muda para reducir la caída de pelo.\r\n\r\nVigilar cualquier cambio en su comportamiento o signos clínicos que puedan requerir atención veterinaria. Se administraron las vacunas quíntuple y antirrábica. El paciente Lupe, una canina mestiza de 6 años de edad, castrada, con un peso aproximado de 8 kg, fue evaluada en consulta. La temperatura corporal, la frecuencia cardíaca y la frecuencia respiratoria son normales. El abdomen no presenta particularidades, y no se detectaron alteraciones en el corazón ni en los pulmones. Presenta caída de pelo atribuible a la época de muda. Es necesario utilizar bozal durante los exámenes, ya que no le gusta ser tocada \N 276 325 114 74 367 \N +359 2025-01-28 13:59:19.680424+00 2025-01-28 13:59:19.68043+00 f t Insuficiencia renal avanzada y deterioro clínico severo, no recuperable. No se indicaron recomendaciones adicionales, dado que el procedimiento fue definitivo. Se realizó eutanasia humanitaria a solicitud del propietario debido al pronóstico reservado y al deterioro progresivo de Alice. Alice, una gata Común Europeo, hembra castrada de 9 años, de color negro y blanco, consultó inicialmente por problemas renales y pérdida de peso. Posteriormente, presentó 48 horas adicionales de anorexia y vómitos. \N 345 407 114 70 481 \N +381 2025-01-28 20:36:54.080646+00 2025-01-28 20:36:54.080656+00 f t Conforme a la radiografía de columna toracolumbar LL, no se observaron alteraciones radiológicas en este foco, lo que indica que la columna no presenta lesiones visibles ni complicaciones en la zona evaluada. Es recomendable continuar con monitoreo general de la salud de Pascual. Si se presentan nuevos síntomas o molestias, se sugiere realizar estudios adicionales para evaluar otras posibles áreas. No se requieren tratamientos adicionales para la columna toracolumbar, dado que los resultados radiológicos fueron normales. Pascual, el Gran Danés, fue examinado clínicamente sin hallazgos significativos en su examen físico general. No se reportaron signos de dolor, inflamación ni alteraciones evidentes durante la evaluación. \N 365 430 114 3 483 \N +403 2025-02-07 22:52:25.549577+00 2025-02-07 22:52:25.549586+00 f t Viaje a uruguay Se realiza vacunación antirrábica+ séxtuple, se coloca microchip y se extrae sangre para Leishmania. Se realiza certificado de salud. canino, mestizo pug y shitzu, beige, hembra, 5 años. Consulta para realizar todos los actos médicos y administrativos para llevarla a Uruguay. EOG: sensorio normal; ganglios y boca sin particularidades. Peso normal. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar: normal. \N 420 500 113 70 594 \N +444 2025-02-12 12:51:36.470562+00 2025-02-12 12:51:36.470571+00 f t Dermatitis alérgica por picadura de pulgas. Realizar un tratamiento ambiental exhaustivo, ya que el entorno es clave para eliminar las pulgas.\r\nSe explicó a la propietaria que las alfombras representan un desafío importante en la eliminación de pulgas y pueden ser una fuente constante de reinfestación.\r\nLa erradicación completa de las pulgas tomará tiempo, y hasta que no se controlen en el ambiente, la dermatitis puede persistir. Se indicó tratamiento local para la piel afectada.\r\nSe recomendó el uso de antiparasitarios orales (comprimidos) en lugar de pipetas, para un mejor control de la infestación. La perrita presentó signos de dermatitis asociada a picadura de pulgas. Se realizó una limpieza de oídos durante la consulta. \N 89 93 114 1 601 \N +540 2025-03-18 19:04:38.735033+00 2025-03-18 19:04:38.735041+00 f t Diarrea. Puede ser por el tipo de dieta también, además de que el animal al tener incapacidad para levantarse y deambular por ahí,muchas veces se estaba defecando y orinando encima y eso podía producir irritación de la zona del perineo. Entonces se le indica dejarla en un lugar que no se moje, o sea, tanto con la orina y la materia fecal, cambiarle la dieta y hacer un tratamiento antibiótico. Se le hace una aplicación de un antiinflamatorio y se le da antibiótico Luly en oportunidades anteriores también había tenido problemas de diarrea. La dueña comentaba que tenía cambios en la materia fecal también y le notaba molesta. \N \N 467 554 \N 1 676 {"studies": [], "medications": [], "specialities": []} +60 2024-10-30 14:13:09.548+00 2024-10-30 14:13:09.548+00 f t \N 127 133 \N 2 142 \N +61 2024-10-30 14:13:09.56+00 2024-10-30 14:13:09.56+00 f t \N 128 134 \N 1 143 \N +62 2024-10-30 14:13:09.576+00 2024-10-30 14:13:09.576+00 f t \N 122 127 \N 1 145 \N +63 2024-10-30 14:13:09.588+00 2024-10-30 14:13:09.588+00 f t \N 130 136 \N 1 146 \N +467 2025-02-20 12:38:48.099923+00 2025-02-20 12:38:48.099931+00 t t Diagnóstico Presuntivo Recomendaciones Tratamiento Anamnesis / Signología \N \N 432 559 \N 80 684 {"studies": ["7"], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "170", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": ["72"]} +489 2025-02-26 20:48:08.770046+00 2025-02-26 20:48:08.77006+00 f t Úlcera corneal superficial en el ojo izquierdo, con leve depresión en el sensorio. Controlar al paciente el sábado a las 10 am (a coordinar con Amar Mascotas). Se dieron indicaciones sobre la administración de los medicamentos y la posología. Fluoresceína para diagnóstico de úlcera superficial.\nTramadol 1 mg/kg y meglumina flunixin 1 mg/kg para el dolor y la inflamación.\nReceta de cicatrizante óptico con antibióticos (ungüento).\nTramadol 20 mg.\nCollar isabelino para evitar que el perro se frote el ojo afectado. EOG - Sensorio levemente deprimido. EOP - Úlcera corneal superficial en el ojo izquierdo, que abarca 1/4 del ojo. \N \N 493 582 \N 89 712 {"studies": [], "medications": [], "specialities": []} +510 2025-03-06 22:38:51.749005+00 2025-03-06 22:38:51.749014+00 f t Disbacteriosis. Realizar control geronte anual Penicilina estrepto inyectable.\nDieta zanahoria bien cocida hasta que defeque normal. Diarreas.\nPaciente geronte , con pérdida de visión y cataratas. Bajo score corporal. Poliurea.\nIntestinos con leve inflamación sin dolor.\nAno irritado, T37.5.\nOdontolitiasis y severa enfermedad periodontal.\nSoplo. \N \N 407 486 \N 68 779 {"studies": ["8", "3"], "medications": [{"id_medicina": "1034", "next_application_months": 0}], "specialities": []} +526 2025-03-11 21:20:47.897886+00 2025-03-11 21:20:47.897895+00 f t . sugiero realizar pcr ehrichia por venir de una zona endemica. ninguno canino macho entero 2 años \nrescatado de provincia . hace 1 mes vive en la casa y convive con una dachshund .\nrealizaron estudios de sangre en leocan hace 1 mes \N \N 548 645 \N 88 792 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1168", "next_application_months": 3}], "specialities": []} +559 2025-03-21 16:45:44.239697+00 2025-03-21 16:45:44.239707+00 f t Extracción de sangre chequeo rutina. Sin recomendaciones Sin tto Visita para extracción de sangre. Se deja muestra para que retire el laboratorio. \N \N 541 637 \N 91 850 {"studies": [], "medications": [], "specialities": []} +1526 2025-08-21 18:12:23.214223+00 2025-08-21 18:12:23.214234+00 f t . . . . \N \N 7038 5756 \N 100 2185 \N +336 2025-01-22 19:28:13.646587+00 2025-01-22 19:28:13.646594+00 f t Signos compatibles con hematuria, posible cistitis y molestias gastrointestinales, con antecedentes de oliguria y comportamiento de ingestión de objetos. Realizar ecografía abdominal para evaluar vejiga y tracto urinario.\r\n\r\nMonitorear vómitos y realizar estudios complementarios si persisten.\r\n\r\nReducir progresivamente la ración para favorecer pérdida de peso.\r\n\r\nCepillado regular para manejo de la muda.\r\n\r\nVigilar ingesta, excreción y cambios clínicos. Vacunación quíntuple y antirrábica. Alimentación urinary y Urovier en curso. Lupe, una canina mestiza de 6 años y 8 kg, requiere bozal durante los exámenes. Su temperatura, frecuencia cardíaca y respiratoria son normales. No se detectaron alteraciones en abdomen, corazón o pulmones. Presenta caída de pelo estacional.\r\n\r\nRecientemente mostró hematuria, vómitos de alimento sin digerir, molestias al orinar y defecar. La palpación abdominal reveló una vejiga pequeña con leve dolor. Toleró pollo y tuvo materia fecal blanda. Hace dos semanas presentó oliguria y fraccionó un juguete. \N 265 309 114 68 377 \N +360 2025-01-28 14:00:57.974098+00 2025-01-28 14:00:57.974105+00 f t Estado de salud normal, apto para vacunación. Continuar con el esquema de vacunación y desparasitación según el calendario veterinario. Realizar un control anual de salud. Se administraron las siguientes vacunas:\r\n\r\nTriple felina.\r\nAntirrábica. Ragnar, un gato Común Europeo macho de 8 meses, de color marrón, presentó un examen orgánico general sin particularidades:\r\n\r\nSensorio normal.\r\nGanglios, piel, ojos y cavidad bucal sin alteraciones visibles.\r\nApetito, micción y defecación normales.\r\nPalpación abdominal sin hallazgos.\r\nAuscultación cardíaca y pulmonar sin particularidades. \N 362 427 114 70 477 \N +382 2025-01-29 20:46:51.251011+00 2025-01-29 20:46:51.251019+00 f t Hematuria recurrente posiblemente por estrés. Ecografía con sedimento en vejiga. Presencia de bacterias en análisis previo sugiere posible infección urinaria. Repetir análisis de orina con recolección adecuada para evaluar bacterias y cristales. Informar resultados a Amar Mascotas. En próxima consulta, considerar pruebas para VIF y ViLeF. Suspender Meloxivet, continuar con Cisticalm e iniciar enrofloxacina 25 mg cada 24 h VO. Ofrecer Urinary S/O de RC en pouch por 48 h para aumentar hidratación. Runa se encuentra alerta, con mucosas rosadas, hidratada y en condición corporal ideal. FR y FC normales, sin hallazgos en la auscultación. Abdomen blando y vejiga vacía. Es muy inquieta, lo que dificulta la revisión. \N 370 435 114 77 488 \N +404 2025-02-07 22:54:12.639681+00 2025-02-07 22:54:12.639689+00 f t Vacunación anual Se realiza vacunación triple felina. + antirrábica. Felino, Común Europeo, hembra, 3 años, negro y blanco. EOG correcto. Sensorio normal. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar sin particularidades. \N 377 443 113 70 503 \N +445 2025-02-12 13:06:21.121269+00 2025-02-12 13:06:21.121276+00 f t Sospecha de insuficiencia renal con azotemia. Fluidoterapia subcutánea: Se administraron 90 ml/kg de solución subcutánea debido a la dificultad de manejo del paciente. \N 413 492 114 1 590 \N +468 2025-02-21 14:41:31.105371+00 2025-02-21 14:41:31.105385+00 t t A A AA A \N \N 443 525 \N 2 643 {"studies": ["8"], "medications": [{"id_medicina": "1149", "next_application_months": 3}, {"id_medicina": "52", "next_application_months": 0}, {"id_medicina": "1103", "next_application_months": 0}], "specialities": ["8"]} +490 2025-02-26 20:57:01.587488+00 2025-02-26 20:57:01.587502+00 f t Sin problemas clínicos detectados. Ninguna recomendación adicional en este momento, ya que el estado general es muy bueno. Aplicación de vacuna triple felina (Felocell). Estado general muy bueno. \N \N 464 550 \N 78 673 {"studies": [], "medications": [], "specialities": []} +64 2024-10-30 14:13:09.606+00 2024-10-30 14:13:09.606+00 f t \N 132 138 \N 6 148 \N +511 2025-03-06 23:59:49.952752+00 2025-03-06 23:59:49.952767+00 f t Disbacteriosis Dieta con zanahoria cocida de varios días antes de retomar comida habitual.\nDescartar patología endocrina con un perfil básico, evaluar colesterol e inonigrama sobretodo. Penicilina estrepto Diarrea. Geronte con debilidad de tren posterior crónico, odontolitiasis y enfermedad periodontal.\nBradicardia. T37.6\nMucosas rosa, sin molestias abdomen \N \N 407 485 \N 68 778 {"studies": ["8", "3"], "medications": [{"id_medicina": "1034", "next_application_months": 0}], "specialities": []} +527 2025-03-11 21:25:21.030281+00 2025-03-11 21:25:21.030289+00 f t cuerpo extraño obstructivo indico ecografia abdominal urgente realizo pasaje de ringer lactato sc ( 250 ml) + ranitidina + novotioc + grupo b + meloxivet + tramdol + cerenia felino macho castrado 2 años 5 kg\nconsulta por anorexia de 3 dias de evolucion + vomitos 3/4 por dia ( ultimos fecaloides). no defeca hace 72 hs .\ndeshidratacion 7 %\nestado deprimido.\n aus s/p\npalpacion abdominal, marcada algia en meso/hipograstrio + distension abdominal,.\nvejiga pequeña \N \N 552 649 \N 88 797 {"studies": [], "medications": [], "specialities": []} +541 2025-03-18 19:11:00.203463+00 2025-03-18 19:11:00.203483+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal.\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N \N 449 532 \N 1 650 {"studies": [], "medications": [], "specialities": []} +551 2025-03-19 02:08:35.399509+00 2025-03-19 02:08:35.399517+00 f t - sugiero realizar perfil hepatico + vif vilef por PCR. \n(la gatita tuvo una camada de crias, pasó por 4 tránsitos hasta que fué adoptada) - consulta para vacunacion.\nfelino hembra castrada 1 año aprox, comun europeo tricolor \nauscultacion s/p\nCC 3-4\nnormohidratada\nnormotermica \N \N 547 644 \N 88 791 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +560 2025-03-21 23:53:06.545048+00 2025-03-21 23:53:06.545055+00 f t Extracción de sangre Extracción de sangre Extracción de sangre Extracción de sangre \N \N 528 623 \N 70 851 {"studies": ["8"], "medications": [], "specialities": []} +567 2025-03-25 13:01:57.184254+00 2025-03-25 13:01:57.184262+00 f t Dermatitis alérgica? Tritohexidin plus en todas las zonas lesionadas, reevaluar a las 48 hs, posiblemente lo hará con su veterinario de cabecera. Se aplica dexametasona y tribiotic. Es el perro del papá, lo está cuidando por el finde. Tiene antecedentes de dermatitis y su veterinario lo trata con corticoides y a veces antibióticos. \nPara revisarlo hay que colocar bozal.\nEn esta oportunidad presenta alopecía parcial en dorso del lomo y al rededor del rabo, piel enrojecida en cara interna de muslos y al rededor de testículos, se muerde MAD y tmb al costado de MPI. Reacciona muy intensamente al manipular todas las zonas que le molestan: llora, gruñe y quiere morder. \N \N 606 708 \N 91 885 {"studies": [], "medications": [], "specialities": []} +337 2025-01-22 19:44:57.545063+00 2025-01-22 19:44:57.54507+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. Gato de mal temperamento \N 291 345 114 2 386 \N +361 2025-01-28 14:04:17.066286+00 2025-01-28 14:04:17.066295+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 363 428 114 2 479 \N +383 2025-01-29 20:49:47.269705+00 2025-01-29 20:49:47.269713+00 f t Obstipación de 24 h con dolor abdominal y lumbar asociado. Dermatitis perineal severa por pliegues de sobrepeso. Dieta RC Gastrointestinal Fibre, administrar 3-4 jeringas de aceite comestible y agua vía oral. Seguimiento en 24 h para evaluar evolución y tratamiento de la zona perineal. Pronóstico reservado. Se administra dexametasona (2 mg), ranitidina, novotioc, tramadol (10 mg) y enrofloxacina. Se planifica una toilette adecuada en 24 h. Gata alerta, mucosas rosadas, hidratada y con obesidad marcada. FR y FC normales. Dolor moderado a la palpación abdominal con materia fecal presente, pero difícil de evaluar por el sobrepeso. Dolor lumbar y al levantar la cola. Dermatitis húmeda e intensa en el periné con mal olor, pliegues por sobrepeso que cubren la vulva y el ano en reposo. Durante la consulta, orina escasamente y defeca un pequeño trozo de materia fecal. \N 373 438 114 77 494 \N +405 2025-02-07 22:55:50.378571+00 2025-02-07 22:55:50.378578+00 f t Realizó vacunación antirrábica+ séxtuple c/lepto. Se propone realizar tratamiento con átomo papilomatosis e interconsulta cardiológica. canino, caniche, beige, 12 años. EOG: sensorio normal; ganglios, piel normales; y cavidad bucal con sarro. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar: soplo mitral 2/6\r\n\r\nPresenta abundante cantidad de verrugas \N 377 443 113 82 529 \N +446 2025-02-12 13:08:40.321963+00 2025-02-12 13:08:40.321969+00 f t Posible irritación oral por contacto con químico\r\nEstornudos atribuidos a virosis Controlar la evolución durante 7 días, ya que se espera una mejoría espontánea.\r\nObservar si el babeo persiste o empeora, lo que podría requerir una nueva evaluación.\r\nEvitar acceso a sustancias químicas, revisando posibles fuentes de exposición en el hogar. No se indicó medicación específica en esta consulta. Especie: Felino\r\nRaza: Siamés\r\nSexo: Macho castrado\r\nEdad: 3 años\r\nColor: Marrón\r\nExamen orgánico general: Sin particularidades\r\nSensorio normal\r\nApetito, micción y defecación normales \N 416 495 114 70 585 \N +469 2025-02-21 18:00:11.718673+00 2025-02-21 18:00:11.718685+00 t t AAA AAA AAA AAA \N \N 466 553 \N 80 675 {"studies": ["3", "12"], "medications": [{"id_medicina": "1155", "next_application_months": 11}, {"id_medicina": "441", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": ["8"]} +491 2025-02-26 20:58:25.474696+00 2025-02-26 20:58:25.474708+00 f t Sin problemas clínicos detectados. Ninguna recomendación adicional en este momento, ya que el estado general es muy bueno. Aplicación de vacuna triple felina (Felocell). Estado general muy bueno. \N \N 464 551 \N 78 672 {"studies": [], "medications": [], "specialities": []} +512 2025-03-07 00:14:28.283623+00 2025-03-07 00:14:28.283633+00 f t Consulta para vacunación. Vacunación para ViLeF (2 dosis separadas x 30 días x ser primo vacunación) previo estudio de sangre. Por la edad se recomienda un control cardiológico y un panel general de sangre anual. (Sin urgencia) Sin tto. Come royal canin weight control, hábitos mixtos: principalmente indoor pero sale a la calle también y en la puerta hay gatos de una casa vecina (que se desconoce status sanitario). Timón no se vacuna desde el 2022 y no le hacen hecho estudios recientes. Tiene un antecedente de bronquitis tras obra en la casa.\nEOG s/p \N \N 541 637 \N 91 780 {"studies": ["8", "10"], "medications": [{"id_medicina": "1157", "next_application_months": 12}, {"id_medicina": "1154", "next_application_months": 12}], "specialities": ["8"]} +528 2025-03-11 21:31:05.244938+00 2025-03-11 21:31:05.244946+00 f t linfoma + insuficiencia renal incipiente ? sugiero mantenerlo con dicha medicacion + suero cada 24 hs . mas alimentacion palatable para estimular el consumo. segun evolucion/ respuesta al tto, tomamos una desicion realizo pasaje de ringer lactato sc (500 ml) + grupo b + ranitidinia j+ noviotic + tramdol + dexa a 0.3 mg/kg + furosemida 1 mg/kg canino macho castrado 14 años 28 kg \nconsulta por decaimiento , incapacidad para mentenerse correctamente en estacion, debilidad tren posterior ,anorexia . evolucion 24 -48 hs\nnormotermico , deshidratacion 7-8 %\nestado deprimido,\nedema en ventral de mandibula\natrofia musculos temporales\nbaja cc \naus s/p\ncitologia de ln . linfoma \N \N 410 489 \N 88 786 {"studies": [], "medications": [], "specialities": []} +542 2025-03-18 19:15:04.477265+00 2025-03-18 19:15:04.477275+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal.\nSi observas algún cambio en su comportamiento o síntomas contactanos Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N \N 461 546 \N 1 665 {"studies": [], "medications": [], "specialities": []} +552 2025-03-19 02:17:49.057721+00 2025-03-19 02:17:49.057732+00 f t enfermedad renal cronica ? solicito sangre: perfil hepatico + AOC + UPC\nsolicito control cardiologico ( electro + ecocardio)\nDejo las correspondientes ordenes en el domicilio para solicitar turno para extraccion y control cardiologico comenzamos tto con ringer lactato sc (200 ml cada 48hs) + ranitidina clamoxyl y meloxivet ( inyectable). 4 aplicaciones, 1 cada 48 hs .\nindico alimentacion palatable felino macho castrado 15 años (aprox) .\nconsulta clinica\nestado alerta\nCC 2\ndeshidratacion 7-8%\naus: soplo auscultable tanto en hemitorax derecho como en izquierdo\npalpacion abdominal; renomegalia izquierda? abdomen blando, materia fecal en colon.\ncav bucal: enfermedad periodontal, retraccion gingival, perdida de piezas dentarias \N \N 572 670 \N 88 826 {"studies": [], "medications": [], "specialities": []} +583 2025-03-29 15:42:51.630209+00 2025-03-29 15:42:51.630218+00 f t Aplico atr y sextuple . . Eog spp \N \N 593 694 \N 80 865 {"studies": [], "medications": [], "specialities": []} +602 2025-04-01 21:54:55.462639+00 2025-04-01 21:54:55.462648+00 f t - - Se vacuna con triple felina y rabia Ego : s/p \N \N 570 668 \N 1 824 {"studies": [], "medications": [], "specialities": []} +338 2025-01-22 19:59:40.032229+00 2025-01-22 19:59:40.032236+00 f t La paciente presenta un estado general adecuado, pero con un leve aumento en los ruidos pulmonares, lo que puede indicar una ligera alteración en la función respiratoria que será monitoreada. Es recomendable realizar un seguimiento de la paciente con un control posterior para evaluar cualquier cambio en los ruidos pulmonares y en la función respiratoria. Se debe revisar la evolución de las radiografías de tórax y estar atento a cualquier signo clínico que indique un empeoramiento respiratorio. Se realizó la vacunación triple felina y antirrábica de acuerdo con el protocolo de vacunación. Se indicaron radiografías de tórax en vistas laterales (LL) y dorsoventrales (DV) para evaluar en detalle el estado de los pulmones y el sistema respiratorio. Atenea es una felina de raza Común Europeo, de 10 años de edad, de color gris. Se encuentra en un estado general correcto, con un sensorio normal. Durante el examen físico, los ganglios, la piel, los ojos y la cavidad bucal no presentan alteraciones. Su apetito, micción y defecación son normales. La palpación abdominal no revela ninguna particularidad. La auscultación cardíaca es normal, sin ruidos adicionales. En la auscultación pulmonar se observan sonidos respiratorios ligeramente aumentados (SLTB), con ruidos pulmonares presentes. \N 286 340 114 70 381 \N +529 2025-03-11 21:33:04.100608+00 2025-03-11 21:33:04.100617+00 f t ninguno ninguna vacunacion anual felino macho 5 años castrado 5 kg \N \N 529 624 \N 88 757 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +1 2024-06-26 17:00:00+00 2024-06-26 17:00:00+00 f t Clienta transfirio $16k la diferencia se la abona al vete \N 31 31 \N 1 32 \N +2 2024-06-27 20:00:00+00 2024-06-27 20:00:00+00 f t Cliente pago 100% transferencia \N 33 33 \N 1 34 \N +3 2024-07-03 15:00:00+00 2024-07-03 15:00:00+00 f t ** Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Cliente pagó 50% transferencia y 50% efectivo \N 34 34 \N 1 35 \N +4 2024-07-04 16:00:00+00 2024-07-04 16:00:00+00 f t ** Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. \N 36 36 \N 1 37 \N +5 2024-10-30 14:13:08.577+00 2024-10-30 14:13:08.577+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 37 37 \N 1 38 \N +6 2024-07-08 15:00:00+00 2024-07-08 15:00:00+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 38 38 \N 1 39 \N +7 2024-07-13 09:00:00+00 2024-07-13 09:00:00+00 f t Cliente pagó una parte transferencia \N 40 41 \N 1 41 \N +8 2024-10-30 14:13:08.63+00 2024-10-30 14:13:08.63+00 f t Cliente pago 100% transferencia \N 41 42 \N 1 42 \N +9 2024-10-30 14:13:08.642+00 2024-10-30 14:13:08.642+00 f t Cliente pagó 10k transferencia y resto transferencia \N 42 43 \N 21 43 \N +10 2024-07-13 19:00:00+00 2024-07-13 19:00:00+00 f t Cliente pagó 10k transferencia y resto efectivo \N 43 44 \N 2 44 \N +11 2024-07-14 16:00:00+00 2024-07-14 16:00:00+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 44 45 \N 1 45 \N +12 2024-07-16 14:00:00+00 2024-07-16 14:00:00+00 f t ** Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos." Cliente pagó 50% transferencia y 50% efectivo \N 45 46 \N 1 46 \N +13 2024-10-30 14:13:08.693+00 2024-10-30 14:13:08.693+00 f t El diagnóstico presuntivo es de un "parche caliente", relacionado con la piodermia en la zona afectada. Se recomienda un seguimiento cercano de la zona tratada para evaluar la evolución de la piodermia y el estado del tumor. Además, es importante que el propietario controle cualquier signo de molestia adicional o cambios en la condición del tumor. Se realizó una tricotomía en la zona afectada, seguida de limpieza y desinfección adecuada. Se aplicó clamoxyl y dexametasona (0,5 mg/kg) en la zona. Se indica continuar con el tratamiento antibiótico y antiinflamatorio por vía oral. La consulta se realizó por halitosis y control de tumores de mama. Durante la anamnesis, el propietario informa que tiene un tumor que se lastimó y le está molestando mucho. Se observa una piodermia húmeda en la zona de la axila izquierda, que el propietario cree que es un tumor que se ha ulcerado. \N 46 47 110 1 47 \N +14 2024-07-17 19:00:00+00 2024-07-17 19:00:00+00 f t ** Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. \N 47 48 \N 1 48 \N +15 2024-07-19 13:00:00+00 2024-07-19 13:00:00+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 48 49 \N 1 49 \N +16 2024-10-30 14:13:08.731+00 2024-10-30 14:13:08.731+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 49 50 \N 1 50 \N +17 2024-07-22 16:00:00+00 2024-07-22 16:00:00+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 50 51 \N 1 51 \N +18 2024-07-26 14:00:00+00 2024-07-26 14:00:00+00 f t Cliente pago 100% transferencia \N 52 53 \N 14 53 \N +19 2024-10-30 14:13:08.776+00 2024-10-30 14:13:08.776+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 53 54 \N 1 54 \N +20 2024-07-28 12:00:00+00 2024-07-28 12:00:00+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 54 55 \N 1 55 \N +21 2024-10-30 14:13:08.801+00 2024-10-30 14:13:08.801+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 55 56 \N 1 56 \N +22 2024-10-30 14:13:08.845+00 2024-10-30 14:13:08.845+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 61 62 \N 1 62 \N +23 2024-10-30 14:13:08.857+00 2024-10-30 14:13:08.857+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 62 63 \N 1 63 \N +24 2024-10-30 14:13:08.869+00 2024-10-30 14:13:08.869+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 63 64 \N 1 64 \N +25 2024-10-30 14:13:08.88+00 2024-10-30 14:13:08.88+00 f t Cliente pagó 50% transferencia y 50% efectivo \N 64 65 \N 1 65 \N +26 2024-10-30 14:13:08.947+00 2024-10-30 14:13:08.947+00 f t ** Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Cliente pagó 50% por MP vacunación, total de los servicios $91.000 \N 73 75 \N 1 75 \N +27 2024-08-23 17:00:00+00 2024-08-23 17:00:00+00 f t \N 77 79 \N 14 80 \N +28 2024-10-30 14:13:09.007+00 2024-10-30 14:13:09.007+00 f t \N 79 81 \N 1 83 \N +29 2024-08-29 17:00:00+00 2024-08-29 17:00:00+00 f t \N 86 89 \N 1 91 \N +30 2024-10-30 14:13:09.089+00 2024-10-30 14:13:09.089+00 f t \N 88 92 \N 1 94 \N +31 2024-10-30 14:13:09.107+00 2024-10-30 14:13:09.107+00 f t \N 90 94 \N 1 96 \N +66 2024-10-30 14:13:09.627+00 2024-10-30 14:13:09.627+00 f t ** Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos." \N 60 4 \N 2 150 \N +67 2024-10-30 14:13:09.639+00 2024-10-30 14:13:09.639+00 f t \N 133 140 \N 1 151 \N +68 2024-10-30 14:13:09.651+00 2024-10-30 14:13:09.651+00 f t \N 134 141 \N 8 152 \N +69 2024-10-30 14:13:09.662+00 2024-10-30 14:13:09.662+00 f t \N 135 142 \N 2 153 \N +70 2024-10-30 14:13:09.674+00 2024-10-30 14:13:09.674+00 f t Posible complejo respiratorio felino. Se informa al propietario que con la medicación aplicada, es posible que la gatita evolucione de forma favorable. Dependiendo de la evolución, mañana se indicará medicación oral. Se aplicaron antibióticos y antiinflamatorios. Gatita hembra de aproximadamente 3 años presenta secreción mucosa blanquecina por la nariz y estornudos esporádicos. Al examen general, se encuentra normotérmica y normohidratada, y la auscultación torácica no presenta particularidades. 2024-11-19 136 143 110 1 154 \N +71 2024-10-30 14:13:09.697+00 2024-10-30 14:13:09.697+00 f t \N 138 145 \N 2 157 \N +72 2024-10-30 14:13:09.719+00 2024-10-30 14:13:09.719+00 f t \N 140 147 \N 5 160 \N +73 2024-10-30 14:13:09.731+00 2024-10-30 14:13:09.731+00 f t \N 141 148 \N 1 161 \N +74 2024-10-30 14:13:09.743+00 2024-10-30 14:13:09.743+00 f t Sin particularidades relevantes. Perrita en buen estado de salud general. Seguir con los controles veterinarios regulares y mantener su esquema de vacunación actualizado. Estar atenta a cualquier cambio en su comportamiento o salud durante el periodo de celo. Se aplicaron las vacunas correspondientes: Séxtuple y Rabia. La perrita tiene 5 años, recién cumplidos. En el examen físico general, no se encontraron particularidades importantes. Está en celo, pero no presenta otros signos fuera de lo común. \N 142 149 \N 1 162 \N +75 2024-10-30 14:13:09.761+00 2024-10-30 14:13:09.761+00 f t Aguardando resultados de myciplasma, que demora entre 5 y 7 dias habiles. El valor \N 144 151 \N 1 164 \N +76 2024-10-30 14:13:09.773+00 2024-10-30 14:13:09.773+00 f t Aguardando resultados de myciplasma, que demora entre 5 y 7 dias habiles \N 144 152 \N 1 165 \N +77 2024-10-30 14:13:09.798+00 2024-10-30 14:13:09.798+00 f t ** Se entregó la orden para el coproparasitológico y el duplicado de los protocolos para el laboratorio. Una vez que tengan la muestra, serán contactados para hacer el análisis. Luego de recibir los resultados, se hará una consulta por telemedicina para evaluarlos y proceder con la desparasitación adecuada. Lisandro en HC le indicó hacerle un análisis de materia fecal para poder avanzar con la desparasitación. \N 147 155 \N 1 168 \N +78 2024-10-08 21:00:00+00 2024-10-08 21:00:00+00 f t \N 123 128 \N 1 171 \N +79 2024-10-30 14:13:09.846+00 2024-10-30 14:13:09.846+00 f t \N 151 160 \N 25 174 \N +80 2024-10-30 14:13:09.865+00 2024-10-30 14:13:09.865+00 f t Nos queda una diferencia $12.800 a favor, la dejamos para una proxima consulta si te parece. De los $77.800 - $ 65.000 (consulta + Desparasitación). \N 153 162 \N 6 176 \N +81 2024-10-30 14:13:09.886+00 2024-10-30 14:13:09.886+00 f t Se le ofrece 10% \N 152 161 \N 1 179 \N +82 2024-10-30 14:13:09.898+00 2024-10-30 14:13:09.898+00 f t \N 155 164 \N 1 180 \N +83 2024-10-30 14:13:09.911+00 2024-10-30 14:13:09.911+00 f t Pérdida de sensibilidad profunda, lo que sugiere un pronóstico muy grave, con poca o nula posibilidad de recuperación. Acompañar el proceso con apoyo emocional y asesoría si los propietarios lo necesitan. No se indicó tratamiento adicional Después de discutir el estado de la perrita y las opciones, los propietarios decidieron realizar la eutanasia debido al mal pronóstico y la calidad de vida comprometida. La perrita fue examinada y se observó que había perdido la sensibilidad profunda, lo cual indica un daño severo en su sistema nervioso. No presentaba respuesta a estímulos en sus extremidades. \N 156 165 \N 1 181 \N +84 2024-10-30 14:13:09.938+00 2024-10-30 14:13:09.938+00 f t \N 158 167 \N 9 185 \N +85 2024-10-30 14:13:09.95+00 2024-10-30 14:13:09.95+00 f t \N 159 168 \N 8 186 \N +86 2024-10-30 14:13:09.963+00 2024-10-30 14:13:09.963+00 f t \N 160 169 \N 9 187 \N +87 2024-10-30 14:13:09.975+00 2024-10-30 14:13:09.975+00 f t \N 161 170 \N 1 188 \N +88 2024-10-30 14:13:09.994+00 2024-10-30 14:13:09.994+00 f t ** Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. \N 163 172 \N 1 190 \N +89 2024-10-30 14:13:10.006+00 2024-10-30 14:13:10.006+00 f t Eutanasia realizada \N 164 173 \N 1 191 \N +1679 2025-09-09 16:29:43.433554+00 2025-09-09 16:29:43.433567+00 f t . . . . \N \N 7395 6077 \N 90 2273 \N +91 2024-10-30 14:13:10.06+00 2024-10-30 14:13:10.06+00 f t ** Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. \N 170 179 \N 1 197 \N +92 2024-10-30 14:13:10.07+00 2024-10-30 14:13:10.07+00 f t \N 160 169 \N 9 198 \N +93 2024-10-30 14:13:10.095+00 2024-10-30 14:13:10.095+00 f t Episodios recientes de vómito, lo cual no es usual en la paciente. Se observó la necesidad de complementar el tratamiento anterior debido a estos síntomas. Se recomienda consultar con su veterinario de cabecera para evaluar los próximos pasos del tratamiento, ya que esta fue la última aplicación de domicilio acordada. Se administró metoclopramida (antiemético) para controlar los vómitos recientes. Esta medicación se sumó al tratamiento previamente indicado por el veterinario de turno. Se pudo realizar la aplicación sin inconvenientes. La gatita se encontraba activa y algo nerviosa durante la consulta. 2024-12-04 160 169 110 9 202 \N +95 2024-10-30 19:30:56.367+00 2024-10-30 19:30:56.367+00 f t Ninguno Vacunación antirrabica anual Perro se encuentra en buen estado de salud 2025-10-30 346 182 \N 1 1 \N +96 2024-11-05 20:22:54.052+00 2024-11-05 20:22:54.052+00 f t Se indicó una posible parasitosis gastrointestinal, pero no se observan otros síntomas significativos. Si se desea confirmar la presencia de parásitos, se recomienda realizar un análisis coproparasitológico en 15 días para mayor tranquilidad y control. Se indicó un antiparasitario interno y externo para prevenir y tratar cualquier infestación de parásitos. Gatito en buen estado general. Se observó la presencia de cestodos en material fecal, lo cual puede ser un signo de parásitos internos. 2024-11-19 183 191 110 1 214 \N +103 2024-11-12 21:00:08.977+00 2024-11-12 21:00:08.977+00 f t Lo más probable es que sea una cistitis por cálculos renales o puede ser infección renal también Le di antibiótico, le di antiflamatorio, y le di analgésico le di que 48 horas a revisar también el RCT dos o tres productos como CityCal y uno de Flogin para que le sigan y que vayamos viendo le cambié la alimentación también le puse la alimentación urinaria Gatito macho de tres años creo más o menos, negro, bastante quieto, bastante difícil para manejar, pero bueno más o menos. \N 190 200 113 2 225 \N +1527 2025-08-23 00:12:37.07507+00 2025-08-23 00:12:37.075078+00 f t Vacunas . Vacunación EOG normal \N \N 1888 5828 \N 92 2175 \N +97 2024-11-06 19:58:40.821+00 2024-11-06 19:58:40.821+00 f t Se continúa con el tratamiento previamente indicado, y se sugiere monitorear los síntomas de vómito para confirmar que no persistan o empeoren. Hasta el momento, no se han identificado complicaciones mayores. Se recomienda monitorear de cerca el estado de la paciente y reportar cualquier cambio o síntoma adicional al veterinario derivante, especialmente en relación con los episodios de vómito. Se sugirió al propietario coordinar una consulta de seguimiento la próxima semana para evaluar la respuesta al tratamiento y cualquier ajuste necesario. Se aplicó la medicación indicada, incluyendo el uso de una jeringa y una aguja nuevas para la aplicación de las dosis. La paciente respondió de forma adecuada al tratamiento durante la visita, sin presentar reacción adversa inmediata. Se aplicó la medicación previamente indicada por el veterinario derivante. Durante la semana, la paciente presentó algunos episodios de vómito, lo cual fue comunicado al propietario con la indicación de consultar nuevamente al veterinario derivante para ajustar el tratamiento o revisar síntomas adicionales. 2024-11-12 160 169 110 9 201 \N +98 2024-11-06 20:15:28.518+00 2024-11-06 20:15:28.518+00 f t Dado el historial de insuficiencia renal, se sospecha que el cuadro renal puede haberse agravado con el tiempo, considerando la edad y el comportamiento del gato que puede estar relacionado con malestar físico adicional. Las propietarias deben administrar gabapentina en la dosis indicada. Luego, deberán esperar aproximadamente dos horas para que el medicamento surta efecto y, una vez sedado el gato, coordinar el turno para la extracción de sangre en ayuno. Dado el carácter del gato, se aclaró que este método es la única forma viable de manejo. Se indicó la administración de gabapentina para reducir el estrés y facilitar la manipulación en futuras evaluaciones. Además, se prescribió omeprazol para aliviar la posible molestia gástrica. También se dejó una orden para realizar un perfil general de sangre completo (sin muestra de orina), una vez que el gato esté bajo los efectos de la gabapentina. Este es un gatito de 12 años con antecedentes de insuficiencia renal diagnosticada hace un año. Actualmente, presenta un estado general complicado para la evaluación física debido a su comportamiento extremadamente agresivo, lo cual imposibilita un examen clínico detallado en esta visita. Gato con temperamento extremadamente agresivo, lo cual imposibilita la manipulación directa tanto por parte de las veterinarias como de sus propietarias. \N 185 193 110 1 216 \N +99 2024-11-08 12:28:23.358+00 2024-11-08 12:28:23.358+00 f t Hematouria posiblemente asociada a una combinación de factores de estrés ambiental y cambios en la dieta. La reciente transición a un alimento de baja calidad puede estar contribuyendo a problemas urinarios. Se recomendó reducir los factores de estrés en el entorno, asegurando que la gatita se sienta segura en su territorio. Además, se dejó una orden para realizar un análisis de orina. Se aconseja contactar a AMAR para coordinar la toma de la muestra una vez recolectada. Se indicó comenzar con una dieta de alimento urinario para mejorar la salud de las vías urinarias. Se recetaron Meloxicam como antiinflamatorio, Amoxicilina para tratar cualquier posible infección bacteriana, y Cysticalm para ayudar a reducir el malestar urinario. Gatita de 10 años, recientemente ha presentado episodios de orina con gotas de sangre. El propietario reporta que esto comenzó tras la mudanza a una nueva vivienda. En su nuevo hogar, es intimidada por otros gatos del barrio que ingresan a su territorio, lo cual podría estar generando estrés adicional. Se observan signos de estrés y posible malestar relacionado con las vías urinarias. La gatita muestra signos de estrés posiblemente debido a la intimidación por parte de otros gatos que ingresan a su nuevo territorio. Esto, sumado al cambio de dieta a un alimento de baja calidad, podría estar agravando su condición urinaria." 2024-11-15 186 196 110 1 222 \N +100 2024-11-08 14:15:13.124+00 2024-11-08 14:15:13.124+00 f t Se sospecha de espondilosis y posible compresión medular, condiciones que suelen provocar dolor crónico y limitación en la movilidad, especialmente en perros de edad avanzada y peso elevado. Se explicó al propietario el pronóstico asociado a este tipo de patologías en perros gerontes, aclarando que el tratamiento es de carácter paliativo, enfocado en brindarle la mayor calidad de vida posible. Se recomienda seguir las indicaciones de medicación y monitorear la respuesta de la perrita, manteniendo comunicación para evaluar cualquier ajuste necesario. Para el manejo del dolor, se indicó tratamiento paliativo, que incluye la administración de aceite de cannabis, tramadol y pregabalina, además de la medicación previa que estaba recibiendo. Este enfoque busca aliviar el dolor y mejorar su confort general. La perrita es una Golden Retriever geronte, de 13 años y aproximadamente 45 kg, que presenta dolor significativo en la columna y miembros posteriores, acompañado de debilidad en las patas traseras. Estos síntomas afectan su movilidad y calidad de vida. La perrita tiene un carácter que puede dificultar el examen físico detallado, especialmente en situaciones de dolor intenso. 2024-12-06 177 194 110 1 207 \N +101 2024-11-08 22:03:55.177+00 2024-11-08 22:03:55.177+00 f t Se sospecha de una posible insuficiencia renal, aunque se necesita un análisis de sangre para confirmar o descartar esta condición. También se considera la posibilidad de alguna afección metabólica o hepática. Se dejó una orden para realizar un análisis de sangre, que incluye estudios de función renal, hepática y metabólica. Se indicó administrar pregabalina para sedar al gatito, facilitando una futura evaluación completa con extracción de sangre. Además, se recomendó combinar la pregabalina con gabapentina para una sedación adecuada. Debido a la actitud del gatito, que no permitió una revisión completa, el examen físico fue limitado. Se observa que es un gato de edad avanzada con posibles signos de comportamiento anómalo, pero no se pudieron realizar más evaluaciones físicas en esta ocasión. El gato presenta un temperamento difícil y se mostró muy indócil, incluso con sus propietarios, lo que dificultó la revisión física. 2024-11-14 184 192 110 1 215 \N +102 2024-11-12 18:00:47.845+00 2024-11-12 18:00:47.845+00 f t El paciente presenta una leve pérdida de peso y una lesión costrosa en la zona de las fosas nasales, posiblemente relacionada con parásitos externos o alguna irritación cutánea. No se encuentran signos de infecciones mayores o problemas internos en e Se recomienda una castración pronta del paciente. Se indicó la aplicación de Advocate pipeta para desparasitación tanto externa como interna, con repetición en 30 días. Además, se prescribió el uso de crema 6A para aplicar dos veces al día en la lesión de la cara. El paciente presenta mucosas rosadas y pulso fuerte. Frecuencia cardíaca de 120, sin presencia de soplos, con una auscultación torácica normal. No se palpan ganglios inflamados y su nivel de hidratación es adecuado. Ha perdido algo de peso, lo que permite palpar las apófisis espinosas, pero su apetito es bueno y no ha tenido vómitos, aunque sí presentó una materia fecal semilíquida sin sangre. Su temperatura corporal es de 38.5°C. Se observa una pequeña lesión costrosa en el lateral de las fosas nasales y se rasca durante la consulta. A pesar de esto, el animal se muestra animado y en buen estado general. El paciente se mostró muy sociable y animado durante la consulta. 2024-12-09 187 197 110 6 223 \N +1680 2025-09-09 17:02:32.530951+00 2025-09-09 17:02:32.530961+00 f t laboratorio . . laboratorio \N \N 7323 6009 \N 100 2261 \N +104 2024-11-13 13:42:17.174+00 2024-11-13 13:42:17.174+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y desparasitar en 3 meses para asegurar el buen estado de salud del animal. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. 2025-01-08 193 204 110 1 229 \N +105 2024-11-15 18:00:58.642+00 2024-11-15 18:00:58.642+00 f t Posible lesión tumoral en la boca, sin confirmación sobre si se trata de un tumor, debido a la falta de una citología. La lesión causa sangrado y molestias a la gatita. Se sugiere evaluar la posibilidad de un chequeo de sangre para conocer el estado general de la gatita, especialmente su funcionalidad hepática y renal, dado su avanzada edad. Este chequeo permitirá definir mejor su condición de salud general. Si la lesión en la boca no muestra mejoría con el tratamiento, se recomienda reevaluar la posibilidad de realizar una citología de la masa, aunque sea invasivo. Se indicó tratamiento con antibióticos y antiinflamatorios para reducir el malestar y controlar el sangrado en la boca. Las uñas encarnadas fueron recortadas para evitar más molestias y sangrado. Gatita de aproximadamente 18 años con una lesión tumoral en la boca, la cual presenta sangrado y molestias. Las uñas estaban encarnadas, incrustadas en sus propias almohadillas, y también sangraban, por lo que se procedió a cortarlas. Dada su edad avanzada, se prefirió evitar procedimientos invasivos de diagnóstico que puedan generar un estrés significativo en la gatita. 2024-11-21 198 211 110 1 236 \N +106 2024-11-16 22:01:19.984+00 2024-11-16 22:01:19.984+00 f t Otitis media unilateral de evolución 48 horas aproximadamente, posiblemente asociada a ácaros. Se recomendó realizar un control a la semana, que puede ser virtual o presencial según evolución. Se solicitó observar cambios en el comportamiento y estado del oído, reportando cualquier signo de empeoramiento. Se realizó una limpieza exhaustiva del conducto auditivo externo para eliminar el exceso de cerumen. Se aplicó Frontline Spray como tratamiento tópico inicial para ácaros (del género Todectes). Se indicó un tratamiento de 14 días con Otovier NF en gotas, cuyas instrucciones fueron entregadas a la tutora. La paciente, Anouk, es una canina hembra de 10 años. Se constató otitis media unilateral con signos como rascado leve y ligera inclinación de la cabeza hacia el lado afectado. A la inspección, se observó cerumen con aspecto característico de borra de café en el conducto auditivo externo. La paciente se mostró tranquila durante el procedimiento, permitiendo realizar las manipulaciones necesarias sin inconvenientes. 2024-11-23 202 216 110 68 242 \N +107 2024-11-17 16:18:42.023+00 2024-11-17 16:18:42.023+00 f t S/p . Se recomienda análisis de sangre Perfil 7 (Rapela)como chequeo general y vacunación antirrábica + triple felina. Felino, hembra, 20 años, castrada. EOG correcto. Sensorio normal. Ganglios, piel, mamas, ojos, cavidad bucal sin particularidades. Apetito, micción, defecación normal.\r\n Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades \N 192 203 113 70 228 \N +108 2024-11-17 16:20:07.761+00 2024-11-17 16:20:07.761+00 f t Se palpan tumores a nivel de 2da glándula toráxica y 1era abdominal derechas. Otitis crónica bilateral y prurito de peor evolución en el lado izquierdo. Se recomienda esterilización quirúrgica y exéresis mamaria, se deriva a Desivet. Tratamiento: Prednisolona 10 mg dosis decreciente: 1 comp c/24 hs x 5 días; luego 1/2 comp c/24 hs x 5 días más; posteriormente ¼ comp c/24 hs x 7 días y para terminar ¼ comp c/48 hs x 7 días. Ruminal gotas óticas: 2 gotas en cada oreja c/6 hs x 10 días. Control en 10 días. Canino, hembra, 13 años, entera. EOG correcto. Sensorio normal. Ganglios, piel, ojos sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades. \N 197 210 113 70 235 \N +109 2024-11-17 16:21:45.489+00 2024-11-17 16:21:45.489+00 f t Otitis crónica bilateral y prurito de peor evolución en el lado izquierdo y otohematoma. Se recomienda esterilización quirúrgica y resolución quirúrgica de otohematoma, se deriva a Desivet Tratamiento: Prednisolona 10 mg dosis decreciente: 1 comp c/24 hs x 5 días; luego 1/2 comp c/24 hs x 5 días más; posteriormente ¼ comp c/24 hs x 7 días y para terminar ¼ comp c/48 hs x 7 días. Ruminal gotas óticas: 2 gotas en cada oreja c/6 hs x 10 días. Control en 10 días. Canino, macho, mestizo, 7 años, entero. EOG correcto. Sensorio normal. Ganglios, piel, ojos sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades. \N 197 209 113 70 234 \N +110 2024-11-19 19:49:59.827+00 2024-11-19 19:49:59.827+00 f t Diagnóstico: contusión leve del miembro anterior derecho. Recomiendo reposo absoluto. Aplico 0,1 ml Dexametasona. Reposo absoluto durante las próximas 48 horas. Si no se observa mejoría, se recomienda realizar una radiografía del miembro afectado para evaluar posibles lesiones más profundas. Se administró 0,1 ml de dexametasona para reducir inflamación y molestias. Felino macho, 2 meses, raza Ragdoll, blue point. Examen objetivo general normal. Sensorio, ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito, micción y defecación normales. Palpación abdominal y auscultación cardíaca sin particularidades. Presenta claudicación del miembro anterior derecho, aparentemente debido a un traumatismo. Si no se observa mejoría, se recomienda realizar una radiografía del miembro afectado para evaluar posibles lesiones más profundas. 2024-11-20 204 218 110 70 245 \N +111 2024-11-19 19:51:36.946+00 2024-11-19 19:51:36.946+00 f t Diagnóstico presuntivo de piodermitis, dermatofitosis o demodeccia. Se realizó toma de muestra con cinta adhesiva para análisis microscópico. \r\n\r\nTratamiento: Prednisolona 20 mg dosis decreciente: 1 comp c/24 hs x 5 días; luego 1/2 comp Se programó un control en 10 días para evaluar evolución y resultados del tratamiento. Se recomienda seguir estrictamente las indicaciones médicas y supervisar la evolución de las lesiones y el prurito. Se indicó prednisolona 20 mg en dosis decreciente: \r\n- 1 comprimido cada 24 horas por 5 días \r\n- 1/2 comprimido cada 24 horas por 5 días \r\n- 1/4 comprimido cada 24 horas por 7 días \r\n- 1/4 comprimido cada 48 horas por 7 días \r\nTambién se prescribió cefalexina 1 g, 1 comprimido cada 12 horas por 10 días. Hera es una canina, hembra, de raza American Staffordshire Terrier, 4 años, castrada. Se encuentra en estado de sensorio normal, con apetito, micción y defecación normales. Presenta prurito intenso y lesiones alopécicas en tórax, región lumbosacra y pecho. No se pudo realizar palpación abdominal ni auscultación cardíaca debido a su temperamento. Hera es extremadamente agresiva, lo que obligó al uso de bozal durante la consulta. Se encuentra bajo tratamiento con etólogo y fluoxetina (20 mg, 1 comprimido cada 12 horas). 2024-11-27 203 217 110 70 244 \N +135 2024-11-28 20:08:26.52+00 2024-11-28 20:08:26.52+00 f t Sin particularidades Vacunación triple felina y rabia Tiene antecedentes de obstrucción uretral. Clínicamente bien. Es posible que la propietaria contacte porque está analizando viajar y puede requerir desparasitacion, certificado de salud y/o chip de acuerdo a donde viaje. 2025-02-27 219 240 110 68 268 \N +112 2024-11-19 22:31:40.284+00 2024-11-19 22:31:40.284+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud. Se aplicó la vacuna correspondiente Triple Felina, Rabia y se realizó corte de uñas. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. 2025-01-14 205 219 110 68 246 \N +113 2024-11-19 22:37:35.563+00 2024-11-19 22:37:35.563+00 f t Estado de deshidratación y empeoramiento general del cuadro clínico debido a falta de medicación previamente indicada. Es fundamental cumplir estrictamente con el tratamiento indicado. En caso de no observar mejoría en las próximas horas, será necesario considerar la internación en una clínica veterinaria o implementar una internación domiciliaria con manejo supervisado. Se aguardan los resultados de las muestras de sangre tomadas previamente para ajustar el plan terapéutico si es necesario. Se realizaron dos aplicaciones inyectables de la medicación indicada, considerando que no había sido administrada desde el viernes. Se evaluó glucemia para confirmar que se mantenía dentro de parámetros normales. Felino hembra. Sensorio disminuido, se encuentra postrada en su casita y prácticamente no se mueve. Reportan que lleva un día sin comer y casi dos días sin beber agua. Leve deshidratación observada durante la evaluación. Glucemia medida en rango normal. \N 198 211 110 1 243 \N +114 2024-11-19 22:50:10.149+00 2024-11-19 22:50:10.149+00 f t Luxación patelar recurrente y antecedentes de fractura de tibia y peroné. No se evidencian otras alteraciones al momento del examen. Realizar seguimiento constante del peso y adherir estrictamente al plan alimenticio para evitar sobrecarga articular. Observar posibles señales de dolor o molestias, como cojera o cambios en la actividad, y administrar los medicamentos según la recomendación. Consultar nuevamente si los síntomas empeoran. Se indicó control del peso mediante un cambio de dieta para reducir la carga en las articulaciones afectadas. En caso de aparición de dolor, se recomendó iniciar un tratamiento escalonado con aceite de cannabis, seguido por tramadol, y, si fuera necesario, pregabalina. Canino, hembra, raza caniche, con antecedentes de luxación patelar y fractura de tibia y peroné. Examen orgánico general dentro de parámetros normales, sin observaciones adicionales fuera de las condiciones preexistentes en las extremidades. 2025-02-19 201 215 110 1 241 \N +115 2024-11-20 21:37:02.303+00 2024-11-20 21:37:02.303+00 f t Vacunación de rutina. Antecedentes de infestación intermitente por pulgas, posiblemente relacionadas con el entorno del hogar, específicamente un piso de madera que dificulta la eliminación completa de los parásitos. Realizar un plan integral de desparasitación externa para Pancho, incluyendo la aplicación de pipetas o comprimidos. Se recomienda desinfectar el entorno del hogar con productos específicos para pisos de madera que permitan la eliminación de huevos y larvas de pulgas. Complementar con aspirado frecuente de las áreas afectadas y uso de productos ambientales. Se administraron vacunas correspondientes a la séxtuple y antirrábica. Canino, macho, mestizo, tamaño grande. Examen orgánico general sin particularidades. Buen estado de salud general. 2025-02-20 199 212 110 1 238 \N +116 2024-11-20 21:47:05.929+00 2024-11-20 21:47:05.929+00 f t Paciente clínicamente sano. Completar el esquema de desparasitación o realizar el análisis coproparasitológico según lo decidido por la propietaria. Mantener las vacunas al día y realizar controles veterinarios regulares. Se administraron las vacunas contra la rabia y la séxtuple. Se indicó desparasitación preventiva o, en su defecto, la realización de un coproparasitológico según preferencia de la propietaria. Canino, sin particularidades al examen orgánico general. Buen estado de salud general, sin signos de enfermedad o molestias aparentes. 2024-12-11 209 227 110 1 250 \N +117 2024-11-21 18:09:55.395+00 2024-11-21 18:09:55.395+00 f t Control normal Se realiza vacunación antirrábica + triple felina + desparasitación con total full suspensión para gatos. Felino, Común Europeo, macho, 14 años, castrado, marrón. EOG correcto. Sensorio normal. Ganglios, piel, ojos, cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades. \N 206 220 113 70 248 \N +118 2024-11-22 13:44:35.658+00 2024-11-22 13:44:35.658+00 f t Estado general saludable, sin patologías observadas. Realizar la vacunación de Vilef en aproximadamente un mes o, alternativamente, posponerla hasta el próximo año. Se administraron las siguientes vacunas:\r\n- Triple felina.\r\n- Antirrábica.\r\n\r\nVacunaciones previas de Vilef estaban vencidas pero no se aplicaron en esta visita para no aplicar las 3 juntas Buen estado de salud general:\r\n- Hidratado\r\n- Mucosas rosadas con tiempo de llenado capilar normal\r\n- Buena condición corporal\r\n- Sin dolor abdominal ni signos clínicos como vómitos, diarrea o estornudos.\r\n- Examen general limpio; sin hallazgos clínicos relevantes\r\n\r\nEl ambiente es un predio de oficinas amplio, sin acceso al exterior, tierra u otros animales. Los tutores fueron advertidos sobre el riesgo de cuerpos extraños debido a la presencia de cables, clips, etc. 2024-12-16 195 206 111 9 231 \N +119 2024-11-22 13:46:36.509+00 2024-11-22 13:46:36.509+00 f t Estado general saludable, sin patologías observadas. Realizar la vacunación de Vilef en aproximadamente un mes o, alternativamente, posponerla hasta el próximo año. Se administraron las siguientes vacunas:\r\n- Triple felina.\r\n- Antirrábica.\r\n\r\nVacunaciones previas de Vilef estaban vencidas pero no se aplicaron en esta visita para no aplicar las 3 juntas Buen estado de salud general:\r\n- Hidratado\r\n- Mucosas rosadas con tiempo de llenado capilar normal\r\n- Buena condición corporal\r\n- Sin dolor abdominal ni signos clínicos como vómitos, diarrea o estornudos.\r\n- Examen general limpio; sin hallazgos clínicos relevantes\r\n\r\nEl ambiente es un predio de oficinas amplio, sin acceso al exterior, tierra u otros animales. Los tutores fueron advertidos sobre el riesgo de cuerpos extraños debido a la presencia de cables, clips, etc. 2024-12-16 195 207 111 9 232 \N +120 2024-11-22 23:17:22.285+00 2024-11-22 23:17:22.285+00 f t Se palpa leve dureza en región inguinal izquierda, para la cual se recomienda control periódico Se palpa leve dureza en región inguinal izquierda, para la cual se recomienda control periódico. Se realiza vacunación antirrábica + triple felina elino, macho, 5 años, castrado. EOG correcto. Sensorio normal. Ganglios, piel, mamas, ojos, cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades \N 191 202 113 70 227 \N +121 2024-11-22 23:18:35.964+00 2024-11-22 23:18:35.964+00 f t Se realiza vacunación antirrábica + triple felina. elino, hembra, 8 años, castrada. EOG correcto. Sensorio normal. Ganglios, piel, mamas, ojos, cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades \N 191 201 113 70 226 \N +154 2024-12-02 20:55:38.406+00 2024-12-02 20:55:38.406+00 f t . No se pudo llevar a cabo la consulta ya que la gata no se estaba en el domicilio. Se abona al vet unicamente $26.000 de la consulta clínica. \N 196 208 114 9 233 \N +122 2024-11-22 23:29:49.897+00 2024-11-22 23:29:49.897+00 f t Está en tratamiento por leucemia felina . Se desparasita con total full suspensión para gatos Felino, Común Europeo, hembra, 8 años, castrada, gris. EOG correcto. Sensorio normal. Ganglios, piel, ojos, mamas, cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades \N 206 223 113 70 264 \N +123 2024-11-22 23:30:37.549+00 2024-11-22 23:30:37.549+00 f t iene depilaciones en caudal de ambos miembros posteriores (está en tratamiento por dermatitis alérgica por pulgas; DAPP) Se realiza vacunación antirrábica + triple felina + desparasitación con total full suspensión para gatos. elino, Común Europeo, hembra, 7 años, castrada, negro. EOG correcto. Sensorio normal. Ganglios, piel, ojos, mamas, cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades \N 206 221 113 70 262 \N +124 2024-11-22 23:31:08.669+00 2024-11-22 23:31:08.669+00 f t s/p Se realiza vacunación antirrábica + triple felina + desparasitación con total full suspensión para gatos Felino, Común Europeo, hembra, 2 años, castrada, atigrada y blanco. EOG correcto. Sensorio normal. Ganglios, piel, ojos, mamas, cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades \N 206 222 113 70 263 \N +125 2024-11-22 23:31:53.75+00 2024-11-22 23:31:53.75+00 f t s/p Recomiendo interconsulta con etólogo Gerzovich Lis para obtener su opinión, yo lo encuentro normal. Felino, Común Europeo, macho, 3 años, castrado, negro y blanco. El propietario afirma que lo nota “raro”, un poco decaído mientras que la esposa manifiesta que está normal. Carácter medianamente agresivo. EOG correcto. Sensorio normal. Ganglios, piel, ojos, cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades\r\nAuscultación cardíaca sin particularidades \N 211 231 113 70 254 \N +126 2024-11-23 21:08:15.39+00 2024-11-23 21:08:15.39+00 f t S/P Realizó vacunación antirrábica+ triple felina. Felino, Común Europeo, hembra, 8 años, castrada, tricolor. EOG correcto. Sensorio normal. Ganglios, piel, ojos, mamas, cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidade \N 210 228 113 70 251 \N +127 2024-11-23 21:08:49.832+00 2024-11-23 21:08:49.832+00 f t sp Realizó vacunación antirrábica+ triple felina.. omún Europeo, macho, 5 años, castrado, atigrado. EOG correcto. Sensorio normal. Ganglios, piel, ojos, cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades \N 210 229 113 70 252 \N +128 2024-11-23 21:09:17.658+00 2024-11-23 21:09:17.658+00 f t s/p Realizó vacunación antirrábica+ triple felina. Felino, Común Europeo, macho, 2 años, castrado, negro y blanco. EOG correcto. Sensorio normal. Ganglios, piel, ojos, cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades \N 210 230 113 70 253 \N +129 2024-11-23 21:10:15.417+00 2024-11-23 21:10:15.417+00 f t s/p Recomiendo pipeta FRONTLINE+ peine fino para eliminar pulgas. Realizar limpieza ambiental con aspiradora y lavar las ropas de cama de los animales y humanos; además sillones, pisos, etc\r\nDesparasitar con total full gatos (comp) según peso. Realizo vacunación con triple felina Felino, común Europeo, hembra 2 años, castrada, atigrada. EOG correcto. Sensorio normal. Ganglios normales; piel. mamas. ojos, cavidad bucal sin particularidades. Apetito, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades. \N 215 235 113 70 260 \N +130 2024-11-23 21:11:16.144+00 2024-11-23 21:11:16.144+00 f t Auscultación cardíaca: soplo sistólico izquierdo 2+. Recomiendo pipeta FRONTLINE+ peine fino para eliminar pulgas. Realizar limpieza ambiental con aspiradora y lavar las ropas de cama de los animales y humanos; además sillones, pisos, etc\r\nDesparasitar con total full gatos (comp) según peso.\r\nSe solicita interconsulta con cardiólogo. Realizo vacunación con triple felina + antirrábica Felino, común Europeo, macho, 12 años, castrado, marrón. EOG correcto. Sensorio normal. Ganglios normales; piel. ojos, cavidad bucal sin particularidades. Apetito, micción y defecación normales. Palpación abdominal sin particularidades. \N 214 234 113 70 259 \N +131 2024-11-23 21:12:03.501+00 2024-11-23 21:12:03.501+00 f t s/p Recomiendo pipeta FRONTLINE+ peine fino para eliminar pulgas. Realizar limpieza ambiental con aspiradora y lavar las ropas de cama de los animales y humanos; además sillones, pisos, etc\r\nDesparasitar con total full gatos (comp) según peso. Realizo vacunación con triple felina Felino, Común Europeo, macho, 2 años, castrado, negro y blanco. EOG correcto. Sensorio normal. Ganglios normales; piel: lesiones en collarete epidérmico y muchas pulgas; ojos, cavidad bucal sin particularidades. Apetito, micción aumentada, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades. \N 215 236 113 70 261 \N +132 2024-11-23 21:12:59.241+00 2024-11-23 21:12:59.241+00 f t S/p Recomiendo desparasitar con pipeta FRONTLINE para las pulgas y con total full gatos (comp) según peso para los parásitos internos. Felino, común Europeo, hembra, 8 meses, castrada (de ambos flancos), atigrada. Hace 2 semanas la trajeron en adopción. EOG correcto. Sensorio normal. Ganglios normales; piel. mamas. ojos, cavidad bucal sin particularidades.\r\n\r\nPropietario refiere que luego de varios días sin que la vieran comer ni tomar agua, comió y tomó agua. Micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades. \N 213 233 113 70 258 \N +133 2024-11-24 21:47:01.965+00 2024-11-24 21:47:01.965+00 f t . . Diag presuntivo: tos de las perreras. Rp/ Dexametasona 5 % 1,5 ml vía SC; además Amoxicilina 100 mg 1 1/2 completo c/12 hs 10 días y prednisolona dosis decrecientes x 21 días. Juanca: canino, bulldog francés, 12 años, macho, blanco y negro. Carácter vehemente. EOG correcto. Sensorio normal; piel. ojos, cavidad bucal sin particularidades. Apetito, micción y defecación normales. Auscultación cardíaca sin particularidades \N 217 238 113 70 266 \N +134 2024-11-24 21:47:57.786+00 2024-11-24 21:47:57.786+00 f t Gastroenteritis. Recojo muestra de materia fecal para investigar si hay una causa parasitaria. Rp/ Aplico Ondasentrón SC y continúa con Reliverán (2 gotas c /8 hs si sigue con vómitos). Recomiendo dieta antidiarreica (arroz pasado y pollo sin piel). canino, mestizo, 3 meses, hembra, blanco y marrón. Carácter dócil. EOG correcto. Sensorio normal; piel. ojos, cavidad bucal sin particularidades. Apetito voraz, micción aumentada y frecuencia de deposiciones aumentada (diarrea muy blanda) donde a veces se ve un hilo de sangre. Auscultación cardíaca sin particularidades. Hace dos días la vacunaron con séxtuple con lepto; vómitó hace 4 horas la comida casera que le hicieron. 2024-12-03 216 237 110 70 265 \N +169 2024-12-03 20:50:58.307+00 2024-12-03 20:50:58.307+00 f t Buena evolución, comienza a crecer el pelo. Continúa con el tratamiento con Cefalexina y prednisolona hasta próximo control en 45 días. \N 203 217 114 70 247 \N +136 2024-11-28 20:20:38.026+00 2024-11-28 20:20:38.026+00 f t S/p Realizo vacunación antirrábica + séxtuple con lepto. Corto uñas. canino, mestizo, 11 años. Carácter dócil. EOG: Sensorio normal; piel, ojos sin particularidades. Cavidad bucal con abundante sarro. Apetito normal, micción y deposiciones normales. Auscultación cardíaca: normal. \N 207 224 113 70 249 \N +137 2024-11-28 21:14:28.005+00 2024-11-28 21:14:28.005+00 f t S/p Realizo vacunación antirrábica + séxtuple con lepto. Corto uñas. canino, caniche microtoy, 10 años. Carácter dócil. EOG: Sensorio normal; piel, ojos sin particularidades. Cavidad bucal con abundante sarro y falta de numerosas piezas dentales. Apetito normal, micción y deposiciones normales. Auscultación cardíaca: normal. \N 207 225 113 70 271 \N +138 2024-12-02 13:35:30.915+00 2024-12-02 13:35:30.915+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 176 185 114 1 273 \N +139 2024-12-02 13:50:32.302+00 2024-12-02 13:50:32.302+00 f t Claudicación y dolor lumbar severo en probable relación con alteraciones vertebrales o neurológicas. Se recomienda realizar placas radiográficas de la columna vertebral para evaluar posibles lesiones o alteraciones estructurales. Mantener el tratamiento prescrito y realizar seguimiento clínico para ajustar según evolución. Se inicia terapia con dexametasona (0.5 mg/kg), dipirona (25 mg/kg) y tramadol (3 mg/kg). Se indican analgésicos adicionales: continuar con Previcox según indicaciones previas. Paciente geronte, raza Doberman, presenta claudicación del miembro posterior de grado 3-4 con mucho dolor a nivel lumbar. Se observa disminución de propriocepción en el miembro afectado, con sensibilidad superficial y profunda conservada, pero propriocepción abolida. Estado de hidratación normal. Temperatura corporal ligeramente elevada, posiblemente atribuida al dolor. Sin signos gastrointestinales. \N 175 184 114 1 274 \N +140 2024-12-02 14:57:40.213+00 2024-12-02 14:57:40.213+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 180 188 114 1 211 \N +141 2024-12-02 15:15:39.904+00 2024-12-02 15:15:39.904+00 f t El diagnóstico preliminar es un cuadro gástrico leve probablemente secundario a la ingestión del pochoclo. No se observan signos claros de gastritis o de una intoxicación grave. Sin embargo, dada la persistencia de los vómitos y la molestia Se recomienda realizar una ecografía abdominal para evaluar con mayor precisión el estado del tracto gastrointestinal y descartar posibles complicaciones. Además, es aconsejable realizar un análisis de sangre para comprobar que no haya signos de infecciones o alteraciones en los órganos internos. Se debe seguir observando a la paciente y, en caso de que persista el malestar o se presenten nuevos síntomas, se debe acudir de nuevo para ajustar el tratamiento. Se administró tratamiento sintomático consistente en protector gástrico, antiemético y analgésico para aliviar el dolor abdominal. La perra no presentó complicaciones durante el tratamiento inicial. Sin embargo, debido a que no se ha observado mejoría significativa, se considera necesario continuar con estudios adicionales para una evaluación más detallada. La paciente se presenta con vómitos frecuentes. Según la propietaria, únicamente ha ingerido pochoclo recientemente. Al examen físico, se observa un leve dolor abdominal al tacto, sin signos de inflamación o distensión severa. La perra no presenta otros síntomas como fiebre, deshidratación o alteraciones en el comportamiento. No hay evidencia de que haya ingerido algún otro alimento o sustancia que pudiera haberle causado una intoxicación o daño grave. \N 181 189 114 1 212 \N +142 2024-12-02 15:48:48.422+00 2024-12-02 15:48:48.422+00 f t Dolor crónico asociado a un proceso irreversible. Continuar con el tratamiento analgésico para manejar el dolor y mejorar la calidad de vida. Es importante observar la evolución del paciente y, en caso de una crisis aguda, se podrán utilizar los medicamentos previamente indicados. Ante cualquier cambio en su estado o aparición de nuevos síntomas, por favor contactarse para una evaluación o ajuste del tratamiento. Se ha indicado un tratamiento analgésico con pregabalina (150 mg) para mejorar la calidad de vida del paciente y controlar el dolor. Las dosis y frecuencia están indicadas en la receta entregada.\r\nMedicamento: Pregabalina - Dosis: 150 mg (cápsulas)\r\nTramadol: 1 y 1/2 cápsulas cada 12 horas (dosis de 60 mg).\r\nPregabalina: 3/4 cápsula cada 12 horas (dosis de 150 mg).\r\nAceite de cannabis: 10-12 gotas cada 12 horas. Paciente de raza Golden Retriever, hembra, 12 años de edad, con peso de 40 kg. Presenta dolor crónico. \N 174 183 114 1 277 \N +143 2024-12-02 15:50:31.964+00 2024-12-02 15:50:31.964+00 f t Sospecha de afección musculoesquelética o neurológica en la columna (zona toracolumbar y lumbosacra) y codo derecho, posiblemente asociada a dolor severo. Realizar las radiografías solicitadas y enviar los resultados para ajustar el tratamiento según los hallazgos. Se recomendó observar la evolución del dolor con el tratamiento analgésico prescripto y reportar cualquier cambio significativo en el estado general de la perrita. Se administró una dosis baja de corticoides junto con dipirona y tramadol como manejo inicial del dolor e inflamación. Indicada radiografía de columna (toracolumbar y lumbosacra) y codo derecho para evaluar la causa subyacente. Perrita con dificultad marcada para levantarse, debilidad evidente en el codo derecho y posible dolor en la columna. Reacción defensiva con intento de morder al mínimo contacto, lo que dificulta determinar con precisión la localización del dolor. Carácter no dócil, dificultando el manejo clínico y la evaluación. Se debe proceder con precaución en futuros exámenes y tratamientos. \N 174 183 114 1 206 \N +144 2024-12-02 16:07:57.281+00 2024-12-02 16:07:57.281+00 f t Revisión rutinaria de salud para control de parásitos. Se recomienda continuar el seguimiento de desparasitación según el cronograma veterinario, especialmente para la cachorra, y mantener observación por cualquier síntoma gastrointestinal o de piel. - Zaira recibió desparasitación interna con un antiparasitario en suspensión, similar a Moxiextine. Cachorrita de 46 días, alrededor de 800 g - 1 kg, en buen estado. \N 115 195 114 1 221 \N +145 2024-12-02 16:09:56.797+00 2024-12-02 16:09:56.797+00 f t Revisión rutinaria de salud para control de parásitos. Se recomienda continuar el seguimiento de desparasitación según el cronograma veterinario, especialmente para la cachorra, y mantener observación por cualquier síntoma gastrointestinal o de piel. Desparasitación interna y externa con pipeta Full Spot. (11 meses): macho, aproximadamente 5 kg, en buen estado general. \N 115 132 114 1 220 \N +180 2024-12-05 20:32:34.415+00 2024-12-05 20:32:34.415+00 f t . Se realizaron los rayos y se le entregó de forma física al tutor. \N 116 121 114 3 135 \N +146 2024-12-02 16:12:19.688+00 2024-12-02 16:12:19.688+00 f t Revisión rutinaria de salud para control de parásitos. Se recomienda continuar el seguimiento de desparasitación según el cronograma veterinario, especialmente para la cachorra, y mantener observación por cualquier síntoma gastrointestinal o de piel. Desparasitación interna y externa con pipeta Full Spot. (4 años): hembra de aproximadamente 2-5 kg, en buen estado general. \N 115 120 114 1 219 \N +147 2024-12-02 16:35:08.262+00 2024-12-02 16:35:08.262+00 f t El diagnóstico principal es un cuadro que ha mejorado significativamente gracias al tratamiento con cannabinoides. Dado que la evolución ha sido favorable, no se observan signos de progresión de la patología inicial. La condición actual de la mascota Se recomendó a la propietaria realizar un chequeo de sangre y orina, aunque debido a su renuencia a procedimientos invasivos, se acordó que la mascota se someterá a un análisis de orina al regresar de sus vacaciones. Es importante seguir observando la evolución clínica y, si fuera necesario, considerar la adición de otros tratamientos como pregabalina o tramadol en función de la respuesta. Se ha continuado con el tratamiento de aceite de cannabis, que ha mostrado resultados positivos. Actualmente, no es necesario añadir otros medicamentos como pregabalina o tramadol, aunque se considera la opción de incluirlos dependiendo de la evolución futura. Por el momento, el tratamiento actual sigue siendo adecuado y efectivo para mantener la mejora clínica. La paciente se encuentra en seguimiento tras haber recibido tratamiento con aceite de cannabis. La evolución ha sido muy favorable hasta el momento, sin signos evidentes de efectos adversos o complicaciones. No se observan alteraciones en su comportamiento ni en sus parámetros clínicos actuales. La mascota muestra una actitud generalizada de bienestar y no presenta dolor aparente o molestias durante el examen. \N 162 171 114 1 218 \N +148 2024-12-02 16:50:41.891+00 2024-12-02 16:50:41.891+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 182 190 114 1 213 \N +149 2024-12-02 17:01:34.709+00 2024-12-02 17:01:34.709+00 f t - \N 165 174 114 2 278 \N +150 2024-12-02 18:18:40.594+00 2024-12-02 18:18:40.594+00 f t Vómitos esporádicos, posiblemente relacionados con el cambio de alimento balanceado (mismo producto, diferente origen) y consumo de pasto. Se incluyen en el diagnóstico diferencial gastritis o irritación gastrointestinal leve. Se indicó al tutor observar la evolución durante las siguientes 24 horas, especialmente en relación a los vómitos. En caso de continuidad o empeoramiento, contactar nuevamente. Se recomendó considerar una transición lenta hacia una alimentación natural mixta (mezcla de alimento balanceado y comida natural como pollo cocido), según disponibilidad y practicidad del tutor. Se administraron las siguientes medicaciones inyectables: ranitidina, metoclopramida y ácido tióctico. Gata hembra, castrada, tipo europeo, de aproximadamente 10 años. Al examen físico, se observa alerta, de buen ánimo y sin signos visibles de dolor. Abdomen normal, sin distensión ni dolor manifiesto. No se identificaron asas intestinales inflamadas. Sin hipertermia. **Notas privadas** \r\nEl carácter de la gata parece ser tranquilo y adaptado a su entorno, considerando su historia de ser adoptada por tres tutores diferentes. \N 225 245 114 2 280 \N +151 2024-12-02 19:00:47.499+00 2024-12-02 19:00:47.499+00 f t Cuadro de gastroenteritis posiblemente relacionado con el cambio reciente de alimento balanceado, ahora de menor calidad y fraccionado. Los síntomas, incluyendo vómitos biliosos y diarrea marrón, coinciden con este cambio. Dado que la paciente presenta convulsiones esporádicas sin tratamiento previo, se recomienda considerar la conveniencia de medicación anticonvulsivante para su manejo adecuado. Se recomienda una dieta de arroz y queso blanco para ayudar a estabilizar el sistema digestivo. También se sugiere desparasitación en breve con Meltra Gold, en dosis de un cuarto de comprimido. Paciente caniche de 11 años con mucosas rosadas y buena hidratación. No presenta dolor abdominal y se encuentra animada. La temperatura es de 38.2°C. Desde ayer no ha vomitado y hoy comió arroz. Se perciben algunos gases intestinales. \N 189 199 114 6 282 \N +152 2024-12-02 19:14:43.734+00 2024-12-02 19:14:43.734+00 f t El diagnóstico principal es un cuadro de autolesiones por lamido, inducidas por estrés y posiblemente por la convivencia con un gato territorial que la persigue y maltrata. Es fundamental que los propietarios aborden la causa del estrés de la gata, que parece estar relacionada con la interacción con el otro gato en el hogar. Se recomienda considerar alternativas para reducir el conflicto entre los gatos, como separarlos o buscar formas de manejar el comportamiento territorial del otro gato. Sin esta intervención, es probable que el tratamiento solo tenga un efecto limitado. Mientras tanto, se debe seguir con la administración de la medicación y las cremas locales para tratar las lesiones y ayudar a la gata a recuperarse. Se ha recetado un medicamento antiinflamatorio (albácter profén) para ayudar a controlar la inflamación y aliviar el malestar. Además, se recomendó el uso de cremas tópicas como Macril o C.A. para tratar las áreas de la piel afectadas por las lesiones. Dado que los propietarios mencionan que dar pastillas puede ser complicado, se les indicó intentar administrarlas si es posible. En paralelo, se les sugiere aplicar las cremas directamente sobre las zonas afectadas para promover la cicatrización y aliviar el dolor. La paciente es una gata hembra joven que presenta lesiones autoinfligidas, específicamente en el bajo vientre, la cara interna de los muslos, la cabeza y el cuello. Estas lesiones son consecuencia de su lamido excesivo debido al estrés. No se observan signos de infestación por pulgas en ninguno de los gatos convivientes, y la gata no muestra otros síntomas graves. La gata parece estar sometida a un alto nivel de estrés, lo que podría estar relacionado con su convivencia con otro gato más dominante que la persigue y la acosa constantemente. \N 188 198 114 1 224 \N +153 2024-12-02 19:42:25.781+00 2024-12-02 19:42:25.781+00 f t El paciente presenta malestar estomacal acompañado de vómitos recientes. La muestra de sangre permitirá obtener un perfil general completo, aunque sin la medición de glucemia. Se recomienda enviar la muestra de sangre al laboratorio a la brevedad posible, idealmente hoy o mañana, para obtener los resultados antes del fin de semana largo y poder actuar rápidamente si se detecta alguna anormalidad. En caso de que no se observe nada inusual, se puede continuar con su monitoreo regular. Se administraron un protector gástrico y un antiemético para evitar más vómitos y facilitar su apetito. La gabapentina no pudo ser administrada como se había planeado, por lo que el procedimiento se realizó sin sedación adicional. Felipe estuvo con algunos episodios de vómitos ayer y se mostró un poco incómodo durante la consulta. A pesar de ello, se pudo tomar la muestra de sangre para realizar los análisis, con excepción del tubo de glucemia. \N 184 192 114 1 283 \N +155 2024-12-02 21:27:10.649+00 2024-12-02 21:27:10.649+00 f t Absceso facial con drenaje secundario a trauma, posiblemente causado por cactus. Se recomienda observar la evolución de la herida y mantenerla limpia en la medida de lo posible. En caso de que el drenaje aumente, la herida empeore o el comportamiento de la gatita cambie (apatía, falta de apetito, etc.), será necesario un nuevo control. Se sugiere reforzar la prevención de traumas en el hogar, evitando el acceso a cactus u otros elementos que puedan causar lesiones. Se realizó tricotomía en la zona afectada y se administró medicación inyectable: Dexametasona 2 mg y Penicilina Estrepto 0,5 ml vía subcutánea. No se indicó medicación vía oral debido a las dificultades en el manejo del paciente. Felina con absceso en el lateral izquierdo del rostro, presentando herida abierta y drenaje. Se presume que el origen del trauma es el contacto con un cactus en el hogar. La gatita no permite realizar una toilette completa debido a su temperamento. La gatita muestra un temperamento reactivo que dificulta el manejo directo, por lo que cualquier atención adicional deberá considerar sedación si es estrictamente necesario. 2025-01-02 227 247 110 68 284 \N +156 2024-12-03 13:37:36.135+00 2024-12-03 13:37:36.135+00 f t Resultados brindados directamente al tutor de forma física. \N 174 183 114 3 275 \N +157 2024-12-03 14:47:12.245+00 2024-12-03 14:47:12.245+00 f t . No se pudo llevar a cabo la ecografía ya que la gata es muy agresiva. Hay que abonarle la diferencia al Dr Mallo. \N 185 193 114 3 237 \N +158 2024-12-03 15:18:46.702+00 2024-12-03 15:18:46.702+00 f t Se aplicó la vacuna antirrábica+triple felina. \N 200 213 114 68 239 \N +159 2024-12-03 15:19:42.609+00 2024-12-03 15:19:42.609+00 f t . No se pudo aplicar vacunas ya que aún tiene 45 días, no tres meses como informó la tutora. \N 200 214 114 68 240 \N +160 2024-12-03 17:24:59.038+00 2024-12-03 17:24:59.038+00 f t Eutanasia Se realizó la eutanasia. Se realizó la eutanasia. \N 208 226 110 1 293 \N +161 2024-12-03 17:33:51.503+00 2024-12-03 17:33:51.503+00 f t La gata presenta una masa oral que no ha reducido de tamaño pero ya no sangra. Se sospecha de crecimiento tumoral y se sigue evaluando su evolución. Los síntomas respiratorios iniciales, probablemente inflamatorios o infecciosos, han mejorado notable Se sugirió completar el tratamiento actual y evaluar la evolución posterior de la masa en la cavidad oral. Es importante observar si esta permanece estable, disminuye o muestra un crecimiento acelerado al finalizar el tratamiento. Se recomendó realizar un análisis de sangre para evaluar el estado general de la gata y considerar una posible intervención quirúrgica para la masa, dependiendo de la decisión de los propietarios. Continuar observando su comportamiento y hábitos generales, y programar una nueva consulta para evaluar el estado final tras el tratamiento. Se continúa con el tratamiento antibiótico y antiinflamatorio previamente indicado. Este es el tercer día de administración, y la respuesta de la gata ha sido positiva en términos de síntomas generales y respiratorios. No se han observado efectos adversos asociados al tratamiento. Se les recordó a los propietarios la importancia de completar el esquema terapéutico para asegurar una mejor evolución. La paciente es una gata que muestra una evolución favorable tras el inicio del tratamiento. Anteriormente, presentaba moco nasal, pero ahora su respiración es notablemente mejor. La gata está comiendo, tomando agua y muestra buena movilidad. En la cavidad oral, el tumor o masa previamente identificado ya no sangra, aunque su tamaño no ha disminuido. Se observa un estado general mejorado en comparación con la evaluación inicial. \N 198 211 114 1 256 \N +162 2024-12-03 18:49:00.918+00 2024-12-03 18:49:00.918+00 f t . La tutora canceló el turno sin previo aviso por ende no corresponde devolución de la seña. \N 172 181 114 1 203 \N +163 2024-12-03 19:16:30.129+00 2024-12-03 19:16:30.129+00 f t Se sospecha síncope cardiogénico debido a un desmayo aislado el sábado, del cual se recuperó sin problemas. Se requiere una evaluación más profunda para confirmar el diagnóstico y descartar otras causas. Se recomendó realizar análisis de sangre para evaluar el estado general de Brisa y un examen cardiológico (ECG y ecocardiografía) para confirmar o descartar la sospecha de síncope cardiogénico. También se sugirió una ecografía abdominal para descartar hipoadrenocorticismo como posible causa del desmayo. Es importante que los propietarios observen cualquier cambio en su comportamiento o nuevos episodios y los informen de inmediato. No se indicó tratamiento específico en este momento, ya que el evento fue aislado y no se han repetido los síntomas. Se planteó la realización de estudios complementarios para establecer un diagnóstico definitivo y, si es necesario, definir un tratamiento adecuado. Brisa es una perra pekinés de 7 años, de pelaje negro y carácter dócil. Presenta un estado general (EOG) correcto y sensorio normal. La piel está en buen estado, pero se observan cataratas bilaterales en los ojos y sarro dental en los dientes. Su apetito, micción y deposiciones son normales. La auscultación cardíaca no muestra alteraciones, y no se detectaron otros signos clínicos relevantes en el examen físico. \N 218 239 114 70 267 \N +164 2024-12-03 19:37:22.509+00 2024-12-03 19:37:22.509+00 f t . Aplicar triple felina y desparasitar Se aplicó la antirrábica Buen estado general \N 233 254 114 2 294 \N +165 2024-12-03 19:49:52.876+00 2024-12-03 19:49:52.876+00 f t Se sospecha epilepsia idiopática tras una convulsión matutina con aturdimiento posterior, pero el soplo cardíaco detectado requiere descartar otras posibles causas. Se recomienda realizar análisis de sangre para evaluar el estado general y un examen cardiológico completo para estudiar el soplo detectado. También es importante monitorear al perro para identificar si se repiten las convulsiones y, en ese caso, anotar la duración y frecuencia. Según los resultados de los estudios, se planteará un tratamiento adecuado. No se inició un tratamiento específico en esta consulta, ya que se requiere una evaluación más detallada para confirmar el diagnóstico y determinar si el soplo cardíaco está relacionado con los episodios convulsivos. Polo es un perro Weimaraner de 12 años, entero, de tamaño grande y carácter dócil. Presenta un estado general (EOG) correcto y sensorio normal. No se observaron alteraciones en la piel ni en los ojos, y su cavidad bucal muestra dientes con sarro. Su apetito, micción y deposiciones son normales. Durante la auscultación cardíaca se detecta un soplo sistólico 2+. \N 234 255 114 70 295 \N +166 2024-12-03 20:23:58.936+00 2024-12-03 20:23:58.936+00 f t . Mascota en tratamiento una vez al mes \N 123 128 114 1 255 \N +167 2024-12-03 20:41:53.784+00 2024-12-03 20:41:53.784+00 f t Se administró vacunación triple y antirrábica tanto a Freya como a Arwen. Además, se realizó desparasitación interna y externa utilizando una pipeta con Imidacloprid, Ivermectina y Praziquantel, para protegerlas frente a parásitos internos y externos \N 235 257 114 68 297 \N +168 2024-12-03 20:42:10.103+00 2024-12-03 20:42:10.103+00 f t Se administró vacunación triple y antirrábica tanto a Freya como a Arwen. Además, se realizó desparasitación interna y externa utilizando una pipeta con Imidacloprid, Ivermectina y Praziquantel, para protegerlas frente a parásitos internos y externos \N 235 256 114 68 296 \N +222 2024-12-10 17:20:07.331+00 2024-12-10 17:20:07.331+00 f t . \N 82 298 114 1 341 \N +170 2024-12-03 20:59:12.298+00 2024-12-03 20:59:12.298+00 f t El diagnóstico presuntivo es síndrome de la neurona motora inferior, considerando la disminución en la propiocepción del tren posterior. También se diagnostica dermatitis localizada en el cuello, posiblemente secundaria a irritación o infección. Se sugiere una interconsulta con un neurólogo para evaluar el estado neurológico y determinar un tratamiento específico para el síndrome de la neurona motora inferior. Continuar con el tratamiento indicado para la lesión cutánea, manteniendo la zona limpia y monitorizando su evolución. Consultar si se detectan cambios en la movilidad o comportamiento de Rita. Se indicó Cefalexina 500 mg, administrando ½ comprimido cada 12 horas durante 15 días, junto con aplicación tópica de Pervinox en la lesión del cuello. Rita es una perra de raza pug de 12 años, de carácter dócil. Su estado general es bueno, con sensorio normal. Se observa un parche caliente en la piel del área dorsal del cuello. No se encuentran alteraciones en los ojos ni en la cavidad bucal. Apetito, micción y deposiciones son normales. La auscultación cardíaca no presenta particularidades. Se detecta una disminución de la propiocepción en el tren posterior. \N 236 258 114 70 298 \N +171 2024-12-04 23:36:08.62+00 2024-12-04 23:36:08.62+00 f t Sin particularidades. Vacunación tos de la perrera Es posible que se contacten para limpieza y tratamiento de dermatitis del pliegue (nariz) en la semana. 2025-01-02 92 96 110 68 307 \N +172 2024-12-05 15:13:20.477+00 2024-12-05 15:13:20.477+00 f t Dermatitis alérgica por picadura de pulga (DAPP). Se indicó un plan de control de pulicosis tanto para el animal como para el ambiente. Es fundamental realizar la limpieza y desinfección del entorno para prevenir nuevas infestaciones. Se recomendó seguimiento en caso de reaparecer las lesiones o si se observan signos de infección. Se administró medicación inyectable, incluyendo un corticoide de depósito, para aliviar el prurito y reducir la inflamación. Canina hembra, 12 años, mestiza, nombre Leia. Al examen físico, se observan lesiones en el dorso del sacro compatibles con alergia a las picaduras de pulga. Las lesiones se presentan secas, levemente costrosas, y sin signos de secreción purulenta. Leia se mostró tranquila y cooperativa durante la consulta. Su temperamento es dócil, lo que facilitó la revisión y la administración de la medicación. 2025-01-02 244 272 110 21 313 \N +173 2024-12-05 15:42:56.087+00 2024-12-05 15:42:56.087+00 f t Lisandro Ponce indicó radiografía \N 245 273 114 1 314 \N +174 2024-12-05 16:00:56.407+00 2024-12-05 16:00:56.407+00 f t Paciente clínicamente sano, sin hallazgos relevantes al examen físico. Mantener el esquema de vacunación al día, repetir la vacunación según el protocolo establecido por su veterinario. Revisar periódicamente la salud de Julio con visitas veterinarias al menos una vez al año. Se realizó vacunación antirrábica y vacunación séxtuple con leptospira. Julio, canino mestizo, aproximadamente 2 años. Sensorio normal, piel, ojos y cavidad bucal sin alteraciones. Apetito normal, micción y deposiciones normales. Auscultación cardíaca sin anormalidades. Carácter dócil. \N 240 268 113 70 309 \N +175 2024-12-05 16:15:26.708+00 2024-12-05 16:15:26.708+00 f t Sospecha de atopía. Raspaje cutáneo realizado para descartar demodex, con resultado negativo. Asistir a la consulta con el dermatólogo para confirmar diagnóstico y establecer un tratamiento adecuado. Mantener vigilancia sobre posibles cambios en la piel o aumento de la irritación, y comunicar cualquier novedad al veterinario. Se realizó raspaje cutáneo para diagnóstico inicial. Se solicita interconsulta con dermatólogo para evaluación y manejo especializado. Sakira, canino mestizo, 8 meses. Sensorio normal, ojos y cavidad bucal sin alteraciones. Apetito normal, micción y deposiciones normales. Auscultación cardíaca sin anormalidades. Se observa irritación en varias áreas del cuerpo, incluyendo alrededor de los ojos, dedos y orejas. Carácter dócil. \N 246 274 110 70 315 \N +176 2024-12-05 16:18:17.916+00 2024-12-05 16:18:17.916+00 f t Presencia de caninos crecidos y movilidad excesiva en el canino derecho, indicativo de un problema dental posiblemente asociado a enfermedad periodontal. Cumplir con el tratamiento indicado y asistir al control para evaluar la evolución. Se recomienda implementar una rutina de higiene dental y realizar controles periódicos con el veterinario para prevenir futuros problemas dentales. Extracción del canino derecho con movilidad excesiva. Recetado Spectryl 10 mg, administrar 1/2 comprimido cada 12 horas durante 10 días. Control posterior al tratamiento. Canela, felino común europeo, hembra, 7 años, castrada, de pelaje negro. Sensorio normal, ganglios normales. Piel, mamas y ojos sin alteraciones. Cavidad bucal con caninos crecidos de manera exagerada, presentando movilidad excesiva en el canino derecho, el cual fue extraído. Palpación abdominal y auscultación cardíaca sin anormalidades. \N 243 271 114 70 312 \N +177 2024-12-05 16:25:50.295+00 2024-12-05 16:25:50.295+00 f t Sospecha de origen cardiológico para la tos nocturna, aunque no se descarta otro problema en el tórax. La obesidad mórbida y la falta de movilidad podrían estar afectando las articulaciones y contribuyendo al estado general del paciente. Asistir al control cardiológico para ajustar medicación y monitorear el estado cardíaco. Realizar la placa de tórax para descartar patologías adicionales. Se sugiere iniciar un plan de manejo del peso para abordar la obesidad, incluyendo ajustes en la dieta y, según sea posible, actividades supervisadas para mejorar la movilidad. Evaluar periódicamente la respuesta del paciente al tratamiento. Se indicó control cardiológico con un especialista a domicilio, programado para el lunes. Se solicitó radiografía de tórax para evaluar posibles afecciones adicionales en esta región. Homero, labrador retriever macho de 14 años, presentado en decúbito esternal. Paciente compensado cardiológicamente, con respiración normal. Obesidad mórbida estimada en un exceso de peso del 35-40% o más. La dueña refiere tos nocturna significativa y dificultad para levantarse. El animal llevaba sin comer o con ingesta reducida por menos de 24 horas. Paciente con probable insuficiencia cardíaca como origen de la tos. Explicado a la dueña la necesidad de controles regulares y el impacto negativo de la obesidad en la calidad de vida de Homero. \N 242 270 114 21 311 \N +178 2024-12-05 16:30:29.671+00 2024-12-05 16:30:29.671+00 f t Diagnóstico presuntivo: cistitis, basado en los signos clínicos referidos por el propietario. Garantizar que Asia tenga acceso constante a agua fresca para fomentar la hidratación. Observar si se presentan cambios en la micción o comportamiento, y reportar cualquier novedad al veterinario. Asistir al control programado para confirmar resolución de la cistitis y ajustar el manejo si fuera necesario. Se prescribió enrofloxacina 10 mg, administrar 1/2 comprimido cada 12 horas durante 10 días. Control posterior para evaluar evolución y determinar si se requieren estudios adicionales. Asia, felino común europeo, hembra, 7 años, castrada, de pelaje gris. Sensorio normal, ganglios normales. Piel, mamas, ojos y cavidad bucal sin alteraciones. Palpación abdominal y auscultación cardíaca sin particularidades. El propietario refiere disminución en la frecuencia de micción y bajo consumo de agua. \N 241 269 114 70 310 \N +179 2024-12-05 20:12:24.251+00 2024-12-05 20:12:24.251+00 f t . Se realizó la eutanasia. \N 137 144 114 2 155 \N +181 2024-12-05 20:38:44.04+00 2024-12-05 20:38:44.04+00 f t Tratamiento mensual de drenaje de sacos anales. Recomienda sedación en veterinaria. \N 123 128 114 1 184 \N +182 2024-12-05 20:59:24.133+00 2024-12-05 20:59:24.133+00 f t . Se le aplicó la triple felina y se le hizo corte de uñas. \N 139 146 114 1 159 \N +183 2024-12-09 13:41:01.368+00 2024-12-09 13:41:01.368+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 145 153 114 2 166 \N +184 2024-12-09 13:56:44.898+00 2024-12-09 13:56:44.898+00 f t El canino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del canino. \N 148 156 114 2 169 \N +185 2024-12-09 14:09:11.847+00 2024-12-09 14:09:11.847+00 f t . Se llevó a cabo la ecografía. El Dr entrega los estudios al tutor de manera física. \N 150 159 114 3 173 \N +186 2024-12-09 14:16:21.647+00 2024-12-09 14:16:21.647+00 f t Se solicitó un perfil tiroideo completo, complementado con enzimas hepáticas, urea, creatinina y fósforo, para ampliar el panorama metabólico y optimizar costos evitando análisis redundantes. Esperar resultados de laboratorio para decidir próximos pasos en el tratamiento. Mantener comunicación con el propietario para ajustar los estudios según evolución clínica o necesidad económica. Asegurar que el paciente esté cómodo y monitoreado durante este proceso. Pendiente de resultados de laboratorio para determinar el diagnóstico definitivo y el manejo adecuado. Visita realizada para extracción de muestra de sangre. No se especificaron hallazgos relevantes durante el examen físico, pero se consideraron antecedentes clínicos y la necesidad de estudios complementarios. \N 152 161 114 1 175 \N +187 2024-12-09 15:22:38.349+00 2024-12-09 15:22:38.349+00 f t . RX realizada. El Dr entrega los resultados de manera física al tutor. \N 161 170 114 3 200 \N +188 2024-12-09 16:09:53.952+00 2024-12-09 16:09:53.952+00 f t Se sospecha de un cuadro de gastroenteritis, dado el historial de vómitos esporádicos en los últimos tres días. Se recomienda controlar la evolución en las próximas 48 horas. Si no hay mejoría, regresar para una nueva evaluación clínica y considerar otros estudios complementarios. Se indicó la administración de metoclopramida (5 mg/1000) a razón de 0,5 ml cada 12 horas, y ranitidina de 40 mg (1/4 de comprimido) cada 12 horas. Xiaohua es un felino Común Europeo de 4 años. Durante el examen se encontró un sensorio normal, piel y ojos sin particularidades, y cavidad bucal en buen estado. El apetito, la micción y las deposiciones son normales. La auscultación cardíaca no presenta alteraciones. Carácter dócil y escurridizo \N 249 280 113 70 322 \N +189 2024-12-09 16:13:19.416+00 2024-12-09 16:13:19.416+00 f t Se sospecha de obstrucción urinaria, manifestada por disuria/anuria. Se recomienda seguir las indicaciones del centro veterinario especializado y monitorear la evolución tras el procedimiento. Se indicó derivación inmediata a Desivet para realizar sondaje uretral y tratamiento médico correspondiente. Simón es un felino de 8 años, castrado. Durante la consulta virtual, se observó comportamiento de lamido frecuente en la zona urogenital. \N 250 281 113 70 323 \N +190 2024-12-09 16:18:37.416+00 2024-12-09 16:18:37.416+00 f t . Se realizaron los RX. El Dr entrega los resultados de forma física a los tutores. \N 168 177 114 3 196 \N +191 2024-12-09 16:19:24.799+00 2024-12-09 16:19:24.799+00 f t Se diagnostica gastroenteritis presuntiva debido a los vómitos presentados desde esta mañana. Se recomienda controlar la evolución en las próximas 48 horas. En caso de no observar mejoría, realizar una nueva consulta para ajustar el tratamiento o evaluar estudios adicionales. Se indicó tratamiento con Metoclopramida (5x1000) 0,5 ml cada 12 horas y Ranitidina 40 mg, medio comprimido cada 12 horas. Leo, canino Pomerania de 2 años, presenta sensorio normal. Piel, ojos y cavidad bucal sin particularidades. Apetito disminuido, micción normal y deposiciones blandas. Auscultación cardíaca sin alteraciones. Carácter dócil. \N 251 282 113 70 324 \N +192 2024-12-09 16:33:29.05+00 2024-12-09 16:33:29.05+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 169 178 114 1 325 \N +193 2024-12-09 16:34:10.071+00 2024-12-09 16:34:10.071+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 169 283 114 1 326 \N +194 2024-12-09 16:58:11.987+00 2024-12-09 16:58:11.987+00 f t Enfermedad de los sacos anales con respuesta inicial favorable al manejo médico. Realizar controles mensuales para evaluar el estado de los sacos anales y ajustar el tratamiento si es necesario. Evitar la cirugía por el momento debido a los riesgos de incontinencia y complicaciones postoperatorias, según lo discutido con la propietaria. Continuar con la medicación indicada previamente. Se acordó un manejo médico continuo con visitas de control mensual para monitorear el vaciamiento de los sacos anales y evitar complicaciones. Pancha, paciente en seguimiento por problemas en los sacos anales. Se informa que ambos sacos fueron drenados con éxito y que el tratamiento indicado está en curso. La propietaria tiene antecedentes de bipolaridad; se recomienda precaución en la comunicación, ya que puede tener cambios repentinos de actitud. Es fundamental mantener claridad y documentación en todas las indicaciones y acuerdos establecidos. \N 123 128 114 1 327 \N +250 2024-12-19 21:59:10.851+00 2024-12-19 21:59:10.851+00 f t s/p Vacunación de los 6 felinos machos: triple felina, rabia y colocación de pipeta para parásitos internos y externos \N 270 313 113 68 357 \N +251 2024-12-19 22:25:56.355+00 2024-12-19 22:25:56.355+00 f t Vacunados y certificados S/P \N 248 279 113 1 321 \N +252 2024-12-19 23:00:58.116+00 2024-12-19 23:00:58.116+00 f t Aplicacion de antirrabica y triple felina Px s/p \N 255 292 113 1 338 \N +196 2024-12-09 17:29:03.575+00 2024-12-09 17:29:03.575+00 f t El canino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del canino. \N 92 96 114 2 100 \N +197 2024-12-09 17:40:10.056+00 2024-12-09 17:40:10.056+00 f t El diagnóstico indica que uno de los gatitos tiene seborrea leve, posiblemente relacionada con la alimentación. Se recomienda observar la evolución de la seborrea en el gatito afectado tras el cambio de dieta y programar una nueva consulta si la condición no mejora. Continuar con el seguimiento de la salud general de ambos gatitos. Se sugirió un cambio de dieta para mejorar la salud del pelaje del gatito con seborrea. Se vacunaron ambos gatitos sin ningún tipo de resistencia, lo cual fue satisfactorio y se realizó sin complicaciones. Se presentaron dos gatitos machos de tres o cuatro años en muy buen estado general. Ambos están castrados y se mostraron muy cooperativos durante la consulta. Se observó que uno de los gatitos presenta un leve caso de seborrea, caracterizada por la presencia de un poco de sebo de color negro en su pelaje. Aparte de esto, no se evidencian otras anomalías en su condición física. Los gatitos son muy buenos y se dejaron vacunar sin ningún tipo de lucha. \N 94 284 114 2 329 \N +198 2024-12-09 17:59:23.058+00 2024-12-09 17:59:23.058+00 f t El canino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del canino. \N 95 99 114 1 103 \N +199 2024-12-09 18:26:15.269+00 2024-12-09 18:26:15.269+00 f t Se hizo la ecografía. El Dr entrega los resultados de manera física al tutor. \N 28 28 114 5 108 \N +200 2024-12-09 18:49:23.26+00 2024-12-09 18:49:23.26+00 f t Se realizó RX. Dr. entrega los resultados al cliente de forma física. \N 77 79 114 3 117 \N +201 2024-12-09 19:06:18.523+00 2024-12-09 19:06:18.523+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 112 117 114 2 123 \N +202 2024-12-09 19:13:32.356+00 2024-12-09 19:13:32.356+00 f t El canino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del canino. \N 113 118 114 2 124 \N +203 2024-12-09 20:45:43.678+00 2024-12-09 20:45:43.678+00 f t Otitis en el oído izquierdo en seguimiento. Continuar aplicando Otovier NF, 4 gotas cada 12 horas durante 7 días. Programar control al finalizar el tratamiento. Se realizó limpieza del oído con alcohol y se aplicó Otovier NF, 4 gotas en el conducto auditivo externo y en el pabellón auricular externo. Canino, hembra, 5 años. Examen orgánico general (EOG) normal. Ojos, piel y cavidad bucal sin particularidades. Auscultación cardíaca normal. 2024-12-16 231 252 110 70 291 \N +204 2024-12-10 13:25:06.307+00 2024-12-10 13:25:06.307+00 f t El canino se encuentra en buen estado general y apto para recibir la vacuna. * Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos." Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del canino. \N 60 61 114 2 61 \N +205 2024-12-10 14:00:19.406+00 2024-12-10 14:00:19.406+00 f t Ecografía realizada. Dr. entrega los resultados de forma física al cliente. \N 65 66 114 3 66 \N +206 2024-12-10 14:09:51.926+00 2024-12-10 14:09:51.926+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 66 67 114 1 67 \N +207 2024-12-10 14:41:10.495+00 2024-12-10 14:41:10.495+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 67 68 114 1 68 \N +253 2024-12-19 23:03:39.531+00 2024-12-19 23:03:39.531+00 f t Extracción sin particularidades s/p \N 247 276 113 1 361 \N +530 2025-03-11 21:34:29.016408+00 2025-03-11 21:34:29.016415+00 f t . ninguna ninguno hembras felinas castradas . \N \N 497 587 \N 88 716 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +195 2024-12-09 16:59:52.898+00 2024-12-09 16:59:52.898+00 f t Resultados de sangre y orina prácticamente normales, con indicios de un posible inicio de insuficiencia renal, algo común en gatos gerontes. Incluir una fuente de agua para estimular la ingesta hídrica, realizar controles periódicos para monitorear cualquier progreso de insuficiencia renal y ajustar el tratamiento según sea necesario. Informar a los propietarios que la reducción de actividad y mayor tiempo de sueño son normales a su edad. Se recomendó cambiar a un alimento húmedo y adecuado para gatos mayores de 10-12 años para aumentar la hidratación y optimizar su nutrición. Felina hembra de 15-16 años, en estado general acorde a su edad avanzada. Sin dolor abdominal, con apetito adecuado y comportamiento tranquilo, aunque los propietarios notan que duerme mucho y se mueve poco, algo esperado a su edad. \N 166 175 114 1 205 \N +208 2024-12-10 14:41:36.381+00 2024-12-10 14:41:36.381+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 67 289 114 1 333 \N +209 2024-12-10 14:53:11.79+00 2024-12-10 14:53:11.79+00 f t El canino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del canino. \N 68 290 114 8 334 \N +210 2024-12-10 14:53:31.241+00 2024-12-10 14:53:31.241+00 f t El canino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del canino. \N 68 70 114 8 70 \N +211 2024-12-10 15:18:43.412+00 2024-12-10 15:18:43.412+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 69 71 114 1 71 \N +212 2024-12-10 15:28:53.344+00 2024-12-10 15:28:53.344+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 70 72 114 1 72 \N +213 2024-12-10 15:33:21.94+00 2024-12-10 15:33:21.94+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 71 73 114 1 73 \N +214 2024-12-10 15:58:03.994+00 2024-12-10 15:58:03.994+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 74 295 114 8 337 \N +215 2024-12-10 15:58:25.795+00 2024-12-10 15:58:25.795+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 74 76 114 8 76 \N +216 2024-12-10 16:12:30.893+00 2024-12-10 16:12:30.893+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 75 77 114 1 78 \N +217 2024-12-10 16:52:57.072+00 2024-12-10 16:52:57.072+00 f t El canino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del canino. \N 80 82 114 1 84 \N +218 2024-12-10 17:06:42.753+00 2024-12-10 17:06:42.753+00 f t El canino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del canino. \N 81 83 114 1 85 \N +219 2024-12-10 17:18:59.305+00 2024-12-10 17:18:59.305+00 f t El canino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del canino. \N 82 84 114 1 86 \N +220 2024-12-10 17:19:25.327+00 2024-12-10 17:19:25.327+00 f t El canino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del canino. \N 82 296 114 1 339 \N +221 2024-12-10 17:19:48.099+00 2024-12-10 17:19:48.099+00 f t . \N 82 297 114 1 340 \N +223 2024-12-10 17:23:48.333+00 2024-12-10 17:23:48.333+00 f t El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. \N 84 86 114 1 88 \N +224 2024-12-10 18:26:44.841+00 2024-12-10 18:26:44.841+00 f t El canino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del canino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del canino. \N 89 93 114 1 95 \N +225 2024-12-10 18:35:07.683+00 2024-12-10 18:35:07.683+00 f t El diagnóstico presuntivo sugiere una posible insuficiencia renal crónica (IRC) o hepatopatía, considerando la ictericia leve y otros signos observados. Para lograr una estabilización más adecuada, se recomendó la internación, pero se optó por continuar con una internación domiciliaria según la decisión de la propietaria. Se sugiere monitorear estrechamente el estado de salud de la gata y, ante cualquier cambio significativo, contactarse para ajustes en el tratamiento. Se colocó un catéter para la toma de muestra de sangre y realizar un Perfil General Completo (PGC). Se comenzó con una terapia de fluidos para mejorar su hidratación y se aplicó soporte térmico. Además, se administraron los siguientes medicamentos: oxitetraciclina, tramadol, dipirona, un protector hepático, ondansetrón para controlar las náuseas y un complejo de vitamina B. Gata Castrada, de 16 años, fue atendida por presentar vómitos. Durante el examen físico, se observó decaimiento, dificultad para deambular y signos de depresión. Las mucosas son rosadas pero levemente amarillentas, lo cual podría sugerir ictericia. También presenta leve hipotermia y un nivel de deshidratación entre el 6-8%. En la palpación abdominal, no se detectó dolor ni contenido en la vejiga. La gata mostró signos de decaimiento, dificultad para moverse y un comportamiento depresivo. \N 35 35 114 1 36 \N +226 2024-12-10 18:51:18.26+00 2024-12-10 18:51:18.26+00 f t . \N 257 299 114 1 342 \N +227 2024-12-10 19:28:59.97+00 2024-12-10 19:28:59.971+00 f t El diagnóstico presuntivo es gastritis, posiblemente causada por un cambio brusco de alimentación. Se recomienda realizar el cambio de alimentación de forma gradual para evitar molestias gastrointestinales y continuar observando la respuesta del gato al nuevo alimento. Se administró ondansetrón y ranitidina para reducir los síntomas de vómito y proteger el sistema digestivo. Felino macho entero de 6 años. Se presenta a consulta por episodios de vómitos, según lo informado por el propietario, Esteban Tangredi. La revisión general no muestra signos particulares. \N 258 300 114 1 344 \N +228 2024-12-10 20:20:41.07+00 2024-12-10 20:20:41.07+00 f t El diagnóstico presuntivo es enteritis, dado el síntoma de la defecación con sangre y la falta de otros signos clínicos alarmantes Se recomienda llevar a cabo el tratamiento indicado y monitorear de cerca el estado del gato. En caso de que los síntomas persistan o empeoren, se sugiere una consulta de seguimiento para realizar exámenes adicionales. Se indica realizar una desparasitación adecuada y se prescribe tratamiento con sulfatrimetropin (Giacoccide) para abordar la posible enteritis. Gato defecando con sangre. Durante la anamnesis, los propietarios informan que el gato ha estado defecando con sangre, sin haber ingerido nada en particular ni haber cambiado su dieta. Además, mencionan que hace tiempo no se realiza desparasitación. En el examen físico, el gato se presenta en estado normo térmico y normohidratado, sin evidenciar dolor abdominal al tacto. \N 259 303 114 1 345 \N +229 2024-12-10 20:28:06.518+00 2024-12-10 20:28:06.518+00 f t Inflamación mamaria leve asociada a hiperlactancia. Un gatito en estado de debilidad. Controlar la evolución del gatito que se encuentra debilitado y observar su alimentación. Realizar una ecografía de control a la madre para monitorear su estado general. Si persiste la molestia en las mamas, evaluar opciones adicionales como corticoides o antiinflamatorios, si fuera necesario. Se aplicó un antibiótico Amoxicilina a la madre para controlar la inflamación mamaria y evitar molestias. Se indicó alimentar de forma forzada al gatito deprimido para ayudarlo a recuperar fuerzas y que pueda prenderse del pezón de la madre. Felina, hembra, madre lactante. EOG normal. Presenta inflamación leve en las mamas debido a una alta producción de leche y pocos cachorros lactando. Tres de los cuatro gatitos están mamando bien, mientras que uno se encuentra deprimido. \N 252 287 110 1 331 \N +230 2024-12-10 20:35:38.139+00 2024-12-10 20:35:38.139+00 f t Estado general comprometido; se decide derivar para internación. Es fundamental realizar un seguimiento cercano del estado de salud de la gata durante la internación. Se da derivación para internación con pedido de análisis complementarios. Felino hembra que presenta un estado de decaimiento desde hace unos días, con episodios de vómitos y falta de apetito. \N 56 57 114 1 57 \N +231 2024-12-11 16:22:15.364+00 2024-12-11 16:22:15.364+00 f t Consulta porque no se puede parar desde la mañana. Toma Algen 60 1/2 comp c /12 hs. Recomiendo análisis de sangre y Rx de cadera con veterinaria de cabecera. canino, mestizo, 14 años. EOG: Sensorio normal; piel, ojos sin particularidades. Cavidad bucal con abundante sarro. Apetito normal, micción y deposiciones normales. Auscultación cardíaca: normal\r\nSensibilidad superficial y profunda conservadas. \N 238 266 113 70 306 \N +232 2024-12-11 16:24:41.549+00 2024-12-11 16:24:41.549+00 f t Vacunacion TRIPLE FELINA Repeticion al mes elino, Común Europeo, hembra, 4 años, atigrado. EOG correcto. Sensorio normal. Ganglios, piel, ojos sin particularidades; cavidad bucal: ausencia de la mayoría de las piezas dentales salvo colmillos y algunos incisivos. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades \N 229 250 113 70 288 \N +233 2024-12-11 16:27:10.688+00 2024-12-11 16:27:10.688+00 f t Mal caracter Vacunacion no concretada \N 239 267 113 70 308 \N +234 2024-12-11 18:10:52.95+00 2024-12-11 18:10:52.95+00 f t Dx presuntivo carcinoma mandibular Decision de la tutora tto paliativo con meloxivet y aceite de cannabis Gatita posible mandibulectomia por carcinoma de cavidad bucal, de pronostico ominoso. \N 198 211 113 1 290 \N +235 2024-12-12 19:45:47.169+00 2024-12-12 19:45:47.169+00 f t Sin particularidades. El felino se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del felino. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna Triple Felina Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del felino. 2025-02-12 256 293 110 70 336 \N +236 2024-12-14 21:57:33.982+00 2024-12-14 21:57:33.982+00 f t Deshidratación severa. Probable Insuficiencia Renal Crónica. Realizar análisis de sangre completos para confirmar diagnóstico y planificar tratamiento adecuado. Internar para estabilización y evaluación médica continua. Monitorear signos vitales y mejorar hidratación antes de considerar alta. Se recomienda internación para mejorar el estado general mediante fluidoterapia y cuidados intensivos. Felino, siamés, 20 años, castrada. Sensorio deprimido. Piel y ojos sin particularidades. Cavidad bucal sin particularidades. Apetito y micción disminuidos. No ingiere líquidos ni defeca hace más de 2 días. Auscultación cardíaca normal. 2024-12-23 267 310 110 70 353 \N +237 2024-12-17 23:41:41.472+00 2024-12-17 23:41:41.472+00 f t Tomy Nicolás: Estado general sin alteraciones.\r\nLuna: Múltiples tumores de mama, compatibles con procesos neoplásicos mamarios avanzados relacionados con su condición de no estar castrada. Se recomienda cirugía para la resolución de los tumores mamarios en Luna, asociada a la esterilización, considerando los riesgos y beneficios de la intervención quirúrgica. Es importante monitorear el crecimiento de los tumores y realizar controles veterinarios regulares. Se colocaron las vacunas correspondientes y el microchip sin complicaciones. Tomy Nicolás: Canino, raza Caniche, 4 años, 10 kg, castrado. Sensorio normal, sin particularidades en piel, ojos o cavidad bucal.\r\nLuna: Canina, raza Caniche, 10 años, 5 kg, no castrada. Sensorio normal, múltiples tumores de mama palpables, sin otras particularidades notadas en piel, ojos o cavidad bucal. \N 247 275 110 1 316 \N +238 2024-12-17 23:44:51.364+00 2024-12-17 23:44:51.364+00 f t Hot spot incipiente en metatarso MPD. Monitorear la evolución de la lesión para evitar rascado o lamido excesivo. Aplicar el Pervinox según indicación y revisar nuevamente si no hay mejoría después de los 10 días o si la lesión progresa. Se realizó vacunación antirrábica y séxtuple con leptospirosis. Se indicó aplicación de Pervinox 3 veces al día durante 10 días en la lesión cutánea. Canino, Labrador, chocolate, 9 años, entero. Sensorio normal. Ojos y cavidad bucal sin particularidades. Presenta hot spot incipiente en metatarso del miembro posterior derecho (MPD). Apetito normal, micción y deposiciones normales. Auscultación cardíaca normal. 2024-12-30 268 311 110 70 354 \N +239 2024-12-17 23:46:56.535+00 2024-12-17 23:46:56.535+00 f t Vacunación triple felina y rabia sin particularidades. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Sin particularidades 2025-03-18 262 305 110 68 349 \N +240 2024-12-17 23:47:37.89+00 2024-12-17 23:47:37.89+00 f t Vacunación triple felina y rabia sin particularidades. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Sin particularidades 2025-03-18 262 306 110 68 348 \N +241 2024-12-17 23:50:18.631+00 2024-12-17 23:50:18.631+00 f t Absceso con tejido muerto en herida cutánea. Controlar la evolución de la herida y continuar con el tratamiento indicado. Mantener la zona limpia y monitorear cualquier signo de inflamación o secreción. Realizar una revisión en 5 días o antes si no mejora. Se realizó toilette y extracción del tejido necrótico. Se colocó un punto de afronte y cohesión para cerrar la herida y favorecer la cicatrización. Se administró penicilina estrepto y se indicó continuar tratamiento con Espiramicina y Metronidazol diario por vía oral durante 5 días. Paciente con absceso en la piel, se procede a sedación con ketamina y xilacina para realizar el control de la lesión. 2024-12-23 227 247 110 68 356 \N +242 2024-12-17 23:53:53.123+00 2024-12-17 23:53:53.123+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. Si observas algún cambio en su comportamiento o síntomas, no dudes en contactarnos. Se aplicó la vacuna antirrabica. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. 2025-03-13 261 304 110 1 347 \N +243 2024-12-17 23:55:26.712+00 2024-12-17 23:55:26.712+00 f t Cistitis, doy pautas de alarma por riesgo de obstrucción. Control si no hay cambios. Médico con Dexametasona 2mg y 1ml de Penicilina estrepto.\r\nIndico Urovier 1/4 diario 3 meses, alimento Urinary S/O 1 mes y refuerzo de dieta húmeda con arándanos. Paciente con oliguria. En la consulta hay leve molestia abdominal, la vejiga está pequeña pero inflamada. 2025-01-13 265 309 110 68 352 \N +244 2024-12-17 23:56:49.8+00 2024-12-17 23:56:49.8+00 f t Dp/. Laringotraqueitis infecciosa. Rp/. Dexametasona. En principio no requiere control Paciente adoptado, en proceso de adaptación.\r\nReflejó tusigeno positivo, auscultación con campos pulmonares libres. \N 253 288 113 68 332 \N +245 2024-12-17 23:58:52.137+00 2024-12-17 23:58:52.137+00 f t Sin antecedentes morbidos Se aplica refuerzos rabia y quintuple Mascota lalo Bulford terrier\r\nEdad 10 a ultima vacuna 2011\r\nBuena tolerancia \N 254 291 113 14 335 \N +246 2024-12-18 00:00:44.323+00 2024-12-18 00:00:44.323+00 f t Desorden metabólico sugerente de diabetes mellitus, respaldado por glucemia y amilasemia elevadas, junto con parámetros urinarios alterados. Derivación al endocrinólogo para una evaluación más detallada y ajuste del manejo metabólico. Controlar síntomas y continuar con la medicación indicada hasta la consulta especializada.\r\n\r\nSi se vuelve a tapar no lo va a solucionar con Nero solamente, es una emergencia, lo tiene que llevar a una veterinaria nuevamente. Se indica tratamiento con Enrofloxacina 50 mg, 1/4 comprimido cada 12 horas, y vaselina líquida vía oral para aliviar la constipación. Paciente externado recientemente por FLUTD. Actualmente presenta micción y apetito normales, ingiere agua con normalidad y muestra signos de constipación aparente. \N 250 281 110 70 346 \N +247 2024-12-18 00:06:50.269+00 2024-12-18 00:06:50.269+00 f t Profesional no genero un Diagnostico No se pudo realizar el estudio por inconvenientes en el domicilio entre paciente y veterinario Abono solo la seña \N 214 234 110 7 292 \N +248 2024-12-18 00:08:40.327+00 2024-12-18 00:08:40.327+00 f t No hubo dx Profesional asistio al domicilio pero el cliente no atendio Se abono solo seña y la profesional debemos abonarle \N 246 274 113 71 317 \N +249 2024-12-18 17:47:53.075+00 2024-12-18 17:47:53.075+00 f t Tomy Nicolás: Estado general sin alteraciones.\r\nLuna: Múltiples tumores de mama, compatibles con procesos neoplásicos mamarios avanzados relacionados con su condición de no estar castrada. Se recomienda cirugía para la resolución de los tumores mamarios en Luna, asociada a la esterilización, considerando los riesgos y beneficios de la intervención quirúrgica. Es importante monitorear el crecimiento de los tumores y realizar controles veterinarios regulares. Se colocaron las vacunas correspondientes Tomy Nicolás: Canino, raza Caniche, 4 años, 10 kg, castrado. Sensorio normal, sin particularidades en piel, ojos o cavidad bucal.\r\nLuna: Canina, raza Caniche, 10 años, 5 kg, no castrada. Sensorio normal, múltiples tumores de mama palpables, sin otras particularidades notadas en piel, ojos o cavidad bucal. \N 247 276 110 1 359 \N +254 2024-12-20 16:58:36.049+00 2024-12-20 16:58:36.049+00 f t Presuntivo: Dermatitis alérgica. \r\nDiferencial: Micosis o cuadro asociado a inmunosupresión. Continuar con el esquema de tratamiento indicado y aplicar la pipeta según lo recomendado. Monitorear evolución de las lesiones cutáneas. Si no se observa mejoría, realizar pruebas adicionales para descartar micosis o afecciones relacionadas con inmunosupresión. Se administra Dexametasona 2 mg y Penicilina Estrepto 0.8 ml. Se indica la aplicación de Penicilina por la propietaria hasta el 23/12. Además, se coloca pipeta antiparasitaria para tratamiento de ácaros. Paciente presenta anisocoria desde su adopción. Se observan lesiones costrosas por rascado en el mentón, alopecia húmeda con dermatitis por lamido compulsivo en ambas axilas. Conserva apetito y no se detectan síntomas gastrointestinales. \N 273 321 110 68 362 \N +255 2024-12-21 17:13:24.001+00 2024-12-21 17:13:24.001+00 f t Solicitud de copro Se le va a hacer un análisis coproparasitológico S/P\r\nLa zona del perineo y la palpación abdominal no se vivenció nada sugerente de algún problema, de alguna patología \N 275 324 113 1 365 \N +256 2024-12-21 17:33:20.724+00 2024-12-21 17:33:20.724+00 f t Rp/ realizó vacunación antirrábica + séxtuple. Recomiendo Pervinox solución diluído en agua tópico 2 veces por día en zonas alopécicas. canino, bulldog francés, 4 años, hembra, blanco y negro. Carácter dócil. EOG correcto. Sensorio normal; ojos, cavidad bucal sin particularidades. Piel con alopecía en barbilla y pliegue nasal. Apetito, micción y defecación normales. Auscultación cardíaca sin particularidades. \N 271 319 113 70 358 \N +257 2024-12-21 17:37:40.236+00 2024-12-21 17:37:40.236+00 f t S/P Realizo vacunación séxtuple con lepto. canino, mestizo, 2 años aprox. Carácter dócil. EOG: Sensorio normal; piel, ojos y cavidad bucal sin particularidades. Apetito normal, micción y deposiciones normales. Auscultación cardíaca: normal \N 240 268 113 70 360 \N +258 2024-12-21 17:54:34.872+00 2024-12-21 17:54:34.872+00 f t S/P Vacunacion anual s/p \N 274 322 113 1 363 \N +259 2024-12-22 19:52:18.423+00 2024-12-22 19:52:18.423+00 f t Se aplicó antirrábica y se hizo correctamente el estado de salud. \N 278 330 114 70 371 \N +260 2024-12-24 19:21:21.58+00 2024-12-24 19:21:21.58+00 f t paciente con funciones vitales normales y conservadas. Recomiendo vigilancia para ver si repite el episodio. Felino, macho, 4 años, castrado.Sensorio normal. Ganglios, piel, ojos, cavidad bucal sin particularidades. Apetito y defecación normales. Palpación abdominal (vejiga) y auscultación cardíaca sin particularidades \N 282 334 113 70 375 \N +261 2024-12-24 19:26:07.54+00 2024-12-24 19:26:07.54+00 f t Dx presuntivo: Inf. urinaria Tto con atb, antiinflamatorio, analgesico Gatita de 16 años, tricolor\r\nEstado general conservado\r\nGladulas perianales sin complicaciones \N 281 333 113 2 374 \N +262 2024-12-24 22:20:06.658+00 2024-12-24 22:20:06.658+00 f t Estornudos y tos crónicos, se manejan con homeopatía. \r\nAyer sangrado unilateral por fosa nasal (presume herida con vidrio) Surgiero consulta cardiológica; controlar si se presenta nuevamente sangrado y si la secreción nasal aumenta requiere antibiótico. Peso 5 kg\r\nAuscultación soplo 1/6, estertores y tales secos. Pulso sincrónico.\r\nEnfermedad periodontal severa. Lnn s/p. \N 272 320 113 68 364 \N +263 2024-12-24 22:21:17.406+00 2024-12-24 22:21:17.406+00 f t Px cardiologico Sugiero dieta y control cardiológico. macho 5.5kg aproximadamente;\r\nSobrepeso moderado, intestinos con contenido más líquido a la palpación, leve inflamación. \r\nAsuculto silibancias y taquicardia. Insipiracion más profunda. \N 277 328 113 68 368 \N +264 2024-12-24 22:21:51.082+00 2024-12-24 22:21:51.082+00 f t clínicamente sin ninguna particularidad. macho peso aprox 4kg \N 277 327 113 68 370 \N +265 2024-12-24 22:25:45.095+00 2024-12-24 22:25:45.095+00 f t Dificultad en la movilidad Se le comentó al propietario si estaba muy molesta. Posiblemente había que empezar a hacer un tratamiento de fluidos, ¿viste? Y conseguir con antiinflamatorio. porque el decaimiento que le había producido estar ahí atracada tanto tiempo. No sé cómo se ilusionó la perrita, pero bueno, ese fue el tratamiento. Se le dio corticoides a 0,5 miligramos kilo, Y dipirona a 25 miligramos kilo. Decaimiento \r\nManifiesta dolor por quedarse atrapada en sector de la casa.\r\nDificultad en la movilidad \N 280 332 113 1 373 \N +266 2024-12-24 23:57:05.7+00 2024-12-24 23:57:05.7+00 f t Diag: MPI inflamación segunda falange. . Rp/ Meloxicam 0,1 mg/kg x día x 5 días. Rx LL y DV de la falange. canino, Golden retriever, 8 años aprox, macho. Carácter dócil. Consulta por leve cojera MPI. EOG correcto. Sensorio normal; ojos, cavidad bucal sin particularidades. Piel normal. Apetito, micción y defecación normales. Auscultación cardíaca sin particularidades \N 279 331 113 70 372 \N +267 2024-12-27 00:12:08.126+00 2024-12-27 00:12:08.126+00 f t cuadro gastrico Si mañana no repite cuadro gastrico continuar por boca con Tramadol 75 mg/12 hs, Previcox 110 mg por dia, por 3-4 dias Omeprazol 10 mg/24 hs. se da aplicacion subcutanea de dexametasona 15 mg, tramadol 75 mg, Pileran. Dieta (pollo a la plancha) Vive en dpto. Tiene acceso a un balcón. Convive con otro perro joven. Actualmente no sale a la calle por problemas para deambular. Come alimento Vital Can . \r\n\r\nNo posee antecedentes de tos, desmayos o convulsiones. no registra alergias medicamentosas. \r\nAntecedentes quirúrgicos: no\r\n\r\nApetito disminuido desde el 24/12\r\nHoy a la mañana tuvo un vómito espumoso, poca cantidad. Materia fecal normal. No hay signos de enfermedad respiratoria. \r\nDe cachorro le dijeron que tenia displasia de cadera. Desde hace un tiempo que le cuesta pararse del tren posterior. Su veterinario de cabecera le indico Artroglycan. Notaron mejoria por mucho tiempo, pero hace 10 dias lo vieron muy mal al respecto. Lo vio un veterinario en el domicilio y le indico tramadol 75 mg/8 hs, omeprazol 10 mg/24 hs y previcox 227 mg por dia, por 6 dias, y luego 1/2 comprimido por dia. \r\nEl 24 tuvo vomitos (flema y jamon), diarrea. Hoy tuvo vomito de flema. Orino mucha cantidad color amarillo fuerte. Come poco desde el 24. \r\nEOG: Sensorio alerta. Mucosas rosadas. TLLC: 1" LN: s/p. Auscultación cardiopulmonar normal. FC: 104 lat/min. Pulso femoral fuerte y sincronico. Temperatura 38 °C. Hidratación normal. Score Corporal: 6/9, Boca: odontolitiasis. Oidos: sp Ojos: sp\r\n\r\nEOP: Palpación abdominal: no algia. No descarto hepato o esplenomegalia, Columna algia a la palpacion presion lumbar, Propiocepción muy disminuida , Atrofia musculos miembros posteriores. Reflejo tusígeno negativo. Testículos: irritacion piel escroto \N 283 336 113 71 376 \N +268 2024-12-29 22:02:04.176+00 2024-12-29 22:02:04.176+00 f t Gastroenteritis Metoclopramida 1/1000 2 gotas c/8 hs y vigilancia. En 24 hs debería mejorar; si no lo hace derivo a Desivet. Felino, macho, 4 años aprox, castrado. Consulta por vomitos desde sábado a la madrugada a repetición. EOG correcto. Sensorio normal. Ganglios, piel, ojos, cavidad bucal sin particularidades. Apetito, micción y defecación disminuídos. Palpación abdominal (estómago, intestinos, vejiga) y auscultación cardíaca sin particularidades. \N 277 328 113 70 378 \N +587 2025-03-31 00:42:07.559745+00 2025-03-31 00:42:07.559752+00 f t Dipillidium . Aplicar pipeta de fipronil y dar total full.\nAplicar Echtol en ambiente. La tutora vio dipillidium en el ano, tambien la ve "panzona". Hembra castrada. \N \N 620 725 \N 80 908 {"studies": [], "medications": [], "specialities": []} +269 2025-01-05 20:16:28.084+00 2025-01-05 20:16:28.084+00 f t Realizo vacunación con séxtuple+antirrábica y receto antiparasitario. anino, mestizo, 11 años aprox hembra castrada. Carácter dócil en mi presencia. EOG correcto. Sensorio normal; ojos, cavidad bucal sin particularidades. Piel normal. Apetito, micción y defecación normales. Auscultación cardíaca sin particularidades \N 292 346 113 70 387 \N +270 2025-01-05 20:19:45.325+00 2025-01-05 20:19:45.325+00 f t Dermatitis miliar, posible base alérgica.\r\nSin contaminación secundaria ni urticaria. Desparasitacion interna y externa, sugiero incorporar alimento renal y control cardiológico con medición de presión arterial idealmente.\r\nRp/.0,8mg dexametasona Clínicamente bien; gerente con score corporal 3/5; incipiente polidipsia \N 294 348 113 68 389 \N +271 2025-01-05 20:21:22.357+00 2025-01-05 20:21:22.357+00 f t Pronostico grave Indicó ayuno, suspender totalmente la lactancia de cachorros.\r\nY ecografía abdominal lo antes posible así como antencion presencial para atención primaria.\r\nPronóstico grave. tiene síntomas obstructivos gastrointestinales.\r\nEmpezó vomitando, hasta la anorexia. Ante la alimentación forzada completa intolerancia y vómitos. No aparenta en imagen mucosas ictericas. \N 298 352 113 68 393 \N +272 2025-01-05 20:28:35.763+00 2025-01-05 20:28:35.763+00 f t Otitis cronica - Descarta causa metabolica de la otitis\r\n-Recomendacion de tapones en los oidos durante el baño Se le mandó limpieza con Otovier limpiagotas o alguna gota limpiadora 3 veces al día y otobier classic para medicar y también comprimidos de prednisolona corticoide como antiinflamatorio por dos días solamente. paciente canino de 3 años, mestizo, que fue bañado hace 2 semanas y está presentando un cuadro de otitis bilateral con peor cuadro clínico del lado izquierdo que del lado derecho. En el lado izquierdo tiene bastante secreción, dolor y molestia, reflejo otopodal positivo y secreción amarronada de bastante cantidad . Revision pasado una semana \N 295 349 113 9 390 \N +1605 2025-09-01 05:12:34.516941+00 2025-09-01 05:12:34.516953+00 f t - - Se aplica triple felina y antirabica Eog: s/p \N \N 7443 6126 \N 1 2282 \N +274 2025-01-18 18:04:28.007+00 2025-01-18 18:04:28.007+00 f t Sinusitis Por el carácter indocil colega indicó gabapentina, le sugiero el uso previo a la mudanza. Médico con dexametasona 4mg. tiene oligurua, lamido más frecuente genital.\r\nConserva el apetito.\r\nSospechó cistitis por estrés asociado a mudanza. \N 300 354 113 68 396 \N +275 2025-01-19 16:54:31.077+00 2025-01-19 16:54:31.077+00 f t Caida de pelo + vacunacion anual Vacunacion Perra hembra de 5 años de edad alrededor de 8 kg de peso también color beige con la trompa color negro necesita sujeción para aplicación de vacunas no presenta alteraciones cardíacas ni respiratorias la temperatura es normal abdomen sin particularidades \N 276 326 113 74 366 \N +276 2025-01-19 16:58:21.229+00 2025-01-19 16:58:21.229+00 f t Vacunación anual S/P \N 337 400 113 1 441 \N +277 2025-01-19 17:00:22.833+00 2025-01-19 17:00:22.833+00 f t Eutanasia completada Eutanasia completada \N 336 399 113 1 440 \N +278 2025-01-19 17:49:24.937+00 2025-01-19 17:49:24.937+00 f t Estres Tratamiento sobre el ambiente Vacunacion completa\r\nTratamiento con gabapentina por el estres \N 321 383 113 9 431 \N +279 2025-01-19 17:50:07.667+00 2025-01-19 17:50:07.667+00 f t Control ambiental Tratamiento sobre el ambiente Vacunacion anual \N 321 383 113 9 432 \N +280 2025-01-19 17:53:49.519+00 2025-01-19 17:53:49.519+00 f t Tumor en glandula adrenal Chequeo de sangre Tratamiento con dipirona, tramadol y dexametasona Bulldon frances \r\nDisfagia \r\nAnt patologicos: Tumor en glandulas adrenales \N 334 397 113 1 438 \N +281 2025-01-19 18:04:52.093+00 2025-01-19 18:04:52.093+00 f t Constipación semillas de psyllium, laxavet, Royal Canin Gastrointestinal Fibre. \r\nOhm, Serenex. Balanceado húmedo. \r\nSugiero control evolutivo, evaluar estado de Sacos Anales. \r\nSigiero dar 1:30 hs antes del control, Gabapentina 100 mg Hembra. Castrada, pelaje gris atigrado.\r\nAdoptada al año. Proviene de un refugio. Fue maltratada. Ahora es arisca. No se deja revisar en el vererinario. Ataca y la tutora no puede tenerla bien. Su veterinaria le indico Gabapentina 100 mg para la proxima consulta, pero no se dio cuenta de darsela hoy. \r\nVive en dpto. Tiene acceso a un balcón. No sale a la calle. Come alimento Iams. \r\nBuen ánimo. Apetito conservado.\r\nNo manifiesta vómitos, diarreas ni signos de enfermedad respiratoria\r\n\r\nPeso: 7 kg\r\nSensorio alerta, estado general bueno. Mucosas rosadas. No se deja revisar. \r\nSe intenta varias veces pero ataca. \N 328 391 113 71 430 \N +282 2025-01-19 18:06:27.373+00 2025-01-19 18:06:27.373+00 f t Malestar general Se dan recomendaciones sobre alimentacion, crianza. Comenzar con paseos, juegos. Si lo sigue notando decaido a pesar de los paseos y juegos, hacer un control veterinario (recordar presencia de garrapata) Rp/ limpiaorejas, poner pipeta o pastilla contra pulgas y garrapatas. \r\nSi decide viajar a USA se indica vacunacion antirrabica en 21 dias. Sino cuando cumpla los 6 meses. Se sugiere hacer vacunacion contra Leptospira para completar plan de vacunacion completo. FN 21/9/24. Jack Russel. Pelaje Blanco y Marron. Macho. \r\nMicrochip: 939000004326176\r\nAdoptado hace 48 hs. Proviene de criadero. Vive en dpto . Tiene acceso a un balcón. No sale a la calle. Come alimento superpremium (no sabe si es Royal Canin o Eukanuba) . Ultima desparasitación: Externos: no tiene Internos: Ancylos el 1/1/25, Total Full el 3 y 13/1. Vacunas: 21/10 Puppy DP, 14/11 Vanguard plus 5/CV, 14/12 y 14/1 Vanguard Plus 5 . \r\nNo le vio pulgas. Se le vio 1 garrapata en la consulta.\r\nNo lo ve muy activo. No sabe si puede que extrañe y/o tenga miedo. Apetito conservado.\r\nNo manifiesta vómitos, diarreas ni signos de enfermedad respiratoria. \r\n\r\nSensorio alerta, estado general bueno. Mucosas rosadas. TLLC: 1" LN: s/p. T° 38 ° C. Auscultación cardiopulmonar normal. FC: 120 lat/min. Pulso: F/S Hidratación normal. SC: 5/9, Boca: sp Oidos: un poco sucios Ojos: sp \r\n\r\nEOP: Palpación abdominal sp, Columna sp, Propiocepción sp , Reflejo tusígeno neg. Testiculos sp \N 324 387 113 71 425 \N +283 2025-01-19 18:13:05.869+00 2025-01-19 18:13:05.87+00 f t Vacunación anual S/p \N 314 374 113 1 415 \N +294 2025-01-20 16:02:29.958+00 2025-01-20 16:02:29.958+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 305 362 114 68 402 \N +295 2025-01-20 16:09:21.33+00 2025-01-20 16:09:21.33+00 f t Paciente sin apetito, no consume agua, hoy temblores y escalofríos \N 317 379 114 78 418 \N +591 2025-03-31 23:50:58.338516+00 2025-03-31 23:50:58.338527+00 f t No asistió a la reunión No asistió a la reunión No asistió a la reunión No asistió a la reunión \N \N 541 637 \N 91 902 {"studies": [], "medications": [], "specialities": []} +1617 2025-09-01 11:50:38.901566+00 2025-09-01 11:50:38.901577+00 f t - - - Se toma presión en forma no invasiva de la base de la cola con medidas q parlaban entre los 16 mmhg de sistolica y 9 mmhg de diastólica. \N \N 6035 4928 \N 1 2013 \N +284 2025-01-20 14:14:21.654+00 2025-01-20 14:14:21.654+00 f t Se observa una dermatitis avanzada en la región inguinal, que presenta signos de infección. La causa más probable es una alergia o dermatitis de contacto. No se observan otras patologías significativas en este examen físico. Se recomienda evitar la exposición de Aldo a posibles alérgenos o irritantes en la región inguinal para prevenir recurrencias de la dermatitis. Mantener la higiene de la zona afectada y continuar con el tratamiento indicado hasta el control en 48 horas. Si los síntomas persisten o empeoran, se sugiere una revisión más detallada para considerar otras opciones terapéuticas. Se administra tratamiento tópico con Triobiotic (3 ml) y Dexa (2 ml) para el manejo de la infección y la inflamación en la zona afectada. Se recomienda realizar un control en 48 horas para evaluar la respuesta al tratamiento y descartar complicaciones adicionales. Aldo es un perro de raza Border Collie, de 4 años de edad, castrado. Presenta un estado general adecuado. El examen de los ojos y la cavidad bucal no muestra alteraciones. El examen físico en general es correcto, sin embargo, se observa una deambulación con un ligero descenso en la cadera, lo que sugiere presencia de dolor en la zona. La exploración del abdomen y otros sistemas también fue sin particularidades. Su apetito, micción y defecación se encuentran dentro de los parámetros normales. La auscultación cardíaca no presenta hallazgos relevantes. \N 343 405 114 70 445 \N +285 2025-01-20 14:38:16.449+00 2025-01-20 14:38:16.449+00 f t Kyra presenta sobrepeso, con una posible hepatomegalia o distensión abdominal debido al exceso de peso. Poroto se encuentra clínicamente bien, sin signos de patologías evidentes. Bruno muestra signos de sobrepeso moderado y alteraciones en su sistema Es crucial que Kyra siga una dieta balanceada y controlada para lograr una pérdida de peso adecuada y evitar complicaciones. Bruno debe ser monitoreado de cerca para controlar su peso y se recomienda realizar un chequeo cardiológico para evaluar la causa de la taquicardia y los silbidos en la respiración. Para Poroto, se recomienda mantener su régimen de cuidado preventivo regular, sin necesidad de tratamientos adicionales en este momento. Para Kyra, se recomienda un plan de reducción de peso gradual, con una dieta controlada para evitar problemas relacionados con la obesidad. Para Bruno, se sugiere un ajuste en su dieta, enfocándose en la pérdida de peso, y un control cardiológico para evaluar su salud cardiovascular. Poroto no requiere tratamiento en este momento, ya que se encuentra en buen estado de salud general. Kyra es una hembra de aproximadamente 3.5 kg, con sobrepeso. Al examen físico, presenta una distensión abdominal, lo que sugiere organomegalia posiblemente relacionada con hepatomegalia o el exceso de peso. La auscultación cardíaca y otros exámenes no revelaron alteraciones. Su estado general parece ser adecuado, pero se recomienda reducir su peso.\r\n\r\nPoroto es un macho de aproximadamente 4 kg, sin alteraciones en su examen físico. No se observó ninguna particularidad en su estado general, siendo su salud en general buena.\r\n\r\nBruno es un macho de aproximadamente 5.5 kg, con sobrepeso moderado. Al palpar su abdomen, se percibió contenido más líquido en los intestinos y leve inflamación. En la auscultación, se detectaron silbidos y taquicardia, con una respiración más profunda de lo normal. Esto sugiere la necesidad de atención en cuanto a su peso y salud cardiovascular. \N 277 329 114 68 369 \N +286 2025-01-20 14:38:36.005+00 2025-01-20 14:38:36.005+00 f t Kyra presenta sobrepeso, con una posible hepatomegalia o distensión abdominal debido al exceso de peso. Poroto se encuentra clínicamente bien, sin signos de patologías evidentes. Bruno muestra signos de sobrepeso moderado y alteraciones en su sistema Es crucial que Kyra siga una dieta balanceada y controlada para lograr una pérdida de peso adecuada y evitar complicaciones. Bruno debe ser monitoreado de cerca para controlar su peso y se recomienda realizar un chequeo cardiológico para evaluar la causa de la taquicardia y los silbidos en la respiración. Para Poroto, se recomienda mantener su régimen de cuidado preventivo regular, sin necesidad de tratamientos adicionales en este momento. Para Kyra, se recomienda un plan de reducción de peso gradual, con una dieta controlada para evitar problemas relacionados con la obesidad. Para Bruno, se sugiere un ajuste en su dieta, enfocándose en la pérdida de peso, y un control cardiológico para evaluar su salud cardiovascular. Poroto no requiere tratamiento en este momento, ya que se encuentra en buen estado de salud general. Kyra es una hembra de aproximadamente 3.5 kg, con sobrepeso. Al examen físico, presenta una distensión abdominal, lo que sugiere organomegalia posiblemente relacionada con hepatomegalia o el exceso de peso. La auscultación cardíaca y otros exámenes no revelaron alteraciones. Su estado general parece ser adecuado, pero se recomienda reducir su peso.\r\n\r\nPoroto es un macho de aproximadamente 4 kg, sin alteraciones en su examen físico. No se observó ninguna particularidad en su estado general, siendo su salud en general buena.\r\n\r\nBruno es un macho de aproximadamente 5.5 kg, con sobrepeso moderado. Al palpar su abdomen, se percibió contenido más líquido en los intestinos y leve inflamación. En la auscultación, se detectaron silbidos y taquicardia, con una respiración más profunda de lo normal. Esto sugiere la necesidad de atención en cuanto a su peso y salud cardiovascular. \N 277 329 114 68 369 \N +287 2025-01-20 15:01:06.122+00 2025-01-20 15:01:06.122+00 f t La herida de la cirugía presenta signos de infección, aunque se está manejando con un nuevo tratamiento de sutura y cuidado adecuado. Se explica que el proceso de cierre de la herida será largo, ya que se está cicatrizando por segunda intención. No s Se debe mantener el vendaje y el collar isabelino hasta que la herida esté completamente cicatrizada. Es importante que se realice un control para evaluar el estado de la herida y determinar si es necesario retirar el vendaje. En caso de presentar signos de complicación, como aumento de la inflamación o secreción, se recomienda una revisión inmediata. Se continuó con el tratamiento indicado por los colegas, que incluye sutura nueva, vendaje y la aplicación del spray tópico para el tratamiento local de la herida. Además, se colocó un collar isabelino para evitar que la gata se agreda la zona afectada. Se recomienda seguimiento para controlar la evolución de la herida, con posibilidad de retirar el vendaje según lo indique el progreso de la cicatrización. La gata fue castrada en zoonosis el 7 de enero y se le retiraron los puntos recientemente. Al examen, se observó una herida abierta en la zona de la cirugía, que afecta solo a la piel. La herida está siendo tratada con sutura nueva, vendaje y la colocación de un collar isabelino, según lo indicado por otros colegas. Se realizó un corte de uñas y, luego de retirar la bata quirúrgica, se aplicó el spray indicado en el vendaje. \N 340 403 114 68 443 \N +288 2025-01-20 15:08:32.286+00 2025-01-20 15:08:32.286+00 f t El gatito no presenta enfermedades o problemas de salud graves en este momento. Las cicatrices visibles son el único hallazgo significativo, relacionadas con su vida en la calle, pero no presentan signos de infección. El comportamiento indócil es una Se recomienda continuar con el programa de vacunación y desparasitación en el futuro. Dado que el gatito parece tener un temperamento un poco indócil, es importante que los propietarios trabajen en su socialización y manejo para ayudarlo a adaptarse mejor a su nuevo entorno. Además, se sugiere monitorear sus cicatrices para asegurarse de que no haya signos de infección. En general, el gatito parece estar saludable y no requiere atención médica adicional en este momento. Se procedió a la vacunación contra la rabia y la triple felina, con la correspondiente dosificación de acuerdo a su edad y peso. No se requiere tratamiento adicional en este momento, ya que el gatito no presenta síntomas de enfermedades. El gatito es un macho castrado, que fue adoptado recientemente por los propietarios, quienes inicialmente pensaron que era hembra. Durante el examen físico, se observó que estaba en buen estado general, con algunas cicatrices evidentes de su vida en la calle, lo que es común en los gatos que han tenido contacto con el ambiente exterior. No se encontraron otras alteraciones en su estado de salud. El gatito fue vacunado contra la rabia y la triple felina sin reacciones adversas. A pesar de que no presenta problemas de salud importantes, su comportamiento es algo indócil, lo que dificultó su manejo durante la consulta. El gatito tiene un temperamento algo indócil, lo que hizo difícil su manejo durante la consulta. Esto puede deberse a su adaptación a su nuevo hogar, lo cual es común en gatos con antecedentes de vida en la calle. \N 319 381 114 1 421 \N +447 2025-02-12 13:26:48.640165+00 2025-02-12 13:26:48.640177+00 f t Se presume anemia, dado el tratamiento instaurado con eritropoyetina y suplemento de hierro. Control en un mes para evaluar la respuesta al tratamiento y realizar extracción de sangre. Eritropoyetina: Aplicación de 4000 UI SC. Repetir la dosis una vez por semana durante tres semanas más.\r\nFerroglobin: 5 ml cada 12 horas como suplemento de hierro. No se especificaron hallazgos clínicos adicionales en esta consulta. \N 410 489 114 70 618 \N +289 2025-01-20 15:13:26.891+00 2025-01-20 15:13:26.891+00 f t El diagnóstico presuntivo es una posible gastroenteritis de origen infeccioso o inflamatorio. No se detectaron alteraciones graves en los estudios previos (perfil sanguíneo y ecografía realizados hace dos semanas), sin embargo, la condición clínica a Se recomienda mantener una dieta blanda y de fácil digestión en casa, continuar con el tratamiento prescrito y realizar seguimiento de la evolución. En caso de que los síntomas persistan o empeoren, se debe volver a realizar un chequeo completo, incluyendo análisis de sangre y una nueva ecografía abdominal para evaluar el estado general y determinar un diagnóstico definitivo. Se administró tratamiento sintomático que incluyó antibióticos (sulfatrimetropin), antipirético, y antidiarréico para controlar los síntomas y evitar complicaciones. Debido a la anorexia leve, se le aplicó un complejo vitamínico para estimular la ingesta. Se dejó antibiótico vía oral para continuar en casa. Se recomendó seguir con los cuidados domiciliarios y vigilar la evolución de los síntomas. Si no hay mejoría, se planteará realizar análisis de sangre y repetir la ecografía abdominal. Perrito con signos de decaimiento generalizado, leve hipertermia, dolor abdominal y diarrea. A la inspección, se observa leve deshidratación, aunque no es severa. No se presenta mal estado general severo, pero sí con ánimo decaído. Se realizó un examen físico en el cual se evidenció la presencia de dolor abdominal a la palpación. \N 317 379 114 1 426 \N +290 2025-01-20 15:25:27.01+00 2025-01-20 15:25:27.01+00 f t Estado de desnutrición avanzada con caquexia severa. Hiporexia persistente que compromete aún más su condición física. Posible deterioro asociado a su edad avanzada. Se aconseja vigilar de cerca la respuesta al tratamiento y evaluar si mejora la ingesta por vía oral en los próximos días. En caso de no haber cambios significativos y dada su condición crítica, se recomienda considerar la eutanasia como una opción compasiva. Mientras tanto, se debe intentar alimentarla por vía oral si la gata lo permite y mantener contacto cercano con el veterinario para ajustes en el manejo. Se administró suero para mejorar la hidratación. Se proporcionó un estimulante del apetito de manera artificial, dado que la paciente no está comiendo de forma voluntaria. La paciente es una gata de casi 21 años de edad, en un estado general muy deteriorado. Presenta una condición corporal extremadamente baja, con notable caquexia y debilidad severa. Tiene dificultad para caminar, mostrando signos de postración. \N 326 389 114 2 428 \N +291 2025-01-20 15:40:11.431+00 2025-01-20 15:40:11.431+00 f t Absceso facial probablemente secundario a peleas. Posible inicio de micoplasmosis. Presencia de infestación por pulgas, que puede actuar como vector de enfermedades Se sugirió a la propietaria estar atenta a cualquier complicación o falta de mejoría en el cuadro clínico. En caso de no observar evolución favorable, se recomendó realizar un análisis de sangre para confirmar o descartar micoplasmosis u otras afecciones. Además, se indicó un control regular de pulgas y medidas para reducir el estrés del gato en su entorno Se inició tratamiento antibiótico para abordar la posible infección asociada al absceso. Se recomendó controlar las pulgas para reducir el riesgo de transmisión de enfermedades y aliviar la incomodidad del gato. Se enfatizó la necesidad de observación cercana para evaluar la evolución clínica. Pepe es un gato macho de aproximadamente 11 años que vive en un entorno expuesto a ratas. Presenta la cara ligeramente hinchada, lo que sugiere la presencia de un absceso probablemente causado por peleas. Además, muestra signos de sobrelamido en la región del bajo vientre y la cara interna de los muslos, indicando un posible cuadro de estrés. Se detecta una leve hipertermia, cuyo origen puede estar asociado a la inflamación facial o al inicio de una micoplasmosis. También se observó la presencia de pulgas. El gato demuestra signos de estrés significativo, posiblemente relacionados con su entorno y las interacciones con otros animales. \N 322 385 114 1 424 \N +292 2025-01-20 15:49:35.619+00 2025-01-20 15:49:35.619+00 f t Estado general bueno, sin hallazgos significativos en el examen físico. Pendiente evaluación cardiovascular completa antes de la castración. Se detecta un retraso en el cronograma de desparasitación y vacunación anual. Se recomienda realizar desparasitación interna y externa para actualizar el estado sanitario del gato. También se aconseja aplicar las vacunas anuales (Antirrábica y Triple Felina). Es fundamental completar los estudios prequirúrgicos y coordinar la fecha de castración según los resultados. Mantener control regular y monitorear cualquier cambio en el comportamiento, apetito o salud general. Se indicó corte de uñas. Se entregó una orden para realizar ecocardiograma, electrocardiograma, medición de presión arterial y un perfil prequirúrgico completo para evaluar la condición del paciente antes de la castración. Arthas es un gato macho entero de 8 años, negro y blanco, adoptado de cachorro. Vive en un departamento junto a una gata castrada de 12 años, sin acceso a exteriores ni balcón. No presenta signos de enfermedad activa: tiene buen ánimo, apetito y juega normalmente. Hidratación normal y peso mantenido. Durante el examen físico, el estado general es bueno, con mucosas rosadas, tiempo de llenado capilar normal (1"), sin nódulos linfáticos palpables. La auscultación cardiopulmonar es normal con una frecuencia cardíaca de 200 latidos/min y pulso fuerte y sincronizado. Se observan condiciones normales en mucosa oral, oído y ojos. En la palpación abdominal, columna y testículos no se detectan anomalías. Se realizó un corte de uñas. \N 313 373 114 71 413 \N +293 2025-01-20 15:52:10.905+00 2025-01-20 15:52:10.905+00 f t Sin signos evidentes de enfermedad en el examen parcial. Se sospecha posible afectación renal relacionada con la edad, pendiente confirmación mediante análisis de orina. Retraso en el cronograma de desparasitación y vacunación anual. Se recomienda realizar la desparasitación interna y externa y actualizar las vacunas anuales (Antirrábica y Triple Felina). Según los resultados del análisis de orina, se valorará si es necesario realizar un chequeo de sangre para completar el diagnóstico. Se sugiere considerar el uso de Pregabalina para reducir el estrés y mejorar la cooperación en futuras consultas. Se entregó orden para realizar análisis de orina completo y relación proteína-creatinina urinaria (UPC) para evaluar la función renal. Se prescribió Pregabalina en comprimidos de 100 mg, con una dosis inicial de 25 a 50 mg por vía oral, para facilitar futuras consultas o procedimientos como extracción de sangre si fuese necesario. Arya es una gata hembra castrada de 12 años, tricolor, que vive en un departamento junto a un gato macho entero de 8 años. No tiene acceso a balcones ni exteriores y consume alimento Excellent adulto. Presenta buen ánimo, apetito conservado, toma agua normalmente, juega como de costumbre y mantiene su peso. La propietaria nota que está un poco menos activa, posiblemente por el calor, pero no hay otros signos clínicos evidentes como vómitos, diarreas o problemas respiratorios. Durante el examen, se observó un sensorio alerta, mucosas rosadas y un estado general bueno. Sin embargo, no se logró completar la auscultación ni una revisión más detallada debido a la resistencia de la gata. Arya es una gata con temperamento arisco, que no tolera bien la manipulación, bufando e intentando arañar durante el examen. Esto dificulta el manejo clínico y puede requerir medicación previa para facilitar futuras evaluaciones. \N 313 372 114 71 414 \N +296 2025-01-20 16:17:02.289+00 2025-01-20 16:17:02.289+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 231 252 114 78 420 \N +297 2025-01-20 16:38:32.291+00 2025-01-20 16:38:32.291+00 f t Infección de glándula palpebral como diagnóstico inicial, con la posibilidad diferencial de un tumor en el párpado Se recomendó realizar un chequeo de sangre anual o semestral, especialmente debido a la predisposición de la raza a problemas de salud complejos y su historial previo de golpe de calor. En caso de que el ojo no responda al tratamiento antibiótico, se valorará la necesidad de una intervención quirúrgica si se confirma un tumor. Los propietarios fueron informados sobre la importancia del seguimiento y de reportar cualquier cambio en el estado de la mascota. Se indicó el uso de un colirio con antibiótico (sin esteroides) para tratar la infección ocular. Se pautó un control en 10 días para evaluar la respuesta al tratamiento. Paciente canina, bulldog adulto de tamaño pequeño. Según los propietarios, presenta una alteración en uno de los ojos detectada hace algún tiempo. Durante la consulta, se observó que el ojo afectado podría estar relacionado con una infección en una glándula del párpado o, alternativamente, con la posibilidad de un tumor. No se reportaron otros signos clínicos ni alteraciones sistémicas significativas. Se mencionó que la perrita ha sufrido previamente un golpe de calor. Puede ser compleja de manejar debido a sus características anatómicas \N 316 378 114 1 417 \N +298 2025-01-20 16:47:24.152+00 2025-01-20 16:47:24.152+00 f t Tos persistente con reflejo laríngeo positivo, asociado a posible inflamación de las vías respiratorias. Seborrea oleosa en la piel. Se sugirió a la dueña cambiar a una dieta de alimentación natural para ayudar a mejorar el estado general de Goro, con el objetivo de controlar su peso y apoyar su salud dermatológica. Además, se informó sobre las complicaciones que el sobrepeso puede causar, incluida la dificultad respiratoria. Se decidió realizar un tratamiento inyectable, ya que administrar medicación oral sería complicado. Se aplicó penicilina y dexametasona ajustadas al peso de Goro. Goro presentó una tos persistente y un reflejo laríngeo muy positivo. No mostró hipertermia ni signos de decaimiento. Se observó que no había perdido el apetito en ningún momento. Sin embargo, tiene un peso de 9 kg, lo cual es un factor importante a considerar para su salud general. Su piel presentaba seborrea oleosa, causando que su manto se viera apelmazado. \N 315 376 114 21 416 \N +299 2025-01-20 16:58:50.549+00 2025-01-20 16:58:50.549+00 f t Rita presenta una masa mamaria en la región inguinal izquierda de características benignas según evaluaciones previas. No muestra signos de enfermedades infecciosas ni alteraciones gastrointestinales. Se recomendó realizar una citología por punción aspirativa con aguja fina (PAAF) para confirmar el diagnóstico de la masa mamaria. Además, se indicó aplicar hielo local en caso de que Rita manifieste dolor o inflamación en el sitio de vacunación. Se realizó la vacunación anual con Séxtuple Recombitek y Antirrábica Bagó, ambas aplicadas por vía subcutánea en el cuello. Rita se presentó alerta y con buen estado general. Las mucosas estaban rosadas, con un tiempo de llenado capilar de 1 segundo. Se encontraba hidratada, con temperatura corporal normal y un puntaje corporal ideal. La frecuencia respiratoria y cardíaca estaban dentro de parámetros normales. La auscultación laringo-traqueo-torácica no mostró anomalías. El abdomen era blando y sin anormalidades palpables. Se observó una deformación en la mama inguinal izquierda, que la tutora indicó ya había sido examinada previamente y diagnosticada como benigna. A la palpación de la columna no se detectaron focos de dolor. La tutora menciona dificultad para sacar a Rita a la calle, lo que ha retrasado su vacunación. \N 304 361 114 77 400 \N +300 2025-01-20 17:02:31.479+00 2025-01-20 17:02:31.479+00 f t Rocco presenta odontolitiasis severa, pero no muestra signos de enfermedades infecciosas ni alteraciones gastrointestinales Se recomendó realizar limpieza dental bajo anestesia inhalatoria, previo a la realización de estudios prequirúrgicos de sangre, ecografía y electrocardiograma. Además, se indicó aplicar hielo local en caso de que Rocco manifieste dolor o inflamación en el sitio de vacunación. Se realizó la vacunación anual con Séxtuple Recombitek y Antirrábica Bagó, ambas aplicadas por vía subcutánea en el cuello. Rocco se presentó alerta y con buen estado general. Las mucosas estaban rosadas, con un tiempo de llenado capilar de 1 segundo. Se encontraba hidratado, con temperatura corporal normal y un puntaje corporal ideal. La frecuencia respiratoria y cardíaca estaban dentro de parámetros normales. La auscultación laringo-traqueo-torácica no mostró anomalías. El abdomen era blando y sin anormalidades palpables. Se observó odontolitiasis severa. A la palpación de la columna no se detectaron focos de dolor. La tutora menciona dificultad para sacar a Rocco a la calle, lo que ha retrasado su vacunación.\r\nEn el pasado, Rocco fue castrado debido a comportamientos agresivos hacia otros perros machos. \N 304 360 114 77 401 \N +301 2025-01-20 18:06:21.388+00 2025-01-20 18:06:21.388+00 f t La paciente no presenta signos de enfermedades ni de malestar evidente. Su condición es excelente, sin hallazgos relevantes durante el examen físico. Se recomienda continuar con las revisiones anuales y mantener el esquema de vacunación al día. Se realiza la vacunación anual correspondiente con triple felina y rabia. No se presentan reacciones adversas ni complicaciones luego de la aplicación de las vacunas. La gata se encuentra en excelente estado general. Se observa limpia, de peso adecuado y con una actitud activa. \N 329 392 114 1 434 \N +302 2025-01-20 18:15:08.582+00 2025-01-20 18:15:08.582+00 f t Debido a a sedación incompleta impidio la atención adecuada Se recomienda que el perro sea internado para continuar con la sedación y evaluación clínica completa en un ambiente controlado. Además, será necesario que los propietarios sigan el tratamiento para el oído y lo lleven cada 12 horas a limpiarlo según el protocolo establecido. El animal recibió una dosis de levomepromazina en la tarde, pero le falta otra dosis para completar la sedación. Se había programado que los propietarios le administraran la siguiente dosis en la madrugada para poder trasladarlo a una veterinaria a las 6 am. Dificultad para manipularlo y atenderlo, el perro presenta signos de incomodidad y mal temperamento. Ya estaba medicado con levomepromazina desde la tarde, pero le faltaba una dosis para completar la sedación, lo que impide una evaluación física completa. Perro de mal temperamento \N 347 408 114 70 448 \N +561 2025-03-22 00:19:21.051434+00 2025-03-22 00:19:21.051449+00 f t Neumonía Medicar en base a resultados. Se recomienda realizar Rx LL y VD de tórax. EOG correcto. Sensorio normal. Ganglios, piel, ojos y cavidad bucal sin particularidades. Peso correcto. Apetito normal,, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades y pulmonar con ruidos aumentados. \N \N 578 676 \N 70 835 {"studies": [], "medications": [], "specialities": []} +303 2025-01-20 18:30:35.185+00 2025-01-20 18:30:35.185+00 f t La gata se encuentra en perfecto estado de salud, sin signos de enfermedad ni alteraciones durante el examen físico. Se recomienda seguir con las revisiones veterinarias anuales y mantener el esquema de vacunación al día. Se realizó la vacunación anual correspondiente con triple felina y rabia para la gata, sin presentar complicaciones ni reacciones adversas post-vacunación La gata presenta un buen estado general. Se observa limpias, con peso adecuado y actitud activa \N 312 370 114 1 409 \N +304 2025-01-20 18:32:24.342+00 2025-01-20 18:32:24.342+00 f t La gata se encuentran en perfecto estado de salud, sin signos de enfermedad ni alteraciones durante el examen físico. Se recomienda seguir con las revisiones veterinarias anuales y mantener el esquema de vacunación al día. Se realizó la vacunación anual correspondiente con triple felina y rabia para la gata, sin presentar complicaciones ni reacciones adversas post-vacunación. La gata presenta un buen estado general. Se observa limpia, con peso adecuado y actitud activa. \N 312 371 114 1 410 \N +305 2025-01-20 18:52:31.725+00 2025-01-20 18:52:31.725+00 f t El gato presenta vómitos recurrentes, principalmente después de consumir alimentos sólidos, lo que podría estar relacionado con un cambio reciente en su dieta. No se encontraron signos claros de obstrucción o alteraciones graves. Es importante que el propietario realice cualquier cambio en la dieta de manera gradual para evitar irritaciones gástricas. Se debe seguir observando al gato en busca de cualquier signo adicional o cambios en su comportamiento. Si los vómitos persisten o si surgen nuevos síntomas, es crucial que se lleve al gato nuevamente para una evaluación más detallada. Se le administró un protector gástrico y un antiemético para aliviar los síntomas y proteger su sistema digestivo. Se indicó al propietario que, si los síntomas no remitían, debería avisar de inmediato para hacer un seguimiento adecuado. El gato se encuentra estable, sin signos de malestar general evidentes. A la palpación abdominal, no se detectaron particularidades ni dolor en la zona gastrointestinal. El animal no muestra alteraciones en el comportamiento ni signos de deshidratación, lo que sugiere que su estado general es bueno a pesar de los vómitos. La condición de su abdomen es normal, sin masas ni distensiones. \N 311 369 114 1 408 \N +306 2025-01-20 19:03:11.935+00 2025-01-20 19:03:11.935+00 f t Kitty ha evolucionado bien después de los vómitos, sin signos de complicaciones. Su estado general es bueno y no presenta problemas digestivos ni de salud evidentes. El grado de obesidad es leve y no se considera un riesgo inmediato para su salud. Se recomienda continuar con el tratamiento antiparasitario y las vacunas. Si la tutora lo considera adecuado, podría empezar con la alimentación natural, siempre bajo supervisión. Además, es importante controlar su peso y evitar complicaciones relacionadas con la obesidad Se sugirió reanudar el tratamiento antiparasitario y las vacunaciones para mantener su salud al día. También se recomendó considerar la alimentación natural, siempre y cuando la tutora lo apruebe. Kitty, una felina hembra de 9 años, se encuentra en buen estado general. Presenta un leve grado de obesidad, aunque este es de carácter moderado. No muestra signos de decaimiento ni pérdida de apetito. La palpación física no revela alteraciones. Tras haber tenido vómitos 3 días atrás, su evolución ha sido favorable y no se observa ningún otro síntoma preocupante. \N 310 367 114 21 407 \N +307 2025-01-20 19:04:38.668+00 2025-01-20 19:04:38.668+00 f t Coco está en buen estado de salud, sin signos clínicos de enfermedad. El grado de obesidad es más pronunciado que el de Kitty, pero no presenta complicaciones asociadas. No se observan alteraciones gastrointestinales ni sistémicas. Es importante que Coco reciba el tratamiento antiparasitario y las vacunas correspondientes para asegurarse de que su salud esté protegida. También se debe controlar su obesidad mediante una dieta adecuada y monitoreo regular del peso Se sugirió reanudar el tratamiento antiparasitario y las vacunaciones, ya que hace más de un año que no se habían actualizado. No fue necesario iniciar otros tratamientos en este momento. Coco se encuentra en buen estado general. No ha mostrado signos de vómitos, diarrea ni otros problemas clínicos. Su palpación física no reveló alteraciones significativas. Presenta un grado de obesidad algo mayor que Kitty, pero no presenta otros síntomas preocupantes. \N 310 368 114 21 411 \N +308 2025-01-20 19:17:54.124+00 2025-01-20 19:17:54.124+00 f t Bebé presenta pérdida de peso y condición corporal baja, mejorando con la dieta gastrointestinal. Se recomienda un análisis de sangre para hemoparásitos y micoplasma. Selina parece saludable, pero su nerviosismo impidió un examen completo. Se sugiere a la tutora de Bebé realizar el análisis de sangre para investigar las causas de su pérdida de peso. En cuanto a Selina, se recomienda seguir con gabapentina para facilitar su manejo durante visitas veterinarias futuras. También se debe continuar con la dieta gastrointestinal de Bebé y monitorear su evolución. Se realizó la vacunación completa en ambos gatos. Para Bebé, se recomienda realizar un análisis de sangre para descartar infecciones como hemoparásitos y micoplasma. Para Selina, se indicó gabapentina para reducir su nerviosismo en futuras consultas. La receta para este medicamento será enviada digitalmente. Bebé es un gato de aproximadamente 9 años, gris, grande y con una condición corporal de 2/5, lo que indica que está flaco y huesudo. Tiene diarreas intermitentes que mejoraron con el cambio a una dieta gastrointestinal. Su deshidratación es normal, y no se presentaron alteraciones graves en los parámetros generales. El examen fue complicado debido al nerviosismo de ambos gatos, pero se completó la vacunación con triple felina y antirrábica.\r\n\r\nSelina es una gata rescatada, no agresiva pero muy nerviosa. Esto dificultó el examen físico completo, aunque se observó en buen estado durante la inspección. También se vacunó correctamente, pero no se lograron obtener parámetros completos debido a su nerviosismo. La revisión física fue difícil debido al nerviosismo del animal, pero se logró vacunar sin mayores complicaciones. Selina es muy nerviosa, lo que dificultó el manejo, pero no fue agresiva. La tutora terminó arañada al intentar sostenerla. \N 285 338 114 9 380 \N +309 2025-01-20 19:26:44.187+00 2025-01-20 19:26:44.187+00 f t Odín tiene una leve gingivitis, pero por lo demás su salud es buena. No se observaron otras alteraciones ni síntomas preocupantes en ninguno de los dos gatitos. Ambos están muy bien cuidados y no presentan signos de enfermedad. Se sugiere que la tutora controle regularmente la salud bucal de Odín para asegurarse de que la gingivitis no empeore. En cuanto a Sombra, no se necesitan medidas especiales. Ambos gatitos deben continuar con su rutina de cuidados generales y visitas regulares al veterinario para asegurarse de que su salud se mantenga en buen estado. No se ha iniciado ningún tratamiento específico en esta consulta. Se recomendó a la tutora que controle la gingivitis de Odín, pero por el momento no es necesario un tratamiento específico. Los dos gatitos, Sombra y Odín, se encuentran en excelente estado de salud. Ambos presentan una condición física óptima, sin signos de enfermedades ni alteraciones. Odín, el más pequeño, mostró una leve gingivitis durante la revisión, pero sin otros problemas evidentes. Sombra no presenta ninguna particularidad y está completamente saludable. \N 73 75 114 1 394 \N +310 2025-01-20 19:33:24.794+00 2025-01-20 19:33:24.794+00 f t El animal se encuentra en buen estado general y apto para recibir la vacuna. Mantener el esquema de vacunación al día y realizar controles veterinarios regulares para asegurar el buen estado de salud del animal. \r\nSi observas algún cambio en su comportamiento o síntomas contactanos. Se aplicó la vacuna correspondiente. Se realizó un examen físico general (Examen Órgano General: Sin Particularidades), y no se detectaron problemas o anomalías visibles en el estado de salud del animal. \N 3 3 114 9 3 \N +311 2025-01-20 19:57:12.282+00 2025-01-20 19:57:12.282+00 f t l gato está en buena condición corporal, sin signos de enfermedades graves. Los estornudos no parecen ser un problema significativo y no se encontraron indicios de infecciones respiratorias. Se recomendó esperar hasta que el gato alcance los 2 kg de peso para iniciar el tratamiento antiparasitario regular. Además, se sugirió mantener los ambientes bien ventilados debido al olor a cigarrillo de los departamentos vecinos, lo que podría influir en su salud respiratoria. La próxima vacunación será en 21 días. Se le administró la primera dosis de la vacuna triple felina y una desparasitación con Moxidex Plus (un cuarto de comprimido hoy, repitiendo cada 3 o 4 meses). El paciente es un gato de 1.8 kg, con buena condición corporal aunque un poco flaco. Durante la consulta estuvo animado y contento, jugando sin problemas. Se le realizó la primera vacunación triple felina y una desparasitación con Moxidex Plus. No se encontraron signos de problemas respiratorios, aunque el tutor mencionó que ha tenido algunos estornudos, especialmente al despertar \N 293 347 114 9 388 \N +312 2025-01-20 20:03:36.767+00 2025-01-20 20:03:36.767+00 f t Chacal presenta anorexia, vómitos y mucosas ictéricas, con signos que sugieren hepatitis, posiblemente relacionada con estrés debido a la mudanza reciente y la cirugía del tutor. Se sospecha inflamación hepática y deshidratación. Se indicó que el gato fuera llevado a la veterinaria para internación con un ayuno de 8 horas, ya que probablemente le realizarán análisis de sangre. Además, se sugirió ofrecerle comida al gato hoy para ver si responde al tratamiento con antieméticos y protector gástrico. El pronóstico es reservado, pero el buen sensorio del gato es un factor positivo. Se administraron ranitidina y metoclopramida como antiemético y protector de mucosas. Se recomendó internación en un centro de derivación por 24 a 48 horas para tratamiento, análisis de sangre y ecografía, para confirmar el diagnóstico y evaluar el estado del hígado. Chacal es un gato de 3-4 años que presenta anorexia, decaimiento, vómitos amarillentos espumosos y mucosas pálidas e ictéricas. Su condición corporal es de 2 y tiene un 7% de deshidratación. El gato está activo, camina, sube a la cama, pero no quiere comer. El abdomen parecía pastoso, lo que podría indicar un posible cuerpo extraño, aunque primariamente se sospecha de una hepatitis debido a inflamación del hígado. Se observó que el gato está en buen sensorio, alerta y olfatea las cosas, lo que es un buen signo. \N 332 395 114 9 436 \N +313 2025-01-20 20:11:17.021+00 2025-01-20 20:11:17.021+00 f t El gato no está desparasitado y tiene las vacunas vencidas. El dolor lumbar podría ser muscular o relacionado con la columna. Se recomienda la desparacitación, análisis de sangre y posibles radiografías. Continuar con gabapentina para el manejo del estrés. Se administró la vacuna antirrábica y triple felina, y se recomendó desparasitación. También se indicó análisis de sangre y, si necesario, radiografías de la zona lumbar. Se le prescribió gabapentina para el manejo del estrés. Dimitri Grosso, un gato de 9 años y 6-7 kg, está alerta y en buen estado general, aunque presenta algo de dolor lumbar. Los parámetros vitales son normales. \N 212 232 114 9 257 \N +314 2025-01-20 20:37:23.29+00 2025-01-20 20:37:23.29+00 f t Piómetra con colecta uterina, acompañada de dolor abdominal severo y descarga purulenta. Es fundamental realizar la cirugía lo antes posible para resolver la piómetra. Se entregaron órdenes específicas a la propietaria con las indicaciones necesarias para el cuidado prequirúrgico. Se administraron antibiótico y antiinflamatorio para estabilización inicial. Se indicó cirugía de urgencia para tratar la condición. La perra presenta abdomen duro y dolor abdominal evidente. Al realizar presión en la zona, se observó una descarga purulenta por la vulva, lo que sugiere una colecta uterina. Su estado clínico es compatible con piómetra. \N 341 404 114 1 444 \N +315 2025-01-20 20:54:13.222+00 2025-01-20 20:54:13.222+00 f t Vacunas vencidas, historial de ingestión de objetos indebidos que le causan diarrea y reciente tratamiento por tos con Rumiclamox y prednisolona. No ha sido desparasitado internamente en más de un año y no usa desparasitación externa. Realizar un coproparasitológico en 6 meses para seguimiento. Continuar con la desparasitación mensual durante el verano y mantener el control de vacunas anuales. Supervisar su entorno para evitar que ingiera objetos indebidos Se aplicaron vacunas séxtuple y antirrábica en la grupa izquierda. Se indicó desparasitar con Nexgard Spectra una vez al mes durante el verano como medida preventiva. El perro está alerta, con mucosas rosadas, tiempo de llenado capilar de 1 segundo, hidratado, abdomen blando y condición corporal 4/9. Los parámetros respiratorios y cardiacos son normales, con pulso fuerte. \N 306 363 114 79 412 \N +316 2025-01-20 21:00:39.14+00 2025-01-20 21:00:39.14+00 f t Sospecha de problemas articulares o en la columna debido a su sobrepeso y caída reciente. Dificultades de movilidad posiblemente relacionadas con su condición física y/o lesiones Completar la radiografía para determinar el estado de la columna. Continuar con la ecografía y los análisis de sangre ya programados para un diagnóstico integral. Seguir estrictamente la dieta prescrita para reducir el peso y mejorar la calidad de vida del perro. Se indicó una dieta para reducir el peso y mejorar su movilidad. Además, se recomendó realizar una radiografía de la columna para evaluar posibles daños estructurales. El perro es de tamaño grande y excedido de peso. Presenta dificultades para caminar y se reporta que tuvo una caída reciente tras la cual no pudo levantarse adecuadamente. \N 296 350 114 2 391 \N +339 2025-01-22 20:02:20.673552+00 2025-01-22 20:02:20.673563+00 f t No se detectaron problemas de salud en la perrita, y no presenta tumores mamarios ni otras complicaciones. Se recomienda realizar la castración en cuanto sea posible, ya que la perrita tiene 8 años y aunque no presenta tumores mamarios, la castración es una medida preventiva para su salud futura. Se administró la vacuna antirrábica (céspedulera) de acuerdo al protocolo de vacunación. La perrita es una caniche de 8 años que fue sometida a un examen físico general, el cual no presentó particularidades ni signos de enfermedad. Se encuentra en un estado de salud aparentemente adecuado. \N 352 414 114 1 457 \N +562 2025-03-23 19:14:40.955978+00 2025-03-23 19:14:40.956016+00 f t Otitis bilateral. Se recomienda nuevamente sacar a pasear a Coco. Se dieron las recomendaciones pertinentes: Sacarlo con pretal y correa. Llevarlo upa hasta otra cuadra (el tutor refiere cierto temor en relación a un perro que reside en cercanía a su domicilio) Aplicación de 2da dosis de Osurnia. Acudo al domicilio para repetir la administración de Osurnia. \nEOG SP, EOP: Gran mejoría en comparación a la consulta anterior (hace 1 semana) \N \N 562 659 \N 89 843 {"studies": [], "medications": [], "specialities": []} +568 2025-03-27 14:03:11.885793+00 2025-03-27 14:03:11.885802+00 f t Gastritis Control en 7 días. Ranitidina iny 0,3 ML+ meloxivet 0.2 ML. Continúa con ranitidina en comp PO x 10 días y Meloxivet gotas PO x 5 días. EOG correcto. Sensorio normal. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito normal, micción y defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar sin particularidades. Vómitos finalizados hace más de 24 hs. \N \N 605 707 \N 70 884 {"studies": [], "medications": [], "specialities": []} +569 2025-03-27 14:11:51.733716+00 2025-03-27 14:11:51.733726+00 f t Pseudopreñez sin lactogénesis Ovario histerectomía. Pido análisis prequirúrgicos y realizar cirugía en 1 mes aprox. Gabapentina 100 mg 1/4 comp c/ 12 hs x 7 días. M EOG correcto. Sensorio normal. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar sin particularidades. Mamas levemente urgentes, sin leche. Comportamiento de preñez, muy nerviosa. \N \N 607 709 \N 70 886 {"studies": [], "medications": [], "specialities": []} +1606 2025-09-01 05:13:49.366534+00 2025-09-01 05:13:49.366547+00 f t - - Se aplica triple felina y antirabixa Eog: S/P \N \N 7443 6126 \N 1 2281 \N +1618 2025-09-01 11:52:34.87309+00 2025-09-01 11:52:34.873098+00 f t - - - Se realiza eutanasia \N \N 5774 4726 \N 1 1973 \N +1629 2025-09-01 23:17:19.260228+00 2025-09-01 23:17:19.260238+00 f t Cistitis - Meloxicam gotas en dosis decreciente x5d.\nCisticalm: 1 cápsula/12h/d/30d, luego 1 cápsula/24h/d/30d.\nCambio de alimento a URINARY S/O. Complementar la dieta con Pouch de Urinary S/O y líquido.\nExamen de orina. Telemedicina de control luego de obtener los resultados. Polaquiuria de una semana de evolución.\nEOG: SP\nEOP: Vejiga levemente distendida (Orinó minutos después de la revisación fuera de la caja de arena, en un lugar poco común).\nPene: Inflamación leve. \N \N 6935 5673 \N 89 2170 \N +1638 2025-09-03 20:49:39.80424+00 2025-09-03 20:49:39.804249+00 f t Granuloma, hematoma post aplicación inyectable y/o golpe. Solo si hay dolor punción y/o biopsia No tocar y controlar con caricia semanal como mucho que vaya involucionando hasta desaparecer, el tiempo usual es 1 a 2 meses. Lesión dérmica granular indolora sin compromiso muscular de 4cms de diámetro aproximadamente. Sin Lnn asociados. \N \N 5189 4266 \N 68 2366 \N +1645 2025-09-04 11:59:02.277256+00 2025-09-04 11:59:02.277267+00 f t Sindrome atopico felino/psicodermatosis Pipetas cada 25 dias y fumigacion ambiental. Rp prednisol 12 gotas por dia por 10 dias luego 10 gotas por dia por 7 dias, evaluar respuesta y recidiva. Consulta dermatologica: paciente con alopecia extensiva en flancos, abd ventral, zona lumbar y rabo. Vive con otro gato en depto. Sin pulguicida frecuente. Come vital cat y atun. \N \N 1661 1592 \N 75 1285 \N +1660 2025-09-07 12:39:41.82212+00 2025-09-07 12:39:41.822132+00 f t . . . EOG normal. Consulta por control. Paciente saludable. Control de libreta sanitaria. Manejo alimentación y ambiente. \N \N 7092 5802 \N 92 2199 \N +1665 2025-09-08 20:28:09.707095+00 2025-09-08 20:28:09.707109+00 f t DAPP - Se medica con Feline Full spot.\nSe indica hacer un control ambiental y a los demás animales de la casa. La gatita muy asustadiza se evidencia que tiene muchas pulgas, en la zona de la grupa se encuentran las alopecias compatible con alaergia por picadura de pulgas. \N \N 7834 6447 \N 1 2363 \N +1670 2025-09-09 13:59:08.745216+00 2025-09-09 13:59:08.745225+00 f t Gastroenteritis inespecifica. No dejar comida se libitum. Y ecografía abdominal si persiste. Empezar a dosificar dieta para descenso de peso. Cepillar pelaje frecuentemente. Recibió Penicilina a demás. Paciente con sobrepeso, vómitos alimenticios, tricobezoare y diarreas, algunas a cólicas inclusive. Conserva el ánimo y el apetito.\nLinfonodulos s/p, en abdomen leve organomegalia que sugiere hepatomegalia. Normotermia, mucosas rosa. \N \N 8210 6752 \N 68 2424 \N +1681 2025-09-09 17:04:01.192085+00 2025-09-09 17:04:01.192095+00 f t laboratorio . . laboratorio \N \N 7201 5906 \N 100 2244 \N +1686 2025-09-10 02:22:05.948431+00 2025-09-10 02:22:05.948444+00 f t Bronquitis inflamatoria/alérgica/asma Manejo de irritantes ambientales (sahumerios, cigarrillo, aromatizantes de ambiente, aerosoles, piedras con mucho polvo, etc).\nActualizar una imagen de tórax (con gabapentina) Indico un nuevo ciclo de prednisolona estable y a dosis acorde (xq venía a días alternos y dosis muy altas). Desparasitación con moxidex plus. Evitar alérgenos ambientales!! Aprox al año y medio le dx asma felino con una rx x presentar tos. Desde entonces la trata con prednisolona cuando tiene cuadros de tos. No probó otro tto, no se hicieron controles radiológicos ni se descartaron otras causas de bronquitis. Siempre respondió bien a la predni, ahora desde el invierno a esta parte (aprox 3 meses) no tiene buena rta. No parece ser estacional, come balanceado y algo se casero principalmente proteína.\nTuvo mycoplasma, la trataron. \N \N 8106 6670 \N 91 2402 \N +1692 2025-09-10 19:56:54.801151+00 2025-09-10 19:56:54.801165+00 f t Saludable. Mantenimiento de salud dental. Ninguno. Paciente sano, auscultación normal. \nLeve sobrepeso. \N \N 8199 6746 \N 68 2413 \N +1697 2025-09-10 20:11:59.793309+00 2025-09-10 20:11:59.793317+00 f t Cristaluria/cistitis idiopatica . . Telemedicina. Hace un mes tuvo una obstruccion urinaria, le colocaron sonda. El unico estudio que tiene es una ecografia que es spp. Actualmente come royal para gatos castrados.\nComenzo con polaquiuria nuevamente.\nIndico pasar a royal canin urinary SO, meloxicam por 3 dias y terazosina por 5 dias. Lo antes posible hacer un control presencial y recolectar orina para analizar. \N \N 7668 6315 \N 80 2313 \N +1701 2025-09-10 20:21:43.89701+00 2025-09-10 20:21:43.897058+00 f t . . . Vomitos esporadicos desde hace 2 semanas. La mayoria de las veces es pelo. Es una gata de pelo largo, y les cuesta cepillarla (agresiva). Alerta, con apetito. Indico cambiar alimento a royal canin hairball (come royal canin indoor). Vacunas vencidas. En 3 semanas control, si esta todo bien vacunamos. \N \N 7827 6440 \N 80 2358 \N +1706 2025-09-10 20:26:42.046406+00 2025-09-10 20:26:42.046418+00 f t . . . Aplico primera triple felina. En un mes aplicar segunda dosis de triple felina y luego un mes despues la antirrabica. \N \N 7367 6052 \N 80 2381 \N +1710 2025-09-11 01:24:35.143545+00 2025-09-11 01:24:35.143558+00 f t Toma de muestra para búsqueda de mycoplasma en frotis de sangre periférica. S/recomendaciones S/tto Toma de muestra para búsqueda de mycoplasma en frotis de sangre periférica. \N \N 5071 4186 \N 91 2420 \N +1712 2025-09-11 02:03:55.375507+00 2025-09-11 02:03:55.37552+00 f t plan vacúnale incompleto/vencido investigar masa en nariz no se indica Gata de 4 años, CASTRADA. EOG mucosas rosadas, LN s/p, auscultación s/p. EOP presenta una masa en puente nasal, consistencia dura, impresiona ósea, comentan que siempre la tuvo. les digo de la conveniencia de hacer estudios, comenzando por radiografiaros, la tutora se pone nerviosa ante la sugerencia. Le indique que si resuelve hacer algo al respecto se comunique para solicitar turnos. Vacunas vencidas hace dos años. Peso aproximado 5,5 kg \N \N 8203 6748 \N 101 2416 \N +1714 2025-09-11 19:07:23.254772+00 2025-09-11 19:07:23.254783+00 f t Motivo de Visita: Extraccion de muestra para Frotis de sangre periférica para hemoparasitos S/recomendaciones S/tto Motivo de Visita: Extraccion de muestra para Frotis de sangre periférica para hemoparasitos \N \N 5071 4186 \N 91 2421 \N +1718 2025-09-12 16:14:57.665688+00 2025-09-12 16:14:57.665696+00 f t laboratorio . . laboratorio \N \N 8287 6823 \N 100 2444 \N +1720 2025-09-13 00:10:05.321447+00 2025-09-13 00:10:05.321463+00 f t Vacunación anual . . EOG normal \N \N 8478 6985 \N 92 2468 \N +570 2025-03-27 14:16:56.868791+00 2025-03-27 14:16:56.8688+00 f t Se vacuna con triple felina. Repetir en 1 mes. - EOG correcto. Sensorio normal. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito, micción, y defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar sin particularidades. \N \N 597 699 \N 70 871 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 3}], "specialities": []} +571 2025-03-27 23:42:26.312748+00 2025-03-27 23:42:26.312756+00 f t - sugiero realizar desparasitaciones internas cada 6 meses. - Paciente canina hembra castrada 2 años.\naus s/p\nnormotermica normohidratada\nalimentacion: balanceado royal canin\nconvive con otro canino y 2 felinos \N \N 601 703 \N 88 878 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1168", "next_application_months": 12}], "specialities": []} +572 2025-03-27 23:54:34.798321+00 2025-03-27 23:54:34.798329+00 f t paciente diabetica y/o esteatosis hepatica realizo orden para ecografia abdominal y perfil hepatico realizo pasaje de solucion fisiologica sc (350 ml)\nindico alimentacion palatable ( pollo a la plancha) junto con fibra en la dieta ( pure calabaza) siempre y cuando corte vomitos y para favorecer el transito TGI ya que me comenta que defeca pero en menor medida de lo normal felina hembra castrada 13 años. agresiva. \nconsulta por decaimiento, anorexia y vomitos biliosos. evolucion 24-48hs\nplan sanitario vencido \nobesa\npaciente agresiva. imposible auscular \npalpacion abdominal muy superficial por la dificultad de realizar una revision clinica , algia abdominal.\ndeshidratacion 8-9 %\nestado alerta\nimposible tomar temperatura \N \N 604 706 \N 88 883 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "872", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "950", "next_application_months": 0}], "specialities": []} +573 2025-03-28 00:04:09.827319+00 2025-03-28 00:04:09.82733+00 f t . desparasitacion interna y externa con pipeta en la proxima aplicacion de pipeta \nrealizo orden para realizar perfil hepatico + hdl + ldl + lipidos totales indico cambio de alimentacion por proplan obesity + aumento/ estimulo de la actividad fisica. felina hembra castrada 5 años 6.100kg\nconsulta por vacunas anuales\naus s/p \ncc 4\ncome excelent adulto\ndesparasitacion interna vencida . \ndesparasitacion externa al dia .\nno presenta lesiones en piel , notamos una zona con una pequeña alopesia pero sin alteraciones en piel cicatrizado. \N \N 594 695 \N 88 867 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +575 2025-03-28 00:23:20.034273+00 2025-03-28 00:23:20.034282+00 f t entropion en globo ocular izquierdo ( ubicado en parpado superior) interconsulta con oftalmologo la paciente presenta una obliteracion total del globo ocular izquierdo formada por pelos, secrecion ocular y secrecion purulenta , la cual imposibilita observar el mismo.\nse realiza toallet con solucion fisiologica abundate, hasta retirar todo el aglomerado y poder visualizar ojo.\ntest fluoresceina negativo en ambos ojos \ndermatitis palpebral \nentropion en parpado superior izquierdo\nindico antibateriano sin esteroides 1 gota en cada ojo cada 12 hs por 7 dias hembra caniche 10 años castrada\nconsulta por imposibilidad para visualizar el globo ocular izquierdo. evolucion incierta \nla llevo a la peluqueria , le realizaron el correspondiente corte y baño y al salir de la peluqueria , le sugirieron atencion veterinaria \N \N 573 671 \N 88 827 {"studies": [], "medications": [{"id_medicina": "704", "next_application_months": 0}], "specialities": ["53"]} +577 2025-03-28 00:42:12.21741+00 2025-03-28 00:42:12.217419+00 f t micosis sugiero precaucion por la posibilidad de que el macho sirva a la hembra, ya que ellos no quieren cachorros aplico tribiotic sc 3 ml, en indico 3 aplicaciones mas cada 48 hs . explico como realizar las aplicaciones .\nindico tritohexidin (shampoo). baños 2 veces por semana + ketoconazol 200 mg ( 1 1/2) cada 24 hs por 20 dias bulldog ingles entera 8 años 28 kg\ncome alimento royal canin hipoalergenico\nconsulta por prurito intenso (8/10). evolucion segun tutora 4 dias \ncc 5\naus s/p\npresenta manto apolillado en parrilla costal y flanco derecho e izquierdo. lesiones alopesicas redondeadas altamente pruriginosas. al tirar del pelo en relacion a la lesiones alopesicas el pelo se desprende muy facilmente.\nademas presenta dermatitis marcada en cabeza y cuello ( segun tutora producto de las peleas con el bulldog frances con el que convive)\nedema vulvar marcado ( la paciente está en celo).\notitis bilateral.\nestuvo en tto hace poco con prednisolona + otovier nf indicado por otro colega. hubo una mejoria segun lo que me comenta, pero ahora empeoro. \N \N 462 548 \N 88 898 {"studies": [], "medications": [], "specialities": []} +578 2025-03-28 21:10:53.125098+00 2025-03-28 21:10:53.125108+00 f t Bronquitis inflamatoria/alérgica/parasitaria? Si no hay mejoría notable en el corto plazo o se les dificulta implementar el tto, reportarlo sin esperar. Flutivent inhalatorio: fluticasona y salmeterol con aerocamara casera, se las dejo armada y muestro como realizarlo.\n1 puf cada 12 hs x 2 meses, sin suspender la medicación realizar control radiológico (dejo orden con fecha correspondiente)\nPipeta revolution.\nContinuar con manejo de irritantes ambientales. En las últimas 2 semanas se incrementaron notablemente los episodios de tos. Antes eran esporádicos, ahora los hace no menos de 2 o 3 veces x día. A veces tiene mocos por nariz y tiene estornudos cada tanto.\nAusc: refuerzo de MV, soplo laringitraqueobronquial aumentado, reflejo tusigeno francamente positivo (más de 10 golpes de tos).\nMe muestra los estudios realizados en octubre eco abd y rx tórax, en ese momento ya se observaba un patrón bronquial. Desde ese momento hicieron manejo de irritantes ambientales que fue lo único que le indicaron. \N \N 507 599 \N 91 888 {"studies": ["2"], "medications": [], "specialities": []} +579 2025-03-29 15:11:49.338749+00 2025-03-29 15:11:49.33876+00 f t DAPP Se recomienda realizar control por telemedicna en 10 días. \nSi no evoluciona con el tratamiento se debe descartar alergia alimentaria y alopecia psicogénica felina. Dexametasona 05,mg/kg + 1 dosis de Tribiotic inyectable.\nPrednisol gotas a dosis decreciente durante 8 días.\nColocación de pipeta.\n"Milacrem" luego de la desinfección de la herida.\nSe colocó una gota de fluoresceína en el ojo derecho (-) para descartar úlcera corneal. La tutora refiere que "Arya" presenta prurito intenso con 1 mes de evolución y presencia de "granitos". A la revisación clínica se encuentra una región alopécica con la presencia de una herida en el cuello del lado izquierdo por debajo de la mandíbula. Párpado inferior del ojo derecho inflamado. Presencia de escasas heces de pulgas en la región lumbosacra.\nElla le limpiaba con H20 y yodo y luego colocaba Platsul. \N \N 615 718 \N 89 899 {"studies": [], "medications": [{"id_medicina": "705", "next_application_months": 0}], "specialities": []} +637 2025-04-09 00:23:29.399802+00 2025-04-09 00:23:29.399811+00 f t - - Se aplica triple felina. Ego: s/p \N \N 333 754 \N 1 945 {"studies": [], "medications": [], "specialities": []} +580 2025-03-29 15:20:46.925701+00 2025-03-29 15:20:46.925709+00 f t Úlcera corneal superficial. Control a los 7 días. Colocación de una gota de fluoresceína (+): Úlcera superficial de córnea\nSe recetó "Cicatrizante ocular con antibióticos" para colocación 4 veces por día durante 1 semana. Epífora ojo derecho de 2 días de evolución. \N \N 71 719 \N 89 890 {"studies": [], "medications": [{"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "872", "next_application_months": 0}], "specialities": []} +1607 2025-09-01 05:15:28.115406+00 2025-09-01 05:15:28.115416+00 f t - - Aplico antirabica, triple felina. Eog: s/p \N \N 7443 6126 \N 1 2280 \N +1619 2025-09-01 11:55:54.930552+00 2025-09-01 11:55:54.930561+00 f t - - Se aplica triple felina y antirabica Eog: s/p \N \N 5731 4685 \N 1 1963 \N +1630 2025-09-01 23:21:22.81737+00 2025-09-01 23:21:22.817383+00 f t Vacunación. Se recomienda aplicar el refuerzo de la vacuna séxtuple en 21d y al mes del refuerzo la vacuna antirrábica. - Vacunación séxtuple.\nEOG S/P.\nPaciente presenta un proceso hormonal (tratado por otro colega hace un mes) que retrasó la vacunación. \N \N 7529 6193 \N 89 2295 \N +1639 2025-09-03 20:52:29.543561+00 2025-09-03 20:52:29.543575+00 f t Sospecho cistitis por estímulo hormonal, madurez sexual. Ecografía abdominal si no vuelve a la normalidad. Controlar que vaya volviendo a la normalidad la micción. Y que no haya sangre o aumente el consumo de agua. Cachorro que hace 24hs tiene poliurea, sin polidipsia ni cambios clínicos. Se lame el pene más seguido. \N \N 7664 6311 \N 68 2309 \N +1646 2025-09-04 12:02:07.879959+00 2025-09-04 12:02:07.879973+00 f t DAC Luego aplicacion de Cytpoint 20 mg 1 vial. Prednisolona 10 mg 3/4 comp por dia por 10 dias, mometasona 2 veces por dia por 10 dias en granulomas, goas oftálmicas cada 12 hs oir 10 dias. Consulta dermatologica: paciente con cuadro de inflamacion palpebral ojo derecho, prurito intenso, mucho lamido de manos, granuloma interdigital entre dedo 2 y 3 de mano derecha. Tratado con varios productos, ahora con Apoquel 16 mg sin respuesta.No pasea mucho, sobrepeso. \N \N 1082 1150 \N 75 1187 \N +1654 2025-09-07 12:11:09.454896+00 2025-09-07 12:11:09.454906+00 f t Enteritis Control en 24 hs Diafin+ dieta antidiarreica+giacoccide control en 24 hs Sensorio alerta. Hidratación normal. Diarrea acuosa y con sangre. Apetito normal. \N \N 8097 6662 \N 92 2404 \N +1711 2025-09-11 01:26:22.763404+00 2025-09-11 01:26:22.763413+00 f t Toma de muestra para búsqueda de mycoplasma en frotis de sangre periférica. S/recomendaciones S/tto Toma de muestra para búsqueda de mycoplasma en frotis de sangre periférica. \N \N 5071 4220 \N 91 2421 \N +1661 2025-09-07 12:45:45.309176+00 2025-09-07 12:45:45.309208+00 f t Dermatitis miliar. Dermatitis alérgica por pulgas . Tribiotic+ dexametasona+ pipeta antipulgas + control ambiental de pulgas+ alimento para piel sensible Dermatitis . Deformación en más en axila. \N \N 7591 6248 \N 92 2307 \N +1666 2025-09-08 20:37:18.726622+00 2025-09-08 20:37:18.726631+00 f t - - Indicó realizar fluidoterapia q 50 ml/kg en forma subcutánea durante 3 días para ver si podemos mejorar esos valores de urea y creatinina. Paciente continúa con secreción filante y mucosa de la nariz, del mismo ollar, pero con una coloración más clara. La propietaria comenta que la secreción se calmo los primeros días de tratamiento que coinciden con la aplicación del corticoides. A su vez en los análisis de sangre se ve que hay una azotemia por una posible enfermedad renal crónica. Se indica continuar con el micolitico y antibiótico, y realizar placa de cavidad nasal. \N \N 7323 6009 \N 1 2396 \N +1671 2025-09-09 15:44:23.703382+00 2025-09-09 15:44:23.70339+00 f t Neoplasia, cardiopatia Sin Eutanasia Paciente postrado con abdomen ascitico, edema de miembros. Soplo y mucosas blancas, organomegalia. \N \N 7597 6252 \N 68 2308 \N +1682 2025-09-09 20:11:56.088778+00 2025-09-09 20:11:56.088789+00 f t Estado General bueno, apto para ser evacuado controlar peso vacunación anual EOG bueno, mucosas rosadas, dllc no puedo realizarlo. auscultado cardiaca s/p FC 200, auscultación respirar s/p. LN s/p. EOP sobrepeso y presencia de caspa en lomo. \N \N 8190 6737 \N 101 2415 \N +1687 2025-09-10 11:56:10.40187+00 2025-09-10 11:56:10.401879+00 f t Neoplasia de piel/ quiste sebáceo. Limpieza de dientes. Escisión quirúrgica. Neoplasia en base de cuello flanco derecho. 1cm aprox de diámetro pedunculuda y circunscripta, alopecia local. Genera prurito. \nDorsal craneal un único quiste dérmico. \N \N 266 335 \N 68 2390 \N +1693 2025-09-10 19:58:28.656371+00 2025-09-10 19:58:28.65638+00 f t Leve odontolitiasis Sin Limpieza dental/ Paciente saludable. Auscultación normal. \N \N 8199 6745 \N 68 2414 \N +1698 2025-09-10 20:13:35.078374+00 2025-09-10 20:13:35.078382+00 f t . . . Primera consulta. Gato de aprox 10 meses rescatado. Tuvo sarna en las orejas hace 3 semanas, respondio a inyeccion de ivermectina. Dificil de revisar. Indico pipeta meltra spot on para parasitos internos y vacuna la semana que viene \N \N 7367 6052 \N 80 2269 \N +1702 2025-09-10 20:23:36.276286+00 2025-09-10 20:23:36.276297+00 f t . . . Aplico antirrabica y sextuple. Toma fenobarbital hace 10 años ya que tenia convulsiones y se lo indico el neurologo, luego no volvio a convulsionar ni acudio a control. Indico control neurologico. Aveces la desparasita, explico que no es conveniente darle ningun farmaco. \N \N 88 6561 \N 80 2398 \N +1707 2025-09-10 20:29:42.159249+00 2025-09-10 20:29:42.159262+00 f t . . . Hoy estuvo decaida, ayer no comio y lloraba cuando le acariciaban el cuello. Presenta dolor cervical a la palpacion y a la flexion y extension. Masa que aparenta ser el ganglio axilar derecho, y por encima otra masa que aparenta ser lipoma. Tomo muestra para citologia por paf de ambas masas. Aplico dexametasona y tramadol. Doy receta para dos dias de tramadol cada 12 hs (1 comp de 50 o 60 mg). Control con resultados. Si es un tumor benigno se puede iniciar fisioterapia, pendiente radiografia de cuello. \N \N 8287 6823 \N 80 2432 \N +1713 2025-09-11 12:26:04.535902+00 2025-09-11 12:26:04.53591+00 f t laboratorio , , laboratorio \N \N 8275 6835 \N 100 2434 \N +1715 2025-09-11 19:09:05.841592+00 2025-09-11 19:09:05.841601+00 f t Preqx riesgo anestésico habitual. S/recomendaciones S/tto Mdc: devolución de estudios. Ruptura de cruzados, tiene indicación de cx y ya hizo preqx q dieron ok. \N \N 8275 6835 \N 91 2457 \N +1717 2025-09-12 14:43:48.142057+00 2025-09-12 14:43:48.142066+00 f t Blefaritis idiopatica felina. Usar antiparasitario interno y externo para descartar ectoparasitos. Dexaflox gotas 1 cada 12horas en ambos ojos 7 días y al término Gentamicina gotas 1 gota cada 12 horas 5 días. Irritación ojo derecho, acicalado más intenso. Pupilas y reflejos s/p.\nLnn normales, boca sin alteraciones.\nFluorosceina negativo, sin drenaje naso lagrimal. Molestias en maniobra. Dolor. \N \N 8486 6991 \N 68 2470 \N +1719 2025-09-12 19:24:04.968165+00 2025-09-12 19:24:04.968174+00 f t Discrasia alimentaria /gastroenteritis Análisis de sangre , ecografía y cardiológico por edad. Ayuno sólido 12hs\nEvaluar apetito y tolerancia con pollo a la plancha. Control presencial en caso de persistir vómitos. Teleconsulta. Mc arcadas y come pasto. Defeca orina ok. No hubo vómitos productivos si tutora relata borgorigmos. Toma agua y tolera. Ayer comió un poco de panceta fuera de su dieta. No es de comer cosas.Se indica ayuno sólido de 12hs . Dieta blanda pollo /sopa de moro. \N \N 8397 6920 \N 79 2451 \N +1721 2025-09-13 14:31:32.220699+00 2025-09-13 14:31:32.220707+00 f t Presenta onicocriptosis en la almohadilla plantar. Realizo corte de uñas Control en 48hs\nTopicar la zona afectada con iodo povidona Tribiotic+ dexametasona La tutora relata dolor en miembro anterior Izquierdo y qué se está lamiendo la zona hace varios días, \N \N 8446 6959 \N 21 2458 \N +582 2025-03-29 15:41:30.67824+00 2025-03-29 15:41:30.678248+00 f t Contractura Reposo Se indica meloxicam por 3 dias Luego de correr por 2 hs como hace siempre junto a su tutor comenzo a renguear y no quiere subir al sillon. Claudicacion intermitente de 1 a 2 grado en uno de los miembros posteriores. Se palpa contractura de musculatura en medial del muslo. \N \N 599 701 \N 80 876 {"studies": [], "medications": [], "specialities": []} +1608 2025-09-01 05:23:09.648874+00 2025-09-01 05:23:09.648886+00 f t Rinitis? - Se oolica antibióticos y antiinflamatorios. Se indica continuar con el antibiotico y comenzar con bromexina en comprimido. La propietaria comenta que estuvo hace unos días con estornudos, pero ahora está con una secreción verdosa por uno de los ollares.\nPaciente normotermico, normohidratado.\nNo tiene aumento de los ganglios satelitales, ni se ausculta ningina particularidad en tórax. \N \N 7323 6009 \N 1 2253 \N +1620 2025-09-01 11:59:47.810959+00 2025-09-01 11:59:47.810968+00 f t - - Se realiza vacunación con triple felina y antirabica. Se realiza corte de uñas. Eog: s/p \N \N 6084 4969 \N 1 2019 \N +1631 2025-09-01 23:29:36.476864+00 2025-09-01 23:29:36.476873+00 f t Asma felino Se recomienda utilizar las piedras que ella utilizaba antes de ser adoptada. No fumar en el hogar, perfumar, ni prender sahumerios. Se solicita Rx de tórax LL y DV + PGC c/orina.\nPor el momento se prefiere no comenzar con un tratamiento hasta confirmarlo por Rx por Dx: Leucemia felina. En caso de presentar más episodios y aún no contar con la Rx se recomienda telemedicina para medicar a dosis segura. "Misa" fue adoptada por el tutor hace 4 meses. Desde entonces presenta tos seca esporádica que fue exacerbándose con el pasar de las semanas presentando en la última semana hasta tres episodios por día.\nEl tutor relata que cambió las piedras de "Misa" cuando la adoptó por unas que presentan algo de polvo suelto.\nRT -\nAuscultación dificultosa por ronroneo permanente, aparente silbancia. \N \N 7112 5819 \N 89 2208 \N +1640 2025-09-03 23:51:46.857724+00 2025-09-03 23:51:46.857733+00 f t Desritualización. Es decir, ante los cambios permanentes de ambiente, ya que han pasado por una mudanza hace dos meses, y se trasladan a una casa de fin de semana en forma reiterada, no ha logrado aun sentir el territorio como propio. No llamarle la atención cuando rasca algún elemento, simplemente tratar de ubicar en ese mismo lugar un rascador o alfombra que pueda utilizar en lugar del mueble. Redireccionar el marcaje. Enriquecimiento ambiental: se indica agregar dos bandejas sanitarias, colocarlas en lugares estratégicos, apartados en lo posible de lugares de paso. Dejar abiertas las puertas que marca con las uñas, para descartar que no lo haga para que le abran, en lugar de tomar como sustrato para su marcaje.\nEn el cuarto dejar abierta la puerta del placard, para que tenga un lugar en altura para descansar y apartarse cuando lo crea necesario, "siempre revisando que no quede encerrada" !! Ante la nueva mudanza que concretarán en un mes, sólo se indica que trasladen algún elemento de uso cotidiano de las gatitas de la casa de fin de semana al nuevo hogar, para que lo vayan sintiendo propio.\nUtilizar feromonas en difusor, apagándolas una vez por semana, para que no se saturen los receptores, en la casa de fin de semana, coo en la actual vivienda y en la nueva. Refieren tutores que la tienen desde los tres meses de edad, siempre fue independiente. Castrada a los 6/7 meses, después de entrar en su primer celo. \nEsta presentando conductas de incomodidad, marcaje de uñas excesivo. Se esconde debajo de las cobijas de la cama de los tutores, ante la presencia de extraños. Esto no sería anormal, en realidad esta buscando un lugar donde sentirse segura. \N \N 4620 3839 \N 105 2268 \N +1647 2025-09-04 12:05:29.342015+00 2025-09-04 12:05:29.342024+00 f t Sindrome de piel atopica felina/psicodermatosis Pipeta cada 30 dias Prednisol 12 gotas por dia por 7 dias, luego 10 gotas por dia por 7 dias, luego cada 48 hs por 5 tomas, evaluar respuesta Consulta dermatologica: paciente con alopecia extensiva, zona de abdomen ventral, posterior de mps, rabo. Sin eritema ni placas. Evolucion mas de 1año, sin ttos previos. No tiene virales realizadas. Convive con otro gato en depto. Comen excellent adulto. Pipeta vencida. \N \N 2215 2025 \N 75 1381 \N +1655 2025-09-07 12:20:46.869021+00 2025-09-07 12:20:46.869033+00 f t Hepatopatia /intolerancia alimentaria Control en dos meses Protector hepático+ alimento hepático de RC + manejo alimentario Paciente con historial de vómitos esporádicos (1 vez por semana). Ecografía abdominal con imágenes sugerente de hepatopatia metabólica/infiltrativa \N \N 393 467 \N 92 2401 \N +1662 2025-09-07 15:55:51.020999+00 2025-09-07 15:55:51.02101+00 f t Neumonía Repetir tratamiento en 24 hs(dexametasona) y en 48hs antibióticos y evaluación de administración de dexametasona según clínica Clamoxyl+ tribiotic+dexametasona+ vapor + recovery Paciente disneico, anorexia, hidratación normal, orina normal, tos. \N \N 8120 6682 \N 92 2406 \N +1667 2025-09-08 20:42:54.319241+00 2025-09-08 20:42:54.319249+00 f t Enteritis? - Se realiza tratamiento sintomático con dipirona, tramadol, diafin 2, y tribiotic. Indicó continuar con las pastillas que ya se le había. Indicado (meteonidazol y ranitidina) continuar con dieta baja en reciduos Ya lo estaban haciendo atender en otra veterinaria, pero le indicaron comprimidos y el propietario no se los puede administrar, presenta leve dolor abdominal y tiene diarrea sanguinolenta. Es ta con anorexia y tampoco quiere tomar agua. \N \N 8036 6623 \N 1 2392 \N +1672 2025-09-09 15:45:22.517271+00 2025-09-09 15:45:22.51728+00 f t No coincidimos No se realizó la visita No se realizó la visita No coincidimos en domicilio \N \N 7483 6153 \N 68 2292 \N +1683 2025-09-09 23:02:13.611342+00 2025-09-09 23:02:13.611351+00 f t . Continuar con vapor cada 12 hs Repito clamoxyl+ tribiotic+ dexa Mejor. Comenzó a comer \N \N 8120 6682 \N 92 2427 \N +1688 2025-09-10 11:57:51.493674+00 2025-09-10 11:57:51.493682+00 f t Cuadro alérgico. No hay cambios clínicos que sugieran cuadro infeccioso. En caso de volver o de tocarse, Ocuflox colirio 1 gota diaria 7 días. Lagrimeo ojo izquierdo de 2 días con remisión completa sin tratamiento. Estornudos \N \N 8169 6718 \N 68 2412 \N +1694 2025-09-10 20:05:57.041959+00 2025-09-10 20:05:57.041973+00 f t . . . Hipotiroidismo dianosticado hace 1 mes aprox, le indicaron T4 y fenofibratos (hipertrigliceridemia en 600 mg/dl). Los fenofibratos le generan vomitos. Indico seguir con T4 solamente y controlar en 3 meses con nuevo estudio de sangre completo. Aplique ranitidina y pileran. \N \N 7436 6120 \N 80 2279 \N +1699 2025-09-10 20:17:02.046095+00 2025-09-10 20:17:02.046106+00 f t . . . Aplico atr y triple felina. Eog spp. \N \N 7606 6259 \N 80 2306 \N +1703 2025-09-10 20:24:00.425563+00 2025-09-10 20:24:00.425573+00 f t . . . Aplico antirrabica y sextuple. Eog spp. \N \N 88 6562 \N 80 2397 \N +1708 2025-09-10 22:34:52.151286+00 2025-09-10 22:34:52.151294+00 f t Enfermedad periodontal severa. Grave. Mantenimiento de boca. Y estudios de control para medicación cardiológica/ Odontobiotic y dental plax.\nIndicó pre quirúrgicos para limpieza de dientes.\nHay soplo 3/6. Canino geronte, con halitosis severa por enfermedad periodontal severa, cuesta la oclusion de la misma. Hay dermatitis periférica del morro por supuracion de la boca.\nVarias lesiones de piel (verruga) pedunculadas que puede resecarse para evitar que se ulceren.\nAlteraciones en el aplomo por uñas, realizó corte, hay varias encarnadas. \N \N 8378 6902 \N 68 2446 \N +1436 2025-08-08 20:34:23.481725+00 2025-08-08 20:34:23.481733+00 f t Laboratorio Laboratorio Laboratorio Laboratorio \N \N 5071 4186 \N 100 1851 {"studies": [], "medications": [], "specialities": []} +1716 2025-09-11 19:34:54.696296+00 2025-09-11 19:34:54.696304+00 f t laboratorio . . laboratorio \N \N 5071 4186 \N 100 2459 \N +584 2025-03-29 15:47:15.991463+00 2025-03-29 15:47:15.991474+00 f t Alopecia psicogenica felina Evitar estres Aplique dexametasona sc. Seguir con prednisolona 10 mg (1/4 por 3 dias,luego 1/8 por 2 dias) a partir de mañana Prurito en todo el cuerpo. Estan en construccion cerca de su casa, se escucha mucho ruido \N \N 614 717 \N 80 897 {"studies": [], "medications": [], "specialities": []} +585 2025-03-30 21:05:34.632467+00 2025-03-30 21:05:34.632474+00 f t Lipidosis hepática Se recomienda evaluar evolución. Internar en caso de que "Almendra" siga sin apetito y/o comience con vómitos. Se recomienda continuar con el protector hepático que la tutora le está dando.\nSe receta Mirtazapina para tratamiento PO.\nEn caso de evolucón favorable se indica realizar ecografía abdominal y perfil general completo. \nEn caso de evolución desfavorable al día siguiente (25/03) se indica internación (la tutora cuenta con la orden de derivación para internación+eco+perfil glr comp). La tutora refiere que "Almendra" presenta hiporexia de 10 días de evolución y coloración amarillenta de las mucosas (ictericia). \N \N 596 698 \N 89 870 {"studies": ["1", "7"], "medications": [], "specialities": ["41", "74", "76"]} +597 2025-04-01 21:23:44.333503+00 2025-04-01 21:23:44.333511+00 f t Gastritis? Se indica continuar con medicación vía oral.\nGiacoccide. Se aplica dipirona, ondanseteon, ranitidina y sulfatrimetropin La propietaria comenta que comió un poco de pasta dental, desde entonces no está queriendo comer y lo nota decaido \N \N 591 692 \N 1 863 {"studies": [], "medications": [], "specialities": []} +586 2025-03-31 00:33:56.607598+00 2025-03-31 00:33:56.607612+00 f t Enfermedad mitral, enfermedad renal cronica compensada, anemia por erc Se indica perfil general completo, orina completa y consulta cardiologica. Optamox duo 14:1 suspension. 1,2 ml cada 12 hs por 6 dias.\nDesparasitacion con meltra gold.\nColocar pipeta power ultra. Consultan por tos nocturna. Pica. Enfermedad periodontal avanzada, mal olor. Soplo 5/6. Pulmones despejados. Normotermico. Polidipsia poliuria. Tiene pulgas. \N \N 622 731 \N 80 914 {"studies": ["7"], "medications": [], "specialities": ["8"]} +588 2025-03-31 21:14:10.960666+00 2025-03-31 21:14:10.960675+00 f t Cistitis idiop felina + ITU Control en 24 hs \nPregabalina previo a las visitas/consultas veterinarias \nDe ver avances se necesitara análisis de orina Cefalexina cada 12 hs \nMeloxicam cada 24 hs \nRanitidina cada 12 hs pre cefalexina\nCambio a dieta casera por estos momentos, luego continuar con Urinary en 1 mes Paciente alerta, con signos de FLUTD: polaquiuria, hematuria, micción fuera de la bandeja. Mantiene el apetito y la actitud habitual, no se deja revisar (indócil) pero se lo observa dirigirse a la bandeja sanitaria reiteradas veces con permeabilidad uretral, no se palpa tensión abdominal, \N \N 623 732 \N 94 917 {"studies": [], "medications": [], "specialities": []} +589 2025-03-31 21:18:08.820984+00 2025-03-31 21:18:08.820996+00 f t Buen estado gral Pendiente vacunación anual (triple y antirrábica) Pendiente tratamiento antiparasitario Felino macho para consulta clínica con motivo de control anual.\nPlan de vacunación y antiparasitarios vencidos.\nBuen estado general, buen estado de manto, EOG sin particularidades, no se observan alteraciones clínicamente. \N \N 623 733 \N 94 918 {"studies": [], "medications": [], "specialities": []} +590 2025-03-31 21:42:10.795744+00 2025-03-31 21:42:10.795751+00 f t Vacunación Medicina preventiva. Cardiólogo y análisis de sangre. Vacunación Saludable, sobrepeso. \N \N 582 683 \N 68 849 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +592 2025-03-31 23:55:27.473158+00 2025-03-31 23:55:27.473166+00 f t Parece haber tenido una herida costrosa y al desprender costra de visualiza piel con alopecía localizada, ulcerada con sx de contaminación superficial. Se rasca y se lame. Limpieza de herida con antiséptico 2 veces al día y colocar macril tópico. De acuerdo a la evolución continúa tópico hasta remisión o vuelve a pedir veterinario a domicilio para repetir antibiótico. Se aplica dexametasona (0.5mg/kg) y tribiotic. Adoptada de rescatistas, fue dx con micosis podal y está en tto con griseofulvina. La lesión de mp mejoró (de hecho no se ven dedos afectados) y hoy apareció con una herida en el lomo. Antes de eso le habían sentido un bultito. \N \N 625 735 \N 91 920 {"studies": [], "medications": [], "specialities": []} +593 2025-04-01 02:42:13.553544+00 2025-04-01 02:42:13.553557+00 f t Intolerancia alimentaria, EII.\nDd/. Tricobezoares por pelo largo. Ecografía abdominal si no hay mejoras. Alimento gastrointestinal y empezar a racionar y determinar raciones, para control de ingesta y de peso. Vómitos intermitentes cada vez con menor intervalo.\nMás de 1 semanal, alimento sin digerir en su mayoría con forma tubo (intestino/esofago) sin pérdida de apetito ni peso \N \N 624 734 \N 68 919 {"studies": [], "medications": [], "specialities": []} +594 2025-04-01 11:47:37.19421+00 2025-04-01 11:47:37.194219+00 f t Devolución de resultados online Vacunación para ViLeF 2 dosis separadas x 30 días (a partir de que se cumple 1 mes de la vacunación anterior) Devolución de resultados online Devolución de resultados online. Cardiológico ok desde lo estructural y la actividad eléctrica. Análisis de sangre linfopenia, plaquetas agregadas, glucemia un poco baja (la muestra fue insuficiente), hay unos pequeños desajustes sutiles en otros valores que no revisten importancia clínica. PCR negativo para virales. \N \N 541 637 \N 91 915 {"studies": [], "medications": [], "specialities": []} +595 2025-04-01 20:18:09.670114+00 2025-04-01 20:18:09.670123+00 f t Sarna \nAlergia Cambiar de alimento a opciones superpremium Tribiotic + Dexametasona iny\nObservación x 48 hs Si remiten los signos de prurito Paciente felino macho castrado para revisaron general/chequeo anual\nClinicamente saludable, revisacion s/p y parámetros dentro de sus valores normales\nAlimentación: catchow y pollo pechuga\nLesiones alopécicas en region de puente nasal y pabellones auriculares, tambien en espacio interdigital de MA\nAdemas, comentan actitudes de PICA y vomitos esporádicos luego del consumo de pasto \nNo toma medicación, sin enfermedades diagnosticadas\nVacunación y ATP externo/interno vencido \N \N 610 713 \N 94 892 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +598 2025-04-01 21:31:47.780832+00 2025-04-01 21:31:47.780841+00 f t Gastroenteritis? Se indica continuar con sulfatrimetropin vía oral por 7 días. Se obliga ondansetron, dipirona, sulfatrimetropin, ranitidina. La propietaria la Nota un poco decaída, y que pasó por un episodio de vómitos y diaria con moco. \nNormotermica y normohidrarada, presenta leve dolor abdominal. \N \N 589 690 \N 1 861 {"studies": [], "medications": [], "specialities": []} +599 2025-04-01 21:35:55.540642+00 2025-04-01 21:35:55.540652+00 f t Se piensa que hay falta de tono del esfínter uretral externo. Se comenta que esta medicación es a dosis respuesta. Se indica hacer tratamiento con Estriol. Ego: s/p se vacían las glándulas, la propietaria comenta que se orina dormida. \N \N 123 128 \N 1 515 {"studies": [], "medications": [], "specialities": []} +1088 2025-07-02 19:49:48.673418+00 2025-07-02 19:49:48.673428+00 f t - - - - \N \N 536 632 \N 84 1373 {"studies": [], "medications": [], "specialities": []} +600 2025-04-01 21:37:47.977461+00 2025-04-01 21:37:47.977472+00 f t Se indica aumentar las dosis de las drogas. Si se ven sintomatologías de celo, como lo que sería aumento del tamaño de la vulva suspender tratamiento. Subir la dosis de estriol. Ego: s/p \nContinua con las pérdidas de orina mientras duerme. \N \N 123 128 \N 1 857 {"studies": [], "medications": [], "specialities": []} +603 2025-04-01 23:00:10.486497+00 2025-04-01 23:00:10.486509+00 f t DAPP - Alergia alimentaria - Dermatitis atópica - Alopecia psicógena felina Control en 7-10 días. Colocación de pipeta + Tto PO de prednisol gotas a dosis decreciente durante 8 días + desinfección y desinfestación del ambiente con ecthol. Telemedicina. \nLa tutora refiere que "NUT" presenta prurito intenso en la región de la cabeza y cuello. Presenta una lesión alopécica en el cuello y algunas lesiones por rascado. \N \N 619 724 \N 89 924 {"studies": [], "medications": [], "specialities": []} +604 2025-04-01 23:14:46.540275+00 2025-04-01 23:14:46.540284+00 f t Intolerancia alimentaria.\nDd./ Trastorno endocrino de base.\nCardiopatía. ECG, ecocardiograma.\nAnálisis de sangre completo Balanceado gastrointestinal/ Diarreas crónicas intermitentes, detonantes emocionales y ejercicio.\nIntolerancia al ejercicio.\nMucosas rosa. Auscultó soplo y bardo arritmia. Con pulso sincrónico.\nCaracter pasivo y poca actividad y prefiere el reposo.\nAntecedente de sarna con sensibilidad dérmica.\nHiperplasia gingival y cambios en dientes por situación de calle previa. \N \N 613 716 \N 68 896 {"studies": ["7", "3"], "medications": [], "specialities": []} +605 2025-04-03 01:31:00.485057+00 2025-04-03 01:31:00.48507+00 f t - Se recomienda realizar un control cardiológico y perfil general completo con orina por edad. - EOG SP \N \N 118 123 \N 89 894 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1170", "next_application_months": 12}], "specialities": []} +606 2025-04-03 20:47:34.154035+00 2025-04-03 20:47:34.154045+00 f t Fx ungueal de dedo 4 de MAD. Dejo reporte por escrito para control con su veterinario de ser necesario. Limpieza con clorehexidina, aplico meloxicam, tramadol y tribiotic. Se indica SUSPENDER la betametasona. Corte de uñas (de los 4 M). Mdc: renguea de MAD.\nNo hay antecedente de trauma. Tomó dos dosis de dexametasona oral indicada a distancia por su veterinario sin evolución favorable.\nSe revisa todo el miembro, locus dolenti en uña de dedo 4 de MAD. \N \N 636 746 \N 91 936 {"studies": [], "medications": [], "specialities": []} +607 2025-04-03 23:34:57.303092+00 2025-04-03 23:34:57.3031+00 f t Chequeo para vacunación Chequeo anual - sangre Se sugiere esquema de desparasitacion Examen clínico sin particularidades \N \N 629 739 \N 94 928 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +608 2025-04-04 14:15:16.54663+00 2025-04-04 14:15:16.546638+00 f t - balanceado para gatos de mas de 7 años, ejemplo proplan , royal canin administro moxidex plus via oral a ambos felinos e indico repetir en 15 dias revision clinica para vacunacion anual.\nhembra felina 8 años castrada comun europeo atigrada\nmacho felino 8 años castrado comun europeo negro \N \N 617 721 \N 88 903 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}, {"id_medicina": "187", "next_application_months": 0}], "specialities": []} +609 2025-04-04 14:17:58.651578+00 2025-04-04 14:17:58.651589+00 f t - balanceado formulado para su edad, + de 7 años ejemplo proplan royal administro moxidex plus via oral e indico repetir misma dosis en 15 dias revision clinica para vacunacion anual en 2 felinos castrados, una hembra y un macho ambos de 8 años \N \N 617 721 \N 88 904 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +610 2025-04-04 14:35:51.725934+00 2025-04-04 14:35:51.725947+00 f t neo cervical ? neo central/ acv? explico como realizar el manejo de un animal postrado, al abrir el plano de sustentacion de los miembros anteriores y ayudar a la perra a mantener la cabeza erguida, ofrezco agua fresca y toma desesperada. explico que tiene que tener agua a disposicion, ya que estuvo 5 dias con prednisolona y eso genera polidipsia poliuria y es necesaria la hidratacion de la paciente.\nindico rotaciones diarias al menos 3 veces al dia ( cambiar el decubito) , mantenerla higienizada y realizar las limpiezas con iodo en las zonas de dermatitis .\nindico alimentacion palatable y fibra en la dieta para favorecer el transito gastrointestinal y lograr que defeque \nrealizo orden para perfil hepatico + rx cuello y torax ll y p + rx columna lumbosacra + sacro iliaco\nindico retirar ambas medicaciones indicadas por el otro colega. la prendnisolona ( mañana 1/4 de comprimdio y pasado 1/4 de comprimido y no administrar mas prednisolona ) \nexplico que el cuadro es complicado aplico ringer lactato 300 ml sc + ranitidina + tramdol + tribiotic.\ndejo jeringas con misma medicacion para repetir cada 48 hs por 2 aplicaciones mas consulta porque hace 6 dias comenzo con debilidad de las 4 patas y hace 3 dias que no puede caminar.\nla vio un veterinario , le indico prednisolona 0.5 mg cada 12 hs + betahistina. el diagnostico del colega fue sindrome vestibular.\na la revision el animal se encuentra en decubito lateral derecho sin posibilidad de incorporarse, rotarse o mantenerse en estacion.\nmantiene el apetito ( esta comiendo pollo unicamente)\nno vomitos. no defeca hace 48 hs \naus s/p\ndeshidratacion 9%\nestado deprimido pero conectada con el medio\nrealizo rotacion del animal para cambiarlo del decubito derecho y se observa una dermatitis generalizada en todo el lado derecho producto del contacto constante de la piel con la orina . realizo tricotomia de dicha zona y comenzamos limpiezas con iodo al 50%. \ntambien se realiza limpieza de ambos ojos, ya que era imposible por la cantidad de secrecion purulenta que habia alrededor de los mismos, poder visualizar los globos oculares. una vez realizada la limpieza, no se observa nistagmo en ningun ojo. si cataratas bilaterales.\npresenta sensiblidad en ambos miembros anteriores ++++\npresenta sensiblidad en ambos miembros posteriores ++ \N \N 618 723 \N 88 905 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +1609 2025-09-01 05:24:29.311926+00 2025-09-01 05:24:29.311934+00 f t - - - Se mide la presión de forma no invasiva, del MAD. \N \N 7152 5859 \N 1 2215 \N +1621 2025-09-01 12:02:47.758834+00 2025-09-01 12:02:47.758843+00 f t - - Se realiza la vacunación con triple felina y antirabica. Eog: s/p \N \N 6191 5055 \N 1 2035 \N +1632 2025-09-01 23:31:14.371102+00 2025-09-01 23:31:14.371112+00 f t Vacunación. Se recomienda realizar estudios de rutina por edad el año que viene. - Vacunación anual. \N \N 7111 5818 \N 89 2207 \N +1641 2025-09-04 00:13:10.969571+00 2025-09-04 00:13:10.969583+00 f t Paciente atopico con dermatitis secundaria (bacteriana) Limpieza 2 veces por semana con pervinox incoloro de lesiones de piel. Dosis decreciente de prednisolona como antiinflamatorio, cefalexina durante 14 días y Nexgard mensual por oportunistas y para preservar de ectoparasitos. Cuadro crónico de urticaria, lamido compulsivo de miembros, irritación y papulas en el pliegue de labios, vagina e interdigital. Come balanceado de cerdo, se baña con shampoo medicado y hay una lesión suelta en flanco izquierdo sin cambios de larga data. \N \N 7813 6431 \N 68 2352 \N +1648 2025-09-04 12:10:18.645628+00 2025-09-04 12:10:18.645638+00 f t Penfigo foliaceo/Sindrome de piel atopica felina Citologia Nada, hasta tomar las muestras para que no haya interferencia. Consulta dermatologica: tuvo buena respuesta con medicacion pero recayo, y no tiene mejora clinica al 100%. En la consulta se presentan las hijas de la tutura que no estaban en la anterior, y ellas relatan que las lesiones costrosas aparecen primero y luego el prurito es secundario. Explico entonces la necesidad de tomar muestras por citologia en principio para descartar Penfigo foliaceo. Tambien dejo orden para analisis de sangre con test de virales. \N \N 785 902 \N 75 1978 \N +1656 2025-09-07 12:22:02.36179+00 2025-09-07 12:22:02.361802+00 f t Certificados para viaje al exterior . . . \N \N 5876 4804 \N 92 2187 \N +1689 2025-09-10 13:36:33.204709+00 2025-09-10 13:36:33.204723+00 f t . . . . \N \N 6869 5610 \N 100 2380 \N +611 2025-04-04 14:40:45.517359+00 2025-04-04 14:40:45.517367+00 f t No hay solo vacunas Próxima vacuna No Bueno \N \N 637 747 \N 2 937 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +612 2025-04-04 14:42:10.090564+00 2025-04-04 14:42:10.090572+00 f t Nada Vacunar próxima año Nada Todo bien \N \N 637 749 \N 2 939 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +613 2025-04-04 14:43:30.219931+00 2025-04-04 14:43:30.219939+00 f t Nada Ninguno vacunar en un año Nada Nada \N \N 637 748 \N 2 938 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +614 2025-04-04 14:52:49.344941+00 2025-04-04 14:52:49.344953+00 f t Impactacion glándulas anales o cálculos renales Si sigue arrastrando se recomendó ecografía Se dió antibióticos, y antiflamatorios también , y se limpio las glándulas perianales Arrastra la cola \N \N 634 744 \N 2 934 {"studies": [], "medications": [{"id_medicina": "503", "next_application_months": 0}, {"id_medicina": "533", "next_application_months": 0}], "specialities": []} +615 2025-04-06 15:43:56.461526+00 2025-04-06 15:43:56.461538+00 f t . . . Vacunacion de sextuple, antirrabica y tos de las perreras. Eog spp. Odontolitiasis severa, se indica limpieza dental. Doy ordenes para prequirurgicos (cardiologico y pergil preqx hemostatico) \N \N 564 729 \N 80 910 {"studies": [], "medications": [], "specialities": []} +1610 2025-09-01 05:28:53.488257+00 2025-09-01 05:28:53.488267+00 f t - - Se aplic maropitant y ranitidina, entregó la orden para la sangre y la ecografía abdominal. Se la nota un poco decaída, normotermica. A la palpación abdominal se evidencia que uno de los riñones está más grande de lo normal. Que habría que evaluar hacer un chequeo de sangre y una ecografía abdominal. \N \N 6925 5666 \N 1 2167 \N +1622 2025-09-01 12:08:14.007524+00 2025-09-01 12:08:14.007533+00 f t - - Se indica suplementar la comida de la perra y sumar zanahoria hervida a la dieta. Al evaluar a la perrita no se nota algo en particular que haga sospechar de una enfermedad. Lo que sí es que tiene un desgaste enorme energético/metabólico por tener a 12 cachorros alimentándolos. \N \N 4549 3787 \N 1 1974 \N +1633 2025-09-02 12:52:22.487775+00 2025-09-02 12:52:22.487785+00 f t Neo enorme sin posibilidad quirurgica Recomiendo seguir las indicaciones del oncologo, hasta que ya ni tenga buena calidad de vida y realizar una nueva evaluación de su estado general Indicó tramadol y meloxicam\nDebo aclarar que los estudios de sangre dieron valores normales, tanto el hemograma como la bioquímica sanguinea Paciente con evidente neo formación en parrilla costal izquierda de aproximadamente 30 cm de diámetro peso aproximado 2 kg, El turitor comenta que quiera realizar la eutanasia, El tutor realizó una consulta con un oncólogo el cual indicó tratamiento paliativo, Pero no lo comenzó aún. La parra tiene buen ánimo come hace PIS hace caca y deambula \N \N 7518 6182 \N 21 2288 \N +1642 2025-09-04 00:15:37.273353+00 2025-09-04 00:15:37.273365+00 f t Gastritis por ingesta de plantas. Ecografía si los síntomas persisten. Ayuno de líquidos y dieta húmeda en pequeñas cantidades 48hs.\nPenicilina estrepto. Vómitos de 48hs de evolución. Buen estado general, normotermia. Estomago distendido. Conserva el apetito. \N \N 7667 6314 \N 68 2312 \N +1649 2025-09-04 12:13:56.953293+00 2025-09-04 12:13:56.953305+00 f t DAC + foliculitis bacteriana Control evolutivo Prednisolona 20 mg 1/2 por dia por 10 dias luego Apoquel 16 mg 1/2 cada 12 hs por 15 dias luego cada 245 hs por 15 dias. Baños con shampoo clorhexidina cada 7 dias. Isoxazolina mensual. Consulta dermatologica: paciente que convive con dos gatos, en casa con jardin. Come RC MB adulto y casero cada tanto. Pipeta cada tanto. Siempre recibio terapia con atriben/prednisolona. Ahora esta tomando prednisolona. \N \N 428 508 \N 75 606 \N +1657 2025-09-07 12:22:54.466651+00 2025-09-07 12:22:54.466663+00 f t . . . EOG normal \N \N 1976 4975 \N 92 2021 \N +1663 2025-09-08 14:37:30.194412+00 2025-09-08 14:37:30.194422+00 f t Neo abdominal? Metástasis? Chequeo general completo, ecografia abdominal\nPronóstico reservado Indicó internacion, ya que sugiero internacionales domiciliaria pero prefieren en un hospital Paciente en tratamiento con fenobarbital y Bromo de Potasio hace aproximadamente 2 años, El tutor relata que come bien le dan royal canning hepaticy hace más de 24 horas que se encuentran en decubito lateral. Presentó vómitos alimenticios una convulsión hace una semana. Presenta un soplo sistólico de 4/6 respiratorio ok presenta masa en epigasio e hipogastro Izquierdo posiblemente del bazo. T 37.3 C se palpa hepato esplenomegalia \N \N 8102 6666 \N 21 2403 \N +1668 2025-09-08 23:13:03.834595+00 2025-09-08 23:13:03.834607+00 f t Infección bacteriana secundaria a infección viral. Probable distemper. Control en 24hs Doxiciclina 200 mg + meloxicam + vapor + recovery Teleconsulta. Secreción mucopurulenta nasal y conjuntival. Decaimiento. Vacunas vencidas. \N \N 8154 6705 \N 92 2407 \N +1673 2025-09-09 15:59:32.087914+00 2025-09-09 15:59:32.087922+00 f t Disentería. Seguir con veterinaria de cabecera según resultado de ecografía. Control en 2 días. Diafin 2 ml SC. Consulta x diarrea mucosa sanguinolenta atendida por otra veterinaria. Le aplicaron un antibiótico que dura 2 semanas. EOG normal. Apetito, sed y micción normales. Auscultación cardíaca normal. Palpación y auscultación abdominal sin particularidades. La dueña sospecha que pueden ser parásitos porque le pareció ver fideos en la materia fecal. \N \N 7672 6318 \N 70 2315 \N +1684 2025-09-09 23:02:44.985867+00 2025-09-09 23:02:44.985881+00 f t Neo prostatitis? Adennocarcinoma? Sugiero ecografia abdominal de control\nY de ser posible cardiologico, chequeo pre quirúrgico y placa de tórax para orquidectpmia Tramadol 50 mg cadA 12hs x 4 dias\nRealizo aplicacion de atriben Macho entero con antecedente de prostatomegalia, de evolución 2 años sin control, se orina encima, sin dificultad para defecar. Neo perianal y en mpd, \nEl tutor comenta q no sabe si lo golpearon o atropellaron y le cuesta incorporarse. Leve atrofia de mp. \N \N 8309 6842 \N 21 2438 \N +1690 2025-09-10 13:42:40.786549+00 2025-09-10 13:42:40.786561+00 f t . . . . \N \N 7443 6127 \N 100 2297 \N +1695 2025-09-10 20:07:00.509549+00 2025-09-10 20:07:00.509561+00 f t . . . Aplico atr y triple felina. Eog spp. \N \N 7528 6192 \N 80 2294 \N +1700 2025-09-10 20:19:29.077868+00 2025-09-10 20:19:29.077876+00 f t . . . Diarrea de 2 dias de evolucion. Marron y luego hemorragica (sangre fresca). Comio huesos de pollo de su casa. Alerta, con apetito, dolor abdominal moderado. Aplico dipirona sc. Indico ecografia abdominal, enrofloxacina 7 mg/kg por 5 dias cada 12 hs y dieta de cerdo con zanahoria por una semana (tiene atopia/alergia alimentaria) \N \N 7820 6434 \N 80 2359 \N +1704 2025-09-10 20:25:36.421838+00 2025-09-10 20:25:36.421848+00 f t Asma felino . . Hace 4 dias comenzo a toser mucho, antes tambien tosia pero con menos frecuencia (hace meses). No hay ninguna sustacia alergenica en el ambiente. Auscultacion de torax spp. Indico rx torax LL y DV. Aplico dexametasona. \N \N 8143 6696 \N 80 2408 \N +1709 2025-09-11 01:04:23.936257+00 2025-09-11 01:04:23.936268+00 f t . . . Disnea severa. Se deriva a guardia veterinaria para oxigenación y eventual internación \N \N 8120 6682 \N 92 2453 \N +616 2025-04-06 15:44:26.993544+00 2025-04-06 15:44:26.993555+00 f t . . . Vacunacion de sextuple, antirrabica y tos de las perreras. Eog spp. \N \N 564 726 \N 80 912 {"studies": [], "medications": [], "specialities": []} +617 2025-04-06 15:44:42.985941+00 2025-04-06 15:44:42.985957+00 f t . . . Vacunacion de sextuple, antirrabica y tos de las perreras. Eog spp. \N \N 564 728 \N 80 909 {"studies": [], "medications": [], "specialities": []} +618 2025-04-06 15:44:57.955294+00 2025-04-06 15:44:57.955304+00 f t . . . Vacunacion de sextuple, antirrabica y tos de las perreras. Eog spp. \N \N 564 727 \N 80 911 {"studies": [], "medications": [], "specialities": []} +619 2025-04-06 15:45:35.543661+00 2025-04-06 15:45:35.54367+00 f t . . . No se realizo la vacunacion ya que la tutora no se volvio a contactar \N \N 492 581 \N 80 719 {"studies": [], "medications": [], "specialities": []} +620 2025-04-06 15:46:04.508232+00 2025-04-06 15:46:04.508243+00 f t . . . No se realizo la vacunacion ya que la tutora no se volvio a contactar \N \N 432 559 \N 80 705 {"studies": [], "medications": [], "specialities": []} +621 2025-04-07 03:10:10.016721+00 2025-04-07 03:10:10.016729+00 f t . Dieta sólido hoy. Desde mañana agregar sólido en pequeñas cantidades. Cerenia +ranitidina + tribiotic. Indico ASC (PGC)+ placa de tórax. Control el lunes. Canino geronte de 16 años. Su dueña falleció hace dos meses.Presenta vómitos. Dificultad respiratoria. \N \N 643 758 \N 92 950 {"studies": ["8"], "medications": [], "specialities": []} +622 2025-04-07 14:28:17.694397+00 2025-04-07 14:28:17.694411+00 f t Síndrome Urológico Felino Cambiar alimento a Urinary (RC). Derivado a Desivet Felino, Común Europeo, macho, 2 años, atigrado. EOG: Sensorio deprimido. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito, micción y defecación disminuídas. Palpación abdominal: vejiga grande y dura. Se deriva a Desivet para que lo sondeen; es una urgencia. \N \N 642 757 \N 70 949 {"studies": [], "medications": [], "specialities": []} +623 2025-04-07 17:56:24.01664+00 2025-04-07 17:56:24.016649+00 f t Absceso por arrancamiento de garra Control en 3 semanas. Cefalexina 500 1/4 comprimidos c/12 hs por 3 semanas. Topicar con Pervinox 2 veces x día en la zona afectada. Felino, Común Europeo, macho, 1 año, blanco y negro. EOG correcto. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar sin particularidades. Presenta el 1er dedo MAI sin garra (se la arrancó aparentemente) y con absceso. \N \N 439 519 \N 70 944 {"studies": [], "medications": [], "specialities": []} +624 2025-04-07 21:09:43.015918+00 2025-04-07 21:09:43.015929+00 f t Absceso Se indica mantener la herida limpia y continué con tratamiento antibiótico vía oral Se realiza tricotomía y limpieza de la herida, se aplica amoxicilina, dexametasona a dosis baja, dipirona. Paciente con fístula por encima de la cola, presenta lesión al parecer por mordedura, se pelea en forma recurrente con el otro gato con el que convive \N \N 545 642 \N 1 788 {"studies": [], "medications": [], "specialities": []} +625 2025-04-07 21:13:39.035011+00 2025-04-07 21:13:39.035023+00 f t - - Se realiza vacunación con triple felina y rabia Ego: s/p \N \N 576 674 \N 1 832 {"studies": [], "medications": [], "specialities": []} +626 2025-04-07 21:17:52.049161+00 2025-04-07 21:17:52.049173+00 f t Compresión medular a nivel cervical? Se entrega orden de placa para cuello y se indica controlar según evolución Se realiza tratamiento antiinflamatrios con corticoides a dosis baja y se indica continuar con previcox durante 4 días más. La propietaria comenta que cuando lo levanta de cierta forma la mascota se queja. En la recusación clínica se evidencia dolor en el cuello en algunos movimientos \N \N 533 628 \N 1 828 {"studies": [], "medications": [], "specialities": []} +627 2025-04-07 21:26:59.655365+00 2025-04-07 21:26:59.655373+00 f t Reacción alérgica por ingestión de alguna planta? Que trate de que la mascota no se coma las plantas o las mastique. Se trata con antiinflamatorios a dosis baja, se comenta a la propietaria que si persiste puede hacer tratamiento con colirios pero al parecer pare una respuesta alérgica. La propietaria lo nota con los ojos hinchados y un poco el hocico tmb, comenta que a veces sale al balcón donde tiene acceso a planta y que puede haber ingerido alguna. \N \N 579 677 \N 1 837 {"studies": [], "medications": [], "specialities": []} +628 2025-04-07 21:30:12.206204+00 2025-04-07 21:30:12.206215+00 f t - - - Se revisa el animal y se expide certificado de salud. \N \N 502 593 \N 1 725 {"studies": [], "medications": [], "specialities": []} +629 2025-04-07 21:34:24.161247+00 2025-04-07 21:34:24.161256+00 f t - - - Se revisa al paciente y por el estado que presenta se da orden de derivación para Internacion. \N \N 565 662 \N 1 818 {"studies": [], "medications": [], "specialities": []} +630 2025-04-07 21:42:52.121425+00 2025-04-07 21:42:52.121434+00 f t Compresion medular por espondilosis? - Se indica comenzar con tratamiento antiinflamatorio y restringir el subir escaleras y sillones. Si persiste la molestia evaluar realización de placas control de columna y cadera La propietaria comenta que hace un tiempo la nota con dificultades para caminar, pero este último tiempo nota que se agravó más. Se revisa y presenta dolor en la columna toracolumbar y lumbosacra. \N \N 377 443 \N 1 812 {"studies": [], "medications": [], "specialities": []} +631 2025-04-07 21:46:34.850601+00 2025-04-07 21:46:34.850614+00 f t Úlcera superficial. - Se indica hacer tratamiento con colirios sin esteroides y cicatrizante ocular. Comenta el propietario que no notó que se golpeara con nada y que no sale al exterior pero de uno de los ojos presenta molestia y que “lagrimea”. Al revisar se evidencia que tiene fluoresceina (+) por una úlcera superficial en el ojo izquierdo. \N \N 567 664 \N 1 820 {"studies": [], "medications": [], "specialities": []} +632 2025-04-07 21:50:28.803946+00 2025-04-07 21:50:28.80396+00 f t Espondilosis/atrosis coxofemoral? Que intente que no suba más escaleras. Se indica hacer tratamiento antininflamatorio, ayudar a levantarla, fisioterapia. Evaluar la realización de placas control. La propietaria comenta que hace un tiempo le cuesta pararse y que cada vez camina menos. Se la revisa y se evidencia dolor lumbar. \N \N 574 672 \N 1 829 {"studies": [], "medications": [], "specialities": []} +633 2025-04-09 00:02:33.679093+00 2025-04-09 00:02:33.679101+00 f t Neoplasia en tórax? Cardiopatía? - Los propietarios deciden dormirlo. Llaman porque el paciente está con dificultades respiratoria, está decaído, ya lo internaron en una clínica, le drenaron varias veces el tórax y la última vez el líquido salió color sanguinolento. Lo notan que no come, no duerme y tampoco toma agua. Ya lo llevaron al cardiólogo y hace una semana que está con el tratamiento que le indicaron. Pero no responde de forma favorable. \N \N 628 738 \N 1 923 {"studies": [], "medications": [], "specialities": []} +650 2025-04-16 12:46:11.954689+00 2025-04-16 12:46:11.9547+00 f t No presenta síntomas Desparasitar cada 4 meses Sin tratamiento Estado general muy bueno \N \N 464 550 \N 78 838 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +634 2025-04-09 00:10:18.26764+00 2025-04-09 00:10:18.267648+00 f t Cistitis? Inflamación de los sacos anales? Se indica tomar muestra de orina para un AOC. Se indica hacer un tratamiento empírico con meloxicam y terazosina para evaluar respuesta La propietaria lo nota molesto, que vocaliza y va mucho a las piedras, todavía orina defeca, toma agua y comer. Se lame la zona del perineo. No cambiaron mucho en su ambiente. \N \N 167 176 \N 1 960 {"studies": [], "medications": [], "specialities": []} +635 2025-04-09 00:14:41.661863+00 2025-04-09 00:14:41.661876+00 f t Gastritis? Hacer en forma gradual la vuelta a la comida Se indica hacer ayuno sólidos y líquido y de a poco comenzar administrar agua y comida nuevamente . Si para mañana continúa con los síntomas programar una visita Comenta que el paciente estuvo con tratamiento con antiinflamatorio y que empezó a vomitar, estaba con meloxicam y omeprazol hasta ayer. \N \N 644 759 \N 1 952 {"studies": [], "medications": [], "specialities": []} +636 2025-04-09 00:22:30.572962+00 2025-04-09 00:22:30.572971+00 f t Gastroenteritis? Se indica continuar con giacoccide cuando empiece a tolerar la vida oral Se aplica ondanseteon, ranitidina, dipirona, sulfatrimetropin, diafin. Los propietarios notaron que se puede haber robado de la basura milanesa frita. Ahora está con vómitos y diarrea con estrías de sangre. \N \N 640 753 \N 1 943 {"studies": [], "medications": [], "specialities": []} +638 2025-04-09 00:35:34.294503+00 2025-04-09 00:35:34.294511+00 f t Gingivoestomatitis? Se indica continuar con medicación vía oral, pero se comenta que la resolución es quirúrgica. Se aplica amoxicilina y meloxicam Paciente presenta gingivitis de vieja data. Al parecer decisivo, y está con salivacion y gingivitis marcada. Come con dificultad. \N \N 611 714 \N 1 893 {"studies": [], "medications": [], "specialities": []} +639 2025-04-09 00:43:51.901245+00 2025-04-09 00:43:51.901253+00 f t Neoplasia. Gastritis? El cuadro es complejo por no tener cómo manipular al animal. Ni tampoco tener complementarios. Se va ir evaluando según evolución y respuesta. Cerenia, ranitidina, dipirona. Amoxicilina. Paciente que ya se había hablado una vez de hacer estudios ecograficos y no se habían podido realizar porque es muy indocil. Ahora comenzó con vómitos fecaloides. No se deja prácticamente manipular aún así se le aplica analgésicos y antimeticos con protectores gástricos. Se palpan tumores de mama y la propietaria no sabe si está castrada, porque ella la adoptó hacer unos 8 meses. \N \N 299 353 \N 1 901 {"studies": [], "medications": [], "specialities": []} +640 2025-04-09 16:38:51.038017+00 2025-04-09 16:38:51.038025+00 f t Vacunas anuales. Antirrábica+ lepto+ sextuple Castración Vacunación anual EOG normal \N \N 648 764 \N 92 958 {"studies": [], "medications": [{"id_medicina": "1148", "next_application_months": 12}, {"id_medicina": "1175", "next_application_months": 12}], "specialities": []} +641 2025-04-09 19:28:56.792527+00 2025-04-09 19:28:56.79254+00 f t Cistitis. No evidenció lesiones en pene. Restringir acceso a comida de gato, y puede requerir ecografía abdominal. Se toma muestra de orina para en función de la misma iniciar un tratamiento. Hematuria y sangrado peneano.\nClínicamente sin ningún cambio ni signo.\nSe palpa vejiga distendida con leve molestia a la palpación e inflamación.\nConvive con dos gatas y ocasionalmente roba su comida. \N \N 409 488 \N 68 962 {"studies": [], "medications": [], "specialities": []} +642 2025-04-10 00:32:58.750719+00 2025-04-10 00:32:58.750731+00 f t - Revacunar en 21 días y luego antirrábica. CORRECIÓN por no estar la opción: Cultivac FELINOS (NO antirrábica) EOG SP\nPresencia de heces de pulgas. \N \N 646 761 \N 89 955 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 3}, {"id_medicina": "491", "next_application_months": 0}, {"id_medicina": "201", "next_application_months": 0}], "specialities": []} +643 2025-04-10 00:41:26.19558+00 2025-04-10 00:41:26.19559+00 f t Delgadez (¿Por estrés?) Se recomienda generar momentos de juego con "Sara" para mantener su estado físico. También se recomendó sumar a su rutina juegos olfativos para estimular el bienestar mental. (Se explicaron 5 opciones de juegos) Perfil general completo con orina + control cardiológico. \nTelemedicina de control. EOG: Delgadez..\nLa tutora refiere una caída en el peso de "Sara" tras la muerte reciente de su otra gata. También había perdido pelo y el apetito inicialmente pero ya se normalizó.\nSu peso inicial era de 5,2kg pero ahora pesa 3,8kg.\nCome 3 sobrecitos de Royal Canin +12 todos los días mezclados con su alimento sólido triturado. Comenzará a comer Recovery en la semana.\nLa tutora comentó que viajará durante 10 días y quedará a cuidado de un familiar. \N \N 641 756 \N 89 948 {"studies": ["7", "3", "12"], "medications": [], "specialities": ["8", "74", "76"]} +644 2025-04-11 23:48:36.914528+00 2025-04-11 23:48:36.91454+00 f t Vacunación Vacunar en 6 meses con la triple felina Vacuna EOG. Normal \N \N 139 146 \N 70 942 {"studies": [], "medications": [{"id_medicina": "1155", "next_application_months": 12}], "specialities": []} +645 2025-04-11 23:50:46.418056+00 2025-04-11 23:50:46.418068+00 f t Diarrea crónica Coproparasitologico Dieta antidiarreica Diarrea \N \N 627 737 \N 70 922 {"studies": [], "medications": [{"id_medicina": "719", "next_application_months": 0}], "specialities": []} +646 2025-04-12 19:19:29.03787+00 2025-04-12 19:19:29.03788+00 f t Amilasemia elevada, globulinas elevadas. Resto S/P Continuar la dieta y repetir estudio de amilasa y globulinas en 25-30 días. Ante vómitos, dolor abdominal u diarrea, adelantar el control. Continuar con dieta hipograsa, carnes magras, zanahoria, arroz. Abundantes líquidos. Teleconsulta: Mejoró. No volvió a tener vomitos desde la consulta del domingo. Apetito normal. Defeca normal. \N \N 643 758 \N 92 976 {"studies": ["6"], "medications": [], "specialities": []} +647 2025-04-12 21:01:36.632092+00 2025-04-12 21:01:36.632101+00 f t Vacunación ATP Se indica desparasitar Cheq gral \N \N 629 739 \N 94 931 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +648 2025-04-12 21:04:38.878043+00 2025-04-12 21:04:38.878056+00 f t Vacunación Monitorear tamaño y/o modificaciones de su hernia umbilical Vacunación anual y desparasitacion externa con spray tópico de Fipronil x presencia de pulgas Chequeo gral \N \N 651 767 \N 94 963 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1171", "next_application_months": 12}, {"id_medicina": "350", "next_application_months": 1}], "specialities": []} +649 2025-04-14 13:03:00.516209+00 2025-04-14 13:03:00.516222+00 f t Vacunación - Vacunación Vacunación. Pide a domicilio xq es muy miedoso. Es extremadamente bueno, pudo completarse la revisación sin problemas.\nEOG s/p. Come old prince. \N \N 654 771 \N 91 967 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +651 2025-04-16 12:48:29.052209+00 2025-04-16 12:48:29.052217+00 f t No presenta sintomas Desparasitar cada 4 meses No se necesito tratamiento Estado general muy bueno \N \N 464 551 \N 78 836 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 11}], "specialities": []} +652 2025-04-16 14:54:28.871935+00 2025-04-16 14:54:28.871946+00 f t Vacunación anual Repetir antiparasitario interno en 5 meses. Bravecto en 3 meses. Vacunación anual EOG: normal \N \N 187 197 \N 92 998 {"studies": [], "medications": [{"id_medicina": "1148", "next_application_months": 12}, {"id_medicina": "1175", "next_application_months": 12}], "specialities": []} +653 2025-04-16 15:12:55.656698+00 2025-04-16 15:12:55.65671+00 f t Dermatitis de tipo alérgica.\nDiferencial a tener en cuenta: demodexia. De persistir pérdida exagerada de pelo y alopecía periocular, haríamos raspaje. Se indica dermil x 6 días y otovier classic x 7 días. Control según evolución. Se rasca, alopecía periocular bilateral, alopecia parcial en pecho y en algunas zonas puntuales del cuerpo. Pérdida de pelo incrementada. No sale a la calle, no aparenta tener pulgas, le duele dar comprimido antipulgas. Sacude la cabeza, presenta olor en oídos, secreción muy leve, conductos enrojecidos. \N \N 666 787 \N 91 991 {"studies": [], "medications": [], "specialities": []} +654 2025-04-17 03:32:39.974635+00 2025-04-17 03:32:39.974648+00 f t IRC compensada, cistitis, estres por pulgas, diabetes Se indica perfil general completo con orina, luego ecografia abdominal. Control con resultados. Aplique dipirona y cerenia Polidipsia, decaimiento leve, polaquiuria. Se palpa dolor en hipogastrio, al revisar esa zona ya no permite la revisacion. Muchas pulgas, hace meses las estan combatiendo pero no hicieron desparasitacion ambiental. \N \N 676 799 \N 80 1000 {"studies": ["1", "7"], "medications": [], "specialities": []} +655 2025-04-17 03:37:25.075732+00 2025-04-17 03:37:25.075745+00 f t Microsporum canis Control en 2 semanas. Ketoconazol spray 1 vez por dia en las lesiones\nTotal full CG una sola vez segun peso Gatos rescatados hace unas 2 semanas. Fueron desparasitados una vez con total full CG por un veterinario. No aparentan tener aun 2 meses, parecen mas chicos. Dos de ellos presentan lesiones alopesicas costrosas circulares, con pelos que se depilan facilmente. Uno de ellos presenta sx neurologica con temblores de la cabeza que aparecen segun su posicion, resto spp. \N \N 667 788 \N 80 996 {"studies": [], "medications": [], "specialities": []} +656 2025-04-17 03:40:03.704533+00 2025-04-17 03:40:03.704544+00 f t Lipomas Esperar el resultado Sin tratamiento Presenta dos deformaciones en mas: una en zona glutea en sc. Otra en lateral del torax en sc. Ambos moviles de superficie lisa. Se hace PAF, ambos con aspecto macroscopico de lipoma. Se dejan las muestras a la tutora para enviar a laboratorio. \nAplique sextuple y antirrabica \N \N 659 778 \N 80 977 {"studies": [], "medications": [], "specialities": []} +658 2025-04-17 03:47:41.734179+00 2025-04-17 03:47:41.734186+00 f t Atopia/alergia alimentaria/demodexia/arritmia Consulta cardiologica Prednisolona 10 mg a dosis decrecientes por 6 dias, cytopoint 10 mg, tobramax colirio cada 8 hs por una semana Prurito en todo el cuerpo, conjuntivitis alergica. Dermatitis alrededor de los ojos, ingles y axilas. Lesiones alopesicas multifocales en dorsal del cuerpo, los pelos no se depilan facilmente y tampoco se ven costras. Esta con un tratamiento de baños con shampoo con clorhexidina cada 10 dias y noto bastante mejoria. Se ausculta arritmia no fisiologica. \N \N 653 770 \N 80 966 {"studies": [], "medications": [], "specialities": []} +1611 2025-09-01 05:30:11.102121+00 2025-09-01 05:30:11.10213+00 f t - - - Se retiran los putos, herida OK \N \N 1798 1709 \N 1 2192 \N +1623 2025-09-01 12:10:38.528999+00 2025-09-01 12:10:38.529008+00 f t - - - Paciente tiene una condición corporal muy baja, no se deja revisar mucho porque reacciona ante cualquier maniobra, se indica a los propietarios desparasitar, y evaluar si aumenta de peso con una mejor dieta. \N \N 6176 5041 \N 1 2034 \N +1634 2025-09-02 13:02:22.934782+00 2025-09-02 13:02:22.934793+00 f t Gingivoestomatitis ulcetariva granulosa\nSobrepeso moderado Control en 1 semana\nDejo indicacion de chequeo pre quirúrgico, placa de tórax y control cardiologico para el destartraje Penicilina, dexametasona tramadol\nRealizo la aplicación, y dejo medicación para aplicar cada 48hs Eog normal paciente alerta, cardio y resp ok, Abdomen blando score corporal 4/, moderado sobrepeso\nEspero, abundante sarro Dental en molares y promotores, pérdida de piezas dentales, gingivitis marcada, posible complejo gingivoestomatiis ulcerativa. Presenta dolor al tocar las piezas molares \N \N 7666 6313 \N 21 2311 \N +1643 2025-09-04 05:50:25.096877+00 2025-09-04 05:50:25.096888+00 f t Tumor de glandulas hepatoides Cirugía Indicación quirúrgica, previos estudios precx Consulta dermatologica: paciente consulta por 2 neos ubicadas una en ventral del rabo, limite con mucosa anal blanquecina dura y otra levemente ulcerada en mucosa anal lado derecho inferior de unas semanas de evolución. Ambas tamaño aprox 3 cm diam. No está castrado. Ademas tiene una neo palpebral superior en ojo derecho de más tiempo de evolución, tamañao arveja. Explico que la resolucion es quirurgica con castración, previo estudios. Dejo orden para analisis de sangre completo + Aoc + coagulograma, electro y ecocardio, eco abd. Y derivación para cirugía con muestra para htp. \N \N 7748 6380 \N 75 2346 \N +1650 2025-09-04 18:28:12.388441+00 2025-09-04 18:28:12.388452+00 f t . - -. . \N \N 6392 5199 \N 100 2349 \N +1658 2025-09-07 12:24:52.92653+00 2025-09-07 12:24:52.926543+00 f t Enteritis . Diafin+dieta antidiarreica+giacoccide EOG NORMAL. DIARREA \N \N 7909 6512 \N 92 2375 \N +1664 2025-09-08 16:31:36.15866+00 2025-09-08 16:31:36.158671+00 f t Discoespondilitis/discoespondilosis/ hernia de disco a nivel lumbosacro. Realizar RX LL y VD de columna lumbosacra y reposo. Algen 1 ml SC, meloxivet 0,6 ML SC + kualcovit 2 ml SC. Consultá x dificultad motriz MPD de dos horas de evolución. EOG normal, sensorio normal. Apetito, sed, defecación y micción normales. Auscultación cardíaca normal. Palpación abdominal sin particularidades. Dificultad propioceptiva en MPD. \N \N 8161 6712 \N 70 2410 \N +1669 2025-09-08 23:15:18.540929+00 2025-09-08 23:15:18.540942+00 f t . . . Mejor. Repito dexametasona \N \N 8120 6682 \N 92 2409 \N +1674 2025-09-09 16:22:11.358862+00 2025-09-09 16:22:11.358871+00 f t . . . . \N \N 7672 6318 \N 90 2316 \N +1685 2025-09-09 23:07:47.506361+00 2025-09-09 23:07:47.50637+00 f t . . Cerenia+ recovery+ dieta astringente zapallo zanahoria y pechuga. EOG normal. Vomitos desde hoy a la mañana. Hiporexia. Hidratación normal. \N \N 8278 6815 \N 92 2430 \N +1691 2025-09-10 19:55:04.778369+00 2025-09-10 19:55:04.778385+00 f t Clínicamente compensada.\nCoproparasitologico negativo. Dieta renal, y control salvo síntoma en 1 año.\nAl próximo control sumarle dosaje de tiroides y medición de la presión arterial Ninguno por ahora, evolución favorable en cuanto a barro biliar Paciente gerente. Únicas alteraciones a tener en cuenta sin cambios clínicos. \nAlbumina límite inferior, globulinas altas. Hipercolesterolemia.\nPáncreas agrandado (secuela) \N \N 6869 5610 \N 68 2443 \N +1696 2025-09-10 20:07:56.072934+00 2025-09-10 20:07:56.072943+00 f t . . . Aplique atr y triple felina.\nAuscultacion pulmonar normal.\nSigue con paff un dia si un dia no. Control en 3 semanas. \N \N 4433 3688 \N 80 2176 \N +1705 2025-09-10 20:25:56.492829+00 2025-09-10 20:25:56.492838+00 f t . . . Aplico antirrabica y triple felina \N \N 1025 1115 \N 80 2328 \N +659 2025-04-17 03:48:37.056601+00 2025-04-17 03:48:37.05661+00 f t . . . No se realizo el domicilio. La tutora cancelo. \N \N 492 581 \N 80 720 {"studies": [], "medications": [], "specialities": []} +660 2025-04-17 14:41:06.149729+00 2025-04-17 14:41:06.149743+00 f t Celo Se recomienda la aplicación de feromonas en el ambiente y comenzar a sacar turno para los preqx. Se explica la importancia de la esterilización para que no entre más en celo y disminuyan los problemas de conducta (llanto) y para la prevención de otras enfermedades (neoplasias mamarias, por ejemplo).\nSe habló de alternativas holísticas (Flores de Bach) o interconsulta con un Etólogo Veterinario si la conducta persiste luego de la esterilización.\nLa tutora pregunta si puede se le pueden recetar tranquilizantes a lo que respondo que no. Que para la aplicación de tranquilizantes debe estar un veterinario presente y se deben realizar estudios cardiológicos, entre otros.\nSe indican estudios prequirúrgicos (sangre - orina - cardiológico) y consulta con el equipo de Cirugía para la esterilización. Telemedicina.\nLa tutora refiere que "Tura" vivió toda su vida en un departamento oscuro. Recientemente se ha mudado a un departamento más luminoso y "Tura"entró en celo y llora mucho. Quiere conocer alternativas para que no entre en celo y para evitar el llanto continuo. \N \N 668 791 \N 89 994 {"studies": ["3", "12", "9"], "medications": [], "specialities": ["8", "79", "74", "76"]} +661 2025-04-17 23:07:18.350681+00 2025-04-17 23:07:18.35069+00 f t - . Vacunación Séxtuple + Antirrábica y corte de garras. EOG SP \N \N 657 776 \N 89 974 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1170", "next_application_months": 12}], "specialities": []} +662 2025-04-17 23:10:15.113137+00 2025-04-17 23:10:15.113148+00 f t - Se recomienda refuerzo de vacuna Triple Felina por no haberse vacunado en los últimos 5 años. Vacunación anual EOG SP\nPresentaba heridas superficiales en la región del abdomen (posibles arañazos) \N \N 652 769 \N 89 964 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 3}], "specialities": []} +663 2025-04-17 23:11:06.576684+00 2025-04-17 23:11:06.576696+00 f t - Se recomienda refuerzo de vacuna Triple Felina por no haberse vacunado en los últimos 5 años. Vacunación anual EOG SP \N \N 652 769 \N 89 965 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 3}], "specialities": []} +664 2025-04-17 23:15:14.959762+00 2025-04-17 23:15:14.959772+00 f t Gastroenteritis - Ranitidina + Tramadol inyectable + Fluídoterapia (200ml Sc. Fis)\nDieta blanda x 7 días (Pollo a la plancha + puré de zanahoria) Paciente presenta vómitos y diarreas de 2 días de evolución. Al momento de la consulta ya no vomitaba más y había disminuído la frecuencia de la diarrea. No se le ha ofrecido alimento desde que comenzó con el cuadro.\nEOG SP, Sobrepeso moderado.\nEOP Dolor leve a la palpación abdominal, levemente deshidratado. \N \N 661 781 \N 89 981 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "1067", "next_application_months": 0}], "specialities": []} +665 2025-04-18 22:42:56.053266+00 2025-04-18 22:42:56.053274+00 f t Gastroenteritis. Control en 24 hrs. RP/ayuno sólido por 12 hs y dieta antidiarreica (arroz blanco pasado, zanahoria hervida, pechuga de pollo). Ayer vómito y hoy comenzó con diarrea con sangre. \N \N 691 808 \N 92 1005 {"studies": [], "medications": [], "specialities": []} +666 2025-04-19 18:46:06.643757+00 2025-04-19 18:46:06.643769+00 f t Gastroenteritis aguda. Una vez superado el cuadro, sugiero completar el plan de vacunación. Hoy atención virtual. Derivo a Desivet p revisión y tratamiento. Muy probablemente requiera hidratación parenteral urgente. Cachorro de 4 meses. 600 gramos. No come. Se encuentra decaído, vómitos y diarrea acuosa. \N \N 698 815 \N 92 1014 {"studies": [], "medications": [], "specialities": []} +667 2025-04-20 21:48:07.244595+00 2025-04-20 21:48:07.244603+00 f t Absceso en central del cuello. Repetir dos veces más c/ 48 hs. Triobiotic 0.5 ML c/48 hs. Paciente con absceso en ventral del cuello aparentemente por cortadura con una planta. EOG normal, piel, mucosas, ganglios normales. Palpación abdominal s/particularidades. Auscultación cardíaca y pulmonar normal. \N \N 693 810 \N 70 1009 {"studies": [], "medications": [], "specialities": []} +668 2025-04-20 21:51:34.149581+00 2025-04-20 21:51:34.14959+00 f t Absceso central cuello. Repetir en 72 hs Triobiotic 0,5 ML SC. Mucho mejor, excelente evolución! \N \N 693 810 \N 70 1015 {"studies": [], "medications": [], "specialities": []} +670 2025-04-23 17:42:00.409813+00 2025-04-23 17:42:00.409825+00 f t Probable intoxicación con plantas o Insuficiencia renal crónica. Se deriva para internación si los signos no remiten. Aplicó cerenia 0,3 ML+ ranivet 0,2 ml SC. Se deriva para internación si los signos no remiten. Felino, Común Europeo, hembra, 6 años, negro, castrada. EOG: Sensorio deprimido. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito disminuído, micción disminuída, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar sin particularidades. Vómitos blanquecinos y emaciación. Aplicó cerenia 0,3 ML+ ranivet 0,2 ml SC. Se deriva para internación si los signos no remiten. \N \N 702 819 \N 70 1018 {"studies": ["7"], "medications": [{"id_medicina": "641", "next_application_months": 0}], "specialities": []} +669 2025-04-22 00:45:41.20707+00 2025-04-22 00:45:41.207084+00 f t Refuerzo quíntuple Plan de desparasitación con total full, repetir en 3 semanas junto al siguiente refuerzo vacunal en tres semanas. Quíntuple EOG: normal \N \N 709 826 \N 92 1025 {"studies": [], "medications": [{"id_medicina": "1175", "next_application_months": 3}], "specialities": []} +671 2025-04-23 17:50:34.352847+00 2025-04-23 17:50:34.352859+00 f t Se vacuna con triple felina + antirrábica. Repetir en 1 año. Se vacuna con triple felina + antirrábica. Felino, Común Europeo, hembra, 1 año, blanco y negro. EOG correcto. Sensorio normal. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar sin particularidades. \N \N 662 782 \N 70 983 {"studies": [], "medications": [{"id_medicina": "1155", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +688 2025-04-28 03:06:45.809528+00 2025-04-28 03:06:45.809952+00 f t Dolor en articulacion coxo femoral izquierda RX cadera D-V y reposo.\nControl del peso. Gabapentina 25,MG cada 12 hs, durante 48hs, luego cada 24 hrs, durante 4 días. Se recomienda el uso de gabapentina para su uso en medicina veterinaria. Claudicación de primer grado MPI. Sobrepeso. Resto S/P \N \N 747 872 \N 92 1071 {"studies": ["2"], "medications": [], "specialities": ["59"]} +1035 2025-06-29 18:21:46.050284+00 2025-06-29 18:21:46.050293+00 f t - - - - \N 3494 2987 114 90 1593 {"studies": [], "medications": [], "specialities": []} +672 2025-04-23 17:57:01.501661+00 2025-04-23 17:57:01.501675+00 f t Se vacuna con triple felina + antirrábica. Repetir en 1 año. Se vacuna con triple felina + antirrábica. Felino, Común Europeo, macho, 3 años, gris y marrón. EOG correcto. Sensorio normal. Ganglios, piel, ojos y cavidad bucal sin particularidades. Apetito, micción, defecación normal. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar sin particularidades. \N \N 662 783 \N 70 984 {"studies": [], "medications": [{"id_medicina": "1155", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +673 2025-04-23 23:31:16.41547+00 2025-04-23 23:31:16.415479+00 f t Emergencia respiratoria Se recomienda acudir inmediatamente a la guardia la próxima vez que se encuentre agitada. Le aplico dexametasona SC 1mg/kg y un puf de salbutamol y me comunico con la guardia veterinaria más cercana. La paciente es derivada de inmediato. Se explica que es una emergencia y corre riesgo de vida. Tutor relata al momento de sacar el turno que "Lupe" se encontraba agitada pero luego de la aplicación de un PUF de Salbutamol y prednisolona en gotas mejoró hasta la normalidad.\nConcurro al domicilio y me encuentro que "Lupe" estaba respirando con la boca abierta y con el sensorio deprimido. \N \N 692 809 \N 89 1006 {"studies": [], "medications": [{"id_medicina": "704", "next_application_months": 0}], "specialities": []} +674 2025-04-23 23:47:17.583691+00 2025-04-23 23:47:17.583704+00 f t Contractura muscular + otitis bilateral Se recomienda reposo y la colocación de una rampa para subir y bajar de la cama/sillón. Indico fisioterapia. A su vez receto control cardiológico y PGC c/orina para control por edad. Aplico dexametasona 0,5 mg/kg y tramadol 2 mg/kg. Le proporciono a los tutores Meloxicam en comprimidos para un tratamiento de 6 días (los primeros dos a 0,2 mg/kg y el resto a 0,1 mg/kg).\nReceto Otovier NF para el tratamiento por otitis, dando las indicaciones de uso correspondientes al caso. Control en 10 días. El tutor relata que "Moro" comenzó a gritar y quejarse repentinamente luego de un paseo. Al llegar al domicilio me encuentro con el paciente muy inquieto. EOG S/P, EOP: Contractura en músculo esternocefálico derecho (muy dolorido). A su vez presentaba otitis bilateral. \N \N 696 813 \N 89 1012 {"studies": ["7", "3", "12"], "medications": [{"id_medicina": "704", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": ["8", "74", "78", "76"]} +675 2025-04-23 23:56:15.075975+00 2025-04-23 23:56:15.076003+00 f t Cuerpo extraño Se indicó (cuando pudiera sacarlo) solicitar ecografía abdominal o acudir a un consultorio para el mismo fin.\nSe explicó la importancia del diagnóstico de "Cuerpo extraño" ya que corre riesgo de vida si no es intervenido quirúrgicamente. Se recetó ecografía abdominal. La tutora relata que "Toretto" presenta vómitos incoercibles de 36 hs de evolución y tiene historial de comer objetos (plástico - sobres de ketchup - pedazos de esponja).\nAl momento de llegar al domicilio "Toretto" se encontraba escondido debajo de la cama, luego de unos minutos logramos sacarlo pero se escondió abajo de la cocina y presentó signos de mucha agresividad, motivo por el cual no pudimos sacarlo y por consiguiente no se pudo revisar y atender. \N \N 701 818 \N 89 1019 {"studies": ["1"], "medications": [], "specialities": ["41"]} +676 2025-04-23 23:59:19.731939+00 2025-04-23 23:59:19.731951+00 f t Emergencia Derivado a Well Vet Derivado a Well Vet Solicitan consulta a domicilio por vómitos de 1 día de evolución, que habían comenzado la noche anterior. Un colega asistió a su domicilio y lo medicó con dexametasona, ranitidina, ondansetrón y reliverán (relata la tutora). Notó mejoría pero volvió a vomitar (2 veces en un lapso de 8 horas) por lo que pide la consulta con Amar Mascotas.\nAl arribar al domicilio me encuentro con el paciente (score corporal 0,5/5*) acostado en el suelo, con el sensorio deprimido. Los tutores relatan que en la última hora había desmejorado, que se "tiró al suelo" y no pudieron levantarlo más. No es posible evaluar mucosa gingival o TLLC debido a que tenía colocado el bozal. Auscultación cardíaca dificultosa, auscultación pulmonar anormal. Moderadamente deshidratado.\nProcedo a explicarles a los tutores que se encontraban frente a una emergencia y debían acudir a una guardia veterinaria de inmediato.\nLe administro dexametasona 0,5mg/kg, ranitidina y tramadol.\nLos tutores relatan que no tenían auto por lo que debían esperar a un taxi. Durante la espera administro 250cc de sc. fisiológica SC (la intención era administrar 500cc pero llegó el taxi)\nMe comunico con Well Vet y es derivado hacia la guardia.\n\n*"Ivar" había padecido torsión gástrica 7 meses atrás y luego de la cirugía presentó síndrome de mala absorción perdiendo mucho peso y no pudiendo recuperarlo. \N \N 704 822 \N 89 1022 {"studies": [], "medications": [{"id_medicina": "704", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "1067", "next_application_months": 0}], "specialities": []} +677 2025-04-24 00:05:10.370135+00 2025-04-24 00:05:10.370144+00 f t Gingivitis Cepillado de dientes, si el paciente lo permite. Prednisol gotas x 8 días (a dosis decreciente). Luego control. Paciente "Odin" EOG SP, EOP: Gingivitis leve. No presenta dolor a la palpación-presión, ni sialorrea. Puede comer sin dificultad. \N \N 703 820 \N 89 1021 {"studies": [], "medications": [], "specialities": []} +678 2025-04-24 00:06:54.656182+00 2025-04-24 00:06:54.656196+00 f t Vacunación anual - - EOG S/P. \N \N 703 821 \N 89 1020 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +679 2025-04-24 00:07:42.793117+00 2025-04-24 00:07:42.793129+00 f t Vacunación anual - - EOG S/P\nPresentaba lesiones por rascado en la cabeza. \N \N 712 831 \N 89 1029 {"studies": [], "medications": [{"id_medicina": "1151", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +680 2025-04-24 00:18:14.736282+00 2025-04-24 00:18:14.73629+00 f t Vacunación anual "LEIA" es muy asustadiza y no le gusta ser maniobrada. Se recomienda tratamiento con pregabalina durante 3 días previo a su próxima consulta. - "LEIA"\nEOG S/P.\nPresentaba lesión levemente alopecica por lamido. \N \N 712 831 \N 89 1030 {"studies": [], "medications": [{"id_medicina": "1151", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +696 2025-04-29 15:30:17.328524+00 2025-04-29 15:30:17.328533+00 f t -. sugiero realizar interconsulta con etologo porque se pone muy ansioso con otros perros cuando sale a la calle - vuelvo al domicilio para realizar refuerzo sextuple\nrevision clinica todo ok \N \N 548 645 \N 88 946 {"studies": [], "medications": [{"id_medicina": "1168", "next_application_months": 12}], "specialities": []} +733 2025-05-11 15:31:43.350612+00 2025-05-11 15:31:43.35062+00 f t Refuerzo Vacuna triple felina. Revacunar en 1 año. - EOG S/P \N \N 652 768 \N 89 986 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +681 2025-04-24 17:34:31.775489+00 2025-04-24 17:34:31.775501+00 f t cristales en orina ? cistitis ? no administrar alimentos balanceados de supermercados indico cambio de alimento por royal canin urinary so durante un mes y luego royal canin urinary care por 1 mes mas . explico las complicaciones que puede tener el gato por el alimento de mala calidad que está ingiriendo.\ndejo medicacion para que apliquen el 24 y 25-04 ( ranitidina + dexa a 0.5 mg/kg) felino macho comun europeo castrado 2 años \ndesparasitaciones vencidas\ncome raza\nconsulta por hematuria. evolucion 24-48hs\nexcelente animo, come normalmente, deposiciones normales\naus s/p \npalpacion abdminal . abdomen blando, vejiga con escaso contenido.\nnormotermico normohidratado \N \N 716 835 \N 88 1041 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "702", "next_application_months": 0}], "specialities": []} +682 2025-04-24 17:43:22.546114+00 2025-04-24 17:43:22.546123+00 f t parasitosis intestinal? controlar que no aparezcan vomitos, diarreas hemorragicas, anorexia. indico dieta ( pollo + calabaza + arroz) y suspender balanceado hasta el proximo control hembra canina mestiza sharpei entera \nconsulta por decaimiento, anorexia . evolucion 24 hs \nla tutora me comenta que ayer hicieron un asado y tiene miedo que haya comido huesos\nrevision clinica\naus s/p\npalpacion abdominal abdomen blando, inflamacion de asas intestinales. leve algia en hipogastrio.\nnormotermica 38.1 \nnormohidratada.\nEn la consulta, me muestran una foto de las deposiciones que habia tenido ese dia la perra, las deposiciones son normales en cuanto a forma y consistencia , pero con abundante moco y trazas de sangre. me comenta que tienen vencidas las desparasitacionoes internas.\nofrecemos alimento palatable y come con muchisimas ganas \N \N 710 827 \N 88 1028 {"studies": [], "medications": [{"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "551", "next_application_months": 0}], "specialities": []} +683 2025-04-24 17:47:58.839915+00 2025-04-24 17:47:58.839924+00 f t - mantener la dieta por 2 -3 dias mas y luego cambio progresivo al balanceado\nsugiero castracion ya que no la quiere como reproductora y ademas porque en el primer celo que tuvo hizo una pseudopreñez repito rani novotioc y aplonal.\nindico desparasitacion con moxidex plus repitiendo la misma a los 15 dias de la primer desparasitacion .\nindico desparasitacion tanto a la paciente como a la otra canina que convive con ella control post tratamiento a las 24 hs \nme comenta que no presento vomitos diarrea ni anorexia .\ncomio la dieta indicada con muchas ganas . \nrevision clinica. abdomen blando, no hay sospechas de cuerpo extraño. \N \N 710 827 \N 88 1032 {"studies": [], "medications": [{"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "551", "next_application_months": 0}], "specialities": []} +684 2025-04-24 18:01:38.423558+00 2025-04-24 18:01:38.423567+00 f t hepatopatia cambiar alimento balaceado , en el domicilio tenian cat chow y performance indico alimentacion palatable ( pollo atun carne roja cocida)\nen el domicilio, ofrecemos atun y come .\nexplico posible cuadro hepatico por los hallazgos clinicos e indico perfil hepatico + calcio + fosforo + ionograma serico. felina hembra castrada comun europea 5 años \nconsulta por decaimiento, anorexia y vomitos glerosos/biliosos. evolucion 48 hs \nrevision clinica. paciente complicada de revisar\naus s/p\ndeshidratacion 8%\nimposible tomarle la temperatura\npalpacion abdominal: hepato/esplenomegalia , abdomen blando, algia leve en hipogastrio, moderado contenido fecal en colon . \N \N 713 832 \N 88 1031 {"studies": ["8"], "medications": [{"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "702", "next_application_months": 0}, {"id_medicina": "950", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +685 2025-04-25 00:17:57.362602+00 2025-04-25 00:17:57.362614+00 f t paciente oncologico? insuficiencia renal/hepatica? sugiero realizar ecografia abdominal + chequeo de sangre completo para evaluar medio interno indico alimentacion palatable para estimular el consumo y bolsas de agua caliente para intentar regular la temperatura + control a las 24 hs para evaluar respuesta al tratamiento canina hembra mestiza castrada 15 años \nconsulta por decaimiento, anorexia y vomitos glerosos/biliosos . evolucion 7 dias \nen el domicilio la tutora me comenta que estuvo internada por 7 dias y durante ese tiempo , por la ausencia de ella, la perra dejo de comer.\nrevision clinica\naus s/p\ndeshidratacion 8-9%\ntemperatura 36\npalpacion abdominal. abdomen tenso, dolor generalizado en el abdomen. se palpa masa en relacion al riñon derecho de aprox 15 cm . ademas, se palpa en ventral del abdomen en epi/mesogatrio hepato/esplenomegalia/masa/masas en relacion a dichos organos.\nanimal conectado con el medio \N \N 677 800 \N 88 1001 {"studies": [], "medications": [{"id_medicina": "1069", "next_application_months": 0}, {"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "787", "next_application_months": 0}, {"id_medicina": "950", "next_application_months": 0}, {"id_medicina": "551", "next_application_months": 0}], "specialities": []} +686 2025-04-25 00:21:07.899278+00 2025-04-25 00:21:07.899289+00 f t - indico que comience con los paseos en 15 dias - canino macho entero mestizo border collie\nconsulta para aplicar sextuple ( primera dosis)\ncome dieta barf\nexcelente cc\ndesparasitacion al dia \nrevision clinica sin particularidades. todos los parametros dentro de lo normal \N \N 388 779 \N 88 990 {"studies": [], "medications": [{"id_medicina": "1168", "next_application_months": 3}], "specialities": []} +687 2025-04-25 00:24:15.618284+00 2025-04-25 00:24:15.618296+00 f t - sugiero castracion de la canina entera indico desparasitacion con moxidex plus repitiendo a los 15 dias a ambas caninas consulta para vacunacion anual de 2 perras adultas. una castrada y la otra no ( maltes y caniche)\nrevision clinica de ambas todo ok .\naus s/p\npalpacion abdominal s/p\ndesparasitacion interna vencida en ambas \N \N 639 751 \N 88 941 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1168", "next_application_months": 12}], "specialities": []} +689 2025-04-28 19:43:05.237388+00 2025-04-28 19:43:05.2374+00 f t Insuficiencia cardíaca severa en un cuadro de desmejoramiento generalizado. Tratamientos paliativos sin resultados. Se recomienda la eutanasia. Se recomienda la eutanasia Eutanasia Sensorio deprimido. Deshidratacion. Incontinencia fecal y urinaria. Soplo cardíaco severo. Parálisis de miembros posteriores. Postración. \N \N 744 868 \N 70 1070 {"studies": [], "medications": [], "specialities": []} +775 2025-05-19 20:15:54.574751+00 2025-05-19 20:15:54.574762+00 f t Parasitosis . Moxidex plus. Repetir en 15 dias Prurito anal luego de defecar. Dos gotas de sangre. \N \N 1251 1278 \N 92 1210 {"studies": [], "medications": [], "specialities": []} +690 2025-04-29 14:52:36.694441+00 2025-04-29 14:52:36.694449+00 f t - sugiero colocar pipeta full spot on en ambos ya que hace mucho tiempo que no los desparasita internamente sugiero cambiar el royal fit por reducido en calorias ya que ambos gatos estan con sobrepeso marcado. pacientes :\nfelino macho comun europeo castrado 13 años\nfelino macho bengali castrado 13 años.\nse acude a domicilio para realizar la vacunacion anual de ambos. \ncomen royal canin fit + urinary de royal (mezclados)\ndesparasitacion interna vencida\nrevision clinica del comun europeo: \naus sin particularidades\nobeso\npalpacion abdominal abdomen blando \nresulto imposible revisar al Bengali ya que la tutora nunca pudo agarrarlo en su vida, convive con el perro el gato es muy asustadizo y no se deja agarrar por la tutora \N \N 732 855 \N 88 1057 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +691 2025-04-29 15:02:54.097195+00 2025-04-29 15:02:54.097203+00 f t hepatopatia + mycoplasma? se recomienda estar atenta a la rutina diaria de la gata porque el compromiso hepatico que tiene es muy alto y puede dejar de comer en cualquier momento proteliv 15 gotas cada 12 hs por al menos 1 mes acudo al domicilio para realizar extraccion de sangre para perfil hepatico + calcio + fosforo + ionograma serico.\nla gata con el tratamiento aplicado el dia anterior ( ringer lactato sc , ranitidina novotioc tramdol pileran dexa) comenzo a comer con ganas ( dieta de pollo atun carnes rojas cocidas) y no volvio a presentar vomitos.\npara la extraccion indiqué que le den gabapentina porque no es una paciente facil de revisar. con el efecto de la gaba resulto mas facil la revision de la gata, en la cual se observa mucosas piel del pabellon auricular icterica, por lo cual ademas del perfil hepatico solicitado, realizo toma de muestra de sangre perisferica para frotis en busqueda de Mycoplasma\nindico ecografia abdominal y comenzamos tto con proteliv gotas 15 gotas cada 12 hs por al menos 1 mes.\nindico alimentacion palatable y explico que si en algun momento la gata deja de comer, es necesaria su internacion para estabilizacion y colocacion de sonda nasoesofagica/ tubo de esofagostomia . no optamos en primera instancia por la internacion porque es una gata que fuera de la casa es una fiera, se pone muy agresiva.\nle indico a la tutora que compren alimento royal canin hepatico para ver si logramos que comience a comer balanceado \N \N 713 832 \N 88 1062 {"studies": [], "medications": [{"id_medicina": "1069", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +692 2025-04-29 15:08:00.118076+00 2025-04-29 15:08:00.118089+00 f t . estar atentos al comportamiento de la gata y a su ingesta de alimentos los tutores estan de acuerdo en comenzar un tto empirico con doxiciclina. sugiero realizar en 15 dias ( siempre y cuando la gata este realizando su rutina diara y por sobre todas las cosas, siempre y cuando este comiendo) un nuevo estudio de sangre para ver respuesta al tto .\nmando por mensaje la medicacion que deben comprar para comenzar el tto .\nindico ranitidina en gotas, prednisol en gotas y doxicicilina en suspension. estoy a la espera de que la tutora me envie el peso de la paciente para dosificarle todos los medicamentos antes descriptos. hablo con la tutora y le explico que por los valores que obtuvimos en sangre, la sospecha que tenga una complicacion de base por mycoplasma sigue estando. planteo 2 posibilidades. 1 hacer pcr de mycoplasma realizando una nueva extraccion o 2 comenzar tto empirico con doxiciclina teniendo en cuenta el caracter de la gata. \N \N 713 832 \N 88 1063 {"studies": [], "medications": [], "specialities": []} +693 2025-04-29 15:18:18.747278+00 2025-04-29 15:18:18.747286+00 f t - explico todas las posiblidades de estudios complementarios que se pueden realizar para evaluar si la paciente podria volver a caminar, y tambien estudios para evaluar medio interno . en la revision clinica no se observa dolor ni sufrimiento.\nHablo con Nicolas y le explico todos los hallazgos obtenidos de la revision de la gorda, y explico que la decision que tome , tiene que contemplar el tiempo que pasa solo el animal, ya que no puede valerse por si misma y el está mucho tiempo afuera de la casa . De igual forma, el animal en lineas generales no manifiesta dolor/sufrimiento canina hembra mestiza castada 17 años .\nconsulta a domicilio porque el tutor quiere saber si la perra esta sufriendo/sientiendo dolor.\nes una canina postrada, que depende del tutor para movilizarse por el departamento , comer , hacer sus necesidades ,etc\nno puede mantenerse en estacion por si misma.\ncome con muchas ganas, no presenta vomitos ni diarrea\nNicolas ( el tutor) la tiene a cargo hace 1 mes, antes vivia con la madre de Nicolas, pero el tomo la decision hacerse cargo de la perrita a partir de ahora.\nrevision clinica.\naus s/p\npalpacion abdominal abdomen blando, no manfiiesta dolor a la palpacion profunda . no se palpan masas/neo en cav abdominal\nnormohidratada\nnormotermica 38.1\nperdida de propriocepcion en MP, disminucion de la sensibilidad superficial en los 4 miembros, mas notoria en MP\nanimal conectado con el medio\ncataratas bilaterales \N \N 733 856 \N 88 1058 {"studies": [], "medications": [], "specialities": []} +694 2025-04-29 15:23:32.850459+00 2025-04-29 15:23:32.850469+00 f t - mantener dieta palatable , presentar mucha atencion a la ingesta de la perra, temperatura que tiene y animo ( la tutora es enfermera asique ella se va a encargar de tomarle los parametros) como anteriormente lo deje acentado, sugiero realizar perfil hepatico + ecografia abdominal pero por cuestiones economicas hoy no pueden afrontar ese gasto. explico la necesidad de hacerlo pero comprendo a su vez los costos que estos estudios implican para ellos vuelvo al domicilio para continuar el tratamiento aplicado y ver respuesta en la paciente\ndejo de vomitar y esta comiendo la dieta palatable indicada \nhoy defeco despues de 3 dias de no hacerlo.\nnormalizo temperatura \N \N 677 800 \N 88 1002 {"studies": [], "medications": [{"id_medicina": "1069", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "551", "next_application_months": 0}], "specialities": []} +695 2025-04-29 15:28:20.045674+00 2025-04-29 15:28:20.045687+00 f t - - a pesar de la estabilidad lograda hasta ahora, explico a la tutora que sin estudios complementarios y sin poder diagnosticar las neos/masas que se palpan en cavidad abdominal y realizar un estudio de sangre para evaluar medio interno, es muy dificil predecir que puede pasar. explico que se puede complicar en cualquier momento ya que no sabemos puntualmente esas masas asociadas a que organos estan, y sus posibles consecuencias a corto plazo . acudo por 3ra vez al domicilio. \nsiguio comiendo la dieta palatable, orina defeca \N \N 677 800 \N 88 1027 {"studies": [], "medications": [{"id_medicina": "1069", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "551", "next_application_months": 0}], "specialities": []} +1036 2025-06-29 18:32:19.549575+00 2025-06-29 18:32:19.549583+00 f t - - - - \N \N 3554 3032 \N 90 1604 {"studies": [], "medications": [], "specialities": []} +697 2025-04-29 15:32:27.448866+00 2025-04-29 15:32:27.448875+00 f t . . indico desparasitacion con moxidex plus repitiendo a los 15 dias hembra canina daschund castrada\nconsulta para vacunacion anual\nrevision clinica\nexcelente cc\naus s /P\npalpacion abdominal s/p\nnormotermica normohidratada\ndesparasitacion interna vencida \N \N 548 755 \N 88 947 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1168", "next_application_months": 12}], "specialities": []} +698 2025-04-30 12:49:53.650284+00 2025-04-30 12:49:53.650292+00 f t Vacunación Refuerzo en 21 dias Vacunación Se realiza visita a domicilio, paciente Malvina y Marquesa, Examen objetivo general: mucosas rosadas, hidratación OK, auscultación cardíaca OK, auscultación respiratoria OK, se realiza vacunación quíntuple de ambas, control en 21 dias para refuerzo \N \N 631 741 \N 87 1060 {"studies": [], "medications": [], "specialities": []} +699 2025-05-01 20:36:57.502472+00 2025-05-01 20:36:57.502484+00 f t Rinitis alérgica Continuar con enrofloxacina vía oral x 5 días Dexametasona Iny 0.3 mg kg \nEnrofloxacina Iny 5 mg kg MC: signos de rinitis, estornudos de 1 mes de ev que aumentaron su frecuencia en la última semana a 5/6 episodios a diario \nSin vacunas en sus 13 años\nSin comunicación actualmente con otros felinos \nConserva el buen ánimo, apetito \nSe observa mucho uso domiciliario de perfumes en aerosol y difusor, en ambiente y textiles \N \N 678 801 \N 94 1004 {"studies": [], "medications": [], "specialities": []} +700 2025-05-01 21:41:08.834282+00 2025-05-01 21:41:08.834291+00 f t Dolor crónico de columna y articulaciones coxofemorales. Insuficiencia cardíaca. Infección urinaria. Cushing (según relación cortisol creatinina de estudios previos). Analisis de sangre (perfil general completo+ AOC con relación cortisol/creatinina). Repetir tribiotic en 48hs. Continuar con ciprofloxacina, hoy agrego tribiotic y gabapentina. Postración desde hace dos semanas. Temperatura 39.3. apetito normal. Defeca normal. Sonda urinaria colocada. Antecedentes de infección urinaria. Se encuentra medicado con tramadol pregabalina diazepam ciprofloxacina. Ayer le cambiaron la sonda urinaria. Soplo mitral. Hidratación normal. Realiza acupuntura desde hace dos semanas. \N \N 765 890 \N 92 1083 {"studies": ["7"], "medications": [], "specialities": []} +701 2025-05-03 17:06:19.244245+00 2025-05-03 17:06:19.244253+00 f t Control de salud anual Alimento bajas calorías de royal canin. Control anual. Triple felina+ var + moxidex plus EOG: normal \N \N 748 873 \N 92 1072 {"studies": [], "medications": [{"id_medicina": "1155", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +702 2025-05-03 23:29:13.054602+00 2025-05-03 23:29:13.054615+00 f t Control anual de salud Orquidectomía (castración) y paseos diarios. Quíntuple+cv+L+ Var EOG: Normal \N \N 533 628 \N 92 1091 {"studies": [], "medications": [{"id_medicina": "1148", "next_application_months": 12}, {"id_medicina": "1175", "next_application_months": 12}], "specialities": []} +703 2025-05-06 21:55:55.40489+00 2025-05-06 21:55:55.4049+00 f t Cuadro inespecífico, Posible intoxicación, hepatopatía severa, enfermedad renal severa Hidratación y ASC inmediato Se deriva a Desivet para fluidoterapia y análisis de sangre Mucosas anémicas e ictéricas, deshidratación severa, midriasis, incoordinación al caminar, anorexia desde hace 48hs, ayer se vacuno con la triple felina. \N \N 798 913 \N 92 1095 {"studies": [], "medications": [], "specialities": []} +704 2025-05-07 00:04:55.174011+00 2025-05-07 00:04:55.17402+00 f t gingivitis realizo orden para perfil general + vif vilef por pcr . explico que idealmente habria que tratar la boca antes de reanudar plan de vacunacion ya que la paciente está con una gingivitis muy marcada y mucha molestia al comer.\ncomenzamos tto con ranitidina tribiotic inyectable ( 1 aplicacion cada 48 hs por 4 aplicaciones) e indico esquema de prednisolona a 0.5 mg/ kg por 5 dias y luego a dias alternos por 2 aplicaciones mas.\nla tutora esta administrando dentalplax en el agua de la bebida hembra felina comun europeo castrada 7 años .\nmotivo de consulta . vacunacion anual\nconvive con otro gato. ambos castrados .desparasitacion interna de ambos vencida. ambos rescatados\nrevision clinica:\naus s/p\nnormotermica normohidratada\ncc buena\npalpacion abdominal s/p\ncav bucal: halitosis , gingivitis marcada en premolares y molares superiores de ambas arcadas. colmillo inferior derecho movil.\nanteriormente ha tenido alteraciones en cavidad bucal y las ha tratado en otra veterinaria .\nno tiene hecho vif vilef \N \N 770 893 \N 88 1085 {"studies": [], "medications": [], "specialities": []} +705 2025-05-07 00:07:42.470687+00 2025-05-07 00:07:42.470695+00 f t . - indico desparasitacion con moxidex plus repitiendo a los 15 dias \ndejo pipeta para desparasitacion externa hembra felina comun europeo castrada 2.6 años .\nmotivo de consulta vacunacion anual\ndesparasitacion interna vencida\ndesparasitacion externa al dia\ncome excelent gato adulto\nno convive con animales\nrevision clinica:\naus s/p\npalpacion abdominal s/p\nnormotermica normohidratada \N \N 784 901 \N 88 1089 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +717 2025-05-10 00:04:37.252017+00 2025-05-10 00:04:37.252028+00 f t Triple felina + Var + desparasitación con moxidex plus . Triple felina + var + moxidex plus EOG: NORMAL \N \N 868 980 \N 92 1130 {"studies": [], "medications": [{"id_medicina": "1155", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +731 2025-05-11 15:30:25.82021+00 2025-05-11 15:30:25.820218+00 f t Vacunación anual. Revacunar en 1 año. - EOG S/P \N \N 729 853 \N 89 1055 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +734 2025-05-11 15:32:25.510976+00 2025-05-11 15:32:25.510988+00 f t Vacunación anual. Revacunar en 1 año. - EOG S/P \N \N 757 883 \N 89 1080 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}, {"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +735 2025-05-12 20:50:08.186412+00 2025-05-12 20:50:08.186426+00 f t Primer Ciclo estral Ovariectomia Se recomienda la ovariectomia. Ambiente tranquilo, jugar con ella. Cuidar ventanas y puertas para evitar que se escape. Bebida y comida disponible. Hembra de 9 meses. Consulta por maullidos persistentes. Comportamiento normal de ciclo estral. \N \N 944 1049 \N 92 1151 {"studies": [], "medications": [], "specialities": []} +1612 2025-09-01 11:37:24.067481+00 2025-09-01 11:37:24.067491+00 f t - - - Se toma muestra de sangre para PCR de vif y vilef \N \N 6509 5308 \N 1 2093 \N +1624 2025-09-01 12:17:23.54487+00 2025-09-01 12:17:23.54488+00 f t - Controlar y evaluar cómo está los siguientes días. Se indica continuar con meloxicam, terazosina, cisticalm y alimento urinario. Paciente se encuentra estable, la vejiga sin contenido y uretra permeable. \N \N 6214 5071 \N 1 2041 \N +706 2025-05-07 00:16:13.715524+00 2025-05-07 00:16:13.715537+00 f t alteraciones oseas a nivel del tren posterior/ cadera ? sugiero realizar rx del tren posterior explico que probablemente el animal no defeque por el dolor que se encuentra en el tren posterior. en caso de no defecar luego de la medicacion , indico felilax.\nesperamos respuesta al tratamiento para evaluar repetir o no la medicacion inyectable .\nsugiero realizar rx de columna toracolumbar lumbosacra ll y art coxofemoral ll y ap \nla tutora se va de vacaciones por 15 dias felino macho castrado bengali 4 años .\nconsulta por decaimiento, incapacidad para saltar . \nantes de ayer presento una deposicion pastosa y desde entonces no defeca ( 24 hs sin defecar)\nrevision clinica\naus s/p\npalpacion abdminal abdomen tenso ( el paciente está muy asustado por la revision , entonces realmente no puedo evaluar si es dolor o tension por la exploracion/ revision.)\nnormohidratado normotermico\nraquis: se rehusa a la extension de cadera ( permite solo extender a 40 grados y no mas porque me retira ambos miembros )\nal caminar en el cuarto, evidencia dolor en tren posterior.\nmiembros posteriores con temperatura normal y propiocepcion conservada. \N \N 796 911 \N 88 1093 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "704", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +707 2025-05-07 00:25:26.715586+00 2025-05-07 00:25:26.715597+00 f t alteraciones en columna ( podria tener cualquier tipo de alteracion como mineralizacion de discos , estrechamientos intervertebrales, displasia y/o alteraciones en art coxofemoral) + hepato/esplenomegalia/ neo en dichos organos realizo orden para ecografia abdominal + rx de columna toracolumbar y lumbosacra ll y art coxofemoral ll y ap aplico rani meloxi + tramdol\ndejo blister de meloxicam para continuar tto via oral por 4 dias mas a 0.1 mg/kg \nindico tramadol a 2mg/kg cada 12 hs por 3 dias , luego a 1 mg/kg cada 12 hs por 3 dias +. canino hembra labrador 13 años castrada.\nconsulta por dificultad para incorporarse.\nya ha estado en tratamiento con previcox por manifestaciones agudas de alguna patologia en columna/cadera ( sin tener un diagnostico ya que nunca realizo rx de columna)\nactualmente esta tomando pregabalina tambien indicado por otro vete.\nrevision clinica\naus s/p\npalpacion abdominal : se palpa marcada hepato/esplenomegalia en epigastrio \nnormotermica normohidratada\ncataratas bilaterales\npalpacion del raquis . marcado dolor en region toracolumbar y lumbo sacra. no realizo extension de cadera dada la situacion de la paciente.\nmantiene apetito , come normalmente\ndeposiciones normales \N \N 472 560 \N 88 1082 {"studies": [], "medications": [{"id_medicina": "872", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +708 2025-05-07 01:39:34.518495+00 2025-05-07 01:39:34.518503+00 f t Insuficiencia renal crónica terminal. Eutanasia Se recomienda y realiza la eutanasia. Consulta por uremia y creatininemia muy elevadas dentro de un cuadro de postración general. \N \N 830 936 \N 70 1108 {"studies": [], "medications": [], "specialities": []} +709 2025-05-08 15:51:49.136688+00 2025-05-08 15:51:49.1367+00 f t Cardiopatia dilatada, pericarditis?\nDisplasia de cadera, dea, espondiloartrosis? Indicó control cardiologico, traumatologico, eco abdominal y hacer Extracción para chequeo gral completo\nDieta: mejorar el AB e incorporar carne y verduras, para bajar de peso Penicilina enrofloxacina tramadol dexa Sc Paciente en decubito eternal, le cuesta levantarse score corporal 4/5, el tutor me comenta que come poco, jadea constantemente\nMucosas rosadas tllc 2'', sonidos cardíacos apagados, pulmones ok t 39.2C, abdomen blando\nEn diciembre tuvo un episodio neurologico\nPlan sanitario? \N \N 837 942 \N 21 1112 {"studies": ["8"], "medications": [], "specialities": ["8", "41", "59"]} +710 2025-05-08 21:44:45.032008+00 2025-05-08 21:44:45.032016+00 f t Desorden hormonal, infección urinaria ASC. Perfíl geronte canino con orina completa (relación cortisol/creatinina). Recordar al propietario realizar ayuno sólido de 8 horas antes de la extracción de sangre. Enrofloxacina 150 MG, medio comprimido por día durante 7 días. Control clínico en 5 días. Paciente de 14 años, 12 kg, incontinencia urinaria desde hace varios meses, castrada, apetito normal, vulva con edema y tb le han notado sangre. Ánimo normal. Toma fenobarbital desde jóven. Se estresa frente a gente desconocida. \N \N 854 962 \N 92 1122 {"studies": [], "medications": [], "specialities": []} +711 2025-05-09 02:06:16.597214+00 2025-05-09 02:06:16.597224+00 f t Vacunas No No Vacunas \N \N 764 889 \N 94 1084 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 0}, {"id_medicina": "1158", "next_application_months": 0}, {"id_medicina": "248", "next_application_months": 0}], "specialities": []} +712 2025-05-09 02:07:51.267972+00 2025-05-09 02:07:51.267981+00 f t Vacunas Gabapentina oral pre consulta No Vacunas \N \N 829 935 \N 94 1107 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +713 2025-05-09 02:09:40.212987+00 2025-05-09 02:09:40.213001+00 f t Sin estudios previos - Eutanasia Postración\nEspasmos e hiperreactividad en 4 miembros\nAlerta deprimida \nOrinado en el lugar \nMiasis de manto en toda región posterior \N \N 137 961 \N 94 1121 {"studies": [], "medications": [], "specialities": []} +714 2025-05-09 23:51:41.680486+00 2025-05-09 23:51:41.680495+00 f t - . . felino macho castrado comun europeo 4 kg.\ncome excelent urinary\ndesparasitacion interna y externa al dia ( hace menos de un mes le coloco pipeta para que cubre ambos, no recuerda la tutora cual) \nvisita a domicilio por vacunacion anual.\nrevision clinica:\nauscultacion s/p\nexcelente cc\nnormotermico normohidratado\npalpacion abdominal s/p \N \N 823 929 \N 88 1102 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +715 2025-05-09 23:57:39.573368+00 2025-05-09 23:57:39.573381+00 f t Séxtuple+ lepto+ var Desparasitación y consulta con cardiólogo Se vacuna con séxtuple+ lepto+ var Apetito normal, defeca y orina en forma normal. Soplo cardíaco. Resto S/P \N \N 841 950 \N 92 1119 {"studies": [], "medications": [{"id_medicina": "1148", "next_application_months": 12}, {"id_medicina": "1177", "next_application_months": 12}], "specialities": []} +716 2025-05-10 00:02:26.358428+00 2025-05-10 00:02:26.358438+00 f t . . . canino hembra mestiza cachorra.\nfecha de nacimiento: 06/03/2025\nconsulta a domicilio para iniciar plan de vacunacion. la tienen hace 20 dias , no sale al exterior. esta desparasitada con totalfull cg 2 tomas separadas por 15 dias (la tutora no sabia que dias fue desparasitada, queda pendiente que nos informe las fechas)\nestan haciendo la transicion de dog chow a eukanuba puppy.\nno vomitos ni diarrea\nrevision clinica:\naus s/p\nnormotermica normohidratada\nexcelente cc \N \N 824 930 \N 88 1103 {"studies": [], "medications": [{"id_medicina": "1156", "next_application_months": 3}], "specialities": []} +718 2025-05-10 00:31:55.458252+00 2025-05-10 00:31:55.458261+00 f t esplenomegalia? neo en bazo/ cav abdominal?\nmasa/neo/lesion/infl en piel)?\nhemoparasitos? dieta de pechuga de pollo .\nindico ecografia abdominal ademas aplico inyectable tribiotic + ondansetron y vit b canino mestizo macho castrado 12 años . 38-40 kg\nconsulta por decaimiento y vomitos. evolucion 24 hs .\ntiene realizado un estudio de sangre del 03/05/2025 solicitado por otro colega que lo estuvo viendo dias previos. en el mismo se evidencia anemia leve ( HTO 34 GR 4.730 HB 11.7).\nGOT 64\nALB 2.3\nGLOB 4.9\nT4 0.93\nTSH 0.24\n(coloco unicamente los valores alterados en el chequeo de sangre)\nUPC 0.88\nestuvo hasta hace unos dias tomando floxaday y el colega tambien le indico un suplemento para la anemia .\nrevision clinica:\naus fc 98 lpm\ndeshidratacion leve \ntemp 39.2\ncolumna: marcado dolor en columna toracolumbar y art coxofemoral. le cuesta incorporarse.\npalpacion abdominal: se palpa en en caudal de ultima costilla izquierda organomegalia ? esplenomegalia ? \nabdomen blando, dolor en epigastrio.\npresenta una masa en dorsal de columna toracica. la misma tiene forma redondeada ( aprox 5 cm de diametro), superficie hetelogenea, ulcerada, con marcada inflamacion asociada.\na la palpacion su textura es firme y aparenta no asociada a planos profundos/musculares. \N \N 855 963 \N 88 1123 {"studies": [], "medications": [{"id_medicina": "1069", "next_application_months": 0}, {"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "702", "next_application_months": 0}], "specialities": ["41"]} +719 2025-05-10 13:14:38.092136+00 2025-05-10 13:14:38.092149+00 f t Parasitosis Repetir atp Total full cg Paciente con peso de 0,580 gramos. Tiene dos meses. La hermana que no convive con el expulso un ascaris. Repetimos desparasitacion con total full cg hoy mañana y pasado. Aplico triple felina. Repetir desparasitacion en 15 dias. Controlaremos el peso ese dia y si no aumento lo suficientr se realizara sangre para hipotiroidismo \N \N 753 878 \N 80 1077 {"studies": [], "medications": [], "specialities": []} +720 2025-05-10 13:16:06.853442+00 2025-05-10 13:16:06.853454+00 f t Pulgas Vacunacion a los 2 meses de edad Total full cg por 3 dias y aplico frontline spray Eog spp, vieron que se rascaba \N \N 697 814 \N 80 1013 {"studies": [], "medications": [], "specialities": []} +721 2025-05-10 13:18:26.144197+00 2025-05-10 13:18:26.144205+00 f t Discopatia cervical . . Postracion hace 3 semanas. Solo se levanta para comer. Dolor importante de cervicales, imposibilidad de mover el cuello. Tetraparesia. Mal estado general, mucho sarro dental. Se habla sobre eutanasia, van a ver como evoluciona hasta mañana. Aplico meloxicam y tramadol. Doy receta para meloxicam y pregabalina \N \N 744 868 \N 80 1068 {"studies": [], "medications": [], "specialities": []} +722 2025-05-10 13:21:10.425983+00 2025-05-10 13:21:10.425993+00 f t Sobrepeso Bajar de peso, no subir al sillon ni a la cama de un salto. Comprar rampa. Aplique sextuple y antirrabica. Desparasitacion con meltra gold Eog spp, sobrepeso. \N \N 750 875 \N 80 1074 {"studies": [], "medications": [], "specialities": []} +723 2025-05-10 13:23:05.436847+00 2025-05-10 13:23:05.436856+00 f t Dermatofitosis Limpieza del hogar Terbinafina oral una vez por dia minimo 3 semanas y multivitaminico de gatos Gatitos con lesiones alopesicas costrosas por micosis. Comenzo uno de los gatitos y los otros dos se contagiaron. \N \N 667 788 \N 80 1034 {"studies": [], "medications": [], "specialities": []} +724 2025-05-10 13:24:07.112627+00 2025-05-10 13:24:07.112635+00 f t . . Vacunacion Eog spp. Se aplica vacuna triple felina y atr \N \N 786 903 \N 80 1092 {"studies": [], "medications": [], "specialities": []} +725 2025-05-10 13:26:24.811158+00 2025-05-10 13:26:24.811166+00 f t Odontolitiasis Realizar limpieza dental. Gerioox o cartilago classic Amoxicilina clavulanico 7 dias c/ 12 hs.\nAplico sextuple. Eog spp. Odontolitiasis avanzada, mucha gingivitis. Movimientos pasivos de cuello con dificultad \N \N 856 964 \N 80 1124 {"studies": [], "medications": [], "specialities": []} +726 2025-05-10 23:35:12.474531+00 2025-05-10 23:35:12.474542+00 f t Infección urinaria Colocar orina en un frasco para urianálisis y extracción de sangre con 8 horas de ayuno previo. ASC (Perfil general completo) + AOC con relación cortisol/creatinina. Continuar con ciprofloxacina, agrego urovier (1 comp.diario), alimento urinario y análisis de sangre y de orina. Teleconsulta: paciente canino hembra de 20kg. Refiere dificultad para orinar desde hace unos días. Se encuentra en tratamiento con ciprofloxacina 500mg cada 24 hrs desde hace una semana. Apetito normal. Defeca normal. \N \N 903 1010 \N 92 1139 {"studies": ["7"], "medications": [], "specialities": []} +727 2025-05-11 15:17:07.945403+00 2025-05-11 15:17:07.945416+00 f t Refuerzo triple felina + pipeta externos Vacunación antirrábica semana del 19/05 - EOG S/P \N \N 646 761 \N 89 1126 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}, {"id_medicina": "187", "next_application_months": 0}], "specialities": []} +728 2025-05-11 15:25:09.126813+00 2025-05-11 15:25:09.126822+00 f t Cistitis Evaluar evolución por telemedicina en 7 días.\nContemplar la posibilidad de hacer un estudio de orina en caso de no mejorar. Meloxicam + tramadol + ranitidina inyectable.\nSe receta: Meloxicam gotas para un tto PO por 7 días (primeros 3 días a 0,1mg/kg y los próximos a 1mg totales).\nTerazosina 2mg: 1/4 de comprimido/d por 7 días.\nCisticalm: Espolvorear una cápsula sobre comida cada 12hs por 1 mes. Tutores refieren que hace un mes aproximadamente comenzó con polaquiuria fuera del arenero. Ahora defeca normal. Comentan que puede haber robado comida del suelo.\nEOG S/P - EOP Leve molestia TGI, vejiga con contenido normal. \N \N 822 928 \N 89 1101 {"studies": [], "medications": [{"id_medicina": "872", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}], "specialities": []} +729 2025-05-11 15:28:09.101981+00 2025-05-11 15:28:09.101989+00 f t Traumatismo - Repito medicación de la Dra Victoria. Se recomienda evaluar evolución. Repito medicación. Dexa+Rani+Tramadol. Paciente de la Dra Victoria.\nLa tutora refiere que "Bonn" quedó inmóvil en su habitación. La Dra Victoria lo medicó en el día y mejoró.\nAl momento de la consulta podía subirse a la cama y a la ventana y no presentaba dolor. \N \N 796 911 \N 89 1104 {"studies": [], "medications": [{"id_medicina": "704", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}], "specialities": []} +730 2025-05-11 15:29:22.334948+00 2025-05-11 15:29:22.334955+00 f t Vacunación Séxtuple. Próxima vacunación: 26/05/25. - EOG SP \N \N 812 923 \N 89 1099 {"studies": [], "medications": [{"id_medicina": "1170", "next_application_months": 3}], "specialities": []} +732 2025-05-11 15:31:04.33314+00 2025-05-11 15:31:04.333154+00 f t Refuerzo Vacuna triple felina. Revacunar en 1 año. - EOG S/P \N \N 652 769 \N 89 985 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +736 2025-05-12 22:38:16.927009+00 2025-05-12 22:38:16.927021+00 f t Diarrea crónica. Si persiste la diarrea luego del cambio de alimentación (de old prince a Fawna); cambiarlo por uno de mayor digestibilidad como Proplan gastroenteric o royal gastroenteric. Control en 30 días. Moxidex plus. 3 comprimidos hoy. Repetir en 15 días. Cambio de alimentación. Consulta virtual. Diarrea intermitente cada 4 días. Cambio de alimentación natural a balanceado old prince hace unos días. Resto normal. \N \N 873 985 \N 92 1133 {"studies": [], "medications": [], "specialities": []} +737 2025-05-13 14:54:07.059489+00 2025-05-13 14:54:07.0595+00 f t Pólipo/ neoplasia mucosa anal de aprox 0.5cm, su presencia no genera Tenesmo ni cambios en el paciente. Si crece o se mantiene considerar biopsia quirúrgica. Si se mantiene requiere tratamiento quirúrgico. Control periódico Clínicamente sin alteraciones, neoplasia ano que prolapsa cuando defeca. \N \N 270 313 \N 68 980 {"studies": [], "medications": [], "specialities": []} +738 2025-05-13 15:10:11.908343+00 2025-05-13 15:10:11.908354+00 f t Vacunación con séxtuple con corona. Bañar con shampoo hipoalergénico para eliminar materia fecal de pulgas. Moxidex plus 1/4 comp; repetir cada 30 días. Consulta x vacunación con quíntuple canina. Cachorro caniche blanco y marrón nacido el 28/02/2025. Ya recibió una dosis de quíntuple el 12/4/25. Se aplica sextuple con corona en el día de la fecha; repetir el 02/ 06. El 01/07 debe recibir séxtuple con lepto y antirrábica. \nEOG ok. Apetito, sed, micción y defecación normales. Auscultación cardíaca normal. Palpación abdominal sin particularidades. Presencia de materia fecal de pulgas. \N \N 938 1042 \N 70 1147 {"studies": [], "medications": [{"id_medicina": "1175", "next_application_months": 1}, {"id_medicina": "296", "next_application_months": 1}], "specialities": []} +739 2025-05-13 15:19:13.666461+00 2025-05-13 15:19:13.666481+00 f t Vacunación con triple felina y antirrábica. Repetir antiparasitario en 6 meses. Vacunación con triple felina y antirrábica. Se desparasitó con Moxidex plus. Consulta por vacunación con triple felina. EOG normal. Apetito, sed, micción y defecación normales. Auscultación cardíaca normal. Palpación abdominal sin particularidades. \N \N 656 775 \N 70 1007 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}, {"id_medicina": "1155", "next_application_months": 12}], "specialities": []} +740 2025-05-13 23:41:02.043415+00 2025-05-13 23:41:02.043428+00 f t EDA generalizada con mayor importancia en art coxofem Mantener al paciente en observación a respuesta al tratamiento en las siguientes 24 hs Inyectable x el momento Vacunas y ATP vencidos \nMacho entero \nMucosas rosas pálidas, buen TLLC\nScore corporal regular, delgadez y consumo muscular \nSensorio alerta\n\nMC: Dificultad para incorporarse y caminar, inestabilidad posterior, claudicación fría, palpación abdominal sp, examen físico locomotor molestia en movimientos pasivos de ambas caderas \N \N 979 1075 \N 94 1159 {"studies": [], "medications": [{"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "702", "next_application_months": 0}], "specialities": []} +741 2025-05-14 16:57:08.208423+00 2025-05-14 16:57:08.208435+00 f t Hipertiroidismo Omh previo visita veterinario si es fuera de casa. Balanceado gastrointestinal junto con dieta casera. Score corporal 2/5 a pesar de polifagia. Vómitos esporádicos. Taquicardia y soplo 3/5.\nVarios estudios con hemograma de estrés algún momento y leve elevación de urea. Ecografías abdominales solo refieren sensibilidad incipiente renal. Pérdida progresiva de peso (3 últimos años) Palpo leve alteración en tiroides. \N \N 1009 1103 \N 68 1172 {"studies": ["3", "12"], "medications": [], "specialities": ["72"]} +742 2025-05-14 23:43:46.718854+00 2025-05-14 23:43:46.718865+00 f t Vacunación anual Vacunación nuevamente en 1 año Vacunación anual Examen objetivo general: mucosas rosadas, ausc ok, hidratación ok, linfonodulos ok \N \N 839 944 \N 87 1113 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1176", "next_application_months": 12}], "specialities": []} +743 2025-05-14 23:45:14.595784+00 2025-05-14 23:45:14.595796+00 f t Vacunación anual Vacunación nuevamente en un año Vacunacion EOG: ok \N \N 839 946 \N 87 1114 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +744 2025-05-14 23:46:09.343102+00 2025-05-14 23:46:09.343113+00 f t Vacunacion anual Vacunación nuevamente en un año Vacunacion EOG: ok \N \N 839 948 \N 87 1115 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +745 2025-05-14 23:46:55.166867+00 2025-05-14 23:46:55.166878+00 f t Vacunacion Re vacunación en un año Vacunación EOG:ok \N \N 839 945 \N 87 1116 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +746 2025-05-14 23:47:52.228934+00 2025-05-14 23:47:52.228944+00 f t Vacunación Revacunacion en un año Vacunación EOG:ok \N \N 839 947 \N 87 1117 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +747 2025-05-14 23:48:47.795932+00 2025-05-14 23:48:47.795944+00 f t Revacunacion Revacunacion en 3 semanas Vacunacion EOG:ok \N \N 631 741 \N 87 932 {"studies": [], "medications": [{"id_medicina": "1173", "next_application_months": 3}], "specialities": []} +748 2025-05-15 00:02:37.750208+00 2025-05-15 00:02:37.750221+00 f t . Revisacion de pulpejos y dedos en búsqueda de lesiones visibles y en ausencia de lesiones visibles, se recomienda RX L-L y A-P del miembro afectado. Meloxicam 1 MG. 1 comprimido cada 24hs. Teleconsulta. Claudicación de tercer grado de MAD desde hace 10 días. Sin heridas visibles. Dolor. Resto, S/P. \N \N 1047 1131 \N 92 1183 {"studies": [], "medications": [], "specialities": []} +774 2025-05-19 03:10:48.84931+00 2025-05-19 03:10:48.849323+00 f t Lipoma La tutora requiere estudio de sangre y orina para control. Se realizó PAF de las 4 neoformaciones: Dx citológico "Lipoma" EOG SP\nEOP: 4 neoformaciones en Escápula izquierda, MPI, Hombro derecho y Pélvis.\nLas del tronco de aspecto papilomatoso. La de MPI aparentaba ser lipoma. \N \N 893 1004 \N 89 1136 {"studies": [], "medications": [], "specialities": []} +776 2025-05-20 00:07:15.426604+00 2025-05-20 00:07:15.426615+00 f t Piodermia Control en 7 días. Cefalexina 1000 + Meloxicam 2mg + crema 6A. Evitar el lamido. Teleconsulta: piodermia en glándula mamaria abdominal. Apetito normal. \N \N 1174 1221 \N 92 1204 {"studies": [], "medications": [], "specialities": []} +868 2025-06-02 21:06:11.07982+00 2025-06-02 21:06:11.079832+00 f t Neoplasia? ACV? - Eutanasia Los propietarios me muestran los estudios y se evalúa al paciente, se comentan el pronóstico y los propietarios deciden realizar la eutanasia. \N \N 1708 1630 \N 1 1293 {"studies": [], "medications": [], "specialities": []} +749 2025-05-15 12:29:34.825427+00 2025-05-15 12:29:34.825437+00 f t Vacunación con triple felina+ antirrábica. Se recomienda repetir triple felina en 30 días y desparasitaciones. Vacunación con triple felina y antirrábica. Desparasitación con Moxidex plus y pipeta Ecthol gato menor a 5 Kg. Consulta por vacunación antirrábica. EOG ok. Apetito, sed, micción, defecación normales. Auscultación cardíaca normal. Palpación abdominal sin particularidades. \N \N 992 1089 \N 70 1168 {"studies": [], "medications": [{"id_medicina": "1155", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 3}], "specialities": []} +750 2025-05-15 12:45:50.980543+00 2025-05-15 12:45:50.980566+00 f t Vacunación con triple felina y antirrábica. Repetir triple felina y desparasitaciones dentro de 30 días. Vacunación con triple felina y antirrábica. Se desparasitó con Moxidex plus y pipeta Ecthol gato menor a 5 Kg. Consulta por vacunación antirrábica. EOG ok. Apetito, sed, micción, defecación normales. Auscultación cardíaca normal. Palpación abdominal sin particularidades. \N \N 992 1090 \N 70 1169 {"studies": [], "medications": [{"id_medicina": "1155", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 3}, {"id_medicina": "140", "next_application_months": 0}], "specialities": []} +751 2025-05-15 12:50:04.557284+00 2025-05-15 12:50:04.557297+00 f t Extracción de sangre para perfil general básico con orina y serología de Erlichia y Leishmania. Sin recomendación Extracción de sangre para perfil general básico con orina y serología de Erlichia y Leishmania. Extracción de sangre para perfil general básico con orina y serología de Erlichia y Leishmania. \N \N 893 1004 \N 70 1179 {"studies": [], "medications": [], "specialities": []} +752 2025-05-15 15:25:29.48529+00 2025-05-15 15:25:29.485299+00 f t Dermatitis bacteriana? Si repite cuadro, investigar causa de base. Dexa y tribiotic inyectable, repetir tribiotic en 48/72 hs Varias lesiones de piel de aspecto bacteriano (son distintas a las lesiones anteriores), prurito ++, resto s/p. Se les dificulta mucho medicar oral y no tienen certeza de la dosis que consume cuando le dan pastillas. \N \N 625 735 \N 91 1188 {"studies": [], "medications": [], "specialities": []} +753 2025-05-15 16:40:32.179853+00 2025-05-15 16:40:32.179862+00 f t - indico cambiar de alimento de old prince puppy a nutrique puppy hasta el año - cachorro caniche hembra 3 meses aprox.\nconsulta para continuar plan de vacunacion.\nla cachorra tiene aplicadas 1 dosis de puppy, a los 25 dias , refuerzo quintuple + corona ( providean) ( estas vacunas fueron aplicadas en el criadero donde fue adquirida) y solicita explicitamente repetir quintuple + corona marca providean.\ncome old prince puppy\nno sale al exterior\ncorrectamente desparasitada con totalfull cg \nrevision clinica\nbuen estado de salud\naus s/p\npalpacion abdominal s/p\nno vomitos ni diarrea. \N \N 826 932 \N 88 1105 {"studies": [], "medications": [{"id_medicina": "1165", "next_application_months": 3}], "specialities": []} +754 2025-05-15 16:48:09.664573+00 2025-05-15 16:48:09.664584+00 f t alteraciones en vias aereas superiores/inferiores. bronquitis? asma felino ? indico vapor para favorecer y facilitar la eliminacion del moco.\nsugiero realizar rx torax ll y vd en caso de no observarse una respuesta esperable al tto aplico inyectable clamoxy + rani + dexa.\ndejo misma medicacion para repetir a las 48 hs . y luego 2 jeringas mas con rani + clamoxy para los siguientes dias felino macho castrado comun europeo.\nconvive con otra gata .\nambos comen cat chow y pouch de varias marcas ( cat chow whiskas)\nconsulta por abundante secrecion verdosa por ollares. evolucion mas de 3 semanas. estonudos \nde animo todo ok, no vomitos ni diarrea, come con ganas . \nrevision clinica\naus aumento murmullo vesicular resto s/P\nnormotermico normohidratado\npalpacion abdominal: no pude realizar palpacion correcta ya que se puso muy nervioso.\nme comenta la tutora que bajó de peso notoriamente en el ultimo tiempo. segun ella , estaba obeso.\ncc buena \N \N 916 1021 \N 88 1142 {"studies": [], "medications": [{"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "704", "next_application_months": 0}], "specialities": []} +755 2025-05-15 16:53:26.161445+00 2025-05-15 16:53:26.161456+00 f t carcinoma de celulas escamosas ? indico colocar bloqueador solar en la nariz para evitar los efectos del sol sobre la misma ya que toma sol todos los dias realizo raspaje de la piel de la nariz ( hasta sangrado leve) y solicito retirar dicha muestra para citologia por sospecha de cce. imposible por el tipo de lesion tomar una muestra por paf. explico eso a la tutora. \nademas realizo orden para perfil hepatico ´+ calcio + fosforo + ionograma serico felino macho castrado comun europeo 13 años .\ntiene una orden realizada por su vete de cabecera en la cual sugiere realizar complementarios ( no especifica cuales) ya que el paciente presenta una lesion costrosa en la nariz, que hace mucho tiempo la tiene. no cicatriza, el gato se rasca, se lastima, se genera una costra, cae la costra y vuelve el ciclo. \ngato con nariz blanca sin pigmentacion .\nrevision clinica \naus s/p\npalpacion abdomiinal s/p\nnormotermico normohidratado \N \N 835 940 \N 88 1111 {"studies": [], "medications": [], "specialities": []} +756 2025-05-15 16:59:49.210641+00 2025-05-15 16:59:49.210652+00 f t colapso traqueal ? fibrosis pulmonar ? colapso bronquial ? enfermedad endocrina / diabetes/ insuf renal sugiero realizar segun respuesta al tratamiento, rx de cuello y torax realizo orden para perfil hepatico + ccalcio + fosforo + ionograma serico + hdl + ldl + trigliceridos\nindico desparasitacion con moxidex plus repitiendo a los 15 dias yorkshire hembra castrada 15 años .\ncome royal canin + 12 años \ndesparasitacion interna vencida hace al menos 1 2 años .\nconsulta porque el otro dia tuvo un episodio en el cual parecia que se asfixiaba ( no registro por video dicho episodio). no perdio en ningun momento la conciencia, y la perra estaba "tranquila " segun el tutor.\nrevision clinica\nalopesia simetrica bilateral en dorsolomo\naus aumento murmullo vesicular. resto s/p\nnormotermica 38.3\nnormohidratada\npolidipsia poliuria polifagia. no perdida ponderal\nreflejo tusigeno ++++ \N \N 1021 1111 \N 88 1173 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "704", "next_application_months": 0}], "specialities": []} +757 2025-05-15 18:11:09.728908+00 2025-05-15 18:11:09.728922+00 f t . . indico desparasitacion con moxidex plus reptiendo a los 15 dias hembra canina border colie castrada 1 año\nconsulta para vacunacion.\ndesparasitacion interna vencida\nrevision clinica:\naus s/p\ncc 5\npalpacion abdominal s/p\nnormotermica normohidratada \N \N 842 951 \N 88 1120 {"studies": [], "medications": [{"id_medicina": "1168", "next_application_months": 12}], "specialities": []} +758 2025-05-15 19:15:54.577207+00 2025-05-15 19:15:54.577224+00 f t . Sacar un turno en amar mascotas Se indica la vacunación antirrábica anual todos los años. Teleconsulta. Consulta por riesgo de rabia y otra enfermedad transmisible en un felino que salió a un techo de un vecino. La última vacuna fue en el año 2017. \N \N 1072 1147 \N 92 1192 {"studies": [], "medications": [], "specialities": []} +850 2025-06-01 21:01:50.455608+00 2025-06-01 21:01:50.455616+00 f t . . . Se canceló \N \N 703 820 \N 92 1250 {"studies": [], "medications": [], "specialities": []} +759 2025-05-15 23:50:10.220685+00 2025-05-15 23:50:10.220696+00 f t Dermatitis. De no remitir o recidivar, se indica IC con dermatología. Repito tribiotic, continúa con limpieza 2 veces x día y luego colocar macril hasta remisión. Lesiones con leve mejoría, no hay nuevas y no se extendieron. Está limpiando con clorehexidina 2 veces x día. \N \N 625 735 \N 91 1193 {"studies": [], "medications": [], "specialities": []} +760 2025-05-16 13:33:03.557144+00 2025-05-16 13:33:03.557153+00 f t Hipotiroidismo control en dos meses y realizar eco tiroidea Se indica comenzar con 1 comp y medio de levo. Consulta endocrinologica\nTiene cuadros dermatologicos de forma recuerrente\nA la inspeccion presenta pelo opaco, alopecia circular con zona oscura central \N \N 725 849 \N 98 1066 {"studies": [], "medications": [], "specialities": []} +761 2025-05-17 20:14:07.257267+00 2025-05-17 20:14:07.257279+00 f t Vacunación anual . Vacunación anual EOG: Normal \N \N 1098 1166 \N 92 1195 {"studies": [], "medications": [{"id_medicina": "1155", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +762 2025-05-17 20:15:22.845071+00 2025-05-17 20:15:22.845082+00 f t Vacunación anual . Vacunación anual. EOG: normal \N \N 1098 1164 \N 92 1196 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +763 2025-05-17 21:57:13.2101+00 2025-05-17 21:57:13.210115+00 f t Conjuntivitis Vacunar con triple felina+Var finalizado el tratamiento. Colirio antibacterial S/E. Colocar dos gotas en ojo izdo cada 12 hs durante 5 días EOG: normal. La dueña refiere lagrimeo de ojo izdo. Test de fluoresceína. Conducto nasolagrimal permeable. \N \N 1110 1175 \N 92 1199 {"studies": [], "medications": [], "specialities": []} +764 2025-05-18 16:10:36.525609+00 2025-05-18 16:10:36.525621+00 f t Tumor de tiroides y lesión de médula espinal. El propietario no tiene recursos para encarar un eventual tratamiento. Eutanasia. Se realiza eutanasia. Consulta por posible eutanasia. EOG: sensorio deprimido. Apetito, sed, micción y defecación alterados. Auscultación cardíaca SP. Tumor en ventral de zona cervical (tamaño pelota futbol), probablemente de origen tiroideo. Pérdida de propiocepción en miembros traseros ( tambaleo al caminar). \N \N 587 688 \N 70 1185 {"studies": [], "medications": [], "specialities": []} +765 2025-05-18 23:00:07.000294+00 2025-05-18 23:00:07.000308+00 f t Probable cistitis. Hoy sin signos de cistitis Mantener el arenero limpio. Accesibilidad a agua fresca. Vacunar con triple felina + Var a la brevedad. Moxidex plus hoy. Repetir en 15 días. Refiere periuria, lamidos en zona genital. Desde ayer desaparecen esos signos. EOG: normal. \N \N 1193 1231 \N 92 1205 {"studies": [], "medications": [], "specialities": []} +767 2025-05-19 02:21:14.167969+00 2025-05-19 02:21:14.167979+00 f t - Se recomienda comenzar con la sociabilización en los próximos días. Reprogramación del turno para el viernes 30. No se pudo atender. Se brindaron indicaciones y "tips" para acelerar la socibilización. Gato "salvaje" rescatado de la calle hacía 3 días. Al momento de la consulta el tutor no pudo bajarlo de arriba de la heladera. Al acercarse mostraba signos de agresividad. Me quedé en el domicilio intentando ayudar a bajarlo durante una hora sin éxito. \N \N 941 1045 \N 89 1148 {"studies": [], "medications": [], "specialities": []} +766 2025-05-19 02:19:53.447139+00 2025-05-19 02:19:53.447151+00 f t - Se recomienda comenzar con la sociabilización en los próximos días. Reprogramación del turno para el viernes 30. No se pudo atender. Se brindaron indicaciones y "tips" para acelerar la socibilización. Gata "salvaje" rescatada de la calle hacía 3 días. Al momento de la consulta el tutor no pudo bajarla de arriba de la heladera. Al acercarse mostraba signos de agresividad. Me quedé en el domicilio intentando ayudar a bajarla durante una hora sin éxito. \N \N 941 1044 \N 89 1149 {"studies": [], "medications": [], "specialities": []} +768 2025-05-19 02:33:16.518433+00 2025-05-19 02:33:16.518446+00 f t Vacunación anual. - Vacunación EOG SP \N \N 942 1047 \N 89 1150 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1174", "next_application_months": 12}], "specialities": []} +769 2025-05-19 02:34:35.408398+00 2025-05-19 02:34:35.408406+00 f t Vacunación anual Se recomienda colocar el bozal antes de ingresar al domicilio. No es un perro agresivo. Es un perro juguetón, es muy grande y si bien muerde jugando puede lastimar. Vacunación EOG SP \N \N 942 1046 \N 89 1152 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1174", "next_application_months": 12}], "specialities": []} +770 2025-05-19 02:41:51.761928+00 2025-05-19 02:41:51.761937+00 f t Vacuanción con triple felina. Se recomienda comenzar un plan de vacunación desde cero, tres triples felinas y luego antirrábica. Vac. triple felina. Desde que la rescataron no la vacunan (más de un año)\nEOG SP \N \N 917 1022 \N 89 1143 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 3}], "specialities": []} +771 2025-05-19 02:58:53.09845+00 2025-05-19 02:58:53.098465+00 f t Cistitis. Realizar la ecografía abdominal programada.\nControl por telemedicina. Se indicó Meloxicam gotas a dosis decrecientes por 6 días. y Cisticalm por dos meses. El primer mes cada 12 h y el segundo mes cada 24h. Consulta en el día.\n"Furia" presenta cistitis de 1 semana y media de evolución. Fue atendido en la clínica "De Simone" (donde le hicieron estudio de orina completo: cristales de estruvita) con evolución favorable los primeros 5 días pero ahora presentó una agudización del proceso.\nLo trataron con prednisolona+enrrofloxacina+tramadol+prazosina.\nAl momento de la consulta "Furia" se lamió la región genital reiteradas veces y vocalizó. Había orinado en el sillón antes de la visita.\nA la palpación abdominal no presentaba distención de vejiga (por agresividad no se pudo revisar en profundidad).\nLa tutora tenía una foto del pene: muy inflamado. \N \N 1140 1197 \N 89 1201 {"studies": [], "medications": [{"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}], "specialities": []} +772 2025-05-19 03:00:53.934201+00 2025-05-19 03:00:53.934212+00 f t Vacunación anual. - Vacunación.\nSe indicó Otovier NF, 7 gotas/3v/d/10d EOG SP.\nSecreción amarronada en oído derecho compatible con Otitis leve. \N \N 751 876 \N 89 1075 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1174", "next_application_months": 12}], "specialities": []} +773 2025-05-19 03:06:56.250935+00 2025-05-19 03:06:56.250947+00 f t Linfoma - Aplicación de medicamentos. "Bella" fue diagnosticada con "Linfoma". Su veterinario de cabecera indicó Tribiotic+Dexa+Tramadol+Cerenia cada 7 días y le dejó las jeringas preparadas a los tutores. \N \N 160 169 \N 89 1045 {"studies": [], "medications": [], "specialities": []} +1104 2025-07-04 20:16:16.175878+00 2025-07-04 20:16:16.175887+00 f t - - - - \N \N 2370 2141 \N 86 1511 {"studies": [], "medications": [], "specialities": []} +777 2025-05-20 14:02:41.71923+00 2025-05-20 14:02:41.719241+00 f t Litiasis\nNeoplasia \nITU\nHemometra/Endometritis \nTVT Chequeo sangre y orina \nEco abdominal Cefalexina cada 12 hs \nMeloxicam cada 24 hs \nDipirona cada 12 hs Videoconsulta en el dia \nHembra mestiza entera, en periodo diestral, ultimo celo hace 2 m. \nMuy afectada x pulgas \nNo ve descarga vulvar\nOrino con sangre x la mañana y hasta el momento no se repitió la micción de ningún tipo \nSin signos de de micción con alteración en tracto urinario al parecer \nNo recuerda haber tenido garrapatas, no hay hemorragias en otras regiones corporales \nCome sabrositos \nManifiesta dolor y quejido al intentar cambiarla de posición \N \N 1248 1275 \N 94 1207 {"studies": ["1", "7"], "medications": [], "specialities": []} +778 2025-05-20 14:16:45.339809+00 2025-05-20 14:16:45.339819+00 f t Cuadro infeccioso. ¿Viral?\nDd/. Cuerpo extraño. Consulta cardiológica y análisis de sangre completo con medición de tiroides. H-Vilisin diario.\nRumiclamox cada 12hs 7 días.\nOcuflox 1 gota en cada ojo. Estornudos y lagrimeo (ojo izquierdo) \nGerente, mudanza hace un par de meses con acceso al exterior y a más animales. Hay baja de peso pero conserva apetito y aumenta. Taquicardia pero campo pulmonar s/p a la auscultación. Fluorosceina negativo a úlcera córnea pero sin drenaje nasolagrimal. \N \N 1201 1240 \N 68 1208 {"studies": [], "medications": [], "specialities": []} +779 2025-05-20 15:02:37.539333+00 2025-05-20 15:02:37.539347+00 f t Otitis crónica bilateral. Mantener la higiene de los oidos Se indica hacer limpiezas de los odios y aplicar tritohexidin plus c/12 hs durante 15 dias Se revisa a él paciente y se evidencia otitis crónica en forma bilateral, con mayor incidencia en el pabellón derecho. Se realiza limpieza y se demuestra como realizar curaciones \N \N 338 401 \N 1 1227 {"studies": [], "medications": [], "specialities": []} +780 2025-05-20 15:06:28.505746+00 2025-05-20 15:06:28.505764+00 f t Otitis Realizar limpiezas y depilaciones del canal auditivo. Se indica hacer limpiezas periódicas y aplicar tritohexidin plus. Se revisa el animal presenta otitis de uno de los conductos, el propietario comenta que lo había llevado a bañar hace 1 semana. \nSe realiza limpieza y se indica la aplicación del quimioterapico \N \N 1109 1174 \N 1 1198 {"studies": [], "medications": [], "specialities": []} +781 2025-05-20 15:15:10.266562+00 2025-05-20 15:15:10.266575+00 f t Gastroenteritis? Se toma muestra de sangre para un PGC y se deja orden para ecografía. Se indica controlar y hacer dieta de bajos residuos hasta lograr estabilizar. Se aplica dipirona, tramadol, ranitidina, ondansetron, sulfatrimetropin y diafin 2 (a mitad de dosis). Continuar por vía oral con giacoccide y enrerosept. La propietaria comenta que la perra está con vómitos y diarrea, que hace un día que casi no quiere comer, según la tutora no se desvió de la su dieta habitual. La perra se presenta levemente deshidratada y normotermica, leve dolor abdominal. \N \N 1249 1276 \N 1 1211 {"studies": [], "medications": [], "specialities": []} +782 2025-05-20 15:23:59.310965+00 2025-05-20 15:23:59.310978+00 f t Bronquitis crónica? Asma felino? Hacer RX de control cuando termine el tratamiento Se indica hacer tratamiento con prednisolona y amoxicilina. Luego de terminado el tratamiento evaluar nuevamente. Desde la última vez que se había hecho la visita comentó que había estado con episodios de tos pero muy esporádicos. La última semana comentó que se empezó a intensificar y que lo notó que tosía 2 a 3 veces por día. A lo cual se le indicó una RX de tórax que se evidencia presencia de una bronquitis crónica, (no se descarta asma felino). \N \N 811 922 \N 1 1202 {"studies": [], "medications": [], "specialities": []} +783 2025-05-20 19:33:33.842626+00 2025-05-20 19:33:33.842639+00 f t Otitis Hacer limpiezas periódicas con algún producto comercial para limpiar orejas Se realiza limpieza y se indica realizar tratamiento con tritohexidin plus Presenta otitis crónica bilateral que está con mayor insistencia en el oído izquierdo. \N \N 338 401 \N 1 1234 {"studies": [], "medications": [], "specialities": []} +784 2025-05-20 19:36:08.719789+00 2025-05-20 19:36:08.719797+00 f t - Se indica en lo posible hacer el tratamiento con fisioterapia acordado anteriormente Se recortan las uñas y se realiza vaciamiento de las glándulas. EOG s/p \N \N 123 128 \N 1 1170 {"studies": [], "medications": [], "specialities": []} +785 2025-05-20 19:54:03.691845+00 2025-05-20 19:54:03.691855+00 f t Gastritis? Se indica hacer dieta de bajo reciduos hasta que mejore la parte gástrica y salga más a caminar Aplico ranitidina, ondansetron, dipirona. Según el propietario luego de jugar brusco queda con dolor en la espalda, al revisarlo no se evidencia dolor ni molestia, lo que sí comenta que está con vómitos hace varios días y a la palpación abdominal se nota que tiene molestias. Normotermico, normohidratado. \N \N 1022 1112 \N 1 1174 {"studies": [], "medications": [], "specialities": []} +786 2025-05-20 19:55:14.836887+00 2025-05-20 19:55:14.836898+00 f t - - Triple felina/ rabia\nSe desparasita en forma interna y externa EOG: s/p \N \N 73 75 \N 1 1155 {"studies": [], "medications": [], "specialities": []} +787 2025-05-20 20:02:04.368712+00 2025-05-20 20:02:04.368725+00 f t - - Triple felina/rabia\nDesparasitacion interna y externa EOG: s/p \N \N 73 294 \N 1 1154 {"studies": [], "medications": [], "specialities": []} +788 2025-05-20 20:11:25.736568+00 2025-05-20 20:11:25.736579+00 f t Gastroenteritis? Se indica continuar con dieta de bajo residuos y sulfatrimetropin. Se aplica ranitidina, dipirona, tramadol, diafin 2 (a mitad de dosis), ondansetron, y sulfatrimetropin. Normotermica, levemente deshidratada.\nLeve dolor abdominal. La propietaria comenta que está con vómitos y diarrea hace varios días. \N \N 490 579 \N 1 1167 {"studies": [], "medications": [], "specialities": []} +789 2025-05-21 23:29:47.99731+00 2025-05-21 23:29:47.997322+00 f t Dolor en columna? Mal movimiento? Hablamos de observar evolución tanto de las manifestaciones locomotoras como gastrointestinales, quedamos a la espera de evolución para evaluar si requiere estudios y otro tto. Se aplica analgesia inyectable en única dosis. Gato rescatado, muy temeroso, difícil para revisar, se indicó dar 100 mg de gabapentina 2 horas y media previo a consulta. \nMdc: lo vieron renguear de MPI, ayer no quiso comer y presentó un vómito aislado. Hoy le ofrecieron comida, comió poca cantidad y toleró.\nAl estar bajo efecto de gabapentina, la marcha no es normal, lo que se puede evaluar por inspección no es representativo, pero no claudica. A la revisación manifiesta dolor en columna, detrás de la cruz, no así en resto de columna ni a movimientos de cadera en ambas articulaciones.\nEOG s/p, palpación abdominal s/p. \N \N 1371 1366 \N 91 1247 {"studies": [], "medications": [{"id_medicina": "872", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +790 2025-05-22 11:33:12.542036+00 2025-05-22 11:33:12.542044+00 f t Masa en narinas, tórax? Sugiero placa, previa consulta presencial Consulta presencial . Control virtual: mejora su condición general buen ánimo deambula más de lo normal, me comenta la dueña que jadea si no le prenden el ventilador, y me menciona que puede tener estornudo invertido. Comento que estaría bueno revisarla... \N \N 837 942 \N 21 1129 {"studies": [], "medications": [], "specialities": []} +791 2025-05-22 11:48:33.968438+00 2025-05-22 11:48:33.968449+00 f t Vacunación anual. Repetir en un año. Vacunación con triple felina y antirrábica. Consulta x vacunación anual. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación normal. \N \N 1275 1303 \N 70 1221 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +792 2025-05-22 11:59:53.848582+00 2025-05-22 11:59:53.84859+00 f t Crisis cerebrales, episodio convulsivo? Encefalitis uremica? .. Consulta con clínico presencial Me comentan que tuvo un episodio de ausencia, tiembla más de lo normal. Sigo indagando con preguntas y lo mejor para la mascota sería que lo viera un clínico, y de ser necesario un neurologo \N \N 1337 1343 \N 21 1240 {"studies": [], "medications": [], "specialities": []} +793 2025-05-22 12:02:35.580106+00 2025-05-22 12:02:35.580114+00 f t Vacunación anual. Repetir en un año. Vacunación con triple felina y antirrábica. Consulta x vacunación anual. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar normales. \N \N 1275 1300 \N 70 1219 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +794 2025-05-22 12:10:34.083821+00 2025-05-22 12:10:34.083831+00 f t Vacunación con triple felina y antirrábica Repetir en un año. Vacunación con triple felina y antirrábica Consulta x vacunación anual. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar normales. \N \N 1275 1302 \N 70 1218 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +795 2025-05-22 12:18:23.127328+00 2025-05-22 12:18:23.127337+00 f t Vacunación con triple felina y antirrábica. Repetir en un año. Vacunación con triple felina y antirrábica. Consulta x vacunación. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar normales. \N \N 1275 1301 \N 70 1220 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +796 2025-05-22 12:26:14.989997+00 2025-05-22 12:26:14.990008+00 f t Neumonia. Control en 15 días. Azitromicina 200 MG. 1/2 comp c/12 hs x 5 días. Consulta x respiración dificultosa. EOG sensorio normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades y pulmonar con murmullo vesicular aumentado. \N \N 1315 1327 \N 70 1232 {"studies": [], "medications": [], "specialities": []} +797 2025-05-22 12:37:43.912445+00 2025-05-22 12:37:43.912457+00 f t Piodermias en axilas e ingles. Control en 15 días. Cefalexina 1g 3/4 comprimido c/12 hs PO + crema 6A tópico dos veces por día. Consulta x piodermias en axilas e ingles. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar normales. \N \N 1320 1333 \N 70 1230 {"studies": ["7"], "medications": [], "specialities": []} +798 2025-05-22 12:45:25.320369+00 2025-05-22 12:45:25.320376+00 f t Vacunación con triple felina y antirrábica. Repetir en un año. Vacunación con triple felina y antirrábica. Consulta x vacunación anual. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca y pulmonar normales. \N \N 1194 1232 \N 70 1206 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +799 2025-05-22 13:45:42.640122+00 2025-05-22 13:45:42.640132+00 f t Trauma por caída? Dolor muscular y articular. En caso de no desaparecer los signos de claudicacion se le dejó una orden para placa de miembro y de columna Se aplico meloxivet inyectable 0.2ml SC. Se le indicó meloxivet gotas; 15 gotas cada 24 hs por 4 días desde viernes 24/05 Desde hace 2 días notan que no apoya el miembro posterior izquierdo. Desde que salto del patio a la ventana de la habitación.\nSe observa que intenta caminar y nonapoya correctamente el miembro posterior izquierdo. Auscultación sin particularidades. Mucosas normales.\nSe realiza maniobra en el miembro sin manifestar dolor o resistencia del mismo. No se palpa fractura. \N \N 1388 1374 \N 97 1251 {"studies": [], "medications": [{"id_medicina": "872", "next_application_months": 0}], "specialities": []} +800 2025-05-22 15:41:48.51467+00 2025-05-22 15:41:48.51468+00 f t Ascaris Repetir total full cg en 15 dias Total full cg Se aplica triple felina. Se repite desparasitacion con total full cg (su hermana vomito un ascaris) \N \N 753 878 \N 80 1109 {"studies": [], "medications": [], "specialities": []} +801 2025-05-22 15:42:23.341427+00 2025-05-22 15:42:23.341438+00 f t . . . Se realiza vacunacion anual de triple felina y antirrabica \N \N 745 869 \N 80 1096 {"studies": [], "medications": [], "specialities": []} +802 2025-05-22 15:43:26.492502+00 2025-05-22 15:43:26.492515+00 f t . . . Se realiza vacunacion anual de triple felina y antirrabica \N \N 867 979 \N 80 1128 {"studies": [], "medications": [], "specialities": []} +803 2025-05-22 15:46:49.433261+00 2025-05-22 15:46:49.433269+00 f t Intoxicacion con esteroides . . Telemedicina. Paciente al que se le suministro por 5 dias prednisona 50 mg totales por equivocacion, ademas recibio doxiciclina ya que se sospecho Ehrlichia. Pesa 6 ks aproximadamente. Tienen un estudio de sangre actual que tienen que enviar. Se explica que debera repetir el estudio de sangre y acudir a una guardia para fluidoterapia, ademas bajaremos consideramente la dosis del corticoide. Quedo pendiente otra videollamada para ver el estudio de sangre. \N \N 978 1074 \N 80 1157 {"studies": [], "medications": [], "specialities": []} +804 2025-05-22 15:48:09.962436+00 2025-05-22 15:48:09.962444+00 f t . . . Se aplica vacuna antirrabica. Sextuple esta al dia. Imposible revisar por agresividad. Desparasitacion al dia. Se habla sobre hacer consulta con etologia. \N \N 1042 1129 \N 80 1178 {"studies": [], "medications": [], "specialities": []} +805 2025-05-22 15:49:15.480704+00 2025-05-22 15:49:15.480712+00 f t . . . Se atendio a su otro gato (el cachorro). Se aplico 2da dosis de triple felina. Presentaba mucha secresion en oidos con prurito, sin dolor ni molestias ni mal olor. Solo limpio. \N \N 745 869 \N 80 1158 {"studies": [], "medications": [], "specialities": []} +806 2025-05-22 15:52:25.713945+00 2025-05-22 15:52:25.713955+00 f t . . . Polidipsia, prurito en axilas e ingles y en la cara que comenzo hace pocos meses. No tiene pulgas. Alergia que puede ser alimentaria por la edad. Sarro dental con mal olor. Se indico perfil prequirurgico hemostatico con consulta cardiologica para limpieza dental o perfil general completo para investigar posible insuf renal/diabetes \N \N 999 1095 \N 80 1164 {"studies": [], "medications": [], "specialities": []} +807 2025-05-22 15:55:41.635329+00 2025-05-22 15:55:41.635342+00 f t . . . Polidipsia, mal aliento con sarro, prurito en axilas e ingles y en la cara, que comenzo hace pocos meses, sin ectoparasitos. Posible alergia alimentaria por la edad de presentacion. Se indica perfil prequirurgico hemostatico con consulta cardiologica o perfil general completo para investigar posible diabetes/insuf renal. No medico. Cambiar a alimento hipoalergenico \N \N 1028 1120 \N 80 1175 {"studies": [], "medications": [], "specialities": []} +808 2025-05-23 00:06:16.378458+00 2025-05-23 00:06:16.378468+00 f t Lesion costrosa/ papiloma? Se sugiere perfil de sangre completo para evaluar estado renal y hepático por la edad. Previo darle 90 minutos antes gabapentina para poder revisarlo Ninguno Paciente felino de 10 años. Alerta y con temperamento al intentar acercarme muestra carácter. \nLogro tomar poco contacto y se aleja. Se puede observar la lesión en la zona dorsal del lomo es una formación costrosa, al tacto es dura como una cascara de cicatrización. No se puede visualizar qué hay debajo ante varios intentos.\nSe explica a Tenedores sobre medicina preventiva que seria ideal poder realizarle un perfil sanguíneo por la edad para tener un panorama renal y hepático.\nSe le indico previo a las visitas probar con gabapentina para poder realizar una consulta sin estrés para BENITO \N \N 1402 1386 \N 97 1252 {"studies": [], "medications": [], "specialities": []} +809 2025-05-23 15:20:25.726376+00 2025-05-23 15:20:25.726389+00 f t Conjuntivitis? Se comenta que en primer medida hacer este tratamiento y luego según evolución se puede intentar o evaluar otro tratamiento cuando baje la inflamación de ambos ojos. Se indica hacer tratamiento con colirio y cicatrizante ocular. Comenta el propietario que el problema de los ojos lo viene notando hace más de un mes, y que no lo podía hacer tratar antes porque no contaba con los recursos, al revisar se evidencia una irritación conjuntival marcada pero negativo a la fluoresceina en ambos ojos(-). \N \N 1335 1342 \N 1 1238 {"studies": [], "medications": [], "specialities": []} +810 2025-05-23 15:21:18.383873+00 2025-05-23 15:21:18.383882+00 f t Rinitis crónica. - - Se toma muestra de sangre para serologia de infecciosas. \N \N 1325 1337 \N 1 1233 {"studies": [], "medications": [], "specialities": []} +811 2025-05-23 17:54:29.177453+00 2025-05-23 17:54:29.177465+00 f t Neo? Quiste? Evitar la exposición al sol en horas centrales. Proderma crema en lesión nasal. Tomo muestra x PAF de lesión de MAD y dejo muestra en domicilio para realizar citología. En febrero comenzó con una lesión alopécica de un dedo de MAD. Pensó q era solo pelado y se le iba a ir, pero con el tiempo se hizo sobre elevada y ahora es una deformación en más redondeada, entre arveja y garbanzo, de consistencia blanda, coloración rojiza, no adherida a planos profundos, con menos densidad de pelo de lo normal. No se lame, no parece molestarle.\nAdemás presenta una sutil erosión de piel en plano nasal con hipotricosis y enrojecimiento de la piel. Toda esa zona es blanca y toma algo de sol, si bien la cuidan y le restringen lo que pueden, ella lo busca. \N \N 1372 1367 \N 91 1249 {"studies": [], "medications": [], "specialities": []} +812 2025-05-23 21:27:18.522742+00 2025-05-23 21:27:18.522755+00 f t Dermatitis bacteriana. Baños.\nBase alérgica. Cefalexina 1gr cada 12 horas 20 días.\nPrednisolona (que ya está tomando empezar a decrecer y dejar de tomar) Nexgard mensual. Lesiones en piel, crónicas. Una de absceso en la semana y hoy está mucho mejor. Abdoemn distendio, mucosas leve pálidas y lesiones en piel a demás de las dermatiticas que sugieren hemangiomas. \N \N 1330 1341 \N 68 1237 {"studies": ["1"], "medications": [], "specialities": []} +813 2025-05-24 14:30:38.351541+00 2025-05-24 14:30:38.351553+00 f t Vacunación anual.\nDAPP, se indica control de pulgas y crema tópica en lesiones. Hablamos de hacer eevisación bajo sedación de la boca, evaluar limpieza de dientes y posibles extracciones de acuerdo a lo que se encuentre, sospecho gingivoestomatitis. Ideal hacerlo con estudios preqx. Se indica repetir un ciclo de tto que ya había hecho para la boca con stomagyl y meloxi. Fue tratada por gingivitis, es difícil para atender, no se puede hacer una buena revisación de la boca. Dermatitis generalizada con algunas lesiones puntuales. Resto s/p. \N \N 1452 1430 \N 91 1265 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +814 2025-05-24 14:33:03.552694+00 2025-05-24 14:33:03.552716+00 f t Vacunación anual.\nDAPP. Probar con bravecto (viene colocando full spot sin resultado) Se aplica una dosis de tribiotic, indico prednisol gotas x 4 días y control de pulgas. Dermatitis generalizada, lesiones costrosas en cuello, prurito+++, presencia de pulgas. Resto s/p \N \N 1452 1431 \N 91 1266 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +815 2025-05-24 14:35:05.465699+00 2025-05-24 14:35:05.465712+00 f t Vacunación anual.\nDAPP. Probar con bravecto (xq viene usando full spot sin resultado) Se indica prednisol gotas x 4 días y control de pulgas. Dermatitis generalizada, lesiones costrosas en cuello (puntuales, aisladas) prurito +++, presencia de pulgas, hipotricosis en varias regiones del cuerpo. \N \N 1452 1432 \N 91 1267 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +816 2025-05-25 20:32:42.401309+00 2025-05-25 20:32:42.401319+00 f t Bronquitis/gastritis. Evitar irritantes ambientales.\nAyuno total x 1 hora luego de medicación inyectable, luego permitir ingesta. Se indica ranitidina 25 gotas cada 12 horas x 7 días desde mañana. Flutivent (fluticasona 125 mcg/salmeterol 25 mcg) 1 paf cada 12 horas x 2 meses. Desparasitación con endospot (o fullspot, estaban en la duda si usar completa o no) para los 3 gatos convivientes. Realizar rx de tórax antes de finalizar los 2 meses de flutivent. Hace un año aprox comenzó con vómitos esporádicos, a veces con más intensidad que otras, si bien son episodios aislados y sin grandes consecuencias, se repiten en el tiempo. Además me relata episodios que a veces terminan en arcadas improductivas, que parecen ser tos. Tiene hecha una eco abd: gastritis leve, resto s/p y rx cuello y tórax: aumento de densidad x patrón bronquial infeccioso/alérgico. No fuman, no hay aromatizante de ambiente constante, no usan sahumerios, tienen patio con plantas. No suele romper cosas, no lo ven comerse las plantas, a veces juega con gomitas de pelo. Come mezcla de fit 32 (1/3) y RC gatos castrados (2/3). Desde q comenzó con los vómitos hicieron en dos oportunidades tto con inyectables, nada oral y no hubo cambio de dieta. Hace mucho que no desparasitan. Convive con 2 gatos más.\nEntre la noche y las 13:00 hs de hoy vomitó aprox 6 veces, tiene apetito y busca comida. Revisación s/p, estado general bueno, CC 4/5. \N \N 1586 1534 \N 91 1277 {"studies": ["2"], "medications": [{"id_medicina": "641", "next_application_months": 0}, {"id_medicina": "1033", "next_application_months": 0}], "specialities": []} +1083 2025-07-02 19:33:06.690463+00 2025-07-02 19:33:06.690474+00 f t - - - - \N \N 364 429 \N 70 536 {"studies": [], "medications": [], "specialities": []} +817 2025-05-25 20:44:11.875951+00 2025-05-25 20:44:11.875964+00 f t . Desparasitación con moxidex plus. Tb se indica desparasitación EOG: normal. Vacunación anual \N \N 1448 1427 \N 92 1264 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +818 2025-05-25 20:46:13.65363+00 2025-05-25 20:46:13.653638+00 f t Vacunación anual . Vacunación anual EOG: Normal \N \N 1448 1428 \N 92 1262 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +819 2025-05-25 20:49:25.184058+00 2025-05-25 20:49:25.184066+00 f t Vacunación anual. Ovariectomia. Se indica estudios pre-quirúrgicos. Perfil general completo + orina y control cardíaco Vacunación anual. Tb se indica desparasitación con moxidex plus. EOG : Normal \N \N 1448 1429 \N 92 1263 {"studies": [], "medications": [{"id_medicina": "1148", "next_application_months": 12}, {"id_medicina": "1175", "next_application_months": 12}], "specialities": []} +820 2025-05-25 21:39:08.593654+00 2025-05-25 21:39:08.593667+00 f t Enfermedad renal? Lipidosis hepática?\nEnfermedad cardíaca.\nEnfermedad articular degenerativa. Dar prioridad al análisis de sangre y ecografía abdominal para dx el cuadro actual.\nLuego evaluación cardiológica y luego definir analgesia a largo plazo para EAD. Se pasa SF SC con la medicación detallada. Solicito estudios para definir tto a largo plazo y se indica alimentación húmeda para estimular la ingesta. Desde el lunes está con hiporexia y apetito selectivo, decaimiento, sigue teniendo algunas conductas que suele tener, pero no está normal. No tiene ninguna enfermedad diagnosticada, no toma medicación. Come proplan para gatos castrados. Nota que toma más agua, no está seguro si hace más pis. Sin vómitos ni diarrea.\nA la revisación buen estado general, CC 2/5, dh 5%, mucosas rosadas, boca en buen estado, tiene sarro en molares y muy sutil gingivitis, solo llama la atención una úlcera en relación a molar sup derecho, entre molar y comisura. Palpación abdominal s/p. Ausc torácica: soplo.\nAdemás me comentó que por momentos muestra sx de dolor osteoarticular. \N \N 1607 1550 \N 91 1282 {"studies": ["1", "8", "3"], "medications": [{"id_medicina": "641", "next_application_months": 0}, {"id_medicina": "1138", "next_application_months": 0}, {"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "1067", "next_application_months": 0}], "specialities": []} +821 2025-05-26 18:54:52.160244+00 2025-05-26 18:54:52.160256+00 f t Gastritis? Se deja orden de ecografía abdominal, se indica alimentar con dieta de bajos decididos por varios días. Se aplica ondansetron y ranitidina Los propietarios comentan que la perra está vomitando hace un par de días, y que ayer en uno de los vómitos escupió un carozo. Ahora está mucho mejor, la misma está con leve dolor abdominal, normotermica y normohidratada. \N \N 1471 1448 \N 1 1272 {"studies": [], "medications": [], "specialities": []} +822 2025-05-26 18:58:10.44302+00 2025-05-26 18:58:10.443029+00 f t Neoplasia en abdomen. Cuando la noté muy decaída o no esté comiendo contactarse con la plataforma. Se indica terminar el tratamiento antibiótico, se suma prednisolona, dipirona. Se hace una devolución de los estudios y se comenta la gravedad el caso, la posibilidad quirúrgica y el tratamiento médico. Se comentan los riesgos de cada uno y la propietaria elige realizar el tratamiento medico \N \N 1249 1276 \N 1 1270 {"studies": [], "medications": [], "specialities": []} +823 2025-05-26 19:02:47.201845+00 2025-05-26 19:02:47.201854+00 f t Piodermia? Neoplasia cutánea? Se indica continuar el tratamiento antibiótico vía oral y realizar limpieza de la herida. Se aplica dexametasona, amocixilina y dipirona. Se evidencia en una de las patas traseras una lesión ulcerada en forma de placa. Se realiza la tricotomía y desinfección de la herida. \N \N 1430 1411 \N 1 1260 {"studies": [], "medications": [], "specialities": []} +824 2025-05-26 19:08:28.924487+00 2025-05-26 19:08:28.924499+00 f t - - Se vacuna contra Rabia y sextuple Ego: S/P \N \N 1352 1354 \N 1 1244 {"studies": [], "medications": [], "specialities": []} +825 2025-05-26 19:11:10.314384+00 2025-05-26 19:11:10.314396+00 f t - - Se realiza la vacunación y corte de uñas. EOG: S/P \N \N 201 215 \N 1 1037 {"studies": [], "medications": [], "specialities": []} +826 2025-05-26 19:12:08.483293+00 2025-05-26 19:12:08.483305+00 f t - - - No se hizo la consulta porque la propietaria quería endocrinólogo a domicilio \N \N 725 849 \N 1 1050 {"studies": [], "medications": [], "specialities": []} +827 2025-05-26 20:18:29.321055+00 2025-05-26 20:18:29.321069+00 f t Gingivoestomatitis? Se explica que habría que hacer una revisación más detallada bajo sedación, destartraje y limpieza y posiblemente toma de muestras de mucosa oral y para pcr de calicivirus. Por lo que dejo solicitud de preqx: panel general más coagulograma y vif vilef x ic. Más cardiológico. Doy dexa, tramadol y tribiotic inyectable para favorecer la manipulación para medicar oral a partir de mañana: meloxivet gotas x 5 días, Amoxicilina con ácido clavulánico x 7 días. Lo ve comer su alimento, pero por lo que relata lo hace con dificultad tanto la prehensión como la masticación y la deglución. Nota pérdida de peso. El ánimo parece ser normal al igual que la hidratación. Me comenta verbalmente que le han hecho vif vilef y le dió negativo, no sé si pcr o ic. A la revisació se palpan lfn submaxilares aumentados de tamaño, resto de lfn normales. Presenta halitosis. Depósito de sarro en molares y gingivitis asociada en molares superiores bilateral. Además presenta lesiones ulcerativas en relación a los molares superiores, muy marcado del lado derecho, más leve del lado izquierdo. \N \N 1589 1537 \N 91 1283 {"studies": ["8", "3"], "medications": [{"id_medicina": "702", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +828 2025-05-28 00:41:40.275263+00 2025-05-28 00:41:40.275272+00 f t Infección del alveolo dentario? Se indica terminar el tratamiento con antibióticos y evaluar hacer placa de la mandibila Se aplica amoxicilina, dexametasona y dipirona. Se revisa el paciente y presenta una tumoracion en la mandíbula inferior del lado izquierdo. Presenta gingivitis severa y pérdida de piezas dentarias. El paciente está tomando agua y comiendo con normalidad. Ganglio regional a la tumoracion reactivo. \N \N 139 146 \N 1 1299 {"studies": [], "medications": [], "specialities": []} +851 2025-06-01 21:14:27.591221+00 2025-06-01 21:14:27.591231+00 f t Artrosis de cadera bilateral- lesión medular RP/citología tumoración en más, RX L-L y V-D cadera, ASC (perfil general completo+ orina). Continuar tomando analgésico Meloxicam 3 días más Mestizo de tamaño grande, de 14 años de edad, parálisis de miembros posteriores, apetito normal, defeca y orina normal, tumoración en más en muslo MPD. Dolor a la palpación de columna lumbo sacra. \N \N 1888 1775 \N 92 1335 {"studies": [], "medications": [], "specialities": []} +829 2025-05-28 01:39:05.831393+00 2025-05-28 01:39:05.831405+00 f t Dermartitis acral? Atopia? Después de terminar el tratamiento analizar la posibilidad de una inteconsulta con dermatología. (Los propietarios alimentan al perro con balanceado hipo alergénico, pero después le dan premios y bocaditos) Se indica comenzar con bactroprofen por 10 días. Y usar acralick en los miembros o zonas donde tiene lesiones. Se evidencia que entre los pulpejos d los 4 miembros tiene lastimado por lamerse. Presenta los pelos de los miembros oxidados por lamerse. Están medicando con apoquel pero nunca hicieron interconsulta con dermatología. \N \N 1464 1441 \N 1 1269 {"studies": [], "medications": [], "specialities": []} +830 2025-05-28 22:09:29.078935+00 2025-05-28 22:09:29.078945+00 f t Artritis Realizar terapias manuales en su hogar, como le fue indicado y de no poder realizarlo o de ser necesario se recomienda fisioterapia. Analgésico/antiinflamatorio específico para articulaciones (firocoxib 57mg) durante 7 días, junto con la comida, y a su vez iniciar el tratamiento condroprotector (colotrin palatable) de por vida. A su vez se agrega un protector gastrico (omeprazol) debido al antecedente de intolerancia a la medicación. Ayudando con terapia manual que puede ser realizado por la propietaria (paños tibios en zonas dolorosas y movimientos suaves). Motivo de consulta: decaimiento y dolor en patas traseras por artritis. La tutora manifiesta que la paciente fue tratada con anterioridad con una dosis de antiinflamatorio inyectable, el cual le resultó, pero le provocó síntomas gastrointestinales (diarrea) y estuvo sin comer. Ahora nuevamente presenta dolor en patas traseras pero volvió a comer. Se manifestó que los dolores son más intensos por la mañana y le cuesta mucho levantarse. \N \N 1643 1580 \N 93 1286 {"studies": [], "medications": [], "specialities": []} +831 2025-05-29 19:40:25.124408+00 2025-05-29 19:40:25.12442+00 f t Cistitis Control según evolución. Se aplicó también una dosis de penicilina (para cubrir posible etiología infecciosa dado el contexto). Se indica meloxicam en gotas apartir de mañana y ohm en pasta, por no menos de 7 días. Le cuesta orinar, lo ve ir mucho a las piedras, cree haber visto algo de orina pero vive con otro gato y no tiene la certeza que haya sido él. Se mudaron hace unos días de una casa con hábitos outdoor a un dpto sin acceso al exterior.\nAl llegar al domicilio lo encontré en la bandeja sanitaria en posición de orinar, con vocalización por molestia, dejó piedras apenas húmedas al salir. Paciente alerta, sin vómitos ni diarrea, apetito conservado, hoy comió con normalidad. EOG s/p palpación abdominal: vejiga en repleción moderada, consistencia blanda, se vacía por compresión. La tutora tiene dificultades para su locomoción, por lo que está un tanto limitada para asistirlo. Se explica que si se obstruye es una urgencia con riesgo de vida. \N \N 1807 1714 \N 91 1318 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +832 2025-05-30 15:35:07.766019+00 2025-05-30 15:35:07.766034+00 f t Cce Se recomienda realizar una citología y recomiendo hacer una consulta para alimentación natural Se sugiere realizar una citología para descartar neoplasia de celular las escamosas, sin tratamiento empírico Presenta manchas en plano nasal y hace unos meses tuvo unas lesiones costrosas en ambas orejas \N \N 1682 1605 \N 21 1312 {"studies": [], "medications": [], "specialities": []} +833 2025-05-30 15:39:24.289249+00 2025-05-30 15:39:24.289258+00 f t Distress respiratorio leve Consulta presencial . La tutora me comenta que alma jadea frecuentemente y ella me plantea que en ocasiones ha tenido un estornudo inverso, A lo cual le comento que es difícil de diagnosticarla mirándola a través de la cámara, me comenta que la ve mad activa, y sigue con la dieta pautada. Que ni bien pueda hará una consulta presencial \N \N 837 942 \N 21 1241 {"studies": [], "medications": [], "specialities": []} +834 2025-05-30 17:06:00.578621+00 2025-05-30 17:06:00.578635+00 f t Vavunacion anual Controlar la alimentación para yudar a disminuir el peso. Por alimento reducido en calorías o el satiety de royal canin Ninguno Se realizo vacunacion anual con Vacuna antirrábica y séxtuple con leptospirosis. Se realiza extracción de sangre para perfil general completo y tiroideo completo. Se observa obesidad. Se indico mejorar la alimentación por alimento reducido en calorías. \N \N 1811 1715 \N 97 1321 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1170", "next_application_months": 12}], "specialities": []} +835 2025-05-30 17:09:30.774564+00 2025-05-30 17:09:30.774573+00 f t Vacunacion anual.\nHipotiroidismo? Se recomienda mejorar dieta para descenso de peso con algún alimento balanceado reducido en calorías o satiety de royal canin Ninguno Se realiza vacunacio. Anual con vacuna abtirrabica y sextuple con leptospirosis. Se realiza extracción de sangre completo y tiroides completo. Se indica realizar dieta para disminuir de peso. Se encuentran ci. Score corporal 4 (sobrepeso) \N \N 1811 1716 \N 97 1322 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1170", "next_application_months": 12}], "specialities": []} +836 2025-05-30 22:31:04.917588+00 2025-05-30 22:31:04.917602+00 f t Consulta clínica Realizar el plan de vacunación correspondiente Ninguno Se realizo control clínico de rutina. Auscultación cardíaca y respiratoria sin particularidades. Hace unos meses se realizo exodoncia de molares y algunas piezas dentaria más.\nSe observo la zona de barbilla presentándose en la consulta normal con ausencia de sarpullido qué había manifestado en la semana. \nSe explica plan de vacunación anual. \N \N 1766 1679 \N 97 1305 {"studies": [], "medications": [], "specialities": []} +837 2025-05-30 23:09:46.738438+00 2025-05-30 23:09:46.738451+00 f t Linfoma - La medicación la tienen los tutores. (Cerenia + Tribiotic + Ranitidina + Dexametasona) Paciente con diagnóstico de Linfoma.\nAcudo al domicilio únicamente que para aplicar la medicación indicada por su veterinario de cabecera. \nLa medicación la tienen los tutores. (Cerenia + Tribiotic + Ranitidina + Dexametasona) \N \N 160 169 \N 89 1044 {"studies": [], "medications": [], "specialities": []} +838 2025-05-30 23:13:47.004577+00 2025-05-30 23:13:47.004591+00 f t Vacunación anual + desparasitación La tutora se mudará recientemente. Se dieron recomendaciones en cuanto a la protección de ventanas y balcones. Y para la adaptación al nuevo hogar - EOG SP\nVacunación anual y desparasitación (internos + externos) \N \N 1156 1211 \N 89 1203 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}, {"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "201", "next_application_months": 0}, {"id_medicina": "48", "next_application_months": 0}], "specialities": []} +839 2025-05-30 23:15:09.075834+00 2025-05-30 23:15:09.075844+00 f t Vacunación anual Revacunar al año. - EOG SP\nVacunación anual. \N \N 1271 1296 \N 89 1213 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}, {"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +1652 2025-09-04 18:49:51.205545+00 2025-09-04 18:49:51.205554+00 f t . . . . \N \N 7820 6434 \N 90 2373 \N +840 2025-05-30 23:17:31.868009+00 2025-05-30 23:17:31.868032+00 f t "Kibo" no pudo ser revisado debido a que estaba muy asustado, mostró signos de agresividad por miedo y estrés. Se escondió. Se recomienda consultar dentro de un mes para que tenga un mayor período de socialización. Se recomienda administración de gabapentina previo a la consulta veterinaria. "Kibo" no pudo ser revisado debido a que estaba muy asustado, mostró signos de agresividad por miedo y estrés. Se escondió. "Kibo" no pudo ser revisado debido a que estaba muy asustado, mostró signos de agresividad por miedo y estrés. Se escondió. \N \N 1271 1295 \N 89 1212 {"studies": [], "medications": [], "specialities": []} +841 2025-05-30 23:19:08.271126+00 2025-05-30 23:19:08.271135+00 f t - - Telemedicina Telemedicina.\nEl tutor relata incoordinación repentina de "Dinart". Es trasladado a la guardia e internado. Consula por telemedicina para conocer signos de alerta para volver a la guardia. \N \N 1605 1548 \N 89 1279 {"studies": [], "medications": [], "specialities": []} +842 2025-05-30 23:23:03.669869+00 2025-05-30 23:23:03.669878+00 f t Leve otitis oído izquierdo. Parasitosis. \nRefuerzo vacuna séxtuple. - Se suministró a la tutora "Otovier limpia-orejas" y "Otovier NF". Se dieron las recomendaciones para su administración.\nLa tutora contaba con "Total full suspensión" así que se brindó un esquema de desparasitación para reforzar en los próximos días. EOG SP, leve secreción amarronada en oído izquierdo. La tutora relata que "DDL" está defecando con parásitos. \N \N 812 923 \N 89 1288 {"studies": [], "medications": [{"id_medicina": "1174", "next_application_months": 3}], "specialities": []} +843 2025-05-30 23:29:51.964522+00 2025-05-30 23:29:51.964531+00 f t Asma felino - Se indica Rx de tórax LL y DV. \nLaboratorio: PGC + Orina. Paciente de difícil revisación. Tutora relata dx de asma felino, cuenta con las rx y el informe. Quiere hacer un seguimiento. \N \N 353 415 \N 89 1184 {"studies": [], "medications": [], "specialities": ["74", "76", "6"]} +844 2025-05-31 15:31:15.792853+00 2025-05-31 15:31:15.792867+00 f t Vacunación anual (séxtuple y rabia)\nSarcoma ? Realizar los estudios indicados por la oncólogo: rx LL y VD de tórax, ecografía abdominal y ecografía de la cicatriz de sarcoma. (El tutor tiene las órdenes realizadas por la dra en enero) No hay tto. Consulta para vacunación anual. Me cuenta que fue operada de una masa en MPD, x las ordenes que me muestra parece ser un sarcoma (va a buscar htp para pasarlo) hizo cta onco y le indicó estudios. No los hizo xq se estresa mucho al salir y se pone mal con otros perros, quiere comenzar a hacer en domicilio lo que se vaya pudiendo. Me consulta por la vacuna de tos de las perreras, explico que al ser primo vacunación son dos dosis separadas x 30 días y debe dejar pasar al menos 20 días luego de la aplicación de hoy. \N \N 1828 1728 \N 91 1324 {"studies": ["1"], "medications": [{"id_medicina": "1154", "next_application_months": 12}], "specialities": []} +846 2025-05-31 15:41:06.134418+00 2025-05-31 15:41:06.134428+00 f t Vacunación anual (séxtuple y rabia)\nNeoplasia? (Va a buscar el histopatológico y mandarlo) Realizar los estudios indicados por la oncóloga: rx LL y VD de tórax, ecografía abdominal, ecocardiograma y electrocardiograma, y perfil general de sangre. (El tutor tiene las órdenes realizadas x la dra en enero, AGREGAR A ESO ELECTROCARDIOGRAMA, q el la orden no está aclarado, pide solo ecocardio). No hay tto. Consulta por vacunación anual. Además me comenta tres situaciones:\n1) fue operada por neo en MPI (no tiene a mano el histopatológico, lo va a buscar) y fue atendida por oncóloga en enero que solicitó estudios y aún no pudo realizarlos. Actualmente parece estar recidivando. Quiere hacer todo a domicilio, cargo luego los estudios solicitados para que pueda ir realizando.\n2) Presenta una formación verrucosa en piel entre costillas y flanco derecho. Tomo muestra de citología.\n3) Tuvo al menos 3 episodios que por el relato parecen ser síncopes. Me cuenta que han hecho estudios cardiológicos que le dieron bien (no tiene informes a mano), a la auscultación hay soplo y arritmia sinusal respiratoria? Va a hacer nuevamente ecocardio y electro.\nTambién hablamos de vacuna de tos de las perreras: por ser primo vacunación se indican 2 dosis separadas x 30 días al menos 20 días después de esta vacunación. \N \N 1828 1729 \N 91 1325 {"studies": ["1", "8", "3"], "medications": [{"id_medicina": "1154", "next_application_months": 12}], "specialities": []} +845 2025-05-31 15:41:06.134036+00 2025-05-31 15:41:06.134048+00 f t Vacunación anual (séxtuple y rabia)\nNeoplasia? (Va a buscar el histopatológico y mandarlo) Realizar los estudios indicados por la oncóloga: rx LL y VD de tórax, ecografía abdominal, ecocardiograma y electrocardiograma, y perfil general de sangre. (El tutor tiene las órdenes realizadas x la dra en enero, AGREGAR A ESO ELECTROCARDIOGRAMA, q el la orden no está aclarado, pide solo ecocardio). No hay tto. Consulta por vacunación anual. Además me comenta tres situaciones:\n1) fue operada por neo en MPI (no tiene a mano el histopatológico, lo va a buscar) y fue atendida por oncóloga en enero que solicitó estudios y aún no pudo realizarlos. Actualmente parece estar recidivando. Quiere hacer todo a domicilio, cargo luego los estudios solicitados para que pueda ir realizando.\n2) Presenta una formación verrucosa en piel entre costillas y flanco derecho. Tomo muestra de citología.\n3) Tuvo al menos 3 episodios que por el relato parecen ser síncopes. Me cuenta que han hecho estudios cardiológicos que le dieron bien (no tiene informes a mano), a la auscultación hay soplo y arritmia sinusal respiratoria? Va a hacer nuevamente ecocardio y electro.\nTambién hablamos de vacuna de tos de las perreras: por ser primo vacunación se indican 2 dosis separadas x 30 días al menos 20 días después de esta vacunación. \N \N 1828 1729 \N 91 1325 {"studies": ["1", "8", "3"], "medications": [{"id_medicina": "1154", "next_application_months": 12}], "specialities": []} +847 2025-05-31 19:04:28.232666+00 2025-05-31 19:04:28.232676+00 f t Micosis con posteriores complicaciones bactetiana? Se recomienda una vez terminado el tratamiento hacer interconsulta nuevamente con un dermatólogo para evaluar si hay que corregir la dosis de apoquel. Se indica hacer tratamiento con amoxicilia, prednisolona en dosis decreciente, baños con fórmula macdonald e itraconazol. Cuando se lo visita al paciente, se evidencia que tiene bastante olor como a “queso” y alopecias en varias zonas del cuerpo. Con algunas lesiones que parecían que estaban contaminadas. Reflejo pruriginoso (+) \N \N 896 1006 \N 1 1137 {"studies": [], "medications": [], "specialities": []} +848 2025-05-31 19:38:42.30969+00 2025-05-31 19:38:42.309705+00 f t Urolitiasis? Infección urinaria? También según la evolución y resultados se evalúa tratamiento. Según los resultados de ecografía, se planificará el cultivo y antibiograma o cambio de dieta. Se comunica con la plataforma la propietaria y comenta que está con estrías de orina con sangre, y se le pide hacer un AOC, luego con los resultados se programa una ecografía de abdomen por posible urolitiasis. (Presencia de cristales de oxalato de calcio, sangre, proteinuria, leucocitos) cómo estuvo con ATB. \N \N 896 1006 \N 1 1311 {"studies": [], "medications": [], "specialities": []} +849 2025-06-01 15:34:29.212415+00 2025-06-01 15:34:29.212429+00 f t . . . Se canceló el turno \N \N 834 939 \N 92 1110 {"studies": [], "medications": [], "specialities": []} +852 2025-06-02 01:14:34.400538+00 2025-06-02 01:14:34.40055+00 f t Micosis? Desorden endócrino? Cultivo micológico. Se toman pelos como muestra para cultivo micológico. Consulta por depilaciones varias. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades \n Auscultación cardíaca normal. \N \N 1864 1756 \N 70 1328 {"studies": ["3"], "medications": [], "specialities": []} +853 2025-06-02 01:23:11.828348+00 2025-06-02 01:23:11.828361+00 f t Se revisa para ver si hay lesiones post-pelea con otro canino. Administrar meloxivet 3 días seguidos si la renguera de MAD no revierte en 24 hs. Meloxivet gotas 20 gotas x día. Consulta x renguera MAD. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal normal. Auscultación cardíaca normal. \N \N 1937 1812 \N 70 1339 {"studies": [], "medications": [{"id_medicina": "869", "next_application_months": 0}], "specialities": []} +854 2025-06-02 01:37:09.584064+00 2025-06-02 01:37:09.584077+00 f t Vómitos x comer condimento para humano y dermatitis miliar en Dieta con pollo hervido y arroz blanco. Prednisol gotas 5 gotas x día x 5 días. Luego 3 gotas x día x 5 días más. Continúa con 1 gota x día x 5 días más y finaliza con 1 gota cada 48 horas x una semana. Consulta x vómitos reiterados de 24 hs de evolución. EOG normal. No sé puede realizar otra maniobra por la agresividad del paciente. Aparentemente comió un condimento peruano que robó a la tutora. Además presenta pequeños nódulos en ventral del cuello y depilación en arco superciliar izquierdo . \N \N 775 896 \N 70 1336 {"studies": [], "medications": [], "specialities": []} +855 2025-06-02 18:51:09.359511+00 2025-06-02 18:51:09.359522+00 f t - Tratar de evitar las situaciones de estrés para su mascota. Se indica hasta cuándo continuar con la alimentación indicada y los cuidados que tiene que manejar. Se realiza una nueva visita para el control del paciente y para el retiro de sonda \N \N 670 795 \N 1 1008 {"studies": [], "medications": [], "specialities": []} +856 2025-06-02 19:00:14.596883+00 2025-06-02 19:00:14.596896+00 f t Estrés? Se indica comenzar con en requerimiento ambiental, si hace falta se comienza con medicación. Se comenta al pripietario las señales de alarma que tiene que tener en cuenta a la hora de notarlo molesto o con alguna patología por estrés. Propietario comenta que nota a su mascota muy estresada, con algunos cambios de comportamiento. \N \N 669 792 \N 1 995 {"studies": [], "medications": [], "specialities": []} +857 2025-06-02 19:02:29.209227+00 2025-06-02 19:02:29.209237+00 f t Irritación de las vías urinarias por sonda. Control de la sonda y collar isabelino Se comenta cuando se tendría que retirar la sonda. Cómo evaluar y controlar la permeabilidad de la misma. Se revisa el animal se comenta cómo es el cuadro y se suma medicación para que esté más aliviado, se comenta el porqué de la orina con estrías de sangre. \N \N 670 795 \N 1 997 {"studies": [], "medications": [], "specialities": []} +858 2025-06-02 19:10:12.040368+00 2025-06-02 19:10:12.040381+00 f t Disnea inspiratoria severa. - Se realiza la eutanasia. Cuando se realiza la visita se nota que el paciente no estaba en un estado como para una visita domiciliaria, estaba en estado de agonía con una disnea inspiratoria severa, se comenta a los propietarios el cuadro y ellos comenta que quieren dormirlo. \N \N 665 786 \N 1 989 {"studies": [], "medications": [], "specialities": []} +859 2025-06-02 19:13:19.946594+00 2025-06-02 19:13:19.946608+00 f t - - - Se realiza la visita de rutina se controla al paciente, EOG : S/P, se vacían las glándulas y se indica realizar la fisioterapia para avanzar con las incontinencia. \N \N 123 128 \N 1 971 {"studies": [], "medications": [], "specialities": []} +860 2025-06-02 19:23:12.988282+00 2025-06-02 19:23:12.988295+00 f t - Si no evoluciona de forma favorable hacer interconsumta con oftalmologia. Se indica hacer un tratamiento con colirio con esteroides. Se evalúa al paciente y la única particularidad que encuentro es una epifora en forma unilateral. Se lo encuentra, normotermico y normohidrado. A la palpación abdominal no se evidencia particularidades, se realiza prueba de fluoresceina la cual resulta negativa para ambos ojos. Solamente una leve irritación conjuntival. \N \N 650 766 \N 1 961 {"studies": [], "medications": [], "specialities": []} +861 2025-06-02 19:29:52.120015+00 2025-06-02 19:29:52.120024+00 f t Conjuntivitis complicada con blefaritis. Recortar los pelos y que no se le metan en los ojos. Se indica usar colirio ATB con esteroides y crema cicatrizante en el párpado con cuidado que no le entre en contacto con la conjuntiva. Se evidencia blefaritis en el ojo izquierdo, con irritación conjuntival. Fluoresceina(-) \N \N 699 816 \N 1 1016 {"studies": [], "medications": [], "specialities": []} +862 2025-06-02 19:38:07.352528+00 2025-06-02 19:38:07.35254+00 f t - - - Se realiza el\nControl clínico del animal con el drenaje de las glándulas. EOG: S/P \N \N 123 128 \N 1 514 {"studies": [], "medications": [], "specialities": []} +863 2025-06-02 20:09:13.633374+00 2025-06-02 20:09:13.633383+00 f t Cardiopatia compensada? Sugiero consulta cardiológica y asesoría nutricional y programar un destartraje Indicó desparasitar con aprax comprimidos 2 días seguidos cada 20 días por 4 veces consecutivas, Y luego reanudar vacunas Peso 10 kg, La tutora me consulta porque el día anterior la vio respirar agitada. Eog: Normal mucosas rosadas abundantes sarro dental sonidos cardíacos apagados, abdomen ok, sobrepeso moderado \N \N 1794 1705 \N 21 1314 {"studies": [], "medications": [], "specialities": []} +864 2025-06-02 20:45:17.728426+00 2025-06-02 20:45:17.728435+00 f t Dermatitis alérgica? Granuloma eosinofilico? Acné del mentón? - Se indica pasar cremas cicatrizantes en las zonas de las lesiones, si no responde en forma favorable evaluar de realizar tratamiento antibiótico vía oral. Se revisa el paciente al parecer las zonas donde se lame y tiene irritado coincide con un dermograma de estrés, de todos modos se indica que no use bebedero/comedero de plástico por posible alergia. \N \N 675 798 \N 1 999 {"studies": [], "medications": [], "specialities": []} +865 2025-06-02 20:48:12.532227+00 2025-06-02 20:48:12.532236+00 f t - - - Se hace una devolucion de los resultados y se indica hacer fisioterapia para la parte de las vías urinarias bajas. La otra parte de los resultados está sin particularidades. \N \N 123 128 \N 1 1033 {"studies": [], "medications": [], "specialities": []} +866 2025-06-02 20:54:22.531602+00 2025-06-02 20:54:22.531616+00 f t - - Se vacuna con sextuple y rabia EOG: S/P \N \N 727 851 \N 1 1054 {"studies": [], "medications": [], "specialities": []} +867 2025-06-02 21:04:21.851009+00 2025-06-02 21:04:21.851019+00 f t Cistitis? Se indica hacer un examen de orina completo. Se deja protocolo en duplicado para el análisis. Se indica realizar tratamiento antibiótico, analgésico y con terazosina, cambiar a alimento urinario y suplementar con ciaticalm. Al revisarlo se lo nota con dolor abdominal, la vejiga se encuentra con muy poco contenido y está orinando con estrías de sangre. \N \N 1940 1815 \N 1 1337 {"studies": [], "medications": [], "specialities": []} +1084 2025-07-02 19:37:19.743217+00 2025-07-02 19:37:19.743228+00 f t - - - - \N \N 2672 2369 \N 84 1549 {"studies": [], "medications": [], "specialities": []} +869 2025-06-02 21:11:27.946075+00 2025-06-02 21:11:27.946084+00 f t Piodermia exudativa? Malassezia? Se indica ser muy riguroso con el tratamiento para lograr tener éxito con el paciente. Se indica hacer tratamiento antibiótico, antiinflamatorios, antimicoticos y baños periódicos con shampo medicados. Pacientes con grandes lesiones por varias partes del cuerpo. Mucho olor rancio en todo el manto y mucho prurito. \N \N 462 548 \N 1 1300 {"studies": [], "medications": [], "specialities": []} +870 2025-06-02 21:13:48.891648+00 2025-06-02 21:13:48.891657+00 f t - - Eutanasia Presenta un carcinoma de células escamosas que está sumamente avanzado. \N \N 1646 1583 \N 1 1284 {"studies": [], "medications": [], "specialities": []} +871 2025-06-02 21:20:55.225116+00 2025-06-02 21:20:55.225129+00 f t Disbacteiosis? - Se realiza tratamiento antibiótico y antiinfamatorio. Se indica realizar dieta de bajos residuos. Y continuar el tratamiento vía oral. También se indica el uso de crema para la irritación del perineo Comenta la propietaria que el paciente estuvo comiendo comida del perro y desde ese momento comenzó a tener episodios de diarrea. Presenta un poco de molestia abdominal y dolor en la zona del perineo. \N \N 432 559 \N 1 1245 {"studies": [], "medications": [], "specialities": []} +872 2025-06-02 21:25:41.271271+00 2025-06-02 21:25:41.271282+00 f t Estrés? Hacerla jugar lo más que se pueda. Se indica sumar alimentos que tengan triptofano, aceite de canabis y hacer enrequecimento ambiental. Al revisar el animal se evidencia que las alopecias coinciden con el dermograma de estrés (la cara interna de ambos muslos) Los propietarios comentan que se mudaron hace poco. \N \N 47 48 \N 1 1156 {"studies": [], "medications": [], "specialities": []} +873 2025-06-02 21:26:45.353669+00 2025-06-02 21:26:45.353683+00 f t - Controlar la gingivitis que por el momento es leve. Se vacuna con triple felina y antirabica EOG: S/p \N \N 1941 1816 \N 1 1338 {"studies": [], "medications": [], "specialities": []} +874 2025-06-02 21:27:48.170936+00 2025-06-02 21:27:48.170945+00 f t Vejiga nefrogenica. - - Se demuestra a la poroietaria la maniobra del vaciado de la vejiga. \N \N 876 988 \N 1 1134 {"studies": [], "medications": [], "specialities": []} +875 2025-06-02 21:29:05.36202+00 2025-06-02 21:29:05.362028+00 f t - - Vacunación de rabia y triple felina EOG:S/p \N \N 742 865 \N 1 1064 {"studies": [], "medications": [], "specialities": []} +876 2025-06-02 21:31:32.327794+00 2025-06-02 21:31:32.327804+00 f t - - Se vacuna con triple felina y rabia EOG : S/p \N \N 742 866 \N 1 1065 {"studies": [], "medications": [], "specialities": []} +877 2025-06-02 21:40:52.321368+00 2025-06-02 21:40:52.321377+00 f t - - Se vacuna con sextuple y antirabica EOG: S/P \N \N 752 877 \N 1 1076 {"studies": [], "medications": [], "specialities": []} +878 2025-06-02 23:42:13.070667+00 2025-06-02 23:42:13.070678+00 f t Discopatia lumbar? Evitar que suba sillones, escaleras y camas. Se indica hacer placa de columna. Y se indica si lo nota con malestar hacer una terapia analgésica de rescate con firocoxib Los propietarios comentan que lo notan molesto, que le cuesta saltar y subir a sillones. Al revisarlo se evidencia dolor en ma zona lumbar. No presenta disminución de los reflejos del miembro posterior. \N \N 207 224 \N 1 1024 {"studies": [], "medications": [], "specialities": []} +879 2025-06-02 23:53:40.63887+00 2025-06-02 23:53:40.638879+00 f t - Limpieza de la herida en forma periódica. Se pasa a medicación vía oral para que se le haga un poco más económico. Se reliza medicación en forma inyectable. \N \N 797 912 \N 1 1098 {"studies": [], "medications": [], "specialities": []} +880 2025-06-03 00:04:40.42169+00 2025-06-03 00:04:40.421702+00 f t Neo en abdomen? Se toma muestra de sangre y se indica ecografía abdominal. Se medica con sulfatrimetropin. Dipirona, tramadol, ranitidina, ondansetron y complejo B. Se nota decaimiento, normotermico, normohidrarado, dolor abdominal marcado. Se evidencia pérdida ponderal generalizada. Se comenta que posiblemente puede ser neoplasico. \N \N 991 1088 \N 1 1166 {"studies": [], "medications": [], "specialities": []} +881 2025-06-03 00:07:12.761182+00 2025-06-03 00:07:12.761191+00 f t - - Se indica controlar, si llega a manifestar molestia nuevamente lo ideal sería filmarla. Al revisar el animal no se evidencia molesta en ninguna de las patas. \N \N 735 859 \N 1 1061 {"studies": [], "medications": [], "specialities": []} +882 2025-06-03 00:15:03.352865+00 2025-06-03 00:15:03.35288+00 f t Otitis? Cada vez que lo bañe ponerle un algodón en los oídos para que no le entre humedad. Se realiza limpieza y se indica hacer limpiezas periódicas y aplicación de quimioterapico para controlar la infección. Al revisar los conductos auriculares se evidencia mucho contenido en ambos oídos. \N \N 719 838 \N 1 1036 {"studies": [], "medications": [], "specialities": []} +883 2025-06-03 00:16:44.494603+00 2025-06-03 00:16:44.494611+00 f t - - Se realiza vacunación con triple felina y antirabica Eog: s/p \N \N 756 882 \N 1 1079 {"studies": [], "medications": [], "specialities": []} +884 2025-06-03 00:21:00.596269+00 2025-06-03 00:21:00.596279+00 f t Asma? Controlar. Se vacuna contra triple felina y antirabica. Eog: s/p\nLa propietaria comenta que de vez en cuando tose. Se indica controlar y retirar el uso de aromatizantes y desodorante de ambientes. \N \N 811 922 \N 1 1097 {"studies": [], "medications": [], "specialities": []} +885 2025-06-03 00:32:26.639115+00 2025-06-03 00:32:26.639127+00 f t - - - Se cancela el turno cuando estoy en la puerta porque muere el paciente. \N \N 897 1007 \N 1 1138 {"studies": [], "medications": [], "specialities": []} +886 2025-06-03 00:43:52.835314+00 2025-06-03 00:43:52.835323+00 f t Gastroenteritis? Se toma muestra de sangre. Se India hacer una dieta de bajos residuos. Según la evolución solicitar o no ecografía de abdomen. Se aplica silfatrimetropin, dipirona, tramadol, diáfin. Paciente decaído, con hipertermia y dolor abdominal, la propietaria comenta que está con diarrea. \N \N 758 885 \N 1 1081 {"studies": [], "medications": [], "specialities": []} +929 2025-06-10 15:14:01.035149+00 2025-06-10 15:14:01.035159+00 f t no no no vacunación anual \N \N 1798 1710 \N 94 1315 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +934 2025-06-11 20:05:57.731146+00 2025-06-11 20:05:57.731158+00 f t . . Se indica pipeta meltra para parasitos internos y en 15 dias copro. Imposible revisar, agresivo. Rescatado hace 2 meses, estaba bajo de peso. No fue desparasitado. Aplico triple felina y atr. \N \N 2387 2154 \N 80 1416 {"studies": [], "medications": [], "specialities": []} +936 2025-06-11 23:03:24.011127+00 2025-06-11 23:03:24.011165+00 f t Corte de uñas Ninguna Ninguno Se encuentra alerta y activo. Auscultación. Pulmonar y cardíaca sin particularidades \N \N 1811 1716 \N 97 1397 {"studies": [], "medications": [], "specialities": []} +942 2025-06-12 22:17:12.510319+00 2025-06-12 22:17:12.510333+00 f t Vacunación anual . . EOG: Normal \N \N 2569 2298 \N 92 1449 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +887 2025-06-03 00:47:08.526454+00 2025-06-03 00:47:08.526463+00 f t Otitis bilateral.\nVacunación. Control según evolución. Hablamos de programar dentro de no mucho una limpieza de dientes (cuando esté más encarado el motivo del descenso de peso) xq presenta sarro sobre todo en molares superiores. Otovier classic 6 gotas cada 8 horas x 7 días en ambos oídos. Consulta para vacunación anual. El paciente tuvo un descenso de peso en el último tiempo que se viene estudiando, come alimento gastrointestinal y algo de comida natural cocida. A pesar del bajo peso el estado general es bueno. Tiene hipertrofia del septo interventricular y está medicado con cardiotenol, controlado x cardiólogo. Me comenta la tutora de molestia en oído, agacha oreja y se muestra molesto a la manipulación, externamente no se ve secreción pero a la revisación del conducto se encuentra inflamación bilateral del conducto auditivo y escasa secreción clara. \N \N 1009 1118 \N 91 1342 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +888 2025-06-03 00:51:10.662003+00 2025-06-03 00:51:10.662016+00 f t Vacunación anual. Sin recomendaciones específicas. Vacunación. Consulta por vacunación anual. Paciente joven sin patologías previas. Buen estado general, EOG s/p. \N \N 1009 1325 \N 91 1343 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +889 2025-06-03 00:57:25.255076+00 2025-06-03 00:57:25.255089+00 f t Parecía, compresión medular? Indiqué pedir historia clínica con los últimos estudios realizados para evaluar si requiere solicitar más estudios o repetir. De acuerdo a eso y a evolución de la paciente, haremos interconsulta con especialista si lo requiere, y hablamos de posibilidad de fisioterapia/acupuntura. Se indica tramadol oral a partir de mañana. No sé puede levantar, no puede apoyar normalmente MPD. Tiene antecedentes de problemas de cadera, han hecho estudios en la veterinaria donde se atendían pero no los tienen actualmente en su poder.\nDolor en columna toraco lumbar, propiocepción negativa en MPD, reflejo de retirada presente, sensibilidad presente. (MPI normal). \N \N 2032 1886 \N 91 1353 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "840", "next_application_months": 0}], "specialities": []} +890 2025-06-03 01:09:31.748883+00 2025-06-03 01:09:31.748897+00 f t IRC - Se procede a euranasiar Se revisa a la paciente que tiene historial de IRC, tiene una pérdida ponderal muy importante, se comenta la gravedad del cuadro y la propietaria decide dormirla. \N \N 743 867 \N 1 1067 {"studies": [], "medications": [], "specialities": []} +891 2025-06-03 01:13:40.445484+00 2025-06-03 01:13:40.445493+00 f t - - Se realiza vacunación con triple felina y antirabica Eog: s/p \N \N 718 837 \N 1 1035 {"studies": [], "medications": [], "specialities": []} +892 2025-06-03 11:20:17.039411+00 2025-06-03 11:20:17.039422+00 f t Control periodico con corte de uñas. Dietas separadas. No mezclar natural y procesado. Ninguno Cambio de dieta; sin alteraciones.\nBuen estado general, saludable. \N \N 340 403 \N 68 1274 {"studies": [], "medications": [], "specialities": []} +893 2025-06-03 17:25:02.924781+00 2025-06-03 17:25:02.924794+00 f t Vacunación. Refuerzo de séxtuple en 30 días. Vacunación. Consulta por vacunación anual. Buen estado general, no tiene patologías previas, no toma medicación. Se aplican vacunas e indico otra dosis se séxtuple al mes xq hace varios años no recibe. \N \N 1854 1748 \N 91 1326 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1168", "next_application_months": 1}], "specialities": []} +894 2025-06-03 18:32:32.289389+00 2025-06-03 18:32:32.289398+00 f t Cistitis Control según evolución. Dexa y tribiotic inyectable. Evolución favorable, no va tantas veces a las piedras, orina mejor, pero no le pudo dar la medicación oral, me pide repetir inyectable. \N \N 1807 1714 \N 91 1347 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +895 2025-06-03 19:52:48.113669+00 2025-06-03 19:52:48.113679+00 f t Vacunación anual.\nCardiopatía?\nEnf periodontal leve.\nConstipación. s/r específicas. Se indica comenzar con felilax para evitar que avance la constipación. Se indica estudios preqx y destartraje y limpieza de dientes. Consulta por vacunación anual. Además agendó para pelarla xq tiene muchos nudos en el dorso, muy pegados a la piel. Se le indicó gabapentina 2 hs y medio antes, se pudo hacer todo.\nEOG s/p. EOP: soplo cardíaco y abundante MF en abdomen (me cuenta que ya le ha pasado). Depósito de sarro notable en molares superiores. \N \N 2028 1883 \N 91 1351 {"studies": ["8", "3"], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +273 2025-01-15 13:36:08.163+00 2025-01-15 13:36:08.163+00 f t Posible alergia cutánea\r\nRecomendación de control cardiológico y ecografía abdominal Ecocardiograma y ECG\r\nEcografía abdominal para control esplénico preventivo (control del bazo) dado tamaño y edad Penicilina estrepto 2ml SC Dermatitis leve, alopecia leve y prurito flanco derecho\r\nArritmia y pulso asincrónico con buena perfusión \N 266 335 118 68 406 \N +430 2025-02-11 18:51:16.12155+00 2025-02-11 18:51:16.121557+00 f t Diagnóstico previo de esteatosis hepática.\r\nSeguimiento cardiológico en curso con especialista veterinario correspondiente.\r\nSe mantiene diagnóstico de hígado graso. Control preventivo anual con ecografía abdominal y análisis de sangre en febrero de 2026, salvo que presente síntomas antes.\r\nSeguir las indicaciones del especialista en cardiología para los controles específicos. Se recomienda descenso de peso como parte del manejo de la enfermedad hepática. Paciente con diagnóstico de hígado graso. Sin otros hallazgos relevantes en el examen físico. \N 266 335 114 68 593 \N +896 2025-06-03 23:09:27.014231+00 2025-06-03 23:09:27.01424+00 f t Complejo respiratorios/ rinitis Ver evolucion Amoxicilina clavulanico 400mg/5ml suspensión, 08 ml cada 12 hs por 6 días.\nPrednisol a dosis decreciente Paciente con lagrimeo ocular. Al momento de la consulta comienza con estornudos sin secreción, se realiza auscultación pulmonar y nonse aprecia ruidos, buena entrada de aire y a nivel cardíaco sin particularidades. \N \N 416 495 \N 97 1350 {"studies": [], "medications": [{"id_medicina": "705", "next_application_months": 0}], "specialities": []} +921 2025-06-09 23:59:12.210901+00 2025-06-09 23:59:12.21091+00 f t Vacunas anual Ninguna Vacunas anuales Se realiza consulta clínica para realizar vacunacion anual. Auscultación pulmonar y cardíaca sin particularidades \N \N 2230 2039 \N 97 1389 {"studies": [], "medications": [{"id_medicina": "1157", "next_application_months": 12}, {"id_medicina": "1154", "next_application_months": 12}], "specialities": []} +1085 2025-07-02 19:39:46.681668+00 2025-07-02 19:39:46.681676+00 f t - - - - \N \N 123 128 \N 84 925 {"studies": [], "medications": [], "specialities": []} +902 2025-06-05 01:08:20.308666+00 2025-06-05 01:08:20.308678+00 f t Plan de vacunación del cachorro Próxima el 2 de julio. Séxtuple y var Plan de vacunación y desparasitacion del cachorro.. Se ha desparasitado con el producto que dejó el Dr PALLADINO. EOG: NORMAL \N \N 938 1042 \N 92 1354 {"studies": [], "medications": [{"id_medicina": "1159", "next_application_months": 3}], "specialities": []} +923 2025-06-10 14:59:26.506746+00 2025-06-10 14:59:26.506758+00 f t infeccioso limpieza de herida con tricotomía y desinfectante spectryl 20 comp \n2 comp cada 12 hs , x 1 semana \nalgen 60 comp \n2 cada 12 hs, x 3 dias \nprednisolona 20 mg \n3 dias 1 y 1/2\nluego 1/2 cada 24 hs x 2 dias \nluego 1/4 cada 24 hs x 2 dias herida x pelea con gato, lesión supurativa en pabellón auricular \N \N 1461 1438 \N 94 1268 {"studies": [], "medications": [], "specialities": []} +903 2025-06-05 18:25:44.204436+00 2025-06-05 18:25:44.204446+00 f t Herida por mordedura del otro gato\nHerida autoinflingida x rascado (alergia) No ponerle crema. \nObservar que siga cicatrizando como viene haciéndolo y no se agrande. Observar. No poner nada de manera local.\nSi comienza a rascarse reevaluar aplicación de corticoide o prednisolona en gotas (no indico por el momento) Come:cat chow seco y húmedo\nConvive: con un gato y hace unos meses se mudaron a Arg. Indoor.\nVacunas: al día.\nTiene una herida en cuello, ya tuvo hace unos meses , se pelea jugando con el otro gato. Refiere no se rasca.\nEog sensorio alerta hidratado, mm rosadas lfn s/p ausc s/0\nEop: herida lacerada. Alopecia 4cm de diámetro aprox en cuello. Parte con tejido de granulación otra parte ya cicatrizada. \N \N 2166 1988 \N 79 1376 {"studies": [], "medications": [], "specialities": []} +897 2025-06-04 20:05:44.29708+00 2025-06-04 20:05:44.29709+00 f t Herida cortante superficial en puente nasal. s/r específicas. Limpieza local con pervinox 2 veces al día, luego colocar platsul y evitar que se lave la zona por 10-15' para favorecer absorción del producto. Realizar esto hasta remisión de herida. Lesión en nariz, se puede haber lastimado con una mesa ratona de vidrio donde el tutor encontró mancha de sangre. Lesión superficial, no contaminada, única. Además me cuenta que está un poco estresado xq hace 2 días se mudaron, pero toma agua, come y utiliza las piedras normalmente. Se menciona terapia feromonal de persistir el estrés. \N \N 2144 1967 \N 91 1367 {"studies": [], "medications": [], "specialities": []} +898 2025-06-04 23:48:46.864509+00 2025-06-04 23:48:46.864521+00 f t Otitis bilateral x malassezia. Control en 5 días para evaluar respuesta al tto y si requiere ser extendido/modificado. Se realiza limpieza de ambos oídos con clorehexidina, indico otovier classic cada 8 horas x al menos 7 días. Se rasca las orejas y las tiene sucias.\nSecreción bilateral amarronada (aparenta x malassezia), conducto auditivo inflamado, enrojecido con lesiones por rascado, más notorio en oreja derecha. Está en la casa hace más de 3 meses, sería raro fuera otodectes, pero no descarto. \N \N 745 869 \N 91 1348 {"studies": [], "medications": [], "specialities": []} +899 2025-06-05 00:53:52.352006+00 2025-06-05 00:53:52.352018+00 f t Vacunación anual Moxidex plus. Repetir en 15 dias . EOG: normal. Vacunación triple + VAR \N \N 1884 1771 \N 92 1333 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +900 2025-06-05 00:56:12.63067+00 2025-06-05 00:56:12.63068+00 f t . Moxidex plus. Repetir en 15 dias . EOG: Normal. Vacunación anual \N \N 1884 1770 \N 92 1332 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +901 2025-06-05 01:03:13.679808+00 2025-06-05 01:03:13.67982+00 f t . Solicito interconsulta con traumatólogo. Ya se sacó una RX que evidenció la fractura en MPD. Solicito interconsulta con traumatólogo por fractura en MPD. Toma de muestras para perfil general completo y para citología del tumor en MPD (PAF). \N \N 1888 1775 \N 92 1363 {"studies": [], "medications": [], "specialities": ["59"]} +925 2025-06-10 15:04:55.864234+00 2025-06-10 15:04:55.864244+00 f t parasitosis de alta carga completar desparasitacion en 15 dias con total full cg continuar al dia siguiente con sucravet cada 8 hs por dia, vomitos con parasitos redondos y sangre , \nadoptada de Proyecto 4 Patas, sin historial clínico previo, mf ok , tambien esta con algunos estornudos \N \N 2106 1934 \N 94 1365 {"studies": [], "medications": [{"id_medicina": "63", "next_application_months": 0}, {"id_medicina": "883", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}], "specialities": []} +927 2025-06-10 15:08:52.565254+00 2025-06-10 15:08:52.565263+00 f t peso: 1,7 k pasar a Provet Cachorros no cachorra de 55 dias aprox \N \N 1776 1689 \N 94 1308 {"studies": [], "medications": [{"id_medicina": "1156", "next_application_months": 3}, {"id_medicina": "296", "next_application_months": 0}, {"id_medicina": "350", "next_application_months": 1}], "specialities": []} +930 2025-06-10 15:14:35.445247+00 2025-06-10 15:14:35.44526+00 f t vacunación no no vacunación \N \N 1798 1711 \N 94 1316 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1170", "next_application_months": 12}], "specialities": []} +932 2025-06-10 15:17:12.488255+00 2025-06-10 15:17:12.488269+00 f t vacunación idem arriba tumoracion de consistencia dura y ulcerada en ventral de cuello , se indica tratamiento semanal de prednisolona espaciado De la vacunación y programar CX, ya en comunicación con CQV x este caso vacunación \N \N 1798 1709 \N 94 1317 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +937 2025-06-12 01:13:53.321628+00 2025-06-12 01:13:53.32164+00 f t Cuadro inflamatorio de vías respiratorias altas. Humidificador de ambiente. Si no remite o si recidiva, hacemos rx, si no se encuentra nada, hablamos de posibilidad de probar con alguna terapia complementaria para tratar de evitar las recidivas. Prednisolona 2.5 mg totales cada 24 hs x 3 días. Presenta estornudos y estornudos inversos, esporádicamente tos aislada. Me cuentan que le ha pasado y coincide con el uso más intenso del aire acondicionado. No fuman, no usan sahumerios, no hay obra en el dpto, no tienen aromatizante automático de ambiente ni usan aerosoles para tal fin. Con GCC remite. EOG s/p, ausc torácica s/p, reflejo tusígeno: no llega a ser un positivo franco, pero carraspea luego de realizarlo. \N \N 1009 1325 \N 91 1445 {"studies": [], "medications": [], "specialities": []} +940 2025-06-12 21:51:09.342347+00 2025-06-12 21:51:09.342361+00 f t IRC? - - Gato muy indocil, al intentar revisarlo con mucha dificultad se evidencia una leve deshidratación, luego se aplica ranitidina, ondansetron y maropibtant. Se comenta al propietario que por la pérdida ponderal que tiene el paciente puede venir por una cuestión de falla de los riñones. Si el cuadro no revierten con esa medicación se indica hacer un chequeo de sangre y eco abdominal. \N \N 2553 2284 \N 1 1446 {"studies": [], "medications": [], "specialities": []} +904 2025-06-05 19:13:40.728071+00 2025-06-05 19:13:40.728085+00 f t Uveítis, colecta pleural, colecta abdominal.\nViLeF? PIF? Derivo a wellvet para sedación y extracción de sangre para panel general y ViLeF x IC, rx LL de tórax. Posible toraco y abdominocentesis de ser necesario, y de ser así, análisis de líquido de punción? Se medica con dexametasona y furosemida inyectable. Por ahora como dosis única para evaluar evolución y definir estrategia a seguir, además de los rdos de estudios solicitados. Mdc: pérdida de visión, tos y no quiere comer.\nEn febrero/marzo notó anisocoria, ahora ambas pupilas en midriasis total, no ve. Pérdida de peso, abdomen distendido. Mucosas rosadas x lo q puedo ver, y lfn aparentan ok. (Bastante indócil para la revisación)\nDisnea mixta, tonos cardíacos levemente atenuados, frote en hemitórax izq. \nHace 2 días no está queriendo comer, le compraron recovery para estimularla pero come poco. En consulta acepta creamy con ganas. \N \N 2003 1865 \N 91 1344 {"studies": ["5", "8"], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +905 2025-06-06 01:30:05.602525+00 2025-06-06 01:30:05.60254+00 f t Normotenso, 5 mediciones sin cambio en la tendencies.\n118PAS. Sin No requiere amidlopina Toma de presión para paciente cardiopata, bajo tratamiento post colecta pleural e internacion. \N \N 1735 1652 \N 68 1304 {"studies": [], "medications": [], "specialities": []} +906 2025-06-06 01:31:59.33942+00 2025-06-06 01:31:59.339435+00 f t Toma de muestra para T4, T4L, TSH. A demás sumamos hepatograma y mediciones de urea y creatinina No require Paciente cardiopata \N \N 1735 1652 \N 68 1364 {"studies": [], "medications": [], "specialities": []} +907 2025-06-06 01:37:07.18646+00 2025-06-06 01:37:07.186471+00 f t Saludable con enfermedad periodontal Uso de xiiitol/ clorhexidina en agua de bebida. Odontobiotic durante 7 días. \nToma muestra para perfil básico. Glucemia 64mg/dl. Normal Buen estado grl, negative a infecciosas con vacunas al día. Taquicardia, sin alteraciones en auscultación torácica.\nPalpación abdominal y tiroidea s/p. Odontolitiasis con gingivoestomatitis en premolares. Supuran premolar en raíz, puede requerir extracción de la pieza dental. \N \N 2094 1924 \N 68 1361 {"studies": [], "medications": [], "specialities": []} +908 2025-06-06 04:30:08.605759+00 2025-06-06 04:30:08.605772+00 f t Infección urinaria / cistitis Se indico análisis de orina completo Se aplico clamoxyl 0.5 ml y dexametasona 0.4 ml sc.\nSe indico rumiclamox 250mg 1/4 cada 12 hs por 5 días y meloxivet gotas( 20 gotas cada 24 hs por 4 dias) Se realiza consulta por dificultad para orinar. Notan que va varias veces a la litera y orina poca cantidad y va repetidas veces y en ocasiones no orinaba.\nSe ausculta a nivel cardíaco y respiratorio sin particularidades.\nSe palpa abdomen sin particularidades, vejiga vacía.\nSe realizo corte de uñas. \N \N 2126 1951 \N 97 1368 {"studies": [], "medications": [{"id_medicina": "716", "next_application_months": 0}], "specialities": []} +924 2025-06-10 15:02:30.058044+00 2025-06-10 15:02:30.058098+00 f t Compresión medular que complica la defecación ya explicadas 1 cucharada de vaselina liquida en las comidas, dieta casera con aporte de fibra y agregado de salvado de trigo estuvo internado en CEVEDE x cuadro de incoordinacion y ataxia \nse externo con claudicación en MP , esta con seguimiento por Neurologa\nHacen la consulta por 48 hs sin defecar \N \N 1605 1548 \N 94 1291 {"studies": [], "medications": [], "specialities": []} +926 2025-06-10 15:06:46.227571+00 2025-06-10 15:06:46.227584+00 f t consulta x vacunación no no adoptado de adulto , toma apoquel a diario y come analergic , otitis \N \N 1776 1687 \N 94 1310 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1170", "next_application_months": 12}, {"id_medicina": "181", "next_application_months": 1}, {"id_medicina": "63", "next_application_months": 0}], "specialities": []} +928 2025-06-10 15:11:16.932341+00 2025-06-10 15:11:16.932353+00 f t desparasitacion no vacunación en octubre desparasitacion \N \N 1776 1688 \N 94 1309 {"studies": [], "medications": [{"id_medicina": "63", "next_application_months": 0}, {"id_medicina": "181", "next_application_months": 1}], "specialities": []} +931 2025-06-10 15:15:50.004402+00 2025-06-10 15:15:50.004411+00 f t compresión medular rx cervical se indica mantener la medicación analgésica y antiinflamatoria ya pudo defecar sin problemas, e sta mucho mejor, hacen la videoconsulta para ver como seguir con la medicación hasta ver a la neuróloga en 48 hs \N \N 1605 1548 \N 94 1349 {"studies": [], "medications": [], "specialities": []} +933 2025-06-10 23:52:54.767132+00 2025-06-10 23:52:54.767141+00 f t Neoplasia mamaria con posibles metástasis Control cardiologico por sonidos cardíacos apagados, eco abdominal y chequeo de sangre Realizo tratamiento inyectable con antibiótico analgécesico y corticoide La tutora consulta por el estado de una neoplasia mamaria a nivel inguinal de diámetro aproximado 25 cm, ulcerada. Eog: Mucosas levemente pálidas, tllc 3,, sonidos cardíacos apagados, Abdomen ok, score 3/5 \N \N 2365 2137 \N 21 1411 {"studies": ["1", "7"], "medications": [], "specialities": []} +935 2025-06-11 22:59:29.618741+00 2025-06-11 22:59:29.618755+00 f t Corte de uñas Ninguna Corte de uñas Estado alerta y activa. Auscultación sin particularidades tanto cardíaca como respiratoria \N \N 1811 1715 \N 97 1396 {"studies": [], "medications": [], "specialities": []} +939 2025-06-12 21:46:29.931169+00 2025-06-12 21:46:29.931182+00 f t IRC? Neo en abdomen? - Se aplica dipirona, tramadol, tribiotic, ranitidina y complejo vitaminico. Se toma muestra de sangre para un perfil general completo y se entrega orden para ecografía abdominal. Los propietarios comentan que lo notan decaído que no quiere comer y que hace unos días le hace ruido el abdomen. Desde hace tiempo ya que el perro no se levanta y lo ayudan ellos a hacer sus necesidades. Tiene una pérdida ponderal generalizada, está con un poco de dolor abdominal y y tiene una leve hipertermias. \N \N 2614 2327 \N 1 1461 {"studies": [], "medications": [], "specialities": []} +938 2025-06-12 15:12:17.729562+00 2025-06-12 15:12:17.729571+00 f t Hígado: Hepatomegalia: Hepatopatía difusa inflamatoria / infecciosa /\ninfiltrativa\nEstomago: Gastritis leve\nIntestinos: Enteritis inflamatoria / infecciosa / infiltrativa\nNo se observa líquido en el abdomen\nSe verifica peristaltismo aumentado Se sugiere correlacionar con otros estudios complementarios y con la\nevolución clínica del paciente, según opinión del médico actuante. . . \N \N 2370 2141 \N 90 1421 {"studies": [], "medications": [], "specialities": []} +941 2025-06-12 22:15:29.886349+00 2025-06-12 22:15:29.886358+00 f t Vacunación anual Reducir la ración diaria. . EOG: normal. Sobrepeso. \N \N 2569 2297 \N 92 1450 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +1086 2025-07-02 19:41:54.156071+00 2025-07-02 19:41:54.156084+00 f t - - - - \N \N 734 858 \N 84 1088 {"studies": [], "medications": [], "specialities": []} +1094 2025-07-03 13:48:41.261241+00 2025-07-03 13:48:41.261247+00 t t TEST \N 266 335 118 86 1226 \N +909 2025-06-06 14:25:23.965211+00 2025-06-06 14:25:23.965224+00 f t Cistitis idiopatica felina / urolotiasis/ cristaluria/ itu Manejo del estrés siempre que sea posible.\nRealizar ecografía abdominal y análisis de orina completa (entrego orden)\nSe recomienda tomar muestra de orina en litera con pocas piedras y levantar con jeringa o puede ser de la misma bañera si continúa haciendo ahí. Conservar en heladera hasta el retiro. Se aplica meloxicam 0.1mg/Kg vía sc.\nRp/\n1) meloxivet gotas 40 gotas vía oral cada 24hs durante cuatro días luego dos tomas más cada 48hs. \n2)Cisticalm 1capsula diaria con alimento por tres meses\n3) reducción del estrés (evaluar feromonas, flores de Bach , valeriana\n4) aumentar ingesta de agua y cantidad de literas Antecedentes: Hace un mes tuvo episodio recibió analgésico y antibiotico. Mejoró y volvió a orinar poco y con sangre en la bañera. No tiene estudios previos. Comen urinary s/o hace un mes ambos por indicación veterinaria. Antes RC castrados Tienen dos literas chicas para el tamaño del animal. (Pesa 10kg) Se sugiere aumentar número y tamaño. \nEog: condición corporal 5/5. Sensorio alerta. Temperamento miedoso. lfn s/p hidratado mm rosadas ausc sp. Fr y fc ok\nEop: pene s/p se dificulta palpar vejiga por grasa abdominal pero abdomen blando sin dolor \N \N 2157 1976 \N 79 1370 {"studies": ["1"], "medications": [], "specialities": []} +910 2025-06-06 14:45:02.12255+00 2025-06-06 14:45:02.122567+00 f t Paciente clínicamente sano. Actualizar vacunación y desparasitación de ambos pasado el episodio del hermano. Aumentar literas en nro y tamaño .\n Manejo del estrés. Come urinary s/o hace un mes por indicación veterinaria al hermano conviviente. Antes RC castrados \nEs de hacer materia fecal fuera de la liera. Tienen dos literas chicas para el tamaño del animal. (Pesa 7kg) Se sugiere aumentar número y tamaño. \nEog: condición corporal 2.5/5. Sensorio alerta. Temperamento miedoso/huidizo. Lfn s/p hidratado mm rosadas cav búscalo ok. auscultación sp. Fr y fc ok. abdomen blando sin dolor con contenido fecal. \N \N 2157 1977 \N 79 1371 {"studies": [], "medications": [], "specialities": []} +911 2025-06-06 16:19:56.825374+00 2025-06-06 16:19:56.825384+00 f t Gingivoestomatitis Control en 7 días. Spectryl 20 1/4 comp c/12 hs x 7 días. Prednisolona 1/4 x día x 5 días; luego 1/4 x día x 5 días más. Luego 1/4 c/48 hs x 7 días. Consulta por ptialismo y dificultad para tragar. EOG normal. Apetito disminuído, sed, micción y defecación normales. A la revisión de la cavidad bucal, se presenta inflamada la base de la lengua. \N \N 2203 2014 \N 70 1378 {"studies": [], "medications": [], "specialities": []} +912 2025-06-06 17:16:34.248507+00 2025-06-06 17:16:34.248516+00 f t No se pudo realizar examen clínico completo. Pero no presenta signos de enfermedad evidentes a la observación. Tomar las mismas medidas que para esta visita (musica. . alimento..)\nEvitar lugares donde pueda esconderse huir con la llegada del vete \nEvaluar uso de feromonas /flores de Bach para ayudarla en general. Gabapentina 300mg (comprimidos)\n1/2 comprimido con comida 2 a 3hs antes de la consulta veterinaria. SIEMPRE. Comida: rc fit y húmedo o natural cocido variado.\nHábitos: indoor.\nImposible revisación sin ansiolítico .es asustadiza. Sensorio alerta. Score corporal 2/5. \nSe aplica triple felina pero luego no se pudo inmovilizar para rabia. \N \N 2211 2020 \N 79 1379 {"studies": [], "medications": [{"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +913 2025-06-06 17:20:45.02749+00 2025-06-06 17:20:45.0275+00 f t Paciente sana clínicamente.\nSe vacuna con triple felina y antirrábica Manejo del estrés: flores de Bach, valeriana, feromonas etc. Refuerzos positivos. Se aplican triple felino y antirrábica en flanco derecho e izq respectivamente Come rc Fit . Natural cocido poco\nNo presenta antecedentes importantes de salud. \nEog sensorio alerta (asustadiza Freeze) mm rosadas hidratada. Lfn s/p . Frec respi y frec cardíaca ok. Auscultación s/p \N \N 2211 2021 \N 79 1380 {"studies": [], "medications": [{"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +914 2025-06-06 22:24:01.541134+00 2025-06-06 22:24:01.541148+00 f t Vacunación anual . . EOG: normal \N \N 872 984 \N 92 1131 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +915 2025-06-06 22:28:39.203919+00 2025-06-06 22:28:39.203929+00 f t Lipoma. Controlar el crecimiento o cambio de color o consistencia. Si esto ocurre, se recomienda citología bajo sedación. . EOG: Normal. Crecimiento en más de 2 cm de diámetro, circular, sobre zona lumbar derecha desde hace dos meses aprox \N \N 872 983 \N 92 1132 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +916 2025-06-07 16:27:32.638075+00 2025-06-07 16:27:32.638085+00 f t . Pre-quirúrgicos cardiólogo+ AS coágulograma+ repetir calcemia + magnesemia y si es posible PTH. Ubicar lab que mida esa hormona. Tramadol + cirugía Teleconsulta por fractura en fémur derecho. Hipocalcemia resto S/P. \N \N 1888 1775 \N 92 1398 {"studies": [], "medications": [], "specialities": []} +917 2025-06-08 17:14:27.204641+00 2025-06-08 17:14:27.20465+00 f t Miopatia degenerativa Alimentación natural Tramadol 50 mg cada 12hs, si se agrava el dolor aumentar la posologia cada 8hs\nPrednisolona 20 mg, 1 comprimido por la mañana x 4 días, si no hay mejora suspender. El paciente me recibe en decubito lateral, lo ayudan a incorporarse, realiza una caminata muy dificultosa con falta de propiocepción. Al día de hoy come con dificultad, Pis y caca con normalidad.\nEog: Marcada pérdida de masa muscular posiblemente por miopatía degenerativa, cardio ok, abdomen ok, temp normal, mucosas rosadas tllc normal. \N \N 2225 2036 \N 21 1385 {"studies": ["1", "7"], "medications": [], "specialities": []} +918 2025-06-09 19:11:11.152026+00 2025-06-09 19:11:11.152036+00 f t Vacunación Descenso de peso progresivo Control de alimento, y que coma así como control de que orine. Recién adoptado (martes)\nCome urinary por antecedentes de problemas urinarios. Sobrepeso. Observa tenesmo al defecar y poca cantidad pero sin molestias para orinar. Abdomen con leve molestia a la palpación. Come y toma. \nCita para vacunación antirabica. \N \N 2234 2042 \N 68 1390 {"studies": [], "medications": [{"id_medicina": "1151", "next_application_months": 12}], "specialities": []} +919 2025-06-09 19:12:14.364943+00 2025-06-09 19:12:14.364952+00 f t IR. Se realiza eutanasia H Eutanasia Paciente bajo tratamiento por litiasis renal con azotemia descensada. \N \N 2384 2151 \N 68 1413 {"studies": [], "medications": [], "specialities": []} +920 2025-06-09 22:43:44.262987+00 2025-06-09 22:43:44.262997+00 f t Citología compatible con neoplasia pleomorfica epitelial. Contactarse si crece, cambia de coloración o comienza a molestar. Se indica perfil quirúrgico hemostático, electro y ecocardiograma preqx y nodulectomía quirúrgica e histopatología. Tele consulta para devolución de estudios. \N \N 1372 1367 \N 91 1403 {"studies": ["8", "3"], "medications": [], "specialities": []} +922 2025-06-10 14:55:49.842996+00 2025-06-10 14:55:49.843007+00 f t lipidosis hepatica de 1 mes de ev eutanasia eutanasia letargia, ictericia, anorexia \N \N 1802 1712 \N 94 1323 {"studies": [], "medications": [], "specialities": []} +943 2025-06-14 02:49:21.573304+00 2025-06-14 02:49:21.573315+00 f t Otitis bacteriana y ceruminosa x Pseudomonas spp. y Malazessia pach. Control en 10 días. Otovier NF 5 gotas en conducto auditivo externo y otras 5 en pabellón auricular de ambas orejas. Prednisolona 20 mg 1 comp c/24 hs x 5 días. Luego 3/4 comp c/24 hs x 5 días más. Posteriormente 1/2 comp c/24 hs x 5 días más. Por último, 1/2 comp c/48 hs x 7 días. Consulta x otitis. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. Presenta otitis purulenta en oído izq y crónica ceruminosa en el derecho. Además se lame las falanges de miembros anteriores y posteriores. \N \N 2617 2329 \N 70 1463 {"studies": [], "medications": [], "specialities": []} +944 2025-06-14 17:23:51.629639+00 2025-06-14 17:23:51.629647+00 f t Infección urinaria. Se indica continuar el tratamiento por vía oral con amoxicilina y previcox Se aplica amoxicillina, dipirona, meloxocam Se comenta a la propietaria el cuadro y el porqué de la posible infección urinaria. Que eso va a ser solamente un tratamiento paleativo y que posiblemente no resolvamos el problema por la condición de la mascota. \N \N 2661 2364 \N 1 1467 {"studies": [], "medications": [], "specialities": []} +945 2025-06-14 17:30:00.39027+00 2025-06-14 17:30:00.39028+00 f t Complejo respiratorio felino Indicó continuar tratamiento por vía oral con amoxicilina y prednisolona. Junto con paulferon como inmunoestimulante. Aplico amoxicilina y dexametasona Comenta el propietario que la gatita que convive con el ya había presentado estornudos pero fueron pasajeros y ahora comenzó el y ahora está con mocos transparentes y estornudos. Se encuentra normortermico y normohidratado. A la auscultación torácica no presenta particularidades. \N \N 2556 2286 \N 1 1447 {"studies": [], "medications": [], "specialities": []} +946 2025-06-14 17:32:17.962826+00 2025-06-14 17:32:17.962836+00 f t - - - Por condiciones del animal se decide realizar eutanasia. \N \N 2229 2038 \N 1 1387 {"studies": [], "medications": [], "specialities": []} +947 2025-06-14 17:36:42.700933+00 2025-06-14 17:36:42.700944+00 f t - - Aplico triple felina y antirabica Eog:s/p \N \N 2461 2209 \N 1 1423 {"studies": [], "medications": [], "specialities": []} +948 2025-06-14 17:40:09.55548+00 2025-06-14 17:40:09.555493+00 f t - Se indica para quedarse tranquilo hacer un chequeo de sangre y ecografía abdominal. - Se comenta a los propietarios que posiblemente no sea más que molestia porque al parecer la perrita está por entrar en celo y tiene edematizada la vulva. No está orinando con sangre, normotermica, sin dolor abdomina a la palpación. \N \N 2294 2081 \N 1 1407 {"studies": [], "medications": [], "specialities": []} +949 2025-06-14 17:40:11.50654+00 2025-06-14 17:40:11.506551+00 f t Intolerancia alimentaria Cambiar el alimento a Agility Cambiar el alimento a Agility + moxidex plus EOG: normal. Regurgita esporádicamente. \N \N 2386 2153 \N 92 1415 {"studies": [], "medications": [], "specialities": []} +950 2025-06-14 19:19:07.349062+00 2025-06-14 19:19:07.349071+00 f t Odontolitiasis. Realizar ASC (perfil general completo c orina) + control cardiovascular con riesgo anestésico. Sugiero limpieza dental. EOG: normal. Gingivitis, placa dental. Resto normal. Refuerzo de triple felina.. \N \N 703 820 \N 92 1453 {"studies": ["7"], "medications": [{"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +951 2025-06-14 20:44:52.76354+00 2025-06-14 20:44:52.763551+00 f t Enteritis No administrar alimento balanceado hasta que no defeque normal. Diafin + tribiotic + dieta antidiarreica + moxidex plus Si no remite en 48 hs, nueva consulta clínica. EOG: normal. Hidratación normal. Diarrea liquida naranja. Resto S/P. Vómito hace dos días. \N \N 533 628 \N 92 1470 {"studies": [], "medications": [], "specialities": []} +953 2025-06-16 17:56:31.762158+00 2025-06-16 17:56:31.76217+00 f t Osteoartritis crónica Control en 10 días. Artrin plus Consulta por posible eutanasia. EOG: normal. Apetito sed micción y defecación normales. Auscultación cardíaca soplo 4/6. Palpación abdominal sin particularidades. Tumor testicular. Camina con dificultad. Lordosis. \N \N 2385 2152 \N 70 1414 {"studies": [], "medications": [], "specialities": []} +954 2025-06-16 18:05:36.101733+00 2025-06-16 18:05:36.101744+00 f t Lesión de tejidos blandos Si en 5 días no mejora, indico RX de MPI. Meloxivet gotas Dolor de mpi. EOG normal. Apetito sed micción defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. Presenta claudicación mai y mpi. \N \N 2713 2400 \N 70 1471 {"studies": [], "medications": [], "specialities": []} +955 2025-06-16 18:12:30.662103+00 2025-06-16 18:12:30.662111+00 f t Insuficiencia renal crónica, insuficiencia hepática, diabetes. . Eutanasia Deshidratación severa, ascites, edema subcutáneo. EOG: sensorio deprimido, anorexia. \N \N 2760 2439 \N 92 1480 {"studies": [], "medications": [], "specialities": []} +956 2025-06-16 19:31:24.118674+00 2025-06-16 19:31:24.118683+00 f t bronquitis alergica/ asma felino sugiero realizar ( y dejo orden) para rx torax ll y vd .\nevaluar comenzar tto con paf con fluticasona segun resultados de rx aplico dexametasona a 0.5 mg/kg sc. dejo 2 jeringas mas con misma medicacion para aplicarse el domingo y el lunes respectivamente. consulta por estornudos. evolucion 3 semanas. excelente animo, come y juega normalmente.\nno vomitos ni diarrea\nfelino macho castrado 2 años . 7 kg\nconvive con otra gata, ambos 2 en departamento sin acceso al exterior.\nvacunas vencidas\nrevision clinica:\nnormotermico normohidratado\naus cardiaca s/p. aus pulmonar sibiliancias, mas marcadas en pulmon derecho .\npalpacion abdominal s/p \N \N 576 2318 \N 88 1456 {"studies": ["2"], "medications": [{"id_medicina": "704", "next_application_months": 0}], "specialities": []} +957 2025-06-16 19:38:27.235345+00 2025-06-16 19:38:27.235357+00 f t gastroenterocolitis hemorragica. indico ecografia abdominal aplico ranitidina aplonal ondansetron y novotioc. \nindico dieta estricta de pollo con arroz + yoguth natural .\nindico que comience via oral con ranitidina en gotas cada 12 hs + enterosept cada 6 hs hasta remitir sintomas . consulta por vomitos alimenticios y deposiciones liquidas hemorragicas . evolucion 24 hs .\ncanina caniche cachorra 2 kg.\nhace 48 hs se aplico sextuple.\nno sale al exterior y no tiene cto con otros animales.\nEn domicilio, la cachorra esta muy activa, corre juega normalmente. presento 2 vomitos alimenticios posteriores al consumo del balanceado ( old prince cachorro)\nrevision clinica:\naus s/p \nnormotermica normohidratada\npalpacion abdominal , inflamacion de asas intestinales. \N \N 826 932 \N 88 1417 {"studies": ["1"], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "551", "next_application_months": 0}, {"id_medicina": "549", "next_application_months": 0}], "specialities": []} +958 2025-06-16 19:39:46.160479+00 2025-06-16 19:39:46.160489+00 f t - . . felina hembra castrada .\nimposible realizar revision clinica porque es muy asustadiza y no me deja acercarme. \N \N 2217 2028 \N 88 1383 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +959 2025-06-16 19:41:45.380388+00 2025-06-16 19:41:45.3804+00 f t . indico desparasitacion interna con moxidex plus repitiendo a los 15 dias . felino macho castrado. 6.5 kg aprox\nvisita a domicilio para vacunacion anual\nrevision clinica\nnormotermico normohidratado\naus s/p\npalpacion abdominal s/p\ndesparasitacion interna vencida \N \N 2217 2027 \N 88 1382 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +960 2025-06-16 19:43:49.021551+00 2025-06-16 19:43:49.021563+00 f t . . . canino hembra cachorra 4 meses.\nvisita a domicilio para continuar con plan de vacunacion.\naus s/p\npalpacion abdominal s/p\nnormotermica normohidratada \N \N 826 932 \N 88 1290 {"studies": [], "medications": [{"id_medicina": "1168", "next_application_months": 3}], "specialities": []} +961 2025-06-16 19:56:24.910999+00 2025-06-16 19:56:24.911011+00 f t . . . felino hembra castrada\nvisita a domicilio para aplicacion de antirrabica\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermica normohidratada \N \N 1087 1157 \N 88 1189 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +962 2025-06-16 19:57:26.621298+00 2025-06-16 19:57:26.621306+00 f t . . . felina hembra castrada\nvisita a domicilio para aplicar antirrabica anual\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermica normohidratada. \N \N 1087 1156 \N 88 1190 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +963 2025-06-16 19:59:01.833293+00 2025-06-16 19:59:01.833303+00 f t . . . felina hembra castrada\nvisita a domicilio para vacunacion antirrabica anual\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermica normohidratada \N \N 1087 1158 \N 88 1191 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +964 2025-06-16 20:02:34.578021+00 2025-06-16 20:02:34.578032+00 f t . indico desparasitacion interna con moxidex plus repitiendo a los 15 dias \nrealizo orden para rx de columna toracolumbar y lumbosacra . bulldog frances 9 años .\nvisita a domicilio para vacunacion anual\nrevision clinica\naus s/P\npalpacion abdominal s/p\npresenta leve algia a la palpacion en columna toraco-lumbar. \nnormotermico normohidratado\ndesparasitacion interna vencida \N \N 1100 1167 \N 88 1197 {"studies": ["2"], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1168", "next_application_months": 12}], "specialities": []} +965 2025-06-16 22:47:46.616597+00 2025-06-16 22:47:46.616611+00 f t Otitis x Malazessia pach. y micosis externa. Control en 15 días. Otovier NF 5 gotas c/12 hs en conducto auditivo externo y pervinox 10% solución diluído a la mitad en agua sobre las depilaciones. Prednisolona 10 mg 1 comp c/24 hs x 5 días. Luego 1/2 comp c/24 hs 5 días más. Luego 1/4 comp c 24 hs x 5 días y por último 1/4 comp c/48 hs x 7 días. Consulta x depilación y otitis oído izq. EOG normal. Apetito, sed, micción y defecación normales. Auscultación cardíaca normal. Palpación abdominal sin particularidades. Otitis oído izq y depilaciones en lateral del pabellón auricular. \N \N 2582 2309 \N 70 1452 {"studies": [], "medications": [], "specialities": []} +966 2025-06-16 22:56:19.128342+00 2025-06-16 22:56:19.12835+00 f t Insuficiencia renal, hepatopatía, diabetes Eutanasia Eutanasia Sensorio deprimido, deshidratación severa, anorexia , ascites, edema subcutáneo \N \N 2760 2439 \N 92 1488 {"studies": [], "medications": [], "specialities": []} +967 2025-06-16 22:57:32.135853+00 2025-06-16 22:57:32.135862+00 f t Vacunación anual . . EOG: normal. \N \N 2821 2481 \N 92 1487 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +968 2025-06-16 22:58:17.45132+00 2025-06-16 22:58:17.451333+00 f t Vacunación anual . Vacunación anual EOG normal. \N \N 2821 2480 \N 92 1486 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +969 2025-06-16 22:59:53.064868+00 2025-06-16 22:59:53.064879+00 f t . sugiero reanudar plan de vacunacion. \nexplico posibles causas del comportamiento del gato y sugiero una serie de cambios en el ambiente para intenter modificar esa actitud indico desparasitacion con moxidex plus repitiendo a los 15 dias felino comun europeo macho castrado 5 años aprox. 4.5 kg aprox.\nconsulta por conductas "agresivas" .\nplan de vacunacion vencido\nplan de desparasitacion vencido\nen el domicilio , la tutora me comenta que hay veces que el gato la "ataca"\nel gato me permite realizar la revision clinica completa y en presencia mia no muestra conductas agresivas , es mas , todo lo contrario. se acerca amistosamente, juega conmigo, me deja revisarlo sin resistirse en ningun momento\naus s/p\npalpacion abdominal s/p\nnormotermico normohidratado\nmucosas rosas, tllc normal. \N \N 1239 1266 \N 88 1209 {"studies": [], "medications": [], "specialities": []} +970 2025-06-16 23:00:30.928033+00 2025-06-16 23:00:30.928045+00 f t . . . este domicilio fue cancelado. no se realizo eutanasia ya que no acudi al domicilio \N \N 983 1079 \N 88 1246 {"studies": [], "medications": [], "specialities": []} +971 2025-06-16 23:03:42.637385+00 2025-06-16 23:03:42.637398+00 f t . . el paciente es un felino, no me figura la opcion de vacunacion triple felina, pero se colocaron ambas vacunas anuales felino macho comun europeo castrado 5 años aprox. 4.5 kg aprox\nacudo 2 veces el mismo dia, la primera vez para revision por conductas agresivas y la segunda vez para realizar vacunacion anual \N \N 1239 1266 \N 88 1256 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +972 2025-06-16 23:06:03.32975+00 2025-06-16 23:06:03.329759+00 f t . sugiero administrar gabapentina para realizar la revision clinica y vacunacion . felino comun europeo hembra cachorra.\nacudo al domicilio para aplicar la 2da dosis de la triple felina.\nla gatita es rescatada de la calle, tiene aproximadamente 3 meses de edad. la tutora todavia no logra alzarla ya que es muy desconfiada.\nintentamos por todos los medios realizar la vacunacion pero fue en vano. \N \N 1296 1313 \N 88 1223 {"studies": [], "medications": [], "specialities": []} +973 2025-06-16 23:11:50.732544+00 2025-06-16 23:11:50.732554+00 f t . explico como realizar una adaptacion de un felino a un nuevo hogar .\ndejo comprimido de gabapentina para administrarle en algun momento para poder realizar la revision clinica correspondiente indico desparasitacion con moxidex plus repitiendo a los 15 dias felino macho comun europeo 6 meses aproximadamente.\nconsulta clinica. fue adoptado de la calle donde vivia hace 3 dias . Desde que lo tienen en su domicilio, no se deja acercar ni tocar porque es muy asustadizo.\nel primer dia no quiso comer ni tomar agua, pero al 2do dia comenzo a comer a pesar de esconderse constantemente.\nno fue posible realizar la revision clinica . \N \N 2822 2482 \N 88 1489 {"studies": [], "medications": [], "specialities": []} +1529 2025-08-24 23:55:59.641872+00 2025-08-24 23:55:59.641881+00 f t Otitis . otovier NF 10 días EOG normal. Otitis OD \N \N 7187 5891 \N 92 2228 \N +974 2025-06-17 03:33:02.932713+00 2025-06-17 03:33:02.932726+00 f t Discopatía (Posible compresión medular, artrosis, espondilosis). Colocar calor en zonas de dolor antes mencionadas por medio de almohadilla termica o de semillas.\nRealización de radiografía. \nPosible fisioterapia (Evaluando evolución del paciente).\nControl en 48 a 72 hs. Se indica prednisolona 20 mg 1 comp. C/12 hs 3 dias desde mañana y luego 1 comp. C/24 hs y reevaluar.\nNogastrol 30 mg 1 comp. C/24 hs en ayunas 7 días al menos. Hasta ayer caminaba por la casa pero luego dejo de hacerlo. Intenta levantarse pero no puede. Anteriormente notaron dificultad para incorporarse y le costaba subir el cordon de la vereda.\nMucosas rosadas, tllc 2", auscultacion dificil por agitación. \n Paralisis del tren posterior, dolor marcado al presionar columna a nivel toraco lumbar y sacro. Sensibilidad disminuida del lado derecho, reflejo anal presente, paniculo presente de nivel lumbar hacia craneal. No expresa dolor en movimientos articulares en miembros posteriores. \N \N 2792 2462 \N 99 1485 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}], "specialities": []} +975 2025-06-17 14:05:37.109671+00 2025-06-17 14:05:37.109682+00 f t Pu y pd iatrogénica? Calcio? Sin recomendaciones específicas Pido repetir eco para control evolutivo de hígado y próstata y sumo eco de cuello, pido calcio, fósforo en sangre y hepatograma. Suspendo urinary (xq aumenta la ingesta de agua) y paso a urovier x 1 mes, luego repetir AOC. Lo llevó en marzo a atenderse, sospecharon cushing, tiene hecho un panel general, un AOC y relación cortisol creatinina en orina, cardio y eco. En sangre lo relevante es GOT elevada, la relación dio normal, en orina hay fosfatos triples, proteína + y células de descamación. Se le encontró un nódulo en testículo, en eco HPB y quistes prostáticos benignos, hígado metabólico. Se lo castró y dió tumor de células de Leydig. Desde la castración tiene PU y PD, x lo menos x un mes y medio notó eso, y luego se le hizo el estudio de orina y por los fosfatos le dieron urinary s/o. Parámetros renales ok, glucemia ok y en un principio parece no haber cushing.\nPalpo linfonodulos submaxilares bastante aumentados (resto ok).\nSe le administraron dos dosis de GCC inyectable luego de la cx. \N \N 2732 2418 \N 91 1479 {"studies": ["1"], "medications": [], "specialities": []} +976 2025-06-18 17:09:42.799103+00 2025-06-18 17:09:42.799113+00 f t Incoordinación en la marcha como consecuencia del tumor. Se recomienda eutanasia. Dexametasona 1,5 ML inyectable. Repetir en 24 hs. Consulta x incoordinación en la marcha. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Se palpan ambos ganglios axilares muy aumentados de tamaño. Tumoración deformante (tamaño pelota de tenis) en dorsal del hueso nasal. \N \N 544 641 \N 70 1499 {"studies": [], "medications": [], "specialities": []} +977 2025-06-18 17:22:00.665468+00 2025-06-18 17:22:00.665477+00 f t Epilepsia. Realizar ecografía abdominal y perfil gral completo con orina. Se administran 3 ml Diazepam intrarectal. Se aplica Triobiotic 2 mL SC y meloxivet 0.5 ML. Consulta x incoordinación en la marcha de un día de evolución. EOG normal Apetito, sed, y defecación normales. Micción sin postura en cualquier parte. Palpación abdominal sin particularidades. Auscultación cardíaca sin particularidades. En consulta sufre un cuadro epiléptico. \N \N 2803 2467 \N 70 1481 {"studies": ["1", "7"], "medications": [{"id_medicina": "722", "next_application_months": 0}], "specialities": []} +978 2025-06-18 18:47:26.278792+00 2025-06-18 18:47:26.278804+00 f t Gastroenteritis x intolerancia al alimento (Fit 32). Parasitosis? Solicito análisis coproparasitológico para búsqueda de nematodos, cestodes, giardias y coccidios. Reliveran 0,2 mL PO. Repetir en 12 hs. Cambio de alimentación a Agility merluza en lata. Consulta x vómitos y diarrea de un día de evolución. EOG normal. Anorexia. Sed y micción normales. Diarrea acuosa. Palpación abdominal sin particularidades. Auscultación cardíaca normal. \N \N 2880 2539 \N 70 1496 {"studies": [], "medications": [{"id_medicina": "546", "next_application_months": 0}], "specialities": []} +979 2025-06-19 00:39:15.273034+00 2025-06-19 00:39:15.273055+00 f t hemangiosarcoma en base cardica . se realiza eutanasia canino macho castrado 10 años shiba inu\nacudo a domicilio para realizar eutanasia del canino.\nel mismo tiene diagnosticado tanto por ecocardiografia como por tomografia una neo ( altamente sospechoso de hemangiosarcoma) en base cardiaca. se diagnostico hace 1.5 meses aproximadamente . acudio en ese momento por respiracion corta y principalmente abdominal. motivo por el cual realizaron rx y ecocardio y observaron colecta pleural. comenzaron con drenajes del liquido pleura y dejaron tubo para drenaje ya que se realizo la maniobra varias veces. el gordito anduvo bien todo este tiempo , pero ayer le realizaron hematocrito y bajo de 44 a 14 en 1 mes.\nfue atentido en Leocan y sugierieron eutanasia \N \N 2829 2488 \N 88 1491 {"studies": [], "medications": [], "specialities": []} +980 2025-06-19 00:40:47.922021+00 2025-06-19 00:40:47.922032+00 f t neo en bazo. polipo/ neo en vejiga . realizo extraccion de sangre se realiza extraccion de sangre para perfil geronte canino indicado por Lisandro ( colega que trabaja en Amar mascotas) \N \N 2614 2327 \N 88 1508 {"studies": [], "medications": [], "specialities": []} +981 2025-06-19 00:47:03.394014+00 2025-06-19 00:47:03.394026+00 f t otitis - realizo limpieza otica bilateral. mayor compromiso auricular derecho .\ncomenzamos tto con otovier nf ( conducto derecho 3 gotas cada 8 hs por 5 dias , luego cada 12 hs por 5 dias ) . y en conducto izquierdo ( 2 gotas cada 12 hs por 7 dias )\naplico dexa a 0.5 mg/kg y dejo jeringa para repetir misma dosis mañana ( ultima dosis ) felino macho castrado comun europeo 3 años y 5.5 kg aprox.\nconsulta por rascado continuo de pabellon auricular derecho . evolucion 2 semanas \nconvive con 3 gatos mas .\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermico normohidratado\ncomen barf + balanceado en menor medida\nse observa abundate cerumen en conducto auditivo derecho , eritema de la piel y lesiones por rascado \N \N 2895 2550 \N 88 1504 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +982 2025-06-19 00:54:17.782738+00 2025-06-19 00:54:17.782748+00 f t - realizo orden para chequeo de medio interno ( p. hepatico + p. lipidico + calcio + fosforo. ) se indica desparasitacion con moxidex plus repitiendo a los 15 dias \ndejo pipeta para desparasitacion externa felino macho castrado comun europeo 9 años. 7.5kg aprox\nvisita a domicilio para vacunacion anual + desparasitacion interna y externa \ncome urinary ( por antecedentes de obstruccion de vias urinarias )\nrevision clinica\naus s/p\npalpacion abdominal, abdomen tenso, no me permite evaluar organos \nnormohidratado\nnormotermico\npelo hirsuto \N \N 2881 2540 \N 88 1497 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +1087 2025-07-02 19:43:17.072686+00 2025-07-02 19:43:17.072696+00 f t - - - - \N \N 1888 1775 \N 84 1362 {"studies": [], "medications": [], "specialities": []} +1542 2025-08-26 15:11:36.341721+00 2025-08-26 15:11:36.341733+00 f t . . . . \N \N 5249 5900 \N 90 2222 \N +983 2025-06-19 01:00:31.451612+00 2025-06-19 01:00:31.451625+00 f t insuficiencia renal/ diabetes indico 150 mg de gaba 2 hs antes de la extraccion de sangre el felino estaba en ayuno para extraccion de sangre pero resultó imposible realizar la extraccion sin tranquilizacion previa .\nrealizo pasaje de ringer lactato sc (200 ml) felino macho castrado comun europeo 13 años . 4.5 kg aprox.\nconsulta por polidipsia poliuria perdida ponderal. \nconvive con otro felino de 3 años \nno sale al exterior\ncomen fit de royal canin\nrevision clinica\naus ritmo de galope? soplo?\npalpacion abdominal , vejiga con contenido , no me permite evaluar organos abdominales\ndeshidratacion 7 %\npelo hirsuto0.28\nupc realizado el año pasado en 0.28 \N \N 2823 2483 \N 88 1490 {"studies": ["7"], "medications": [{"id_medicina": "1069", "next_application_months": 0}], "specialities": []} +984 2025-06-20 01:08:17.232513+00 2025-06-20 01:08:17.232526+00 f t Bronquitis , asma , paladar blando elongado Se recomienda Rx LL tórax y ver la boca bajo sedacion ,para ver estructuras de la garganta Prednisolona 10 mg El animal estaba en buenas condiciones cuando llegue, se auscultación estertor en vías respiratorias superiores,no se le pudo abrir la boca para revisar paladar blando,le hacen nebulizaciones, pero a la noche comienza con tos y dificultades para respirar.Dejoreceta para prednisolona 10 mg (1 comprimido /24 hs, en caso necesario cada 12 hs hasta la llegada del dueño, x 4 días. Sugiero rx LL tórax y revisacion de la boca y el paladar bajo sedacion \N \N 2970 2604 \N 78 1517 {"studies": [], "medications": [], "specialities": []} +985 2025-06-20 01:14:35.946902+00 2025-06-20 01:14:35.946915+00 f t Vómitos x pelos Observar y cepillar al animal(dificil) en caso de que vuelva a pasar vaselina liquida ,una cucharadita de te Ayuno y dieta natural Animal indocil, dificil de agarrar,vomito probablemente debido a pelos, se pudo agarrar y revisar, no presentó alteraciones ,estado general bueno, comió algo de queso untable, se le dijo a la dueña que le haga ayuno de sólidos hasta la noche \N \N 2976 2609 \N 78 1518 {"studies": [], "medications": [], "specialities": []} +986 2025-06-20 02:12:38.157789+00 2025-06-20 02:12:38.157798+00 f t Rascado x presencia de pulgas.\nParasitosis por Dypillidium. Aspirar el hogar \nBaldear con ecthol terraza periódicamente (xq la gatita sale y suelen venir gatos vecinos, se explica manejo de ecthol para prevenir intoxicación) - Colocar bravecto\n- Tto ambiental x no menos de 1 mes\n- Desparasitación con moxidex plus 10 días luego de colocar bravecto. Mdc: rascado a pesar de colocar productos antipulgas y q vio gotitas de sangre en lavatorio cuando la gatita subió a tomar agua. \nPaciente rescatada, la adoptó castrada, come proplan gatos castrados o a veces excellent, sin antecedentes de problemas de piel. Hace un tiempo comenzó a rascarse, colocó full spot en enero y luego dos productos spot on para pulgas, todas tienen imidacloprid. A la revisación se evidencia MF de pulgas (eso fue lo que produjo las gotas de sangre que ella vio, al entrar en contacto con el agua), logro visualizar una pulga en cabeza, piel ok y mucosas ok, no hay falta de pelo, manto en buenas condiciones. Me comenta que vio parásitos en MF. \N \N 2567 2295 \N 91 1451 {"studies": [], "medications": [], "specialities": []} +987 2025-06-20 02:16:23.190853+00 2025-06-20 02:16:23.190867+00 f t ecografia ecografia ecografia ecografia \N \N 2943 2581 \N 90 1512 {"studies": [], "medications": [], "specialities": []} +988 2025-06-20 16:35:06.576701+00 2025-06-20 16:35:06.576717+00 f t Vacunación anual . . EOG normal. \N \N 2950 2587 \N 92 1515 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +989 2025-06-20 16:35:54.416379+00 2025-06-20 16:35:54.416392+00 f t Vacunación anual . . EOG normal \N \N 2950 2588 \N 92 1514 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +990 2025-06-20 16:36:37.256202+00 2025-06-20 16:36:37.256212+00 f t Vacunación anual . . EOG NORMAL \N \N 2950 2586 \N 92 1513 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +991 2025-06-20 21:46:57.201632+00 2025-06-20 21:46:57.201642+00 f t Otitis externa e inflamación que genera estenosis de naso lagrimal. Control en vacunación. Otovier NF en oido\nDexaflox colirio en ojo. Primo vacunado, normotermia. Lagrimeo y flourosceina negativo a úlcera sin drenaje sugiere inflamación de conducto naso lagrimal. Otitis externa leve. \N \N 2498 2241 \N 68 1437 {"studies": [], "medications": [], "specialities": []} +992 2025-06-20 21:50:16.315651+00 2025-06-20 21:50:16.315663+00 f t Gastroenteritis por cambio de dieta. Ecografía de control por órgamegalia y hemangioma en abdomen. Ayuno hasta mañana y dieta casera. Metronidazoñe VO si come y tolera a partir de mañana por la noche. Vómitos ayer, anorexia, diarreas con sangre. \N \N 3052 2661 \N 68 1528 {"studies": ["1"], "medications": [{"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "725", "next_application_months": 0}], "specialities": []} +993 2025-06-21 00:47:05.040103+00 2025-06-21 00:47:05.040116+00 f t Bronquitis inflamatoria/alérgica? Suspender aromatizador. Por ahora solo indico antiparasitario que cubre aelurostrongylus, solicito estudios y de acuerdo a rdos, planteamos tto. Solicito rx LL y VD de tórax y cardiológico cuando lo pueda hacer (prioridad rx) Mdc: tos. Tose cada tanto pero se ha hecho más frecuente. Irritantes ambientales: solo identificamos aromatizador automático, y cree que el cuadro coincide con el cambio de fragancia. EOG s/p, paciente con sobrepeso (come excellent gato adulto), EOP refuerzo de MV y soplo laringotraqueobronquial aumentado. \N \N 2672 2369 \N 91 1468 {"studies": ["3"], "medications": [], "specialities": []} +994 2025-06-21 19:55:49.630051+00 2025-06-21 19:55:49.630058+00 f t Discopatia Se indica artrin 1 comp. C/24 hs todos los días. 2 dias de prednisolona 20 mg cada 24 hs y luego 2 tomas mas cada 48 hs y retirar. Mientras tanto sigue con nogastrol 30 mg c/24 hs en ayunas. Refieren mejoria luego del tratamiento. Se comenzo a incorporar incluso por sus propios medios.\nTuvo un vomitos 2 días atras pero luego no volvio a hacerlo. \N \N 2792 2462 \N 99 1527 {"studies": [], "medications": [], "specialities": ["43"]} +995 2025-06-24 01:45:41.526954+00 2025-06-24 01:45:41.526964+00 f t Insuficiencia renal crónica terminal Eutanasia Eutanasia Sensorio deprimido. Sin respuesta al tratamiento. \N \N 3176 2747 \N 92 1543 {"studies": [], "medications": [], "specialities": []} +996 2025-06-24 01:53:32.495687+00 2025-06-24 01:53:32.495696+00 f t Insuficiencia renal crónica terminal Eutanasia Fluidoterapia dexametasona tribiotic Deshidratación severa, caquexia, sensorio deprimido anorexia. \N \N 3176 2747 \N 92 1535 {"studies": [], "medications": [], "specialities": []} +997 2025-06-24 01:56:12.423729+00 2025-06-24 01:56:12.423738+00 f t Enteritis Desparasitación en 21 días. Diafin + tribiotic + total full + dieta antidiarreica EOG NORMAL. DIARREA ACUOSA. Ayer diarrea color negro, hoy amarillo. Resto normal \N \N 264 308 \N 92 1534 {"studies": [], "medications": [], "specialities": []} +998 2025-06-24 01:57:55.393532+00 2025-06-24 01:57:55.39354+00 f t Vacunación anual Refuerzo séxtuple en 30 dias Séxtuple+ var (primovacunación) EOG NORMAL \N \N 2892 2547 \N 92 1541 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1173", "next_application_months": 3}], "specialities": []} +999 2025-06-24 01:59:27.007647+00 2025-06-24 01:59:27.007656+00 f t Vacunación y desparasitacion anual . Vacunación anual EOG normal \N \N 3043 2654 \N 92 1529 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +1000 2025-06-24 16:23:53.832022+00 2025-06-24 16:23:53.832033+00 f t IRC, dermatitis psicogena, lesión, reflejo de alguna patología interna Análisis completo de sangre y orina, según análisis se aconseja un generador de cartilago Análisis completo de sangre y orina Depilación ovalada en lateral izquierdo del lomo, con escamas,sensibilidad en columna lumbosacra, historia de incipiente IRC (hace un año) \N \N 386 460 \N 78 1542 {"studies": [], "medications": [], "specialities": []} +1001 2025-06-24 17:15:37.230106+00 2025-06-24 17:15:37.230114+00 f t Estenosis naso-lagrimal y sinusitis crónica. \nPólipo nasal izquierdo. Rinoscopia. Prednisolona en dosis decreciente; rumiclamox durante 10 días, dexaflox en ojos y puff diario de fluticasona. Disnea inspiratoria vías aéreas altas. Paciente con antecedente de calicivirosis. Ha sido tratado por neumonologo con mejoras leves y temporales. Se auscultan tales secos y estertores. Mucosas rosa sin alteraciones clínicas. Fluorosceina negativo en ambos ojos, ojo izquierdo sin drenaje y consecuente vuelco de lagrima. \N \N 3054 2662 \N 68 1531 {"studies": [], "medications": [], "specialities": []} +1002 2025-06-24 22:27:17.662717+00 2025-06-24 22:27:17.662724+00 f t Rp/ prednisol 12 gotas x dia x 7 dias, luego 10 gotas x dia x 7 dias, luego cads 48hs por 5 tomas mas, evaluar rpta. Pipetas cada 30 dias paciente con historial de alopecia extensiva, en abd ventral, post de mps, rabo. Solo aloepcia, sin eritema ni placas. Evolucion mas de 1 año, sin tto previos. Sin evacluación de virales. Convive con otro gato, en depto. Comen excellent adulto. Pipeta hace 1 mes. \N 2046 1891 113 75 1386 \N +1003 2025-06-24 22:58:06.151078+00 2025-06-24 22:58:06.151088+00 f t Al examen clinico básico paciente sana. Siempre suministrar gabapentina previa consulta.\nRealizar coproparasitologico ( entrego orden) Se aplica vacuna contra rabia Se atiende con 1/2 comprimido de gabapentina 300mg administrado previamente. \nSe logra auscultar a/p lf s/p abdomen blando. Resto de revisación dificultosa pues bajo los efectos de la gabapentina igualmente tiende a escaparse (tiene disponible alturas)\nSe aplica vacuna antirrábica en flanco derecho. \N \N 2211 2020 \N 79 1400 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}], "specialities": []} +1004 2025-06-24 23:27:58.834686+00 2025-06-24 23:27:58.834698+00 f t Control anual y vacunación anual Ninguna Ninguno Alerta y dócil a la inspección. Se realiza auscultación cardíaca y respiratoria sin particularidades. \N \N 3206 2770 \N 97 1538 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1170", "next_application_months": 12}], "specialities": []} +1005 2025-06-24 23:28:45.066623+00 2025-06-24 23:28:45.066634+00 f t Vacunación anual Repetir séxtuple en 30 días. Vacunación anual EOG NORMAL \N \N 2892 2547 \N 92 1498 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1176", "next_application_months": 3}], "specialities": []} +1006 2025-06-24 23:35:16.219757+00 2025-06-24 23:35:16.219765+00 f t Vacunacion inicial y corte de uña Ninguna Ninguno Se realiza consulta pediátrica. Alerta y dócil a la revisación. Auscultación cardíaca y respiratoria sin particularidades. Corte de uñas \N \N 3206 2771 \N 97 1539 {"studies": [], "medications": [{"id_medicina": "1159", "next_application_months": 1}], "specialities": []} +1007 2025-06-25 14:54:28.492095+00 2025-06-25 14:54:28.492104+00 f t Vacunación de rabia Revacunar en un año Vacunación antirrabica EOG:ok \N \N 631 741 \N 87 1243 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +1008 2025-06-25 23:41:27.620459+00 2025-06-25 23:41:27.620468+00 f t Fractura patológica secundaria a endocrinopatia Eutanasia Eutanasia Paciente de 13 años postrado desde hace un mes por fractura desplazada de fémur derecho. Evaluado por traumatología y clínica médica. Pronóstico malo. \N \N 1888 1775 \N 92 1526 {"studies": [], "medications": [], "specialities": []} +1009 2025-06-26 13:00:19.642515+00 2025-06-26 13:00:19.642529+00 f t Dermatomicosis Control en 20 días. Ketoconazol 200 mg 1/4 comp x día x 20 días. Teleconsulta x revisión de resultados. Exámenes para búsqueda de dermatomicosis: observación directa y cultivo de pelos negativos. \N \N 1864 1756 \N 70 1546 {"studies": [], "medications": [{"id_medicina": "829", "next_application_months": 0}], "specialities": []} +1010 2025-06-26 13:05:00.322775+00 2025-06-26 13:05:00.322788+00 f t Vacunación antirrábica anual. Repetir en un año. Vacunación con antirrábica. Consulta x vacunación. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación abdominal sin particularidades. \N \N 646 761 \N 70 1507 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}], "specialities": []} +1011 2025-06-26 13:09:05.035508+00 2025-06-26 13:09:05.035521+00 f t Espondiloartrosis deformantes. Control en 60 días. Artrin 1/2 comp/día hasta terminar la caja. Tratamiento con mucha mejoría. \N \N 2385 2152 \N 70 1440 {"studies": [], "medications": [{"id_medicina": "559", "next_application_months": 0}], "specialities": []} +1012 2025-06-26 13:12:04.616256+00 2025-06-26 13:12:04.616268+00 f t No sé realizó la consulta. No sé realizó la consulta. No sé realizó la consulta. No sé realizó la consulta. \N \N 2586 2311 \N 70 1454 {"studies": [], "medications": [], "specialities": []} +1013 2025-06-26 13:20:47.604444+00 2025-06-26 13:20:47.604458+00 f t Mordedura de perro. Control en 15 días. Cefalexina 1g 1 comp c/12 hs por 15 días. Consulta x mordedura de perro. Apetito, sed, micción y defecación normales. Auscultación cardíaca normal \nPalpación abdominal sin particularidades. \N \N 2484 2230 \N 70 1430 {"studies": [], "medications": [], "specialities": []} +1033 2025-06-28 23:01:21.844818+00 2025-06-28 23:01:21.84483+00 f t Infección bacteriana en falanges de ambos miembros posteriores. Repetir tribiotic cada 48 hs, aplicar agente antiséptico cada 24 hrs, evitar el lamido. Se aplica antibiótico tribiotic EOG: normal. Paciente geronte con discapacidad en miembros posteriores. Lesión con proceso infeccioso en falanges de ambos miembros posteriores por arrastre y lamido. \N \N 3546 3027 \N 92 1603 {"studies": [], "medications": [], "specialities": []} +1095 2025-07-03 19:58:34.108233+00 2025-07-03 19:58:34.108243+00 f t - - - - \N \N 449 532 \N 86 1633 {"studies": [], "medications": [], "specialities": []} +1014 2025-06-27 01:05:14.562207+00 2025-06-27 01:05:14.562219+00 f t Golpe/ inflamación/trauma transitorio con resolución espontánea. Pendiente plan vacunal. Observar. Grabar si se repite. \nGabapentina 300mg comprimidos \n1/2 comprimido 3horas antes de próximas consultas (dejo orden) Mc: rengueo ayer de una pata. Hoy no. Lo conocen hace aprox un año que los visita pero tienen contacto más estrecho hace poco. Come alimento balanceado. Convive con gata y perro (hábitos outdoor)\nEog sensorio alerta, pelo brillante, mm rosadas . Auscultación cardiopulmonar sp (derecha) resto de parámetros no se pueden monitorear por intolerancia del pte.\nEop: deambula con los cuatros miembros por el espacio sin claudicaciones evidentes \N \N 3363 2883 \N 79 1563 {"studies": [], "medications": [], "specialities": []} +1015 2025-06-27 03:32:55.214094+00 2025-06-27 03:32:55.214102+00 f t EOG sp \nSextuple vencida No No EOG sp \N \N 2489 2233 \N 94 1433 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +1016 2025-06-27 03:35:20.697988+00 2025-06-27 03:35:20.697996+00 f t Rinitis alérgica\nRinitis viral \n origen oral \nVIF - VILEF Control en 5 días Seguir con enrofloxacina oral x 5 días Rinitis con exudado mucopurento \nAusc tórax sp \nGingivitis severa con piezas móviles \N \N 2106 1934 \N 94 1448 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1017 2025-06-27 03:37:11.320216+00 2025-06-27 03:37:11.320225+00 f t Llamado x vac No Vac atr EOG sp\nVacunas anuales vencidas \N \N 2489 2234 \N 94 1432 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +1018 2025-06-27 03:38:48.844206+00 2025-06-27 03:38:48.844215+00 f t Pancreatitis ?? Se solicita ecografía abdominal y chequeo sangre Tto instaurado por colega , piden teleconsulta para saber\nCómo seguir Tele consulta por aparente pancreatitis ya tratada \nDiagnostico en base a signo logia digestiva y valores de amilasa \N \N 266 335 \N 94 1360 {"studies": [], "medications": [], "specialities": []} +1019 2025-06-27 03:40:04.28865+00 2025-06-27 03:40:04.288663+00 f t No Se sugiere ir retomando su alimentación y estilo de vida habitual, interrumpir tto continuar solo con hepatoproteccion x 1 mes Mejoría en parámetros de hemograma y bq sanguínea \nEcografía Abd SP a nivel pancreatico Teleconsulta control \N \N 266 335 \N 94 1429 {"studies": [], "medications": [], "specialities": []} +1020 2025-06-27 19:09:52.977504+00 2025-06-27 19:09:52.977515+00 f t Examen físico pendiente pues paciente rechaza la manipulación y tutora relata que responde agresivamente. Uso de feromonas para el viaje en auto y la casa nueva. Se indica:\nHabitación a transportadora (desensibilización) Uso diario de la misma en casa con refuerzos positivos.\nTerapia con Flores de Bach u homeopatía para reestablecer el equilibrio emocional de la paciente. Mc: sedación para poder introducir a la gata en transportadora para mudanza.\nimposibilidad de revisación clínica por temperamento de la paciente.\nSe explica que la sedación propiamente dicha puede tener efectos adversos que requiere monitorización veterinaria y se desaconseja para traslados. Se indica en estos casos ansiolíticos como la gabapentina pero paciente se rehúsa a comerla mezclada con creamy.\nSe opta por encerrarla en un ambiente chico y se logra introducir a la gata en la transportadora exitosamente. \N \N 722 844 \N 79 1576 {"studies": [], "medications": [], "specialities": []} +1021 2025-06-27 19:14:33.363749+00 2025-06-27 19:14:33.363762+00 f t Neo en torax . Meloxicam Paciente que presento cuadro de insuf resp hace dos semanas. Se le drenaron 200 ml de liquido pleural serosanguinolento. Resultado del liquido: trasudado modificado, sin cel neoplasicas. Analisis de sangre spp, ecografia abdominal sin liquido, higado reactivo por comienzo de lipidosis. Hoy come, apetito normal. Le cuesta mucho movilizarse, mucha artrosis. Aplico meloxicam. Doy jeringas de meloxicam para que le de por una semana a dosis decrecientes de 0,1 mg/kg a 0,05 mg/kg. Control en una semana conmigo. Proximo paso es hacer ecografia toracica con dopler (ahora no porque esta muy estresado y adolorido) \N \N 3211 2775 \N 80 1568 {"studies": [], "medications": [], "specialities": []} +1022 2025-06-27 19:15:01.968645+00 2025-06-27 19:15:01.970136+00 f t . . . Aplico triple felina \N \N 753 878 \N 80 1261 {"studies": [], "medications": [], "specialities": []} +1023 2025-06-27 19:16:10.380994+00 2025-06-27 19:16:10.381003+00 f t . . . Aplique triple felina a los 3 gatitos\n Eog spp \N \N 667 788 \N 80 1358 {"studies": [], "medications": [], "specialities": []} +1024 2025-06-27 19:16:44.627247+00 2025-06-27 19:16:44.627256+00 f t . . . Aplique triple felina a los 3 gatitos. Eog spp \N \N 667 788 \N 80 1391 {"studies": [], "medications": [], "specialities": []} +1025 2025-06-27 22:23:07.289977+00 2025-06-27 22:23:07.289989+00 f t . . Se extrae sangre EOG normal. Consulta por extracción de sangre \N \N 734 858 \N 92 1552 {"studies": [], "medications": [], "specialities": []} +1026 2025-06-27 22:24:57.977254+00 2025-06-27 22:24:57.977263+00 f t . Vacunas y cambio de alimentación Cambio de alimento a bajas calorías EOG normal. Sobrepeso. Resto, normal. Faltan vacunas. \N \N 3343 2869 \N 92 1557 {"studies": [], "medications": [], "specialities": []} +1027 2025-06-27 22:48:35.204783+00 2025-06-27 22:48:35.204792+00 f t Punto post quirúrgico Limpiar con pervinox por 2 días Se extraen 3 puntos EOG: ok\nPresenta puntos externos post castracion, no presenta lesión, piel cicatrizada \N \N 839 944 \N 87 1570 {"studies": [], "medications": [], "specialities": []} +1028 2025-06-28 19:18:14.614861+00 2025-06-28 19:18:14.61487+00 f t Vacunación O Vacunación Saludable \N \N 2547 2276 \N 68 1443 {"studies": [], "medications": [{"id_medicina": "1152", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1029 2025-06-28 19:21:14.226325+00 2025-06-28 19:21:14.226334+00 f t Vacunacion Reducción de porciones Dieta Sibrepeso \N \N 2547 2277 \N 68 1444 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1031 2025-06-28 20:15:56.508447+00 2025-06-28 20:15:56.508455+00 f t Control clínico. Sin particularidades. Control en 7 días. . EOG: normal, estado alerta, hidratación normal, apetito normal, defeca y orina normal. \N \N 1734 1651 \N 92 1301 {"studies": [], "medications": [], "specialities": []} +1030 2025-06-28 20:15:56.508247+00 2025-06-28 20:15:56.508257+00 f t Control clínico. Sin particularidades. Control en 7 días. . EOG: normal, estado alerta, hidratación normal, apetito normal, defeca y orina normal. \N \N 1734 1651 \N 92 1301 {"studies": [], "medications": [], "specialities": []} +1032 2025-06-28 22:48:45.40617+00 2025-06-28 22:48:45.406185+00 f t Vacunación anual . Vacunación anual EOG: normal \N \N 1976 1840 \N 92 1341 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1034 2025-06-29 18:01:36.646799+00 2025-06-29 18:01:36.646808+00 f t - - - - \N \N 3480 2973 \N 90 1592 {"studies": [], "medications": [], "specialities": []} +1037 2025-06-29 23:11:04.93049+00 2025-06-29 23:11:04.930505+00 f t Cardiomiopatia e hipertensión. Concurrir a clínica/ hospital. Radiografía de tórax, tratamiento cardiológico si corresponde. Disnea inspiratoria, taquipnea. Rales secos, ritmo de galope. Pulso femoral debil. Taquicardia. Soplo, bajo score corporal y pérdida de visión. PD/PU \N \N 3553 3031 \N 68 1601 {"studies": ["3", "2"], "medications": [{"id_medicina": "777", "next_application_months": 0}, {"id_medicina": "594", "next_application_months": 0}], "specialities": ["8", "6"]} +1038 2025-06-29 23:12:09.831048+00 2025-06-29 23:12:09.831058+00 f t Gotas óticas. Desparasitacion Gotas oticas Sobrepeso. Otitis \N \N 3405 2911 \N 68 1566 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1039 2025-06-30 19:42:34.819786+00 2025-06-30 19:42:34.819823+00 f t - - saco sangre para perfil general completo con orina canino macho jack russel .\nvisita a domicilio para extraccion de sangre para evaluar medio interno indicado por otro colega \N \N 2370 2141 \N 88 1510 {"studies": [], "medications": [], "specialities": []} +1040 2025-06-30 19:45:02.396881+00 2025-06-30 19:45:02.396895+00 f t - . indico desparasitacion con moxidex plus repitiendo a los 15 dias canina hembra entera caniche 3 años .\nvisita a domicilio para vacunacion anual.\nme comenta la tutora que la canina nunca accedio al exterior .\ndesparasitacion interna vencida\nrevision clinica \naus s/p\npalpacion abdominal s/p\nnormohidratada\nnormotermica \N \N 2925 2567 \N 88 1506 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1168", "next_application_months": 3}], "specialities": []} +1041 2025-06-30 19:47:29.735274+00 2025-06-30 19:47:29.735283+00 f t - sugiero por la edad del paciente, realizar perfil hepatico + calcio + fosforo + ionograma serico dejo pipeta para desparasitacion externa . felino macho comun europeo castrado.\nvisita a domicilio para vacunacion anual.\ndesparasitacion externa e interna vencidas\nrevision clinica\naus s/p\npalpacion abdminal s/p\nnormotermico normohidratado\nresto s/p \N \N 2894 2549 \N 88 1502 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +1042 2025-06-30 19:49:28.540452+00 2025-06-30 19:49:28.540462+00 f t . . dejo pipeta para desparasitacion externa felino macho comun europeo castrado.\nvisita a domicilio para vacunas anuales.\ndesparasitaciones vencidas\nacceden al exterior por el patio.\nrevision clinica \naus s/p\npalpacion abdominal s/p\nnormotermico \nnormohidratado \N \N 2894 2548 \N 88 1503 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +1043 2025-06-30 19:53:20.555992+00 2025-06-30 19:53:20.556+00 f t otitis sugiero vacunar antes de seguir saliendo al exterior realizo limpieza otica bilateral y comenzamos tto con otovier nf . en oido izquierdo indico 2 gotas cada 12 hs por 7 dias . en oido derecho , 2 gotas cada 8 hs por 5 dias , luego 2 gotas cada 12 hs por 5 dias mas .\nindico desparasitacion con moxidex plus repitiendo a los 15 dias caniche macho 4 meses aprox.\nconsulta por rascado de orejas . evolucion 2 semanas .\nno tiene vacunas ni desparasitaciones.\nsale a pasear con la tutora por la zona .\nrevision clinica \naus s/p\npalpacion abdominal s /p\nnormotermico \nnormohidratado\noidos: otitis bilateral ( mas marcada en oido derecho) \N \N 3002 2626 \N 88 1525 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1044 2025-06-30 20:25:24.741941+00 2025-06-30 20:25:24.74195+00 f t enfermedad degenerativa cronica osteoarticular sigue tomando artrin + pregabalina sugiero comenzar con fisioterapia hembra labradora 13 años . acudo a domicilio para lectura de analisis ( realizo rx de columna toracolumbar lumbosacra y art coxofemoral ll y ap)\npresenta incongruencia coxofemoral, enfermedad degenerativa cronica, mineralizacion de discos intervertebrales , etc \N \N 472 560 \N 88 1519 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1045 2025-06-30 20:32:15.563956+00 2025-06-30 20:32:15.563964+00 f t neo en cav abdominal ? mesotelioma? linfonodulos reactivos ? sugiero alimentacion palatable hasta tener los resultados de los complementarios realizo pasaje de ringer lactato sc (200 ml) aplico medicacion mencionada anteriormente.\nsolicito perfil hepatico + calcio + fosforo + ionograma serico + ferrremia \nsolicito ecografia abdominal felino hembra comun europeo 9 años\nconsulta por vomitos biliosos + diarrea hemorragica. evolucion 24 hs . me cuenta la tutora que perdio mucho peso en el ultimo tiempo y con respecto a la alimentacion , come unicamente pollo y menudencias ya que no quiere otra cosa .\nhace unos meses, estuvo en tratamiento con doxiciclina por mycoplasma ( tratado en otra veterinaria)\nrevision clinica\naus s/p\ndeshidratacion 8-9 %\nnormotermica 38.7 \npalpacion abdominal. se palpa en la region del epi/mesogastrio, una masa de forma redondeada de aprox 3 cm de diametro. \N \N 3346 2871 \N 88 1560 {"studies": ["7", "3"], "medications": [{"id_medicina": "1069", "next_application_months": 0}, {"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "950", "next_application_months": 0}, {"id_medicina": "704", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}], "specialities": []} +1046 2025-06-30 20:35:11.976119+00 2025-06-30 20:35:11.976128+00 f t enteritis parasitaria ? . aplico unica dosis de dexa e indico moxidex plus repitiendo a los 15 dias para los 3 gatos que conviven juntos, ya que hace mucho que no se desparasitan internamente y comen dieta barf felino macho comun europeo castado . 5 años \nconsulta por deposiciones con trazas de sangre. evolucion 24 hs .\ncome dieta barf\nconvive con otros 2 felinos \nno sale al exterior \nplan sanitario vencido\nrevision clinica \naus s/P\npalpacion abdminal , leve inflamacion de asas intestinales\nnormotermico normohidratado \N \N 3347 2872 \N 88 1559 {"studies": [], "medications": [{"id_medicina": "704", "next_application_months": 0}], "specialities": []} +1047 2025-06-30 20:37:03.648541+00 2025-06-30 20:37:03.64855+00 f t . en 21 dias indico sextuple - canino hembra mestizo 4 meses aprox\nconsulta para reanudar plan de vacunacion.\nno sale al exterior, no convive con otros animales\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermica normohidratada \N \N 824 930 \N 88 1605 {"studies": [], "medications": [{"id_medicina": "1156", "next_application_months": 3}], "specialities": []} +1048 2025-06-30 20:38:38.526797+00 2025-06-30 20:38:38.526806+00 f t . . saco sangre canino hembra mestizo.\nextraccion a domicilio para perfil prequirurgico 2 para castracion \N \N 710 827 \N 88 1581 {"studies": [], "medications": [], "specialities": []} +1049 2025-06-30 20:39:14.622386+00 2025-06-30 20:39:14.622399+00 f t - . saco sangre canino hembra entera\nextraccion para perfil prequirurgico 2 para castracion \N \N 710 827 \N 88 1582 {"studies": [], "medications": [], "specialities": []} +1050 2025-07-01 01:02:20.020401+00 2025-07-01 01:02:20.020409+00 f t Inflamación mucosa nasal irritativa? Cuerpo extraño? Neo? Solicito evaluación radiológica de la cavidad nasal. Prednisol gotas x 3 días. Estornudos a repetición desde el fin de semana. Notó que ayer comió un poco menos, es la primera vez q le pasa. No fuman, no usan sahumerios con frecuencia ni tienen aromatizante ambiental. No sale afuera del dpto, solo balcón protegido donde no está en contacto con otros animales.\nEOG s/p EOP ollares normales, secreción serosa bilateral muy escasa. Estornudó algunas veces en la consulta. \N \N 3645 3095 \N 91 1610 {"studies": ["2"], "medications": [], "specialities": []} +1051 2025-07-01 01:07:58.44666+00 2025-07-01 01:07:58.446675+00 f t CONSOLIDACIÒN LOBAR / NEUMONIA LOBAR. Continuar manejo de irritantes ambientales y control de peso. (En consulta hablamos de patrón de alimentación y va a comenzar con alimento reduce calorie) Prednisolona x 10 días a dosis decreciente y Amoxicilina con ácido clavulánico x 14 días. Control radiológico en 1 mes. Cta virtual para devolución de estudios.\nRx: SE OBSERVA IMAGEN SEMIDENSA EN HEMITÒRAX DERECHO EN RELACIÒN A LÓBULO MEDIO (SIGNO LOBAR) QUE NO PERMITE DESCARTAR CONSOLIDACIÒN LOBAR / NEUMONIA LOBAR.\nSILUETA CARDÍACA DE APARIENCIA CONSERVADA.\nESPACIO PLEURAL Y MEDIASTINO SIN ALTERACIONES RADIOLÓGICAS ACTUALES \N \N 2672 2369 \N 91 1607 {"studies": [], "medications": [], "specialities": []} +1052 2025-07-01 05:28:50.414349+00 2025-07-01 05:28:50.414358+00 f t - - Se aplica triple felina, antirabica y se desparasita en forma interna/externa Eog: s/p \N \N 3496 2988 \N 1 1596 {"studies": [], "medications": [], "specialities": []} +1053 2025-07-01 05:30:45.82745+00 2025-07-01 05:30:45.827462+00 f t - - Se vacuna con triple felina, antirabica y se desparasita en forma interna/externa Eog: s/p \N \N 3496 2989 \N 1 1595 {"studies": [], "medications": [], "specialities": []} +1054 2025-07-01 05:32:53.79623+00 2025-07-01 05:32:53.79624+00 f t - - Se aplica triple felina, antirabica y se desparasita en forma interna y externa. Eog: s/p \N \N 3496 2990 \N 1 1594 {"studies": [], "medications": [], "specialities": []} +1055 2025-07-01 05:33:38.738653+00 2025-07-01 05:33:38.738661+00 f t - - Se vacuna con antirabica Eog: s/p \N \N 3485 2979 \N 1 1588 {"studies": [], "medications": [], "specialities": []} +1056 2025-07-01 05:34:32.264033+00 2025-07-01 05:34:32.264042+00 f t - - Se toma muestra de sangre a pedido de un especialista - \N \N 2046 1891 \N 1 1553 {"studies": [], "medications": [], "specialities": []} +1057 2025-07-01 05:36:09.785343+00 2025-07-01 05:36:09.785354+00 f t - - Se comenta la gravedad del caso a los propietarios y deciden eutanasiar al paciente. Paciente muy deteriorado con muchas patologias. \N \N 3266 2817 \N 1 1551 {"studies": [], "medications": [], "specialities": []} +1058 2025-07-01 05:41:55.716238+00 2025-07-01 05:41:55.716247+00 f t - - Se vacuna con triple felina y antirabica Eog: s/p \N \N 3228 2794 \N 1 1545 {"studies": [], "medications": [], "specialities": []} +1059 2025-07-01 05:43:02.591928+00 2025-07-01 05:43:02.591941+00 f t - - Se vacuna con triple felina y antirabica Eog: s/p \N \N 3228 2793 \N 1 1544 {"studies": [], "medications": [], "specialities": []} +1060 2025-07-01 05:44:54.228533+00 2025-07-01 05:44:54.228544+00 f t - - Los propietarios comentan que quisieran realizar la euranasia y se duerme al animal Se revisa al animal y se comenta a los propietarios la gravedad del caso. Se comenta que el problema que tiene es irreversible \N \N 3242 2804 \N 1 1548 {"studies": [], "medications": [], "specialities": []} +1061 2025-07-01 05:48:25.752536+00 2025-07-01 05:48:25.752548+00 f t Reflujo por ayuno prolongado. - - Comenta que con las indicaciones que se le había dado la vez de la visita en el domicilio ya remitieron los episodios de vómitos, pero de todos modos quiere una devolución de los resultados de los estudios. Los mismos no evidencian ninguna particularidad así que se indica que continúe de la misma manera. \N \N 2370 2141 \N 1 1530 {"studies": [], "medications": [], "specialities": []} +1062 2025-07-01 06:29:27.191965+00 2025-07-01 06:29:27.191974+00 f t - - Se vacían los sacos a anales. Eog: s/p comenta la propietaria que bajo la incontinencia desde que comenzó con tratamiento de fisioterapia y ozonoterapia. \N \N 123 128 \N 1 1500 {"studies": [], "medications": [], "specialities": []} +1063 2025-07-01 06:30:18.423308+00 2025-07-01 06:30:18.423321+00 f t - - Se vacuna contra rabia y sextuple Eog: s/p \N \N 2973 2606 \N 1 1516 {"studies": [], "medications": [], "specialities": []} +1064 2025-07-01 06:34:02.994687+00 2025-07-01 06:34:02.994701+00 f t Pulicosis severa. - Se indica hacer tratamiento antiparasitario externo, y ambiental, se aplica un antiinflamatorio hasta que me de el antiparasitario. Al revisar los mismos se evidencia una gran cantidad de pulgas que son lo causantes de las lesiones en piel. \N \N 2754 2433 \N 1 1501 {"studies": [], "medications": [], "specialities": []} +1065 2025-07-01 06:40:52.631935+00 2025-07-01 06:40:52.631946+00 f t - Se india hacer paseos periódicos. Se vacuna contra rabia y sextuple. Eog: s/p \N \N 2856 2516 \N 1 1492 {"studies": [], "medications": [], "specialities": []} +1066 2025-07-01 06:42:23.464437+00 2025-07-01 06:42:23.464445+00 f t - - Se vacuna con sextuple y antirbica Eog: s/p \N \N 873 985 \N 1 1442 {"studies": [], "medications": [], "specialities": []} +1067 2025-07-01 06:43:47.912813+00 2025-07-01 06:43:47.912822+00 f t - - - Visita no se realizó porque la propietaria no estaba en su domicilio. \N \N 2754 2433 \N 1 1476 {"studies": [], "medications": [], "specialities": []} +1068 2025-07-01 06:45:07.316744+00 2025-07-01 06:45:07.316757+00 f t - - - La visita no se realizó porque la porpietsria no estaba en el domicilio. \N \N 2754 2434 \N 1 1477 {"studies": [], "medications": [], "specialities": []} +1069 2025-07-01 06:48:14.172022+00 2025-07-01 06:48:14.172034+00 f t Gastritis? CE? Se da orden de sangre y ecografía. Se aplica ondansetron, dipirona, tramadol, ranitidina, y maropitant. Se revisa al paciente y se evidencia que está con un nivel de. Deshidratación marcado, normotermico. Los propietarios comentan que no comió nada fuera de lo normal que pueda causarle el cuadro de vómitos que tiene. Presenta dolor abdominal. \N \N 2719 2405 \N 1 1475 {"studies": [], "medications": [], "specialities": []} +1070 2025-07-01 06:58:21.657732+00 2025-07-01 06:58:21.657745+00 f t - Se dan consejos de cómo hacer la adaptación con las otras mascotas con las que convive. Se aplica triple felina. Eog: s/p \N \N 352 2317 \N 1 1455 {"studies": [], "medications": [], "specialities": []} +1071 2025-07-01 07:04:09.058935+00 2025-07-01 07:04:09.058958+00 f t Ayuno prolongado? Se da orden de sangre y ecografía abdominal. Se indica disminuir los perliodos prolongados de ayuno y hacer complementarios. Comenta la propietaria que tiene vómitos intermitentes, pero que no disminuye el apetito, ni está decaído. Come una o veces al día. A la inspeccion clínica no se evidencian particularidades \N \N 2370 2141 \N 1 1412 {"studies": [], "medications": [], "specialities": []} +1082 2025-07-02 18:35:47.649984+00 2025-07-02 18:35:47.649993+00 f t - - - - \N \N 410 489 \N 70 678 {"studies": [], "medications": [], "specialities": []} +1072 2025-07-01 07:10:04.426089+00 2025-07-01 07:10:04.426103+00 f t Hemangiomas? Hemagiosarcoma de piel? Se da orden para los mismos. Se indica hacer una nuevacotologia de esas amplllas y sangre. El paciente no presenta más que una particularidad, que son unos lunares de sangre que resuelven en forma espontánea. \N \N 2113 1940 \N 1 1366 {"studies": [], "medications": [], "specialities": []} +1073 2025-07-01 07:25:41.416867+00 2025-07-01 07:25:41.416876+00 f t - Que controlen que tome agua. Se retira la sonda y se indica controlar para ver evolución sin sonda Se comenta el estado actual de la mascota, las posibilidades que tiene de llevar una vida normal. Y la propietaria entiende y quiere que saber si se le puede sacar la sonda nasoesofagica. \N \N 2271 2065 \N 1 1399 {"studies": [], "medications": [], "specialities": []} +1074 2025-07-01 21:00:44.93963+00 2025-07-01 21:00:44.939639+00 f t Cistitis Si vuelve a repetir episodio, tratamos de buscar un tto a largo plazo q pueda sostener (tutora tiene dificultades para medicarlo vía oral). Por ahora vemos como responde al antiinflamatorio y ya está nuevamente comiendo el alimento q consumía. Mdc: nuevamente sx urinarios, va mucho a las piedras, se lame pene, lo nota molesto. Estaba comiendo el excellent urinary, se quedó sin alimento y compró en el mercado, y luego de ese cambio notó los sx. Paciente alerta, hidratado, lo veo ir tres veces a las piedras en el tiempo q estoy en el domicilio y luego se lame pene, vejiga se palpa vacía, come con ganas. \N \N 1807 1714 \N 91 1621 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1075 2025-07-01 21:06:43.295222+00 2025-07-01 21:06:43.29523+00 f t Síndrome de cushing de origen central ? Interconsulta con endocrino, considerar inhibición con dexametasona a dosis bajas pese a relación cortisol creatinina en orina normal x la hiperplasia adrenal bilateral.\nAl finalizar urovier, realizar AOC de control. Se establecerá al completar dx. Tele consulta para devolución de estudios. Desde q suspendió el urinary s/o disminuyó levemente la ingesta de agua pero sigue incrementada respecto a lo habitual (a veces más marcado, a veces más "normal", pero sigue aumentada).\nEn AS solamente GPT elevada.\nEn ECO próstata sin quistes, comienza con sx de atrofia, tiroides normales, hepatopatía metabólica leve, nefropatía intersticial e hiperplasia adrenal bilateral (++)\nEstá tomando urovier xq tenía fosfatos triples. \N \N 2732 2418 \N 91 1614 {"studies": [], "medications": [], "specialities": ["72"]} +1076 2025-07-01 21:12:02.128207+00 2025-07-01 21:12:02.128216+00 f t No se realizo No se realizo No se realizo No se realizo \N \N 3403 2909 \N 68 1564 {"studies": [], "medications": [], "specialities": []} +1077 2025-07-01 21:12:30.571889+00 2025-07-01 21:12:30.571901+00 f t No se realizo No se realizó No se realizo No se realizo \N \N 3403 2908 \N 68 1565 {"studies": [], "medications": [], "specialities": []} +1078 2025-07-01 21:15:06.341013+00 2025-07-01 21:15:06.341029+00 f t Apta clínicamente para castracion. \nDebe actualizar vacunas. Pre o intra quirúrgico perfil general completo. Indico actualizar plan sanitario. Buen estado general, tórax sin particularidades a la auscultación. No se palpan adenomegalias ni alteraciones. Condición corporal óptima. Patrón respiratorio normal. \N \N 3451 2945 \N 68 1577 {"studies": [], "medications": [], "specialities": []} +1079 2025-07-01 23:56:34.837076+00 2025-07-01 23:56:34.837088+00 f t Confirmación del medio interno del paciente Procedimiento de castracion Perfil prequirurgico hemostatico Estudios prequirúrgico para castracion \N \N 710 827 \N 86 1583 {"studies": [], "medications": [], "specialities": []} +1080 2025-07-01 23:57:38.970864+00 2025-07-01 23:57:38.970877+00 f t Castracion Evaluado por CQV Perfil hemostatico prequirurgico Analisis del medio interno de Pampa \N \N 710 2947 \N 86 1584 {"studies": [], "medications": [], "specialities": []} +1081 2025-07-02 17:38:33.100175+00 2025-07-02 17:38:33.100185+00 f t cuadro neurologico interconsulta con neurologia Por el momento no se indica ningun tratamiento ya que se sospecha que el problema principal sea de indole neurologico y no endocrino paciente derivado por sospecha de s de cushing\nNo esta con polidipsia/poliuria\nA la inspeccion piel y pelo ok \N \N 2717 2402 \N 98 1472 {"studies": [], "medications": [], "specialities": []} +1103 2025-07-04 20:14:47.729964+00 2025-07-04 20:14:47.729973+00 f t - - - - \N \N 2614 2327 \N 86 1509 {"studies": [], "medications": [], "specialities": []} +1090 2025-07-03 01:57:38.617683+00 2025-07-03 01:57:38.617694+00 f t Consulta para control general Comenzar con plan de vacunación ni bien pueda (se indican 2 dosis de triple felina separadas x 30 días y vacuna antirrábica) Desparasitación con moxidex plus. La adoptó hace aprox 3 meses y tendría un mes en ese momento. La desparasitó la persona q la rescató, no sabe con que drogas ni esquema. Aún no recibió ninguna vacuna. Convive con un gato adulto vacunado y ambos son indoor (tienen patio pero no salen fuera de la casa). Come excellent kitten, la ve crecer bien.\nPaciente con buen estado general, muy activa, condición corporal normal, ya comenzó cambio de dentición. EOG s/p \N \N 3484 2978 \N 91 1587 {"studies": [], "medications": [], "specialities": []} +1091 2025-07-03 02:02:03.720569+00 2025-07-03 02:02:03.720579+00 f t Neo en cuello. Se indica preqx y cx con posterior histopatológico.\nLuego de resuelto esto, actualizar vacunas. Moxidex plus. Hace 3 meses convive con gatita bebé rescatada, a ella la desparasitaron y a él no. El año pasado fue vacunado, este año aún no (no veo libreta). Tiene una neoformación en lateral izquierdo del cuello, ya fue evaluado por vete, le dijeron q era de grasa. Actualmente creció y hubo dos cambios: se presenta alopécico y vascularizado. \nCome excellent gato adulto, está con sobrepeso. Hablamos de pasar a versión reducida en calorías, sumar proteína casera a la dieta y fomentar actividad física. \N \N 3484 2977 \N 91 1586 {"studies": ["3", "9"], "medications": [], "specialities": []} +1092 2025-07-03 12:39:32.0017+00 2025-07-03 12:39:32.001709+00 f t Probable asma felina. Control en 3 semanas. Prednisolona 5 gotas x día x 5 días. Luego 3 gotas x día x 5 días más. Luego 1 gota x día x 5 días. Por último, 1 gota cada 48 hs x 1 semana. Consulta x accesos de tos no productiva. Lagañas. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. \N \N 3740 3171 \N 70 1638 {"studies": [], "medications": [{"id_medicina": "987", "next_application_months": 0}], "specialities": []} +1093 2025-07-03 12:51:43.900759+00 2025-07-03 12:51:43.900769+00 f t Probable insuficiencia renal. Se solicita análisis de sangre PGC c/orina y ecografía abdominal. Dieta exclusiva de Agility x 15 días. Rever según resultados de estudios. Consulta x vómitos crónicos de un año de duración y pérdida de peso desde el mismo tiempo. EOG normal. Apetito y defecación normales. Sed y micción aumentadas. Palpación abdominal sin particularidades. Auscultación cardíaca: soplo mitral 2/6. Toma Nogastrol. \N \N 3710 3148 \N 70 1623 {"studies": ["1", "7"], "medications": [], "specialities": []} +1105 2025-07-04 20:18:17.426854+00 2025-07-04 20:18:17.426863+00 f t - - - - \N \N 2732 2418 \N 86 1495 {"studies": [], "medications": [], "specialities": []} +1089 2025-07-02 23:08:32.940816+00 2025-07-02 23:08:32.940825+00 t t Rx de cavidad nasal RX de cavidad nasal RX de cavidad nasal Devolucion de resultados \N \N 3645 3095 \N 91 1644 {"studies": [], "medications": [], "specialities": []} +1096 2025-07-03 20:13:24.386807+00 2025-07-03 20:13:24.386815+00 f t Diarrea crónica Volver a contactarse para ver evolución Espero resultados de las aplicaciones dado que es imposible darle casi medicación vía oral excepto por el enterosulfatrin que van a ver si se lo pueden dar Es un animal que tiene unos cuantos años posiblemente más de 10, por su carácter No fue desparasitada y es bastante difícil vacunarla, presenta diarrea de tipo cremosa parecida a la consistencia de la sabora y de un color parecido con lo cual lo descarto giardias o coccidios. Tampoco por la duración que ya lleva 15 días no puedo descartar enteritis eosinofílica aplico dexametasona tribiotic ivermectina cestodan e indico para que le den entero sulfatrim por 10 días \N \N 3692 3133 \N 74 1620 {"studies": [], "medications": [{"id_medicina": "248", "next_application_months": 0}, {"id_medicina": "745", "next_application_months": 0}], "specialities": []} +1097 2025-07-04 00:44:07.323745+00 2025-07-04 00:44:07.323754+00 f t Urolotiasis/cistitis idiopatica felina. 1) consulta con Flores de Bach\n2) uso de feromonas\n3) aumento de ingesta de agua y de nro de literas y dentro de la casa . Se aplica\nMeloxicam 0.1 MG/Kg\nTramadol 2.5mg/Kg.\nRp/\n1) cisticalm espolvorear 1 cápsula diaria con alimento por un mes.\n2) gabalbech 0.5ml vía oral cada 12 hs por 10 días Paciente con cuadro de cistitis reiteradas ocasiones. Se atiene con nefrourologo en Panda. Tiene turno el martes pero lo ve que hace pis con sangre y de a ratos. Análisis de orina 9/6. sin cristales , ecografía con lito de 0.26*0.64. \nEog s/p conserva apetito.\nEop: abdomen blando. Manifiesta leve dolor . Vejiga no palpable . \N \N 3848 3249 \N 79 1652 {"studies": [], "medications": [{"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +1098 2025-07-04 00:57:04.30809+00 2025-07-04 00:57:04.308101+00 f t Inflamación leve de mucosa nasal. Control según evolución. Se indica continuar con prednisolona a dosis decreciente completando 2 semanas de tto. Devolución de estudios: Disminuyeron los sx, lo ven normal. Aún estornuda pero más espaciado. Radiológicamente no hay nada relevante. \N \N 3645 3095 \N 91 1644 {"studies": [], "medications": [], "specialities": []} +1100 2025-07-04 14:09:05.335153+00 2025-07-04 14:09:05.335163+00 f t sindrome de cushing, desorden del calcio realizar complementarios para continuar ruta diagnostica Se indica inhibicion con dexametasona que se hara de la siguiente manera:\nEl paciente debe tener al menos 6 hs de ayuno y se medira: cortisol serico, calcio, fosforo, FAS, trigliceridos, urea, creatinina\nSe inyectaran 0.01 mg/kg de dexametasona endovenosa\nSe tomara una miuestra para cortisol serico 4 hs post dexametasona; se volvera a tomar otra muestra para cortisol serico 8 hs post dexametasona consulta endocrinologica\nComenta cuado de polidipsia/poliuria sin polifagia \N \N 2732 2418 \N 98 1634 {"studies": [], "medications": [], "specialities": []} +1099 2025-07-04 01:28:36.232627+00 2025-07-04 01:28:36.232635+00 f t Estrés, alopecía psicogénica por lamido?\nConstipación (la sangre se debe a eso?) poliuria? Disponerle recursos cercanos al lugar que eligió, si puede ser "escondido" de la otra gata, mejor. Darle momentos en el día de encerrar a la otra gatita para que pueda tener libertad de deambular por la casa, sesiones de juego. Proporcionarle un escondite.\nRespecto a estudios: esperar a la semana q viene para la ecografía xq sospecho q tanta MF puede dar sombra acústica y dificultar correcta evaluación del abdomen. Feromonas en difusor y ohm en pasta para el manejo del estrés.\nFelilax para la constipación. En abril se incorporó una gata y una persona a la vivienda. No pudieron hacer preparación previa.\nDesde entonces está muy estresada, ahora eligió un lugar del cual no quiere salir, le acercan agua y comida, y no quiere ir a las piedras, las pocas veces q baja hace sus necesidades en el piso al lado de dónde eligió quedarse. Bajó de peso, hace mucho pis, pero no la ven tomar mucha agua, falta pelo en zona ventral de abdomen y cara interna de muslos (patrón simétrico bilateral y piel en condiciones normales), ayer vieron sangre en MF.\nEOG s/p. Boca ok, abdomen se palpa ABUNDANTE cantidad de MF dura (sospecho q la frecuencia de evacuación se ve afectada x no querer salir de su lugar, y posiblemente la cantidad de orina se deba a lo mismo, xq relatan q hace pocas veces en el día pero mucha cantidad cada vez), ausc: soplo. \N \N 3820 3232 \N 91 1648 {"studies": ["1", "8", "3"], "medications": [], "specialities": []} +1101 2025-07-04 16:01:41.972698+00 2025-07-04 16:01:41.972706+00 f t Obesidad aprox 40% sobrepeso Que se acerque a un centro veterinario donde más de una persona pueda hacerse cargo se la mascota . Paciente no se deja abordar ni revisar, los tutores no cooperan, ni acceden a la sedacion \N \N 3458 2952 \N 21 1590 {"studies": [], "medications": [], "specialities": []} +1102 2025-07-04 17:02:16.073612+00 2025-07-04 17:02:16.073624+00 f t Piometra/mucometra a cuello abierto.\nHepatitis aguda/pancreatitis Control en 48hs Tto inyectable tribiotic enrofloxacina tramadol dexametasona Paciente con buen estado general mocosas rosadas abundante sarro, temperatura normal , abdomen blando,hidratación ok, Presenta deformaciones en más de diámetro 1,5 cm en la vulva, Y al realizar tactos se obtiene una secreción seropurulenta. También presento mat fecal blanda verde amarillenta con presencia de moco \N \N 3868 3260 \N 21 1657 {"studies": ["1", "8"], "medications": [], "specialities": []} +1613 2025-09-01 11:38:19.743953+00 2025-09-01 11:38:19.743964+00 f t - - - Se toma muestra de sangre para pcr de vif y vilef \N \N 6509 5307 \N 1 2094 \N +1625 2025-09-01 12:24:26.918056+00 2025-09-01 12:24:26.91807+00 f t - - Continuar como se habia indicado y tratar de disminuir cualquier factor estresante para el paciente. En los resultados del análisis de orina no se evidencia ninguna particularidad entonces pensamos que se trata de una cistitis idiopatica. \N \N 6683 5452 \N 1 2157 \N +1635 2025-09-03 04:14:59.78569+00 2025-09-03 04:14:59.7857+00 f t Neo cutánea Necesidad quirúrgica y de estudios complementarios de control anual Dexametasona Iny + enrofoxacina + penicilina estreptomicina \nContinua con tratamiento oral prednisolona + enrofloxacina cada 24 hs Neoplasias cutánea en región de cruz, ulcerada e infectada , consistencia blanca poco adherida, con mucha movilidad \N \N 7763 6395 \N 94 2355 \N +1644 2025-09-04 11:56:04.3556+00 2025-09-04 11:56:04.355609+00 f t Sindrome atopico felino/PF No cambiar el alimento. Pipeta cada 30 dias. Rp prednisol 6 gotas por dia por 10 dias luego cada 48 hs por 5 tomas. Evaluar respuesta y recidiva, control posterior. Consulta dermatologica: paciente con cuadro de prurito de cabeza y cuello, desde Enero. La trataron por otitis pero sin rpta. Le dieron una dosis de gcc y respondio, luego siguio con cetirizina. Presenta algunas lesiones papulocostrosas en zona cuello, dorsal del cuerpo y zona lumbar. Explico Dx dif. \N \N 785 902 \N 75 1090 \N +1653 2025-09-05 20:08:57.740459+00 2025-09-05 20:08:57.740472+00 f t . . . . \N \N 4334 5903 \N 100 2235 \N +1659 2025-09-07 12:27:57.521515+00 2025-09-07 12:27:57.521527+00 f t enteritis . Dieta antidiarreica+ RC intestinal+ coproparasitológico+ perfil gastrointestinal 1+2 Diarrea intermitente \N \N 7841 6453 \N 92 2364 \N +1675 2025-09-09 16:25:14.951695+00 2025-09-09 16:25:14.951708+00 f t . . . . \N \N 7602 6257 \N 90 2303 \N +1106 2025-07-04 20:20:35.954588+00 2025-07-04 20:20:35.954598+00 f t - - - - \N \N 409 488 \N 86 968 {"studies": [], "medications": [], "specialities": []} +1107 2025-07-04 20:22:25.145737+00 2025-07-04 20:22:25.145746+00 f t - - - - \N \N 659 778 \N 86 1003 {"studies": [], "medications": [], "specialities": []} +1108 2025-07-04 20:24:09.593396+00 2025-07-04 20:24:09.593405+00 f t - - - - \N \N 713 832 \N 86 1042 {"studies": [], "medications": [], "specialities": []} +1109 2025-07-04 20:25:33.937034+00 2025-07-04 20:25:33.937043+00 f t - - - - \N \N 991 1088 \N 86 1182 {"studies": [], "medications": [], "specialities": []} +1110 2025-07-04 20:26:55.57379+00 2025-07-04 20:26:55.573802+00 f t - - - - \N \N 893 1004 \N 86 1180 {"studies": [], "medications": [], "specialities": []} +1111 2025-07-04 20:31:10.878532+00 2025-07-04 20:31:10.878544+00 f t - - - - \N \N 3560 3037 \N 90 1606 {"studies": [], "medications": [], "specialities": []} +1112 2025-07-04 20:39:59.508032+00 2025-07-04 20:39:59.50804+00 f t - - - - \N \N 3346 2871 \N 90 1562 {"studies": [], "medications": [], "specialities": []} +1113 2025-07-04 23:09:16.447295+00 2025-07-04 23:09:16.447303+00 f t . . Tribiotic + antiséptico local Mejor. Repito antibiótico. \N \N 3546 3027 \N 92 1611 {"studies": [], "medications": [], "specialities": []} +1114 2025-07-04 23:11:21.969856+00 2025-07-04 23:11:21.969869+00 f t Séxtuple+ Var + desparasitación Repetir desparasitación en 3 meses Séxtuple+ Var + desparasitación moxidex plus Vacunación anual \N \N 938 1042 \N 92 1649 {"studies": [], "medications": [{"id_medicina": "1148", "next_application_months": 12}, {"id_medicina": "1159", "next_application_months": 12}], "specialities": []} +1115 2025-07-05 01:44:34.322275+00 2025-07-05 01:44:34.322287+00 f t Cuadro severo de dolor. Compresión medular? Si la evolución no es favorable, suspendería AiNes para dar GCC. Sumo tramadol al rimadyl (3mg/kg c/8 hs), aplico ACS. Su vete está de viaje. Tiene displasia de cadera y artrosis dx x rx. Toma rimadyl cuando hay dolor, condrovet y ACS inyectable (ahora solo condrovet xq se le estaba haciendo difícil inyectarlo). Tiene estudios recientes de sangre (ok) y eco: barro biliar, quistes en hígado, le indicaron ursoliv. \nLos últimos días le cuesta más pararse, se le cruzan MP al caminar, cuando se mueve un poco camina mejor, le cuesta más al comienzo.\nDesde anoche lo nota inquieto, no durmió, jadea. Se lame proyección de tuberosidades isquiaticas y se molesta a la palpación de esa región. Propiocepción y sensibilidad superficial disminuída en ambos MP. No manifiesta dolor a la palpación presión de columna. Ausc torácica s/p. \N \N 3905 3281 \N 91 1663 {"studies": [], "medications": [{"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +1116 2025-07-05 01:47:42.337576+00 2025-07-05 01:47:42.337587+00 f t Otitis por malassezia, diferencial otodectes. Tomo muestra de secreción ótica en vaselina para enviar a laboratorio. Realizo limpieza, indico tto con otovier classic. El gatito con el q convive está con otitis hace un tiempo q no termina de resolver (parece por malassezia). Ahora comenzó él en oreja derecha. \N \N 745 869 \N 91 1661 {"studies": [], "medications": [], "specialities": []} +1117 2025-07-05 01:51:58.127036+00 2025-07-05 01:51:58.127044+00 f t Otitis bilateral x malassezia, diferencial otodectes. Le falta una dosis de triple felina y la rabia, indiqué que en una semana solicite vacunación y de paso controlamos oídos. Retoma otovier classic. Tomo muestra de secreción ótica para enviar a laboratorio y observar al microscopio. Estuvo en tto x otitis, mejoró pero no terminó de resolver. Me comenta q no siempre podría cumplir con el tto en cantidad de veces de aplicación y que al sacudirse mucho medicamento salía al exterior del oído.\nLo veo mejor xq conducto menos inflamado y menos irritado q la vez anterior, con menos cantidad de secreción pero prurito intenso. Realizo limpieza, explico q el tto es largo pero no descarto otodectes (se toma muestra para laboratorio) \N \N 745 3282 \N 91 1662 {"studies": [], "medications": [], "specialities": []} +1118 2025-07-05 19:12:40.76159+00 2025-07-05 19:12:40.761599+00 f t .Insuficiencia renal aguda o crónica.\r\n\r\nPosible infección o inflamación sistémica activa.\r\n\r\nHiperproteinemia compatible con inflamación crónica. Control clínico y laboratorial urgente.\r\n\r\nMonitoreo de función renal y signos clínicos.\r\n\r\nEvaluar presión arterial.\r\n\r\nConsulta con especialista en nefrología. Fluidoterapia IV.\r\n\r\nDieta renal y quelantes de fósforo.\r\n\r\nAntibióticos si hay foco infeccioso.\r\n\r\nEstudios complementarios: ecografía y orina. Leucocitos elevados (19.900/mm³): indica posible infección o inflamación.\r\n\r\nUrea (331 mg/dl) y creatinina (10,17 mg/dl) muy elevadas: sugiere insuficiencia renal severa.\r\n\r\nFosfato y amilasa también muy altos.\r\n\r\nGlobulinas elevadas: respuesta inmunológica o inflamatoria crónica. \N 413 492 114 86 1672 {"studies": [], "medications": [], "specialities": []} +1119 2025-07-05 20:11:04.039957+00 2025-07-05 20:11:04.039968+00 f t Insuficiencia mitral leve (ACVIM estadio B1).\n\nInsuficiencia aórtica leve.\n\nArritmia sinusal sin signos clínicos graves.\n\nFunción sistólica conservada. Iniciar o mantener dieta senior.\n\nRealizar control cardiovascular en 4 a 6 meses.\n\nNo suspender ninguna medicación sin consultar al veterinario.\n\nTraer este informe al próximo control. No se indica medicación específica en este momento.\n\nMantener cualquier tratamiento ya instaurado, si lo hubiera.\n\nControl periódico según evolución. Soplo sistólico leve (grado 1/6) en foco mitral.\n\nMucosas normales, pulso conservado, sin tos ni síncope.\n\nSensorio alerta. \N \N 266 335 \N 7 1673 {"studies": [], "medications": [], "specialities": []} +1120 2025-07-05 20:13:26.7607+00 2025-07-05 20:13:26.76071+00 f t Lipidosis hepática felina.\nImagen compatible con quiste hepático (diferencial: hiperplasia adrenal).\nPosible enfermedad adrenal (requiere seguimiento).\nAcumulación de líquido pleural caudal.\nCambios renales compatibles con nefropatía leve/crónica. Realizar ecografía Doppler para definir naturaleza de la imagen hepática.\n\nControl hepático y renal en 7-10 días.\n\nEstudios complementarios: perfil bioquímico completo, función adrenal.\n\nMonitoreo clínico cercano por edad y comorbilidades. Dieta hepática específica y soporte nutricional intensivo.\n\nManejo del estrés.\n\nEvaluación de necesidad de diuréticos si hay signos respiratorios.\n\nConsiderar tratamiento si se confirma compromiso adrenal. Hígado: agrandado, ecogenicidad aumentada, patrón compatible con lipidosis hepática.\n\nVesícula biliar: distendida levemente, contenido normal.\n\nImagen quística hepática (2,6 x 2,3 cm) en lóbulo derecho, diferencial con glándula adrenal derecha hiperplásica.\n\nAdrenal izquierda: ligeramente aumentada de tamaño (posible por estrés).\n\nRiñones: estructura conservada, aumento leve de ecogenicidad cortical.\n\nIntestinos, estómago, bazo, páncreas y vejiga: sin alteraciones.\n\nPresencia de líquido libre en tórax caudal.\n\nExceso de tejido graso abdominal \N \N 3211 2775 \N 5 1540 {"studies": [], "medications": [], "specialities": []} +1178 2025-07-11 19:37:38.380982+00 2025-07-11 19:37:38.380994+00 f t - - - - \N \N 4256 3551 \N 90 1712 {"studies": [], "medications": [], "specialities": []} +1543 2025-08-26 15:12:59.441661+00 2025-08-26 15:12:59.441674+00 f t . . . . \N \N 65 66 \N 90 2234 \N +1121 2025-07-05 20:16:08.196134+00 2025-07-05 20:16:08.196143+00 f t Hepatopatía metabólica o infiltrativa leve.\n\nResto del abdomen sin alteraciones. Correlacionar con análisis de sangre hepáticos (ALT, AST, FA, bilirrubinas).\n\nEvaluar evolución clínica y repetir ecografía si persisten síntomas.\n\nControl veterinario en 15-30 días o según indicación. Dieta hepática específica.\n\nSuplementos hepatoprotectores (según indicación veterinaria).\n\nSoporte nutricional si hay signos clínicos. Hígado: levemente aumentado, ecogenicidad aumentada, estructura homogénea.\n\nVesícula biliar, sistema biliar: normales.\n\nRiñones, bazo, vejiga, estómago, intestino delgado y páncreas: sin alteraciones ecográficas.\n\nDiferenciación corticomedular renal adecuada. \N \N 649 765 \N 90 959 {"studies": [], "medications": [], "specialities": []} +1122 2025-07-05 20:18:08.697087+00 2025-07-05 20:18:08.697094+00 f t Hepatopatía incipiente de tipo metabólica o infiltrativa.\n\nImagen esplénica compatible con hiperplasia focal o posible neoplasia.\n\nSedimento urinario escaso (no infeccioso). Solicitar análisis de sangre completos (función hepática, renal, hemograma).\n\nEcografía de control o estudios de imágenes adicionales si el nódulo esplénico cambia.\n\nControl clínico en 15-30 días o ante signos nuevos.\n\nSeguir evolución clínica general por la edad avanzada. Dieta hepática y seguimiento hepático con enzimas hepáticas.\n\nConsiderar aspiración con aguja fina (PAAF) o biopsia del bazo si se requiere diagnóstico definitivo.\n\nMantener hidratación y control urinario.\n\nEvitar ayuno prolongado por distensión gástrica. Hígado: ecogenicidad aumentada, homogéneo, sin signos de obstrucción biliar.\n\nVesícula biliar: pared levemente engrosada, sin contenido patológico.\n\nBazo: nódulo hipoecoico bien delimitado (2.80 x 2.34 cm).\n\nRiñones y vejiga: sin alteraciones significativas (escaso sedimento en vejiga).\n\nEstómago e intestinos: distendidos con gas, sin cambios estructurales graves.\n\nPáncreas: sin anormalidades.\n\nSin líquido libre abdominal. \N \N 472 560 \N 90 1435 {"studies": [], "medications": [], "specialities": []} +1123 2025-07-05 20:21:24.221936+00 2025-07-05 20:21:24.221945+00 f t Hepatopatía leve.\n\nEsplenomegalia, posible origen infeccioso o inflamatorio.\n\nCuerpo extraño gástrico sin obstrucción.\n\nEnteritis leve. Repetir ecografía de control en 7-10 días.\n\nRealizar hemograma y bioquímica para evaluar hígado, bazo y procesos infecciosos.\n\nObservar signos digestivos (vómitos, inapetencia, diarrea).\n\nControl veterinario ante cualquier cambio clínico. Dieta digestiva y control de vómitos.\n\nSuplementos hepáticos si hay signos compatibles.\n\nEstudio de hemoparásitos y coproparasitario.\n\nControl de cuerpo extraño gástrico (posible eliminación espontánea o seguimiento).\n\nAntibiótico o antiinflamatorio según cuadro clínico. Hígado: leve aumento de ecogenicidad, homogéneo, sin obstrucción biliar.\n\nVesícula biliar: pared levemente engrosada, sin contenido patológico.\n\nBazo: esplenomegalia, ecogenicidad conservada.\n\nRiñones, vejiga, páncreas: sin alteraciones significativas (escaso sedimento urinario).\n\nEstómago: con gas, imagen compatible con cuerpo extraño gástrico (0.86 cm), sin signos de obstrucción.\n\nIntestino delgado: con gas, ecogenicidad disminuida, compatible con enteritis.\n\nÚtero y ovarios no visibles, lo que sugiere normalidad. \N \N 330 393 \N 90 1457 {"studies": [], "medications": [], "specialities": []} +1124 2025-07-05 20:23:11.939786+00 2025-07-05 20:23:11.939793+00 f t Esplenomegalia.\n\nLesión vesical compatible con cistitis polipoide o neoplasia.\n\nEnteritis leve. Análisis de orina y sedimento.\n\nHemograma y bioquímica para evaluar bazo y vejiga.\n\nControl veterinario cercano para definir conducta según evolución. Estudios complementarios: ecografía Doppler, citología vesical o ecografía guiada.\n\nConsiderar tratamiento antiinflamatorio o antibiótico si hay signos urinarios.\n\nEvaluar necesidad de cirugía o seguimiento según evolución de la lesión vesical. Hígado, riñones y vesícula biliar: normales.\n\nBazo: aumentado de tamaño.\n\nVejiga: lesión fija en pared vesical (6.7 x 4.1 cm), escaso sedimento.\n\nIntestino delgado: leve alteración de la pared (estratificación perdida).\n\nPáncreas no visible. \N \N 2614 2327 \N 90 1465 {"studies": [], "medications": [], "specialities": []} +1125 2025-07-05 20:34:34.370805+00 2025-07-05 20:34:34.370812+00 f t Hepatopatía leve.\n\nGastritis leve.\n\nEnteritis difusa. Realizar análisis de sangre y orina.\n\nEvaluar evolución clínica.\n\nControl veterinario en 10-15 días o antes si hay síntomas. Dieta digestiva y hepatoprotectores.\n\nControl de vómitos y síntomas digestivos si aparecen.\n\nPosible tratamiento antiinflamatorio o antibiótico según análisis. Hígado: ecogenicidad aumentada, homogéneo.\n\nVesícula biliar, bazo, riñones: normales.\n\nEstómago: distendido con gas, mucosa conservada.\n\nIntestino delgado: estructura y estratificación conservadas.\n\nVejiga: escaso sedimento urinario.\n\nPáncreas no visible. \N \N 2433 2191 \N 90 1422 {"studies": [], "medications": [], "specialities": []} +1126 2025-07-05 20:38:12.078479+00 2025-07-05 20:38:12.078489+00 f t Colangitis o colangiohepatitis crónica.\n\nGastritis aguda.\n\nEnteropatía inflamatoria.\n\nCistitis leve. Realizar análisis de sangre y orina.\n\nConsiderar ecografía de control si hay persistencia de síntomas.\n\nEvaluar signos clínicos digestivos y urinarios.\n\nSeguimiento veterinario según evolución. Antibióticos y antiinflamatorios según estudios.\n\nDieta digestiva o hipoalergénica.\n\nHepatoprotector y soporte digestivo si hay signos clínicos. Hígado: ecogenicidad aumentada, homogéneo.\n\nVesícula biliar: alterada, cuello acodado y escasos ecos.\n\nBazo, riñones: sin alteraciones.\n\nVejiga: pared engrosada, leve sedimento.\n\nEstómago: distendido con gas, mucosa conservada.\n\nIntestino delgado: gas, capa muscular engrosada.\n\nPáncreas no visible.\n\nEscasa cantidad de líquido libre abdominal. \N \N 2331 2107 \N 90 1406 {"studies": [], "medications": [], "specialities": []} +1127 2025-07-05 20:42:15.249635+00 2025-07-05 20:42:15.249644+00 f t Hepatopatía difusa inflamatoria o infecciosa.\n\nGastritis leve.\n\nEnteritis inflamatoria leve. Realizar análisis de sangre y orina.\n\nControl veterinario en 7-10 días para observar evolución clínica. Dieta digestiva y hepatoprotectores.\n\nPosible antibiótico o antiinflamatorio según análisis clínico. Hígado: ecogenicidad disminuida, homogéneo.\n\nVesícula biliar, bazo, riñones: normales.\n\nVejiga: normal, sin ecos.\n\nEstómago: distendido con gas, mucosa conservada.\n\nIntestino delgado: estructura conservada.\n\nPáncreas no visible. \N \N 826 932 \N 90 1439 {"studies": [], "medications": [], "specialities": []} +1128 2025-07-05 22:57:13.373439+00 2025-07-05 22:57:13.373447+00 f t . . . EOG: normal. Apetito normal, defeca y orina normal. Deshidratación leve. Sensorio alerta. \N \N 1734 1651 \N 92 1658 {"studies": [], "medications": [], "specialities": []} +1614 2025-09-01 11:40:25.685857+00 2025-09-01 11:40:25.685867+00 f t - - Se realiza la vacunación con triple felina y antirabica Eog: s/p \N \N 6456 5256 \N 1 2084 \N +1544 2025-08-26 15:14:01.839411+00 2025-08-26 15:14:01.839424+00 f t . . . . \N \N 6789 5548 \N 90 2249 \N +1626 2025-09-01 12:25:31.313523+00 2025-09-01 12:25:31.313538+00 f t - - Se toma muestra de sangre para un PGC sin orina. Eog: s/p \N \N 6905 5647 \N 1 2161 \N +1636 2025-09-03 04:16:32.581123+00 2025-09-03 04:16:32.581132+00 f t Plaquetopenia de causa no diagnosticada Derivación a hemato Derivación a hematologia Coagulograma alterado \N \N 7273 5967 \N 94 2237 \N +1676 2025-09-09 16:26:33.072177+00 2025-09-09 16:26:33.072186+00 f t . . . . \N \N 7602 6256 \N 90 2302 \N +1129 2025-07-05 23:06:00.060732+00 2025-07-05 23:06:00.060743+00 f t Gastroenteritis Ayuno sólido durante el día de hoy. Debe seguir tomando líquido (agua de arroz). Mañana comenzar con dieta antidiarreica. Lunes agregar crema de bismuto si la diarrea continúa. Cuando defeque normal, administrar ANTIPARASITARIO, moxidex plus. Cerenia+diafin+ranitidina+ dieta antidiarreica. EOG: normal. Paciente bajo tratamiento con Fluoxetina. Hace dos días (jueves) comenzó con vomitos biliosos y en las últimas 24 horas comenzo con diarrea acuosa. Hidratación normal. \N \N 3887 3270 \N 92 1676 {"studies": [], "medications": [], "specialities": []} +1130 2025-07-05 23:14:57.193881+00 2025-07-05 23:14:57.193889+00 f t Dermatitis miliar felina Prednisolona gotas, en dosis decrecientes. \nVacunación antirrábica a ambos gatos Tribiotic+dexametasona EOG: Normal. Dermatitis en cuello y cruz. \N \N 3981 3336 \N 92 1675 {"studies": [], "medications": [], "specialities": []} +1131 2025-07-06 00:47:33.548897+00 2025-07-06 00:47:33.548906+00 f t Hemoparasitos? Gastritis aguda? Pancreatitis aguda Indicó chequeo general completo y ecografia abdominal Doxiciclina y prednisolona oral Paciente imposible de dominar, la dueña le tiene miedo y no sujeta correctamente!!! En un primer intento se le suelta y tuve que correr a la reja. Cuando le hablo del valor de la sedacion me dice q no le dijeron nada.... me llora que por favor se lo atienda, q ella esta preocupada por su estado. Firma autorización de sedacion y le digo que va por mi cuenta, porque se puso a llorar y entiendo que todos pasemos por una mala racha. Lo inyecto a través de la reja. Se le ata la boca y realizó revisión\nEog: normal score corporal 3/5, cardio ok , pulmones ok,plieue cutaneo ok, mucosas rosadas, abdomen blando t 39.3C, presencia de garrapatas previo a la consulta.\nTuvo diarrea con sangre . Cuando terminó de escribir el Rp le suelta la boca sin mi indicación, entrego Rp y termino la consulta, me voy del otro lado de la reja, yallí tratando que quitar la soga al cuello que yo entrego la muerde, a lo cual la tutora me responsabiliza a mi de no haber colocado un bozal. \N \N 3901 3279 \N 21 1660 {"studies": [], "medications": [], "specialities": []} +1132 2025-07-06 16:29:33.514677+00 2025-07-06 16:29:33.514685+00 f t bronquitis alergica/ asma felino sugiero realizar rx de torax ll y vd aplico ranitidina + dexa subcutaneo.\nindico prednisol a 0.5 mg/kg cada 24 hs por 5 dias y luego a dias alternos felino hembra comun europeo castrada 5 años . 4.5 kg aprox\ncome vital cat therapy gastrointestinal\nvacunas vencidas\nconsulta por tos . evolucion 48 hs . leve decaimiento e hiporexia. no vomitos ni diarrea\nrevision clinica\naus se ausculta en hemitorax izquierdo sibilancias . aus cardiaca s/p\nnormotermica normohidratada\npalpacion abdominal . abdomen en tabla, no me permite evaluar estructuras profundas \N \N 3927 3297 \N 88 1670 {"studies": [], "medications": [{"id_medicina": "704", "next_application_months": 0}], "specialities": []} +1133 2025-07-06 17:33:09.156861+00 2025-07-06 17:33:09.15687+00 f t insuficiencia renal? sugiero realizar chequeos de sangre para evaluar medio interno y dieta palatable para estimular apetito realizo pasaje de ringer lactato subcutaneo ( 200 ml) aplico medicacion antes mencionada.\nofrezco lata de pate, y come con ganas felino macho comun europeo castrado 16 años .\nconsulta por decaimiento, anorexia . evolucion 24 hs. no vomitos ni diarrea.\nrevision clinica\ncc 3\nestridor nasal/ vias aereas altas\naus aumento murmullo vesicular. resto s/p\ndeshidratacion 8-9%\ntemperatura 36.7\npalpacion abdominal. abdomen blando, renomegalia izquierda?\nresto s/p \N \N 3980 3335 \N 88 1674 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "704", "next_application_months": 0}, {"id_medicina": "667", "next_application_months": 0}], "specialities": []} +1134 2025-07-06 18:04:59.038537+00 2025-07-06 18:04:59.038545+00 f t Piometra Ofrecer comida apetitosa. Acudir a vet o llamar veterinario presencial Teleconsulta. Mc: come poco hace unos días y la ve decaída. Tutora relata que convive con perra hace unos meses, siendo la perra de su madre fallecida. Es una hembra entera, no recuerda último celo. Relata siempre fue voraz y ahora come hasta el pollito obligada. No hubo vómitos ni diarrea. Se lame genitales pero no sabe si más de lo normal. Ante la imposibilidad de revisación y cuadro que comenta tutora se indica consulta presencial para evaluar parámetros. \N \N 3918 3291 \N 79 1668 {"studies": [], "medications": [], "specialities": []} +1135 2025-07-06 19:06:06.352913+00 2025-07-06 19:06:06.352921+00 f t Hepatopatía incipiente.\n\nSedimento urinario leve. Solicitar análisis de sangre y orina.\n\nRealizar seguimiento clínico y ecográfico según evolución.\n\nObservar presencia de signos digestivos o urinarios. Dieta hepática si hay síntomas digestivos.\n\nHidratación adecuada.\n\nTratamiento específico solo si se confirman alteraciones clínicas o bioquímicas. Hígado: ecogenicidad aumentada, homogéneo, vasculatura conservada.\n\nVesícula biliar: pared levemente engrosada, sin contenido patológico.\n\nSistema biliar, bazo, riñones, páncreas: sin alteraciones.\n\nVejiga: escaso sedimento urinario, sin signos de obstrucción.\n\nEstómago e intestino delgado: distendidos con gas, ecogenicidad disminuida.\n\nSin líquido libre en cavidad abdominal. \N \N 2157 1976 \N 90 1401 {"studies": [], "medications": [], "specialities": []} +1136 2025-07-06 19:23:03.370446+00 2025-07-06 19:23:03.370458+00 f t Masa con contenido lipídico, compatible con quiste sebáceo o lipoma.\n\nDesbalance electrolítico leve (hipocalcemia, hiperpotasemia).\n\nAlbúmina baja, posible pérdida o síntesis reducida.\n\nGOT y amilasa elevadas: sugerir estudios complementarios. Realizar ecografía de la masa si crece o cambia.\n\nEvaluar función hepática y digestiva si hay síntomas (anorexia, vómitos, diarrea).\n\nControl clínico y bioquímico en 15-30 días.\n\nSeguir indicaciones del médico veterinario actuante. Monitorear evolución de la masa (puede no requerir tratamiento si es estable).\n\nControl digestivo y hepático si hay signos clínicos.\n\nRepetir laboratorio si persisten alteraciones bioquímicas.\n\nSuplementar calcio si clínicamente necesario. Citología de masa en MPD: presencia de material lipídico, fondo límpido, sin celularidad neoplásica evidente.\n\nHemograma: hematocrito y hemoglobina levemente bajos, pero recuento leucocitario y plaquetario dentro de rangos normales.\n\nBioquímica:\n\nGPT, GGT, urea, creatinina, colesterol: normales.\n\nGOT elevada (77 UI/l), indica posible daño muscular o hepático.\n\nAlbúmina disminuida (2,20 g/dl), globulinas normales-altas.\n\nAmilasa elevada (1595 U/l): posible irritación pancreática o intestinal.\n\nHipocalcemia (7,30 mg/dl).\n\nPotasio levemente elevado (5,8 mEq/l). \N \N 1888 1775 \N 86 1405 {"studies": [], "medications": [], "specialities": []} +1179 2025-07-11 19:38:05.487644+00 2025-07-11 19:38:05.487656+00 f t - - - - \N \N 4214 3517 \N 90 1705 {"studies": [], "medications": [], "specialities": []} +1182 2025-07-11 19:41:49.099806+00 2025-07-11 19:41:49.099814+00 f t - - - - \N \N 3803 3222 \N 90 1645 {"studies": [], "medications": [], "specialities": []} +1184 2025-07-11 19:46:14.425753+00 2025-07-11 19:46:14.425763+00 f t - - - - \N \N 507 599 \N 84 1616 {"studies": [], "medications": [], "specialities": []} +1545 2025-08-26 15:15:18.836338+00 2025-08-26 15:15:18.836347+00 f t . . . . \N \N 7154 5861 \N 90 2218 \N +1137 2025-07-06 19:32:42.979449+00 2025-07-06 19:32:42.979461+00 f t Urocultivo negativo, sin infección activa al momento del estudio.\n\nLeve leucocituria, posible irritación vesical leve o contaminación. Observar signos urinarios (esfuerzo, disuria, micción frecuente).\n\nRepetir análisis si reaparecen síntomas.\n\nControl veterinario clínico según evolución. No se indica tratamiento específico con antibióticos.\n\nMantener buena hidratación.\n\nConsiderar antiinflamatorios suaves si hay síntomas urinarios. Color: amarillo | Aspecto: ligeramente turbio\n\nDensidad: 1030 (normal-alta) | pH: 6,5 (adecuado)\n\nNo se detectaron proteínas, glucosa, bilirrubina, cetonas ni hemoglobina.\n\nSedimento: leucocitos 4–6 por campo (ligero aumento), escasas células epiteliales.\n\nCristales y hematíes: no observados\n\nUrocultivo: negativo (sin desarrollo bacteriano)\n\nColoración de Gram: sin microorganismos observados. \N \N 1555 1510 \N 86 1289 {"studies": [], "medications": [], "specialities": []} +1138 2025-07-06 19:44:06.418142+00 2025-07-06 19:44:06.41815+00 f t Eosinofilia leve: podría estar asociada a alergias, parásitos o reacciones inflamatorias.\n\nUrea levemente elevada: posible deshidratación leve o dieta rica en proteínas.\n\nResto de los parámetros dentro de rangos normales Realizar coproparasitario si no hay desparasitación reciente.\n\nEvaluar signos clínicos compatibles con alergia o parásitos.\n\nControl veterinario si persisten síntomas o ante nuevos cambios clínicos Desparasitación si no se realizó recientemente.\n\nEvaluar alergias o procesos inflamatorios si hay signos cutáneos, digestivos o respiratorios.\n\nAsegurar hidratación adecuada. Hematocrito y glóbulos rojos: en valores altos normales.\n\nLeucocitos: normales, pero con eosinófilos aumentados (15%) y linfocitos altos dentro del rango.\n\nPlaquetas: dentro de valores normales.\n\nUrea: en el límite superior (43 mg/dl).\n\nCreatinina, transaminasas (GPT/GOT), FAL, proteínas, albúmina y globulinas: normales. \N \N 1487 1463 \N 86 1303 {"studies": [], "medications": [], "specialities": []} +1139 2025-07-06 19:46:40.735693+00 2025-07-06 19:46:40.735701+00 f t Compatible con neoplasia pleomórfica de aspecto epitelial.\n(Este tipo de hallazgo puede corresponder a un carcinoma, requiere confirmación por histopatología.) Consulta oncológica o con patólogo si es posible.\n\nRealizar estudios complementarios para estadificación.\n\nSeguir indicaciones clínicas según evolución y resultados adicionales. Biopsia para confirmación histológica del tipo tumoral.\n\nEstudio de metástasis si se confirma malignidad (radiografía, ecografía, etc.).\n\nEvaluar cirugía según localización y agresividad. Macroscopia: se recibieron dos frotis.\n\nMicroscopía:\n\nFondo hemático.\n\nInflamación mixta con predominio de neutrófilos y monocitos.\n\nCélulas pleomórficas de aspecto epitelial, con núcleo grande, macronucleolo, citoplasma basófilo.\n\nAnisocitosis marcada (variación de tamaño celular).\n\nAgrupación de células en grupos. \N \N 1372 1367 \N 86 1402 {"studies": [], "medications": [], "specialities": []} +1140 2025-07-06 19:56:54.078459+00 2025-07-06 19:56:54.078467+00 f t Infección urinaria activa (leucocituria y hematuria marcadas)\n\nHematuria y proteinuria, posiblemente secundarias a inflamación vesical\n\nCristaluria leve (microoxalato de calcio) Realizar urocultivo con antibiograma\n\nRepetir análisis de orina post-tratamiento\n\nConsiderar ecografía urinaria si persisten signos clínicos (disuria, hematuria, polaquiuria) Antibiótico específico, idealmente guiado por urocultivo\n\nAsegurar buena hidratación\n\nControl de pH urinario y seguimiento de cristales Color: amarillo oscuro | Aspecto: turbio\n\nDensidad: 1044 (concentrada) | pH: 6,0 (normal)\n\nProteínas: presencia leve (+)\n\nHemoglobina: presencia marcada (+++)\n\nLeucocitos: más de 50 por campo (piuria significativa)\n\nHematíes: 40–50 por campo (hematuria moderada)\n\nCristales: microoxalato de calcio escasos\n\nCélulas epiteliales: escasas \N \N 896 1006 \N 86 1217 {"studies": [], "medications": [], "specialities": []} +1141 2025-07-06 20:02:14.476308+00 2025-07-06 20:02:14.476321+00 f t Hiperuremia aislada: posible deshidratación o dieta rica en proteínas.\n\nAumento de enzimas hepáticas (GPT): posible hepatopatía leve o reactiva.\n\nHiperproteinemia por globulinas: sugiere proceso inflamatorio o inmunitario crónico leve.\n\nOrina normal. Control de función hepática con enzimas (GPT, GGT, FA) en 15–30 días.\n\nConsiderar ecografía abdominal si persiste alteración hepática.\n\nRepetir hemograma si aparecen signos clínicos o para seguimiento. Dieta hepática o baja en proteínas, si se confirma indicación.\n\nEvaluar uso de hepatoprotectores.\n\nHidratación adecuada. Hemograma: leucocitos levemente bajos (4300/mm³), linfocitos y eosinófilos bajos.\n\nPlaquetas: en rango bajo-normal (132.500/mm³).\n\nUrea: elevada (55 mg/dl) | Creatinina: normal\n\nGPT (ALT): elevada (93 UI/l), sugiere alteración hepática.\n\nGlobulinas: elevadas (4,70 g/dl) con albúmina normal-baja (2,80 g/dl).\n\nOrina: normal, sin alteraciones significativas. Densidad 1044, sin cristales, sin hematuria ni leucocituria. \N \N 734 858 \N 86 1222 {"studies": [], "medications": [], "specialities": []} +1142 2025-07-06 20:04:13.423266+00 2025-07-06 20:04:13.423274+00 f t Hepatopatía leve o reactiva (por GPT elevada)\n\nHiperproteinemia por globulinas: posible proceso inflamatorio o inmunológico leve.\n\nPerfil metabólico normal (glucosa, colesterol, triglicéridos).\n\nLeucocitos bajos, posiblemente transitorio Control clínico y hepático en 30 días (repetir GPT, proteínas totales).\n\nMonitorear signos digestivos, letargo o pérdida de peso.\n\nNo requiere medicación inmediata si no hay signos clínicos. Continuar o iniciar hepatoprotector si hay signos compatibles.\n\nNo se indica tratamiento metabólico en este momento.\n\nHidratación y dieta balanceada. Glucemia: 0,86 g/l → normal\n\nColesterol total: 192 mg/dl → normal\n\nTriglicéridos: 35 mg/dl → normal bajo\n\nEstudios previos: leve hiperuremia, elevación de GPT (93 UI/l), globulinas altas (4,7 g/dl), leucocitos totales bajos (4300/mm³).\n\nOrina previa: normal \N \N 734 858 \N 86 1258 {"studies": [], "medications": [], "specialities": []} +1143 2025-07-06 20:07:51.799461+00 2025-07-06 20:07:51.799468+00 f t Inflamación sistémica activa (leucocitosis con neutrofilia).\nHepatopatía aguda o reactiva grave.\nAnemia leve normocítica normocrómica.\nHipoalbuminemia e hipocalcemia.\nPosible compromiso renal o intestinal leve. Ecografía abdominal para evaluar hígado y páncreas.\n\nRepetir laboratorio en 7–10 días.\n\nMonitorear signos digestivos, neuromusculares o de debilidad. Iniciar hepatoprotección y soporte nutricional.\n\nControl electrolítico y corrección si hay síntomas neuromusculares.\n\nConsiderar antibiótico si hay evidencia clínica de infección.\n\nSuplementación con albúmina/calcio si se justifica clínicamente. Anemia leve: hematocrito (30%) y hemoglobina (9,0 g/dl) bajos.\n\nLeucocitos aumentados: 18.800/mm³ con neutrofilia marcada.\n\nPlaquetas aumentadas (621.250/mm³).\n\nTransaminasas elevadas: GPT 111 UI/l, GOT 117 UI/l.\n\nFosfatasa alcalina extremadamente elevada: 1.077 UI/l\n\nAmilasa levemente elevada (1.164 U/l, dentro de rango inespecífico).\n\nProteínas totales y albúmina bajas, globulinas normales.\n\nCalcemia disminuida (8,30 mg/dl) y potasio elevado (7,0 mEq/l).\n\nColesterol, bilirrubinas y urea normales.\n\nSodio y cloro levemente bajos. \N \N 1249 1276 \N 86 1255 {"studies": [], "medications": [], "specialities": []} +1180 2025-07-11 19:38:51.874264+00 2025-07-11 19:38:51.874272+00 f t - - - - \N \N 4149 3457 \N 90 1692 {"studies": [], "medications": [], "specialities": []} +1144 2025-07-06 20:12:54.031008+00 2025-07-06 20:12:54.031015+00 f t Pancreatitis activa.\n\nPosible hipotiroidismo (TSH elevada con T4 normal).\n\nAfectación hepática leve a moderada.\n\nProteinuria en rango indeterminado.\n\nHipercalemia e hipocalcemia. Repetir T4 libre y TSH en 2–4 semanas para confirmar hipotiroidismo.\n\nMonitorear función hepática, pancreática y renal.\n\nControl clínico en 7–10 días o antes si hay empeoramiento. Tratamiento para pancreatitis: dieta digestiva, reposo pancreático, hidratación.\n\nEvaluar inicio de tratamiento para hipotiroidismo si hay signos clínicos compatibles.\n\nSoporte hepático y seguimiento de enzimas.\n\nReevaluar función renal si persiste proteinuria Hematocrito elevado (60%): indica posible hemoconcentración o deshidratación.\n\nLeucocitos normales, linfocitos levemente bajos.\n\nGPT (70 UI/l) y GOT (95 UI/l): elevados, posible afectación hepática o muscular.\n\nAmilasa muy elevada (3517 U/l) y TLI alto (50 ng/ml): compatibles con pancreatitis.\n\nGlobulinas elevadas (5,0 g/dl), albúmina alta (4,1 g/dl).\n\nColesterol elevado (261 mg/dl).\n\nCalcemia baja (8,3 mg/dl) y potasio elevado (6,9 mEq/l).\n\nProteinuria/creatininuria (0,25): rango indeterminado.\n\nTSH elevada (0,56 ng/ml) con T4 total normal: sugiere posible hipotiroidismo.\n\nEhrlichia canis: no reactivo.\n\nOrina: pH 8,0, sin células ni cristales relevantes. \N \N 266 335 \N 86 1226 {"studies": [], "medications": [], "specialities": []} +1145 2025-07-06 20:19:13.68868+00 2025-07-06 20:19:13.688689+00 f t Pancreatitis\nHepatopatía reactiva\nDeshidratación leve\nInflamación crónica o inmunomediada Monitorear signos clínicos\n\nRealizar control con análisis y ecografía\n\nEvitar alimentos no indicados Hidratación con líquidos\n\nDieta blanda y baja en grasas\n\nProtección hepática y digestiva\n\nReevaluación en 7-10 días El paciente muestra signos de hemoconcentración, enzimas hepáticas elevadas (ALT y AST), amilasa muy alta y proteínas totales/globulinas aumentadas. El resto de los valores están dentro de parámetros normales o levemente alterados. \N \N 643 758 \N 86 951 {"studies": [], "medications": [], "specialities": []} +1146 2025-07-07 21:02:29.163427+00 2025-07-07 21:02:29.16344+00 f t - - Se realiza eutanasia. Paciente que se encuentra en decúbito lateral hace 3 días que no orina. Se lo encuentra con respiración taquipneica y abdomen muy distendido. \N \N 3916 3289 \N 1 1666 {"studies": [], "medications": [], "specialities": []} +1147 2025-07-07 21:08:52.314574+00 2025-07-07 21:08:52.314582+00 f t Complejo respiratorio felino? Que trate de que no salga tanto. Se aplica amoxicilia y dexametasona 1mg/kg.\nSe indica continué el tratamiento por 7 días. Sumar paulferon como inmunoestimulanre. Comenta que es un gato que tiene salida al exterior, y que desde hace un par de días lo nota que está con estornudos y secreciones por la nariz. \nA la auscularacion torácica s/p, normotermico, normohidratado. Secreción nasal bilateral serosa, transparente. \N \N 2657 2361 \N 1 1651 {"studies": [], "medications": [], "specialities": []} +1148 2025-07-07 21:16:44.610262+00 2025-07-07 21:16:44.61027+00 f t Hernia perianales. Se entrega orden para sangre, ecografía de abdomen y control cardiológico. Se comenta que el tratamiento es quirúrgico. El paciente se nota de buen ánimo, normotermico normohidratado, no presenta dolor abdominal. Presenta 2 tumoraciones en forma bilateral en el peroné, compatibles con hernias de diafragma pélvico, ambas reductibles y de mayor tamaño la del lado derecho. \N \N 3805 3224 \N 1 1647 {"studies": [], "medications": [], "specialities": []} +1149 2025-07-07 23:13:46.816413+00 2025-07-07 23:13:46.816425+00 f t Depilación x colocación de pipeta antipulgas. Cambiar dé marca de pipeta antipulgas. Se inyectó Triobiotic 0,5 ML + Dexametasona 0,3 ml. Se recomienda seguir con Prednisolona 5 gotas x día x 5 días. Luego 3 gotas x día x 5 días; continúa con 1 gota x día x 5 días y finaliza con 1 gota cada 48 hs x 7 días. Además Crema 6A sobre la herida 3 veces x día x 10 días. Consulta x depilación en dorsal del lomo por colocación de pipeta antipulgas. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. \N \N 3656 3104 \N 70 1677 {"studies": [], "medications": [], "specialities": []} +1150 2025-07-07 23:19:44.621395+00 2025-07-07 23:19:44.621403+00 f t Gastritis crónica. Control en 15 días. Recomiendo dieta con Agility en lata solamente x 14 días para ver si disminuyen los vómitos. Consulta x vómitos intermitentes. EOG normal. Apetito, sed, micción y defecación normales. Auscultación cardíaca normal. Palpación abdominal sin particularidades. \N \N 3804 3223 \N 70 1646 {"studies": [], "medications": [], "specialities": []} +1151 2025-07-07 23:34:36.569357+00 2025-07-07 23:34:36.569366+00 f t Insuficiencia renal crónica. Eutanasia. Debido al cuadro terminal se recomienda eutanasia. Consulta x decaimiento. EOG deshidratación 10%. Apetito disminuído, sed aumentada, micción aumentada, defecación normal. Palpación abdominal, riñones aumentados de tamaño. Auscultación cardíaca sin particularidades. Deambulación inestable. \N \N 3866 3257 \N 70 1656 {"studies": [], "medications": [], "specialities": []} +1152 2025-07-08 01:09:25.474477+00 2025-07-08 01:09:25.474485+00 f t Gastritis. Controlar q defeque, retirar plantas, controlar porciones y dieta. Ayuno de 12 horas.\nSi después no hay vómitos dieta casera 5 a 7 días. Vómitos de varios dias de evolucion. \nConserva apetito aunque selectivo.\nVómitos tricobezoare, alimento, plantas (ingests compulsiva por pica). A la palpación estómago distendido, sin dolor abdominal. \N \N 4114 3431 \N 68 1684 {"studies": ["1"], "medications": [{"id_medicina": "705", "next_application_months": 0}, {"id_medicina": "1033", "next_application_months": 0}], "specialities": []} +1153 2025-07-08 03:17:38.674726+00 2025-07-08 03:17:38.674738+00 f t Absceso. Hablamos de posible castración una vez resuelto el cuadro. Se sugiera la misma y evitar salidas al exterior. Se aplica dexametasona.\nSe indica cefalexina 500 mg 1/4 comp. Cada 12 hs 7 días. Ayer observa inflamación y dolor, hoy la zona comienza a supurar pus. Suele salir fuera de la casa.\nEog s/p. Buen estado gral. En región de escapula derecha se observa fistula, la cual al presionar solo presenta leve exudado hemorragico. La lesión es compatible con absceso ya drenado. No presenta dolor. \N \N 4071 3400 \N 99 1690 {"studies": [], "medications": [{"id_medicina": "704", "next_application_months": 0}], "specialities": []} +1154 2025-07-08 22:05:22.162943+00 2025-07-08 22:05:22.162952+00 f t Subluxacion , lesión de tejido blandos.Sobredostension Actualizar vacuna antirabica. Realizar controles por geronte (cardio, eco de abdomen y perfil de sangre? Reposo y si no mejora radiografía Claudicación desde ayer, miembro anterior izquierdo en posición plantigrada. Punto de dolor carpo/radial. Glucemia 84 \N \N 4176 3479 \N 68 1699 {"studies": ["2"], "medications": [{"id_medicina": "872", "next_application_months": 0}], "specialities": []} +1181 2025-07-11 19:41:00.327489+00 2025-07-11 19:41:00.327498+00 f t - - - - \N \N 4140 3449 \N 90 1687 {"studies": [], "medications": [], "specialities": []} +1183 2025-07-11 19:42:24.703408+00 2025-07-11 19:42:24.703417+00 f t - - - - \N \N 3693 3135 \N 90 1618 {"studies": [], "medications": [], "specialities": []} +1546 2025-08-26 15:36:24.271093+00 2025-08-26 15:36:24.271102+00 f t . . . . \N \N 6905 5647 \N 100 2210 \N +1155 2025-07-08 23:09:27.308824+00 2025-07-08 23:09:27.308833+00 f t Fludt obstructivo, Concurrir de manera urgente a la guardia. Mientras brindar soporte calorico por la hipotermia que agrava el cuadro Concurrir de manera urgente a la guardia Mc : vomitos. Paciente con antecedentes de problemas urinarios hace dos semanas. Comenta tutor tuvo que recurrir a guardia y se le recetó meloxicam gotas.\nEog sensorio deprimido, decúbito esternal, condición corporal 2.5/5. Temperatura: LOW deshidratación del 6% lfn s/ mm cianoticas. Bradicardico , pulso debil. con FR aumentada y patrón profundo.\nEop: vejiga pletorica, pene cianotico, inflamado .\nPronóstico reservado. Se deriva urgente a guardia para estabilización. \N \N 4171 3475 \N 79 1694 {"studies": ["7"], "medications": [], "specialities": []} +1156 2025-07-09 16:10:48.473939+00 2025-07-09 16:10:48.473947+00 f t Trastorno de comportamiento Administración de gabapentina 12 hs y 2 hs antes de la visita del veterinario. Recomiendo sacar nuevo turno para vacunación anual y tratamiento con veterinario etólogo. . Paciente de 5 años con trastornos de comportamiento. No se pudo vacunar \N \N 3911 3286 \N 92 1664 {"studies": [], "medications": [], "specialities": []} +1157 2025-07-09 16:17:36.127922+00 2025-07-09 16:17:36.127932+00 f t Desorden hormonal Solicito analisis de sangre y orina. Perfil general completo + TSH + orina completa con rel. Cortisol/creatinina. . EOG: normal. Alopecia en base de la cola y en lateral en forma bilateral y simétrica. Se encuentra en tratamiento contra parásitos internos y externos desde hace meses. Antecedentes de pulgas pero ya controladas. \N \N 4142 3452 \N 92 1691 {"studies": [], "medications": [], "specialities": []} +1158 2025-07-10 03:29:37.537719+00 2025-07-10 03:29:37.537728+00 f t Obstrucción uretral . Se deriva de urgencia a un centro veterinario para sondaje y fluidoterapia Sensorio deprimido. Dolor abdominal. Obstrucción uretral. Vejiga llena. \N \N 4257 3552 \N 92 1708 {"studies": [], "medications": [], "specialities": []} +1159 2025-07-10 19:12:30.371703+00 2025-07-10 19:12:30.371716+00 f t Enfermedad degenerativa articular.\nCardiopatía Se sugiere fisioterapia para tto conservador, interconsulta con cardiólogo y ecografía abdominal por control de edad. Se indica rumivital comprimidos 3 por día.\nTaurina 250mg diarios. Mc: chequeo general con sangre completa.\nPaciente come natural (atun, pollito, lo que come tutora)sin suplementación. Refiere padece asma felina y en abril tuvo que someterse a una endoscopia por vómitos/estornudos sanguinolientos, ahora está bien. No toma medicación actualmente, suele darle medicación homeopática pero relata no siempre ve resultados. Se lame constantemente miembros y zona lumbo sacra. A veces nota que le cuesta subir a algunos lados.\nEOG: sensorio alerta, hidratado, lfn s/p FR ok FC ok soplo 2/6. Pulso f/s. Condición corporal: 2.5/5 . Cond muscular: 2/4. Moderada odontolotiasis\nEop: dolor de columna grado 2. Sobretodo área toracolumbar. Abdomen blando. \N \N 272 320 \N 79 1574 {"studies": [], "medications": [], "specialities": ["8"]} +1160 2025-07-10 20:50:35.903412+00 2025-07-10 20:50:35.90342+00 f t . . . Aplico triple felina. Eog spp \N \N 753 878 \N 80 1278 {"studies": [], "medications": [], "specialities": []} +1161 2025-07-10 20:52:38.208207+00 2025-07-10 20:52:38.208219+00 f t . . . Videollamada: explico que la citologia dio lipoma, que es benigno \N \N 659 778 \N 80 1224 {"studies": [], "medications": [], "specialities": []} +1162 2025-07-10 20:53:18.650233+00 2025-07-10 20:53:18.650242+00 f t . . . Aplico triple felina y atr. Eog spp. \N \N 1381 1370 \N 80 1248 {"studies": [], "medications": [], "specialities": []} +1163 2025-07-10 21:02:05.675163+00 2025-07-10 21:02:05.675174+00 f t . . . No se atendio. \N \N 2058 1900 \N 80 1357 {"studies": [], "medications": [], "specialities": []} +1164 2025-07-10 21:03:08.392468+00 2025-07-10 21:03:08.392477+00 f t . . . Aplico sextuple y atr. Eog spp. \N \N 2164 1985 \N 80 1374 {"studies": [], "medications": [], "specialities": []} +1165 2025-07-10 21:03:29.671186+00 2025-07-10 21:03:29.671198+00 f t . . . Aplico sextuple y atr. Eog spp. \N \N 2164 1986 \N 80 1375 {"studies": [], "medications": [], "specialities": []} +1166 2025-07-10 21:04:05.529477+00 2025-07-10 21:04:05.529486+00 f t . . . Aplico triple felina. Eog spp. \N \N 2490 2235 \N 80 1434 {"studies": [], "medications": [], "specialities": []} +1167 2025-07-10 21:04:46.052474+00 2025-07-10 21:04:46.052484+00 f t . . . Aplico triple felina y atr. Eog spp. \N \N 3926 3296 \N 80 1669 {"studies": [], "medications": [], "specialities": []} +1168 2025-07-10 21:05:24.139264+00 2025-07-10 21:05:24.139276+00 f t . . . Aplico sextuple y atr. Eog spp. \N \N 3719 3152 \N 80 1650 {"studies": [], "medications": [], "specialities": []} +1169 2025-07-10 21:07:02.092636+00 2025-07-10 21:07:02.092645+00 f t Alopecia psicogenica . . Presenta dos rasguños superficialds autoinflingidos. No se justifica medicacion. Explico posible causa por estres. No tiene pulgas y le ponen pipeta todos los meses. \N \N 676 799 \N 80 1612 {"studies": [], "medications": [], "specialities": []} +1170 2025-07-10 21:08:02.655217+00 2025-07-10 21:08:02.655229+00 f t . . . Control anual. Eog spp. Aplico antirrabica. Triple al dia. \N \N 3656 3104 \N 80 1613 {"studies": [], "medications": [], "specialities": []} +1171 2025-07-10 21:09:49.58071+00 2025-07-10 21:09:49.580725+00 f t . . . Insuf renal cronica agudizada. Mal pronostico. Anorexia de una semana, vomitos controlados con cerenia. Ulceras bucales. Explico pero la gente quiere intentarlo igual. Aplico ringer lactato 250 ml evl. Aplico glucosa ev. Ellos le inyectan ranitidina y cerenia. \N \N 3613 3078 \N 80 1608 {"studies": [], "medications": [], "specialities": []} +1172 2025-07-10 21:13:28.040899+00 2025-07-10 21:13:28.040907+00 f t Neumonia . . Consultan por estornudos. Hoy anorexia. Aumento de murmullo vesicular, crepitaciones. Aplico dexametasona. Indico optamox duo 14:1 18 mg/kg c/12 hs, por el momento no suspender hasta indicacion. Rx torax D-V y L-L. Control en 5 dias o cuando tengan la rx, lo que sea primero. Doy pautas de alarma. \N \N 2976 2609 \N 80 1585 {"studies": [], "medications": [], "specialities": []} +1173 2025-07-11 19:17:12.406435+00 2025-07-11 19:17:12.406447+00 f t Laboratorio Devolucion Coproparasitologico con tecnica Baerman \nMicroalbuminuria- Orina Completa \nHemograma Solicitiud de laboratorio \N \N 3745 3175 \N 86 1636 {"studies": ["7"], "medications": [], "specialities": []} +1174 2025-07-11 19:17:54.301261+00 2025-07-11 19:17:54.301271+00 f t Laboratorio Interconsulta con un clinico Coproparasitologico con tecnica Baerman \nMicroalbuminuria- Orina Completa \nHemograma Coproparasitologico con tecnica Baerman \nMicroalbuminuria- Orina Completa \nHemograma \N \N 3745 3176 \N 86 1635 {"studies": [], "medications": [], "specialities": []} +1175 2025-07-11 19:34:01.47411+00 2025-07-11 19:34:01.474118+00 f t Solicitud de laboratorio PGC s/O PGC s/O Solicitud de laboratorio \N \N 272 320 \N 100 1731 {"studies": [], "medications": [], "specialities": []} +1176 2025-07-11 19:35:35.601399+00 2025-07-11 19:35:35.601409+00 f t - - - - \N \N 4110 3426 \N 84 1693 {"studies": [], "medications": [], "specialities": []} +1177 2025-07-11 19:36:51.918549+00 2025-07-11 19:36:51.918557+00 f t - - - - \N \N 4096 3415 \N 90 1727 {"studies": [], "medications": [], "specialities": []} +1185 2025-07-11 22:06:12.530691+00 2025-07-11 22:06:12.5307+00 f t Dolor en cervicales . . La ven adolorida. Estuvo unos dias sin moverse, la tutora le dio meloxicam 4 mg el 1er dia, y 2 mg por 3 dias. Luego de eso mejoro, pero no del todo. Presenta mucho dolor y contractura cervical. Aplico tramadol y midazolam. Indico tramadol 50 mg (3/4 de comp cada 12 hs por 2 dias) y pregabalina 30 mg cada 12 hs (de forma cronica). Si no mejora volver a consultar y evaluar aplicacion de corticoide. \N \N 4297 3585 \N 80 1715 {"studies": [], "medications": [], "specialities": []} +1186 2025-07-11 22:39:52.156047+00 2025-07-11 22:39:52.15606+00 f t Cuadro de estres. En 7 días aprox extraer puntos.\nPosiblemente requiera previamente el uso de pregabalina por vía oral para permitir el manejo de la paciente. Se logra sacar de dicho lugar y guardarla momentáneamente en caja transportadora. Ls castraron hace 3 días. Gata feral. Luego de eso se metio en un rack de cables del cual no la pueden sacar. Come poco y aparentemente orino.\nMuy dificil de revisar, agresiva al intentar agarrarla. \nSe logra visualizar la herida quirurgica la cual es integra y sin inflamación visible, en puntos de piel se observa solo el nudo de la región ventral de la herida. \N \N 4263 3558 \N 99 1713 {"studies": [], "medications": [], "specialities": []} +1187 2025-07-12 00:34:21.842166+00 2025-07-12 00:34:21.842174+00 f t Gastritis / cuerpo extraño Monitorear ánimo, apetito, defecación, vómitos (frecuencia y aspecto). De persistir se indica repetir control clínico para medicación y realizar ecografía (dejo orden hecha) Dieta blanda pollo a la plancha 3/4 días. Si normaliza (ausencia de vómitos) recién ahí volver al balanceado muy de a poco.\nSi persisten vómitos: control en 24hs y/o ecografía (dejo orden) Mc: vómitos 3 días de evolución. Intermitentes. Fueron mejorando en cuanto a frecuencia y cantidad. Enza está animada, come, bebe, orina y defeca con normalidad. Último vomito ayer.\nEog sensorio alerta hidratada, mm rosadas, lfn s/p , FR s/p fc s/p pulso fuerte y sincrónico.\nEop. Abdomen distendido, manifiesta dolor en epigastrio. \N \N 4305 3589 \N 79 1718 {"studies": ["1"], "medications": [{"id_medicina": "778", "next_application_months": 0}], "specialities": []} +1188 2025-07-13 15:53:08.204673+00 2025-07-13 15:53:08.204683+00 f t Intolerancia al alimento Vacunación anual. Control de miccion y defecación. Cambio de alimentación a alimento húmedo Agility y administrar varias veces al día. Desparasitación con moxidex plus. EOG: normal. Regurgita esporádicamente. \N \N 4434 3689 \N 92 1745 {"studies": [], "medications": [], "specialities": []} +1189 2025-07-13 20:15:12.828065+00 2025-07-13 20:15:12.828074+00 f t Intolerancia alimentaria? Hipertiroidismo? EII? Linfoma? Otras patologías tracto GI. Se indican estudios. Perfil general, ecografía abdominal y coproparasitológico (se desparasitó solo de pequeño, hace mucho no lo hacen, nunca hicieron copro y convive con niño pequeño). No indico tto hasta estudios, solo dieta por ahora de pollo a la plancha (si lo tolera bien). Mdc descenso muy marcado de peso.\nComía excelent y tenía sobrepeso. Cambiaron a oldprince de pollo q lo comía bien pero tenía "vómitos esporádicos" (x lo q relatan eran regurgitaciones). Luego cambiaron a oldprince de cordero q comía menos. En ese momento nace bebé en la casa. Comenzó con vómitos a repetición: mixtos entre regurgitaciones a veces y otras veces contenido alimenticio parcialmente digerido (contenido gástrico, no esofágico).\nAhora come proplan, al principio estaba bien, luego vómitos muy abundantes de comida parcialmente digerida con líquido y se suma diarrea abundante, sin moco y sin sangre. No notan poliuria ni polidipsia. \N \N 4265 3560 \N 91 1719 {"studies": ["1", "8"], "medications": [], "specialities": []} +1190 2025-07-13 20:24:50.314258+00 2025-07-13 20:24:50.314269+00 f t Gastroenteritis Giacoccide verde durante 10 días. Aplico cerenia+diafin.. receto giacoccide verde+ dieta antidiarreica EOG Normal. Vómitos y diarrea con sangre. Resto, normal. \N \N 533 628 \N 92 1754 {"studies": [], "medications": [], "specialities": []} +1191 2025-07-13 20:38:13.196547+00 2025-07-13 20:38:13.196556+00 f t Otitis bilateral. Se sugiere consulta con etología. Prednisolona 20 mg 1 comp. C/24 hs 5 días, luego 1 comp. C/48 hs 3 tomas y luego 1 comp. C/72 hs 2 tomas.\nNogastrol 30 mg 1 comp. En ayunas c/24 hs mientras tome prednisolona. Se rasca los oidos y agita la cabeza. Un colega le indico gotas oticas pero no las pudieron colocar.\nDificil de revisar, toma conducta agresiva al querer revisar y no se logra colocar bozal.\nSe indica levomepromazina por via oral para permitir un manejo. Se reprograma consulta para el día siguiente.\nEn la misma se logran revisar ambos oidos los cuales presentan eritema intenso sobre todo del lado izquierdo, pero con escaso serumen. \N \N 4325 3603 \N 99 1725 {"studies": [], "medications": [], "specialities": []} +1192 2025-07-13 21:35:22.203511+00 2025-07-13 21:35:22.203523+00 f t Vacunación anual . Vacunación anual EOG Normal.Vacunacion anual. \N \N 264 308 \N 92 1755 {"studies": [], "medications": [{"id_medicina": "1148", "next_application_months": 12}, {"id_medicina": "1159", "next_application_months": 12}], "specialities": []} +1193 2025-07-13 22:38:16.858615+00 2025-07-13 22:38:16.858624+00 f t Artrosis con dolor entre las vértebras lumbares tres y cuatro Evitar que el animal salte y suba escaleras Se medica con 4 mg de dexametasona vía oral por 4 días y al gen 20 cada 12 horas por 5 días El animal presenta temblores en las patas traseras para moverse y le cuesta un poco deambular a la palpación encuentro dolor en vértebras lumbares \N \N 4295 3583 \N 74 1714 {"studies": [], "medications": [{"id_medicina": "713", "next_application_months": 0}], "specialities": []} +1194 2025-07-14 13:29:42.749048+00 2025-07-14 13:29:42.749059+00 f t - - - - \N \N 983 1079 \N 90 1162 {"studies": [], "medications": [], "specialities": []} +1195 2025-07-14 13:37:48.277412+00 2025-07-14 13:37:48.277421+00 f t - - - - \N \N 1249 1276 \N 90 1254 {"studies": [], "medications": [], "specialities": []} +1196 2025-07-14 13:38:46.23426+00 2025-07-14 13:38:46.234274+00 f t - - - - \N \N 1327 1338 \N 90 1235 {"studies": [], "medications": [], "specialities": []} +1197 2025-07-14 13:39:46.005729+00 2025-07-14 13:39:46.005737+00 f t - - - - \N \N 1606 1549 \N 90 1281 {"studies": [], "medications": [], "specialities": []} +1198 2025-07-14 13:42:30.33676+00 2025-07-14 13:42:30.336769+00 f t - - - - \N \N 1717 1637 \N 90 1294 {"studies": [], "medications": [], "specialities": []} +1199 2025-07-14 13:45:14.678378+00 2025-07-14 13:45:14.678386+00 f t - - - - \N \N 2719 2405 \N 90 1478 {"studies": [], "medications": [], "specialities": []} +1200 2025-07-14 13:49:36.412459+00 2025-07-14 13:49:36.41247+00 f t - - - - \N \N 840 949 \N 90 1118 {"studies": [], "medications": [], "specialities": []} +1201 2025-07-14 13:50:38.940281+00 2025-07-14 13:50:38.940293+00 f t - - - - \N \N 713 832 \N 90 1043 {"studies": [], "medications": [], "specialities": []} +1230 2025-07-17 23:25:12.010822+00 2025-07-17 23:25:12.010836+00 f t Gastroenteritis Giacoccide verde cada 12 hs durante 10 días Cerenia+diafin+dieta antidiarreica+giacoccide verde comp. EOG: Normal. Diarrea con sangre y vómitos desde ayer. \N \N 4732 3919 \N 92 1799 {"studies": [], "medications": [], "specialities": []} +1202 2025-07-14 17:32:11.624725+00 2025-07-14 17:32:11.624737+00 f t hipotiroidismo Se indica un nuevo perfil tiroideo completo Continua con misma dosis de levotiroxina, aunque la tsh este ligeramente elevada dado que no ha sx clinicos Consulta endocrinologica para control de hipotiroidismo.\nA la inspeccion se osbervan tanto el pelo como la piel ok\nBuen score corporal, animado \N \N 3712 3149 \N 98 1622 {"studies": [], "medications": [], "specialities": []} +1203 2025-07-14 19:45:22.866128+00 2025-07-14 19:45:22.866137+00 f t Eco de urgencia por vomitos Estudio complementario de urgencia Ecografia abdominal para arribar al dx Eco abdominal \N \N 855 963 \N 90 1760 {"studies": [], "medications": [], "specialities": []} +1204 2025-07-14 20:22:54.843403+00 2025-07-14 20:22:54.843414+00 f t Eco abdominal Eco abdominal Eco abdominal Eco abdominal \N \N 1699 1623 \N 90 1292 {"studies": [], "medications": [], "specialities": []} +1205 2025-07-14 22:08:21.127163+00 2025-07-14 22:08:21.127176+00 f t . . . EOG: normal. Hoy vacunación antirrábica \N \N 3343 2869 \N 92 1701 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}], "specialities": []} +1206 2025-07-14 22:24:28.816536+00 2025-07-14 22:24:28.816545+00 f t Intolerancia alimentaria? Vacunación y desparasitacion anual. Cambio de alimentación a recovery durante dos semanas y luego cambiar a Agility (latas) en forma gradual. Elevar 15 cm los recipientes de bebida y comida. Ofrecer varias veces al día, poca cantidad. Controlar la temperatura ambiental, no permitir que duerma sobre el piso caliente. Temperatura ambiental ideal de 21 grados Centígrados . Si no revierte el comportamiento en 10 días, recomiendo control ASC (perfil general completo+orina) + ecografía abdominal. EOG: Normal. Sensorio alerta. Hidratación normal. La tutora refiere vómitos y regurgitación en forma intermitente. La nota decaída y come poco. Hace dos días última vez que vomitó. Hoy comenzó a comer un poco más en reducidas porciones. Palpación abdominal S/P. \N \N 4461 3709 \N 92 1751 {"studies": [], "medications": [], "specialities": []} +1207 2025-07-15 12:43:15.393352+00 2025-07-15 12:43:15.393365+00 f t - - - - \N \N 4558 3793 \N 90 1764 {"studies": [], "medications": [], "specialities": []} +1208 2025-07-15 14:23:24.315717+00 2025-07-15 14:23:24.315726+00 f t Consulta cancelada Consulta cancelada Consulta cancelada Consulta cancelada \N \N 4182 3487 \N 91 1698 {"studies": [], "medications": [], "specialities": []} +1209 2025-07-15 14:29:56.175462+00 2025-07-15 14:29:56.175474+00 f t Manifestación física de estrés? Parasitosis? Disbacteriosis? Doy pautas de alarma para volver a comunicarse, si todo sigue estable hacemos tele consulta para devolución de resultados. Pido coproparasitológico seriado y tratamos de no medicar hasta resultado para no alterar. Mdc: defeca con sangre.\nNació en casa de familia, lo tiene desde bebé, siempre solo y hace 15 días adoptó una gatita bebé. Al principio se llevaron mal, ahora están más adaptados y se toleran sin grandes problemas, pero la bebé es bastante invasiva, le come la comida, le ocupa los espacios, le usa la litera.\nHace 3 meses aprox tuvo un episodio de vómitos y diarrea, lo trataron en vete con inyectables y desparasitaron con spot on para internos y externos.\nCome excellent gato adulto, ahora también se come el alimento de la gatita bebé.\nRevisación s/p. \N \N 4485 3735 \N 91 1752 {"studies": [], "medications": [], "specialities": []} +1210 2025-07-15 16:15:24.713527+00 2025-07-15 16:15:24.713536+00 f t - . indico desparasitacion con moxidex plus caniche hembra castrada 12 años .\nvisita a domicilio para vacunacion anual\nrevision clinica\naus cardiopulmonar s/p ( tiene ecocardio realizado hace 2 años con informe de enfermedad mixomatosa de la valvula mitral estadio b1 con soplo 1/6)\nnormotermica normohidratrada\npalpacion abdominal s/p \N \N 2925 2622 \N 88 1523 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1159", "next_application_months": 12}], "specialities": []} +1211 2025-07-15 16:16:47.288821+00 2025-07-15 16:16:47.288831+00 f t - . indico desparasitacion con moxidex plus canino hembra chihuahua 4 años entera\nvisita a domicilio para vacunacion anual\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermica normohidratada \N \N 2925 2623 \N 88 1524 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1159", "next_application_months": 12}], "specialities": []} +1212 2025-07-15 16:17:58.168868+00 2025-07-15 16:17:58.168877+00 f t . . indico desparasitacion con moxidex plus canino hembra caniche 3 años entera\nvisita a domicilio para vacunacion anual\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermica normohidratada \N \N 2925 2567 \N 88 1667 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1168", "next_application_months": 12}], "specialities": []} +1213 2025-07-15 16:20:23.079385+00 2025-07-15 16:20:23.079397+00 f t . sugiero realizar aoc + upc y evaluar segun resultados cambio de alimento indico desaparasitacion interna con moxidex plus repitiendo a los 15 dias \ndejo pipeta para desparasitacion externa felino macho comun europeo 4 años 6.5 kg aprox\nvisita a domicilio para vacunacion anual\ndesparasitacion interna y externa vencidas \ncome urinary so hace al menos 1.5 años por un flud\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermico normohidratado \N \N 3988 3339 \N 88 1679 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +1214 2025-07-15 16:24:06.160392+00 2025-07-15 16:24:06.160401+00 f t parasitosis? dejo frasco para realizar coproparasitologico + analisis fresco de la materia fecal . felino macho castrado comun europeo 5 años .\nacudo a domicilio para poder darle el comprimido del antiparasitario que deje anteriormente ya que la tutora no pudo administrarselo ( 2da dosis)\ntiene 3 gatos y los 3 comen dieta barf, desde la primer dosis del moxidex comenzaron con deposiciones pastosas con moco y trazas de sangre. actualmente mejoraron las deposiciones. \N \N 3347 2872 \N 88 1703 {"studies": [], "medications": [], "specialities": []} +1229 2025-07-17 22:37:41.091362+00 2025-07-17 22:37:41.091371+00 f t Cardiopatia Sugiero cintrol cardiologico Sextuple y var Eog normal , cardio: soplo sistolico, abdomen blando pulmones ok \N \N 4390 3654 \N 21 1738 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1170", "next_application_months": 12}], "specialities": ["8"]} +1338 2025-07-30 18:48:18.784539+00 2025-07-30 18:48:18.784556+00 f t - - - - \N \N 5120 4225 \N 90 1858 {"studies": [], "medications": [], "specialities": []} +1342 2025-07-31 13:02:35.108512+00 2025-07-31 13:02:35.108522+00 f t - - - - \N \N 5570 4562 \N 90 1942 {"studies": [], "medications": [], "specialities": []} +1345 2025-07-31 19:41:51.278772+00 2025-07-31 19:41:51.278785+00 f t . - - . \N \N 5528 4528 \N 100 1926 {"studies": [], "medications": [], "specialities": []} +1348 2025-07-31 19:56:54.091945+00 2025-07-31 19:56:54.091953+00 f t - - - - \N \N 5566 4558 \N 90 1940 {"studies": [], "medications": [], "specialities": []} +1215 2025-07-15 16:31:48.799724+00 2025-07-15 16:31:48.799732+00 f t enfermedad degenerativa coxofemoral bilateral sugiero fisioterapia por la patologia antes mencionada y por otro lado, dada la edad del gordo, sugiero chequeo de sangre ( perfil completo) ´+ eco abdominal. aplico raniditina meloxivet y tramadol.\nindico via oral meloxi + tramdol . canino macho mestizo 35 kg \nconsulta porque notan que esta con dolor.\ntiene hecha una rx del 06/11/24 en la cual se observa deformacion de cuellos y cabezas femorales. esclerosis y rarefaccion de hueso subcondral acetabular , osteofitosis periarticular. dichos hallazgos sugieren enfermedad articular degenerativa coxofemoral bilateral. leve rarefaccion de hueso subcondral en meseta tibial izquierda que sugiere enfermedad articular degenerativa en rodilla izquierda.\nal paciente se pone agresivo cuando intento revisarlo. presenta marcado dolor en region de la cadera. \nno puedo tomar muchos parametros clinicos mas por el tipo de paciente. \N \N 4255 3550 \N 88 1707 {"studies": [], "medications": [{"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "872", "next_application_months": 0}], "specialities": []} +1216 2025-07-15 16:35:38.639752+00 2025-07-15 16:35:38.639763+00 f t rinitis ? bronquitis ? realizo orden para rx de torax ll y vd , ya que repitió el cuadro respiratorio en menos de 2 meses. sugiero realizar analisis de sangre para evaluar medio interno por la edad del gordo no medico en domicilio por el tipo de paciente\nindico que comience via oral con amoxicilina cada 12 hs por 7 dias felino macho comun europeo 13 años 6 kg aprox\nconsulta por estornudos y secrecion verdosa por ollares. evolucion 2 semanas .\nde animo todo ok, juega come etc\nno vomitos ni diarrea\nrevision clinica\naus cardiopulmonar, se dificulta mucho ya que el paciente esta a la defensiva . \nnormotermico\nnormohidratado\nabundate secrecion verdosa por ollares \N \N 916 1021 \N 88 1726 {"studies": [], "medications": [], "specialities": []} +1217 2025-07-15 18:55:31.204607+00 2025-07-15 18:55:31.204619+00 f t . . . Paciente de 10 años. Consulta por perdida de peso. Score 1.5/5, sin sintomas. Eog spp. Ecografia de hace 2 años con gastroenterocolitis, reaccion de rama izq del pancreas, hepatopatia metabolica, reaccion peritoneal y reaccion de linfonodulos. Solicito ecografia abdominal y perfil general completo \N \N 4258 3553 \N 80 1709 {"studies": [], "medications": [], "specialities": []} +1218 2025-07-15 19:00:36.604312+00 2025-07-15 19:00:36.604322+00 f t Asma . . Lo tienen hace un año, antes vivia con otra familia. Consultan por tos, la tiene desde que lo conocen y la hace una vez por semana aprox. Eog aumento de murmullo vesicular bilateral, obesidad. Solicito rx torax L-L y D-V. Luego volver a pedir consulta conmigo. Indico dar menos comida. \N \N 4433 3688 \N 80 1744 {"studies": [], "medications": [], "specialities": []} +1219 2025-07-16 12:40:18.622559+00 2025-07-16 12:40:18.622569+00 f t - - - - \N \N 4549 3787 \N 90 1775 {"studies": [], "medications": [], "specialities": []} +1220 2025-07-16 16:16:05.468141+00 2025-07-16 16:16:05.468152+00 f t - - - - \N \N 2894 2549 \N 100 1733 {"studies": [], "medications": [], "specialities": []} +1221 2025-07-16 16:36:16.806947+00 2025-07-16 16:36:16.806955+00 f t Vacunación triple felina Repetir triple felina + Var en 3 dias Triple felina EOG normal \N \N 4471 3722 \N 92 1750 {"studies": [], "medications": [{"id_medicina": "1157", "next_application_months": 3}], "specialities": []} +1222 2025-07-17 12:36:06.9346+00 2025-07-17 12:36:06.934614+00 f t - - - - \N \N 4265 3560 \N 90 1741 {"studies": [], "medications": [], "specialities": []} +1226 2025-07-17 16:49:10.044079+00 2025-07-17 16:49:10.04409+00 f t Síndrome braquicefalico por esfuerzo Considerar cirugía correctiva. Ninguno Paciente braquicefalico, con estenosis de narinas y taquipnea. Ronquidos por paladar elongado. \N \N 4512 3758 \N 68 1756 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +1223 2025-07-17 14:50:40.016328+00 2025-07-17 14:50:40.016338+00 f t IMAGEN SUGERENTE DE HEPATOPATIA VACUOLAR (LIPIDOS) MODERADA. CONTROL ECOGRÁFICO CADA 6 MESES . HIGADO: TAMAÑO CONSERVADO. ECOGENICIDAD AUMENTADA EN FORMA GENERALIZADA. LIGERA DISMINUCION DEL \nCONTRASTE VASCULAR Y DUCTAL. ISOECOGENICO AL BAZO E HIPERECOGENICO AL LIGAMENTO FALCIFORME. ECOTEXTURA \nCONSERVADA. PARENQUIMA CONSERVADO. IMAGEN SUGERENTE DE HEPATOPATIA VACUOLAR (LIPIDOS) MODERADA. \n \n \nVESICULA BILIAR: DISTENSION MODERADA, VOLUMEN DE 7,2 ML, VALOR DE REFERENCIA EN CANINOS 1 ML /KG DE PESO). \nCONTENIDO ANECOICO, HOMOGENEO. PARED CONSERVADA. VIAS BILIARES EXTRAHEPATICAS CONSERVADAS. \n \n \nPANCREAS: AREA DE PROYECCION CONSERVADA. \n \n \nBAZO: TAMAÑO CONSERVADO. ECOGENICIDAD Y ECOTEXTURA CONSERVADAS. ESPESOR DE 22,7 MM. \n \n \nESTOMAGO: CONTENIDO ECOGENICO, DE ECOTEXTURA FINA, HOMOGENEO (ALIMENTO). NOTA PACIENTE CON 12 HORAS DE \nAYUNO DE SOLIDOS. PARED CON ESTRATIFICACION CONSERVADA, ESPESOR MURAL DE 4,7 MM. CONSERVADO. \n \n \nINTESTINOS: ALGUNAS ASAS CON CONTENIDO ECOGENICO DE GRANO FINO, HOMOGENEO, OTRAS ASAS VACIAS. PAREDES \nCON ESTRATIFICACION CONSERVADAS. \n \n \nCOLON: PARED CONSERVADA. CONTENIDO SOLIDO Y GASEOSO. \n \n \n \nRIÑONES: AMBOS CONSERVAN RELACION Y DIFERENCIACION CORTICOMEDULAR. FORMA Y CONTORNO CONSERVADOS. \nTAMAÑOS IZQUIERDO 65,7 X 38 MM, DERECHO 66,6 X 34 MM. \n \n \nVEJIGA: DISTENDIDA, CONTENIDO ANECOICO, HOMOGENEO. PARED LISA, REGULAR, CONSERVADA. \n \n \nNO SE VISUALIZO LINFOADENOPATIA. \n \n \nNO SE VISUALIZO LIQUIDO LIBRE EN CAVIDAD ABDOMINAL. \N \N 266 335 \N 5 1369 {"studies": [], "medications": [], "specialities": []} +1224 2025-07-17 16:45:55.784729+00 2025-07-17 16:45:55.784741+00 f t Falla sistémica, inanición Nada Eutanasia Paciente geronte con lisis ósea maxilar por enfermedad periodontal, caquexia \N \N 4300 3587 \N 68 1716 {"studies": [], "medications": [], "specialities": []} +1225 2025-07-17 16:47:41.962816+00 2025-07-17 16:47:41.962825+00 f t Rinitis infecciosa, no es fácil de medicar. Si recae requiere control Penicilina estrepto de depósito Rinitis post castracion , estornudos sin cambios clínicos y tórax s/p. Normotermia \N \N 4334 3609 \N 68 1729 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1227 2025-07-17 16:50:25.397067+00 2025-07-17 16:50:25.397077+00 f t Nódulo en flanco derecho de piel menor a 5mm. Controlar e idealmente resecar. Nada Control lesión de piel. Braquicefalico en buen estado antecedente de lesiones vertebrales. \N \N 4512 3757 \N 68 1757 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}], "specialities": []} +1228 2025-07-17 18:30:13.655708+00 2025-07-17 18:30:13.655719+00 f t Cauda equina.\nGastritis.\nEnfermedad periodontal.\nCardiopatía Consulta cardiológica y uso de antiinflamatorios de acuerdo la evolución neuro-articular Penicilina estrepto. Geronte, vómitos de anoche hoy empezó a tolerar agua y comida. Tiene antecedentes de sensibilidad dietaría, soplo 3/6. Mucosas rosa, odontolitiasis. Columna alteraciones en tren posterior, inestabilidad. Marcha con compromiso en propiocepcion. Incontinencia fecal y urinaria. \N \N 4721 3911 \N 68 1797 {"studies": [], "medications": [{"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "950", "next_application_months": 0}], "specialities": []} +1232 2025-07-17 23:32:55.281776+00 2025-07-17 23:32:55.281784+00 f t Flemon Limpieza dental. Solicito ASC(perfíl general completo)+ AOC y control cardíaco con riesgo anestésico. Tribiotic+Meloxicam+neodimetrogin (5 días). EOG normal. Inflamación en mejilla derecha desde ayer.. sobrepeso \N \N 4737 3922 \N 92 1800 {"studies": [], "medications": [], "specialities": []} +1231 2025-07-17 23:32:55.278746+00 2025-07-17 23:32:55.278758+00 f t Flemon Limpieza dental. Solicito ASC(perfíl general completo)+ AOC y control cardíaco con riesgo anestésico. Tribiotic+Meloxicam+neodimetrogin (5 días). EOG normal. Inflamación en mejilla derecha desde ayer.. sobrepeso \N \N 4737 3922 \N 92 1800 {"studies": [], "medications": [], "specialities": []} +1234 2025-07-18 13:18:44.312486+00 2025-07-18 13:18:44.312499+00 f t - - - - \N \N 2894 2549 \N 100 1796 {"studies": [], "medications": [], "specialities": []} +1235 2025-07-18 15:23:44.719346+00 2025-07-18 15:23:44.719354+00 f t Vacunacion anual Ninguna Ninguno Se realizo consulta clínica general. Auscultación cardíaca y respiratoria sin particularidades. Pelaje brilloso. Mucosas rosadas. \N \N 4332 3608 \N 97 1728 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1236 2025-07-18 20:18:30.902398+00 2025-07-18 20:18:30.902408+00 f t . . . Aplico 3era dosis de triple felina a los 3 gatitos. Eog spp. \N \N 667 788 \N 80 1572 {"studies": [], "medications": [], "specialities": []} +1237 2025-07-18 20:19:09.834425+00 2025-07-18 20:19:09.834438+00 f t . . . . \N \N 4384 3648 \N 80 1739 {"studies": [], "medications": [], "specialities": []} +1238 2025-07-18 20:24:11.985182+00 2025-07-18 20:24:11.985191+00 f t Alergia alimentaria/atopia/DAPP Solo dar ese alimento, ningun extra Pipeta para pulgas\nPrednisolona 10 mg (1er dia 1/2 comp, dia 2 y 3 1/4 de comp)\nCambio de alimento a royal canin hipoalergenico\nControl en 3 semanas Prurito en el lado derecho de la cara sobre el nacimiento de los bigotes. Inicio en enero. Come royal canin exigent. Gato indoor, pero comparte una terraza en donde puede circular algun gato. Zona con pelo corto, que estuvo alopesica y luego crecio el pelo (los bigotes tambien estan mas cortos) \N \N 4550 3788 \N 80 1759 {"studies": [], "medications": [], "specialities": []} +1239 2025-07-19 13:34:43.117547+00 2025-07-19 13:34:43.117556+00 f t . . . . \N \N 3347 2872 \N 100 1794 {"studies": [], "medications": [], "specialities": []} +1233 2025-07-18 13:16:51.428731+00 2025-07-18 13:16:51.42874+00 t t - - - - \N \N 4265 3560 \N 100 1769 {"studies": [], "medications": [], "specialities": []} +1240 2025-07-19 13:43:18.407691+00 2025-07-19 13:43:18.4077+00 f t .- .- .- .- \N \N 4265 3560 \N 100 1769 {"studies": [], "medications": [], "specialities": []} +1241 2025-07-19 13:47:33.20708+00 2025-07-19 13:47:33.20709+00 f t .- . . .- \N \N 4748 3935 \N 100 1804 {"studies": [], "medications": [], "specialities": []} +1242 2025-07-19 14:51:48.129602+00 2025-07-19 14:51:48.129613+00 f t Enf degenerativa articular.//espondilosis/ disco espondilosis Colchón de alta densidad. Adecuar sectores que frecuenta con piso de goma/antideslizante. Elevar recipiente de comida y bebida Se extrae sangre para perfil completo sin orina de MPD. Según resultados e interconsulta con fisiatra y onco Mc análisis de sangre solicitado por oncóloga. Padece de enfermedad degenerativa articular, y tiene un lipoma (citología de 2022) en hemitorax derecho adherido a músculos. \nEog s/p\nEop: dolor a nivel lumbar, deformación en más mencionada más arriba. \N \N 4748 3935 \N 79 1803 {"studies": [], "medications": [], "specialities": []} +1243 2025-07-19 18:13:39.726455+00 2025-07-19 18:13:39.726466+00 f t Control clínico: sin particularidades. Continuar con los mismos cuidados. Tito se encuentra activo y con un muy buen ánimo. . EOG: Normal. Hidratación normal. Estado alerta. Defeca y orina normal. Apetito normal. \N \N 1734 1651 \N 92 1822 {"studies": [], "medications": [], "specialities": []} +1244 2025-07-21 18:09:12.027903+00 2025-07-21 18:09:12.027914+00 f t Extracción puntos Sin recomendaciones específicas Crema 6a x 48 hs Hace 2 semanas se castró en cqv. Herida qx en linea media, cicatrización normal. Retiro puntos. Piel levemente eritematosa al rededor de herida. Indico colocar crema 6a x 48 hs. Alta qx. \N \N 710 2947 \N 91 1772 {"studies": [], "medications": [], "specialities": []} +1245 2025-07-21 18:09:56.416597+00 2025-07-21 18:09:56.416608+00 f t Extracción de puntos Sin recomendaciones específicas Crema 6a x 48 hs Hace 2 semanas se castró en cqv. Herida qx en linea media, cicatrización normal. Retiro puntos. Piel levemente eritematosa al rededor de herida. Indico colocar crema 6a x 48 hs. Alta qx. \N \N 710 827 \N 91 1771 {"studies": [], "medications": [], "specialities": []} +1246 2025-07-21 21:22:56.338615+00 2025-07-21 21:22:56.338625+00 f t Vacunación anual Desparasitar en 20-30 días, previamente pesar. . EOG normal \N \N 4858 4013 \N 92 1824 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1176", "next_application_months": 12}], "specialities": []} +1247 2025-07-21 23:02:49.88888+00 2025-07-21 23:02:49.888888+00 f t Dermatitis atopica canina + piogranulomas podales Sugiero interconsulta con nutricion, es un paciente con marcado sobrepeso, poca actividad y dieta desequilibrada Sugiero interconsulta con nutricionista. \nRp ciclosporina 1.5ml x dia x 40 dias, y pulsos de prednisolona 7.5mg 2 veces x dia x 2 semanas Control dermatologico: estuvo en tto con doxiciclina x 21 dias , y en la ultima semana sumamos prednisolona 10 mg 3/4 por dia porque tuvo una recaída. Ahora está sin lesiones, solo un granuloma en tarso izquierdo. Explico que las distintas lesiones que fue presentando junto con las lesiones piogranulomatosas tienen una base atopica. El paciente no se alimenta correctamente, come varias carnes y algo de verduras, no esta equilibraro ni balanceado, y tiene sobre peso, pasea poco y no esta castrado \N \N 1082 1150 \N 75 1720 {"studies": [], "medications": [], "specialities": ["54"]} +1248 2025-07-21 23:17:13.227463+00 2025-07-21 23:17:13.227471+00 f t . . Séxtuple Refuerzo de la séxtuple. EOG Normal \N \N 2892 2547 \N 92 1547 {"studies": [], "medications": [{"id_medicina": "1171", "next_application_months": 12}], "specialities": []} +1302 2025-07-28 22:55:57.725942+00 2025-07-28 22:55:57.725953+00 f t Vacunacion anual Ninguna Ninguno Se realizo auscultación pulmonar y cardíaca sin particularidades. \N \N 5168 4254 \N 97 1866 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1339 2025-07-30 19:05:59.128835+00 2025-07-30 19:05:59.128843+00 f t - - - - \N \N 409 488 \N 100 1863 {"studies": [], "medications": [], "specialities": []} +1343 2025-07-31 19:40:22.361758+00 2025-07-31 19:40:22.36177+00 f t . . . . \N \N 5329 4376 \N 100 1895 {"studies": [], "medications": [], "specialities": []} +1346 2025-07-31 19:51:42.43236+00 2025-07-31 19:51:42.43237+00 f t - - - - \N \N 1798 1709 \N 90 1859 {"studies": [], "medications": [], "specialities": []} +1249 2025-07-22 02:37:16.229751+00 2025-07-22 02:37:16.22976+00 f t Estrés, dificultad en la adaptación. Hablamos verbalmente de recomendaciones de manejo. Tutora está embarazada, indico realizar consulta con etología previo al nacimiento, para adelantarse al cambio y posible factor de estrés ya que Lani es sensible a los cambios. Manejo comportamental, difusor serenex y flores de bach. Mdc: la ven estresada. Hace 20 días se mudaron desde el delta, vivía en una casa indoor, se trasladó en lancha y en auto, ahora vive indoor en dpto. La tutora la adoptó a los 3 meses aprox, nació en una casa (mamá rescatada) y vivió con mamá y hermanos hasta la adopción. Siempre fue miedosa. Primero vivió sola con ella, luego se incorporó su pareja, ahí mostró sx de disconfort, tuvo menos tolerancia a la manipulación por parte de él, a veces lo acechaba y atacaba los pies, si bien no tiene el mismo vínculo que con ella, todo esto mejoró. En dic 2024 adoptaron gatita de 3 meses, hicieron buen manejo para la integración y se adaptaron bien. Hablamos sobre algunas cuestiones de convivencia entre las gatas. A la revisación solo encuentro abundante MF, sospecho q va con menor frecuencia las piedras. Resto s/p. \N \N 4620 3839 \N 91 1778 {"studies": [], "medications": [], "specialities": []} +1250 2025-07-22 02:42:12.710346+00 2025-07-22 02:42:12.710359+00 f t Enteropatía inflamatoria? Cardiopatía? Interconsulta con gastroenterología.\nEcocardiograma. Ranitidina x 10 días, prednisolona x 5 días, enzimax. Dieta gastrointestinal preferencia x húmedo, sino seco royal canin o proplan y/o pollo hasta interconsulta con especialista en gastroenterología. Devolución de resultados. Copro negativo, eco: hígado congestión, riñones con cambios seniles, gastritis leve, enteropatía inflamatoria/ senil/ infiltrativa. AS: urea elevada con creatinina normal, colesterol bajo, GPT elevada, mal funcionamiento hepático? Globulinas elevadas. \N \N 4265 3560 \N 91 1828 {"studies": ["3"], "medications": [], "specialities": ["8"]} +1251 2025-07-22 14:23:25.724203+00 2025-07-22 14:23:25.724212+00 f t - - - - \N \N 4954 4100 \N 90 1837 {"studies": [], "medications": [], "specialities": []} +1252 2025-07-22 14:25:02.265461+00 2025-07-22 14:25:02.265475+00 f t - - - - \N \N 5000 4131 \N 90 1836 {"studies": [], "medications": [], "specialities": []} +1253 2025-07-22 14:57:25.188288+00 2025-07-22 14:57:25.188299+00 f t . . . Eog spp, aplico pipeta para pulgas. Dejo pipeta para parasitos internos para que le aplique la tutora en 4 dias minimo. Corto uñas. En noviembre vencen las vacunas anuales. \N \N 4693 3896 \N 80 1795 {"studies": [], "medications": [], "specialities": []} +1254 2025-07-22 18:04:12.654452+00 2025-07-22 18:04:12.654461+00 f t - - - - \N \N 4771 3951 \N 90 1809 {"studies": [], "medications": [], "specialities": []} +1255 2025-07-23 01:20:50.749858+00 2025-07-23 01:20:50.749872+00 f t Indiscreción alimentaria? Cuerpo extraño? Ante cualquier cambio desfavorable nos contacta, si vuelve a vomitar o mañana no se encuentra normal, hacemos ecografía abdominal (hay que darle gabapentina) Por ahora no medico oral. Hablamos de pautas de alimentación para la recuperación. Tuvo un vómito el domingo, otro ayer lunes y hoy vomitó dos veces. Una parte de comida parcialmente digerida, una parte de comida sin digerir, mucus y 3 o 4 puntitos de sangre (sospecho q la sangre es por el esfuerzo del vómito, no aparenta hematemesis). Hasta el último vómito de hoy al mediodía conservó ánimo, apetito e ingesta de agua. Luego del último la vio un poco caída. No tiene diarrea. No hay plantas, no suele romper cosas, una sola vez por accidente tuvo acceso a una gomita de pelo q se tragó y la vomitó. A la revisación EOG s/p, palpación abdominal dificultosa xq se pone muy nerviosa, bufa y quiere atacar (cosa rara en ella, ya la vi dos veces y no tuvo esa actitud). El abdomen se palpa distendido y tenso, dolor en epigastrio. Hipogastrio actualmente s/p. Come gastrointestinal. \N \N 1009 1325 \N 91 1845 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "641", "next_application_months": 0}], "specialities": []} +1256 2025-07-23 12:30:52.282848+00 2025-07-23 12:30:52.282859+00 f t - - - - \N \N 4485 3735 \N 100 1770 {"studies": [], "medications": [], "specialities": []} +1257 2025-07-23 14:07:02.951637+00 2025-07-23 14:07:02.951645+00 f t - - - - \N \N 3820 3232 \N 90 1812 {"studies": [], "medications": [], "specialities": []} +1258 2025-07-23 15:18:23.685633+00 2025-07-23 15:18:23.685641+00 f t ¿Insuficiencia renal? Limipeza dental, perfil de sangre y ecografía abdominal. Antibiótico para ginvititis Pérdida progresiva de peso, PD/PU, mucosas rosa. Paciente alérgica estable. Enfermedad periodontal severa. \N \N 3052 3484 \N 68 1696 {"studies": ["8"], "medications": [], "specialities": ["41"]} +1259 2025-07-23 15:20:14.342293+00 2025-07-23 15:20:14.342301+00 f t Considerar limpieza de dientes con pre quirúrgicos. Estudios complementarios. Antibiótico para enfermedad periodontal. Enfermedad periodontal.\nHemangioma dérmico en prepucio.\nHiperplasia gingival. \N \N 3052 2661 \N 68 1697 {"studies": [], "medications": [], "specialities": []} +1260 2025-07-23 15:21:51.813365+00 2025-07-23 15:21:51.813372+00 f t Hematoma abdominal Reposo Prednisolona y rumiclamox. Trauma 24hs de evolución, dolor columna, tórax y abdomen. Mucosas rosa, come y tolera. \N \N 4869 4026 \N 68 1831 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +1261 2025-07-23 15:24:57.233964+00 2025-07-23 15:24:57.233972+00 f t Artrosis/ Artritis. Usar condroprotectores. Realizar radiografías y estudios complementarios. Paciente con claudicación previa similar MAI, ayer molestias para apoyar ese miembro y sentarse. Uñas demuestran alteraciones de aplomo secundarias a alteraciones osteosrticulares. \N \N 409 488 \N 68 1842 {"studies": ["1", "2"], "medications": [], "specialities": []} +1262 2025-07-23 21:16:55.895466+00 2025-07-23 21:16:55.895475+00 f t hipercolesterolemia . por hipotiroidismo? sugiero realizar medicion de t4 indico cambio de alimento a propla obesity por valores altos en colesterol y lipidos totales felino macho comun europeo 16 años castrado \nse realiza lectura de analisis de resultados de sangre. \N \N 2894 2549 \N 88 1790 {"studies": [], "medications": [], "specialities": []} +1303 2025-07-28 22:57:28.215809+00 2025-07-28 22:57:28.215819+00 f t Vacunacion anual Ninguna Ninguno Alerta. Se te trató de auscultar pero no se pudo \N \N 5168 4253 \N 97 1867 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1340 2025-07-30 19:41:28.805672+00 2025-07-30 19:41:28.805682+00 f t Parasitosis? Tratar de que no salga tanto a la calle Se indica desparasitar con pipeta endo spot Se revisa a la paciente y no evidencia ningún particularidad. \N \N 5486 4495 \N 1 1917 {"studies": [], "medications": [], "specialities": []} +1344 2025-07-31 19:40:53.257386+00 2025-07-31 19:40:53.257395+00 f t . . . . \N \N 5329 4376 \N 100 1929 {"studies": [], "medications": [], "specialities": []} +1347 2025-07-31 19:55:37.955337+00 2025-07-31 19:55:37.955347+00 f t - - - - \N \N 5557 4554 \N 90 1933 {"studies": [], "medications": [], "specialities": []} +1263 2025-07-23 21:22:30.584442+00 2025-07-23 21:22:30.584454+00 f t insuficiencia renal ? explico necesidad de internacion para realizar metodos complementarios si el animal no come aplico medicacion y suero antes mencionado .dejo medicacion ( rani novotioc ) en jeringa para aplicarle cada 12 hs .\nsugiero alimentacion palatable para estimular apetito felino hembra castrada comun europeo 18 años\nconsulta porque desde ayer se esconde atras de la heladera ( cosa que nunca hizo) y no quiere comer.\nno observaron vomitos ni diarrea.\npolidipsia poliuria\ncome perfomance\ndesparasitaciones vencidas\nrevision clinica\naus s/p\ndeshidratacion 8%\npelo hirsuto\ncav bucal s/p . tllc aumentado\npalpacion abdominal: abdomen blando, se palpa abundante materia fecal en colon . renomegalia ? \N \N 4727 3916 \N 88 1798 {"studies": [], "medications": [{"id_medicina": "1069", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "905", "next_application_months": 0}, {"id_medicina": "840", "next_application_months": 0}, {"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1264 2025-07-23 21:24:50.44228+00 2025-07-23 21:24:50.442293+00 f t . no se pudo realizar la extraccion de sangre . indico gabapentina para coordinar proxima visita y hago incapie en la importancia de que haya 3 personas en total en el domicilio para poder efectivizar la maniobra - felino macho comun europeo 4 años castrado\nacudo al domicilio porque la tutora quiere realizar el test de vilef por pcr pq le comentaron que el padre del paciente en cuestion es positivo a vilef.\nrevision clinica\naus s/p\npalpacion abdominall. abdomen blando , no manifiesta dolor a la palpacion \nnormotermico normohidratado \N \N 4670 3878 \N 88 1786 {"studies": [], "medications": [], "specialities": []} +1265 2025-07-23 21:31:14.37184+00 2025-07-23 21:31:14.371848+00 f t cardiomiopatia de fenotipo hipertrofico e insuficiencia renal explico como realizar correctamente el pasaje de ringer lactato, en caso de no poder , sugiero escribirnos para enviarle un enfermo/a para que pueda realizar la fluido indico, cambio de alimento a royal canin renal + fluido subcutaneo ( ringer lactato) 100 ml cada 48 / 72 hs \ntambien indico de por vida rumivital forte 3 comprimidos diarios acudo al domicilio ya que la tutora realizo todos los complementarios en la veterinaria Honorio, y realizo lectura de dichos estudios\necocardiograma : cardiomiopatia de fenotipo hipertrofico\nsangre : insuficiencia renal \neco abdominal: nefropatia cronica \N \N 2823 2483 \N 88 1807 {"studies": [], "medications": [], "specialities": []} +1266 2025-07-23 21:34:09.067319+00 2025-07-23 21:34:09.067328+00 f t insuficiencia renal ? sugiero realizar perfil hepatico + calcio + fosforo + aoc + upc indico ranitidina en gotas cada 12 hs por 7 dias + rumivital forte + ringer subcutaneo ( 100 ml ) control. la paciente a las 4-5 horas de la fluidoterapia subcutanea comenzo a comer con ganas ( pouch pollo atun etc)\nno presento vomitos ni diarrea y si observaron materia fecal en las piedritas. \N \N 4727 3916 \N 88 1816 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}], "specialities": []} +1267 2025-07-24 00:35:18.994324+00 2025-07-24 00:35:18.994334+00 f t Enteropatia neoplasica Derivación a oncología para evaluación y seguimiento de neoplasia intestinal. Sostén sintomatico de la diarrea Paciente con enteropatia y adenopatía neoplásica. Sensorio alerta. Apetito normal. Presenta diarrea \N \N 4673 3880 \N 92 1789 {"studies": [], "medications": [], "specialities": []} +1268 2025-07-24 14:21:35.801336+00 2025-07-24 14:21:35.801349+00 f t - - - - \N \N 5058 4178 \N 100 1847 {"studies": [], "medications": [], "specialities": []} +1269 2025-07-24 14:43:57.882329+00 2025-07-24 14:43:57.882338+00 f t - - - - \N \N 4727 3916 \N 100 1827 {"studies": [], "medications": [], "specialities": []} +1341 2025-07-30 20:24:09.854272+00 2025-07-30 20:24:09.854283+00 f t . . . . \N \N 3820 3232 \N 100 1811 {"studies": [], "medications": [], "specialities": []} +1271 2025-07-25 03:17:27.115859+00 2025-07-25 03:17:27.115872+00 f t Neoplasias varias, en ABC?/hepatopatía / erhliquia . Descompensación severa por los días de inanición. Aporte calórico. Asistir bebida y comida Se indica internación. Frente a la imposibilidad se decide e colocar catéter en MAD. Se administra ringer lactato entibiado, endovenoso lento aprox medio Sachet y el resto sc. Medicaciones indicadas. Soporte termico. Se indica alimentación asistida con Recovery. Dejo orden de ecografía. Evaluar sacar sangre una vez restaurada la hidratación. Administrr ringer sc en casa. Pronóstico reservado /grave. Control en 24/48hs . Mc tres días sin comer ni tomar agua. convulsiones comenzaron hace un mes. Controladas con contal 50.\nEog sensorio deprimido, decúbito esternal, lfn s/p deshidratación del 10%. Mucosas ictericas. Bradicardia. Pulso debil . Sarcipenia severa (sobretodo músculos temporales)Temp37.2. sincrónico. Frecuencia resp s/p\nEop. Múltiples neoplasias en piel. Neoplasia en ano. En encía inferior. Asimetría testicular. (Sin citología) Abdomen blando, asas pastosas, Def en más en abdomen (bazo? Lfn?) sin dolor manifiesto. Mido glucemia 104. Imposible sacar sangre por grado de deshidratación/hipvolemia\nEstudios previos (mayo) fas 800 hto 34% GB 14000 \N \N 5204 4277 \N 79 1875 {"studies": ["1", "8"], "medications": [{"id_medicina": "702", "next_application_months": 0}, {"id_medicina": "793", "next_application_months": 0}, {"id_medicina": "641", "next_application_months": 0}, {"id_medicina": "778", "next_application_months": 0}, {"id_medicina": "1137", "next_application_months": 0}, {"id_medicina": "1069", "next_application_months": 0}], "specialities": []} +1272 2025-07-25 13:26:00.127061+00 2025-07-25 13:26:00.127069+00 f t - - - - \N \N 409 488 \N 90 1861 {"studies": [], "medications": [], "specialities": []} +1273 2025-07-25 13:26:43.783775+00 2025-07-25 13:26:43.783782+00 f t - - - - \N \N 5107 4213 \N 90 1857 {"studies": [], "medications": [], "specialities": []} +1274 2025-07-25 13:27:14.353084+00 2025-07-25 13:27:14.353096+00 f t - - - - \N \N 5189 4266 \N 90 1872 {"studies": [], "medications": [], "specialities": []} +1275 2025-07-25 15:21:32.428439+00 2025-07-25 15:21:32.428448+00 f t No tiene enfermedades diagnosticadas Comenzar con dieta senior, y sumar : Juvenia y Artrin Sin tto Telemedicina, consulta para tomar recaudos y consejos necesarios sobre el manejo de perro gerente \N \N 854 962 \N 94 1702 {"studies": [], "medications": [], "specialities": []} +1276 2025-07-25 15:23:16.72983+00 2025-07-25 15:23:16.729837+00 f t Posible quiste ceb Se toman las medidas y características de la NEO , ya enviada info a CX \nSe dejan ordenes precx (cardio y sangre) Tratamiento con prednisolona finalizado, con muy buena respuesta, al interrumpirlo nuevamente vuelve a ganar tamaño Neoformacion blanda en cuello, control evolutivo \N \N 1798 1709 \N 94 1792 {"studies": [], "medications": [], "specialities": ["8", "79", "76"]} +1270 2025-07-25 00:03:16.697693+00 2025-07-25 00:03:16.697705+00 f t - . . - \N \N 5021 4145 \N 100 1855 {"studies": [], "medications": [], "specialities": []} +1277 2025-07-25 18:40:25.185201+00 2025-07-25 18:40:25.185213+00 f t Vacunación \nCE nasal? Observar como sigue con los estornudos inversos. Total full cg a 1 ml/kg x 3 días consecutivos. Hace una semana está en su casa, nació en un dep. Tiene 3 vacunas séxtuple de paul, ninguna tiene sello veterinario.. cómo ya tiene 4 meses, indico un solo refuerzo de séxtuple para no administrar más cantidad de vacunas (aunque no coincido con él administrado previamente). Tiene desparasitación previa con total full cg, le toca la semana q viene repetir. (Le explico como hacerlo, pesar, dosis y esquema de 3 días consecutivos). Come starter mini y está por debajo de la cantidad recomendada, indico cuando se le acabe la bolsa cambio paulatino a mini puppy y ajustamos cantidad. Fontanela bastante abierta, un radio de 2.5 cm aprox, sin sx neuro, explico que al s frecuente en la raza y lo seguiremos controlando. Además me muestra 2 videos de estornudos inversos, comenzó a hacerlo a los 3 días de estar en la casa, lo hace solo x la mañana en un episodio único. Un día le sacaron de dentro de ollares restos de un paño pet q rompió, no descarto cuerpo extraño. (No hay irritantes ambientales de los más frecuentes). \N \N 4789 3965 \N 91 1814 {"studies": [], "medications": [{"id_medicina": "1168", "next_application_months": 12}], "specialities": []} +1278 2025-07-26 00:53:34.711069+00 2025-07-26 00:53:34.711081+00 f t Vacunación anual.\nEAD? S/r Meloxicam x 5 días, colotrin ha cat. EOG s/p. Ausc y palpación abdominal s/p. Revisación de boca: se evidencia ausencia de canino sup der (no sabe en q condiciones lo perdió), no se llega a visualizar si hay raíz xq no hay orificio, la encía cubrió el defecto. \nMe comenta q no sube a la mesada y calcula mucho para saltar, manifiesta dolor a la palpación presión de columna torácica y toracolumbar. \N \N 2144 4184 \N 91 1848 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1279 2025-07-26 00:54:55.431448+00 2025-07-26 00:54:55.431458+00 f t Vacunación anual. S/r Ninguno EOG s/p. Lo quiere castrar, se va a poner en contacto con la plataforma para la derivación a cx. \N \N 2144 1967 \N 91 1849 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1280 2025-07-26 01:53:10.85278+00 2025-07-26 01:53:10.852792+00 f t Edema de córnea por causas variables a investigar: trauma autoinflingido/uveítis/ úlcera superficial/triquiasis/distriquiasis/ cicatrizal No hacer manejo hasta ver al oftalmo. De poner colirio que sea SIN esteroides hasta tanto no verificar ausencia de úlcera con test de fluoresceina. Colirio de clNa 5% podría ayudar a reducir el edema pero no reemplaza la consulta presencial, Yaque tapara un signo de algo de base. Se indica interconsulta con oftalmología. Teleconsulta. Nota que tiene azulado los ojos (izq más que el derecho). En su vet lo derivan a oftalmo. Envía fotos, aparenta ser edema de córnea, hay abundante epifora que relata es habitual en él. Fue operado de entropion de chico. Actualmente se refriega con miembros anteriores diariamente. Refiere no tener blefaroespasmo. Se explica que el edema corneal es un signo, hay que ahondar en el examen físico para encontrar la causade base \N \N 5227 4292 \N 79 1877 {"studies": [], "medications": [], "specialities": ["77"]} +1281 2025-07-26 17:54:07.578222+00 2025-07-26 17:54:07.578232+00 f t S/p Permitir acceso diario a bolso o caja transportadora. Uso de feromonas en caso de rechazo por parte de la paciente. Vacunación anual Control general y vacunación anual.\nSe mudaron hace poco. Ahora no tiene acceso al exterior, anteriormente si lo hacia y pudo haber estado en contacto con otros gatos.\nBuen estado gral. Eog s/p. Se palpa cicatriz de castración. \N \N 5177 4260 \N 99 1870 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1282 2025-07-26 19:49:47.322432+00 2025-07-26 19:49:47.322444+00 f t . Vacunación y desparasitacion . Teleconsulta sobre nutrición y control veterinario. \N \N 4774 3954 \N 92 1829 {"studies": [], "medications": [], "specialities": []} +1283 2025-07-26 19:55:12.875095+00 2025-07-26 19:55:12.877698+00 f t . Alimento bajas calorías . EOG normal. Hoy triple felina+ VAR \N \N 5254 4321 \N 92 1885 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +1284 2025-07-26 19:55:12.990254+00 2025-07-26 19:55:12.990287+00 f t . Alimento bajas calorías . EOG normal. Hoy triple felina+ VAR \N \N 5254 4321 \N 92 1885 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +1285 2025-07-26 20:01:15.927932+00 2025-07-26 20:01:15.92794+00 f t Asma felina Vacunación anual y desparasitación. Disminuir alérgenos domésticos. Fluticasona inhalado. Una dosis diaria con aerocamara. Control en 30 días. EOG normal. Sibilancias intermitentes. Ronquidos frecuentes \N \N 5239 4305 \N 92 1879 {"studies": [], "medications": [], "specialities": []} +1286 2025-07-26 20:14:27.302069+00 2025-07-26 20:14:27.302077+00 f t Paciente oncológico. Eutanasia Cerenia + recovery Sensorio deprimido. Paciente oncológico terminal Deshidratación. Vómitos \N \N 5281 4344 \N 92 1888 {"studies": [], "medications": [], "specialities": []} +1287 2025-07-27 00:13:22.53838+00 2025-07-27 00:13:22.538392+00 f t otitis bilateral . insuficiencia renal? realizo orden para perfil general completo con orina + upc + ecografia abdominal realizo limpieza otica profunda bilateral obteniendo secrecion sanguinopurulenta e indico comenzar tto con otovier nf 2 gotas en cada oido cada 12 hs por 8 dias felino macho comun europeo castrado 11 años 5 kg aprox\nconsulta por rascado de orejas . evolucion 1 mes.\npolidipsia poliuria\ncome royal canin 7 años \ndesparasitaciones internas vencidas \nrevision clinica\naus cardiopulmonar s/p\nnormotermico normohidratado\npelo hirsuto\npalpacion abdominal . organomegalia en region epigastrio? distension abdominal postpandrial? no manifiesta dolor a la palpacion.\npresenta otitis bilateral. \N \N 167 176 \N 88 1883 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "907", "next_application_months": 0}, {"id_medicina": "704", "next_application_months": 0}], "specialities": ["41", "76"]} +1304 2025-07-29 00:40:43.252301+00 2025-07-29 00:40:43.252309+00 f t Indigestión Se recomienda ofrecer pequeñas cantidades de comida varias veces al día y asegurar una buena hidratación.\nAlimentos recomendados:\nProteínas: Pollo o pescado blanco cocido sin piel ni espinas.\nCarbohidratos: Arroz blanco cocido.\nHidratación:\nEs crucial mantener al gato hidratado, ofreciéndole agua fresca.\nCantidad y frecuencia:\nOfrecer comidas pequeñas y frecuentes para facilitar la digestión. Dieta astringente: debe ser suave y fácil de digerir, como pollo o pescado blanco cocido sin sal, junto con carbohidratos de bajo índice glucémico como arroz blanco. EOG: deshidratación leve. Resto normal. Antecedentes de vómitos. \N \N 5389 4417 \N 92 1900 {"studies": [], "medications": [], "specialities": []} +1288 2025-07-27 00:19:36.075001+00 2025-07-27 00:19:36.075013+00 f t gastritis . aplico medicacion antes mencionada e indico ayuno total por 4 hs y luego iniciar tolerancia a liquidos y si no presenta vomitos, comenzar con dieta ( pechuga de pollo con zanahoria)\nindico ranitidina via oral ( 1/2 comprimido cada 12 hs por 7 dias) bulldog frances macho entero 5 años 11kg\nconsulta a domicilio por vomitos alimenticios, evolucion 24 hs .\nvacunas al dia \nrevision clinica\naus s/P\npalpacion abdominal, dolor en epigastrio, asas intestinales levemente inflamadas .\nnormotermico 38.1\nnormohidratado\nel tutor me comenta que ayer le administro via oral 1 comprimido de totalfull lc como antiparasitario interno en una unica dosis. no come nada que no sea su balanceado ( old prince) \N \N 5170 4255 \N 88 1868 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "1043", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "704", "next_application_months": 0}], "specialities": []} +1289 2025-07-27 00:22:49.0281+00 2025-07-27 00:22:49.028112+00 f t . . . canino macho mestizo 6 años \nacudo a domicilio para extraccion de sangre para perfil general completo + aoc + upc \N \N 5021 4145 \N 88 1854 {"studies": [], "medications": [], "specialities": []} +1290 2025-07-27 00:36:58.971624+00 2025-07-27 00:36:58.971634+00 f t alteraciones osteoarticulares evaluar realizar eutanasia dada las condiciones en las cuales vive la perra, y la imposibilidad de tratarla por el tutor aplico medicacion antes mencionada e indico que le administre la pregabalina junto con la comida. canino hembra mestiza entera 12 años 26 kg\nacudo a domicilio por eutanasia. En el domicilio hablo con el tutor ( un señor muy mayor ) el cual me comenta que la perra perdio la vision hace unos dias . la llevaron al veterinario, y le indicaron meloxivet pregabalina artrin . el tutor no puede administrarle la medicacion via oral porque se le dificulta por las limitaciones que presenta él con su edad.\nrevision clinica\nnormotermica normohidratada\naus torax apagado, no se ausculta soplo\nmarcado dolor en epigastrio y raquis en general.\ncome y toma agua normalmente \N \N 5157 4250 \N 88 1865 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}], "specialities": []} +1291 2025-07-27 00:52:27.423993+00 2025-07-27 00:52:27.424006+00 f t secuelas por sindrome vestibular, y deterioro del organismo esperable para la edad de la paciente . sugiero que hablen con la familia y evaluen como quieren continuar hablo con la tutora y el nieto y explico que se podrian realizar complementarios para determinar estado general del medio interno ( sangre ecografia abdominal ecocardiografia) como asi tambien , dada la edad de la paciente y el entorno en el cual se encuentra, tomar la decision de eutanasiarla canino hembra mestizo castrada 16 años 15 kg aprox\nacudo a domicilio para revision general y evaluar posible eutanasia \nla paciente vive con una tutora mayor.\nrevision clinica \naus soplo 6/6 holosistolico en hemitorax izquierdo y derecho \nnormotermica\ndeshidratacion 8%\npalpacion abdominal: se palpa en epigastrio organomegalia/masa de considerable tamaño en dicha region. dolor a la palpacion \ndolor en columna toracolumbar.\ndisminucion de la vision y audicion \npolidipsia poliuria\nno controla esfinteres.\ndificultad para levantarse, pero camina normalmente ( acorde a la edad) \N \N 4163 3470 \N 88 1695 {"studies": [], "medications": [], "specialities": []} +1292 2025-07-27 15:25:41.461822+00 2025-07-27 15:25:41.461835+00 f t Gastroenteritis AOC rel cortisol/creat. Actualizar vacunas. Giacoccide c 12 hs.10 dias. Dieta antidiarreica Estuvo con vómitos hasta ayer. Diarrea con sangre. Hidratación normal. Sensorio alerta. Antecedentes de poliuria/polidipsia. \N \N 5292 4350 \N 92 1893 {"studies": [], "medications": [], "specialities": []} +1293 2025-07-28 01:24:07.209082+00 2025-07-28 01:24:07.20909+00 f t FLUTD - - Telemedicina de control. \N \N 1555 1510 \N 89 1276 {"studies": [], "medications": [], "specialities": []} +1294 2025-07-28 01:25:05.312123+00 2025-07-28 01:25:05.312134+00 f t FLUTD Se recomienda administrar alimento urinary care de NUTRIQUE, por 1-2 meses, luego continuar la alimentación con Nutrique (no Mon Ami) - Telemedicina de control \N \N 1555 1510 \N 89 1307 {"studies": [], "medications": [], "specialities": []} +1295 2025-07-28 01:25:40.4562+00 2025-07-28 01:25:40.456211+00 f t Linfoma - Aplicación de medicamentos recetados por su vet de cabecera Aplicación de medicamentos recetados por su vet de cabecera \N \N 160 169 \N 89 1046 {"studies": [], "medications": [], "specialities": []} +1296 2025-07-28 01:27:40.184841+00 2025-07-28 01:27:40.184849+00 f t Vacunación Vacunación antirrábica en 21-30d. - EOG SP \N \N 812 923 \N 89 1629 {"studies": [], "medications": [{"id_medicina": "1170", "next_application_months": 12}], "specialities": []} +1297 2025-07-28 01:29:56.274413+00 2025-07-28 01:29:56.274447+00 f t Traumatismo. Se recomienda vacunación séxtuple. (Solamente cuenta con vacuna antirrábica) - Primera consulta. "Mecha" fue recientemente adoptada y la tutora deseaba conocer los cuidados necesarios para un felino.\nEOG S/P\nEOP: Dolor leve a la palpación toracolumbar.\nLa tutora refiere que escuchó a "Mecha" caer por las escaleras. No presenta claudicación de ningún grado. \N \N 4202 3506 \N 89 1704 {"studies": [], "medications": [], "specialities": []} +1298 2025-07-28 01:33:16.40115+00 2025-07-28 01:33:16.401163+00 f t Neoformación Se recomienda siempre la colocación de bozal previo a la consulta veterinaria. "Coco" es de buen carácter pero es muy asustadizo y muerde. Se intentó realizar una PAF de la neoformación pero "Coco" se puso muy nervioso y no pudo realizarse la técnica. EOG SP\nEOP: Pequeña deformación en más en pabellón auricular derecho. \N \N 4324 3602 \N 89 1724 {"studies": [], "medications": [{"id_medicina": "1148", "next_application_months": 12}, {"id_medicina": "1165", "next_application_months": 12}], "specialities": []} +1299 2025-07-28 01:37:58.242361+00 2025-07-28 01:37:58.24237+00 f t Celo - Ansiedad/Estrés. Se recomienda brindarle más atención a "Chardonay", jugar con él 1 o 2 veces al día. Permitirle entrar a algún lugar sectorizado de la casa en las noches de mucho frío. Se sugiere alimentarlo con comida que le guste (no balanceado) luego del juego y la aplicación de feromonas dentro y fuera de la casa.\nA su vez se recomienda castrarlo. - La tutora refiere que "Chardonay" maúlla durante toda la noche.\nEs un macho entero que se encuentra en el patio y no se le permite ingresar al interior de la casa porque rompe cosas y ataca a los otros gatos.\nEOG S/P.\n"Chardonay" es revisado en su totalidad sin encontrar dolencias ni molestias de ningún tipo. \N \N 4618 3838 \N 89 1777 {"studies": ["12", "9"], "medications": [], "specialities": ["8", "79", "74", "76"]} +1300 2025-07-28 14:23:24.378297+00 2025-07-28 14:23:24.378307+00 f t - - - - \N \N 5196 4270 \N 100 1874 {"studies": [], "medications": [], "specialities": []} +1301 2025-07-28 22:09:32.639502+00 2025-07-28 22:09:32.639511+00 f t Analisis de laboratorio Resolucion Analisis de laboratorio Analisis de laboratorio \N \N 5021 4145 \N 80 1889 {"studies": [], "medications": [], "specialities": []} +1305 2025-07-29 01:05:42.367623+00 2025-07-29 01:05:42.367632+00 f t Cistitis idiopatica Aumentar consumo de agua. Flores de Bach para manejo del estrés para evitar recidivas Se sugiere nuevamente cisticalm 1capsula diaria. Gabapentina (gabalbech) 0.5ml cada 12hs por diez días. Meloxicam 0.1mg/Kg por 4 días. En el control con nefrouro descartaron el lito (disuelto/expulsado) pero tiene por días desde el jueves momentos de disuria/poliaquiuria. Hoy está bien. \N \N 3848 3249 \N 79 1905 {"studies": [], "medications": [{"id_medicina": "872", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "725", "next_application_months": 0}], "specialities": []} +1306 2025-07-29 02:10:49.113809+00 2025-07-29 02:10:49.11382+00 f t Extracción de sangre Extracción de sangre Extracción de sangre Extracción de sangre \N \N 3820 3232 \N 91 1810 {"studies": [], "medications": [], "specialities": []} +1307 2025-07-29 02:15:54.063265+00 2025-07-29 02:15:54.063274+00 f t Mycoplasma? Si no puede hacer vif vilef x pcr ahora x cuestiones económicas, lo dejamos para segunda instancia. Damos prioridad a hemograma, bioquímica y pcr mycoplasma. Desparasitación Devolución de estudios. Ayer terminó el metronidazol, hace 2 días q no ve sangre en MF, recuperó apetito pero no lo ve al 100%. Copro negativo, en eco lo relevante: esplenitis infecciosa? Hígado vacuolar, grasa en abdomen. Hablamos de la alimentación, se indica desparasitar a ambos (si bien dio negativo el copro, desde q introdujo la cachorra ninguno de los dos fue desparasitado) y se indica análisis de sangre. \N \N 4485 3735 \N 91 1911 {"studies": [], "medications": [], "specialities": []} +1308 2025-07-29 12:12:53.819197+00 2025-07-29 12:12:53.819208+00 f t Parasitosis, odontolitiasis, estado general regular por calle. Castracion y exodoncia Baños de amitraz, antibiótico vía oral, Nexgard spectra mensual. Rescatado, dermatitis con queratitis y prurito intenso. Dos lesiones nodulares en piel (falange MPD) y su mandíbular.\nFístula por muela carnicera en bajo lagrimal. Enfermedad periodontal. \N \N 5078 4191 \N 68 1852 {"studies": [], "medications": [{"id_medicina": "439", "next_application_months": 1}, {"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1309 2025-07-29 13:56:51.675994+00 2025-07-29 13:56:51.676003+00 f t - . Se indica hacer un control de sangre en 30 días terminado el tratamiento antibiótico. Se realiza una devolución de los resultados de sangre a la propietaria, y se comenta que está un poco alto el colesterol y un poco alto el hematocrito. De todos modos se indica correlacionarlo con un nuevo examen de sangre de control en un mes. Después no se evidencian otras particularidades en la sangre. \N \N 5071 4220 \N 1 1912 {"studies": [], "medications": [], "specialities": []} +1310 2025-07-29 14:07:47.418922+00 2025-07-29 14:07:47.418934+00 f t Sobrecarga gastrica? Evitar grandes volúmenes de comida. Y comenzar a dar de a poco comida. Se aplica ondansetron y ranitidina. Comenta la propietaria que le dieron de comer mucho, desde balanceado hasta carne, comenzó a vomitar y no paraba. Al momento de la visita se lo nota con leve molestia abdominal, normotermico, normohidratado. De buen animo. \N \N 5348 4391 \N 1 1898 {"studies": [], "medications": [], "specialities": []} +1311 2025-07-29 14:09:58.967779+00 2025-07-29 14:09:58.967788+00 f t - - Se realiza aplicación de triple felina y antirabica. Eog: s/p \N \N 5176 4259 \N 1 1869 {"studies": [], "medications": [], "specialities": []} +1312 2025-07-29 14:11:03.381894+00 2025-07-29 14:11:03.381907+00 f t - - Se aplica vacuna de Vilef. Eog: s/p \N \N 1555 1510 \N 1 1823 {"studies": [], "medications": [], "specialities": []} +1313 2025-07-29 14:12:58.600782+00 2025-07-29 14:12:58.600791+00 f t - - - Se toma muestra de sangre para un PGC \N \N 5071 4186 \N 1 1850 {"studies": [], "medications": [], "specialities": []} +1314 2025-07-29 14:14:27.33197+00 2025-07-29 14:14:27.331979+00 f t - - - Eog: S/p\nSe vacían los sacos anales y se evacua bastante volumen de los mismos. \N \N 123 128 \N 1 1834 {"studies": [], "medications": [], "specialities": []} +1315 2025-07-29 14:19:36.92133+00 2025-07-29 14:19:36.921339+00 f t Hongos? Granuloma eosinofilico? - Indicó controlar, si aparece nuevamente la lesion controlar con crema cicatrizante. Eog: s/p\nPresenta un área circular en el dorso de la cabeza que al parecer pasó por una lesión pero resolvió en forma espontánea, está sin eritema y está creciendo el pelo. No presenta ninguna lesión más. \N \N 4989 4124 \N 1 1835 {"studies": [], "medications": [], "specialities": []} +1316 2025-07-29 14:26:38.611662+00 2025-07-29 14:26:38.611674+00 f t DAPP? Micosis? - Se realiza aplicación de Atb, con dexametasona a dosis bajas, se indica continuar con tratamiento vía oral de Atb, antimicotixos, antiinflamatorios y baños con shampu medicados. Presenta zonas de alopecia y manto con poco pelo en la zona caudal, aparte mucho olor a rancio en el manto con mucha presencia de caspa.Prurito muy marcado. Y pequeñas escoriaciones en la zona caudal del cuerpo. No se ven pulgas pero es un dermograma indicativo de DAPP. \N \N 4920 4072 \N 1 1832 {"studies": [], "medications": [], "specialities": []} +1317 2025-07-29 14:27:29.557697+00 2025-07-29 14:27:29.557708+00 f t - - - Se toma muestra de sangre. \N \N 5058 4178 \N 1 1846 {"studies": [], "medications": [], "specialities": []} +1318 2025-07-29 14:30:34.061748+00 2025-07-29 14:30:34.06176+00 f t - - - Se realiza eutanasia. \N \N 5087 4197 \N 1 1856 {"studies": [], "medications": [], "specialities": []} +1319 2025-07-29 14:50:48.676709+00 2025-07-29 14:50:48.67672+00 f t Otitis crónica. Evaluar interconsulta con un adiestrador. Se aplica antiinflamatorio y se indica cómo hacer las limpiezas y tratamiento. Paciente muy insistió los pripietaruos no lo pueden sostener, se ve desde lejos que tiene una otitis crónica en forma bilateral. \N \N 5024 4146 \N 1 1844 {"studies": [], "medications": [], "specialities": []} +1320 2025-07-29 14:53:35.045778+00 2025-07-29 14:53:35.045787+00 f t DAPP Hacer tratamiento ambiental. Se realiza tricotomía y limpieza de las lesiones. Se aplica antibióticos y antiinflamatorios. Se indica continuar con vía oral y desparasitacion externa. Presenta varios parches calientes en la zona de la grupa. Presencia de pulgas por todo el manto. \N \N 4754 3936 \N 1 1805 {"studies": [], "medications": [], "specialities": []} +1321 2025-07-29 17:30:54.65816+00 2025-07-29 17:30:54.658173+00 f t Sindrome de cushing Se da tambien la opcion de realizar una resonancia magnetica de cabeza. Se da orden para medir lipidograma y hnas tiroideas.\nEn dos meses debe volver a consulta con un cortisol/creatinina en orina, y un lipdidograma completo, para evaluar como continuar tratamiento. Se da como primer sugerencia el tratamiento con trilostano, dado que la paciente tiene todos los signos de la enfermedad y un cortisol/creatinina positivo.\nPor cuestiones economicas se indica comenzar con ketoconazol a 2 mg/kg por dia, dosis creciente en las primeras dos semanas. Consulta endocrinologica\npaciente derivado por sospecha de sindrome de cushing. Polidipsia/poliuria marcada \N \N 4987 4122 \N 98 1833 {"studies": [], "medications": [], "specialities": []} +1547 2025-08-26 16:10:38.686735+00 2025-08-26 16:10:38.686748+00 f t . . . . \N \N 6789 5548 \N 100 2172 \N +1322 2025-07-29 20:19:05.718576+00 2025-07-29 20:19:05.718585+00 f t Chequeo clínico anual Seguir con alimento húmedo. Aumentar la ingesta de agua. A la espera de resultados de sangre. Dejo orden para ecografía en caso de ser necesario (sugerida por edad) . Y orden para gabapentina para futuras maniobras. Mc chequeo general. Ecografía hace un año con signos de colestasis. Vómitos esporadicos. Creat 1.8. actualmente come alimento balanceado sólido y húmedo y pollito.\nEog sensorio alerta Score 2.5/5. Condición muscular 2/4. Mm rosadas lfn s/p auscultación s/p. \nEop: leve sarro en muelas carniceras. Canino sup izq fracturado con signos de resorción osea. Resto sp abdomen blando sin dolor manifiesto. Se extrae sangre de MPD para perfil general. \N \N 3849 3250 \N 79 1654 {"studies": [], "medications": [], "specialities": []} +1323 2025-07-29 23:47:11.543471+00 2025-07-29 23:47:11.543479+00 f t Hernia de disco Bajar de peso, proplan bajas calorías es una opción, al sentirse mejor volver a su actividad física habitual sin ejercicios de impacto. Realizar fisioterapia. Rp/\nPrednisolona 10mg\n3/4 de comprimido cada 24hs x 4 días\n1/2 comprimido cada 24hs por tres días \n1/2 comprimido cada 48hs 2 tomas\n1/4 comprimido cada 48hs 2 tomas más.\nPregaliv 20mg\n1/2 a 1 comprimido cada 12hs (según efecto, se aclara que cada individuo responde diferente y puede tener efectos sedativos) si la seda mucho puede ser solo a la noche.\nFisioterapia/rehabilitación. Teleconsulta. Paciente con claudicación de MaD intermitente de 3 semanas de evolución, RX: estrechamientos C3-c4, c4-c5 y c5-c6. Mineralización discal c2-c3 y c7-t1 con imágenes sugerentes de protrusión discal. Tratamiento recibido: previcox 57mg 1/2 comprimido por día por 4 días. No vio notoria mejoría. Come proplan adult, tiene sobrepeso, ahora bajo la actividad física por la patología. Hace dos días que no recibe previcox. La ve mejor pero no al 100%. Se explica que es una patología ya instaurada, que lo indicacio es tratamiento conservador (fisioterapia) para manejar dolor desde agentes físicos menos invasivos , y sortear las crisis con antiinflamatorio. Se comenta que puede realizar consulta con traumatólogo para que evalúe si es de resolución quirúrgica eventualmente. \N \N 5488 4496 \N 79 1919 {"studies": [], "medications": [{"id_medicina": "988", "next_application_months": 0}], "specialities": ["78"]} +1324 2025-07-30 00:53:48.621702+00 2025-07-30 00:53:48.62171+00 f t Conjuntivitis de ojo izquierdo y cicatriz en lateral izquierdo del abdomen a nivel muscular no en piel Evitar que se escape Gotas oculares antibacteriano con esteroides El lugar donde parece que fue mordido es una herida cicatrizada presenta el hackear de inflamado por otra aparente pelea \N \N 3757 3188 \N 74 1632 {"studies": [], "medications": [], "specialities": []} +1325 2025-07-30 00:58:06.830863+00 2025-07-30 00:58:06.830873+00 f t La herida está en buen estado solamente se dedica Que no se toque la herida cuidando la conducta del animal Amoxicilina oral por 8 días Luego te fue castrada y necesitaba antibiótico debido a esa castración \N \N 3344 2870 \N 74 1558 {"studies": [], "medications": [{"id_medicina": "705", "next_application_months": 0}], "specialities": []} +1326 2025-07-30 01:03:59.242518+00 2025-07-30 01:03:59.242531+00 f t Cuidados post quirúrgicos Cuidar que no salte arriba de cosas dado que tiene una herida quirúrgica Seguir con antibiótico Ya te fue castrada se le aplica antibiótico y sigue vía oral \N \N 3697 3140 \N 74 1619 {"studies": [], "medications": [], "specialities": []} +1327 2025-07-30 01:43:53.88334+00 2025-07-30 01:43:53.88335+00 f t Osteoartritis? Osteoartrosis? Control en 6 semanas. Artrin 1/4 comp x día x ,6 semanas. Consulta x dolor de "huesos". EOG normal. Apetito sed, micción y defecación normales. Palpación abdominal sin particularidades. Palpación de miembros traseros y vocales S/P. \N \N 5446 4468 \N 70 1916 {"studies": [], "medications": [{"id_medicina": "559", "next_application_months": 0}], "specialities": []} +1328 2025-07-30 02:00:21.889323+00 2025-07-30 02:00:21.889332+00 f t Rinitis? Dar la medicación con comida. Se aplica dexametasona 0,5 mg/ kg y amoxicilia. Se indica continuar tratamirnto vía oral por 7 días Presenta secreción serosa/ mucosa que ya hoy comenzó a ser blanquecina/ verdosa por ambas fosas nasales, no se auscula particularidades a nivel toraxico. \N \N 3360 2881 \N 1 1767 {"studies": [], "medications": [], "specialities": []} +1329 2025-07-30 02:02:07.585336+00 2025-07-30 02:02:07.585348+00 f t - - Se comenta cómo serían los cuidados pre y posparto de la perrita. Y señales de alerta. Doy órdenes de ecografía y placas. Perra rescatada de preñez avanzada. Al Eog: s/p \N \N 4549 3787 \N 1 1761 {"studies": [], "medications": [], "specialities": []} +1330 2025-07-30 02:03:46.1618+00 2025-07-30 02:03:46.161812+00 f t - - - Se toma la muestra de sangre. Se adjunta pedido al protocolo. \N \N 2894 2549 \N 1 1732 {"studies": [], "medications": [], "specialities": []} +1331 2025-07-30 02:06:10.797404+00 2025-07-30 02:06:10.797416+00 f t Neo en abdomen. - - Paciente felino, con un tumor en abdomen del tamaño de una naranja/ limón. Se comentan las posibles complicaciones y que el pronóstico es muy malo. Realizar cuidados paliativos y evaluar calidad de vida. \N \N 3729 3161 \N 1 1625 {"studies": [], "medications": [], "specialities": []} +1332 2025-07-30 14:02:03.866263+00 2025-07-30 14:02:03.866275+00 f t - - - - \N \N 1798 1710 \N 100 1903 {"studies": [], "medications": [], "specialities": []} +1333 2025-07-30 15:36:20.356445+00 2025-07-30 15:36:20.356458+00 f t Lipoma abdominal Observar evolución y de ser necesario realizar citologia Ninguno Alerta durante la consulta. Auscultación pulmonar sin particularidades y auscultación cardíaca sin particularidades. Se realiza consulta por un bulto qué encontró el tutor, se realiza palpación. A nivel de abdomen y se palpa pequeño bulto de aspecto lipídico con desplazamiento. \N \N 416 2200 \N 97 1910 {"studies": [], "medications": [], "specialities": []} +1334 2025-07-30 15:47:21.77915+00 2025-07-30 15:47:21.779159+00 f t Hepatitis aguda? Pancreatitis? IRC? Indicó dieta natural \nReanudar plan santario Tto: ranitidina ac tioctico tramadol\nRp/ trihepat Pacientes Sin plan sanitario vigente, Le dan alimento ultra procesado de diferentes marcas y comida casera o los restos de la mesa. Presenta buen estado general con leve sobrepeso, Mucosas rosadas tiempos del llenado capilar normal y brillantes. Cardio ok pulmones ok, Abdomen intenso y algo pastoso la palpación. Presenta poco sarro Dental. \nTuvimos vómitos amarillos y verdoso según relata la tutora. Sin hipertermia. \N \N 5278 4341 \N 21 1887 {"studies": ["1", "7"], "medications": [], "specialities": []} +1335 2025-07-30 18:38:31.943023+00 2025-07-30 18:38:31.943033+00 f t Alopecia micotica Evitar el lamido Griseolfulvina en crema Alopecia en frente y MAD. Deshidratación leve. Apetito normal. Orina y defeca normal. \N \N 1734 1651 \N 92 1921 {"studies": [], "medications": [], "specialities": []} +1336 2025-07-30 18:46:15.420618+00 2025-07-30 18:46:15.42063+00 f t - - - - \N \N 4848 4007 \N 90 1820 {"studies": [], "medications": [], "specialities": []} +1337 2025-07-30 18:47:12.033244+00 2025-07-30 18:47:12.033252+00 f t - - - - \N \N 5444 4467 \N 90 1915 {"studies": [], "medications": [], "specialities": []} +1548 2025-08-26 16:47:57.888537+00 2025-08-26 16:47:57.888547+00 f t . . . . \N \N 6869 5610 \N 100 2186 \N +1349 2025-07-31 19:58:47.835046+00 2025-07-31 19:58:47.835056+00 f t - - - - \N \N 4856 4011 \N 90 1830 {"studies": [], "medications": [], "specialities": []} +1350 2025-07-31 20:00:19.14658+00 2025-07-31 20:00:19.146596+00 f t - - - - \N \N 4802 3970 \N 90 1818 {"studies": [], "medications": [], "specialities": []} +1351 2025-07-31 20:01:10.860676+00 2025-07-31 20:01:10.860689+00 f t - - - - \N \N 4755 3937 \N 90 1806 {"studies": [], "medications": [], "specialities": []} +1352 2025-07-31 20:18:33.508396+00 2025-07-31 20:18:33.508409+00 f t - - - - \N \N 4645 3859 \N 90 1785 {"studies": [], "medications": [], "specialities": []} +1353 2025-07-31 20:19:42.186679+00 2025-07-31 20:19:42.186688+00 f t - - - - \N \N 4746 3932 \N 90 1802 {"studies": [], "medications": [], "specialities": []} +1354 2025-08-01 03:36:47.298869+00 2025-08-01 03:36:47.298878+00 f t Absceso del alveolo dentario? Se indica continuar el tratamiento antibiótico y avisar evolución. Aplico dexametasona 0,2 mg/kg, dipirona 12mg/kg. Amoxicilina LA. Paciente normotermico, normohidratado. Presenta inflamación por debajo del párpado izquierdo. Fluoresceina (-) en ambos ojos. No se puede examinar bien la boca para evaluar si es por la infección de una raíz dentaria. \N \N 5662 4635 \N 1 1959 {"studies": [], "medications": [], "specialities": []} +1355 2025-08-01 03:43:35.186273+00 2025-08-01 03:43:35.186285+00 f t Gastritis? - Aplico maropitant y ranitidina. Indico controlar. Si no evoluciona de forma favorable realizar sangre y ecografía abdominal. EOG:S/P\nNormotermico, normohidratado. No presenta dolor a la palpación abdominal. La propietaria comenta que le dan hígado todos los días. \N \N 5625 4605 \N 1 1951 {"studies": [], "medications": [], "specialities": []} +1356 2025-08-01 03:44:24.808169+00 2025-08-01 03:44:24.808181+00 f t - - - Se toma muestra de sangre. \N \N 5560 4556 \N 1 1934 {"studies": [], "medications": [], "specialities": []} +1357 2025-08-01 04:04:14.59078+00 2025-08-01 04:04:14.59079+00 f t Compresión medular? - Se aplica dexametasona 0,5 mg/ kg, tramadol 3 mg/kg, dipirona. Continuar vía oral. Presenta dolor marcado en columna torácica lumbar y lumbo sacra, el propietario tiene placas que demuestran lesión en la columna pero son de hace varios años ya, se indica repetir los estudios para evaluar evolución. Se encuentra normotermico, normohidratado, camina con dificultad. \N \N 5453 4471 \N 1 1914 {"studies": [], "medications": [], "specialities": []} +1358 2025-08-01 04:06:21.75017+00 2025-08-01 04:06:21.750179+00 f t Irc - La propietaria quiere que le muestre como pasarle suero subcuraneo Se la ve en un estado bastante deteriorado. Se le comenta la propietaria que posiblemte teng una enfermedad renal irreversible. \N \N 3861 3258 \N 1 1655 {"studies": [], "medications": [], "specialities": []} +1359 2025-08-01 04:09:47.59548+00 2025-08-01 04:09:47.595489+00 f t - - - Se realiza eutanasia por el mal estado en el que esra \N \N 4665 3873 \N 1 1784 {"studies": [], "medications": [], "specialities": []} +1360 2025-08-01 04:11:25.670627+00 2025-08-01 04:11:25.670639+00 f t - - Se aplica rabia y sextuple Eog: s/p \N \N 4418 3677 \N 1 1747 {"studies": [], "medications": [], "specialities": []} +1361 2025-08-01 04:13:16.619762+00 2025-08-01 04:13:16.61977+00 f t Otitis crónica - Se realiza limpieza y se indica como continuar con las mismas y la aplicación del quimioterapico. Presenta una otitis crónica bilateral. La piel está muy apergaminada y prensenra secreción. \N \N 4418 3678 \N 1 1748 {"studies": [], "medications": [], "specialities": []} +1362 2025-08-01 04:15:27.945516+00 2025-08-01 04:15:27.945526+00 f t Se aplica la medicación indicada en la receta. - Dexametasona, dipirona, tramadol. Presenta mucho dolor en la columna toracolumbar y lumbosacra. \N \N 4322 3601 \N 1 1723 {"studies": [], "medications": [], "specialities": []} +1363 2025-08-01 04:16:08.813969+00 2025-08-01 04:16:08.81398+00 f t - - - Se realiza eutanasia \N \N 3724 3157 \N 1 1624 {"studies": [], "medications": [], "specialities": []} +1364 2025-08-01 04:22:42.031626+00 2025-08-01 04:22:42.03164+00 f t - - - Eog: S/P\nPresenta lunares en algunas partes del cuerpo, indicó controlar que no se lastime, ni que se hagan más grandes.\nTomó muestra de sangre. \N \N 449 532 \N 1 1630 {"studies": [], "medications": [], "specialities": []} +1365 2025-08-01 04:23:36.066052+00 2025-08-01 04:23:36.066067+00 f t - - - Se aplica vacuna antirabica y se emite el certificado de salud. \N \N 1941 1816 \N 1 1653 {"studies": [], "medications": [], "specialities": []} +1366 2025-08-01 04:26:20.779658+00 2025-08-01 04:26:20.779667+00 f t - - Se aplica antirabica y triple felina Eog: s/p \N \N 3789 3214 \N 1 1642 {"studies": [], "medications": [], "specialities": []} +1367 2025-08-01 04:28:16.822892+00 2025-08-01 04:28:16.822904+00 f t Conjuntivitis? - Se indica hacer un tratamiento con colirio con esteroides \n. Se evidencia leve epiforoeande uno de los ojos, fluoresceina (-) en ambos ojos. \N \N 3789 3213 \N 1 1640 {"studies": [], "medications": [], "specialities": []} +1368 2025-08-01 04:29:21.397838+00 2025-08-01 04:29:21.399155+00 f t - - Se vacuna con rabia y sextuple Eog: s/p \N \N 3789 3212 \N 1 1641 {"studies": [], "medications": [], "specialities": []} +1369 2025-08-01 04:32:15.925491+00 2025-08-01 04:32:15.926949+00 f t - Indicó hacer placas de columna e indicó hacer tramramiento antibioticos y antiinflamatorios Se aplica dexametasona, dipirona y tramadol. Paciente consciente pero con falta de coordinación de los miembros posteriores para estar de pie o caminar. Presenta mucho dolor en la columna. \N \N 4624 3841 \N 1 1779 {"studies": [], "medications": [], "specialities": []} +1370 2025-08-01 04:39:09.964562+00 2025-08-01 04:39:09.964575+00 f t Artrosis? Se indican antiinflamatorios/analgesicos Se comenta a los propietarios que posible re el tratamiento se en forma paleativa. Presenta dolor en todo el tren posterior. Normotermico normohidratado. \N \N 4710 3906 \N 1 1808 {"studies": [], "medications": [], "specialities": []} +1371 2025-08-01 04:42:38.922625+00 2025-08-01 04:42:38.922635+00 f t - Indicó controlar. Se aplica un antiinflamatorio. Normotermico, normohidratado, presenta dolor en la zona de uno de los flancos casi en la columna. Puede ser que sea donde se golpeo \N \N 4634 3849 \N 1 1780 {"studies": [], "medications": [], "specialities": []} +1372 2025-08-01 04:44:05.977221+00 2025-08-01 04:44:05.977231+00 f t - - - Se realiza la euranasia \N \N 4254 3549 \N 1 1706 {"studies": [], "medications": [], "specialities": []} +1373 2025-08-01 04:52:40.309593+00 2025-08-01 04:52:40.309601+00 f t Gastritis? Controlar y evaluar evolución, si no quiere comer, realizar eco y sangre Se aplica ranitidina, maropitant Se presenta normohidratada, normotermca, sin dolor a la palpación abdominal. \N \N 5218 4285 \N 1 1876 {"studies": [], "medications": [], "specialities": []} +1374 2025-08-01 04:55:43.649601+00 2025-08-01 04:55:43.649609+00 f t Artrosis? Doy órdenes para hacer placas. Se aplica meloxocam, tramado y dipirona. Indicó continuar con previcox vía oral. Presenta molestia en columna lumbo sacra más que nada. Normotermico normohidratado. \N \N 4146 3455 \N 1 1689 {"studies": [], "medications": [], "specialities": []} +1375 2025-08-01 04:58:38.881359+00 2025-08-01 04:58:38.881367+00 f t DAPP Realizar una desparasitacion externa y ambiental. Aplico dexametasona y tribiotic. Indicó continuar con antiinflamatorios y crema cicatrizante para el lugar de las lesiones. Presenta pulicosis y como es alérgica se le hicieron parches calientes. \N \N 4139 3448 \N 1 1686 {"studies": [], "medications": [], "specialities": []} +1376 2025-08-01 13:10:02.151604+00 2025-08-01 13:10:02.151617+00 f t - - - - \N \N 5560 4556 \N 100 1935 {"studies": [], "medications": [], "specialities": []} +1377 2025-08-01 13:19:33.89604+00 2025-08-01 13:19:33.896049+00 f t - - - - \N \N 167 176 \N 100 1932 {"studies": [], "medications": [], "specialities": []} +1378 2025-08-01 13:20:57.453353+00 2025-08-01 13:20:57.453362+00 f t Paciente terminal con falla renal. Suspender corticoides. Fluido terapia paleativa y antiácidos. Paciente IRC con Miositis. Cuadro de falla renal terminal y postración. Lesiones uremicas en mucosa oral, hiporexia y catabolismo. \N \N 5081 4193 \N 68 1853 {"studies": [], "medications": [{"id_medicina": "1033", "next_application_months": 0}], "specialities": []} +1379 2025-08-01 13:23:49.870961+00 2025-08-01 13:23:49.870973+00 f t Gerente q requiere soporte para desplazarse y control cardiológico por soplo. 0 Confroprotector Geronte, compromiso medular secundario artrosis severa columna y lumbosacro. \N \N 4992 4125 \N 68 1839 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1170", "next_application_months": 12}], "specialities": ["8"]} +1380 2025-08-01 13:26:09.350653+00 2025-08-01 13:26:09.350663+00 f t Cardiopatía? Consulta cardiologica Condroprotector Geronte. Con organomegalia y arritmia.\nEstado general bueno. \N \N 4992 4126 \N 68 1838 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1170", "next_application_months": 12}], "specialities": []} +1381 2025-08-01 13:28:44.051905+00 2025-08-01 13:28:44.051914+00 f t Otitis externa, reflejo oto pruriginoso. Limpieza de oído previa. Otovier NF. Penicilina de depósito. Sacude orejas, de queja cuando se rasca. Secreción unilateral. Limpieza de conducto, leve eritema. \N \N 5342 4386 \N 68 1896 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1382 2025-08-01 13:46:50.107951+00 2025-08-01 13:46:50.107972+00 f t - - - - \N \N 5477 4487 \N 90 1920 {"studies": [], "medications": [], "specialities": []} +1383 2025-08-01 14:27:02.391104+00 2025-08-01 14:27:02.391116+00 f t Control Sin Sedación para manipulación. Extracción de sangre paciente Vilef + \N \N 5329 4376 \N 68 1894 {"studies": [], "medications": [], "specialities": []} +1384 2025-08-01 14:30:21.629657+00 2025-08-01 14:30:21.629669+00 f t Descuido de propietarios o maltrato. Controlar cualquier irregularidad en proceso de adoptacion. Doxiciclina VO 7 días ya adaptación, controlando comida, diuresis, materia fecal. Paciente rescatado bajo score corporal. Mantiene apetito. Empezamos con Doxiciclina hasta control por lesiones de piel. \N \N 5480 4490 \N 68 1918 {"studies": [], "medications": [], "specialities": []} +1385 2025-08-01 14:32:48.431441+00 2025-08-01 14:32:48.43145+00 f t Cistitis Ecografía sino remite. Penicilina estrepto 3 aplicaciones cada 72hs, urovier VO 1 mes. Geronte con oliguria y poliaquiuria.\nConserva apetito.\nAnsiopatia (falleció compañera) \nSe palpa leve inflamación vesical. \N \N 5479 4489 \N 68 1913 {"studies": [], "medications": [{"id_medicina": "872", "next_application_months": 0}], "specialities": []} +1386 2025-08-01 14:37:16.30458+00 2025-08-01 14:37:16.304592+00 f t Parasitosis e infecciones crónicas de base. Dieta con suplementos (dieta casera)\nCollar seresto en octubre.. Seguir con Doxiciclina hasta cumplir 30 días, tanto por piel como por garrapatas y estado de calle. Lesiones en piel.\nEctoparasitos.\n¿esplenitis? Leve organomeglia sin molestias. \nPD/PU, mucosas rosa pálidas. Enfermedad periodontal incipiente. \N \N 5480 4490 \N 68 1922 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1171", "next_application_months": 3}, {"id_medicina": "440", "next_application_months": 1}], "specialities": []} +1387 2025-08-01 15:45:22.534537+00 2025-08-01 15:45:22.534547+00 f t vif/vilef - linfoma multicentrico completar estudios cardiológicos y test vif vilef por método PCR ADNproviral, NO IC, amox plus 1/2 c 12 hs \nprednisolona 0.5 mg kg x dia \npaulferon 1 ml c 12 hs \n\ntto x una sem teleconsulta x seguimiento \n\nlab: leucopenia a expensas de neutro y linfopenia \neco: infiltración esplenica y entérica a expensas de capa muscular, lfn mes reactivos \nrx torax: IMÁGENES SEMIDENSAS EN MEDIASTINO CRANEAL, QUE SUGIERE LINFOPATÍA ESTERNAL Y MEDIASTÍNICA CRANEAL.\nLEVE AUMENTO DE LA DENSIDAD PULMONAR A EXPENSAS DE UN PATRÓN INTERSTICIAL. \N \N 1798 1709 \N 94 1947 {"studies": [], "medications": [], "specialities": []} +1388 2025-08-01 16:05:02.370638+00 2025-08-01 16:05:02.370654+00 f t Buen estado clínico de salud. Elevar agua y comida a la altura del codo. Manejo con pretal para prevenir daño cervical. Ofrecer juguetes variados y juegos cognitivos. Realizar salidas en el día sin el para evitar ansiedad por \nseparacion Se aplican ambas vacunas. Se indica realizar refuerzo de sextuple pues tiene 8meses,en 21-30 días. Rabia en un año. \nAprax 1 comprimido se administra hoy. Se deja otro para repetir en 15 días. Mc vacunas. Lo adoptó ayer de grupo soplo de vida de Pilar. Le comentaron tuvo primera desparasitación hace 15 días. Vacunas no recibió. Pipeta le toca próximo domingo. No tuvo vómitos ni diarrea. Come nutrique.\nEog sensorio alerta. Hidratado. Mm rosadas húmedas tllc1.5seg. Score 2.5/5 lfn s/p pulso fuerte sincrónico. Ausc s/p. \N \N 5411 4436 \N 79 1904 {"studies": [], "medications": [{"id_medicina": "1153", "next_application_months": 12}, {"id_medicina": "1176", "next_application_months": 3}, {"id_medicina": "15", "next_application_months": 0}], "specialities": []} +1389 2025-08-02 00:37:16.394758+00 2025-08-02 00:37:16.394768+00 f t Control clínico AS (serología VIF y VILEF) . EOG NORMAL \N \N 5624 4604 \N 92 1950 {"studies": [], "medications": [], "specialities": []} +1390 2025-08-02 13:02:36.736145+00 2025-08-02 13:02:36.73724+00 f t . . . . \N \N 313 372 \N 90 1938 {"studies": [], "medications": [], "specialities": []} +1391 2025-08-02 13:08:12.940444+00 2025-08-02 13:08:12.941386+00 f t . Estomago: Gastritis leve\nIntestinos: Enteropatía Inflamatoria/ Infecciosa / infiltrativa\nNo se observa líquido en el abdomen al momento del estudio\n.Se sugiere correlacionar con otros estudios complementarios y con la evolución clínica del paciente, según opinión del médico actuante. . . \N \N 5706 4664 \N 90 1961 {"studies": [], "medications": [], "specialities": []} +1392 2025-08-02 13:19:45.075371+00 2025-08-02 13:19:45.075394+00 f t . Las imágenes observadas son sugerentes de:\nRiñones: Nefropatia crónica /senil / infiltrativa (incipiente)\nNo se observa líquido libre en el abdomen, ni adenopatias\nSe sugiere correlacionar con otros estudios complementarios y con la evolución clínica del paciente, según opinión del médico actuante. . . \N \N 4727 3916 \N 90 1899 {"studies": [], "medications": [], "specialities": []} +1393 2025-08-03 03:19:21.469362+00 2025-08-03 03:19:21.469373+00 f t . . . Vacunacion. Eog spp \N \N 5428 4452 \N 80 1906 {"studies": [], "medications": [], "specialities": []} +1394 2025-08-03 03:19:42.629318+00 2025-08-03 03:19:42.629331+00 f t . . . Vacunacion. Eog spp \N \N 5428 4455 \N 80 1907 {"studies": [], "medications": [], "specialities": []} +1395 2025-08-03 03:19:57.187501+00 2025-08-03 03:19:57.18751+00 f t . . . Vacunacion. Eog spp \N \N 5428 4453 \N 80 1908 {"studies": [], "medications": [], "specialities": []} +1396 2025-08-03 03:20:11.59263+00 2025-08-03 03:20:11.592644+00 f t . . . Vacunacion. Eog spp \N \N 5428 4454 \N 80 1909 {"studies": [], "medications": [], "specialities": []} +1397 2025-08-03 03:22:50.821792+00 2025-08-03 03:22:50.821805+00 f t . . . Muy agresiva. Se indico gabapentina antes de concurrir al domicilio pero aun asi imposible de revisar. Consultan por un bulto a la altura del pecho. Tumor de mama. Doy orden para cardiologia, perfil prequirurgico hemostatico, rx de torax y ecografia abdominal. Control con los resultados. Si esta todo ok se programara mastectomia con biopsia. \N \N 313 372 \N 80 1891 {"studies": [], "medications": [], "specialities": []} +1398 2025-08-03 03:24:30.693604+00 2025-08-03 03:24:30.693617+00 f t . . . Resultado de rz torax: leve bronquitis/asma felino. Por cronicidad se trata de asma felino leve. Indico puff fluticasona y salmeterol cada 12 hs por dos semanas, luego control. Pendiente vacunacion anual. \N \N 4433 3688 \N 80 1890 {"studies": [], "medications": [], "specialities": []} +1399 2025-08-03 03:29:40.67175+00 2025-08-03 03:29:40.671759+00 f t Cushing/patologia hepatica . . Fas 436, urea 13, calcio 6.6 , densidad urinaria 1003. Indico relacion cortisol/creatinina en orina \N \N 5021 4145 \N 80 1843 {"studies": [], "medications": [], "specialities": []} +1400 2025-08-03 12:19:32.810302+00 2025-08-03 12:19:32.810311+00 f t . Las imágenes observadas son sugerentes de:\nSin anormalidades ecográficas al momento del estudio\nNo se observa líquido libre en el abdomen, ni adenopatias\nSe sugiere correlacionar con otros estudios complementarios y con la evolución clínica del paciente, según opinión del médico actuante. . . \N \N 5757 4709 \N 90 1971 {"studies": [], "medications": [], "specialities": []} +1401 2025-08-03 16:38:46.518172+00 2025-08-03 16:38:46.518184+00 f t Deshidratación leve . Estimular el consumo de agua y consumo de alimento húmedo EOG normal \N \N 5743 4697 \N 92 1970 {"studies": [], "medications": [], "specialities": []} +1402 2025-08-03 16:40:41.49427+00 2025-08-03 16:40:41.494282+00 f t Vacunación anual . . EOG NORMAL \N \N 710 827 \N 92 1927 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1171", "next_application_months": 12}], "specialities": []} +1403 2025-08-03 16:41:17.989237+00 2025-08-03 16:41:17.989249+00 f t Vacunación anual . . EOG NORMAL \N \N 710 2947 \N 92 1928 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1171", "next_application_months": 12}], "specialities": []} +1404 2025-08-03 16:42:16.148303+00 2025-08-03 16:42:16.148316+00 f t Vacunación anual . . EOG normal. Sobrepeso \N \N 920 1025 \N 92 1871 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +1405 2025-08-03 16:42:38.33906+00 2025-08-03 16:42:38.33907+00 f t . . . . \N \N 5237 4302 \N 92 1878 {"studies": [], "medications": [], "specialities": []} +1406 2025-08-03 16:48:20.994314+00 2025-08-03 16:48:20.994322+00 f t Tumor cerebral - ACV Eutanasia . Paciente geronte con desorden neurológico agudo severo sin respuesta al tratamiento \N \N 5237 4302 \N 92 1968 {"studies": [], "medications": [], "specialities": []} +1407 2025-08-03 23:13:44.566063+00 2025-08-03 23:13:44.566075+00 f t Discracia alimentaria / enteritis medicamentosa / disbiosis/ hepatoaptia/neoplasia Elevar plato de agua y comida para cuidar columna. \nTto de sostén para la diarrea mientras se busca la causa subyacente. Se indica dieta blanda de pollo a la plancha y sopa de moro. Realizar ecografía abdominal y análisis de sangre. Control según evolución en 24/48hs Mc: diarrea tres días de evolución. Habitualmente come eukanuba. Tiene displasoa de cadera grado 4 desde que nacio. Tenemos mucus y por momentos aparenta tener estrías de sangre (muestra foto). Poco apetito. Toma agua. Ánimo conserva. La semana pasada le administro previcox por indicación vet.\nEog sensorio alerta mm rosadas húmedas. Hidratada . Normitermica. Lfn s/p fr fc ok pulso f/s\nEop Def en más en parrilla costal izq. No punzada (quiste/lipoma/neoplasia) abdomen blando. Dolor a la palpación profunda de hipogastrio. Acepta alimento. Toma agua en mí presencia \N \N 5811 4752 \N 79 1980 {"studies": ["1", "8"], "medications": [], "specialities": []} +1408 2025-08-04 14:16:54.7756+00 2025-08-04 14:16:54.77561+00 f t Insuficiencia renal crónica. Metabolase y tratamiento sintomático+ metronidazol Maropitant + alimento renal + perfil renal completo + AOC Paciente con insuficiencia renal crónica. Anorexia. Vómitos. Odontolitiasis+++ con enfermedad periodontal avanzada. \N \N 5802 4745 \N 92 1979 {"studies": [], "medications": [], "specialities": []} +1409 2025-08-04 14:19:17.747686+00 2025-08-04 14:19:17.747697+00 f t Vacunación. Repetir en un año. Vacunación Consulta x vacunación anual. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. \N \N 5620 4601 \N 70 1949 {"studies": [], "medications": [{"id_medicina": "1161", "next_application_months": 12}, {"id_medicina": "1154", "next_application_months": 12}], "specialities": []} +1410 2025-08-04 14:23:27.738744+00 2025-08-04 14:23:27.738758+00 f t Vacunación anual. Repetir en un año. Vacunación anual. Consulta x vacunación anual. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. \N \N 5620 4600 \N 70 1948 {"studies": [], "medications": [], "specialities": []} +1411 2025-08-04 14:31:56.818567+00 2025-08-04 14:31:56.81858+00 f t Tumor de mama maligno. Se realiza eutanasia. Eutanasia Consulta x tumoración mamaria ulcerada EOG sensorio deprimido. Sin apetito, micción y defecación disminuídas. Palpación abdominal sin particularidades. Mamas de ambas filas con tumores ulcerados y olor fétido. Estado terminal. \N \N 5339 4382 \N 70 1897 {"studies": [], "medications": [], "specialities": []} +1412 2025-08-04 14:40:34.861903+00 2025-08-04 14:40:34.861914+00 f t Insuficiencia renal leve. Repetir análisis cada seis meses. Beber mayor cantidad de agua y seguir con Agility húmedo. Consulta para ver resultados de análisis de sangre. Son los esperables para un gato de 14 años. Creatinina un poco elevada, sugestivo de enfermedad renal. No vomitó nuevamente luego del cambio de alimento x Agility. \N \N 3710 3148 \N 70 1821 {"studies": [], "medications": [], "specialities": []} +1551 2025-08-27 00:22:18.779121+00 2025-08-27 00:22:18.779165+00 f t . . . Triple felina y atr. Eog spp. \N \N 6545 5341 \N 80 2097 \N +1563 2025-08-27 14:50:18.430437+00 2025-08-27 14:50:18.430451+00 f t . . . Se aplico triple felina + atr. Eog spp. \N \N 6956 5691 \N 80 2173 \N +1413 2025-08-04 14:48:42.486406+00 2025-08-04 14:48:42.486415+00 f t Tumoración/inflamación en prepucio de tamaño pelota de fútbol. Se recomienda eutanasia. Eutanasia. Consulta x inflamación del prepucio al punto que no se puede exteriorizar el pene y no puede orinar. Tamaño pelota de fútbol. Sensorio muy deprimido El propietario solicita eutanasia. \N \N 4847 4006 \N 70 1819 {"studies": [], "medications": [], "specialities": []} +1414 2025-08-04 15:02:21.472375+00 2025-08-04 15:02:21.472387+00 f t Alergia alimentaria atípica. Seguir con el Old Prince por 2 meses y nuevo control. Vuelta a Old Prince cordero y arroz. Teleconsulta de control para ver evolución del cambio de alimento. Hubo mejoría en los vómitos los primeros días. Luego comenzaron nuevamente. \N \N 3804 3223 \N 70 1766 {"studies": [], "medications": [], "specialities": []} +1415 2025-08-04 17:15:26.146535+00 2025-08-04 17:15:26.146547+00 f t . . . Telemedicina. Consultan por persistencia de pulgas sobre el paciente. Le dieron el 15 de julio Power comprimidos. Convive con un perro que tambien tiene pulgas. Indico pastilla credelio para su peso, dar cada 28 dias. Limpiar ambiente con echtol y pasar aspiradora. \N \N 5781 4733 \N 80 1975 {"studies": [], "medications": [], "specialities": []} +1416 2025-08-05 01:56:37.558936+00 2025-08-05 01:56:37.558946+00 f t Indigestión alimentaria . Cambiar el alimento seco por alimento húmedo. Controlar si vuelve a vomitar. Control de deposiciones y orina. Antecedentes de vómitos. EOG normal. Hoy comió y no volvió a vomitar. Defeca y orina normal. Apetito normal. \N \N 5799 4742 \N 92 1976 {"studies": [], "medications": [], "specialities": []} +1417 2025-08-05 01:57:18.983519+00 2025-08-05 01:57:18.983528+00 f t Vacunación anual . . EOG normal \N \N 4471 3722 \N 92 1813 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +1418 2025-08-05 13:00:22.147842+00 2025-08-05 13:00:22.147853+00 f t - - - - \N \N 313 372 \N 100 1937 {"studies": [], "medications": [], "specialities": []} +1419 2025-08-05 13:01:55.968597+00 2025-08-05 13:01:55.96861+00 f t - - - - \N \N 5021 4145 \N 100 1957 {"studies": [], "medications": [], "specialities": []} +1420 2025-08-05 16:28:51.334203+00 2025-08-05 16:28:51.334217+00 f t discrepancia alimenticia, CEL?? *orden para ecografia abdominal **Rp/ dipirona 20 mgkg, ranitidina\n*dieta evacuante con buena ingesta de agua y alimento húmedo\n\n\nControl: 24-48 horas Refiere que está con vómitos desde hace varios días, come plantas, pero no la vuieron jugar con otra cosa. Los vómitos son alimenticios, entre 15-30 minutos luego de la ingesta y con apetito y ánimo normal.\nEstá defecando normal, aunque cada vez menos cantiodad\n\n*Come: RC indoor\n*Estilo de vida: indoor\n*Convive: no\n*Vacunas: si\n*Desparasitación: no\n*Medicación: no\n*TEMPERAMENTO: dócil, algo nerviosa\n\nEOG: SENSORIO alerta, asustada, MM rosadas, TLLC 2", CC 3.25/5, LND sp, DH normal, FC taquicardia, PULSO no se puede hacer, FR taquipnea, PATRÓN C/A\nEOP: presenta dolor a la PP en abdomen, molestia en epi y mesogastrio con vejiga vacía y dolor. \N \N 393 467 \N 9 1930 {"studies": [], "medications": [{"id_medicina": "725", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}], "specialities": ["41"]} +1421 2025-08-06 00:23:42.322331+00 2025-08-06 00:23:42.322341+00 f t Asma felina Continuar con la misma medicación. Se le recomendó manejo de administración del puff y del prednisol. Control de alérgenos ambientales y alimentarios. Control en 1 mes. El paciente se trata con seretide + prednisol. Teleconsulta. Tos frecuente. \N \N 5943 4851 \N 92 1996 {"studies": [], "medications": [], "specialities": []} +1422 2025-08-06 19:14:02.098521+00 2025-08-06 19:14:02.098633+00 f t . . . Solicita certificado de salud para presentar en facultad de veterinaria y vacunacion anual. Eog spp. Tuvo pulgas, le aplico una pipeta hace mas de un mes. Aplico sextuple y atr. Indico pipeta. \N \N 5772 4724 \N 80 1972 {"studies": [], "medications": [], "specialities": []} +1423 2025-08-06 19:15:24.172646+00 2025-08-06 19:15:24.172655+00 f t Cushing . . Se indica prueba de supresion con dexametasona. Control con resultados. \N \N 5021 4145 \N 80 1995 {"studies": [], "medications": [], "specialities": []} +1424 2025-08-06 19:19:11.096421+00 2025-08-06 19:19:11.096434+00 f t IRC/ artrosis en columna . . Telemedicina. Consulta: no se puede parar, solo con ayuda. Al pararse camina un poco. Toma mucho agua y hace mucho pis. Le vieron una masa en piel. Se observa perdida de masa muscular en tren posterior. Indico consulta a domicilio, citologia de la masa, perfil general basico y colocacion de carrito para que se pueda movilizar. Se orina encima y ya tiene arritada la piel. Poner pañales por la noche y usar vaselina para que no se irrite. \N \N 5889 4811 \N 80 1989 {"studies": [], "medications": [], "specialities": []} +1425 2025-08-07 20:23:02.983043+00 2025-08-07 20:23:02.983058+00 f t . . . Tutora solicita certificado de salud para presentar en facultad de veterinaria. Eog spp. Aplico sextuple y atr. Aplico pipeta para pulgas y garrapatas. \N \N 841 4818 \N 80 1990 {"studies": [], "medications": [], "specialities": []} +1426 2025-08-08 12:52:26.964741+00 2025-08-08 12:52:26.964753+00 f t Vacunación Desprasitar Vacunacion Sano con leve sibrepeso \N \N 5240 4307 \N 68 1880 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1427 2025-08-08 12:53:06.581816+00 2025-08-08 12:53:06.581829+00 f t Leve sibrepeso Desprasitar Vacunacion Vacunación \N \N 5240 4306 \N 68 1881 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1428 2025-08-08 12:54:04.024992+00 2025-08-08 12:54:04.025005+00 f t Saludable Revacunar anualmente Vacunación Vacunación \N \N 5733 4688 \N 68 1964 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}], "specialities": []} +1429 2025-08-08 12:55:31.121035+00 2025-08-08 12:55:31.121047+00 f t Sin úlcera ni dolor, clínicamente s/p Limpieza previa Dexaflox 14 días Conjuntivitis alérgica y/o infecciosa \N \N 5189 4266 \N 68 1977 {"studies": [], "medications": [], "specialities": []} +1430 2025-08-08 12:57:12.971765+00 2025-08-08 12:57:12.971775+00 f t Cambio en dieta sin adaptación. Organizar dieta, si remite ecografía abdominal. Adaptación paulatina de dieta siempre q hay cambios. Descenso de peso y control de la comida una vez abierto el envase. Sangre en la materia fecal. \N \N 5564 4557 \N 68 1946 {"studies": [], "medications": [], "specialities": []} +1431 2025-08-08 12:59:30.295496+00 2025-08-08 12:59:30.295505+00 f t Paciente con dolor medular. Manejo del dolor con pregabalina y realizar radiografía de columna. Descenso de peso, reposo, comida en elevación. Posible neuralgia por hernia cervical. \N \N 5912 4831 \N 68 1994 {"studies": ["2"], "medications": [], "specialities": []} +1553 2025-08-27 00:23:57.933324+00 2025-08-27 00:23:57.933335+00 f t Vacunación Vacunación Vacunación EOG s/p vacunación. \N \N 7288 5979 \N 91 2245 \N +1432 2025-08-08 13:02:32.605093+00 2025-08-08 13:02:32.605101+00 f t Seguirá con prednisolona y pregabalina en descenso paulatino. Empezar a gestionar radiografía. Tomar analgésico y antiinflamatorio. Nuevo episodio de dolor. Medicaron con dexametasona \N \N 5912 4831 \N 68 2014 {"studies": ["2"], "medications": [], "specialities": []} +1433 2025-08-08 13:05:55.751552+00 2025-08-08 13:05:55.751565+00 f t Neoplasia de MPD, no admite abducción del miembro, compromete el retorno venoso, hay edema. Parece un sarcoma y puede requerir radiografías y considerar amputación o no seguir adelante. Realizar estudios con un pronóstico reservado. Tomar prednisolona de manera sostenida para ver si hay respuesta. Paciente con dolor, postrado. \N \N 2792 2462 \N 68 2018 {"studies": [], "medications": [{"id_medicina": "703", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +1449 2025-08-11 15:20:26.286407+00 2025-08-11 15:20:26.286421+00 f t mastocitoma sugiero realizar extraccion de puntos en 15 dias . acudo a domicilio para control posquirurgico por mastocitoma ubicado en ventral del abdomen y uno pequeño ubicado en labio superior en region facial.\nla intervencion quirurgica la realizaron en Panda saavendra.\nrevision clinica\naus s/p\ncc6\nnormotermica normohidratada \nesta tomando prednisolona + amoxicilina con ac clavulanico\nmantiene apetito, no vomitos. hace 48 hs que no defeca , explico que es normal por la anestesia e indico que incrementen el porcentaje de fibra en la dieta para favorecer el transito gastrointestinal \N \N 5987 4887 \N 88 2003 {"studies": [], "medications": [], "specialities": []} +1434 2025-08-08 15:36:14.330502+00 2025-08-08 15:36:14.330511+00 f t Sin reporte Sin reporte Sin reporte Sin reporte \N \N 5 5 \N 25 5 {"studies": [], "medications": [{"id_medicina": "1151", "next_application_months": 12}], "specialities": []} +1435 2025-08-08 20:18:19.766925+00 2025-08-08 20:18:19.766938+00 f t Laboratorio Laboratorio Laboratorio Laboratorio \N \N 5802 4745 \N 100 1987 {"studies": [], "medications": [], "specialities": []} +1437 2025-08-08 20:44:42.822951+00 2025-08-08 20:44:42.82296+00 f t Laboratorio Laboratorio Laboratorio Laboratorio \N \N 1864 1756 \N 86 1346 {"studies": [], "medications": [], "specialities": []} +1438 2025-08-08 20:46:16.378239+00 2025-08-08 20:46:16.378247+00 f t Laboratorio Laboratorio Laboratorio Laboratorio \N \N 2042 1889 \N 86 1639 {"studies": [], "medications": [], "specialities": []} +1439 2025-08-08 20:47:51.344262+00 2025-08-08 20:47:51.344271+00 f t Laboratorio Laboratorio Laboratorio Laboratorio \N \N 1735 1652 \N 86 1377 {"studies": [], "medications": [], "specialities": []} +1440 2025-08-10 15:43:21.60349+00 2025-08-10 15:43:21.603504+00 f t Asma Control en 3 semanas. Ese dia hacemos vacunacion de triple felina y antirrabica Indico seguir una semana mas cada 12 hs. Luego bajamos a cada 24 hs por 2 semanas. Le dieron por 2 semanas cada 12 hs puff de fluticasona y salmeterol. Notaron una mejoria en sus sintomas. A la auscultacion pulmones mucho mas despejados, pequeño murmullo vesicular. \N \N 4433 3688 \N 80 1986 {"studies": [], "medications": [], "specialities": []} +1441 2025-08-11 11:37:09.37528+00 2025-08-11 11:37:09.375293+00 f t Vacunación anual+ microchip+desparasitación externa e interna . Vacunación anual+ moxidex plus+ la pipeta EOG: NORMAL \N \N 5876 4804 \N 92 1988 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +1442 2025-08-11 11:45:40.195696+00 2025-08-11 11:45:40.195706+00 f t Insuficiencia renal crónica avanzada, infección urinaria Eutanasia, en el caso de no realizarla: \nUrocultivo+ antibiograma luego del tratamiento \nControl presión arterial \nSuplemento renal advance \nEco renal\nAplicar suero subcutáneo 2 veces por semana y agregar metabolase al mismo La tutora administra amikacina. Indico dieta renal+ eco renal Teleconsulta para ver estudios realizados \N \N 5802 4745 \N 92 2026 {"studies": [], "medications": [], "specialities": []} +1443 2025-08-11 11:53:07.292617+00 2025-08-11 11:53:07.292629+00 f t . . . Consulta cancelada. Paciente falleció. Estábamos esperando eso. Tito no estaba sufriendo para justificar una eutanasia pero se encontraba en una etapa terminal de una insuficiencia cardíaca. El paciente recibió acompañamiento en su última etapa con frecuentes visitas. \N \N 1734 1651 \N 92 2037 {"studies": [], "medications": [], "specialities": []} +1444 2025-08-11 11:56:39.420063+00 2025-08-11 11:56:39.420072+00 f t Vacunación anual Aumentar la ingesta calórica. Castración en 3 meses . EOG normal. Delgado. \N \N 4774 3954 \N 92 1962 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1171", "next_application_months": 12}, {"id_medicina": "43", "next_application_months": 0}, {"id_medicina": "275", "next_application_months": 0}], "specialities": []} +1445 2025-08-11 15:05:06.667817+00 2025-08-11 15:05:06.66783+00 f t . sugiero realizar complementarios de control . se realiza teleconsulta para medicarla por mudanza .\nindico gabapentina a 30 mg/kg 2 horas antes de la misma. \N \N 6196 5060 \N 88 2039 {"studies": [], "medications": [], "specialities": []} +1446 2025-08-11 15:06:11.663411+00 2025-08-11 15:06:11.663425+00 f t . indico complementarios dada la edad de las mismas . . se realiza teleconsulta para medicarla para realizar una mudanza.\nindico gabapentina 30 mg 2 horas antes de la misma \N \N 6196 5059 \N 88 2039 {"studies": [], "medications": [], "specialities": []} +1447 2025-08-11 15:08:38.665039+00 2025-08-11 15:08:38.665048+00 f t bronquitis alergica/ asma felino realizo orden para rx de torax ll y vd aplico una unica dosis de dexa consulta por tos seca. espisodio esporadico .\nhace un tiempo acudi al mismo domicilio por cuadro similar , pero con episodios de tos marcados y duraderos en el tiempo.\nrevision clinica\naus aumento murmullo vesicular, no se auscultan sibilancias\nnormotermica \nnormohidratada\npalpacion abdominal s/p \N \N 3927 3297 \N 88 1992 {"studies": [], "medications": [{"id_medicina": "704", "next_application_months": 0}], "specialities": []} +1448 2025-08-11 15:12:05.447881+00 2025-08-11 15:12:05.447893+00 f t broquitis alergica/asma felino/ rinitis dejo gabapentina para que se lo administren via oral y poder volver al domicilio para hacer la revision clinica correspondiente indico que comiencen con prednisol a 0.5mg/kg cada 24 hs por 5 dias . y luego a dias alternos . acudo a domicilio por un cuadro de tos, secrecion serosa por ollares, evolucion 7 dias aprox\nel paciente no se deja levantar por los tutores, lo rescataron de maltratos que sufrio en el edificio donde viven por lo cual el gordito es bastante desconfiado.\nno vomitos ni diarrea\nmantiene apetito\nno se puede revisar , ya que los mismos tutores no pueden agarrarlo, por lo cual no puedo realizar la revision clinica correspondiente \N \N 6023 4914 \N 88 2006 {"studies": [], "medications": [], "specialities": []} +1557 2025-08-27 13:26:13.246492+00 2025-08-27 13:26:13.246503+00 f t . . . . \N \N 6818 5567 \N 90 2257 \N +1450 2025-08-11 15:25:27.059789+00 2025-08-11 15:25:27.059802+00 f t Alergia/rinitis . . Telemedicina. Desde ayer come poco y tiene estornudos. Por anamnesis me cuenta que el dia de ayer el paciente tiro un liquido aromatizante. Explico que se trata de una alergia, que por el momento no medicamos por la edad. Limpiar a fondo la casa. Control segun evolucion. \N \N 6244 5092 \N 80 2048 {"studies": [], "medications": [], "specialities": []} +1452 2025-08-11 15:28:36.081308+00 2025-08-11 15:28:36.081323+00 f t Insuf renal/inf urinaria/artrosis . . Le cuesta incorporarse, con ayuda camina unos pasos, polidipsia, poliuria con mal olor, masas multiples de 10×10 en subcutaneo. Le compraron una silla de ruedas. Hago paf de las 4 masas para citologia, aparentan lipomas. Ganglios spp. Indico extraccion de sangre para perfil general completo con orina completa con relacion prot/creatinina en orina. Control con resultados. Posible infeccion urinaria e insuficiencia renal. Indico gerioox 2 por dia. \N \N 5889 4811 \N 80 1993 {"studies": [], "medications": [], "specialities": []} +1453 2025-08-11 15:29:11.949447+00 2025-08-11 15:29:11.949459+00 f t . realizo orden para control de medio interno, perfil hepatico + calcio + fosforo + ionograma serico + ecografia abdominal.\ndejo comprimidos de gabapentina para facilitar la realizacion de los complementarios indico desparasitacion interna con moxidex plus repitiendo a los 15 dias + credelio consulta a domicilio para chequeo general .\ncome old prince cordero + lomo y pollo hervido.\nplan sanitario ( vacunas y desparasitaciones internas vencidas)\nrevision clinica\naus s/P ( fue el unico parametro que pude revisar ya que el gordito es muy asustadizo y no de dejó revisar mas ) \N \N 6018 4910 \N 88 1999 {"studies": [], "medications": [], "specialities": []} +1451 2025-08-11 15:25:33.122059+00 2025-08-11 15:25:33.122072+00 f t soplo por alteraciones a nivel cardiaco ? (cardiomiopatia hipertrofica/dilatada)?? realizo orden para consulta cardiologica + mapeo color . + ecografia abdominal + perfil hepatico + ionograma + calcio + fosforo indico desparasitacion interna con moxidex plus reptiendo a los 15 dias + credelio consulta a domicilio para chequeo general. \ncomen old prince cordero + lomo y pollo hervidos\nplan sanitario ( vacunas y desparasitaciones vencidas)\nrevision clinica \naus soplo 2/6 en hemitorax izquierdo\nnormotermica normohidratada\npalpacion abdominal: organomegalia en epigastrio? distension postpandrial? \nresto s/p\nme comenta el tutor que notó que bajo bastante de peso , mantiene apetito pero hubo una descenso de peso notorio \N \N 6018 4909 \N 88 2000 {"studies": [], "medications": [], "specialities": []} +1454 2025-08-11 21:48:59.065692+00 2025-08-11 21:48:59.065706+00 f t Saludable Vacunación Vacunación Vacunación \N \N 5951 4861 \N 68 2024 {"studies": [], "medications": [{"id_medicina": "1170", "next_application_months": 12}], "specialities": []} +1455 2025-08-11 21:52:24.706678+00 2025-08-11 21:52:24.706691+00 f t Piometra cerrrada, descompensda Exocrqfiq abdominal Penicilina estrepro, ranitidina, pileran Postrada, PD/PU, dolor abdominal, vasos episclerales inyectados. Vómitos incohercibles, días de evolución \N \N 6154 5021 \N 68 2027 {"studies": ["1"], "medications": [{"id_medicina": "702", "next_application_months": 0}, {"id_medicina": "533", "next_application_months": 0}], "specialities": ["79"]} +1456 2025-08-11 21:55:18.074684+00 2025-08-11 21:55:18.074699+00 f t Organomegalia, neoplasia, hepatopatia Ecografía Doxiciclina si mejora y control medico Hiporexia hipertermia decaimiento diarrea con sangre abdomen a aliñado y pérdida de masa muscilar. Glucemia normal. T 39 \N \N 6179 5045 \N 68 2033 {"studies": ["1"], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1457 2025-08-12 00:23:39.780809+00 2025-08-12 00:23:39.780822+00 f t Dipilidium Colocación de microchip, AMF y asc+AOC. Desparasitar y hacer AMF en un mes EOG normal. La tutora observo proglotidos \N \N 5967 4871 \N 92 1998 {"studies": [], "medications": [], "specialities": []} +1458 2025-08-12 14:32:58.332964+00 2025-08-12 14:32:58.332976+00 f t . . . . \N \N 6033 4926 \N 100 2049 {"studies": [], "medications": [], "specialities": []} +1459 2025-08-12 14:38:49.886124+00 2025-08-12 14:38:49.886135+00 f t - . . . \N \N 6033 4925 \N 100 2049 {"studies": [], "medications": [], "specialities": []} +1460 2025-08-12 14:45:25.049334+00 2025-08-12 14:45:25.049348+00 f t . . . . \N \N 313 372 \N 100 2032 {"studies": [], "medications": [], "specialities": []} +1461 2025-08-13 00:13:25.928363+00 2025-08-13 00:13:25.928375+00 f t Enteritis. Dermatitis escrotal Vacunación + ASC + alimentos húmedos Diafin + dieta antidiarreica+ giacoccide+ tribiotic Diarrea acuosa. Herida escrotal con infección. Hidratación normal. \N \N 6354 5170 \N 92 2062 {"studies": [], "medications": [], "specialities": []} +1462 2025-08-13 06:55:21.499914+00 2025-08-13 06:55:21.499927+00 f t Reacción alérgica/complejo granuloma eosinofilico Ansiolítico previo a consultas programadas presenciales: Gabapentina /gabalbech 3ml, vía oral 3horas antes de la consulta.\nSuplemento gerontológico: rumivital o seniorline: 1minicomprimido diario por tiempo indeterminado. Se aplica 0.4mg/Kg de dexa.\nSe indica evaluar las próximas 24hs respuesta al tto. En caso de persistir administrar prednisol gotas vía oral\n3 gotas cada 24hs por tres días a partir del 14/8\n3gotas cada 48hs tres tomas.\nControl por foto Mc: tiene la boca hinchada desde ayer. Tiene antecedentes de haberse caído de pequeña de la terraza pero ya no sale. Comentan que no la vieron caerse/golpearse. Come bebe con normalidad. Recientemente historial de pulgas tuvieron que repetir antiparasitario externo. \nEog: sensorio alerta. Score corp 2/5 paciente no permite la auscultación y palpación. \nEop: Al bufar permite ver cavidad bucal sin particularidades interiormente. Externamente edema labial inferior no ulcerativo, compatible con reacción alérgica/complejo granuloma eosinofiloco \N \N 6375 5187 \N 79 2068 {"studies": [], "medications": [{"id_medicina": "704", "next_application_months": 0}], "specialities": []} +1463 2025-08-13 12:21:01.434491+00 2025-08-13 12:21:01.434508+00 f t Ecografía con imágenes compatibles con neoplasia intestinal Asistencia a un centro de mayor complejidad. Se le aplica analgésico y recomienda la asistencia a un centro de mayor complejidad si el dolor no se resuelve a la brevedad. Paciente con dolor abdominal. Tratado días previos con tramadol y Doxiciclina. Le han realizado una ecografía abdominal y han extraído sangre. \N \N 6179 5045 \N 92 2072 {"studies": [], "medications": [], "specialities": []} +1464 2025-08-13 13:29:29.849486+00 2025-08-13 13:29:29.849498+00 f t Prurito de cabeza y cuello Pipeta pulguicida. Esperar a ver si la lesión involuciona o se expresa más y amerita tomar muestra Por ahora se explica que no hay necesidad de medicar. Sólo sugiero reforzar tto pulguicida con pipeta. Paciente con lesión alopécica de 1 semana de evolución, ubicada en el espacio entre ojo y oreja, lado derecho \N \N 6358 5175 \N 75 2066 {"studies": [], "medications": [], "specialities": []} +1493 2025-08-18 04:40:43.090646+00 2025-08-18 04:40:43.090659+00 f t Parasitosis Mantener sin pulgas las mascotas. Se desparasita con pipeta full spot Estaba con muchas pulgas y presentaba muchos parásitos en la materia fecal \N \N 5071 4186 \N 1 2086 {"studies": [], "medications": [], "specialities": []} +1465 2025-08-13 13:32:11.413843+00 2025-08-13 13:32:11.413858+00 f t DAC De acuerdo a evolución, más adelante venos de cambiar el alimento y/o realizar Prick test Indico Cytopoint 20 mg 0.5ml, evaluar respuesta. Si hace falta se refuerza con Oclacitinib 16 mg 1/4 x día. Baños con clorhexidina semanal. Paciente con Dermatitis atopica canina y foliculitis bacteriana a repetición. Tratado con cefalexina en 2 ciclos, sin respuesta a Oclacitinib. \N \N 6034 4927 \N 75 2012 {"studies": [], "medications": [], "specialities": []} +1466 2025-08-13 19:22:57.036806+00 2025-08-13 19:22:57.036818+00 f t - . . - \N \N 6179 5045 \N 90 2046 {"studies": [], "medications": [], "specialities": []} +1467 2025-08-13 19:24:52.96137+00 2025-08-13 19:24:52.961382+00 f t . . . . \N \N 6179 5045 \N 100 2059 {"studies": [], "medications": [], "specialities": []} +1468 2025-08-13 19:29:40.438456+00 2025-08-13 19:29:40.438465+00 f t . . . . \N \N 3347 4968 \N 90 2016 {"studies": [], "medications": [], "specialities": []} +1469 2025-08-13 19:30:31.762829+00 2025-08-13 19:30:31.762842+00 f t . . . . \N \N 3347 2872 \N 90 2017 {"studies": [], "medications": [], "specialities": []} +1470 2025-08-14 01:08:02.679617+00 2025-08-14 01:08:02.679627+00 f t Desorden endocrinologico . Perfil tiroideo+ AOC (rel cortisol/creatinina) Paciente con abdomen abalonado, piel fina, caída de pelo, tumor mamario(mama inguinal derecha)tamaño de una arveja, comenzó a tomar más agua que lo habitual \N \N 6392 5199 \N 92 2078 {"studies": [], "medications": [], "specialities": []} +1471 2025-08-14 12:54:53.949577+00 2025-08-14 12:54:53.949591+00 f t Linfoma y/o lipidosis hepatica. El cuadro es grave y no hay tiempos fijos de internacion, necesita atención médica y en estos casos necesita estabilizarse para poder seguir adelante. Internado manejo a cargo de médicos del centro. Internado por anorexia y decaimiento. Consultan sobre tempos de internacion y pasos a seguir. \N \N 6179 5045 \N 68 2079 {"studies": [], "medications": [], "specialities": []} +1472 2025-08-14 22:30:14.301237+00 2025-08-14 22:30:14.301253+00 f t Cristaluria AOC orden con fecha 20/9/25 Completar los 60 d de urovier. Teleconsulta. Tuvo la IC con endocrino, hablaron del volumen de ingesta de agua normal para el tamaño del paciente, dejó indicada la inhibición con dexametasona a bajas dosis. \nMe comenta la tutora que desde que suspendió el urinary disminuyó notablemente el consumo de agua y hoy en día está consumiendo cantidad normal de agua. Aún no terminó el urovier. Dejo orden para AOC de control luego de terminado el tto, e indico control ecográfico por las adrenales hiperplásicas en 6 meses (si clínicamente sigue normal). \N \N 2732 2418 \N 91 2076 {"studies": [], "medications": [], "specialities": []} +1473 2025-08-14 22:32:17.915319+00 2025-08-14 22:32:17.915329+00 f t Vacunación S/R Vacunación EOG s/p vacunación \N \N 165 5183 \N 91 2064 {"studies": [], "medications": [{"id_medicina": "1154", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1474 2025-08-14 22:35:04.588579+00 2025-08-14 22:35:04.588592+00 f t . Solicitar indicaciones de gabapentina previo a la fecha de vacunación. . Se solicitó control y vacunación, pero tiene las vacunas vigentes hasta diciembre de 2025 y es bastante indocil, me comenta que siempre lo medican para vacunar. \N \N 165 5183 \N 91 2065 {"studies": [], "medications": [], "specialities": []} +1475 2025-08-15 16:23:29.350759+00 2025-08-15 16:23:29.350769+00 f t Normal Perfil general completo+ orina Triple felina+ var EOG normal \N \N 6469 5271 \N 92 2085 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +1476 2025-08-15 20:00:33.269716+00 2025-08-15 20:00:33.269729+00 f t IRC? - Se indica realizar terapia sintomatica, sangre y ecografía abdominal. El propietario comenta que la nota muy decaída y que hace 2 días que no come, que está muy flaca y que presenta una secreción verdosa en ambos ojos.\nEl anímala se lo ve hipotermico y deshidratado (al rededor de un 10%), con ánimo estuporoso y ventroflexion del cuello.\nSe indica al propietario que lo mejor para la paciente es la internacion, se da una orden y se indica que vaya a un centro 24 hs. \N \N 6520 5317 \N 1 2092 {"studies": [], "medications": [], "specialities": []} +1477 2025-08-16 16:25:44.651396+00 2025-08-16 16:25:44.651406+00 f t . CONCLUSIONES:\nLas imágenes observadas son sugerentes de:\nHígado: Hepatomegalia: Hiperplasia difusa inflamatoria infecciosa /\ninfiltrativa\nEstomago: Gastritis leve.\nIntestinos: Enteritis inflamatoria / infecciosa / infiltrativa . . \N \N 6517 5315 \N 90 2090 {"studies": [], "medications": [], "specialities": []} +1478 2025-08-16 17:38:00.311116+00 2025-08-16 17:38:00.311127+00 f t . CONCLUSIONES:\nLas imágenes observadas son sugerentes de:\nBazo: Esplenomegalia leve. Hiperplasia difusa infecciosa / inflamatoria /\ninfiltrativa. Considerar hemoparásitos\nRiñones: Nefropatía crónica/ senil / infiltrativa (incipiente) . . \N \N 167 176 \N 90 2051 {"studies": [], "medications": [], "specialities": []} +1479 2025-08-17 18:26:54.537101+00 2025-08-17 18:26:54.53711+00 f t . - indico desparasitacion interna y externa con pipeta ya que se le complica mucho administrar antiparasitarios via oral felino macho castrado comun europeo.\nvisita a domicilio para aplicar vacuna triple felina + corte garras.\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermico\nnormohidratado\ndesparasitacion interna vencida \N \N 5396 4421 \N 88 1901 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +1480 2025-08-17 18:29:26.597006+00 2025-08-17 18:29:26.597015+00 f t diabetes ? insuficiencia renal? . . la anamnesis y signologia estan descriptas en la visita anterior.\nacudo a domicilio para extraccion de sangre para perfil general completo + aoc + upc \N \N 167 176 \N 88 1931 {"studies": [], "medications": [], "specialities": []} +1481 2025-08-17 18:32:06.989232+00 2025-08-17 18:32:06.989244+00 f t Diente partido, flojo . Aplico atb preventivo. Indico limpieza bucal con pasta dental veterinaria 2 veces semanal Diente partido. EOG Normal \N \N 4732 3919 \N 92 2115 {"studies": [], "medications": [], "specialities": []} +1482 2025-08-17 18:33:34.637308+00 2025-08-17 18:33:34.63732+00 f t . . Desparasitación externa+ interna. La pipeta de Osspret + basken plus+ certificado de desparasitación+ certificado de salud. EOG normal \N \N 6470 5273 \N 92 2091 {"studies": [], "medications": [], "specialities": []} +1483 2025-08-17 18:34:01.787714+00 2025-08-17 18:34:01.787726+00 f t . . Desparasitación externa+ interna. La pipeta de Osspret + basken plus+ certificado de desparasitación+ certificado de salud. EOG normal \N \N 6470 5272 \N 92 2088 {"studies": [], "medications": [], "specialities": []} +1492 2025-08-18 04:39:17.926245+00 2025-08-18 04:39:17.926254+00 f t Parasitosis. Tener bajo control las pulgas. Se desparasita con antiparasitario spot On La propietaria comenta que la gatita con la que convive prestaba muchas pulgas y desde entonces tiene parásitos en la materia fecal. \N \N 5071 4220 \N 1 2087 {"studies": [], "medications": [], "specialities": []} +1558 2025-08-27 13:28:08.500715+00 2025-08-27 13:28:08.500725+00 f t . . . . \N \N 7105 5813 \N 90 2203 \N +1484 2025-08-17 18:35:26.511754+00 2025-08-17 18:35:26.511763+00 f t deterioro del organismo propio de la edad, neo de base? . se realiza eutanasia la paciente luego de la consulta realizada en abril de este año , dejo de comer hace 7 dias . le ofrecieron absolutamente todas las alternativas de alimentos pero lleva 7 dias sin comer , solo bebe muy poca cantidad de agua.\nrevision clinica\ncaquexia generalizada\ndeshidratacion 8%\natrofia marcada en musculos temporales\nnormotermica\naus s/p \N \N 733 856 \N 88 1967 {"studies": [], "medications": [], "specialities": []} +1485 2025-08-17 18:42:28.532941+00 2025-08-17 18:42:28.532952+00 f t colecta uterina /neo en aparato reproductor . proceso degenerativo en columna luumbosacra/cadera mantener apetito con dieta palatable hasta tener resultados de la ecografia abdominal aplico medicacion antes mencionada y solicito de manera urgente realizar ecografia abdominal labradora hembra entera 10 años .\nconsulta por abundante descarga vulvar sanguinolenta . evolucion 5 dias aprox. \npolidipsia poliuria\ndecaimiento\nmantiene apetito pero en menor medida.\nno vomitos ni diarrea\nrevision clinica\naus torax apagado, no ausculto soplo\npalpacion abdominal , marcada algia abdominal en hipo/mesograstrio. abdomen distentido . zona epigastrio s/p\nnormotermica\nnormohidratada\nedema vulvar , se observa descarga vulvar sanguinolenta \natrofia marcada de musculatura del tren posterior. \N \N 301 355 \N 88 1736 {"studies": [], "medications": [{"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1486 2025-08-17 19:02:05.55785+00 2025-08-17 19:02:05.557864+00 f t infeccion en region escrotal. estreñimiento/constipacion sugiero realizar vif vilef por pcr . + perfil general completo realizo pasaje de ringer sc (150 ml)\naplico rani dexa tribiotic.\ndejo medicacion inyectable para el tto antibiotico cada 48 hs por 4 aplicaciones .\nindico comenzar via oral con felilax 3 veces por dia.\nexplico que debe defecar para el domingo a mas tardar, sino habria que evaluar realizar un enema para favorecer evacuacion.\nindico limpiezas de le herida con iodopovidona felino macho comun europeo castrado 8 meses aprox.\nconsulta por claudicacion 2/6 de mpi, decaimiento y costra en region escrotal.\nla tutora me comenta que lo adoptó hace unos 10 15 dias aprox . se lo entregaron castrado (fecha de castracion 31/07)\nestuvo con un cuadro de enteritis, por lo cual una colega le indico giacoccide por 10 dias ( actualmente está tomando esa medicacion )\nno presenta vomitos , pero hace 4 dias que no defeca.\nmantiene el apetito, en consulta comió con muchisimas ganas el alimento humedo mezclado con pollo .\nrevision clinica\naus s/p\ndeshidratacion 8%\nnormotermico 38.2\npalpacion abdominal abdomen distendido, manifiesta dolor en hipogastrio. no puedo evaluar por palpacion profunda pq se pone muy inquieto. vejiga vacia\npresenta una costra ( posiblemente debido a la castracion hace 15 dias ) en la zona del escroto , de tamaño considerable y la rodea un cuadro inflamatorio , ya que se observa eritema y hay dolor pq no se deja maniobrar dicha zona anatomica . \N \N 6354 5170 \N 88 2121 {"studies": [], "medications": [{"id_medicina": "1069", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1487 2025-08-17 19:06:03.639807+00 2025-08-17 19:06:03.639821+00 f t . . se realiza eutanasia acudo nuevamente a domicilio para realizar la eutanasia de la paciente . canino hembra castrada 18 años .\nrevision clinica\nsoplo 6/6 que se proyecta en ambos hemitorax. fremito precordial\ncaquexia\nmantiene apetito ( hiporexia)\ndificultad para incorporarse probablemente debido a alteraciones degenerativas en columna lumbar y cadera \nincontinencia urinaria \N \N 4163 3470 \N 88 2057 {"studies": [], "medications": [], "specialities": []} +1488 2025-08-17 19:18:41.595654+00 2025-08-17 19:18:41.595666+00 f t hepatopatia ? indico alimentacion palatable para estimular el consumo ( pollo a la plancha, sieger lata) realizo orden para ecografia abdominal + perfil hepatico + calcio + fosforo + ionograma serico felino hembra castrada comun europeo 7 años \nconsulta por hiporexia . evolucion 24 hs.\nhace 7 dias la llevo a su vete de cabecera por un cuadro de enteritis, le colocaron una pipeta ( feline full spot) y le sugiriron realizar estudios complementarios .\nactualmente esta defecando normalmente . presentó un vomito bilioso hace unos dias pero me comenta que no come el mismo volumen de alimento que suele comer.\nrevision clinica\naus s/p\npalpacion abdominal abdomen blando , organomegalia en zona epigastrio?\nnormotermica\ndeshidratacion 6-7 %\nresto s/p \N \N 6614 5392 \N 88 2118 {"studies": [], "medications": [{"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "793", "next_application_months": 0}], "specialities": []} +1489 2025-08-17 23:33:10.508268+00 2025-08-17 23:33:10.50828+00 f t shock anafilactico. . aplico unica dosis de dexa. explico posible motivo del cuadro ( picadura/mordedura insecto) canino hembra entera mestiza 2 años .\nconsulta por edema periocular bilateral , edema en ambos carrillos , remarcacion vasos epiesclerales bilateral, prurito generalizado en region de la cabeza. evolucion 14 hs aprox\ncome nutrique\ndesparasitacion interna vencida\nvacunas al dia \nrevision clinica\naus s/p\nnormotermica normohidratada\nausencia edema glotis \N \N 6720 5487 \N 88 2129 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1490 2025-08-18 02:24:23.230841+00 2025-08-18 02:24:23.230855+00 f t Gastritis? Comprar alimento envasado, no suelto. Mañana alimentar con mayor frecuencia porciones más pequeñas. Control según evolución. Ayuno mínimo 1 hora y ofrecer PEQUEÑA porción de alimento para probar tolerancia. Vómitos desde hoy a las 11 de la mañana (hasta las 20 horas vomitó 6 veces, la última hace media hora). Ánimo normal, apetito conservado (tuvo la voluntad de comer, comió poco pero enseguida vomitó). Tomó agua. \nA la revisación dolor abdominal leve, resto s/p. No tiene plantas, no es de romper cosas. Está comiendo kitten de royal canin xq no lo puede separar del otro que tiene, hace 2 semanas compró unik gato castrado y le da mezclado. Compra suelto. \N \N 745 869 \N 91 2132 {"studies": [], "medications": [{"id_medicina": "641", "next_application_months": 0}, {"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "872", "next_application_months": 0}], "specialities": []} +1491 2025-08-18 04:37:41.913097+00 2025-08-18 04:37:41.913109+00 f t Cistitis? Lesiones en miembro por pelea callejera? Comenzar con alimento Urinario hasta tener resultados de orina. Se aplica amoxicilina, dipirona, meloxicam, tramadol. \nIndicó continuar tratamiento de atb, meloxocam, terazosina y cisticalm. La propietaria comenta que lo nota que adopta la posición para orinar pero hace solamente unas gotitas y que hace unos días se peleó con un gato callejero, y desde entonces lo noto más nervioso y que le molesta una de las manos (MAI) \nAl revisar no se evidencia molestia en el miembro con el que claudica, ni dolor abdominal. \nSe indica tomar muestra de orina para un AOC. \N \N 6683 5452 \N 1 2125 {"studies": [], "medications": [], "specialities": []} +1494 2025-08-18 04:41:51.659489+00 2025-08-18 04:41:51.659498+00 f t - - - Se realiza el control periódico de rutina. Y produce el vaciado de glándulas de los sacos anales. \N \N 123 128 \N 1 2073 {"studies": [], "medications": [], "specialities": []} +1495 2025-08-18 04:49:29.718737+00 2025-08-18 04:49:29.71875+00 f t - - Se realiza l vacunación con la triple felina y la antirabica. Se realiza control para evaluar secreción del ojo izquierdo, a la fluoresceina (-) a la lesión córnea pero al parecer no está permeable el conducto nasolagrimal que puede ser el origen de la secreción del ojo. \N \N 3789 3212 \N 1 2070 {"studies": [], "medications": [], "specialities": []} +1496 2025-08-18 04:57:49.41523+00 2025-08-18 04:57:49.415241+00 f t Posible otitis del oído derecho/dolor a la palpación de la columna a nivel toráco-lumbar. Para la próxima consulta tener bozal y que haya más de 2 personas en la casa para poder manejar al paciente. Se indica hacer tratamiento para la otitis y evaluar cómo continuar según evolucion La revisión del paciente se hace muy difícil porque el propietario no sabe manejar a la mascota y no tiene bozal, se realiza uno casero con la correa pero por el tamaño y carácter del mismo no se puede revisar con claridad. \N \N 6630 5405 \N 1 2117 {"studies": [], "medications": [], "specialities": []} +1497 2025-08-18 05:19:16.051152+00 2025-08-18 05:19:16.051164+00 f t Cistitis? - Se indica hacer tratamiento con melixicam, terazosina y cisticalm. Tratar de mejorar la convivencia entre los 2 gatos y hacer un chequeo de orina en un mes. A la revisacion clínica no evidencia ninguna particularidad. Lo que se ve que que con la gata que convive lo ataco reiteradas veces durante la visita. En los últimos análisis de orina los resultados son normales. \N \N 5000 4131 \N 1 2063 {"studies": [], "medications": [], "specialities": []} +1498 2025-08-18 05:20:25.611491+00 2025-08-18 05:20:25.611502+00 f t - - Se realiza la vacunación con sextuple y se corta las uñas. Eog: s/p \N \N 562 659 \N 1 2050 {"studies": [], "medications": [], "specialities": []} +1499 2025-08-18 15:11:53.762152+00 2025-08-18 15:11:53.76216+00 f t Vacunación triple felina Sin Desparasitado con Nexgard Spot on Vacunacion \N \N 6451 5252 \N 68 2080 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}], "specialities": []} +1500 2025-08-18 15:14:14.212286+00 2025-08-18 15:14:14.212295+00 f t Atopia Desparasitacion interna y externa.\nRealizar hemograma de control porq hay leucopenia en uno previo. Prednisolona, control dietario y suplemento con omega 3 (cornalitos 1 cada 3 días) Paciente con alopecia, sobrepeso leve. Lamido compulsivo de miembros anteriores que genera pododermatitis. Prurito \N \N 6597 5381 \N 68 2098 {"studies": [], "medications": [], "specialities": ["71"]} +1501 2025-08-18 15:15:24.24666+00 2025-08-18 15:15:24.246672+00 f t Neoplasia. Tiene pronóstico malo. Prednisolona Postrado, escaras. Dolor \N \N 2792 2462 \N 68 2128 {"studies": [], "medications": [{"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +1502 2025-08-18 18:47:48.661666+00 2025-08-18 18:47:48.661676+00 f t Vacunación anual. Sin Tomar gabapentina, previo cualquier otra atención veterinaria. Paciente saludable.\nCarácter indocil. \N \N 3451 2945 \N 68 2067 {"studies": [], "medications": [{"id_medicina": "1152", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1504 2025-08-19 19:02:07.061152+00 2025-08-19 19:02:07.061166+00 f t . CONCLUSIONES:\nANIMALITO INQUIETO. ESTUDIO COMPLICADO\nLas imágenes observadas son sugerentes de:\nHígado: Hepatomegalia: Hiperplasia difusa inflamatoria / infecciosa /\ninfiltrativa\nEstomago: Gastritis aguda. Cuerpo extraño gástrico?\nIntestinos: Enteritis inflamatoria / infecciosa / infiltrativa. Signos\nobstructivos leves. Se aconsejan controles posteriores\nTestículos: Criptórquido unilateral\nNo se visualiza líquido libre ni reacción peritoneal en cavidad\nabdominal.\nSe sugiere correlacionar con otros estudios complementarios y con la\nevolución clínica del paciente, según opinión del médico actuante. . . \N \N 1328 1339 \N 90 2136 \N +1507 2025-08-19 22:45:12.97448+00 2025-08-19 22:45:12.974496+00 f t Irc? Neo? Colecta uterina? Control cardiologico, ecografia de abdomen y chequeo general completo y de orina. Destartraje Corregir dieta, reanudar plan sanitario La tutora relata que presentó un vómito y diarrea de color marrón claro, Supone que se debe a que le dio zapallito en la Dieta. También relata que toma mucha agua y hace mucho pis, que lo ve normal\nSensorio levemente deprimido mucosas brillantes algo pálidas abundante sarro Dental, hepato/ esplenomegalia? T 38 C, score corporal4/5 \N \N 1794 1705 \N 21 2148 \N +1508 2025-08-19 23:19:45.42498+00 2025-08-19 23:19:45.424993+00 f t Conducta compatible con un diagnóstico de estado ansioso, que se debe seguir evaluando, una vez implementadas las modificaciones del ambiente y actividad de juego con el paciente. Al momento de jugar con Milo, sacar del mismo ambiente a Popy, para que no interfiera. Reordenar los elementos de uno y de otro, que no estén juntos, que cada uno tenga su espacio. Ambiental: Agregar una bandeja sanitaria, ya que son dos felinos que conviven, y hay sólo dos bandejas. Ubicarlas estratégicamente.\nUtilización de feromonas difusor. Apagarlas un vez por semana.\nConductual: En los momentos que maulla y se acerca a la tutora, invitarlo a jugar, con elementos que lo alejen de ella y lo pongan en movimiento, en lugar de invitarlo a subir a su falda. Refiera la tutora, que hace tiempo maulla en demasía, sin causa aparente. Presenta conducta de agresión defensiva, ante el acercamiento de personas ajenas al hogar, que intentan acariciarlo. También lo hace cuando su tutora distraída, realiza movimientos con sus brazos. Se esconde cuando llega gente desconocida, en muchas ocasiones después de haberlos marcado con sus feromonas faciales en las piernas. \N \N 165 174 \N 105 2144 \N +1509 2025-08-20 00:14:03.387179+00 2025-08-20 00:14:03.387192+00 f t Constipación, insuficiencia renal crónica Manejo alimentario+ estimulación de hidratación oral+alimento renal Maropitant+dieta húmeda+zapallo+vaselina (3 días)+kualcovit Deshidratación leve, constipación desde hoy, vómitos, disnea, hiporexia \N \N 6907 5649 \N 92 2163 \N +1510 2025-08-20 00:21:33.096154+00 2025-08-20 00:21:33.096166+00 f t Traumatismo en codo derecho Rx L-L codo y hombro derecho Tramadol+meloxivet Dolor en mad con claudicación de 3 grado \N \N 6688 5457 \N 92 2126 \N +1512 2025-08-20 02:51:40.062682+00 2025-08-20 02:51:40.062692+00 f t Vacunación Se recomienda aplicar un refuerzo de la vacuna triple felina debido a que "Mecha" no ha sido vacunada con anterioridad. Rectifico: Cultivac felinos EOG SP \N \N 4202 3506 \N 89 1945 \N +1513 2025-08-20 02:53:45.748508+00 2025-08-20 02:53:45.748519+00 f t Vacunación con triple felina (Cultivac). Próxima vacunación en 21d. - EOG SP \N \N 5985 4885 \N 89 2002 \N +1514 2025-08-20 03:00:21.219265+00 2025-08-20 03:00:21.219278+00 f t Gastroenteritis Se recomienda colocar bozal para la próxima visita veterinaria. Se administra Tramadol 2mg/kg y ranitidina 1mg/kg SC.\nSe indica dieta estricta durante 5 días (pollo a la plancha + puré de zanahoria) y enterogermina x 5 días.\nEvaluar evolución.\nEn caso de no evolucionar favorablemente se indica la realización de una ecografía abdominal. Los tutores refieren que "Huma" se comió un pedazo de pizza el día sábado y desde entonces presenta diarrea, decaimiento y anorexia progresiva.\nEOG: No se evidencia decaimiento, "Huma" se encuentra muy asustada al momento de la consulta (por experiencias previas en veterinarias). Está muy alerta y gruñe.\nEOP: Abdomen levemente distendido, molestia a la palpación presión. \N \N 6853 5598 \N 89 2146 \N +1677 2025-09-09 16:27:34.725592+00 2025-09-09 16:27:34.725604+00 f t . . -. . \N \N 7483 6153 \N 90 2291 \N +1515 2025-08-20 03:03:08.655356+00 2025-08-20 03:03:08.655364+00 f t Vacunación anual "Tyrael" se estresa mucho al momento de la consulta veterinaria y se vuelve muy agresivo. Se recomienda la administración de Gabapentina 100mg 1 h y media previo a la visita veterinaria. + Cultivac felinos.\nSe indica PGC + O y Ecografía abdominal para control de FLUTD. EOG SP \N \N 6635 5410 \N 89 2123 \N +1516 2025-08-20 10:37:31.168866+00 2025-08-20 10:37:31.168874+00 f t Gastroenteritis infecciosa. Mantener temperatura con soporte externo y dar agua con azúcar en pequeños volúmenes mientras asiste a un centro. Requiere atención veterinaria presencial urgente. Paciente sin vacunas ni desparasitacion, anorexia de dos días. Vómitos, diarrea con sangre, dolor abdominal. Letargia y deshidratación. \N \N 6910 5652 \N 68 2166 \N +1517 2025-08-20 10:38:28.988265+00 2025-08-20 10:38:28.988277+00 f t Neoplasia y síndrome de compartamentalizacion. Sin Eutanasia Postración, edema y dolor. \N \N 2792 2462 \N 68 2134 \N +1518 2025-08-20 17:38:17.951224+00 2025-08-20 17:38:17.951233+00 f t Enteritis . Diafin+dieta antidiarreica+giacoccide verde 10dias. EOG normal. Diarrea con sangre \N \N 6893 5636 \N 92 2164 \N +1519 2025-08-20 18:21:07.895908+00 2025-08-20 18:21:07.895921+00 f t Espondilosis deformante en T11-T12 S/R Continúa con colotrin pasta, dejo indicado ciclo de meloxicam entre 3-5 días si hay crisis de dolor (sino no). Rx: espondilosis deformante en T11-T12, MF en colon desc. A la revisación no manifiesta dolor en la palpación presión de columna. La ve normal, solo no hace saltos largos. \N \N 2144 4184 \N 91 2142 \N +1520 2025-08-21 00:47:58.644089+00 2025-08-21 00:47:58.644104+00 f t Vacunación y certificado. Confección de certificado antirrábico oficial, lectura de microchip (xq no presentan cert de implantación) y certificado de desparasitación int y ext. S/tto Vacunación antirrábica y solicitan certificado antiparasitario interno y externo para viajar a Uruguay. El de salud se lo haría su veterinaria de Uruguay (?) \N \N 6970 5698 \N 91 2174 \N +1521 2025-08-21 09:38:22.669638+00 2025-08-21 09:38:22.669651+00 f t Gastroenteritis AMF +AS Diafin+cerenia+kualcovit+giacoccide+dieta antidiarreica Vómitos y diarrea oscura. Anorexia. \N \N 6995 5720 \N 92 2178 \N +1522 2025-08-21 13:20:52.131573+00 2025-08-21 13:20:52.131582+00 f t Dermatitis atópica. Control en 10 días. Comenzar con Prednisolona 10 mg (comp) 1/4 c/24 hs x 5 días. Luego 1/8 comp c/24 hs y posteriormente 1/8 comp c/48 hs. Consulta x lamido excesivo en gral. Rascado en zona abdominal y cara. EOG normal. Sed normal, apetito disminuído, micción y defecación normales. Auscultación cardíaca soplo mitral 5/6 (la tutora informa que tiene miocardiopatía hipertrófica). Palpación abdominal sin particularidades. Tumoración en mentón con pérdida de colmillos (osteoma). Ganglio submandibular derecho inflamado. Leve inflamación MAI. \N \N 6885 5627 \N 70 2159 \N +1523 2025-08-21 13:37:55.106989+00 2025-08-21 13:37:55.107002+00 f t DAPP. Control en 15 días. Dexa 0.5 ML + Triobiotic 0,5 ML SC. Continúa con Cefalexina 500 1/4 comp c/12hs x 10 días y prednisolona 10 MG dosis decrecientes: comienza con 1/4 comp x día x 5 días. Luego 1/8 comp x día x 5 días más y finaliza con 1/8 comp c/48 hs x una semana. Control de pulgas a todos los animales y al ambiente. Consulta x lamido excesivo y lesión en pecho. EOG normal. Sed, apetito, micción y defecación normales. Auscultación cardíaca normal. Palpación abdominal normal. \N \N 6880 5622 \N 70 2155 \N +1524 2025-08-21 16:37:23.556108+00 2025-08-21 16:37:23.556116+00 f t . CONCLUSIONES:\nLas imágenes observadas son sugerentes de:\nHígado Hepatopatía difusa metabólica / infiltrativa\nIntestinos: Enteropatía inflamatoria / infecciosa / infiltrativa\nNo se observa líquido al momento del estudio.\nSe sugiere correlacionar con otros estudios complementarios y con la\nevolución clínica del paciente, según opinión del médico actuante. . . \N \N 6845 5589 \N 82 2147 \N +1528 2025-08-24 00:57:27.214091+00 2025-08-24 00:57:27.214103+00 f t Control semestral sin alteraciones. Hepatoprotector. Desparasitacion. Gerente, tiene chequeo completo previo sin alteraciones. Salvo parasitosis con guardias. Leve sobrepeso, y auscultación normal. Valores hepaticos en rango y en ecografía un poco de barro biliar. Toma de muestra para perfil completo. Y orden para ecografía. \N \N 6869 5610 \N 68 2150 \N +1530 2025-08-25 00:00:46.880154+00 2025-08-25 00:00:46.880168+00 f t Enteritis . Otitis OI. Cushing? AOC RELACION CORTISOL CREATININA Diafin + dieta antidiarreica+ giacoccide+ otovier NF EOG: otitis OI. Diarrea acuosa oscura. Coprofagia. \N \N 7153 5860 \N 92 2230 \N +1531 2025-08-25 00:05:15.971438+00 2025-08-25 00:05:15.971446+00 f t Caída desde altura. Observación las primeras 48 hs Tribiotic+ meloxicam EOG normal.caida desde un segundo piso. Pequeña laceracion en mentón. orina y defeca normal. Apetito normal. \N \N 7198 5902 \N 92 2223 \N +1532 2025-08-25 00:14:32.227233+00 2025-08-25 00:14:32.227242+00 f t IRC Continuar con fluidotx + recovery y comida húmeda renal+ estimulación de hidratación oral Fluidoterapia cerenia tribiotic meloxivet tramadol vit B Paciente geronte. Vómitos, anorexia, deshidratación moderada, dolor a la palpación \N \N 7191 5896 \N 92 2226 \N +1533 2025-08-25 00:20:22.456196+00 2025-08-25 00:20:22.456208+00 f t Alopecia neurogénica . Enriquecimiento ambiental EOG normal . Alopecia en región axilar \N \N 5239 4305 \N 92 2209 \N +1534 2025-08-25 00:32:52.676633+00 2025-08-25 00:32:52.676642+00 f t Neoplasia? Insuficiencia renal? Derivación urgente a hospital. Se deriva para internación. Atendido previamente por un colega a domicilio por cuadro de constipación y hoy por la mañana en hospital 24 hs por cuadro de decaimiento e hipotermia. Le dieron medicacion inyectable EV (No saben cual).\nIndicaron repetir fluidoterapia. Tiene ecografia donde se vieron riñones poliquisticos, higado reactivo y estomago inflamatorio.\n Paciente con sensorio deprimido, mucosas pálidas, deshidratacion 8%, temp. 33.8 °C. Se palpa en epigastrio dorsal masa dura, movil, irregular, de gran tamaño. \N \N 7183 5888 \N 99 2227 \N +1535 2025-08-25 00:39:39.521873+00 2025-08-25 00:39:39.521882+00 f t Otitis Se reitera sugerencia de consulta con etologia. Prednisolona 20 mg, con retiro de dias alternos. Paciente indocil, dificil de revisar.\nSe medica previamente con mepromazin.\nNuevamente cuadro de prurito en pidos pero con menor intensidad que en consulta anterior.\nOidos limpios, sin cerumen. Leve eritema. \N \N 4325 3603 \N 99 1944 \N +1536 2025-08-25 13:01:35.455669+00 2025-08-25 13:01:35.455681+00 f t … Es tranquilo y se realiza con facilidad Suero subcutáneo Paciente se encuentra tranquilo, tiene una orden de suero subcutáneo por enfermedad renal 4. \N \N 6619 5396 \N 112 2108 \N +1537 2025-08-25 15:39:31.841345+00 2025-08-25 15:39:31.841359+00 f t … enfermedad renal tipo 4 Tratarla con tranquilidad y suavidad y que esté con la mayor calidad de vida dentro de sus posibilidades. Fluidoterapia diaria Paciente renal Saia, los dueños cuentan que la vieron un poco decaída y no se alimento, entonces le van a dar pollo para estimularla.\n\nLe están dando ensure como suplemento y la fluidoterapia correspondiente, todo para el beneficio de Saia y su calidad de vida. La terapia se llevó a cabo correctamente. \N \N 6619 5396 \N 112 2105 \N +1538 2025-08-25 15:43:04.655431+00 2025-08-25 15:43:04.655442+00 f t Control de rutina Próxima extracción de sangre tener 2 asistentes para poder sacarle sangre. Y buscar una alternativa para sostenerlo. Es difícil de sostener y se vuelve agresivo.\n\nPróxima maniobra contar un ayuda extra además del dueño.\n\nEn el peor de los casos sedarla Extracción de sangre. No se llevó a cabo por indocilidad y agresividad del paciente. Gato. Control \N \N 7082 5794 \N 112 2197 \N +1559 2025-08-27 14:37:15.975684+00 2025-08-27 14:37:15.975697+00 f t . . . Se aplica triple felina + atr. Eog spp. \N \N 6545 5342 \N 80 2095 \N +1539 2025-08-25 21:38:03.784227+00 2025-08-25 21:38:03.78424+00 f t Sobrepeso, endocrinopatia? Indico dieta natural más racional de ultraprocesado en la adaptacion Dieta natural acorde a las necesidades del paciente La tutora me comenta que es un paciente en tratamiento por una dermatitis, Que solo lo alivia el corticoide y por eso está con sobrepeso. Posible Cushing, en breve consultan con Endocrinólogo. Come ultra procesado all Prince de cordero más ese mismo alimento pero húmedo más pollo y zanahoria en forma eventual. No supo comentarme en gramos qué cantidad le da de cada cosa por día. Pido fotos de la mascota para establecer un score corporal y pido por favor pesarlo todas las semanas una vez por semana \N \N 4848 4007 \N 21 2202 \N +1540 2025-08-25 21:42:59.322196+00 2025-08-25 21:42:59.32221+00 f t Escabiosis Control en 48hs y repetir med inyectable, de acuerdo a la evolución seguir tto oral Penicilina, enrofloxacina, dexametasona,doramectina Paciente de aproximadamente 2 a 3 años, Lesiones extensas en dorso del lomo cabeza cuello miembros anteriores y posteriores rascado continuo, Compatibles con escabiosis Y lesion ulcerativa posterior por rascado. Bajo de peso, score 2/5 , buen animo y comiendo \N \N 7264 5961 \N 21 2236 \N +1541 2025-08-26 01:28:57.264068+00 2025-08-26 01:28:57.264083+00 f t Vacunación . . EOG s/p vacunación antirrábica.\nTuvo una caída hace poco con golpe en la cabeza y sx neuro. La atendieron en una vete del barrio y se recuperó bien. \N \N 4789 3965 \N 91 1815 \N +1549 2025-08-27 00:16:47.522162+00 2025-08-27 00:16:47.522171+00 f t Neoplasia abdominal . . Telemedicina. Se explica que por el informe de la ecografia no esta indicada la cirugia. El tutor esta de acuerdo. Se comunicara si la paciente comienza con sintomatologia \N \N 313 372 \N 80 2025 \N +1550 2025-08-27 00:21:36.597867+00 2025-08-27 00:21:36.597877+00 f t Dapp Aplicar pipeta todos los meses. Aplico dexametasona Prurito principalmente en la cabeza. Tuvo pulgas y le colocaron pipeta. \N \N 6447 5247 \N 80 2082 \N +1552 2025-08-27 00:23:51.498492+00 2025-08-27 00:23:51.498508+00 f t Enfermedad inflamatoria intestinal. . . Triple felina y atr. Se palpa molestia abdominal, ligera inflamacion intestinal. Suele tener diarreas hace 2 meses. Indico coproparasitologico, luego pedir control. \N \N 6545 5340 \N 80 2096 \N +1554 2025-08-27 10:52:14.728749+00 2025-08-27 10:52:14.728761+00 f t Sobrepeso Vacunación antirabica Disminuir ración Auscultación normal, mucosas rosa\nSe palpa organomegalia ¿hepatica? Sobrepeso \N \N 7031 5747 \N 68 2183 \N +1555 2025-08-27 10:55:15.714535+00 2025-08-27 10:55:15.71455+00 f t Parasitosis Coproparasitologico de control. Desparasitacion con refuerzos en el ciclo del parásito. Diarreas con ascaris adultos. Inclusive sangre.\nBajo de peso. Resto de parámetros sin particularidades \N \N 5189 4266 \N 68 2220 \N +1560 2025-08-27 14:40:58.605606+00 2025-08-27 14:40:58.605619+00 f t Infeccion urinaria por retencion de orina (pasa mucho tiempo acostado) . Amoxicilina con clavulanico Telemedicina. Analisis orina: abundantes globulos blancos y bacterias, escasos cristales de estruvita, densidad normal. Relacion proteina/creatinina normal. Analisis de sangre spp. Castrado. Se indica amoxicilina con acido clavulanico 1000 mg cada 12 hs por 10 dias. En 7 dias recolectar nueva muestra y pedir control.\nAl paciente lo ven mas animado, esta caminando mas. Esta tomando Gerioox. \N \N 5889 4811 \N 80 2158 \N +1561 2025-08-27 14:43:21.401007+00 2025-08-27 14:43:21.401022+00 f t Micosis, Alopecia psicogenica . . Telemedicina. Tiene una zona alopesica redondeada bien delimitada que le genera prurito. Explico que debe evaluarse en persona. No medico. \N \N 5239 4305 \N 80 2169 \N +1562 2025-08-27 14:49:35.993524+00 2025-08-27 14:49:35.993537+00 f t DAPP Control en dos semanas conmigo Aplique dexametasona. Indico prednisolona 10 mg (3/4 comp 1er dia, luego 1/2 los dos dias siguientes) + rumiclamox 250 mg (1/2 comp cada 12 hs, por el momento no suspender hasta indicacion medica). Hace unos dos meses comenzo a rascarse la cara, hoy presenta piodermia. Muy dificil de revisar. Come old prince de pollo a bolsa abierta. Ultima pipeta contra pulgas hace mas de un mes, convive con un gato. Sin eventos estresantes. \N \N 7056 5772 \N 80 2194 \N +1564 2025-08-27 14:57:08.116505+00 2025-08-27 14:57:08.116514+00 f t Odontolitiasis severa . Indique rumiclamox 250 mg (1/4 cada 12 hs) Imposible revisar. A la tutora se le indico gabapentina antes de acudir al domicilio pero no la compro. Presenta sialorrea maloliente de un solo lado. Debera pedir nuevo turno y darle gabapentina. \N \N 6788 5547 \N 80 2137 \N +1566 2025-08-27 19:28:07.344076+00 2025-08-27 19:28:07.344086+00 f t Ingesta de pelos, posible tricobezoar Indique ecografia abdominal y perfil general completo con T4 Total. Cambiar alimento a royal canin hairball Aplique solucion fisiologica sc 70 ml + cerenia + ranitidina + dipirona. Paciente dificil de revisar. Pelo muy largo, tuvo rastas y se las cortaron. Sin embargo pelo en buen estado, buen estado general. Tuvo vomitos el sabado (me muestran fotos, los vomitos contienen pelo). Lo llevaron a una guardia y le aplicacion cerenia y ranitidina. Paso toda la semana sin vomitos. Hoy sabado nuevamente con vomitos. Mucosas rosadas. Abdomen blando pero no me permite palpar mucho por agresividad. Nunca perdio el apetito. \N \N 7131 5835 \N 80 2211 \N +1567 2025-08-27 19:31:56.544048+00 2025-08-27 19:31:56.544061+00 f t Gastritis?? Dar alimentos blandos, agregar vaselina liquida. Si vuelve a vomitar pedir un control Aplique solucion fisiologica 60 ml + ranitidina + metoclopramida Vomitos hace 5 dias, con apetito conservado. Hoy no tuvo vomitos en todo el dia. Alerta, buen estado general. Mucosas rosadas, paladar blando rosado. se palpa algo de materia fecal dura en abdomen, abdomen blando. Come excellent. Vacunas vencidas. Desparasitacion vencida. \N \N 7305 5993 \N 80 2250 \N +1568 2025-08-28 21:56:34.392538+00 2025-08-28 21:56:34.392548+00 f t hipertiroidismo continuar tratamiento indicado se comienza con medio comprimido de metimazol cada 12 hs\nse indica centello o eco de tiroides, analisis de orina, chequeo cardiologico. paciente con perdida de peso, nerviosismo \N \N 6909 5651 \N 98 2165 \N +1569 2025-08-29 00:34:08.039555+00 2025-08-29 00:34:08.03957+00 f t SUF Control en 48hs. Meloxicam+tramadol+urovier+ enriquecimiento ambiental+cambio de alimentación 1 mes+ alimento húmedo+ estimulación de la hidratación. EOG normal. SUF. Sin obstrucción uretral.Disuria. \N \N 7259 5955 \N 92 2231 \N +1570 2025-08-29 00:37:18.338161+00 2025-08-29 00:37:18.338173+00 f t Dermatitis en lateral del cuello por lamido. Dermatitis plantar por lamido. . Tribiotic+meloxicam+enriquecimiento ambiental EOG normal. Dermatitis en lateral del cuello. Claudicación de primer grado en mad. Infección en almohadilla plantar de MAD. \N \N 6907 5957 \N 92 2232 \N +1556 2025-08-27 10:57:25.472448+00 2025-08-27 10:57:25.472457+00 f t Dieta rica en fósforo, orina alcalina. Indico cultivo y antibiograma. Control con resultado de cultivo. Suplemento para acidificar orina, uso de proteínas ricas en calcio. Cistitis a repetición. Cristales de estruvita, tratado con meloxicam y floxaday. \N \N 4334 5903 \N 68 2224 \N +1615 2025-09-01 11:41:59.21221+00 2025-09-01 11:41:59.212222+00 f t - - Se vacuna con triple felina y antirabica Eog: S/P \N \N 5640 4620 \N 1 1955 \N +1627 2025-09-01 12:29:04.050952+00 2025-09-01 12:29:04.050961+00 f t - - Se indica esperar a que se desarrolle un poco más y evaluar nuevamente. Al momento de la revisacion no evidencia ninguna particularidad, es una cara de porte pequeño pero no tiene una mala condición corporal. \N \N 7021 5741 \N 1 2180 \N +1637 2025-09-03 04:18:32.49211+00 2025-09-03 04:18:32.492122+00 f t Fractura en MPI Hacer rx y cx Luego de tto inyectable continua continúa con tto oral paralelo a concretar la RX Atropellado, sin tutores a cargo , crepitación en MPI \N \N 6019 4911 \N 94 2023 \N +1571 2025-08-29 00:38:28.462443+00 2025-08-29 00:38:28.462456+00 f t Mejoría . Repito meloxicam+tribiotic Mejor. \N \N 6907 5957 \N 92 2254 \N +1572 2025-08-29 00:39:38.162709+00 2025-08-29 00:39:38.162718+00 f t IRC . Eutanasia EOG: deprimida. Deshidratación severa. Anorexia. \N \N 7191 5896 \N 92 2246 \N +1573 2025-08-29 13:19:56.21249+00 2025-08-29 13:19:56.212503+00 f t Cardiomiopatia. Artritis por alteracion conformacional y patología patelar.\nNeoplasia mamaria. Realizar consulta cardiológica. Descenso de peso, protector articular y consideraciones de tratamiento quirúrgico tanto para neoplasia como rodilla. Claudicación tren posterior e inestabilidad. Hay luxación parcelar derecha y compensación izquierda. \nSobrepeso.\nEstá en celo. Neo mamario.\nReflejo tusigeno positivo, con vómitos esporádicos post ingesta y/o biliares.\nSoplo IV/VI. \N \N 7084 5796 \N 68 2200 \N +1574 2025-08-29 13:21:23.874379+00 2025-08-29 13:21:23.874391+00 f t Fragmento de uña en pelo enredado. Previa revisión usar sedantes por lo indocil en consulta. Control que no claudique o lamido compulsivo. Clínicamente sin cambios, hay por pelos fragmento de uña u callo de pulpejo. \N \N 227 247 \N 68 2272 \N +1575 2025-08-29 13:24:25.480236+00 2025-08-29 13:24:25.480246+00 f t Cuadro infeccioso severo. Ofrecer comida casera para tentar e hidratar. Dexametasona, tribiotic si no come requiere atención y radiografía de tórax. El pronóstico es malo si no empieza a comer hoy. Paciente anoréxico, con bajos score corporal. Callejero rescatado. Lesiones supurativas en granuloma de oído derecho, secreción bilateral purulenta en ambas fosas nasales. Mucosas pálidas. Se auscultan rales húmedos. \N \N 5342 4386 \N 68 2283 \N +1576 2025-08-29 15:19:36.052165+00 2025-08-29 15:19:36.052177+00 f t Gastritis? Estrés? Desparasitar y controlar x 48 hs, si no evoluciona bien, pedir turno de ecografía. Si evoluciona bien, la semana que viene ya podríamos vacunar. Se indica desparasitación con nexgard combo, ranitidina y gastrointestinal en pouch x 4/5 días (se acuerdo a evolución).\nDejo orden de ecografía por si la evolución no es buena, pero sospecho que va a mejorar. Come excellent y a veces sobrecitos fancy feast. Antes de ayer vomitó alimento parcialmente digerido, ayer solo secreciones gástricas, del excellent está comiendo menos de la mitad de lo habitual y se come un sobre por día con ganas. Hace 2 semanas se mudaron y se estresó mucho, pero ahora lo ve bien de ánimo, recorre todo el dpto sin problemas. Hace más de 6 meses q no desparasita y no está vacunado, quiere ponerse al día con eso. \N \N 7400 6081 \N 91 2275 \N +1577 2025-08-29 15:27:12.836887+00 2025-08-29 15:27:12.836896+00 f t Artrosis/espondilosis/estrechamiento en columna TL? Artrosis cadera? Piso de goma eva xq se resbala en el piso de la casa. Continúa con tramadol 75 mg 1/2 compr cada 8 o 12 horas según dolor. Explico q espero buena respuesta de la dexa, si no se para debe avisar. El artrosan habría q reaplicarlo en una semana o en su defecto pasar a antiartrósico oral, todo de acuerdo a rx. Mdc: no se para. Tiene 16 años, Beagle no castrada. No toma medicación estable, le estuvo dando 10 mg de prednisolona cada 48 hs x un cuadro de piel y ahora q la vio con dolor 18.75 mg tramadol (ambos automedicación empírica). Posible trauma. Antes de eso caminaba bien. \nNo manifiesta dolor a la palpación de columna, pero es bastante hiperreactiva a toda maniobra, los movimientos cervicales no los hago yo x ese motivo pero no tiene limitaciones en el movimiento. Dolor a la extensión de ambas articulaciones coxofem, propiocepción disminuída en ambos MP. \N \N 7432 6115 \N 91 2277 \N +1578 2025-08-29 19:30:54.113292+00 2025-08-29 19:30:54.113305+00 f t Vpmitos recurrentes por mal manejo de la alentacio Dar solo cantidad necesaria bien repartoda Se indican mejoras para la alimentacion de la mascot Vomitos recurrentes \N \N 999 1095 \N 14 2276 \N +1579 2025-08-31 01:39:38.05871+00 2025-08-31 01:39:38.05872+00 f t Fractura patológica?? - Los propietarios deciden euranasiarla Los propietarios viendo el caso de la perra, que posiblemente sea una fractura patológica del fémur, deciden no operarla y dormirla. \N \N 7058 5774 \N 1 2304 \N +1580 2025-08-31 16:22:48.824333+00 2025-08-31 16:22:48.824345+00 f t . sugiero cambio de alimento por uno bajo en calorias indico desparasitacion interna con moxidex plus repitiendo a los 15 dias . canino hembra castrada mestiza.\ndesparasitaciones internas vencidas\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermica \nnormohidratada\ncc 4-5 \N \N 183 191 \N 88 2263 \N +1581 2025-08-31 16:25:30.860128+00 2025-08-31 16:25:30.860141+00 f t . . indico desparasitacion con moxidex plus repitiendo a los 15 dias. felino macho castrado comun europeo. 4 kg aprox\ncome pro plan gato adulto\nrevision clinica\naus s/p\npalpacion abdominal, abdomen blando s/p\nnormotermico \nnormohidratado \N \N 183 191 \N 88 2262 \N +1582 2025-08-31 16:29:50.44618+00 2025-08-31 16:29:50.44619+00 f t - sugiero reanudar plan de vacunacion ( al menos antirrabica) y en la proxima visita indicar antiparasitarios internos realizo orden para ecografia abdominal + perfil general completo con orina como complementarios para control de medio interno por su edad felino hembra comun europeo castrada 8 años 4 kg\ncome excelent gato adulto\nvacunas y desparasitaciones internas vencidas\nrevision clinica\naus s/p\nnormotermica normohidratada\nsin signos clinicos\nbuena cc\npalpacion abdominal, abdomen blando , organomegalia en epigastrio? \N \N 7319 6015 \N 88 2256 \N +1583 2025-08-31 16:39:20.1003+00 2025-08-31 16:39:20.10031+00 f t alternaciones a nivel hepatico, renal? realizo orden para ecografia abdominal + perfil general completo con orina.\nsugiero aplicacion de vacuna antirrabica . en proxima visita, indicar desparasitacion interna indico comenzar con ranitidina en gotas cada 12 hs por 7 dias felino hembra comun europeo castrada 4.8 kg 8 años\ncome alimento excelent\nplan sanitario , vacunas y desparasitaciones internas vencidas \nconsulta porque anoche la paciente presentó un vomito de coloracion rosada . mantiene apetito y animo desde ese episodio. no volvio a vomitar.\nrevision clinica\naus soplo en hemitorax izquierdo? no pude confirmarlo ya que la gata comenzo a inquietarse con la revision. \nnormotermica normohidratada\npalpacion abdominal, organomegalia en epigastrio? distension pospandrial? \nestado alerta \N \N 7319 6004 \N 88 2252 \N +1584 2025-08-31 16:49:42.737644+00 2025-08-31 16:49:42.737654+00 f t enteritis, parasitaria ? por consumo de leche ? sugiero no administrar lacteos \nsugiero castrar indico dieta de pechuga de pollo a la plancha con zanahoria hasta que normalice deposiciones por 3 dias consecutivos , luego cambio paulatino al royal kitten\nindico desparasitacion con moxidex plus repitiendo a los 15 dias felino macho entero 8 meses aprox 4.5 kg\nconsulta porque presento una deposicion liquida con trazas de sangre.\nlo adopto hace 10 dias \ncome royal canin kitten\ntiene realizado pcr de vif vilef ( ambos no reactivos)\nrevision clinica\naus s/p\nnormotermico normohidratado\ncc muy buena \npalpacion abdominal , abdomen blando , asas intestinales inflamadas\nla tutora le estuvo dando leche y en el domicilio realiza una deposicion liquidas explosiva sin sangre.\nestado alerta\nexcelente animo, conserva apetito, juega , no vomitos \N \N 7243 5944 \N 88 2233 \N +1616 2025-09-01 11:46:49.079924+00 2025-09-01 11:46:49.079934+00 f t - - Se vacuna con triple felina y antirabica Eog: s/p \N \N 5640 4619 \N 1 1956 \N +1628 2025-09-01 12:31:50.300909+00 2025-09-01 12:31:50.300919+00 f t IRC, Neo en abdomen? - Se indica hacer estudios y evaluar la posibilidad de euranasia. Paciente se encuentra postrado, con respiración taquipneica, muy decaído con leve hipotermia, prácticamente no responde a estímulos. Se indica al propietaria hacer estudios complementarios pero ella comenta que no puede costear nada más. \N \N 7053 5770 \N 1 2190 \N +1585 2025-08-31 17:18:05.664161+00 2025-08-31 17:18:05.664171+00 f t hepatomegalia ? enfermedad degenerativa osteoarticular en articulacion coxofemoral . sugiero realizar complementarios para evaluar medio interno. realizo orden para ecografia abdominal + perfil general completo con orina + upc canino macho castrado 12 años 30 kg pitbull\ncome vital can cordero\nconsulta porque se orina en cualquier lado ( antes no lo hacia). \nrevision clinica\naus s/p\npalpacion abdominal , organomegalia en epigastrio abdomen blando\nnormotermico\nnormohidratado\natrofia de musculatura del tren posterior. dificultad para incorporarse, dolor a la palpacion en cadera. imposibilidad para realizar extension de cadera , dolor.\natrofia musculos temporales\ncome normalmente. le da pregabalina por la noche por indicacion de otro colega. \N \N 6789 5548 \N 88 2138 \N +1586 2025-08-31 17:22:23.405601+00 2025-08-31 17:22:23.405611+00 f t enteritis sugiero no darle este tipo de alimentos indico dieta de pollo con zanahoria hasta que defeque normalmente , luego cambio paulatino a su balanceado canino macho entero 2 años 8.5 kg\nconsulta por deposiciones liquidas sin sangre. evolucion 12 hs . no vomitos, excelente animo, come con ganas.\nayer le dieron una galletita dulce .\nrevision clinica\naus s/p\npalpacion abdominal , abdomen blando, asas intestinales inflamadas. leve algia\nnormotermico\nnormohidratado \N \N 6789 5644 \N 88 2160 \N +1587 2025-08-31 17:26:03.230756+00 2025-08-31 17:26:03.230768+00 f t . recomiendo administrar gabapentina 2 hs antes de la extraccion de sangre ya que resulto imposible realizar la maniobra indico desparasitacion interna con moxidex plus repitiendo a los 15 dais felino macho castrado comun europeo 4.5 kg aprox\nvisita a domicilio para revision clinica + extraccion de sangre control.\npaciente muy asustadizo\naus s/p\nnormotermico normohidratado\npalpacion abdominal s/p \N \N 6814 5564 \N 88 2143 \N +1588 2025-08-31 17:29:27.3378+00 2025-08-31 17:29:27.33781+00 f t - sugiero administrar taxagon previo a la extraccion de los puntos en morro retiro puntos del abdomen , tiene 2 puntos de otras 2 neos pequeñas que le retiraron en la misma cirugia, pero resulto imposible retirar dichos puntos . canino hembra mestizo 27 kg castrada \nacudo a domicilio para extraer los puntos de una cirugia en la cual le extrajeron una neo en ventral del abdomen hace 15 dias en panda- \N \N 5987 4887 \N 88 2152 \N +1589 2025-08-31 17:30:28.373804+00 2025-08-31 17:30:28.373812+00 f t . . . acudo a domicilio para extraccion de sangre para perfil general completo con orina \N \N 6789 5548 \N 88 2171 \N +1590 2025-08-31 17:45:10.086743+00 2025-08-31 17:45:10.086753+00 f t mastitis , colecta uterina ? enfermedad renal ? sugiero realizar ecografia abdominal + perfil general completo con orina + upc aplico ranitidina dexa a 0.5mg/kg + clamoxy\nindicio rumiclamox cada 12 hs por 7 a 10 dias ( comenzar en 48hs)\nindico prednisolona a 0.5 mg/kg por 5 dias , luego a dias alternos por la severa inflamacion en la zona mamaria\n+ ranitidina cada 12 hs canino hembra entera mestiza 13 años 18 kg aprox\nconsulta por mamas inflamadas, lamidos constantes en dicha zona \nrevision clinica \naus soplo 2/6 en foco mitral \npaciente dificil de revisar, se inquieta mucho \nnormotermica\nposible polidipsia poliuria\nmarcado edema vulvar.\nmastitis marcada en ambas hileras mamarias, mamas duras con mucho dolor ( imposible evaluar si presentaba secrecion en mamas porque dicha zona no se deja tocar), eritema de toda region ventral del abdomen producto del lamido constante \N \N 7059 5775 \N 88 2196 \N +1591 2025-08-31 17:59:19.92729+00 2025-08-31 17:59:19.927301+00 f t enfermedad periodontal, ERC? sugiero realizar ecografia abdominal + perfil general completo con orina indico comenzar con odontobiotic ( 3/4 de comprimido cada24 hs por 10 dias ) + pechuga a la plancha para facilitar ingesta felino macho castrado comun europeo 14 años .\nconsulta por dificultad para ingerir alimentos secos .\ndesparasitaciones vencidas\nrevision clinica\ndeshidratacion 6%\nbaja condicion corporal\npelo hirsuto\naus posible soplo ( no fue simple revisarlo)\npalpacion abdominal , abdomen distendido ( muy dificil evaluarlo en detenimiento)\nnormotermico\ncav bucal halitosis marcada, posible enfermedad periodontal. \N \N 7015 5735 \N 88 2179 \N +1592 2025-08-31 23:50:23.840538+00 2025-08-31 23:50:23.840551+00 f t Enteritis+ conjuntivitis. . Comida húmeda+ dieta antidiarreica+ colirio antibacterial EOG normal. Diarrea desde hace unos días. Hoy esta mejor. Conjuntivitis OD. Resto normal. \N \N 7396 6078 \N 92 2274 \N +1593 2025-08-31 23:53:37.652068+00 2025-08-31 23:53:37.65208+00 f t Trastorno de ansiedad Vacunación antirrábica+ gabapentina ante situaciones de estrés (visita veterinaria). Meloxicam+crema 6A+ disminuir estresores EOG normal. Dermatitis c Alopecia base de la cola + disminución de peso. \N \N 1734 6190 \N 92 2290 \N +1594 2025-08-31 23:54:42.131824+00 2025-08-31 23:54:42.131833+00 f t Gastritis . Cerenia + dieta EOG normal. Vomitos \N \N 7527 6191 \N 92 2293 \N +1595 2025-09-01 00:09:23.334782+00 2025-09-01 00:09:23.334791+00 f t Gastroenteritis Dieta antidiarreica Metoclopramida+ranitidina+tribiotic+vitB+ giacoccide Rojo 10 días EOG normal. Vómitos, anorexia, hidratación normal. Hasta ayer, con diarrea c sangre. \N \N 7661 6307 \N 92 2310 \N +1596 2025-09-01 00:14:45.589415+00 2025-09-01 00:14:45.589425+00 f t Artrosis articulaciones coxofemorales Continuar con Meloxicam 3 días más y artrin 30 dias . Solicito RX L-L articulaciones coxofemorales Meloxicam+tramadol+atrin Paciente geronte mayor a 12 años. Dolor cadera y pata derecha. Odontolitiasis+++++ apetito normal defeca y orina normal. \N \N 7653 6298 \N 92 2317 \N +1597 2025-09-01 00:17:19.125408+00 2025-09-01 00:17:19.125418+00 f t Insuficiencia hepática y renal terminal . Eutanasia EOG deprimida, paciente senior.. anorexia, mucosas con ictericia \N \N 7670 6316 \N 92 2314 \N +1598 2025-09-01 04:55:02.049242+00 2025-09-01 04:55:02.049256+00 f t - - Se indica controlar si se ve que el paciente presenta algun síntoma se evalúa de medicarlo. La propietaria comenta que la nota con estornudos, pero hace varios días y hoy en particular practimebte no estornudo. Se comenta que puede haber resuelto de forma espontánea, al momento de la consulta no se evidencia ninguna particualridad. \N \N 7284 5977 \N 1 2240 \N +1599 2025-09-01 04:57:35.703585+00 2025-09-01 04:57:35.703597+00 f t - - - Paciente geronte, con depresión severa, deshidratación de un 8%, hipo térmico, condición corporal muy mala, prácticamente no tiene músculos. \nSe comenta. La propietaria la gravedad del caso. La propietaria decide euranasiarlo. \N \N 7559 6216 \N 1 2299 \N +1600 2025-09-01 04:58:47.007884+00 2025-09-01 04:58:47.007898+00 f t - - Se aplica triple felina y la antirabixa Se realiza la devolución de análisis de sangre y se comenta que están todos los valores dentro del rango. \N \N 6905 5647 \N 1 2264 \N +1601 2025-09-01 05:02:08.313775+00 2025-09-01 05:02:08.313784+00 f t Neo en abdomen. Dar alimento blando. Se indican analgésicos y antiespasmodicos, siena que lo notan muy molesto Se comenta que según el informe de la neoplasia en abdomen las posibles resoluciones. Y las consecuencias de cada una. Los propietarios comentaron que van a evaluar cómo continuar. \N \N 6179 5045 \N 1 2055 \N +1602 2025-09-01 05:04:48.254276+00 2025-09-01 05:04:48.254284+00 f t - - - Se evidencia que se le salió el estuche córneo de 2 uñas de una de las extremidades anteriores. No le molesta para caminar, ni está sangrando. Se realiza el recorte de todas las uñas, y se desinfecta las lesiones. Se indica controlar dependiendo de cómo esté mañana si comienza con analgésicos o no. \N \N 6159 5026 \N 1 2029 \N +1603 2025-09-01 05:06:29.325268+00 2025-09-01 05:06:29.325281+00 f t - - - Herida qx OK,\nSe aplica tribiotic. \N \N 1798 1709 \N 1 2040 \N +1678 2025-09-09 16:28:51.154105+00 2025-09-09 16:28:51.154118+00 f t . . . . \N \N 7583 6236 \N 90 2300 \N +1722 2025-09-13 14:59:16.949156+00 2025-09-13 14:59:16.949166+00 f t Necrosis ulcerativa \nOdontolitiasis Control en 1 semana Tribiotic+ enrofloxacina+tramadol+dexametasona\nRp/ spectril 20, 1 y 1/2 comprimido cada 12 hs x 14 dias\nTópicas a diario con clorhexidina En tratamiento por artrosis con su veterinario de cabecera. El tutor comenta que disminuyó el apetito y el andar diario.\nPresenta úlceras con tejido necrosado en cavidad oral, principalmente en los carrillos. Realizó toilette y curación de las lesiones \N \N 979 1075 \N 21 2469 \N +1723 2025-09-13 18:20:37.70948+00 2025-09-13 18:20:37.709489+00 f t Vacunación y desparasitacion . Desparasitación interna y externa EOG NORMAL \N \N 8168 6717 \N 92 2411 \N +1724 2025-09-14 00:03:48.759599+00 2025-09-14 00:03:48.759608+00 f t Paciente en buen estado de salud. Revisar boca. Sangre anual Se aplican ambas vacunas.\nPendiente vilef en un mes (refuerzo)\nSe indican flores de Bach para adaptación con nueva gata (por ahora están separadas) Mc vacunas anuales. Es VIF positivo por ic y pcr refieren. Vino de Brasil hace dos años. Come rc y Omega 3 como complemento.. Eog estrabismo convergente sobrepeso. Resto sp. \nSe aplica triple felina. Y rabia. Quiere aplicar la de vilef . \N \N 8455 6967 \N 79 2461 \N +1725 2025-09-14 00:07:42.814022+00 2025-09-14 00:07:42.814031+00 f t Animal en buen estado clínico de salud Continuar el plan vacunal. Desparasitar ambas gatas y realizar coproparasitologico en unos meses. Se aplica triple felina. En 21dias refuerzo+leucemia. Luego 2da dosis leucemia+rabia. La adoptaron hace dos semanas del hogar Lourdes. Le dieron bravecto. Aumento 200g (pesa 1.6kg) come rc kitten. X ahora recluida en un cuarto, adaptándose de a poco con la otra gata. Defeca y orina ok. \N \N 8455 6966 \N 79 2462 \N +1726 2025-09-14 22:52:47.700299+00 2025-09-14 22:52:47.700308+00 f t Colecta uterina Ninguna Ninguno Ecografía abdominal \N \N 8640 7128 \N 103 2487 \N +1727 2025-09-14 22:56:08.335538+00 2025-09-14 22:56:08.335551+00 f t xx Ninguna Ninguno Ecografía abdominal \N \N 6869 5610 \N 103 2191 \N +1728 2025-09-15 12:29:33.929191+00 2025-09-15 12:29:33.929208+00 f t laboratorio . . laboratorio \N \N 8117 6678 \N 100 2437 \N +1729 2025-09-15 16:24:32.646847+00 2025-09-15 16:24:32.646856+00 f t Enfermedad medular a nivel sacro. Rcomiendo continuar con antiinflamatorio pero el tutor no lo encuentra conveniente. Derivó a traumatólogo Martín Sensini. Teleconsulta por falta de efectividad del tratamiento implementado. Rx: estrechamiento canal medular a nivel sacro. \N \N 8161 6712 \N 70 2435 \N +1730 2025-09-15 17:54:24.286171+00 2025-09-15 17:54:24.28618+00 f t Gastritis. Vigilar evolución Dieta liviana con pollo y arroz blanco pasado. Consulta x vómitos que finalizaron hace un día. No sé puede revisar porque el gato se escondió dentro de un colchón \N \N 8400 6924 \N 70 2452 \N +1731 2025-09-15 23:33:54.229952+00 2025-09-15 23:33:54.229962+00 f t Var . . EOG normal \N \N 8445 6958 \N 92 2467 \N +1732 2025-09-16 00:39:54.397829+00 2025-09-16 00:39:54.397838+00 f t Odontolitiasis - Se solicitan estudios preqx para limpieza dental. Rx de tórax de control. Bianca presenta ceguera bilateral + enfermedad degenerativa en columna. Vómitos ocasionales.La tutora refiere que de vez en cuando se agita.\nEOG: S/P\nEOP: Odontolitiasis.\nLa tutora cuenta con examen perfil general completo s/p significativas y cardiológico (estado compensado).\nLa tutora refiere que de vez en cuando se agita. \N \N 7306 5994 \N 89 2305 \N +1733 2025-09-16 00:42:56.726558+00 2025-09-16 00:42:56.726566+00 f t Vacunación - Colirio ATB 7 días. Vacunación\nLa paciente presentaba fibrosis/adherencia en el ojo izquierdo. Fluoresceína - \N \N 7026 5744 \N 89 2182 \N +1734 2025-09-16 00:46:52.649583+00 2025-09-16 00:46:52.649592+00 f t Vacunación - Se brindan alternativas para el comportamiento de Mecha, en caso de no mejorar se sugiere consulta con un etólogo. Refuerzo de vacuna triple felina.\n"Mecha" comenzó con conductas no deseadas en el hogar (roba comida, muerde a la tutora para comer, se sube insistentemente a la mesa para robar comida). \N \N 4202 3506 \N 89 2426 \N +1735 2025-09-16 13:48:38.79565+00 2025-09-16 13:48:38.795659+00 f t Gastroenteritis Desparasitar. Dieta, no más hígado en las cantidades que come. A demás tiene litos de estruvita. Diarrea amarilla, vómitos esporádicos biliares.\nSiempre tiene apetito selectivo y come hígado pollo y carne. \N \N 4334 5903 \N 68 2472 {"studies": [], "medications": [{"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1736 2025-09-16 14:08:01.942117+00 2025-09-16 14:08:01.942131+00 f t Desparasitacion. Glucemia 93md/dl. Antiparasitario Cidar comprimido. Extracción de sangre, control general. Leve sobrepeso. Sin signos de patología clínica. \N \N 8117 6678 \N 68 2436 {"studies": [], "medications": [{"id_medicina": "1158", "next_application_months": 12}, {"id_medicina": "1155", "next_application_months": 12}], "specialities": []} +1737 2025-09-16 18:05:43.502843+00 2025-09-16 18:05:43.502851+00 f t . . . . \N \N 7853 6462 \N 82 2365 {"studies": [], "medications": [], "specialities": []} +1738 2025-09-16 18:26:08.06727+00 2025-09-16 18:26:08.067279+00 f t . . . . \N \N 6290 5128 \N 100 2053 {"studies": [], "medications": [], "specialities": []} +1739 2025-09-16 18:27:51.491986+00 2025-09-16 18:27:51.491994+00 f t . . . . \N \N 3789 3212 \N 100 2120 {"studies": [], "medications": [], "specialities": []} +1740 2025-09-16 18:59:43.052665+00 2025-09-16 18:59:43.052676+00 f t . . . . \N \N 7106 5814 \N 100 2205 {"studies": [], "medications": [], "specialities": []} +1741 2025-09-16 19:11:33.595509+00 2025-09-16 19:11:33.595519+00 f t . . . . \N \N 7131 5835 \N 112 2216 {"studies": [], "medications": [], "specialities": []} +1743 2025-09-16 19:58:14.703722+00 2025-09-16 19:58:14.703735+00 f t laboratorio . . laboratorio \N \N 6545 5340 \N 100 2425 {"studies": [], "medications": [], "specialities": []} +1744 2025-09-16 22:08:17.805579+00 2025-09-16 22:08:17.805588+00 f t Vacunación anual. Revacunación en un año. Vacunación anual completa antirrábica+ séxtuple c/lepto. Consulta x vacunación anual. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. \N \N 7818 6433 \N 70 2356 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1160", "next_application_months": 12}], "specialities": []} +1746 2025-09-16 22:45:38.274913+00 2025-09-16 22:45:38.274922+00 f t Artrosis y paciente levemente deshidratado. Daño medular. Estudios complementarios Si empieza a comer pregababalina y prednisolona VO. Paciente postrada en decúbito lateral desde ayer, no quiso comer y tomó con asistencia. Viene con hiporexia y descenso de peso con un bajo score corporal.\nMiembro anterior izquierdo deformación ósea sugiere artrosis severa y/o neoplasia ósea. Marcado dolor. Sin propiosepcion y ataxia. \N \N 8724 7203 \N 68 2515 {"studies": ["7"], "medications": [{"id_medicina": "702", "next_application_months": 0}, {"id_medicina": "1105", "next_application_months": 0}], "specialities": []} +1745 2025-09-16 22:39:15.883838+00 2025-09-16 22:39:15.88385+00 f t Pinzamiento o compresión cervical. Caminar. \nDescenso de peso.\nUso de rampas, limitar movimientos no sugeridos y elevar plato de comidas Está tomando dexametasona, ir disminuyendo dosis y retirsmos. Para crisis podemos usar Pregabalina como neuronalgesia. Paciente dolor cervical, se golpeó subiendo al sillón. Tiene antecedentes de artrosis del tren posterior, cambios degenerativos.\nResistencia a las maniobras cervicales, lamido compulsivo de miembros anteriores. \N \N 8690 7177 \N 68 2507 {"studies": [], "medications": [], "specialities": []} +1747 2025-09-17 00:15:34.628236+00 2025-09-17 00:15:34.628244+00 f t Dermatitis por estrés Sacar turno con dermatólogo y etólogo Aplico clamoxyl y derivo a dermatología+ etología Dermatitis en cuello por rascado. Prurito. Antecedentes de DAPP. Ectoparasitos controlados. El paciente se mudó y ahora convive con otros gatos. Se trató con antibióticoterapia + corticoides + crema 6A+ feromonas + enriquecimiento ambiental. Empeoró. \N \N 6907 5957 \N 92 2493 {"studies": [], "medications": [], "specialities": ["71"]} +1748 2025-09-17 00:20:31.203356+00 2025-09-17 00:20:31.203365+00 f t Cuerpo extraño/ tumor Sujeción química para revisacion y RX boca LL Clamoxyl+meloxivet+tramadol Bengalí con infección en mandíbula desde hace 20 días. Come menos. \N \N 6788 5547 \N 92 2490 {"studies": [], "medications": [], "specialities": []} +1749 2025-09-17 00:23:13.288586+00 2025-09-17 00:23:13.288596+00 f t Vacunación anual .. . Vacunación anual \N \N 8672 7163 \N 92 2501 {"studies": [], "medications": [{"id_medicina": "1148", "next_application_months": 12}, {"id_medicina": "1171", "next_application_months": 12}], "specialities": []} +1750 2025-09-17 16:55:14.397133+00 2025-09-17 16:55:14.397142+00 f t . . . . \N \N 266 335 \N 100 2526 {"studies": [], "medications": [], "specialities": []} +1751 2025-09-17 22:29:17.358139+00 2025-09-17 22:29:17.358152+00 f t . . . Odontolitisis severa con pérdida de piezas dentales, obesidad marcada con score 4,5/5. Vacunas vencidas. Próxima visita vacunación anual. \N \N 8439 6955 \N 80 2456 {"studies": [], "medications": [], "specialities": []} +1752 2025-09-17 22:32:41.486041+00 2025-09-17 22:32:41.486049+00 f t Artrosis . . Excelente evolución. Molestia cervical, de columna torácica y cadera derecha. Indico radiografías para fisioterapia. Ambos tumores en piel son lipomas verificados por citología. \N \N 8287 6823 \N 80 2473 {"studies": [], "medications": [], "specialities": []} +1753 2025-09-17 22:34:29.787861+00 2025-09-17 22:34:29.787873+00 f t . . . Anorexia de 24 hs y decaimiento leve. Imposible de revisar, agresiva. Aplico ranitidina y dipirona. Control según evolución. \N \N 8577 7061 \N 80 2479 {"studies": [], "medications": [], "specialities": []} +1754 2025-09-17 22:36:43.278924+00 2025-09-17 22:36:43.278933+00 f t . . . Consulta porque tiene el ojo pegado. Conjuntivitis leve de un ojo, cuando llego al domicilio ya no tiene el ojo pegado. Sin blefarospasmo. Indico tobramax colirio cada 8 hs por 7 días. Control según evolución. Vacunas vencidas, 10 días luego de terminar el tratamiento debe pedir turno para vacunación. \N \N 8583 7067 \N 80 2481 {"studies": [], "medications": [], "specialities": []} +1755 2025-09-17 22:38:25.14474+00 2025-09-17 22:38:25.144752+00 f t . . . Diarrea intermitente hace 4 días, sin sangre ni moco. Es VIF positivo y tiene vacunas vencidas. Indico Meltra spot on y esperar unos días. Vacunación en 10 días, debe pedir turno. \N \N 8639 7127 \N 80 2486 {"studies": [], "medications": [], "specialities": []} +1756 2025-09-17 22:41:47.689781+00 2025-09-17 22:41:47.691416+00 f t . . . Pérdida de peso, score 1,5/5, vomita 3 veces por semana hace 2 meses. Tumor en subcutáneo en piel de 3x3 cm, hago paf para citología. Indico ecografía abdominal y perfil general completo. Es mestiza de boxer. \N \N 8543 7041 \N 80 2504 {"studies": [], "medications": [], "specialities": []} +1757 2025-09-17 22:43:43.971152+00 2025-09-17 22:43:43.971167+00 f t Alergia . . Conjuntivitis alérgica y prurito entre los dedos de mad. Fluiresceina negativo. Indico gotas tobravet D cada 8 hs por 7 días. Aplico dexametasona. Indico prednisolona 10 mg por 3 días. Posiblemente tuvo contacto con limpiador de piso. \N \N 8543 7038 \N 80 2505 {"studies": [], "medications": [], "specialities": []} +1758 2025-09-17 22:44:43.198931+00 2025-09-17 22:44:43.198942+00 f t . . . Aplico triple felina y antirrabica. Debe bajar de peso. En dos meses haremos control de peso, si bajo lo suficiente se indicarán prequirurgicos para limpieza de dientes. \N \N 8439 6955 \N 80 2480 {"studies": [], "medications": [], "specialities": []} +1759 2025-09-17 22:47:44.94608+00 2025-09-17 22:47:44.946091+00 f t Alergia alimentaria/atopia . . Otitis oído derecho, la bañaron hace poco. Prurito crónico interdigital. Posible Atopia/alergia alimentaria. Aplico dexametasona, tramadol y tribiotic. Indico gotas proviene nf cada 12 hs por 10 días. Control según evolución. Come balanceado hipo alergénico con carne, indico sacar la carne por 2 meses para probar si tiene alergia alimentaria. \N \N 8732 7211 \N 80 2512 {"studies": [], "medications": [], "specialities": []} +1760 2025-09-17 22:49:27.337844+00 2025-09-17 22:49:27.337854+00 f t . . . Control general a domicilio. Se palpa materia fecal algo dura, la tutora me comenta que le cuesta defecar. Indico dar a ambas gatas balanceado obesity (más fibra) y a esta gatita le puede agregar puré de zapallo. \N \N 8603 7089 \N 80 2482 {"studies": [], "medications": [], "specialities": []} +1761 2025-09-17 22:50:25.190174+00 2025-09-17 22:50:25.190183+00 f t . . . Sobrepeso moderado. Aplico antirrabica. Cambiar a balanceado obesity. \N \N 8603 7089 \N 80 2483 {"studies": [], "medications": [], "specialities": []} +1762 2025-09-18 14:40:56.855887+00 2025-09-18 14:40:56.855896+00 f t laboratorio . . laboratorio \N \N 7082 5794 \N 100 2511 {"studies": [], "medications": [], "specialities": []} +1763 2025-09-18 16:43:11.139862+00 2025-09-18 16:43:11.139876+00 f t Asma felina Llamar nuevamente si hay recidiva. Fluticasona. 1 paff por día hasta remisión de síntomas y luego mantenimiento en mismo esquema Consulta porque había mejorado con el tratamiento con Prednisolona pero volvió a recidivar en cuanto se lo sacaron. \N \N 2100 1930 \N 70 2376 {"studies": [], "medications": [], "specialities": []} +1764 2025-09-18 17:09:42.934125+00 2025-09-18 17:09:42.934134+00 f t senilidad, deshidratación, debilidad. control cardiologico, buscar ecografia si se le hizo. control mensual si evoluciona bien o antes de ser necesario. Sales de rehidratacion oral al menos 100 ml diarios.\nTonico total cats, 1 cucharadita x dia\nSeniorline 1 compr/dia\nmirtazapina 1/8 comprimido/dia estado general mal, deshidratación moderada a severa, mucosas rosadas, inestable, debilidad sobre todo en apoyo de miembros anteriores. pelo hirsuto. Palpacion abad s/p auscultación ritmo y frecuenta normal, los latidos se auscultas "apagados " (CMH?). tuvo muchos episodios de infecciones urinarias y fue tratado con analgésicos y antibióticos según el caso. FIGURA NO CASTRADO PERO SI LO ESTA. recomiendo control cardiológico y lo van a evaluar. les indico suero subcutáneo diario pero dicen que prefieren viajar oral y evaluar si funciona. Alimentación forzada (lo hacen correctamente) come recovery y alimento natural, carne, pollo, visceral. neofilico, indico probar con distintas cosas para estimularlo \N \N 8394 6915 \N 101 2447 {"studies": [], "medications": [], "specialities": []} +1765 2025-09-18 17:37:16.37933+00 2025-09-18 17:37:16.379345+00 f t Eco . . Eco \N \N 7082 5794 \N 90 2455 {"studies": [], "medications": [], "specialities": []} +1766 2025-09-18 17:41:01.268476+00 2025-09-18 17:41:01.268491+00 f t . . . . \N \N 8385 6907 \N 90 2476 {"studies": [], "medications": [], "specialities": []} +1767 2025-09-18 17:42:55.972463+00 2025-09-18 17:42:55.972476+00 f t . . . . \N \N 8638 7126 \N 90 2485 {"studies": [], "medications": [], "specialities": []} +1768 2025-09-18 17:53:51.21709+00 2025-09-18 17:53:51.217099+00 f t . . . . \N \N 6033 4926 \N 90 2465 {"studies": [], "medications": [], "specialities": []} +1769 2025-09-18 18:01:00.773264+00 2025-09-18 18:01:00.773274+00 f t . . . . \N \N 8539 7033 \N 90 2478 {"studies": [], "medications": [], "specialities": []} +1770 2025-09-18 21:42:47.869897+00 2025-09-18 21:42:47.869907+00 f t laboratorio . . laboratorio \N \N 8524 7021 \N 100 2499 {"studies": [], "medications": [], "specialities": []} +1771 2025-09-19 00:07:48.77259+00 2025-09-19 00:07:48.772599+00 f t Vacunación triple . . EOG normal \N \N 8649 7141 \N 92 2491 {"studies": [], "medications": [{"id_medicina": "1161", "next_application_months": 12}, {"id_medicina": "493", "next_application_months": 0}, {"id_medicina": "277", "next_application_months": 0}], "specialities": []} +1772 2025-09-19 00:09:24.731912+00 2025-09-19 00:09:24.731922+00 f t . . . EOG normal \N \N 8649 7140 \N 92 2492 {"studies": [], "medications": [{"id_medicina": "1161", "next_application_months": 12}, {"id_medicina": "493", "next_application_months": 0}, {"id_medicina": "277", "next_application_months": 0}], "specialities": []} +1773 2025-09-19 00:12:12.901156+00 2025-09-19 00:12:12.901169+00 f t EOG s/p Desparasitacion+ quíntuple en 3 semanas . Teleconsulta Paciente de 2 meses. Hace dos días fue vacunado con quíntuple. EOG normal \N \N 1100 1167 \N 92 2537 {"studies": [], "medications": [], "specialities": []} +1774 2025-09-19 03:05:37.846899+00 2025-09-19 03:05:37.846915+00 f t Cistitis? IU? - - La propietaria comenta que la gata ya había pasado por un episodio parecido no hace más de 2 semanas que estaba con disuria. Que la trataron con analgésicos pero el problema recidivo, ahora indicó continuar con melixocam 2 días más, terazosina, cisticalm, y sumar también Amoxicilina por si es que hay un posible cuadro infeccioso. Indicó tomar muestra de orina para un AOC. \N \N 8810 7279 \N 1 2534 {"studies": [], "medications": [], "specialities": []} +1775 2025-09-19 03:07:22.343305+00 2025-09-19 03:07:22.343315+00 f t - - - La propietaria la terminó llevando a una clínica. Por no poder dar medicación vía oral \N \N 8743 7220 \N 1 2517 {"studies": [], "medications": [], "specialities": []} +1776 2025-09-19 03:19:29.660411+00 2025-09-19 03:19:29.660419+00 f t - - - Se lo nota decaído, normotermico y normohidratado, pero con mucho dolor en columna y al parecer dolor abdominal diferido, presenta disminución de la propiocepcionnde ambos miembros posteriores, \nSe indica hacer placas de columna y chequeo de sangre. Evaluar si es que necesita ecografía de abdomen. Se aplica dipirona, tramadol, dexametasona a 0,3 mg/kg y ranitidina. Indicó continuar con precisox para el dolor de columna hasta tener las placas. \N \N 8716 7196 \N 1 2508 {"studies": [], "medications": [], "specialities": []} +1777 2025-09-19 12:52:01.429949+00 2025-09-19 12:52:01.429958+00 f t Eco abdominal . . Eco abdominal \N \N 6033 4925 \N 68 2484 {"studies": [], "medications": [], "specialities": []} +1778 2025-09-19 13:00:52.882085+00 2025-09-19 13:00:52.882096+00 f t eco abdominal . . eco abdominal \N \N 8716 7196 \N 90 2561 {"studies": [], "medications": [], "specialities": []} +1779 2025-09-19 13:01:50.265462+00 2025-09-19 13:01:50.265471+00 f t Ecografia . . Ecografia \N \N 8826 7295 \N 90 2540 {"studies": [], "medications": [], "specialities": []} +1780 2025-09-19 13:02:41.420886+00 2025-09-19 13:02:41.420894+00 f t ecografia . . Ecografia \N \N 8862 7327 \N 90 2542 {"studies": [], "medications": [], "specialities": []} +1781 2025-09-19 13:03:25.059379+00 2025-09-19 13:03:25.059389+00 f t Ecografia . . Ecografia \N \N 8862 7326 \N 90 2541 {"studies": [], "medications": [], "specialities": []} +1782 2025-09-20 09:16:29.04115+00 2025-09-20 09:16:29.041162+00 f t Insuficiencia renal compensada, considerar cardiopatía y artrosi de columna. Realizar estudios para descartar y/o estadificar patologías sugeridas. Felilax para efecto laxante. Osteocart para artrosis. Pasar a dieta renal. Potenpet gatos. Gerente con pérdida de peso, apetito más selectivo. Alopecia de larga data por lamido compulsivo. Dolor de columna por artrosis. \N \N 8658 7148 \N 68 2489 {"studies": ["8"], "medications": [], "specialities": ["8"]} +1783 2025-09-20 09:20:50.259189+00 2025-09-20 09:20:50.259197+00 f t Intolerancia alimentaria y/o parasitosis persistente. Prestar atención en dieta y limitar acceso alimento por demanda. Si persiste Metronidazole VO y Ecografia abdominal. Diarreas con sangre y/o solo fecas con sangre.\nA desparasitado y tratado por el mismo cuadro, sin cambios en apetito ni vómitos. \N \N 7243 5944 \N 68 2525 {"studies": ["1"], "medications": [], "specialities": []} +1784 2025-09-20 09:21:50.579378+00 2025-09-20 09:21:50.57939+00 f t Pre cx Pre cx Pre cx Extracción de sangre \nPerfil general 7 con glucemia pre cx \N \N 264 308 \N 68 2518 {"studies": [], "medications": [], "specialities": []} +1785 2025-09-20 09:22:46.656556+00 2025-09-20 09:22:46.656565+00 f t Pre cx Pre cx Pre cx Extracción de sangre para pre cx.\nPerfil 7 con glucemia pre cx \N \N 8378 6902 \N 68 2531 {"studies": [], "medications": [], "specialities": []} +1786 2025-09-20 16:32:18.876798+00 2025-09-20 16:32:18.876809+00 f t . . . . \N \N 6033 4925 \N 90 2465 {"studies": [], "medications": [], "specialities": []} +1787 2025-09-20 16:35:12.559404+00 2025-09-20 16:35:12.559418+00 f t . . . . \N \N 8929 7389 \N 90 2562 {"studies": [], "medications": [], "specialities": []} +1788 2025-09-20 16:35:53.333952+00 2025-09-20 16:35:53.333966+00 f t . . . . \N \N 8896 7359 \N 90 2557 {"studies": [], "medications": [], "specialities": []} +1789 2025-09-20 17:24:31.692407+00 2025-09-20 17:24:31.692419+00 f t . . . . \N \N 7897 7240 \N 100 2524 {"studies": [], "medications": [], "specialities": []} +1790 2025-09-20 17:24:56.732943+00 2025-09-20 17:24:56.732951+00 f t . . . . \N \N 7897 6499 \N 100 2523 {"studies": [], "medications": [], "specialities": []} +1791 2025-09-20 19:49:22.01227+00 2025-09-20 19:49:22.012278+00 f t Vacunación anual . . EOG normal \N \N 6809 5560 \N 92 2440 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1171", "next_application_months": 12}], "specialities": []} +1792 2025-09-22 02:13:45.863586+00 2025-09-22 02:13:45.863601+00 f t Cuadros crónicos que repercuten en calidad de vida. Cardio metabólica compensada. Higiene del globo ocular local. Tiene un pronóstico reservado por las limitaciones Pregabalina y rumiclamox. Paciente con daños cronicoa degenerativos osteoarticulares que limitan el movimiento y generan dolor. Enfermedad periodontal con pérdida de glóbulo ocular por infección activa drenando.\nDiarrea negra, está tomando meloxicam y notan q se queja un poco menos pero sin cambios en locomoción. La tetraparesia es irreversible. \N \N 8973 7426 \N 68 2571 {"studies": [], "medications": [], "specialities": []} +1945 2025-10-03 04:11:07.065118+00 2025-10-03 04:11:07.065122+00 f t - Se indica tenerlo ubicado para la próxima visita. - No se puede realizar la vacunación porque la propietaria no logra localizar el paciente. \N 2026-01-03 6905 5647 \N 1 2651 {"studies": [], "medications": [], "specialities": []} +1793 2025-09-22 02:17:42.545609+00 2025-09-22 02:17:42.545624+00 f t EEI, enfermedad metabólica? Gabapetina previo estudios. Indicó ecografía abdominal, desparasitacion y análisis de sangre. Paciente que defeca a diario siempre abundante volumen, últimamente más pastosa y sin consistencia con cambios en color (más claro) gingivitis leve. No hay alteraciones en apetito, un único vómito de tricobezoare.\nHay pérdida de masa muscular. Palpo intestinos inflamados, lnn? \N \N 9023 7462 \N 68 2576 {"studies": [], "medications": [], "specialities": []} +1794 2025-09-22 13:15:03.162142+00 2025-09-22 13:15:03.162166+00 f t Control post quirúrgico ok. Control en 7 días. Triobiotic 0,5 ML SC. Consulta para control de eventración post-castración. Sutura por línea media. Se sacó un punto pero no está infectado. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. \N \N 8958 7414 \N 70 2568 {"studies": [], "medications": [], "specialities": []} +1795 2025-09-22 13:24:17.99073+00 2025-09-22 13:24:17.990739+00 f t Addison Volver a extraer para re-hacer todos los estudios. Diafin 0,3 ml SC. Extracción de sangre para Perfil 7 de Rapela. Paciente con Addison. Vasos muy lábiles, logro extraer para serología sólamente, el tutor pide que el paciente "no sufra más". Además presenta diarrea con sangre. \N \N 8964 7417 \N 70 2569 {"studies": [], "medications": [{"id_medicina": "720", "next_application_months": 0}], "specialities": []} +1796 2025-09-22 13:34:51.537042+00 2025-09-22 13:34:51.537052+00 f t Tumoración oral. Más allá de la citología, se debe realizar eutanasia. Clamoxyl 0,5 ML + meloxivet 0,1 ml.Realizo citología para ver qué tipo de tumor es. Segunda consulta para realizar sedación y RX. Se aplican 0,05 ml Acedán y 2 ml de ketamina. Se realizan Rx LL y DV de cabeza. Se aprecia pérdida de masa ósea cortical. A la exploración de la cavidad oral se ve una tumefacción mandibular derecha grande con una formación verrucoide compatible con tumor de cavidad oral. \N \N 6788 5547 \N 70 2555 {"studies": ["3"], "medications": [], "specialities": []} +1797 2025-09-22 13:38:15.41081+00 2025-09-22 13:38:15.410823+00 f t Finalmente, no sé realizó la extracción. Finalmente, no sé realizó la extracción. Finalmente, no sé realizó la extracción. Finalmente, no sé realizó la extracción. \N \N 5021 4145 \N 70 2384 {"studies": [], "medications": [], "specialities": []} +1798 2025-09-22 13:49:51.838892+00 2025-09-22 13:49:51.838903+00 f t Colocación de microchip. Colocación de microchip. Colocación de microchip. Consulta x colocación de microchip. Está sedada con gabapentina. \N \N 7501 6168 \N 70 2286 {"studies": [], "medications": [], "specialities": []} +1799 2025-09-22 13:50:51.943985+00 2025-09-22 13:50:51.943997+00 f t Extracción suspendida. Extracción suspendida. Extracción suspendida. Extracción suspendida. \N \N 5021 4145 \N 70 2383 {"studies": [], "medications": [], "specialities": []} +1800 2025-09-22 13:51:41.760541+00 2025-09-22 13:51:41.760551+00 f t Extracción suspendida. Extracción suspendida. Extracción suspendida. Extracción suspendida. \N \N 5021 4145 \N 70 2382 {"studies": [], "medications": [], "specialities": []} +1801 2025-09-22 14:05:59.530615+00 2025-09-22 14:05:59.530627+00 f t Chequeo médico. Bajar de peso con alimento light. Bajar de peso con alimento light. Consulta x chequeo médico. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. Sobrepeso \N \N 6437 5238 \N 70 2081 {"studies": [], "medications": [], "specialities": []} +1802 2025-09-22 16:17:28.359402+00 2025-09-22 16:17:28.35941+00 f t Neoformacion abdominal Alimentación natural. Pollo, atún, queso crema, yogur. Cosas que desee comer Mañana se repetirá la medicación y se evaluará continuar medicación vía oral No quiere comer ni tomar agua. Le cuesta incorporarse. \nHace dos años le detectaron neo formación a nivel abdominal, se decide no proceder con acto quirúrgico por la edad.\n\nEOG: alerta, mucosas rosadas, tllc 3s\nEOP: deformación en mas en mesograstrio. Dolor a la palpación abdominal. musculatura temporal y en miembros posteriores.\n\nEstán evaluando la opción de dormirlo porque no quieren verlo sufrir. \n\nDecídimos medicarlo y evaluar evolución. Controlaré mañana para repetir medicación y decidir si continuamos con medicación por boca o qué desicion se toma. \N \N 9096 7529 \N 113 2592 {"studies": [], "medications": [{"id_medicina": "534", "next_application_months": 0}, {"id_medicina": "702", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}, {"id_medicina": "950", "next_application_months": 0}, {"id_medicina": "667", "next_application_months": 0}], "specialities": []} +1803 2025-09-22 16:38:55.075825+00 2025-09-22 16:38:55.075838+00 f t Cistitis? Neoformacion vesical? -observar que orine aunque sea en poca cantidad y evaluar evolución con las sucesivas tomas de la medicación.\nEn caso de no ver mejoría se indica realizar ecografía abdominal y sondear para toma de muestra estéril para AOC y cultivo. Enrofloxacina 100mg un comprimido y medio cada 24hs No puede orinar. Hace tres días aproximadamente comenzó a perder gotas de orina. Ahora ven que se agacha mas seguido y no hace. \nNo orina con sangre. \n\nEOG: alerta, mucosas rosadas, tllc 1 s\nEop: vejiga vacía. \N \N 9109 7541 \N 113 2589 {"studies": [], "medications": [{"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1804 2025-09-22 21:09:50.469901+00 2025-09-22 21:09:50.46991+00 f t Tumor de mamas benigno/maligno . . Consulta por bulto en zona abdominal. Difícil de revisar. Presenta un tumor de mama, linfonodulos spp. Indico cardiológico, ecografía abdominal, rx de tórax y perfil prequirurgico hemostatico para realizar mastectomia y biopsia \N \N 8641 7129 \N 80 2488 {"studies": [], "medications": [], "specialities": []} +1805 2025-09-22 21:32:51.740556+00 2025-09-22 21:32:51.740565+00 f t Infección por calicivirus - consulta con nutricionista para que evalúe alimentación (pasar a alimentación cocida por su sistema inmune mas vulnerable)\n- realizar test vif vilef pcr con carga ADN pro viral 1 mes posterior a la resolución de este cuadro clínico Dexaflox: 1 gota en cada ojo dos veces al día por 5 días\nPrednisolona 10 mg: 1/4 comprimido cada 24 hs por 7 días luego 5 tomas mas a días alternos \nAmoxicilina clavulanico 250mg: 1/4 comprimido cada 12 hs por 10 dias Tiene secreción en ambos ojos, estornudos y feo olor en la boca.\nAdoptaron un gatito hace un mes. Se estresó mucho con su llegada. Coincidió con su llegada un episodio de obstrucción urinaria. Lo trataron y mejoró.\nHace unos días notaron que tenía secreciones nasal, babeaba mas y se profundizó el olor de la boca. En enero le hicieron una limpieza bucal. Tiene análisis de sangre de hace dos meses. Nunca le hicieron test vif/vilef.\nCome comida BARF. \n\nEOG: ok\nEOP: inflamación en encías, halitosis, secreción bilateral de ambos ojos. \nScore corporal 7/9 \N \N 8385 6907 \N 113 2591 {"studies": [], "medications": [], "specialities": ["54"]} +1821 2025-09-23 22:23:32.069663+00 2025-09-23 22:23:32.069671+00 f t Vacunación anual . . EOG normal \N \N 7909 6512 \N 92 2564 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1171", "next_application_months": 12}], "specialities": []} +1815 2025-09-23 17:17:40.988066+00 2025-09-23 17:17:40.988075+00 f t Neoformacion abdominal Dieta casera: pollo, arroz, batata/zanahoria hervida Giacoccide rojo 1+ 1/2 comprimido cada 12 hs hasta terminar blíster\nPrednisolona 10 mg 1 + 1/2 comprimidos cada 48 hs por 5 tomas\nTramadol 80 mg 1 comprimido cada 12 por 5 dias Se siente mejor. Ayer comió y hasta lo sacaron a pasear. Defeco con materia fecal blanda. \nTiene mejor fascie, mueve la cola.\nHablamos de lo irreversible del cuadro y brindarle calidad de vida. \N \N 9096 7529 \N 113 2586 {"studies": [], "medications": [{"id_medicina": "1105", "next_application_months": 0}, {"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "667", "next_application_months": 0}, {"id_medicina": "1192", "next_application_months": 0}], "specialities": []} +1806 2025-09-22 22:50:55.425046+00 2025-09-22 22:50:55.425056+00 f t Cistitis Se brindan signos de alerta de obstrucción urinaria. (Ausencia de micción, distencion vesical, entre otros). EN CASO DE PRESENTAR ALGUNO DE ESOS SIGNOS DE ALERTA DIRIGIRSE A UNA GUARDIA VETERINARIA. Se indica estudio de orina completo.\nCambio de alimento balanceado a URINARY S/O, suplementación con pouch de URINARY S/O. Meloxicam gotas primeros 5 días a 0,1mg/kg/día y los próximos 5 días a 0,1 mg totales/día.Cisticalm cápsulas: primer mes 1 cápsula cada 12hs y el segundo mes 1 cápsula cada 24hs, espolvoreado en la comida.\nAlimentar con pollo a la plancha y zanahoria/zapallo hervido x 3días para que defeque. EN CASO DE NO DEFECAR EN LAS PRÓXIMAS 24-36HS DIRIGIRSE A GUARDIA VETERINARIA.\nTelemedicina de control al tener el resultado del estudio de orina. Solicitan consulta presencial en el día por un cuadro de polaquiuria.\nAl concurrir al domicilio "Milo" se encontraba con el sensorio alerta.\nLos tutores refieren 1-2 semanas de evolución del cuadro. Mencionan también que "Milo" no defecaba desde el día anterior.\nEOG Sobrepeso\nEOP pene: hiperemia leve, vejiga: levemente distendida a la palpación abdominal.\nA lo largo de la visita en el domicilio "Milo" orinó de "a gotas" en varios lugares de la casa y presentó lamido de la zona genital y comenzó a presentar agresividad. \N \N 822 928 \N 89 2539 {"studies": [], "medications": [], "specialities": []} +1807 2025-09-22 23:00:01.352415+00 2025-09-22 23:00:01.352429+00 f t sindrome de cushing continuar ruta diagnostica Se indica inhibicion con dexametasona a dosis bajas.\nSi es muy complicado hacer tres tomas de muestra; se realizara un cortisol basal y uno a las 8 hs post dexametasona Paciente derivado por sospecha de sindorme de cushing.\nLa notan decaida.\nComplicada de revisar. No noto abdomen abalonado ni piel fina.\nCamina bien aunque no descarto dolor de columna \N \N 6392 5199 \N 98 2071 {"studies": [], "medications": [], "specialities": []} +1808 2025-09-22 23:01:56.134343+00 2025-09-22 23:01:56.134353+00 f t hipertiroidismo control en un mes continua con metimazol Consulta endocrinologica\nBajo de peso \N \N 8071 6648 \N 98 2400 {"studies": [], "medications": [], "specialities": []} +1809 2025-09-23 01:45:36.923276+00 2025-09-23 01:45:36.923288+00 f t Dermatitis miliar . Prednisol+alimento hipoalergénico+ desparasitacion Prurito. \N \N 3981 3336 \N 92 2572 {"studies": [], "medications": [], "specialities": []} +1810 2025-09-23 01:47:20.288914+00 2025-09-23 01:47:20.288924+00 f t . Vacunación anual Pipeta antipulgas. Rechaza el tratamiento ANTIPARASITARIO oral. Se propone spot on en la próxima visita. EOG normal \N \N 9042 7479 \N 92 2579 {"studies": [], "medications": [], "specialities": []} +1811 2025-09-23 01:50:00.18737+00 2025-09-23 01:50:00.187383+00 f t Obesidad Limpieza dental+ vacunas + desparasitacion Control. ASC perfil 7 más control cardiólogo Obesidad enfermedad periodontal \N \N 9071 7507 \N 92 2583 {"studies": [], "medications": [], "specialities": []} +1812 2025-09-23 01:52:08.224497+00 2025-09-23 01:52:08.22451+00 f t Impetigo Vacunas Clamoxyl+ shampoo tritón hexidinn+ crema antiséptico típica+ aumentar frecuencia de paseos EOG normal. Impetigo \N \N 9064 7499 \N 92 2578 {"studies": [], "medications": [], "specialities": []} +1813 2025-09-23 01:53:36.745694+00 2025-09-23 01:53:36.746885+00 f t . . Total full+ la pipeta EOG normal \N \N 8740 7219 \N 92 2516 {"studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1161", "next_application_months": 12}], "specialities": []} +1814 2025-09-23 16:53:24.362222+00 2025-09-23 16:53:24.36223+00 f t . -. -. . \N \N 3347 2872 \N 100 2546 {"studies": [], "medications": [], "specialities": []} +1816 2025-09-23 21:26:14.977672+00 2025-09-23 21:26:14.97768+00 f t Asma felino? Irritante ambientales? Alergia? - controlar si la tos disminuye\n-descenso de peso\n-control de sangre, orina y radiogradico Prednisol gotas. 8 gotas cada 24 hs por 7 días. Luego 5 tomas mas a días alternos Tiene toses cortitas. No larga secreción ni vomita. Lo hace diariamente, estos últimos días lo noto mas.\nTuvo cuadros urinarios por lo cual fue medicado y le han recetado el alimento urinary.\nEog: aumento MV\nEOP: score corporal 7/9\n\nIndicó descenso de peso, para lo cual comenzará ofreciendo proteínas de origen animal para disminuir el porcentaje de alimento balanceado.\n\nDoy orden para análisis de sangre, orina y ex l-l y v-d de tórax para realizar en un mes.\n\nDejo orden para administrar gabapentina previo a la consulta para poder manipularlo \N \N 2234 2042 \N 113 2577 {"studies": ["7", "2"], "medications": [], "specialities": []} +1817 2025-09-23 21:45:16.158849+00 2025-09-23 21:45:16.158857+00 f t Herida en rabo Control lunes. Castración. Tricotomía, limpieza, vendaje con azúcar. Se aplica meloxicam, tramadol y tribiotic. Indico a partir de mañana optamox jarabe. Herida en ventral de rabo, posiblemente por pelea. No está castrado y a veces se escapa y pelea. \N \N 9008 7454 \N 91 2575 {"studies": [], "medications": [{"id_medicina": "1192", "next_application_months": 0}, {"id_medicina": "872", "next_application_months": 0}, {"id_medicina": "533", "next_application_months": 0}], "specialities": []} +1818 2025-09-23 21:46:56.420314+00 2025-09-23 21:46:56.420323+00 f t Síndrome de cushing Realizar AOC control que está pendiente y la inhibición con dexametasona a bajas dosis a le indicó la endocrinóloga. S/tto Volvió a tener poliuria y polidipsia. Hablamos de retomar la inhibición con dexametasona a bajas dosis. \N \N 2732 2418 \N 91 2547 {"studies": [], "medications": [], "specialities": []} +1819 2025-09-23 21:48:48.559757+00 2025-09-23 21:48:48.559765+00 f t Bronquitis inflamatoria? Control de irritantes ambientales Moxidex plus Tos. 1 o 2 episodios por día. Está vacunado, no desparasitó en el último año, juega, come excellent gato adulto, defeca normal. Usan aromatizante automático de ambiente. \N \N 8823 7293 \N 91 2550 {"studies": ["2"], "medications": [], "specialities": []} +1820 2025-09-23 21:51:46.08592+00 2025-09-23 21:51:46.085929+00 f t Bronquitis crónica/cambios seniles. Evitar irritantes ambientales. Fulivent 125/25 1 paf cada 12 hs con aerocamara y rumivital forte 2 mini comprimidos por día. En rx bronquitis crónica/cambios seniles. Con la prednisolona más estable está mejor. Intentamos pasar a paf. \N \N 8106 6670 \N 91 2503 {"studies": [], "medications": [], "specialities": []} +1822 2025-09-24 12:51:37.848315+00 2025-09-24 12:51:37.848323+00 f t Neoformacion vesical? Cálculos urinarios? Realizar análisis de orina y ecografía abdominal. Meloxicam 3 mg al día por 4 días.\nEnrofloxacina 150mg cada 12 hs. No puede orinar.\nEstuvo a la noche llorando, intentando orinar y no podía. De la única forma que le salía mas orina es cuando se acuesta. \n\nEop: pansa tensa, vejiga pletórica. \n\nColoco sonda urinaria y tomo todos muestras de orina estéril en jeringa de 5ml.\nIndi\nSolicito AOC, cultivo antibiograma y citología para evaluar posibles celular tumorales.\n\nDejo colocada la sonda y explico a la tutora cómo vaciarla. \n\nIndico ecografía abdominal.\n\nEn base a resultados evaluamos cómo seguimos \N \N 9109 7541 \N 113 2615 {"studies": [], "medications": [{"id_medicina": "872", "next_application_months": 0}], "specialities": []} +1823 2025-09-24 14:30:18.898254+00 2025-09-24 14:30:18.898262+00 f t . . . . \N \N 6788 5547 \N 100 2573 {"studies": [], "medications": [], "specialities": []} +1824 2025-09-25 16:20:32.99162+00 2025-09-25 16:20:32.991625+00 f t Obstrcucción Ninguna Niguno Disuria \N \N 9109 7541 \N 103 2625 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1825 2025-09-25 16:57:12.084699+00 2025-09-25 16:57:12.084707+00 f t - . . . \N \N 9109 7541 \N 100 2619 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1826 2025-09-25 16:58:18.738261+00 2025-09-25 16:58:18.738266+00 f t . . . . \N \N 9137 7566 \N 100 2626 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1827 2025-09-25 16:58:53.513446+00 2025-09-25 16:58:53.513452+00 f t . . . . \N \N 9137 7568 \N 100 2626 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1828 2025-09-25 16:59:41.899442+00 2025-09-25 16:59:41.899449+00 f t Neoformacion vesical Vaciar vejiga cada 3-4hs Continuar con la medicación indicada Se confirma por ecografía: \nMasa en área de proyección del útero / vagina. Por eso no pude orinar.\nTambién tiene bastante líquido libre y el hígado difícil de evaluar, muy chico y muy dentro del tórax. \nY el riñón derecho tiene la pelvis dilatada.\nAnálisis de orina con densidad urinaria muy baja. Pérdida de poder concentrar orina.\n\nSe habla con la tutora sobre la gravedad del cuadro.\n\nVuelvo a colocar sonda y vaciar vegija. \n Se brindará calidad de vida hasta que se tome la desicion de dormirla \N \N 9109 7541 \N 113 2632 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1829 2025-09-25 16:59:57.153195+00 2025-09-25 16:59:57.153203+00 f t . . .. . \N \N 8543 7041 \N 100 2533 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1830 2025-09-25 19:18:34.749653+00 2025-09-25 19:18:34.749662+00 f t Piometra abierta Se indica ecografía abdominal de urgencia con perfil prequirurgico hemostatico Aplico sol fisiológica si 250 ml, ranitidina y metoclopramida. Mantener en ayuno total. Consulta porque sangra por vulva desde hace 20 días aprox. Hace 2 días comenzó a vomitar y estar decaída. No está castrada. Sensorio alerta - , abdomen blando, no palpo estructura en abdomen. Vulva no edematizada. No saben cuando tuvo el celo, la perra es de un pariente. \N \N 9282 7700 \N 80 2629 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1831 2025-09-25 19:22:52.361095+00 2025-09-25 19:22:52.361103+00 f t Conjuntivitis bacteriana, enfermedad inflamatoria intestinal? Control según evolución y cuando estén los resultados de analisis Indico colirio tobravet D cada 8 hs por 7 dias, ecografía abdominal y perfil general completo. Consultan porque tiene los ojos hinchados. Obesidad marcada, score 4.5/5. Vacunas al día. Conjuntivitis bilateral. Test de fluoresceina negativo. Me comentan que cada 15 días vomita, aveces más seguido. Abdomen blando, no se palpan estructuras. \N \N 9135 7565 \N 80 2602 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1832 2025-09-25 19:27:00.868124+00 2025-09-25 19:27:00.868131+00 f t DAAP/alergia alimentaria/micosis/atopia/alopecia psicogenica Usar pipeta todos los meses Pipeta para pulgas de Fioroni y spray de ketoconazol por el momento. En dos semanas control, a evaluar usar corticoide algunos días. Telemedicina. Prurito en la cabeza, lesiones por rascado. Gato indoor, no tiene pulgas según la tutora. Tiene algunas lesiones redondeadas alopécicas. Explico que es una consulta para atender personalmente, pero la tutora afirma que el paciente es muy agresivo. \N \N 9151 7583 \N 80 2601 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1833 2025-09-25 19:34:17.496448+00 2025-09-25 19:34:17.496454+00 f t Enfermedad inflamatoria intestinal Control en un mes. Según evolución sumamos metronidazol por unas semanas. Cambio de alimento royal canin fit a royal canin hipoalergenico. No dar ningún otro alimento. Control con ecografía y perfil general completo (solicitados por mí en julio). Aumento de espesor del estómago y de intestino delgado, 3 linfonodulos homogéneos reactivos. La ecografía es prácticamente la misma que hace 2 años. Estudio de sangre: leucocitosis linfocitica, gpt y got elevadas, globulinas elevadas. \nClínicamente estable, vómitos 1, 2 o 3 veces por semana. Score corporal 1,5/5, pelo irsuto. Borgorigmos a la palpación abdominal. Sin diarreas. \N \N 4384 3648 \N 80 2608 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1834 2025-09-25 19:51:42.72171+00 2025-09-25 19:51:42.721718+00 f t . . . Aplico triple felina y antirrabica \N \N 8639 7127 \N 80 2593 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1835 2025-09-25 21:21:55.027678+00 2025-09-25 21:21:55.027684+00 f t Turno con concretado Turno con concretado Turno con concretado Turno con concretado \N \N 4848 4007 \N 98 2201 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1869 2025-09-27 22:58:21.464003+00 2025-09-27 22:58:21.464009+00 f t . . . El procedimiento fue cancelado y reprogramado a posterior por el tutor. 2025-09-29 6392 5199 \N 104 2083 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1898 2025-10-01 04:29:37.87855+00 2025-10-01 04:29:37.878556+00 f t Discopatia/rinitis? Limitar el uso de las escaleras lo más que se pueda. Se indica comenzar con Amoxicilina por la parte respiratoria y previcox por la molestia en la columna. Se dan orden de placa para columna y tórax. Paciente que presenta epistaxis unilateral con mucho dolor en la columna torácica-lumbar, comenta la propietaria que baja y súbete muchas escaleras. Normotermico y normohidratada. \N 2026-01-01 7886 6492 \N 1 2367 {"studies": [], "medications": [], "specialities": []} +2060 2025-10-13 23:24:49.128412+00 2025-10-13 23:24:49.128467+00 f t control No se ingresó información No se ingresó información extraccion 2026-01-13 7316 6002 \N 112 2247 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1836 2025-09-25 22:23:57.502607+00 2025-09-25 22:23:57.502613+00 f t . Disponibilidad de abundante agua y alimento y control de succión de los gatitos. Administración de alimento para gatos cachorros a la madre. Vacunación de gatitos luego de las 9 semanas de vida. Desparasitacion a los 15 días de vida y cada 15 días hasta los dos meses de vida. Luego mensualmente hasta mes 6 y luego cada 3 meses hasta mes 12. . Bengalí. EOG normal. Ayer parió 4 gatitos (3 vivos). La gata se encuentra con apetito normal, sensorio alerta. Los tres gatitos succionan en forma normal. \N \N 6788 7614 \N 92 2610 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1837 2025-09-26 00:11:12.869778+00 2025-09-26 00:11:12.869787+00 f t Neoplasia con metástasis . Eutanasia Sensorio deprimido. Tumor en el cuello con metástasis en diversos órganos. Anorexia y vomitos. 12 años. Anemia HTO 24. Ecografía y ASc. \N \N 9220 7643 \N 92 2616 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1838 2025-09-26 00:14:49.308439+00 2025-09-26 00:14:49.308448+00 f t Enteritis Control 24 hs Dieta antidiarreica, clamoxyl Diarrea intermitente. Hoy no defecó. Decaimiento. Temperatura 38.8. anorexia, hidratación normal \N \N 9310 7733 \N 92 2631 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1839 2025-09-26 00:15:32.947219+00 2025-09-26 00:15:32.947225+00 f t Enteritis Control 24 hs Dieta antidiarreica, clamoxyl, kualcovit Diarrea intermitente. Hoy no defecó. Decaimiento. Temperatura 38.8. anorexia, hidratación normal \N \N 9310 7733 \N 92 2631 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1840 2025-09-26 00:24:57.907215+00 2025-09-26 00:24:57.907223+00 f t Enteritis . Examen coproparasitológico + ASC perfil general 7 Materia fecal con sangre. EOG normal. No volvió a defecar con sangre. Hoy materia fecal blanda. \N \N 9239 7660 \N 92 2621 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1841 2025-09-26 01:56:08.854829+00 2025-09-26 01:56:08.854835+00 f t Asma . Rx tórax , control cardiólogico Tos intermitente. Resto normal \N \N 9126 7557 \N 92 2594 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1842 2025-09-26 02:04:31.894727+00 2025-09-26 02:04:31.894732+00 f t Desorden endocrinologico / asma . Rx tórax LL, perfil general 7 y control cardiólogico Tos seca intermitente, cataratas, ceguera, polidipsia, poliuria, polifagia \N \N 9345 7765 \N 92 2644 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1843 2025-09-26 02:10:01.828889+00 2025-09-26 02:10:01.828899+00 f t . Desparasitacion+ control si vuelve a vomitar Dieta astringente. EOG normal.. vomitó dos veces. \N \N 9307 7724 \N 92 2643 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1844 2025-09-26 12:22:33.027262+00 2025-09-26 12:22:33.02727+00 f t eco . . eco \N \N 9282 7700 \N 90 2639 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1845 2025-09-26 12:30:20.610147+00 2025-09-26 12:30:20.610154+00 f t eco , , eco \N \N 8397 6920 \N 90 2584 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1846 2025-09-26 12:32:52.679776+00 2025-09-26 12:32:52.679783+00 f t eco . . eco \N \N 8397 7504 \N 90 2584 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1847 2025-09-26 12:36:58.785504+00 2025-09-26 12:36:58.785513+00 f t Cardiologico . . Cardiologico \N \N 1794 1705 \N 82 2500 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1848 2025-09-26 15:31:03.719729+00 2025-09-26 15:31:03.719735+00 f t - - Se aplica antirabica y se toma muestra para un P7 Eog: s/p\nCon sobrepeso \N \N 9071 7507 \N 1 2611 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1849 2025-09-26 15:54:11.578788+00 2025-09-26 15:54:11.578793+00 f t - - - No se pudo tomar presión ni revisar el paciente por su temperamento, la propietaria decide reprogramar el turno. \N \N 8860 7324 \N 1 2538 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1850 2025-09-26 16:01:52.893982+00 2025-09-26 16:01:52.89399+00 f t Granuloma eosinofilico - Se comenta tratar de manejar el estrés del animal con mejoramiento ambiental y que si usa corticoides para manejar las úlceras que sea a la menor dosis efectiva. Eog: s/p. Paciente muy miedoso, muy asustadizo. Presenta una única lesión muy pequeña en la cara interna del labio derecho inferior. La propietaria comenta que a lo único que responden esas lesiones es a los corticoides y que solamente se presentan en la cabeza y cuello las lesiones. \N \N 9210 7634 \N 1 2617 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1851 2025-09-26 18:01:29.818837+00 2025-09-26 18:01:29.818843+00 f t laboratorio . . laboratorio \N \N 8378 6902 \N 100 2532 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1852 2025-09-26 21:57:18.577401+00 2025-09-26 21:57:18.577406+00 f t labortaorio . . laboraatorio \N \N 9071 7507 \N 100 2612 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1870 2025-09-28 01:22:36.157751+00 2025-09-28 01:22:36.157758+00 f t enfermedad articular degenerativa coxofemoral bilateral \nenfermedad articular degenerativa en rodilla izquierda colocar en almohadillas de miembros posteriores medias/cintas/gomas antideslizantes para favorecer el agarre del paciente al piso - - canino macho mestizo 30 kg . \nluego de la primera visita , se indicó cambio del condroprotector ( tomaba oltrans flex e indiqué modificarlo por rumivital forte)\ncomenzamos tto inyectable con artrosan ( 1.5 ml cada 7 dias por 4 semanas ) 2025-10-04 4255 3550 \N 88 2351 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [{"name": "ARTROSAN x 10 cc - Inyectable -", "user": null, "group": 6, "active": true, "company": "Konig", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.449175-03:00", "updated_at": "2025-02-20T08:17:51.449180-03:00", "description": "Inyección antiinflamatoria", "id_medicina": 564, "presentation": 10, "medication_type": 2, "next_application_months": 1}], "specialities": []} +1899 2025-10-01 04:39:45.416989+00 2025-10-01 04:39:45.416997+00 f t Rinitis alérgica? - Se aplica triple felina. Comenta la propietaria que de vez en cuando estornuda y a veces vomita. A la revisacion clínica, no evidencia ninguna particularidad. \N 2026-01-01 6191 5055 \N 1 2036 {"studies": [], "medications": [], "specialities": []} +2136 2025-10-21 13:12:29.714814+00 2025-10-21 13:12:29.714823+00 f t . . Se extrae catéter, el paciente se muestra tranquilo y facilita la maniobra . 2025-10-21 2174 9015 \N 104 2902 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1853 2025-09-26 23:59:04.401+00 2025-09-26 23:59:04.401006+00 f t Insuficiencia cardiaca con edema pulmonar consecuente Derivación para evaluación cardiológica Medicación inyectable Decaída, vómitos desde ayer al mediodía y está flaca.\nTuvo el celo hace dos semanas. Coincidió el celo con que la desparasitó internamente. Hace una semana comenzó con materia fecal blanda. Ve que intenta hacer pis más veces que lo normal. Desde que vomitó no volvió a comer.\nEOG: deprimida, mucosas pálidas, Tlax 3s,patrón ventilatorio con predominio abdominal, soplo 4/6\nEOP: abdomen blando\n\n Coloco catéter, saco sangre y administro mediación. Derivó paciente a internacion para evaluación carsiologica por posible edema pulmonar. Allí decidirán si deben instaurar un goteo previo a la evaluación del cardiólogo a modo de estabilizar. \N \N 9419 7830 \N 113 2653 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [{"id_medicina": "641", "next_application_months": 0}, {"id_medicina": "1192", "next_application_months": 0}, {"id_medicina": "1033", "next_application_months": 0}, {"id_medicina": "950", "next_application_months": 0}], "specialities": []} +1854 2025-09-27 00:28:30.405737+00 2025-09-27 00:28:30.405746+00 f t Control Se indica gabapentina para extracción de sangre. Se solicita vif+VILEF . EOG normal. \N \N 9108 7540 \N 92 2587 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1856 2025-09-27 17:35:04.753743+00 2025-09-27 17:35:04.753754+00 f t . . . EOG normal. \N \N 9437 7845 \N 92 2658 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1857 2025-09-27 17:36:28.445747+00 2025-09-27 17:36:28.445752+00 f t Vacunación anual . . EOG normal \N \N 9437 7846 \N 92 2658 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1858 2025-09-27 17:37:46.243165+00 2025-09-27 17:37:46.243174+00 f t Vacunación anual . . EOG normal \N \N 9437 7844 \N 92 2658 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1859 2025-09-27 17:38:30.938193+00 2025-09-27 17:38:30.938201+00 f t Vacunación anual . . EOG normal \N \N 9437 7847 \N 92 2658 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1157", "next_application_months": 12}], "specialities": []} +1860 2025-09-27 18:36:28.964491+00 2025-09-27 18:36:28.964502+00 f t . . . Eutanasia por tumor maligno en rama mandíbular derecha \N \N 6788 7614 \N 92 2641 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1861 2025-09-27 22:30:34.533019+00 2025-09-27 22:30:34.533025+00 f t . . Se realiza extracción de sangre para perfil completo+ T4.\nEl paciente se mostró tranquilo y permitió la maniobra sin inconvenientes, los tutores colaboraron muy bien durante el procedimiento lo que facilitó la extracción. . 2025-09-29 7897 6499 \N 104 2521 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1862 2025-09-27 22:33:41.12777+00 2025-09-27 22:33:41.127775+00 f t . . Se realiza extracción de sangre para perfil completo+ T4.\nEl paciente se mostró tranquilo y permitió la maniobra sin inconvenientes, los tutores colaboraron muy bien durante el procedimiento lo que facilitó la extracción. . 2025-09-29 7897 7240 \N 104 2522 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1863 2025-09-27 22:41:22.295833+00 2025-09-27 22:41:22.29584+00 f t . Evaluar administrar medicación que ayude al mejor manejo del paciente para futuras maniobras invasivas. Se realiza extracción de sangre para IGF1, progesterona cuantitativa, fructosamina, sodio, potasio, urea, creatinina y CPK.\nEl paciente presentó resistencia y resultó dificultoso manterlo quieto durante la maniobra. . 2025-09-29 7899 6503 \N 104 2369 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1864 2025-09-27 22:42:16.619102+00 2025-09-27 22:42:16.619108+00 f t . . Se realiza extracción de sangre para perfil completo.\nEl paciente se mostró tranquilo y permitió la maniobra sin inconvenientes, los tutores colaboraron muy bien durante el procedimiento lo que facilitó la extracción. . 2025-09-29 7745 6377 \N 104 2327 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1865 2025-09-27 22:46:44.391684+00 2025-09-27 22:46:44.391693+00 f t . . Se realiza extracción de sangre para perfil tiroideo + analisis de orina completo y relacion cortisol/creatinina.\nPaciente confrontativo, dificultó la maniobra. . 2025-09-29 6392 5199 \N 104 2251 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1866 2025-09-27 22:49:04.373646+00 2025-09-27 22:49:04.373653+00 f t . Evaluar uso de medicacion previa a maniobras invasivas. Se realiza extracción de sangre para perfil 7.\nEl paciente presento resistencia y resultó dificultoso mantenerlo quieto durante la maniobra. . 2025-05-29 7341 6029 \N 104 2265 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1867 2025-09-27 22:53:33.580249+00 2025-09-27 22:53:33.580258+00 f t . . Se realiza extracción de sangre para perfil pre-quirurgico hemostatico + T4L.\nLa extracción se tornó dificil aun habiendo administrado gabapentina previo a la maniobra. . 2025-09-09 313 372 \N 104 1936 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1868 2025-09-27 22:57:09.640676+00 2025-09-27 22:57:09.640682+00 f t . . Se realiza extracción de sangre para perfil completo + coagulograma.\nEl paciente se mostró tranquilo permitió la maniobra sin inconvenientes. . 2025-09-29 1798 1709 \N 104 1902 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +2137 2025-10-21 13:12:53.538855+00 2025-10-21 13:12:53.538862+00 f t . . Se extrae catéter, el paciente se muestra tranquilo y facilita la maniobra . 2026-01-21 2174 9013 \N 104 2902 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1871 2025-09-28 17:26:54.370489+00 2025-09-28 17:26:54.370496+00 f t Artritis, subluxacion? Si no ha cambios, radiografía. Descenso de peso Paciente con lamido compulsivo de MPD, hay pododermatitis y pigmentación. Molestias articulares desde coxofemoral y rodilla. Sugiere dolor reflejo en falanges. Tiene sobrepeso. \N \N 9459 7869 \N 68 2661 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [{"id_medicina": "1149", "next_application_months": 12}, {"id_medicina": "1181", "next_application_months": 12}, {"id_medicina": "702", "next_application_months": 0}], "specialities": []} +1872 2025-09-28 17:27:38.916278+00 2025-09-28 17:27:38.916286+00 f t Eutanasia Eutanasia Eutanasia Paciente hipotético, caquectico. Terminal \N \N 3553 3031 \N 68 2649 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1873 2025-09-29 10:35:04.228402+00 2025-09-29 10:35:04.228413+00 f t Estomatitis. Si se vuelve recurrente o no mejora, consulta presencial Prednisolona para desinflamar y analgesia y Odontobiotic como antibiótico para cavidad oral para cubrir bacteremias secundarias. Disfagia, arcadas y vómitos. Sangrado oral sin aparente lesion de cavidad.\nAntecedente de convivir con paciente ViLef positivo. PCR negativo. \nHace poco se incorporó nueva gatita con gingivitis leve. Ambos vacunados. Sospecho cuadro viral, evaluaremos que sea autolimitante leve. Conserva apetito a pesar de molestias para deglutir. \N \N 9514 7924 \N 68 2677 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1874 2025-09-29 15:36:19.254903+00 2025-09-29 15:36:19.254909+00 f t laboratorio . . laboratorio \N \N 9340 7760 \N 112 2645 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1875 2025-09-29 15:40:11.76468+00 2025-09-29 15:40:11.764687+00 f t labo , , labo \N \N 822 928 \N 85 2652 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1876 2025-09-29 15:45:32.909051+00 2025-09-29 15:45:32.909056+00 f t labo . . labo \N \N 8397 6920 \N 112 2585 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1877 2025-09-29 16:58:38.576944+00 2025-09-29 16:58:38.57695+00 f t Gastritis Vacunar en un mes Dieta casera Vómitos hace 2 días\nCome poco balanceado tratan de darle más comida natural. Comió hígado y vomitó.\nTiene pulgas.\nEOG: s/p\nPresenta materia fecal de pulga en cuartos traseros. No presenta molestia abdominal. \nDesparasitamos internamente y externamente. \nIndicó dieta casera con pollo, huevo ricota pescado como fuente proteica. Yogur natura o queso crema para sumar probióticos. Opcional natuplus para dar sabor. \nAde caps 1/2 nexos al día como fuente de omega 3. En un mes si la dieta va bien agregaremos taurina y calcio para completar formulación e hígado una vez a la semana. \nAplico antihemetico y protector gástrico.\nCorto las uñas \nControl en un mes para vacunar \N \N 9568 7962 \N 113 2682 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [{"id_medicina": "9", "next_application_months": 0}, {"id_medicina": "641", "next_application_months": 0}, {"id_medicina": "1034", "next_application_months": 0}], "specialities": []} +1878 2025-09-30 10:39:48.73404+00 2025-09-30 10:39:48.734046+00 f t Vacuna bronchiseptica . . EOG NORMAL \N \N 7187 5891 \N 92 2642 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [{"id_medicina": "1189", "next_application_months": 12}], "specialities": []} +1879 2025-09-30 15:18:42.111822+00 2025-09-30 15:18:42.111827+00 f t Eco abdominal . . Eco abdominal \N \N 7443 6127 \N 90 2606 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1880 2025-09-30 17:46:27.669301+00 2025-09-30 17:46:27.669308+00 f t - - - Propietarios están decididos a eutanasiarla no quieren realizar ni medicacion, ni estudios complementarios, la perrita tiene incapacidad de incorporarse por debilidad de los miembros posteriores. \N \N 9276 7695 \N 1 2628 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1881 2025-09-30 17:53:31.61565+00 2025-09-30 17:53:31.615656+00 f t Gastritis? - Se aplica ranitidina, ondansetron. Se indica a la propietaria intentar que coma solamente dieta de bajos residuos. Como después de la última visita la propietaria comenta que está inapetente y comenzó con vómitos. A la palpación abdominal no se evidencia ninguna particularidad estado de hidratación normal y normotermico. \N \N 8714 7193 \N 1 2509 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1882 2025-09-30 17:55:33.400348+00 2025-09-30 17:55:33.400355+00 f t - - Se aplica triple felina y antirabica. Eog: s/p \N \N 9430 7837 \N 1 2656 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1883 2025-09-30 17:56:46.161319+00 2025-09-30 17:56:46.161324+00 f t - - Se toma muestra de sangre para un p7 con glucosa Eog: s/p \N \N 9137 7566 \N 1 2597 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1884 2025-09-30 17:58:03.618206+00 2025-09-30 17:58:03.618211+00 f t - - Se toma muestra de sangre para un p7 con glucosa de control. Eog: s/p \N \N 9137 7568 \N 1 2598 {"recipes": [{"rx": "", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +1885 2025-09-30 20:09:52.670201+00 2025-09-30 20:09:52.670211+00 f t - Se da orden para placas de frente y perfil de dicha articulación, continuar con previcox los días siguientes para manejo del dolor. Se aplica dexametasona a 0,3 mg/kg. Para intentar bajar la inflamación. La propietaria comenta que después de uno de los paseos ya no quiso apoyar la mano izquierda. Dice que cuando se la quiere tocar no se deja. El perro es muy temperamental. En la revisacion clínica se evidencia que está con mucho dolor y crepitación a nivel del codo izquierdo. Aumento de los fondos de saco de dicha articulación. \N 2025-12-30 873 985 \N 1 2692 {"studies": [], "medications": [], "specialities": []} +1943 2025-10-03 04:06:37.285006+00 2025-10-03 04:06:37.285011+00 f t - - Se realiza euranasia Paciente con una pérdida ponderal muy marcada, deshidratada, no se logra mantenter en pie, los propietarios comentan haber hecho estudios pero no determinan la causa de su estado. Y deciden dormirla. \N 2026-01-03 405 480 \N 1 2728 {"studies": [], "medications": [], "specialities": []} +1886 2025-09-30 20:41:22.436802+00 2025-09-30 20:41:22.436808+00 f t Cuerpo extraño? Pionera cerrada? Patología hepatica? estar alerta a las indicaciones mencionadas en la consulta. Observación de cómo respira, color de la mucosas de los labios Ofrecer comida casera. Realizar estudios para evaluar cómo seguimos No come hace dos días\nSi toma agua. No está castrada. La tutora se fue tres meses de vacaciones volvió hace 6 días. Es de comerse cosas. Defeco hace dos días. Orina normal.\nEOG: alerta, mucosas rosadas eop : abdomen abalonado\nSaco sangre para perfil completo sin orina e indicó ecografía abdominal. \N 2025-12-30 9668 8053 \N 113 2690 {"studies": [{"id": null, "name": "8"}], "medications": [{"id_medicina": "641", "next_application_date": "2025-09-30", "next_application_months": 0}, {"id_medicina": "1033", "next_application_date": "2025-09-30", "next_application_months": 0}, {"id_medicina": "838", "next_application_date": "2025-09-30", "next_application_months": 0}], "specialities": [{"id": null, "name": "41"}]} +1887 2025-09-30 20:58:44.664993+00 2025-09-30 20:58:44.665001+00 f t Gastroenteritis. Ecografía si es que no mejora y control clínico. Ayuno hasta la noche. Dieta casera a partir de hoy si no ha vómitos. Metronidazole VO. Vómitos desde ayer, diarreas con sangre. Come plantas y rompe maderas. Sale dos veces a pasear. Hoy comió muy poco y toleró. Intestinos inflamados. Hidratación al límite. Mucosas Rosa, dolor abdominal leve. 2025-12-30 264 308 \N 68 2689 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2}, {"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2}, {"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2}], "specialities": []} +1888 2025-09-30 22:57:54.671888+00 2025-09-30 22:57:54.671894+00 f t Neoplasia mamaria maligna. Limpieza por moscas. Optamox VO y prednisolona en dosis decrecientes. Neoplasia mamaria inguinal derecha ulcerada. No van a operar, el tratamiento es médico paleativo y hay alto riesgo de miasis. 2025-12-30 5342 4386 \N 68 2680 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2}], "specialities": []} +1889 2025-10-01 00:33:11.027716+00 2025-10-01 00:33:11.027723+00 f t Gastritis Vacunación anual Dieta astringente durante 5 días. Control si vuelve a vomitar. La tutora refiere Vómitos intermitentes desde hace tres días. Apetito normal. Defeca normal, el paciente se escapó reiteradas veces durante la visita. \N 2025-12-30 9660 8045 \N 92 2695 {"studies": [], "medications": [], "specialities": []} +1890 2025-10-01 00:45:34.525692+00 2025-10-01 00:45:34.5257+00 f t Crecimiento en más inflamatorio o tumoral Rx cabeza L-L y oblicua Además de la consulta fue desparasito Spot on EOG normal. Inflamación en rama mandíbular derecha. \N 2025-12-30 8676 7168 \N 92 2502 {"studies": [], "medications": [], "specialities": []} +1891 2025-10-01 01:21:29.104807+00 2025-10-01 01:21:29.104815+00 f t . . . Eutanasia \N 2025-12-30 6788 5547 \N 92 2641 {"studies": [], "medications": [], "specialities": []} +1855 2025-09-27 17:34:19.392101+00 2025-09-27 17:34:19.392117+00 f t . . . Teleconsulta para ver resultados del análisis de sangre. Colesterol fuera de rango normal. Faltó glucemia por muestra insuf. Resto normal. Sugiero control endocrinologico. La tutora refiere ser sobrina del endocrinólogo Dr.Víctor Castillo, por lo que consultara con el mismo y luego nos indicará los estudios que recomienda. \N 2025-12-30 9071 7507 \N 92 2660 {"studies": [], "medications": [], "specialities": []} +1892 2025-10-01 02:45:12.023573+00 2025-10-01 02:45:12.02358+00 f t Discopatia? Se indica continuar con prednisolona a dosis decreciente y comenzar cuando pueda con fisioterapia. Se aplica dexametasona a 0,5 mg/kg, dipirona complejo B Paciente que según el propietarios después de un juego con la pelota comenzó a estar con molestia de forma intermitente. Al revisarla se evidencia un dolor muy marcado de columna toráco-lumbar y en las placas que se habían realizado con anterioridad se había evidenciado dicopatia en varios discos de varios segmentos de la columna. \N 2025-12-30 9674 8059 \N 1 2696 {"studies": [], "medications": [], "specialities": []} +1893 2025-10-01 02:46:29.091314+00 2025-10-01 02:46:29.091322+00 f t - - Aplicación de sextuple y antirabica. Eog: s/p \N 2025-12-30 8947 7402 \N 1 2565 {"studies": [], "medications": [], "specialities": []} +1894 2025-10-01 02:49:16.957936+00 2025-10-01 02:49:16.957944+00 f t Fístula de abscedacion de sacos anales Mantener limpia la herida. Se indica hacer traramiento con previcox y Spectryl. La propietaria tenía intenciónes de vacunarla pero como presenta una fístula de los sacos anales tiene que comenzar con ntibioticos. Y luego de una semana de terminados con los mismos puede realizar la vacunación. \N 2025-12-30 9601 7992 \N 1 2681 {"studies": [], "medications": [], "specialities": []} +1896 2025-10-01 02:52:04.416102+00 2025-10-01 02:52:04.416106+00 f t - - Se aplica vacuna sextuple Eog: s/p \N 2025-12-30 2484 7564 \N 1 2600 {"studies": [], "medications": [], "specialities": []} +1895 2025-10-01 02:50:39.713636+00 2025-10-01 02:50:39.713644+00 f t - - Se aplica sextuple. Eog: s/p \N 2025-12-30 9157 7588 \N 1 2603 {"studies": [], "medications": [], "specialities": []} +1897 2025-10-01 04:24:59.845075+00 2025-10-01 04:24:59.84508+00 f t Granulomas epsinofilico? Se india para la próxima visita hacer tratamiento con gabapentina previa vista. Si indica hacer un tratamiento con bactroprofen durante 7 días. Paciente muy temperamental no deja que se acerque ni la propietaria, me muestra unas fotos de las lesiones. \N 2026-01-01 9353 7771 \N 1 2646 {"studies": [], "medications": [], "specialities": []} +1900 2025-10-01 04:47:06.027164+00 2025-10-01 04:47:06.027169+00 f t Gastroenteritis? Se indica continuar con giacoccide en comprimidos. Se aplica ondansetron, ranitidina, dipirona,tramadol sulfatrimetropin y diafin a mitad de dosis. Paciente se lo nota decaído, presenta dolor abdominal por ahora mantiene la hidratación, pero se lo nota molesto. Normotermico pero con fascia nauseosa. \N 2026-01-01 8918 7379 \N 1 2567 {"studies": [], "medications": [], "specialities": []} +1901 2025-10-01 04:53:14.413666+00 2025-10-01 04:53:14.413674+00 f t Rinitis? Dar la medicación con comida ya en el estómago. Se espera el resultado de la ecografía abdominal y análisis de sangre. Comenzar con Amoxicilina durante 7 días. Se revisa el paciente y se cometa a la propietaria que posiblemente se trate de una rinitis. No presenta hipertermia ni deshidratación, tampoco aumento del tamaño de los ganglios linfáticos. \N 2026-01-01 8524 7021 \N 1 2495 {"studies": [], "medications": [], "specialities": []} +1902 2025-10-01 04:55:03.45613+00 2025-10-01 04:55:03.456139+00 f t - - Aplico dexametasona y tribiotic. Se aplica medicación según indica la receta. \N 2026-01-01 8353 6884 \N 1 2442 {"studies": [], "medications": [], "specialities": []} +1903 2025-10-01 04:56:14.94649+00 2025-10-01 04:56:14.946498+00 f t - - Se vacían las glándulas y se cortan las uñas. Eog: s/p \N 2026-01-01 123 128 \N 1 2074 {"studies": [], "medications": [], "specialities": []} +1904 2025-10-01 04:59:10.677737+00 2025-10-01 04:59:10.677742+00 f t ?? - Controlar y si notan alguna molestia filmarlo para evaluar posteriormente. Al momento de la consulta el paciente no manifiesta ningún dolor a la palpación-presión y flexión- extensión forzada de las articulaciones. Juega con normalidad. \N 2026-01-01 8762 7232 \N 1 2520 {"studies": [], "medications": [], "specialities": []} +1905 2025-10-01 05:02:31.239518+00 2025-10-01 05:02:31.239524+00 f t Alergia? - Se indica retirar en la mayor medida que se pueda los perfumes y desodorantes Eog S/p comenta la propietaria que se vez en cuando tose, pero a su vez la propietaria tiene la casa con muchos aromatizadores y perfumes. \N 2026-01-01 8396 6919 \N 1 2448 {"studies": [], "medications": [], "specialities": []} +1906 2025-10-01 05:03:48.99643+00 2025-10-01 05:03:48.996438+00 f t - - - Eog: s/p paciente normotermico, normohidratado \N 2026-01-01 8396 6921 \N 1 2449 {"studies": [], "medications": [], "specialities": []} +1907 2025-10-01 05:07:53.761127+00 2025-10-01 05:07:53.761133+00 f t Discopatia? Que no suba más escalera ni sillones. Se comienza terapia de rescate a analgésica y antiinflamatoria, si continúa con molestia realizar placas de control Paciente normotermico, normohidratado, presenta marcado dolor en la zona torácico-lumbar, al parecer podría ser el origen de su malestar \N 2026-01-01 8237 6782 \N 1 2429 {"studies": [], "medications": [], "specialities": []} +1908 2025-10-01 05:12:23.876085+00 2025-10-01 05:12:23.876091+00 f t Parasitosis Se indica realizar después citaciones periódicas o controles coproparsitologicos. Se aplica portector gástrico, antihemetico y antidiarreico a mira d de dosis. Se da un esquema de despeasitacion en forma gradual. Paciente felino condición corporal un poco baja, al parecer presenta parasitosis. Presenta leve molestia abdominal, está con vómitos y en el vómitos devolvió un parásito de forma fonicular. \N 2026-01-01 7836 6448 \N 1 2374 {"studies": [], "medications": [], "specialities": []} +1909 2025-10-01 05:15:30.129846+00 2025-10-01 05:15:30.129856+00 f t RLCA No subir tanto escaleras y sillones. Se indica hacer estudio radiográfico y comenzar con tratamiento antiinflamatorio por unos dias Paciente normotermico, normohidratado, al parecer presenta molestia en la articulación FTRI que presenta compresión tibial (+) le molesta bastante. \N 2026-01-01 8310 6843 \N 1 2439 {"studies": [], "medications": [], "specialities": []} +1910 2025-10-01 05:19:41.924347+00 2025-10-01 05:19:41.924352+00 f t Gastroenteritis? Controlar los volúmenes de las cosas que come y cuando pasea que no se coma nada. Se aplica ondansetron y ranitidina para los vómitos, la diarrea se indica manejo nutricional. Paciente normotermico, normohidratado, comenta la propietaria que está con vómitos interntes y diarreas. No presenta dolor abdominal. \N 2026-01-01 399 473 \N 1 2379 {"studies": [], "medications": [], "specialities": []} +1911 2025-10-01 05:23:52.28146+00 2025-10-01 05:23:52.281468+00 f t Discopatia? Artrosis de cadera? No subir escaleras ni sillones. Se indica terapia analgésicas y estudios radiográficos correspondientes. Normotermico, se lo nota con mucho dolor e incapacidad para poder mantener peso en los miembros posteriores, se comenta que habría que hacer un estudio radiográfico de columna y evaluar si es que no viene por ese lado también la incapacidad de pararse. \N 2026-01-01 8030 6618 \N 1 2391 {"studies": [], "medications": [], "specialities": []} +1912 2025-10-01 05:28:42.063081+00 2025-10-01 05:28:42.063089+00 f t Asma- broncopatia Retirar aromatizadores ambientales Se indica tratamiento antibiótico y si fuera necesario hacer tratamiento con puff En el estudio radiográfico se evidencia que está con una broncopatia y puede ser compatible con asma felino. \N 2026-01-01 7443 6127 \N 1 2423 {"studies": [], "medications": [], "specialities": []} +1913 2025-10-01 05:36:40.474544+00 2025-10-01 05:36:40.474549+00 f t Gastritis? Dar dieta de bajos reciduos Se aplica protector gástrico y antiemetico y se indica controlar Al momento de la consulta el paciente se encuentra normotermico y normohidratado, no presenta dolor abdominal, comentan que el cuadro comenzó cuando le cambiaron el alimento balanceado por no conseguir el que le estaban dando normalmente. \N 2026-01-01 470 557 \N 1 2566 {"studies": [], "medications": [], "specialities": []} +1914 2025-10-01 05:38:24.061406+00 2025-10-01 05:38:24.061415+00 f t - - Se aplica triple felina y rabia Eog: s/p \N 2026-01-01 8730 7209 \N 1 2513 {"studies": [], "medications": [], "specialities": []} +1915 2025-10-01 05:41:08.074347+00 2025-10-01 05:41:08.074353+00 f t Micoplasmosis Controlar en un mes aprox Controlar y cualquier cambio de comportamiento realizar un nuevo chequeo Se comenta que más allá de que sea positivo el análisis se correlaciona mucho con la clinica \N 2026-01-01 5071 4186 \N 1 2464 {"studies": [], "medications": [], "specialities": []} +1916 2025-10-01 05:43:28.618724+00 2025-10-01 05:43:28.618729+00 f t - - Al momento de la revisacion no se evidencia ninguna particularidad se indica contorlae Se revisa y se palpa el abdomen y no se evidencia ni dolor ni bolo fecal, la vejiga se encuentra vacía. \N 2026-01-01 8524 7021 \N 1 2474 {"studies": [], "medications": [], "specialities": []} +2138 2025-10-21 13:14:40.512983+00 2025-10-21 13:14:40.512994+00 f t . . Se realiza extracción de sangre para calcio y glucemia. Mido glucemia con glucometro: 67 mg/dl . 2025-10-21 10355 8597 \N 104 2896 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1917 2025-10-01 05:45:59.779352+00 2025-10-01 05:45:59.77936+00 f t - - Se indica hacer sangre y ecografía de abdomen, se comienza con antibioticoterapia y antiinflamatorios La propietaria indica que está con una posible rinitis, se comenta a la propietaria que en general los felinos son muy dependientes del olfato para comer y si está cursando con una rinitis probablemente venga por ese lado la inapetencia. \N 2026-01-01 8524 7021 \N 1 2475 {"studies": [], "medications": [], "specialities": []} +1918 2025-10-01 05:52:09.597142+00 2025-10-01 05:52:09.597148+00 f t Gastroenteritis? - Se indica realiamzar tratamiento antibiótico y dieta de bajos reciduos. Paciente normotermico, deshidratación muy leve, no presenta dolor abdominal. \N 2026-01-01 8390 6911 \N 1 2454 {"studies": [], "medications": [], "specialities": []} +1919 2025-10-01 05:53:06.748662+00 2025-10-01 05:53:06.74867+00 f t - - Se realizan limpieza de orejas, corte de uñas y vaciado de glándulas. Eog:s/p \N 2026-01-01 123 128 \N 1 2428 {"studies": [], "medications": [], "specialities": []} +1920 2025-10-01 13:42:39.864916+00 2025-10-01 13:42:39.864922+00 f t Conjuntivitis bacteriana. Limpiar con té tibio cuando se presentan lagañas. Colirios antibacteriano con esteroides 1 gota c/ 8 hs x 7 días. Consulta x lagañas en un ojo. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. Test fluoresceína neg. Conjuntivitis leve. 2026-01-01 9176 7605 \N 70 2604 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1921 2025-10-01 13:49:31.24757+00 2025-10-01 13:49:31.247579+00 f t Rinitis leve. Volver a consultar si no mejora. Clamoxyl 0,5 ML SC. Consulta x aparente estornudo con sangre. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. 2026-01-01 9290 7706 \N 70 2630 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1922 2025-10-01 13:59:02.740271+00 2025-10-01 13:59:02.740284+00 f t Gastritis crónica. Ninguno en especial. Consulta x control gral. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. 2026-01-01 9168 7599 \N 70 2605 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1923 2025-10-01 20:24:18.802027+00 2025-10-01 20:24:18.802032+00 f t Hepatopatía? S/recomendaciones hasta rdos S/tto hasta rdos Come hipoalergénico hace algunos años con mucha voluntad, xq hacía cuadros de prurito intenso, según relatan estacional. Hace unos días notan q está comiendo menos cantidad. Le ofrecieron kitten y lo come con ganas. En 2022 tuvo un episodio similar con pérdida de peso, le hicieron AS y dx patología hepática, trataron y remitió, luego recuperó peso. Revisación s/p. 2026-01-01 9687 8073 \N 91 2704 {"recipes": [], "studies": [{"id": 8, "name": "Perfil General Completo sin Orina"}, {"id": 1, "name": "Ecografia"}], "medications": [], "specialities": []} +1924 2025-10-01 20:46:00.031657+00 2025-10-01 20:46:00.031662+00 f t Posible anemia - - Consulta porque tuvo 2 días de inapetencia, y tomaba poco agua. Luego comió y tomó agua. A la revisacion solo me llama la atención las mucosas ligeramente pálidas. Indico perfil general completo con orina 2025-09-25 9270 7688 \N 80 2627 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1925 2025-10-01 20:48:21.701587+00 2025-10-01 20:48:21.701593+00 f t . . . Control de su asma. Tuvo un episodio en el cual por estrés tuvo 20 segundos de tos. Está actualmente con puf fluticasona y salmeterol día por medio. Auscultación murmullo vesicular aumentado. Pasamos a par fiuticasona día por medio. Control en dos meses, posiblemente volvamos a fluticasona 1 vez al día. 2025-11-23 4433 3688 \N 80 2609 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1926 2025-10-01 20:51:36.871077+00 2025-10-01 20:51:36.871082+00 f t Sensibilidad digestiva/ hepatopatia/ afección de vesícula biliar . . Vómitos y diarrea de 12 hs de evolución. Tuvo 8 vómitos y diarrea liquida. Suele repetir estos cuadros. Ayer le dió un snack para limpiar los dientes de perros. Vacunas al día y desparasitaciones al día. Alerta, deshidratado, sin dolor abdominal. Aplico suero 250 ml sc + ranitidina + metoclopramida. Indico perfil general completo y ecografía abdominal. Control con los resultados. 2025-10-04 9551 7949 \N 80 2678 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1927 2025-10-01 20:53:36.625678+00 2025-10-01 20:53:36.625685+00 f t Tos alérgica ambiental . Gabapentina 150 mg 2 hs antes de la visita. Deberá reprogramar un turno. Tuvo tos ayer, luego dejó de toser. Le hicieron masajes en el cuello y no tosió más. Imposible revisarlo, no me permite nisiquiera acercarme. 2025-10-04 9451 7861 \N 80 2662 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1928 2025-10-01 20:54:26.687269+00 2025-10-01 20:54:26.687274+00 f t . . . Eog sol. Aplicó triple felina y antirrabica. 2026-01-01 9412 7824 \N 80 2655 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1929 2025-10-02 00:41:45.344704+00 2025-10-02 00:41:45.344713+00 f t Prurito x pulgas Desparasitar externa e interna. Vacunar Seguir con milacrem crema Herida en ventral de cuello 2026-01-01 9716 8098 \N 114 2709 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +1930 2025-10-02 00:46:30.548973+00 2025-10-02 00:46:30.54899+00 f t Gastritis Indico dieta pollo zanahoria hervida. Pileran iny ranitidina inyectable. Ayer vómito una vez la comida, hoy vómito color amarillo. Hidratación bien. Ánimo bien. Mucosas rosadas. 2026-01-01 8879 7341 \N 114 2553 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1931 2025-10-02 01:45:00.844713+00 2025-10-02 01:45:00.844721+00 f t celo ayuno de al menos 10 hs previo a la extraccion de sangre no realizo extraccion de sangre ya que la paciente no tiene el ayuno correspondiente.\nrealizo orden para chequeo cardiologico como prequirurgico para castracion e indico ayuno para extraccion de sangre para perfil prequirurigico canino hembra caniche entera 1.5 años .\nacudo a domicilio para control general, extraccion de sangre para prequirurgicos de castracion y emision de orden para control cardiologico\nrevision clinica\naus tonos normales\npalpacion abdominal s/p\nnormotermica \nnormohidratada\nedema vulvar. ( signo externo de celo manifiesto). sangrado vulvar\nno vomitos ni diarrea. 2026-01-01 9644 8033 \N 88 2687 {"recipes": [], "studies": [], "medications": [], "specialities": [{"id": 8, "name": "Cardiología"}]} +1932 2025-10-02 01:59:49.632858+00 2025-10-02 01:59:49.632863+00 f t - sugiero realizar rx de torax ya que me comenta la tutora que suele tener episodios de tos seca sin expectorar, evolucion de al menos de 3-4 meses.\nsugiero cambio de alimento de eukanuba a eukanuba bajo en calorias indico desparasitacion con moxidex plus repitiendo a los 15 dias .\nrealizo orden para rx torax ( ll y vd) + control cardiologico + perfil hepatico + hdl + ldl + lipidos totales + tsh + t4 + t4l canino macho caniche entero 8 años 11.2 kg\nvisita a domicilio para vacunacion anual.\ncome eukanuba adulto \ndesparasitaciones internas vencidas\nrevision clinica\naus s/p ( tonos normales) fc 88 lpm\nnormotermico\nnormohidratado\npalpacion abdominal s /p ( abdomen levemente abalonado no manifiesta dolor a la palpacion)\nmucosas rosas tllc 1 seg\ncc 6 2026-01-01 9682 8068 \N 88 2703 {"recipes": [], "studies": [], "medications": [{"name": "PAUL - ANTIRRABICA - Inyectable -", "user": null, "group": 15, "active": true, "company": "PAUL", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.860418-03:00", "updated_at": "2025-02-20T08:17:53.860426-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1153, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-01", "next_application_months": 12}, {"name": "PAUL - 6 SEXTUPLE - Inyectable -", "user": null, "group": 16, "active": true, "company": "PAUL", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.906620-03:00", "updated_at": "2025-02-20T08:17:53.906628-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1162, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-01", "next_application_months": 12}], "specialities": [{"id": 8, "name": "Cardiología"}, {"id": 6, "name": "Radiología"}, {"id": 76, "name": "Laboratorio"}]} +1933 2025-10-02 02:08:43.351421+00 2025-10-02 02:08:43.351426+00 f t . . indico desparasitacion interna con moxidex plus repitiendo a los 15 dias \nproxima vacunacion ( triple felina + antirrabica) felino macho castrado comun europeo . 1.3 años aprox. 4 kg aprox\nlo adoptaron de la calle hace 4 meses.\ncome excellent gato castrado\ndesparasitaciones internas ( ultima pipeta feline full spot on 05/25\nrevision clinica\naus s/ p tonos normales\nnormotermico 37.9\nnormohidratado\npalpacion abdominal s/p\nno vomitos ni diarrea 2025-10-22 9682 8067 \N 88 2703 {"recipes": [], "studies": [], "medications": [{"name": "MOXIDEX PLUS x 6 comp. (2 bls.) - Comprimidos -", "user": null, "group": 3, "active": true, "company": "Mayors", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:50.333960-03:00", "updated_at": "2025-02-20T08:17:50.333968-03:00", "description": "Comprimidos antiparasitarios", "id_medicina": 296, "presentation": 3, "medication_type": 1, "medication_type_name": "Antiparasitario"}, {"name": "FELOCELL CVR - Inyectable -", "user": null, "group": 16, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.886518-03:00", "updated_at": "2025-02-20T08:17:53.886526-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1158, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2025-10-22", "next_application_months": 1}], "specialities": []} +1934 2025-10-02 02:10:14.684016+00 2025-10-02 02:10:14.684025+00 f t . - - no se realiza domicilio ya que la paciente fallece antes de acudir al mismo 2026-01-01 9331 7753 \N 88 2636 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1941 2025-10-02 18:56:53.044801+00 2025-10-02 18:56:53.044809+00 f t Sindrome atopico felino/psicodermatosis No se ingresó información Rp/ ohm pasta + feromonas cuando comience con algun nuevo signo. Consulta dermatologica: paciente medicado con gabapentina para la consulta. Se comporta ok. \nConsulta por lesion alopecica no inflamatoria en traso izq de aparicion fines de septiembre. Actualmente ya con pelo crecido. Suele presentar lesiones x autolamido pero explico que no hace falta medicar. 2026-01-02 6358 5175 \N 75 2618 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1944 2025-10-03 04:09:42.879633+00 2025-10-03 04:09:42.879638+00 f t Odontolitiasis - - En la visita los propietarios comentan que la perrita perdió un diente después de un golpe, al revisar la boca se evidencia que varios de los dientes están móviles, pero al parecer el origen. Inés traumático, es porque hay mucha retracción gingival, por la odontolitiasis que tiene, se comenta y se indica cómo mantener una mejor higiene de la boca de la mascota y si es que se complica en cuanto a su mantenimiento se tendrá que realizar limpieza dental. \N 2026-01-03 1109 1174 \N 1 2716 {"studies": [], "medications": [], "specialities": []} +1947 2025-10-03 10:13:52.311472+00 2025-10-03 10:13:52.311478+00 f t Infección en tarso izquierdo Ovariectomia. Perfil general 7+AOC+serología de brucella+ control cardiologico. indico gabapentina Tribiotic meloxicam (hoy) + spectril durante 10 días. EOG normal. Apetito normal. Polidipsia, poliuria. Entera (En diestro). Presenta inflamación e infección en articulación del tarso izquierdo. 2025-10-09 8854 7319 \N 92 2725 {"recipes": [{"rx": "Spectril 20\\nGabapentina 300", "dx_presuntivo": "Infección del tarso"}], "studies": [{"id": 7, "name": "Perfil General Completo con Orina"}], "medications": [], "specialities": []} +2029 2025-10-11 10:02:49.115627+00 2025-10-11 10:02:49.115632+00 f t Vacunación anual . . EOG normal \N 2026-01-11 10163 8423 \N 92 2792 {"studies": [], "medications": [{"name": "BAGOVAC RABIA", "id_medicina": "1149", "medication_type_name": "Vacuna", "next_application_date": "2026-10-11", "next_application_months": 12}, {"name": "RECOMBITEK C8", "id_medicina": "1171", "medication_type_name": "Vacuna", "next_application_date": "2026-10-11", "next_application_months": 12}], "specialities": []} +2056 2025-10-13 23:22:59.865937+00 2025-10-13 23:22:59.865942+00 f t Bronquitis asmática. Vacunación anual + desparasitacion interna\nEvitar alergenos Prednisol 10 Teleconsulta para ver estudios. Dejó de toser pero continúa con alguna sibilancia. Apetito normal. Control cardiólogico SP, RX tórax: sugiere bronquitis. 2026-01-13 9126 7557 \N 92 2869 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1998 2025-10-08 14:24:24.796032+00 2025-10-08 14:24:24.796037+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-14 10054 8320 \N 106 2812 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1935 2025-10-02 02:42:39.79158+00 2025-10-02 02:42:39.791589+00 f t . sugiero realizar ecografia abdominal ( por hallazgos a nivel clinico descriptos anteriormente). La tutora me comenta que suele presentar vomitos esporadicos pero tanto animo como apetito los mantuvo siempre. aplico meloxivet inyectable y dejo 4 jeringas para aplicacion subcutanea de misma medicacion . ( explico como realizar las aplicaciones)\nindico desparasitacion con moxidex plus repitiendo a los 15 dias + colocacion de pipeta para desparasitacion externa felino hembra comun europeo 4 kg aprox. no se palpa cicatriz de castracion ( en flancos/ bajo vientre). \ndesparasitaciones internas y externas vencidas. vacunaciones vencidas.\nla adoptó en diciembre del 2024\ncome proplan gato adulto\nconsulta por claudicacion intermitente.\nRevision clinica\naus s/p tonos normales\nnormotermica\nnormohidratada\npalpacion abdominal . organomegalia en epigastro (hepato/esplenomegalia/ distension pospandrial). no manifiesta dolor a la palpacion.\ncc 4\n claudicacion 1-2/6 en MAD. en dicho miembro , se realizan maniobras de flexion/extension forzada de art del hombro ,codo y se rehusa a la extension/ flexion forzada en articulacion del codo. dicho hallazgo se evidencia en ambos miembros anteriores . 2026-01-01 9219 7642 \N 88 2614 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}], "medications": [{"name": "MELOXIVET 5 mg INY. x 10 cc - Inyectable -", "user": null, "group": 6, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.701414-03:00", "updated_at": "2025-02-20T08:17:52.701419-03:00", "description": "Inyección antiinflamatoria", "id_medicina": 872, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento", "next_application_date": "2025-10-26", "next_application_months": 1}], "specialities": []} +1936 2025-10-02 14:12:46.340303+00 2025-10-02 14:12:46.340309+00 f t hipotiroidismo control en dos meses Se recomienda perfil tiroideo para Diciembre/Enero. Adjunto orden. Se recibe paciente para consulta endocrinologica por sospecha de hipotiroidismo.\nTsh 0.35 y t4l 0.4\nA la inspeccion es un paciente que no presenta signos de piel, cambios de comportamiento ni obesidad severa \N 2026-01-02 266 335 \N 98 2559 {"studies": [], "medications": [], "specialities": []} +1937 2025-10-02 14:19:40.990263+00 2025-10-02 14:19:40.99027+00 f t Dislipemia primaria o secundaria a obesidad.\n¿Hipocalcemia? realizar gasometria venosa A raíz de los triglicéridos altos tiene que empezar con:\n- 2 comprimidos de procetoken 100 MG (farmacia humana). Ideal que lo consuma con comida.\n- 3/4 de comprimido de Omega 3 + vitamina E Esta tomando aproximadamente 2 lts de agua. El mayor consumo no es todo el tiempo, si no, mas que nada cuando hay gente en la casa. TAG en 700, Calcio bajo. Tiene un poco de panza, pero el aspecto no termina de ser el de un paciente con cushing. Inh con dexa negativo. \N 2026-01-02 2732 2418 \N 98 2640 {"studies": [], "medications": [], "specialities": []} +1938 2025-10-02 15:36:24.020012+00 2025-10-02 15:36:24.020018+00 f t Enfermedad renal \nArtrosis poliarticular \nSe palpa neo de consistencia dura en epigastrio \nSe ausculta soplo cambiar alimentacion a Provet SENIOR \nse dejan ordenes para ecografia abdominal, chequeo de sangre, control cardiologico meloxicam x 3 dias\ntramadol x 5 dias\nartrosnack bocados marcada perdida de peso, dificultad para caminar, polidipsia y poliuria, u registro de vomito de estos ultimos dias, apetito caprichoso, secrecion ocular, enfermedad periodontal, 2026-01-02 9758 8129 \N 94 2715 {"recipes": [], "studies": [], "medications": [{"name": "TRAMADOL 50 mg INY x 50 cc - Inyectable -", "user": null, "group": 13, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.625987-03:00", "updated_at": "2025-02-20T08:17:53.625991-03:00", "description": "Inyectable", "id_medicina": 1105, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "MELOXIVET 5 mg INY. x 10 cc - Inyectable -", "user": null, "group": 6, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.701414-03:00", "updated_at": "2025-02-20T08:17:52.701419-03:00", "description": "Inyección antiinflamatoria", "id_medicina": 872, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "NOVOTIOC INY. x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.836248-03:00", "updated_at": "2025-02-20T08:17:52.836255-03:00", "description": "Inyección para problemas metabólicos", "id_medicina": 907, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +1939 2025-10-02 17:57:40.16605+00 2025-10-02 17:57:40.166056+00 f t Cuadro alergia generalizada Desinfectar el ambiente xon ectohol ambiental. Probar feromonas de apaciguamiento para disminuir el estres Prednisol 4 gotas casa 12 hs por dos días. 4 gotas cada 24 hs por 2 días. 2 gotas cada 24 hs y luego cada 48 por 2 tomas.\nSe indica adecaps Se realiza semiología general. Mucosas normales. Auscultación cardíaca y respiratoria sin particularidades. Se observa edema de labio inferior compatible con cuadro alérgico. Y se aprecia alopecia simétrica en ambos miembros posteriores por rascaso y ascicalamiento excesivo 2026-01-02 9710 8090 \N 97 2707 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +1940 2025-10-02 18:40:30.557732+00 2025-10-02 18:40:30.557738+00 f t Atopía No se ingresó información Prednisolona 10 mg comp. Comienza con 1/8 comp x día x 5 días y dosis decrecientes hasta 21 días. Consulta x prurito importante en orejas, patas y zona inguinal. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. 2026-01-02 6893 5636 \N 70 2720 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 2000 x 25 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "SHOCK", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.015128-03:00", "updated_at": "2025-02-20T08:17:52.015134-03:00", "description": "Inyección de dexametasona", "id_medicina": 703, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +1942 2025-10-02 21:58:31.34351+00 2025-10-02 21:58:31.343516+00 f t Vacunación séxtuple Vac. antirrábica en 21d - EOG SP 2025-10-21 7529 6193 \N 89 2560 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1946 2025-10-03 04:12:24.672961+00 2025-10-03 04:12:24.672967+00 f t - - Se vacuna con triple felina y antirabica. Eog: s/p \N 2026-01-03 9700 8082 \N 1 2705 {"studies": [], "medications": [], "specialities": []} +1999 2025-10-08 14:34:08.451469+00 2025-10-08 14:34:08.451476+00 f t Laboratorio . . Laboratorio \N 2026-01-08 10193 8460 \N 100 2803 {"studies": [], "medications": [], "specialities": []} +1948 2025-10-03 12:27:40.987501+00 2025-10-03 12:27:40.987507+00 f t Collitis nerviosa? No se ingresó información Sugiero realizar una consulta para formular dieta de nutrición natural. Indico despacitar con triplex y reanudar vacunas.\nIndico realizar chequeos general completo de sangre y ecografía Buen estado general score de 3 a 4 de 5, falta actualizar plan sanitario le dan alimento eucanuba con pollo cocido no come verduras.\nLa tutora me comenta que estuvo decaída comiendo menos y que tuvo una caca con sangre la cual me deja una foto con dónde se van estrías de sangre coagulada.\nEog: Cardio ok abdomen tenso por miedo muy buen ánimo y comiendo.\nEl tutor me comenta que hubo un cambio en los horarios laborales de ambos lo cual hizo que naste mucho más tiempo sola en el domicilio. 2026-01-03 9049 7485 \N 21 2580 {"recipes": [], "studies": [], "medications": [{"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "NOVOTIOC INY. x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.836248-03:00", "updated_at": "2025-02-20T08:17:52.836255-03:00", "description": "Inyección para problemas metabólicos", "id_medicina": 907, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "ALGEN iny. 20 x 20 cc - Inyectable -", "user": null, "group": 4, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.314406-03:00", "updated_at": "2025-02-20T08:17:51.314414-03:00", "description": "Inyección de tramadol", "id_medicina": 533, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +1949 2025-10-03 12:35:40.876553+00 2025-10-03 12:35:40.876558+00 f t Mucosas levemente pálidas pliegue lento abdomen pastoso con presencia de dolor temperatura 3 7 3 sensorio deprimido.\nPosible Gastroenteritis viral Ayuno total 12hs, luego tolerancia al agua. En 24hs reanudar solido. Miel en las encías\nMantenerla templada con mantas\nSugiero chequeo general de sangre y ecografia abdominal Realizo fluidoterapia Ev Ringer más medicación indicada. La tutora me comenta que hace unos días la otra cachorr que convivía con ella estuvo internada y falleció posiblemente por una Gastroenteritis.\nEn frentera de año y medio entera con fecha de nacimiento O15/03/24.\nEstado general baja de pesos coros de 3 presentó diarrea hemorrágica abundante y el día sábado comenzó con vómitos. Le da eukanuba de cachorro, No saben si robó algo, No tengo registro de desparasitación la cual puede ser hace más de un año y tiene las vacunas vencidas. 2026-01-03 9509 7917 \N 21 2674 {"recipes": [], "studies": [], "medications": [{"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "METOCLOPRAMIDA INY. 5 % x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "LAMAR", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.745131-03:00", "updated_at": "2025-02-20T08:17:52.745138-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 883, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "NOVOTIOC INY. x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.836248-03:00", "updated_at": "2025-02-20T08:17:52.836255-03:00", "description": "Inyección para problemas metabólicos", "id_medicina": 907, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "ALGEN iny. 20 x 20 cc - Inyectable -", "user": null, "group": 4, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.314406-03:00", "updated_at": "2025-02-20T08:17:51.314414-03:00", "description": "Inyección de tramadol", "id_medicina": 533, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "SOL. RINGER LACTATO x 500 ml. - Inyectable -", "user": null, "group": 10, "active": true, "company": "-", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.478761-03:00", "updated_at": "2025-02-20T08:17:53.478767-03:00", "description": "Solución inyectable", "id_medicina": 1069, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +1950 2025-10-03 12:55:56.267653+00 2025-10-03 12:55:56.267659+00 f t Gastroenteritis Dieta. Pollo arroz y zanahoria hervida.\nIndico control en 48 hs.\nQue llame para consulta control Ranitidina iny. Y diafin iny. Presenta tumores mamarios en mamas derecha e izquierda .\nEltutor comenta que fue operada de ovario histerectomía. Y el año pasado de tumor de bazo.\nComenta además que tiene dificultad para caminar. Un vet. De la zona le indico prednisolona de 20 MG. Y omeprazol de 20 MG. \nEl miércoles vómito varias veces con sangre. Y mat fecal diarreica dice que con algo de sangre.\nAyer jueves y hoy no vómito pero sigue con diarrea. 2026-01-03 9435 7841 \N 114 2657 {"recipes": [], "studies": [], "medications": [{"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DIAFIN 2 x 20 cc - Solución -", "user": null, "group": 8, "active": true, "company": "Konig", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.074307-03:00", "updated_at": "2025-02-20T08:17:52.074313-03:00", "description": "Solución para problemas digestivos", "id_medicina": 719, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +1951 2025-10-03 13:07:00.824493+00 2025-10-03 13:07:00.824502+00 f t Tumor mamario inguinal izquierdo Cirugia Amoxplus 500mg 1 comprimido cada 12 Hs por 7 días\nPrednisolona 10mg un comprimido cada 24 Hs por 5 días Hace dos meses notaron que se comenzó a lamer la mama, ahora le ven sangre.\nPresenta Neoformacion en mama inguinal izquierda con secreción serosanguinolenta.\nDoy presencia para estudios prequirurgicos \N 2026-01-03 9885 8170 \N 113 2733 {"studies": [{"id": null, "name": "1"}, {"id": null, "name": "3"}, {"id": null, "name": "12"}, {"id": null, "name": "2"}, {"id": null, "name": "9"}], "medications": [], "specialities": []} +1952 2025-10-03 14:28:51.931607+00 2025-10-03 14:28:51.931613+00 f t La luxación rotutoriana severa, enfermedad articular degenerativa, Displace a decaer al lado derecho. Solicito placa vendrzal de cadera látero lateral de columna tora colombar y consulta contra ummatólogo Realizó tratamiento analgésico con melosicam y tramador El tutor me comenta que presentaba episodios de dolor que no quería subirse ni al sillón ni a la cama y presentaba letaría leve con disminución de la movilidad normal. Presenta dolor en la zona tora columbar y marcada en miembro posterior derecho con pérdida de masa Múscular. 2026-01-03 9542 7940 \N 21 2672 {"recipes": [], "studies": [], "medications": [{"name": "ALGEN iny. 20 x 20 cc - Inyectable -", "user": null, "group": 4, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.314406-03:00", "updated_at": "2025-02-20T08:17:51.314414-03:00", "description": "Inyección de tramadol", "id_medicina": 533, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": [{"id": 59, "name": "Traumatología"}]} +1992 2025-10-07 14:12:03.272145+00 2025-10-07 14:12:03.272151+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-07 10054 8320 \N 106 2775 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2000 2025-10-08 14:46:15.978768+00 2025-10-08 14:46:15.978773+00 f t Laboratorio . . Laboratorio \N 2026-01-08 9969 8245 \N 100 2765 {"studies": [], "medications": [], "specialities": []} +2057 2025-10-13 23:23:05.295367+00 2025-10-13 23:23:05.295376+00 f t control No se ingresó información No se ingresó información extraccion 2026-01-13 7038 6754 \N 112 2417 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1953 2025-10-03 16:03:32.256189+00 2025-10-03 16:03:32.256199+00 f t Saludable. Sin Enriquecer ambiente para mudanza. Buen estado general. \nPróximo a mudanza, enriquecer ambiente.\nUso de medicación en caso de estrés. 2026-01-03 277 328 \N 68 2543 {"recipes": [], "studies": [], "medications": [{"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-09-19", "next_application_months": 12}, {"name": "FELIGEN CRP - Inyectable -", "user": null, "group": 16, "active": true, "company": "Virbac", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.881501-03:00", "updated_at": "2025-02-20T08:17:53.881508-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1157, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-09-19", "next_application_months": 12}], "specialities": []} +1954 2025-10-03 16:05:17.057174+00 2025-10-03 16:05:17.057179+00 f t vacunación anual Sin Vacunación Estado grl bueno. Saludable 2026-01-03 277 327 \N 68 2545 {"recipes": [], "studies": [], "medications": [{"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-09-19", "next_application_months": 12}, {"name": "FELIGEN CRP - Inyectable -", "user": null, "group": 16, "active": true, "company": "Virbac", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.881501-03:00", "updated_at": "2025-02-20T08:17:53.881508-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1157, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-09-19", "next_application_months": 12}], "specialities": []} +1955 2025-10-03 16:18:34.651976+00 2025-10-03 16:18:34.651982+00 f t vacunación anual Vacunacion Vaunacion Paciente con sobrepeso. Buen estado geberal 2026-01-03 277 329 \N 68 2544 {"recipes": [], "studies": [], "medications": [{"name": "FELIGEN CRP - Inyectable -", "user": null, "group": 16, "active": true, "company": "Virbac", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.881501-03:00", "updated_at": "2025-02-20T08:17:53.881508-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1157, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-09-19", "next_application_months": 12}, {"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-09-19", "next_application_months": 12}], "specialities": []} +1956 2025-10-03 16:20:52.884246+00 2025-10-03 16:20:52.884255+00 f t Desagradar cardiomiopatia sin Vacunación anual Canino macho epiléptico con soplo buen estado general. 2026-01-03 5733 7453 \N 68 2574 {"recipes": [], "studies": [], "medications": [{"name": "NOBIVAC Edge DAPPv+L4 - Inyectable -", "user": null, "group": 16, "active": true, "company": "MSD Intervet", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.896587-03:00", "updated_at": "2025-02-20T08:17:53.896595-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1160, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-01", "next_application_months": 12}, {"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-01", "next_application_months": 12}], "specialities": []} +1651 2025-09-04 18:31:55.286088+00 2025-09-04 18:31:55.286101+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-03 7766 6397 \N 106 2348 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1957 2025-10-03 16:35:18.689205+00 2025-10-03 16:35:18.689213+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-03 7038 5756 \N 106 2418 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1958 2025-10-03 18:50:32.135178+00 2025-10-03 18:50:32.135183+00 f t laboratorio . . laboratorio \N 2026-01-03 9670 8055 \N 100 2699 {"studies": [], "medications": [], "specialities": []} +1959 2025-10-03 18:51:53.8521+00 2025-10-03 18:51:53.852104+00 f t laboratorio . . laboratorio \N 2026-01-03 167 176 \N 100 2635 {"studies": [], "medications": [], "specialities": []} +1960 2025-10-03 18:58:25.275705+00 2025-10-03 18:58:25.275709+00 f t laboratorio . . laboratorio \N 2026-01-03 9727 8106 \N 100 2724 {"studies": [], "medications": [], "specialities": []} +1961 2025-10-03 18:59:11.77473+00 2025-10-03 18:59:11.774735+00 f t laboratorio . . laboratorio \N 2026-01-03 9644 8033 \N 100 2727 {"studies": [], "medications": [], "specialities": []} +1962 2025-10-03 19:12:34.471527+00 2025-10-03 19:12:34.471535+00 f t . . . . \N 2026-01-03 9668 8053 \N 100 2721 {"studies": [], "medications": [], "specialities": []} +1963 2025-10-03 19:27:41.873557+00 2025-10-03 19:27:41.873561+00 f t laboratorio . . laboratorio \N 2026-01-03 9671 8056 \N 100 2694 {"studies": [], "medications": [], "specialities": []} +1964 2025-10-03 23:20:16.629543+00 2025-10-03 23:20:16.629555+00 f t Hipertiroidismo? IRC? extracción de sangre Dieta casera\nAde caps Vómitos\nNota que bajo de peso y tiene episodios de vómitos. De chica tenía problemas de piel y le cambiaron a alimento hipoaetgenico y mejoró. Quiere comer todo el día\nEOG:S/P\nEOP: hipotrofias muscular en miembros posteriores. disminución de visión en ojo izquierdo. \n\nIndico extracción de sangre para panel completo y hormonas tiroideas para descartar hipertiroidismo. \n\nCambio a dieta natural: pollo, merluza, atún. Yogur natural o queso crema. Ade caos 1/2 medida al día. Naty playa o levadura de cerveza para condimentar. 3 veces al dia pequeñas porciones. Luego iremos agregando elementos para una formulación completa de su nutrición. \nIntente sacar sangre pero se estresa. Doy gabapentina un comprimido 3 hs antes previo a la consulta. 2025-10-06 9861 8150 \N 113 2726 {"recipes": [], "studies": [{"id": 8, "name": "Perfil General Completo sin Orina"}], "medications": [], "specialities": []} +1965 2025-10-03 23:27:36.920555+00 2025-10-03 23:27:36.92056+00 f t . . Se realiza extracción de sangre para perfil general completo. . 2026-01-03 9670 8055 \N 104 2700 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1966 2025-10-04 02:17:33.123293+00 2025-10-04 02:17:33.123299+00 f t Considerar cardiopatía compensada. Consulta cardiológica. Optamox para lesión ulcerada. Si no mejora requiere cirugía. Paciente geronte con buen peso, nódulo en mama ulcerado, parece de piel aunq no descarto Neo mamario.\nVerruga en lengua sin sangrado.\nSoplo 3/6. 2026-01-03 9676 8060 \N 68 2697 {"recipes": [], "studies": [], "medications": [{"name": "SPECTRA NEXGARD 15.1 a 30 KG G (VIOLETA) - Pipeta -", "user": null, "group": 2, "active": true, "company": "NEXGARD", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:50.941146-03:00", "updated_at": "2025-02-20T08:17:50.941153-03:00", "description": "Pipeta antipulgas, garrapatas y parásitos internos", "id_medicina": 440, "presentation": 1, "medication_type": 1, "medication_type_name": "Antiparasitario"}, {"name": "NOBIVAC Edge DAPPv+L4 - Inyectable -", "user": null, "group": 16, "active": true, "company": "MSD Intervet", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.896587-03:00", "updated_at": "2025-02-20T08:17:53.896595-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1160, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-03", "next_application_months": 12}, {"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-03", "next_application_months": 12}], "specialities": []} +1967 2025-10-04 13:03:04.160438+00 2025-10-04 13:03:04.160444+00 f t No se ingresó información No se ingresó información No se ingresó información Khaleesi 5/6meses - 1.00 kg\nSensorio alerta, estado general bueno. Mucosas rosadas. TLLC: 1" LN: s/p. Auscultación cardiopulmonar normal. FC: lat/min. Pulso: F/S Hidratación normal. SC: 5/9, Boca: sp Oidos: sp Ojos: sp \n\nEOP: Palpación abdominal sp, Columna sp, Mamas sp, vulva sp 2026-01-04 656 775 \N 71 973 {"recipes": [], "studies": [], "medications": [{"name": "FELOCELL CVR - Inyectable -", "user": null, "group": 16, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.886518-03:00", "updated_at": "2025-02-20T08:17:53.886526-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1158, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2025-05-12", "next_application_months": 0}], "specialities": []} +1968 2025-10-04 13:05:59.577648+00 2025-10-04 13:05:59.577656+00 f t No se ingresó información No se ingresó información No se ingresó información Pichu - gato - 4 años - 4kg\nSensorio alerta, estado general bueno. Mucosas rosadas. TLLC: 1" LN: s/p. Auscultación cardiopulmonar normal. FC: lat/min. Pulso: F/S Hidratación normal. SC: 5/9, Boca: sp Oidos: sp Ojos: sp \n\nEOP: Palpación abdominal sp, Columna sp 2026-01-04 656 774 \N 71 973 {"recipes": [], "studies": [], "medications": [{"name": "MOXIDEX PLUS x 6 comp. (2 bls.) - Comprimidos -", "user": null, "group": 3, "active": true, "company": "Mayors", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:50.333960-03:00", "updated_at": "2025-02-20T08:17:50.333968-03:00", "description": "Comprimidos antiparasitarios", "id_medicina": 296, "presentation": 3, "medication_type": 1, "medication_type_name": "Antiparasitario"}, {"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-04-12", "next_application_months": 7}, {"name": "FELOCELL CVR - Inyectable -", "user": null, "group": 16, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.886518-03:00", "updated_at": "2025-02-20T08:17:53.886526-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1158, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-04-12", "next_application_months": 7}], "specialities": []} +1993 2025-10-07 15:54:11.907623+00 2025-10-07 15:54:11.907628+00 f t Hemoparasito. Vif Vilef Realizar PGC vif vilef No Come y toma bien pero esta muy adelgazado hace mucho que no lo desparasita. Palidez de mucosas 2026-01-07 9458 7868 \N 14 2663 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1995 2025-10-08 00:46:18.77688+00 2025-10-08 00:46:18.776885+00 f t Se indicó eco.\nCONCLUSIÓN:\n● Imagen sugerente de material extraño en estómago y en intestino. Imagen sugerente de intususcepción (parcial?) en hipogastrio (íleon colon). Reacción peritoneal severa asociada. Ninguna Ninguno Anorexia, decaimiento. \N 2026-01-08 9668 8053 \N 103 2760 {"studies": [], "medications": [], "specialities": []} +1969 2025-10-04 21:22:58.319956+00 2025-10-04 21:22:58.319966+00 f t Gastritis \nDescartar con ecografía otras alteraciones en útero e intestinos Realizar ecografía abdominal y chequeo de sangre Omeprazol 20 mg c 24 hs \nPasar a dieta balanceada comercial Hembra entera en estado diestral, tuvo episodios de diarrea con sangre a fin de septiembre y fue desparasitada con buena respuesta, actualmente tiene vómitos/regurgitaciones a diario hace 2 semanas x lo menos, está comiendo pollo con zanahoria, tiene micción sumisa , mucosas pálidas 2026-01-04 9954 8228 \N 94 2750 {"recipes": [], "studies": [], "medications": [{"name": "METOCLOPRAMIDA INY. 5 % x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "LAMAR", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.745131-03:00", "updated_at": "2025-02-20T08:17:52.745138-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 883, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "NOVOTIOC INY. x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.836248-03:00", "updated_at": "2025-02-20T08:17:52.836255-03:00", "description": "Inyección para problemas metabólicos", "id_medicina": 907, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +1970 2025-10-04 22:22:28.429767+00 2025-10-04 22:22:28.429773+00 f t Refuerzo quíntuple No se ingresó información No se ingresó información EOG normal 2026-01-04 8168 6717 \N 92 2743 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1971 2025-10-04 22:24:19.467756+00 2025-10-04 22:24:19.467765+00 f t Vacunación anual No se ingresó información No se ingresó información EOG normal. Sobrepeso 2026-01-04 9640 8029 \N 92 2684 {"recipes": [], "studies": [], "medications": [{"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-04", "next_application_months": 12}, {"name": "FELIGEN CRP - Inyectable -", "user": null, "group": 16, "active": true, "company": "Virbac", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.881501-03:00", "updated_at": "2025-02-20T08:17:53.881508-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1157, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-04", "next_application_months": 12}], "specialities": []} +1972 2025-10-04 23:21:42.493546+00 2025-10-04 23:21:42.493554+00 f t . Realizo orden para extraccion de sangre para Perfil Hepatico + calcio + fosforo + inograma serico + hdl + ldl . se aplica 2da dosis de Artrosan .\nLos tutores me comentan que notaron un cambio muy positivo en cuanto al andar del paciente y su MP 2025-10-11 4255 3550 \N 88 2745 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1973 2025-10-04 23:37:44.497375+00 2025-10-04 23:37:44.497381+00 f t gastritis? sugiero realizar ecografia abdominal + perfil hepatico + calcio+ fosforo + ionograma serico + aoc + upc\nsugiero administrar gabapentina previa a la realizacion de los metodos complementarios ( explico cuanto y como darsela) indico ranitidina en gotas cada 12 hs por 7 dias + pechuga de pollo a la plancha ( es probable que la paciente no quiera comer pollo todos los dias porque está super acostumbrada al balanceado y en general come muy poco de otros aliementos.) La intentaron pasar a dieta BARF y no la aceptó . En dicho caso, indico que sigan normalmente con su dieta balanceada felino hembra comun europeo 13 años\ncome proplan gato adulto + 7 años\nvacunas y desparasitaciones vencidas \nconsulta porque desde hace un tiempo ( 1 mes aproximadamente) comenzo con vomitos alimenticios con contenido digerido, alrededor de 5-7 al mes. No presenta otros sintomas, mantiene apetito, deposiciones normales, mantiene habitos normales , no está decaida .\nRevision clinica\nSe dificulta muchisimo poder realizar la revision clinica ya que la paciente está a la defensiva y no nos permite acercarnos ni realizar correctamente una revision.\naus . aum murmullo vesicular\npelo hirsuto\nnormohidratada\npalpacion abdominal, abdomen tenso 2026-01-04 9991 8265 \N 88 2763 {"recipes": [], "studies": [], "medications": [], "specialities": [{"id": 41, "name": "Ecografía"}, {"id": 76, "name": "Laboratorio"}]} +1974 2025-10-04 23:42:06.173373+00 2025-10-04 23:42:06.173378+00 f t . . realizo pasaje de ringer lactato sc ( 500 ml) + complejo b saco sangre para hemograma + pcr ehrichia + glucemia 2026-01-04 9727 8106 \N 88 2723 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1994 2025-10-08 00:19:49.368147+00 2025-10-08 00:19:49.368155+00 f t . Alimento recovery Se solicita control cardiológico+ASC perfil 7 para descartar insuficiencia cardíaca/renal. Se aplica clamoxyl+ kualcovit. Control en 24 hs. Paciente con pérdida de peso, deshidratación moderada, hiporexia, disnea desde hace dos semanas. Pelo hirsuto. Acepta el recovery. Ayer vomitó. \N 2026-01-07 10146 8407 \N 92 2793 {"studies": [], "medications": [], "specialities": []} +1997 2025-10-08 13:15:17.895873+00 2025-10-08 13:15:17.895878+00 f t Las imágenes observadas son sugerentes de:\nHígado: Hepatopatía difusa metabólica / infiltrativa (Incipiente)\nEstomago: Gastritis aguda\nResto del abdomen sin particularidades No se ingresó información No se ingresó información No se ingresó información 2026-01-08 9991 8265 \N 100 2770 {"studies": [], "medications": [], "specialities": []} +2027 2025-10-11 03:27:12.413867+00 2025-10-11 03:27:12.413875+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-11 10361 8601 \N 90 2835 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1975 2025-10-05 00:05:24.187337+00 2025-10-05 00:05:24.187345+00 f t rinitis alergica. sugiero vapor para favorecer la eliminicacion de la secrecion serosa aplico dosis de dexametasona inyectable (0.4mg/kg). Dejo 2 jeringas para aplicarle cada 24 hs sc felino macho castado 12 años comun europeo . 8 kg aprox\nconsulta por estornudos y secrecion serosa por ollares. evolucion 48-72 hs. de animo está normal, come y toma agua normalmente, no lo notaron decaido. Es la primer primavera que el gordo vive en este domicilio, ya que se mudaron hace 4/5 meses . \nNo presentó cuadros similares anteriormente.\nA finales del año 2024 tuvo un cuadro hepatico que fué tratado por una veterinaria cerca de su domicilio. actualmente come royal canin gastrointestinal moderado en calorias indicado en mismo establecimiento.\nrevision clinica\naus s/p tonos normales\nnormotermico\nnormohidratado\ncc8\npalpacion abdominal, abdomen blando, no manifiesta dolor.\npelo hirsuto\nVias respiratorias altas: se observa secrecion serosa por ambos ollares y episodios de estornudos multiples en la permanencia en el domicilio. 2026-01-04 9763 8134 \N 88 2717 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +1976 2025-10-06 00:22:27.987601+00 2025-10-06 00:22:27.987612+00 f t Conjuntivitis OD . Colirio antibacterial con esteroides EOG normal. Conjuntivitis OD. Test de fluoresceina neg. 2026-01-05 10031 8300 \N 92 2777 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1977 2025-10-06 00:25:13.768782+00 2025-10-06 00:25:13.768788+00 f t Dermatitis alérgica por pulgas Vacunación en tres semanas luego del tratamiento antipulgas ambiental y tratamiento de la paciente Tribiotic+ dexametasona+ prednisol 10 + pipeta antipulgas. Control en tres semanas. EOG normal. Dermatitis alérgica generalizado. Pulgas 2026-01-05 10052 8317 \N 92 2772 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1978 2025-10-06 13:29:42.925812+00 2025-10-06 13:29:42.925817+00 f t Gastritis Cambiar de alimento de mejor calidad Aplique algen inyectable. Y ranitidina iny.\nSeguir por 48 hs. Con ranitidina gotas.\nDieta pollo y zanahoria hervida \nDieta pollo. Zanahoria hervida Comió algo en la calle. Presenta leve dolor abdominal. Come AB. Dog Chow. 2026-01-06 9486 7892 \N 114 2671 {"recipes": [], "studies": [], "medications": [{"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +1979 2025-10-06 13:36:34.537002+00 2025-10-06 13:36:34.537007+00 f t Gingivitis. \nSolicito ecografía abdominal Hacer ecografía abdominal. Y estudios prequirurgicos para realizar limpieza dentaria. Sterogyl comprimidos Solicita consulta porque llora . Este suceso ocurre hace aprox un año. Le hicieron Rx. Análisis , etc y no presento patología.\nA la revisación. Presenta gingivitis más en muelas . 2026-01-06 9538 7935 \N 114 2673 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1980 2025-10-06 14:15:08.429677+00 2025-10-06 14:15:08.429685+00 f t laboratorio . . laboratorio \N 2026-01-06 9882 8167 \N 112 2742 {"studies": [], "medications": [], "specialities": []} +1981 2025-10-06 17:21:29.15719+00 2025-10-06 17:21:29.157195+00 f t eco . . eco \N 2026-01-06 1381 1370 \N 90 2758 {"studies": [], "medications": [], "specialities": []} +1996 2025-10-08 00:46:18.785635+00 2025-10-08 00:46:18.785641+00 f t Se indicó eco Ninguna Ninguno Anorexia, decaimiento. \N 2026-01-07 9668 8053 \N 103 2760 {"studies": [{"id": null, "name": "1"}], "medications": [], "specialities": []} +2001 2025-10-08 20:02:26.414351+00 2025-10-08 20:02:26.414356+00 f t Sobrecarga alimenticia, corte de uñas. Control de raciones Repartir comidas Consulta por peso; pesa 4kg.\nBuen estado general, tuvo días sin comer su balanceado. 2026-01-08 340 403 \N 68 2788 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2028 2025-10-11 04:27:30.18387+00 2025-10-11 04:27:30.183875+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-11 10297 8549 \N 90 2826 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2030 2025-10-11 14:56:03.992903+00 2025-10-11 14:56:03.992911+00 f t Posible Pancreatitis, Insuficiencia renal crónica? Prescribo la medicación en fórma oral e indico control en 48 horas\nTambién sugiere realizar chaqueo general completo de sangre mas Orina completo Indicó comenzar el tratamiento inmediatamente con medicacion inyectable ranitidin, ac tuoctico, deametas9na, tramadol, y Y fluido terapia da reposición, Pero el tutor prefiere medicación oral El tutor nos comenta que no come hace 2 días, Y disminuyó la ingesta hace rato no saben decirme tiempo.\nScore corporal 2 de 5, Deshidratación del 10%, Me comentan que presentó vómitos y tiene heces con sangre. El tutor comenta que le dio de comer mucho hígado. 2026-01-11 10459 8690 \N 21 2845 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}], "medications": [], "specialities": []} +2037 2025-10-13 17:27:46.409297+00 2025-10-13 17:27:46.409304+00 f t Buen estado general. No se ingresó información No se ingresó información Mc vacuna de vilef refuerzo anual.\nEog sp \nSe aplica la misma en mpd 2026-01-13 8455 6967 \N 79 2734 {"recipes": [], "studies": [], "medications": [{"name": "PUREVAX Fel V (LEUCEMIA FELINA) - Inyectable -", "user": null, "group": 19, "active": true, "company": "", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.995856-03:00", "updated_at": "2025-02-20T08:17:53.995863-03:00", "description": "Vacuna contra la leucemia felina", "id_medicina": 1180, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-09", "next_application_months": 12}], "specialities": []} +2058 2025-10-13 23:23:38.342217+00 2025-10-13 23:23:38.342223+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-13 7038 6755 \N 112 2419 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2061 2025-10-13 23:29:05.595031+00 2025-10-13 23:29:05.595037+00 f t No se ingresó información No se ingresó información Indico aplicar convenia 0.8ml, evaluar repetir en 14 dias. \nBaños con moksha clor 4% y rocios diarios con Dermosedan clor 4%. Consulta dermatologica: Se aplicó Cytopoint 20 mg 0.5ml el 15/09, sin prurito activo muy buena respuesta pero esta con una foliculitis bacteriana secundaria. En otra oportunidad recibió cefalexina x 2 meses. \nTomo muestra para citología y cultivi bacteriano 2026-01-13 6034 4927 \N 75 2805 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1982 2025-10-06 18:25:36.403015+00 2025-10-06 18:25:36.403021+00 f t Hepatopatia metabólica por sobrepeso, cristaluria, asma felino. Todo confirmado. . . Segunda telemedicina. En la primer telemedicina indiqué ecografía abdominal, gotas de prednisolona, puff de fluticasona y salmeterol y relación prot/creatinina en orina. En resultados de orina se evidenció bilirrubinuria, cristales de estruvita grandes y proteinuria. En rx se observó asma felino. \nHoy en la segunda telemedicina: en ecografía se observó sedimento moderado en vejiga, hepatopatia difusa inflamatoria/infiltrativa (incipiente). Relación prot/creat en orina: 0,15 (normal hasta 0,5). evidente mejoría de la tos, tosió 1 vez a la semana. \nIndico seguir con puff cada 12 hs, que solo coma royal canin urinario SO por el momento (hace 2 años come SO y para gatos castrados), por eso tiene cristaluria y no se recupera. Agrego terazosina 5 mg (1/2 comp cada 24 hs por 5 días) y ursomarina 10 (3/4 de comp cada 24 hs por 2 meses). En 3 semanas repetir orina completa. 2025-11-07 7443 6127 \N 80 2784 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1983 2025-10-06 21:44:19.615854+00 2025-10-06 21:44:19.615859+00 f t Claudicacion MPI.\nSE solicita Rx de fémur tibia. LL Y AP. Reposo. Bajar de peso Dexa. Y Rani SE CAYO de la escalerita para subir a los sillones..\nToma agua. Come . Orina normal 2026-01-06 9932 8207 \N 114 2744 {"recipes": [], "studies": [{"id": 2, "name": "Radiografía"}], "medications": [{"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +1984 2025-10-06 21:52:35.861441+00 2025-10-06 21:52:35.861446+00 f t .. No se ingresó información Extracción de puntos Cirugía por eventracion umbilical hace aprox 15dias 2026-01-06 8958 7414 \N 114 2782 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1987 2025-10-06 21:59:03.454152+00 2025-10-06 21:59:03.454157+00 f t Abseceso por herida limpieza diaria Optamox 10 días y limpieza local Absceso en rostro que llega al pis de la órbita ocular. Ya drenó la semana pasada volvió a formarse. Hay una posible herida como base de lesiones sin aparente compromiso en cavidad oral. 2026-01-06 10060 8324 \N 68 2773 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +1985 2025-10-06 21:53:55.921975+00 2025-10-06 21:53:55.92198+00 f t Vacunas - - Vacunas \nLa adoptó hace un mes. Cuando llegó tenía lesiones en las patas y se rascaba mucho. \nLe hace baños con tritohexidin una vez por semana. \nCuando la adoptó notaba que recuraba del MPI, le dieron meloxivet por 4 días\n\nEOG: s/p\nEOP: seborrea seca. Luxación rotuliana bilateral 2 grado. \N 2026-01-06 9963 8240 \N 113 2757 {"studies": [], "medications": [{"name": "BAGOVAC RABIA", "id_medicina": "1149", "medication_type_name": "Vacuna", "next_application_date": "2026-10-06", "next_application_months": 12}, {"name": "VANGUARD PLUS 5 + 4L + CV", "id_medicina": "1174", "medication_type_name": "Vacuna", "next_application_date": "2026-10-06", "next_application_months": 12}, {"name": "COUGHGUARD PLUS (Bordetella)", "id_medicina": "1189", "medication_type_name": "Vacuna", "next_application_date": "2026-10-06", "next_application_months": 12}], "specialities": [{"id": null, "name": "59"}]} +1986 2025-10-06 21:57:39.292822+00 2025-10-06 21:57:39.292827+00 f t Vacunacion - - Vacunación \nAdoptado hace un mes . \nEOG: s/p\nEOP: zona alopécica bilateral en gastrcnemos. Antes estaba peor. \nIndico que le den mensualmente antiparasitario externo \N 2026-01-06 9963 8238 \N 113 2757 {"studies": [], "medications": [{"name": "BAGOVAC RABIA", "id_medicina": "1149", "medication_type_name": "Vacuna", "next_application_date": "2026-10-06", "next_application_months": 12}, {"name": "VANGUARD PLUS 5 + 4L + CV", "id_medicina": "1174", "medication_type_name": "Vacuna", "next_application_date": "2026-10-06", "next_application_months": 12}, {"name": "COUGHGUARD PLUS (Bordetella)", "id_medicina": "1189", "medication_type_name": "Vacuna", "next_application_date": "2026-10-06", "next_application_months": 12}], "specialities": []} +1988 2025-10-07 12:00:37.865+00 2025-10-07 12:00:37.865006+00 f t Quíntuple No se ingresó información No se ingresó información EOG normal. Hernia inguinal izquierda. 2026-01-07 1100 7308 \N 92 2548 {"recipes": [], "studies": [], "medications": [{"name": "NOBIVAC DHPPI - Inyectable -", "user": null, "group": 16, "active": true, "company": "MSD Intervet", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.891569-03:00", "updated_at": "2025-02-20T08:17:53.891576-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1159, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}], "specialities": []} +1989 2025-10-07 13:19:01.938077+00 2025-10-07 13:19:01.938093+00 f t Consulta para extracción de puntos en prepucio de sonda vesical y de vía en MAI. Todo ok. Se recomienda colocar bebederos de agua circulante y aumentar el número de baños sanitarios en la casa para disminuir el stress. Meloxivet gotas por 5 días y cisticalm x 30 días en las comidas. El paciente presentó FUS hace unos días y necesita extracción de puntos en prepucio de sonda vesical y de vía en MAI. 2026-01-07 10068 8332 \N 70 2779 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1990 2025-10-07 13:48:11.44581+00 2025-10-07 13:48:11.445815+00 f t Consulta para extracción de puntos. No se puede realizar por indocilidad del paciente. Se recomienda repetir con administración previa de Gabapentina 12 y 2 hs previo a la visita. Se recomienda repetir con administración previa de Gabapentina 12 y 2 hs previo a la visita. Consulta para extracción de puntos. No se puede realizar por indocilidad del paciente. 2026-01-07 8958 7414 \N 70 2731 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1991 2025-10-07 14:11:48.890754+00 2025-10-07 14:11:48.890759+00 f t laboratorio . . laboratorio \N 2026-01-07 8854 7319 \N 100 2754 {"studies": [], "medications": [], "specialities": []} +2002 2025-10-08 20:05:36.757915+00 2025-10-08 20:05:36.757921+00 f t Sin alteraciones Control cardiológico Ninguno Canino en buen estado general. Lesiones única en dedo que ya ha sido biopsiada con seguimiento. Rales leves a la auscultación. 2026-01-08 9955 8230 \N 68 2759 {"recipes": [], "studies": [], "medications": [{"name": "PAUL - 6 SEXTUPLE - Inyectable -", "user": null, "group": 16, "active": true, "company": "PAUL", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.906620-03:00", "updated_at": "2025-02-20T08:17:53.906628-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1162, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-01", "next_application_months": 12}, {"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-08", "next_application_months": 12}], "specialities": []} +2003 2025-10-08 21:13:12.059885+00 2025-10-08 21:13:12.059889+00 f t No se pudo tomar muestra de sangre\nSe indica Valentina 300mg 1/2 comp 3hs antes de la maniobra No se ingresó información No se ingresó información No se pudo tomar muestra de sangre\nSe indica Valentina 300mg 1/2 comp 3hs antes de la maniobra 2026-01-08 9899 8181 \N 79 2748 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2004 2025-10-08 23:46:15.396795+00 2025-10-08 23:46:15.396803+00 f t Cardiopatía/neoplasia/hepatopatia Comida húmeda , aumentar ingesta de agua y recipientes. De no comer, estar tirado, respirar a boca abierta , mucosas azuladas recurrir a la guardia más cercana.\nRealizar complementarios cuanto antes para llegar a diagnóstico y posibles tratamientos. \nPronóstico reservado Asegurar buena hidratación, de ser necesario suero sc diario. \nFurosemida 2% 2gotas cada 8/12hs hasta ver al cardiólogo lo más urgente posible.\nIndico consulta cardiologica+ rx de tórax+análisis de líquido de punción.\nControl con resultados o antes si requiere pasar suero/deja de comer o maniobra. Mc todo hinchado\nEog. Sensorio alerta deshidratación del 8% mm rosa pálido, Score 1.5/5 manto hirsuto con pulgas. Lfn so pulso moderado y sincrónico . Fc 160lat/min soplo 2/6 . Fr 28rpm patrón restrictivo profindo, disnea inspiratoria. \nDifícil auscultación de campos pulmonares pues ronronea\nEop . Edema generalizado en miembros cabeza y bajovientre. abdomen abultado, ascites. Se punza obteniendo contenido seroso. Se dejar orden para citologia y fisicoquímico.\nCome bebe con normalidad. Explico que si complica vida cotidiana hay que drenar ese líquido. 2026-01-08 10298 8550 \N 79 2827 {"recipes": [{"rx": "Furosemida 2%\\n\\nAdministrar 2 gotas cada 12 hs hasta control cardiológico urgente.", "dx_presuntivo": "Cardiopatía/neoplasia."}], "studies": [{"id": 12, "name": "Electrocardiograma"}, {"id": 3, "name": "Ecocardiograma"}, {"id": 2, "name": "Radiografía"}], "medications": [], "specialities": [{"id": 8, "name": "Cardiología"}, {"id": 6, "name": "Radiología"}]} +2005 2025-10-08 23:49:56.454947+00 2025-10-08 23:49:56.454955+00 f t Alergia/asma felino Evitar alérgenos (los que se pueden como sahumerios , spray aerosol etc) Prednisolona a dosis decrecientes por 10 días aprox en caso de no mejorar con una sola aplicación.\nDejo orden de rx de tórax en caso de persistir pese a tto o de volver signos al pausar predni. Tos 24hs evolución\nNo tiene antecedentes. Come bebe con normalidad.\nEog frecuencia respiratoria aumentada aprox 64rpm patrón costoabdominal\nEop abdomen blando. No Tose en consulta no presenta molestias en cuellos. Dales húmedos en caudal de hemitorax?\nAplico dexa 0.5mg/Kg indico dosis decrecientes se predni de persistir signos 2026-01-08 10184 8446 \N 79 2797 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2006 2025-10-08 23:51:43.32507+00 2025-10-08 23:51:43.325076+00 f t No se ingresó información No se ingresó información No se ingresó información No se pudo tomar muestra de sangre.\nSe indica gabapentina 300mg \n1/2 comprimido 3 hs antes de maniobras veterinarias.\nEs muy buena pero muy miedos 2026-01-08 9899 8181 \N 79 2747 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2007 2025-10-09 03:27:18.207186+00 2025-10-09 03:27:18.207192+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-09 10239 8499 \N 90 2811 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2008 2025-10-09 04:03:42.104606+00 2025-10-09 04:03:42.104611+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-09 10314 8564 \N 90 2828 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2009 2025-10-09 13:28:42.674074+00 2025-10-09 13:28:42.67408+00 f t .. xx xx Ecografía abdominal \N 2026-01-09 10219 8485 \N 103 2802 {"studies": [], "medications": [], "specialities": []} +2010 2025-10-09 17:26:53.074488+00 2025-10-09 17:26:53.074494+00 f t Cistitis. Sedimento urinario Tratar que tome mucha agua Desde mañana meloxican en gotas.\nClavamos comp. Cisticalm cápsulas.\nAlimento urinary S/O un mes . Control para ver cómo sigue Dificultad para orinar. Orina muy poco y con gotas de sangre.\nSe están mudando de departamento. 2026-01-09 10039 8307 \N 114 2774 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2011 2025-10-09 20:12:30.156373+00 2025-10-09 20:12:30.156378+00 f t Vacunación anual+ desparasitacion ext+ int No se ingresó información Bagovac+ feligen + meltra spot on+ la pipetta EOG normal. Sobrepeso 2026-01-09 10142 8399 \N 92 2790 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2012 2025-10-09 20:32:45.455044+00 2025-10-09 20:32:45.455052+00 f t Solicito ecografía abdominal. Informe ecografía \nSe observa en zona de proyección de RI. Formando parte de la estructura heterogénea en masa , posteriormente descripta, o en íntimo contacto una masa densa de 32,2 CM. Y 42,7 mm. Heterogénea. Sin definición interna. Que sugiera estructura renal normal. El aspecto ecográfico sugiere proceso inflamatorio ( neoplasia renal)\nBazo: el aspecto ecográfico sugiere proceso infiltrativo ( Neoplásico) en masa Tribiotic. Ranitidina.\nSeguir con trihepat jarabe.\nAlimento gastrointestinal de RC La tutora quiere tener una segunda opinión.\nSe palpa masa en abdomen. Había vomitado le dieron un antiemético en una veterinaria. Dejo de vomitar. Materia fecal diarreica.\nToma agua . Come.\nTiene análisis de sangre. Aumentados los glob. Blancos. Enzimas hepáticas aumentadas 2026-01-09 10271 8526 \N 114 2815 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2013 2025-10-10 00:02:43.501493+00 2025-10-10 00:02:43.501498+00 f t Dermatitis atopica canina con foliculitis bacteriana secundaria No se ingresó información Rp prednisol 6 gotas x dia x 10 dias, Apoquel 5.4mg medio cada 12hs x 10 dias, luego cada 24hs x 20 dias, baños con tritohexidin semanal y rocios diarios con clor 4%. Control en 45 dias Consulta dermatologica: paciente con Dac, prurito 10/10. Historial de diarreas y vomitos x intolerancia a alimentos. Unica mascota. De dpto. Se mudaron hace poco. Come pollo cerdo papa zanahoria, arroz cada tanto. Sin suplementos. \nPapulas y pustulas en abd ventral. 2026-01-09 10114 8375 \N 75 2783 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2014 2025-10-10 00:21:44.213291+00 2025-10-10 00:21:44.213296+00 f t Sindrome de piel atopica felina No se ingresó información Prednisolona 20 mg medio x dia x 7 dias para ver rpta, pipeta mensual Consulta dermatologica: paciente con historial de Sindrome atopico felino. Lesiones en placas por lamido en axilas e ingles, y panza (alopecia extensiva) y prurito de cabeza y cuello. \nTiene estudios de sangre con virales negativas. Y Toxo igm negativo, igg 1/128. Hemograma con leve anemia. Tratado varias veces con prednisolona. Actualmente tomando cannabis y pregabalina 75 mg. \nEstá con tos \nDoy orden para repetir hemograma e Igg para evaluar seroconversion. Y rx torax.\nLuego evaluaremos empezar terapia con ciclosporina. 2026-01-09 9326 7746 \N 75 2633 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2015 2025-10-10 09:40:35.676752+00 2025-10-10 09:40:35.676756+00 f t Complejo eosinofilico felino. Gato con el que convive aún con hiporexia. Gatito con el q convive requiere atención presencial. Solo medicacar si hay signos clinicos; sino cuadro autoinmune. Inflamación de esencias y quijada. Sin cambios clinicos 2026-01-10 9514 8148 \N 68 2722 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2016 2025-10-10 09:44:08.460934+00 2025-10-10 09:44:08.460939+00 f t Rinitis alérgica\nDd/. Rinitis infecciosa Solo medicar si hay síntomas o malestar Seguimiento Estornudos incohercibles desde 72hs. Buen ánimo, auscultación s/p.\nNo ha tos y sin rales en vías aéreas; otro gatito curso con cuadro similiar. 2026-01-10 7528 6192 \N 68 2701 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2017 2025-10-10 15:20:51.572082+00 2025-10-10 15:20:51.572088+00 f t Tercera dosis de vacuna triple felina No se ingresó información No se ingresó información Estado gral bueno. 2026-01-10 10291 8544 \N 114 2824 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2019 2025-10-10 21:58:41.542504+00 2025-10-10 21:58:41.542509+00 f t Primer triple felina Desparasitacion cada 15 días hasta los3 meses . Gatita bebé 9 semanas. EOG normal 2025-10-31 9772 8142 \N 92 2719 {"recipes": [], "studies": [], "medications": [{"name": "FELIGEN CRP - Inyectable -", "user": null, "group": 16, "active": true, "company": "Virbac", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.881501-03:00", "updated_at": "2025-02-20T08:17:53.881508-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1157, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}], "specialities": []} +2020 2025-10-10 22:00:51.017943+00 2025-10-10 22:00:51.017949+00 f t Dermatitis seborreica Control ASC perfil 7+ AOC Clamoxyl+ baños semanales con tritón hexidinn Mejor. Dermatitis seborreica en dorsal del lomo 2026-01-10 9310 7733 \N 92 2804 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2053 2025-10-13 23:20:46.046596+00 2025-10-13 23:20:46.046605+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-13 9491 7899 \N 112 2666 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2021 2025-10-11 01:00:36.508643+00 2025-10-11 01:00:36.508647+00 f t ulcera por trauma en globo ocular? gabapentina.\nEn base a la revision clinica de mañana , se indicará o no interconsulta con oftalmologia indico gabapentina 12 hs antes de la proxima consulta y 2 hs antes de la misma para poder realizar la revision clinica correspondiente felino hembra entera comun europeo 7 años 6 kg aprox\ncome gastrointestinal + fit de royal\nconsulta por inflamacion palpebral superior e inferior en region ocular izquierda, la cual impide la visualizacion del globo ocular, con moderada secrecion de color verdosa asociada, evolucion 24 hs . Por lo que me comenta la tutora, hace muchos años le diagnosticaron desprendimiento de retina del globo ocular izquierdo.\nEs una paciente que se rehusa a la revision clinica, estando a la defensiva,\naus fc 200 lpm\npelo hirsuto\nno vomitos ni diarrea 2025-10-11 10429 8661 \N 88 2841 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2022 2025-10-11 01:08:44.720725+00 2025-10-11 01:08:44.72073+00 f t otitis No se ingresó información aplico dexa a 0.4 mg/ kg sc e indico comenzar tto con otovier nf ( 5 gotas en cada CA cada 12 hs por 7 dais) . Luego nos enviara fotos para evaluar si debe continuar con el tto o no . canino macho mestizo 15 años 22 kg castrado\nconsulta por eritema de pabellon auricular derecho . La tutora notó dicha alteracion hace 24 hs aprox.\nEstuvo en tratamiento con fisioterapia , ozono etc por alteraciones en columna lumbosacra que imposibilitan al paciente a caminar. La tutora realiza vaciados manual de vejiga .\nrevision clinica\naus s/p\nnormotermico\nnormohidratrado\nestado : alerta, conectado con el medio.\nse observa eritema marcado del pabello auricular derecho , con secrecion amarronada obtenida en la limpieza otica + prurito al maniobrar dicha zona .\npabellon auricular izquierdo s/p 2026-01-10 765 890 \N 88 2837 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2023 2025-10-11 01:10:38.0709+00 2025-10-11 01:10:38.070906+00 f t No se ingresó información No se ingresó información No se ingresó información saco sangre para perfil general completo con orina + upc 2026-01-10 9991 8265 \N 88 2768 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2024 2025-10-11 01:29:57.585101+00 2025-10-11 01:29:57.585108+00 f t enfermedad degenerativa en art. coxofemoral ? realizo orden para rx columna toracolumbar y lumbo sacra ll + art coxofemoral ll y ap - canino macho mestizo castrado \nconsulta/ revision para vacunacion anual\ncome eukanuba\ndesparasitaciones internas y externas vencidas\nrevision clinica \naus s/p\nnormotermico\nnormohidratado\nestado alerta\ncc 7/8\na la palpacion en raquis , manifiesta dolor/sensibilidad en columna toraco-lumbar.\na nivel cadera, impide la extension de la misma , manifiestando dolor . 2026-01-10 9896 8179 \N 88 2741 {"recipes": [], "studies": [], "medications": [{"name": "PAUL - ANTIRRABICA - Inyectable -", "user": null, "group": 15, "active": true, "company": "PAUL", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.860418-03:00", "updated_at": "2025-02-20T08:17:53.860426-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1153, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-06", "next_application_months": 12}, {"name": "QUANTUM DA2PPVL (5+L) - Inyectable -", "user": null, "group": 16, "active": true, "company": "MSD Intervet", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.936275-03:00", "updated_at": "2025-02-20T08:17:53.936282-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1168, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-06", "next_application_months": 12}], "specialities": []} +2025 2025-10-11 02:47:53.969099+00 2025-10-11 02:47:53.969104+00 f t Gastroenteritis \nDd/. Intoxicación planta ornamental Ecografía y fluido terapéutico sino hay cambios favorables. Ayuno hasta mañana de agua incluida. Si no hay más vómitos manejo dietario. Hasta que defeque normal e incrementar de a poco. Hace 48hs empezó con diarrea oscura, hoy vómitos (uno grande con plantas, velo de novia) \nRecibio Ranitidina + Maropotant + Novotic y le vienen dando bismuto. Estomago sobredistendido a la palpación, psialorrea y nauseas. Normotermia. Diarrea 2026-01-10 10456 8687 \N 68 2847 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2026 2025-10-11 03:15:49.210889+00 2025-10-11 03:15:49.210894+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-11 10460 8691 \N 90 2846 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2054 2025-10-13 23:22:29.959083+00 2025-10-13 23:22:29.959092+00 f t control son tranquilas extracción extracción 2026-01-13 7038 6755 \N 112 2417 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2031 2025-10-11 15:03:01.072243+00 2025-10-11 15:03:01.072251+00 f t Enfermedad articular degenerativa avanzada, Posible displasia no hay estudios para corrobora, Síndrome cognitivo de generativa. Sugiero A realiza a chequeo general de sangre y ecografía, Eventualmente también consulta con un neurólogo. A lo cual los tutores me manifiestan que posiblemente no lo puedan realizar. Indico tratamiento con tramador meloxicam y prendí solona. Los tutores me comentan que se orina encima se defecta encima hace días que no se puede levantar, Come bien y está de buen Ánimo.\nMe comentan que hace un tiempo lo llevaron a la veterinaria le indicaron al tren le dieron una medicación inyectable pero no tiene otro tratamiento ni derivación con un profesional, Por eso desestimó la eutanasia y comienzo un tratamiento por posible síndrome cognitivo de generativo. \nTampoco tiene estudios previos\nPaciente agresivo que cuesta revisar 2026-01-11 10259 8518 \N 21 2813 {"recipes": [], "studies": [], "medications": [{"name": "ALGEN iny. 20 x 20 cc - Inyectable -", "user": null, "group": 4, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.314406-03:00", "updated_at": "2025-02-20T08:17:51.314414-03:00", "description": "Inyección de tramadol", "id_medicina": 533, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "MELOXIVET 5 mg INY. x 10 cc - Inyectable -", "user": null, "group": 6, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.701414-03:00", "updated_at": "2025-02-20T08:17:52.701419-03:00", "description": "Inyección antiinflamatoria", "id_medicina": 872, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2032 2025-10-11 15:13:00.681456+00 2025-10-11 15:13:00.681462+00 f t No se ingresó información No se ingresó información Se indica dieta natural a base de carne magra y verduras con los suplementos correspondientes. Se indica un control mensual y pesar al paciente una vez por semana Mclavin es un macho castrado de 3 años de edad con 1 peso de 40 kg imposible 30% de sobrepeso 2026-01-11 10123 8383 \N 21 2786 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2033 2025-10-11 15:18:56.41749+00 2025-10-11 15:18:56.417499+00 f t Sospecho de hemoparásitos y de posible hepatitis aguda Realizar un chequeo general completo y ecografía abdominal Indicó doxiciclina de 100 mg 3/4 de comprimido cada 12 horas por 4 semanas híper nicolona en dosis decreciente Mami Hércules es un canino de 5 años macho entero la tutora me comenta que come alimento balanceado más carne no sabe decirme cuándo fue el último vez quiso piso caca, Y me llamará consulta porque la primer semana que dejo de comer Orinó muy amarillo.\nPreséntate temperatura de 40° buen ánimo y comiendo tuvo presencia de garrapatas 2026-01-11 9496 7904 \N 21 2730 {"recipes": [], "studies": [], "medications": [{"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "HEPATONE x 100 cc - Solución -", "user": null, "group": 8, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.382787-03:00", "updated_at": "2025-02-20T08:17:52.382798-03:00", "description": "Solución hepática", "id_medicina": 793, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2034 2025-10-13 02:43:57.25958+00 2025-10-13 02:43:57.259586+00 f t Fístula paranal bilateral. Limpieza local con tritohexidín plus que tienen del episodio anterior, e indico platsul A local. Ya le dieron meloxicam que tenían de episodio anterior. Aplico tribiotic y mañana compran antibiótico para comenzar oral: \nRp/ spectryl 10 1 comp cada 12 hs x 7 días mínimo. Solicitaron servicio para drenar glándulas pero al momento de la consulta ya había fistulizado. Estuvo en tto la la contralateral hace unos días. Actualmente la afectada es la izq con herida eritematosa, inflamada. En derecha herida aún abierta. 2026-01-12 10504 8722 \N 91 2850 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2035 2025-10-13 17:18:46.316321+00 2025-10-13 17:18:46.316327+00 f t Buen estado clínico de salud No se ingresó información No se ingresó información Mc 2da triple felina. Tiene una dosis ya y rabia. Come AB. Índole\nEog sp\nSe aplica triple felina en flanco derecho. 2026-01-13 8789 7258 \N 79 2529 {"recipes": [], "studies": [], "medications": [{"name": "FELIGEN CRP - Inyectable -", "user": null, "group": 16, "active": true, "company": "Virbac", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.881501-03:00", "updated_at": "2025-02-20T08:17:53.881508-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1157, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}], "specialities": []} +2036 2025-10-13 17:24:29.292324+00 2025-10-13 17:24:29.29233+00 f t Neoplasia testicular. Enfermedad degenerativa articular. Orden para cardio rx de tórax. Se indica cirugía con prequirurgicos correspondientes \nSe indica fisioterapia para tto del dolor Meloxicam 0.1mg/Kg cada 24hs x 5 días. Pregsbamina 150mg 1/3 a 2/3 de comprimido cada 12hs Mc tumor testicular . Difícil revisación \nEog sensorio alerta mm rosadas . Fr y fc sp. Ausc sp moderada odontolitiasis \nDificultad para incorporarse, marcha ataxica con cifosis marcada. Dolor toracolumbar manifiesto\nTestículo derecho aumentado de tamaño 25cm de diámetro aprox. Ruboroso. 2026-01-13 8869 7334 \N 79 2549 {"recipes": [], "studies": [], "medications": [{"name": "MELOXIVET 5 mg INY. x 10 cc - Inyectable -", "user": null, "group": 6, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.701414-03:00", "updated_at": "2025-02-20T08:17:52.701419-03:00", "description": "Inyección antiinflamatoria", "id_medicina": 872, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "MELOXICAM DERMOVET 2 mg x 10 comp. - Comprimidos -", "user": null, "group": 6, "active": true, "company": "Dermovet", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.657981-03:00", "updated_at": "2025-02-20T08:17:52.657988-03:00", "description": "Comprimidos antiinflamatorios", "id_medicina": 861, "presentation": 3, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2055 2025-10-13 23:22:52.955399+00 2025-10-13 23:22:52.955404+00 f t control No se ingresó información No se ingresó información extraccion 2026-01-13 7038 5756 \N 112 2417 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2059 2025-10-13 23:24:05.75487+00 2025-10-13 23:24:05.754877+00 f t posible megaesofago No se ingresó información No se ingresó información extraccion 2026-01-13 7131 5835 \N 112 2377 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2062 2025-10-13 23:42:45.481586+00 2025-10-13 23:42:45.481591+00 f t Rinitis . Clamoxyl+ dexametasona+ evitar alergenos ambientales Inflamación de vías aéreas superiores. Secreción serosa. Alergenos ambientales. 2026-01-13 10555 8759 \N 92 2852 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2038 2025-10-13 17:36:21.177388+00 2025-10-13 17:36:21.177394+00 f t Cistitiscisitits idiomática/cristaluria\nSe indica Aoc\nNegativa por IC a vif y vilef Aumentar ingesta de agua. Administrar flores de Bach indicadas consulta anterior. Vacuna de leucemia y rabia en 21/30 dias Meloxicam 0.1mg/Kg vía oral por 5 días luego mitad de dosis cada 48hs. Realizar Aoc. Mc test vif vilef y 2da dosis de leucemia. Comentan a veces se queja al orinar. Pero no vieron sangre en litera. Está todavía aislada en una habitación en adaptación con Juliana.\nEog sp\nEop vejiga chica no se palpa. 2026-01-13 8455 6966 \N 79 2734 {"recipes": [], "studies": [], "medications": [{"name": "FELIGEN CRP - Inyectable -", "user": null, "group": 16, "active": true, "company": "Virbac", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.881501-03:00", "updated_at": "2025-02-20T08:17:53.881508-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1157, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-09", "next_application_months": 12}], "specialities": []} +2039 2025-10-13 21:58:23.642032+00 2025-10-13 21:58:23.642038+00 f t . . . Se solicitó vacunación anual. Se aplican vacunas. Presenta mal aliento, odontolitiasis en últimos molares superiores e inferiores lado izquierdo. Si orden para cardiología y perfil prequirurgico hemostatico 2026-01-13 10293 8545 \N 80 2831 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2040 2025-10-13 22:33:15.360635+00 2025-10-13 22:33:15.360646+00 f t Conjuntivitis alergica No se ingresó información No se ingresó información Telemedicina. Inflamación en párpado superior e inferior, y en conjuntiva. Sin dolor, sin blefarospasmo. Indico gotas tobramax cada 8 hs por 7 días y prednisolona por 3 días dosis decrecientes 2026-01-13 631 742 \N 80 2817 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2041 2025-10-13 22:35:58.25112+00 2025-10-13 22:35:58.251128+00 f t . No se ingresó información No se ingresó información Se aplicó vacuna antirrabica 2026-01-13 667 788 \N 80 2713 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2042 2025-10-13 22:36:33.33091+00 2025-10-13 22:36:33.330918+00 f t . No se ingresó información No se ingresó información Se aplicó triple felina y antirrabica 2026-01-13 9759 8130 \N 80 2764 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2043 2025-10-13 22:38:25.451569+00 2025-10-13 22:38:25.451576+00 f t No se ingresó información Con los resultados debe pedir control conmigo Indico ex de tórax LL y DV, y orina completa Se aplicó vacuna triple felina y antirrabica. El tutor manifiesta que tiene tos por momentos, de forma crónica. También tuvo cistitis y nunca le solicitaron análisis de orina. 2026-01-13 9759 8131 \N 80 2764 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2044 2025-10-13 22:42:32.171996+00 2025-10-13 22:42:32.172007+00 f t Asma felino Luego control conmigo Solicito rx tórax LL y DV Consulta por pulgas. Muchísimas pulgas y prurito. Indico pipeta cada 28 dias. Consulta la tutora por tos de evolución cronica. Auscultación aumento de murmullo hemitorax derecho 2026-01-13 10006 8279 \N 80 2767 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2045 2025-10-13 22:51:39.353398+00 2025-10-13 22:51:39.353408+00 f t Inflamación hepática. Gastritis Si mañana vomita indico ir a 24 hs. Para estudios: ecografía\n Abdominal. Análisis de sangre. Ver de pasar suero. Dieta pollo y zanahoria hervida Vomita desde el miércoles color amarillento una vez al día. Hoy vómito a la madrugada la comida. Toma agua y no vomita 2026-01-13 73 75 \N 114 2838 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}, {"id": 8, "name": "Perfil General Completo sin Orina"}], "medications": [{"name": "PILERAN INY. x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "Holliday", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.997188-03:00", "updated_at": "2025-02-20T08:17:52.997193-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 950, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2046 2025-10-13 23:10:04.79908+00 2025-10-13 23:10:04.799089+00 f t leucemia El paciente fue eutanaciado. Eritropoyetina Severa anemia, 2026-01-13 9491 7899 \N 112 2670 {"recipes": [], "studies": [], "medications": [], "specialities": []} +1742 2025-09-16 19:12:09.902996+00 2025-09-16 19:12:09.903004+00 f t Control de rutina, posible megaesofago. indicar pregabalina antes de manipular. Extracción de sangre Gato adulto. 2026-01-13 7131 5835 \N 112 2378 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2047 2025-10-13 23:13:09.712896+00 2025-10-13 23:13:09.712905+00 f t ... paciente dificil de manipular, pero con paciencia se puede o pregabalina. Se realizo extracción de sangre Control del rutina 2026-01-13 9861 8150 \N 112 2761 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2048 2025-10-13 23:15:55.897247+00 2025-10-13 23:15:55.897257+00 f t bursitis calcanea, drena en panal de abejas.\npresuntivo de brucelosis. indicar que haya un ayudante extra porque es un perro muy miedoso.\nladra mucho pero no muerde. \ntratar con cuidado.\nse pudo sacar sangre con jeringa de la sanea externa sin problema, pero con ayuda. Extracción de sangre Rescatada, bursitis calcanea 2026-01-13 8854 7319 \N 112 2752 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2049 2025-10-13 23:16:51.673958+00 2025-10-13 23:16:51.673963+00 f t leucémia no respondió a la epo. paciente eutanasiado Anemia severa. 2026-01-13 9491 7899 \N 112 2669 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2050 2025-10-13 23:17:17.235082+00 2025-10-13 23:17:17.235087+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-13 9491 7899 \N 112 2668 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2051 2025-10-13 23:17:47.992513+00 2025-10-13 23:17:47.992519+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-13 9491 7899 \N 112 2667 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2052 2025-10-13 23:20:21.423398+00 2025-10-13 23:20:21.423407+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-13 6619 5396 \N 112 2343 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2083 2025-10-15 20:46:39.838444+00 2025-10-15 20:46:39.838449+00 f t ecografia . . ecografia \N 2026-01-15 9953 8226 \N 117 2751 {"studies": [], "medications": [], "specialities": []} +2063 2025-10-13 23:47:00.865365+00 2025-10-13 23:47:00.86537+00 f t Miasis Limpieza de larvas 24 hs de aplicada la ivermectina. Ivermectina Paciente geronte (16años) con neoplasia en pata posterior derecha. Presenta miasis en la misma pata. El paciente se encuentra bajo tratamiento antibiótico+gabapentina+dexametasona. 2026-01-13 10564 8766 \N 92 2858 {"recipes": [], "studies": [], "medications": [{"name": "IVOMEC x 50 cc - Inyectable -", "user": null, "group": 2, "active": true, "company": "", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:50.109051-03:00", "updated_at": "2025-02-20T08:17:50.109059-03:00", "description": "Endectocida inyectable", "id_medicina": 248, "presentation": 10, "medication_type": 1, "medication_type_name": "Antiparasitario"}], "specialities": []} +2065 2025-10-14 01:45:41.915737+00 2025-10-14 01:45:41.915745+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-13 4604 3826 \N 90 2876 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2066 2025-10-14 01:56:48.737432+00 2025-10-14 01:56:48.737439+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-13 10208 8476 \N 90 2810 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2067 2025-10-14 02:48:01.991331+00 2025-10-14 02:48:01.99134+00 f t - - - Los propietarios deciden dormirla por sus enfermedades preexistentes (linfoma de grado avanzado) \N 2026-01-13 10401 8635 \N 1 2839 {"studies": [], "medications": [], "specialities": []} +2068 2025-10-14 03:17:53.731599+00 2025-10-14 03:17:53.731604+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-14 10671 8857 \N 90 2875 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2069 2025-10-14 14:09:51.923489+00 2025-10-14 14:09:51.923497+00 f t Laboratorio . . Laboratorio \N 2026-01-14 10281 8533 \N 100 2820 {"studies": [], "medications": [], "specialities": []} +2072 2025-10-14 16:40:42.512002+00 2025-10-14 16:40:42.51201+00 f t labo actualizado . . labo actualizado \N 2026-01-14 9861 8150 \N 100 2762 {"studies": [], "medications": [], "specialities": []} +2073 2025-10-14 20:44:07.165557+00 2025-10-14 20:44:07.165562+00 f t Disbacteriosis Coordinar turnos limpieza de dientes. Van a vencerse los estúpidos Dieta casera Diarrea que ha ido mejorando de a poco, pero es oscura y empezó cuando dejó de tomar el odontobiotic por la enfermedad periodontal. Sin vómitos conserva el apetito. Estudios pre cx de sangre normales. 2026-01-14 8378 6902 \N 68 2873 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2074 2025-10-14 22:18:25.783899+00 2025-10-14 22:18:25.783908+00 f t Alergia? Complejo respiratorio felino? Asma felino? Descenso de peso - Desde hace un mes vio que tuvo 4 estornudos. Indistintamente la hora del día. Estornudaba y luego continuaba con su vida normal. No presentó vómitos ni arcadas. Lo adoptó en abril. Vacunas al día. Come alimento balanceado y media lata de alimento húmedo al día. \nEOG: s/p\nEOP: sobrepeso\n\nComenzaremos disminuyendo el consumo de balanceado seco. Hablamos sobre patologías frecuentes hepaticas felinas por el exceso de peso. \nPróximamente se realizará rx l-l de tórax y análisis de sangre completo con vif vilef\nDejo gabapentina para administrar 3 hs previas a la extraccion \N 2026-01-14 10554 8758 \N 113 2853 {"studies": [{"id": null, "name": "2"}, {"id": null, "name": "10"}], "medications": [], "specialities": []} +2075 2025-10-14 22:36:19.02809+00 2025-10-14 22:36:19.028097+00 f t Rx Reposo Meloxivet inyectable Claudicacion MAI. Se le cayó a la tutora cuando intento levantarla 2026-01-14 10435 8667 \N 114 2842 {"recipes": [], "studies": [{"id": 2, "name": "Radiografía"}], "medications": [], "specialities": []} +2076 2025-10-14 22:39:29.919658+00 2025-10-14 22:39:29.919663+00 f t Artrosis. Artritis Sacar Rx de. Columna toraco lumbar y de cadera Meloxivet inyectable. Ranitidina iny. Dificultad para pararse y caminar. 2026-01-14 9435 7841 \N 114 2864 {"recipes": [], "studies": [{"id": 2, "name": "Radiografía"}], "medications": [], "specialities": []} +2077 2025-10-15 01:19:13.35502+00 2025-10-15 01:19:13.355026+00 f t . . Se realiza extracción de sangre para perfil completo con orina. El paciente permitió la maniobra sin inconvenientes, la tutora colaboró bien durante el procedimiento, lo que facilitó la extracción . 2025-10-14 10355 8597 \N 104 2833 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2078 2025-10-15 02:30:09.913384+00 2025-10-15 02:30:09.913392+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-14 10608 8808 \N 90 2870 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2070 2025-10-14 14:45:50.215832+00 2025-10-14 14:45:50.215837+00 f t Cardiologico . . Cardiologico \N 2026-01-14 8378 6902 \N 82 2530 {"studies": [], "medications": [], "specialities": []} +2071 2025-10-14 16:23:10.185129+00 2025-10-14 16:23:10.185135+00 f t Rayos . . rayos \N 2026-01-14 409 488 \N 84 1864 {"studies": [], "medications": [], "specialities": []} +2079 2025-10-15 12:01:19.453921+00 2025-10-15 12:01:19.453927+00 f t Insuf renal/infección urinaria/litiasis No se ingresó información No se ingresó información Se realizó cistocentesis solicitada por su nefrólogo. Extraigo 5 ml de orina poco concentrada y muy turbia. Hago orden para orina completa, relación proteína/creatinina y urocultivo. La vejiga estaba muy distendida, hice orden para atención en guardia por sospecha de obstrucción urinaria, si lo logra orinar u orina de a gotas. 2026-01-15 10203 8472 \N 80 2888 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2080 2025-10-15 12:47:47.678931+00 2025-10-15 12:47:47.67894+00 f t . . . . \N 2026-01-15 10287 8540 \N 100 2822 {"studies": [], "medications": [], "specialities": []} +2081 2025-10-15 17:18:23.676308+00 2025-10-15 17:18:23.676314+00 f t Cuadro infecciosos No se ingresó información No se ingresó información Consulta por disfagia 2026-01-15 523 618 \N 68 2582 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2082 2025-10-15 17:44:14.549362+00 2025-10-15 17:44:14.549369+00 f t . . . . \N 2026-01-15 10355 8597 \N 100 2834 {"studies": [], "medications": [], "specialities": []} +2084 2025-10-15 21:54:24.917193+00 2025-10-15 21:54:24.917198+00 f t Vacunación S/recom S/tto Consulta para implantación de microchip y vacunación antirrábica para viaje a países bajos. 2025-11-22 10358 8599 \N 91 2836 {"recipes": [], "studies": [], "medications": [{"name": "PAUL - ANTIRRABICA - Inyectable -", "user": null, "group": 15, "active": true, "company": "PAUL", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.860418-03:00", "updated_at": "2025-02-20T08:17:53.860426-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1153, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}], "specialities": []} +2085 2025-10-16 02:52:57.012292+00 2025-10-16 02:52:57.0123+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-15 10613 8812 \N 90 2885 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2086 2025-10-16 03:19:27.669052+00 2025-10-16 03:19:27.669057+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-16 10764 8941 \N 90 2890 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2092 2025-10-16 17:34:10.661957+00 2025-10-16 17:34:10.661966+00 f t No se ingresó información Realizar un chequeo completo Sacar Rx tórax análisis de sangre y eco abdominal Presenta estornudos. Evolucion dos semanas. Vacunas vencidas. 2026-01-16 10616 8814 \N 114 2865 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2087 2025-10-16 14:13:06.441158+00 2025-10-16 14:13:06.441166+00 f t . . . . \N 2026-01-16 123 128 \N 82 2863 {"studies": [], "medications": [], "specialities": []} +2088 2025-10-16 14:22:39.750522+00 2025-10-16 14:22:39.750527+00 f t Gastritis? No se ingresó información Sucravet 2,5ml Análisis de sangre Ok.\nLe está costando comer. Le dio alimento natural y comió poco. Cuando volvió con balanceado vomitó. Indico sucravet 2,5ml cada 12 Hs. Si continúa con dificultades para comer o repetición de vómitos realizar ecografía abdominal 2026-01-16 9861 8150 \N 113 2884 {"recipes": [{"rx": "Sucravet 2,5ml cada 12 hs", "dx_presuntivo": ""}], "studies": [], "medications": [], "specialities": []} +2089 2025-10-16 15:20:38.675033+00 2025-10-16 15:20:38.675041+00 f t Dermatitis alérgica a la picadura de pulgas. Respetar la posología del Bravecto y buen control ambiental. Bravecto cada 3 meses. Prednisolona 15 mg x día x 5 días; luego 10 mg x día x 5 días; posteriormente 5 mg x día x 5 días. Por último, 5 mg c/48 hs x 7 días. Además Cefalexina 1 g c /12 hs x 7 días. Tratamiento ambiental . Consulta x depilación en zona lumbosacra. EOG normal. Sed, apetito, micción y defecación normales. Auscultación cardíaca normal. Palpación abdominal sin particularidades. 2026-01-16 10615 8813 \N 70 2866 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2090 2025-10-16 15:33:05.943259+00 2025-10-16 15:33:05.943265+00 f t Sinovitis de tarso. Consultar nuevamente sí no hay remisión del cuadro. Meloxivet iny 0,2 ml SC. Luego continúa meloxivet PO 2 mg c/24 hs. Consulta x inflamación tarso izq. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal normal. Auscultación cardíaca normal. 2026-01-16 10420 8652 \N 70 2840 {"recipes": [], "studies": [], "medications": [{"name": "MELOXIVET 4 mg x 10 comp. - Comprimidos -", "user": null, "group": 6, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.693862-03:00", "updated_at": "2025-02-20T08:17:52.693867-03:00", "description": "Comprimidos antiinflamatorios", "id_medicina": 870, "presentation": 3, "medication_type": 2, "medication_type_name": "Medicamento", "next_application_date": "2025-10-11", "next_application_months": 0}], "specialities": []} +2091 2025-10-16 17:28:25.054136+00 2025-10-16 17:28:25.05414+00 f t Gastroenteritis Control Aplico pileran y ranitidina. Y dieta pollo arroz y zanahoria hervida Hace un mes fue rescatado de la calle. Recibió tratamiento contra otitis. Fue desparasitado y vacunado hace aprox 15 días.\nEl sábado vómito mucho, había comido hojas. Hoy vómito un líquido blanco. Presenta un movimiento de la cabeza como si fuera un tic 2026-01-16 10716 8899 \N 114 2886 {"recipes": [], "studies": [], "medications": [{"name": "PILERAN INY. x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "Holliday", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.997188-03:00", "updated_at": "2025-02-20T08:17:52.997193-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 950, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2093 2025-10-16 17:44:19.790593+00 2025-10-16 17:44:19.790599+00 f t Stress Estimularla a que tome sgua. Y de a poco que coma alimento seco Vit. B. Se mudó hace unos días del extranjero. Dice la tutora que no quería comer. Ahora está comiendo pouch de RC\nA la revisación se la ve flaca y algo deshidratada. 2026-01-16 10613 8812 \N 114 2871 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}], "medications": [], "specialities": []} +2094 2025-10-16 17:51:25.818073+00 2025-10-16 17:51:25.818087+00 f t No se ingresó información Que le ponga juguetes para que se mueva mas Serenex aerosol.\nCorte de uñas La tutora dice que la ve rara.\nHace un par de meses se murió el gatito que vivía con ella de VIF\nDesde ese momento no corre ni juega tanto.\nCome toma agua. No sé palpa ni ausculta nada anormal 2026-01-16 10709 8894 \N 114 2883 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2095 2025-10-16 21:06:39.834002+00 2025-10-16 21:06:39.834011+00 f t Cistitis inflamatorio.\nArtrosis incipiente cervicales.\nControl de Neo en flanco derecho suelto y de piel. X 2.\nDe q y 2cm aprox No se ingresó información Seguimiento clínico anual.\nUrosedac y Colotrin Consulta clínica con estudios. \nAnálisis de sangre leucopenia leve y trombocitos en limite. Sin anemia ni signos clínicos.\nControl anual salvo que hayan cambios clínicos. En análisis de orina sugiere inflamación; indicó urosedac probiótic.\nEcografía sin alteraciones. 2026-01-16 409 488 \N 68 2825 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2096 2025-10-16 21:23:24.698486+00 2025-10-16 21:23:24.698491+00 f t . No se ingresó información No se ingresó información Realice cistocentesis 2026-01-16 10203 8472 \N 80 2887 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2097 2025-10-16 21:24:36.469706+00 2025-10-16 21:24:36.469711+00 f t Pulgas No se ingresó información No se ingresó información Telemedicina. Prurito en cabeza y cuello. La tutora vio materia fecal de pulgas. Indico pipeta fipronil cada 1 mes y desparasitacion del ambiente 2026-01-16 10773 8950 \N 80 2894 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2098 2025-10-16 22:07:51.302727+00 2025-10-16 22:07:51.302737+00 f t Dermatitis por contacto No meterse a la pileta hasta que se seque la lesion Doxiciclina 7 días vía oral. Empezó a ladrar hace varias noches.\nNo ha cambios clínicos salvo dermatitis en pecho con leve eritema y alopecia, lesion húmeda. No llega a lamerse no se rasca. 2026-01-16 10784 8958 \N 68 2895 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2099 2025-10-16 23:47:10.32681+00 2025-10-16 23:47:10.326815+00 f t parasitosis: trichuriasis, ancylostomas alimentacion casera hasta lograr mejoria (se dejan indicaciones) continuar con omeprazol y enrofloxacina cada 24 hs, control en 5 dias \nsi no hay mejora, se necesitaran estudios complementarios sharpei macho joven (año y 1/2) con diarrea mucohemorragica, come old prince cordero, desparasitado hace 3 meses con ATP comun/tradicional, alerta, buen animo, mucosas rosadas, examen fisico sp \nno hay otra signologia digestiva presente 2025-10-21 10867 9023 \N 94 2905 {"recipes": [], "studies": [], "medications": [{"name": "BOVICINE I x 50 cc (Ivermectina) - Líquido -", "user": null, "group": 3, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:49.240216-03:00", "updated_at": "2025-02-20T08:17:49.240224-03:00", "description": "", "id_medicina": 63, "presentation": 4, "medication_type": 1, "medication_type_name": "Antiparasitario"}, {"name": "Enrofloxacina - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:05:57-03:00", "updated_at": "2025-09-22T14:05:57-03:00", "description": "Es un antibiótico bactericida de amplio espectro.", "id_medicina": 1191, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DIPIRONA CHINFIELD iny. x 100 ml - Inyectable -", "user": null, "group": 6, "active": true, "company": "", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.097282-03:00", "updated_at": "2025-02-20T08:17:52.097288-03:00", "description": "Inyección de dipirona", "id_medicina": 725, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "NOVOTIOC INY. x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.836248-03:00", "updated_at": "2025-02-20T08:17:52.836255-03:00", "description": "Inyección para problemas metabólicos", "id_medicina": 907, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2100 2025-10-17 01:59:49.525423+00 2025-10-17 01:59:49.525429+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-16 10865 9022 \N 90 2903 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2101 2025-10-17 02:04:38.684314+00 2025-10-17 02:04:38.684325+00 f t reaccion/fiebre post-vacunal ? controlar temperatura indico paños de agua fria en axilas vientre bajo abdomen + estimulacion de apetito con pechuga de pollo a la plancha canino hembra chihuahua 3.5 meses 1.2 kg \nconsulta por decaimiento, ayer le aplicaron la primer dosis de la sextuple en una veterinaria cercana a su domicilio; a las 3 hs aproximadamente de vacunada, la paciente comenzó con temblores por lo cual acudieron nuevamente a dicho establecimiento para controlarla. le aplicaron 0.05 mg de dipirona sc , no presentaba fiebre .\nrevision clinica\naus s/p\nnormohidratada\ntemperatura 39.3 \N 2026-01-16 10870 9025 \N 88 2906 {"studies": [], "medications": [{"name": "DIPIRONA CHINFIELD iny. x 100 ml", "id_medicina": "725", "medication_type_name": "Medicamento", "next_application_date": "2025-10-16", "next_application_months": 0}], "specialities": []} +2102 2025-10-17 11:45:17.93487+00 2025-10-17 11:45:17.934876+00 f t control es ciega. y ladra pero buena extracción de sangre control de prequirurgico.\npara limpieza dental. 2026-01-17 7306 5994 \N 112 2891 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2103 2025-10-17 12:13:55.201499+00 2025-10-17 12:13:55.201505+00 f t Vacunación Vacunación Vacunación EOG s/p vacunación 2026-01-17 745 3282 \N 91 2732 {"recipes": [], "studies": [], "medications": [{"name": "FELOCELL CVR - Inyectable -", "user": null, "group": 16, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.886518-03:00", "updated_at": "2025-02-20T08:17:53.886526-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1158, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-13", "next_application_months": 12}, {"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-13", "next_application_months": 12}], "specialities": []} +2104 2025-10-17 12:56:25.559819+00 2025-10-17 12:56:25.559825+00 f t Laboratorio . . Laboratorio \N 2026-01-17 7306 5994 \N 100 2892 {"studies": [], "medications": [], "specialities": []} +2106 2025-10-17 13:06:29.950218+00 2025-10-17 13:06:29.950225+00 f t . No se ingresó información No se ingresó información Telemedicina. Consulta por vómitos que comenzaron hoy, hoy es el segundo día de anorexia. Toma agua y la tolera. Consulta presencial mañana conmigo, mientras mantener en ayuno sólido. 2026-01-17 10911 9054 \N 80 2915 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2105 2025-10-17 13:04:53.218134+00 2025-10-17 13:04:53.21814+00 f t Laboratorio . . Laboratorio \N 2026-01-17 123 128 \N 100 2893 {"studies": [], "medications": [], "specialities": []} +2107 2025-10-17 13:36:07.129864+00 2025-10-17 13:36:07.12987+00 f t enfermedad degenerativa en articulacion coxofemoral? sugiero realizar rx de columna toracolumbar y lumbosacra ll + art coxofemoral ll + ap aplico dexa + tramadol + ranitidina. \ndejo 2 jeringas con dexa para aplicar mañana y pasado ( cada 24 hs )\nindico tramadol via oral cada 12 hs por 3 dias , luego a mitad de dosis por 3 dias mas \nademas indico comenzar con rumivital forte por al menos 2 meses canino hembra mestiza castrada 13 años 24 kg aprox.\nvacunas vencidas\ndesparasitaciones internas al dia \ncome balance de vital can\nconsulta por dificultad para incorporarse, claudicacion 4-5/6 de MPI, evolucion 72 hs .\nrevision clinica\naus s/p\nnormotermica\nnormohidratada\npalpacion abdominal, abdomen blando, no manifiesta dolor a la palpacion.\nrevision raquis: marcado dolor en region lumbosacra. imposibilidad para realizar la extension de cadera ya que al internar realizar la maniobra, la paciente se rehusa y queja \N 2026-01-17 10740 8919 \N 88 2889 {"studies": [], "medications": [{"name": "DEXA 20 mg/ml x 20 cc", "id_medicina": "702", "medication_type_name": "Medicamento", "next_application_date": "2025-10-17", "next_application_months": 0}], "specialities": []} +2108 2025-10-17 13:45:32.872473+00 2025-10-17 13:45:32.872478+00 f t ulcera en globo ocular izquierdo realizo orden para analisis de sangre ( perfil general completo + calcio + fosforo + ionograma + coagulograma + aoc + upc)\necografiia abdominal indico ciprovet cada 12 hs + interconsulta con oftalmologia felino hembra entera 7 años . \nacudo nuevamente a domicilio para revision postadministracion de gabapentina .\nedema palpebral resuelto de globo ocular izquierdo resuelto. Se puede visualizar completamente el ojo. test de fluoresceina positivo ( se visualiza ulcera de notable tamaño )\nauscultacion cardiopulmonar s/p\nnormotermica\nnormohidratada\npalpacion abdominal: se palpa organomegalia/masas/neos en epigastrio. en epigastrio izquierdo, en relacion al bazo se palpa una estructura redondeada de aprox 2 cm . \N 2026-01-17 10429 8661 \N 88 2843 {"studies": [], "medications": [], "specialities": [{"id": null, "name": "41"}, {"id": null, "name": "76"}, {"id": null, "name": "77"}]} +2109 2025-10-17 13:52:31.68217+00 2025-10-17 13:52:31.682179+00 f t enfermedad degenerativa en articulacion coxofemoral sugiero poner gomas antideslizantes en pisos aplico 3er dosis de artrosan.\nsabado que viene ultima aplicacion acudo al domicilio para aplicacion de artrosan.\nesta tomando actualmente rumivital forte\nnotaron una marcada mejoria con el tratamiento antiartrosico \N 2026-01-17 4255 3550 \N 88 2844 {"studies": [], "medications": [], "specialities": []} +2111 2025-10-17 17:43:46.0841+00 2025-10-17 17:43:46.084109+00 f t Herpes virus\nDd/. Cuadro infeccioso H-Vilisin ambas gatas de la casa 21 dias Doxiciclina VO a partir de mañana 7 días.\nPrednisolona decreciente Adinamia, disfagia, hiporexia, lagrimeo desde ayer.\nConjuntivitis, rinitis, estomatitis, lnn submandibulares reactivos. Mucosas Rosa, sin rales.\nT 41C. 2026-01-17 10895 9039 \N 68 2916 {"recipes": [], "studies": [], "medications": [{"name": "DIPIRONA CHINFIELD iny. x 100 ml - Inyectable -", "user": null, "group": 6, "active": true, "company": "", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.097282-03:00", "updated_at": "2025-02-20T08:17:52.097288-03:00", "description": "Inyección de dipirona", "id_medicina": 725, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2114 2025-10-17 19:02:12.131289+00 2025-10-17 19:02:12.131294+00 t t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-17 10901 9045 \N 103 2913 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2110 2025-10-17 13:57:07.242276+00 2025-10-17 13:57:07.242284+00 f t hepatopatia difusa metabolica/ infiltrativa incipiente , gastritis aguda sugiero rechequear analisis de sangre previo a suspender tto con proteliv indico ranitidina en gotas cada 12 hs por 10 dias + proteliv cada 12 hs por al menos 30 dias felino hembra castrada 4.5 kg \nteleconsulta para lectura de analisis \N 2026-01-17 9991 8265 \N 88 2816 {"studies": [], "medications": [], "specialities": []} +2112 2025-10-17 18:45:01.635256+00 2025-10-17 18:45:01.635269+00 t t Eco abdominal No No Eco abdominal \N 2026-01-17 10901 9045 \N 103 2913 {"studies": [], "medications": [], "specialities": []} +2133 2025-10-21 00:57:59.035393+00 2025-10-21 00:57:59.035403+00 f t enfermedad viral. Sino mejora estudios complementarios Amplio la prednisolona y la Doxiciclina Control clinico\nAún hay gingivitis aunq come sin molestias. Normotermia y estornudos se mantienen aunq van ampliando intervalo. Los lnn siguen reactivos. Evoluciona parcialmente 2026-01-20 10895 9039 \N 68 2940 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2113 2025-10-17 18:59:42.132279+00 2025-10-17 18:59:42.132284+00 t t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-17 10901 9045 \N 103 2913 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2115 2025-10-17 19:05:03.941827+00 2025-10-17 19:05:03.941836+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-17 10901 9045 \N 103 2913 {"studies": [], "medications": [], "specialities": []} +2140 2025-10-21 13:59:04.006773+00 2025-10-21 13:59:04.006779+00 f t Plan sanitario al día. algunas pautas para el comportamiento animal. Ninguno Extracción de sangre para pre quirúrgico.\nCelo hace 3 meses, buen estado general. 2026-01-21 10707 8891 \N 68 2882 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2192 2025-10-28 01:42:08.945372+00 2025-10-28 01:42:08.945381+00 f t No se ingresó información No se ingresó información No se ingresó información Caquexia, taquipnea, depresión. Gata de la calle, no se sabe la edad pero aparenta más de 10 años. Hace días respira así. Auscultación spp, solo taquipnea. Abdomen abalonado, se palpa lo que podría ser el bazo muy aumentado de tamaño con consistencia casi dura y posible líquido libre. Indico ecografía abdominal lo antes posible. Aplico dexametasona 1 mg/kg. Explicó pronóstico reservado/grave 2026-01-27 541 9621 \N 80 3025 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2427 2025-11-21 02:42:56.992514+00 2025-11-21 02:42:56.992519+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-20 12857 10612 \N 90 3287 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2116 2025-10-17 23:55:48.741642+00 2025-10-17 23:55:48.741652+00 f t Hepatopatia inflamatoria, infecciosa? Irc? Realizo Extracción para chequeo general completo sin Orína Realizo fluido terapia con ringer lactato endovenoso 150 ml totales, ranitidima, sc tiocico tramadol vitamina.complejo n\nSugiero dieta natural Paciente felino hembra de 15 años, Castrada, La tutora comenta que presenta anorexia marcada, Vinieron de Estados Unidos el 3 de octubre.\nPresentas score corporal 2 de 5, Mucosas levemente pálidas tiempo he llenado capilar lento presencia sarro dental y gingivitis.\nPresenta dolor en columna torácica y en articulación coxoff oral lado derecho marcado, Con atrofia muscular. Tiene vacuna antirraBica vigente y desparasitación.\nNo hay chequeo de sangre al día, Tiene una ecografía solicitada por otro colega. Le habían indicado el alimento hills Renal. Palpó abdomen normal sin particularidades cardio ok respiratorio ok temperatura de 37.7, Pliegue lento. 2026-01-17 10613 8812 \N 21 2921 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2117 2025-10-18 06:09:34.328281+00 2025-10-18 06:09:34.328292+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-18 10963 9096 \N 90 2930 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2118 2025-10-18 06:23:21.614077+00 2025-10-18 06:23:21.614085+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-18 123 128 \N 90 2859 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2064 2025-10-13 23:48:47.229884+00 2025-10-13 23:48:47.229889+00 f t Vacunación anual . Vacunación anual + desparasitacion externa EOG normal 2026-01-18 10560 8764 \N 92 2855 {"recipes": [], "studies": [], "medications": [{"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-18", "next_application_months": 12}, {"name": "FELIGEN CRP - Inyectable -", "user": null, "group": 16, "active": true, "company": "Virbac", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.881501-03:00", "updated_at": "2025-02-20T08:17:53.881508-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1157, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-18", "next_application_months": 12}], "specialities": []} +2119 2025-10-19 04:18:27.832264+00 2025-10-19 04:18:27.83227+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-19 11038 9159 \N 90 2937 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2120 2025-10-20 00:18:02.247965+00 2025-10-20 00:18:02.247973+00 f t FLUTD no obstructivo. DDx: disuria por espasmos de destrusor / uretra vs obstrucción parcial vs CIF vs otros. Se sugiere discontinuar medicación actual (estimulantes del detrusor) en caso de que exista una obstrucción total.\nSe sugiere recopilar información respecto al tratamiento realizado en WellVet debido a que la cronología no se condice con las radiografías.\nAddendum: las nuevas radiografías evidencian la presencia de los mismos urolitos en vejiga y uretra pélvica. Sugiero realizar un flushing, dado que mientras esos urolitos persistan donde están, nada cambiará.\nDAMIAN LEVISMAN MN 8089 Se indica nueva radiografía LL y VD de abdomen (foco en la vejiga). En base a resultados de estudio, continuar con lo que fuera necesario.\nPor el momento, suspender medicacion indicada y comenzar\nGABAPENTINA 50 mg cada 8 a 12 hrs Telemedicina. Nefrourologia.\nPaciente tratado por FLUTD obstructivo. \nComenzó con disuria/polaquiuria en su casa. Fue visto en domicilio y finalmente derivado a Clínica WellVet por posible obstrucción. \nSegún HC de la veterinaria, se realizó un sondaje (infructuoso muchas veces hasta lograrlo) y Rx de abdomen POST-SONDAJE. \nEn la radiografía adjunta no se observa sonda urinaria y además, se informa presencia de urolitos en vejiga y uretra pélvica, pero no son informados dos microurolitos en uretra peneana distal.\nSe le indicó MELOXICAM, DIPIRONA y TAMSULOSINA, con muy leve respuesta positiva. Fue enviado a la casa con la sonda colocada y en domicilio fue retirada.\nAl momento de la consulta, el paciente continúa con los signos iniciales. 2026-01-19 822 928 \N 115 2756 {"recipes": [], "studies": [{"id": 2, "name": "Radiografía"}, {"id": 1, "name": "Ecografia"}], "medications": [], "specialities": []} +2121 2025-10-20 02:15:33.50122+00 2025-10-20 02:15:33.501226+00 f t Gastritis (H2O2 + sal). \nDDx: densidad urinaria disminuida por sobrehidratación vs otras enfermedades preexistentes. Se explica que la dosis tóxica renal por lo general es de 150-300 mg/kg de IBUPROFENO (el animal ingirió 25-30 mg/kg).\nPor la densidad urinaria disminuida, se sugiere un analisis de orina en el futuro para monitorear la progresion. Ninguno Telemedicina Nefrourologia.\nMC: Paciente de 25 kg que ingirió 600 mg de IBUPROFENO 5 días atrás. \nFue inmediatamente visto por una clínica 24 hrs (UCI) donde se le indujo el vómito con H2O2 y sal infructuosamente. El paciente vomitó varias veces al día siguiente. \nEn ningún momento presentó signos clínicos compatibles con intoxicación. Se realizó sangre y orina, (todo normal, densidad urinaria poco concentrada) . 2026-01-19 10650 8838 \N 115 2874 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2122 2025-10-20 14:11:06.643467+00 2025-10-20 14:11:06.643472+00 f t Laboratorio . . Laboratorio \N 2026-01-20 10880 9030 \N 100 2909 {"studies": [], "medications": [], "specialities": []} +2134 2025-10-21 01:05:18.21905+00 2025-10-21 01:05:18.219062+00 f t Vacunación sextuple No se ingresó información Revaunacion anual Paciente adoptada, castrada (quitó puntos de herida) vacunada por lugar de rescate con la antirrabica. 2026-01-20 10953 9089 \N 68 2923 {"recipes": [], "studies": [], "medications": [{"name": "PAUL - 6 SEXTUPLE - Inyectable -", "user": null, "group": 16, "active": true, "company": "PAUL", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.906620-03:00", "updated_at": "2025-02-20T08:17:53.906628-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1162, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}], "specialities": []} +2234 2025-11-01 04:43:55.86794+00 2025-11-01 04:43:55.867949+00 f t - - Se le indica hacer un chequeo de sangre a la propietaria si es que se quiere quedar más tranquila Eog: S/P normotermico, normohidratada, no presenta dolor abdominal. Muy asustadiza. Tiembla en la manipulación \N 2026-02-01 11946 9871 \N 1 3067 {"studies": [], "medications": [], "specialities": []} +2123 2025-10-20 14:29:45.177776+00 2025-10-20 14:29:45.177785+00 f t deficit neurologico por posible compresion lumbar?\nsugiero rx si no mejora y chequeo de sangre RX y AS Tto: Aplico dexa 1 mg/kg + algen 2 mg /kg + grupo B\nr/p\n-predni 20 mg 3/4 comp cada 24 hs x 3 dias y luego 1/2 comp x 3 dias mas\n-algen 60 mg 1/2 comp cada 12 hs x 5 dias\nsi vomita sumar omeprazol mc/ consulta a domicilio por inestabilidad de un miembro posterior\nEOG: Ataxia, deficit propioceptivo del MPD,dolor a nivel de columna lumbar. Comenzo con esto hace un tiempo, le cuestra levantarse a veces y al caminar se le cruza el miembro derecho, el izquierdo normal.\nPerra geronte de 16 años, pesa 15-16 kg aprox, raza basset hound \N 2026-01-20 10879 9029 \N 107 2911 {"studies": [{"id": null, "name": "8"}, {"id": null, "name": "2"}], "medications": [{"name": "PREDNI 20 mg x 100 comp.", "id_medicina": "986", "medication_type_name": "Medicamento", "next_application_date": "2025-10-20", "next_application_months": 0}, {"name": "ALGEN 60 mg x 120 comp.", "id_medicina": "532", "medication_type_name": "Medicamento", "next_application_date": "2025-10-20", "next_application_months": 0}, {"name": "ALGEN iny. LD 60 x 50 cc", "id_medicina": "534", "medication_type_name": "Medicamento", "next_application_date": "2025-10-20", "next_application_months": 0}, {"name": "DEXA 20 mg/ml x 20 cc", "id_medicina": "702", "medication_type_name": "Medicamento", "next_application_date": "2025-10-20", "next_application_months": 0}, {"name": "GRUPO B TOTAL 5000 x 50 cc", "id_medicina": "787", "medication_type_name": "Medicamento", "next_application_date": "2025-10-20", "next_application_months": 0}], "specialities": []} +2124 2025-10-20 17:34:36.663756+00 2025-10-20 17:34:36.66376+00 f t Laboratorio . . Laboratorio \N 2026-01-20 9310 7733 \N 100 2929 {"studies": [], "medications": [], "specialities": []} +2125 2025-10-20 18:07:13.646255+00 2025-10-20 18:07:13.64626+00 f t Vacunación triple felina + antirrábica. Premedicar con Gabapentina. Vacunación triple felina + antirrábica. Consulta x vacunación anual. EOG normal. Apetito, sed, micción y defecación normales. 2026-10-12 7501 6168 \N 70 2856 {"recipes": [], "studies": [], "medications": [{"name": "FELIGEN CRP - Inyectable -", "user": null, "group": 16, "active": true, "company": "Virbac", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.881501-03:00", "updated_at": "2025-02-20T08:17:53.881508-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1157, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}, {"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}], "specialities": []} +2126 2025-10-20 18:16:41.35049+00 2025-10-20 18:16:41.350499+00 f t Vacunación anual completa. Repetir en un año. Vacunación triple felina + antirrábica. Consulta x vacunación anual completa. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal normal. Auscultación cardíaca normal. 2026-10-12 345 3632 \N 70 2867 {"recipes": [], "studies": [], "medications": [{"name": "FELIGEN CRP - Inyectable -", "user": null, "group": 16, "active": true, "company": "Virbac", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.881501-03:00", "updated_at": "2025-02-20T08:17:53.881508-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1157, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}, {"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}], "specialities": []} +2127 2025-10-20 18:47:45.009394+00 2025-10-20 18:47:45.009399+00 f t No se ingresó información No se ingresó información No se ingresó información Cancelaron el turno 2026-01-20 2211 2020 \N 80 2914 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2128 2025-10-20 18:48:33.599363+00 2025-10-20 18:48:33.59937+00 f t No se ingresó información No se ingresó información No se ingresó información No se pudo atender por agresividad de paciente. No avisaron que necesitaba medicación antes de la consulta 2026-01-20 619 724 \N 80 2918 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2129 2025-10-20 18:49:03.256793+00 2025-10-20 18:49:03.2568+00 f t No se ingresó información No se ingresó información No se ingresó información Se aplica atr y triple felina 2026-01-20 10927 9067 \N 80 2922 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2130 2025-10-20 18:51:00.654582+00 2025-10-20 18:51:00.654589+00 f t No se ingresó información No se ingresó información No se ingresó información Muy agresivo, imposible de revisar. Llegue a ver las mucosas pálidas y bajo acordé corporal. Ahora come y está sin vómitos. Le indiqué ecografía abdominal y perfil general completo con sedación intramuscular (en el pasado tuvo muchas pulgas, vivía en la calle) 2026-01-20 10911 9054 \N 80 2919 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2131 2025-10-20 18:53:50.681186+00 2025-10-20 18:53:50.681192+00 f t Vacunación anual . . EOG normal \N 2026-01-20 10560 8764 \N 92 2854 {"studies": [], "medications": [{"name": "BAGOVAC RABIA", "id_medicina": "1149", "medication_type_name": "Vacuna", "next_application_date": "2026-10-20", "next_application_months": 12}, {"name": "FELIGEN CRP", "id_medicina": "1157", "medication_type_name": "Vacuna", "next_application_date": "2026-10-20", "next_application_months": 12}], "specialities": []} +2132 2025-10-20 23:39:37.480927+00 2025-10-20 23:39:37.480933+00 f t Vacunas - Vacunas Vacunas\nRescatada de un criadero hace 3 años. Fue operada de ambas líneas mamarias por tumores. \nEOG: s/P \N 2026-01-20 10672 8858 \N 113 2877 {"studies": [], "medications": [{"name": "BAGOVAC RABIA", "id_medicina": "1149", "medication_type_name": "Vacuna", "next_application_date": "2026-10-20", "next_application_months": 12}, {"name": "VANGUARD PLUS 5 + 4L + CV", "id_medicina": "1174", "medication_type_name": "Vacuna", "next_application_date": "2026-10-20", "next_application_months": 12}], "specialities": []} +2135 2025-10-21 13:10:59.133846+00 2025-10-21 13:10:59.133852+00 f t . . Se realiza extracción de sangre para perfil completo + t4l + hdl + ldl. El paciente se mostró tranquilo y permitió la maniobra sin inconvenientes, la tutora colaboró muy bien durante el procedimiento, lo que facilitó la extracción. . 2025-10-21 123 128 \N 104 2860 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2139 2025-10-21 13:56:44.245958+00 2025-10-21 13:56:44.245965+00 f t . . . . \N 2026-01-21 11152 9246 \N 90 2946 {"studies": [], "medications": [], "specialities": []} +2141 2025-10-21 14:03:43.298385+00 2025-10-21 14:03:43.298391+00 f t Cistitis inflamatoria riesgo de obstrucción, pautas de alarma. Cisticalm 1 cápsula diaria 15 dias Vejiga inflamada con poco contenido, uretra permeable. Llego una nueva mascota a la casa 2026-01-21 484 574 \N 68 702 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2142 2025-10-21 14:12:28.865781+00 2025-10-21 14:12:28.865787+00 f t Esfuerzo muscular o ligamentos. Reposo. Meloxivet 0,5 mg (gotas); 5 gotas x día x 5 días. Consulta x claudicación MAD en forma intermitente. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. 2026-01-21 439 519 \N 70 2951 {"recipes": [], "studies": [], "medications": [{"name": "MELOXIVET 0.5 mg GOTAS x 10 ml - Gotas -", "user": null, "group": 6, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.689837-03:00", "updated_at": "2025-02-20T08:17:52.689843-03:00", "description": "Gotas antiinflamatorias", "id_medicina": 869, "presentation": 2, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2143 2025-10-21 18:56:56.849621+00 2025-10-21 18:56:56.849626+00 f t Constipación. Agregar calabaza+pollo y eventualmente leche si se llega a repetir. Felilax, 1/2 cucharada de té día por medio. Consulta x constipación. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. 2026-01-21 3866 3257 \N 70 2910 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2144 2025-10-22 12:29:11.079113+00 2025-10-22 12:29:11.079122+00 f t . . . .. \N 2026-01-22 11152 9246 \N 100 2949 {"studies": [], "medications": [], "specialities": []} +2145 2025-10-22 21:29:55.157189+00 2025-10-22 21:29:55.157195+00 f t Anemia leve . Tonanvit 3 semanas y repetir hemograma Está mucho mejor. Apetito normal. Camina más. Análisis de sangre anemia , resto, S/P. 2026-01-22 9310 7733 \N 92 2953 {"recipes": [{"rx": "Tonanvit jarabe ", "dx_presuntivo": "Anemia leve "}], "studies": [], "medications": [], "specialities": []} +2146 2025-10-23 02:16:27.522056+00 2025-10-23 02:16:27.522061+00 f t . No se ingresó información No se ingresó información Paciente agresiva. Aplicó vacuna triple felina y antirrabica 2026-01-22 8577 7061 \N 80 2966 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2147 2025-10-23 11:55:57.645253+00 2025-10-23 11:55:57.64526+00 f t . . extracción de sangre para analisar sus valores Gato adulto, con vomitos.\ncome y toma agua con normalidad 2026-01-23 11152 9246 \N 112 2948 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2148 2025-10-23 11:56:53.111893+00 2025-10-23 11:56:53.111899+00 f t . . . paciente que tuvo colangio hepatitis.\nse le hace una extracción de sangre. 2026-01-23 10764 8941 \N 112 2960 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2149 2025-10-23 14:07:50.46033+00 2025-10-23 14:07:50.460335+00 f t Laboratorio . . Laboratorio \N 2026-01-23 10764 8941 \N 100 2959 {"studies": [], "medications": [], "specialities": []} +2150 2025-10-23 17:21:28.669101+00 2025-10-23 17:21:28.669108+00 f t Dermatitis alérgica x pulgas. No se ingresó información Pipeta antipulgas. Desparasitar con moxidex plus. Fumigar los ambientes Pulgas++. Lesiones por rascado. 2026-01-23 11172 9264 \N 114 2952 {"recipes": [], "studies": [], "medications": [{"name": "ATRIBEN INY. x 20 cc - Inyectable -", "user": null, "group": 9, "active": true, "company": "Holliday", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.489602-03:00", "updated_at": "2025-02-20T08:17:51.489608-03:00", "description": "Inyección antibiótica", "id_medicina": 574, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2151 2025-10-23 17:31:56.754959+00 2025-10-23 17:31:56.754969+00 f t No se ingresó información Si se repite el cuadro hacer ecografía abdominal Tribiotic cada 48 hs. Cisticalm. Meloxivet gotas. Comenta la tutora que orina la gatita de a poco.\nSe palpa y la vejiga está vacía.\nEsto le había pasado también hace unos meses 2026-01-23 5479 4489 \N 114 2974 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXAMETASONA 4 mg x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "INTERBIOL", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.055519-03:00", "updated_at": "2025-02-20T08:17:52.055525-03:00", "description": "Inyección de dexametasona", "id_medicina": 714, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2161 2025-10-24 19:57:59.069533+00 2025-10-24 19:57:59.069545+00 f t Dermatitis psicogena Se recomienda análisis de sangre completo en un futuro corto, ecografia abdominal y no suspender antibiotico hasta que la herida esté seca y pueda ser visto x. Otro colega Se le aconsejo, prednisolona (10 mg) 1/ dia ,3 dias para desinflamar,rifampicina que ya uso y estuvo bien,(300 mg) 1/dia,omeprazol 20 mg ,uno por dia y cartílago forte 1 /dia Otro es un bulldog inglés, con dermatitis ,probablemente x lamido sobre MPI ,ingle y algo en la derecha ,ademas de pinta de codos ,presión? Renguera de MAI, queratoconjuntivitis seca en ambos ojos ,no ve bien, otros órganos sin particularidades 2025-10-31 11269 9340 \N 78 2967 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2442 2025-11-24 13:56:43.47579+00 2025-11-24 13:56:43.475797+00 f t Celo No se ingresó información No se ingresó información Aúlla por celo. Explico que debe castrarse. Doy órdenes para cardiológico y perfil prequirurgico hemostatico. 2026-02-24 12255 10119 \N 80 3114 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2152 2025-10-24 01:51:18.626525+00 2025-10-24 01:51:18.626531+00 f t Pulicosis Vacunación en dos semanas Se despasita inte+exter Normal. Pulicosis. Consulta pediátrica. 2026-01-23 11361 9410 \N 92 2978 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2153 2025-10-24 12:26:49.873698+00 2025-10-24 12:26:49.873704+00 f t Perfil pre quirúrgico 2. Idealmente colectarán orina. De sensibilización con recompensas para sumar confianza y estado menos alerta/ Extracción de sangre Toma de muestra de sangre pre quirúrgica para castracion.\nCelo hace 3 meses 2026-01-24 10707 8891 \N 68 2880 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2154 2025-10-24 14:34:17.960145+00 2025-10-24 14:34:17.960149+00 f t Laboratorio . . Laboratorio \N 2026-01-24 11230 9319 \N 100 2964 {"studies": [], "medications": [], "specialities": []} +2155 2025-10-24 15:51:21.239896+00 2025-10-24 15:51:21.239903+00 f t Enfermedad periodontal avanzada \nCardiopatía? Broncopatía/colapso traqueal?\nArtrosis? Realizar estudios (AS, cardio, rx tórax) y si está todo ok, realizar limpieza de dientes. Limpieza de dientes con preqx.\nDoy opciones de antiartrósico. Mdc: vacunación. Abundante sarro, soplo, me comenta que hace unos años le hicieron un estudio cardio, no la medicaron y no le indicaron controles. Tiene tos, reflejo tusígeno+, mv aumentado, me comenta q le dijeron q es x vejez y q no había nada para hacer.. además tiene dolores y para eso el vet le inyectaba una preparación magistral de ácido hialurónico. Resto s/p 2026-01-24 11321 9380 \N 91 2971 {"recipes": [], "studies": [{"id": 8, "name": "Perfil General Completo sin Orina"}, {"id": 3, "name": "Ecocardiograma"}, {"id": 2, "name": "Radiografía"}], "medications": [{"name": "RECOMBITEK C6 - Inyectable -", "user": null, "group": 16, "active": true, "company": "", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.945977-03:00", "updated_at": "2025-02-20T08:17:53.945985-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1170, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-22", "next_application_months": 12}, {"name": "PAUL - ANTIRRABICA - Inyectable -", "user": null, "group": 15, "active": true, "company": "PAUL", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.860418-03:00", "updated_at": "2025-02-20T08:17:53.860426-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1153, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-22", "next_application_months": 12}], "specialities": []} +2156 2025-10-24 16:13:20.619519+00 2025-10-24 16:13:20.619524+00 f t Leve recaída de su atopía. Baños mas frecuentes con shampoo antiseptico Rp/ Cytopoint 20 mg 1 vial y mometasona en pabellones auriculares 1 vez x dia x 7 dias Consulta dermatologica: Está con dieta casera y suplementos, bajó 2kg se lo ve muy bien, activo, buena conformación. Come pollo zapallo zanahoria manzana verde. Deben incorporar más ingredientes que recomendó la nutri. Nexgard al día. \nEmpezó con leve lamido de manos y algunas papulocostras en cabeza que No le genera picazón. No está tomando ciclosporina. Solo colocan mometasona. 2026-01-24 1082 1150 \N 75 2968 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2157 2025-10-24 16:19:11.569273+00 2025-10-24 16:19:11.569281+00 f t Alopecia ciclica de los flancos. No se ingresó información Sugiero analisis de sangre completo + tsh y t 4 total. \nBaños con dermosedan aloe o labyderm\nTacrolimus 0.1% crema 2 veces x dia x 10 dias luego 1 vez x dia x 15 dias. Consulta dermatologica: paciente que vive con gato de 6 años, castrado, 33kg. COME eukanuba adulto pollo calabaza zanahoria batata. Nexgard en octubre.\nShampoo con clorhexidina le dio alergia. Toma Apoquel 16 mg 1 x dia ( por atopia). \nMc: hace 2 meses empezo con alopecia no pruriginosa no inflamatoria en flancos, patron en mapa. Ademas presenta en ambas orejas (mas en 1 ) lesiones de necrosis trombovascular \n\nAdemas la tutota me comenta que no puede abrir un ojito pero no permite que le ponga nada ni revisar. Explico que idealmente deberia verlo un clinico u oftalmo porque podría tener una ulcera corneal. 2026-01-24 8918 7379 \N 75 2901 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2158 2025-10-24 18:12:40.80722+00 2025-10-24 18:12:40.807228+00 f t Laboratorio . . Laboratorio \N 2026-01-24 10355 8597 \N 100 2897 {"studies": [], "medications": [], "specialities": []} +2159 2025-10-24 19:51:22.07044+00 2025-10-24 19:51:22.070446+00 f t Neo de piel, quiste. Sin Control con biopsia y seguimiento de quite/ verruga en base del cuello izquierdo. Extracción de puntos, biopsia en curso. 2026-01-24 266 335 \N 68 2927 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2160 2025-10-24 19:52:39.955009+00 2025-10-24 19:52:39.955014+00 f t . . . . \N 2026-01-24 11387 9430 \N 100 2989 {"studies": [], "medications": [], "specialities": []} +2193 2025-10-28 12:26:53.471551+00 2025-10-28 12:26:53.471556+00 f t - Control en un año junto con vacunas Sin tratamiento por el momento.\nExplico como realizar desparasitación de control. Buen estado gral.\nSe brinda devolución del análisis de sangre realizado en última consulta. El mismo presenta solo leve elevación de urea y amilasa. El resto s/p.\nQuedamos a la espera de pcr de ehrlichia. \N 2026-01-28 11035 9157 \N 99 3028 {"studies": [], "medications": [], "specialities": []} +2236 2025-11-01 04:56:46.509022+00 2025-11-01 04:56:46.509027+00 f t Discopatia en Columna? Se da orden para placa de Columna. Se indica hacer tratamiento con corticoides decrecientes, y con Pregabalina Paciente tiene dificultades para pararse, están disminuidos los reflejos de los miembros posteriorws, también presenta dolor en columba rotar lumbar y lumbo sacra \N 2026-02-01 10243 8504 \N 1 2818 {"studies": [], "medications": [], "specialities": []} +2241 2025-11-01 05:44:07.916425+00 2025-11-01 05:44:07.91643+00 f t Gastritis? - Cuando se hagan camabios de alimentación hacerlo en forma gradual Eog S/p la propietaria comenta que estuvo con vómitos, pero ahora ya hace un día y medio que está mejor. Lo que realizó de distinto fue cambiarle de alimento sin hacer ninguna transición \N 2026-02-01 10636 8830 \N 1 2872 {"studies": [], "medications": [], "specialities": []} +2244 2025-11-01 06:09:18.807127+00 2025-11-01 06:09:18.807163+00 f t - Cuidar que no se deshidrate. Se aplica dipirona, tramadol, dexametasona 0,5 mg/kg. Se toma muestra de sangre y se indecisa realizar placas de culmina. Normohidratada, leve hipertermias, un poco decaída, presenta dolor en la columna torco-lumbar y lumbo sacra, tiene levemente disminuidos los reflejos de los miembros posteriores. \N 2026-02-01 11818 9769 \N 1 3054 {"studies": [], "medications": [], "specialities": []} +2162 2025-10-24 19:59:36.167806+00 2025-10-24 19:59:36.167811+00 f t Alergia No se ingresó información Autolimitante\nSeguir con las gotas para conjuntivitis Estornudo invertido\nNormotermia \nLnn submandibulares reactivos.\nConserva el ánimo y buen estado general. 2026-01-24 5189 4266 \N 68 2935 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2163 2025-10-24 22:37:04.322073+00 2025-10-24 22:37:04.322082+00 f t Gastritis Realizar análisis de sangre para control del perfil hepatico\nDescenso de peso Dieta casera, pollo, calabaza, zanahoria hervida, yogur natural/queso crema Decaimiento desde ayer. \nEOG: alerta, mucosas rosadas, tllc 2 s, auscultación s/p, LNN s/p\nEOP: abdomen blando\nNáuseas \nScore corporal 5/6. Hablamos sobre 2026-01-24 11447 9474 \N 113 2993 {"recipes": [], "studies": [{"id": 8, "name": "Perfil General Completo sin Orina"}], "medications": [{"name": "DIPIRONA CHINFIELD iny. x 100 ml - Inyectable -", "user": null, "group": 6, "active": true, "company": "", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.097282-03:00", "updated_at": "2025-02-20T08:17:52.097288-03:00", "description": "Inyección de dipirona", "id_medicina": 725, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2164 2025-10-24 22:41:56.620127+00 2025-10-24 22:41:56.620132+00 f t Metástasis abdominal? \nSíndrome vestibular? brindar calidad de vida Clonazepam 2 mg cada 24 hs a las 19 hs \nMeloxicam 1/4 comprimido por 4 días\nContinuación fluoxetina, geriox y floxapet Paciente con decaimiento, dificultad de ambulatoria, presenta una convulsión en la noche de ayer. Viene con tratamientos previo indicado por otra Dra cohen fluoxetina Pregabalina floxapet y geriox.\nEOP: dermatitis en zona lumbar, neoformación, testicular, neoformación en dorsal d de la cola. Abundante dolor a nivel del mesogastrio. 2026-01-24 8869 7334 \N 113 2997 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2165 2025-10-25 02:56:34.516551+00 2025-10-25 02:56:34.516557+00 f t - Cambiar alimento por linea senior. Tomo .muestra de sangre para perfil gral. Completo y pcr ehrlichia. Vacunas vencidas (Quiere renovar), convivio con un perro que fallecio por ehrlichia (Un colega le sugirio realizar analisis. Come Old prince.\nEog s/p. Buen estado gral. Leve sobrepeso. \N 2026-01-24 11035 9157 \N 99 2938 {"studies": [], "medications": [{"name": "PROVIDEAN BH - RABIA", "id_medicina": "1154", "medication_type_name": "Vacuna", "next_application_date": "2026-10-24", "next_application_months": 12}, {"name": "PROVIDEAN VIRATEC 9 4L", "id_medicina": "1166", "medication_type_name": "Vacuna", "next_application_date": "2026-10-24", "next_application_months": 12}], "specialities": []} +2018 2025-10-10 21:56:54.130207+00 2025-10-10 21:56:54.130217+00 f t Vacunación anual Continuar con los análisis pre-quirúrgicos para la castración. Cardiología. \nRecomiendo tb consulta con etólogo. . Mejoró la infección en el tarso. Se le da el alta y se vacuna con séxtuple y antirrábica 2026-01-26 8854 7319 \N 92 2814 {"recipes": [], "studies": [{"id": 12, "name": "Electrocardiograma"}], "medications": [{"name": "RECOMBITEK C8 - Inyectable -", "user": null, "group": 16, "active": true, "company": "", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.950487-03:00", "updated_at": "2025-02-20T08:17:53.950494-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1171, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-01", "next_application_months": 12}, {"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-01", "next_application_months": 12}], "specialities": [{"id": 72, "name": "Endocrinología"}]} +2195 2025-10-28 15:30:03.008559+00 2025-10-28 15:30:03.008569+00 f t . . . . \N 2026-01-28 4176 3480 \N 100 2980 {"studies": [], "medications": [], "specialities": []} +2237 2025-11-01 05:17:33.166269+00 2025-11-01 05:17:33.166274+00 f t - Si si quisieran quedar más tranquilos se puede evaluar de hacer una sangre, ecografía y copro Se indica hacer tratamiento antibiótico con giscocxide. Normotermico, normohidratado, los propietarios la habían desparasitados hace unos días, no presentá dolor abdominal. \N 2026-02-01 10927 9067 \N 1 2941 {"studies": [], "medications": [], "specialities": []} +2242 2025-11-01 05:49:47.05429+00 2025-11-01 05:49:47.054295+00 f t - - - Paciente que antes era callejero y que ahora está viviendo en la casa, se realiza desparasitacion interna y externa. Normotermico, normohidratado. Sin dolor abdominal \N 2026-02-01 10103 8364 \N 1 2780 {"studies": [], "medications": [], "specialities": []} +2298 2025-11-06 13:36:10.996767+00 2025-11-06 13:36:10.996773+00 f t Dermatitis atopica canina + DaaP En caso de no responder, control para evaluar otro inmunomodulador Rp/ cytopoint 20 mg 0.5ml\nBaños dermosedan aloe semanal\nPastilla power mensual.\nFumigacion ambiental Consulta dermatologica: paciente con Dac, tratado con prednisolona (le dio vomitos). Sin pulguicida al dia, le encontraron pulgas en este ultimo tiempo. \nVive en depto con piso de madera. Unica mascota, come proplan adulto y algo casero.\nPrurito moderado. 2026-02-06 12459 10291 \N 75 3156 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2371 2025-11-16 03:05:06.175027+00 2025-11-16 03:05:06.175035+00 f t Neo? Rinitis micotica? Bacteriana? - Se indica hacer tratamiento de Amoxicilina. Análisis de sangre y placas de cráneo. Presenta buen ánimo, normohidratada, tiene estornudos esporsdicos, presenta asimetría en los ojos, leve exoftalmia del ojo derecho con leve protección del 3er párpado, a la auscultación torácica S/p \N 2026-02-16 12968 10696 \N 1 3224 {"studies": [], "medications": [], "specialities": []} +2166 2025-10-25 03:07:12.818322+00 2025-10-25 03:07:12.818328+00 f t Artrosis, discopatia. Colocar calor por medio de almohadilla termica o de semillas en zona de vertebras lumbares y cervicales Aplico meloxicam, diazepam y tramadol.\nIndico meloxicam 2 mg, 1 comp. C/24 hs 2 días y artrin 1 comp. C/24 hs todos los días. Hace pocos días comenzaron a notar dolor. Al principio no se incorporaba pero ahora lo esta haciendo. Al año de vida le amputaron el MAD. Antecedentes de alergia. No castrada.\nSe palpan multiples lesiones en mas en diversas partes del cuerpo, la mayoria de ellas muy blandas. En muñon lesión ulcerativa por lamido, en MPD similares parece ser por apoyo.\nMarcado dolor en columna lumbar, menos intenso en cervical y toracicas. En las 2 primeras se aprecia contractura muscular.\n Miembros posteriores responden al reflejo de retirada.\nResistencia moderada al mover articulaciones coxofemorales. \N 2026-01-25 11234 9322 \N 99 2962 {"studies": [], "medications": [{"name": "TRAMADOL 50 mg INY x 50 cc", "id_medicina": "1105", "medication_type_name": "Medicamento", "next_application_date": "2025-10-25", "next_application_months": 0}, {"name": "MELOXIVET 5 mg INY. x 10 cc", "id_medicina": "872", "medication_type_name": "Medicamento", "next_application_date": "2025-10-25", "next_application_months": 0}, {"name": "DIAZEPAN INY. 2 fcos 5 mg x 10 cc", "id_medicina": "722", "medication_type_name": "Medicamento", "next_application_date": "2025-10-25", "next_application_months": 0}], "specialities": []} +2167 2025-10-25 14:52:38.013511+00 2025-10-25 14:52:38.013517+00 f t Gránuloma eosinofilico.\nEn mayo le pasó lo mismo No se ingresó información Atriben y dexametasona. Mantenerlo desparasitado y evitar productos de limpieza que le pueda producir reacción alérgica\nPipeta antipulgas Labio edematizado. Alopecia en cara interna de patas..\nFue desparasitado . Convive con dos gatos . \nCome Fit de RC. 2026-01-25 11393 9439 \N 114 2986 {"recipes": [], "studies": [], "medications": [{"name": "ATRIBEN INY. x 20 cc - Inyectable -", "user": null, "group": 9, "active": true, "company": "Holliday", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.489602-03:00", "updated_at": "2025-02-20T08:17:51.489608-03:00", "description": "Inyección antibiótica", "id_medicina": 574, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2168 2025-10-25 14:55:36.722115+00 2025-10-25 14:55:36.722121+00 f t No se ingresó información No se ingresó información Se receta gabapentina en gotas. Porque se pone muy nervioso para realizar los estudios. Estuvo en. Consulta en otra veterinaria que le indico Rx de tórax y ecocardiograma.\nEstado gral bueno\n Come normal y toma agua. 2026-01-25 11393 9435 \N 114 2986 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2169 2025-10-25 16:37:08.643495+00 2025-10-25 16:37:08.643504+00 f t Pancreatitis? Piometra? Cuerpo extraño obstrucción parcial? realizar ecografía abdominal y esperar resultado análisis de sangre Comida casea Ayer después de la medicación mejoró. A la noche comió pollo con ganas. Salí a pasear, defeco normalmente y orino. Hoy a la mañana volvió a estar decaída. No presentó vómitos. Mueve la cola al verme. \nEop: dolor abdominal. Náuseas \nRealizó extracción de sangre 2026-01-25 11447 9474 \N 113 3003 {"recipes": [], "studies": [{"id": 8, "name": "Perfil General Completo sin Orina"}], "medications": [{"name": "CERENIA x 20 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.766515-03:00", "updated_at": "2025-02-20T08:17:51.766521-03:00", "description": "Solución antiemética", "id_medicina": 641, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "KUALCOHEPAT INY. x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "Kualcos", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.568768-03:00", "updated_at": "2025-02-20T08:17:52.568774-03:00", "description": "Inyección hepática", "id_medicina": 838, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": [{"id": 41, "name": "Ecografía"}]} +2170 2025-10-25 19:23:20.359188+00 2025-10-25 19:23:20.359196+00 f t . . . . \N 2026-01-25 11447 9474 \N 100 3007 {"studies": [], "medications": [], "specialities": []} +2177 2025-10-26 20:16:12.771268+00 2025-10-26 20:16:12.771273+00 f t Pío dermia No se ingresó información Continuar con cefalexina cada 12 hs x 1 semana Lesiones de piel tipo pustulosas cicatrizadas x todo el cuerpo 2026-01-26 11136 9235 \N 94 2947 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2196 2025-10-28 15:30:29.566556+00 2025-10-28 15:30:29.566561+00 f t . . . . \N 2026-01-28 4176 3479 \N 100 2980 {"studies": [], "medications": [], "specialities": []} +2214 2025-10-30 18:32:14.302022+00 2025-10-30 18:32:14.302027+00 f t La modificación de cualquier conducta, es habitual ante la modificación del grupo conviviente, y de su territorio. Es esperable en la especie felina. El uso de feromonas en difusor es un buen recurso para lograr el apaciguamiento del paciente y en caso de necesitar, consultado previamente a su veterinario clínico, el incorporar alimento especialmente formulado para disminuir el estrés ( calm, de Royal Canin o el equivalente de Sieguer, Hairball and Stress control) Enriquecimiento ambiental, juego con instrumentos de por medio, no con las manos directamente ( cañitas, es decir a distancia). Un felino es presa y cazador a la vez, por lo tanto su juego se asemejará a esa situación. Buscará esconderse, y a a vez atrapar la presa. Cualquier juego que asemeje esa situación, ayudará a que no tienda a querer cazar las manos de nadie. \nCon paciencia, trabajar el darle el espacio que necesita para que no sienta invasión de su territorio, ante la presencia de la nueva integrante de la familia, así podrá incorporarla en forma gradual y con el menor grado de estrés. Paciente de 10 años, sanitariamente sin problemas aparentes, ante la presencia de una nueva conviviente, conductas de juego inapropiado ( muerde). cabe aclarar que siempre lo hizo con su tutor, pero con menor intensidad. \N 2026-01-30 11264 9338 \N 105 3017 {"studies": [], "medications": [], "specialities": []} +2238 2025-11-01 05:19:31.9744+00 2025-11-01 05:19:31.974404+00 f t - - Se indica realizar los controles semestrales Se realiza limpieza de oídos y vaciado de glándulas. \N 2026-02-01 123 128 \N 1 2791 {"studies": [], "medications": [], "specialities": []} +2443 2025-11-24 13:57:23.787416+00 2025-11-24 13:57:23.787421+00 f t . No se ingresó información No se ingresó información Aplico vacunas anuales. Eog spp. 2026-02-24 12438 10270 \N 80 3147 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2171 2025-10-25 20:41:02.090337+00 2025-10-25 20:41:02.090343+00 f t Discopatia Se sugiere e indica RX de columna entera e interconsulta con Neuro \nChequeo cardiológico Se vacuna Mc: vacunación anual \n\nParesia posterior, defeca y orina x rebasa miento , les han dicho que tiene incontinencia x ex ITU, explico q el cuadro es mas de origen neurologico, no hay propiocepcion y sensibilidad casi pérdida \n\nAdemás relatan episodios que parecen ser síncopes 2026-01-25 9928 8204 \N 94 2996 {"recipes": [], "studies": [{"id": 2, "name": "Radiografía"}], "medications": [{"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-25", "next_application_months": 12}, {"name": "RECOMBITEK C6 - Inyectable -", "user": null, "group": 16, "active": true, "company": "", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.945977-03:00", "updated_at": "2025-02-20T08:17:53.945985-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1170, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-25", "next_application_months": 12}], "specialities": [{"id": 8, "name": "Cardiología"}]} +2172 2025-10-25 20:45:32.861859+00 2025-10-25 20:45:32.861868+00 f t Posible hepatopatia y/o gastritis / enteritis \nZonas de pelaje pelado, posible tricobezoar ? Ecografía Control para ver rta a tratamiento empírico Vómitos amarronados de 20 días de evolución \nBien animo \nMantiene apetito \nATP y vacunas jamás aplicados \nSin diarrea 2026-01-25 11503 9531 \N 94 3008 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}], "medications": [{"name": "NOVOTIOC INY. x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.836248-03:00", "updated_at": "2025-02-20T08:17:52.836255-03:00", "description": "Inyección para problemas metabólicos", "id_medicina": 907, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "METOCLOPRAMIDA INY. 5 % x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "LAMAR", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.745131-03:00", "updated_at": "2025-02-20T08:17:52.745138-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 883, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2173 2025-10-25 20:47:44.925272+00 2025-10-25 20:47:44.925278+00 f t Vacunación No se ingresó información No se ingresó información Óptimo \nEOG sp\nVacunas vencidas 2026-01-25 10993 9123 \N 94 2936 {"recipes": [], "studies": [], "medications": [{"name": "NOBIVAC TRICAT TRIO - Inyectable -", "user": null, "group": 16, "active": true, "company": "MSD Intervet", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.901577-03:00", "updated_at": "2025-02-20T08:17:53.901586-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1161, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-21", "next_application_months": 12}, {"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-21", "next_application_months": 12}], "specialities": []} +2174 2025-10-25 23:04:04.546377+00 2025-10-25 23:04:04.546384+00 f t No se ingresó información Chequeo pre quirúrgico más control cardiologico\nSugiero alimentación natural No se ingresó información Eog : normal\nAbundante sarro Dental, Sugiero destartraje y castrada\nRealizo vacunacjon anual e indico desparasitacion 2026-01-25 10793 8966 \N 21 2899 {"recipes": [], "studies": [], "medications": [{"name": "PAUL - 6 SEXTUPLE - Inyectable -", "user": null, "group": 16, "active": true, "company": "PAUL", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.906620-03:00", "updated_at": "2025-02-20T08:17:53.906628-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1162, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}, {"name": "PAUL - ANTIRRABICA - Inyectable -", "user": null, "group": 15, "active": true, "company": "PAUL", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.860418-03:00", "updated_at": "2025-02-20T08:17:53.860426-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1153, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}], "specialities": []} +2175 2025-10-26 04:39:01.452292+00 2025-10-26 04:39:01.452302+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-26 11179 9270 \N 90 2956 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2176 2025-10-26 13:05:45.892819+00 2025-10-26 13:05:45.892825+00 f t Seborrea. Vacunar séxtuple +.antirrábica en próxima visita y control de peso. Cambio de alimentación a bajas calorías y suplementación con aceite de girasol o maiz. Desparasitación con mocidex plus. Consulta x "caspa". EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. Sobrepeso. 2025-11-21 10832 8994 \N 70 2907 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2178 2025-10-26 20:16:34.632519+00 2025-10-26 20:16:34.632527+00 f t No se ingresó información No se ingresó información No se ingresó información No fue una consulta. Solo chequeo de castración 2026-01-26 11136 9236 \N 94 2947 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2197 2025-10-28 16:31:57.716291+00 2025-10-28 16:31:57.7163+00 f t . . . . \N 2026-01-28 11302 9364 \N 100 3006 {"studies": [], "medications": [], "specialities": []} +2232 2025-11-01 04:35:39.131179+00 2025-11-01 04:35:39.131186+00 f t - Se entrega orden y se indica dar un balanceado de mejor calidad Para tranquilidad se indica hacer un chequeo de sangre. Eog: s/p normotermica, normohidratada. No presenta dolor abdominal. A la auscultación torácica: S/P \N 2026-02-01 11943 9869 \N 1 3072 {"studies": [], "medications": [], "specialities": []} +2239 2025-11-01 05:20:55.010808+00 2025-11-01 05:20:55.010813+00 f t - - - Se toma muestra de sangre para un perfil 4 y coagulograma \N 2026-02-01 6905 5647 \N 1 2998 {"studies": [], "medications": [], "specialities": []} +2179 2025-10-26 20:19:32.703706+00 2025-10-26 20:19:32.703711+00 f t Gastritis ulcerativa No se ingresó información Continuar con sucralfato c 8 hs \nSe deja orden de ecografía si persisten Gato macho con vómitos conformados x sangre y espuma\nSe evidencia presencia de pasto \nBuen ánimo , conserva apetito y ganas de jugar 2026-01-26 11575 9581 \N 94 3012 {"recipes": [], "studies": [], "medications": [{"name": "METOCLOPRAMIDA INY. 5 % x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "LAMAR", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.745131-03:00", "updated_at": "2025-02-20T08:17:52.745138-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 883, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "NOVOTIOC INY. x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.836248-03:00", "updated_at": "2025-02-20T08:17:52.836255-03:00", "description": "Inyección para problemas metabólicos", "id_medicina": 907, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2180 2025-10-26 22:43:36.329031+00 2025-10-26 22:43:36.329037+00 f t Dolor inespecífico en tren posterior. Posible esfuerzo por mal movimiento. Reposo absoluto. Meloxivet inyectable 0,1 ml + algen 0,5 ml.. Continúa con meloxivet 20 gotas x día x 4 días PO. Consulta x dolor en una pata trasera. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. Dolor inespecífico en miembros posteriores. 2026-01-26 11560 9572 \N 70 3010 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2181 2025-10-26 23:32:30.890161+00 2025-10-26 23:32:30.890167+00 f t - sugiero repetir sextuple a los 21 dias . canino macho mestizo castrado 3 años (aproximadamente). \nFué adoptado hace 3 semanas .\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermico\nnormohidratado\npresenta MAI con desviacion del eje del miembro ( no se tiene informacion de la lesion/patologia que tuvo) \N 2026-01-26 11255 9334 \N 88 2969 {"studies": [], "medications": [{"name": "PAUL - ANTIRRABICA", "id_medicina": "1153", "medication_type_name": "Vacuna", "next_application_date": "2026-10-26", "next_application_months": 12}, {"name": "VANGUARD DA2P+L", "id_medicina": "1172", "medication_type_name": "Vacuna", "next_application_date": "2026-01-26", "next_application_months": 3}], "specialities": []} +2182 2025-10-27 09:51:44.202003+00 2025-10-27 09:51:44.20201+00 f t Proceso inflamatorio inespecífico, hemoparasitos? Repetir ecografía abdominal en tres meses luego del tratamiento. Doxiciclina (administración triturada y con el alimento) suspender si aparece vomito o diarrea + proteliv. Control de peso. Repetir ecografía en tres meses. Teleconsulta para revisión de estudios. \nASC: normal. \nEcografía abdominal: Las imágenes observadas son sugerentes de:\nBazo: Esplenomegalia leve: hiperplasia difusa: Infecciosa / inflamatoria / \ninfiltrativa. Considerar hemoparásitos\nHígado y vías biliares: Colangitis / Colangiohepatitis (incipiente)\nEstomago: Gastritis leve\nNo se observa líquido en el abdomen al momento del estudio. \N 2026-01-27 10764 8941 \N 92 2981 {"studies": [], "medications": [], "specialities": []} +2183 2025-10-27 09:53:52.477995+00 2025-10-27 09:53:52.478004+00 f t Vacunación anual Castración . Consulta con etólogo. . Mejoró la infección del tarso. Se da el alta. \N 2026-01-27 8854 7319 \N 92 2799 {"studies": [], "medications": [{"name": "BAGOVAC RABIA", "id_medicina": "1149", "medication_type_name": "Vacuna", "next_application_date": "2026-10-27", "next_application_months": 12}, {"name": "RECOMBITEK C8", "id_medicina": "1171", "medication_type_name": "Vacuna", "next_application_date": "2026-10-27", "next_application_months": 12}], "specialities": [{"id": null, "name": "79"}]} +2184 2025-10-27 12:11:36.916229+00 2025-10-27 12:11:36.916234+00 f t Laboratorio . . Laboratorio \N 2026-01-27 10716 8899 \N 100 2984 {"studies": [], "medications": [], "specialities": []} +2185 2025-10-27 12:18:07.758374+00 2025-10-27 12:18:07.758382+00 f t Laboratorio . . Laboratorio \N 2026-01-27 11035 9157 \N 100 3000 {"studies": [], "medications": [], "specialities": []} +2186 2025-10-27 12:37:06.481715+00 2025-10-27 12:37:06.48172+00 f t Laboratorio . . Laboratorio \N 2026-01-27 2084 9471 \N 100 2995 {"studies": [], "medications": [], "specialities": []} +2187 2025-10-27 13:23:50.242072+00 2025-10-27 13:23:50.242077+00 f t Buen estado de salud . . EOG normal \N 2026-01-27 10133 8390 \N 92 2789 {"studies": [], "medications": [{"name": "RECOMBITEK C8", "id_medicina": "1171", "medication_type_name": "Vacuna", "next_application_date": "2026-10-27", "next_application_months": 12}], "specialities": []} +2188 2025-10-27 23:26:02.149935+00 2025-10-27 23:26:02.149945+00 f t No se ingresó información No se ingresó información No se ingresó información Consulta NEFROUROLOGICA.\nVer informe adjunto 2026-01-27 11221 9313 \N 115 2961 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2189 2025-10-28 00:47:39.520526+00 2025-10-28 00:47:39.520531+00 f t Colitis por giardiasis? alimentaria? Vacunación anual luego de la mejoría Manejo alimentario (dieta antidiarreica por dos semanas) y si no mejora, agregar giacoccide verde. + ASC Teleconsulta para revisar estudios. Coproparasitológico negativo. Coprocultivo negativo. No pudo hacer el ASC perfil general 7. La gata continúa con diarrea mucosa con sangre. Primera parte defeca normal y luego aparece mucosidad c sangre \N 2026-01-27 9239 7660 \N 92 3019 {"studies": [], "medications": [], "specialities": []} +2190 2025-10-28 00:49:42.017927+00 2025-10-28 00:49:42.017934+00 f t DAPP. Hoy vacunación anual Repetir desparasitacion en 30 dias Nexgard gatos. Mejoró de la dermatitis. \N 2026-01-27 10052 8317 \N 92 3018 {"studies": [], "medications": [{"name": "BAGOVAC RABIA", "id_medicina": "1149", "medication_type_name": "Vacuna", "next_application_date": "2026-10-27", "next_application_months": 12}, {"name": "FELIGEN CRP", "id_medicina": "1157", "medication_type_name": "Vacuna", "next_application_date": "2026-10-27", "next_application_months": 12}], "specialities": []} +2191 2025-10-28 01:38:44.45615+00 2025-10-28 01:38:44.456157+00 f t Gastritis No se ingresó información No se ingresó información Tuvo un vómito de bilis. Eog spp, alerta, comiendo. Aplico ranitidina y pileran. Tiene aplicada una quíntupla. 2026-01-27 11178 9327 \N 80 2990 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2194 2025-10-28 14:06:27.250112+00 2025-10-28 14:06:27.250117+00 f t Laboratorio . . Laboratorio \N 2026-01-28 10707 8891 \N 100 2881 {"studies": [], "medications": [], "specialities": []} +2198 2025-10-28 17:32:11.813933+00 2025-10-28 17:32:11.813944+00 f t Alteracion neuromotora No se ingresó información clindamicina\tmanitol\tfurosemida\tomeprazol\tdipirona\ttramadol\ttioctico\tmetil predinoslona\tPregabalina \tResveratrol \nResonancia magnética postracion.\nana: paciente de Guadalupe Castro , desde el jueves que no se incorpora , al principio inicio con dificultad para caminar con los miembros posteriores , el miercoles la llevaron a bañarse a peluqueria canina , el jueves inicio primero con inapetencoa , el viernes su veterinaria le dio antiinflamatorios analgesicos y demas , le solicito pgc y ecografia abdominal para descartar piometra ( tuvo el celo hace aprox 1 mes y medio) ahora ya directamente no se moviliza ni se incorpora. nunca tuvo vomitos ni diarreas. come royal canin para labrador , ahora solo come pollo a la plancha. \nconvive con dos tortugas , solia comerse su materia fecal , no le dan carne cruda. \npgc 25/10 : hto 37.8 hn 12.8 gb 13400 plaq 269.000 urea 39 crea 0.67 colesterol 332 gpt 55 got 22 pt 5.9 bt 0.2 bd 0.1 bind 0.10 alb 2.8 fas 49 amilasas 458 ionograma sodio 141 potasio 4.38 cloro 110.4 \npreliminar eco hoy : se observa pequeño ce en estomago ,no se observa colecta uterina , vejiga con abundante contenido se orina en eco.\neog: paciente en decubito lateral , mucosas rosadas tllc 3 , desh 6% condicion corporal 4/5 , ausc ligera bradicardia con pulso fys , torax sp , abdomen blando vejiga distendida presiono orina en consultorio , temp 38.1 gluc 155mg/dl. \neop: reflejo de amenaza + , olfatorio + , fp + bilateral , reflejo del paniculo + hasta zona lumbosacra , los 4 miembros presentan reflejo superficial ausente profundo conservado retardado sobre todo en mp derecho y ma derecho , reflejo anal conservado.\nRealizo rx de columna : no observo ninguna particularidad en todo el trayecto , las envio a informar. 2026-01-28 11447 9474 \N 118 3009 {"recipes": [], "studies": [], "medications": [], "specialities": [{"id": 73, "name": "Neurología"}]} +2199 2025-10-28 19:56:51.607914+00 2025-10-28 19:56:51.60792+00 f t - - - La única particularidad que se ve en los estudios es una hepatopatia a nivel ecografico, que la cual no se ve reflejado en las enzimas hepaticas. Todos los demás estudia están sin particularidades al momento de la fecha. No se indica medicación. \N 2026-01-28 123 128 \N 1 3001 {"studies": [], "medications": [], "specialities": []} +2200 2025-10-28 20:00:02.126211+00 2025-10-28 20:00:02.126222+00 f t Gastritis? IRC? - Se aplica ranitidina, complejo b y maropitant. Se da orden de sangre y ecografía abdominal l. Dependiendo evolución se realizan los estudios. La propietaria dice que lo nota que vomita y saliva. No comió nada fuera de lo particular. Comenta que la última vez que se hizo un chequeo de sangre fue hace varios años. No presenta dolor abdominal ni particularidades en cavidad oral. A la palpación abdominal no demuestra dolor. \N 2026-01-28 11610 9608 \N 1 3021 {"studies": [], "medications": [], "specialities": []} +2201 2025-10-28 20:06:40.876256+00 2025-10-28 20:06:40.876265+00 f t Neurologico? - - Según la propietaria comenta que comenzó con Signologia neurologica y que deambula por la casa y vocaliza todo el tiempo. Come, pero desde que empezó con la medicación está con diarrea. La propietaria está pensando en dormirlo. Pero todavía no termina de decidir. \N 2026-01-28 10243 8504 \N 1 2976 {"studies": [], "medications": [], "specialities": []} +2202 2025-10-28 20:07:57.127936+00 2025-10-28 20:07:57.127941+00 f t - - Se aplica sextuple Eog: S/P \N 2026-01-28 10933 9073 \N 1 2917 {"studies": [], "medications": [], "specialities": []} +2203 2025-10-28 20:11:19.103691+00 2025-10-28 20:11:19.103696+00 f t - - Se aplica triple felina y antirabica Eog: s/p \N 2026-01-28 9889 8173 \N 1 2739 {"studies": [], "medications": [], "specialities": []} +2204 2025-10-28 20:26:15.718119+00 2025-10-28 20:26:15.718127+00 f t - - Para quedarse más tranquila se indica hacer ecografía abdominal. Y volver a comunicarse cuando tenga el resultado. La propietaria está con la inquietud de que su gata esté con Problemas para orinar y/o defecar. \N 2026-01-28 1381 1370 \N 1 2749 {"studies": [], "medications": [], "specialities": []} +2205 2025-10-28 20:29:08.698558+00 2025-10-28 20:29:08.698567+00 f t - - Felilax y dieta tipo fibrosa. En la ecografía no se evidencian signos de obstrucción, de todos modos se da. Consejos de cómo manejar los problemas de estreñimiento. En base a dietas y suplementos dietarios. \N 2026-01-28 1381 1370 \N 1 2771 {"studies": [], "medications": [], "specialities": []} +2206 2025-10-29 02:19:38.568554+00 2025-10-29 02:19:38.568559+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-28 11398 9590 \N 90 3047 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2207 2025-10-29 15:07:08.474885+00 2025-10-29 15:07:08.474891+00 f t Organomegalia?\nGastritis y/o esplenitis.\n\nTiene antecedente de hemangiosarcoma en piel y LNN iliaco reactivo. Por ahora no medicaciones únicamente sedante para poder manipular en ecografía. Esperamos estudios complementarios Paciente con hiporexia y apetito selectivo. Vómitos esporádicos biliares y alimenticios.\nCambios en materia fecal.\nAdinamia y letargia\nAbdomen con molestias a la palpación e indicación, sugiere organomegalia.\nMucosas rosa.\nAuscultación de soplo. 2026-01-29 11745 9712 \N 68 3043 {"recipes": [{"rx": "Ecografía abdominal.", "dx_presuntivo": "Organomegalia. \\nEsplenitis"}, {"rx": "Gabapentina 300mg", "dx_presuntivo": "3 comprimidos 2 horas previas visita veterinaria."}], "studies": [{"id": 1, "name": "Ecografia"}, {"id": 3, "name": "Ecocardiograma"}], "medications": [], "specialities": []} +2208 2025-10-29 20:36:50.49125+00 2025-10-29 20:36:50.491257+00 f t Enfermedad periodontal.\nVacunación anual. Realizar limpieza de dientes bajo anestesia. Odontobiotic 1/4 diario 10 días. Vacunación anual.\nAntecedentes de hace más de un año atrás obstrucción urinaria, come Urinary de mantenimiento.\nBuen score corporal. Florida spots en córneas.\nTaquicardia y mucosas rosa normales.\nEnfermedad periodontal, morales de maxilar y mandíbula izquierda con gingivitis asociada. 2026-01-29 11732 9703 \N 68 3041 {"recipes": [], "studies": [], "medications": [{"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-28", "next_application_months": 12}, {"name": "FELOCELL CVR - Inyectable -", "user": null, "group": 16, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.886518-03:00", "updated_at": "2025-02-20T08:17:53.886526-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1158, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-10-28", "next_application_months": 12}], "specialities": []} +2209 2025-10-29 22:48:46.270059+00 2025-10-29 22:48:46.270064+00 f t labo . . labo \N 2026-01-29 6905 5647 \N 100 2999 {"studies": [], "medications": [], "specialities": []} +2210 2025-10-30 02:30:34.536285+00 2025-10-30 02:30:34.536293+00 f t Terminal . Se le realiza eutanasia Paciente de raza Golden retriever de 16 años. Sensorio deprimido. Anorexia desde hace dos días. Disnea. Postración. \N 2026-01-29 11857 9805 \N 92 3062 {"studies": [], "medications": [], "specialities": []} +2211 2025-10-30 02:31:45.714953+00 2025-10-30 02:31:45.71496+00 f t Buen estado de salud . . EOG normal. Sobrepeso. Resto normal \N 2026-01-29 11765 9728 \N 92 3052 {"studies": [], "medications": [{"name": "BAGOVAC RABIA", "id_medicina": "1149", "medication_type_name": "Vacuna", "next_application_date": "2026-10-29", "next_application_months": 12}, {"name": "FELIGEN CRP", "id_medicina": "1157", "medication_type_name": "Vacuna", "next_application_date": "2026-10-29", "next_application_months": 12}], "specialities": []} +2212 2025-10-30 02:37:38.88898+00 2025-10-30 02:37:38.888984+00 f t Cistitis idiopática AOC con sedimento+ urocultivo Meloxivet+ cisticalm EOG normal. Disuria polaquiuria apetito normal \N 2026-01-29 11644 9637 \N 92 3031 {"studies": [], "medications": [], "specialities": []} +2213 2025-10-30 02:39:04.892142+00 2025-10-30 02:39:04.892148+00 f t Parásitosis Vacunación a los 45 dias Total full jarabe EOG normal. Cachorro de 38 días.. primer consulta del cachorro. \N 2026-01-29 11659 9648 \N 92 3030 {"studies": [], "medications": [], "specialities": []} +2215 2025-10-30 21:35:30.446573+00 2025-10-30 21:35:30.44658+00 f t Tumor de bazo No se ingresó información Se solicita eco abdominal y Rx torax Se palpa masa en abdomen y tumor adherido en parrilla costal izquierda.\nToma agua y come. Se lame u rasca en mpi 2026-01-30 11855 9803 \N 114 3061 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}, {"id": 2, "name": "Radiografía"}], "medications": [{"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "ATRIBEN INY. x 20 cc - Inyectable -", "user": null, "group": 9, "active": true, "company": "Holliday", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.489602-03:00", "updated_at": "2025-02-20T08:17:51.489608-03:00", "description": "Inyección antibiótica", "id_medicina": 574, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2216 2025-10-30 21:59:03.499803+00 2025-10-30 21:59:03.499845+00 f t No se ingresó información No se ingresó información Que coma pollo .zanahoria hervida Defeca con gotas de sangre.se pone en posición para defecar y Elimina gotas de sangre. Come normal. Toma agua 2026-01-30 10716 8899 \N 114 3011 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}], "medications": [{"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2217 2025-10-31 00:41:25.576343+00 2025-10-31 00:41:25.576348+00 f t Mordedura de perro Control en 24/48hs Spectril+meloxivet+Clorhixidina Teleconsulta por mordedura por otro perro del mismo tutor. Resto normal \N 2026-01-30 2582 2309 \N 92 3076 {"studies": [], "medications": [], "specialities": []} +2218 2025-10-31 03:01:44.583612+00 2025-10-31 03:01:44.583617+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-01-31 11658 9647 \N 90 3049 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2219 2025-10-31 12:35:54.695927+00 2025-10-31 12:35:54.695932+00 f t Laboratorio . . Laboratorio \N 2026-01-31 11818 9769 \N 100 3059 {"studies": [], "medications": [], "specialities": []} +2220 2025-10-31 15:27:58.433527+00 2025-10-31 15:27:58.433533+00 f t Impactación de saco perianal No se ingresó información Aplíco medicación inyectable e indico control a las 48 horas La tutora comenta que tiene una lesión en el ano y que se está rascando y lamiendo hace varios días.\nPresenta lesión por lamido alrededor del ano con eritema y una pequeña solución de continuidad.\nSe realiza maniobra para vaciar sacos anales y no se obtiene contenido 2026-01-31 11639 9632 \N 21 3034 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "ALGEN iny. 20 x 20 cc - Inyectable -", "user": null, "group": 4, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.314406-03:00", "updated_at": "2025-02-20T08:17:51.314414-03:00", "description": "Inyección de tramadol", "id_medicina": 533, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2233 2025-11-01 04:41:29.046944+00 2025-11-01 04:41:29.04695+00 f t Malassezia? Hipotiroidismos? Cuando pueda hacerle estudios complearios Se indica hacer tratamiento con itraconazol, baños con shampo medicado, limpiador de orejas, tritohexidin plus. En la revisacion se evidencia q el problema de piel es general no solamente en otitis, presenta olor a rancio en todo el cuerpo con presencia de alopecias de forma circular en el manto. Ambos conductos se nota que está con una otitis bastante crónica. Se realiza limpieza de ambos conductos. PERRO AGRESIVO DIFÍCIL DE MANEJAR. \N 2026-02-01 11648 9641 \N 1 3029 {"studies": [], "medications": [], "specialities": []} +2240 2025-11-01 05:41:15.361616+00 2025-11-01 05:41:15.36162+00 f t - - Se aplica vacuna antirabixa Eog: s/p \N 2026-02-01 9682 8067 \N 1 3044 {"studies": [], "medications": [], "specialities": []} +2243 2025-11-01 05:54:27.396684+00 2025-11-01 05:54:27.396689+00 f t Gastritis/enteritis? La medicación. Puede cambiar según los resultados de sangre Aplico sulfatrimetropin, ranitidina, proptextor gastrico, dipirona-tramadol. Tomo muestra desangre para evaluar medio interno Paciente con leve hipertermia, un poco decaído, normohidratado. La propietaria comenta que no sabe de qué puede. Serlos vómitos porque no le dio nada fuera de lo normal. La ecografía que tiene es de hace menos de un mes y no arroja particularidades que llamen la atención. \N 2026-02-01 10193 8460 \N 1 2798 {"studies": [], "medications": [], "specialities": []} +2245 2025-11-01 10:13:55.857653+00 2025-11-01 10:13:55.85766+00 f t Buen estado de salud . . EOG normal. Hernia inguinal izda. 2026-02-01 1100 7308 \N 92 3042 {"recipes": [], "studies": [], "medications": [{"name": "VANGUARD PLUS 5 - Inyectable -", "user": null, "group": 16, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.959898-03:00", "updated_at": "2025-02-20T08:17:53.959905-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1173, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2025-11-21", "next_application_months": 1}], "specialities": []} +2372 2025-11-16 03:27:03.723482+00 2025-11-16 03:27:03.723489+00 f t Gastritis? Controlar estado de hidratación y realizar un chequeo de sangre. Aplico maropitant, ranitidina, complejo b. Presenta leve deshidratación, a la palpación abdominal no presenta dolor. \N 2026-02-16 11503 9531 \N 1 3176 {"studies": [], "medications": [], "specialities": []} +2444 2025-11-24 13:57:55.233849+00 2025-11-24 13:57:55.233856+00 f t . No se ingresó información No se ingresó información Realizó certificado de salud con desparasitacion interna y externa 2026-02-24 8478 6985 \N 80 2506 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2221 2025-10-31 15:33:03.432757+00 2025-10-31 15:33:03.432763+00 f t Infección bacteriana o viral Laringo faringitis, ? Sugiero realizar chequeo general completo de sangre y ecografía abdominal Indicó spectril 10, medio comprimido cada 12hs x 14 días. Reanudar medicación inyectable si no tolerancia la medicación oral El tutor me comenta 2 pelotas que le duelen alrededor de la garganta y que le cuesta tragar y a veces masticar. \nSe encuentra bien de ánimo come con ganas sin hipertermi, Presenta marcado aumento de ganglios mandíbulares, Cardiológicamente ok y respiratoriamente también, Score corporal 3 de 5. 2026-01-31 510 602 \N 21 2973 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "ALGEN iny. 20 x 20 cc - Inyectable -", "user": null, "group": 4, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.314406-03:00", "updated_at": "2025-02-20T08:17:51.314414-03:00", "description": "Inyección de tramadol", "id_medicina": 533, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2222 2025-10-31 15:36:19.717092+00 2025-10-31 15:36:19.717097+00 f t No se ingresó información No se ingresó información No se ingresó información Eutanasia 2026-01-31 10901 9045 \N 113 2932 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2223 2025-10-31 15:37:21.603223+00 2025-10-31 15:37:21.603227+00 f t No se ingresó información No se ingresó información No se ingresó información Papeles para viajar a Venezuela y vacuna con coronavirus 2026-01-31 10951 9087 \N 113 2920 {"recipes": [], "studies": [], "medications": [{"name": "VANGUARD PLUS 5 + 4L + CV - Inyectable -", "user": null, "group": 16, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.964476-03:00", "updated_at": "2025-02-20T08:17:53.964482-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1174, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}], "specialities": []} +2229 2025-11-01 03:09:54.518684+00 2025-11-01 03:09:54.51869+00 f t Alopecia psicogenica No se ingresó información No se ingresó información Prurito en todo el cuerpo, lesiones por rascado. No veo pulgas ni materia fecal, no descarto dapp. Mudanza reciente y ruidos de construcción. Más probable alopecia psicogenica. Ya habían consultado con otro veterinario que le dió el mismo diagnóstico, le indicó antibiótico y corticoide por vía oral pero no pudieron dárselo. Aplico dexametasona y tribiotic. Control mañana o pasado mañana según grado de prurito. 2026-02-01 47 48 \N 80 3057 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2224 2025-10-31 15:42:21.227414+00 2025-10-31 15:42:21.227419+00 f t .. .. .. .. \N 2026-01-31 11745 9712 \N 103 3058 {"studies": [], "medications": [], "specialities": []} +2226 2025-10-31 18:30:34.262727+00 2025-10-31 18:30:34.262732+00 f t Estado compensado para procedimiento quirúrgico. volvernos a tomar muestra para cosgulonreae Ninguno Devolución de estudios pre cx. 2026-01-31 10707 8891 \N 68 3056 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2227 2025-10-31 19:47:19.555473+00 2025-10-31 19:47:19.55548+00 f t . . . . \N 2026-01-31 11302 9364 \N 100 3035 {"studies": [], "medications": [], "specialities": []} +2228 2025-11-01 03:07:29.179118+00 2025-11-01 03:07:29.179126+00 f t . No se ingresó información No se ingresó información En ecografía abdominal se observa neopalsia intestinal de gran tamaño. La paciente empeoró, presenta hipotermia y deshidratación marcada, depresión. Caquexia. Se explica mal pronóstico. Se realiza eutanasia 2026-02-01 541 9621 \N 80 3050 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2230 2025-11-01 03:11:20.022514+00 2025-11-01 03:11:20.02252+00 f t No se ingresó información No se ingresó información No se ingresó información Se aplica triple felina y antirrabica. Tuvo problemas urinarios, la tutora no tiene los estudios. Indico orina completa, control con resultados. Come urinary so y excellent adulto 2026-02-01 11685 9676 \N 80 3036 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2231 2025-11-01 03:27:30.635358+00 2025-11-01 03:27:30.635364+00 f t Espondilosis y obesidad No se ingresó información No se ingresó información Agresivo y miedoso. Consulta por disminución de actividad, solo se levanta para comer. Solo pude revisar mucosas (rosadas) y columna. Presenta severo dolor en columna toraco lumbar y lumbar. Aplico meloxicam y receto meloxicam en dosis decrecientes. Doy orden para perfil general completo. Presenta muchas rastas, la próxima visita con gabapentina recortaremos las rastas y extraeremos sangre. 2026-02-01 11194 9287 \N 80 2957 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2235 2025-11-01 04:45:10.7608+00 2025-11-01 04:45:10.760806+00 f t - - - Se realiza aplicación de antibióticos por indicaciones de otro veterinario. \N 2026-02-01 10000 8274 \N 1 2766 {"studies": [], "medications": [], "specialities": []} +2246 2025-11-01 14:37:01.88817+00 2025-11-01 14:37:01.88818+00 f t Asma felina El tutor dice que no quiere puf. Cómo le había sido indicado. Porque el gatito se pone nervioso. Prednisol gotas Tiene tos seca . Tiene Rx de tórax. Control porque tiene asma felina 2026-02-01 11517 9541 \N 114 3013 {"recipes": [], "studies": [], "medications": [{"name": "PREDNISOL GOTAS x 15 ml - Gotas -", "user": null, "group": 11, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.141441-03:00", "updated_at": "2025-02-20T08:17:53.141447-03:00", "description": "Gotas de prednisolona", "id_medicina": 987, "presentation": 2, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2247 2025-11-01 14:47:13.536817+00 2025-11-01 14:47:13.536824+00 f t No se ingresó información No se ingresó información Meloxivet inyectable . Ranitidina \nContinuar con meloxivet comp. Por 3 dias Edema MPD. Cuando se levanta se cae. Antecedente de tumor de bazo que fue operado. Tumores mamarios . Que no fueron operados.\nEl tutor dice que. En una ecografía que le hicieron el año pasado tenía metástasis en hígado. Pero no tiene la ecografia .\nHace. Un mes aprox le dieron prednisolona. Y tuvo diarrea con sangre. 2026-02-01 9435 7841 \N 114 3075 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}, {"id": 2, "name": "Radiografía"}], "medications": [{"name": "MELOXIVET 5 mg INY. x 10 cc - Inyectable -", "user": null, "group": 6, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.701414-03:00", "updated_at": "2025-02-20T08:17:52.701419-03:00", "description": "Inyección antiinflamatoria", "id_medicina": 872, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "MELOXICAM DERMOVET 4 mg x 10 comp. - Comprimidos -", "user": null, "group": 6, "active": true, "company": "Dermovet", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.666316-03:00", "updated_at": "2025-02-20T08:17:52.666324-03:00", "description": "Comprimidos antiinflamatorios", "id_medicina": 863, "presentation": 3, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2225 2025-10-31 18:29:19.271623+00 2025-10-31 18:29:19.271628+00 f t IRC paciente con pronóstico grave No se ingresó información Consulta presencial para fluidos y vitaminas. Telconsulta devolución de analaisis 2026-02-03 11851 9800 \N 68 3065 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2248 2025-11-01 17:58:24.083617+00 2025-11-01 17:58:24.083625+00 f t . . . . \N 2026-02-01 11977 9897 \N 100 3078 {"studies": [], "medications": [], "specialities": []} +2249 2025-11-01 18:00:24.497472+00 2025-11-01 18:00:24.497477+00 f t . . . . \N 2026-02-01 11955 9875 \N 100 3071 {"studies": [], "medications": [], "specialities": []} +2250 2025-11-01 19:26:48.914996+00 2025-11-01 19:26:48.915005+00 f t Buen estado de sa . . EOG normal \N 2026-02-01 8168 6717 \N 92 3002 {"studies": [], "medications": [{"name": "BAGOVAC RABIA", "id_medicina": "1149", "medication_type_name": "Vacuna", "next_application_date": "2026-11-01", "next_application_months": 12}, {"name": "VANGUARD PLUS 5 + L4", "id_medicina": "1176", "medication_type_name": "Vacuna", "next_application_date": "2026-11-01", "next_application_months": 12}], "specialities": []} +2251 2025-11-01 19:30:26.535618+00 2025-11-01 19:30:26.535623+00 f t Lesión en dedo de mpd. Control en 48hs. Tribiotic+ meloxicam+ spray antiséptico EOG normal. Se cayó y enganchó la uña. Dolor. \N 2026-02-01 12172 10060 \N 92 3098 {"studies": [], "medications": [], "specialities": []} +2252 2025-11-01 19:41:29.387741+00 2025-11-01 19:41:29.387747+00 f t Gastritis? Identificar plantas tóxicas y retirar de su alcance. Dieta blanda casera+ omeprazol. Control en 24 hs EOG normal. Hoy vomitó con sangre. (Color rosa). 2026-02-01 2211 2020 \N 92 3100 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2253 2025-11-01 21:14:37.107375+00 2025-11-01 21:14:37.107382+00 f t - - Se aplica triple felina y antirabica Eog: s/p \N 2026-02-01 10288 8541 \N 1 2823 {"studies": [], "medications": [], "specialities": []} +2254 2025-11-01 21:18:38.142475+00 2025-11-01 21:18:38.142483+00 f t Corte con vidrio se indica continuar con limpieza de la herida, y continuar con la medicación vía oral Se realiza tricotomía, se desinfecta la herida y se aplica Amoxicilina y meloxicam Paciente difícil de manejar, tiene una herida cortante en uno de sus miembros de unos 2 cmts \N 2026-02-01 10465 8696 \N 1 2848 {"studies": [], "medications": [], "specialities": []} +2255 2025-11-01 21:22:49.123981+00 2025-11-01 21:22:49.123988+00 f t Queriendo sacarse el collar se lastimó todo el cuello se indica continuar con curaciones y bactroprofen por 7 dias Se realiza tricotomía y desinfección de la herida, se aplica dexametasona y tribuotic En la visita se evidencia un parche caliente que se encuentra todo al rededor del cuello, mucho dolor y exudación por parte del tejido, una dermatitis exudativa severa. \N 2026-02-01 10600 8799 \N 1 2862 {"studies": [], "medications": [], "specialities": []} +2256 2025-11-01 21:25:22.924209+00 2025-11-01 21:25:22.924216+00 f t - - Aplico vacuna antirabica y triple felina Eog: s/p \N 2026-02-01 10624 8819 \N 1 2868 {"studies": [], "medications": [], "specialities": []} +2257 2025-11-01 21:32:47.429303+00 2025-11-01 21:32:47.429309+00 f t Flut? Doy orden para análisis de orina Se aplica melocam, clamoxyl y se indica comenzar con cisticalm y terazosina. Normotermico, normohidratado.\nLeve molesta abdominal, vejiga sin contenido. \N 2026-02-01 11759 9722 \N 1 3051 {"studies": [], "medications": [], "specialities": []} +2258 2025-11-01 21:46:15.871883+00 2025-11-01 21:46:15.871893+00 f t Gastritis Se recomienda análisis de sangre y ecografia abdominal Ringer lactato, kualcohepat, kualcovit,pileran, tribiotic,ranitidina, ketamina ,se extraen las 3 muelas sueltas Leve deshidratacion, vomitos de balanceado, come de todo, plantas y otros, no está flaco, estado general bueno,3 muelas muy móviles,que le producen dolor 2025-11-03 12160 10053 \N 78 3095 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2259 2025-11-02 19:16:01.891554+00 2025-11-02 19:16:01.891563+00 f t - sugiero cambio de alimento a proplan obesity realizo extraaccion de sangre para perfil general completo con orina + upc + lipidos totales + hdl + ldl + felino hembra siames 6.5 kg castrada 13 años \nconsulta para revision clinica y extraccion de sagre para evaluacion de medio interno.\nrevision clinica\naus s/p\nestado alerta\ncc 8 \npalpacion abdominal, abdomen en hipogastrio s/p , en epigastrio se palpa organomegalia ( hepato/esplenomegalia). no manifiesta dolor\nnormotermica\nnormohidratada\nln s/p \N 2026-02-02 11616 9611 \N 88 3022 {"studies": [], "medications": [], "specialities": [{"id": null, "name": "41"}]} +2282 2025-11-04 01:43:42.292611+00 2025-11-04 01:43:42.292619+00 f t Neoplasia con ¿metástasis?\nTratamiento paleativo con antiinflamatorios esteroideos y en función de evolución previa cardiología y radiografía de tórax considerar laparatomía para biopsia y/o resección quirúrgica No se ingresó información Mantenimiento antiinflamatorio. Ecografía describe neoplasia cavitada en mesogastrio de 9x10cm que desplaza al bazo con lnn abdominales asociados.\nAnálisis de sangre dentro de parámetros. Antecedente hemangiosarcoma. 2026-02-03 11745 9712 \N 68 3117 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2260 2025-11-02 19:27:27.931487+00 2025-11-02 19:27:27.931495+00 f t sospecha de colecta uterina + tumores mamarios realizo ordenes para estudios de rx de columna toraco lumbar y art coxofemoral + rx de torax ( para descartar metastasis de n\neos en mamas y evaluar posible intervencion quirurgica)\n+ eco abdominal por sospecha de colecta uterina \n+ indicacion para estudios de sangre aplico dexa a 05mg/ kg y dejo 2 jeringas mas para aplicar cada 24 hs .\nexplico como maniobrar a la paciente para movilizarla y ayudarla a caminar canino hembra mestiza entera 32 kg aprox. 9 años\nconsulta por dificutad/incapacidad para incorporarse. evolucion 24 hs y masas en mamas . Mantiene ingesta de agua pero solidos unicamente acepta alimentacion palatable ( pouch de dog chow)\nvacunas y desparasitaciones vencidas\nrevision clinica\naus 150 lpm \ncc 8\npalpacion raquis se observa marcado dolor en region toracolumbar, lumbosacra y artticulacion coxofemoral\npalpacion abdominal marcada algia en mesogastro, abdomen tengo y distendido.\ntemp 38.6\ndeshidratacion 6 %\npolidipisa poliuria \nse observa en ambas hileras mamarias masas de diferente tamaño tanto en mamas inguinales craneales como caudales . aun sin ulcerase. En hilera mamaria derecha ,se observan multimples masas y una de ellas es de gran tamaño ( 20 cm de diametro aprox)\nultimo celo hace 2 meses \N 2026-02-02 11658 9647 \N 88 3032 {"studies": [], "medications": [], "specialities": [{"id": null, "name": "41"}, {"id": null, "name": "76"}, {"id": null, "name": "6"}]} +2261 2025-11-02 19:40:37.963474+00 2025-11-02 19:40:37.963479+00 f t gastritis? ERC? realizo orden para ecografia abdominal + perfil general completo con orina + upc realizo pasaje de ringerk 200 ml + rani ´+ novotioc + pileran\nindico que comience en 12 hs via oral ranitidina en gotas cada 12 hs por 7-10 dias felino hembra castrada comun europeo 3.3 kg 8 años \nconsulta porque hace un tiempo (7 dias aprox) la paciente comenzo con vomitos a la mañana, algunos alimenticios otros biliosos/glerosos y alguna mañana no presentó vomitos. matiene apetito y animo . deposiciones normales\ndesparasitaciones y vacunas vencidas\ncome balance de vital cat senior ad libitum\nrevision clinica\ncc 3.5\naus cardiopulmonar s/p\ndeshidratacion 7%\npalpacion abdminal, abdomen blando, se palpan bordes esplenicos/hepaticos por detras de la ultima costilla \npelo hirsuto \N 2026-02-02 11302 9364 \N 88 2972 {"studies": [], "medications": [{"name": "SOL. RINGER LACTATO x 500 ml.", "id_medicina": "1069", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "RANITIDINA 20MG iny x 50 cc", "id_medicina": "1034", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "PRURICILONA SPRAY x 15 ml", "id_medicina": "1031", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "NOVOTIOC INY. x 50 cc", "id_medicina": "907", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "PILERAN INY. x 50 cc", "id_medicina": "950", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}], "specialities": [{"id": null, "name": "41"}, {"id": null, "name": "76"}]} +2262 2025-11-02 19:45:24.201149+00 2025-11-02 19:45:24.201156+00 f t . . indico colocar pipeta que cubra parasitos internos y externos felino macho comun europeo castrado 2 años \nvisita a domicilio para vacunacion anual\ncome excelent\ndesparasitaciones vencidas\nrevision clinica\naus s/P\npalpacion abdominal s/p\nnormotermico\nnormohidratado \N 2026-02-02 11134 9232 \N 88 2945 {"studies": [], "medications": [{"name": "PAUL - ANTIRRABICA", "id_medicina": "1153", "medication_type_name": "Vacuna", "next_application_date": "2026-11-02", "next_application_months": 12}, {"name": "FELOCELL CVR", "id_medicina": "1158", "medication_type_name": "Vacuna", "next_application_date": "2026-02-02", "next_application_months": 3}], "specialities": []} +2263 2025-11-02 19:50:20.921834+00 2025-11-02 19:50:20.921839+00 f t cuerpo extraño en almohodilla de mpd control en 48 hs indico limpieza de la zona con iodo al 50% 2 a 3 veces por dia canino macho caniche 6 kg \nconsulta por lamido excesitvo en almohadilla de mpd. evolucion 12 horas\nrevision clinica\naus s/p\nnormotermico\nnormohidratado\npalpacion abdominal abdomen tenso \npresenta una astilla en la almohadilla del mpd, realizo tricotomia de la zona , extraccion del ce y desinfeccion con iodo al 50% \N 2026-02-02 11081 9193 \N 88 2942 {"studies": [], "medications": [{"name": "RANITIDINA 20MG iny x 50 cc", "id_medicina": "1034", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "DEXA 4 iny x 50 cc", "id_medicina": "704", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "Tribiotic", "id_medicina": "1192", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}], "specialities": []} +2264 2025-11-02 19:53:16.703089+00 2025-11-02 19:53:16.703094+00 f t cuerpo extraño en almohadilla de mpd . indico que continue realizando las limpiezas con iodo hasta que la piel de la zona cicatrice completamente canino macho caniche 6 kg 8 años \ncontrol postextraccion de ce de almohadilla de mpd, La zona se obesrva limpia , sin inflamacion asociada . El paciente no volvió a lamerse la zona. \N 2026-02-02 11081 9193 \N 88 2944 {"studies": [], "medications": [{"name": "Tribiotic", "id_medicina": "1192", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}], "specialities": []} +2265 2025-11-02 19:53:58.648472+00 2025-11-02 19:53:58.648476+00 f t . . aplico ultima dosis de artrosan - \N 2026-02-02 4255 3550 \N 88 2933 {"studies": [], "medications": [], "specialities": []} +2373 2025-11-16 03:28:45.949079+00 2025-11-16 03:28:45.949086+00 f t - - - Se va al domicilio y la propietaria no realiza el ayuno correspondiente para el análisis, Eog:s/p \N 2026-02-16 11825 9775 \N 1 3063 {"studies": [], "medications": [], "specialities": []} +2445 2025-11-24 13:58:30.201588+00 2025-11-24 13:58:30.201593+00 f t . No se ingresó información No se ingresó información Aplico vacunas anuales 2026-02-24 12252 10117 \N 80 3118 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2266 2025-11-02 20:06:48.783837+00 2025-11-02 20:06:48.783846+00 f t hepatopatia , nefropatia, calor externo para intentar elevar temperatura, aplicacion de miel en encias indico internacion por estado grave de la paciente, explico que dados los hallazgos clinicos, posiblemente se descompense en las proximas horas.\naplico ringer lactato 200 ml + rani ´+ novotioc + glucosa + vit b felino hembra castrada 17 años 3.5 kg aprox\nconsulta por decaimiento, anorexia de 5 -7 dias de evolucion , solo ingiere agua. hace unos 5 meses se le realizo esplenectomia , tiene estudios complementarios realizados previos a la intervencion.\nrevision clinica\nestado deprimido\naus 150 lpm\ndeshidratacion 8%\nposicion decubito esternal\ntemperatura 34.8\nictericia en pabellon auricular, piel, mucosas \N 2026-02-02 11029 9152 \N 88 2934 {"studies": [], "medications": [{"name": "SOL. RINGER LACTATO x 500 ml.", "id_medicina": "1069", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "GLUCOSA HIPERTONICA 25% x 50 cc", "id_medicina": "782", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "RANITIDINA 20MG iny x 50 cc", "id_medicina": "1034", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "NOVOTIOC INY. x 50 cc", "id_medicina": "907", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}], "specialities": []} +2267 2025-11-02 20:21:29.138153+00 2025-11-02 20:21:29.138162+00 f t lesion a nivel cervical . proceso infeccioso ? toxo neo ehrichia? indico alimentacion con la cabeza en alto, y moverlo al menos 3 veces por dia del decubito realizo pasaje de ringer lactato 500 ml subcutaneo junto con la medicacion antes nombrada .\nestamos esperando resultados de toxoplasmosis y neosporosis realizados en la cliinica donde estuvo internado.\nsugiero realizar pcr ehrichia canino macho pitbull 4 años 28 kg\nlo tiene de transito hace 2 dias , fue rescatado por una asociacion al costado de una autopista en decubito lateral sin poder incorporarse . estuvo internado en una clinica en donde se le hicieron estudios de medio interno ( perfil general completo + toxo neo ) + rx de columna cervico-toracica toraco-lumbar .\nrevision clinica\ncaquexico\nnormotermico 38.6\naus cardiopulmonar s/p\npalpacion abdominal s/p ( tiene colocada una sonda uretral para recoleccion de la orina )\nincapacidada para mantenerse en estacion , puede levantar unicamente la cabeza pero manifiesta dolor marcado en region cervical. posicion decubito lateral derecho.\nsensibilidad en miembros anteriores y posteriores ( disminuida)\ndeshidratacion 7%\nmatiene apetito ( come con ganas todo lo que le ofrecen) \N 2026-02-02 9727 8106 \N 88 2710 {"studies": [], "medications": [{"name": "SOL. RINGER LACTATO x 500 ml.", "id_medicina": "1069", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "GRUPO B TOTAL 5000 x 50 cc", "id_medicina": "787", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "RANITIDINA 20MG iny x 50 cc", "id_medicina": "1034", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "HEPATONE x 100 cc", "id_medicina": "793", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}], "specialities": []} +2268 2025-11-02 20:37:16.485468+00 2025-11-02 20:37:16.485475+00 f t Ehrichia? patologias en columna toracolumbar? sugiero realizar pcr ehrichia + ecografia abdominal aplico dexa + rani + tramadol canino hembra mestizo 3-4 años ( aprox) \nconsulta porque desde ayer comenzó con aullidos y muy inquieta cuando la intentan levantar, sea desde el abdomen como desde los miembros anteriores. \nfue adoptada hace unos dias de un refugio y es la primera vez que se manifiesta con esta conducta.\nFué atentida en otra veterinaria en la cual le realizaron estudios de sangre , en los cuales se observa trombocitopenia.\nmantiene apetito\nrevision clinica\nnormohidratada\naus cardiopulmonar s/p\ncc6-7\npalpacion abdominal, abdomen muy tenso, organomegalia? dolor? \npalpacion raquis, manifiesta dolor/tension al palpar zona tocacolumbar \N 2026-02-02 11180 9271 \N 88 2954 {"studies": [], "medications": [{"name": "DEXA 4 iny x 50 cc", "id_medicina": "704", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}], "specialities": [{"id": null, "name": "41"}, {"id": null, "name": "76"}]} +2269 2025-11-02 20:49:03.183094+00 2025-11-02 20:49:03.183101+00 f t enfermadad respiratoria cronica? realizo orden para interconsulta con cardiologia + orden para perfil general completo con orina . sugiero administrar nextgard spectra canino macho mestizo 12 años castrado 10 kg\nconsulta por chequeo general , la tutora me comenta que notó que el paciente bajó de peso sin alterar su ingesta alimenticia y que lo escucha toser, no lo hace todos los dias.\ncome vital can balance\nvacunas al dia \ndesparasitaciones vencidas\nrevision clinica\nsoplo 1/6 en foco mitral\npalpacion abdominal s/p abdomen blando sin dolor.\nnormotermico \nnormohidratado \N 2026-02-02 11240 9325 \N 88 2965 {"studies": [], "medications": [], "specialities": [{"id": null, "name": "8"}, {"id": null, "name": "76"}]} +2284 2025-11-04 13:31:09.35177+00 2025-11-04 13:31:09.351775+00 f t Consulta x desparasitación externa e interna + certificado de salud x viaje a Chile. Administrar gabapentina antes del viaje. Se desparasitó con Nexgard Combo 2,5-7,5 ml. Consulta x desparasitación externa e interna + certificado de salud x viaje a Chile. 2026-02-04 7501 6168 \N 70 2943 {"recipes": [], "studies": [], "medications": [{"name": "NEXGARD COMBO 2.5 a 7.5 kg - Pipeta + comprimido -", "user": null, "group": 1, "active": true, "company": "NEXGARD", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:50.353063-03:00", "updated_at": "2025-02-20T08:17:50.353092-03:00", "description": "Pipeta antipulgas y garrapatas + comprimido", "id_medicina": 300, "presentation": 17, "medication_type": 1, "medication_type_name": "Antiparasitario"}], "specialities": []} +2311 2025-11-08 04:28:47.484528+00 2025-11-08 04:28:47.484533+00 f t Cistitis x neo vesical Consulta cardiológica y quirúrgica Continuar con meloxicam x 3 días en un principio \nTramadol cada 12 hs \nAmox plus x 10 días \nNovalgina Soplo cardiaco no tratado\nTenesmo urinario \nHallazgo de neof x ecografía en relación a cuello de vejiga 2026-02-08 12087 9995 \N 94 3134 {"recipes": [], "studies": [], "medications": [{"name": "TRAMADOL 50 mg INY x 50 cc - Inyectable -", "user": null, "group": 13, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.625987-03:00", "updated_at": "2025-02-20T08:17:53.625991-03:00", "description": "Inyectable", "id_medicina": 1105, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "MELOXIVET 5 mg INY. x 10 cc - Inyectable -", "user": null, "group": 6, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.701414-03:00", "updated_at": "2025-02-20T08:17:52.701419-03:00", "description": "Inyección antiinflamatoria", "id_medicina": 872, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DIPIRONA CHINFIELD iny. x 100 ml - Inyectable -", "user": null, "group": 6, "active": true, "company": "", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.097282-03:00", "updated_at": "2025-02-20T08:17:52.097288-03:00", "description": "Inyección de dipirona", "id_medicina": 725, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2374 2025-11-16 03:30:04.863377+00 2025-11-16 03:30:04.863386+00 f t - - - Se realiza eutanasia \N 2026-02-16 12381 10229 \N 1 3136 {"studies": [], "medications": [], "specialities": []} +2446 2025-11-24 20:57:11.756027+00 2025-11-24 20:57:11.756033+00 f t - - Vacunación antirrabica Control gral y aplicación de vacuna antirrabica \N 2026-02-24 5951 4861 \N 99 3308 {"studies": [], "medications": [{"name": "PROVIDEAN BH - RABIA", "id_medicina": "1154", "medication_type_name": "Vacuna", "next_application_date": "2026-11-24", "next_application_months": 12}], "specialities": []} +2270 2025-11-02 21:00:16.518956+00 2025-11-02 21:00:16.518963+00 f t obstruccion de conducto lagrimal indico realizar limpiezas con un hisopo con clorexidina , teniendo extrema precaucion de que el producto no entre en contacto con el ojo, 3 veces al dia + limpiezas con solucion fisiologia previa a la colocacion del spray. aplico dexa + tribiotic e indico control en 48 hs segun evolucion. felino macho comun europeo 7 años 4.5 kg\nconsulta por excesivo acumulo de lagrimas en ambos lagrimales , predominante en lagrimal izquierdo, con dermatitis asociada ( leve)\nrevision clinica\naus s/p\nnormotermico\nnormohidratado\ntest fluoresceina negativo en ambos ojos, obstruccion de ambos conductos lagrimales.\nrealizo limpieza de la zona con solucion fisiologica esteril + clorhexidina (spray tritohexidin plus) \N 2026-02-02 3656 3104 \N 88 2634 {"studies": [], "medications": [{"name": "DEXA 4 iny x 50 cc", "id_medicina": "704", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}, {"name": "Tribiotic", "id_medicina": "1192", "medication_type_name": "Medicamento", "next_application_date": "2025-11-02", "next_application_months": 0}], "specialities": []} +2271 2025-11-02 21:03:40.803704+00 2025-11-02 21:03:40.803709+00 f t Laringotraqueitis infecciosa canina Vacunación en 3 semanas con vacuna bordetella bronchiseptica Doxiciclina + meloxicam Tos productiva. \N 2026-02-02 6688 5457 \N 92 3105 {"studies": [], "medications": [], "specialities": []} +2272 2025-11-02 21:04:56.755092+00 2025-11-02 21:04:56.755097+00 f t Buen estado de salud . . EOG normal \N 2026-02-02 11632 9626 \N 92 3027 {"studies": [], "medications": [{"name": "BAGOVAC RABIA", "id_medicina": "1149", "medication_type_name": "Vacuna", "next_application_date": "2026-11-02", "next_application_months": 12}, {"name": "FELIGEN CRP", "id_medicina": "1157", "medication_type_name": "Vacuna", "next_application_date": "2026-11-02", "next_application_months": 12}], "specialities": []} +2273 2025-11-02 21:05:42.449046+00 2025-11-02 21:05:42.449051+00 f t otitis por levaduras ? . speramos resultados del cultivo y antibiograma para evaluar posible cambio de tratamiento felino macho comun europeo 11 años castrado 5.6 kg\nconsulta por rascado de orejas ( predominante en pabellon auricular izquierdo)\nse observa abundante secrecion amarronada en conducto auditivo izquierdo. estuvo en tratamiento con otovier nf hace poco tiempo .\ntomo muestra para cultivo y antibiograma de secrecion otica \N 2026-02-02 167 176 \N 88 2595 {"studies": [], "medications": [], "specialities": []} +2274 2025-11-02 22:34:49.68403+00 2025-11-02 22:34:49.684035+00 f t . . indico pipeta para cubrir antiparasitarios externos e internos felino hembra comun europeo castrada 2 años \ncome excelent gato adulto\nvisita a domicilio para vacunacion anual. \ndesparasitaciones vencidas\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermica\n normohidratada \N 2026-02-02 11134 9233 \N 88 2945 {"studies": [], "medications": [{"name": "PAUL - ANTIRRABICA", "id_medicina": "1153", "medication_type_name": "Vacuna", "next_application_date": "2026-11-02", "next_application_months": 12}, {"name": "FELOCELL CVR", "id_medicina": "1158", "medication_type_name": "Vacuna", "next_application_date": "2026-11-02", "next_application_months": 12}], "specialities": []} +2275 2025-11-03 03:12:41.064137+00 2025-11-03 03:12:41.064142+00 f t - - Se entrega al propietario la hoja con todas mas mediciones. Se toma la presión de forma no invasiva de la base de cola. \N 2026-02-03 10853 9010 \N 1 2900 {"studies": [], "medications": [], "specialities": []} +2276 2025-11-03 03:19:10.270839+00 2025-11-03 03:19:10.270843+00 f t iRC Se recomienda controlar y no dejar que deje de tomar agua me parece Se toma muestra de sangre, se a7plica antiemetico, protector gástrico. Paciente decaída, con ligera alitosis/urinoso. Pérdida ponderal. Normotermico, leve subdeshidratacion. \N 2026-02-03 11387 9430 \N 1 2985 {"studies": [], "medications": [], "specialities": []} +2277 2025-11-03 03:29:18.440145+00 2025-11-03 03:29:18.44015+00 f t Discopatia en columna? - Se recomienda comenzar con fisioterapia y Pregabalina Paciente se lo nota molesto de los miembros posteriores, se palpa dolor a la altura de la columna torácico-lumbar y lumbo sacra. Normotermico, normohidratado. \N 2026-02-03 10863 9021 \N 1 2904 {"studies": [], "medications": [], "specialities": []} +2278 2025-11-03 03:34:32.138442+00 2025-11-03 03:34:32.138449+00 f t Neo en andomen Se toma muestra de sangre u se indica la ecografía abdominal Aplico dipirona, tramadol, clamoxyl, protector hepatico y gástrico. Paciente geronte, normohidratada, levemente hipertermias, presenta dolor andominl, bastante marcado. \N 2026-02-03 10963 9096 \N 1 2926 {"studies": [], "medications": [], "specialities": []} +2279 2025-11-03 15:47:08.849715+00 2025-11-03 15:47:08.849722+00 f t Demencia Senil. Paraplejia. No se ingresó información No se ingresó información No se ingresó información 2026-02-03 8869 7334 \N 113 3085 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2280 2025-11-03 17:11:29.600986+00 2025-11-03 17:11:29.600994+00 f t Laboratorio . . Laboratorio \N 2026-02-03 11616 9611 \N 100 3023 {"studies": [], "medications": [], "specialities": []} +2281 2025-11-03 21:55:04.424569+00 2025-11-03 21:55:04.424579+00 f t Oncologico No se ingresó información Diurético y corticoide Paciente con neoplasia en mediastino tratamiento paleativo 2026-02-03 5249 5900 \N 68 3094 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "FUROSEMIDA 40 mg x 20 comp - Comprimidos -", "user": null, "group": 8, "active": true, "company": "Janvier", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.307638-03:00", "updated_at": "2025-02-20T08:17:52.307646-03:00", "description": "Comprimidos diuréticos", "id_medicina": 775, "presentation": 3, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2283 2025-11-04 03:27:27.662315+00 2025-11-04 03:27:27.662323+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-04 11503 9531 \N 90 3089 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2285 2025-11-04 13:47:30.679811+00 2025-11-04 13:47:30.679817+00 f t Consulta x vacunación séxtuple c/lepto, VAR, colocación de microchip y extracción de sangre p/ test de Leishmania. Realizar certificado de salud dentro de los diez días antes de la partida. Consulta x vacunación séxtuple c/lepto, VAR, colocación de microchip y extracción de sangre p/ test de Leishmania. Consulta x vacunación séxtuple c/lepto, VAR, colocación de microchip y extracción de sangre p/ test de Leishmania. EOG normal. Apetito, sed, micción y defecación normales. Palpación abdominal sin particularidades. Auscultación cardíaca normal. 2025-12-07 3002 2626 \N 70 3104 {"recipes": [], "studies": [], "medications": [{"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-11-02", "next_application_months": 12}, {"name": "RECOMBITEK C8 - Inyectable -", "user": null, "group": 16, "active": true, "company": "", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.950487-03:00", "updated_at": "2025-02-20T08:17:53.950494-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1171, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-11-02", "next_application_months": 12}], "specialities": []} +2286 2025-11-04 14:45:34.108148+00 2025-11-04 14:45:34.108156+00 f t No se ingresó información x análisis clínicos No se ingresó información 2026-02-04 11302 9364 \N 112 3005 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2287 2025-11-04 14:46:04.41631+00 2025-11-04 14:46:04.416316+00 f t x No se ingresó información No se ingresó información analisis clínicos x 2026-02-04 4176 3479 \N 112 2979 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2288 2025-11-04 14:46:50.229685+00 2025-11-04 14:46:50.22969+00 f t No se ingresó información No se ingresó información No se ingresó información analisis clínicos 2026-02-04 10716 8899 \N 112 2983 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2289 2025-11-04 14:47:16.106936+00 2025-11-04 14:47:16.106941+00 f t x No se ingresó información No se ingresó información análisis clinicos 2026-02-04 2084 9471 \N 112 2994 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2290 2025-11-04 16:48:01.243513+00 2025-11-04 16:48:01.243518+00 f t neoplasia adrenal Se explica que el pronostico es malo dado que hace mas de sesis meses se observaba una masa de mas de 2 cm\nse indica nueva ecografia por ahora no se indica ningun tratamiento Derivada por sosecha de neoplasia de gl adrenal \N 2026-02-04 11278 9346 \N 98 2970 {"studies": [], "medications": [], "specialities": []} +2291 2025-11-04 16:49:38.337386+00 2025-11-04 16:49:38.337391+00 f t sindrome de cushing control en dos meses mejoro polidipsia/poliuria pero el cortisol/creatinina no bajo mucho\nPor el momento se continuara con misma dosis de ketoconazol, en Diciembre/enero nuevo cort/creat y control control endocrino \N 2026-02-04 4987 4122 \N 98 2861 {"studies": [], "medications": [], "specialities": []} +2292 2025-11-05 02:57:00.30038+00 2025-11-05 02:57:00.300385+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-04 11616 9611 \N 90 3115 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2293 2025-11-05 04:40:56.548112+00 2025-11-05 04:40:56.548117+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-05 12370 10219 \N 90 3132 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2294 2025-11-05 05:33:57.835368+00 2025-11-05 05:33:57.835376+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-05 11855 9803 \N 90 3087 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2295 2025-11-05 19:58:24.815257+00 2025-11-05 19:58:24.815265+00 f t No se ingresó información No se ingresó información No se ingresó información Extraccione sangre PCR vif y VILEF 2026-02-12 12364 10216 \N 68 3140 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2297 2025-11-06 00:08:26.403304+00 2025-11-06 00:08:26.403311+00 f t Vacunación anual con triple felina y antirrábica. Revacunación en un año. Vacunación anual. Consulta x vacunación anual completa. EOG normal. Sed, apetito, micción y defecación normales. Auscultación cardíaca normal. 2026-02-05 12237 10106 \N 70 3108 {"recipes": [], "studies": [], "medications": [{"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-11-05", "next_application_months": 12}, {"name": "FELIGEN CRP - Inyectable -", "user": null, "group": 16, "active": true, "company": "Virbac", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.881501-03:00", "updated_at": "2025-02-20T08:17:53.881508-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1157, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-11-05", "next_application_months": 12}], "specialities": []} +2296 2025-11-05 23:48:29.774041+00 2025-11-05 23:48:29.774046+00 f t Piómetra abierta. Realizar ecografia abdominal para probable cirugía (ovariohisterectomía). Enrofloxacina iny 3 ml SC. Luego administrar enrofloxacina 150 mg 1/2 comp c/12 hs por 10 días. Consulta x dolor en patas traseras pero el verdadero problema es una descarga seropurulenta en la vagina compatible con piómetra. EOG sensorio deprimido. Sed normal, apetito deprimido. Micción, defecación normales. Es epiléptica (toma Contal). \N 2026-02-05 12361 10214 \N 70 3129 {"studies": [], "medications": [], "specialities": []} +2299 2025-11-06 16:32:21.537616+00 2025-11-06 16:32:21.537625+00 f t - - Si se quisiera quedarse más tranquilo se podría realizar un chequeo de sangre Eog: s/p normotermico, normohidratado \N 2026-02-06 10886 9033 \N 1 2912 {"studies": [], "medications": [], "specialities": []} +2375 2025-11-16 03:33:56.255902+00 2025-11-16 03:33:56.25591+00 f t - - - No se realiza visita. \N 2026-02-16 12084 9992 \N 1 3090 {"studies": [], "medications": [], "specialities": []} +2300 2025-11-06 20:04:09.117372+00 2025-11-06 20:04:09.11738+00 f t Tumor No se ingresó información Meloxivet inyectable \n Ranitidina inyectable.\nSeguir con meloxivet comprimidos x 3 dias Manifiesta dolor. Dificultad para acostarse. Come normal\n Toma agua 2026-02-06 11855 9803 \N 114 3097 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}, {"id": 2, "name": "Radiografía"}], "medications": [{"name": "MELOXIVET 5 mg INY. x 10 cc - Inyectable -", "user": null, "group": 6, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.701414-03:00", "updated_at": "2025-02-20T08:17:52.701419-03:00", "description": "Inyección antiinflamatoria", "id_medicina": 872, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2301 2025-11-07 00:33:08.127744+00 2025-11-07 00:33:08.127749+00 f t . No No Eco abdominal \N 2026-02-06 12531 10353 \N 103 3165 {"studies": [], "medications": [], "specialities": []} +2302 2025-11-07 06:54:28.300025+00 2025-11-07 06:54:28.300031+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-07 12361 10214 \N 90 3161 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2303 2025-11-07 08:07:18.457839+00 2025-11-07 08:07:18.457844+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-07 12325 10177 \N 90 3144 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2304 2025-11-07 09:33:22.678797+00 2025-11-07 09:33:22.678805+00 f t Odontolitiasis . Se sugiere limpieza dental. Se otorga orden para perfil general completo+ control cardiólogico EOG normal.. gingivitis. Placa dental. \N 2026-02-07 274 10354 \N 92 3102 {"studies": [], "medications": [], "specialities": []} +2305 2025-11-07 09:37:50.477389+00 2025-11-07 09:37:50.477395+00 f t Dermatitis miliar Control en dos meses Bravecto+prednisol+crema 6A+serenex+alimento hipoalergénico Teleconsulta. Repite cuadro de dermatitis miliar \N 2026-02-07 3981 3336 \N 92 3160 {"studies": [], "medications": [], "specialities": []} +2306 2025-11-07 16:25:06.782355+00 2025-11-07 16:25:06.782363+00 f t hipotiroidismo exatraccion de sangre para perfil tiroideo (adjunto orden) Ninguno Tuvo un episodio de polidipsia/poliuria que mejoro\nlihera obesidad subcutanea a la altura de la zona lumbar. Pelo ok. Sin historial de problemas de piel \N 2026-02-07 8854 7319 \N 98 3120 {"studies": [], "medications": [], "specialities": []} +2307 2025-11-07 16:50:21.345388+00 2025-11-07 16:50:21.345393+00 f t Neoformacion pericardica No se ingresó información No se ingresó información Eutanasia por neoformacion pericardica 2026-02-07 12453 10284 \N 113 3153 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2308 2025-11-07 16:52:10.299431+00 2025-11-07 16:52:10.299437+00 f t No se ingresó información No se ingresó información No se ingresó información Eutanasia por Neoformacion 2026-02-07 9109 7541 \N 113 2664 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2309 2025-11-08 04:06:34.279976+00 2025-11-08 04:06:34.279985+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-08 9670 8055 \N 90 3177 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2310 2025-11-08 04:13:37.430717+00 2025-11-08 04:13:37.430725+00 f t No No No Examen físico SP\nEn tránsito hace 1 semana \nPiden VIF VILEF para darla en adopción 2026-02-08 12446 10278 \N 94 3152 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2312 2025-11-08 04:29:46.720834+00 2025-11-08 04:29:46.720841+00 f t Vacunas anuales No se ingresó información No se ingresó información Vacunación anual 2026-02-08 12377 10225 \N 94 3133 {"recipes": [], "studies": [], "medications": [{"name": "RECOMBITEK C6 - Inyectable -", "user": null, "group": 16, "active": true, "company": "", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.945977-03:00", "updated_at": "2025-02-20T08:17:53.945985-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1170, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-11-07", "next_application_months": 12}, {"name": "BAGOVAC RABIA - Inyectable -", "user": null, "group": 15, "active": true, "company": "Biogenesis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.840515-03:00", "updated_at": "2025-02-20T08:17:53.840522-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1149, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-11-07", "next_application_months": 12}], "specialities": []} +2313 2025-11-08 04:45:58.322963+00 2025-11-08 04:45:58.322969+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-08 12527 10350 \N 90 3178 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2314 2025-11-08 14:49:41.292354+00 2025-11-08 14:49:41.29236+00 f t Glándulas perianales con mucho contenido. Conjuntivitis No se ingresó información Tribiotic y dexa. Moxidex plus. Pipeta antipulgas. Colirio antibacteriano Glándulas perianales impactadas. Elimino mucho contenido. Conjuntivitis ojo derecho. 2026-02-08 7396 6078 \N 114 3126 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2376 2025-11-16 03:43:44.347687+00 2025-11-16 03:43:44.347692+00 f t Gastritis? Continuar con omeprazol, Amoxicilina. Y dieta baja en residuos Se aplica dipirona, tramadol,clamoxyl, ondansetron y ranitidina. Eog: S/p presenta vómitos y anorexia. Sin dolor abdominal. \N 2026-02-16 12383 10230 \N 1 3135 {"studies": [], "medications": [], "specialities": []} +2315 2025-11-08 14:55:56.351747+00 2025-11-08 14:55:56.351755+00 f t No se ingresó información No se ingresó información Pileran. Ranitidina. Que coma pollo. Calabaza y zanahoria hervida Desde ayer vomita el AB. Sin digerir. Toma agua . Temp\n Normal 2026-02-08 12325 10177 \N 114 3124 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}, {"id": 8, "name": "Perfil General Completo sin Orina"}], "medications": [{"name": "PILERAN INY. x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "Holliday", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.997188-03:00", "updated_at": "2025-02-20T08:17:52.997193-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 950, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2316 2025-11-08 15:41:06.951493+00 2025-11-08 15:41:06.951502+00 f t . . . . \N 2026-02-08 12361 10214 \N 100 3180 {"studies": [], "medications": [], "specialities": []} +2317 2025-11-08 15:46:23.893714+00 2025-11-08 15:46:23.893719+00 f t . . . . \N 2026-02-08 12527 10350 \N 100 3174 {"studies": [], "medications": [], "specialities": []} +2318 2025-11-08 15:51:22.105419+00 2025-11-08 15:51:22.105424+00 f t . . . . \N 2026-02-08 11825 9775 \N 100 3064 {"studies": [], "medications": [], "specialities": []} +2319 2025-11-08 15:52:42.339517+00 2025-11-08 15:52:42.339526+00 f t . . . . \N 2026-02-08 9712 8096 \N 100 3039 {"studies": [], "medications": [], "specialities": []} +2320 2025-11-08 15:59:13.457888+00 2025-11-08 15:59:13.457893+00 f t . . . . \N 2026-02-08 12446 10278 \N 100 3151 {"studies": [], "medications": [], "specialities": []} +2321 2025-11-09 21:57:18.864757+00 2025-11-09 21:57:18.864762+00 f t ... No se ingresó información No se ingresó información Eog normal 2026-02-09 11840 9788 \N 21 3060 {"recipes": [], "studies": [], "medications": [{"name": "NOBIVAC TRICAT TRIO - Inyectable -", "user": null, "group": 16, "active": true, "company": "MSD Intervet", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.901577-03:00", "updated_at": "2025-02-20T08:17:53.901586-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1161, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2025-11-25", "next_application_months": 1}], "specialities": []} +2322 2025-11-09 21:59:48.933135+00 2025-11-09 21:59:48.93314+00 f t Pancreatitis\nDoy indicaciones de alimentación natural\nPesar todas las semanas No se ingresó información No se ingresó información Paciente en tto por barro biliar, Sugiero consulta con tastroenterologo, esta en tto también con endocrinólogo por hiperglucemia \nScore 3/5 2026-02-09 12061 9974 \N 21 3088 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2323 2025-11-09 22:13:28.446427+00 2025-11-09 22:13:28.446432+00 f t Problemas hormonales? Control en 2 semanas Tritón hexidinn+ bravecto+ ovariectomia Teleconsulta por alopecia circular sobre el lomo y prurito. Último celo en abril 2025-11-23 12807 10570 \N 92 3205 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2324 2025-11-10 04:38:27.257921+00 2025-11-10 04:38:27.257929+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-10 12802 10567 \N 90 3201 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2325 2025-11-11 04:38:43.96842+00 2025-11-11 04:38:43.968429+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-11 12803 10568 \N 90 3204 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2326 2025-11-11 14:09:49.52681+00 2025-11-11 14:09:49.526816+00 f t laboratorio . . laboratorio \N 2026-02-11 9991 8265 \N 100 3084 {"studies": [], "medications": [], "specialities": []} +2327 2025-11-11 14:11:05.037667+00 2025-11-11 14:11:05.037673+00 f t laboratorio . . laboratorio \N 2026-02-11 12684 10475 \N 100 3210 {"studies": [], "medications": [], "specialities": []} +2328 2025-11-11 14:12:42.342037+00 2025-11-11 14:12:42.342042+00 f t laboratorio . . laboratorio \N 2026-02-11 12287 10146 \N 100 3189 {"studies": [], "medications": [], "specialities": []} +2329 2025-11-11 17:50:08.574924+00 2025-11-11 17:50:08.574932+00 f t x No se ingresó información No se ingresó información x 2026-02-11 9991 8265 \N 112 3083 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2330 2025-11-11 17:52:58.701347+00 2025-11-11 17:52:58.701352+00 f t extracción No se ingresó información No se ingresó información x 2026-02-11 9712 8096 \N 112 3038 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2331 2025-11-11 17:53:12.8875+00 2025-11-11 17:53:12.887508+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-11 797 912 \N 112 3020 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2332 2025-11-12 01:13:14.170293+00 2025-11-12 01:13:14.170298+00 f t Conmoción cerebral post trauma? Falta vacunación anual. Control EOG normal. Se golpeó y perdió el conocimiento hace 3 días. Luego de la caída, se recupera pero se observa que le falta fuerzas. Al día siguiente comportamiento normal. \N 2026-02-11 12702 10490 \N 92 3208 {"studies": [], "medications": [], "specialities": []} +2333 2025-11-12 01:21:51.235957+00 2025-11-12 01:21:51.235965+00 f t . Se solicita RX LL de columna cervical+ ecografía abdominal Tramadol + aumentar la frecuencia de fisioterapia Sensorio deprimido. 11 años. Postración lateral. Hace 10 días fue sometido a una orquidectomia por antecedentes de prostatomegalia. Hiporexia. Se encuentra en tratamiento con meloxivet tramadol pregabalina vitb. Artrin plus. \N 2026-02-11 12810 10572 \N 92 3233 {"studies": [], "medications": [], "specialities": []} +2367 2025-11-16 02:41:09.873017+00 2025-11-16 02:41:09.873024+00 f t Metástasis? Trauma? Infección? Indicó continuar con Spectryl y Prednisolona a dosis decrecientes. Se aplica tribiotic, dexametasona 0,5 mg/kg, dipirona, tramadol. Presenta edema en todo el MPI que es en el mismo que presenta el tumor interdigiral, se comenta la posibilidad de metástasis al ganglio regional \N 2026-02-15 10193 8460 \N 1 3277 {"studies": [], "medications": [], "specialities": []} +2334 2025-11-12 15:55:46.496672+00 2025-11-12 15:55:46.496677+00 f t Saludable con leve sobrepeso No se ingresó información No se ingresó información Vacunación anual 2026-02-12 12455 10288 \N 68 3155 {"recipes": [], "studies": [], "medications": [{"name": "FELOCELL CVR - Inyectable -", "user": null, "group": 16, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.886518-03:00", "updated_at": "2025-02-20T08:17:53.886526-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1158, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-11-05", "next_application_months": 12}, {"name": "PAUL - ANTIRRABICA - Inyectable -", "user": null, "group": 15, "active": true, "company": "PAUL", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.860418-03:00", "updated_at": "2025-02-20T08:17:53.860426-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1153, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2026-11-05", "next_application_months": 12}], "specialities": []} +2335 2025-11-12 15:58:44.145388+00 2025-11-12 15:58:44.145394+00 f t Vacunación previa guardería No se ingresó información No se ingresó información Vacunación sextuple anual. 2026-02-12 4512 3758 \N 68 3169 {"recipes": [], "studies": [], "medications": [{"name": "VANGUARD PLUS 5 + 4L + CV - Inyectable -", "user": null, "group": 16, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.964476-03:00", "updated_at": "2025-02-20T08:17:53.964482-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1174, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}], "specialities": []} +2336 2025-11-12 16:02:30.751255+00 2025-11-12 16:02:30.751263+00 f t Tricobezoare migrando. Controlar diuresis No se ingresó información No se ingresó información Tenesmo, molestias para defecar. Un vómito conserva apetito 2026-02-12 6358 5175 \N 68 3190 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2337 2025-11-12 16:50:34.624354+00 2025-11-12 16:50:34.624359+00 f t gastroenteritis posible causa renal ???\nSugiero AS para evaluar parte renal y hepatica. Dieta casera pollo y/o recovery\nIngestion de liquido si o si Aplico ranitidina, hepatone, pileran y diafin 2 inyectable\nIndico omeprazol 10 mg 1,5 comp cada 24 hs x 4 dias\nRecovery y gatorade manzana mc/ consulta por cuadro de anorexia y diarrea hace 2 dias.\nEOG: hidratacion ok, bajo peso, temp normal 38.3, saco mat fecal liquida sin sangre con termometro, mucoso. TLLC normal, mucosas rosadas. No presento vómitos. 2026-02-12 10879 9029 \N 107 3225 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2338 2025-11-12 17:22:19.714293+00 2025-11-12 17:22:19.714298+00 f t Laboratorio . . Laboratorio \N 2026-02-12 11855 9803 \N 100 3242 {"studies": [], "medications": [], "specialities": []} +2339 2025-11-12 17:25:31.346546+00 2025-11-12 17:25:31.346551+00 f t Laboratorio . . Laboratorio \N 2026-02-12 12802 10567 \N 100 3222 {"studies": [], "medications": [], "specialities": []} +2340 2025-11-12 17:27:42.599228+00 2025-11-12 17:27:42.599234+00 f t Laboratorio . . Laboratorio \N 2026-02-12 274 10354 \N 100 3168 {"studies": [], "medications": [], "specialities": []} +2341 2025-11-12 17:31:29.160393+00 2025-11-12 17:31:29.160402+00 f t Laboratorio . . Laboratorio \N 2026-02-12 12866 10618 \N 100 3217 {"studies": [], "medications": [], "specialities": []} +2342 2025-11-12 18:51:47.153984+00 2025-11-12 18:51:47.153989+00 f t . Dar omeprazol . Dieta pollo. Arroz blanco. Zanahoria hervida Se solicita análisis de sangre. Telemedicina. Para ver los resultados de los estudios. \nDos masas tumorales en bazo de 2 CM de diámetro aprox. Gastritis. Riñones seniles 2026-02-12 11855 9803 \N 114 3197 {"recipes": [], "studies": [{"id": 8, "name": "Perfil General Completo sin Orina"}], "medications": [], "specialities": []} +2343 2025-11-12 18:55:24.473675+00 2025-11-12 18:55:24.47368+00 f t Cistitis Que tome mucha agua Royal Canin S/O. Un mes.\nCisticalm cápsulas. Orina muy poco. Va al arenero y hace unas gotas 2026-02-12 12624 10427 \N 114 3187 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2344 2025-11-12 19:25:02.570816+00 2025-11-12 19:25:02.570826+00 f t No se ingresó información No se ingresó información No se ingresó información Estado gral. Bueno 2026-02-12 12624 10428 \N 114 3195 {"recipes": [], "studies": [], "medications": [{"name": "FELOCELL CVR - Inyectable -", "user": null, "group": 16, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "CAT", "created_at": "2025-02-20T08:17:53.886518-03:00", "updated_at": "2025-02-20T08:17:53.886526-03:00", "description": "Vacuna múltiple para gatos", "id_medicina": 1158, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}, {"name": "PAUL - ANTIRRABICA - Inyectable -", "user": null, "group": 15, "active": true, "company": "PAUL", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.860418-03:00", "updated_at": "2025-02-20T08:17:53.860426-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1153, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}], "specialities": []} +2368 2025-11-16 02:43:11.558463+00 2025-11-16 02:43:11.558468+00 f t EII? Neo? - Indicó hacer ecografía y sangre y con los resultados evaluar tratamiento. Comenta el propietario que realizaron muchos tratamientos y ninguno resultó para controlar la diarrea. Paciente presentan materia fecal líquida en asas intestinales. \N 2026-02-15 12857 10612 \N 1 3214 {"studies": [], "medications": [], "specialities": []} +2377 2025-11-16 20:25:30.986247+00 2025-11-16 20:25:30.986253+00 f t . Nueva consulta para evaluación de estudios médicos. Ecografía abdominal. (Evaluación de vías urinarias) + próstata + ASC+ AOC+control cardiovascular Paciente de 15 años con Debilidad de miembros posteriores. Apetito normal. Hidratación normal. Incontinencia urinaria. Materia fecal blanda. Tumor en lateral de la nariz. \N 2026-02-16 13436 11058 \N 92 3291 {"studies": [], "medications": [], "specialities": []} +2345 2025-11-12 19:28:09.416372+00 2025-11-12 19:28:09.416379+00 f t Tos de las perreras No se ingresó información Tribiotic y dexa. Cada 48 hs. Tos seca. Vacunas vencidas.\nNo tiene vacuna contra tos de las perreras. \nSale con paseador 2026-02-12 12684 10475 \N 114 3209 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2346 2025-11-13 12:00:35.677789+00 2025-11-13 12:00:35.677794+00 f t Parasitosis? Indico Aprax razas grandes 1 1/2 comp 3 dias seguidos y repetir una toma a los 15 30 y 45 dias. Indico analisis de sangre y orina y sugiero en proxima visita usar mepromacina Analisis de sangre y orina Aprax razas medianas Decaimiento desde hace 3 dias aprox. El paciente es agresivo frente a las maniobras, alerta, mucosas rosadas, unicos parametro que se pudo evaluar. Ultima desparasitacion hace un año, pipeta no al dia. Materia fecal blanda \N 2026-02-13 12510 10337 \N 101 3158 {"studies": [], "medications": [], "specialities": []} +2347 2025-11-13 13:48:48.402887+00 2025-11-13 13:48:48.402893+00 f t Sarcoma? IR? Dieta casera Omeprazol 20 mg en ayuno\nTramadol 75 mg cada 8 Hs\nPrednisolona 20 mg cada 24 hs Hace dos semanas que dejó de caminar. Tiene un tumor en la pata hace mas de dos meses y fue creciendo. Hace dos días lo quiere comer y tuvo episodios de vómitos. \nEOG: deprimido, fascie de dolor. mucosas rosadas, tllc mayor a 3 segundos. \nEOG: neoformacion en MP acompañado de edema. \nAtrofia muscular en ambos MPs\n\nSe sugiere extracción de sangre para evaluar estado actual.\nSe decide tratamiento paliativo. 2026-02-13 13088 10798 \N 113 3248 {"recipes": [], "studies": [], "medications": [{"name": "CERENIA x 20 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.766515-03:00", "updated_at": "2025-02-20T08:17:51.766521-03:00", "description": "Solución antiemética", "id_medicina": 641, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "TRAMADOL 50 mg INY x 50 cc - Inyectable -", "user": null, "group": 13, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.625987-03:00", "updated_at": "2025-02-20T08:17:53.625991-03:00", "description": "Inyectable", "id_medicina": 1105, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "COMPLEJO VITAMINICO x 100 cc - Solución -", "user": null, "group": 10, "active": true, "company": "J.M.", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.869974-03:00", "updated_at": "2025-02-20T08:17:51.869980-03:00", "description": "Solución vitamínica", "id_medicina": 667, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2348 2025-11-13 14:04:22.472581+00 2025-11-13 14:04:22.472587+00 f t . . . . \N 2026-02-13 13037 10754 \N 100 3243 {"studies": [], "medications": [], "specialities": []} +2349 2025-11-13 14:49:31.450043+00 2025-11-13 14:49:31.450047+00 f t urocultivo . . urocultivo \N 2026-02-13 11644 9637 \N 100 3184 {"studies": [], "medications": [], "specialities": []} +2350 2025-11-13 15:39:45.115193+00 2025-11-13 15:39:45.115199+00 f t Postración con cuidados del dolor y manejo higiénico Bañar y mantener limpia paciente y vendaje Si responde considerar antiinflamatorios y analgésico Geronte postarada, con daño por artrosis en tren posterior y dolor cervical. Orina y defeca sobre si. Lesiones en miembro posterior por motilarse por posible neuritis y dermatitis asociada 2026-02-13 12718 10507 \N 68 3194 {"recipes": [], "studies": [], "medications": [{"name": "DEXA 20 mg/ml x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "Richmond", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.011570-03:00", "updated_at": "2025-02-20T08:17:52.011576-03:00", "description": "Inyección de dexametasona", "id_medicina": 702, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 20MG iny x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.333071-03:00", "updated_at": "2025-02-20T08:17:53.333077-03:00", "description": "Inyección para problemas digestivos", "id_medicina": 1034, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2351 2025-11-13 15:41:55.936679+00 2025-11-13 15:41:55.936686+00 f t Saludable No se ingresó información Cumplir desparasitacion Cachorra sin síntomas, adoptada y clínicamente sin alteraciones.\nBuen score corporal, pelo brillante, auscultación sin alteraciones. 2026-02-13 12991 10715 \N 68 3227 {"recipes": [], "studies": [], "medications": [{"name": "TOTAL FULL CG x 15 ml - Suspensión -", "user": null, "group": 3, "active": true, "company": "Holliday", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.139706-03:00", "updated_at": "2025-02-20T08:17:51.139712-03:00", "description": "Suspensión antiparasitaria", "id_medicina": 491, "presentation": 5, "medication_type": 1, "medication_type_name": "Antiparasitario", "next_application_date": "2025-11-13", "next_application_months": 0}], "specialities": []} +2352 2025-11-13 15:42:45.239695+00 2025-11-13 15:42:45.2397+00 f t No se ingresó información No se ingresó información Perfil pre quirurgixo Extracción de sangre para pre quirúrgico 2026-02-13 12441 10274 \N 68 3150 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2369 2025-11-16 02:55:42.153498+00 2025-11-16 02:55:42.153505+00 f t iRC? . Se indica hacer un chequeo de sangre para evaluar el medio interno del paciente. Paciente normotermico, normohidratado. \nPresenta odontolitiasis pero no parece ser el causante de la anorexia. \N 2026-02-15 13117 10828 \N 1 3250 {"studies": [], "medications": [], "specialities": []} +2378 2025-11-16 20:30:35.073011+00 2025-11-16 20:30:35.073019+00 f t Odontolitiasis+ gingivitis Continuar con antibióticoterapia 5 días más (clavamox 250). Comenzar con Xmile Gel en 10 días. Limpieza dental. Extracción de molar. Ok EOG normal \N 2026-02-16 274 10354 \N 92 3254 {"studies": [], "medications": [], "specialities": []} +2353 2025-11-13 18:14:47.492944+00 2025-11-13 18:14:47.49295+00 f t Tos de la perreras No se ingresó información No se ingresó información Mucho mejor el miércoles solo tosió una vez 2026-02-13 12684 10475 \N 114 3223 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2354 2025-11-14 00:49:37.296855+00 2025-11-14 00:49:37.29686+00 f t Insuficiencia renal crónica+ hepatopatía+gastritis Eutanasia Omeprazol+sucralfsto+proteliv Teleconsulta. Sensorio deprimido. Diarrea y vómitos. Ecografía abdominal: gastritis aguda+insuficiencia renal, hepatopatía + dos nódulos en el brazo sugerente de neoplasia. ASC: insuficiencia renal+ FAS elevada++++ \N 2026-02-13 11855 9803 \N 92 3245 {"studies": [], "medications": [], "specialities": []} +2355 2025-11-14 00:52:46.734133+00 2025-11-14 00:52:46.734142+00 f t . . Eutanasia . \N 2026-02-13 11855 9803 \N 92 3255 {"studies": [], "medications": [], "specialities": []} +2356 2025-11-14 10:40:12.02159+00 2025-11-14 10:40:12.021597+00 f t No se ingresó información No se ingresó información No se ingresó información Extracción de sangre pre quirurgicos 2026-02-14 12441 10274 \N 68 3148 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2357 2025-11-14 10:47:59.53464+00 2025-11-14 10:47:59.534649+00 f t Neo mamaria/ Neo piel\nEnfermedad periodontal Odontobiotic para gingivitis actual. Resección quirúrgica de masa con estudios pre quirúrgicos previos:\nAnálisis de sangre\nRadiografía de tórax\nECG y ecocardiograma Rinitis crónica de posible base infecciosa, estable sin complicaciones clínicas.\nAuscultación s/p.\nNeo de 3cms aproximadamente de diámetro en zona de mama abdominal derecha. Única y de crecimiento medio progresivo.\n\nHalitosis y odontolitiasis 2026-02-14 3054 2662 \N 68 3249 {"recipes": [], "studies": [{"id": 2, "name": "Radiografía"}, {"id": 9, "name": "Perfil Prequirúrgico Hemostático"}, {"id": 12, "name": "Electrocardiograma"}], "medications": [], "specialities": []} +2358 2025-11-14 13:33:57.676716+00 2025-11-14 13:33:57.676722+00 f t PCR de erlichia para detectar infección activa y/o contagio. No se ingresó información Descenso de peso con dieta/ Paciente con sobrepeso, antecedentes de colitis y sensibilidad gastrointestinal.\nLe encontraron una garrapata, y hay otro perro en casa que tuvo erlichia. 2026-02-14 7277 5971 \N 68 3128 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2359 2025-11-14 13:44:17.528634+00 2025-11-14 13:44:17.528642+00 f t Laboratorio . . Laboratorio \N 2026-02-14 12803 10568 \N 100 3269 {"studies": [], "medications": [], "specialities": []} +2360 2025-11-14 14:23:51.852636+00 2025-11-14 14:23:51.852642+00 f t Cambios metabólicos en depósitos de grasa.\nIndico ecografía abdominal Ecografía de control Descenso de peso progresivo. Paciente con sobrepeso, hay varias neos en piel y subcutáneo en zona de gripa y abdominal, no están bien definidas. Sugieren depósitos de grasa.\nLnn popliteos reactivos. \nTos esporádica, auscultación estertores leves sin rales y taquicardia. 2026-02-14 384 456 \N 68 3261 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}], "medications": [], "specialities": []} +2361 2025-11-14 17:01:12.908646+00 2025-11-14 17:01:12.908654+00 f t . . . . \N 2026-02-14 12810 10572 \N 103 3239 {"studies": [], "medications": [], "specialities": []} +2362 2025-11-14 17:58:15.950774+00 2025-11-14 17:58:15.95078+00 f t . . . . \N 2026-02-14 12446 10278 \N 100 3199 {"studies": [], "medications": [], "specialities": []} +2363 2025-11-14 20:21:56.279217+00 2025-11-14 20:21:56.279222+00 f t . . . . \N 2026-02-14 12441 10274 \N 100 3149 {"studies": [], "medications": [], "specialities": []} +2364 2025-11-15 15:10:11.120793+00 2025-11-15 15:10:11.1208+00 f t Tos de las perreras Vacunar No se ingresó información Mucho mejor . Ánimo bien. Ya no tose 2026-02-15 12684 10475 \N 114 3271 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2365 2025-11-15 15:14:17.494752+00 2025-11-15 15:14:17.49476+00 f t No se ingresó información Desparasitar con moxidex plus Tribiotic y dexa. Dejo indicado. Que si no mejora dar Clavamox comprimidos. La tutora comenta que estornudo. Y tuvo algo de flema. 2026-02-15 10291 8544 \N 114 3241 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2366 2025-11-16 02:32:52.775561+00 2025-11-16 02:32:52.775566+00 f t Absceso Se indican limpiezas y curaciones. Continuar con Spectryl vía oral. Se aplica tribiotic, dipirona y tramadol. Paciente presenta un absceso en ventral de la mandíbula, se realiza drejnaje del mismo. \N 2026-02-15 13408 11039 \N 1 3284 {"studies": [], "medications": [], "specialities": []} +2370 2025-11-16 02:59:19.667616+00 2025-11-16 02:59:19.667622+00 f t - - Se aplica sextuple y antirabica Eog: s/p \N 2026-02-15 13071 10782 \N 1 3238 {"studies": [], "medications": [], "specialities": []} +2379 2025-11-16 22:26:07.41322+00 2025-11-16 22:26:07.413226+00 f t litiasis en vejiga? hiperplasia prostatica? hepato/esplenomegalia realizo orden para ecografia abdominal + orden para analisis de orina completa + relacion proteinuria/creatinina en orina aplico dexa a 0.5 mg/kg y dejo 2 jeringas con misma medicacion para aplicar 1 cada 24 hs canino macho entero mestizo 48 kg \nplan sanitario vencido ( vacunas y desparasitaciones)\nconsulta por hematuria 48 hs de evolucion.\ncome balanceado + banana + manzana + pollo.\nmantiene apetito con leve hiporexia\nrevision clinica\ncc 8/10\naus torax apagado, fc 110 lpm\npalpacion abdominal. abdomen distendido y marcada organomegalia en epigastrio ( hepato/espenomegalia) \nnormotermico\nnormohidratado \N 2026-02-16 12287 10146 \N 88 3116 {"studies": [], "medications": [{"name": "DEXA 20 mg/ml x 20 cc", "id_medicina": "702", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}], "specialities": [{"id": null, "name": "41"}, {"id": null, "name": "76"}]} +2380 2025-11-16 22:35:28.589528+00 2025-11-16 22:35:28.589537+00 f t gingitivis, cistitis por cristales? sugiero realizar cambio de balanceado ( excelent urinary) + orden para AOC + UPC \nevaluar hacer ecografia abdominal indico esquema de prednisolona en gotas 5 dias a 0,5 mg/kg y luego a dias alternos + stomagyl por 10 dias felino macho castrado comun europeo 7 años 4.5 kg\nconsulta por hematuria . hace poco tiempo fue atentido por una colega que le indicó cisticalm + meloxicam en gotas \ncome urinary de baja calidad. mantiene apetito pero la tutora me comenta que está notando dificultad para comer su balceado\nrevisicion clinica\naus s/p\npalpacion abdominal, vejiga con moderado contenido. abdomen tenso en hipogastrio\npelo hirsuto\nnormohidratado\ngingivitis marcada en encias de ambas maxilas , halitosis \N 2026-02-16 10559 10123 \N 88 3112 {"studies": [], "medications": [], "specialities": [{"id": null, "name": "76"}]} +2381 2025-11-16 22:41:34.417826+00 2025-11-16 22:41:34.417832+00 f t - - indico desparasitacion con moxidex plus repitiendo esquema a los 15 dias canino macho akita 9 años 30 kg entero\nconsulta por revision para vacunacion anual + desparasitacion interna y externa.\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermico\nnormohidratado \N 2026-02-16 12388 10233 \N 88 3137 {"studies": [], "medications": [{"name": "PAUL - ANTIRRABICA", "id_medicina": "1153", "medication_type_name": "Vacuna", "next_application_date": "2026-11-16", "next_application_months": 12}, {"name": "VANGUARD DA2P+L", "id_medicina": "1172", "medication_type_name": "Vacuna", "next_application_date": "2026-11-16", "next_application_months": 12}, {"name": "MOXIDEX PLUS x 15 comp. (5 bls.)", "id_medicina": "295", "medication_type_name": "Antiparasitario", "next_application_date": "2025-11-16", "next_application_months": 0}], "specialities": []} +2382 2025-11-16 22:43:49.198286+00 2025-11-16 22:43:49.198291+00 f t - - - canino hembra chihuahua 4 meses\nrevision clinica para refuerzo de vacuna sextuple. come royal canin puppy y esta correctamente desparasitada con toltrazol plus\naus s/p\npalpacion abdominal s/p\nnormotermica\nnormohidratada \N 2026-02-16 10870 9025 \N 88 3096 {"studies": [], "medications": [{"name": "PROVIDEAN VIRATEC 9 4L", "id_medicina": "1166", "medication_type_name": "Vacuna", "next_application_date": "2026-11-16", "next_application_months": 12}], "specialities": []} +2383 2025-11-16 22:51:10.865637+00 2025-11-16 22:51:10.865642+00 f t Dermatitis alergica por pulgas explico los 3 puntos que hay que tener en cuenta para el tratamiento y control de pulgas .\nsugiero cambio de pipeta por pastilla power aplico rani dexa tribiotic y dejo jeringas para aplicar misma medicacion cada 48 hs canino hembra caniche entera 8 años 3.5 kg\nconsulta por lesiones en la zona del anca y miembros posteriores (se muerde constantemente) . tiene pipeta al dia \nconvive con 2 gatos \nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermica normohidratada\npresenta en la zonas del anca y miembros posteriores lesiones alopesicas costrosas pruriginosas. presencia de pulgas \N 2026-02-16 12433 10264 \N 88 3141 {"studies": [], "medications": [{"name": "DEXA 4 iny x 50 cc", "id_medicina": "704", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "Tribiotic", "id_medicina": "1192", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "RANITIDINA 20MG iny x 50 cc", "id_medicina": "1034", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}], "specialities": []} +2384 2025-11-16 22:59:43.109792+00 2025-11-16 22:59:43.109798+00 f t insuficiencia renal sugiero realizar perfil general completo + aoc + upc + ecografia abdominal realizo pasaje de ringer lactato subcutaneo + vit b + rani + novotioc + meloxivet + tramdol e indico alimentacion palatable canino hembra castada 17 años 5 kg\nconsulta por dificultad para incorporarse y mantenerse en estacion, anorexia de 1 dia de evolucion y decaimiento.\ncome dieta natural formulada por un veterinario.\nhace unos meses le hicieron estudios de sangre y orina y estaba con valores de urea y creatinina por encima de los valores de referencia, hicieron tratamiento con la veterinaria y mejoro. \nrevision clinica\naus s/p\npalpacion abdominal, abdomen blando, renomegalia ?\ndeshidratacion 7%\nnormotermica \N 2026-02-16 12527 10350 \N 88 3166 {"studies": [], "medications": [{"name": "RANITIDINA 20MG iny x 50 cc", "id_medicina": "1034", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "NOVOTIOC INY. x 50 cc", "id_medicina": "907", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "TRAMADOL 50 mg INY x 50 cc", "id_medicina": "1105", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "SOL. RINGER LACTATO x 500 ml.", "id_medicina": "1069", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "MELOXIVET 5 mg INY. x 10 cc", "id_medicina": "872", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}], "specialities": [{"id": null, "name": "41"}, {"id": null, "name": "76"}]} +2392 2025-11-16 23:48:12.889117+00 2025-11-16 23:48:12.889122+00 f t . elevar el comedero e incorporar fuente de agua para gatos para incrementar el consumo de agua alimento royal renal por al menos 30 dias y luego repetir analisis de orina completo para evaluar respuesta al tratamiento telemedicina para revision de estudios solicitados .\nla consulta inicial fue por vomitos diarios .\nindico cambio de alimento por royal canin renal, por presencia de cristales en orina \N 2026-02-16 11302 9364 \N 88 3092 {"studies": [], "medications": [], "specialities": []} +2385 2025-11-16 23:06:48.371207+00 2025-11-16 23:06:48.371215+00 f t ira alimentacion palatable e ir variando el ofrecimiento del alimento repito pasaje de suero + medicacion y dejo suero y medicacion a los tutores para que la apliquen ellos \nindico que comiencen con sucravet cada 12 hs acudo a domicilio para extraccion de sangre.\nla paciente comio un poco de la dieta que le fueron variando , mantiene consumo de agua y mejoro levemente el animo \N 2026-02-16 12527 10350 \N 88 3173 {"studies": [], "medications": [{"name": "SOL. RINGER LACTATO x 500 ml.", "id_medicina": "1069", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "RANITIDINA 2 % x 50 cc", "id_medicina": "1033", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "NOVOTIOC INY. x 50 cc", "id_medicina": "907", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "MELOXIVET 5 mg INY. x 10 cc", "id_medicina": "872", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "TRAMADOL 50 mg INY x 50 cc", "id_medicina": "1105", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}], "specialities": [{"id": null, "name": "80"}]} +2386 2025-11-16 23:08:55.211045+00 2025-11-16 23:08:55.211052+00 f t ehrichia positiva - indico que comience con ranitidina cada 12 hs por 30 dias + doxiciclina 100 mg cada 24 hs por 30 dias revision de estudios solicitados\npositiva a ehrichia \N 2026-02-16 11180 9271 \N 88 3188 {"studies": [], "medications": [], "specialities": []} +2387 2025-11-16 23:11:59.90798+00 2025-11-16 23:11:59.907985+00 f t irc interconsulta con nefrologo indico continuar con el ringer sc + el sucravet.\nexplico el pronostico de la paciente y ofrezco como alternativa evaluar internarla para intentar bajar valores renales se explica el cuadro de la paciente, ya que los valores renales volvieron a subier por encima de los valores de referencia y el upc le dio incrementado notoriamente \N 2026-02-16 12527 10350 \N 88 3196 {"studies": [], "medications": [], "specialities": []} +2388 2025-11-16 23:25:20.989428+00 2025-11-16 23:25:20.989434+00 f t pancreatitis? ce ? solicito ecografia abdominal aplico ranitidina novotioc y dexa y sugiero cambiar la oferta de alimento / alimentacion palatable canino macho golden retriver entero 10 meses 28 kg \nconsulta por anorexia de al menos 3 dias de evolucion. Lo estuvo llevando a una veterinaria pero no observaron mejoria.\nNo presenta vomitos ni diarrea. ultima deposicion ayer . En la plaza juega normalmente pero en la casa esta decaido rechazando el alimento \nrevision clinica\naus s/p 88 lpm\nnormotermico 38.6 \nnormohidratado\nmucosas rosas tllc 1 \npalpacion abdominal, organomegalia en epigastrio ( esplenomegalia) leve algia en dicha zona, resto del abdomen s/p \N 2026-02-16 12802 10567 \N 88 3200 {"studies": [], "medications": [{"name": "RANITIDINA 20MG iny x 50 cc", "id_medicina": "1034", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "NOVOTIOC INY. x 50 cc", "id_medicina": "907", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "DEXA 20 mg/ml x 20 cc", "id_medicina": "702", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}], "specialities": [{"id": null, "name": "41"}]} +2389 2025-11-16 23:28:23.094717+00 2025-11-16 23:28:23.094721+00 f t . esperamos resultados de sangre para evaluar como continuamos indico ranitidina cada 12 hs por al menos 10 dias + prednisolona a 0,5 mg/kg cada 24 hs por 5 dias y luego a dias alternos .\nesta comiendo la dieta palatable unicamente en la plaza , en el domicilio el paciente sigue hiporexico saco sangre para perfil general para evaluar medio interno ya que en la ecografia abdominal se observó gastritis y esplenomegalia (sumo al estudio de sangre PCR ehrichia) \N 2026-02-16 12802 10567 \N 88 3221 {"studies": [], "medications": [], "specialities": []} +2390 2025-11-16 23:36:27.765114+00 2025-11-16 23:36:27.765119+00 f t gastroenteritis parasitaria? alimenticia?viral? indico dieta de pollo con pure zanahoria/calabaza aplico ranitidina + dexa e indico que comiencen con ranitidina via oral cada 12 hs por 10 dias + giacoccide cada 12 hs por 10 dias canino macho mestizo 25 kg 4 años aproximadamente\nconsulta por deposiciones hemorragicas evolucion 24 hs \nLos tutores me comentan que estaban en la costa cuando el paciente comenzó con los sintomas y no pudieron atenderlo ya que no encontraron veterinaria abierta. Presentó vomitos . Mantiene el animo, activo. No le ofrecieron de comer desde ayer por el cuadro que manifesto.\nrevision clinica\naus s/p\nnormotermico 38.2\nnormohidratado \npalpacion abdominal, abdomen tenso, algia leve ( paciente inquieto) asas intestinales inflamadas \N 2026-02-16 11255 9334 \N 88 3236 {"studies": [], "medications": [{"name": "DEXA 4 iny x 50 cc", "id_medicina": "704", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "RANITIDINA 20MG iny x 50 cc", "id_medicina": "1034", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}], "specialities": []} +2391 2025-11-16 23:43:11.105671+00 2025-11-16 23:43:11.105678+00 f t impaccion de sacos anales . aplico ranitidina dexa y tribiotic y dejo inyectables para que le apliquen los tutores.\nrealizo vaciado de ambos sacos anales obteniendo una secrecion verdosa muy mal oliente + limpieza con iodo al 50$\nindico desparasitacion con moxidex plus repitendo a los 15 dias ´+ pipeta para parasitos externos canino macho entero yorkshire 2 años 7.200 kg \ncome royal canin + dieta natural\nconsulta por lamido de region anal.\nrevision clinica\naus /p\npalpacion abdominal s/p\nnormotermico\nnormohidratado\npresenta impaccion de los sacos anales. \N 2026-02-16 12819 10583 \N 88 3215 {"studies": [], "medications": [{"name": "RANITIDINA 2 % x 50 cc", "id_medicina": "1033", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "DEXA 20 mg/ml x 20 cc", "id_medicina": "702", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}, {"name": "Tribiotic", "id_medicina": "1192", "medication_type_name": "Medicamento", "next_application_date": "2025-11-16", "next_application_months": 0}], "specialities": []} +2393 2025-11-16 23:53:09.961404+00 2025-11-16 23:53:09.961415+00 f t alopecia psicogenica? colocar pipeta antipulgas y feromonas indico desparasitacion con moxidex plus repitiendo esquema a los 15 dias \nla tutora se mudo mas de 10 veces el ultimo mes, indico feromonas en el ambiente - felino macho castrado comun europeo 4 kg \ncome royal indoor y fit \nvacunas al dia \nconsulta por zonas de alopecia en el anca y en lateral de flancos y dorsal de la cola . se lame constantemente la zona . come normalmente, no presenta vomitos ni diarrea.\nrevision clinica\naus s/p\npalpacion abdominal s/p\nnormotermico\nnormohidratado\nse observa en la zonas antes mencionada alopecia sin alteraciones en piel . no se observan pulgas \N 2026-02-16 12819 10581 \N 88 3215 {"studies": [], "medications": [], "specialities": []} +2394 2025-11-17 15:18:47.554443+00 2025-11-17 15:18:47.554451+00 f t Ecografia . . Ecografia \N 2026-02-17 13291 10951 \N 90 3273 {"studies": [], "medications": [], "specialities": []} +2395 2025-11-17 15:23:01.452752+00 2025-11-17 15:23:01.452757+00 f t De acuerdo a lo conversado, presuntivamente se puede estar presentando una falta de adaptabilidad al nuevo hogar, cabe aclarar que no se pudo determinar si es agresión defensiva u ofensiva, ya que los episodios se dan sin que la tutora pueda observar qué los ocasiona.. Tener siempre presente la naturaleza de la especie, lo que permitirá comprender más sus conductas. Su bienestar depende de que les permitamos expresarlas, sin que ello vaya en perjuicio de otro miembro de la familia, tanto animal como humano. Enriquecimiento ambiental: Colocar estantes en altura, cajas donde puedan esconderse, que el número de bandejas sanitarias sea una más del número de gatos convivientes, en lugares de poco paso y ausencia de ruidos,\nJuego que simule su naturaleza cazadora: Con cañita y pluma u otro objeto en el extremo de la cuerda, estimularlo a que persiga la presa y finalmente que pueda atraparla.\nHasta nuevo control y poder ver evolución del paciente, no se indica tratamiento farmacológico. Hace 5 meses se mudaron, a partir de allí empezaron a presentarse conductas agresivas de Loki hacia Blader. el otro macho de los convivientes, hay tres hembritas más que conforman el grupo. 2025-12-11 12804 10569 \N 105 3211 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2396 2025-11-17 15:23:05.510486+00 2025-11-17 15:23:05.510491+00 f t Ecografia . . Ecografia \N 2026-02-17 12160 10053 \N 90 3278 {"studies": [], "medications": [], "specialities": []} +2397 2025-11-17 15:55:56.604008+00 2025-11-17 15:55:56.604013+00 f t . . Eco abdominal . \N 2026-02-17 13103 10814 \N 103 3252 {"studies": [], "medications": [], "specialities": []} +2402 2025-11-19 14:11:16.840496+00 2025-11-19 14:11:16.840502+00 f t perfil gral completo . . perfil gral completo \N 2026-02-19 1734 10411 \N 100 3183 {"studies": [], "medications": [], "specialities": []} +2398 2025-11-17 19:00:15.240571+00 2025-11-17 19:00:15.24058+00 f t Ver informe adjunto Ver informe adjunto Ver informe adjunto Ver informe adjunto 2026-02-17 10203 8472 \N 115 2955 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2399 2025-11-19 04:06:34.887006+00 2025-11-19 04:06:34.887015+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-19 13674 11276 \N 90 3315 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2400 2025-11-19 06:34:57.783339+00 2025-11-19 06:34:57.783345+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-19 13436 11058 \N 90 3300 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2401 2025-11-19 13:25:23.218395+00 2025-11-19 13:25:23.218403+00 f t Extracción sangre para Vilef. Extracción sangre para Vilef. Extracción sangre para Vilef. Consulta x extracción sangre para Vilef. Sed, apetito, micción y defecación normales. Palpación abdominal sin particularidades Auscultación cardíaca normal. 2026-02-19 12474 10308 \N 70 3162 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2403 2025-11-19 14:12:39.330019+00 2025-11-19 14:12:39.330028+00 f t Perfil geronte felino . . Perfil geronte felino \N 2026-02-19 13490 11121 \N 100 3296 {"studies": [], "medications": [], "specialities": []} +2404 2025-11-19 17:57:05.062291+00 2025-11-19 17:57:05.0623+00 f t No se ingresó información No se ingresó información No se ingresó información Consulta por posible dolor en las patas. Clio presenta un soplo 3-4/6 con tórax despejado. Dolor en columna y prurito en piel alrededor de la oreja por pequeños cortes hechos en la peluquería. Aplique dexametasona, dipirona y tramadol. Doy orden para cardiología, mientras evitar el calor excesivo y el ejercicio 2026-02-19 12093 9998 \N 80 3091 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2405 2025-11-19 18:20:04.165434+00 2025-11-19 18:20:04.165442+00 f t No se ingresó información No se ingresó información No se ingresó información Eog sol. Aplicó vacuna triple felina y antirrabica 2026-02-19 11952 9874 \N 80 3069 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2406 2025-11-20 00:13:09.956527+00 2025-11-20 00:13:09.956531+00 f t Lipoma? Sobrepeso. Indico control cardiologico con presion arterial, ecografia abdominal y analisis de orina y sangre. Dejo ordenes. No Eog: mucosas rosadas, hidratada, sensorio alerta. Auscultacion cardiaca no escucho soplos pero si ruidos algo apagados (CMH?) vacunas al dia desparasitación al dia. Convive con un perro. Come ad libitum, esta con sobrepeso sugiero consulta con nutricionista. Presenta una masa que a la palpacion impresiona lipoma en flanco derecho, segun la posicion deja de palparse. La tutora refiere a otras masas que no encuentro. \N 2026-02-19 13402 11037 \N 101 3283 {"studies": [], "medications": [], "specialities": []} +2407 2025-11-20 00:17:20.243412+00 2025-11-20 00:17:20.243418+00 f t Control de sangre y orina Control cardiologico, analisis de sangre y orina No Eog sensorio alerta, mucosas rosadas, ausc s/p aunque algo apagados los ruidos, tiene antecedentes de cirugia de vejiga (litos de oxalato de calcio). El gato tiene sobrepeso, PESA 7.5/8 kg (no 5.como ella comento) se pone agresivo frente a maniobras, se extrajo sangre para bioquimica y glucemia (no se pudo continuar para muestra para hemograma) \N 2026-02-19 308 365 \N 101 3264 {"studies": [], "medications": [], "specialities": []} +2408 2025-11-20 00:57:52.152672+00 2025-11-20 00:57:52.152677+00 f t . recomiendo hacer chequeo de sangre + aoc + upc para evaluar posible cambio de alimento indico desparasitacion con moxidex plus repitiendo a los 15 dias . felino macho castrado comun europeo 8kg 8 años.\nconsulta a domicilio para revision clinica y vacunacion anual\ndesparasitaciones internas vencidas\ncome royal canin so indicado hace al menos 2 años cuando fue atendido por obstruccion vias urinarias ( estuvo hospitalizado 2 dias) desde entonces come el SO.\nrevision clinica\ncc 7.5-8/10\naus s/p\nnormotermico\nnormohidratado\npalpacion abdominal, abdomen tenso, paciente inquieto. \N 2026-02-19 13437 11059 \N 88 3290 {"studies": [], "medications": [{"name": "PAUL - ANTIRRABICA", "id_medicina": "1153", "medication_type_name": "Vacuna", "next_application_date": "2026-11-19", "next_application_months": 12}, {"name": "FELOCELL CVR", "id_medicina": "1158", "medication_type_name": "Vacuna", "next_application_date": "2026-11-19", "next_application_months": 12}], "specialities": [{"id": null, "name": "76"}]} +2409 2025-11-20 01:09:06.230114+00 2025-11-20 01:09:06.230123+00 f t irc/diabetes dejo orden para complementar estudios solicitados. sugiero realizar\necografia abdominal + aoc + upc\nsugiero fuente de agua para gatos sacos sangre para perfil general completo y realizo pasaje de ringer lactato sc felino macho castrado comun europeo 15-16 años 3.6 kg\nvisita para extraccion de sangre para perfil general completo indicado por una colega del grupo de Amar.\ncome gastrointestinal de royal. mantiene apetito.\ndesparasitaciones internas vencidas .\nrevision clinica\naus s/P\n2.5.3/10 cc ( caquexia)\ndeshidratacion 7%\npalpacion abdominal . renomegalia, abdomen blando , no manifiesta dolor/algia. \N 2026-02-19 1734 10411 \N 88 3182 {"studies": [], "medications": [], "specialities": []} +2411 2025-11-20 01:36:47.491051+00 2025-11-20 01:36:47.491056+00 f t . . aplico triple felina e indico desparasitacion con moxidex plus repitiendo a los 15 dias felino hembra castrada bengali \nvisita a domicilio para vacunacion anual\nLa tutora me comenta que tiene antecedentes de acné felino , problemas en piel.\nrevision clinica\n5/9 cc\naus s/p\npalpacion abdominal s/p\nnormohidratada \N 2026-02-19 13457 11080 \N 88 3292 {"studies": [], "medications": [], "specialities": []} +2412 2025-11-20 01:43:47.523287+00 2025-11-20 01:43:47.523295+00 f t . . aplico triple felina e indico desparasitacoin con moxidex plus repitiendo a los 15 dias . indico desparasitacion externa con pipeta fipro de labyes felino macho castrado comun europeo 4 años 4.3kg\nrevision clinica para vacunacion anual + desparasitacion interna y externa.\ncome proplan\nconvive con 3 gatos. no sale al exterior\nrevision clinica\naus s/p\nnormohidratado\npalpacion abdminal s/p \N 2026-02-19 13457 11083 \N 88 3292 {"studies": [], "medications": [], "specialities": []} +2413 2025-11-20 01:47:06.966275+00 2025-11-20 01:47:06.966279+00 f t . . aplico triple felina e indico desparasitacion con moxidex plus repitiendo a los 15 dias . indico desparasitacion externa con fipro de Labyes. felino hembra castrada comun europeo 4 años 5 kg\nvisita a domicilio revision + vacunacion anual + desparasitacion interna y externa.\ncome proplan adulto\nconvive con 3 gatos\nno sale al exterior\nrevision clinica\naus s/p\npalpacion abodminal s/p\nnormohidratada\ncc 6/9 \N 2026-02-19 13457 11081 \N 88 3292 {"studies": [], "medications": [], "specialities": []} +2410 2025-11-20 01:29:15.874929+00 2025-11-20 01:29:15.874935+00 f t . . aplico triple felina e indico desparasitacion con moxidex plus repitiendo a los 15 dias. indico desparasitacion externa con pipeta fipro. felino hembra castrada comun europeo 6.2 kg 4 años \nvisita a domicilio para revision + vacunacion y desparasitacion interna y externa.\nconvive con 3 gatos. no sale al exterior.\ncome proplan gato adulto\nrevision clinica\naus /P\npalpacion abdominal s/p\nnormohidratada\ncc 6/9 \N 2026-02-19 13457 11082 \N 88 3292 {"studies": [], "medications": [], "specialities": []} +2414 2025-11-20 02:39:16.900056+00 2025-11-20 02:39:16.900061+00 f t Cistitis de mayor atención, seguramente paciente renal. En función de evolución y estudio puede requerir más análisis complementarios. Suplementar con Urovier o Cisticalm. Paciente geronte con oliguria y vómitos.\nSignos de cistitis. Bajo score corporal y mantiene apetito. \nCuadro inflamatorio/ con antecedentes come urinary. Tomo muestra de orina para análisis completo. 2026-02-19 13661 11265 \N 68 3318 {"recipes": [], "studies": [], "medications": [{"name": "MELOXIVET 5 mg INY. x 10 cc - Inyectable -", "user": null, "group": 6, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.701414-03:00", "updated_at": "2025-02-20T08:17:52.701419-03:00", "description": "Inyección antiinflamatoria", "id_medicina": 872, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2423 2025-11-20 17:45:58.369207+00 2025-11-20 17:45:58.369212+00 f t No se ingresó información No se ingresó información Diafin. Dexa. Indico desparasitar con moxidex plus. Y poner pipeta antipulgas Consulta porque tiene diarreas. \nSe rasca. 2026-02-20 703 820 \N 114 3322 {"recipes": [], "studies": [], "medications": [{"name": "DIAFIN 2 x 20 cc - Solución -", "user": null, "group": 8, "active": true, "company": "Konig", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.074307-03:00", "updated_at": "2025-02-20T08:17:52.074313-03:00", "description": "Solución para problemas digestivos", "id_medicina": 719, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "BechLab", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.018876-03:00", "updated_at": "2025-02-20T08:17:52.018882-03:00", "description": "Inyección de dexametasona", "id_medicina": 704, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2415 2025-11-20 03:08:17.435064+00 2025-11-20 03:08:17.43507+00 f t ERC, enf intest inflamat, linfoma int. De mejorar continúa ambulatorio, si no hay cambios en el día de hoy, requiere internación Y SF SC Hace unos días tuvo un episodio de sx GE tratados en otra vete con medicación inyectable sin estudios realizados. Come comida casera, hizo un cambio de dieta y recayó. Presenta vómitos, diarrea, pérdida de peso, anorexia, decaimiento, sensorio deprimido, mucosas pálidas, deshidratación, inflamación intestinal, abdomen blando a la palpación, ausc s/p. 2026-02-20 13744 11337 \N 91 3319 {"recipes": [], "studies": [{"id": 8, "name": "Perfil General Completo sin Orina"}, {"id": 1, "name": "Ecografia"}], "medications": [{"name": "CERENIA x 20 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "Zoetis", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:51.766515-03:00", "updated_at": "2025-02-20T08:17:51.766521-03:00", "description": "Solución antiemética", "id_medicina": 641, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "RANITIDINA 2 % x 50 cc - Solución -", "user": null, "group": 8, "active": true, "company": "KUALCOS", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.328896-03:00", "updated_at": "2025-02-20T08:17:53.328905-03:00", "description": "Solución para problemas digestivos", "id_medicina": 1033, "presentation": 7, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DIPIRONA CHINFIELD iny. x 100 ml - Inyectable -", "user": null, "group": 6, "active": true, "company": "", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.097282-03:00", "updated_at": "2025-02-20T08:17:52.097288-03:00", "description": "Inyección de dipirona", "id_medicina": 725, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "VITAMINA B 12 x 50000 AMP.x 50 cc - Inyectable -", "user": null, "group": 8, "active": true, "company": "NORT", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.778696-03:00", "updated_at": "2025-02-20T08:17:53.778704-03:00", "description": "Inyectable", "id_medicina": 1137, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2416 2025-11-20 06:11:17.485764+00 2025-11-20 06:11:17.485769+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-20 13766 11356 \N 90 3326 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2417 2025-11-20 06:34:55.794366+00 2025-11-20 06:34:55.794371+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-20 13646 11252 \N 90 3324 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2418 2025-11-20 16:14:55.650472+00 2025-11-20 16:14:55.650479+00 f t No se ingresó información Se dejó colocado la vía ya que en intentos anteriores no pudieron encontrar la vena. Aconsejo cuidar que no se salga y realizar la siguiente fluidoterapia por esa via Se realizó fluidoterapia con solución fisiológica 0.9% 500ml de manera endovenosa luego de colocar la vía en miembro anterior izquierdo Paciente con nefrectomia realizada hace una semana, estuvo internado y luego se realizó solicito fluidoterapia en domicilio. \nEl paciente se encuentra estable, alerta, come y bebe sin inconvenientes, lleva un post quirúrgico muy bueno 2025-11-21 13352 11001 \N 121 3330 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2419 2025-11-20 16:42:41.713944+00 2025-11-20 16:42:41.71395+00 f t No se ingresó información No se ingresó información No se ingresó información Eog normal 2026-02-20 13168 10863 \N 21 3256 {"recipes": [], "studies": [], "medications": [{"name": "PAUL - ANTIRRABICA - Inyectable -", "user": null, "group": 15, "active": true, "company": "PAUL", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:53.860418-03:00", "updated_at": "2025-02-20T08:17:53.860426-03:00", "description": "Vacuna contra la rabia", "id_medicina": 1153, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna"}], "specialities": []} +2420 2025-11-20 17:28:37.227175+00 2025-11-20 17:28:37.227182+00 f t Laboratorio . . Laboratorio \N 2026-02-20 7443 6127 \N 100 3317 {"studies": [], "medications": [], "specialities": []} +2421 2025-11-20 17:33:02.239273+00 2025-11-20 17:33:02.239279+00 f t No se ingresó información Si no orina llevarlo a clínica a qué le pongan la sonda Tribiotic. Dexametasona. Cisticalm cápsulas.royal Canin S/O. Fue castrado hace una semana.rescatado de la calle. Después de la castración orina de a gotitas lo llevaron a panda le vaciaron la vejiga.\n Hoy vómito 2026-02-20 12696 11148 \N 114 3301 {"recipes": [], "studies": [{"id": 1, "name": "Ecografia"}], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXAMETASONA 4 mg 2 fcos x 20 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "LAMAR", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.051905-03:00", "updated_at": "2025-02-20T08:17:52.051913-03:00", "description": "Inyección de dexametasona", "id_medicina": 713, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2422 2025-11-20 17:35:54.979432+00 2025-11-20 17:35:54.979437+00 f t No se ingresó información No se ingresó información Segunda dosis de tribiotic y dexa El martes tuvo que llevarlo a la clínica y le vaciaron la vejiga . Le dieron para que tome. Gabapentina y diazepan 2026-02-20 12696 11148 \N 114 3306 {"recipes": [], "studies": [], "medications": [{"name": "Tribiotic - Inyectable -", "user": null, "group": 9, "active": true, "company": null, "deleted": false, "pet_type": "ALL", "created_at": "2025-09-22T14:07:12-03:00", "updated_at": "2025-09-22T14:07:12-03:00", "description": "Antibiótico de amplio espectro", "id_medicina": 1192, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}, {"name": "DEXA 4 iny x 50 cc - Inyectable -", "user": null, "group": 11, "active": true, "company": "JM", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:52.022366-03:00", "updated_at": "2025-02-20T08:17:52.022372-03:00", "description": "Inyección de dexametasona", "id_medicina": 705, "presentation": 10, "medication_type": 2, "medication_type_name": "Medicamento"}], "specialities": []} +2424 2025-11-20 22:22:33.311167+00 2025-11-20 22:22:33.311172+00 f t Animal terminal No se ingresó información Eutanasia Vomitos y diarrea. Falta de apetito 2026-02-20 12999 11490 \N 121 3347 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2425 2025-11-20 22:27:39.682062+00 2025-11-20 22:27:39.682067+00 f t Cistitis tratada en veterinaria\nFractura de tarso\nDisfunción nerviosa Seguir con medicación según indicaron en veterinaria hasta nuevo control \nEvaluar movilidad y mejoría del miembro en las próximas 24/48 horas Aplicó inyectable 4mg de dexametasona + tramadol\nSolicito rx de tarso mpi L-L y V-D para descartar fractura de tarso Cistitis\nClaudicación en miembro posterior izquierdo 2026-02-20 13916 11470 \N 121 3343 {"recipes": [], "studies": [{"id": 2, "name": "Radiografía"}], "medications": [], "specialities": []} +2426 2025-11-20 23:00:14.992353+00 2025-11-20 23:00:14.992381+00 f t No se ingresó información No se ingresó información No se ingresó información Toma de presión \nPAs: 137mmhg\nPAd: 82mmhg\n\nNormotenso 2026-02-20 13305 10959 \N 113 3276 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2428 2025-11-21 12:41:01.580185+00 2025-11-21 12:41:01.580194+00 f t Laboratorio . . LAboratorio \N 2026-02-21 9712 8096 \N 100 3336 {"studies": [], "medications": [], "specialities": []} +2429 2025-11-21 13:05:08.566431+00 2025-11-21 13:05:08.566441+00 f t Posible encefalopatía hepática o renal, Enfermedad por hemos parásitos, Insuficiencia renal aguda/ cronica Sugiero realizar control cardiológico chequeo general completo de sangre con orina completa y ecografía abdominal Realizo tratamiento inyectable con penicilina erro floxacina dexa metazona ranitidina trama doll acido tioctico, 13 años macho entero la tutora solicita consulta porque presenta psicnología neurológica . Mucosas hiperémicas tiempo de llenado capilar lento presenta cianos y ser la lengua cuando se le coloca la correa, ataxia.. Temperatura 39,2° takinea no presentó vómitos ni diarrea adomenten sonorrexia moderada le dan alimento excelente y casero con 1 huevo. No se puede ocultar correctamente el corazón. 2026-02-21 13215 10900 \N 21 3266 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2430 2025-11-21 13:13:39.497334+00 2025-11-21 13:13:39.497343+00 f t Huperglucemia insuficiencia hepática, enfermedad renal crónic. Pronóstico reservado indicó realizar chequeo general de sangre y orina completa y ecografía abdominal. Control en 24 horas. Realizo fluido terapia endovenosa con ringer la tato y solución fisiológica, Medio en forma inyectable con doxiciclina dexa metazona ha sido dióptico vitamina B tramadol. Macho entero de aproximadamente 10 años, Presenta sinología neurológica no puede mantenerse en estación. En tratamientos previos lo medicaron con urso marina, Posible insuficiencia/ renal\nTambién estuvo en tratamiento por hiperglucemia, no actualmente, No le dan nada. Presenta abdomen tenso hepato i es pleno megalia mucosas rosadas, Deshidratación de 10% aproximadamente, Sensorio desconectado del medio. 2026-02-21 12281 10142 \N 21 3121 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2431 2025-11-22 05:53:22.596264+00 2025-11-22 05:53:22.59627+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-22 11644 9637 \N 90 3351 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2432 2025-11-22 07:05:14.440717+00 2025-11-22 07:05:14.440728+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-22 14017 11560 \N 90 3354 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2433 2025-11-22 14:57:18.056833+00 2025-11-22 14:57:18.056838+00 f t Conjuntivitis. Ofrecer más agua con bebedero automático. Colirio antibiótico con esteroides. 1 gota en el ojo afectado c/8 hs x 1 semana. Consulta x lagrimeo ojo izq. EOG normal. Sed, apetito, micción y defecación normales. Palpación abdominal sin particularidades. 2026-02-22 13993 11541 \N 70 3353 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2434 2025-11-22 20:39:25.645721+00 2025-11-22 20:39:25.645729+00 f t No se ingresó información Control Indico trihepat jarabe. Por enzima hepática aumentada y por resultado de ecografía. Y que coma pollo arroz y zanahoria hervida.\nVa a consultar con el cardiologo Consulta para mostrarme los estudios.\nEl cardiólogo recetó prednisolona y omeprazol.. \nEnviaron a realizar estudio de contenido de toracoceocentesis. 2026-02-22 12325 10177 \N 114 3298 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2435 2025-11-23 02:18:19.288281+00 2025-11-23 02:18:19.288291+00 f t No se ingresó información No se ingresó información No se ingresó información No se ingresó información 2026-02-22 9712 8096 \N 90 3355 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2436 2025-11-23 16:38:14.503794+00 2025-11-23 16:38:14.503799+00 f t Paciente apto para anestesia según evaluación quirúrgica. Higiene bucal luego del tratamiento Limpieza dental EOG normal. Revisión de estudios pre anestesicos. ASC y control cardiólogico. 2026-02-23 12866 10618 \N 92 3229 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2437 2025-11-23 16:45:27.68842+00 2025-11-23 16:45:27.688428+00 f t Buen estado de salud . Continuar plan de vacunación y desparasitación EOG normal 2025-12-13 11659 9648 \N 92 3286 {"recipes": [], "studies": [], "medications": [{"name": "Frontline SPRAY x 100 ml - Spray -", "user": null, "group": 1, "active": true, "company": "", "deleted": false, "pet_type": "ALL", "created_at": "2025-02-20T08:17:49.955205-03:00", "updated_at": "2025-02-20T08:17:49.955213-03:00", "description": "Spray antipulgas y garrapatas", "id_medicina": 215, "presentation": 13, "medication_type": 1, "medication_type_name": "Antiparasitario", "next_application_date": "2025-12-13", "next_application_months": 1}, {"name": "TOTAL FULL CACHORROS SUSPENSION x 15 ml - Suspensión -", "user": null, "group": 3, "active": true, "company": "Holliday", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:51.136164-03:00", "updated_at": "2025-02-20T08:17:51.136169-03:00", "description": "Suspensión antiparasitaria para cachorros", "id_medicina": 490, "presentation": 5, "medication_type": 1, "medication_type_name": "Antiparasitario", "next_application_date": "2025-12-13", "next_application_months": 1}, {"name": "NOBIVAC DHPPI - Inyectable -", "user": null, "group": 16, "active": true, "company": "MSD Intervet", "deleted": false, "pet_type": "DOG", "created_at": "2025-02-20T08:17:53.891569-03:00", "updated_at": "2025-02-20T08:17:53.891576-03:00", "description": "Vacuna múltiple para perros", "id_medicina": 1159, "presentation": 10, "medication_type": 3, "medication_type_name": "Vacuna", "next_application_date": "2025-12-13", "next_application_months": 1}], "specialities": []} +2438 2025-11-24 13:52:37.86473+00 2025-11-24 13:52:37.864737+00 f t Tumor en piel No se ingresó información No se ingresó información Presenta tumor en piel en zona de cuello. Se rascó y sangró. Aplico amoxicilina con clavulanico y dexametasona. Dar optamox duo 14:1 0,7 ml c/ 12 hs por 7 días y mañana 1/2 comp de prednisolona de 10. En una semana hacemos citología del tumor. 2026-02-24 14055 11596 \N 80 3364 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2439 2025-11-24 13:53:46.635634+00 2025-11-24 13:53:46.635643+00 f t Cistitis, causa a determinar No se ingresó información No se ingresó información Hematuria y polaquiuria. Abdomen se palpa bien. Aplico meloxicam. Indico orina completa. Cuando esté el resultado hacemos control. 2026-02-24 14157 11674 \N 80 3363 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2440 2025-11-24 13:54:12.729195+00 2025-11-24 13:54:12.729201+00 f t . No se ingresó información No se ingresó información No atendió el timbre 2026-02-24 14055 11596 \N 80 3358 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2441 2025-11-24 13:55:53.750344+00 2025-11-24 13:55:53.75035+00 f t Complejo resp felino No se ingresó información No se ingresó información Estornudos, ojos lagrimosos. No tiene la vacunas, poco apetito. Aplico tribiotic, dipirona y dexametasona. Control en uno o dos días según evolucion 2026-02-24 12155 10049 \N 80 3106 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2447 2025-11-24 21:02:43.794959+00 2025-11-24 21:02:43.79497+00 f t Discopatia Se sugiere tratamiento con pregabalina y continuar con meloxicam via oral Se aplica ranitidina y meloxocam Fue castrado por prostatomegalia recientemente. Casi no se incorpora, le cuesta caminar. Paciente con antecedentes de trastornos en columna. Hace fisioterapia.\nHay dolor moderado a la palpacion en columna toraco lumbar. \nEn mesogastrio por caudal se palpa materia fecal y genera dolor. Respuesta disminuida a la sensibilidad sobre todo en MPI. Le habian dado medicación analgesica previamente. \N 2026-02-24 12810 10572 \N 99 3207 {"studies": [], "medications": [{"name": "MELOXIVET 5 mg INY. x 10 cc", "id_medicina": "872", "medication_type_name": "Medicamento", "next_application_date": "2025-11-24", "next_application_months": 0}, {"name": "RANITIDINA 20MG iny x 50 cc", "id_medicina": "1034", "medication_type_name": "Medicamento", "next_application_date": "2025-11-24", "next_application_months": 0}], "specialities": []} +2448 2025-11-24 22:08:23.180978+00 2025-11-24 22:08:23.180988+00 f t Confección de certificado de desparasitación y de salud para viajar a Perú. S/R S/tto EOG s/p 2026-02-24 12455 10288 \N 91 3333 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2449 2025-11-24 22:09:11.88915+00 2025-11-24 22:09:11.889159+00 f t Confección de certificado de desparasitación y de salud para viajar a Perú. S/R S/tto EOG s/p 2026-02-24 10358 8599 \N 91 3185 {"recipes": [], "studies": [], "medications": [], "specialities": []} +2450 2025-11-25 16:36:19.0115+00 2025-11-25 16:36:19.011505+00 f t Laboratorio . . Laboratorio \N 2026-02-25 13663 11267 \N 100 3321 {"studies": [], "medications": [], "specialities": []} +\. + + +-- +-- Data for Name: payments_mercadopagoaccount; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.payments_mercadopagoaccount (id, created_at, updated_at, deleted, active, seller_id, access_token, refresh_token, scope, expires_at, user_id, veterinarian_id) FROM stdin; +\. + + +-- +-- Data for Name: payments_mercadopagonotification; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.payments_mercadopagonotification (id, created_at, updated_at, deleted, active, notification_id, topic, action, data_id, resource, api_version, live_mode, mp_user_id, raw_query, raw_body, headers, status, fetched_payload, fetched_at, last_error, user_id) FROM stdin; +\. + + +-- +-- Data for Name: productos_cart; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.productos_cart (id, created_at, updated_at, deleted, active, petowner_id, user_id, veterinarian_id, apply_individual_turn_fee, use_veterinarian_prices) FROM stdin; +1 2025-04-15 22:22:40.57887+00 2025-04-15 22:22:40.578876+00 f t 671 \N \N f f +2 2025-04-15 23:26:30.901866+00 2025-04-15 23:26:30.901876+00 f t 672 \N \N f f +3 2025-04-16 12:32:19.151196+00 2025-04-16 12:32:19.151202+00 f t 673 \N \N f f +4 2025-04-16 12:36:00.285138+00 2025-04-16 12:33:07.649865+00 f t 674 \N \N f f +6 2025-04-16 20:21:00.255723+00 2025-04-16 20:21:00.255741+00 f t 266 \N \N f f +7 2025-04-16 20:31:19.566006+00 2025-04-16 20:23:50.370093+00 f t 680 \N \N f f +8 2025-04-16 20:48:55.767884+00 2025-04-16 20:48:55.767893+00 f t 681 \N \N f f +10 2025-04-16 21:09:17.623928+00 2025-04-16 21:09:17.623937+00 f t 683 \N \N f f +11 2025-04-16 21:21:55.072341+00 2025-04-16 21:21:55.072352+00 f t 684 \N \N f f +17 2025-04-18 03:41:50.213494+00 2025-04-18 03:41:50.213501+00 f t 690 \N \N f f +18 2025-04-20 11:51:35.895501+00 2025-04-20 11:51:35.895512+00 f t 701 \N \N f f +91 2025-05-07 16:25:36.105427+00 2025-05-07 16:25:36.105438+00 f t 838 \N \N f f +92 2025-05-07 22:48:41.389546+00 2025-05-07 22:48:41.389556+00 f t 843 \N \N f f +93 2025-05-07 23:19:14.417594+00 2025-05-07 23:19:14.417606+00 f t 844 \N \N f f +94 2025-05-08 00:22:35.422159+00 2025-05-08 00:22:35.422166+00 f t 845 \N \N f f +95 2025-05-08 11:04:25.845142+00 2025-05-08 11:04:25.845149+00 f t 846 \N \N f f +21 2025-04-21 19:16:16.649881+00 2025-04-21 14:53:04.611428+00 f t 266 \N \N f f +96 2025-05-08 12:17:43.414925+00 2025-05-08 12:17:43.414934+00 f t 847 \N \N f f +157 2025-05-12 12:29:50.766425+00 2025-05-12 12:29:50.766434+00 f t 927 \N \N f f +23 2025-04-23 20:40:44.34903+00 2025-04-23 20:40:44.349044+00 f t 721 \N \N f f +97 2025-05-08 12:21:41.565457+00 2025-05-08 12:21:41.565466+00 f t 848 \N \N f f +98 2025-05-08 12:29:27.265751+00 2025-05-08 12:29:27.265771+00 f t 849 \N \N f f +100 2025-05-08 12:54:34.938783+00 2025-05-08 12:54:34.938792+00 f t 851 \N \N f f +24 2025-04-24 16:36:29.635544+00 2025-04-24 16:30:37.907004+00 f t 723 \N \N f f +25 2025-04-25 02:23:31.380411+00 2025-04-25 02:23:31.380419+00 f t 728 \N \N f f +26 2025-04-25 15:04:21.353096+00 2025-04-25 15:04:21.353106+00 f t 730 \N \N f f +27 2025-04-25 16:29:31.814657+00 2025-04-25 16:29:31.814668+00 f t 731 \N \N f f +28 2025-04-25 21:16:33.09374+00 2025-04-25 21:16:33.093747+00 f t 736 \N \N f f +29 2025-04-25 23:20:09.796943+00 2025-04-25 23:20:09.796949+00 f t 737 \N \N f f +30 2025-04-26 00:47:06.404189+00 2025-04-26 00:47:06.404202+00 f t 738 \N \N f f +31 2025-04-26 10:21:32.60184+00 2025-04-26 10:21:32.601845+00 f t 739 \N \N f f +32 2025-04-26 13:27:51.700185+00 2025-04-26 13:27:51.700192+00 f t 740 \N \N f f +33 2025-04-26 18:04:19.890101+00 2025-04-26 18:04:19.890116+00 f t 741 \N \N f f +34 2025-04-27 00:16:49.992853+00 2025-04-27 00:16:49.992863+00 f t 746 \N \N f f +35 2025-04-29 01:28:40.755789+00 2025-04-29 01:28:40.755796+00 f t 680 \N \N f f +101 2025-05-08 12:55:10.690654+00 2025-05-08 12:55:10.690666+00 f t 852 \N \N f f +36 2025-04-29 15:13:22.942357+00 2025-04-29 15:08:26.924079+00 f t 754 \N \N f f +37 2025-04-29 18:16:49.307623+00 2025-04-29 18:16:49.307631+00 f t 672 \N \N f f +38 2025-04-30 15:20:47.978408+00 2025-04-30 15:20:47.978416+00 f t 759 \N \N f f +39 2025-05-01 05:51:38.334477+00 2025-05-01 05:51:38.334488+00 f t 760 \N \N f f +40 2025-05-01 12:10:36.773419+00 2025-05-01 12:10:36.773428+00 f t 761 \N \N f f +41 2025-05-01 13:59:50.563164+00 2025-05-01 13:59:50.563175+00 f t 762 \N \N f f +42 2025-05-01 18:24:32.936058+00 2025-05-01 18:24:32.936069+00 f t 763 \N \N f f +52 2025-05-03 11:56:12.327433+00 2025-05-03 11:56:12.327441+00 f t 780 \N \N f f +58 2025-05-03 23:52:09.305239+00 2025-05-03 23:52:09.30528+00 f t 789 \N \N f f +60 2025-05-04 16:00:39.770626+00 2025-05-04 15:54:02.318967+00 f t 791 \N \N f f +84 2025-05-06 07:57:46.943293+00 2025-05-06 07:57:46.943303+00 f t 821 \N \N f f +102 2025-05-08 13:08:39.092931+00 2025-05-08 13:08:39.092946+00 f t 853 \N \N f f +103 2025-05-08 17:15:43.138429+00 2025-05-08 17:15:43.138438+00 f t 857 \N \N f f +104 2025-05-08 18:07:08.14969+00 2025-05-08 18:07:08.149702+00 f t 858 \N \N f f +105 2025-05-08 21:48:28.764683+00 2025-05-08 21:48:28.764695+00 f t 860 \N \N f f +106 2025-05-08 22:26:19.851826+00 2025-05-08 22:26:19.851835+00 f t 861 \N \N f f +107 2025-05-08 22:29:01.859333+00 2025-05-08 22:29:01.859342+00 f t 862 \N \N f f +108 2025-05-08 22:34:46.774538+00 2025-05-08 22:34:46.774549+00 f t 863 \N \N f f +109 2025-05-08 22:44:03.539391+00 2025-05-08 22:36:04.369859+00 f t 864 \N \N f f +110 2025-05-08 22:47:43.730174+00 2025-05-08 22:47:43.730181+00 f t 865 \N \N f f +111 2025-05-08 22:52:27.383782+00 2025-05-08 22:52:27.383789+00 f t 866 \N \N f f +112 2025-05-09 02:05:38.274949+00 2025-05-09 02:05:38.274963+00 f t 869 \N \N f f +113 2025-05-09 11:43:42.983284+00 2025-05-09 11:43:42.983295+00 f t 870 \N \N f f +114 2025-05-09 11:46:20.237476+00 2025-05-09 11:46:20.237486+00 f t 871 \N \N f f +115 2025-05-09 13:28:53.348626+00 2025-05-09 13:28:53.348637+00 f t 874 \N \N f f +116 2025-05-09 13:32:53.006226+00 2025-05-09 13:32:53.006234+00 f t 875 \N \N f f +117 2025-05-09 16:29:13.364332+00 2025-05-09 16:29:13.364341+00 f t 877 \N \N f f +118 2025-05-09 16:47:56.754284+00 2025-05-09 16:47:56.754292+00 f t 878 \N \N f f +119 2025-05-09 16:48:27.071481+00 2025-05-09 16:48:27.071495+00 f t 879 \N \N f f +120 2025-05-09 16:51:18.609757+00 2025-05-09 16:51:18.609766+00 f t 880 \N \N f f +121 2025-05-09 16:57:11.56699+00 2025-05-09 16:57:11.567002+00 f t 881 \N \N f f +122 2025-05-09 16:59:39.312283+00 2025-05-09 16:59:39.312293+00 f t 882 \N \N f f +123 2025-05-09 17:00:33.585852+00 2025-05-09 17:00:33.585865+00 f t 883 \N \N f f +124 2025-05-09 17:36:55.937179+00 2025-05-09 17:36:55.937191+00 f t 884 \N \N f f +125 2025-05-09 18:33:38.766147+00 2025-05-09 18:33:38.766156+00 f t 885 \N \N f f +126 2025-05-09 18:48:02.653846+00 2025-05-09 18:48:02.653863+00 f t 886 \N \N f f +127 2025-05-09 18:48:31.57856+00 2025-05-09 18:48:31.578571+00 f t 887 \N \N f f +128 2025-05-09 18:52:19.839798+00 2025-05-09 18:52:19.839815+00 f t 888 \N \N f f +129 2025-05-09 19:10:25.469104+00 2025-05-09 19:10:25.469117+00 f t 889 \N \N f f +130 2025-05-09 20:11:17.195936+00 2025-05-09 20:11:17.195946+00 f t 890 \N \N f f +131 2025-05-09 20:14:10.17522+00 2025-05-09 20:14:10.175229+00 f t 891 \N \N f f +132 2025-05-09 22:35:48.428408+00 2025-05-09 22:35:48.428416+00 f t 894 \N \N f f +133 2025-05-09 22:58:44.587673+00 2025-05-09 22:58:44.587681+00 f t 895 \N \N f f +134 2025-05-10 01:10:25.473197+00 2025-05-10 01:10:25.473207+00 f t 898 \N \N f f +135 2025-05-10 11:25:10.154681+00 2025-05-10 11:25:10.15469+00 f t 899 \N \N f f +136 2025-05-10 14:09:12.79563+00 2025-05-10 14:09:12.795639+00 f t 900 \N \N f f +137 2025-05-10 14:55:19.802031+00 2025-05-10 14:55:19.802042+00 f t 901 \N \N f f +138 2025-05-10 17:31:28.363234+00 2025-05-10 17:31:28.363242+00 f t 902 \N \N f f +139 2025-05-10 19:38:36.038516+00 2025-05-10 19:38:36.038524+00 f t 904 \N \N f f +140 2025-05-10 21:08:28.055259+00 2025-05-10 21:08:28.055266+00 f t 905 \N \N f f +141 2025-05-10 23:46:36.918097+00 2025-05-10 23:46:36.918106+00 f t 906 \N \N f f +142 2025-05-11 03:04:25.449279+00 2025-05-11 03:04:25.449305+00 f t 907 \N \N f f +143 2025-05-11 14:33:07.402829+00 2025-05-11 14:33:07.402838+00 f t 908 \N \N f f +144 2025-05-11 15:05:49.169598+00 2025-05-11 15:05:49.169609+00 f t 909 \N \N f f +145 2025-05-11 15:15:09.560332+00 2025-05-11 15:15:09.560344+00 f t 910 \N \N f f +146 2025-05-11 15:20:55.294319+00 2025-05-11 15:20:55.294333+00 f t 911 \N \N f f +147 2025-05-11 15:47:57.548156+00 2025-05-11 15:47:57.548165+00 f t 912 \N \N f f +148 2025-05-11 16:24:54.973837+00 2025-05-11 16:24:54.973844+00 f t 913 \N \N f f +149 2025-05-11 16:39:13.642796+00 2025-05-11 16:39:13.642808+00 f t 914 \N \N f f +150 2025-05-11 20:53:25.928198+00 2025-05-11 20:48:55.140208+00 f t 919 \N \N f f +151 2025-05-12 00:22:38.788494+00 2025-05-12 00:17:54.790256+00 f t 921 \N \N f f +152 2025-05-12 02:56:54.015488+00 2025-05-12 02:56:54.015499+00 f t 922 \N \N f f +153 2025-05-12 03:01:30.551511+00 2025-05-12 03:01:30.551523+00 f t 923 \N \N f f +154 2025-05-12 03:04:36.748913+00 2025-05-12 03:04:36.748925+00 f t 924 \N \N f f +155 2025-05-12 03:32:53.678091+00 2025-05-12 03:32:53.678103+00 f t 925 \N \N f f +156 2025-05-12 06:14:36.19641+00 2025-05-12 06:14:36.196419+00 f t 926 \N \N f f +158 2025-05-12 14:55:11.846828+00 2025-05-12 14:55:11.846837+00 f t 928 \N \N f f +159 2025-05-12 14:55:35.350784+00 2025-05-12 14:55:35.350791+00 f t 929 \N \N f f +160 2025-05-12 14:55:48.97469+00 2025-05-12 14:55:48.974701+00 f t 930 \N \N f f +161 2025-05-12 15:00:41.631547+00 2025-05-12 15:00:41.631561+00 f t 931 \N \N f f +162 2025-05-12 15:02:12.526119+00 2025-05-12 15:02:12.526129+00 f t 932 \N \N f f +163 2025-05-12 15:02:55.10765+00 2025-05-12 15:02:55.107663+00 f t 933 \N \N f f +164 2025-05-12 15:04:45.109484+00 2025-05-12 15:04:45.109493+00 f t 934 \N \N f f +165 2025-05-12 16:05:45.457378+00 2025-05-12 16:05:45.457386+00 f t 935 \N \N f f +166 2025-05-12 16:13:00.202854+00 2025-05-12 16:13:00.202862+00 f t 936 \N \N f f +167 2025-05-12 16:14:05.389954+00 2025-05-12 16:14:05.389967+00 f t 937 \N \N f f +168 2025-05-12 17:06:38.097515+00 2025-05-12 17:06:38.097526+00 f t 939 \N \N f f +169 2025-05-12 17:10:04.465073+00 2025-05-12 17:10:04.465086+00 f t 940 \N \N f f +170 2025-05-12 18:38:15.147051+00 2025-05-12 18:38:15.147061+00 f t 943 \N \N f f +171 2025-05-12 19:13:11.25399+00 2025-05-12 19:13:11.253998+00 f t 945 \N \N f f +172 2025-05-12 19:15:59.065848+00 2025-05-12 19:15:59.065854+00 f t 946 \N \N f f +173 2025-05-12 19:17:06.562039+00 2025-05-12 19:17:06.562049+00 f t 947 \N \N f f +174 2025-05-12 19:18:27.021707+00 2025-05-12 19:18:27.021714+00 f t 948 \N \N f f +175 2025-05-12 19:19:04.126696+00 2025-05-12 19:19:04.126703+00 f t 949 \N \N f f +176 2025-05-12 19:19:51.497279+00 2025-05-12 19:19:51.497286+00 f t 950 \N \N f f +177 2025-05-12 19:22:27.078267+00 2025-05-12 19:22:27.078275+00 f t 951 \N \N f f +178 2025-05-12 20:03:08.175171+00 2025-05-12 20:03:08.175178+00 f t 953 \N \N f f +179 2025-05-12 20:31:41.99327+00 2025-05-12 20:31:41.993283+00 f t 954 \N \N f f +180 2025-05-12 20:39:28.183911+00 2025-05-12 20:39:28.183922+00 f t 955 \N \N f f +181 2025-05-12 20:45:18.023509+00 2025-05-12 20:45:18.023522+00 f t 956 \N \N f f +182 2025-05-12 20:46:30.633805+00 2025-05-12 20:46:30.633814+00 f t 957 \N \N f f +183 2025-05-12 21:04:30.881044+00 2025-05-12 21:04:30.881053+00 f t 958 \N \N f f +184 2025-05-12 21:21:27.232112+00 2025-05-12 21:21:27.23212+00 f t 959 \N \N f f +185 2025-05-12 21:42:19.426709+00 2025-05-12 21:42:19.42672+00 f t 960 \N \N f f +186 2025-05-12 22:06:02.6159+00 2025-05-12 22:06:02.615911+00 f t 961 \N \N f f +187 2025-05-12 23:19:49.893826+00 2025-05-12 23:19:49.893837+00 f t 962 \N \N f f +188 2025-05-12 23:45:59.870085+00 2025-05-12 23:45:59.870092+00 f t 963 \N \N f f +189 2025-05-12 23:47:33.458881+00 2025-05-12 23:47:33.458888+00 f t 964 \N \N f f +190 2025-05-12 23:57:56.13931+00 2025-05-12 23:57:56.139318+00 f t 965 \N \N f f +191 2025-05-13 00:44:26.738451+00 2025-05-13 00:44:26.738462+00 f t 966 \N \N f f +192 2025-05-13 03:58:58.809957+00 2025-05-13 03:58:58.809966+00 f t 967 \N \N f f +193 2025-05-13 04:43:30.885213+00 2025-05-13 04:43:30.885225+00 f t 968 \N \N f f +194 2025-05-13 09:50:07.932709+00 2025-05-13 09:50:07.932722+00 f t 969 \N \N f f +195 2025-05-13 10:50:08.175672+00 2025-05-13 10:50:08.175686+00 f t 970 \N \N f f +196 2025-05-13 10:56:48.656369+00 2025-05-13 10:56:48.656377+00 f t 971 \N \N f f +197 2025-05-13 11:27:52.6665+00 2025-05-13 11:25:24.559722+00 f t 972 \N \N f f +198 2025-05-13 12:10:12.547015+00 2025-05-13 12:10:12.54703+00 f t 973 \N \N f f +199 2025-05-13 12:15:14.313598+00 2025-05-13 12:15:14.313606+00 f t 974 \N \N f f +200 2025-05-13 12:26:04.362862+00 2025-05-13 12:26:04.362874+00 f t 975 \N \N f f +201 2025-05-13 12:29:05.228361+00 2025-05-13 12:29:05.228374+00 f t 976 \N \N f f +202 2025-05-13 12:33:54.376002+00 2025-05-13 12:33:54.376011+00 f t 977 \N \N f f +203 2025-05-13 12:59:29.637929+00 2025-05-13 12:59:29.637938+00 f t 979 \N \N f f +204 2025-05-13 13:09:47.543772+00 2025-05-13 13:09:47.543781+00 f t 980 \N \N f f +205 2025-05-13 13:11:39.98624+00 2025-05-13 13:11:39.98625+00 f t 981 \N \N f f +206 2025-05-13 14:00:52.915945+00 2025-05-13 14:00:52.915959+00 f t 982 \N \N f f +207 2025-05-13 14:05:30.364283+00 2025-05-13 14:05:30.364353+00 f t 983 \N \N f f +208 2025-05-13 14:30:55.58418+00 2025-05-13 14:30:55.584191+00 f t 984 \N \N f f +209 2025-05-13 14:38:28.527031+00 2025-05-13 14:38:28.527041+00 f t 985 \N \N f f +210 2025-05-13 14:42:00.304558+00 2025-05-13 14:42:00.304567+00 f t 986 \N \N f f +211 2025-05-13 14:54:23.034258+00 2025-05-13 14:54:23.03427+00 f t 987 \N \N f f +212 2025-05-13 15:27:34.635393+00 2025-05-13 15:27:34.635406+00 f t 988 \N \N f f +213 2025-05-13 16:13:16.384412+00 2025-05-13 16:13:16.384425+00 f t 989 \N \N f f +214 2025-05-13 16:53:14.948061+00 2025-05-13 16:53:14.94807+00 f t 990 \N \N f f +215 2025-05-13 17:23:45.255446+00 2025-05-13 17:23:45.255455+00 f t 991 \N \N f f +216 2025-05-13 17:28:27.541417+00 2025-05-13 17:28:27.541425+00 f t 992 \N \N f f +217 2025-05-13 18:18:07.474832+00 2025-05-13 18:18:07.474843+00 f t 993 \N \N f f +218 2025-05-13 18:20:07.444866+00 2025-05-13 18:20:07.444879+00 f t 994 \N \N f f +219 2025-05-13 18:20:41.230363+00 2025-05-13 18:20:41.230375+00 f t 995 \N \N f f +220 2025-05-13 18:42:31.448341+00 2025-05-13 18:42:31.448351+00 f t 996 \N \N f f +221 2025-05-13 19:17:24.292068+00 2025-05-13 19:17:24.29208+00 f t 997 \N \N f f +222 2025-05-13 19:28:31.60875+00 2025-05-13 19:28:31.608762+00 f t 1000 \N \N f f +223 2025-05-13 19:37:29.329723+00 2025-05-13 19:33:40.440568+00 f t 1001 \N \N f f +224 2025-05-13 21:24:02.105713+00 2025-05-13 21:24:02.105724+00 f t 1002 \N \N f f +225 2025-05-13 21:35:23.597649+00 2025-05-13 21:35:23.59766+00 f t 1003 \N \N f f +226 2025-05-13 22:41:49.409803+00 2025-05-13 22:41:49.409812+00 f t 1004 \N \N f f +227 2025-05-14 00:08:58.598556+00 2025-05-14 00:08:58.598568+00 f t 1005 \N \N f f +228 2025-05-14 01:49:41.140528+00 2025-05-14 01:46:42.931217+00 f t 1006 \N \N f f +229 2025-05-14 02:16:52.076212+00 2025-05-14 02:16:52.076227+00 f t 1007 \N \N f f +230 2025-05-14 02:45:39.949865+00 2025-05-14 02:45:39.94988+00 f t 1008 \N \N f f +231 2025-05-14 02:52:30.122559+00 2025-05-14 02:52:30.12257+00 f t 1009 \N \N f f +232 2025-05-14 03:54:47.683528+00 2025-05-14 03:54:47.683538+00 f t 1010 \N \N f f +233 2025-05-14 04:37:00.205394+00 2025-05-14 04:37:00.205403+00 f t 1011 \N \N f f +234 2025-05-14 11:38:50.866578+00 2025-05-14 11:38:50.866591+00 f t 1012 \N \N f f +235 2025-05-14 12:32:46.567297+00 2025-05-14 12:32:46.567309+00 f t 1013 \N \N f f +236 2025-05-14 12:33:02.651522+00 2025-05-14 12:33:02.651531+00 f t 1014 \N \N f f +237 2025-05-14 14:01:13.936357+00 2025-05-14 14:01:13.936366+00 f t 1015 \N \N f f +238 2025-05-14 14:01:41.056195+00 2025-05-14 14:01:41.056205+00 f t 1016 \N \N f f +239 2025-05-14 14:16:15.725207+00 2025-05-14 14:16:15.725218+00 f t 1017 \N \N f f +240 2025-05-14 14:23:15.824149+00 2025-05-14 14:23:15.824158+00 f t 1018 \N \N f f +241 2025-05-14 14:51:06.975326+00 2025-05-14 14:51:06.975337+00 f t 1019 \N \N f f +242 2025-05-14 14:51:23.28484+00 2025-05-14 14:51:23.284849+00 f t 1020 \N \N f f +243 2025-05-14 15:54:20.732298+00 2025-05-14 15:54:20.732311+00 f t 1023 \N \N f f +244 2025-05-14 15:55:43.704809+00 2025-05-14 15:55:43.70482+00 f t 1024 \N \N f f +245 2025-05-14 16:18:38.548467+00 2025-05-14 16:18:38.548475+00 f t 1025 \N \N f f +246 2025-05-14 16:25:06.840869+00 2025-05-14 16:25:06.840879+00 f t 1026 \N \N f f +247 2025-05-14 16:43:38.537655+00 2025-05-14 16:43:38.537665+00 f t 1027 \N \N f f +248 2025-05-14 16:49:11.098955+00 2025-05-14 16:49:11.098967+00 f t 1029 \N \N f f +249 2025-05-14 16:54:10.266494+00 2025-05-14 16:54:10.266507+00 f t 1030 \N \N f f +250 2025-05-14 16:58:05.892732+00 2025-05-14 16:58:05.892745+00 f t 1031 \N \N f f +251 2025-05-14 16:58:10.880038+00 2025-05-14 16:58:10.88005+00 f t 1032 \N \N f f +252 2025-05-14 17:23:51.796424+00 2025-05-14 17:23:51.796457+00 f t 1033 \N \N f f +253 2025-05-14 17:24:32.838185+00 2025-05-14 17:24:32.838197+00 f t 1034 \N \N f f +254 2025-05-14 17:25:10.942826+00 2025-05-14 17:25:10.942839+00 f t 1035 \N \N f f +255 2025-05-14 17:41:11.824752+00 2025-05-14 17:41:11.82478+00 f t 1036 \N \N f f +256 2025-05-14 17:41:40.058801+00 2025-05-14 17:41:40.058817+00 f t 1037 \N \N f f +257 2025-05-14 17:48:10.521576+00 2025-05-14 17:48:10.521589+00 f t 1038 \N \N f f +258 2025-05-14 18:06:34.985431+00 2025-05-14 18:06:34.985463+00 f t 1039 \N \N f f +259 2025-05-14 18:08:05.685926+00 2025-05-14 18:08:05.685939+00 f t 1040 \N \N f f +260 2025-05-14 18:20:17.718344+00 2025-05-14 18:20:17.718357+00 f t 1043 \N \N f f +261 2025-05-14 18:21:00.570008+00 2025-05-14 18:21:00.570017+00 f t 1044 \N \N f f +262 2025-05-14 18:27:16.334116+00 2025-05-14 18:27:16.334127+00 f t 1045 \N \N f f +263 2025-05-14 18:30:23.819995+00 2025-05-14 18:30:23.820007+00 f t 1046 \N \N f f +264 2025-05-14 18:31:03.480681+00 2025-05-14 18:31:03.480691+00 f t 1048 \N \N f f +265 2025-05-14 18:31:40.939054+00 2025-05-14 18:31:40.939063+00 f t 1049 \N \N f f +266 2025-05-14 18:37:29.316843+00 2025-05-14 18:37:29.316856+00 f t 1050 \N \N f f +267 2025-05-14 18:44:38.87508+00 2025-05-14 18:44:38.875094+00 f t 1051 \N \N f f +268 2025-05-14 18:56:53.974928+00 2025-05-14 18:56:53.974941+00 f t 1052 \N \N f f +269 2025-05-14 19:37:25.664453+00 2025-05-14 19:37:25.664466+00 f t 1053 \N \N f f +270 2025-05-14 19:50:30.467454+00 2025-05-14 19:50:30.467463+00 f t 1054 \N \N f f +271 2025-05-14 19:59:13.767044+00 2025-05-14 19:59:13.767056+00 f t 1055 \N \N f f +272 2025-05-14 20:17:22.459272+00 2025-05-14 20:17:22.459285+00 f t 1056 \N \N f f +273 2025-05-14 20:35:00.176479+00 2025-05-14 20:25:15.748942+00 f t 1057 \N \N f f +274 2025-05-14 20:35:13.203169+00 2025-05-14 20:35:13.203181+00 f t 1058 \N \N f f +275 2025-05-14 20:35:51.6963+00 2025-05-14 20:35:51.696313+00 f t 1059 \N \N f f +276 2025-05-14 21:14:55.105008+00 2025-05-14 21:14:55.105016+00 f t 1060 \N \N f f +277 2025-05-14 21:18:53.394141+00 2025-05-14 21:18:53.394154+00 f t 1061 \N \N f f +278 2025-05-14 21:23:46.871446+00 2025-05-14 21:23:46.871453+00 f t 1062 \N \N f f +279 2025-05-14 22:09:25.890838+00 2025-05-14 22:09:25.890847+00 f t 1063 \N \N f f +280 2025-05-14 22:17:58.769939+00 2025-05-14 22:17:58.769949+00 f t 1064 \N \N f f +281 2025-05-14 22:20:05.697411+00 2025-05-14 22:20:05.697428+00 f t 1065 \N \N f f +282 2025-05-14 22:46:22.431762+00 2025-05-14 22:46:22.431772+00 f t 1066 \N \N f f +283 2025-05-14 23:13:09.193717+00 2025-05-14 23:13:09.193729+00 f t 1067 \N \N f f +284 2025-05-14 23:15:33.569172+00 2025-05-14 23:15:33.569181+00 f t 1068 \N \N f f +285 2025-05-14 23:35:48.929913+00 2025-05-14 23:35:48.929925+00 f t 1069 \N \N f f +286 2025-05-14 23:40:35.201685+00 2025-05-14 23:40:35.201697+00 f t 1070 \N \N f f +287 2025-05-15 00:18:00.23453+00 2025-05-15 00:18:00.234541+00 f t 1071 \N \N f f +288 2025-05-15 02:16:32.912977+00 2025-05-15 02:16:32.912986+00 f t 1072 \N \N f f +289 2025-05-15 02:32:29.301201+00 2025-05-15 02:32:29.301213+00 f t 1073 \N \N f f +290 2025-05-15 08:54:18.486762+00 2025-05-15 08:54:18.48677+00 f t 1074 \N \N f f +291 2025-05-15 08:56:29.611619+00 2025-05-15 08:56:29.611628+00 f t 1075 \N \N f f +292 2025-05-15 10:57:03.29646+00 2025-05-15 10:57:03.296468+00 f t 1076 \N \N f f +293 2025-05-15 11:58:57.38851+00 2025-05-15 11:58:57.388522+00 f t 1077 \N \N f f +294 2025-05-15 12:11:17.699317+00 2025-05-15 12:11:17.699328+00 f t 1078 \N \N f f +295 2025-05-15 12:40:46.58167+00 2025-05-15 12:40:46.581682+00 f t 1079 \N \N f f +296 2025-05-15 13:12:18.006731+00 2025-05-15 13:12:18.006744+00 f t 1080 \N \N f f +297 2025-05-15 13:42:53.449172+00 2025-05-15 13:42:53.449182+00 f t 1081 \N \N f f +298 2025-05-15 14:14:18.710889+00 2025-05-15 14:14:18.710902+00 f t 1083 \N \N f f +299 2025-05-15 14:36:11.97004+00 2025-05-15 14:36:11.970923+00 f t 1084 \N \N f f +300 2025-05-15 14:39:51.986509+00 2025-05-15 14:39:51.986529+00 f t 1085 \N \N f f +301 2025-05-15 14:51:06.167385+00 2025-05-15 14:51:06.1674+00 f t 1086 \N \N f f +302 2025-05-15 15:14:57.507339+00 2025-05-15 15:14:57.507397+00 f t 187 \N \N f f +303 2025-05-15 15:49:27.447531+00 2025-05-15 15:49:27.447542+00 f t 1089 \N \N f f +304 2025-05-15 16:03:28.525686+00 2025-05-15 16:03:28.525699+00 f t 1090 \N \N f f +305 2025-05-15 16:25:51.606576+00 2025-05-15 16:25:51.606585+00 f t 1091 \N \N f f +306 2025-05-15 16:39:21.182519+00 2025-05-15 16:39:21.182528+00 f t 1092 \N \N f f +307 2025-05-15 16:41:45.205446+00 2025-05-15 16:41:45.205456+00 f t 1093 \N \N f f +308 2025-05-15 16:41:53.520837+00 2025-05-15 16:41:53.520845+00 f t 1094 \N \N f f +309 2025-05-15 17:16:33.869329+00 2025-05-15 17:16:33.869342+00 f t 1095 \N \N f f +310 2025-05-15 17:38:21.163066+00 2025-05-15 17:38:21.163078+00 f t 1097 \N \N f f +311 2025-05-15 18:22:48.516872+00 2025-05-15 18:22:48.516883+00 f t 1099 \N \N f f +312 2025-05-15 19:17:04.58971+00 2025-05-15 19:17:04.589724+00 f t 1101 \N \N f f +313 2025-05-15 19:53:18.43178+00 2025-05-15 19:53:18.43179+00 f t 1102 \N \N f f +314 2025-05-15 20:15:35.178839+00 2025-05-15 20:15:35.178848+00 f t 1104 \N \N f f +315 2025-05-15 20:16:55.172696+00 2025-05-15 20:16:55.172708+00 f t 1105 \N \N f f +316 2025-05-15 20:23:15.553774+00 2025-05-15 20:23:15.553785+00 f t 1009 \N \N f f +317 2025-05-15 21:05:02.51095+00 2025-05-15 21:05:02.510963+00 f t 1106 \N \N f f +318 2025-05-15 21:14:44.153111+00 2025-05-15 21:14:44.153133+00 f t 1107 \N \N f f +319 2025-05-15 21:42:05.242421+00 2025-05-15 21:42:05.242432+00 f t 1108 \N \N f f +320 2025-05-15 22:37:52.969349+00 2025-05-15 22:37:52.969363+00 f t 1111 \N \N f f +321 2025-05-15 22:57:32.654416+00 2025-05-15 22:57:32.654424+00 f t 1112 \N \N f f +322 2025-05-15 23:00:48.402603+00 2025-05-15 23:00:48.402614+00 f t 1113 \N \N f f +323 2025-05-15 23:50:19.06818+00 2025-05-15 23:50:19.068192+00 f t 1114 \N \N f f +324 2025-05-16 00:10:10.170685+00 2025-05-16 00:10:10.170696+00 f t 1115 \N \N f f +325 2025-05-16 00:30:13.090227+00 2025-05-16 00:30:13.090238+00 f t 1116 \N \N f f +326 2025-05-16 02:27:30.767679+00 2025-05-16 02:27:30.76769+00 f t 1117 \N \N f f +327 2025-05-16 02:36:40.634726+00 2025-05-16 02:36:40.634763+00 f t 1118 \N \N f f +328 2025-05-16 03:10:28.470295+00 2025-05-16 03:10:28.470307+00 f t 1119 \N \N f f +329 2025-05-16 08:08:59.419144+00 2025-05-16 08:08:59.419151+00 f t 1120 \N \N f f +330 2025-05-16 09:33:56.170645+00 2025-05-16 09:33:56.170659+00 f t 1121 \N \N f f +331 2025-05-16 09:55:45.243743+00 2025-05-16 09:55:45.243752+00 f t 1122 \N \N f f +332 2025-05-16 10:22:12.217743+00 2025-05-16 10:22:12.217754+00 f t 1123 \N \N f f +333 2025-05-16 11:27:43.869105+00 2025-05-16 11:27:43.869114+00 f t 1124 \N \N f f +334 2025-05-16 11:46:15.57334+00 2025-05-16 11:46:15.573348+00 f t 1125 \N \N f f +335 2025-05-16 12:53:14.748056+00 2025-05-16 12:53:14.748067+00 f t 1126 \N \N f f +336 2025-05-16 12:55:24.472377+00 2025-05-16 12:55:24.472386+00 f t 1127 \N \N f f +337 2025-05-16 13:08:51.978788+00 2025-05-16 13:08:51.978803+00 f t 1128 \N \N f f +338 2025-05-16 13:11:41.769626+00 2025-05-16 13:11:41.769634+00 f t 1129 \N \N f f +339 2025-05-16 13:43:43.679065+00 2025-05-16 13:43:43.679072+00 f t 1130 \N \N f f +340 2025-05-16 14:04:21.012762+00 2025-05-16 14:04:21.012771+00 f t 1131 \N \N f f +341 2025-05-16 14:42:15.85103+00 2025-05-16 14:42:15.851038+00 f t 1132 \N \N f f +342 2025-05-16 14:43:43.329798+00 2025-05-16 14:43:43.329807+00 f t 1133 \N \N f f +343 2025-05-16 14:52:00.524237+00 2025-05-16 14:52:00.524246+00 f t 1134 \N \N f f +344 2025-05-16 15:43:45.487867+00 2025-05-16 15:43:45.487876+00 f t 1135 \N \N f f +346 2025-05-16 16:15:23.646726+00 2025-05-16 16:15:23.646736+00 f t 1138 \N \N f f +345 2025-05-16 16:15:52.81702+00 2025-05-16 16:14:37.546707+00 f t 1137 \N \N f f +347 2025-05-16 17:09:50.720135+00 2025-05-16 17:09:50.720145+00 f t 1139 \N \N f f +348 2025-05-16 17:20:59.057586+00 2025-05-16 17:20:59.057598+00 f t 1140 \N \N f f +349 2025-05-16 17:34:34.943099+00 2025-05-16 17:34:34.943109+00 f t 1141 \N \N f f +350 2025-05-16 17:45:46.959637+00 2025-05-16 17:45:46.959649+00 f t 1142 \N \N f f +351 2025-05-16 17:48:33.558344+00 2025-05-16 17:48:33.558356+00 f t 1143 \N \N f f +352 2025-05-16 17:59:08.597566+00 2025-05-16 17:59:08.597577+00 f t 1144 \N \N f f +353 2025-05-16 18:08:40.289808+00 2025-05-16 18:08:40.289821+00 f t 1145 \N \N f f +354 2025-05-16 18:16:06.296766+00 2025-05-16 18:16:06.296781+00 f t 1146 \N \N f f +355 2025-05-16 18:48:35.190087+00 2025-05-16 18:48:35.1901+00 f t 1147 \N \N f f +356 2025-05-16 19:50:09.534775+00 2025-05-16 19:50:09.534788+00 f t 1148 \N \N f f +357 2025-05-16 20:25:21.305494+00 2025-05-16 20:25:21.305503+00 f t 1149 \N \N f f +358 2025-05-16 20:26:04.383463+00 2025-05-16 20:26:04.383474+00 f t 1150 \N \N f f +359 2025-05-16 20:28:36.319709+00 2025-05-16 20:28:36.319718+00 f t 1151 \N \N f f +360 2025-05-16 21:10:58.937582+00 2025-05-16 21:10:58.937594+00 f t 1152 \N \N f f +361 2025-05-16 21:41:50.5341+00 2025-05-16 21:41:50.53411+00 f t 1153 \N \N f f +362 2025-05-16 21:43:53.507831+00 2025-05-16 21:43:53.50784+00 f t 1154 \N \N f f +363 2025-05-16 21:50:39.049521+00 2025-05-16 21:50:39.049536+00 f t 1155 \N \N f f +364 2025-05-16 23:47:46.349315+00 2025-05-16 23:47:46.349327+00 f t 1157 \N \N f f +365 2025-05-16 23:48:42.955432+00 2025-05-16 23:48:42.955442+00 f t 1158 \N \N f f +366 2025-05-17 00:42:44.112864+00 2025-05-17 00:42:44.112872+00 f t 1159 \N \N f f +367 2025-05-17 00:43:07.237385+00 2025-05-17 00:43:07.237393+00 f t 1160 \N \N f f +368 2025-05-17 01:59:57.973489+00 2025-05-17 01:59:57.973497+00 f t 1161 \N \N f f +369 2025-05-17 02:03:37.639644+00 2025-05-17 02:03:37.639655+00 f t 1162 \N \N f f +370 2025-05-17 02:13:25.053262+00 2025-05-17 02:13:25.053271+00 f t 1163 \N \N f f +371 2025-05-17 02:42:58.193382+00 2025-05-17 02:42:58.193395+00 f t 1164 \N \N f f +372 2025-05-17 02:45:19.389346+00 2025-05-17 02:45:19.389359+00 f t 1165 \N \N f f +373 2025-05-17 03:43:01.14852+00 2025-05-17 03:43:01.148531+00 f t 1166 \N \N f f +374 2025-05-17 03:51:57.401833+00 2025-05-17 03:51:57.401843+00 f t 1167 \N \N f f +375 2025-05-17 08:36:17.572458+00 2025-05-17 08:36:17.572471+00 f t 1168 \N \N f f +376 2025-05-17 10:58:40.120002+00 2025-05-17 10:58:40.120013+00 f t 1169 \N \N f f +377 2025-05-17 11:06:16.281634+00 2025-05-17 11:06:16.281647+00 f t 1170 \N \N f f +378 2025-05-17 11:36:47.678975+00 2025-05-17 11:36:47.678983+00 f t 1171 \N \N f f +379 2025-05-17 11:57:35.922565+00 2025-05-17 11:57:35.922577+00 f t 1172 \N \N f f +380 2025-05-17 11:59:47.133847+00 2025-05-17 11:59:47.133858+00 f t 1173 \N \N f f +381 2025-05-17 13:33:56.356772+00 2025-05-17 13:33:56.356783+00 f t 1174 \N \N f f +382 2025-05-17 13:46:20.831263+00 2025-05-17 13:46:20.831272+00 f t 1175 \N \N f f +383 2025-05-17 13:52:57.894343+00 2025-05-17 13:52:57.894352+00 f t 1176 \N \N f f +384 2025-05-17 14:30:11.358808+00 2025-05-17 14:30:11.358817+00 f t 1177 \N \N f f +385 2025-05-17 14:53:37.251062+00 2025-05-17 14:53:37.251075+00 f t 1178 \N \N f f +386 2025-05-17 15:47:17.095613+00 2025-05-17 15:47:17.095628+00 f t 1179 \N \N f f +387 2025-05-17 15:53:05.212146+00 2025-05-17 15:53:05.212155+00 f t 1180 \N \N f f +388 2025-05-17 16:03:18.620523+00 2025-05-17 16:03:18.620537+00 f t 1181 \N \N f f +389 2025-05-17 16:11:07.591966+00 2025-05-17 16:11:07.59198+00 f t 1182 \N \N f f +390 2025-05-17 17:18:59.986874+00 2025-05-17 17:18:59.986887+00 f t 1183 \N \N f f +391 2025-05-17 18:04:58.180005+00 2025-05-17 18:04:58.180018+00 f t 1184 \N \N f f +392 2025-05-17 19:24:29.011243+00 2025-05-17 19:24:29.011256+00 f t 1185 \N \N f f +393 2025-05-17 19:25:34.615566+00 2025-05-17 19:25:34.615578+00 f t 1186 \N \N f f +394 2025-05-17 19:34:15.179231+00 2025-05-17 19:34:15.179241+00 f t 1187 \N \N f f +395 2025-05-17 19:40:48.465934+00 2025-05-17 19:40:48.465943+00 f t 1188 \N \N f f +396 2025-05-17 19:53:06.931092+00 2025-05-17 19:53:06.931101+00 f t 1189 \N \N f f +397 2025-05-17 19:55:05.844025+00 2025-05-17 19:55:05.844037+00 f t 1190 \N \N f f +398 2025-05-17 20:29:49.444023+00 2025-05-17 20:29:49.444034+00 f t 1191 \N \N f f +399 2025-05-17 21:07:35.554126+00 2025-05-17 21:07:35.554138+00 f t 1192 \N \N f f +400 2025-05-17 21:33:46.389477+00 2025-05-17 21:33:46.389489+00 f t 1195 \N \N f f +401 2025-05-17 22:47:40.178064+00 2025-05-17 22:47:40.178077+00 f t 1196 \N \N f f +402 2025-05-17 23:29:17.357297+00 2025-05-17 23:29:17.357306+00 f t 1197 \N \N f f +403 2025-05-17 23:46:40.898999+00 2025-05-17 23:46:40.899009+00 f t 1198 \N \N f f +404 2025-05-17 23:52:21.073752+00 2025-05-17 23:52:21.073761+00 f t 1199 \N \N f f +405 2025-05-17 23:58:19.173413+00 2025-05-17 23:58:19.173421+00 f t 1200 \N \N f f +406 2025-05-18 00:23:44.898532+00 2025-05-18 00:23:44.898541+00 f t 1201 \N \N f f +407 2025-05-18 00:28:02.59673+00 2025-05-18 00:28:02.596738+00 f t 1202 \N \N f f +408 2025-05-18 00:32:47.400861+00 2025-05-18 00:32:47.400874+00 f t 1203 \N \N f f +409 2025-05-18 00:34:08.445133+00 2025-05-18 00:34:08.445141+00 f t 1204 \N \N f f +410 2025-05-18 00:38:05.166096+00 2025-05-18 00:38:05.166106+00 f t 1205 \N \N f f +411 2025-05-18 01:01:11.215171+00 2025-05-18 01:01:11.215183+00 f t 1206 \N \N f f +412 2025-05-18 01:15:12.222401+00 2025-05-18 01:15:12.222413+00 f t 1207 \N \N f f +413 2025-05-18 01:29:58.917511+00 2025-05-18 01:29:58.917518+00 f t 1208 \N \N f f +414 2025-05-18 01:33:14.40281+00 2025-05-18 01:33:14.402824+00 f t 1209 \N \N f f +415 2025-05-18 01:47:15.356774+00 2025-05-18 01:47:15.356784+00 f t 1210 \N \N f f +416 2025-05-18 02:10:09.379765+00 2025-05-18 02:10:09.379779+00 f t 1211 \N \N f f +417 2025-05-18 03:18:34.644557+00 2025-05-18 03:18:34.644566+00 f t 1212 \N \N f f +418 2025-05-18 03:55:26.568083+00 2025-05-18 03:55:26.568096+00 f t 1213 \N \N f f +419 2025-05-18 04:08:05.685941+00 2025-05-18 04:08:05.685951+00 f t 1214 \N \N f f +420 2025-05-18 04:08:48.256446+00 2025-05-18 04:08:48.256453+00 f t 1215 \N \N f f +421 2025-05-18 04:52:48.553562+00 2025-05-18 04:52:48.553574+00 f t 1216 \N \N f f +514 2025-05-20 12:29:59.065658+00 2025-05-20 12:29:59.065665+00 f t 1309 \N \N f f +422 2025-05-18 05:25:37.980405+00 2025-05-18 05:13:19.243701+00 f t 1217 \N \N f f +423 2025-05-18 05:27:43.270879+00 2025-05-18 05:27:43.270888+00 f t 1218 \N \N f f +424 2025-05-18 05:33:06.535012+00 2025-05-18 05:33:06.535019+00 f t 1219 \N \N f f +425 2025-05-18 09:52:47.240812+00 2025-05-18 09:52:47.240822+00 f t 1220 \N \N f f +426 2025-05-18 11:13:18.148274+00 2025-05-18 11:13:18.148286+00 f t 1221 \N \N f f +427 2025-05-18 11:36:02.149823+00 2025-05-18 11:36:02.149833+00 f t 1222 \N \N f f +428 2025-05-18 11:47:53.679318+00 2025-05-18 11:47:53.67935+00 f t 1223 \N \N f f +429 2025-05-18 12:07:14.142125+00 2025-05-18 12:07:14.142139+00 f t 1224 \N \N f f +430 2025-05-18 12:29:05.860142+00 2025-05-18 12:29:05.860155+00 f t 1225 \N \N f f +431 2025-05-18 12:43:08.487156+00 2025-05-18 12:43:08.487166+00 f t 1226 \N \N f f +432 2025-05-18 13:10:41.40384+00 2025-05-18 13:10:41.403852+00 f t 1227 \N \N f f +433 2025-05-18 13:19:29.047857+00 2025-05-18 13:19:29.047865+00 f t 1228 \N \N f f +434 2025-05-18 14:01:28.122488+00 2025-05-18 14:01:28.1225+00 f t 1229 \N \N f f +435 2025-05-18 14:13:22.680427+00 2025-05-18 14:13:22.68044+00 f t 1230 \N \N f f +436 2025-05-18 14:20:13.061885+00 2025-05-18 14:20:13.061896+00 f t 1231 \N \N f f +437 2025-05-18 14:22:24.551312+00 2025-05-18 14:22:24.551321+00 f t 1232 \N \N f f +438 2025-05-18 14:26:08.105692+00 2025-05-18 14:26:08.105701+00 f t 1233 \N \N f f +439 2025-05-18 14:30:36.89754+00 2025-05-18 14:30:36.897553+00 f t 1234 \N \N f f +440 2025-05-18 14:36:25.543338+00 2025-05-18 14:36:25.543348+00 f t 1235 \N \N f f +441 2025-05-18 15:08:50.014669+00 2025-05-18 15:08:50.014677+00 f t 1236 \N \N f f +442 2025-05-18 15:52:05.098309+00 2025-05-18 15:52:05.098323+00 f t 1237 \N \N f f +443 2025-05-18 16:16:05.96891+00 2025-05-18 16:16:05.968924+00 f t 1238 \N \N f f +444 2025-05-18 16:17:40.067603+00 2025-05-18 16:17:40.067611+00 f t 1239 \N \N f f +445 2025-05-18 17:04:23.676013+00 2025-05-18 17:04:23.676053+00 f t 1240 \N \N f f +446 2025-05-18 17:12:20.36284+00 2025-05-18 17:12:20.362855+00 f t 1241 \N \N f f +447 2025-05-18 18:10:50.786712+00 2025-05-18 18:10:50.78673+00 f t 1242 \N \N f f +448 2025-05-18 18:34:06.025913+00 2025-05-18 18:34:06.025926+00 f t 1243 \N \N f f +449 2025-05-18 19:16:46.794725+00 2025-05-18 19:16:46.794737+00 f t 1244 \N \N f f +450 2025-05-18 19:32:06.543144+00 2025-05-18 19:32:06.543156+00 f t 1245 \N \N f f +451 2025-05-18 20:15:30.995431+00 2025-05-18 20:15:30.995442+00 f t 1246 \N \N f f +452 2025-05-18 20:16:38.23892+00 2025-05-18 20:16:38.238928+00 f t 1247 \N \N f f +454 2025-05-18 20:51:32.817863+00 2025-05-18 20:49:50.122298+00 f t 1174 \N \N f f +455 2025-05-18 21:16:24.741436+00 2025-05-18 21:16:24.741443+00 f t 1249 \N \N f f +456 2025-05-18 21:43:25.117152+00 2025-05-18 21:43:25.11716+00 f t 1250 \N \N f f +457 2025-05-18 21:55:10.813684+00 2025-05-18 21:55:10.813696+00 f t 1252 \N \N f f +453 2025-05-18 22:51:58.462866+00 2025-05-18 20:22:32.936066+00 f t 1248 \N \N f f +458 2025-05-18 23:32:13.067888+00 2025-05-18 23:32:13.0679+00 f t 1253 \N \N f f +459 2025-05-19 00:52:57.489872+00 2025-05-19 00:52:57.489884+00 f t 1254 \N \N f f +460 2025-05-19 01:40:10.09738+00 2025-05-19 01:40:10.097392+00 f t 1255 \N \N f f +461 2025-05-19 02:24:25.37518+00 2025-05-19 02:24:25.375191+00 f t 1256 \N \N f f +462 2025-05-19 03:01:24.862564+00 2025-05-19 03:01:24.862572+00 f t 1257 \N \N f f +463 2025-05-19 04:13:09.35869+00 2025-05-19 04:13:09.358698+00 f t 1258 \N \N f f +464 2025-05-19 05:35:08.512162+00 2025-05-19 05:35:08.512179+00 f t 1259 \N \N f f +465 2025-05-19 07:01:48.196136+00 2025-05-19 07:01:48.196148+00 f t 1260 \N \N f f +466 2025-05-19 07:38:58.565951+00 2025-05-19 07:38:58.565963+00 f t 1261 \N \N f f +467 2025-05-19 09:09:27.054698+00 2025-05-19 09:05:44.005592+00 f t 1262 \N \N f f +468 2025-05-19 09:15:49.253311+00 2025-05-19 09:15:49.25332+00 f t 1263 \N \N f f +469 2025-05-19 10:52:38.632994+00 2025-05-19 10:52:38.633001+00 f t 1264 \N \N f f +470 2025-05-19 11:41:54.723833+00 2025-05-19 11:41:54.723846+00 f t 1265 \N \N f f +471 2025-05-19 12:39:39.226136+00 2025-05-19 12:39:39.226144+00 f t 1266 \N \N f f +472 2025-05-19 14:20:42.463103+00 2025-05-19 14:20:42.463114+00 f t 1267 \N \N f f +473 2025-05-19 14:22:25.458756+00 2025-05-19 14:22:25.458766+00 f t 1268 \N \N f f +474 2025-05-19 14:36:28.249586+00 2025-05-19 14:36:28.249594+00 f t 1269 \N \N f f +475 2025-05-19 15:15:49.62169+00 2025-05-19 15:15:49.621703+00 f t 1270 \N \N f f +476 2025-05-19 15:51:53.567298+00 2025-05-19 15:51:53.567306+00 f t 1272 \N \N f f +477 2025-05-19 15:55:43.855774+00 2025-05-19 15:55:43.855784+00 f t 1273 \N \N f f +478 2025-05-19 16:10:02.051169+00 2025-05-19 16:10:02.051184+00 f t 1274 \N \N f f +479 2025-05-19 16:17:24.028198+00 2025-05-19 16:17:24.02822+00 f t 659 \N \N f f +480 2025-05-19 16:46:17.443143+00 2025-05-19 16:44:23.965741+00 f t 999 \N \N f f +481 2025-05-19 16:49:49.280891+00 2025-05-19 16:49:49.280901+00 f t 1276 \N \N f f +482 2025-05-19 16:51:00.204656+00 2025-05-19 16:51:00.204666+00 f t 1277 \N \N f f +483 2025-05-19 16:56:17.091651+00 2025-05-19 16:56:17.091662+00 f t 623 \N \N f f +484 2025-05-19 17:02:27.238653+00 2025-05-19 17:02:27.238666+00 f t 1278 \N \N f f +485 2025-05-19 17:04:33.742241+00 2025-05-19 17:04:33.742251+00 f t 1279 \N \N f f +486 2025-05-19 17:17:32.583018+00 2025-05-19 17:17:32.583032+00 f t 1280 \N \N f f +487 2025-05-19 17:49:53.69123+00 2025-05-19 17:49:53.691239+00 f t 1281 \N \N f f +488 2025-05-19 18:17:02.467578+00 2025-05-19 18:17:02.467595+00 f t 1282 \N \N f f +489 2025-05-19 18:19:03.326221+00 2025-05-19 18:19:03.326232+00 f t 1283 \N \N f f +490 2025-05-19 18:36:05.94477+00 2025-05-19 18:36:05.94478+00 f t 1284 \N \N f f +491 2025-05-19 18:43:49.055556+00 2025-05-19 18:43:49.055568+00 f t 1285 \N \N f f +492 2025-05-19 18:45:24.019152+00 2025-05-19 18:45:24.019165+00 f t 1286 \N \N f f +493 2025-05-19 19:27:16.565475+00 2025-05-19 19:27:16.565482+00 f t 1287 \N \N f f +494 2025-05-19 19:34:24.256938+00 2025-05-19 19:34:24.256947+00 f t 1288 \N \N f f +495 2025-05-19 19:58:51.246006+00 2025-05-19 19:58:51.246013+00 f t 1289 \N \N f f +496 2025-05-19 20:14:07.014885+00 2025-05-19 20:14:07.014896+00 f t 1290 \N \N f f +497 2025-05-19 20:18:03.582933+00 2025-05-19 20:18:03.582946+00 f t 1291 \N \N f f +498 2025-05-19 20:19:25.965346+00 2025-05-19 20:19:25.96536+00 f t 1292 \N \N f f +499 2025-05-19 20:19:50.790015+00 2025-05-19 20:19:50.790026+00 f t 1293 \N \N f f +500 2025-05-19 20:28:31.638224+00 2025-05-19 20:28:31.638235+00 f t 1294 \N \N f f +501 2025-05-19 20:33:21.480676+00 2025-05-19 20:33:21.480689+00 f t 1295 \N \N f f +502 2025-05-19 22:34:14.532708+00 2025-05-19 22:34:14.532721+00 f t 1297 \N \N f f +503 2025-05-19 22:52:54.288945+00 2025-05-19 22:52:54.288958+00 f t 1298 \N \N f f +504 2025-05-20 00:15:04.565497+00 2025-05-20 00:15:04.565514+00 f t 1299 \N \N f f +505 2025-05-20 00:41:44.606258+00 2025-05-20 00:41:44.60627+00 f t 1300 \N \N f f +506 2025-05-20 01:35:27.096694+00 2025-05-20 01:35:27.096707+00 f t 1301 \N \N f f +507 2025-05-20 02:22:57.752183+00 2025-05-20 02:22:57.75219+00 f t 1302 \N \N f f +508 2025-05-20 03:18:50.771532+00 2025-05-20 03:18:50.77154+00 f t 1303 \N \N f f +509 2025-05-20 03:19:45.349384+00 2025-05-20 03:19:45.34939+00 f t 1304 \N \N f f +510 2025-05-20 03:20:05.504122+00 2025-05-20 03:20:05.504133+00 f t 1305 \N \N f f +511 2025-05-20 03:54:50.89509+00 2025-05-20 03:54:50.895099+00 f t 1306 \N \N f f +512 2025-05-20 11:44:31.149582+00 2025-05-20 11:44:31.14959+00 f t 1307 \N \N f f +513 2025-05-20 11:47:38.747191+00 2025-05-20 11:47:38.747202+00 f t 1308 \N \N f f +515 2025-05-20 12:32:05.948123+00 2025-05-20 12:32:05.948129+00 f t 1310 \N \N f f +516 2025-05-20 12:44:39.464254+00 2025-05-20 12:44:39.464262+00 f t 1311 \N \N f f +517 2025-05-20 12:50:04.498065+00 2025-05-20 12:50:04.498077+00 f t 1312 \N \N f f +518 2025-05-20 12:55:41.155393+00 2025-05-20 12:55:41.155401+00 f t 1313 \N \N f f +519 2025-05-20 13:24:26.094995+00 2025-05-20 13:24:26.095002+00 f t 1009 \N \N f f +520 2025-05-20 13:31:42.249238+00 2025-05-20 13:31:42.249246+00 f t 826 \N \N f f +521 2025-05-20 13:51:49.259465+00 2025-05-20 13:51:49.259471+00 f t 1314 \N \N f f +522 2025-05-20 13:54:56.706015+00 2025-05-20 13:54:56.706023+00 f t 1315 \N \N f f +523 2025-05-20 14:27:38.464539+00 2025-05-20 14:27:38.46455+00 f t 1317 \N \N f f +524 2025-05-20 14:35:43.606438+00 2025-05-20 14:35:43.606447+00 f t 1318 \N \N f f +525 2025-05-20 14:38:55.148038+00 2025-05-20 14:38:55.148049+00 f t 1319 \N \N f f +526 2025-05-20 15:13:46.342317+00 2025-05-20 15:13:46.342331+00 f t 1321 \N \N f f +527 2025-05-20 15:27:42.636453+00 2025-05-20 15:27:42.636461+00 f t 1322 \N \N f f +528 2025-05-20 15:51:08.563299+00 2025-05-20 15:51:08.56331+00 f t 1324 \N \N f f +529 2025-05-20 16:09:47.955391+00 2025-05-20 16:09:47.955403+00 f t 1326 \N \N f f +530 2025-05-20 17:13:52.242413+00 2025-05-20 17:13:52.242427+00 f t 1329 \N \N f f +531 2025-05-20 17:54:02.147566+00 2025-05-20 17:54:02.14758+00 f t 1331 \N \N f f +532 2025-05-20 18:01:16.782616+00 2025-05-20 18:01:16.782628+00 f t 1332 \N \N f f +533 2025-05-20 18:10:23.947093+00 2025-05-20 18:10:23.947103+00 f t 1333 \N \N f f +534 2025-05-20 18:38:18.906685+00 2025-05-20 18:38:18.906696+00 f t 266 \N \N f f +535 2025-05-20 18:40:06.097258+00 2025-05-20 18:40:06.097272+00 f t 1336 \N \N f f +536 2025-05-20 19:39:40.579422+00 2025-05-20 19:39:40.579434+00 f t 1339 \N \N f f +537 2025-05-20 19:54:26.778106+00 2025-05-20 19:54:26.778119+00 f t 1340 \N \N f f +538 2025-05-20 20:16:37.958565+00 2025-05-20 20:16:37.958576+00 f t 1341 \N \N f f +539 2025-05-20 20:31:29.411912+00 2025-05-20 20:31:29.411921+00 f t 1342 \N \N f f +540 2025-05-20 21:07:36.997058+00 2025-05-20 21:07:36.997101+00 f t 1344 \N \N f f +541 2025-05-20 21:08:13.369315+00 2025-05-20 21:08:13.369322+00 f t 1345 \N \N f f +542 2025-05-20 22:28:29.151818+00 2025-05-20 22:28:29.151826+00 f t 1346 \N \N f f +543 2025-05-20 23:22:22.822504+00 2025-05-20 23:22:22.822517+00 f t 1347 \N \N f f +544 2025-05-20 23:55:44.631008+00 2025-05-20 23:55:44.631016+00 f t 1348 \N \N f f +545 2025-05-21 00:46:10.826986+00 2025-05-21 00:46:10.826996+00 f t 1349 \N \N f f +546 2025-05-21 00:46:55.223774+00 2025-05-21 00:46:55.223784+00 f t 1350 \N \N f f +547 2025-05-21 00:48:06.368375+00 2025-05-21 00:48:06.368383+00 f t 1351 \N \N f f +548 2025-05-21 01:18:43.403189+00 2025-05-21 01:18:43.403196+00 f t 1353 \N \N f f +549 2025-05-21 01:38:15.814455+00 2025-05-21 01:38:15.814462+00 f t 1354 \N \N f f +550 2025-05-21 01:39:53.339869+00 2025-05-21 01:39:53.339876+00 f t 1355 \N \N f f +551 2025-05-21 01:41:39.222861+00 2025-05-21 01:41:39.222868+00 f t 1356 \N \N f f +552 2025-05-21 01:45:46.264933+00 2025-05-21 01:45:46.264939+00 f t 867 \N \N f f +553 2025-05-21 02:47:54.613021+00 2025-05-21 02:47:54.613034+00 f t 1357 \N \N f f +554 2025-05-21 02:55:01.025233+00 2025-05-21 02:55:01.025245+00 f t 432 \N \N f f +555 2025-05-21 03:47:45.827276+00 2025-05-21 03:47:45.827286+00 f t 1358 \N \N f f +556 2025-05-21 03:48:28.899723+00 2025-05-21 03:48:28.899733+00 f t 1359 \N \N f f +557 2025-05-21 04:02:08.609886+00 2025-05-21 04:02:08.609894+00 f t 1360 \N \N f f +558 2025-05-21 07:29:13.390692+00 2025-05-21 07:29:13.390703+00 f t 1361 \N \N f f +559 2025-05-21 10:13:22.180346+00 2025-05-21 10:13:22.180355+00 f t 1362 \N \N f f +560 2025-05-21 11:17:18.545463+00 2025-05-21 11:17:18.545472+00 f t 1363 \N \N f f +561 2025-05-21 11:39:54.580604+00 2025-05-21 11:39:54.580616+00 f t 1364 \N \N f f +562 2025-05-21 12:33:38.186809+00 2025-05-21 12:33:38.186818+00 f t 1365 \N \N f f +563 2025-05-21 12:38:43.400729+00 2025-05-21 12:38:43.400739+00 f t 1366 \N \N f f +564 2025-05-21 12:45:33.413903+00 2025-05-21 12:45:33.413911+00 f t 1367 \N \N f f +565 2025-05-21 13:05:36.42562+00 2025-05-21 13:05:36.425628+00 f t 1368 \N \N f f +566 2025-05-21 13:18:08.242197+00 2025-05-21 13:18:08.242209+00 f t 1369 \N \N f f +567 2025-05-21 13:41:36.681578+00 2025-05-21 13:41:36.681588+00 f t 1370 \N \N f f +568 2025-05-21 13:46:59.267624+00 2025-05-21 13:46:59.267635+00 f t 1372 \N \N f f +569 2025-05-21 13:58:11.762505+00 2025-05-21 13:58:11.762517+00 f t 1373 \N \N f f +570 2025-05-21 14:02:26.03818+00 2025-05-21 14:02:26.03819+00 f t 1374 \N \N f f +571 2025-05-21 14:08:12.108637+00 2025-05-21 14:08:12.108645+00 f t 1375 \N \N f f +572 2025-05-21 14:09:16.144888+00 2025-05-21 14:09:16.144896+00 f t 1376 \N \N f f +573 2025-05-21 14:14:49.645168+00 2025-05-21 14:14:49.645176+00 f t 1377 \N \N f f +574 2025-05-21 14:16:13.825718+00 2025-05-21 14:16:13.82573+00 f t 1378 \N \N f f +575 2025-05-21 14:17:34.161976+00 2025-05-21 14:17:34.161989+00 f t 1379 \N \N f f +576 2025-05-21 14:20:43.443641+00 2025-05-21 14:20:43.443653+00 f t 1380 \N \N f f +577 2025-05-21 15:14:53.171701+00 2025-05-21 15:14:53.171713+00 f t 1382 \N \N f f +578 2025-05-21 15:32:13.97584+00 2025-05-21 15:32:13.975849+00 f t 1383 \N \N f f +579 2025-05-21 16:56:50.277003+00 2025-05-21 16:56:50.277012+00 f t 1384 \N \N f f +580 2025-05-21 16:58:02.660114+00 2025-05-21 16:58:02.660128+00 f t 1385 \N \N f f +581 2025-05-21 17:09:17.623292+00 2025-05-21 17:09:17.623301+00 f t 1386 \N \N f f +582 2025-05-21 17:42:49.166446+00 2025-05-21 17:42:49.166455+00 f t 1387 \N \N f f +583 2025-05-21 17:42:51.511053+00 2025-05-21 17:42:51.511067+00 f t 1389 \N \N f f +584 2025-05-21 17:43:24.598629+00 2025-05-21 17:43:24.598644+00 f t 1390 \N \N f f +585 2025-05-21 17:50:21.529353+00 2025-05-21 17:50:21.529363+00 f t 1391 \N \N f f +586 2025-05-21 18:11:11.674087+00 2025-05-21 18:11:11.674096+00 f t 1392 \N \N f f +587 2025-05-21 18:12:20.126379+00 2025-05-21 18:12:20.126388+00 f t 1393 \N \N f f +588 2025-05-21 18:12:50.85219+00 2025-05-21 18:12:50.852202+00 f t 1394 \N \N f f +589 2025-05-21 18:15:50.906712+00 2025-05-21 18:15:50.906719+00 f t 1395 \N \N f f +590 2025-05-21 18:50:39.082486+00 2025-05-21 18:50:39.082499+00 f t 1396 \N \N f f +591 2025-05-21 19:26:28.923136+00 2025-05-21 19:26:28.92315+00 f t 1397 \N \N f f +592 2025-05-21 19:51:00.277287+00 2025-05-21 19:51:00.277297+00 f t 1398 \N \N f f +593 2025-05-21 19:53:23.01829+00 2025-05-21 19:53:23.018299+00 f t 1399 \N \N f f +594 2025-05-21 19:56:56.749913+00 2025-05-21 19:56:56.749921+00 f t 1400 \N \N f f +595 2025-05-21 20:32:03.303297+00 2025-05-21 20:32:03.303309+00 f t 1401 \N \N f f +596 2025-05-21 20:42:45.085422+00 2025-05-21 20:42:45.08543+00 f t 1403 \N \N f f +597 2025-05-21 20:45:35.066576+00 2025-05-21 20:45:35.066584+00 f t 1404 \N \N f f +598 2025-05-21 23:01:53.269075+00 2025-05-21 23:01:53.269084+00 f t 1405 \N \N f f +599 2025-05-21 23:05:55.33321+00 2025-05-21 23:05:55.333221+00 f t 1406 \N \N f f +600 2025-05-21 23:13:41.636753+00 2025-05-21 23:13:41.63676+00 f t 1407 \N \N f f +601 2025-05-21 23:14:21.098002+00 2025-05-21 23:14:21.098011+00 f t 1408 \N \N f f +602 2025-05-21 23:50:05.186676+00 2025-05-21 23:50:05.186688+00 f t 1409 \N \N f f +603 2025-05-21 23:56:35.089756+00 2025-05-21 23:56:35.089768+00 f t 1410 \N \N f f +604 2025-05-22 00:17:39.993069+00 2025-05-22 00:17:39.993078+00 f t 1411 \N \N f f +605 2025-05-22 00:44:33.818535+00 2025-05-22 00:44:33.818544+00 f t 1412 \N \N f f +606 2025-05-22 00:45:24.772943+00 2025-05-22 00:45:24.772955+00 f t 1413 \N \N f f +607 2025-05-22 01:12:33.676454+00 2025-05-22 01:12:33.676461+00 f t 1414 \N \N f f +608 2025-05-22 01:19:09.418324+00 2025-05-22 01:19:09.41833+00 f t 1415 \N \N f f +609 2025-05-22 01:22:02.456501+00 2025-05-22 01:22:02.456513+00 f t 1416 \N \N f f +610 2025-05-22 01:22:37.265423+00 2025-05-22 01:22:37.26543+00 f t 1417 \N \N f f +611 2025-05-22 01:22:42.915737+00 2025-05-22 01:22:42.915744+00 f t 1418 \N \N f f +612 2025-05-22 01:22:50.051062+00 2025-05-22 01:22:50.051069+00 f t 1419 \N \N f f +613 2025-05-22 01:24:21.052133+00 2025-05-22 01:24:21.052144+00 f t 1420 \N \N f f +614 2025-05-22 01:26:35.656072+00 2025-05-22 01:26:35.65608+00 f t 1421 \N \N f f +615 2025-05-22 01:30:11.650766+00 2025-05-22 01:30:11.650778+00 f t 1422 \N \N f f +616 2025-05-22 01:48:34.115586+00 2025-05-22 01:48:34.115593+00 f t 1423 \N \N f f +617 2025-05-22 01:53:33.526349+00 2025-05-22 01:53:33.526356+00 f t 1424 \N \N f f +618 2025-05-22 02:13:45.33115+00 2025-05-22 02:13:45.331163+00 f t 1425 \N \N f f +619 2025-05-22 02:29:23.213704+00 2025-05-22 02:29:23.213715+00 f t 1426 \N \N f f +620 2025-05-22 02:50:05.353202+00 2025-05-22 02:50:05.353214+00 f t 1427 \N \N f f +621 2025-05-22 03:06:07.814459+00 2025-05-22 03:06:07.814471+00 f t 1428 \N \N f f +622 2025-05-22 04:45:52.849172+00 2025-05-22 04:45:52.849181+00 f t 1429 \N \N f f +623 2025-05-22 11:24:16.921311+00 2025-05-22 11:24:16.921324+00 f t 1430 \N \N f f +624 2025-05-22 11:24:39.844609+00 2025-05-22 11:24:39.844619+00 f t 1431 \N \N f f +625 2025-05-22 11:52:56.164309+00 2025-05-22 11:52:56.164316+00 f t 1432 \N \N f f +626 2025-05-22 11:59:23.530882+00 2025-05-22 11:59:23.53089+00 f t 1433 \N \N f f +627 2025-05-22 12:19:01.489475+00 2025-05-22 12:19:01.489484+00 f t 1434 \N \N f f +628 2025-05-22 12:21:18.713909+00 2025-05-22 12:21:18.713919+00 f t 1435 \N \N f f +629 2025-05-22 12:41:24.290923+00 2025-05-22 12:41:24.290929+00 f t 1436 \N \N f f +630 2025-05-22 12:52:09.859487+00 2025-05-22 12:52:09.859496+00 f t 1437 \N \N f f +631 2025-05-22 12:58:19.968106+00 2025-05-22 12:58:19.968115+00 f t 1438 \N \N f f +632 2025-05-22 13:07:53.784053+00 2025-05-22 13:07:53.78406+00 f t 1439 \N \N f f +633 2025-05-22 13:56:36.092884+00 2025-05-22 13:56:36.092892+00 f t 1441 \N \N f f +634 2025-05-22 13:59:14.226873+00 2025-05-22 13:59:14.226881+00 f t 824 \N \N f f +635 2025-05-22 14:15:18.125376+00 2025-05-22 14:15:18.125386+00 f t 1442 \N \N f f +636 2025-05-22 14:20:18.111756+00 2025-05-22 14:20:18.111766+00 f t 1443 \N \N f f +637 2025-05-22 14:24:04.474404+00 2025-05-22 14:24:04.474412+00 f t 1444 \N \N f f +638 2025-05-22 14:34:19.034643+00 2025-05-22 14:34:19.034652+00 f t 1445 \N \N f f +639 2025-05-22 15:03:55.588488+00 2025-05-22 14:58:19.592003+00 f t 1446 \N \N f f +640 2025-05-22 15:05:03.442792+00 2025-05-22 15:05:03.442806+00 f t 1447 \N \N f f +641 2025-05-22 16:19:11.599585+00 2025-05-22 16:19:11.599593+00 f t 1449 \N \N f f +642 2025-05-22 16:27:41.447903+00 2025-05-22 16:27:41.447917+00 f t 1450 \N \N f f +643 2025-05-22 16:36:40.767248+00 2025-05-22 16:36:40.767256+00 f t 1451 \N \N f f +644 2025-05-22 17:18:16.928017+00 2025-05-22 17:18:16.928023+00 f t 623 \N \N f f +645 2025-05-22 18:01:11.224236+00 2025-05-22 18:01:11.224244+00 f t 1453 \N \N f f +646 2025-05-22 18:02:09.688996+00 2025-05-22 18:02:09.689004+00 f t 1454 \N \N f f +647 2025-05-22 18:02:51.259051+00 2025-05-22 18:02:51.259059+00 f t 1455 \N \N f f +648 2025-05-22 18:29:18.382803+00 2025-05-22 18:29:18.382813+00 f t 1456 \N \N f f +649 2025-05-22 18:39:02.709368+00 2025-05-22 18:39:02.709381+00 f t 1457 \N \N f f +650 2025-05-22 18:43:11.930101+00 2025-05-22 18:43:11.93011+00 f t 1458 \N \N f f +651 2025-05-22 18:46:06.494366+00 2025-05-22 18:46:06.494374+00 f t 1459 \N \N f f +652 2025-05-22 19:03:57.286812+00 2025-05-22 19:03:57.28682+00 f t 1460 \N \N f f +653 2025-05-22 19:26:30.268365+00 2025-05-22 19:26:30.268372+00 f t 1462 \N \N f f +654 2025-05-22 20:46:42.098927+00 2025-05-22 20:46:42.098934+00 f t 1463 \N \N f f +655 2025-05-22 21:44:59.740676+00 2025-05-22 21:44:59.740682+00 f t 1465 \N \N f f +656 2025-05-23 00:23:20.445839+00 2025-05-23 00:23:20.445848+00 f t 1466 \N \N f f +657 2025-05-23 01:01:45.551262+00 2025-05-23 01:01:45.55127+00 f t 1467 \N \N f f +658 2025-05-23 01:04:25.033625+00 2025-05-23 01:04:25.033635+00 f t 1468 \N \N f f +659 2025-05-23 01:06:51.681266+00 2025-05-23 01:06:51.681278+00 f t 1469 \N \N f f +660 2025-05-23 01:22:52.476728+00 2025-05-23 01:22:52.47674+00 f t 1470 \N \N f f +661 2025-05-23 02:06:36.913809+00 2025-05-23 02:06:36.913818+00 f t 1471 \N \N f f +662 2025-05-23 02:11:33.526817+00 2025-05-23 02:11:33.526826+00 f t 1472 \N \N f f +663 2025-05-23 02:20:32.685368+00 2025-05-23 02:20:32.685378+00 f t 1473 \N \N f f +664 2025-05-23 02:23:12.171549+00 2025-05-23 02:23:12.171557+00 f t 1474 \N \N f f +665 2025-05-23 02:53:41.026707+00 2025-05-23 02:53:41.026715+00 f t 1475 \N \N f f +666 2025-05-23 03:55:54.92766+00 2025-05-23 03:55:54.927673+00 f t 1476 \N \N f f +667 2025-05-23 07:06:29.53833+00 2025-05-23 07:06:29.538343+00 f t 1477 \N \N f f +668 2025-05-23 10:15:16.47842+00 2025-05-23 10:15:16.478432+00 f t 1478 \N \N f f +669 2025-05-23 10:37:20.697299+00 2025-05-23 10:37:20.69731+00 f t 1479 \N \N f f +670 2025-05-23 10:53:02.80294+00 2025-05-23 10:53:02.80295+00 f t 1480 \N \N f f +671 2025-05-23 11:27:40.796348+00 2025-05-23 11:27:40.796358+00 f t 1481 \N \N f f +672 2025-05-23 12:35:21.886999+00 2025-05-23 12:35:21.88701+00 f t 1482 \N \N f f +673 2025-05-23 12:51:12.130276+00 2025-05-23 12:51:12.130287+00 f t 1483 \N \N f f +674 2025-05-23 13:06:49.927499+00 2025-05-23 13:06:49.927507+00 f t 1484 \N \N f f +675 2025-05-23 13:50:18.509982+00 2025-05-23 13:50:18.509992+00 f t 1485 \N \N f f +676 2025-05-23 14:08:02.305719+00 2025-05-23 14:08:02.305731+00 f t 1486 \N \N f f +677 2025-05-23 14:54:30.702048+00 2025-05-23 14:54:30.70206+00 f t 1488 \N \N f f +679 2025-05-23 15:12:47.7625+00 2025-05-23 15:12:47.76251+00 f t 1490 \N \N f f +678 2025-05-23 15:18:41.508481+00 2025-05-23 15:09:25.877245+00 f t 1489 \N \N f f +680 2025-05-23 15:49:11.37335+00 2025-05-23 15:49:11.373362+00 f t 1491 \N \N f f +681 2025-05-23 15:58:19.938056+00 2025-05-23 15:58:19.938065+00 f t 1492 \N \N f f +682 2025-05-23 16:19:51.77307+00 2025-05-23 16:19:51.773081+00 f t 1493 \N \N f f +683 2025-05-23 16:43:08.279598+00 2025-05-23 16:43:08.279606+00 f t 1494 \N \N f f +684 2025-05-23 16:45:44.806539+00 2025-05-23 16:45:44.806548+00 f t 1495 \N \N f f +685 2025-05-23 16:46:18.68089+00 2025-05-23 16:46:18.680899+00 f t 1496 \N \N f f +686 2025-05-23 17:01:18.157742+00 2025-05-23 17:01:18.157753+00 f t 1497 \N \N f f +687 2025-05-23 17:33:03.743061+00 2025-05-23 17:33:03.74307+00 f t 1498 \N \N f f +688 2025-05-23 18:10:23.053375+00 2025-05-23 18:10:23.053389+00 f t 1499 \N \N f f +689 2025-05-23 18:26:42.079592+00 2025-05-23 18:26:42.079599+00 f t 1500 \N \N f f +690 2025-05-23 18:29:24.362562+00 2025-05-23 18:29:24.362571+00 f t 1501 \N \N f f +691 2025-05-23 20:51:46.057141+00 2025-05-23 20:51:46.057153+00 f t 1503 \N \N f f +692 2025-05-23 21:07:12.218286+00 2025-05-23 21:07:12.218295+00 f t 1504 \N \N f f +693 2025-05-23 22:33:29.297664+00 2025-05-23 22:33:29.297679+00 f t 1505 \N \N f f +694 2025-05-23 22:34:46.122153+00 2025-05-23 22:34:46.122165+00 f t 1506 \N \N f f +695 2025-05-23 22:44:06.055179+00 2025-05-23 22:44:06.055192+00 f t 1507 \N \N f f +696 2025-05-23 22:45:22.88265+00 2025-05-23 22:45:22.88266+00 f t 1508 \N \N f f +697 2025-05-23 22:47:09.336343+00 2025-05-23 22:47:09.336355+00 f t 1509 \N \N f f +698 2025-05-23 22:57:57.935812+00 2025-05-23 22:57:57.935822+00 f t 1510 \N \N f f +699 2025-05-23 23:13:50.033527+00 2025-05-23 23:13:50.033536+00 f t 1511 \N \N f f +700 2025-05-23 23:41:35.987572+00 2025-05-23 23:37:52.322412+00 f t 1512 \N \N f f +701 2025-05-23 23:55:31.110462+00 2025-05-23 23:55:31.110475+00 f t 1513 \N \N f f +702 2025-05-23 23:58:27.60207+00 2025-05-23 23:58:27.602081+00 f t 1514 \N \N f f +703 2025-05-24 00:04:46.521957+00 2025-05-24 00:04:46.521966+00 f t 1515 \N \N f f +704 2025-05-24 00:24:54.660404+00 2025-05-24 00:24:54.660413+00 f t 1516 \N \N f f +705 2025-05-24 00:51:04.962744+00 2025-05-24 00:51:04.962754+00 f t 1517 \N \N f f +706 2025-05-24 01:01:05.055591+00 2025-05-24 01:01:05.0556+00 f t 1518 \N \N f f +707 2025-05-24 01:30:15.920147+00 2025-05-24 01:30:15.920158+00 f t 1519 \N \N f f +708 2025-05-24 02:09:46.713249+00 2025-05-24 02:09:46.713257+00 f t 1520 \N \N f f +709 2025-05-24 02:40:27.22792+00 2025-05-24 02:40:27.22793+00 f t 1521 \N \N f f +710 2025-05-24 02:44:33.641092+00 2025-05-24 02:44:33.641104+00 f t 1522 \N \N f f +711 2025-05-24 03:02:08.075456+00 2025-05-24 03:02:08.075465+00 f t 1523 \N \N f f +712 2025-05-24 04:22:47.991091+00 2025-05-24 04:22:47.991099+00 f t 1524 \N \N f f +713 2025-05-24 12:17:22.898437+00 2025-05-24 12:17:22.898452+00 f t 1525 \N \N f f +714 2025-05-24 12:51:11.14945+00 2025-05-24 12:51:11.149458+00 f t 1526 \N \N f f +715 2025-05-24 12:51:42.58436+00 2025-05-24 12:51:42.584371+00 f t 1527 \N \N f f +716 2025-05-24 12:52:26.848316+00 2025-05-24 12:52:26.848326+00 f t 1528 \N \N f f +717 2025-05-24 13:02:12.04915+00 2025-05-24 13:02:12.049163+00 f t 1529 \N \N f f +718 2025-05-24 13:09:20.61715+00 2025-05-24 13:09:20.61716+00 f t 1530 \N \N f f +719 2025-05-24 13:27:40.614244+00 2025-05-24 13:27:40.614254+00 f t 1531 \N \N f f +720 2025-05-24 13:46:02.085658+00 2025-05-24 13:46:02.085668+00 f t 1532 \N \N f f +721 2025-05-24 13:59:44.188392+00 2025-05-24 13:59:44.188401+00 f t 1533 \N \N f f +722 2025-05-24 14:21:47.78635+00 2025-05-24 14:21:47.786363+00 f t 1534 \N \N f f +723 2025-05-24 14:38:14.281644+00 2025-05-24 14:38:14.281657+00 f t 1535 \N \N f f +724 2025-05-24 15:01:43.265806+00 2025-05-24 15:01:43.265815+00 f t 1536 \N \N f f +725 2025-05-24 15:33:36.064082+00 2025-05-24 15:33:36.064094+00 f t 1537 \N \N f f +726 2025-05-24 15:46:27.111382+00 2025-05-24 15:46:27.111394+00 f t 1538 \N \N f f +727 2025-05-24 16:46:01.545124+00 2025-05-24 16:46:01.545137+00 f t 1539 \N \N f f +728 2025-05-24 16:49:25.274485+00 2025-05-24 16:49:25.274493+00 f t 1540 \N \N f f +729 2025-05-24 17:20:27.296289+00 2025-05-24 17:20:27.296299+00 f t 1541 \N \N f f +730 2025-05-24 17:36:30.286744+00 2025-05-24 17:36:30.286752+00 f t 1542 \N \N f f +731 2025-05-24 17:50:32.51616+00 2025-05-24 17:50:32.516169+00 f t 1543 \N \N f f +732 2025-05-24 17:52:55.021025+00 2025-05-24 17:52:55.021037+00 f t 1544 \N \N f f +733 2025-05-24 18:11:04.163891+00 2025-05-24 18:11:04.163903+00 f t 1545 \N \N f f +734 2025-05-24 18:12:34.436436+00 2025-05-24 18:12:34.436445+00 f t 1546 \N \N f f +735 2025-05-24 18:13:09.224096+00 2025-05-24 18:13:09.224106+00 f t 1547 \N \N f f +736 2025-05-24 18:14:05.521888+00 2025-05-24 18:14:05.521917+00 f t 1548 \N \N f f +737 2025-05-24 18:15:11.922045+00 2025-05-24 18:15:11.922054+00 f t 1549 \N \N f f +738 2025-05-24 18:39:05.326342+00 2025-05-24 18:39:05.326351+00 f t 1550 \N \N f f +739 2025-05-24 18:44:58.00278+00 2025-05-24 18:44:58.002787+00 f t 1551 \N \N f f +740 2025-05-24 18:45:21.879428+00 2025-05-24 18:45:21.879437+00 f t 1552 \N \N f f +741 2025-05-24 20:24:40.136645+00 2025-05-24 20:24:40.136653+00 f t 1553 \N \N f f +742 2025-05-24 20:58:49.564573+00 2025-05-24 20:58:49.564586+00 f t 1554 \N \N f f +743 2025-05-24 21:35:29.160382+00 2025-05-24 21:35:29.160391+00 f t 1556 \N \N f f +744 2025-05-24 22:30:43.628236+00 2025-05-24 22:30:43.628244+00 f t 1557 \N \N f f +745 2025-05-24 23:02:27.069474+00 2025-05-24 23:02:27.069483+00 f t 1558 \N \N f f +746 2025-05-24 23:03:23.396893+00 2025-05-24 23:03:23.396901+00 f t 1559 \N \N f f +747 2025-05-24 23:18:47.236479+00 2025-05-24 23:18:47.236486+00 f t 1560 \N \N f f +748 2025-05-24 23:35:13.038739+00 2025-05-24 23:35:13.038748+00 f t 1561 \N \N f f +749 2025-05-24 23:35:35.033182+00 2025-05-24 23:35:35.033194+00 f t 1562 \N \N f f +750 2025-05-25 00:31:35.906124+00 2025-05-25 00:31:35.906132+00 f t 1563 \N \N f f +751 2025-05-25 00:35:41.81845+00 2025-05-25 00:35:41.818458+00 f t 1564 \N \N f f +752 2025-05-25 01:05:38.673714+00 2025-05-25 01:05:38.673727+00 f t 1565 \N \N f f +753 2025-05-25 01:06:11.611011+00 2025-05-25 01:06:11.611019+00 f t 1566 \N \N f f +754 2025-05-25 01:16:58.063166+00 2025-05-25 01:16:58.063174+00 f t 1567 \N \N f f +755 2025-05-25 01:28:20.758+00 2025-05-25 01:28:20.75801+00 f t 1568 \N \N f f +756 2025-05-25 03:07:39.749724+00 2025-05-25 03:07:39.749733+00 f t 1569 \N \N f f +757 2025-05-25 03:25:57.093019+00 2025-05-25 03:25:57.093028+00 f t 1570 \N \N f f +758 2025-05-25 03:28:19.999966+00 2025-05-25 03:28:19.999978+00 f t 1571 \N \N f f +759 2025-05-25 03:29:03.73138+00 2025-05-25 03:29:03.731387+00 f t 1572 \N \N f f +760 2025-05-25 03:29:51.950126+00 2025-05-25 03:29:51.950138+00 f t 1573 \N \N f f +761 2025-05-25 03:32:35.447687+00 2025-05-25 03:32:35.447701+00 f t 1574 \N \N f f +762 2025-05-25 03:58:56.786836+00 2025-05-25 03:58:56.786844+00 f t 1575 \N \N f f +763 2025-05-25 05:42:32.168682+00 2025-05-25 05:42:32.168692+00 f t 1576 \N \N f f +764 2025-05-25 10:19:17.426697+00 2025-05-25 10:19:17.426707+00 f t 1577 \N \N f f +765 2025-05-25 10:36:53.906279+00 2025-05-25 10:36:53.90629+00 f t 1578 \N \N f f +766 2025-05-25 12:41:19.379255+00 2025-05-25 12:41:19.379262+00 f t 1579 \N \N f f +767 2025-05-25 13:25:41.457351+00 2025-05-25 13:25:41.457359+00 f t 1580 \N \N f f +768 2025-05-25 13:39:05.14628+00 2025-05-25 13:39:05.146292+00 f t 1581 \N \N f f +769 2025-05-25 13:55:44.568853+00 2025-05-25 13:55:44.568865+00 f t 1582 \N \N f f +770 2025-05-25 13:59:28.384606+00 2025-05-25 13:59:28.384618+00 f t 1583 \N \N f f +771 2025-05-25 14:10:22.094703+00 2025-05-25 14:10:22.094715+00 f t 1584 \N \N f f +772 2025-05-25 14:46:02.744121+00 2025-05-25 14:46:02.744134+00 f t 1585 \N \N f f +773 2025-05-25 15:38:16.417847+00 2025-05-25 15:38:16.417856+00 f t 1586 \N \N f f +774 2025-05-25 15:51:39.128237+00 2025-05-25 15:51:39.12825+00 f t 1587 \N \N f f +775 2025-05-25 16:05:41.210878+00 2025-05-25 16:05:41.210886+00 f t 1588 \N \N f f +776 2025-05-25 16:23:04.289097+00 2025-05-25 16:23:04.289107+00 f t 1589 \N \N f f +777 2025-05-25 16:27:26.690436+00 2025-05-25 16:27:26.690447+00 f t 1590 \N \N f f +778 2025-05-25 16:42:20.085307+00 2025-05-25 16:42:20.085318+00 f t 1591 \N \N f f +779 2025-05-25 17:18:05.837856+00 2025-05-25 17:18:05.837864+00 f t 1592 \N \N f f +780 2025-05-25 17:26:26.191766+00 2025-05-25 17:26:26.191774+00 f t 1593 \N \N f f +781 2025-05-25 17:40:28.564294+00 2025-05-25 17:40:28.564308+00 f t 1594 \N \N f f +782 2025-05-25 17:51:05.765754+00 2025-05-25 17:51:05.765763+00 f t 1595 \N \N f f +783 2025-05-25 17:55:10.336219+00 2025-05-25 17:51:39.937331+00 f t 1596 \N \N f f +784 2025-05-25 17:55:47.642367+00 2025-05-25 17:55:47.64238+00 f t 1597 \N \N f f +785 2025-05-25 18:02:12.425773+00 2025-05-25 18:02:12.425781+00 f t 1598 \N \N f f +786 2025-05-25 18:15:13.836748+00 2025-05-25 18:15:13.836756+00 f t 1599 \N \N f f +787 2025-05-25 18:27:50.430071+00 2025-05-25 18:27:50.430082+00 f t 1600 \N \N f f +788 2025-05-25 19:06:43.325642+00 2025-05-25 19:06:43.32565+00 f t 1601 \N \N f f +789 2025-05-25 19:34:52.742068+00 2025-05-25 19:34:52.742075+00 f t 1602 \N \N f f +790 2025-05-25 19:53:44.062277+00 2025-05-25 19:53:44.062285+00 f t 1603 \N \N f f +791 2025-05-25 19:54:52.954033+00 2025-05-25 19:54:52.954041+00 f t 1604 \N \N f f +792 2025-05-25 21:04:05.918123+00 2025-05-25 21:04:05.918135+00 f t 1608 \N \N f f +793 2025-05-25 21:20:31.674714+00 2025-05-25 21:20:31.674724+00 f t 1609 \N \N f f +794 2025-05-25 21:38:11.297439+00 2025-05-25 21:38:11.297451+00 f t 1610 \N \N f f +795 2025-05-25 21:54:17.580955+00 2025-05-25 21:49:35.462938+00 f t 1611 \N \N f f +796 2025-05-25 22:29:07.956874+00 2025-05-25 22:29:07.956881+00 f t 1612 \N \N f f +797 2025-05-25 22:32:47.332769+00 2025-05-25 22:32:47.332777+00 f t 1613 \N \N f f +798 2025-05-25 22:39:55.329186+00 2025-05-25 22:39:55.329193+00 f t 1614 \N \N f f +799 2025-05-26 00:26:13.672466+00 2025-05-26 00:26:13.672473+00 f t 1615 \N \N f f +800 2025-05-26 00:56:54.159767+00 2025-05-26 00:56:54.159778+00 f t 1616 \N \N f f +801 2025-05-26 00:57:54.381716+00 2025-05-26 00:57:54.381724+00 f t 1617 \N \N f f +802 2025-05-26 01:14:11.802309+00 2025-05-26 01:14:11.802317+00 f t 1618 \N \N f f +803 2025-05-26 01:52:18.148767+00 2025-05-26 01:52:18.148786+00 f t 1619 \N \N f f +804 2025-05-26 02:13:03.809708+00 2025-05-26 02:13:03.80972+00 f t 1620 \N \N f f +805 2025-05-26 04:21:00.504811+00 2025-05-26 04:21:00.504819+00 f t 1621 \N \N f f +806 2025-05-26 04:51:52.198002+00 2025-05-26 04:51:52.19801+00 f t 1622 \N \N f f +807 2025-05-26 04:55:47.231209+00 2025-05-26 04:55:47.231222+00 f t 1623 \N \N f f +808 2025-05-26 05:28:36.552522+00 2025-05-26 05:20:00.600669+00 f t 1624 \N \N f f +809 2025-05-26 07:23:18.3975+00 2025-05-26 07:23:18.397513+00 f t 1625 \N \N f f +810 2025-05-26 07:24:35.700919+00 2025-05-26 07:24:35.700931+00 f t 1626 \N \N f f +811 2025-05-26 07:26:52.875752+00 2025-05-26 07:26:52.87576+00 f t 1627 \N \N f f +812 2025-05-26 09:15:44.133112+00 2025-05-26 09:15:44.133123+00 f t 1628 \N \N f f +813 2025-05-26 09:28:40.669758+00 2025-05-26 09:28:40.669768+00 f t 1629 \N \N f f +814 2025-05-26 09:30:28.919104+00 2025-05-26 09:30:28.919115+00 f t 1630 \N \N f f +815 2025-05-26 12:52:49.170887+00 2025-05-26 12:52:49.1709+00 f t 1631 \N \N f f +816 2025-05-26 13:31:27.557038+00 2025-05-26 13:31:27.557045+00 f t 1632 \N \N f f +817 2025-05-26 13:45:15.372306+00 2025-05-26 13:45:15.372314+00 f t 1633 \N \N f f +818 2025-05-26 13:47:44.079921+00 2025-05-26 13:47:44.07993+00 f t 1634 \N \N f f +819 2025-05-26 14:12:49.090407+00 2025-05-26 14:12:49.090416+00 f t 1635 \N \N f f +820 2025-05-26 14:20:59.956543+00 2025-05-26 14:20:59.956551+00 f t 1636 \N \N f f +821 2025-05-26 14:22:37.645959+00 2025-05-26 14:22:37.645969+00 f t 1637 \N \N f f +822 2025-05-26 14:40:25.017285+00 2025-05-26 14:40:25.017298+00 f t 826 \N \N f f +823 2025-05-26 14:52:45.085204+00 2025-05-26 14:52:45.085211+00 f t 1638 \N \N f f +824 2025-05-26 15:32:47.414483+00 2025-05-26 15:32:47.414492+00 f t 1639 \N \N f f +825 2025-05-26 16:03:15.473944+00 2025-05-26 16:03:15.473955+00 f t 1640 \N \N f f +826 2025-05-26 16:08:47.504963+00 2025-05-26 16:08:47.504974+00 f t 1641 \N \N f f +827 2025-05-26 16:09:12.075854+00 2025-05-26 16:09:12.075866+00 f t 1642 \N \N f f +828 2025-05-26 16:24:35.561471+00 2025-05-26 16:24:35.56148+00 f t 1643 \N \N f f +829 2025-05-26 16:45:07.54039+00 2025-05-26 16:45:07.540399+00 f t 1644 \N \N f f +830 2025-05-26 16:58:43.528228+00 2025-05-26 16:58:43.528235+00 f t 1645 \N \N f f +831 2025-05-26 17:13:14.771184+00 2025-05-26 17:13:14.771195+00 f t 1647 \N \N f f +832 2025-05-26 18:33:42.165145+00 2025-05-26 18:33:42.165153+00 f t 1648 \N \N f f +833 2025-05-26 18:52:31.419798+00 2025-05-26 18:52:31.419808+00 f t 1649 \N \N f f +834 2025-05-26 19:18:06.996593+00 2025-05-26 19:18:06.996604+00 f t 1650 \N \N f f +835 2025-05-26 20:04:41.683701+00 2025-05-26 20:04:41.683713+00 f t 1651 \N \N f f +836 2025-05-26 20:14:40.77845+00 2025-05-26 20:14:40.778462+00 f t 1652 \N \N f f +837 2025-05-26 20:20:43.968065+00 2025-05-26 20:20:43.968073+00 f t 1653 \N \N f f +838 2025-05-26 20:58:57.623659+00 2025-05-26 20:58:57.623666+00 f t 187 \N \N f f +839 2025-05-26 21:41:11.674233+00 2025-05-26 21:41:11.67427+00 f t 1654 \N \N f f +840 2025-05-26 21:42:42.279672+00 2025-05-26 21:42:42.279681+00 f t 1655 \N \N f f +841 2025-05-26 21:43:35.458284+00 2025-05-26 21:43:35.458291+00 f t 1656 \N \N f f +842 2025-05-26 21:46:12.81556+00 2025-05-26 21:46:12.815569+00 f t 1657 \N \N f f +843 2025-05-26 21:50:50.476646+00 2025-05-26 21:50:50.476656+00 f t 1658 \N \N f f +844 2025-05-26 22:04:16.256335+00 2025-05-26 22:04:16.256348+00 f t 1659 \N \N f f +845 2025-05-26 22:22:45.93193+00 2025-05-26 22:22:45.931937+00 f t 1660 \N \N f f +846 2025-05-26 23:05:46.270032+00 2025-05-26 23:05:46.270043+00 f t 1662 \N \N f f +847 2025-05-26 23:19:48.467754+00 2025-05-26 23:19:48.467763+00 f t 1663 \N \N f f +848 2025-05-26 23:29:45.371885+00 2025-05-26 23:29:45.371894+00 f t 1664 \N \N f f +849 2025-05-26 23:32:04.675066+00 2025-05-26 23:32:04.675077+00 f t 1665 \N \N f f +850 2025-05-26 23:35:28.46526+00 2025-05-26 23:35:28.465271+00 f t 1666 \N \N f f +851 2025-05-27 00:31:01.652361+00 2025-05-27 00:31:01.652374+00 f t 1667 \N \N f f +852 2025-05-27 00:35:48.219418+00 2025-05-27 00:35:48.219429+00 f t 1668 \N \N f f +853 2025-05-27 00:38:07.040855+00 2025-05-27 00:38:07.040866+00 f t 1669 \N \N f f +854 2025-05-27 01:13:34.828739+00 2025-05-27 01:13:34.828751+00 f t 1670 \N \N f f +855 2025-05-27 01:15:22.608636+00 2025-05-27 01:15:22.608644+00 f t 1671 \N \N f f +856 2025-05-27 01:21:15.468698+00 2025-05-27 01:21:15.468707+00 f t 1672 \N \N f f +857 2025-05-27 01:39:15.960139+00 2025-05-27 01:39:15.960146+00 f t 1673 \N \N f f +858 2025-05-27 02:02:21.722979+00 2025-05-27 02:02:21.722992+00 f t 1674 \N \N f f +859 2025-05-27 02:27:54.773912+00 2025-05-27 02:27:54.77392+00 f t 1675 \N \N f f +860 2025-05-27 02:28:28.39045+00 2025-05-27 02:28:28.390458+00 f t 1676 \N \N f f +861 2025-05-27 02:35:01.786145+00 2025-05-27 02:35:01.786159+00 f t 1677 \N \N f f +862 2025-05-27 02:40:14.306365+00 2025-05-27 02:40:14.306378+00 f t 1678 \N \N f f +863 2025-05-27 02:44:22.743503+00 2025-05-27 02:44:22.743513+00 f t 1679 \N \N f f +864 2025-05-27 02:50:23.839752+00 2025-05-27 02:50:23.839763+00 f t 1680 \N \N f f +865 2025-05-27 03:16:50.284382+00 2025-05-27 03:16:50.284389+00 f t 1681 \N \N f f +866 2025-05-27 03:28:44.238172+00 2025-05-27 03:28:44.238183+00 f t 1682 \N \N f f +867 2025-05-27 04:25:56.809409+00 2025-05-27 04:25:56.809415+00 f t 1683 \N \N f f +868 2025-05-27 04:27:26.00628+00 2025-05-27 04:27:26.006288+00 f t 1684 \N \N f f +869 2025-05-27 04:54:27.59912+00 2025-05-27 04:54:27.59913+00 f t 1685 \N \N f f +870 2025-05-27 05:24:33.760622+00 2025-05-27 05:24:33.760629+00 f t 1686 \N \N f f +871 2025-05-27 08:16:30.94102+00 2025-05-27 08:16:30.941027+00 f t 1687 \N \N f f +872 2025-05-27 09:45:16.72281+00 2025-05-27 09:45:16.722819+00 f t 1688 \N \N f f +873 2025-05-27 11:15:28.276972+00 2025-05-27 11:15:28.276982+00 f t 1689 \N \N f f +874 2025-05-27 11:23:51.005683+00 2025-05-27 11:23:51.005696+00 f t 1690 \N \N f f +875 2025-05-27 12:34:52.652064+00 2025-05-27 12:34:52.652072+00 f t 1691 \N \N f f +876 2025-05-27 12:39:07.111816+00 2025-05-27 12:39:07.111829+00 f t 1692 \N \N f f +877 2025-05-27 12:48:08.364849+00 2025-05-27 12:48:08.364858+00 f t 1605 \N \N f f +878 2025-05-27 13:17:38.228776+00 2025-05-27 13:17:38.228789+00 f t 1693 \N \N f f +879 2025-05-27 13:42:59.625994+00 2025-05-27 13:42:59.626+00 f t 1694 \N \N f f +880 2025-05-27 13:52:09.176961+00 2025-05-27 13:52:09.176969+00 f t 1695 \N \N f f +881 2025-05-27 13:54:12.377478+00 2025-05-27 13:54:12.377485+00 f t 1696 \N \N f f +882 2025-05-27 14:23:36.752716+00 2025-05-27 14:23:36.752723+00 f t 1697 \N \N f f +883 2025-05-27 14:48:18.797565+00 2025-05-27 14:48:18.797573+00 f t 1698 \N \N f f +884 2025-05-27 15:13:49.757881+00 2025-05-27 15:13:49.757894+00 f t 1700 \N \N f f +885 2025-05-27 15:27:29.289889+00 2025-05-27 15:27:29.289899+00 f t 1701 \N \N f f +886 2025-05-27 15:40:32.645825+00 2025-05-27 15:40:32.645836+00 f t 1702 \N \N f f +887 2025-05-27 15:41:34.972506+00 2025-05-27 15:41:34.972514+00 f t 1703 \N \N f f +888 2025-05-27 15:42:25.991551+00 2025-05-27 15:42:25.991558+00 f t 1704 \N \N f f +889 2025-05-27 15:46:01.669091+00 2025-05-27 15:46:01.669102+00 f t 1705 \N \N f f +890 2025-05-27 15:54:16.560408+00 2025-05-27 15:54:16.560416+00 f t 1706 \N \N f f +891 2025-05-27 15:56:47.489628+00 2025-05-27 15:56:47.489636+00 f t 1707 \N \N f f +892 2025-05-27 16:04:56.051193+00 2025-05-27 16:04:56.051202+00 f t 1709 \N \N f f +893 2025-05-27 16:39:07.51353+00 2025-05-27 16:39:07.513541+00 f t 1710 \N \N f f +894 2025-05-27 16:41:50.672647+00 2025-05-27 16:41:50.672655+00 f t 1711 \N \N f f +895 2025-05-27 16:43:21.403714+00 2025-05-27 16:43:21.403726+00 f t 1712 \N \N f f +896 2025-05-27 16:48:18.306477+00 2025-05-27 16:48:18.306484+00 f t 1713 \N \N f f +897 2025-05-27 17:04:14.292618+00 2025-05-27 17:04:14.292627+00 f t 1714 \N \N f f +898 2025-05-27 17:20:35.484345+00 2025-05-27 17:20:35.484353+00 f t 1715 \N \N f f +899 2025-05-27 17:40:07.730209+00 2025-05-27 17:40:07.730221+00 f t 1716 \N \N f f +900 2025-05-27 17:49:27.248011+00 2025-05-27 17:49:27.248023+00 f t 1718 \N \N f f +901 2025-05-27 17:50:29.931427+00 2025-05-27 17:50:29.931444+00 f t 1719 \N \N f f +902 2025-05-27 17:51:40.767259+00 2025-05-27 17:51:40.767268+00 f t 1720 \N \N f f +903 2025-05-27 17:51:47.176833+00 2025-05-27 17:51:47.176844+00 f t 1721 \N \N f f +904 2025-05-27 17:53:22.106185+00 2025-05-27 17:53:22.106193+00 f t 1722 \N \N f f +905 2025-05-27 18:30:32.540512+00 2025-05-27 18:30:32.540521+00 f t 1723 \N \N f f +906 2025-05-27 19:03:24.743056+00 2025-05-27 19:03:24.743064+00 f t 1724 \N \N f f +907 2025-05-27 19:45:57.712879+00 2025-05-27 19:45:57.712888+00 f t 1725 \N \N f f +908 2025-05-27 19:52:38.561152+00 2025-05-27 19:46:17.21498+00 f t 1726 \N \N f f +909 2025-05-27 19:52:57.759545+00 2025-05-27 19:52:57.759554+00 f t 1727 \N \N f f +910 2025-05-27 20:47:58.449079+00 2025-05-27 20:47:58.449088+00 f t 1728 \N \N f f +911 2025-05-27 21:56:20.916979+00 2025-05-27 21:56:20.916992+00 f t 1729 \N \N f f +912 2025-05-27 22:07:54.554466+00 2025-05-27 22:07:54.554473+00 f t 1730 \N \N f f +913 2025-05-27 22:36:22.397576+00 2025-05-27 22:36:22.397588+00 f t 1731 \N \N f f +914 2025-05-27 22:38:56.355793+00 2025-05-27 22:38:56.3558+00 f t 1732 \N \N f f +992 2025-05-29 16:55:28.955912+00 2025-05-29 16:55:28.955926+00 f t 1812 \N \N f f +915 2025-05-27 22:52:16.121612+00 2025-05-27 22:43:35.105849+00 f t 1733 \N \N f f +916 2025-05-27 23:31:19.138754+00 2025-05-27 23:31:19.138761+00 f t 1736 \N \N f f +917 2025-05-28 00:13:24.918756+00 2025-05-28 00:13:24.918765+00 f t 1737 \N \N f f +918 2025-05-28 00:31:52.509619+00 2025-05-28 00:31:52.509632+00 f t 1738 \N \N f f +919 2025-05-28 00:56:15.976845+00 2025-05-28 00:56:15.976858+00 f t 1739 \N \N f f +920 2025-05-28 00:59:01.402328+00 2025-05-28 00:59:01.402336+00 f t 1740 \N \N f f +921 2025-05-28 01:51:57.427904+00 2025-05-28 01:51:57.427917+00 f t 1741 \N \N f f +922 2025-05-28 01:54:10.157081+00 2025-05-28 01:54:10.157095+00 f t 1742 \N \N f f +923 2025-05-28 01:55:22.126813+00 2025-05-28 01:55:22.126823+00 f t 1743 \N \N f f +924 2025-05-28 02:01:55.985704+00 2025-05-28 02:01:55.985717+00 f t 1744 \N \N f f +925 2025-05-28 02:12:04.74319+00 2025-05-28 02:12:04.743199+00 f t 1745 \N \N f f +926 2025-05-28 02:13:22.994444+00 2025-05-28 02:13:22.994457+00 f t 1746 \N \N f f +927 2025-05-28 02:22:26.949962+00 2025-05-28 02:22:26.949973+00 f t 1747 \N \N f f +928 2025-05-28 02:25:22.482891+00 2025-05-28 02:25:22.482904+00 f t 1748 \N \N f f +929 2025-05-28 02:28:28.275315+00 2025-05-28 02:28:28.275324+00 f t 1749 \N \N f f +930 2025-05-28 02:29:58.569759+00 2025-05-28 02:29:58.569767+00 f t 1750 \N \N f f +931 2025-05-28 02:33:32.644526+00 2025-05-28 02:33:32.644539+00 f t 1751 \N \N f f +932 2025-05-28 02:37:53.25171+00 2025-05-28 02:37:53.251721+00 f t 1752 \N \N f f +933 2025-05-28 02:47:01.886321+00 2025-05-28 02:47:01.886335+00 f t 1753 \N \N f f +934 2025-05-28 02:51:25.032187+00 2025-05-28 02:51:25.032195+00 f t 1754 \N \N f f +935 2025-05-28 02:52:03.986784+00 2025-05-28 02:52:03.986793+00 f t 1755 \N \N f f +936 2025-05-28 03:19:04.822714+00 2025-05-28 03:19:04.822724+00 f t 1756 \N \N f f +937 2025-05-28 03:25:32.636869+00 2025-05-28 03:25:32.636878+00 f t 1757 \N \N f f +938 2025-05-28 03:38:12.084736+00 2025-05-28 03:38:12.084745+00 f t 1758 \N \N f f +939 2025-05-28 03:54:07.796476+00 2025-05-28 03:54:07.796485+00 f t 1759 \N \N f f +940 2025-05-28 03:58:24.799501+00 2025-05-28 03:58:24.799509+00 f t 1760 \N \N f f +941 2025-05-28 04:30:44.807334+00 2025-05-28 04:30:44.807342+00 f t 1761 \N \N f f +942 2025-05-28 09:19:04.328022+00 2025-05-28 09:19:04.328035+00 f t 1762 \N \N f f +943 2025-05-28 10:07:21.320905+00 2025-05-28 10:07:21.320915+00 f t 1763 \N \N f f +944 2025-05-28 12:02:54.45107+00 2025-05-28 12:02:54.451078+00 f t 1764 \N \N f f +945 2025-05-28 12:09:39.495597+00 2025-05-28 12:09:39.495606+00 f t 1765 \N \N f f +946 2025-05-28 12:42:54.557032+00 2025-05-28 12:42:54.557039+00 f t 1767 \N \N f f +947 2025-05-28 13:25:20.958099+00 2025-05-28 13:25:20.958121+00 f t 1768 \N \N f f +948 2025-05-28 14:48:38.432589+00 2025-05-28 14:48:38.4326+00 f t 1769 \N \N f f +949 2025-05-28 15:45:01.601611+00 2025-05-28 15:45:01.601626+00 f t 1770 \N \N f f +950 2025-05-28 15:50:09.754764+00 2025-05-28 15:50:09.754774+00 f t 1771 \N \N f f +951 2025-05-28 16:15:34.871958+00 2025-05-28 16:13:45.158127+00 f t 1772 \N \N f f +952 2025-05-28 16:44:04.665163+00 2025-05-28 16:44:04.665172+00 f t 1555 \N \N f f +953 2025-05-28 17:12:21.558719+00 2025-05-28 17:12:21.558731+00 f t 1773 \N \N f f +954 2025-05-28 18:32:25.342702+00 2025-05-28 18:32:25.342713+00 f t 1774 \N \N f f +955 2025-05-28 21:10:16.877322+00 2025-05-28 21:10:16.877335+00 f t 1775 \N \N f f +956 2025-05-28 21:24:19.439599+00 2025-05-28 21:24:19.439608+00 f t 1777 \N \N f f +957 2025-05-28 21:24:55.849361+00 2025-05-28 21:24:55.84937+00 f t 1778 \N \N f f +958 2025-05-28 21:52:57.521643+00 2025-05-28 21:51:21.870971+00 f t 1776 \N \N f f +959 2025-05-28 23:25:10.948457+00 2025-05-28 23:25:10.948469+00 f t 1779 \N \N f f +960 2025-05-28 23:42:24.887972+00 2025-05-28 23:42:24.887984+00 f t 1780 \N \N f f +961 2025-05-28 23:50:42.950168+00 2025-05-28 23:50:42.950177+00 f t 1781 \N \N f f +962 2025-05-29 00:26:04.842813+00 2025-05-29 00:26:04.842822+00 f t 1782 \N \N f f +963 2025-05-29 01:34:31.572263+00 2025-05-29 01:34:31.572277+00 f t 1783 \N \N f f +964 2025-05-29 01:53:50.443527+00 2025-05-29 01:53:50.443536+00 f t 1784 \N \N f f +965 2025-05-29 01:55:12.748777+00 2025-05-29 01:55:12.748788+00 f t 1785 \N \N f f +966 2025-05-29 02:20:15.690989+00 2025-05-29 02:20:15.690999+00 f t 1786 \N \N f f +967 2025-05-29 04:34:56.905331+00 2025-05-29 04:34:56.905339+00 f t 1787 \N \N f f +968 2025-05-29 05:19:38.153198+00 2025-05-29 05:19:38.153206+00 f t 1788 \N \N f f +969 2025-05-29 06:39:29.954146+00 2025-05-29 06:39:29.95416+00 f t 1789 \N \N f f +970 2025-05-29 06:44:20.847606+00 2025-05-29 06:44:20.847621+00 f t 1790 \N \N f f +971 2025-05-29 12:39:29.014545+00 2025-05-29 12:39:29.014557+00 f t 377 \N \N f f +972 2025-05-29 12:40:03.416024+00 2025-05-29 12:40:03.416038+00 f t 1791 \N \N f f +973 2025-05-29 12:48:45.313475+00 2025-05-29 12:48:45.313486+00 f t 1792 \N \N f f +974 2025-05-29 12:50:32.079259+00 2025-05-29 12:50:32.079269+00 f t 1793 \N \N f f +975 2025-05-29 12:55:31.72368+00 2025-05-29 12:55:31.723689+00 f t 1794 \N \N f f +976 2025-05-29 13:41:50.208248+00 2025-05-29 13:41:50.208257+00 f t 1796 \N \N f f +977 2025-05-29 13:51:33.985184+00 2025-05-29 13:51:33.985194+00 f t 1797 \N \N f f +978 2025-05-29 14:38:22.634086+00 2025-05-29 14:38:22.634098+00 f t 1799 \N \N f f +979 2025-05-29 14:41:37.385614+00 2025-05-29 14:41:37.385624+00 f t 1800 \N \N f f +980 2025-05-29 14:43:36.701278+00 2025-05-29 14:43:36.701292+00 f t 1801 \N \N f f +981 2025-05-29 14:43:37.286583+00 2025-05-29 14:43:37.286596+00 f t 1802 \N \N f f +982 2025-05-29 14:47:55.12972+00 2025-05-29 14:47:55.129734+00 f t 1803 \N \N f f +983 2025-05-29 15:02:43.370023+00 2025-05-29 15:02:43.370032+00 f t 1804 \N \N f f +984 2025-05-29 15:13:30.359154+00 2025-05-29 15:13:30.359164+00 f t 1805 \N \N f f +985 2025-05-29 15:15:11.252474+00 2025-05-29 15:15:11.252485+00 f t 1806 \N \N f f +986 2025-05-29 15:17:55.502468+00 2025-05-29 15:17:55.502475+00 f t 1807 \N \N f f +987 2025-05-29 15:50:03.683523+00 2025-05-29 15:50:03.68354+00 f t 1808 \N \N f f +989 2025-05-29 15:55:11.609535+00 2025-05-29 15:55:11.609545+00 f t 1809 \N \N f f +990 2025-05-29 16:00:22.250123+00 2025-05-29 16:00:22.250132+00 f t 1810 \N \N f f +988 2025-05-29 16:07:16.40462+00 2025-05-29 15:52:46.506172+00 f t 1009 \N \N f f +991 2025-05-29 16:35:53.356594+00 2025-05-29 16:35:53.356605+00 f t 827 \N \N f f +993 2025-05-29 16:56:27.897294+00 2025-05-29 16:56:27.897309+00 f t 1813 \N \N f f +994 2025-05-29 17:08:44.559316+00 2025-05-29 17:08:44.559325+00 f t 1814 \N \N f f +995 2025-05-29 17:44:06.168575+00 2025-05-29 17:44:06.168585+00 f t 1815 \N \N f f +996 2025-05-29 18:23:45.940866+00 2025-05-29 18:23:45.94089+00 f t 1816 \N \N f f +997 2025-05-29 18:30:25.750454+00 2025-05-29 18:30:25.750464+00 f t 1817 \N \N f f +998 2025-05-29 19:19:17.375762+00 2025-05-29 19:19:17.375772+00 f t 1818 \N \N f f +999 2025-05-29 19:32:50.521703+00 2025-05-29 19:32:50.521715+00 f t 1819 \N \N f f +1000 2025-05-29 20:15:13.02643+00 2025-05-29 20:15:13.026443+00 f t 1820 \N \N f f +1001 2025-05-29 20:22:26.518508+00 2025-05-29 20:22:26.518521+00 f t 1821 \N \N f f +1002 2025-05-29 20:22:49.156729+00 2025-05-29 20:22:49.156741+00 f t 266 \N \N f f +1003 2025-05-29 21:37:51.685486+00 2025-05-29 21:37:51.685494+00 f t 1822 \N \N f f +1004 2025-05-29 22:28:59.270282+00 2025-05-29 22:28:59.270295+00 f t 1823 \N \N f f +1005 2025-05-29 22:35:24.707978+00 2025-05-29 22:35:24.707987+00 f t 1824 \N \N f f +1006 2025-05-29 22:44:09.741971+00 2025-05-29 22:44:09.741984+00 f t 1825 \N \N f f +1007 2025-05-29 23:34:15.531854+00 2025-05-29 23:34:15.531867+00 f t 1826 \N \N f f +1008 2025-05-29 23:47:58.193091+00 2025-05-29 23:47:58.193102+00 f t 1827 \N \N f f +1009 2025-05-30 00:11:02.471469+00 2025-05-30 00:11:02.471478+00 f t 1829 \N \N f f +1010 2025-05-30 00:13:07.074418+00 2025-05-30 00:13:07.07443+00 f t 1830 \N \N f f +1011 2025-05-30 00:23:31.964927+00 2025-05-30 00:23:31.964935+00 f t 1831 \N \N f f +1012 2025-05-30 00:25:39.169914+00 2025-05-30 00:25:39.169924+00 f t 1832 \N \N f f +1013 2025-05-30 00:27:25.801402+00 2025-05-30 00:27:25.801411+00 f t 1833 \N \N f f +1014 2025-05-30 00:43:09.009059+00 2025-05-30 00:43:09.00907+00 f t 1834 \N \N f f +1015 2025-05-30 01:35:55.750776+00 2025-05-30 01:35:55.750786+00 f t 1835 \N \N f f +1016 2025-05-30 01:37:14.140224+00 2025-05-30 01:37:14.140232+00 f t 1836 \N \N f f +1017 2025-05-30 01:37:15.447003+00 2025-05-30 01:37:15.447013+00 f t 1837 \N \N f f +1018 2025-05-30 02:22:37.790609+00 2025-05-30 02:22:37.790619+00 f t 1838 \N \N f f +1019 2025-05-30 02:35:22.858591+00 2025-05-30 02:35:22.858602+00 f t 1839 \N \N f f +1020 2025-05-30 03:07:51.891821+00 2025-05-30 03:07:51.891833+00 f t 1840 \N \N f f +1021 2025-05-30 03:42:25.455651+00 2025-05-30 03:42:25.45566+00 f t 1841 \N \N f f +1022 2025-05-30 04:01:16.898735+00 2025-05-30 04:01:16.898746+00 f t 1842 \N \N f f +1023 2025-05-30 11:06:33.509358+00 2025-05-30 11:06:33.509373+00 f t 1843 \N \N f f +1024 2025-05-30 11:11:27.874376+00 2025-05-30 11:11:27.87439+00 f t 1844 \N \N f f +1025 2025-05-30 11:17:11.00677+00 2025-05-30 11:17:11.006782+00 f t 1845 \N \N f f +1026 2025-05-30 11:36:28.437291+00 2025-05-30 11:36:28.437304+00 f t 1846 \N \N f f +1027 2025-05-30 11:36:44.433677+00 2025-05-30 11:36:44.433689+00 f t 1847 \N \N f f +1028 2025-05-30 11:59:54.730783+00 2025-05-30 11:59:54.730795+00 f t 1848 \N \N f f +1029 2025-05-30 12:03:50.484948+00 2025-05-30 12:03:50.484957+00 f t 1849 \N \N f f +1030 2025-05-30 12:07:53.528887+00 2025-05-30 12:07:53.528899+00 f t 1850 \N \N f f +1031 2025-05-30 12:16:26.552361+00 2025-05-30 12:16:26.55238+00 f t 1851 \N \N f f +1032 2025-05-30 12:27:14.944637+00 2025-05-30 12:27:14.944646+00 f t 1852 \N \N f f +1033 2025-05-30 12:44:47.812163+00 2025-05-30 12:44:47.812173+00 f t 1853 \N \N f f +1034 2025-05-30 12:46:37.381297+00 2025-05-30 12:46:37.381305+00 f t 1854 \N \N f f +1035 2025-05-30 13:06:19.589131+00 2025-05-30 13:06:19.589141+00 f t 1855 \N \N f f +1036 2025-05-30 14:29:34.96097+00 2025-05-30 14:29:34.96098+00 f t 1856 \N \N f f +1037 2025-05-30 15:32:29.112891+00 2025-05-30 15:32:29.112903+00 f t 1857 \N \N f f +1038 2025-05-30 15:39:50.179467+00 2025-05-30 15:39:50.17948+00 f t 1858 \N \N f f +1039 2025-05-30 15:56:22.776837+00 2025-05-30 15:56:22.776847+00 f t 1859 \N \N f f +1040 2025-05-30 16:25:32.004619+00 2025-05-30 16:25:32.004627+00 f t 1860 \N \N f f +1041 2025-05-30 16:26:26.961795+00 2025-05-30 16:26:26.961806+00 f t 1861 \N \N f f +1042 2025-05-30 17:02:20.588767+00 2025-05-30 17:02:20.588774+00 f t 1862 \N \N f f +1043 2025-05-30 17:48:33.075167+00 2025-05-30 17:48:33.075182+00 f t 1865 \N \N f f +1044 2025-05-30 18:02:41.293508+00 2025-05-30 18:02:41.293518+00 f t 1866 \N \N f f +1045 2025-05-30 18:03:16.408241+00 2025-05-30 18:03:16.40825+00 f t 1867 \N \N f f +1046 2025-05-30 18:04:16.1773+00 2025-05-30 18:04:16.177309+00 f t 1868 \N \N f f +1047 2025-05-30 18:18:32.85298+00 2025-05-30 18:18:32.852993+00 f t 1869 \N \N f f +1048 2025-05-30 18:41:19.76888+00 2025-05-30 18:41:19.768889+00 f t 1870 \N \N f f +1049 2025-05-30 20:28:34.386323+00 2025-05-30 20:28:34.386334+00 f t 1871 \N \N f f +1050 2025-05-30 20:35:10.241171+00 2025-05-30 20:35:10.241183+00 f t 1872 \N \N f f +1051 2025-05-30 20:35:27.688554+00 2025-05-30 20:35:27.688562+00 f t 1873 \N \N f f +1052 2025-05-30 20:41:45.735756+00 2025-05-30 20:41:45.735764+00 f t 1874 \N \N f f +1053 2025-05-30 20:50:14.048479+00 2025-05-30 20:50:14.048487+00 f t 1875 \N \N f f +1054 2025-05-30 21:23:08.989965+00 2025-05-30 21:23:08.989976+00 f t 1876 \N \N f f +1055 2025-05-30 21:23:58.768874+00 2025-05-30 21:23:58.768882+00 f t 1877 \N \N f f +1056 2025-05-30 21:24:50.070098+00 2025-05-30 21:24:50.070106+00 f t 1878 \N \N f f +1057 2025-05-30 21:46:09.689674+00 2025-05-30 21:46:09.689683+00 f t 1879 \N \N f f +1058 2025-05-30 21:46:41.349692+00 2025-05-30 21:46:41.349705+00 f t 1880 \N \N f f +1059 2025-05-30 21:49:59.014548+00 2025-05-30 21:49:59.014558+00 f t 1881 \N \N f f +1060 2025-05-30 21:56:57.129114+00 2025-05-30 21:56:57.129123+00 f t 1882 \N \N f f +1061 2025-05-30 22:29:35.419737+00 2025-05-30 22:29:35.419748+00 f t 1885 \N \N f f +1062 2025-05-30 23:27:26.075633+00 2025-05-30 23:27:26.075645+00 f t 1886 \N \N f f +1063 2025-05-30 23:37:30.503098+00 2025-05-30 23:37:30.503112+00 f t 1887 \N \N f f +1064 2025-05-31 00:18:16.495086+00 2025-05-31 00:18:16.495097+00 f t 1889 \N \N f f +1065 2025-05-31 00:18:50.352547+00 2025-05-31 00:18:50.352559+00 f t 1890 \N \N f f +1066 2025-05-31 00:20:54.997241+00 2025-05-31 00:20:54.997252+00 f t 1891 \N \N f f +1067 2025-05-31 00:45:02.911729+00 2025-05-31 00:45:02.911743+00 f t 1892 \N \N f f +1068 2025-05-31 00:45:25.081378+00 2025-05-31 00:45:25.081387+00 f t 1893 \N \N f f +1069 2025-05-31 01:01:18.391513+00 2025-05-31 01:01:18.391524+00 f t 1894 \N \N f f +1070 2025-05-31 01:04:14.623396+00 2025-05-31 01:04:14.623406+00 f t 1895 \N \N f f +1071 2025-05-31 01:36:17.65459+00 2025-05-31 01:36:17.654598+00 f t 1896 \N \N f f +1072 2025-05-31 01:37:43.690754+00 2025-05-31 01:37:43.690762+00 f t 1897 \N \N f f +1073 2025-05-31 01:41:53.088229+00 2025-05-31 01:41:53.088238+00 f t 1898 \N \N f f +1074 2025-05-31 02:12:00.494568+00 2025-05-31 02:12:00.494582+00 f t 1899 \N \N f f +1075 2025-05-31 02:12:20.192296+00 2025-05-31 02:12:20.192308+00 f t 1900 \N \N f f +1076 2025-05-31 02:43:46.933801+00 2025-05-31 02:43:46.93381+00 f t 1901 \N \N f f +1077 2025-05-31 03:30:25.617451+00 2025-05-31 03:30:25.617462+00 f t 1902 \N \N f f +1078 2025-05-31 03:35:07.157778+00 2025-05-31 03:35:07.157792+00 f t 1903 \N \N f f +1079 2025-05-31 03:38:25.933329+00 2025-05-31 03:38:25.933342+00 f t 1904 \N \N f f +1080 2025-05-31 03:40:31.305907+00 2025-05-31 03:40:31.305915+00 f t 1905 \N \N f f +1081 2025-05-31 05:02:10.80068+00 2025-05-31 05:02:10.800689+00 f t 1906 \N \N f f +1082 2025-05-31 07:05:52.283616+00 2025-05-31 07:05:52.283625+00 f t 1907 \N \N f f +1083 2025-05-31 09:51:52.275886+00 2025-05-31 09:51:52.275896+00 f t 1908 \N \N f f +1084 2025-05-31 09:58:03.463965+00 2025-05-31 09:58:03.463977+00 f t 1909 \N \N f f +1085 2025-05-31 10:59:58.186226+00 2025-05-31 10:59:58.186237+00 f t 1910 \N \N f f +1086 2025-05-31 12:03:59.354193+00 2025-05-31 12:03:59.354202+00 f t 1911 \N \N f f +1087 2025-05-31 13:06:16.964323+00 2025-05-31 13:06:16.964333+00 f t 1912 \N \N f f +1088 2025-05-31 13:08:37.949301+00 2025-05-31 13:08:37.949309+00 f t 1913 \N \N f f +1089 2025-05-31 13:24:02.308136+00 2025-05-31 13:24:02.308168+00 f t 1914 \N \N f f +1090 2025-05-31 13:44:21.880254+00 2025-05-31 13:44:21.880262+00 f t 1915 \N \N f f +1091 2025-05-31 13:54:28.681075+00 2025-05-31 13:54:28.681084+00 f t 1916 \N \N f f +1092 2025-05-31 13:55:48.190353+00 2025-05-31 13:55:48.19036+00 f t 1917 \N \N f f +1093 2025-05-31 13:57:48.634692+00 2025-05-31 13:57:48.634703+00 f t 1918 \N \N f f +1094 2025-05-31 13:58:56.845114+00 2025-05-31 13:58:56.845121+00 f t 1919 \N \N f f +1095 2025-05-31 14:48:31.322928+00 2025-05-31 14:48:31.322936+00 f t 1920 \N \N f f +1096 2025-05-31 14:55:43.009193+00 2025-05-31 14:55:43.009202+00 f t 1921 \N \N f f +1097 2025-05-31 15:06:09.809898+00 2025-05-31 15:06:09.809909+00 f t 1922 \N \N f f +1098 2025-05-31 15:17:39.088735+00 2025-05-31 15:17:39.088743+00 f t 1923 \N \N f f +1099 2025-05-31 16:00:54.023234+00 2025-05-31 16:00:54.023245+00 f t 1924 \N \N f f +1100 2025-05-31 16:15:45.651787+00 2025-05-31 16:15:45.651797+00 f t 1925 \N \N f f +1101 2025-05-31 16:46:26.174629+00 2025-05-31 16:46:26.174639+00 f t 1926 \N \N f f +1102 2025-05-31 17:12:36.708408+00 2025-05-31 17:12:36.708419+00 f t 1927 \N \N f f +1103 2025-05-31 17:18:20.964353+00 2025-05-31 17:18:20.964361+00 f t 1928 \N \N f f +1104 2025-05-31 17:32:43.807023+00 2025-05-31 17:32:43.807035+00 f t 1929 \N \N f f +1105 2025-05-31 17:34:48.736435+00 2025-05-31 17:34:48.736443+00 f t 1930 \N \N f f +1106 2025-05-31 17:36:47.574381+00 2025-05-31 17:36:47.574391+00 f t 1931 \N \N f f +1107 2025-05-31 17:54:11.469497+00 2025-05-31 17:54:11.46951+00 f t 1932 \N \N f f +1108 2025-05-31 18:20:03.221621+00 2025-05-31 18:20:03.221635+00 f t 1933 \N \N f f +1109 2025-05-31 18:24:14.483761+00 2025-05-31 18:24:14.483775+00 f t 1934 \N \N f f +1110 2025-05-31 19:12:27.769677+00 2025-05-31 19:12:27.769685+00 f t 1935 \N \N f f +1111 2025-05-31 19:50:24.803738+00 2025-05-31 19:50:24.803751+00 f t 1936 \N \N f f +1112 2025-05-31 20:50:03.099264+00 2025-05-31 20:50:03.099279+00 f t 1937 \N \N f f +1113 2025-05-31 20:55:40.552952+00 2025-05-31 20:55:40.552964+00 f t 1938 \N \N f f +1114 2025-05-31 21:29:02.958798+00 2025-05-31 21:29:02.95881+00 f t 1939 \N \N f f +1115 2025-05-31 22:13:30.002038+00 2025-05-31 22:13:30.002049+00 f t 1942 \N \N f f +1116 2025-05-31 22:34:47.996714+00 2025-05-31 22:34:47.996796+00 f t 1943 \N \N f f +1117 2025-05-31 23:40:16.541725+00 2025-05-31 23:40:16.541736+00 f t 1944 \N \N f f +1118 2025-05-31 23:41:09.484186+00 2025-05-31 23:41:09.484194+00 f t 1945 \N \N f f +1119 2025-05-31 23:44:32.868891+00 2025-05-31 23:44:32.868903+00 f t 1946 \N \N f f +1120 2025-05-31 23:49:00.094481+00 2025-05-31 23:49:00.094492+00 f t 1947 \N \N f f +1121 2025-06-01 00:01:01.505253+00 2025-06-01 00:01:01.505267+00 f t 1948 \N \N f f +1122 2025-06-01 00:02:44.420182+00 2025-06-01 00:02:44.420192+00 f t 1949 \N \N f f +1123 2025-06-01 00:37:55.075831+00 2025-06-01 00:37:55.075848+00 f t 1950 \N \N f f +1124 2025-06-01 00:51:11.426838+00 2025-06-01 00:51:11.426849+00 f t 1951 \N \N f f +1125 2025-06-01 02:22:33.30461+00 2025-06-01 02:22:33.304623+00 f t 1952 \N \N f f +1126 2025-06-01 02:31:58.52213+00 2025-06-01 02:31:58.522139+00 f t 1953 \N \N f f +1127 2025-06-01 03:59:53.428387+00 2025-06-01 03:59:53.428396+00 f t 1954 \N \N f f +1128 2025-06-01 04:24:16.647679+00 2025-06-01 04:24:16.647687+00 f t 1955 \N \N f f +1129 2025-06-01 05:55:05.659966+00 2025-06-01 05:55:05.659979+00 f t 1956 \N \N f f +1130 2025-06-01 06:44:33.101709+00 2025-06-01 06:44:33.101718+00 f t 1957 \N \N f f +1131 2025-06-01 06:59:01.334595+00 2025-06-01 06:59:01.334603+00 f t 1958 \N \N f f +1132 2025-06-01 07:01:07.434718+00 2025-06-01 07:01:07.434726+00 f t 1959 \N \N f f +1133 2025-06-01 07:26:11.581948+00 2025-06-01 07:26:11.581956+00 f t 1960 \N \N f f +1134 2025-06-01 11:34:08.590999+00 2025-06-01 11:34:08.591008+00 f t 1961 \N \N f f +1135 2025-06-01 11:51:41.406064+00 2025-06-01 11:51:41.406075+00 f t 1962 \N \N f f +1136 2025-06-01 12:40:04.608623+00 2025-06-01 12:40:04.608637+00 f t 1963 \N \N f f +1137 2025-06-01 12:42:01.941027+00 2025-06-01 12:42:01.941043+00 f t 1964 \N \N f f +1138 2025-06-01 12:42:41.136664+00 2025-06-01 12:42:41.136674+00 f t 1965 \N \N f f +1139 2025-06-01 13:00:37.379508+00 2025-06-01 13:00:37.379522+00 f t 1966 \N \N f f +1140 2025-06-01 13:34:50.581074+00 2025-06-01 13:34:50.581084+00 f t 1967 \N \N f f +1141 2025-06-01 13:42:48.157771+00 2025-06-01 13:42:48.15778+00 f t 1968 \N \N f f +1142 2025-06-01 14:12:55.249483+00 2025-06-01 14:12:55.249495+00 f t 1969 \N \N f f +1143 2025-06-01 14:47:04.02619+00 2025-06-01 14:47:04.026201+00 f t 1970 \N \N f f +1144 2025-06-01 14:55:07.774082+00 2025-06-01 14:55:07.77409+00 f t 1971 \N \N f f +1145 2025-06-01 16:20:50.157937+00 2025-06-01 16:20:50.157949+00 f t 1972 \N \N f f +1146 2025-06-01 18:22:20.734148+00 2025-06-01 18:22:20.734156+00 f t 1973 \N \N f f +1147 2025-06-01 18:32:34.935485+00 2025-06-01 18:32:34.935495+00 f t 1974 \N \N f f +1148 2025-06-01 18:43:21.698563+00 2025-06-01 18:43:21.698571+00 f t 1975 \N \N f f +1149 2025-06-01 21:07:22.354864+00 2025-06-01 21:07:22.354876+00 f t 1977 \N \N f f +1150 2025-06-01 21:43:41.034318+00 2025-06-01 21:35:57.190177+00 f t 1978 \N \N f f +1151 2025-06-01 22:18:39.466322+00 2025-06-01 22:18:39.466332+00 f t 1979 \N \N f f +1152 2025-06-01 22:40:54.710661+00 2025-06-01 22:40:54.710671+00 f t 1980 \N \N f f +1153 2025-06-01 22:43:17.143211+00 2025-06-01 22:43:17.14322+00 f t 1981 \N \N f f +1154 2025-06-01 22:51:00.712553+00 2025-06-01 22:51:00.712561+00 f t 1982 \N \N f f +1155 2025-06-01 23:03:24.454048+00 2025-06-01 23:03:24.454056+00 f t 1983 \N \N f f +1156 2025-06-02 00:48:10.528189+00 2025-06-02 00:48:10.528201+00 f t 1984 \N \N f f +1157 2025-06-02 00:52:46.977483+00 2025-06-02 00:52:46.977496+00 f t 1009 \N \N f f +1158 2025-06-02 01:05:11.719913+00 2025-06-02 01:05:11.719925+00 f t 1985 \N \N f f +1159 2025-06-02 01:15:00.911924+00 2025-06-02 01:15:00.911934+00 f t 1986 \N \N f f +1160 2025-06-02 01:22:31.084692+00 2025-06-02 01:22:31.084701+00 f t 1987 \N \N f f +1161 2025-06-02 02:13:11.800329+00 2025-06-02 02:13:11.800342+00 f t 1988 \N \N f f +1162 2025-06-02 02:13:58.394419+00 2025-06-02 02:13:58.394431+00 f t 1989 \N \N f f +1163 2025-06-02 02:28:41.78499+00 2025-06-02 02:28:41.785+00 f t 1990 \N \N f f +1164 2025-06-02 02:42:04.938061+00 2025-06-02 02:42:04.938072+00 f t 1991 \N \N f f +1165 2025-06-02 03:20:36.437049+00 2025-06-02 03:20:36.437059+00 f t 1992 \N \N f f +1166 2025-06-02 03:57:35.108274+00 2025-06-02 03:57:35.10831+00 f t 1993 \N \N f f +1167 2025-06-02 04:00:42.84569+00 2025-06-02 04:00:42.845704+00 f t 1994 \N \N f f +1168 2025-06-02 05:25:18.812095+00 2025-06-02 05:25:18.812107+00 f t 1995 \N \N f f +1169 2025-06-02 07:44:21.799459+00 2025-06-02 07:44:21.799467+00 f t 1996 \N \N f f +1170 2025-06-02 07:51:51.374626+00 2025-06-02 07:51:51.374635+00 f t 1997 \N \N f f +1171 2025-06-02 08:31:18.315739+00 2025-06-02 08:31:18.315747+00 f t 1998 \N \N f f +1172 2025-06-02 08:57:56.989645+00 2025-06-02 08:57:56.989653+00 f t 1999 \N \N f f +1173 2025-06-02 09:06:08.315905+00 2025-06-02 09:06:08.315914+00 f t 2000 \N \N f f +1174 2025-06-02 09:07:19.347344+00 2025-06-02 09:07:19.347383+00 f t 2001 \N \N f f +1175 2025-06-02 09:10:30.237104+00 2025-06-02 09:10:30.237116+00 f t 2002 \N \N f f +1176 2025-06-02 09:11:26.597881+00 2025-06-02 09:11:26.597888+00 f t 2003 \N \N f f +1177 2025-06-02 10:46:10.177166+00 2025-06-02 10:46:10.177174+00 f t 2004 \N \N f f +1178 2025-06-02 12:02:19.247597+00 2025-06-02 12:02:19.247612+00 f t 2005 \N \N f f +1179 2025-06-02 12:42:07.494499+00 2025-06-02 12:42:07.494511+00 f t 2006 \N \N f f +1180 2025-06-02 12:42:19.150467+00 2025-06-02 12:42:19.150475+00 f t 2007 \N \N f f +1181 2025-06-02 13:01:40.933132+00 2025-06-02 13:01:40.93314+00 f t 2008 \N \N f f +1182 2025-06-02 13:09:22.700693+00 2025-06-02 13:09:22.700701+00 f t 2009 \N \N f f +1183 2025-06-02 13:15:59.801279+00 2025-06-02 13:15:59.80129+00 f t 2010 \N \N f f +1184 2025-06-02 13:27:06.717132+00 2025-06-02 13:27:06.717141+00 f t 2011 \N \N f f +1185 2025-06-02 13:34:53.443492+00 2025-06-02 13:34:53.443501+00 f t 2012 \N \N f f +1186 2025-06-02 13:36:17.296585+00 2025-06-02 13:36:17.296596+00 f t 2013 \N \N f f +1187 2025-06-02 14:44:18.298186+00 2025-06-02 14:44:18.298194+00 f t 2014 \N \N f f +1188 2025-06-02 15:58:38.938566+00 2025-06-02 15:58:38.938574+00 f t 2016 \N \N f f +1189 2025-06-02 16:07:05.79734+00 2025-06-02 16:07:05.797352+00 f t 2017 \N \N f f +1190 2025-06-02 16:19:04.518434+00 2025-06-02 16:19:04.518449+00 f t 2018 \N \N f f +1191 2025-06-02 16:21:56.755701+00 2025-06-02 16:21:56.75571+00 f t 2019 \N \N f f +1192 2025-06-02 16:27:59.21287+00 2025-06-02 16:25:50.48206+00 f t 2020 \N \N f f +1193 2025-06-02 16:28:20.16103+00 2025-06-02 16:28:20.161043+00 f t 2021 \N \N f f +1194 2025-06-02 16:48:29.178676+00 2025-06-02 16:48:29.178687+00 f t 2022 \N \N f f +1195 2025-06-02 16:54:30.13038+00 2025-06-02 16:54:30.130393+00 f t 2023 \N \N f f +1196 2025-06-02 17:17:46.197165+00 2025-06-02 17:17:46.197174+00 f t 2024 \N \N f f +1197 2025-06-02 18:19:01.574762+00 2025-06-02 18:19:01.574774+00 f t 2025 \N \N f f +1198 2025-06-02 18:22:21.982446+00 2025-06-02 18:22:21.982457+00 f t 2026 \N \N f f +1199 2025-06-02 18:46:09.81201+00 2025-06-02 18:46:09.812019+00 f t 2027 \N \N f f +1200 2025-06-02 19:00:16.660459+00 2025-06-02 19:00:16.660474+00 f t 2029 \N \N f f +1201 2025-06-02 19:07:29.310111+00 2025-06-02 19:07:29.310123+00 f t 2030 \N \N f f +1202 2025-06-02 19:11:34.855708+00 2025-06-02 19:11:34.855717+00 f t 2031 \N \N f f +1203 2025-06-02 19:41:22.77592+00 2025-06-02 19:41:22.775931+00 f t 2032 \N \N f f +1204 2025-06-02 19:44:10.414603+00 2025-06-02 19:44:10.414612+00 f t 2033 \N \N f f +1205 2025-06-02 19:46:04.232509+00 2025-06-02 19:46:04.232518+00 f t 2034 \N \N f f +1206 2025-06-02 20:10:15.056409+00 2025-06-02 20:10:15.056419+00 f t 2036 \N \N f f +1207 2025-06-02 20:11:10.914852+00 2025-06-02 20:11:10.914865+00 f t 2037 \N \N f f +1208 2025-06-02 20:11:14.861775+00 2025-06-02 20:11:14.861784+00 f t 2038 \N \N f f +1209 2025-06-02 20:12:17.614612+00 2025-06-02 20:12:17.614626+00 f t 2039 \N \N f f +1210 2025-06-02 20:12:51.432238+00 2025-06-02 20:12:51.432247+00 f t 2040 \N \N f f +1211 2025-06-02 20:12:54.800458+00 2025-06-02 20:12:54.800467+00 f t 2041 \N \N f f +1212 2025-06-02 20:18:17.589847+00 2025-06-02 20:18:17.589856+00 f t 2043 \N \N f f +1213 2025-06-02 20:24:31.764195+00 2025-06-02 20:24:31.764202+00 f t 2044 \N \N f f +1214 2025-06-02 20:25:52.99099+00 2025-06-02 20:25:52.991002+00 f t 2045 \N \N f f +1215 2025-06-02 20:53:56.489836+00 2025-06-02 20:53:56.489844+00 f t 2046 \N \N f f +1216 2025-06-02 21:10:32.243259+00 2025-06-02 21:10:32.243275+00 f t 2047 \N \N f f +1217 2025-06-02 21:14:42.462184+00 2025-06-02 21:14:42.462194+00 f t 2048 \N \N f f +1218 2025-06-02 21:18:59.816027+00 2025-06-02 21:18:59.816034+00 f t 2049 \N \N f f +1219 2025-06-02 21:20:36.718773+00 2025-06-02 21:20:36.718784+00 f t 2050 \N \N f f +1220 2025-06-02 22:08:08.896697+00 2025-06-02 22:08:08.896705+00 f t 2051 \N \N f f +1221 2025-06-02 22:11:40.963531+00 2025-06-02 22:11:40.963539+00 f t 2052 \N \N f f +1222 2025-06-02 22:49:44.802783+00 2025-06-02 22:49:44.80282+00 f t 2053 \N \N f f +1223 2025-06-02 23:41:37.121094+00 2025-06-02 23:41:37.121104+00 f t 2054 \N \N f f +1224 2025-06-02 23:44:53.384477+00 2025-06-02 23:44:53.384485+00 f t 2055 \N \N f f +1225 2025-06-03 00:14:18.848203+00 2025-06-03 00:14:18.848216+00 f t 2056 \N \N f f +1226 2025-06-03 01:14:51.03374+00 2025-06-03 01:14:51.033748+00 f t 2059 \N \N f f +1227 2025-06-03 01:41:43.414427+00 2025-06-03 01:41:43.414445+00 f t 2060 \N \N f f +1228 2025-06-03 01:44:21.655122+00 2025-06-03 01:44:21.655132+00 f t 2061 \N \N f f +1229 2025-06-03 01:47:45.68435+00 2025-06-03 01:47:45.68436+00 f t 2062 \N \N f f +1230 2025-06-03 01:59:55.0524+00 2025-06-03 01:59:55.052411+00 f t 2063 \N \N f f +1231 2025-06-03 02:00:57.474205+00 2025-06-03 02:00:57.474217+00 f t 2064 \N \N f f +1232 2025-06-03 02:15:08.637372+00 2025-06-03 02:15:08.637384+00 f t 2065 \N \N f f +1233 2025-06-03 02:16:08.122854+00 2025-06-03 02:16:08.122862+00 f t 2066 \N \N f f +1234 2025-06-03 02:20:54.152652+00 2025-06-03 02:20:54.152663+00 f t 2067 \N \N f f +1235 2025-06-03 02:30:56.759897+00 2025-06-03 02:30:56.759908+00 f t 2068 \N \N f f +1236 2025-06-03 02:53:43.176045+00 2025-06-03 02:53:43.176056+00 f t 2069 \N \N f f +1237 2025-06-03 04:02:16.719013+00 2025-06-03 04:02:16.719025+00 f t 2070 \N \N f f +1238 2025-06-03 08:19:57.122807+00 2025-06-03 08:19:57.122815+00 f t 2071 \N \N f f +1239 2025-06-03 09:02:37.051235+00 2025-06-03 09:02:37.051244+00 f t 2072 \N \N f f +1240 2025-06-03 10:57:49.556039+00 2025-06-03 10:57:49.556047+00 f t 2073 \N \N f f +1241 2025-06-03 11:31:55.598802+00 2025-06-03 11:31:55.598812+00 f t 2074 \N \N f f +1242 2025-06-03 11:54:07.686396+00 2025-06-03 11:54:07.686403+00 f t 2075 \N \N f f +1243 2025-06-03 11:58:32.923745+00 2025-06-03 11:58:32.923753+00 f t 2076 \N \N f f +1244 2025-06-03 13:26:43.139+00 2025-06-03 13:26:43.139007+00 f t 2077 \N \N f f +1245 2025-06-03 13:45:44.479696+00 2025-06-03 13:45:44.479704+00 f t 2078 \N \N f f +1246 2025-06-03 14:00:37.743218+00 2025-06-03 14:00:37.743228+00 f t 2079 \N \N f f +2705 2025-06-29 22:25:09.932166+00 2025-06-29 22:25:09.932176+00 f t 3615 \N \N f f +1248 2025-06-03 14:22:52.350852+00 2025-06-03 14:22:52.350862+00 f t 2081 \N \N f f +1249 2025-06-03 14:23:59.985795+00 2025-06-03 14:23:59.985802+00 f t 2082 \N \N f f +1350 2025-06-05 02:30:35.785622+00 2025-06-05 02:30:35.785631+00 f t 2190 \N \N f f +1351 2025-06-05 02:45:53.448848+00 2025-06-05 02:45:53.448856+00 f t 2191 \N \N f f +1352 2025-06-05 02:46:23.542087+00 2025-06-05 02:46:23.542099+00 f t 2192 \N \N f f +1353 2025-06-05 03:55:03.807487+00 2025-06-05 03:55:03.807502+00 f t 2193 \N \N f f +1247 2025-06-03 14:43:05.725497+00 2025-06-03 14:19:49.036995+00 f t 2080 \N \N f f +1250 2025-06-03 14:55:34.857103+00 2025-06-03 14:55:34.857112+00 f t 2083 \N \N f f +1251 2025-06-03 15:07:01.506079+00 2025-06-03 15:07:01.506089+00 f t 2084 \N \N f f +1252 2025-06-03 15:18:29.797341+00 2025-06-03 15:18:29.797349+00 f t 2085 \N \N f f +1253 2025-06-03 15:38:39.080159+00 2025-06-03 15:38:39.080171+00 f t 2086 \N \N f f +1254 2025-06-03 15:46:18.889169+00 2025-06-03 15:46:18.889176+00 f t 2087 \N \N f f +1255 2025-06-03 15:51:05.260936+00 2025-06-03 15:51:05.260944+00 f t 2088 \N \N f f +1256 2025-06-03 15:58:24.563749+00 2025-06-03 15:58:24.563757+00 f t 2089 \N \N f f +1257 2025-06-03 16:03:08.401788+00 2025-06-03 16:03:08.401794+00 f t 2090 \N \N f f +1258 2025-06-03 16:13:10.254849+00 2025-06-03 16:13:10.254857+00 f t 2091 \N \N f f +1259 2025-06-03 16:14:38.812799+00 2025-06-03 16:14:38.812805+00 f t 2092 \N \N f f +1260 2025-06-03 16:43:52.243256+00 2025-06-03 16:43:52.243263+00 f t 2093 \N \N f f +1261 2025-06-03 17:20:02.423849+00 2025-06-03 17:20:02.42386+00 f t 2095 \N \N f f +1262 2025-06-03 18:00:18.82954+00 2025-06-03 17:57:13.305477+00 f t 301 \N \N f f +1263 2025-06-03 18:36:56.212595+00 2025-06-03 18:36:56.212604+00 f t 2096 \N \N f f +1264 2025-06-03 18:44:50.283622+00 2025-06-03 18:44:50.283635+00 f t 2097 \N \N f f +1265 2025-06-03 18:53:12.370336+00 2025-06-03 18:53:12.370345+00 f t 2098 \N \N f f +1266 2025-06-03 19:38:10.103626+00 2025-06-03 19:38:10.103637+00 f t 2099 \N \N f f +1267 2025-06-03 20:02:39.70909+00 2025-06-03 20:02:39.7091+00 f t 2100 \N \N f f +1268 2025-06-03 20:16:28.480521+00 2025-06-03 20:16:28.480531+00 f t 2101 \N \N f f +1269 2025-06-03 20:25:26.625207+00 2025-06-03 20:25:26.625249+00 f t 2102 \N \N f f +1270 2025-06-03 21:01:26.054098+00 2025-06-03 21:01:26.054107+00 f t 2103 \N \N f f +1271 2025-06-03 21:58:42.244576+00 2025-06-03 21:58:42.244582+00 f t 2104 \N \N f f +1272 2025-06-03 22:01:27.233447+00 2025-06-03 22:01:27.233455+00 f t 2105 \N \N f f +1273 2025-06-03 22:05:33.417715+00 2025-06-03 22:05:33.417722+00 f t 2106 \N \N f f +1274 2025-06-03 22:23:40.459256+00 2025-06-03 22:23:40.459263+00 f t 2107 \N \N f f +1275 2025-06-03 22:29:46.601028+00 2025-06-03 22:29:46.601036+00 f t 2108 \N \N f f +1276 2025-06-03 23:02:10.722309+00 2025-06-03 23:02:10.722317+00 f t 2109 \N \N f f +1277 2025-06-03 23:30:26.141232+00 2025-06-03 23:30:26.141239+00 f t 2110 \N \N f f +1278 2025-06-03 23:41:28.700007+00 2025-06-03 23:41:28.700013+00 f t 2111 \N \N f f +1279 2025-06-03 23:43:14.987959+00 2025-06-03 23:43:14.987987+00 f t 2112 \N \N f f +1280 2025-06-04 01:46:28.908852+00 2025-06-04 01:46:28.908863+00 f t 2114 \N \N f f +1281 2025-06-04 01:51:34.057756+00 2025-06-04 01:51:34.057764+00 f t 2115 \N \N f f +1282 2025-06-04 01:56:57.453516+00 2025-06-04 01:56:57.453527+00 f t 2116 \N \N f f +1283 2025-06-04 02:01:45.951665+00 2025-06-04 02:01:45.951673+00 f t 2117 \N \N f f +1284 2025-06-04 02:09:30.477304+00 2025-06-04 02:09:30.477315+00 f t 2118 \N \N f f +1285 2025-06-04 02:21:34.820038+00 2025-06-04 02:21:34.820045+00 f t 2119 \N \N f f +1286 2025-06-04 02:30:21.734491+00 2025-06-04 02:30:21.734503+00 f t 2120 \N \N f f +1287 2025-06-04 02:42:57.492346+00 2025-06-04 02:42:57.492353+00 f t 2121 \N \N f f +1288 2025-06-04 02:48:48.666628+00 2025-06-04 02:48:48.666637+00 f t 2122 \N \N f f +1289 2025-06-04 02:56:27.574623+00 2025-06-04 02:56:27.574629+00 f t 2123 \N \N f f +1290 2025-06-04 03:03:16.762277+00 2025-06-04 03:03:16.762286+00 f t 2124 \N \N f f +1291 2025-06-04 03:38:33.440766+00 2025-06-04 03:38:33.440773+00 f t 2125 \N \N f f +1292 2025-06-04 03:45:24.01548+00 2025-06-04 03:45:24.015489+00 f t 2126 \N \N f f +1293 2025-06-04 05:37:13.948045+00 2025-06-04 05:37:13.948052+00 f t 2127 \N \N f f +1294 2025-06-04 05:38:29.23011+00 2025-06-04 05:38:29.230118+00 f t 2128 \N \N f f +1295 2025-06-04 05:47:57.118078+00 2025-06-04 05:47:57.118087+00 f t 2129 \N \N f f +1296 2025-06-04 08:22:31.073423+00 2025-06-04 08:22:31.073434+00 f t 2130 \N \N f f +1297 2025-06-04 09:16:57.153376+00 2025-06-04 09:16:57.153383+00 f t 2131 \N \N f f +1298 2025-06-04 09:24:27.714641+00 2025-06-04 09:24:27.714648+00 f t 2132 \N \N f f +1299 2025-06-04 09:38:31.009747+00 2025-06-04 09:38:31.009757+00 f t 2133 \N \N f f +1300 2025-06-04 10:25:47.227668+00 2025-06-04 10:25:47.227679+00 f t 2134 \N \N f f +1301 2025-06-04 11:20:11.237489+00 2025-06-04 11:20:11.237498+00 f t 2135 \N \N f f +1302 2025-06-04 12:48:25.448714+00 2025-06-04 12:48:25.448722+00 f t 2136 \N \N f f +1303 2025-06-04 12:49:12.597219+00 2025-06-04 12:49:12.597229+00 f t 2137 \N \N f f +1304 2025-06-04 12:51:26.314181+00 2025-06-04 12:51:26.314189+00 f t 2138 \N \N f f +1305 2025-06-04 13:27:38.295714+00 2025-06-04 13:27:38.295727+00 f t 2139 \N \N f f +1306 2025-06-04 13:37:46.733549+00 2025-06-04 13:37:46.733558+00 f t 2140 \N \N f f +1307 2025-06-04 13:41:44.563508+00 2025-06-04 13:41:44.563516+00 f t 2141 \N \N f f +1308 2025-06-04 13:58:53.547151+00 2025-06-04 13:58:53.547164+00 f t 2142 \N \N f f +1309 2025-06-04 14:01:06.531+00 2025-06-04 14:01:06.531013+00 f t 2143 \N \N f f +1310 2025-06-04 15:04:14.549694+00 2025-06-04 15:04:14.549704+00 f t 2145 \N \N f f +1311 2025-06-04 15:18:45.787525+00 2025-06-04 15:18:45.787537+00 f t 2146 \N \N f f +1312 2025-06-04 15:19:06.751406+00 2025-06-04 15:19:06.751415+00 f t 2147 \N \N f f +1313 2025-06-04 15:34:48.482914+00 2025-06-04 15:34:48.482926+00 f t 2148 \N \N f f +1314 2025-06-04 15:36:27.179803+00 2025-06-04 15:36:27.179818+00 f t 2149 \N \N f f +1315 2025-06-04 15:42:20.529321+00 2025-06-04 15:42:20.529329+00 f t 2150 \N \N f f +1316 2025-06-04 15:43:36.123155+00 2025-06-04 15:43:36.123163+00 f t 2151 \N \N f f +1317 2025-06-04 15:44:55.89716+00 2025-06-04 15:44:55.897173+00 f t 2152 \N \N f f +1318 2025-06-04 16:11:38.264918+00 2025-06-04 16:11:38.264927+00 f t 2153 \N \N f f +1319 2025-06-04 16:14:43.215239+00 2025-06-04 16:14:43.215248+00 f t 2154 \N \N f f +1320 2025-06-04 16:15:33.909263+00 2025-06-04 16:15:33.909273+00 f t 2155 \N \N f f +1321 2025-06-04 16:15:37.465412+00 2025-06-04 16:15:37.465421+00 f t 2156 \N \N f f +1322 2025-06-04 16:25:53.291036+00 2025-06-04 16:25:53.291045+00 f t 2158 \N \N f f +1323 2025-06-04 16:30:31.568244+00 2025-06-04 16:30:31.568256+00 f t 2161 \N \N f f +1324 2025-06-04 17:12:35.843276+00 2025-06-04 17:12:35.843286+00 f t 2162 \N \N f f +1325 2025-06-04 17:22:36.043823+00 2025-06-04 17:22:36.043832+00 f t 2163 \N \N f f +1326 2025-06-04 18:17:10.181582+00 2025-06-04 18:17:10.181589+00 f t 2165 \N \N f f +1327 2025-06-04 18:42:20.932497+00 2025-06-04 18:42:20.932505+00 f t 2167 \N \N f f +1328 2025-06-04 18:44:16.324233+00 2025-06-04 18:44:16.324244+00 f t 2168 \N \N f f +1329 2025-06-04 20:03:50.028283+00 2025-06-04 20:03:50.028293+00 f t 2169 \N \N f f +1330 2025-06-04 20:05:42.700018+00 2025-06-04 20:05:42.700028+00 f t 2170 \N \N f f +1331 2025-06-04 20:33:58.139435+00 2025-06-04 20:33:58.139448+00 f t 2171 \N \N f f +1332 2025-06-04 20:47:07.59313+00 2025-06-04 20:47:07.593144+00 f t 2172 \N \N f f +1333 2025-06-04 21:07:16.840255+00 2025-06-04 21:07:16.840264+00 f t 2173 \N \N f f +1334 2025-06-04 21:08:26.75774+00 2025-06-04 21:08:26.757752+00 f t 2174 \N \N f f +1335 2025-06-04 21:09:59.453805+00 2025-06-04 21:09:59.453815+00 f t 2175 \N \N f f +1336 2025-06-04 21:14:34.25159+00 2025-06-04 21:14:34.251599+00 f t 2176 \N \N f f +1337 2025-06-04 21:15:57.741224+00 2025-06-04 21:15:57.741232+00 f t 2177 \N \N f f +1338 2025-06-04 21:56:10.756178+00 2025-06-04 21:56:10.75619+00 f t 2178 \N \N f f +1339 2025-06-04 22:03:39.156469+00 2025-06-04 22:03:39.156477+00 f t 2179 \N \N f f +1340 2025-06-04 22:22:57.860359+00 2025-06-04 22:22:57.860367+00 f t 2180 \N \N f f +1341 2025-06-04 23:20:30.648806+00 2025-06-04 23:20:30.648814+00 f t 2181 \N \N f f +1342 2025-06-04 23:38:43.183391+00 2025-06-04 23:38:43.1834+00 f t 2182 \N \N f f +1343 2025-06-05 00:09:23.159192+00 2025-06-05 00:09:23.159202+00 f t 2183 \N \N f f +1344 2025-06-05 00:12:04.680981+00 2025-06-05 00:12:04.680992+00 f t 2184 \N \N f f +1345 2025-06-05 00:57:02.270705+00 2025-06-05 00:57:02.270717+00 f t 2185 \N \N f f +1346 2025-06-05 01:34:43.299744+00 2025-06-05 01:34:43.299752+00 f t 2186 \N \N f f +1347 2025-06-05 01:38:24.146157+00 2025-06-05 01:38:24.146167+00 f t 2187 \N \N f f +1348 2025-06-05 01:42:04.16268+00 2025-06-05 01:42:04.162694+00 f t 2188 \N \N f f +1349 2025-06-05 02:26:53.815095+00 2025-06-05 02:26:53.815104+00 f t 2189 \N \N f f +1354 2025-06-05 03:55:47.539839+00 2025-06-05 03:55:47.539851+00 f t 2194 \N \N f f +1355 2025-06-05 04:14:06.874374+00 2025-06-05 04:14:06.874387+00 f t 2195 \N \N f f +1356 2025-06-05 04:14:27.504109+00 2025-06-05 04:14:27.504121+00 f t 2196 \N \N f f +1357 2025-06-05 04:16:17.935165+00 2025-06-05 04:16:17.935176+00 f t 2197 \N \N f f +1358 2025-06-05 04:24:36.750382+00 2025-06-05 04:24:36.750391+00 f t 2198 \N \N f f +1359 2025-06-05 04:36:42.738843+00 2025-06-05 04:36:42.738854+00 f t 2199 \N \N f f +1360 2025-06-05 05:45:43.056682+00 2025-06-05 05:45:43.056694+00 f t 2200 \N \N f f +1361 2025-06-05 05:56:50.569455+00 2025-06-05 05:56:50.569506+00 f t 2201 \N \N f f +1362 2025-06-05 08:55:27.0697+00 2025-06-05 08:55:27.069711+00 f t 2202 \N \N f f +1363 2025-06-05 08:56:49.573278+00 2025-06-05 08:56:49.573291+00 f t 2203 \N \N f f +1364 2025-06-05 10:53:05.736465+00 2025-06-05 10:53:05.736479+00 f t 2204 \N \N f f +1365 2025-06-05 10:53:44.764385+00 2025-06-05 10:53:44.764394+00 f t 2205 \N \N f f +1366 2025-06-05 10:56:11.26534+00 2025-06-05 10:56:11.265351+00 f t 2206 \N \N f f +1367 2025-06-05 11:23:46.894613+00 2025-06-05 11:23:46.894622+00 f t 2207 \N \N f f +1368 2025-06-05 11:51:17.294804+00 2025-06-05 11:51:17.294812+00 f t 2208 \N \N f f +1369 2025-06-05 13:42:33.423714+00 2025-06-05 13:42:33.423728+00 f t 2209 \N \N f f +1370 2025-06-05 14:05:56.535288+00 2025-06-05 14:05:56.535297+00 f t 2210 \N \N f f +1371 2025-06-05 14:43:30.942489+00 2025-06-05 14:43:30.942504+00 f t 2212 \N \N f f +1372 2025-06-05 14:58:59.084178+00 2025-06-05 14:58:59.084192+00 f t 2213 \N \N f f +1373 2025-06-05 15:15:11.714238+00 2025-06-05 15:15:11.714251+00 f t 2214 \N \N f f +1374 2025-06-05 15:27:40.976357+00 2025-06-05 15:27:40.976366+00 f t 2216 \N \N f f +1375 2025-06-05 16:11:59.272803+00 2025-06-05 16:11:59.272814+00 f t 2218 \N \N f f +1376 2025-06-05 17:07:18.61346+00 2025-06-05 17:07:18.613469+00 f t 2219 \N \N f f +1377 2025-06-05 17:24:09.544055+00 2025-06-05 17:24:09.544063+00 f t 2220 \N \N f f +1378 2025-06-05 18:07:04.899909+00 2025-06-05 18:07:04.899921+00 f t 2221 \N \N f f +1379 2025-06-05 18:29:07.385432+00 2025-06-05 18:29:07.385444+00 f t 2222 \N \N f f +1380 2025-06-05 18:48:54.106604+00 2025-06-05 18:48:54.106613+00 f t 2223 \N \N f f +1381 2025-06-05 19:12:11.954895+00 2025-06-05 19:12:11.954905+00 f t 2226 \N \N f f +1382 2025-06-05 19:37:42.32159+00 2025-06-05 19:37:42.321599+00 f t 2228 \N \N f f +1383 2025-06-05 21:06:46.541+00 2025-06-05 21:06:46.54101+00 f t 2231 \N \N f f +1384 2025-06-05 21:10:20.91303+00 2025-06-05 21:10:20.913043+00 f t 2232 \N \N f f +1385 2025-06-05 21:11:37.431222+00 2025-06-05 21:11:37.431246+00 f t 2233 \N \N f f +1386 2025-06-05 21:49:29.585071+00 2025-06-05 21:49:29.585079+00 f t 2234 \N \N f f +1387 2025-06-05 22:21:06.323179+00 2025-06-05 22:21:06.323186+00 f t 2235 \N \N f f +1388 2025-06-05 22:28:48.568732+00 2025-06-05 22:28:48.568744+00 f t 2236 \N \N f f +1389 2025-06-05 22:31:13.371133+00 2025-06-05 22:31:13.371147+00 f t 2237 \N \N f f +1390 2025-06-05 22:43:32.398514+00 2025-06-05 22:43:32.398523+00 f t 2238 \N \N f f +1391 2025-06-06 00:52:16.659242+00 2025-06-06 00:52:16.659253+00 f t 2239 \N \N f f +1392 2025-06-06 00:58:37.887629+00 2025-06-06 00:58:37.887639+00 f t 2240 \N \N f f +1393 2025-06-06 01:13:00.401805+00 2025-06-06 01:13:00.401815+00 f t 2241 \N \N f f +1394 2025-06-06 01:23:04.694986+00 2025-06-06 01:23:04.694998+00 f t 2242 \N \N f f +1395 2025-06-06 01:23:49.930544+00 2025-06-06 01:23:49.930556+00 f t 2243 \N \N f f +1396 2025-06-06 01:32:45.302094+00 2025-06-06 01:32:45.302107+00 f t 2244 \N \N f f +1397 2025-06-06 01:33:02.856701+00 2025-06-06 01:33:02.856711+00 f t 2245 \N \N f f +1398 2025-06-06 01:33:06.604184+00 2025-06-06 01:33:06.604209+00 f t 2246 \N \N f f +1399 2025-06-06 01:38:10.137716+00 2025-06-06 01:38:10.137723+00 f t 2247 \N \N f f +1400 2025-06-06 01:45:40.214827+00 2025-06-06 01:45:40.214859+00 f t 2248 \N \N f f +1401 2025-06-06 01:53:42.015587+00 2025-06-06 01:53:42.0156+00 f t 2249 \N \N f f +1402 2025-06-06 02:03:20.560245+00 2025-06-06 02:03:20.560254+00 f t 2250 \N \N f f +1403 2025-06-06 02:21:08.153604+00 2025-06-06 02:21:08.153612+00 f t 2251 \N \N f f +1404 2025-06-06 02:38:02.989649+00 2025-06-06 02:38:02.989657+00 f t 2252 \N \N f f +1405 2025-06-06 03:11:21.367775+00 2025-06-06 03:11:21.367784+00 f t 2253 \N \N f f +1406 2025-06-06 10:44:56.493973+00 2025-06-06 10:44:56.493989+00 f t 2254 \N \N f f +1407 2025-06-06 11:29:13.251115+00 2025-06-06 11:29:13.251128+00 f t 2255 \N \N f f +1408 2025-06-06 12:24:21.655551+00 2025-06-06 12:24:21.65556+00 f t 2256 \N \N f f +1409 2025-06-06 12:25:30.169801+00 2025-06-06 12:25:30.16981+00 f t 2257 \N \N f f +1410 2025-06-06 13:34:02.18365+00 2025-06-06 13:34:02.183666+00 f t 2258 \N \N f f +1411 2025-06-06 14:45:42.329815+00 2025-06-06 14:45:42.329828+00 f t 2259 \N \N f f +1412 2025-06-06 15:56:08.850993+00 2025-06-06 15:56:08.851005+00 f t 2260 \N \N f f +1413 2025-06-06 16:00:55.423098+00 2025-06-06 16:00:55.423113+00 f t 2261 \N \N f f +1414 2025-06-06 16:22:16.787304+00 2025-06-06 16:22:16.787314+00 f t 2262 \N \N f f +1415 2025-06-06 17:03:08.472574+00 2025-06-06 17:03:08.472587+00 f t 2263 \N \N f f +1416 2025-06-06 17:07:19.09506+00 2025-06-06 17:07:19.09507+00 f t 2264 \N \N f f +1417 2025-06-06 17:47:06.434865+00 2025-06-06 17:47:06.434873+00 f t 2265 \N \N f f +1418 2025-06-06 18:14:54.24751+00 2025-06-06 18:14:54.247519+00 f t 2266 \N \N f f +1419 2025-06-06 18:16:14.030162+00 2025-06-06 18:16:14.030174+00 f t 2267 \N \N f f +1420 2025-06-06 18:33:27.531037+00 2025-06-06 18:33:27.531045+00 f t 2268 \N \N f f +1421 2025-06-06 18:54:25.159394+00 2025-06-06 18:54:25.159405+00 f t 2269 \N \N f f +1422 2025-06-06 19:15:22.532151+00 2025-06-06 19:15:22.532162+00 f t 2270 \N \N f f +1423 2025-06-06 22:14:39.631749+00 2025-06-06 22:14:39.63176+00 f t 2272 \N \N f f +1424 2025-06-06 22:57:29.849+00 2025-06-06 22:57:29.849015+00 f t 2273 \N \N f f +1425 2025-06-06 23:24:56.997109+00 2025-06-06 23:24:56.997116+00 f t 2274 \N \N f f +1474 2025-06-07 18:51:16.067141+00 2025-06-07 18:51:16.067149+00 f t 2322 \N \N f f +1426 2025-06-06 23:31:30.381514+00 2025-06-06 23:30:03.626699+00 f t 1776 \N \N f f +1427 2025-06-06 23:48:33.440195+00 2025-06-06 23:48:33.440207+00 f t 2275 \N \N f f +1428 2025-06-06 23:56:15.289353+00 2025-06-06 23:56:15.289361+00 f t 2276 \N \N f f +1429 2025-06-07 00:12:11.465482+00 2025-06-07 00:12:11.465493+00 f t 2277 \N \N f f +1430 2025-06-07 00:21:31.692677+00 2025-06-07 00:21:31.692697+00 f t 2278 \N \N f f +1431 2025-06-07 00:26:18.859609+00 2025-06-07 00:26:18.859616+00 f t 2279 \N \N f f +1432 2025-06-07 00:55:07.014906+00 2025-06-07 00:55:07.014919+00 f t 2280 \N \N f f +1433 2025-06-07 01:28:14.331418+00 2025-06-07 01:28:14.33143+00 f t 2281 \N \N f f +1434 2025-06-07 01:44:35.634404+00 2025-06-07 01:44:35.634411+00 f t 2282 \N \N f f +1435 2025-06-07 01:57:18.770437+00 2025-06-07 01:57:18.770446+00 f t 2283 \N \N f f +1436 2025-06-07 02:03:58.364881+00 2025-06-07 02:03:58.364894+00 f t 2284 \N \N f f +1437 2025-06-07 02:11:05.816301+00 2025-06-07 02:11:05.816312+00 f t 2285 \N \N f f +1438 2025-06-07 02:12:41.303245+00 2025-06-07 02:12:41.303254+00 f t 2286 \N \N f f +1439 2025-06-07 02:33:06.807744+00 2025-06-07 02:33:06.807758+00 f t 2287 \N \N f f +1440 2025-06-07 02:53:24.286296+00 2025-06-07 02:53:24.286308+00 f t 2288 \N \N f f +1441 2025-06-07 03:11:20.772331+00 2025-06-07 03:11:20.772338+00 f t 2289 \N \N f f +1442 2025-06-07 03:55:31.734392+00 2025-06-07 03:55:31.734404+00 f t 2290 \N \N f f +1443 2025-06-07 04:20:31.017317+00 2025-06-07 04:20:31.017325+00 f t 2291 \N \N f f +1444 2025-06-07 04:27:24.81836+00 2025-06-07 04:27:24.818371+00 f t 2292 \N \N f f +1445 2025-06-07 10:53:09.664233+00 2025-06-07 10:53:09.664241+00 f t 2293 \N \N f f +1446 2025-06-07 11:06:58.877558+00 2025-06-07 11:06:58.87757+00 f t 2294 \N \N f f +1447 2025-06-07 11:11:06.328117+00 2025-06-07 11:11:06.32813+00 f t 2295 \N \N f f +1448 2025-06-07 11:19:33.234364+00 2025-06-07 11:19:33.234374+00 f t 2296 \N \N f f +1449 2025-06-07 11:21:54.743467+00 2025-06-07 11:21:54.743477+00 f t 2297 \N \N f f +1450 2025-06-07 11:55:46.935668+00 2025-06-07 11:55:46.93568+00 f t 2298 \N \N f f +1451 2025-06-07 11:59:45.281187+00 2025-06-07 11:59:45.281198+00 f t 2299 \N \N f f +1452 2025-06-07 12:13:29.795212+00 2025-06-07 12:13:29.795225+00 f t 2300 \N \N f f +1453 2025-06-07 12:32:03.950875+00 2025-06-07 12:32:03.950884+00 f t 2301 \N \N f f +1454 2025-06-07 12:50:01.461048+00 2025-06-07 12:50:01.461065+00 f t 2302 \N \N f f +1455 2025-06-07 12:50:34.056959+00 2025-06-07 12:50:34.056969+00 f t 2303 \N \N f f +1456 2025-06-07 12:54:43.502775+00 2025-06-07 12:54:43.502787+00 f t 2304 \N \N f f +1457 2025-06-07 12:55:26.918838+00 2025-06-07 12:55:26.918846+00 f t 2305 \N \N f f +1458 2025-06-07 13:32:25.417717+00 2025-06-07 13:32:25.417724+00 f t 2306 \N \N f f +1459 2025-06-07 13:35:17.012564+00 2025-06-07 13:35:17.012573+00 f t 2307 \N \N f f +1460 2025-06-07 13:58:38.502691+00 2025-06-07 13:58:38.502698+00 f t 2308 \N \N f f +1461 2025-06-07 14:03:30.336044+00 2025-06-07 14:03:30.336053+00 f t 2309 \N \N f f +1462 2025-06-07 14:16:33.570978+00 2025-06-07 14:16:33.570986+00 f t 2310 \N \N f f +1463 2025-06-07 14:43:57.710952+00 2025-06-07 14:43:57.710963+00 f t 2311 \N \N f f +1464 2025-06-07 15:14:08.754061+00 2025-06-07 15:14:08.754069+00 f t 2312 \N \N f f +1465 2025-06-07 15:16:29.566356+00 2025-06-07 15:16:29.566363+00 f t 2313 \N \N f f +1466 2025-06-07 16:15:05.013516+00 2025-06-07 16:15:05.01353+00 f t 2314 \N \N f f +1467 2025-06-07 16:24:27.714875+00 2025-06-07 16:24:27.714889+00 f t 2315 \N \N f f +1468 2025-06-07 16:53:00.471819+00 2025-06-07 16:53:00.471829+00 f t 2316 \N \N f f +1469 2025-06-07 17:00:36.413498+00 2025-06-07 17:00:36.413512+00 f t 2317 \N \N f f +1470 2025-06-07 17:14:48.285262+00 2025-06-07 17:14:48.285271+00 f t 2318 \N \N f f +1471 2025-06-07 17:59:19.573817+00 2025-06-07 17:59:19.573826+00 f t 2319 \N \N f f +1472 2025-06-07 18:10:22.747089+00 2025-06-07 18:10:22.7471+00 f t 2320 \N \N f f +1473 2025-06-07 18:28:34.717613+00 2025-06-07 18:28:34.71762+00 f t 2321 \N \N f f +1475 2025-06-07 18:59:58.494129+00 2025-06-07 18:59:58.494138+00 f t 2323 \N \N f f +1476 2025-06-07 19:16:16.7033+00 2025-06-07 19:16:16.703311+00 f t 2324 \N \N f f +1477 2025-06-07 19:42:33.343837+00 2025-06-07 19:42:33.343846+00 f t 2325 \N \N f f +1478 2025-06-07 20:50:20.222038+00 2025-06-07 20:50:20.222047+00 f t 2326 \N \N f f +1479 2025-06-07 21:17:47.115884+00 2025-06-07 21:17:47.115893+00 f t 2327 \N \N f f +1480 2025-06-07 21:20:53.581945+00 2025-06-07 21:20:53.581951+00 f t 2328 \N \N f f +1481 2025-06-07 21:44:13.212826+00 2025-06-07 21:44:13.212836+00 f t 2329 \N \N f f +1482 2025-06-07 22:05:25.548213+00 2025-06-07 22:05:25.548221+00 f t 2330 \N \N f f +1483 2025-06-07 23:09:23.68544+00 2025-06-07 23:09:23.685449+00 f t 2332 \N \N f f +1484 2025-06-07 23:40:24.508733+00 2025-06-07 23:40:24.508746+00 f t 2333 \N \N f f +1485 2025-06-07 23:57:00.510903+00 2025-06-07 23:57:00.510913+00 f t 2334 \N \N f f +1486 2025-06-07 23:57:17.611491+00 2025-06-07 23:57:17.611499+00 f t 2335 \N \N f f +1487 2025-06-08 00:39:41.511068+00 2025-06-08 00:39:41.511079+00 f t 2336 \N \N f f +1488 2025-06-08 00:42:10.279093+00 2025-06-08 00:42:10.279101+00 f t 2337 \N \N f f +1489 2025-06-08 00:51:44.18732+00 2025-06-08 00:51:44.187333+00 f t 2338 \N \N f f +1490 2025-06-08 00:55:36.00778+00 2025-06-08 00:55:36.007792+00 f t 2339 \N \N f f +1491 2025-06-08 01:02:22.233756+00 2025-06-08 01:02:22.233764+00 f t 2340 \N \N f f +1492 2025-06-08 01:24:57.229377+00 2025-06-08 01:24:57.229386+00 f t 2341 \N \N f f +1493 2025-06-08 01:36:30.057853+00 2025-06-08 01:36:30.057861+00 f t 2342 \N \N f f +1494 2025-06-08 02:09:37.851866+00 2025-06-08 02:09:37.851874+00 f t 2343 \N \N f f +1495 2025-06-08 02:32:39.754303+00 2025-06-08 02:32:39.754313+00 f t 2344 \N \N f f +1496 2025-06-08 03:03:32.766008+00 2025-06-08 03:03:32.76602+00 f t 2345 \N \N f f +1497 2025-06-08 03:14:18.041307+00 2025-06-08 03:09:27.669308+00 f t 2346 \N \N f f +1589 2025-06-09 19:23:45.372506+00 2025-06-09 19:23:45.372519+00 f t 2443 \N \N f f +1499 2025-06-08 03:19:19.382156+00 2025-06-08 03:19:19.382165+00 f t 2348 \N \N f f +1500 2025-06-08 03:20:39.923402+00 2025-06-08 03:20:39.923412+00 f t 2349 \N \N f f +1498 2025-06-08 03:20:59.175846+00 2025-06-08 03:14:31.124614+00 f t 2347 \N \N f f +1501 2025-06-08 03:21:36.477041+00 2025-06-08 03:21:36.477052+00 f t 2350 \N \N f f +1502 2025-06-08 03:25:39.699073+00 2025-06-08 03:23:49.944859+00 f t 2351 \N \N f f +1503 2025-06-08 03:25:53.363674+00 2025-06-08 03:25:53.363687+00 f t 2352 \N \N f f +1504 2025-06-08 03:36:52.084746+00 2025-06-08 03:36:52.084754+00 f t 2353 \N \N f f +1505 2025-06-08 03:38:22.815062+00 2025-06-08 03:38:22.815075+00 f t 2354 \N \N f f +1506 2025-06-08 03:39:19.050409+00 2025-06-08 03:39:19.050419+00 f t 2355 \N \N f f +1507 2025-06-08 03:40:34.149778+00 2025-06-08 03:40:34.149789+00 f t 2356 \N \N f f +1508 2025-06-08 05:25:57.88239+00 2025-06-08 05:25:57.882398+00 f t 2357 \N \N f f +1509 2025-06-08 10:15:30.790577+00 2025-06-08 10:15:30.790586+00 f t 2358 \N \N f f +1510 2025-06-08 11:30:47.644545+00 2025-06-08 11:30:47.644556+00 f t 2359 \N \N f f +1511 2025-06-08 11:43:16.964477+00 2025-06-08 11:43:16.964487+00 f t 2360 \N \N f f +1512 2025-06-08 12:13:57.126972+00 2025-06-08 12:13:57.126983+00 f t 2361 \N \N f f +1513 2025-06-08 12:25:14.141444+00 2025-06-08 12:25:14.141455+00 f t 2362 \N \N f f +1514 2025-06-08 12:36:00.64844+00 2025-06-08 12:36:00.648449+00 f t 2363 \N \N f f +1515 2025-06-08 13:01:14.028597+00 2025-06-08 13:01:14.028609+00 f t 2364 \N \N f f +1516 2025-06-08 13:03:32.876756+00 2025-06-08 13:03:32.876765+00 f t 2365 \N \N f f +1517 2025-06-08 13:55:25.990183+00 2025-06-08 13:55:25.990194+00 f t 2366 \N \N f f +1518 2025-06-08 14:19:02.950179+00 2025-06-08 14:19:02.950194+00 f t 2367 \N \N f f +1519 2025-06-08 14:19:07.106955+00 2025-06-08 14:19:07.106963+00 f t 2368 \N \N f f +1520 2025-06-08 14:28:14.999753+00 2025-06-08 14:28:14.999765+00 f t 2369 \N \N f f +1521 2025-06-08 14:32:08.310421+00 2025-06-08 14:32:08.310428+00 f t 2370 \N \N f f +1522 2025-06-08 14:53:46.323293+00 2025-06-08 14:53:46.323305+00 f t 2371 \N \N f f +1523 2025-06-08 15:06:14.548045+00 2025-06-08 15:06:14.548052+00 f t 2372 \N \N f f +1524 2025-06-08 15:07:30.74793+00 2025-06-08 15:07:30.747939+00 f t 2373 \N \N f f +1525 2025-06-08 15:22:51.244567+00 2025-06-08 15:22:51.244573+00 f t 2374 \N \N f f +1526 2025-06-08 15:51:56.200047+00 2025-06-08 15:51:56.200055+00 f t 2375 \N \N f f +1527 2025-06-08 16:14:26.419723+00 2025-06-08 16:14:26.419731+00 f t 2376 \N \N f f +1528 2025-06-08 16:15:12.135469+00 2025-06-08 16:15:12.135479+00 f t 2377 \N \N f f +1529 2025-06-08 16:46:41.378951+00 2025-06-08 16:46:41.378963+00 f t 2378 \N \N f f +1530 2025-06-08 17:36:48.100316+00 2025-06-08 17:36:48.100327+00 f t 2379 \N \N f f +1531 2025-06-08 18:37:38.266958+00 2025-06-08 18:37:38.266969+00 f t 2380 \N \N f f +1532 2025-06-08 19:03:08.7392+00 2025-06-08 19:03:08.739209+00 f t 2381 \N \N f f +1533 2025-06-08 19:11:55.199981+00 2025-06-08 19:11:55.199993+00 f t 2382 \N \N f f +1534 2025-06-08 19:19:37.799855+00 2025-06-08 19:19:37.799862+00 f t 2383 \N \N f f +1535 2025-06-08 21:18:06.657114+00 2025-06-08 21:18:06.657124+00 f t 2388 \N \N f f +1536 2025-06-08 21:20:48.638155+00 2025-06-08 21:20:48.638162+00 f t 2389 \N \N f f +1537 2025-06-08 22:13:17.042459+00 2025-06-08 22:13:17.042468+00 f t 2390 \N \N f f +1538 2025-06-08 22:14:04.460325+00 2025-06-08 22:14:04.460337+00 f t 2391 \N \N f f +1539 2025-06-08 22:31:56.916397+00 2025-06-08 22:31:56.916404+00 f t 2392 \N \N f f +1540 2025-06-08 22:51:24.387755+00 2025-06-08 22:51:24.387763+00 f t 2393 \N \N f f +1541 2025-06-08 22:58:56.997019+00 2025-06-08 22:58:56.997026+00 f t 2394 \N \N f f +1542 2025-06-08 23:11:20.960747+00 2025-06-08 23:11:20.960755+00 f t 2395 \N \N f f +1543 2025-06-08 23:47:18.060938+00 2025-06-08 23:47:18.060945+00 f t 2396 \N \N f f +1544 2025-06-08 23:53:38.384197+00 2025-06-08 23:53:38.384204+00 f t 2397 \N \N f f +1545 2025-06-09 00:36:26.884538+00 2025-06-09 00:36:26.884545+00 f t 2398 \N \N f f +1546 2025-06-09 00:45:46.452267+00 2025-06-09 00:45:46.452276+00 f t 2399 \N \N f f +1547 2025-06-09 01:30:00.880274+00 2025-06-09 01:30:00.880298+00 f t 2400 \N \N f f +1548 2025-06-09 03:25:24.337212+00 2025-06-09 03:25:24.337221+00 f t 2402 \N \N f f +1549 2025-06-09 05:42:52.167116+00 2025-06-09 05:42:52.167128+00 f t 2403 \N \N f f +1550 2025-06-09 07:07:19.749126+00 2025-06-09 07:07:19.749135+00 f t 2404 \N \N f f +1551 2025-06-09 09:53:07.797034+00 2025-06-09 09:53:07.797043+00 f t 2405 \N \N f f +1552 2025-06-09 11:17:15.109714+00 2025-06-09 11:17:15.109727+00 f t 2406 \N \N f f +1553 2025-06-09 11:33:06.621329+00 2025-06-09 11:33:06.621341+00 f t 2407 \N \N f f +1554 2025-06-09 12:03:56.988051+00 2025-06-09 12:03:56.98806+00 f t 2408 \N \N f f +1555 2025-06-09 12:05:46.645237+00 2025-06-09 12:05:46.645245+00 f t 2409 \N \N f f +1556 2025-06-09 12:27:47.256285+00 2025-06-09 12:27:47.256294+00 f t 2410 \N \N f f +1557 2025-06-09 12:40:35.251849+00 2025-06-09 12:40:35.251859+00 f t 2411 \N \N f f +1558 2025-06-09 13:08:23.701054+00 2025-06-09 13:08:23.701064+00 f t 2412 \N \N f f +1559 2025-06-09 13:15:13.625976+00 2025-06-09 13:15:13.625985+00 f t 2413 \N \N f f +1560 2025-06-09 13:25:49.274091+00 2025-06-09 13:25:49.274104+00 f t 2414 \N \N f f +1561 2025-06-09 13:46:14.27472+00 2025-06-09 13:46:14.274732+00 f t 2415 \N \N f f +1562 2025-06-09 13:49:44.659578+00 2025-06-09 13:49:44.659585+00 f t 2416 \N \N f f +1563 2025-06-09 13:50:32.865328+00 2025-06-09 13:50:32.865337+00 f t 2417 \N \N f f +1564 2025-06-09 13:51:47.486643+00 2025-06-09 13:51:47.486651+00 f t 2418 \N \N f f +1565 2025-06-09 13:52:45.514917+00 2025-06-09 13:52:45.514927+00 f t 2419 \N \N f f +1566 2025-06-09 13:56:04.729526+00 2025-06-09 13:56:04.729534+00 f t 2420 \N \N f f +1567 2025-06-09 14:00:46.103511+00 2025-06-09 14:00:46.10352+00 f t 2421 \N \N f f +1568 2025-06-09 14:11:35.930304+00 2025-06-09 14:11:35.930314+00 f t 2422 \N \N f f +1569 2025-06-09 14:35:16.895331+00 2025-06-09 14:35:16.89534+00 f t 2423 \N \N f f +1570 2025-06-09 14:46:17.952363+00 2025-06-09 14:46:17.952373+00 f t 2424 \N \N f f +1571 2025-06-09 15:32:56.40774+00 2025-06-09 15:32:56.407749+00 f t 2425 \N \N f f +1572 2025-06-09 16:27:50.429347+00 2025-06-09 16:27:50.429355+00 f t 2426 \N \N f f +1573 2025-06-09 16:30:55.93752+00 2025-06-09 16:30:55.937528+00 f t 2427 \N \N f f +1574 2025-06-09 16:31:06.82233+00 2025-06-09 16:31:06.822339+00 f t 2428 \N \N f f +1575 2025-06-09 16:41:40.835583+00 2025-06-09 16:41:40.835598+00 f t 2429 \N \N f f +1576 2025-06-09 16:43:22.045081+00 2025-06-09 16:43:22.04509+00 f t 2430 \N \N f f +1577 2025-06-09 16:44:29.667193+00 2025-06-09 16:44:29.667206+00 f t 2431 \N \N f f +1578 2025-06-09 16:49:00.439683+00 2025-06-09 16:49:00.439692+00 f t 2432 \N \N f f +1580 2025-06-09 17:00:48.935583+00 2025-06-09 17:00:48.935592+00 f t 2434 \N \N f f +1579 2025-06-09 17:02:29.106651+00 2025-06-09 16:56:14.510524+00 f t 2433 \N \N f f +1581 2025-06-09 17:22:58.368899+00 2025-06-09 17:22:58.368908+00 f t 2435 \N \N f f +1582 2025-06-09 17:38:13.322733+00 2025-06-09 17:38:13.322741+00 f t 2436 \N \N f f +1583 2025-06-09 17:38:51.16154+00 2025-06-09 17:38:51.16155+00 f t 2437 \N \N f f +1584 2025-06-09 18:14:21.27401+00 2025-06-09 18:14:21.274018+00 f t 2438 \N \N f f +1585 2025-06-09 18:33:53.689596+00 2025-06-09 18:33:53.689603+00 f t 2439 \N \N f f +1586 2025-06-09 18:34:27.17508+00 2025-06-09 18:34:27.17509+00 f t 2440 \N \N f f +1587 2025-06-09 18:57:35.249056+00 2025-06-09 18:57:35.249065+00 f t 2441 \N \N f f +1590 2025-06-09 19:31:06.70184+00 2025-06-09 19:31:06.701854+00 f t 2444 \N \N f f +1588 2025-06-09 19:12:18.023537+00 2025-06-09 19:03:05.334918+00 f t 2442 \N \N f f +1591 2025-06-09 19:59:38.275465+00 2025-06-09 19:59:38.275477+00 f t 2445 \N \N f f +1592 2025-06-09 20:16:30.164131+00 2025-06-09 20:16:30.164139+00 f t 2331 \N \N f f +1593 2025-06-09 20:24:46.478727+00 2025-06-09 20:24:46.478736+00 f t 2446 \N \N f f +1594 2025-06-09 20:25:57.656609+00 2025-06-09 20:25:57.656617+00 f t 2447 \N \N f f +1595 2025-06-09 20:33:20.421236+00 2025-06-09 20:33:20.421244+00 f t 2448 \N \N f f +1596 2025-06-09 20:34:36.923049+00 2025-06-09 20:34:36.923057+00 f t 2449 \N \N f f +1597 2025-06-09 20:47:18.250709+00 2025-06-09 20:47:18.250718+00 f t 2451 \N \N f f +1598 2025-06-09 20:57:27.614323+00 2025-06-09 20:57:27.61433+00 f t 2452 \N \N f f +1599 2025-06-09 22:13:06.611678+00 2025-06-09 22:13:06.611691+00 f t 2453 \N \N f f +1600 2025-06-09 22:14:21.246159+00 2025-06-09 22:14:21.246169+00 f t 2454 \N \N f f +1601 2025-06-09 22:16:56.473582+00 2025-06-09 22:16:56.47359+00 f t 2455 \N \N f f +1602 2025-06-09 22:32:49.125051+00 2025-06-09 22:32:49.125059+00 f t 2456 \N \N f f +1603 2025-06-09 22:45:32.372149+00 2025-06-09 22:45:32.372159+00 f t 2457 \N \N f f +1604 2025-06-09 23:24:13.880864+00 2025-06-09 23:24:13.880874+00 f t 2458 \N \N f f +1605 2025-06-09 23:56:49.092265+00 2025-06-09 23:56:49.092273+00 f t 2459 \N \N f f +1606 2025-06-10 00:14:15.501738+00 2025-06-10 00:14:15.501746+00 f t 2460 \N \N f f +1607 2025-06-10 01:07:44.210144+00 2025-06-10 01:07:44.210153+00 f t 2463 \N \N f f +1608 2025-06-10 01:34:49.05434+00 2025-06-10 01:34:49.05435+00 f t 2464 \N \N f f +1609 2025-06-10 01:39:46.009272+00 2025-06-10 01:39:46.009284+00 f t 2465 \N \N f f +1610 2025-06-10 01:44:24.465+00 2025-06-10 01:44:24.46501+00 f t 2466 \N \N f f +1611 2025-06-10 02:29:23.039163+00 2025-06-10 02:29:23.039174+00 f t 2467 \N \N f f +1612 2025-06-10 02:43:55.453989+00 2025-06-10 02:43:55.453999+00 f t 2468 \N \N f f +1613 2025-06-10 02:56:42.473084+00 2025-06-10 02:56:42.473095+00 f t 2469 \N \N f f +1614 2025-06-10 03:08:06.49422+00 2025-06-10 03:08:06.494232+00 f t 2470 \N \N f f +1615 2025-06-10 04:20:41.182053+00 2025-06-10 04:20:41.182065+00 f t 2471 \N \N f f +1616 2025-06-10 05:28:29.034315+00 2025-06-10 05:28:29.034324+00 f t 2472 \N \N f f +1617 2025-06-10 05:45:50.854513+00 2025-06-10 05:45:50.854525+00 f t 2473 \N \N f f +1618 2025-06-10 08:30:13.44315+00 2025-06-10 08:30:13.443163+00 f t 2474 \N \N f f +1619 2025-06-10 10:24:22.560098+00 2025-06-10 10:24:22.56011+00 f t 2475 \N \N f f +1620 2025-06-10 10:27:54.416198+00 2025-06-10 10:27:54.416207+00 f t 2476 \N \N f f +1621 2025-06-10 11:13:47.862456+00 2025-06-10 11:13:47.862465+00 f t 2477 \N \N f f +1622 2025-06-10 11:19:34.158407+00 2025-06-10 11:19:34.158414+00 f t 2478 \N \N f f +1623 2025-06-10 12:08:42.139377+00 2025-06-10 12:08:42.139406+00 f t 2479 \N \N f f +1624 2025-06-10 12:23:17.572536+00 2025-06-10 12:23:17.572543+00 f t 2480 \N \N f f +1625 2025-06-10 12:36:39.896211+00 2025-06-10 12:36:39.89622+00 f t 2481 \N \N f f +1626 2025-06-10 12:40:15.012139+00 2025-06-10 12:40:15.012148+00 f t 2482 \N \N f f +1627 2025-06-10 12:58:35.292092+00 2025-06-10 12:58:35.292104+00 f t 2483 \N \N f f +1628 2025-06-10 13:12:21.120001+00 2025-06-10 13:12:21.120027+00 f t 2485 \N \N f f +1629 2025-06-10 14:18:43.655691+00 2025-06-10 14:18:43.655703+00 f t 2487 \N \N f f +1630 2025-06-10 14:41:50.416046+00 2025-06-10 14:41:50.416055+00 f t 2488 \N \N f f +1631 2025-06-10 15:18:09.080967+00 2025-06-10 15:18:09.080978+00 f t 2491 \N \N f f +1632 2025-06-10 15:45:10.70919+00 2025-06-10 15:45:10.709204+00 f t 2492 \N \N f f +1633 2025-06-10 15:57:03.945353+00 2025-06-10 15:57:03.945363+00 f t 2493 \N \N f f +1634 2025-06-10 15:57:18.739639+00 2025-06-10 15:57:18.739652+00 f t 2494 \N \N f f +1635 2025-06-10 15:57:31.65789+00 2025-06-10 15:57:31.657902+00 f t 2495 \N \N f f +1636 2025-06-10 15:59:28.246136+00 2025-06-10 15:59:28.24615+00 f t 2496 \N \N f f +1637 2025-06-10 16:00:16.864344+00 2025-06-10 16:00:16.864357+00 f t 2497 \N \N f f +1638 2025-06-10 16:18:08.529035+00 2025-06-10 16:18:08.529048+00 f t 2498 \N \N f f +1639 2025-06-10 16:34:19.570443+00 2025-06-10 16:34:19.570453+00 f t 2499 \N \N f f +1640 2025-06-10 17:07:57.691342+00 2025-06-10 17:07:57.691387+00 f t 2500 \N \N f f +1641 2025-06-10 17:17:17.64145+00 2025-06-10 17:17:17.641461+00 f t 2501 \N \N f f +1642 2025-06-10 17:22:08.613628+00 2025-06-10 17:22:08.613649+00 f t 2502 \N \N f f +1643 2025-06-10 17:36:49.750818+00 2025-06-10 17:36:49.750827+00 f t 2503 \N \N f f +1644 2025-06-10 18:01:03.792907+00 2025-06-10 18:01:03.792921+00 f t 2504 \N \N f f +1645 2025-06-10 18:40:37.967687+00 2025-06-10 18:40:37.967695+00 f t 2505 \N \N f f +1646 2025-06-10 19:19:18.031132+00 2025-06-10 19:19:18.031141+00 f t 2506 \N \N f f +1647 2025-06-10 19:31:47.083271+00 2025-06-10 19:31:47.083283+00 f t 2507 \N \N f f +1648 2025-06-10 20:08:47.570863+00 2025-06-10 20:08:47.570876+00 f t 2508 \N \N f f +1649 2025-06-10 20:17:11.830413+00 2025-06-10 20:17:11.830426+00 f t 2509 \N \N f f +1650 2025-06-10 20:23:26.114097+00 2025-06-10 20:23:26.114108+00 f t 2510 \N \N f f +1651 2025-06-10 20:27:26.069725+00 2025-06-10 20:27:26.069734+00 f t 2511 \N \N f f +1652 2025-06-10 20:28:17.818715+00 2025-06-10 20:28:17.818723+00 f t 2512 \N \N f f +1653 2025-06-10 20:45:54.087218+00 2025-06-10 20:45:54.087232+00 f t 2513 \N \N f f +1654 2025-06-10 20:58:17.034598+00 2025-06-10 20:58:17.03461+00 f t 2514 \N \N f f +1655 2025-06-10 21:47:03.421667+00 2025-06-10 21:47:03.421675+00 f t 2515 \N \N f f +1657 2025-06-10 21:49:39.994652+00 2025-06-10 21:49:39.99466+00 f t 2517 \N \N f f +1658 2025-06-10 21:57:04.185519+00 2025-06-10 21:57:04.185529+00 f t 2518 \N \N f f +1656 2025-06-10 22:11:51.466703+00 2025-06-10 21:47:51.512613+00 f t 2516 \N \N f f +1659 2025-06-10 22:13:14.121593+00 2025-06-10 22:13:14.121601+00 f t 2519 \N \N f f +1660 2025-06-10 22:43:00.10073+00 2025-06-10 22:43:00.100742+00 f t 2520 \N \N f f +1661 2025-06-10 22:43:32.24224+00 2025-06-10 22:43:32.242247+00 f t 2521 \N \N f f +1662 2025-06-10 23:14:13.455443+00 2025-06-10 23:14:13.455455+00 f t 2522 \N \N f f +1663 2025-06-10 23:17:19.606635+00 2025-06-10 23:17:19.606644+00 f t 2523 \N \N f f +1664 2025-06-10 23:17:26.868599+00 2025-06-10 23:17:26.868632+00 f t 2524 \N \N f f +1665 2025-06-10 23:20:25.853295+00 2025-06-10 23:20:25.853304+00 f t 2525 \N \N f f +1666 2025-06-11 00:03:09.977829+00 2025-06-11 00:03:09.977837+00 f t 2526 \N \N f f +1667 2025-06-11 00:14:29.023273+00 2025-06-11 00:14:29.023285+00 f t 2527 \N \N f f +1668 2025-06-11 00:14:47.514059+00 2025-06-11 00:14:47.514067+00 f t 2528 \N \N f f +1669 2025-06-11 01:11:51.920665+00 2025-06-11 01:11:51.920676+00 f t 2529 \N \N f f +1670 2025-06-11 01:40:28.843659+00 2025-06-11 01:40:28.843667+00 f t 2530 \N \N f f +1671 2025-06-11 01:40:33.355329+00 2025-06-11 01:40:33.35534+00 f t 2531 \N \N f f +1672 2025-06-11 01:58:02.950647+00 2025-06-11 01:58:02.950656+00 f t 2532 \N \N f f +1673 2025-06-11 02:00:06.522093+00 2025-06-11 02:00:06.522106+00 f t 2533 \N \N f f +1674 2025-06-11 03:10:53.304212+00 2025-06-11 03:10:53.304224+00 f t 2534 \N \N f f +1675 2025-06-11 03:33:49.831261+00 2025-06-11 03:33:49.831271+00 f t 2535 \N \N f f +1676 2025-06-11 03:48:22.11+00 2025-06-11 03:48:22.110011+00 f t 2536 \N \N f f +1677 2025-06-11 04:06:03.986267+00 2025-06-11 04:06:03.986281+00 f t 2537 \N \N f f +1678 2025-06-11 04:33:27.718318+00 2025-06-11 04:33:27.718327+00 f t 2538 \N \N f f +1679 2025-06-11 04:52:46.018635+00 2025-06-11 04:52:46.018644+00 f t 2539 \N \N f f +1680 2025-06-11 09:37:55.73106+00 2025-06-11 09:37:55.731072+00 f t 2540 \N \N f f +1681 2025-06-11 09:54:41.895024+00 2025-06-11 09:54:41.895032+00 f t 2541 \N \N f f +1682 2025-06-11 10:57:43.624669+00 2025-06-11 10:57:43.624679+00 f t 2542 \N \N f f +1683 2025-06-11 11:00:02.456695+00 2025-06-11 11:00:02.45671+00 f t 2543 \N \N f f +1684 2025-06-11 11:21:39.743125+00 2025-06-11 11:21:39.743137+00 f t 2544 \N \N f f +1685 2025-06-11 11:27:15.578756+00 2025-06-11 11:27:15.578768+00 f t 2545 \N \N f f +1686 2025-06-11 12:05:41.853684+00 2025-06-11 12:05:41.853698+00 f t 1009 \N \N f f +1687 2025-06-11 12:38:35.098768+00 2025-06-11 12:38:35.098782+00 f t 2546 \N \N f f +1688 2025-06-11 13:29:21.086065+00 2025-06-11 13:29:21.086075+00 f t 2548 \N \N f f +1689 2025-06-11 13:47:53.41316+00 2025-06-11 13:47:53.413168+00 f t 2549 \N \N f f +1690 2025-06-11 14:41:06.414076+00 2025-06-11 14:41:06.41409+00 f t 2550 \N \N f f +1691 2025-06-11 14:42:54.296574+00 2025-06-11 14:42:54.296583+00 f t 2551 \N \N f f +1692 2025-06-11 15:19:52.057004+00 2025-06-11 15:19:52.057013+00 f t 2552 \N \N f f +1693 2025-06-11 15:22:20.046041+00 2025-06-11 15:22:20.046054+00 f t 2554 \N \N f f +1694 2025-06-11 15:27:57.660393+00 2025-06-11 15:27:57.660404+00 f t 2555 \N \N f f +1695 2025-06-11 15:46:20.359183+00 2025-06-11 15:46:20.359193+00 f t 2557 \N \N f f +1696 2025-06-11 17:28:14.019931+00 2025-06-11 17:28:14.019943+00 f t 2558 \N \N f f +1697 2025-06-11 17:29:54.455164+00 2025-06-11 17:29:54.455172+00 f t 2559 \N \N f f +1698 2025-06-11 18:22:56.229068+00 2025-06-11 18:22:56.229077+00 f t 2560 \N \N f f +1699 2025-06-11 18:24:30.713888+00 2025-06-11 18:24:30.713898+00 f t 2561 \N \N f f +1700 2025-06-11 18:30:03.373639+00 2025-06-11 18:30:03.373653+00 f t 2562 \N \N f f +1701 2025-06-11 18:40:17.380759+00 2025-06-11 18:40:17.380767+00 f t 2563 \N \N f f +1702 2025-06-11 18:43:26.64754+00 2025-06-11 18:43:26.647549+00 f t 2564 \N \N f f +1703 2025-06-11 18:46:18.928507+00 2025-06-11 18:46:18.928517+00 f t 2565 \N \N f f +1704 2025-06-11 18:53:07.806586+00 2025-06-11 18:53:07.806595+00 f t 2566 \N \N f f +1705 2025-06-11 18:54:46.876482+00 2025-06-11 18:54:46.876495+00 f t 2567 \N \N f f +1706 2025-06-11 19:10:45.730186+00 2025-06-11 19:10:45.730195+00 f t 2568 \N \N f f +1707 2025-06-11 20:42:45.663108+00 2025-06-11 20:42:45.66312+00 f t 2570 \N \N f f +1708 2025-06-11 21:21:00.390911+00 2025-06-11 21:21:00.390919+00 f t 2571 \N \N f f +1709 2025-06-11 21:25:55.613752+00 2025-06-11 21:25:55.613761+00 f t 2572 \N \N f f +1710 2025-06-11 22:29:17.485364+00 2025-06-11 22:29:17.485373+00 f t 2573 \N \N f f +1711 2025-06-11 22:33:17.605016+00 2025-06-11 22:33:17.605027+00 f t 2574 \N \N f f +1712 2025-06-11 22:40:08.190994+00 2025-06-11 22:40:08.191008+00 f t 2575 \N \N f f +1713 2025-06-11 22:53:37.685906+00 2025-06-11 22:53:37.685913+00 f t 2576 \N \N f f +1714 2025-06-11 23:16:03.809509+00 2025-06-11 23:16:03.809521+00 f t 2577 \N \N f f +1715 2025-06-11 23:26:53.577149+00 2025-06-11 23:26:53.577155+00 f t 2578 \N \N f f +1716 2025-06-11 23:28:01.917607+00 2025-06-11 23:28:01.91762+00 f t 2579 \N \N f f +1717 2025-06-11 23:35:04.85459+00 2025-06-11 23:35:04.854602+00 f t 2580 \N \N f f +1718 2025-06-12 00:09:01.542275+00 2025-06-12 00:09:01.542288+00 f t 2581 \N \N f f +1719 2025-06-12 00:46:22.957675+00 2025-06-12 00:46:22.957686+00 f t 2583 \N \N f f +1720 2025-06-12 01:41:00.170261+00 2025-06-12 01:41:00.170271+00 f t 2584 \N \N f f +1721 2025-06-12 01:56:50.811645+00 2025-06-12 01:56:50.811652+00 f t 2585 \N \N f f +1722 2025-06-12 04:01:43.950269+00 2025-06-12 04:01:43.950279+00 f t 2586 \N \N f f +1723 2025-06-12 05:04:33.357687+00 2025-06-12 05:04:33.357695+00 f t 2587 \N \N f f +1724 2025-06-12 10:27:34.748623+00 2025-06-12 10:27:34.74863+00 f t 2588 \N \N f f +1725 2025-06-12 11:15:36.111903+00 2025-06-12 11:15:36.111916+00 f t 2589 \N \N f f +1726 2025-06-12 11:28:49.921058+00 2025-06-12 11:28:49.921067+00 f t 2590 \N \N f f +1727 2025-06-12 11:53:01.833845+00 2025-06-12 11:53:01.833853+00 f t 2591 \N \N f f +1728 2025-06-12 12:11:47.869548+00 2025-06-12 12:11:47.869559+00 f t 2592 \N \N f f +1729 2025-06-12 12:14:55.503317+00 2025-06-12 12:14:55.503329+00 f t 2593 \N \N f f +1730 2025-06-12 13:08:20.577502+00 2025-06-12 13:08:20.577513+00 f t 2594 \N \N f f +1731 2025-06-12 13:15:58.232467+00 2025-06-12 13:15:58.232477+00 f t 2595 \N \N f f +1732 2025-06-12 13:18:01.366787+00 2025-06-12 13:18:01.366799+00 f t 2596 \N \N f f +1733 2025-06-12 13:20:42.176001+00 2025-06-12 13:20:42.176011+00 f t 1555 \N \N f f +1734 2025-06-12 13:37:45.735051+00 2025-06-12 13:37:45.735063+00 f t 2597 \N \N f f +1735 2025-06-12 13:39:59.893666+00 2025-06-12 13:39:59.893676+00 f t 377 \N \N f f +1736 2025-06-12 13:41:25.637822+00 2025-06-12 13:41:25.637832+00 f t 2598 \N \N f f +1737 2025-06-12 14:33:07.027637+00 2025-06-12 14:33:07.027648+00 f t 2599 \N \N f f +1738 2025-06-12 15:24:52.565912+00 2025-06-12 15:24:52.565924+00 f t 2600 \N \N f f +1739 2025-06-12 15:25:09.961958+00 2025-06-12 15:25:09.961969+00 f t 2601 \N \N f f +1740 2025-06-12 15:31:04.150369+00 2025-06-12 15:31:04.150376+00 f t 2602 \N \N f f +1741 2025-06-12 15:32:55.302452+00 2025-06-12 15:32:55.302461+00 f t 2603 \N \N f f +1742 2025-06-12 15:49:36.560661+00 2025-06-12 15:49:36.560672+00 f t 2604 \N \N f f +1743 2025-06-12 15:56:06.361888+00 2025-06-12 15:56:06.361898+00 f t 2605 \N \N f f +1744 2025-06-12 16:22:57.548281+00 2025-06-12 16:22:57.548288+00 f t 2606 \N \N f f +1745 2025-06-12 16:40:12.714911+00 2025-06-12 16:40:12.714922+00 f t 2607 \N \N f f +1746 2025-06-12 16:46:18.13067+00 2025-06-12 16:46:18.130681+00 f t 2608 \N \N f f +1747 2025-06-12 17:05:08.88676+00 2025-06-12 17:05:08.886775+00 f t 2609 \N \N f f +1748 2025-06-12 18:33:16.582403+00 2025-06-12 18:33:16.582417+00 f t 2610 \N \N f f +1749 2025-06-12 18:39:00.69901+00 2025-06-12 18:39:00.699019+00 f t 2611 \N \N f f +1750 2025-06-12 18:40:36.171497+00 2025-06-12 18:40:36.171509+00 f t 2612 \N \N f f +1751 2025-06-12 18:49:01.749528+00 2025-06-12 18:49:01.749539+00 f t 2613 \N \N f f +1752 2025-06-12 19:37:30.97526+00 2025-06-12 19:37:30.975271+00 f t 2616 \N \N f f +1753 2025-06-12 20:22:30.862139+00 2025-06-12 20:22:30.86215+00 f t 2618 \N \N f f +1754 2025-06-12 21:01:44.172378+00 2025-06-12 21:01:44.172391+00 f t 2619 \N \N f f +1755 2025-06-12 21:06:13.19384+00 2025-06-12 21:06:13.193853+00 f t 2620 \N \N f f +1756 2025-06-12 21:12:25.191521+00 2025-06-12 21:12:25.191533+00 f t 2621 \N \N f f +1757 2025-06-12 21:16:08.217654+00 2025-06-12 21:16:08.217666+00 f t 2622 \N \N f f +1758 2025-06-12 21:51:49.857663+00 2025-06-12 21:51:49.857675+00 f t 2623 \N \N f f +1759 2025-06-12 22:00:05.992533+00 2025-06-12 22:00:05.992548+00 f t 2624 \N \N f f +1760 2025-06-12 22:05:15.766046+00 2025-06-12 22:05:15.766057+00 f t 2625 \N \N f f +1761 2025-06-12 22:10:25.5228+00 2025-06-12 22:10:25.52281+00 f t 2626 \N \N f f +1762 2025-06-12 22:13:28.136742+00 2025-06-12 22:13:28.136751+00 f t 2627 \N \N f f +1763 2025-06-12 22:28:57.705972+00 2025-06-12 22:28:57.705984+00 f t 2628 \N \N f f +1764 2025-06-12 23:02:57.547534+00 2025-06-12 23:02:57.547544+00 f t 2629 \N \N f f +1765 2025-06-13 00:09:35.075929+00 2025-06-13 00:09:35.075948+00 f t 2630 \N \N f f +1766 2025-06-13 00:10:15.823331+00 2025-06-13 00:10:15.823341+00 f t 2631 \N \N f f +1767 2025-06-13 00:44:45.228285+00 2025-06-13 00:44:45.228294+00 f t 2633 \N \N f f +1768 2025-06-13 01:43:44.985132+00 2025-06-13 01:43:44.985141+00 f t 2634 \N \N f f +1769 2025-06-13 01:45:24.951356+00 2025-06-13 01:45:24.951365+00 f t 2635 \N \N f f +1770 2025-06-13 02:52:50.126461+00 2025-06-13 02:52:50.126474+00 f t 2636 \N \N f f +1771 2025-06-13 03:00:34.673214+00 2025-06-13 03:00:34.673222+00 f t 1164 \N \N f f +1772 2025-06-13 03:11:41.051505+00 2025-06-13 03:11:41.051514+00 f t 2637 \N \N f f +1773 2025-06-13 03:19:50.034174+00 2025-06-13 03:19:50.034187+00 f t 2638 \N \N f f +1774 2025-06-13 03:33:44.011335+00 2025-06-13 03:33:44.011347+00 f t 2639 \N \N f f +1775 2025-06-13 03:53:04.309512+00 2025-06-13 03:53:04.309523+00 f t 2640 \N \N f f +1776 2025-06-13 05:38:50.764939+00 2025-06-13 05:38:50.764951+00 f t 2641 \N \N f f +1777 2025-06-13 05:49:58.731494+00 2025-06-13 05:49:58.731502+00 f t 2642 \N \N f f +1778 2025-06-13 06:22:24.802372+00 2025-06-13 06:22:24.802385+00 f t 2643 \N \N f f +1779 2025-06-13 06:33:06.085462+00 2025-06-13 06:33:06.08547+00 f t 2644 \N \N f f +1780 2025-06-13 06:37:47.928352+00 2025-06-13 06:37:47.928363+00 f t 2645 \N \N f f +1781 2025-06-13 10:10:44.561497+00 2025-06-13 10:10:44.561506+00 f t 2646 \N \N f f +1782 2025-06-13 10:39:55.303595+00 2025-06-13 10:39:55.303605+00 f t 2647 \N \N f f +1783 2025-06-13 10:40:11.957516+00 2025-06-13 10:40:11.957529+00 f t 2648 \N \N f f +1784 2025-06-13 11:13:37.871688+00 2025-06-13 11:13:37.871698+00 f t 2649 \N \N f f +1785 2025-06-13 11:29:11.431245+00 2025-06-13 11:29:11.431254+00 f t 2650 \N \N f f +1786 2025-06-13 11:38:40.714025+00 2025-06-13 11:38:40.714033+00 f t 2651 \N \N f f +1787 2025-06-13 11:59:28.046184+00 2025-06-13 11:59:28.046191+00 f t 2652 \N \N f f +1788 2025-06-13 12:01:16.062445+00 2025-06-13 12:01:16.062455+00 f t 2653 \N \N f f +1789 2025-06-13 12:29:43.180667+00 2025-06-13 12:29:43.180675+00 f t 2654 \N \N f f +1790 2025-06-13 13:02:35.862493+00 2025-06-13 13:02:35.862501+00 f t 2655 \N \N f f +1791 2025-06-13 13:11:44.560973+00 2025-06-13 13:11:44.560986+00 f t 2656 \N \N f f +1792 2025-06-13 13:47:51.60974+00 2025-06-13 13:47:51.60975+00 f t 2657 \N \N f f +1793 2025-06-13 14:12:49.324383+00 2025-06-13 14:12:49.324392+00 f t 2658 \N \N f f +1794 2025-06-13 14:15:23.275568+00 2025-06-13 14:15:23.275579+00 f t 2659 \N \N f f +1795 2025-06-13 14:19:01.545369+00 2025-06-13 14:19:01.545382+00 f t 2660 \N \N f f +1796 2025-06-13 15:23:44.47953+00 2025-06-13 15:23:44.479539+00 f t 2662 \N \N f f +1797 2025-06-13 15:57:52.576134+00 2025-06-13 15:57:52.576142+00 f t 2663 \N \N f f +1798 2025-06-13 15:59:18.790157+00 2025-06-13 15:59:18.790166+00 f t 2664 \N \N f f +1799 2025-06-13 16:14:17.93789+00 2025-06-13 16:14:17.9379+00 f t 2665 \N \N f f +1800 2025-06-13 16:16:32.052099+00 2025-06-13 16:16:32.052114+00 f t 2666 \N \N f f +1801 2025-06-13 16:18:52.840031+00 2025-06-13 16:18:52.840043+00 f t 2498 \N \N f f +1802 2025-06-13 16:24:04.999624+00 2025-06-13 16:24:04.999633+00 f t 2667 \N \N f f +1803 2025-06-13 16:41:16.049641+00 2025-06-13 16:41:16.049651+00 f t 2668 \N \N f f +1804 2025-06-13 17:13:32.936575+00 2025-06-13 17:13:32.936587+00 f t 2669 \N \N f f +1805 2025-06-13 17:15:22.764779+00 2025-06-13 17:15:22.764788+00 f t 2670 \N \N f f +1806 2025-06-13 17:45:17.816006+00 2025-06-13 17:45:17.81602+00 f t 2671 \N \N f f +1807 2025-06-13 17:47:34.694869+00 2025-06-13 17:47:34.69488+00 f t 2672 \N \N f f +1808 2025-06-13 17:59:20.974532+00 2025-06-13 17:59:20.974541+00 f t 2673 \N \N f f +1809 2025-06-13 18:25:59.017925+00 2025-06-13 18:25:59.017937+00 f t 2674 \N \N f f +1810 2025-06-13 20:25:06.293249+00 2025-06-13 20:25:06.293261+00 f t 2675 \N \N f f +1811 2025-06-13 21:27:55.229755+00 2025-06-13 21:27:55.229763+00 f t 2676 \N \N f f +1812 2025-06-13 21:29:45.244795+00 2025-06-13 21:29:45.244808+00 f t 2677 \N \N f f +1813 2025-06-13 21:41:11.760045+00 2025-06-13 21:41:11.760053+00 f t 2678 \N \N f f +1814 2025-06-13 21:45:23.435202+00 2025-06-13 21:45:23.435214+00 f t 2679 \N \N f f +1815 2025-06-13 21:52:41.149361+00 2025-06-13 21:52:41.14937+00 f t 2680 \N \N f f +1816 2025-06-13 22:21:04.564848+00 2025-06-13 22:21:04.564863+00 f t 2681 \N \N f f +1817 2025-06-13 23:15:55.432266+00 2025-06-13 23:15:55.432279+00 f t 2682 \N \N f f +1818 2025-06-13 23:24:57.092449+00 2025-06-13 23:24:57.092461+00 f t 2683 \N \N f f +1819 2025-06-13 23:26:46.912323+00 2025-06-13 23:26:46.912332+00 f t 2684 \N \N f f +1820 2025-06-13 23:32:12.888254+00 2025-06-13 23:32:12.888265+00 f t 2685 \N \N f f +1821 2025-06-13 23:44:11.021405+00 2025-06-13 23:44:11.021416+00 f t 2686 \N \N f f +1822 2025-06-14 01:12:53.139637+00 2025-06-14 01:12:53.139646+00 f t 2687 \N \N f f +1823 2025-06-14 02:20:38.116262+00 2025-06-14 02:20:38.116276+00 f t 2688 \N \N f f +1824 2025-06-14 03:54:55.063338+00 2025-06-14 03:54:55.063346+00 f t 2689 \N \N f f +1825 2025-06-14 03:56:34.205285+00 2025-06-14 03:56:34.205298+00 f t 2690 \N \N f f +1826 2025-06-14 06:29:26.985333+00 2025-06-14 06:29:26.985344+00 f t 2691 \N \N f f +1827 2025-06-14 09:10:03.673852+00 2025-06-14 09:10:03.673892+00 f t 2692 \N \N f f +1828 2025-06-14 12:08:31.046945+00 2025-06-14 12:08:31.046954+00 f t 2693 \N \N f f +1829 2025-06-14 12:41:51.55804+00 2025-06-14 12:41:51.558052+00 f t 2694 \N \N f f +1830 2025-06-14 12:53:25.131206+00 2025-06-14 12:53:25.131218+00 f t 2695 \N \N f f +1831 2025-06-14 12:53:30.008597+00 2025-06-14 12:53:30.008609+00 f t 2696 \N \N f f +1832 2025-06-14 14:02:13.624243+00 2025-06-14 14:02:13.62428+00 f t 2697 \N \N f f +1833 2025-06-14 14:03:15.869682+00 2025-06-14 14:03:15.869693+00 f t 2698 \N \N f f +1834 2025-06-14 14:37:13.45249+00 2025-06-14 14:37:13.452499+00 f t 2699 \N \N f f +1835 2025-06-14 14:43:54.974127+00 2025-06-14 14:43:54.974135+00 f t 2700 \N \N f f +1836 2025-06-14 14:51:28.112735+00 2025-06-14 14:51:28.112744+00 f t 2701 \N \N f f +1837 2025-06-14 14:56:02.140695+00 2025-06-14 14:56:02.140704+00 f t 2702 \N \N f f +1838 2025-06-14 15:03:47.987064+00 2025-06-14 15:03:47.987075+00 f t 2703 \N \N f f +1839 2025-06-14 16:21:58.512615+00 2025-06-14 16:21:58.512624+00 f t 2704 \N \N f f +1840 2025-06-14 17:21:31.094779+00 2025-06-14 17:21:31.094789+00 f t 2705 \N \N f f +1841 2025-06-14 18:13:25.554768+00 2025-06-14 18:13:25.554776+00 f t 2706 \N \N f f +1842 2025-06-14 18:40:05.568555+00 2025-06-14 18:40:05.568568+00 f t 2707 \N \N f f +1843 2025-06-14 18:49:34.594061+00 2025-06-14 18:49:34.594074+00 f t 2708 \N \N f f +1844 2025-06-14 18:52:41.87211+00 2025-06-14 18:52:41.872118+00 f t 2709 \N \N f f +1845 2025-06-14 18:54:33.264653+00 2025-06-14 18:54:33.26466+00 f t 2710 \N \N f f +1846 2025-06-14 18:58:20.981135+00 2025-06-14 18:58:20.981146+00 f t 2711 \N \N f f +1847 2025-06-14 20:19:58.190781+00 2025-06-14 20:19:58.190792+00 f t 2712 \N \N f f +1848 2025-06-14 20:37:43.46847+00 2025-06-14 20:37:43.468484+00 f t 2714 \N \N f f +1849 2025-06-14 20:40:48.751926+00 2025-06-14 20:40:48.751933+00 f t 2715 \N \N f f +1850 2025-06-14 20:43:15.95636+00 2025-06-14 20:43:15.956372+00 f t 2716 \N \N f f +1851 2025-06-14 23:25:16.917213+00 2025-06-14 23:25:16.917224+00 f t 2720 \N \N f f +1852 2025-06-14 23:25:59.475713+00 2025-06-14 23:25:59.475723+00 f t 2721 \N \N f f +1853 2025-06-14 23:29:02.820739+00 2025-06-14 23:29:02.820751+00 f t 2722 \N \N f f +1854 2025-06-14 23:35:42.493326+00 2025-06-14 23:35:42.493338+00 f t 2723 \N \N f f +1855 2025-06-15 00:00:24.387454+00 2025-06-15 00:00:24.38747+00 f t 2724 \N \N f f +1856 2025-06-15 00:47:35.970565+00 2025-06-15 00:47:35.970576+00 f t 2725 \N \N f f +1857 2025-06-15 00:55:10.920947+00 2025-06-15 00:55:10.92096+00 f t 2726 \N \N f f +1858 2025-06-15 01:03:23.618957+00 2025-06-15 01:03:23.618966+00 f t 2727 \N \N f f +1859 2025-06-15 01:22:24.30699+00 2025-06-15 01:22:24.307+00 f t 2728 \N \N f f +1860 2025-06-15 01:53:26.915256+00 2025-06-15 01:53:26.915264+00 f t 2729 \N \N f f +1861 2025-06-15 02:08:05.211773+00 2025-06-15 02:08:05.21178+00 f t 2730 \N \N f f +1862 2025-06-15 02:45:38.600319+00 2025-06-15 02:45:38.600329+00 f t 2731 \N \N f f +1863 2025-06-15 02:52:13.450677+00 2025-06-15 02:52:13.450689+00 f t 2732 \N \N f f +1864 2025-06-15 03:04:23.341323+00 2025-06-15 03:04:23.341332+00 f t 2733 \N \N f f +1865 2025-06-15 03:04:27.382859+00 2025-06-15 03:04:27.382871+00 f t 2734 \N \N f f +1866 2025-06-15 03:27:30.93481+00 2025-06-15 03:27:30.934817+00 f t 2735 \N \N f f +1867 2025-06-15 03:53:45.085585+00 2025-06-15 03:53:45.085596+00 f t 2736 \N \N f f +1868 2025-06-15 04:43:41.371509+00 2025-06-15 04:43:41.371516+00 f t 2737 \N \N f f +1869 2025-06-15 04:45:36.599846+00 2025-06-15 04:45:36.599853+00 f t 2738 \N \N f f +1870 2025-06-15 05:00:51.814339+00 2025-06-15 05:00:51.814351+00 f t 2739 \N \N f f +1871 2025-06-15 09:24:38.12766+00 2025-06-15 09:24:38.127672+00 f t 2740 \N \N f f +1872 2025-06-15 12:08:10.765756+00 2025-06-15 12:08:10.765765+00 f t 2741 \N \N f f +1873 2025-06-15 12:47:51.660322+00 2025-06-15 12:47:51.660332+00 f t 2742 \N \N f f +1874 2025-06-15 12:55:22.855294+00 2025-06-15 12:55:22.855303+00 f t 2743 \N \N f f +1875 2025-06-15 13:21:20.595548+00 2025-06-15 13:21:20.595556+00 f t 2744 \N \N f f +1876 2025-06-15 13:23:02.821508+00 2025-06-15 13:23:02.821518+00 f t 2745 \N \N f f +1877 2025-06-15 13:42:45.675926+00 2025-06-15 13:42:45.675935+00 f t 2746 \N \N f f +1878 2025-06-15 14:19:28.431447+00 2025-06-15 14:19:28.431464+00 f t 2747 \N \N f f +1879 2025-06-15 15:02:30.191197+00 2025-06-15 15:02:30.191212+00 f t 2748 \N \N f f +1880 2025-06-15 15:24:13.424448+00 2025-06-15 15:24:13.424457+00 f t 2749 \N \N f f +1881 2025-06-15 15:27:52.689451+00 2025-06-15 15:27:52.689459+00 f t 2750 \N \N f f +1882 2025-06-15 16:00:08.274035+00 2025-06-15 16:00:08.274049+00 f t 2751 \N \N f f +1883 2025-06-15 16:16:14.043264+00 2025-06-15 16:16:14.043277+00 f t 2752 \N \N f f +1884 2025-06-15 17:21:18.364913+00 2025-06-15 17:21:18.364937+00 f t 2753 \N \N f f +1885 2025-06-15 17:37:38.353391+00 2025-06-15 17:37:38.353401+00 f t 2755 \N \N f f +1886 2025-06-15 18:04:27.42775+00 2025-06-15 18:04:27.42776+00 f t 2756 \N \N f f +1887 2025-06-15 18:26:29.702153+00 2025-06-15 18:26:29.702164+00 f t 2757 \N \N f f +1888 2025-06-15 19:03:44.004717+00 2025-06-15 19:03:44.004726+00 f t 2758 \N \N f f +1889 2025-06-15 20:35:07.841984+00 2025-06-15 20:35:07.841995+00 f t 2759 \N \N f f +1890 2025-06-15 20:52:33.84664+00 2025-06-15 20:52:33.846652+00 f t 2760 \N \N f f +1891 2025-06-15 21:10:19.138678+00 2025-06-15 21:10:19.138689+00 f t 2761 \N \N f f +1892 2025-06-15 21:13:44.770836+00 2025-06-15 21:13:44.770846+00 f t 2762 \N \N f f +1893 2025-06-15 21:26:40.976737+00 2025-06-15 21:26:40.976746+00 f t 2763 \N \N f f +1894 2025-06-15 21:54:34.833946+00 2025-06-15 21:54:34.833954+00 f t 2764 \N \N f f +1895 2025-06-15 21:54:57.492664+00 2025-06-15 21:54:57.492675+00 f t 2765 \N \N f f +1896 2025-06-15 21:55:15.881992+00 2025-06-15 21:55:15.882003+00 f t 2766 \N \N f f +1897 2025-06-15 21:59:26.035066+00 2025-06-15 21:59:26.035073+00 f t 2767 \N \N f f +1898 2025-06-15 22:09:01.38841+00 2025-06-15 22:09:01.388425+00 f t 2768 \N \N f f +1899 2025-06-15 22:31:08.824744+00 2025-06-15 22:31:08.824757+00 f t 2769 \N \N f f +1900 2025-06-15 22:35:21.078326+00 2025-06-15 22:35:21.078338+00 f t 2770 \N \N f f +1901 2025-06-15 22:37:43.151557+00 2025-06-15 22:37:43.151566+00 f t 2771 \N \N f f +1902 2025-06-15 22:48:19.522617+00 2025-06-15 22:48:19.522628+00 f t 2772 \N \N f f +1903 2025-06-15 22:51:05.023731+00 2025-06-15 22:51:05.023745+00 f t 2773 \N \N f f +1904 2025-06-15 22:57:16.286937+00 2025-06-15 22:57:16.286946+00 f t 2774 \N \N f f +1905 2025-06-15 23:09:00.954845+00 2025-06-15 23:09:00.954857+00 f t 2775 \N \N f f +1906 2025-06-15 23:11:50.870655+00 2025-06-15 23:11:50.870666+00 f t 2776 \N \N f f +1907 2025-06-15 23:23:53.694314+00 2025-06-15 23:23:53.694321+00 f t 2777 \N \N f f +1908 2025-06-15 23:25:24.440597+00 2025-06-15 23:24:28.79869+00 f t 2778 \N \N f f +1909 2025-06-15 23:40:33.217554+00 2025-06-15 23:40:33.217567+00 f t 2779 \N \N f f +1910 2025-06-15 23:41:52.155496+00 2025-06-15 23:41:52.155504+00 f t 2780 \N \N f f +1911 2025-06-16 00:04:39.741581+00 2025-06-16 00:04:39.741593+00 f t 2781 \N \N f f +1912 2025-06-16 00:08:30.407557+00 2025-06-16 00:08:30.407565+00 f t 2782 \N \N f f +1913 2025-06-16 00:54:11.024931+00 2025-06-16 00:54:11.02494+00 f t 2783 \N \N f f +1914 2025-06-16 01:29:26.664455+00 2025-06-16 01:29:26.664467+00 f t 2784 \N \N f f +1915 2025-06-16 02:10:31.490122+00 2025-06-16 02:10:31.49013+00 f t 2785 \N \N f f +1916 2025-06-16 02:11:07.222846+00 2025-06-16 02:11:07.222856+00 f t 2786 \N \N f f +1917 2025-06-16 02:35:31.072713+00 2025-06-16 02:35:31.072748+00 f t 2787 \N \N f f +1918 2025-06-16 02:56:43.633396+00 2025-06-16 02:56:43.633405+00 f t 2788 \N \N f f +1919 2025-06-16 03:17:45.026585+00 2025-06-16 03:17:45.026593+00 f t 2789 \N \N f f +1920 2025-06-16 03:21:05.230789+00 2025-06-16 03:21:05.230802+00 f t 2790 \N \N f f +1921 2025-06-16 03:27:29.4981+00 2025-06-16 03:27:29.498114+00 f t 2791 \N \N f f +1922 2025-06-16 03:47:48.570258+00 2025-06-16 03:47:48.570268+00 f t 2792 \N \N f f +1923 2025-06-16 05:23:56.419829+00 2025-06-16 05:23:56.419839+00 f t 2793 \N \N f f +1924 2025-06-16 06:57:53.728022+00 2025-06-16 06:57:53.728041+00 f t 2794 \N \N f f +1925 2025-06-16 08:23:51.317159+00 2025-06-16 08:21:22.9187+00 f t 2795 \N \N f f +1926 2025-06-16 09:55:26.038627+00 2025-06-16 09:55:26.038639+00 f t 2796 \N \N f f +1927 2025-06-16 11:52:00.619975+00 2025-06-16 11:52:00.619987+00 f t 2797 \N \N f f +1928 2025-06-16 12:06:25.037445+00 2025-06-16 12:06:25.037456+00 f t 2798 \N \N f f +1929 2025-06-16 12:26:55.094585+00 2025-06-16 12:26:55.094597+00 f t 2799 \N \N f f +1930 2025-06-16 12:45:51.614812+00 2025-06-16 12:45:51.614824+00 f t 2800 \N \N f f +1931 2025-06-16 13:53:49.729767+00 2025-06-16 13:53:49.729775+00 f t 2801 \N \N f f +1932 2025-06-16 13:56:15.981457+00 2025-06-16 13:56:15.981469+00 f t 2802 \N \N f f +1933 2025-06-16 14:10:06.99074+00 2025-06-16 14:10:06.990753+00 f t 2803 \N \N f f +1934 2025-06-16 14:33:00.302146+00 2025-06-16 14:33:00.302155+00 f t 2804 \N \N f f +1935 2025-06-16 14:41:49.024179+00 2025-06-16 14:41:49.024192+00 f t 2805 \N \N f f +1936 2025-06-16 16:06:24.643831+00 2025-06-16 16:06:24.643842+00 f t 2806 \N \N f f +1937 2025-06-16 16:30:51.253039+00 2025-06-16 16:30:51.253046+00 f t 2807 \N \N f f +1938 2025-06-16 16:42:36.087621+00 2025-06-16 16:42:36.087632+00 f t 2808 \N \N f f +1939 2025-06-16 16:47:00.054062+00 2025-06-16 16:47:00.054069+00 f t 2809 \N \N f f +1940 2025-06-16 16:53:01.232327+00 2025-06-16 16:53:01.232338+00 f t 2810 \N \N f f +1941 2025-06-16 16:59:03.404292+00 2025-06-16 16:59:03.404301+00 f t 2811 \N \N f f +1942 2025-06-16 17:41:16.084263+00 2025-06-16 17:41:16.084271+00 f t 2812 \N \N f f +1943 2025-06-16 17:45:11.901246+00 2025-06-16 17:45:11.901254+00 f t 2813 \N \N f f +1944 2025-06-16 17:45:23.857472+00 2025-06-16 17:45:23.857484+00 f t 2814 \N \N f f +1945 2025-06-16 17:47:03.112264+00 2025-06-16 17:47:03.112275+00 f t 2815 \N \N f f +1946 2025-06-16 18:01:06.150587+00 2025-06-16 18:01:06.150596+00 f t 2816 \N \N f f +1947 2025-06-16 18:32:06.060038+00 2025-06-16 18:32:06.06005+00 f t 2817 \N \N f f +1948 2025-06-16 18:42:56.472913+00 2025-06-16 18:42:56.47292+00 f t 2818 \N \N f f +1949 2025-06-16 18:51:13.161552+00 2025-06-16 18:51:13.161563+00 f t 2819 \N \N f f +1950 2025-06-16 19:55:13.546458+00 2025-06-16 19:55:13.546468+00 f t 2820 \N \N f f +1951 2025-06-16 20:41:52.221004+00 2025-06-16 20:41:52.221017+00 f t 2824 \N \N f f +1952 2025-06-16 20:54:02.002224+00 2025-06-16 20:54:02.002235+00 f t 2825 \N \N f f +1953 2025-06-16 20:56:01.933769+00 2025-06-16 20:56:01.933783+00 f t 2826 \N \N f f +1954 2025-06-16 21:06:24.749084+00 2025-06-16 21:06:24.749093+00 f t 2827 \N \N f f +1955 2025-06-16 21:33:04.459307+00 2025-06-16 21:33:04.459319+00 f t 2828 \N \N f f +1956 2025-06-16 21:53:26.480188+00 2025-06-16 21:50:12.603299+00 f t 2830 \N \N f f +1957 2025-06-16 22:09:28.456213+00 2025-06-16 22:09:28.456225+00 f t 2831 \N \N f f +1958 2025-06-16 22:14:03.79813+00 2025-06-16 22:14:03.798138+00 f t 2832 \N \N f f +1959 2025-06-16 22:17:07.751287+00 2025-06-16 22:17:07.751296+00 f t 2833 \N \N f f +1960 2025-06-16 22:30:31.359956+00 2025-06-16 22:30:31.359968+00 f t 2834 \N \N f f +1961 2025-06-16 23:10:41.64953+00 2025-06-16 23:10:41.649543+00 f t 2835 \N \N f f +1962 2025-06-16 23:45:37.292557+00 2025-06-16 23:45:37.292564+00 f t 2836 \N \N f f +1963 2025-06-17 00:17:13.345566+00 2025-06-17 00:17:13.345578+00 f t 2837 \N \N f f +1964 2025-06-17 00:18:30.169653+00 2025-06-17 00:18:30.169661+00 f t 2838 \N \N f f +1965 2025-06-17 00:29:06.666018+00 2025-06-17 00:29:06.666027+00 f t 2839 \N \N f f +1966 2025-06-17 00:47:11.018265+00 2025-06-17 00:47:11.018274+00 f t 2840 \N \N f f +1967 2025-06-17 00:56:42.915888+00 2025-06-17 00:56:42.915901+00 f t 2841 \N \N f f +1968 2025-06-17 01:12:31.799702+00 2025-06-17 01:12:31.799713+00 f t 2842 \N \N f f +1969 2025-06-17 01:30:22.214115+00 2025-06-17 01:30:22.214127+00 f t 2843 \N \N f f +1970 2025-06-17 03:00:46.523711+00 2025-06-17 03:00:46.523726+00 f t 2844 \N \N f f +1971 2025-06-17 03:13:57.680897+00 2025-06-17 03:13:57.680908+00 f t 2845 \N \N f f +1972 2025-06-17 03:25:42.353704+00 2025-06-17 03:25:42.353718+00 f t 2846 \N \N f f +1973 2025-06-17 04:59:45.353122+00 2025-06-17 04:59:45.353132+00 f t 2847 \N \N f f +1974 2025-06-17 05:24:46.322888+00 2025-06-17 05:24:46.322899+00 f t 2848 \N \N f f +1975 2025-06-17 12:05:35.4329+00 2025-06-17 12:05:35.432909+00 f t 2849 \N \N f f +1976 2025-06-17 12:47:40.82281+00 2025-06-17 12:47:40.822818+00 f t 2850 \N \N f f +1977 2025-06-17 12:49:06.510403+00 2025-06-17 12:49:06.510413+00 f t 2851 \N \N f f +1978 2025-06-17 13:19:54.505795+00 2025-06-17 13:19:54.505802+00 f t 2852 \N \N f f +1979 2025-06-17 13:34:33.045414+00 2025-06-17 13:34:33.045425+00 f t 2853 \N \N f f +1980 2025-06-17 13:38:14.478145+00 2025-06-17 13:38:14.478157+00 f t 2854 \N \N f f +1981 2025-06-17 14:05:22.287025+00 2025-06-17 14:05:22.287037+00 f t 2855 \N \N f f +1982 2025-06-17 14:27:20.677681+00 2025-06-17 14:27:20.677689+00 f t 2857 \N \N f f +1983 2025-06-17 14:33:55.486758+00 2025-06-17 14:33:55.48677+00 f t 2856 \N \N f f +1984 2025-06-17 14:34:11.875543+00 2025-06-17 14:34:11.875554+00 f t 2858 \N \N f f +1985 2025-06-17 14:37:20.396718+00 2025-06-17 14:37:20.396732+00 f t 2859 \N \N f f +1986 2025-06-17 14:38:29.129547+00 2025-06-17 14:38:29.129559+00 f t 2860 \N \N f f +1987 2025-06-17 14:38:41.06968+00 2025-06-17 14:38:41.06969+00 f t 2861 \N \N f f +1988 2025-06-17 14:39:13.473698+00 2025-06-17 14:39:13.47371+00 f t 2862 \N \N f f +1989 2025-06-17 14:40:52.406127+00 2025-06-17 14:40:52.406139+00 f t 2863 \N \N f f +1990 2025-06-17 14:44:52.802154+00 2025-06-17 14:44:52.802166+00 f t 2864 \N \N f f +1991 2025-06-17 14:46:57.8557+00 2025-06-17 14:46:57.855712+00 f t 2865 \N \N f f +1992 2025-06-17 14:58:51.660412+00 2025-06-17 14:58:51.660423+00 f t 2866 \N \N f f +1994 2025-06-17 15:10:03.985816+00 2025-06-17 15:10:03.98583+00 f t 2868 \N \N f f +2071 2025-06-19 00:38:02.472116+00 2025-06-19 00:38:02.472126+00 f t 2952 \N \N f f +2072 2025-06-19 00:38:38.968293+00 2025-06-19 00:38:38.968308+00 f t 2953 \N \N f f +1995 2025-06-17 15:46:24.607904+00 2025-06-17 15:46:24.607916+00 f t 2870 \N \N f f +1993 2025-06-17 15:50:38.306879+00 2025-06-17 15:09:43.397179+00 f t 2867 \N \N f f +1996 2025-06-17 15:51:33.20565+00 2025-06-17 15:51:33.205658+00 f t 2871 \N \N f f +1997 2025-06-17 16:14:07.346009+00 2025-06-17 16:14:07.34602+00 f t 2872 \N \N f f +1998 2025-06-17 16:16:31.532873+00 2025-06-17 16:16:31.532882+00 f t 2873 \N \N f f +1999 2025-06-17 17:20:37.250132+00 2025-06-17 17:20:37.250141+00 f t 2874 \N \N f f +2000 2025-06-17 17:24:53.922199+00 2025-06-17 17:24:53.922207+00 f t 2875 \N \N f f +2001 2025-06-17 17:53:18.578847+00 2025-06-17 17:53:18.57886+00 f t 2876 \N \N f f +2002 2025-06-17 18:02:04.346853+00 2025-06-17 18:02:04.346863+00 f t 2877 \N \N f f +2003 2025-06-17 18:47:30.242053+00 2025-06-17 18:47:30.24206+00 f t 2878 \N \N f f +2004 2025-06-17 18:56:18.555992+00 2025-06-17 18:56:18.555999+00 f t 2879 \N \N f f +2005 2025-06-17 18:56:45.868907+00 2025-06-17 18:56:45.868919+00 f t 2880 \N \N f f +2006 2025-06-17 21:16:24.842429+00 2025-06-17 21:16:24.842437+00 f t 2882 \N \N f f +2007 2025-06-17 21:30:43.643663+00 2025-06-17 21:30:43.643673+00 f t 2883 \N \N f f +2008 2025-06-17 21:54:38.520438+00 2025-06-17 21:54:38.520448+00 f t 2884 \N \N f f +2009 2025-06-17 22:52:58.519099+00 2025-06-17 22:52:58.519107+00 f t 2885 \N \N f f +2010 2025-06-17 22:56:21.42348+00 2025-06-17 22:56:21.423489+00 f t 2886 \N \N f f +2011 2025-06-17 23:18:47.619186+00 2025-06-17 23:18:47.619194+00 f t 2887 \N \N f f +2012 2025-06-17 23:19:58.086118+00 2025-06-17 23:19:58.086128+00 f t 2888 \N \N f f +2013 2025-06-17 23:49:44.140976+00 2025-06-17 23:49:44.140984+00 f t 2889 \N \N f f +2014 2025-06-18 00:14:52.26877+00 2025-06-18 00:14:52.26878+00 f t 2890 \N \N f f +2015 2025-06-18 00:43:12.661052+00 2025-06-18 00:43:12.661061+00 f t 2891 \N \N f f +2016 2025-06-18 01:17:57.61985+00 2025-06-18 01:17:57.619858+00 f t 2893 \N \N f f +2017 2025-06-18 02:31:24.989886+00 2025-06-18 02:31:24.989893+00 f t 2896 \N \N f f +2018 2025-06-18 02:33:58.417745+00 2025-06-18 02:33:58.417756+00 f t 2897 \N \N f f +2019 2025-06-18 02:47:35.880864+00 2025-06-18 02:47:35.880875+00 f t 2898 \N \N f f +2020 2025-06-18 02:48:03.157331+00 2025-06-18 02:48:03.157344+00 f t 2899 \N \N f f +2021 2025-06-18 02:48:46.715586+00 2025-06-18 02:48:46.715595+00 f t 2900 \N \N f f +2022 2025-06-18 02:51:45.014247+00 2025-06-18 02:51:45.014256+00 f t 2901 \N \N f f +2023 2025-06-18 04:54:58.093962+00 2025-06-18 04:54:58.09397+00 f t 2902 \N \N f f +2024 2025-06-18 05:39:09.003203+00 2025-06-18 05:39:09.003213+00 f t 2903 \N \N f f +2025 2025-06-18 06:07:05.147336+00 2025-06-18 06:07:05.147344+00 f t 2904 \N \N f f +2026 2025-06-18 06:12:07.531889+00 2025-06-18 06:12:07.5319+00 f t 2905 \N \N f f +2027 2025-06-18 06:14:11.33026+00 2025-06-18 06:14:11.330272+00 f t 2906 \N \N f f +2028 2025-06-18 07:46:43.896075+00 2025-06-18 07:46:43.896085+00 f t 2907 \N \N f f +2029 2025-06-18 10:30:21.876127+00 2025-06-18 10:30:21.876137+00 f t 2908 \N \N f f +2030 2025-06-18 10:57:33.578336+00 2025-06-18 10:57:33.578349+00 f t 2909 \N \N f f +2031 2025-06-18 11:24:30.70064+00 2025-06-18 11:24:30.700654+00 f t 2910 \N \N f f +2032 2025-06-18 12:24:34.850181+00 2025-06-18 12:24:34.850192+00 f t 2911 \N \N f f +2033 2025-06-18 12:28:40.794239+00 2025-06-18 12:28:40.794249+00 f t 2912 \N \N f f +2034 2025-06-18 13:04:14.986773+00 2025-06-18 13:04:14.986785+00 f t 2913 \N \N f f +2035 2025-06-18 14:07:50.770266+00 2025-06-18 14:07:50.770275+00 f t 2914 \N \N f f +2036 2025-06-18 15:15:19.560854+00 2025-06-18 15:15:19.560861+00 f t 2915 \N \N f f +2037 2025-06-18 15:17:17.233979+00 2025-06-18 15:17:17.233987+00 f t 2916 \N \N f f +2038 2025-06-18 15:18:33.623411+00 2025-06-18 15:18:33.623419+00 f t 2917 \N \N f f +2039 2025-06-18 15:19:07.76877+00 2025-06-18 15:19:07.768782+00 f t 2918 \N \N f f +2040 2025-06-18 15:41:54.418501+00 2025-06-18 15:41:54.418512+00 f t 2919 \N \N f f +2041 2025-06-18 15:55:08.840715+00 2025-06-18 15:55:08.840727+00 f t 2920 \N \N f f +2042 2025-06-18 16:03:50.602358+00 2025-06-18 16:03:50.60237+00 f t 2921 \N \N f f +2043 2025-06-18 16:08:29.93263+00 2025-06-18 16:08:29.932637+00 f t 2922 \N \N f f +2044 2025-06-18 16:11:10.905752+00 2025-06-18 16:11:10.905761+00 f t 2923 \N \N f f +2045 2025-06-18 16:19:32.531231+00 2025-06-18 16:19:32.531242+00 f t 2924 \N \N f f +2046 2025-06-18 16:28:34.802804+00 2025-06-18 16:28:34.802812+00 f t 2926 \N \N f f +2047 2025-06-18 17:21:54.483338+00 2025-06-18 17:21:54.48335+00 f t 2927 \N \N f f +2048 2025-06-18 17:25:35.826458+00 2025-06-18 17:25:35.82647+00 f t 2928 \N \N f f +2049 2025-06-18 17:30:26.490161+00 2025-06-18 17:30:26.490171+00 f t 2929 \N \N f f +2050 2025-06-18 17:43:22.386541+00 2025-06-18 17:43:22.386552+00 f t 2930 \N \N f f +2051 2025-06-18 17:46:18.617249+00 2025-06-18 17:46:18.61726+00 f t 2931 \N \N f f +2052 2025-06-18 18:19:35.094844+00 2025-06-18 18:19:35.094852+00 f t 2932 \N \N f f +2053 2025-06-18 18:41:59.558984+00 2025-06-18 18:41:59.558995+00 f t 2933 \N \N f f +2054 2025-06-18 18:55:16.23382+00 2025-06-18 18:55:16.233828+00 f t 2934 \N \N f f +2055 2025-06-18 19:21:48.596826+00 2025-06-18 19:21:48.596834+00 f t 2935 \N \N f f +2056 2025-06-18 19:25:15.560254+00 2025-06-18 19:25:15.560261+00 f t 2936 \N \N f f +2057 2025-06-18 19:36:19.738466+00 2025-06-18 19:36:19.738474+00 f t 2937 \N \N f f +2058 2025-06-18 19:41:07.580334+00 2025-06-18 19:41:07.580346+00 f t 2938 \N \N f f +2059 2025-06-18 21:22:24.425279+00 2025-06-18 21:22:24.425286+00 f t 2939 \N \N f f +2060 2025-06-18 21:33:44.855693+00 2025-06-18 21:33:44.855705+00 f t 2940 \N \N f f +2061 2025-06-18 22:19:03.864722+00 2025-06-18 22:19:03.864733+00 f t 2941 \N \N f f +2062 2025-06-18 22:36:36.989578+00 2025-06-18 22:36:36.989586+00 f t 2942 \N \N f f +2063 2025-06-18 22:41:54.580061+00 2025-06-18 22:41:54.580074+00 f t 2943 \N \N f f +2064 2025-06-18 22:53:57.55415+00 2025-06-18 22:53:57.554159+00 f t 2944 \N \N f f +2065 2025-06-18 22:54:21.240574+00 2025-06-18 22:54:21.240586+00 f t 2945 \N \N f f +2066 2025-06-18 23:21:35.966621+00 2025-06-18 23:21:35.966629+00 f t 2946 \N \N f f +2067 2025-06-18 23:50:11.379123+00 2025-06-18 23:50:11.379154+00 f t 2947 \N \N f f +2068 2025-06-18 23:51:22.154503+00 2025-06-18 23:51:22.154514+00 f t 2948 \N \N f f +2069 2025-06-19 00:05:05.586985+00 2025-06-19 00:05:05.586995+00 f t 2949 \N \N f f +2070 2025-06-19 00:06:09.456463+00 2025-06-19 00:06:09.456472+00 f t 2951 \N \N f f +2073 2025-06-19 00:56:57.466139+00 2025-06-19 00:56:57.46615+00 f t 2954 \N \N f f +2074 2025-06-19 01:07:08.650448+00 2025-06-19 01:07:08.650486+00 f t 2955 \N \N f f +2075 2025-06-19 01:21:28.946824+00 2025-06-19 01:21:28.946838+00 f t 2956 \N \N f f +2076 2025-06-19 01:22:48.007709+00 2025-06-19 01:22:48.007721+00 f t 2957 \N \N f f +2077 2025-06-19 01:23:17.974906+00 2025-06-19 01:23:17.974918+00 f t 2958 \N \N f f +2078 2025-06-19 01:25:26.364199+00 2025-06-19 01:25:26.364212+00 f t 2959 \N \N f f +2079 2025-06-19 01:28:01.068155+00 2025-06-19 01:28:01.068165+00 f t 2960 \N \N f f +2080 2025-06-19 01:31:31.255066+00 2025-06-19 01:31:31.255076+00 f t 2961 \N \N f f +2081 2025-06-19 01:50:25.848178+00 2025-06-19 01:50:25.848191+00 f t 2962 \N \N f f +2082 2025-06-19 02:41:06.728346+00 2025-06-19 02:41:06.728361+00 f t 2963 \N \N f f +2083 2025-06-19 02:54:11.038526+00 2025-06-19 02:54:11.038541+00 f t 2964 \N \N f f +2084 2025-06-19 03:31:38.63156+00 2025-06-19 03:31:38.631575+00 f t 2965 \N \N f f +2085 2025-06-19 03:33:30.070771+00 2025-06-19 03:33:30.070784+00 f t 2966 \N \N f f +2086 2025-06-19 04:19:14.338445+00 2025-06-19 04:19:14.338455+00 f t 2967 \N \N f f +2087 2025-06-19 05:32:57.735715+00 2025-06-19 05:32:57.735728+00 f t 168 \N \N f f +2088 2025-06-19 09:59:56.07118+00 2025-06-19 09:59:56.071196+00 f t 2968 \N \N f f +2089 2025-06-19 10:39:11.454318+00 2025-06-19 10:39:11.45433+00 f t 2969 \N \N f f +2090 2025-06-19 10:58:16.350358+00 2025-06-19 10:58:16.350367+00 f t 2970 \N \N f f +2091 2025-06-19 11:00:20.722274+00 2025-06-19 11:00:20.722283+00 f t 2971 \N \N f f +2092 2025-06-19 12:29:26.314234+00 2025-06-19 12:24:30.284366+00 f t 2972 \N \N f f +2093 2025-06-19 13:12:31.423875+00 2025-06-19 13:12:31.423889+00 f t 2974 \N \N f f +2094 2025-06-19 13:19:44.289344+00 2025-06-19 13:19:44.289355+00 f t 2975 \N \N f f +2095 2025-06-19 15:36:44.400642+00 2025-06-19 15:36:44.400652+00 f t 2977 \N \N f f +2096 2025-06-19 16:05:37.296116+00 2025-06-19 16:05:37.296128+00 f t 2978 \N \N f f +2097 2025-06-19 16:15:23.562508+00 2025-06-19 16:15:23.56252+00 f t 2979 \N \N f f +2098 2025-06-19 16:42:47.79032+00 2025-06-19 16:42:47.790335+00 f t 2980 \N \N f f +2099 2025-06-19 16:43:00.912787+00 2025-06-19 16:43:00.912797+00 f t 2981 \N \N f f +2100 2025-06-19 16:55:04.622449+00 2025-06-19 16:55:04.622464+00 f t 2982 \N \N f f +2101 2025-06-19 16:55:28.925939+00 2025-06-19 16:55:28.925949+00 f t 2983 \N \N f f +2102 2025-06-19 17:01:41.993192+00 2025-06-19 17:01:41.993206+00 f t 2984 \N \N f f +2103 2025-06-19 17:05:00.115867+00 2025-06-19 17:05:00.11588+00 f t 2985 \N \N f f +2104 2025-06-19 17:06:57.315819+00 2025-06-19 17:06:57.315831+00 f t 2986 \N \N f f +2105 2025-06-19 17:11:35.00345+00 2025-06-19 17:11:35.003459+00 f t 2987 \N \N f f +2106 2025-06-19 17:15:06.937343+00 2025-06-19 17:15:06.937358+00 f t 2988 \N \N f f +2107 2025-06-19 17:19:35.261981+00 2025-06-19 17:19:35.261994+00 f t 2989 \N \N f f +2108 2025-06-19 17:29:42.155557+00 2025-06-19 17:29:42.155566+00 f t 2990 \N \N f f +2109 2025-06-19 17:46:12.930929+00 2025-06-19 17:46:12.930938+00 f t 2991 \N \N f f +2110 2025-06-19 18:11:08.011766+00 2025-06-19 18:11:08.011781+00 f t 2992 \N \N f f +2111 2025-06-19 18:22:42.396073+00 2025-06-19 18:22:42.396087+00 f t 2993 \N \N f f +2112 2025-06-19 18:23:25.836931+00 2025-06-19 18:23:25.836941+00 f t 2994 \N \N f f +2113 2025-06-19 18:24:24.627033+00 2025-06-19 18:24:24.627042+00 f t 2995 \N \N f f +2114 2025-06-19 18:28:32.17375+00 2025-06-19 18:28:32.173761+00 f t 2996 \N \N f f +2115 2025-06-19 19:06:07.264937+00 2025-06-19 19:06:07.264954+00 f t 2997 \N \N f f +2116 2025-06-19 19:14:32.224592+00 2025-06-19 19:14:32.224604+00 f t 2998 \N \N f f +2117 2025-06-19 20:02:45.171806+00 2025-06-19 20:02:45.17182+00 f t 2999 \N \N f f +2118 2025-06-19 20:07:23.99553+00 2025-06-19 20:07:23.995545+00 f t 3000 \N \N f f +2119 2025-06-19 20:26:41.885346+00 2025-06-19 20:26:41.885355+00 f t 3001 \N \N f f +2120 2025-06-19 20:49:34.889048+00 2025-06-19 20:49:34.889058+00 f t 3003 \N \N f f +2121 2025-06-19 21:11:15.45971+00 2025-06-19 21:11:15.459724+00 f t 3004 \N \N f f +2122 2025-06-19 21:27:42.662+00 2025-06-19 21:27:42.662009+00 f t 3005 \N \N f f +2123 2025-06-19 21:30:21.800626+00 2025-06-19 21:30:21.800636+00 f t 2856 \N \N f f +2124 2025-06-19 22:16:14.274401+00 2025-06-19 22:16:14.274415+00 f t 3006 \N \N f f +2125 2025-06-19 22:30:59.140113+00 2025-06-19 22:30:59.140122+00 f t 3007 \N \N f f +2126 2025-06-19 22:47:51.323804+00 2025-06-19 22:47:51.323814+00 f t 3008 \N \N f f +2127 2025-06-19 22:58:49.225064+00 2025-06-19 22:58:49.225073+00 f t 3009 \N \N f f +2128 2025-06-19 23:07:13.416257+00 2025-06-19 23:07:13.416268+00 f t 3010 \N \N f f +2129 2025-06-19 23:16:43.833945+00 2025-06-19 23:16:43.833957+00 f t 3011 \N \N f f +2130 2025-06-19 23:27:20.132366+00 2025-06-19 23:27:20.132376+00 f t 3012 \N \N f f +2131 2025-06-19 23:45:45.234917+00 2025-06-19 23:45:45.234928+00 f t 3013 \N \N f f +2132 2025-06-19 23:46:01.12762+00 2025-06-19 23:46:01.127632+00 f t 3014 \N \N f f +2133 2025-06-19 23:52:17.159414+00 2025-06-19 23:52:17.159425+00 f t 3015 \N \N f f +2134 2025-06-19 23:56:49.752644+00 2025-06-19 23:56:49.752658+00 f t 3016 \N \N f f +2135 2025-06-20 00:29:40.723416+00 2025-06-20 00:29:40.723428+00 f t 3017 \N \N f f +2136 2025-06-20 00:45:39.983539+00 2025-06-20 00:45:39.983552+00 f t 3018 \N \N f f +2137 2025-06-20 00:47:52.130101+00 2025-06-20 00:47:52.130118+00 f t 3019 \N \N f f +2138 2025-06-20 00:50:41.804437+00 2025-06-20 00:50:41.80445+00 f t 3020 \N \N f f +2139 2025-06-20 00:51:22.939379+00 2025-06-20 00:51:22.939391+00 f t 3021 \N \N f f +2140 2025-06-20 01:04:15.288462+00 2025-06-20 01:04:15.288477+00 f t 3022 \N \N f f +2141 2025-06-20 01:07:51.775681+00 2025-06-20 01:07:51.775694+00 f t 3023 \N \N f f +2142 2025-06-20 01:08:10.44718+00 2025-06-20 01:08:10.447192+00 f t 3024 \N \N f f +2143 2025-06-20 01:08:33.061392+00 2025-06-20 01:08:33.061401+00 f t 3025 \N \N f f +2144 2025-06-20 01:10:12.113277+00 2025-06-20 01:10:12.113291+00 f t 3026 \N \N f f +2145 2025-06-20 01:12:42.31313+00 2025-06-20 01:12:42.313142+00 f t 3027 \N \N f f +2146 2025-06-20 01:15:14.917033+00 2025-06-20 01:15:14.917045+00 f t 3028 \N \N f f +2147 2025-06-20 01:15:55.68019+00 2025-06-20 01:15:55.680201+00 f t 3029 \N \N f f +2148 2025-06-20 01:16:34.793948+00 2025-06-20 01:16:34.793957+00 f t 3030 \N \N f f +2149 2025-06-20 01:16:45.584494+00 2025-06-20 01:16:45.584506+00 f t 3031 \N \N f f +2150 2025-06-20 02:15:36.436875+00 2025-06-20 02:15:36.436891+00 f t 3032 \N \N f f +2151 2025-06-20 03:08:08.201637+00 2025-06-20 03:08:08.201649+00 f t 3033 \N \N f f +2152 2025-06-20 03:08:25.733401+00 2025-06-20 03:08:25.733414+00 f t 3034 \N \N f f +2153 2025-06-20 03:10:40.25272+00 2025-06-20 03:10:40.252732+00 f t 3035 \N \N f f +2154 2025-06-20 03:35:53.714687+00 2025-06-20 03:35:53.714696+00 f t 3036 \N \N f f +2155 2025-06-20 03:43:11.444925+00 2025-06-20 03:43:11.444935+00 f t 3037 \N \N f f +2156 2025-06-20 06:16:22.101879+00 2025-06-20 06:16:22.10189+00 f t 3038 \N \N f f +2157 2025-06-20 09:15:13.661494+00 2025-06-20 09:15:13.661511+00 f t 3039 \N \N f f +2158 2025-06-20 13:13:22.574595+00 2025-06-20 13:13:22.574608+00 f t 3040 \N \N f f +2159 2025-06-20 13:47:51.145492+00 2025-06-20 13:47:51.145501+00 f t 3041 \N \N f f +2160 2025-06-20 14:20:46.629354+00 2025-06-20 14:20:46.629364+00 f t 3042 \N \N f f +2161 2025-06-20 14:29:28.110895+00 2025-06-20 14:29:28.110903+00 f t 3043 \N \N f f +2162 2025-06-20 14:39:12.916001+00 2025-06-20 14:39:12.916015+00 f t 3044 \N \N f f +2163 2025-06-20 14:46:49.136193+00 2025-06-20 14:46:49.136204+00 f t 3045 \N \N f f +2164 2025-06-20 15:18:33.529549+00 2025-06-20 15:18:33.529558+00 f t 3046 \N \N f f +2165 2025-06-20 15:21:00.969964+00 2025-06-20 15:21:00.969972+00 f t 3047 \N \N f f +2166 2025-06-20 15:37:54.456158+00 2025-06-20 15:37:54.456167+00 f t 3048 \N \N f f +2167 2025-06-20 15:51:29.887436+00 2025-06-20 15:51:29.887446+00 f t 3049 \N \N f f +2168 2025-06-20 16:27:39.531844+00 2025-06-20 16:27:39.531853+00 f t 3050 \N \N f f +2169 2025-06-20 16:34:17.765396+00 2025-06-20 16:34:17.765405+00 f t 3051 \N \N f f +2170 2025-06-20 17:22:50.26203+00 2025-06-20 17:22:50.262043+00 f t 3052 \N \N f f +2171 2025-06-20 17:36:06.685097+00 2025-06-20 17:36:06.685109+00 f t 3053 \N \N f f +2172 2025-06-20 17:47:26.062671+00 2025-06-20 17:47:26.06268+00 f t 3054 \N \N f f +2173 2025-06-20 18:04:20.423486+00 2025-06-20 18:04:20.423496+00 f t 3055 \N \N f f +2174 2025-06-20 18:05:56.699491+00 2025-06-20 18:05:56.699503+00 f t 3056 \N \N f f +2175 2025-06-20 18:24:26.459687+00 2025-06-20 18:24:26.459698+00 f t 3057 \N \N f f +2176 2025-06-20 18:37:22.143332+00 2025-06-20 18:37:22.143338+00 f t 3058 \N \N f f +2177 2025-06-20 18:39:26.334725+00 2025-06-20 18:39:26.334733+00 f t 3059 \N \N f f +2178 2025-06-20 18:56:29.395224+00 2025-06-20 18:56:29.395234+00 f t 3060 \N \N f f +2179 2025-06-20 18:57:11.353517+00 2025-06-20 18:57:11.353527+00 f t 3061 \N \N f f +2180 2025-06-20 19:02:04.034248+00 2025-06-20 19:02:04.03426+00 f t 3062 \N \N f f +2181 2025-06-20 19:02:50.492529+00 2025-06-20 19:02:50.492541+00 f t 3063 \N \N f f +2182 2025-06-20 19:13:38.030189+00 2025-06-20 19:13:38.0302+00 f t 3064 \N \N f f +2183 2025-06-20 19:22:40.475171+00 2025-06-20 19:22:40.475179+00 f t 3065 \N \N f f +2184 2025-06-20 19:38:28.31222+00 2025-06-20 19:38:28.312228+00 f t 3066 \N \N f f +2185 2025-06-20 19:56:22.95753+00 2025-06-20 19:56:22.957544+00 f t 3067 \N \N f f +2186 2025-06-20 20:09:08.954938+00 2025-06-20 20:09:08.954951+00 f t 3068 \N \N f f +2187 2025-06-20 20:19:20.394328+00 2025-06-20 20:19:20.394339+00 f t 3069 \N \N f f +2188 2025-06-20 21:12:21.865258+00 2025-06-20 21:12:21.865267+00 f t 3070 \N \N f f +2189 2025-06-20 21:25:06.032334+00 2025-06-20 21:25:06.032347+00 f t 3071 \N \N f f +2190 2025-06-20 22:21:45.483102+00 2025-06-20 22:21:45.48311+00 f t 3072 \N \N f f +2191 2025-06-20 22:24:47.019034+00 2025-06-20 22:24:47.019042+00 f t 3073 \N \N f f +2192 2025-06-20 22:25:51.048367+00 2025-06-20 22:25:51.048375+00 f t 3074 \N \N f f +2193 2025-06-20 22:31:12.617526+00 2025-06-20 22:31:12.617538+00 f t 3075 \N \N f f +2194 2025-06-20 23:22:45.843633+00 2025-06-20 23:22:45.843642+00 f t 3076 \N \N f f +2195 2025-06-20 23:44:09.309181+00 2025-06-20 23:44:09.309193+00 f t 3077 \N \N f f +2196 2025-06-20 23:51:37.833162+00 2025-06-20 23:51:37.83317+00 f t 3078 \N \N f f +2197 2025-06-21 00:06:25.566751+00 2025-06-21 00:06:25.566758+00 f t 3079 \N \N f f +2198 2025-06-21 00:14:56.088413+00 2025-06-21 00:14:56.088421+00 f t 3080 \N \N f f +2199 2025-06-21 00:21:56.692436+00 2025-06-21 00:21:56.692446+00 f t 3081 \N \N f f +2200 2025-06-21 00:24:33.432216+00 2025-06-21 00:24:33.432223+00 f t 3082 \N \N f f +2201 2025-06-21 00:45:55.186943+00 2025-06-21 00:45:55.186953+00 f t 3083 \N \N f f +2202 2025-06-21 00:53:13.27499+00 2025-06-21 00:53:13.275001+00 f t 3084 \N \N f f +2203 2025-06-21 01:41:17.142873+00 2025-06-21 01:41:17.142885+00 f t 3085 \N \N f f +2204 2025-06-21 01:43:19.093237+00 2025-06-21 01:43:19.093246+00 f t 3086 \N \N f f +2205 2025-06-21 02:02:13.407777+00 2025-06-21 02:02:13.407786+00 f t 3087 \N \N f f +2206 2025-06-21 03:08:23.405114+00 2025-06-21 03:08:23.405126+00 f t 3088 \N \N f f +2207 2025-06-21 03:09:31.17586+00 2025-06-21 03:09:31.175867+00 f t 3089 \N \N f f +2208 2025-06-21 03:32:59.665043+00 2025-06-21 03:32:59.665056+00 f t 3090 \N \N f f +2209 2025-06-21 03:43:21.625811+00 2025-06-21 03:43:21.625822+00 f t 3091 \N \N f f +2210 2025-06-21 05:40:34.446397+00 2025-06-21 05:40:34.446409+00 f t 3092 \N \N f f +2211 2025-06-21 06:06:09.316203+00 2025-06-21 06:06:09.316211+00 f t 3093 \N \N f f +2212 2025-06-21 06:06:59.187663+00 2025-06-21 06:06:59.187674+00 f t 3094 \N \N f f +2213 2025-06-21 07:17:22.709967+00 2025-06-21 07:17:22.709976+00 f t 3095 \N \N f f +2214 2025-06-21 07:17:39.168648+00 2025-06-21 07:17:39.16866+00 f t 3096 \N \N f f +2215 2025-06-21 11:08:14.899305+00 2025-06-21 11:08:14.899318+00 f t 3097 \N \N f f +2216 2025-06-21 12:52:17.031707+00 2025-06-21 12:52:17.031714+00 f t 3098 \N \N f f +2217 2025-06-21 13:22:17.833308+00 2025-06-21 13:22:17.833318+00 f t 3099 \N \N f f +2218 2025-06-21 14:04:21.2371+00 2025-06-21 14:04:21.237108+00 f t 3100 \N \N f f +2219 2025-06-21 14:05:20.743437+00 2025-06-21 14:05:20.743444+00 f t 3101 \N \N f f +2220 2025-06-21 14:06:19.182323+00 2025-06-21 14:06:19.18233+00 f t 3102 \N \N f f +2221 2025-06-21 14:21:52.495912+00 2025-06-21 14:21:52.495923+00 f t 3103 \N \N f f +2222 2025-06-21 14:41:13.944673+00 2025-06-21 14:41:13.944686+00 f t 3104 \N \N f f +2223 2025-06-21 14:44:47.405555+00 2025-06-21 14:44:47.405563+00 f t 3105 \N \N f f +2224 2025-06-21 15:12:27.286007+00 2025-06-21 15:12:27.286016+00 f t 3106 \N \N f f +2225 2025-06-21 15:40:57.833767+00 2025-06-21 15:40:57.833776+00 f t 3107 \N \N f f +2226 2025-06-21 16:00:57.654973+00 2025-06-21 16:00:57.654982+00 f t 3108 \N \N f f +2227 2025-06-21 16:16:10.168148+00 2025-06-21 16:16:10.168156+00 f t 3109 \N \N f f +2228 2025-06-21 17:06:57.030069+00 2025-06-21 17:06:57.030077+00 f t 3110 \N \N f f +2229 2025-06-21 17:32:35.761372+00 2025-06-21 17:32:35.761383+00 f t 3111 \N \N f f +2230 2025-06-21 17:54:20.466444+00 2025-06-21 17:54:20.466451+00 f t 3112 \N \N f f +2231 2025-06-21 18:37:35.099884+00 2025-06-21 18:37:35.099896+00 f t 3113 \N \N f f +2232 2025-06-21 18:49:07.419479+00 2025-06-21 18:49:07.419486+00 f t 3114 \N \N f f +2233 2025-06-21 19:43:51.324405+00 2025-06-21 19:43:51.324411+00 f t 3115 \N \N f f +2234 2025-06-21 19:48:44.51275+00 2025-06-21 19:48:44.512757+00 f t 3116 \N \N f f +2235 2025-06-21 19:49:13.187956+00 2025-06-21 19:49:13.187964+00 f t 3117 \N \N f f +2236 2025-06-21 19:54:02.452897+00 2025-06-21 19:54:02.452908+00 f t 3118 \N \N f f +2237 2025-06-21 20:18:55.876081+00 2025-06-21 20:18:55.876089+00 f t 3119 \N \N f f +2238 2025-06-21 20:52:34.742754+00 2025-06-21 20:52:34.742761+00 f t 3120 \N \N f f +2239 2025-06-21 20:59:05.718039+00 2025-06-21 20:59:05.718047+00 f t 3121 \N \N f f +2240 2025-06-21 21:03:09.451979+00 2025-06-21 21:03:09.45199+00 f t 3122 \N \N f f +2241 2025-06-21 21:36:48.02492+00 2025-06-21 21:36:48.024932+00 f t 3123 \N \N f f +2242 2025-06-21 21:37:00.556159+00 2025-06-21 21:37:00.556165+00 f t 3124 \N \N f f +2243 2025-06-21 21:57:14.955897+00 2025-06-21 21:57:14.955908+00 f t 3126 \N \N f f +2244 2025-06-21 22:01:38.740181+00 2025-06-21 22:01:38.740189+00 f t 3127 \N \N f f +2245 2025-06-21 22:02:03.979018+00 2025-06-21 22:02:03.979026+00 f t 3128 \N \N f f +2246 2025-06-21 22:16:46.639062+00 2025-06-21 22:16:46.639072+00 f t 3129 \N \N f f +2247 2025-06-21 22:21:52.34956+00 2025-06-21 22:21:52.349572+00 f t 3130 \N \N f f +2248 2025-06-21 22:34:19.800999+00 2025-06-21 22:34:19.801008+00 f t 3131 \N \N f f +2249 2025-06-21 22:35:16.809852+00 2025-06-21 22:35:16.80986+00 f t 3132 \N \N f f +2250 2025-06-21 22:37:15.098855+00 2025-06-21 22:37:15.098863+00 f t 3133 \N \N f f +2251 2025-06-21 22:43:53.851389+00 2025-06-21 22:43:53.851397+00 f t 3134 \N \N f f +2252 2025-06-21 22:44:07.475367+00 2025-06-21 22:44:07.475373+00 f t 3135 \N \N f f +2253 2025-06-21 22:49:59.505366+00 2025-06-21 22:49:59.505377+00 f t 3136 \N \N f f +2254 2025-06-21 23:15:48.440645+00 2025-06-21 23:15:48.440653+00 f t 3137 \N \N f f +2255 2025-06-22 00:57:20.876913+00 2025-06-22 00:57:20.876921+00 f t 3138 \N \N f f +2256 2025-06-22 01:04:58.943811+00 2025-06-22 01:04:58.943825+00 f t 3139 \N \N f f +2257 2025-06-22 01:29:33.827236+00 2025-06-22 01:29:33.827244+00 f t 3140 \N \N f f +2258 2025-06-22 02:01:43.04492+00 2025-06-22 02:01:43.044931+00 f t 3141 \N \N f f +2259 2025-06-22 02:58:20.924421+00 2025-06-22 02:58:20.924431+00 f t 3142 \N \N f f +2260 2025-06-22 03:02:44.55522+00 2025-06-22 03:02:44.555228+00 f t 3143 \N \N f f +2261 2025-06-22 03:07:26.236477+00 2025-06-22 03:07:26.236489+00 f t 3144 \N \N f f +2262 2025-06-22 03:39:54.967775+00 2025-06-22 03:39:54.967784+00 f t 3145 \N \N f f +2263 2025-06-22 03:42:38.807482+00 2025-06-22 03:42:38.807494+00 f t 3146 \N \N f f +2264 2025-06-22 04:52:36.649866+00 2025-06-22 04:52:36.649873+00 f t 3147 \N \N f f +2265 2025-06-22 05:23:25.189928+00 2025-06-22 05:23:25.18994+00 f t 3148 \N \N f f +2266 2025-06-22 05:35:17.166171+00 2025-06-22 05:32:19.426457+00 f t 3149 \N \N f f +2267 2025-06-22 06:33:20.981875+00 2025-06-22 06:33:20.981885+00 f t 3150 \N \N f f +2268 2025-06-22 08:46:53.631082+00 2025-06-22 08:46:53.63109+00 f t 3151 \N \N f f +2269 2025-06-22 11:08:15.99912+00 2025-06-22 11:08:15.999148+00 f t 3152 \N \N f f +2270 2025-06-22 12:08:21.943557+00 2025-06-22 12:08:21.943567+00 f t 3153 \N \N f f +2271 2025-06-22 13:53:22.497671+00 2025-06-22 13:53:22.497679+00 f t 3154 \N \N f f +2272 2025-06-22 13:57:04.00011+00 2025-06-22 13:57:04.00012+00 f t 3155 \N \N f f +2273 2025-06-22 14:01:09.829661+00 2025-06-22 14:01:09.829672+00 f t 3156 \N \N f f +2274 2025-06-22 14:02:54.747389+00 2025-06-22 14:02:54.747397+00 f t 3157 \N \N f f +2275 2025-06-22 14:25:43.669986+00 2025-06-22 14:25:43.669993+00 f t 3158 \N \N f f +2276 2025-06-22 14:30:15.876848+00 2025-06-22 14:30:15.87686+00 f t 3159 \N \N f f +2277 2025-06-22 14:35:42.348057+00 2025-06-22 14:35:42.348069+00 f t 3160 \N \N f f +2278 2025-06-22 15:07:59.098757+00 2025-06-22 15:07:59.098767+00 f t 3161 \N \N f f +2279 2025-06-22 15:15:38.471424+00 2025-06-22 15:15:38.471436+00 f t 3162 \N \N f f +2280 2025-06-22 15:40:02.415636+00 2025-06-22 15:40:02.415651+00 f t 3163 \N \N f f +2281 2025-06-22 15:57:41.997807+00 2025-06-22 15:57:41.997815+00 f t 3164 \N \N f f +2282 2025-06-22 16:05:37.666431+00 2025-06-22 16:05:37.666438+00 f t 3165 \N \N f f +2283 2025-06-22 16:15:00.885333+00 2025-06-22 16:15:00.88534+00 f t 3166 \N \N f f +2284 2025-06-22 16:40:33.14239+00 2025-06-22 16:40:33.142398+00 f t 3167 \N \N f f +2285 2025-06-22 17:14:59.914241+00 2025-06-22 17:14:59.914248+00 f t 3168 \N \N f f +2286 2025-06-22 17:46:09.873424+00 2025-06-22 17:46:09.873436+00 f t 3169 \N \N f f +2287 2025-06-22 18:01:44.319558+00 2025-06-22 18:01:44.319565+00 f t 3170 \N \N f f +2288 2025-06-22 20:09:09.907053+00 2025-06-22 20:09:09.907061+00 f t 3171 \N \N f f +2289 2025-06-22 20:39:03.098055+00 2025-06-22 20:39:03.098068+00 f t 3172 \N \N f f +2290 2025-06-22 20:55:46.248274+00 2025-06-22 20:55:46.248283+00 f t 3173 \N \N f f +2291 2025-06-22 21:08:41.255067+00 2025-06-22 21:08:41.255074+00 f t 3174 \N \N f f +2292 2025-06-22 21:12:17.990357+00 2025-06-22 21:12:17.990364+00 f t 3175 \N \N f f +2293 2025-06-22 22:40:30.139215+00 2025-06-22 22:40:30.139225+00 f t 3178 \N \N f f +2294 2025-06-22 22:44:08.171639+00 2025-06-22 22:44:08.171648+00 f t 3179 \N \N f f +2295 2025-06-22 23:22:20.368349+00 2025-06-22 23:22:20.368361+00 f t 3180 \N \N f f +2296 2025-06-23 00:22:05.620745+00 2025-06-23 00:22:05.620753+00 f t 3181 \N \N f f +2297 2025-06-23 01:37:48.382725+00 2025-06-23 01:37:48.382731+00 f t 3182 \N \N f f +2298 2025-06-23 02:15:17.631027+00 2025-06-23 02:15:17.631038+00 f t 3183 \N \N f f +2299 2025-06-23 02:31:05.344814+00 2025-06-23 02:31:05.344825+00 f t 3184 \N \N f f +2300 2025-06-23 02:33:03.10047+00 2025-06-23 02:33:03.100478+00 f t 3185 \N \N f f +2301 2025-06-23 02:34:22.777869+00 2025-06-23 02:34:22.777876+00 f t 3186 \N \N f f +2302 2025-06-23 02:36:40.687948+00 2025-06-23 02:36:40.687955+00 f t 3187 \N \N f f +2303 2025-06-23 02:37:52.51476+00 2025-06-23 02:37:52.514768+00 f t 3188 \N \N f f +2304 2025-06-23 02:55:06.423007+00 2025-06-23 02:55:06.42302+00 f t 3189 \N \N f f +2305 2025-06-23 03:22:37.089456+00 2025-06-23 03:22:37.089466+00 f t 3190 \N \N f f +2306 2025-06-23 03:53:37.839034+00 2025-06-23 03:53:37.839042+00 f t 3191 \N \N f f +2307 2025-06-23 03:53:43.129169+00 2025-06-23 03:53:43.12918+00 f t 3192 \N \N f f +2308 2025-06-23 04:00:44.327732+00 2025-06-23 04:00:44.327746+00 f t 3193 \N \N f f +2309 2025-06-23 06:54:29.264119+00 2025-06-23 06:54:29.264125+00 f t 3194 \N \N f f +2310 2025-06-23 07:13:14.728201+00 2025-06-23 07:13:14.728208+00 f t 3195 \N \N f f +2311 2025-06-23 08:04:37.305301+00 2025-06-23 08:04:37.305308+00 f t 3196 \N \N f f +2312 2025-06-23 10:34:55.952982+00 2025-06-23 10:34:55.952991+00 f t 3197 \N \N f f +2313 2025-06-23 11:18:40.492987+00 2025-06-23 11:18:40.493+00 f t 3198 \N \N f f +2314 2025-06-23 11:33:13.036894+00 2025-06-23 11:33:13.036902+00 f t 3199 \N \N f f +2315 2025-06-23 12:06:06.735363+00 2025-06-23 12:06:06.73537+00 f t 3200 \N \N f f +2316 2025-06-23 12:07:43.671709+00 2025-06-23 12:07:43.671716+00 f t 3201 \N \N f f +2317 2025-06-23 12:09:20.73701+00 2025-06-23 12:09:20.737017+00 f t 3202 \N \N f f +2318 2025-06-23 13:05:42.308895+00 2025-06-23 13:05:42.308906+00 f t 3203 \N \N f f +2319 2025-06-23 13:11:49.257402+00 2025-06-23 13:11:49.257412+00 f t 3204 \N \N f f +2320 2025-06-23 13:37:49.611876+00 2025-06-23 13:37:49.611884+00 f t 3205 \N \N f f +2321 2025-06-23 14:21:51.556392+00 2025-06-23 14:21:51.556403+00 f t 3207 \N \N f f +2322 2025-06-23 14:23:35.432934+00 2025-06-23 14:23:35.432941+00 f t 3208 \N \N f f +2323 2025-06-23 14:40:50.971121+00 2025-06-23 14:40:50.971153+00 f t 3209 \N \N f f +2324 2025-06-23 15:16:40.378325+00 2025-06-23 15:16:40.378337+00 f t 3210 \N \N f f +2325 2025-06-23 16:12:12.638577+00 2025-06-23 16:12:12.638586+00 f t 3212 \N \N f f +2326 2025-06-23 16:24:22.442398+00 2025-06-23 16:24:22.442406+00 f t 3213 \N \N f f +2327 2025-06-23 16:37:33.54511+00 2025-06-23 16:37:33.545121+00 f t 3214 \N \N f f +2328 2025-06-23 16:50:58.089859+00 2025-06-23 16:50:58.08987+00 f t 3215 \N \N f f +2329 2025-06-23 17:33:02.872754+00 2025-06-23 17:33:02.872766+00 f t 3216 \N \N f f +2330 2025-06-23 17:43:04.723447+00 2025-06-23 17:43:04.723457+00 f t 3217 \N \N f f +2331 2025-06-23 17:43:48.727575+00 2025-06-23 17:43:48.727582+00 f t 3218 \N \N f f +2332 2025-06-23 18:01:21.30201+00 2025-06-23 18:01:21.302018+00 f t 3219 \N \N f f +2333 2025-06-23 18:10:05.083864+00 2025-06-23 18:10:05.083877+00 f t 3220 \N \N f f +2334 2025-06-23 18:11:58.642495+00 2025-06-23 18:11:58.642503+00 f t 3221 \N \N f f +2335 2025-06-23 18:12:10.069819+00 2025-06-23 18:12:10.069826+00 f t 3222 \N \N f f +2336 2025-06-23 18:19:36.444811+00 2025-06-23 18:19:36.444824+00 f t 3223 \N \N f f +2337 2025-06-23 18:32:18.638606+00 2025-06-23 18:32:18.638613+00 f t 3224 \N \N f f +2338 2025-06-23 18:35:50.65703+00 2025-06-23 18:35:50.657039+00 f t 3225 \N \N f f +2339 2025-06-23 19:49:13.509024+00 2025-06-23 19:49:13.509032+00 f t 3229 \N \N f f +2340 2025-06-23 19:59:33.935766+00 2025-06-23 19:59:33.935794+00 f t 3230 \N \N f f +2341 2025-06-23 20:07:55.77608+00 2025-06-23 20:07:55.776088+00 f t 3231 \N \N f f +2342 2025-06-23 20:15:58.622418+00 2025-06-23 20:15:58.622425+00 f t 3232 \N \N f f +2343 2025-06-23 20:40:50.513104+00 2025-06-23 20:40:50.513112+00 f t 3233 \N \N f f +2344 2025-06-23 20:55:11.811869+00 2025-06-23 20:55:11.811877+00 f t 3234 \N \N f f +2345 2025-06-23 21:34:00.546422+00 2025-06-23 21:34:00.54643+00 f t 3235 \N \N f f +2346 2025-06-23 22:19:28.847101+00 2025-06-23 22:19:28.847109+00 f t 3236 \N \N f f +2347 2025-06-23 22:41:26.718732+00 2025-06-23 22:41:26.71874+00 f t 3237 \N \N f f +2348 2025-06-23 23:01:33.171424+00 2025-06-23 23:01:33.171436+00 f t 3238 \N \N f f +2349 2025-06-23 23:38:48.28447+00 2025-06-23 23:38:48.284479+00 f t 3239 \N \N f f +2350 2025-06-24 00:07:05.009696+00 2025-06-24 00:07:05.009709+00 f t 3240 \N \N f f +2351 2025-06-24 00:08:12.984409+00 2025-06-24 00:08:12.984419+00 f t 3241 \N \N f f +2352 2025-06-24 00:33:46.330209+00 2025-06-24 00:33:46.330219+00 f t 3243 \N \N f f +2353 2025-06-24 00:36:10.601765+00 2025-06-24 00:36:10.601775+00 f t 3244 \N \N f f +2354 2025-06-24 00:38:59.685888+00 2025-06-24 00:38:59.685899+00 f t 3245 \N \N f f +2355 2025-06-24 00:39:22.599424+00 2025-06-24 00:39:22.599431+00 f t 3246 \N \N f f +2356 2025-06-24 01:19:53.647965+00 2025-06-24 01:19:53.647975+00 f t 3247 \N \N f f +2357 2025-06-24 01:27:37.756161+00 2025-06-24 01:27:37.756172+00 f t 3248 \N \N f f +2358 2025-06-24 01:36:14.43619+00 2025-06-24 01:36:14.436202+00 f t 3249 \N \N f f +2359 2025-06-24 01:43:23.078693+00 2025-06-24 01:43:23.078701+00 f t 3250 \N \N f f +2360 2025-06-24 01:55:42.413086+00 2025-06-24 01:55:42.413098+00 f t 3251 \N \N f f +2361 2025-06-24 02:09:10.840155+00 2025-06-24 02:09:10.840166+00 f t 3252 \N \N f f +2362 2025-06-24 02:14:17.893126+00 2025-06-24 02:14:17.893137+00 f t 3253 \N \N f f +2363 2025-06-24 02:24:02.187691+00 2025-06-24 02:24:02.187704+00 f t 3254 \N \N f f +2364 2025-06-24 03:43:22.340148+00 2025-06-24 03:43:22.340157+00 f t 3255 \N \N f f +2365 2025-06-24 04:10:14.506469+00 2025-06-24 04:10:14.506479+00 f t 3256 \N \N f f +2366 2025-06-24 04:22:33.834724+00 2025-06-24 04:22:33.834733+00 f t 3257 \N \N f f +2367 2025-06-24 09:33:37.790599+00 2025-06-24 09:33:37.790611+00 f t 3258 \N \N f f +2368 2025-06-24 09:51:22.071383+00 2025-06-24 09:51:22.071391+00 f t 3259 \N \N f f +2369 2025-06-24 09:55:23.480148+00 2025-06-24 09:55:23.480161+00 f t 3260 \N \N f f +2370 2025-06-24 12:59:34.244251+00 2025-06-24 12:59:34.244262+00 f t 3261 \N \N f f +2371 2025-06-24 13:16:10.428273+00 2025-06-24 13:16:10.428284+00 f t 3262 \N \N f f +2372 2025-06-24 13:18:48.548411+00 2025-06-24 13:18:48.548418+00 f t 3263 \N \N f f +2373 2025-06-24 13:33:56.322292+00 2025-06-24 13:33:56.322304+00 f t 3264 \N \N f f +2374 2025-06-24 13:49:30.916268+00 2025-06-24 13:49:30.916278+00 f t 3265 \N \N f f +2375 2025-06-24 14:45:48.817986+00 2025-06-24 14:45:48.817996+00 f t 3267 \N \N f f +2376 2025-06-24 14:50:01.988533+00 2025-06-24 14:50:01.988548+00 f t 3268 \N \N f f +2377 2025-06-24 15:03:32.617272+00 2025-06-24 15:03:32.617285+00 f t 3269 \N \N f f +2378 2025-06-24 15:07:52.169612+00 2025-06-24 15:07:52.169621+00 f t 3270 \N \N f f +2379 2025-06-24 15:08:13.593897+00 2025-06-24 15:08:13.593909+00 f t 3271 \N \N f f +2380 2025-06-24 15:09:29.067594+00 2025-06-24 15:09:29.067603+00 f t 3272 \N \N f f +2381 2025-06-24 15:26:08.486553+00 2025-06-24 15:26:08.486565+00 f t 3273 \N \N f f +2382 2025-06-24 15:33:48.690207+00 2025-06-24 15:33:48.690213+00 f t 3274 \N \N f f +2383 2025-06-24 15:42:37.966177+00 2025-06-24 15:42:37.966186+00 f t 3275 \N \N f f +2384 2025-06-24 16:13:41.204628+00 2025-06-24 16:13:41.204636+00 f t 3276 \N \N f f +2385 2025-06-24 16:37:53.081933+00 2025-06-24 16:37:53.081943+00 f t 3277 \N \N f f +2386 2025-06-24 16:39:12.718843+00 2025-06-24 16:39:12.718852+00 f t 3278 \N \N f f +2387 2025-06-24 16:41:50.119205+00 2025-06-24 16:41:50.119215+00 f t 3279 \N \N f f +2388 2025-06-24 17:39:03.935644+00 2025-06-24 17:39:03.935653+00 f t 3280 \N \N f f +2389 2025-06-24 18:13:41.442588+00 2025-06-24 18:13:41.442596+00 f t 3281 \N \N f f +2390 2025-06-24 18:23:16.028371+00 2025-06-24 18:23:16.028382+00 f t 3282 \N \N f f +2391 2025-06-24 18:27:08.307516+00 2025-06-24 18:27:08.307531+00 f t 3283 \N \N f f +2392 2025-06-24 18:36:41.478969+00 2025-06-24 18:36:41.478977+00 f t 3284 \N \N f f +2393 2025-06-24 18:36:56.86108+00 2025-06-24 18:36:56.861091+00 f t 3285 \N \N f f +2394 2025-06-24 18:38:58.206455+00 2025-06-24 18:38:58.206466+00 f t 3286 \N \N f f +2395 2025-06-24 18:39:15.605738+00 2025-06-24 18:39:15.605748+00 f t 3287 \N \N f f +2396 2025-06-24 19:58:30.505374+00 2025-06-24 19:58:30.505381+00 f t 3288 \N \N f f +2397 2025-06-24 20:08:00.281514+00 2025-06-24 20:08:00.281525+00 f t 3289 \N \N f f +2398 2025-06-24 20:08:05.57134+00 2025-06-24 20:08:05.571349+00 f t 3290 \N \N f f +2399 2025-06-24 20:11:49.97444+00 2025-06-24 20:11:49.974448+00 f t 3291 \N \N f f +2400 2025-06-24 20:16:17.983513+00 2025-06-24 20:16:17.98352+00 f t 3292 \N \N f f +2401 2025-06-24 20:20:54.353584+00 2025-06-24 20:20:54.353594+00 f t 3293 \N \N f f +2402 2025-06-24 20:41:53.943686+00 2025-06-24 20:41:53.943697+00 f t 3294 \N \N f f +2403 2025-06-24 20:42:12.774377+00 2025-06-24 20:42:12.774384+00 f t 3295 \N \N f f +2404 2025-06-24 21:11:40.755037+00 2025-06-24 21:11:40.755045+00 f t 3296 \N \N f f +2405 2025-06-24 22:28:01.448956+00 2025-06-24 22:28:01.448968+00 f t 3297 \N \N f f +2406 2025-06-24 22:47:49.079504+00 2025-06-24 22:47:49.079584+00 f t 3298 \N \N f f +2407 2025-06-24 22:48:08.509815+00 2025-06-24 22:48:08.509822+00 f t 3299 \N \N f f +2408 2025-06-24 23:19:27.215817+00 2025-06-24 23:19:27.215825+00 f t 3300 \N \N f f +2409 2025-06-24 23:22:05.611909+00 2025-06-24 23:22:05.611921+00 f t 3301 \N \N f f +2410 2025-06-24 23:22:51.295447+00 2025-06-24 23:22:51.295456+00 f t 3302 \N \N f f +2411 2025-06-24 23:38:46.003318+00 2025-06-24 23:38:46.003325+00 f t 3303 \N \N f f +2412 2025-06-24 23:42:18.647023+00 2025-06-24 23:42:18.647031+00 f t 3304 \N \N f f +2413 2025-06-25 00:01:28.470559+00 2025-06-25 00:01:28.47057+00 f t 3305 \N \N f f +2414 2025-06-25 00:20:53.127067+00 2025-06-25 00:20:53.127075+00 f t 3306 \N \N f f +2415 2025-06-25 00:25:00.277437+00 2025-06-25 00:25:00.277448+00 f t 3307 \N \N f f +2416 2025-06-25 00:27:55.940144+00 2025-06-25 00:27:55.940154+00 f t 3308 \N \N f f +2417 2025-06-25 00:34:24.67213+00 2025-06-25 00:34:24.672138+00 f t 3309 \N \N f f +2418 2025-06-25 00:38:36.112621+00 2025-06-25 00:38:36.112628+00 f t 3310 \N \N f f +2419 2025-06-25 00:55:14.404378+00 2025-06-25 00:55:14.404388+00 f t 3311 \N \N f f +2420 2025-06-25 02:06:54.091235+00 2025-06-25 02:06:54.091245+00 f t 3312 \N \N f f +2421 2025-06-25 02:19:19.803959+00 2025-06-25 02:19:19.803969+00 f t 3313 \N \N f f +2422 2025-06-25 02:29:43.812473+00 2025-06-25 02:29:43.812482+00 f t 3314 \N \N f f +2423 2025-06-25 02:44:12.785789+00 2025-06-25 02:44:12.785801+00 f t 3315 \N \N f f +2424 2025-06-25 02:47:01.974703+00 2025-06-25 02:47:01.97471+00 f t 3316 \N \N f f +2425 2025-06-25 02:47:25.74336+00 2025-06-25 02:47:25.743368+00 f t 3317 \N \N f f +2426 2025-06-25 02:51:53.231694+00 2025-06-25 02:51:53.231701+00 f t 3318 \N \N f f +2427 2025-06-25 03:07:29.521183+00 2025-06-25 03:07:29.521194+00 f t 3319 \N \N f f +2428 2025-06-25 03:13:24.921242+00 2025-06-25 03:13:24.921254+00 f t 3320 \N \N f f +2429 2025-06-25 03:40:49.124188+00 2025-06-25 03:40:49.124198+00 f t 3321 \N \N f f +2430 2025-06-25 03:48:11.556831+00 2025-06-25 03:48:11.556838+00 f t 3322 \N \N f f +2431 2025-06-25 05:52:46.063797+00 2025-06-25 05:52:46.063804+00 f t 3323 \N \N f f +2432 2025-06-25 07:19:24.785949+00 2025-06-25 07:19:24.78596+00 f t 3324 \N \N f f +2433 2025-06-25 08:23:15.066472+00 2025-06-25 08:23:15.066482+00 f t 3325 \N \N f f +2434 2025-06-25 09:34:22.12473+00 2025-06-25 09:34:22.12474+00 f t 3326 \N \N f f +2435 2025-06-25 09:37:32.034329+00 2025-06-25 09:37:32.034338+00 f t 3327 \N \N f f +2436 2025-06-25 10:18:16.684425+00 2025-06-25 10:18:16.684432+00 f t 3328 \N \N f f +2437 2025-06-25 10:29:33.180058+00 2025-06-25 10:29:33.180065+00 f t 3329 \N \N f f +2438 2025-06-25 12:44:48.891006+00 2025-06-25 12:44:48.891018+00 f t 3330 \N \N f f +2439 2025-06-25 13:35:05.15723+00 2025-06-25 13:35:05.157255+00 f t 3331 \N \N f f +2440 2025-06-25 13:39:53.239624+00 2025-06-25 13:39:53.239632+00 f t 3332 \N \N f f +2441 2025-06-25 13:45:59.196709+00 2025-06-25 13:45:59.196719+00 f t 3333 \N \N f f +2442 2025-06-25 14:15:40.177482+00 2025-06-25 14:15:40.17749+00 f t 3334 \N \N f f +2443 2025-06-25 14:17:11.731856+00 2025-06-25 14:17:11.731871+00 f t 3335 \N \N f f +2444 2025-06-25 14:18:23.819911+00 2025-06-25 14:18:23.81992+00 f t 3336 \N \N f f +2445 2025-06-25 14:18:42.730321+00 2025-06-25 14:18:42.73033+00 f t 3337 \N \N f f +2446 2025-06-25 14:21:36.645221+00 2025-06-25 14:21:36.645229+00 f t 3338 \N \N f f +2447 2025-06-25 14:23:05.143488+00 2025-06-25 14:23:05.143494+00 f t 3339 \N \N f f +2448 2025-06-25 14:24:07.167792+00 2025-06-25 14:24:07.167801+00 f t 3340 \N \N f f +2449 2025-06-25 14:24:45.525034+00 2025-06-25 14:24:45.525045+00 f t 3341 \N \N f f +2450 2025-06-25 15:05:48.919466+00 2025-06-25 15:05:48.919477+00 f t 3342 \N \N f f +2451 2025-06-25 15:38:11.580178+00 2025-06-25 15:38:11.580189+00 f t 3345 \N \N f f +2452 2025-06-25 15:45:55.570124+00 2025-06-25 15:45:55.570135+00 f t 3346 \N \N f f +2453 2025-06-25 16:11:56.522146+00 2025-06-25 16:11:56.522167+00 f t 3348 \N \N f f +2454 2025-06-25 16:48:31.719351+00 2025-06-25 16:48:31.71936+00 f t 3349 \N \N f f +2455 2025-06-25 16:50:23.637476+00 2025-06-25 16:50:23.637488+00 f t 3350 \N \N f f +2456 2025-06-25 17:05:48.712496+00 2025-06-25 17:05:48.712508+00 f t 3351 \N \N f f +2457 2025-06-25 17:24:09.773287+00 2025-06-25 17:24:09.773296+00 f t 3352 \N \N f f +2458 2025-06-25 17:25:51.322082+00 2025-06-25 17:25:51.322091+00 f t 3353 \N \N f f +2459 2025-06-25 18:07:51.481184+00 2025-06-25 18:07:51.481195+00 f t 3354 \N \N f f +2460 2025-06-25 18:30:26.690656+00 2025-06-25 18:30:26.690664+00 f t 3355 \N \N f f +2461 2025-06-25 18:51:09.282837+00 2025-06-25 18:51:09.282847+00 f t 3356 \N \N f f +2462 2025-06-25 19:05:19.173547+00 2025-06-25 19:05:19.173558+00 f t 3357 \N \N f f +2463 2025-06-25 19:13:28.246906+00 2025-06-25 19:13:28.246913+00 f t 3358 \N \N f f +2464 2025-06-25 19:14:08.887398+00 2025-06-25 19:14:08.887406+00 f t 3359 \N \N f f +2465 2025-06-25 19:45:26.255854+00 2025-06-25 19:45:26.255861+00 f t 3361 \N \N f f +2466 2025-06-25 20:45:31.238997+00 2025-06-25 20:45:31.239007+00 f t 3362 \N \N f f +2467 2025-06-25 20:47:36.107058+00 2025-06-25 20:47:36.107065+00 f t 3364 \N \N f f +2468 2025-06-25 22:09:55.47549+00 2025-06-25 22:09:55.475501+00 f t 3365 \N \N f f +2469 2025-06-25 22:24:56.786847+00 2025-06-25 22:24:56.786857+00 f t 3366 \N \N f f +2470 2025-06-25 22:31:34.659105+00 2025-06-25 22:31:34.659112+00 f t 3367 \N \N f f +2471 2025-06-25 22:37:40.176891+00 2025-06-25 22:37:40.176899+00 f t 3368 \N \N f f +2472 2025-06-25 22:40:57.224976+00 2025-06-25 22:40:57.224984+00 f t 3369 \N \N f f +2473 2025-06-25 22:43:48.689254+00 2025-06-25 22:43:48.689265+00 f t 3370 \N \N f f +2474 2025-06-25 23:12:31.374228+00 2025-06-25 23:02:29.187745+00 f t 3371 \N \N f f +2475 2025-06-25 23:12:52.360143+00 2025-06-25 23:12:52.360152+00 f t 3372 \N \N f f +2476 2025-06-25 23:37:05.214929+00 2025-06-25 23:37:05.214941+00 f t 3373 \N \N f f +2477 2025-06-25 23:38:38.440608+00 2025-06-25 23:38:38.440615+00 f t 3374 \N \N f f +2478 2025-06-25 23:54:55.491521+00 2025-06-25 23:54:55.491529+00 f t 3375 \N \N f f +2479 2025-06-25 23:55:25.123704+00 2025-06-25 23:55:25.123712+00 f t 3376 \N \N f f +2480 2025-06-25 23:58:44.318235+00 2025-06-25 23:58:44.318245+00 f t 3377 \N \N f f +2481 2025-06-26 00:09:30.327955+00 2025-06-26 00:09:30.327961+00 f t 3378 \N \N f f +2482 2025-06-26 00:32:21.728282+00 2025-06-26 00:32:21.728294+00 f t 3379 \N \N f f +2483 2025-06-26 00:36:52.467278+00 2025-06-26 00:36:52.46729+00 f t 3380 \N \N f f +2484 2025-06-26 00:46:39.953689+00 2025-06-26 00:46:39.953698+00 f t 3381 \N \N f f +2485 2025-06-26 00:49:23.401847+00 2025-06-26 00:49:23.401857+00 f t 3382 \N \N f f +2486 2025-06-26 00:51:47.83252+00 2025-06-26 00:51:47.832529+00 f t 3383 \N \N f f +2487 2025-06-26 01:17:57.95188+00 2025-06-26 01:17:57.951887+00 f t 3384 \N \N f f +2488 2025-06-26 01:19:40.47808+00 2025-06-26 01:19:40.478093+00 f t 3385 \N \N f f +2489 2025-06-26 01:33:15.350911+00 2025-06-26 01:33:15.350926+00 f t 3386 \N \N f f +2490 2025-06-26 01:40:05.014667+00 2025-06-26 01:40:05.014681+00 f t 3387 \N \N f f +2491 2025-06-26 01:40:39.660404+00 2025-06-26 01:40:39.660412+00 f t 3388 \N \N f f +2492 2025-06-26 01:47:26.657192+00 2025-06-26 01:47:26.6572+00 f t 3389 \N \N f f +2493 2025-06-26 01:52:01.278784+00 2025-06-26 01:52:01.278796+00 f t 3390 \N \N f f +2494 2025-06-26 01:58:03.460969+00 2025-06-26 01:58:03.460977+00 f t 3391 \N \N f f +2495 2025-06-26 02:36:37.078146+00 2025-06-26 02:36:37.078156+00 f t 3392 \N \N f f +2496 2025-06-26 03:48:19.568268+00 2025-06-26 03:48:19.568281+00 f t 3393 \N \N f f +2497 2025-06-26 03:53:12.1215+00 2025-06-26 03:53:12.121511+00 f t 3394 \N \N f f +2498 2025-06-26 04:21:33.29511+00 2025-06-26 04:21:33.295118+00 f t 3395 \N \N f f +2499 2025-06-26 04:51:29.062522+00 2025-06-26 04:51:29.062531+00 f t 3396 \N \N f f +2500 2025-06-26 04:57:14.361021+00 2025-06-26 04:57:14.361029+00 f t 3397 \N \N f f +2501 2025-06-26 05:00:03.25754+00 2025-06-26 05:00:03.257552+00 f t 3398 \N \N f f +2502 2025-06-26 05:02:13.458375+00 2025-06-26 05:02:13.458386+00 f t 3399 \N \N f f +2503 2025-06-26 05:47:35.681458+00 2025-06-26 05:47:35.68147+00 f t 3400 \N \N f f +2504 2025-06-26 09:33:25.518707+00 2025-06-26 09:33:25.518714+00 f t 3401 \N \N f f +2505 2025-06-26 10:57:58.891588+00 2025-06-26 10:57:58.8916+00 f t 3402 \N \N f f +2506 2025-06-26 11:03:24.286382+00 2025-06-26 11:03:24.286394+00 f t 3404 \N \N f f +2507 2025-06-26 11:12:48.101502+00 2025-06-26 11:12:48.10151+00 f t 3406 \N \N f f +2508 2025-06-26 11:20:02.000498+00 2025-06-26 11:20:02.000516+00 f t 3407 \N \N f f +2509 2025-06-26 11:24:05.20472+00 2025-06-26 11:24:05.204733+00 f t 3408 \N \N f f +2510 2025-06-26 11:43:03.437576+00 2025-06-26 11:43:03.437586+00 f t 3409 \N \N f f +2511 2025-06-26 12:04:35.880252+00 2025-06-26 12:04:35.880264+00 f t 3410 \N \N f f +2512 2025-06-26 12:19:41.864388+00 2025-06-26 12:19:41.864399+00 f t 3411 \N \N f f +2513 2025-06-26 12:27:32.335279+00 2025-06-26 12:27:32.335291+00 f t 3412 \N \N f f +2514 2025-06-26 12:31:06.00668+00 2025-06-26 12:31:06.006693+00 f t 3413 \N \N f f +2515 2025-06-26 12:35:31.953597+00 2025-06-26 12:35:31.953609+00 f t 3414 \N \N f f +2516 2025-06-26 12:37:13.543127+00 2025-06-26 12:37:13.543151+00 f t 3415 \N \N f f +2517 2025-06-26 12:40:51.44233+00 2025-06-26 12:40:51.442345+00 f t 3416 \N \N f f +2518 2025-06-26 12:52:39.560917+00 2025-06-26 12:52:39.560927+00 f t 3417 \N \N f f +2519 2025-06-26 12:57:20.469489+00 2025-06-26 12:57:20.469496+00 f t 3418 \N \N f f +2520 2025-06-26 14:31:43.162406+00 2025-06-26 14:31:43.162417+00 f t 3419 \N \N f f +2521 2025-06-26 14:33:33.641504+00 2025-06-26 14:33:33.641513+00 f t 3420 \N \N f f +2522 2025-06-26 15:37:44.668007+00 2025-06-26 15:37:44.668014+00 f t 3422 \N \N f f +2523 2025-06-26 15:48:40.190975+00 2025-06-26 15:48:40.190981+00 f t 3423 \N \N f f +2524 2025-06-26 15:52:14.277444+00 2025-06-26 15:52:14.277451+00 f t 3424 \N \N f f +2525 2025-06-26 16:44:02.03059+00 2025-06-26 16:44:02.030602+00 f t 3425 \N \N f f +2526 2025-06-26 16:45:54.408084+00 2025-06-26 16:45:54.408097+00 f t 3426 \N \N f f +2527 2025-06-26 17:07:38.793421+00 2025-06-26 17:03:46.02703+00 f t 3427 \N \N f f +2528 2025-06-26 17:20:46.597302+00 2025-06-26 17:20:46.59731+00 f t 3428 \N \N f f +2529 2025-06-26 17:31:02.654317+00 2025-06-26 17:31:02.654329+00 f t 3429 \N \N f f +2530 2025-06-26 17:34:40.506465+00 2025-06-26 17:34:40.506477+00 f t 3430 \N \N f f +2531 2025-06-26 17:47:54.595054+00 2025-06-26 17:47:54.595062+00 f t 3431 \N \N f f +2532 2025-06-26 18:04:38.641988+00 2025-06-26 18:04:38.642001+00 f t 3432 \N \N f f +2533 2025-06-26 18:25:41.751701+00 2025-06-26 18:25:41.751714+00 f t 3433 \N \N f f +2534 2025-06-26 18:30:54.186356+00 2025-06-26 18:30:54.186368+00 f t 3434 \N \N f f +2535 2025-06-26 18:39:35.759223+00 2025-06-26 18:39:35.759231+00 f t 3435 \N \N f f +2536 2025-06-26 18:41:08.730705+00 2025-06-26 18:41:08.730717+00 f t 3436 \N \N f f +2537 2025-06-26 18:50:43.771084+00 2025-06-26 18:50:43.771094+00 f t 3438 \N \N f f +2538 2025-06-26 19:03:34.567745+00 2025-06-26 19:03:34.567756+00 f t 3439 \N \N f f +2539 2025-06-26 19:44:08.599894+00 2025-06-26 19:44:08.599903+00 f t 3440 \N \N f f +2540 2025-06-26 19:45:27.704071+00 2025-06-26 19:45:27.70408+00 f t 3441 \N \N f f +2541 2025-06-26 19:49:38.29757+00 2025-06-26 19:49:38.297579+00 f t 3442 \N \N f f +2542 2025-06-26 21:28:05.963974+00 2025-06-26 21:28:05.963985+00 f t 3444 \N \N f f +2543 2025-06-26 21:29:06.334132+00 2025-06-26 21:29:06.334143+00 f t 3445 \N \N f f +2544 2025-06-26 21:29:33.0698+00 2025-06-26 21:29:33.069808+00 f t 3446 \N \N f f +2545 2025-06-26 21:44:56.532337+00 2025-06-26 21:44:56.532348+00 f t 3447 \N \N f f +2546 2025-06-26 22:58:08.909842+00 2025-06-26 22:58:08.90985+00 f t 3448 \N \N f f +2547 2025-06-26 23:00:39.783367+00 2025-06-26 23:00:39.783377+00 f t 3449 \N \N f f +2548 2025-06-26 23:03:52.565005+00 2025-06-26 23:03:52.565013+00 f t 3450 \N \N f f +2549 2025-06-26 23:05:44.704009+00 2025-06-26 23:05:44.704017+00 f t 3451 \N \N f f +2550 2025-06-26 23:18:12.892302+00 2025-06-26 23:18:12.89231+00 f t 3452 \N \N f f +2551 2025-06-27 00:52:39.048173+00 2025-06-27 00:52:39.048183+00 f t 3453 \N \N f f +2552 2025-06-27 00:56:09.517149+00 2025-06-27 00:56:09.517157+00 f t 3454 \N \N f f +2553 2025-06-27 00:59:51.29518+00 2025-06-27 00:59:51.295192+00 f t 3455 \N \N f f +2554 2025-06-27 01:02:03.842889+00 2025-06-27 01:02:03.842897+00 f t 3456 \N \N f f +2555 2025-06-27 01:02:14.618679+00 2025-06-27 01:02:14.618688+00 f t 3457 \N \N f f +2556 2025-06-27 01:17:21.673678+00 2025-06-27 01:17:21.673688+00 f t 3458 \N \N f f +2557 2025-06-27 02:03:05.03969+00 2025-06-27 02:03:05.039701+00 f t 3459 \N \N f f +2558 2025-06-27 04:22:18.761908+00 2025-06-27 04:22:18.761916+00 f t 3460 \N \N f f +2559 2025-06-27 04:22:34.995671+00 2025-06-27 04:22:34.995685+00 f t 3461 \N \N f f +2560 2025-06-27 05:58:44.856155+00 2025-06-27 05:58:44.856164+00 f t 3462 \N \N f f +2561 2025-06-27 06:23:21.409078+00 2025-06-27 06:23:21.409087+00 f t 3463 \N \N f f +2562 2025-06-27 06:27:02.793044+00 2025-06-27 06:27:02.793053+00 f t 3464 \N \N f f +2563 2025-06-27 09:03:46.562568+00 2025-06-27 09:03:46.562576+00 f t 3465 \N \N f f +2564 2025-06-27 09:04:03.155732+00 2025-06-27 09:04:03.155741+00 f t 3466 \N \N f f +2565 2025-06-27 09:26:14.080785+00 2025-06-27 09:26:14.080793+00 f t 3467 \N \N f f +2566 2025-06-27 09:32:47.074205+00 2025-06-27 09:32:47.074213+00 f t 3468 \N \N f f +2567 2025-06-27 10:19:29.076502+00 2025-06-27 10:19:29.07651+00 f t 3469 \N \N f f +2568 2025-06-27 11:21:47.18292+00 2025-06-27 11:21:47.182934+00 f t 3470 \N \N f f +2569 2025-06-27 11:30:20.230575+00 2025-06-27 11:30:20.230582+00 f t 3471 \N \N f f +2570 2025-06-27 11:33:33.383726+00 2025-06-27 11:33:33.383736+00 f t 3472 \N \N f f +2571 2025-06-27 11:49:17.595187+00 2025-06-27 11:49:17.595195+00 f t 3473 \N \N f f +2572 2025-06-27 11:57:10.623505+00 2025-06-27 11:57:10.623513+00 f t 3474 \N \N f f +2573 2025-06-27 11:58:55.201358+00 2025-06-27 11:58:55.201365+00 f t 3475 \N \N f f +2574 2025-06-27 12:04:00.969618+00 2025-06-27 12:04:00.969626+00 f t 3476 \N \N f f +2575 2025-06-27 12:28:19.237836+00 2025-06-27 12:28:19.237842+00 f t 3477 \N \N f f +2576 2025-06-27 12:43:23.382569+00 2025-06-27 12:43:23.382578+00 f t 3478 \N \N f f +2577 2025-06-27 13:14:44.368866+00 2025-06-27 13:14:44.368873+00 f t 3479 \N \N f f +2579 2025-06-27 13:29:35.728436+00 2025-06-27 13:29:35.728443+00 f t 3481 \N \N f f +2580 2025-06-27 13:39:38.831329+00 2025-06-27 13:39:38.831335+00 f t 3482 \N \N f f +2581 2025-06-27 13:52:04.668228+00 2025-06-27 13:52:04.668236+00 f t 3483 \N \N f f +2582 2025-06-27 14:29:21.479417+00 2025-06-27 14:29:21.479426+00 f t 3486 \N \N f f +2583 2025-06-27 14:31:47.193408+00 2025-06-27 14:31:47.193416+00 f t 3487 \N \N f f +2584 2025-06-27 14:35:16.876164+00 2025-06-27 14:35:16.876175+00 f t 3488 \N \N f f +2585 2025-06-27 14:35:21.128546+00 2025-06-27 14:35:21.128554+00 f t 3489 \N \N f f +2578 2025-06-27 14:57:59.139386+00 2025-06-27 13:24:09.393963+00 f t 3480 \N \N f f +2586 2025-06-27 14:58:40.958593+00 2025-06-27 14:58:40.9586+00 f t 3490 \N \N f f +2587 2025-06-27 15:07:34.350624+00 2025-06-27 15:07:34.350631+00 f t 3491 \N \N f f +2588 2025-06-27 15:58:51.774001+00 2025-06-27 15:58:51.774011+00 f t 3492 \N \N f f +2589 2025-06-27 16:34:20.376313+00 2025-06-27 16:34:20.37632+00 f t 3493 \N \N f f +2590 2025-06-27 18:45:31.978921+00 2025-06-27 18:45:31.978932+00 f t 3495 \N \N f f +2591 2025-06-27 19:54:53.586123+00 2025-06-27 19:54:53.586134+00 f t 3497 \N \N f f +2592 2025-06-27 20:00:43.652349+00 2025-06-27 20:00:43.652358+00 f t 3498 \N \N f f +2593 2025-06-27 20:30:39.889375+00 2025-06-27 20:30:39.889385+00 f t 3499 \N \N f f +2594 2025-06-27 21:26:28.140995+00 2025-06-27 21:26:28.141007+00 f t 3500 \N \N f f +2595 2025-06-27 21:55:21.548902+00 2025-06-27 21:55:21.548914+00 f t 3501 \N \N f f +2596 2025-06-27 21:59:42.205313+00 2025-06-27 21:59:42.20532+00 f t 3502 \N \N f f +2597 2025-06-27 22:54:13.845466+00 2025-06-27 22:54:13.845478+00 f t 3503 \N \N f f +2598 2025-06-27 23:09:42.05445+00 2025-06-27 23:09:42.054457+00 f t 3504 \N \N f f +2599 2025-06-27 23:15:13.736117+00 2025-06-27 23:15:13.736129+00 f t 3505 \N \N f f +2600 2025-06-27 23:26:21.417242+00 2025-06-27 23:26:21.417252+00 f t 3506 \N \N f f +2601 2025-06-28 01:01:22.577027+00 2025-06-28 01:01:22.577035+00 f t 3507 \N \N f f +2602 2025-06-28 01:07:40.646766+00 2025-06-28 01:07:40.646774+00 f t 3508 \N \N f f +2603 2025-06-28 02:03:55.617217+00 2025-06-28 02:03:55.617232+00 f t 3509 \N \N f f +2604 2025-06-28 02:38:40.541783+00 2025-06-28 02:38:40.541792+00 f t 3510 \N \N f f +2605 2025-06-28 03:29:55.336457+00 2025-06-28 03:29:55.33647+00 f t 3511 \N \N f f +2606 2025-06-28 03:37:02.208219+00 2025-06-28 03:37:02.208232+00 f t 3512 \N \N f f +2607 2025-06-28 03:42:37.798154+00 2025-06-28 03:42:37.798161+00 f t 3513 \N \N f f +2608 2025-06-28 04:22:43.376072+00 2025-06-28 04:22:43.376081+00 f t 3514 \N \N f f +2609 2025-06-28 05:36:45.008395+00 2025-06-28 05:36:45.008404+00 f t 3515 \N \N f f +2610 2025-06-28 10:43:06.462173+00 2025-06-28 10:43:06.462183+00 f t 3516 \N \N f f +2611 2025-06-28 11:01:31.677318+00 2025-06-28 11:01:31.677326+00 f t 3517 \N \N f f +2612 2025-06-28 12:13:19.209947+00 2025-06-28 12:13:19.209956+00 f t 3518 \N \N f f +2613 2025-06-28 12:31:15.738225+00 2025-06-28 12:31:15.738234+00 f t 3519 \N \N f f +2614 2025-06-28 12:53:13.567096+00 2025-06-28 12:53:13.567105+00 f t 3520 \N \N f f +2615 2025-06-28 12:58:46.721824+00 2025-06-28 12:58:46.721834+00 f t 3521 \N \N f f +2616 2025-06-28 13:34:49.333799+00 2025-06-28 13:34:49.33381+00 f t 3522 \N \N f f +2617 2025-06-28 13:56:13.928889+00 2025-06-28 13:56:13.928901+00 f t 3523 \N \N f f +2618 2025-06-28 14:13:16.716577+00 2025-06-28 14:13:16.71659+00 f t 3524 \N \N f f +2619 2025-06-28 14:35:03.924273+00 2025-06-28 14:35:03.924286+00 f t 3525 \N \N f f +2620 2025-06-28 14:40:32.968507+00 2025-06-28 14:40:32.968515+00 f t 3526 \N \N f f +2621 2025-06-28 15:31:48.733291+00 2025-06-28 15:31:48.733302+00 f t 3527 \N \N f f +2622 2025-06-28 15:40:22.022335+00 2025-06-28 15:40:22.022346+00 f t 3528 \N \N f f +2623 2025-06-28 15:44:26.481639+00 2025-06-28 15:44:26.481646+00 f t 3529 \N \N f f +2624 2025-06-28 16:13:26.852735+00 2025-06-28 16:13:26.852746+00 f t 3530 \N \N f f +2625 2025-06-28 16:34:04.002475+00 2025-06-28 16:34:04.002486+00 f t 3531 \N \N f f +2626 2025-06-28 16:35:45.655243+00 2025-06-28 16:35:45.655254+00 f t 3532 \N \N f f +2627 2025-06-28 17:19:27.034323+00 2025-06-28 17:19:27.03433+00 f t 3533 \N \N f f +2628 2025-06-28 17:21:00.538622+00 2025-06-28 17:21:00.538628+00 f t 3534 \N \N f f +2629 2025-06-28 17:21:22.652665+00 2025-06-28 17:21:22.652674+00 f t 3535 \N \N f f +2630 2025-06-28 17:27:37.15739+00 2025-06-28 17:27:37.157399+00 f t 3536 \N \N f f +2631 2025-06-28 17:28:40.988187+00 2025-06-28 17:28:40.988197+00 f t 3537 \N \N f f +2632 2025-06-28 17:32:57.39023+00 2025-06-28 17:32:57.39024+00 f t 3538 \N \N f f +2633 2025-06-28 18:01:38.906735+00 2025-06-28 18:01:38.906743+00 f t 3539 \N \N f f +2634 2025-06-28 18:32:05.2487+00 2025-06-28 18:32:05.248714+00 f t 3540 \N \N f f +2635 2025-06-28 19:11:15.36322+00 2025-06-28 19:11:15.363229+00 f t 3541 \N \N f f +2636 2025-06-28 20:00:33.106324+00 2025-06-28 20:00:33.106336+00 f t 3542 \N \N f f +2637 2025-06-28 20:03:22.679966+00 2025-06-28 20:03:22.679975+00 f t 3543 \N \N f f +2638 2025-06-28 20:06:03.598319+00 2025-06-28 20:06:03.598328+00 f t 3544 \N \N f f +2639 2025-06-28 20:14:46.598079+00 2025-06-28 20:14:46.598087+00 f t 3545 \N \N f f +2640 2025-06-28 20:23:39.823376+00 2025-06-28 20:23:39.823383+00 f t 3546 \N \N f f +2641 2025-06-28 20:24:59.704555+00 2025-06-28 20:24:59.704564+00 f t 3547 \N \N f f +2642 2025-06-28 20:46:04.196024+00 2025-06-28 20:46:04.196037+00 f t 3548 \N \N f f +2643 2025-06-28 20:47:18.046064+00 2025-06-28 20:47:18.046072+00 f t 3549 \N \N f f +2644 2025-06-28 20:49:23.171929+00 2025-06-28 20:49:23.171936+00 f t 3550 \N \N f f +2645 2025-06-28 22:20:40.075623+00 2025-06-28 22:20:40.075635+00 f t 3552 \N \N f f +2646 2025-06-28 22:40:31.832526+00 2025-06-28 22:40:31.832534+00 f t 3555 \N \N f f +2647 2025-06-28 22:53:27.640809+00 2025-06-28 22:53:27.640817+00 f t 3556 \N \N f f +2648 2025-06-28 22:58:00.67837+00 2025-06-28 22:58:00.678377+00 f t 3557 \N \N f f +2649 2025-06-28 23:15:55.671642+00 2025-06-28 23:15:55.671652+00 f t 3558 \N \N f f +2650 2025-06-28 23:28:45.288715+00 2025-06-28 23:28:45.288722+00 f t 3559 \N \N f f +2651 2025-06-28 23:37:53.540195+00 2025-06-28 23:34:02.781403+00 f t 3560 \N \N f f +2652 2025-06-28 23:49:40.6214+00 2025-06-28 23:49:40.621408+00 f t 3561 \N \N f f +2653 2025-06-29 00:16:38.066279+00 2025-06-29 00:16:38.066286+00 f t 3562 \N \N f f +2654 2025-06-29 00:18:22.884225+00 2025-06-29 00:18:22.884234+00 f t 3563 \N \N f f +2655 2025-06-29 00:33:57.559619+00 2025-06-29 00:33:57.559626+00 f t 3564 \N \N f f +2656 2025-06-29 00:36:01.216648+00 2025-06-29 00:36:01.216657+00 f t 3565 \N \N f f +2657 2025-06-29 00:48:11.57269+00 2025-06-29 00:48:11.572697+00 f t 3566 \N \N f f +2658 2025-06-29 01:01:50.441837+00 2025-06-29 01:01:50.441846+00 f t 3567 \N \N f f +2659 2025-06-29 01:04:37.764563+00 2025-06-29 01:04:37.764584+00 f t 3568 \N \N f f +2660 2025-06-29 01:08:10.420455+00 2025-06-29 01:08:10.420466+00 f t 3569 \N \N f f +2661 2025-06-29 01:22:28.11357+00 2025-06-29 01:22:28.113581+00 f t 3570 \N \N f f +2662 2025-06-29 01:47:15.190167+00 2025-06-29 01:47:15.190178+00 f t 3571 \N \N f f +2663 2025-06-29 02:49:44.835564+00 2025-06-29 02:49:44.835574+00 f t 3572 \N \N f f +2664 2025-06-29 03:33:52.296071+00 2025-06-29 03:33:52.29608+00 f t 3573 \N \N f f +2665 2025-06-29 03:36:31.963646+00 2025-06-29 03:36:31.963656+00 f t 3574 \N \N f f +2666 2025-06-29 03:59:23.743458+00 2025-06-29 03:59:23.743468+00 f t 3575 \N \N f f +2667 2025-06-29 04:23:09.025172+00 2025-06-29 04:23:09.025179+00 f t 3576 \N \N f f +2668 2025-06-29 06:31:07.364995+00 2025-06-29 06:31:07.365006+00 f t 3577 \N \N f f +2669 2025-06-29 06:59:49.608699+00 2025-06-29 06:59:49.608706+00 f t 3578 \N \N f f +2670 2025-06-29 10:15:49.79653+00 2025-06-29 10:15:49.796537+00 f t 3579 \N \N f f +2671 2025-06-29 11:22:18.590006+00 2025-06-29 11:22:18.590016+00 f t 3580 \N \N f f +2672 2025-06-29 11:43:45.287763+00 2025-06-29 11:43:45.28777+00 f t 3581 \N \N f f +2673 2025-06-29 12:11:01.417946+00 2025-06-29 12:11:01.417955+00 f t 3582 \N \N f f +2674 2025-06-29 12:12:08.259706+00 2025-06-29 12:12:08.259713+00 f t 3583 \N \N f f +2675 2025-06-29 12:28:59.666059+00 2025-06-29 12:28:59.666066+00 f t 3584 \N \N f f +2676 2025-06-29 12:45:24.991584+00 2025-06-29 12:45:24.991591+00 f t 3585 \N \N f f +2677 2025-06-29 12:45:28.129033+00 2025-06-29 12:45:28.12904+00 f t 3586 \N \N f f +2678 2025-06-29 12:48:08.569949+00 2025-06-29 12:48:08.569956+00 f t 3587 \N \N f f +2679 2025-06-29 13:01:39.002995+00 2025-06-29 13:01:39.003003+00 f t 3588 \N \N f f +2680 2025-06-29 13:21:02.82432+00 2025-06-29 13:21:02.824329+00 f t 3589 \N \N f f +2681 2025-06-29 13:59:39.523095+00 2025-06-29 13:59:39.523103+00 f t 3590 \N \N f f +2682 2025-06-29 14:08:57.465574+00 2025-06-29 14:08:57.465581+00 f t 3591 \N \N f f +2683 2025-06-29 15:01:26.468049+00 2025-06-29 15:01:26.468057+00 f t 3592 \N \N f f +2684 2025-06-29 15:24:50.48688+00 2025-06-29 15:24:50.486889+00 f t 3593 \N \N f f +2685 2025-06-29 15:30:17.6179+00 2025-06-29 15:30:17.617908+00 f t 3594 \N \N f f +2686 2025-06-29 15:44:35.219542+00 2025-06-29 15:44:35.219549+00 f t 3595 \N \N f f +2687 2025-06-29 15:45:05.813162+00 2025-06-29 15:45:05.813173+00 f t 3596 \N \N f f +2688 2025-06-29 15:45:59.968861+00 2025-06-29 15:45:59.968867+00 f t 3597 \N \N f f +2689 2025-06-29 16:04:39.903483+00 2025-06-29 16:04:39.90349+00 f t 3598 \N \N f f +2690 2025-06-29 16:09:55.207806+00 2025-06-29 16:09:55.207813+00 f t 3599 \N \N f f +2691 2025-06-29 16:45:08.98823+00 2025-06-29 16:45:08.988242+00 f t 3600 \N \N f f +2692 2025-06-29 16:53:44.338784+00 2025-06-29 16:53:44.338795+00 f t 3601 \N \N f f +2693 2025-06-29 17:12:32.284302+00 2025-06-29 17:12:32.284309+00 f t 3602 \N \N f f +2694 2025-06-29 17:24:16.436495+00 2025-06-29 17:24:16.436531+00 f t 3603 \N \N f f +2695 2025-06-29 17:36:48.769787+00 2025-06-29 17:36:48.769796+00 f t 3604 \N \N f f +2696 2025-06-29 18:28:59.333378+00 2025-06-29 18:28:59.333385+00 f t 3605 \N \N f f +2697 2025-06-29 18:40:06.866037+00 2025-06-29 18:40:06.866051+00 f t 3606 \N \N f f +2698 2025-06-29 19:16:39.376802+00 2025-06-29 19:16:39.376811+00 f t 3607 \N \N f f +2699 2025-06-29 19:47:09.417947+00 2025-06-29 19:47:09.417953+00 f t 3608 \N \N f f +2700 2025-06-29 20:18:01.136995+00 2025-06-29 20:18:01.137009+00 f t 3609 \N \N f f +2701 2025-06-29 20:30:44.550381+00 2025-06-29 20:30:44.550388+00 f t 3610 \N \N f f +2702 2025-06-29 21:20:37.085758+00 2025-06-29 21:20:37.085766+00 f t 3611 \N \N f f +2703 2025-06-29 21:20:54.248051+00 2025-06-29 21:20:54.248059+00 f t 3612 \N \N f f +2704 2025-06-29 22:10:15.839823+00 2025-06-29 22:10:15.839832+00 f t 3614 \N \N f f +2706 2025-06-29 22:28:58.291062+00 2025-06-29 22:28:58.29107+00 f t 3616 \N \N f f +2707 2025-06-29 22:31:53.870528+00 2025-06-29 22:31:53.870541+00 f t 3617 \N \N f f +2708 2025-06-29 22:48:36.460385+00 2025-06-29 22:48:36.460394+00 f t 3618 \N \N f f +2709 2025-06-29 23:01:05.82247+00 2025-06-29 23:01:05.822479+00 f t 3619 \N \N f f +2710 2025-06-29 23:53:03.158695+00 2025-06-29 23:53:03.158709+00 f t 3620 \N \N f f +2711 2025-06-30 00:00:02.376123+00 2025-06-30 00:00:02.376136+00 f t 3621 \N \N f f +2712 2025-06-30 00:44:08.12485+00 2025-06-30 00:44:08.124861+00 f t 3622 \N \N f f +2713 2025-06-30 00:47:01.885526+00 2025-06-30 00:47:01.885535+00 f t 3623 \N \N f f +2714 2025-06-30 01:15:32.100169+00 2025-06-30 01:15:32.100178+00 f t 3624 \N \N f f +2715 2025-06-30 01:16:41.379458+00 2025-06-30 01:16:41.379472+00 f t 3625 \N \N f f +2716 2025-06-30 01:34:58.485154+00 2025-06-30 01:34:58.485168+00 f t 3626 \N \N f f +2717 2025-06-30 01:39:25.225043+00 2025-06-30 01:39:25.225054+00 f t 3627 \N \N f f +2718 2025-06-30 01:41:29.044444+00 2025-06-30 01:41:29.044452+00 f t 3628 \N \N f f +2719 2025-06-30 02:09:45.395613+00 2025-06-30 02:09:45.395625+00 f t 3546 \N \N f f +2720 2025-06-30 03:10:12.346604+00 2025-06-30 03:10:12.346622+00 f t 3629 \N \N f f +2721 2025-06-30 03:47:30.270064+00 2025-06-30 03:47:30.270072+00 f t 3630 \N \N f f +2722 2025-06-30 04:27:47.376237+00 2025-06-30 04:27:47.376247+00 f t 3631 \N \N f f +2723 2025-06-30 04:36:58.264717+00 2025-06-30 04:36:58.264728+00 f t 3632 \N \N f f +2724 2025-06-30 04:45:50.863574+00 2025-06-30 04:45:50.863582+00 f t 3633 \N \N f f +2725 2025-06-30 05:32:43.189663+00 2025-06-30 05:32:43.189676+00 f t 3634 \N \N f f +2726 2025-06-30 05:49:17.34002+00 2025-06-30 05:49:17.34003+00 f t 3635 \N \N f f +2727 2025-06-30 05:56:34.27598+00 2025-06-30 05:56:34.275988+00 f t 3636 \N \N f f +2728 2025-06-30 07:31:22.595654+00 2025-06-30 07:31:22.595662+00 f t 3637 \N \N f f +2729 2025-06-30 09:17:55.750076+00 2025-06-30 09:17:55.750084+00 f t 3638 \N \N f f +2730 2025-06-30 11:08:39.325895+00 2025-06-30 11:08:39.325901+00 f t 3639 \N \N f f +2731 2025-06-30 11:10:16.950318+00 2025-06-30 11:10:16.950329+00 f t 3640 \N \N f f +2732 2025-06-30 11:58:45.598154+00 2025-06-30 11:58:45.598163+00 f t 3641 \N \N f f +2733 2025-06-30 12:54:20.258496+00 2025-06-30 12:45:50.853031+00 f t 3642 \N \N f f +2734 2025-06-30 12:59:34.190174+00 2025-06-30 12:55:01.660132+00 f t 3644 \N \N f f +2735 2025-06-30 13:04:55.204685+00 2025-06-30 13:04:55.204695+00 f t 3645 \N \N f f +2736 2025-06-30 13:28:59.020713+00 2025-06-30 13:28:59.020724+00 f t 3646 \N \N f f +2738 2025-06-30 13:36:59.61106+00 2025-06-30 13:36:59.611066+00 f t 3648 \N \N f f +2739 2025-06-30 13:53:18.991674+00 2025-06-30 13:53:18.991683+00 f t 3649 \N \N f f +2740 2025-06-30 13:59:58.092229+00 2025-06-30 13:59:58.09224+00 f t 3650 \N \N f f +2737 2025-06-30 14:02:32.857347+00 2025-06-30 13:35:34.313265+00 f t 3647 \N \N f f +2741 2025-06-30 14:10:46.91281+00 2025-06-30 14:10:46.91282+00 f t 3651 \N \N f f +2742 2025-06-30 15:16:35.284964+00 2025-06-30 15:16:35.284972+00 f t 3652 \N \N f f +2743 2025-06-30 15:17:46.833616+00 2025-06-30 15:17:46.833627+00 f t 3653 \N \N f f +2744 2025-06-30 15:33:18.335341+00 2025-06-30 15:33:18.33535+00 f t 3654 \N \N f f +2745 2025-06-30 15:40:55.047972+00 2025-06-30 15:40:55.047979+00 f t 3655 \N \N f f +2746 2025-06-30 16:31:16.352241+00 2025-06-30 16:31:16.352251+00 f t 3657 \N \N f f +2747 2025-06-30 16:43:09.782084+00 2025-06-30 16:43:09.782095+00 f t 3658 \N \N f f +2748 2025-06-30 16:43:55.066057+00 2025-06-30 16:43:55.066065+00 f t 3659 \N \N f f +2749 2025-06-30 17:53:51.053239+00 2025-06-30 17:53:51.053247+00 f t 3660 \N \N f f +2750 2025-06-30 18:01:28.097426+00 2025-06-30 18:01:28.097441+00 f t 3661 \N \N f f +2751 2025-06-30 18:21:23.799369+00 2025-06-30 18:21:23.799378+00 f t 3662 \N \N f f +2752 2025-06-30 18:21:48.208981+00 2025-06-30 18:21:48.209011+00 f t 3663 \N \N f f +2753 2025-06-30 18:45:32.341156+00 2025-06-30 18:45:32.341165+00 f t 3664 \N \N f f +2754 2025-06-30 18:48:05.7937+00 2025-06-30 18:48:05.793709+00 f t 3665 \N \N f f +2755 2025-06-30 18:51:46.461042+00 2025-06-30 18:51:46.461053+00 f t 3666 \N \N f f +2756 2025-06-30 18:52:21.236114+00 2025-06-30 18:52:21.236121+00 f t 3667 \N \N f f +2757 2025-06-30 19:06:05.814111+00 2025-06-30 19:06:05.814119+00 f t 3668 \N \N f f +2758 2025-06-30 19:18:40.591757+00 2025-06-30 19:18:40.591765+00 f t 3669 \N \N f f +2759 2025-06-30 19:37:40.480515+00 2025-06-30 19:37:40.480524+00 f t 3670 \N \N f f +2760 2025-06-30 19:39:24.723685+00 2025-06-30 19:39:24.723695+00 f t 3671 \N \N f f +2761 2025-06-30 19:40:00.796437+00 2025-06-30 19:40:00.796445+00 f t 3672 \N \N f f +2762 2025-06-30 19:44:45.796284+00 2025-06-30 19:44:45.796295+00 f t 3673 \N \N f f +2763 2025-06-30 19:55:25.131313+00 2025-06-30 19:55:25.131322+00 f t 3674 \N \N f f +2764 2025-06-30 20:04:05.37141+00 2025-06-30 20:04:05.371419+00 f t 3675 \N \N f f +2765 2025-06-30 20:23:15.870471+00 2025-06-30 20:23:15.870479+00 f t 3676 \N \N f f +2766 2025-06-30 20:23:58.285206+00 2025-06-30 20:23:58.285213+00 f t 3677 \N \N f f +2767 2025-06-30 20:24:03.133621+00 2025-06-30 20:24:03.133632+00 f t 3678 \N \N f f +2768 2025-06-30 21:09:24.280768+00 2025-06-30 21:09:24.280779+00 f t 3679 \N \N f f +2769 2025-06-30 21:24:50.875864+00 2025-06-30 21:24:50.875872+00 f t 3680 \N \N f f +2770 2025-06-30 21:44:52.981199+00 2025-06-30 21:44:52.981207+00 f t 3681 \N \N f f +2771 2025-06-30 21:45:54.860501+00 2025-06-30 21:45:54.860512+00 f t 3682 \N \N f f +2772 2025-06-30 21:49:45.2758+00 2025-06-30 21:49:45.275807+00 f t 3683 \N \N f f +2773 2025-06-30 21:56:30.811023+00 2025-06-30 21:56:30.811034+00 f t 3684 \N \N f f +2774 2025-06-30 22:01:05.981729+00 2025-06-30 22:01:05.981738+00 f t 3685 \N \N f f +2775 2025-06-30 22:46:48.172991+00 2025-06-30 22:46:48.173+00 f t 3686 \N \N f f +2776 2025-06-30 22:56:20.484285+00 2025-06-30 22:56:20.484294+00 f t 3687 \N \N f f +2777 2025-06-30 23:58:04.698349+00 2025-06-30 23:58:04.698357+00 f t 3689 \N \N f f +2778 2025-06-30 23:58:55.763727+00 2025-06-30 23:58:55.763735+00 f t 3690 \N \N f f +2779 2025-07-01 00:01:09.160232+00 2025-07-01 00:01:09.160244+00 f t 3691 \N \N f f +2780 2025-07-01 00:01:39.880079+00 2025-07-01 00:01:39.880091+00 f t 3692 \N \N f f +2781 2025-07-01 00:16:38.594931+00 2025-07-01 00:16:38.59494+00 f t 3694 \N \N f f +2782 2025-07-01 00:18:47.621303+00 2025-07-01 00:18:47.621311+00 f t 3695 \N \N f f +2783 2025-07-01 00:29:33.915197+00 2025-07-01 00:29:33.915206+00 f t 3696 \N \N f f +2784 2025-07-01 00:33:37.419857+00 2025-07-01 00:33:37.419869+00 f t 3697 \N \N f f +2785 2025-07-01 00:52:44.029598+00 2025-07-01 00:52:44.029605+00 f t 3698 \N \N f f +2786 2025-07-01 01:21:38.30921+00 2025-07-01 01:21:38.309221+00 f t 3699 \N \N f f +2787 2025-07-01 01:32:30.41521+00 2025-07-01 01:32:30.415222+00 f t 3700 \N \N f f +2788 2025-07-01 02:10:50.685009+00 2025-07-01 02:10:50.685018+00 f t 3701 \N \N f f +2789 2025-07-01 02:13:19.794464+00 2025-07-01 02:13:19.794473+00 f t 3702 \N \N f f +2790 2025-07-01 02:43:36.50286+00 2025-07-01 02:41:00.231004+00 f t 3703 \N \N f f +2791 2025-07-01 03:07:04.232592+00 2025-07-01 03:07:04.232605+00 f t 3704 \N \N f f +2792 2025-07-01 09:35:53.815893+00 2025-07-01 09:35:53.815906+00 f t 3705 \N \N f f +2793 2025-07-01 09:57:23.17108+00 2025-07-01 09:57:23.171088+00 f t 3706 \N \N f f +2794 2025-07-01 11:35:30.277611+00 2025-07-01 11:35:30.277619+00 f t 3707 \N \N f f +2795 2025-07-01 12:03:19.387871+00 2025-07-01 12:03:19.387883+00 f t 3708 \N \N f f +2796 2025-07-01 12:36:24.425046+00 2025-07-01 12:36:24.425053+00 f t 3709 \N \N f f +2797 2025-07-01 12:39:46.846398+00 2025-07-01 12:39:46.846408+00 f t 3710 \N \N f f +2798 2025-07-01 12:48:53.592226+00 2025-07-01 12:48:53.592235+00 f t 3711 \N \N f f +2799 2025-07-01 12:50:27.900096+00 2025-07-01 12:50:27.900105+00 f t 3712 \N \N f f +2800 2025-07-01 13:06:01.693182+00 2025-07-01 13:06:01.693191+00 f t 3713 \N \N f f +2801 2025-07-01 13:08:08.392134+00 2025-07-01 13:08:08.392143+00 f t 3714 \N \N f f +2802 2025-07-01 13:30:57.699362+00 2025-07-01 13:30:57.699369+00 f t 3715 \N \N f f +2803 2025-07-01 13:33:50.25768+00 2025-07-01 13:33:50.257692+00 f t 3716 \N \N f f +2804 2025-07-01 13:41:43.345969+00 2025-07-01 13:41:43.345976+00 f t 3717 \N \N f f +2805 2025-07-01 13:58:43.520135+00 2025-07-01 13:58:43.520147+00 f t 3718 \N \N f f +2806 2025-07-01 13:59:34.592043+00 2025-07-01 13:59:34.59205+00 f t 3719 \N \N f f +2807 2025-07-01 13:59:41.35149+00 2025-07-01 13:59:41.351501+00 f t 3720 \N \N f f +2808 2025-07-01 14:12:02.651808+00 2025-07-01 14:12:02.651838+00 f t 3721 \N \N f f +2809 2025-07-01 14:12:59.104218+00 2025-07-01 14:12:59.10423+00 f t 3722 \N \N f f +2810 2025-07-01 14:31:53.013378+00 2025-07-01 14:31:53.013388+00 f t 3723 \N \N f f +2811 2025-07-01 15:02:26.570795+00 2025-07-01 15:02:26.570803+00 f t 3725 \N \N f f +2812 2025-07-01 15:03:12.535116+00 2025-07-01 15:03:12.535125+00 f t 3726 \N \N f f +2813 2025-07-01 15:07:15.647889+00 2025-07-01 15:07:15.647897+00 f t 3727 \N \N f f +2814 2025-07-01 15:14:56.166169+00 2025-07-01 15:14:56.166178+00 f t 3728 \N \N f f +2815 2025-07-01 15:31:11.225266+00 2025-07-01 15:31:11.225277+00 f t 3730 \N \N f f +2816 2025-07-01 15:33:33.135823+00 2025-07-01 15:33:33.135833+00 f t 3731 \N \N f f +2817 2025-07-01 15:59:05.782766+00 2025-07-01 15:59:05.782779+00 f t 3732 \N \N f f +2818 2025-07-01 16:06:55.478777+00 2025-07-01 16:06:55.478785+00 f t 3733 \N \N f f +2819 2025-07-01 16:37:46.308402+00 2025-07-01 16:37:46.30841+00 f t 3734 \N \N f f +2820 2025-07-01 16:40:37.172897+00 2025-07-01 16:40:37.172905+00 f t 3736 \N \N f f +2821 2025-07-01 17:04:15.15835+00 2025-07-01 17:04:15.158361+00 f t 3737 \N \N f f +2822 2025-07-01 17:05:15.825201+00 2025-07-01 17:05:15.82521+00 f t 3738 \N \N f f +2823 2025-07-01 17:41:56.270823+00 2025-07-01 17:41:56.270832+00 f t 3739 \N \N f f +2824 2025-07-01 17:45:33.913931+00 2025-07-01 17:45:33.913939+00 f t 3740 \N \N f f +2825 2025-07-01 18:08:40.678521+00 2025-07-01 18:08:40.678531+00 f t 3741 \N \N f f +2826 2025-07-01 19:21:00.809833+00 2025-07-01 19:21:00.809841+00 f t 3742 \N \N f f +2827 2025-07-01 20:40:20.135743+00 2025-07-01 20:40:20.135755+00 f t 3743 \N \N f f +2828 2025-07-01 20:48:51.486301+00 2025-07-01 20:48:51.486308+00 f t 3744 \N \N f f +2829 2025-07-01 21:20:34.270688+00 2025-07-01 21:20:34.2707+00 f t 3746 \N \N f f +2830 2025-07-01 21:53:00.739094+00 2025-07-01 21:53:00.739102+00 f t 3747 \N \N f f +2831 2025-07-01 22:09:17.126996+00 2025-07-01 22:09:17.127005+00 f t 3748 \N \N f f +2832 2025-07-01 22:25:17.430457+00 2025-07-01 22:25:17.430466+00 f t 3749 \N \N f f +2833 2025-07-01 23:07:14.314138+00 2025-07-01 23:07:14.314146+00 f t 3750 \N \N f f +2834 2025-07-01 23:09:15.148486+00 2025-07-01 23:09:15.148496+00 f t 3751 \N \N f f +2835 2025-07-01 23:13:27.596432+00 2025-07-01 23:13:27.59644+00 f t 3752 \N \N f f +2836 2025-07-01 23:50:25.27003+00 2025-07-01 23:50:25.27004+00 f t 3753 \N \N f f +2837 2025-07-02 00:11:20.89054+00 2025-07-02 00:11:20.89055+00 f t 3754 \N \N f f +2838 2025-07-02 00:12:37.026901+00 2025-07-02 00:12:37.026911+00 f t 3755 \N \N f f +2839 2025-07-02 00:20:24.526119+00 2025-07-02 00:20:24.526131+00 f t 3756 \N \N f f +2840 2025-07-02 00:33:45.694772+00 2025-07-02 00:33:45.694779+00 f t 3758 \N \N f f +2841 2025-07-02 01:03:25.276468+00 2025-07-02 01:03:25.276488+00 f t 3759 \N \N f f +2842 2025-07-02 01:24:36.358324+00 2025-07-02 01:24:36.358332+00 f t 3760 \N \N f f +2843 2025-07-02 01:58:30.01183+00 2025-07-02 01:58:30.011838+00 f t 3761 \N \N f f +2844 2025-07-02 02:08:35.309994+00 2025-07-02 02:08:35.31+00 f t 3762 \N \N f f +2845 2025-07-02 02:12:26.329892+00 2025-07-02 02:12:26.329901+00 f t 3763 \N \N f f +2846 2025-07-02 02:22:17.347029+00 2025-07-02 02:22:17.347038+00 f t 3764 \N \N f f +2847 2025-07-02 02:54:43.778686+00 2025-07-02 02:54:43.778697+00 f t 3765 \N \N f f +2848 2025-07-02 02:59:23.986134+00 2025-07-02 02:59:23.986143+00 f t 3766 \N \N f f +2849 2025-07-02 03:26:00.9391+00 2025-07-02 03:26:00.93911+00 f t 3767 \N \N f f +2850 2025-07-02 03:44:21.399059+00 2025-07-02 03:44:21.399067+00 f t 3768 \N \N f f +2851 2025-07-02 04:32:58.740938+00 2025-07-02 04:32:58.740944+00 f t 3769 \N \N f f +2852 2025-07-02 11:13:40.324421+00 2025-07-02 11:13:40.324428+00 f t 3770 \N \N f f +2853 2025-07-02 11:21:29.469807+00 2025-07-02 11:19:22.573887+00 f t 3771 \N \N f f +2854 2025-07-02 11:24:54.780617+00 2025-07-02 11:24:54.780625+00 f t 3772 \N \N f f +2855 2025-07-02 12:42:50.488221+00 2025-07-02 12:42:50.488229+00 f t 3773 \N \N f f +2856 2025-07-02 12:48:54.242872+00 2025-07-02 12:48:54.242882+00 f t 3774 \N \N f f +2857 2025-07-02 12:49:25.549957+00 2025-07-02 12:49:25.549963+00 f t 842 \N \N f f +2858 2025-07-02 13:08:59.99398+00 2025-07-02 13:08:59.99399+00 f t 3775 \N \N f f +2859 2025-07-02 13:15:17.786024+00 2025-07-02 13:15:17.78603+00 f t 3776 \N \N f f +2860 2025-07-02 13:56:32.211539+00 2025-07-02 13:56:32.21155+00 f t 3778 \N \N f f +2861 2025-07-02 14:00:55.862387+00 2025-07-02 14:00:55.862397+00 f t 3779 \N \N f f +2862 2025-07-02 15:46:31.065503+00 2025-07-02 15:46:31.065515+00 f t 3780 \N \N f f +2863 2025-07-02 16:01:45.936023+00 2025-07-02 16:01:45.936035+00 f t 3781 \N \N f f +2864 2025-07-02 17:09:34.05845+00 2025-07-02 17:09:34.058463+00 f t 3783 \N \N f f +2865 2025-07-02 17:11:38.77391+00 2025-07-02 17:11:38.773919+00 f t 3784 \N \N f f +2866 2025-07-02 17:33:13.559885+00 2025-07-02 17:33:13.559896+00 f t 3785 \N \N f f +2867 2025-07-02 18:02:10.626788+00 2025-07-02 18:02:10.626796+00 f t 3786 \N \N f f +2868 2025-07-02 18:21:04.644109+00 2025-07-02 18:21:04.64412+00 f t 3787 \N \N f f +2869 2025-07-02 18:47:49.914641+00 2025-07-02 18:47:49.914649+00 f t 3788 \N \N f f +2870 2025-07-02 19:51:35.821044+00 2025-07-02 19:51:35.821051+00 f t 3790 \N \N f f +2871 2025-07-02 19:54:46.243271+00 2025-07-02 19:54:46.243279+00 f t 3791 \N \N f f +2872 2025-07-02 19:57:57.757183+00 2025-07-02 19:57:57.75719+00 f t 3792 \N \N f f +2873 2025-07-02 20:10:28.125636+00 2025-07-02 20:10:28.125645+00 f t 3793 \N \N f f +2874 2025-07-02 20:33:23.6048+00 2025-07-02 20:33:23.604806+00 f t 3794 \N \N f f +2875 2025-07-02 20:33:40.729279+00 2025-07-02 20:33:40.729287+00 f t 3795 \N \N f f +2876 2025-07-02 20:35:08.72776+00 2025-07-02 20:35:08.727767+00 f t 3796 \N \N f f +2877 2025-07-02 20:43:15.45723+00 2025-07-02 20:43:15.457242+00 f t 3797 \N \N f f +2878 2025-07-02 20:52:45.275939+00 2025-07-02 20:52:45.275946+00 f t 3798 \N \N f f +2879 2025-07-02 21:05:39.109838+00 2025-07-02 21:05:39.109848+00 f t 3799 \N \N f f +2880 2025-07-02 21:59:01.80558+00 2025-07-02 21:59:01.80559+00 f t 3800 \N \N f f +2881 2025-07-02 22:08:05.724722+00 2025-07-02 22:08:05.724732+00 f t 3801 \N \N f f +2882 2025-07-02 22:08:30.501238+00 2025-07-02 22:08:30.501246+00 f t 3802 \N \N f f +2883 2025-07-02 23:48:42.549569+00 2025-07-02 23:48:42.549578+00 f t 3806 \N \N f f +2884 2025-07-03 00:50:42.225425+00 2025-07-03 00:50:42.225434+00 f t 3807 \N \N f f +2885 2025-07-03 01:08:23.733124+00 2025-07-03 01:08:23.733132+00 f t 3808 \N \N f f +2886 2025-07-03 01:12:01.330441+00 2025-07-03 01:12:01.330453+00 f t 3809 \N \N f f +2887 2025-07-03 01:16:22.606035+00 2025-07-03 01:16:22.606041+00 f t 3810 \N \N f f +2888 2025-07-03 01:51:37.929774+00 2025-07-03 01:51:37.929783+00 f t 3811 \N \N f f +2889 2025-07-03 02:19:17.828399+00 2025-07-03 02:19:17.828409+00 f t 3812 \N \N f f +2890 2025-07-03 02:26:49.920797+00 2025-07-03 02:26:49.920804+00 f t 3813 \N \N f f +2891 2025-07-03 02:42:56.730284+00 2025-07-03 02:42:56.730293+00 f t 3814 \N \N f f +2892 2025-07-03 02:56:52.765318+00 2025-07-03 02:56:52.765324+00 f t 3815 \N \N f f +2893 2025-07-03 02:58:52.259528+00 2025-07-03 02:58:52.259537+00 f t 3816 \N \N f f +2894 2025-07-03 03:07:41.128416+00 2025-07-03 03:07:41.128424+00 f t 3817 \N \N f f +2895 2025-07-03 06:33:34.360763+00 2025-07-03 06:33:34.360771+00 f t 3818 \N \N f f +2896 2025-07-03 11:34:17.121762+00 2025-07-03 11:34:17.121768+00 f t 3819 \N \N f f +2897 2025-07-03 12:53:18.205959+00 2025-07-03 12:53:18.205967+00 f t 3820 \N \N f f +2898 2025-07-03 13:12:21.136079+00 2025-07-03 13:12:21.136086+00 f t 3409 \N \N f f +2899 2025-07-03 13:36:55.785244+00 2025-07-03 13:36:55.785256+00 f t 3821 \N \N f f +2900 2025-07-03 13:38:58.69218+00 2025-07-03 13:38:58.692187+00 f t 3822 \N \N f f +2901 2025-07-03 13:40:24.743313+00 2025-07-03 13:40:24.743324+00 f t 3823 \N \N f f +2902 2025-07-03 13:41:20.648592+00 2025-07-03 13:41:20.648598+00 f t 3824 \N \N f f +2903 2025-07-03 13:42:39.97093+00 2025-07-03 13:42:39.970944+00 f t 3825 \N \N f f +2904 2025-07-03 14:21:19.98873+00 2025-07-03 14:21:19.988741+00 f t 3826 \N \N f f +2905 2025-07-03 15:09:34.659914+00 2025-07-03 15:09:34.659927+00 f t 3827 \N \N f f +2906 2025-07-03 15:23:17.371858+00 2025-07-03 15:23:17.371869+00 f t 3828 \N \N f f +2907 2025-07-03 15:24:06.410421+00 2025-07-03 15:24:06.410433+00 f t 3829 \N \N f f +2908 2025-07-03 15:29:22.022664+00 2025-07-03 15:29:22.022672+00 f t 3830 \N \N f f +2909 2025-07-03 15:57:48.296763+00 2025-07-03 15:57:48.296771+00 f t 3831 \N \N f f +2910 2025-07-03 15:59:06.762433+00 2025-07-03 15:59:06.762441+00 f t 3832 \N \N f f +2911 2025-07-03 15:59:22.405288+00 2025-07-03 15:59:22.405298+00 f t 3833 \N \N f f +2912 2025-07-03 16:08:09.071737+00 2025-07-03 16:08:09.071744+00 f t 3834 \N \N f f +2913 2025-07-03 16:09:31.180027+00 2025-07-03 16:09:31.180034+00 f t 3835 \N \N f f +2914 2025-07-03 16:12:27.165244+00 2025-07-03 16:12:27.16525+00 f t 3836 \N \N f f +2915 2025-07-03 16:20:57.644168+00 2025-07-03 16:20:57.644175+00 f t 3837 \N \N f f +2916 2025-07-03 16:31:22.180012+00 2025-07-03 16:31:22.180023+00 f t 3838 \N \N f f +2917 2025-07-03 16:31:31.131913+00 2025-07-03 16:31:31.131924+00 f t 3839 \N \N f f +2918 2025-07-03 16:33:54.642097+00 2025-07-03 16:33:54.642103+00 f t 3840 \N \N f f +2919 2025-07-03 16:44:46.718904+00 2025-07-03 16:44:46.718911+00 f t 3841 \N \N f f +2920 2025-07-03 17:40:23.797519+00 2025-07-03 17:40:23.797535+00 f t 3842 \N \N f f +2921 2025-07-03 17:41:32.662026+00 2025-07-03 17:41:32.662034+00 f t 3843 \N \N f f +2922 2025-07-03 17:44:22.754823+00 2025-07-03 17:44:22.75483+00 f t 3844 \N \N f f +2923 2025-07-03 17:49:03.196778+00 2025-07-03 17:49:03.196787+00 f t 3845 \N \N f f +2924 2025-07-03 17:56:14.559859+00 2025-07-03 17:56:14.559871+00 f t 3846 \N \N f f +2925 2025-07-03 18:00:13.626012+00 2025-07-03 18:00:13.62616+00 f t 3847 \N \N f f +2926 2025-07-03 18:06:45.553826+00 2025-07-03 18:06:45.553834+00 f t 3848 \N \N f f +2927 2025-07-03 18:07:39.560161+00 2025-07-03 18:07:39.560169+00 f t 3849 \N \N f f +2928 2025-07-03 18:28:33.088932+00 2025-07-03 18:28:33.088939+00 f t 3850 \N \N f f +2929 2025-07-03 18:28:56.217385+00 2025-07-03 18:28:56.217391+00 f t 3851 \N \N f f +2930 2025-07-03 18:29:26.129213+00 2025-07-03 18:29:26.129224+00 f t 3852 \N \N f f +2931 2025-07-03 18:29:41.007187+00 2025-07-03 18:29:41.007195+00 f t 3853 \N \N f f +2932 2025-07-03 18:29:53.807754+00 2025-07-03 18:29:53.80776+00 f t 3854 \N \N f f +2933 2025-07-03 18:31:50.693749+00 2025-07-03 18:31:50.693757+00 f t 3855 \N \N f f +2934 2025-07-03 18:37:13.102132+00 2025-07-03 18:37:13.102143+00 f t 3856 \N \N f f +2935 2025-07-03 18:47:19.383545+00 2025-07-03 18:47:19.383556+00 f t 3857 \N \N f f +2936 2025-07-03 18:49:06.069082+00 2025-07-03 18:49:06.069091+00 f t 3858 \N \N f f +2937 2025-07-03 18:58:34.251045+00 2025-07-03 18:58:34.251052+00 f t 3859 \N \N f f +2938 2025-07-03 19:16:57.647355+00 2025-07-03 19:16:57.647367+00 f t 3860 \N \N f f +2939 2025-07-03 19:44:39.217151+00 2025-07-03 19:44:39.217161+00 f t 3862 \N \N f f +2940 2025-07-03 19:45:48.437778+00 2025-07-03 19:45:48.437786+00 f t 3863 \N \N f f +2941 2025-07-03 19:45:59.116117+00 2025-07-03 19:45:59.116126+00 f t 3864 \N \N f f +2942 2025-07-03 19:50:05.303585+00 2025-07-03 19:50:05.303601+00 f t 3865 \N \N f f +2943 2025-07-03 19:51:24.527978+00 2025-07-03 19:51:24.527985+00 f t 3866 \N \N f f +2944 2025-07-03 20:02:19.892151+00 2025-07-03 20:02:19.89216+00 f t 3867 \N \N f f +2945 2025-07-03 20:38:02.080508+00 2025-07-03 20:38:02.080518+00 f t 3546 \N \N f f +2946 2025-07-03 21:38:18.871109+00 2025-07-03 21:38:18.871116+00 f t 3869 \N \N f f +2947 2025-07-03 21:44:13.90853+00 2025-07-03 21:44:13.908538+00 f t 3870 \N \N f f +2948 2025-07-03 21:45:23.661084+00 2025-07-03 21:45:23.661092+00 f t 3871 \N \N f f +2949 2025-07-03 21:49:21.920923+00 2025-07-03 21:49:21.92093+00 f t 3872 \N \N f f +2950 2025-07-03 22:41:36.526479+00 2025-07-03 22:41:36.526489+00 f t 3873 \N \N f f +2951 2025-07-03 22:52:22.896214+00 2025-07-03 22:52:22.896224+00 f t 3874 \N \N f f +2952 2025-07-03 23:55:35.34617+00 2025-07-03 23:55:35.346178+00 f t 3875 \N \N f f +2953 2025-07-04 00:17:27.978679+00 2025-07-04 00:17:27.978688+00 f t 3876 \N \N f f +2954 2025-07-04 00:24:31.660171+00 2025-07-04 00:24:31.660179+00 f t 3877 \N \N f f +2955 2025-07-04 00:27:50.812188+00 2025-07-04 00:27:50.812197+00 f t 3878 \N \N f f +2956 2025-07-04 00:52:45.102647+00 2025-07-04 00:52:45.102654+00 f t 3879 \N \N f f +2957 2025-07-04 00:53:09.798585+00 2025-07-04 00:53:09.798593+00 f t 3880 \N \N f f +2958 2025-07-04 01:43:52.835533+00 2025-07-04 01:43:52.83554+00 f t 3881 \N \N f f +2959 2025-07-04 03:39:28.745651+00 2025-07-04 03:39:28.74566+00 f t 3882 \N \N f f +2960 2025-07-04 04:07:48.324994+00 2025-07-04 04:07:48.325002+00 f t 3883 \N \N f f +2961 2025-07-04 04:23:50.134173+00 2025-07-04 04:23:50.13418+00 f t 3884 \N \N f f +2962 2025-07-04 07:35:43.817913+00 2025-07-04 07:35:43.817926+00 f t 3885 \N \N f f +2963 2025-07-04 09:58:42.564278+00 2025-07-04 09:58:42.564285+00 f t 3886 \N \N f f +2964 2025-07-04 10:38:35.634557+00 2025-07-04 10:38:35.634565+00 f t 3887 \N \N f f +2965 2025-07-04 11:00:44.797763+00 2025-07-04 11:00:44.797771+00 f t 3888 \N \N f f +2966 2025-07-04 11:15:57.188409+00 2025-07-04 11:15:57.188418+00 f t 3889 \N \N f f +2967 2025-07-04 11:40:22.549568+00 2025-07-04 11:40:22.549578+00 f t 3890 \N \N f f +2968 2025-07-04 12:18:29.924684+00 2025-07-04 12:18:29.924695+00 f t 3891 \N \N f f +2969 2025-07-04 12:21:11.173015+00 2025-07-04 12:21:11.173023+00 f t 3892 \N \N f f +2970 2025-07-04 12:22:06.484842+00 2025-07-04 12:22:06.484849+00 f t 3893 \N \N f f +2971 2025-07-04 12:28:34.33349+00 2025-07-04 12:28:34.333501+00 f t 3894 \N \N f f +2972 2025-07-04 13:16:52.099307+00 2025-07-04 13:16:52.09932+00 f t 3895 \N \N f f +2973 2025-07-04 13:25:16.524602+00 2025-07-04 13:25:16.524612+00 f t 3896 \N \N f f +2974 2025-07-04 13:34:15.313623+00 2025-07-04 13:34:15.31363+00 f t 3897 \N \N f f +2975 2025-07-04 14:40:27.462683+00 2025-07-04 14:40:27.462689+00 f t 3898 \N \N f f +2976 2025-07-04 14:47:38.06742+00 2025-07-04 14:47:38.067426+00 f t 3899 \N \N f f +2977 2025-07-04 15:07:02.135263+00 2025-07-04 15:07:02.135276+00 f t 3900 \N \N f f +2978 2025-07-04 15:44:58.493812+00 2025-07-04 15:44:58.493819+00 f t 3902 \N \N f f +2979 2025-07-04 15:52:30.702819+00 2025-07-04 15:52:30.702828+00 f t 3903 \N \N f f +2980 2025-07-04 16:08:04.002661+00 2025-07-04 16:08:04.002672+00 f t 3904 \N \N f f +2981 2025-07-04 16:13:52.833699+00 2025-07-04 16:13:52.833706+00 f t 3905 \N \N f f +2982 2025-07-04 16:28:33.674705+00 2025-07-04 16:28:33.674714+00 f t 3906 \N \N f f +2983 2025-07-04 17:00:34.0926+00 2025-07-04 17:00:34.09261+00 f t 3907 \N \N f f +2984 2025-07-04 17:03:36.706842+00 2025-07-04 17:03:36.706848+00 f t 3908 \N \N f f +2985 2025-07-04 17:04:37.930826+00 2025-07-04 17:04:37.930834+00 f t 3909 \N \N f f +2986 2025-07-04 17:19:59.310757+00 2025-07-04 17:19:59.310765+00 f t 3910 \N \N f f +2987 2025-07-04 18:13:45.742983+00 2025-07-04 18:13:45.742989+00 f t 3912 \N \N f f +2988 2025-07-04 18:17:26.763961+00 2025-07-04 18:17:26.76397+00 f t 3913 \N \N f f +2989 2025-07-04 19:36:30.62639+00 2025-07-04 19:36:30.626402+00 f t 3914 \N \N f f +2990 2025-07-04 19:43:23.034664+00 2025-07-04 19:43:23.034672+00 f t 3915 \N \N f f +2991 2025-07-04 20:34:40.792323+00 2025-07-04 20:34:40.792335+00 f t 3917 \N \N f f +2992 2025-07-04 20:40:34.029359+00 2025-07-04 20:40:34.02937+00 f t 3918 \N \N f f +2993 2025-07-04 21:14:59.018873+00 2025-07-04 21:14:59.01888+00 f t 3919 \N \N f f +2994 2025-07-04 21:56:45.980297+00 2025-07-04 21:56:45.98031+00 f t 3920 \N \N f f +2995 2025-07-04 22:52:55.65865+00 2025-07-04 22:52:55.658658+00 f t 3921 \N \N f f +2996 2025-07-04 22:53:52.609737+00 2025-07-04 22:53:52.609745+00 f t 3922 \N \N f f +2997 2025-07-04 23:09:59.125081+00 2025-07-04 23:09:59.125088+00 f t 3923 \N \N f f +2998 2025-07-04 23:33:21.647391+00 2025-07-04 23:33:21.647398+00 f t 3924 \N \N f f +2999 2025-07-04 23:34:35.671794+00 2025-07-04 23:34:35.671802+00 f t 3925 \N \N f f +3000 2025-07-04 23:41:11.414503+00 2025-07-04 23:41:11.414513+00 f t 3927 \N \N f f +3001 2025-07-05 00:19:51.853945+00 2025-07-05 00:19:51.853954+00 f t 3928 \N \N f f +3002 2025-07-05 00:24:48.265961+00 2025-07-05 00:24:48.265968+00 f t 3929 \N \N f f +3003 2025-07-05 01:04:41.123677+00 2025-07-05 01:04:41.123687+00 f t 3931 \N \N f f +3004 2025-07-05 01:08:53.42836+00 2025-07-05 01:08:53.428369+00 f t 3932 \N \N f f +3005 2025-07-05 01:20:35.584308+00 2025-07-05 01:20:35.584316+00 f t 3933 \N \N f f +3006 2025-07-05 02:02:06.588465+00 2025-07-05 02:02:06.588474+00 f t 3934 \N \N f f +3007 2025-07-05 02:57:42.402359+00 2025-07-05 02:57:42.40237+00 f t 3935 \N \N f f +3008 2025-07-05 03:20:40.772921+00 2025-07-05 03:20:40.772931+00 f t 3936 \N \N f f +3009 2025-07-05 05:18:24.896276+00 2025-07-05 05:11:33.157431+00 f t 3937 \N \N f f +3010 2025-07-05 05:23:07.676644+00 2025-07-05 05:23:07.676653+00 f t 3938 \N \N f f +3011 2025-07-05 05:38:43.138319+00 2025-07-05 05:38:43.138326+00 f t 3939 \N \N f f +3012 2025-07-05 09:56:28.9053+00 2025-07-05 09:56:28.905308+00 f t 3940 \N \N f f +3013 2025-07-05 11:38:56.162348+00 2025-07-05 11:38:56.162357+00 f t 3941 \N \N f f +3014 2025-07-05 11:41:47.925478+00 2025-07-05 11:41:47.925491+00 f t 3942 \N \N f f +3015 2025-07-05 11:45:05.08353+00 2025-07-05 11:45:05.083542+00 f t 3943 \N \N f f +3016 2025-07-05 11:56:00.428258+00 2025-07-05 11:56:00.428266+00 f t 3944 \N \N f f +3017 2025-07-05 12:04:00.814022+00 2025-07-05 12:04:00.814031+00 f t 3945 \N \N f f +3018 2025-07-05 12:05:46.540372+00 2025-07-05 12:05:46.540379+00 f t 3946 \N \N f f +3019 2025-07-05 12:06:37.707613+00 2025-07-05 12:06:37.707619+00 f t 3947 \N \N f f +3020 2025-07-05 12:08:24.013531+00 2025-07-05 12:08:24.013539+00 f t 3948 \N \N f f +3021 2025-07-05 12:20:07.02885+00 2025-07-05 12:20:07.028865+00 f t 3949 \N \N f f +3022 2025-07-05 12:20:26.488791+00 2025-07-05 12:20:26.488801+00 f t 3950 \N \N f f +3023 2025-07-05 12:39:13.79556+00 2025-07-05 12:39:13.795567+00 f t 3951 \N \N f f +3024 2025-07-05 12:51:38.654304+00 2025-07-05 12:51:38.654311+00 f t 3952 \N \N f f +3025 2025-07-05 13:24:27.423425+00 2025-07-05 13:24:27.423432+00 f t 3953 \N \N f f +3026 2025-07-05 13:32:06.97341+00 2025-07-05 13:32:06.973419+00 f t 3954 \N \N f f +3027 2025-07-05 14:00:16.405244+00 2025-07-05 14:00:16.405255+00 f t 3955 \N \N f f +3028 2025-07-05 14:16:44.076116+00 2025-07-05 14:16:44.076124+00 f t 3956 \N \N f f +3029 2025-07-05 14:35:02.252618+00 2025-07-05 14:35:02.252631+00 f t 3957 \N \N f f +3030 2025-07-05 15:32:41.661345+00 2025-07-05 15:32:41.661351+00 f t 3958 \N \N f f +3031 2025-07-05 15:46:33.058678+00 2025-07-05 15:46:33.058684+00 f t 3959 \N \N f f +3032 2025-07-05 15:56:56.481882+00 2025-07-05 15:56:56.481888+00 f t 3960 \N \N f f +3033 2025-07-05 16:11:05.686031+00 2025-07-05 16:11:05.686039+00 f t 3961 \N \N f f +3034 2025-07-05 16:28:52.974455+00 2025-07-05 16:28:52.974462+00 f t 3962 \N \N f f +3035 2025-07-05 16:50:17.641011+00 2025-07-05 16:50:17.641021+00 f t 3963 \N \N f f +3036 2025-07-05 16:51:01.791656+00 2025-07-05 16:51:01.791664+00 f t 3964 \N \N f f +3037 2025-07-05 17:47:03.619991+00 2025-07-05 17:47:03.620001+00 f t 3965 \N \N f f +3038 2025-07-05 17:50:54.442562+00 2025-07-05 17:50:54.44257+00 f t 3966 \N \N f f +3039 2025-07-05 18:08:39.587348+00 2025-07-05 18:08:39.58736+00 f t 3967 \N \N f f +3040 2025-07-05 18:14:36.773477+00 2025-07-05 18:14:36.773487+00 f t 3968 \N \N f f +3041 2025-07-05 18:25:19.356008+00 2025-07-05 18:25:19.356018+00 f t 3969 \N \N f f +3042 2025-07-05 18:40:16.366639+00 2025-07-05 18:40:16.366647+00 f t 3970 \N \N f f +3043 2025-07-05 18:40:34.830386+00 2025-07-05 18:40:34.830393+00 f t 3971 \N \N f f +3044 2025-07-05 19:12:19.789081+00 2025-07-05 19:12:19.789088+00 f t 3972 \N \N f f +3045 2025-07-05 19:12:24.258465+00 2025-07-05 19:12:24.258474+00 f t 3973 \N \N f f +3046 2025-07-05 19:13:31.105106+00 2025-07-05 19:13:31.105116+00 f t 3974 \N \N f f +3047 2025-07-05 19:14:21.40109+00 2025-07-05 19:14:21.401098+00 f t 3975 \N \N f f +3048 2025-07-05 19:24:30.346815+00 2025-07-05 19:24:30.346823+00 f t 3976 \N \N f f +3049 2025-07-05 20:10:12.517338+00 2025-07-05 20:10:12.517346+00 f t 3977 \N \N f f +3050 2025-07-05 20:17:30.118932+00 2025-07-05 20:17:30.118942+00 f t 3978 \N \N f f +3051 2025-07-05 21:21:50.90503+00 2025-07-05 21:21:50.905037+00 f t 3979 \N \N f f +3052 2025-07-05 21:56:59.151478+00 2025-07-05 21:56:59.151486+00 f t 3982 \N \N f f +3053 2025-07-05 22:23:20.130039+00 2025-07-05 22:23:20.13005+00 f t 3983 \N \N f f +3054 2025-07-05 22:24:53.420328+00 2025-07-05 22:24:53.420338+00 f t 3984 \N \N f f +3055 2025-07-05 22:30:33.642738+00 2025-07-05 22:30:33.642747+00 f t 3985 \N \N f f +3056 2025-07-05 22:42:46.818487+00 2025-07-05 22:42:46.818495+00 f t 3986 \N \N f f +3057 2025-07-05 22:58:51.855979+00 2025-07-05 22:58:51.855985+00 f t 3987 \N \N f f +3058 2025-07-05 23:00:24.479489+00 2025-07-05 23:00:24.479499+00 f t 3988 \N \N f f +3059 2025-07-05 23:19:04.818874+00 2025-07-05 23:19:04.818886+00 f t 3989 \N \N f f +3060 2025-07-05 23:33:46.906679+00 2025-07-05 23:33:46.906688+00 f t 3990 \N \N f f +3061 2025-07-05 23:50:06.820253+00 2025-07-05 23:50:06.820262+00 f t 3991 \N \N f f +3062 2025-07-06 00:02:15.821897+00 2025-07-06 00:02:15.821905+00 f t 3992 \N \N f f +3063 2025-07-06 00:18:11.999667+00 2025-07-06 00:18:11.999677+00 f t 3993 \N \N f f +3064 2025-07-06 00:24:24.539+00 2025-07-06 00:24:24.539008+00 f t 3994 \N \N f f +3065 2025-07-06 00:24:36.138498+00 2025-07-06 00:24:36.13851+00 f t 3995 \N \N f f +3066 2025-07-06 01:39:53.29939+00 2025-07-06 01:39:53.2994+00 f t 3996 \N \N f f +3067 2025-07-06 01:47:15.382015+00 2025-07-06 01:47:15.382023+00 f t 3997 \N \N f f +3068 2025-07-06 03:30:21.477996+00 2025-07-06 03:30:21.478008+00 f t 3998 \N \N f f +3069 2025-07-06 03:44:47.433256+00 2025-07-06 03:44:47.433264+00 f t 3999 \N \N f f +3070 2025-07-06 03:58:37.486695+00 2025-07-06 03:58:37.486706+00 f t 4000 \N \N f f +3071 2025-07-06 04:02:45.168917+00 2025-07-06 04:02:45.168925+00 f t 4001 \N \N f f +3072 2025-07-06 04:08:54.443693+00 2025-07-06 04:08:54.443699+00 f t 4002 \N \N f f +3073 2025-07-06 04:47:19.493238+00 2025-07-06 04:47:19.493247+00 f t 4003 \N \N f f +3074 2025-07-06 05:28:36.636639+00 2025-07-06 05:28:36.636646+00 f t 4004 \N \N f f +3075 2025-07-06 05:58:01.709643+00 2025-07-06 05:58:01.709655+00 f t 4005 \N \N f f +3076 2025-07-06 08:09:18.43012+00 2025-07-06 08:09:18.430128+00 f t 4006 \N \N f f +3077 2025-07-06 08:56:33.32289+00 2025-07-06 08:56:33.322901+00 f t 4007 \N \N f f +3078 2025-07-06 09:05:53.561881+00 2025-07-06 09:05:53.561889+00 f t 4008 \N \N f f +3079 2025-07-06 09:27:12.035306+00 2025-07-06 09:27:12.035313+00 f t 4009 \N \N f f +3080 2025-07-06 09:37:24.528539+00 2025-07-06 09:37:24.528548+00 f t 4010 \N \N f f +3081 2025-07-06 09:46:13.845359+00 2025-07-06 09:46:13.845367+00 f t 4011 \N \N f f +3082 2025-07-06 11:19:53.175448+00 2025-07-06 11:19:53.175457+00 f t 4012 \N \N f f +3083 2025-07-06 11:39:18.206877+00 2025-07-06 11:39:18.206883+00 f t 4013 \N \N f f +3084 2025-07-06 12:14:55.309253+00 2025-07-06 12:14:55.309261+00 f t 4014 \N \N f f +3085 2025-07-06 12:34:09.294584+00 2025-07-06 12:34:09.294591+00 f t 4015 \N \N f f +3086 2025-07-06 12:42:43.339708+00 2025-07-06 12:42:43.339714+00 f t 4016 \N \N f f +3087 2025-07-06 12:48:22.580231+00 2025-07-06 12:48:22.580238+00 f t 4017 \N \N f f +3088 2025-07-06 12:48:46.457739+00 2025-07-06 12:48:46.457746+00 f t 4018 \N \N f f +3089 2025-07-06 13:28:15.688778+00 2025-07-06 13:28:15.688787+00 f t 4019 \N \N f f +3090 2025-07-06 13:30:10.575509+00 2025-07-06 13:30:10.575521+00 f t 4020 \N \N f f +3091 2025-07-06 13:39:22.785687+00 2025-07-06 13:39:22.785693+00 f t 4021 \N \N f f +3092 2025-07-06 13:59:25.616652+00 2025-07-06 13:59:25.616661+00 f t 4022 \N \N f f +3093 2025-07-06 14:11:32.994682+00 2025-07-06 14:11:32.994689+00 f t 4023 \N \N f f +3094 2025-07-06 14:22:57.923122+00 2025-07-06 14:22:57.923176+00 f t 4024 \N \N f f +3095 2025-07-06 14:24:08.275384+00 2025-07-06 14:24:08.275391+00 f t 4025 \N \N f f +3096 2025-07-06 14:25:19.794676+00 2025-07-06 14:25:19.794682+00 f t 4026 \N \N f f +3097 2025-07-06 14:28:32.94273+00 2025-07-06 14:28:32.942737+00 f t 4027 \N \N f f +3098 2025-07-06 14:31:11.592368+00 2025-07-06 14:31:11.592378+00 f t 4028 \N \N f f +3099 2025-07-06 14:38:38.447473+00 2025-07-06 14:38:38.447481+00 f t 4029 \N \N f f +3100 2025-07-06 15:03:10.17344+00 2025-07-06 15:03:10.173447+00 f t 4030 \N \N f f +3101 2025-07-06 15:08:01.853829+00 2025-07-06 15:08:01.85384+00 f t 4031 \N \N f f +3102 2025-07-06 15:09:01.653103+00 2025-07-06 15:09:01.653112+00 f t 4032 \N \N f f +3103 2025-07-06 15:09:31.314893+00 2025-07-06 15:09:31.3149+00 f t 4033 \N \N f f +3104 2025-07-06 15:17:49.641661+00 2025-07-06 15:17:49.641667+00 f t 4034 \N \N f f +3105 2025-07-06 15:45:18.288638+00 2025-07-06 15:38:23.858075+00 f t 4035 \N \N f f +3106 2025-07-06 15:46:40.738173+00 2025-07-06 15:46:40.738182+00 f t 4036 \N \N f f +3107 2025-07-06 15:55:41.268437+00 2025-07-06 15:55:41.268444+00 f t 4037 \N \N f f +3108 2025-07-06 15:56:49.739613+00 2025-07-06 15:56:49.73962+00 f t 4038 \N \N f f +3109 2025-07-06 17:27:48.517417+00 2025-07-06 17:27:48.517426+00 f t 4039 \N \N f f +3110 2025-07-06 17:33:18.838539+00 2025-07-06 17:33:18.838546+00 f t 4040 \N \N f f +3111 2025-07-06 17:40:14.293544+00 2025-07-06 17:40:14.293552+00 f t 4041 \N \N f f +3112 2025-07-06 17:45:11.726292+00 2025-07-06 17:45:11.7263+00 f t 4042 \N \N f f +3113 2025-07-06 17:51:45.631248+00 2025-07-06 17:51:45.631254+00 f t 4043 \N \N f f +3114 2025-07-06 18:32:07.595262+00 2025-07-06 18:32:07.59527+00 f t 4044 \N \N f f +3115 2025-07-06 18:36:42.808299+00 2025-07-06 18:36:42.808305+00 f t 4045 \N \N f f +3116 2025-07-06 18:40:46.850955+00 2025-07-06 18:40:46.850965+00 f t 4046 \N \N f f +3117 2025-07-06 18:58:59.168223+00 2025-07-06 18:58:59.16823+00 f t 4047 \N \N f f +3118 2025-07-06 19:06:17.527948+00 2025-07-06 19:06:17.527957+00 f t 4048 \N \N f f +3119 2025-07-06 19:23:28.004997+00 2025-07-06 19:23:28.005008+00 f t 4049 \N \N f f +3120 2025-07-06 19:28:18.28552+00 2025-07-06 19:28:18.285529+00 f t 4050 \N \N f f +3121 2025-07-06 19:58:09.740732+00 2025-07-06 19:58:09.740739+00 f t 4051 \N \N f f +3122 2025-07-06 20:04:24.118813+00 2025-07-06 20:04:24.118823+00 f t 4052 \N \N f f +3123 2025-07-06 20:18:11.923207+00 2025-07-06 20:18:11.923214+00 f t 4053 \N \N f f +3124 2025-07-06 20:22:13.475472+00 2025-07-06 20:22:13.475483+00 f t 4054 \N \N f f +3125 2025-07-06 20:43:14.736202+00 2025-07-06 20:43:14.736212+00 f t 4055 \N \N f f +3126 2025-07-06 20:43:36.582019+00 2025-07-06 20:43:36.582027+00 f t 4056 \N \N f f +3127 2025-07-06 20:45:33.474997+00 2025-07-06 20:45:33.475004+00 f t 4057 \N \N f f +3128 2025-07-06 20:46:48.859679+00 2025-07-06 20:46:48.859688+00 f t 4058 \N \N f f +3129 2025-07-06 20:49:54.550118+00 2025-07-06 20:49:54.550124+00 f t 4059 \N \N f f +3130 2025-07-06 21:36:09.708829+00 2025-07-06 21:36:09.708839+00 f t 4060 \N \N f f +3131 2025-07-06 21:53:02.427258+00 2025-07-06 21:53:02.427267+00 f t 4061 \N \N f f +3132 2025-07-06 22:06:42.623506+00 2025-07-06 22:06:42.623513+00 f t 4062 \N \N f f +3133 2025-07-06 22:28:20.967787+00 2025-07-06 22:28:20.967794+00 f t 4063 \N \N f f +3134 2025-07-06 22:29:46.022615+00 2025-07-06 22:29:46.022624+00 f t 4064 \N \N f f +3135 2025-07-06 22:32:43.559478+00 2025-07-06 22:32:43.559485+00 f t 4065 \N \N f f +3136 2025-07-06 23:06:34.626353+00 2025-07-06 23:06:34.62636+00 f t 4066 \N \N f f +3137 2025-07-07 00:23:13.049904+00 2025-07-07 00:23:13.049915+00 f t 4067 \N \N f f +3138 2025-07-07 00:32:39.684636+00 2025-07-07 00:32:39.684648+00 f t 4068 \N \N f f +3139 2025-07-07 00:45:25.269283+00 2025-07-07 00:45:25.269291+00 f t 4069 \N \N f f +3140 2025-07-07 00:55:00.939937+00 2025-07-07 00:55:00.939944+00 f t 4070 \N \N f f +3141 2025-07-07 01:01:56.564527+00 2025-07-07 01:01:56.564534+00 f t 4071 \N \N f f +3142 2025-07-07 01:06:27.858305+00 2025-07-07 01:06:27.858312+00 f t 4072 \N \N f f +3143 2025-07-07 01:07:43.093917+00 2025-07-07 01:07:43.093927+00 f t 4073 \N \N f f +3144 2025-07-07 02:13:05.317897+00 2025-07-07 02:13:05.317908+00 f t 4074 \N \N f f +3145 2025-07-07 02:13:32.283611+00 2025-07-07 02:13:32.28362+00 f t 4075 \N \N f f +3146 2025-07-07 02:14:22.856891+00 2025-07-07 02:14:22.856902+00 f t 4076 \N \N f f +3147 2025-07-07 03:00:40.286468+00 2025-07-07 03:00:40.286477+00 f t 4077 \N \N f f +3148 2025-07-07 03:09:32.345318+00 2025-07-07 03:09:32.345325+00 f t 4078 \N \N f f +3149 2025-07-07 03:23:56.338967+00 2025-07-07 03:23:56.338976+00 f t 4079 \N \N f f +3150 2025-07-07 03:26:02.670568+00 2025-07-07 03:26:02.67058+00 f t 4080 \N \N f f +3151 2025-07-07 03:30:31.592965+00 2025-07-07 03:30:31.592972+00 f t 4081 \N \N f f +3152 2025-07-07 03:30:50.624499+00 2025-07-07 03:30:50.624506+00 f t 4082 \N \N f f +3153 2025-07-07 04:06:08.165884+00 2025-07-07 04:06:08.165896+00 f t 4083 \N \N f f +3154 2025-07-07 04:38:17.625804+00 2025-07-07 04:38:17.625813+00 f t 4084 \N \N f f +3155 2025-07-07 06:07:59.669627+00 2025-07-07 06:07:59.669636+00 f t 4085 \N \N f f +3156 2025-07-07 07:18:56.959862+00 2025-07-07 07:18:56.959871+00 f t 4086 \N \N f f +3157 2025-07-07 07:51:58.236386+00 2025-07-07 07:51:58.236397+00 f t 4087 \N \N f f +3158 2025-07-07 09:39:25.514419+00 2025-07-07 09:39:25.514428+00 f t 4088 \N \N f f +3159 2025-07-07 11:11:04.370394+00 2025-07-07 11:11:04.370402+00 f t 4089 \N \N f f +3160 2025-07-07 11:12:50.811959+00 2025-07-07 11:12:50.811967+00 f t 4090 \N \N f f +3161 2025-07-07 12:46:45.264297+00 2025-07-07 12:46:45.264307+00 f t 4091 \N \N f f +3162 2025-07-07 12:59:02.874555+00 2025-07-07 12:59:02.874563+00 f t 4092 \N \N f f +3163 2025-07-07 13:12:51.642186+00 2025-07-07 13:12:51.642195+00 f t 4093 \N \N f f +3164 2025-07-07 13:13:21.124198+00 2025-07-07 13:13:21.124205+00 f t 4094 \N \N f f +3165 2025-07-07 13:16:04.454111+00 2025-07-07 13:16:04.454117+00 f t 4095 \N \N f f +3166 2025-07-07 13:19:40.718305+00 2025-07-07 13:19:40.718314+00 f t 4096 \N \N f f +3167 2025-07-07 13:49:06.956882+00 2025-07-07 13:49:06.95689+00 f t 4097 \N \N f f +3168 2025-07-07 14:17:38.472486+00 2025-07-07 14:17:38.472499+00 f t 4098 \N \N f f +3169 2025-07-07 14:33:10.078856+00 2025-07-07 14:33:10.078868+00 f t 4099 \N \N f f +3170 2025-07-07 14:41:44.56096+00 2025-07-07 14:41:44.560966+00 f t 4100 \N \N f f +3171 2025-07-07 14:45:36.746064+00 2025-07-07 14:45:36.74607+00 f t 4101 \N \N f f +3172 2025-07-07 15:06:01.586496+00 2025-07-07 15:06:01.586505+00 f t 4102 \N \N f f +3173 2025-07-07 15:08:11.524523+00 2025-07-07 15:08:11.524529+00 f t 4103 \N \N f f +3174 2025-07-07 15:14:47.684499+00 2025-07-07 15:14:47.684505+00 f t 4104 \N \N f f +3175 2025-07-07 15:17:01.281157+00 2025-07-07 15:17:01.281169+00 f t 4105 \N \N f f +3176 2025-07-07 15:21:15.626+00 2025-07-07 15:21:15.626007+00 f t 4106 \N \N f f +3177 2025-07-07 15:23:08.152485+00 2025-07-07 15:23:08.152497+00 f t 4107 \N \N f f +3178 2025-07-07 15:29:50.847038+00 2025-07-07 15:29:50.847045+00 f t 4108 \N \N f f +3179 2025-07-07 15:38:23.414706+00 2025-07-07 15:38:23.414719+00 f t 4109 \N \N f f +3180 2025-07-07 15:39:56.572897+00 2025-07-07 15:39:56.572909+00 f t 854 \N \N f f +3181 2025-07-07 16:34:38.898453+00 2025-07-07 16:34:38.89846+00 f t 4110 \N \N f f +3182 2025-07-07 16:39:13.87942+00 2025-07-07 16:39:13.879427+00 f t 4111 \N \N f f +3183 2025-07-07 17:06:45.967514+00 2025-07-07 17:06:45.967526+00 f t 4112 \N \N f f +3184 2025-07-07 17:53:24.034972+00 2025-07-07 17:53:24.03498+00 f t 4116 \N \N f f +3185 2025-07-07 18:10:03.371407+00 2025-07-07 18:10:03.371421+00 f t 4117 \N \N f f +3186 2025-07-07 18:20:02.378706+00 2025-07-07 18:12:33.86161+00 f t 4118 \N \N f f +3187 2025-07-07 18:26:15.545353+00 2025-07-07 18:26:15.545364+00 f t 4119 \N \N f f +3188 2025-07-07 18:37:40.47084+00 2025-07-07 18:37:40.470848+00 f t 4120 \N \N f f +3189 2025-07-07 18:39:45.378118+00 2025-07-07 18:39:45.378125+00 f t 4121 \N \N f f +3190 2025-07-07 19:15:08.416822+00 2025-07-07 19:15:08.416833+00 f t 4122 \N \N f f +3191 2025-07-07 19:22:55.650463+00 2025-07-07 19:22:55.650471+00 f t 4123 \N \N f f +3192 2025-07-07 19:51:42.203638+00 2025-07-07 19:51:42.203646+00 f t 4124 \N \N f f +3193 2025-07-07 19:52:22.98268+00 2025-07-07 19:52:22.982688+00 f t 4125 \N \N f f +3194 2025-07-07 20:02:34.089892+00 2025-07-07 20:02:34.0899+00 f t 4126 \N \N f f +3195 2025-07-07 20:11:18.550386+00 2025-07-07 20:11:18.550394+00 f t 4127 \N \N f f +3196 2025-07-07 20:54:42.279506+00 2025-07-07 20:54:42.279513+00 f t 4128 \N \N f f +3197 2025-07-07 21:12:29.037105+00 2025-07-07 21:12:29.037117+00 f t 4129 \N \N f f +3198 2025-07-07 21:17:18.895693+00 2025-07-07 21:17:18.895702+00 f t 4130 \N \N f f +3199 2025-07-07 21:23:49.903189+00 2025-07-07 21:23:49.903198+00 f t 4131 \N \N f f +3200 2025-07-07 21:26:05.371865+00 2025-07-07 21:26:05.371875+00 f t 4132 \N \N f f +3201 2025-07-07 21:26:59.59591+00 2025-07-07 21:26:59.595919+00 f t 4133 \N \N f f +3202 2025-07-07 21:38:24.501757+00 2025-07-07 21:38:24.50177+00 f t 4134 \N \N f f +3203 2025-07-07 21:38:29.325652+00 2025-07-07 21:38:29.325659+00 f t 4135 \N \N f f +3204 2025-07-07 21:49:59.917085+00 2025-07-07 21:49:59.917092+00 f t 4136 \N \N f f +3205 2025-07-07 21:55:45.523035+00 2025-07-07 21:55:45.523042+00 f t 4137 \N \N f f +3206 2025-07-07 22:00:33.579196+00 2025-07-07 22:00:33.579205+00 f t 4138 \N \N f f +3207 2025-07-07 22:21:05.113565+00 2025-07-07 22:21:05.113573+00 f t 4141 \N \N f f +3208 2025-07-07 22:27:40.4643+00 2025-07-07 22:27:40.464308+00 f t 4142 \N \N f f +3209 2025-07-07 22:59:22.601616+00 2025-07-07 22:59:22.601623+00 f t 4143 \N \N f f +3210 2025-07-07 23:01:09.069764+00 2025-07-07 23:01:09.069771+00 f t 4144 \N \N f f +3211 2025-07-07 23:06:55.758225+00 2025-07-07 23:06:55.758233+00 f t 4145 \N \N f f +3212 2025-07-07 23:34:12.911176+00 2025-07-07 23:34:12.911183+00 f t 4147 \N \N f f +3213 2025-07-07 23:55:31.491362+00 2025-07-07 23:55:31.491369+00 f t 4148 \N \N f f +3214 2025-07-08 00:20:36.917597+00 2025-07-08 00:20:36.917605+00 f t 4150 \N \N f f +3215 2025-07-08 00:26:12.890722+00 2025-07-08 00:26:12.890729+00 f t 4151 \N \N f f +3216 2025-07-08 01:20:37.70968+00 2025-07-08 01:20:37.709688+00 f t 4152 \N \N f f +3217 2025-07-08 01:25:06.151042+00 2025-07-08 01:25:06.151056+00 f t 4153 \N \N f f +3218 2025-07-08 01:26:45.956266+00 2025-07-08 01:26:45.956273+00 f t 4154 \N \N f f +3219 2025-07-08 01:30:53.399454+00 2025-07-08 01:30:53.399462+00 f t 4155 \N \N f f +3220 2025-07-08 01:32:49.323312+00 2025-07-08 01:32:49.32332+00 f t 4156 \N \N f f +3221 2025-07-08 01:55:02.160557+00 2025-07-08 01:55:02.160571+00 f t 4157 \N \N f f +3222 2025-07-08 01:58:15.000555+00 2025-07-08 01:58:15.000565+00 f t 4158 \N \N f f +3223 2025-07-08 02:04:06.804283+00 2025-07-08 02:04:06.804291+00 f t 4159 \N \N f f +3224 2025-07-08 02:24:20.080818+00 2025-07-08 02:24:20.080825+00 f t 4160 \N \N f f +3225 2025-07-08 02:30:20.12384+00 2025-07-08 02:30:20.12385+00 f t 4161 \N \N f f +3226 2025-07-08 08:02:49.078861+00 2025-07-08 08:02:49.078868+00 f t 4162 \N \N f f +3227 2025-07-08 10:46:57.725904+00 2025-07-08 10:46:57.725911+00 f t 4163 \N \N f f +3228 2025-07-08 10:47:16.118458+00 2025-07-08 10:47:16.118464+00 f t 4164 \N \N f f +3229 2025-07-08 11:00:09.777542+00 2025-07-08 11:00:09.777553+00 f t 4165 \N \N f f +3230 2025-07-08 11:02:48.741547+00 2025-07-08 11:02:48.741557+00 f t 4166 \N \N f f +3231 2025-07-08 11:39:55.152361+00 2025-07-08 11:39:55.152368+00 f t 4167 \N \N f f +3232 2025-07-08 12:01:53.36456+00 2025-07-08 12:01:53.364572+00 f t 4168 \N \N f f +3233 2025-07-08 12:37:04.93214+00 2025-07-08 12:37:04.932155+00 f t 4169 \N \N f f +3234 2025-07-08 13:00:39.974583+00 2025-07-08 13:00:39.974592+00 f t 4170 \N \N f f +3235 2025-07-08 13:28:48.327472+00 2025-07-08 13:28:48.327482+00 f t 4172 \N \N f f +3236 2025-07-08 13:31:57.895126+00 2025-07-08 13:31:57.895161+00 f t 4173 \N \N f f +3237 2025-07-08 13:34:32.102085+00 2025-07-08 13:34:32.102092+00 f t 4174 \N \N f f +3238 2025-07-08 13:37:45.008455+00 2025-07-08 13:37:45.008462+00 f t 4175 \N \N f f +3239 2025-07-08 13:45:17.363951+00 2025-07-08 13:45:17.363961+00 f t 4176 \N \N f f +3240 2025-07-08 14:05:27.972972+00 2025-07-08 14:05:27.972982+00 f t 4177 \N \N f f +3241 2025-07-08 14:06:36.105408+00 2025-07-08 14:06:36.105415+00 f t 4178 \N \N f f +3242 2025-07-08 14:07:30.133615+00 2025-07-08 14:07:30.133625+00 f t 4179 \N \N f f +3243 2025-07-08 14:57:14.164042+00 2025-07-08 14:57:14.164051+00 f t 4180 \N \N f f +3244 2025-07-08 15:07:52.569651+00 2025-07-08 15:07:52.56966+00 f t 4181 \N \N f f +3245 2025-07-08 15:12:13.918532+00 2025-07-08 15:12:13.918542+00 f t 4183 \N \N f f +3246 2025-07-08 15:22:12.490784+00 2025-07-08 15:22:12.490792+00 f t 4184 \N \N f f +3247 2025-07-08 15:33:42.360853+00 2025-07-08 15:33:42.36086+00 f t 4185 \N \N f f +3248 2025-07-08 15:35:35.3947+00 2025-07-08 15:35:35.394707+00 f t 4186 \N \N f f +3249 2025-07-08 15:40:00.333417+00 2025-07-08 15:40:00.333425+00 f t 4187 \N \N f f +3250 2025-07-08 16:03:12.298372+00 2025-07-08 16:03:12.298382+00 f t 4188 \N \N f f +3251 2025-07-08 16:27:41.778398+00 2025-07-08 16:27:41.778406+00 f t 4189 \N \N f f +3252 2025-07-08 17:09:12.586641+00 2025-07-08 17:09:12.586653+00 f t 4190 \N \N f f +3253 2025-07-08 17:51:02.206468+00 2025-07-08 17:51:02.206481+00 f t 4191 \N \N f f +3254 2025-07-08 17:57:28.789563+00 2025-07-08 17:57:28.789576+00 f t 4192 \N \N f f +3255 2025-07-08 17:58:31.115106+00 2025-07-08 17:58:31.115114+00 f t 4193 \N \N f f +3256 2025-07-08 18:02:26.523999+00 2025-07-08 18:02:26.524006+00 f t 4194 \N \N f f +3257 2025-07-08 18:41:50.043332+00 2025-07-08 18:41:50.043341+00 f t 4195 \N \N f f +3258 2025-07-08 19:06:25.624203+00 2025-07-08 19:06:25.624217+00 f t 4196 \N \N f f +3259 2025-07-08 20:18:37.888833+00 2025-07-08 20:18:37.888842+00 f t 4197 \N \N f f +3260 2025-07-08 20:22:54.94142+00 2025-07-08 20:22:54.941431+00 f t 4198 \N \N f f +3261 2025-07-08 20:23:04.124169+00 2025-07-08 20:23:04.12418+00 f t 4199 \N \N f f +3262 2025-07-08 20:37:00.724324+00 2025-07-08 20:37:00.724333+00 f t 4200 \N \N f f +3263 2025-07-08 20:43:25.816171+00 2025-07-08 20:43:25.816179+00 f t 4201 \N \N f f +3264 2025-07-08 20:48:51.491344+00 2025-07-08 20:48:51.491351+00 f t 4202 \N \N f f +3265 2025-07-08 21:36:20.373203+00 2025-07-08 21:36:20.373211+00 f t 4203 \N \N f f +3266 2025-07-08 21:36:37.086619+00 2025-07-08 21:36:37.086625+00 f t 4204 \N \N f f +3267 2025-07-08 21:54:08.757513+00 2025-07-08 21:54:08.757519+00 f t 4205 \N \N f f +3268 2025-07-08 22:11:39.74223+00 2025-07-08 22:11:39.742237+00 f t 4206 \N \N f f +3269 2025-07-08 22:19:17.754884+00 2025-07-08 22:19:17.754895+00 f t 4207 \N \N f f +3270 2025-07-08 22:21:46.587168+00 2025-07-08 22:21:46.587177+00 f t 4208 \N \N f f +3271 2025-07-08 22:24:04.250622+00 2025-07-08 22:24:04.25063+00 f t 4209 \N \N f f +3272 2025-07-08 22:25:59.066991+00 2025-07-08 22:25:59.066998+00 f t 4210 \N \N f f +3273 2025-07-08 22:26:18.071584+00 2025-07-08 22:26:18.071593+00 f t 4211 \N \N f f +3274 2025-07-08 22:28:37.123388+00 2025-07-08 22:28:37.123396+00 f t 4212 \N \N f f +3275 2025-07-08 22:29:02.935076+00 2025-07-08 22:29:02.935085+00 f t 4213 \N \N f f +3276 2025-07-08 22:41:59.334885+00 2025-07-08 22:41:59.334892+00 f t 4214 \N \N f f +3277 2025-07-08 23:07:11.332434+00 2025-07-08 23:07:11.33244+00 f t 4215 \N \N f f +3278 2025-07-08 23:16:02.148307+00 2025-07-08 23:16:02.148317+00 f t 4216 \N \N f f +3279 2025-07-08 23:25:50.823273+00 2025-07-08 23:25:50.823279+00 f t 4217 \N \N f f +3280 2025-07-08 23:27:13.64028+00 2025-07-08 23:27:13.640289+00 f t 4218 \N \N f f +3281 2025-07-08 23:28:01.909952+00 2025-07-08 23:28:01.90996+00 f t 4219 \N \N f f +3282 2025-07-08 23:51:31.094388+00 2025-07-08 23:51:31.094395+00 f t 4220 \N \N f f +3283 2025-07-09 00:05:14.559756+00 2025-07-09 00:05:14.559766+00 f t 4221 \N \N f f +3284 2025-07-09 00:05:43.360226+00 2025-07-09 00:05:43.360236+00 f t 4222 \N \N f f +3285 2025-07-09 00:37:05.498854+00 2025-07-09 00:37:05.498865+00 f t 4223 \N \N f f +3286 2025-07-09 02:11:41.801647+00 2025-07-09 02:11:41.801653+00 f t 4224 \N \N f f +3287 2025-07-09 03:28:54.098797+00 2025-07-09 03:28:54.098803+00 f t 4225 \N \N f f +3288 2025-07-09 04:27:33.637251+00 2025-07-09 04:27:33.637262+00 f t 4226 \N \N f f +3289 2025-07-09 05:27:12.649921+00 2025-07-09 05:27:12.649928+00 f t 4227 \N \N f f +3290 2025-07-09 06:00:08.040589+00 2025-07-09 06:00:08.040601+00 f t 4228 \N \N f f +3291 2025-07-09 11:04:44.438987+00 2025-07-09 11:04:44.438998+00 f t 4229 \N \N f f +3292 2025-07-09 11:57:04.790456+00 2025-07-09 11:57:04.790467+00 f t 4230 \N \N f f +3293 2025-07-09 12:13:50.205992+00 2025-07-09 12:13:50.206+00 f t 4231 \N \N f f +3294 2025-07-09 12:49:19.556418+00 2025-07-09 12:49:19.556425+00 f t 4232 \N \N f f +3295 2025-07-09 12:51:19.151327+00 2025-07-09 12:51:19.151336+00 f t 4233 \N \N f f +3296 2025-07-09 12:52:24.099808+00 2025-07-09 12:52:24.099815+00 f t 4234 \N \N f f +3297 2025-07-09 13:30:18.785375+00 2025-07-09 13:30:18.785382+00 f t 4235 \N \N f f +3298 2025-07-09 15:21:05.452939+00 2025-07-09 15:21:05.452949+00 f t 4236 \N \N f f +3299 2025-07-09 15:48:59.861567+00 2025-07-09 15:48:59.861577+00 f t 4237 \N \N f f +3300 2025-07-09 15:52:57.547691+00 2025-07-09 15:52:57.547698+00 f t 4238 \N \N f f +3301 2025-07-09 15:58:24.263004+00 2025-07-09 15:58:24.263011+00 f t 4239 \N \N f f +3302 2025-07-09 16:20:31.347529+00 2025-07-09 16:20:31.347541+00 f t 4240 \N \N f f +3303 2025-07-09 16:56:41.54974+00 2025-07-09 16:56:41.549749+00 f t 4241 \N \N f f +3304 2025-07-09 17:45:51.596887+00 2025-07-09 17:45:51.596894+00 f t 4242 \N \N f f +3305 2025-07-09 17:46:36.754393+00 2025-07-09 17:46:36.754401+00 f t 4243 \N \N f f +3306 2025-07-09 17:59:09.455429+00 2025-07-09 17:59:09.455437+00 f t 4244 \N \N f f +3307 2025-07-09 18:46:54.780975+00 2025-07-09 18:46:54.780984+00 f t 4245 \N \N f f +3308 2025-07-09 19:03:44.960521+00 2025-07-09 19:03:44.96053+00 f t 4246 \N \N f f +3309 2025-07-09 19:05:17.61366+00 2025-07-09 19:05:17.613667+00 f t 4247 \N \N f f +3310 2025-07-09 19:11:20.892476+00 2025-07-09 19:11:20.892482+00 f t 4248 \N \N f f +3311 2025-07-09 19:16:47.596401+00 2025-07-09 19:16:47.596408+00 f t 4249 \N \N f f +3312 2025-07-09 19:42:02.412657+00 2025-07-09 19:42:02.412665+00 f t 4250 \N \N f f +3313 2025-07-09 20:00:23.125607+00 2025-07-09 20:00:23.125618+00 f t 4251 \N \N f f +3314 2025-07-09 20:51:04.063641+00 2025-07-09 20:51:04.063651+00 f t 4252 \N \N f f +3315 2025-07-09 21:26:02.10636+00 2025-07-09 21:26:02.106369+00 f t 4253 \N \N f f +3316 2025-07-09 21:47:08.17938+00 2025-07-09 21:47:08.17939+00 f t 4256 \N \N f f +3317 2025-07-09 22:12:06.551472+00 2025-07-09 22:12:06.551482+00 f t 4259 \N \N f f +3318 2025-07-09 22:18:06.812843+00 2025-07-09 22:18:06.812853+00 f t 4260 \N \N f f +3319 2025-07-09 22:24:33.645102+00 2025-07-09 22:24:33.64511+00 f t 4261 \N \N f f +3320 2025-07-09 22:31:07.349208+00 2025-07-09 22:31:07.349218+00 f t 4262 \N \N f f +3321 2025-07-09 22:58:02.876329+00 2025-07-09 22:58:02.876338+00 f t 4263 \N \N f f +3322 2025-07-09 23:02:17.264112+00 2025-07-09 23:02:17.26412+00 f t 4264 \N \N f f +3323 2025-07-09 23:18:52.351598+00 2025-07-09 23:18:52.351608+00 f t 4265 \N \N f f +3324 2025-07-09 23:44:07.529564+00 2025-07-09 23:44:07.529575+00 f t 4266 \N \N f f +3325 2025-07-10 00:00:15.860451+00 2025-07-10 00:00:15.860464+00 f t 4267 \N \N f f +3326 2025-07-10 01:11:53.218834+00 2025-07-10 01:11:53.218844+00 f t 4258 \N \N f f +3327 2025-07-10 01:17:06.402539+00 2025-07-10 01:17:06.40255+00 f t 4268 \N \N f f +3328 2025-07-10 01:52:34.097439+00 2025-07-10 01:52:34.097448+00 f t 4269 \N \N f f +3329 2025-07-10 01:52:49.48609+00 2025-07-10 01:52:49.4861+00 f t 4270 \N \N f f +3330 2025-07-10 01:59:22.360871+00 2025-07-10 01:59:22.360879+00 f t 4271 \N \N f f +3331 2025-07-10 02:09:41.260285+00 2025-07-10 02:09:41.260292+00 f t 4272 \N \N f f +3332 2025-07-10 02:13:48.860875+00 2025-07-10 02:13:48.860882+00 f t 4273 \N \N f f +3333 2025-07-10 02:15:18.66324+00 2025-07-10 02:15:18.663247+00 f t 4274 \N \N f f +3334 2025-07-10 03:08:04.104556+00 2025-07-10 03:08:04.104569+00 f t 4275 \N \N f f +3335 2025-07-10 03:17:25.542159+00 2025-07-10 03:17:25.542166+00 f t 4276 \N \N f f +3336 2025-07-10 04:24:02.861177+00 2025-07-10 04:24:02.861188+00 f t 4277 \N \N f f +3337 2025-07-10 09:03:08.71684+00 2025-07-10 09:03:08.716848+00 f t 4278 \N \N f f +3338 2025-07-10 10:13:55.462625+00 2025-07-10 10:13:55.462638+00 f t 4279 \N \N f f +3339 2025-07-10 10:19:25.519663+00 2025-07-10 10:19:25.519674+00 f t 4280 \N \N f f +3340 2025-07-10 10:20:48.468422+00 2025-07-10 10:20:48.468431+00 f t 4281 \N \N f f +3341 2025-07-10 10:40:25.919226+00 2025-07-10 10:40:25.919237+00 f t 4282 \N \N f f +3342 2025-07-10 10:54:04.065188+00 2025-07-10 10:54:04.065199+00 f t 4283 \N \N f f +3343 2025-07-10 10:57:00.276789+00 2025-07-10 10:57:00.276799+00 f t 4284 \N \N f f +3344 2025-07-10 12:00:14.565306+00 2025-07-10 12:00:14.565319+00 f t 4285 \N \N f f +3345 2025-07-10 12:06:12.753314+00 2025-07-10 12:06:12.753328+00 f t 4286 \N \N f f +3346 2025-07-10 12:36:30.530739+00 2025-07-10 12:36:30.53075+00 f t 4287 \N \N f f +3347 2025-07-10 12:39:50.202551+00 2025-07-10 12:39:50.202561+00 f t 4288 \N \N f f +3348 2025-07-10 13:01:15.932883+00 2025-07-10 13:01:15.932889+00 f t 4289 \N \N f f +3349 2025-07-10 13:02:43.59934+00 2025-07-10 13:02:43.599348+00 f t 4290 \N \N f f +3350 2025-07-10 13:12:03.150485+00 2025-07-10 13:12:03.150497+00 f t 4291 \N \N f f +3351 2025-07-10 13:20:12.382359+00 2025-07-10 13:20:12.382365+00 f t 4292 \N \N f f +3352 2025-07-10 13:26:35.53507+00 2025-07-10 13:26:35.535077+00 f t 4293 \N \N f f +3353 2025-07-10 13:29:13.354189+00 2025-07-10 13:29:13.354196+00 f t 4294 \N \N f f +3354 2025-07-10 13:38:47.871212+00 2025-07-10 13:38:47.871219+00 f t 4296 \N \N f f +3355 2025-07-10 14:15:20.831072+00 2025-07-10 14:15:20.83108+00 f t 4298 \N \N f f +3356 2025-07-10 14:21:54.965723+00 2025-07-10 14:21:54.965729+00 f t 4299 \N \N f f +3357 2025-07-10 14:54:04.988133+00 2025-07-10 14:54:04.988145+00 f t 4301 \N \N f f +3358 2025-07-10 15:07:44.54576+00 2025-07-10 15:07:44.545768+00 f t 4302 \N \N f f +3359 2025-07-10 15:12:15.080838+00 2025-07-10 15:12:15.080848+00 f t 4303 \N \N f f +3360 2025-07-10 15:13:36.007287+00 2025-07-10 15:13:36.007294+00 f t 4304 \N \N f f +3361 2025-07-10 15:18:29.149849+00 2025-07-10 15:18:29.149855+00 f t 4305 \N \N f f +3362 2025-07-10 15:18:33.74647+00 2025-07-10 15:18:33.746476+00 f t 4306 \N \N f f +3363 2025-07-10 15:19:52.68043+00 2025-07-10 15:19:52.680437+00 f t 4307 \N \N f f +3364 2025-07-10 15:20:15.860349+00 2025-07-10 15:20:15.860357+00 f t 4308 \N \N f f +3365 2025-07-10 15:38:48.163332+00 2025-07-10 15:38:48.163338+00 f t 4309 \N \N f f +3366 2025-07-10 16:14:04.082165+00 2025-07-10 16:14:04.082178+00 f t 4310 \N \N f f +3367 2025-07-10 16:28:54.573411+00 2025-07-10 16:28:54.573418+00 f t 4311 \N \N f f +3368 2025-07-10 16:49:49.909776+00 2025-07-10 16:49:49.909783+00 f t 4312 \N \N f f +3369 2025-07-10 17:02:02.650783+00 2025-07-10 17:02:02.650795+00 f t 4313 \N \N f f +3370 2025-07-10 17:10:40.058205+00 2025-07-10 17:10:40.058215+00 f t 4314 \N \N f f +3371 2025-07-10 17:53:42.135325+00 2025-07-10 17:53:42.135333+00 f t 4315 \N \N f f +3372 2025-07-10 18:05:58.057731+00 2025-07-10 18:05:58.057738+00 f t 4316 \N \N f f +3373 2025-07-10 18:07:22.868153+00 2025-07-10 18:07:22.868162+00 f t 4317 \N \N f f +3374 2025-07-10 18:23:56.732965+00 2025-07-10 18:23:56.732973+00 f t 4318 \N \N f f +3375 2025-07-10 18:58:33.736747+00 2025-07-10 18:58:33.736754+00 f t 4319 \N \N f f +3376 2025-07-10 19:23:01.088048+00 2025-07-10 19:23:01.08806+00 f t 4320 \N \N f f +3378 2025-07-10 20:08:57.616516+00 2025-07-10 20:08:57.616525+00 f t 4321 \N \N f f +3379 2025-07-10 20:16:58.710491+00 2025-07-10 20:16:58.710497+00 f t 4322 \N \N f f +3380 2025-07-10 20:51:53.782101+00 2025-07-10 20:51:53.782111+00 f t 4323 \N \N f f +3381 2025-07-10 21:15:28.757258+00 2025-07-10 21:15:28.757267+00 f t 4326 \N \N f f +3382 2025-07-10 21:16:28.147341+00 2025-07-10 21:16:28.14735+00 f t 4327 \N \N f f +3377 2025-07-10 21:17:06.343969+00 2025-07-10 19:37:30.512449+00 f t 623 \N \N f f +3383 2025-07-10 21:23:42.403448+00 2025-07-10 21:23:42.403455+00 f t 4328 \N \N f f +3384 2025-07-10 21:35:26.593045+00 2025-07-10 21:35:26.593052+00 f t 4329 \N \N f f +3385 2025-07-10 21:51:32.112346+00 2025-07-10 21:51:32.112355+00 f t 4330 \N \N f f +3386 2025-07-10 22:09:46.06833+00 2025-07-10 22:02:52.520594+00 f t 4331 \N \N f f +3387 2025-07-10 22:23:58.662783+00 2025-07-10 22:23:58.662791+00 f t 4333 \N \N f f +3388 2025-07-10 22:56:57.377668+00 2025-07-10 22:56:57.377675+00 f t 4335 \N \N f f +3389 2025-07-10 23:41:54.005538+00 2025-07-10 23:41:54.005546+00 f t 4336 \N \N f f +3390 2025-07-11 01:04:57.195428+00 2025-07-11 01:04:57.195435+00 f t 4338 \N \N f f +3391 2025-07-11 01:20:27.508433+00 2025-07-11 01:20:27.508441+00 f t 4339 \N \N f f +3392 2025-07-11 01:30:16.135728+00 2025-07-11 01:30:16.135736+00 f t 4340 \N \N f f +3393 2025-07-11 01:43:42.201772+00 2025-07-11 01:43:42.20178+00 f t 4341 \N \N f f +3394 2025-07-11 02:09:40.811851+00 2025-07-11 02:09:40.81186+00 f t 4342 \N \N f f +3395 2025-07-11 02:53:17.431953+00 2025-07-11 02:53:17.431962+00 f t 4343 \N \N f f +3396 2025-07-11 03:04:20.833571+00 2025-07-11 03:04:20.833579+00 f t 4344 \N \N f f +3397 2025-07-11 04:07:20.562486+00 2025-07-11 04:07:20.562497+00 f t 4345 \N \N f f +3398 2025-07-11 04:16:05.687623+00 2025-07-11 04:16:05.687637+00 f t 4346 \N \N f f +3399 2025-07-11 04:30:32.246264+00 2025-07-11 04:30:32.246275+00 f t 4347 \N \N f f +3400 2025-07-11 07:46:35.55829+00 2025-07-11 07:46:35.558297+00 f t 4348 \N \N f f +3401 2025-07-11 07:48:18.455911+00 2025-07-11 07:48:18.455919+00 f t 4349 \N \N f f +3402 2025-07-11 07:52:52.223525+00 2025-07-11 07:52:52.223533+00 f t 4350 \N \N f f +3403 2025-07-11 09:42:01.242604+00 2025-07-11 09:42:01.242612+00 f t 4351 \N \N f f +3404 2025-07-11 10:38:21.983479+00 2025-07-11 10:38:21.98349+00 f t 4352 \N \N f f +3405 2025-07-11 10:52:52.836639+00 2025-07-11 10:52:52.836651+00 f t 4353 \N \N f f +3406 2025-07-11 11:30:50.551323+00 2025-07-11 11:30:50.551335+00 f t 4354 \N \N f f +3407 2025-07-11 11:31:03.131773+00 2025-07-11 11:31:03.131785+00 f t 4355 \N \N f f +3408 2025-07-11 11:44:06.462984+00 2025-07-11 11:44:06.462995+00 f t 4356 \N \N f f +3409 2025-07-11 11:59:21.39716+00 2025-07-11 11:59:21.397169+00 f t 4357 \N \N f f +3410 2025-07-11 12:14:43.615499+00 2025-07-11 12:14:43.615511+00 f t 4358 \N \N f f +3411 2025-07-11 12:34:48.718487+00 2025-07-11 12:34:48.718496+00 f t 4359 \N \N f f +3412 2025-07-11 13:43:23.351374+00 2025-07-11 13:43:23.351382+00 f t 4360 \N \N f f +3413 2025-07-11 14:09:49.338363+00 2025-07-11 14:09:49.33837+00 f t 4361 \N \N f f +3414 2025-07-11 14:38:36.507291+00 2025-07-11 14:38:36.507298+00 f t 4362 \N \N f f +3415 2025-07-11 14:39:47.172222+00 2025-07-11 14:39:47.172228+00 f t 4363 \N \N f f +3416 2025-07-11 14:40:17.460913+00 2025-07-11 14:40:17.460922+00 f t 4364 \N \N f f +3417 2025-07-11 14:40:36.896192+00 2025-07-11 14:40:36.896203+00 f t 4365 \N \N f f +3418 2025-07-11 15:40:30.381318+00 2025-07-11 15:40:30.381326+00 f t 4366 \N \N f f +3419 2025-07-11 15:41:26.308474+00 2025-07-11 15:41:26.30848+00 f t 4367 \N \N f f +3420 2025-07-11 16:10:38.673854+00 2025-07-11 16:10:38.673866+00 f t 4368 \N \N f f +3421 2025-07-11 16:19:35.588964+00 2025-07-11 16:19:35.58897+00 f t 4369 \N \N f f +3422 2025-07-11 17:33:02.726693+00 2025-07-11 17:33:02.726702+00 f t 4370 \N \N f f +3423 2025-07-11 18:10:59.232808+00 2025-07-11 18:10:59.232817+00 f t 4371 \N \N f f +3424 2025-07-11 18:12:38.668526+00 2025-07-11 18:12:38.668533+00 f t 4372 \N \N f f +3425 2025-07-11 18:16:08.622742+00 2025-07-11 18:16:08.62275+00 f t 4373 \N \N f f +3426 2025-07-11 18:25:17.493029+00 2025-07-11 18:25:17.493036+00 f t 4374 \N \N f f +3427 2025-07-11 18:26:31.713516+00 2025-07-11 18:26:31.713524+00 f t 4375 \N \N f f +3428 2025-07-11 18:27:28.482522+00 2025-07-11 18:27:28.48253+00 f t 4376 \N \N f f +3429 2025-07-11 19:18:14.528766+00 2025-07-11 19:18:14.528774+00 f t 4377 \N \N f f +3430 2025-07-11 19:55:30.786106+00 2025-07-11 19:55:30.786118+00 f t 4378 \N \N f f +3431 2025-07-11 20:47:22.213338+00 2025-07-11 20:47:22.213348+00 f t 4379 \N \N f f +3432 2025-07-11 21:43:16.626979+00 2025-07-11 21:43:16.626987+00 f t 4381 \N \N f f +3509 2025-07-13 11:37:13.056318+00 2025-07-13 11:37:13.056325+00 f t 4462 \N \N f f +3510 2025-07-13 12:08:08.49551+00 2025-07-13 12:08:08.495522+00 f t 4463 \N \N f f +3511 2025-07-13 12:14:39.295481+00 2025-07-13 12:14:39.295489+00 f t 4464 \N \N f f +3434 2025-07-11 22:14:39.087474+00 2025-07-11 22:14:39.087485+00 f t 4382 \N \N f f +3433 2025-07-11 22:18:19.650109+00 2025-07-11 22:05:42.621167+00 f t 301 \N \N f f +3435 2025-07-11 22:37:45.188858+00 2025-07-11 22:37:45.188865+00 f t 4383 \N \N f f +3436 2025-07-11 22:47:48.282595+00 2025-07-11 22:47:48.282602+00 f t 4384 \N \N f f +3437 2025-07-11 22:49:54.676147+00 2025-07-11 22:49:54.676156+00 f t 4385 \N \N f f +3438 2025-07-11 23:03:14.09785+00 2025-07-11 23:03:14.097858+00 f t 4386 \N \N f f +3439 2025-07-11 23:39:53.726999+00 2025-07-11 23:39:53.72701+00 f t 4387 \N \N f f +3440 2025-07-11 23:42:44.091832+00 2025-07-11 23:42:44.091839+00 f t 4388 \N \N f f +3441 2025-07-12 00:17:23.45523+00 2025-07-12 00:17:23.455237+00 f t 4391 \N \N f f +3442 2025-07-12 00:49:30.334742+00 2025-07-12 00:49:30.334752+00 f t 4392 \N \N f f +3443 2025-07-12 00:59:52.581953+00 2025-07-12 00:59:52.58196+00 f t 4393 \N \N f f +3444 2025-07-12 01:15:55.389255+00 2025-07-12 01:15:55.389262+00 f t 4394 \N \N f f +3445 2025-07-12 03:03:05.898341+00 2025-07-12 03:03:05.898354+00 f t 4395 \N \N f f +3446 2025-07-12 04:38:59.051166+00 2025-07-12 04:38:59.051176+00 f t 4396 \N \N f f +3447 2025-07-12 05:39:54.354449+00 2025-07-12 05:39:54.354456+00 f t 4397 \N \N f f +3448 2025-07-12 06:04:59.625065+00 2025-07-12 06:04:59.625075+00 f t 4398 \N \N f f +3449 2025-07-12 07:22:33.703294+00 2025-07-12 07:22:33.703302+00 f t 4399 \N \N f f +3450 2025-07-12 07:26:45.813229+00 2025-07-12 07:26:45.813242+00 f t 4400 \N \N f f +3451 2025-07-12 07:28:59.504988+00 2025-07-12 07:28:59.504995+00 f t 4401 \N \N f f +3452 2025-07-12 07:31:57.798055+00 2025-07-12 07:31:57.798063+00 f t 4402 \N \N f f +3453 2025-07-12 09:06:59.753682+00 2025-07-12 09:06:59.753695+00 f t 4403 \N \N f f +3454 2025-07-12 09:12:39.904931+00 2025-07-12 09:12:39.904941+00 f t 4404 \N \N f f +3455 2025-07-12 10:29:20.275528+00 2025-07-12 10:29:20.275538+00 f t 4405 \N \N f f +3456 2025-07-12 10:30:05.510855+00 2025-07-12 10:30:05.510867+00 f t 4406 \N \N f f +3457 2025-07-12 10:58:16.771125+00 2025-07-12 10:58:16.77116+00 f t 4407 \N \N f f +3458 2025-07-12 11:20:18.242377+00 2025-07-12 11:20:18.242385+00 f t 4408 \N \N f f +3459 2025-07-12 11:37:52.741649+00 2025-07-12 11:37:52.741659+00 f t 4409 \N \N f f +3460 2025-07-12 12:05:47.920168+00 2025-07-12 12:05:47.920175+00 f t 4410 \N \N f f +3461 2025-07-12 12:07:07.007941+00 2025-07-12 12:07:07.007952+00 f t 4411 \N \N f f +3462 2025-07-12 12:35:35.351247+00 2025-07-12 12:35:35.351259+00 f t 4412 \N \N f f +3463 2025-07-12 13:57:12.210725+00 2025-07-12 13:57:12.210734+00 f t 4413 \N \N f f +3464 2025-07-12 14:15:58.011989+00 2025-07-12 14:15:58.011996+00 f t 4265 \N \N f f +3465 2025-07-12 14:48:16.372846+00 2025-07-12 14:48:16.372858+00 f t 4414 \N \N f f +3466 2025-07-12 14:49:14.153484+00 2025-07-12 14:49:14.153492+00 f t 4415 \N \N f f +3467 2025-07-12 14:50:31.573393+00 2025-07-12 14:50:31.573404+00 f t 4416 \N \N f f +3468 2025-07-12 16:30:37.003947+00 2025-07-12 16:30:37.00396+00 f t 4417 \N \N f f +3469 2025-07-12 16:56:15.440975+00 2025-07-12 16:56:15.440986+00 f t 4419 \N \N f f +3470 2025-07-12 17:42:18.516874+00 2025-07-12 17:42:18.516881+00 f t 4420 \N \N f f +3471 2025-07-12 17:44:13.420512+00 2025-07-12 17:44:13.420519+00 f t 4421 \N \N f f +3472 2025-07-12 17:52:14.178045+00 2025-07-12 17:52:14.178055+00 f t 4422 \N \N f f +3473 2025-07-12 17:55:21.333472+00 2025-07-12 17:55:21.333483+00 f t 4423 \N \N f f +3474 2025-07-12 17:56:08.513968+00 2025-07-12 17:56:08.513978+00 f t 4424 \N \N f f +3475 2025-07-12 18:01:11.847+00 2025-07-12 18:01:11.847008+00 f t 4425 \N \N f f +3476 2025-07-12 18:47:48.051487+00 2025-07-12 18:47:48.051496+00 f t 4426 \N \N f f +3477 2025-07-12 18:52:53.412438+00 2025-07-12 18:52:53.412446+00 f t 4427 \N \N f f +3478 2025-07-12 19:08:49.988551+00 2025-07-12 19:08:49.988559+00 f t 4428 \N \N f f +3479 2025-07-12 19:29:09.981942+00 2025-07-12 19:29:09.98195+00 f t 4429 \N \N f f +3480 2025-07-12 20:01:40.881693+00 2025-07-12 20:01:40.8817+00 f t 4430 \N \N f f +3481 2025-07-12 20:02:53.023968+00 2025-07-12 20:02:53.023979+00 f t 4431 \N \N f f +3482 2025-07-12 20:24:29.233758+00 2025-07-12 20:24:29.233773+00 f t 4432 \N \N f f +3483 2025-07-12 21:02:28.855614+00 2025-07-12 21:02:28.855626+00 f t 4436 \N \N f f +3484 2025-07-12 21:10:28.992394+00 2025-07-12 21:10:28.992405+00 f t 4437 \N \N f f +3485 2025-07-12 21:19:32.668413+00 2025-07-12 21:19:32.668423+00 f t 4438 \N \N f f +3486 2025-07-12 21:21:49.049715+00 2025-07-12 21:21:49.049724+00 f t 4439 \N \N f f +3487 2025-07-12 22:52:11.699279+00 2025-07-12 22:52:11.699286+00 f t 4440 \N \N f f +3488 2025-07-12 23:23:47.449973+00 2025-07-12 23:23:47.44998+00 f t 4441 \N \N f f +3489 2025-07-12 23:56:36.964162+00 2025-07-12 23:56:36.96417+00 f t 4442 \N \N f f +3490 2025-07-12 23:59:38.736333+00 2025-07-12 23:59:38.73634+00 f t 4443 \N \N f f +3491 2025-07-13 00:13:29.393715+00 2025-07-13 00:13:29.393723+00 f t 4444 \N \N f f +3492 2025-07-13 00:13:38.614405+00 2025-07-13 00:13:38.614415+00 f t 4445 \N \N f f +3493 2025-07-13 00:14:55.774919+00 2025-07-13 00:14:55.774927+00 f t 4446 \N \N f f +3494 2025-07-13 00:22:06.800851+00 2025-07-13 00:22:06.800861+00 f t 4447 \N \N f f +3495 2025-07-13 00:23:54.199837+00 2025-07-13 00:23:54.199845+00 f t 4448 \N \N f f +3496 2025-07-13 00:24:26.665823+00 2025-07-13 00:24:26.665831+00 f t 4449 \N \N f f +3497 2025-07-13 00:35:27.08513+00 2025-07-13 00:35:27.085141+00 f t 4450 \N \N f f +3498 2025-07-13 00:55:26.471213+00 2025-07-13 00:55:26.471223+00 f t 4451 \N \N f f +3499 2025-07-13 01:14:44.465253+00 2025-07-13 01:14:44.465264+00 f t 4452 \N \N f f +3500 2025-07-13 02:02:07.711804+00 2025-07-13 02:02:07.711817+00 f t 4453 \N \N f f +3501 2025-07-13 02:04:19.905295+00 2025-07-13 02:04:19.905306+00 f t 4454 \N \N f f +3502 2025-07-13 02:05:12.439279+00 2025-07-13 02:05:12.439286+00 f t 4455 \N \N f f +3503 2025-07-13 02:20:30.230498+00 2025-07-13 02:20:30.230506+00 f t 4456 \N \N f f +3504 2025-07-13 03:59:19.367378+00 2025-07-13 03:59:19.367385+00 f t 4457 \N \N f f +3505 2025-07-13 04:01:29.933718+00 2025-07-13 04:01:29.933729+00 f t 4458 \N \N f f +3506 2025-07-13 06:32:02.995634+00 2025-07-13 06:32:02.995648+00 f t 4459 \N \N f f +3507 2025-07-13 09:23:11.415742+00 2025-07-13 09:23:11.415751+00 f t 4460 \N \N f f +3508 2025-07-13 09:36:41.65074+00 2025-07-13 09:31:54.067509+00 f t 4461 \N \N f f +3512 2025-07-13 12:47:11.018269+00 2025-07-13 12:47:11.018277+00 f t 4465 \N \N f f +3513 2025-07-13 12:55:20.663517+00 2025-07-13 12:55:20.663524+00 f t 4466 \N \N f f +3514 2025-07-13 13:26:47.382084+00 2025-07-13 13:26:47.382092+00 f t 4467 \N \N f f +3515 2025-07-13 13:32:11.225608+00 2025-07-13 13:32:11.225617+00 f t 4468 \N \N f f +3516 2025-07-13 13:48:13.372333+00 2025-07-13 13:48:13.37234+00 f t 4469 \N \N f f +3517 2025-07-13 13:51:38.721082+00 2025-07-13 13:51:38.721089+00 f t 4470 \N \N f f +3518 2025-07-13 14:39:16.484287+00 2025-07-13 14:39:16.484295+00 f t 4472 \N \N f f +3519 2025-07-13 14:46:37.015194+00 2025-07-13 14:46:37.015204+00 f t 4473 \N \N f f +3520 2025-07-13 14:52:51.119565+00 2025-07-13 14:52:51.119577+00 f t 4474 \N \N f f +3521 2025-07-13 14:54:50.894685+00 2025-07-13 14:54:50.894692+00 f t 4475 \N \N f f +3522 2025-07-13 15:51:29.519011+00 2025-07-13 15:51:29.519019+00 f t 4476 \N \N f f +3523 2025-07-13 16:28:01.327914+00 2025-07-13 16:28:01.327921+00 f t 4477 \N \N f f +3524 2025-07-13 17:11:17.409621+00 2025-07-13 17:11:17.409632+00 f t 4478 \N \N f f +3525 2025-07-13 17:25:21.675153+00 2025-07-13 17:25:21.675161+00 f t 4479 \N \N f f +3526 2025-07-13 17:26:47.639891+00 2025-07-13 17:26:47.639898+00 f t 4480 \N \N f f +3527 2025-07-13 17:32:49.681428+00 2025-07-13 17:32:49.681437+00 f t 4481 \N \N f f +3528 2025-07-13 17:38:13.987062+00 2025-07-13 17:38:13.98707+00 f t 4482 \N \N f f +3529 2025-07-13 18:19:35.545828+00 2025-07-13 18:19:35.545835+00 f t 4483 \N \N f f +3530 2025-07-13 18:55:18.542705+00 2025-07-13 18:55:18.542712+00 f t 4484 \N \N f f +3531 2025-07-13 20:30:10.477844+00 2025-07-13 20:30:10.477856+00 f t 4486 \N \N f f +3532 2025-07-13 20:31:44.423676+00 2025-07-13 20:31:44.423684+00 f t 4487 \N \N f f +3533 2025-07-13 20:47:05.08383+00 2025-07-13 20:47:05.083838+00 f t 4488 \N \N f f +3534 2025-07-13 20:56:16.190642+00 2025-07-13 20:56:16.190649+00 f t 4390 \N \N f f +3535 2025-07-13 21:24:41.297552+00 2025-07-13 21:24:41.29756+00 f t 4489 \N \N f f +3536 2025-07-13 21:27:10.73027+00 2025-07-13 21:27:10.730277+00 f t 4490 \N \N f f +3537 2025-07-13 21:35:09.031686+00 2025-07-13 21:35:09.031694+00 f t 4491 \N \N f f +3538 2025-07-13 21:39:41.569569+00 2025-07-13 21:39:41.569577+00 f t 4492 \N \N f f +3539 2025-07-13 21:57:23.15441+00 2025-07-13 21:57:23.154416+00 f t 4493 \N \N f f +3540 2025-07-13 22:01:29.014999+00 2025-07-13 22:01:29.015006+00 f t 4494 \N \N f f +3541 2025-07-13 22:28:19.607533+00 2025-07-13 22:28:19.60754+00 f t 4495 \N \N f f +3542 2025-07-13 22:41:43.151448+00 2025-07-13 22:41:43.151454+00 f t 4496 \N \N f f +3543 2025-07-13 22:50:58.908812+00 2025-07-13 22:50:58.908823+00 f t 4497 \N \N f f +3544 2025-07-13 23:00:32.296398+00 2025-07-13 23:00:32.296411+00 f t 4498 \N \N f f +3545 2025-07-13 23:01:15.719224+00 2025-07-13 23:01:15.719235+00 f t 4499 \N \N f f +3546 2025-07-13 23:07:27.329968+00 2025-07-13 23:07:27.329978+00 f t 4500 \N \N f f +3547 2025-07-13 23:17:41.71867+00 2025-07-13 23:17:41.718678+00 f t 4501 \N \N f f +3548 2025-07-13 23:20:21.422973+00 2025-07-13 23:20:21.422981+00 f t 4502 \N \N f f +3549 2025-07-14 00:20:05.787033+00 2025-07-14 00:20:05.787047+00 f t 4503 \N \N f f +3550 2025-07-14 00:26:38.235807+00 2025-07-14 00:26:38.235815+00 f t 4504 \N \N f f +3551 2025-07-14 00:47:24.5+00 2025-07-14 00:47:24.500007+00 f t 4505 \N \N f f +3552 2025-07-14 01:15:32.118714+00 2025-07-14 01:15:32.118727+00 f t 4506 \N \N f f +3553 2025-07-14 01:17:49.360405+00 2025-07-14 01:17:49.360415+00 f t 4507 \N \N f f +3554 2025-07-14 01:24:59.8381+00 2025-07-14 01:24:59.838109+00 f t 4508 \N \N f f +3555 2025-07-14 01:31:40.65936+00 2025-07-14 01:31:40.659368+00 f t 4509 \N \N f f +3556 2025-07-14 01:49:36.140578+00 2025-07-14 01:49:36.140585+00 f t 4510 \N \N f f +3557 2025-07-14 02:04:47.20465+00 2025-07-14 02:04:47.204657+00 f t 4511 \N \N f f +3558 2025-07-14 02:25:51.804414+00 2025-07-14 02:25:51.804421+00 f t 4512 \N \N f f +3559 2025-07-14 02:28:57.184201+00 2025-07-14 02:28:57.184208+00 f t 4513 \N \N f f +3560 2025-07-14 03:21:43.455028+00 2025-07-14 03:21:43.455035+00 f t 4514 \N \N f f +3561 2025-07-14 03:26:28.265032+00 2025-07-14 03:26:28.26504+00 f t 4515 \N \N f f +3562 2025-07-14 04:00:36.30574+00 2025-07-14 04:00:36.30575+00 f t 4516 \N \N f f +3563 2025-07-14 04:56:38.493307+00 2025-07-14 04:56:38.493316+00 f t 4517 \N \N f f +3564 2025-07-14 07:09:18.967687+00 2025-07-14 07:09:18.967701+00 f t 4518 \N \N f f +3565 2025-07-14 08:35:06.937489+00 2025-07-14 08:35:06.937499+00 f t 4519 \N \N f f +3566 2025-07-14 08:58:08.093333+00 2025-07-14 08:58:08.093343+00 f t 4520 \N \N f f +3567 2025-07-14 11:40:32.171627+00 2025-07-14 11:40:32.171634+00 f t 4521 \N \N f f +3568 2025-07-14 12:11:06.035042+00 2025-07-14 12:11:06.03505+00 f t 4522 \N \N f f +3569 2025-07-14 12:44:54.393987+00 2025-07-14 12:44:54.393994+00 f t 4523 \N \N f f +3570 2025-07-14 13:10:32.201258+00 2025-07-14 13:10:32.201267+00 f t 4524 \N \N f f +3571 2025-07-14 13:31:44.406234+00 2025-07-14 13:31:44.406248+00 f t 4525 \N \N f f +3572 2025-07-14 13:33:03.234887+00 2025-07-14 13:33:03.2349+00 f t 4526 \N \N f f +3573 2025-07-14 13:46:50.811863+00 2025-07-14 13:46:50.81187+00 f t 4527 \N \N f f +3574 2025-07-14 14:02:37.999801+00 2025-07-14 14:02:37.999809+00 f t 4528 \N \N f f +3575 2025-07-14 14:19:05.927586+00 2025-07-14 14:19:05.927598+00 f t 4529 \N \N f f +3576 2025-07-14 14:40:29.650315+00 2025-07-14 14:40:29.650322+00 f t 4530 \N \N f f +3577 2025-07-14 15:13:23.012547+00 2025-07-14 15:13:23.012558+00 f t 4531 \N \N f f +3578 2025-07-14 15:24:10.966368+00 2025-07-14 15:24:10.966379+00 f t 4532 \N \N f f +3579 2025-07-14 15:25:28.408021+00 2025-07-14 15:25:28.408031+00 f t 4533 \N \N f f +3580 2025-07-14 15:29:05.056055+00 2025-07-14 15:29:05.056063+00 f t 4534 \N \N f f +3581 2025-07-14 15:50:17.450443+00 2025-07-14 15:50:17.450451+00 f t 4535 \N \N f f +3582 2025-07-14 16:02:46.809094+00 2025-07-14 16:02:46.809104+00 f t 4536 \N \N f f +3583 2025-07-14 16:08:18.583691+00 2025-07-14 16:08:18.583698+00 f t 4537 \N \N f f +3584 2025-07-14 17:08:12.000824+00 2025-07-14 17:05:23.19626+00 f t 4538 \N \N f f +3585 2025-07-14 17:12:49.651915+00 2025-07-14 17:12:49.651926+00 f t 4539 \N \N f f +3586 2025-07-14 17:31:21.552502+00 2025-07-14 17:31:21.55251+00 f t 4540 \N \N f f +3587 2025-07-14 17:37:29.946446+00 2025-07-14 17:37:29.946454+00 f t 4541 \N \N f f +3588 2025-07-14 17:39:31.926149+00 2025-07-14 17:39:31.926158+00 f t 4542 \N \N f f +3589 2025-07-14 17:39:42.357451+00 2025-07-14 17:39:42.357458+00 f t 4543 \N \N f f +3590 2025-07-14 17:40:19.041281+00 2025-07-14 17:40:19.041292+00 f t 4544 \N \N f f +3591 2025-07-14 17:49:47.802807+00 2025-07-14 17:49:47.802814+00 f t 4545 \N \N f f +3592 2025-07-14 18:21:14.484535+00 2025-07-14 18:21:14.484543+00 f t 4546 \N \N f f +3593 2025-07-14 18:24:44.40901+00 2025-07-14 18:24:44.409018+00 f t 4547 \N \N f f +3594 2025-07-14 18:29:07.118423+00 2025-07-14 18:29:07.118435+00 f t 4548 \N \N f f +3595 2025-07-14 18:52:08.72963+00 2025-07-14 18:52:08.729639+00 f t 4551 \N \N f f +3596 2025-07-14 19:11:45.103732+00 2025-07-14 19:11:45.103741+00 f t 4552 \N \N f f +3597 2025-07-14 19:24:11.668822+00 2025-07-14 19:24:11.66883+00 f t 4553 \N \N f f +3598 2025-07-14 20:24:21.602632+00 2025-07-14 20:24:21.602642+00 f t 4554 \N \N f f +3599 2025-07-14 20:39:35.235017+00 2025-07-14 20:39:35.235025+00 f t 4556 \N \N f f +3600 2025-07-14 20:45:04.40846+00 2025-07-14 20:45:04.408476+00 f t 4557 \N \N f f +3601 2025-07-14 20:54:50.948493+00 2025-07-14 20:54:50.9485+00 f t 4559 \N \N f f +3602 2025-07-14 20:57:14.150158+00 2025-07-14 20:57:14.150169+00 f t 4560 \N \N f f +3603 2025-07-14 21:31:51.123927+00 2025-07-14 21:31:51.123934+00 f t 4561 \N \N f f +3604 2025-07-14 21:41:23.990737+00 2025-07-14 21:41:23.990745+00 f t 4562 \N \N f f +3605 2025-07-14 21:51:59.617391+00 2025-07-14 21:51:59.617401+00 f t 4563 \N \N f f +3606 2025-07-14 22:23:32.471474+00 2025-07-14 22:23:32.471481+00 f t 4564 \N \N f f +3607 2025-07-14 22:47:53.423967+00 2025-07-14 22:47:53.423974+00 f t 4565 \N \N f f +3608 2025-07-14 23:18:11.082416+00 2025-07-14 23:18:11.082424+00 f t 4566 \N \N f f +3609 2025-07-14 23:20:23.904262+00 2025-07-14 23:20:23.904274+00 f t 4567 \N \N f f +3610 2025-07-14 23:25:48.93334+00 2025-07-14 23:25:48.933349+00 f t 4568 \N \N f f +3611 2025-07-14 23:31:02.774058+00 2025-07-14 23:31:02.774068+00 f t 4569 \N \N f f +3612 2025-07-15 00:23:22.07624+00 2025-07-15 00:23:22.07625+00 f t 4570 \N \N f f +3613 2025-07-15 00:32:00.637699+00 2025-07-15 00:32:00.637705+00 f t 4571 \N \N f f +3614 2025-07-15 00:38:33.659277+00 2025-07-15 00:38:33.659284+00 f t 4572 \N \N f f +3615 2025-07-15 01:11:50.227041+00 2025-07-15 01:11:50.227051+00 f t 4573 \N \N f f +3616 2025-07-15 01:16:15.809557+00 2025-07-15 01:16:15.809569+00 f t 4574 \N \N f f +3617 2025-07-15 01:35:11.035654+00 2025-07-15 01:35:11.035667+00 f t 4575 \N \N f f +3618 2025-07-15 01:46:50.502805+00 2025-07-15 01:46:50.502813+00 f t 4576 \N \N f f +3619 2025-07-15 02:00:40.319309+00 2025-07-15 02:00:40.319318+00 f t 4577 \N \N f f +3620 2025-07-15 02:29:05.760962+00 2025-07-15 02:29:05.76097+00 f t 4578 \N \N f f +3621 2025-07-15 02:31:48.852952+00 2025-07-15 02:31:48.85296+00 f t 4579 \N \N f f +3622 2025-07-15 02:40:46.700516+00 2025-07-15 02:40:46.700527+00 f t 4580 \N \N f f +3623 2025-07-15 07:02:30.389947+00 2025-07-15 07:02:30.389956+00 f t 4581 \N \N f f +3624 2025-07-15 07:06:07.268822+00 2025-07-15 07:06:07.268836+00 f t 4582 \N \N f f +3625 2025-07-15 07:08:58.470931+00 2025-07-15 07:08:58.470944+00 f t 4583 \N \N f f +3626 2025-07-15 09:36:19.095684+00 2025-07-15 09:36:19.095694+00 f t 4584 \N \N f f +3627 2025-07-15 10:59:35.395384+00 2025-07-15 10:59:35.395392+00 f t 4585 \N \N f f +3628 2025-07-15 11:11:40.650772+00 2025-07-15 11:11:40.650784+00 f t 4586 \N \N f f +3629 2025-07-15 11:26:05.531969+00 2025-07-15 11:26:05.531981+00 f t 4587 \N \N f f +3630 2025-07-15 11:56:55.965764+00 2025-07-15 11:56:55.965789+00 f t 4588 \N \N f f +3631 2025-07-15 12:31:13.474948+00 2025-07-15 12:31:13.474956+00 f t 4589 \N \N f f +3632 2025-07-15 12:39:23.062596+00 2025-07-15 12:39:23.06261+00 f t 4590 \N \N f f +3633 2025-07-15 12:42:32.219434+00 2025-07-15 12:42:32.219442+00 f t 4591 \N \N f f +3634 2025-07-15 12:47:56.98538+00 2025-07-15 12:47:56.985387+00 f t 4592 \N \N f f +3635 2025-07-15 12:54:50.474943+00 2025-07-15 12:54:50.474953+00 f t 4593 \N \N f f +3636 2025-07-15 13:18:44.029788+00 2025-07-15 13:18:44.029796+00 f t 4594 \N \N f f +3637 2025-07-15 13:27:24.590567+00 2025-07-15 13:27:24.590577+00 f t 4595 \N \N f f +3638 2025-07-15 13:47:00.434295+00 2025-07-15 13:47:00.434306+00 f t 4596 \N \N f f +3639 2025-07-15 13:50:08.358965+00 2025-07-15 13:50:08.358979+00 f t 4597 \N \N f f +3640 2025-07-15 13:55:24.528847+00 2025-07-15 13:55:24.528854+00 f t 4598 \N \N f f +3641 2025-07-15 13:59:59.34969+00 2025-07-15 13:59:59.349698+00 f t 4599 \N \N f f +3642 2025-07-15 14:01:08.969014+00 2025-07-15 14:01:08.969023+00 f t 4600 \N \N f f +3643 2025-07-15 14:08:28.691626+00 2025-07-15 14:08:28.691633+00 f t 4601 \N \N f f +3644 2025-07-15 14:10:32.826044+00 2025-07-15 14:10:32.826058+00 f t 4602 \N \N f f +3645 2025-07-15 14:11:58.467977+00 2025-07-15 14:11:58.467984+00 f t 4603 \N \N f f +3646 2025-07-15 14:16:29.236731+00 2025-07-15 14:16:29.236742+00 f t 4604 \N \N f f +3647 2025-07-15 14:21:00.293993+00 2025-07-15 14:21:00.294005+00 f t 4605 \N \N f f +3648 2025-07-15 14:33:49.376181+00 2025-07-15 14:33:49.376189+00 f t 4606 \N \N f f +3649 2025-07-15 14:40:57.215722+00 2025-07-15 14:40:57.215734+00 f t 4607 \N \N f f +3650 2025-07-15 15:09:23.165088+00 2025-07-15 15:09:23.165095+00 f t 4608 \N \N f f +3651 2025-07-15 15:18:31.929036+00 2025-07-15 15:18:31.929045+00 f t 4609 \N \N f f +3652 2025-07-15 15:23:04.262466+00 2025-07-15 15:23:04.262475+00 f t 4610 \N \N f f +3653 2025-07-15 15:23:39.495278+00 2025-07-15 15:23:39.495286+00 f t 4611 \N \N f f +3654 2025-07-15 15:23:55.213122+00 2025-07-15 15:23:55.213132+00 f t 4612 \N \N f f +3655 2025-07-15 15:29:57.971458+00 2025-07-15 15:29:57.971468+00 f t 4613 \N \N f f +3656 2025-07-15 15:43:15.511394+00 2025-07-15 15:43:15.511404+00 f t 4614 \N \N f f +3657 2025-07-15 15:47:00.027209+00 2025-07-15 15:47:00.027218+00 f t 4615 \N \N f f +3658 2025-07-15 15:49:00.064992+00 2025-07-15 15:49:00.065001+00 f t 4616 \N \N f f +3659 2025-07-15 16:29:54.766798+00 2025-07-15 16:29:54.766806+00 f t 4617 \N \N f f +3660 2025-07-15 17:01:52.386432+00 2025-07-15 17:01:52.386444+00 f t 4619 \N \N f f +3661 2025-07-15 17:02:41.319266+00 2025-07-15 17:02:41.319274+00 f t 4620 \N \N f f +3662 2025-07-15 17:03:25.781779+00 2025-07-15 17:03:25.781787+00 f t 4621 \N \N f f +3663 2025-07-15 17:08:26.640387+00 2025-07-15 17:08:26.640394+00 f t 4622 \N \N f f +3664 2025-07-15 17:16:57.417424+00 2025-07-15 17:16:57.417436+00 f t 4623 \N \N f f +3665 2025-07-15 17:59:34.952208+00 2025-07-15 17:59:34.95222+00 f t 4625 \N \N f f +3666 2025-07-15 18:05:20.30615+00 2025-07-15 18:05:20.306176+00 f t 4626 \N \N f f +3667 2025-07-15 18:07:53.991659+00 2025-07-15 18:07:53.99167+00 f t 4627 \N \N f f +3668 2025-07-15 18:21:48.708616+00 2025-07-15 18:21:48.708625+00 f t 4628 \N \N f f +3669 2025-07-15 18:23:31.079881+00 2025-07-15 18:23:31.079893+00 f t 4629 \N \N f f +3670 2025-07-15 19:40:40.544991+00 2025-07-15 19:40:40.545+00 f t 4630 \N \N f f +3671 2025-07-15 20:12:49.024076+00 2025-07-15 20:12:49.024084+00 f t 4631 \N \N f f +3672 2025-07-15 20:21:59.013782+00 2025-07-15 20:21:59.013792+00 f t 4632 \N \N f f +3673 2025-07-15 20:22:33.904559+00 2025-07-15 20:22:33.90457+00 f t 4633 \N \N f f +3674 2025-07-15 20:28:24.786964+00 2025-07-15 20:28:24.786972+00 f t 4634 \N \N f f +3675 2025-07-15 20:46:40.396552+00 2025-07-15 20:46:40.39656+00 f t 4635 \N \N f f +3676 2025-07-15 21:01:04.104799+00 2025-07-15 21:01:04.104817+00 f t 4636 \N \N f f +3677 2025-07-15 21:44:26.4809+00 2025-07-15 21:44:26.480912+00 f t 4637 \N \N f f +3678 2025-07-15 21:55:40.687608+00 2025-07-15 21:55:40.687617+00 f t 266 \N \N f f +3679 2025-07-15 21:57:18.443481+00 2025-07-15 21:56:28.641314+00 f t 4638 \N \N f f +3680 2025-07-15 23:10:12.664443+00 2025-07-15 23:10:12.664456+00 f t 4639 \N \N f f +3681 2025-07-16 00:03:47.982104+00 2025-07-16 00:03:47.982116+00 f t 4640 \N \N f f +3682 2025-07-16 00:19:47.956055+00 2025-07-16 00:19:47.956066+00 f t 4641 \N \N f f +3683 2025-07-16 00:19:52.562493+00 2025-07-16 00:19:52.562499+00 f t 4642 \N \N f f +3684 2025-07-16 00:20:52.550345+00 2025-07-16 00:20:52.550352+00 f t 4643 \N \N f f +3685 2025-07-16 01:18:17.401618+00 2025-07-16 01:18:17.40163+00 f t 4644 \N \N f f +3686 2025-07-16 01:39:10.34329+00 2025-07-16 01:39:10.343298+00 f t 4645 \N \N f f +3687 2025-07-16 01:42:24.142004+00 2025-07-16 01:42:24.142016+00 f t 4646 \N \N f f +3688 2025-07-16 01:46:49.159322+00 2025-07-16 01:46:49.159333+00 f t 4647 \N \N f f +3689 2025-07-16 01:52:39.308435+00 2025-07-16 01:52:39.308444+00 f t 4648 \N \N f f +3690 2025-07-16 01:53:19.063127+00 2025-07-16 01:53:19.063177+00 f t 4649 \N \N f f +3691 2025-07-16 02:32:19.376239+00 2025-07-16 02:32:19.37625+00 f t 4650 \N \N f f +3692 2025-07-16 04:22:48.493096+00 2025-07-16 04:22:48.493104+00 f t 4651 \N \N f f +3693 2025-07-16 04:22:56.808438+00 2025-07-16 04:22:56.808449+00 f t 4652 \N \N f f +3694 2025-07-16 05:18:36.492743+00 2025-07-16 05:18:36.492754+00 f t 4653 \N \N f f +3695 2025-07-16 05:36:39.031317+00 2025-07-16 05:36:39.031326+00 f t 4654 \N \N f f +3696 2025-07-16 05:38:59.984122+00 2025-07-16 05:38:59.984133+00 f t 4655 \N \N f f +3697 2025-07-16 05:47:39.725273+00 2025-07-16 05:47:39.725285+00 f t 4656 \N \N f f +3698 2025-07-16 06:54:40.511545+00 2025-07-16 06:54:40.511553+00 f t 4657 \N \N f f +3699 2025-07-16 08:45:10.85154+00 2025-07-16 08:45:10.85155+00 f t 4658 \N \N f f +3700 2025-07-16 10:55:33.104422+00 2025-07-16 10:55:33.104431+00 f t 4659 \N \N f f +3701 2025-07-16 10:56:04.008327+00 2025-07-16 10:56:04.008336+00 f t 4660 \N \N f f +3702 2025-07-16 11:13:19.94936+00 2025-07-16 11:13:19.949367+00 f t 4661 \N \N f f +3703 2025-07-16 11:44:29.815857+00 2025-07-16 11:44:29.815866+00 f t 4662 \N \N f f +3704 2025-07-16 12:40:38.629986+00 2025-07-16 12:40:38.629998+00 f t 4663 \N \N f f +3705 2025-07-16 12:49:51.719517+00 2025-07-16 12:49:51.719525+00 f t 4664 \N \N f f +3706 2025-07-16 13:05:06.320843+00 2025-07-16 13:05:06.320857+00 f t 4666 \N \N f f +3707 2025-07-16 13:33:43.264523+00 2025-07-16 13:33:43.264537+00 f t 4667 \N \N f f +3708 2025-07-16 13:54:04.934113+00 2025-07-16 13:54:04.935006+00 f t 4668 \N \N f f +3709 2025-07-16 13:58:04.106336+00 2025-07-16 13:58:04.106345+00 f t 4669 \N \N f f +3710 2025-07-16 15:21:50.413928+00 2025-07-16 15:21:50.413939+00 f t 4671 \N \N f f +3711 2025-07-16 15:28:46.250828+00 2025-07-16 15:28:46.250836+00 f t 4672 \N \N f f +3712 2025-07-16 15:51:25.868079+00 2025-07-16 15:51:25.868088+00 f t 4674 \N \N f f +3713 2025-07-16 16:33:35.000195+00 2025-07-16 16:33:35.000204+00 f t 4675 \N \N f f +3714 2025-07-16 16:47:59.961364+00 2025-07-16 16:47:59.961372+00 f t 4676 \N \N f f +3715 2025-07-16 16:49:30.686698+00 2025-07-16 16:49:30.686704+00 f t 4677 \N \N f f +3716 2025-07-16 17:03:43.335188+00 2025-07-16 17:03:43.335196+00 f t 4678 \N \N f f +3717 2025-07-16 17:27:50.001219+00 2025-07-16 17:27:50.001227+00 f t 4679 \N \N f f +3718 2025-07-16 17:32:08.611008+00 2025-07-16 17:32:08.611021+00 f t 4680 \N \N f f +3719 2025-07-16 17:32:12.353601+00 2025-07-16 17:32:12.35361+00 f t 4681 \N \N f f +3720 2025-07-16 18:48:30.399634+00 2025-07-16 18:48:30.399646+00 f t 4682 \N \N f f +3721 2025-07-16 18:56:01.110039+00 2025-07-16 18:56:01.110046+00 f t 4683 \N \N f f +3722 2025-07-16 19:21:36.588509+00 2025-07-16 19:21:36.588517+00 f t 4684 \N \N f f +3723 2025-07-16 19:22:08.316185+00 2025-07-16 19:22:08.316196+00 f t 4685 \N \N f f +3724 2025-07-16 19:31:01.047924+00 2025-07-16 19:31:01.047935+00 f t 4686 \N \N f f +3725 2025-07-16 19:31:34.817414+00 2025-07-16 19:31:34.81742+00 f t 4687 \N \N f f +3726 2025-07-16 19:43:29.53466+00 2025-07-16 19:41:24.32267+00 f t 4688 \N \N f f +3727 2025-07-16 19:51:31.273212+00 2025-07-16 19:51:31.273221+00 f t 4689 \N \N f f +3728 2025-07-16 20:07:29.211641+00 2025-07-16 20:07:29.211653+00 f t 4690 \N \N f f +3729 2025-07-16 20:28:19.42278+00 2025-07-16 20:28:19.422788+00 f t 4691 \N \N f f +3730 2025-07-16 20:29:22.401324+00 2025-07-16 20:29:22.401331+00 f t 4692 \N \N f f +3731 2025-07-16 20:35:57.048921+00 2025-07-16 20:35:57.048932+00 f t 4694 \N \N f f +3732 2025-07-16 21:06:01.226089+00 2025-07-16 21:06:01.226097+00 f t 4695 \N \N f f +3733 2025-07-16 21:10:55.271527+00 2025-07-16 21:10:55.271535+00 f t 4696 \N \N f f +3734 2025-07-16 21:30:17.709406+00 2025-07-16 21:30:17.709414+00 f t 4697 \N \N f f +3735 2025-07-16 22:17:22.339325+00 2025-07-16 22:17:22.339339+00 f t 4698 \N \N f f +3750 2025-07-17 01:44:40.45416+00 2025-07-17 01:44:40.454167+00 f t 4711 \N \N f f +3737 2025-07-16 22:25:08.949161+00 2025-07-16 22:25:08.949173+00 f t 4699 \N \N f f +3736 2025-07-16 22:26:13.12476+00 2025-07-16 22:20:40.168122+00 f t 3805 \N \N f f +3738 2025-07-16 22:28:15.378271+00 2025-07-16 22:28:15.378281+00 f t 4700 \N \N f f +3739 2025-07-16 22:51:04.543411+00 2025-07-16 22:51:04.543421+00 f t 4701 \N \N f f +3740 2025-07-16 23:15:55.650822+00 2025-07-16 23:15:55.650831+00 f t 4702 \N \N f f +3741 2025-07-16 23:19:40.148854+00 2025-07-16 23:19:40.148863+00 f t 3789 \N \N f f +3742 2025-07-16 23:30:32.353006+00 2025-07-16 23:30:32.353015+00 f t 4703 \N \N f f +3743 2025-07-16 23:58:15.93461+00 2025-07-16 23:58:15.934618+00 f t 4704 \N \N f f +3744 2025-07-17 00:05:44.375979+00 2025-07-17 00:05:44.375987+00 f t 4705 \N \N f f +3745 2025-07-17 00:10:32.884229+00 2025-07-17 00:10:32.884236+00 f t 4706 \N \N f f +3746 2025-07-17 00:18:59.34279+00 2025-07-17 00:18:59.342798+00 f t 4707 \N \N f f +3747 2025-07-17 00:19:30.115355+00 2025-07-17 00:19:30.115367+00 f t 4708 \N \N f f +3748 2025-07-17 00:44:40.077986+00 2025-07-17 00:44:40.077997+00 f t 4709 \N \N f f +3749 2025-07-17 00:45:45.649801+00 2025-07-17 00:45:45.64981+00 f t 4710 \N \N f f +3751 2025-07-17 02:11:03.83667+00 2025-07-17 02:11:03.836682+00 f t 4712 \N \N f f +3752 2025-07-17 02:33:14.719774+00 2025-07-17 02:33:14.719782+00 f t 4713 \N \N f f +3753 2025-07-17 02:42:07.610337+00 2025-07-17 02:42:07.610344+00 f t 4714 \N \N f f +3754 2025-07-17 04:53:33.138078+00 2025-07-17 04:53:33.138086+00 f t 4715 \N \N f f +3755 2025-07-17 04:54:52.238114+00 2025-07-17 04:54:52.238122+00 f t 4716 \N \N f f +3756 2025-07-17 04:54:54.938015+00 2025-07-17 04:54:54.938022+00 f t 4717 \N \N f f +3757 2025-07-17 04:55:43.726961+00 2025-07-17 04:55:43.726967+00 f t 4718 \N \N f f +3758 2025-07-17 05:11:19.239336+00 2025-07-17 05:11:19.239344+00 f t 4719 \N \N f f +3759 2025-07-17 06:33:01.212598+00 2025-07-17 06:33:01.212607+00 f t 4720 \N \N f f +3760 2025-07-17 07:33:42.134151+00 2025-07-17 07:33:42.134159+00 f t 4721 \N \N f f +3761 2025-07-17 10:48:59.988626+00 2025-07-17 10:48:59.988634+00 f t 4722 \N \N f f +3762 2025-07-17 11:35:55.277672+00 2025-07-17 11:35:55.277685+00 f t 4723 \N \N f f +3763 2025-07-17 11:58:53.533157+00 2025-07-17 11:58:53.533167+00 f t 4724 \N \N f f +3764 2025-07-17 12:21:11.501822+00 2025-07-17 12:21:11.501832+00 f t 4725 \N \N f f +3765 2025-07-17 12:42:52.094342+00 2025-07-17 12:42:52.094355+00 f t 2370 \N \N f f +3766 2025-07-17 13:12:37.079801+00 2025-07-17 13:12:37.079813+00 f t 4726 \N \N f f +3767 2025-07-17 13:33:19.319239+00 2025-07-17 13:33:19.319247+00 f t 4727 \N \N f f +3768 2025-07-17 13:38:23.149841+00 2025-07-17 13:38:23.149851+00 f t 4728 \N \N f f +3769 2025-07-17 13:39:41.455754+00 2025-07-17 13:39:41.455762+00 f t 4729 \N \N f f +3770 2025-07-17 13:42:21.383637+00 2025-07-17 13:42:21.383645+00 f t 4730 \N \N f f +3771 2025-07-17 13:57:36.384588+00 2025-07-17 13:57:36.384597+00 f t 4731 \N \N f f +3772 2025-07-17 14:10:17.894767+00 2025-07-17 14:10:17.894777+00 f t 4732 \N \N f f +3773 2025-07-17 14:17:09.660209+00 2025-07-17 14:17:09.660245+00 f t 4733 \N \N f f +3774 2025-07-17 14:23:30.747251+00 2025-07-17 14:23:30.74726+00 f t 4734 \N \N f f +3775 2025-07-17 14:25:26.337136+00 2025-07-17 14:25:26.337149+00 f t 4735 \N \N f f +3776 2025-07-17 14:59:45.734394+00 2025-07-17 14:59:45.734405+00 f t 4736 \N \N f f +3777 2025-07-17 15:44:14.644633+00 2025-07-17 15:44:14.644642+00 f t 4738 \N \N f f +3778 2025-07-17 15:51:02.071654+00 2025-07-17 15:51:02.071664+00 f t 4739 \N \N f f +3779 2025-07-17 15:56:37.885017+00 2025-07-17 15:56:37.885024+00 f t 4741 \N \N f f +3780 2025-07-17 16:03:17.743213+00 2025-07-17 16:03:17.743224+00 f t 4742 \N \N f f +3781 2025-07-17 16:11:42.710845+00 2025-07-17 16:11:42.710856+00 f t 4743 \N \N f f +3782 2025-07-17 16:13:30.624625+00 2025-07-17 16:13:30.624634+00 f t 4744 \N \N f f +3783 2025-07-17 16:37:01.814893+00 2025-07-17 16:37:01.814902+00 f t 4745 \N \N f f +3784 2025-07-17 17:16:19.874056+00 2025-07-17 17:16:19.874068+00 f t 4747 \N \N f f +3785 2025-07-17 17:29:06.711103+00 2025-07-17 17:29:06.711114+00 f t 4749 \N \N f f +3786 2025-07-17 17:36:05.742136+00 2025-07-17 17:36:05.742149+00 f t 4750 \N \N f f +3787 2025-07-17 17:37:34.98562+00 2025-07-17 17:37:34.98563+00 f t 4751 \N \N f f +3788 2025-07-17 17:42:06.568133+00 2025-07-17 17:42:06.568145+00 f t 4752 \N \N f f +3789 2025-07-17 18:20:26.86218+00 2025-07-17 18:20:26.86219+00 f t 4753 \N \N f f +3790 2025-07-17 20:28:40.436241+00 2025-07-17 20:28:40.436248+00 f t 4756 \N \N f f +3791 2025-07-17 20:34:20.591466+00 2025-07-17 20:34:20.591473+00 f t 4757 \N \N f f +3792 2025-07-17 20:35:45.715791+00 2025-07-17 20:35:45.715799+00 f t 4758 \N \N f f +3793 2025-07-17 21:14:10.715078+00 2025-07-17 21:14:10.715091+00 f t 4759 \N \N f f +3794 2025-07-17 21:34:01.9719+00 2025-07-17 21:34:01.971911+00 f t 4760 \N \N f f +3795 2025-07-17 22:01:26.373106+00 2025-07-17 22:01:26.373117+00 f t 4761 \N \N f f +3796 2025-07-17 22:01:46.224049+00 2025-07-17 22:01:46.224061+00 f t 4762 \N \N f f +3797 2025-07-17 22:02:06.625179+00 2025-07-17 22:02:06.62519+00 f t 4763 \N \N f f +3798 2025-07-17 22:11:32.55164+00 2025-07-17 22:11:32.551651+00 f t 4764 \N \N f f +3799 2025-07-17 22:24:28.556449+00 2025-07-17 22:24:28.556461+00 f t 4765 \N \N f f +3800 2025-07-17 22:25:13.861627+00 2025-07-17 22:25:13.864663+00 f t 4766 \N \N f f +3801 2025-07-17 22:45:12.024545+00 2025-07-17 22:45:12.024558+00 f t 4767 \N \N f f +3802 2025-07-17 23:20:21.805963+00 2025-07-17 23:20:21.805975+00 f t 4768 \N \N f f +3803 2025-07-17 23:21:36.43185+00 2025-07-17 23:21:36.431858+00 f t 4769 \N \N f f +3804 2025-07-17 23:31:30.692059+00 2025-07-17 23:31:30.692068+00 f t 4770 \N \N f f +3805 2025-07-18 00:27:49.883615+00 2025-07-18 00:27:49.883622+00 f t 4772 \N \N f f +3806 2025-07-18 00:34:01.104101+00 2025-07-18 00:34:01.104109+00 f t 4773 \N \N f f +3807 2025-07-18 00:57:12.194687+00 2025-07-18 00:57:12.194694+00 f t 4774 \N \N f f +3808 2025-07-18 01:08:09.538101+00 2025-07-18 01:08:09.538112+00 f t 4775 \N \N f f +3809 2025-07-18 01:09:01.604335+00 2025-07-18 01:09:01.604349+00 f t 4776 \N \N f f +3810 2025-07-18 01:19:15.899688+00 2025-07-18 01:19:15.899701+00 f t 4777 \N \N f f +3811 2025-07-18 02:55:56.245664+00 2025-07-18 02:55:56.245672+00 f t 4778 \N \N f f +3812 2025-07-18 03:20:11.80522+00 2025-07-18 03:20:11.805232+00 f t 4779 \N \N f f +3813 2025-07-18 05:25:11.30737+00 2025-07-18 05:25:11.307381+00 f t 4780 \N \N f f +3814 2025-07-18 05:39:22.893274+00 2025-07-18 05:39:22.893284+00 f t 4781 \N \N f f +3815 2025-07-18 11:29:10.108313+00 2025-07-18 11:29:10.108321+00 f t 4782 \N \N f f +3816 2025-07-18 12:43:03.575628+00 2025-07-18 12:43:03.575637+00 f t 4783 \N \N f f +3817 2025-07-18 12:47:04.699238+00 2025-07-18 12:47:04.699248+00 f t 4784 \N \N f f +3818 2025-07-18 12:57:59.086622+00 2025-07-18 12:57:59.08663+00 f t 4785 \N \N f f +3819 2025-07-18 13:00:55.752441+00 2025-07-18 13:00:55.752459+00 f t 4786 \N \N f f +3820 2025-07-18 13:28:37.740615+00 2025-07-18 13:28:37.740623+00 f t 4787 \N \N f f +3821 2025-07-18 13:53:15.603391+00 2025-07-18 13:53:15.603401+00 f t 4788 \N \N f f +3822 2025-07-18 14:34:01.755352+00 2025-07-18 14:32:32.99486+00 f t 4790 \N \N f f +3823 2025-07-18 15:54:04.012446+00 2025-07-18 15:54:04.012459+00 f t 4791 \N \N f f +3824 2025-07-18 16:28:26.503+00 2025-07-18 16:28:26.503008+00 f t 4792 \N \N f f +3825 2025-07-18 16:31:06.58381+00 2025-07-18 16:31:06.583823+00 f t 4793 \N \N f f +3826 2025-07-18 16:53:07.993345+00 2025-07-18 16:53:07.993353+00 f t 4794 \N \N f f +3827 2025-07-18 17:07:14.007825+00 2025-07-18 17:07:14.007832+00 f t 4795 \N \N f f +3828 2025-07-18 17:36:52.370478+00 2025-07-18 17:36:52.37059+00 f t 4796 \N \N f f +3829 2025-07-18 17:37:27.869759+00 2025-07-18 17:37:27.869766+00 f t 4797 \N \N f f +3830 2025-07-18 17:43:16.319429+00 2025-07-18 17:43:16.319436+00 f t 4798 \N \N f f +3831 2025-07-18 17:51:24.013277+00 2025-07-18 17:51:24.013285+00 f t 4799 \N \N f f +3832 2025-07-18 17:54:09.851262+00 2025-07-18 17:54:09.851274+00 f t 4800 \N \N f f +3833 2025-07-18 18:20:08.630239+00 2025-07-18 18:20:08.630249+00 f t 4801 \N \N f f +3835 2025-07-18 19:22:28.877738+00 2025-07-18 19:22:28.877753+00 f t 4803 \N \N f f +3868 2025-07-19 11:35:28.725556+00 2025-07-19 11:35:28.725567+00 f t 4835 \N \N f f +3836 2025-07-18 19:23:42.587651+00 2025-07-18 19:23:42.587662+00 f t 2370 \N \N f f +3869 2025-07-19 11:58:44.52449+00 2025-07-19 11:58:44.5245+00 f t 4836 \N \N f f +3837 2025-07-18 19:59:29.757652+00 2025-07-18 19:59:29.757663+00 f t 4804 \N \N f f +3870 2025-07-19 12:16:57.703529+00 2025-07-19 12:16:57.703537+00 f t 4837 \N \N f f +3838 2025-07-18 20:44:09.780101+00 2025-07-18 20:44:09.78011+00 f t 4805 \N \N f f +3839 2025-07-18 20:46:37.482547+00 2025-07-18 20:46:37.482556+00 f t 4806 \N \N f f +3840 2025-07-18 20:48:27.98827+00 2025-07-18 20:48:27.988279+00 f t 4807 \N \N f f +3841 2025-07-18 20:50:25.254869+00 2025-07-18 20:50:25.25488+00 f t 4808 \N \N f f +3834 2025-07-18 20:52:14.026597+00 2025-07-18 19:21:10.229556+00 f t 266 \N \N f f +3842 2025-07-18 21:05:26.358145+00 2025-07-18 21:05:26.358158+00 f t 4809 \N \N f f +3843 2025-07-18 21:53:31.624795+00 2025-07-18 21:53:31.624803+00 f t 4810 \N \N f f +3844 2025-07-18 22:27:36.331396+00 2025-07-18 22:27:36.331405+00 f t 4811 \N \N f f +3845 2025-07-18 22:32:47.552707+00 2025-07-18 22:32:47.552717+00 f t 4812 \N \N f f +3846 2025-07-18 22:34:58.180973+00 2025-07-18 22:34:58.180983+00 f t 4813 \N \N f f +3847 2025-07-18 23:16:00.870009+00 2025-07-18 23:16:00.870017+00 f t 4814 \N \N f f +3848 2025-07-18 23:17:59.764115+00 2025-07-18 23:17:59.764124+00 f t 4815 \N \N f f +3849 2025-07-18 23:28:59.754134+00 2025-07-18 23:28:59.754142+00 f t 4816 \N \N f f +3850 2025-07-18 23:41:22.910743+00 2025-07-18 23:41:22.91075+00 f t 4817 \N \N f f +3851 2025-07-18 23:58:27.076582+00 2025-07-18 23:58:27.076591+00 f t 4818 \N \N f f +3852 2025-07-19 00:28:04.637798+00 2025-07-19 00:28:04.637813+00 f t 4819 \N \N f f +3853 2025-07-19 00:42:59.752698+00 2025-07-19 00:42:59.752705+00 f t 4820 \N \N f f +3854 2025-07-19 01:34:00.555884+00 2025-07-19 01:34:00.555896+00 f t 4821 \N \N f f +3855 2025-07-19 01:38:33.947619+00 2025-07-19 01:38:33.947629+00 f t 4822 \N \N f f +3856 2025-07-19 01:40:51.867708+00 2025-07-19 01:40:51.867716+00 f t 4823 \N \N f f +3857 2025-07-19 01:40:53.131046+00 2025-07-19 01:40:53.131056+00 f t 4824 \N \N f f +3858 2025-07-19 01:55:40.04573+00 2025-07-19 01:55:40.045739+00 f t 4825 \N \N f f +3859 2025-07-19 02:12:02.6754+00 2025-07-19 02:12:02.675412+00 f t 4826 \N \N f f +3860 2025-07-19 03:00:17.59807+00 2025-07-19 03:00:17.598084+00 f t 4827 \N \N f f +3861 2025-07-19 03:34:24.84941+00 2025-07-19 03:34:24.849419+00 f t 4828 \N \N f f +3862 2025-07-19 04:22:29.011453+00 2025-07-19 04:22:29.011462+00 f t 4829 \N \N f f +3863 2025-07-19 04:56:24.571169+00 2025-07-19 04:56:24.571177+00 f t 4830 \N \N f f +3864 2025-07-19 05:51:10.896114+00 2025-07-19 05:51:10.896122+00 f t 4831 \N \N f f +3865 2025-07-19 10:21:49.985473+00 2025-07-19 10:21:49.985486+00 f t 4832 \N \N f f +3866 2025-07-19 10:23:55.048405+00 2025-07-19 10:23:55.048413+00 f t 4833 \N \N f f +3867 2025-07-19 10:59:00.071791+00 2025-07-19 10:59:00.071799+00 f t 4834 \N \N f f +3871 2025-07-19 13:12:22.081561+00 2025-07-19 13:12:22.081569+00 f t 4838 \N \N f f +3872 2025-07-19 13:25:09.030334+00 2025-07-19 13:25:09.030344+00 f t 4839 \N \N f f +3873 2025-07-19 13:50:44.293234+00 2025-07-19 13:50:44.293245+00 f t 4840 \N \N f f +3874 2025-07-19 14:04:17.698968+00 2025-07-19 14:04:17.698976+00 f t 4841 \N \N f f +3875 2025-07-19 14:07:40.159183+00 2025-07-19 14:07:40.15919+00 f t 4842 \N \N f f +3876 2025-07-19 14:09:28.371109+00 2025-07-19 14:09:28.371118+00 f t 4843 \N \N f f +3877 2025-07-19 14:12:11.346461+00 2025-07-19 14:12:11.346469+00 f t 4844 \N \N f f +3878 2025-07-19 14:26:49.803177+00 2025-07-19 14:26:49.803185+00 f t 4845 \N \N f f +3880 2025-07-19 15:10:04.472518+00 2025-07-19 15:10:04.472532+00 f t 4846 \N \N f f +3879 2025-07-19 15:09:36.766951+00 2025-07-19 14:59:20.794749+00 f t 4616 \N \N f f +3881 2025-07-19 15:20:58.180253+00 2025-07-19 15:20:58.180262+00 f t 301 \N \N f f +3882 2025-07-19 16:52:24.662195+00 2025-07-19 16:52:24.662203+00 f t 4849 \N \N f f +3883 2025-07-19 17:04:36.59735+00 2025-07-19 17:04:36.597362+00 f t 4850 \N \N f f +3884 2025-07-19 17:05:22.360753+00 2025-07-19 17:05:22.360761+00 f t 4851 \N \N f f +3885 2025-07-19 17:08:57.923364+00 2025-07-19 17:08:57.923371+00 f t 4852 \N \N f f +3886 2025-07-19 17:59:16.599048+00 2025-07-19 17:59:16.59906+00 f t 4853 \N \N f f +3887 2025-07-19 17:59:54.832994+00 2025-07-19 17:59:54.833002+00 f t 4854 \N \N f f +3888 2025-07-19 18:13:49.201205+00 2025-07-19 18:13:49.201216+00 f t 4855 \N \N f f +3889 2025-07-19 18:33:47.785894+00 2025-07-19 18:33:47.785905+00 f t 4856 \N \N f f +3890 2025-07-19 18:49:54.241726+00 2025-07-19 18:49:54.241733+00 f t 4857 \N \N f f +3891 2025-07-19 19:08:14.268247+00 2025-07-19 19:08:14.268258+00 f t 4859 \N \N f f +3892 2025-07-19 19:09:49.77073+00 2025-07-19 19:09:49.770738+00 f t 4860 \N \N f f +3893 2025-07-19 19:17:12.512174+00 2025-07-19 19:17:12.512181+00 f t 4861 \N \N f f +3894 2025-07-19 19:21:38.406627+00 2025-07-19 19:21:38.406637+00 f t 4862 \N \N f f +3895 2025-07-19 19:26:55.299746+00 2025-07-19 19:26:55.299756+00 f t 4863 \N \N f f +3896 2025-07-19 19:32:09.459829+00 2025-07-19 19:32:09.459837+00 f t 4864 \N \N f f +3897 2025-07-19 19:56:33.046346+00 2025-07-19 19:56:33.046359+00 f t 4865 \N \N f f +3898 2025-07-19 20:26:03.805574+00 2025-07-19 20:26:03.805583+00 f t 4771 \N \N f f +3899 2025-07-19 20:31:05.965287+00 2025-07-19 20:31:05.965294+00 f t 4866 \N \N f f +3900 2025-07-19 20:33:40.339102+00 2025-07-19 20:33:40.33911+00 f t 4867 \N \N f f +3901 2025-07-19 21:23:56.543213+00 2025-07-19 21:23:56.54322+00 f t 4868 \N \N f f +3902 2025-07-19 22:20:42.900349+00 2025-07-19 22:20:42.900361+00 f t 4870 \N \N f f +3903 2025-07-19 23:16:06.302919+00 2025-07-19 23:16:06.302927+00 f t 4871 \N \N f f +3904 2025-07-19 23:26:41.937552+00 2025-07-19 23:26:41.93756+00 f t 4872 \N \N f f +3905 2025-07-19 23:28:01.106142+00 2025-07-19 23:28:01.106152+00 f t 4873 \N \N f f +3906 2025-07-19 23:34:54.835108+00 2025-07-19 23:34:54.835119+00 f t 4874 \N \N f f +3907 2025-07-19 23:47:56.937128+00 2025-07-19 23:47:56.937135+00 f t 4875 \N \N f f +3908 2025-07-19 23:52:56.676033+00 2025-07-19 23:52:56.676042+00 f t 4876 \N \N f f +3909 2025-07-20 00:28:59.507979+00 2025-07-20 00:28:59.507987+00 f t 4877 \N \N f f +3910 2025-07-20 00:39:00.327166+00 2025-07-20 00:39:00.327178+00 f t 4878 \N \N f f +3911 2025-07-20 01:14:51.353521+00 2025-07-20 01:14:51.353529+00 f t 4879 \N \N f f +3912 2025-07-20 01:47:50.977482+00 2025-07-20 01:47:50.97749+00 f t 4880 \N \N f f +3913 2025-07-20 01:49:59.815407+00 2025-07-20 01:49:59.815418+00 f t 4881 \N \N f f +3914 2025-07-20 01:58:01.373673+00 2025-07-20 01:58:01.373684+00 f t 4882 \N \N f f +3915 2025-07-20 02:26:44.267593+00 2025-07-20 02:26:44.267605+00 f t 4883 \N \N f f +3916 2025-07-20 02:28:26.272254+00 2025-07-20 02:28:26.272264+00 f t 4884 \N \N f f +3917 2025-07-20 02:46:15.531445+00 2025-07-20 02:46:15.531452+00 f t 4885 \N \N f f +3918 2025-07-20 02:50:23.131842+00 2025-07-20 02:50:23.131849+00 f t 4886 \N \N f f +3919 2025-07-20 02:53:23.095968+00 2025-07-20 02:53:23.095979+00 f t 4887 \N \N f f +3920 2025-07-20 03:01:50.696921+00 2025-07-20 03:01:50.69693+00 f t 4888 \N \N f f +3921 2025-07-20 03:04:23.88516+00 2025-07-20 03:04:23.885171+00 f t 4889 \N \N f f +3922 2025-07-20 03:53:36.027411+00 2025-07-20 03:53:36.02742+00 f t 4890 \N \N f f +3923 2025-07-20 04:28:22.9727+00 2025-07-20 04:28:22.972708+00 f t 4891 \N \N f f +3924 2025-07-20 04:56:07.084815+00 2025-07-20 04:56:07.084833+00 f t 4892 \N \N f f +3925 2025-07-20 05:03:20.883991+00 2025-07-20 05:03:20.884+00 f t 4893 \N \N f f +3926 2025-07-20 05:35:03.42986+00 2025-07-20 05:35:03.429875+00 f t 4894 \N \N f f +3927 2025-07-20 08:20:45.41552+00 2025-07-20 08:20:45.415529+00 f t 4895 \N \N f f +3928 2025-07-20 08:23:57.43806+00 2025-07-20 08:23:57.438067+00 f t 4896 \N \N f f +3929 2025-07-20 08:24:10.558765+00 2025-07-20 08:24:10.558774+00 f t 4897 \N \N f f +3930 2025-07-20 08:27:33.959377+00 2025-07-20 08:27:33.959384+00 f t 4898 \N \N f f +3931 2025-07-20 08:27:49.201453+00 2025-07-20 08:27:49.201461+00 f t 4899 \N \N f f +3932 2025-07-20 08:31:19.265318+00 2025-07-20 08:31:19.265328+00 f t 4900 \N \N f f +3933 2025-07-20 09:36:30.946167+00 2025-07-20 09:36:30.946175+00 f t 4901 \N \N f f +3934 2025-07-20 11:28:14.29652+00 2025-07-20 11:28:14.29653+00 f t 4902 \N \N f f +3935 2025-07-20 11:28:41.318476+00 2025-07-20 11:28:41.318484+00 f t 4903 \N \N f f +3936 2025-07-20 12:05:18.427031+00 2025-07-20 12:05:18.427043+00 f t 4904 \N \N f f +3937 2025-07-20 12:05:41.04891+00 2025-07-20 12:05:41.048922+00 f t 4905 \N \N f f +3938 2025-07-20 12:49:24.812873+00 2025-07-20 12:49:24.81288+00 f t 4906 \N \N f f +3939 2025-07-20 13:01:46.24377+00 2025-07-20 13:01:46.243777+00 f t 4907 \N \N f f +3940 2025-07-20 13:04:18.70744+00 2025-07-20 13:04:18.707452+00 f t 4908 \N \N f f +3941 2025-07-20 13:05:23.866081+00 2025-07-20 13:05:23.866091+00 f t 4909 \N \N f f +3942 2025-07-20 13:08:43.184569+00 2025-07-20 13:08:43.184576+00 f t 4910 \N \N f f +3943 2025-07-20 14:06:23.671042+00 2025-07-20 14:06:23.671048+00 f t 4911 \N \N f f +3944 2025-07-20 14:39:19.626294+00 2025-07-20 14:39:19.626301+00 f t 4912 \N \N f f +3945 2025-07-20 14:49:33.336979+00 2025-07-20 14:49:33.336987+00 f t 4913 \N \N f f +3946 2025-07-20 14:55:51.397731+00 2025-07-20 14:55:51.39774+00 f t 4914 \N \N f f +3947 2025-07-20 14:56:30.13559+00 2025-07-20 14:56:30.135598+00 f t 4915 \N \N f f +3948 2025-07-20 15:00:15.488189+00 2025-07-20 15:00:15.4882+00 f t 4916 \N \N f f +3949 2025-07-20 15:48:34.100918+00 2025-07-20 15:48:34.100924+00 f t 4917 \N \N f f +3950 2025-07-20 15:56:57.441203+00 2025-07-20 15:56:57.44121+00 f t 4918 \N \N f f +3951 2025-07-20 15:57:13.348642+00 2025-07-20 15:57:13.348649+00 f t 4919 \N \N f f +3952 2025-07-20 16:07:55.706177+00 2025-07-20 16:07:55.706184+00 f t 4920 \N \N f f +3953 2025-07-20 16:14:13.164653+00 2025-07-20 16:14:13.164662+00 f t 4921 \N \N f f +3954 2025-07-20 16:42:23.662169+00 2025-07-20 16:42:23.662176+00 f t 4922 \N \N f f +3955 2025-07-20 17:01:45.575432+00 2025-07-20 17:01:45.575439+00 f t 4923 \N \N f f +3956 2025-07-20 17:14:31.89927+00 2025-07-20 17:14:31.899281+00 f t 4924 \N \N f f +3957 2025-07-20 17:18:42.969756+00 2025-07-20 17:18:42.969763+00 f t 4925 \N \N f f +3958 2025-07-20 17:28:52.932443+00 2025-07-20 17:28:52.93245+00 f t 4926 \N \N f f +3959 2025-07-20 17:44:36.579183+00 2025-07-20 17:44:36.579189+00 f t 4927 \N \N f f +3960 2025-07-20 17:44:40.328989+00 2025-07-20 17:44:40.328996+00 f t 4928 \N \N f f +3961 2025-07-20 18:35:53.347413+00 2025-07-20 18:35:53.347422+00 f t 4929 \N \N f f +3962 2025-07-20 18:45:57.717041+00 2025-07-20 18:45:57.717048+00 f t 4930 \N \N f f +3963 2025-07-20 18:50:41.383348+00 2025-07-20 18:50:41.383358+00 f t 4931 \N \N f f +3964 2025-07-20 19:21:48.98876+00 2025-07-20 19:21:48.988769+00 f t 4932 \N \N f f +3965 2025-07-20 19:31:32.310314+00 2025-07-20 19:31:32.310325+00 f t 4933 \N \N f f +3966 2025-07-20 19:35:53.852924+00 2025-07-20 19:35:53.852934+00 f t 4934 \N \N f f +3967 2025-07-20 19:48:08.519925+00 2025-07-20 19:48:08.519934+00 f t 4935 \N \N f f +3968 2025-07-20 19:58:29.181524+00 2025-07-20 19:58:29.181531+00 f t 4936 \N \N f f +3969 2025-07-20 19:58:59.049983+00 2025-07-20 19:58:59.049991+00 f t 4937 \N \N f f +3970 2025-07-20 20:32:37.693901+00 2025-07-20 20:32:37.693908+00 f t 4938 \N \N f f +3971 2025-07-20 20:41:40.960139+00 2025-07-20 20:41:40.960149+00 f t 4939 \N \N f f +3972 2025-07-20 20:44:23.26704+00 2025-07-20 20:44:23.267048+00 f t 4940 \N \N f f +3973 2025-07-20 20:56:25.305444+00 2025-07-20 20:56:25.305451+00 f t 4941 \N \N f f +3974 2025-07-20 20:58:30.240032+00 2025-07-20 20:58:30.240044+00 f t 4942 \N \N f f +3975 2025-07-20 21:20:27.39678+00 2025-07-20 21:20:27.396787+00 f t 4943 \N \N f f +3976 2025-07-20 21:33:19.066556+00 2025-07-20 21:33:19.066563+00 f t 4944 \N \N f f +3977 2025-07-20 22:17:19.7804+00 2025-07-20 22:17:19.78041+00 f t 4945 \N \N f f +3978 2025-07-20 22:34:39.925377+00 2025-07-20 22:34:39.925384+00 f t 4946 \N \N f f +3979 2025-07-20 22:36:52.320327+00 2025-07-20 22:36:52.320335+00 f t 4947 \N \N f f +3980 2025-07-20 23:13:54.311679+00 2025-07-20 23:13:54.311686+00 f t 4948 \N \N f f +3981 2025-07-20 23:22:09.344854+00 2025-07-20 23:22:09.344866+00 f t 4949 \N \N f f +3982 2025-07-20 23:30:27.743486+00 2025-07-20 23:30:27.743496+00 f t 4950 \N \N f f +3983 2025-07-20 23:52:03.732406+00 2025-07-20 23:52:03.732414+00 f t 4951 \N \N f f +3984 2025-07-20 23:53:52.161258+00 2025-07-20 23:53:52.161264+00 f t 4952 \N \N f f +3985 2025-07-21 00:07:41.665297+00 2025-07-21 00:07:41.665307+00 f t 4953 \N \N f f +3986 2025-07-21 00:08:56.197498+00 2025-07-21 00:08:56.197509+00 f t 4604 \N \N f f +3987 2025-07-21 00:29:00.063568+00 2025-07-21 00:29:00.063578+00 f t 4954 \N \N f f +3988 2025-07-21 00:34:07.045465+00 2025-07-21 00:34:07.045476+00 f t 4955 \N \N f f +3989 2025-07-21 00:49:54.80097+00 2025-07-21 00:49:54.800978+00 f t 4956 \N \N f f +3990 2025-07-21 01:09:12.140782+00 2025-07-21 01:09:12.140789+00 f t 4957 \N \N f f +3991 2025-07-21 01:36:01.877188+00 2025-07-21 01:36:01.877199+00 f t 4958 \N \N f f +3992 2025-07-21 01:53:00.513501+00 2025-07-21 01:53:00.513512+00 f t 4959 \N \N f f +3993 2025-07-21 01:54:45.621614+00 2025-07-21 01:54:45.62162+00 f t 4960 \N \N f f +3994 2025-07-21 03:14:00.589262+00 2025-07-21 03:14:00.589269+00 f t 4961 \N \N f f +3995 2025-07-21 03:21:38.61176+00 2025-07-21 03:21:38.611767+00 f t 4962 \N \N f f +3996 2025-07-21 03:24:25.512224+00 2025-07-21 03:24:25.512232+00 f t 4963 \N \N f f +3997 2025-07-21 03:39:07.794969+00 2025-07-21 03:39:07.794977+00 f t 4964 \N \N f f +3998 2025-07-21 03:39:54.912921+00 2025-07-21 03:39:54.912931+00 f t 4965 \N \N f f +3999 2025-07-21 03:47:21.42003+00 2025-07-21 03:47:21.420037+00 f t 4966 \N \N f f +4000 2025-07-21 04:07:20.688986+00 2025-07-21 04:07:20.688996+00 f t 4967 \N \N f f +4001 2025-07-21 04:36:08.326432+00 2025-07-21 04:36:08.326441+00 f t 4968 \N \N f f +4002 2025-07-21 05:48:42.624878+00 2025-07-21 05:48:42.624886+00 f t 4969 \N \N f f +4003 2025-07-21 08:25:38.368392+00 2025-07-21 08:25:38.3684+00 f t 4970 \N \N f f +4004 2025-07-21 08:37:25.391651+00 2025-07-21 08:37:25.391659+00 f t 4971 \N \N f f +4005 2025-07-21 10:01:46.287476+00 2025-07-21 10:01:46.287486+00 f t 4972 \N \N f f +4006 2025-07-21 10:03:26.511634+00 2025-07-21 10:03:26.511641+00 f t 4973 \N \N f f +4007 2025-07-21 10:04:06.37909+00 2025-07-21 10:04:06.379097+00 f t 4974 \N \N f f +4008 2025-07-21 11:56:28.921381+00 2025-07-21 11:56:28.921389+00 f t 4975 \N \N f f +4009 2025-07-21 11:57:40.249466+00 2025-07-21 11:57:40.249475+00 f t 4976 \N \N f f +4010 2025-07-21 11:59:06.167819+00 2025-07-21 11:59:06.167831+00 f t 4977 \N \N f f +4011 2025-07-21 12:02:38.83405+00 2025-07-21 12:02:38.834061+00 f t 4978 \N \N f f +4012 2025-07-21 12:04:51.567331+00 2025-07-21 12:04:51.567337+00 f t 4979 \N \N f f +4013 2025-07-21 12:06:07.758444+00 2025-07-21 12:06:07.758452+00 f t 4980 \N \N f f +4014 2025-07-21 12:07:12.881136+00 2025-07-21 12:07:12.881144+00 f t 4981 \N \N f f +4015 2025-07-21 12:12:56.110684+00 2025-07-21 12:12:56.110693+00 f t 4982 \N \N f f +4016 2025-07-21 12:19:28.831988+00 2025-07-21 12:19:28.831995+00 f t 4983 \N \N f f +4017 2025-07-21 12:41:15.804198+00 2025-07-21 12:41:15.804205+00 f t 4984 \N \N f f +4018 2025-07-21 13:07:04.992847+00 2025-07-21 13:07:04.992856+00 f t 4985 \N \N f f +4019 2025-07-21 13:08:39.001127+00 2025-07-21 13:08:39.001134+00 f t 4986 \N \N f f +4020 2025-07-21 13:40:36.458238+00 2025-07-21 13:40:36.458249+00 f t 4988 \N \N f f +4021 2025-07-21 13:47:08.876179+00 2025-07-21 13:47:08.876187+00 f t 4989 \N \N f f +4022 2025-07-21 13:58:20.739477+00 2025-07-21 13:58:20.739484+00 f t 4990 \N \N f f +4023 2025-07-21 14:21:49.653795+00 2025-07-21 14:21:49.653807+00 f t 4991 \N \N f f +4024 2025-07-21 14:39:22.633425+00 2025-07-21 14:39:22.633435+00 f t 4992 \N \N f f +4025 2025-07-21 15:14:36.107592+00 2025-07-21 15:14:36.107599+00 f t 4993 \N \N f f +4026 2025-07-21 15:18:21.873421+00 2025-07-21 15:18:21.873427+00 f t 4994 \N \N f f +4027 2025-07-21 15:28:53.894305+00 2025-07-21 15:28:53.894316+00 f t 4995 \N \N f f +4028 2025-07-21 15:31:44.671767+00 2025-07-21 15:31:44.671779+00 f t 4996 \N \N f f +4029 2025-07-21 15:39:10.223938+00 2025-07-21 15:39:10.223946+00 f t 4997 \N \N f f +4030 2025-07-21 15:39:48.656992+00 2025-07-21 15:39:48.657003+00 f t 4998 \N \N f f +4031 2025-07-21 15:42:03.741594+00 2025-07-21 15:42:03.741606+00 f t 4999 \N \N f f +4032 2025-07-21 16:25:21.597284+00 2025-07-21 16:25:21.597294+00 f t 5001 \N \N f f +4033 2025-07-21 16:33:41.373386+00 2025-07-21 16:33:41.373395+00 f t 5002 \N \N f f +4034 2025-07-21 16:38:20.470612+00 2025-07-21 16:38:20.47062+00 f t 5003 \N \N f f +4035 2025-07-21 17:10:25.218749+00 2025-07-21 17:10:25.218756+00 f t 5004 \N \N f f +4036 2025-07-21 17:11:12.434827+00 2025-07-21 17:11:12.434835+00 f t 5005 \N \N f f +4037 2025-07-21 17:23:56.063421+00 2025-07-21 17:23:56.063428+00 f t 5006 \N \N f f +4038 2025-07-21 17:32:57.621803+00 2025-07-21 17:32:57.621811+00 f t 5007 \N \N f f +4039 2025-07-21 17:38:58.46916+00 2025-07-21 17:38:58.469167+00 f t 5008 \N \N f f +4040 2025-07-21 17:56:52.609603+00 2025-07-21 17:56:52.60961+00 f t 5009 \N \N f f +4041 2025-07-21 17:59:49.375046+00 2025-07-21 17:59:49.375053+00 f t 5010 \N \N f f +4042 2025-07-21 18:14:02.546065+00 2025-07-21 18:14:02.546078+00 f t 5011 \N \N f f +4043 2025-07-21 18:34:15.925785+00 2025-07-21 18:34:15.925795+00 f t 5012 \N \N f f +4044 2025-07-21 19:17:13.012418+00 2025-07-21 19:17:13.012427+00 f t 5013 \N \N f f +4045 2025-07-21 19:58:49.083706+00 2025-07-21 19:58:49.083712+00 f t 5014 \N \N f f +4046 2025-07-21 19:59:39.997922+00 2025-07-21 19:59:39.997933+00 f t 5015 \N \N f f +4047 2025-07-21 20:11:46.778002+00 2025-07-21 20:11:46.77801+00 f t 5016 \N \N f f +4048 2025-07-21 20:32:34.579434+00 2025-07-21 20:32:34.579442+00 f t 5017 \N \N f f +4049 2025-07-21 22:10:35.953272+00 2025-07-21 22:10:35.953278+00 f t 5018 \N \N f f +4050 2025-07-21 22:11:00.234056+00 2025-07-21 22:11:00.234062+00 f t 5019 \N \N f f +4051 2025-07-21 22:26:17.445338+00 2025-07-21 22:26:17.445351+00 f t 5020 \N \N f f +4052 2025-07-21 23:22:45.169076+00 2025-07-21 23:22:45.169084+00 f t 5022 \N \N f f +4053 2025-07-21 23:52:54.141738+00 2025-07-21 23:52:54.14175+00 f t 5023 \N \N f f +4054 2025-07-21 23:56:51.822755+00 2025-07-21 23:56:51.822761+00 f t 5024 \N \N f f +4055 2025-07-21 23:59:57.437939+00 2025-07-21 23:59:57.43795+00 f t 5025 \N \N f f +4056 2025-07-22 01:05:05.288058+00 2025-07-22 01:05:05.288071+00 f t 5026 \N \N f f +4057 2025-07-22 01:05:24.260231+00 2025-07-22 01:05:24.260239+00 f t 5027 \N \N f f +4058 2025-07-22 01:30:08.165607+00 2025-07-22 01:30:08.165617+00 f t 5028 \N \N f f +4059 2025-07-22 02:50:57.141597+00 2025-07-22 02:50:57.141606+00 f t 5029 \N \N f f +4060 2025-07-22 03:07:24.955972+00 2025-07-22 03:07:24.955983+00 f t 5030 \N \N f f +4061 2025-07-22 03:42:44.776074+00 2025-07-22 03:42:44.776081+00 f t 5031 \N \N f f +4062 2025-07-22 05:46:56.758499+00 2025-07-22 05:46:56.758507+00 f t 5032 \N \N f f +4063 2025-07-22 06:58:44.711909+00 2025-07-22 06:58:44.711921+00 f t 5033 \N \N f f +4064 2025-07-22 08:23:49.387881+00 2025-07-22 08:23:49.387888+00 f t 5034 \N \N f f +4065 2025-07-22 09:08:25.243033+00 2025-07-22 09:08:25.24304+00 f t 5035 \N \N f f +4066 2025-07-22 11:01:29.205811+00 2025-07-22 11:01:29.205822+00 f t 5036 \N \N f f +4067 2025-07-22 11:16:37.540473+00 2025-07-22 11:16:37.540481+00 f t 5037 \N \N f f +4068 2025-07-22 12:04:10.066533+00 2025-07-22 12:04:10.066541+00 f t 5038 \N \N f f +4069 2025-07-22 12:18:40.640325+00 2025-07-22 12:18:40.640333+00 f t 5039 \N \N f f +4070 2025-07-22 12:41:00.529578+00 2025-07-22 12:41:00.52959+00 f t 5040 \N \N f f +4071 2025-07-22 14:31:00.615053+00 2025-07-22 14:31:00.61506+00 f t 5041 \N \N f f +4072 2025-07-22 14:40:32.396804+00 2025-07-22 14:40:32.39681+00 f t 5042 \N \N f f +4073 2025-07-22 14:44:38.288353+00 2025-07-22 14:44:38.28836+00 f t 1009 \N \N f f +4074 2025-07-22 15:21:37.278431+00 2025-07-22 15:21:37.278438+00 f t 5043 \N \N f f +4075 2025-07-22 15:21:53.527073+00 2025-07-22 15:21:53.527084+00 f t 5044 \N \N f f +4076 2025-07-22 15:33:32.930397+00 2025-07-22 15:33:32.930404+00 f t 5045 \N \N f f +4077 2025-07-22 15:43:03.629457+00 2025-07-22 15:43:03.629468+00 f t 5046 \N \N f f +4078 2025-07-22 15:57:54.570763+00 2025-07-22 15:57:54.570781+00 f t 5047 \N \N f f +4079 2025-07-22 15:59:15.381409+00 2025-07-22 15:59:15.381416+00 f t 5048 \N \N f f +4080 2025-07-22 16:09:21.994673+00 2025-07-22 16:09:21.994681+00 f t 5049 \N \N f f +4081 2025-07-22 16:13:40.220262+00 2025-07-22 16:13:40.220269+00 f t 5050 \N \N f f +4082 2025-07-22 16:30:24.336897+00 2025-07-22 16:30:24.336904+00 f t 5051 \N \N f f +4083 2025-07-22 16:32:21.569458+00 2025-07-22 16:32:21.569467+00 f t 5052 \N \N f f +4084 2025-07-22 16:37:29.819859+00 2025-07-22 16:37:29.819867+00 f t 5053 \N \N f f +4085 2025-07-22 16:42:50.927787+00 2025-07-22 16:42:50.927796+00 f t 5054 \N \N f f +4086 2025-07-22 16:57:21.490385+00 2025-07-22 16:57:21.490393+00 f t 5055 \N \N f f +4087 2025-07-22 17:32:35.771807+00 2025-07-22 17:32:35.771815+00 f t 5056 \N \N f f +4088 2025-07-22 17:32:56.414914+00 2025-07-22 17:32:56.414924+00 f t 5057 \N \N f f +4089 2025-07-22 17:33:53.380597+00 2025-07-22 17:33:53.380603+00 f t 5059 \N \N f f +4090 2025-07-22 17:54:30.388865+00 2025-07-22 17:54:30.388872+00 f t 5060 \N \N f f +4091 2025-07-22 18:08:24.911229+00 2025-07-22 18:08:24.911237+00 f t 5061 \N \N f f +4092 2025-07-22 18:20:05.949206+00 2025-07-22 18:20:05.949219+00 f t 5062 \N \N f f +4093 2025-07-22 18:30:16.443612+00 2025-07-22 18:30:16.44362+00 f t 5063 \N \N f f +4094 2025-07-22 18:31:30.440461+00 2025-07-22 18:31:30.440468+00 f t 5064 \N \N f f +4095 2025-07-22 18:40:36.31397+00 2025-07-22 18:40:36.313977+00 f t 5065 \N \N f f +4096 2025-07-22 19:09:57.089873+00 2025-07-22 19:09:57.089884+00 f t 5066 \N \N f f +4097 2025-07-22 19:17:35.990589+00 2025-07-22 19:17:35.990597+00 f t 5067 \N \N f f +4098 2025-07-22 19:20:04.666932+00 2025-07-22 19:20:04.666946+00 f t 5068 \N \N f f +4099 2025-07-22 19:35:46.441114+00 2025-07-22 19:35:46.44112+00 f t 5069 \N \N f f +4100 2025-07-22 20:03:51.888363+00 2025-07-22 20:03:51.88837+00 f t 5070 \N \N f f +4101 2025-07-22 21:00:44.004901+00 2025-07-22 21:00:44.004908+00 f t 5072 \N \N f f +4102 2025-07-22 21:24:37.673199+00 2025-07-22 21:24:37.673208+00 f t 5073 \N \N f f +4103 2025-07-22 21:42:12.528674+00 2025-07-22 21:42:12.528686+00 f t 5074 \N \N f f +4104 2025-07-22 21:49:34.23158+00 2025-07-22 21:49:34.231589+00 f t 5075 \N \N f f +4105 2025-07-22 21:53:11.627988+00 2025-07-22 21:53:11.627999+00 f t 5076 \N \N f f +4106 2025-07-22 21:54:51.9354+00 2025-07-22 21:54:51.935407+00 f t 5077 \N \N f f +4107 2025-07-22 23:10:05.617938+00 2025-07-22 23:10:05.617951+00 f t 5079 \N \N f f +4108 2025-07-22 23:39:05.119426+00 2025-07-22 23:39:05.119437+00 f t 5080 \N \N f f +4109 2025-07-22 23:47:04.946583+00 2025-07-22 23:47:04.946596+00 f t 5082 \N \N f f +4110 2025-07-23 00:01:48.511372+00 2025-07-23 00:01:48.511379+00 f t 5083 \N \N f f +4111 2025-07-23 00:04:19.443867+00 2025-07-23 00:04:19.443875+00 f t 5084 \N \N f f +4112 2025-07-23 00:07:55.267235+00 2025-07-23 00:07:55.267241+00 f t 5085 \N \N f f +4113 2025-07-23 00:10:31.797738+00 2025-07-23 00:10:31.797744+00 f t 5086 \N \N f f +4114 2025-07-23 01:00:51.207398+00 2025-07-23 01:00:51.20741+00 f t 5088 \N \N f f +4115 2025-07-23 01:43:18.971151+00 2025-07-23 01:43:18.971182+00 f t 5089 \N \N f f +4116 2025-07-23 02:12:51.259157+00 2025-07-23 02:12:51.259164+00 f t 5090 \N \N f f +4117 2025-07-23 02:32:19.479059+00 2025-07-23 02:32:19.479067+00 f t 5091 \N \N f f +4118 2025-07-23 02:39:51.926208+00 2025-07-23 02:39:51.92622+00 f t 5092 \N \N f f +4119 2025-07-23 02:56:08.02024+00 2025-07-23 02:56:08.020252+00 f t 5093 \N \N f f +4120 2025-07-23 03:28:37.631457+00 2025-07-23 03:28:37.631463+00 f t 5094 \N \N f f +4121 2025-07-23 03:32:43.502635+00 2025-07-23 03:32:43.502647+00 f t 5095 \N \N f f +4122 2025-07-23 03:33:13.631796+00 2025-07-23 03:33:13.631804+00 f t 5096 \N \N f f +4123 2025-07-23 03:51:41.802686+00 2025-07-23 03:51:41.802694+00 f t 5097 \N \N f f +4124 2025-07-23 03:56:48.900227+00 2025-07-23 03:56:48.900236+00 f t 5098 \N \N f f +4125 2025-07-23 03:59:01.12031+00 2025-07-23 03:59:01.120321+00 f t 5099 \N \N f f +4126 2025-07-23 04:48:42.700895+00 2025-07-23 04:48:42.700904+00 f t 5100 \N \N f f +4127 2025-07-23 08:06:03.201604+00 2025-07-23 08:06:03.201613+00 f t 5101 \N \N f f +4128 2025-07-23 08:10:00.175578+00 2025-07-23 08:10:00.175589+00 f t 5102 \N \N f f +4129 2025-07-23 08:10:40.535224+00 2025-07-23 08:10:40.535232+00 f t 5103 \N \N f f +4130 2025-07-23 08:52:49.602353+00 2025-07-23 08:52:49.602361+00 f t 5104 \N \N f f +4131 2025-07-23 10:11:40.972437+00 2025-07-23 10:11:40.972445+00 f t 5105 \N \N f f +4132 2025-07-23 10:21:14.531214+00 2025-07-23 10:21:14.531224+00 f t 5106 \N \N f f +4133 2025-07-23 11:35:42.593294+00 2025-07-23 11:35:42.593302+00 f t 5107 \N \N f f +4134 2025-07-23 11:43:17.171044+00 2025-07-23 11:43:17.171052+00 f t 5108 \N \N f f +4135 2025-07-23 11:45:54.891991+00 2025-07-23 11:45:54.892001+00 f t 5109 \N \N f f +4136 2025-07-23 11:54:31.794687+00 2025-07-23 11:54:31.794696+00 f t 5110 \N \N f f +4137 2025-07-23 12:12:38.227528+00 2025-07-23 12:12:38.227535+00 f t 5111 \N \N f f +4138 2025-07-23 12:59:43.121723+00 2025-07-23 12:59:43.121731+00 f t 5112 \N \N f f +4139 2025-07-23 13:41:03.379568+00 2025-07-23 13:41:03.379578+00 f t 5113 \N \N f f +4140 2025-07-23 13:47:06.564621+00 2025-07-23 13:47:06.564633+00 f t 5114 \N \N f f +4141 2025-07-23 13:48:12.617973+00 2025-07-23 13:48:12.617981+00 f t 5115 \N \N f f +4142 2025-07-23 14:19:56.21802+00 2025-07-23 14:19:56.218028+00 f t 5116 \N \N f f +4143 2025-07-23 14:49:27.922725+00 2025-07-23 14:49:27.922734+00 f t 5117 \N \N f f +4144 2025-07-23 14:50:17.564872+00 2025-07-23 14:50:17.56488+00 f t 5118 \N \N f f +4145 2025-07-23 14:57:34.719851+00 2025-07-23 14:57:34.719859+00 f t 5119 \N \N f f +4146 2025-07-23 16:21:25.778367+00 2025-07-23 16:21:25.778375+00 f t 5121 \N \N f f +4147 2025-07-23 16:21:52.575735+00 2025-07-23 16:21:52.575743+00 f t 5122 \N \N f f +4148 2025-07-23 16:25:28.276014+00 2025-07-23 16:25:28.276023+00 f t 5123 \N \N f f +4149 2025-07-23 17:55:04.81502+00 2025-07-23 17:55:04.815033+00 f t 5124 \N \N f f +4150 2025-07-23 18:01:22.795632+00 2025-07-23 18:01:22.795642+00 f t 5125 \N \N f f +4151 2025-07-23 18:42:02.812351+00 2025-07-23 18:42:02.812365+00 f t 5126 \N \N f f +4152 2025-07-23 19:24:16.111998+00 2025-07-23 19:24:16.112006+00 f t 5127 \N \N f f +4153 2025-07-23 19:40:56.477972+00 2025-07-23 19:40:56.477983+00 f t 5128 \N \N f f +4154 2025-07-23 20:27:41.327668+00 2025-07-23 20:27:41.327676+00 f t 5129 \N \N f f +4155 2025-07-23 21:29:46.581778+00 2025-07-23 21:29:46.581786+00 f t 5130 \N \N f f +4156 2025-07-23 21:36:19.534901+00 2025-07-23 21:36:19.534908+00 f t 5131 \N \N f f +4157 2025-07-23 21:37:13.563081+00 2025-07-23 21:37:13.563088+00 f t 5132 \N \N f f +4158 2025-07-23 21:38:14.35552+00 2025-07-23 21:38:14.355526+00 f t 5133 \N \N f f +4159 2025-07-23 21:44:02.414404+00 2025-07-23 21:44:02.414416+00 f t 5134 \N \N f f +4160 2025-07-23 21:57:38.748978+00 2025-07-23 21:57:38.748986+00 f t 5135 \N \N f f +4161 2025-07-23 21:58:01.11443+00 2025-07-23 21:58:01.114438+00 f t 5136 \N \N f f +4162 2025-07-23 22:01:40.439397+00 2025-07-23 22:01:40.439407+00 f t 5137 \N \N f f +4163 2025-07-23 22:02:23.156141+00 2025-07-23 22:02:23.156148+00 f t 5138 \N \N f f +4164 2025-07-23 22:02:52.143479+00 2025-07-23 22:02:52.14349+00 f t 5139 \N \N f f +4165 2025-07-23 22:07:58.58097+00 2025-07-23 22:07:58.580979+00 f t 5140 \N \N f f +4166 2025-07-23 22:10:44.796451+00 2025-07-23 22:10:44.79646+00 f t 5141 \N \N f f +4167 2025-07-23 22:30:06.354378+00 2025-07-23 22:30:06.35439+00 f t 5142 \N \N f f +4168 2025-07-23 22:30:11.513807+00 2025-07-23 22:30:11.51382+00 f t 5143 \N \N f f +4169 2025-07-23 23:49:06.011505+00 2025-07-23 23:49:06.011517+00 f t 5144 \N \N f f +4170 2025-07-24 00:20:39.114296+00 2025-07-24 00:20:39.114305+00 f t 5145 \N \N f f +4171 2025-07-24 00:38:38.368268+00 2025-07-24 00:38:38.368279+00 f t 5146 \N \N f f +4172 2025-07-24 01:49:11.902702+00 2025-07-24 01:49:11.904011+00 f t 5147 \N \N f f +4173 2025-07-24 02:53:42.998976+00 2025-07-24 02:53:42.998985+00 f t 5148 \N \N f f +4174 2025-07-24 03:05:33.205348+00 2025-07-24 03:05:33.205356+00 f t 5149 \N \N f f +4175 2025-07-24 03:50:03.670441+00 2025-07-24 03:50:03.670455+00 f t 5150 \N \N f f +4176 2025-07-24 04:06:26.969027+00 2025-07-24 04:06:26.969039+00 f t 5151 \N \N f f +4177 2025-07-24 05:06:59.508224+00 2025-07-24 05:06:59.508236+00 f t 5152 \N \N f f +4178 2025-07-24 10:28:43.953474+00 2025-07-24 10:28:43.953486+00 f t 5153 \N \N f f +4179 2025-07-24 10:53:01.191894+00 2025-07-24 10:53:01.191903+00 f t 5154 \N \N f f +4180 2025-07-24 11:03:32.212634+00 2025-07-24 11:03:32.212643+00 f t 5155 \N \N f f +4181 2025-07-24 11:24:02.955247+00 2025-07-24 11:24:02.955259+00 f t 5156 \N \N f f +4182 2025-07-24 11:26:54.746303+00 2025-07-24 11:26:54.746315+00 f t 5157 \N \N f f +4183 2025-07-24 12:15:46.297214+00 2025-07-24 12:15:46.297223+00 f t 5158 \N \N f f +4184 2025-07-24 12:37:13.665526+00 2025-07-24 12:37:13.665533+00 f t 5159 \N \N f f +4185 2025-07-24 12:39:10.930752+00 2025-07-24 12:39:10.930765+00 f t 5160 \N \N f f +4186 2025-07-24 12:46:25.102076+00 2025-07-24 12:46:25.102086+00 f t 5161 \N \N f f +4187 2025-07-24 12:53:02.511709+00 2025-07-24 12:53:02.511719+00 f t 5162 \N \N f f +4188 2025-07-24 13:19:58.104749+00 2025-07-24 13:19:58.104758+00 f t 5163 \N \N f f +4189 2025-07-24 13:35:44.47011+00 2025-07-24 13:35:44.470117+00 f t 5164 \N \N f f +4190 2025-07-24 13:47:53.684238+00 2025-07-24 13:47:53.684245+00 f t 5165 \N \N f f +4191 2025-07-24 14:21:25.303024+00 2025-07-24 14:21:25.303031+00 f t 5166 \N \N f f +4192 2025-07-24 14:38:07.0834+00 2025-07-24 14:38:07.083407+00 f t 5167 \N \N f f +4193 2025-07-24 14:48:48.988179+00 2025-07-24 14:48:48.988185+00 f t 5169 \N \N f f +4194 2025-07-24 15:02:20.667207+00 2025-07-24 15:02:20.667215+00 f t 5171 \N \N f f +4195 2025-07-24 15:06:02.807216+00 2025-07-24 15:06:02.807228+00 f t 5172 \N \N f f +4196 2025-07-24 15:12:14.030743+00 2025-07-24 15:12:14.03075+00 f t 5173 \N \N f f +4197 2025-07-24 15:16:44.188331+00 2025-07-24 15:16:44.188338+00 f t 5174 \N \N f f +4198 2025-07-24 15:17:22.856645+00 2025-07-24 15:17:22.856653+00 f t 5175 \N \N f f +4199 2025-07-24 16:28:01.616511+00 2025-07-24 16:28:01.616521+00 f t 5178 \N \N f f +4200 2025-07-24 17:18:23.609348+00 2025-07-24 17:18:23.609356+00 f t 5179 \N \N f f +4201 2025-07-24 17:20:02.858568+00 2025-07-24 17:20:02.858581+00 f t 5180 \N \N f f +4202 2025-07-24 17:24:06.695095+00 2025-07-24 17:24:06.695102+00 f t 5181 \N \N f f +4203 2025-07-24 18:03:14.945895+00 2025-07-24 18:03:14.945903+00 f t 5182 \N \N f f +4204 2025-07-24 18:32:36.97905+00 2025-07-24 18:32:36.979061+00 f t 5183 \N \N f f +4205 2025-07-24 18:43:10.414595+00 2025-07-24 18:43:10.414602+00 f t 5184 \N \N f f +4206 2025-07-24 18:56:37.256373+00 2025-07-24 18:56:37.256385+00 f t 5185 \N \N f f +4207 2025-07-24 18:57:28.580757+00 2025-07-24 18:57:28.580767+00 f t 5186 \N \N f f +4208 2025-07-24 19:20:06.079734+00 2025-07-24 19:20:06.079745+00 f t 5187 \N \N f f +4209 2025-07-24 19:29:54.689477+00 2025-07-24 19:29:54.689489+00 f t 5188 \N \N f f +4210 2025-07-24 19:38:56.859927+00 2025-07-24 19:38:56.859939+00 f t 5190 \N \N f f +4211 2025-07-24 19:48:37.660379+00 2025-07-24 19:48:37.660387+00 f t 5191 \N \N f f +4212 2025-07-24 19:53:20.745817+00 2025-07-24 19:53:20.745825+00 f t 5192 \N \N f f +4213 2025-07-24 19:53:40.467563+00 2025-07-24 19:53:40.467571+00 f t 5193 \N \N f f +4214 2025-07-24 19:56:14.363447+00 2025-07-24 19:56:14.363454+00 f t 5194 \N \N f f +4215 2025-07-24 19:59:28.920474+00 2025-07-24 19:59:28.920484+00 f t 5195 \N \N f f +4216 2025-07-24 21:21:27.779482+00 2025-07-24 21:21:27.779494+00 f t 5197 \N \N f f +4217 2025-07-24 21:29:55.80925+00 2025-07-24 21:29:55.80926+00 f t 5198 \N \N f f +4218 2025-07-24 21:41:26.519203+00 2025-07-24 21:41:26.519212+00 f t 5199 \N \N f f +4219 2025-07-24 21:48:15.09927+00 2025-07-24 21:48:15.099279+00 f t 5200 \N \N f f +4220 2025-07-24 21:48:20.189408+00 2025-07-24 21:48:20.189414+00 f t 5201 \N \N f f +4221 2025-07-24 21:57:34.044522+00 2025-07-24 21:57:34.044533+00 f t 5202 \N \N f f +4222 2025-07-24 21:59:39.245107+00 2025-07-24 21:59:39.245118+00 f t 5203 \N \N f f +4223 2025-07-24 22:40:06.850489+00 2025-07-24 22:40:06.850498+00 f t 5205 \N \N f f +4224 2025-07-24 22:43:23.363877+00 2025-07-24 22:43:23.363891+00 f t 5206 \N \N f f +4225 2025-07-24 22:50:55.430267+00 2025-07-24 22:50:55.430275+00 f t 5207 \N \N f f +4226 2025-07-24 23:08:05.431019+00 2025-07-24 23:08:05.43103+00 f t 5208 \N \N f f +4227 2025-07-24 23:30:29.391191+00 2025-07-24 23:30:29.3912+00 f t 5209 \N \N f f +4228 2025-07-25 00:23:14.992264+00 2025-07-25 00:23:14.992275+00 f t 5210 \N \N f f +4229 2025-07-25 00:28:46.789425+00 2025-07-25 00:28:46.789434+00 f t 5211 \N \N f f +4230 2025-07-25 01:29:02.621168+00 2025-07-25 01:29:02.621181+00 f t 5212 \N \N f f +4231 2025-07-25 01:46:17.680241+00 2025-07-25 01:46:17.680248+00 f t 5213 \N \N f f +4232 2025-07-25 03:43:04.679253+00 2025-07-25 03:43:04.679264+00 f t 5214 \N \N f f +4233 2025-07-25 04:01:18.415259+00 2025-07-25 04:01:18.415267+00 f t 5215 \N \N f f +4234 2025-07-25 08:43:38.271589+00 2025-07-25 08:43:38.2716+00 f t 5216 \N \N f f +4235 2025-07-25 08:45:03.47903+00 2025-07-25 08:45:03.479043+00 f t 5217 \N \N f f +4236 2025-07-25 08:55:45.603284+00 2025-07-25 08:55:45.603293+00 f t 5218 \N \N f f +4237 2025-07-25 09:32:57.150724+00 2025-07-25 09:32:57.150735+00 f t 5219 \N \N f f +4238 2025-07-25 09:38:48.719094+00 2025-07-25 09:38:48.719102+00 f t 5220 \N \N f f +4239 2025-07-25 10:12:27.325991+00 2025-07-25 10:12:27.326001+00 f t 5221 \N \N f f +4240 2025-07-25 10:45:06.443971+00 2025-07-25 10:45:06.443982+00 f t 5222 \N \N f f +4241 2025-07-25 12:22:33.778049+00 2025-07-25 12:22:33.778058+00 f t 5223 \N \N f f +4242 2025-07-25 12:37:16.339055+00 2025-07-25 12:37:16.339063+00 f t 5224 \N \N f f +4243 2025-07-25 12:40:58.857412+00 2025-07-25 12:40:58.857421+00 f t 5225 \N \N f f +4244 2025-07-25 13:33:45.437316+00 2025-07-25 13:33:45.437326+00 f t 5226 \N \N f f +4245 2025-07-25 14:10:29.73212+00 2025-07-25 14:10:29.732128+00 f t 5228 \N \N f f +4246 2025-07-25 14:35:59.954272+00 2025-07-25 14:35:59.954281+00 f t 5229 \N \N f f +4247 2025-07-25 14:36:00.608076+00 2025-07-25 14:36:00.608083+00 f t 5230 \N \N f f +4248 2025-07-25 14:42:32.631853+00 2025-07-25 14:42:32.63186+00 f t 5231 \N \N f f +4249 2025-07-25 14:50:22.471434+00 2025-07-25 14:50:22.471449+00 f t 5232 \N \N f f +4250 2025-07-25 15:09:19.20134+00 2025-07-25 15:09:19.201347+00 f t 5233 \N \N f f +4251 2025-07-25 15:15:53.719037+00 2025-07-25 15:15:53.719047+00 f t 5234 \N \N f f +4252 2025-07-25 15:21:19.086201+00 2025-07-25 15:21:19.08621+00 f t 5235 \N \N f f +4253 2025-07-25 15:37:04.11549+00 2025-07-25 15:37:04.115502+00 f t 5236 \N \N f f +4254 2025-07-25 15:52:30.827012+00 2025-07-25 15:52:30.827025+00 f t 5238 \N \N f f +4255 2025-07-25 16:08:55.631689+00 2025-07-25 16:08:55.631699+00 f t 5240 \N \N f f +4256 2025-07-25 16:21:59.457253+00 2025-07-25 16:21:59.45726+00 f t 5241 \N \N f f +4257 2025-07-25 16:22:10.292229+00 2025-07-25 16:22:10.292238+00 f t 167 \N \N f f +4258 2025-07-25 16:27:03.783433+00 2025-07-25 16:27:03.783442+00 f t 5242 \N \N f f +4259 2025-07-25 16:41:37.631043+00 2025-07-25 16:41:37.631051+00 f t 5243 \N \N f f +4260 2025-07-25 16:51:46.629355+00 2025-07-25 16:51:46.629367+00 f t 5244 \N \N f f +4261 2025-07-25 16:59:53.118284+00 2025-07-25 16:59:53.118295+00 f t 5245 \N \N f f +4262 2025-07-25 17:11:32.707933+00 2025-07-25 17:11:32.707941+00 f t 5246 \N \N f f +4263 2025-07-25 17:21:20.192915+00 2025-07-25 17:21:20.192923+00 f t 5247 \N \N f f +4264 2025-07-25 17:45:30.159363+00 2025-07-25 17:45:30.159372+00 f t 5248 \N \N f f +4265 2025-07-25 19:34:43.772587+00 2025-07-25 19:34:43.772594+00 f t 5250 \N \N f f +4266 2025-07-25 20:33:34.602611+00 2025-07-25 20:33:34.602621+00 f t 5251 \N \N f f +4267 2025-07-25 21:30:33.861963+00 2025-07-25 21:30:33.861976+00 f t 5252 \N \N f f +4268 2025-07-25 21:48:58.594956+00 2025-07-25 21:48:58.594967+00 f t 5253 \N \N f f +4269 2025-07-25 22:14:34.067382+00 2025-07-25 22:14:34.06739+00 f t 5255 \N \N f f +4270 2025-07-25 23:26:06.104801+00 2025-07-25 23:26:06.104815+00 f t 5256 \N \N f f +4271 2025-07-25 23:26:55.024764+00 2025-07-25 23:26:55.024776+00 f t 5257 \N \N f f +4272 2025-07-25 23:29:01.826505+00 2025-07-25 23:29:01.826517+00 f t 5258 \N \N f f +4273 2025-07-26 00:02:46.461121+00 2025-07-26 00:02:46.461129+00 f t 5260 \N \N f f +4274 2025-07-26 00:05:57.095993+00 2025-07-26 00:05:57.096001+00 f t 5261 \N \N f f +4275 2025-07-26 00:32:31.588891+00 2025-07-26 00:32:31.588898+00 f t 5262 \N \N f f +4276 2025-07-26 00:38:25.111669+00 2025-07-26 00:38:25.111676+00 f t 5263 \N \N f f +4277 2025-07-26 01:56:30.782092+00 2025-07-26 01:56:30.782102+00 f t 5264 \N \N f f +4278 2025-07-26 02:03:32.872713+00 2025-07-26 02:03:32.872724+00 f t 5265 \N \N f f +4279 2025-07-26 02:24:58.424145+00 2025-07-26 02:24:58.424158+00 f t 5266 \N \N f f +4280 2025-07-26 06:06:24.780236+00 2025-07-26 06:06:24.780247+00 f t 5267 \N \N f f +4281 2025-07-26 07:03:23.142934+00 2025-07-26 07:03:23.142943+00 f t 5268 \N \N f f +4282 2025-07-26 10:02:59.27879+00 2025-07-26 10:02:59.278797+00 f t 5269 \N \N f f +4283 2025-07-26 11:48:26.617055+00 2025-07-26 11:48:26.617063+00 f t 5270 \N \N f f +4284 2025-07-26 11:48:36.386199+00 2025-07-26 11:48:36.386213+00 f t 5271 \N \N f f +4285 2025-07-26 12:19:17.511653+00 2025-07-26 12:19:17.51166+00 f t 5272 \N \N f f +4286 2025-07-26 12:24:02.088642+00 2025-07-26 12:24:02.088654+00 f t 5273 \N \N f f +4287 2025-07-26 12:38:31.493415+00 2025-07-26 12:38:31.493423+00 f t 5274 \N \N f f +4288 2025-07-26 12:44:08.789191+00 2025-07-26 12:44:08.789202+00 f t 5275 \N \N f f +4289 2025-07-26 12:59:41.909033+00 2025-07-26 12:59:41.909041+00 f t 5276 \N \N f f +4290 2025-07-26 13:18:16.982774+00 2025-07-26 13:18:16.982783+00 f t 5277 \N \N f f +4291 2025-07-26 13:23:02.997581+00 2025-07-26 13:23:02.997592+00 f t 5278 \N \N f f +4292 2025-07-26 13:32:48.059651+00 2025-07-26 13:32:48.05966+00 f t 5279 \N \N f f +4293 2025-07-26 13:36:35.972861+00 2025-07-26 13:36:35.972868+00 f t 5280 \N \N f f +4294 2025-07-26 13:51:15.022901+00 2025-07-26 13:51:15.022909+00 f t 5281 \N \N f f +4295 2025-07-26 14:31:24.956642+00 2025-07-26 14:31:24.95665+00 f t 5282 \N \N f f +4296 2025-07-26 14:40:26.41368+00 2025-07-26 14:40:26.413691+00 f t 4433 \N \N f f +4297 2025-07-26 14:41:19.408292+00 2025-07-26 14:41:19.4083+00 f t 5283 \N \N f f +4298 2025-07-26 14:49:55.782677+00 2025-07-26 14:49:55.782687+00 f t 5284 \N \N f f +4299 2025-07-26 14:54:44.532695+00 2025-07-26 14:54:44.532705+00 f t 5285 \N \N f f +4300 2025-07-26 15:01:30.571856+00 2025-07-26 15:01:30.571869+00 f t 5286 \N \N f f +4301 2025-07-26 15:05:14.667845+00 2025-07-26 15:05:14.667854+00 f t 5287 \N \N f f +4302 2025-07-26 15:05:25.807306+00 2025-07-26 15:05:25.807314+00 f t 5288 \N \N f f +4303 2025-07-26 15:35:44.843679+00 2025-07-26 15:35:44.843686+00 f t 313 \N \N f f +4304 2025-07-26 15:53:03.204458+00 2025-07-26 15:53:03.204469+00 f t 5289 \N \N f f +4305 2025-07-26 16:09:05.515704+00 2025-07-26 16:09:05.515713+00 f t 5290 \N \N f f +4306 2025-07-26 16:10:21.804343+00 2025-07-26 16:10:21.80435+00 f t 5291 \N \N f f +4307 2025-07-26 16:22:07.105948+00 2025-07-26 16:22:07.10596+00 f t 5292 \N \N f f +4308 2025-07-26 16:38:22.743546+00 2025-07-26 16:38:22.743556+00 f t 5293 \N \N f f +4309 2025-07-26 16:43:37.145852+00 2025-07-26 16:43:37.145862+00 f t 5294 \N \N f f +4310 2025-07-26 16:46:29.103448+00 2025-07-26 16:46:29.103456+00 f t 5295 \N \N f f +4311 2025-07-26 16:46:45.037517+00 2025-07-26 16:46:45.037525+00 f t 5296 \N \N f f +4312 2025-07-26 18:05:27.362762+00 2025-07-26 18:05:27.362769+00 f t 5297 \N \N f f +4313 2025-07-26 18:17:04.971086+00 2025-07-26 18:17:04.971095+00 f t 5298 \N \N f f +4314 2025-07-26 18:42:01.952093+00 2025-07-26 18:42:01.952104+00 f t 5299 \N \N f f +4315 2025-07-26 18:44:58.938127+00 2025-07-26 18:44:58.938138+00 f t 5300 \N \N f f +4316 2025-07-26 19:35:28.897607+00 2025-07-26 19:35:28.897615+00 f t 5301 \N \N f f +4317 2025-07-26 19:41:47.92588+00 2025-07-26 19:41:47.92589+00 f t 5302 \N \N f f +4318 2025-07-26 20:13:29.331296+00 2025-07-26 20:13:29.331306+00 f t 5303 \N \N f f +4319 2025-07-26 20:13:56.976833+00 2025-07-26 20:13:56.976845+00 f t 5304 \N \N f f +4320 2025-07-26 20:25:55.676744+00 2025-07-26 20:25:55.676752+00 f t 5305 \N \N f f +4321 2025-07-26 20:44:21.672048+00 2025-07-26 20:44:21.672057+00 f t 5306 \N \N f f +4322 2025-07-26 21:01:57.936112+00 2025-07-26 21:01:57.936122+00 f t 5307 \N \N f f +4323 2025-07-26 21:26:35.811165+00 2025-07-26 21:26:35.811176+00 f t 5308 \N \N f f +4324 2025-07-26 21:52:03.395562+00 2025-07-26 21:52:03.395571+00 f t 5309 \N \N f f +4325 2025-07-26 22:25:51.615114+00 2025-07-26 22:25:51.615127+00 f t 5310 \N \N f f +4326 2025-07-26 22:40:27.012065+00 2025-07-26 22:40:27.012075+00 f t 5311 \N \N f f +4327 2025-07-26 23:00:24.612514+00 2025-07-26 23:00:24.612528+00 f t 5312 \N \N f f +4328 2025-07-26 23:21:23.433319+00 2025-07-26 23:21:23.433329+00 f t 5313 \N \N f f +4329 2025-07-27 00:18:52.933957+00 2025-07-27 00:18:52.93397+00 f t 5314 \N \N f f +4330 2025-07-27 00:22:21.450501+00 2025-07-27 00:22:21.45051+00 f t 5315 \N \N f f +4331 2025-07-27 00:27:54.467962+00 2025-07-27 00:27:54.46797+00 f t 5316 \N \N f f +4332 2025-07-27 03:08:44.21179+00 2025-07-27 03:08:44.211802+00 f t 5317 \N \N f f +4333 2025-07-27 03:10:42.774693+00 2025-07-27 03:10:42.774701+00 f t 5318 \N \N f f +4334 2025-07-27 03:52:17.42053+00 2025-07-27 03:52:17.420542+00 f t 5319 \N \N f f +4335 2025-07-27 04:46:55.114192+00 2025-07-27 04:46:55.114206+00 f t 5320 \N \N f f +4336 2025-07-27 06:00:53.666035+00 2025-07-27 06:00:53.666047+00 f t 5321 \N \N f f +4337 2025-07-27 09:45:02.739494+00 2025-07-27 09:45:02.739509+00 f t 5322 \N \N f f +4338 2025-07-27 09:48:43.122692+00 2025-07-27 09:48:43.122701+00 f t 5323 \N \N f f +4339 2025-07-27 12:37:51.800251+00 2025-07-27 12:37:51.800259+00 f t 5324 \N \N f f +4340 2025-07-27 13:05:14.880513+00 2025-07-27 13:05:14.880524+00 f t 5325 \N \N f f +4341 2025-07-27 13:20:49.478603+00 2025-07-27 13:20:49.478615+00 f t 5326 \N \N f f +4342 2025-07-27 14:14:09.075675+00 2025-07-27 14:14:09.075687+00 f t 5327 \N \N f f +4343 2025-07-27 14:17:10.464295+00 2025-07-27 14:17:10.464308+00 f t 5328 \N \N f f +4344 2025-07-27 14:52:18.60004+00 2025-07-27 14:52:18.60005+00 f t 5330 \N \N f f +4345 2025-07-27 14:53:13.478375+00 2025-07-27 14:53:13.478383+00 f t 5331 \N \N f f +4346 2025-07-27 14:55:50.280746+00 2025-07-27 14:55:50.280757+00 f t 5332 \N \N f f +4347 2025-07-27 15:11:22.985755+00 2025-07-27 15:11:22.985764+00 f t 5333 \N \N f f +4348 2025-07-27 15:15:37.227507+00 2025-07-27 15:15:37.227515+00 f t 5334 \N \N f f +4349 2025-07-27 15:28:48.465589+00 2025-07-27 15:28:48.465598+00 f t 5335 \N \N f f +4350 2025-07-27 15:30:18.376241+00 2025-07-27 15:30:18.376251+00 f t 5336 \N \N f f +4351 2025-07-27 15:49:25.839592+00 2025-07-27 15:49:25.839603+00 f t 5337 \N \N f f +4352 2025-07-27 15:55:12.584279+00 2025-07-27 15:55:12.584291+00 f t 5338 \N \N f f +4353 2025-07-27 16:56:10.053226+00 2025-07-27 16:56:10.053237+00 f t 5339 \N \N f f +4354 2025-07-27 17:02:23.497516+00 2025-07-27 17:02:23.497524+00 f t 5340 \N \N f f +4355 2025-07-27 17:27:08.255078+00 2025-07-27 17:27:08.25509+00 f t 5341 \N \N f f +4356 2025-07-27 17:39:38.677133+00 2025-07-27 17:39:38.677142+00 f t 5343 \N \N f f +4357 2025-07-27 18:11:29.107854+00 2025-07-27 18:11:29.107861+00 f t 5344 \N \N f f +4358 2025-07-27 18:17:12.953822+00 2025-07-27 18:17:12.953834+00 f t 5345 \N \N f f +4359 2025-07-27 18:33:15.127053+00 2025-07-27 18:33:15.127062+00 f t 5346 \N \N f f +4360 2025-07-27 18:39:45.811935+00 2025-07-27 18:39:45.811945+00 f t 5347 \N \N f f +4361 2025-07-27 18:42:18.665342+00 2025-07-27 18:42:18.66535+00 f t 5348 \N \N f f +4362 2025-07-27 20:21:51.126169+00 2025-07-27 20:21:51.126179+00 f t 5349 \N \N f f +4363 2025-07-27 20:24:34.001295+00 2025-07-27 20:24:34.001303+00 f t 5350 \N \N f f +4364 2025-07-27 20:29:08.063944+00 2025-07-27 20:29:08.063952+00 f t 5351 \N \N f f +4365 2025-07-27 20:42:15.769267+00 2025-07-27 20:42:15.769276+00 f t 5352 \N \N f f +4366 2025-07-27 20:48:33.814161+00 2025-07-27 20:48:33.814168+00 f t 5353 \N \N f f +4367 2025-07-27 20:56:10.499221+00 2025-07-27 20:56:10.499229+00 f t 5354 \N \N f f +4368 2025-07-27 21:30:58.112311+00 2025-07-27 21:30:58.112324+00 f t 5355 \N \N f f +4369 2025-07-27 21:31:31.261572+00 2025-07-27 21:31:31.261584+00 f t 5356 \N \N f f +4370 2025-07-27 21:37:45.544709+00 2025-07-27 21:37:45.544717+00 f t 5357 \N \N f f +4371 2025-07-27 22:10:12.496294+00 2025-07-27 22:10:12.496301+00 f t 5358 \N \N f f +4372 2025-07-27 22:10:58.324722+00 2025-07-27 22:10:58.324734+00 f t 5359 \N \N f f +4373 2025-07-27 22:30:49.436692+00 2025-07-27 22:30:49.436702+00 f t 5360 \N \N f f +4374 2025-07-27 22:52:54.149505+00 2025-07-27 22:52:54.149517+00 f t 5361 \N \N f f +4375 2025-07-27 23:35:26.78628+00 2025-07-27 23:35:26.786288+00 f t 5362 \N \N f f +4376 2025-07-27 23:57:02.185263+00 2025-07-27 23:57:02.185278+00 f t 5363 \N \N f f +4377 2025-07-27 23:59:07.991452+00 2025-07-27 23:59:07.991466+00 f t 5364 \N \N f f +4378 2025-07-28 00:31:58.799032+00 2025-07-28 00:31:58.799044+00 f t 5365 \N \N f f +4379 2025-07-28 00:46:24.205299+00 2025-07-28 00:46:24.20531+00 f t 5366 \N \N f f +4380 2025-07-28 01:17:46.073741+00 2025-07-28 01:17:46.073753+00 f t 5367 \N \N f f +4381 2025-07-28 01:28:53.481304+00 2025-07-28 01:28:53.481318+00 f t 5368 \N \N f f +4382 2025-07-28 01:34:14.757309+00 2025-07-28 01:34:14.757321+00 f t 5369 \N \N f f +4383 2025-07-28 01:51:30.556463+00 2025-07-28 01:51:30.556476+00 f t 5370 \N \N f f +4384 2025-07-28 02:15:04.611577+00 2025-07-28 02:15:04.61159+00 f t 5371 \N \N f f +4385 2025-07-28 02:29:53.611335+00 2025-07-28 02:29:53.611342+00 f t 4071 \N \N f f +4386 2025-07-28 02:31:42.349938+00 2025-07-28 02:31:42.34995+00 f t 5372 \N \N f f +4387 2025-07-28 02:32:29.7398+00 2025-07-28 02:32:29.739808+00 f t 5373 \N \N f f +4388 2025-07-28 02:34:13.642491+00 2025-07-28 02:34:13.642501+00 f t 5374 \N \N f f +4389 2025-07-28 02:40:45.772656+00 2025-07-28 02:40:45.772668+00 f t 5375 \N \N f f +4390 2025-07-28 02:47:04.679602+00 2025-07-28 02:47:04.679613+00 f t 5376 \N \N f f +4391 2025-07-28 02:50:07.337676+00 2025-07-28 02:50:07.337689+00 f t 5377 \N \N f f +4392 2025-07-28 02:59:31.3245+00 2025-07-28 02:59:31.324509+00 f t 5378 \N \N f f +4393 2025-07-28 03:38:32.914714+00 2025-07-28 03:38:32.914726+00 f t 5379 \N \N f f +4394 2025-07-28 03:45:28.207128+00 2025-07-28 03:45:28.207169+00 f t 5380 \N \N f f +4395 2025-07-28 03:51:27.171647+00 2025-07-28 03:51:27.171656+00 f t 5381 \N \N f f +4396 2025-07-28 03:57:47.75232+00 2025-07-28 03:57:47.752332+00 f t 5382 \N \N f f +4397 2025-07-28 04:06:13.197627+00 2025-07-28 04:06:13.197635+00 f t 5383 \N \N f f +4398 2025-07-28 05:34:31.719589+00 2025-07-28 05:34:31.719599+00 f t 5384 \N \N f f +4399 2025-07-28 08:21:55.801276+00 2025-07-28 08:21:55.801283+00 f t 5385 \N \N f f +4400 2025-07-28 09:13:46.69948+00 2025-07-28 09:13:46.699488+00 f t 5386 \N \N f f +4401 2025-07-28 11:55:55.194931+00 2025-07-28 11:55:55.194943+00 f t 5387 \N \N f f +4402 2025-07-28 11:57:06.231258+00 2025-07-28 11:57:06.231268+00 f t 5388 \N \N f f +4403 2025-07-28 11:59:19.382546+00 2025-07-28 11:59:19.382558+00 f t 5389 \N \N f f +4404 2025-07-28 12:35:52.442924+00 2025-07-28 12:35:52.442936+00 f t 5390 \N \N f f +4405 2025-07-28 13:29:42.155105+00 2025-07-28 13:29:42.155115+00 f t 5391 \N \N f f +4406 2025-07-28 13:51:17.212871+00 2025-07-28 13:51:17.212878+00 f t 5392 \N \N f f +4407 2025-07-28 13:54:12.079673+00 2025-07-28 13:54:12.079682+00 f t 5393 \N \N f f +4408 2025-07-28 14:28:56.018986+00 2025-07-28 14:28:56.018993+00 f t 5394 \N \N f f +4409 2025-07-28 14:28:57.872739+00 2025-07-28 14:28:57.872746+00 f t 5395 \N \N f f +4411 2025-07-28 14:52:10.47751+00 2025-07-28 14:52:10.477523+00 f t 5398 \N \N f f +4412 2025-07-28 14:53:12.579648+00 2025-07-28 14:53:12.579659+00 f t 5399 \N \N f f +4413 2025-07-28 14:55:55.353631+00 2025-07-28 14:55:55.35364+00 f t 5400 \N \N f f +4414 2025-07-28 14:57:19.334412+00 2025-07-28 14:57:19.33442+00 f t 5401 \N \N f f +4415 2025-07-28 14:57:53.431754+00 2025-07-28 14:57:53.431761+00 f t 5402 \N \N f f +4416 2025-07-28 14:58:01.982125+00 2025-07-28 14:58:01.982137+00 f t 5403 \N \N f f +4417 2025-07-28 14:58:24.357765+00 2025-07-28 14:58:24.357775+00 f t 5404 \N \N f f +4410 2025-07-28 15:05:07.834629+00 2025-07-28 14:49:02.509669+00 f t 5397 \N \N f f +4418 2025-07-28 15:18:33.684842+00 2025-07-28 15:18:33.684852+00 f t 5405 \N \N f f +4419 2025-07-28 15:26:58.275616+00 2025-07-28 15:26:58.275624+00 f t 5406 \N \N f f +4420 2025-07-28 15:31:56.351669+00 2025-07-28 15:29:09.689979+00 f t 5407 \N \N f f +4421 2025-07-28 15:32:15.930976+00 2025-07-28 15:32:15.930983+00 f t 5408 \N \N f f +4422 2025-07-28 15:32:43.462504+00 2025-07-28 15:32:43.462514+00 f t 5409 \N \N f f +4423 2025-07-28 15:37:09.158857+00 2025-07-28 15:37:09.158866+00 f t 5410 \N \N f f +4424 2025-07-28 15:57:59.505325+00 2025-07-28 15:57:59.505337+00 f t 5412 \N \N f f +4425 2025-07-28 16:10:38.650153+00 2025-07-28 16:10:38.650163+00 f t 5413 \N \N f f +4426 2025-07-28 16:41:19.320001+00 2025-07-28 16:41:19.320009+00 f t 5414 \N \N f f +4427 2025-07-28 16:49:13.65818+00 2025-07-28 16:49:13.658189+00 f t 5415 \N \N f f +4428 2025-07-28 16:50:23.707324+00 2025-07-28 16:50:23.707332+00 f t 5416 \N \N f f +4429 2025-07-28 16:54:46.687775+00 2025-07-28 16:54:46.687783+00 f t 5417 \N \N f f +4430 2025-07-28 17:15:46.032033+00 2025-07-28 17:15:46.032039+00 f t 5418 \N \N f f +4431 2025-07-28 17:16:33.917995+00 2025-07-28 17:16:33.918007+00 f t 5419 \N \N f f +4432 2025-07-28 17:18:18.943266+00 2025-07-28 17:18:18.943274+00 f t 5420 \N \N f f +4433 2025-07-28 17:24:39.117783+00 2025-07-28 17:24:39.117791+00 f t 5421 \N \N f f +4434 2025-07-28 17:36:48.283335+00 2025-07-28 17:36:48.283342+00 f t 5422 \N \N f f +4435 2025-07-28 17:47:23.725747+00 2025-07-28 17:47:23.725758+00 f t 5423 \N \N f f +4436 2025-07-28 17:49:12.915967+00 2025-07-28 17:49:12.915974+00 f t 5424 \N \N f f +4437 2025-07-28 17:54:13.198455+00 2025-07-28 17:54:13.198466+00 f t 5425 \N \N f f +4438 2025-07-28 18:01:15.882463+00 2025-07-28 18:01:15.882475+00 f t 5426 \N \N f f +4439 2025-07-28 18:11:11.36094+00 2025-07-28 18:11:11.360952+00 f t 5427 \N \N f f +4440 2025-07-28 18:21:50.823501+00 2025-07-28 18:21:50.823511+00 f t 5429 \N \N f f +4441 2025-07-28 18:56:07.247653+00 2025-07-28 18:56:07.247727+00 f t 5430 \N \N f f +4442 2025-07-28 19:16:08.390508+00 2025-07-28 19:16:08.390518+00 f t 5431 \N \N f f +4443 2025-07-28 19:26:04.923474+00 2025-07-28 19:26:04.923487+00 f t 5432 \N \N f f +4444 2025-07-28 19:34:36.903691+00 2025-07-28 19:34:36.903698+00 f t 5433 \N \N f f +4445 2025-07-28 19:58:18.027471+00 2025-07-28 19:58:18.02748+00 f t 5434 \N \N f f +4446 2025-07-28 20:38:32.04727+00 2025-07-28 20:38:32.047277+00 f t 5435 \N \N f f +4447 2025-07-28 20:51:56.572369+00 2025-07-28 20:51:56.572376+00 f t 5436 \N \N f f +4448 2025-07-28 21:10:30.349777+00 2025-07-28 21:10:30.349787+00 f t 5437 \N \N f f +4449 2025-07-28 21:11:50.914329+00 2025-07-28 21:11:50.91434+00 f t 5438 \N \N f f +4450 2025-07-28 21:21:30.33371+00 2025-07-28 21:21:30.333721+00 f t 5439 \N \N f f +4451 2025-07-28 21:35:14.490177+00 2025-07-28 21:35:14.490184+00 f t 5440 \N \N f f +4452 2025-07-28 21:53:02.176812+00 2025-07-28 21:53:02.176823+00 f t 5441 \N \N f f +4453 2025-07-28 22:01:47.981736+00 2025-07-28 22:01:47.981748+00 f t 5442 \N \N f f +4454 2025-07-28 22:06:32.24125+00 2025-07-28 22:06:32.241261+00 f t 4604 \N \N f f +4455 2025-07-28 22:28:47.789399+00 2025-07-28 22:28:47.789407+00 f t 5443 \N \N f f +4456 2025-07-28 23:04:26.807015+00 2025-07-28 23:04:26.807026+00 f t 5445 \N \N f f +4457 2025-07-28 23:06:46.655543+00 2025-07-28 23:06:46.655554+00 f t 5446 \N \N f f +4458 2025-07-28 23:12:14.464277+00 2025-07-28 23:12:14.464288+00 f t 5447 \N \N f f +4459 2025-07-28 23:17:10.735776+00 2025-07-28 23:17:10.735783+00 f t 5448 \N \N f f +4460 2025-07-28 23:18:00.224026+00 2025-07-28 23:18:00.224034+00 f t 5449 \N \N f f +4461 2025-07-28 23:59:34.961188+00 2025-07-28 23:59:34.961198+00 f t 5450 \N \N f f +4462 2025-07-29 00:03:47.20527+00 2025-07-29 00:03:47.205281+00 f t 5237 \N \N f f +4463 2025-07-29 00:08:02.504353+00 2025-07-29 00:08:02.504362+00 f t 5451 \N \N f f +4464 2025-07-29 00:09:06.093447+00 2025-07-29 00:09:06.093455+00 f t 5452 \N \N f f +4465 2025-07-29 00:09:43.149435+00 2025-07-29 00:09:43.149443+00 f t 5453 \N \N f f +4466 2025-07-29 00:10:07.424441+00 2025-07-29 00:10:07.424452+00 f t 5454 \N \N f f +4467 2025-07-29 00:11:07.260006+00 2025-07-29 00:11:07.260018+00 f t 5455 \N \N f f +4468 2025-07-29 00:11:16.606171+00 2025-07-29 00:11:16.606179+00 f t 5456 \N \N f f +4469 2025-07-29 00:41:02.654695+00 2025-07-29 00:41:02.654704+00 f t 5457 \N \N f f +4470 2025-07-29 01:40:56.027248+00 2025-07-29 01:40:56.027258+00 f t 5458 \N \N f f +4471 2025-07-29 01:45:46.316237+00 2025-07-29 01:45:46.316249+00 f t 5459 \N \N f f +4472 2025-07-29 01:49:25.235815+00 2025-07-29 01:49:25.235823+00 f t 5460 \N \N f f +4473 2025-07-29 02:10:37.14255+00 2025-07-29 02:10:37.142558+00 f t 5461 \N \N f f +4474 2025-07-29 02:12:59.170322+00 2025-07-29 02:12:59.17033+00 f t 5462 \N \N f f +4475 2025-07-29 02:30:47.983278+00 2025-07-29 02:30:47.983287+00 f t 5463 \N \N f f +4476 2025-07-29 02:50:05.20399+00 2025-07-29 02:50:05.204005+00 f t 5464 \N \N f f +4477 2025-07-29 02:55:43.065338+00 2025-07-29 02:55:43.065349+00 f t 5465 \N \N f f +4478 2025-07-29 03:03:23.815746+00 2025-07-29 03:03:23.815756+00 f t 5466 \N \N f f +4479 2025-07-29 07:52:43.184822+00 2025-07-29 07:52:43.184833+00 f t 5467 \N \N f f +4480 2025-07-29 09:38:44.601793+00 2025-07-29 09:38:44.601803+00 f t 5468 \N \N f f +4481 2025-07-29 09:58:40.030068+00 2025-07-29 09:58:40.030077+00 f t 5469 \N \N f f +4482 2025-07-29 10:13:07.334204+00 2025-07-29 10:13:07.334214+00 f t 5470 \N \N f f +4483 2025-07-29 10:21:06.112786+00 2025-07-29 10:21:06.112795+00 f t 5471 \N \N f f +4484 2025-07-29 10:33:58.220472+00 2025-07-29 10:33:58.220479+00 f t 5472 \N \N f f +4485 2025-07-29 10:37:13.357645+00 2025-07-29 10:37:13.357653+00 f t 5473 \N \N f f +4486 2025-07-29 11:36:27.707799+00 2025-07-29 11:36:27.707809+00 f t 5474 \N \N f f +4487 2025-07-29 11:38:24.827372+00 2025-07-29 11:38:24.827383+00 f t 5475 \N \N f f +4488 2025-07-29 11:38:56.212453+00 2025-07-29 11:38:56.212461+00 f t 5476 \N \N f f +4489 2025-07-29 12:30:18.658327+00 2025-07-29 12:30:18.658338+00 f t 5477 \N \N f f +4490 2025-07-29 12:46:43.038062+00 2025-07-29 12:46:43.038072+00 f t 5478 \N \N f f +4491 2025-07-29 13:01:29.758259+00 2025-07-29 13:01:29.75827+00 f t 5480 \N \N f f +4492 2025-07-29 14:14:10.888475+00 2025-07-29 14:14:10.888487+00 f t 5481 \N \N f f +4493 2025-07-29 14:14:52.755628+00 2025-07-29 14:14:52.755636+00 f t 5482 \N \N f f +4494 2025-07-29 14:24:21.079984+00 2025-07-29 14:24:21.079992+00 f t 5483 \N \N f f +4495 2025-07-29 14:26:42.453542+00 2025-07-29 14:26:42.453554+00 f t 5484 \N \N f f +4496 2025-07-29 14:29:57.669202+00 2025-07-29 14:29:57.66921+00 f t 5485 \N \N f f +4497 2025-07-29 14:48:34.333691+00 2025-07-29 14:48:34.333699+00 f t 5487 \N \N f f +4498 2025-07-29 14:49:37.862958+00 2025-07-29 14:49:37.862969+00 f t 5489 \N \N f f +4499 2025-07-29 14:54:40.670889+00 2025-07-29 14:54:40.6709+00 f t 5490 \N \N f f +4500 2025-07-29 14:55:14.658197+00 2025-07-29 14:55:14.658204+00 f t 5491 \N \N f f +4501 2025-07-29 14:55:45.491331+00 2025-07-29 14:55:45.49134+00 f t 5492 \N \N f f +4502 2025-07-29 15:22:08.035661+00 2025-07-29 15:22:08.03567+00 f t 5493 \N \N f f +4503 2025-07-29 15:36:54.594753+00 2025-07-29 15:36:54.594759+00 f t 5494 \N \N f f +4504 2025-07-29 15:38:15.234108+00 2025-07-29 15:38:15.234116+00 f t 5495 \N \N f f +4505 2025-07-29 15:47:45.307185+00 2025-07-29 15:47:45.307196+00 f t 5496 \N \N f f +4506 2025-07-29 15:49:21.72211+00 2025-07-29 15:49:21.722123+00 f t 5497 \N \N f f +4507 2025-07-29 15:56:00.954621+00 2025-07-29 15:56:00.95463+00 f t 5498 \N \N f f +4508 2025-07-29 15:57:55.801889+00 2025-07-29 15:57:55.801898+00 f t 5499 \N \N f f +4509 2025-07-29 15:58:44.344278+00 2025-07-29 15:58:44.344292+00 f t 5500 \N \N f f +4510 2025-07-29 16:05:40.288941+00 2025-07-29 16:05:40.288953+00 f t 5501 \N \N f f +4511 2025-07-29 16:23:21.852758+00 2025-07-29 16:23:21.852771+00 f t 5502 \N \N f f +4512 2025-07-29 16:43:44.40674+00 2025-07-29 16:43:44.406751+00 f t 5503 \N \N f f +4513 2025-07-29 16:51:32.263891+00 2025-07-29 16:51:32.263899+00 f t 5504 \N \N f f +4514 2025-07-29 17:03:20.861099+00 2025-07-29 17:03:20.861112+00 f t 5505 \N \N f f +4515 2025-07-29 17:16:42.36188+00 2025-07-29 17:16:42.361889+00 f t 5506 \N \N f f +4516 2025-07-29 17:17:49.68925+00 2025-07-29 17:17:49.689261+00 f t 5507 \N \N f f +4517 2025-07-29 17:18:02.384385+00 2025-07-29 17:18:02.384398+00 f t 5508 \N \N f f +4518 2025-07-29 17:41:04.860799+00 2025-07-29 17:41:04.860812+00 f t 5509 \N \N f f +4519 2025-07-29 17:55:24.80054+00 2025-07-29 17:55:24.800553+00 f t 5510 \N \N f f +4520 2025-07-29 18:36:26.551649+00 2025-07-29 18:36:26.551662+00 f t 5511 \N \N f f +4521 2025-07-29 19:03:04.559689+00 2025-07-29 19:03:04.559697+00 f t 5512 \N \N f f +4522 2025-07-29 19:12:47.383228+00 2025-07-29 19:12:47.383237+00 f t 5514 \N \N f f +4523 2025-07-29 19:19:02.738016+00 2025-07-29 19:19:02.738029+00 f t 5515 \N \N f f +4524 2025-07-29 19:20:07.114982+00 2025-07-29 19:20:07.114996+00 f t 5516 \N \N f f +4525 2025-07-29 19:23:35.256346+00 2025-07-29 19:23:35.256356+00 f t 5517 \N \N f f +4526 2025-07-29 19:55:31.095818+00 2025-07-29 19:55:31.095829+00 f t 5518 \N \N f f +4527 2025-07-29 20:22:17.652941+00 2025-07-29 20:22:17.652951+00 f t 5519 \N \N f f +4528 2025-07-29 20:23:14.623692+00 2025-07-29 20:23:14.623702+00 f t 5520 \N \N f f +4529 2025-07-29 20:32:03.279478+00 2025-07-29 20:32:03.279487+00 f t 5521 \N \N f f +4530 2025-07-29 21:14:38.202194+00 2025-07-29 21:14:38.202204+00 f t 5524 \N \N f f +4531 2025-07-29 21:42:40.227674+00 2025-07-29 21:42:40.227683+00 f t 5525 \N \N f f +4532 2025-07-29 22:08:38.736574+00 2025-07-29 22:08:38.736584+00 f t 5526 \N \N f f +4533 2025-07-29 22:36:40.838433+00 2025-07-29 22:36:40.838444+00 f t 5527 \N \N f f +4534 2025-07-29 23:20:53.158224+00 2025-07-29 23:20:53.158237+00 f t 5529 \N \N f f +4535 2025-07-30 00:34:11.582291+00 2025-07-30 00:34:11.582304+00 f t 5530 \N \N f f +4536 2025-07-30 00:45:46.795099+00 2025-07-30 00:45:46.795106+00 f t 5531 \N \N f f +4537 2025-07-30 01:02:14.582785+00 2025-07-30 01:02:14.582796+00 f t 5532 \N \N f f +4538 2025-07-30 03:13:10.180076+00 2025-07-30 03:13:10.180084+00 f t 5533 \N \N f f +4539 2025-07-30 05:46:51.561455+00 2025-07-30 05:46:51.561463+00 f t 5534 \N \N f f +4540 2025-07-30 09:12:28.919455+00 2025-07-30 09:12:28.919467+00 f t 5535 \N \N f f +4541 2025-07-30 09:40:02.890929+00 2025-07-30 09:40:02.890943+00 f t 5536 \N \N f f +4542 2025-07-30 09:45:28.728428+00 2025-07-30 09:45:28.728442+00 f t 5537 \N \N f f +4543 2025-07-30 09:55:46.901455+00 2025-07-30 09:55:46.901463+00 f t 5538 \N \N f f +4544 2025-07-30 10:24:09.39837+00 2025-07-30 10:24:09.398381+00 f t 5539 \N \N f f +4545 2025-07-30 11:09:08.046416+00 2025-07-30 11:09:08.046426+00 f t 5540 \N \N f f +4546 2025-07-30 11:42:20.433981+00 2025-07-30 11:42:20.433988+00 f t 5541 \N \N f f +4547 2025-07-30 11:51:20.188174+00 2025-07-30 11:51:20.188183+00 f t 5542 \N \N f f +4548 2025-07-30 11:55:27.720585+00 2025-07-30 11:55:27.720596+00 f t 5543 \N \N f f +4549 2025-07-30 12:01:29.108049+00 2025-07-30 12:01:29.108056+00 f t 5544 \N \N f f +4550 2025-07-30 12:10:44.990245+00 2025-07-30 12:10:44.990257+00 f t 5545 \N \N f f +4552 2025-07-30 12:27:42.464565+00 2025-07-30 12:27:42.464573+00 f t 5546 \N \N f f +4553 2025-07-30 12:30:58.133511+00 2025-07-30 12:30:58.133521+00 f t 5547 \N \N f f +4554 2025-07-30 12:33:31.017156+00 2025-07-30 12:33:31.017163+00 f t 5548 \N \N f f +4555 2025-07-30 12:33:51.806389+00 2025-07-30 12:33:51.8064+00 f t 5549 \N \N f f +4556 2025-07-30 13:13:08.111845+00 2025-07-30 13:13:08.111853+00 f t 5550 \N \N f f +4557 2025-07-30 13:17:03.716399+00 2025-07-30 13:17:03.716412+00 f t 5551 \N \N f f +4558 2025-07-30 13:19:00.019677+00 2025-07-30 13:19:00.019686+00 f t 5552 \N \N f f +4551 2025-07-30 13:20:19.947474+00 2025-07-30 12:24:25.650269+00 f t 167 \N \N f f +4559 2025-07-30 13:58:06.310648+00 2025-07-30 13:58:06.310656+00 f t 5553 \N \N f f +4560 2025-07-30 14:08:54.846012+00 2025-07-30 14:08:54.846023+00 f t 5554 \N \N f f +4562 2025-07-30 14:35:32.158777+00 2025-07-30 14:35:32.158789+00 f t 5556 \N \N f f +4561 2025-07-30 14:37:14.944191+00 2025-07-30 14:27:18.389459+00 f t 5555 \N \N f f +4563 2025-07-30 15:14:34.899912+00 2025-07-30 15:14:34.899919+00 f t 5558 \N \N f f +4564 2025-07-30 15:18:22.173687+00 2025-07-30 15:18:22.173695+00 f t 5559 \N \N f f +4565 2025-07-30 15:27:29.076774+00 2025-07-30 15:27:29.076783+00 f t 5561 \N \N f f +4566 2025-07-30 15:28:53.149994+00 2025-07-30 15:28:53.150001+00 f t 5562 \N \N f f +4567 2025-07-30 15:38:14.888655+00 2025-07-30 15:38:14.888662+00 f t 5563 \N \N f f +4568 2025-07-30 15:40:11.845581+00 2025-07-30 15:40:11.845589+00 f t 5564 \N \N f f +4569 2025-07-30 16:05:54.307981+00 2025-07-30 16:05:54.307991+00 f t 5565 \N \N f f +4570 2025-07-30 16:36:22.685649+00 2025-07-30 16:36:22.685658+00 f t 5567 \N \N f f +4571 2025-07-30 16:46:31.397293+00 2025-07-30 16:46:31.3973+00 f t 5568 \N \N f f +4572 2025-07-30 17:28:54.71138+00 2025-07-30 17:28:54.71139+00 f t 5569 \N \N f f +4573 2025-07-30 17:47:44.281381+00 2025-07-30 17:47:44.281388+00 f t 5571 \N \N f f +4574 2025-07-30 17:58:14.94341+00 2025-07-30 17:56:46.195035+00 f t 5572 \N \N f f +4575 2025-07-30 18:02:11.010193+00 2025-07-30 18:02:11.010204+00 f t 5573 \N \N f f +4576 2025-07-30 18:26:31.192563+00 2025-07-30 18:26:31.192571+00 f t 5574 \N \N f f +4577 2025-07-30 18:27:18.272567+00 2025-07-30 18:27:18.272574+00 f t 5575 \N \N f f +4578 2025-07-30 18:31:22.992615+00 2025-07-30 18:31:22.992627+00 f t 5576 \N \N f f +4579 2025-07-30 18:32:44.50222+00 2025-07-30 18:32:44.502227+00 f t 5577 \N \N f f +4580 2025-07-30 18:53:36.986388+00 2025-07-30 18:53:36.986396+00 f t 5578 \N \N f f +4581 2025-07-30 19:48:01.786951+00 2025-07-30 19:48:01.786964+00 f t 5579 \N \N f f +4582 2025-07-30 20:02:24.008842+00 2025-07-30 20:02:24.008853+00 f t 5580 \N \N f f +4583 2025-07-30 20:18:13.011456+00 2025-07-30 20:18:13.011465+00 f t 5581 \N \N f f +4584 2025-07-30 20:46:34.046066+00 2025-07-30 20:46:34.046077+00 f t 5582 \N \N f f +4585 2025-07-30 20:49:50.332636+00 2025-07-30 20:49:50.332647+00 f t 5583 \N \N f f +4586 2025-07-30 21:27:58.946875+00 2025-07-30 21:27:58.946883+00 f t 5584 \N \N f f +4587 2025-07-30 21:55:23.98722+00 2025-07-30 21:55:23.98723+00 f t 5585 \N \N f f +4588 2025-07-30 21:55:41.997546+00 2025-07-30 21:55:41.997554+00 f t 5586 \N \N f f +4589 2025-07-30 21:57:52.094544+00 2025-07-30 21:57:52.094552+00 f t 5587 \N \N f f +4590 2025-07-30 22:36:55.853173+00 2025-07-30 22:36:55.853182+00 f t 5588 \N \N f f +4591 2025-07-30 23:28:24.221429+00 2025-07-30 23:28:24.221436+00 f t 5589 \N \N f f +4592 2025-07-30 23:44:18.579671+00 2025-07-30 23:44:18.579678+00 f t 5590 \N \N f f +4593 2025-07-30 23:52:44.470014+00 2025-07-30 23:52:44.470021+00 f t 5591 \N \N f f +4594 2025-07-30 23:55:16.702451+00 2025-07-30 23:55:16.702464+00 f t 5592 \N \N f f +4595 2025-07-31 00:13:15.546346+00 2025-07-31 00:13:15.546358+00 f t 5593 \N \N f f +4596 2025-07-31 00:37:25.766297+00 2025-07-31 00:37:25.766306+00 f t 5594 \N \N f f +4597 2025-07-31 00:42:34.753587+00 2025-07-31 00:42:34.7536+00 f t 5595 \N \N f f +4598 2025-07-31 00:48:21.992043+00 2025-07-31 00:48:21.992051+00 f t 5596 \N \N f f +4599 2025-07-31 00:53:46.824591+00 2025-07-31 00:53:46.824603+00 f t 5597 \N \N f f +4600 2025-07-31 01:36:24.057536+00 2025-07-31 01:36:24.057546+00 f t 5598 \N \N f f +4601 2025-07-31 01:46:00.004069+00 2025-07-31 01:46:00.004081+00 f t 5599 \N \N f f +4602 2025-07-31 02:15:10.699248+00 2025-07-31 02:15:10.699259+00 f t 5600 \N \N f f +4603 2025-07-31 02:27:12.171481+00 2025-07-31 02:27:12.171493+00 f t 5601 \N \N f f +4604 2025-07-31 02:29:12.948852+00 2025-07-31 02:29:12.948863+00 f t 5602 \N \N f f +4605 2025-07-31 03:11:28.392305+00 2025-07-31 03:11:28.392316+00 f t 5603 \N \N f f +4606 2025-07-31 04:45:13.800128+00 2025-07-31 04:45:13.800138+00 f t 5604 \N \N f f +4607 2025-07-31 06:22:38.228067+00 2025-07-31 06:22:38.228076+00 f t 5605 \N \N f f +4608 2025-07-31 06:26:46.392028+00 2025-07-31 06:26:46.392037+00 f t 5606 \N \N f f +4609 2025-07-31 07:13:12.736365+00 2025-07-31 07:13:12.736372+00 f t 5607 \N \N f f +4610 2025-07-31 09:52:41.271848+00 2025-07-31 09:52:41.271858+00 f t 5608 \N \N f f +4611 2025-07-31 09:56:31.891389+00 2025-07-31 09:56:31.891397+00 f t 5609 \N \N f f +4612 2025-07-31 10:53:55.725875+00 2025-07-31 10:53:55.725883+00 f t 5610 \N \N f f +4613 2025-07-31 11:22:26.80374+00 2025-07-31 11:22:26.803749+00 f t 5611 \N \N f f +4614 2025-07-31 11:24:01.923501+00 2025-07-31 11:24:01.923515+00 f t 5612 \N \N f f +4615 2025-07-31 11:31:21.850303+00 2025-07-31 11:31:21.850316+00 f t 5613 \N \N f f +4616 2025-07-31 11:35:12.910701+00 2025-07-31 11:35:12.910709+00 f t 5614 \N \N f f +4617 2025-07-31 11:50:37.194036+00 2025-07-31 11:50:37.194044+00 f t 5615 \N \N f f +4618 2025-07-31 11:51:51.111825+00 2025-07-31 11:51:51.111833+00 f t 5616 \N \N f f +4619 2025-07-31 12:23:13.007485+00 2025-07-31 12:23:13.007494+00 f t 5617 \N \N f f +4620 2025-07-31 12:34:37.126693+00 2025-07-31 12:34:37.126701+00 f t 5618 \N \N f f +4621 2025-07-31 13:02:09.329644+00 2025-07-31 13:02:09.329653+00 f t 5619 \N \N f f +4622 2025-07-31 13:15:14.504894+00 2025-07-31 13:15:14.504903+00 f t 5621 \N \N f f +4623 2025-07-31 13:29:53.639806+00 2025-07-31 13:29:53.639816+00 f t 5622 \N \N f f +4624 2025-07-31 13:32:54.601615+00 2025-07-31 13:32:54.601627+00 f t 5623 \N \N f f +4625 2025-07-31 13:54:37.223379+00 2025-07-31 13:54:37.223387+00 f t 5625 \N \N f f +4626 2025-07-31 14:04:53.36322+00 2025-07-31 14:04:53.363231+00 f t 5626 \N \N f f +4627 2025-07-31 14:29:21.613917+00 2025-07-31 14:29:21.613926+00 f t 5627 \N \N f f +4628 2025-07-31 14:43:09.300609+00 2025-07-31 14:43:09.300616+00 f t 5628 \N \N f f +4629 2025-07-31 15:05:22.244403+00 2025-07-31 15:05:22.244412+00 f t 5629 \N \N f f +4630 2025-07-31 15:43:53.592316+00 2025-07-31 15:43:53.592323+00 f t 5630 \N \N f f +4631 2025-07-31 16:08:12.693357+00 2025-07-31 16:08:12.693366+00 f t 5631 \N \N f f +4632 2025-07-31 16:27:12.039302+00 2025-07-31 16:27:12.039313+00 f t 5632 \N \N f f +4633 2025-07-31 16:45:40.232922+00 2025-07-31 16:45:40.23293+00 f t 5633 \N \N f f +4634 2025-07-31 16:47:22.217975+00 2025-07-31 16:47:22.217982+00 f t 5634 \N \N f f +4635 2025-07-31 16:47:46.773333+00 2025-07-31 16:47:46.773341+00 f t 5635 \N \N f f +4636 2025-07-31 16:48:37.53891+00 2025-07-31 16:48:37.53892+00 f t 5636 \N \N f f +4637 2025-07-31 16:49:27.42422+00 2025-07-31 16:49:27.424228+00 f t 5637 \N \N f f +4638 2025-07-31 16:50:35.092097+00 2025-07-31 16:50:35.092105+00 f t 5638 \N \N f f +4639 2025-07-31 16:55:38.613171+00 2025-07-31 16:55:38.613178+00 f t 5639 \N \N f f +4640 2025-07-31 17:51:09.610295+00 2025-07-31 17:51:09.610306+00 f t 5641 \N \N f f +4641 2025-07-31 17:52:11.508077+00 2025-07-31 17:52:11.508091+00 f t 5642 \N \N f f +4642 2025-07-31 18:04:15.170123+00 2025-07-31 18:04:15.170137+00 f t 5643 \N \N f f +4643 2025-07-31 18:05:11.325857+00 2025-07-31 18:05:11.32587+00 f t 5644 \N \N f f +4644 2025-07-31 18:09:53.264445+00 2025-07-31 18:09:53.264452+00 f t 5645 \N \N f f +4645 2025-07-31 18:16:16.05843+00 2025-07-31 18:16:16.05844+00 f t 5646 \N \N f f +4646 2025-07-31 18:18:22.057662+00 2025-07-31 18:18:22.057673+00 f t 5647 \N \N f f +4647 2025-07-31 18:26:59.927697+00 2025-07-31 18:26:59.927705+00 f t 5648 \N \N f f +4648 2025-07-31 18:34:38.743739+00 2025-07-31 18:34:38.743753+00 f t 5649 \N \N f f +4649 2025-07-31 18:46:03.778561+00 2025-07-31 18:46:03.778569+00 f t 5650 \N \N f f +4650 2025-07-31 18:47:14.490636+00 2025-07-31 18:47:14.490646+00 f t 5651 \N \N f f +4651 2025-07-31 18:47:21.569627+00 2025-07-31 18:47:21.569639+00 f t 5652 \N \N f f +4652 2025-07-31 18:52:00.847319+00 2025-07-31 18:52:00.847327+00 f t 5653 \N \N f f +4653 2025-07-31 18:52:29.458147+00 2025-07-31 18:52:29.458159+00 f t 5654 \N \N f f +4654 2025-07-31 19:12:06.324172+00 2025-07-31 19:12:06.324182+00 f t 5655 \N \N f f +4655 2025-07-31 19:32:23.539476+00 2025-07-31 19:32:23.539483+00 f t 5656 \N \N f f +4656 2025-07-31 20:07:09.486621+00 2025-07-31 20:07:09.486629+00 f t 5657 \N \N f f +4657 2025-07-31 20:25:00.498456+00 2025-07-31 20:25:00.498463+00 f t 5658 \N \N f f +4658 2025-07-31 20:26:55.701399+00 2025-07-31 20:26:55.701412+00 f t 5659 \N \N f f +4659 2025-07-31 21:09:18.32543+00 2025-07-31 21:09:18.325438+00 f t 5660 \N \N f f +4660 2025-07-31 22:44:44.783851+00 2025-07-31 22:44:44.783862+00 f t 5661 \N \N f f +4661 2025-07-31 22:46:25.319963+00 2025-07-31 22:46:25.319976+00 f t 5663 \N \N f f +4662 2025-07-31 22:48:50.576958+00 2025-07-31 22:48:50.576967+00 f t 5664 \N \N f f +4663 2025-07-31 22:52:16.318985+00 2025-07-31 22:52:16.318994+00 f t 5665 \N \N f f +4664 2025-07-31 22:55:43.977183+00 2025-07-31 22:55:43.977192+00 f t 5666 \N \N f f +4665 2025-07-31 22:56:20.897285+00 2025-07-31 22:56:20.897296+00 f t 5667 \N \N f f +4666 2025-07-31 22:58:41.423148+00 2025-07-31 22:58:41.423157+00 f t 5668 \N \N f f +4667 2025-07-31 22:58:47.811237+00 2025-07-31 22:58:47.811246+00 f t 5669 \N \N f f +4668 2025-07-31 23:00:06.836706+00 2025-07-31 23:00:06.836721+00 f t 5670 \N \N f f +4669 2025-08-01 00:03:31.920971+00 2025-08-01 00:03:31.92098+00 f t 5671 \N \N f f +4670 2025-08-01 00:42:24.977936+00 2025-08-01 00:42:24.977946+00 f t 4774 \N \N f f +4671 2025-08-01 00:57:46.842565+00 2025-08-01 00:57:46.842572+00 f t 5672 \N \N f f +4672 2025-08-01 00:58:21.834549+00 2025-08-01 00:58:21.834561+00 f t 5673 \N \N f f +4673 2025-08-01 01:08:23.529746+00 2025-08-01 01:08:23.52976+00 f t 5674 \N \N f f +4674 2025-08-01 01:08:47.066768+00 2025-08-01 01:08:47.066778+00 f t 5675 \N \N f f +4675 2025-08-01 01:22:37.375436+00 2025-08-01 01:22:37.375443+00 f t 5676 \N \N f f +4676 2025-08-01 01:50:27.939464+00 2025-08-01 01:50:27.939472+00 f t 5677 \N \N f f +4677 2025-08-01 02:24:40.653928+00 2025-08-01 02:24:40.653938+00 f t 5678 \N \N f f +4678 2025-08-01 03:19:45.905864+00 2025-08-01 03:19:45.905873+00 f t 5679 \N \N f f +4679 2025-08-01 03:21:19.231441+00 2025-08-01 03:21:19.231452+00 f t 5680 \N \N f f +4680 2025-08-01 04:35:36.800315+00 2025-08-01 04:35:36.800327+00 f t 5681 \N \N f f +4681 2025-08-01 04:36:54.221554+00 2025-08-01 04:36:54.221568+00 f t 293 \N \N f f +4682 2025-08-01 04:49:59.110878+00 2025-08-01 04:49:59.110886+00 f t 5682 \N \N f f +4683 2025-08-01 06:16:34.06695+00 2025-08-01 06:16:34.066959+00 f t 5683 \N \N f f +4684 2025-08-01 06:42:51.639228+00 2025-08-01 06:42:51.639241+00 f t 5684 \N \N f f +4685 2025-08-01 07:20:30.664104+00 2025-08-01 07:20:30.664116+00 f t 5685 \N \N f f +4686 2025-08-01 07:26:46.443825+00 2025-08-01 07:26:46.443834+00 f t 5686 \N \N f f +4687 2025-08-01 09:40:09.799524+00 2025-08-01 09:40:09.799538+00 f t 5687 \N \N f f +4688 2025-08-01 09:41:35.208298+00 2025-08-01 09:41:35.208306+00 f t 5688 \N \N f f +4689 2025-08-01 09:49:29.939231+00 2025-08-01 09:49:29.939239+00 f t 5689 \N \N f f +4690 2025-08-01 10:41:35.256624+00 2025-08-01 10:41:35.256632+00 f t 5690 \N \N f f +4691 2025-08-01 10:51:04.253012+00 2025-08-01 10:51:04.253024+00 f t 5691 \N \N f f +4692 2025-08-01 11:00:18.972753+00 2025-08-01 11:00:18.972761+00 f t 5692 \N \N f f +4693 2025-08-01 11:16:55.000746+00 2025-08-01 11:16:55.000758+00 f t 5693 \N \N f f +4694 2025-08-01 11:25:10.798374+00 2025-08-01 11:25:10.798391+00 f t 5694 \N \N f f +4695 2025-08-01 11:27:50.603385+00 2025-08-01 11:27:50.603393+00 f t 5695 \N \N f f +4696 2025-08-01 11:31:09.656519+00 2025-08-01 11:31:09.656529+00 f t 5696 \N \N f f +4697 2025-08-01 11:56:22.163492+00 2025-08-01 11:56:22.163502+00 f t 5697 \N \N f f +4698 2025-08-01 12:50:03.611062+00 2025-08-01 12:50:03.611075+00 f t 5698 \N \N f f +4699 2025-08-01 13:02:35.482388+00 2025-08-01 13:02:35.482395+00 f t 5699 \N \N f f +4700 2025-08-01 13:07:55.989931+00 2025-08-01 13:07:55.989938+00 f t 5700 \N \N f f +4701 2025-08-01 13:12:19.170317+00 2025-08-01 13:12:19.170325+00 f t 5701 \N \N f f +4702 2025-08-01 13:25:10.347726+00 2025-08-01 13:25:10.347735+00 f t 5702 \N \N f f +4703 2025-08-01 13:27:13.619215+00 2025-08-01 13:27:13.619229+00 f t 5703 \N \N f f +4704 2025-08-01 13:47:47.242549+00 2025-08-01 13:47:47.242562+00 f t 5704 \N \N f f +4705 2025-08-01 13:51:37.432368+00 2025-08-01 13:51:37.432375+00 f t 5705 \N \N f f +4706 2025-08-01 13:52:53.715402+00 2025-08-01 13:52:53.715412+00 f t 1941 \N \N f f +6794 2025-09-03 11:20:13.211298+00 2025-09-03 11:20:13.211307+00 f t 7879 \N \N f f +4708 2025-08-01 14:08:31.166669+00 2025-08-01 14:08:31.166677+00 f t 5707 \N \N f f +4709 2025-08-01 14:18:49.097896+00 2025-08-01 14:18:49.097904+00 f t 5708 \N \N f f +4710 2025-08-01 14:20:06.325102+00 2025-08-01 14:20:06.325115+00 f t 5709 \N \N f f +4711 2025-08-01 14:46:26.605372+00 2025-08-01 14:46:26.605381+00 f t 5710 \N \N f f +4712 2025-08-01 15:32:07.772443+00 2025-08-01 15:32:07.772455+00 f t 5711 \N \N f f +4713 2025-08-01 15:48:36.229372+00 2025-08-01 15:48:36.229379+00 f t 5712 \N \N f f +4714 2025-08-01 16:04:02.328549+00 2025-08-01 16:04:02.328564+00 f t 5713 \N \N f f +4715 2025-08-01 16:07:07.273743+00 2025-08-01 16:07:07.273752+00 f t 5714 \N \N f f +4716 2025-08-01 16:08:06.928419+00 2025-08-01 16:08:06.92843+00 f t 5715 \N \N f f +4717 2025-08-01 16:11:56.840797+00 2025-08-01 16:11:56.840804+00 f t 5716 \N \N f f +4718 2025-08-01 16:17:26.385713+00 2025-08-01 16:17:26.385724+00 f t 5717 \N \N f f +4719 2025-08-01 17:06:41.878159+00 2025-08-01 17:06:41.878166+00 f t 5718 \N \N f f +4720 2025-08-01 17:06:55.831319+00 2025-08-01 17:06:55.831327+00 f t 5719 \N \N f f +4721 2025-08-01 18:37:32.886474+00 2025-08-01 18:37:32.886486+00 f t 5721 \N \N f f +4722 2025-08-01 18:41:05.050243+00 2025-08-01 18:41:05.050252+00 f t 5722 \N \N f f +4723 2025-08-01 18:41:13.234767+00 2025-08-01 18:41:13.234773+00 f t 5723 \N \N f f +4724 2025-08-01 18:42:49.089915+00 2025-08-01 18:42:49.089923+00 f t 5724 \N \N f f +4725 2025-08-01 19:44:19.788453+00 2025-08-01 19:44:19.788464+00 f t 5725 \N \N f f +4726 2025-08-01 19:45:31.74225+00 2025-08-01 19:45:31.742257+00 f t 5726 \N \N f f +4727 2025-08-01 20:06:05.740638+00 2025-08-01 20:06:05.740647+00 f t 5727 \N \N f f +4707 2025-08-01 20:15:22.295707+00 2025-08-01 14:00:13.656838+00 f t 5706 \N \N f f +4728 2025-08-01 21:10:18.003952+00 2025-08-01 21:10:18.003964+00 f t 5728 \N \N f f +4729 2025-08-01 21:13:11.469065+00 2025-08-01 21:13:11.469077+00 f t 5729 \N \N f f +4730 2025-08-01 21:13:34.572067+00 2025-08-01 21:13:34.572077+00 f t 5730 \N \N f f +4731 2025-08-01 21:31:21.817492+00 2025-08-01 21:31:21.817501+00 f t 733 \N \N f f +4732 2025-08-01 21:40:30.698741+00 2025-08-01 21:40:30.698763+00 f t 5732 \N \N f f +4733 2025-08-01 22:22:00.654282+00 2025-08-01 22:22:00.654296+00 f t 5734 \N \N f f +4734 2025-08-01 22:22:25.213786+00 2025-08-01 22:22:25.213797+00 f t 5735 \N \N f f +4735 2025-08-01 22:23:34.974888+00 2025-08-01 22:23:34.974894+00 f t 5736 \N \N f f +4736 2025-08-01 22:36:53.437095+00 2025-08-01 22:36:53.437119+00 f t 5737 \N \N f f +4737 2025-08-01 22:52:01.182625+00 2025-08-01 22:52:01.182636+00 f t 5738 \N \N f f +4738 2025-08-01 22:57:47.384661+00 2025-08-01 22:57:47.384671+00 f t 5739 \N \N f f +4739 2025-08-01 23:10:54.408086+00 2025-08-01 23:10:54.408095+00 f t 5740 \N \N f f +4740 2025-08-01 23:11:37.082489+00 2025-08-01 23:11:37.082498+00 f t 5741 \N \N f f +4741 2025-08-02 01:54:11.796403+00 2025-08-02 01:54:11.79641+00 f t 5742 \N \N f f +4742 2025-08-02 02:28:02.520173+00 2025-08-02 02:28:02.520187+00 f t 5743 \N \N f f +4743 2025-08-02 02:28:57.151852+00 2025-08-02 02:28:57.15186+00 f t 5744 \N \N f f +4744 2025-08-02 02:34:52.828941+00 2025-08-02 02:34:52.828951+00 f t 5745 \N \N f f +4745 2025-08-02 02:38:41.748025+00 2025-08-02 02:38:41.748036+00 f t 5746 \N \N f f +4746 2025-08-02 02:39:58.045302+00 2025-08-02 02:39:58.04531+00 f t 5747 \N \N f f +4747 2025-08-02 03:10:28.210073+00 2025-08-02 03:10:28.21008+00 f t 5748 \N \N f f +4748 2025-08-02 04:37:26.376185+00 2025-08-02 04:37:26.376196+00 f t 5749 \N \N f f +4749 2025-08-02 04:50:06.336917+00 2025-08-02 04:50:06.336931+00 f t 5750 \N \N f f +4750 2025-08-02 05:44:44.256097+00 2025-08-02 05:44:44.256106+00 f t 5751 \N \N f f +4751 2025-08-02 06:51:29.207471+00 2025-08-02 06:51:29.20748+00 f t 5752 \N \N f f +4752 2025-08-02 10:45:28.283664+00 2025-08-02 10:45:28.283675+00 f t 5753 \N \N f f +4753 2025-08-02 12:03:45.116745+00 2025-08-02 12:03:45.116757+00 f t 5754 \N \N f f +4754 2025-08-02 12:29:42.464438+00 2025-08-02 12:29:42.464449+00 f t 5755 \N \N f f +4755 2025-08-02 12:54:58.338565+00 2025-08-02 12:54:58.338572+00 f t 5756 \N \N f f +4828 2025-08-04 01:58:32.837656+00 2025-08-04 01:58:32.837665+00 f t 5834 \N \N f f +4756 2025-08-02 13:25:25.926394+00 2025-08-02 13:12:56.044831+00 f t 5757 \N \N f f +4757 2025-08-02 13:33:35.62144+00 2025-08-02 13:33:35.621452+00 f t 5758 \N \N f f +4758 2025-08-02 14:02:51.187058+00 2025-08-02 14:02:51.187067+00 f t 5759 \N \N f f +4759 2025-08-02 15:01:57.234955+00 2025-08-02 15:01:57.234968+00 f t 5760 \N \N f f +4760 2025-08-02 15:04:44.905422+00 2025-08-02 15:04:44.905434+00 f t 5761 \N \N f f +4761 2025-08-02 15:08:59.276392+00 2025-08-02 15:08:59.276401+00 f t 5762 \N \N f f +4762 2025-08-02 15:14:15.205701+00 2025-08-02 15:14:15.205714+00 f t 5763 \N \N f f +4763 2025-08-02 16:07:51.719786+00 2025-08-02 16:07:51.719792+00 f t 5764 \N \N f f +4764 2025-08-02 17:12:56.146637+00 2025-08-02 17:12:56.146649+00 f t 5766 \N \N f f +4765 2025-08-02 17:26:53.058265+00 2025-08-02 17:26:53.058275+00 f t 5767 \N \N f f +4766 2025-08-02 17:39:42.778741+00 2025-08-02 17:39:42.778752+00 f t 5768 \N \N f f +4767 2025-08-02 17:54:04.614319+00 2025-08-02 17:54:04.614332+00 f t 5769 \N \N f f +4768 2025-08-02 17:56:01.036835+00 2025-08-02 17:56:01.036846+00 f t 5770 \N \N f f +4769 2025-08-02 18:09:03.350272+00 2025-08-02 18:09:03.350285+00 f t 5771 \N \N f f +4770 2025-08-02 18:57:59.145457+00 2025-08-02 18:57:59.145465+00 f t 5773 \N \N f f +4771 2025-08-02 19:21:57.608784+00 2025-08-02 19:21:57.608797+00 f t 5775 \N \N f f +4772 2025-08-02 19:24:22.426568+00 2025-08-02 19:24:22.426577+00 f t 5776 \N \N f f +4773 2025-08-02 19:27:58.942731+00 2025-08-02 19:27:58.942741+00 f t 5777 \N \N f f +4774 2025-08-02 19:28:08.200722+00 2025-08-02 19:28:08.200735+00 f t 5778 \N \N f f +4775 2025-08-02 19:30:27.269062+00 2025-08-02 19:30:27.269075+00 f t 5779 \N \N f f +4776 2025-08-02 19:34:04.335358+00 2025-08-02 19:34:04.335367+00 f t 5780 \N \N f f +4777 2025-08-02 20:42:53.43378+00 2025-08-02 20:42:53.433787+00 f t 5782 \N \N f f +4778 2025-08-02 20:44:02.64428+00 2025-08-02 20:44:02.644293+00 f t 5783 \N \N f f +4779 2025-08-02 20:44:40.392275+00 2025-08-02 20:44:40.392285+00 f t 5784 \N \N f f +4780 2025-08-02 21:02:53.280819+00 2025-08-02 21:02:53.280831+00 f t 5785 \N \N f f +4781 2025-08-02 21:32:22.39183+00 2025-08-02 21:32:22.391841+00 f t 5786 \N \N f f +4782 2025-08-02 22:07:56.329381+00 2025-08-02 22:07:56.329392+00 f t 5787 \N \N f f +4783 2025-08-02 22:20:19.807525+00 2025-08-02 22:20:19.807538+00 f t 5788 \N \N f f +4784 2025-08-02 22:31:19.337456+00 2025-08-02 22:31:19.337464+00 f t 5789 \N \N f f +4785 2025-08-02 22:38:52.14448+00 2025-08-02 22:38:52.144489+00 f t 5790 \N \N f f +4786 2025-08-02 22:58:56.825735+00 2025-08-02 22:58:56.825746+00 f t 5791 \N \N f f +4787 2025-08-03 03:06:42.735667+00 2025-08-03 03:06:42.735675+00 f t 5792 \N \N f f +4788 2025-08-03 04:20:41.274879+00 2025-08-03 04:20:41.274888+00 f t 5793 \N \N f f +4789 2025-08-03 05:18:56.119321+00 2025-08-03 05:18:56.119331+00 f t 5794 \N \N f f +4790 2025-08-03 08:11:43.094612+00 2025-08-03 08:11:43.094622+00 f t 5795 \N \N f f +4791 2025-08-03 08:14:04.132921+00 2025-08-03 08:14:04.132934+00 f t 5796 \N \N f f +4792 2025-08-03 08:24:26.767013+00 2025-08-03 08:24:26.767022+00 f t 5797 \N \N f f +4793 2025-08-03 08:27:51.575692+00 2025-08-03 08:27:51.575699+00 f t 5798 \N \N f f +4794 2025-08-03 08:37:11.392217+00 2025-08-03 08:37:11.392226+00 f t 5799 \N \N f f +4795 2025-08-03 11:34:05.361989+00 2025-08-03 11:34:05.361999+00 f t 5800 \N \N f f +4796 2025-08-03 12:24:35.310854+00 2025-08-03 12:24:35.310865+00 f t 5801 \N \N f f +4797 2025-08-03 12:37:58.081251+00 2025-08-03 12:37:58.081258+00 f t 5802 \N \N f f +4798 2025-08-03 14:03:15.027069+00 2025-08-03 14:03:15.027078+00 f t 5803 \N \N f f +4799 2025-08-03 14:38:57.039023+00 2025-08-03 14:38:57.039031+00 f t 5804 \N \N f f +4800 2025-08-03 14:46:09.699524+00 2025-08-03 14:46:09.699534+00 f t 5805 \N \N f f +4801 2025-08-03 15:42:07.691421+00 2025-08-03 15:42:07.691432+00 f t 5806 \N \N f f +4802 2025-08-03 16:13:09.85368+00 2025-08-03 16:13:09.853689+00 f t 5807 \N \N f f +4803 2025-08-03 18:16:35.93273+00 2025-08-03 18:16:35.932739+00 f t 5808 \N \N f f +4804 2025-08-03 19:12:39.111839+00 2025-08-03 19:12:39.111848+00 f t 5809 \N \N f f +4805 2025-08-03 19:22:53.108278+00 2025-08-03 19:22:53.108285+00 f t 5810 \N \N f f +4806 2025-08-03 19:31:39.239028+00 2025-08-03 19:31:39.239036+00 f t 5812 \N \N f f +4807 2025-08-03 19:43:46.916796+00 2025-08-03 19:43:46.916804+00 f t 5813 \N \N f f +4808 2025-08-03 19:58:49.213169+00 2025-08-03 19:58:49.21318+00 f t 5814 \N \N f f +4809 2025-08-03 20:01:25.600261+00 2025-08-03 20:01:25.600269+00 f t 5815 \N \N f f +4810 2025-08-03 20:53:03.120634+00 2025-08-03 20:53:03.120644+00 f t 5816 \N \N f f +4811 2025-08-03 21:15:57.740122+00 2025-08-03 21:15:57.740134+00 f t 5817 \N \N f f +4812 2025-08-03 21:16:04.76896+00 2025-08-03 21:16:04.768971+00 f t 5818 \N \N f f +4813 2025-08-03 21:16:21.743197+00 2025-08-03 21:16:21.743208+00 f t 5819 \N \N f f +4814 2025-08-03 21:44:01.431833+00 2025-08-03 21:44:01.431848+00 f t 5820 \N \N f f +4815 2025-08-03 22:32:50.894791+00 2025-08-03 22:32:50.8948+00 f t 5821 \N \N f f +4816 2025-08-03 22:40:18.669233+00 2025-08-03 22:40:18.669242+00 f t 5822 \N \N f f +4817 2025-08-03 23:01:36.370464+00 2025-08-03 23:01:36.370473+00 f t 5823 \N \N f f +4818 2025-08-03 23:14:04.845558+00 2025-08-03 23:14:04.845569+00 f t 5824 \N \N f f +4819 2025-08-03 23:27:54.227989+00 2025-08-03 23:27:54.227996+00 f t 5825 \N \N f f +4820 2025-08-03 23:30:26.225546+00 2025-08-03 23:30:26.225556+00 f t 5826 \N \N f f +4821 2025-08-03 23:32:34.064235+00 2025-08-03 23:32:34.064246+00 f t 5827 \N \N f f +4822 2025-08-03 23:37:46.61468+00 2025-08-03 23:37:46.614691+00 f t 5828 \N \N f f +4823 2025-08-04 00:02:32.833336+00 2025-08-04 00:02:32.833344+00 f t 5829 \N \N f f +4824 2025-08-04 00:09:09.752264+00 2025-08-04 00:09:09.752273+00 f t 5830 \N \N f f +4825 2025-08-04 00:22:15.556291+00 2025-08-04 00:22:15.556299+00 f t 5831 \N \N f f +4826 2025-08-04 00:52:07.570947+00 2025-08-04 00:52:07.570956+00 f t 5832 \N \N f f +4827 2025-08-04 01:51:06.806848+00 2025-08-04 01:51:06.806858+00 f t 5833 \N \N f f +4829 2025-08-04 03:23:41.052824+00 2025-08-04 03:23:41.052834+00 f t 5835 \N \N f f +4830 2025-08-04 03:24:53.557379+00 2025-08-04 03:24:53.557404+00 f t 5836 \N \N f f +4831 2025-08-04 03:58:05.238174+00 2025-08-04 03:58:05.238184+00 f t 5837 \N \N f f +4832 2025-08-04 07:56:42.250662+00 2025-08-04 07:56:42.250671+00 f t 5838 \N \N f f +4833 2025-08-04 07:59:48.125527+00 2025-08-04 07:59:48.125538+00 f t 5839 \N \N f f +4834 2025-08-04 08:54:34.608997+00 2025-08-04 08:54:34.609007+00 f t 5840 \N \N f f +4835 2025-08-04 09:19:53.446585+00 2025-08-04 09:19:53.446597+00 f t 5841 \N \N f f +4836 2025-08-04 09:33:32.408469+00 2025-08-04 09:33:32.408477+00 f t 5842 \N \N f f +4837 2025-08-04 09:39:04.179442+00 2025-08-04 09:39:04.179556+00 f t 5843 \N \N f f +4838 2025-08-04 11:52:35.088278+00 2025-08-04 11:52:35.088287+00 f t 5844 \N \N f f +4839 2025-08-04 13:08:20.975472+00 2025-08-04 13:08:20.975484+00 f t 5845 \N \N f f +4840 2025-08-04 13:09:32.683343+00 2025-08-04 13:09:32.683355+00 f t 5846 \N \N f f +4841 2025-08-04 13:16:35.016359+00 2025-08-04 13:16:35.016366+00 f t 5847 \N \N f f +4842 2025-08-04 13:18:16.708461+00 2025-08-04 13:18:16.708472+00 f t 5848 \N \N f f +4843 2025-08-04 13:26:32.527965+00 2025-08-04 13:26:32.527974+00 f t 5849 \N \N f f +4844 2025-08-04 13:50:26.676276+00 2025-08-04 13:50:26.676285+00 f t 5850 \N \N f f +4845 2025-08-04 14:02:13.283894+00 2025-08-04 14:02:13.283905+00 f t 5851 \N \N f f +4846 2025-08-04 14:17:21.481237+00 2025-08-04 14:17:21.481276+00 f t 5852 \N \N f f +4847 2025-08-04 14:29:15.36589+00 2025-08-04 14:29:15.365899+00 f t 5853 \N \N f f +4848 2025-08-04 14:40:36.008523+00 2025-08-04 14:40:36.008532+00 f t 5854 \N \N f f +4849 2025-08-04 14:55:35.636486+00 2025-08-04 14:55:35.636498+00 f t 5855 \N \N f f +4850 2025-08-04 15:04:21.78699+00 2025-08-04 15:04:21.787002+00 f t 5856 \N \N f f +4851 2025-08-04 15:06:09.562883+00 2025-08-04 15:06:09.562893+00 f t 5857 \N \N f f +4852 2025-08-04 15:09:23.418048+00 2025-08-04 15:09:23.418057+00 f t 5858 \N \N f f +4853 2025-08-04 15:10:48.614731+00 2025-08-04 15:10:48.614743+00 f t 5859 \N \N f f +4854 2025-08-04 15:20:33.902621+00 2025-08-04 15:20:33.902634+00 f t 5861 \N \N f f +4855 2025-08-04 15:22:57.460474+00 2025-08-04 15:22:57.460483+00 f t 5862 \N \N f f +4856 2025-08-04 15:26:28.34585+00 2025-08-04 15:26:28.345859+00 f t 5863 \N \N f f +4857 2025-08-04 15:28:16.637484+00 2025-08-04 15:28:16.637493+00 f t 5864 \N \N f f +4858 2025-08-04 15:30:44.167471+00 2025-08-04 15:30:44.16748+00 f t 5865 \N \N f f +4859 2025-08-04 15:33:28.531858+00 2025-08-04 15:33:28.531873+00 f t 5866 \N \N f f +4860 2025-08-04 15:41:31.686208+00 2025-08-04 15:41:31.686221+00 f t 5867 \N \N f f +4861 2025-08-04 15:52:40.280386+00 2025-08-04 15:52:40.280394+00 f t 5868 \N \N f f +4862 2025-08-04 16:21:30.206611+00 2025-08-04 16:21:30.206623+00 f t 5869 \N \N f f +4863 2025-08-04 16:53:36.077085+00 2025-08-04 16:53:36.077094+00 f t 5870 \N \N f f +4864 2025-08-04 17:03:12.691479+00 2025-08-04 17:03:12.691492+00 f t 5871 \N \N f f +4865 2025-08-04 17:09:36.438685+00 2025-08-04 17:09:36.438697+00 f t 5872 \N \N f f +4866 2025-08-04 17:12:42.937485+00 2025-08-04 17:12:42.937494+00 f t 5873 \N \N f f +4867 2025-08-04 17:19:34.986482+00 2025-08-04 17:19:34.986495+00 f t 5875 \N \N f f +4868 2025-08-04 17:38:43.420415+00 2025-08-04 17:38:43.420423+00 f t 5877 \N \N f f +4869 2025-08-04 17:39:23.043311+00 2025-08-04 17:39:23.043322+00 f t 5878 \N \N f f +4870 2025-08-04 17:49:53.762704+00 2025-08-04 17:49:53.762716+00 f t 5879 \N \N f f +4871 2025-08-04 17:55:48.697847+00 2025-08-04 17:55:48.697855+00 f t 5880 \N \N f f +4872 2025-08-04 17:57:08.037651+00 2025-08-04 17:57:08.037664+00 f t 5881 \N \N f f +4873 2025-08-04 18:20:23.410983+00 2025-08-04 18:20:23.410993+00 f t 5882 \N \N f f +4874 2025-08-04 18:33:07.785144+00 2025-08-04 18:33:07.785154+00 f t 5883 \N \N f f +4875 2025-08-04 18:51:28.595059+00 2025-08-04 18:51:28.595071+00 f t 5884 \N \N f f +4876 2025-08-04 19:47:55.872206+00 2025-08-04 19:47:55.872215+00 f t 5885 \N \N f f +4877 2025-08-04 20:05:06.956257+00 2025-08-04 20:05:06.956268+00 f t 5886 \N \N f f +4878 2025-08-04 20:16:01.642305+00 2025-08-04 20:16:01.642319+00 f t 5887 \N \N f f +4879 2025-08-04 20:17:58.923078+00 2025-08-04 20:17:58.92309+00 f t 5888 \N \N f f +4880 2025-08-04 20:22:01.948131+00 2025-08-04 20:22:01.948145+00 f t 5889 \N \N f f +4881 2025-08-04 20:29:30.712943+00 2025-08-04 20:29:30.712951+00 f t 5890 \N \N f f +4882 2025-08-04 20:29:31.658902+00 2025-08-04 20:29:31.658915+00 f t 5891 \N \N f f +4883 2025-08-04 20:34:38.053233+00 2025-08-04 20:34:38.053244+00 f t 5892 \N \N f f +4884 2025-08-04 20:54:57.052312+00 2025-08-04 20:54:57.052324+00 f t 5893 \N \N f f +4885 2025-08-04 21:00:03.118199+00 2025-08-04 21:00:03.118212+00 f t 5894 \N \N f f +4886 2025-08-04 21:20:57.291798+00 2025-08-04 21:20:57.291807+00 f t 5895 \N \N f f +4887 2025-08-04 21:31:42.548967+00 2025-08-04 21:31:42.548976+00 f t 5896 \N \N f f +4888 2025-08-04 22:33:40.995541+00 2025-08-04 22:33:40.99555+00 f t 5897 \N \N f f +4889 2025-08-04 22:35:17.409571+00 2025-08-04 22:35:17.409583+00 f t 5898 \N \N f f +4890 2025-08-04 22:37:59.070382+00 2025-08-04 22:37:59.070391+00 f t 5899 \N \N f f +4891 2025-08-04 22:38:12.627204+00 2025-08-04 22:38:12.627212+00 f t 5900 \N \N f f +4892 2025-08-04 22:40:26.337064+00 2025-08-04 22:40:26.337076+00 f t 5901 \N \N f f +4893 2025-08-04 22:52:29.350859+00 2025-08-04 22:52:29.350867+00 f t 5902 \N \N f f +4894 2025-08-04 23:00:55.39785+00 2025-08-04 23:00:55.397858+00 f t 5903 \N \N f f +4895 2025-08-04 23:10:54.093871+00 2025-08-04 23:10:54.093882+00 f t 5904 \N \N f f +4896 2025-08-04 23:27:14.711358+00 2025-08-04 23:27:14.71137+00 f t 5905 \N \N f f +4897 2025-08-04 23:29:24.901701+00 2025-08-04 23:29:24.901713+00 f t 5906 \N \N f f +4898 2025-08-04 23:52:11.865398+00 2025-08-04 23:52:11.86544+00 f t 5907 \N \N f f +4899 2025-08-05 00:47:20.949755+00 2025-08-05 00:47:20.949763+00 f t 5908 \N \N f f +4900 2025-08-05 00:51:19.109025+00 2025-08-05 00:51:19.109038+00 f t 5909 \N \N f f +4901 2025-08-05 01:21:09.707105+00 2025-08-05 01:21:09.707117+00 f t 5910 \N \N f f +4902 2025-08-05 01:29:45.655114+00 2025-08-05 01:29:45.655126+00 f t 5911 \N \N f f +4903 2025-08-05 01:41:51.831479+00 2025-08-05 01:41:51.831492+00 f t 5912 \N \N f f +4904 2025-08-05 01:59:53.03269+00 2025-08-05 01:59:53.032702+00 f t 5913 \N \N f f +4905 2025-08-05 02:21:04.628865+00 2025-08-05 02:21:04.628876+00 f t 5914 \N \N f f +4906 2025-08-05 02:22:25.753144+00 2025-08-05 02:22:25.753155+00 f t 5915 \N \N f f +4907 2025-08-05 04:19:15.816243+00 2025-08-05 04:19:15.816255+00 f t 5916 \N \N f f +4908 2025-08-05 07:21:56.699707+00 2025-08-05 07:21:56.699717+00 f t 5917 \N \N f f +4909 2025-08-05 10:35:34.131097+00 2025-08-05 10:35:34.131112+00 f t 5918 \N \N f f +4910 2025-08-05 10:54:00.98658+00 2025-08-05 10:54:00.986591+00 f t 5919 \N \N f f +4911 2025-08-05 10:56:06.169625+00 2025-08-05 10:56:06.169636+00 f t 5920 \N \N f f +4912 2025-08-05 11:00:02.047838+00 2025-08-05 11:00:02.047852+00 f t 5921 \N \N f f +4913 2025-08-05 11:39:49.460811+00 2025-08-05 11:39:49.460823+00 f t 5922 \N \N f f +4914 2025-08-05 11:41:48.098128+00 2025-08-05 11:41:48.098136+00 f t 5923 \N \N f f +4915 2025-08-05 11:47:56.717979+00 2025-08-05 11:47:56.717988+00 f t 5924 \N \N f f +4916 2025-08-05 11:53:54.329115+00 2025-08-05 11:53:54.329128+00 f t 5925 \N \N f f +4917 2025-08-05 12:11:05.713386+00 2025-08-05 12:11:05.713398+00 f t 5926 \N \N f f +4918 2025-08-05 12:11:12.240984+00 2025-08-05 12:11:12.240992+00 f t 5927 \N \N f f +4919 2025-08-05 13:03:43.742425+00 2025-08-05 13:03:43.742436+00 f t 5928 \N \N f f +4920 2025-08-05 13:16:54.736982+00 2025-08-05 13:16:54.736994+00 f t 5929 \N \N f f +4921 2025-08-05 13:32:45.28986+00 2025-08-05 13:32:45.289869+00 f t 5930 \N \N f f +4922 2025-08-05 14:12:47.637048+00 2025-08-05 14:12:47.637056+00 f t 5931 \N \N f f +4923 2025-08-05 14:17:11.492543+00 2025-08-05 14:17:11.492554+00 f t 5932 \N \N f f +4924 2025-08-05 14:24:05.296167+00 2025-08-05 14:24:05.296177+00 f t 5933 \N \N f f +4925 2025-08-05 14:45:23.398846+00 2025-08-05 14:45:23.398855+00 f t 5934 \N \N f f +4926 2025-08-05 15:06:12.333547+00 2025-08-05 15:06:12.333555+00 f t 5935 \N \N f f +4927 2025-08-05 15:12:41.614213+00 2025-08-05 15:12:41.614225+00 f t 5936 \N \N f f +4928 2025-08-05 15:20:11.82678+00 2025-08-05 15:20:11.826792+00 f t 5937 \N \N f f +4929 2025-08-05 15:55:43.1845+00 2025-08-05 15:55:43.184507+00 f t 5938 \N \N f f +4930 2025-08-05 16:04:11.369678+00 2025-08-05 16:04:11.369691+00 f t 5939 \N \N f f +4931 2025-08-05 16:19:58.422814+00 2025-08-05 16:19:58.422826+00 f t 5940 \N \N f f +4932 2025-08-05 18:40:14.899681+00 2025-08-05 18:40:14.899696+00 f t 5941 \N \N f f +4933 2025-08-05 19:05:33.614706+00 2025-08-05 19:00:37.39484+00 f t 5942 \N \N f f +4934 2025-08-05 19:14:49.239462+00 2025-08-05 19:14:49.239471+00 f t 5943 \N \N f f +4935 2025-08-05 19:34:04.908535+00 2025-08-05 19:34:04.908543+00 f t 5944 \N \N f f +4936 2025-08-05 20:55:32.318593+00 2025-08-05 20:55:32.318602+00 f t 5945 \N \N f f +4937 2025-08-05 20:58:45.138199+00 2025-08-05 20:58:45.138207+00 f t 5946 \N \N f f +4938 2025-08-05 20:59:56.169807+00 2025-08-05 20:59:56.169819+00 f t 5947 \N \N f f +4939 2025-08-05 21:10:21.578076+00 2025-08-05 21:10:21.578088+00 f t 5948 \N \N f f +4940 2025-08-05 21:34:59.993142+00 2025-08-05 21:34:59.993149+00 f t 5949 \N \N f f +4941 2025-08-05 21:36:55.654798+00 2025-08-05 21:36:55.654806+00 f t 5950 \N \N f f +4942 2025-08-05 21:49:06.87006+00 2025-08-05 21:49:06.870069+00 f t 5951 \N \N f f +4943 2025-08-05 22:00:12.157181+00 2025-08-05 22:00:12.157195+00 f t 5952 \N \N f f +4944 2025-08-05 22:23:34.981421+00 2025-08-05 22:23:34.981431+00 f t 5953 \N \N f f +4945 2025-08-05 22:33:28.541398+00 2025-08-05 22:29:44.283596+00 f t 5954 \N \N f f +4946 2025-08-05 22:33:50.08139+00 2025-08-05 22:33:50.081397+00 f t 5955 \N \N f f +4947 2025-08-05 22:43:37.846462+00 2025-08-05 22:43:37.84647+00 f t 5956 \N \N f f +4948 2025-08-05 22:45:54.692388+00 2025-08-05 22:45:54.692396+00 f t 5957 \N \N f f +4949 2025-08-05 23:13:41.894819+00 2025-08-05 23:13:41.89483+00 f t 5958 \N \N f f +4950 2025-08-05 23:14:03.870624+00 2025-08-05 23:14:03.870638+00 f t 5959 \N \N f f +4951 2025-08-05 23:25:17.792605+00 2025-08-05 23:25:17.792617+00 f t 5960 \N \N f f +4952 2025-08-05 23:27:18.347668+00 2025-08-05 23:27:18.347676+00 f t 5961 \N \N f f +4953 2025-08-05 23:28:18.271312+00 2025-08-05 23:28:18.27132+00 f t 5962 \N \N f f +4954 2025-08-05 23:29:14.646689+00 2025-08-05 23:29:14.646704+00 f t 5963 \N \N f f +4955 2025-08-05 23:42:46.379196+00 2025-08-05 23:42:46.379204+00 f t 5964 \N \N f f +4956 2025-08-06 00:17:39.622002+00 2025-08-06 00:17:39.62201+00 f t 5965 \N \N f f +4957 2025-08-06 00:29:09.437506+00 2025-08-06 00:29:09.437515+00 f t 5966 \N \N f f +4958 2025-08-06 00:32:46.275677+00 2025-08-06 00:32:46.275685+00 f t 5967 \N \N f f +4959 2025-08-06 02:04:31.88667+00 2025-08-06 02:04:31.886679+00 f t 5968 \N \N f f +4960 2025-08-06 03:40:10.568188+00 2025-08-06 03:40:10.568202+00 f t 5969 \N \N f f +4961 2025-08-06 03:49:03.142363+00 2025-08-06 03:49:03.142376+00 f t 5970 \N \N f f +4962 2025-08-06 03:54:47.27293+00 2025-08-06 03:54:47.272941+00 f t 5971 \N \N f f +4963 2025-08-06 03:58:45.485927+00 2025-08-06 03:58:45.485936+00 f t 5972 \N \N f f +4964 2025-08-06 04:50:10.306465+00 2025-08-06 04:50:10.306476+00 f t 5973 \N \N f f +4965 2025-08-06 10:37:06.925048+00 2025-08-06 10:37:06.925061+00 f t 5974 \N \N f f +4966 2025-08-06 11:35:04.3306+00 2025-08-06 11:35:04.330613+00 f t 5975 \N \N f f +4967 2025-08-06 11:42:25.201443+00 2025-08-06 11:42:25.201455+00 f t 5976 \N \N f f +4968 2025-08-06 11:49:53.449949+00 2025-08-06 11:49:53.449961+00 f t 5977 \N \N f f +4969 2025-08-06 11:54:57.630863+00 2025-08-06 11:54:57.630875+00 f t 5978 \N \N f f +4970 2025-08-06 11:56:26.083868+00 2025-08-06 11:56:26.083879+00 f t 5979 \N \N f f +4971 2025-08-06 12:08:31.435996+00 2025-08-06 12:08:31.436004+00 f t 5980 \N \N f f +4972 2025-08-06 12:32:58.861784+00 2025-08-06 12:32:58.861793+00 f t 5981 \N \N f f +4973 2025-08-06 12:35:25.698643+00 2025-08-06 12:35:25.698653+00 f t 5982 \N \N f f +4974 2025-08-06 13:12:27.906918+00 2025-08-06 13:12:27.90693+00 f t 5983 \N \N f f +4975 2025-08-06 13:27:46.481574+00 2025-08-06 13:27:46.481585+00 f t 5984 \N \N f f +4976 2025-08-06 13:43:53.697603+00 2025-08-06 13:43:53.697611+00 f t 5985 \N \N f f +4977 2025-08-06 14:07:14.082607+00 2025-08-06 14:07:14.08262+00 f t 5986 \N \N f f +4978 2025-08-06 14:32:08.972597+00 2025-08-06 14:32:08.97261+00 f t 5987 \N \N f f +4979 2025-08-06 15:15:23.541547+00 2025-08-06 15:15:23.54156+00 f t 5988 \N \N f f +4980 2025-08-06 15:29:41.521187+00 2025-08-06 15:29:41.521195+00 f t 5989 \N \N f f +4981 2025-08-06 15:52:36.984985+00 2025-08-06 15:52:36.984993+00 f t 5990 \N \N f f +4982 2025-08-06 16:08:39.110504+00 2025-08-06 16:08:39.110511+00 f t 5991 \N \N f f +4983 2025-08-06 16:25:21.149614+00 2025-08-06 16:25:21.149626+00 f t 5992 \N \N f f +4984 2025-08-06 16:34:12.415994+00 2025-08-06 16:34:12.416005+00 f t 5993 \N \N f f +4985 2025-08-06 16:35:16.244917+00 2025-08-06 16:35:16.244925+00 f t 5994 \N \N f f +4986 2025-08-06 16:40:52.12001+00 2025-08-06 16:40:52.120018+00 f t 5995 \N \N f f +4987 2025-08-06 17:14:22.472788+00 2025-08-06 17:14:22.472797+00 f t 5996 \N \N f f +4988 2025-08-06 17:31:03.894635+00 2025-08-06 17:31:03.894646+00 f t 5997 \N \N f f +4989 2025-08-06 17:56:10.646026+00 2025-08-06 17:56:10.646038+00 f t 5998 \N \N f f +4990 2025-08-06 17:59:30.435701+00 2025-08-06 17:59:30.435707+00 f t 5999 \N \N f f +4991 2025-08-06 18:12:35.842609+00 2025-08-06 18:12:35.842623+00 f t 6000 \N \N f f +4992 2025-08-06 18:16:34.905619+00 2025-08-06 18:16:34.905627+00 f t 6001 \N \N f f +4993 2025-08-06 18:19:06.165698+00 2025-08-06 18:19:06.165707+00 f t 5024 \N \N f f +4994 2025-08-06 18:28:55.225276+00 2025-08-06 18:28:55.225285+00 f t 6002 \N \N f f +4995 2025-08-06 18:33:38.279892+00 2025-08-06 18:33:38.279902+00 f t 6003 \N \N f f +4996 2025-08-06 18:35:11.896382+00 2025-08-06 18:35:11.896395+00 f t 6004 \N \N f f +4997 2025-08-06 18:36:08.661873+00 2025-08-06 18:36:08.661889+00 f t 6005 \N \N f f +4998 2025-08-06 18:42:56.89229+00 2025-08-06 18:42:56.892298+00 f t 6006 \N \N f f +4999 2025-08-06 18:43:11.943856+00 2025-08-06 18:43:11.943867+00 f t 6007 \N \N f f +5000 2025-08-06 18:52:08.143444+00 2025-08-06 18:52:08.143456+00 f t 6008 \N \N f f +5001 2025-08-06 19:20:07.681925+00 2025-08-06 19:20:07.681935+00 f t 6009 \N \N f f +5002 2025-08-06 19:36:16.424703+00 2025-08-06 19:36:16.424715+00 f t 6010 \N \N f f +5003 2025-08-06 19:38:44.565133+00 2025-08-06 19:38:44.565141+00 f t 6011 \N \N f f +5004 2025-08-06 19:41:57.256953+00 2025-08-06 19:41:57.256964+00 f t 6012 \N \N f f +5005 2025-08-06 19:45:32.018052+00 2025-08-06 19:45:32.018065+00 f t 6013 \N \N f f +5006 2025-08-06 19:47:02.458275+00 2025-08-06 19:47:02.458289+00 f t 6014 \N \N f f +5007 2025-08-06 19:56:02.612433+00 2025-08-06 19:56:02.612446+00 f t 6015 \N \N f f +5008 2025-08-06 20:14:38.547495+00 2025-08-06 20:14:38.547503+00 f t 6016 \N \N f f +5009 2025-08-06 20:15:37.446282+00 2025-08-06 20:15:37.446292+00 f t 6017 \N \N f f +5010 2025-08-06 20:31:08.374077+00 2025-08-06 20:31:08.374087+00 f t 6020 \N \N f f +5011 2025-08-06 20:44:18.821159+00 2025-08-06 20:44:18.82117+00 f t 6021 \N \N f f +5012 2025-08-06 21:02:10.357028+00 2025-08-06 21:02:10.357043+00 f t 6025 \N \N f f +5013 2025-08-06 21:06:10.054138+00 2025-08-06 21:06:10.054151+00 f t 6026 \N \N f f +5014 2025-08-06 21:24:09.365591+00 2025-08-06 21:24:09.365601+00 f t 6027 \N \N f f +5015 2025-08-06 22:11:29.094232+00 2025-08-06 22:11:29.09424+00 f t 6028 \N \N f f +5016 2025-08-06 22:39:43.163583+00 2025-08-06 22:39:43.163597+00 f t 6029 \N \N f f +5017 2025-08-06 22:41:47.642288+00 2025-08-06 22:41:47.642297+00 f t 6030 \N \N f f +5018 2025-08-06 22:53:15.86557+00 2025-08-06 22:53:15.86558+00 f t 6031 \N \N f f +5019 2025-08-06 22:59:20.505819+00 2025-08-06 22:59:20.505828+00 f t 6032 \N \N f f +5020 2025-08-06 23:29:24.320837+00 2025-08-06 23:29:24.320845+00 f t 6036 \N \N f f +5021 2025-08-06 23:34:12.021323+00 2025-08-06 23:34:12.021336+00 f t 6037 \N \N f f +5022 2025-08-07 00:09:05.684105+00 2025-08-07 00:09:05.684117+00 f t 6038 \N \N f f +5023 2025-08-07 00:44:55.838186+00 2025-08-07 00:44:55.8382+00 f t 6039 \N \N f f +5024 2025-08-07 00:55:21.68105+00 2025-08-07 00:55:21.68106+00 f t 6040 \N \N f f +5025 2025-08-07 01:14:48.012719+00 2025-08-07 01:14:48.012731+00 f t 6041 \N \N f f +5026 2025-08-07 02:31:48.052496+00 2025-08-07 02:31:48.052505+00 f t 6042 \N \N f f +5027 2025-08-07 03:06:01.43005+00 2025-08-07 03:06:01.430062+00 f t 6043 \N \N f f +5028 2025-08-07 03:08:03.017333+00 2025-08-07 03:08:03.017345+00 f t 6044 \N \N f f +5029 2025-08-07 03:29:02.821682+00 2025-08-07 03:29:02.821691+00 f t 6045 \N \N f f +5030 2025-08-07 03:29:39.930674+00 2025-08-07 03:29:39.930687+00 f t 6046 \N \N f f +5031 2025-08-07 03:29:40.016879+00 2025-08-07 03:29:40.016888+00 f t 6047 \N \N f f +5032 2025-08-07 03:34:17.614668+00 2025-08-07 03:34:17.614679+00 f t 6048 \N \N f f +5033 2025-08-07 03:42:41.109457+00 2025-08-07 03:42:41.10947+00 f t 2792 \N \N f f +5034 2025-08-07 03:50:07.033534+00 2025-08-07 03:50:07.03355+00 f t 6049 \N \N f f +5035 2025-08-07 05:46:40.781706+00 2025-08-07 05:46:40.781718+00 f t 6050 \N \N f f +5036 2025-08-07 05:52:22.168935+00 2025-08-07 05:52:22.168945+00 f t 6051 \N \N f f +5037 2025-08-07 10:36:42.220927+00 2025-08-07 10:36:42.220935+00 f t 6052 \N \N f f +5038 2025-08-07 11:55:47.125425+00 2025-08-07 11:55:47.125434+00 f t 6053 \N \N f f +5039 2025-08-07 12:24:16.093827+00 2025-08-07 12:24:16.093835+00 f t 6054 \N \N f f +5040 2025-08-07 12:37:56.836376+00 2025-08-07 12:37:56.836386+00 f t 6055 \N \N f f +5041 2025-08-07 12:39:47.391982+00 2025-08-07 12:39:47.391994+00 f t 6056 \N \N f f +5042 2025-08-07 12:41:03.711755+00 2025-08-07 12:41:03.711763+00 f t 6057 \N \N f f +5044 2025-08-07 12:51:33.243577+00 2025-08-07 12:51:33.243586+00 f t 6059 \N \N f f +5043 2025-08-07 12:52:44.635206+00 2025-08-07 12:46:39.915675+00 f t 6058 \N \N f f +5045 2025-08-07 12:53:19.789514+00 2025-08-07 12:53:19.789521+00 f t 6060 \N \N f f +5046 2025-08-07 12:58:56.274481+00 2025-08-07 12:58:56.274494+00 f t 6061 \N \N f f +5047 2025-08-07 13:12:26.915665+00 2025-08-07 13:12:26.915672+00 f t 6062 \N \N f f +5048 2025-08-07 13:12:59.283392+00 2025-08-07 13:12:59.283405+00 f t 6063 \N \N f f +5049 2025-08-07 13:16:42.741745+00 2025-08-07 13:16:42.741753+00 f t 6064 \N \N f f +5050 2025-08-07 13:17:15.866191+00 2025-08-07 13:17:15.866204+00 f t 6065 \N \N f f +5051 2025-08-07 13:18:57.096074+00 2025-08-07 13:18:57.096088+00 f t 6066 \N \N f f +5052 2025-08-07 13:23:08.70562+00 2025-08-07 13:23:08.705633+00 f t 6067 \N \N f f +5053 2025-08-07 13:23:46.595715+00 2025-08-07 13:23:46.595732+00 f t 6068 \N \N f f +5054 2025-08-07 13:39:56.190584+00 2025-08-07 13:39:56.190592+00 f t 6069 \N \N f f +5055 2025-08-07 14:18:02.739957+00 2025-08-07 14:18:02.739971+00 f t 6070 \N \N f f +5056 2025-08-07 14:19:16.571545+00 2025-08-07 14:19:16.571553+00 f t 6071 \N \N f f +5057 2025-08-07 16:12:59.078848+00 2025-08-07 16:12:59.07886+00 f t 6072 \N \N f f +5058 2025-08-07 16:13:50.538425+00 2025-08-07 16:13:50.538432+00 f t 6073 \N \N f f +5059 2025-08-07 16:57:28.851598+00 2025-08-07 16:57:28.851607+00 f t 6074 \N \N f f +5060 2025-08-07 17:16:56.277277+00 2025-08-07 17:16:56.277285+00 f t 6075 \N \N f f +5061 2025-08-07 17:26:34.449617+00 2025-08-07 17:26:34.449625+00 f t 6076 \N \N f f +5062 2025-08-07 17:37:11.626582+00 2025-08-07 17:37:11.626594+00 f t 6077 \N \N f f +5063 2025-08-07 17:42:25.162903+00 2025-08-07 17:42:25.162911+00 f t 6078 \N \N f f +5064 2025-08-07 17:42:57.459857+00 2025-08-07 17:42:57.459869+00 f t 6079 \N \N f f +5065 2025-08-07 17:44:57.818529+00 2025-08-07 17:44:57.818539+00 f t 6080 \N \N f f +5066 2025-08-07 18:01:26.511227+00 2025-08-07 18:01:26.51124+00 f t 6081 \N \N f f +5067 2025-08-07 18:05:19.127086+00 2025-08-07 18:05:19.127099+00 f t 6082 \N \N f f +5068 2025-08-07 18:52:07.170816+00 2025-08-07 18:52:07.170827+00 f t 6083 \N \N f f +5069 2025-08-07 19:56:02.149909+00 2025-08-07 19:56:02.149922+00 f t 6085 \N \N f f +5070 2025-08-07 20:19:57.378943+00 2025-08-07 20:19:57.378953+00 f t 6086 \N \N f f +5071 2025-08-07 21:00:19.02559+00 2025-08-07 21:00:19.025606+00 f t 6087 \N \N f f +5072 2025-08-07 21:12:37.468381+00 2025-08-07 21:12:37.468393+00 f t 6088 \N \N f f +5073 2025-08-07 22:36:16.437264+00 2025-08-07 22:36:16.437276+00 f t 6089 \N \N f f +5074 2025-08-07 23:15:43.783029+00 2025-08-07 23:15:43.783042+00 f t 6090 \N \N f f +5075 2025-08-08 00:13:36.530689+00 2025-08-08 00:13:36.530701+00 f t 6091 \N \N f f +5076 2025-08-08 00:24:18.652001+00 2025-08-08 00:24:18.652009+00 f t 6092 \N \N f f +5077 2025-08-08 00:28:00.479453+00 2025-08-08 00:28:00.479466+00 f t 6093 \N \N f f +5078 2025-08-08 00:45:53.223604+00 2025-08-08 00:45:53.223612+00 f t 6094 \N \N f f +5079 2025-08-08 00:51:39.908297+00 2025-08-08 00:51:39.908308+00 f t 6095 \N \N f f +5080 2025-08-08 01:15:11.975205+00 2025-08-08 01:15:11.975216+00 f t 6096 \N \N f f +5081 2025-08-08 01:18:38.787211+00 2025-08-08 01:18:38.787222+00 f t 6097 \N \N f f +5082 2025-08-08 01:24:38.837096+00 2025-08-08 01:24:38.837107+00 f t 6098 \N \N f f +5083 2025-08-08 02:10:05.05476+00 2025-08-08 02:10:05.054775+00 f t 6099 \N \N f f +5084 2025-08-08 02:33:36.799857+00 2025-08-08 02:33:36.799868+00 f t 6100 \N \N f f +5085 2025-08-08 02:42:16.83524+00 2025-08-08 02:42:16.835247+00 f t 6101 \N \N f f +5086 2025-08-08 02:54:49.255954+00 2025-08-08 02:54:49.255963+00 f t 6102 \N \N f f +5087 2025-08-08 02:58:14.494021+00 2025-08-08 02:58:14.494027+00 f t 6103 \N \N f f +5088 2025-08-08 03:15:52.464708+00 2025-08-08 03:15:52.464718+00 f t 6104 \N \N f f +5089 2025-08-08 03:49:28.153091+00 2025-08-08 03:49:28.153103+00 f t 6105 \N \N f f +5090 2025-08-08 05:26:26.129795+00 2025-08-08 05:26:26.129805+00 f t 6106 \N \N f f +5091 2025-08-08 05:50:53.308764+00 2025-08-08 05:50:53.308772+00 f t 6107 \N \N f f +5092 2025-08-08 07:45:10.767569+00 2025-08-08 07:45:10.767582+00 f t 6108 \N \N f f +5093 2025-08-08 07:58:21.935319+00 2025-08-08 07:58:21.935327+00 f t 6109 \N \N f f +5094 2025-08-08 08:14:29.610098+00 2025-08-08 08:14:29.610106+00 f t 6110 \N \N f f +5095 2025-08-08 08:45:15.693346+00 2025-08-08 08:45:15.693359+00 f t 6111 \N \N f f +5096 2025-08-08 09:02:20.371496+00 2025-08-08 09:02:20.371507+00 f t 6112 \N \N f f +5097 2025-08-08 10:18:57.442389+00 2025-08-08 10:18:57.442401+00 f t 6113 \N \N f f +5098 2025-08-08 10:49:45.508839+00 2025-08-08 10:49:45.508851+00 f t 6114 \N \N f f +5099 2025-08-08 12:02:07.197392+00 2025-08-08 12:02:07.197404+00 f t 6115 \N \N f f +5100 2025-08-08 12:11:01.348722+00 2025-08-08 12:11:01.348731+00 f t 6116 \N \N f f +5101 2025-08-08 12:43:37.542768+00 2025-08-08 12:43:37.542776+00 f t 6117 \N \N f f +5102 2025-08-08 12:48:17.192649+00 2025-08-08 12:48:17.192658+00 f t 6118 \N \N f f +5103 2025-08-08 13:02:39.532445+00 2025-08-08 13:02:39.532458+00 f t 6119 \N \N f f +5104 2025-08-08 13:03:35.693779+00 2025-08-08 13:03:35.693788+00 f t 6120 \N \N f f +5105 2025-08-08 13:56:29.571675+00 2025-08-08 13:56:29.571683+00 f t 6121 \N \N f f +5106 2025-08-08 13:59:16.313761+00 2025-08-08 13:59:16.313772+00 f t 6122 \N \N f f +5107 2025-08-08 14:05:42.212174+00 2025-08-08 14:05:42.212187+00 f t 6123 \N \N f f +5108 2025-08-08 14:10:23.764112+00 2025-08-08 14:10:23.764142+00 f t 6124 \N \N f f +5109 2025-08-08 14:13:32.559962+00 2025-08-08 14:13:32.55997+00 f t 6125 \N \N f f +5110 2025-08-08 14:15:20.660996+00 2025-08-08 14:15:20.661006+00 f t 6126 \N \N f f +5111 2025-08-08 14:25:51.622558+00 2025-08-08 14:25:51.622566+00 f t 6127 \N \N f f +5112 2025-08-08 14:26:24.241461+00 2025-08-08 14:26:24.241472+00 f t 6128 \N \N f f +5113 2025-08-08 14:40:35.558028+00 2025-08-08 14:40:35.558036+00 f t 6129 \N \N f f +5114 2025-08-08 14:43:29.106569+00 2025-08-08 14:43:29.10658+00 f t 6130 \N \N f f +5115 2025-08-08 14:50:16.839807+00 2025-08-08 14:50:16.83982+00 f t 6131 \N \N f f +5116 2025-08-08 14:54:31.365905+00 2025-08-08 14:54:31.365917+00 f t 6132 \N \N f f +5117 2025-08-08 14:58:07.08304+00 2025-08-08 14:58:07.083052+00 f t 6133 \N \N f f +5118 2025-08-08 15:04:11.538074+00 2025-08-08 15:04:11.538082+00 f t 6134 \N \N f f +5119 2025-08-08 15:25:12.591481+00 2025-08-08 15:25:12.59149+00 f t 6135 \N \N f f +5120 2025-08-08 15:32:54.596951+00 2025-08-08 15:32:54.59696+00 f t 6136 \N \N f f +5121 2025-08-08 15:44:24.681147+00 2025-08-08 15:44:24.681158+00 f t 6137 \N \N f f +5122 2025-08-08 15:55:10.35454+00 2025-08-08 15:55:10.354556+00 f t 6138 \N \N f f +5123 2025-08-08 15:55:22.248133+00 2025-08-08 15:55:22.248144+00 f t 6139 \N \N f f +5124 2025-08-08 15:56:58.844157+00 2025-08-08 15:56:58.844166+00 f t 6140 \N \N f f +5125 2025-08-08 16:09:25.327485+00 2025-08-08 16:09:25.327495+00 f t 6141 \N \N f f +5126 2025-08-08 16:12:32.734759+00 2025-08-08 16:12:32.734766+00 f t 6142 \N \N f f +5127 2025-08-08 16:18:53.163661+00 2025-08-08 16:18:53.163673+00 f t 6143 \N \N f f +5128 2025-08-08 17:03:41.530922+00 2025-08-08 17:03:41.530932+00 f t 6144 \N \N f f +5129 2025-08-08 17:11:22.069416+00 2025-08-08 17:11:22.069428+00 f t 6145 \N \N f f +5130 2025-08-08 17:49:36.068883+00 2025-08-08 17:49:36.068894+00 f t 6146 \N \N f f +5131 2025-08-08 18:27:33.045679+00 2025-08-08 18:27:33.04569+00 f t 6147 \N \N f f +5132 2025-08-08 18:33:59.337879+00 2025-08-08 18:33:59.337887+00 f t 6148 \N \N f f +5133 2025-08-08 18:41:10.567695+00 2025-08-08 18:41:10.567706+00 f t 6149 \N \N f f +5134 2025-08-08 19:03:02.957946+00 2025-08-08 19:03:02.957959+00 f t 6150 \N \N f f +5135 2025-08-08 19:06:06.961221+00 2025-08-08 19:06:06.96123+00 f t 6151 \N \N f f +5136 2025-08-08 19:13:56.842056+00 2025-08-08 19:13:56.842064+00 f t 6152 \N \N f f +5137 2025-08-08 20:45:08.244268+00 2025-08-08 20:45:08.24428+00 f t 6153 \N \N f f +5138 2025-08-08 21:02:52.877362+00 2025-08-08 21:02:52.87737+00 f t 6155 \N \N f f +5139 2025-08-08 21:07:15.474379+00 2025-08-08 21:07:15.47439+00 f t 6157 \N \N f f +5140 2025-08-08 21:07:57.666284+00 2025-08-08 21:07:57.666293+00 f t 6158 \N \N f f +5141 2025-08-08 21:14:00.05416+00 2025-08-08 21:14:00.054172+00 f t 6160 \N \N f f +5142 2025-08-08 21:26:08.751345+00 2025-08-08 21:26:08.751357+00 f t 6161 \N \N f f +5143 2025-08-08 21:35:02.356569+00 2025-08-08 21:35:02.35658+00 f t 6162 \N \N f f +5144 2025-08-08 22:30:19.305717+00 2025-08-08 22:16:37.347936+00 f t 6163 \N \N f f +5145 2025-08-08 23:10:15.523201+00 2025-08-08 23:10:15.523213+00 f t 6164 \N \N f f +5146 2025-08-08 23:39:38.830291+00 2025-08-08 23:39:38.830303+00 f t 6165 \N \N f f +5147 2025-08-09 00:04:56.767631+00 2025-08-09 00:04:56.767644+00 f t 6166 \N \N f f +5148 2025-08-09 00:21:49.408943+00 2025-08-09 00:21:49.408955+00 f t 6167 \N \N f f +5149 2025-08-09 00:32:49.258639+00 2025-08-09 00:32:49.258649+00 f t 6168 \N \N f f +5150 2025-08-09 00:42:01.16851+00 2025-08-09 00:42:01.168521+00 f t 4071 \N \N f f +5151 2025-08-09 00:46:08.452289+00 2025-08-09 00:46:08.4523+00 f t 6169 \N \N f f +5152 2025-08-09 00:46:56.336263+00 2025-08-09 00:46:56.336271+00 f t 6170 \N \N f f +5153 2025-08-09 01:00:16.153666+00 2025-08-09 01:00:16.153678+00 f t 6171 \N \N f f +5154 2025-08-09 01:01:50.79501+00 2025-08-09 01:01:50.795022+00 f t 6172 \N \N f f +5155 2025-08-09 01:23:57.310043+00 2025-08-09 01:23:57.310056+00 f t 6173 \N \N f f +5156 2025-08-09 01:26:25.845419+00 2025-08-09 01:26:25.845433+00 f t 6174 \N \N f f +5157 2025-08-09 01:30:28.222767+00 2025-08-09 01:30:28.222774+00 f t 6175 \N \N f f +5158 2025-08-09 03:23:08.955913+00 2025-08-09 03:23:08.955925+00 f t 6176 \N \N f f +5159 2025-08-09 03:23:14.612679+00 2025-08-09 03:23:14.61269+00 f t 6177 \N \N f f +5160 2025-08-09 03:48:07.533058+00 2025-08-09 03:48:07.53307+00 f t 6178 \N \N f f +5162 2025-08-09 07:52:34.72853+00 2025-08-09 07:52:34.728541+00 f t 6180 \N \N f f +5163 2025-08-09 08:06:26.65597+00 2025-08-09 08:06:26.655977+00 f t 6181 \N \N f f +5164 2025-08-09 09:44:24.381619+00 2025-08-09 09:44:24.381627+00 f t 6182 \N \N f f +5165 2025-08-09 11:14:34.445425+00 2025-08-09 11:14:34.445434+00 f t 6183 \N \N f f +5166 2025-08-09 11:20:52.851104+00 2025-08-09 11:20:52.851113+00 f t 6184 \N \N f f +5167 2025-08-09 11:47:56.996222+00 2025-08-09 11:43:22.231583+00 f t 6185 \N \N f f +5168 2025-08-09 12:23:00.254116+00 2025-08-09 12:23:00.254127+00 f t 6186 \N \N f f +5169 2025-08-09 12:23:42.192991+00 2025-08-09 12:23:42.193002+00 f t 6187 \N \N f f +5170 2025-08-09 12:25:09.601735+00 2025-08-09 12:25:09.601743+00 f t 6188 \N \N f f +5171 2025-08-09 12:30:37.363735+00 2025-08-09 12:30:37.363744+00 f t 6189 \N \N f f +5172 2025-08-09 12:35:05.629578+00 2025-08-09 12:35:05.62959+00 f t 6190 \N \N f f +5173 2025-08-09 14:15:49.87946+00 2025-08-09 14:15:49.879468+00 f t 6191 \N \N f f +5174 2025-08-09 15:31:16.345372+00 2025-08-09 15:31:16.345381+00 f t 6192 \N \N f f +5175 2025-08-09 15:45:13.220353+00 2025-08-09 15:45:13.220362+00 f t 6193 \N \N f f +5176 2025-08-09 16:28:23.929934+00 2025-08-09 16:28:23.929944+00 f t 88 \N \N f f +5177 2025-08-09 16:30:26.401569+00 2025-08-09 16:30:26.401585+00 f t 6194 \N \N f f +5178 2025-08-09 16:55:02.783737+00 2025-08-09 16:55:02.783751+00 f t 6195 \N \N f f +5179 2025-08-09 18:42:38.543834+00 2025-08-09 18:42:38.543842+00 f t 6197 \N \N f f +5180 2025-08-09 19:08:08.024836+00 2025-08-09 19:08:08.024858+00 f t 6198 \N \N f f +5181 2025-08-09 20:31:59.147613+00 2025-08-09 20:31:59.147626+00 f t 6199 \N \N f f +5182 2025-08-09 20:56:18.580567+00 2025-08-09 20:56:18.580578+00 f t 6200 \N \N f f +5183 2025-08-09 22:13:25.450562+00 2025-08-09 22:13:25.450576+00 f t 6201 \N \N f f +5184 2025-08-09 22:16:26.639984+00 2025-08-09 22:16:26.639996+00 f t 6202 \N \N f f +5185 2025-08-09 22:31:44.69266+00 2025-08-09 22:31:44.692668+00 f t 6203 \N \N f f +5161 2025-08-09 22:38:10.600306+00 2025-08-09 06:11:46.15343+00 f t 6179 \N \N f f +5186 2025-08-09 22:42:30.556949+00 2025-08-09 22:42:30.556962+00 f t 6204 \N \N f f +5187 2025-08-09 23:08:08.426625+00 2025-08-09 23:08:08.42664+00 f t 6205 \N \N f f +5188 2025-08-09 23:33:12.741997+00 2025-08-09 23:33:12.742009+00 f t 6206 \N \N f f +5189 2025-08-10 00:12:11.856262+00 2025-08-10 00:12:11.856275+00 f t 6207 \N \N f f +5190 2025-08-10 00:22:24.834199+00 2025-08-10 00:22:24.834213+00 f t 6208 \N \N f f +5191 2025-08-10 00:28:23.06995+00 2025-08-10 00:28:23.069963+00 f t 6209 \N \N f f +5192 2025-08-10 00:37:45.122339+00 2025-08-10 00:37:45.122352+00 f t 6210 \N \N f f +5193 2025-08-10 00:42:07.911341+00 2025-08-10 00:42:07.911353+00 f t 6211 \N \N f f +5194 2025-08-10 00:58:37.744516+00 2025-08-10 00:58:37.744524+00 f t 6212 \N \N f f +5195 2025-08-10 01:03:13.001192+00 2025-08-10 01:03:13.001204+00 f t 6213 \N \N f f +5196 2025-08-10 01:48:27.854359+00 2025-08-10 01:48:27.854371+00 f t 6214 \N \N f f +5197 2025-08-10 02:13:27.184816+00 2025-08-10 02:12:33.629915+00 f t 1388 \N \N f f +5198 2025-08-10 03:50:33.897681+00 2025-08-10 03:50:33.897692+00 f t 6215 \N \N f f +5199 2025-08-10 03:53:44.003485+00 2025-08-10 03:53:44.003496+00 f t 6216 \N \N f f +5200 2025-08-10 05:47:07.800694+00 2025-08-10 05:47:07.800712+00 f t 6217 \N \N f f +5201 2025-08-10 06:12:44.907562+00 2025-08-10 06:12:44.907575+00 f t 6218 \N \N f f +5202 2025-08-10 06:28:03.633175+00 2025-08-10 06:28:03.633189+00 f t 6219 \N \N f f +5203 2025-08-10 07:20:47.372931+00 2025-08-10 07:20:47.372945+00 f t 6220 \N \N f f +5204 2025-08-10 11:51:14.514577+00 2025-08-10 11:51:14.51459+00 f t 6221 \N \N f f +5205 2025-08-10 13:17:07.145971+00 2025-08-10 13:17:07.145983+00 f t 6222 \N \N f f +5206 2025-08-10 13:54:54.65181+00 2025-08-10 13:54:54.651821+00 f t 6223 \N \N f f +5207 2025-08-10 14:09:31.440928+00 2025-08-10 14:09:31.440939+00 f t 6224 \N \N f f +5208 2025-08-10 14:51:34.720708+00 2025-08-10 14:51:34.720716+00 f t 6225 \N \N f f +5209 2025-08-10 15:23:52.239775+00 2025-08-10 15:23:52.239783+00 f t 6226 \N \N f f +5210 2025-08-10 15:36:03.835509+00 2025-08-10 15:36:03.83552+00 f t 6227 \N \N f f +5211 2025-08-10 16:21:28.4124+00 2025-08-10 16:21:28.412413+00 f t 6228 \N \N f f +5212 2025-08-10 16:22:07.890556+00 2025-08-10 16:22:07.89057+00 f t 6229 \N \N f f +5213 2025-08-10 16:24:05.788169+00 2025-08-10 16:24:05.788181+00 f t 6230 \N \N f f +5214 2025-08-10 16:26:38.389194+00 2025-08-10 16:26:38.389202+00 f t 6231 \N \N f f +5215 2025-08-10 16:33:12.584923+00 2025-08-10 16:33:12.584935+00 f t 6232 \N \N f f +5216 2025-08-10 16:37:04.016184+00 2025-08-10 16:37:04.016197+00 f t 6233 \N \N f f +5217 2025-08-10 16:52:21.622526+00 2025-08-10 16:52:21.622536+00 f t 6234 \N \N f f +5218 2025-08-10 17:02:01.882711+00 2025-08-10 17:02:01.882723+00 f t 6235 \N \N f f +5219 2025-08-10 17:56:13.409244+00 2025-08-10 17:56:13.409252+00 f t 6236 \N \N f f +5220 2025-08-10 18:05:44.715733+00 2025-08-10 18:05:44.715743+00 f t 6237 \N \N f f +5221 2025-08-10 18:59:28.286028+00 2025-08-10 18:59:28.286046+00 f t 6239 \N \N f f +5222 2025-08-10 19:12:13.097078+00 2025-08-10 19:12:13.097093+00 f t 6240 \N \N f f +5223 2025-08-10 19:30:47.12786+00 2025-08-10 19:30:47.127869+00 f t 6241 \N \N f f +5224 2025-08-10 19:41:09.574049+00 2025-08-10 19:41:09.574063+00 f t 6242 \N \N f f +5225 2025-08-10 20:10:00.985454+00 2025-08-10 20:10:00.985466+00 f t 6243 \N \N f f +5226 2025-08-10 20:58:34.932985+00 2025-08-10 20:58:34.932999+00 f t 6245 \N \N f f +5227 2025-08-10 20:58:36.779753+00 2025-08-10 20:58:36.779768+00 f t 562 \N \N f f +5228 2025-08-10 21:03:19.443603+00 2025-08-10 21:03:19.443613+00 f t 6246 \N \N f f +5229 2025-08-10 21:07:46.602104+00 2025-08-10 21:07:46.602117+00 f t 6247 \N \N f f +5230 2025-08-10 21:57:33.878232+00 2025-08-10 21:57:33.878241+00 f t 6248 \N \N f f +5231 2025-08-10 22:24:51.712333+00 2025-08-10 22:24:51.712342+00 f t 6249 \N \N f f +5232 2025-08-10 22:27:01.009885+00 2025-08-10 22:27:01.009899+00 f t 6250 \N \N f f +5233 2025-08-10 22:27:23.878425+00 2025-08-10 22:27:23.878437+00 f t 6251 \N \N f f +5234 2025-08-10 22:50:12.226133+00 2025-08-10 22:50:12.226145+00 f t 6252 \N \N f f +5235 2025-08-10 22:53:33.854134+00 2025-08-10 22:53:33.854145+00 f t 6253 \N \N f f +5236 2025-08-10 22:57:07.225205+00 2025-08-10 22:57:07.225311+00 f t 6254 \N \N f f +5237 2025-08-10 23:15:13.736571+00 2025-08-10 23:15:13.736584+00 f t 6255 \N \N f f +5238 2025-08-11 00:08:20.453794+00 2025-08-11 00:08:20.453807+00 f t 6256 \N \N f f +5239 2025-08-11 00:18:21.625089+00 2025-08-11 00:18:21.625101+00 f t 6257 \N \N f f +5240 2025-08-11 02:05:13.988937+00 2025-08-11 02:05:13.988946+00 f t 6258 \N \N f f +5241 2025-08-11 03:29:52.702877+00 2025-08-11 03:29:52.702886+00 f t 6259 \N \N f f +5242 2025-08-11 04:12:48.595854+00 2025-08-11 04:12:48.595865+00 f t 6260 \N \N f f +5243 2025-08-11 05:45:28.177556+00 2025-08-11 05:45:28.177571+00 f t 6261 \N \N f f +5244 2025-08-11 10:07:05.402173+00 2025-08-11 10:07:05.402183+00 f t 6262 \N \N f f +5245 2025-08-11 10:41:21.03051+00 2025-08-11 10:41:21.030524+00 f t 6263 \N \N f f +5246 2025-08-11 11:55:27.59587+00 2025-08-11 11:55:27.595882+00 f t 6264 \N \N f f +5247 2025-08-11 12:05:58.771773+00 2025-08-11 12:05:58.771782+00 f t 6265 \N \N f f +5248 2025-08-11 12:42:29.27218+00 2025-08-11 12:42:29.27219+00 f t 6266 \N \N f f +5249 2025-08-11 13:05:06.893749+00 2025-08-11 13:05:06.893763+00 f t 6267 \N \N f f +5250 2025-08-11 13:08:18.563731+00 2025-08-11 13:08:18.56374+00 f t 6268 \N \N f f +5251 2025-08-11 13:40:07.63299+00 2025-08-11 13:40:07.633004+00 f t 6269 \N \N f f +5252 2025-08-11 13:40:17.657261+00 2025-08-11 13:40:17.657271+00 f t 6270 \N \N f f +5253 2025-08-11 13:48:25.246231+00 2025-08-11 13:48:25.246243+00 f t 6271 \N \N f f +5254 2025-08-11 14:05:04.110064+00 2025-08-11 14:05:04.110078+00 f t 6272 \N \N f f +5255 2025-08-11 14:06:22.43461+00 2025-08-11 14:06:22.434622+00 f t 6273 \N \N f f +5256 2025-08-11 14:09:43.483884+00 2025-08-11 14:09:43.483898+00 f t 757 \N \N f f +5257 2025-08-11 14:26:20.661579+00 2025-08-11 14:26:20.66159+00 f t 6274 \N \N f f +5258 2025-08-11 14:30:48.994083+00 2025-08-11 14:30:48.994094+00 f t 6275 \N \N f f +5259 2025-08-11 15:36:03.399249+00 2025-08-11 15:36:03.399262+00 f t 6276 \N \N f f +5260 2025-08-11 15:38:41.017879+00 2025-08-11 15:38:41.017891+00 f t 6277 \N \N f f +5261 2025-08-11 16:00:41.89717+00 2025-08-11 16:00:41.897182+00 f t 6278 \N \N f f +5262 2025-08-11 16:15:59.845892+00 2025-08-11 16:15:59.845904+00 f t 6279 \N \N f f +5263 2025-08-11 16:17:41.203462+00 2025-08-11 16:17:41.203474+00 f t 6280 \N \N f f +5264 2025-08-11 16:33:06.920185+00 2025-08-11 16:33:06.920194+00 f t 6281 \N \N f f +5265 2025-08-11 16:33:32.085322+00 2025-08-11 16:33:32.085332+00 f t 6282 \N \N f f +5266 2025-08-11 16:54:00.964233+00 2025-08-11 16:54:00.964246+00 f t 6283 \N \N f f +5267 2025-08-11 16:54:31.517413+00 2025-08-11 16:54:31.517426+00 f t 6284 \N \N f f +5268 2025-08-11 17:26:37.885349+00 2025-08-11 17:26:37.885363+00 f t 6285 \N \N f f +5269 2025-08-11 17:58:36.256265+00 2025-08-11 17:58:36.256366+00 f t 6286 \N \N f f +5270 2025-08-11 18:16:08.471095+00 2025-08-11 18:16:08.471107+00 f t 6287 \N \N f f +5271 2025-08-11 18:22:31.597535+00 2025-08-11 18:22:31.597549+00 f t 6288 \N \N f f +5272 2025-08-11 18:24:39.643421+00 2025-08-11 18:24:39.643435+00 f t 6289 \N \N f f +5273 2025-08-11 18:36:34.881376+00 2025-08-11 18:36:34.881389+00 f t 6291 \N \N f f +5274 2025-08-11 19:04:32.287582+00 2025-08-11 19:04:32.287597+00 f t 6292 \N \N f f +5275 2025-08-11 19:17:36.713603+00 2025-08-11 19:17:36.713615+00 f t 6294 \N \N f f +5276 2025-08-11 19:44:13.097939+00 2025-08-11 19:44:13.097953+00 f t 6295 \N \N f f +5277 2025-08-11 19:54:53.503354+00 2025-08-11 19:54:53.503363+00 f t 6296 \N \N f f +5278 2025-08-11 20:12:58.552762+00 2025-08-11 20:12:58.552772+00 f t 6297 \N \N f f +5279 2025-08-11 20:19:17.545456+00 2025-08-11 20:19:17.545469+00 f t 6298 \N \N f f +5280 2025-08-11 20:21:57.228324+00 2025-08-11 20:21:57.228337+00 f t 6299 \N \N f f +5281 2025-08-11 20:23:40.496851+00 2025-08-11 20:23:40.496866+00 f t 6300 \N \N f f +5282 2025-08-11 20:34:36.418553+00 2025-08-11 20:34:36.418566+00 f t 6301 \N \N f f +5283 2025-08-11 20:43:50.846353+00 2025-08-11 20:43:50.846367+00 f t 6302 \N \N f f +5284 2025-08-11 20:46:30.289783+00 2025-08-11 20:46:30.289862+00 f t 6303 \N \N f f +5285 2025-08-11 20:47:36.908018+00 2025-08-11 20:47:36.908032+00 f t 6304 \N \N f f +5286 2025-08-11 20:47:38.581961+00 2025-08-11 20:47:38.581972+00 f t 6305 \N \N f f +5287 2025-08-11 20:48:00.682958+00 2025-08-11 20:48:00.682973+00 f t 6306 \N \N f f +5288 2025-08-11 20:57:39.497724+00 2025-08-11 20:57:39.497733+00 f t 6307 \N \N f f +5289 2025-08-11 21:16:25.069612+00 2025-08-11 21:16:25.069625+00 f t 6308 \N \N f f +5290 2025-08-11 21:18:30.219686+00 2025-08-11 21:18:30.2197+00 f t 6309 \N \N f f +5291 2025-08-11 21:31:03.362369+00 2025-08-11 21:31:03.362383+00 f t 6310 \N \N f f +5292 2025-08-11 21:46:27.050933+00 2025-08-11 21:46:27.050943+00 f t 6311 \N \N f f +5293 2025-08-11 22:02:07.854226+00 2025-08-11 22:02:07.854245+00 f t 6312 \N \N f f +5294 2025-08-11 22:20:28.740678+00 2025-08-11 22:20:28.740717+00 f t 6313 \N \N f f +5295 2025-08-11 22:27:49.111162+00 2025-08-11 22:27:49.111177+00 f t 6314 \N \N f f +5296 2025-08-11 22:28:41.399776+00 2025-08-11 22:28:41.399787+00 f t 6315 \N \N f f +5297 2025-08-11 22:31:50.65658+00 2025-08-11 22:31:50.656592+00 f t 6316 \N \N f f +5298 2025-08-11 22:32:28.25928+00 2025-08-11 22:32:28.259423+00 f t 6317 \N \N f f +5299 2025-08-11 22:50:03.839626+00 2025-08-11 22:50:03.839639+00 f t 6318 \N \N f f +5300 2025-08-11 22:54:28.880999+00 2025-08-11 22:54:28.881011+00 f t 6319 \N \N f f +5301 2025-08-11 22:58:51.793541+00 2025-08-11 22:58:51.793554+00 f t 6320 \N \N f f +5302 2025-08-11 22:59:08.669733+00 2025-08-11 22:59:08.669746+00 f t 6321 \N \N f f +5303 2025-08-11 23:26:45.344796+00 2025-08-11 23:26:45.344805+00 f t 6322 \N \N f f +5304 2025-08-11 23:33:57.048703+00 2025-08-11 23:33:57.048717+00 f t 6323 \N \N f f +5305 2025-08-11 23:49:18.285394+00 2025-08-11 23:49:18.285407+00 f t 6324 \N \N f f +5306 2025-08-11 23:51:16.901587+00 2025-08-11 23:51:16.901596+00 f t 6325 \N \N f f +5307 2025-08-12 00:05:26.314214+00 2025-08-12 00:05:26.314222+00 f t 6326 \N \N f f +5308 2025-08-12 00:15:04.568523+00 2025-08-12 00:15:04.568537+00 f t 6327 \N \N f f +5309 2025-08-12 00:23:49.232605+00 2025-08-12 00:23:49.232617+00 f t 6328 \N \N f f +5310 2025-08-12 00:49:35.06732+00 2025-08-12 00:49:35.067331+00 f t 6329 \N \N f f +5311 2025-08-12 00:50:00.63582+00 2025-08-12 00:50:00.635832+00 f t 6330 \N \N f f +5312 2025-08-12 01:17:52.570235+00 2025-08-12 01:17:52.570248+00 f t 6331 \N \N f f +5313 2025-08-12 01:23:29.637376+00 2025-08-12 01:23:29.63739+00 f t 6332 \N \N f f +5314 2025-08-12 01:39:23.09826+00 2025-08-12 01:39:23.098272+00 f t 6333 \N \N f f +5315 2025-08-12 01:56:11.745758+00 2025-08-12 01:56:11.74577+00 f t 6334 \N \N f f +5316 2025-08-12 02:23:12.869729+00 2025-08-12 02:23:12.869744+00 f t 6335 \N \N f f +5317 2025-08-12 02:25:35.73916+00 2025-08-12 02:25:35.739175+00 f t 6336 \N \N f f +5318 2025-08-12 02:41:51.08204+00 2025-08-12 02:41:51.082048+00 f t 6337 \N \N f f +5319 2025-08-12 02:46:01.106407+00 2025-08-12 02:46:01.106415+00 f t 6338 \N \N f f +5320 2025-08-12 04:27:50.95362+00 2025-08-12 04:27:50.953633+00 f t 6339 \N \N f f +5321 2025-08-12 07:47:23.782584+00 2025-08-12 07:47:23.782597+00 f t 6340 \N \N f f +5322 2025-08-12 08:40:23.954113+00 2025-08-12 08:40:23.954124+00 f t 6341 \N \N f f +5323 2025-08-12 08:42:15.796997+00 2025-08-12 08:42:15.79701+00 f t 6342 \N \N f f +5324 2025-08-12 09:15:55.232553+00 2025-08-12 09:15:55.232566+00 f t 6343 \N \N f f +5325 2025-08-12 09:42:59.467548+00 2025-08-12 09:42:59.467564+00 f t 6344 \N \N f f +5326 2025-08-12 10:25:14.932119+00 2025-08-12 10:25:14.932132+00 f t 6345 \N \N f f +5327 2025-08-12 10:49:38.440072+00 2025-08-12 10:49:38.440085+00 f t 6346 \N \N f f +5328 2025-08-12 10:50:36.182555+00 2025-08-12 10:50:36.182567+00 f t 6347 \N \N f f +5329 2025-08-12 11:44:22.69517+00 2025-08-12 11:44:22.695203+00 f t 6348 \N \N f f +5330 2025-08-12 11:49:49.77491+00 2025-08-12 11:49:49.774918+00 f t 6349 \N \N f f +5331 2025-08-12 12:06:41.028245+00 2025-08-12 12:06:41.028256+00 f t 6350 \N \N f f +5332 2025-08-12 12:13:58.278523+00 2025-08-12 12:13:58.278535+00 f t 6351 \N \N f f +5333 2025-08-12 12:21:11.511566+00 2025-08-12 12:21:11.511579+00 f t 6352 \N \N f f +5334 2025-08-12 12:27:33.139369+00 2025-08-12 12:27:33.139377+00 f t 6353 \N \N f f +5335 2025-08-12 12:30:12.070947+00 2025-08-12 12:30:12.070961+00 f t 6354 \N \N f f +5336 2025-08-12 12:36:17.719301+00 2025-08-12 12:36:17.71931+00 f t 6355 \N \N f f +5337 2025-08-12 13:15:32.976734+00 2025-08-12 13:15:32.976744+00 f t 6356 \N \N f f +5338 2025-08-12 13:17:54.691039+00 2025-08-12 13:17:54.691047+00 f t 6357 \N \N f f +5339 2025-08-12 13:21:54.814009+00 2025-08-12 13:21:54.814019+00 f t 6358 \N \N f f +5340 2025-08-12 13:23:48.139053+00 2025-08-12 13:23:48.139073+00 f t 6359 \N \N f f +5341 2025-08-12 13:45:21.834549+00 2025-08-12 13:45:21.83456+00 f t 377 \N \N f f +5342 2025-08-12 14:59:31.336142+00 2025-08-12 14:59:31.336153+00 f t 6360 \N \N f f +5343 2025-08-12 15:16:45.662101+00 2025-08-12 15:16:45.662115+00 f t 6361 \N \N f f +5344 2025-08-12 15:59:05.968067+00 2025-08-12 15:59:05.968081+00 f t 6362 \N \N f f +5345 2025-08-12 16:35:37.861874+00 2025-08-12 16:35:37.861886+00 f t 6363 \N \N f f +5346 2025-08-12 16:39:43.964117+00 2025-08-12 16:39:43.96413+00 f t 6364 \N \N f f +5347 2025-08-12 16:40:22.217213+00 2025-08-12 16:40:22.217225+00 f t 6365 \N \N f f +5348 2025-08-12 17:03:53.229742+00 2025-08-12 17:03:53.22975+00 f t 6366 \N \N f f +5349 2025-08-12 17:08:18.727881+00 2025-08-12 17:08:18.727892+00 f t 6367 \N \N f f +5350 2025-08-12 17:15:09.018254+00 2025-08-12 17:15:09.018265+00 f t 6368 \N \N f f +5351 2025-08-12 18:09:57.783188+00 2025-08-12 18:09:57.783203+00 f t 6369 \N \N f f +5352 2025-08-12 18:10:02.004422+00 2025-08-12 18:10:02.004435+00 f t 6370 \N \N f f +5353 2025-08-12 18:17:45.053254+00 2025-08-12 18:17:45.053263+00 f t 6371 \N \N f f +5354 2025-08-12 18:22:16.815233+00 2025-08-12 18:22:16.815245+00 f t 6372 \N \N f f +5355 2025-08-12 18:30:20.5563+00 2025-08-12 18:30:20.556312+00 f t 6373 \N \N f f +5356 2025-08-12 18:35:11.564156+00 2025-08-12 18:35:11.564185+00 f t 6374 \N \N f f +5357 2025-08-12 19:12:10.652983+00 2025-08-12 19:12:10.652994+00 f t 6375 \N \N f f +5358 2025-08-12 19:19:04.699591+00 2025-08-12 19:19:04.699607+00 f t 6376 \N \N f f +5359 2025-08-12 19:33:43.058917+00 2025-08-12 19:33:43.058928+00 f t 6377 \N \N f f +5360 2025-08-12 19:57:48.07841+00 2025-08-12 19:57:48.078424+00 f t 6378 \N \N f f +5361 2025-08-12 20:17:37.07302+00 2025-08-12 20:17:37.073035+00 f t 6379 \N \N f f +5362 2025-08-12 20:46:27.375119+00 2025-08-12 20:46:27.375167+00 f t 6380 \N \N f f +5363 2025-08-12 20:47:11.73656+00 2025-08-12 20:47:11.736575+00 f t 6381 \N \N f f +5364 2025-08-12 21:01:51.640538+00 2025-08-12 21:01:51.640548+00 f t 6382 \N \N f f +5365 2025-08-12 21:04:53.143279+00 2025-08-12 21:04:53.143287+00 f t 6383 \N \N f f +5366 2025-08-12 22:28:37.099909+00 2025-08-12 22:28:37.099918+00 f t 6384 \N \N f f +5367 2025-08-12 22:29:14.418875+00 2025-08-12 22:29:14.418888+00 f t 6385 \N \N f f +5368 2025-08-12 22:32:06.671218+00 2025-08-12 22:32:06.671232+00 f t 6386 \N \N f f +5369 2025-08-12 22:32:10.205538+00 2025-08-12 22:32:10.205552+00 f t 6387 \N \N f f +5370 2025-08-12 22:55:50.66151+00 2025-08-12 22:55:50.661522+00 f t 6388 \N \N f f +5371 2025-08-12 23:06:54.771571+00 2025-08-12 23:06:54.77158+00 f t 6389 \N \N f f +5372 2025-08-12 23:34:57.443174+00 2025-08-12 23:34:57.443187+00 f t 6390 \N \N f f +5373 2025-08-12 23:53:17.398654+00 2025-08-12 23:53:17.398665+00 f t 6391 \N \N f f +5374 2025-08-13 00:14:57.598889+00 2025-08-13 00:14:57.598903+00 f t 6393 \N \N f f +5375 2025-08-13 00:19:17.105172+00 2025-08-13 00:19:17.105183+00 f t 6394 \N \N f f +5376 2025-08-13 00:31:29.440932+00 2025-08-13 00:31:29.440941+00 f t 6395 \N \N f f +5377 2025-08-13 00:53:55.624739+00 2025-08-13 00:53:55.624753+00 f t 6396 \N \N f f +5378 2025-08-13 00:57:51.343116+00 2025-08-13 00:57:51.343126+00 f t 6397 \N \N f f +5379 2025-08-13 00:58:11.76677+00 2025-08-13 00:58:11.766782+00 f t 6398 \N \N f f +5380 2025-08-13 01:14:25.48225+00 2025-08-13 01:14:25.482259+00 f t 6399 \N \N f f +5381 2025-08-13 01:15:12.691411+00 2025-08-13 01:15:12.691421+00 f t 6400 \N \N f f +5382 2025-08-13 01:17:32.445648+00 2025-08-13 01:17:32.445661+00 f t 6401 \N \N f f +5383 2025-08-13 01:37:43.515286+00 2025-08-13 01:37:43.515299+00 f t 6402 \N \N f f +5384 2025-08-13 02:11:21.130214+00 2025-08-13 02:11:21.130227+00 f t 6403 \N \N f f +5385 2025-08-13 02:34:35.231404+00 2025-08-13 02:34:35.231417+00 f t 6404 \N \N f f +5386 2025-08-13 02:44:58.426093+00 2025-08-13 02:44:58.426102+00 f t 6405 \N \N f f +5387 2025-08-13 02:59:30.022176+00 2025-08-13 02:59:30.022185+00 f t 6406 \N \N f f +5388 2025-08-13 04:45:18.40195+00 2025-08-13 04:45:18.401963+00 f t 6407 \N \N f f +5389 2025-08-13 07:21:24.663221+00 2025-08-13 07:21:24.663232+00 f t 6408 \N \N f f +5390 2025-08-13 07:25:05.807101+00 2025-08-13 07:25:05.807117+00 f t 6409 \N \N f f +5391 2025-08-13 09:12:08.700434+00 2025-08-13 09:12:08.700451+00 f t 6410 \N \N f f +5392 2025-08-13 10:15:51.070537+00 2025-08-13 10:15:51.070551+00 f t 6411 \N \N f f +5393 2025-08-13 11:11:17.989652+00 2025-08-13 11:11:17.989666+00 f t 6412 \N \N f f +5394 2025-08-13 11:19:53.663343+00 2025-08-13 11:19:53.663355+00 f t 6413 \N \N f f +5395 2025-08-13 11:20:40.256704+00 2025-08-13 11:20:40.256716+00 f t 6414 \N \N f f +5396 2025-08-13 11:45:49.080517+00 2025-08-13 11:45:49.080531+00 f t 6415 \N \N f f +5397 2025-08-13 12:20:05.757248+00 2025-08-13 12:20:05.757261+00 f t 6416 \N \N f f +5398 2025-08-13 12:22:42.389097+00 2025-08-13 12:22:42.38911+00 f t 6417 \N \N f f +5399 2025-08-13 12:34:19.427349+00 2025-08-13 12:34:19.427363+00 f t 6418 \N \N f f +5400 2025-08-13 12:46:57.556331+00 2025-08-13 12:46:57.556345+00 f t 6419 \N \N f f +5401 2025-08-13 12:47:04.819227+00 2025-08-13 12:47:04.819239+00 f t 6420 \N \N f f +5402 2025-08-13 12:53:05.936681+00 2025-08-13 12:53:05.936894+00 f t 6421 \N \N f f +5403 2025-08-13 12:54:47.333613+00 2025-08-13 12:54:47.333626+00 f t 6422 \N \N f f +5404 2025-08-13 12:55:37.43535+00 2025-08-13 12:55:37.435363+00 f t 6423 \N \N f f +5405 2025-08-13 12:56:00.104487+00 2025-08-13 12:56:00.104498+00 f t 6424 \N \N f f +5406 2025-08-13 12:56:58.952637+00 2025-08-13 12:56:58.95265+00 f t 6425 \N \N f f +5407 2025-08-13 12:59:53.924353+00 2025-08-13 12:59:53.924366+00 f t 6426 \N \N f f +5408 2025-08-13 13:06:43.454925+00 2025-08-13 13:06:43.454938+00 f t 6427 \N \N f f +5409 2025-08-13 13:12:13.268024+00 2025-08-13 13:12:13.26804+00 f t 6428 \N \N f f +5410 2025-08-13 13:26:12.623199+00 2025-08-13 13:26:12.623212+00 f t 6429 \N \N f f +5411 2025-08-13 13:36:49.935834+00 2025-08-13 13:36:49.935846+00 f t 6430 \N \N f f +5412 2025-08-13 13:41:06.95797+00 2025-08-13 13:41:06.957981+00 f t 6431 \N \N f f +5413 2025-08-13 13:48:25.054516+00 2025-08-13 13:48:25.054525+00 f t 6432 \N \N f f +5414 2025-08-13 14:19:24.801813+00 2025-08-13 14:19:24.801821+00 f t 6433 \N \N f f +5415 2025-08-13 14:35:46.26946+00 2025-08-13 14:35:46.26947+00 f t 6434 \N \N f f +5416 2025-08-13 14:43:40.056863+00 2025-08-13 14:43:40.056872+00 f t 6435 \N \N f f +5417 2025-08-13 14:52:20.640275+00 2025-08-13 14:52:20.640287+00 f t 6436 \N \N f f +5418 2025-08-13 14:59:49.774275+00 2025-08-13 14:58:49.78607+00 f t 6437 \N \N f f +5419 2025-08-13 14:59:52.876706+00 2025-08-13 14:59:52.876721+00 f t 6438 \N \N f f +5420 2025-08-13 15:08:52.116738+00 2025-08-13 15:08:52.116749+00 f t 6439 \N \N f f +5421 2025-08-13 15:15:50.387949+00 2025-08-13 15:15:50.387957+00 f t 6440 \N \N f f +5422 2025-08-13 15:19:56.892993+00 2025-08-13 15:19:56.893002+00 f t 6441 \N \N f f +5423 2025-08-13 15:21:12.504814+00 2025-08-13 15:21:12.504824+00 f t 6442 \N \N f f +5424 2025-08-13 15:39:04.590232+00 2025-08-13 15:39:04.590246+00 f t 6443 \N \N f f +5425 2025-08-13 15:42:27.728625+00 2025-08-13 15:42:27.728634+00 f t 6444 \N \N f f +5426 2025-08-13 15:43:33.444806+00 2025-08-13 15:43:33.444816+00 f t 6445 \N \N f f +5427 2025-08-13 16:25:19.676329+00 2025-08-13 16:25:19.676341+00 f t 6446 \N \N f f +5428 2025-08-13 16:40:38.430918+00 2025-08-13 16:40:38.430928+00 f t 6447 \N \N f f +5429 2025-08-13 16:50:34.742326+00 2025-08-13 16:50:34.742337+00 f t 6448 \N \N f f +5430 2025-08-13 16:57:17.877262+00 2025-08-13 16:57:17.877275+00 f t 6449 \N \N f f +5431 2025-08-13 17:17:26.647515+00 2025-08-13 17:17:26.647529+00 f t 6450 \N \N f f +5432 2025-08-13 17:48:25.160376+00 2025-08-13 17:44:35.137685+00 f t 6452 \N \N f f +5433 2025-08-13 17:52:27.914118+00 2025-08-13 17:52:27.914127+00 f t 6453 \N \N f f +5434 2025-08-13 18:09:48.571024+00 2025-08-13 18:09:48.57104+00 f t 6454 \N \N f f +5435 2025-08-13 18:11:35.964649+00 2025-08-13 18:11:35.964665+00 f t 6455 \N \N f f +5436 2025-08-13 18:13:22.32832+00 2025-08-13 18:13:22.32833+00 f t 6456 \N \N f f +5437 2025-08-13 18:52:22.728452+00 2025-08-13 18:52:22.728463+00 f t 6457 \N \N f f +5438 2025-08-13 19:03:48.078725+00 2025-08-13 19:03:48.078737+00 f t 6458 \N \N f f +5439 2025-08-13 19:54:00.819659+00 2025-08-13 19:54:00.819671+00 f t 6459 \N \N f f +5440 2025-08-13 20:42:14.933552+00 2025-08-13 20:42:14.933565+00 f t 6460 \N \N f f +5441 2025-08-13 21:32:29.246087+00 2025-08-13 21:32:29.2461+00 f t 6461 \N \N f f +5442 2025-08-13 21:43:48.686032+00 2025-08-13 21:43:48.686047+00 f t 6462 \N \N f f +5443 2025-08-13 21:53:02.739722+00 2025-08-13 21:53:02.739738+00 f t 6463 \N \N f f +5444 2025-08-13 22:03:06.306073+00 2025-08-13 22:03:06.306084+00 f t 6464 \N \N f f +5445 2025-08-13 22:54:38.25586+00 2025-08-13 22:54:38.255872+00 f t 6465 \N \N f f +5446 2025-08-13 23:17:56.134634+00 2025-08-13 23:17:56.134644+00 f t 6466 \N \N f f +5447 2025-08-14 00:06:33.705537+00 2025-08-14 00:06:33.705547+00 f t 6467 \N \N f f +5448 2025-08-14 00:13:33.443801+00 2025-08-14 00:13:33.443812+00 f t 6468 \N \N f f +5449 2025-08-14 01:09:10.464563+00 2025-08-14 01:09:10.464573+00 f t 6471 \N \N f f +5450 2025-08-14 01:21:42.591192+00 2025-08-14 01:21:42.591205+00 f t 6472 \N \N f f +5451 2025-08-14 02:19:24.936587+00 2025-08-14 02:19:24.936601+00 f t 6473 \N \N f f +5452 2025-08-14 02:25:50.865874+00 2025-08-14 02:25:50.865883+00 f t 6474 \N \N f f +5453 2025-08-14 02:30:48.395524+00 2025-08-14 02:30:48.395533+00 f t 6475 \N \N f f +5454 2025-08-14 02:44:14.963523+00 2025-08-14 02:44:14.963536+00 f t 6476 \N \N f f +5455 2025-08-14 02:46:34.282231+00 2025-08-14 02:46:34.28224+00 f t 6477 \N \N f f +5456 2025-08-14 02:46:53.138642+00 2025-08-14 02:46:53.13865+00 f t 6478 \N \N f f +5457 2025-08-14 02:50:56.92777+00 2025-08-14 02:50:56.92778+00 f t 6479 \N \N f f +5458 2025-08-14 02:53:08.444652+00 2025-08-14 02:53:08.444665+00 f t 6480 \N \N f f +5459 2025-08-14 03:47:15.07602+00 2025-08-14 03:47:15.076032+00 f t 6481 \N \N f f +5460 2025-08-14 03:49:08.041729+00 2025-08-14 03:49:08.041741+00 f t 6482 \N \N f f +5461 2025-08-14 04:33:25.826349+00 2025-08-14 04:33:25.826361+00 f t 6483 \N \N f f +5462 2025-08-14 04:34:29.926349+00 2025-08-14 04:34:29.926357+00 f t 6484 \N \N f f +5463 2025-08-14 04:37:08.903465+00 2025-08-14 04:37:08.903478+00 f t 6485 \N \N f f +5464 2025-08-14 04:39:04.395478+00 2025-08-14 04:39:04.395492+00 f t 6486 \N \N f f +5465 2025-08-14 04:40:56.819046+00 2025-08-14 04:40:56.819056+00 f t 6487 \N \N f f +5466 2025-08-14 05:11:16.175887+00 2025-08-14 05:11:16.175899+00 f t 6488 \N \N f f +5467 2025-08-14 05:15:50.512588+00 2025-08-14 05:15:50.512602+00 f t 6489 \N \N f f +5468 2025-08-14 05:33:47.109374+00 2025-08-14 05:33:47.109384+00 f t 6490 \N \N f f +5469 2025-08-14 05:34:45.027274+00 2025-08-14 05:34:45.027282+00 f t 6491 \N \N f f +5470 2025-08-14 05:37:35.870087+00 2025-08-14 05:37:35.8701+00 f t 6492 \N \N f f +5471 2025-08-14 09:25:36.051398+00 2025-08-14 09:25:36.051412+00 f t 6493 \N \N f f +5472 2025-08-14 09:54:13.361379+00 2025-08-14 09:54:13.361388+00 f t 6494 \N \N f f +5473 2025-08-14 09:59:54.14533+00 2025-08-14 09:59:54.145343+00 f t 6495 \N \N f f +5474 2025-08-14 12:17:05.380245+00 2025-08-14 12:17:05.380255+00 f t 6496 \N \N f f +5475 2025-08-14 12:53:36.715835+00 2025-08-14 12:53:36.715847+00 f t 6497 \N \N f f +5476 2025-08-14 12:54:38.137083+00 2025-08-14 12:54:38.137094+00 f t 6498 \N \N f f +5477 2025-08-14 12:54:48.622303+00 2025-08-14 12:54:48.622311+00 f t 6499 \N \N f f +5478 2025-08-14 13:22:41.738236+00 2025-08-14 13:22:41.738248+00 f t 6500 \N \N f f +5479 2025-08-14 13:26:35.687797+00 2025-08-14 13:26:35.68781+00 f t 6501 \N \N f f +5480 2025-08-14 13:55:46.050296+00 2025-08-14 13:55:46.050309+00 f t 6502 \N \N f f +5481 2025-08-14 14:11:34.115356+00 2025-08-14 14:11:34.115368+00 f t 6503 \N \N f f +5482 2025-08-14 14:15:20.548662+00 2025-08-14 14:15:20.548674+00 f t 6504 \N \N f f +5483 2025-08-14 14:19:50.770734+00 2025-08-14 14:19:50.770746+00 f t 6505 \N \N f f +5484 2025-08-14 14:31:43.718765+00 2025-08-14 14:31:43.718776+00 f t 6506 \N \N f f +5485 2025-08-14 14:33:08.399884+00 2025-08-14 14:33:08.399894+00 f t 6507 \N \N f f +5486 2025-08-14 14:42:01.461786+00 2025-08-14 14:42:01.461797+00 f t 6508 \N \N f f +5487 2025-08-14 14:50:11.193896+00 2025-08-14 14:50:11.193905+00 f t 6509 \N \N f f +5488 2025-08-14 15:12:31.46058+00 2025-08-14 15:12:31.460589+00 f t 6510 \N \N f f +5489 2025-08-14 15:17:36.757487+00 2025-08-14 15:17:36.757496+00 f t 6511 \N \N f f +5490 2025-08-14 15:25:08.342589+00 2025-08-14 15:25:08.342601+00 f t 6512 \N \N f f +5491 2025-08-14 15:29:04.673266+00 2025-08-14 15:29:04.673274+00 f t 6513 \N \N f f +5492 2025-08-14 15:42:01.895227+00 2025-08-14 15:42:01.895236+00 f t 6514 \N \N f f +5493 2025-08-14 15:44:38.236952+00 2025-08-14 15:44:38.236961+00 f t 6515 \N \N f f +5494 2025-08-14 15:48:38.152285+00 2025-08-14 15:48:38.152298+00 f t 6516 \N \N f f +5495 2025-08-14 16:00:18.583246+00 2025-08-14 16:00:18.583259+00 f t 6518 \N \N f f +5496 2025-08-14 16:01:33.845075+00 2025-08-14 16:01:33.845087+00 f t 6519 \N \N f f +5497 2025-08-14 16:17:02.703829+00 2025-08-14 16:17:02.703839+00 f t 6520 \N \N f f +5498 2025-08-14 16:21:42.871663+00 2025-08-14 16:21:42.871673+00 f t 6521 \N \N f f +5499 2025-08-14 16:22:00.459042+00 2025-08-14 16:22:00.459053+00 f t 6522 \N \N f f +5500 2025-08-14 16:24:20.525184+00 2025-08-14 16:24:20.525195+00 f t 6523 \N \N f f +5501 2025-08-14 17:17:49.649382+00 2025-08-14 17:17:49.649394+00 f t 6524 \N \N f f +5502 2025-08-14 17:59:01.971853+00 2025-08-14 17:59:01.971866+00 f t 6525 \N \N f f +5503 2025-08-14 18:06:46.853363+00 2025-08-14 18:06:46.853374+00 f t 6526 \N \N f f +5504 2025-08-14 18:13:49.893394+00 2025-08-14 18:13:49.893403+00 f t 6527 \N \N f f +5505 2025-08-14 18:39:03.426564+00 2025-08-14 18:39:03.426577+00 f t 6528 \N \N f f +5506 2025-08-14 18:56:54.774954+00 2025-08-14 18:56:54.774964+00 f t 6529 \N \N f f +5507 2025-08-14 18:57:59.44275+00 2025-08-14 18:57:59.442764+00 f t 6530 \N \N f f +5508 2025-08-14 18:58:17.113957+00 2025-08-14 18:58:17.113969+00 f t 6531 \N \N f f +5509 2025-08-14 19:00:00.182023+00 2025-08-14 19:00:00.182035+00 f t 6532 \N \N f f +5510 2025-08-14 19:02:26.274743+00 2025-08-14 19:02:26.274752+00 f t 6533 \N \N f f +5511 2025-08-14 19:09:35.080009+00 2025-08-14 19:09:35.08002+00 f t 6534 \N \N f f +5512 2025-08-14 19:10:37.562854+00 2025-08-14 19:10:37.562865+00 f t 6535 \N \N f f +5513 2025-08-14 19:11:29.56057+00 2025-08-14 19:11:29.560578+00 f t 6536 \N \N f f +5514 2025-08-14 19:48:54.523716+00 2025-08-14 19:48:54.523724+00 f t 6537 \N \N f f +5515 2025-08-14 20:12:01.353827+00 2025-08-14 20:12:01.353837+00 f t 6538 \N \N f f +5516 2025-08-14 20:14:49.04901+00 2025-08-14 20:14:49.049017+00 f t 6539 \N \N f f +5517 2025-08-14 20:15:30.088875+00 2025-08-14 20:15:30.088885+00 f t 6540 \N \N f f +5518 2025-08-14 20:16:01.592176+00 2025-08-14 20:16:01.592188+00 f t 6541 \N \N f f +5519 2025-08-14 20:27:06.941374+00 2025-08-14 20:27:06.941386+00 f t 6542 \N \N f f +5520 2025-08-14 20:27:39.883755+00 2025-08-14 20:27:39.883764+00 f t 6543 \N \N f f +5521 2025-08-14 20:28:00.372967+00 2025-08-14 20:28:00.372979+00 f t 6544 \N \N f f +5522 2025-08-14 21:04:33.143102+00 2025-08-14 21:04:33.14311+00 f t 6546 \N \N f f +5523 2025-08-14 21:41:12.285009+00 2025-08-14 21:41:12.28502+00 f t 6547 \N \N f f +5524 2025-08-14 22:07:05.703261+00 2025-08-14 22:01:56.591629+00 f t 6548 \N \N f f +5525 2025-08-14 22:33:43.807997+00 2025-08-14 22:33:43.808008+00 f t 6549 \N \N f f +5526 2025-08-14 22:38:26.351666+00 2025-08-14 22:38:26.351675+00 f t 6550 \N \N f f +5527 2025-08-14 22:39:32.39693+00 2025-08-14 22:39:32.396943+00 f t 6551 \N \N f f +5528 2025-08-14 22:45:40.44521+00 2025-08-14 22:45:40.445223+00 f t 6552 \N \N f f +5529 2025-08-14 22:49:25.954113+00 2025-08-14 22:49:25.954122+00 f t 6553 \N \N f f +5530 2025-08-14 23:24:30.803306+00 2025-08-14 23:24:30.80332+00 f t 6554 \N \N f f +5531 2025-08-14 23:30:50.772363+00 2025-08-14 23:30:50.772379+00 f t 6555 \N \N f f +5532 2025-08-15 00:06:29.994538+00 2025-08-15 00:06:29.99455+00 f t 6556 \N \N f f +5533 2025-08-15 00:07:29.525514+00 2025-08-15 00:07:29.525524+00 f t 6557 \N \N f f +5534 2025-08-15 00:53:32.738017+00 2025-08-15 00:53:32.73803+00 f t 6558 \N \N f f +5535 2025-08-15 01:10:10.54144+00 2025-08-15 01:10:10.541456+00 f t 6559 \N \N f f +5536 2025-08-15 01:25:55.945037+00 2025-08-15 01:25:55.945052+00 f t 6560 \N \N f f +5537 2025-08-15 01:27:41.782277+00 2025-08-15 01:27:41.78229+00 f t 6561 \N \N f f +5538 2025-08-15 01:45:01.643627+00 2025-08-15 01:45:01.643641+00 f t 6562 \N \N f f +5539 2025-08-15 01:51:31.890893+00 2025-08-15 01:51:31.890904+00 f t 6563 \N \N f f +5540 2025-08-15 02:11:39.31362+00 2025-08-15 02:11:39.313632+00 f t 6564 \N \N f f +5541 2025-08-15 02:42:04.599459+00 2025-08-15 02:42:04.599468+00 f t 6565 \N \N f f +5542 2025-08-15 03:19:03.746768+00 2025-08-15 03:19:03.746782+00 f t 6566 \N \N f f +5543 2025-08-15 03:44:45.427241+00 2025-08-15 03:44:45.427252+00 f t 6567 \N \N f f +5544 2025-08-15 03:46:59.59312+00 2025-08-15 03:46:59.593133+00 f t 6568 \N \N f f +5545 2025-08-15 03:47:51.198772+00 2025-08-15 03:47:51.198785+00 f t 6569 \N \N f f +5546 2025-08-15 04:38:14.47496+00 2025-08-15 04:38:14.474968+00 f t 6570 \N \N f f +5547 2025-08-15 05:05:36.403758+00 2025-08-15 05:05:36.403769+00 f t 6571 \N \N f f +5548 2025-08-15 07:07:05.540752+00 2025-08-15 07:07:05.540765+00 f t 6572 \N \N f f +5549 2025-08-15 07:12:02.381664+00 2025-08-15 07:12:02.381676+00 f t 6573 \N \N f f +5550 2025-08-15 08:16:23.577929+00 2025-08-15 08:16:23.577937+00 f t 6574 \N \N f f +5551 2025-08-15 08:17:51.738559+00 2025-08-15 08:17:51.738568+00 f t 6575 \N \N f f +5552 2025-08-15 09:48:44.013085+00 2025-08-15 09:48:44.013095+00 f t 6576 \N \N f f +5553 2025-08-15 09:52:39.31699+00 2025-08-15 09:52:39.317004+00 f t 6577 \N \N f f +5554 2025-08-15 12:03:44.836664+00 2025-08-15 12:03:44.836678+00 f t 6578 \N \N f f +5555 2025-08-15 12:40:21.135969+00 2025-08-15 12:40:21.135984+00 f t 6579 \N \N f f +5556 2025-08-15 12:42:20.840067+00 2025-08-15 12:42:20.840076+00 f t 6580 \N \N f f +5557 2025-08-15 12:43:19.448832+00 2025-08-15 12:43:19.448847+00 f t 6581 \N \N f f +5558 2025-08-15 12:51:14.166975+00 2025-08-15 12:51:14.166984+00 f t 6582 \N \N f f +5559 2025-08-15 13:27:51.675383+00 2025-08-15 13:27:51.675395+00 f t 6583 \N \N f f +5560 2025-08-15 13:29:56.80764+00 2025-08-15 13:29:56.807649+00 f t 6584 \N \N f f +5561 2025-08-15 13:45:57.87641+00 2025-08-15 13:45:57.87642+00 f t 6585 \N \N f f +5562 2025-08-15 14:01:24.257915+00 2025-08-15 14:01:24.257927+00 f t 6586 \N \N f f +5563 2025-08-15 14:43:35.205267+00 2025-08-15 14:43:35.205279+00 f t 6587 \N \N f f +5564 2025-08-15 14:43:45.293716+00 2025-08-15 14:43:45.293738+00 f t 6588 \N \N f f +5565 2025-08-15 14:46:11.687486+00 2025-08-15 14:46:11.687499+00 f t 6589 \N \N f f +5566 2025-08-15 14:48:46.406274+00 2025-08-15 14:48:46.406288+00 f t 6590 \N \N f f +5567 2025-08-15 15:10:24.908503+00 2025-08-15 15:10:24.908518+00 f t 6591 \N \N f f +5568 2025-08-15 15:16:16.097672+00 2025-08-15 15:16:16.097686+00 f t 6592 \N \N f f +5569 2025-08-15 15:34:46.30604+00 2025-08-15 15:34:46.306052+00 f t 6593 \N \N f f +5570 2025-08-15 15:36:47.106799+00 2025-08-15 15:36:47.106811+00 f t 6594 \N \N f f +5571 2025-08-15 15:36:52.941177+00 2025-08-15 15:36:52.941187+00 f t 6595 \N \N f f +5572 2025-08-15 15:38:47.820229+00 2025-08-15 15:38:47.820241+00 f t 6596 \N \N f f +5573 2025-08-15 15:49:38.605543+00 2025-08-15 15:49:38.605552+00 f t 6598 \N \N f f +5574 2025-08-15 15:55:25.047282+00 2025-08-15 15:55:25.047293+00 f t 6599 \N \N f f +5575 2025-08-15 16:08:19.725926+00 2025-08-15 16:08:19.725939+00 f t 6600 \N \N f f +5576 2025-08-15 16:20:54.244774+00 2025-08-15 16:20:54.244787+00 f t 6601 \N \N f f +5577 2025-08-15 16:32:24.276804+00 2025-08-15 16:32:24.276817+00 f t 4732 \N \N f f +5578 2025-08-15 17:25:34.87547+00 2025-08-15 17:25:34.875482+00 f t 6602 \N \N f f +5579 2025-08-15 17:26:23.66794+00 2025-08-15 17:26:23.667951+00 f t 6603 \N \N f f +5580 2025-08-15 17:33:22.239228+00 2025-08-15 17:33:22.239236+00 f t 6604 \N \N f f +5581 2025-08-15 17:43:13.138372+00 2025-08-15 17:43:13.138383+00 f t 6605 \N \N f f +5582 2025-08-15 18:04:45.696226+00 2025-08-15 18:04:45.696236+00 f t 6606 \N \N f f +5583 2025-08-15 18:50:13.429252+00 2025-08-15 18:50:13.429265+00 f t 6607 \N \N f f +5584 2025-08-15 19:02:38.027414+00 2025-08-15 19:02:38.027426+00 f t 6608 \N \N f f +5585 2025-08-15 19:07:32.463205+00 2025-08-15 19:07:32.463216+00 f t 6609 \N \N f f +5586 2025-08-15 19:33:16.465154+00 2025-08-15 19:33:16.465165+00 f t 6610 \N \N f f +5587 2025-08-15 20:11:33.0923+00 2025-08-15 20:11:33.092309+00 f t 6611 \N \N f f +5588 2025-08-15 20:18:07.999778+00 2025-08-15 20:18:07.999787+00 f t 6612 \N \N f f +5589 2025-08-15 20:19:55.184209+00 2025-08-15 20:19:55.184219+00 f t 6613 \N \N f f +5590 2025-08-15 20:24:37.690501+00 2025-08-15 20:24:37.690516+00 f t 6614 \N \N f f +5591 2025-08-15 20:29:03.702508+00 2025-08-15 20:29:03.70252+00 f t 6615 \N \N f f +5592 2025-08-15 20:32:06.699116+00 2025-08-15 20:32:06.699162+00 f t 6616 \N \N f f +5593 2025-08-15 20:37:29.76295+00 2025-08-15 20:37:29.762959+00 f t 6617 \N \N f f +5594 2025-08-15 20:41:09.848948+00 2025-08-15 20:41:09.848959+00 f t 6618 \N \N f f +5595 2025-08-15 22:07:29.920038+00 2025-08-15 22:07:29.920052+00 f t 6621 \N \N f f +5596 2025-08-15 22:10:19.095815+00 2025-08-15 22:10:19.095827+00 f t 6622 \N \N f f +5597 2025-08-15 22:14:46.332335+00 2025-08-15 22:14:46.332348+00 f t 6623 \N \N f f +5598 2025-08-15 22:16:46.372522+00 2025-08-15 22:16:46.372535+00 f t 6624 \N \N f f +5599 2025-08-15 22:31:17.522956+00 2025-08-15 22:31:17.522968+00 f t 6625 \N \N f f +5600 2025-08-15 22:41:37.284739+00 2025-08-15 22:41:37.284754+00 f t 6626 \N \N f f +5601 2025-08-15 22:52:30.763929+00 2025-08-15 22:52:30.763937+00 f t 6627 \N \N f f +5602 2025-08-15 23:03:24.036409+00 2025-08-15 23:03:24.036418+00 f t 6628 \N \N f f +5603 2025-08-15 23:38:35.12114+00 2025-08-15 23:38:35.121149+00 f t 6631 \N \N f f +5604 2025-08-16 00:05:48.45715+00 2025-08-16 00:05:48.457159+00 f t 6632 \N \N f f +5605 2025-08-16 00:22:58.345875+00 2025-08-16 00:22:58.345883+00 f t 6633 \N \N f f +5606 2025-08-16 00:24:39.955883+00 2025-08-16 00:24:39.955894+00 f t 6634 \N \N f f +5607 2025-08-16 00:49:42.231916+00 2025-08-16 00:49:42.231923+00 f t 6635 \N \N f f +5608 2025-08-16 01:22:09.042043+00 2025-08-16 01:22:09.042069+00 f t 6636 \N \N f f +5609 2025-08-16 01:36:18.101343+00 2025-08-16 01:36:18.101351+00 f t 6637 \N \N f f +5610 2025-08-16 01:39:18.125804+00 2025-08-16 01:39:18.125814+00 f t 6638 \N \N f f +5611 2025-08-16 01:58:59.107492+00 2025-08-16 01:58:59.107505+00 f t 6639 \N \N f f +5612 2025-08-16 02:29:06.154291+00 2025-08-16 02:29:06.154306+00 f t 6640 \N \N f f +5613 2025-08-16 04:47:24.753889+00 2025-08-16 04:47:24.753897+00 f t 6641 \N \N f f +5614 2025-08-16 04:47:34.376301+00 2025-08-16 04:47:34.376311+00 f t 6642 \N \N f f +5615 2025-08-16 04:51:50.323949+00 2025-08-16 04:51:50.32396+00 f t 6643 \N \N f f +5616 2025-08-16 05:03:58.273954+00 2025-08-16 05:03:58.273964+00 f t 6644 \N \N f f +5617 2025-08-16 07:01:57.386122+00 2025-08-16 07:01:57.386132+00 f t 6645 \N \N f f +5618 2025-08-16 07:42:40.966896+00 2025-08-16 07:39:33.95744+00 f t 6646 \N \N f f +5619 2025-08-16 11:10:04.893648+00 2025-08-16 11:10:04.893662+00 f t 6647 \N \N f f +5620 2025-08-16 12:24:59.625501+00 2025-08-16 12:24:59.625515+00 f t 6648 \N \N f f +5621 2025-08-16 12:34:43.288435+00 2025-08-16 12:34:43.288442+00 f t 6649 \N \N f f +5622 2025-08-16 13:21:21.81538+00 2025-08-16 13:21:21.815391+00 f t 6650 \N \N f f +5623 2025-08-16 13:22:05.851434+00 2025-08-16 13:22:05.851446+00 f t 6651 \N \N f f +5624 2025-08-16 13:26:44.465379+00 2025-08-16 13:26:44.465386+00 f t 6652 \N \N f f +5625 2025-08-16 13:27:45.921134+00 2025-08-16 13:27:45.921144+00 f t 6653 \N \N f f +5626 2025-08-16 13:38:07.154441+00 2025-08-16 13:31:41.29266+00 f t 6654 \N \N f f +5627 2025-08-16 13:54:04.035792+00 2025-08-16 13:54:04.035804+00 f t 6655 \N \N f f +5628 2025-08-16 13:55:08.679906+00 2025-08-16 13:55:08.679916+00 f t 6656 \N \N f f +5629 2025-08-16 13:57:45.142179+00 2025-08-16 13:57:45.142188+00 f t 6657 \N \N f f +5665 2025-08-17 01:43:20.395384+00 2025-08-17 01:43:20.395391+00 f t 6695 \N \N f f +5630 2025-08-16 14:08:38.013861+00 2025-08-16 13:59:30.073661+00 f t 6658 \N \N f f +5631 2025-08-16 14:52:52.006796+00 2025-08-16 14:52:52.006804+00 f t 6659 \N \N f f +5632 2025-08-16 14:55:46.354004+00 2025-08-16 14:55:46.354012+00 f t 6660 \N \N f f +5633 2025-08-16 14:56:00.539384+00 2025-08-16 14:56:00.539392+00 f t 6661 \N \N f f +5634 2025-08-16 15:07:54.012974+00 2025-08-16 15:07:54.012986+00 f t 6662 \N \N f f +5635 2025-08-16 16:17:29.296927+00 2025-08-16 16:17:29.296936+00 f t 6663 \N \N f f +5636 2025-08-16 16:33:13.834307+00 2025-08-16 16:33:13.834317+00 f t 6664 \N \N f f +5637 2025-08-16 17:25:35.968127+00 2025-08-16 17:25:35.968136+00 f t 6665 \N \N f f +5638 2025-08-16 17:33:58.309588+00 2025-08-16 17:33:58.309599+00 f t 6666 \N \N f f +5639 2025-08-16 17:34:49.155728+00 2025-08-16 17:34:49.155735+00 f t 6667 \N \N f f +5640 2025-08-16 17:39:02.097946+00 2025-08-16 17:39:02.097959+00 f t 6668 \N \N f f +5641 2025-08-16 17:46:39.711372+00 2025-08-16 17:46:39.71138+00 f t 6669 \N \N f f +5642 2025-08-16 17:54:51.272207+00 2025-08-16 17:54:51.27222+00 f t 6670 \N \N f f +5643 2025-08-16 18:27:04.140734+00 2025-08-16 18:27:04.140746+00 f t 6672 \N \N f f +5644 2025-08-16 18:27:23.727955+00 2025-08-16 18:27:23.727965+00 f t 6673 \N \N f f +5645 2025-08-16 18:28:18.68261+00 2025-08-16 18:28:18.682619+00 f t 6674 \N \N f f +5646 2025-08-16 18:36:49.514003+00 2025-08-16 18:36:49.514015+00 f t 6675 \N \N f f +5647 2025-08-16 19:20:16.254473+00 2025-08-16 19:20:16.254484+00 f t 6676 \N \N f f +5648 2025-08-16 19:23:44.785921+00 2025-08-16 19:23:44.785933+00 f t 6677 \N \N f f +5649 2025-08-16 19:51:28.834512+00 2025-08-16 19:51:28.834521+00 f t 6678 \N \N f f +5650 2025-08-16 20:09:01.546088+00 2025-08-16 20:09:01.546101+00 f t 6679 \N \N f f +5651 2025-08-16 20:56:40.210047+00 2025-08-16 20:56:40.21006+00 f t 6680 \N \N f f +5652 2025-08-16 22:37:55.259673+00 2025-08-16 22:37:55.259689+00 f t 6681 \N \N f f +5653 2025-08-16 23:05:29.815695+00 2025-08-16 23:05:29.815709+00 f t 6682 \N \N f f +5654 2025-08-16 23:10:52.17305+00 2025-08-16 23:10:52.173059+00 f t 6684 \N \N f f +5655 2025-08-16 23:14:12.951993+00 2025-08-16 23:14:12.952001+00 f t 6685 \N \N f f +5656 2025-08-16 23:20:20.755593+00 2025-08-16 23:20:20.755602+00 f t 6686 \N \N f f +5657 2025-08-16 23:45:04.675401+00 2025-08-16 23:45:04.675413+00 f t 6687 \N \N f f +5658 2025-08-17 00:26:49.787887+00 2025-08-17 00:26:49.787898+00 f t 6688 \N \N f f +5659 2025-08-17 00:32:24.434356+00 2025-08-17 00:32:24.434365+00 f t 6689 \N \N f f +5660 2025-08-17 00:32:57.293027+00 2025-08-17 00:32:57.293035+00 f t 6690 \N \N f f +5661 2025-08-17 00:56:47.300712+00 2025-08-17 00:56:47.30072+00 f t 6691 \N \N f f +5662 2025-08-17 01:02:08.202986+00 2025-08-17 01:02:08.202996+00 f t 6692 \N \N f f +5663 2025-08-17 01:02:46.145966+00 2025-08-17 01:02:46.145978+00 f t 6693 \N \N f f +5664 2025-08-17 01:05:32.130357+00 2025-08-17 01:05:32.130369+00 f t 6694 \N \N f f +5666 2025-08-17 01:59:54.585428+00 2025-08-17 01:59:54.585439+00 f t 6696 \N \N f f +5667 2025-08-17 02:25:21.934967+00 2025-08-17 02:25:21.934975+00 f t 6697 \N \N f f +5668 2025-08-17 03:15:26.947041+00 2025-08-17 03:15:26.947051+00 f t 6698 \N \N f f +5669 2025-08-17 03:25:15.358439+00 2025-08-17 03:25:15.358453+00 f t 6699 \N \N f f +5670 2025-08-17 03:28:31.085716+00 2025-08-17 03:28:31.085725+00 f t 6700 \N \N f f +5671 2025-08-17 04:09:43.509623+00 2025-08-17 04:09:43.509637+00 f t 6701 \N \N f f +5672 2025-08-17 04:58:06.474897+00 2025-08-17 04:58:06.47491+00 f t 6702 \N \N f f +5673 2025-08-17 05:07:45.41296+00 2025-08-17 05:07:45.412971+00 f t 6703 \N \N f f +5674 2025-08-17 05:08:47.162981+00 2025-08-17 05:08:47.162989+00 f t 6704 \N \N f f +5675 2025-08-17 05:33:42.333077+00 2025-08-17 05:33:42.333087+00 f t 6705 \N \N f f +5676 2025-08-17 06:00:02.640403+00 2025-08-17 06:00:02.640419+00 f t 6706 \N \N f f +5677 2025-08-17 06:35:39.08591+00 2025-08-17 06:35:39.085924+00 f t 6707 \N \N f f +5678 2025-08-17 06:48:58.888097+00 2025-08-17 06:48:58.88811+00 f t 6708 \N \N f f +5679 2025-08-17 06:58:09.636235+00 2025-08-17 06:58:09.636249+00 f t 6709 \N \N f f +5680 2025-08-17 09:56:20.227417+00 2025-08-17 09:56:20.227427+00 f t 6710 \N \N f f +5681 2025-08-17 11:10:55.213009+00 2025-08-17 11:10:55.213021+00 f t 6711 \N \N f f +5682 2025-08-17 11:14:09.178776+00 2025-08-17 11:14:09.178784+00 f t 6712 \N \N f f +5683 2025-08-17 11:57:31.94776+00 2025-08-17 11:57:31.947768+00 f t 6713 \N \N f f +5684 2025-08-17 12:32:19.537858+00 2025-08-17 12:32:19.537867+00 f t 6714 \N \N f f +5685 2025-08-17 12:34:13.854577+00 2025-08-17 12:34:13.854587+00 f t 6715 \N \N f f +5686 2025-08-17 12:58:57.836914+00 2025-08-17 12:58:57.836924+00 f t 6716 \N \N f f +5687 2025-08-17 13:14:04.756328+00 2025-08-17 13:14:04.756338+00 f t 6717 \N \N f f +5688 2025-08-17 14:05:29.203541+00 2025-08-17 14:05:29.20355+00 f t 6718 \N \N f f +5689 2025-08-17 14:16:54.27923+00 2025-08-17 14:16:54.279238+00 f t 6719 \N \N f f +5690 2025-08-17 14:31:47.559645+00 2025-08-17 14:31:47.559655+00 f t 6720 \N \N f f +5691 2025-08-17 15:01:45.001969+00 2025-08-17 15:01:45.00198+00 f t 6721 \N \N f f +5692 2025-08-17 15:05:44.069541+00 2025-08-17 15:05:44.069549+00 f t 6722 \N \N f f +5693 2025-08-17 16:15:01.198251+00 2025-08-17 16:15:01.198263+00 f t 6723 \N \N f f +5694 2025-08-17 16:18:28.991896+00 2025-08-17 16:18:28.991904+00 f t 6724 \N \N f f +5695 2025-08-17 16:19:30.455076+00 2025-08-17 16:19:30.455089+00 f t 6725 \N \N f f +5696 2025-08-17 16:22:20.651199+00 2025-08-17 16:22:20.651208+00 f t 6726 \N \N f f +5697 2025-08-17 16:51:38.412617+00 2025-08-17 16:51:38.412625+00 f t 6727 \N \N f f +5698 2025-08-17 17:54:38.93279+00 2025-08-17 17:54:38.932802+00 f t 6728 \N \N f f +5699 2025-08-17 18:10:13.438156+00 2025-08-17 18:10:13.438166+00 f t 6729 \N \N f f +5700 2025-08-17 18:15:16.335499+00 2025-08-17 18:15:16.33551+00 f t 6730 \N \N f f +5701 2025-08-17 19:39:22.875354+00 2025-08-17 19:39:22.875365+00 f t 6731 \N \N f f +5702 2025-08-17 20:39:02.457473+00 2025-08-17 20:39:02.457487+00 f t 6733 \N \N f f +5703 2025-08-17 21:00:16.422551+00 2025-08-17 21:00:16.422566+00 f t 6734 \N \N f f +5704 2025-08-17 21:01:55.035931+00 2025-08-17 21:01:55.035944+00 f t 6735 \N \N f f +5705 2025-08-17 21:22:26.253117+00 2025-08-17 21:22:26.253127+00 f t 6736 \N \N f f +5706 2025-08-17 21:45:35.960958+00 2025-08-17 21:45:35.960969+00 f t 6737 \N \N f f +5707 2025-08-17 21:49:55.502656+00 2025-08-17 21:49:55.502669+00 f t 6738 \N \N f f +5708 2025-08-17 21:55:31.464332+00 2025-08-17 21:55:31.464344+00 f t 6739 \N \N f f +5709 2025-08-17 21:59:32.037474+00 2025-08-17 21:59:32.037485+00 f t 6740 \N \N f f +5710 2025-08-17 22:01:01.756327+00 2025-08-17 22:01:01.75634+00 f t 6741 \N \N f f +5711 2025-08-17 22:01:46.198254+00 2025-08-17 22:01:46.198263+00 f t 6742 \N \N f f +5712 2025-08-17 22:20:48.327939+00 2025-08-17 22:20:48.327952+00 f t 6743 \N \N f f +5713 2025-08-17 22:28:43.845187+00 2025-08-17 22:28:43.845197+00 f t 6744 \N \N f f +5714 2025-08-17 23:00:06.293971+00 2025-08-17 23:00:06.293989+00 f t 6745 \N \N f f +5715 2025-08-17 23:13:09.121025+00 2025-08-17 23:13:09.121038+00 f t 6746 \N \N f f +5716 2025-08-17 23:27:07.440743+00 2025-08-17 23:27:07.440753+00 f t 6747 \N \N f f +5717 2025-08-17 23:30:44.363781+00 2025-08-17 23:30:44.363793+00 f t 6748 \N \N f f +5718 2025-08-17 23:45:11.371518+00 2025-08-17 23:45:11.371531+00 f t 6749 \N \N f f +5719 2025-08-17 23:47:27.248597+00 2025-08-17 23:47:27.24861+00 f t 6750 \N \N f f +5720 2025-08-18 00:39:19.919469+00 2025-08-18 00:39:19.919478+00 f t 6751 \N \N f f +5721 2025-08-18 00:40:17.526199+00 2025-08-18 00:40:17.526211+00 f t 6688 \N \N f f +5722 2025-08-18 00:47:15.644353+00 2025-08-18 00:47:15.644367+00 f t 6752 \N \N f f +5723 2025-08-18 01:43:15.411702+00 2025-08-18 01:43:15.411712+00 f t 6753 \N \N f f +5724 2025-08-18 01:45:03.381494+00 2025-08-18 01:45:03.381507+00 f t 6754 \N \N f f +5725 2025-08-18 02:08:28.000919+00 2025-08-18 02:08:28.000927+00 f t 6755 \N \N f f +5726 2025-08-18 02:10:46.957325+00 2025-08-18 02:10:46.957334+00 f t 6756 \N \N f f +5727 2025-08-18 02:32:59.071311+00 2025-08-18 02:32:59.07132+00 f t 6757 \N \N f f +5728 2025-08-18 03:55:34.784905+00 2025-08-18 03:55:34.784919+00 f t 6758 \N \N f f +5729 2025-08-18 04:10:49.471705+00 2025-08-18 04:10:49.471717+00 f t 6759 \N \N f f +5730 2025-08-18 04:17:00.670631+00 2025-08-18 04:17:00.670639+00 f t 6760 \N \N f f +5731 2025-08-18 04:26:43.858323+00 2025-08-18 04:26:43.858334+00 f t 6761 \N \N f f +5732 2025-08-18 04:48:38.301612+00 2025-08-18 04:48:38.301623+00 f t 6762 \N \N f f +5733 2025-08-18 08:11:51.626184+00 2025-08-18 08:11:51.626198+00 f t 6763 \N \N f f +5734 2025-08-18 11:36:02.747825+00 2025-08-18 11:36:02.747838+00 f t 6764 \N \N f f +5735 2025-08-18 11:43:47.418251+00 2025-08-18 11:43:47.418264+00 f t 6765 \N \N f f +5736 2025-08-18 11:44:50.509072+00 2025-08-18 11:44:50.509085+00 f t 6766 \N \N f f +5737 2025-08-18 12:11:15.105687+00 2025-08-18 12:09:49.944608+00 f t 6767 \N \N f f +5738 2025-08-18 12:11:48.517633+00 2025-08-18 12:11:48.517643+00 f t 6768 \N \N f f +5739 2025-08-18 12:13:45.964835+00 2025-08-18 12:13:45.964849+00 f t 6769 \N \N f f +5740 2025-08-18 12:53:27.353859+00 2025-08-18 12:53:27.353872+00 f t 6770 \N \N f f +5741 2025-08-18 13:10:07.836454+00 2025-08-18 13:10:07.836463+00 f t 6771 \N \N f f +5742 2025-08-18 13:25:00.192035+00 2025-08-18 13:25:00.192049+00 f t 6772 \N \N f f +5743 2025-08-18 13:36:56.967619+00 2025-08-18 13:36:56.967629+00 f t 6773 \N \N f f +5744 2025-08-18 13:38:49.643042+00 2025-08-18 13:38:49.643053+00 f t 6774 \N \N f f +5745 2025-08-18 13:39:50.862924+00 2025-08-18 13:39:50.862936+00 f t 6775 \N \N f f +5746 2025-08-18 14:01:25.138149+00 2025-08-18 14:01:25.138162+00 f t 6776 \N \N f f +5747 2025-08-18 14:27:23.067025+00 2025-08-18 14:27:23.067033+00 f t 6777 \N \N f f +5748 2025-08-18 14:38:38.264179+00 2025-08-18 14:38:38.264188+00 f t 6778 \N \N f f +5749 2025-08-18 15:08:08.855401+00 2025-08-18 15:08:08.855411+00 f t 6779 \N \N f f +5750 2025-08-18 15:09:26.429336+00 2025-08-18 15:09:26.429347+00 f t 6780 \N \N f f +5751 2025-08-18 15:18:40.31938+00 2025-08-18 15:18:40.319388+00 f t 6781 \N \N f f +5752 2025-08-18 15:22:25.265833+00 2025-08-18 15:22:25.265845+00 f t 6782 \N \N f f +5753 2025-08-18 16:17:20.917719+00 2025-08-18 16:17:20.917731+00 f t 6783 \N \N f f +5754 2025-08-18 16:31:06.891458+00 2025-08-18 16:31:06.891471+00 f t 6784 \N \N f f +5755 2025-08-18 16:35:39.568826+00 2025-08-18 16:35:39.568836+00 f t 6786 \N \N f f +5756 2025-08-18 16:51:59.754693+00 2025-08-18 16:51:59.754702+00 f t 6787 \N \N f f +5757 2025-08-18 17:21:52.387251+00 2025-08-18 17:21:52.387262+00 f t 6790 \N \N f f +5758 2025-08-18 17:23:52.222124+00 2025-08-18 17:23:52.222135+00 f t 6791 \N \N f f +5759 2025-08-18 17:24:23.598692+00 2025-08-18 17:24:23.598704+00 f t 6792 \N \N f f +5760 2025-08-18 17:25:54.114724+00 2025-08-18 17:25:54.114736+00 f t 6793 \N \N f f +5761 2025-08-18 17:34:47.487656+00 2025-08-18 17:34:47.487665+00 f t 6794 \N \N f f +5762 2025-08-18 17:35:41.729792+00 2025-08-18 17:35:41.729802+00 f t 6795 \N \N f f +5763 2025-08-18 17:44:59.199056+00 2025-08-18 17:44:59.199063+00 f t 6796 \N \N f f +5764 2025-08-18 17:55:12.088046+00 2025-08-18 17:55:12.088054+00 f t 6797 \N \N f f +5765 2025-08-18 17:58:12.85547+00 2025-08-18 17:58:12.855483+00 f t 6798 \N \N f f +5766 2025-08-18 17:59:19.153795+00 2025-08-18 17:59:19.153807+00 f t 6799 \N \N f f +5767 2025-08-18 18:23:03.55942+00 2025-08-18 18:23:03.55943+00 f t 6800 \N \N f f +5768 2025-08-18 18:23:31.689935+00 2025-08-18 18:23:31.689943+00 f t 6801 \N \N f f +5769 2025-08-18 19:12:58.732603+00 2025-08-18 19:12:58.732615+00 f t 6803 \N \N f f +5770 2025-08-18 19:25:37.089796+00 2025-08-18 19:25:37.089806+00 f t 6804 \N \N f f +5771 2025-08-18 20:00:47.802935+00 2025-08-18 20:00:47.802947+00 f t 6805 \N \N f f +5772 2025-08-18 20:10:06.351723+00 2025-08-18 20:10:06.351739+00 f t 6806 \N \N f f +5773 2025-08-18 20:28:54.734699+00 2025-08-18 20:28:54.73471+00 f t 6807 \N \N f f +5774 2025-08-18 20:30:59.45352+00 2025-08-18 20:30:59.453528+00 f t 6808 \N \N f f +5775 2025-08-18 20:54:48.46256+00 2025-08-18 20:54:48.462572+00 f t 6809 \N \N f f +5776 2025-08-18 21:11:14.798013+00 2025-08-18 21:11:14.798021+00 f t 6810 \N \N f f +5777 2025-08-18 21:20:56.050248+00 2025-08-18 21:20:56.050257+00 f t 6811 \N \N f f +5778 2025-08-18 21:21:26.817841+00 2025-08-18 21:21:26.81785+00 f t 6812 \N \N f f +5779 2025-08-18 21:21:39.87194+00 2025-08-18 21:21:39.871949+00 f t 6813 \N \N f f +5780 2025-08-18 21:48:22.221142+00 2025-08-18 21:48:22.22115+00 f t 6815 \N \N f f +5781 2025-08-18 21:59:35.617527+00 2025-08-18 21:59:35.617534+00 f t 6816 \N \N f f +5782 2025-08-18 22:06:31.087848+00 2025-08-18 22:06:31.087861+00 f t 6817 \N \N f f +5783 2025-08-18 22:10:37.665122+00 2025-08-18 22:10:37.66513+00 f t 6818 \N \N f f +5784 2025-08-18 22:35:44.660707+00 2025-08-18 22:35:44.660719+00 f t 6819 \N \N f f +5785 2025-08-18 22:38:02.813191+00 2025-08-18 22:38:02.813205+00 f t 6820 \N \N f f +5786 2025-08-18 22:41:10.528862+00 2025-08-18 22:41:10.528873+00 f t 6821 \N \N f f +5787 2025-08-18 22:46:02.392677+00 2025-08-18 22:46:02.392685+00 f t 6822 \N \N f f +5788 2025-08-18 23:13:42.550758+00 2025-08-18 23:13:42.550765+00 f t 6823 \N \N f f +5789 2025-08-18 23:16:26.836083+00 2025-08-18 23:16:26.836092+00 f t 6824 \N \N f f +5790 2025-08-18 23:52:29.992467+00 2025-08-18 23:52:29.992475+00 f t 6825 \N \N f f +5791 2025-08-18 23:55:45.084526+00 2025-08-18 23:55:45.084539+00 f t 6826 \N \N f f +5792 2025-08-18 23:57:07.783024+00 2025-08-18 23:57:07.783033+00 f t 6827 \N \N f f +5793 2025-08-18 23:58:23.673445+00 2025-08-18 23:58:23.673501+00 f t 6828 \N \N f f +5794 2025-08-19 00:31:29.364966+00 2025-08-19 00:31:29.364979+00 f t 6829 \N \N f f +5795 2025-08-19 00:37:11.088875+00 2025-08-19 00:37:11.088884+00 f t 6830 \N \N f f +5796 2025-08-19 01:19:58.580904+00 2025-08-19 01:19:58.580911+00 f t 6831 \N \N f f +5797 2025-08-19 01:22:11.055474+00 2025-08-19 01:22:11.055485+00 f t 6832 \N \N f f +5798 2025-08-19 01:24:20.853663+00 2025-08-19 01:24:20.853671+00 f t 6833 \N \N f f +5799 2025-08-19 01:44:59.163834+00 2025-08-19 01:44:59.163841+00 f t 6834 \N \N f f +5800 2025-08-19 02:17:20.751673+00 2025-08-19 02:17:20.751682+00 f t 6835 \N \N f f +5801 2025-08-19 02:33:34.161587+00 2025-08-19 02:33:34.161596+00 f t 6836 \N \N f f +5802 2025-08-19 02:39:46.204342+00 2025-08-19 02:39:46.204353+00 f t 6837 \N \N f f +5803 2025-08-19 02:53:14.139081+00 2025-08-19 02:53:14.139089+00 f t 6838 \N \N f f +5804 2025-08-19 03:31:51.745168+00 2025-08-19 03:31:51.745181+00 f t 6839 \N \N f f +5805 2025-08-19 05:32:15.817911+00 2025-08-19 05:32:15.817922+00 f t 6840 \N \N f f +5806 2025-08-19 06:30:08.753304+00 2025-08-19 06:30:08.753317+00 f t 6841 \N \N f f +5807 2025-08-19 06:45:26.947686+00 2025-08-19 06:45:26.947698+00 f t 6842 \N \N f f +5808 2025-08-19 06:53:39.634816+00 2025-08-19 06:53:39.634828+00 f t 6843 \N \N f f +5809 2025-08-19 08:27:28.659541+00 2025-08-19 08:27:28.659548+00 f t 6844 \N \N f f +5810 2025-08-19 10:56:35.776847+00 2025-08-19 10:56:35.776858+00 f t 6845 \N \N f f +5811 2025-08-19 11:04:22.132117+00 2025-08-19 11:04:22.132127+00 f t 6846 \N \N f f +5812 2025-08-19 11:15:50.728635+00 2025-08-19 11:15:50.728648+00 f t 6847 \N \N f f +5813 2025-08-19 11:38:06.279964+00 2025-08-19 11:38:06.279973+00 f t 6848 \N \N f f +5814 2025-08-19 11:56:48.963493+00 2025-08-19 11:56:48.963502+00 f t 6849 \N \N f f +5815 2025-08-19 12:10:57.715194+00 2025-08-19 12:10:57.715209+00 f t 6850 \N \N f f +5816 2025-08-19 12:15:17.235845+00 2025-08-19 12:15:17.235855+00 f t 6851 \N \N f f +5817 2025-08-19 12:15:45.428104+00 2025-08-19 12:15:45.428112+00 f t 6852 \N \N f f +5818 2025-08-19 12:37:23.626891+00 2025-08-19 12:37:23.6269+00 f t 6853 \N \N f f +5819 2025-08-19 12:43:02.986851+00 2025-08-19 12:43:02.98686+00 f t 6854 \N \N f f +5820 2025-08-19 12:44:22.595527+00 2025-08-19 12:44:22.595536+00 f t 6855 \N \N f f +5821 2025-08-19 12:54:16.525032+00 2025-08-19 12:54:16.525041+00 f t 6856 \N \N f f +5822 2025-08-19 13:12:23.854539+00 2025-08-19 13:12:23.854547+00 f t 6857 \N \N f f +5823 2025-08-19 13:20:24.942725+00 2025-08-19 13:20:24.942735+00 f t 6858 \N \N f f +5824 2025-08-19 13:22:56.71733+00 2025-08-19 13:22:56.71734+00 f t 6859 \N \N f f +5825 2025-08-19 13:34:08.560336+00 2025-08-19 13:34:08.560357+00 f t 6860 \N \N f f +5826 2025-08-19 13:57:34.105588+00 2025-08-19 13:57:34.1056+00 f t 6861 \N \N f f +5827 2025-08-19 14:00:50.106351+00 2025-08-19 14:00:50.106359+00 f t 6862 \N \N f f +5828 2025-08-19 14:02:16.129457+00 2025-08-19 14:02:16.129469+00 f t 6863 \N \N f f +5829 2025-08-19 14:16:43.561329+00 2025-08-19 14:16:43.561338+00 f t 6864 \N \N f f +5830 2025-08-19 14:17:57.911019+00 2025-08-19 14:17:57.911028+00 f t 6865 \N \N f f +5831 2025-08-19 14:23:33.582929+00 2025-08-19 14:23:33.582939+00 f t 6866 \N \N f f +5832 2025-08-19 15:00:37.824766+00 2025-08-19 15:00:37.82478+00 f t 6867 \N \N f f +5833 2025-08-19 15:14:09.372586+00 2025-08-19 15:14:09.372598+00 f t 6868 \N \N f f +5834 2025-08-19 16:06:27.011774+00 2025-08-19 16:06:27.011786+00 f t 6871 \N \N f f +5835 2025-08-19 16:07:34.706188+00 2025-08-19 16:07:34.706196+00 f t 6872 \N \N f f +5836 2025-08-19 16:12:03.174831+00 2025-08-19 16:12:03.174845+00 f t 6873 \N \N f f +5837 2025-08-19 16:33:26.237335+00 2025-08-19 16:33:26.237345+00 f t 6874 \N \N f f +5838 2025-08-19 16:37:51.074204+00 2025-08-19 16:37:51.074218+00 f t 6875 \N \N f f +5839 2025-08-19 16:38:48.677556+00 2025-08-19 16:38:48.677564+00 f t 6876 \N \N f f +5840 2025-08-19 17:02:07.026073+00 2025-08-19 17:02:07.026087+00 f t 6877 \N \N f f +5841 2025-08-19 17:23:29.707767+00 2025-08-19 17:23:29.707779+00 f t 6878 \N \N f f +5842 2025-08-19 17:39:58.882258+00 2025-08-19 17:39:58.883615+00 f t 6879 \N \N f f +5843 2025-08-19 18:18:20.730159+00 2025-08-19 18:18:20.730168+00 f t 6881 \N \N f f +5844 2025-08-19 18:19:06.016238+00 2025-08-19 18:19:06.016249+00 f t 6882 \N \N f f +5845 2025-08-19 18:25:57.904476+00 2025-08-19 18:25:57.904485+00 f t 6883 \N \N f f +5846 2025-08-19 18:39:20.529696+00 2025-08-19 18:39:20.529704+00 f t 6884 \N \N f f +5847 2025-08-19 18:45:40.329853+00 2025-08-19 18:45:40.32987+00 f t 6885 \N \N f f +5848 2025-08-19 18:55:21.663151+00 2025-08-19 18:55:21.663159+00 f t 6886 \N \N f f +5849 2025-08-19 19:14:16.846493+00 2025-08-19 19:14:16.846506+00 f t 6887 \N \N f f +5850 2025-08-19 19:27:40.162173+00 2025-08-19 19:27:40.162186+00 f t 6888 \N \N f f +5851 2025-08-19 19:42:38.710579+00 2025-08-19 19:42:38.710588+00 f t 6889 \N \N f f +5852 2025-08-19 20:13:31.068449+00 2025-08-19 20:13:31.068463+00 f t 6890 \N \N f f +5853 2025-08-19 20:20:19.133318+00 2025-08-19 20:20:19.133329+00 f t 6891 \N \N f f +5854 2025-08-19 21:05:37.600941+00 2025-08-19 21:05:37.600953+00 f t 6892 \N \N f f +5855 2025-08-19 21:23:12.772452+00 2025-08-19 21:23:12.772459+00 f t 6893 \N \N f f +5856 2025-08-19 21:26:05.999938+00 2025-08-19 21:24:00.756254+00 f t 6894 \N \N f f +5857 2025-08-19 21:30:40.955727+00 2025-08-19 21:30:40.955739+00 f t 6770 \N \N f f +5858 2025-08-19 21:42:03.44843+00 2025-08-19 21:42:03.448439+00 f t 6895 \N \N f f +5859 2025-08-19 21:49:47.23023+00 2025-08-19 21:49:47.230237+00 f t 6896 \N \N f f +5860 2025-08-19 21:56:34.983214+00 2025-08-19 21:56:34.983222+00 f t 6897 \N \N f f +5861 2025-08-19 22:06:03.39273+00 2025-08-19 22:06:03.392743+00 f t 6898 \N \N f f +5862 2025-08-19 22:28:22.983516+00 2025-08-19 22:28:22.983525+00 f t 6899 \N \N f f +5863 2025-08-19 23:18:19.582828+00 2025-08-19 23:18:19.582838+00 f t 6900 \N \N f f +5864 2025-08-19 23:20:23.575011+00 2025-08-19 23:20:23.57502+00 f t 6901 \N \N f f +5865 2025-08-19 23:21:29.551402+00 2025-08-19 23:21:29.551411+00 f t 6902 \N \N f f +5866 2025-08-19 23:25:24.594635+00 2025-08-19 23:25:24.594643+00 f t 6903 \N \N f f +5867 2025-08-19 23:29:21.785707+00 2025-08-19 23:29:21.785716+00 f t 6904 \N \N f f +5868 2025-08-19 23:34:04.380419+00 2025-08-19 23:34:04.380431+00 f t 6906 \N \N f f +5869 2025-08-19 23:41:13.105656+00 2025-08-19 23:41:13.105668+00 f t 6908 \N \N f f +5870 2025-08-20 00:06:32.753791+00 2025-08-20 00:06:32.753802+00 f t 6911 \N \N f f +5871 2025-08-20 00:11:17.474184+00 2025-08-20 00:11:17.474192+00 f t 6912 \N \N f f +5872 2025-08-20 00:15:28.155942+00 2025-08-20 00:15:28.15595+00 f t 6913 \N \N f f +5873 2025-08-20 00:21:22.608309+00 2025-08-20 00:21:22.608316+00 f t 6914 \N \N f f +5874 2025-08-20 00:22:37.997977+00 2025-08-20 00:22:37.997989+00 f t 6915 \N \N f f +5875 2025-08-20 00:29:54.915387+00 2025-08-20 00:29:54.915398+00 f t 6916 \N \N f f +5876 2025-08-20 00:34:02.118361+00 2025-08-20 00:34:02.118374+00 f t 6917 \N \N f f +5877 2025-08-20 00:38:19.758703+00 2025-08-20 00:38:19.75871+00 f t 6918 \N \N f f +5878 2025-08-20 00:43:36.748978+00 2025-08-20 00:43:36.748989+00 f t 6919 \N \N f f +5879 2025-08-20 01:25:19.383276+00 2025-08-20 01:25:19.383284+00 f t 6920 \N \N f f +5880 2025-08-20 01:40:50.258214+00 2025-08-20 01:40:50.258224+00 f t 6921 \N \N f f +5881 2025-08-20 01:46:02.403979+00 2025-08-20 01:46:02.403992+00 f t 6922 \N \N f f +5882 2025-08-20 02:00:32.821306+00 2025-08-20 02:00:32.821326+00 f t 6923 \N \N f f +5883 2025-08-20 04:02:27.192601+00 2025-08-20 04:02:27.192613+00 f t 6924 \N \N f f +5884 2025-08-20 04:07:36.613283+00 2025-08-20 04:07:36.613296+00 f t 6925 \N \N f f +5885 2025-08-20 05:18:41.645709+00 2025-08-20 05:18:41.645717+00 f t 6926 \N \N f f +5886 2025-08-20 06:31:49.342044+00 2025-08-20 06:27:06.260933+00 f t 6927 \N \N f f +5887 2025-08-20 08:49:59.588643+00 2025-08-20 08:49:59.588651+00 f t 6928 \N \N f f +5888 2025-08-20 11:08:11.029007+00 2025-08-20 11:08:11.02902+00 f t 6929 \N \N f f +5889 2025-08-20 11:53:59.591247+00 2025-08-20 11:53:59.59126+00 f t 6930 \N \N f f +5890 2025-08-20 12:01:43.7649+00 2025-08-20 12:01:43.76491+00 f t 6931 \N \N f f +5891 2025-08-20 12:16:05.254135+00 2025-08-20 12:16:05.254148+00 f t 6932 \N \N f f +5892 2025-08-20 12:27:33.827519+00 2025-08-20 12:27:33.827531+00 f t 6933 \N \N f f +5893 2025-08-20 12:29:14.513485+00 2025-08-20 12:29:14.513493+00 f t 6934 \N \N f f +5894 2025-08-20 13:00:05.505769+00 2025-08-20 13:00:05.505783+00 f t 6935 \N \N f f +5895 2025-08-20 13:13:27.926549+00 2025-08-20 13:13:27.926557+00 f t 6936 \N \N f f +5896 2025-08-20 13:29:31.846077+00 2025-08-20 13:29:31.846086+00 f t 6937 \N \N f f +5897 2025-08-20 13:39:27.003919+00 2025-08-20 13:39:27.003928+00 f t 6938 \N \N f f +5898 2025-08-20 13:41:30.998856+00 2025-08-20 13:41:30.998868+00 f t 6939 \N \N f f +5899 2025-08-20 14:17:54.018125+00 2025-08-20 14:17:54.018139+00 f t 6940 \N \N f f +5900 2025-08-20 14:32:27.898857+00 2025-08-20 14:32:27.898867+00 f t 6941 \N \N f f +5901 2025-08-20 14:35:51.459524+00 2025-08-20 14:35:51.45953+00 f t 6942 \N \N f f +5902 2025-08-20 14:47:53.527586+00 2025-08-20 14:47:53.527598+00 f t 6943 \N \N f f +5903 2025-08-20 14:51:32.581543+00 2025-08-20 14:51:32.581555+00 f t 6944 \N \N f f +5904 2025-08-20 14:52:46.881707+00 2025-08-20 14:52:46.881716+00 f t 6945 \N \N f f +5905 2025-08-20 14:55:46.725475+00 2025-08-20 14:55:46.725485+00 f t 6946 \N \N f f +5906 2025-08-20 15:05:27.373582+00 2025-08-20 15:05:27.373596+00 f t 6947 \N \N f f +5907 2025-08-20 15:06:03.016042+00 2025-08-20 15:06:03.016055+00 f t 6948 \N \N f f +5908 2025-08-20 15:06:15.512992+00 2025-08-20 15:06:15.513002+00 f t 6949 \N \N f f +5909 2025-08-20 15:08:39.987297+00 2025-08-20 15:08:39.987305+00 f t 6950 \N \N f f +5910 2025-08-20 15:20:43.60183+00 2025-08-20 15:20:43.601838+00 f t 6952 \N \N f f +5911 2025-08-20 15:40:37.751695+00 2025-08-20 15:40:37.751707+00 f t 6953 \N \N f f +5912 2025-08-20 15:44:19.440927+00 2025-08-20 15:44:19.440936+00 f t 6954 \N \N f f +5913 2025-08-20 15:44:32.691013+00 2025-08-20 15:44:32.691021+00 f t 6955 \N \N f f +5914 2025-08-20 16:02:31.81619+00 2025-08-20 16:02:31.8162+00 f t 6957 \N \N f f +5915 2025-08-20 16:03:19.240362+00 2025-08-20 16:03:19.240376+00 f t 6958 \N \N f f +5916 2025-08-20 16:14:26.786559+00 2025-08-20 16:14:26.786571+00 f t 6959 \N \N f f +5917 2025-08-20 16:15:43.46327+00 2025-08-20 16:15:43.46328+00 f t 6960 \N \N f f +5918 2025-08-20 16:19:56.783846+00 2025-08-20 16:19:56.783854+00 f t 6961 \N \N f f +5919 2025-08-20 16:22:21.712379+00 2025-08-20 16:22:21.712386+00 f t 6962 \N \N f f +5920 2025-08-20 16:42:10.304642+00 2025-08-20 16:42:10.304653+00 f t 6963 \N \N f f +5921 2025-08-20 16:48:07.016444+00 2025-08-20 16:48:07.016454+00 f t 6964 \N \N f f +5922 2025-08-20 16:58:52.053714+00 2025-08-20 16:58:52.053722+00 f t 6965 \N \N f f +5923 2025-08-20 17:08:33.132013+00 2025-08-20 17:08:33.132023+00 f t 6966 \N \N f f +5924 2025-08-20 17:17:48.608588+00 2025-08-20 17:17:48.608597+00 f t 6967 \N \N f f +5925 2025-08-20 17:24:04.340496+00 2025-08-20 17:24:04.340507+00 f t 6968 \N \N f f +5926 2025-08-20 17:24:11.52389+00 2025-08-20 17:24:11.523901+00 f t 6969 \N \N f f +5927 2025-08-20 17:42:08.08407+00 2025-08-20 17:42:08.084079+00 f t 6971 \N \N f f +5928 2025-08-20 17:44:10.745219+00 2025-08-20 17:44:10.745227+00 f t 6972 \N \N f f +5929 2025-08-20 17:45:11.675185+00 2025-08-20 17:45:11.675194+00 f t 6973 \N \N f f +5930 2025-08-20 18:07:10.154415+00 2025-08-20 18:07:10.154426+00 f t 6974 \N \N f f +5931 2025-08-20 18:09:36.383913+00 2025-08-20 18:09:36.383926+00 f t 6975 \N \N f f +5932 2025-08-20 18:32:08.999364+00 2025-08-20 18:32:08.999374+00 f t 6976 \N \N f f +5933 2025-08-20 18:56:09.77218+00 2025-08-20 18:56:09.77219+00 f t 6977 \N \N f f +5934 2025-08-20 19:38:25.472015+00 2025-08-20 19:38:25.472025+00 f t 6978 \N \N f f +5935 2025-08-20 20:12:29.170397+00 2025-08-20 20:12:29.170407+00 f t 6979 \N \N f f +5936 2025-08-20 20:51:41.161269+00 2025-08-20 20:51:41.16128+00 f t 6980 \N \N f f +5937 2025-08-20 21:08:15.460443+00 2025-08-20 21:08:15.460452+00 f t 6981 \N \N f f +5938 2025-08-20 21:23:16.461218+00 2025-08-20 21:23:16.461231+00 f t 6982 \N \N f f +5939 2025-08-20 21:32:41.390757+00 2025-08-20 21:32:41.390765+00 f t 6983 \N \N f f +5940 2025-08-20 21:38:55.72255+00 2025-08-20 21:38:55.722557+00 f t 6984 \N \N f f +5941 2025-08-20 21:41:29.076209+00 2025-08-20 21:41:29.07622+00 f t 6985 \N \N f f +5942 2025-08-20 21:43:47.945899+00 2025-08-20 21:43:47.945908+00 f t 6986 \N \N f f +5943 2025-08-20 21:50:27.529106+00 2025-08-20 21:50:27.529114+00 f t 6987 \N \N f f +5944 2025-08-20 21:56:59.723082+00 2025-08-20 21:56:59.723094+00 f t 6988 \N \N f f +5945 2025-08-20 22:04:38.901748+00 2025-08-20 22:04:38.901758+00 f t 6989 \N \N f f +5946 2025-08-20 22:12:29.731748+00 2025-08-20 22:12:29.73176+00 f t 6990 \N \N f f +5947 2025-08-20 22:13:17.227843+00 2025-08-20 22:13:17.227851+00 f t 6991 \N \N f f +5948 2025-08-20 22:24:03.317206+00 2025-08-20 22:24:03.317219+00 f t 6992 \N \N f f +5949 2025-08-20 22:35:39.800453+00 2025-08-20 22:35:39.800461+00 f t 6993 \N \N f f +5950 2025-08-20 22:44:38.776151+00 2025-08-20 22:44:38.776159+00 f t 6994 \N \N f f +5951 2025-08-21 00:19:59.86805+00 2025-08-21 00:19:59.868058+00 f t 6996 \N \N f f +5952 2025-08-21 00:26:02.132108+00 2025-08-21 00:26:02.132123+00 f t 6997 \N \N f f +5953 2025-08-21 00:32:23.489+00 2025-08-21 00:32:23.489009+00 f t 6998 \N \N f f +5954 2025-08-21 00:58:16.687747+00 2025-08-21 00:58:16.68776+00 f t 6999 \N \N f f +5955 2025-08-21 01:22:34.976425+00 2025-08-21 01:22:34.976436+00 f t 7000 \N \N f f +5956 2025-08-21 01:26:56.100259+00 2025-08-21 01:26:56.100269+00 f t 4721 \N \N f f +5957 2025-08-21 01:27:55.454708+00 2025-08-21 01:27:55.454719+00 f t 7001 \N \N f f +5958 2025-08-21 01:32:45.404965+00 2025-08-21 01:32:45.404974+00 f t 7002 \N \N f f +5959 2025-08-21 01:42:34.216315+00 2025-08-21 01:42:34.216327+00 f t 7003 \N \N f f +5960 2025-08-21 01:56:00.888849+00 2025-08-21 01:56:00.888864+00 f t 7004 \N \N f f +5961 2025-08-21 02:08:47.33977+00 2025-08-21 02:08:47.339778+00 f t 7005 \N \N f f +5962 2025-08-21 02:11:14.635607+00 2025-08-21 02:11:14.635615+00 f t 7006 \N \N f f +5963 2025-08-21 03:09:37.265446+00 2025-08-21 03:09:37.265457+00 f t 7007 \N \N f f +5964 2025-08-21 03:09:53.012331+00 2025-08-21 03:09:53.012343+00 f t 7008 \N \N f f +5965 2025-08-21 04:20:13.762238+00 2025-08-21 04:20:13.762247+00 f t 7009 \N \N f f +5966 2025-08-21 04:55:46.359127+00 2025-08-21 04:55:46.359163+00 f t 7010 \N \N f f +5967 2025-08-21 05:36:56.977438+00 2025-08-21 05:36:56.977448+00 f t 7011 \N \N f f +5968 2025-08-21 09:49:07.486898+00 2025-08-21 09:49:07.486912+00 f t 7012 \N \N f f +5969 2025-08-21 10:13:38.181403+00 2025-08-21 10:13:38.18141+00 f t 7013 \N \N f f +5970 2025-08-21 12:21:11.761599+00 2025-08-21 12:21:11.761608+00 f t 7014 \N \N f f +5971 2025-08-21 12:44:50.441673+00 2025-08-21 12:44:50.441685+00 f t 7015 \N \N f f +5972 2025-08-21 13:13:54.420959+00 2025-08-21 13:13:54.420971+00 f t 7016 \N \N f f +5973 2025-08-21 13:21:25.997568+00 2025-08-21 13:21:25.997576+00 f t 7017 \N \N f f +5974 2025-08-21 13:41:33.704712+00 2025-08-21 13:41:33.704724+00 f t 7018 \N \N f f +5975 2025-08-21 13:54:48.239526+00 2025-08-21 13:54:48.239534+00 f t 7019 \N \N f f +5976 2025-08-21 14:36:11.137148+00 2025-08-21 14:36:11.137162+00 f t 7020 \N \N f f +5977 2025-08-21 15:48:08.801837+00 2025-08-21 15:48:08.80185+00 f t 7023 \N \N f f +5978 2025-08-21 15:48:53.944848+00 2025-08-21 15:48:53.944895+00 f t 7024 \N \N f f +5979 2025-08-21 15:58:29.746265+00 2025-08-21 15:58:29.746276+00 f t 7025 \N \N f f +5980 2025-08-21 16:14:49.574822+00 2025-08-21 16:14:49.574831+00 f t 7027 \N \N f f +5981 2025-08-21 16:17:02.21887+00 2025-08-21 16:17:02.218884+00 f t 7028 \N \N f f +5982 2025-08-21 16:18:22.994336+00 2025-08-21 16:18:22.994343+00 f t 7029 \N \N f f +5983 2025-08-21 16:19:38.708323+00 2025-08-21 16:19:38.708334+00 f t 7030 \N \N f f +5984 2025-08-21 17:07:58.911209+00 2025-08-21 17:07:58.911218+00 f t 7032 \N \N f f +5985 2025-08-21 17:19:10.269286+00 2025-08-21 17:19:10.269295+00 f t 7033 \N \N f f +5986 2025-08-21 17:29:10.068505+00 2025-08-21 17:29:10.068516+00 f t 7034 \N \N f f +5987 2025-08-21 17:29:43.017204+00 2025-08-21 17:29:43.017213+00 f t 7035 \N \N f f +5988 2025-08-21 17:33:37.039918+00 2025-08-21 17:33:37.039926+00 f t 7036 \N \N f f +5989 2025-08-21 17:39:34.100726+00 2025-08-21 17:39:34.100734+00 f t 7037 \N \N f f +5990 2025-08-21 17:57:10.103185+00 2025-08-21 17:57:10.103199+00 f t 7039 \N \N f f +5991 2025-08-21 18:51:14.274438+00 2025-08-21 18:51:14.274453+00 f t 7040 \N \N f f +5992 2025-08-21 19:01:05.780995+00 2025-08-21 19:01:05.781008+00 f t 7041 \N \N f f +5993 2025-08-21 19:10:22.700323+00 2025-08-21 19:10:22.700332+00 f t 7042 \N \N f f +5994 2025-08-21 19:26:09.085471+00 2025-08-21 19:26:09.085486+00 f t 7043 \N \N f f +5995 2025-08-21 19:38:20.918544+00 2025-08-21 19:38:20.918557+00 f t 7044 \N \N f f +5996 2025-08-21 20:31:57.436067+00 2025-08-21 20:29:54.113959+00 f t 7045 \N \N f f +5997 2025-08-21 20:40:44.675645+00 2025-08-21 20:40:44.675656+00 f t 7046 \N \N f f +5998 2025-08-21 21:05:01.011219+00 2025-08-21 21:05:01.011231+00 f t 7047 \N \N f f +5999 2025-08-21 21:19:46.718144+00 2025-08-21 21:19:46.718153+00 f t 7048 \N \N f f +6000 2025-08-21 21:22:59.446033+00 2025-08-21 21:22:59.446042+00 f t 7049 \N \N f f +6001 2025-08-21 21:29:25.647503+00 2025-08-21 21:29:25.647511+00 f t 7050 \N \N f f +6002 2025-08-21 21:38:13.730049+00 2025-08-21 21:38:13.730059+00 f t 7051 \N \N f f +6003 2025-08-21 21:50:55.806245+00 2025-08-21 21:50:55.806253+00 f t 7052 \N \N f f +6004 2025-08-21 22:58:18.602775+00 2025-08-21 22:58:18.602782+00 f t 7054 \N \N f f +6005 2025-08-21 23:31:38.472486+00 2025-08-21 23:31:38.472499+00 f t 7057 \N \N f f +6006 2025-08-22 00:16:54.314397+00 2025-08-22 00:16:54.314406+00 f t 7060 \N \N f f +6007 2025-08-22 00:37:08.351675+00 2025-08-22 00:37:08.351686+00 f t 7061 \N \N f f +6008 2025-08-22 00:58:43.144615+00 2025-08-22 00:58:43.144626+00 f t 7062 \N \N f f +6009 2025-08-22 02:20:15.792815+00 2025-08-22 02:20:15.792825+00 f t 7063 \N \N f f +6010 2025-08-22 03:00:42.968319+00 2025-08-22 03:00:42.968327+00 f t 7064 \N \N f f +6011 2025-08-22 03:15:17.105069+00 2025-08-22 03:15:17.105079+00 f t 7065 \N \N f f +6012 2025-08-22 03:23:13.01288+00 2025-08-22 03:23:13.01289+00 f t 7066 \N \N f f +6013 2025-08-22 04:10:29.755276+00 2025-08-22 04:10:29.755289+00 f t 7067 \N \N f f +6014 2025-08-22 04:13:32.678368+00 2025-08-22 04:13:32.678379+00 f t 7068 \N \N f f +6015 2025-08-22 04:52:07.334029+00 2025-08-22 04:52:07.334042+00 f t 7069 \N \N f f +6016 2025-08-22 04:54:24.155963+00 2025-08-22 04:54:24.155975+00 f t 7070 \N \N f f +6017 2025-08-22 08:05:22.873191+00 2025-08-22 08:05:22.873199+00 f t 7071 \N \N f f +6018 2025-08-22 08:14:05.564557+00 2025-08-22 08:14:05.564571+00 f t 7072 \N \N f f +6019 2025-08-22 11:28:15.646349+00 2025-08-22 11:28:15.646358+00 f t 7073 \N \N f f +6020 2025-08-22 11:34:12.242057+00 2025-08-22 11:34:12.24207+00 f t 7074 \N \N f f +6021 2025-08-22 11:51:47.511541+00 2025-08-22 11:51:47.51155+00 f t 7075 \N \N f f +6022 2025-08-22 12:35:12.049934+00 2025-08-22 12:35:12.049943+00 f t 7076 \N \N f f +6023 2025-08-22 12:58:44.475114+00 2025-08-22 12:58:44.475122+00 f t 7077 \N \N f f +6024 2025-08-22 13:38:53.821661+00 2025-08-22 13:38:53.821673+00 f t 7078 \N \N f f +6025 2025-08-22 13:56:45.586976+00 2025-08-22 13:56:45.586984+00 f t 7079 \N \N f f +6026 2025-08-22 13:59:37.923731+00 2025-08-22 13:59:37.923745+00 f t 7080 \N \N f f +6027 2025-08-22 14:07:50.984181+00 2025-08-22 14:07:50.984192+00 f t 7081 \N \N f f +6028 2025-08-22 15:08:59.809747+00 2025-08-22 15:08:59.809754+00 f t 7083 \N \N f f +6029 2025-08-22 15:49:33.333536+00 2025-08-22 15:49:33.333547+00 f t 7084 \N \N f f +6030 2025-08-22 16:05:36.388805+00 2025-08-22 16:05:36.388816+00 f t 7085 \N \N f f +6031 2025-08-22 16:14:54.426157+00 2025-08-22 16:14:54.426167+00 f t 7086 \N \N f f +6032 2025-08-22 16:14:55.837009+00 2025-08-22 16:14:55.837018+00 f t 7087 \N \N f f +6033 2025-08-22 16:22:29.303618+00 2025-08-22 16:22:29.303627+00 f t 7088 \N \N f f +6034 2025-08-22 16:28:12.176731+00 2025-08-22 16:28:12.176746+00 f t 7089 \N \N f f +6035 2025-08-22 16:50:40.049157+00 2025-08-22 16:50:40.049168+00 f t 7090 \N \N f f +6036 2025-08-22 17:10:20.60796+00 2025-08-22 17:10:20.607971+00 f t 7091 \N \N f f +6037 2025-08-22 17:20:44.868276+00 2025-08-22 17:20:44.868285+00 f t 7093 \N \N f f +6038 2025-08-22 17:28:19.871745+00 2025-08-22 17:28:19.871763+00 f t 7094 \N \N f f +6039 2025-08-22 17:50:41.077824+00 2025-08-22 17:50:41.077837+00 f t 7095 \N \N f f +6040 2025-08-22 18:42:57.544799+00 2025-08-22 18:42:57.544808+00 f t 7096 \N \N f f +6041 2025-08-22 18:45:57.937193+00 2025-08-22 18:45:57.937201+00 f t 7097 \N \N f f +6042 2025-08-22 19:26:13.193856+00 2025-08-22 19:26:13.193867+00 f t 7099 \N \N f f +6043 2025-08-22 19:31:30.630644+00 2025-08-22 19:31:30.630653+00 f t 7100 \N \N f f +6044 2025-08-22 19:36:37.309416+00 2025-08-22 19:36:37.309424+00 f t 7101 \N \N f f +6045 2025-08-22 19:44:03.484155+00 2025-08-22 19:44:03.484165+00 f t 7102 \N \N f f +6046 2025-08-22 19:45:48.619551+00 2025-08-22 19:45:48.619558+00 f t 7103 \N \N f f +6047 2025-08-22 19:52:21.575601+00 2025-08-22 19:52:21.575609+00 f t 7104 \N \N f f +6048 2025-08-22 20:02:42.429535+00 2025-08-22 20:02:42.429547+00 f t 7107 \N \N f f +6049 2025-08-22 20:13:45.147236+00 2025-08-22 20:13:45.147244+00 f t 7109 \N \N f f +6050 2025-08-22 20:43:08.732618+00 2025-08-22 20:43:08.732626+00 f t 7110 \N \N f f +6051 2025-08-22 21:15:03.074308+00 2025-08-22 21:15:03.07432+00 f t 7112 \N \N f f +6052 2025-08-22 21:17:27.070911+00 2025-08-22 21:17:27.070919+00 f t 7113 \N \N f f +6053 2025-08-22 21:30:56.98686+00 2025-08-22 21:30:56.986869+00 f t 7114 \N \N f f +6054 2025-08-22 21:34:24.419834+00 2025-08-22 21:34:24.419841+00 f t 7115 \N \N f f +6055 2025-08-22 21:40:54.286844+00 2025-08-22 21:40:54.286853+00 f t 7116 \N \N f f +6056 2025-08-22 21:54:23.200561+00 2025-08-22 21:54:23.200571+00 f t 7117 \N \N f f +6057 2025-08-22 22:03:33.59648+00 2025-08-22 22:03:33.596491+00 f t 7118 \N \N f f +6058 2025-08-22 22:23:31.29682+00 2025-08-22 22:23:31.296829+00 f t 7119 \N \N f f +6059 2025-08-22 22:29:21.385388+00 2025-08-22 22:29:21.3854+00 f t 7120 \N \N f f +6060 2025-08-22 22:31:30.235961+00 2025-08-22 22:31:30.235968+00 f t 7121 \N \N f f +6061 2025-08-22 23:20:45.844997+00 2025-08-22 23:20:45.845004+00 f t 7122 \N \N f f +6062 2025-08-22 23:25:07.608157+00 2025-08-22 23:25:07.608169+00 f t 7123 \N \N f f +6063 2025-08-22 23:57:51.596629+00 2025-08-22 23:57:51.59664+00 f t 7124 \N \N f f +6064 2025-08-23 00:15:50.796531+00 2025-08-23 00:15:50.796545+00 f t 7125 \N \N f f +6065 2025-08-23 00:24:00.25739+00 2025-08-23 00:24:00.257404+00 f t 7126 \N \N f f +6066 2025-08-23 01:30:37.815974+00 2025-08-23 01:30:37.815987+00 f t 7127 \N \N f f +6067 2025-08-23 01:32:05.272393+00 2025-08-23 01:32:05.272405+00 f t 7128 \N \N f f +6068 2025-08-23 02:15:57.095966+00 2025-08-23 02:15:57.095973+00 f t 7129 \N \N f f +6069 2025-08-23 02:21:12.786144+00 2025-08-23 02:21:12.786153+00 f t 7130 \N \N f f +6070 2025-08-23 02:47:37.828563+00 2025-08-23 02:47:37.828572+00 f t 7131 \N \N f f +6071 2025-08-23 02:53:02.254197+00 2025-08-23 02:53:02.254208+00 f t 7132 \N \N f f +6072 2025-08-23 02:59:28.233304+00 2025-08-23 02:59:28.233311+00 f t 7133 \N \N f f +6073 2025-08-23 04:46:07.364961+00 2025-08-23 04:46:07.364974+00 f t 7134 \N \N f f +6074 2025-08-23 06:38:10.082085+00 2025-08-23 06:38:10.082098+00 f t 7135 \N \N f f +6075 2025-08-23 11:33:33.869299+00 2025-08-23 11:33:33.869312+00 f t 7136 \N \N f f +6076 2025-08-23 11:53:00.262546+00 2025-08-23 11:53:00.262553+00 f t 7137 \N \N f f +6077 2025-08-23 12:42:43.550075+00 2025-08-23 12:42:43.550084+00 f t 7138 \N \N f f +6078 2025-08-23 13:12:41.386178+00 2025-08-23 13:12:41.38619+00 f t 7139 \N \N f f +6079 2025-08-23 13:32:36.317513+00 2025-08-23 13:32:36.317522+00 f t 7140 \N \N f f +6080 2025-08-23 13:46:33.764381+00 2025-08-23 13:46:33.764394+00 f t 7141 \N \N f f +6081 2025-08-23 14:01:04.946054+00 2025-08-23 14:01:04.946067+00 f t 7142 \N \N f f +6082 2025-08-23 14:06:53.237455+00 2025-08-23 14:06:53.237464+00 f t 7143 \N \N f f +6083 2025-08-23 14:11:52.513828+00 2025-08-23 14:11:52.513836+00 f t 7144 \N \N f f +6084 2025-08-23 14:22:27.172928+00 2025-08-23 14:22:27.17294+00 f t 7145 \N \N f f +6085 2025-08-23 14:36:43.454932+00 2025-08-23 14:36:43.454945+00 f t 7146 \N \N f f +6086 2025-08-23 14:42:12.707787+00 2025-08-23 14:42:12.707799+00 f t 7147 \N \N f f +6087 2025-08-23 16:07:24.319439+00 2025-08-23 16:07:24.319451+00 f t 7148 \N \N f f +6088 2025-08-23 16:23:23.481011+00 2025-08-23 16:23:23.481025+00 f t 7149 \N \N f f +6089 2025-08-23 16:24:58.074483+00 2025-08-23 16:24:58.074497+00 f t 7150 \N \N f f +6090 2025-08-23 16:32:41.082259+00 2025-08-23 16:32:41.082282+00 f t 7151 \N \N f f +6091 2025-08-23 18:08:40.33248+00 2025-08-23 18:08:40.332489+00 f t 7153 \N \N f f +6092 2025-08-23 18:54:53.641491+00 2025-08-23 18:54:53.641505+00 f t 7155 \N \N f f +6093 2025-08-23 19:16:19.554372+00 2025-08-23 19:16:19.554379+00 f t 7156 \N \N f f +6094 2025-08-23 19:31:30.528831+00 2025-08-23 19:31:30.52884+00 f t 7157 \N \N f f +6095 2025-08-23 19:55:50.462097+00 2025-08-23 19:55:50.46211+00 f t 7158 \N \N f f +6096 2025-08-23 20:04:30.842086+00 2025-08-23 20:04:30.8421+00 f t 7159 \N \N f f +6097 2025-08-23 20:26:15.020408+00 2025-08-23 20:26:15.02042+00 f t 7160 \N \N f f +6098 2025-08-23 20:37:47.374508+00 2025-08-23 20:37:47.374515+00 f t 7161 \N \N f f +6099 2025-08-23 21:28:38.643914+00 2025-08-23 21:28:38.643922+00 f t 7162 \N \N f f +6100 2025-08-23 21:40:46.527003+00 2025-08-23 21:40:46.52701+00 f t 7163 \N \N f f +6101 2025-08-23 21:46:29.638728+00 2025-08-23 21:46:29.638741+00 f t 7164 \N \N f f +6102 2025-08-23 21:49:22.999649+00 2025-08-23 21:49:22.999658+00 f t 7165 \N \N f f +6103 2025-08-23 22:48:42.233433+00 2025-08-23 22:48:42.233452+00 f t 7166 \N \N f f +6104 2025-08-23 23:12:39.423411+00 2025-08-23 23:12:39.42342+00 f t 7167 \N \N f f +6105 2025-08-23 23:18:02.84969+00 2025-08-23 23:18:02.849703+00 f t 7168 \N \N f f +6106 2025-08-23 23:47:33.819559+00 2025-08-23 23:47:33.819573+00 f t 7169 \N \N f f +6107 2025-08-23 23:49:03.637126+00 2025-08-23 23:49:03.63714+00 f t 7170 \N \N f f +6108 2025-08-23 23:50:11.97498+00 2025-08-23 23:50:11.974993+00 f t 7171 \N \N f f +6109 2025-08-24 00:45:43.446043+00 2025-08-24 00:45:43.446055+00 f t 7172 \N \N f f +6110 2025-08-24 00:56:26.626553+00 2025-08-24 00:56:26.626561+00 f t 7173 \N \N f f +6111 2025-08-24 01:04:56.087055+00 2025-08-24 01:02:41.463294+00 f t 7174 \N \N f f +6112 2025-08-24 01:06:19.917813+00 2025-08-24 01:06:19.917825+00 f t 7175 \N \N f f +6113 2025-08-24 02:27:26.082807+00 2025-08-24 02:27:26.082815+00 f t 7176 \N \N f f +6114 2025-08-24 04:03:32.337217+00 2025-08-24 04:03:32.337229+00 f t 7177 \N \N f f +6115 2025-08-24 04:05:16.60671+00 2025-08-24 04:05:16.606722+00 f t 7178 \N \N f f +6116 2025-08-24 04:26:05.008929+00 2025-08-24 04:26:05.008939+00 f t 7179 \N \N f f +6117 2025-08-24 05:07:58.846202+00 2025-08-24 05:07:58.846214+00 f t 7180 \N \N f f +6118 2025-08-24 08:13:22.732749+00 2025-08-24 08:13:22.732757+00 f t 7181 \N \N f f +6119 2025-08-24 10:04:26.625819+00 2025-08-24 10:04:26.625828+00 f t 7182 \N \N f f +6120 2025-08-24 11:23:37.925388+00 2025-08-24 11:23:37.925399+00 f t 7183 \N \N f f +6121 2025-08-24 11:52:37.231032+00 2025-08-24 11:52:37.231041+00 f t 7184 \N \N f f +6122 2025-08-24 12:02:04.97438+00 2025-08-24 12:02:04.97439+00 f t 7185 \N \N f f +6123 2025-08-24 12:26:51.80114+00 2025-08-24 12:26:51.801152+00 f t 7186 \N \N f f +6124 2025-08-24 12:36:17.76428+00 2025-08-24 12:36:17.764292+00 f t 7187 \N \N f f +6125 2025-08-24 12:45:02.022445+00 2025-08-24 12:45:02.022459+00 f t 7188 \N \N f f +6126 2025-08-24 13:52:59.92895+00 2025-08-24 13:52:59.928958+00 f t 7189 \N \N f f +6127 2025-08-24 13:58:04.758161+00 2025-08-24 13:58:04.758174+00 f t 7190 \N \N f f +6128 2025-08-24 14:03:35.061207+00 2025-08-24 14:03:35.061215+00 f t 7191 \N \N f f +6129 2025-08-24 14:31:15.190873+00 2025-08-24 14:31:15.19088+00 f t 7192 \N \N f f +6130 2025-08-24 15:42:36.577179+00 2025-08-24 15:42:36.577186+00 f t 7193 \N \N f f +6131 2025-08-24 16:23:36.230097+00 2025-08-24 16:23:36.230104+00 f t 7194 \N \N f f +6132 2025-08-24 17:03:52.273268+00 2025-08-24 17:03:52.273277+00 f t 7195 \N \N f f +6133 2025-08-24 17:35:43.396564+00 2025-08-24 17:35:43.396572+00 f t 7196 \N \N f f +6134 2025-08-24 18:33:21.026374+00 2025-08-24 18:33:21.026384+00 f t 7197 \N \N f f +6135 2025-08-24 18:52:38.227029+00 2025-08-24 18:52:38.227038+00 f t 7199 \N \N f f +6136 2025-08-24 19:22:18.03815+00 2025-08-24 19:22:18.038158+00 f t 7200 \N \N f f +6137 2025-08-24 19:25:22.05387+00 2025-08-24 19:25:22.053879+00 f t 7202 \N \N f f +6138 2025-08-24 19:38:16.198869+00 2025-08-24 19:38:16.198878+00 f t 7203 \N \N f f +6139 2025-08-24 20:14:16.560285+00 2025-08-24 20:14:16.560298+00 f t 7204 \N \N f f +6140 2025-08-24 20:19:43.231558+00 2025-08-24 20:19:43.231566+00 f t 7205 \N \N f f +6795 2025-09-03 12:19:48.972668+00 2025-09-03 12:19:48.972676+00 f t 7880 \N \N f f +6142 2025-08-24 21:07:33.347815+00 2025-08-24 21:07:33.347824+00 f t 7206 \N \N f f +6143 2025-08-24 21:19:36.062556+00 2025-08-24 21:19:36.062564+00 f t 7207 \N \N f f +6144 2025-08-24 21:19:42.155812+00 2025-08-24 21:19:42.155824+00 f t 7208 \N \N f f +6145 2025-08-24 21:20:55.313192+00 2025-08-24 21:20:55.313201+00 f t 7209 \N \N f f +6146 2025-08-24 21:21:55.846316+00 2025-08-24 21:21:55.84633+00 f t 7210 \N \N f f +6147 2025-08-24 21:34:39.412299+00 2025-08-24 21:34:39.412311+00 f t 7211 \N \N f f +6148 2025-08-24 21:43:47.197184+00 2025-08-24 21:43:47.197193+00 f t 7212 \N \N f f +6149 2025-08-24 21:47:03.728278+00 2025-08-24 21:47:03.72829+00 f t 7213 \N \N f f +6150 2025-08-24 21:48:54.128022+00 2025-08-24 21:48:54.128029+00 f t 7214 \N \N f f +6151 2025-08-24 21:56:40.101988+00 2025-08-24 21:56:40.101995+00 f t 7215 \N \N f f +6152 2025-08-24 22:19:19.978532+00 2025-08-24 22:19:19.97854+00 f t 7216 \N \N f f +6153 2025-08-24 22:22:29.914947+00 2025-08-24 22:22:29.914956+00 f t 7217 \N \N f f +6154 2025-08-24 22:39:51.753527+00 2025-08-24 22:39:51.753537+00 f t 7218 \N \N f f +6155 2025-08-24 23:05:49.318901+00 2025-08-24 23:05:49.318913+00 f t 7219 \N \N f f +6156 2025-08-24 23:36:54.366405+00 2025-08-24 23:36:54.366412+00 f t 7220 \N \N f f +6799 2025-09-03 13:17:34.146968+00 2025-09-03 13:17:34.146979+00 f t 7884 \N \N f f +6158 2025-08-24 23:38:30.573704+00 2025-08-24 23:38:30.573717+00 f t 7222 \N \N f f +6157 2025-08-24 23:40:18.328577+00 2025-08-24 23:37:51.801977+00 f t 7221 \N \N f f +6159 2025-08-24 23:46:35.898053+00 2025-08-24 23:46:35.898063+00 f t 7223 \N \N f f +6160 2025-08-24 23:54:04.182968+00 2025-08-24 23:54:04.182976+00 f t 7224 \N \N f f +6161 2025-08-24 23:58:47.689428+00 2025-08-24 23:58:47.689435+00 f t 7225 \N \N f f +6162 2025-08-25 00:18:25.164178+00 2025-08-25 00:18:25.164187+00 f t 7226 \N \N f f +6163 2025-08-25 00:19:23.44079+00 2025-08-25 00:19:23.440802+00 f t 7227 \N \N f f +6164 2025-08-25 00:27:55.284698+00 2025-08-25 00:27:55.284705+00 f t 7228 \N \N f f +6165 2025-08-25 00:32:46.284687+00 2025-08-25 00:32:46.284693+00 f t 7229 \N \N f f +6166 2025-08-25 00:33:00.729849+00 2025-08-25 00:33:00.72986+00 f t 7230 \N \N f f +6167 2025-08-25 00:36:49.937383+00 2025-08-25 00:36:49.937392+00 f t 7231 \N \N f f +6168 2025-08-25 01:13:38.437385+00 2025-08-25 01:13:38.437391+00 f t 7232 \N \N f f +6169 2025-08-25 01:17:39.859613+00 2025-08-25 01:17:39.859624+00 f t 7233 \N \N f f +6170 2025-08-25 01:29:08.115588+00 2025-08-25 01:29:08.115594+00 f t 7234 \N \N f f +6171 2025-08-25 01:56:56.827607+00 2025-08-25 01:56:56.827616+00 f t 7235 \N \N f f +6172 2025-08-25 02:01:35.350277+00 2025-08-25 02:01:35.350289+00 f t 7236 \N \N f f +6173 2025-08-25 02:20:11.407528+00 2025-08-25 02:20:11.407587+00 f t 7237 \N \N f f +6174 2025-08-25 02:34:25.402148+00 2025-08-25 02:34:25.402157+00 f t 7238 \N \N f f +6175 2025-08-25 02:44:00.041755+00 2025-08-25 02:44:00.041764+00 f t 7239 \N \N f f +6176 2025-08-25 02:47:09.503027+00 2025-08-25 02:47:09.503037+00 f t 7240 \N \N f f +6177 2025-08-25 02:49:13.889516+00 2025-08-25 02:49:13.889524+00 f t 7241 \N \N f f +6178 2025-08-25 02:51:40.637952+00 2025-08-25 02:51:40.637961+00 f t 7242 \N \N f f +6179 2025-08-25 03:10:34.063462+00 2025-08-25 03:10:34.063469+00 f t 7243 \N \N f f +6180 2025-08-25 04:33:05.999864+00 2025-08-25 04:33:05.999873+00 f t 7244 \N \N f f +6181 2025-08-25 04:37:02.38245+00 2025-08-25 04:37:02.382464+00 f t 7245 \N \N f f +6182 2025-08-25 06:59:35.051881+00 2025-08-25 06:59:35.051887+00 f t 7246 \N \N f f +6183 2025-08-25 09:58:00.047201+00 2025-08-25 09:58:00.047214+00 f t 7247 \N \N f f +6184 2025-08-25 10:18:05.834231+00 2025-08-25 10:18:05.834242+00 f t 7248 \N \N f f +6185 2025-08-25 11:13:17.117103+00 2025-08-25 11:13:17.117117+00 f t 7249 \N \N f f +6186 2025-08-25 11:21:40.874529+00 2025-08-25 11:21:40.874542+00 f t 7250 \N \N f f +6187 2025-08-25 11:34:51.389771+00 2025-08-25 11:34:51.38978+00 f t 7251 \N \N f f +6188 2025-08-25 12:11:17.961029+00 2025-08-25 12:11:17.961039+00 f t 7252 \N \N f f +6190 2025-08-25 12:24:15.03341+00 2025-08-25 12:24:15.033422+00 f t 7253 \N \N f f +6191 2025-08-25 12:26:56.764603+00 2025-08-25 12:26:56.764617+00 f t 7254 \N \N f f +6192 2025-08-25 12:27:26.809547+00 2025-08-25 12:27:26.809559+00 f t 7255 \N \N f f +6193 2025-08-25 12:27:27.039303+00 2025-08-25 12:27:27.039315+00 f t 7256 \N \N f f +6194 2025-08-25 12:30:26.200958+00 2025-08-25 12:30:26.200966+00 f t 7257 \N \N f f +6195 2025-08-25 12:33:27.115793+00 2025-08-25 12:33:27.115804+00 f t 7258 \N \N f f +6196 2025-08-25 13:24:05.719493+00 2025-08-25 13:24:05.719504+00 f t 7259 \N \N f f +6197 2025-08-25 13:43:18.405692+00 2025-08-25 13:43:18.405704+00 f t 7260 \N \N f f +6198 2025-08-25 13:44:35.747499+00 2025-08-25 13:44:35.747507+00 f t 7261 \N \N f f +6199 2025-08-25 14:03:41.994142+00 2025-08-25 14:03:41.994151+00 f t 7262 \N \N f f +6200 2025-08-25 14:34:59.258556+00 2025-08-25 14:34:59.258564+00 f t 7263 \N \N f f +6201 2025-08-25 14:42:59.96398+00 2025-08-25 14:42:59.963988+00 f t 7264 \N \N f f +6202 2025-08-25 14:43:25.092184+00 2025-08-25 14:43:25.092195+00 f t 7265 \N \N f f +6203 2025-08-25 15:00:39.083584+00 2025-08-25 15:00:39.083594+00 f t 7266 \N \N f f +6204 2025-08-25 15:17:09.015046+00 2025-08-25 15:17:09.015058+00 f t 7267 \N \N f f +6205 2025-08-25 15:20:28.600392+00 2025-08-25 15:20:28.600404+00 f t 7268 \N \N f f +6206 2025-08-25 15:21:13.082384+00 2025-08-25 15:21:13.082393+00 f t 7269 \N \N f f +6207 2025-08-25 15:24:19.528418+00 2025-08-25 15:24:19.528427+00 f t 5706 \N \N f f +6208 2025-08-25 15:50:29.57065+00 2025-08-25 15:50:29.570658+00 f t 7270 \N \N f f +6209 2025-08-25 15:54:04.619983+00 2025-08-25 15:54:04.619995+00 f t 7271 \N \N f f +6210 2025-08-25 16:15:22.559961+00 2025-08-25 16:15:22.559969+00 f t 7272 \N \N f f +6211 2025-08-25 16:32:05.256333+00 2025-08-25 16:32:05.256347+00 f t 7274 \N \N f f +6212 2025-08-25 16:37:04.085131+00 2025-08-25 16:37:04.085147+00 f t 7275 \N \N f f +6213 2025-08-25 17:06:25.246664+00 2025-08-25 17:06:25.246676+00 f t 7276 \N \N f f +6214 2025-08-25 17:56:27.218931+00 2025-08-25 17:56:27.218942+00 f t 7279 \N \N f f +6215 2025-08-25 18:00:21.559474+00 2025-08-25 18:00:21.559489+00 f t 7280 \N \N f f +6216 2025-08-25 18:19:38.07998+00 2025-08-25 18:19:38.079991+00 f t 7281 \N \N f f +6217 2025-08-25 18:40:17.393326+00 2025-08-25 18:40:17.393336+00 f t 7282 \N \N f f +6218 2025-08-25 18:57:20.764245+00 2025-08-25 18:57:20.764255+00 f t 7283 \N \N f f +6141 2025-08-25 20:07:23.30338+00 2025-08-24 20:32:07.773595+00 f t 7131 \N \N f f +6219 2025-08-25 20:21:29.035563+00 2025-08-25 20:21:29.035575+00 f t 7285 \N \N f f +6220 2025-08-25 20:54:23.484912+00 2025-08-25 20:54:23.48492+00 f t 7286 \N \N f f +6221 2025-08-25 20:56:29.868395+00 2025-08-25 20:56:29.868404+00 f t 7287 \N \N f f +6222 2025-08-25 21:57:32.385598+00 2025-08-25 21:57:32.385606+00 f t 7289 \N \N f f +6223 2025-08-25 22:05:43.172649+00 2025-08-25 22:05:43.17266+00 f t 7290 \N \N f f +6224 2025-08-25 22:08:02.094065+00 2025-08-25 22:08:02.094079+00 f t 7291 \N \N f f +6225 2025-08-25 23:54:59.665017+00 2025-08-25 23:54:59.66503+00 f t 7292 \N \N f f +6226 2025-08-25 23:56:17.695947+00 2025-08-25 23:56:17.695959+00 f t 7293 \N \N f f +6227 2025-08-26 00:10:18.997224+00 2025-08-26 00:10:18.997234+00 f t 7294 \N \N f f +6228 2025-08-26 00:26:02.504038+00 2025-08-26 00:26:02.504047+00 f t 7295 \N \N f f +6229 2025-08-26 00:39:18.533237+00 2025-08-26 00:39:18.533245+00 f t 7296 \N \N f f +6230 2025-08-26 00:41:05.340452+00 2025-08-26 00:41:05.340463+00 f t 7297 \N \N f f +6231 2025-08-26 01:02:51.013702+00 2025-08-26 01:02:51.01371+00 f t 7298 \N \N f f +6189 2025-08-26 01:31:05.471994+00 2025-08-25 12:14:49.065337+00 f t 6987 \N \N f f +6232 2025-08-26 02:09:15.039844+00 2025-08-26 02:09:15.039862+00 f t 7299 \N \N f f +6233 2025-08-26 02:13:09.768945+00 2025-08-26 02:13:09.768955+00 f t 7300 \N \N f f +6234 2025-08-26 02:15:19.553852+00 2025-08-26 02:15:19.55386+00 f t 7301 \N \N f f +6235 2025-08-26 02:16:03.466248+00 2025-08-26 02:16:03.466259+00 f t 7302 \N \N f f +6236 2025-08-26 02:32:20.512607+00 2025-08-26 02:32:20.512617+00 f t 7303 \N \N f f +6237 2025-08-26 02:54:18.693819+00 2025-08-26 02:54:18.693828+00 f t 7304 \N \N f f +6238 2025-08-26 03:34:45.24832+00 2025-08-26 03:34:45.248329+00 f t 7305 \N \N f f +6239 2025-08-26 03:58:18.529389+00 2025-08-26 03:58:18.529402+00 f t 7306 \N \N f f +6240 2025-08-26 04:05:11.831437+00 2025-08-26 04:05:11.831449+00 f t 7307 \N \N f f +6241 2025-08-26 07:00:50.058611+00 2025-08-26 07:00:50.058623+00 f t 7308 \N \N f f +6242 2025-08-26 07:01:05.571909+00 2025-08-26 07:01:05.57192+00 f t 7309 \N \N f f +6243 2025-08-26 08:17:56.686702+00 2025-08-26 08:17:56.686712+00 f t 7310 \N \N f f +6244 2025-08-26 08:18:34.199405+00 2025-08-26 08:18:34.199418+00 f t 7311 \N \N f f +6245 2025-08-26 09:54:56.132836+00 2025-08-26 09:54:56.132848+00 f t 7312 \N \N f f +6246 2025-08-26 10:00:07.315852+00 2025-08-26 10:00:07.315868+00 f t 7313 \N \N f f +6247 2025-08-26 11:40:38.114613+00 2025-08-26 11:40:38.114624+00 f t 7314 \N \N f f +6248 2025-08-26 11:43:24.653589+00 2025-08-26 11:43:24.6536+00 f t 7315 \N \N f f +6249 2025-08-26 12:03:13.021218+00 2025-08-26 12:03:13.021231+00 f t 7317 \N \N f f +6250 2025-08-26 12:29:31.708691+00 2025-08-26 12:29:31.708703+00 f t 7318 \N \N f f +6251 2025-08-26 13:02:53.468167+00 2025-08-26 13:02:53.468178+00 f t 7319 \N \N f f +6252 2025-08-26 13:29:06.566104+00 2025-08-26 13:29:06.566119+00 f t 7320 \N \N f f +6253 2025-08-26 14:16:25.050914+00 2025-08-26 14:16:25.050923+00 f t 7321 \N \N f f +6254 2025-08-26 14:25:11.878657+00 2025-08-26 14:25:11.878666+00 f t 7322 \N \N f f +6255 2025-08-26 15:13:35.640754+00 2025-08-26 15:13:35.640766+00 f t 7324 \N \N f f +6256 2025-08-26 15:43:42.26973+00 2025-08-26 15:43:42.269738+00 f t 7325 \N \N f f +6257 2025-08-26 16:54:51.809267+00 2025-08-26 16:54:51.809278+00 f t 7326 \N \N f f +6258 2025-08-26 16:59:10.651601+00 2025-08-26 16:59:10.651614+00 f t 7327 \N \N f f +6259 2025-08-26 17:31:05.551903+00 2025-08-26 17:31:05.551915+00 f t 7328 \N \N f f +6260 2025-08-26 17:57:58.692044+00 2025-08-26 17:57:58.692056+00 f t 7329 \N \N f f +6796 2025-09-03 12:24:11.868317+00 2025-09-03 12:24:11.868327+00 f t 7881 \N \N f f +6262 2025-08-26 19:18:31.920059+00 2025-08-26 19:18:31.920067+00 f t 7331 \N \N f f +6263 2025-08-26 20:50:28.106363+00 2025-08-26 20:50:28.106378+00 f t 7332 \N \N f f +6264 2025-08-26 21:39:23.498269+00 2025-08-26 21:39:23.49828+00 f t 7333 \N \N f f +6265 2025-08-26 21:49:05.63033+00 2025-08-26 21:49:05.630339+00 f t 7334 \N \N f f +6266 2025-08-26 21:58:25.92837+00 2025-08-26 21:58:25.928383+00 f t 7335 \N \N f f +6267 2025-08-26 22:46:48.153532+00 2025-08-26 22:46:48.153541+00 f t 7336 \N \N f f +6268 2025-08-26 22:55:15.756647+00 2025-08-26 22:55:15.756656+00 f t 7337 \N \N f f +6269 2025-08-26 23:03:06.32557+00 2025-08-26 23:03:06.325582+00 f t 7338 \N \N f f +6270 2025-08-26 23:42:47.401963+00 2025-08-26 23:42:47.401971+00 f t 7339 \N \N f f +6271 2025-08-26 23:57:59.482527+00 2025-08-26 23:57:59.482536+00 f t 7340 \N \N f f +6272 2025-08-27 00:33:03.612374+00 2025-08-27 00:33:03.612385+00 f t 7342 \N \N f f +6273 2025-08-27 00:38:27.916228+00 2025-08-27 00:38:27.916241+00 f t 7343 \N \N f f +6274 2025-08-27 01:01:30.668109+00 2025-08-27 01:01:30.668121+00 f t 7344 \N \N f f +6275 2025-08-27 01:04:40.16918+00 2025-08-27 01:04:40.169188+00 f t 7345 \N \N f f +6276 2025-08-27 01:37:38.974724+00 2025-08-27 01:37:38.974734+00 f t 7346 \N \N f f +6277 2025-08-27 02:14:26.164958+00 2025-08-27 02:14:26.164971+00 f t 7347 \N \N f f +6278 2025-08-27 02:23:05.805722+00 2025-08-27 02:23:05.805735+00 f t 7348 \N \N f f +6279 2025-08-27 02:33:45.110994+00 2025-08-27 02:33:45.111007+00 f t 7349 \N \N f f +6280 2025-08-27 02:38:27.438705+00 2025-08-27 02:38:27.43872+00 f t 7350 \N \N f f +6281 2025-08-27 02:48:22.977539+00 2025-08-27 02:48:22.977549+00 f t 7351 \N \N f f +6282 2025-08-27 02:49:27.700309+00 2025-08-27 02:49:27.70032+00 f t 7352 \N \N f f +6283 2025-08-27 03:00:18.641499+00 2025-08-27 03:00:18.641512+00 f t 7353 \N \N f f +6284 2025-08-27 03:24:49.35052+00 2025-08-27 03:24:49.350533+00 f t 7354 \N \N f f +6285 2025-08-27 07:19:59.037404+00 2025-08-27 07:19:59.037414+00 f t 7355 \N \N f f +6286 2025-08-27 10:22:40.007752+00 2025-08-27 10:22:40.007762+00 f t 7356 \N \N f f +6287 2025-08-27 11:49:14.88387+00 2025-08-27 11:49:14.883879+00 f t 7357 \N \N f f +6288 2025-08-27 12:38:07.597633+00 2025-08-27 12:38:07.597642+00 f t 7358 \N \N f f +6289 2025-08-27 13:03:37.501706+00 2025-08-27 13:03:37.501716+00 f t 7359 \N \N f f +6290 2025-08-27 13:18:27.762473+00 2025-08-27 13:18:27.762482+00 f t 7360 \N \N f f +6291 2025-08-27 13:54:55.67809+00 2025-08-27 13:54:55.678103+00 f t 7361 \N \N f f +6292 2025-08-27 14:53:05.152804+00 2025-08-27 14:53:05.152814+00 f t 7362 \N \N f f +6293 2025-08-27 14:54:56.417535+00 2025-08-27 14:54:56.417544+00 f t 7363 \N \N f f +6294 2025-08-27 15:15:08.988577+00 2025-08-27 15:15:08.98859+00 f t 7364 \N \N f f +6295 2025-08-27 15:21:38.686485+00 2025-08-27 15:21:38.686494+00 f t 7365 \N \N f f +6296 2025-08-27 16:08:22.515175+00 2025-08-27 16:08:22.515186+00 f t 7366 \N \N f f +6297 2025-08-27 16:10:01.29567+00 2025-08-27 16:10:01.295686+00 f t 7367 \N \N f f +6298 2025-08-27 16:13:52.871653+00 2025-08-27 16:13:52.871661+00 f t 7368 \N \N f f +6299 2025-08-27 16:22:55.827068+00 2025-08-27 16:22:55.827079+00 f t 7369 \N \N f f +6300 2025-08-27 17:06:54.429293+00 2025-08-27 17:06:54.429305+00 f t 7370 \N \N f f +6301 2025-08-27 17:20:14.681125+00 2025-08-27 17:20:14.681137+00 f t 7371 \N \N f f +6302 2025-08-27 17:27:47.499241+00 2025-08-27 17:27:47.499248+00 f t 7372 \N \N f f +6303 2025-08-27 17:33:34.790108+00 2025-08-27 17:33:34.790142+00 f t 7373 \N \N f f +6304 2025-08-27 17:38:03.943106+00 2025-08-27 17:38:03.943114+00 f t 7374 \N \N f f +6305 2025-08-27 17:45:27.271097+00 2025-08-27 17:45:27.271107+00 f t 7375 \N \N f f +6261 2025-08-27 17:56:04.787624+00 2025-08-26 18:12:02.107256+00 f t 7330 \N \N f f +6306 2025-08-27 18:22:44.514272+00 2025-08-27 18:22:44.51428+00 f t 7376 \N \N f f +6307 2025-08-27 18:30:39.964468+00 2025-08-27 18:30:39.96448+00 f t 7377 \N \N f f +6308 2025-08-27 18:52:06.203246+00 2025-08-27 18:52:06.203257+00 f t 7378 \N \N f f +6309 2025-08-27 18:58:58.270319+00 2025-08-27 18:58:58.270328+00 f t 7379 \N \N f f +6310 2025-08-27 19:02:16.268021+00 2025-08-27 19:02:16.26803+00 f t 7380 \N \N f f +6311 2025-08-27 19:14:57.441226+00 2025-08-27 19:14:57.441236+00 f t 7381 \N \N f f +6312 2025-08-27 19:55:08.445557+00 2025-08-27 19:55:08.445574+00 f t 7382 \N \N f f +6313 2025-08-27 19:59:41.859357+00 2025-08-27 19:59:41.859368+00 f t 7383 \N \N f f +6314 2025-08-27 20:03:31.250008+00 2025-08-27 20:03:31.250016+00 f t 7384 \N \N f f +6315 2025-08-27 20:11:44.457758+00 2025-08-27 20:11:44.45777+00 f t 7385 \N \N f f +6316 2025-08-27 20:49:27.030045+00 2025-08-27 20:49:27.030056+00 f t 7386 \N \N f f +6317 2025-08-27 21:08:33.323277+00 2025-08-27 21:08:33.323284+00 f t 7387 \N \N f f +6318 2025-08-27 22:05:06.752639+00 2025-08-27 22:05:06.752652+00 f t 7388 \N \N f f +6319 2025-08-27 22:11:14.046262+00 2025-08-27 22:11:14.046273+00 f t 7389 \N \N f f +6320 2025-08-27 22:37:04.415511+00 2025-08-27 22:37:04.415525+00 f t 7390 \N \N f f +6321 2025-08-27 22:39:14.986012+00 2025-08-27 22:39:14.986025+00 f t 7391 \N \N f f +6322 2025-08-27 22:45:14.793772+00 2025-08-27 22:45:14.793786+00 f t 7392 \N \N f f +6323 2025-08-27 22:46:04.772109+00 2025-08-27 22:46:04.772118+00 f t 7393 \N \N f f +6324 2025-08-27 23:13:07.910542+00 2025-08-27 23:13:07.910554+00 f t 7394 \N \N f f +6325 2025-08-27 23:22:40.064991+00 2025-08-27 23:22:40.065003+00 f t 7397 \N \N f f +6326 2025-08-27 23:33:24.947016+00 2025-08-27 23:33:24.947024+00 f t 7398 \N \N f f +6327 2025-08-27 23:37:25.31927+00 2025-08-27 23:37:25.319278+00 f t 7399 \N \N f f +6328 2025-08-27 23:57:34.633174+00 2025-08-27 23:57:34.633185+00 f t 7401 \N \N f f +6329 2025-08-27 23:58:11.342169+00 2025-08-27 23:58:11.34218+00 f t 7402 \N \N f f +6330 2025-08-28 00:00:23.058747+00 2025-08-28 00:00:23.058758+00 f t 7403 \N \N f f +6331 2025-08-28 00:01:36.016491+00 2025-08-28 00:01:36.0165+00 f t 7404 \N \N f f +6332 2025-08-28 00:04:51.248532+00 2025-08-28 00:04:51.248542+00 f t 7405 \N \N f f +6333 2025-08-28 00:55:03.010732+00 2025-08-28 00:55:03.010749+00 f t 7406 \N \N f f +6334 2025-08-28 01:01:13.015784+00 2025-08-28 01:01:13.015793+00 f t 7407 \N \N f f +6335 2025-08-28 01:11:24.138736+00 2025-08-28 01:11:24.138745+00 f t 7408 \N \N f f +6336 2025-08-28 01:42:41.297264+00 2025-08-28 01:42:41.297274+00 f t 7409 \N \N f f +6337 2025-08-28 02:01:03.698012+00 2025-08-28 02:01:03.698025+00 f t 7410 \N \N f f +6338 2025-08-28 02:01:36.206506+00 2025-08-28 02:01:36.20652+00 f t 7411 \N \N f f +6339 2025-08-28 02:31:20.49784+00 2025-08-28 02:31:20.497847+00 f t 7412 \N \N f f +6340 2025-08-28 02:32:56.026428+00 2025-08-28 02:32:56.026436+00 f t 7413 \N \N f f +6341 2025-08-28 02:45:56.310621+00 2025-08-28 02:45:56.31063+00 f t 7414 \N \N f f +6343 2025-08-28 03:09:03.664476+00 2025-08-28 03:09:03.664491+00 f t 7415 \N \N f f +6344 2025-08-28 03:27:50.065705+00 2025-08-28 03:27:50.065716+00 f t 7416 \N \N f f +6345 2025-08-28 06:00:58.097785+00 2025-08-28 06:00:58.097798+00 f t 7417 \N \N f f +6346 2025-08-28 08:17:23.985359+00 2025-08-28 08:17:23.985367+00 f t 7418 \N \N f f +6347 2025-08-28 08:24:33.140447+00 2025-08-28 08:24:33.140457+00 f t 7419 \N \N f f +6348 2025-08-28 11:10:48.355831+00 2025-08-28 11:10:48.355842+00 f t 7420 \N \N f f +6349 2025-08-28 11:32:09.056835+00 2025-08-28 11:32:09.056848+00 f t 7421 \N \N f f +6350 2025-08-28 11:33:02.772032+00 2025-08-28 11:33:02.772041+00 f t 7422 \N \N f f +6351 2025-08-28 11:33:57.699221+00 2025-08-28 11:33:57.699229+00 f t 7423 \N \N f f +6352 2025-08-28 11:52:17.592933+00 2025-08-28 11:52:17.592941+00 f t 7424 \N \N f f +6353 2025-08-28 12:00:55.564017+00 2025-08-28 12:00:55.56403+00 f t 7425 \N \N f f +6354 2025-08-28 12:19:27.94682+00 2025-08-28 12:19:27.946828+00 f t 7426 \N \N f f +6355 2025-08-28 12:33:10.106489+00 2025-08-28 12:33:10.106502+00 f t 7427 \N \N f f +6356 2025-08-28 12:54:49.713926+00 2025-08-28 12:54:49.713935+00 f t 7428 \N \N f f +6357 2025-08-28 12:58:31.7881+00 2025-08-28 12:58:31.788108+00 f t 7429 \N \N f f +6358 2025-08-28 13:00:57.00139+00 2025-08-28 13:00:57.001399+00 f t 7430 \N \N f f +6359 2025-08-28 13:01:34.877996+00 2025-08-28 13:01:34.878007+00 f t 7431 \N \N f f +6342 2025-08-28 13:26:04.342802+00 2025-08-28 02:51:42.431889+00 f t 999 \N \N f f +6360 2025-08-28 14:00:52.96773+00 2025-08-28 14:00:52.967743+00 f t 7432 \N \N f f +6361 2025-08-28 14:15:11.839739+00 2025-08-28 14:15:11.839751+00 f t 7433 \N \N f f +6362 2025-08-28 15:12:40.945851+00 2025-08-28 15:12:40.945864+00 f t 7434 \N \N f f +6363 2025-08-28 15:14:13.041847+00 2025-08-28 15:14:13.041856+00 f t 7435 \N \N f f +6364 2025-08-28 15:35:13.742267+00 2025-08-28 15:35:13.742275+00 f t 7437 \N \N f f +6365 2025-08-28 15:43:07.517942+00 2025-08-28 15:43:07.517953+00 f t 7436 \N \N f f +6366 2025-08-28 15:46:45.340116+00 2025-08-28 15:46:45.340127+00 f t 7438 \N \N f f +6367 2025-08-28 16:33:10.77998+00 2025-08-28 16:33:10.779994+00 f t 7439 \N \N f f +6368 2025-08-28 16:46:58.868106+00 2025-08-28 16:46:58.868117+00 f t 7440 \N \N f f +6369 2025-08-28 17:02:03.768551+00 2025-08-28 17:02:03.768566+00 f t 7441 \N \N f f +6370 2025-08-28 17:35:10.665688+00 2025-08-28 17:35:10.6657+00 f t 7442 \N \N f f +6371 2025-08-28 17:42:18.801644+00 2025-08-28 17:42:18.801652+00 f t 7444 \N \N f f +6372 2025-08-28 17:44:02.66953+00 2025-08-28 17:44:02.669542+00 f t 7445 \N \N f f +6373 2025-08-28 17:44:19.453694+00 2025-08-28 17:44:19.453708+00 f t 7446 \N \N f f +6374 2025-08-28 17:46:03.497842+00 2025-08-28 17:46:03.497855+00 f t 7447 \N \N f f +6375 2025-08-28 17:46:39.645531+00 2025-08-28 17:46:39.645541+00 f t 7443 \N \N f f +6376 2025-08-28 18:58:25.460552+00 2025-08-28 18:58:25.460564+00 f t 7448 \N \N f f +6377 2025-08-28 19:06:15.654298+00 2025-08-28 19:06:15.654311+00 f t 7449 \N \N f f +6378 2025-08-28 19:12:20.793377+00 2025-08-28 19:12:20.793387+00 f t 7450 \N \N f f +6379 2025-08-28 19:33:36.749494+00 2025-08-28 19:33:36.749503+00 f t 7451 \N \N f f +6380 2025-08-28 19:40:10.805887+00 2025-08-28 19:40:10.8059+00 f t 7452 \N \N f f +6381 2025-08-28 20:07:28.188302+00 2025-08-28 20:07:28.188312+00 f t 7453 \N \N f f +6382 2025-08-28 20:19:01.541028+00 2025-08-28 20:19:01.541041+00 f t 7454 \N \N f f +6383 2025-08-28 20:21:16.032814+00 2025-08-28 20:21:16.032826+00 f t 7455 \N \N f f +6384 2025-08-28 20:27:21.759221+00 2025-08-28 20:27:21.75923+00 f t 7456 \N \N f f +6385 2025-08-28 21:15:16.036268+00 2025-08-28 21:15:16.036276+00 f t 7457 \N \N f f +6386 2025-08-28 21:31:10.538624+00 2025-08-28 21:31:10.538635+00 f t 7458 \N \N f f +6387 2025-08-28 21:37:19.703865+00 2025-08-28 21:37:19.703879+00 f t 7459 \N \N f f +6388 2025-08-28 21:39:05.132894+00 2025-08-28 21:39:05.132909+00 f t 7460 \N \N f f +6389 2025-08-28 21:39:31.078412+00 2025-08-28 21:39:31.078424+00 f t 5342 \N \N f f +6390 2025-08-28 22:01:22.744574+00 2025-08-28 22:01:22.744588+00 f t 7461 \N \N f f +6391 2025-08-28 22:22:24.037184+00 2025-08-28 22:22:24.037196+00 f t 7462 \N \N f f +6392 2025-08-28 22:47:26.880676+00 2025-08-28 22:47:26.880688+00 f t 7463 \N \N f f +6393 2025-08-28 23:57:20.532647+00 2025-08-28 23:57:20.532657+00 f t 7464 \N \N f f +6394 2025-08-29 00:01:38.76481+00 2025-08-29 00:01:38.76482+00 f t 7465 \N \N f f +6395 2025-08-29 00:12:56.989218+00 2025-08-29 00:12:56.989227+00 f t 7466 \N \N f f +6396 2025-08-29 00:24:25.046527+00 2025-08-29 00:24:25.04654+00 f t 7467 \N \N f f +6397 2025-08-29 01:23:44.298435+00 2025-08-29 01:23:44.298446+00 f t 7468 \N \N f f +6398 2025-08-29 01:27:14.657165+00 2025-08-29 01:27:14.657178+00 f t 7469 \N \N f f +6399 2025-08-29 01:37:12.132787+00 2025-08-29 01:37:12.132798+00 f t 7470 \N \N f f +6400 2025-08-29 01:53:34.707554+00 2025-08-29 01:53:34.707562+00 f t 7471 \N \N f f +6401 2025-08-29 02:16:48.699553+00 2025-08-29 02:16:48.699562+00 f t 7472 \N \N f f +6402 2025-08-29 02:35:58.600782+00 2025-08-29 02:35:58.600795+00 f t 7473 \N \N f f +6403 2025-08-29 02:37:47.933521+00 2025-08-29 02:37:47.933528+00 f t 7474 \N \N f f +6404 2025-08-29 02:40:40.530652+00 2025-08-29 02:40:40.530663+00 f t 7475 \N \N f f +6405 2025-08-29 03:09:51.718803+00 2025-08-29 03:09:51.718816+00 f t 7476 \N \N f f +6406 2025-08-29 04:58:57.610476+00 2025-08-29 04:58:57.610483+00 f t 7477 \N \N f f +6407 2025-08-29 10:02:27.929303+00 2025-08-29 10:02:27.929313+00 f t 7478 \N \N f f +6408 2025-08-29 10:23:21.557041+00 2025-08-29 10:23:21.557048+00 f t 7479 \N \N f f +6409 2025-08-29 10:46:37.36338+00 2025-08-29 10:46:37.363391+00 f t 7480 \N \N f f +6410 2025-08-29 11:04:48.463224+00 2025-08-29 11:04:48.463233+00 f t 7481 \N \N f f +6411 2025-08-29 11:11:46.959858+00 2025-08-29 11:11:46.959866+00 f t 7482 \N \N f f +6412 2025-08-29 11:27:33.373735+00 2025-08-29 11:27:33.373747+00 f t 7483 \N \N f f +6413 2025-08-29 11:34:45.347333+00 2025-08-29 11:34:45.347345+00 f t 7484 \N \N f f +6414 2025-08-29 11:36:30.053279+00 2025-08-29 11:36:30.053292+00 f t 7485 \N \N f f +6415 2025-08-29 12:10:54.938693+00 2025-08-29 12:10:54.938705+00 f t 7486 \N \N f f +6416 2025-08-29 12:11:15.366203+00 2025-08-29 12:11:15.366211+00 f t 7487 \N \N f f +6417 2025-08-29 12:13:37.686283+00 2025-08-29 12:13:37.686295+00 f t 7488 \N \N f f +6418 2025-08-29 12:24:00.341109+00 2025-08-29 12:24:00.341121+00 f t 7489 \N \N f f +6419 2025-08-29 12:24:07.954779+00 2025-08-29 12:24:07.954792+00 f t 7490 \N \N f f +6420 2025-08-29 12:24:44.041092+00 2025-08-29 12:24:44.041098+00 f t 7491 \N \N f f +6421 2025-08-29 12:37:15.186817+00 2025-08-29 12:37:15.18683+00 f t 7492 \N \N f f +6422 2025-08-29 12:49:18.613599+00 2025-08-29 12:49:18.61361+00 f t 7493 \N \N f f +6423 2025-08-29 12:56:03.506496+00 2025-08-29 12:56:03.506508+00 f t 7494 \N \N f f +6424 2025-08-29 13:19:23.954758+00 2025-08-29 13:19:23.954767+00 f t 7495 \N \N f f +6425 2025-08-29 13:31:41.129022+00 2025-08-29 13:31:41.129034+00 f t 7496 \N \N f f +6426 2025-08-29 13:35:36.331373+00 2025-08-29 13:35:36.331385+00 f t 7497 \N \N f f +6427 2025-08-29 13:36:41.263382+00 2025-08-29 13:36:41.263395+00 f t 7498 \N \N f f +6428 2025-08-29 14:01:14.883227+00 2025-08-29 14:01:14.883237+00 f t 7499 \N \N f f +6429 2025-08-29 14:07:39.239629+00 2025-08-29 14:07:39.239637+00 f t 7500 \N \N f f +6430 2025-08-29 14:47:27.378551+00 2025-08-29 14:47:27.378561+00 f t 7502 \N \N f f +6431 2025-08-29 15:08:28.612977+00 2025-08-29 15:08:28.612986+00 f t 7503 \N \N f f +6432 2025-08-29 15:13:04.309732+00 2025-08-29 15:13:04.309744+00 f t 7504 \N \N f f +6433 2025-08-29 15:19:34.060628+00 2025-08-29 15:19:34.060639+00 f t 7505 \N \N f f +6434 2025-08-29 15:34:49.472546+00 2025-08-29 15:34:49.472554+00 f t 7506 \N \N f f +6435 2025-08-29 15:39:19.240868+00 2025-08-29 15:39:19.240879+00 f t 7507 \N \N f f +6436 2025-08-29 15:39:57.94641+00 2025-08-29 15:39:57.946422+00 f t 7508 \N \N f f +6437 2025-08-29 15:42:38.256653+00 2025-08-29 15:42:38.256662+00 f t 7509 \N \N f f +6438 2025-08-29 15:43:21.571343+00 2025-08-29 15:43:21.571361+00 f t 7510 \N \N f f +6439 2025-08-29 15:45:11.802174+00 2025-08-29 15:45:11.802187+00 f t 7511 \N \N f f +6440 2025-08-29 15:46:16.440677+00 2025-08-29 15:46:16.440688+00 f t 7512 \N \N f f +6441 2025-08-29 15:47:13.849658+00 2025-08-29 15:47:13.849671+00 f t 7513 \N \N f f +6442 2025-08-29 15:48:18.686639+00 2025-08-29 15:48:18.686646+00 f t 7514 \N \N f f +6443 2025-08-29 16:02:26.449282+00 2025-08-29 16:02:26.449291+00 f t 7515 \N \N f f +6444 2025-08-29 16:13:42.791224+00 2025-08-29 16:13:42.791235+00 f t 7516 \N \N f f +6445 2025-08-29 17:26:33.179171+00 2025-08-29 17:26:33.179184+00 f t 7519 \N \N f f +6446 2025-08-29 17:51:01.840111+00 2025-08-29 17:51:01.840121+00 f t 7520 \N \N f f +6447 2025-08-29 18:05:32.746759+00 2025-08-29 18:05:32.746772+00 f t 7521 \N \N f f +6448 2025-08-29 18:08:35.653452+00 2025-08-29 18:08:35.653461+00 f t 7522 \N \N f f +6449 2025-08-29 18:32:08.563486+00 2025-08-29 18:32:08.563499+00 f t 7523 \N \N f f +6450 2025-08-29 18:52:26.618848+00 2025-08-29 18:52:26.61886+00 f t 7524 \N \N f f +6451 2025-08-29 18:58:17.922988+00 2025-08-29 18:58:17.922996+00 f t 7525 \N \N f f +6452 2025-08-29 18:58:42.509819+00 2025-08-29 18:58:42.509829+00 f t 7526 \N \N f f +6453 2025-08-29 19:54:33.936371+00 2025-08-29 19:54:33.936383+00 f t 7530 \N \N f f +6454 2025-08-29 19:56:44.598393+00 2025-08-29 19:56:44.598402+00 f t 7531 \N \N f f +6455 2025-08-29 20:46:02.626971+00 2025-08-29 20:46:02.626985+00 f t 7532 \N \N f f +6456 2025-08-29 20:54:20.072276+00 2025-08-29 20:54:20.072284+00 f t 7533 \N \N f f +6457 2025-08-29 21:14:12.790547+00 2025-08-29 21:14:12.790558+00 f t 7534 \N \N f f +6458 2025-08-29 21:55:19.290354+00 2025-08-29 21:55:19.290363+00 f t 7535 \N \N f f +6459 2025-08-29 22:16:31.092213+00 2025-08-29 22:16:31.092224+00 f t 7536 \N \N f f +6460 2025-08-29 22:32:58.639676+00 2025-08-29 22:32:58.639687+00 f t 7537 \N \N f f +6461 2025-08-29 22:32:58.992172+00 2025-08-29 22:32:58.992185+00 f t 7538 \N \N f f +6462 2025-08-29 22:50:26.197013+00 2025-08-29 22:50:26.197022+00 f t 7539 \N \N f f +6463 2025-08-29 22:53:43.616627+00 2025-08-29 22:53:43.616639+00 f t 7540 \N \N f f +6464 2025-08-29 23:11:46.733029+00 2025-08-29 23:11:46.733043+00 f t 7541 \N \N f f +6465 2025-08-29 23:13:53.08836+00 2025-08-29 23:13:53.088371+00 f t 7542 \N \N f f +6466 2025-08-29 23:31:22.631027+00 2025-08-29 23:31:22.631037+00 f t 7543 \N \N f f +6467 2025-08-29 23:37:03.412445+00 2025-08-29 23:37:03.412458+00 f t 7544 \N \N f f +6468 2025-08-30 00:00:36.536907+00 2025-08-30 00:00:36.536922+00 f t 7545 \N \N f f +6469 2025-08-30 00:02:23.593786+00 2025-08-30 00:02:23.593797+00 f t 7546 \N \N f f +6470 2025-08-30 00:59:58.563818+00 2025-08-30 00:59:58.563828+00 f t 7547 \N \N f f +6471 2025-08-30 01:02:18.748436+00 2025-08-30 01:02:18.748444+00 f t 7548 \N \N f f +6472 2025-08-30 01:06:19.01552+00 2025-08-30 01:06:19.015535+00 f t 7549 \N \N f f +6473 2025-08-30 01:43:50.281458+00 2025-08-30 01:43:50.281467+00 f t 7550 \N \N f f +6474 2025-08-30 01:54:55.151713+00 2025-08-30 01:54:55.151723+00 f t 7551 \N \N f f +6475 2025-08-30 02:00:30.484194+00 2025-08-30 02:00:30.484207+00 f t 7552 \N \N f f +6476 2025-08-30 02:01:40.806606+00 2025-08-30 02:01:40.806616+00 f t 7553 \N \N f f +6477 2025-08-30 03:10:21.508445+00 2025-08-30 03:10:21.508456+00 f t 7554 \N \N f f +6478 2025-08-30 06:21:37.514736+00 2025-08-30 06:21:37.514746+00 f t 7555 \N \N f f +6479 2025-08-30 08:10:29.276745+00 2025-08-30 08:10:29.276755+00 f t 7556 \N \N f f +6480 2025-08-30 09:19:50.122792+00 2025-08-30 09:19:50.1228+00 f t 7557 \N \N f f +6481 2025-08-30 10:02:03.795094+00 2025-08-30 10:02:03.795104+00 f t 7558 \N \N f f +6482 2025-08-30 10:41:00.172274+00 2025-08-30 10:41:00.172284+00 f t 7559 \N \N f f +6483 2025-08-30 11:31:49.944724+00 2025-08-30 11:31:49.94473+00 f t 7560 \N \N f f +6484 2025-08-30 11:32:37.512354+00 2025-08-30 11:32:37.512363+00 f t 7561 \N \N f f +6485 2025-08-30 12:08:20.871456+00 2025-08-30 12:08:20.871467+00 f t 7562 \N \N f f +6486 2025-08-30 13:20:05.211258+00 2025-08-30 13:20:05.21127+00 f t 7563 \N \N f f +6487 2025-08-30 13:29:40.803063+00 2025-08-30 13:29:40.803073+00 f t 7564 \N \N f f +6488 2025-08-30 13:49:57.513861+00 2025-08-30 13:49:57.51387+00 f t 7565 \N \N f f +6489 2025-08-30 13:53:46.532396+00 2025-08-30 13:53:46.532405+00 f t 7566 \N \N f f +6490 2025-08-30 13:54:52.596534+00 2025-08-30 13:54:52.596548+00 f t 7567 \N \N f f +6491 2025-08-30 14:03:09.929794+00 2025-08-30 14:03:09.929803+00 f t 7568 \N \N f f +6492 2025-08-30 14:23:11.010794+00 2025-08-30 14:23:11.010806+00 f t 7569 \N \N f f +6493 2025-08-30 14:23:22.767774+00 2025-08-30 14:23:22.767782+00 f t 7570 \N \N f f +6494 2025-08-30 14:41:51.968599+00 2025-08-30 14:41:51.968608+00 f t 7571 \N \N f f +6495 2025-08-30 14:44:49.390733+00 2025-08-30 14:44:49.390745+00 f t 7572 \N \N f f +6496 2025-08-30 14:45:18.011366+00 2025-08-30 14:45:18.011376+00 f t 7573 \N \N f f +6497 2025-08-30 14:46:14.526264+00 2025-08-30 14:46:14.526273+00 f t 7574 \N \N f f +6498 2025-08-30 14:50:58.410686+00 2025-08-30 14:50:58.410695+00 f t 7575 \N \N f f +6499 2025-08-30 15:17:40.4202+00 2025-08-30 15:17:40.420209+00 f t 7576 \N \N f f +6500 2025-08-30 15:46:08.973386+00 2025-08-30 15:46:08.973398+00 f t 7577 \N \N f f +6501 2025-08-30 15:47:20.01977+00 2025-08-30 15:47:20.019782+00 f t 7578 \N \N f f +6502 2025-08-30 15:48:20.739606+00 2025-08-30 15:48:20.739617+00 f t 7579 \N \N f f +6503 2025-08-30 15:54:23.693378+00 2025-08-30 15:54:23.693389+00 f t 7580 \N \N f f +6504 2025-08-30 16:02:11.156416+00 2025-08-30 16:02:11.15643+00 f t 7581 \N \N f f +6505 2025-08-30 16:08:06.299821+00 2025-08-30 16:08:06.299831+00 f t 7582 \N \N f f +6506 2025-08-30 16:22:55.875578+00 2025-08-30 16:22:55.875586+00 f t 7583 \N \N f f +6507 2025-08-30 16:23:47.55867+00 2025-08-30 16:23:47.558683+00 f t 7584 \N \N f f +6508 2025-08-30 16:26:11.246641+00 2025-08-30 16:26:11.246648+00 f t 7585 \N \N f f +6509 2025-08-30 16:26:12.75112+00 2025-08-30 16:26:12.751128+00 f t 7586 \N \N f f +6510 2025-08-30 16:35:24.382547+00 2025-08-30 16:35:24.382555+00 f t 7587 \N \N f f +6511 2025-08-30 16:39:50.938556+00 2025-08-30 16:39:50.938568+00 f t 7588 \N \N f f +6512 2025-08-30 16:40:55.385421+00 2025-08-30 16:40:55.385428+00 f t 7589 \N \N f f +6513 2025-08-30 16:45:11.633098+00 2025-08-30 16:45:11.633111+00 f t 7590 \N \N f f +6514 2025-08-30 16:46:14.261646+00 2025-08-30 16:46:14.261656+00 f t 7591 \N \N f f +6515 2025-08-30 16:46:16.14123+00 2025-08-30 16:46:16.141246+00 f t 7592 \N \N f f +6516 2025-08-30 16:48:23.626715+00 2025-08-30 16:48:23.626723+00 f t 7593 \N \N f f +6517 2025-08-30 16:54:53.98112+00 2025-08-30 16:54:26.920719+00 f t 568 \N \N f f +6518 2025-08-30 17:01:50.333696+00 2025-08-30 17:01:50.333704+00 f t 7594 \N \N f f +6519 2025-08-30 17:05:44.893782+00 2025-08-30 17:05:44.893792+00 f t 7595 \N \N f f +6520 2025-08-30 17:35:51.228213+00 2025-08-30 17:35:51.228232+00 f t 7596 \N \N f f +6521 2025-08-30 18:03:14.612087+00 2025-08-30 17:54:21.521855+00 f t 7597 \N \N f f +6522 2025-08-30 18:03:50.051344+00 2025-08-30 18:03:50.051357+00 f t 7598 \N \N f f +6523 2025-08-30 18:35:57.734933+00 2025-08-30 18:35:57.734941+00 f t 7599 \N \N f f +6524 2025-08-30 18:50:39.953662+00 2025-08-30 18:50:39.953673+00 f t 7600 \N \N f f +6525 2025-08-30 18:56:15.725018+00 2025-08-30 18:56:15.72503+00 f t 7601 \N \N f f +6527 2025-08-30 19:19:17.692789+00 2025-08-30 19:19:17.692797+00 f t 7605 \N \N f f +6526 2025-08-30 19:22:05.882449+00 2025-08-30 19:05:37.543227+00 f t 7602 \N \N f f +6528 2025-08-30 19:42:35.706381+00 2025-08-30 19:42:35.706388+00 f t 7606 \N \N f f +6529 2025-08-30 19:46:18.10568+00 2025-08-30 19:46:18.10572+00 f t 7607 \N \N f f +6530 2025-08-30 20:18:05.83706+00 2025-08-30 20:18:05.837074+00 f t 7608 \N \N f f +6531 2025-08-30 20:19:37.214117+00 2025-08-30 20:19:37.214128+00 f t 7609 \N \N f f +6532 2025-08-30 20:31:59.149839+00 2025-08-30 20:31:59.149853+00 f t 7610 \N \N f f +6533 2025-08-30 21:13:26.603222+00 2025-08-30 21:13:26.603231+00 f t 7611 \N \N f f +6534 2025-08-30 21:43:23.165906+00 2025-08-30 21:43:23.165921+00 f t 7612 \N \N f f +6535 2025-08-30 21:57:36.60034+00 2025-08-30 21:57:36.60035+00 f t 7613 \N \N f f +6536 2025-08-30 22:11:32.336866+00 2025-08-30 22:11:32.336875+00 f t 7614 \N \N f f +6537 2025-08-30 22:12:46.696377+00 2025-08-30 22:12:46.696389+00 f t 7615 \N \N f f +6538 2025-08-30 22:25:34.689852+00 2025-08-30 22:25:34.689859+00 f t 7616 \N \N f f +6539 2025-08-30 22:26:11.379774+00 2025-08-30 22:26:11.379783+00 f t 7617 \N \N f f +6540 2025-08-30 22:39:12.36369+00 2025-08-30 22:39:12.363701+00 f t 7618 \N \N f f +6541 2025-08-30 23:28:37.430434+00 2025-08-30 23:28:37.430447+00 f t 7619 \N \N f f +6542 2025-08-30 23:44:25.195539+00 2025-08-30 23:44:25.195547+00 f t 7620 \N \N f f +6543 2025-08-30 23:53:13.797108+00 2025-08-30 23:53:13.797116+00 f t 7621 \N \N f f +6544 2025-08-31 00:46:46.918384+00 2025-08-31 00:46:46.918392+00 f t 7622 \N \N f f +6545 2025-08-31 00:53:41.688761+00 2025-08-31 00:53:41.688773+00 f t 7623 \N \N f f +6546 2025-08-31 01:23:42.062238+00 2025-08-31 01:23:42.062251+00 f t 7624 \N \N f f +6547 2025-08-31 02:00:34.366766+00 2025-08-31 02:00:34.36678+00 f t 7625 \N \N f f +6548 2025-08-31 02:42:10.819359+00 2025-08-31 02:42:10.819369+00 f t 7626 \N \N f f +6549 2025-08-31 03:40:22.122833+00 2025-08-31 03:40:22.122844+00 f t 7627 \N \N f f +6550 2025-08-31 03:43:55.207953+00 2025-08-31 03:43:55.207963+00 f t 7628 \N \N f f +6551 2025-08-31 04:36:46.485185+00 2025-08-31 04:36:46.485195+00 f t 7629 \N \N f f +6552 2025-08-31 08:34:22.008914+00 2025-08-31 08:34:22.008922+00 f t 7630 \N \N f f +6553 2025-08-31 09:43:37.929991+00 2025-08-31 09:43:37.929998+00 f t 7631 \N \N f f +6554 2025-08-31 11:26:33.178327+00 2025-08-31 11:26:33.178335+00 f t 7632 \N \N f f +6555 2025-08-31 11:46:39.904192+00 2025-08-31 11:46:39.904201+00 f t 7633 \N \N f f +6556 2025-08-31 11:52:02.999319+00 2025-08-31 11:52:02.999329+00 f t 7634 \N \N f f +6557 2025-08-31 12:17:51.877632+00 2025-08-31 12:17:51.877643+00 f t 7635 \N \N f f +6558 2025-08-31 12:22:38.376615+00 2025-08-31 12:22:38.376621+00 f t 7636 \N \N f f +6559 2025-08-31 12:27:39.693394+00 2025-08-31 12:27:39.693401+00 f t 7637 \N \N f f +6560 2025-08-31 12:30:47.399815+00 2025-08-31 12:30:47.399827+00 f t 7638 \N \N f f +6561 2025-08-31 13:18:56.269617+00 2025-08-31 13:15:07.69245+00 f t 7639 \N \N f f +6562 2025-08-31 13:19:08.861575+00 2025-08-31 13:19:08.861586+00 f t 7640 \N \N f f +6563 2025-08-31 13:31:27.827859+00 2025-08-31 13:31:27.827873+00 f t 7641 \N \N f f +6564 2025-08-31 13:40:52.384606+00 2025-08-31 13:40:52.384615+00 f t 7642 \N \N f f +6566 2025-08-31 13:50:09.629241+00 2025-08-31 13:50:09.629249+00 f t 7643 \N \N f f +6567 2025-08-31 14:45:30.794142+00 2025-08-31 14:45:30.794152+00 f t 7644 \N \N f f +6568 2025-08-31 14:59:48.001085+00 2025-08-31 14:59:48.001092+00 f t 7645 \N \N f f +6569 2025-08-31 15:11:28.214803+00 2025-08-31 15:11:28.214815+00 f t 7646 \N \N f f +6570 2025-08-31 15:17:43.515293+00 2025-08-31 15:17:43.5153+00 f t 7647 \N \N f f +6565 2025-08-31 15:28:06.979556+00 2025-08-31 13:49:41.689879+00 f t 5925 \N \N f f +6571 2025-08-31 15:31:51.7545+00 2025-08-31 15:31:51.754507+00 f t 7648 \N \N f f +6572 2025-08-31 15:35:35.651448+00 2025-08-31 15:35:35.651456+00 f t 7649 \N \N f f +6573 2025-08-31 15:38:55.809791+00 2025-08-31 15:38:55.809802+00 f t 7650 \N \N f f +6574 2025-08-31 15:40:35.82292+00 2025-08-31 15:40:35.822929+00 f t 7651 \N \N f f +6575 2025-08-31 15:43:49.299247+00 2025-08-31 15:43:49.29926+00 f t 7652 \N \N f f +6577 2025-08-31 16:09:19.48109+00 2025-08-31 16:09:19.481098+00 f t 7654 \N \N f f +6578 2025-08-31 16:38:34.51618+00 2025-08-31 16:38:34.516188+00 f t 7655 \N \N f f +6579 2025-08-31 16:40:46.099175+00 2025-08-31 16:40:46.099184+00 f t 7656 \N \N f f +6580 2025-08-31 17:41:52.708175+00 2025-08-31 17:41:52.708183+00 f t 7657 \N \N f f +6581 2025-08-31 17:43:16.728948+00 2025-08-31 17:43:16.728961+00 f t 7658 \N \N f f +6582 2025-08-31 18:14:10.830523+00 2025-08-31 18:14:10.83053+00 f t 7659 \N \N f f +6583 2025-08-31 18:43:48.246792+00 2025-08-31 18:43:48.246801+00 f t 7660 \N \N f f +6584 2025-08-31 18:59:18.493004+00 2025-08-31 18:59:18.493017+00 f t 7661 \N \N f f +6585 2025-08-31 19:49:44.649798+00 2025-08-31 19:49:44.649804+00 f t 7662 \N \N f f +6586 2025-08-31 19:54:14.80806+00 2025-08-31 19:54:14.80871+00 f t 7663 \N \N f f +6587 2025-08-31 19:57:22.321961+00 2025-08-31 19:57:22.321967+00 f t 7664 \N \N f f +6588 2025-08-31 20:07:27.467418+00 2025-08-31 20:07:27.467426+00 f t 7665 \N \N f f +6589 2025-08-31 20:21:03.648493+00 2025-08-31 20:21:03.648501+00 f t 7669 \N \N f f +6590 2025-08-31 20:24:38.146244+00 2025-08-31 20:24:38.146251+00 f t 7671 \N \N f f +6591 2025-08-31 20:29:48.070823+00 2025-08-31 20:29:48.070831+00 f t 7673 \N \N f f +6576 2025-08-31 20:34:42.294395+00 2025-08-31 15:44:09.165364+00 f t 7653 \N \N f f +6592 2025-08-31 20:49:37.560296+00 2025-08-31 20:49:37.560304+00 f t 7674 \N \N f f +6593 2025-08-31 20:56:38.559661+00 2025-08-31 20:56:38.559668+00 f t 7675 \N \N f f +6594 2025-08-31 20:59:21.648725+00 2025-08-31 20:59:21.648738+00 f t 7676 \N \N f f +6595 2025-08-31 21:00:38.058053+00 2025-08-31 21:00:38.058072+00 f t 7677 \N \N f f +6596 2025-08-31 21:10:41.347398+00 2025-08-31 21:10:41.347407+00 f t 7678 \N \N f f +6597 2025-08-31 21:13:11.696272+00 2025-08-31 21:13:11.696282+00 f t 7679 \N \N f f +6598 2025-08-31 21:18:44.73452+00 2025-08-31 21:18:44.734528+00 f t 7680 \N \N f f +6599 2025-08-31 21:33:00.187876+00 2025-08-31 21:33:00.187894+00 f t 7681 \N \N f f +6600 2025-08-31 21:55:37.608857+00 2025-08-31 21:55:37.608866+00 f t 7682 \N \N f f +6601 2025-08-31 21:56:04.439865+00 2025-08-31 21:56:04.439875+00 f t 7683 \N \N f f +6602 2025-08-31 22:28:42.037544+00 2025-08-31 22:28:42.037552+00 f t 7684 \N \N f f +6603 2025-08-31 22:55:07.594114+00 2025-08-31 22:55:07.594127+00 f t 7685 \N \N f f +6604 2025-08-31 22:56:58.398248+00 2025-08-31 22:56:58.39826+00 f t 7686 \N \N f f +6605 2025-08-31 23:19:01.831073+00 2025-08-31 23:19:01.831087+00 f t 7687 \N \N f f +6606 2025-08-31 23:24:29.602747+00 2025-08-31 23:24:29.602759+00 f t 7688 \N \N f f +6607 2025-09-01 01:03:41.935448+00 2025-09-01 01:03:41.93546+00 f t 7689 \N \N f f +6608 2025-09-01 01:14:25.299356+00 2025-09-01 01:14:25.29937+00 f t 7690 \N \N f f +6609 2025-09-01 01:35:18.001753+00 2025-09-01 01:35:18.001767+00 f t 7691 \N \N f f +6610 2025-09-01 02:39:40.345394+00 2025-09-01 02:39:40.345405+00 f t 7692 \N \N f f +6611 2025-09-01 03:03:03.903777+00 2025-09-01 03:03:03.903786+00 f t 7693 \N \N f f +6612 2025-09-01 03:07:53.789395+00 2025-09-01 03:07:53.789407+00 f t 7694 \N \N f f +6613 2025-09-01 03:20:11.990667+00 2025-09-01 03:20:11.990679+00 f t 7695 \N \N f f +6614 2025-09-01 03:27:10.644476+00 2025-09-01 03:27:10.644484+00 f t 7696 \N \N f f +6615 2025-09-01 03:31:32.878061+00 2025-09-01 03:31:32.878071+00 f t 7697 \N \N f f +6616 2025-09-01 03:56:04.492772+00 2025-09-01 03:56:04.492782+00 f t 7698 \N \N f f +6617 2025-09-01 05:01:09.003086+00 2025-09-01 05:01:09.003101+00 f t 7699 \N \N f f +6618 2025-09-01 07:29:11.780361+00 2025-09-01 07:29:11.780369+00 f t 7700 \N \N f f +6619 2025-09-01 07:30:23.150907+00 2025-09-01 07:30:23.150916+00 f t 7701 \N \N f f +6620 2025-09-01 07:34:45.847888+00 2025-09-01 07:34:45.847896+00 f t 7702 \N \N f f +6621 2025-09-01 10:08:51.219076+00 2025-09-01 10:08:51.219089+00 f t 7703 \N \N f f +6622 2025-09-01 10:16:32.65975+00 2025-09-01 10:16:32.659758+00 f t 7704 \N \N f f +6623 2025-09-01 10:24:19.448302+00 2025-09-01 10:24:19.44831+00 f t 7705 \N \N f f +6624 2025-09-01 11:26:38.459504+00 2025-09-01 11:26:38.459511+00 f t 7706 \N \N f f +6625 2025-09-01 11:46:51.163001+00 2025-09-01 11:46:51.163009+00 f t 7707 \N \N f f +6626 2025-09-01 11:52:43.213936+00 2025-09-01 11:52:43.213944+00 f t 7708 \N \N f f +6627 2025-09-01 12:01:50.847871+00 2025-09-01 12:01:50.847882+00 f t 7709 \N \N f f +6628 2025-09-01 12:04:57.512967+00 2025-09-01 12:04:57.512975+00 f t 7710 \N \N f f +6629 2025-09-01 12:05:18.567482+00 2025-09-01 12:05:18.567489+00 f t 7711 \N \N f f +6630 2025-09-01 12:09:58.372966+00 2025-09-01 12:09:58.372974+00 f t 7712 \N \N f f +6631 2025-09-01 12:13:57.376977+00 2025-09-01 12:13:57.376987+00 f t 7713 \N \N f f +6632 2025-09-01 12:56:21.531889+00 2025-09-01 12:56:21.531902+00 f t 7714 \N \N f f +6633 2025-09-01 13:08:44.969623+00 2025-09-01 13:08:44.969637+00 f t 7715 \N \N f f +6634 2025-09-01 13:19:51.005292+00 2025-09-01 13:19:51.005303+00 f t 7716 \N \N f f +6635 2025-09-01 13:28:21.595164+00 2025-09-01 13:28:21.595172+00 f t 7717 \N \N f f +6636 2025-09-01 13:52:15.250555+00 2025-09-01 13:52:15.250563+00 f t 7718 \N \N f f +6637 2025-09-01 14:07:31.724762+00 2025-09-01 14:07:31.724775+00 f t 7719 \N \N f f +6638 2025-09-01 14:34:03.784862+00 2025-09-01 14:34:03.784873+00 f t 7720 \N \N f f +6639 2025-09-01 15:05:58.846075+00 2025-09-01 15:05:58.846084+00 f t 7722 \N \N f f +6640 2025-09-01 15:07:47.104158+00 2025-09-01 15:07:47.104169+00 f t 7723 \N \N f f +6641 2025-09-01 15:15:35.77615+00 2025-09-01 15:15:35.776161+00 f t 7724 \N \N f f +6642 2025-09-01 15:21:50.36041+00 2025-09-01 15:21:50.360417+00 f t 7131 \N \N f f +6643 2025-09-01 15:25:19.890584+00 2025-09-01 15:25:19.890592+00 f t 7725 \N \N f f +6644 2025-09-01 15:31:24.888563+00 2025-09-01 15:31:24.888571+00 f t 7726 \N \N f f +6645 2025-09-01 15:45:39.64311+00 2025-09-01 15:45:39.643121+00 f t 7727 \N \N f f +6646 2025-09-01 15:46:29.725321+00 2025-09-01 15:46:29.725331+00 f t 7728 \N \N f f +6647 2025-09-01 15:51:55.183963+00 2025-09-01 15:51:55.183973+00 f t 7729 \N \N f f +6648 2025-09-01 15:53:19.832768+00 2025-09-01 15:53:19.832777+00 f t 1025 \N \N f f +6649 2025-09-01 16:19:02.616568+00 2025-09-01 16:19:02.616579+00 f t 7730 \N \N f f +6650 2025-09-01 16:58:16.860349+00 2025-09-01 16:58:16.860361+00 f t 7731 \N \N f f +6651 2025-09-01 17:34:32.193441+00 2025-09-01 17:34:32.193452+00 f t 7732 \N \N f f +6652 2025-09-01 17:35:43.066594+00 2025-09-01 17:35:43.066603+00 f t 7733 \N \N f f +6653 2025-09-01 17:38:17.847481+00 2025-09-01 17:38:17.847494+00 f t 7734 \N \N f f +6654 2025-09-01 17:38:42.845626+00 2025-09-01 17:38:42.845637+00 f t 7735 \N \N f f +6655 2025-09-01 18:09:47.979203+00 2025-09-01 18:09:47.979212+00 f t 7736 \N \N f f +6656 2025-09-01 18:15:08.729669+00 2025-09-01 18:15:08.729683+00 f t 7737 \N \N f f +6657 2025-09-01 18:19:35.997718+00 2025-09-01 18:19:35.997726+00 f t 7738 \N \N f f +6658 2025-09-01 18:36:09.938175+00 2025-09-01 18:36:09.938187+00 f t 7739 \N \N f f +6659 2025-09-01 18:40:49.570338+00 2025-09-01 18:40:49.570346+00 f t 7740 \N \N f f +6660 2025-09-01 18:44:00.308652+00 2025-09-01 18:44:00.308666+00 f t 7741 \N \N f f +6661 2025-09-01 18:51:22.048738+00 2025-09-01 18:51:22.048746+00 f t 7742 \N \N f f +6662 2025-09-01 19:16:48.132997+00 2025-09-01 19:16:48.133005+00 f t 7743 \N \N f f +6663 2025-09-01 19:32:26.25349+00 2025-09-01 19:32:26.253499+00 f t 7744 \N \N f f +6664 2025-09-01 19:48:56.975737+00 2025-09-01 19:48:56.975746+00 f t 7746 \N \N f f +6665 2025-09-01 19:55:12.491838+00 2025-09-01 19:55:12.49185+00 f t 7747 \N \N f f +6666 2025-09-01 19:55:49.434405+00 2025-09-01 19:55:49.434413+00 f t 7748 \N \N f f +6667 2025-09-01 20:03:57.320894+00 2025-09-01 20:03:57.320908+00 f t 7749 \N \N f f +6668 2025-09-01 20:07:39.540119+00 2025-09-01 20:07:39.540129+00 f t 7750 \N \N f f +6669 2025-09-01 20:40:18.534666+00 2025-09-01 20:40:18.534674+00 f t 7751 \N \N f f +6670 2025-09-01 20:46:15.635247+00 2025-09-01 20:46:15.635256+00 f t 7752 \N \N f f +6671 2025-09-01 20:48:29.462557+00 2025-09-01 20:48:29.462568+00 f t 7753 \N \N f f +6672 2025-09-01 21:25:07.607335+00 2025-09-01 21:25:07.607348+00 f t 7754 \N \N f f +6673 2025-09-01 21:28:03.205608+00 2025-09-01 21:28:03.205619+00 f t 7755 \N \N f f +6674 2025-09-01 21:45:50.368659+00 2025-09-01 21:45:50.368671+00 f t 7756 \N \N f f +6675 2025-09-01 22:21:09.915015+00 2025-09-01 22:21:09.915025+00 f t 7757 \N \N f f +6676 2025-09-01 22:28:57.365867+00 2025-09-01 22:28:57.365876+00 f t 7758 \N \N f f +6677 2025-09-01 22:38:15.612664+00 2025-09-01 22:38:15.612671+00 f t 7759 \N \N f f +6678 2025-09-01 23:06:57.970712+00 2025-09-01 23:06:57.970721+00 f t 7760 \N \N f f +6679 2025-09-01 23:11:23.368581+00 2025-09-01 23:11:23.36859+00 f t 7761 \N \N f f +6680 2025-09-01 23:13:51.728703+00 2025-09-01 23:13:51.728712+00 f t 7762 \N \N f f +6681 2025-09-01 23:16:16.709231+00 2025-09-01 23:16:16.709238+00 f t 7763 \N \N f f +6682 2025-09-01 23:23:16.708529+00 2025-09-01 23:23:16.70854+00 f t 7764 \N \N f f +6683 2025-09-01 23:27:14.042723+00 2025-09-01 23:27:14.04273+00 f t 7765 \N \N f f +6684 2025-09-01 23:46:52.311033+00 2025-09-01 23:46:52.311041+00 f t 7767 \N \N f f +6685 2025-09-01 23:52:10.634491+00 2025-09-01 23:48:28.054882+00 f t 7768 \N \N f f +6686 2025-09-01 23:53:12.112355+00 2025-09-01 23:53:12.112367+00 f t 7769 \N \N f f +6687 2025-09-02 00:38:35.740428+00 2025-09-02 00:38:35.74044+00 f t 7771 \N \N f f +6688 2025-09-02 00:52:26.267773+00 2025-09-02 00:52:26.267781+00 f t 7772 \N \N f f +6689 2025-09-02 01:56:00.437472+00 2025-09-02 01:56:00.43748+00 f t 7773 \N \N f f +6690 2025-09-02 02:11:52.354825+00 2025-09-02 02:11:52.354834+00 f t 7774 \N \N f f +6691 2025-09-02 02:24:11.775124+00 2025-09-02 02:24:11.775167+00 f t 7775 \N \N f f +6692 2025-09-02 02:27:39.072915+00 2025-09-02 02:27:39.072923+00 f t 7776 \N \N f f +6693 2025-09-02 02:51:05.243902+00 2025-09-02 02:51:05.243912+00 f t 7777 \N \N f f +6694 2025-09-02 02:52:32.713971+00 2025-09-02 02:52:32.713982+00 f t 7778 \N \N f f +6695 2025-09-02 02:53:03.714233+00 2025-09-02 02:53:03.714241+00 f t 7779 \N \N f f +6696 2025-09-02 04:17:16.351707+00 2025-09-02 04:17:16.351721+00 f t 7780 \N \N f f +6697 2025-09-02 04:34:33.392884+00 2025-09-02 04:34:33.392894+00 f t 7781 \N \N f f +6698 2025-09-02 06:05:23.943372+00 2025-09-02 06:05:23.943385+00 f t 7782 \N \N f f +6699 2025-09-02 09:18:51.739122+00 2025-09-02 09:18:51.739167+00 f t 7783 \N \N f f +6700 2025-09-02 10:56:31.058437+00 2025-09-02 10:56:31.058445+00 f t 7784 \N \N f f +6701 2025-09-02 10:57:16.689221+00 2025-09-02 10:57:16.689234+00 f t 7785 \N \N f f +6702 2025-09-02 11:42:53.209425+00 2025-09-02 11:42:53.209437+00 f t 7787 \N \N f f +6703 2025-09-02 11:45:16.048536+00 2025-09-02 11:45:16.048545+00 f t 7788 \N \N f f +6704 2025-09-02 11:48:21.05798+00 2025-09-02 11:48:21.057987+00 f t 7666 \N \N f f +6705 2025-09-02 11:52:33.792876+00 2025-09-02 11:52:33.792885+00 f t 7789 \N \N f f +6706 2025-09-02 12:01:17.809072+00 2025-09-02 12:01:17.809084+00 f t 7790 \N \N f f +6707 2025-09-02 12:01:58.440066+00 2025-09-02 12:01:58.440075+00 f t 7791 \N \N f f +6708 2025-09-02 12:18:56.089048+00 2025-09-02 12:13:24.12464+00 f t 7367 \N \N f f +6709 2025-09-02 12:51:11.855928+00 2025-09-02 12:51:11.855937+00 f t 7792 \N \N f f +6710 2025-09-02 13:06:04.032364+00 2025-09-02 13:06:04.032372+00 f t 7793 \N \N f f +6711 2025-09-02 13:12:44.039474+00 2025-09-02 13:12:44.039485+00 f t 7794 \N \N f f +6712 2025-09-02 13:48:21.792845+00 2025-09-02 13:48:21.792859+00 f t 7795 \N \N f f +6713 2025-09-02 14:09:08.128106+00 2025-09-02 14:09:08.128118+00 f t 7796 \N \N f f +6714 2025-09-02 14:37:49.02244+00 2025-09-02 14:37:49.022453+00 f t 7797 \N \N f f +6715 2025-09-02 14:48:24.378969+00 2025-09-02 14:48:24.378978+00 f t 7798 \N \N f f +6716 2025-09-02 14:58:57.003291+00 2025-09-02 14:58:57.003301+00 f t 7799 \N \N f f +6717 2025-09-02 15:09:33.503457+00 2025-09-02 15:09:33.503465+00 f t 7800 \N \N f f +6718 2025-09-02 15:14:05.553381+00 2025-09-02 15:14:05.553393+00 f t 6885 \N \N f f +6719 2025-09-02 15:18:43.500474+00 2025-09-02 15:18:43.500485+00 f t 7801 \N \N f f +6720 2025-09-02 15:30:32.767091+00 2025-09-02 15:30:32.767098+00 f t 7802 \N \N f f +6721 2025-09-02 15:31:05.550956+00 2025-09-02 15:31:05.550966+00 f t 7803 \N \N f f +6722 2025-09-02 15:35:01.105181+00 2025-09-02 15:35:01.105195+00 f t 7804 \N \N f f +6723 2025-09-02 15:47:42.202633+00 2025-09-02 15:47:42.202646+00 f t 7805 \N \N f f +6724 2025-09-02 15:51:40.046392+00 2025-09-02 15:51:40.046404+00 f t 7806 \N \N f f +6725 2025-09-02 16:04:06.949977+00 2025-09-02 16:04:06.94999+00 f t 7807 \N \N f f +6726 2025-09-02 16:13:20.960262+00 2025-09-02 16:13:20.960273+00 f t 7808 \N \N f f +6727 2025-09-02 16:16:11.715359+00 2025-09-02 16:16:11.715373+00 f t 7809 \N \N f f +6728 2025-09-02 16:17:00.828384+00 2025-09-02 16:17:00.828393+00 f t 7810 \N \N f f +6729 2025-09-02 16:21:04.148444+00 2025-09-02 16:21:04.148452+00 f t 4255 \N \N f f +6730 2025-09-02 16:32:06.4853+00 2025-09-02 16:32:06.485312+00 f t 7811 \N \N f f +6731 2025-09-02 16:36:45.368942+00 2025-09-02 16:36:45.36895+00 f t 7812 \N \N f f +6732 2025-09-02 16:42:23.588889+00 2025-09-02 16:42:23.588906+00 f t 7814 \N \N f f +6733 2025-09-02 16:49:19.447365+00 2025-09-02 16:49:19.447376+00 f t 7815 \N \N f f +6734 2025-09-02 17:04:40.646028+00 2025-09-02 17:04:40.646038+00 f t 7816 \N \N f f +6735 2025-09-02 17:30:27.79304+00 2025-09-02 17:30:27.793048+00 f t 7817 \N \N f f +6736 2025-09-02 17:41:02.988527+00 2025-09-02 17:41:02.988542+00 f t 7818 \N \N f f +6738 2025-09-02 18:16:17.823382+00 2025-09-02 18:16:17.823391+00 f t 7821 \N \N f f +6739 2025-09-02 18:37:41.921352+00 2025-09-02 18:37:41.921362+00 f t 7822 \N \N f f +6740 2025-09-02 18:38:52.775477+00 2025-09-02 18:38:52.775485+00 f t 301 \N \N f f +6741 2025-09-02 18:50:52.703801+00 2025-09-02 18:50:52.70381+00 f t 7823 \N \N f f +6742 2025-09-02 19:25:33.223988+00 2025-09-02 19:25:33.223995+00 f t 7824 \N \N f f +6743 2025-09-02 19:39:50.081178+00 2025-09-02 19:39:50.081188+00 f t 7825 \N \N f f +6744 2025-09-02 19:43:26.902944+00 2025-09-02 19:43:26.902954+00 f t 7826 \N \N f f +6745 2025-09-02 19:56:02.910548+00 2025-09-02 19:56:02.910559+00 f t 7827 \N \N f f +6746 2025-09-02 20:36:54.933099+00 2025-09-02 20:36:54.933112+00 f t 7828 \N \N f f +6747 2025-09-02 20:56:22.980223+00 2025-09-02 20:56:22.980234+00 f t 7830 \N \N f f +6748 2025-09-02 21:15:46.365036+00 2025-09-02 21:15:46.365044+00 f t 7831 \N \N f f +6749 2025-09-02 21:48:29.620447+00 2025-09-02 21:48:29.62046+00 f t 7832 \N \N f f +6750 2025-09-02 22:03:04.553436+00 2025-09-02 22:03:04.553449+00 f t 7833 \N \N f f +6751 2025-09-02 22:24:10.203854+00 2025-09-02 22:24:10.203863+00 f t 7836 \N \N f f +6752 2025-09-02 22:34:15.938949+00 2025-09-02 22:34:15.93896+00 f t 7837 \N \N f f +6753 2025-09-02 22:47:57.950087+00 2025-09-02 22:47:57.950099+00 f t 7838 \N \N f f +6797 2025-09-03 13:06:50.694584+00 2025-09-03 13:06:50.694597+00 f t 7882 \N \N f f +6754 2025-09-02 22:50:32.983023+00 2025-09-02 22:48:57.742811+00 f t 7839 \N \N f f +6755 2025-09-02 23:01:23.665929+00 2025-09-02 23:01:23.665942+00 f t 7840 \N \N f f +6757 2025-09-02 23:15:40.719621+00 2025-09-02 23:15:40.719632+00 f t 7842 \N \N f f +6756 2025-09-02 23:24:55.055491+00 2025-09-02 23:04:40.537428+00 f t 7841 \N \N f f +6758 2025-09-02 23:36:31.462825+00 2025-09-02 23:36:31.462835+00 f t 7843 \N \N f f +6759 2025-09-02 23:53:48.124892+00 2025-09-02 23:53:48.124901+00 f t 7844 \N \N f f +6760 2025-09-03 00:02:57.500824+00 2025-09-03 00:02:57.500837+00 f t 7845 \N \N f f +6761 2025-09-03 00:06:16.090329+00 2025-09-03 00:06:16.090337+00 f t 7846 \N \N f f +6762 2025-09-03 00:10:27.290934+00 2025-09-03 00:10:27.290942+00 f t 7847 \N \N f f +6763 2025-09-03 00:11:22.65451+00 2025-09-03 00:11:22.65452+00 f t 7848 \N \N f f +6764 2025-09-03 00:21:34.291435+00 2025-09-03 00:21:34.291448+00 f t 7849 \N \N f f +6765 2025-09-03 00:22:34.440931+00 2025-09-03 00:22:34.440941+00 f t 7850 \N \N f f +6766 2025-09-03 00:29:20.911981+00 2025-09-03 00:29:20.911992+00 f t 7851 \N \N f f +6767 2025-09-03 00:30:07.791663+00 2025-09-03 00:30:07.791677+00 f t 7852 \N \N f f +6768 2025-09-03 00:30:48.200618+00 2025-09-03 00:30:48.200631+00 f t 7853 \N \N f f +6769 2025-09-03 00:47:38.202862+00 2025-09-03 00:47:38.20287+00 f t 7854 \N \N f f +6770 2025-09-03 00:55:38.640134+00 2025-09-03 00:55:38.640142+00 f t 7855 \N \N f f +6771 2025-09-03 00:59:56.311227+00 2025-09-03 00:59:56.311237+00 f t 7856 \N \N f f +6772 2025-09-03 01:04:31.810106+00 2025-09-03 01:04:31.810114+00 f t 7857 \N \N f f +6773 2025-09-03 01:06:27.359925+00 2025-09-03 01:06:27.359936+00 f t 7858 \N \N f f +6774 2025-09-03 01:12:51.328356+00 2025-09-03 01:12:51.328366+00 f t 7859 \N \N f f +6775 2025-09-03 01:51:17.316407+00 2025-09-03 01:51:17.316416+00 f t 7860 \N \N f f +6776 2025-09-03 01:56:58.499409+00 2025-09-03 01:56:58.499417+00 f t 7861 \N \N f f +6777 2025-09-03 01:57:51.662135+00 2025-09-03 01:57:51.662142+00 f t 7862 \N \N f f +6778 2025-09-03 02:06:15.039201+00 2025-09-03 02:06:15.03921+00 f t 7863 \N \N f f +6779 2025-09-03 02:16:12.497538+00 2025-09-03 02:16:12.497551+00 f t 7864 \N \N f f +6780 2025-09-03 02:23:06.773266+00 2025-09-03 02:23:06.773276+00 f t 7865 \N \N f f +6781 2025-09-03 02:24:12.282937+00 2025-09-03 02:24:12.282949+00 f t 7866 \N \N f f +6782 2025-09-03 02:40:54.90951+00 2025-09-03 02:40:54.909519+00 f t 7867 \N \N f f +6783 2025-09-03 02:58:49.695511+00 2025-09-03 02:58:49.695523+00 f t 7868 \N \N f f +6784 2025-09-03 05:08:44.814745+00 2025-09-03 05:08:44.814754+00 f t 7869 \N \N f f +6785 2025-09-03 05:37:56.146899+00 2025-09-03 05:37:56.146911+00 f t 7870 \N \N f f +6786 2025-09-03 07:58:00.442111+00 2025-09-03 07:58:00.44212+00 f t 7871 \N \N f f +6787 2025-09-03 10:33:01.530917+00 2025-09-03 10:33:01.530929+00 f t 7872 \N \N f f +6788 2025-09-03 10:38:46.080163+00 2025-09-03 10:38:46.080178+00 f t 7873 \N \N f f +6789 2025-09-03 10:51:25.036572+00 2025-09-03 10:51:25.036581+00 f t 7874 \N \N f f +6790 2025-09-03 10:52:24.223098+00 2025-09-03 10:52:24.223107+00 f t 7875 \N \N f f +6792 2025-09-03 10:56:22.098543+00 2025-09-03 10:56:22.098555+00 f t 7877 \N \N f f +6791 2025-09-03 10:59:27.739239+00 2025-09-03 10:55:29.037055+00 f t 7876 \N \N f f +6793 2025-09-03 11:18:22.144147+00 2025-09-03 11:18:22.144156+00 f t 7878 \N \N f f +6798 2025-09-03 13:09:37.968278+00 2025-09-03 13:07:21.047495+00 f t 7883 \N \N f f +6800 2025-09-03 13:22:11.835725+00 2025-09-03 13:22:11.835735+00 f t 7885 \N \N f f +6801 2025-09-03 13:22:50.350804+00 2025-09-03 13:22:50.350812+00 f t 7886 \N \N f f +6802 2025-09-03 13:39:24.729974+00 2025-09-03 13:39:24.729984+00 f t 7887 \N \N f f +6803 2025-09-03 13:43:28.431278+00 2025-09-03 13:43:28.431286+00 f t 7888 \N \N f f +6804 2025-09-03 13:45:05.788736+00 2025-09-03 13:45:05.788748+00 f t 7889 \N \N f f +6805 2025-09-03 14:00:11.955365+00 2025-09-03 14:00:11.95538+00 f t 5189 \N \N f f +6806 2025-09-03 14:02:26.858874+00 2025-09-03 14:02:26.858884+00 f t 7890 \N \N f f +6807 2025-09-03 14:03:41.702048+00 2025-09-03 14:03:41.70206+00 f t 7891 \N \N f f +6808 2025-09-03 14:04:03.359693+00 2025-09-03 14:04:03.359704+00 f t 7892 \N \N f f +6809 2025-09-03 14:16:09.34583+00 2025-09-03 14:16:09.345841+00 f t 7893 \N \N f f +6810 2025-09-03 14:25:13.508898+00 2025-09-03 14:25:13.508908+00 f t 7894 \N \N f f +6811 2025-09-03 14:27:31.952561+00 2025-09-03 14:27:31.952571+00 f t 7895 \N \N f f +6812 2025-09-03 14:31:33.281468+00 2025-09-03 14:31:33.28148+00 f t 7896 \N \N f f +6813 2025-09-03 15:15:03.763858+00 2025-09-03 15:15:03.76387+00 f t 7898 \N \N f f +6814 2025-09-03 16:01:10.843343+00 2025-09-03 16:01:10.843353+00 f t 7900 \N \N f f +6815 2025-09-03 16:01:34.858232+00 2025-09-03 16:01:34.858246+00 f t 7901 \N \N f f +6816 2025-09-03 16:28:57.697632+00 2025-09-03 16:28:57.697641+00 f t 7902 \N \N f f +6737 2025-09-03 16:51:55.014182+00 2025-09-02 18:02:46.689958+00 f t 7820 \N \N f f +6817 2025-09-03 16:56:36.454222+00 2025-09-03 16:56:36.454229+00 f t 7903 \N \N f f +6818 2025-09-03 17:02:44.918404+00 2025-09-03 17:02:44.918414+00 f t 7904 \N \N f f +6819 2025-09-03 17:10:09.456391+00 2025-09-03 17:10:09.456401+00 f t 7905 \N \N f f +6820 2025-09-03 17:33:11.123707+00 2025-09-03 17:33:11.123718+00 f t 7906 \N \N f f +6821 2025-09-03 17:37:10.764292+00 2025-09-03 17:37:10.764303+00 f t 7907 \N \N f f +6822 2025-09-03 17:39:26.228363+00 2025-09-03 17:39:26.228374+00 f t 7908 \N \N f f +6823 2025-09-03 17:51:57.227398+00 2025-09-03 17:51:57.22741+00 f t 7909 \N \N f f +6824 2025-09-03 18:01:57.417795+00 2025-09-03 18:01:57.417805+00 f t 7910 \N \N f f +6825 2025-09-03 18:04:27.644769+00 2025-09-03 18:04:27.644781+00 f t 7911 \N \N f f +6826 2025-09-03 18:14:06.138721+00 2025-09-03 18:14:06.138732+00 f t 7912 \N \N f f +6827 2025-09-03 18:26:33.116367+00 2025-09-03 18:26:33.116379+00 f t 7913 \N \N f f +6828 2025-09-03 19:42:18.734174+00 2025-09-03 19:42:18.734187+00 f t 7914 \N \N f f +6829 2025-09-03 19:53:17.867919+00 2025-09-03 19:53:17.867929+00 f t 7915 \N \N f f +6830 2025-09-03 19:58:46.345352+00 2025-09-03 19:58:46.345363+00 f t 7916 \N \N f f +6831 2025-09-03 20:01:30.871194+00 2025-09-03 20:01:30.871204+00 f t 7917 \N \N f f +6832 2025-09-03 20:04:48.73576+00 2025-09-03 20:04:48.735769+00 f t 7918 \N \N f f +6833 2025-09-03 20:16:14.140832+00 2025-09-03 20:16:14.14084+00 f t 7919 \N \N f f +6834 2025-09-03 20:26:37.153596+00 2025-09-03 20:26:37.153603+00 f t 7920 \N \N f f +6835 2025-09-03 20:29:47.775801+00 2025-09-03 20:29:47.775807+00 f t 7921 \N \N f f +6836 2025-09-03 20:36:33.589835+00 2025-09-03 20:36:33.589846+00 f t 7922 \N \N f f +6837 2025-09-03 20:40:15.342205+00 2025-09-03 20:40:15.342213+00 f t 7923 \N \N f f +6838 2025-09-03 20:40:50.678578+00 2025-09-03 20:40:50.678587+00 f t 7924 \N \N f f +6839 2025-09-03 20:42:56.500556+00 2025-09-03 20:42:56.500564+00 f t 7925 \N \N f f +6840 2025-09-03 20:43:05.670746+00 2025-09-03 20:43:05.670755+00 f t 7926 \N \N f f +6841 2025-09-03 20:43:43.689083+00 2025-09-03 20:43:43.689098+00 f t 7927 \N \N f f +6842 2025-09-03 20:44:32.808336+00 2025-09-03 20:44:32.808343+00 f t 7928 \N \N f f +6843 2025-09-03 21:08:36.920988+00 2025-09-03 21:08:36.920995+00 f t 7929 \N \N f f +6844 2025-09-03 21:12:15.544719+00 2025-09-03 21:12:15.544726+00 f t 7930 \N \N f f +6845 2025-09-03 21:23:41.962386+00 2025-09-03 21:23:41.962397+00 f t 7931 \N \N f f +6846 2025-09-03 21:42:54.473462+00 2025-09-03 21:42:54.47347+00 f t 7932 \N \N f f +6847 2025-09-03 21:46:57.530245+00 2025-09-03 21:46:57.530256+00 f t 7933 \N \N f f +6848 2025-09-03 21:50:02.033976+00 2025-09-03 21:50:02.033991+00 f t 7934 \N \N f f +6849 2025-09-03 21:51:02.314706+00 2025-09-03 21:51:02.314721+00 f t 7935 \N \N f f +6850 2025-09-03 22:01:02.87448+00 2025-09-03 22:01:02.874494+00 f t 7936 \N \N f f +6851 2025-09-03 22:18:02.583329+00 2025-09-03 22:18:02.583338+00 f t 7937 \N \N f f +6852 2025-09-03 22:42:22.875501+00 2025-09-03 22:42:22.875512+00 f t 7938 \N \N f f +6853 2025-09-03 22:45:03.005082+00 2025-09-03 22:45:03.005096+00 f t 7939 \N \N f f +6854 2025-09-03 23:03:12.411696+00 2025-09-03 23:03:12.411709+00 f t 7940 \N \N f f +6855 2025-09-03 23:55:35.098166+00 2025-09-03 23:55:35.098174+00 f t 7941 \N \N f f +6856 2025-09-04 00:00:51.402411+00 2025-09-04 00:00:51.40242+00 f t 7942 \N \N f f +6857 2025-09-04 00:27:11.178276+00 2025-09-04 00:27:11.178286+00 f t 7943 \N \N f f +6858 2025-09-04 00:30:20.719267+00 2025-09-04 00:30:20.71928+00 f t 7944 \N \N f f +6859 2025-09-04 00:43:55.346034+00 2025-09-04 00:43:55.346042+00 f t 7945 \N \N f f +6860 2025-09-04 00:50:49.320285+00 2025-09-04 00:50:49.320296+00 f t 7946 \N \N f f +6861 2025-09-04 00:51:58.583764+00 2025-09-04 00:51:58.583773+00 f t 7947 \N \N f f +6862 2025-09-04 00:55:22.556271+00 2025-09-04 00:55:22.556277+00 f t 7948 \N \N f f +6863 2025-09-04 01:57:46.097365+00 2025-09-04 01:57:46.097373+00 f t 7949 \N \N f f +6864 2025-09-04 01:58:42.451408+00 2025-09-04 01:58:42.45142+00 f t 7950 \N \N f f +6865 2025-09-04 02:03:20.519251+00 2025-09-04 02:03:20.519262+00 f t 7951 \N \N f f +6866 2025-09-04 02:05:30.215378+00 2025-09-04 02:05:30.21539+00 f t 7952 \N \N f f +6867 2025-09-04 02:06:27.375481+00 2025-09-04 02:06:27.37549+00 f t 7953 \N \N f f +6868 2025-09-04 02:15:47.959316+00 2025-09-04 02:15:47.959324+00 f t 7954 \N \N f f +6869 2025-09-04 03:50:08.83556+00 2025-09-04 03:50:08.835568+00 f t 7955 \N \N f f +6870 2025-09-04 08:28:36.001724+00 2025-09-04 08:28:36.001735+00 f t 7956 \N \N f f +6871 2025-09-04 08:29:26.010616+00 2025-09-04 08:29:26.010625+00 f t 7957 \N \N f f +6872 2025-09-04 08:30:16.12225+00 2025-09-04 08:30:16.122262+00 f t 7958 \N \N f f +6873 2025-09-04 08:41:59.400667+00 2025-09-04 08:41:59.400674+00 f t 7959 \N \N f f +6874 2025-09-04 08:46:20.272695+00 2025-09-04 08:46:20.272703+00 f t 7960 \N \N f f +6875 2025-09-04 09:08:02.949635+00 2025-09-04 09:08:02.949643+00 f t 7961 \N \N f f +6876 2025-09-04 10:23:37.834467+00 2025-09-04 10:23:37.834474+00 f t 7962 \N \N f f +6877 2025-09-04 11:12:26.560275+00 2025-09-04 11:12:26.560284+00 f t 7963 \N \N f f +6878 2025-09-04 11:28:33.519811+00 2025-09-04 11:28:33.519819+00 f t 7964 \N \N f f +6879 2025-09-04 11:34:24.478323+00 2025-09-04 11:34:24.478334+00 f t 7965 \N \N f f +6880 2025-09-04 13:01:19.785057+00 2025-09-04 13:01:19.78507+00 f t 7966 \N \N f f +6979 2025-09-05 20:04:04.843898+00 2025-09-05 20:04:04.843907+00 f t 8065 \N \N f f +6980 2025-09-05 20:22:28.873828+00 2025-09-05 20:22:28.873838+00 f t 8066 \N \N f f +6981 2025-09-05 20:25:34.12141+00 2025-09-05 20:25:34.121417+00 f t 8067 \N \N f f +6982 2025-09-05 20:27:37.340699+00 2025-09-05 20:27:37.340706+00 f t 8068 \N \N f f +6983 2025-09-05 20:32:56.286249+00 2025-09-05 20:32:56.286259+00 f t 8069 \N \N f f +6881 2025-09-04 13:14:21.103207+00 2025-09-04 13:09:00.300614+00 f t 88 \N \N f f +6882 2025-09-04 13:27:08.819762+00 2025-09-04 13:27:08.819775+00 f t 7967 \N \N f f +6883 2025-09-04 13:40:16.523929+00 2025-09-04 13:40:16.523937+00 f t 7968 \N \N f f +6884 2025-09-04 13:48:55.980925+00 2025-09-04 13:48:55.980938+00 f t 7969 \N \N f f +6885 2025-09-04 13:52:26.919772+00 2025-09-04 13:52:26.91978+00 f t 7970 \N \N f f +6886 2025-09-04 13:54:08.67475+00 2025-09-04 13:54:08.674765+00 f t 7971 \N \N f f +6887 2025-09-04 14:05:49.817534+00 2025-09-04 14:05:49.817544+00 f t 7972 \N \N f f +6888 2025-09-04 14:14:02.557953+00 2025-09-04 14:14:02.557965+00 f t 6869 \N \N f f +6889 2025-09-04 14:15:54.845446+00 2025-09-04 14:15:54.845454+00 f t 7973 \N \N f f +6890 2025-09-04 14:52:00.318175+00 2025-09-04 14:52:00.318184+00 f t 7974 \N \N f f +6891 2025-09-04 15:17:07.930375+00 2025-09-04 15:17:07.930387+00 f t 7975 \N \N f f +6892 2025-09-04 15:23:23.06535+00 2025-09-04 15:23:23.065359+00 f t 7976 \N \N f f +6893 2025-09-04 15:25:46.464614+00 2025-09-04 15:25:46.46462+00 f t 7367 \N \N f f +6894 2025-09-04 15:49:01.26373+00 2025-09-04 15:49:01.263739+00 f t 7977 \N \N f f +6895 2025-09-04 15:58:15.246802+00 2025-09-04 15:58:15.246812+00 f t 7978 \N \N f f +6896 2025-09-04 16:07:51.602644+00 2025-09-04 16:07:51.602651+00 f t 7979 \N \N f f +6897 2025-09-04 16:41:48.415978+00 2025-09-04 16:41:48.415986+00 f t 7980 \N \N f f +6898 2025-09-04 16:50:01.419118+00 2025-09-04 16:50:01.419175+00 f t 7981 \N \N f f +6899 2025-09-04 16:57:49.09265+00 2025-09-04 16:57:49.092662+00 f t 7982 \N \N f f +6900 2025-09-04 16:58:16.398131+00 2025-09-04 16:58:16.398142+00 f t 7983 \N \N f f +6901 2025-09-04 17:13:07.505473+00 2025-09-04 17:13:07.505482+00 f t 7984 \N \N f f +6902 2025-09-04 17:15:52.414692+00 2025-09-04 17:15:52.414699+00 f t 7985 \N \N f f +6903 2025-09-04 17:30:09.871893+00 2025-09-04 17:30:09.871906+00 f t 7986 \N \N f f +6904 2025-09-04 17:32:10.518345+00 2025-09-04 17:32:10.518353+00 f t 7987 \N \N f f +6905 2025-09-04 17:56:27.45495+00 2025-09-04 17:56:27.45496+00 f t 7988 \N \N f f +6906 2025-09-04 17:59:20.265096+00 2025-09-04 17:59:20.265103+00 f t 7989 \N \N f f +6907 2025-09-04 18:02:30.271019+00 2025-09-04 18:02:30.271031+00 f t 7990 \N \N f f +6908 2025-09-04 18:02:56.915616+00 2025-09-04 18:02:56.915623+00 f t 7991 \N \N f f +6909 2025-09-04 18:03:22.576198+00 2025-09-04 18:03:22.57621+00 f t 7992 \N \N f f +6910 2025-09-04 18:06:26.130479+00 2025-09-04 18:06:26.130486+00 f t 7993 \N \N f f +6911 2025-09-04 18:23:08.924678+00 2025-09-04 18:23:08.924687+00 f t 7994 \N \N f f +6912 2025-09-04 18:35:43.455377+00 2025-09-04 18:35:43.455386+00 f t 7995 \N \N f f +6913 2025-09-04 18:50:09.645711+00 2025-09-04 18:50:09.645724+00 f t 7996 \N \N f f +6914 2025-09-04 19:08:33.473567+00 2025-09-04 19:08:33.473575+00 f t 7997 \N \N f f +6915 2025-09-04 19:08:57.737147+00 2025-09-04 19:08:57.737157+00 f t 7998 \N \N f f +6916 2025-09-04 19:12:07.431353+00 2025-09-04 19:12:07.431362+00 f t 7999 \N \N f f +6917 2025-09-04 20:00:11.045975+00 2025-09-04 20:00:11.04599+00 f t 8000 \N \N f f +6918 2025-09-04 20:37:36.826578+00 2025-09-04 20:37:36.826585+00 f t 8001 \N \N f f +6919 2025-09-04 20:37:41.591515+00 2025-09-04 20:37:41.591523+00 f t 8002 \N \N f f +6920 2025-09-04 20:38:24.272537+00 2025-09-04 20:38:24.272545+00 f t 8003 \N \N f f +6921 2025-09-04 22:39:12.45508+00 2025-09-04 22:39:12.455086+00 f t 8004 \N \N f f +6922 2025-09-04 22:47:01.101958+00 2025-09-04 22:47:01.101966+00 f t 8005 \N \N f f +6923 2025-09-04 23:07:00.214202+00 2025-09-04 23:07:00.214215+00 f t 8006 \N \N f f +6924 2025-09-04 23:24:33.439279+00 2025-09-04 23:24:33.43929+00 f t 8007 \N \N f f +6925 2025-09-04 23:52:33.52445+00 2025-09-04 23:52:33.524457+00 f t 8008 \N \N f f +6926 2025-09-05 00:02:34.898587+00 2025-09-05 00:02:34.898599+00 f t 8009 \N \N f f +6927 2025-09-05 00:43:50.338384+00 2025-09-05 00:43:50.338392+00 f t 8010 \N \N f f +6928 2025-09-05 00:51:13.592151+00 2025-09-05 00:51:13.592159+00 f t 8011 \N \N f f +6929 2025-09-05 01:19:45.576778+00 2025-09-05 01:19:45.576791+00 f t 8012 \N \N f f +6930 2025-09-05 01:36:49.566115+00 2025-09-05 01:36:49.566122+00 f t 8013 \N \N f f +6931 2025-09-05 02:04:41.030632+00 2025-09-05 02:04:41.030639+00 f t 8014 \N \N f f +6932 2025-09-05 02:22:25.516263+00 2025-09-05 02:22:25.516271+00 f t 8015 \N \N f f +6933 2025-09-05 02:35:07.848595+00 2025-09-05 02:35:07.848602+00 f t 8016 \N \N f f +6934 2025-09-05 03:16:18.203981+00 2025-09-05 03:16:18.20399+00 f t 8017 \N \N f f +6935 2025-09-05 03:19:51.751366+00 2025-09-05 03:19:51.751375+00 f t 8018 \N \N f f +6936 2025-09-05 03:24:04.415764+00 2025-09-05 03:24:04.415775+00 f t 8019 \N \N f f +6937 2025-09-05 04:02:01.404308+00 2025-09-05 04:02:01.404318+00 f t 8020 \N \N f f +6938 2025-09-05 04:02:55.76224+00 2025-09-05 04:02:55.762248+00 f t 8021 \N \N f f +6939 2025-09-05 05:07:35.598+00 2025-09-05 05:07:35.598007+00 f t 8022 \N \N f f +6940 2025-09-05 08:59:38.903456+00 2025-09-05 08:59:38.903463+00 f t 8023 \N \N f f +6941 2025-09-05 10:13:01.864682+00 2025-09-05 10:13:01.864696+00 f t 8024 \N \N f f +6942 2025-09-05 10:43:00.615791+00 2025-09-05 10:43:00.615802+00 f t 8025 \N \N f f +6943 2025-09-05 11:11:15.990082+00 2025-09-05 11:11:15.99009+00 f t 8026 \N \N f f +6944 2025-09-05 11:23:34.031041+00 2025-09-05 11:23:34.03105+00 f t 8027 \N \N f f +6945 2025-09-05 11:34:07.150603+00 2025-09-05 11:34:07.150609+00 f t 8028 \N \N f f +6946 2025-09-05 12:04:17.726271+00 2025-09-05 12:04:17.726284+00 f t 8029 \N \N f f +6947 2025-09-05 12:19:46.77336+00 2025-09-05 12:19:46.77337+00 f t 8030 \N \N f f +6948 2025-09-05 12:38:11.068714+00 2025-09-05 12:33:38.834721+00 f t 8031 \N \N f f +6949 2025-09-05 12:39:11.610754+00 2025-09-05 12:39:11.610762+00 f t 8032 \N \N f f +6950 2025-09-05 12:49:04.400088+00 2025-09-05 12:49:04.400097+00 f t 8033 \N \N f f +6951 2025-09-05 12:59:13.724964+00 2025-09-05 12:59:13.724976+00 f t 8034 \N \N f f +6952 2025-09-05 13:05:27.141072+00 2025-09-05 13:05:27.141081+00 f t 8035 \N \N f f +6953 2025-09-05 13:52:47.848736+00 2025-09-05 13:52:47.848749+00 f t 8037 \N \N f f +6954 2025-09-05 14:04:25.636368+00 2025-09-05 14:04:25.636377+00 f t 8038 \N \N f f +6955 2025-09-05 14:16:46.528437+00 2025-09-05 14:16:46.528444+00 f t 8039 \N \N f f +6956 2025-09-05 14:26:52.590746+00 2025-09-05 14:26:52.590754+00 f t 8040 \N \N f f +6957 2025-09-05 14:43:38.526745+00 2025-09-05 14:43:38.526753+00 f t 8041 \N \N f f +6958 2025-09-05 15:04:21.816134+00 2025-09-05 15:04:21.81614+00 f t 8042 \N \N f f +6959 2025-09-05 15:06:21.239195+00 2025-09-05 15:06:21.239204+00 f t 8043 \N \N f f +6960 2025-09-05 15:10:52.692113+00 2025-09-05 15:10:52.69212+00 f t 8044 \N \N f f +6961 2025-09-05 15:23:36.927966+00 2025-09-05 15:23:36.927972+00 f t 8045 \N \N f f +6962 2025-09-05 15:24:30.49619+00 2025-09-05 15:24:30.496199+00 f t 8046 \N \N f f +6963 2025-09-05 16:17:45.706002+00 2025-09-05 16:17:45.706014+00 f t 8048 \N \N f f +6964 2025-09-05 16:27:37.078071+00 2025-09-05 16:27:37.078082+00 f t 8049 \N \N f f +6965 2025-09-05 16:46:26.026339+00 2025-09-05 16:46:26.026347+00 f t 8050 \N \N f f +6966 2025-09-05 16:48:57.925001+00 2025-09-05 16:48:57.925008+00 f t 8051 \N \N f f +6967 2025-09-05 17:00:57.776429+00 2025-09-05 17:00:57.776439+00 f t 8052 \N \N f f +6968 2025-09-05 17:11:27.772295+00 2025-09-05 17:11:27.772304+00 f t 8053 \N \N f f +6969 2025-09-05 17:13:49.514397+00 2025-09-05 17:13:49.514409+00 f t 8054 \N \N f f +6970 2025-09-05 17:19:58.116343+00 2025-09-05 17:19:58.116351+00 f t 8055 \N \N f f +6971 2025-09-05 18:11:23.514732+00 2025-09-05 18:11:23.514745+00 f t 8056 \N \N f f +6972 2025-09-05 18:12:50.399509+00 2025-09-05 18:12:50.399518+00 f t 8057 \N \N f f +6973 2025-09-05 18:20:34.320756+00 2025-09-05 18:20:34.320764+00 f t 8058 \N \N f f +6974 2025-09-05 18:20:34.788189+00 2025-09-05 18:20:34.788199+00 f t 8059 \N \N f f +6975 2025-09-05 18:41:52.869304+00 2025-09-05 18:41:52.869314+00 f t 8060 \N \N f f +6976 2025-09-05 18:49:19.182391+00 2025-09-05 18:49:19.182403+00 f t 8061 \N \N f f +6977 2025-09-05 18:53:44.684687+00 2025-09-05 18:53:44.684699+00 f t 8062 \N \N f f +6978 2025-09-05 19:04:49.571216+00 2025-09-05 19:04:49.571222+00 f t 8063 \N \N f f +6984 2025-09-05 20:44:18.852548+00 2025-09-05 20:44:18.85256+00 f t 8070 \N \N f f +6985 2025-09-05 21:31:39.956406+00 2025-09-05 21:31:39.956418+00 f t 8072 \N \N f f +6986 2025-09-05 22:23:31.07823+00 2025-09-05 22:23:31.078237+00 f t 8073 \N \N f f +6987 2025-09-05 23:11:19.248143+00 2025-09-05 23:11:19.248153+00 f t 8074 \N \N f f +6988 2025-09-05 23:23:54.469465+00 2025-09-05 23:23:54.469476+00 f t 8075 \N \N f f +6989 2025-09-05 23:25:45.138319+00 2025-09-05 23:25:45.138327+00 f t 8076 \N \N f f +6990 2025-09-05 23:27:21.912426+00 2025-09-05 23:27:21.912433+00 f t 8077 \N \N f f +6991 2025-09-05 23:27:41.525752+00 2025-09-05 23:27:41.525759+00 f t 8078 \N \N f f +6992 2025-09-05 23:29:23.156589+00 2025-09-05 23:29:23.156596+00 f t 8079 \N \N f f +6993 2025-09-05 23:42:52.302952+00 2025-09-05 23:42:52.30296+00 f t 8080 \N \N f f +6994 2025-09-06 00:04:21.767256+00 2025-09-06 00:04:21.767266+00 f t 8081 \N \N f f +6995 2025-09-06 00:06:15.079639+00 2025-09-06 00:06:15.07965+00 f t 8082 \N \N f f +6996 2025-09-06 00:32:23.506301+00 2025-09-06 00:32:23.506309+00 f t 8083 \N \N f f +6997 2025-09-06 00:38:35.157789+00 2025-09-06 00:38:35.157796+00 f t 8084 \N \N f f +6998 2025-09-06 00:39:43.247354+00 2025-09-06 00:39:43.24736+00 f t 8085 \N \N f f +6999 2025-09-06 01:16:44.907211+00 2025-09-06 01:16:44.90722+00 f t 8086 \N \N f f +7000 2025-09-06 01:20:25.579894+00 2025-09-06 01:20:25.579902+00 f t 8087 \N \N f f +7001 2025-09-06 01:40:57.302532+00 2025-09-06 01:40:57.30254+00 f t 8088 \N \N f f +7101 2025-09-08 14:32:24.348649+00 2025-09-08 14:32:24.348659+00 f t 8191 \N \N f f +7102 2025-09-08 14:38:28.281155+00 2025-09-08 14:38:28.281163+00 f t 8192 \N \N f f +7002 2025-09-06 02:36:11.089042+00 2025-09-06 02:25:00.506732+00 f t 7997 \N \N f f +7003 2025-09-06 03:46:47.398939+00 2025-09-06 03:46:47.398952+00 f t 8089 \N \N f f +7004 2025-09-06 03:47:13.63853+00 2025-09-06 03:47:13.638539+00 f t 8090 \N \N f f +7005 2025-09-06 03:48:34.178285+00 2025-09-06 03:48:34.178296+00 f t 8091 \N \N f f +7006 2025-09-06 04:25:51.573037+00 2025-09-06 04:25:51.573045+00 f t 8092 \N \N f f +7007 2025-09-06 06:14:15.654056+00 2025-09-06 06:14:15.654064+00 f t 8093 \N \N f f +7008 2025-09-06 07:39:43.983951+00 2025-09-06 07:39:43.983963+00 f t 8094 \N \N f f +7009 2025-09-06 13:10:15.982191+00 2025-09-06 13:10:15.982204+00 f t 8095 \N \N f f +7010 2025-09-06 13:16:58.831222+00 2025-09-06 13:16:58.831234+00 f t 8096 \N \N f f +7011 2025-09-06 13:57:30.212368+00 2025-09-06 13:57:30.212376+00 f t 8097 \N \N f f +7012 2025-09-06 14:08:10.516631+00 2025-09-06 14:08:10.51664+00 f t 8098 \N \N f f +7013 2025-09-06 14:10:47.223119+00 2025-09-06 14:10:47.223165+00 f t 8099 \N \N f f +7014 2025-09-06 14:11:04.016619+00 2025-09-06 14:11:04.016631+00 f t 8100 \N \N f f +7015 2025-09-06 14:13:22.816221+00 2025-09-06 14:13:22.816229+00 f t 8101 \N \N f f +7016 2025-09-06 14:18:33.408257+00 2025-09-06 14:18:33.408264+00 f t 8102 \N \N f f +7017 2025-09-06 14:26:55.553569+00 2025-09-06 14:26:55.553576+00 f t 8103 \N \N f f +7018 2025-09-06 14:40:06.758558+00 2025-09-06 14:40:06.758568+00 f t 8104 \N \N f f +7019 2025-09-06 14:57:59.575096+00 2025-09-06 14:57:59.575102+00 f t 8105 \N \N f f +7020 2025-09-06 15:32:37.066333+00 2025-09-06 15:32:37.066341+00 f t 8107 \N \N f f +7021 2025-09-06 15:42:23.577079+00 2025-09-06 15:42:23.577087+00 f t 8108 \N \N f f +7022 2025-09-06 15:55:22.731659+00 2025-09-06 15:55:22.731668+00 f t 8109 \N \N f f +7023 2025-09-06 15:56:39.08785+00 2025-09-06 15:56:39.08786+00 f t 8110 \N \N f f +7024 2025-09-06 16:17:55.942377+00 2025-09-06 16:17:55.942384+00 f t 8111 \N \N f f +7025 2025-09-06 16:31:30.339582+00 2025-09-06 16:31:30.339589+00 f t 8112 \N \N f f +7026 2025-09-06 16:34:39.070657+00 2025-09-06 16:34:39.070663+00 f t 8113 \N \N f f +7027 2025-09-06 16:57:40.732566+00 2025-09-06 16:57:40.732574+00 f t 8114 \N \N f f +7028 2025-09-06 17:30:52.704169+00 2025-09-06 17:30:52.704176+00 f t 8115 \N \N f f +7029 2025-09-06 17:43:29.031732+00 2025-09-06 17:43:29.03174+00 f t 8116 \N \N f f +7030 2025-09-06 18:29:32.337992+00 2025-09-06 18:29:32.338+00 f t 8117 \N \N f f +7031 2025-09-06 18:38:58.754823+00 2025-09-06 18:38:58.754831+00 f t 8118 \N \N f f +7032 2025-09-06 19:05:23.020488+00 2025-09-06 19:05:23.020495+00 f t 8119 \N \N f f +7033 2025-09-06 19:06:16.166489+00 2025-09-06 19:06:16.166498+00 f t 8120 \N \N f f +7034 2025-09-06 19:15:17.271632+00 2025-09-06 19:15:17.271655+00 f t 8121 \N \N f f +7035 2025-09-06 19:49:04.573218+00 2025-09-06 19:49:04.573228+00 f t 8122 \N \N f f +7036 2025-09-06 21:29:41.763607+00 2025-09-06 21:29:41.763617+00 f t 8123 \N \N f f +7037 2025-09-06 22:01:42.053815+00 2025-09-06 22:01:42.053825+00 f t 8124 \N \N f f +7038 2025-09-06 22:19:13.919184+00 2025-09-06 22:19:13.919192+00 f t 8125 \N \N f f +7039 2025-09-06 22:19:58.5078+00 2025-09-06 22:19:58.507812+00 f t 8126 \N \N f f +7040 2025-09-06 22:30:21.605783+00 2025-09-06 22:30:21.605795+00 f t 8127 \N \N f f +7041 2025-09-06 22:37:41.346257+00 2025-09-06 22:37:41.346264+00 f t 8128 \N \N f f +7042 2025-09-06 22:49:26.734618+00 2025-09-06 22:49:26.734626+00 f t 8129 \N \N f f +7043 2025-09-06 23:16:44.983285+00 2025-09-06 23:16:44.983293+00 f t 8130 \N \N f f +7044 2025-09-06 23:37:39.952685+00 2025-09-06 23:37:39.952694+00 f t 8131 \N \N f f +7045 2025-09-07 00:05:31.014003+00 2025-09-07 00:05:31.014012+00 f t 8132 \N \N f f +7046 2025-09-07 00:11:50.530934+00 2025-09-07 00:11:50.530945+00 f t 8133 \N \N f f +7047 2025-09-07 00:24:21.033702+00 2025-09-07 00:24:21.033709+00 f t 8134 \N \N f f +7048 2025-09-07 00:29:19.707174+00 2025-09-07 00:29:19.707182+00 f t 8135 \N \N f f +7049 2025-09-07 03:20:39.624162+00 2025-09-07 03:20:39.624168+00 f t 8136 \N \N f f +7050 2025-09-07 03:22:59.100257+00 2025-09-07 03:22:59.100265+00 f t 8137 \N \N f f +7051 2025-09-07 03:28:15.678204+00 2025-09-07 03:28:15.678213+00 f t 8138 \N \N f f +7052 2025-09-07 04:17:42.072859+00 2025-09-07 04:17:42.07287+00 f t 8139 \N \N f f +7053 2025-09-07 04:22:25.921477+00 2025-09-07 04:22:25.921483+00 f t 8140 \N \N f f +7054 2025-09-07 04:42:49.178973+00 2025-09-07 04:42:49.178981+00 f t 8141 \N \N f f +7055 2025-09-07 06:15:25.249854+00 2025-09-07 06:15:25.249861+00 f t 8142 \N \N f f +7056 2025-09-07 11:00:15.061877+00 2025-09-07 11:00:15.061893+00 f t 8143 \N \N f f +7057 2025-09-07 12:54:20.197697+00 2025-09-07 12:54:20.197709+00 f t 8144 \N \N f f +7058 2025-09-07 13:49:10.931879+00 2025-09-07 13:49:10.931888+00 f t 8145 \N \N f f +7059 2025-09-07 13:53:11.927756+00 2025-09-07 13:53:11.92777+00 f t 8146 \N \N f f +7060 2025-09-07 13:58:01.874418+00 2025-09-07 13:58:01.874432+00 f t 8147 \N \N f f +7061 2025-09-07 15:14:55.597077+00 2025-09-07 15:14:55.597085+00 f t 8148 \N \N f f +7062 2025-09-07 15:32:53.108813+00 2025-09-07 15:32:53.10882+00 f t 8149 \N \N f f +7063 2025-09-07 15:46:54.156102+00 2025-09-07 15:46:54.156114+00 f t 8150 \N \N f f +7064 2025-09-07 15:52:00.773472+00 2025-09-07 15:52:00.773482+00 f t 8151 \N \N f f +7065 2025-09-07 15:52:56.414301+00 2025-09-07 15:52:56.414309+00 f t 8152 \N \N f f +7066 2025-09-07 15:53:42.824047+00 2025-09-07 15:53:42.824055+00 f t 8153 \N \N f f +7067 2025-09-07 17:02:12.338182+00 2025-09-07 17:02:12.338192+00 f t 8154 \N \N f f +7068 2025-09-07 17:58:19.608419+00 2025-09-07 17:58:19.608426+00 f t 8155 \N \N f f +7069 2025-09-07 18:11:52.059845+00 2025-09-07 18:11:52.059852+00 f t 8156 \N \N f f +7070 2025-09-07 18:18:27.948034+00 2025-09-07 18:18:27.948045+00 f t 8157 \N \N f f +7071 2025-09-07 19:02:45.489986+00 2025-09-07 19:02:45.489993+00 f t 8158 \N \N f f +7072 2025-09-07 19:02:55.894242+00 2025-09-07 19:02:55.894251+00 f t 8159 \N \N f f +7073 2025-09-07 19:05:02.14243+00 2025-09-07 19:05:02.14244+00 f t 8160 \N \N f f +7074 2025-09-07 19:30:38.797213+00 2025-09-07 19:30:38.797223+00 f t 8162 \N \N f f +7075 2025-09-07 19:50:18.130242+00 2025-09-07 19:50:18.13025+00 f t 8163 \N \N f f +7076 2025-09-07 19:53:24.504532+00 2025-09-07 19:53:24.50454+00 f t 8164 \N \N f f +7077 2025-09-07 20:00:05.022552+00 2025-09-07 20:00:05.022565+00 f t 8165 \N \N f f +7078 2025-09-07 20:14:58.785198+00 2025-09-07 20:14:58.785204+00 f t 8166 \N \N f f +7079 2025-09-07 20:25:59.458114+00 2025-09-07 20:25:59.458121+00 f t 8167 \N \N f f +7080 2025-09-07 22:16:06.232323+00 2025-09-07 22:16:06.232334+00 f t 8170 \N \N f f +7081 2025-09-07 22:42:57.371997+00 2025-09-07 22:42:57.372009+00 f t 8171 \N \N f f +7082 2025-09-07 23:17:47.760909+00 2025-09-07 23:17:47.760916+00 f t 8172 \N \N f f +7083 2025-09-08 00:41:14.87025+00 2025-09-08 00:41:14.870259+00 f t 8173 \N \N f f +7084 2025-09-08 00:51:45.143013+00 2025-09-08 00:51:45.143021+00 f t 8174 \N \N f f +7085 2025-09-08 01:25:58.924293+00 2025-09-08 01:25:58.924301+00 f t 8175 \N \N f f +7086 2025-09-08 01:37:41.434101+00 2025-09-08 01:37:41.434111+00 f t 8176 \N \N f f +7087 2025-09-08 03:32:24.658016+00 2025-09-08 03:32:24.658023+00 f t 8177 \N \N f f +7088 2025-09-08 04:08:23.12255+00 2025-09-08 04:08:23.122558+00 f t 8178 \N \N f f +7089 2025-09-08 07:53:37.494737+00 2025-09-08 07:53:37.494746+00 f t 8179 \N \N f f +7090 2025-09-08 10:28:25.911326+00 2025-09-08 10:23:35.241134+00 f t 8180 \N \N f f +7091 2025-09-08 10:33:36.105101+00 2025-09-08 10:33:36.105108+00 f t 8181 \N \N f f +7092 2025-09-08 10:35:25.556426+00 2025-09-08 10:35:25.556434+00 f t 8182 \N \N f f +7093 2025-09-08 10:49:45.119482+00 2025-09-08 10:46:45.96363+00 f t 8183 \N \N f f +7094 2025-09-08 11:22:59.687887+00 2025-09-08 11:22:59.687895+00 f t 8184 \N \N f f +7095 2025-09-08 11:59:40.527179+00 2025-09-08 11:59:40.527188+00 f t 8185 \N \N f f +7096 2025-09-08 12:10:18.573706+00 2025-09-08 12:10:18.573717+00 f t 8186 \N \N f f +7097 2025-09-08 12:20:28.968525+00 2025-09-08 12:20:28.968536+00 f t 8187 \N \N f f +7098 2025-09-08 12:32:17.029674+00 2025-09-08 12:32:17.02968+00 f t 8188 \N \N f f +7099 2025-09-08 12:47:45.002435+00 2025-09-08 12:47:45.002486+00 f t 8189 \N \N f f +7100 2025-09-08 13:32:56.990501+00 2025-09-08 13:32:56.99051+00 f t 8190 \N \N f f +7103 2025-09-08 14:40:16.21318+00 2025-09-08 14:40:16.213192+00 f t 8193 \N \N f f +7104 2025-09-08 14:42:19.616434+00 2025-09-08 14:42:19.616443+00 f t 8194 \N \N f f +7105 2025-09-08 15:01:16.166669+00 2025-09-08 15:01:16.16668+00 f t 8195 \N \N f f +7106 2025-09-08 15:07:19.147592+00 2025-09-08 15:07:19.1476+00 f t 8196 \N \N f f +7107 2025-09-08 15:20:08.861629+00 2025-09-08 15:20:08.861641+00 f t 8197 \N \N f f +7108 2025-09-08 15:37:00.631667+00 2025-09-08 15:37:00.631681+00 f t 8198 \N \N f f +7109 2025-09-08 15:54:26.184697+00 2025-09-08 15:54:26.184706+00 f t 8200 \N \N f f +7110 2025-09-08 16:18:14.189435+00 2025-09-08 16:18:14.189443+00 f t 8201 \N \N f f +7111 2025-09-08 16:45:22.680438+00 2025-09-08 16:45:22.680445+00 f t 8202 \N \N f f +7112 2025-09-08 16:57:52.716098+00 2025-09-08 16:57:52.716108+00 f t 8204 \N \N f f +7113 2025-09-08 16:58:42.70318+00 2025-09-08 16:58:42.703189+00 f t 8205 \N \N f f +7114 2025-09-08 17:00:57.99434+00 2025-09-08 17:00:57.994349+00 f t 8206 \N \N f f +7115 2025-09-08 17:02:01.531251+00 2025-09-08 17:02:01.53126+00 f t 8207 \N \N f f +7116 2025-09-08 17:02:41.273678+00 2025-09-08 17:02:41.273686+00 f t 8208 \N \N f f +7117 2025-09-08 17:14:35.000922+00 2025-09-08 17:14:35.000932+00 f t 8209 \N \N f f +7118 2025-09-08 17:36:01.267035+00 2025-09-08 17:36:01.267048+00 f t 8210 \N \N f f +7119 2025-09-08 17:55:00.486293+00 2025-09-08 17:55:00.486301+00 f t 8211 \N \N f f +7120 2025-09-08 18:08:24.875502+00 2025-09-08 18:08:24.875512+00 f t 8212 \N \N f f +7121 2025-09-08 18:48:23.613059+00 2025-09-08 18:48:23.613068+00 f t 8213 \N \N f f +7122 2025-09-08 18:50:22.621871+00 2025-09-08 18:50:22.62188+00 f t 8214 \N \N f f +7123 2025-09-08 18:52:41.736601+00 2025-09-08 18:52:41.736609+00 f t 8215 \N \N f f +7124 2025-09-08 18:55:14.920262+00 2025-09-08 18:55:14.92027+00 f t 8216 \N \N f f +7125 2025-09-08 18:58:09.413629+00 2025-09-08 18:58:09.413638+00 f t 8217 \N \N f f +7126 2025-09-08 19:22:46.458447+00 2025-09-08 19:22:46.458456+00 f t 8218 \N \N f f +7127 2025-09-08 19:36:37.385922+00 2025-09-08 19:36:37.385933+00 f t 8219 \N \N f f +7128 2025-09-08 19:47:20.81697+00 2025-09-08 19:47:20.816978+00 f t 8220 \N \N f f +7129 2025-09-08 19:48:47.467092+00 2025-09-08 19:48:47.467101+00 f t 8221 \N \N f f +7130 2025-09-08 19:51:36.242995+00 2025-09-08 19:51:36.243002+00 f t 8222 \N \N f f +7131 2025-09-08 19:54:26.1928+00 2025-09-08 19:54:26.192808+00 f t 8223 \N \N f f +7132 2025-09-08 19:55:51.022913+00 2025-09-08 19:55:51.022921+00 f t 8224 \N \N f f +7133 2025-09-08 20:02:32.409293+00 2025-09-08 20:02:32.409303+00 f t 8225 \N \N f f +7134 2025-09-08 20:14:40.532685+00 2025-09-08 20:14:40.532697+00 f t 8226 \N \N f f +7135 2025-09-08 20:20:40.595877+00 2025-09-08 20:20:40.59589+00 f t 8227 \N \N f f +7136 2025-09-08 20:42:07.724356+00 2025-09-08 20:42:07.724363+00 f t 8228 \N \N f f +7137 2025-09-08 21:07:25.076954+00 2025-09-08 21:07:25.07696+00 f t 8229 \N \N f f +7138 2025-09-08 21:12:16.091019+00 2025-09-08 21:12:16.091027+00 f t 8230 \N \N f f +7139 2025-09-08 21:31:29.976163+00 2025-09-08 21:31:29.97617+00 f t 8231 \N \N f f +7140 2025-09-08 21:45:51.451331+00 2025-09-08 21:45:51.451339+00 f t 638 \N \N f f +7141 2025-09-08 22:21:58.030259+00 2025-09-08 22:21:58.03027+00 f t 8232 \N \N f f +7142 2025-09-08 23:06:57.964729+00 2025-09-08 23:06:57.964737+00 f t 8233 \N \N f f +7143 2025-09-08 23:20:52.183501+00 2025-09-08 23:20:52.183512+00 f t 8234 \N \N f f +7144 2025-09-08 23:31:05.163487+00 2025-09-08 23:31:05.163499+00 f t 8235 \N \N f f +7145 2025-09-08 23:32:20.083008+00 2025-09-08 23:32:20.08302+00 f t 8236 \N \N f f +7146 2025-09-08 23:37:36.451476+00 2025-09-08 23:37:36.451486+00 f t 8237 \N \N f f +7147 2025-09-08 23:41:21.722454+00 2025-09-08 23:41:21.722462+00 f t 8238 \N \N f f +7148 2025-09-08 23:50:34.82283+00 2025-09-08 23:50:34.822841+00 f t 8239 \N \N f f +7149 2025-09-09 00:20:03.462356+00 2025-09-09 00:20:03.462371+00 f t 8240 \N \N f f +7150 2025-09-09 00:21:59.932086+00 2025-09-09 00:21:59.932095+00 f t 8241 \N \N f f +7151 2025-09-09 00:23:55.911037+00 2025-09-09 00:23:55.911044+00 f t 8242 \N \N f f +7152 2025-09-09 00:26:44.09863+00 2025-09-09 00:26:44.098642+00 f t 8243 \N \N f f +7153 2025-09-09 00:29:19.218883+00 2025-09-09 00:29:19.218891+00 f t 8244 \N \N f f +7154 2025-09-09 00:38:38.931592+00 2025-09-09 00:38:38.9316+00 f t 8245 \N \N f f +7155 2025-09-09 00:48:06.202957+00 2025-09-09 00:48:06.202967+00 f t 8246 \N \N f f +7156 2025-09-09 00:58:14.954108+00 2025-09-09 00:58:14.954115+00 f t 8247 \N \N f f +7157 2025-09-09 01:03:24.858831+00 2025-09-09 01:03:24.858841+00 f t 8248 \N \N f f +7158 2025-09-09 01:03:57.756131+00 2025-09-09 01:03:57.756138+00 f t 8249 \N \N f f +7159 2025-09-09 01:06:03.404606+00 2025-09-09 01:06:03.404615+00 f t 8250 \N \N f f +7160 2025-09-09 01:20:14.115636+00 2025-09-09 01:20:14.115645+00 f t 8251 \N \N f f +7161 2025-09-09 01:46:24.276139+00 2025-09-09 01:46:24.276147+00 f t 8252 \N \N f f +7162 2025-09-09 01:58:24.221936+00 2025-09-09 01:58:24.221945+00 f t 8253 \N \N f f +7163 2025-09-09 02:18:34.377617+00 2025-09-09 02:18:34.377624+00 f t 8254 \N \N f f +7164 2025-09-09 02:28:36.922412+00 2025-09-09 02:28:36.922419+00 f t 8255 \N \N f f +7165 2025-09-09 02:34:51.003331+00 2025-09-09 02:34:51.003338+00 f t 8256 \N \N f f +7166 2025-09-09 02:36:12.832991+00 2025-09-09 02:36:12.832997+00 f t 8257 \N \N f f +7167 2025-09-09 02:46:53.616305+00 2025-09-09 02:46:53.616312+00 f t 8258 \N \N f f +7168 2025-09-09 02:47:24.850218+00 2025-09-09 02:47:24.850225+00 f t 8259 \N \N f f +7169 2025-09-09 03:08:17.541986+00 2025-09-09 03:08:17.541994+00 f t 8260 \N \N f f +7170 2025-09-09 03:13:21.010551+00 2025-09-09 03:13:21.010559+00 f t 8261 \N \N f f +7171 2025-09-09 03:14:33.545448+00 2025-09-09 03:14:33.545457+00 f t 8262 \N \N f f +7172 2025-09-09 03:15:12.277406+00 2025-09-09 03:15:12.277418+00 f t 8263 \N \N f f +7173 2025-09-09 03:18:25.158823+00 2025-09-09 03:18:25.158829+00 f t 8264 \N \N f f +7174 2025-09-09 03:25:46.52621+00 2025-09-09 03:23:03.169331+00 f t 8265 \N \N f f +7175 2025-09-09 03:26:57.068865+00 2025-09-09 03:26:57.068871+00 f t 8266 \N \N f f +7176 2025-09-09 03:29:25.624281+00 2025-09-09 03:29:25.624289+00 f t 8267 \N \N f f +7177 2025-09-09 03:29:25.90019+00 2025-09-09 03:29:25.900196+00 f t 8268 \N \N f f +7178 2025-09-09 03:32:00.016013+00 2025-09-09 03:32:00.016025+00 f t 8269 \N \N f f +7179 2025-09-09 05:00:50.741651+00 2025-09-09 05:00:50.741663+00 f t 8270 \N \N f f +7180 2025-09-09 05:17:17.957473+00 2025-09-09 05:17:17.957481+00 f t 8271 \N \N f f +7181 2025-09-09 07:05:08.472758+00 2025-09-09 07:05:08.472767+00 f t 8272 \N \N f f +7182 2025-09-09 09:25:59.067389+00 2025-09-09 09:25:59.067399+00 f t 8273 \N \N f f +7183 2025-09-09 09:53:11.904793+00 2025-09-09 09:53:11.904803+00 f t 8274 \N \N f f +7184 2025-09-09 09:58:22.658431+00 2025-09-09 09:58:22.658438+00 f t 8275 \N \N f f +7185 2025-09-09 11:19:23.231572+00 2025-09-09 11:19:23.231584+00 f t 8276 \N \N f f +7186 2025-09-09 11:20:38.899558+00 2025-09-09 11:20:38.899572+00 f t 8277 \N \N f f +7188 2025-09-09 12:58:30.616912+00 2025-09-09 12:58:30.616924+00 f t 8279 \N \N f f +7189 2025-09-09 13:05:57.88409+00 2025-09-09 13:05:57.884099+00 f t 8280 \N \N f f +7190 2025-09-09 13:10:08.109947+00 2025-09-09 13:10:08.10996+00 f t 8281 \N \N f f +7191 2025-09-09 13:11:56.196564+00 2025-09-09 13:11:56.196572+00 f t 8282 \N \N f f +7192 2025-09-09 13:48:10.280361+00 2025-09-09 13:48:10.28037+00 f t 8283 \N \N f f +7193 2025-09-09 13:49:43.38579+00 2025-09-09 13:49:43.385804+00 f t 8284 \N \N f f +7187 2025-09-09 13:55:58.799013+00 2025-09-09 12:36:22.677258+00 f t 8278 \N \N f f +7194 2025-09-09 14:12:41.722257+00 2025-09-09 14:12:41.722269+00 f t 8285 \N \N f f +7195 2025-09-09 14:24:15.907237+00 2025-09-09 14:24:15.90725+00 f t 8286 \N \N f f +7196 2025-09-09 14:25:28.586642+00 2025-09-09 14:25:28.586657+00 f t 8287 \N \N f f +7197 2025-09-09 14:27:24.885459+00 2025-09-09 14:27:24.885472+00 f t 8288 \N \N f f +7198 2025-09-09 14:43:55.309976+00 2025-09-09 14:43:55.309985+00 f t 8289 \N \N f f +7199 2025-09-09 14:51:35.87316+00 2025-09-09 14:51:35.873167+00 f t 8290 \N \N f f +7200 2025-09-09 15:15:38.224885+00 2025-09-09 15:15:38.224895+00 f t 8291 \N \N f f +7201 2025-09-09 15:37:08.278682+00 2025-09-09 15:37:08.278689+00 f t 8292 \N \N f f +7202 2025-09-09 15:39:14.597999+00 2025-09-09 15:39:14.598008+00 f t 8293 \N \N f f +7203 2025-09-09 16:10:36.305375+00 2025-09-09 16:10:36.305383+00 f t 8294 \N \N f f +7204 2025-09-09 16:32:48.308597+00 2025-09-09 16:32:48.308606+00 f t 8295 \N \N f f +7205 2025-09-09 16:43:08.402171+00 2025-09-09 16:43:08.402179+00 f t 8296 \N \N f f +7206 2025-09-09 17:03:45.358267+00 2025-09-09 17:03:45.358276+00 f t 8297 \N \N f f +7207 2025-09-09 17:06:59.955919+00 2025-09-09 17:06:59.955931+00 f t 8298 \N \N f f +7208 2025-09-09 17:39:01.385214+00 2025-09-09 17:39:01.385228+00 f t 8299 \N \N f f +7209 2025-09-09 17:41:08.246116+00 2025-09-09 17:41:08.246124+00 f t 8300 \N \N f f +7210 2025-09-09 18:18:05.51924+00 2025-09-09 18:18:05.519253+00 f t 8301 \N \N f f +7211 2025-09-09 18:25:02.067043+00 2025-09-09 18:25:02.067057+00 f t 8302 \N \N f f +7212 2025-09-09 18:29:42.753864+00 2025-09-09 18:29:42.753874+00 f t 8303 \N \N f f +7213 2025-09-09 18:31:36.866027+00 2025-09-09 18:31:36.866039+00 f t 8304 \N \N f f +7214 2025-09-09 18:40:27.356602+00 2025-09-09 18:40:27.35661+00 f t 8305 \N \N f f +7215 2025-09-09 18:52:48.269737+00 2025-09-09 18:52:48.269749+00 f t 8306 \N \N f f +7216 2025-09-09 19:00:31.727613+00 2025-09-09 19:00:31.727621+00 f t 8307 \N \N f f +7217 2025-09-09 19:04:23.469261+00 2025-09-09 19:04:23.469269+00 f t 8308 \N \N f f +7218 2025-09-09 19:21:17.5772+00 2025-09-09 19:21:17.577207+00 f t 8311 \N \N f f +7219 2025-09-09 19:42:31.706696+00 2025-09-09 19:42:31.706704+00 f t 8312 \N \N f f +7220 2025-09-09 19:54:47.922442+00 2025-09-09 19:54:47.92245+00 f t 8313 \N \N f f +7221 2025-09-09 19:54:52.338739+00 2025-09-09 19:54:52.338747+00 f t 8314 \N \N f f +7222 2025-09-09 20:02:36.604091+00 2025-09-09 20:02:36.604102+00 f t 8315 \N \N f f +7223 2025-09-09 20:52:15.651933+00 2025-09-09 20:52:15.651942+00 f t 8316 \N \N f f +7224 2025-09-09 21:30:29.466146+00 2025-09-09 21:30:29.466156+00 f t 8317 \N \N f f +7225 2025-09-09 21:33:31.556953+00 2025-09-09 21:33:31.556961+00 f t 8318 \N \N f f +7226 2025-09-09 21:35:03.38603+00 2025-09-09 21:35:03.386045+00 f t 8319 \N \N f f +7227 2025-09-09 22:07:53.221307+00 2025-09-09 22:07:53.221314+00 f t 8320 \N \N f f +7228 2025-09-09 22:49:25.225852+00 2025-09-09 22:49:25.22586+00 f t 8321 \N \N f f +7229 2025-09-09 23:21:44.122565+00 2025-09-09 23:21:44.122576+00 f t 8322 \N \N f f +7230 2025-09-09 23:36:08.921147+00 2025-09-09 23:36:08.921157+00 f t 8323 \N \N f f +7231 2025-09-09 23:50:35.100995+00 2025-09-09 23:50:35.101004+00 f t 8324 \N \N f f +7232 2025-09-10 00:01:43.516371+00 2025-09-10 00:01:43.51638+00 f t 8325 \N \N f f +7233 2025-09-10 00:16:35.102688+00 2025-09-10 00:16:35.102699+00 f t 8326 \N \N f f +7234 2025-09-10 00:43:57.104155+00 2025-09-10 00:41:18.303527+00 f t 8327 \N \N f f +7235 2025-09-10 00:57:52.881836+00 2025-09-10 00:57:52.881844+00 f t 8328 \N \N f f +7236 2025-09-10 01:19:24.110166+00 2025-09-10 01:19:24.110173+00 f t 8329 \N \N f f +7237 2025-09-10 01:23:31.312366+00 2025-09-10 01:23:31.312375+00 f t 8330 \N \N f f +7238 2025-09-10 01:26:15.524354+00 2025-09-10 01:26:15.52436+00 f t 8331 \N \N f f +7239 2025-09-10 01:35:47.616709+00 2025-09-10 01:35:47.616716+00 f t 8332 \N \N f f +7240 2025-09-10 01:42:15.427246+00 2025-09-10 01:42:15.427253+00 f t 8333 \N \N f f +7241 2025-09-10 02:37:59.576561+00 2025-09-10 02:37:59.576569+00 f t 8334 \N \N f f +7242 2025-09-10 06:08:38.045603+00 2025-09-10 06:08:38.045611+00 f t 8335 \N \N f f +7243 2025-09-10 06:23:08.718132+00 2025-09-10 06:23:08.718141+00 f t 8336 \N \N f f +7244 2025-09-10 07:33:50.722675+00 2025-09-10 07:33:50.722682+00 f t 8337 \N \N f f +7245 2025-09-10 08:45:38.623169+00 2025-09-10 08:45:38.623176+00 f t 8338 \N \N f f +7246 2025-09-10 08:53:19.845329+00 2025-09-10 08:53:19.845336+00 f t 8339 \N \N f f +7247 2025-09-10 11:25:20.542594+00 2025-09-10 11:25:20.542602+00 f t 8340 \N \N f f +7248 2025-09-10 11:35:55.602058+00 2025-09-10 11:35:55.60207+00 f t 8341 \N \N f f +7249 2025-09-10 11:52:52.064829+00 2025-09-10 11:52:52.064836+00 f t 8342 \N \N f f +7250 2025-09-10 11:53:41.103336+00 2025-09-10 11:53:41.10335+00 f t 8343 \N \N f f +7251 2025-09-10 11:53:50.630474+00 2025-09-10 11:53:50.630481+00 f t 8344 \N \N f f +7252 2025-09-10 12:19:59.872332+00 2025-09-10 12:19:59.872341+00 f t 8345 \N \N f f +7253 2025-09-10 12:30:25.554364+00 2025-09-10 12:30:25.554372+00 f t 8346 \N \N f f +7254 2025-09-10 12:52:38.424057+00 2025-09-10 12:52:38.424066+00 f t 8347 \N \N f f +7255 2025-09-10 13:17:55.046805+00 2025-09-10 13:17:55.046812+00 f t 8348 \N \N f f +7256 2025-09-10 13:18:39.786948+00 2025-09-10 13:18:39.786957+00 f t 8349 \N \N f f +7257 2025-09-10 13:58:22.322561+00 2025-09-10 13:58:22.322568+00 f t 8350 \N \N f f +7258 2025-09-10 14:31:00.834458+00 2025-09-10 14:31:00.834468+00 f t 8351 \N \N f f +7259 2025-09-10 14:52:40.556626+00 2025-09-10 14:52:40.556641+00 f t 8352 \N \N f f +7260 2025-09-10 15:22:35.780231+00 2025-09-10 15:22:35.780242+00 f t 8354 \N \N f f +7261 2025-09-10 15:27:45.116561+00 2025-09-10 15:27:45.11657+00 f t 8355 \N \N f f +7262 2025-09-10 15:30:15.292003+00 2025-09-10 15:30:15.292015+00 f t 8356 \N \N f f +7263 2025-09-10 15:30:31.826352+00 2025-09-10 15:30:31.82636+00 f t 8357 \N \N f f +7264 2025-09-10 15:32:14.679231+00 2025-09-10 15:32:14.67924+00 f t 8358 \N \N f f +7265 2025-09-10 16:06:51.710819+00 2025-09-10 16:06:51.710827+00 f t 8359 \N \N f f +7266 2025-09-10 16:24:40.567334+00 2025-09-10 16:24:40.567341+00 f t 8360 \N \N f f +7267 2025-09-10 16:39:04.353048+00 2025-09-10 16:39:04.35306+00 f t 8361 \N \N f f +7268 2025-09-10 16:39:09.898783+00 2025-09-10 16:39:09.898792+00 f t 8362 \N \N f f +7269 2025-09-10 16:42:23.394041+00 2025-09-10 16:42:23.394049+00 f t 8363 \N \N f f +7270 2025-09-10 16:45:48.858876+00 2025-09-10 16:45:48.858882+00 f t 8364 \N \N f f +7271 2025-09-10 17:07:31.372069+00 2025-09-10 17:07:31.372076+00 f t 8365 \N \N f f +7272 2025-09-10 17:08:44.935657+00 2025-09-10 17:08:44.935669+00 f t 8366 \N \N f f +7273 2025-09-10 17:22:25.103971+00 2025-09-10 17:22:25.103982+00 f t 8367 \N \N f f +7274 2025-09-10 17:38:15.316791+00 2025-09-10 17:38:15.3168+00 f t 8368 \N \N f f +7275 2025-09-10 17:40:52.517888+00 2025-09-10 17:40:52.517895+00 f t 8369 \N \N f f +7276 2025-09-10 18:00:35.920518+00 2025-09-10 18:00:35.920528+00 f t 8370 \N \N f f +7277 2025-09-10 18:04:16.59134+00 2025-09-10 18:04:16.591349+00 f t 8371 \N \N f f +7278 2025-09-10 18:07:26.747459+00 2025-09-10 18:07:26.74747+00 f t 8372 \N \N f f +7279 2025-09-10 18:34:06.244048+00 2025-09-10 18:34:06.244062+00 f t 8373 \N \N f f +7280 2025-09-10 19:04:40.375021+00 2025-09-10 19:04:40.375029+00 f t 8374 \N \N f f +7281 2025-09-10 19:06:49.187297+00 2025-09-10 19:06:49.187305+00 f t 8375 \N \N f f +7282 2025-09-10 19:16:52.699095+00 2025-09-10 19:16:52.699103+00 f t 8376 \N \N f f +7283 2025-09-10 19:19:33.472729+00 2025-09-10 19:19:33.472737+00 f t 8377 \N \N f f +7284 2025-09-10 19:34:35.986161+00 2025-09-10 19:34:35.98617+00 f t 8379 \N \N f f +7285 2025-09-10 19:36:31.9586+00 2025-09-10 19:36:31.958606+00 f t 8380 \N \N f f +7286 2025-09-10 19:36:54.083519+00 2025-09-10 19:36:54.083527+00 f t 8381 \N \N f f +7287 2025-09-10 19:37:09.186091+00 2025-09-10 19:37:09.186101+00 f t 8382 \N \N f f +7288 2025-09-10 19:38:37.299572+00 2025-09-10 19:38:37.29958+00 f t 8383 \N \N f f +7289 2025-09-10 19:38:53.470726+00 2025-09-10 19:38:53.470734+00 f t 8384 \N \N f f +7290 2025-09-10 19:47:07.384921+00 2025-09-10 19:47:07.384928+00 f t 8385 \N \N f f +7291 2025-09-10 19:48:21.327114+00 2025-09-10 19:48:21.327124+00 f t 8386 \N \N f f +7292 2025-09-10 19:53:11.700021+00 2025-09-10 19:53:11.700029+00 f t 8387 \N \N f f +7293 2025-09-10 19:57:16.108061+00 2025-09-10 19:57:16.108068+00 f t 8388 \N \N f f +7294 2025-09-10 20:00:22.195885+00 2025-09-10 20:00:22.195899+00 f t 8389 \N \N f f +7295 2025-09-10 20:04:29.216375+00 2025-09-10 20:04:29.216383+00 f t 8390 \N \N f f +7296 2025-09-10 20:13:45.632367+00 2025-09-10 20:13:45.632374+00 f t 8391 \N \N f f +7297 2025-09-10 20:14:28.274934+00 2025-09-10 20:14:28.274944+00 f t 8392 \N \N f f +7298 2025-09-10 20:16:34.950874+00 2025-09-10 20:16:34.95088+00 f t 8393 \N \N f f +7299 2025-09-10 21:00:36.473631+00 2025-09-10 21:00:36.473639+00 f t 8395 \N \N f f +7300 2025-09-10 21:08:25.842546+00 2025-09-10 21:08:25.842556+00 f t 8397 \N \N f f +7301 2025-09-10 21:25:34.271212+00 2025-09-10 21:25:34.27122+00 f t 8398 \N \N f f +7302 2025-09-10 21:25:59.108306+00 2025-09-10 21:25:59.108319+00 f t 8399 \N \N f f +7303 2025-09-10 21:29:23.951826+00 2025-09-10 21:29:23.951835+00 f t 8400 \N \N f f +7304 2025-09-10 21:59:35.696632+00 2025-09-10 21:59:35.696642+00 f t 8401 \N \N f f +7305 2025-09-10 22:21:45.513617+00 2025-09-10 22:21:45.513625+00 f t 8402 \N \N f f +7306 2025-09-10 22:40:34.389945+00 2025-09-10 22:40:34.389951+00 f t 8403 \N \N f f +7307 2025-09-10 22:43:25.155489+00 2025-09-10 22:43:25.155507+00 f t 8404 \N \N f f +7308 2025-09-10 23:06:23.549951+00 2025-09-10 23:06:23.549959+00 f t 8405 \N \N f f +7309 2025-09-10 23:43:05.093403+00 2025-09-10 23:43:05.093417+00 f t 8406 \N \N f f +7310 2025-09-11 00:39:15.827614+00 2025-09-11 00:39:15.827623+00 f t 8407 \N \N f f +7311 2025-09-11 00:43:21.941045+00 2025-09-11 00:43:21.941059+00 f t 8408 \N \N f f +7312 2025-09-11 00:48:49.429794+00 2025-09-11 00:48:49.429801+00 f t 8409 \N \N f f +7313 2025-09-11 00:58:05.090741+00 2025-09-11 00:58:05.090749+00 f t 8410 \N \N f f +7314 2025-09-11 01:07:15.949323+00 2025-09-11 01:07:15.949335+00 f t 8411 \N \N f f +7315 2025-09-11 01:08:45.066063+00 2025-09-11 01:08:45.066071+00 f t 8412 \N \N f f +7316 2025-09-11 01:08:54.704652+00 2025-09-11 01:08:54.704659+00 f t 8413 \N \N f f +7317 2025-09-11 01:23:50.167722+00 2025-09-11 01:23:50.167728+00 f t 8414 \N \N f f +7318 2025-09-11 01:24:33.198207+00 2025-09-11 01:24:33.198215+00 f t 8415 \N \N f f +7319 2025-09-11 01:24:33.924581+00 2025-09-11 01:24:33.924592+00 f t 8416 \N \N f f +7320 2025-09-11 02:04:06.185008+00 2025-09-11 02:04:06.185018+00 f t 8417 \N \N f f +7321 2025-09-11 02:05:33.852132+00 2025-09-11 02:05:33.852144+00 f t 8418 \N \N f f +7322 2025-09-11 02:28:22.580764+00 2025-09-11 02:28:22.580774+00 f t 8419 \N \N f f +7323 2025-09-11 02:49:54.319161+00 2025-09-11 02:49:54.31917+00 f t 8420 \N \N f f +7324 2025-09-11 03:03:09.838384+00 2025-09-11 03:03:09.838393+00 f t 8421 \N \N f f +7325 2025-09-11 03:05:05.537179+00 2025-09-11 03:05:05.537191+00 f t 8422 \N \N f f +7326 2025-09-11 03:29:00.518043+00 2025-09-11 03:29:00.518052+00 f t 8423 \N \N f f +7327 2025-09-11 03:32:53.410049+00 2025-09-11 03:32:53.410057+00 f t 8424 \N \N f f +7328 2025-09-11 03:37:10.103895+00 2025-09-11 03:37:10.103902+00 f t 8425 \N \N f f +7329 2025-09-11 03:48:29.43337+00 2025-09-11 03:48:29.433377+00 f t 8426 \N \N f f +7330 2025-09-11 04:26:49.967123+00 2025-09-11 04:24:15.953268+00 f t 8427 \N \N f f +7331 2025-09-11 04:47:25.212778+00 2025-09-11 04:47:25.212785+00 f t 8428 \N \N f f +7332 2025-09-11 05:21:23.660317+00 2025-09-11 05:21:23.660325+00 f t 8429 \N \N f f +7333 2025-09-11 08:11:42.231+00 2025-09-11 08:11:42.231013+00 f t 8430 \N \N f f +7334 2025-09-11 10:25:15.108434+00 2025-09-11 10:25:15.108445+00 f t 8431 \N \N f f +7335 2025-09-11 11:16:13.915611+00 2025-09-11 11:16:13.915622+00 f t 8432 \N \N f f +7336 2025-09-11 12:10:40.047434+00 2025-09-11 12:10:40.047441+00 f t 8433 \N \N f f +7337 2025-09-11 13:30:55.590591+00 2025-09-11 13:30:55.590611+00 f t 8434 \N \N f f +7338 2025-09-11 13:44:45.847798+00 2025-09-11 13:44:45.847805+00 f t 8435 \N \N f f +7339 2025-09-11 14:05:58.862066+00 2025-09-11 14:05:58.862073+00 f t 8436 \N \N f f +7340 2025-09-11 14:07:49.652593+00 2025-09-11 14:07:49.652601+00 f t 8437 \N \N f f +7341 2025-09-11 14:13:20.338974+00 2025-09-11 14:13:20.338981+00 f t 8438 \N \N f f +7342 2025-09-11 14:16:34.220974+00 2025-09-11 14:16:34.220983+00 f t 8440 \N \N f f +7343 2025-09-11 14:18:59.87523+00 2025-09-11 14:18:59.875238+00 f t 8441 \N \N f f +7344 2025-09-11 14:19:42.164725+00 2025-09-11 14:19:42.164733+00 f t 8442 \N \N f f +7345 2025-09-11 14:20:28.529734+00 2025-09-11 14:20:28.529741+00 f t 8443 \N \N f f +7346 2025-09-11 14:43:06.267682+00 2025-09-11 14:43:06.267692+00 f t 8444 \N \N f f +7347 2025-09-11 15:07:40.719723+00 2025-09-11 15:07:40.719735+00 f t 8445 \N \N f f +7348 2025-09-11 15:29:44.219707+00 2025-09-11 15:29:44.219718+00 f t 8447 \N \N f f +7349 2025-09-11 15:34:39.76277+00 2025-09-11 15:34:39.762779+00 f t 8448 \N \N f f +7350 2025-09-11 15:46:17.188431+00 2025-09-11 15:46:17.188438+00 f t 8449 \N \N f f +7351 2025-09-11 16:15:15.294484+00 2025-09-11 16:15:15.294493+00 f t 8450 \N \N f f +7352 2025-09-11 16:41:20.038549+00 2025-09-11 16:41:20.038557+00 f t 8451 \N \N f f +7353 2025-09-11 16:41:49.923948+00 2025-09-11 16:41:49.923956+00 f t 8452 \N \N f f +7354 2025-09-11 16:58:13.429909+00 2025-09-11 16:58:13.429915+00 f t 8453 \N \N f f +7355 2025-09-11 16:59:27.977623+00 2025-09-11 16:59:27.97763+00 f t 8454 \N \N f f +7356 2025-09-11 17:37:17.959364+00 2025-09-11 17:37:17.959371+00 f t 8456 \N \N f f +7357 2025-09-11 18:02:37.671395+00 2025-09-11 18:02:37.671405+00 f t 8457 \N \N f f +7358 2025-09-11 18:16:56.578145+00 2025-09-11 18:16:56.578152+00 f t 8458 \N \N f f +7359 2025-09-11 18:33:31.49765+00 2025-09-11 18:33:31.497661+00 f t 8459 \N \N f f +7360 2025-09-11 18:40:20.333759+00 2025-09-11 18:40:20.333766+00 f t 8460 \N \N f f +7361 2025-09-11 18:53:29.682315+00 2025-09-11 18:53:29.682322+00 f t 8461 \N \N f f +7362 2025-09-11 19:06:51.055448+00 2025-09-11 19:06:51.055457+00 f t 8462 \N \N f f +7363 2025-09-11 19:08:39.607303+00 2025-09-11 19:08:39.607314+00 f t 8463 \N \N f f +7364 2025-09-11 19:20:56.736057+00 2025-09-11 19:20:56.736064+00 f t 8464 \N \N f f +7365 2025-09-11 19:46:40.10625+00 2025-09-11 19:46:40.106263+00 f t 8465 \N \N f f +7366 2025-09-11 20:10:54.286831+00 2025-09-11 20:10:54.286837+00 f t 8466 \N \N f f +7367 2025-09-11 20:32:53.329496+00 2025-09-11 20:32:53.329505+00 f t 8467 \N \N f f +7368 2025-09-11 20:48:22.589417+00 2025-09-11 20:48:22.589427+00 f t 8468 \N \N f f +7369 2025-09-11 20:54:00.971654+00 2025-09-11 20:54:00.971662+00 f t 8469 \N \N f f +7370 2025-09-11 21:09:40.778119+00 2025-09-11 21:09:40.778126+00 f t 8470 \N \N f f +7371 2025-09-11 22:12:43.492834+00 2025-09-11 22:12:43.492842+00 f t 8471 \N \N f f +7372 2025-09-11 22:23:57.861223+00 2025-09-11 22:23:57.861232+00 f t 8472 \N \N f f +7373 2025-09-11 22:31:01.569602+00 2025-09-11 22:31:01.56961+00 f t 8473 \N \N f f +7374 2025-09-11 22:54:01.564757+00 2025-09-11 22:54:01.564766+00 f t 8474 \N \N f f +7375 2025-09-11 23:01:43.038819+00 2025-09-11 23:01:43.038831+00 f t 8475 \N \N f f +7376 2025-09-11 23:17:04.801619+00 2025-09-11 23:17:04.801629+00 f t 8476 \N \N f f +7377 2025-09-11 23:29:41.865382+00 2025-09-11 23:29:41.86539+00 f t 8477 \N \N f f +7378 2025-09-11 23:51:46.264303+00 2025-09-11 23:51:46.26431+00 f t 8479 \N \N f f +7379 2025-09-12 00:10:42.891608+00 2025-09-12 00:10:42.891615+00 f t 8480 \N \N f f +7380 2025-09-12 00:11:54.962347+00 2025-09-12 00:11:54.962354+00 f t 8481 \N \N f f +7381 2025-09-12 00:14:59.399626+00 2025-09-12 00:14:59.399632+00 f t 8482 \N \N f f +7382 2025-09-12 00:17:38.759311+00 2025-09-12 00:17:38.759319+00 f t 8483 \N \N f f +7383 2025-09-12 00:36:23.609843+00 2025-09-12 00:36:23.609849+00 f t 8484 \N \N f f +7384 2025-09-12 00:36:54.89728+00 2025-09-12 00:36:54.897292+00 f t 8485 \N \N f f +7385 2025-09-12 00:56:37.698102+00 2025-09-12 00:56:37.69811+00 f t 8486 \N \N f f +7386 2025-09-12 02:34:57.096466+00 2025-09-12 02:34:57.096473+00 f t 8487 \N \N f f +7387 2025-09-12 02:45:42.417916+00 2025-09-12 02:45:42.417925+00 f t 8488 \N \N f f +7388 2025-09-12 03:16:56.061045+00 2025-09-12 03:16:56.061055+00 f t 8489 \N \N f f +7389 2025-09-12 03:35:12.818566+00 2025-09-12 03:35:12.818574+00 f t 8490 \N \N f f +7390 2025-09-12 03:54:28.902682+00 2025-09-12 03:54:28.902688+00 f t 8491 \N \N f f +7391 2025-09-12 04:04:24.169371+00 2025-09-12 04:04:24.169379+00 f t 8492 \N \N f f +7392 2025-09-12 04:30:19.387671+00 2025-09-12 04:30:19.387678+00 f t 8493 \N \N f f +7393 2025-09-12 05:37:18.528852+00 2025-09-12 05:37:18.528858+00 f t 8494 \N \N f f +7394 2025-09-12 08:29:03.650534+00 2025-09-12 08:29:03.650541+00 f t 8495 \N \N f f +7395 2025-09-12 08:29:21.829666+00 2025-09-12 08:29:21.829674+00 f t 8496 \N \N f f +7396 2025-09-12 08:40:47.990107+00 2025-09-12 08:40:47.990114+00 f t 8497 \N \N f f +7397 2025-09-12 08:50:24.488198+00 2025-09-12 08:50:24.488206+00 f t 8498 \N \N f f +7398 2025-09-12 11:05:27.896793+00 2025-09-12 11:05:27.896799+00 f t 8499 \N \N f f +7399 2025-09-12 11:28:52.523459+00 2025-09-12 11:28:52.523467+00 f t 8500 \N \N f f +7401 2025-09-12 11:49:50.483987+00 2025-09-12 11:49:50.483995+00 f t 8501 \N \N f f +7402 2025-09-12 12:02:34.879485+00 2025-09-12 12:02:34.879493+00 f t 8502 \N \N f f +7400 2025-09-12 12:04:24.521705+00 2025-09-12 11:35:30.126491+00 f t 7666 \N \N f f +7403 2025-09-12 12:23:05.03243+00 2025-09-12 12:23:05.032437+00 f t 8503 \N \N f f +7404 2025-09-12 12:28:57.569356+00 2025-09-12 12:28:57.569364+00 f t 8504 \N \N f f +7405 2025-09-12 12:39:11.427017+00 2025-09-12 12:39:11.427027+00 f t 8505 \N \N f f +7406 2025-09-12 12:59:18.416298+00 2025-09-12 12:59:18.416307+00 f t 8506 \N \N f f +7407 2025-09-12 13:04:14.421467+00 2025-09-12 13:04:14.421474+00 f t 8507 \N \N f f +7408 2025-09-12 13:04:59.191121+00 2025-09-12 13:04:59.191153+00 f t 8508 \N \N f f +7409 2025-09-12 13:21:27.575775+00 2025-09-12 13:21:27.575783+00 f t 8509 \N \N f f +7410 2025-09-12 13:21:33.422538+00 2025-09-12 13:21:33.422547+00 f t 8510 \N \N f f +7411 2025-09-12 13:24:25.142369+00 2025-09-12 13:24:25.142376+00 f t 8511 \N \N f f +7412 2025-09-12 13:26:57.063496+00 2025-09-12 13:26:57.063503+00 f t 8512 \N \N f f +7413 2025-09-12 13:29:46.025599+00 2025-09-12 13:29:46.025607+00 f t 8513 \N \N f f +7414 2025-09-12 13:38:25.49964+00 2025-09-12 13:38:25.499653+00 f t 8514 \N \N f f +7415 2025-09-12 13:39:49.302751+00 2025-09-12 13:39:49.302759+00 f t 8515 \N \N f f +7416 2025-09-12 14:06:49.67993+00 2025-09-12 14:06:49.67994+00 f t 8516 \N \N f f +7417 2025-09-12 14:49:32.00512+00 2025-09-12 14:49:32.005128+00 f t 8517 \N \N f f +7418 2025-09-12 14:50:35.92004+00 2025-09-12 14:50:35.920047+00 f t 8518 \N \N f f +7419 2025-09-12 16:01:42.293733+00 2025-09-12 16:01:42.293744+00 f t 8519 \N \N f f +7420 2025-09-12 16:03:07.158941+00 2025-09-12 16:03:07.158952+00 f t 8520 \N \N f f +7421 2025-09-12 16:22:01.889449+00 2025-09-12 16:22:01.889459+00 f t 8521 \N \N f f +7422 2025-09-12 16:25:16.503216+00 2025-09-12 16:25:16.503227+00 f t 8522 \N \N f f +7423 2025-09-12 16:26:40.102307+00 2025-09-12 16:26:40.102314+00 f t 8523 \N \N f f +7424 2025-09-12 16:30:54.118249+00 2025-09-12 16:30:54.118262+00 f t 8524 \N \N f f +7425 2025-09-12 16:46:31.853043+00 2025-09-12 16:46:31.853054+00 f t 8525 \N \N f f +7426 2025-09-12 16:52:44.475478+00 2025-09-12 16:52:44.475488+00 f t 8526 \N \N f f +7427 2025-09-12 17:26:26.542523+00 2025-09-12 17:26:26.54253+00 f t 8527 \N \N f f +7428 2025-09-12 18:02:51.811927+00 2025-09-12 18:02:51.811968+00 f t 8528 \N \N f f +7429 2025-09-12 18:06:45.046045+00 2025-09-12 18:06:45.046053+00 f t 8529 \N \N f f +7430 2025-09-12 18:09:09.877975+00 2025-09-12 18:09:09.877983+00 f t 8530 \N \N f f +7431 2025-09-12 18:18:33.209784+00 2025-09-12 18:18:33.209791+00 f t 8531 \N \N f f +7432 2025-09-12 18:25:55.922511+00 2025-09-12 18:25:55.922519+00 f t 8532 \N \N f f +7433 2025-09-12 18:29:57.806916+00 2025-09-12 18:29:57.806923+00 f t 8533 \N \N f f +7434 2025-09-12 18:45:34.190557+00 2025-09-12 18:45:34.190568+00 f t 8534 \N \N f f +7435 2025-09-12 18:57:02.817827+00 2025-09-12 18:57:02.817835+00 f t 8535 \N \N f f +7436 2025-09-12 19:18:22.55204+00 2025-09-12 19:18:22.552046+00 f t 8536 \N \N f f +7437 2025-09-12 19:20:54.76284+00 2025-09-12 19:20:54.762847+00 f t 8537 \N \N f f +7438 2025-09-12 19:40:29.000998+00 2025-09-12 19:40:29.001005+00 f t 8538 \N \N f f +7439 2025-09-12 19:53:41.878193+00 2025-09-12 19:53:41.878203+00 f t 8540 \N \N f f +7440 2025-09-12 20:58:37.524128+00 2025-09-12 20:58:37.524137+00 f t 8541 \N \N f f +7441 2025-09-12 21:47:25.454964+00 2025-09-12 21:47:25.454972+00 f t 8542 \N \N f f +7442 2025-09-12 21:55:33.83468+00 2025-09-12 21:55:33.834689+00 f t 8543 \N \N f f +7443 2025-09-12 21:56:56.600102+00 2025-09-12 21:56:56.600109+00 f t 8544 \N \N f f +7444 2025-09-12 21:59:05.493312+00 2025-09-12 21:59:05.49332+00 f t 8545 \N \N f f +7445 2025-09-12 22:16:56.131418+00 2025-09-12 22:16:56.131425+00 f t 8546 \N \N f f +7446 2025-09-12 22:48:17.043707+00 2025-09-12 22:48:17.043717+00 f t 8547 \N \N f f +7447 2025-09-12 23:03:02.280253+00 2025-09-12 23:03:02.280264+00 f t 8548 \N \N f f +7448 2025-09-12 23:08:55.144487+00 2025-09-12 23:08:55.144495+00 f t 8549 \N \N f f +7449 2025-09-12 23:41:47.430558+00 2025-09-12 23:41:47.430567+00 f t 8550 \N \N f f +7450 2025-09-13 00:00:32.025801+00 2025-09-13 00:00:32.025815+00 f t 8551 \N \N f f +7451 2025-09-13 00:02:36.314419+00 2025-09-13 00:02:36.314429+00 f t 8552 \N \N f f +7452 2025-09-13 00:06:21.790952+00 2025-09-13 00:06:21.79096+00 f t 8553 \N \N f f +7453 2025-09-13 00:11:54.226845+00 2025-09-13 00:11:54.226853+00 f t 8554 \N \N f f +7454 2025-09-13 00:19:49.642103+00 2025-09-13 00:19:49.642112+00 f t 8555 \N \N f f +7455 2025-09-13 00:22:16.235006+00 2025-09-13 00:22:16.235014+00 f t 8556 \N \N f f +7456 2025-09-13 00:51:26.374637+00 2025-09-13 00:51:26.374645+00 f t 8557 \N \N f f +7457 2025-09-13 00:51:52.637458+00 2025-09-13 00:51:52.637466+00 f t 8558 \N \N f f +7458 2025-09-13 00:52:19.675487+00 2025-09-13 00:52:19.675498+00 f t 8559 \N \N f f +7459 2025-09-13 00:54:25.790617+00 2025-09-13 00:54:25.790626+00 f t 8560 \N \N f f +7460 2025-09-13 00:57:54.652038+00 2025-09-13 00:57:54.652049+00 f t 8561 \N \N f f +7461 2025-09-13 01:19:49.177242+00 2025-09-13 01:19:49.177252+00 f t 8562 \N \N f f +7462 2025-09-13 01:40:14.385064+00 2025-09-13 01:40:14.385076+00 f t 8563 \N \N f f +7463 2025-09-13 02:19:53.120717+00 2025-09-13 02:19:53.120723+00 f t 8564 \N \N f f +7464 2025-09-13 02:23:08.356485+00 2025-09-13 02:23:08.356495+00 f t 8565 \N \N f f +7465 2025-09-13 04:13:05.226316+00 2025-09-13 04:13:05.226323+00 f t 8566 \N \N f f +7466 2025-09-13 07:30:38.688205+00 2025-09-13 07:30:38.688214+00 f t 8567 \N \N f f +7467 2025-09-13 08:38:11.594689+00 2025-09-13 08:38:11.594696+00 f t 8568 \N \N f f +7468 2025-09-13 11:43:01.463056+00 2025-09-13 11:43:01.463069+00 f t 8569 \N \N f f +7469 2025-09-13 11:56:44.124793+00 2025-09-13 11:56:44.124806+00 f t 8570 \N \N f f +7470 2025-09-13 12:02:16.151541+00 2025-09-13 12:02:16.151552+00 f t 8571 \N \N f f +7471 2025-09-13 12:15:16.547808+00 2025-09-13 12:15:16.547815+00 f t 8572 \N \N f f +7472 2025-09-13 12:28:46.530541+00 2025-09-13 12:28:46.530549+00 f t 8573 \N \N f f +7473 2025-09-13 12:33:24.238736+00 2025-09-13 12:33:24.238743+00 f t 8574 \N \N f f +7474 2025-09-13 12:37:22.971527+00 2025-09-13 12:37:22.971534+00 f t 8575 \N \N f f +7475 2025-09-13 12:43:50.567421+00 2025-09-13 12:43:50.567433+00 f t 8576 \N \N f f +7476 2025-09-13 13:14:15.634632+00 2025-09-13 13:14:15.63464+00 f t 8577 \N \N f f +7477 2025-09-13 13:27:44.572453+00 2025-09-13 13:27:44.57246+00 f t 8578 \N \N f f +7478 2025-09-13 13:49:08.415951+00 2025-09-13 13:49:08.415965+00 f t 8579 \N \N f f +7479 2025-09-13 14:45:21.530776+00 2025-09-13 14:45:21.530783+00 f t 8580 \N \N f f +7480 2025-09-13 15:02:44.024126+00 2025-09-13 15:02:44.024138+00 f t 8581 \N \N f f +7481 2025-09-13 16:30:06.337037+00 2025-09-13 16:30:06.33705+00 f t 8582 \N \N f f +7482 2025-09-13 16:57:32.207636+00 2025-09-13 16:57:32.207644+00 f t 8583 \N \N f f +7483 2025-09-13 17:10:42.161874+00 2025-09-13 17:10:42.161884+00 f t 8584 \N \N f f +7484 2025-09-13 17:26:00.692111+00 2025-09-13 17:26:00.692119+00 f t 8585 \N \N f f +7485 2025-09-13 17:28:51.07264+00 2025-09-13 17:28:51.072648+00 f t 8586 \N \N f f +7486 2025-09-13 17:33:29.977808+00 2025-09-13 17:33:29.977816+00 f t 8587 \N \N f f +7487 2025-09-13 17:52:48.373328+00 2025-09-13 17:52:48.373334+00 f t 8588 \N \N f f +7488 2025-09-13 18:04:14.839539+00 2025-09-13 18:04:14.839552+00 f t 8589 \N \N f f +7489 2025-09-13 18:06:00.824199+00 2025-09-13 18:06:00.824208+00 f t 8590 \N \N f f +7490 2025-09-13 18:18:16.41391+00 2025-09-13 18:18:16.41392+00 f t 8591 \N \N f f +7491 2025-09-13 18:19:17.469483+00 2025-09-13 18:19:17.469492+00 f t 8592 \N \N f f +7492 2025-09-13 19:09:24.268745+00 2025-09-13 19:09:24.268753+00 f t 8593 \N \N f f +7493 2025-09-13 19:22:55.389182+00 2025-09-13 19:22:55.389189+00 f t 8594 \N \N f f +7494 2025-09-13 19:39:59.520219+00 2025-09-13 19:39:59.520227+00 f t 8595 \N \N f f +7495 2025-09-13 20:01:57.933491+00 2025-09-13 20:01:57.933499+00 f t 8596 \N \N f f +7496 2025-09-13 20:04:42.044927+00 2025-09-13 20:04:42.044937+00 f t 8597 \N \N f f +7497 2025-09-13 20:07:10.876447+00 2025-09-13 20:07:10.876456+00 f t 8598 \N \N f f +7498 2025-09-13 20:17:06.583501+00 2025-09-13 20:17:06.583509+00 f t 8599 \N \N f f +7499 2025-09-13 20:52:12.312888+00 2025-09-13 20:52:12.312896+00 f t 8600 \N \N f f +7500 2025-09-13 21:10:09.32101+00 2025-09-13 21:10:09.321024+00 f t 8601 \N \N f f +7501 2025-09-13 21:22:47.660697+00 2025-09-13 21:22:47.660705+00 f t 8602 \N \N f f +7502 2025-09-13 21:39:42.511301+00 2025-09-13 21:39:42.511308+00 f t 8604 \N \N f f +7503 2025-09-13 21:54:04.176542+00 2025-09-13 21:54:04.176551+00 f t 8605 \N \N f f +7504 2025-09-13 22:01:07.645907+00 2025-09-13 22:01:07.645915+00 f t 8606 \N \N f f +7505 2025-09-13 22:05:14.518996+00 2025-09-13 22:05:14.519005+00 f t 8607 \N \N f f +7506 2025-09-13 22:13:05.695458+00 2025-09-13 22:13:05.695468+00 f t 8608 \N \N f f +7507 2025-09-13 22:15:42.613313+00 2025-09-13 22:15:42.61332+00 f t 8609 \N \N f f +7508 2025-09-13 22:45:04.866776+00 2025-09-13 22:45:04.866789+00 f t 8610 \N \N f f +7509 2025-09-13 22:57:59.022161+00 2025-09-13 22:57:59.022167+00 f t 8611 \N \N f f +7510 2025-09-13 23:26:13.191752+00 2025-09-13 23:26:13.191759+00 f t 8612 \N \N f f +7511 2025-09-14 00:10:15.848108+00 2025-09-14 00:10:15.848119+00 f t 8613 \N \N f f +7512 2025-09-14 02:40:08.37795+00 2025-09-14 02:40:08.37796+00 f t 8614 \N \N f f +7513 2025-09-14 03:58:10.975526+00 2025-09-14 03:58:10.975537+00 f t 8615 \N \N f f +7514 2025-09-14 04:00:43.475488+00 2025-09-14 04:00:43.475501+00 f t 8616 \N \N f f +7515 2025-09-14 04:16:08.165034+00 2025-09-14 04:16:08.165043+00 f t 8617 \N \N f f +7516 2025-09-14 05:08:07.240964+00 2025-09-14 05:08:07.240976+00 f t 8618 \N \N f f +7517 2025-09-14 05:54:20.316441+00 2025-09-14 05:54:20.31645+00 f t 8619 \N \N f f +7518 2025-09-14 06:41:19.784806+00 2025-09-14 06:41:19.784814+00 f t 8620 \N \N f f +7519 2025-09-14 09:09:38.814276+00 2025-09-14 09:09:38.814283+00 f t 8621 \N \N f f +7520 2025-09-14 10:42:29.125698+00 2025-09-14 10:42:29.125709+00 f t 8622 \N \N f f +7521 2025-09-14 11:17:38.251024+00 2025-09-14 11:17:38.251036+00 f t 8623 \N \N f f +7522 2025-09-14 11:21:53.226209+00 2025-09-14 11:21:53.226217+00 f t 8624 \N \N f f +7523 2025-09-14 12:06:48.106881+00 2025-09-14 12:06:48.106891+00 f t 8625 \N \N f f +7524 2025-09-14 12:54:31.985184+00 2025-09-14 12:54:31.985191+00 f t 8626 \N \N f f +7525 2025-09-14 12:58:05.367009+00 2025-09-14 12:58:05.367017+00 f t 8627 \N \N f f +7526 2025-09-14 13:46:42.658671+00 2025-09-14 13:46:42.65868+00 f t 8628 \N \N f f +7527 2025-09-14 13:57:31.590698+00 2025-09-14 13:57:31.590707+00 f t 8629 \N \N f f +7528 2025-09-14 14:19:18.292822+00 2025-09-14 14:19:18.292831+00 f t 8630 \N \N f f +7529 2025-09-14 14:21:46.0075+00 2025-09-14 14:21:46.00751+00 f t 8631 \N \N f f +7530 2025-09-14 14:26:23.818225+00 2025-09-14 14:26:23.81824+00 f t 8632 \N \N f f +7531 2025-09-14 14:44:28.974035+00 2025-09-14 14:44:28.974043+00 f t 8633 \N \N f f +7532 2025-09-14 15:58:14.844109+00 2025-09-14 15:58:14.844119+00 f t 8634 \N \N f f +7533 2025-09-14 16:50:10.130267+00 2025-09-14 16:50:10.130281+00 f t 8635 \N \N f f +7534 2025-09-14 16:55:19.72218+00 2025-09-14 16:55:19.722188+00 f t 8636 \N \N f f +7535 2025-09-14 18:04:37.028196+00 2025-09-14 18:04:37.028206+00 f t 8637 \N \N f f +7536 2025-09-14 21:02:25.5478+00 2025-09-14 21:02:25.54781+00 f t 8642 \N \N f f +7537 2025-09-14 21:07:37.506558+00 2025-09-14 21:07:37.50657+00 f t 8643 \N \N f f +7538 2025-09-14 22:21:48.209967+00 2025-09-14 22:21:48.209979+00 f t 8644 \N \N f f +7539 2025-09-14 23:22:16.958145+00 2025-09-14 23:22:16.958152+00 f t 8645 \N \N f f +7540 2025-09-14 23:39:48.086098+00 2025-09-14 23:39:48.086106+00 f t 8646 \N \N f f +7541 2025-09-14 23:50:11.721393+00 2025-09-14 23:50:11.721403+00 f t 8647 \N \N f f +7542 2025-09-14 23:55:06.503025+00 2025-09-14 23:55:06.503038+00 f t 8648 \N \N f f +7543 2025-09-14 23:58:50.383405+00 2025-09-14 23:58:50.383413+00 f t 8649 \N \N f f +7544 2025-09-15 00:21:26.621625+00 2025-09-15 00:21:26.621632+00 f t 8650 \N \N f f +7545 2025-09-15 00:26:06.535074+00 2025-09-15 00:26:06.535086+00 f t 8651 \N \N f f +7546 2025-09-15 00:45:29.011225+00 2025-09-15 00:45:29.011235+00 f t 8652 \N \N f f +7547 2025-09-15 00:46:05.987838+00 2025-09-15 00:46:05.987847+00 f t 8653 \N \N f f +7548 2025-09-15 01:25:46.368662+00 2025-09-15 01:25:46.36867+00 f t 8654 \N \N f f +7549 2025-09-15 04:08:21.326652+00 2025-09-15 04:08:21.32666+00 f t 8655 \N \N f f +7550 2025-09-15 04:27:05.837624+00 2025-09-15 04:27:05.837638+00 f t 8656 \N \N f f +7551 2025-09-15 11:54:30.467868+00 2025-09-15 11:54:30.467878+00 f t 8657 \N \N f f +7552 2025-09-15 12:55:24.345112+00 2025-09-15 12:55:24.345122+00 f t 8659 \N \N f f +7553 2025-09-15 13:06:20.997418+00 2025-09-15 13:06:20.997428+00 f t 8660 \N \N f f +7554 2025-09-15 13:54:05.891672+00 2025-09-15 13:54:05.891679+00 f t 8661 \N \N f f +7555 2025-09-15 14:03:15.038005+00 2025-09-15 14:03:15.038014+00 f t 8662 \N \N f f +7556 2025-09-15 15:10:39.897635+00 2025-09-15 15:10:39.897645+00 f t 8663 \N \N f f +7557 2025-09-15 15:27:53.892842+00 2025-09-15 15:27:53.892855+00 f t 8664 \N \N f f +7558 2025-09-15 15:41:06.55965+00 2025-09-15 15:41:06.559661+00 f t 8665 \N \N f f +7559 2025-09-15 16:45:13.636825+00 2025-09-15 16:45:13.636833+00 f t 8666 \N \N f f +7560 2025-09-15 17:04:23.660544+00 2025-09-15 17:04:23.660555+00 f t 8667 \N \N f f +7561 2025-09-15 17:52:46.247053+00 2025-09-15 17:52:46.247062+00 f t 8668 \N \N f f +7562 2025-09-15 17:56:48.097205+00 2025-09-15 17:56:48.097212+00 f t 8669 \N \N f f +7563 2025-09-15 18:02:25.313553+00 2025-09-15 18:02:25.313559+00 f t 8670 \N \N f f +7564 2025-09-15 18:13:22.142536+00 2025-09-15 18:13:22.142543+00 f t 8671 \N \N f f +7565 2025-09-15 19:06:00.683568+00 2025-09-15 19:06:00.683576+00 f t 8673 \N \N f f +7566 2025-09-15 19:08:20.54665+00 2025-09-15 19:08:20.546658+00 f t 8674 \N \N f f +7567 2025-09-15 19:22:54.898107+00 2025-09-15 19:22:54.898117+00 f t 8675 \N \N f f +7568 2025-09-15 20:45:19.047003+00 2025-09-15 20:45:19.047014+00 f t 8677 \N \N f f +7569 2025-09-15 20:52:38.53692+00 2025-09-15 20:52:38.536929+00 f t 8678 \N \N f f +7570 2025-09-15 21:17:33.647095+00 2025-09-15 21:17:33.647103+00 f t 8679 \N \N f f +7571 2025-09-15 21:49:13.823278+00 2025-09-15 21:49:13.823287+00 f t 8680 \N \N f f +7572 2025-09-15 21:54:28.473413+00 2025-09-15 21:54:28.47342+00 f t 5176 \N \N f f +7573 2025-09-15 21:59:15.397727+00 2025-09-15 21:59:15.397738+00 f t 8681 \N \N f f +7574 2025-09-15 22:07:40.908712+00 2025-09-15 22:07:40.908719+00 f t 8682 \N \N f f +7575 2025-09-15 22:23:29.763832+00 2025-09-15 22:23:29.763838+00 f t 8683 \N \N f f +7576 2025-09-15 22:50:34.797072+00 2025-09-15 22:50:34.797082+00 f t 8684 \N \N f f +7577 2025-09-15 22:54:49.589129+00 2025-09-15 22:54:49.58914+00 f t 8685 \N \N f f +7578 2025-09-15 22:58:23.222563+00 2025-09-15 22:58:23.222571+00 f t 8686 \N \N f f +7579 2025-09-15 23:26:40.871229+00 2025-09-15 23:26:40.871237+00 f t 8687 \N \N f f +7580 2025-09-15 23:38:09.069756+00 2025-09-15 23:38:09.069767+00 f t 8688 \N \N f f +7581 2025-09-15 23:39:19.98961+00 2025-09-15 23:39:19.989621+00 f t 8689 \N \N f f +7582 2025-09-16 00:29:24.479546+00 2025-09-16 00:29:24.479556+00 f t 8691 \N \N f f +7583 2025-09-16 01:02:42.154033+00 2025-09-16 01:02:42.154043+00 f t 8692 \N \N f f +7584 2025-09-16 01:10:50.655084+00 2025-09-16 01:10:50.655092+00 f t 8693 \N \N f f +7585 2025-09-16 01:18:30.198371+00 2025-09-16 01:18:30.198385+00 f t 8694 \N \N f f +7586 2025-09-16 01:19:40.487806+00 2025-09-16 01:19:40.487813+00 f t 8695 \N \N f f +7587 2025-09-16 01:27:02.355382+00 2025-09-16 01:27:02.355395+00 f t 8696 \N \N f f +7588 2025-09-16 01:41:55.073427+00 2025-09-16 01:41:55.073435+00 f t 8697 \N \N f f +7589 2025-09-16 01:53:14.553127+00 2025-09-16 01:53:14.553135+00 f t 8698 \N \N f f +7590 2025-09-16 01:55:49.836625+00 2025-09-16 01:55:49.836637+00 f t 8699 \N \N f f +7591 2025-09-16 02:23:29.440813+00 2025-09-16 02:23:29.440825+00 f t 8700 \N \N f f +7592 2025-09-16 02:24:10.949977+00 2025-09-16 02:24:10.949987+00 f t 8701 \N \N f f +7593 2025-09-16 02:29:47.420623+00 2025-09-16 02:29:47.420633+00 f t 8702 \N \N f f +7594 2025-09-16 02:31:36.305452+00 2025-09-16 02:31:36.305461+00 f t 8703 \N \N f f +7595 2025-09-16 03:43:35.382318+00 2025-09-16 03:43:35.382326+00 f t 8704 \N \N f f +7596 2025-09-16 05:55:25.973507+00 2025-09-16 05:55:25.973515+00 f t 8705 \N \N f f +7597 2025-09-16 06:08:30.244172+00 2025-09-16 06:08:30.244178+00 f t 8706 \N \N f f +7598 2025-09-16 06:10:03.493583+00 2025-09-16 06:10:03.493596+00 f t 8707 \N \N f f +7599 2025-09-16 06:11:33.331191+00 2025-09-16 06:11:33.331199+00 f t 8708 \N \N f f +7600 2025-09-16 06:12:03.136693+00 2025-09-16 06:12:03.136705+00 f t 8709 \N \N f f +7601 2025-09-16 06:23:51.897418+00 2025-09-16 06:23:51.897427+00 f t 8710 \N \N f f +7602 2025-09-16 10:05:21.252505+00 2025-09-16 10:05:21.252512+00 f t 8711 \N \N f f +7603 2025-09-16 10:40:24.632893+00 2025-09-16 10:40:24.632903+00 f t 8712 \N \N f f +7604 2025-09-16 10:52:42.640706+00 2025-09-16 10:52:42.640714+00 f t 8713 \N \N f f +7605 2025-09-16 10:56:19.624694+00 2025-09-16 10:56:19.624703+00 f t 8714 \N \N f f +7606 2025-09-16 11:16:30.495956+00 2025-09-16 11:16:30.495967+00 f t 8715 \N \N f f +7607 2025-09-16 11:39:59.428791+00 2025-09-16 11:39:59.4288+00 f t 8716 \N \N f f +7608 2025-09-16 12:15:18.947128+00 2025-09-16 12:15:18.947173+00 f t 8717 \N \N f f +7609 2025-09-16 12:44:02.674486+00 2025-09-16 12:44:02.674496+00 f t 8718 \N \N f f +7610 2025-09-16 12:49:17.279033+00 2025-09-16 12:49:17.279043+00 f t 8719 \N \N f f +7611 2025-09-16 13:02:45.118938+00 2025-09-16 13:02:45.118949+00 f t 8720 \N \N f f +7612 2025-09-16 13:25:46.447123+00 2025-09-16 13:25:46.447158+00 f t 8721 \N \N f f +7613 2025-09-16 13:43:11.532804+00 2025-09-16 13:43:11.532812+00 f t 8722 \N \N f f +7614 2025-09-16 14:54:11.354114+00 2025-09-16 14:54:11.354124+00 f t 8723 \N \N f f +7615 2025-09-16 15:00:15.251948+00 2025-09-16 15:00:15.25196+00 f t 8724 \N \N f f +7616 2025-09-16 15:05:50.569968+00 2025-09-16 15:05:50.569978+00 f t 8725 \N \N f f +7617 2025-09-16 15:22:23.433133+00 2025-09-16 15:22:23.433142+00 f t 8726 \N \N f f +7618 2025-09-16 15:23:06.918528+00 2025-09-16 15:23:06.918537+00 f t 8727 \N \N f f +7619 2025-09-16 15:26:41.208923+00 2025-09-16 15:26:41.208932+00 f t 8728 \N \N f f +7620 2025-09-16 15:27:09.795207+00 2025-09-16 15:27:09.795216+00 f t 8729 \N \N f f +7621 2025-09-16 15:31:40.584797+00 2025-09-16 15:31:40.584804+00 f t 8731 \N \N f f +7622 2025-09-16 15:41:05.01053+00 2025-09-16 15:41:05.010538+00 f t 8733 \N \N f f +7623 2025-09-16 15:51:32.720274+00 2025-09-16 15:51:32.720286+00 f t 8734 \N \N f f +7624 2025-09-16 16:04:16.519067+00 2025-09-16 16:04:16.519075+00 f t 8736 \N \N f f +7625 2025-09-16 16:10:14.997299+00 2025-09-16 16:10:14.997307+00 f t 8737 \N \N f f +7626 2025-09-16 16:28:07.860005+00 2025-09-16 16:28:07.860016+00 f t 8738 \N \N f f +7627 2025-09-16 16:36:11.88547+00 2025-09-16 16:36:11.885479+00 f t 8739 \N \N f f +7628 2025-09-16 16:49:16.240335+00 2025-09-16 16:49:16.240347+00 f t 8741 \N \N f f +7629 2025-09-16 17:02:58.901316+00 2025-09-16 17:02:58.901324+00 f t 8742 \N \N f f +7630 2025-09-16 18:07:27.180544+00 2025-09-16 18:07:27.180552+00 f t 8744 \N \N f f +7631 2025-09-16 18:14:54.642745+00 2025-09-16 18:14:54.642755+00 f t 8745 \N \N f f +7632 2025-09-16 19:16:19.00468+00 2025-09-16 19:16:19.004687+00 f t 8746 \N \N f f +7633 2025-09-16 19:29:16.012494+00 2025-09-16 19:29:16.012503+00 f t 8747 \N \N f f +7634 2025-09-16 19:36:08.897345+00 2025-09-16 19:36:08.897356+00 f t 8748 \N \N f f +7635 2025-09-16 19:38:29.126998+00 2025-09-16 19:38:29.127006+00 f t 8749 \N \N f f +7636 2025-09-16 19:51:01.59728+00 2025-09-16 19:51:01.597292+00 f t 8750 \N \N f f +7637 2025-09-16 19:55:55.480497+00 2025-09-16 19:55:55.480506+00 f t 8751 \N \N f f +7638 2025-09-16 19:57:22.835467+00 2025-09-16 19:57:22.83548+00 f t 8752 \N \N f f +7639 2025-09-16 20:12:30.099154+00 2025-09-16 20:12:30.099162+00 f t 8753 \N \N f f +7640 2025-09-16 20:22:11.096634+00 2025-09-16 20:22:11.096641+00 f t 8754 \N \N f f +7641 2025-09-16 20:26:18.078518+00 2025-09-16 20:26:18.078526+00 f t 8755 \N \N f f +7642 2025-09-16 20:41:30.992357+00 2025-09-16 20:41:30.992368+00 f t 8756 \N \N f f +7643 2025-09-16 20:52:36.08427+00 2025-09-16 20:52:36.084284+00 f t 8757 \N \N f f +7644 2025-09-16 20:53:03.710445+00 2025-09-16 20:53:03.710456+00 f t 8758 \N \N f f +7645 2025-09-16 20:59:18.995272+00 2025-09-16 20:59:18.99528+00 f t 8759 \N \N f f +7646 2025-09-16 21:10:13.979818+00 2025-09-16 21:10:13.979833+00 f t 8760 \N \N f f +7647 2025-09-16 21:17:53.499327+00 2025-09-16 21:17:53.499338+00 f t 8761 \N \N f f +7648 2025-09-16 22:08:41.232111+00 2025-09-16 22:08:41.232118+00 f t 8763 \N \N f f +7649 2025-09-16 22:11:32.088986+00 2025-09-16 22:11:32.088997+00 f t 8764 \N \N f f +7650 2025-09-16 22:33:09.464742+00 2025-09-16 22:33:09.46475+00 f t 8765 \N \N f f +7651 2025-09-16 23:17:50.020127+00 2025-09-16 23:17:50.020135+00 f t 8766 \N \N f f +7652 2025-09-16 23:39:44.667721+00 2025-09-16 23:39:44.667731+00 f t 8767 \N \N f f +7653 2025-09-17 00:09:49.286986+00 2025-09-17 00:09:49.286994+00 f t 8768 \N \N f f +7654 2025-09-17 00:24:52.595615+00 2025-09-17 00:24:52.595624+00 f t 8769 \N \N f f +7655 2025-09-17 00:43:57.016224+00 2025-09-17 00:43:57.016234+00 f t 8770 \N \N f f +7656 2025-09-17 01:33:38.777341+00 2025-09-17 01:33:38.777347+00 f t 8771 \N \N f f +7657 2025-09-17 02:16:35.036374+00 2025-09-17 02:16:35.036382+00 f t 8772 \N \N f f +7658 2025-09-17 07:33:51.049855+00 2025-09-17 07:33:51.049863+00 f t 8773 \N \N f f +7659 2025-09-17 10:22:24.123271+00 2025-09-17 10:22:24.123283+00 f t 8774 \N \N f f +7660 2025-09-17 10:22:57.948962+00 2025-09-17 10:22:57.948973+00 f t 8775 \N \N f f +7661 2025-09-17 10:35:01.496209+00 2025-09-17 10:35:01.496225+00 f t 8776 \N \N f f +7662 2025-09-17 11:27:35.415741+00 2025-09-17 11:27:35.41575+00 f t 8777 \N \N f f +7663 2025-09-17 11:59:27.324607+00 2025-09-17 11:59:27.324619+00 f t 8778 \N \N f f +7664 2025-09-17 12:07:55.390662+00 2025-09-17 12:07:55.390675+00 f t 8779 \N \N f f +7665 2025-09-17 12:43:53.899643+00 2025-09-17 12:43:53.899652+00 f t 8780 \N \N f f +7666 2025-09-17 13:17:25.665551+00 2025-09-17 13:17:25.66556+00 f t 8781 \N \N f f +7667 2025-09-17 13:30:07.514741+00 2025-09-17 13:30:07.514756+00 f t 8782 \N \N f f +7668 2025-09-17 13:48:03.690689+00 2025-09-17 13:48:03.690698+00 f t 8784 \N \N f f +7669 2025-09-17 13:50:20.496577+00 2025-09-17 13:50:20.496585+00 f t 8785 \N \N f f +7670 2025-09-17 14:46:46.866546+00 2025-09-17 14:46:46.866557+00 f t 8786 \N \N f f +7671 2025-09-17 15:52:43.139876+00 2025-09-17 15:52:43.139884+00 f t 8787 \N \N f f +7672 2025-09-17 16:02:03.093468+00 2025-09-17 16:02:03.09348+00 f t 8788 \N \N f f +7673 2025-09-17 17:26:38.249945+00 2025-09-17 17:26:38.249954+00 f t 8790 \N \N f f +7674 2025-09-17 17:36:38.188571+00 2025-09-17 17:36:38.18858+00 f t 8791 \N \N f f +7675 2025-09-17 18:02:17.053343+00 2025-09-17 18:02:17.053353+00 f t 8792 \N \N f f +7676 2025-09-17 18:26:50.313749+00 2025-09-17 18:26:50.313757+00 f t 8793 \N \N f f +7677 2025-09-17 18:28:01.771468+00 2025-09-17 18:28:01.771479+00 f t 8794 \N \N f f +7678 2025-09-17 18:28:12.240356+00 2025-09-17 18:28:12.240367+00 f t 8795 \N \N f f +7679 2025-09-17 18:32:52.12167+00 2025-09-17 18:32:52.121679+00 f t 8796 \N \N f f +7680 2025-09-17 18:33:17.495072+00 2025-09-17 18:33:17.495081+00 f t 8797 \N \N f f +7681 2025-09-17 18:34:37.595193+00 2025-09-17 18:34:37.595203+00 f t 8798 \N \N f f +7682 2025-09-17 18:35:21.672856+00 2025-09-17 18:35:21.672864+00 f t 8799 \N \N f f +7683 2025-09-17 19:02:58.268731+00 2025-09-17 19:02:58.268741+00 f t 8800 \N \N f f +7684 2025-09-17 19:15:20.656894+00 2025-09-17 19:15:20.656902+00 f t 8801 \N \N f f +7685 2025-09-17 19:17:31.228548+00 2025-09-17 19:17:31.228557+00 f t 8802 \N \N f f +7686 2025-09-17 19:33:10.872257+00 2025-09-17 19:33:10.872269+00 f t 8803 \N \N f f +7687 2025-09-17 19:35:04.640617+00 2025-09-17 19:35:04.640632+00 f t 8804 \N \N f f +7688 2025-09-17 19:37:21.502716+00 2025-09-17 19:37:21.502724+00 f t 8805 \N \N f f +7689 2025-09-17 19:51:51.337221+00 2025-09-17 19:51:51.337228+00 f t 8806 \N \N f f +7690 2025-09-17 20:02:07.295626+00 2025-09-17 20:02:07.295636+00 f t 8807 \N \N f f +7691 2025-09-17 20:30:36.62641+00 2025-09-17 20:30:36.626421+00 f t 8808 \N \N f f +7692 2025-09-17 20:38:40.286612+00 2025-09-17 20:38:40.28662+00 f t 8809 \N \N f f +7693 2025-09-17 20:56:16.931693+00 2025-09-17 20:56:16.931701+00 f t 8811 \N \N f f +7694 2025-09-17 21:03:16.333098+00 2025-09-17 21:03:16.333104+00 f t 8812 \N \N f f +7695 2025-09-17 21:58:02.146554+00 2025-09-17 21:58:02.146562+00 f t 8813 \N \N f f +7696 2025-09-17 22:40:56.618237+00 2025-09-17 22:40:56.619548+00 f t 8815 \N \N f f +7697 2025-09-17 22:45:42.261587+00 2025-09-17 22:45:30.621771+00 f t 8816 \N \N f f +7698 2025-09-17 22:54:27.463399+00 2025-09-17 22:54:27.463408+00 f t 8817 \N \N f f +7699 2025-09-17 22:55:02.867805+00 2025-09-17 22:55:02.867819+00 f t 8818 \N \N f f +7700 2025-09-17 23:02:30.976209+00 2025-09-17 23:02:30.976217+00 f t 8819 \N \N f f +7701 2025-09-17 23:12:02.371344+00 2025-09-17 23:12:02.371357+00 f t 8820 \N \N f f +7702 2025-09-17 23:30:38.169494+00 2025-09-17 23:30:38.169506+00 f t 8821 \N \N f f +7703 2025-09-17 23:55:24.611366+00 2025-09-17 23:55:24.611373+00 f t 8822 \N \N f f +7704 2025-09-18 00:51:24.876061+00 2025-09-18 00:51:24.876072+00 f t 8823 \N \N f f +7705 2025-09-18 01:16:26.85376+00 2025-09-18 01:16:26.853767+00 f t 8824 \N \N f f +7706 2025-09-18 01:20:20.651573+00 2025-09-18 01:20:20.651581+00 f t 8825 \N \N f f +7707 2025-09-18 01:26:44.836099+00 2025-09-18 01:26:44.836106+00 f t 8826 \N \N f f +7708 2025-09-18 02:06:08.810019+00 2025-09-18 02:06:08.810026+00 f t 8827 \N \N f f +7709 2025-09-18 02:49:38.737335+00 2025-09-18 02:49:38.737349+00 f t 8828 \N \N f f +7710 2025-09-18 02:54:50.095102+00 2025-09-18 02:54:50.095109+00 f t 8829 \N \N f f +7711 2025-09-18 03:39:38.477053+00 2025-09-18 03:39:38.477062+00 f t 8830 \N \N f f +7712 2025-09-18 04:05:47.366627+00 2025-09-18 04:05:47.366638+00 f t 8831 \N \N f f +7713 2025-09-18 05:06:59.965434+00 2025-09-18 05:06:59.965444+00 f t 8832 \N \N f f +7714 2025-09-18 05:38:38.865169+00 2025-09-18 05:38:38.865182+00 f t 8833 \N \N f f +7715 2025-09-18 06:22:02.33813+00 2025-09-18 06:22:02.338141+00 f t 8834 \N \N f f +7716 2025-09-18 06:23:50.316459+00 2025-09-18 06:23:50.316467+00 f t 8835 \N \N f f +7717 2025-09-18 06:26:10.139561+00 2025-09-18 06:26:10.139569+00 f t 8836 \N \N f f +7718 2025-09-18 06:26:46.062935+00 2025-09-18 06:26:46.062943+00 f t 8837 \N \N f f +7719 2025-09-18 06:32:44.395027+00 2025-09-18 06:32:44.395035+00 f t 8838 \N \N f f +7720 2025-09-18 07:17:12.199769+00 2025-09-18 07:17:12.199778+00 f t 8839 \N \N f f +7721 2025-09-18 08:09:48.891845+00 2025-09-18 08:09:48.891854+00 f t 8840 \N \N f f +7722 2025-09-18 09:53:57.416196+00 2025-09-18 09:53:57.416205+00 f t 8841 \N \N f f +7723 2025-09-18 10:27:37.909832+00 2025-09-18 10:27:37.909842+00 f t 8842 \N \N f f +7724 2025-09-18 10:31:09.012404+00 2025-09-18 10:31:09.012414+00 f t 8843 \N \N f f +7725 2025-09-18 10:38:07.126432+00 2025-09-18 10:38:07.126442+00 f t 8844 \N \N f f +7726 2025-09-18 10:39:29.456902+00 2025-09-18 10:39:29.456909+00 f t 8845 \N \N f f +7727 2025-09-18 11:22:35.210378+00 2025-09-18 11:22:35.210387+00 f t 8846 \N \N f f +7728 2025-09-18 11:23:25.030752+00 2025-09-18 11:23:25.030759+00 f t 8847 \N \N f f +7729 2025-09-18 11:27:20.65666+00 2025-09-18 11:27:20.656669+00 f t 8848 \N \N f f +7730 2025-09-18 11:31:20.307755+00 2025-09-18 11:31:20.307763+00 f t 8849 \N \N f f +7731 2025-09-18 11:51:24.437762+00 2025-09-18 11:51:24.437769+00 f t 8850 \N \N f f +7732 2025-09-18 12:09:46.036449+00 2025-09-18 12:09:46.036458+00 f t 377 \N \N f f +7733 2025-09-18 12:14:32.158751+00 2025-09-18 12:14:32.158759+00 f t 8851 \N \N f f +7734 2025-09-18 12:19:51.086299+00 2025-09-18 12:19:51.086309+00 f t 8852 \N \N f f +7735 2025-09-18 12:24:03.126437+00 2025-09-18 12:24:03.126444+00 f t 8853 \N \N f f +7736 2025-09-18 12:37:47.907989+00 2025-09-18 12:37:47.908002+00 f t 8854 \N \N f f +7737 2025-09-18 13:25:49.801978+00 2025-09-18 13:25:49.801988+00 f t 822 \N \N f f +7738 2025-09-18 13:26:15.389783+00 2025-09-18 13:26:15.389796+00 f t 8855 \N \N f f +7739 2025-09-18 13:50:07.579964+00 2025-09-18 13:50:07.579978+00 f t 8856 \N \N f f +7740 2025-09-18 13:50:51.020821+00 2025-09-18 13:50:51.020835+00 f t 8857 \N \N f f +7741 2025-09-18 13:51:38.040451+00 2025-09-18 13:51:38.04046+00 f t 8858 \N \N f f +7742 2025-09-18 14:04:11.378915+00 2025-09-18 14:04:11.378924+00 f t 8859 \N \N f f +7743 2025-09-18 15:24:17.038012+00 2025-09-18 15:24:17.038022+00 f t 8861 \N \N f f +7744 2025-09-18 16:01:29.174616+00 2025-09-18 16:01:29.174624+00 f t 8863 \N \N f f +7745 2025-09-18 16:08:26.964017+00 2025-09-18 16:08:26.964027+00 f t 8864 \N \N f f +7746 2025-09-18 16:32:58.305566+00 2025-09-18 16:32:58.305578+00 f t 8865 \N \N f f +7747 2025-09-18 16:34:11.432443+00 2025-09-18 16:34:11.432454+00 f t 8866 \N \N f f +7748 2025-09-18 16:34:42.359479+00 2025-09-18 16:34:42.359491+00 f t 8867 \N \N f f +7749 2025-09-18 17:06:51.841789+00 2025-09-18 17:06:51.841798+00 f t 8868 \N \N f f +7750 2025-09-18 17:13:39.845017+00 2025-09-18 17:13:39.845028+00 f t 8870 \N \N f f +7751 2025-09-18 17:32:05.132083+00 2025-09-18 17:32:05.132097+00 f t 8871 \N \N f f +7752 2025-09-18 17:45:25.676458+00 2025-09-18 17:45:25.676468+00 f t 8872 \N \N f f +7753 2025-09-18 18:10:36.98923+00 2025-09-18 18:10:36.989245+00 f t 8873 \N \N f f +7754 2025-09-18 18:12:04.180227+00 2025-09-18 18:12:04.180236+00 f t 8874 \N \N f f +7755 2025-09-18 18:12:17.053464+00 2025-09-18 18:12:17.053472+00 f t 8875 \N \N f f +7756 2025-09-18 18:25:31.622733+00 2025-09-18 18:25:31.62274+00 f t 8876 \N \N f f +7757 2025-09-18 18:26:36.821341+00 2025-09-18 18:26:36.821347+00 f t 8877 \N \N f f +7758 2025-09-18 18:30:24.601009+00 2025-09-18 18:30:24.601021+00 f t 8878 \N \N f f +7759 2025-09-18 18:30:38.443762+00 2025-09-18 18:30:38.443769+00 f t 8879 \N \N f f +7760 2025-09-18 18:48:34.401038+00 2025-09-18 18:48:34.401046+00 f t 8880 \N \N f f +7761 2025-09-18 19:07:25.883974+00 2025-09-18 19:07:25.883982+00 f t 8881 \N \N f f +7762 2025-09-18 19:09:21.573354+00 2025-09-18 19:09:21.573365+00 f t 7909 \N \N f f +7763 2025-09-18 20:24:01.86973+00 2025-09-18 20:24:01.869741+00 f t 8882 \N \N f f +7764 2025-09-18 20:42:38.02794+00 2025-09-18 20:42:38.027947+00 f t 8883 \N \N f f +7765 2025-09-18 20:46:24.901368+00 2025-09-18 20:46:24.901374+00 f t 8884 \N \N f f +7766 2025-09-18 21:01:53.277435+00 2025-09-18 21:01:53.277443+00 f t 8885 \N \N f f +7767 2025-09-18 21:11:41.808694+00 2025-09-18 21:11:41.808701+00 f t 8886 \N \N f f +7768 2025-09-18 21:38:47.031524+00 2025-09-18 21:38:47.031534+00 f t 8887 \N \N f f +7769 2025-09-18 21:39:30.209138+00 2025-09-18 21:39:30.209149+00 f t 8888 \N \N f f +7770 2025-09-18 21:48:08.617273+00 2025-09-18 21:48:08.61728+00 f t 8889 \N \N f f +7771 2025-09-18 21:53:05.129788+00 2025-09-18 21:53:05.129796+00 f t 8890 \N \N f f +7772 2025-09-18 22:10:39.357502+00 2025-09-18 22:10:39.357514+00 f t 8891 \N \N f f +7773 2025-09-18 22:16:04.06625+00 2025-09-18 22:16:04.066258+00 f t 8892 \N \N f f +7774 2025-09-18 22:21:31.228885+00 2025-09-18 22:21:31.228895+00 f t 8893 \N \N f f +7775 2025-09-18 22:43:55.884728+00 2025-09-18 22:43:55.884737+00 f t 8894 \N \N f f +7776 2025-09-18 22:47:59.764864+00 2025-09-18 22:47:59.764873+00 f t 8895 \N \N f f +7777 2025-09-18 22:53:46.495268+00 2025-09-18 22:53:46.495276+00 f t 8896 \N \N f f +7778 2025-09-18 22:58:05.688411+00 2025-09-18 22:58:05.688422+00 f t 8897 \N \N f f +7779 2025-09-18 22:58:22.096244+00 2025-09-18 22:58:22.096253+00 f t 8898 \N \N f f +7780 2025-09-18 23:01:32.026783+00 2025-09-18 23:01:32.026794+00 f t 8899 \N \N f f +7781 2025-09-18 23:14:22.788156+00 2025-09-18 23:14:22.788167+00 f t 8900 \N \N f f +7782 2025-09-18 23:51:21.651073+00 2025-09-18 23:51:21.65108+00 f t 8901 \N \N f f +7783 2025-09-19 00:35:27.780395+00 2025-09-19 00:35:27.780407+00 f t 8902 \N \N f f +7784 2025-09-19 01:14:19.291198+00 2025-09-19 01:14:19.291207+00 f t 8903 \N \N f f +7785 2025-09-19 01:18:09.568584+00 2025-09-19 01:18:09.568592+00 f t 8904 \N \N f f +7786 2025-09-19 01:29:12.756392+00 2025-09-19 01:29:12.7564+00 f t 8905 \N \N f f +7787 2025-09-19 01:32:46.273031+00 2025-09-19 01:32:46.273041+00 f t 8906 \N \N f f +7788 2025-09-19 02:04:51.928794+00 2025-09-19 02:04:51.928802+00 f t 8907 \N \N f f +7789 2025-09-19 02:14:30.249364+00 2025-09-19 02:14:30.249372+00 f t 8908 \N \N f f +7790 2025-09-19 02:27:28.310824+00 2025-09-19 02:27:28.310833+00 f t 8909 \N \N f f +7791 2025-09-19 03:07:36.398257+00 2025-09-19 03:07:36.398265+00 f t 8910 \N \N f f +7792 2025-09-19 03:13:51.824449+00 2025-09-19 03:13:51.824456+00 f t 8911 \N \N f f +7793 2025-09-19 04:10:01.496945+00 2025-09-19 04:10:01.496961+00 f t 8912 \N \N f f +7794 2025-09-19 05:24:48.709406+00 2025-09-19 05:24:48.709414+00 f t 8913 \N \N f f +7795 2025-09-19 05:26:36.139933+00 2025-09-19 05:26:36.139942+00 f t 8914 \N \N f f +7796 2025-09-19 07:09:17.998661+00 2025-09-19 07:09:17.99867+00 f t 8915 \N \N f f +7797 2025-09-19 09:44:00.079495+00 2025-09-19 09:44:00.079507+00 f t 8916 \N \N f f +7798 2025-09-19 09:58:57.281467+00 2025-09-19 09:58:57.281475+00 f t 8917 \N \N f f +7799 2025-09-19 10:47:25.548894+00 2025-09-19 10:47:25.548906+00 f t 8918 \N \N f f +7800 2025-09-19 11:07:57.674007+00 2025-09-19 11:07:57.674018+00 f t 8919 \N \N f f +7801 2025-09-19 11:12:17.000178+00 2025-09-19 11:12:17.00019+00 f t 8920 \N \N f f +7802 2025-09-19 11:55:36.912796+00 2025-09-19 11:55:36.912805+00 f t 8921 \N \N f f +7803 2025-09-19 12:03:19.549264+00 2025-09-19 12:03:19.549272+00 f t 8922 \N \N f f +7804 2025-09-19 13:23:26.092014+00 2025-09-19 13:23:26.092024+00 f t 8923 \N \N f f +7805 2025-09-19 14:14:46.270789+00 2025-09-19 14:14:46.270797+00 f t 8924 \N \N f f +7806 2025-09-19 14:17:03.933653+00 2025-09-19 14:17:03.933665+00 f t 8925 \N \N f f +7807 2025-09-19 14:19:24.971773+00 2025-09-19 14:19:24.971781+00 f t 8926 \N \N f f +7808 2025-09-19 14:20:03.415734+00 2025-09-19 14:20:03.415747+00 f t 8927 \N \N f f +7809 2025-09-19 14:21:01.033839+00 2025-09-19 14:21:01.033848+00 f t 8928 \N \N f f +7810 2025-09-19 14:42:10.620917+00 2025-09-19 14:42:10.620931+00 f t 8929 \N \N f f +7811 2025-09-19 14:50:18.706608+00 2025-09-19 14:50:18.706621+00 f t 8930 \N \N f f +7812 2025-09-19 15:08:29.126464+00 2025-09-19 15:08:29.126472+00 f t 8931 \N \N f f +7813 2025-09-19 15:13:26.529361+00 2025-09-19 15:13:26.529367+00 f t 8932 \N \N f f +7814 2025-09-19 15:25:25.102503+00 2025-09-19 15:25:25.102513+00 f t 8933 \N \N f f +7815 2025-09-19 15:36:54.115051+00 2025-09-19 15:36:54.115059+00 f t 8934 \N \N f f +7816 2025-09-19 15:52:38.697443+00 2025-09-19 15:52:38.697451+00 f t 8935 \N \N f f +7817 2025-09-19 16:12:38.025512+00 2025-09-19 16:12:38.02552+00 f t 8936 \N \N f f +7818 2025-09-19 16:17:34.321316+00 2025-09-19 16:17:34.321322+00 f t 8937 \N \N f f +7819 2025-09-19 16:31:55.571035+00 2025-09-19 16:31:55.571041+00 f t 8938 \N \N f f +7820 2025-09-19 16:36:37.528676+00 2025-09-19 16:36:37.528687+00 f t 8939 \N \N f f +7821 2025-09-19 16:44:54.928499+00 2025-09-19 16:44:54.928507+00 f t 8940 \N \N f f +7822 2025-09-19 16:56:35.358285+00 2025-09-19 16:56:35.358295+00 f t 8941 \N \N f f +7823 2025-09-19 16:59:27.675899+00 2025-09-19 16:59:27.675907+00 f t 8942 \N \N f f +7824 2025-09-19 17:15:00.79175+00 2025-09-19 17:15:00.791762+00 f t 8943 \N \N f f +7825 2025-09-19 17:16:22.240337+00 2025-09-19 17:16:22.240347+00 f t 8944 \N \N f f +7826 2025-09-19 17:29:01.573994+00 2025-09-19 17:29:01.574007+00 f t 8945 \N \N f f +7827 2025-09-19 17:36:18.939295+00 2025-09-19 17:36:18.939307+00 f t 8946 \N \N f f +7828 2025-09-19 17:46:34.113154+00 2025-09-19 17:46:34.113168+00 f t 8948 \N \N f f +7830 2025-09-19 17:50:27.563603+00 2025-09-19 17:50:27.563609+00 f t 8949 \N \N f f +7831 2025-09-19 17:59:40.916007+00 2025-09-19 17:59:40.916016+00 f t 8950 \N \N f f +7829 2025-09-19 17:52:02.359943+00 2025-09-19 17:49:17.088368+00 f t 8947 \N \N f f +7832 2025-09-19 18:00:12.528565+00 2025-09-19 18:00:12.52858+00 f t 8951 \N \N f f +7833 2025-09-19 18:33:44.622626+00 2025-09-19 18:33:44.622638+00 f t 8952 \N \N f f +7834 2025-09-19 18:39:49.488767+00 2025-09-19 18:39:49.488774+00 f t 8953 \N \N f f +7835 2025-09-19 18:57:45.221787+00 2025-09-19 18:57:45.221798+00 f t 8954 \N \N f f +7836 2025-09-19 19:12:09.005263+00 2025-09-19 19:12:09.005271+00 f t 8955 \N \N f f +7837 2025-09-19 19:14:36.642559+00 2025-09-19 19:14:36.642571+00 f t 8956 \N \N f f +7838 2025-09-19 19:24:35.851613+00 2025-09-19 19:24:35.851619+00 f t 470 \N \N f f +7839 2025-09-19 19:53:43.957452+00 2025-09-19 19:53:43.957462+00 f t 8957 \N \N f f +7840 2025-09-19 20:08:28.161792+00 2025-09-19 20:08:28.161799+00 f t 8959 \N \N f f +7841 2025-09-19 20:08:58.87588+00 2025-09-19 20:08:58.875888+00 f t 8958 \N \N f f +7842 2025-09-19 20:09:08.130409+00 2025-09-19 20:09:08.130421+00 f t 8960 \N \N f f +7843 2025-09-19 20:24:52.406151+00 2025-09-19 20:24:52.406162+00 f t 8961 \N \N f f +7844 2025-09-19 20:30:00.84782+00 2025-09-19 20:30:00.847831+00 f t 8962 \N \N f f +7845 2025-09-19 20:46:05.89314+00 2025-09-19 20:46:05.893148+00 f t 8963 \N \N f f +7846 2025-09-19 20:55:41.219889+00 2025-09-19 20:55:41.219897+00 f t 8965 \N \N f f +7930 2025-09-21 14:38:40.86249+00 2025-09-21 14:38:40.862501+00 f t 9045 \N \N f f +7931 2025-09-21 15:21:01.12196+00 2025-09-21 15:21:01.121969+00 f t 9046 \N \N f f +7932 2025-09-21 15:24:52.595021+00 2025-09-21 15:24:52.595032+00 f t 9047 \N \N f f +7933 2025-09-21 15:35:34.941593+00 2025-09-21 15:35:34.941601+00 f t 9048 \N \N f f +7935 2025-09-21 15:50:20.350211+00 2025-09-21 15:50:20.35022+00 f t 9050 \N \N f f +7936 2025-09-21 15:58:37.777075+00 2025-09-21 15:58:37.777081+00 f t 9051 \N \N f f +7937 2025-09-21 16:04:12.583303+00 2025-09-21 16:04:12.583311+00 f t 9052 \N \N f f +7938 2025-09-21 16:04:25.688002+00 2025-09-21 16:04:25.68801+00 f t 9053 \N \N f f +7939 2025-09-21 16:04:56.012431+00 2025-09-21 16:04:56.012438+00 f t 9054 \N \N f f +7940 2025-09-21 16:07:10.322378+00 2025-09-21 16:07:10.322389+00 f t 9055 \N \N f f +7847 2025-09-19 20:58:08.108476+00 2025-09-19 20:57:01.785788+00 f t 8964 \N \N f f +7848 2025-09-19 21:31:23.789742+00 2025-09-19 21:31:23.789751+00 f t 8966 \N \N f f +7849 2025-09-19 21:41:58.054018+00 2025-09-19 21:41:58.054027+00 f t 8967 \N \N f f +7850 2025-09-19 21:42:34.901069+00 2025-09-19 21:42:34.901079+00 f t 8968 \N \N f f +7851 2025-09-19 22:07:20.548485+00 2025-09-19 22:07:20.548494+00 f t 8969 \N \N f f +7852 2025-09-19 22:14:33.549081+00 2025-09-19 22:14:33.54909+00 f t 8970 \N \N f f +7853 2025-09-19 22:14:35.943832+00 2025-09-19 22:14:35.943839+00 f t 8971 \N \N f f +7854 2025-09-19 22:27:04.37615+00 2025-09-19 22:27:04.376159+00 f t 8972 \N \N f f +7855 2025-09-19 22:45:22.783855+00 2025-09-19 22:45:22.783864+00 f t 8973 \N \N f f +7856 2025-09-19 22:49:56.147822+00 2025-09-19 22:49:56.147831+00 f t 8974 \N \N f f +7857 2025-09-19 22:52:14.079288+00 2025-09-19 22:52:14.079296+00 f t 8975 \N \N f f +7858 2025-09-19 23:08:23.655552+00 2025-09-19 23:08:23.655561+00 f t 8976 \N \N f f +7859 2025-09-19 23:14:04.304575+00 2025-09-19 23:14:04.304586+00 f t 8977 \N \N f f +7860 2025-09-19 23:22:58.067701+00 2025-09-19 23:22:58.067709+00 f t 3981 \N \N f f +7861 2025-09-19 23:33:57.028233+00 2025-09-19 23:33:57.028241+00 f t 8978 \N \N f f +7862 2025-09-19 23:36:36.835672+00 2025-09-19 23:36:36.83568+00 f t 8979 \N \N f f +7863 2025-09-19 23:45:43.137591+00 2025-09-19 23:45:43.1376+00 f t 8980 \N \N f f +7864 2025-09-20 00:01:38.128829+00 2025-09-20 00:01:38.128842+00 f t 8981 \N \N f f +7865 2025-09-20 00:16:40.750477+00 2025-09-20 00:16:40.750485+00 f t 8982 \N \N f f +7866 2025-09-20 00:18:15.302055+00 2025-09-20 00:18:15.302064+00 f t 8983 \N \N f f +7867 2025-09-20 00:29:19.359757+00 2025-09-20 00:29:19.359765+00 f t 8984 \N \N f f +7868 2025-09-20 01:46:52.92148+00 2025-09-20 01:46:52.921489+00 f t 8985 \N \N f f +7869 2025-09-20 03:07:13.474109+00 2025-09-20 03:07:13.474125+00 f t 8986 \N \N f f +7870 2025-09-20 03:38:07.556189+00 2025-09-20 03:38:07.556202+00 f t 8987 \N \N f f +7871 2025-09-20 04:21:51.751795+00 2025-09-20 04:21:51.751802+00 f t 8988 \N \N f f +7872 2025-09-20 04:26:53.771952+00 2025-09-20 04:26:53.771959+00 f t 8989 \N \N f f +7873 2025-09-20 04:45:16.389022+00 2025-09-20 04:45:16.389035+00 f t 8990 \N \N f f +7874 2025-09-20 10:18:36.672669+00 2025-09-20 10:18:36.672677+00 f t 8991 \N \N f f +7875 2025-09-20 10:23:27.832659+00 2025-09-20 10:23:27.832667+00 f t 8992 \N \N f f +7876 2025-09-20 10:30:03.490813+00 2025-09-20 10:30:03.49083+00 f t 8993 \N \N f f +7877 2025-09-20 11:04:44.718522+00 2025-09-20 11:04:44.718531+00 f t 8994 \N \N f f +7878 2025-09-20 11:57:15.738732+00 2025-09-20 11:57:15.738741+00 f t 8995 \N \N f f +7879 2025-09-20 12:18:43.471607+00 2025-09-20 12:18:43.471617+00 f t 8996 \N \N f f +7880 2025-09-20 13:05:40.25178+00 2025-09-20 13:05:40.251794+00 f t 6788 \N \N f f +7881 2025-09-20 13:07:10.291924+00 2025-09-20 13:07:10.291938+00 f t 8997 \N \N f f +7882 2025-09-20 13:25:21.152164+00 2025-09-20 13:25:21.152175+00 f t 8998 \N \N f f +7883 2025-09-20 13:33:49.175897+00 2025-09-20 13:33:49.175905+00 f t 8999 \N \N f f +7884 2025-09-20 13:43:29.069239+00 2025-09-20 13:43:29.069251+00 f t 9000 \N \N f f +7885 2025-09-20 14:33:31.185839+00 2025-09-20 14:33:31.185847+00 f t 9001 \N \N f f +7886 2025-09-20 14:48:29.034097+00 2025-09-20 14:48:29.034109+00 f t 9002 \N \N f f +7887 2025-09-20 14:58:20.1208+00 2025-09-20 14:58:20.12081+00 f t 9003 \N \N f f +7888 2025-09-20 15:14:51.081246+00 2025-09-20 15:14:51.081255+00 f t 9004 \N \N f f +7889 2025-09-20 15:19:08.789727+00 2025-09-20 15:19:08.789735+00 f t 9005 \N \N f f +7890 2025-09-20 15:29:20.327917+00 2025-09-20 15:29:20.327929+00 f t 9006 \N \N f f +7891 2025-09-20 15:54:39.078588+00 2025-09-20 15:54:39.078599+00 f t 9007 \N \N f f +7892 2025-09-20 15:56:24.798972+00 2025-09-20 15:56:24.79898+00 f t 5733 \N \N f f +7893 2025-09-20 16:28:57.23252+00 2025-09-20 16:28:57.232528+00 f t 9008 \N \N f f +7894 2025-09-20 16:31:24.97006+00 2025-09-20 16:31:24.970068+00 f t 9009 \N \N f f +7895 2025-09-20 18:00:46.668581+00 2025-09-20 18:00:46.668589+00 f t 9010 \N \N f f +7896 2025-09-20 18:07:18.507278+00 2025-09-20 18:07:18.507286+00 f t 9011 \N \N f f +7897 2025-09-20 18:19:16.143198+00 2025-09-20 18:19:16.143205+00 f t 9012 \N \N f f +7898 2025-09-20 18:33:49.606426+00 2025-09-20 18:33:49.606435+00 f t 9013 \N \N f f +7899 2025-09-20 18:50:38.684342+00 2025-09-20 18:50:38.684351+00 f t 9014 \N \N f f +7900 2025-09-20 18:55:52.575342+00 2025-09-20 18:55:52.57535+00 f t 9015 \N \N f f +7901 2025-09-20 19:06:41.781426+00 2025-09-20 19:06:41.781435+00 f t 9016 \N \N f f +7902 2025-09-20 19:07:44.40905+00 2025-09-20 19:07:44.409062+00 f t 9017 \N \N f f +7903 2025-09-20 19:47:37.597747+00 2025-09-20 19:47:37.597756+00 f t 9018 \N \N f f +7904 2025-09-20 20:24:11.36431+00 2025-09-20 20:24:11.364319+00 f t 9019 \N \N f f +7905 2025-09-20 20:39:19.017443+00 2025-09-20 20:39:19.017451+00 f t 9020 \N \N f f +7906 2025-09-20 22:04:37.785854+00 2025-09-20 22:04:37.785863+00 f t 9021 \N \N f f +7907 2025-09-20 22:16:46.615835+00 2025-09-20 22:16:46.615843+00 f t 9022 \N \N f f +7941 2025-09-21 16:17:06.403834+00 2025-09-21 16:17:06.403846+00 f t 9056 \N \N f f +7908 2025-09-20 22:24:38.894138+00 2025-09-20 22:19:56.948982+00 f t 9023 \N \N f f +7909 2025-09-20 22:33:49.727312+00 2025-09-20 22:33:49.727323+00 f t 9024 \N \N f f +7910 2025-09-20 22:49:18.525533+00 2025-09-20 22:49:18.525544+00 f t 9025 \N \N f f +7911 2025-09-20 23:30:02.19814+00 2025-09-20 23:30:02.198155+00 f t 9026 \N \N f f +7912 2025-09-21 00:26:16.369901+00 2025-09-21 00:26:16.369909+00 f t 9027 \N \N f f +7913 2025-09-21 00:35:57.156602+00 2025-09-21 00:35:57.156613+00 f t 9028 \N \N f f +7914 2025-09-21 01:12:09.81614+00 2025-09-21 01:12:09.81615+00 f t 9029 \N \N f f +7915 2025-09-21 01:13:21.419914+00 2025-09-21 01:13:21.419921+00 f t 9030 \N \N f f +7916 2025-09-21 01:14:24.469322+00 2025-09-21 01:14:24.469329+00 f t 9031 \N \N f f +7917 2025-09-21 02:29:56.187187+00 2025-09-21 02:29:56.187195+00 f t 9032 \N \N f f +7918 2025-09-21 03:23:50.259536+00 2025-09-21 03:23:50.259544+00 f t 9033 \N \N f f +7919 2025-09-21 05:41:52.288486+00 2025-09-21 05:41:52.288494+00 f t 9034 \N \N f f +7920 2025-09-21 07:03:58.482342+00 2025-09-21 07:03:58.482355+00 f t 9035 \N \N f f +7921 2025-09-21 07:25:15.762412+00 2025-09-21 07:25:15.76242+00 f t 9036 \N \N f f +7922 2025-09-21 07:41:18.728925+00 2025-09-21 07:41:18.728936+00 f t 9037 \N \N f f +7923 2025-09-21 08:52:13.703755+00 2025-09-21 08:52:13.703768+00 f t 9038 \N \N f f +7924 2025-09-21 11:25:39.732522+00 2025-09-21 11:25:39.732532+00 f t 9039 \N \N f f +7925 2025-09-21 11:49:57.66302+00 2025-09-21 11:49:57.663027+00 f t 9040 \N \N f f +7926 2025-09-21 12:03:10.581722+00 2025-09-21 12:03:10.581731+00 f t 9041 \N \N f f +7927 2025-09-21 12:40:19.744134+00 2025-09-21 12:40:19.744143+00 f t 9042 \N \N f f +7928 2025-09-21 12:55:54.221513+00 2025-09-21 12:55:54.22152+00 f t 9043 \N \N f f +7929 2025-09-21 14:26:02.464199+00 2025-09-21 14:26:02.464207+00 f t 9044 \N \N f f +7942 2025-09-21 16:46:08.339753+00 2025-09-21 16:46:08.33976+00 f t 9057 \N \N f f +7943 2025-09-21 18:19:57.87912+00 2025-09-21 18:19:57.879166+00 f t 9058 \N \N f f +7944 2025-09-21 18:25:06.620919+00 2025-09-21 18:25:06.620932+00 f t 9059 \N \N f f +7945 2025-09-21 19:14:19.249881+00 2025-09-21 19:14:19.249891+00 f t 2234 \N \N f f +7946 2025-09-21 19:18:05.499761+00 2025-09-21 19:18:05.499774+00 f t 9060 \N \N f f +7947 2025-09-21 19:19:34.693194+00 2025-09-21 19:19:34.693205+00 f t 9061 \N \N f f +7948 2025-09-21 19:20:22.305673+00 2025-09-21 19:20:22.305681+00 f t 9062 \N \N f f +7949 2025-09-21 19:21:58.736939+00 2025-09-21 19:21:58.736953+00 f t 9063 \N \N f f +7950 2025-09-21 19:23:37.271887+00 2025-09-21 19:23:37.2719+00 f t 9064 \N \N f f +7951 2025-09-21 19:29:28.254691+00 2025-09-21 19:29:28.2547+00 f t 9065 \N \N f f +7952 2025-09-21 19:30:07.217314+00 2025-09-21 19:30:07.217323+00 f t 9066 \N \N f f +7953 2025-09-21 19:36:11.182682+00 2025-09-21 19:36:11.18269+00 f t 9067 \N \N f f +7954 2025-09-21 19:39:36.805521+00 2025-09-21 19:39:36.805529+00 f t 9068 \N \N f f +7934 2025-09-21 19:41:19.941319+00 2025-09-21 15:36:05.667732+00 f t 9049 \N \N f f +7956 2025-09-21 20:01:46.057266+00 2025-09-21 19:58:48.119992+00 f t 9069 \N \N f f +7957 2025-09-21 20:14:10.201594+00 2025-09-21 20:14:10.201602+00 f t 9070 \N \N f f +7958 2025-09-21 20:37:45.010939+00 2025-09-21 20:37:45.010952+00 f t 523 \N \N f f +7959 2025-09-21 20:44:06.219821+00 2025-09-21 20:44:06.219834+00 f t 9071 \N \N f f +8056 2025-09-23 01:05:08.922309+00 2025-09-23 01:05:08.922317+00 f t 9161 \N \N f f +7960 2025-09-21 21:05:01.641042+00 2025-09-21 21:05:01.641057+00 f t 9072 \N \N f f +7955 2025-09-21 21:13:42.795751+00 2025-09-21 19:46:42.633115+00 f t 8397 \N \N f f +7961 2025-09-21 21:29:34.709805+00 2025-09-21 21:29:34.709815+00 f t 9073 \N \N f f +7962 2025-09-21 21:37:06.409522+00 2025-09-21 21:37:06.409531+00 f t 9074 \N \N f f +7963 2025-09-21 21:57:51.300195+00 2025-09-21 21:57:51.300204+00 f t 9075 \N \N f f +7964 2025-09-21 22:27:55.490861+00 2025-09-21 22:27:55.490871+00 f t 9076 \N \N f f +7965 2025-09-21 22:30:37.837817+00 2025-09-21 22:30:37.837825+00 f t 9077 \N \N f f +7966 2025-09-21 23:47:02.559213+00 2025-09-21 23:47:02.559225+00 f t 9078 \N \N f f +7967 2025-09-21 23:52:22.895408+00 2025-09-21 23:52:22.895417+00 f t 9079 \N \N f f +7968 2025-09-21 23:55:16.174848+00 2025-09-21 23:55:16.174857+00 f t 9080 \N \N f f +7969 2025-09-22 00:00:31.491998+00 2025-09-22 00:00:31.492011+00 f t 9081 \N \N f f +7970 2025-09-22 00:24:12.668215+00 2025-09-22 00:24:12.668224+00 f t 9082 \N \N f f +7971 2025-09-22 01:12:57.147953+00 2025-09-22 01:12:57.147962+00 f t 9083 \N \N f f +7972 2025-09-22 01:14:20.420525+00 2025-09-22 01:14:20.420538+00 f t 9084 \N \N f f +7973 2025-09-22 01:30:45.158956+00 2025-09-22 01:30:45.158964+00 f t 9085 \N \N f f +7974 2025-09-22 01:58:00.605691+00 2025-09-22 01:58:00.605699+00 f t 9086 \N \N f f +7975 2025-09-22 02:02:49.773145+00 2025-09-22 02:02:49.773153+00 f t 9087 \N \N f f +7976 2025-09-22 03:00:59.967544+00 2025-09-22 03:00:59.967558+00 f t 9088 \N \N f f +7977 2025-09-22 03:13:36.379954+00 2025-09-22 03:13:36.379962+00 f t 9089 \N \N f f +7978 2025-09-22 07:03:16.6418+00 2025-09-22 07:03:16.641814+00 f t 9090 \N \N f f +7979 2025-09-22 07:58:47.825839+00 2025-09-22 07:58:47.825848+00 f t 9091 \N \N f f +7980 2025-09-22 08:15:43.244822+00 2025-09-22 08:15:43.244831+00 f t 9092 \N \N f f +7981 2025-09-22 09:13:45.782402+00 2025-09-22 09:13:45.782409+00 f t 9093 \N \N f f +7982 2025-09-22 09:42:54.963854+00 2025-09-22 09:42:54.963865+00 f t 9094 \N \N f f +7983 2025-09-22 09:53:08.671825+00 2025-09-22 09:53:08.671832+00 f t 9095 \N \N f f +7985 2025-09-22 11:05:54.576146+00 2025-09-22 11:05:54.576158+00 f t 9097 \N \N f f +7986 2025-09-22 11:21:00.135298+00 2025-09-22 11:21:00.135307+00 f t 9098 \N \N f f +7987 2025-09-22 11:50:19.904018+00 2025-09-22 11:50:19.904032+00 f t 9099 \N \N f f +7988 2025-09-22 11:55:30.416745+00 2025-09-22 11:55:30.416758+00 f t 9100 \N \N f f +7989 2025-09-22 12:21:55.784821+00 2025-09-22 12:21:55.784832+00 f t 9101 \N \N f f +7990 2025-09-22 12:47:05.885621+00 2025-09-22 12:47:05.885629+00 f t 9102 \N \N f f +7991 2025-09-22 12:50:27.091975+00 2025-09-22 12:50:27.091986+00 f t 9103 \N \N f f +7992 2025-09-22 13:08:04.788067+00 2025-09-22 13:08:04.788076+00 f t 9104 \N \N f f +7993 2025-09-22 13:12:00.909549+00 2025-09-22 13:12:00.909559+00 f t 9105 \N \N f f +7994 2025-09-22 13:12:02.407329+00 2025-09-22 13:12:02.407338+00 f t 9106 \N \N f f +7995 2025-09-22 13:38:57.212658+00 2025-09-22 13:38:57.212666+00 f t 9107 \N \N f f +7996 2025-09-22 13:49:17.471657+00 2025-09-22 13:49:17.471668+00 f t 9108 \N \N f f +7997 2025-09-22 13:51:41.712381+00 2025-09-22 13:51:41.712389+00 f t 9109 \N \N f f +7998 2025-09-22 14:08:26.996683+00 2025-09-22 14:08:26.996691+00 f t 9110 \N \N f f +7999 2025-09-22 14:19:00.614381+00 2025-09-22 14:19:00.61439+00 f t 8237 \N \N f f +8000 2025-09-22 14:19:47.075787+00 2025-09-22 14:19:47.075799+00 f t 9111 \N \N f f +8001 2025-09-22 14:27:28.422575+00 2025-09-22 14:27:28.422584+00 f t 9112 \N \N f f +8002 2025-09-22 14:32:33.490029+00 2025-09-22 14:32:33.490037+00 f t 9113 \N \N f f +8003 2025-09-22 14:50:54.5102+00 2025-09-22 14:50:54.510209+00 f t 9114 \N \N f f +8004 2025-09-22 14:52:38.511532+00 2025-09-22 14:52:38.511541+00 f t 9115 \N \N f f +8005 2025-09-22 14:55:03.004917+00 2025-09-22 14:55:03.004932+00 f t 9116 \N \N f f +8007 2025-09-22 15:19:53.130898+00 2025-09-22 15:19:53.130906+00 f t 9117 \N \N f f +8008 2025-09-22 15:20:54.075611+00 2025-09-22 15:20:54.075618+00 f t 9118 \N \N f f +8009 2025-09-22 15:23:19.510293+00 2025-09-22 15:23:19.510301+00 f t 9119 \N \N f f +8010 2025-09-22 15:27:18.454998+00 2025-09-22 15:27:18.45501+00 f t 9120 \N \N f f +8006 2025-09-22 15:34:59.542659+00 2025-09-22 15:07:46.462722+00 f t 8385 \N \N f f +7984 2025-09-22 15:51:36.797213+00 2025-09-22 09:57:09.825734+00 f t 9096 \N \N f f +8011 2025-09-22 15:56:43.288179+00 2025-09-22 15:56:43.288188+00 f t 9121 \N \N f f +8012 2025-09-22 15:57:20.527808+00 2025-09-22 15:57:20.527816+00 f t 9122 \N \N f f +8013 2025-09-22 16:04:18.329786+00 2025-09-22 16:04:18.329793+00 f t 9123 \N \N f f +8014 2025-09-22 16:22:37.067924+00 2025-09-22 16:22:37.067937+00 f t 8639 \N \N f f +8015 2025-09-22 16:31:21.713468+00 2025-09-22 16:31:21.713475+00 f t 9124 \N \N f f +8016 2025-09-22 16:37:59.125609+00 2025-09-22 16:37:59.125617+00 f t 9125 \N \N f f +8017 2025-09-22 16:39:33.560041+00 2025-09-22 16:39:33.560051+00 f t 9126 \N \N f f +8018 2025-09-22 16:42:18.135036+00 2025-09-22 16:42:18.135047+00 f t 9127 \N \N f f +8019 2025-09-22 16:53:28.27659+00 2025-09-22 16:53:28.276603+00 f t 9128 \N \N f f +8020 2025-09-22 16:56:23.549959+00 2025-09-22 16:56:23.549966+00 f t 9129 \N \N f f +8021 2025-09-22 17:05:23.071026+00 2025-09-22 17:05:23.071033+00 f t 9130 \N \N f f +8022 2025-09-22 17:07:40.137878+00 2025-09-22 17:07:40.137887+00 f t 9131 \N \N f f +8023 2025-09-22 17:21:19.757664+00 2025-09-22 17:21:19.757672+00 f t 167 \N \N f f +9668 2025-10-15 01:52:01.231111+00 2025-10-15 01:52:01.231119+00 f t 10747 \N \N f f +8025 2025-09-22 18:16:16.643446+00 2025-09-22 18:16:16.643462+00 f t 9132 \N \N f f +8026 2025-09-22 18:20:58.462361+00 2025-09-22 18:20:58.462371+00 f t 9133 \N \N f f +8027 2025-09-22 18:48:24.313944+00 2025-09-22 18:48:24.313952+00 f t 9134 \N \N f f +8028 2025-09-22 18:55:49.733633+00 2025-09-22 18:55:49.733641+00 f t 2484 \N \N f f +8029 2025-09-22 19:31:49.793733+00 2025-09-22 19:31:49.79374+00 f t 9135 \N \N f f +8030 2025-09-22 19:36:19.417603+00 2025-09-22 19:36:19.41761+00 f t 9136 \N \N f f +8057 2025-09-23 01:16:12.330677+00 2025-09-23 01:16:12.330685+00 f t 9162 \N \N f f +8032 2025-09-22 19:52:33.988097+00 2025-09-22 19:52:33.988106+00 f t 9138 \N \N f f +8031 2025-09-22 19:54:42.042284+00 2025-09-22 19:43:01.592372+00 f t 9137 \N \N f f +8033 2025-09-22 20:02:48.392754+00 2025-09-22 20:02:48.392762+00 f t 822 \N \N f f +8034 2025-09-22 20:51:43.38006+00 2025-09-22 20:51:43.380069+00 f t 9139 \N \N f f +8035 2025-09-22 20:59:21.872075+00 2025-09-22 20:59:21.872085+00 f t 9140 \N \N f f +8036 2025-09-22 21:15:44.602196+00 2025-09-22 21:15:44.602209+00 f t 9141 \N \N f f +8037 2025-09-22 21:20:15.838057+00 2025-09-22 21:20:15.838065+00 f t 9142 \N \N f f +8038 2025-09-22 21:21:28.560717+00 2025-09-22 21:21:28.560724+00 f t 9143 \N \N f f +8039 2025-09-22 21:45:55.710492+00 2025-09-22 21:45:55.710505+00 f t 9144 \N \N f f +8040 2025-09-22 21:57:41.134245+00 2025-09-22 21:57:41.134255+00 f t 9145 \N \N f f +8041 2025-09-22 22:06:46.078387+00 2025-09-22 22:06:46.078395+00 f t 9146 \N \N f f +8042 2025-09-22 22:14:11.468553+00 2025-09-22 22:14:11.468567+00 f t 9147 \N \N f f +8043 2025-09-22 22:28:50.199041+00 2025-09-22 22:28:50.199052+00 f t 9148 \N \N f f +8044 2025-09-22 22:51:02.144695+00 2025-09-22 22:51:02.144704+00 f t 9149 \N \N f f +8045 2025-09-22 23:23:06.357571+00 2025-09-22 23:23:06.357579+00 f t 9150 \N \N f f +8046 2025-09-22 23:34:57.92746+00 2025-09-22 23:34:57.927467+00 f t 9152 \N \N f f +8047 2025-09-22 23:35:55.844833+00 2025-09-22 23:35:55.844843+00 f t 9151 \N \N f f +8048 2025-09-22 23:38:27.028318+00 2025-09-22 23:38:27.028327+00 f t 9153 \N \N f f +8049 2025-09-22 23:38:38.913535+00 2025-09-22 23:38:38.913545+00 f t 9154 \N \N f f +8050 2025-09-22 23:38:40.394199+00 2025-09-22 23:38:40.394208+00 f t 9155 \N \N f f +8051 2025-09-23 00:16:55.639824+00 2025-09-23 00:16:55.639832+00 f t 9156 \N \N f f +8052 2025-09-23 00:22:00.658309+00 2025-09-23 00:22:00.658317+00 f t 9157 \N \N f f +8053 2025-09-23 00:26:53.163426+00 2025-09-23 00:26:53.163436+00 f t 9158 \N \N f f +8054 2025-09-23 00:29:33.391315+00 2025-09-23 00:29:33.391326+00 f t 9159 \N \N f f +8055 2025-09-23 00:32:33.752947+00 2025-09-23 00:32:33.752955+00 f t 9160 \N \N f f +8058 2025-09-23 01:50:00.522594+00 2025-09-23 01:50:00.522607+00 f t 9163 \N \N f f +8059 2025-09-23 04:00:52.206624+00 2025-09-23 04:00:52.206633+00 f t 9164 \N \N f f +8060 2025-09-23 05:47:06.028752+00 2025-09-23 05:47:06.02876+00 f t 9165 \N \N f f +8061 2025-09-23 06:44:49.275004+00 2025-09-23 06:44:49.275012+00 f t 9166 \N \N f f +8062 2025-09-23 07:42:18.475735+00 2025-09-23 07:42:18.475743+00 f t 9167 \N \N f f +8063 2025-09-23 10:16:28.972498+00 2025-09-23 10:16:28.972506+00 f t 9168 \N \N f f +8064 2025-09-23 10:31:08.255865+00 2025-09-23 10:29:18.405049+00 f t 9169 \N \N f f +8065 2025-09-23 11:11:16.323469+00 2025-09-23 11:11:16.323477+00 f t 9170 \N \N f f +8066 2025-09-23 11:15:13.912731+00 2025-09-23 11:15:13.912739+00 f t 9171 \N \N f f +8067 2025-09-23 11:17:07.564233+00 2025-09-23 11:17:07.564242+00 f t 9172 \N \N f f +8068 2025-09-23 11:19:34.902116+00 2025-09-23 11:19:34.902129+00 f t 9173 \N \N f f +8069 2025-09-23 11:38:54.960156+00 2025-09-23 11:38:54.960163+00 f t 9174 \N \N f f +8070 2025-09-23 11:46:10.39901+00 2025-09-23 11:46:10.399017+00 f t 9175 \N \N f f +8071 2025-09-23 12:00:59.987777+00 2025-09-23 12:00:59.987788+00 f t 9176 \N \N f f +8072 2025-09-23 12:06:45.83814+00 2025-09-23 12:06:45.838151+00 f t 9177 \N \N f f +8073 2025-09-23 12:13:03.774516+00 2025-09-23 12:13:03.774523+00 f t 9178 \N \N f f +8074 2025-09-23 12:34:19.535912+00 2025-09-23 12:34:19.535921+00 f t 9179 \N \N f f +8075 2025-09-23 13:04:09.896502+00 2025-09-23 13:04:09.896513+00 f t 9180 \N \N f f +8076 2025-09-23 13:14:41.745612+00 2025-09-23 13:14:41.745617+00 f t 9181 \N \N f f +8077 2025-09-23 13:58:18.849877+00 2025-09-23 13:58:18.849885+00 f t 9182 \N \N f f +8078 2025-09-23 14:52:48.697649+00 2025-09-23 14:52:48.69766+00 f t 9183 \N \N f f +8079 2025-09-23 14:53:33.126684+00 2025-09-23 14:53:33.126695+00 f t 9184 \N \N f f +8080 2025-09-23 15:00:12.665+00 2025-09-23 15:00:12.665013+00 f t 9185 \N \N f f +8167 2025-09-24 18:09:00.053725+00 2025-09-24 18:09:00.05374+00 f t 9263 \N \N f f +8024 2025-09-23 15:32:39.889128+00 2025-09-22 17:47:25.278607+00 f t 7443 \N \N f f +8081 2025-09-23 16:06:38.602728+00 2025-09-23 16:01:06.629318+00 f t 4384 \N \N f f +8082 2025-09-23 16:07:53.496162+00 2025-09-23 16:07:53.496177+00 f t 4433 \N \N f f +8083 2025-09-23 16:17:26.401589+00 2025-09-23 16:17:26.401601+00 f t 9186 \N \N f f +8084 2025-09-23 16:19:29.885253+00 2025-09-23 16:19:29.88526+00 f t 9187 \N \N f f +8085 2025-09-23 16:20:05.080305+00 2025-09-23 16:20:05.080319+00 f t 6788 \N \N f f +8086 2025-09-23 16:28:09.796693+00 2025-09-23 16:28:09.796704+00 f t 9188 \N \N f f +8087 2025-09-23 17:10:01.647083+00 2025-09-23 17:10:01.647096+00 f t 9189 \N \N f f +8088 2025-09-23 17:26:20.477974+00 2025-09-23 17:26:20.477986+00 f t 9190 \N \N f f +8089 2025-09-23 18:18:42.149692+00 2025-09-23 18:18:42.149703+00 f t 9191 \N \N f f +8090 2025-09-23 18:21:53.348641+00 2025-09-23 18:21:53.348648+00 f t 9192 \N \N f f +8091 2025-09-23 18:39:30.005256+00 2025-09-23 18:39:30.005264+00 f t 9193 \N \N f f +8092 2025-09-23 18:44:54.442739+00 2025-09-23 18:44:54.442748+00 f t 9194 \N \N f f +8093 2025-09-23 18:45:22.108934+00 2025-09-23 18:45:22.108942+00 f t 9195 \N \N f f +8094 2025-09-23 18:52:40.637029+00 2025-09-23 18:52:40.637037+00 f t 9196 \N \N f f +8095 2025-09-23 19:00:42.856318+00 2025-09-23 19:00:42.856326+00 f t 9197 \N \N f f +8096 2025-09-23 19:16:43.271791+00 2025-09-23 19:16:43.271798+00 f t 9198 \N \N f f +8097 2025-09-23 19:35:49.537863+00 2025-09-23 19:35:49.537872+00 f t 9199 \N \N f f +8168 2025-09-24 18:09:35.281697+00 2025-09-24 18:09:35.281704+00 f t 9264 \N \N f f +8169 2025-09-24 18:10:00.055995+00 2025-09-24 18:10:00.056004+00 f t 9265 \N \N f f +8099 2025-09-23 20:25:04.130946+00 2025-09-23 20:25:04.13096+00 f t 9200 \N \N f f +8100 2025-09-23 20:36:16.412623+00 2025-09-23 20:36:16.412633+00 f t 9201 \N \N f f +8170 2025-09-24 18:13:25.166454+00 2025-09-24 18:13:25.166464+00 f t 9266 \N \N f f +8098 2025-09-23 20:40:39.953243+00 2025-09-23 19:50:29.424997+00 f t 9071 \N \N f f +8101 2025-09-23 20:57:49.827034+00 2025-09-23 20:57:49.827045+00 f t 9202 \N \N f f +8102 2025-09-23 21:08:48.914952+00 2025-09-23 21:08:48.914962+00 f t 9203 \N \N f f +8103 2025-09-23 21:44:14.627687+00 2025-09-23 21:44:14.627694+00 f t 9204 \N \N f f +8104 2025-09-23 21:53:19.143373+00 2025-09-23 21:53:19.143384+00 f t 9205 \N \N f f +8105 2025-09-23 22:24:04.342589+00 2025-09-23 22:24:04.342598+00 f t 9206 \N \N f f +8106 2025-09-23 22:32:55.582111+00 2025-09-23 22:32:55.582121+00 f t 9207 \N \N f f +8107 2025-09-23 22:37:45.763546+00 2025-09-23 22:37:45.763553+00 f t 9208 \N \N f f +8108 2025-09-23 22:53:00.92027+00 2025-09-23 22:53:00.92028+00 f t 9209 \N \N f f +8109 2025-09-23 22:54:06.205719+00 2025-09-23 22:54:06.205726+00 f t 9210 \N \N f f +8110 2025-09-23 23:00:38.449563+00 2025-09-23 23:00:38.449577+00 f t 9211 \N \N f f +8111 2025-09-23 23:06:06.479757+00 2025-09-23 23:06:06.479766+00 f t 9212 \N \N f f +8112 2025-09-23 23:08:35.698569+00 2025-09-23 23:08:35.69858+00 f t 9213 \N \N f f +8113 2025-09-23 23:09:15.773949+00 2025-09-23 23:09:15.773958+00 f t 9214 \N \N f f +8114 2025-09-23 23:24:46.651085+00 2025-09-23 23:20:39.546422+00 f t 9215 \N \N f f +8115 2025-09-23 23:26:35.659834+00 2025-09-23 23:26:35.659846+00 f t 9216 \N \N f f +8116 2025-09-23 23:41:23.138258+00 2025-09-23 23:41:23.138265+00 f t 9217 \N \N f f +8117 2025-09-23 23:48:32.205177+00 2025-09-23 23:48:32.205184+00 f t 9218 \N \N f f +8118 2025-09-24 00:12:54.963036+00 2025-09-24 00:12:54.963044+00 f t 9219 \N \N f f +8119 2025-09-24 00:20:27.524459+00 2025-09-24 00:20:27.524466+00 f t 6358 \N \N f f +9669 2025-10-15 02:50:44.263528+00 2025-10-15 02:50:44.263539+00 f t 10748 \N \N f f +8171 2025-09-24 18:21:32.664209+00 2025-09-24 18:21:32.664217+00 f t 9267 \N \N f f +8122 2025-09-24 00:47:44.392519+00 2025-09-24 00:47:44.392528+00 f t 9221 \N \N f f +8123 2025-09-24 01:33:48.772427+00 2025-09-24 01:33:48.772439+00 f t 9222 \N \N f f +8124 2025-09-24 02:12:37.039819+00 2025-09-24 02:12:37.039832+00 f t 9223 \N \N f f +8125 2025-09-24 02:35:27.679461+00 2025-09-24 02:35:27.679469+00 f t 9224 \N \N f f +8126 2025-09-24 02:54:09.646775+00 2025-09-24 02:54:09.646786+00 f t 9225 \N \N f f +8127 2025-09-24 03:01:07.877848+00 2025-09-24 03:01:07.877861+00 f t 9226 \N \N f f +8128 2025-09-24 04:02:25.919421+00 2025-09-24 04:02:25.919428+00 f t 9227 \N \N f f +8129 2025-09-24 04:30:04.605782+00 2025-09-24 04:30:04.605796+00 f t 9228 \N \N f f +8130 2025-09-24 04:47:47.236453+00 2025-09-24 04:47:47.236464+00 f t 9229 \N \N f f +8131 2025-09-24 05:01:40.857481+00 2025-09-24 05:01:40.857489+00 f t 9230 \N \N f f +8132 2025-09-24 10:59:58.229907+00 2025-09-24 10:59:58.229914+00 f t 9231 \N \N f f +8133 2025-09-24 11:12:20.578848+00 2025-09-24 11:12:20.578857+00 f t 9232 \N \N f f +8134 2025-09-24 11:20:28.569971+00 2025-09-24 11:20:28.569982+00 f t 9233 \N \N f f +8135 2025-09-24 11:37:45.545497+00 2025-09-24 11:37:45.545507+00 f t 9234 \N \N f f +8136 2025-09-24 11:40:37.700109+00 2025-09-24 11:40:37.70012+00 f t 9235 \N \N f f +8137 2025-09-24 11:59:02.836069+00 2025-09-24 11:59:02.836081+00 f t 9236 \N \N f f +8138 2025-09-24 12:28:43.748235+00 2025-09-24 12:28:43.748243+00 f t 9237 \N \N f f +8139 2025-09-24 12:29:41.077496+00 2025-09-24 12:29:41.077503+00 f t 9238 \N \N f f +8140 2025-09-24 12:33:43.93019+00 2025-09-24 12:33:43.930197+00 f t 9239 \N \N f f +8141 2025-09-24 12:35:52.2525+00 2025-09-24 12:35:52.252507+00 f t 9240 \N \N f f +8142 2025-09-24 13:22:07.51822+00 2025-09-24 13:22:07.518231+00 f t 9241 \N \N f f +8143 2025-09-24 13:22:35.961787+00 2025-09-24 13:22:35.961798+00 f t 9242 \N \N f f +8144 2025-09-24 13:23:42.516187+00 2025-09-24 13:23:42.516199+00 f t 9243 \N \N f f +8145 2025-09-24 14:13:38.011644+00 2025-09-24 14:13:38.011651+00 f t 9244 \N \N f f +8172 2025-09-24 18:24:15.961447+00 2025-09-24 18:24:15.961455+00 f t 9268 \N \N f f +8146 2025-09-24 14:56:37.756778+00 2025-09-24 14:56:37.756785+00 f t 9245 \N \N f f +8147 2025-09-24 14:59:47.809056+00 2025-09-24 14:59:47.809063+00 f t 822 \N \N f f +8148 2025-09-24 15:07:03.11316+00 2025-09-24 15:07:03.113168+00 f t 9246 \N \N f f +8149 2025-09-24 15:07:21.49572+00 2025-09-24 15:07:21.495727+00 f t 9247 \N \N f f +8150 2025-09-24 15:58:15.863467+00 2025-09-24 15:58:15.863473+00 f t 9248 \N \N f f +8151 2025-09-24 16:06:48.181971+00 2025-09-24 16:06:48.181983+00 f t 9249 \N \N f f +8152 2025-09-24 16:08:04.289523+00 2025-09-24 16:08:04.289531+00 f t 9250 \N \N f f +8153 2025-09-24 16:24:59.518783+00 2025-09-24 16:24:59.518789+00 f t 9251 \N \N f f +8154 2025-09-24 16:36:17.024956+00 2025-09-24 16:36:17.024962+00 f t 9252 \N \N f f +8155 2025-09-24 16:45:52.09834+00 2025-09-24 16:45:52.098346+00 f t 8275 \N \N f f +8156 2025-09-24 16:50:29.011586+00 2025-09-24 16:50:29.011593+00 f t 9253 \N \N f f +8121 2025-09-24 17:17:59.739266+00 2025-09-24 00:39:55.45016+00 f t 9220 \N \N f f +8157 2025-09-24 17:20:59.462639+00 2025-09-24 17:20:59.462646+00 f t 9254 \N \N f f +8158 2025-09-24 17:27:52.116644+00 2025-09-24 17:27:52.116652+00 f t 9255 \N \N f f +8186 2025-09-25 16:20:49.787799+00 2025-09-24 19:51:31.941977+00 f t 9282 \N \N f f +8159 2025-09-24 17:31:34.078388+00 2025-09-24 17:31:34.078399+00 f t 9256 \N \N f f +8160 2025-09-24 17:35:51.33922+00 2025-09-24 17:35:51.339228+00 f t 9257 \N \N f f +8161 2025-09-24 17:37:43.288036+00 2025-09-24 17:37:43.288043+00 f t 9258 \N \N f f +8163 2025-09-24 17:53:32.921194+00 2025-09-24 17:53:32.9212+00 f t 9259 \N \N f f +8173 2025-09-24 18:24:48.709058+00 2025-09-24 18:24:48.709069+00 f t 9269 \N \N f f +8162 2025-09-24 17:58:19.306917+00 2025-09-24 17:52:29.177362+00 f t 9137 \N \N f f +8164 2025-09-24 18:03:03.182785+00 2025-09-24 18:03:03.182795+00 f t 9260 \N \N f f +8165 2025-09-24 18:03:20.112963+00 2025-09-24 18:03:20.112974+00 f t 9261 \N \N f f +8166 2025-09-24 18:08:42.342841+00 2025-09-24 18:08:42.342849+00 f t 9262 \N \N f f +8175 2025-09-24 18:25:54.171511+00 2025-09-24 18:25:54.171522+00 f t 9271 \N \N f f +8176 2025-09-24 18:26:03.266233+00 2025-09-24 18:26:03.266245+00 f t 9272 \N \N f f +8177 2025-09-24 18:26:46.468113+00 2025-09-24 18:26:46.46812+00 f t 9273 \N \N f f +8178 2025-09-24 19:19:59.247191+00 2025-09-24 19:19:59.2472+00 f t 9274 \N \N f f +8179 2025-09-24 19:22:03.801512+00 2025-09-24 19:22:03.801524+00 f t 9275 \N \N f f +8181 2025-09-24 19:29:05.11762+00 2025-09-24 19:29:05.117628+00 f t 9277 \N \N f f +8180 2025-09-24 19:31:11.941836+00 2025-09-24 19:26:58.838367+00 f t 9276 \N \N f f +8182 2025-09-24 19:32:04.72049+00 2025-09-24 19:32:04.7205+00 f t 9278 \N \N f f +8183 2025-09-24 19:34:32.892612+00 2025-09-24 19:34:32.892621+00 f t 9279 \N \N f f +8184 2025-09-24 19:43:22.393972+00 2025-09-24 19:43:22.393982+00 f t 9280 \N \N f f +8185 2025-09-24 19:43:57.09028+00 2025-09-24 19:43:57.090288+00 f t 9281 \N \N f f +8187 2025-09-24 19:52:13.486369+00 2025-09-24 19:52:13.486382+00 f t 9283 \N \N f f +8188 2025-09-24 20:03:13.254326+00 2025-09-24 20:03:13.254339+00 f t 9284 \N \N f f +8189 2025-09-24 20:30:02.866488+00 2025-09-24 20:30:02.866503+00 f t 9285 \N \N f f +8190 2025-09-24 20:46:58.782132+00 2025-09-24 20:46:58.78214+00 f t 9286 \N \N f f +8174 2025-09-25 16:00:06.537326+00 2025-09-24 18:25:27.914686+00 f t 9270 \N \N f f +8191 2025-09-24 20:51:56.358697+00 2025-09-24 20:51:56.358706+00 f t 9287 \N \N f f +8192 2025-09-24 21:02:03.102795+00 2025-09-24 21:02:03.102808+00 f t 9288 \N \N f f +8193 2025-09-24 21:08:59.76182+00 2025-09-24 21:08:59.761842+00 f t 9289 \N \N f f +8194 2025-09-24 21:10:37.062268+00 2025-09-24 21:10:37.062276+00 f t 9290 \N \N f f +8195 2025-09-24 21:44:48.872243+00 2025-09-24 21:44:48.872252+00 f t 9291 \N \N f f +8196 2025-09-24 22:17:41.039861+00 2025-09-24 22:17:41.039871+00 f t 9292 \N \N f f +8197 2025-09-24 22:23:34.006278+00 2025-09-24 22:23:34.006286+00 f t 9293 \N \N f f +8198 2025-09-24 22:30:12.501836+00 2025-09-24 22:30:12.501848+00 f t 9294 \N \N f f +8199 2025-09-24 22:31:06.347745+00 2025-09-24 22:31:06.347757+00 f t 9295 \N \N f f +8200 2025-09-24 22:45:01.464854+00 2025-09-24 22:45:01.464868+00 f t 9296 \N \N f f +8201 2025-09-24 22:55:39.721325+00 2025-09-24 22:55:39.721332+00 f t 461 \N \N f f +8202 2025-09-24 22:56:53.845955+00 2025-09-24 22:56:53.845962+00 f t 9297 \N \N f f +8203 2025-09-24 23:35:34.948815+00 2025-09-24 23:35:34.948826+00 f t 9298 \N \N f f +8204 2025-09-24 23:49:04.591872+00 2025-09-24 23:49:04.591888+00 f t 9299 \N \N f f +8205 2025-09-24 23:53:27.591431+00 2025-09-24 23:53:27.59144+00 f t 9300 \N \N f f +8206 2025-09-25 00:02:01.104964+00 2025-09-25 00:02:01.104973+00 f t 9301 \N \N f f +8207 2025-09-25 00:10:48.33731+00 2025-09-25 00:10:48.337317+00 f t 9302 \N \N f f +8208 2025-09-25 01:02:11.908818+00 2025-09-25 01:02:11.908826+00 f t 9303 \N \N f f +8209 2025-09-25 01:18:56.061471+00 2025-09-25 01:18:56.061481+00 f t 9304 \N \N f f +8210 2025-09-25 01:22:27.795702+00 2025-09-25 01:22:27.795708+00 f t 9305 \N \N f f +8211 2025-09-25 02:06:34.157226+00 2025-09-25 02:06:34.157233+00 f t 9306 \N \N f f +8212 2025-09-25 02:23:08.256987+00 2025-09-25 02:23:08.256994+00 f t 9307 \N \N f f +8213 2025-09-25 03:27:40.533419+00 2025-09-25 03:27:40.533427+00 f t 9308 \N \N f f +8214 2025-09-25 03:58:00.129476+00 2025-09-25 03:58:00.129486+00 f t 9309 \N \N f f +8215 2025-09-25 04:39:11.25049+00 2025-09-25 04:39:11.250498+00 f t 9310 \N \N f f +8295 2025-09-26 03:06:13.360269+00 2025-09-26 03:06:13.36028+00 f t 9384 \N \N f f +8216 2025-09-25 06:10:07.494376+00 2025-09-25 06:06:20.420751+00 f t 9311 \N \N f f +8217 2025-09-25 06:37:58.79141+00 2025-09-25 06:37:58.791422+00 f t 9312 \N \N f f +8218 2025-09-25 08:22:57.046966+00 2025-09-25 08:22:57.046974+00 f t 9313 \N \N f f +8219 2025-09-25 09:04:32.178414+00 2025-09-25 09:04:32.178422+00 f t 9314 \N \N f f +8220 2025-09-25 09:21:56.807058+00 2025-09-25 09:21:56.807067+00 f t 9315 \N \N f f +8221 2025-09-25 09:31:35.373091+00 2025-09-25 09:31:35.373097+00 f t 9316 \N \N f f +8222 2025-09-25 09:44:21.642234+00 2025-09-25 09:44:21.642242+00 f t 9317 \N \N f f +8223 2025-09-25 11:43:12.013663+00 2025-09-25 11:43:12.01367+00 f t 9318 \N \N f f +8224 2025-09-25 11:50:55.545109+00 2025-09-25 11:50:55.545119+00 f t 9319 \N \N f f +8225 2025-09-25 13:07:50.219329+00 2025-09-25 13:07:50.219337+00 f t 9320 \N \N f f +8226 2025-09-25 13:08:35.412687+00 2025-09-25 13:08:35.412695+00 f t 9321 \N \N f f +8227 2025-09-25 13:09:21.932667+00 2025-09-25 13:09:21.932675+00 f t 9322 \N \N f f +8228 2025-09-25 13:10:38.980227+00 2025-09-25 13:10:38.980233+00 f t 9323 \N \N f f +8229 2025-09-25 13:15:22.674382+00 2025-09-25 13:15:22.674391+00 f t 9324 \N \N f f +8120 2025-09-25 13:35:09.565049+00 2025-09-24 00:32:25.803809+00 f t 9109 \N \N f f +8230 2025-09-25 13:40:27.821679+00 2025-09-25 13:40:27.82169+00 f t 3656 \N \N f f +8231 2025-09-25 13:53:55.622742+00 2025-09-25 13:53:55.622753+00 f t 9325 \N \N f f +8232 2025-09-25 14:17:01.45439+00 2025-09-25 14:17:01.454401+00 f t 9326 \N \N f f +8233 2025-09-25 14:21:31.838056+00 2025-09-25 14:21:31.838061+00 f t 9327 \N \N f f +8234 2025-09-25 14:25:51.859704+00 2025-09-25 14:25:51.859713+00 f t 9328 \N \N f f +8235 2025-09-25 14:28:03.349591+00 2025-09-25 14:28:03.349599+00 f t 9329 \N \N f f +8236 2025-09-25 14:45:43.168546+00 2025-09-25 14:45:43.168557+00 f t 9330 \N \N f f +8237 2025-09-25 14:50:45.699221+00 2025-09-25 14:50:45.699232+00 f t 167 \N \N f f +8238 2025-09-25 15:14:58.078108+00 2025-09-25 15:14:46.691364+00 f t 9331 \N \N f f +8239 2025-09-25 15:32:05.021675+00 2025-09-25 15:32:05.021687+00 f t 9332 \N \N f f +8240 2025-09-25 15:32:38.081272+00 2025-09-25 15:32:38.08128+00 f t 9333 \N \N f f +8241 2025-09-25 15:35:07.861021+00 2025-09-25 15:35:07.861032+00 f t 9334 \N \N f f +8242 2025-09-25 15:52:27.879786+00 2025-09-25 15:52:27.879793+00 f t 9335 \N \N f f +8243 2025-09-25 15:57:10.738041+00 2025-09-25 15:57:10.738049+00 f t 9336 \N \N f f +8244 2025-09-25 16:00:18.996+00 2025-09-25 16:00:18.996015+00 f t 9337 \N \N f f +8245 2025-09-25 16:04:39.599984+00 2025-09-25 16:04:39.599992+00 f t 9338 \N \N f f +8246 2025-09-25 16:05:47.673176+00 2025-09-25 16:05:47.673183+00 f t 9339 \N \N f f +8247 2025-09-25 16:09:28.531056+00 2025-09-25 16:09:28.531064+00 f t 9340 \N \N f f +8248 2025-09-25 16:26:52.175765+00 2025-09-25 16:26:52.175774+00 f t 2732 \N \N f f +8249 2025-09-25 16:35:13.141319+00 2025-09-25 16:35:13.141332+00 f t 6788 \N \N f f +8250 2025-09-25 16:40:10.802822+00 2025-09-25 16:40:10.802835+00 f t 9341 \N \N f f +8251 2025-09-25 16:45:41.9289+00 2025-09-25 16:45:41.928908+00 f t 9342 \N \N f f +8252 2025-09-25 17:25:02.455525+00 2025-09-25 17:25:02.455538+00 f t 9343 \N \N f f +8253 2025-09-25 17:31:30.82648+00 2025-09-25 17:31:30.826488+00 f t 7187 \N \N f f +8254 2025-09-25 17:32:43.647371+00 2025-09-25 17:32:43.647382+00 f t 9344 \N \N f f +8255 2025-09-25 17:39:14.86394+00 2025-09-25 17:39:14.863955+00 f t 9346 \N \N f f +8256 2025-09-25 17:43:06.061978+00 2025-09-25 17:43:06.06199+00 f t 9345 \N \N f f +8257 2025-09-25 18:02:49.353244+00 2025-09-25 18:02:49.353253+00 f t 9347 \N \N f f +8258 2025-09-25 18:33:18.156925+00 2025-09-25 18:33:18.156936+00 f t 9348 \N \N f f +8259 2025-09-25 18:42:16.203742+00 2025-09-25 18:42:16.203753+00 f t 9349 \N \N f f +8260 2025-09-25 18:44:05.112054+00 2025-09-25 18:44:05.112065+00 f t 9350 \N \N f f +8261 2025-09-25 18:50:38.480488+00 2025-09-25 18:50:38.480495+00 f t 9351 \N \N f f +8262 2025-09-25 18:59:53.164389+00 2025-09-25 18:59:53.164401+00 f t 9352 \N \N f f +8263 2025-09-25 19:40:10.391477+00 2025-09-25 19:40:10.391486+00 f t 9353 \N \N f f +8264 2025-09-25 19:41:43.29384+00 2025-09-25 19:41:43.293847+00 f t 9354 \N \N f f +8265 2025-09-25 19:52:27.526412+00 2025-09-25 19:52:27.526419+00 f t 9355 \N \N f f +8266 2025-09-25 20:03:27.466281+00 2025-09-25 20:03:27.466292+00 f t 9356 \N \N f f +8267 2025-09-25 20:10:07.556702+00 2025-09-25 20:10:07.556714+00 f t 9357 \N \N f f +8268 2025-09-25 20:55:01.10582+00 2025-09-25 20:55:01.10583+00 f t 9358 \N \N f f +8269 2025-09-25 21:04:49.689354+00 2025-09-25 21:04:49.689366+00 f t 9359 \N \N f f +8270 2025-09-25 21:15:28.021586+00 2025-09-25 21:15:28.021593+00 f t 9360 \N \N f f +8271 2025-09-25 21:30:10.344287+00 2025-09-25 21:30:10.344299+00 f t 9361 \N \N f f +8272 2025-09-25 21:55:47.101934+00 2025-09-25 21:51:53.324004+00 f t 9362 \N \N f f +8273 2025-09-25 21:58:12.421564+00 2025-09-25 21:58:12.421575+00 f t 9363 \N \N f f +8274 2025-09-25 22:04:09.624458+00 2025-09-25 22:04:09.624468+00 f t 9364 \N \N f f +8275 2025-09-25 22:25:28.735977+00 2025-09-25 22:25:28.735987+00 f t 9365 \N \N f f +8276 2025-09-25 22:32:30.152923+00 2025-09-25 22:32:30.15299+00 f t 9366 \N \N f f +8277 2025-09-25 22:36:09.215193+00 2025-09-25 22:36:09.215201+00 f t 9367 \N \N f f +8278 2025-09-25 22:50:47.233271+00 2025-09-25 22:50:47.233282+00 f t 9368 \N \N f f +8279 2025-09-25 23:10:43.324257+00 2025-09-25 23:10:43.324267+00 f t 9369 \N \N f f +8280 2025-09-25 23:19:58.752657+00 2025-09-25 23:19:58.752668+00 f t 9370 \N \N f f +8281 2025-09-25 23:37:55.192568+00 2025-09-25 23:37:55.192575+00 f t 9371 \N \N f f +8282 2025-09-25 23:45:32.588783+00 2025-09-25 23:45:32.588793+00 f t 9372 \N \N f f +8283 2025-09-25 23:47:02.639572+00 2025-09-25 23:47:02.639584+00 f t 3553 \N \N f f +8284 2025-09-25 23:54:17.140577+00 2025-09-25 23:54:17.140588+00 f t 9373 \N \N f f +8285 2025-09-26 00:11:45.073659+00 2025-09-26 00:11:45.073671+00 f t 9374 \N \N f f +8286 2025-09-26 01:00:18.51379+00 2025-09-26 01:00:18.513801+00 f t 9375 \N \N f f +8287 2025-09-26 01:02:23.432089+00 2025-09-26 01:02:23.432098+00 f t 9376 \N \N f f +8288 2025-09-26 01:12:51.965321+00 2025-09-26 01:12:51.965328+00 f t 9377 \N \N f f +8289 2025-09-26 01:47:57.476771+00 2025-09-26 01:47:57.47678+00 f t 9378 \N \N f f +8290 2025-09-26 01:55:33.288289+00 2025-09-26 01:55:33.288298+00 f t 9379 \N \N f f +8291 2025-09-26 02:04:36.270437+00 2025-09-26 02:04:36.270449+00 f t 9380 \N \N f f +8292 2025-09-26 02:33:22.899976+00 2025-09-26 02:33:22.899986+00 f t 9381 \N \N f f +8293 2025-09-26 02:35:49.214066+00 2025-09-26 02:35:49.214074+00 f t 9382 \N \N f f +8294 2025-09-26 02:42:32.302188+00 2025-09-26 02:42:32.302196+00 f t 9383 \N \N f f +8296 2025-09-26 03:06:49.977954+00 2025-09-26 03:06:49.977966+00 f t 9385 \N \N f f +8297 2025-09-26 03:18:33.320883+00 2025-09-26 03:18:33.320891+00 f t 9386 \N \N f f +8298 2025-09-26 03:37:47.787111+00 2025-09-26 03:37:47.787124+00 f t 9387 \N \N f f +8299 2025-09-26 04:01:25.837844+00 2025-09-26 04:01:25.837855+00 f t 9388 \N \N f f +8300 2025-09-26 04:23:06.261369+00 2025-09-26 04:23:06.261381+00 f t 9389 \N \N f f +8301 2025-09-26 05:09:15.308856+00 2025-09-26 05:09:15.308872+00 f t 9390 \N \N f f +8302 2025-09-26 06:44:20.897659+00 2025-09-26 06:44:20.897666+00 f t 9391 \N \N f f +8303 2025-09-26 07:28:47.458701+00 2025-09-26 07:28:47.458712+00 f t 9392 \N \N f f +8304 2025-09-26 09:33:50.8105+00 2025-09-26 09:33:50.810507+00 f t 9393 \N \N f f +8305 2025-09-26 09:58:04.358859+00 2025-09-26 09:58:04.358869+00 f t 9394 \N \N f f +8306 2025-09-26 10:54:12.310717+00 2025-09-26 10:54:12.31073+00 f t 9395 \N \N f f +8307 2025-09-26 10:57:11.009027+00 2025-09-26 10:57:11.009039+00 f t 9396 \N \N f f +8308 2025-09-26 11:35:25.031664+00 2025-09-26 11:35:25.031671+00 f t 9397 \N \N f f +8309 2025-09-26 11:42:51.725262+00 2025-09-26 11:42:51.725269+00 f t 9398 \N \N f f +8310 2025-09-26 11:56:50.047807+00 2025-09-26 11:56:50.047818+00 f t 9399 \N \N f f +8311 2025-09-26 12:25:17.470415+00 2025-09-26 12:25:17.470428+00 f t 9400 \N \N f f +8312 2025-09-26 12:28:42.932824+00 2025-09-26 12:28:42.932833+00 f t 9401 \N \N f f +8313 2025-09-26 12:34:49.071071+00 2025-09-26 12:34:49.071082+00 f t 9402 \N \N f f +8314 2025-09-26 12:41:24.751819+00 2025-09-26 12:41:24.751828+00 f t 9403 \N \N f f +8315 2025-09-26 12:59:48.600386+00 2025-09-26 12:59:48.600396+00 f t 9404 \N \N f f +8316 2025-09-26 13:12:41.424687+00 2025-09-26 13:12:41.424694+00 f t 9405 \N \N f f +8317 2025-09-26 13:19:11.293721+00 2025-09-26 13:19:11.293729+00 f t 9406 \N \N f f +8318 2025-09-26 13:22:28.563923+00 2025-09-26 13:22:28.563934+00 f t 9407 \N \N f f +8319 2025-09-26 13:31:07.46983+00 2025-09-26 13:31:07.469844+00 f t 9408 \N \N f f +8320 2025-09-26 13:59:12.914757+00 2025-09-26 13:59:12.914767+00 f t 9409 \N \N f f +8321 2025-09-26 14:06:52.762107+00 2025-09-26 14:06:52.762116+00 f t 9410 \N \N f f +8322 2025-09-26 14:22:20.945614+00 2025-09-26 14:22:20.945627+00 f t 9411 \N \N f f +8323 2025-09-26 14:24:54.95213+00 2025-09-26 14:24:54.952139+00 f t 9412 \N \N f f +8324 2025-09-26 14:25:51.003076+00 2025-09-26 14:25:51.003084+00 f t 9413 \N \N f f +8325 2025-09-26 14:38:03.694527+00 2025-09-26 14:38:03.694535+00 f t 9414 \N \N f f +8326 2025-09-26 14:41:10.950921+00 2025-09-26 14:41:10.950929+00 f t 9415 \N \N f f +8327 2025-09-26 14:46:25.84727+00 2025-09-26 14:46:25.847279+00 f t 9416 \N \N f f +8328 2025-09-26 14:47:33.084113+00 2025-09-26 14:47:33.084121+00 f t 6905 \N \N f f +8329 2025-09-26 14:55:17.932516+00 2025-09-26 14:55:17.932525+00 f t 9417 \N \N f f +8330 2025-09-26 15:17:57.591268+00 2025-09-26 15:17:57.59128+00 f t 822 \N \N f f +8331 2025-09-26 15:42:27.773759+00 2025-09-26 15:42:27.773767+00 f t 9418 \N \N f f +8332 2025-09-26 15:45:00.635595+00 2025-09-26 15:45:00.635604+00 f t 9419 \N \N f f +8333 2025-09-26 15:47:40.257394+00 2025-09-26 15:47:40.257403+00 f t 9420 \N \N f f +8334 2025-09-26 15:56:18.727214+00 2025-09-26 15:56:18.727223+00 f t 9421 \N \N f f +8335 2025-09-26 16:01:41.498283+00 2025-09-26 16:01:41.498294+00 f t 9422 \N \N f f +8336 2025-09-26 16:01:47.841923+00 2025-09-26 16:01:47.841935+00 f t 9423 \N \N f f +8337 2025-09-26 16:06:36.072077+00 2025-09-26 16:06:36.072088+00 f t 9424 \N \N f f +8338 2025-09-26 16:07:52.79112+00 2025-09-26 16:07:52.791165+00 f t 9425 \N \N f f +8339 2025-09-26 16:30:41.708636+00 2025-09-26 16:30:41.708648+00 f t 9426 \N \N f f +8340 2025-09-26 16:40:59.4451+00 2025-09-26 16:40:59.445108+00 f t 7201 \N \N f f +8341 2025-09-26 16:56:03.236768+00 2025-09-26 16:56:03.236784+00 f t 9427 \N \N f f +8342 2025-09-26 17:03:35.760035+00 2025-09-26 17:03:35.760046+00 f t 9428 \N \N f f +8343 2025-09-26 17:11:10.279634+00 2025-09-26 17:11:10.279648+00 f t 9429 \N \N f f +8344 2025-09-26 17:14:38.535328+00 2025-09-26 17:14:38.535337+00 f t 9430 \N \N f f +8345 2025-09-26 17:15:47.723535+00 2025-09-26 17:15:47.723543+00 f t 9431 \N \N f f +8346 2025-09-26 17:59:39.546167+00 2025-09-26 17:59:39.546175+00 f t 9432 \N \N f f +8347 2025-09-26 18:02:29.606324+00 2025-09-26 18:02:29.606332+00 f t 9433 \N \N f f +8348 2025-09-26 18:03:58.764017+00 2025-09-26 18:03:58.764024+00 f t 9434 \N \N f f +8349 2025-09-26 18:07:07.59843+00 2025-09-26 18:07:07.598439+00 f t 9435 \N \N f f +8350 2025-09-26 18:09:44.086884+00 2025-09-26 18:09:44.086896+00 f t 9436 \N \N f f +8351 2025-09-26 18:24:09.622478+00 2025-09-26 18:24:09.622489+00 f t 9437 \N \N f f +8352 2025-09-26 18:35:05.720239+00 2025-09-26 18:35:05.720253+00 f t 9438 \N \N f f +8353 2025-09-26 18:47:13.656262+00 2025-09-26 18:47:13.65627+00 f t 9439 \N \N f f +8354 2025-09-26 18:50:40.888234+00 2025-09-26 18:50:40.888246+00 f t 9440 \N \N f f +8355 2025-09-26 19:04:13.772773+00 2025-09-26 19:04:13.772782+00 f t 9441 \N \N f f +8356 2025-09-26 19:27:07.750395+00 2025-09-26 19:27:07.750404+00 f t 9442 \N \N f f +8357 2025-09-26 19:38:19.364293+00 2025-09-26 19:38:19.3643+00 f t 9443 \N \N f f +8358 2025-09-26 20:54:45.910338+00 2025-09-26 20:54:45.910347+00 f t 9444 \N \N f f +8359 2025-09-26 20:55:16.785803+00 2025-09-26 20:55:16.785811+00 f t 9445 \N \N f f +8360 2025-09-26 21:02:56.659657+00 2025-09-26 21:02:56.659669+00 f t 9446 \N \N f f +8361 2025-09-26 21:12:09.49506+00 2025-09-26 21:12:09.495067+00 f t 9447 \N \N f f +8362 2025-09-26 21:45:47.046898+00 2025-09-26 21:45:47.046909+00 f t 9448 \N \N f f +8363 2025-09-26 22:12:13.139916+00 2025-09-26 22:12:13.139927+00 f t 9449 \N \N f f +8364 2025-09-26 22:18:08.466887+00 2025-09-26 22:18:08.466897+00 f t 9450 \N \N f f +8365 2025-09-26 22:26:21.876133+00 2025-09-26 22:26:21.876146+00 f t 9451 \N \N f f +8366 2025-09-26 22:31:59.810748+00 2025-09-26 22:31:59.810758+00 f t 9071 \N \N f f +8367 2025-09-26 22:48:20.458194+00 2025-09-26 22:48:20.458204+00 f t 9452 \N \N f f +8368 2025-09-26 22:55:55.108122+00 2025-09-26 22:55:55.108133+00 f t 9453 \N \N f f +8369 2025-09-26 22:56:38.844429+00 2025-09-26 22:56:38.84444+00 f t 9454 \N \N f f +8370 2025-09-26 23:17:58.554395+00 2025-09-26 23:17:58.554404+00 f t 9455 \N \N f f +8371 2025-09-26 23:18:54.412045+00 2025-09-26 23:18:54.412054+00 f t 9456 \N \N f f +8372 2025-09-26 23:26:21.703512+00 2025-09-26 23:26:21.703523+00 f t 9457 \N \N f f +8373 2025-09-26 23:48:47.426171+00 2025-09-26 23:48:47.426178+00 f t 9458 \N \N f f +8374 2025-09-26 23:50:25.37357+00 2025-09-26 23:50:25.373579+00 f t 9459 \N \N f f +8375 2025-09-27 00:31:00.185571+00 2025-09-27 00:31:00.185584+00 f t 9460 \N \N f f +8376 2025-09-27 00:33:09.45166+00 2025-09-27 00:33:09.451672+00 f t 9461 \N \N f f +8377 2025-09-27 03:20:58.544777+00 2025-09-27 03:20:58.54479+00 f t 9462 \N \N f f +8378 2025-09-27 04:05:11.991247+00 2025-09-27 04:05:11.991259+00 f t 9463 \N \N f f +8379 2025-09-27 04:32:07.792871+00 2025-09-27 04:32:07.792879+00 f t 9464 \N \N f f +8380 2025-09-27 07:34:11.681666+00 2025-09-27 07:34:11.681672+00 f t 9465 \N \N f f +8381 2025-09-27 12:18:50.586302+00 2025-09-27 12:18:50.586313+00 f t 9466 \N \N f f +8382 2025-09-27 12:42:41.568277+00 2025-09-27 12:42:41.568288+00 f t 9109 \N \N f f +8383 2025-09-27 13:11:26.881651+00 2025-09-27 13:11:26.881661+00 f t 9467 \N \N f f +8384 2025-09-27 13:36:24.065274+00 2025-09-27 13:36:24.065288+00 f t 9468 \N \N f f +8385 2025-09-27 13:47:14.117288+00 2025-09-27 13:47:14.117296+00 f t 9469 \N \N f f +8386 2025-09-27 13:51:05.475278+00 2025-09-27 13:51:05.475288+00 f t 9470 \N \N f f +8387 2025-09-27 13:54:44.121209+00 2025-09-27 13:54:44.121217+00 f t 9471 \N \N f f +8388 2025-09-27 13:55:21.868455+00 2025-09-27 13:55:21.868467+00 f t 9472 \N \N f f +8389 2025-09-27 13:55:29.814241+00 2025-09-27 13:55:29.81425+00 f t 9473 \N \N f f +8390 2025-09-27 14:04:06.665463+00 2025-09-27 14:04:06.665472+00 f t 9474 \N \N f f +8391 2025-09-27 14:16:30.444713+00 2025-09-27 14:16:30.444723+00 f t 9475 \N \N f f +8392 2025-09-27 14:17:41.459237+00 2025-09-27 14:17:41.459246+00 f t 9476 \N \N f f +8393 2025-09-27 14:17:49.993105+00 2025-09-27 14:17:49.993114+00 f t 9477 \N \N f f +8394 2025-09-27 14:18:31.292942+00 2025-09-27 14:18:31.292955+00 f t 9478 \N \N f f +8395 2025-09-27 14:21:20.193779+00 2025-09-27 14:21:20.193788+00 f t 9479 \N \N f f +8396 2025-09-27 14:24:38.667078+00 2025-09-27 14:24:38.667087+00 f t 9480 \N \N f f +8397 2025-09-27 14:41:05.413765+00 2025-09-27 14:41:05.413775+00 f t 9481 \N \N f f +8398 2025-09-27 14:52:39.068211+00 2025-09-27 14:52:39.068222+00 f t 9482 \N \N f f +8399 2025-09-27 15:14:51.030267+00 2025-09-27 15:14:51.030275+00 f t 9483 \N \N f f +8400 2025-09-27 15:38:45.178906+00 2025-09-27 15:38:45.178915+00 f t 9484 \N \N f f +8402 2025-09-27 15:41:47.36835+00 2025-09-27 15:41:47.368362+00 f t 9486 \N \N f f +8411 2025-09-27 19:18:05.700006+00 2025-09-27 19:18:05.700017+00 f t 9495 \N \N f f +8403 2025-09-27 16:02:24.212756+00 2025-09-27 16:02:24.212762+00 f t 9487 \N \N f f +8401 2025-09-27 16:02:47.894815+00 2025-09-27 15:40:19.413137+00 f t 9485 \N \N f f +8404 2025-09-27 16:02:52.650976+00 2025-09-27 16:02:52.650983+00 f t 9488 \N \N f f +8405 2025-09-27 16:03:04.894029+00 2025-09-27 16:03:04.89404+00 f t 9489 \N \N f f +8406 2025-09-27 16:30:18.790736+00 2025-09-27 16:30:18.790746+00 f t 9490 \N \N f f +8412 2025-09-27 19:53:35.836877+00 2025-09-27 19:53:35.836884+00 f t 9496 \N \N f f +8413 2025-09-27 20:18:01.903872+00 2025-09-27 20:18:01.903887+00 f t 9497 \N \N f f +8414 2025-09-27 20:44:15.193453+00 2025-09-27 20:44:15.193464+00 f t 9498 \N \N f f +8415 2025-09-27 23:01:35.016447+00 2025-09-27 23:01:35.016461+00 f t 9499 \N \N f f +8407 2025-09-27 17:07:49.73339+00 2025-09-27 16:56:30.035671+00 f t 9491 \N \N f f +8408 2025-09-27 17:17:55.940883+00 2025-09-27 17:17:55.940893+00 f t 9492 \N \N f f +8409 2025-09-27 17:18:45.152923+00 2025-09-27 17:18:45.152969+00 f t 9493 \N \N f f +8410 2025-09-27 18:31:55.058949+00 2025-09-27 18:31:55.058958+00 f t 9494 \N \N f f +8416 2025-09-27 23:30:18.845769+00 2025-09-27 23:30:18.845779+00 f t 9500 \N \N f f +8417 2025-09-28 00:04:15.952399+00 2025-09-28 00:04:15.95241+00 f t 9501 \N \N f f +8418 2025-09-28 00:27:42.418852+00 2025-09-28 00:27:42.418859+00 f t 9502 \N \N f f +8420 2025-09-28 00:37:20.401681+00 2025-09-28 00:37:20.401688+00 f t 9504 \N \N f f +8421 2025-09-28 00:42:29.054643+00 2025-09-28 00:42:29.054658+00 f t 9505 \N \N f f +8422 2025-09-28 01:16:47.141785+00 2025-09-28 01:16:47.141792+00 f t 9506 \N \N f f +8423 2025-09-28 02:16:33.280964+00 2025-09-28 02:16:33.280972+00 f t 9507 \N \N f f +8424 2025-09-28 02:49:31.24521+00 2025-09-28 02:49:31.245217+00 f t 9508 \N \N f f +8425 2025-09-28 03:19:00.919877+00 2025-09-28 03:19:00.919885+00 f t 9509 \N \N f f +8426 2025-09-28 03:44:48.316014+00 2025-09-28 03:44:48.316022+00 f t 9510 \N \N f f +8419 2025-09-28 04:25:47.196424+00 2025-09-28 00:34:38.975002+00 f t 9503 \N \N f f +8427 2025-09-28 06:06:30.390403+00 2025-09-28 06:06:30.39041+00 f t 9511 \N \N f f +8428 2025-09-28 06:41:58.614851+00 2025-09-28 06:41:58.614859+00 f t 9512 \N \N f f +8429 2025-09-28 07:49:40.966789+00 2025-09-28 07:49:40.9668+00 f t 9513 \N \N f f +8430 2025-09-28 09:52:22.379361+00 2025-09-28 09:52:22.379369+00 f t 9514 \N \N f f +8431 2025-09-28 11:16:07.112679+00 2025-09-28 11:16:07.112687+00 f t 9515 \N \N f f +8432 2025-09-28 11:57:10.844293+00 2025-09-28 11:57:10.8443+00 f t 9516 \N \N f f +8433 2025-09-28 12:43:26.707793+00 2025-09-28 12:43:26.707807+00 f t 9517 \N \N f f +8434 2025-09-28 12:55:06.519635+00 2025-09-28 12:55:06.519649+00 f t 9518 \N \N f f +8435 2025-09-28 13:03:29.451215+00 2025-09-28 13:03:29.451226+00 f t 9519 \N \N f f +8436 2025-09-28 13:07:09.546234+00 2025-09-28 13:07:09.546246+00 f t 9520 \N \N f f +8437 2025-09-28 13:37:38.121154+00 2025-09-28 13:37:38.121164+00 f t 9521 \N \N f f +8438 2025-09-28 13:53:54.104556+00 2025-09-28 13:53:54.104563+00 f t 9522 \N \N f f +8439 2025-09-28 14:44:10.743327+00 2025-09-28 14:44:10.743336+00 f t 9523 \N \N f f +8440 2025-09-28 14:53:33.544829+00 2025-09-28 14:53:33.544841+00 f t 9524 \N \N f f +8441 2025-09-28 14:58:57.625445+00 2025-09-28 14:58:57.625457+00 f t 9525 \N \N f f +8442 2025-09-28 15:29:08.302512+00 2025-09-28 15:29:08.302524+00 f t 9526 \N \N f f +8443 2025-09-28 15:54:23.305164+00 2025-09-28 15:54:23.305173+00 f t 9527 \N \N f f +8444 2025-09-28 15:59:54.94775+00 2025-09-28 15:59:54.947758+00 f t 9528 \N \N f f +8445 2025-09-28 16:10:28.112765+00 2025-09-28 16:10:28.112773+00 f t 9529 \N \N f f +8446 2025-09-28 16:23:57.492264+00 2025-09-28 16:23:57.492275+00 f t 9530 \N \N f f +8447 2025-09-28 16:40:35.296098+00 2025-09-28 16:40:35.296109+00 f t 9531 \N \N f f +8448 2025-09-28 16:40:52.636044+00 2025-09-28 16:40:52.636051+00 f t 9532 \N \N f f +8449 2025-09-28 16:42:08.023066+00 2025-09-28 16:42:08.023075+00 f t 9533 \N \N f f +8450 2025-09-28 16:46:33.733577+00 2025-09-28 16:46:33.733588+00 f t 9534 \N \N f f +8451 2025-09-28 16:48:58.556466+00 2025-09-28 16:48:58.556478+00 f t 9535 \N \N f f +8452 2025-09-28 16:50:33.227051+00 2025-09-28 16:50:33.227062+00 f t 9536 \N \N f f +8453 2025-09-28 16:53:00.887958+00 2025-09-28 16:53:00.88797+00 f t 9537 \N \N f f +8454 2025-09-28 16:58:01.660803+00 2025-09-28 16:58:01.660821+00 f t 9538 \N \N f f +8455 2025-09-28 17:17:42.86806+00 2025-09-28 17:17:42.868068+00 f t 9539 \N \N f f +8456 2025-09-28 17:21:37.108344+00 2025-09-28 17:21:37.108353+00 f t 9540 \N \N f f +8457 2025-09-28 17:32:30.623804+00 2025-09-28 17:32:30.623814+00 f t 9541 \N \N f f +8458 2025-09-28 17:55:48.275714+00 2025-09-28 17:55:48.275722+00 f t 9542 \N \N f f +8459 2025-09-28 18:01:00.660963+00 2025-09-28 18:01:00.660976+00 f t 9543 \N \N f f +8460 2025-09-28 18:08:07.207291+00 2025-09-28 18:08:07.207299+00 f t 9544 \N \N f f +8461 2025-09-28 18:19:29.524737+00 2025-09-28 18:19:29.524745+00 f t 9545 \N \N f f +8462 2025-09-28 18:20:49.768341+00 2025-09-28 18:20:49.768349+00 f t 9546 \N \N f f +8463 2025-09-28 18:42:35.881861+00 2025-09-28 18:42:35.881874+00 f t 9547 \N \N f f +8464 2025-09-28 18:52:52.608863+00 2025-09-28 18:52:52.608873+00 f t 9548 \N \N f f +8465 2025-09-28 19:02:42.988623+00 2025-09-28 19:02:42.98863+00 f t 9549 \N \N f f +8466 2025-09-28 19:02:53.253245+00 2025-09-28 19:02:53.253256+00 f t 9550 \N \N f f +8467 2025-09-28 19:16:20.139539+00 2025-09-28 19:16:20.139549+00 f t 9551 \N \N f f +8468 2025-09-28 19:47:15.205087+00 2025-09-28 19:47:15.205094+00 f t 9552 \N \N f f +8469 2025-09-28 19:50:49.46649+00 2025-09-28 19:50:49.466497+00 f t 9553 \N \N f f +8470 2025-09-28 19:52:21.918975+00 2025-09-28 19:52:21.918983+00 f t 9554 \N \N f f +8471 2025-09-28 20:11:40.724778+00 2025-09-28 20:11:40.724785+00 f t 9555 \N \N f f +8472 2025-09-28 20:17:30.029864+00 2025-09-28 20:17:30.029873+00 f t 9556 \N \N f f +8473 2025-09-28 20:22:56.776905+00 2025-09-28 20:22:56.776912+00 f t 9557 \N \N f f +8474 2025-09-28 20:30:40.282753+00 2025-09-28 20:30:40.282761+00 f t 9558 \N \N f f +8475 2025-09-28 20:37:07.498689+00 2025-09-28 20:37:07.498701+00 f t 9559 \N \N f f +8476 2025-09-28 21:11:38.777357+00 2025-09-28 21:11:38.777365+00 f t 9560 \N \N f f +8477 2025-09-28 21:41:33.888648+00 2025-09-28 21:41:33.888656+00 f t 9561 \N \N f f +8478 2025-09-28 21:54:57.121997+00 2025-09-28 21:54:57.122009+00 f t 9562 \N \N f f +8479 2025-09-28 21:57:16.227378+00 2025-09-28 21:57:16.227389+00 f t 9563 \N \N f f +8480 2025-09-28 22:04:46.759665+00 2025-09-28 22:04:46.759674+00 f t 9564 \N \N f f +8481 2025-09-28 22:05:14.632401+00 2025-09-28 22:05:14.632409+00 f t 9565 \N \N f f +8482 2025-09-28 22:11:31.646592+00 2025-09-28 22:11:31.646601+00 f t 9566 \N \N f f +8483 2025-09-28 22:35:53.354634+00 2025-09-28 22:35:53.354642+00 f t 9567 \N \N f f +8484 2025-09-28 22:42:06.254335+00 2025-09-28 22:42:06.254348+00 f t 9568 \N \N f f +8485 2025-09-29 00:09:37.863434+00 2025-09-29 00:09:37.863445+00 f t 9569 \N \N f f +8486 2025-09-29 00:30:30.01961+00 2025-09-29 00:30:30.01962+00 f t 9570 \N \N f f +8487 2025-09-29 01:22:34.337479+00 2025-09-29 01:22:34.337486+00 f t 9495 \N \N f f +8488 2025-09-29 01:22:37.498153+00 2025-09-29 01:22:37.498163+00 f t 9571 \N \N f f +8489 2025-09-29 02:35:15.244325+00 2025-09-29 02:35:15.244335+00 f t 9572 \N \N f f +8490 2025-09-29 03:38:26.88444+00 2025-09-29 03:38:26.884452+00 f t 9573 \N \N f f +8491 2025-09-29 04:00:57.687069+00 2025-09-29 04:00:57.687082+00 f t 9574 \N \N f f +8492 2025-09-29 04:34:25.703089+00 2025-09-29 04:34:25.7031+00 f t 9575 \N \N f f +8493 2025-09-29 06:12:55.898225+00 2025-09-29 06:12:55.898234+00 f t 9576 \N \N f f +8494 2025-09-29 09:52:11.726213+00 2025-09-29 09:52:11.726228+00 f t 9577 \N \N f f +8495 2025-09-29 10:26:59.795564+00 2025-09-29 10:26:59.795573+00 f t 9578 \N \N f f +8496 2025-09-29 10:44:50.632683+00 2025-09-29 10:44:50.632694+00 f t 9579 \N \N f f +8497 2025-09-29 10:48:16.785466+00 2025-09-29 10:48:16.785478+00 f t 9580 \N \N f f +8498 2025-09-29 10:52:36.277777+00 2025-09-29 10:52:36.277786+00 f t 9581 \N \N f f +8499 2025-09-29 10:57:57.594966+00 2025-09-29 10:57:57.594975+00 f t 9582 \N \N f f +8500 2025-09-29 11:00:45.984646+00 2025-09-29 11:00:45.984653+00 f t 9583 \N \N f f +8501 2025-09-29 11:03:48.866176+00 2025-09-29 11:03:48.866187+00 f t 9584 \N \N f f +8502 2025-09-29 11:23:55.713662+00 2025-09-29 11:23:55.71367+00 f t 9585 \N \N f f +8503 2025-09-29 12:34:03.446545+00 2025-09-29 12:34:03.446558+00 f t 9586 \N \N f f +8504 2025-09-29 12:40:43.702259+00 2025-09-29 12:40:43.702267+00 f t 9587 \N \N f f +8505 2025-09-29 12:44:20.855492+00 2025-09-29 12:44:20.855501+00 f t 9588 \N \N f f +8506 2025-09-29 12:50:55.182226+00 2025-09-29 12:50:55.182233+00 f t 822 \N \N f f +8507 2025-09-29 12:52:07.470893+00 2025-09-29 12:52:07.470901+00 f t 9589 \N \N f f +8508 2025-09-29 12:52:35.738149+00 2025-09-29 12:52:35.738159+00 f t 9590 \N \N f f +8509 2025-09-29 12:59:47.892139+00 2025-09-29 12:59:47.892149+00 f t 9591 \N \N f f +8510 2025-09-29 13:02:10.667668+00 2025-09-29 13:02:10.66768+00 f t 5342 \N \N f f +8511 2025-09-29 13:09:47.635801+00 2025-09-29 13:09:47.635817+00 f t 9592 \N \N f f +8512 2025-09-29 13:20:07.767258+00 2025-09-29 13:20:07.767267+00 f t 9593 \N \N f f +8513 2025-09-29 13:20:08.274073+00 2025-09-29 13:20:08.274086+00 f t 9594 \N \N f f +8514 2025-09-29 13:23:50.86205+00 2025-09-29 13:23:50.862058+00 f t 9595 \N \N f f +8515 2025-09-29 13:51:32.684488+00 2025-09-29 13:51:32.684497+00 f t 9596 \N \N f f +8516 2025-09-29 13:52:30.86423+00 2025-09-29 13:52:30.864238+00 f t 9597 \N \N f f +8517 2025-09-29 13:53:46.492738+00 2025-09-29 13:53:46.492745+00 f t 9598 \N \N f f +8518 2025-09-29 14:02:20.848381+00 2025-09-29 14:02:20.84839+00 f t 9599 \N \N f f +8519 2025-09-29 14:08:11.238347+00 2025-09-29 14:08:11.238356+00 f t 9600 \N \N f f +8520 2025-09-29 14:25:04.517922+00 2025-09-29 14:25:00.168462+00 f t 9601 \N \N f f +8521 2025-09-29 14:37:00.305301+00 2025-09-29 14:37:00.305313+00 f t 9602 \N \N f f +8522 2025-09-29 14:40:18.931121+00 2025-09-29 14:40:18.931163+00 f t 9603 \N \N f f +8523 2025-09-29 14:49:18.194825+00 2025-09-29 14:49:18.194833+00 f t 9604 \N \N f f +8524 2025-09-29 15:05:47.907034+00 2025-09-29 15:05:47.907045+00 f t 9605 \N \N f f +8525 2025-09-29 15:09:57.013935+00 2025-09-29 15:09:57.013942+00 f t 9606 \N \N f f +8526 2025-09-29 15:39:54.54651+00 2025-09-29 15:39:54.546519+00 f t 9607 \N \N f f +8527 2025-09-29 15:45:44.491986+00 2025-09-29 15:45:44.491995+00 f t 9608 \N \N f f +8528 2025-09-29 15:46:13.487344+00 2025-09-29 15:46:13.487352+00 f t 9609 \N \N f f +8529 2025-09-29 16:01:09.217133+00 2025-09-29 16:01:09.217161+00 f t 9610 \N \N f f +8530 2025-09-29 16:08:52.91258+00 2025-09-29 16:08:52.912588+00 f t 9611 \N \N f f +8531 2025-09-29 16:18:03.750359+00 2025-09-29 16:18:03.750373+00 f t 9612 \N \N f f +8532 2025-09-29 16:22:14.399809+00 2025-09-29 16:22:14.399821+00 f t 9613 \N \N f f +8533 2025-09-29 17:04:45.729401+00 2025-09-29 17:04:45.729411+00 f t 9614 \N \N f f +8534 2025-09-29 17:56:58.543031+00 2025-09-29 17:56:58.543042+00 f t 9615 \N \N f f +8535 2025-09-29 18:08:21.865624+00 2025-09-29 18:08:21.865636+00 f t 9616 \N \N f f +8536 2025-09-29 18:18:43.201552+00 2025-09-29 18:18:43.20156+00 f t 9617 \N \N f f +8537 2025-09-29 18:21:07.120998+00 2025-09-29 18:21:07.121007+00 f t 9618 \N \N f f +8538 2025-09-29 18:26:32.332649+00 2025-09-29 18:26:32.332659+00 f t 9619 \N \N f f +8539 2025-09-29 18:32:02.361708+00 2025-09-29 18:32:02.361716+00 f t 9620 \N \N f f +8540 2025-09-29 19:11:09.008463+00 2025-09-29 19:11:09.008472+00 f t 9621 \N \N f f +8541 2025-09-29 19:14:28.024523+00 2025-09-29 19:14:28.02453+00 f t 9622 \N \N f f +8542 2025-09-29 20:02:53.203774+00 2025-09-29 20:02:53.203784+00 f t 9623 \N \N f f +8543 2025-09-29 20:05:44.474424+00 2025-09-29 20:05:44.474433+00 f t 9624 \N \N f f +8544 2025-09-29 20:09:04.61698+00 2025-09-29 20:09:04.616995+00 f t 9625 \N \N f f +8545 2025-09-29 20:10:00.511006+00 2025-09-29 20:10:00.511014+00 f t 9626 \N \N f f +8546 2025-09-29 20:10:23.796237+00 2025-09-29 20:10:23.796246+00 f t 9627 \N \N f f +8547 2025-09-29 20:35:21.127285+00 2025-09-29 20:35:21.127295+00 f t 9628 \N \N f f +8548 2025-09-29 20:44:09.478013+00 2025-09-29 20:44:09.478021+00 f t 9629 \N \N f f +8549 2025-09-29 21:12:30.25927+00 2025-09-29 21:12:30.259278+00 f t 9630 \N \N f f +8550 2025-09-29 21:38:54.829703+00 2025-09-29 21:38:54.829719+00 f t 9631 \N \N f f +8551 2025-09-29 21:55:10.376238+00 2025-09-29 21:55:10.376247+00 f t 9632 \N \N f f +8552 2025-09-29 22:05:16.479643+00 2025-09-29 22:05:16.479656+00 f t 9633 \N \N f f +8553 2025-09-29 22:43:49.419947+00 2025-09-29 22:43:49.419955+00 f t 9634 \N \N f f +8554 2025-09-29 22:44:11.044353+00 2025-09-29 22:44:11.04436+00 f t 9635 \N \N f f +8555 2025-09-29 22:45:32.30086+00 2025-09-29 22:45:32.30087+00 f t 9636 \N \N f f +8556 2025-09-29 22:53:48.376137+00 2025-09-29 22:53:48.376144+00 f t 9637 \N \N f f +8557 2025-09-29 23:18:47.929665+00 2025-09-29 23:18:47.929678+00 f t 9638 \N \N f f +8558 2025-09-29 23:19:07.720635+00 2025-09-29 23:19:07.720644+00 f t 9639 \N \N f f +8559 2025-09-29 23:24:39.545382+00 2025-09-29 23:24:39.545394+00 f t 9640 \N \N f f +8560 2025-09-29 23:35:35.958176+00 2025-09-29 23:35:35.958184+00 f t 9641 \N \N f f +8561 2025-09-29 23:43:22.624181+00 2025-09-29 23:43:22.624194+00 f t 9642 \N \N f f +8562 2025-09-29 23:46:13.215907+00 2025-09-29 23:46:13.215915+00 f t 9643 \N \N f f +8563 2025-09-29 23:53:41.259323+00 2025-09-29 23:53:41.259331+00 f t 1555 \N \N f f +8564 2025-09-30 00:07:58.534641+00 2025-09-30 00:07:58.534648+00 f t 9644 \N \N f f +8565 2025-09-30 00:28:25.43925+00 2025-09-30 00:28:25.439259+00 f t 9645 \N \N f f +8566 2025-09-30 00:29:31.480847+00 2025-09-30 00:29:31.480854+00 f t 9646 \N \N f f +8567 2025-09-30 00:29:58.236007+00 2025-09-30 00:29:58.236014+00 f t 9647 \N \N f f +8569 2025-09-30 00:53:11.364737+00 2025-09-30 00:53:11.364746+00 f t 9648 \N \N f f +8570 2025-09-30 01:05:01.392963+00 2025-09-30 01:05:01.392977+00 f t 9649 \N \N f f +8571 2025-09-30 02:45:11.071893+00 2025-09-30 02:45:11.071907+00 f t 9650 \N \N f f +8572 2025-09-30 02:55:21.096662+00 2025-09-30 02:55:21.096671+00 f t 9651 \N \N f f +8573 2025-09-30 02:58:08.227875+00 2025-09-30 02:58:08.227889+00 f t 9652 \N \N f f +8574 2025-09-30 03:46:38.199577+00 2025-09-30 03:46:38.199585+00 f t 9653 \N \N f f +8575 2025-09-30 03:48:04.602933+00 2025-09-30 03:48:04.602945+00 f t 9654 \N \N f f +8576 2025-09-30 05:31:15.946992+00 2025-09-30 05:26:53.338452+00 f t 9655 \N \N f f +8577 2025-09-30 07:16:05.81379+00 2025-09-30 07:16:05.813801+00 f t 9656 \N \N f f +8578 2025-09-30 07:35:32.474169+00 2025-09-30 07:35:32.47418+00 f t 9657 \N \N f f +8579 2025-09-30 08:05:44.001702+00 2025-09-30 08:05:44.001715+00 f t 9658 \N \N f f +8580 2025-09-30 08:28:14.233358+00 2025-09-30 08:28:14.233368+00 f t 9659 \N \N f f +8581 2025-09-30 08:31:09.491774+00 2025-09-30 08:31:09.491787+00 f t 9660 \N \N f f +8582 2025-09-30 08:57:28.324637+00 2025-09-30 08:57:28.324649+00 f t 9661 \N \N f f +8583 2025-09-30 10:39:25.150242+00 2025-09-30 10:39:25.150256+00 f t 9662 \N \N f f +8584 2025-09-30 10:53:37.700966+00 2025-09-30 10:53:37.70098+00 f t 9663 \N \N f f +8568 2025-09-30 11:07:22.301685+00 2025-09-30 00:48:22.007515+00 f t 873 \N \N f f +8585 2025-09-30 11:45:10.862246+00 2025-09-30 11:45:10.862261+00 f t 9664 \N \N f f +8586 2025-09-30 11:50:59.395921+00 2025-09-30 11:50:59.39593+00 f t 9665 \N \N f f +8587 2025-09-30 12:38:01.682901+00 2025-09-30 12:38:01.682916+00 f t 9666 \N \N f f +8588 2025-09-30 12:54:44.941834+00 2025-09-30 12:54:44.941843+00 f t 9667 \N \N f f +8589 2025-09-30 13:25:41.282932+00 2025-09-30 13:25:41.28294+00 f t 264 \N \N f f +8590 2025-09-30 13:48:18.968025+00 2025-09-30 13:48:18.968033+00 f t 9668 \N \N f f +8591 2025-09-30 14:57:04.943716+00 2025-09-30 14:57:04.943724+00 f t 9669 \N \N f f +8593 2025-09-30 15:25:04.671475+00 2025-09-30 15:23:36.172744+00 f t 9671 \N \N f f +8594 2025-09-30 15:33:57.785546+00 2025-09-30 15:33:57.785558+00 f t 9672 \N \N f f +8595 2025-09-30 15:39:40.510968+00 2025-09-30 15:39:40.510975+00 f t 9673 \N \N f f +8596 2025-09-30 15:41:28.977542+00 2025-09-30 15:41:28.977551+00 f t 9674 \N \N f f +8597 2025-09-30 16:01:52.635694+00 2025-09-30 16:01:52.635705+00 f t 9675 \N \N f f +8598 2025-09-30 16:23:03.695387+00 2025-09-30 16:23:03.6954+00 f t 9676 \N \N f f +8599 2025-09-30 16:27:34.782214+00 2025-09-30 16:27:34.782222+00 f t 9677 \N \N f f +8600 2025-09-30 16:35:11.838906+00 2025-09-30 16:35:11.838918+00 f t 9678 \N \N f f +8601 2025-09-30 16:38:58.839176+00 2025-09-30 16:38:58.839183+00 f t 9679 \N \N f f +8592 2025-09-30 16:40:41.241196+00 2025-09-30 15:17:18.997549+00 f t 9670 \N \N f f +8602 2025-09-30 17:02:23.170951+00 2025-09-30 17:02:23.170959+00 f t 7528 \N \N f f +8603 2025-09-30 17:21:38.065851+00 2025-09-30 17:21:38.065859+00 f t 9680 \N \N f f +8604 2025-09-30 17:31:55.764451+00 2025-09-30 17:31:55.764462+00 f t 9681 \N \N f f +8605 2025-09-30 17:58:42.036013+00 2025-09-30 17:52:51.913769+00 f t 9682 \N \N f f +8606 2025-09-30 19:16:53.749442+00 2025-09-30 19:16:53.74945+00 f t 9683 \N \N f f +8607 2025-09-30 19:18:52.424959+00 2025-09-30 19:18:52.424968+00 f t 9684 \N \N f f +8608 2025-09-30 19:24:21.038382+00 2025-09-30 19:24:21.038391+00 f t 9685 \N \N f f +8609 2025-09-30 19:24:43.265874+00 2025-09-30 19:24:43.265882+00 f t 9686 \N \N f f +8610 2025-09-30 19:39:39.937241+00 2025-09-30 19:39:39.937253+00 f t 8879 \N \N f f +8611 2025-09-30 19:48:07.251743+00 2025-09-30 19:48:07.251753+00 f t 9688 \N \N f f +8612 2025-09-30 19:48:34.906299+00 2025-09-30 19:48:34.906312+00 f t 9687 \N \N f f +8613 2025-09-30 19:49:30.802578+00 2025-09-30 19:49:30.802592+00 f t 9689 \N \N f f +8614 2025-09-30 19:55:54.045775+00 2025-09-30 19:55:54.045783+00 f t 9690 \N \N f f +8615 2025-09-30 20:00:46.810315+00 2025-09-30 20:00:46.810324+00 f t 9691 \N \N f f +8616 2025-09-30 20:01:43.834595+00 2025-09-30 20:01:43.834607+00 f t 9692 \N \N f f +8617 2025-09-30 20:03:00.944188+00 2025-09-30 20:03:00.9442+00 f t 9693 \N \N f f +8618 2025-09-30 20:27:26.938554+00 2025-09-30 20:27:26.938563+00 f t 9694 \N \N f f +8619 2025-09-30 20:29:48.346998+00 2025-09-30 20:29:48.34701+00 f t 9695 \N \N f f +8620 2025-09-30 20:30:16.205283+00 2025-09-30 20:30:16.205295+00 f t 9696 \N \N f f +8621 2025-09-30 20:42:22.779579+00 2025-09-30 20:42:22.779589+00 f t 9697 \N \N f f +8622 2025-09-30 20:45:09.664441+00 2025-09-30 20:45:09.664454+00 f t 9698 \N \N f f +8623 2025-09-30 20:54:26.423836+00 2025-09-30 20:54:26.42385+00 f t 9701 \N \N f f +8624 2025-09-30 20:54:58.046196+00 2025-09-30 20:54:58.046206+00 f t 9700 \N \N f f +8625 2025-09-30 20:57:35.98622+00 2025-09-30 20:57:35.986227+00 f t 9702 \N \N f f +8626 2025-09-30 21:04:00.111849+00 2025-09-30 21:04:00.111861+00 f t 9703 \N \N f f +8627 2025-09-30 21:08:25.450917+00 2025-09-30 21:08:25.450925+00 f t 9704 \N \N f f +8628 2025-09-30 22:06:09.038722+00 2025-09-30 22:06:09.038733+00 f t 9705 \N \N f f +8629 2025-09-30 22:24:14.135818+00 2025-09-30 22:24:14.135829+00 f t 9706 \N \N f f +8630 2025-09-30 22:42:47.166933+00 2025-09-30 22:42:47.166942+00 f t 9708 \N \N f f +8631 2025-09-30 22:46:56.446194+00 2025-09-30 22:46:56.446206+00 f t 9709 \N \N f f +8632 2025-09-30 22:51:36.539274+00 2025-09-30 22:51:36.539283+00 f t 9710 \N \N f f +8633 2025-09-30 23:24:35.653696+00 2025-09-30 23:24:35.653703+00 f t 9711 \N \N f f +8634 2025-09-30 23:34:18.695354+00 2025-09-30 23:34:18.695363+00 f t 9713 \N \N f f +8635 2025-09-30 23:50:30.128052+00 2025-09-30 23:50:30.128061+00 f t 9714 \N \N f f +8636 2025-09-30 23:52:34.250418+00 2025-09-30 23:51:35.30594+00 f t 9712 \N \N f f +8637 2025-10-01 00:03:20.709803+00 2025-10-01 00:03:20.709814+00 f t 9715 \N \N f f +8638 2025-10-01 00:06:14.458649+00 2025-10-01 00:06:14.458656+00 f t 9717 \N \N f f +8639 2025-10-01 00:06:19.791911+00 2025-10-01 00:06:19.79192+00 f t 9716 \N \N f f +8640 2025-10-01 00:07:31.035095+00 2025-10-01 00:07:31.035106+00 f t 9718 \N \N f f +8641 2025-10-01 00:09:12.014222+00 2025-10-01 00:09:12.014231+00 f t 9719 \N \N f f +8642 2025-10-01 00:16:08.123778+00 2025-10-01 00:16:08.12379+00 f t 9720 \N \N f f +8643 2025-10-01 00:27:16.317565+00 2025-10-01 00:27:16.317573+00 f t 9721 \N \N f f +8644 2025-10-01 00:31:20.730476+00 2025-10-01 00:31:20.730485+00 f t 9722 \N \N f f +8645 2025-10-01 00:38:05.154855+00 2025-10-01 00:38:05.154866+00 f t 9723 \N \N f f +8646 2025-10-01 00:49:26.927932+00 2025-10-01 00:49:26.927942+00 f t 9724 \N \N f f +8647 2025-10-01 00:59:24.153863+00 2025-10-01 00:59:24.153875+00 f t 9725 \N \N f f +8648 2025-10-01 01:26:59.155329+00 2025-10-01 01:26:59.15534+00 f t 9727 \N \N f f +8649 2025-10-01 01:57:54.56445+00 2025-10-01 01:57:54.564459+00 f t 9728 \N \N f f +8650 2025-10-01 02:17:41.740132+00 2025-10-01 02:17:41.740143+00 f t 9729 \N \N f f +8651 2025-10-01 02:35:11.310379+00 2025-10-01 02:35:11.310391+00 f t 9730 \N \N f f +8652 2025-10-01 02:40:18.544976+00 2025-10-01 02:40:18.544988+00 f t 9731 \N \N f f +8653 2025-10-01 03:02:28.153041+00 2025-10-01 03:02:28.153049+00 f t 9732 \N \N f f +8654 2025-10-01 03:06:44.877956+00 2025-10-01 03:06:44.877965+00 f t 9734 \N \N f f +8655 2025-10-01 03:09:34.696165+00 2025-10-01 03:09:34.696174+00 f t 9735 \N \N f f +8656 2025-10-01 03:12:16.723263+00 2025-10-01 03:12:16.723271+00 f t 9736 \N \N f f +8657 2025-10-01 03:13:19.162753+00 2025-10-01 03:13:19.16277+00 f t 9737 \N \N f f +8658 2025-10-01 03:15:52.911326+00 2025-10-01 03:15:52.911335+00 f t 9738 \N \N f f +8659 2025-10-01 03:18:42.171161+00 2025-10-01 03:18:42.171176+00 f t 9739 \N \N f f +8660 2025-10-01 04:29:23.853217+00 2025-10-01 04:29:23.853228+00 f t 9741 \N \N f f +8661 2025-10-01 05:31:53.343892+00 2025-10-01 05:31:53.343901+00 f t 9742 \N \N f f +8662 2025-10-01 09:56:42.424503+00 2025-10-01 09:56:42.424515+00 f t 9744 \N \N f f +8663 2025-10-01 10:43:24.515573+00 2025-10-01 10:43:24.515587+00 f t 9745 \N \N f f +8664 2025-10-01 11:01:29.540116+00 2025-10-01 11:01:29.540126+00 f t 9746 \N \N f f +8665 2025-10-01 11:34:07.467378+00 2025-10-01 11:34:07.467391+00 f t 9747 \N \N f f +8666 2025-10-01 12:01:18.146446+00 2025-10-01 12:01:18.14646+00 f t 9748 \N \N f f +8667 2025-10-01 12:21:42.403298+00 2025-10-01 12:21:42.403311+00 f t 9749 \N \N f f +8668 2025-10-01 12:22:41.921533+00 2025-10-01 12:22:41.921543+00 f t 9750 \N \N f f +8669 2025-10-01 13:28:19.09071+00 2025-10-01 13:28:19.09072+00 f t 9751 \N \N f f +8670 2025-10-01 13:44:52.044786+00 2025-10-01 13:44:52.044798+00 f t 9753 \N \N f f +8671 2025-10-01 14:07:44.170512+00 2025-10-01 14:07:44.17052+00 f t 9754 \N \N f f +8672 2025-10-01 14:29:39.917693+00 2025-10-01 14:29:39.917704+00 f t 9755 \N \N f f +8673 2025-10-01 14:30:27.674696+00 2025-10-01 14:30:27.674707+00 f t 9756 \N \N f f +8674 2025-10-01 14:53:47.505634+00 2025-10-01 14:53:47.505643+00 f t 9757 \N \N f f +8675 2025-10-01 14:55:22.534202+00 2025-10-01 14:55:22.534214+00 f t 8767 \N \N f f +8676 2025-10-01 15:25:01.890744+00 2025-10-01 15:25:01.890758+00 f t 9758 \N \N f f +8677 2025-10-01 15:26:48.014555+00 2025-10-01 15:26:48.014562+00 f t 9759 \N \N f f +8678 2025-10-01 15:28:02.202308+00 2025-10-01 15:28:02.202323+00 f t 667 \N \N f f +8679 2025-10-01 15:35:34.516968+00 2025-10-01 15:35:34.516977+00 f t 1109 \N \N f f +8680 2025-10-01 15:46:11.574605+00 2025-10-01 15:46:11.574614+00 f t 9760 \N \N f f +8681 2025-10-01 15:51:30.377169+00 2025-10-01 15:51:30.377177+00 f t 9762 \N \N f f +8682 2025-10-01 15:52:23.590232+00 2025-10-01 15:52:23.59024+00 f t 9763 \N \N f f +8684 2025-10-01 15:54:44.321233+00 2025-10-01 15:54:44.321242+00 f t 9765 \N \N f f +8685 2025-10-01 15:55:48.233745+00 2025-10-01 15:55:48.233756+00 f t 9766 \N \N f f +8683 2025-10-01 16:02:17.716624+00 2025-10-01 15:52:32.929171+00 f t 9764 \N \N f f +8686 2025-10-01 16:02:36.986076+00 2025-10-01 16:02:36.986085+00 f t 9767 \N \N f f +8687 2025-10-01 16:09:16.296732+00 2025-10-01 16:09:16.29674+00 f t 8676 \N \N f f +8688 2025-10-01 16:36:15.775211+00 2025-10-01 16:36:15.775225+00 f t 9768 \N \N f f +8689 2025-10-01 17:31:06.623764+00 2025-10-01 17:22:44.403476+00 f t 9769 \N \N f f +8690 2025-10-01 17:40:30.777842+00 2025-10-01 17:40:30.777851+00 f t 9770 \N \N f f +8691 2025-10-01 18:02:13.443051+00 2025-10-01 18:02:13.443063+00 f t 9771 \N \N f f +8692 2025-10-01 18:05:43.109902+00 2025-10-01 18:05:43.109916+00 f t 9773 \N \N f f +8693 2025-10-01 18:09:01.497285+00 2025-10-01 18:09:01.497299+00 f t 9772 \N \N f f +8694 2025-10-01 18:09:22.668818+00 2025-10-01 18:09:22.668827+00 f t 9774 \N \N f f +8695 2025-10-01 18:42:24.010425+00 2025-10-01 18:42:24.010433+00 f t 9775 \N \N f f +8696 2025-10-01 18:49:14.59139+00 2025-10-01 18:49:14.591398+00 f t 9776 \N \N f f +9670 2025-10-15 03:08:07.572841+00 2025-10-15 03:08:07.57285+00 f t 10749 \N \N f f +8698 2025-10-01 19:10:56.231773+00 2025-10-01 19:10:56.231781+00 f t 9779 \N \N f f +8697 2025-10-01 19:37:16.84824+00 2025-10-01 19:06:32.445925+00 f t 6893 \N \N f f +8699 2025-10-01 21:49:15.659731+00 2025-10-01 21:49:15.659741+00 f t 9668 \N \N f f +8700 2025-10-01 23:07:08.901023+00 2025-10-01 23:07:08.901034+00 f t 9514 \N \N f f +8701 2025-10-02 13:03:54.94401+00 2025-10-02 13:03:54.944019+00 f t 9856 \N \N f f +8702 2025-10-02 13:21:19.860293+00 2025-10-02 13:21:19.860306+00 f t 8455 \N \N f f +8703 2025-10-02 13:29:21.764251+00 2025-10-02 13:29:21.764264+00 f t 9862 \N \N f f +8704 2025-10-02 13:29:36.753192+00 2025-10-02 13:29:36.753205+00 f t 9863 \N \N f f +8705 2025-10-02 13:36:23.565973+00 2025-10-02 13:36:23.565983+00 f t 9861 \N \N f f +8706 2025-10-02 13:45:10.766787+00 2025-10-02 13:45:10.7668+00 f t 9864 \N \N f f +8707 2025-10-02 13:59:28.694094+00 2025-10-02 13:57:45.924907+00 f t 9727 \N \N f f +8708 2025-10-02 14:05:51.957969+00 2025-10-02 14:04:58.550883+00 f t 8854 \N \N f f +8709 2025-10-02 14:29:39.836782+00 2025-10-02 14:29:39.836791+00 f t 9865 \N \N f f +8710 2025-10-02 14:42:26.144031+00 2025-10-02 14:42:26.144039+00 f t 9866 \N \N f f +8711 2025-10-02 14:50:46.623505+00 2025-10-02 14:50:46.623513+00 f t 9867 \N \N f f +8712 2025-10-02 15:35:54.092845+00 2025-10-02 15:35:54.092853+00 f t 9868 \N \N f f +8713 2025-10-02 15:38:24.888722+00 2025-10-02 15:38:24.888734+00 f t 9496 \N \N f f +8714 2025-10-02 15:46:51.73832+00 2025-10-02 15:46:51.738326+00 f t 9869 \N \N f f +8715 2025-10-02 15:48:07.188706+00 2025-10-02 15:48:07.188714+00 f t 9870 \N \N f f +8716 2025-10-02 16:00:01.571006+00 2025-10-02 16:00:01.571021+00 f t 9871 \N \N f f +8717 2025-10-02 16:00:03.626408+00 2025-10-02 16:00:03.626421+00 f t 9872 \N \N f f +8718 2025-10-02 16:06:06.25812+00 2025-10-02 16:06:06.258127+00 f t 9644 \N \N f f +8719 2025-10-02 16:13:11.9571+00 2025-10-02 16:13:11.957107+00 f t 9873 \N \N f f +8720 2025-10-02 16:36:16.511745+00 2025-10-02 16:36:16.511754+00 f t 405 \N \N f f +8721 2025-10-02 16:43:01.822617+00 2025-10-02 16:43:01.822625+00 f t 9874 \N \N f f +8722 2025-10-02 16:44:29.793244+00 2025-10-02 16:44:29.793255+00 f t 9875 \N \N f f +8723 2025-10-02 16:45:07.83749+00 2025-10-02 16:45:07.8375+00 f t 9876 \N \N f f +8724 2025-10-02 16:50:05.676641+00 2025-10-02 16:50:05.676651+00 f t 7201 \N \N f f +8725 2025-10-02 16:52:45.53485+00 2025-10-02 16:52:45.534864+00 f t 9877 \N \N f f +8726 2025-10-02 16:55:50.422042+00 2025-10-02 16:55:50.42205+00 f t 9878 \N \N f f +8727 2025-10-02 17:26:27.169741+00 2025-10-02 17:26:27.169748+00 f t 8958 \N \N f f +8728 2025-10-02 17:30:20.979697+00 2025-10-02 17:30:20.979709+00 f t 745 \N \N f f +8729 2025-10-02 17:32:04.388857+00 2025-10-02 17:32:04.388864+00 f t 9879 \N \N f f +8730 2025-10-02 17:46:53.459691+00 2025-10-02 17:46:53.459698+00 f t 9880 \N \N f f +8731 2025-10-02 17:50:56.346364+00 2025-10-02 17:50:56.346373+00 f t 9881 \N \N f f +8732 2025-10-02 18:35:18.448432+00 2025-10-02 18:35:18.448441+00 f t 9882 \N \N f f +8733 2025-10-02 18:37:51.577821+00 2025-10-02 18:37:51.577829+00 f t 9883 \N \N f f +8734 2025-10-02 18:44:41.663039+00 2025-10-02 18:44:41.663046+00 f t 9884 \N \N f f +8735 2025-10-02 18:53:10.665279+00 2025-10-02 18:53:10.665287+00 f t 9885 \N \N f f +8736 2025-10-02 19:25:41.633173+00 2025-10-02 19:25:41.633182+00 f t 9886 \N \N f f +8737 2025-10-02 19:29:08.932901+00 2025-10-02 19:29:08.932908+00 f t 9887 \N \N f f +8738 2025-10-02 19:30:45.752415+00 2025-10-02 19:30:45.752422+00 f t 9888 \N \N f f +8767 2025-10-03 01:50:05.506048+00 2025-10-03 01:50:05.506057+00 f t 9915 \N \N f f +8739 2025-10-02 19:45:34.766504+00 2025-10-02 19:31:35.95723+00 f t 9641 \N \N f f +8740 2025-10-02 20:10:11.551478+00 2025-10-02 20:10:11.551486+00 f t 9889 \N \N f f +8741 2025-10-02 20:28:24.813694+00 2025-10-02 20:28:24.813705+00 f t 9890 \N \N f f +8742 2025-10-02 20:31:27.243027+00 2025-10-02 20:31:27.243034+00 f t 9891 \N \N f f +8743 2025-10-02 20:33:32.241635+00 2025-10-02 20:33:32.241642+00 f t 9892 \N \N f f +8744 2025-10-02 20:37:25.163048+00 2025-10-02 20:37:25.163056+00 f t 9893 \N \N f f +8746 2025-10-02 21:10:57.529147+00 2025-10-02 21:10:57.529156+00 f t 9894 \N \N f f +8747 2025-10-02 21:49:22.042634+00 2025-10-02 21:49:22.04264+00 f t 8168 \N \N f f +8748 2025-10-02 22:01:42.117987+00 2025-10-02 22:01:42.117994+00 f t 9895 \N \N f f +8749 2025-10-02 22:07:04.783488+00 2025-10-02 22:07:04.783499+00 f t 9896 \N \N f f +8750 2025-10-02 22:39:11.416859+00 2025-10-02 22:39:11.416871+00 f t 9897 \N \N f f +8751 2025-10-02 22:44:18.876073+00 2025-10-02 22:44:18.876085+00 f t 9898 \N \N f f +8753 2025-10-02 23:07:44.989341+00 2025-10-02 23:07:44.989349+00 f t 9900 \N \N f f +8754 2025-10-02 23:23:44.845274+00 2025-10-02 23:23:44.845282+00 f t 9901 \N \N f f +8755 2025-10-03 00:09:42.113044+00 2025-10-03 00:09:42.113051+00 f t 9903 \N \N f f +8756 2025-10-03 00:21:25.768913+00 2025-10-03 00:21:25.768921+00 f t 9904 \N \N f f +8757 2025-10-03 00:34:42.224226+00 2025-10-03 00:34:42.224234+00 f t 9905 \N \N f f +8758 2025-10-03 00:37:15.024999+00 2025-10-03 00:37:15.025007+00 f t 9906 \N \N f f +8759 2025-10-03 00:54:06.717333+00 2025-10-03 00:54:06.717341+00 f t 9907 \N \N f f +8760 2025-10-03 01:01:44.417532+00 2025-10-03 01:01:44.41754+00 f t 9908 \N \N f f +8761 2025-10-03 01:36:42.913855+00 2025-10-03 01:36:42.913863+00 f t 9909 \N \N f f +8762 2025-10-03 01:43:10.114929+00 2025-10-03 01:43:10.114937+00 f t 9910 \N \N f f +8763 2025-10-03 01:43:58.437376+00 2025-10-03 01:43:58.437383+00 f t 9911 \N \N f f +8764 2025-10-03 01:47:28.11076+00 2025-10-03 01:47:28.11077+00 f t 9912 \N \N f f +8765 2025-10-03 01:48:36.681997+00 2025-10-03 01:48:36.682005+00 f t 9913 \N \N f f +8766 2025-10-03 01:49:18.999664+00 2025-10-03 01:49:18.999675+00 f t 9914 \N \N f f +8769 2025-10-03 02:33:46.050108+00 2025-10-03 02:33:46.050115+00 f t 9916 \N \N f f +8770 2025-10-03 02:44:43.865734+00 2025-10-03 02:44:43.865741+00 f t 9917 \N \N f f +8771 2025-10-03 02:45:28.597547+00 2025-10-03 02:45:28.597554+00 f t 9918 \N \N f f +8772 2025-10-03 03:35:59.371966+00 2025-10-03 03:35:59.371973+00 f t 9919 \N \N f f +8773 2025-10-03 03:46:10.9492+00 2025-10-03 03:46:10.949208+00 f t 9920 \N \N f f +8774 2025-10-03 03:51:51.871571+00 2025-10-03 03:51:51.871578+00 f t 9921 \N \N f f +8775 2025-10-03 04:12:32.243458+00 2025-10-03 04:12:32.243465+00 f t 9922 \N \N f f +8776 2025-10-03 05:46:37.154429+00 2025-10-03 05:46:37.154437+00 f t 9923 \N \N f f +8777 2025-10-03 06:00:10.751261+00 2025-10-03 06:00:10.751271+00 f t 9924 \N \N f f +8778 2025-10-03 08:51:30.983447+00 2025-10-03 08:51:30.983454+00 f t 9925 \N \N f f +8779 2025-10-03 10:11:28.66311+00 2025-10-03 10:11:28.663117+00 f t 9926 \N \N f f +8780 2025-10-03 11:08:36.154506+00 2025-10-03 11:08:36.154515+00 f t 9927 \N \N f f +8781 2025-10-03 11:45:36.317242+00 2025-10-03 11:45:36.317251+00 f t 9928 \N \N f f +8782 2025-10-03 11:51:56.212553+00 2025-10-03 11:51:56.21256+00 f t 9929 \N \N f f +8783 2025-10-03 12:28:29.758366+00 2025-10-03 12:28:29.758372+00 f t 9930 \N \N f f +8784 2025-10-03 12:28:53.584485+00 2025-10-03 12:28:53.584492+00 f t 9931 \N \N f f +8785 2025-10-03 12:30:08.859997+00 2025-10-03 12:30:08.860006+00 f t 9932 \N \N f f +8752 2025-10-03 14:32:39.420551+00 2025-10-02 22:48:29.15725+00 f t 9899 \N \N f f +8768 2025-10-03 22:28:51.569745+00 2025-10-03 01:51:00.481436+00 f t 1381 \N \N f f +8786 2025-10-03 12:37:45.424952+00 2025-10-03 12:37:45.42496+00 f t 9933 \N \N f f +8787 2025-10-03 12:53:51.615323+00 2025-10-03 12:53:51.61533+00 f t 9934 \N \N f f +8788 2025-10-03 12:54:52.701085+00 2025-10-03 12:54:52.701092+00 f t 9935 \N \N f f +8789 2025-10-03 12:58:24.952871+00 2025-10-03 12:58:24.952878+00 f t 9936 \N \N f f +8790 2025-10-03 13:04:24.516726+00 2025-10-03 13:04:24.516736+00 f t 9937 \N \N f f +8791 2025-10-03 13:11:55.31041+00 2025-10-03 13:11:55.310418+00 f t 9938 \N \N f f +8792 2025-10-03 13:15:06.998289+00 2025-10-03 13:15:06.998302+00 f t 9939 \N \N f f +8793 2025-10-03 13:20:11.549995+00 2025-10-03 13:20:11.550004+00 f t 9940 \N \N f f +8794 2025-10-03 13:29:08.418119+00 2025-10-03 13:29:08.418125+00 f t 9941 \N \N f f +8795 2025-10-03 13:34:53.906063+00 2025-10-03 13:34:53.90607+00 f t 9942 \N \N f f +8796 2025-10-03 13:38:26.743112+00 2025-10-03 13:38:26.743119+00 f t 9943 \N \N f f +8797 2025-10-03 13:51:31.876347+00 2025-10-03 13:51:31.876356+00 f t 4255 \N \N f f +8745 2025-10-03 14:07:27.986608+00 2025-10-02 21:04:52.494602+00 f t 9126 \N \N f f +8798 2025-10-03 14:08:16.464572+00 2025-10-03 14:08:16.46458+00 f t 9944 \N \N f f +8799 2025-10-03 14:14:02.550683+00 2025-10-03 14:14:02.550691+00 f t 9945 \N \N f f +8800 2025-10-03 14:16:56.285211+00 2025-10-03 14:16:56.285218+00 f t 9946 \N \N f f +8801 2025-10-03 14:20:01.266262+00 2025-10-03 14:20:01.266272+00 f t 9947 \N \N f f +8802 2025-10-03 14:45:29.214136+00 2025-10-03 14:45:29.214143+00 f t 9948 \N \N f f +8803 2025-10-03 15:00:43.715272+00 2025-10-03 15:00:43.715281+00 f t 9949 \N \N f f +8804 2025-10-03 15:20:12.559785+00 2025-10-03 15:20:12.559799+00 f t 8676 \N \N f f +8883 2025-10-04 23:31:08.752427+00 2025-10-04 23:31:08.752436+00 f t 10021 \N \N f f +8806 2025-10-03 15:45:39.123078+00 2025-10-03 15:45:39.123085+00 f t 9928 \N \N f f +8807 2025-10-03 15:56:15.660213+00 2025-10-03 15:56:15.660219+00 f t 9952 \N \N f f +8808 2025-10-03 16:07:10.167824+00 2025-10-03 16:07:10.167831+00 f t 9953 \N \N f f +8809 2025-10-03 16:25:24.967975+00 2025-10-03 16:25:24.967982+00 f t 9954 \N \N f f +8811 2025-10-03 17:43:33.446946+00 2025-10-03 17:43:33.446953+00 f t 9956 \N \N f f +8812 2025-10-03 17:55:07.449229+00 2025-10-03 17:55:07.449238+00 f t 9957 \N \N f f +8813 2025-10-03 18:07:15.756966+00 2025-10-03 18:07:15.756971+00 f t 9958 \N \N f f +8814 2025-10-03 18:30:12.436092+00 2025-10-03 18:30:12.436102+00 f t 9959 \N \N f f +8815 2025-10-03 18:31:55.194402+00 2025-10-03 18:31:55.194413+00 f t 9960 \N \N f f +8816 2025-10-03 18:33:32.347183+00 2025-10-03 18:33:32.347191+00 f t 9961 \N \N f f +8817 2025-10-03 18:54:30.722589+00 2025-10-03 18:54:30.722599+00 f t 9962 \N \N f f +8818 2025-10-03 18:58:00.682419+00 2025-10-03 18:58:00.68243+00 f t 8583 \N \N f f +8805 2025-10-03 19:22:02.321494+00 2025-10-03 15:32:41.311842+00 f t 8854 \N \N f f +8819 2025-10-03 19:28:52.181664+00 2025-10-03 19:28:52.18167+00 f t 9963 \N \N f f +8820 2025-10-03 19:29:12.325377+00 2025-10-03 19:29:12.325385+00 f t 9964 \N \N f f +8821 2025-10-03 20:12:42.246234+00 2025-10-03 20:12:42.246239+00 f t 9668 \N \N f f +8822 2025-10-03 20:24:03.773611+00 2025-10-03 20:24:03.773619+00 f t 9965 \N \N f f +8823 2025-10-03 20:27:40.071235+00 2025-10-03 20:27:40.071243+00 f t 1041 \N \N f f +8824 2025-10-03 20:31:41.706522+00 2025-10-03 20:31:41.706531+00 f t 9967 \N \N f f +8825 2025-10-03 20:46:14.211536+00 2025-10-03 20:46:14.211543+00 f t 9968 \N \N f f +8827 2025-10-03 21:12:47.414482+00 2025-10-03 21:12:47.414489+00 f t 9970 \N \N f f +8828 2025-10-03 21:15:36.990828+00 2025-10-03 21:15:36.990836+00 f t 9971 \N \N f f +8829 2025-10-03 21:24:27.2996+00 2025-10-03 21:24:27.299608+00 f t 9972 \N \N f f +8830 2025-10-03 21:47:48.853908+00 2025-10-03 21:47:48.853919+00 f t 822 \N \N f f +8831 2025-10-03 22:31:38.880526+00 2025-10-03 22:31:38.880533+00 f t 9973 \N \N f f +8832 2025-10-03 23:16:06.012555+00 2025-10-03 23:16:06.012563+00 f t 9974 \N \N f f +8833 2025-10-03 23:56:02.386293+00 2025-10-03 23:56:02.386299+00 f t 9975 \N \N f f +8834 2025-10-04 00:04:01.564149+00 2025-10-04 00:04:01.564158+00 f t 9976 \N \N f f +8835 2025-10-04 00:36:33.614479+00 2025-10-04 00:36:33.614486+00 f t 9977 \N \N f f +8836 2025-10-04 00:38:10.629662+00 2025-10-04 00:38:10.629673+00 f t 9978 \N \N f f +8837 2025-10-04 00:40:54.602933+00 2025-10-04 00:40:54.602941+00 f t 9979 \N \N f f +8838 2025-10-04 00:42:56.10991+00 2025-10-04 00:42:56.109917+00 f t 9980 \N \N f f +8839 2025-10-04 00:57:13.031099+00 2025-10-04 00:57:13.031107+00 f t 9981 \N \N f f +8840 2025-10-04 00:59:36.866888+00 2025-10-04 00:59:36.866896+00 f t 9982 \N \N f f +8841 2025-10-04 01:43:36.818663+00 2025-10-04 01:43:36.818672+00 f t 9983 \N \N f f +8842 2025-10-04 01:49:52.447471+00 2025-10-04 01:49:52.447478+00 f t 9984 \N \N f f +8843 2025-10-04 08:46:19.582431+00 2025-10-04 08:46:19.582441+00 f t 9985 \N \N f f +8844 2025-10-04 08:46:46.620154+00 2025-10-04 08:46:46.62016+00 f t 9986 \N \N f f +8845 2025-10-04 09:33:58.241812+00 2025-10-04 09:33:58.241818+00 f t 9987 \N \N f f +8810 2025-10-04 12:47:13.145791+00 2025-10-03 17:40:46.158823+00 f t 9955 \N \N f f +8846 2025-10-04 13:53:23.262882+00 2025-10-04 13:53:23.262889+00 f t 9988 \N \N f f +8847 2025-10-04 13:55:57.780568+00 2025-10-04 13:55:57.780578+00 f t 9989 \N \N f f +8848 2025-10-04 14:22:23.428698+00 2025-10-04 14:22:23.428709+00 f t 9990 \N \N f f +8850 2025-10-04 14:49:43.740564+00 2025-10-04 14:49:43.740571+00 f t 9992 \N \N f f +8851 2025-10-04 15:08:56.524098+00 2025-10-04 15:08:56.524106+00 f t 9993 \N \N f f +8852 2025-10-04 15:35:08.854221+00 2025-10-04 15:35:08.854228+00 f t 9994 \N \N f f +8853 2025-10-04 15:35:28.412604+00 2025-10-04 15:35:28.412612+00 f t 9995 \N \N f f +8855 2025-10-04 15:45:18.889773+00 2025-10-04 15:45:18.889784+00 f t 9996 \N \N f f +8854 2025-10-04 15:46:31.269726+00 2025-10-04 15:36:25.070812+00 f t 9861 \N \N f f +8856 2025-10-04 15:50:02.770041+00 2025-10-04 15:50:02.770054+00 f t 9997 \N \N f f +8857 2025-10-04 15:58:29.311691+00 2025-10-04 15:58:29.311699+00 f t 9759 \N \N f f +8858 2025-10-04 16:20:42.069378+00 2025-10-04 16:20:42.069387+00 f t 9998 \N \N f f +8859 2025-10-04 16:58:12.734154+00 2025-10-04 16:58:12.73416+00 f t 9999 \N \N f f +8860 2025-10-04 17:09:09.418891+00 2025-10-04 17:09:09.418898+00 f t 10000 \N \N f f +8826 2025-10-04 17:22:11.150954+00 2025-10-03 21:06:19.055028+00 f t 9969 \N \N f f +8861 2025-10-04 17:44:25.735566+00 2025-10-04 17:44:25.735573+00 f t 10001 \N \N f f +8862 2025-10-04 17:58:13.833319+00 2025-10-04 17:58:13.833329+00 f t 10002 \N \N f f +8863 2025-10-04 18:39:35.363537+00 2025-10-04 18:39:35.363547+00 f t 10003 \N \N f f +8864 2025-10-04 18:40:25.488975+00 2025-10-04 18:40:25.488982+00 f t 10004 \N \N f f +8865 2025-10-04 18:45:44.322634+00 2025-10-04 18:45:44.322641+00 f t 10005 \N \N f f +8866 2025-10-04 18:57:20.129868+00 2025-10-04 18:57:20.129875+00 f t 10006 \N \N f f +8867 2025-10-04 19:13:15.713534+00 2025-10-04 19:13:15.71354+00 f t 10007 \N \N f f +8868 2025-10-04 20:11:20.116256+00 2025-10-04 20:11:20.116263+00 f t 10008 \N \N f f +8884 2025-10-04 23:49:20.601374+00 2025-10-04 23:49:20.601383+00 f t 10022 \N \N f f +8885 2025-10-05 00:05:47.439716+00 2025-10-05 00:05:47.439725+00 f t 10023 \N \N f f +8849 2025-10-04 20:14:26.115255+00 2025-10-04 14:46:05.352129+00 f t 9991 \N \N f f +8869 2025-10-04 20:16:33.900561+00 2025-10-04 20:16:33.90057+00 f t 10009 \N \N f f +8870 2025-10-04 20:49:28.966283+00 2025-10-04 20:49:28.966289+00 f t 10010 \N \N f f +8871 2025-10-04 21:05:56.470155+00 2025-10-04 21:05:56.470164+00 f t 10011 \N \N f f +8872 2025-10-04 21:15:07.059931+00 2025-10-04 21:15:07.059939+00 f t 10012 \N \N f f +8873 2025-10-04 21:53:11.251182+00 2025-10-04 21:53:11.25119+00 f t 10013 \N \N f f +8874 2025-10-04 22:12:38.094682+00 2025-10-04 22:12:38.094689+00 f t 10014 \N \N f f +8875 2025-10-04 22:32:29.498626+00 2025-10-04 22:32:29.498635+00 f t 10015 \N \N f f +8876 2025-10-04 22:38:49.719225+00 2025-10-04 22:38:49.719235+00 f t 10016 \N \N f f +8877 2025-10-04 20:14:26.115255+00 2025-10-04 14:46:05.352129+00 f t 9991 \N \N f f +8878 2025-10-04 20:14:26.115255+00 2025-10-04 14:46:05.352129+00 f t 9991 \N \N f f +8879 2025-10-04 22:56:19.762515+00 2025-10-04 22:56:19.762523+00 f t 10017 \N \N f f +8880 2025-10-04 22:57:06.886314+00 2025-10-04 22:57:06.886322+00 f t 10018 \N \N f f +8881 2025-10-04 22:59:00.698188+00 2025-10-04 22:59:00.698197+00 f t 10019 \N \N f f +8882 2025-10-04 23:11:38.844897+00 2025-10-04 23:11:38.844906+00 f t 10020 \N \N f f +8886 2025-10-05 00:20:46.942662+00 2025-10-05 00:20:46.942668+00 f t 10024 \N \N f f +8887 2025-10-05 00:31:20.862101+00 2025-10-05 00:31:20.862109+00 f t 10025 \N \N f f +8888 2025-10-05 01:35:09.180769+00 2025-10-05 01:35:09.180778+00 f t 10026 \N \N f f +8889 2025-10-05 01:59:24.260751+00 2025-10-05 01:59:24.260761+00 f t 10027 \N \N f f +8890 2025-10-05 03:28:27.992009+00 2025-10-05 03:28:27.992016+00 f t 10028 \N \N f f +8891 2025-10-05 03:28:56.826996+00 2025-10-05 03:28:56.827003+00 f t 10029 \N \N f f +8892 2025-10-05 03:33:52.486506+00 2025-10-05 03:33:52.486514+00 f t 10030 \N \N f f +8893 2025-10-05 04:06:34.211657+00 2025-10-05 04:06:34.211665+00 f t 10031 \N \N f f +8894 2025-10-05 04:39:57.923228+00 2025-10-05 04:39:57.923236+00 f t 10032 \N \N f f +8895 2025-10-05 04:40:39.472749+00 2025-10-05 04:40:39.47276+00 f t 10033 \N \N f f +8896 2025-10-05 05:13:41.497431+00 2025-10-05 05:13:41.497437+00 f t 10034 \N \N f f +8897 2025-10-05 05:36:13.836634+00 2025-10-05 05:36:13.836642+00 f t 10035 \N \N f f +8898 2025-10-05 06:27:50.432988+00 2025-10-05 06:27:50.432996+00 f t 10036 \N \N f f +8899 2025-10-05 06:31:34.537614+00 2025-10-05 06:31:34.537622+00 f t 10037 \N \N f f +8900 2025-10-05 06:47:15.999794+00 2025-10-05 06:47:15.999805+00 f t 10038 \N \N f f +8901 2025-10-05 08:13:34.554452+00 2025-10-05 08:13:34.55446+00 f t 10039 \N \N f f +8902 2025-10-05 09:18:28.625321+00 2025-10-05 09:18:28.625329+00 f t 10040 \N \N f f +8903 2025-10-05 09:37:07.06213+00 2025-10-05 09:37:07.062139+00 f t 10041 \N \N f f +8904 2025-10-05 10:39:29.764621+00 2025-10-05 10:39:29.764633+00 f t 10042 \N \N f f +8905 2025-10-05 11:23:55.572768+00 2025-10-05 11:23:55.572779+00 f t 10043 \N \N f f +8906 2025-10-05 11:27:33.647552+00 2025-10-05 11:27:33.647562+00 f t 10044 \N \N f f +8907 2025-10-05 12:51:38.260818+00 2025-10-05 12:51:38.260826+00 f t 10045 \N \N f f +8908 2025-10-05 13:51:40.689495+00 2025-10-05 13:51:40.689507+00 f t 10046 \N \N f f +8909 2025-10-05 14:08:38.460718+00 2025-10-05 14:08:38.460727+00 f t 10047 \N \N f f +8910 2025-10-05 14:10:42.672543+00 2025-10-05 14:10:42.672552+00 f t 10048 \N \N f f +8911 2025-10-05 14:18:37.665486+00 2025-10-05 14:18:37.665494+00 f t 10049 \N \N f f +8912 2025-10-05 14:26:05.873793+00 2025-10-05 14:26:05.873803+00 f t 10050 \N \N f f +8913 2025-10-05 14:37:19.74592+00 2025-10-05 14:37:19.745928+00 f t 10051 \N \N f f +8914 2025-10-05 14:58:18.984628+00 2025-10-05 14:58:18.984636+00 f t 10052 \N \N f f +8915 2025-10-05 15:01:53.826264+00 2025-10-05 15:01:53.826272+00 f t 10053 \N \N f f +8916 2025-10-05 15:26:41.259349+00 2025-10-05 15:26:41.259367+00 f t 10054 \N \N f f +8917 2025-10-05 15:42:45.767494+00 2025-10-05 15:42:45.767502+00 f t 10055 \N \N f f +8918 2025-10-05 16:03:45.976244+00 2025-10-05 16:03:45.976253+00 f t 10056 \N \N f f +8919 2025-10-05 16:55:30.865+00 2025-10-05 16:55:30.865008+00 f t 10057 \N \N f f +8920 2025-10-05 17:17:35.580951+00 2025-10-05 17:17:35.580959+00 f t 10058 \N \N f f +8921 2025-10-05 17:42:41.437917+00 2025-10-05 17:42:41.437926+00 f t 10059 \N \N f f +8922 2025-10-05 17:42:51.406636+00 2025-10-05 17:42:51.406644+00 f t 10060 \N \N f f +8923 2025-10-05 18:11:23.047176+00 2025-10-05 18:11:23.047185+00 f t 10061 \N \N f f +8924 2025-10-05 18:16:02.516466+00 2025-10-05 18:16:02.516479+00 f t 10062 \N \N f f +8925 2025-10-05 18:28:13.197608+00 2025-10-05 18:28:13.197619+00 f t 10063 \N \N f f +8926 2025-10-05 19:16:20.893789+00 2025-10-05 19:16:20.893796+00 f t 1381 \N \N f f +8927 2025-10-05 19:27:58.459298+00 2025-10-05 19:27:58.459307+00 f t 10064 \N \N f f +8928 2025-10-05 19:32:02.094606+00 2025-10-05 19:32:02.094619+00 f t 10064 \N \N f f +8929 2025-10-05 19:39:28.532003+00 2025-10-05 19:39:28.53201+00 f t 10054 \N \N f f +8930 2025-10-05 19:45:23.6366+00 2025-10-05 19:45:23.636609+00 f t 10064 \N \N f f +8931 2025-10-05 20:00:15.181589+00 2025-10-05 20:00:15.181598+00 f t 10067 \N \N f f +8932 2025-10-05 20:18:18.268061+00 2025-10-05 20:18:18.268069+00 f t 10068 \N \N f f +8933 2025-10-05 20:32:33.903751+00 2025-10-05 20:32:33.903758+00 f t 10069 \N \N f f +8934 2025-10-05 21:18:03.906035+00 2025-10-05 21:18:03.906044+00 f t 10070 \N \N f f +8935 2025-10-05 21:39:32.776976+00 2025-10-05 21:39:32.776983+00 f t 10071 \N \N f f +8936 2025-10-05 21:45:30.971662+00 2025-10-05 21:45:30.971671+00 f t 10072 \N \N f f +8937 2025-10-05 22:00:42.29879+00 2025-10-05 22:00:42.298803+00 f t 10073 \N \N f f +8938 2025-10-05 22:32:52.157708+00 2025-10-05 22:32:52.157715+00 f t 10074 \N \N f f +8939 2025-10-05 22:32:54.399083+00 2025-10-05 22:32:54.399095+00 f t 10075 \N \N f f +8940 2025-10-06 00:09:38.080938+00 2025-10-06 00:09:38.080947+00 f t 10076 \N \N f f +8941 2025-10-06 00:10:18.053438+00 2025-10-06 00:10:18.053451+00 f t 8918 \N \N f f +8942 2025-10-06 00:30:40.14805+00 2025-10-06 00:30:40.148057+00 f t 10078 \N \N f f +8943 2025-10-06 00:40:11.747827+00 2025-10-06 00:40:11.747835+00 f t 10079 \N \N f f +8944 2025-10-06 00:55:58.785425+00 2025-10-06 00:55:58.785433+00 f t 10080 \N \N f f +8945 2025-10-06 00:59:01.683818+00 2025-10-06 00:59:01.683827+00 f t 10081 \N \N f f +8946 2025-10-06 01:09:18.974979+00 2025-10-06 01:09:18.974987+00 f t 10082 \N \N f f +8947 2025-10-06 01:30:41.540893+00 2025-10-06 01:30:41.540901+00 f t 10083 \N \N f f +8948 2025-10-06 02:35:00.774071+00 2025-10-06 02:35:00.774082+00 f t 10084 \N \N f f +8949 2025-10-06 03:21:43.377446+00 2025-10-06 03:21:43.377454+00 f t 10085 \N \N f f +8950 2025-10-06 03:32:10.797745+00 2025-10-06 03:32:10.797754+00 f t 10086 \N \N f f +8951 2025-10-06 03:37:50.798483+00 2025-10-06 03:37:50.798491+00 f t 10087 \N \N f f +8952 2025-10-06 04:34:22.69019+00 2025-10-06 04:34:22.690198+00 f t 10088 \N \N f f +8953 2025-10-06 08:42:25.502373+00 2025-10-06 08:42:25.50238+00 f t 10089 \N \N f f +8954 2025-10-06 09:59:18.455935+00 2025-10-06 09:59:18.455943+00 f t 10090 \N \N f f +8955 2025-10-06 10:03:31.548211+00 2025-10-06 10:03:31.548219+00 f t 10091 \N \N f f +8956 2025-10-06 10:22:09.058211+00 2025-10-06 10:22:09.058219+00 f t 10092 \N \N f f +8957 2025-10-06 10:46:52.042735+00 2025-10-06 10:46:52.042743+00 f t 10093 \N \N f f +8958 2025-10-06 10:56:27.841126+00 2025-10-06 10:56:27.841134+00 f t 10094 \N \N f f +8959 2025-10-06 11:11:19.074917+00 2025-10-06 11:11:19.074923+00 f t 10095 \N \N f f +8960 2025-10-06 11:16:02.818119+00 2025-10-06 11:16:02.818126+00 f t 10096 \N \N f f +8961 2025-10-06 11:24:48.717893+00 2025-10-06 11:24:48.7179+00 f t 10097 \N \N f f +8962 2025-10-06 11:29:40.292888+00 2025-10-06 11:29:40.292896+00 f t 10098 \N \N f f +8963 2025-10-06 11:40:54.230078+00 2025-10-06 11:40:54.230087+00 f t 10099 \N \N f f +8964 2025-10-06 11:41:38.841957+00 2025-10-06 11:41:38.841966+00 f t 10100 \N \N f f +8965 2025-10-06 11:43:25.032411+00 2025-10-06 11:43:25.032419+00 f t 10101 \N \N f f +8966 2025-10-06 11:50:08.567389+00 2025-10-06 11:50:08.567399+00 f t 10102 \N \N f f +8967 2025-10-06 12:02:38.550544+00 2025-10-06 12:02:38.550552+00 f t 10103 \N \N f f +8968 2025-10-06 13:22:21.859239+00 2025-10-06 13:22:21.859247+00 f t 10104 \N \N f f +8969 2025-10-06 13:22:47.639058+00 2025-10-06 13:22:47.639067+00 f t 10105 \N \N f f +8970 2025-10-06 13:29:12.603561+00 2025-10-06 13:29:12.603569+00 f t 8958 \N \N f f +8971 2025-10-06 13:29:15.510019+00 2025-10-06 13:29:15.510027+00 f t 8958 \N \N f f +8972 2025-10-06 13:34:27.603188+00 2025-10-06 13:34:27.603196+00 f t 10106 \N \N f f +8973 2025-10-06 13:58:14.725743+00 2025-10-06 13:58:14.725753+00 f t 9239 \N \N f f +8974 2025-10-06 13:58:16.349533+00 2025-10-06 13:58:16.349541+00 f t 9239 \N \N f f +8975 2025-10-06 14:16:45.11392+00 2025-10-06 14:16:45.113932+00 f t 10107 \N \N f f +8976 2025-10-06 14:30:11.881231+00 2025-10-06 14:30:11.881244+00 f t 10108 \N \N f f +8977 2025-10-06 14:34:11.561417+00 2025-10-06 14:34:11.561426+00 f t 10109 \N \N f f +8978 2025-10-06 14:34:36.250874+00 2025-10-06 14:34:36.250883+00 f t 10110 \N \N f f +8979 2025-10-06 14:36:09.255792+00 2025-10-06 14:36:09.255804+00 f t 10111 \N \N f f +8980 2025-10-06 14:37:53.258257+00 2025-10-06 14:37:53.258265+00 f t 10112 \N \N f f +8981 2025-10-06 14:39:11.003037+00 2025-10-06 14:39:11.003047+00 f t 10113 \N \N f f +8982 2025-10-06 14:44:17.264575+00 2025-10-06 14:44:17.264583+00 f t 10116 \N \N f f +8983 2025-10-06 14:44:36.712266+00 2025-10-06 14:44:36.712273+00 f t 10114 \N \N f f +8984 2025-10-06 14:55:04.561328+00 2025-10-06 14:55:04.561342+00 f t 10117 \N \N f f +8985 2025-10-06 14:56:49.24472+00 2025-10-06 14:56:49.244728+00 f t 10118 \N \N f f +8986 2025-10-06 15:26:48.563205+00 2025-10-06 15:26:48.563217+00 f t 10119 \N \N f f +8987 2025-10-06 15:29:44.212264+00 2025-10-06 15:29:44.212275+00 f t 7443 \N \N f f +8988 2025-10-06 15:35:21.754308+00 2025-10-06 15:35:21.754317+00 f t 10120 \N \N f f +8989 2025-10-06 15:37:22.563781+00 2025-10-06 15:37:22.563789+00 f t 10121 \N \N f f +8990 2025-10-06 15:38:42.389744+00 2025-10-06 15:38:42.389757+00 f t 10122 \N \N f f +8991 2025-10-06 15:56:21.364913+00 2025-10-06 15:56:21.364921+00 f t 10123 \N \N f f +8992 2025-10-06 16:11:15.96729+00 2025-10-06 16:11:15.967306+00 f t 10125 \N \N f f +8993 2025-10-06 16:13:21.814004+00 2025-10-06 16:13:21.814011+00 f t 10126 \N \N f f +8994 2025-10-06 16:16:00.507302+00 2025-10-06 16:16:00.507309+00 f t 10127 \N \N f f +8995 2025-10-06 16:18:11.47206+00 2025-10-06 16:18:11.472068+00 f t 10128 \N \N f f +8996 2025-10-06 16:34:16.622547+00 2025-10-06 16:34:16.622557+00 f t 10129 \N \N f f +8997 2025-10-06 16:52:57.572492+00 2025-10-06 16:52:57.572503+00 f t 10039 \N \N f f +8998 2025-10-06 16:57:50.894801+00 2025-10-06 16:57:50.894808+00 f t 10130 \N \N f f +8999 2025-10-06 17:04:19.458596+00 2025-10-06 17:04:19.458603+00 f t 340 \N \N f f +9000 2025-10-06 17:13:09.516046+00 2025-10-06 17:13:09.516054+00 f t 10131 \N \N f f +9001 2025-10-06 17:25:37.001285+00 2025-10-06 17:25:37.001293+00 f t 10132 \N \N f f +9002 2025-10-06 17:36:26.335111+00 2025-10-06 17:36:26.335118+00 f t 10133 \N \N f f +9003 2025-10-06 17:40:20.999662+00 2025-10-06 17:40:20.99967+00 f t 10134 \N \N f f +9004 2025-10-06 17:57:47.298054+00 2025-10-06 17:57:47.298063+00 f t 10135 \N \N f f +9005 2025-10-06 18:15:14.237292+00 2025-10-06 18:15:14.237302+00 f t 10136 \N \N f f +9006 2025-10-06 18:27:50.132163+00 2025-10-06 18:27:50.132176+00 f t 10137 \N \N f f +9007 2025-10-06 18:44:30.762863+00 2025-10-06 18:44:30.76287+00 f t 10138 \N \N f f +9008 2025-10-06 18:44:35.848485+00 2025-10-06 18:44:35.848495+00 f t 10139 \N \N f f +9010 2025-10-06 18:47:04.125075+00 2025-10-06 18:47:04.125085+00 f t 10141 \N \N f f +9009 2025-10-06 18:49:40.746001+00 2025-10-06 18:45:15.052546+00 f t 10140 \N \N f f +9011 2025-10-06 19:09:34.007678+00 2025-10-06 19:09:34.007686+00 f t 10143 \N \N f f +9012 2025-10-06 19:25:41.906861+00 2025-10-06 19:25:41.906868+00 f t 10142 \N \N f f +9013 2025-10-06 19:27:15.263957+00 2025-10-06 19:27:15.263965+00 f t 10144 \N \N f f +9014 2025-10-06 19:33:35.786936+00 2025-10-06 19:33:35.786944+00 f t 10145 \N \N f f +9015 2025-10-06 19:50:30.227881+00 2025-10-06 19:50:30.227889+00 f t 10146 \N \N f f +9016 2025-10-06 19:50:32.843225+00 2025-10-06 19:50:32.843234+00 f t 10147 \N \N f f +9017 2025-10-06 19:58:02.484842+00 2025-10-06 19:58:02.484851+00 f t 10148 \N \N f f +9018 2025-10-06 20:00:02.93021+00 2025-10-06 20:00:02.930229+00 f t 10149 \N \N f f +9019 2025-10-06 20:06:58.128518+00 2025-10-06 20:06:58.128528+00 f t 123 \N \N f f +9020 2025-10-06 20:09:09.871072+00 2025-10-06 20:09:09.871084+00 f t 10150 \N \N f f +9021 2025-10-06 20:28:49.239836+00 2025-10-06 20:28:49.239844+00 f t 10151 \N \N f f +9022 2025-10-06 20:29:51.487121+00 2025-10-06 20:29:51.487128+00 f t 10152 \N \N f f +9023 2025-10-06 20:32:43.256096+00 2025-10-06 20:32:43.256105+00 f t 10153 \N \N f f +9024 2025-10-06 20:45:33.258942+00 2025-10-06 20:45:33.25895+00 f t 10154 \N \N f f +9025 2025-10-06 20:51:44.822928+00 2025-10-06 20:51:44.822939+00 f t 10155 \N \N f f +9026 2025-10-06 21:03:15.864272+00 2025-10-06 21:03:15.864279+00 f t 10156 \N \N f f +9027 2025-10-06 21:23:27.126892+00 2025-10-06 21:15:30.45322+00 f t 10157 \N \N f f +9028 2025-10-06 21:49:31.344311+00 2025-10-06 21:49:31.34432+00 f t 10158 \N \N f f +9029 2025-10-06 21:50:06.583261+00 2025-10-06 21:50:06.583273+00 f t 10159 \N \N f f +9030 2025-10-06 21:55:14.050731+00 2025-10-06 21:55:14.05074+00 f t 10160 \N \N f f +9031 2025-10-06 22:14:32.355807+00 2025-10-06 22:14:32.355818+00 f t 10161 \N \N f f +9032 2025-10-06 22:23:47.203126+00 2025-10-06 22:23:47.203154+00 f t 10162 \N \N f f +9033 2025-10-06 22:30:28.459997+00 2025-10-06 22:30:28.460006+00 f t 10163 \N \N f f +9034 2025-10-06 22:39:35.606303+00 2025-10-06 22:39:35.606311+00 f t 10164 \N \N f f +9035 2025-10-06 23:28:46.56967+00 2025-10-06 23:28:46.569681+00 f t 10165 \N \N f f +9036 2025-10-06 23:29:35.578701+00 2025-10-06 23:29:35.578713+00 f t 10166 \N \N f f +9037 2025-10-06 23:32:59.719564+00 2025-10-06 23:32:59.719573+00 f t 7528 \N \N f f +9038 2025-10-06 23:38:22.095232+00 2025-10-06 23:38:22.09524+00 f t 10167 \N \N f f +9039 2025-10-06 23:40:29.809628+00 2025-10-06 23:40:29.809641+00 f t 10168 \N \N f f +9040 2025-10-06 23:40:44.898748+00 2025-10-06 23:40:44.89876+00 f t 7529 \N \N f f +9041 2025-10-07 00:15:04.897596+00 2025-10-07 00:15:04.897609+00 f t 10169 \N \N f f +9042 2025-10-07 00:36:58.21632+00 2025-10-07 00:36:58.216328+00 f t 10170 \N \N f f +9043 2025-10-07 00:46:03.212164+00 2025-10-07 00:46:03.212172+00 f t 10171 \N \N f f +9044 2025-10-07 01:09:11.076743+00 2025-10-07 01:09:11.076752+00 f t 10172 \N \N f f +9045 2025-10-07 01:22:40.345547+00 2025-10-07 01:22:40.345555+00 f t 10173 \N \N f f +9046 2025-10-07 01:38:26.68475+00 2025-10-07 01:38:26.684759+00 f t 10174 \N \N f f +9047 2025-10-07 01:54:27.57014+00 2025-10-07 01:54:27.570147+00 f t 10175 \N \N f f +9048 2025-10-07 02:32:03.046503+00 2025-10-07 02:32:03.046512+00 f t 10176 \N \N f f +9049 2025-10-07 02:32:35.319459+00 2025-10-07 02:32:35.319465+00 f t 10177 \N \N f f +9050 2025-10-07 02:49:19.474029+00 2025-10-07 02:49:19.474036+00 f t 10178 \N \N f f +9051 2025-10-07 02:50:53.491225+00 2025-10-07 02:50:53.491233+00 f t 10179 \N \N f f +9052 2025-10-07 04:39:35.368301+00 2025-10-07 04:39:35.368313+00 f t 10180 \N \N f f +9054 2025-10-07 05:34:51.386621+00 2025-10-07 05:34:51.386628+00 f t 10182 \N \N f f +9055 2025-10-07 06:06:20.594076+00 2025-10-07 06:06:20.594084+00 f t 10183 \N \N f f +9056 2025-10-07 06:07:39.382017+00 2025-10-07 06:07:39.382023+00 f t 10184 \N \N f f +9057 2025-10-07 06:16:24.902887+00 2025-10-07 06:16:24.902895+00 f t 10185 \N \N f f +9058 2025-10-07 09:46:09.668916+00 2025-10-07 09:46:09.668928+00 f t 10186 \N \N f f +9059 2025-10-07 10:21:27.848096+00 2025-10-07 10:21:27.848104+00 f t 10187 \N \N f f +9060 2025-10-07 10:24:54.292901+00 2025-10-07 10:24:54.292909+00 f t 10188 \N \N f f +9061 2025-10-07 10:28:55.569353+00 2025-10-07 10:28:55.56936+00 f t 10189 \N \N f f +9062 2025-10-07 10:35:27.358092+00 2025-10-07 10:35:27.358099+00 f t 10190 \N \N f f +9063 2025-10-07 10:46:39.958427+00 2025-10-07 10:46:39.958434+00 f t 10191 \N \N f f +9064 2025-10-07 11:35:24.99209+00 2025-10-07 11:35:24.992102+00 f t 10192 \N \N f f +9065 2025-10-07 11:40:34.425436+00 2025-10-07 11:40:34.425446+00 f t 10193 \N \N f f +9066 2025-10-07 12:35:22.11722+00 2025-10-07 12:35:22.117231+00 f t 10194 \N \N f f +9067 2025-10-07 12:36:32.396274+00 2025-10-07 12:36:32.396285+00 f t 10195 \N \N f f +9068 2025-10-07 12:44:11.914683+00 2025-10-07 12:44:11.914691+00 f t 10196 \N \N f f +9069 2025-10-07 13:06:22.4842+00 2025-10-07 13:06:22.484208+00 f t 10197 \N \N f f +9070 2025-10-07 13:10:22.953428+00 2025-10-07 13:10:22.953436+00 f t 10198 \N \N f f +9071 2025-10-07 13:26:46.747394+00 2025-10-07 13:26:46.747402+00 f t 10199 \N \N f f +9072 2025-10-07 13:30:12.46445+00 2025-10-07 13:30:12.464459+00 f t 10200 \N \N f f +9073 2025-10-07 13:30:59.357867+00 2025-10-07 13:30:59.357875+00 f t 10201 \N \N f f +9053 2025-10-07 13:33:34.248426+00 2025-10-07 04:47:58.407864+00 f t 9310 \N \N f f +9074 2025-10-07 13:34:43.716915+00 2025-10-07 13:34:43.716928+00 f t 10202 \N \N f f +9075 2025-10-07 13:42:10.011026+00 2025-10-07 13:42:10.011035+00 f t 10203 \N \N f f +9076 2025-10-07 13:57:25.802271+00 2025-10-07 13:57:25.80228+00 f t 10204 \N \N f f +9077 2025-10-07 14:00:47.34924+00 2025-10-07 14:00:47.349252+00 f t 10205 \N \N f f +9078 2025-10-07 14:08:38.205872+00 2025-10-07 14:08:38.20588+00 f t 10206 \N \N f f +9079 2025-10-07 14:20:36.241524+00 2025-10-07 14:20:36.241532+00 f t 10207 \N \N f f +9080 2025-10-07 14:24:31.965803+00 2025-10-07 14:24:31.965814+00 f t 10208 \N \N f f +9081 2025-10-07 14:26:25.424991+00 2025-10-07 14:26:25.424999+00 f t 8854 \N \N f f +9082 2025-10-07 14:54:54.562703+00 2025-10-07 14:52:49.433664+00 f t 10209 \N \N f f +9083 2025-10-07 14:57:44.315014+00 2025-10-07 14:57:44.315024+00 f t 10210 \N \N f f +9084 2025-10-07 15:33:07.061987+00 2025-10-07 15:33:07.061995+00 f t 10211 \N \N f f +9085 2025-10-07 15:59:20.985468+00 2025-10-07 15:59:20.985474+00 f t 10212 \N \N f f +9086 2025-10-07 16:37:51.516192+00 2025-10-07 16:37:51.516203+00 f t 10213 \N \N f f +9087 2025-10-07 16:58:41.916412+00 2025-10-07 16:58:41.916425+00 f t 10214 \N \N f f +9088 2025-10-07 16:59:01.422619+00 2025-10-07 16:59:01.422641+00 f t 10215 \N \N f f +9089 2025-10-07 17:50:49.418104+00 2025-10-07 17:50:49.418113+00 f t 10216 \N \N f f +9090 2025-10-07 18:18:40.802739+00 2025-10-07 18:18:40.802748+00 f t 10217 \N \N f f +9091 2025-10-07 18:46:35.741535+00 2025-10-07 18:46:35.741544+00 f t 10218 \N \N f f +9092 2025-10-07 19:00:57.464217+00 2025-10-07 19:00:57.46423+00 f t 10219 \N \N f f +9093 2025-10-07 19:04:27.686075+00 2025-10-07 19:04:27.686084+00 f t 10220 \N \N f f +9094 2025-10-07 19:23:52.639636+00 2025-10-07 19:23:52.639649+00 f t 10221 \N \N f f +9095 2025-10-07 19:30:56.188322+00 2025-10-07 19:30:56.188332+00 f t 10193 \N \N f f +9096 2025-10-07 19:35:00.37927+00 2025-10-07 19:35:00.379279+00 f t 10222 \N \N f f +9097 2025-10-07 19:39:11.532918+00 2025-10-07 19:39:11.532928+00 f t 10223 \N \N f f +9098 2025-10-07 19:41:06.021631+00 2025-10-07 19:41:06.021642+00 f t 10224 \N \N f f +9099 2025-10-07 20:08:46.299505+00 2025-10-07 20:08:46.299516+00 f t 10225 \N \N f f +9100 2025-10-07 20:46:21.309438+00 2025-10-07 20:46:21.309448+00 f t 10226 \N \N f f +9101 2025-10-07 20:46:41.967984+00 2025-10-07 20:46:41.967994+00 f t 6034 \N \N f f +9102 2025-10-07 20:54:58.302607+00 2025-10-07 20:54:58.302616+00 f t 10227 \N \N f f +9103 2025-10-07 20:57:56.568501+00 2025-10-07 20:57:56.568511+00 f t 10208 \N \N f f +9104 2025-10-07 20:57:59.102067+00 2025-10-07 20:57:59.102081+00 f t 10208 \N \N f f +9105 2025-10-07 21:17:35.252123+00 2025-10-07 21:17:35.252132+00 f t 10228 \N \N f f +9106 2025-10-07 21:19:32.584529+00 2025-10-07 21:19:32.584538+00 f t 10229 \N \N f f +9107 2025-10-07 21:29:51.441802+00 2025-10-07 21:29:51.441811+00 f t 10230 \N \N f f +9108 2025-10-07 21:37:02.195719+00 2025-10-07 21:37:02.195732+00 f t 160 \N \N f f +9109 2025-10-07 21:39:43.298159+00 2025-10-07 21:39:43.298168+00 f t 10231 \N \N f f +9110 2025-10-07 21:42:59.926498+00 2025-10-07 21:42:59.926509+00 f t 160 \N \N f f +9111 2025-10-07 21:44:26.69439+00 2025-10-07 21:44:26.694398+00 f t 160 \N \N f f +9112 2025-10-07 21:46:04.32457+00 2025-10-07 21:46:04.324579+00 f t 160 \N \N f f +9113 2025-10-07 23:12:25.280924+00 2025-10-07 23:12:25.280933+00 f t 10232 \N \N f f +9114 2025-10-07 23:17:03.441988+00 2025-10-07 23:17:03.442007+00 f t 10233 \N \N f f +9115 2025-10-07 23:23:04.972704+00 2025-10-07 23:23:04.972713+00 f t 10234 \N \N f f +9116 2025-10-07 23:33:58.214031+00 2025-10-07 23:33:58.21404+00 f t 10235 \N \N f f +9117 2025-10-07 23:41:02.46466+00 2025-10-07 23:41:02.464671+00 f t 10236 \N \N f f +9118 2025-10-08 00:01:59.004526+00 2025-10-08 00:01:59.004538+00 f t 10237 \N \N f f +9119 2025-10-08 00:05:47.461891+00 2025-10-08 00:05:47.4619+00 f t 10238 \N \N f f +9120 2025-10-08 00:08:35.466044+00 2025-10-08 00:08:35.466055+00 f t 10239 \N \N f f +9121 2025-10-08 00:10:47.817601+00 2025-10-08 00:10:47.81761+00 f t 10240 \N \N f f +9122 2025-10-08 00:27:01.622131+00 2025-10-08 00:27:01.62214+00 f t 10241 \N \N f f +9123 2025-10-08 00:29:56.031213+00 2025-10-08 00:29:56.03122+00 f t 10242 \N \N f f +9124 2025-10-08 00:35:56.471269+00 2025-10-08 00:35:56.471277+00 f t 10243 \N \N f f +9125 2025-10-08 00:53:00.600054+00 2025-10-08 00:53:00.600066+00 f t 10244 \N \N f f +9126 2025-10-08 01:04:18.709232+00 2025-10-08 01:04:18.709246+00 f t 10245 \N \N f f +9127 2025-10-08 01:05:33.600912+00 2025-10-08 01:05:33.600924+00 f t 10246 \N \N f f +9128 2025-10-08 01:23:43.054644+00 2025-10-08 01:23:43.054652+00 f t 10247 \N \N f f +9129 2025-10-08 01:35:39.798982+00 2025-10-08 01:35:39.798991+00 f t 10248 \N \N f f +9130 2025-10-08 01:45:32.400262+00 2025-10-08 01:45:32.400274+00 f t 10249 \N \N f f +9131 2025-10-08 01:46:31.271597+00 2025-10-08 01:46:31.271607+00 f t 10250 \N \N f f +9132 2025-10-08 01:50:50.025632+00 2025-10-08 01:50:50.025644+00 f t 10251 \N \N f f +9133 2025-10-08 02:09:56.277196+00 2025-10-08 02:09:56.277205+00 f t 10252 \N \N f f +9134 2025-10-08 03:15:32.015547+00 2025-10-08 03:15:32.015556+00 f t 10253 \N \N f f +9135 2025-10-08 03:50:39.836083+00 2025-10-08 03:50:39.83609+00 f t 10254 \N \N f f +9136 2025-10-08 03:59:52.568269+00 2025-10-08 03:59:52.568279+00 f t 10255 \N \N f f +9137 2025-10-08 04:03:28.79103+00 2025-10-08 04:03:28.791039+00 f t 10256 \N \N f f +9138 2025-10-08 04:09:15.84518+00 2025-10-08 04:09:15.845188+00 f t 10257 \N \N f f +9139 2025-10-08 08:46:03.189029+00 2025-10-08 08:46:03.189036+00 f t 10258 \N \N f f +9140 2025-10-08 09:24:35.222895+00 2025-10-08 09:24:35.222907+00 f t 10259 \N \N f f +9141 2025-10-08 11:38:04.344866+00 2025-10-08 11:38:04.344875+00 f t 10260 \N \N f f +9142 2025-10-08 11:41:32.907645+00 2025-10-08 11:41:32.907652+00 f t 10261 \N \N f f +9143 2025-10-08 12:05:10.899945+00 2025-10-08 12:05:10.899953+00 f t 10262 \N \N f f +9144 2025-10-08 12:06:17.317614+00 2025-10-08 12:06:17.317623+00 f t 10263 \N \N f f +9145 2025-10-08 12:12:28.196058+00 2025-10-08 12:12:28.196067+00 f t 10264 \N \N f f +9146 2025-10-08 12:13:33.368729+00 2025-10-08 12:13:33.368738+00 f t 10265 \N \N f f +9147 2025-10-08 12:13:39.322078+00 2025-10-08 12:13:39.322088+00 f t 10266 \N \N f f +9148 2025-10-08 12:24:31.253219+00 2025-10-08 12:24:31.253228+00 f t 10267 \N \N f f +9149 2025-10-08 13:36:19.627368+00 2025-10-08 13:36:19.627378+00 f t 10268 \N \N f f +9150 2025-10-08 14:06:05.401402+00 2025-10-08 14:06:05.401411+00 f t 9861 \N \N f f +9151 2025-10-08 14:17:47.966533+00 2025-10-08 14:17:47.966542+00 f t 10054 \N \N f f +9152 2025-10-08 14:17:52.080539+00 2025-10-08 14:17:52.080549+00 f t 10269 \N \N f f +9153 2025-10-08 14:24:48.307988+00 2025-10-08 14:24:48.307997+00 f t 10270 \N \N f f +9154 2025-10-08 14:43:58.78945+00 2025-10-08 14:43:58.78946+00 f t 10271 \N \N f f +9155 2025-10-08 14:47:45.039231+00 2025-10-08 14:47:45.03924+00 f t 10272 \N \N f f +9156 2025-10-08 15:11:42.750839+00 2025-10-08 15:11:42.750853+00 f t 8854 \N \N f f +9157 2025-10-08 15:24:28.413075+00 2025-10-08 15:24:28.413088+00 f t 10273 \N \N f f +9158 2025-10-08 15:24:59.672183+00 2025-10-08 15:24:59.672192+00 f t 631 \N \N f f +9159 2025-10-08 15:28:15.641261+00 2025-10-08 15:28:15.64127+00 f t 10274 \N \N f f +9160 2025-10-08 15:32:44.424762+00 2025-10-08 15:32:44.424771+00 f t 9991 \N \N f f +9161 2025-10-08 15:53:08.046812+00 2025-10-08 15:53:08.046825+00 f t 10275 \N \N f f +9162 2025-10-08 16:23:25.531796+00 2025-10-08 16:23:25.531806+00 f t 10276 \N \N f f +9163 2025-10-08 16:27:05.581005+00 2025-10-08 16:27:05.581016+00 f t 10277 \N \N f f +9164 2025-10-08 16:30:12.346306+00 2025-10-08 16:30:12.346315+00 f t 10278 \N \N f f +9165 2025-10-08 17:17:10.855551+00 2025-10-08 17:17:10.855559+00 f t 10279 \N \N f f +9166 2025-10-08 17:19:16.145234+00 2025-10-08 17:19:16.145244+00 f t 10280 \N \N f f +9167 2025-10-08 17:26:50.599844+00 2025-10-08 17:26:50.599851+00 f t 10281 \N \N f f +9168 2025-10-08 17:30:01.774137+00 2025-10-08 17:30:01.774147+00 f t 10281 \N \N f f +9169 2025-10-08 17:37:30.865747+00 2025-10-08 17:37:30.865755+00 f t 10282 \N \N f f +9170 2025-10-08 17:39:07.37504+00 2025-10-08 17:39:07.375051+00 f t 10283 \N \N f f +9171 2025-10-08 17:56:46.179193+00 2025-10-08 17:56:46.179203+00 f t 10284 \N \N f f +9172 2025-10-08 18:28:21.182854+00 2025-10-08 18:28:21.182869+00 f t 10285 \N \N f f +9173 2025-10-08 18:45:51.081372+00 2025-10-08 18:45:51.081381+00 f t 10286 \N \N f f +9174 2025-10-08 18:54:15.623637+00 2025-10-08 18:54:15.623646+00 f t 10287 \N \N f f +9175 2025-10-08 18:56:27.083871+00 2025-10-08 18:56:27.08388+00 f t 10287 \N \N f f +9176 2025-10-08 18:58:24.229662+00 2025-10-08 18:58:24.229669+00 f t 266 \N \N f f +9177 2025-10-08 18:59:28.408112+00 2025-10-08 18:59:28.408119+00 f t 10288 \N \N f f +9178 2025-10-08 19:13:03.449989+00 2025-10-08 19:13:03.449997+00 f t 10289 \N \N f f +9179 2025-10-08 19:16:03.876563+00 2025-10-08 19:16:03.876574+00 f t 10290 \N \N f f +9180 2025-10-08 19:28:17.530559+00 2025-10-08 19:28:17.530567+00 f t 10291 \N \N f f +9181 2025-10-08 19:32:41.589273+00 2025-10-08 19:32:41.58928+00 f t 10292 \N \N f f +9182 2025-10-08 19:37:02.106883+00 2025-10-08 19:37:02.106892+00 f t 10293 \N \N f f +9183 2025-10-08 19:41:23.951633+00 2025-10-08 19:41:23.95164+00 f t 10294 \N \N f f +9184 2025-10-08 19:57:44.295337+00 2025-10-08 19:57:44.295345+00 f t 10295 \N \N f f +9185 2025-10-08 20:10:23.689723+00 2025-10-08 20:10:23.689731+00 f t 10296 \N \N f f +9186 2025-10-08 20:13:19.771436+00 2025-10-08 20:13:19.771447+00 f t 10297 \N \N f f +9187 2025-10-08 20:13:23.139206+00 2025-10-08 20:13:23.139217+00 f t 10298 \N \N f f +9188 2025-10-08 20:18:49.897015+00 2025-10-08 20:18:49.897022+00 f t 409 \N \N f f +9189 2025-10-08 20:27:51.636778+00 2025-10-08 20:27:51.636785+00 f t 10299 \N \N f f +9190 2025-10-08 20:42:57.515181+00 2025-10-08 20:42:57.515188+00 f t 10300 \N \N f f +9191 2025-10-08 21:08:22.163318+00 2025-10-08 21:08:22.163326+00 f t 10301 \N \N f f +9192 2025-10-08 21:08:53.264307+00 2025-10-08 21:08:53.264315+00 f t 10302 \N \N f f +9193 2025-10-08 21:21:49.852834+00 2025-10-08 21:21:49.852845+00 f t 10303 \N \N f f +9194 2025-10-08 21:37:21.63466+00 2025-10-08 21:37:21.634669+00 f t 10304 \N \N f f +9195 2025-10-08 21:57:53.830104+00 2025-10-08 21:57:53.830111+00 f t 10305 \N \N f f +9196 2025-10-08 22:11:38.299396+00 2025-10-08 22:11:38.299405+00 f t 10306 \N \N f f +9197 2025-10-08 22:21:35.826776+00 2025-10-08 22:21:35.826785+00 f t 10307 \N \N f f +9198 2025-10-08 22:22:26.609487+00 2025-10-08 22:22:26.609496+00 f t 10308 \N \N f f +9199 2025-10-08 22:30:51.708499+00 2025-10-08 22:30:51.708506+00 f t 10309 \N \N f f +9200 2025-10-08 22:39:56.536843+00 2025-10-08 22:39:56.53685+00 f t 10310 \N \N f f +9201 2025-10-08 22:44:18.602666+00 2025-10-08 22:44:18.602673+00 f t 10311 \N \N f f +9202 2025-10-08 22:47:03.653677+00 2025-10-08 22:47:03.653685+00 f t 10312 \N \N f f +9203 2025-10-08 23:02:35.147586+00 2025-10-08 23:02:35.147598+00 f t 10313 \N \N f f +9204 2025-10-08 23:14:36.539275+00 2025-10-08 23:14:36.539283+00 f t 10314 \N \N f f +9205 2025-10-08 23:22:16.677718+00 2025-10-08 23:22:16.67773+00 f t 10315 \N \N f f +9206 2025-10-08 23:44:33.098632+00 2025-10-08 23:44:33.098639+00 f t 10316 \N \N f f +9207 2025-10-09 00:54:19.137596+00 2025-10-09 00:54:19.137604+00 f t 10317 \N \N f f +9208 2025-10-09 01:29:26.668132+00 2025-10-09 01:29:26.668139+00 f t 10318 \N \N f f +9209 2025-10-09 01:52:39.117157+00 2025-10-09 01:52:39.117165+00 f t 10319 \N \N f f +9210 2025-10-09 02:01:05.248261+00 2025-10-09 02:01:05.248269+00 f t 10320 \N \N f f +9211 2025-10-09 02:58:49.813075+00 2025-10-09 02:58:49.813084+00 f t 10321 \N \N f f +9212 2025-10-09 04:30:28.681686+00 2025-10-09 04:30:28.681694+00 f t 10322 \N \N f f +9213 2025-10-09 04:50:00.322454+00 2025-10-09 04:50:00.322462+00 f t 10323 \N \N f f +9214 2025-10-09 10:02:21.978192+00 2025-10-09 10:02:21.978202+00 f t 10324 \N \N f f +9215 2025-10-09 10:49:35.723576+00 2025-10-09 10:49:35.723584+00 f t 10325 \N \N f f +9216 2025-10-09 11:02:12.374616+00 2025-10-09 11:02:12.374624+00 f t 10326 \N \N f f +9217 2025-10-09 11:13:41.80134+00 2025-10-09 11:13:41.801349+00 f t 10327 \N \N f f +9218 2025-10-09 11:14:10.657301+00 2025-10-09 11:14:10.657309+00 f t 10328 \N \N f f +9219 2025-10-09 11:28:13.310593+00 2025-10-09 11:28:13.310602+00 f t 10329 \N \N f f +9220 2025-10-09 12:10:32.137888+00 2025-10-09 12:10:32.137897+00 f t 10330 \N \N f f +9221 2025-10-09 12:26:29.346508+00 2025-10-09 12:26:29.346515+00 f t 10331 \N \N f f +9222 2025-10-09 12:40:25.886552+00 2025-10-09 12:40:25.88656+00 f t 10332 \N \N f f +9223 2025-10-09 12:41:00.403626+00 2025-10-09 12:41:00.403636+00 f t 10333 \N \N f f +9224 2025-10-09 12:54:58.55737+00 2025-10-09 12:54:58.557376+00 f t 10334 \N \N f f +9225 2025-10-09 13:04:41.197289+00 2025-10-09 13:04:41.197303+00 f t 10335 \N \N f f +9226 2025-10-09 13:04:44.568697+00 2025-10-09 13:04:44.568706+00 f t 10336 \N \N f f +9227 2025-10-09 13:07:05.523214+00 2025-10-09 13:07:05.523223+00 f t 10337 \N \N f f +9228 2025-10-09 13:14:24.609742+00 2025-10-09 13:14:24.609749+00 f t 10338 \N \N f f +9229 2025-10-09 13:15:31.499541+00 2025-10-09 13:15:31.499549+00 f t 10339 \N \N f f +9230 2025-10-09 14:15:33.363888+00 2025-10-09 14:15:33.363895+00 f t 10340 \N \N f f +9231 2025-10-09 14:18:33.316495+00 2025-10-09 14:18:33.316504+00 f t 10341 \N \N f f +9232 2025-10-09 14:19:23.900779+00 2025-10-09 14:19:23.900786+00 f t 10343 \N \N f f +9233 2025-10-09 14:20:08.578411+00 2025-10-09 14:20:08.578419+00 f t 10342 \N \N f f +9234 2025-10-09 14:29:51.508182+00 2025-10-09 14:29:51.508189+00 f t 10344 \N \N f f +9235 2025-10-09 14:32:02.080176+00 2025-10-09 14:32:02.08019+00 f t 10345 \N \N f f +9236 2025-10-09 14:42:24.735031+00 2025-10-09 14:42:24.735038+00 f t 10346 \N \N f f +9237 2025-10-09 14:47:53.638093+00 2025-10-09 14:47:53.638099+00 f t 10347 \N \N f f +9238 2025-10-09 14:49:11.184987+00 2025-10-09 14:49:11.184995+00 f t 10348 \N \N f f +9239 2025-10-09 15:03:13.310806+00 2025-10-09 15:03:13.310814+00 f t 10349 \N \N f f +9240 2025-10-09 15:22:04.190247+00 2025-10-09 15:22:04.19026+00 f t 10350 \N \N f f +9241 2025-10-09 15:22:50.52719+00 2025-10-09 15:22:50.527198+00 f t 10351 \N \N f f +9242 2025-10-09 15:27:52.263692+00 2025-10-09 15:27:52.2637+00 f t 10352 \N \N f f +9243 2025-10-09 17:58:09.243127+00 2025-10-09 17:58:09.243161+00 f t 10353 \N \N f f +9244 2025-10-09 18:03:16.637282+00 2025-10-09 18:03:16.637291+00 f t 10354 \N \N f f +9245 2025-10-09 18:06:29.267636+00 2025-10-09 18:06:29.267644+00 f t 10355 \N \N f f +9246 2025-10-09 18:06:37.688525+00 2025-10-09 18:06:37.688532+00 f t 10356 \N \N f f +9247 2025-10-09 18:10:19.630717+00 2025-10-09 18:10:19.630725+00 f t 10355 \N \N f f +9248 2025-10-09 18:10:27.949767+00 2025-10-09 18:10:27.949775+00 f t 10006 \N \N f f +9249 2025-10-09 18:22:12.760529+00 2025-10-09 18:22:12.760537+00 f t 10357 \N \N f f +9250 2025-10-09 18:31:43.028815+00 2025-10-09 18:31:43.028823+00 f t 10358 \N \N f f +9251 2025-10-09 18:38:53.045503+00 2025-10-09 18:38:53.045513+00 f t 10359 \N \N f f +9252 2025-10-09 19:13:19.101673+00 2025-10-09 19:13:19.101683+00 f t 10360 \N \N f f +9253 2025-10-09 19:20:24.531988+00 2025-10-09 19:20:24.531995+00 f t 10361 \N \N f f +9254 2025-10-09 20:00:53.475322+00 2025-10-09 20:00:53.475331+00 f t 10362 \N \N f f +9255 2025-10-09 20:02:37.424226+00 2025-10-09 20:02:37.424236+00 f t 10363 \N \N f f +9256 2025-10-09 20:11:21.512246+00 2025-10-09 20:11:21.512255+00 f t 8378 \N \N f f +9257 2025-10-09 20:12:34.805208+00 2025-10-09 20:12:34.805216+00 f t 10364 \N \N f f +9258 2025-10-09 20:13:45.958526+00 2025-10-09 20:13:45.958533+00 f t 10365 \N \N f f +9259 2025-10-09 20:18:17.593039+00 2025-10-09 20:18:17.593048+00 f t 10366 \N \N f f +9260 2025-10-09 20:29:08.728495+00 2025-10-09 20:29:08.728503+00 f t 10367 \N \N f f +9261 2025-10-09 20:42:58.257548+00 2025-10-09 20:42:58.257556+00 f t 10368 \N \N f f +9262 2025-10-09 20:49:09.152729+00 2025-10-09 20:49:09.152736+00 f t 9861 \N \N f f +9263 2025-10-09 21:06:46.7319+00 2025-10-09 21:06:46.731909+00 f t 10369 \N \N f f +9264 2025-10-09 21:30:26.241853+00 2025-10-09 21:30:26.241861+00 f t 10370 \N \N f f +9265 2025-10-09 21:32:24.825771+00 2025-10-09 21:32:24.825779+00 f t 10371 \N \N f f +9266 2025-10-09 21:43:38.976811+00 2025-10-09 21:43:38.976818+00 f t 10372 \N \N f f +9267 2025-10-09 21:52:57.515851+00 2025-10-09 21:52:57.515863+00 f t 10373 \N \N f f +9268 2025-10-09 21:55:43.824994+00 2025-10-09 21:55:43.825006+00 f t 10374 \N \N f f +9269 2025-10-09 22:05:52.947447+00 2025-10-09 22:05:52.947457+00 f t 10375 \N \N f f +9270 2025-10-09 22:07:38.930616+00 2025-10-09 22:07:38.930623+00 f t 10376 \N \N f f +9271 2025-10-09 22:32:03.908356+00 2025-10-09 22:32:03.908364+00 f t 10377 \N \N f f +9272 2025-10-09 22:54:24.217625+00 2025-10-09 22:54:24.217633+00 f t 10378 \N \N f f +9273 2025-10-09 23:18:24.860626+00 2025-10-09 23:18:24.860633+00 f t 10379 \N \N f f +9274 2025-10-09 23:50:50.870352+00 2025-10-09 23:50:50.870364+00 f t 10380 \N \N f f +9275 2025-10-09 23:55:06.598562+00 2025-10-09 23:55:06.59857+00 f t 765 \N \N f f +9276 2025-10-10 00:41:05.122479+00 2025-10-10 00:41:05.122488+00 f t 10381 \N \N f f +9277 2025-10-10 01:29:04.439002+00 2025-10-10 01:29:04.439015+00 f t 10382 \N \N f f +9278 2025-10-10 01:31:13.2796+00 2025-10-10 01:31:13.279608+00 f t 10383 \N \N f f +9279 2025-10-10 02:19:59.420347+00 2025-10-10 02:19:59.420356+00 f t 10384 \N \N f f +9280 2025-10-10 02:21:29.697096+00 2025-10-10 02:21:29.697104+00 f t 10385 \N \N f f +9281 2025-10-10 02:57:29.623671+00 2025-10-10 02:57:29.623678+00 f t 10386 \N \N f f +9282 2025-10-10 03:07:32.328448+00 2025-10-10 03:07:32.328456+00 f t 10387 \N \N f f +9283 2025-10-10 05:11:15.011492+00 2025-10-10 05:11:15.011503+00 f t 10388 \N \N f f +9284 2025-10-10 07:41:21.113039+00 2025-10-10 07:41:21.11305+00 f t 10389 \N \N f f +9285 2025-10-10 08:19:59.317863+00 2025-10-10 08:19:59.317871+00 f t 10390 \N \N f f +9286 2025-10-10 09:02:34.929382+00 2025-10-10 09:02:34.929392+00 f t 10391 \N \N f f +9288 2025-10-10 10:24:26.750029+00 2025-10-10 10:24:26.750037+00 f t 10393 \N \N f f +9287 2025-10-10 10:27:26.008573+00 2025-10-10 10:23:38.583745+00 f t 10392 \N \N f f +9289 2025-10-10 10:49:44.978828+00 2025-10-10 10:49:44.978837+00 f t 10394 \N \N f f +9290 2025-10-10 10:50:18.307717+00 2025-10-10 10:50:18.307725+00 f t 10395 \N \N f f +9291 2025-10-10 11:16:17.456605+00 2025-10-10 11:16:17.456613+00 f t 10396 \N \N f f +9292 2025-10-10 11:37:19.032073+00 2025-10-10 11:37:19.032079+00 f t 10397 \N \N f f +9293 2025-10-10 12:15:03.847697+00 2025-10-10 12:15:03.847709+00 f t 10398 \N \N f f +9294 2025-10-10 12:15:42.919724+00 2025-10-10 12:15:42.919733+00 f t 10399 \N \N f f +9295 2025-10-10 12:23:10.300018+00 2025-10-10 12:23:10.30003+00 f t 73 \N \N f f +9296 2025-10-10 12:28:12.189411+00 2025-10-10 12:28:12.18942+00 f t 10400 \N \N f f +9297 2025-10-10 12:50:32.743802+00 2025-10-10 12:50:32.74381+00 f t 10401 \N \N f f +9298 2025-10-10 12:56:21.573122+00 2025-10-10 12:56:21.573129+00 f t 10402 \N \N f f +9299 2025-10-10 13:00:14.758075+00 2025-10-10 13:00:14.758086+00 f t 10403 \N \N f f +9300 2025-10-10 13:02:09.41844+00 2025-10-10 13:02:09.418451+00 f t 10404 \N \N f f +9301 2025-10-10 13:02:50.993251+00 2025-10-10 13:02:50.993257+00 f t 5951 \N \N f f +9302 2025-10-10 13:04:51.977703+00 2025-10-10 13:04:51.977709+00 f t 10405 \N \N f f +9303 2025-10-10 13:05:13.901793+00 2025-10-10 13:05:13.901801+00 f t 10406 \N \N f f +9304 2025-10-10 13:06:03.42514+00 2025-10-10 13:06:03.425154+00 f t 10407 \N \N f f +9305 2025-10-10 13:07:18.395917+00 2025-10-10 13:07:18.395924+00 f t 10408 \N \N f f +9306 2025-10-10 13:07:49.447125+00 2025-10-10 13:07:49.447153+00 f t 10409 \N \N f f +9307 2025-10-10 13:11:15.273228+00 2025-10-10 13:11:15.273236+00 f t 10410 \N \N f f +9308 2025-10-10 13:12:40.958156+00 2025-10-10 13:12:40.958164+00 f t 10411 \N \N f f +9309 2025-10-10 13:15:24.356428+00 2025-10-10 13:15:24.356436+00 f t 10412 \N \N f f +9310 2025-10-10 13:17:58.078351+00 2025-10-10 13:17:58.078359+00 f t 10413 \N \N f f +9311 2025-10-10 13:29:23.501004+00 2025-10-10 13:29:23.501012+00 f t 10414 \N \N f f +9312 2025-10-10 13:41:06.907313+00 2025-10-10 13:41:06.907322+00 f t 10415 \N \N f f +9313 2025-10-10 14:01:19.525624+00 2025-10-10 14:01:19.525632+00 f t 10416 \N \N f f +9314 2025-10-10 14:03:18.881341+00 2025-10-10 14:03:18.88135+00 f t 10417 \N \N f f +9315 2025-10-10 14:32:12.563896+00 2025-10-10 14:32:12.563906+00 f t 10418 \N \N f f +9316 2025-10-10 14:45:01.184348+00 2025-10-10 14:45:01.18436+00 f t 10419 \N \N f f +9317 2025-10-10 14:49:46.442899+00 2025-10-10 14:49:46.442906+00 f t 10420 \N \N f f +9318 2025-10-10 15:03:26.712793+00 2025-10-10 15:03:26.712801+00 f t 10421 \N \N f f +9319 2025-10-10 15:13:07.760826+00 2025-10-10 15:13:07.760834+00 f t 10422 \N \N f f +9320 2025-10-10 15:21:25.369333+00 2025-10-10 15:21:25.369341+00 f t 10423 \N \N f f +9321 2025-10-10 15:48:59.907889+00 2025-10-10 15:48:59.907898+00 f t 10424 \N \N f f +9322 2025-10-10 15:49:57.607323+00 2025-10-10 15:49:57.607332+00 f t 10425 \N \N f f +9323 2025-10-10 15:56:22.205375+00 2025-10-10 15:56:22.205383+00 f t 10426 \N \N f f +9324 2025-10-10 16:01:07.507208+00 2025-10-10 16:01:07.50722+00 f t 10427 \N \N f f +9325 2025-10-10 16:03:01.801198+00 2025-10-10 16:03:01.801205+00 f t 10428 \N \N f f +9326 2025-10-10 16:04:54.569483+00 2025-10-10 16:04:54.569494+00 f t 10429 \N \N f f +9327 2025-10-10 16:06:10.02381+00 2025-10-10 16:06:10.023825+00 f t 10430 \N \N f f +9328 2025-10-10 16:08:24.857989+00 2025-10-10 16:08:24.857997+00 f t 10431 \N \N f f +9329 2025-10-10 16:10:58.530785+00 2025-10-10 16:10:58.530797+00 f t 10432 \N \N f f +9330 2025-10-10 16:13:58.340591+00 2025-10-10 16:13:58.340599+00 f t 10433 \N \N f f +9331 2025-10-10 16:40:22.496305+00 2025-10-10 16:40:22.496314+00 f t 10434 \N \N f f +9332 2025-10-10 16:48:16.813998+00 2025-10-10 16:48:16.814008+00 f t 10435 \N \N f f +9333 2025-10-10 16:52:45.535294+00 2025-10-10 16:52:45.535304+00 f t 10436 \N \N f f +9334 2025-10-10 17:25:45.229277+00 2025-10-10 17:25:45.229285+00 f t 10437 \N \N f f +9335 2025-10-10 17:26:51.686694+00 2025-10-10 17:26:51.686702+00 f t 10438 \N \N f f +9336 2025-10-10 18:16:31.304423+00 2025-10-10 18:16:31.304431+00 f t 10439 \N \N f f +9337 2025-10-10 18:37:49.146608+00 2025-10-10 18:37:49.146615+00 f t 10440 \N \N f f +9338 2025-10-10 18:45:37.781032+00 2025-10-10 18:45:37.78104+00 f t 10441 \N \N f f +9339 2025-10-10 18:47:45.04041+00 2025-10-10 18:47:45.040419+00 f t 10442 \N \N f f +9340 2025-10-10 19:10:40.698169+00 2025-10-10 19:10:40.698177+00 f t 10443 \N \N f f +9341 2025-10-10 19:11:34.565487+00 2025-10-10 19:11:34.565495+00 f t 10444 \N \N f f +9342 2025-10-10 19:59:23.235436+00 2025-10-10 19:59:23.235444+00 f t 10445 \N \N f f +9343 2025-10-10 20:06:04.125769+00 2025-10-10 20:06:04.125781+00 f t 10446 \N \N f f +9344 2025-10-10 20:13:37.718785+00 2025-10-10 20:13:37.718794+00 f t 10447 \N \N f f +9345 2025-10-10 21:02:44.358104+00 2025-10-10 21:02:44.358113+00 f t 10448 \N \N f f +9346 2025-10-10 21:24:25.83921+00 2025-10-10 21:24:25.839217+00 f t 10449 \N \N f f +9347 2025-10-10 21:26:26.62007+00 2025-10-10 21:26:26.620079+00 f t 10450 \N \N f f +9348 2025-10-10 21:40:58.595992+00 2025-10-10 21:40:58.596001+00 f t 10451 \N \N f f +9349 2025-10-10 21:44:16.906126+00 2025-10-10 21:44:16.906139+00 f t 10452 \N \N f f +9350 2025-10-10 21:46:23.402762+00 2025-10-10 21:46:23.402772+00 f t 10453 \N \N f f +9351 2025-10-10 22:02:05.60501+00 2025-10-10 22:02:05.605018+00 f t 10454 \N \N f f +9352 2025-10-10 22:19:35.503987+00 2025-10-10 22:19:35.503995+00 f t 10455 \N \N f f +9354 2025-10-10 22:32:14.999712+00 2025-10-10 22:32:14.999721+00 f t 10457 \N \N f f +9355 2025-10-10 22:59:04.515999+00 2025-10-10 22:59:04.51601+00 f t 10429 \N \N f f +9356 2025-10-10 23:08:00.644249+00 2025-10-10 23:08:00.644258+00 f t 4255 \N \N f f +9357 2025-10-10 23:10:27.986663+00 2025-10-10 23:10:27.986672+00 f t 10458 \N \N f f +9358 2025-10-10 23:26:12.686521+00 2025-10-10 23:26:12.686532+00 f t 10459 \N \N f f +9359 2025-10-10 23:37:26.643985+00 2025-10-10 23:37:26.643994+00 f t 10460 \N \N f f +9353 2025-10-10 23:43:24.1869+00 2025-10-10 22:19:45.365272+00 f t 10456 \N \N f f +9360 2025-10-10 23:46:07.164374+00 2025-10-10 23:46:07.164382+00 f t 10461 \N \N f f +9361 2025-10-10 23:46:54.147011+00 2025-10-10 23:46:54.147024+00 f t 10462 \N \N f f +9362 2025-10-10 23:55:17.661134+00 2025-10-10 23:55:17.661144+00 f t 10463 \N \N f f +9363 2025-10-11 00:00:09.459398+00 2025-10-11 00:00:09.459415+00 f t 10464 \N \N f f +9364 2025-10-11 00:14:59.451828+00 2025-10-11 00:14:59.451836+00 f t 10465 \N \N f f +9365 2025-10-11 00:51:50.11109+00 2025-10-11 00:51:50.111101+00 f t 10467 \N \N f f +9366 2025-10-11 01:48:29.092123+00 2025-10-11 01:48:29.09213+00 f t 10468 \N \N f f +9367 2025-10-11 01:49:09.523436+00 2025-10-11 01:49:09.523443+00 f t 10469 \N \N f f +9368 2025-10-11 02:25:58.705227+00 2025-10-11 02:25:58.705237+00 f t 10470 \N \N f f +9369 2025-10-11 02:26:54.908804+00 2025-10-11 02:26:54.908813+00 f t 10471 \N \N f f +9370 2025-10-11 03:05:48.000837+00 2025-10-11 03:05:48.000849+00 f t 10472 \N \N f f +9371 2025-10-11 04:07:02.209608+00 2025-10-11 04:07:02.209621+00 f t 10473 \N \N f f +9372 2025-10-11 04:52:31.352754+00 2025-10-11 04:52:31.352762+00 f t 10474 \N \N f f +9373 2025-10-11 05:08:17.720113+00 2025-10-11 05:08:17.720123+00 f t 10475 \N \N f f +9374 2025-10-11 05:09:14.013572+00 2025-10-11 05:09:14.01358+00 f t 10476 \N \N f f +9375 2025-10-11 05:09:44.384874+00 2025-10-11 05:09:44.384882+00 f t 10477 \N \N f f +9376 2025-10-11 05:14:01.900375+00 2025-10-11 05:14:01.900388+00 f t 10478 \N \N f f +9377 2025-10-11 10:08:30.786583+00 2025-10-11 10:08:30.786592+00 f t 10479 \N \N f f +9378 2025-10-11 10:24:06.901443+00 2025-10-11 10:24:06.901451+00 f t 10480 \N \N f f +9379 2025-10-11 10:47:29.954813+00 2025-10-11 10:47:29.954822+00 f t 10481 \N \N f f +9380 2025-10-11 10:49:42.986892+00 2025-10-11 10:49:42.986904+00 f t 10482 \N \N f f +9381 2025-10-11 12:46:56.418185+00 2025-10-11 12:46:56.418201+00 f t 10483 \N \N f f +9382 2025-10-11 13:12:56.004743+00 2025-10-11 13:12:56.004752+00 f t 10484 \N \N f f +9383 2025-10-11 13:32:37.764562+00 2025-10-11 13:32:37.764569+00 f t 10485 \N \N f f +9384 2025-10-11 13:47:10.405879+00 2025-10-11 13:47:10.405888+00 f t 10486 \N \N f f +9385 2025-10-11 13:58:44.718195+00 2025-10-11 13:58:44.718204+00 f t 10487 \N \N f f +9386 2025-10-11 14:12:44.671378+00 2025-10-11 14:12:44.671387+00 f t 10488 \N \N f f +9387 2025-10-11 14:31:41.949294+00 2025-10-11 14:31:41.949305+00 f t 10489 \N \N f f +9388 2025-10-11 15:20:44.699589+00 2025-10-11 15:20:44.699598+00 f t 10490 \N \N f f +9389 2025-10-11 15:21:48.102627+00 2025-10-11 15:21:48.102639+00 f t 10491 \N \N f f +9390 2025-10-11 15:36:35.968127+00 2025-10-11 15:36:35.968138+00 f t 10492 \N \N f f +9391 2025-10-11 16:07:07.596518+00 2025-10-11 16:07:07.596528+00 f t 10493 \N \N f f +9392 2025-10-11 16:11:12.329341+00 2025-10-11 16:11:12.32935+00 f t 10494 \N \N f f +9393 2025-10-11 16:14:46.328475+00 2025-10-11 16:14:46.328488+00 f t 10495 \N \N f f +9394 2025-10-11 16:59:10.899733+00 2025-10-11 16:59:10.899741+00 f t 10496 \N \N f f +9395 2025-10-11 17:42:20.835311+00 2025-10-11 17:42:20.835319+00 f t 10497 \N \N f f +9396 2025-10-11 17:56:02.075252+00 2025-10-11 17:56:02.075263+00 f t 10498 \N \N f f +9397 2025-10-11 18:02:30.371188+00 2025-10-11 18:02:30.371196+00 f t 10499 \N \N f f +9398 2025-10-11 18:15:41.184006+00 2025-10-11 18:15:41.184019+00 f t 10500 \N \N f f +9399 2025-10-11 18:25:25.317238+00 2025-10-11 18:25:25.317251+00 f t 10501 \N \N f f +9400 2025-10-11 18:33:39.481427+00 2025-10-11 18:33:39.481437+00 f t 73 \N \N f f +9401 2025-10-11 18:35:41.611395+00 2025-10-11 18:35:41.611404+00 f t 10502 \N \N f f +9402 2025-10-11 18:38:09.771757+00 2025-10-11 18:38:09.771766+00 f t 10503 \N \N f f +9403 2025-10-11 19:28:29.495516+00 2025-10-11 19:28:29.495524+00 f t 10504 \N \N f f +9404 2025-10-11 19:51:08.621645+00 2025-10-11 19:51:08.621656+00 f t 10505 \N \N f f +9405 2025-10-11 20:12:48.97205+00 2025-10-11 20:12:48.972059+00 f t 10506 \N \N f f +9406 2025-10-11 20:18:15.588515+00 2025-10-11 20:18:15.588522+00 f t 10507 \N \N f f +9407 2025-10-11 21:38:01.79237+00 2025-10-11 21:38:01.792378+00 f t 10508 \N \N f f +9408 2025-10-11 22:36:48.483552+00 2025-10-11 22:36:48.483561+00 f t 10509 \N \N f f +9409 2025-10-11 23:36:32.536456+00 2025-10-11 23:36:32.536463+00 f t 10510 \N \N f f +9410 2025-10-12 00:02:06.978144+00 2025-10-11 23:59:34.154065+00 f t 10511 \N \N f f +9411 2025-10-12 00:03:05.547238+00 2025-10-12 00:03:05.547247+00 f t 10512 \N \N f f +9412 2025-10-12 00:19:09.888468+00 2025-10-12 00:19:09.888477+00 f t 10513 \N \N f f +9413 2025-10-12 00:19:35.428336+00 2025-10-12 00:19:35.428345+00 f t 10514 \N \N f f +9414 2025-10-12 00:42:29.140735+00 2025-10-12 00:42:29.140744+00 f t 10515 \N \N f f +9415 2025-10-12 00:47:12.400086+00 2025-10-12 00:47:12.400097+00 f t 10516 \N \N f f +9416 2025-10-12 03:01:43.833781+00 2025-10-12 03:01:43.833789+00 f t 10517 \N \N f f +9417 2025-10-12 03:02:26.78758+00 2025-10-12 03:02:26.787588+00 f t 10518 \N \N f f +9418 2025-10-12 03:46:58.881934+00 2025-10-12 03:46:58.881943+00 f t 10519 \N \N f f +9419 2025-10-12 03:52:02.507439+00 2025-10-12 03:52:02.507449+00 f t 10520 \N \N f f +9420 2025-10-12 04:00:25.504737+00 2025-10-12 04:00:25.504749+00 f t 10521 \N \N f f +9421 2025-10-12 04:14:02.824123+00 2025-10-12 04:14:02.824136+00 f t 10522 \N \N f f +9422 2025-10-12 04:15:01.3165+00 2025-10-12 04:15:01.316515+00 f t 10523 \N \N f f +9423 2025-10-12 04:19:27.561365+00 2025-10-12 04:19:27.561377+00 f t 10524 \N \N f f +9424 2025-10-12 05:34:28.085326+00 2025-10-12 05:34:28.085335+00 f t 10525 \N \N f f +9425 2025-10-12 06:18:33.53026+00 2025-10-12 06:18:33.530269+00 f t 10526 \N \N f f +9426 2025-10-12 09:41:29.116265+00 2025-10-12 09:41:29.116275+00 f t 10527 \N \N f f +9427 2025-10-12 11:09:52.936966+00 2025-10-12 11:09:52.936974+00 f t 10528 \N \N f f +9428 2025-10-12 11:21:33.398627+00 2025-10-12 11:21:33.398634+00 f t 10529 \N \N f f +9429 2025-10-12 12:04:50.140032+00 2025-10-12 12:04:50.140043+00 f t 10530 \N \N f f +9430 2025-10-12 12:23:27.735348+00 2025-10-12 12:23:27.735356+00 f t 10531 \N \N f f +9431 2025-10-12 12:33:32.924351+00 2025-10-12 12:33:32.924364+00 f t 10532 \N \N f f +9432 2025-10-12 12:38:10.405232+00 2025-10-12 12:38:10.405239+00 f t 10533 \N \N f f +9433 2025-10-12 12:41:11.715948+00 2025-10-12 12:41:11.715957+00 f t 10534 \N \N f f +9434 2025-10-12 13:26:55.036615+00 2025-10-12 13:26:55.036623+00 f t 10535 \N \N f f +9435 2025-10-12 13:42:45.814341+00 2025-10-12 13:42:45.814353+00 f t 10536 \N \N f f +9436 2025-10-12 13:52:01.010268+00 2025-10-12 13:52:01.010277+00 f t 10537 \N \N f f +9437 2025-10-12 13:54:08.162055+00 2025-10-12 13:54:08.162067+00 f t 10538 \N \N f f +9438 2025-10-12 14:01:24.811921+00 2025-10-12 14:01:24.811929+00 f t 10539 \N \N f f +9439 2025-10-12 14:43:40.582465+00 2025-10-12 14:43:40.582477+00 f t 10540 \N \N f f +9440 2025-10-12 15:27:44.486057+00 2025-10-12 15:24:32.080416+00 f t 10541 \N \N f f +9441 2025-10-12 15:30:40.343606+00 2025-10-12 15:30:40.343614+00 f t 10542 \N \N f f +9442 2025-10-12 15:35:39.20699+00 2025-10-12 15:35:39.206997+00 f t 10543 \N \N f f +9443 2025-10-12 15:54:13.101401+00 2025-10-12 15:54:13.101409+00 f t 10544 \N \N f f +9444 2025-10-12 16:10:49.188804+00 2025-10-12 16:10:49.188816+00 f t 10545 \N \N f f +9445 2025-10-12 16:22:04.506587+00 2025-10-12 16:22:04.506595+00 f t 10546 \N \N f f +9446 2025-10-12 16:49:32.312815+00 2025-10-12 16:49:32.312826+00 f t 10547 \N \N f f +9447 2025-10-12 16:52:23.961771+00 2025-10-12 16:52:23.961778+00 f t 10548 \N \N f f +9448 2025-10-12 16:58:12.173466+00 2025-10-12 16:58:12.173474+00 f t 10549 \N \N f f +9449 2025-10-12 17:00:39.747576+00 2025-10-12 17:00:39.747586+00 f t 10550 \N \N f f +9450 2025-10-12 17:06:03.290127+00 2025-10-12 17:06:03.290136+00 f t 10551 \N \N f f +9451 2025-10-12 17:11:56.675994+00 2025-10-12 17:11:56.676008+00 f t 10552 \N \N f f +9452 2025-10-12 17:21:17.669327+00 2025-10-12 17:21:17.669336+00 f t 10553 \N \N f f +9453 2025-10-12 18:49:50.538527+00 2025-10-12 18:49:50.538536+00 f t 10554 \N \N f f +9454 2025-10-12 19:04:39.264036+00 2025-10-12 19:04:39.264044+00 f t 10555 \N \N f f +9455 2025-10-12 19:15:33.817306+00 2025-10-12 19:15:33.817318+00 f t 10556 \N \N f f +9456 2025-10-12 19:16:58.027568+00 2025-10-12 19:16:58.027581+00 f t 10557 \N \N f f +9457 2025-10-12 19:21:31.574449+00 2025-10-12 19:21:31.574457+00 f t 10558 \N \N f f +9458 2025-10-12 19:32:40.543275+00 2025-10-12 19:32:40.543283+00 f t 10559 \N \N f f +9459 2025-10-12 19:54:26.414742+00 2025-10-12 19:54:26.414751+00 f t 10560 \N \N f f +9460 2025-10-12 19:55:11.330306+00 2025-10-12 19:55:11.330314+00 f t 10560 \N \N f f +9461 2025-10-12 20:07:19.31217+00 2025-10-12 20:07:19.312179+00 f t 7501 \N \N f f +9463 2025-10-12 20:13:49.899587+00 2025-10-12 20:13:49.899598+00 f t 10562 \N \N f f +9464 2025-10-12 20:17:00.804485+00 2025-10-12 20:17:00.804491+00 f t 710 \N \N f f +9465 2025-10-12 20:18:44.467787+00 2025-10-12 20:18:44.467798+00 f t 10563 \N \N f f +9466 2025-10-12 20:24:08.640378+00 2025-10-12 20:24:08.640388+00 f t 10564 \N \N f f +9467 2025-10-12 20:31:01.041016+00 2025-10-12 20:31:01.041025+00 f t 123 \N \N f f +9468 2025-10-12 20:35:03.148139+00 2025-10-12 20:35:03.148155+00 f t 123 \N \N f f +9462 2025-10-12 20:38:41.247714+00 2025-10-12 20:12:58.335012+00 f t 10561 \N \N f f +9470 2025-10-12 21:22:37.465477+00 2025-10-12 21:22:37.46549+00 f t 10566 \N \N f f +9471 2025-10-12 21:36:07.359999+00 2025-10-12 21:36:07.360007+00 f t 10567 \N \N f f +9472 2025-10-12 22:15:53.493387+00 2025-10-12 22:15:53.493395+00 f t 10568 \N \N f f +9473 2025-10-12 22:23:48.46593+00 2025-10-12 22:23:48.465939+00 f t 10569 \N \N f f +9474 2025-10-12 22:53:57.643991+00 2025-10-12 22:53:57.644+00 f t 10570 \N \N f f +9475 2025-10-12 22:58:03.126373+00 2025-10-12 22:58:03.126383+00 f t 10571 \N \N f f +9476 2025-10-12 23:00:38.391525+00 2025-10-12 23:00:38.391538+00 f t 10572 \N \N f f +9477 2025-10-12 23:29:22.838687+00 2025-10-12 23:29:22.838699+00 f t 10573 \N \N f f +9478 2025-10-12 23:41:46.895882+00 2025-10-12 23:41:46.895891+00 f t 10574 \N \N f f +9479 2025-10-13 00:15:43.777731+00 2025-10-13 00:15:43.77774+00 f t 10575 \N \N f f +9480 2025-10-13 01:21:27.343378+00 2025-10-13 01:21:27.343387+00 f t 10576 \N \N f f +9481 2025-10-13 01:21:54.908265+00 2025-10-13 01:21:54.908278+00 f t 10577 \N \N f f +9482 2025-10-13 01:39:20.374608+00 2025-10-13 01:39:20.374619+00 f t 10578 \N \N f f +9483 2025-10-13 02:35:47.720584+00 2025-10-13 02:35:47.720592+00 f t 10579 \N \N f f +9484 2025-10-13 02:46:44.093595+00 2025-10-13 02:46:44.093601+00 f t 10580 \N \N f f +9485 2025-10-13 02:47:21.711447+00 2025-10-13 02:47:21.711459+00 f t 10581 \N \N f f +9486 2025-10-13 02:49:31.917472+00 2025-10-13 02:49:31.91748+00 f t 10582 \N \N f f +9487 2025-10-13 02:50:11.739184+00 2025-10-13 02:50:11.739194+00 f t 10583 \N \N f f +9469 2025-10-12 20:39:04.010711+00 2025-10-12 20:39:04.01072+00 f t 10561 \N \N f f +9488 2025-10-13 03:00:36.405861+00 2025-10-13 03:00:36.405869+00 f t 10584 \N \N f f +9489 2025-10-13 03:05:32.789351+00 2025-10-13 03:05:32.789363+00 f t 10585 \N \N f f +9490 2025-10-13 04:41:37.610198+00 2025-10-13 04:41:37.610207+00 f t 10586 \N \N f f +9491 2025-10-13 04:41:48.033489+00 2025-10-13 04:41:48.033497+00 f t 10587 \N \N f f +9492 2025-10-13 04:46:14.523669+00 2025-10-13 04:43:35.008226+00 f t 10588 \N \N f f +9493 2025-10-13 04:48:12.165707+00 2025-10-13 04:48:12.165715+00 f t 10589 \N \N f f +9494 2025-10-13 05:04:38.833339+00 2025-10-13 05:04:38.833347+00 f t 10590 \N \N f f +9495 2025-10-13 05:14:22.840588+00 2025-10-13 05:14:22.8406+00 f t 10591 \N \N f f +9496 2025-10-13 05:36:37.631836+00 2025-10-13 05:36:37.631844+00 f t 10592 \N \N f f +9497 2025-10-13 06:36:56.940603+00 2025-10-13 06:36:56.940613+00 f t 10593 \N \N f f +9498 2025-10-13 07:43:45.503246+00 2025-10-13 07:43:45.503253+00 f t 10594 \N \N f f +9499 2025-10-13 08:17:12.12417+00 2025-10-13 08:17:12.124179+00 f t 10595 \N \N f f +9500 2025-10-13 08:20:16.274916+00 2025-10-13 08:20:16.274926+00 f t 10596 \N \N f f +9501 2025-10-13 09:52:22.421511+00 2025-10-13 09:52:22.421522+00 f t 10597 \N \N f f +9502 2025-10-13 10:34:49.133851+00 2025-10-13 10:34:49.13386+00 f t 10598 \N \N f f +9503 2025-10-13 10:50:24.212529+00 2025-10-13 10:50:24.212537+00 f t 10599 \N \N f f +9504 2025-10-13 11:55:35.942568+00 2025-10-13 11:55:35.942576+00 f t 10600 \N \N f f +9505 2025-10-13 11:56:16.582455+00 2025-10-13 11:56:16.582464+00 f t 10601 \N \N f f +9506 2025-10-13 12:03:06.667569+00 2025-10-13 12:03:06.66758+00 f t 10602 \N \N f f +9507 2025-10-13 12:08:50.334553+00 2025-10-13 12:08:50.334564+00 f t 10603 \N \N f f +9508 2025-10-13 12:48:31.539337+00 2025-10-13 12:48:31.539349+00 f t 9435 \N \N f f +9509 2025-10-13 13:10:15.046861+00 2025-10-13 13:10:15.046868+00 f t 4987 \N \N f f +9510 2025-10-13 13:20:37.919909+00 2025-10-13 13:20:37.919928+00 f t 10604 \N \N f f +9511 2025-10-13 13:23:21.971204+00 2025-10-13 13:23:21.971212+00 f t 10605 \N \N f f +9512 2025-10-13 13:24:32.582435+00 2025-10-13 13:24:32.582443+00 f t 10606 \N \N f f +9513 2025-10-13 13:34:33.21757+00 2025-10-13 13:34:33.217581+00 f t 10607 \N \N f f +9514 2025-10-13 13:43:54.312908+00 2025-10-13 13:43:54.31292+00 f t 10608 \N \N f f +9515 2025-10-13 13:46:35.658185+00 2025-10-13 13:46:35.658193+00 f t 10609 \N \N f f +9516 2025-10-13 13:48:30.651883+00 2025-10-13 13:48:30.651892+00 f t 10610 \N \N f f +9517 2025-10-13 13:51:34.744984+00 2025-10-13 13:51:34.744997+00 f t 10611 \N \N f f +9518 2025-10-13 13:54:22.518018+00 2025-10-13 13:54:22.518031+00 f t 10612 \N \N f f +9519 2025-10-13 14:01:46.691842+00 2025-10-13 14:01:46.691852+00 f t 123 \N \N f f +9520 2025-10-13 14:10:09.678455+00 2025-10-13 14:10:09.678464+00 f t 10613 \N \N f f +9521 2025-10-13 14:22:53.343008+00 2025-10-13 14:22:53.34302+00 f t 10614 \N \N f f +9522 2025-10-13 14:29:51.308214+00 2025-10-13 14:29:51.308222+00 f t 10615 \N \N f f +9523 2025-10-13 14:37:07.105554+00 2025-10-13 14:37:07.105562+00 f t 7306 \N \N f f +9524 2025-10-13 14:41:07.043055+00 2025-10-13 14:41:07.043064+00 f t 10617 \N \N f f +9525 2025-10-13 14:41:26.068025+00 2025-10-13 14:41:26.068037+00 f t 10616 \N \N f f +9526 2025-10-13 14:43:39.23565+00 2025-10-13 14:43:39.235657+00 f t 10618 \N \N f f +9527 2025-10-13 14:46:00.94412+00 2025-10-13 14:46:00.944132+00 f t 10619 \N \N f f +9528 2025-10-13 14:47:27.959705+00 2025-10-13 14:47:27.959714+00 f t 10620 \N \N f f +9529 2025-10-13 14:48:58.618268+00 2025-10-13 14:48:58.61828+00 f t 10621 \N \N f f +9530 2025-10-13 14:49:11.627356+00 2025-10-13 14:49:11.627365+00 f t 10622 \N \N f f +9531 2025-10-13 14:49:30.129365+00 2025-10-13 14:49:30.129378+00 f t 10623 \N \N f f +9532 2025-10-13 14:50:52.45812+00 2025-10-13 14:50:52.45813+00 f t 10624 \N \N f f +9533 2025-10-13 14:51:28.758742+00 2025-10-13 14:51:28.758757+00 f t 10625 \N \N f f +9534 2025-10-13 14:53:58.763529+00 2025-10-13 14:53:58.763538+00 f t 10626 \N \N f f +9535 2025-10-13 14:58:29.639629+00 2025-10-13 14:58:29.639641+00 f t 10627 \N \N f f +9536 2025-10-13 15:03:20.539499+00 2025-10-13 15:03:20.539509+00 f t 10628 \N \N f f +9537 2025-10-13 15:15:14.806192+00 2025-10-13 15:15:14.8062+00 f t 10629 \N \N f f +9538 2025-10-13 15:17:55.112938+00 2025-10-13 15:17:55.112948+00 f t 10630 \N \N f f +9539 2025-10-13 15:19:57.821316+00 2025-10-13 15:19:57.821324+00 f t 10631 \N \N f f +9540 2025-10-13 15:23:34.508141+00 2025-10-13 15:23:34.50815+00 f t 345 \N \N f f +9541 2025-10-13 15:24:37.646791+00 2025-10-13 15:24:37.646801+00 f t 10632 \N \N f f +9542 2025-10-13 15:45:27.694009+00 2025-10-13 15:45:27.694027+00 f t 10633 \N \N f f +9543 2025-10-13 15:57:50.47215+00 2025-10-13 15:57:50.472163+00 f t 10634 \N \N f f +9544 2025-10-13 16:09:28.237682+00 2025-10-13 16:09:28.237693+00 f t 10635 \N \N f f +9545 2025-10-13 16:19:12.384782+00 2025-10-13 16:19:12.384788+00 f t 9126 \N \N f f +9546 2025-10-13 16:43:50.751334+00 2025-10-13 16:43:50.751341+00 f t 10636 \N \N f f +9547 2025-10-13 16:45:51.126162+00 2025-10-13 16:45:51.12617+00 f t 10637 \N \N f f +9548 2025-10-13 16:47:02.876404+00 2025-10-13 16:47:02.876412+00 f t 8378 \N \N f f +9549 2025-10-13 17:03:05.221266+00 2025-10-13 17:03:05.221276+00 f t 10638 \N \N f f +9550 2025-10-13 17:05:50.762573+00 2025-10-13 17:05:50.762582+00 f t 10639 \N \N f f +9551 2025-10-13 17:29:15.31308+00 2025-10-13 17:29:15.313089+00 f t 10640 \N \N f f +9552 2025-10-13 17:45:30.164632+00 2025-10-13 17:45:30.164642+00 f t 10641 \N \N f f +9553 2025-10-13 17:54:56.749204+00 2025-10-13 17:54:56.749212+00 f t 10642 \N \N f f +9554 2025-10-13 17:58:39.144472+00 2025-10-13 17:58:39.144481+00 f t 10643 \N \N f f +9555 2025-10-13 18:13:20.010963+00 2025-10-13 18:13:20.010971+00 f t 10644 \N \N f f +9556 2025-10-13 18:28:02.04559+00 2025-10-13 18:28:02.045602+00 f t 10645 \N \N f f +9557 2025-10-13 18:36:13.578719+00 2025-10-13 18:36:13.578728+00 f t 10646 \N \N f f +9558 2025-10-13 18:39:31.924127+00 2025-10-13 18:39:31.924137+00 f t 10647 \N \N f f +9559 2025-10-13 18:40:01.111322+00 2025-10-13 18:40:01.111337+00 f t 10648 \N \N f f +9560 2025-10-13 18:59:03.713841+00 2025-10-13 18:59:03.713855+00 f t 123 \N \N f f +9561 2025-10-13 19:07:42.318916+00 2025-10-13 19:07:42.318924+00 f t 10649 \N \N f f +9562 2025-10-13 19:55:11.03858+00 2025-10-13 19:55:11.03859+00 f t 10650 \N \N f f +9563 2025-10-13 20:19:41.459666+00 2025-10-13 20:19:41.459677+00 f t 10651 \N \N f f +9564 2025-10-13 20:55:30.535805+00 2025-10-13 20:55:30.535814+00 f t 10652 \N \N f f +9565 2025-10-13 21:00:46.44597+00 2025-10-13 21:00:46.445981+00 f t 10653 \N \N f f +9566 2025-10-13 21:04:35.840926+00 2025-10-13 21:04:35.840934+00 f t 10654 \N \N f f +9567 2025-10-13 21:19:20.268628+00 2025-10-13 21:19:20.26864+00 f t 10655 \N \N f f +9568 2025-10-13 21:34:54.323675+00 2025-10-13 21:34:54.323686+00 f t 10656 \N \N f f +9569 2025-10-13 21:53:01.778489+00 2025-10-13 21:53:01.778496+00 f t 10657 \N \N f f +9570 2025-10-13 22:02:23.528408+00 2025-10-13 22:02:23.528415+00 f t 10658 \N \N f f +9571 2025-10-13 22:04:25.584095+00 2025-10-13 22:04:25.584105+00 f t 10659 \N \N f f +9572 2025-10-13 22:36:46.236263+00 2025-10-13 22:36:46.236272+00 f t 10660 \N \N f f +9573 2025-10-13 22:45:45.638117+00 2025-10-13 22:45:45.638132+00 f t 10661 \N \N f f +9574 2025-10-13 22:49:36.553823+00 2025-10-13 22:49:36.553832+00 f t 10662 \N \N f f +9575 2025-10-13 23:05:15.377246+00 2025-10-13 23:05:15.377254+00 f t 10663 \N \N f f +9576 2025-10-13 23:07:01.583648+00 2025-10-13 23:07:01.583657+00 f t 10664 \N \N f f +9577 2025-10-13 23:15:55.464862+00 2025-10-13 23:15:55.46487+00 f t 10665 \N \N f f +9578 2025-10-13 23:19:05.777751+00 2025-10-13 23:19:05.777761+00 f t 10666 \N \N f f +9579 2025-10-13 23:25:28.182503+00 2025-10-13 23:25:28.182513+00 f t 10667 \N \N f f +9580 2025-10-13 23:32:56.830238+00 2025-10-13 23:32:56.830246+00 f t 10668 \N \N f f +9581 2025-10-13 23:46:43.343514+00 2025-10-13 23:46:43.343522+00 f t 10669 \N \N f f +9582 2025-10-13 23:52:42.666473+00 2025-10-13 23:52:42.666483+00 f t 9430 \N \N f f +9583 2025-10-14 00:00:53.62648+00 2025-10-14 00:00:53.62649+00 f t 10670 \N \N f f +9584 2025-10-14 00:05:18.135247+00 2025-10-14 00:05:18.135255+00 f t 10671 \N \N f f +9585 2025-10-14 00:08:24.301358+00 2025-10-14 00:08:24.301366+00 f t 4604 \N \N f f +9586 2025-10-14 00:13:24.00277+00 2025-10-14 00:13:24.002779+00 f t 10672 \N \N f f +9587 2025-10-14 00:15:51.535112+00 2025-10-14 00:15:51.535163+00 f t 10673 \N \N f f +9588 2025-10-14 00:30:22.930935+00 2025-10-14 00:30:22.930944+00 f t 10674 \N \N f f +9589 2025-10-14 00:46:03.415311+00 2025-10-14 00:43:25.030166+00 f t 10675 \N \N f f +9590 2025-10-14 01:10:54.040605+00 2025-10-14 01:10:54.040614+00 f t 10676 \N \N f f +9591 2025-10-14 01:12:17.824478+00 2025-10-14 01:12:17.824487+00 f t 10677 \N \N f f +9592 2025-10-14 01:15:25.135307+00 2025-10-14 01:15:25.135318+00 f t 10678 \N \N f f +9593 2025-10-14 01:24:03.194672+00 2025-10-14 01:24:03.194681+00 f t 10679 \N \N f f +9594 2025-10-14 01:40:27.669672+00 2025-10-14 01:40:27.669679+00 f t 10680 \N \N f f +9595 2025-10-14 02:50:04.414677+00 2025-10-14 02:50:04.414692+00 f t 10681 \N \N f f +9596 2025-10-14 02:59:59.389955+00 2025-10-14 02:59:59.389966+00 f t 10682 \N \N f f +9597 2025-10-14 03:14:55.093378+00 2025-10-14 03:14:55.093385+00 f t 10683 \N \N f f +9598 2025-10-14 03:19:14.558796+00 2025-10-14 03:19:14.558809+00 f t 10684 \N \N f f +9599 2025-10-14 04:10:30.577863+00 2025-10-14 04:10:30.577871+00 f t 10685 \N \N f f +9600 2025-10-14 04:33:03.512338+00 2025-10-14 04:33:03.512347+00 f t 10686 \N \N f f +9601 2025-10-14 06:14:57.70476+00 2025-10-14 06:14:57.70477+00 f t 10687 \N \N f f +9602 2025-10-14 07:14:18.634156+00 2025-10-14 07:14:18.634164+00 f t 10688 \N \N f f +9603 2025-10-14 08:11:18.522447+00 2025-10-14 08:11:18.522459+00 f t 10689 \N \N f f +9604 2025-10-14 10:54:20.023432+00 2025-10-14 10:54:20.02344+00 f t 10690 \N \N f f +9605 2025-10-14 12:38:14.393189+00 2025-10-14 12:38:14.393201+00 f t 10691 \N \N f f +9606 2025-10-14 13:26:50.739974+00 2025-10-14 13:26:50.739982+00 f t 10692 \N \N f f +9607 2025-10-14 13:30:53.827534+00 2025-10-14 13:30:53.827542+00 f t 10693 \N \N f f +9608 2025-10-14 13:43:23.018964+00 2025-10-14 13:43:23.018973+00 f t 10694 \N \N f f +9609 2025-10-14 13:53:59.512043+00 2025-10-14 13:53:59.512051+00 f t 10695 \N \N f f +9610 2025-10-14 14:13:30.883405+00 2025-10-14 14:13:30.883419+00 f t 10696 \N \N f f +9611 2025-10-14 14:21:44.78978+00 2025-10-14 14:21:44.789788+00 f t 10697 \N \N f f +9612 2025-10-14 14:25:30.938187+00 2025-10-14 14:25:30.938198+00 f t 10698 \N \N f f +9613 2025-10-14 14:34:41.81684+00 2025-10-14 14:34:41.816847+00 f t 10700 \N \N f f +9614 2025-10-14 14:42:51.972153+00 2025-10-14 14:42:51.972161+00 f t 10701 \N \N f f +9615 2025-10-14 14:48:06.613285+00 2025-10-14 14:48:06.613298+00 f t 10702 \N \N f f +9616 2025-10-14 15:00:18.780168+00 2025-10-14 15:00:18.780179+00 f t 10703 \N \N f f +9617 2025-10-14 15:04:23.421107+00 2025-10-14 15:04:23.421116+00 f t 10704 \N \N f f +9618 2025-10-14 15:09:41.276023+00 2025-10-14 15:09:41.27603+00 f t 3692 \N \N f f +9619 2025-10-14 15:27:00.855226+00 2025-10-14 15:27:00.855235+00 f t 10705 \N \N f f +9620 2025-10-14 15:39:02.825135+00 2025-10-14 15:39:02.825148+00 f t 10706 \N \N f f +9621 2025-10-14 15:54:04.754706+00 2025-10-14 15:54:04.754714+00 f t 10707 \N \N f f +9622 2025-10-14 16:06:07.176725+00 2025-10-14 16:06:07.176733+00 f t 10708 \N \N f f +9623 2025-10-14 16:43:01.715449+00 2025-10-14 16:43:01.715458+00 f t 10710 \N \N f f +9624 2025-10-14 16:43:43.046587+00 2025-10-14 16:43:43.046594+00 f t 10709 \N \N f f +9625 2025-10-14 16:48:16.072042+00 2025-10-14 16:48:16.07205+00 f t 10711 \N \N f f +9626 2025-10-14 17:00:12.281348+00 2025-10-14 17:00:12.281362+00 f t 10712 \N \N f f +9627 2025-10-14 17:19:19.059066+00 2025-10-14 17:19:19.059075+00 f t 10707 \N \N f f +9628 2025-10-14 17:20:28.703998+00 2025-10-14 17:20:28.704011+00 f t 10713 \N \N f f +9629 2025-10-14 17:22:41.022991+00 2025-10-14 17:22:41.023002+00 f t 10707 \N \N f f +9630 2025-10-14 17:39:45.910271+00 2025-10-14 17:39:45.910281+00 f t 10714 \N \N f f +9631 2025-10-14 17:48:17.200318+00 2025-10-14 17:48:17.200326+00 f t 10715 \N \N f f +9632 2025-10-14 18:04:10.045805+00 2025-10-14 18:04:10.045818+00 f t 10716 \N \N f f +9633 2025-10-14 18:04:22.339912+00 2025-10-14 18:04:22.339921+00 f t 10717 \N \N f f +9634 2025-10-14 18:11:36.969269+00 2025-10-14 18:11:36.969278+00 f t 10718 \N \N f f +9635 2025-10-14 18:26:49.828189+00 2025-10-14 18:26:49.828201+00 f t 9861 \N \N f f +9636 2025-10-14 18:32:01.717998+00 2025-10-14 18:32:01.718006+00 f t 10203 \N \N f f +9637 2025-10-14 18:32:57.293069+00 2025-10-14 18:32:57.293076+00 f t 10203 \N \N f f +9638 2025-10-14 18:40:32.049865+00 2025-10-14 18:40:32.049875+00 f t 10719 \N \N f f +9639 2025-10-14 18:44:02.058652+00 2025-10-14 18:44:02.058665+00 f t 10613 \N \N f f +9640 2025-10-14 19:03:03.955675+00 2025-10-14 19:03:03.955689+00 f t 10720 \N \N f f +9641 2025-10-14 20:05:45.689604+00 2025-10-14 20:05:45.689613+00 f t 10721 \N \N f f +9642 2025-10-14 20:13:37.995314+00 2025-10-14 20:13:37.995324+00 f t 8918 \N \N f f +9643 2025-10-14 20:19:59.332364+00 2025-10-14 20:19:59.332375+00 f t 10722 \N \N f f +9644 2025-10-14 20:22:52.256869+00 2025-10-14 20:22:52.256876+00 f t 10723 \N \N f f +9645 2025-10-14 20:25:35.386803+00 2025-10-14 20:25:35.386811+00 f t 10724 \N \N f f +9646 2025-10-14 20:29:44.230308+00 2025-10-14 20:29:44.230317+00 f t 10725 \N \N f f +9647 2025-10-14 20:47:31.134959+00 2025-10-14 20:47:31.134966+00 f t 10726 \N \N f f +9648 2025-10-14 20:55:29.354445+00 2025-10-14 20:55:29.354453+00 f t 10727 \N \N f f +9649 2025-10-14 21:06:31.273477+00 2025-10-14 21:06:31.273489+00 f t 10728 \N \N f f +9650 2025-10-14 21:24:19.365851+00 2025-10-14 21:24:19.365861+00 f t 10729 \N \N f f +9651 2025-10-14 22:17:11.267066+00 2025-10-14 22:17:11.267075+00 f t 10730 \N \N f f +9652 2025-10-14 22:55:41.992771+00 2025-10-14 22:55:41.992784+00 f t 10731 \N \N f f +9653 2025-10-14 23:36:27.680538+00 2025-10-14 23:36:27.680546+00 f t 10732 \N \N f f +9654 2025-10-14 23:38:07.00146+00 2025-10-14 23:38:07.001471+00 f t 10733 \N \N f f +9655 2025-10-14 23:42:15.344955+00 2025-10-14 23:42:15.344964+00 f t 10734 \N \N f f +9656 2025-10-14 23:49:00.721425+00 2025-10-14 23:49:00.721433+00 f t 10735 \N \N f f +9657 2025-10-14 23:52:19.562145+00 2025-10-14 23:52:19.562155+00 f t 10736 \N \N f f +9658 2025-10-15 00:02:35.881263+00 2025-10-15 00:02:35.881272+00 f t 10737 \N \N f f +9659 2025-10-15 00:08:29.955738+00 2025-10-15 00:08:29.955746+00 f t 10738 \N \N f f +9660 2025-10-15 00:11:12.632982+00 2025-10-15 00:11:12.63299+00 f t 10739 \N \N f f +9661 2025-10-15 00:17:59.66476+00 2025-10-15 00:17:59.664769+00 f t 10740 \N \N f f +9662 2025-10-15 01:07:15.554623+00 2025-10-15 01:07:15.554633+00 f t 10741 \N \N f f +9663 2025-10-15 01:22:18.80539+00 2025-10-15 01:22:18.805401+00 f t 10742 \N \N f f +9664 2025-10-15 01:32:08.099102+00 2025-10-15 01:32:08.099111+00 f t 10743 \N \N f f +9665 2025-10-15 01:44:56.881179+00 2025-10-15 01:44:56.881188+00 f t 10744 \N \N f f +9666 2025-10-15 01:45:14.318204+00 2025-10-15 01:45:14.318216+00 f t 10745 \N \N f f +9667 2025-10-15 01:48:19.583326+00 2025-10-15 01:48:19.583334+00 f t 10746 \N \N f f +9671 2025-10-15 03:29:36.735016+00 2025-10-15 03:29:36.735024+00 f t 10750 \N \N f f +9672 2025-10-15 03:53:07.205543+00 2025-10-15 03:53:07.205555+00 f t 10751 \N \N f f +9673 2025-10-15 08:19:04.09245+00 2025-10-15 08:19:04.09246+00 f t 10752 \N \N f f +9674 2025-10-15 08:30:23.999542+00 2025-10-15 08:30:23.999554+00 f t 10753 \N \N f f +9675 2025-10-15 09:09:44.306539+00 2025-10-15 09:09:44.306549+00 f t 10754 \N \N f f +9676 2025-10-15 10:32:08.770877+00 2025-10-15 10:32:08.770886+00 f t 10755 \N \N f f +9677 2025-10-15 10:33:29.191425+00 2025-10-15 10:33:29.191432+00 f t 10756 \N \N f f +9678 2025-10-15 10:51:29.549006+00 2025-10-15 10:51:29.549015+00 f t 10757 \N \N f f +9679 2025-10-15 10:58:56.406409+00 2025-10-15 10:58:56.406417+00 f t 10758 \N \N f f +9680 2025-10-15 12:09:17.701252+00 2025-10-15 12:09:17.70126+00 f t 10759 \N \N f f +9681 2025-10-15 12:32:56.954151+00 2025-10-15 12:32:56.95416+00 f t 9297 \N \N f f +9682 2025-10-15 12:40:12.336476+00 2025-10-15 12:40:12.336487+00 f t 10761 \N \N f f +9683 2025-10-15 13:17:00.286443+00 2025-10-15 13:17:00.286452+00 f t 10762 \N \N f f +9684 2025-10-15 13:47:14.779896+00 2025-10-15 13:47:14.779906+00 f t 10763 \N \N f f +9685 2025-10-15 14:17:36.953544+00 2025-10-15 14:17:36.953553+00 f t 10764 \N \N f f +9686 2025-10-15 14:17:54.612442+00 2025-10-15 14:17:54.612452+00 f t 10765 \N \N f f +9687 2025-10-15 14:21:25.451076+00 2025-10-15 14:21:25.451085+00 f t 10766 \N \N f f +9688 2025-10-15 14:23:26.330057+00 2025-10-15 14:23:26.330064+00 f t 10765 \N \N f f +9689 2025-10-15 14:26:29.411055+00 2025-10-15 14:26:29.411063+00 f t 10767 \N \N f f +9690 2025-10-15 14:33:11.822278+00 2025-10-15 14:33:11.822287+00 f t 10768 \N \N f f +9691 2025-10-15 14:34:14.837671+00 2025-10-15 14:34:14.83768+00 f t 7306 \N \N f f +9692 2025-10-15 14:43:06.38555+00 2025-10-15 14:43:06.385565+00 f t 10769 \N \N f f +9693 2025-10-15 14:46:25.926397+00 2025-10-15 14:46:25.926406+00 f t 10770 \N \N f f +9694 2025-10-15 14:46:54.240713+00 2025-10-15 14:46:54.240722+00 f t 123 \N \N f f +9695 2025-10-15 14:47:21.75984+00 2025-10-15 14:47:21.759852+00 f t 10771 \N \N f f +9696 2025-10-15 14:54:39.005608+00 2025-10-15 14:54:39.005621+00 f t 10772 \N \N f f +9697 2025-10-15 14:57:20.974699+00 2025-10-15 14:57:20.974709+00 f t 10773 \N \N f f +9698 2025-10-15 14:59:51.834631+00 2025-10-15 14:59:51.834644+00 f t 10774 \N \N f f +9699 2025-10-15 15:00:15.055867+00 2025-10-15 15:00:15.055879+00 f t 10775 \N \N f f +9700 2025-10-15 15:17:58.929117+00 2025-10-15 15:17:58.929125+00 f t 10776 \N \N f f +9701 2025-10-15 15:23:04.205427+00 2025-10-15 15:23:04.205435+00 f t 10777 \N \N f f +9702 2025-10-15 15:40:39.358823+00 2025-10-15 15:40:39.358836+00 f t 10778 \N \N f f +9703 2025-10-15 15:53:56.929511+00 2025-10-15 15:53:56.929522+00 f t 10779 \N \N f f +9704 2025-10-15 16:19:46.046917+00 2025-10-15 16:19:46.046925+00 f t 10780 \N \N f f +9705 2025-10-15 16:42:36.366611+00 2025-10-15 16:42:36.366619+00 f t 6176 \N \N f f +9706 2025-10-15 16:44:46.36869+00 2025-10-15 16:44:46.368702+00 f t 10781 \N \N f f +9707 2025-10-15 16:50:02.987027+00 2025-10-15 16:50:02.987042+00 f t 10782 \N \N f f +9708 2025-10-15 17:02:07.355511+00 2025-10-15 17:02:07.355519+00 f t 10783 \N \N f f +9709 2025-10-15 17:04:38.380436+00 2025-10-15 17:04:38.380448+00 f t 10784 \N \N f f +9710 2025-10-15 17:12:55.025212+00 2025-10-15 17:12:55.025224+00 f t 10785 \N \N f f +9711 2025-10-15 17:18:52.249891+00 2025-10-15 17:18:52.249899+00 f t 10786 \N \N f f +9712 2025-10-15 17:30:35.510419+00 2025-10-15 17:30:35.510431+00 f t 10787 \N \N f f +9713 2025-10-15 17:37:32.87931+00 2025-10-15 17:37:32.879324+00 f t 10788 \N \N f f +9714 2025-10-15 18:11:15.770061+00 2025-10-15 18:11:15.770075+00 f t 10789 \N \N f f +9715 2025-10-15 18:32:25.265856+00 2025-10-15 18:32:25.265864+00 f t 10790 \N \N f f +9716 2025-10-15 18:33:33.396704+00 2025-10-15 18:33:33.396713+00 f t 10791 \N \N f f +9717 2025-10-15 18:41:09.537344+00 2025-10-15 18:41:09.537359+00 f t 10792 \N \N f f +9718 2025-10-15 18:45:40.172732+00 2025-10-15 18:45:40.172741+00 f t 10793 \N \N f f +9719 2025-10-15 19:02:47.074734+00 2025-10-15 19:02:47.074746+00 f t 10794 \N \N f f +9720 2025-10-15 19:07:42.712369+00 2025-10-15 19:07:42.712377+00 f t 10795 \N \N f f +9721 2025-10-15 19:12:42.659613+00 2025-10-15 19:12:42.65962+00 f t 10796 \N \N f f +9722 2025-10-15 19:13:46.404197+00 2025-10-15 19:13:46.404207+00 f t 10355 \N \N f f +9723 2025-10-15 19:14:07.283606+00 2025-10-15 19:14:07.283613+00 f t 10797 \N \N f f +9724 2025-10-15 19:14:25.277897+00 2025-10-15 19:14:25.277904+00 f t 10355 \N \N f f +9725 2025-10-15 19:27:08.577002+00 2025-10-15 19:27:08.577011+00 f t 10798 \N \N f f +9726 2025-10-15 19:28:20.341766+00 2025-10-15 19:28:20.341774+00 f t 10799 \N \N f f +9727 2025-10-15 20:02:42.840819+00 2025-10-15 20:02:42.840826+00 f t 10800 \N \N f f +9728 2025-10-15 20:04:43.160489+00 2025-10-15 20:04:43.160496+00 f t 10801 \N \N f f +9729 2025-10-15 20:28:51.657273+00 2025-10-15 20:28:51.657284+00 f t 10802 \N \N f f +9730 2025-10-15 20:32:58.818293+00 2025-10-15 20:32:58.818302+00 f t 10803 \N \N f f +9731 2025-10-15 20:36:26.398316+00 2025-10-15 20:36:26.398324+00 f t 10804 \N \N f f +9732 2025-10-15 20:50:59.631092+00 2025-10-15 20:50:59.631103+00 f t 10805 \N \N f f +9733 2025-10-15 21:20:38.609449+00 2025-10-15 21:20:38.609459+00 f t 10806 \N \N f f +9734 2025-10-15 21:20:47.126781+00 2025-10-15 21:20:47.126793+00 f t 10807 \N \N f f +9735 2025-10-15 21:31:08.263548+00 2025-10-15 21:31:08.263559+00 f t 10808 \N \N f f +9736 2025-10-15 21:33:33.894536+00 2025-10-15 21:33:33.894544+00 f t 10809 \N \N f f +9737 2025-10-15 21:54:07.214766+00 2025-10-15 21:54:07.214774+00 f t 10810 \N \N f f +9738 2025-10-15 21:54:57.914087+00 2025-10-15 21:54:57.914095+00 f t 10811 \N \N f f +9739 2025-10-15 22:27:21.356768+00 2025-10-15 22:27:21.356776+00 f t 10812 \N \N f f +9740 2025-10-15 22:28:07.38915+00 2025-10-15 22:28:07.389161+00 f t 10813 \N \N f f +9741 2025-10-15 22:35:47.574128+00 2025-10-15 22:35:47.574136+00 f t 10814 \N \N f f +9742 2025-10-15 22:36:04.440229+00 2025-10-15 22:36:04.440242+00 f t 10815 \N \N f f +9743 2025-10-15 22:53:51.514339+00 2025-10-15 22:53:51.514349+00 f t 10816 \N \N f f +9744 2025-10-15 22:56:38.642219+00 2025-10-15 22:56:38.642227+00 f t 233 \N \N f f +9745 2025-10-15 22:59:29.342099+00 2025-10-15 22:59:29.342108+00 f t 10817 \N \N f f +9746 2025-10-15 22:59:34.21849+00 2025-10-15 22:59:34.2185+00 f t 10818 \N \N f f +9747 2025-10-15 23:05:12.756856+00 2025-10-15 23:05:12.756866+00 f t 10819 \N \N f f +9748 2025-10-15 23:09:56.326826+00 2025-10-15 23:09:56.326833+00 f t 10820 \N \N f f +9749 2025-10-15 23:29:06.28669+00 2025-10-15 23:29:06.286701+00 f t 10821 \N \N f f +9750 2025-10-15 23:31:46.075407+00 2025-10-15 23:31:46.075415+00 f t 10822 \N \N f f +9751 2025-10-15 23:38:23.220708+00 2025-10-15 23:38:23.220719+00 f t 10823 \N \N f f +9752 2025-10-15 23:41:10.261225+00 2025-10-15 23:41:10.261237+00 f t 10824 \N \N f f +9753 2025-10-15 23:41:54.013334+00 2025-10-15 23:41:54.013346+00 f t 10825 \N \N f f +9754 2025-10-15 23:53:03.008554+00 2025-10-15 23:53:03.008566+00 f t 10826 \N \N f f +9755 2025-10-15 23:59:48.479796+00 2025-10-15 23:59:48.479808+00 f t 10827 \N \N f f +9756 2025-10-16 00:13:16.987201+00 2025-10-16 00:13:16.987208+00 f t 10828 \N \N f f +9757 2025-10-16 00:16:49.648435+00 2025-10-16 00:16:49.648444+00 f t 10829 \N \N f f +9758 2025-10-16 00:46:02.423641+00 2025-10-16 00:46:02.423654+00 f t 10830 \N \N f f +9759 2025-10-16 02:23:58.873709+00 2025-10-16 02:23:58.873717+00 f t 10831 \N \N f f +9760 2025-10-16 02:29:31.751996+00 2025-10-16 02:29:31.752004+00 f t 10832 \N \N f f +9761 2025-10-16 03:20:41.901155+00 2025-10-16 03:20:41.901162+00 f t 10833 \N \N f f +9762 2025-10-16 03:27:40.552495+00 2025-10-16 03:27:40.552503+00 f t 10834 \N \N f f +9763 2025-10-16 05:28:47.349489+00 2025-10-16 05:28:47.349497+00 f t 10835 \N \N f f +9764 2025-10-16 05:35:40.033518+00 2025-10-16 05:35:40.033526+00 f t 10836 \N \N f f +9765 2025-10-16 07:34:12.239999+00 2025-10-16 07:34:12.240011+00 f t 10837 \N \N f f +9766 2025-10-16 09:13:13.330391+00 2025-10-16 09:13:13.3304+00 f t 10838 \N \N f f +9767 2025-10-16 09:14:46.593693+00 2025-10-16 09:14:46.5937+00 f t 10839 \N \N f f +9768 2025-10-16 09:48:59.35131+00 2025-10-16 09:48:59.351318+00 f t 10840 \N \N f f +9769 2025-10-16 09:53:16.872542+00 2025-10-16 09:53:16.87255+00 f t 10841 \N \N f f +9770 2025-10-16 09:55:54.652624+00 2025-10-16 09:55:54.652634+00 f t 10842 \N \N f f +9771 2025-10-16 10:56:09.386812+00 2025-10-16 10:56:09.386822+00 f t 10843 \N \N f f +9772 2025-10-16 11:48:36.102669+00 2025-10-16 11:48:36.102677+00 f t 10844 \N \N f f +9773 2025-10-16 11:55:15.85632+00 2025-10-16 11:55:15.856331+00 f t 10845 \N \N f f +9774 2025-10-16 11:59:33.355969+00 2025-10-16 11:59:33.355977+00 f t 10846 \N \N f f +9775 2025-10-16 12:30:03.841736+00 2025-10-16 12:30:03.84175+00 f t 10847 \N \N f f +9776 2025-10-16 12:36:36.376075+00 2025-10-16 12:36:36.376082+00 f t 10848 \N \N f f +9777 2025-10-16 12:39:43.293214+00 2025-10-16 12:39:43.293226+00 f t 10849 \N \N f f +9778 2025-10-16 12:59:15.923186+00 2025-10-16 12:59:15.923193+00 f t 10850 \N \N f f +9779 2025-10-16 13:04:16.74787+00 2025-10-16 13:04:16.747876+00 f t 10851 \N \N f f +9780 2025-10-16 13:07:11.36959+00 2025-10-16 13:07:11.3696+00 f t 10852 \N \N f f +9781 2025-10-16 13:08:22.080552+00 2025-10-16 13:08:22.080561+00 f t 10853 \N \N f f +9782 2025-10-16 13:09:18.022093+00 2025-10-16 13:09:18.022101+00 f t 10854 \N \N f f +9783 2025-10-16 13:16:47.637375+00 2025-10-16 13:16:47.637382+00 f t 10855 \N \N f f +9785 2025-10-16 13:50:01.694707+00 2025-10-16 13:50:01.694721+00 f t 10857 \N \N f f +9786 2025-10-16 13:52:49.006782+00 2025-10-16 13:52:49.00679+00 f t 8918 \N \N f f +9787 2025-10-16 13:59:29.287565+00 2025-10-16 13:59:29.287576+00 f t 10858 \N \N f f +9784 2025-10-16 14:02:30.96815+00 2025-10-16 13:38:34.936337+00 f t 2174 \N \N f f +9788 2025-10-16 14:03:53.84612+00 2025-10-16 14:03:53.846128+00 f t 10859 \N \N f f +9789 2025-10-16 14:21:22.766063+00 2025-10-16 14:21:22.76607+00 f t 10860 \N \N f f +9790 2025-10-16 15:02:27.383768+00 2025-10-16 15:02:27.383778+00 f t 10861 \N \N f f +9791 2025-10-16 15:11:14.62131+00 2025-10-16 15:11:14.621319+00 f t 10862 \N \N f f +9792 2025-10-16 15:25:41.725495+00 2025-10-16 15:25:41.725507+00 f t 10863 \N \N f f +9793 2025-10-16 15:28:38.152314+00 2025-10-16 15:28:38.152321+00 f t 10864 \N \N f f +9794 2025-10-16 15:35:33.358229+00 2025-10-16 15:35:33.358241+00 f t 10865 \N \N f f +9795 2025-10-16 16:05:46.344307+00 2025-10-16 16:05:46.344319+00 f t 10867 \N \N f f +9796 2025-10-16 16:07:48.736692+00 2025-10-16 16:07:48.7367+00 f t 10868 \N \N f f +9797 2025-10-16 16:18:00.752475+00 2025-10-16 16:18:00.752483+00 f t 10869 \N \N f f +9798 2025-10-16 16:31:02.39009+00 2025-10-16 16:31:02.390102+00 f t 10870 \N \N f f +9799 2025-10-16 16:37:31.460792+00 2025-10-16 16:37:31.4608+00 f t 10871 \N \N f f +9800 2025-10-16 17:06:56.077105+00 2025-10-16 17:06:56.077113+00 f t 10872 \N \N f f +9801 2025-10-16 17:10:38.771909+00 2025-10-16 17:10:38.771918+00 f t 10873 \N \N f f +9802 2025-10-16 17:15:13.433602+00 2025-10-16 17:15:13.43361+00 f t 10874 \N \N f f +9803 2025-10-16 17:18:35.046069+00 2025-10-16 17:18:35.046078+00 f t 10875 \N \N f f +9804 2025-10-16 17:33:50.56763+00 2025-10-16 17:33:50.567638+00 f t 10876 \N \N f f +9805 2025-10-16 17:34:21.676194+00 2025-10-16 17:34:21.676201+00 f t 10877 \N \N f f +9806 2025-10-16 17:51:46.883848+00 2025-10-16 17:51:46.883858+00 f t 10878 \N \N f f +9807 2025-10-16 17:59:03.625316+00 2025-10-16 17:59:03.625324+00 f t 10879 \N \N f f +9808 2025-10-16 18:34:48.144123+00 2025-10-16 18:34:48.144135+00 f t 3866 \N \N f f +9809 2025-10-16 18:50:26.252806+00 2025-10-16 18:50:26.252815+00 f t 10880 \N \N f f +9810 2025-10-16 19:04:37.465148+00 2025-10-16 19:04:37.465156+00 f t 10880 \N \N f f +9811 2025-10-16 19:10:27.683052+00 2025-10-16 19:10:27.683063+00 f t 10881 \N \N f f +9812 2025-10-16 19:32:07.134888+00 2025-10-16 19:32:07.1349+00 f t 3866 \N \N f f +9813 2025-10-16 19:47:53.737704+00 2025-10-16 19:47:53.737713+00 f t 10882 \N \N f f +9814 2025-10-16 20:06:21.53916+00 2025-10-16 20:06:21.539173+00 f t 10883 \N \N f f +9815 2025-10-16 20:19:01.486348+00 2025-10-16 20:19:01.48636+00 f t 10884 \N \N f f +9816 2025-10-16 20:21:17.772237+00 2025-10-16 20:21:17.772249+00 f t 10885 \N \N f f +9817 2025-10-16 20:50:11.499049+00 2025-10-16 20:50:11.499057+00 f t 10886 \N \N f f +9818 2025-10-16 21:09:21.517359+00 2025-10-16 21:09:21.517367+00 f t 4987 \N \N f f +9819 2025-10-16 21:19:24.154226+00 2025-10-16 21:19:24.154234+00 f t 2211 \N \N f f +9820 2025-10-16 21:27:39.958622+00 2025-10-16 21:27:39.958629+00 f t 10613 \N \N f f +9821 2025-10-16 21:32:48.529942+00 2025-10-16 21:32:48.52995+00 f t 10887 \N \N f f +9822 2025-10-16 21:51:32.220689+00 2025-10-16 21:51:32.220696+00 f t 10888 \N \N f f +9823 2025-10-16 21:52:12.826192+00 2025-10-16 21:52:12.826204+00 f t 619 \N \N f f +9824 2025-10-16 21:52:35.411082+00 2025-10-16 21:52:35.41109+00 f t 10889 \N \N f f +9825 2025-10-16 21:54:06.061149+00 2025-10-16 21:54:06.06116+00 f t 10890 \N \N f f +9826 2025-10-16 22:00:25.348333+00 2025-10-16 22:00:25.348343+00 f t 10891 \N \N f f +9827 2025-10-16 22:00:56.525078+00 2025-10-16 22:00:56.525087+00 f t 10892 \N \N f f +9828 2025-10-16 22:00:58.161795+00 2025-10-16 22:00:58.161803+00 f t 10893 \N \N f f +9829 2025-10-16 22:05:25.073479+00 2025-10-16 22:05:25.073491+00 f t 10894 \N \N f f +9830 2025-10-16 22:24:43.457947+00 2025-10-16 22:24:43.457956+00 f t 10895 \N \N f f +9831 2025-10-16 22:29:54.264782+00 2025-10-16 22:29:54.26479+00 f t 10896 \N \N f f +9832 2025-10-16 22:55:31.621303+00 2025-10-16 22:55:31.621311+00 f t 10897 \N \N f f +9833 2025-10-16 23:08:07.595208+00 2025-10-16 23:08:07.595218+00 f t 10898 \N \N f f +9834 2025-10-16 23:09:49.674663+00 2025-10-16 23:09:49.674673+00 f t 10899 \N \N f f +9835 2025-10-16 23:11:30.606101+00 2025-10-16 23:11:30.606111+00 f t 10900 \N \N f f +9836 2025-10-16 23:13:14.665836+00 2025-10-16 23:13:14.665845+00 f t 10901 \N \N f f +9837 2025-10-16 23:21:57.242169+00 2025-10-16 23:21:57.242177+00 f t 10902 \N \N f f +9838 2025-10-16 23:22:26.362405+00 2025-10-16 23:22:26.362413+00 f t 10903 \N \N f f +9839 2025-10-16 23:26:59.157471+00 2025-10-16 23:26:59.15748+00 f t 10904 \N \N f f +9840 2025-10-16 23:31:01.549509+00 2025-10-16 23:31:01.54952+00 f t 10905 \N \N f f +9841 2025-10-16 23:32:55.59702+00 2025-10-16 23:32:55.597029+00 f t 10906 \N \N f f +9842 2025-10-16 23:35:37.727282+00 2025-10-16 23:35:37.727291+00 f t 10907 \N \N f f +9843 2025-10-16 23:39:30.827661+00 2025-10-16 23:39:30.827671+00 f t 10908 \N \N f f +9844 2025-10-17 00:04:32.983985+00 2025-10-17 00:04:32.983993+00 f t 10909 \N \N f f +9845 2025-10-17 00:04:49.736257+00 2025-10-17 00:04:49.736265+00 f t 10910 \N \N f f +9846 2025-10-17 00:11:54.943719+00 2025-10-17 00:11:54.943728+00 f t 10911 \N \N f f +9847 2025-10-17 00:30:26.866407+00 2025-10-17 00:30:26.866416+00 f t 10912 \N \N f f +9848 2025-10-17 00:45:53.277093+00 2025-10-17 00:45:53.277102+00 f t 10913 \N \N f f +9849 2025-10-17 00:53:48.247834+00 2025-10-17 00:53:48.247843+00 f t 10914 \N \N f f +9850 2025-10-17 00:57:45.620973+00 2025-10-17 00:57:45.620982+00 f t 10915 \N \N f f +9851 2025-10-17 01:04:01.77827+00 2025-10-17 01:04:01.77828+00 f t 10916 \N \N f f +9852 2025-10-17 01:05:37.839575+00 2025-10-17 01:05:37.839585+00 f t 10917 \N \N f f +9853 2025-10-17 01:07:01.705651+00 2025-10-17 01:07:01.705664+00 f t 10918 \N \N f f +9854 2025-10-17 01:37:31.511625+00 2025-10-17 01:37:31.511634+00 f t 10919 \N \N f f +9855 2025-10-17 01:38:24.886114+00 2025-10-17 01:38:24.886126+00 f t 10920 \N \N f f +9856 2025-10-17 01:39:29.87665+00 2025-10-17 01:39:29.876661+00 f t 10921 \N \N f f +9857 2025-10-17 01:39:47.656166+00 2025-10-17 01:39:47.656173+00 f t 10922 \N \N f f +9858 2025-10-17 02:14:30.666962+00 2025-10-17 02:14:30.66697+00 f t 10923 \N \N f f +9859 2025-10-17 02:16:22.779023+00 2025-10-17 02:16:22.779031+00 f t 10911 \N \N f f +9860 2025-10-17 02:44:04.355554+00 2025-10-17 02:39:09.600735+00 f t 10924 \N \N f f +9861 2025-10-17 03:04:26.594512+00 2025-10-17 03:04:26.594521+00 f t 10925 \N \N f f +9862 2025-10-17 03:06:42.630014+00 2025-10-17 03:06:42.630022+00 f t 10926 \N \N f f +9864 2025-10-17 03:07:55.811557+00 2025-10-17 03:07:55.811569+00 f t 10928 \N \N f f +9866 2025-10-17 03:16:15.617262+00 2025-10-17 03:16:15.617271+00 f t 10930 \N \N f f +9867 2025-10-17 03:30:06.219649+00 2025-10-17 03:30:06.219664+00 f t 10931 \N \N f f +9865 2025-10-17 03:16:09.11089+00 2025-10-17 03:16:09.110901+00 f t 10927 \N \N f f +9868 2025-10-17 03:34:10.144809+00 2025-10-17 03:34:10.144817+00 f t 10927 \N \N f f +9958 2025-10-18 01:55:50.202184+00 2025-10-18 01:55:50.202196+00 f t 11010 \N \N f f +9869 2025-10-17 03:37:03.308255+00 2025-10-17 03:37:03.308264+00 f t 10933 \N \N f f +9870 2025-10-17 03:39:11.920856+00 2025-10-17 03:39:11.920866+00 f t 10927 \N \N f f +9871 2025-10-17 03:44:49.315575+00 2025-10-17 03:44:49.315584+00 f t 10927 \N \N f f +9872 2025-10-17 03:51:02.385769+00 2025-10-17 03:51:02.385781+00 f t 10936 \N \N f f +9873 2025-10-17 04:32:40.28293+00 2025-10-17 04:32:40.282944+00 f t 10937 \N \N f f +9874 2025-10-17 04:33:13.248259+00 2025-10-17 04:33:13.248266+00 f t 10938 \N \N f f +9875 2025-10-17 04:33:52.974051+00 2025-10-17 04:33:52.974061+00 f t 10939 \N \N f f +9876 2025-10-17 04:34:01.718236+00 2025-10-17 04:34:01.718249+00 f t 10940 \N \N f f +9877 2025-10-17 09:39:33.084386+00 2025-10-17 09:39:33.084396+00 f t 10941 \N \N f f +9878 2025-10-17 10:23:21.99972+00 2025-10-17 10:23:21.999728+00 f t 10942 \N \N f f +9879 2025-10-17 10:23:33.461068+00 2025-10-17 10:23:33.461076+00 f t 10943 \N \N f f +9880 2025-10-17 10:25:02.949477+00 2025-10-17 10:25:02.949493+00 f t 10944 \N \N f f +9881 2025-10-17 11:36:43.353026+00 2025-10-17 11:36:43.353034+00 f t 10945 \N \N f f +9882 2025-10-17 11:46:12.016675+00 2025-10-17 11:46:12.016683+00 f t 10946 \N \N f f +9884 2025-10-17 11:50:57.044038+00 2025-10-17 11:50:57.044047+00 f t 10948 \N \N f f +9885 2025-10-17 11:51:55.421263+00 2025-10-17 11:51:55.421272+00 f t 10949 \N \N f f +9886 2025-10-17 12:18:15.080069+00 2025-10-17 12:18:15.080079+00 f t 10950 \N \N f f +9887 2025-10-17 12:37:46.819331+00 2025-10-17 12:37:46.819339+00 f t 10951 \N \N f f +9883 2025-10-17 13:27:30.019804+00 2025-10-17 11:50:37.370272+00 f t 710 \N \N f f +9888 2025-10-17 13:41:44.086072+00 2025-10-17 13:41:44.086084+00 f t 10927 \N \N f f +9889 2025-10-17 13:45:01.89435+00 2025-10-17 13:45:01.894365+00 f t 10953 \N \N f f +9890 2025-10-17 13:45:02.932551+00 2025-10-17 13:45:02.500933+00 f t 10953 \N \N f f +9891 2025-10-17 13:45:08.427997+00 2025-10-17 13:45:08.428007+00 f t 10953 \N \N f f +9892 2025-10-17 13:51:17.77961+00 2025-10-17 13:51:17.779619+00 f t 10613 \N \N f f +9863 2025-10-17 14:40:23.884244+00 2025-10-17 03:07:06.093372+00 f t 10927 \N \N f f +9893 2025-10-17 14:57:19.297864+00 2025-10-17 14:57:19.297875+00 f t 10954 \N \N f f +9894 2025-10-17 15:25:29.015565+00 2025-10-17 15:25:29.015577+00 f t 10955 \N \N f f +9895 2025-10-17 15:33:05.378114+00 2025-10-17 15:33:05.378122+00 f t 10956 \N \N f f +9896 2025-10-17 15:37:54.685124+00 2025-10-17 15:37:54.685131+00 f t 10957 \N \N f f +9897 2025-10-17 15:43:18.45843+00 2025-10-17 15:43:18.458438+00 f t 10957 \N \N f f +9898 2025-10-17 15:45:24.206435+00 2025-10-17 15:45:24.206445+00 f t 10958 \N \N f f +9899 2025-10-17 15:50:06.256308+00 2025-10-17 15:50:06.256318+00 f t 10959 \N \N f f +9900 2025-10-17 16:13:08.377423+00 2025-10-17 16:13:08.377433+00 f t 10960 \N \N f f +9901 2025-10-17 16:17:26.279197+00 2025-10-17 16:17:26.279205+00 f t 10961 \N \N f f +9902 2025-10-17 16:26:28.4603+00 2025-10-17 16:26:28.460308+00 f t 10962 \N \N f f +9903 2025-10-17 16:26:56.33227+00 2025-10-17 16:26:56.332277+00 f t 10963 \N \N f f +9904 2025-10-17 16:45:48.509047+00 2025-10-17 16:45:48.509055+00 f t 10964 \N \N f f +9905 2025-10-17 17:13:54.495224+00 2025-10-17 17:13:54.495233+00 f t 10965 \N \N f f +9906 2025-10-17 17:17:36.679403+00 2025-10-17 17:17:36.679414+00 f t 10835 \N \N f f +9907 2025-10-17 17:25:44.943635+00 2025-10-17 17:25:44.943646+00 f t 10967 \N \N f f +9908 2025-10-17 17:37:56.588608+00 2025-10-17 17:37:56.588618+00 f t 10968 \N \N f f +9909 2025-10-17 17:38:41.193856+00 2025-10-17 17:38:41.19388+00 f t 10969 \N \N f f +9910 2025-10-17 17:41:23.910194+00 2025-10-17 17:41:23.910205+00 f t 10970 \N \N f f +9911 2025-10-17 17:52:39.164486+00 2025-10-17 17:52:39.164494+00 f t 10971 \N \N f f +9912 2025-10-17 17:58:16.183227+00 2025-10-17 17:58:16.183235+00 f t 10835 \N \N f f +9913 2025-10-17 18:03:44.53328+00 2025-10-17 18:03:44.533288+00 f t 10973 \N \N f f +9914 2025-10-17 18:27:06.641064+00 2025-10-17 18:27:06.641073+00 f t 10974 \N \N f f +9915 2025-10-17 18:36:45.777488+00 2025-10-17 18:36:45.7775+00 f t 10975 \N \N f f +9916 2025-10-17 18:41:14.947017+00 2025-10-17 18:41:14.947028+00 f t 10976 \N \N f f +9917 2025-10-17 19:11:59.474589+00 2025-10-17 19:11:59.474597+00 f t 10977 \N \N f f +9918 2025-10-17 19:21:04.276291+00 2025-10-17 19:21:04.276301+00 f t 10978 \N \N f f +9919 2025-10-17 19:26:31.314817+00 2025-10-17 19:26:31.314827+00 f t 10979 \N \N f f +9920 2025-10-17 19:32:41.405371+00 2025-10-17 19:32:41.405381+00 f t 10980 \N \N f f +9921 2025-10-17 19:48:26.956568+00 2025-10-17 19:48:26.95658+00 f t 266 \N \N f f +9922 2025-10-17 19:49:50.633033+00 2025-10-17 19:49:50.633041+00 f t 10981 \N \N f f +9923 2025-10-17 20:06:35.376051+00 2025-10-17 20:06:35.376058+00 f t 10982 \N \N f f +9924 2025-10-17 20:08:32.429053+00 2025-10-17 20:08:32.429065+00 f t 9310 \N \N f f +9925 2025-10-17 21:03:20.454931+00 2025-10-17 21:03:20.454943+00 f t 10983 \N \N f f +9926 2025-10-17 21:04:53.769773+00 2025-10-17 21:04:53.769786+00 f t 10984 \N \N f f +9927 2025-10-17 21:05:04.251164+00 2025-10-17 21:05:04.251183+00 f t 10901 \N \N f f +9928 2025-10-17 21:05:07.905967+00 2025-10-17 21:05:07.905977+00 f t 10901 \N \N f f +9929 2025-10-17 21:09:55.1072+00 2025-10-17 21:09:55.107208+00 f t 10985 \N \N f f +9930 2025-10-17 21:36:49.118039+00 2025-10-17 21:36:49.118047+00 f t 10986 \N \N f f +9931 2025-10-17 21:46:52.80079+00 2025-10-17 21:46:52.800798+00 f t 9310 \N \N f f +9932 2025-10-17 21:57:29.093462+00 2025-10-17 21:57:29.093475+00 f t 10987 \N \N f f +9933 2025-10-17 22:01:16.850277+00 2025-10-17 22:01:16.85029+00 f t 10988 \N \N f f +9934 2025-10-17 22:17:01.055346+00 2025-10-17 22:17:01.055354+00 f t 10963 \N \N f f +9935 2025-10-17 22:23:27.536049+00 2025-10-17 22:23:27.536058+00 f t 10963 \N \N f f +9936 2025-10-17 23:11:26.666807+00 2025-10-17 23:11:26.666815+00 f t 10989 \N \N f f +9937 2025-10-17 23:12:20.837773+00 2025-10-17 23:12:20.837784+00 f t 10990 \N \N f f +9938 2025-10-17 23:19:49.260714+00 2025-10-17 23:19:49.260723+00 f t 10991 \N \N f f +9939 2025-10-17 23:20:03.169187+00 2025-10-17 23:20:03.169202+00 f t 10945 \N \N f f +9940 2025-10-17 23:38:12.61141+00 2025-10-17 23:38:12.611419+00 f t 10993 \N \N f f +9941 2025-10-17 23:38:41.847845+00 2025-10-17 23:38:41.847856+00 f t 10994 \N \N f f +9942 2025-10-17 23:58:25.87607+00 2025-10-17 23:58:25.876085+00 f t 10995 \N \N f f +9943 2025-10-18 00:05:33.2966+00 2025-10-18 00:05:33.296609+00 f t 10996 \N \N f f +9944 2025-10-18 00:06:26.964263+00 2025-10-18 00:06:26.964287+00 f t 10997 \N \N f f +9945 2025-10-18 00:08:24.450932+00 2025-10-18 00:08:24.450942+00 f t 10998 \N \N f f +9946 2025-10-18 00:12:34.501572+00 2025-10-18 00:12:34.501581+00 f t 4255 \N \N f f +9947 2025-10-18 00:12:51.748893+00 2025-10-18 00:12:51.748902+00 f t 10999 \N \N f f +9948 2025-10-18 00:14:47.966956+00 2025-10-18 00:14:47.966965+00 f t 11000 \N \N f f +9949 2025-10-18 00:23:50.095544+00 2025-10-18 00:23:50.095552+00 f t 11001 \N \N f f +9950 2025-10-18 00:24:35.879947+00 2025-10-18 00:24:35.879955+00 f t 633 \N \N f f +9951 2025-10-18 00:35:44.260128+00 2025-10-18 00:35:44.26014+00 f t 11003 \N \N f f +9952 2025-10-18 00:48:51.050368+00 2025-10-18 00:48:51.05038+00 f t 11004 \N \N f f +9953 2025-10-18 00:50:04.354523+00 2025-10-18 00:50:04.354537+00 f t 11005 \N \N f f +9954 2025-10-18 00:53:56.499095+00 2025-10-18 00:53:56.499104+00 f t 11006 \N \N f f +9955 2025-10-18 01:27:32.540279+00 2025-10-18 01:27:32.540289+00 f t 11007 \N \N f f +9956 2025-10-18 01:29:28.033149+00 2025-10-18 01:29:28.033158+00 f t 11008 \N \N f f +9957 2025-10-18 01:42:55.696942+00 2025-10-18 01:42:55.696958+00 f t 11009 \N \N f f +9959 2025-10-18 03:33:17.473793+00 2025-10-18 03:33:17.473801+00 f t 11011 \N \N f f +9960 2025-10-18 03:44:23.363902+00 2025-10-18 03:44:23.363911+00 f t 11012 \N \N f f +9961 2025-10-18 03:47:19.237858+00 2025-10-18 03:47:19.237867+00 f t 11013 \N \N f f +9962 2025-10-18 04:00:41.272579+00 2025-10-18 04:00:41.272589+00 f t 11014 \N \N f f +9963 2025-10-18 06:27:05.18051+00 2025-10-18 06:27:05.180524+00 f t 11015 \N \N f f +9964 2025-10-18 06:32:00.912026+00 2025-10-18 06:32:00.912037+00 f t 11016 \N \N f f +9965 2025-10-18 10:05:07.172559+00 2025-10-18 10:05:07.172568+00 f t 11017 \N \N f f +9966 2025-10-18 10:41:07.560587+00 2025-10-18 10:41:07.560597+00 f t 11018 \N \N f f +9967 2025-10-18 10:59:09.35174+00 2025-10-18 10:59:09.351749+00 f t 11019 \N \N f f +9968 2025-10-18 11:31:21.797864+00 2025-10-18 11:31:21.797873+00 f t 11020 \N \N f f +9969 2025-10-18 11:51:48.685684+00 2025-10-18 11:51:48.685698+00 f t 11021 \N \N f f +9970 2025-10-18 12:17:03.574741+00 2025-10-18 12:17:03.574752+00 f t 11022 \N \N f f +9971 2025-10-18 12:37:21.909162+00 2025-10-18 12:37:21.909172+00 f t 11023 \N \N f f +9972 2025-10-18 13:12:23.488057+00 2025-10-18 13:12:23.488065+00 f t 11024 \N \N f f +9973 2025-10-18 14:01:58.495436+00 2025-10-18 14:01:58.495448+00 f t 11025 \N \N f f +9974 2025-10-18 14:32:44.782295+00 2025-10-18 14:32:44.782308+00 f t 11026 \N \N f f +9975 2025-10-18 14:43:20.388833+00 2025-10-18 14:43:20.388844+00 f t 11027 \N \N f f +9976 2025-10-18 14:58:32.144271+00 2025-10-18 14:58:32.14428+00 f t 11028 \N \N f f +9977 2025-10-18 15:28:29.997256+00 2025-10-18 15:28:29.997265+00 f t 11029 \N \N f f +9978 2025-10-18 16:02:10.80173+00 2025-10-18 16:02:10.801741+00 f t 11030 \N \N f f +9979 2025-10-18 16:06:41.079725+00 2025-10-18 16:06:41.079734+00 f t 11031 \N \N f f +9980 2025-10-18 16:06:54.895349+00 2025-10-18 16:06:54.895366+00 f t 11032 \N \N f f +9981 2025-10-18 16:11:11.594048+00 2025-10-18 16:11:11.594057+00 f t 11033 \N \N f f +9982 2025-10-18 16:16:37.485132+00 2025-10-18 16:16:37.485143+00 f t 5189 \N \N f f +9983 2025-10-18 16:18:42.967728+00 2025-10-18 16:18:42.967737+00 f t 11034 \N \N f f +9984 2025-10-18 16:36:27.713659+00 2025-10-18 16:36:27.71367+00 f t 10863 \N \N f f +9985 2025-10-18 16:37:19.770037+00 2025-10-18 16:37:19.77005+00 f t 11035 \N \N f f +9986 2025-10-18 16:41:40.053232+00 2025-10-18 16:41:40.053241+00 f t 11036 \N \N f f +9987 2025-10-18 16:59:40.614494+00 2025-10-18 16:59:40.614502+00 f t 11037 \N \N f f +9988 2025-10-18 17:26:46.207286+00 2025-10-18 17:26:46.207296+00 f t 11038 \N \N f f +9989 2025-10-18 17:31:50.852756+00 2025-10-18 17:31:50.852765+00 f t 11039 \N \N f f +9990 2025-10-18 17:36:43.581827+00 2025-10-18 17:36:43.581835+00 f t 11040 \N \N f f +9991 2025-10-18 17:57:48.4058+00 2025-10-18 17:57:48.405809+00 f t 11041 \N \N f f +9992 2025-10-18 18:20:18.976242+00 2025-10-18 18:20:18.976254+00 f t 11042 \N \N f f +9993 2025-10-18 18:28:11.998037+00 2025-10-18 18:28:11.998048+00 f t 11043 \N \N f f +9994 2025-10-18 18:28:30.617928+00 2025-10-18 18:28:30.617938+00 f t 11044 \N \N f f +9995 2025-10-18 18:31:09.953797+00 2025-10-18 18:31:09.95381+00 f t 11045 \N \N f f +9996 2025-10-18 19:15:23.277039+00 2025-10-18 19:15:23.277051+00 f t 11046 \N \N f f +9997 2025-10-18 19:15:53.04573+00 2025-10-18 19:15:53.045739+00 f t 11047 \N \N f f +9998 2025-10-18 19:16:28.516076+00 2025-10-18 19:16:28.516084+00 f t 11048 \N \N f f +9999 2025-10-18 19:17:17.667671+00 2025-10-18 19:17:17.667679+00 f t 11049 \N \N f f +10000 2025-10-18 19:18:31.086403+00 2025-10-18 19:18:31.086414+00 f t 11050 \N \N f f +10002 2025-10-18 19:29:15.660471+00 2025-10-18 19:29:15.660484+00 f t 11052 \N \N f f +10001 2025-10-18 19:30:33.304926+00 2025-10-18 19:26:21.291078+00 f t 11051 \N \N f f +10003 2025-10-18 19:58:08.160771+00 2025-10-18 19:58:08.16078+00 f t 11053 \N \N f f +10004 2025-10-18 21:22:42.907876+00 2025-10-18 21:22:42.907885+00 f t 11054 \N \N f f +10005 2025-10-18 23:23:41.663292+00 2025-10-18 23:23:41.663301+00 f t 11055 \N \N f f +10006 2025-10-18 23:23:54.916394+00 2025-10-18 23:23:54.916403+00 f t 11056 \N \N f f +10007 2025-10-19 00:12:58.351851+00 2025-10-19 00:12:58.351861+00 f t 11057 \N \N f f +10008 2025-10-19 02:02:03.248938+00 2025-10-19 02:02:03.248951+00 f t 11058 \N \N f f +10009 2025-10-19 02:54:40.58802+00 2025-10-19 02:54:40.588033+00 f t 11059 \N \N f f +10010 2025-10-19 03:35:44.585264+00 2025-10-19 03:35:44.585275+00 f t 11060 \N \N f f +10012 2025-10-19 05:33:03.973651+00 2025-10-19 05:33:03.97366+00 f t 11062 \N \N f f +10013 2025-10-19 09:35:07.453609+00 2025-10-19 09:35:07.453622+00 f t 11063 \N \N f f +10015 2025-10-19 09:49:07.953773+00 2025-10-19 09:49:07.953782+00 f t 11065 \N \N f f +10016 2025-10-19 10:44:01.296641+00 2025-10-19 10:44:01.29665+00 f t 11066 \N \N f f +10017 2025-10-19 11:19:48.201527+00 2025-10-19 11:19:48.201535+00 f t 11067 \N \N f f +10018 2025-10-19 11:24:32.082439+00 2025-10-19 11:24:32.082449+00 f t 11068 \N \N f f +10019 2025-10-19 11:54:42.122778+00 2025-10-19 11:54:42.122789+00 f t 11069 \N \N f f +10020 2025-10-19 11:55:11.900135+00 2025-10-19 11:55:11.900146+00 f t 11070 \N \N f f +10021 2025-10-19 12:47:23.633551+00 2025-10-19 12:47:23.633563+00 f t 11071 \N \N f f +10022 2025-10-19 12:48:55.480328+00 2025-10-19 12:48:55.480337+00 f t 11072 \N \N f f +10023 2025-10-19 12:58:08.330925+00 2025-10-19 12:58:08.330934+00 f t 11073 \N \N f f +10024 2025-10-19 13:00:04.86819+00 2025-10-19 13:00:04.868204+00 f t 11074 \N \N f f +10025 2025-10-19 13:14:10.843479+00 2025-10-19 13:14:10.843489+00 f t 11075 \N \N f f +10014 2025-10-19 14:12:59.89483+00 2025-10-19 09:45:57.782871+00 f t 10895 \N \N f f +10011 2025-10-19 14:19:04.036168+00 2025-10-19 03:36:15.701655+00 f t 10927 \N \N f f +10026 2025-10-19 14:42:53.379167+00 2025-10-19 14:42:53.379179+00 f t 11076 \N \N f f +10027 2025-10-19 14:43:51.078537+00 2025-10-19 14:43:51.078545+00 f t 11077 \N \N f f +10028 2025-10-19 14:55:34.676164+00 2025-10-19 14:55:34.676172+00 f t 11078 \N \N f f +10029 2025-10-19 15:00:19.640243+00 2025-10-19 15:00:19.640257+00 f t 11079 \N \N f f +10030 2025-10-19 15:17:37.034363+00 2025-10-19 15:17:37.034371+00 f t 11080 \N \N f f +10031 2025-10-19 15:48:53.918823+00 2025-10-19 15:48:53.918834+00 f t 11081 \N \N f f +10032 2025-10-19 16:32:05.512528+00 2025-10-19 16:32:05.51254+00 f t 11082 \N \N f f +10033 2025-10-19 16:38:39.174403+00 2025-10-19 16:38:39.174411+00 f t 11083 \N \N f f +10034 2025-10-19 16:50:31.980817+00 2025-10-19 16:50:31.980825+00 f t 11084 \N \N f f +10035 2025-10-19 17:24:11.088767+00 2025-10-19 17:24:11.088777+00 f t 7501 \N \N f f +10036 2025-10-19 18:03:07.970183+00 2025-10-19 18:03:07.970194+00 f t 11085 \N \N f f +10037 2025-10-19 18:29:11.69549+00 2025-10-19 18:29:11.695498+00 f t 11086 \N \N f f +10038 2025-10-19 18:52:17.859618+00 2025-10-19 18:52:17.859629+00 f t 11087 \N \N f f +10039 2025-10-19 18:54:12.410477+00 2025-10-19 18:54:12.410484+00 f t 11088 \N \N f f +10040 2025-10-19 19:15:11.474653+00 2025-10-19 19:15:11.474663+00 f t 11089 \N \N f f +10041 2025-10-19 19:47:40.284672+00 2025-10-19 19:47:40.28468+00 f t 11081 \N \N f f +10042 2025-10-19 20:30:20.67561+00 2025-10-19 20:30:20.67562+00 f t 11090 \N \N f f +10043 2025-10-19 21:11:29.625095+00 2025-10-19 21:11:29.625106+00 f t 11091 \N \N f f +10044 2025-10-19 21:50:51.317678+00 2025-10-19 21:50:51.317689+00 f t 11092 \N \N f f +10045 2025-10-19 21:53:50.651502+00 2025-10-19 21:53:50.651514+00 f t 11093 \N \N f f +10046 2025-10-19 22:03:25.351723+00 2025-10-19 22:03:25.351735+00 f t 11094 \N \N f f +10047 2025-10-19 22:04:32.678944+00 2025-10-19 22:04:32.678953+00 f t 11095 \N \N f f +10048 2025-10-19 22:10:58.788111+00 2025-10-19 22:10:58.78812+00 f t 11096 \N \N f f +10049 2025-10-19 22:28:13.608151+00 2025-10-19 22:28:13.60816+00 f t 11097 \N \N f f +10050 2025-10-19 22:37:16.982294+00 2025-10-19 22:37:16.982302+00 f t 11098 \N \N f f +10051 2025-10-19 22:39:00.231295+00 2025-10-19 22:39:00.231303+00 f t 11099 \N \N f f +10052 2025-10-19 22:39:30.105976+00 2025-10-19 22:39:30.105986+00 f t 11100 \N \N f f +10053 2025-10-19 23:08:08.156849+00 2025-10-19 23:08:08.156858+00 f t 11101 \N \N f f +10054 2025-10-19 23:11:18.271437+00 2025-10-19 23:11:18.271446+00 f t 11102 \N \N f f +10055 2025-10-19 23:29:06.93484+00 2025-10-19 23:29:06.934847+00 f t 11103 \N \N f f +10056 2025-10-20 00:01:09.298144+00 2025-10-20 00:01:09.298158+00 f t 11104 \N \N f f +10057 2025-10-20 00:25:47.281906+00 2025-10-20 00:25:47.281915+00 f t 11105 \N \N f f +10058 2025-10-20 00:39:07.597938+00 2025-10-20 00:39:07.597946+00 f t 11106 \N \N f f +10059 2025-10-20 01:04:59.479807+00 2025-10-20 01:04:59.479817+00 f t 11107 \N \N f f +10060 2025-10-20 01:08:11.400509+00 2025-10-20 01:08:11.40052+00 f t 11108 \N \N f f +10061 2025-10-20 01:46:26.270068+00 2025-10-20 01:46:26.270079+00 f t 11109 \N \N f f +10062 2025-10-20 01:49:02.450903+00 2025-10-20 01:49:02.450919+00 f t 11110 \N \N f f +10063 2025-10-20 02:45:18.134144+00 2025-10-20 02:45:18.134152+00 f t 11111 \N \N f f +10064 2025-10-20 03:35:57.776415+00 2025-10-20 03:35:57.776427+00 f t 11112 \N \N f f +10065 2025-10-20 03:38:43.284728+00 2025-10-20 03:38:43.284736+00 f t 11113 \N \N f f +10066 2025-10-20 03:44:21.877603+00 2025-10-20 03:44:21.877611+00 f t 11114 \N \N f f +10067 2025-10-20 03:54:10.560159+00 2025-10-20 03:54:10.560172+00 f t 11115 \N \N f f +10068 2025-10-20 04:13:46.628532+00 2025-10-20 04:13:46.62854+00 f t 11116 \N \N f f +10069 2025-10-20 08:06:34.003118+00 2025-10-20 08:06:34.003126+00 f t 11117 \N \N f f +10070 2025-10-20 09:00:35.82997+00 2025-10-20 09:00:35.829981+00 f t 11118 \N \N f f +10071 2025-10-20 09:01:03.402599+00 2025-10-20 09:01:03.402612+00 f t 11119 \N \N f f +10072 2025-10-20 09:06:58.763852+00 2025-10-20 09:06:58.763862+00 f t 11120 \N \N f f +10073 2025-10-20 10:39:31.138045+00 2025-10-20 10:39:31.138057+00 f t 11121 \N \N f f +10074 2025-10-20 10:53:12.346293+00 2025-10-20 10:53:12.346301+00 f t 11122 \N \N f f +10075 2025-10-20 11:03:17.675579+00 2025-10-20 11:03:17.675588+00 f t 11123 \N \N f f +10076 2025-10-20 11:10:49.342007+00 2025-10-20 11:10:49.342015+00 f t 11124 \N \N f f +10077 2025-10-20 11:17:01.395784+00 2025-10-20 11:17:01.395794+00 f t 11125 \N \N f f +10078 2025-10-20 11:30:40.774016+00 2025-10-20 11:30:40.774029+00 f t 11126 \N \N f f +10079 2025-10-20 11:39:06.512823+00 2025-10-20 11:39:06.512835+00 f t 11127 \N \N f f +10080 2025-10-20 11:49:38.616184+00 2025-10-20 11:49:38.616192+00 f t 11128 \N \N f f +10081 2025-10-20 11:52:47.347441+00 2025-10-20 11:52:47.347454+00 f t 11129 \N \N f f +10083 2025-10-20 12:16:40.898397+00 2025-10-20 12:16:40.898406+00 f t 11131 \N \N f f +10082 2025-10-20 12:18:45.284342+00 2025-10-20 12:07:36.80009+00 f t 11130 \N \N f f +10084 2025-10-20 12:25:06.388868+00 2025-10-20 12:25:06.388879+00 f t 11132 \N \N f f +10085 2025-10-20 12:47:11.144411+00 2025-10-20 12:47:11.14442+00 f t 11133 \N \N f f +10086 2025-10-20 12:57:47.876839+00 2025-10-20 12:57:47.87685+00 f t 439 \N \N f f +10087 2025-10-20 13:13:36.286382+00 2025-10-20 13:13:36.286389+00 f t 11134 \N \N f f +10088 2025-10-20 13:17:32.208954+00 2025-10-20 13:17:32.208962+00 f t 11135 \N \N f f +10089 2025-10-20 13:21:38.018835+00 2025-10-20 13:21:38.018846+00 f t 11136 \N \N f f +10090 2025-10-20 13:23:19.435406+00 2025-10-20 13:23:19.435414+00 f t 11137 \N \N f f +10091 2025-10-20 13:24:05.978395+00 2025-10-20 13:24:05.978403+00 f t 11138 \N \N f f +10092 2025-10-20 13:25:12.510048+00 2025-10-20 13:25:12.510056+00 f t 11139 \N \N f f +10093 2025-10-20 13:26:10.347565+00 2025-10-20 13:26:10.347573+00 f t 11140 \N \N f f +10094 2025-10-20 13:31:02.169095+00 2025-10-20 13:31:02.16911+00 f t 11141 \N \N f f +10095 2025-10-20 13:33:45.409824+00 2025-10-20 13:33:45.409836+00 f t 11142 \N \N f f +10096 2025-10-20 13:38:07.942833+00 2025-10-20 13:38:07.942841+00 f t 11143 \N \N f f +10097 2025-10-20 13:39:47.651396+00 2025-10-20 13:39:47.651405+00 f t 11144 \N \N f f +10098 2025-10-20 13:44:48.771628+00 2025-10-20 13:44:48.77164+00 f t 11145 \N \N f f +10099 2025-10-20 13:51:00.677151+00 2025-10-20 13:51:00.677161+00 f t 11146 \N \N f f +10100 2025-10-20 13:52:35.186791+00 2025-10-20 13:52:35.186801+00 f t 11147 \N \N f f +10101 2025-10-20 13:54:30.905561+00 2025-10-20 13:54:30.90557+00 f t 11148 \N \N f f +10102 2025-10-20 13:54:59.448592+00 2025-10-20 13:54:59.4486+00 f t 11149 \N \N f f +10103 2025-10-20 13:55:01.001233+00 2025-10-20 13:55:01.001242+00 f t 11150 \N \N f f +10104 2025-10-20 14:12:20.986208+00 2025-10-20 14:12:20.986217+00 f t 11151 \N \N f f +10105 2025-10-20 14:30:45.126058+00 2025-10-20 14:30:45.126067+00 f t 11152 \N \N f f +10106 2025-10-20 14:47:02.618217+00 2025-10-20 14:47:02.618226+00 f t 11153 \N \N f f +10107 2025-10-20 14:47:26.668851+00 2025-10-20 14:47:26.668864+00 f t 11154 \N \N f f +10108 2025-10-20 15:05:11.284817+00 2025-10-20 15:05:11.284826+00 f t 11152 \N \N f f +10109 2025-10-20 15:15:52.320906+00 2025-10-20 15:15:52.320919+00 f t 11155 \N \N f f +10110 2025-10-20 15:15:53.106698+00 2025-10-20 15:15:53.106706+00 f t 11155 \N \N f f +10111 2025-10-20 15:20:16.535016+00 2025-10-20 15:20:16.535029+00 f t 11156 \N \N f f +10112 2025-10-20 15:32:45.238365+00 2025-10-20 15:32:45.238375+00 f t 11157 \N \N f f +10113 2025-10-20 15:33:29.469675+00 2025-10-20 15:33:29.469684+00 f t 11158 \N \N f f +10114 2025-10-20 15:43:40.343342+00 2025-10-20 15:43:40.34335+00 f t 11159 \N \N f f +10115 2025-10-20 15:46:49.710644+00 2025-10-20 15:46:49.710653+00 f t 11152 \N \N f f +10116 2025-10-20 15:56:16.547718+00 2025-10-20 15:56:16.547726+00 f t 11160 \N \N f f +10117 2025-10-20 16:23:08.87928+00 2025-10-20 16:23:08.87929+00 f t 11161 \N \N f f +10118 2025-10-20 16:42:38.624164+00 2025-10-20 16:42:38.624174+00 f t 11162 \N \N f f +10119 2025-10-20 16:48:17.8633+00 2025-10-20 16:48:17.863311+00 f t 11163 \N \N f f +10120 2025-10-20 16:49:19.080308+00 2025-10-20 16:49:19.080321+00 f t 11164 \N \N f f +10121 2025-10-20 16:55:01.249545+00 2025-10-20 16:55:01.249558+00 f t 11165 \N \N f f +10122 2025-10-20 17:42:56.680366+00 2025-10-20 17:42:56.680375+00 f t 11166 \N \N f f +10123 2025-10-20 17:54:09.213035+00 2025-10-20 17:54:09.213043+00 f t 11167 \N \N f f +10124 2025-10-20 18:01:36.840976+00 2025-10-20 18:01:36.840985+00 f t 11168 \N \N f f +10125 2025-10-20 18:02:51.454473+00 2025-10-20 18:02:51.454485+00 f t 11169 \N \N f f +10126 2025-10-20 18:04:57.632543+00 2025-10-20 18:04:57.632551+00 f t 11123 \N \N f f +10127 2025-10-20 18:26:17.568797+00 2025-10-20 18:26:17.568805+00 f t 11170 \N \N f f +10128 2025-10-20 18:29:30.949042+00 2025-10-20 18:29:30.949051+00 f t 11171 \N \N f f +10129 2025-10-20 18:40:41.989565+00 2025-10-20 18:40:41.989578+00 f t 11172 \N \N f f +10130 2025-10-20 18:49:50.499717+00 2025-10-20 18:49:50.499726+00 f t 11173 \N \N f f +10131 2025-10-20 18:53:24.241544+00 2025-10-20 18:53:24.241553+00 f t 11174 \N \N f f +10132 2025-10-20 19:09:06.238606+00 2025-10-20 19:09:06.238619+00 f t 11175 \N \N f f +10133 2025-10-20 19:09:26.708797+00 2025-10-20 19:09:26.70881+00 f t 11176 \N \N f f +10134 2025-10-20 19:11:20.63848+00 2025-10-20 19:11:20.638488+00 f t 11177 \N \N f f +10136 2025-10-20 19:34:11.605306+00 2025-10-20 19:34:11.605371+00 f t 9310 \N \N f f +10137 2025-10-20 19:40:12.689318+00 2025-10-20 19:40:12.689326+00 f t 11179 \N \N f f +10138 2025-10-20 19:43:17.555085+00 2025-10-20 19:43:17.555096+00 f t 11180 \N \N f f +10139 2025-10-20 19:51:32.971099+00 2025-10-20 19:51:32.971108+00 f t 11181 \N \N f f +10140 2025-10-20 20:18:36.301463+00 2025-10-20 20:18:36.301476+00 f t 10203 \N \N f f +10141 2025-10-20 20:47:49.385691+00 2025-10-20 20:47:49.385703+00 f t 11182 \N \N f f +10143 2025-10-20 21:41:12.168337+00 2025-10-20 21:41:12.168349+00 f t 11184 \N \N f f +10144 2025-10-20 21:45:02.139608+00 2025-10-20 21:45:02.139624+00 f t 11185 \N \N f f +10145 2025-10-20 21:46:37.812392+00 2025-10-20 21:46:37.812405+00 f t 11186 \N \N f f +10146 2025-10-20 21:50:09.479834+00 2025-10-20 21:50:09.479847+00 f t 11187 \N \N f f +10147 2025-10-20 21:57:53.173081+00 2025-10-20 21:57:53.17309+00 f t 11188 \N \N f f +10148 2025-10-20 22:04:07.314513+00 2025-10-20 22:04:07.314524+00 f t 11189 \N \N f f +10149 2025-10-20 22:15:09.504609+00 2025-10-20 22:15:09.504623+00 f t 11190 \N \N f f +10150 2025-10-20 22:35:44.201575+00 2025-10-20 22:35:44.20159+00 f t 11191 \N \N f f +10151 2025-10-20 23:03:51.256302+00 2025-10-20 23:03:51.256314+00 f t 11192 \N \N f f +10152 2025-10-20 23:12:50.666589+00 2025-10-20 23:12:50.666602+00 f t 11193 \N \N f f +10153 2025-10-20 23:16:36.522245+00 2025-10-20 23:16:36.522255+00 f t 11195 \N \N f f +10154 2025-10-20 23:17:28.123952+00 2025-10-20 23:17:28.12396+00 f t 11194 \N \N f f +10155 2025-10-20 23:58:30.12804+00 2025-10-20 23:58:30.128049+00 f t 11196 \N \N f f +10156 2025-10-21 00:06:58.559409+00 2025-10-21 00:06:58.55942+00 f t 11197 \N \N f f +10157 2025-10-21 00:14:40.313172+00 2025-10-21 00:14:40.313185+00 f t 11198 \N \N f f +10158 2025-10-21 00:26:21.231771+00 2025-10-21 00:26:21.23178+00 f t 11199 \N \N f f +13133 2025-11-21 17:05:15.011034+00 2025-11-21 17:05:15.011044+00 f t 14067 \N \N f f +10160 2025-10-21 00:53:31.047857+00 2025-10-21 00:53:31.048677+00 f t 11201 \N \N f f +10161 2025-10-21 01:12:18.763039+00 2025-10-21 01:12:18.763048+00 f t 11202 \N \N f f +10162 2025-10-21 01:29:58.007625+00 2025-10-21 01:29:58.00764+00 f t 11203 \N \N f f +10163 2025-10-21 01:32:53.824638+00 2025-10-21 01:32:53.824655+00 f t 11204 \N \N f f +10164 2025-10-21 01:43:13.342684+00 2025-10-21 01:43:13.342692+00 f t 11205 \N \N f f +10165 2025-10-21 02:23:08.427939+00 2025-10-21 02:23:08.427948+00 f t 11206 \N \N f f +10166 2025-10-21 02:56:26.677526+00 2025-10-21 02:56:26.677536+00 f t 11207 \N \N f f +10167 2025-10-21 08:36:38.144516+00 2025-10-21 08:36:38.144526+00 f t 11208 \N \N f f +10168 2025-10-21 10:12:18.992577+00 2025-10-21 10:12:18.992585+00 f t 11209 \N \N f f +10169 2025-10-21 10:33:46.25019+00 2025-10-21 10:33:46.250199+00 f t 11210 \N \N f f +10170 2025-10-21 10:43:05.765185+00 2025-10-21 10:43:05.765194+00 f t 11211 \N \N f f +10171 2025-10-21 11:05:48.201576+00 2025-10-21 11:05:48.201584+00 f t 11212 \N \N f f +10172 2025-10-21 11:29:42.639481+00 2025-10-21 11:29:42.639494+00 f t 11213 \N \N f f +10173 2025-10-21 11:32:09.369256+00 2025-10-21 11:32:09.369265+00 f t 11214 \N \N f f +10174 2025-10-21 11:50:05.489016+00 2025-10-21 11:50:05.48903+00 f t 11215 \N \N f f +10175 2025-10-21 11:53:22.677163+00 2025-10-21 11:53:22.677171+00 f t 11216 \N \N f f +10176 2025-10-21 12:23:38.950527+00 2025-10-21 12:23:38.950537+00 f t 11217 \N \N f f +10177 2025-10-21 12:26:04.307826+00 2025-10-21 12:26:04.307835+00 f t 11218 \N \N f f +10198 2025-10-21 15:48:15.887808+00 2025-10-21 15:48:15.88782+00 f t 11237 \N \N f f +10199 2025-10-21 15:51:19.779648+00 2025-10-21 15:51:19.779656+00 f t 11238 \N \N f f +10201 2025-10-21 15:59:37.50465+00 2025-10-21 15:59:37.504659+00 f t 11241 \N \N f f +10135 2025-10-21 16:11:28.661537+00 2025-10-21 16:11:28.661537+00 f t 11178 \N \N f f +10179 2025-10-21 12:51:51.689835+00 2025-10-21 12:51:51.689835+00 f t 11220 \N 1 f f +10180 2025-10-21 13:09:25.711169+00 2025-10-21 13:09:25.711169+00 f t 11221 \N \N f f +10182 2025-10-21 13:09:55.586797+00 2025-10-21 13:09:55.58681+00 f t 11223 \N \N f f +10181 2025-10-21 13:11:48.991185+00 2025-10-21 13:11:48.991185+00 f t 11222 \N \N f f +10183 2025-10-21 13:16:33.139561+00 2025-10-21 13:16:33.139639+00 f t 11225 \N \N f f +10184 2025-10-21 13:21:25.550292+00 2025-10-21 13:21:25.5503+00 f t 11226 \N \N f f +10185 2025-10-21 13:40:22.647666+00 2025-10-21 13:40:22.647675+00 f t 11227 \N \N f f +10186 2025-10-21 14:21:20.844169+00 2025-10-21 14:21:20.844182+00 f t 9626 \N 115 f f +10187 2025-10-21 14:29:48.384035+00 2025-10-21 14:29:48.384048+00 f t 11228 \N \N f f +10188 2025-10-21 14:30:11.895373+00 2025-10-21 14:30:11.895386+00 f t 10764 \N \N f f +10189 2025-10-21 14:30:58.123677+00 2025-10-21 14:30:58.123687+00 f t 11229 \N \N f f +10190 2025-10-21 14:40:13.704947+00 2025-10-21 14:40:13.704958+00 f t 11230 \N \N f f +10191 2025-10-21 14:42:06.405612+00 2025-10-21 14:42:06.405624+00 f t 11231 \N \N f f +10192 2025-10-21 14:43:48.446081+00 2025-10-21 14:43:48.446093+00 f t 10764 \N \N f f +10193 2025-10-21 14:47:24.270579+00 2025-10-21 14:47:24.270593+00 f t 11232 \N \N f f +10194 2025-10-21 15:22:40.659237+00 2025-10-21 15:22:40.659244+00 f t 11234 \N \N f f +10204 2025-10-21 16:42:20.856248+00 2025-10-21 16:42:20.856258+00 f t 11245 \N \N f f +10196 2025-10-21 15:33:46.13467+00 2025-10-21 15:33:46.134679+00 f t 11230 \N \N f f +10197 2025-10-21 15:46:02.721531+00 2025-10-21 15:46:02.721539+00 f t 11236 \N 1 f f +10202 2025-10-21 16:13:21.730631+00 2025-10-21 16:13:21.730641+00 f t 11242 \N \N f f +10203 2025-10-21 16:14:09.992394+00 2025-10-21 16:14:09.992404+00 f t 11243 \N \N f f +10200 2025-10-21 16:44:29.775284+00 2025-10-21 16:44:29.775284+00 f t 11240 \N \N f f +10159 2025-10-21 16:34:54.284569+00 2025-10-21 16:34:54.284569+00 f t 8577 \N \N f f +10205 2025-10-21 17:09:28.890434+00 2025-10-21 17:09:28.890443+00 f t 11246 \N \N f f +10195 2025-10-21 22:46:12.933457+00 2025-10-21 22:46:12.933457+00 f t 11235 \N 70 f f +10206 2025-10-21 17:14:16.815682+00 2025-10-21 17:14:16.815694+00 f t 11247 \N \N f f +10178 2025-10-21 17:20:13.76408+00 2025-10-21 17:20:13.76408+00 f t 11219 \N 1 f f +10208 2025-10-21 17:23:09.53199+00 2025-10-21 17:23:09.531998+00 f t 11249 \N \N f f +10209 2025-10-21 17:27:03.680194+00 2025-10-21 17:27:03.680203+00 f t 11250 \N 80 f f +10207 2025-10-21 17:23:26.780369+00 2025-10-21 17:23:26.780369+00 f t 11248 \N 88 f f +10210 2025-10-21 17:46:45.268315+00 2025-10-21 17:46:45.268323+00 f t 1082 \N \N f f +10211 2025-10-21 18:06:11.020412+00 2025-10-21 18:06:11.020425+00 f t 11252 \N \N f f +10212 2025-10-21 18:20:40.449386+00 2025-10-21 18:20:40.449396+00 f t 11254 \N \N f f +10213 2025-10-21 18:34:37.904905+00 2025-10-21 18:34:37.904915+00 f t 11255 \N \N f f +10215 2025-10-21 18:51:42.679961+00 2025-10-21 18:51:42.679969+00 f t 11258 \N \N f f +10216 2025-10-21 18:56:38.840518+00 2025-10-21 18:56:38.840526+00 f t 11260 \N \N f f +10142 2025-10-21 20:50:59.978935+00 2025-10-21 20:50:59.978935+00 f t 11183 \N \N f f +10217 2025-10-21 19:05:08.153172+00 2025-10-21 19:05:08.153185+00 f t 11261 \N \N f f +10218 2025-10-21 19:23:18.802007+00 2025-10-21 19:23:18.802056+00 f t 11262 \N \N f f +10219 2025-10-21 19:25:33.104947+00 2025-10-21 19:25:33.104955+00 f t 8577 \N \N f f +10220 2025-10-21 19:31:56.474385+00 2025-10-21 19:31:56.474393+00 f t 11265 \N \N f f +10221 2025-10-21 19:34:45.448576+00 2025-10-21 19:34:45.448584+00 f t 11266 \N \N f f +10222 2025-10-21 19:35:05.693876+00 2025-10-21 19:35:05.693889+00 f t 11264 \N \N f f +10223 2025-10-21 19:54:00.813741+00 2025-10-21 19:54:00.813749+00 f t 11269 \N \N f f +10292 2025-10-22 15:55:27.594344+00 2025-10-22 15:55:27.594353+00 f t 11333 \N \N f f +10225 2025-10-21 19:59:12.642902+00 2025-10-21 19:59:12.642909+00 f t 11268 \N \N f f +10293 2025-10-22 16:10:28.582703+00 2025-10-22 16:10:28.582711+00 f t 11334 \N \N f f +10226 2025-10-21 20:02:51.578137+00 2025-10-21 20:02:51.578137+00 f t 11271 \N 78 f f +10294 2025-10-22 16:13:01.303681+00 2025-10-22 16:13:01.30369+00 f t 11335 \N \N f f +10228 2025-10-21 20:22:33.499438+00 2025-10-21 20:22:33.499438+00 f t 11272 \N \N f f +10229 2025-10-21 20:29:51.943923+00 2025-10-21 20:29:51.943923+00 f t 11273 \N \N f f +10295 2025-10-22 16:19:39.011544+00 2025-10-22 16:19:39.011552+00 f t 11336 \N \N f f +10296 2025-10-22 16:26:28.639672+00 2025-10-22 16:26:28.639681+00 f t 523 \N \N f f +10230 2025-10-21 20:33:40.378969+00 2025-10-21 20:33:40.378977+00 f t 11274 \N \N f f +10231 2025-10-21 20:35:25.387083+00 2025-10-21 20:35:25.387091+00 f t 11275 \N \N f f +10232 2025-10-21 20:37:57.119853+00 2025-10-21 20:37:57.119862+00 f t 11276 \N \N f f +10233 2025-10-21 20:50:39.434632+00 2025-10-21 20:50:39.434639+00 f t 11277 \N \N f f +10234 2025-10-21 20:55:35.514751+00 2025-10-21 20:55:35.514759+00 f t 11278 \N \N f f +10236 2025-10-21 21:12:20.306493+00 2025-10-21 21:12:20.306501+00 f t 11279 \N \N f f +10235 2025-10-21 21:24:21.538655+00 2025-10-21 21:24:21.538655+00 f t 11019 \N \N f f +10237 2025-10-21 21:27:34.616045+00 2025-10-21 21:27:34.616053+00 f t 11049 \N \N f f +10224 2025-10-21 22:00:34.527176+00 2025-10-21 22:00:34.527176+00 f t 11270 \N 97 f f +10238 2025-10-21 22:06:53.969424+00 2025-10-21 22:06:53.969432+00 f t 510 \N \N f f +10239 2025-10-21 22:10:33.479652+00 2025-10-21 22:10:33.479664+00 f t 11282 \N \N f f +10240 2025-10-21 22:13:04.794503+00 2025-10-21 22:13:04.794511+00 f t 11283 \N \N f f +10242 2025-10-21 22:23:31.040423+00 2025-10-21 22:23:31.04043+00 f t 11284 \N 21 f f +10243 2025-10-21 22:24:00.79673+00 2025-10-21 22:24:00.796739+00 f t 11285 \N \N f f +10297 2025-10-22 16:30:13.815689+00 2025-10-22 16:30:13.815697+00 f t 5479 \N \N f f +10241 2025-10-21 22:27:09.002221+00 2025-10-21 22:27:09.002221+00 f t 2152 \N \N f f +10244 2025-10-21 22:29:17.063329+00 2025-10-21 22:29:17.063336+00 f t 11286 \N \N f f +10246 2025-10-21 22:45:41.579086+00 2025-10-21 22:45:41.579094+00 f t 11288 \N \N f f +10298 2025-10-22 17:05:08.159513+00 2025-10-22 17:05:08.159522+00 f t 11337 \N \N f f +10247 2025-10-21 22:46:47.138848+00 2025-10-21 22:46:47.138855+00 f t 11289 \N \N f f +10248 2025-10-21 22:49:53.902964+00 2025-10-21 22:49:53.902972+00 f t 11290 \N \N f f +10299 2025-10-22 17:16:42.211567+00 2025-10-22 17:16:42.211575+00 f t 11338 \N \N f f +10249 2025-10-21 23:00:16.957572+00 2025-10-21 23:00:16.957586+00 f t 11291 \N \N f f +10250 2025-10-21 23:01:09.668606+00 2025-10-21 23:01:09.668617+00 f t 11292 \N \N f f +10300 2025-10-22 17:26:10.174568+00 2025-10-22 17:26:10.174578+00 f t 10243 \N \N f f +10251 2025-10-21 23:16:13.754918+00 2025-10-21 23:16:13.754927+00 f t 11293 \N \N f f +10245 2025-10-21 23:16:23.024419+00 2025-10-21 23:16:23.024419+00 f t 11287 \N \N f f +10252 2025-10-21 23:27:14.99335+00 2025-10-21 23:27:14.993359+00 f t 11294 \N \N f f +10253 2025-10-21 23:38:40.105465+00 2025-10-21 23:38:40.105465+00 f t 11295 \N \N f f +10254 2025-10-21 23:41:15.757704+00 2025-10-21 23:41:15.757713+00 f t 11296 \N \N f f +10255 2025-10-21 23:43:15.485337+00 2025-10-21 23:43:15.485349+00 f t 11297 \N \N f f +10256 2025-10-22 00:32:40.455338+00 2025-10-22 00:32:40.455348+00 f t 11298 \N \N f f +10257 2025-10-22 00:33:29.067984+00 2025-10-22 00:33:29.067994+00 f t 11299 \N \N f f +10258 2025-10-22 00:42:46.774098+00 2025-10-22 00:42:46.774107+00 f t 11300 \N \N f f +10259 2025-10-22 00:47:20.755497+00 2025-10-22 00:47:20.755505+00 f t 11301 \N \N f f +10260 2025-10-22 00:54:50.246653+00 2025-10-22 00:54:50.246653+00 f t 11302 \N \N f f +10261 2025-10-22 01:15:14.569235+00 2025-10-22 01:15:14.569246+00 f t 11304 \N \N f f +10263 2025-10-22 01:20:30.018844+00 2025-10-22 01:20:30.018859+00 f t 11306 \N \N f f +10325 2025-10-23 00:02:05.981275+00 2025-10-23 00:02:05.981285+00 f t 4176 \N \N f f +10264 2025-10-22 01:25:39.351686+00 2025-10-22 01:25:39.351686+00 f t 11307 \N \N f f +10265 2025-10-22 01:42:37.089027+00 2025-10-22 01:42:37.089035+00 f t 11308 \N \N f f +10266 2025-10-22 01:54:56.593246+00 2025-10-22 01:54:56.593254+00 f t 11309 \N \N f f +10262 2025-10-22 02:13:41.072297+00 2025-10-22 02:13:41.072297+00 f t 11305 \N \N f f +10267 2025-10-22 02:19:09.694206+00 2025-10-22 02:19:09.694214+00 f t 11310 \N \N f f +10268 2025-10-22 02:38:18.99387+00 2025-10-22 02:38:18.993881+00 f t 11311 \N \N f f +10269 2025-10-22 04:08:57.181815+00 2025-10-22 04:08:57.181822+00 f t 11312 \N \N f f +10270 2025-10-22 04:09:50.496129+00 2025-10-22 04:09:50.49614+00 f t 11313 \N \N f f +10271 2025-10-22 04:28:35.048752+00 2025-10-22 04:28:35.048759+00 f t 11314 \N \N f f +10272 2025-10-22 04:39:39.70466+00 2025-10-22 04:39:39.704668+00 f t 11315 \N \N f f +10273 2025-10-22 05:33:55.569889+00 2025-10-22 05:33:55.569889+00 f t 11316 \N \N f f +10274 2025-10-22 08:14:19.796869+00 2025-10-22 08:14:19.796876+00 f t 11067 \N \N f f +10275 2025-10-22 11:12:35.482878+00 2025-10-22 11:12:35.482888+00 f t 11318 \N \N f f +10276 2025-10-22 11:24:17.896686+00 2025-10-22 11:24:17.896697+00 f t 11319 \N \N f f +10277 2025-10-22 12:08:43.135517+00 2025-10-22 12:08:43.135528+00 f t 11320 \N \N f f +10278 2025-10-22 12:25:07.769689+00 2025-10-22 12:25:07.769701+00 f t 11321 \N \N f f +10301 2025-10-22 17:38:23.656539+00 2025-10-22 17:38:23.656539+00 f t 11339 \N \N f f +10302 2025-10-22 18:09:14.779074+00 2025-10-22 18:09:14.779082+00 f t 11340 \N \N f f +10214 2025-10-22 12:29:05.800702+00 2025-10-22 12:29:05.800702+00 f t 11257 \N 92 f f +10279 2025-10-22 12:34:06.277893+00 2025-10-22 12:34:06.277905+00 f t 11322 \N \N f f +10280 2025-10-22 12:37:58.010425+00 2025-10-22 12:37:58.010439+00 f t 11323 \N \N f f +10281 2025-10-22 13:08:49.014447+00 2025-10-22 13:08:49.014456+00 f t 11324 \N \N f f +10282 2025-10-22 13:10:18.936873+00 2025-10-22 13:10:18.936881+00 f t 11325 \N \N f f +10303 2025-10-22 18:26:46.66801+00 2025-10-22 18:26:46.668017+00 f t 11341 \N \N f f +10304 2025-10-22 18:35:48.599634+00 2025-10-22 18:35:48.599645+00 f t 4176 \N \N f f +10283 2025-10-22 13:47:03.170857+00 2025-10-22 13:47:03.170866+00 f t 11326 \N \N f f +10284 2025-10-22 14:00:39.939327+00 2025-10-22 14:00:39.939339+00 f t 11327 \N \N f f +10285 2025-10-22 14:06:42.838193+00 2025-10-22 14:06:42.8382+00 f t 11328 \N \N f f +10286 2025-10-22 14:55:07.547793+00 2025-10-22 14:55:07.547803+00 f t 11329 \N \N f f +10287 2025-10-22 15:02:05.268848+00 2025-10-22 15:02:05.268859+00 f t 8503 \N \N f f +10227 2025-10-22 15:03:41.139597+00 2025-10-22 15:03:41.139597+00 f t 11253 \N 1 f f +10288 2025-10-22 15:12:21.98278+00 2025-10-22 15:12:21.982788+00 f t 11330 \N \N f f +10290 2025-10-22 15:44:16.761609+00 2025-10-22 15:44:16.761617+00 f t 10716 \N \N f f +10289 2025-10-22 15:44:30.055177+00 2025-10-22 15:44:30.055177+00 f t 11331 \N \N f f +10291 2025-10-22 15:53:40.279076+00 2025-10-22 15:53:40.279086+00 f t 11332 \N \N f f +10305 2025-10-22 18:41:31.483333+00 2025-10-22 18:41:31.483345+00 f t 4176 \N \N f f +10306 2025-10-22 18:52:13.761818+00 2025-10-22 18:52:13.761826+00 f t 11345 \N \N f f +10307 2025-10-22 19:03:53.37204+00 2025-10-22 19:03:53.372046+00 f t 11346 \N \N f f +10308 2025-10-22 19:05:51.520391+00 2025-10-22 19:05:51.520391+00 f t 11347 \N \N f f +10309 2025-10-22 19:10:54.660822+00 2025-10-22 19:10:54.660831+00 f t 11348 \N \N f f +10310 2025-10-22 19:33:31.05142+00 2025-10-22 19:33:31.051428+00 f t 11350 \N \N f f +10311 2025-10-22 19:34:54.72349+00 2025-10-22 19:34:54.723498+00 f t 6905 \N \N f f +10312 2025-10-22 19:56:17.324816+00 2025-10-22 19:56:17.324827+00 f t 4176 \N \N f f +10313 2025-10-22 19:57:40.039522+00 2025-10-22 19:57:40.039534+00 f t 4176 \N \N f f +10314 2025-10-22 20:20:09.110794+00 2025-10-22 20:20:09.110794+00 f t 10402 \N \N f f +10315 2025-10-22 21:18:19.361748+00 2025-10-22 21:18:19.361762+00 f t 11351 \N \N f f +10316 2025-10-22 22:03:09.280542+00 2025-10-22 22:03:09.602392+00 f t 11352 \N 68 f f +10317 2025-10-22 21:54:30.314589+00 2025-10-22 21:54:30.314597+00 f t 11353 \N \N f f +10318 2025-10-22 22:00:20.376401+00 2025-10-22 22:00:20.376411+00 f t 11354 \N \N f f +10319 2025-10-22 22:16:05.033037+00 2025-10-22 22:16:05.033047+00 f t 11355 \N \N f f +10320 2025-10-22 22:20:45.917973+00 2025-10-22 22:20:45.917982+00 f t 11356 \N 68 f f +10322 2025-10-22 22:25:20.590318+00 2025-10-22 22:25:20.590327+00 f t 11358 \N \N f f +10323 2025-10-22 22:44:14.951124+00 2025-10-22 22:44:14.951161+00 f t 11359 \N \N f f +10324 2025-10-22 22:58:29.590245+00 2025-10-22 22:58:29.590254+00 f t 11361 \N \N f f +10321 2025-10-22 23:36:10.753958+00 2025-10-22 23:36:10.753958+00 f t 11357 \N 68 f f +10326 2025-10-23 00:48:36.733091+00 2025-10-23 00:48:36.733099+00 f t 11363 \N \N f f +10327 2025-10-23 01:06:06.570586+00 2025-10-23 01:06:06.570596+00 f t 11364 \N \N f f +10328 2025-10-23 01:42:33.521709+00 2025-10-23 01:42:33.521717+00 f t 11365 \N \N f f +10329 2025-10-23 01:52:23.30489+00 2025-10-23 01:52:23.304897+00 f t 11366 \N \N f f +10330 2025-10-23 01:54:07.095816+00 2025-10-23 01:54:07.095824+00 f t 11367 \N \N f f +10331 2025-10-23 02:13:17.270317+00 2025-10-23 02:13:17.270329+00 f t 11368 \N \N f f +10332 2025-10-23 02:16:27.246748+00 2025-10-23 02:16:27.246755+00 f t 11369 \N \N f f +10333 2025-10-23 02:18:09.628197+00 2025-10-23 02:18:09.628204+00 f t 11370 \N \N f f +10334 2025-10-23 02:40:43.596429+00 2025-10-23 02:40:43.596437+00 f t 11371 \N \N f f +10335 2025-10-23 03:11:25.551582+00 2025-10-23 03:11:25.551591+00 f t 11372 \N \N f f +10337 2025-10-23 03:13:30.653387+00 2025-10-23 03:13:30.653395+00 f t 11374 \N \N f f +10336 2025-10-23 03:14:38.983322+00 2025-10-23 03:14:38.983322+00 f t 11373 \N \N f f +10338 2025-10-23 03:32:56.486381+00 2025-10-23 03:32:56.48639+00 f t 11019 \N \N f f +10339 2025-10-23 05:21:06.645737+00 2025-10-23 05:21:06.645747+00 f t 11375 \N \N f f +10340 2025-10-23 07:05:56.070446+00 2025-10-23 07:05:56.070446+00 f t 11376 \N \N f f +10341 2025-10-23 09:47:48.673799+00 2025-10-23 09:47:48.673808+00 f t 11377 \N \N f f +10342 2025-10-23 11:23:37.85463+00 2025-10-23 11:23:37.854644+00 f t 11378 \N \N f f +10343 2025-10-23 11:28:57.578974+00 2025-10-23 11:28:57.578983+00 f t 11379 \N \N f f +10344 2025-10-23 11:33:34.29048+00 2025-10-23 11:33:34.290488+00 f t 11380 \N \N f f +10345 2025-10-23 13:10:16.506766+00 2025-10-23 13:10:16.506774+00 f t 11214 \N \N f f +10346 2025-10-23 13:16:22.779715+00 2025-10-23 13:16:22.779723+00 f t 11381 \N \N f f +10347 2025-10-23 13:52:04.056901+00 2025-10-23 13:52:04.05691+00 f t 11382 \N \N f f +10348 2025-10-23 14:01:31.843355+00 2025-10-23 14:01:31.843364+00 f t 9719 \N \N f f +10349 2025-10-23 14:02:29.40874+00 2025-10-23 14:02:29.408749+00 f t 11383 \N \N f f +10350 2025-10-23 14:06:25.235555+00 2025-10-23 14:06:25.235567+00 f t 11384 \N \N f f +10351 2025-10-23 14:28:23.694734+00 2025-10-23 14:28:23.694742+00 f t 10764 \N \N f f +10352 2025-10-23 14:36:00.310746+00 2025-10-23 14:36:00.310746+00 f t 11385 \N \N f f +10353 2025-10-23 14:48:11.095897+00 2025-10-23 14:48:11.095907+00 f t 10716 \N \N f f +10354 2025-10-23 15:05:23.125762+00 2025-10-23 15:05:23.125771+00 f t 10716 \N \N f f +10355 2025-10-23 15:12:34.683691+00 2025-10-23 15:12:34.683703+00 f t 11387 \N \N f f +10356 2025-10-23 15:17:17.817407+00 2025-10-23 15:17:17.817418+00 f t 10716 \N \N f f +10357 2025-10-23 15:29:25.38229+00 2025-10-23 15:29:25.382303+00 f t 11389 \N \N f f +10358 2025-10-23 15:59:32.459959+00 2025-10-23 15:59:32.459968+00 f t 11390 \N \N f f +10359 2025-10-23 16:22:05.428785+00 2025-10-23 16:22:05.428798+00 f t 11391 \N \N f f +10360 2025-10-23 16:24:34.380738+00 2025-10-23 16:24:34.380746+00 f t 11392 \N \N f f +10362 2025-10-23 16:59:01.112949+00 2025-10-23 16:59:01.11296+00 f t 11394 \N \N f f +10427 2025-10-24 15:05:20.543685+00 2025-10-24 15:05:20.543692+00 f t 2084 \N \N f f +10428 2025-10-24 15:13:47.876018+00 2025-10-24 15:13:47.876027+00 f t 8869 \N \N f f +10429 2025-10-24 15:14:44.101998+00 2025-10-24 15:14:44.10201+00 f t 11450 \N \N f f +10363 2025-10-23 17:10:54.069874+00 2025-10-23 17:10:54.069884+00 f t 11395 \N \N f f +10430 2025-10-24 15:24:12.274994+00 2025-10-24 15:24:12.275002+00 f t 11451 \N \N f f +10361 2025-10-23 17:11:51.482922+00 2025-10-23 17:11:51.482922+00 f t 11393 \N \N f f +10431 2025-10-24 15:26:47.66669+00 2025-10-24 15:26:47.666701+00 f t 11452 \N \N f f +10364 2025-10-23 17:17:17.415411+00 2025-10-23 17:17:17.415411+00 f t 11396 \N \N f f +10365 2025-10-23 17:29:21.052944+00 2025-10-23 17:29:21.052952+00 f t 11393 \N \N f f +10366 2025-10-23 17:46:27.486844+00 2025-10-23 17:46:27.486854+00 f t 11398 \N \N f f +10367 2025-10-23 18:13:56.075864+00 2025-10-23 18:13:56.075872+00 f t 11399 \N \N f f +10368 2025-10-23 18:14:37.819116+00 2025-10-23 18:14:37.819126+00 f t 11400 \N \N f f +10369 2025-10-23 18:51:14.363931+00 2025-10-23 18:51:14.363942+00 f t 11401 \N \N f f +10370 2025-10-23 18:58:16.716594+00 2025-10-23 18:58:16.716601+00 f t 11402 \N \N f f +10371 2025-10-23 19:07:46.431537+00 2025-10-23 19:07:46.431545+00 f t 11321 \N \N f f +10372 2025-10-23 19:09:24.881678+00 2025-10-23 19:09:24.881688+00 f t 11321 \N \N f f +10373 2025-10-23 20:02:51.396713+00 2025-10-23 20:02:51.396722+00 f t 11403 \N \N f f +10374 2025-10-23 20:03:35.809718+00 2025-10-23 20:03:35.80973+00 f t 11178 \N \N f f +10375 2025-10-23 20:15:56.108557+00 2025-10-23 20:15:56.108566+00 f t 11405 \N \N f f +10376 2025-10-23 20:19:21.58189+00 2025-10-23 20:19:21.581898+00 f t 11387 \N \N f f +10377 2025-10-23 20:59:24.271739+00 2025-10-23 20:59:24.271749+00 f t 11406 \N \N f f +10378 2025-10-23 21:17:37.681668+00 2025-10-23 21:17:37.681683+00 f t 10793 \N \N f f +10379 2025-10-23 21:18:38.369539+00 2025-10-23 21:18:38.369549+00 f t 10793 \N \N f f +10380 2025-10-23 22:01:40.473801+00 2025-10-23 22:01:40.473811+00 f t 11407 \N \N f f +10381 2025-10-23 22:20:03.168427+00 2025-10-23 22:20:03.168443+00 f t 11393 \N \N f f +10382 2025-10-23 22:23:00.382612+00 2025-10-23 22:23:00.382623+00 f t 11393 \N \N f f +10383 2025-10-23 22:34:33.311913+00 2025-10-23 22:34:33.311926+00 f t 11408 \N \N f f +10384 2025-10-23 22:48:06.778592+00 2025-10-23 22:48:06.778601+00 f t 11409 \N \N f f +10385 2025-10-23 22:49:07.931319+00 2025-10-23 22:49:07.931327+00 f t 11410 \N \N f f +10386 2025-10-23 22:49:49.973552+00 2025-10-23 22:49:49.973564+00 f t 11393 \N \N f f +10387 2025-10-23 22:56:43.761318+00 2025-10-23 22:56:43.761329+00 f t 11411 \N \N f f +10388 2025-10-23 22:59:05.996165+00 2025-10-23 22:59:05.996199+00 f t 11412 \N \N f f +10389 2025-10-23 23:04:05.375863+00 2025-10-23 23:04:05.375875+00 f t 11413 \N \N f f +10390 2025-10-23 23:26:51.855977+00 2025-10-23 23:26:51.855984+00 f t 11414 \N \N f f +10391 2025-10-23 23:43:50.181776+00 2025-10-23 23:43:50.181783+00 f t 11415 \N \N f f +10392 2025-10-24 00:12:50.92964+00 2025-10-24 00:12:50.92965+00 f t 11416 \N \N f f +10393 2025-10-24 00:22:01.195715+00 2025-10-24 00:22:01.195723+00 f t 11417 \N \N f f +10394 2025-10-24 00:26:53.191213+00 2025-10-24 00:26:53.191219+00 f t 11418 \N \N f f +13134 2025-11-21 17:42:31.648493+00 2025-11-21 17:42:31.6485+00 f t 14068 \N \N f f +10396 2025-10-24 00:27:47.863982+00 2025-10-24 00:27:47.863991+00 f t 11420 \N \N f f +10397 2025-10-24 00:47:10.159735+00 2025-10-24 00:47:10.159746+00 f t 11421 \N \N f f +10398 2025-10-24 01:31:40.739035+00 2025-10-24 01:31:40.739043+00 f t 11422 \N \N f f +10399 2025-10-24 02:04:10.947977+00 2025-10-24 02:04:10.947987+00 f t 11423 \N \N f f +10400 2025-10-24 02:11:10.502167+00 2025-10-24 02:11:10.502185+00 f t 11424 \N \N f f +10401 2025-10-24 02:17:54.561117+00 2025-10-24 02:17:54.56113+00 f t 11425 \N \N f f +10402 2025-10-24 02:39:43.972214+00 2025-10-24 02:39:43.972221+00 f t 11426 \N \N f f +10403 2025-10-24 03:27:09.220507+00 2025-10-24 03:27:09.220516+00 f t 11427 \N \N f f +10404 2025-10-24 03:48:25.508105+00 2025-10-24 03:48:25.508113+00 f t 11428 \N \N f f +10405 2025-10-24 04:47:35.286044+00 2025-10-24 04:47:35.286054+00 f t 11429 \N \N f f +10406 2025-10-24 05:05:14.192069+00 2025-10-24 05:05:14.192077+00 f t 11430 \N \N f f +10407 2025-10-24 08:13:06.341357+00 2025-10-24 08:13:06.341365+00 f t 11431 \N \N f f +10408 2025-10-24 08:16:30.524957+00 2025-10-24 08:16:30.524964+00 f t 11432 \N \N f f +10409 2025-10-24 09:54:04.191106+00 2025-10-24 09:54:04.191114+00 f t 11433 \N \N f f +10410 2025-10-24 11:17:33.711191+00 2025-10-24 11:17:33.711201+00 f t 11434 \N \N f f +10411 2025-10-24 11:32:44.253719+00 2025-10-24 11:32:44.25373+00 f t 11435 \N \N f f +10432 2025-10-24 15:53:36.198216+00 2025-10-24 15:53:36.198253+00 f t 11453 \N \N f f +10412 2025-10-24 11:58:26.281116+00 2025-10-24 11:58:26.281123+00 f t 9928 \N \N f f +10413 2025-10-24 12:07:40.595961+00 2025-10-24 12:07:40.595969+00 f t 11436 \N \N f f +10414 2025-10-24 12:09:49.697288+00 2025-10-24 12:09:49.697297+00 f t 11437 \N \N f f +10415 2025-10-24 12:13:14.83856+00 2025-10-24 12:13:14.838568+00 f t 11438 \N \N f f +10416 2025-10-24 12:16:44.64849+00 2025-10-24 12:16:44.648497+00 f t 2084 \N \N f f +10417 2025-10-24 12:31:21.331954+00 2025-10-24 12:31:21.331963+00 f t 11441 \N \N f f +10418 2025-10-24 12:42:23.947264+00 2025-10-24 12:42:23.947274+00 f t 11442 \N \N f f +10419 2025-10-24 13:17:09.053391+00 2025-10-24 13:17:09.053391+00 f t 11443 \N \N f f +10420 2025-10-24 13:27:51.951676+00 2025-10-24 13:27:51.951686+00 f t 11444 \N 113 f f +10421 2025-10-24 13:33:45.630431+00 2025-10-24 13:33:45.630441+00 f t 11445 \N \N f f +10422 2025-10-24 13:37:07.065321+00 2025-10-24 13:37:07.065321+00 f t 11446 \N 113 f f +10423 2025-10-24 13:59:53.003552+00 2025-10-24 13:59:53.003561+00 f t 11447 \N \N f f +10424 2025-10-24 14:12:06.630296+00 2025-10-24 14:12:06.630305+00 f t 11380 \N \N f f +10426 2025-10-24 14:58:08.300162+00 2025-10-24 14:58:08.300169+00 f t 11449 \N \N f f +10434 2025-10-24 16:05:23.546398+00 2025-10-24 16:05:23.546406+00 f t 9706 \N \N f f +10433 2025-10-24 16:08:14.249316+00 2025-10-24 16:08:14.249316+00 f t 11454 \N \N f f +10435 2025-10-24 16:11:37.966527+00 2025-10-24 16:11:37.966537+00 f t 11455 \N \N f f +10436 2025-10-24 16:21:16.334558+00 2025-10-24 16:21:16.334566+00 f t 11456 \N \N f f +10437 2025-10-24 16:40:39.154019+00 2025-10-24 16:40:39.154027+00 f t 11457 \N \N f f +10438 2025-10-24 16:59:58.537115+00 2025-10-24 16:59:58.537126+00 f t 11458 \N \N f f +10440 2025-10-24 17:20:37.154752+00 2025-10-24 17:20:37.154752+00 f t 11460 \N \N f f +10441 2025-10-24 17:33:57.171738+00 2025-10-24 17:33:57.171745+00 f t 11344 \N \N f f +10442 2025-10-24 17:44:58.300396+00 2025-10-24 17:44:58.300406+00 f t 11461 \N \N f f +10443 2025-10-24 17:54:44.394773+00 2025-10-24 17:54:44.394779+00 f t 6905 \N \N f f +10444 2025-10-24 18:04:31.13978+00 2025-10-24 18:04:31.139788+00 f t 11462 \N \N f f +10439 2025-10-24 18:53:02.621571+00 2025-10-24 18:53:02.621571+00 f t 11459 \N 85 f f +10445 2025-10-24 18:53:55.209551+00 2025-10-24 18:53:55.209559+00 f t 11463 \N \N f f +10446 2025-10-24 19:02:08.63023+00 2025-10-24 19:02:08.630242+00 f t 10609 \N \N f f +10447 2025-10-24 19:46:42.069585+00 2025-10-24 19:46:42.069595+00 f t 11464 \N \N f f +10448 2025-10-24 19:55:13.909251+00 2025-10-24 19:55:13.909258+00 f t 11465 \N \N f f +10449 2025-10-24 20:14:04.987628+00 2025-10-24 20:14:04.987639+00 f t 11466 \N \N f f +10450 2025-10-24 20:28:40.492235+00 2025-10-24 20:28:40.492242+00 f t 11467 \N \N f f +10451 2025-10-24 20:35:24.979499+00 2025-10-24 20:35:24.979507+00 f t 11035 \N \N f f +10452 2025-10-24 20:49:12.074916+00 2025-10-24 20:49:12.074925+00 f t 11468 \N \N f f +10453 2025-10-24 20:55:39.836536+00 2025-10-24 20:55:39.836544+00 f t 11469 \N \N f f +10454 2025-10-24 21:21:28.197767+00 2025-10-24 21:21:28.197776+00 f t 11470 \N \N f f +10455 2025-10-24 21:23:43.190447+00 2025-10-24 21:23:43.190454+00 f t 123 \N \N f f +10456 2025-10-24 21:39:41.479975+00 2025-10-24 21:39:41.479983+00 f t 11471 \N \N f f +10457 2025-10-24 21:52:26.593221+00 2025-10-24 21:52:26.593229+00 f t 9680 \N \N f f +10425 2025-10-24 21:54:24.204211+00 2025-10-24 21:54:24.204211+00 f t 11448 \N \N f f +10458 2025-10-24 22:03:47.129148+00 2025-10-24 22:03:47.129156+00 f t 11472 \N \N f f +10459 2025-10-24 22:23:42.116619+00 2025-10-24 22:23:42.116627+00 f t 11473 \N \N f f +10460 2025-10-24 22:30:51.670894+00 2025-10-24 22:30:51.670902+00 f t 11474 \N \N f f +10461 2025-10-24 22:43:32.535778+00 2025-10-24 22:43:32.535786+00 f t 11475 \N \N f f +10462 2025-10-24 22:52:20.393861+00 2025-10-24 22:52:20.393861+00 f t 11476 \N \N f f +10463 2025-10-24 22:54:03.307814+00 2025-10-24 22:54:03.307822+00 f t 8168 \N \N f f +10464 2025-10-24 23:05:27.071896+00 2025-10-24 23:05:27.071908+00 f t 11477 \N \N f f +10465 2025-10-24 23:19:09.177116+00 2025-10-24 23:19:09.177128+00 f t 11479 \N \N f f +10466 2025-10-24 23:51:40.495521+00 2025-10-24 23:51:40.495529+00 f t 11480 \N \N f f +10467 2025-10-24 23:57:37.258347+00 2025-10-24 23:57:37.258356+00 f t 11481 \N \N f f +10468 2025-10-25 00:30:26.092143+00 2025-10-25 00:30:26.092154+00 f t 11482 \N \N f f +10469 2025-10-25 00:30:43.146942+00 2025-10-25 00:30:43.14695+00 f t 11483 \N \N f f +10470 2025-10-25 00:46:04.475306+00 2025-10-25 00:46:04.475318+00 f t 11484 \N \N f f +10471 2025-10-25 01:35:18.721136+00 2025-10-25 01:35:18.721146+00 f t 11485 \N \N f f +10472 2025-10-25 02:07:49.507222+00 2025-10-25 02:07:49.50723+00 f t 11486 \N \N f f +10473 2025-10-25 02:15:32.917394+00 2025-10-25 02:15:32.917403+00 f t 11487 \N \N f f +10474 2025-10-25 02:16:56.896124+00 2025-10-25 02:16:56.896133+00 f t 11488 \N \N f f +10475 2025-10-25 04:12:29.839791+00 2025-10-25 04:12:29.839802+00 f t 11489 \N \N f f +10476 2025-10-25 06:20:39.939624+00 2025-10-25 06:20:39.939632+00 f t 11490 \N \N f f +10395 2025-10-25 07:04:15.41313+00 2025-10-25 07:04:15.41313+00 f t 11419 \N \N f f +10477 2025-10-25 07:28:42.826767+00 2025-10-25 07:28:42.826779+00 f t 11491 \N \N f f +10478 2025-10-25 08:35:19.372957+00 2025-10-25 08:35:19.372968+00 f t 11493 \N \N f f +10479 2025-10-25 08:53:04.985882+00 2025-10-25 08:53:04.985895+00 f t 11494 \N \N f f +10480 2025-10-25 10:07:21.856649+00 2025-10-25 10:07:21.856657+00 f t 11496 \N \N f f +10481 2025-10-25 11:18:18.401383+00 2025-10-25 11:18:18.401397+00 f t 11497 \N \N f f +10482 2025-10-25 12:15:08.436471+00 2025-10-25 12:15:08.436481+00 f t 11447 \N \N f f +10544 2025-10-26 16:02:40.43725+00 2025-10-26 16:02:40.437258+00 f t 11559 \N \N f f +10483 2025-10-25 12:39:37.13035+00 2025-10-25 12:39:37.13035+00 f t 11498 \N 2 f f +10484 2025-10-25 12:49:47.41133+00 2025-10-25 12:49:47.411341+00 f t 11499 \N \N f f +10485 2025-10-25 12:51:20.415662+00 2025-10-25 12:51:20.415669+00 f t 11500 \N \N f f +10545 2025-10-26 16:17:58.877158+00 2025-10-26 16:17:58.877168+00 f t 11560 \N \N f f +10546 2025-10-26 16:21:39.848328+00 2025-10-26 16:21:39.848337+00 f t 11561 \N \N f f +10487 2025-10-25 13:25:01.119685+00 2025-10-25 13:25:01.119685+00 f t 11502 \N \N f f +10488 2025-10-25 13:38:29.117404+00 2025-10-25 13:38:29.117412+00 f t 11302 \N \N f f +10489 2025-10-25 13:39:40.955668+00 2025-10-25 13:39:40.955675+00 f t 11302 \N \N f f +10490 2025-10-25 13:41:44.747291+00 2025-10-25 13:41:44.747299+00 f t 11302 \N \N f f +10491 2025-10-25 13:43:15.705107+00 2025-10-25 13:43:15.705119+00 f t 11503 \N \N f f +10492 2025-10-25 13:43:26.352425+00 2025-10-25 13:43:26.352433+00 f t 11504 \N \N f f +10493 2025-10-25 14:01:13.331296+00 2025-10-25 14:01:13.331305+00 f t 11506 \N \N f f +10486 2025-10-25 14:02:44.753456+00 2025-10-25 14:02:44.753456+00 f t 11501 \N \N f f +10494 2025-10-25 14:03:28.737167+00 2025-10-25 14:03:28.737175+00 f t 11507 \N \N f f +10495 2025-10-25 14:23:14.90572+00 2025-10-25 14:23:14.905732+00 f t 11508 \N \N f f +10496 2025-10-25 14:35:43.035186+00 2025-10-25 14:35:43.035196+00 f t 11509 \N \N f f +10497 2025-10-25 14:48:07.917238+00 2025-10-25 14:48:07.917248+00 f t 11447 \N \N f f +10498 2025-10-25 14:53:49.242409+00 2025-10-25 14:53:49.242419+00 f t 11510 \N \N f f +10499 2025-10-25 14:55:08.526463+00 2025-10-25 14:55:08.526475+00 f t 11511 \N \N f f +10502 2025-10-25 15:37:30.060767+00 2025-10-25 15:37:30.06078+00 f t 11514 \N \N f f +10503 2025-10-25 15:53:40.679355+00 2025-10-25 15:53:40.679364+00 f t 11515 \N \N f f +10504 2025-10-25 16:10:29.483069+00 2025-10-25 16:10:29.483079+00 f t 11516 \N \N f f +10505 2025-10-25 17:18:24.521173+00 2025-10-25 17:18:24.521187+00 f t 11447 \N \N f f +10506 2025-10-25 17:36:57.148355+00 2025-10-25 17:36:57.148362+00 f t 11517 \N \N f f +10507 2025-10-25 18:15:47.654876+00 2025-10-25 18:15:47.654887+00 f t 11518 \N \N f f +10500 2025-10-25 18:17:55.189746+00 2025-10-25 18:17:55.189746+00 f t 11512 \N \N f f +10508 2025-10-25 18:18:20.14085+00 2025-10-25 18:18:20.140858+00 f t 11519 \N \N f f +10509 2025-10-25 18:50:42.374035+00 2025-10-25 18:50:42.374046+00 f t 11522 \N \N f f +10510 2025-10-25 19:01:08.214927+00 2025-10-25 19:01:08.214927+00 f t 11523 \N \N f f +10511 2025-10-25 19:13:49.839011+00 2025-10-25 19:13:49.839019+00 f t 11524 \N \N f f +10512 2025-10-25 20:13:43.959096+00 2025-10-25 20:13:43.959107+00 f t 11525 \N \N f f +10513 2025-10-25 21:19:15.706095+00 2025-10-25 21:19:15.706105+00 f t 11526 \N \N f f +10514 2025-10-25 21:20:52.996174+00 2025-10-25 21:20:52.996185+00 f t 11527 \N \N f f +10515 2025-10-25 21:23:59.910369+00 2025-10-25 21:23:59.910377+00 f t 11528 \N \N f f +10516 2025-10-25 22:21:01.759614+00 2025-10-25 22:21:01.759624+00 f t 11529 \N \N f f +10501 2025-10-25 22:41:58.415065+00 2025-10-25 22:41:58.415065+00 f t 11513 \N \N f f +10517 2025-10-25 22:42:09.034654+00 2025-10-25 22:42:09.034661+00 f t 11531 \N \N f f +10518 2025-10-25 22:42:27.866051+00 2025-10-25 22:42:27.86606+00 f t 11532 \N \N f f +10519 2025-10-25 22:44:01.250612+00 2025-10-25 22:44:01.250621+00 f t 11534 \N \N f f +10520 2025-10-25 22:44:23.854642+00 2025-10-25 22:44:23.854651+00 f t 11535 \N \N f f +10521 2025-10-25 22:44:35.452744+00 2025-10-25 22:44:35.452752+00 f t 11536 \N \N f f +10522 2025-10-25 22:59:38.413003+00 2025-10-25 22:59:38.413011+00 f t 11537 \N \N f f +10523 2025-10-25 23:07:45.930731+00 2025-10-25 23:07:45.930744+00 f t 11538 \N \N f f +10524 2025-10-25 23:09:52.053391+00 2025-10-25 23:09:52.053402+00 f t 11539 \N \N f f +10525 2025-10-25 23:28:46.639382+00 2025-10-25 23:28:46.63939+00 f t 11541 \N \N f f +10526 2025-10-25 23:38:37.772792+00 2025-10-25 23:38:37.7728+00 f t 11543 \N \N f f +10547 2025-10-26 16:31:15.215335+00 2025-10-26 16:31:15.215335+00 f t 11563 \N \N f f +10527 2025-10-26 00:19:42.88769+00 2025-10-26 00:19:42.88769+00 f t 11544 \N \N f f +10528 2025-10-26 00:28:38.984861+00 2025-10-26 00:28:38.984868+00 f t 11545 \N \N f f +10529 2025-10-26 00:48:23.005325+00 2025-10-26 00:48:23.005333+00 f t 11546 \N \N f f +10530 2025-10-26 01:29:32.656399+00 2025-10-26 01:29:32.656407+00 f t 11547 \N \N f f +10531 2025-10-26 02:58:13.582883+00 2025-10-26 02:58:13.582891+00 f t 11548 \N \N f f +10532 2025-10-26 03:21:45.423552+00 2025-10-26 03:21:45.42356+00 f t 11549 \N \N f f +10533 2025-10-26 04:18:00.372986+00 2025-10-26 04:18:00.372986+00 f t 11550 \N \N f f +10534 2025-10-26 04:18:25.19461+00 2025-10-26 04:18:25.194618+00 f t 10730 \N \N f f +10535 2025-10-26 11:35:20.908806+00 2025-10-26 11:35:20.908806+00 f t 11551 \N \N f f +10536 2025-10-26 13:15:45.892271+00 2025-10-26 13:15:45.89228+00 f t 11552 \N \N f f +10537 2025-10-26 13:15:58.109777+00 2025-10-26 13:15:58.109788+00 f t 11553 \N \N f f +10538 2025-10-26 15:06:56.843287+00 2025-10-26 15:06:56.843295+00 f t 11554 \N \N f f +10539 2025-10-26 15:13:40.068663+00 2025-10-26 15:13:40.068672+00 f t 11555 \N \N f f +10540 2025-10-26 15:32:42.255602+00 2025-10-26 15:32:42.255609+00 f t 11556 \N \N f f +10541 2025-10-26 15:37:17.020565+00 2025-10-26 15:37:17.020573+00 f t 11557 \N \N f f +10542 2025-10-26 15:40:55.118244+00 2025-10-26 15:40:55.118255+00 f t 5658 \N \N f f +10543 2025-10-26 15:46:16.445766+00 2025-10-26 15:46:16.44578+00 f t 11558 \N \N f f +10557 2025-10-26 18:25:34.090325+00 2025-10-26 18:25:34.090333+00 f t 11574 \N \N f f +10548 2025-10-26 16:58:18.415028+00 2025-10-26 16:58:18.415028+00 f t 11564 \N \N f f +10549 2025-10-26 16:58:25.200461+00 2025-10-26 16:58:25.200469+00 f t 11565 \N \N f f +10550 2025-10-26 17:22:01.06402+00 2025-10-26 17:22:01.064027+00 f t 11566 \N \N f f +10551 2025-10-26 17:25:13.232083+00 2025-10-26 17:25:13.232091+00 f t 11567 \N \N f f +10552 2025-10-26 17:25:23.770537+00 2025-10-26 17:25:23.770545+00 f t 11568 \N \N f f +10553 2025-10-26 17:47:56.802572+00 2025-10-26 17:47:56.802579+00 f t 11569 \N \N f f +10554 2025-10-26 17:57:22.968042+00 2025-10-26 17:57:22.968049+00 f t 11570 \N \N f f +10555 2025-10-26 18:14:15.588409+00 2025-10-26 18:14:15.588417+00 f t 11572 \N \N f f +10558 2025-10-26 18:38:57.674533+00 2025-10-26 18:38:57.674541+00 f t 10716 \N \N f f +10556 2025-10-26 18:24:00.916791+00 2025-10-26 18:24:00.916791+00 f t 11573 \N \N f f +10559 2025-10-26 18:50:27.139361+00 2025-10-26 18:50:27.139374+00 f t 11575 \N \N f f +10560 2025-10-26 18:58:04.156887+00 2025-10-26 18:58:04.156899+00 f t 11517 \N \N f f +10561 2025-10-26 19:18:22.345087+00 2025-10-26 19:18:22.345095+00 f t 11576 \N \N f f +10562 2025-10-26 19:30:16.855171+00 2025-10-26 19:30:16.855182+00 f t 11577 \N \N f f +10563 2025-10-26 19:54:15.934464+00 2025-10-26 19:54:15.934475+00 f t 11578 \N \N f f +10565 2025-10-26 20:11:42.711081+00 2025-10-26 20:11:42.711088+00 f t 11580 \N \N f f +10564 2025-10-26 20:08:43.584895+00 2025-10-26 20:08:43.584895+00 f t 11579 \N \N f f +10566 2025-10-26 20:36:28.805057+00 2025-10-26 20:36:28.805064+00 f t 11582 \N \N f f +10567 2025-10-26 23:37:01.28363+00 2025-10-26 23:37:01.283638+00 f t 9680 \N \N f f +10568 2025-10-27 02:05:50.142136+00 2025-10-27 02:05:50.142144+00 f t 10365 \N \N f f +10569 2025-10-27 03:06:52.025543+00 2025-10-27 03:06:52.025555+00 f t 11583 \N \N f f +10570 2025-10-27 03:43:58.866807+00 2025-10-27 03:43:58.866814+00 f t 11584 \N \N f f +10571 2025-10-27 03:49:18.70761+00 2025-10-27 03:49:18.707619+00 f t 11585 \N \N f f +10572 2025-10-27 05:47:15.402794+00 2025-10-27 05:47:15.402802+00 f t 11586 \N \N f f +10573 2025-10-27 09:56:05.879103+00 2025-10-27 09:56:05.879113+00 f t 11587 \N \N f f +10574 2025-10-27 10:33:12.155399+00 2025-10-27 10:33:12.155407+00 f t 11588 \N \N f f +10575 2025-10-27 12:20:10.514945+00 2025-10-27 12:20:10.514953+00 f t 11589 \N \N f f +10576 2025-10-27 12:32:46.459703+00 2025-10-27 12:32:46.459712+00 f t 11398 \N \N f f +10577 2025-10-27 12:42:30.646316+00 2025-10-27 12:42:30.646328+00 f t 920 \N \N f f +10578 2025-10-27 12:44:03.015284+00 2025-10-27 12:44:03.015297+00 f t 11590 \N \N f f +10579 2025-10-27 13:17:54.853093+00 2025-10-27 13:17:54.853104+00 f t 11591 \N \N f f +10580 2025-10-27 13:18:44.083321+00 2025-10-27 13:18:44.08333+00 f t 11592 \N \N f f +10581 2025-10-27 13:46:36.861938+00 2025-10-27 13:46:36.861951+00 f t 11264 \N \N f f +10582 2025-10-27 13:50:19.442298+00 2025-10-27 13:50:19.442309+00 f t 11594 \N \N f f +10583 2025-10-27 13:53:16.318393+00 2025-10-27 13:53:16.318406+00 f t 9147 \N \N f f +10584 2025-10-27 14:02:55.918954+00 2025-10-27 14:02:55.918964+00 f t 10555 \N \N f f +10585 2025-10-27 14:10:03.538027+00 2025-10-27 14:10:03.538042+00 f t 11595 \N \N f f +10586 2025-10-27 14:16:47.797849+00 2025-10-27 14:16:47.797858+00 f t 11596 \N \N f f +10587 2025-10-27 14:18:24.469128+00 2025-10-27 14:18:24.469137+00 f t 11597 \N \N f f +10588 2025-10-27 14:27:59.866955+00 2025-10-27 14:27:59.866963+00 f t 11598 \N \N f f +10589 2025-10-27 14:31:25.078803+00 2025-10-27 14:31:25.078814+00 f t 11599 \N \N f f +10590 2025-10-27 14:39:25.099536+00 2025-10-27 14:39:25.099545+00 f t 11600 \N \N f f +10591 2025-10-27 14:54:09.73477+00 2025-10-27 14:54:09.734777+00 f t 11601 \N \N f f +10592 2025-10-27 14:54:21.300931+00 2025-10-27 14:54:21.300939+00 f t 10052 \N \N f f +10593 2025-10-27 14:58:42.248146+00 2025-10-27 14:58:42.248155+00 f t 11602 \N \N f f +10594 2025-10-27 14:58:48.251955+00 2025-10-27 14:58:48.251963+00 f t 11603 \N \N f f +10595 2025-10-27 15:03:15.437714+00 2025-10-27 15:03:15.437725+00 f t 9239 \N \N f f +10596 2025-10-27 15:09:44.976851+00 2025-10-27 15:09:44.97686+00 f t 11605 \N \N f f +10597 2025-10-27 15:16:56.601425+00 2025-10-27 15:16:56.601433+00 f t 11606 \N \N f f +10598 2025-10-27 15:33:44.703414+00 2025-10-27 15:33:44.703428+00 f t 11607 \N \N f f +10599 2025-10-27 15:41:49.902302+00 2025-10-27 15:41:49.902309+00 f t 797 \N \N f f +10600 2025-10-27 15:42:13.586133+00 2025-10-27 15:42:13.586142+00 f t 11608 \N \N f f +10601 2025-10-27 15:50:54.020248+00 2025-10-27 15:50:54.020255+00 f t 11609 \N \N f f +10602 2025-10-27 16:12:25.240028+00 2025-10-27 16:12:25.240036+00 f t 11610 \N \N f f +10603 2025-10-27 16:19:33.675066+00 2025-10-27 16:19:33.675074+00 f t 11611 \N \N f f +10604 2025-10-27 16:25:37.715861+00 2025-10-27 16:25:37.715868+00 f t 11612 \N \N f f +10605 2025-10-27 16:26:11.530618+00 2025-10-27 16:26:11.530626+00 f t 11613 \N \N f f +10606 2025-10-27 16:37:11.552456+00 2025-10-27 16:37:11.552464+00 f t 11614 \N \N f f +10607 2025-10-27 16:52:44.323822+00 2025-10-27 16:52:44.323822+00 f t 11615 \N \N f f +10608 2025-10-27 16:57:51.560085+00 2025-10-27 16:57:51.560093+00 f t 11616 \N \N f f +10609 2025-10-27 16:58:30.116707+00 2025-10-27 16:58:30.116715+00 f t 11617 \N \N f f +10610 2025-10-27 17:00:21.990287+00 2025-10-27 17:00:21.990302+00 f t 11618 \N \N f f +10611 2025-10-27 17:04:59.893104+00 2025-10-27 17:04:59.893111+00 f t 11619 \N \N f f +10612 2025-10-27 17:13:18.70534+00 2025-10-27 17:13:18.705349+00 f t 11616 \N \N f f +10613 2025-10-27 17:19:42.89172+00 2025-10-27 17:19:42.891729+00 f t 11620 \N \N f f +10614 2025-10-27 17:27:47.00838+00 2025-10-27 17:27:47.00838+00 f t 11621 \N \N f f +10615 2025-10-27 17:45:55.482853+00 2025-10-27 17:45:55.482863+00 f t 11622 \N \N f f +10616 2025-10-27 17:59:36.170598+00 2025-10-27 17:59:36.170608+00 f t 11623 \N \N f f +10617 2025-10-27 18:00:19.450848+00 2025-10-27 18:00:19.450862+00 f t 11624 \N \N f f +10618 2025-10-27 18:00:20.041898+00 2025-10-27 18:00:20.041909+00 f t 11625 \N \N f f +10619 2025-10-27 18:01:45.25012+00 2025-10-27 18:01:45.250128+00 f t 541 \N \N f f +10620 2025-10-27 18:02:48.101691+00 2025-10-27 18:02:48.101698+00 f t 9187 \N \N f f +10621 2025-10-27 18:12:16.858293+00 2025-10-27 18:12:16.8583+00 f t 11591 \N \N f f +10622 2025-10-27 18:12:56.694161+00 2025-10-27 18:12:56.694173+00 f t 11626 \N \N f f +10623 2025-10-27 18:14:34.770456+00 2025-10-27 18:14:34.770463+00 f t 11627 \N \N f f +10624 2025-10-27 18:25:37.163592+00 2025-10-27 18:25:37.1636+00 f t 11035 \N \N f f +10625 2025-10-27 18:32:17.02465+00 2025-10-27 18:32:17.024657+00 f t 11628 \N \N f f +10627 2025-10-27 18:38:10.429663+00 2025-10-27 18:38:10.429674+00 f t 11630 \N \N f f +10677 2025-10-28 02:51:44.740836+00 2025-10-28 02:51:44.740844+00 f t 11678 \N \N f f +10626 2025-10-27 18:48:04.277202+00 2025-10-27 18:48:04.277202+00 f t 11629 \N \N f f +10628 2025-10-27 18:56:33.242081+00 2025-10-27 18:56:33.242089+00 f t 11631 \N \N f f +10629 2025-10-27 19:07:23.876078+00 2025-10-27 19:07:23.876086+00 f t 11632 \N \N f f +10630 2025-10-27 19:43:00.554192+00 2025-10-27 19:43:00.5542+00 f t 11633 \N \N f f +10631 2025-10-27 19:57:07.750042+00 2025-10-27 19:57:07.75005+00 f t 11634 \N \N f f +10632 2025-10-27 20:05:08.738888+00 2025-10-27 20:05:08.738897+00 f t 11635 \N \N f f +10633 2025-10-27 20:11:33.573006+00 2025-10-27 20:11:33.573016+00 f t 11637 \N \N f f +10634 2025-10-27 20:34:10.254399+00 2025-10-27 20:34:10.254409+00 f t 11638 \N \N f f +10635 2025-10-27 20:38:39.053005+00 2025-10-27 20:38:39.053016+00 f t 11639 \N \N f f +10636 2025-10-27 20:46:04.305141+00 2025-10-27 20:46:04.305151+00 f t 11641 \N \N f f +10637 2025-10-27 20:47:39.784081+00 2025-10-27 20:47:39.784081+00 f t 11642 \N \N f f +10638 2025-10-27 20:55:49.789486+00 2025-10-27 20:55:49.789494+00 f t 11643 \N \N f f +10639 2025-10-27 20:56:16.955046+00 2025-10-27 20:56:16.955054+00 f t 11644 \N \N f f +10640 2025-10-27 21:03:09.540025+00 2025-10-27 21:03:09.540037+00 f t 11645 \N \N f f +10642 2025-10-27 21:09:29.554446+00 2025-10-27 21:09:29.554459+00 f t 11647 \N \N f f +10643 2025-10-27 21:11:31.370381+00 2025-10-27 21:11:31.370392+00 f t 9531 \N \N f f +10644 2025-10-27 21:13:25.648762+00 2025-10-27 21:13:25.648772+00 f t 11648 \N \N f f +10645 2025-10-27 21:13:28.693996+00 2025-10-27 21:13:28.694003+00 f t 11648 \N \N f f +10646 2025-10-27 21:25:11.649732+00 2025-10-27 21:25:11.649732+00 f t 9534 \N \N f f +10647 2025-10-27 21:47:09.441618+00 2025-10-27 21:47:09.441618+00 f t 11650 \N \N f f +10648 2025-10-27 21:47:28.86602+00 2025-10-27 21:47:28.866029+00 f t 11651 \N \N f f +10649 2025-10-27 22:10:24.816531+00 2025-10-27 22:10:24.81654+00 f t 11652 \N \N f f +10650 2025-10-27 22:16:36.578656+00 2025-10-27 22:16:36.578664+00 f t 11653 \N \N f f +10651 2025-10-27 22:17:39.978189+00 2025-10-27 22:17:39.978189+00 f t 11654 \N \N f f +10652 2025-10-27 22:20:15.802847+00 2025-10-27 22:20:15.802859+00 f t 11655 \N \N f f +10653 2025-10-27 22:35:17.731326+00 2025-10-27 22:35:17.731335+00 f t 11656 \N \N f f +10654 2025-10-27 22:39:11.736012+00 2025-10-27 22:39:11.736019+00 f t 11657 \N \N f f +10655 2025-10-27 22:58:37.730715+00 2025-10-27 22:58:37.730723+00 f t 11658 \N \N f f +10656 2025-10-27 23:02:08.471607+00 2025-10-27 23:02:08.471619+00 f t 11660 \N \N f f +10657 2025-10-27 23:02:32.236663+00 2025-10-27 23:02:32.236676+00 f t 11659 \N \N f f +10658 2025-10-27 23:51:11.370184+00 2025-10-27 23:51:11.370192+00 f t 541 \N \N f f +10659 2025-10-27 23:55:10.32493+00 2025-10-27 23:55:10.324938+00 f t 11662 \N \N f f +10660 2025-10-28 00:01:43.362191+00 2025-10-28 00:01:43.3622+00 f t 11663 \N \N f f +10661 2025-10-28 00:06:34.853772+00 2025-10-28 00:06:34.85378+00 f t 11664 \N \N f f +10662 2025-10-28 00:14:27.869357+00 2025-10-28 00:14:27.869365+00 f t 11302 \N \N f f +10663 2025-10-28 00:15:48.722472+00 2025-10-28 00:15:48.72248+00 f t 11665 \N \N f f +10664 2025-10-28 00:16:25.499055+00 2025-10-28 00:16:25.499063+00 f t 11666 \N \N f f +10665 2025-10-28 00:17:19.71633+00 2025-10-28 00:17:19.716337+00 f t 8694 \N \N f f +10666 2025-10-28 00:18:32.88995+00 2025-10-28 00:18:32.88995+00 f t 11667 \N \N f f +10667 2025-10-28 00:19:31.681238+00 2025-10-28 00:19:31.681246+00 f t 11668 \N \N f f +10668 2025-10-28 00:20:13.560899+00 2025-10-28 00:20:13.560911+00 f t 11669 \N \N f f +10669 2025-10-28 00:41:01.60709+00 2025-10-28 00:41:01.607103+00 f t 11670 \N \N f f +10671 2025-10-28 01:22:28.454487+00 2025-10-28 01:22:28.454496+00 f t 11672 \N \N f f +10670 2025-10-28 01:26:51.658875+00 2025-10-28 01:26:51.658875+00 f t 11671 \N \N f f +10672 2025-10-28 01:45:40.843436+00 2025-10-28 01:45:40.843447+00 f t 11673 \N \N f f +10673 2025-10-28 01:50:11.34041+00 2025-10-28 01:50:11.34042+00 f t 11674 \N \N f f +10674 2025-10-28 02:20:14.278831+00 2025-10-28 02:20:14.278841+00 f t 11675 \N \N f f +10675 2025-10-28 02:23:54.293492+00 2025-10-28 02:23:54.2935+00 f t 11676 \N \N f f +10676 2025-10-28 02:39:49.242707+00 2025-10-28 02:39:49.242717+00 f t 11677 \N \N f f +10678 2025-10-28 03:03:57.177211+00 2025-10-28 03:03:57.17722+00 f t 11679 \N \N f f +10679 2025-10-28 03:04:04.869398+00 2025-10-28 03:04:04.869407+00 f t 11680 \N \N f f +10680 2025-10-28 03:04:30.743592+00 2025-10-28 03:04:30.743602+00 f t 11681 \N \N f f +10681 2025-10-28 03:05:02.693361+00 2025-10-28 03:05:02.693374+00 f t 11682 \N \N f f +10682 2025-10-28 03:05:46.499862+00 2025-10-28 03:05:46.499871+00 f t 11683 \N \N f f +10683 2025-10-28 03:06:34.333537+00 2025-10-28 03:06:34.333546+00 f t 11684 \N \N f f +10685 2025-10-28 03:08:39.778056+00 2025-10-28 03:08:39.778064+00 f t 11686 \N \N f f +10686 2025-10-28 03:10:00.279281+00 2025-10-28 03:10:00.279292+00 f t 11687 \N \N f f +10687 2025-10-28 03:13:54.212203+00 2025-10-28 03:13:54.212211+00 f t 11688 \N \N f f +10688 2025-10-28 03:29:14.499458+00 2025-10-28 03:29:14.49947+00 f t 11689 \N \N f f +10684 2025-10-28 12:41:14.290011+00 2025-10-28 12:41:14.290011+00 f t 11685 \N \N f f +10641 2025-10-28 16:20:11.980725+00 2025-10-28 16:20:11.980725+00 f t 11646 \N 90 f f +10689 2025-10-28 04:12:51.855434+00 2025-10-28 04:12:51.855434+00 f t 11690 \N \N f f +10690 2025-10-28 04:41:05.274275+00 2025-10-28 04:41:05.274275+00 f t 11691 \N \N f f +10691 2025-10-28 06:03:54.622251+00 2025-10-28 06:03:54.622262+00 f t 11692 \N \N f f +10692 2025-10-28 06:06:47.922436+00 2025-10-28 06:06:47.922446+00 f t 11693 \N 113 f f +10693 2025-10-28 08:31:00.205437+00 2025-10-28 08:31:00.205447+00 f t 11694 \N \N f f +10694 2025-10-28 08:34:41.204804+00 2025-10-28 08:34:41.204812+00 f t 11695 \N \N f f +10695 2025-10-28 10:18:26.005756+00 2025-10-28 10:18:26.005766+00 f t 11696 \N \N f f +10696 2025-10-28 10:52:01.075663+00 2025-10-28 10:52:01.07567+00 f t 11697 \N \N f f +10697 2025-10-28 11:03:36.437294+00 2025-10-28 11:03:36.437302+00 f t 11698 \N \N f f +10698 2025-10-28 11:13:31.875951+00 2025-10-28 11:13:31.875959+00 f t 11699 \N \N f f +10699 2025-10-28 11:13:57.648168+00 2025-10-28 11:13:57.648177+00 f t 11700 \N \N f f +10700 2025-10-28 11:16:31.451374+00 2025-10-28 11:16:31.451381+00 f t 11701 \N \N f f +10701 2025-10-28 11:38:35.833836+00 2025-10-28 11:38:35.833843+00 f t 11702 \N \N f f +10702 2025-10-28 12:09:17.733293+00 2025-10-28 12:09:17.7333+00 f t 11703 \N \N f f +10703 2025-10-28 12:12:02.717832+00 2025-10-28 12:12:02.717847+00 f t 11704 \N \N f f +10705 2025-10-28 12:39:41.52307+00 2025-10-28 12:39:41.523078+00 f t 11706 \N \N f f +10788 2025-10-28 22:20:04.470783+00 2025-10-28 22:20:04.470799+00 f t 11774 \N \N f f +10704 2025-10-28 12:41:23.610819+00 2025-10-28 12:41:23.610819+00 f t 11705 \N \N f f +10706 2025-10-28 12:42:55.392215+00 2025-10-28 12:42:55.392215+00 f t 11707 \N \N f f +10707 2025-10-28 12:52:42.220189+00 2025-10-28 12:52:42.220197+00 f t 11709 \N \N f f +10708 2025-10-28 12:54:52.164292+00 2025-10-28 12:54:52.164292+00 f t 11710 \N \N f f +10709 2025-10-28 13:22:42.976722+00 2025-10-28 13:22:42.97673+00 f t 11711 \N \N f f +10710 2025-10-28 13:25:02.834117+00 2025-10-28 13:25:02.834136+00 f t 11712 \N \N f f +10711 2025-10-28 13:26:10.445133+00 2025-10-28 13:26:10.445141+00 f t 11713 \N \N f f +10712 2025-10-28 13:29:44.988036+00 2025-10-28 13:29:44.988047+00 f t 11714 \N \N f f +10713 2025-10-28 13:38:37.598584+00 2025-10-28 13:38:37.598593+00 f t 11715 \N \N f f +10714 2025-10-28 13:59:14.390756+00 2025-10-28 13:59:14.390763+00 f t 9165 \N \N f f +10715 2025-10-28 14:01:39.008925+00 2025-10-28 14:01:39.008934+00 f t 11716 \N \N f f +10716 2025-10-28 14:20:58.73004+00 2025-10-28 14:20:58.730048+00 f t 11717 \N \N f f +10717 2025-10-28 14:31:21.386153+00 2025-10-28 14:31:21.386153+00 f t 11718 \N \N f f +10718 2025-10-28 14:39:01.427852+00 2025-10-28 14:39:01.427866+00 f t 11719 \N \N f f +10719 2025-10-28 14:56:56.071518+00 2025-10-28 14:56:56.071526+00 f t 11721 \N \N f f +10720 2025-10-28 15:01:28.828544+00 2025-10-28 15:01:28.828556+00 f t 11720 \N \N f f +10721 2025-10-28 15:01:55.898278+00 2025-10-28 15:01:55.898289+00 f t 10252 \N \N f f +10722 2025-10-28 15:02:25.491397+00 2025-10-28 15:02:25.491406+00 f t 11720 \N \N f f +10723 2025-10-28 15:19:12.270045+00 2025-10-28 15:19:12.270052+00 f t 11722 \N \N f f +10724 2025-10-28 15:24:45.081587+00 2025-10-28 15:24:45.081587+00 f t 11723 \N \N f f +10725 2025-10-28 15:26:38.97351+00 2025-10-28 15:26:38.973518+00 f t 11724 \N \N f f +10726 2025-10-28 15:41:20.16561+00 2025-10-28 15:41:20.165619+00 f t 11725 \N \N f f +10727 2025-10-28 15:44:12.110784+00 2025-10-28 15:44:12.110792+00 f t 4176 \N \N f f +10728 2025-10-28 15:48:14.218351+00 2025-10-28 15:48:14.218351+00 f t 2529 \N \N f f +10729 2025-10-28 15:55:05.165656+00 2025-10-28 15:55:05.165669+00 f t 11726 \N \N f f +10730 2025-10-28 15:57:54.581087+00 2025-10-28 15:57:54.581094+00 f t 9712 \N \N f f +10731 2025-10-28 16:18:51.009879+00 2025-10-28 16:18:51.009886+00 f t 11727 \N \N f f +13135 2025-11-21 17:48:18.408461+00 2025-11-21 17:48:18.408468+00 f t 14069 \N \N f f +10789 2025-10-28 22:26:54.926068+00 2025-10-28 22:26:54.926076+00 f t 11775 \N \N f f +10790 2025-10-28 22:41:38.53936+00 2025-10-28 22:41:38.539368+00 f t 11776 \N \N f f +10755 2025-10-28 19:07:45.39139+00 2025-10-28 19:07:45.39139+00 f t 11619 \N 68 f f +10756 2025-10-28 19:09:49.364717+00 2025-10-28 19:09:49.364728+00 f t 11750 \N \N f f +10757 2025-10-28 19:15:08.259196+00 2025-10-28 19:15:08.259211+00 f t 9680 \N \N f f +10758 2025-10-28 19:19:05.985987+00 2025-10-28 19:19:05.985996+00 f t 11751 \N \N f f +10759 2025-10-28 19:21:45.496465+00 2025-10-28 19:21:45.496475+00 f t 11752 \N \N f f +10733 2025-10-28 16:19:44.309868+00 2025-10-28 16:19:44.309879+00 f t 11728 \N 90 f f +10760 2025-10-28 19:24:47.555895+00 2025-10-28 19:24:47.555905+00 f t 9682 \N \N f f +10735 2025-10-28 16:23:27.766589+00 2025-10-28 16:23:27.766597+00 f t 9712 \N \N f f +10761 2025-10-28 19:29:57.543718+00 2025-10-28 19:29:57.543731+00 f t 11753 \N \N f f +10762 2025-10-28 19:32:38.740018+00 2025-10-28 19:32:38.740027+00 f t 11398 \N \N f f +10763 2025-10-28 19:36:17.603855+00 2025-10-28 19:36:17.603864+00 f t 11754 \N \N f f +10734 2025-10-28 16:24:50.858222+00 2025-10-28 16:24:50.858222+00 f t 11729 \N 90 f f +10764 2025-10-28 20:00:16.775273+00 2025-10-28 20:00:16.775284+00 f t 9991 \N \N f f +10737 2025-10-28 16:30:23.002902+00 2025-10-28 16:30:23.002902+00 f t 11731 \N \N f f +10765 2025-10-28 20:12:06.425303+00 2025-10-28 20:12:06.425316+00 f t 11756 \N \N f f +10736 2025-10-28 16:30:32.71176+00 2025-10-28 16:30:32.71176+00 f t 11730 \N 82 f f +10766 2025-10-28 20:15:58.904244+00 2025-10-28 20:15:58.904253+00 f t 11757 \N \N f f +10767 2025-10-28 20:19:27.447644+00 2025-10-28 20:19:27.447656+00 f t 11658 \N \N f f +10738 2025-10-28 16:37:17.242445+00 2025-10-28 16:37:17.242459+00 f t 11732 \N \N f f +10739 2025-10-28 16:57:00.789398+00 2025-10-28 16:57:00.789398+00 f t 11733 \N \N f f +10740 2025-10-28 17:02:44.94627+00 2025-10-28 17:02:44.946279+00 f t 11734 \N \N f f +10741 2025-10-28 17:10:44.656336+00 2025-10-28 17:10:44.656351+00 f t 11735 \N \N f f +10743 2025-10-28 17:25:23.504783+00 2025-10-28 17:25:23.504792+00 f t 11737 \N \N f f +10768 2025-10-28 20:21:11.585974+00 2025-10-28 20:21:11.585983+00 f t 11758 \N \N f f +10742 2025-10-28 17:27:58.321778+00 2025-10-28 17:27:58.321778+00 f t 11736 \N \N f f +10744 2025-10-28 17:40:43.725673+00 2025-10-28 17:40:43.725681+00 f t 11739 \N \N f f +10745 2025-10-28 17:45:15.968071+00 2025-10-28 17:45:15.96808+00 f t 11740 \N \N f f +10746 2025-10-28 17:47:25.608279+00 2025-10-28 17:47:25.608288+00 f t 11741 \N \N f f +10769 2025-10-28 20:21:41.405769+00 2025-10-28 20:21:41.405781+00 f t 11720 \N \N f f +10747 2025-10-28 17:51:14.561141+00 2025-10-28 17:51:14.561141+00 f t 11742 \N \N f f +10748 2025-10-28 17:52:06.194164+00 2025-10-28 17:52:06.194164+00 f t 11743 \N \N f f +10749 2025-10-28 17:53:45.136443+00 2025-10-28 17:53:45.136453+00 f t 11744 \N \N f f +10750 2025-10-28 17:56:56.322468+00 2025-10-28 17:56:56.322476+00 f t 1100 \N \N f f +10751 2025-10-28 17:58:06.134125+00 2025-10-28 17:58:06.134136+00 f t 11745 \N \N f f +10752 2025-10-28 18:04:09.915281+00 2025-10-28 18:04:09.915289+00 f t 11747 \N \N f f +10753 2025-10-28 18:15:40.277942+00 2025-10-28 18:15:40.277952+00 f t 11748 \N \N f f +10754 2025-10-28 18:40:02.992624+00 2025-10-28 18:40:02.992641+00 f t 11749 \N \N f f +10770 2025-10-28 20:45:55.856973+00 2025-10-28 20:45:55.856985+00 f t 11759 \N \N f f +10772 2025-10-28 20:51:25.591362+00 2025-10-28 20:51:25.591375+00 f t 11761 \N \N f f +10773 2025-10-28 20:52:29.117256+00 2025-10-28 20:52:29.117272+00 f t 11762 \N \N f f +10774 2025-10-28 20:55:58.290503+00 2025-10-28 20:55:58.290511+00 f t 541 \N \N f f +10775 2025-10-28 20:58:37.949111+00 2025-10-28 20:58:37.949121+00 f t 10707 \N \N f f +10776 2025-10-28 21:00:21.407257+00 2025-10-28 21:00:21.40727+00 f t 11763 \N \N f f +10777 2025-10-28 21:00:57.176475+00 2025-10-28 21:00:57.176485+00 f t 11764 \N \N f f +10778 2025-10-28 21:03:14.637845+00 2025-10-28 21:03:14.637854+00 f t 11765 \N \N f f +10779 2025-10-28 21:05:53.728167+00 2025-10-28 21:05:53.728176+00 f t 11766 \N \N f f +10780 2025-10-28 21:07:43.017312+00 2025-10-28 21:07:43.017322+00 f t 11767 \N \N f f +10781 2025-10-28 21:14:12.369518+00 2025-10-28 21:14:12.36953+00 f t 11768 \N \N f f +10782 2025-10-28 21:29:46.848999+00 2025-10-28 21:29:46.848999+00 f t 11769 \N \N f f +10791 2025-10-28 23:05:44.725966+00 2025-10-28 23:05:44.725979+00 f t 11777 \N \N f f +10783 2025-10-28 21:40:24.112194+00 2025-10-28 21:40:24.112206+00 f t 11770 \N \N f f +10784 2025-10-28 21:42:27.632305+00 2025-10-28 21:42:27.632318+00 f t 11771 \N \N f f +10771 2025-10-28 21:54:22.715439+00 2025-10-28 21:54:22.715439+00 f t 11760 \N \N f f +10785 2025-10-28 21:56:32.24991+00 2025-10-28 21:56:32.249919+00 f t 11772 \N \N f f +10786 2025-10-28 21:56:35.349017+00 2025-10-28 21:56:35.349029+00 f t 11772 \N \N f f +10787 2025-10-28 22:03:58.556464+00 2025-10-28 22:03:58.556474+00 f t 11773 \N \N f f +10792 2025-10-28 23:17:11.450266+00 2025-10-28 23:17:11.450275+00 f t 11778 \N \N f f +10793 2025-10-28 23:22:38.308204+00 2025-10-28 23:22:38.308213+00 f t 11779 \N \N f f +10794 2025-10-28 23:28:19.932466+00 2025-10-28 23:28:19.932479+00 f t 11780 \N \N f f +10795 2025-10-28 23:33:59.31101+00 2025-10-28 23:33:59.311018+00 f t 11782 \N \N f f +10796 2025-10-28 23:40:26.209062+00 2025-10-28 23:40:26.209062+00 f t 11783 \N \N f f +10798 2025-10-28 23:44:14.245977+00 2025-10-28 23:44:14.245986+00 f t 11425 \N \N f f +10797 2025-10-28 23:55:15.437201+00 2025-10-28 23:55:15.437201+00 f t 11784 \N \N f f +10800 2025-10-28 23:58:27.617544+00 2025-10-28 23:58:27.617554+00 f t 11786 \N \N f f +10732 2025-10-29 12:36:50.485342+00 2025-10-29 12:36:50.485342+00 f t 11459 \N 119 f f +10801 2025-10-28 23:59:51.854995+00 2025-10-28 23:59:51.855004+00 f t 11787 \N \N f f +10802 2025-10-29 00:00:12.385072+00 2025-10-29 00:00:12.385089+00 f t 11788 \N \N f f +10804 2025-10-29 00:08:02.481537+00 2025-10-29 00:08:02.481547+00 f t 11790 \N \N f f +10803 2025-10-29 00:08:10.984934+00 2025-10-29 00:08:10.984934+00 f t 11789 \N \N f f +10805 2025-10-29 00:09:57.747118+00 2025-10-29 00:09:57.747153+00 f t 11791 \N \N f f +10806 2025-10-29 00:16:35.755772+00 2025-10-29 00:16:35.755781+00 f t 11792 \N \N f f +10807 2025-10-29 00:56:32.055801+00 2025-10-29 00:56:32.055814+00 f t 11793 \N \N f f +10808 2025-10-29 01:15:53.606329+00 2025-10-29 01:15:53.606338+00 f t 11794 \N \N f f +10809 2025-10-29 01:26:29.185874+00 2025-10-29 01:26:29.185886+00 f t 11795 \N \N f f +10810 2025-10-29 01:26:33.52096+00 2025-10-29 01:26:33.520969+00 f t 11796 \N \N f f +10811 2025-10-29 01:35:27.29941+00 2025-10-29 01:35:27.299422+00 f t 11797 \N \N f f +10812 2025-10-29 01:45:21.976914+00 2025-10-29 01:45:21.976923+00 f t 11798 \N \N f f +10813 2025-10-29 01:48:21.977089+00 2025-10-29 01:48:21.977097+00 f t 11799 \N \N f f +10799 2025-10-29 02:07:41.04205+00 2025-10-29 02:07:41.04205+00 f t 11785 \N \N f f +10814 2025-10-29 02:25:29.380509+00 2025-10-29 02:25:29.380509+00 f t 11801 \N \N f f +10815 2025-10-29 02:40:27.440003+00 2025-10-29 02:40:27.440012+00 f t 11802 \N \N f f +10816 2025-10-29 02:51:44.82528+00 2025-10-29 02:51:44.825289+00 f t 11803 \N \N f f +10817 2025-10-29 03:02:03.327761+00 2025-10-29 03:02:03.327775+00 f t 11804 \N \N f f +10818 2025-10-29 03:25:15.973557+00 2025-10-29 03:25:15.973566+00 f t 11805 \N \N f f +10819 2025-10-29 03:59:40.691125+00 2025-10-29 03:59:40.691168+00 f t 11806 \N \N f f +10820 2025-10-29 04:01:46.971697+00 2025-10-29 04:01:46.971706+00 f t 11807 \N \N f f +10821 2025-10-29 04:36:47.889218+00 2025-10-29 04:36:47.88923+00 f t 11808 \N \N f f +10822 2025-10-29 04:44:40.271218+00 2025-10-29 04:44:40.271232+00 f t 11809 \N \N f f +10823 2025-10-29 05:01:39.535948+00 2025-10-29 05:01:39.535948+00 f t 11810 \N \N f f +10824 2025-10-29 06:41:13.904227+00 2025-10-29 06:41:13.904235+00 f t 11811 \N \N f f +10825 2025-10-29 10:33:52.672993+00 2025-10-29 10:33:52.673002+00 f t 11812 \N \N f f +10826 2025-10-29 10:35:52.03214+00 2025-10-29 10:35:52.032148+00 f t 11813 \N \N f f +10827 2025-10-29 10:53:28.927342+00 2025-10-29 10:53:28.927354+00 f t 11814 \N \N f f +10828 2025-10-29 11:22:07.770248+00 2025-10-29 11:22:07.770257+00 f t 11815 \N \N f f +10829 2025-10-29 11:55:32.812402+00 2025-10-29 11:55:32.812402+00 f t 11816 \N \N f f +10830 2025-10-29 12:00:13.641843+00 2025-10-29 12:00:13.641853+00 f t 11817 \N \N f f +10831 2025-10-29 12:00:31.088573+00 2025-10-29 12:00:31.088589+00 f t 11818 \N \N f f +10832 2025-10-29 12:32:53.754137+00 2025-10-29 12:32:53.754146+00 f t 11820 \N \N f f +10834 2025-10-29 12:37:09.566319+00 2025-10-29 12:37:09.566319+00 f t 11822 \N \N f f +10835 2025-10-29 12:44:22.694674+00 2025-10-29 12:44:22.694685+00 f t 11823 \N \N f f +10836 2025-10-29 12:55:00.46787+00 2025-10-29 12:55:00.46788+00 f t 11824 \N \N f f +10837 2025-10-29 12:59:38.343707+00 2025-10-29 12:59:38.343716+00 f t 10259 \N \N f f +10838 2025-10-29 13:05:26.623885+00 2025-10-29 13:05:26.623895+00 f t 10259 \N \N f f +10839 2025-10-29 13:09:21.997518+00 2025-10-29 13:09:21.997529+00 f t 11780 \N \N f f +10840 2025-10-29 13:22:47.645358+00 2025-10-29 13:22:47.645371+00 f t 11825 \N \N f f +10833 2025-10-29 13:28:43.773252+00 2025-10-29 13:28:43.773252+00 f t 11821 \N \N f f +10841 2025-10-29 13:35:40.847987+00 2025-10-29 13:35:40.847999+00 f t 11828 \N \N f f +10842 2025-10-29 13:51:39.873476+00 2025-10-29 13:51:39.873485+00 f t 11829 \N \N f f +10843 2025-10-29 14:04:27.169177+00 2025-10-29 14:04:27.169186+00 f t 11830 \N \N f f +10844 2025-10-29 14:07:37.098361+00 2025-10-29 14:07:37.098371+00 f t 11831 \N \N f f +10845 2025-10-29 14:11:17.434229+00 2025-10-29 14:11:17.434237+00 f t 11832 \N \N f f +10846 2025-10-29 14:17:53.446042+00 2025-10-29 14:17:53.446051+00 f t 47 \N \N f f +10848 2025-10-29 14:19:14.923654+00 2025-10-29 14:19:14.923664+00 f t 11834 \N \N f f +10849 2025-10-29 14:23:04.472431+00 2025-10-29 14:23:04.47244+00 f t 11835 \N \N f f +10850 2025-10-29 14:44:48.65006+00 2025-10-29 14:44:48.65006+00 f t 11836 \N \N f f +10847 2025-10-29 14:19:11.013138+00 2025-10-29 14:19:11.013148+00 f t 9655 \N \N f f +10851 2025-10-29 14:46:15.702915+00 2025-10-29 14:46:15.702923+00 f t 11838 \N \N f f +10852 2025-10-29 14:46:51.806908+00 2025-10-29 14:46:51.806917+00 f t 11839 \N \N f f +10853 2025-10-29 15:12:32.251904+00 2025-10-29 15:12:32.251913+00 f t 11841 \N \N f f +10854 2025-10-29 15:12:43.575543+00 2025-10-29 15:12:43.575552+00 f t 11840 \N \N f f +10855 2025-10-29 15:14:41.137448+00 2025-10-29 15:14:41.137456+00 f t 11745 \N \N f f +10856 2025-10-29 15:15:32.272811+00 2025-10-29 15:15:32.272819+00 f t 11842 \N \N f f +10857 2025-10-29 15:17:32.525626+00 2025-10-29 15:17:32.525635+00 f t 11843 \N \N f f +10858 2025-10-29 15:30:01.434232+00 2025-10-29 15:30:01.434248+00 f t 11844 \N \N f f +10859 2025-10-29 15:32:51.321986+00 2025-10-29 15:32:51.321998+00 f t 11845 \N \N f f +10860 2025-10-29 15:33:20.583026+00 2025-10-29 15:33:20.583034+00 f t 11846 \N \N f f +10861 2025-10-29 15:34:00.499342+00 2025-10-29 15:34:00.49935+00 f t 11847 \N \N f f +10863 2025-10-29 16:00:40.311056+00 2025-10-29 16:00:40.311064+00 f t 11849 \N \N f f +10862 2025-10-29 16:03:02.980908+00 2025-10-29 16:03:02.980908+00 f t 11848 \N \N f f +10864 2025-10-29 16:05:28.670915+00 2025-10-29 16:05:28.670923+00 f t 11818 \N \N f f +10865 2025-10-29 16:15:21.367849+00 2025-10-29 16:15:21.367861+00 f t 11850 \N \N f f +10866 2025-10-29 16:16:06.609183+00 2025-10-29 16:16:06.609194+00 f t 11852 \N \N f f +10867 2025-10-29 16:16:50.997406+00 2025-10-29 16:16:50.997416+00 f t 11851 \N \N f f +10868 2025-10-29 16:48:39.853762+00 2025-10-29 16:48:39.853773+00 f t 11853 \N \N f f +10869 2025-10-29 16:54:06.17688+00 2025-10-29 16:54:06.17689+00 f t 11854 \N \N f f +10870 2025-10-29 17:13:47.399548+00 2025-10-29 17:13:47.399556+00 f t 11855 \N \N f f +10871 2025-10-29 17:55:03.894272+00 2025-10-29 17:55:03.894287+00 f t 11856 \N \N f f +10872 2025-10-29 17:56:17.613186+00 2025-10-29 17:56:17.613195+00 f t 11857 \N \N f f +10873 2025-10-29 18:00:15.956804+00 2025-10-29 18:00:15.956819+00 f t 11858 \N \N f f +10874 2025-10-29 18:15:26.825576+00 2025-10-29 18:15:26.825584+00 f t 11860 \N \N f f +10875 2025-10-29 18:22:46.606981+00 2025-10-29 18:22:46.606991+00 f t 11861 \N \N f f +10876 2025-10-29 18:30:29.646239+00 2025-10-29 18:30:29.646252+00 f t 9769 \N \N f f +10877 2025-10-29 18:35:36.396132+00 2025-10-29 18:35:36.39614+00 f t 11862 \N \N f f +10878 2025-10-29 18:49:17.674572+00 2025-10-29 18:49:17.67458+00 f t 11863 \N \N f f +10879 2025-10-29 18:56:24.723583+00 2025-10-29 18:56:24.723592+00 f t 11864 \N \N f f +10880 2025-10-29 19:00:00.255516+00 2025-10-29 19:00:00.255516+00 f t 11865 \N \N f f +10881 2025-10-29 19:00:29.480097+00 2025-10-29 19:00:29.480106+00 f t 11866 \N \N f f +10882 2025-10-29 19:08:26.480347+00 2025-10-29 19:08:26.480357+00 f t 11867 \N \N f f +10883 2025-10-29 19:10:36.894072+00 2025-10-29 19:10:36.894081+00 f t 11868 \N \N f f +10884 2025-10-29 19:19:48.671722+00 2025-10-29 19:19:48.671732+00 f t 11869 \N \N f f +10885 2025-10-29 19:21:59.182076+00 2025-10-29 19:21:59.182087+00 f t 11870 \N \N f f +10886 2025-10-29 19:23:50.277735+00 2025-10-29 19:23:50.277743+00 f t 11871 \N \N f f +10887 2025-10-29 19:28:20.321639+00 2025-10-29 19:28:20.321647+00 f t 11872 \N \N f f +10888 2025-10-29 19:29:44.686285+00 2025-10-29 19:29:44.686295+00 f t 11873 \N \N f f +10889 2025-10-29 19:48:29.220747+00 2025-10-29 19:48:29.220755+00 f t 11874 \N \N f f +10890 2025-10-29 20:04:13.693058+00 2025-10-29 20:04:13.693066+00 f t 11875 \N \N f f +10892 2025-10-29 20:18:54.331671+00 2025-10-29 20:18:54.331681+00 f t 11877 \N \N f f +10893 2025-10-29 20:19:58.774837+00 2025-10-29 20:19:58.774845+00 f t 11878 \N \N f f +10891 2025-10-29 20:21:35.619438+00 2025-10-29 20:21:35.619438+00 f t 11876 \N \N f f +10894 2025-10-29 20:25:38.702021+00 2025-10-29 20:25:38.702028+00 f t 11879 \N \N f f +10895 2025-10-29 20:27:09.559418+00 2025-10-29 20:27:09.559418+00 f t 11825 \N \N f f +10896 2025-10-29 20:34:06.988474+00 2025-10-29 20:34:06.988483+00 f t 11880 \N \N f f +10897 2025-10-29 20:56:27.245697+00 2025-10-29 20:56:27.245706+00 f t 11881 \N \N f f +10898 2025-10-29 21:18:36.351746+00 2025-10-29 21:18:36.351754+00 f t 11882 \N \N f f +10899 2025-10-29 21:30:33.294085+00 2025-10-29 21:30:33.294094+00 f t 11883 \N \N f f +10900 2025-10-29 21:35:07.714933+00 2025-10-29 21:35:07.714946+00 f t 11884 \N \N f f +10901 2025-10-29 21:39:59.349492+00 2025-10-29 21:39:59.349501+00 f t 11886 \N \N f f +10902 2025-10-29 22:00:27.875963+00 2025-10-29 22:00:27.875971+00 f t 11887 \N \N f f +10903 2025-10-29 22:05:38.113451+00 2025-10-29 22:05:38.11346+00 f t 11888 \N \N f f +10904 2025-10-29 22:14:49.873147+00 2025-10-29 22:14:49.873154+00 f t 11889 \N \N f f +10905 2025-10-29 22:22:53.733527+00 2025-10-29 22:22:53.733535+00 f t 377 \N \N f f +10906 2025-10-29 22:34:28.761073+00 2025-10-29 22:34:28.761082+00 f t 11890 \N \N f f +10907 2025-10-29 22:43:35.860068+00 2025-10-29 22:43:35.860075+00 f t 11891 \N \N f f +10908 2025-10-29 22:44:04.951464+00 2025-10-29 22:44:04.951476+00 f t 11892 \N \N f f +10909 2025-10-29 22:57:25.271684+00 2025-10-29 22:57:25.271691+00 f t 11893 \N \N f f +10910 2025-10-29 22:57:40.277883+00 2025-10-29 22:57:40.277891+00 f t 11894 \N \N f f +10911 2025-10-29 22:57:52.397818+00 2025-10-29 22:57:52.397825+00 f t 11895 \N \N f f +10912 2025-10-29 23:00:57.729339+00 2025-10-29 23:00:57.729348+00 f t 11896 \N \N f f +10913 2025-10-29 23:14:06.807855+00 2025-10-29 23:14:06.807864+00 f t 11898 \N \N f f +10914 2025-10-29 23:18:10.157657+00 2025-10-29 23:18:10.157666+00 f t 11899 \N \N f f +10915 2025-10-29 23:19:41.757658+00 2025-10-29 23:19:41.757671+00 f t 11900 \N \N f f +10916 2025-10-29 23:22:39.218104+00 2025-10-29 23:22:39.218104+00 f t 11901 \N \N f f +10917 2025-10-29 23:47:40.031898+00 2025-10-29 23:47:40.031904+00 f t 11851 \N \N f f +10918 2025-10-30 00:15:10.07138+00 2025-10-30 00:15:10.071388+00 f t 11902 \N \N f f +10919 2025-10-30 00:15:13.850192+00 2025-10-30 00:15:13.850207+00 f t 11903 \N \N f f +10920 2025-10-30 00:22:58.425067+00 2025-10-30 00:22:58.425076+00 f t 11904 \N \N f f +10921 2025-10-30 00:23:36.540986+00 2025-10-30 00:23:36.540995+00 f t 11905 \N \N f f +10922 2025-10-30 00:23:56.77595+00 2025-10-30 00:23:56.775961+00 f t 11906 \N \N f f +10923 2025-10-30 00:26:55.476083+00 2025-10-30 00:26:55.476091+00 f t 11907 \N \N f f +10924 2025-10-30 00:33:30.220938+00 2025-10-30 00:33:30.220948+00 f t 11908 \N \N f f +10925 2025-10-30 00:35:07.96719+00 2025-10-30 00:35:07.967198+00 f t 11909 \N \N f f +10926 2025-10-30 00:44:06.92141+00 2025-10-30 00:44:06.921419+00 f t 11910 \N \N f f +10927 2025-10-30 00:55:39.741154+00 2025-10-30 00:55:39.741165+00 f t 11911 \N \N f f +10928 2025-10-30 01:16:12.867893+00 2025-10-30 01:16:12.867893+00 f t 11913 \N \N f f +10929 2025-10-30 01:25:53.252108+00 2025-10-30 01:25:53.252116+00 f t 11914 \N \N f f +10930 2025-10-30 01:28:29.148197+00 2025-10-30 01:28:29.148204+00 f t 11915 \N \N f f +10931 2025-10-30 01:46:32.967023+00 2025-10-30 01:46:32.967031+00 f t 11916 \N \N f f +10932 2025-10-30 01:50:48.587451+00 2025-10-30 01:50:48.587458+00 f t 11917 \N \N f f +10933 2025-10-30 01:55:03.243901+00 2025-10-30 01:55:03.243916+00 f t 11918 \N \N f f +10934 2025-10-30 01:57:51.295289+00 2025-10-30 01:57:51.295299+00 f t 11919 \N \N f f +10935 2025-10-30 02:03:07.995559+00 2025-10-30 02:03:07.995567+00 f t 11920 \N \N f f +10936 2025-10-30 02:09:55.209261+00 2025-10-30 02:09:55.209271+00 f t 11921 \N \N f f +10937 2025-10-30 02:32:16.480938+00 2025-10-30 02:32:16.480949+00 f t 11922 \N \N f f +10938 2025-10-30 02:32:29.13262+00 2025-10-30 02:32:29.132629+00 f t 11923 \N \N f f +10939 2025-10-30 02:43:10.761295+00 2025-10-30 02:43:10.761302+00 f t 11924 \N \N f f +10940 2025-10-30 02:46:29.534658+00 2025-10-30 02:46:29.534666+00 f t 11925 \N \N f f +10941 2025-10-30 02:58:25.329612+00 2025-10-30 02:58:25.329622+00 f t 11926 \N \N f f +10942 2025-10-30 03:07:14.446658+00 2025-10-30 03:07:14.446669+00 f t 11927 \N \N f f +10943 2025-10-30 03:09:22.064388+00 2025-10-30 03:09:22.064396+00 f t 11928 \N \N f f +10944 2025-10-30 03:16:03.898263+00 2025-10-30 03:16:03.898272+00 f t 11929 \N \N f f +10945 2025-10-30 03:16:53.558088+00 2025-10-30 03:16:53.558096+00 f t 11930 \N \N f f +10946 2025-10-30 03:20:34.662444+00 2025-10-30 03:20:34.662452+00 f t 11931 \N \N f f +10947 2025-10-30 03:31:33.055449+00 2025-10-30 03:31:33.055461+00 f t 11932 \N \N f f +10948 2025-10-30 03:44:03.042836+00 2025-10-30 03:44:03.042849+00 f t 11933 \N \N f f +10949 2025-10-30 03:57:16.363677+00 2025-10-30 03:57:16.363687+00 f t 11934 \N \N f f +10950 2025-10-30 04:09:56.349459+00 2025-10-30 04:09:56.349471+00 f t 11935 \N \N f f +10951 2025-10-30 06:04:24.466449+00 2025-10-30 06:04:24.466457+00 f t 11936 \N \N f f +10952 2025-10-30 06:22:00.026408+00 2025-10-30 06:22:00.02642+00 f t 11937 \N \N f f +10953 2025-10-30 08:28:34.552349+00 2025-10-30 08:28:34.552358+00 f t 11938 \N \N f f +10954 2025-10-30 09:16:32.773195+00 2025-10-30 09:16:32.773204+00 f t 11940 \N \N f f +10955 2025-10-30 09:27:51.590836+00 2025-10-30 09:27:51.590836+00 f t 11941 \N \N f f +10956 2025-10-30 10:03:27.423973+00 2025-10-30 10:03:27.423982+00 f t 11942 \N \N f f +10957 2025-10-30 10:52:50.978422+00 2025-10-30 10:52:50.978429+00 f t 11943 \N \N f f +10958 2025-10-30 11:16:09.312472+00 2025-10-30 11:16:09.312479+00 f t 11945 \N \N f f +10959 2025-10-30 11:58:39.364854+00 2025-10-30 11:58:39.364864+00 f t 11946 \N \N f f +10960 2025-10-30 12:30:50.434207+00 2025-10-30 12:30:50.434216+00 f t 11948 \N \N f f +10961 2025-10-30 12:35:57.496482+00 2025-10-30 12:35:57.49649+00 f t 11949 \N \N f f +10962 2025-10-30 12:38:25.971644+00 2025-10-30 12:38:25.971652+00 f t 11950 \N \N f f +10963 2025-10-30 12:49:43.098695+00 2025-10-30 12:49:43.098703+00 f t 11951 \N \N f f +10964 2025-10-30 13:01:12.558926+00 2025-10-30 13:01:12.558936+00 f t 11952 \N \N f f +10965 2025-10-30 13:25:52.087174+00 2025-10-30 13:25:52.087183+00 f t 11954 \N \N f f +10966 2025-10-30 13:29:40.446979+00 2025-10-30 13:29:40.446987+00 f t 11956 \N \N f f +10967 2025-10-30 13:32:47.281092+00 2025-10-30 13:32:47.281103+00 f t 11955 \N \N f f +10968 2025-10-30 13:38:08.134723+00 2025-10-30 13:38:08.134732+00 f t 11958 \N \N f f +10970 2025-10-30 13:42:20.723255+00 2025-10-30 13:42:20.723262+00 f t 11960 \N \N f f +10969 2025-10-30 13:43:59.838717+00 2025-10-30 13:43:59.838717+00 f t 11959 \N \N f f +10971 2025-10-30 14:09:14.920854+00 2025-10-30 14:09:14.920863+00 f t 11961 \N \N f f +10972 2025-10-30 14:25:11.688116+00 2025-10-30 14:25:11.688125+00 f t 11963 \N \N f f +10973 2025-10-30 14:25:28.401953+00 2025-10-30 14:25:28.401961+00 f t 11962 \N \N f f +10974 2025-10-30 14:29:38.441252+00 2025-10-30 14:29:38.441263+00 f t 11964 \N \N f f +10975 2025-10-30 14:35:39.083966+00 2025-10-30 14:35:39.083975+00 f t 11965 \N \N f f +10976 2025-10-30 14:38:38.740818+00 2025-10-30 14:38:38.740828+00 f t 11966 \N \N f f +10977 2025-10-30 14:45:41.496359+00 2025-10-30 14:45:41.496367+00 f t 11967 \N \N f f +10978 2025-10-30 15:14:57.408083+00 2025-10-30 15:14:57.408092+00 f t 11969 \N \N f f +10979 2025-10-30 15:17:26.214182+00 2025-10-30 15:17:26.21419+00 f t 11970 \N \N f f +10980 2025-10-30 15:20:45.958762+00 2025-10-30 15:20:45.95877+00 f t 11971 \N \N f f +10981 2025-10-30 15:50:49.613043+00 2025-10-30 15:50:49.613054+00 f t 11972 \N \N f f +10982 2025-10-30 16:00:55.53628+00 2025-10-30 16:00:55.536293+00 f t 11973 \N \N f f +10983 2025-10-30 16:05:12.503065+00 2025-10-30 16:05:12.503078+00 f t 11974 \N \N f f +10984 2025-10-30 16:05:39.864974+00 2025-10-30 16:05:39.864982+00 f t 11975 \N \N f f +10985 2025-10-30 16:13:05.231457+00 2025-10-30 16:13:05.231464+00 f t 11955 \N \N f f +10986 2025-10-30 16:36:10.216502+00 2025-10-30 16:36:10.216509+00 f t 9435 \N \N f f +10987 2025-10-30 16:41:09.917457+00 2025-10-30 16:41:09.917465+00 f t 11977 \N \N f f +10988 2025-10-30 16:50:49.638771+00 2025-10-30 16:50:49.638771+00 f t 11978 \N \N f f +10989 2025-10-30 16:57:12.699454+00 2025-10-30 16:57:12.699461+00 f t 11979 \N \N f f +10990 2025-10-30 17:13:07.687069+00 2025-10-30 17:13:07.687077+00 f t 11980 \N \N f f +10991 2025-10-30 17:24:34.884683+00 2025-10-30 17:24:34.884692+00 f t 11981 \N \N f f +10992 2025-10-30 17:28:11.040371+00 2025-10-30 17:28:11.04038+00 f t 11982 \N \N f f +10993 2025-10-30 17:35:58.64773+00 2025-10-30 17:35:58.647741+00 f t 11983 \N \N f f +10994 2025-10-30 17:44:41.63906+00 2025-10-30 17:44:41.639068+00 f t 11984 \N \N f f +10995 2025-10-30 18:11:42.466087+00 2025-10-30 18:11:42.466094+00 f t 11985 \N \N f f +10996 2025-10-30 18:19:21.784188+00 2025-10-30 18:19:21.784195+00 f t 11986 \N \N f f +10997 2025-10-30 19:18:10.512885+00 2025-10-30 19:18:10.512892+00 f t 11987 \N \N f f +10998 2025-10-30 19:18:16.188256+00 2025-10-30 19:18:16.188264+00 f t 11988 \N \N f f +10999 2025-10-30 19:33:57.306786+00 2025-10-30 19:33:57.306794+00 f t 11989 \N \N f f +11000 2025-10-30 19:36:53.397075+00 2025-10-30 19:36:53.397083+00 f t 11990 \N \N f f +11001 2025-10-30 19:50:57.258446+00 2025-10-30 19:50:57.258459+00 f t 11991 \N \N f f +11002 2025-10-30 20:01:39.27432+00 2025-10-30 20:01:39.27432+00 f t 11992 \N \N f f +11003 2025-10-30 20:02:24.897121+00 2025-10-30 20:02:24.897131+00 f t 11993 \N \N f f +11004 2025-10-30 20:07:01.813266+00 2025-10-30 20:07:01.813279+00 f t 11994 \N \N f f +11005 2025-10-30 20:07:23.82626+00 2025-10-30 20:07:23.826268+00 f t 11995 \N \N f f +11006 2025-10-30 20:08:25.599287+00 2025-10-30 20:08:25.599296+00 f t 11996 \N \N f f +11083 2025-10-31 15:33:48.869904+00 2025-10-31 15:33:48.869915+00 f t 12063 \N \N f f +11007 2025-10-30 20:18:42.853791+00 2025-10-30 20:18:42.853791+00 f t 11851 \N \N f f +11008 2025-10-30 20:24:22.403253+00 2025-10-30 20:24:22.403261+00 f t 11998 \N \N f f +11009 2025-10-30 20:25:12.589717+00 2025-10-30 20:25:12.589725+00 f t 11999 \N \N f f +11010 2025-10-30 20:46:39.311907+00 2025-10-30 20:46:39.311919+00 f t 12000 \N \N f f +11011 2025-10-30 20:56:18.14245+00 2025-10-30 20:56:18.142458+00 f t 12001 \N \N f f +11012 2025-10-30 21:24:23.551521+00 2025-10-30 21:24:23.55153+00 f t 12002 \N \N f f +11013 2025-10-30 21:25:56.446071+00 2025-10-30 21:25:56.446078+00 f t 2582 \N \N f f +11014 2025-10-30 21:51:37.691268+00 2025-10-30 21:51:37.691277+00 f t 12003 \N \N f f +11015 2025-10-30 22:19:47.010387+00 2025-10-30 22:19:47.010394+00 f t 12004 \N \N f f +11016 2025-10-30 22:26:53.397857+00 2025-10-30 22:26:53.397865+00 f t 12005 \N \N f f +11017 2025-10-30 22:53:42.482743+00 2025-10-30 22:53:42.482755+00 f t 11977 \N \N f f +11018 2025-10-30 23:09:43.449288+00 2025-10-30 23:09:43.449297+00 f t 12007 \N \N f f +11019 2025-10-30 23:29:03.404052+00 2025-10-30 23:29:03.404059+00 f t 12008 \N \N f f +11020 2025-10-30 23:30:53.117096+00 2025-10-30 23:30:53.117105+00 f t 9641 \N \N f f +11021 2025-10-30 23:34:52.476878+00 2025-10-30 23:34:52.476886+00 f t 9641 \N \N f f +11022 2025-10-30 23:41:38.192472+00 2025-10-30 23:41:38.192483+00 f t 9641 \N \N f f +11023 2025-10-30 23:42:02.932913+00 2025-10-30 23:42:02.932925+00 f t 12009 \N \N f f +11024 2025-10-30 23:43:13.164164+00 2025-10-30 23:43:13.164176+00 f t 9641 \N \N f f +11025 2025-10-30 23:46:48.998907+00 2025-10-30 23:46:48.998914+00 f t 12010 \N \N f f +11026 2025-10-30 23:49:16.668959+00 2025-10-30 23:49:16.668959+00 f t 12011 \N \N f f +11027 2025-10-30 23:49:42.711762+00 2025-10-30 23:49:42.71177+00 f t 12012 \N \N f f +11028 2025-10-30 23:53:48.783371+00 2025-10-30 23:53:48.783378+00 f t 12013 \N \N f f +11029 2025-10-31 00:11:37.344749+00 2025-10-31 00:11:37.344759+00 f t 12014 \N \N f f +11030 2025-10-31 00:49:20.946483+00 2025-10-31 00:49:20.946483+00 f t 12015 \N \N f f +11031 2025-10-31 01:25:48.105865+00 2025-10-31 01:25:48.105873+00 f t 12017 \N \N f f +11032 2025-10-31 01:34:48.085434+00 2025-10-31 01:34:48.085442+00 f t 12018 \N \N f f +11033 2025-10-31 01:56:11.739477+00 2025-10-31 01:56:11.739486+00 f t 12019 \N \N f f +11034 2025-10-31 02:15:15.195047+00 2025-10-31 02:15:15.195055+00 f t 12020 \N \N f f +11035 2025-10-31 02:17:33.43508+00 2025-10-31 02:17:33.435091+00 f t 12021 \N \N f f +11036 2025-10-31 02:19:40.441945+00 2025-10-31 02:19:40.441953+00 f t 12022 \N \N f f +11037 2025-10-31 02:24:50.20751+00 2025-10-31 02:24:50.207519+00 f t 12023 \N \N f f +11038 2025-10-31 02:30:20.179776+00 2025-10-31 02:30:20.179784+00 f t 12024 \N \N f f +11039 2025-10-31 02:32:38.595853+00 2025-10-31 02:32:38.59586+00 f t 12025 \N \N f f +11040 2025-10-31 02:36:02.7943+00 2025-10-31 02:36:02.794311+00 f t 12026 \N \N f f +11041 2025-10-31 02:36:51.324051+00 2025-10-31 02:36:51.324059+00 f t 12027 \N \N f f +11042 2025-10-31 02:37:57.370149+00 2025-10-31 02:37:57.370157+00 f t 12028 \N \N f f +11043 2025-10-31 02:39:59.175044+00 2025-10-31 02:39:59.175053+00 f t 12029 \N \N f f +11044 2025-10-31 02:43:58.804037+00 2025-10-31 02:43:58.804047+00 f t 12030 \N \N f f +11045 2025-10-31 02:51:36.953021+00 2025-10-31 02:51:36.953028+00 f t 12031 \N \N f f +11046 2025-10-31 02:53:59.43191+00 2025-10-31 02:53:59.431917+00 f t 12032 \N \N f f +11047 2025-10-31 03:31:41.274871+00 2025-10-31 03:31:41.274879+00 f t 12033 \N \N f f +11048 2025-10-31 04:12:15.580213+00 2025-10-31 04:12:15.580219+00 f t 12034 \N \N f f +11049 2025-10-31 08:08:36.003046+00 2025-10-31 08:08:36.003046+00 f t 12035 \N \N f f +11050 2025-10-31 09:24:38.705844+00 2025-10-31 09:24:38.705844+00 f t 12036 \N \N f f +11051 2025-10-31 09:44:17.408154+00 2025-10-31 09:44:17.408162+00 f t 12037 \N \N f f +11052 2025-10-31 10:36:56.293251+00 2025-10-31 10:36:56.293261+00 f t 12038 \N \N f f +11053 2025-10-31 10:44:48.461559+00 2025-10-31 10:44:48.461567+00 f t 12039 \N \N f f +11054 2025-10-31 11:01:31.064132+00 2025-10-31 11:01:31.06414+00 f t 12040 \N \N f f +11055 2025-10-31 11:36:57.20312+00 2025-10-31 11:36:57.203128+00 f t 12041 \N \N f f +11056 2025-10-31 11:38:00.470382+00 2025-10-31 11:38:00.470389+00 f t 12042 \N \N f f +11057 2025-10-31 11:41:29.94287+00 2025-10-31 11:41:29.942879+00 f t 12043 \N \N f f +11058 2025-10-31 11:59:55.134735+00 2025-10-31 11:59:55.134743+00 f t 12044 \N \N f f +11059 2025-10-31 12:14:56.062746+00 2025-10-31 12:14:56.062755+00 f t 12045 \N \N f f +11084 2025-10-31 15:41:15.204634+00 2025-10-31 15:41:15.204641+00 f t 12064 \N \N f f +11060 2025-10-31 12:21:13.198298+00 2025-10-31 12:21:13.198298+00 f t 12046 \N \N f f +11061 2025-10-31 12:21:37.113616+00 2025-10-31 12:21:37.113622+00 f t 12047 \N \N f f +11062 2025-10-31 12:22:29.507613+00 2025-10-31 12:22:29.507623+00 f t 12048 \N \N f f +11063 2025-10-31 12:31:07.25311+00 2025-10-31 12:31:07.253119+00 f t 9991 \N \N f f +11064 2025-10-31 13:06:37.007334+00 2025-10-31 13:06:37.007346+00 f t 10764 \N \N f f +11065 2025-10-31 13:37:30.282035+00 2025-10-31 13:37:30.282044+00 f t 12049 \N \N f f +11066 2025-10-31 13:43:20.877238+00 2025-10-31 13:43:20.877245+00 f t 12050 \N \N f f +11067 2025-10-31 13:48:20.630151+00 2025-10-31 13:48:20.630165+00 f t 12051 \N \N f f +11068 2025-10-31 14:08:41.78916+00 2025-10-31 14:08:41.789168+00 f t 12052 \N \N f f +11069 2025-10-31 14:12:04.963897+00 2025-10-31 14:12:04.963912+00 f t 12053 \N \N f f +11070 2025-10-31 14:13:01.530057+00 2025-10-31 14:13:01.530074+00 f t 12054 \N \N f f +11071 2025-10-31 14:14:41.157068+00 2025-10-31 14:14:41.157074+00 f t 8869 \N \N f f +11072 2025-10-31 14:17:33.376769+00 2025-10-31 14:17:33.376776+00 f t 11503 \N \N f f +11073 2025-10-31 14:26:50.73824+00 2025-10-31 14:26:50.738248+00 f t 12055 \N \N f f +11074 2025-10-31 14:43:56.129402+00 2025-10-31 14:43:56.12941+00 f t 12056 \N \N f f +11075 2025-10-31 14:51:43.067659+00 2025-10-31 14:51:43.067666+00 f t 11855 \N \N f f +11076 2025-10-31 14:53:47.826949+00 2025-10-31 14:53:47.826976+00 f t 11855 \N \N f f +11077 2025-10-31 14:54:00.410042+00 2025-10-31 14:54:00.410052+00 f t 12057 \N \N f f +11078 2025-10-31 14:55:29.081187+00 2025-10-31 14:55:29.081193+00 f t 12058 \N \N f f +11079 2025-10-31 15:09:55.688629+00 2025-10-31 15:09:55.688637+00 f t 12059 \N \N f f +11080 2025-10-31 15:13:47.968163+00 2025-10-31 15:13:47.968174+00 f t 12060 \N \N f f +11081 2025-10-31 15:19:07.672798+00 2025-10-31 15:19:07.672809+00 f t 12061 \N \N f f +11082 2025-10-31 15:24:03.730183+00 2025-10-31 15:24:03.73019+00 f t 12062 \N \N f f +11085 2025-10-31 16:00:56.697301+00 2025-10-31 16:00:56.69731+00 f t 12065 \N \N f f +11086 2025-10-31 16:22:31.888338+00 2025-10-31 16:22:31.888346+00 f t 10870 \N \N f f +11087 2025-10-31 16:43:29.589065+00 2025-10-31 16:43:29.589072+00 f t 12066 \N \N f f +11088 2025-10-31 16:58:57.580325+00 2025-10-31 16:58:57.580335+00 f t 12067 \N \N f f +11089 2025-10-31 17:02:17.96403+00 2025-10-31 17:02:17.964037+00 f t 12068 \N \N f f +11090 2025-10-31 17:03:51.478865+00 2025-10-31 17:03:51.478873+00 f t 12069 \N \N f f +11091 2025-10-31 17:04:40.262345+00 2025-10-31 17:04:40.26236+00 f t 12070 \N \N f f +11092 2025-10-31 17:05:21.669173+00 2025-10-31 17:05:21.669185+00 f t 12071 \N \N f f +11093 2025-10-31 17:06:03.714776+00 2025-10-31 17:06:03.714788+00 f t 12072 \N \N f f +11094 2025-10-31 17:12:33.828497+00 2025-10-31 17:12:33.828497+00 f t 12073 \N \N f f +11095 2025-10-31 17:13:48.269355+00 2025-10-31 17:13:48.269362+00 f t 3002 \N \N f f +11096 2025-10-31 17:16:31.022459+00 2025-10-31 17:16:31.022466+00 f t 9641 \N \N f f +11097 2025-10-31 17:21:39.773253+00 2025-10-31 17:21:39.773263+00 f t 12076 \N \N f f +11098 2025-10-31 17:25:01.161605+00 2025-10-31 17:25:01.161605+00 f t 12077 \N \N f f +11099 2025-10-31 18:09:45.733485+00 2025-10-31 18:09:45.733495+00 f t 12078 \N \N f f +11100 2025-10-31 18:15:50.480899+00 2025-10-31 18:15:50.480906+00 f t 12079 \N \N f f +11101 2025-10-31 18:47:13.816612+00 2025-10-31 18:47:13.816619+00 f t 12080 \N \N f f +11102 2025-10-31 19:05:06.386393+00 2025-10-31 19:05:06.386404+00 f t 12081 \N \N f f +11103 2025-10-31 19:39:52.637617+00 2025-10-31 19:39:52.637625+00 f t 12082 \N \N f f +11104 2025-10-31 20:02:29.528356+00 2025-10-31 20:02:29.528356+00 f t 12083 \N \N f f +11105 2025-10-31 20:08:24.108199+00 2025-10-31 20:08:24.108208+00 f t 12084 \N \N f f +11106 2025-10-31 20:21:15.72448+00 2025-10-31 20:21:15.72449+00 f t 12085 \N \N f f +11107 2025-10-31 20:23:51.293197+00 2025-10-31 20:23:51.293206+00 f t 12086 \N \N f f +11108 2025-10-31 20:32:54.91528+00 2025-10-31 20:32:54.915292+00 f t 12087 \N \N f f +11109 2025-10-31 21:25:56.578688+00 2025-10-31 21:25:56.578697+00 f t 12088 \N \N f f +11110 2025-10-31 21:44:08.430903+00 2025-10-31 21:44:08.430911+00 f t 12089 \N \N f f +11111 2025-10-31 21:44:43.132015+00 2025-10-31 21:44:43.132025+00 f t 12090 \N \N f f +11112 2025-10-31 21:45:41.852715+00 2025-10-31 21:45:41.852722+00 f t 12091 \N \N f f +11113 2025-10-31 21:46:34.280793+00 2025-10-31 21:46:34.280802+00 f t 12093 \N \N f f +11114 2025-10-31 21:51:11.51347+00 2025-10-31 21:51:11.513478+00 f t 12095 \N \N f f +11115 2025-10-31 21:54:34.275192+00 2025-10-31 21:54:34.2752+00 f t 12093 \N \N f f +11116 2025-10-31 22:19:58.230569+00 2025-10-31 22:19:58.230577+00 f t 12096 \N \N f f +11117 2025-10-31 22:28:54.355983+00 2025-10-31 22:28:54.355994+00 f t 12098 \N \N f f +11118 2025-10-31 22:37:47.798385+00 2025-10-31 22:37:47.798392+00 f t 12099 \N \N f f +11119 2025-10-31 22:43:24.486751+00 2025-10-31 22:43:24.486759+00 f t 12101 \N \N f f +11120 2025-10-31 22:46:58.565971+00 2025-10-31 22:46:58.565979+00 f t 11302 \N \N f f +11121 2025-10-31 22:48:50.723184+00 2025-10-31 22:48:50.723193+00 f t 12102 \N \N f f +11122 2025-10-31 22:53:16.070465+00 2025-10-31 22:53:16.070474+00 f t 12103 \N \N f f +11123 2025-10-31 22:54:55.770643+00 2025-10-31 22:54:55.770651+00 f t 12104 \N \N f f +11124 2025-10-31 23:01:41.655077+00 2025-10-31 23:01:41.655085+00 f t 12105 \N \N f f +11125 2025-10-31 23:03:37.134368+00 2025-10-31 23:03:37.134378+00 f t 12106 \N \N f f +11126 2025-10-31 23:13:04.325225+00 2025-10-31 23:13:04.325234+00 f t 12108 \N \N f f +11127 2025-10-31 23:15:47.617515+00 2025-10-31 23:15:47.617522+00 f t 12109 \N \N f f +11128 2025-10-31 23:17:58.467541+00 2025-10-31 23:17:58.467541+00 f t 12110 \N \N f f +11129 2025-10-31 23:29:39.273948+00 2025-10-31 23:29:39.273956+00 f t 12111 \N \N f f +11130 2025-10-31 23:33:11.094393+00 2025-10-31 23:33:11.094406+00 f t 12112 \N \N f f +11131 2025-10-31 23:36:17.613937+00 2025-10-31 23:36:17.613949+00 f t 12113 \N \N f f +11132 2025-10-31 23:53:31.129911+00 2025-10-31 23:53:31.12992+00 f t 12114 \N \N f f +11133 2025-11-01 00:17:31.074047+00 2025-11-01 00:17:31.074057+00 f t 12115 \N \N f f +11134 2025-11-01 00:19:06.707234+00 2025-11-01 00:19:06.707243+00 f t 12116 \N \N f f +11135 2025-11-01 00:19:27.487988+00 2025-11-01 00:19:27.487996+00 f t 12117 \N \N f f +11136 2025-11-01 00:21:42.716971+00 2025-11-01 00:21:42.716979+00 f t 12118 \N \N f f +11137 2025-11-01 00:25:53.867612+00 2025-11-01 00:25:53.86762+00 f t 12119 \N \N f f +11138 2025-11-01 00:35:58.035935+00 2025-11-01 00:35:58.035943+00 f t 12120 \N \N f f +11140 2025-11-01 00:54:16.01242+00 2025-11-01 00:54:16.012428+00 f t 12122 \N \N f f +11141 2025-11-01 01:10:04.668399+00 2025-11-01 01:10:04.668413+00 f t 12123 \N \N f f +11142 2025-11-01 01:27:14.483887+00 2025-11-01 01:27:14.483898+00 f t 12124 \N \N f f +11143 2025-11-01 01:34:17.791725+00 2025-11-01 01:34:17.791737+00 f t 12125 \N \N f f +11144 2025-11-01 01:37:37.576031+00 2025-11-01 01:37:37.576039+00 f t 12126 \N \N f f +11145 2025-11-01 01:44:18.282597+00 2025-11-01 01:44:18.282605+00 f t 12127 \N \N f f +11146 2025-11-01 01:46:33.108467+00 2025-11-01 01:46:33.108476+00 f t 12128 \N \N f f +11139 2025-11-01 01:52:14.921113+00 2025-11-01 01:52:14.921113+00 f t 12121 \N \N f f +11148 2025-11-01 02:05:40.212875+00 2025-11-01 02:05:40.212883+00 f t 12131 \N \N f f +11149 2025-11-01 02:12:33.432902+00 2025-11-01 02:12:33.43291+00 f t 12132 \N \N f f +11150 2025-11-01 02:14:44.37174+00 2025-11-01 02:14:44.37175+00 f t 12133 \N \N f f +11151 2025-11-01 02:16:02.403389+00 2025-11-01 02:16:02.403403+00 f t 12134 \N \N f f +11152 2025-11-01 02:18:47.709781+00 2025-11-01 02:18:47.709788+00 f t 12135 \N \N f f +11153 2025-11-01 02:31:14.513505+00 2025-11-01 02:31:14.513514+00 f t 12136 \N \N f f +11154 2025-11-01 04:20:49.734129+00 2025-11-01 04:20:49.734136+00 f t 12137 \N \N f f +11155 2025-11-01 05:34:27.988264+00 2025-11-01 05:34:27.988264+00 f t 12138 \N \N f f +11156 2025-11-01 05:54:35.910144+00 2025-11-01 05:54:35.91015+00 f t 12139 \N \N f f +11157 2025-11-01 07:37:20.268167+00 2025-11-01 07:37:20.268176+00 f t 12140 \N \N f f +11158 2025-11-01 07:49:24.906406+00 2025-11-01 07:49:24.906414+00 f t 12141 \N \N f f +11159 2025-11-01 07:50:13.533885+00 2025-11-01 07:50:13.533892+00 f t 12142 \N \N f f +11160 2025-11-01 07:50:53.864601+00 2025-11-01 07:50:53.864609+00 f t 12143 \N \N f f +11161 2025-11-01 09:02:46.228498+00 2025-11-01 09:02:46.228504+00 f t 12144 \N \N f f +11162 2025-11-01 09:24:37.090519+00 2025-11-01 09:24:37.090526+00 f t 12145 \N \N f f +11163 2025-11-01 10:30:31.588711+00 2025-11-01 10:30:31.588718+00 f t 12146 \N \N f f +11164 2025-11-01 10:45:19.822485+00 2025-11-01 10:45:19.822495+00 f t 12147 \N \N f f +11165 2025-11-01 11:16:11.673824+00 2025-11-01 11:16:11.673831+00 f t 12148 \N \N f f +11166 2025-11-01 11:21:57.382291+00 2025-11-01 11:21:57.3823+00 f t 12149 \N \N f f +11167 2025-11-01 11:35:41.047611+00 2025-11-01 11:35:41.047621+00 f t 12150 \N \N f f +11168 2025-11-01 11:44:53.005577+00 2025-11-01 11:44:53.005588+00 f t 12151 \N \N f f +11169 2025-11-01 11:53:04.454102+00 2025-11-01 11:53:04.454102+00 f t 12152 \N \N f f +11170 2025-11-01 12:16:31.185094+00 2025-11-01 12:16:31.185103+00 f t 12153 \N \N f f +11171 2025-11-01 12:42:48.79994+00 2025-11-01 12:42:48.799953+00 f t 11855 \N \N f f +11147 2025-11-01 12:50:51.284744+00 2025-11-01 12:50:51.284744+00 f t 12121 \N \N f f +11172 2025-11-01 12:57:22.37687+00 2025-11-01 12:57:22.376877+00 f t 12154 \N \N f f +11174 2025-11-01 13:00:35.587769+00 2025-11-01 13:00:35.587781+00 f t 12156 \N \N f f +11173 2025-11-01 13:02:51.201087+00 2025-11-01 13:02:51.201087+00 f t 12155 \N \N f f +11175 2025-11-01 13:05:24.198359+00 2025-11-01 13:05:24.198366+00 f t 5249 \N \N f f +11176 2025-11-01 13:17:48.937399+00 2025-11-01 13:17:48.937406+00 f t 12158 \N \N f f +11177 2025-11-01 13:23:16.667193+00 2025-11-01 13:23:16.667201+00 f t 12159 \N \N f f +11178 2025-11-01 13:31:13.476495+00 2025-11-01 13:31:13.476503+00 f t 12160 \N \N f f +11179 2025-11-01 13:44:28.818048+00 2025-11-01 13:44:28.818057+00 f t 12161 \N \N f f +11180 2025-11-01 13:52:54.721899+00 2025-11-01 13:52:54.721911+00 f t 12163 \N \N f f +11181 2025-11-01 13:54:53.216646+00 2025-11-01 13:54:53.216655+00 f t 12164 \N \N f f +11182 2025-11-01 13:59:45.113667+00 2025-11-01 13:59:45.113675+00 f t 12165 \N \N f f +11183 2025-11-01 14:09:23.835206+00 2025-11-01 14:09:23.835215+00 f t 12166 \N \N f f +11184 2025-11-01 14:20:45.017411+00 2025-11-01 14:20:45.017419+00 f t 12167 \N \N f f +11185 2025-11-01 14:24:08.52648+00 2025-11-01 14:24:08.526488+00 f t 12168 \N \N f f +11186 2025-11-01 14:26:11.304599+00 2025-11-01 14:26:11.304608+00 f t 12169 \N \N f f +11187 2025-11-01 14:30:01.378002+00 2025-11-01 14:30:01.378014+00 f t 12170 \N \N f f +11188 2025-11-01 14:37:02.189929+00 2025-11-01 14:37:02.189943+00 f t 12171 \N \N f f +11189 2025-11-01 14:48:59.376344+00 2025-11-01 14:48:59.376353+00 f t 12172 \N \N f f +11190 2025-11-01 14:54:19.057314+00 2025-11-01 14:54:19.057326+00 f t 12173 \N \N f f +11191 2025-11-01 15:03:01.714387+00 2025-11-01 15:03:01.714395+00 f t 12174 \N \N f f +11192 2025-11-01 15:04:40.327156+00 2025-11-01 15:04:40.327166+00 f t 12175 \N \N f f +11193 2025-11-01 15:25:23.67324+00 2025-11-01 15:25:23.673248+00 f t 12178 \N \N f f +11194 2025-11-01 15:30:43.815037+00 2025-11-01 15:30:43.815046+00 f t 12179 \N 68 f f +11195 2025-11-01 15:44:21.845238+00 2025-11-01 15:44:21.845245+00 f t 10870 \N \N f f +11196 2025-11-01 15:45:08.151535+00 2025-11-01 15:45:08.151543+00 f t 12180 \N \N f f +11197 2025-11-01 16:00:08.882712+00 2025-11-01 16:00:08.882726+00 f t 12181 \N \N f f +11198 2025-11-01 16:00:23.087374+00 2025-11-01 16:00:23.087382+00 f t 12182 \N \N f f +11199 2025-11-01 16:08:00.346061+00 2025-11-01 16:08:00.34607+00 f t 12183 \N \N f f +11200 2025-11-01 16:21:25.158433+00 2025-11-01 16:21:25.15848+00 f t 12184 \N \N f f +11201 2025-11-01 16:21:51.532362+00 2025-11-01 16:21:51.532372+00 f t 2211 \N \N f f +11202 2025-11-01 16:29:14.343665+00 2025-11-01 16:29:14.343678+00 f t 12185 \N \N f f +11204 2025-11-01 16:42:26.189646+00 2025-11-01 16:42:26.189657+00 f t 12187 \N \N f f +11203 2025-11-01 16:44:26.983099+00 2025-11-01 16:44:26.983099+00 f t 12186 \N \N f f +11205 2025-11-01 16:45:53.590985+00 2025-11-01 16:45:53.590992+00 f t 9769 \N \N f f +11206 2025-11-01 16:55:30.646248+00 2025-11-01 16:55:30.646256+00 f t 274 \N \N f f +11207 2025-11-01 17:30:34.265797+00 2025-11-01 17:30:34.265805+00 f t 12189 \N \N f f +11208 2025-11-01 17:41:38.662576+00 2025-11-01 17:41:38.662583+00 f t 12190 \N \N f f +11209 2025-11-01 18:12:47.417064+00 2025-11-01 18:12:47.417074+00 f t 12093 \N \N f f +11210 2025-11-01 18:28:06.469709+00 2025-11-01 18:28:06.469709+00 f t 12191 \N \N f f +11211 2025-11-01 18:32:38.916681+00 2025-11-01 18:32:38.916688+00 f t 12192 \N \N f f +11212 2025-11-01 18:49:57.333854+00 2025-11-01 18:49:57.333868+00 f t 12193 \N \N f f +11213 2025-11-01 19:02:49.819081+00 2025-11-01 19:02:49.819089+00 f t 12194 \N \N f f +11214 2025-11-01 19:19:44.234467+00 2025-11-01 19:19:44.234475+00 f t 12196 \N \N f f +11215 2025-11-01 19:39:44.485928+00 2025-11-01 19:39:44.485938+00 f t 12197 \N \N f f +11216 2025-11-01 19:41:31.813548+00 2025-11-01 19:41:31.813566+00 f t 12198 \N \N f f +11217 2025-11-01 19:50:41.433813+00 2025-11-01 19:50:41.433821+00 f t 11851 \N \N f f +11218 2025-11-01 19:56:51.269493+00 2025-11-01 19:56:51.269493+00 f t 12199 \N \N f f +11219 2025-11-01 19:58:34.157888+00 2025-11-01 19:58:34.157902+00 f t 12200 \N \N f f +11220 2025-11-01 20:31:14.089509+00 2025-11-01 20:31:14.089518+00 f t 12201 \N \N f f +11221 2025-11-01 20:31:37.340864+00 2025-11-01 20:31:37.340875+00 f t 12202 \N \N f f +11222 2025-11-01 20:31:59.124308+00 2025-11-01 20:31:59.124315+00 f t 12203 \N \N f f +11223 2025-11-01 20:37:37.219447+00 2025-11-01 20:37:37.219455+00 f t 12204 \N \N f f +11224 2025-11-01 20:39:13.982394+00 2025-11-01 20:39:13.982401+00 f t 12205 \N \N f f +11225 2025-11-01 20:56:42.104288+00 2025-11-01 20:56:42.104295+00 f t 12206 \N \N f f +11226 2025-11-01 21:06:33.82498+00 2025-11-01 21:06:33.824987+00 f t 12207 \N \N f f +11227 2025-11-01 21:29:04.872154+00 2025-11-01 21:29:04.872162+00 f t 12208 \N \N f f +11228 2025-11-01 21:33:48.596929+00 2025-11-01 21:33:48.596945+00 f t 12209 \N \N f f +11229 2025-11-01 21:36:25.134342+00 2025-11-01 21:36:25.134358+00 f t 12210 \N \N f f +11230 2025-11-01 22:00:30.084628+00 2025-11-01 22:00:30.084637+00 f t 12212 \N \N f f +11231 2025-11-01 22:20:10.61487+00 2025-11-01 22:20:10.614882+00 f t 12213 \N \N f f +11232 2025-11-01 23:07:52.987701+00 2025-11-01 23:07:52.987709+00 f t 3002 \N \N f f +11233 2025-11-01 23:15:03.915784+00 2025-11-01 23:15:03.915801+00 f t 12215 \N \N f f +11234 2025-11-02 00:17:22.090556+00 2025-11-02 00:17:22.090556+00 f t 12216 \N \N f f +11235 2025-11-02 00:20:58.722583+00 2025-11-02 00:20:58.722591+00 f t 12217 \N \N f f +11236 2025-11-02 10:29:08.641357+00 2025-11-02 10:29:08.641365+00 f t 12218 \N \N f f +11237 2025-11-02 11:13:31.767113+00 2025-11-02 11:13:31.767124+00 f t 12219 \N \N f f +11238 2025-11-02 11:57:13.197952+00 2025-11-02 11:57:13.197959+00 f t 12220 \N \N f f +11239 2025-11-02 12:31:13.099665+00 2025-11-02 12:31:13.099672+00 f t 12221 \N \N f f +11240 2025-11-02 12:55:36.967067+00 2025-11-02 12:55:36.96708+00 f t 12222 \N \N f f +11241 2025-11-02 13:00:22.388649+00 2025-11-02 13:00:22.388658+00 f t 12223 \N \N f f +11242 2025-11-02 14:02:04.577883+00 2025-11-02 14:02:04.577892+00 f t 12224 \N \N f f +11243 2025-11-02 14:03:01.912635+00 2025-11-02 14:03:01.912649+00 f t 12225 \N \N f f +11244 2025-11-02 16:23:10.028252+00 2025-11-02 16:23:10.028262+00 f t 12226 \N \N f f +11245 2025-11-02 17:39:01.574692+00 2025-11-02 17:39:01.574705+00 f t 12227 \N \N f f +11246 2025-11-02 17:46:06.259953+00 2025-11-02 17:46:06.259967+00 f t 12228 \N \N f f +11247 2025-11-02 17:46:47.690684+00 2025-11-02 17:46:47.690692+00 f t 12229 \N \N f f +13136 2025-11-21 17:48:56.325935+00 2025-11-21 17:48:56.325943+00 f t 14070 \N \N f f +11278 2025-11-03 14:35:42.621048+00 2025-11-03 14:35:42.621057+00 f t 7529 \N \N f f +11248 2025-11-02 17:50:19.666433+00 2025-11-02 17:50:19.666433+00 f t 6688 \N \N f f +11249 2025-11-02 18:03:55.506559+00 2025-11-02 18:03:55.50657+00 f t 12232 \N \N f f +11250 2025-11-02 18:05:07.596022+00 2025-11-02 18:05:07.596031+00 f t 12233 \N \N f f +11251 2025-11-02 18:12:36.992365+00 2025-11-02 18:12:36.992373+00 f t 12234 \N \N f f +11252 2025-11-02 18:17:46.901061+00 2025-11-02 18:17:46.90107+00 f t 12235 \N \N f f +11253 2025-11-02 18:54:47.241959+00 2025-11-02 18:54:47.241969+00 f t 12236 \N \N f f +11254 2025-11-02 18:54:48.479249+00 2025-11-02 18:54:48.47926+00 f t 12236 \N \N f f +11255 2025-11-02 19:44:26.510602+00 2025-11-02 19:44:26.510609+00 f t 12237 \N \N f f +11256 2025-11-02 19:44:29.29062+00 2025-11-02 19:44:29.290628+00 f t 3002 \N \N f f +11257 2025-11-02 21:06:51.961473+00 2025-11-02 21:06:51.961481+00 f t 12239 \N \N f f +11258 2025-11-02 22:37:50.762915+00 2025-11-02 22:37:50.762926+00 f t 12240 \N \N f f +11259 2025-11-02 22:51:05.427488+00 2025-11-02 22:51:05.427501+00 f t 12241 \N \N f f +11260 2025-11-02 23:44:39.610731+00 2025-11-02 23:44:39.61074+00 f t 12242 \N \N f f +11261 2025-11-02 23:47:37.091214+00 2025-11-02 23:47:37.091226+00 f t 12243 \N \N f f +11262 2025-11-03 01:34:09.264993+00 2025-11-03 01:34:09.265006+00 f t 12244 \N \N f f +11263 2025-11-03 03:08:14.259031+00 2025-11-03 03:08:14.25904+00 f t 12245 \N \N f f +11264 2025-11-03 09:48:54.344645+00 2025-11-03 09:48:54.344662+00 f t 12246 \N \N f f +11265 2025-11-03 09:56:20.202909+00 2025-11-03 09:56:20.202916+00 f t 12247 \N \N f f +11266 2025-11-03 10:09:21.7575+00 2025-11-03 10:09:21.757509+00 f t 12248 \N \N f f +11267 2025-11-03 12:45:45.83568+00 2025-11-03 12:45:45.835688+00 f t 12250 \N \N f f +11268 2025-11-03 12:52:09.464931+00 2025-11-03 12:52:09.464942+00 f t 11955 \N \N f f +11269 2025-11-03 12:52:13.685754+00 2025-11-03 12:52:13.685762+00 f t 11955 \N \N f f +11270 2025-11-03 13:00:41.426669+00 2025-11-03 13:00:41.426682+00 f t 12251 \N 5 f f +11271 2025-11-03 13:53:38.870479+00 2025-11-03 13:53:38.870486+00 f t 12252 \N \N f f +11272 2025-11-03 13:59:32.617507+00 2025-11-03 13:59:32.617514+00 f t 6885 \N \N f f +11273 2025-11-03 14:03:41.465361+00 2025-11-03 14:03:41.465369+00 f t 12253 \N \N f f +11274 2025-11-03 14:03:42.303369+00 2025-11-03 14:03:42.303377+00 f t 10559 \N \N f f +11275 2025-11-03 14:06:34.236154+00 2025-11-03 14:06:34.236163+00 f t 12254 \N \N f f +11276 2025-11-03 14:15:37.528291+00 2025-11-03 14:15:37.528299+00 f t 12255 \N \N f f +11277 2025-11-03 14:29:31.58034+00 2025-11-03 14:29:31.580348+00 f t 11851 \N \N f f +11279 2025-11-03 14:45:31.305819+00 2025-11-03 14:45:31.30583+00 f t 12256 \N \N f f +11280 2025-11-03 14:50:48.363128+00 2025-11-03 14:50:48.363157+00 f t 12257 \N \N f f +11281 2025-11-03 14:57:49.896646+00 2025-11-03 14:57:49.896655+00 f t 12258 \N \N f f +11282 2025-11-03 15:01:38.414136+00 2025-11-03 15:01:38.414143+00 f t 12259 \N \N f f +11283 2025-11-03 15:13:23.312666+00 2025-11-03 15:13:23.312675+00 f t 12260 \N \N f f +11284 2025-11-03 15:28:21.735555+00 2025-11-03 15:28:21.735564+00 f t 12261 \N \N f f +11285 2025-11-03 15:30:53.07141+00 2025-11-03 15:30:53.071419+00 f t 12262 \N \N f f +11286 2025-11-03 15:35:45.909493+00 2025-11-03 15:35:45.909505+00 f t 12263 \N \N f f +11287 2025-11-03 15:38:47.206166+00 2025-11-03 15:38:47.206174+00 f t 12264 \N \N f f +11288 2025-11-03 15:42:16.162312+00 2025-11-03 15:42:16.162321+00 f t 12265 \N \N f f +11289 2025-11-03 15:43:54.897834+00 2025-11-03 15:43:54.897844+00 f t 12266 \N \N f f +11290 2025-11-03 15:50:37.09635+00 2025-11-03 15:50:37.096358+00 f t 12267 \N \N f f +11291 2025-11-03 16:05:48.148132+00 2025-11-03 16:05:48.148132+00 f t 12268 \N \N f f +11292 2025-11-03 16:06:23.664131+00 2025-11-03 16:06:23.664141+00 f t 12269 \N \N f f +11293 2025-11-03 16:12:31.944818+00 2025-11-03 16:12:31.944835+00 f t 12270 \N \N f f +11294 2025-11-03 16:29:15.403289+00 2025-11-03 16:29:15.403296+00 f t 12271 \N \N f f +11295 2025-11-03 16:44:22.810476+00 2025-11-03 16:44:22.810485+00 f t 12272 \N \N f f +11296 2025-11-03 16:44:46.255249+00 2025-11-03 16:44:46.255258+00 f t 12273 \N \N f f +11297 2025-11-03 16:46:29.8078+00 2025-11-03 16:46:29.807811+00 f t 12172 \N \N f f +11298 2025-11-03 16:52:00.187814+00 2025-11-03 16:52:00.187822+00 f t 12275 \N \N f f +11299 2025-11-03 16:55:28.463106+00 2025-11-03 16:55:28.463115+00 f t 12276 \N \N f f +11300 2025-11-03 17:07:57.159945+00 2025-11-03 17:07:57.159954+00 f t 12277 \N \N f f +11301 2025-11-03 17:23:24.029419+00 2025-11-03 17:23:24.029427+00 f t 12278 \N \N f f +11302 2025-11-03 17:24:13.103844+00 2025-11-03 17:24:13.103852+00 f t 12279 \N \N f f +11303 2025-11-03 17:29:25.198124+00 2025-11-03 17:29:25.198133+00 f t 12280 \N \N f f +11304 2025-11-03 17:45:09.822603+00 2025-11-03 17:45:09.822615+00 f t 12281 \N \N f f +11305 2025-11-03 17:49:39.503659+00 2025-11-03 17:49:39.503667+00 f t 12282 \N \N f f +11306 2025-11-03 18:00:03.456951+00 2025-11-03 18:00:03.456965+00 f t 12285 \N \N f f +11307 2025-11-03 18:04:12.11889+00 2025-11-03 18:04:12.118897+00 f t 12286 \N \N f f +11308 2025-11-03 18:07:34.860286+00 2025-11-03 18:07:34.860295+00 f t 12288 \N \N f f +11309 2025-11-03 18:07:35.383318+00 2025-11-03 18:07:35.383325+00 f t 12287 \N \N f f +11310 2025-11-03 18:16:24.689895+00 2025-11-03 18:16:24.689902+00 f t 11616 \N \N f f +11311 2025-11-03 18:16:29.036511+00 2025-11-03 18:16:29.036518+00 f t 12289 \N \N f f +11312 2025-11-03 18:22:11.848477+00 2025-11-03 18:22:11.848492+00 f t 12290 \N \N f f +11313 2025-11-03 18:22:24.353475+00 2025-11-03 18:22:24.353484+00 f t 11745 \N \N f f +11314 2025-11-03 18:36:39.91121+00 2025-11-03 18:36:39.911218+00 f t 12291 \N \N f f +11315 2025-11-03 19:01:59.44409+00 2025-11-03 19:01:59.444098+00 f t 8854 \N \N f f +11316 2025-11-03 19:02:04.285209+00 2025-11-03 19:02:04.285218+00 f t 8854 \N \N f f +11317 2025-11-03 19:25:13.691712+00 2025-11-03 19:25:13.691721+00 f t 12293 \N \N f f +11318 2025-11-03 19:25:30.361447+00 2025-11-03 19:25:30.361455+00 f t 12294 \N \N f f +11319 2025-11-03 19:30:16.762479+00 2025-11-03 19:30:16.762488+00 f t 12295 \N \N f f +11320 2025-11-03 19:51:56.670243+00 2025-11-03 19:51:56.670251+00 f t 12296 \N \N f f +11321 2025-11-03 20:01:14.728056+00 2025-11-03 20:01:14.728068+00 f t 10707 \N \N f f +11322 2025-11-03 20:07:14.473734+00 2025-11-03 20:07:14.473743+00 f t 12297 \N \N f f +11323 2025-11-03 20:33:16.25894+00 2025-11-03 20:33:16.258951+00 f t 12298 \N \N f f +11324 2025-11-03 21:36:49.193873+00 2025-11-03 21:36:49.193924+00 f t 12299 \N \N f f +11325 2025-11-03 21:38:39.628402+00 2025-11-03 21:38:39.62841+00 f t 12300 \N \N f f +11326 2025-11-03 22:24:16.756339+00 2025-11-03 22:24:16.756347+00 f t 12301 \N \N f f +11327 2025-11-03 22:38:10.054305+00 2025-11-03 22:38:10.054313+00 f t 12302 \N \N f f +11328 2025-11-03 22:42:49.761942+00 2025-11-03 22:42:49.76195+00 f t 12303 \N \N f f +11329 2025-11-03 23:16:11.028195+00 2025-11-03 23:16:11.028206+00 f t 12304 \N \N f f +11330 2025-11-03 23:19:14.732312+00 2025-11-03 23:19:14.732321+00 f t 12305 \N \N f f +11331 2025-11-03 23:23:19.577837+00 2025-11-03 23:23:19.577845+00 f t 12306 \N \N f f +11332 2025-11-03 23:27:42.550006+00 2025-11-03 23:27:42.550015+00 f t 12307 \N \N f f +11333 2025-11-03 23:46:23.127691+00 2025-11-03 23:46:23.1277+00 f t 12308 \N \N f f +11334 2025-11-03 23:56:59.391918+00 2025-11-03 23:56:59.391932+00 f t 12295 \N \N f f +11335 2025-11-03 23:58:57.828879+00 2025-11-03 23:58:57.828888+00 f t 12309 \N \N f f +11336 2025-11-04 00:08:26.309199+00 2025-11-04 00:08:26.309207+00 f t 12310 \N \N f f +11337 2025-11-04 00:09:35.194061+00 2025-11-04 00:09:35.194061+00 f t 12311 \N \N f f +11338 2025-11-04 00:27:11.094027+00 2025-11-04 00:27:11.094038+00 f t 12312 \N \N f f +11339 2025-11-04 00:58:35.815472+00 2025-11-04 00:58:35.815481+00 f t 12313 \N \N f f +11340 2025-11-04 01:05:56.281637+00 2025-11-04 01:05:56.281647+00 f t 6588 \N \N f f +11341 2025-11-04 01:23:28.551208+00 2025-11-04 01:23:28.551219+00 f t 12316 \N \N f f +11342 2025-11-04 01:32:53.350163+00 2025-11-04 01:32:53.350171+00 f t 12317 \N \N f f +11343 2025-11-04 01:35:38.096093+00 2025-11-04 01:35:38.096101+00 f t 12318 \N \N f f +11344 2025-11-04 01:36:12.693889+00 2025-11-04 01:36:12.693897+00 f t 12319 \N \N f f +11345 2025-11-04 02:06:03.489447+00 2025-11-04 02:06:03.489458+00 f t 12320 \N \N f f +11346 2025-11-04 02:11:44.943325+00 2025-11-04 02:11:44.943325+00 f t 12321 \N \N f f +11347 2025-11-04 02:15:20.884453+00 2025-11-04 02:15:20.884461+00 f t 12322 \N \N f f +11348 2025-11-04 03:04:27.777767+00 2025-11-04 03:04:27.777775+00 f t 12323 \N \N f f +11349 2025-11-04 03:07:00.974698+00 2025-11-04 03:07:00.974708+00 f t 12324 \N \N f f +11350 2025-11-04 03:12:07.456212+00 2025-11-04 03:12:07.456221+00 f t 12325 \N \N f f +11351 2025-11-04 03:30:25.257476+00 2025-11-04 03:30:25.257485+00 f t 12327 \N \N f f +11352 2025-11-04 03:31:33.946904+00 2025-11-04 03:31:33.946915+00 f t 12328 \N \N f f +11353 2025-11-04 03:32:24.156043+00 2025-11-04 03:32:24.156053+00 f t 12329 \N \N f f +11354 2025-11-04 05:06:38.493025+00 2025-11-04 05:06:38.493035+00 f t 12330 \N \N f f +11355 2025-11-04 05:20:04.109378+00 2025-11-04 05:20:04.109392+00 f t 12331 \N \N f f +11356 2025-11-04 09:38:32.296006+00 2025-11-04 09:38:32.296016+00 f t 12332 \N \N f f +11357 2025-11-04 10:28:25.329654+00 2025-11-04 10:28:25.329666+00 f t 12333 \N \N f f +11358 2025-11-04 10:33:52.317283+00 2025-11-04 10:33:52.317291+00 f t 12334 \N \N f f +11359 2025-11-04 11:02:51.985862+00 2025-11-04 11:02:51.98587+00 f t 12335 \N \N f f +11360 2025-11-04 11:17:07.937165+00 2025-11-04 11:17:07.937176+00 f t 12336 \N \N f f +11361 2025-11-04 12:40:52.235347+00 2025-11-04 12:40:52.235355+00 f t 12337 \N \N f f +11362 2025-11-04 13:09:14.703193+00 2025-11-04 13:09:14.703199+00 f t 12338 \N \N f f +11363 2025-11-04 13:13:44.376264+00 2025-11-04 13:13:44.376274+00 f t 10142 \N \N f f +11364 2025-11-04 13:37:08.228474+00 2025-11-04 13:37:08.228483+00 f t 12339 \N \N f f +11365 2025-11-04 13:46:18.793168+00 2025-11-04 13:46:18.793176+00 f t 12340 \N \N f f +11366 2025-11-04 13:47:01.421984+00 2025-11-04 13:47:01.421992+00 f t 11955 \N \N f f +11367 2025-11-04 14:04:01.083835+00 2025-11-04 14:04:01.083844+00 f t 12341 \N \N f f +11368 2025-11-04 14:25:34.554219+00 2025-11-04 14:25:34.554228+00 f t 12343 \N \N f f +11369 2025-11-04 14:27:19.377001+00 2025-11-04 14:27:19.377012+00 f t 12344 \N \N f f +11370 2025-11-04 14:34:26.272492+00 2025-11-04 14:34:26.272499+00 f t 12345 \N \N f f +11371 2025-11-04 14:35:32.082365+00 2025-11-04 14:35:32.082374+00 f t 12346 \N \N f f +11372 2025-11-04 14:46:38.339729+00 2025-11-04 14:46:38.33974+00 f t 12347 \N \N f f +11373 2025-11-04 14:47:48.55159+00 2025-11-04 14:47:48.551599+00 f t 12348 \N \N f f +11374 2025-11-04 14:48:03.348007+00 2025-11-04 14:48:03.348019+00 f t 7396 \N \N f f +11375 2025-11-04 14:58:18.492622+00 2025-11-04 14:58:18.492631+00 f t 12349 \N \N f f +11376 2025-11-04 15:02:23.060597+00 2025-11-04 15:02:23.06061+00 f t 12350 \N \N f f +11377 2025-11-04 15:04:37.996661+00 2025-11-04 15:04:37.99667+00 f t 12351 \N \N f f +11378 2025-11-04 15:10:09.186524+00 2025-11-04 15:10:09.186533+00 f t 12352 \N \N f f +11379 2025-11-04 15:18:57.099731+00 2025-11-04 15:18:57.099743+00 f t 12353 \N \N f f +11380 2025-11-04 15:21:28.211679+00 2025-11-04 15:21:28.211688+00 f t 12354 \N \N f f +11382 2025-11-04 15:27:30.250953+00 2025-11-04 15:27:30.250959+00 f t 12356 \N \N f f +11381 2025-11-04 15:30:09.680776+00 2025-11-04 15:30:09.680776+00 f t 12355 \N \N f f +11383 2025-11-04 15:33:23.947325+00 2025-11-04 15:33:23.947335+00 f t 12325 \N \N f f +11384 2025-11-04 15:36:06.700814+00 2025-11-04 15:36:06.700823+00 f t 12359 \N \N f f +11385 2025-11-04 15:57:15.759166+00 2025-11-04 15:57:15.759176+00 f t 12360 \N \N f f +11386 2025-11-04 16:17:44.138975+00 2025-11-04 16:17:44.138983+00 f t 12361 \N \N f f +11387 2025-11-04 16:32:50.558856+00 2025-11-04 16:32:50.558867+00 f t 7277 \N \N f f +11388 2025-11-04 16:40:43.573171+00 2025-11-04 16:40:43.573179+00 f t 12362 \N \N f f +11389 2025-11-04 16:42:28.219927+00 2025-11-04 16:42:28.219939+00 f t 12363 \N \N f f +11390 2025-11-04 17:04:51.559007+00 2025-11-04 17:04:51.559015+00 f t 7277 \N \N f f +11391 2025-11-04 17:08:38.823887+00 2025-11-04 17:08:38.823895+00 f t 12365 \N \N f f +11392 2025-11-04 17:09:11.915801+00 2025-11-04 17:09:11.91581+00 f t 12364 \N \N f f +11393 2025-11-04 17:19:59.536231+00 2025-11-04 17:19:59.53624+00 f t 123 \N \N f f +11394 2025-11-04 17:29:00.290124+00 2025-11-04 17:29:00.290132+00 f t 11745 \N \N f f +11395 2025-11-04 17:30:16.743034+00 2025-11-04 17:30:16.743045+00 f t 11745 \N \N f f +11396 2025-11-04 17:42:14.86861+00 2025-11-04 17:42:14.86861+00 f t 12366 \N 1 f f +11397 2025-11-04 17:46:00.139719+00 2025-11-04 17:46:00.139728+00 f t 12367 \N \N f f +11398 2025-11-04 18:13:01.030609+00 2025-11-04 18:13:01.030622+00 f t 12368 \N \N f f +11399 2025-11-04 18:19:41.650606+00 2025-11-04 18:19:41.650617+00 f t 12369 \N \N f f +11400 2025-11-04 18:26:23.846044+00 2025-11-04 18:26:23.846053+00 f t 12370 \N \N f f +11401 2025-11-04 18:30:40.606819+00 2025-11-04 18:30:40.606828+00 f t 12371 \N \N f f +11462 2025-11-05 14:27:39.223993+00 2025-11-05 14:27:39.224003+00 f t 12432 \N \N f f +11402 2025-11-04 18:37:14.228889+00 2025-11-04 18:37:14.228889+00 f t 12372 \N 1 f f +11403 2025-11-04 18:38:04.781483+00 2025-11-04 18:38:04.781483+00 f t 12373 \N 1 f f +11463 2025-11-05 14:36:28.575855+00 2025-11-05 14:36:28.575867+00 f t 12434 \N \N f f +11404 2025-11-04 18:38:09.640921+00 2025-11-04 18:38:09.640921+00 f t 12374 \N 6 f f +11405 2025-11-04 18:50:39.826553+00 2025-11-04 18:50:39.826553+00 f t 12375 \N 6 f f +11406 2025-11-04 18:52:47.885966+00 2025-11-04 18:52:47.885966+00 f t 12376 \N \N f f +11407 2025-11-04 18:58:55.414949+00 2025-11-04 18:58:55.414957+00 f t 12377 \N \N f f +11408 2025-11-04 19:20:17.466173+00 2025-11-04 19:20:17.466183+00 f t 12087 \N \N f f +11409 2025-11-04 19:29:59.691194+00 2025-11-04 19:29:59.691201+00 f t 12378 \N \N f f +11410 2025-11-04 19:37:26.1428+00 2025-11-04 19:37:26.142809+00 f t 12379 \N \N f f +11411 2025-11-04 19:42:38.482256+00 2025-11-04 19:42:38.482267+00 f t 12380 \N \N f f +11412 2025-11-04 19:47:45.640205+00 2025-11-04 19:47:45.640213+00 f t 12381 \N \N f f +11413 2025-11-04 19:49:25.09001+00 2025-11-04 19:49:25.090021+00 f t 12382 \N \N f f +11414 2025-11-04 19:55:52.85996+00 2025-11-04 19:55:52.85996+00 f t 12384 \N \N f f +11415 2025-11-04 19:55:58.951319+00 2025-11-04 19:55:58.95133+00 f t 12383 \N \N f f +11416 2025-11-04 19:58:06.173274+00 2025-11-04 19:58:06.173281+00 f t 12385 \N \N f f +11417 2025-11-04 20:22:39.43944+00 2025-11-04 20:22:39.439449+00 f t 12386 \N \N f f +11418 2025-11-04 20:29:01.192724+00 2025-11-04 20:29:01.192736+00 f t 12387 \N \N f f +11419 2025-11-04 20:29:37.093349+00 2025-11-04 20:29:37.093358+00 f t 12388 \N \N f f +11420 2025-11-04 20:59:24.000084+00 2025-11-04 20:59:24.000095+00 f t 12391 \N \N f f +11421 2025-11-04 21:03:05.93595+00 2025-11-04 21:03:05.935962+00 f t 12392 \N \N f f +11422 2025-11-04 21:23:02.494036+00 2025-11-04 21:23:02.49441+00 f t 12393 \N \N f f +11423 2025-11-04 21:31:26.489132+00 2025-11-04 21:31:26.489132+00 f t 12395 \N \N f f +11424 2025-11-04 21:51:56.251368+00 2025-11-04 21:51:56.251377+00 f t 12396 \N \N f f +11425 2025-11-04 21:53:46.343444+00 2025-11-04 21:53:46.343456+00 f t 12397 \N \N f f +11426 2025-11-04 22:19:16.082278+00 2025-11-04 22:19:16.082289+00 f t 12398 \N \N f f +11427 2025-11-04 22:22:11.922136+00 2025-11-04 22:22:11.922144+00 f t 12399 \N \N f f +11428 2025-11-04 22:23:15.095517+00 2025-11-04 22:23:15.095526+00 f t 12400 \N \N f f +11429 2025-11-04 22:25:41.707098+00 2025-11-04 22:25:41.707105+00 f t 12401 \N \N f f +11430 2025-11-04 22:48:22.672499+00 2025-11-04 22:48:22.672507+00 f t 12325 \N \N f f +11431 2025-11-04 22:55:49.91573+00 2025-11-04 22:55:49.915739+00 f t 12402 \N \N f f +11432 2025-11-04 23:10:43.19205+00 2025-11-04 23:10:43.19205+00 f t 12403 \N \N f f +11433 2025-11-04 23:36:49.34928+00 2025-11-04 23:36:49.349287+00 f t 12155 \N \N f f +11435 2025-11-05 00:15:50.803763+00 2025-11-05 00:15:50.803771+00 f t 12405 \N \N f f +11434 2025-11-05 00:20:48.491642+00 2025-11-05 00:20:48.491642+00 f t 12404 \N \N f f +11436 2025-11-05 00:34:21.954938+00 2025-11-05 00:34:21.954957+00 f t 12406 \N \N f f +11437 2025-11-05 00:41:08.023531+00 2025-11-05 00:41:08.023539+00 f t 12407 \N \N f f +11438 2025-11-05 01:04:59.609498+00 2025-11-05 01:04:59.609511+00 f t 12408 \N \N f f +11439 2025-11-05 02:14:27.836319+00 2025-11-05 02:14:27.836331+00 f t 12409 \N \N f f +11440 2025-11-05 03:46:44.058949+00 2025-11-05 03:46:44.058959+00 f t 12410 \N \N f f +11441 2025-11-05 03:54:51.114942+00 2025-11-05 03:54:51.11495+00 f t 12411 \N \N f f +11442 2025-11-05 04:01:45.775543+00 2025-11-05 04:01:45.775551+00 f t 12412 \N \N f f +11443 2025-11-05 04:12:20.90791+00 2025-11-05 04:12:20.907919+00 f t 12413 \N \N f f +11444 2025-11-05 04:29:34.088126+00 2025-11-05 04:29:34.088134+00 f t 12414 \N \N f f +11445 2025-11-05 04:57:39.744825+00 2025-11-05 04:57:39.744836+00 f t 12415 \N \N f f +11446 2025-11-05 10:09:43.427472+00 2025-11-05 10:09:43.42748+00 f t 12416 \N \N f f +11447 2025-11-05 10:52:30.147681+00 2025-11-05 10:52:30.147693+00 f t 12417 \N \N f f +11448 2025-11-05 11:24:06.17969+00 2025-11-05 11:24:06.179699+00 f t 12418 \N \N f f +11449 2025-11-05 11:28:37.554976+00 2025-11-05 11:28:37.554976+00 f t 12419 \N \N f f +11450 2025-11-05 11:31:53.360568+00 2025-11-05 11:31:53.360576+00 f t 12420 \N \N f f +11451 2025-11-05 11:45:40.712275+00 2025-11-05 11:45:40.712286+00 f t 12421 \N \N f f +11452 2025-11-05 12:04:58.231939+00 2025-11-05 12:04:58.231947+00 f t 12422 \N \N f f +11453 2025-11-05 12:17:52.141257+00 2025-11-05 12:17:52.141266+00 f t 12422 \N \N f f +11454 2025-11-05 12:22:00.5045+00 2025-11-05 12:22:00.504508+00 f t 12424 \N \N f f +11455 2025-11-05 12:48:06.918761+00 2025-11-05 12:48:06.918771+00 f t 12425 \N \N f f +11456 2025-11-05 13:02:39.466684+00 2025-11-05 13:02:39.466693+00 f t 12426 \N \N f f +11457 2025-11-05 13:09:32.630611+00 2025-11-05 13:09:32.630619+00 f t 12364 \N \N f f +11458 2025-11-05 13:12:56.440262+00 2025-11-05 13:12:56.440271+00 f t 12427 \N \N f f +11459 2025-11-05 13:18:40.356823+00 2025-11-05 13:18:40.356833+00 f t 12428 \N \N f f +11460 2025-11-05 13:20:51.96901+00 2025-11-05 13:20:51.969024+00 f t 12429 \N \N f f +11461 2025-11-05 13:26:17.205968+00 2025-11-05 13:26:17.205975+00 f t 12431 \N \N f f +11464 2025-11-05 14:36:37.611542+00 2025-11-05 14:36:37.611552+00 f t 12433 \N \N f f +11465 2025-11-05 14:38:30.016233+00 2025-11-05 14:38:30.016244+00 f t 12435 \N \N f f +11466 2025-11-05 14:41:40.266756+00 2025-11-05 14:41:40.266765+00 f t 12436 \N \N f f +11467 2025-11-05 14:42:05.258692+00 2025-11-05 14:42:05.258701+00 f t 12437 \N \N f f +11468 2025-11-05 15:05:13.967511+00 2025-11-05 15:05:13.96752+00 f t 12438 \N \N f f +11469 2025-11-05 15:13:14.878019+00 2025-11-05 15:13:14.878027+00 f t 12439 \N \N f f +11470 2025-11-05 15:17:19.914227+00 2025-11-05 15:17:19.914235+00 f t 12440 \N \N f f +11471 2025-11-05 15:52:23.789438+00 2025-11-05 15:52:23.789446+00 f t 12441 \N \N f f +11472 2025-11-05 16:12:49.161453+00 2025-11-05 16:12:49.161461+00 f t 12442 \N \N f f +11473 2025-11-05 16:33:52.935017+00 2025-11-05 16:33:52.935026+00 f t 12325 \N \N f f +11474 2025-11-05 16:36:45.942487+00 2025-11-05 16:36:45.942497+00 f t 12325 \N \N f f +11475 2025-11-05 16:37:47.154331+00 2025-11-05 16:37:47.154339+00 f t 12325 \N \N f f +11476 2025-11-05 16:39:31.525661+00 2025-11-05 16:39:31.525673+00 f t 12443 \N \N f f +11477 2025-11-05 17:27:27.008727+00 2025-11-05 17:27:27.008736+00 f t 12444 \N \N f f +11478 2025-11-05 17:41:31.234931+00 2025-11-05 17:41:31.234939+00 f t 12445 \N \N f f +11479 2025-11-05 18:09:49.144504+00 2025-11-05 18:09:49.144516+00 f t 12446 \N \N f f +11480 2025-11-05 18:56:41.309808+00 2025-11-05 18:56:41.309818+00 f t 12447 \N \N f f +11481 2025-11-05 18:57:00.531016+00 2025-11-05 18:57:00.531024+00 f t 12441 \N \N f f +11482 2025-11-05 18:57:56.580407+00 2025-11-05 18:57:56.580415+00 f t 12448 \N \N f f +11483 2025-11-05 18:59:19.509472+00 2025-11-05 18:59:19.509484+00 f t 12441 \N \N f f +11484 2025-11-05 19:21:53.286461+00 2025-11-05 19:21:53.286468+00 f t 12449 \N \N f f +11485 2025-11-05 19:36:52.67191+00 2025-11-05 19:36:52.67192+00 f t 12450 \N \N f f +11486 2025-11-05 19:50:30.828022+00 2025-11-05 19:50:30.828031+00 f t 12451 \N \N f f +11487 2025-11-05 19:53:11.897375+00 2025-11-05 19:53:11.897382+00 f t 12446 \N \N f f +11488 2025-11-05 20:00:25.131848+00 2025-11-05 20:00:25.131857+00 f t 12452 \N \N f f +11489 2025-11-05 20:07:56.832968+00 2025-11-05 20:07:56.832975+00 f t 12453 \N \N f f +11490 2025-11-05 20:10:53.070836+00 2025-11-05 20:10:53.070853+00 f t 12454 \N \N f f +11492 2025-11-05 20:16:53.539709+00 2025-11-05 20:16:53.539716+00 f t 12456 \N \N f f +11491 2025-11-05 20:31:41.13295+00 2025-11-05 20:31:41.13295+00 f t 12455 \N \N f f +11493 2025-11-05 20:38:36.970441+00 2025-11-05 20:38:36.970441+00 f t 12457 \N \N f f +11494 2025-11-05 21:06:15.804585+00 2025-11-05 21:06:15.804594+00 f t 12459 \N \N f f +11495 2025-11-05 21:06:16.295272+00 2025-11-05 21:06:16.295282+00 f t 12459 \N \N f f +11496 2025-11-05 21:28:12.384272+00 2025-11-05 21:28:12.384281+00 f t 10559 \N \N f f +11497 2025-11-05 21:30:56.016464+00 2025-11-05 21:30:56.016475+00 f t 12460 \N \N f f +11498 2025-11-05 22:03:55.819027+00 2025-11-05 22:03:55.819043+00 f t 12461 \N \N f f +11499 2025-11-05 22:15:12.995647+00 2025-11-05 22:15:12.995657+00 f t 12462 \N \N f f +11500 2025-11-05 22:28:59.243355+00 2025-11-05 22:28:59.243363+00 f t 12463 \N \N f f +11501 2025-11-05 22:32:23.423688+00 2025-11-05 22:32:23.423699+00 f t 12464 \N \N f f +11502 2025-11-05 22:43:13.913469+00 2025-11-05 22:43:13.913478+00 f t 12465 \N \N f f +11503 2025-11-05 23:11:27.420495+00 2025-11-05 23:11:27.420504+00 f t 12466 \N \N f f +11504 2025-11-05 23:21:02.849794+00 2025-11-05 23:21:02.849803+00 f t 12467 \N \N f f +11505 2025-11-05 23:26:09.267739+00 2025-11-05 23:26:09.267748+00 f t 12468 \N \N f f +11506 2025-11-05 23:44:50.757752+00 2025-11-05 23:44:50.75776+00 f t 12469 \N \N f f +11507 2025-11-05 23:46:33.357237+00 2025-11-05 23:46:33.35725+00 f t 12470 \N \N f f +11508 2025-11-06 00:12:31.51677+00 2025-11-06 00:12:31.516779+00 f t 12471 \N \N f f +11509 2025-11-06 00:43:41.658037+00 2025-11-06 00:43:41.658046+00 f t 12472 \N \N f f +11510 2025-11-06 00:51:05.839674+00 2025-11-06 00:51:05.839682+00 f t 12474 \N \N f f +11511 2025-11-06 01:06:43.968338+00 2025-11-06 01:06:43.968347+00 f t 12476 \N \N f f +11512 2025-11-06 01:07:56.235013+00 2025-11-06 01:07:56.235022+00 f t 12477 \N \N f f +11513 2025-11-06 01:24:21.383242+00 2025-11-06 01:24:21.38325+00 f t 12478 \N \N f f +11514 2025-11-06 01:24:46.760614+00 2025-11-06 01:24:46.760622+00 f t 12479 \N \N f f +11515 2025-11-06 01:47:21.282948+00 2025-11-06 01:47:21.282977+00 f t 12481 \N \N f f +11516 2025-11-06 02:10:47.809538+00 2025-11-06 02:10:47.80955+00 f t 12482 \N \N f f +11517 2025-11-06 02:19:47.057152+00 2025-11-06 02:19:47.057161+00 f t 12483 \N \N f f +11518 2025-11-06 02:35:15.456439+00 2025-11-06 02:35:15.456439+00 f t 12484 \N \N f f +11519 2025-11-06 02:53:55.448482+00 2025-11-06 02:53:55.448493+00 f t 12485 \N \N f f +11520 2025-11-06 02:56:42.345107+00 2025-11-06 02:56:42.345115+00 f t 12486 \N \N f f +11521 2025-11-06 03:23:56.453187+00 2025-11-06 03:23:56.453196+00 f t 11481 \N \N f f +11522 2025-11-06 04:41:40.148751+00 2025-11-06 04:41:40.148761+00 f t 12490 \N \N f f +11523 2025-11-06 06:16:46.988722+00 2025-11-06 06:16:46.988729+00 f t 12491 \N \N f f +11524 2025-11-06 06:17:40.846929+00 2025-11-06 06:17:40.846942+00 f t 12492 \N \N f f +11525 2025-11-06 06:39:17.502705+00 2025-11-06 06:39:17.502714+00 f t 12493 \N \N f f +11526 2025-11-06 07:49:50.364203+00 2025-11-06 07:49:50.364214+00 f t 12494 \N \N f f +11527 2025-11-06 07:50:14.391116+00 2025-11-06 07:50:14.391166+00 f t 12495 \N \N f f +11528 2025-11-06 08:24:40.344454+00 2025-11-06 08:24:40.344467+00 f t 12496 \N \N f f +11529 2025-11-06 09:31:32.328855+00 2025-11-06 09:31:32.328866+00 f t 12497 \N \N f f +11530 2025-11-06 09:48:38.836324+00 2025-11-06 09:48:38.836333+00 f t 12498 \N \N f f +11531 2025-11-06 10:02:32.975114+00 2025-11-06 10:02:32.975122+00 f t 12499 \N \N f f +11532 2025-11-06 10:06:08.943881+00 2025-11-06 10:06:08.94389+00 f t 12500 \N \N f f +11533 2025-11-06 10:19:24.41777+00 2025-11-06 10:19:24.41778+00 f t 12501 \N \N f f +11534 2025-11-06 10:31:15.896599+00 2025-11-06 10:31:15.896609+00 f t 12502 \N \N f f +11535 2025-11-06 11:31:55.814705+00 2025-11-06 11:31:55.814715+00 f t 12503 \N \N f f +11536 2025-11-06 11:42:15.052127+00 2025-11-06 11:42:15.052138+00 f t 12504 \N \N f f +11537 2025-11-06 11:45:13.839529+00 2025-11-06 11:45:13.839537+00 f t 12505 \N \N f f +11538 2025-11-06 11:54:10.067584+00 2025-11-06 11:54:10.067596+00 f t 12506 \N \N f f +11539 2025-11-06 11:55:17.495358+00 2025-11-06 11:55:17.495365+00 f t 12507 \N \N f f +11540 2025-11-06 11:58:29.427061+00 2025-11-06 11:58:29.427069+00 f t 12508 \N \N f f +11541 2025-11-06 12:07:44.248494+00 2025-11-06 12:07:44.248503+00 f t 12509 \N \N f f +11542 2025-11-06 12:14:48.83107+00 2025-11-06 12:14:48.831084+00 f t 12510 \N \N f f +11543 2025-11-06 12:41:12.862285+00 2025-11-06 12:41:12.862294+00 f t 12512 \N \N f f +11544 2025-11-06 12:41:45.106349+00 2025-11-06 12:41:45.106357+00 f t 12513 \N \N f f +11545 2025-11-06 12:48:24.147484+00 2025-11-06 12:48:24.147493+00 f t 12514 \N \N f f +11546 2025-11-06 12:49:27.488176+00 2025-11-06 12:49:27.488187+00 f t 12361 \N \N f f +11563 2025-11-06 16:11:19.637451+00 2025-11-06 16:11:19.637451+00 f t 12527 \N \N f f +11548 2025-11-06 13:11:52.476134+00 2025-11-06 13:11:52.476142+00 f t 12516 \N \N f f +11547 2025-11-06 13:13:08.84209+00 2025-11-06 13:13:08.84209+00 f t 12515 \N \N f f +11549 2025-11-06 13:14:05.858485+00 2025-11-06 13:14:05.858494+00 f t 12517 \N \N f f +11550 2025-11-06 13:27:23.190754+00 2025-11-06 13:27:23.190762+00 f t 12518 \N \N f f +11551 2025-11-06 13:33:36.682919+00 2025-11-06 13:33:36.682927+00 f t 12516 \N \N f f +11552 2025-11-06 13:36:11.516855+00 2025-11-06 13:36:11.516862+00 f t 12521 \N \N f f +11553 2025-11-06 13:50:39.49905+00 2025-11-06 13:50:39.499058+00 f t 12522 \N \N f f +11554 2025-11-06 14:23:30.383304+00 2025-11-06 14:23:30.383311+00 f t 12453 \N \N f f +11555 2025-11-06 14:28:19.33396+00 2025-11-06 14:28:19.333969+00 f t 12523 \N \N f f +11556 2025-11-06 14:41:00.012571+00 2025-11-06 14:41:00.012579+00 f t 3981 \N \N f f +11557 2025-11-06 15:16:28.002437+00 2025-11-06 15:16:28.00245+00 f t 12524 \N \N f f +11558 2025-11-06 15:16:53.8238+00 2025-11-06 15:16:53.823811+00 f t 12525 \N \N f f +11559 2025-11-06 15:21:21.505901+00 2025-11-06 15:21:21.505901+00 f t 12526 \N \N f f +11560 2025-11-06 15:46:23.193093+00 2025-11-06 15:46:23.193105+00 f t 12361 \N \N f f +11561 2025-11-06 15:50:41.326993+00 2025-11-06 15:50:41.327+00 f t 4512 \N \N f f +11562 2025-11-06 16:06:10.827122+00 2025-11-06 16:06:10.827175+00 f t 12474 \N \N f f +11564 2025-11-06 16:15:56.373915+00 2025-11-06 16:15:56.373923+00 f t 12528 \N \N f f +11565 2025-11-06 16:19:04.554088+00 2025-11-06 16:19:04.554097+00 f t 12530 \N \N f f +11566 2025-11-06 16:29:26.477581+00 2025-11-06 16:29:26.47759+00 f t 12531 \N \N f f +11567 2025-11-06 16:39:53.831155+00 2025-11-06 16:39:53.831162+00 f t 274 \N \N f f +11568 2025-11-06 16:42:46.351359+00 2025-11-06 16:42:46.351367+00 f t 12533 \N \N f f +11569 2025-11-06 16:42:53.456544+00 2025-11-06 16:42:53.456552+00 f t 274 \N \N f f +11570 2025-11-06 16:46:14.300204+00 2025-11-06 16:46:14.300213+00 f t 12534 \N \N f f +11571 2025-11-06 16:46:21.581719+00 2025-11-06 16:46:21.581729+00 f t 274 \N \N f f +11572 2025-11-06 16:47:10.148102+00 2025-11-06 16:47:10.148112+00 f t 274 \N \N f f +11573 2025-11-06 16:49:54.267024+00 2025-11-06 16:49:54.267032+00 f t 12535 \N \N f f +11574 2025-11-06 16:55:31.922546+00 2025-11-06 16:55:31.922553+00 f t 12536 \N \N f f +11575 2025-11-06 17:06:59.436591+00 2025-11-06 17:06:59.4366+00 f t 12537 \N \N f f +11576 2025-11-06 17:23:44.787386+00 2025-11-06 17:23:44.787393+00 f t 11503 \N \N f f +11577 2025-11-06 17:35:08.821916+00 2025-11-06 17:35:08.821924+00 f t 12538 \N \N f f +11578 2025-11-06 18:04:29.386066+00 2025-11-06 18:04:29.386077+00 f t 12539 \N \N f f +11579 2025-11-06 18:18:47.633517+00 2025-11-06 18:18:47.633527+00 f t 12540 \N \N f f +11580 2025-11-06 18:23:27.10339+00 2025-11-06 18:23:27.103398+00 f t 12541 \N \N f f +11581 2025-11-06 18:24:07.138754+00 2025-11-06 18:24:07.138763+00 f t 8455 \N \N f f +11582 2025-11-06 18:27:20.84189+00 2025-11-06 18:27:20.84189+00 f t 12542 \N \N f f +11583 2025-11-06 18:29:18.90124+00 2025-11-06 18:29:18.901251+00 f t 12543 \N \N f f +11584 2025-11-06 18:46:31.031097+00 2025-11-06 18:46:31.031104+00 f t 12544 \N \N f f +11585 2025-11-06 18:59:16.765353+00 2025-11-06 18:59:16.765363+00 f t 12287 \N \N f f +11586 2025-11-06 19:11:37.261579+00 2025-11-06 19:11:37.261587+00 f t 12545 \N \N f f +11587 2025-11-06 19:57:32.582687+00 2025-11-06 19:57:32.582696+00 f t 123 \N \N f f +11588 2025-11-06 19:58:00.452251+00 2025-11-06 19:58:00.45226+00 f t 12547 \N \N f f +11589 2025-11-06 20:23:08.916391+00 2025-11-06 20:23:08.9164+00 f t 12527 \N \N f f +11590 2025-11-06 20:30:49.189606+00 2025-11-06 20:30:49.189615+00 f t 12548 \N \N f f +11591 2025-11-06 20:32:06.056031+00 2025-11-06 20:32:06.056039+00 f t 12527 \N \N f f +11592 2025-11-06 20:33:04.716104+00 2025-11-06 20:33:04.716112+00 f t 12549 \N \N f f +11593 2025-11-06 20:44:55.676018+00 2025-11-06 20:44:55.676025+00 f t 12550 \N \N f f +11594 2025-11-06 20:50:25.997552+00 2025-11-06 20:50:25.997561+00 f t 6033 \N \N f f +11595 2025-11-06 21:06:43.461231+00 2025-11-06 21:06:43.46124+00 f t 12552 \N \N f f +11596 2025-11-06 21:08:08.026016+00 2025-11-06 21:08:08.026026+00 f t 12527 \N \N f f +11597 2025-11-06 21:23:22.880621+00 2025-11-06 21:23:22.88063+00 f t 11825 \N \N f f +11598 2025-11-06 21:26:21.31502+00 2025-11-06 21:26:21.315029+00 f t 9670 \N \N f f +11599 2025-11-06 21:28:42.49218+00 2025-11-06 21:28:42.492188+00 f t 12553 \N \N f f +11600 2025-11-06 21:38:25.337961+00 2025-11-06 21:38:25.337969+00 f t 12554 \N \N f f +11601 2025-11-06 22:17:52.257154+00 2025-11-06 22:17:52.257162+00 f t 12555 \N \N f f +11602 2025-11-06 22:40:38.254664+00 2025-11-06 22:40:38.254674+00 f t 12556 \N \N f f +11603 2025-11-06 22:50:39.664495+00 2025-11-06 22:50:39.664502+00 f t 12557 \N \N f f +11604 2025-11-06 22:57:34.1474+00 2025-11-06 22:57:34.147412+00 f t 12558 \N \N f f +11605 2025-11-06 23:02:17.358705+00 2025-11-06 23:02:17.358717+00 f t 12361 \N \N f f +11606 2025-11-06 23:29:57.909667+00 2025-11-06 23:29:57.909676+00 f t 12559 \N \N f f +11607 2025-11-06 23:41:45.673486+00 2025-11-06 23:41:45.673494+00 f t 12560 \N \N f f +11608 2025-11-06 23:59:42.729343+00 2025-11-06 23:59:42.729353+00 f t 12561 \N \N f f +11609 2025-11-07 00:00:17.575782+00 2025-11-07 00:00:17.575795+00 f t 12562 \N \N f f +11610 2025-11-07 00:54:54.657534+00 2025-11-07 00:54:54.657543+00 f t 12563 \N \N f f +11611 2025-11-07 01:15:56.680886+00 2025-11-07 01:15:56.680898+00 f t 12565 \N \N f f +11612 2025-11-07 01:27:14.219067+00 2025-11-07 01:27:14.219079+00 f t 12566 \N \N f f +11613 2025-11-07 01:30:40.175036+00 2025-11-07 01:30:40.175044+00 f t 12567 \N \N f f +11614 2025-11-07 02:01:49.041189+00 2025-11-07 02:01:49.041199+00 f t 12569 \N \N f f +11615 2025-11-07 02:11:55.833456+00 2025-11-07 02:11:55.833464+00 f t 12570 \N \N f f +11616 2025-11-07 02:17:29.662051+00 2025-11-07 02:17:29.662058+00 f t 12571 \N \N f f +11617 2025-11-07 02:26:59.675419+00 2025-11-07 02:26:59.675427+00 f t 12572 \N \N f f +11618 2025-11-07 02:53:12.314617+00 2025-11-07 02:53:12.314626+00 f t 12573 \N \N f f +11619 2025-11-07 03:47:21.748225+00 2025-11-07 03:47:21.748232+00 f t 12574 \N \N f f +11620 2025-11-07 03:49:19.180771+00 2025-11-07 03:49:19.180779+00 f t 12575 \N \N f f +11621 2025-11-07 04:31:39.724671+00 2025-11-07 04:31:39.724682+00 f t 12576 \N \N f f +11622 2025-11-07 04:44:58.985386+00 2025-11-07 04:44:58.985398+00 f t 12577 \N \N f f +11623 2025-11-07 04:47:07.082433+00 2025-11-07 04:47:07.082443+00 f t 12578 \N \N f f +11624 2025-11-07 05:16:02.736265+00 2025-11-07 05:16:02.736276+00 f t 12580 \N \N f f +11625 2025-11-07 05:17:07.020327+00 2025-11-07 05:17:07.02034+00 f t 12581 \N \N f f +11626 2025-11-07 06:53:57.217122+00 2025-11-07 06:53:57.217132+00 f t 12582 \N \N f f +11627 2025-11-07 08:16:30.626127+00 2025-11-07 08:16:30.626136+00 f t 12583 \N \N f f +11628 2025-11-07 09:26:38.780926+00 2025-11-07 09:26:38.780935+00 f t 12584 \N \N f f +11629 2025-11-07 09:37:51.866359+00 2025-11-07 09:37:51.866367+00 f t 12585 \N \N f f +11630 2025-11-07 10:08:43.449894+00 2025-11-07 10:08:43.449901+00 f t 12586 \N \N f f +11631 2025-11-07 10:12:48.822641+00 2025-11-07 10:12:48.82265+00 f t 12587 \N \N f f +11632 2025-11-07 10:20:53.563904+00 2025-11-07 10:20:53.563912+00 f t 12588 \N \N f f +11633 2025-11-07 10:46:03.543467+00 2025-11-07 10:46:03.543475+00 f t 12589 \N \N f f +11634 2025-11-07 11:10:54.98957+00 2025-11-07 11:10:54.989577+00 f t 12590 \N \N f f +11635 2025-11-07 11:18:26.91519+00 2025-11-07 11:18:26.915203+00 f t 12591 \N \N f f +11636 2025-11-07 11:49:44.63567+00 2025-11-07 11:49:44.635679+00 f t 12592 \N \N f f +11637 2025-11-07 11:56:03.732245+00 2025-11-07 11:56:03.732252+00 f t 12593 \N \N f f +11638 2025-11-07 11:57:36.376403+00 2025-11-07 11:57:36.376412+00 f t 12594 \N \N f f +11639 2025-11-07 12:11:18.915618+00 2025-11-07 12:11:18.915625+00 f t 12595 \N \N f f +11640 2025-11-07 12:11:49.27122+00 2025-11-07 12:11:49.271228+00 f t 12596 \N \N f f +11641 2025-11-07 12:21:07.293433+00 2025-11-07 12:21:07.293445+00 f t 12361 \N \N f f +11642 2025-11-07 12:29:33.587273+00 2025-11-07 12:29:33.587281+00 f t 12597 \N \N f f +11643 2025-11-07 12:39:08.20784+00 2025-11-07 12:39:08.207852+00 f t 12598 \N \N f f +11644 2025-11-07 12:40:31.031698+00 2025-11-07 12:40:31.031709+00 f t 11180 \N \N f f +11645 2025-11-07 12:50:02.545704+00 2025-11-07 12:50:02.545716+00 f t 12599 \N \N f f +11646 2025-11-07 12:50:06.188549+00 2025-11-07 12:50:06.188557+00 f t 12600 \N \N f f +11647 2025-11-07 12:52:41.00614+00 2025-11-07 12:52:41.006149+00 f t 12601 \N \N f f +11648 2025-11-07 13:13:39.478907+00 2025-11-07 13:13:39.478917+00 f t 12603 \N \N f f +11649 2025-11-07 13:26:37.251683+00 2025-11-07 13:26:37.251693+00 f t 1734 \N \N f f +11650 2025-11-07 13:35:31.923661+00 2025-11-07 13:35:31.923671+00 f t 12604 \N \N f f +11651 2025-11-07 13:36:26.612517+00 2025-11-07 13:36:26.61253+00 f t 12605 \N \N f f +11652 2025-11-07 13:38:41.735191+00 2025-11-07 13:38:41.735199+00 f t 12606 \N \N f f +11653 2025-11-07 13:45:44.330427+00 2025-11-07 13:45:44.330436+00 f t 12607 \N \N f f +11654 2025-11-07 13:55:56.563247+00 2025-11-07 13:55:56.563255+00 f t 12608 \N \N f f +11655 2025-11-07 14:04:54.20507+00 2025-11-07 14:04:54.205079+00 f t 12609 \N \N f f +11656 2025-11-07 14:16:34.22075+00 2025-11-07 14:16:34.220758+00 f t 1734 \N \N f f +11657 2025-11-07 14:37:07.200044+00 2025-11-07 14:37:07.200056+00 f t 12610 \N \N f f +11658 2025-11-07 14:46:50.476249+00 2025-11-07 14:46:50.476256+00 f t 12611 \N \N f f +11659 2025-11-07 14:48:13.506203+00 2025-11-07 14:48:13.506211+00 f t 12612 \N \N f f +11660 2025-11-07 15:16:06.825238+00 2025-11-07 15:16:06.82525+00 f t 11644 \N \N f f +11661 2025-11-07 15:29:13.824903+00 2025-11-07 15:29:13.824915+00 f t 12613 \N \N f f +11662 2025-11-07 15:55:33.549424+00 2025-11-07 15:55:33.549432+00 f t 12614 \N \N f f +11663 2025-11-07 15:58:18.576218+00 2025-11-07 15:58:18.576226+00 f t 12615 \N \N f f +11664 2025-11-07 16:24:43.492517+00 2025-11-07 16:24:43.492526+00 f t 12616 \N \N f f +11665 2025-11-07 16:25:35.180922+00 2025-11-07 16:25:35.18093+00 f t 12617 \N \N f f +11666 2025-11-07 16:44:45.131659+00 2025-11-07 16:44:45.131668+00 f t 10358 \N \N f f +11667 2025-11-07 16:52:52.697141+00 2025-11-07 16:52:52.697149+00 f t 12618 \N \N f f +11668 2025-11-07 16:57:50.374211+00 2025-11-07 16:57:50.37422+00 f t 12619 \N \N f f +11669 2025-11-07 17:03:07.889105+00 2025-11-07 17:03:07.889105+00 f t 12620 \N \N f f +11670 2025-11-07 17:18:00.718283+00 2025-11-07 17:18:00.718291+00 f t 12621 \N \N f f +11671 2025-11-07 17:42:44.221644+00 2025-11-07 17:42:44.221658+00 f t 12622 \N \N f f +11672 2025-11-07 17:52:07.923546+00 2025-11-07 17:52:07.923554+00 f t 12623 \N \N f f +11673 2025-11-07 18:15:25.339946+00 2025-11-07 18:15:25.339955+00 f t 12624 \N \N f f +11674 2025-11-07 18:18:31.107081+00 2025-11-07 18:18:31.107092+00 f t 12625 \N \N f f +11675 2025-11-07 18:40:10.333675+00 2025-11-07 18:40:10.333687+00 f t 12627 \N \N f f +11676 2025-11-07 18:43:15.747811+00 2025-11-07 18:43:15.747822+00 f t 12628 \N \N f f +11677 2025-11-07 18:49:44.133405+00 2025-11-07 18:49:44.133415+00 f t 12629 \N \N f f +11678 2025-11-07 18:56:14.641011+00 2025-11-07 18:56:14.641019+00 f t 12630 \N \N f f +11679 2025-11-07 18:59:08.919414+00 2025-11-07 18:59:08.919423+00 f t 12631 \N \N f f +11680 2025-11-07 18:59:21.107367+00 2025-11-07 18:59:21.107379+00 f t 12632 \N \N f f +11681 2025-11-07 19:00:27.696918+00 2025-11-07 19:00:27.696927+00 f t 12633 \N \N f f +11682 2025-11-07 19:00:51.48402+00 2025-11-07 19:00:51.484033+00 f t 12634 \N \N f f +11683 2025-11-07 19:01:12.798915+00 2025-11-07 19:01:12.798923+00 f t 12635 \N \N f f +11684 2025-11-07 19:02:29.732199+00 2025-11-07 19:02:29.732206+00 f t 12636 \N \N f f +11685 2025-11-07 19:15:51.916319+00 2025-11-07 19:15:51.916326+00 f t 12325 \N \N f f +11686 2025-11-07 19:17:58.353018+00 2025-11-07 19:17:58.353027+00 f t 12637 \N \N f f +11687 2025-11-07 19:22:05.545251+00 2025-11-07 19:22:05.545263+00 f t 12638 \N \N f f +11688 2025-11-07 19:26:06.146046+00 2025-11-07 19:26:06.146054+00 f t 12639 \N \N f f +11689 2025-11-07 20:15:57.308288+00 2025-11-07 20:15:57.308297+00 f t 12640 \N \N f f +11690 2025-11-07 20:53:02.711623+00 2025-11-07 20:53:02.711635+00 f t 12641 \N \N f f +11691 2025-11-07 21:32:28.499165+00 2025-11-07 21:32:28.499173+00 f t 12642 \N \N f f +11692 2025-11-07 21:34:40.786121+00 2025-11-07 21:34:40.786128+00 f t 12643 \N \N f f +11693 2025-11-07 21:38:38.657161+00 2025-11-07 21:38:38.657169+00 f t 12287 \N \N f f +11694 2025-11-07 21:54:07.705194+00 2025-11-07 21:54:07.705205+00 f t 12644 \N \N f f +11695 2025-11-07 21:54:11.927657+00 2025-11-07 21:54:11.927665+00 f t 12645 \N \N f f +11696 2025-11-07 22:09:36.973449+00 2025-11-07 22:09:36.973459+00 f t 12646 \N \N f f +11697 2025-11-07 22:11:40.859934+00 2025-11-07 22:11:40.859942+00 f t 12647 \N \N f f +11698 2025-11-07 22:15:57.64445+00 2025-11-07 22:15:57.644463+00 f t 12648 \N \N f f +11699 2025-11-07 22:24:20.207587+00 2025-11-07 22:24:20.207596+00 f t 12649 \N \N f f +11700 2025-11-07 22:26:03.158011+00 2025-11-07 22:26:03.158023+00 f t 12650 \N \N f f +11701 2025-11-07 22:26:39.114563+00 2025-11-07 22:26:39.114571+00 f t 12651 \N \N f f +11702 2025-11-07 22:27:58.578814+00 2025-11-07 22:27:58.578822+00 f t 12652 \N \N f f +11703 2025-11-07 22:32:19.008473+00 2025-11-07 22:32:19.00848+00 f t 12653 \N \N f f +11704 2025-11-07 22:36:29.506091+00 2025-11-07 22:36:29.506098+00 f t 12654 \N \N f f +11705 2025-11-07 22:40:21.164781+00 2025-11-07 22:40:21.164795+00 f t 6358 \N \N f f +11706 2025-11-07 22:45:48.504383+00 2025-11-07 22:45:48.504394+00 f t 12655 \N \N f f +11707 2025-11-07 22:56:01.760607+00 2025-11-07 22:56:01.760616+00 f t 12656 \N \N f f +11708 2025-11-07 23:08:50.062995+00 2025-11-07 23:08:50.063006+00 f t 12657 \N \N f f +11709 2025-11-07 23:09:16.243853+00 2025-11-07 23:09:16.243863+00 f t 12658 \N \N f f +11710 2025-11-07 23:16:52.082063+00 2025-11-07 23:16:52.082072+00 f t 12660 \N \N f f +11711 2025-11-07 23:20:42.565138+00 2025-11-07 23:20:42.565146+00 f t 12661 \N \N f f +11712 2025-11-07 23:35:59.500592+00 2025-11-07 23:35:59.500606+00 f t 12662 \N \N f f +11713 2025-11-08 00:35:14.066735+00 2025-11-08 00:35:14.066744+00 f t 12663 \N \N f f +11714 2025-11-08 00:39:45.810046+00 2025-11-08 00:39:45.810054+00 f t 12664 \N \N f f +11715 2025-11-08 00:49:41.183274+00 2025-11-08 00:49:41.183281+00 f t 12665 \N \N f f +13137 2025-11-21 18:16:58.948757+00 2025-11-21 18:16:58.948768+00 f t 14071 \N \N f f +11716 2025-11-08 01:25:24.170833+00 2025-11-08 01:25:24.170842+00 f t 8819 \N \N f f +11717 2025-11-08 01:31:14.478888+00 2025-11-08 01:31:14.478897+00 f t 12667 \N \N f f +11718 2025-11-08 01:35:29.112248+00 2025-11-08 01:35:29.112256+00 f t 12668 \N \N f f +11719 2025-11-08 01:42:10.543907+00 2025-11-08 01:42:10.54392+00 f t 8819 \N \N f f +11720 2025-11-08 01:50:04.855378+00 2025-11-08 01:50:04.855392+00 f t 12670 \N \N f f +11721 2025-11-08 01:53:16.777134+00 2025-11-08 01:53:16.777146+00 f t 8819 \N \N f f +11722 2025-11-08 02:18:43.799211+00 2025-11-08 02:18:43.79922+00 f t 12673 \N \N f f +11723 2025-11-08 02:22:27.448273+00 2025-11-08 02:22:27.448285+00 f t 12674 \N \N f f +11724 2025-11-08 03:24:45.957598+00 2025-11-08 03:24:45.957605+00 f t 12675 \N \N f f +11725 2025-11-08 03:59:05.941823+00 2025-11-08 03:59:05.94183+00 f t 12676 \N \N f f +11726 2025-11-08 04:12:10.211382+00 2025-11-08 04:12:10.211389+00 f t 12677 \N \N f f +11727 2025-11-08 05:29:04.377045+00 2025-11-08 05:29:04.377055+00 f t 12678 \N \N f f +11728 2025-11-08 07:57:33.976771+00 2025-11-08 07:57:33.97678+00 f t 12679 \N \N f f +11729 2025-11-08 10:06:35.859925+00 2025-11-08 10:06:35.859934+00 f t 12680 \N \N f f +11730 2025-11-08 10:07:51.449287+00 2025-11-08 10:07:51.449303+00 f t 12681 \N \N f f +11731 2025-11-08 11:14:43.165978+00 2025-11-08 11:14:43.165987+00 f t 12682 \N \N f f +11732 2025-11-08 12:07:22.998717+00 2025-11-08 12:07:22.998726+00 f t 12683 \N \N f f +11733 2025-11-08 12:24:43.746745+00 2025-11-08 12:24:43.746756+00 f t 12684 \N \N f f +11734 2025-11-08 12:29:56.560621+00 2025-11-08 12:29:56.560629+00 f t 3430 \N \N f f +11735 2025-11-08 13:00:45.432546+00 2025-11-08 13:00:45.432555+00 f t 12686 \N \N f f +11736 2025-11-08 13:04:15.170193+00 2025-11-08 13:04:15.170203+00 f t 12687 \N \N f f +11737 2025-11-08 13:05:55.980526+00 2025-11-08 13:05:55.980535+00 f t 12688 \N \N f f +11738 2025-11-08 13:19:17.212892+00 2025-11-08 13:19:17.2129+00 f t 12689 \N \N f f +11739 2025-11-08 13:23:33.180361+00 2025-11-08 13:23:33.18037+00 f t 12690 \N \N f f +11740 2025-11-08 13:29:18.007836+00 2025-11-08 13:29:18.007846+00 f t 12692 \N \N f f +11741 2025-11-08 13:36:33.432896+00 2025-11-08 13:36:33.432904+00 f t 12693 \N \N f f +11742 2025-11-08 13:39:26.570632+00 2025-11-08 13:39:26.570643+00 f t 12694 \N \N f f +11743 2025-11-08 14:01:58.704277+00 2025-11-08 14:01:58.704285+00 f t 12695 \N \N f f +11744 2025-11-08 14:04:31.344582+00 2025-11-08 14:04:31.344595+00 f t 12696 \N \N f f +11745 2025-11-08 14:22:28.650378+00 2025-11-08 14:22:28.650389+00 f t 12698 \N \N f f +11746 2025-11-08 14:24:56.041845+00 2025-11-08 14:24:56.041855+00 f t 12699 \N \N f f +11747 2025-11-08 14:36:10.586386+00 2025-11-08 14:36:10.586386+00 f t 12700 \N \N f f +11748 2025-11-08 14:37:07.448963+00 2025-11-08 14:37:07.448971+00 f t 12701 \N \N f f +11750 2025-11-08 14:47:00.661311+00 2025-11-08 14:47:00.661319+00 f t 12703 \N \N f f +11751 2025-11-08 14:55:55.638887+00 2025-11-08 14:55:55.638896+00 f t 12704 \N \N f f +11752 2025-11-08 15:23:57.812284+00 2025-11-08 15:23:57.812293+00 f t 12705 \N \N f f +11753 2025-11-08 15:26:05.128152+00 2025-11-08 15:26:05.128167+00 f t 12684 \N \N f f +11754 2025-11-08 15:29:33.822037+00 2025-11-08 15:29:33.822046+00 f t 12706 \N \N f f +11755 2025-11-08 15:35:24.402955+00 2025-11-08 15:35:24.402963+00 f t 12707 \N \N f f +11756 2025-11-08 15:42:02.746091+00 2025-11-08 15:42:02.746091+00 f t 12708 \N \N f f +11757 2025-11-08 15:50:38.821118+00 2025-11-08 15:50:38.821126+00 f t 12709 \N \N f f +11758 2025-11-08 15:52:10.370602+00 2025-11-08 15:52:10.370613+00 f t 12710 \N \N f f +11759 2025-11-08 15:55:11.260332+00 2025-11-08 15:55:11.26034+00 f t 12711 \N \N f f +11760 2025-11-08 16:02:34.597506+00 2025-11-08 16:02:34.597518+00 f t 12712 \N \N f f +11761 2025-11-08 16:05:25.673219+00 2025-11-08 16:05:25.673227+00 f t 12713 \N \N f f +11762 2025-11-08 16:34:54.56546+00 2025-11-08 16:34:54.565467+00 f t 12714 \N \N f f +11763 2025-11-08 17:07:40.301221+00 2025-11-08 17:07:40.301234+00 f t 12715 \N \N f f +11764 2025-11-08 17:08:52.092953+00 2025-11-08 17:08:52.092965+00 f t 12716 \N \N f f +11765 2025-11-08 17:10:23.882867+00 2025-11-08 17:10:23.882876+00 f t 12717 \N \N f f +11766 2025-11-08 17:12:40.911597+00 2025-11-08 17:12:40.911605+00 f t 12718 \N \N f f +11767 2025-11-08 17:15:34.700492+00 2025-11-08 17:15:34.7005+00 f t 12720 \N \N f f +11768 2025-11-08 17:26:38.064024+00 2025-11-08 17:26:38.064036+00 f t 12721 \N \N f f +11769 2025-11-08 17:42:32.296347+00 2025-11-08 17:42:32.296355+00 f t 12722 \N 5 f f +11770 2025-11-08 18:07:10.48905+00 2025-11-08 18:07:10.489063+00 f t 12723 \N \N f f +11771 2025-11-08 18:18:31.199676+00 2025-11-08 18:18:31.199688+00 f t 12724 \N \N f f +11772 2025-11-08 18:24:56.627977+00 2025-11-08 18:24:56.627988+00 f t 12726 \N \N f f +11773 2025-11-08 18:26:31.038568+00 2025-11-08 18:26:31.03858+00 f t 12727 \N \N f f +11774 2025-11-08 18:32:56.415436+00 2025-11-08 18:32:56.415446+00 f t 12728 \N \N f f +11775 2025-11-08 18:35:01.163211+00 2025-11-08 18:35:01.163219+00 f t 12729 \N \N f f +11776 2025-11-08 18:39:26.042935+00 2025-11-08 18:39:26.042943+00 f t 12527 \N \N f f +11777 2025-11-08 19:00:14.357489+00 2025-11-08 19:00:14.3575+00 f t 12730 \N \N f f +11778 2025-11-08 19:02:42.160098+00 2025-11-08 19:02:42.160109+00 f t 12731 \N \N f f +11779 2025-11-08 19:06:49.684363+00 2025-11-08 19:06:49.684372+00 f t 12732 \N \N f f +11780 2025-11-08 19:11:22.75284+00 2025-11-08 19:11:22.752851+00 f t 12624 \N \N f f +11781 2025-11-08 19:25:55.30622+00 2025-11-08 19:25:55.306228+00 f t 12733 \N \N f f +11782 2025-11-08 19:35:13.953716+00 2025-11-08 19:35:13.953727+00 f t 11855 \N \N f f +11783 2025-11-08 19:48:53.587519+00 2025-11-08 19:48:53.587527+00 f t 12446 \N \N f f +11784 2025-11-08 19:50:02.160809+00 2025-11-08 19:50:02.160823+00 f t 12446 \N \N f f +11785 2025-11-08 20:13:00.837776+00 2025-11-08 20:13:00.837788+00 f t 12734 \N \N f f +11786 2025-11-08 20:22:56.618286+00 2025-11-08 20:22:56.618294+00 f t 12735 \N \N f f +11787 2025-11-08 20:32:19.295413+00 2025-11-08 20:32:19.295421+00 f t 12736 \N \N f f +11788 2025-11-08 21:06:18.458631+00 2025-11-08 21:06:18.458642+00 f t 12737 \N \N f f +11789 2025-11-08 21:09:20.513964+00 2025-11-08 21:09:20.513975+00 f t 12738 \N \N f f +11790 2025-11-08 21:10:20.210477+00 2025-11-08 21:10:20.210485+00 f t 12739 \N \N f f +11791 2025-11-08 21:21:24.287625+00 2025-11-08 21:21:24.287633+00 f t 12740 \N \N f f +11792 2025-11-08 21:57:19.678519+00 2025-11-08 21:57:19.678526+00 f t 12741 \N \N f f +11793 2025-11-08 22:02:55.06522+00 2025-11-08 22:02:55.065228+00 f t 12742 \N \N f f +11794 2025-11-08 22:03:54.271823+00 2025-11-08 22:03:54.271834+00 f t 12743 \N \N f f +11795 2025-11-08 22:15:59.760207+00 2025-11-08 22:15:59.76022+00 f t 12744 \N \N f f +11796 2025-11-08 23:01:26.202408+00 2025-11-08 23:01:26.20242+00 f t 12745 \N \N f f +11797 2025-11-09 00:12:25.135917+00 2025-11-09 00:12:25.135926+00 f t 12746 \N \N f f +11798 2025-11-09 00:19:20.377223+00 2025-11-09 00:19:20.377239+00 f t 12747 \N \N f f +11799 2025-11-09 00:31:51.936545+00 2025-11-09 00:31:51.936553+00 f t 12748 \N \N f f +11800 2025-11-09 00:34:57.532616+00 2025-11-09 00:34:57.532628+00 f t 12749 \N \N f f +11801 2025-11-09 01:04:28.204226+00 2025-11-09 01:04:28.204234+00 f t 12750 \N \N f f +11802 2025-11-09 01:16:56.059816+00 2025-11-09 01:16:56.059826+00 f t 12751 \N \N f f +11749 2025-11-09 01:19:22.7505+00 2025-11-09 01:19:22.7505+00 f t 12702 \N \N f f +11803 2025-11-09 01:23:44.18691+00 2025-11-09 01:23:44.18691+00 f t 12752 \N \N f f +11804 2025-11-09 01:41:21.252847+00 2025-11-09 01:41:21.252862+00 f t 12753 \N \N f f +11805 2025-11-09 01:59:19.226446+00 2025-11-09 01:59:19.226454+00 f t 12754 \N \N f f +11806 2025-11-09 02:26:39.446262+00 2025-11-09 02:26:39.44627+00 f t 12755 \N \N f f +11807 2025-11-09 02:30:49.592376+00 2025-11-09 02:30:49.592384+00 f t 12756 \N \N f f +11808 2025-11-09 03:05:33.829636+00 2025-11-09 03:05:33.829645+00 f t 12757 \N \N f f +11809 2025-11-09 03:53:40.321894+00 2025-11-09 03:53:40.321894+00 f t 12758 \N \N f f +11811 2025-11-09 03:55:26.095636+00 2025-11-09 03:55:26.095644+00 f t 12760 \N \N f f +11810 2025-11-09 03:55:29.882981+00 2025-11-09 03:55:29.882981+00 f t 12759 \N \N f f +11812 2025-11-09 03:56:00.786448+00 2025-11-09 03:56:00.786455+00 f t 12761 \N \N f f +11813 2025-11-09 04:07:16.591324+00 2025-11-09 04:07:16.591335+00 f t 12762 \N \N f f +11814 2025-11-09 04:14:19.065133+00 2025-11-09 04:14:19.065142+00 f t 12763 \N \N f f +11815 2025-11-09 04:15:01.971083+00 2025-11-09 04:15:01.971098+00 f t 12764 \N \N f f +11816 2025-11-09 05:21:50.216305+00 2025-11-09 05:21:50.216314+00 f t 12765 \N \N f f +11817 2025-11-09 06:08:29.574384+00 2025-11-09 06:08:29.574396+00 f t 12766 \N \N f f +11818 2025-11-09 06:26:37.054863+00 2025-11-09 06:26:37.054873+00 f t 12767 \N \N f f +11819 2025-11-09 10:12:39.448504+00 2025-11-09 10:12:39.448512+00 f t 12768 \N \N f f +11820 2025-11-09 10:36:25.686213+00 2025-11-09 10:36:25.686221+00 f t 8819 \N \N f f +11821 2025-11-09 11:40:57.66075+00 2025-11-09 11:40:57.66076+00 f t 12769 \N \N f f +11822 2025-11-09 13:03:12.06332+00 2025-11-09 13:03:12.063329+00 f t 12770 \N \N f f +11823 2025-11-09 13:05:22.796136+00 2025-11-09 13:05:22.796144+00 f t 12771 \N \N f f +11824 2025-11-09 13:24:40.370471+00 2025-11-09 13:24:40.370479+00 f t 12772 \N \N f f +11853 2025-11-09 19:32:15.062285+00 2025-11-09 19:32:15.062298+00 f t 12802 \N \N f f +11826 2025-11-09 13:37:44.018788+00 2025-11-09 13:37:44.018797+00 f t 12774 \N \N f f +11825 2025-11-09 13:42:48.459357+00 2025-11-09 13:42:48.459357+00 f t 12773 \N \N f f +11827 2025-11-09 13:59:17.357664+00 2025-11-09 13:59:17.357672+00 f t 12775 \N \N f f +11828 2025-11-09 14:02:52.918497+00 2025-11-09 14:02:52.918508+00 f t 12776 \N \N f f +11829 2025-11-09 14:07:05.74866+00 2025-11-09 14:07:05.748669+00 f t 12777 \N \N f f +11830 2025-11-09 14:18:41.345485+00 2025-11-09 14:18:41.345493+00 f t 12778 \N \N f f +11831 2025-11-09 14:32:54.890905+00 2025-11-09 14:32:54.890913+00 f t 12779 \N \N f f +11832 2025-11-09 14:44:50.787321+00 2025-11-09 14:44:50.787331+00 f t 12780 \N \N f f +11833 2025-11-09 14:46:14.100172+00 2025-11-09 14:46:14.100181+00 f t 12781 \N \N f f +11834 2025-11-09 14:53:19.24995+00 2025-11-09 14:53:19.24996+00 f t 12782 \N \N f f +11835 2025-11-09 14:53:32.161516+00 2025-11-09 14:53:32.161527+00 f t 12783 \N \N f f +11836 2025-11-09 14:56:46.682049+00 2025-11-09 14:56:46.682056+00 f t 12785 \N \N f f +11837 2025-11-09 15:58:48.892303+00 2025-11-09 15:58:48.892311+00 f t 12787 \N \N f f +11838 2025-11-09 16:00:47.811563+00 2025-11-09 16:00:47.811574+00 f t 12788 \N \N f f +11839 2025-11-09 16:02:39.210486+00 2025-11-09 16:02:39.210494+00 f t 12789 \N \N f f +11841 2025-11-09 16:11:43.600904+00 2025-11-09 16:11:43.600911+00 f t 12791 \N \N f f +11840 2025-11-09 16:14:39.01964+00 2025-11-09 16:14:39.01964+00 f t 12790 \N \N f f +11842 2025-11-09 16:15:13.733206+00 2025-11-09 16:15:13.733217+00 f t 12792 \N \N f f +11843 2025-11-09 16:17:12.472588+00 2025-11-09 16:17:12.4726+00 f t 12793 \N \N f f +11844 2025-11-09 17:02:36.946102+00 2025-11-09 17:02:36.946115+00 f t 12794 \N \N f f +11845 2025-11-09 17:54:22.156811+00 2025-11-09 17:54:22.15682+00 f t 12795 \N \N f f +11846 2025-11-09 17:59:14.239561+00 2025-11-09 17:59:14.239573+00 f t 12796 \N \N f f +11847 2025-11-09 18:02:50.266391+00 2025-11-09 18:02:50.266398+00 f t 12797 \N \N f f +11848 2025-11-09 18:06:37.528201+00 2025-11-09 18:06:37.528209+00 f t 12798 \N \N f f +11849 2025-11-09 18:21:05.947977+00 2025-11-09 18:21:05.947989+00 f t 12799 \N \N f f +11850 2025-11-09 19:08:09.924101+00 2025-11-09 19:08:09.92411+00 f t 12800 \N \N f f +11851 2025-11-09 19:14:53.45494+00 2025-11-09 19:14:53.454948+00 f t 12801 \N \N f f +11852 2025-11-09 19:29:42.187321+00 2025-11-09 19:29:42.187331+00 f t 12802 \N \N f f +11854 2025-11-09 19:42:58.456444+00 2025-11-09 19:42:58.456451+00 f t 12803 \N \N f f +11855 2025-11-09 19:43:29.902282+00 2025-11-09 19:43:29.902288+00 f t 12803 \N \N f f +11856 2025-11-09 19:43:48.94022+00 2025-11-09 19:43:48.940228+00 f t 12803 \N \N f f +11857 2025-11-09 19:50:17.687823+00 2025-11-09 19:50:17.687831+00 f t 12804 \N \N f f +11858 2025-11-09 19:53:24.121893+00 2025-11-09 19:53:24.121901+00 f t 12805 \N \N f f +11859 2025-11-09 19:56:34.087584+00 2025-11-09 19:56:34.087598+00 f t 12806 \N \N f f +11860 2025-11-09 19:58:25.931495+00 2025-11-09 19:58:25.931504+00 f t 12807 \N \N f f +11861 2025-11-09 20:03:48.051917+00 2025-11-09 20:03:48.051925+00 f t 9712 \N \N f f +11862 2025-11-09 20:07:28.550323+00 2025-11-09 20:07:28.550331+00 f t 12809 \N \N f f +11863 2025-11-09 20:10:07.503847+00 2025-11-09 20:10:07.503856+00 f t 12810 \N \N f f +11864 2025-11-09 20:23:40.820015+00 2025-11-09 20:23:40.820022+00 f t 12811 \N \N f f +11865 2025-11-09 20:25:10.030941+00 2025-11-09 20:25:10.030941+00 f t 12812 \N \N f f +11866 2025-11-09 20:32:16.406668+00 2025-11-09 20:32:16.406676+00 f t 12813 \N \N f f +11867 2025-11-09 22:10:59.752437+00 2025-11-09 22:10:59.752445+00 f t 12814 \N \N f f +11868 2025-11-09 22:21:19.011312+00 2025-11-09 22:21:19.011312+00 f t 12815 \N \N f f +11869 2025-11-09 22:23:12.351236+00 2025-11-09 22:23:12.351244+00 f t 12816 \N \N f f +11870 2025-11-10 00:21:50.668959+00 2025-11-10 00:21:50.668968+00 f t 12817 \N \N f f +11871 2025-11-10 00:46:02.463416+00 2025-11-10 00:46:02.463427+00 f t 12818 \N \N f f +11873 2025-11-10 01:26:33.261054+00 2025-11-10 01:26:33.261064+00 f t 12820 \N \N f f +11951 2025-11-10 20:13:47.716845+00 2025-11-10 20:13:47.716855+00 f t 12899 \N \N f f +11872 2025-11-10 01:29:51.698143+00 2025-11-10 01:29:51.698143+00 f t 12819 \N \N f f +11874 2025-11-10 02:40:08.923352+00 2025-11-10 02:40:08.923352+00 f t 12822 \N \N f f +11875 2025-11-10 02:56:50.089354+00 2025-11-10 02:56:50.089363+00 f t 12823 \N \N f f +11876 2025-11-10 03:09:24.238395+00 2025-11-10 03:09:24.238407+00 f t 12824 \N \N f f +11877 2025-11-10 03:17:04.06968+00 2025-11-10 03:17:04.069691+00 f t 12825 \N \N f f +11878 2025-11-10 03:20:42.606178+00 2025-11-10 03:20:42.60619+00 f t 12826 \N \N f f +11879 2025-11-10 03:34:20.601237+00 2025-11-10 03:34:20.601249+00 f t 12827 \N \N f f +11880 2025-11-10 03:44:13.495278+00 2025-11-10 03:44:13.495285+00 f t 12828 \N \N f f +11881 2025-11-10 03:57:18.944398+00 2025-11-10 03:57:18.944407+00 f t 12829 \N \N f f +11882 2025-11-10 04:01:19.347268+00 2025-11-10 04:01:19.347281+00 f t 12831 \N \N f f +11883 2025-11-10 04:38:56.545971+00 2025-11-10 04:38:56.545979+00 f t 12832 \N \N f f +11884 2025-11-10 04:58:24.179969+00 2025-11-10 04:58:24.17998+00 f t 12833 \N \N f f +11885 2025-11-10 05:37:10.910127+00 2025-11-10 05:37:10.910135+00 f t 12834 \N \N f f +11886 2025-11-10 07:58:10.068102+00 2025-11-10 07:58:10.068113+00 f t 12835 \N \N f f +11887 2025-11-10 08:12:02.733013+00 2025-11-10 08:12:02.733024+00 f t 12836 \N \N f f +11888 2025-11-10 08:57:32.122526+00 2025-11-10 08:57:32.122534+00 f t 12837 \N \N f f +11889 2025-11-10 09:32:03.431349+00 2025-11-10 09:32:03.431359+00 f t 12838 \N \N f f +11890 2025-11-10 09:45:55.044182+00 2025-11-10 09:45:55.044193+00 f t 12839 \N \N f f +11891 2025-11-10 10:16:21.238253+00 2025-11-10 10:16:21.238261+00 f t 12840 \N \N f f +11892 2025-11-10 10:31:23.475897+00 2025-11-10 10:31:23.475903+00 f t 12841 \N \N f f +11893 2025-11-10 10:58:15.045156+00 2025-11-10 10:58:15.045165+00 f t 12842 \N \N f f +11894 2025-11-10 11:02:33.840136+00 2025-11-10 11:02:33.840145+00 f t 12843 \N \N f f +11895 2025-11-10 11:06:31.519507+00 2025-11-10 11:06:31.519554+00 f t 12844 \N \N f f +11896 2025-11-10 11:09:14.27834+00 2025-11-10 11:09:14.278349+00 f t 12845 \N \N f f +11897 2025-11-10 11:43:29.60833+00 2025-11-10 11:43:29.608338+00 f t 12846 \N \N f f +11898 2025-11-10 11:53:15.676265+00 2025-11-10 11:53:15.676272+00 f t 12847 \N \N f f +11899 2025-11-10 11:58:29.072598+00 2025-11-10 11:58:29.07261+00 f t 12848 \N \N f f +11900 2025-11-10 12:26:10.339551+00 2025-11-10 12:26:10.339558+00 f t 12849 \N \N f f +11901 2025-11-10 12:40:45.824037+00 2025-11-10 12:40:45.824046+00 f t 12850 \N \N f f +11902 2025-11-10 12:58:07.849384+00 2025-11-10 12:58:07.849394+00 f t 12851 \N \N f f +11903 2025-11-10 13:46:28.599312+00 2025-11-10 13:46:28.599322+00 f t 12684 \N \N f f +11904 2025-11-10 13:56:38.178891+00 2025-11-10 13:56:38.1789+00 f t 12853 \N \N f f +11905 2025-11-10 14:03:14.786611+00 2025-11-10 14:03:14.786618+00 f t 12854 \N \N f f +11906 2025-11-10 14:08:22.430317+00 2025-11-10 14:08:22.430324+00 f t 12855 \N \N f f +11907 2025-11-10 14:11:56.382535+00 2025-11-10 14:11:56.382544+00 f t 12856 \N \N f f +11908 2025-11-10 14:21:01.907616+00 2025-11-10 14:21:01.907626+00 f t 7243 \N \N f f +11909 2025-11-10 14:31:27.868497+00 2025-11-10 14:31:27.868505+00 f t 12857 \N \N f f +11910 2025-11-10 14:35:26.035883+00 2025-11-10 14:35:26.035891+00 f t 12858 \N \N f f +11911 2025-11-10 14:43:41.838893+00 2025-11-10 14:43:41.8389+00 f t 12860 \N \N f f +11912 2025-11-10 14:53:41.983061+00 2025-11-10 14:53:41.983071+00 f t 12861 \N \N f f +11913 2025-11-10 15:03:34.376697+00 2025-11-10 15:03:34.376709+00 f t 12862 \N \N f f +11914 2025-11-10 15:13:16.702233+00 2025-11-10 15:13:16.702241+00 f t 12863 \N \N f f +11915 2025-11-10 15:15:06.855745+00 2025-11-10 15:15:06.855759+00 f t 12864 \N \N f f +11916 2025-11-10 15:15:58.09263+00 2025-11-10 15:15:58.092637+00 f t 12865 \N \N f f +11917 2025-11-10 15:28:22.697959+00 2025-11-10 15:28:22.697968+00 f t 12866 \N \N f f +11918 2025-11-10 15:33:51.243001+00 2025-11-10 15:33:51.243011+00 f t 12868 \N \N f f +11919 2025-11-10 15:52:57.925236+00 2025-11-10 15:52:57.925247+00 f t 12869 \N \N f f +11920 2025-11-10 16:05:19.936639+00 2025-11-10 16:05:19.936651+00 f t 12870 \N \N f f +11921 2025-11-10 16:06:25.720061+00 2025-11-10 16:06:25.72007+00 f t 12871 \N \N f f +11922 2025-11-10 16:18:29.573755+00 2025-11-10 16:18:29.573755+00 f t 12872 \N \N f f +11923 2025-11-10 16:20:17.49566+00 2025-11-10 16:20:17.49567+00 f t 12873 \N \N f f +11924 2025-11-10 16:28:54.931414+00 2025-11-10 16:28:54.931423+00 f t 12874 \N \N f f +11925 2025-11-10 16:30:50.511121+00 2025-11-10 16:30:50.511168+00 f t 12875 \N \N f f +11926 2025-11-10 16:49:07.899113+00 2025-11-10 16:49:07.899125+00 f t 12877 \N \N f f +11927 2025-11-10 16:52:47.528052+00 2025-11-10 16:52:47.528059+00 f t 12878 \N \N f f +11928 2025-11-10 17:17:36.282453+00 2025-11-10 17:17:36.282461+00 f t 12879 \N \N f f +11929 2025-11-10 17:18:10.358047+00 2025-11-10 17:18:10.358055+00 f t 12880 \N \N f f +11930 2025-11-10 17:18:30.22047+00 2025-11-10 17:18:30.220478+00 f t 12881 \N \N f f +11931 2025-11-10 17:19:21.408634+00 2025-11-10 17:19:21.408641+00 f t 12882 \N \N f f +11932 2025-11-10 17:21:31.66715+00 2025-11-10 17:21:31.667158+00 f t 12883 \N \N f f +11933 2025-11-10 17:28:21.559913+00 2025-11-10 17:28:21.559924+00 f t 12884 \N \N f f +11934 2025-11-10 17:35:10.149216+00 2025-11-10 17:35:10.149224+00 f t 12885 \N \N f f +11935 2025-11-10 17:51:33.976197+00 2025-11-10 17:51:33.976203+00 f t 12886 \N \N f f +11936 2025-11-10 17:58:06.536427+00 2025-11-10 17:58:06.536435+00 f t 12887 \N \N f f +11937 2025-11-10 17:58:43.65717+00 2025-11-10 17:58:43.657178+00 f t 12888 \N \N f f +11938 2025-11-10 19:16:58.719865+00 2025-11-10 19:16:58.719874+00 f t 12889 \N \N f f +11939 2025-11-10 19:17:33.368016+00 2025-11-10 19:17:33.368024+00 f t 12890 \N \N f f +11940 2025-11-10 19:36:16.966618+00 2025-11-10 19:36:16.966626+00 f t 12891 \N \N f f +11941 2025-11-10 19:40:40.871231+00 2025-11-10 19:40:40.871238+00 f t 12892 \N \N f f +11942 2025-11-10 19:53:50.76361+00 2025-11-10 19:53:50.763618+00 f t 12866 \N \N f f +11943 2025-11-10 19:54:40.358514+00 2025-11-10 19:54:40.358524+00 f t 12866 \N \N f f +11944 2025-11-10 19:57:34.194472+00 2025-11-10 19:57:34.194488+00 f t 12866 \N \N f f +11945 2025-11-10 19:58:10.512705+00 2025-11-10 19:58:10.512716+00 f t 12893 \N \N f f +11946 2025-11-10 19:58:35.722714+00 2025-11-10 19:58:35.722725+00 f t 12894 \N \N f f +11947 2025-11-10 20:00:52.196054+00 2025-11-10 20:00:52.196063+00 f t 12895 \N \N f f +11948 2025-11-10 20:01:52.160887+00 2025-11-10 20:01:52.160896+00 f t 12896 \N \N f f +11949 2025-11-10 20:12:17.623054+00 2025-11-10 20:12:17.623061+00 f t 12897 \N \N f f +11950 2025-11-10 20:13:47.015711+00 2025-11-10 20:13:47.015722+00 f t 12898 \N \N f f +11952 2025-11-10 20:17:13.91998+00 2025-11-10 20:17:13.919994+00 f t 12900 \N \N f f +11953 2025-11-10 20:19:55.246804+00 2025-11-10 20:19:55.246813+00 f t 12903 \N \N f f +11954 2025-11-10 20:21:09.407974+00 2025-11-10 20:21:09.407983+00 f t 12904 \N \N f f +11955 2025-11-10 20:22:26.045232+00 2025-11-10 20:22:26.04524+00 f t 12905 \N \N f f +11956 2025-11-10 20:27:11.22481+00 2025-11-10 20:27:11.224818+00 f t 12906 \N \N f f +11957 2025-11-10 20:40:05.386467+00 2025-11-10 20:40:05.386481+00 f t 12907 \N \N f f +11958 2025-11-10 20:44:18.022638+00 2025-11-10 20:44:18.022645+00 f t 12908 \N \N f f +11959 2025-11-10 20:50:10.03372+00 2025-11-10 20:50:10.033733+00 f t 12910 \N \N f f +11960 2025-11-10 21:05:36.299109+00 2025-11-10 21:05:36.29912+00 f t 12911 \N \N f f +11961 2025-11-10 21:10:06.704005+00 2025-11-10 21:10:06.704018+00 f t 12912 \N \N f f +11962 2025-11-10 21:15:01.520757+00 2025-11-10 21:15:01.52077+00 f t 12913 \N \N f f +11963 2025-11-10 21:16:14.631613+00 2025-11-10 21:16:14.63162+00 f t 12914 \N \N f f +11964 2025-11-10 21:18:36.983861+00 2025-11-10 21:18:36.983873+00 f t 12915 \N \N f f +11965 2025-11-10 21:26:17.39959+00 2025-11-10 21:26:17.399598+00 f t 12916 \N \N f f +11966 2025-11-10 21:26:26.893774+00 2025-11-10 21:26:26.893782+00 f t 12917 \N \N f f +11967 2025-11-10 21:28:22.335524+00 2025-11-10 21:28:22.335533+00 f t 12918 \N \N f f +11968 2025-11-10 21:31:08.373968+00 2025-11-10 21:31:08.37398+00 f t 12919 \N \N f f +11969 2025-11-10 21:34:53.906104+00 2025-11-10 21:34:53.906111+00 f t 12702 \N \N f f +11970 2025-11-10 21:37:30.936814+00 2025-11-10 21:37:30.93682+00 f t 12920 \N \N f f +11971 2025-11-10 21:41:12.124086+00 2025-11-10 21:41:12.124096+00 f t 12921 \N \N f f +11972 2025-11-10 22:00:46.277224+00 2025-11-10 22:00:46.277233+00 f t 12922 \N \N f f +11973 2025-11-10 22:25:38.376411+00 2025-11-10 22:25:38.376442+00 f t 12923 \N \N f f +11974 2025-11-10 22:39:28.446074+00 2025-11-10 22:39:28.446081+00 f t 12924 \N \N f f +11975 2025-11-10 22:40:36.217001+00 2025-11-10 22:40:36.217008+00 f t 12925 \N \N f f +11976 2025-11-10 22:53:47.157745+00 2025-11-10 22:53:47.157757+00 f t 12926 \N \N f f +11977 2025-11-10 23:11:23.843837+00 2025-11-10 23:11:23.843846+00 f t 12927 \N \N f f +11978 2025-11-10 23:15:16.43882+00 2025-11-10 23:15:16.43883+00 f t 12928 \N \N f f +11979 2025-11-10 23:37:18.384584+00 2025-11-10 23:37:18.384591+00 f t 12929 \N \N f f +11980 2025-11-10 23:40:42.21267+00 2025-11-10 23:40:42.212678+00 f t 11855 \N \N f f +11981 2025-11-10 23:48:45.195152+00 2025-11-10 23:48:45.195163+00 f t 12930 \N \N f f +11982 2025-11-10 23:58:41.20074+00 2025-11-10 23:58:41.200748+00 f t 7436 \N \N f f +11983 2025-11-11 00:18:09.495783+00 2025-11-11 00:18:09.495797+00 f t 12932 \N \N f f +11984 2025-11-11 00:48:11.337126+00 2025-11-11 00:48:11.337134+00 f t 12933 \N \N f f +11985 2025-11-11 00:59:52.387842+00 2025-11-11 00:59:52.38785+00 f t 12934 \N \N f f +11986 2025-11-11 01:17:26.098485+00 2025-11-11 01:17:26.098494+00 f t 12935 \N \N f f +11987 2025-11-11 01:40:01.237415+00 2025-11-11 01:40:01.237428+00 f t 12936 \N \N f f +11988 2025-11-11 02:05:47.480783+00 2025-11-11 02:05:47.48079+00 f t 12937 \N \N f f +11989 2025-11-11 02:51:16.136882+00 2025-11-11 02:51:16.136889+00 f t 12938 \N \N f f +11990 2025-11-11 02:52:33.001851+00 2025-11-11 02:52:33.001859+00 f t 12939 \N \N f f +11992 2025-11-11 02:55:34.828683+00 2025-11-11 02:55:34.828683+00 f t 12941 \N \N f f +11993 2025-11-11 02:55:47.823389+00 2025-11-11 02:55:47.823398+00 f t 12942 \N \N f f +11991 2025-11-11 02:56:17.516879+00 2025-11-11 02:56:17.516879+00 f t 12940 \N \N f f +11994 2025-11-11 03:37:41.515344+00 2025-11-11 03:37:41.515353+00 f t 12944 \N \N f f +11995 2025-11-11 03:49:40.294725+00 2025-11-11 03:49:40.294732+00 f t 12945 \N \N f f +11996 2025-11-11 05:56:41.842202+00 2025-11-11 05:56:41.842211+00 f t 12946 \N \N f f +11997 2025-11-11 07:46:26.965127+00 2025-11-11 07:46:26.965134+00 f t 12947 \N \N f f +11998 2025-11-11 08:02:35.800564+00 2025-11-11 08:02:35.800572+00 f t 12948 \N \N f f +11999 2025-11-11 10:05:26.190121+00 2025-11-11 10:05:26.190134+00 f t 12949 \N \N f f +12000 2025-11-11 10:22:42.499906+00 2025-11-11 10:22:42.499913+00 f t 12950 \N \N f f +12001 2025-11-11 10:30:06.76047+00 2025-11-11 10:30:06.760484+00 f t 12951 \N \N f f +12002 2025-11-11 10:39:47.652067+00 2025-11-11 10:39:47.652074+00 f t 12952 \N \N f f +12003 2025-11-11 10:42:40.574063+00 2025-11-11 10:42:40.574071+00 f t 12953 \N \N f f +12004 2025-11-11 10:49:12.672804+00 2025-11-11 10:49:12.672815+00 f t 12955 \N \N f f +12005 2025-11-11 10:57:42.685014+00 2025-11-11 10:57:42.685023+00 f t 12956 \N \N f f +12006 2025-11-11 11:07:46.570506+00 2025-11-11 11:07:46.570514+00 f t 12957 \N \N f f +12007 2025-11-11 12:38:31.115685+00 2025-11-11 12:38:31.115692+00 f t 12958 \N \N f f +12008 2025-11-11 12:57:31.820447+00 2025-11-11 12:57:31.820455+00 f t 12959 \N \N f f +12009 2025-11-11 13:01:29.663081+00 2025-11-11 13:01:29.664059+00 f t 12960 \N \N f f +12010 2025-11-11 13:02:56.629963+00 2025-11-11 13:02:56.631005+00 f t 12961 \N \N f f +12011 2025-11-11 13:03:34.450339+00 2025-11-11 13:03:34.450349+00 f t 12962 \N \N f f +12012 2025-11-11 13:09:02.386721+00 2025-11-11 13:09:02.386735+00 f t 12963 \N \N f f +12013 2025-11-11 13:17:50.76479+00 2025-11-11 13:17:50.764803+00 f t 12964 \N \N f f +12014 2025-11-11 13:27:18.745209+00 2025-11-11 13:27:18.745221+00 f t 12802 \N \N f f +12015 2025-11-11 13:30:07.385972+00 2025-11-11 13:30:07.385981+00 f t 12965 \N \N f f +12016 2025-11-11 13:36:39.162644+00 2025-11-11 13:36:39.162652+00 f t 12966 \N \N f f +12017 2025-11-11 13:54:07.03394+00 2025-11-11 13:54:07.033949+00 f t 12967 \N \N f f +12018 2025-11-11 13:54:49.501566+00 2025-11-11 13:54:49.501573+00 f t 12802 \N \N f f +12019 2025-11-11 14:17:04.527591+00 2025-11-11 14:17:04.5276+00 f t 12684 \N \N f f +12020 2025-11-11 14:17:07.434342+00 2025-11-11 14:17:07.43435+00 f t 12684 \N \N f f +12021 2025-11-11 14:17:52.097083+00 2025-11-11 14:17:52.097093+00 f t 10879 \N \N f f +12022 2025-11-11 14:29:09.62766+00 2025-11-11 14:29:09.627671+00 f t 12968 \N \N f f +12023 2025-11-11 14:32:22.03971+00 2025-11-11 14:32:22.039717+00 f t 12969 \N \N f f +12024 2025-11-11 14:34:34.40535+00 2025-11-11 14:34:34.40536+00 f t 12970 \N \N f f +12025 2025-11-11 14:35:41.375488+00 2025-11-11 14:35:41.375498+00 f t 12971 \N \N f f +12026 2025-11-11 14:48:25.881973+00 2025-11-11 14:48:25.881986+00 f t 12972 \N \N f f +12027 2025-11-11 14:51:33.583406+00 2025-11-11 14:51:33.583414+00 f t 12973 \N \N f f +12028 2025-11-11 14:57:26.284925+00 2025-11-11 14:57:26.284935+00 f t 12975 \N \N f f +12029 2025-11-11 15:00:34.453495+00 2025-11-11 15:00:34.453504+00 f t 12976 \N \N f f +12030 2025-11-11 15:01:26.59984+00 2025-11-11 15:01:26.599848+00 f t 12977 \N \N f f +12031 2025-11-11 15:56:56.770634+00 2025-11-11 15:56:56.770634+00 f t 12978 \N \N f f +12032 2025-11-11 15:57:52.532704+00 2025-11-11 15:57:52.532715+00 f t 12980 \N \N f f +12033 2025-11-11 16:40:49.85739+00 2025-11-11 16:40:49.857402+00 f t 12981 \N \N f f +12034 2025-11-11 17:13:50.480543+00 2025-11-11 17:13:50.48055+00 f t 12982 \N \N f f +12035 2025-11-11 17:14:50.18477+00 2025-11-11 17:14:50.184777+00 f t 12983 \N \N f f +12036 2025-11-11 17:19:04.341755+00 2025-11-11 17:19:04.341763+00 f t 12984 \N \N f f +12037 2025-11-11 17:24:34.992265+00 2025-11-11 17:24:34.992272+00 f t 12985 \N \N f f +12038 2025-11-11 18:22:28.215588+00 2025-11-11 18:22:28.2156+00 f t 12986 \N \N f f +12039 2025-11-11 18:22:30.092252+00 2025-11-11 18:22:30.092261+00 f t 12987 \N \N f f +12040 2025-11-11 18:24:47.126512+00 2025-11-11 18:24:47.126522+00 f t 12810 \N \N f f +12046 2025-11-11 19:19:44.986614+00 2025-11-11 19:19:44.986622+00 f t 12994 \N \N f f +12041 2025-11-11 18:51:09.206083+00 2025-11-11 18:51:09.206083+00 f t 12988 \N \N f f +12042 2025-11-11 18:51:22.056222+00 2025-11-11 18:51:22.05623+00 f t 12989 \N \N f f +12043 2025-11-11 19:00:25.418033+00 2025-11-11 19:00:25.418045+00 f t 12990 \N \N f f +12044 2025-11-11 19:01:09.999621+00 2025-11-11 19:01:09.999631+00 f t 12991 \N \N f f +12045 2025-11-11 19:16:42.074831+00 2025-11-11 19:16:42.074831+00 f t 12993 \N \N f f +12047 2025-11-11 19:40:46.201349+00 2025-11-11 19:40:46.20136+00 f t 4774 \N \N f f +12048 2025-11-11 19:51:39.101733+00 2025-11-11 19:51:39.101743+00 f t 12995 \N \N f f +12049 2025-11-11 20:04:50.545714+00 2025-11-11 20:04:50.545722+00 f t 12996 \N \N f f +12050 2025-11-11 20:05:54.382779+00 2025-11-11 20:05:54.38279+00 f t 12997 \N \N f f +12051 2025-11-11 20:29:52.41614+00 2025-11-11 20:29:52.416148+00 f t 12998 \N \N f f +12052 2025-11-11 20:32:45.448321+00 2025-11-11 20:32:45.448329+00 f t 12999 \N \N f f +12053 2025-11-11 20:35:23.360911+00 2025-11-11 20:35:23.36092+00 f t 12968 \N \N f f +12054 2025-11-11 20:36:02.647868+00 2025-11-11 20:36:02.64788+00 f t 13000 \N \N f f +12055 2025-11-11 20:36:35.775522+00 2025-11-11 20:36:35.775531+00 f t 13001 \N \N f f +12056 2025-11-11 20:39:02.955121+00 2025-11-11 20:39:02.955178+00 f t 13002 \N \N f f +12057 2025-11-11 20:49:57.381461+00 2025-11-11 20:49:57.381468+00 f t 12851 \N \N f f +12058 2025-11-11 20:59:01.932166+00 2025-11-11 20:59:01.932178+00 f t 13003 \N \N f f +12059 2025-11-11 21:09:37.30594+00 2025-11-11 21:09:37.305947+00 f t 13004 \N \N f f +12060 2025-11-11 21:15:20.908303+00 2025-11-11 21:15:20.908309+00 f t 13005 \N \N f f +12061 2025-11-11 21:19:37.686304+00 2025-11-11 21:19:37.686357+00 f t 12968 \N \N f f +12062 2025-11-11 21:23:05.652868+00 2025-11-11 21:23:05.652877+00 f t 13006 \N \N f f +12063 2025-11-11 21:25:58.364419+00 2025-11-11 21:25:58.364428+00 f t 13007 \N \N f f +12064 2025-11-11 21:29:07.415663+00 2025-11-11 21:29:07.415671+00 f t 13008 \N \N f f +12065 2025-11-11 21:38:17.979584+00 2025-11-11 21:38:17.979595+00 f t 13009 \N \N f f +12066 2025-11-11 21:41:12.546556+00 2025-11-11 21:41:12.546565+00 f t 13010 \N \N f f +12067 2025-11-11 21:53:07.584954+00 2025-11-11 21:53:07.584967+00 f t 13011 \N \N f f +12068 2025-11-11 21:54:30.48366+00 2025-11-11 21:54:30.483667+00 f t 13012 \N \N f f +12069 2025-11-11 21:55:38.396982+00 2025-11-11 21:55:38.396996+00 f t 13013 \N \N f f +12070 2025-11-11 21:55:59.005455+00 2025-11-11 21:55:59.005462+00 f t 13014 \N \N f f +12071 2025-11-11 22:10:48.761449+00 2025-11-11 22:10:48.761464+00 f t 13015 \N \N f f +12072 2025-11-11 22:31:04.718374+00 2025-11-11 22:31:04.718387+00 f t 12810 \N \N f f +12073 2025-11-11 22:46:15.37917+00 2025-11-11 22:46:15.379179+00 f t 13016 \N \N f f +12074 2025-11-11 22:47:35.242762+00 2025-11-11 22:47:35.242772+00 f t 13017 \N \N f f +12075 2025-11-11 22:59:49.491378+00 2025-11-11 22:59:49.491386+00 f t 13018 \N \N f f +12076 2025-11-11 23:04:00.128787+00 2025-11-11 23:04:00.128803+00 f t 13019 \N \N f f +12077 2025-11-11 23:06:45.990778+00 2025-11-11 23:06:45.990786+00 f t 13020 \N \N f f +12078 2025-11-11 23:09:46.914651+00 2025-11-11 23:09:46.914659+00 f t 13021 \N \N f f +12079 2025-11-11 23:10:26.539347+00 2025-11-11 23:10:26.539355+00 f t 13022 \N \N f f +12080 2025-11-11 23:29:18.754023+00 2025-11-11 23:29:18.754033+00 f t 13023 \N \N f f +12081 2025-11-11 23:38:15.524914+00 2025-11-11 23:38:15.524926+00 f t 13024 \N \N f f +12082 2025-11-11 23:48:00.998048+00 2025-11-11 23:48:00.998055+00 f t 13025 \N \N f f +12083 2025-11-11 23:49:52.086531+00 2025-11-11 23:49:52.086542+00 f t 13026 \N \N f f +12084 2025-11-11 23:50:23.252466+00 2025-11-11 23:50:23.252474+00 f t 13016 \N \N f f +12085 2025-11-11 23:59:42.433391+00 2025-11-11 23:59:42.433401+00 f t 13027 \N \N f f +12086 2025-11-12 00:44:58.630487+00 2025-11-12 00:44:58.630493+00 f t 13028 \N \N f f +12087 2025-11-12 00:57:08.34664+00 2025-11-12 00:57:08.34664+00 f t 13029 \N \N f f +12088 2025-11-12 00:57:10.302811+00 2025-11-12 00:57:10.30282+00 f t 13030 \N \N f f +12089 2025-11-12 01:15:01.115466+00 2025-11-12 01:15:01.115474+00 f t 13032 \N \N f f +12090 2025-11-12 01:15:22.351757+00 2025-11-12 01:15:22.351765+00 f t 13033 \N \N f f +12091 2025-11-12 01:20:06.388666+00 2025-11-12 01:20:06.388677+00 f t 13034 \N \N f f +12092 2025-11-12 01:23:34.733567+00 2025-11-12 01:23:34.733575+00 f t 13035 \N \N f f +12093 2025-11-12 01:29:28.269699+00 2025-11-12 01:29:28.269707+00 f t 13036 \N \N f f +12094 2025-11-12 01:33:00.95091+00 2025-11-12 01:33:00.950917+00 f t 13037 \N \N f f +12095 2025-11-12 01:44:41.599881+00 2025-11-12 01:44:41.599888+00 f t 13039 \N \N f f +12096 2025-11-12 01:45:00.474402+00 2025-11-12 01:45:00.47441+00 f t 13040 \N \N f f +12097 2025-11-12 01:47:46.802516+00 2025-11-12 01:47:46.802523+00 f t 13041 \N \N f f +12098 2025-11-12 02:22:27.164438+00 2025-11-12 02:22:27.164447+00 f t 13042 \N \N f f +12099 2025-11-12 02:36:19.862779+00 2025-11-12 02:36:19.862791+00 f t 13043 \N \N f f +12100 2025-11-12 02:40:44.191833+00 2025-11-12 02:40:44.191845+00 f t 13044 \N \N f f +12101 2025-11-12 02:50:50.339507+00 2025-11-12 02:50:50.339507+00 f t 13045 \N \N f f +12102 2025-11-12 02:56:37.106157+00 2025-11-12 02:56:37.106169+00 f t 13046 \N \N f f +12103 2025-11-12 02:57:23.088489+00 2025-11-12 02:57:23.088498+00 f t 13047 \N \N f f +12104 2025-11-12 02:57:45.151369+00 2025-11-12 02:57:45.15138+00 f t 13048 \N \N f f +12105 2025-11-12 03:07:34.17434+00 2025-11-12 03:07:34.174348+00 f t 13049 \N \N f f +12106 2025-11-12 03:35:13.260705+00 2025-11-12 03:35:13.260713+00 f t 13050 \N \N f f +12107 2025-11-12 04:10:13.55892+00 2025-11-12 04:10:13.558929+00 f t 13051 \N \N f f +12108 2025-11-12 08:54:00.991526+00 2025-11-12 08:54:00.991537+00 f t 13052 \N \N f f +12109 2025-11-12 10:35:46.382999+00 2025-11-12 10:35:46.383009+00 f t 13053 \N \N f f +12110 2025-11-12 11:16:07.338572+00 2025-11-12 11:16:07.338581+00 f t 13054 \N \N f f +12111 2025-11-12 11:32:47.632162+00 2025-11-12 11:32:47.632172+00 f t 13055 \N \N f f +12112 2025-11-12 11:41:13.920173+00 2025-11-12 11:41:13.920181+00 f t 13056 \N \N f f +12113 2025-11-12 11:59:22.310903+00 2025-11-12 11:59:22.310911+00 f t 13057 \N \N f f +12114 2025-11-12 12:21:46.062227+00 2025-11-12 12:21:46.062237+00 f t 13058 \N \N f f +12115 2025-11-12 12:35:07.702677+00 2025-11-12 12:35:07.702689+00 f t 13059 \N \N f f +12116 2025-11-12 12:41:43.098806+00 2025-11-12 12:41:43.098818+00 f t 11255 \N \N f f +12117 2025-11-12 12:44:35.419521+00 2025-11-12 12:44:35.419528+00 f t 13060 \N \N f f +12118 2025-11-12 12:47:13.818326+00 2025-11-12 12:47:13.818336+00 f t 13061 \N \N f f +12141 2025-11-12 15:50:10.115986+00 2025-11-12 15:50:10.115995+00 f t 13081 \N \N f f +12119 2025-11-12 12:54:44.208773+00 2025-11-12 12:54:44.208773+00 f t 13062 \N 1 f f +12120 2025-11-12 12:54:44.46421+00 2025-11-12 12:54:44.464219+00 f t 13063 \N 1 f f +12142 2025-11-12 16:04:54.686934+00 2025-11-12 16:04:54.686944+00 f t 13082 \N \N f f +12121 2025-11-12 13:16:12.594799+00 2025-11-12 13:16:12.594799+00 f t 13064 \N 1 f f +12122 2025-11-12 13:16:12.835264+00 2025-11-12 13:16:12.835272+00 f t 13065 \N 1 f f +12123 2025-11-12 13:23:56.716135+00 2025-11-12 13:23:56.716144+00 f t 12977 \N \N f f +12124 2025-11-12 13:43:48.401116+00 2025-11-12 13:43:48.401124+00 f t 13068 \N \N f f +12125 2025-11-12 13:51:42.925532+00 2025-11-12 13:51:42.92554+00 f t 13069 \N \N f f +12126 2025-11-12 13:56:40.919844+00 2025-11-12 13:56:40.919852+00 f t 13070 \N \N f f +12127 2025-11-12 14:03:40.913755+00 2025-11-12 14:03:40.913764+00 f t 13071 \N \N f f +12128 2025-11-12 14:13:38.984463+00 2025-11-12 14:13:38.98447+00 f t 13072 \N \N f f +12129 2025-11-12 14:22:52.60905+00 2025-11-12 14:22:52.609058+00 f t 13073 \N \N f f +12130 2025-11-12 14:24:58.060587+00 2025-11-12 14:24:58.060596+00 f t 13074 \N \N f f +12131 2025-11-12 14:33:04.938059+00 2025-11-12 14:33:04.938068+00 f t 13075 \N \N f f +12132 2025-11-12 14:42:24.892821+00 2025-11-12 14:42:24.892829+00 f t 13076 \N \N f f +12133 2025-11-12 14:45:39.372967+00 2025-11-12 14:45:39.372975+00 f t 13077 \N \N f f +12134 2025-11-12 14:45:51.58051+00 2025-11-12 14:45:51.580523+00 f t 12810 \N \N f f +12135 2025-11-12 14:50:58.409545+00 2025-11-12 14:50:58.409554+00 f t 13078 \N \N f f +12136 2025-11-12 14:54:48.083207+00 2025-11-12 14:54:48.083214+00 f t 13079 \N \N f f +12137 2025-11-12 15:08:59.230228+00 2025-11-12 15:08:59.23024+00 f t 13080 \N \N f f +12138 2025-11-12 15:21:00.267824+00 2025-11-12 15:21:00.267832+00 f t 10291 \N \N f f +12139 2025-11-12 15:29:54.916077+00 2025-11-12 15:29:54.916085+00 f t 3054 \N \N f f +12140 2025-11-12 15:38:10.527684+00 2025-11-12 15:38:10.527695+00 f t 10707 \N \N f f +12143 2025-11-12 16:08:03.726366+00 2025-11-12 16:08:03.726377+00 f t 13083 \N \N f f +12144 2025-11-12 16:11:57.267103+00 2025-11-12 16:11:57.267112+00 f t 13084 \N \N f f +12145 2025-11-12 16:13:42.154408+00 2025-11-12 16:13:42.154416+00 f t 13085 \N \N f f +12146 2025-11-12 16:15:19.446858+00 2025-11-12 16:15:19.446867+00 f t 13086 \N \N f f +12147 2025-11-12 16:19:10.899045+00 2025-11-12 16:19:10.899057+00 f t 13087 \N \N f f +12148 2025-11-12 16:32:36.154607+00 2025-11-12 16:32:36.154614+00 f t 13088 \N \N f f +12149 2025-11-12 16:35:00.664172+00 2025-11-12 16:35:00.664172+00 f t 13089 \N \N f f +12150 2025-11-12 16:42:40.96138+00 2025-11-12 16:42:40.961389+00 f t 13090 \N \N f f +12152 2025-11-12 16:59:25.139836+00 2025-11-12 16:59:25.139848+00 f t 13092 \N \N f f +12151 2025-11-12 16:46:44.18694+00 2025-11-12 16:46:44.18694+00 f t 13091 \N \N f f +12153 2025-11-12 16:59:40.799948+00 2025-11-12 16:59:40.799958+00 f t 13093 \N \N f f +12154 2025-11-12 17:06:53.934995+00 2025-11-12 17:06:53.935006+00 f t 13094 \N \N f f +12155 2025-11-12 17:10:10.041707+00 2025-11-12 17:10:10.04172+00 f t 13095 \N \N f f +12156 2025-11-12 17:19:12.469509+00 2025-11-12 17:19:12.469517+00 f t 13096 \N \N f f +12157 2025-11-12 17:20:33.405799+00 2025-11-12 17:20:33.405806+00 f t 11855 \N \N f f +12158 2025-11-12 17:35:50.57259+00 2025-11-12 17:35:50.572597+00 f t 13037 \N \N f f +12159 2025-11-12 17:46:28.144027+00 2025-11-12 17:46:28.144035+00 f t 13097 \N \N f f +12160 2025-11-12 18:08:26.243116+00 2025-11-12 18:08:26.243123+00 f t 11855 \N \N f f +12161 2025-11-12 18:10:11.708429+00 2025-11-12 18:10:11.708442+00 f t 13098 \N \N f f +12162 2025-11-12 18:11:58.431804+00 2025-11-12 18:11:58.431813+00 f t 13099 \N \N f f +12163 2025-11-12 18:26:27.314749+00 2025-11-12 18:26:27.314756+00 f t 13100 \N \N f f +12164 2025-11-12 18:30:06.229527+00 2025-11-12 18:30:06.229537+00 f t 13101 \N \N f f +12165 2025-11-12 18:36:31.95584+00 2025-11-12 18:36:31.955851+00 f t 13037 \N \N f f +12166 2025-11-12 19:05:36.891728+00 2025-11-12 19:05:36.891739+00 f t 13102 \N \N f f +12167 2025-11-12 19:28:17.120398+00 2025-11-12 19:28:17.120406+00 f t 13103 \N \N f f +12168 2025-11-12 19:28:57.695346+00 2025-11-12 19:28:57.695353+00 f t 13104 \N \N f f +12169 2025-11-12 19:31:22.202592+00 2025-11-12 19:31:22.202602+00 f t 13105 \N \N f f +12170 2025-11-12 19:45:31.844733+00 2025-11-12 19:45:31.844741+00 f t 13107 \N \N f f +12171 2025-11-12 20:01:05.054916+00 2025-11-12 20:01:05.054925+00 f t 13108 \N \N f f +12172 2025-11-12 20:01:58.463066+00 2025-11-12 20:01:58.463073+00 f t 13109 \N \N f f +12173 2025-11-12 20:05:55.836804+00 2025-11-12 20:05:55.836813+00 f t 13088 \N \N f f +12174 2025-11-12 20:32:26.08995+00 2025-11-12 20:32:26.089957+00 f t 13103 \N \N f f +12175 2025-11-12 20:33:13.351698+00 2025-11-12 20:33:13.351706+00 f t 13110 \N \N f f +12176 2025-11-12 20:44:30.346172+00 2025-11-12 20:44:30.346181+00 f t 13111 \N \N f f +12177 2025-11-12 20:44:30.530945+00 2025-11-12 20:44:30.530953+00 f t 13112 \N \N f f +12178 2025-11-12 20:48:41.316455+00 2025-11-12 20:48:41.316463+00 f t 13113 \N \N f f +12179 2025-11-12 20:53:57.59864+00 2025-11-12 20:53:57.59864+00 f t 13114 \N \N f f +12180 2025-11-12 20:56:17.832562+00 2025-11-12 20:56:17.832562+00 f t 13115 \N \N f f +12182 2025-11-12 21:00:27.496782+00 2025-11-12 21:00:27.496792+00 f t 13118 \N \N f f +12181 2025-11-12 21:01:02.232192+00 2025-11-12 21:01:02.232192+00 f t 13117 \N \N f f +12183 2025-11-12 21:19:30.243055+00 2025-11-12 21:19:30.243065+00 f t 13120 \N \N f f +12184 2025-11-12 21:29:38.000744+00 2025-11-12 21:29:38.000752+00 f t 13121 \N \N f f +12185 2025-11-12 21:31:24.67357+00 2025-11-12 21:31:24.673582+00 f t 13122 \N \N f f +12186 2025-11-12 21:38:05.792201+00 2025-11-12 21:38:05.79221+00 f t 13123 \N \N f f +12187 2025-11-12 21:41:42.278218+00 2025-11-12 21:41:42.278226+00 f t 13124 \N \N f f +12188 2025-11-12 21:51:49.069633+00 2025-11-12 21:51:49.069644+00 f t 7528 \N \N f f +12189 2025-11-12 22:23:55.205672+00 2025-11-12 22:23:55.205683+00 f t 13125 \N \N f f +12190 2025-11-12 22:29:50.833493+00 2025-11-12 22:29:50.833502+00 f t 13126 \N \N f f +12191 2025-11-12 22:30:07.961761+00 2025-11-12 22:30:07.961771+00 f t 13127 \N \N f f +12192 2025-11-12 23:19:12.682845+00 2025-11-12 23:19:12.682853+00 f t 13129 \N \N f f +12193 2025-11-12 23:38:21.859506+00 2025-11-12 23:38:21.859513+00 f t 13130 \N \N f f +12194 2025-11-13 00:00:46.671985+00 2025-11-13 00:00:46.671993+00 f t 274 \N \N f f +12196 2025-11-13 00:11:54.179714+00 2025-11-13 00:11:54.179714+00 f t 13132 \N \N f f +12234 2025-11-13 14:35:10.503195+00 2025-11-13 14:35:10.503208+00 f t 13171 \N \N f f +12235 2025-11-13 14:36:42.002665+00 2025-11-13 14:36:42.002673+00 f t 13172 \N \N f f +12195 2025-11-13 00:16:47.951873+00 2025-11-13 00:16:47.951873+00 f t 13131 \N \N f f +12197 2025-11-13 00:17:02.173612+00 2025-11-13 00:17:02.173622+00 f t 13133 \N \N f f +12198 2025-11-13 00:39:18.741641+00 2025-11-13 00:39:18.741649+00 f t 13134 \N \N f f +12199 2025-11-13 00:49:15.94079+00 2025-11-13 00:49:15.940797+00 f t 13135 \N \N f f +12201 2025-11-13 00:54:41.555679+00 2025-11-13 00:54:41.555686+00 f t 8819 \N \N f f +12202 2025-11-13 01:02:34.093156+00 2025-11-13 01:02:34.093167+00 f t 13139 \N \N f f +12200 2025-11-13 01:03:23.951312+00 2025-11-13 01:03:23.951312+00 f t 13136 \N \N f f +12203 2025-11-13 02:21:02.966771+00 2025-11-13 02:21:02.96678+00 f t 13140 \N \N f f +12204 2025-11-13 02:29:12.351267+00 2025-11-13 02:29:12.351279+00 f t 13141 \N \N f f +12205 2025-11-13 02:41:21.419031+00 2025-11-13 02:41:21.419039+00 f t 13142 \N \N f f +12206 2025-11-13 03:00:46.017391+00 2025-11-13 03:00:46.017404+00 f t 13143 \N \N f f +12207 2025-11-13 03:02:45.178078+00 2025-11-13 03:02:45.17809+00 f t 13144 \N \N f f +12208 2025-11-13 03:16:30.917117+00 2025-11-13 03:16:30.917126+00 f t 13145 \N \N f f +12209 2025-11-13 04:20:31.366996+00 2025-11-13 04:20:31.367004+00 f t 13146 \N \N f f +12210 2025-11-13 04:27:16.020821+00 2025-11-13 04:27:16.02083+00 f t 13147 \N \N f f +12211 2025-11-13 07:35:58.42023+00 2025-11-13 07:35:58.420238+00 f t 13148 \N \N f f +12212 2025-11-13 08:42:44.873575+00 2025-11-13 08:42:44.873585+00 f t 13149 \N \N f f +12213 2025-11-13 08:54:00.888553+00 2025-11-13 08:54:00.88856+00 f t 13150 \N \N f f +12214 2025-11-13 08:59:44.591213+00 2025-11-13 08:59:44.591224+00 f t 13151 \N \N f f +12215 2025-11-13 09:59:42.267269+00 2025-11-13 09:59:42.267276+00 f t 13152 \N \N f f +12216 2025-11-13 10:58:47.031256+00 2025-11-13 10:58:47.031262+00 f t 13153 \N \N f f +12217 2025-11-13 11:01:10.753667+00 2025-11-13 11:01:10.753675+00 f t 13154 \N \N f f +12218 2025-11-13 11:12:08.594201+00 2025-11-13 11:12:08.594201+00 f t 13155 \N \N f f +12219 2025-11-13 11:17:31.133386+00 2025-11-13 11:17:31.133394+00 f t 13156 \N \N f f +12220 2025-11-13 11:44:50.853112+00 2025-11-13 11:44:50.853121+00 f t 13157 \N \N f f +12221 2025-11-13 11:51:14.088301+00 2025-11-13 11:51:14.088313+00 f t 13158 \N \N f f +12222 2025-11-13 12:07:51.247888+00 2025-11-13 12:07:51.247895+00 f t 13159 \N \N f f +12223 2025-11-13 12:32:02.343929+00 2025-11-13 12:32:02.343939+00 f t 13160 \N \N f f +12224 2025-11-13 12:35:18.32395+00 2025-11-13 12:35:18.32396+00 f t 13161 \N \N f f +12225 2025-11-13 13:15:33.262531+00 2025-11-13 13:15:33.262543+00 f t 13162 \N \N f f +12226 2025-11-13 13:23:39.302427+00 2025-11-13 13:23:39.302433+00 f t 13163 \N \N f f +12227 2025-11-13 13:26:29.717705+00 2025-11-13 13:26:29.717715+00 f t 11855 \N \N f f +12228 2025-11-13 13:26:51.979043+00 2025-11-13 13:26:51.979052+00 f t 13164 \N \N f f +12229 2025-11-13 13:40:09.131943+00 2025-11-13 13:40:09.131957+00 f t 13165 \N \N f f +12230 2025-11-13 13:56:42.466394+00 2025-11-13 13:56:42.466402+00 f t 13166 \N \N f f +12231 2025-11-13 14:00:19.181473+00 2025-11-13 14:00:19.181487+00 f t 13167 \N \N f f +12232 2025-11-13 14:28:54.783574+00 2025-11-13 14:28:54.783583+00 f t 13168 \N \N f f +12233 2025-11-13 14:31:08.709943+00 2025-11-13 14:31:08.709956+00 f t 12946 \N \N f f +12236 2025-11-13 14:51:33.08262+00 2025-11-13 14:51:33.082631+00 f t 13173 \N \N f f +12237 2025-11-13 14:56:35.255055+00 2025-11-13 14:56:35.255063+00 f t 13174 \N \N f f +12238 2025-11-13 15:36:12.518552+00 2025-11-13 15:36:12.518559+00 f t 308 \N \N f f +12239 2025-11-13 15:54:41.952139+00 2025-11-13 15:54:41.952147+00 f t 13175 \N \N f f +12240 2025-11-13 16:10:39.237394+00 2025-11-13 16:10:39.237401+00 f t 13176 \N \N f f +12241 2025-11-13 16:13:01.094915+00 2025-11-13 16:13:01.094924+00 f t 13177 \N \N f f +12242 2025-11-13 16:16:45.252409+00 2025-11-13 16:16:45.252416+00 f t 13178 \N \N f f +12243 2025-11-13 16:17:29.192599+00 2025-11-13 16:17:29.192612+00 f t 384 \N \N f f +12244 2025-11-13 16:36:58.806449+00 2025-11-13 16:36:58.806456+00 f t 13180 \N \N f f +12245 2025-11-13 16:38:09.534598+00 2025-11-13 16:38:09.53461+00 f t 13181 \N \N f f +12246 2025-11-13 16:51:38.527117+00 2025-11-13 16:51:38.527124+00 f t 13182 \N \N f f +12247 2025-11-13 16:52:51.465706+00 2025-11-13 16:52:51.465714+00 f t 13184 \N \N f f +12248 2025-11-13 16:53:22.274371+00 2025-11-13 16:53:22.274382+00 f t 13183 \N \N f f +12249 2025-11-13 16:53:23.32398+00 2025-11-13 16:53:23.323991+00 f t 13185 \N \N f f +12250 2025-11-13 16:58:26.136924+00 2025-11-13 16:58:26.136934+00 f t 13187 \N \N f f +12251 2025-11-13 17:02:53.777823+00 2025-11-13 17:02:53.777834+00 f t 13188 \N \N f f +12252 2025-11-13 17:24:06.228256+00 2025-11-13 17:24:06.228268+00 f t 13190 \N \N f f +12253 2025-11-13 17:33:28.882497+00 2025-11-13 17:33:28.882505+00 f t 13191 \N \N f f +12254 2025-11-13 17:56:08.709642+00 2025-11-13 17:56:08.709656+00 f t 13192 \N \N f f +12255 2025-11-13 18:18:12.221039+00 2025-11-13 18:18:12.221046+00 f t 13193 \N \N f f +12256 2025-11-13 18:25:17.455553+00 2025-11-13 18:25:17.455565+00 f t 13194 \N \N f f +12257 2025-11-13 18:34:51.171862+00 2025-11-13 18:34:51.171862+00 f t 13196 \N \N f f +12258 2025-11-13 18:42:44.937306+00 2025-11-13 18:42:44.937313+00 f t 13197 \N \N f f +12259 2025-11-13 18:43:47.918529+00 2025-11-13 18:43:47.918541+00 f t 12952 \N \N f f +12260 2025-11-13 19:09:33.953397+00 2025-11-13 19:09:33.953404+00 f t 12287 \N \N f f +12261 2025-11-13 19:24:21.564924+00 2025-11-13 19:24:21.564932+00 f t 13200 \N \N f f +12262 2025-11-13 19:33:53.495369+00 2025-11-13 19:33:53.49538+00 f t 13201 \N \N f f +12263 2025-11-13 19:51:54.680396+00 2025-11-13 19:51:54.680406+00 f t 13202 \N \N f f +12264 2025-11-13 19:55:00.868118+00 2025-11-13 19:55:00.868127+00 f t 13203 \N \N f f +12265 2025-11-13 20:00:29.555062+00 2025-11-13 20:00:29.555071+00 f t 13204 \N \N f f +12266 2025-11-13 20:21:13.572266+00 2025-11-13 20:21:13.572277+00 f t 418 \N \N f f +12267 2025-11-13 20:33:11.166186+00 2025-11-13 20:33:11.166198+00 f t 13205 \N \N f f +12268 2025-11-13 20:37:10.59576+00 2025-11-13 20:37:10.595769+00 f t 308 \N \N f f +12269 2025-11-13 21:34:54.277495+00 2025-11-13 21:34:54.277503+00 f t 13206 \N \N f f +12270 2025-11-13 21:38:55.390564+00 2025-11-13 21:38:55.390573+00 f t 13207 \N \N f f +12271 2025-11-13 21:40:17.073805+00 2025-11-13 21:40:17.073818+00 f t 13208 \N \N f f +12272 2025-11-13 22:07:18.898223+00 2025-11-13 22:07:18.898233+00 f t 13209 \N \N f f +12273 2025-11-13 22:14:39.871503+00 2025-11-13 22:14:39.871513+00 f t 13210 \N \N f f +12274 2025-11-13 22:20:30.99244+00 2025-11-13 22:20:30.992448+00 f t 13211 \N \N f f +12275 2025-11-13 22:37:03.545113+00 2025-11-13 22:37:03.545123+00 f t 13212 \N \N f f +12276 2025-11-13 22:44:51.469529+00 2025-11-13 22:44:51.469538+00 f t 13213 \N \N f f +12277 2025-11-13 22:47:44.479011+00 2025-11-13 22:47:44.479022+00 f t 13214 \N \N f f +12278 2025-11-13 22:47:47.210871+00 2025-11-13 22:47:47.210879+00 f t 13215 \N \N f f +12279 2025-11-13 22:48:42.679591+00 2025-11-13 22:48:42.679603+00 f t 13216 \N \N f f +12280 2025-11-13 23:09:27.498069+00 2025-11-13 23:09:27.498077+00 f t 13218 \N \N f f +12281 2025-11-13 23:11:13.340981+00 2025-11-13 23:11:13.340988+00 f t 13219 \N \N f f +12282 2025-11-13 23:11:42.125269+00 2025-11-13 23:11:42.125276+00 f t 13220 \N \N f f +12283 2025-11-13 23:13:16.402036+00 2025-11-13 23:13:16.402046+00 f t 13221 \N \N f f +12284 2025-11-13 23:14:44.969228+00 2025-11-13 23:14:44.969236+00 f t 13222 \N \N f f +12285 2025-11-13 23:17:51.500873+00 2025-11-13 23:17:51.500882+00 f t 13223 \N \N f f +12286 2025-11-13 23:30:48.968646+00 2025-11-13 23:30:48.968654+00 f t 13224 \N \N f f +12287 2025-11-13 23:31:20.885357+00 2025-11-13 23:31:20.88537+00 f t 13225 \N \N f f +12288 2025-11-13 23:31:52.860713+00 2025-11-13 23:31:52.860722+00 f t 13226 \N \N f f +12289 2025-11-13 23:32:09.080443+00 2025-11-13 23:32:09.080456+00 f t 13227 \N \N f f +12290 2025-11-13 23:45:46.016644+00 2025-11-13 23:45:46.016652+00 f t 13229 \N \N f f +12291 2025-11-13 23:56:15.725091+00 2025-11-13 23:56:15.725099+00 f t 13230 \N \N f f +12292 2025-11-14 00:10:40.52981+00 2025-11-14 00:10:40.529821+00 f t 13231 \N \N f f +12293 2025-11-14 00:15:07.460032+00 2025-11-14 00:15:07.460032+00 f t 13232 \N \N f f +12294 2025-11-14 00:17:33.617487+00 2025-11-14 00:17:33.617522+00 f t 13233 \N \N f f +12295 2025-11-14 00:19:51.716405+00 2025-11-14 00:19:51.716412+00 f t 13234 \N \N f f +12296 2025-11-14 00:22:57.426989+00 2025-11-14 00:22:57.426996+00 f t 13235 \N \N f f +12297 2025-11-14 00:31:07.165164+00 2025-11-14 00:31:07.165175+00 f t 13236 \N \N f f +12298 2025-11-14 00:49:01.520982+00 2025-11-14 00:49:01.520994+00 f t 13237 \N \N f f +12299 2025-11-14 00:52:11.723588+00 2025-11-14 00:52:11.723601+00 f t 13238 \N \N f f +12300 2025-11-14 00:55:55.361226+00 2025-11-14 00:55:55.361237+00 f t 13239 \N \N f f +12301 2025-11-14 01:01:28.472876+00 2025-11-14 01:01:28.472886+00 f t 13241 \N \N f f +12302 2025-11-14 01:01:52.187915+00 2025-11-14 01:01:52.187923+00 f t 13242 \N \N f f +12303 2025-11-14 01:19:26.331352+00 2025-11-14 01:19:26.33136+00 f t 13244 \N \N f f +12304 2025-11-14 01:19:41.676724+00 2025-11-14 01:19:41.676732+00 f t 13245 \N \N f f +12305 2025-11-14 01:20:04.030447+00 2025-11-14 01:20:04.030462+00 f t 13246 \N \N f f +12306 2025-11-14 01:26:13.585018+00 2025-11-14 01:26:13.585025+00 f t 13247 \N \N f f +12307 2025-11-14 01:28:04.34032+00 2025-11-14 01:28:04.340329+00 f t 13248 \N \N f f +12308 2025-11-14 01:28:26.458726+00 2025-11-14 01:28:26.458738+00 f t 13249 \N \N f f +12309 2025-11-14 01:29:38.976908+00 2025-11-14 01:29:38.976917+00 f t 13250 \N \N f f +12332 2025-11-14 11:45:20.750769+00 2025-11-14 11:45:20.750777+00 f t 13276 \N \N f f +12333 2025-11-14 11:51:53.914487+00 2025-11-14 11:51:53.914494+00 f t 13277 \N \N f f +12310 2025-11-14 01:43:25.887859+00 2025-11-14 01:43:25.887859+00 f t 13252 \N \N f f +12311 2025-11-14 01:47:42.534721+00 2025-11-14 01:47:42.534732+00 f t 8819 \N \N f f +12312 2025-11-14 01:51:38.965533+00 2025-11-14 01:51:38.965542+00 f t 8819 \N \N f f +12313 2025-11-14 01:54:47.195633+00 2025-11-14 01:54:47.19564+00 f t 13255 \N \N f f +12314 2025-11-14 02:04:03.291487+00 2025-11-14 02:04:03.2915+00 f t 13256 \N \N f f +12315 2025-11-14 02:21:48.415702+00 2025-11-14 02:21:48.415711+00 f t 13257 \N \N f f +12316 2025-11-14 02:25:03.951478+00 2025-11-14 02:25:03.951493+00 f t 13258 \N \N f f +12317 2025-11-14 02:29:48.65665+00 2025-11-14 02:29:48.65666+00 f t 13259 \N \N f f +12318 2025-11-14 02:31:08.638154+00 2025-11-14 02:31:08.638165+00 f t 13260 \N \N f f +12319 2025-11-14 03:20:05.802669+00 2025-11-14 03:20:05.802681+00 f t 13261 \N \N f f +12320 2025-11-14 03:21:23.974847+00 2025-11-14 03:21:23.974855+00 f t 13262 \N \N f f +12321 2025-11-14 06:58:54.730319+00 2025-11-14 06:58:54.730329+00 f t 13264 \N \N f f +12322 2025-11-14 09:04:10.090133+00 2025-11-14 09:04:10.090141+00 f t 13265 \N \N f f +12323 2025-11-14 09:18:45.975949+00 2025-11-14 09:18:45.975958+00 f t 13266 \N \N f f +12324 2025-11-14 10:12:35.742812+00 2025-11-14 10:12:35.742818+00 f t 13267 \N \N f f +12325 2025-11-14 10:29:51.143801+00 2025-11-14 10:29:51.143809+00 f t 13268 \N \N f f +12326 2025-11-14 10:50:39.231069+00 2025-11-14 10:50:39.231076+00 f t 13269 \N \N f f +12328 2025-11-14 10:59:58.993579+00 2025-11-14 10:59:58.993588+00 f t 13271 \N \N f f +12327 2025-11-14 11:02:22.862301+00 2025-11-14 11:02:22.862301+00 f t 13270 \N \N f f +12329 2025-11-14 11:09:54.676216+00 2025-11-14 11:09:54.676224+00 f t 13272 \N \N f f +12330 2025-11-14 11:14:48.532106+00 2025-11-14 11:14:48.532116+00 f t 13241 \N \N f f +12331 2025-11-14 11:24:04.547656+00 2025-11-14 11:24:04.547668+00 f t 13275 \N \N f f +12334 2025-11-14 11:53:19.563736+00 2025-11-14 11:53:19.563742+00 f t 12684 \N \N f f +12335 2025-11-14 11:53:22.702413+00 2025-11-14 11:53:22.702422+00 f t 13278 \N \N f f +12336 2025-11-14 12:00:40.845351+00 2025-11-14 12:00:40.845362+00 f t 13279 \N \N f f +12337 2025-11-14 12:21:08.232812+00 2025-11-14 12:21:08.232821+00 f t 13280 \N \N f f +12338 2025-11-14 12:22:07.666289+00 2025-11-14 12:22:07.666301+00 f t 13281 \N \N f f +12339 2025-11-14 12:27:25.40856+00 2025-11-14 12:27:25.408568+00 f t 13282 \N \N f f +12340 2025-11-14 12:29:33.737467+00 2025-11-14 12:29:33.737476+00 f t 13283 \N \N f f +12341 2025-11-14 12:45:09.904813+00 2025-11-14 12:45:09.904821+00 f t 13285 \N \N f f +12342 2025-11-14 12:54:52.646898+00 2025-11-14 12:54:52.646898+00 f t 13286 \N \N f f +12343 2025-11-14 12:59:43.12271+00 2025-11-14 12:59:43.122718+00 f t 13287 \N \N f f +12344 2025-11-14 13:14:08.772989+00 2025-11-14 13:14:08.772997+00 f t 13288 \N \N f f +12345 2025-11-14 13:19:52.571059+00 2025-11-14 13:19:52.571067+00 f t 13289 \N \N f f +12346 2025-11-14 13:42:56.89528+00 2025-11-14 13:42:56.895288+00 f t 12803 \N \N f f +12347 2025-11-14 13:47:50.917907+00 2025-11-14 13:47:50.917914+00 f t 13290 \N \N f f +12348 2025-11-14 14:06:09.420542+00 2025-11-14 14:06:09.420553+00 f t 13291 \N \N f f +12349 2025-11-14 14:24:42.724139+00 2025-11-14 14:24:42.724147+00 f t 13293 \N \N f f +12350 2025-11-14 14:33:45.879749+00 2025-11-14 14:33:45.87976+00 f t 13294 \N \N f f +12351 2025-11-14 14:55:17.111842+00 2025-11-14 14:55:17.11185+00 f t 13295 \N \N f f +12352 2025-11-14 14:57:37.727357+00 2025-11-14 14:57:37.727365+00 f t 13296 \N \N f f +12353 2025-11-14 15:01:51.323861+00 2025-11-14 15:01:51.32387+00 f t 13297 \N \N f f +12354 2025-11-14 15:02:01.325546+00 2025-11-14 15:02:01.325559+00 f t 13298 \N \N f f +12355 2025-11-14 15:09:45.228728+00 2025-11-14 15:09:45.228736+00 f t 13299 \N \N f f +12356 2025-11-14 15:12:17.573175+00 2025-11-14 15:12:17.573184+00 f t 8397 \N \N f f +12357 2025-11-14 15:22:17.9995+00 2025-11-14 15:22:17.999507+00 f t 13302 \N \N f f +12358 2025-11-14 15:30:38.153227+00 2025-11-14 15:30:38.153236+00 f t 13303 \N \N f f +12359 2025-11-14 15:38:53.132024+00 2025-11-14 15:38:53.132033+00 f t 13304 \N \N f f +12360 2025-11-14 16:27:31.901+00 2025-11-14 16:27:31.901014+00 f t 12527 \N \N f f +12361 2025-11-14 16:34:36.497589+00 2025-11-14 16:34:36.497598+00 f t 13305 \N \N f f +12362 2025-11-14 16:43:25.790607+00 2025-11-14 16:43:25.790618+00 f t 10193 \N \N f f +12363 2025-11-14 16:57:24.896707+00 2025-11-14 16:57:24.896715+00 f t 10193 \N \N f f +12364 2025-11-14 17:16:17.5427+00 2025-11-14 17:16:17.542711+00 f t 13306 \N \N f f +12365 2025-11-14 17:25:54.089381+00 2025-11-14 17:25:54.089394+00 f t 13307 \N \N f f +12435 2025-11-15 13:09:23.233247+00 2025-11-15 13:09:23.233255+00 f t 13376 \N \N f f +12366 2025-11-14 17:38:40.588083+00 2025-11-14 17:38:40.588083+00 f t 13308 \N \N f f +12367 2025-11-14 17:39:17.814804+00 2025-11-14 17:39:17.814813+00 f t 13309 \N \N f f +12368 2025-11-14 17:40:35.914242+00 2025-11-14 17:40:35.914256+00 f t 13310 \N \N f f +12369 2025-11-14 17:42:55.944413+00 2025-11-14 17:42:55.944422+00 f t 13311 \N \N f f +12370 2025-11-14 18:00:31.899298+00 2025-11-14 18:00:31.89931+00 f t 13313 \N \N f f +12371 2025-11-14 18:01:17.356397+00 2025-11-14 18:01:17.356407+00 f t 12160 \N \N f f +12372 2025-11-14 18:02:08.856877+00 2025-11-14 18:02:08.856885+00 f t 13314 \N \N f f +12373 2025-11-14 18:05:49.698202+00 2025-11-14 18:05:49.698215+00 f t 13315 \N \N f f +12374 2025-11-14 18:12:00.984873+00 2025-11-14 18:12:00.984881+00 f t 13316 \N \N f f +12375 2025-11-14 18:12:55.188721+00 2025-11-14 18:12:55.188734+00 f t 13317 \N \N f f +12376 2025-11-14 18:27:33.443491+00 2025-11-14 18:27:33.443498+00 f t 13318 \N \N f f +12377 2025-11-14 18:29:28.151934+00 2025-11-14 18:29:28.151941+00 f t 13319 \N \N f f +12378 2025-11-14 18:41:55.119207+00 2025-11-14 18:41:55.119217+00 f t 13320 \N \N f f +12379 2025-11-14 18:48:36.428261+00 2025-11-14 18:48:36.428269+00 f t 13321 \N \N f f +12380 2025-11-14 19:41:02.761608+00 2025-11-14 19:41:02.761617+00 f t 12160 \N \N f f +12381 2025-11-14 19:41:33.289109+00 2025-11-14 19:41:33.289119+00 f t 12160 \N \N f f +12382 2025-11-14 19:49:51.884393+00 2025-11-14 19:49:51.884402+00 f t 12810 \N \N f f +12383 2025-11-14 20:43:39.971284+00 2025-11-14 20:43:39.971292+00 f t 13322 \N \N f f +12384 2025-11-14 20:56:26.334257+00 2025-11-14 20:56:26.334266+00 f t 13323 \N \N f f +12385 2025-11-14 21:29:06.27438+00 2025-11-14 21:29:06.274389+00 f t 13324 \N \N f f +12386 2025-11-14 21:29:14.421756+00 2025-11-14 21:29:14.421765+00 f t 13325 \N \N f f +12387 2025-11-14 21:57:51.375586+00 2025-11-14 21:57:51.375595+00 f t 13326 \N \N f f +12388 2025-11-14 21:58:27.567172+00 2025-11-14 21:58:27.567181+00 f t 13327 \N \N f f +12389 2025-11-14 22:00:12.817195+00 2025-11-14 22:00:12.817209+00 f t 13328 \N \N f f +12390 2025-11-14 22:04:17.22189+00 2025-11-14 22:04:17.221902+00 f t 13329 \N \N f f +12391 2025-11-14 22:05:56.863299+00 2025-11-14 22:05:56.863309+00 f t 13330 \N \N f f +12392 2025-11-14 22:13:20.408693+00 2025-11-14 22:13:20.408701+00 f t 13331 \N \N f f +12393 2025-11-14 22:14:00.170557+00 2025-11-14 22:14:00.170569+00 f t 13332 \N \N f f +12394 2025-11-14 22:18:52.845996+00 2025-11-14 22:18:52.846004+00 f t 13333 \N \N f f +12395 2025-11-14 22:23:50.862021+00 2025-11-14 22:23:50.862029+00 f t 13334 \N \N f f +12396 2025-11-14 22:25:21.000605+00 2025-11-14 22:25:21.000615+00 f t 13335 \N \N f f +12397 2025-11-14 22:32:24.658224+00 2025-11-14 22:32:24.658232+00 f t 13336 \N \N f f +12398 2025-11-14 22:58:15.463566+00 2025-11-14 22:58:15.463573+00 f t 13337 \N \N f f +12399 2025-11-14 23:19:12.72936+00 2025-11-14 23:19:12.729371+00 f t 13338 \N \N f f +12400 2025-11-14 23:21:17.991899+00 2025-11-14 23:21:17.991907+00 f t 13339 \N \N f f +12401 2025-11-14 23:51:55.775643+00 2025-11-14 23:51:55.775652+00 f t 13340 \N \N f f +12402 2025-11-14 23:52:40.522494+00 2025-11-14 23:52:40.522507+00 f t 13341 \N \N f f +12403 2025-11-14 23:53:39.606958+00 2025-11-14 23:53:39.606966+00 f t 13342 \N \N f f +12404 2025-11-15 00:08:13.418255+00 2025-11-15 00:08:13.418267+00 f t 13343 \N \N f f +12405 2025-11-15 00:11:15.767228+00 2025-11-15 00:11:15.767236+00 f t 13344 \N \N f f +12406 2025-11-15 00:11:59.81801+00 2025-11-15 00:11:59.818018+00 f t 13345 \N \N f f +12407 2025-11-15 00:13:25.318086+00 2025-11-15 00:13:25.318093+00 f t 13346 \N \N f f +12408 2025-11-15 00:14:15.332276+00 2025-11-15 00:14:15.332284+00 f t 13347 \N \N f f +12409 2025-11-15 00:37:28.970711+00 2025-11-15 00:37:28.970719+00 f t 13348 \N \N f f +12410 2025-11-15 00:50:08.56455+00 2025-11-15 00:50:08.56456+00 f t 13349 \N \N f f +12411 2025-11-15 00:55:11.551755+00 2025-11-15 00:55:11.551764+00 f t 13350 \N \N f f +12412 2025-11-15 01:41:16.766652+00 2025-11-15 01:41:16.76666+00 f t 13351 \N \N f f +12413 2025-11-15 01:42:57.050026+00 2025-11-15 01:42:57.050037+00 f t 13352 \N \N f f +12414 2025-11-15 02:25:36.593298+00 2025-11-15 02:25:36.593298+00 f t 13354 \N \N f f +12415 2025-11-15 03:15:39.309143+00 2025-11-15 03:15:39.309153+00 f t 13355 \N \N f f +12416 2025-11-15 03:42:16.810025+00 2025-11-15 03:42:16.810033+00 f t 13356 \N \N f f +12417 2025-11-15 03:45:07.522996+00 2025-11-15 03:45:07.523006+00 f t 13357 \N \N f f +12418 2025-11-15 03:46:30.774597+00 2025-11-15 03:46:30.774604+00 f t 13358 \N \N f f +12419 2025-11-15 04:06:40.993823+00 2025-11-15 04:06:40.993831+00 f t 13359 \N \N f f +12420 2025-11-15 04:27:26.003109+00 2025-11-15 04:27:26.003118+00 f t 13360 \N \N f f +12421 2025-11-15 04:55:05.508215+00 2025-11-15 04:55:05.508228+00 f t 13361 \N \N f f +12422 2025-11-15 05:33:09.78809+00 2025-11-15 05:33:09.788098+00 f t 13362 \N \N f f +12423 2025-11-15 06:04:10.815115+00 2025-11-15 06:04:10.815157+00 f t 13363 \N \N f f +12424 2025-11-15 07:24:34.154025+00 2025-11-15 07:24:34.154035+00 f t 13364 \N \N f f +12425 2025-11-15 08:16:02.795841+00 2025-11-15 08:16:02.795854+00 f t 13365 \N \N f f +12426 2025-11-15 11:07:48.413165+00 2025-11-15 11:07:48.413174+00 f t 13366 \N \N f f +12427 2025-11-15 11:13:50.394994+00 2025-11-15 11:13:50.395003+00 f t 13367 \N \N f f +12428 2025-11-15 11:17:41.414548+00 2025-11-15 11:17:41.414556+00 f t 13368 \N \N f f +12429 2025-11-15 11:26:47.075466+00 2025-11-15 11:26:47.075475+00 f t 13370 \N \N f f +12430 2025-11-15 11:54:25.615486+00 2025-11-15 11:54:25.615495+00 f t 13371 \N \N f f +12431 2025-11-15 12:09:02.539754+00 2025-11-15 12:09:02.53977+00 f t 13372 \N \N f f +12432 2025-11-15 12:21:55.205738+00 2025-11-15 12:21:55.205738+00 f t 13373 \N \N f f +12433 2025-11-15 12:51:03.342793+00 2025-11-15 12:51:03.342805+00 f t 13374 \N \N f f +12434 2025-11-15 12:54:02.681905+00 2025-11-15 12:54:02.681913+00 f t 13375 \N \N f f +12436 2025-11-15 13:28:28.281877+00 2025-11-15 13:28:28.281885+00 f t 13377 \N \N f f +12437 2025-11-15 13:34:04.633102+00 2025-11-15 13:34:04.633112+00 f t 13378 \N 6 f f +12438 2025-11-15 13:39:04.392167+00 2025-11-15 13:39:04.392178+00 f t 13379 \N \N f f +12439 2025-11-15 13:41:13.466346+00 2025-11-15 13:41:13.466355+00 f t 13380 \N \N f f +12440 2025-11-15 14:21:15.641354+00 2025-11-15 14:21:15.641367+00 f t 13381 \N \N f f +12441 2025-11-15 14:21:26.1574+00 2025-11-15 14:21:26.157408+00 f t 13382 \N \N f f +12442 2025-11-15 14:22:20.681904+00 2025-11-15 14:22:20.681916+00 f t 13383 \N \N f f +12443 2025-11-15 14:44:27.851583+00 2025-11-15 14:44:27.851591+00 f t 13384 \N \N f f +12444 2025-11-15 14:46:06.944941+00 2025-11-15 14:46:06.94495+00 f t 13385 \N \N f f +12445 2025-11-15 14:51:27.363468+00 2025-11-15 14:51:27.36348+00 f t 13386 \N \N f f +12446 2025-11-15 14:52:01.393836+00 2025-11-15 14:52:01.393845+00 f t 13387 \N \N f f +12447 2025-11-15 14:56:39.204592+00 2025-11-15 14:56:39.204605+00 f t 13388 \N \N f f +12448 2025-11-15 15:05:09.215474+00 2025-11-15 15:05:09.215484+00 f t 13389 \N \N f f +12449 2025-11-15 15:15:38.394417+00 2025-11-15 15:15:38.394429+00 f t 13390 \N \N f f +12450 2025-11-15 15:15:39.822294+00 2025-11-15 15:15:39.822303+00 f t 13391 \N \N f f +12451 2025-11-15 15:44:00.29788+00 2025-11-15 15:44:00.297888+00 f t 13392 \N \N f f +12524 2025-11-17 02:18:15.683771+00 2025-11-17 02:18:15.683777+00 f t 13468 \N \N f f +12452 2025-11-15 15:56:14.064903+00 2025-11-15 15:56:14.064903+00 f t 13393 \N \N f f +12453 2025-11-15 16:08:43.622169+00 2025-11-15 16:08:43.62218+00 f t 13394 \N \N f f +12454 2025-11-15 16:17:39.817299+00 2025-11-15 16:17:39.81731+00 f t 13395 \N \N f f +12455 2025-11-15 16:18:49.817991+00 2025-11-15 16:18:49.818003+00 f t 13396 \N \N f f +12456 2025-11-15 16:45:50.561556+00 2025-11-15 16:45:50.561564+00 f t 13397 \N \N f f +12457 2025-11-15 17:11:28.562498+00 2025-11-15 17:11:28.56251+00 f t 13398 \N \N f f +12458 2025-11-15 17:25:30.107203+00 2025-11-15 17:25:30.107213+00 f t 13399 \N \N f f +12459 2025-11-15 17:52:50.007215+00 2025-11-15 17:52:50.007224+00 f t 13400 \N \N f f +12460 2025-11-15 18:00:03.513317+00 2025-11-15 18:00:03.51333+00 f t 13401 \N \N f f +12461 2025-11-15 18:15:55.860949+00 2025-11-15 18:15:55.860959+00 f t 13402 \N \N f f +12462 2025-11-15 18:27:22.456367+00 2025-11-15 18:27:22.456382+00 f t 12810 \N \N f f +12463 2025-11-15 18:32:17.093217+00 2025-11-15 18:32:17.093225+00 f t 13403 \N \N f f +12464 2025-11-15 18:34:10.910573+00 2025-11-15 18:34:10.910573+00 f t 13404 \N \N f f +12465 2025-11-15 18:34:45.399952+00 2025-11-15 18:34:45.39996+00 f t 13405 \N \N f f +12466 2025-11-15 18:36:33.442705+00 2025-11-15 18:36:33.442717+00 f t 13406 \N \N f f +12467 2025-11-15 18:36:46.462242+00 2025-11-15 18:36:46.46225+00 f t 13407 \N \N f f +12468 2025-11-15 19:12:37.672366+00 2025-11-15 19:12:37.672366+00 f t 13408 \N \N f f +12469 2025-11-15 19:31:48.194807+00 2025-11-15 19:31:48.194815+00 f t 13410 \N \N f f +12470 2025-11-15 19:45:42.724903+00 2025-11-15 19:45:42.724914+00 f t 13411 \N \N f f +12471 2025-11-15 19:49:39.790329+00 2025-11-15 19:49:39.79034+00 f t 12857 \N \N f f +12472 2025-11-15 20:09:34.542561+00 2025-11-15 20:09:34.542572+00 f t 13412 \N \N f f +12473 2025-11-15 20:17:43.856064+00 2025-11-15 20:17:43.856073+00 f t 11659 \N \N f f +12474 2025-11-15 20:25:37.461928+00 2025-11-15 20:25:37.46194+00 f t 13413 \N \N f f +12475 2025-11-15 20:49:45.872485+00 2025-11-15 20:49:45.872497+00 f t 13414 \N \N f f +12476 2025-11-15 21:45:52.250511+00 2025-11-15 21:45:52.250511+00 f t 13415 \N \N f f +12477 2025-11-15 21:46:57.767951+00 2025-11-15 21:46:57.767964+00 f t 13416 \N \N f f +12525 2025-11-17 02:32:47.579359+00 2025-11-17 02:32:47.579366+00 f t 13469 \N \N f f +12478 2025-11-15 21:48:35.788876+00 2025-11-15 21:48:35.788876+00 f t 13417 \N \N f f +12479 2025-11-15 23:06:59.557+00 2025-11-15 23:06:59.557008+00 f t 13418 \N \N f f +12480 2025-11-16 00:16:40.480875+00 2025-11-16 00:16:40.480887+00 f t 13419 \N \N f f +12481 2025-11-16 01:25:35.002887+00 2025-11-16 01:25:35.002896+00 f t 13420 \N \N f f +12482 2025-11-16 01:53:57.893398+00 2025-11-16 01:53:57.893408+00 f t 13421 \N \N f f +12483 2025-11-16 02:23:19.360245+00 2025-11-16 02:23:19.360258+00 f t 13422 \N \N f f +12484 2025-11-16 05:03:18.014702+00 2025-11-16 05:03:18.014714+00 f t 13424 \N \N f f +12485 2025-11-16 11:36:02.767891+00 2025-11-16 11:36:02.767905+00 f t 13426 \N \N f f +12486 2025-11-16 12:12:59.830147+00 2025-11-16 12:12:59.830156+00 f t 13427 \N \N f f +12487 2025-11-16 12:41:23.63755+00 2025-11-16 12:41:23.637564+00 f t 13428 \N \N f f +12488 2025-11-16 13:19:43.525668+00 2025-11-16 13:19:43.525677+00 f t 13429 \N \N f f +12489 2025-11-16 13:47:36.544297+00 2025-11-16 13:47:36.544305+00 f t 6770 \N \N f f +12490 2025-11-16 13:54:36.947989+00 2025-11-16 13:54:36.947989+00 f t 13431 \N \N f f +12491 2025-11-16 13:55:19.432389+00 2025-11-16 13:55:19.432398+00 f t 13433 \N \N f f +12492 2025-11-16 14:05:40.501303+00 2025-11-16 14:05:40.501313+00 f t 13434 \N \N f f +12493 2025-11-16 14:13:29.145371+00 2025-11-16 14:13:29.145378+00 f t 13435 \N \N f f +12494 2025-11-16 14:20:15.234539+00 2025-11-16 14:20:15.234547+00 f t 13436 \N \N f f +12495 2025-11-16 14:22:06.866378+00 2025-11-16 14:22:06.866391+00 f t 13437 \N \N f f +12496 2025-11-16 14:24:54.958143+00 2025-11-16 14:24:54.958151+00 f t 13438 \N \N f f +12497 2025-11-16 14:33:42.043889+00 2025-11-16 14:33:42.043897+00 f t 13439 \N \N f f +12498 2025-11-16 14:49:28.18537+00 2025-11-16 14:49:28.18538+00 f t 13441 \N \N f f +12499 2025-11-16 15:02:03.970954+00 2025-11-16 15:02:03.970965+00 f t 13442 \N \N f f +12500 2025-11-16 15:49:29.941752+00 2025-11-16 15:49:29.94176+00 f t 13443 \N \N f f +12501 2025-11-16 16:26:32.431017+00 2025-11-16 16:26:32.431026+00 f t 13444 \N \N f f +12502 2025-11-16 16:35:49.675246+00 2025-11-16 16:35:49.675254+00 f t 13445 \N \N f f +12503 2025-11-16 17:19:46.070932+00 2025-11-16 17:19:46.070944+00 f t 13446 \N \N f f +12504 2025-11-16 17:41:57.572153+00 2025-11-16 17:41:57.572161+00 f t 13447 \N \N f f +12505 2025-11-16 17:42:37.818368+00 2025-11-16 17:42:37.818377+00 f t 13448 \N \N f f +12506 2025-11-16 18:08:57.381555+00 2025-11-16 18:08:57.381564+00 f t 13449 \N \N f f +12507 2025-11-16 18:48:17.240517+00 2025-11-16 18:48:17.240528+00 f t 13450 \N \N f f +12508 2025-11-16 19:12:18.391918+00 2025-11-16 19:12:18.391927+00 f t 13451 \N \N f f +12509 2025-11-16 19:38:40.024974+00 2025-11-16 19:38:40.024982+00 f t 13452 \N \N f f +12510 2025-11-16 19:41:11.036047+00 2025-11-16 19:41:11.03606+00 f t 13453 \N \N f f +12511 2025-11-16 20:04:42.097471+00 2025-11-16 20:04:42.097479+00 f t 13454 \N \N f f +12512 2025-11-16 20:08:04.576965+00 2025-11-16 20:08:04.576976+00 f t 13455 \N \N f f +12513 2025-11-16 20:23:24.065863+00 2025-11-16 20:23:24.065872+00 f t 13457 \N \N f f +12514 2025-11-16 22:15:04.255592+00 2025-11-16 22:15:04.255607+00 f t 13458 \N \N f f +12515 2025-11-16 23:47:24.858214+00 2025-11-16 23:47:24.858221+00 f t 13459 \N \N f f +12516 2025-11-17 00:14:39.915831+00 2025-11-17 00:14:39.91584+00 f t 13460 \N \N f f +12517 2025-11-17 00:37:05.685364+00 2025-11-17 00:37:05.685373+00 f t 13461 \N \N f f +12518 2025-11-17 00:48:49.518726+00 2025-11-17 00:48:49.518734+00 f t 13462 \N \N f f +12519 2025-11-17 00:50:18.245687+00 2025-11-17 00:50:18.245695+00 f t 13463 \N \N f f +12520 2025-11-17 01:05:17.157204+00 2025-11-17 01:05:17.157212+00 f t 13464 \N \N f f +12521 2025-11-17 01:43:46.404184+00 2025-11-17 01:43:46.404192+00 f t 13465 \N \N f f +12522 2025-11-17 01:50:55.391099+00 2025-11-17 01:50:55.391107+00 f t 13466 \N \N f f +12523 2025-11-17 01:53:13.411697+00 2025-11-17 01:53:13.411706+00 f t 13467 \N \N f f +12526 2025-11-17 02:58:33.592353+00 2025-11-17 02:58:33.592361+00 f t 13470 \N \N f f +12527 2025-11-17 03:01:56.113304+00 2025-11-17 03:01:56.113316+00 f t 13471 \N \N f f +12528 2025-11-17 03:05:05.897316+00 2025-11-17 03:05:05.89733+00 f t 13472 \N \N f f +12529 2025-11-17 05:55:50.105251+00 2025-11-17 05:55:50.105259+00 f t 13473 \N \N f f +12530 2025-11-17 06:05:01.785869+00 2025-11-17 06:05:01.785884+00 f t 13474 \N \N f f +12531 2025-11-17 06:22:56.183754+00 2025-11-17 06:22:56.183762+00 f t 13475 \N \N f f +12532 2025-11-17 06:23:10.766948+00 2025-11-17 06:23:10.766957+00 f t 13476 \N \N f f +12533 2025-11-17 07:51:29.790452+00 2025-11-17 07:51:29.790505+00 f t 13477 \N \N f f +12534 2025-11-17 10:23:24.673365+00 2025-11-17 10:23:24.673373+00 f t 13478 \N \N f f +12535 2025-11-17 10:59:54.808695+00 2025-11-17 10:59:54.808705+00 f t 13479 \N \N f f +12536 2025-11-17 12:31:25.023914+00 2025-11-17 12:31:25.023921+00 f t 13480 \N \N f f +12537 2025-11-17 12:32:17.716084+00 2025-11-17 12:32:17.716092+00 f t 13481 \N \N f f +12538 2025-11-17 12:38:13.52836+00 2025-11-17 12:38:13.528368+00 f t 13482 \N \N f f +12539 2025-11-17 12:38:30.732219+00 2025-11-17 12:38:30.732227+00 f t 13483 \N \N f f +12540 2025-11-17 12:43:51.543713+00 2025-11-17 12:43:51.54372+00 f t 13484 \N \N f f +12541 2025-11-17 12:44:47.620268+00 2025-11-17 12:44:47.620275+00 f t 13485 \N \N f f +12542 2025-11-17 12:45:54.302969+00 2025-11-17 12:45:54.302977+00 f t 13290 \N \N f f +12543 2025-11-17 12:52:27.803563+00 2025-11-17 12:52:27.803571+00 f t 13486 \N \N f f +12544 2025-11-17 12:54:50.25219+00 2025-11-17 12:54:50.252199+00 f t 13487 \N \N f f +12545 2025-11-17 12:57:09.928549+00 2025-11-17 12:57:09.928557+00 f t 13488 \N \N f f +12546 2025-11-17 12:58:26.530237+00 2025-11-17 12:58:26.530245+00 f t 13489 \N \N f f +12547 2025-11-17 13:03:40.692391+00 2025-11-17 13:03:40.6924+00 f t 13490 \N \N f f +12548 2025-11-17 13:13:11.397967+00 2025-11-17 13:13:11.397976+00 f t 13492 \N \N f f +12549 2025-11-17 13:13:31.02386+00 2025-11-17 13:13:31.023868+00 f t 13491 \N \N f f +12550 2025-11-17 13:20:49.617969+00 2025-11-17 13:20:49.617979+00 f t 13490 \N \N f f +12551 2025-11-17 13:34:58.056101+00 2025-11-17 13:34:58.05611+00 f t 6802 \N \N f f +12552 2025-11-17 13:43:22.316046+00 2025-11-17 13:43:22.316054+00 f t 13436 \N \N f f +12553 2025-11-17 14:14:02.039767+00 2025-11-17 14:14:02.039779+00 f t 13493 \N \N f f +12554 2025-11-17 14:31:13.126353+00 2025-11-17 14:31:13.126366+00 f t 13494 \N \N f f +12555 2025-11-17 14:35:22.359008+00 2025-11-17 14:35:22.359015+00 f t 13495 \N \N f f +12556 2025-11-17 14:38:00.758024+00 2025-11-17 14:38:00.758037+00 f t 13496 \N \N f f +12557 2025-11-17 14:58:56.178641+00 2025-11-17 14:58:56.178651+00 f t 13497 \N \N f f +12559 2025-11-17 15:09:57.72212+00 2025-11-17 15:09:57.722127+00 f t 13490 \N \N f f +12558 2025-11-17 15:10:31.808202+00 2025-11-17 15:10:31.808202+00 f t 13498 \N \N f f +12560 2025-11-17 15:13:37.207507+00 2025-11-17 15:13:37.207515+00 f t 13499 \N \N f f +12561 2025-11-17 15:14:17.910557+00 2025-11-17 15:14:17.91057+00 f t 13500 \N \N f f +12562 2025-11-17 15:15:18.621219+00 2025-11-17 15:15:18.621226+00 f t 13501 \N \N f f +12563 2025-11-17 15:25:12.067368+00 2025-11-17 15:25:12.067378+00 f t 13502 \N \N f f +12564 2025-11-17 15:32:24.845408+00 2025-11-17 15:32:24.84542+00 f t 13436 \N \N f f +12565 2025-11-17 15:32:27.834542+00 2025-11-17 15:32:27.834553+00 f t 13436 \N \N f f +12566 2025-11-17 15:54:23.574806+00 2025-11-17 15:54:23.574814+00 f t 13503 \N \N f f +12567 2025-11-17 16:02:34.308207+00 2025-11-17 16:02:34.308215+00 f t 13504 \N \N f f +12568 2025-11-17 16:10:25.418713+00 2025-11-17 16:10:25.418723+00 f t 13505 \N \N f f +12569 2025-11-17 16:19:27.314895+00 2025-11-17 16:19:27.314903+00 f t 13506 \N \N f f +12570 2025-11-17 16:23:06.386174+00 2025-11-17 16:23:06.386183+00 f t 13507 \N \N f f +12571 2025-11-17 16:25:03.272731+00 2025-11-17 16:25:03.272745+00 f t 313 \N \N f f +12572 2025-11-17 16:36:25.850439+00 2025-11-17 16:36:25.850446+00 f t 12325 \N \N f f +12573 2025-11-17 16:38:48.91293+00 2025-11-17 16:38:48.912938+00 f t 12325 \N \N f f +12574 2025-11-17 16:50:02.444306+00 2025-11-17 16:50:02.444322+00 f t 13508 \N \N f f +12575 2025-11-17 16:51:27.251335+00 2025-11-17 16:51:27.251343+00 f t 13509 \N \N f f +12576 2025-11-17 16:55:01.356484+00 2025-11-17 16:55:01.356499+00 f t 13510 \N \N f f +12577 2025-11-17 16:56:32.251318+00 2025-11-17 16:56:32.251327+00 f t 13511 \N \N f f +12578 2025-11-17 16:57:42.591271+00 2025-11-17 16:57:42.59128+00 f t 13512 \N \N f f +12579 2025-11-17 16:58:31.744098+00 2025-11-17 16:58:31.744106+00 f t 13513 \N \N f f +12580 2025-11-17 17:01:17.376048+00 2025-11-17 17:01:17.376057+00 f t 13514 \N \N f f +12581 2025-11-17 17:07:09.136603+00 2025-11-17 17:07:09.136622+00 f t 13516 \N \N f f +12582 2025-11-17 17:07:33.456028+00 2025-11-17 17:07:33.456042+00 f t 13517 \N \N f f +12583 2025-11-17 17:08:40.793534+00 2025-11-17 17:08:40.793541+00 f t 13436 \N \N f f +12584 2025-11-17 17:10:00.492727+00 2025-11-17 17:10:00.49274+00 f t 13518 \N \N f f +12585 2025-11-17 17:17:57.824414+00 2025-11-17 17:17:57.824426+00 f t 13519 \N \N f f +12586 2025-11-17 17:19:49.275459+00 2025-11-17 17:19:49.275471+00 f t 13520 \N \N f f +12587 2025-11-17 17:33:54.607659+00 2025-11-17 17:33:54.607666+00 f t 13521 \N \N f f +12588 2025-11-17 17:36:44.724806+00 2025-11-17 17:36:44.724814+00 f t 13522 \N \N f f +12589 2025-11-17 17:40:52.110669+00 2025-11-17 17:40:52.110677+00 f t 13523 \N \N f f +12590 2025-11-17 18:25:01.185305+00 2025-11-17 18:25:01.185318+00 f t 12696 \N \N f f +12591 2025-11-17 18:33:45.827094+00 2025-11-17 18:33:45.8271+00 f t 13524 \N \N f f +12592 2025-11-17 18:38:02.702992+00 2025-11-17 18:38:02.703003+00 f t 13525 \N \N f f +12593 2025-11-17 18:39:58.982844+00 2025-11-17 18:39:58.982852+00 f t 13526 \N \N f f +12594 2025-11-17 18:40:13.574438+00 2025-11-17 18:40:13.574447+00 f t 13527 \N \N f f +12595 2025-11-17 18:54:51.792008+00 2025-11-17 18:54:51.792016+00 f t 13528 \N \N f f +12596 2025-11-17 19:08:44.144437+00 2025-11-17 19:08:44.14445+00 f t 13529 \N \N f f +12597 2025-11-17 19:09:21.46158+00 2025-11-17 19:09:21.461593+00 f t 2234 \N \N f f +12598 2025-11-17 19:09:26.856546+00 2025-11-17 19:09:26.856555+00 f t 13530 \N \N f f +12599 2025-11-17 19:14:22.122629+00 2025-11-17 19:14:22.122641+00 f t 13531 \N \N f f +12600 2025-11-17 19:23:08.469682+00 2025-11-17 19:23:08.469691+00 f t 13532 \N \N f f +12601 2025-11-17 19:25:15.878329+00 2025-11-17 19:25:15.878336+00 f t 13533 \N \N f f +12602 2025-11-17 19:36:54.36127+00 2025-11-17 19:36:54.361279+00 f t 13534 \N \N f f +12603 2025-11-17 19:51:29.998292+00 2025-11-17 19:51:29.998301+00 f t 13535 \N \N f f +12604 2025-11-17 19:57:31.512534+00 2025-11-17 19:57:31.512544+00 f t 13536 \N \N f f +12605 2025-11-17 19:59:24.551387+00 2025-11-17 19:59:24.551397+00 f t 13537 \N \N f f +12606 2025-11-17 20:05:59.995771+00 2025-11-17 20:05:59.99578+00 f t 13539 \N \N f f +12607 2025-11-17 20:10:42.341799+00 2025-11-17 20:10:42.341807+00 f t 13540 \N \N f f +12608 2025-11-17 20:32:52.386282+00 2025-11-17 20:32:52.386295+00 f t 13541 \N \N f f +12609 2025-11-17 20:39:41.391233+00 2025-11-17 20:39:41.391241+00 f t 13542 \N \N f f +12610 2025-11-17 20:44:02.838301+00 2025-11-17 20:44:02.838312+00 f t 13543 \N \N f f +12611 2025-11-17 21:09:06.315018+00 2025-11-17 21:09:06.315025+00 f t 13544 \N \N f f +12612 2025-11-17 21:12:58.50074+00 2025-11-17 21:12:58.500749+00 f t 13545 \N \N f f +12613 2025-11-17 21:14:15.80379+00 2025-11-17 21:14:15.803801+00 f t 13546 \N \N f f +12615 2025-11-17 21:28:23.843427+00 2025-11-17 21:28:23.843438+00 f t 13549 \N \N f f +12614 2025-11-17 21:23:41.939589+00 2025-11-17 21:23:41.939601+00 f t 13544 \N \N f f +12616 2025-11-17 21:39:57.335597+00 2025-11-17 21:39:57.335597+00 f t 13551 \N \N f f +12617 2025-11-17 21:46:43.659709+00 2025-11-17 21:46:43.659717+00 f t 13552 \N \N f f +12618 2025-11-17 22:03:35.965063+00 2025-11-17 22:03:35.965071+00 f t 13553 \N \N f f +12619 2025-11-17 22:15:25.002638+00 2025-11-17 22:15:25.00265+00 f t 13554 \N \N f f +12620 2025-11-17 22:21:26.610393+00 2025-11-17 22:21:26.610402+00 f t 13555 \N \N f f +12621 2025-11-17 22:23:01.658667+00 2025-11-17 22:23:01.658674+00 f t 13556 \N \N f f +12622 2025-11-17 22:30:39.481875+00 2025-11-17 22:30:39.481883+00 f t 13557 \N \N f f +12623 2025-11-17 22:36:23.079372+00 2025-11-17 22:36:23.079384+00 f t 13558 \N \N f f +12624 2025-11-17 22:37:19.544273+00 2025-11-17 22:37:19.544279+00 f t 13559 \N \N f f +12625 2025-11-17 22:39:14.572802+00 2025-11-17 22:39:14.57281+00 f t 13560 \N \N f f +12626 2025-11-17 22:39:31.45508+00 2025-11-17 22:39:31.455088+00 f t 13561 \N \N f f +12627 2025-11-17 22:40:06.732371+00 2025-11-17 22:40:06.732381+00 f t 13562 \N \N f f +12628 2025-11-17 22:45:17.117474+00 2025-11-17 22:45:17.117482+00 f t 13563 \N \N f f +12629 2025-11-17 22:49:30.261099+00 2025-11-17 22:49:30.261099+00 f t 13564 \N \N f f +12630 2025-11-17 23:13:23.125395+00 2025-11-17 23:13:23.125403+00 f t 13565 \N \N f f +12631 2025-11-17 23:18:17.894076+00 2025-11-17 23:18:17.894084+00 f t 13566 \N \N f f +12632 2025-11-17 23:34:33.416968+00 2025-11-17 23:34:33.416977+00 f t 13567 \N \N f f +12633 2025-11-17 23:42:04.663245+00 2025-11-17 23:42:04.663254+00 f t 13568 \N \N f f +12634 2025-11-17 23:44:14.773255+00 2025-11-17 23:44:14.773255+00 f t 13569 \N \N f f +12635 2025-11-17 23:45:10.427113+00 2025-11-17 23:45:10.427122+00 f t 13570 \N \N f f +12637 2025-11-17 23:53:09.399038+00 2025-11-17 23:53:09.399049+00 f t 13572 \N \N f f +12636 2025-11-17 23:55:14.979898+00 2025-11-17 23:55:14.979898+00 f t 13571 \N \N f f +12638 2025-11-18 00:04:21.274332+00 2025-11-18 00:04:21.27434+00 f t 13573 \N \N f f +12639 2025-11-18 00:10:34.420461+00 2025-11-18 00:10:34.420469+00 f t 12696 \N \N f f +12640 2025-11-18 00:14:08.587638+00 2025-11-18 00:14:08.587646+00 f t 13574 \N \N f f +12641 2025-11-18 00:14:15.741929+00 2025-11-18 00:14:15.741936+00 f t 12810 \N \N f f +12642 2025-11-18 00:16:51.314911+00 2025-11-18 00:16:51.314919+00 f t 13575 \N \N f f +12643 2025-11-18 00:19:46.706376+00 2025-11-18 00:19:46.706384+00 f t 13576 \N \N f f +12644 2025-11-18 00:20:33.127864+00 2025-11-18 00:20:33.127876+00 f t 13577 \N \N f f +12645 2025-11-18 00:34:23.382212+00 2025-11-18 00:34:23.382223+00 f t 13578 \N \N f f +12646 2025-11-18 00:35:48.063801+00 2025-11-18 00:35:48.06381+00 f t 13579 \N \N f f +12647 2025-11-18 01:05:51.613905+00 2025-11-18 01:05:51.613912+00 f t 13580 \N \N f f +12648 2025-11-18 01:08:40.457616+00 2025-11-18 01:08:40.457623+00 f t 13581 \N \N f f +12649 2025-11-18 01:13:00.302261+00 2025-11-18 01:13:00.302269+00 f t 13582 \N \N f f +12650 2025-11-18 01:18:11.176261+00 2025-11-18 01:18:11.176275+00 f t 13584 \N \N f f +12651 2025-11-18 01:23:02.785186+00 2025-11-18 01:23:02.785195+00 f t 13585 \N \N f f +12652 2025-11-18 01:45:16.162642+00 2025-11-18 01:45:16.16265+00 f t 13586 \N \N f f +12653 2025-11-18 02:09:49.414444+00 2025-11-18 02:09:49.414454+00 f t 13587 \N \N f f +12654 2025-11-18 02:16:24.237548+00 2025-11-18 02:16:24.237556+00 f t 13588 \N \N f f +12655 2025-11-18 02:58:14.232058+00 2025-11-18 02:58:14.232067+00 f t 13589 \N \N f f +12656 2025-11-18 03:18:34.568713+00 2025-11-18 03:18:34.568722+00 f t 13590 \N \N f f +12657 2025-11-18 03:20:13.638414+00 2025-11-18 03:20:13.638426+00 f t 13591 \N \N f f +12658 2025-11-18 04:00:44.774573+00 2025-11-18 04:00:44.774581+00 f t 13592 \N \N f f +12659 2025-11-18 04:02:56.848271+00 2025-11-18 04:02:56.848284+00 f t 13593 \N \N f f +12660 2025-11-18 04:08:01.524162+00 2025-11-18 04:08:01.524172+00 f t 13594 \N \N f f +12661 2025-11-18 04:09:14.229292+00 2025-11-18 04:09:14.229303+00 f t 13595 \N \N f f +12662 2025-11-18 04:17:15.914533+00 2025-11-18 04:17:15.914549+00 f t 13596 \N \N f f +12663 2025-11-18 05:29:51.244396+00 2025-11-18 05:29:51.244407+00 f t 13597 \N \N f f +12664 2025-11-18 06:04:41.563123+00 2025-11-18 06:04:41.563173+00 f t 13598 \N \N f f +12665 2025-11-18 06:33:57.331042+00 2025-11-18 06:33:57.331042+00 f t 13599 \N \N f f +12666 2025-11-18 07:12:31.038084+00 2025-11-18 07:12:31.03809+00 f t 13601 \N \N f f +12667 2025-11-18 08:01:15.434171+00 2025-11-18 08:01:15.434177+00 f t 13602 \N \N f f +12668 2025-11-18 09:43:39.597404+00 2025-11-18 09:43:39.597412+00 f t 13603 \N \N f f +12669 2025-11-18 09:49:27.186183+00 2025-11-18 09:49:27.18619+00 f t 13604 \N \N f f +12670 2025-11-18 09:51:02.980354+00 2025-11-18 09:51:02.980362+00 f t 13605 \N \N f f +12671 2025-11-18 09:53:57.165496+00 2025-11-18 09:53:57.165504+00 f t 13606 \N \N f f +12672 2025-11-18 09:57:11.671279+00 2025-11-18 09:57:11.671287+00 f t 13607 \N \N f f +12673 2025-11-18 10:10:24.899283+00 2025-11-18 10:10:24.899295+00 f t 13608 \N \N f f +12674 2025-11-18 10:48:56.10979+00 2025-11-18 10:48:56.109799+00 f t 13609 \N \N f f +12675 2025-11-18 10:50:37.834731+00 2025-11-18 10:50:37.83474+00 f t 13610 \N \N f f +12676 2025-11-18 11:09:51.247356+00 2025-11-18 11:09:51.247365+00 f t 13612 \N \N f f +12677 2025-11-18 11:10:39.100519+00 2025-11-18 11:10:39.100527+00 f t 13613 \N \N f f +12678 2025-11-18 11:27:16.861054+00 2025-11-18 11:27:16.861062+00 f t 13614 \N \N f f +12679 2025-11-18 11:30:34.175105+00 2025-11-18 11:30:34.175114+00 f t 13615 \N \N f f +12680 2025-11-18 12:14:29.996434+00 2025-11-18 12:14:29.996441+00 f t 13616 \N \N f f +12682 2025-11-18 12:38:47.292062+00 2025-11-18 12:38:47.292073+00 f t 13617 \N \N f f +12683 2025-11-18 14:44:59.180921+00 2025-11-18 14:44:59.180936+00 f t 13618 \N \N f f +12684 2025-11-18 14:55:10.540814+00 2025-11-18 14:55:10.540826+00 f t 9712 \N \N f f +12685 2025-11-18 14:55:31.874279+00 2025-11-18 14:55:31.87429+00 f t 13619 \N \N f f +12686 2025-11-18 15:09:03.341133+00 2025-11-18 15:09:03.341142+00 f t 13620 \N \N f f +12687 2025-11-18 15:16:21.322113+00 2025-11-18 15:16:21.322113+00 f t 13621 \N \N f f +12681 2025-11-18 15:31:31.638397+00 2025-11-18 15:31:31.638397+00 f t 5951 \N \N f f +12688 2025-11-18 15:54:21.87485+00 2025-11-18 15:54:21.87486+00 f t 13622 \N \N f f +12719 2025-11-18 19:27:28.219889+00 2025-11-18 19:27:28.219889+00 f t 13654 \N \N f f +12689 2025-11-18 15:58:53.621362+00 2025-11-18 15:58:53.621362+00 f t 13623 \N \N f f +12690 2025-11-18 16:02:50.913315+00 2025-11-18 16:02:50.913326+00 f t 13624 \N \N f f +12691 2025-11-18 16:09:19.371358+00 2025-11-18 16:09:19.371366+00 f t 13625 \N \N f f +12692 2025-11-18 16:22:53.774634+00 2025-11-18 16:22:53.774641+00 f t 13626 \N \N f f +12693 2025-11-18 16:28:00.73506+00 2025-11-18 16:28:00.735068+00 f t 13627 \N \N f f +12694 2025-11-18 16:35:14.907063+00 2025-11-18 16:35:14.907071+00 f t 13628 \N \N f f +12695 2025-11-18 16:36:12.645516+00 2025-11-18 16:36:12.645523+00 f t 13629 \N \N f f +12696 2025-11-18 16:54:15.300619+00 2025-11-18 16:54:15.300627+00 f t 13630 \N \N f f +12697 2025-11-18 17:03:58.862669+00 2025-11-18 17:03:58.862678+00 f t 13631 \N \N f f +12698 2025-11-18 17:05:02.974432+00 2025-11-18 17:05:02.974447+00 f t 13632 \N \N f f +12699 2025-11-18 17:09:06.596015+00 2025-11-18 17:09:06.596023+00 f t 13633 \N \N f f +12700 2025-11-18 17:13:50.06537+00 2025-11-18 17:13:50.065377+00 f t 13634 \N \N f f +12701 2025-11-18 17:14:05.806029+00 2025-11-18 17:14:05.806037+00 f t 9712 \N \N f f +12702 2025-11-18 17:18:10.546533+00 2025-11-18 17:18:10.546541+00 f t 13635 \N \N f f +12703 2025-11-18 17:27:15.46114+00 2025-11-18 17:27:15.461148+00 f t 13636 \N \N f f +12704 2025-11-18 17:30:02.930226+00 2025-11-18 17:30:02.930239+00 f t 13637 \N \N f f +12705 2025-11-18 17:30:14.157084+00 2025-11-18 17:30:14.157098+00 f t 13638 \N \N f f +12706 2025-11-18 17:30:16.465685+00 2025-11-18 17:30:16.465693+00 f t 13639 \N \N f f +12707 2025-11-18 17:35:10.04977+00 2025-11-18 17:35:10.049779+00 f t 13640 \N \N f f +12708 2025-11-18 17:41:19.990656+00 2025-11-18 17:41:19.990665+00 f t 13641 \N \N f f +12709 2025-11-18 17:53:08.255098+00 2025-11-18 17:53:08.25511+00 f t 13642 \N \N f f +12710 2025-11-18 18:04:38.244932+00 2025-11-18 18:04:38.244943+00 f t 13643 \N \N f f +12711 2025-11-18 18:11:31.783401+00 2025-11-18 18:11:31.783409+00 f t 13644 \N \N f f +12712 2025-11-18 18:37:26.746117+00 2025-11-18 18:37:26.746124+00 f t 13645 \N \N f f +12713 2025-11-18 18:43:29.781768+00 2025-11-18 18:43:29.781775+00 f t 13646 \N \N f f +12714 2025-11-18 18:57:21.605698+00 2025-11-18 18:57:21.605707+00 f t 13649 \N \N f f +12715 2025-11-18 18:57:51.46072+00 2025-11-18 18:57:51.460727+00 f t 13650 \N \N f f +12716 2025-11-18 19:19:42.926223+00 2025-11-18 19:19:42.926232+00 f t 13651 \N \N f f +12717 2025-11-18 19:20:59.905324+00 2025-11-18 19:20:59.905335+00 f t 13652 \N \N f f +12718 2025-11-18 19:21:23.032002+00 2025-11-18 19:21:23.03201+00 f t 13653 \N \N f f +12720 2025-11-18 19:30:20.402046+00 2025-11-18 19:30:20.402056+00 f t 13655 \N \N f f +12721 2025-11-18 19:36:52.015274+00 2025-11-18 19:36:52.015281+00 f t 13656 \N \N f f +12722 2025-11-18 19:38:20.841592+00 2025-11-18 19:38:20.841605+00 f t 13657 \N \N f f +12723 2025-11-18 19:44:59.655868+00 2025-11-18 19:44:59.655875+00 f t 13658 \N \N f f +12724 2025-11-18 19:48:30.863773+00 2025-11-18 19:48:30.863781+00 f t 13659 \N \N f f +12725 2025-11-18 19:52:46.483493+00 2025-11-18 19:52:46.483502+00 f t 13661 \N \N f f +12726 2025-11-18 19:54:18.077176+00 2025-11-18 19:54:18.077185+00 f t 13662 \N \N f f +12727 2025-11-18 19:56:43.038484+00 2025-11-18 19:56:43.038494+00 f t 13663 \N \N f f +12728 2025-11-18 19:57:23.209676+00 2025-11-18 19:57:23.20969+00 f t 13664 \N \N f f +12729 2025-11-18 19:58:21.338833+00 2025-11-18 19:58:21.338842+00 f t 13665 \N \N f f +12730 2025-11-18 20:04:22.187761+00 2025-11-18 20:04:22.187769+00 f t 13666 \N \N f f +12731 2025-11-18 20:07:13.650766+00 2025-11-18 20:07:13.650777+00 f t 13667 \N \N f f +12732 2025-11-18 20:07:17.588312+00 2025-11-18 20:07:17.58832+00 f t 811 \N \N f f +12733 2025-11-18 20:08:12.07403+00 2025-11-18 20:08:12.074041+00 f t 13668 \N \N f f +12734 2025-11-18 20:10:28.352248+00 2025-11-18 20:10:28.352259+00 f t 13648 \N \N f f +12735 2025-11-18 20:20:27.962475+00 2025-11-18 20:20:27.962487+00 f t 13669 \N \N f f +12736 2025-11-18 21:28:09.908627+00 2025-11-18 21:28:09.908636+00 f t 10559 \N \N f f +12737 2025-11-18 21:32:08.331481+00 2025-11-18 21:32:08.331492+00 f t 13670 \N \N f f +12738 2025-11-18 21:32:51.882103+00 2025-11-18 21:32:51.882111+00 f t 13671 \N \N f f +12739 2025-11-18 21:33:45.04622+00 2025-11-18 21:33:45.046228+00 f t 13672 \N \N f f +12740 2025-11-18 21:35:05.530839+00 2025-11-18 21:35:05.530849+00 f t 13673 \N \N f f +12741 2025-11-18 21:35:45.308436+00 2025-11-18 21:35:45.308444+00 f t 13674 \N \N f f +12742 2025-11-18 21:40:45.905424+00 2025-11-18 21:40:45.905432+00 f t 13676 \N \N f f +12743 2025-11-18 21:46:41.574776+00 2025-11-18 21:46:41.574789+00 f t 13677 \N \N f f +12744 2025-11-18 21:47:27.364642+00 2025-11-18 21:47:27.364649+00 f t 13678 \N \N f f +12745 2025-11-18 22:02:54.588406+00 2025-11-18 22:02:54.588418+00 f t 13679 \N \N f f +12746 2025-11-18 22:12:22.786561+00 2025-11-18 22:12:22.786574+00 f t 13680 \N \N f f +12747 2025-11-18 22:14:35.819634+00 2025-11-18 22:14:35.819645+00 f t 13681 \N \N f f +12748 2025-11-18 22:16:00.286955+00 2025-11-18 22:16:00.286967+00 f t 13682 \N \N f f +12749 2025-11-18 22:22:02.087753+00 2025-11-18 22:22:02.087766+00 f t 13683 \N \N f f +12750 2025-11-18 22:23:04.025962+00 2025-11-18 22:23:04.025973+00 f t 13684 \N \N f f +12751 2025-11-18 22:30:14.705486+00 2025-11-18 22:30:14.705494+00 f t 13685 \N \N f f +12752 2025-11-18 22:39:20.480628+00 2025-11-18 22:39:20.480636+00 f t 13686 \N \N f f +12753 2025-11-18 22:55:39.700091+00 2025-11-18 22:55:39.700103+00 f t 13687 \N \N f f +12754 2025-11-18 23:04:56.910443+00 2025-11-18 23:04:56.910451+00 f t 13688 \N \N f f +12755 2025-11-18 23:16:56.425994+00 2025-11-18 23:16:56.426003+00 f t 13689 \N \N f f +12756 2025-11-18 23:18:37.683977+00 2025-11-18 23:18:37.683986+00 f t 13690 \N \N f f +12757 2025-11-18 23:19:26.004306+00 2025-11-18 23:19:26.004314+00 f t 13691 \N \N f f +12758 2025-11-18 23:24:08.609955+00 2025-11-18 23:24:08.609963+00 f t 13692 \N \N f f +12759 2025-11-18 23:27:12.505159+00 2025-11-18 23:27:12.505166+00 f t 13693 \N \N f f +12760 2025-11-18 23:52:37.895774+00 2025-11-18 23:52:37.895786+00 f t 13694 \N \N f f +12761 2025-11-18 23:53:51.35672+00 2025-11-18 23:53:51.356727+00 f t 13695 \N \N f f +12762 2025-11-18 23:55:42.762457+00 2025-11-18 23:55:42.762465+00 f t 13696 \N \N f f +12763 2025-11-18 23:58:17.272916+00 2025-11-18 23:58:17.272923+00 f t 13697 \N \N f f +12764 2025-11-19 00:32:45.771398+00 2025-11-19 00:32:45.771406+00 f t 13698 \N \N f f +12765 2025-11-19 00:38:11.318135+00 2025-11-19 00:38:11.318142+00 f t 13699 \N \N f f +12766 2025-11-19 01:12:46.66163+00 2025-11-19 01:12:46.661637+00 f t 13700 \N \N f f +12767 2025-11-19 01:18:52.646949+00 2025-11-19 01:18:52.646956+00 f t 13701 \N \N f f +12768 2025-11-19 01:22:20.204732+00 2025-11-19 01:22:20.204743+00 f t 13702 \N \N f f +12769 2025-11-19 01:24:56.641868+00 2025-11-19 01:24:56.641879+00 f t 13703 \N \N f f +12770 2025-11-19 01:32:54.636119+00 2025-11-19 01:32:54.636131+00 f t 13704 \N \N f f +12771 2025-11-19 01:40:18.118885+00 2025-11-19 01:40:18.118894+00 f t 13705 \N \N f f +12772 2025-11-19 01:42:15.051022+00 2025-11-19 01:42:15.05103+00 f t 13706 \N \N f f +12773 2025-11-19 01:48:07.345441+00 2025-11-19 01:48:07.345441+00 f t 13707 \N \N f f +12774 2025-11-19 01:49:27.925777+00 2025-11-19 01:49:27.925785+00 f t 13708 \N \N f f +12775 2025-11-19 01:54:00.573794+00 2025-11-19 01:54:00.573801+00 f t 13709 \N \N f f +12776 2025-11-19 02:10:22.686132+00 2025-11-19 02:10:22.686141+00 f t 13711 \N \N f f +12777 2025-11-19 02:24:58.149475+00 2025-11-19 02:24:58.149484+00 f t 13712 \N \N f f +12778 2025-11-19 02:26:36.795954+00 2025-11-19 02:26:36.795965+00 f t 13713 \N \N f f +12779 2025-11-19 02:29:21.18378+00 2025-11-19 02:29:21.183792+00 f t 13714 \N \N f f +12780 2025-11-19 02:47:35.043063+00 2025-11-19 02:47:35.043073+00 f t 13715 \N \N f f +12781 2025-11-19 02:50:09.429019+00 2025-11-19 02:50:09.429032+00 f t 13716 \N \N f f +12782 2025-11-19 02:51:02.589087+00 2025-11-19 02:51:02.5891+00 f t 13717 \N \N f f +12783 2025-11-19 03:29:07.532379+00 2025-11-19 03:29:07.532391+00 f t 13718 \N \N f f +12784 2025-11-19 03:36:59.685393+00 2025-11-19 03:36:59.685402+00 f t 13719 \N \N f f +12785 2025-11-19 03:39:26.491507+00 2025-11-19 03:39:26.491516+00 f t 13720 \N \N f f +12786 2025-11-19 04:24:23.130509+00 2025-11-19 04:24:23.130517+00 f t 13721 \N \N f f +12787 2025-11-19 04:28:51.78403+00 2025-11-19 04:28:51.784037+00 f t 13722 \N \N f f +12788 2025-11-19 04:32:07.385833+00 2025-11-19 04:32:07.385842+00 f t 13723 \N \N f f +12789 2025-11-19 04:34:47.370811+00 2025-11-19 04:34:47.370819+00 f t 13724 \N \N f f +12790 2025-11-19 04:35:21.1208+00 2025-11-19 04:35:21.120808+00 f t 13725 \N \N f f +12791 2025-11-19 04:35:27.326714+00 2025-11-19 04:35:27.326726+00 f t 13726 \N \N f f +12792 2025-11-19 05:42:59.195983+00 2025-11-19 05:42:59.195991+00 f t 13727 \N \N f f +12793 2025-11-19 07:08:08.984291+00 2025-11-19 07:08:08.984299+00 f t 13728 \N \N f f +12794 2025-11-19 08:59:15.388739+00 2025-11-19 08:59:15.388746+00 f t 13729 \N \N f f +12795 2025-11-19 09:03:03.795446+00 2025-11-19 09:03:03.795456+00 f t 13730 \N \N f f +12796 2025-11-19 09:11:09.040088+00 2025-11-19 09:11:09.040096+00 f t 13731 \N \N f f +12797 2025-11-19 09:21:03.890214+00 2025-11-19 09:21:03.890225+00 f t 13732 \N \N f f +12798 2025-11-19 09:49:56.454155+00 2025-11-19 09:49:56.454169+00 f t 13733 \N \N f f +12799 2025-11-19 10:02:57.060714+00 2025-11-19 10:02:57.060723+00 f t 13734 \N \N f f +12800 2025-11-19 10:08:51.564906+00 2025-11-19 10:08:51.564912+00 f t 13735 \N \N f f +12801 2025-11-19 10:12:57.294136+00 2025-11-19 10:12:57.294145+00 f t 13736 \N \N f f +12802 2025-11-19 10:38:06.676723+00 2025-11-19 10:38:06.676731+00 f t 13737 \N \N f f +12803 2025-11-19 10:38:28.915251+00 2025-11-19 10:38:28.91526+00 f t 13738 \N \N f f +12804 2025-11-19 10:51:58.066111+00 2025-11-19 10:51:58.066119+00 f t 13739 \N \N f f +12805 2025-11-19 10:54:57.32269+00 2025-11-19 10:54:57.3227+00 f t 13740 \N \N f f +12806 2025-11-19 11:13:57.512682+00 2025-11-19 11:13:57.512689+00 f t 13741 \N \N f f +12807 2025-11-19 11:15:50.796587+00 2025-11-19 11:15:50.796601+00 f t 13742 \N \N f f +12808 2025-11-19 11:25:54.096596+00 2025-11-19 11:25:54.096605+00 f t 13743 \N \N f f +12809 2025-11-19 11:29:25.433427+00 2025-11-19 11:29:25.433435+00 f t 13744 \N \N f f +12810 2025-11-19 11:51:17.208365+00 2025-11-19 11:51:17.208373+00 f t 13745 \N \N f f +12811 2025-11-19 11:53:08.832058+00 2025-11-19 11:53:08.832065+00 f t 13746 \N \N f f +12812 2025-11-19 11:57:52.037652+00 2025-11-19 11:57:52.03766+00 f t 13747 \N \N f f +12814 2025-11-19 12:03:24.742863+00 2025-11-19 12:03:24.742871+00 f t 13749 \N \N f f +12813 2025-11-19 12:02:55.083912+00 2025-11-19 12:02:55.08392+00 f t 13744 \N \N f f +12815 2025-11-19 12:06:25.862894+00 2025-11-19 12:06:25.862901+00 f t 13751 \N \N f f +12816 2025-11-19 12:07:28.18814+00 2025-11-19 12:07:28.188149+00 f t 13752 \N \N f f +12817 2025-11-19 12:14:41.981823+00 2025-11-19 12:14:41.981834+00 f t 13753 \N \N f f +12818 2025-11-19 12:17:38.673663+00 2025-11-19 12:17:38.673671+00 f t 13754 \N \N f f +12819 2025-11-19 12:46:08.494685+00 2025-11-19 12:46:08.494698+00 f t 13756 \N \N f f +12820 2025-11-19 12:51:10.636343+00 2025-11-19 12:51:10.636355+00 f t 13757 \N \N f f +12821 2025-11-19 12:54:29.532135+00 2025-11-19 12:54:29.532146+00 f t 13758 \N \N f f +12822 2025-11-19 12:57:01.273669+00 2025-11-19 12:57:01.273678+00 f t 7443 \N \N f f +12824 2025-11-19 12:58:26.330125+00 2025-11-19 12:58:26.330137+00 f t 13760 \N \N f f +12825 2025-11-19 12:58:58.78966+00 2025-11-19 12:58:58.789673+00 f t 13761 \N \N f f +12823 2025-11-19 13:00:12.41071+00 2025-11-19 13:00:12.41071+00 f t 13759 \N \N f f +12826 2025-11-19 13:01:24.406339+00 2025-11-19 13:01:24.406352+00 f t 13762 \N \N f f +12827 2025-11-19 13:06:45.477879+00 2025-11-19 13:06:45.477891+00 f t 13764 \N \N f f +12828 2025-11-19 13:08:00.566004+00 2025-11-19 13:08:00.566012+00 f t 13765 \N \N f f +12829 2025-11-19 13:09:57.033326+00 2025-11-19 13:09:57.03334+00 f t 13766 \N \N f f +12830 2025-11-19 13:13:58.151271+00 2025-11-19 13:13:58.151284+00 f t 13767 \N \N f f +12831 2025-11-19 13:18:17.997091+00 2025-11-19 13:18:17.997103+00 f t 13769 \N \N f f +12832 2025-11-19 13:18:59.174842+00 2025-11-19 13:18:59.17485+00 f t 13661 \N \N f f +12834 2025-11-19 13:32:19.273107+00 2025-11-19 13:32:19.273119+00 f t 13771 \N \N f f +12833 2025-11-19 13:30:59.385862+00 2025-11-19 13:30:59.385871+00 f t 12455 \N \N f f +12835 2025-11-19 13:47:50.139216+00 2025-11-19 13:47:50.139228+00 f t 13774 \N \N f f +12836 2025-11-19 13:48:53.090831+00 2025-11-19 13:48:53.090844+00 f t 13771 \N \N f f +12837 2025-11-19 13:56:04.055799+00 2025-11-19 13:56:04.055806+00 f t 13777 \N \N f f +12838 2025-11-19 14:18:59.344879+00 2025-11-19 14:18:59.344879+00 f t 13778 \N \N f f +12839 2025-11-19 14:27:09.487124+00 2025-11-19 14:27:09.487155+00 f t 13779 \N \N f f +12840 2025-11-19 14:27:23.375997+00 2025-11-19 14:27:23.376005+00 f t 13646 \N \N f f +12841 2025-11-19 14:29:07.909066+00 2025-11-19 14:29:07.909075+00 f t 13780 \N \N f f +12842 2025-11-19 14:29:29.409916+00 2025-11-19 14:29:29.409924+00 f t 10880 \N \N f f +12843 2025-11-19 14:30:51.399423+00 2025-11-19 14:30:51.399431+00 f t 13781 \N \N f f +12844 2025-11-19 14:41:39.278492+00 2025-11-19 14:41:39.278499+00 f t 13782 \N \N f f +12845 2025-11-19 14:48:54.505944+00 2025-11-19 14:48:54.505955+00 f t 703 \N \N f f +12846 2025-11-19 14:49:19.111677+00 2025-11-19 14:49:19.111687+00 f t 13663 \N \N f f +12847 2025-11-19 14:52:30.046103+00 2025-11-19 14:52:30.046116+00 f t 13783 \N \N f f +12848 2025-11-19 14:56:14.678593+00 2025-11-19 14:56:14.6786+00 f t 13784 \N \N f f +12849 2025-11-19 14:57:59.350074+00 2025-11-19 14:57:59.350083+00 f t 13785 \N \N f f +12850 2025-11-19 14:58:29.734843+00 2025-11-19 14:58:29.734854+00 f t 13786 \N \N f f +12851 2025-11-19 14:59:12.147497+00 2025-11-19 14:59:12.147506+00 f t 13787 \N \N f f +12852 2025-11-19 15:18:03.960639+00 2025-11-19 15:18:03.960639+00 f t 13788 \N \N f f +12853 2025-11-19 15:22:48.547445+00 2025-11-19 15:22:48.547452+00 f t 13789 \N \N f f +12854 2025-11-19 15:28:23.254116+00 2025-11-19 15:28:23.254123+00 f t 13790 \N \N f f +12855 2025-11-19 15:36:40.286654+00 2025-11-19 15:36:40.286664+00 f t 13791 \N \N f f +12856 2025-11-19 15:44:47.853511+00 2025-11-19 15:44:47.853519+00 f t 13792 \N \N f f +12857 2025-11-19 15:57:41.958672+00 2025-11-19 15:57:41.958681+00 f t 13793 \N \N f f +12858 2025-11-19 16:18:40.577195+00 2025-11-19 16:18:40.577204+00 f t 13794 \N \N f f +12859 2025-11-19 16:21:31.81222+00 2025-11-19 16:21:31.812228+00 f t 13795 \N \N f f +12860 2025-11-19 16:22:56.644462+00 2025-11-19 16:22:56.644471+00 f t 13796 \N \N f f +12861 2025-11-19 16:23:19.523644+00 2025-11-19 16:23:19.523656+00 f t 13658 \N \N f f +12862 2025-11-19 16:25:27.019201+00 2025-11-19 16:25:27.019213+00 f t 13797 \N \N f f +12863 2025-11-19 16:28:31.171869+00 2025-11-19 16:28:31.171877+00 f t 13798 \N \N f f +12864 2025-11-19 16:47:47.106625+00 2025-11-19 16:47:47.106635+00 f t 1734 \N \N f f +12865 2025-11-19 17:03:25.914986+00 2025-11-19 17:03:25.914994+00 f t 13799 \N \N f f +12866 2025-11-19 17:23:42.840096+00 2025-11-19 17:23:42.840107+00 f t 13800 \N \N f f +12867 2025-11-19 17:33:00.955089+00 2025-11-19 17:33:00.955098+00 f t 13801 \N \N f f +12868 2025-11-19 17:44:12.009665+00 2025-11-19 17:44:12.009673+00 f t 27 \N \N f f +12869 2025-11-19 17:56:09.621839+00 2025-11-19 17:56:09.621847+00 f t 13804 \N \N f f +12870 2025-11-19 17:57:52.185826+00 2025-11-19 17:57:52.185836+00 f t 13805 \N \N f f +12871 2025-11-19 18:01:16.364468+00 2025-11-19 18:01:16.36448+00 f t 13806 \N \N f f +12872 2025-11-19 18:13:32.038125+00 2025-11-19 18:13:32.038133+00 f t 13807 \N \N f f +12873 2025-11-19 18:17:43.542164+00 2025-11-19 18:17:43.542174+00 f t 13808 \N \N f f +12874 2025-11-19 18:22:56.063786+00 2025-11-19 18:22:56.063794+00 f t 13809 \N \N f f +12875 2025-11-19 18:38:38.095595+00 2025-11-19 18:38:38.095607+00 f t 13811 \N \N f f +12876 2025-11-19 18:46:37.494515+00 2025-11-19 18:46:37.494525+00 f t 13812 \N \N f f +12877 2025-11-19 18:47:39.653048+00 2025-11-19 18:47:39.653055+00 f t 13813 \N \N f f +12878 2025-11-19 18:52:23.610046+00 2025-11-19 18:52:23.610053+00 f t 13744 \N \N f f +12879 2025-11-19 18:57:30.518567+00 2025-11-19 18:57:30.518575+00 f t 13815 \N \N f f +12880 2025-11-19 18:58:54.933276+00 2025-11-19 18:58:54.933286+00 f t 13352 \N \N f f +12881 2025-11-19 19:01:20.88188+00 2025-11-19 19:01:20.881888+00 f t 13352 \N \N f f +12882 2025-11-19 19:01:46.18297+00 2025-11-19 19:01:46.182978+00 f t 13352 \N \N f f +12883 2025-11-19 19:14:09.819303+00 2025-11-19 19:14:09.819317+00 f t 13817 \N \N f f +12884 2025-11-19 19:16:27.022493+00 2025-11-19 19:16:27.022501+00 f t 13818 \N \N f f +12885 2025-11-19 19:17:19.684654+00 2025-11-19 19:17:19.684662+00 f t 13819 \N \N f f +12886 2025-11-19 19:19:11.49283+00 2025-11-19 19:19:11.492841+00 f t 13820 \N \N f f +12887 2025-11-19 19:57:14.78583+00 2025-11-19 19:57:14.785838+00 f t 13822 \N \N f f +12888 2025-11-19 20:09:50.599489+00 2025-11-19 20:09:50.599498+00 f t 13823 \N \N f f +12889 2025-11-19 20:10:33.022564+00 2025-11-19 20:10:33.022571+00 f t 13709 \N \N f f +12890 2025-11-19 20:20:07.499857+00 2025-11-19 20:20:07.499869+00 f t 13824 \N \N f f +12891 2025-11-19 20:25:56.213814+00 2025-11-19 20:25:56.213821+00 f t 13826 \N \N f f +12892 2025-11-19 20:27:09.224722+00 2025-11-19 20:27:09.224734+00 f t 13827 \N \N f f +12893 2025-11-19 20:27:21.828112+00 2025-11-19 20:27:21.828112+00 f t 13828 \N \N f f +12894 2025-11-19 20:27:39.904895+00 2025-11-19 20:27:39.904904+00 f t 13829 \N \N f f +12895 2025-11-19 20:29:28.757815+00 2025-11-19 20:29:28.757826+00 f t 13830 \N \N f f +12896 2025-11-19 20:29:31.302958+00 2025-11-19 20:29:31.302966+00 f t 13831 \N \N f f +12897 2025-11-19 20:35:56.333236+00 2025-11-19 20:35:56.333246+00 f t 13832 \N \N f f +12898 2025-11-19 20:40:32.890046+00 2025-11-19 20:40:32.890058+00 f t 13833 \N \N f f +12899 2025-11-19 20:42:34.878974+00 2025-11-19 20:42:34.878982+00 f t 13834 \N \N f f +12900 2025-11-19 20:47:33.580725+00 2025-11-19 20:47:33.580735+00 f t 13835 \N \N f f +12901 2025-11-19 20:53:56.173232+00 2025-11-19 20:53:56.173243+00 f t 9712 \N \N f f +12902 2025-11-19 20:55:21.9638+00 2025-11-19 20:55:21.963807+00 f t 13836 \N \N f f +12903 2025-11-19 20:58:12.479656+00 2025-11-19 20:58:12.479664+00 f t 13837 \N \N f f +12904 2025-11-19 21:04:23.269623+00 2025-11-19 21:04:23.269635+00 f t 13839 \N \N f f +12905 2025-11-19 21:07:18.829955+00 2025-11-19 21:07:18.829964+00 f t 13840 \N \N f f +12906 2025-11-19 21:21:27.626064+00 2025-11-19 21:21:27.626075+00 f t 13841 \N \N f f +12907 2025-11-19 21:31:26.406619+00 2025-11-19 21:31:26.406629+00 f t 13842 \N \N f f +12908 2025-11-19 21:47:11.660565+00 2025-11-19 21:47:11.660573+00 f t 13843 \N \N f f +12909 2025-11-19 21:47:17.417457+00 2025-11-19 21:47:17.417466+00 f t 13844 \N \N f f +12910 2025-11-19 22:02:50.655939+00 2025-11-19 22:02:50.655939+00 f t 13845 \N \N f f +12911 2025-11-19 22:37:11.320838+00 2025-11-19 22:37:11.320845+00 f t 13846 \N \N f f +12912 2025-11-19 22:50:04.620757+00 2025-11-19 22:50:04.620772+00 f t 13847 \N \N f f +12913 2025-11-19 22:54:24.68784+00 2025-11-19 22:54:24.687848+00 f t 13848 \N \N f f +12914 2025-11-19 23:00:46.843347+00 2025-11-19 23:00:46.843355+00 f t 13849 \N \N f f +12915 2025-11-19 23:03:47.971601+00 2025-11-19 23:03:47.971609+00 f t 13850 \N \N f f +12916 2025-11-19 23:14:22.896242+00 2025-11-19 23:14:22.896249+00 f t 13851 \N \N f f +12917 2025-11-19 23:25:49.213564+00 2025-11-19 23:25:49.213572+00 f t 13852 \N \N f f +12918 2025-11-19 23:30:13.763356+00 2025-11-19 23:30:13.763364+00 f t 13853 \N \N f f +12919 2025-11-19 23:37:54.852911+00 2025-11-19 23:37:54.852925+00 f t 13854 \N \N f f +12920 2025-11-19 23:55:52.753593+00 2025-11-19 23:55:52.753601+00 f t 13855 \N \N f f +12921 2025-11-20 00:01:36.098543+00 2025-11-20 00:01:36.098554+00 f t 13856 \N \N f f +12922 2025-11-20 00:15:05.179637+00 2025-11-20 00:15:05.179651+00 f t 13857 \N \N f f +12923 2025-11-20 00:19:00.889884+00 2025-11-20 00:19:00.889895+00 f t 13858 \N \N f f +12924 2025-11-20 00:58:47.534176+00 2025-11-20 00:58:47.534183+00 f t 13859 \N \N f f +12925 2025-11-20 01:08:02.706439+00 2025-11-20 01:08:02.706452+00 f t 13860 \N \N f f +12926 2025-11-20 01:10:01.478362+00 2025-11-20 01:10:01.478528+00 f t 13861 \N \N f f +12927 2025-11-20 01:27:50.668973+00 2025-11-20 01:27:50.668984+00 f t 13863 \N \N f f +12928 2025-11-20 01:37:01.575292+00 2025-11-20 01:37:01.575301+00 f t 13864 \N \N f f +12929 2025-11-20 01:53:22.577807+00 2025-11-20 01:53:22.577818+00 f t 13865 \N \N f f +12930 2025-11-20 02:18:08.785334+00 2025-11-20 02:18:08.785347+00 f t 13866 \N \N f f +12931 2025-11-20 02:25:08.297507+00 2025-11-20 02:25:08.297519+00 f t 13867 \N \N f f +12932 2025-11-20 02:25:26.913807+00 2025-11-20 02:25:26.913816+00 f t 13868 \N \N f f +12933 2025-11-20 02:26:46.895304+00 2025-11-20 02:26:46.895315+00 f t 13869 \N \N f f +12934 2025-11-20 02:30:34.475792+00 2025-11-20 02:30:34.475792+00 f t 13870 \N \N f f +12935 2025-11-20 03:27:07.737781+00 2025-11-20 03:27:07.73779+00 f t 13871 \N \N f f +12936 2025-11-20 04:02:09.84308+00 2025-11-20 04:02:09.843091+00 f t 13872 \N \N f f +12937 2025-11-20 04:27:58.069266+00 2025-11-20 04:27:58.069278+00 f t 13873 \N \N f f +12938 2025-11-20 04:55:14.402411+00 2025-11-20 04:55:14.402423+00 f t 13874 \N \N f f +12939 2025-11-20 05:06:35.134053+00 2025-11-20 05:06:35.134061+00 f t 13875 \N \N f f +12940 2025-11-20 09:08:34.818789+00 2025-11-20 09:08:34.818797+00 f t 13876 \N \N f f +12941 2025-11-20 09:10:01.357813+00 2025-11-20 09:10:01.357827+00 f t 13877 \N \N f f +12942 2025-11-20 09:54:14.360704+00 2025-11-20 09:54:14.360712+00 f t 13878 \N \N f f +12943 2025-11-20 10:00:36.304163+00 2025-11-20 10:00:36.304174+00 f t 13879 \N \N f f +12944 2025-11-20 10:06:43.964257+00 2025-11-20 10:06:43.964267+00 f t 13880 \N \N f f +12945 2025-11-20 11:17:35.80473+00 2025-11-20 11:17:35.804736+00 f t 13881 \N \N f f +12946 2025-11-20 11:19:19.443067+00 2025-11-20 11:19:19.443084+00 f t 13882 \N \N f f +12947 2025-11-20 11:28:50.621642+00 2025-11-20 11:28:50.62165+00 f t 13884 \N \N f f +12948 2025-11-20 11:40:05.906803+00 2025-11-20 11:40:05.906819+00 f t 13886 \N \N f f +12949 2025-11-20 11:53:57.80091+00 2025-11-20 11:53:57.800917+00 f t 13887 \N \N f f +12950 2025-11-20 12:26:59.549911+00 2025-11-20 12:26:59.54992+00 f t 13888 \N \N f f +12951 2025-11-20 12:37:02.258241+00 2025-11-20 12:37:02.258252+00 f t 13889 \N \N f f +12952 2025-11-20 12:44:29.914318+00 2025-11-20 12:44:29.914329+00 f t 13890 \N \N f f +12953 2025-11-20 12:48:06.617625+00 2025-11-20 12:48:06.617633+00 f t 13891 \N \N f f +12955 2025-11-20 13:00:07.633395+00 2025-11-20 13:00:07.63341+00 f t 13893 \N \N f f +12954 2025-11-20 12:57:20.494248+00 2025-11-20 12:57:20.494261+00 f t 12968 \N \N f f +12956 2025-11-20 13:08:40.692591+00 2025-11-20 13:08:40.692598+00 f t 13895 \N \N f f +12957 2025-11-20 13:21:23.740042+00 2025-11-20 13:21:23.74005+00 f t 13896 \N \N f f +12958 2025-11-20 13:34:18.123066+00 2025-11-20 13:34:18.123077+00 f t 13897 \N \N f f +12959 2025-11-20 13:49:01.364996+00 2025-11-20 13:49:01.365008+00 f t 13898 \N \N f f +12960 2025-11-20 13:52:25.242496+00 2025-11-20 13:52:25.242505+00 f t 13899 \N \N f f +12961 2025-11-20 13:55:24.653523+00 2025-11-20 13:55:24.65353+00 f t 13900 \N \N f f +12962 2025-11-20 13:56:10.069827+00 2025-11-20 13:56:10.069838+00 f t 13901 \N \N f f +12963 2025-11-20 14:10:53.287996+00 2025-11-20 14:10:53.288002+00 f t 13902 \N \N f f +12964 2025-11-20 14:15:07.201683+00 2025-11-20 14:15:07.201692+00 f t 13903 \N \N f f +12965 2025-11-20 14:16:04.19788+00 2025-11-20 14:16:04.197889+00 f t 13904 \N \N f f +12966 2025-11-20 14:34:23.400392+00 2025-11-20 14:34:23.400399+00 f t 13905 \N \N f f +12967 2025-11-20 14:45:50.263871+00 2025-11-20 14:45:50.263881+00 f t 13906 \N \N f f +12968 2025-11-20 14:53:46.776081+00 2025-11-20 14:53:46.776088+00 f t 13907 \N \N f f +12969 2025-11-20 15:08:46.364122+00 2025-11-20 15:08:46.364129+00 f t 13908 \N \N f f +12970 2025-11-20 15:17:45.921136+00 2025-11-20 15:17:45.921145+00 f t 13909 \N \N f f +12971 2025-11-20 15:38:45.575506+00 2025-11-20 15:38:45.575512+00 f t 13910 \N \N f f +12972 2025-11-20 15:43:06.987751+00 2025-11-20 15:43:06.987759+00 f t 13911 \N \N f f +12973 2025-11-20 15:47:16.440782+00 2025-11-20 15:47:16.440789+00 f t 13912 \N \N f f +12974 2025-11-20 15:57:59.631052+00 2025-11-20 15:57:59.63106+00 f t 13913 \N \N f f +12975 2025-11-20 16:07:16.103077+00 2025-11-20 16:07:16.103086+00 f t 13914 \N \N f f +12976 2025-11-20 16:16:51.804101+00 2025-11-20 16:16:51.80411+00 f t 13915 \N \N f f +12977 2025-11-20 16:20:24.680489+00 2025-11-20 16:20:24.680498+00 f t 13917 \N \N f f +12978 2025-11-20 16:20:30.086318+00 2025-11-20 16:20:30.086328+00 f t 13437 \N \N f f +12979 2025-11-20 16:21:35.827453+00 2025-11-20 16:21:35.827459+00 f t 13918 \N \N f f +12980 2025-11-20 16:22:04.522976+00 2025-11-20 16:22:04.522983+00 f t 13916 \N \N f f +12981 2025-11-20 16:33:14.052157+00 2025-11-20 16:33:14.052168+00 f t 13919 \N \N f f +12982 2025-11-20 16:37:52.927947+00 2025-11-20 16:37:52.927955+00 f t 13920 \N \N f f +12983 2025-11-20 16:54:20.323276+00 2025-11-20 16:54:20.323284+00 f t 13921 \N \N f f +12984 2025-11-20 16:54:56.904533+00 2025-11-20 16:54:56.904541+00 f t 13922 \N \N f f +12985 2025-11-20 16:56:28.978939+00 2025-11-20 16:56:28.97895+00 f t 13923 \N \N f f +12986 2025-11-20 17:00:13.91649+00 2025-11-20 17:00:13.916502+00 f t 13924 \N \N f f +12987 2025-11-20 17:03:06.423204+00 2025-11-20 17:03:06.423212+00 f t 13925 \N \N f f +12988 2025-11-20 17:05:47.414791+00 2025-11-20 17:05:47.414799+00 f t 13926 \N \N f f +12989 2025-11-20 17:15:14.341333+00 2025-11-20 17:15:14.341333+00 f t 13927 \N \N f f +12990 2025-11-20 17:17:01.419051+00 2025-11-20 17:17:01.41906+00 f t 13928 \N \N f f +12991 2025-11-20 17:36:38.813607+00 2025-11-20 17:36:38.813614+00 f t 13929 \N \N f f +12992 2025-11-20 17:39:46.104036+00 2025-11-20 17:39:46.104043+00 f t 13930 \N \N f f +12993 2025-11-20 17:43:19.818099+00 2025-11-20 17:43:19.818106+00 f t 7443 \N \N f f +12995 2025-11-20 17:47:41.709492+00 2025-11-20 17:47:41.709501+00 f t 13661 \N \N f f +12996 2025-11-20 17:49:16.565969+00 2025-11-20 17:49:16.565977+00 f t 10953 \N \N f f +12997 2025-11-20 17:55:07.747825+00 2025-11-20 17:55:07.747834+00 f t 13932 \N \N f f +12998 2025-11-20 18:04:58.568991+00 2025-11-20 18:04:58.569001+00 f t 13933 \N \N f f +12994 2025-11-20 18:08:45.777487+00 2025-11-20 18:08:45.777487+00 f t 12999 \N \N f f +12999 2025-11-20 18:09:52.001935+00 2025-11-20 18:09:52.001947+00 f t 13934 \N \N f f +13000 2025-11-20 18:26:37.701178+00 2025-11-20 18:26:37.701188+00 f t 13935 \N \N f f +13001 2025-11-20 18:29:33.130372+00 2025-11-20 18:29:33.130386+00 f t 13936 \N \N f f +13002 2025-11-20 18:35:55.912075+00 2025-11-20 18:35:55.912087+00 f t 13937 \N \N f f +13003 2025-11-20 18:41:18.089425+00 2025-11-20 18:41:18.089433+00 f t 13938 \N \N f f +13004 2025-11-20 18:52:06.435101+00 2025-11-20 18:52:06.435113+00 f t 4848 \N \N f f +13005 2025-11-20 19:05:03.714588+00 2025-11-20 19:05:03.714603+00 f t 12999 \N \N f f +13006 2025-11-20 19:05:08.822002+00 2025-11-20 19:05:08.822015+00 f t 12999 \N \N f f +13007 2025-11-20 19:08:20.261838+00 2025-11-20 19:08:20.261849+00 f t 13939 \N \N f f +13008 2025-11-20 19:11:24.847476+00 2025-11-20 19:11:24.847483+00 f t 13940 \N \N f f +13009 2025-11-20 19:12:23.267981+00 2025-11-20 19:12:23.267988+00 f t 13941 \N \N f f +13010 2025-11-20 19:19:54.76229+00 2025-11-20 19:19:54.762301+00 f t 13942 \N \N f f +13011 2025-11-20 19:27:49.722076+00 2025-11-20 19:27:49.722087+00 f t 13943 \N \N f f +13012 2025-11-20 19:47:05.243969+00 2025-11-20 19:47:05.243977+00 f t 13944 \N \N f f +13013 2025-11-20 19:48:23.751861+00 2025-11-20 19:48:23.751869+00 f t 13945 \N \N f f +13014 2025-11-20 19:58:05.298909+00 2025-11-20 19:58:05.298918+00 f t 13946 \N \N f f +13015 2025-11-20 20:00:09.203377+00 2025-11-20 20:00:09.203394+00 f t 13947 \N \N f f +13016 2025-11-20 20:14:24.284155+00 2025-11-20 20:14:24.284166+00 f t 13437 \N \N f f +13017 2025-11-20 20:15:15.847196+00 2025-11-20 20:15:15.847205+00 f t 13948 \N \N f f +13018 2025-11-20 20:18:19.589555+00 2025-11-20 20:18:19.589563+00 f t 13949 \N \N f f +13019 2025-11-20 20:34:09.143195+00 2025-11-20 20:34:09.143203+00 f t 13950 \N \N f f +13020 2025-11-20 20:37:12.787404+00 2025-11-20 20:37:12.787412+00 f t 13951 \N \N f f +13021 2025-11-20 20:41:49.925127+00 2025-11-20 20:41:49.925137+00 f t 13952 \N \N f f +13022 2025-11-20 20:47:16.171586+00 2025-11-20 20:47:16.171599+00 f t 13953 \N \N f f +13023 2025-11-20 20:47:57.377546+00 2025-11-20 20:47:57.377555+00 f t 13954 \N \N f f +13024 2025-11-20 20:55:16.435082+00 2025-11-20 20:55:16.435089+00 f t 13955 \N \N f f +13025 2025-11-20 20:58:12.056705+00 2025-11-20 20:58:12.056713+00 f t 13956 \N \N f f +13026 2025-11-20 21:24:09.774129+00 2025-11-20 21:24:09.774135+00 f t 13957 \N \N f f +13027 2025-11-20 21:26:37.683774+00 2025-11-20 21:26:37.683782+00 f t 13958 \N \N f f +13028 2025-11-20 21:27:23.566498+00 2025-11-20 21:27:23.566506+00 f t 13959 \N \N f f +13029 2025-11-20 21:28:27.030047+00 2025-11-20 21:28:27.030054+00 f t 11644 \N \N f f +13030 2025-11-20 21:38:42.569295+00 2025-11-20 21:38:42.569302+00 f t 13960 \N \N f f +13031 2025-11-20 21:50:55.525396+00 2025-11-20 21:50:55.525405+00 f t 13961 \N \N f f +13032 2025-11-20 21:53:15.025907+00 2025-11-20 21:53:15.025916+00 f t 13962 \N \N f f +13033 2025-11-20 21:54:48.024377+00 2025-11-20 21:54:48.024386+00 f t 13963 \N \N f f +13034 2025-11-20 21:59:36.726343+00 2025-11-20 21:59:36.72635+00 f t 13964 \N \N f f +13035 2025-11-20 22:30:40.76898+00 2025-11-20 22:30:40.768988+00 f t 13965 \N \N f f +13036 2025-11-20 22:40:16.156003+00 2025-11-20 22:40:16.156013+00 f t 13966 \N \N f f +13037 2025-11-20 22:41:21.640936+00 2025-11-20 22:41:21.640936+00 f t 13967 \N \N f f +13038 2025-11-20 22:42:09.411884+00 2025-11-20 22:42:09.411891+00 f t 13968 \N \N f f +13039 2025-11-20 22:48:23.37232+00 2025-11-20 22:48:23.37233+00 f t 13969 \N \N f f +13040 2025-11-20 22:53:43.285307+00 2025-11-20 22:53:43.285315+00 f t 13970 \N \N f f +13041 2025-11-20 22:55:36.926244+00 2025-11-20 22:55:36.926255+00 f t 13971 \N \N f f +13042 2025-11-20 23:06:02.771573+00 2025-11-20 23:06:02.771581+00 f t 13972 \N \N f f +13043 2025-11-20 23:14:32.185487+00 2025-11-20 23:14:32.185498+00 f t 13973 \N \N f f +13044 2025-11-20 23:17:55.70125+00 2025-11-20 23:17:55.701262+00 f t 13974 \N \N f f +13045 2025-11-20 23:39:19.75289+00 2025-11-20 23:39:19.752901+00 f t 13975 \N \N f f +13046 2025-11-20 23:41:58.191106+00 2025-11-20 23:41:58.191114+00 f t 13976 \N \N f f +13047 2025-11-20 23:44:37.520729+00 2025-11-20 23:44:37.520738+00 f t 13977 \N \N f f +13048 2025-11-20 23:50:41.255095+00 2025-11-20 23:50:41.255103+00 f t 13978 \N \N f f +13049 2025-11-21 00:01:11.521761+00 2025-11-21 00:01:11.521775+00 f t 13979 \N \N f f +13050 2025-11-21 00:09:27.152446+00 2025-11-21 00:09:27.152454+00 f t 13980 \N \N f f +13051 2025-11-21 00:31:09.046802+00 2025-11-21 00:31:09.046802+00 f t 13981 \N \N f f +13052 2025-11-21 00:35:21.498309+00 2025-11-21 00:35:21.498317+00 f t 13982 \N \N f f +13053 2025-11-21 00:36:00.238466+00 2025-11-21 00:36:00.238474+00 f t 13983 \N \N f f +13054 2025-11-21 00:44:10.760336+00 2025-11-21 00:44:10.760345+00 f t 13984 \N \N f f +13056 2025-11-21 00:48:56.620233+00 2025-11-21 00:48:56.62024+00 f t 13986 \N \N f f +13055 2025-11-21 00:49:41.488716+00 2025-11-21 00:49:41.488716+00 f t 13985 \N \N f f +13057 2025-11-21 00:59:30.134866+00 2025-11-21 00:59:30.134876+00 f t 13987 \N \N f f +13058 2025-11-21 01:16:57.54365+00 2025-11-21 01:16:57.543659+00 f t 13988 \N \N f f +13059 2025-11-21 01:17:57.877911+00 2025-11-21 01:17:57.877919+00 f t 13989 \N \N f f +13060 2025-11-21 01:22:22.669573+00 2025-11-21 01:22:22.669581+00 f t 13990 \N \N f f +13061 2025-11-21 01:26:06.456803+00 2025-11-21 01:26:06.456815+00 f t 13991 \N \N f f +13062 2025-11-21 01:28:18.36257+00 2025-11-21 01:28:18.362583+00 f t 13992 \N \N f f +13063 2025-11-21 01:52:04.332867+00 2025-11-21 01:52:04.332878+00 f t 13993 \N \N f f +13064 2025-11-21 02:05:03.440175+00 2025-11-21 02:05:03.440188+00 f t 13995 \N \N f f +13065 2025-11-21 02:05:11.880639+00 2025-11-21 02:05:11.880648+00 f t 13996 \N \N f f +13066 2025-11-21 02:07:29.997927+00 2025-11-21 02:07:29.997939+00 f t 13997 \N \N f f +13067 2025-11-21 02:09:24.553255+00 2025-11-21 02:09:24.553265+00 f t 13998 \N \N f f +13068 2025-11-21 02:09:52.28511+00 2025-11-21 02:09:52.285118+00 f t 13999 \N \N f f +13069 2025-11-21 03:13:32.236279+00 2025-11-21 03:13:32.236288+00 f t 14000 \N \N f f +13070 2025-11-21 03:21:06.985664+00 2025-11-21 03:21:06.985674+00 f t 14001 \N \N f f +13071 2025-11-21 03:22:46.467012+00 2025-11-21 03:22:46.467019+00 f t 14002 \N \N f f +13072 2025-11-21 03:29:46.459417+00 2025-11-21 03:29:46.459426+00 f t 14003 \N \N f f +13073 2025-11-21 04:04:40.9504+00 2025-11-21 04:04:40.950408+00 f t 14004 \N \N f f +13074 2025-11-21 04:12:53.715956+00 2025-11-21 04:12:53.715965+00 f t 14005 \N \N f f +13075 2025-11-21 04:19:53.03666+00 2025-11-21 04:19:53.036668+00 f t 14006 \N \N f f +13076 2025-11-21 04:26:28.221997+00 2025-11-21 04:26:28.222005+00 f t 14007 \N \N f f +13077 2025-11-21 08:58:40.827874+00 2025-11-21 08:58:40.827881+00 f t 14008 \N \N f f +13078 2025-11-21 09:31:48.105023+00 2025-11-21 09:31:48.105031+00 f t 14009 \N \N f f +13079 2025-11-21 09:55:48.967714+00 2025-11-21 09:55:48.967722+00 f t 14010 \N \N f f +13080 2025-11-21 10:05:00.545011+00 2025-11-21 10:05:00.545018+00 f t 14011 \N \N f f +13081 2025-11-21 10:17:05.409707+00 2025-11-21 10:17:05.409716+00 f t 14012 \N \N f f +13082 2025-11-21 10:57:53.848377+00 2025-11-21 10:57:53.848385+00 f t 14013 \N \N f f +13083 2025-11-21 10:58:11.253025+00 2025-11-21 10:58:11.253033+00 f t 14014 \N \N f f +13084 2025-11-21 11:01:34.975646+00 2025-11-21 11:01:34.975654+00 f t 14015 \N \N f f +13085 2025-11-21 11:07:45.368109+00 2025-11-21 11:07:45.368118+00 f t 14016 \N \N f f +13086 2025-11-21 11:12:25.179193+00 2025-11-21 11:12:25.179203+00 f t 14017 \N \N f f +13087 2025-11-21 11:22:50.701464+00 2025-11-21 11:22:50.701471+00 f t 14019 \N \N f f +13088 2025-11-21 11:35:18.1514+00 2025-11-21 11:35:18.151411+00 f t 14020 \N \N f f +13089 2025-11-21 11:53:59.915289+00 2025-11-21 11:53:59.915298+00 f t 14021 \N \N f f +13090 2025-11-21 12:02:38.105856+00 2025-11-21 12:02:38.105864+00 f t 14022 \N \N f f +13091 2025-11-21 12:16:03.299295+00 2025-11-21 12:16:03.299304+00 f t 14023 \N \N f f +13092 2025-11-21 12:18:31.498529+00 2025-11-21 12:18:31.498541+00 f t 14024 \N \N f f +13093 2025-11-21 12:19:51.548305+00 2025-11-21 12:19:51.548311+00 f t 14025 \N \N f f +13094 2025-11-21 12:30:19.192538+00 2025-11-21 12:30:19.192546+00 f t 14017 \N \N f f +13095 2025-11-21 12:38:06.61705+00 2025-11-21 12:38:06.617059+00 f t 14026 \N \N f f +13096 2025-11-21 12:39:16.525793+00 2025-11-21 12:39:16.525804+00 f t 13993 \N \N f f +13097 2025-11-21 12:56:30.68652+00 2025-11-21 12:56:30.68653+00 f t 9712 \N \N f f +13098 2025-11-21 13:30:11.827683+00 2025-11-21 13:30:11.827706+00 f t 14029 \N \N f f +13099 2025-11-21 13:33:06.479486+00 2025-11-21 13:33:06.479494+00 f t 14030 \N \N f f +13100 2025-11-21 13:36:19.882266+00 2025-11-21 13:36:19.882274+00 f t 14032 \N \N f f +13101 2025-11-21 13:47:26.557616+00 2025-11-21 13:47:26.557623+00 f t 14033 \N \N f f +13102 2025-11-21 13:59:06.717792+00 2025-11-21 13:59:06.717801+00 f t 14034 \N \N f f +13103 2025-11-21 14:00:44.689474+00 2025-11-21 14:00:44.689482+00 f t 14035 \N \N f f +13104 2025-11-21 14:08:57.142989+00 2025-11-21 14:08:57.143001+00 f t 14036 \N \N f f +13105 2025-11-21 14:17:27.477157+00 2025-11-21 14:17:27.477165+00 f t 14037 \N \N f f +13106 2025-11-21 14:36:44.813723+00 2025-11-21 14:36:44.81373+00 f t 14038 \N \N f f +13107 2025-11-21 14:40:00.117999+00 2025-11-21 14:40:00.118009+00 f t 14039 \N \N f f +13108 2025-11-21 14:47:30.171571+00 2025-11-21 14:47:30.171582+00 f t 14040 \N \N f f +13109 2025-11-21 14:48:11.241957+00 2025-11-21 14:48:11.241965+00 f t 14041 \N \N f f +13110 2025-11-21 14:48:40.944042+00 2025-11-21 14:48:40.94405+00 f t 14042 \N \N f f +13111 2025-11-21 14:53:46.426367+00 2025-11-21 14:53:46.426374+00 f t 14043 \N \N f f +13112 2025-11-21 14:57:00.627103+00 2025-11-21 14:57:00.62711+00 f t 14044 \N \N f f +13113 2025-11-21 15:01:34.864198+00 2025-11-21 15:01:34.86421+00 f t 14045 \N \N f f +13114 2025-11-21 15:16:32.449134+00 2025-11-21 15:16:32.449142+00 f t 14046 \N \N f f +13115 2025-11-21 15:27:54.384856+00 2025-11-21 15:27:54.384869+00 f t 14047 \N \N f f +13116 2025-11-21 15:43:31.372926+00 2025-11-21 15:43:31.372934+00 f t 14048 \N \N f f +13117 2025-11-21 15:45:21.223706+00 2025-11-21 15:45:21.223715+00 f t 14049 \N \N f f +13118 2025-11-21 15:51:29.058699+00 2025-11-21 15:51:29.058711+00 f t 14050 \N \N f f +13119 2025-11-21 16:00:42.33077+00 2025-11-21 16:00:42.330778+00 f t 1098 \N \N f f +13120 2025-11-21 16:04:20.380121+00 2025-11-21 16:04:20.380129+00 f t 14053 \N \N f f +13121 2025-11-21 16:05:21.07719+00 2025-11-21 16:05:21.0772+00 f t 14054 \N \N f f +13122 2025-11-21 16:07:21.387072+00 2025-11-21 16:07:21.387081+00 f t 14055 \N \N f f +13123 2025-11-21 16:12:09.499722+00 2025-11-21 16:12:09.49973+00 f t 14057 \N \N f f +13124 2025-11-21 16:14:32.843123+00 2025-11-21 16:14:32.843165+00 f t 14058 \N \N f f +13125 2025-11-21 16:25:53.427511+00 2025-11-21 16:25:53.427524+00 f t 14059 \N \N f f +13126 2025-11-21 16:27:31.093032+00 2025-11-21 16:27:31.093039+00 f t 14060 \N \N f f +13127 2025-11-21 16:29:35.123443+00 2025-11-21 16:29:35.123453+00 f t 14061 \N \N f f +13128 2025-11-21 16:38:16.127789+00 2025-11-21 16:38:16.127797+00 f t 14062 \N \N f f +13129 2025-11-21 16:42:09.92283+00 2025-11-21 16:42:09.922839+00 f t 14063 \N \N f f +13130 2025-11-21 16:49:14.74398+00 2025-11-21 16:49:14.743986+00 f t 14064 \N \N f f +13131 2025-11-21 16:49:23.537742+00 2025-11-21 16:49:23.53775+00 f t 14065 \N \N f f +13132 2025-11-21 16:57:34.132541+00 2025-11-21 16:57:34.132548+00 f t 14066 \N \N f f +13138 2025-11-21 18:17:20.788123+00 2025-11-21 18:17:20.788131+00 f t 14072 \N \N f f +13139 2025-11-21 18:21:59.598177+00 2025-11-21 18:21:59.598177+00 f t 14073 \N \N f f +13140 2025-11-21 18:29:07.787149+00 2025-11-21 18:29:07.787173+00 f t 14074 \N \N f f +13141 2025-11-21 18:32:11.614873+00 2025-11-21 18:32:11.614886+00 f t 14075 \N \N f f +13142 2025-11-21 18:33:20.015818+00 2025-11-21 18:33:20.015829+00 f t 14076 \N \N f f +13143 2025-11-21 18:53:54.152441+00 2025-11-21 18:53:54.15245+00 f t 14077 \N \N f f +13144 2025-11-21 18:55:25.932053+00 2025-11-21 18:55:25.932061+00 f t 14078 \N \N f f +13145 2025-11-21 19:00:04.122678+00 2025-11-21 19:00:04.122693+00 f t 14079 \N \N f f +13146 2025-11-21 19:17:39.577048+00 2025-11-21 19:17:39.577054+00 f t 14080 \N \N f f +13147 2025-11-21 19:19:12.045591+00 2025-11-21 19:19:12.045599+00 f t 14081 \N \N f f +13148 2025-11-21 19:22:41.519732+00 2025-11-21 19:22:41.519732+00 f t 14082 \N \N f f +13149 2025-11-21 19:26:27.07697+00 2025-11-21 19:26:27.076977+00 f t 14083 \N \N f f +13150 2025-11-21 19:28:39.328533+00 2025-11-21 19:28:39.328541+00 f t 14084 \N \N f f +13151 2025-11-21 19:29:02.788+00 2025-11-21 19:29:02.788009+00 f t 14085 \N \N f f +13152 2025-11-21 19:31:40.531922+00 2025-11-21 19:31:40.53193+00 f t 266 \N \N f f +13153 2025-11-21 19:34:44.245374+00 2025-11-21 19:34:44.245383+00 f t 14086 \N \N f f +13154 2025-11-21 19:37:27.833406+00 2025-11-21 19:37:27.833415+00 f t 14087 \N \N f f +13155 2025-11-21 19:44:34.981332+00 2025-11-21 19:44:34.981344+00 f t 14088 \N \N f f +13156 2025-11-21 19:49:40.936104+00 2025-11-21 19:49:40.936114+00 f t 14089 \N \N f f +13157 2025-11-21 20:07:55.904935+00 2025-11-21 20:07:55.904945+00 f t 79 \N \N f f +13158 2025-11-21 20:09:49.510665+00 2025-11-21 20:09:49.510678+00 f t 14090 \N \N f f +13159 2025-11-21 20:19:14.148172+00 2025-11-21 20:19:14.148179+00 f t 14091 \N \N f f +13160 2025-11-21 20:32:35.592146+00 2025-11-21 20:32:35.592156+00 f t 14092 \N \N f f +13161 2025-11-21 20:47:41.474545+00 2025-11-21 20:47:41.474553+00 f t 79 \N \N f f +13162 2025-11-21 20:49:59.649609+00 2025-11-21 20:49:59.649615+00 f t 79 \N \N f f +13163 2025-11-21 21:00:54.402953+00 2025-11-21 21:00:54.402961+00 f t 14093 \N \N f f +13164 2025-11-21 21:01:15.171119+00 2025-11-21 21:01:15.171153+00 f t 14094 \N \N f f +13165 2025-11-21 21:27:18.895937+00 2025-11-21 21:27:18.895948+00 f t 14095 \N \N f f +13166 2025-11-21 21:33:25.715978+00 2025-11-21 21:33:25.71599+00 f t 14096 \N \N f f +13167 2025-11-21 21:38:21.228687+00 2025-11-21 21:38:21.228695+00 f t 14097 \N \N f f +13168 2025-11-21 21:49:53.487362+00 2025-11-21 21:49:53.487369+00 f t 14098 \N \N f f +13169 2025-11-21 22:11:21.304314+00 2025-11-21 22:11:21.304322+00 f t 14099 \N \N f f +13170 2025-11-21 22:35:11.371554+00 2025-11-21 22:35:11.371563+00 f t 14100 \N \N f f +13171 2025-11-21 22:38:36.463376+00 2025-11-21 22:38:36.46339+00 f t 14101 \N \N f f +13172 2025-11-21 22:57:58.02666+00 2025-11-21 22:57:58.026668+00 f t 14103 \N \N f f +13173 2025-11-21 23:16:24.994344+00 2025-11-21 23:16:24.994356+00 f t 14104 \N \N f f +13174 2025-11-21 23:21:54.275732+00 2025-11-21 23:21:54.275732+00 f t 14105 \N \N f f +13175 2025-11-21 23:27:28.416334+00 2025-11-21 23:27:28.416343+00 f t 14106 \N \N f f +13176 2025-11-21 23:32:51.074757+00 2025-11-21 23:32:51.074765+00 f t 14107 \N \N f f +13177 2025-11-21 23:33:31.440897+00 2025-11-21 23:33:31.440906+00 f t 14108 \N \N f f +13178 2025-11-21 23:38:10.914677+00 2025-11-21 23:38:10.914688+00 f t 14110 \N \N f f +13179 2025-11-21 23:59:41.352712+00 2025-11-21 23:59:41.352723+00 f t 14111 \N \N f f +13180 2025-11-22 00:03:54.655047+00 2025-11-22 00:03:54.655053+00 f t 14112 \N \N f f +13181 2025-11-22 00:05:00.479016+00 2025-11-22 00:05:00.47903+00 f t 14113 \N \N f f +13182 2025-11-22 00:43:50.931683+00 2025-11-22 00:43:50.931691+00 f t 14114 \N \N f f +13183 2025-11-22 00:46:32.809666+00 2025-11-22 00:46:32.809674+00 f t 14115 \N \N f f +13184 2025-11-22 00:49:14.646302+00 2025-11-22 00:49:14.646311+00 f t 14116 \N \N f f +13185 2025-11-22 00:51:55.677197+00 2025-11-22 00:51:55.677204+00 f t 14117 \N \N f f +13186 2025-11-22 01:03:32.68688+00 2025-11-22 01:03:32.68689+00 f t 14118 \N \N f f +13187 2025-11-22 01:16:27.897051+00 2025-11-22 01:16:27.89706+00 f t 14119 \N \N f f +13188 2025-11-22 01:27:00.568274+00 2025-11-22 01:27:00.568282+00 f t 346 \N \N f f +13189 2025-11-22 01:42:00.032553+00 2025-11-22 01:42:00.032564+00 f t 14123 \N \N f f +13190 2025-11-22 02:16:10.969978+00 2025-11-22 02:16:10.969988+00 f t 14124 \N \N f f +13191 2025-11-22 02:17:21.362483+00 2025-11-22 02:17:21.362492+00 f t 14125 \N \N f f +13192 2025-11-22 02:22:01.775809+00 2025-11-22 02:22:01.775809+00 f t 14126 \N \N f f +13193 2025-11-22 02:22:21.359878+00 2025-11-22 02:22:21.359892+00 f t 14127 \N \N f f +13194 2025-11-22 03:43:52.217383+00 2025-11-22 03:43:52.217391+00 f t 14129 \N \N f f +13195 2025-11-22 03:56:16.928305+00 2025-11-22 03:56:16.928313+00 f t 14130 \N \N f f +13196 2025-11-22 03:59:02.895493+00 2025-11-22 03:59:02.895505+00 f t 14131 \N \N f f +13197 2025-11-22 04:02:12.675393+00 2025-11-22 04:02:12.675406+00 f t 14132 \N \N f f +13198 2025-11-22 04:07:40.271757+00 2025-11-22 04:07:40.271769+00 f t 14133 \N \N f f +13199 2025-11-22 05:33:36.830832+00 2025-11-22 05:33:36.83084+00 f t 14134 \N \N f f +13200 2025-11-22 05:59:39.916393+00 2025-11-22 05:59:39.916401+00 f t 14135 \N \N f f +13201 2025-11-22 06:26:25.98355+00 2025-11-22 06:26:25.983561+00 f t 14136 \N \N f f +13202 2025-11-22 08:37:56.758666+00 2025-11-22 08:37:56.758673+00 f t 14137 \N \N f f +13203 2025-11-22 09:06:34.327204+00 2025-11-22 09:06:34.327211+00 f t 14138 \N \N f f +13204 2025-11-22 10:48:44.584287+00 2025-11-22 10:48:44.584299+00 f t 14139 \N \N f f +13205 2025-11-22 10:57:35.600541+00 2025-11-22 10:57:35.600549+00 f t 14140 \N \N f f +13206 2025-11-22 11:03:29.878624+00 2025-11-22 11:03:29.878633+00 f t 14141 \N \N f f +13207 2025-11-22 11:18:19.99301+00 2025-11-22 11:18:19.993017+00 f t 14142 \N \N f f +13208 2025-11-22 11:37:45.881233+00 2025-11-22 11:37:45.88124+00 f t 14143 \N \N f f +13209 2025-11-22 12:43:06.928783+00 2025-11-22 12:43:06.928795+00 f t 14145 \N \N f f +13210 2025-11-22 13:23:40.243285+00 2025-11-22 13:23:40.243293+00 f t 14146 \N \N f f +13211 2025-11-22 13:33:38.458273+00 2025-11-22 13:33:38.45828+00 f t 14147 \N \N f f +13212 2025-11-22 13:38:35.928577+00 2025-11-22 13:38:35.928586+00 f t 14149 \N \N f f +13213 2025-11-22 13:46:49.436547+00 2025-11-22 13:46:49.436555+00 f t 14150 \N \N f f +13214 2025-11-22 13:53:57.121234+00 2025-11-22 13:53:57.121245+00 f t 14151 \N \N f f +13215 2025-11-22 13:56:27.878407+00 2025-11-22 13:56:27.878421+00 f t 14152 \N \N f f +13216 2025-11-22 14:03:25.162159+00 2025-11-22 14:03:25.162172+00 f t 14153 \N \N f f +13217 2025-11-22 14:06:36.951771+00 2025-11-22 14:06:36.951779+00 f t 14154 \N \N f f +13218 2025-11-22 14:11:40.425707+00 2025-11-22 14:11:40.425716+00 f t 14155 \N \N f f +13219 2025-11-22 14:15:56.630086+00 2025-11-22 14:15:56.630095+00 f t 14156 \N \N f f +13220 2025-11-22 14:41:09.984129+00 2025-11-22 14:41:09.984137+00 f t 14157 \N \N f f +13221 2025-11-22 14:53:57.391018+00 2025-11-22 14:53:57.391026+00 f t 14159 \N \N f f +13222 2025-11-22 15:40:55.312483+00 2025-11-22 15:40:55.3125+00 f t 14160 \N \N f f +13223 2025-11-22 15:43:45.410177+00 2025-11-22 15:43:45.410185+00 f t 14147 \N \N f f +13224 2025-11-22 16:14:34.518353+00 2025-11-22 16:14:34.51836+00 f t 14161 \N \N f f +13225 2025-11-22 16:16:43.136484+00 2025-11-22 16:16:43.136492+00 f t 14162 \N \N f f +13226 2025-11-22 16:28:36.769125+00 2025-11-22 16:28:36.769134+00 f t 14163 \N \N f f +13227 2025-11-22 16:36:42.45289+00 2025-11-22 16:36:42.452902+00 f t 14165 \N \N f f +13228 2025-11-22 16:37:11.988433+00 2025-11-22 16:37:11.988441+00 f t 14164 \N \N f f +13229 2025-11-22 16:37:33.737479+00 2025-11-22 16:37:33.737486+00 f t 14166 \N \N f f +13230 2025-11-22 16:55:32.973569+00 2025-11-22 16:55:32.973577+00 f t 14167 \N \N f f +13231 2025-11-22 17:04:05.618049+00 2025-11-22 17:04:05.618062+00 f t 14168 \N \N f f +13232 2025-11-22 17:06:55.282298+00 2025-11-22 17:06:55.282298+00 f t 14169 \N \N f f +13233 2025-11-22 17:19:38.402665+00 2025-11-22 17:19:38.402672+00 f t 14171 \N \N f f +13234 2025-11-22 17:37:47.527965+00 2025-11-22 17:37:47.527974+00 f t 8819 \N \N f f +13235 2025-11-22 17:45:08.180999+00 2025-11-22 17:45:08.181007+00 f t 14172 \N \N f f +13236 2025-11-22 18:14:50.177265+00 2025-11-22 18:14:50.177265+00 f t 14173 \N \N f f +13237 2025-11-22 18:28:15.550208+00 2025-11-22 18:28:15.550214+00 f t 14055 \N \N f f +13238 2025-11-22 18:34:05.622534+00 2025-11-22 18:34:05.622534+00 f t 14174 \N \N f f +13239 2025-11-22 18:35:28.984262+00 2025-11-22 18:35:28.98427+00 f t 14175 \N \N f f +13240 2025-11-22 18:58:53.626543+00 2025-11-22 18:58:53.626543+00 f t 14178 \N \N f f +13241 2025-11-22 19:15:52.461844+00 2025-11-22 19:15:52.461853+00 f t 14179 \N \N f f +13242 2025-11-22 19:21:38.734091+00 2025-11-22 19:21:38.7341+00 f t 14180 \N \N f f +13243 2025-11-22 19:43:50.77992+00 2025-11-22 19:43:50.779927+00 f t 14181 \N \N f f +13244 2025-11-22 21:06:35.777883+00 2025-11-22 21:06:35.777893+00 f t 14182 \N \N f f +13245 2025-11-22 21:22:50.453892+00 2025-11-22 21:22:50.453899+00 f t 14183 \N \N f f +13246 2025-11-22 21:25:16.541191+00 2025-11-22 21:25:16.541199+00 f t 14184 \N \N f f +13247 2025-11-22 22:01:57.69405+00 2025-11-22 22:01:57.694058+00 f t 14185 \N \N f f +13248 2025-11-22 22:05:48.356123+00 2025-11-22 22:05:48.356131+00 f t 14186 \N \N f f +13249 2025-11-22 22:41:21.325975+00 2025-11-22 22:41:21.325983+00 f t 14187 \N \N f f +13250 2025-11-22 22:52:32.289574+00 2025-11-22 22:52:32.289586+00 f t 12952 \N \N f f +13251 2025-11-22 23:29:44.947597+00 2025-11-22 23:29:44.947604+00 f t 14190 \N \N f f +13252 2025-11-22 23:48:42.627456+00 2025-11-22 23:48:42.627464+00 f t 14191 \N \N f f +13253 2025-11-23 00:38:22.474404+00 2025-11-23 00:38:22.474413+00 f t 14192 \N \N f f +13254 2025-11-23 01:05:21.679483+00 2025-11-23 01:05:21.67949+00 f t 14193 \N \N f f +13255 2025-11-23 01:17:05.700685+00 2025-11-23 01:17:05.700694+00 f t 14194 \N \N f f +13256 2025-11-23 01:39:50.435284+00 2025-11-23 01:39:50.435294+00 f t 14195 \N \N f f +13257 2025-11-23 02:11:24.256827+00 2025-11-23 02:11:24.256835+00 f t 14196 \N \N f f +13258 2025-11-23 02:42:41.080812+00 2025-11-23 02:42:41.080821+00 f t 14197 \N \N f f +13259 2025-11-23 02:45:54.645953+00 2025-11-23 02:45:54.645962+00 f t 14198 \N \N f f +13260 2025-11-23 03:19:03.039621+00 2025-11-23 03:19:03.039621+00 f t 14199 \N \N f f +13261 2025-11-23 03:51:57.771894+00 2025-11-23 03:51:57.771901+00 f t 14200 \N \N f f +13262 2025-11-23 04:00:08.016471+00 2025-11-23 04:00:08.016484+00 f t 14201 \N \N f f +13263 2025-11-23 06:24:05.449306+00 2025-11-23 06:24:05.449315+00 f t 14202 \N \N f f +13264 2025-11-23 06:34:09.400473+00 2025-11-23 06:34:09.40049+00 f t 14203 \N \N f f +13265 2025-11-23 06:46:48.958347+00 2025-11-23 06:46:48.958357+00 f t 14204 \N \N f f +13266 2025-11-23 08:03:37.604557+00 2025-11-23 08:03:37.604565+00 f t 14205 \N \N f f +13267 2025-11-23 08:08:51.940367+00 2025-11-23 08:08:51.940367+00 f t 14206 \N \N f f +13268 2025-11-23 10:15:01.556936+00 2025-11-23 10:15:01.556951+00 f t 14207 \N \N f f +13269 2025-11-23 10:20:03.060007+00 2025-11-23 10:20:03.060021+00 f t 14208 \N \N f f +13270 2025-11-23 10:22:00.831228+00 2025-11-23 10:22:00.831242+00 f t 14209 \N \N f f +13271 2025-11-23 10:30:24.661684+00 2025-11-23 10:30:24.661694+00 f t 14211 \N \N f f +13272 2025-11-23 11:07:08.400398+00 2025-11-23 11:07:08.40041+00 f t 14212 \N \N f f +13273 2025-11-23 11:30:15.530429+00 2025-11-23 11:30:15.530438+00 f t 14213 \N \N f f +13274 2025-11-23 12:06:02.304169+00 2025-11-23 12:06:02.304181+00 f t 14214 \N \N f f +13275 2025-11-23 12:08:15.343806+00 2025-11-23 12:08:15.343817+00 f t 14215 \N \N f f +13276 2025-11-23 12:46:30.108004+00 2025-11-23 12:46:30.108016+00 f t 14216 \N \N f f +13277 2025-11-23 12:54:16.697632+00 2025-11-23 12:54:16.697642+00 f t 14217 \N \N f f +13278 2025-11-23 12:55:52.471036+00 2025-11-23 12:55:52.471045+00 f t 14218 \N \N f f +13279 2025-11-23 13:30:34.695899+00 2025-11-23 13:30:34.695909+00 f t 14220 \N \N f f +13280 2025-11-23 13:37:03.742727+00 2025-11-23 13:37:03.742735+00 f t 14221 \N \N f f +13281 2025-11-23 13:41:59.094834+00 2025-11-23 13:41:59.094844+00 f t 14217 \N \N f f +13282 2025-11-23 13:50:11.7805+00 2025-11-23 13:50:11.780518+00 f t 14224 \N \N f f +13283 2025-11-23 13:55:37.229844+00 2025-11-23 13:55:37.229854+00 f t 14225 \N \N f f +13284 2025-11-23 14:06:43.005823+00 2025-11-23 14:06:43.005832+00 f t 14226 \N \N f f +13285 2025-11-23 14:42:49.010277+00 2025-11-23 14:42:49.010284+00 f t 14227 \N \N f f +13286 2025-11-23 14:45:00.048853+00 2025-11-23 14:45:00.048861+00 f t 14228 \N \N f f +13287 2025-11-23 14:45:17.542285+00 2025-11-23 14:45:17.542295+00 f t 14229 \N \N f f +13288 2025-11-23 14:50:03.014109+00 2025-11-23 14:50:03.014123+00 f t 14230 \N \N f f +13289 2025-11-23 15:01:15.111445+00 2025-11-23 15:01:15.111452+00 f t 14232 \N \N f f +13290 2025-11-23 15:12:49.677429+00 2025-11-23 15:12:49.677439+00 f t 14233 \N \N f f +13291 2025-11-23 15:53:10.046305+00 2025-11-23 15:53:10.046312+00 f t 14234 \N \N f f +13292 2025-11-23 16:10:20.796998+00 2025-11-23 16:10:20.797008+00 f t 14235 \N \N f f +13293 2025-11-23 16:25:01.282195+00 2025-11-23 16:25:01.282206+00 f t 14236 \N \N f f +13294 2025-11-23 16:59:35.676322+00 2025-11-23 16:59:35.676334+00 f t 14237 \N \N f f +13295 2025-11-23 17:00:22.139273+00 2025-11-23 17:00:22.139287+00 f t 14238 \N \N f f +13296 2025-11-23 17:02:47.193152+00 2025-11-23 17:02:47.193159+00 f t 14239 \N \N f f +13297 2025-11-23 17:10:27.388144+00 2025-11-23 17:10:27.388155+00 f t 14240 \N \N f f +13298 2025-11-23 17:13:12.831982+00 2025-11-23 17:13:12.83199+00 f t 14241 \N \N f f +13299 2025-11-23 17:13:54.450188+00 2025-11-23 17:13:54.450195+00 f t 14242 \N \N f f +13300 2025-11-23 18:11:15.91964+00 2025-11-23 18:11:15.919648+00 f t 14243 \N \N f f +13301 2025-11-23 18:22:34.81035+00 2025-11-23 18:22:34.810359+00 f t 14244 \N \N f f +13302 2025-11-23 18:23:27.360369+00 2025-11-23 18:23:27.360376+00 f t 14245 \N \N f f +13303 2025-11-23 18:33:56.989133+00 2025-11-23 18:33:56.98914+00 f t 9712 \N \N f f +13304 2025-11-23 18:35:40.330297+00 2025-11-23 18:35:40.330308+00 f t 9712 \N \N f f +13305 2025-11-23 18:40:01.862142+00 2025-11-23 18:40:01.862156+00 f t 14246 \N \N f f +13306 2025-11-23 18:46:29.970405+00 2025-11-23 18:46:29.970418+00 f t 14247 \N \N f f +13307 2025-11-23 18:46:49.769232+00 2025-11-23 18:46:49.769242+00 f t 14248 \N \N f f +13308 2025-11-23 18:49:26.240629+00 2025-11-23 18:49:26.240638+00 f t 14249 \N \N f f +13309 2025-11-23 18:51:01.853299+00 2025-11-23 18:51:01.853311+00 f t 14250 \N \N f f +13310 2025-11-23 18:51:22.264991+00 2025-11-23 18:51:22.265004+00 f t 14251 \N \N f f +13311 2025-11-23 18:53:50.4049+00 2025-11-23 18:53:50.404912+00 f t 14252 \N \N f f +13312 2025-11-23 19:19:14.171504+00 2025-11-23 19:19:14.171512+00 f t 14253 \N \N f f +13313 2025-11-23 19:22:39.759565+00 2025-11-23 19:22:39.759572+00 f t 14254 \N \N f f +13314 2025-11-23 19:33:56.799998+00 2025-11-23 19:33:56.800008+00 f t 14255 \N \N f f +13315 2025-11-23 19:38:47.751252+00 2025-11-23 19:38:47.751259+00 f t 14256 \N \N f f +13316 2025-11-23 19:45:19.31669+00 2025-11-23 19:45:19.316701+00 f t 14257 \N \N f f +13317 2025-11-23 19:46:24.373732+00 2025-11-23 19:46:24.373739+00 f t 14258 \N \N f f +13318 2025-11-23 20:08:28.931297+00 2025-11-23 20:08:28.931311+00 f t 14259 \N \N f f +13319 2025-11-23 20:09:59.50512+00 2025-11-23 20:09:59.505127+00 f t 14260 \N \N f f +13320 2025-11-23 20:12:16.038223+00 2025-11-23 20:12:16.038235+00 f t 14261 \N \N f f +13321 2025-11-23 20:13:17.889697+00 2025-11-23 20:13:17.889697+00 f t 14262 \N \N f f +13322 2025-11-23 20:27:49.727072+00 2025-11-23 20:27:49.72708+00 f t 4774 \N \N f f +13323 2025-11-23 20:33:31.225709+00 2025-11-23 20:33:31.225719+00 f t 14263 \N \N f f +13324 2025-11-23 20:37:49.072043+00 2025-11-23 20:37:49.072051+00 f t 14264 \N \N f f +13325 2025-11-23 20:47:41.720816+00 2025-11-23 20:47:41.720824+00 f t 14265 \N \N f f +13326 2025-11-23 20:51:07.29521+00 2025-11-23 20:51:07.295221+00 f t 14266 \N \N f f +13327 2025-11-23 20:58:35.634745+00 2025-11-23 20:58:35.634753+00 f t 14267 \N \N f f +13328 2025-11-23 21:20:29.489129+00 2025-11-23 21:20:29.489136+00 f t 14268 \N \N f f +13329 2025-11-23 21:23:30.931771+00 2025-11-23 21:23:30.931783+00 f t 14269 \N \N f f +13330 2025-11-23 22:22:46.435514+00 2025-11-23 22:22:46.435523+00 f t 14270 \N \N f f +13331 2025-11-23 22:24:27.465725+00 2025-11-23 22:24:27.465734+00 f t 14271 \N \N f f +13332 2025-11-23 22:37:03.300834+00 2025-11-23 22:37:03.300846+00 f t 14272 \N \N f f +13333 2025-11-23 22:41:25.622096+00 2025-11-23 22:41:25.622104+00 f t 14273 \N \N f f +13334 2025-11-23 23:10:18.602205+00 2025-11-23 23:10:18.602214+00 f t 14274 \N \N f f +13335 2025-11-23 23:18:17.859928+00 2025-11-23 23:18:17.859937+00 f t 14275 \N \N f f +13336 2025-11-24 00:06:47.330589+00 2025-11-24 00:06:47.330596+00 f t 14276 \N \N f f +13337 2025-11-24 00:14:27.767204+00 2025-11-24 00:14:27.767217+00 f t 14277 \N \N f f +13338 2025-11-24 00:55:56.078305+00 2025-11-24 00:55:56.078312+00 f t 14278 \N \N f f +13339 2025-11-24 01:04:07.778235+00 2025-11-24 01:04:07.778248+00 f t 14279 \N \N f f +13340 2025-11-24 01:25:29.063607+00 2025-11-24 01:25:29.063619+00 f t 14280 \N \N f f +13341 2025-11-24 01:43:24.335241+00 2025-11-24 01:43:24.335251+00 f t 14281 \N \N f f +13342 2025-11-24 01:46:11.588313+00 2025-11-24 01:46:11.588324+00 f t 14282 \N \N f f +13343 2025-11-24 01:52:04.829439+00 2025-11-24 01:52:04.829447+00 f t 14283 \N \N f f +13344 2025-11-24 01:57:31.262133+00 2025-11-24 01:57:31.262145+00 f t 14284 \N \N f f +13345 2025-11-24 02:10:46.463986+00 2025-11-24 02:10:46.463993+00 f t 14285 \N \N f f +13346 2025-11-24 02:11:08.651389+00 2025-11-24 02:11:08.651401+00 f t 14286 \N \N f f +13347 2025-11-24 02:54:35.475923+00 2025-11-24 02:54:35.475931+00 f t 14287 \N \N f f +13348 2025-11-24 03:37:32.186422+00 2025-11-24 03:37:32.18643+00 f t 14288 \N \N f f +13349 2025-11-24 03:42:55.146398+00 2025-11-24 03:42:55.146408+00 f t 14289 \N \N f f +13350 2025-11-24 03:45:15.264824+00 2025-11-24 03:45:15.264833+00 f t 14290 \N \N f f +13351 2025-11-24 04:04:25.054747+00 2025-11-24 04:04:25.054755+00 f t 14291 \N \N f f +13352 2025-11-24 04:20:57.977303+00 2025-11-24 04:20:57.977316+00 f t 14292 \N \N f f +13353 2025-11-24 04:41:54.121407+00 2025-11-24 04:41:54.121414+00 f t 14293 \N \N f f +13354 2025-11-24 05:06:36.710381+00 2025-11-24 05:06:36.710388+00 f t 14294 \N \N f f +13355 2025-11-24 05:13:33.41239+00 2025-11-24 05:13:33.412397+00 f t 14295 \N \N f f +13356 2025-11-24 05:20:13.467487+00 2025-11-24 05:20:13.467499+00 f t 14296 \N \N f f +13357 2025-11-24 05:39:26.790269+00 2025-11-24 05:39:26.790276+00 f t 14297 \N \N f f +13358 2025-11-24 05:44:34.246171+00 2025-11-24 05:44:34.246179+00 f t 14298 \N \N f f +13359 2025-11-24 05:47:41.404831+00 2025-11-24 05:47:41.404838+00 f t 14299 \N \N f f +13360 2025-11-24 06:29:20.390801+00 2025-11-24 06:29:20.390801+00 f t 14300 \N \N f f +13361 2025-11-24 07:19:18.802029+00 2025-11-24 07:19:18.802036+00 f t 14301 \N \N f f +13362 2025-11-24 09:00:02.832708+00 2025-11-24 09:00:02.832708+00 f t 14303 \N \N f f +13363 2025-11-24 09:02:23.696972+00 2025-11-24 09:02:23.69698+00 f t 14304 \N \N f f +13364 2025-11-24 09:27:54.564776+00 2025-11-24 09:27:54.564785+00 f t 14305 \N \N f f +13365 2025-11-24 09:41:59.091336+00 2025-11-24 09:41:59.091346+00 f t 14306 \N \N f f +13366 2025-11-24 09:48:07.902935+00 2025-11-24 09:48:07.902947+00 f t 14307 \N \N f f +13367 2025-11-24 09:53:08.913043+00 2025-11-24 09:53:08.913052+00 f t 14308 \N \N f f +13368 2025-11-24 10:01:10.444571+00 2025-11-24 10:01:10.444579+00 f t 14310 \N \N f f +13369 2025-11-24 10:18:56.68721+00 2025-11-24 10:18:56.687217+00 f t 14311 \N \N f f +13370 2025-11-24 10:20:18.438631+00 2025-11-24 10:20:18.438639+00 f t 14312 \N \N f f +13371 2025-11-24 10:47:52.034869+00 2025-11-24 10:47:52.034877+00 f t 14313 \N \N f f +13372 2025-11-24 11:00:02.728335+00 2025-11-24 11:00:02.728335+00 f t 14314 \N \N f f +13373 2025-11-24 11:02:15.819041+00 2025-11-24 11:02:15.819049+00 f t 14315 \N \N f f +13374 2025-11-24 11:20:14.766408+00 2025-11-24 11:20:14.76642+00 f t 14316 \N \N f f +13375 2025-11-24 11:35:55.84768+00 2025-11-24 11:35:55.847687+00 f t 14317 \N \N f f +13376 2025-11-24 11:38:34.497137+00 2025-11-24 11:38:34.497145+00 f t 14318 \N \N f f +13377 2025-11-24 11:47:32.514929+00 2025-11-24 11:47:32.514939+00 f t 14319 \N \N f f +13378 2025-11-24 12:01:29.365556+00 2025-11-24 12:01:29.365567+00 f t 14320 \N \N f f +13379 2025-11-24 12:07:08.169396+00 2025-11-24 12:07:08.169408+00 f t 14321 \N \N f f +13380 2025-11-24 12:07:09.907377+00 2025-11-24 12:07:09.90739+00 f t 14322 \N \N f f +13381 2025-11-24 12:17:18.747043+00 2025-11-24 12:17:18.747054+00 f t 14323 \N \N f f +13382 2025-11-24 12:18:21.368249+00 2025-11-24 12:18:21.368258+00 f t 14324 \N \N f f +13383 2025-11-24 12:21:37.256201+00 2025-11-24 12:21:37.25621+00 f t 14325 \N \N f f +13384 2025-11-24 12:22:57.891286+00 2025-11-24 12:22:57.891293+00 f t 14326 \N \N f f +13385 2025-11-24 12:23:01.16504+00 2025-11-24 12:23:01.165052+00 f t 14327 \N \N f f +13386 2025-11-24 12:28:19.366352+00 2025-11-24 12:28:19.366361+00 f t 14328 \N \N f f +13387 2025-11-24 12:28:45.994851+00 2025-11-24 12:28:45.994859+00 f t 14329 \N \N f f +13388 2025-11-24 12:39:12.937479+00 2025-11-24 12:39:12.93749+00 f t 14330 \N \N f f +13389 2025-11-24 13:00:26.062941+00 2025-11-24 13:00:26.062952+00 f t 14331 \N \N f f +13401 2025-11-24 14:20:24.494074+00 2025-11-24 14:20:24.494085+00 f t 14342 \N \N f f +13390 2025-11-24 13:16:48.453541+00 2025-11-24 13:16:48.453541+00 f t 14332 \N \N f f +13391 2025-11-24 13:32:03.235824+00 2025-11-24 13:32:03.235836+00 f t 14334 \N \N f f +13392 2025-11-24 13:35:00.845132+00 2025-11-24 13:35:00.845142+00 f t 14335 \N \N f f +13393 2025-11-24 13:40:19.752424+00 2025-11-24 13:40:19.752432+00 f t 14336 \N \N f f +13394 2025-11-24 13:45:17.12447+00 2025-11-24 13:45:17.124478+00 f t 14337 \N \N f f +13395 2025-11-24 13:50:27.640208+00 2025-11-24 13:50:27.640216+00 f t 14338 \N \N f f +13396 2025-11-24 13:52:33.454468+00 2025-11-24 13:52:33.454476+00 f t 14339 \N \N f f +13397 2025-11-24 13:57:08.572808+00 2025-11-24 13:57:08.572833+00 f t 14336 \N \N f f +13398 2025-11-24 14:05:40.473163+00 2025-11-24 14:05:40.473171+00 f t 14340 \N \N f f +13399 2025-11-24 14:18:52.816459+00 2025-11-24 14:18:52.816468+00 f t 14341 \N \N f f +13400 2025-11-24 14:20:09.606505+00 2025-11-24 14:20:09.606516+00 f t 14164 \N \N f f +13402 2025-11-24 14:22:59.574448+00 2025-11-24 14:22:59.574455+00 f t 13490 \N \N f f +13403 2025-11-24 14:26:46.452232+00 2025-11-24 14:26:46.452239+00 f t 14343 \N \N f f +13404 2025-11-24 14:29:51.409431+00 2025-11-24 14:29:51.409441+00 f t 14344 \N \N f f +13405 2025-11-24 14:31:07.402065+00 2025-11-24 14:31:07.402078+00 f t 14345 \N \N f f +13406 2025-11-24 14:36:11.958855+00 2025-11-24 14:36:11.958864+00 f t 14346 \N \N f f +13407 2025-11-24 14:40:49.991817+00 2025-11-24 14:40:49.991824+00 f t 14347 \N \N f f +13408 2025-11-24 14:42:06.637052+00 2025-11-24 14:42:06.637062+00 f t 14348 \N \N f f +13409 2025-11-24 14:50:43.690183+00 2025-11-24 14:50:43.690191+00 f t 14349 \N \N f f +13410 2025-11-24 14:59:47.814219+00 2025-11-24 14:59:47.814227+00 f t 14350 \N \N f f +13411 2025-11-24 15:15:42.32604+00 2025-11-24 15:15:42.32605+00 f t 14351 \N \N f f +13412 2025-11-24 15:27:57.204799+00 2025-11-24 15:27:57.204806+00 f t 14352 \N \N f f +13413 2025-11-24 15:30:49.592011+00 2025-11-24 15:30:49.592018+00 f t 14353 \N \N f f +13414 2025-11-24 15:32:07.714359+00 2025-11-24 15:32:07.714367+00 f t 14354 \N \N f f +13415 2025-11-24 15:38:35.109547+00 2025-11-24 15:38:35.109558+00 f t 14355 \N \N f f +13416 2025-11-24 15:39:02.300969+00 2025-11-24 15:39:02.300984+00 f t 14356 \N \N f f +13417 2025-11-24 16:08:30.921258+00 2025-11-24 16:08:30.921265+00 f t 14357 \N \N f f +13418 2025-11-24 16:31:16.749746+00 2025-11-24 16:31:16.749756+00 f t 14358 \N \N f f +13419 2025-11-24 16:33:22.35439+00 2025-11-24 16:33:22.354398+00 f t 14359 \N \N f f +13420 2025-11-24 17:11:53.12314+00 2025-11-24 17:11:53.123147+00 f t 14360 \N \N f f +13421 2025-11-24 17:17:23.057688+00 2025-11-24 17:17:23.057697+00 f t 14361 \N \N f f +13422 2025-11-24 17:31:41.79114+00 2025-11-24 17:31:41.79115+00 f t 14362 \N \N f f +13498 2025-11-25 02:04:02.231378+00 2025-11-25 02:04:02.231394+00 f t 14438 \N \N f f +13423 2025-11-24 17:55:23.826859+00 2025-11-24 17:55:23.826859+00 f t 14363 \N \N f f +13424 2025-11-24 18:02:52.315481+00 2025-11-24 18:02:52.315481+00 f t 14364 \N \N f f +13425 2025-11-24 18:02:57.055705+00 2025-11-24 18:02:57.055718+00 f t 14365 \N \N f f +13426 2025-11-24 18:03:15.013408+00 2025-11-24 18:03:15.013416+00 f t 14366 \N \N f f +13427 2025-11-24 18:19:03.88406+00 2025-11-24 18:19:03.884069+00 f t 14367 \N \N f f +13428 2025-11-24 18:41:56.218101+00 2025-11-24 18:41:56.21811+00 f t 14368 \N \N f f +13429 2025-11-24 19:03:20.028107+00 2025-11-24 19:03:20.028115+00 f t 14369 \N \N f f +13430 2025-11-24 19:05:29.722337+00 2025-11-24 19:05:29.722345+00 f t 14370 \N \N f f +13431 2025-11-24 19:36:57.401976+00 2025-11-24 19:36:57.401985+00 f t 14371 \N \N f f +13432 2025-11-24 19:51:44.36157+00 2025-11-24 19:51:44.361579+00 f t 14372 \N \N f f +13433 2025-11-24 19:52:22.267255+00 2025-11-24 19:52:22.267262+00 f t 14373 \N \N f f +13434 2025-11-24 20:14:49.799081+00 2025-11-24 20:14:49.79909+00 f t 14374 \N \N f f +13499 2025-11-25 02:08:10.871224+00 2025-11-25 02:08:10.871232+00 f t 14439 \N \N f f +13435 2025-11-24 20:19:52.910856+00 2025-11-24 20:19:52.910856+00 f t 14375 \N \N f f +13436 2025-11-24 20:20:43.734694+00 2025-11-24 20:20:43.7347+00 f t 14376 \N \N f f +13437 2025-11-24 20:39:15.255278+00 2025-11-24 20:39:15.255286+00 f t 648 \N \N f f +13438 2025-11-24 20:41:55.326201+00 2025-11-24 20:41:55.326208+00 f t 14377 \N \N f f +13439 2025-11-24 20:43:21.3766+00 2025-11-24 20:43:21.376607+00 f t 14378 \N \N f f +13440 2025-11-24 20:45:01.426788+00 2025-11-24 20:45:01.426802+00 f t 14379 \N \N f f +13441 2025-11-24 20:57:26.925502+00 2025-11-24 20:57:26.925509+00 f t 14380 \N \N f f +13442 2025-11-24 20:58:37.731939+00 2025-11-24 20:58:37.731947+00 f t 14381 \N \N f f +13443 2025-11-24 20:59:37.878504+00 2025-11-24 20:59:37.878511+00 f t 14382 \N \N f f +13444 2025-11-24 21:03:14.557725+00 2025-11-24 21:03:14.557734+00 f t 14383 \N \N f f +13445 2025-11-24 21:31:43.385818+00 2025-11-24 21:31:43.385826+00 f t 14384 \N \N f f +13446 2025-11-24 21:37:54.625626+00 2025-11-24 21:37:54.625634+00 f t 14385 \N \N f f +13447 2025-11-24 21:38:56.015702+00 2025-11-24 21:38:56.01571+00 f t 14386 \N \N f f +13448 2025-11-24 22:00:53.933073+00 2025-11-24 22:00:53.93308+00 f t 14388 \N \N f f +13449 2025-11-24 22:01:32.587739+00 2025-11-24 22:01:32.58775+00 f t 14387 \N \N f f +13450 2025-11-24 22:12:42.450703+00 2025-11-24 22:12:42.450715+00 f t 14389 \N \N f f +13451 2025-11-24 22:16:15.236467+00 2025-11-24 22:16:15.236479+00 f t 14390 \N \N f f +13452 2025-11-24 22:19:19.556882+00 2025-11-24 22:19:19.556891+00 f t 14391 \N \N f f +13453 2025-11-24 22:19:55.130843+00 2025-11-24 22:19:55.13085+00 f t 14392 \N \N f f +13454 2025-11-24 22:20:53.587333+00 2025-11-24 22:20:53.58734+00 f t 14393 \N \N f f +13455 2025-11-24 22:23:32.375904+00 2025-11-24 22:23:32.375913+00 f t 14394 \N \N f f +13456 2025-11-24 22:26:39.149555+00 2025-11-24 22:26:39.149567+00 f t 456 \N \N f f +13457 2025-11-24 22:36:28.072194+00 2025-11-24 22:36:28.072201+00 f t 14395 \N \N f f +13458 2025-11-24 22:36:46.663499+00 2025-11-24 22:36:46.663507+00 f t 14396 \N \N f f +13459 2025-11-24 22:37:29.693602+00 2025-11-24 22:37:29.693615+00 f t 14397 \N \N f f +13460 2025-11-24 22:46:29.510901+00 2025-11-24 22:46:29.510909+00 f t 14398 \N \N f f +13461 2025-11-24 22:51:47.762767+00 2025-11-24 22:51:47.762777+00 f t 14399 \N \N f f +13462 2025-11-24 23:09:23.201786+00 2025-11-24 23:09:23.201801+00 f t 14400 \N \N f f +13463 2025-11-24 23:11:34.340812+00 2025-11-24 23:11:34.340821+00 f t 9712 \N \N f f +13464 2025-11-24 23:22:30.880633+00 2025-11-24 23:22:30.880641+00 f t 14401 \N \N f f +13465 2025-11-24 23:29:06.898252+00 2025-11-24 23:29:06.898265+00 f t 14402 \N \N f f +13466 2025-11-24 23:29:55.695463+00 2025-11-24 23:29:55.695473+00 f t 14403 \N \N f f +13467 2025-11-24 23:30:35.974261+00 2025-11-24 23:30:35.974269+00 f t 14404 \N \N f f +13468 2025-11-24 23:31:44.773964+00 2025-11-24 23:31:44.773971+00 f t 14405 \N \N f f +13469 2025-11-24 23:31:55.433321+00 2025-11-24 23:31:55.433329+00 f t 14406 \N \N f f +13470 2025-11-24 23:32:11.513043+00 2025-11-24 23:32:11.513052+00 f t 14407 \N \N f f +13471 2025-11-24 23:36:10.251138+00 2025-11-24 23:36:10.25115+00 f t 14408 \N \N f f +13472 2025-11-25 00:00:33.604726+00 2025-11-25 00:00:33.604743+00 f t 14409 \N \N f f +13473 2025-11-25 00:12:02.723811+00 2025-11-25 00:12:02.723825+00 f t 14410 \N \N f f +13474 2025-11-25 00:20:45.534579+00 2025-11-25 00:20:45.534587+00 f t 14411 \N \N f f +13475 2025-11-25 00:21:09.529998+00 2025-11-25 00:21:09.530007+00 f t 14412 \N \N f f +13476 2025-11-25 00:21:45.369765+00 2025-11-25 00:21:45.369775+00 f t 14413 \N \N f f +13477 2025-11-25 00:23:20.147743+00 2025-11-25 00:23:20.147788+00 f t 14414 \N \N f f +13478 2025-11-25 00:26:08.815023+00 2025-11-25 00:26:08.815034+00 f t 14415 \N \N f f +13479 2025-11-25 00:31:18.134987+00 2025-11-25 00:31:18.134994+00 f t 14416 \N \N f f +13480 2025-11-25 00:36:05.684345+00 2025-11-25 00:36:05.684355+00 f t 14417 \N \N f f +13481 2025-11-25 00:37:43.390162+00 2025-11-25 00:37:43.390171+00 f t 14418 \N \N f f +13482 2025-11-25 00:45:48.693367+00 2025-11-25 00:45:48.693374+00 f t 14419 \N \N f f +13483 2025-11-25 00:49:45.677528+00 2025-11-25 00:49:45.677535+00 f t 14420 \N \N f f +13484 2025-11-25 00:53:20.031077+00 2025-11-25 00:53:20.031085+00 f t 14421 \N \N f f +13485 2025-11-25 01:01:30.228636+00 2025-11-25 01:01:30.22865+00 f t 14422 \N \N f f +13486 2025-11-25 01:11:18.970233+00 2025-11-25 01:11:18.970242+00 f t 14424 \N \N f f +13487 2025-11-25 01:16:12.963094+00 2025-11-25 01:16:12.963102+00 f t 14425 \N \N f f +13488 2025-11-25 01:30:08.154737+00 2025-11-25 01:30:08.15475+00 f t 14426 \N \N f f +13489 2025-11-25 01:32:34.432618+00 2025-11-25 01:32:34.432626+00 f t 14427 \N \N f f +13490 2025-11-25 01:38:05.718819+00 2025-11-25 01:38:05.718829+00 f t 14429 \N \N f f +13491 2025-11-25 01:38:42.082124+00 2025-11-25 01:38:42.082124+00 f t 14430 \N \N f f +13492 2025-11-25 01:40:56.999771+00 2025-11-25 01:40:56.999782+00 f t 14431 \N \N f f +13493 2025-11-25 02:00:14.361288+00 2025-11-25 02:00:14.361302+00 f t 14433 \N \N f f +13494 2025-11-25 02:00:20.625366+00 2025-11-25 02:00:20.625379+00 f t 14434 \N \N f f +13495 2025-11-25 02:00:55.193686+00 2025-11-25 02:00:55.193695+00 f t 14435 \N \N f f +13496 2025-11-25 02:01:26.975107+00 2025-11-25 02:01:26.975119+00 f t 14436 \N \N f f +13497 2025-11-25 02:03:09.474873+00 2025-11-25 02:03:09.474882+00 f t 14437 \N \N f f +13500 2025-11-25 02:09:25.718363+00 2025-11-25 02:09:25.718371+00 f t 14441 \N \N f f +13501 2025-11-25 02:30:48.691738+00 2025-11-25 02:30:48.691747+00 f t 14442 \N 1 f f +13502 2025-11-25 03:02:52.602726+00 2025-11-25 03:02:52.602735+00 f t 14443 \N \N f f +13503 2025-11-25 03:17:55.355491+00 2025-11-25 03:17:55.3555+00 f t 14444 \N \N f f +13504 2025-11-25 04:02:35.969644+00 2025-11-25 04:02:35.969652+00 f t 14445 \N \N f f +13505 2025-11-25 04:41:19.84624+00 2025-11-25 04:41:19.846253+00 f t 14446 \N \N f f +13506 2025-11-25 10:00:39.363833+00 2025-11-25 10:00:39.363842+00 f t 14447 \N \N f f +13507 2025-11-25 10:03:06.135477+00 2025-11-25 10:03:06.135485+00 f t 14448 \N \N f f +13508 2025-11-25 10:37:57.844299+00 2025-11-25 10:37:57.844311+00 f t 14449 \N \N f f +13509 2025-11-25 10:54:07.553803+00 2025-11-25 10:54:07.553816+00 f t 14450 \N \N f f +13510 2025-11-25 11:04:16.24356+00 2025-11-25 11:04:16.243569+00 f t 14451 \N \N f f +13511 2025-11-25 11:36:50.666771+00 2025-11-25 11:36:50.666785+00 f t 14452 \N \N f f +13512 2025-11-25 11:48:19.193777+00 2025-11-25 11:48:19.193785+00 f t 14453 \N \N f f +13513 2025-11-25 11:55:59.593203+00 2025-11-25 11:55:59.593203+00 f t 14454 \N \N f f +13514 2025-11-25 12:05:23.882331+00 2025-11-25 12:05:23.88234+00 f t 393 \N \N f f +13515 2025-11-25 12:15:32.077771+00 2025-11-25 12:15:32.077783+00 f t 14457 \N \N f f +13516 2025-11-25 12:24:23.427252+00 2025-11-25 12:24:23.427263+00 f t 14458 \N \N f f +13517 2025-11-25 12:29:16.191109+00 2025-11-25 12:29:16.191117+00 f t 14459 \N \N f f +13518 2025-11-25 12:36:52.999267+00 2025-11-25 12:36:52.999276+00 f t 14460 \N \N f f +13519 2025-11-25 12:41:22.313084+00 2025-11-25 12:41:22.313092+00 f t 277 \N \N f f +13594 2025-11-25 20:08:41.841201+00 2025-11-25 20:08:41.841208+00 f t 14531 \N \N f f +13520 2025-11-25 12:44:02.943031+00 2025-11-25 12:44:02.943031+00 f t 14461 \N \N f f +13521 2025-11-25 12:50:33.988839+00 2025-11-25 12:50:33.988848+00 f t 14462 \N \N f f +13522 2025-11-25 12:53:31.235492+00 2025-11-25 12:53:31.235501+00 f t 456 \N \N f f +13523 2025-11-25 12:53:56.422338+00 2025-11-25 12:53:56.422347+00 f t 14463 \N \N f f +13524 2025-11-25 12:56:43.153127+00 2025-11-25 12:56:43.153136+00 f t 14464 \N \N f f +13525 2025-11-25 13:01:25.724757+00 2025-11-25 13:01:25.724765+00 f t 274 \N \N f f +13526 2025-11-25 13:13:35.885649+00 2025-11-25 13:13:35.885673+00 f t 14465 \N \N f f +13527 2025-11-25 13:13:50.498553+00 2025-11-25 13:13:50.498563+00 f t 14466 \N \N f f +13528 2025-11-25 13:33:38.650416+00 2025-11-25 13:33:38.650424+00 f t 12857 \N \N f f +13529 2025-11-25 13:35:01.282986+00 2025-11-25 13:35:01.282997+00 f t 14468 \N \N f f +13530 2025-11-25 13:37:46.56486+00 2025-11-25 13:37:46.56487+00 f t 14469 \N \N f f +13531 2025-11-25 13:50:58.608493+00 2025-11-25 13:50:58.608502+00 f t 14470 \N \N f f +13532 2025-11-25 14:04:22.410196+00 2025-11-25 14:04:22.411317+00 f t 14471 \N \N f f +13533 2025-11-25 14:09:12.023587+00 2025-11-25 14:09:12.023599+00 f t 14472 \N \N f f +13535 2025-11-25 14:12:37.019508+00 2025-11-25 14:12:37.01952+00 f t 14474 \N \N f f +13536 2025-11-25 14:12:54.82377+00 2025-11-25 14:12:54.824565+00 f t 14475 \N \N f f +13534 2025-11-25 14:25:21.718312+00 2025-11-25 14:25:21.718312+00 f t 14473 \N \N f f +13537 2025-11-25 14:25:26.378724+00 2025-11-25 14:25:26.378739+00 f t 14476 \N \N f f +13538 2025-11-25 14:29:47.84995+00 2025-11-25 14:29:47.849958+00 f t 14478 \N \N f f +13539 2025-11-25 14:39:30.337973+00 2025-11-25 14:39:30.337981+00 f t 14479 \N \N f f +13540 2025-11-25 14:42:41.469581+00 2025-11-25 14:42:41.46959+00 f t 14480 \N \N f f +13541 2025-11-25 14:46:53.326965+00 2025-11-25 14:46:53.326972+00 f t 14481 \N \N f f +13542 2025-11-25 14:52:48.099271+00 2025-11-25 14:52:48.099281+00 f t 14482 \N \N f f +13543 2025-11-25 15:16:25.882933+00 2025-11-25 15:16:25.882941+00 f t 14483 \N \N f f +13544 2025-11-25 15:26:28.162032+00 2025-11-25 15:26:28.162042+00 f t 14484 \N \N f f +13545 2025-11-25 15:26:51.438193+00 2025-11-25 15:26:51.438201+00 f t 14485 \N \N f f +13546 2025-11-25 15:29:13.49583+00 2025-11-25 15:29:13.495839+00 f t 14486 \N \N f f +13547 2025-11-25 15:31:26.505599+00 2025-11-25 15:31:26.505612+00 f t 14487 \N \N f f +13548 2025-11-25 15:33:54.286475+00 2025-11-25 15:33:54.286484+00 f t 14488 \N \N f f +13549 2025-11-25 15:47:39.259356+00 2025-11-25 15:47:39.259364+00 f t 14489 \N \N f f +13550 2025-11-25 15:54:08.915167+00 2025-11-25 15:54:08.915175+00 f t 14490 \N \N f f +13551 2025-11-25 15:55:39.886502+00 2025-11-25 15:55:39.88651+00 f t 12857 \N \N f f +13552 2025-11-25 16:01:16.425993+00 2025-11-25 16:01:16.425993+00 f t 14491 \N \N f f +13553 2025-11-25 16:12:30.65501+00 2025-11-25 16:12:30.655017+00 f t 14492 \N \N f f +13554 2025-11-25 16:22:15.78221+00 2025-11-25 16:22:15.782217+00 f t 14493 \N \N f f +13555 2025-11-25 16:23:18.942098+00 2025-11-25 16:23:18.942106+00 f t 14494 \N \N f f +13556 2025-11-25 16:29:07.861456+00 2025-11-25 16:29:07.861474+00 f t 14495 \N \N f f +13557 2025-11-25 16:29:34.721665+00 2025-11-25 16:29:34.721673+00 f t 14496 \N \N f f +13558 2025-11-25 16:32:58.386586+00 2025-11-25 16:32:58.386596+00 f t 14497 \N \N f f +13559 2025-11-25 16:33:53.120508+00 2025-11-25 16:33:53.120518+00 f t 14498 \N \N f f +13560 2025-11-25 16:35:07.525657+00 2025-11-25 16:35:07.525671+00 f t 14499 \N \N f f +13561 2025-11-25 16:37:23.883363+00 2025-11-25 16:37:23.883372+00 f t 14500 \N \N f f +13562 2025-11-25 16:37:30.958771+00 2025-11-25 16:37:30.958778+00 f t 14501 \N \N f f +13563 2025-11-25 16:43:47.178151+00 2025-11-25 16:43:47.178163+00 f t 14503 \N \N f f +13564 2025-11-25 16:44:36.245942+00 2025-11-25 16:44:36.24595+00 f t 14504 \N \N f f +13565 2025-11-25 16:46:29.709778+00 2025-11-25 16:46:29.709785+00 f t 14505 \N \N f f +13566 2025-11-25 16:53:53.44418+00 2025-11-25 16:53:53.444189+00 f t 14473 \N \N f f +13567 2025-11-25 17:20:30.790178+00 2025-11-25 17:20:30.790187+00 f t 14506 \N \N f f +13568 2025-11-25 17:21:39.988643+00 2025-11-25 17:21:39.988651+00 f t 14507 \N \N f f +13569 2025-11-25 17:35:48.41925+00 2025-11-25 17:35:48.419258+00 f t 14509 \N \N f f +13570 2025-11-25 17:42:09.816939+00 2025-11-25 17:42:09.81695+00 f t 14510 \N \N f f +13571 2025-11-25 17:50:08.916838+00 2025-11-25 17:50:08.916848+00 f t 14511 \N \N f f +13572 2025-11-25 17:52:16.804257+00 2025-11-25 17:52:16.804267+00 f t 14512 \N \N f f +13573 2025-11-25 17:58:42.357827+00 2025-11-25 17:58:42.357837+00 f t 14513 \N \N f f +13574 2025-11-25 18:04:47.285459+00 2025-11-25 18:04:47.285469+00 f t 14514 \N \N f f +13575 2025-11-25 18:07:02.351143+00 2025-11-25 18:07:02.351158+00 f t 14515 \N \N f f +13576 2025-11-25 18:07:58.899679+00 2025-11-25 18:07:58.899691+00 f t 14516 \N \N f f +13577 2025-11-25 18:25:07.709991+00 2025-11-25 18:25:07.710005+00 f t 14517 \N \N f f +13578 2025-11-25 18:30:18.86219+00 2025-11-25 18:30:18.862199+00 f t 14518 \N \N f f +13579 2025-11-25 18:38:27.150238+00 2025-11-25 18:38:27.150248+00 f t 13663 \N \N f f +13580 2025-11-25 18:39:32.955244+00 2025-11-25 18:39:32.955256+00 f t 14519 \N \N f f +13581 2025-11-25 18:40:04.135916+00 2025-11-25 18:40:04.135932+00 f t 14520 \N \N f f +13582 2025-11-25 18:41:28.962618+00 2025-11-25 18:41:28.96263+00 f t 14521 \N \N f f +13583 2025-11-25 18:44:44.785356+00 2025-11-25 18:44:44.785363+00 f t 14522 \N \N f f +13584 2025-11-25 18:45:03.850621+00 2025-11-25 18:45:03.850637+00 f t 14523 \N \N f f +13585 2025-11-25 18:45:06.782844+00 2025-11-25 18:45:06.782852+00 f t 14524 \N \N f f +13586 2025-11-25 18:48:42.376013+00 2025-11-25 18:48:42.376021+00 f t 14525 \N \N f f +13587 2025-11-25 18:50:10.866016+00 2025-11-25 18:50:10.866028+00 f t 393 \N \N f f +13588 2025-11-25 19:07:26.59616+00 2025-11-25 19:07:26.596168+00 f t 14526 \N \N f f +13589 2025-11-25 19:07:51.760012+00 2025-11-25 19:07:51.760021+00 f t 14527 \N \N f f +13590 2025-11-25 19:12:22.353983+00 2025-11-25 19:12:22.353994+00 f t 14528 \N \N f f +13591 2025-11-25 19:40:29.537877+00 2025-11-25 19:40:29.537884+00 f t 14529 \N \N f f +13592 2025-11-25 19:44:48.120666+00 2025-11-25 19:44:48.120674+00 f t 12810 \N \N f f +13593 2025-11-25 20:13:27.474893+00 2025-11-25 20:13:27.474893+00 f t 14530 \N \N f f +13595 2025-11-25 20:18:35.348525+00 2025-11-25 20:18:35.348532+00 f t 1734 \N \N f f +13596 2025-11-25 20:19:28.022471+00 2025-11-25 20:19:28.022478+00 f t 14532 \N \N f f +13597 2025-11-25 20:50:28.153641+00 2025-11-25 20:50:28.15365+00 f t 14533 \N \N f f +13598 2025-11-25 20:50:32.18525+00 2025-11-25 20:50:32.185262+00 f t 14506 \N \N f f +13599 2025-11-25 20:59:32.249139+00 2025-11-25 20:59:32.249146+00 f t 14534 \N \N f f +13600 2025-11-25 21:00:08.440456+00 2025-11-25 21:00:08.440471+00 f t 14506 \N \N f f +13601 2025-11-25 21:08:37.835877+00 2025-11-25 21:08:37.835888+00 f t 14535 \N \N f f +13602 2025-11-25 21:10:49.86851+00 2025-11-25 21:10:49.868518+00 f t 14536 \N \N f f +13603 2025-11-25 21:19:44.405597+00 2025-11-25 21:19:44.405605+00 f t 14506 \N \N f f +13604 2025-11-25 21:21:41.52118+00 2025-11-25 21:21:41.521188+00 f t 11644 \N \N f f +13605 2025-11-25 21:21:46.195567+00 2025-11-25 21:21:46.195574+00 f t 11644 \N \N f f +13606 2025-11-25 21:37:00.948645+00 2025-11-25 21:37:00.948653+00 f t 14537 \N \N f f +13607 2025-11-25 21:38:50.059549+00 2025-11-25 21:38:50.059559+00 f t 14538 \N \N f f +13608 2025-11-25 21:44:35.558172+00 2025-11-25 21:44:35.558181+00 f t 14539 \N \N f f +13609 2025-11-25 21:54:41.284918+00 2025-11-25 21:54:41.284927+00 f t 14540 \N \N f f +13610 2025-11-25 21:59:37.236666+00 2025-11-25 21:59:37.236674+00 f t 14541 \N \N f f +13611 2025-11-25 22:19:11.34155+00 2025-11-25 22:19:11.342485+00 f t 14542 \N \N f f +13612 2025-11-25 22:35:25.928343+00 2025-11-25 22:35:25.928352+00 f t 14544 \N \N f f +13613 2025-11-25 22:35:58.626256+00 2025-11-25 22:35:58.626266+00 f t 14545 \N \N f f +13614 2025-11-25 22:39:19.264378+00 2025-11-25 22:39:19.264387+00 f t 14546 \N \N f f +13616 2025-11-25 22:46:12.669346+00 2025-11-25 22:46:12.669354+00 f t 14548 \N \N f f +13615 2025-11-25 22:49:17.450544+00 2025-11-25 22:49:17.450544+00 f t 14499 \N \N f f +13617 2025-11-25 23:04:12.308475+00 2025-11-25 23:04:12.308484+00 f t 14550 \N \N f f +13618 2025-11-25 23:09:16.098033+00 2025-11-25 23:09:16.098044+00 f t 14551 \N \N f f +13619 2025-11-25 23:24:48.500792+00 2025-11-25 23:24:48.500799+00 f t 14554 \N \N f f +13620 2025-11-25 23:45:14.085095+00 2025-11-25 23:45:14.085105+00 f t 14530 \N \N f f +13621 2025-11-26 00:20:53.972212+00 2025-11-26 00:20:53.972219+00 f t 10193 \N \N f f +13622 2025-11-26 00:26:21.355444+00 2025-11-26 00:26:21.355454+00 f t 14557 \N \N f f +13623 2025-11-26 00:31:52.889811+00 2025-11-26 00:31:52.889818+00 f t 14558 \N \N f f +13624 2025-11-26 00:33:38.524989+00 2025-11-26 00:33:38.524997+00 f t 14559 \N \N f f +13625 2025-11-26 00:39:18.411627+00 2025-11-26 00:39:18.411639+00 f t 14560 \N \N f f +13626 2025-11-26 00:49:07.225705+00 2025-11-26 00:49:07.225714+00 f t 14561 \N \N f f +13627 2025-11-26 00:51:57.981093+00 2025-11-26 00:51:57.981101+00 f t 14562 \N \N f f +13628 2025-11-26 01:05:15.231761+00 2025-11-26 01:05:15.231773+00 f t 14563 \N \N f f +13629 2025-11-26 01:06:29.551202+00 2025-11-26 01:06:29.551209+00 f t 14564 \N \N f f +13630 2025-11-26 01:12:07.443325+00 2025-11-26 01:12:07.443334+00 f t 14565 \N \N f f +13631 2025-11-26 01:13:43.164655+00 2025-11-26 01:13:43.164662+00 f t 14566 \N \N f f +13632 2025-11-26 01:19:34.08057+00 2025-11-26 01:19:34.080577+00 f t 14567 \N \N f f +13633 2025-11-26 01:29:40.625699+00 2025-11-26 01:29:40.625706+00 f t 14568 \N \N f f +13634 2025-11-26 01:42:03.343393+00 2025-11-26 01:42:03.343407+00 f t 14569 \N \N f f +13635 2025-11-26 02:26:32.120812+00 2025-11-26 02:26:32.120821+00 f t 14570 \N \N f f +13636 2025-11-26 03:34:11.628836+00 2025-11-26 03:34:11.628845+00 f t 14571 \N \N f f +13637 2025-11-26 03:40:35.4978+00 2025-11-26 03:40:35.497808+00 f t 14572 \N \N f f +13638 2025-11-26 04:27:53.951245+00 2025-11-26 04:27:53.951245+00 f t 14573 \N \N f f +\. + + +-- +-- Data for Name: productos_cartitem; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.productos_cartitem (id, created_at, updated_at, deleted, active, price, quantity, total, cart_id, service_id, user_id, pet_id) FROM stdin; +61 2025-04-21 19:16:21.117702+00 2025-04-21 19:16:21.117711+00 f t 10000.00 1 10000.00 21 134 \N 335 +2 2025-04-15 22:23:01.891482+00 2025-04-15 22:23:01.891496+00 f t 38500.00 1 38500.00 1 82 \N 796 +524 2025-05-09 02:07:26.994131+00 2025-05-09 02:07:26.994151+00 f t 46000.00 1 46000.00 112 84 \N 981 +525 2025-05-09 02:07:26.996578+00 2025-05-09 02:07:26.996591+00 f t 46000.00 1 46000.00 112 84 \N 981 +126 2025-04-29 15:13:30.294262+00 2025-04-29 15:13:30.294271+00 f t 38500.00 1 38500.00 36 82 \N 880 +127 2025-04-29 15:13:30.30137+00 2025-04-29 15:13:30.301381+00 f t 7500.00 1 7500.00 36 85 \N 880 +128 2025-04-30 15:22:54.376418+00 2025-04-30 15:22:54.376428+00 f t 46000.00 1 46000.00 38 84 \N 886 +311 2025-05-08 12:56:16.461977+00 2025-05-08 12:56:16.461988+00 f t 46000.00 1 46000.00 100 84 \N 958 +274 2025-05-06 07:59:14.459039+00 2025-05-06 07:59:14.459052+00 f t 68750.00 1 68750.00 84 142 \N 927 +385 2025-05-08 22:35:12.841307+00 2025-05-08 22:35:12.841316+00 f t 21000.00 1 21000.00 108 86 \N 973 +386 2025-05-08 22:35:12.84156+00 2025-05-08 22:35:12.841568+00 f t 21000.00 1 21000.00 108 86 \N 973 +387 2025-05-08 22:35:12.848065+00 2025-05-08 22:35:12.848073+00 f t 21000.00 1 21000.00 108 88 \N 973 +14 2025-04-16 12:36:01.279883+00 2025-04-16 12:36:01.279896+00 f t 7500.00 1 7500.00 4 85 \N 797 +15 2025-04-16 12:36:01.287695+00 2025-04-16 12:36:01.28771+00 f t 21000.00 1 21000.00 4 86 \N 797 +135 2025-05-01 12:12:44.309881+00 2025-05-01 12:12:44.309895+00 f t 46000.00 1 46000.00 40 84 \N 887 +388 2025-05-08 22:35:12.848319+00 2025-05-08 22:35:12.848326+00 f t 21000.00 1 21000.00 108 88 \N 973 +137 2025-05-01 14:00:12.97754+00 2025-05-01 14:00:12.977559+00 f t 19000.00 1 19000.00 41 122 \N 888 +200 2025-05-03 12:01:49.909791+00 2025-05-03 12:01:49.9098+00 f t 46000.00 1 46000.00 52 84 \N 900 +791 2025-05-11 15:15:59.745745+00 2025-05-11 15:15:59.745757+00 f t 52000.00 1 52000.00 145 106 \N 1016 +24 2025-04-16 21:30:38.928672+00 2025-04-16 21:30:38.928682+00 f t 280000.00 1 280000.00 11 153 \N 806 +25 2025-04-17 16:18:24.813469+00 2025-04-17 16:18:24.813485+00 f t 95000.00 1 95000.00 10 103 \N 802 +324 2025-05-08 18:08:22.978839+00 2025-05-08 18:08:22.978852+00 f t 38500.00 1 38500.00 104 82 \N 966 +325 2025-05-08 18:08:22.988336+00 2025-05-08 18:08:22.988346+00 f t 38500.00 1 38500.00 104 82 \N 966 +31 2025-04-20 11:53:28.587492+00 2025-04-20 11:53:28.587501+00 f t 46000.00 1 46000.00 18 84 \N 818 +327 2025-05-08 21:48:57.239477+00 2025-05-08 21:48:57.239485+00 f t 38500.00 1 38500.00 105 82 \N 968 +912 2025-05-12 03:00:45.456073+00 2025-05-12 03:00:45.456082+00 f t 38500.00 1 38500.00 152 82 \N 1027 +290 2025-05-07 16:27:16.360503+00 2025-05-07 16:27:16.360516+00 f t 21000.00 1 21000.00 91 86 \N 943 +803 2025-05-11 15:50:48.937738+00 2025-05-11 15:50:48.937753+00 f t 46000.00 1 46000.00 147 84 \N 1018 +95 2025-04-25 23:21:26.063307+00 2025-04-25 23:21:26.063322+00 f t 44000.00 1 44000.00 29 147 \N 861 +913 2025-05-12 03:00:45.463219+00 2025-05-12 03:00:45.463232+00 f t 7500.00 1 7500.00 152 85 \N 1027 +914 2025-05-12 03:00:45.469798+00 2025-05-12 03:00:45.469808+00 f t 21000.00 1 21000.00 152 88 \N 1027 +97 2025-04-26 00:49:35.166588+00 2025-04-26 00:49:35.166597+00 f t 65000.00 1 65000.00 30 97 \N 862 +98 2025-04-26 00:49:35.174886+00 2025-04-26 00:49:35.174896+00 f t 11000.00 1 11000.00 30 116 \N 862 +291 2025-05-07 22:51:11.834031+00 2025-05-07 22:51:11.834043+00 f t 7500.00 1 7500.00 92 85 \N 952 +915 2025-05-12 03:00:45.47641+00 2025-05-12 03:00:45.47642+00 f t 21000.00 1 21000.00 152 163 \N 1027 +102 2025-04-26 10:23:45.660107+00 2025-04-26 10:23:45.660116+00 f t 10000.00 1 10000.00 31 134 \N 863 +103 2025-04-26 16:21:41.611681+00 2025-04-26 16:21:41.611695+00 f t 14000.00 1 14000.00 25 92 \N 852 +104 2025-04-26 16:21:41.621284+00 2025-04-26 16:21:41.621294+00 f t 38500.00 1 38500.00 25 82 \N 852 +547 2025-05-09 16:31:41.67186+00 2025-05-09 16:31:41.67187+00 f t 25000.00 1 25000.00 117 83 \N 989 +221 2025-05-04 14:04:43.744453+00 2025-05-04 14:04:43.744464+00 f t 21000.00 1 21000.00 58 86 \N 907 +222 2025-05-04 14:04:43.752813+00 2025-05-04 14:04:43.752826+00 f t 38500.00 1 38500.00 58 82 \N 907 +743 2025-05-09 22:59:32.785847+00 2025-05-09 22:59:32.785858+00 f t 38500.00 1 38500.00 133 82 \N 1005 +744 2025-05-09 22:59:32.791279+00 2025-05-09 22:59:32.791287+00 f t 21000.00 1 21000.00 133 88 \N 1005 +226 2025-05-04 16:00:40.858768+00 2025-05-04 16:00:40.858782+00 f t 46000.00 1 46000.00 60 84 \N 908 +745 2025-05-09 22:59:32.795605+00 2025-05-09 22:59:32.795612+00 f t 21000.00 1 21000.00 133 163 \N 1005 +554 2025-05-09 16:49:44.292237+00 2025-05-09 16:49:44.292251+00 f t 38500.00 1 38500.00 119 82 \N 991 +555 2025-05-09 16:49:44.298668+00 2025-05-09 16:49:44.298678+00 f t 11000.00 1 11000.00 119 116 \N 991 +118 2025-04-26 18:06:57.47617+00 2025-04-26 18:06:57.476179+00 f t 52000.00 1 52000.00 33 106 \N 864 +119 2025-04-27 00:19:10.356096+00 2025-04-27 00:19:10.356106+00 f t 46000.00 1 46000.00 34 84 \N 871 +556 2025-05-09 16:49:44.304188+00 2025-05-09 16:49:44.304196+00 f t 7000.00 1 7000.00 119 93 \N 991 +300 2025-05-08 12:22:24.278485+00 2025-05-08 12:22:24.278495+00 f t 21000.00 1 21000.00 97 86 \N 955 +557 2025-05-09 16:49:44.309079+00 2025-05-09 16:49:44.309087+00 f t 12000.00 1 12000.00 119 146 \N 991 +638 2025-05-09 19:18:15.829375+00 2025-05-09 19:18:15.829387+00 f t 38500.00 1 38500.00 129 82 \N 1001 +639 2025-05-09 19:18:15.837012+00 2025-05-09 19:18:15.837024+00 f t 7000.00 1 7000.00 129 93 \N 1001 +640 2025-05-09 19:18:15.843379+00 2025-05-09 19:18:15.843391+00 f t 42000.00 1 42000.00 129 114 \N 1001 +641 2025-05-09 19:18:15.849803+00 2025-05-09 19:18:15.849812+00 f t 12000.00 1 12000.00 129 146 \N 1001 +814 2025-05-11 16:40:22.257+00 2025-05-11 16:40:22.257011+00 f t 38500.00 1 38500.00 149 82 \N 1019 +815 2025-05-11 16:40:22.263116+00 2025-05-11 16:40:22.263128+00 f t 7500.00 1 7500.00 149 85 \N 1019 +566 2025-05-09 17:52:31.887989+00 2025-05-09 17:52:31.888002+00 f t 38500.00 1 38500.00 124 82 \N 996 +567 2025-05-09 17:52:31.895007+00 2025-05-09 17:52:31.89502+00 f t 30500.00 1 30500.00 124 129 \N 996 +943 2025-05-12 03:03:32.77007+00 2025-05-12 03:03:32.770083+00 f t 14000.00 1 14000.00 153 92 \N 1028 +944 2025-05-12 03:03:32.780077+00 2025-05-12 03:03:32.78009+00 f t 38500.00 1 38500.00 153 82 \N 1028 +824 2025-05-11 20:53:27.032031+00 2025-05-11 20:53:27.032043+00 f t 46000.00 1 46000.00 150 84 \N 1024 +522 2025-05-08 22:50:52.337355+00 2025-05-08 22:50:52.337392+00 f t 21000.00 1 21000.00 110 86 \N 977 +523 2025-05-08 22:50:52.346672+00 2025-05-08 22:50:52.346683+00 f t 21000.00 1 21000.00 110 88 \N 977 +767 2025-05-10 23:49:17.916921+00 2025-05-10 23:49:17.916935+00 f t 46000.00 1 46000.00 141 84 \N 1012 +835 2025-05-12 00:22:59.580108+00 2025-05-12 00:22:59.580121+00 f t 25000.00 1 25000.00 151 83 \N 1026 +773 2025-05-11 14:36:10.535545+00 2025-05-11 14:36:10.535554+00 f t 52000.00 1 52000.00 143 106 \N 1014 +427 2025-05-08 22:44:43.188073+00 2025-05-08 22:44:43.188082+00 f t 21000.00 1 21000.00 109 86 \N 974 +428 2025-05-08 22:44:43.188669+00 2025-05-08 22:44:43.188678+00 f t 21000.00 1 21000.00 109 86 \N 974 +429 2025-05-08 22:44:43.194802+00 2025-05-08 22:44:43.194811+00 f t 21000.00 1 21000.00 109 88 \N 974 +430 2025-05-08 22:44:43.195138+00 2025-05-08 22:44:43.195148+00 f t 21000.00 1 21000.00 109 88 \N 974 +788 2025-05-11 15:08:34.069636+00 2025-05-11 15:08:34.069644+00 f t 46000.00 1 46000.00 144 84 \N 1015 +1122 2025-05-12 23:22:32.586419+00 2025-05-12 23:22:32.586429+00 f t 25000.00 1 25000.00 187 83 \N 1062 +12853 2025-06-12 13:09:24.787838+00 2025-06-12 13:09:24.787848+00 f t 0.00 1 0.00 1730 101 \N 2314 +962 2025-05-12 12:30:38.943048+00 2025-05-12 12:30:38.943061+00 f t 46000.00 1 46000.00 157 84 \N 1032 +1124 2025-05-12 23:47:09.571445+00 2025-05-12 23:47:09.571457+00 f t 75000.00 1 75000.00 188 99 \N 1063 +1224 2025-05-13 14:11:31.042831+00 2025-05-13 14:11:31.042843+00 f t 95000.00 1 95000.00 207 103 \N 1079 +1126 2025-05-12 23:47:50.634359+00 2025-05-12 23:47:50.634371+00 f t 75000.00 1 75000.00 189 99 \N 1064 +1225 2025-05-13 14:11:31.050567+00 2025-05-13 14:11:31.050579+00 f t 57000.00 1 57000.00 207 106 \N 1079 +1802 2025-05-13 18:50:56.191837+00 2025-05-13 18:50:56.191847+00 f t 46000.00 1 46000.00 203 84 \N 1075 +968 2025-05-12 14:56:23.455141+00 2025-05-12 14:56:23.455152+00 f t 46000.00 1 46000.00 158 84 \N 1033 +969 2025-05-12 14:56:23.460361+00 2025-05-12 14:56:23.460372+00 f t 52000.00 1 52000.00 158 106 \N 1033 +1803 2025-05-13 19:06:07.153296+00 2025-05-13 19:06:07.15331+00 f t 46000.00 1 46000.00 215 84 \N 1088 +2110 2025-05-14 19:53:13.448131+00 2025-05-14 19:53:13.448144+00 f t 46000.00 1 46000.00 270 84 \N 1134 +2111 2025-05-14 19:53:13.456877+00 2025-05-14 19:53:13.456891+00 f t 57000.00 1 57000.00 270 106 \N 1134 +1133 2025-05-12 23:59:29.450263+00 2025-05-12 23:59:29.450277+00 f t 38500.00 1 38500.00 190 82 \N 1065 +975 2025-05-12 16:14:14.561373+00 2025-05-12 16:14:14.561382+00 f t 95000.00 1 95000.00 166 103 \N 1040 +1134 2025-05-12 23:59:29.456656+00 2025-05-12 23:59:29.456669+00 f t 21000.00 1 21000.00 190 163 \N 1065 +1136 2025-05-13 04:45:44.733835+00 2025-05-13 04:45:44.733845+00 f t 38500.00 1 38500.00 193 82 \N 1066 +1813 2025-05-13 19:19:41.219387+00 2025-05-13 19:19:41.219399+00 f t 38500.00 1 38500.00 221 82 \N 1093 +1146 2025-05-13 11:28:27.054244+00 2025-05-13 11:28:27.054257+00 f t 25000.00 1 25000.00 197 83 \N 1069 +945 2025-05-12 03:03:32.788148+00 2025-05-12 03:03:32.788157+00 f t 14000.00 1 14000.00 153 89 \N 1028 +955 2025-05-12 03:35:53.70896+00 2025-05-12 03:35:53.708974+00 f t 38500.00 1 38500.00 155 82 \N 1030 +956 2025-05-12 03:35:53.718507+00 2025-05-12 03:35:53.71852+00 f t 7500.00 1 7500.00 155 85 \N 1030 +1159 2025-05-13 12:11:06.975266+00 2025-05-13 12:11:06.975275+00 f t 38500.00 1 38500.00 198 82 \N 1070 +1002 2025-05-12 16:34:15.748162+00 2025-05-12 16:34:15.748172+00 f t 25000.00 1 25000.00 167 83 \N 1041 +1160 2025-05-13 12:11:06.982178+00 2025-05-13 12:11:06.982187+00 f t 7500.00 1 7500.00 198 85 \N 1070 +1004 2025-05-12 17:07:47.520313+00 2025-05-12 17:07:47.520328+00 f t 85000.00 1 85000.00 168 108 \N 1043 +1006 2025-05-12 18:39:26.880121+00 2025-05-12 18:39:26.880135+00 f t 46000.00 1 46000.00 170 84 \N 1048 +1164 2025-05-13 12:28:08.581725+00 2025-05-13 12:28:08.581736+00 f t 38500.00 1 38500.00 200 82 \N 1071 +1011 2025-05-12 19:19:02.620076+00 2025-05-12 19:19:02.620085+00 f t 65000.00 1 65000.00 172 99 \N 1050 +1166 2025-05-13 12:34:31.767846+00 2025-05-13 12:34:31.767855+00 f t 38500.00 1 38500.00 202 82 \N 1073 +1091 2025-05-12 20:06:13.623434+00 2025-05-12 20:06:13.623447+00 f t 38500.00 1 38500.00 178 82 \N 1057 +1092 2025-05-12 20:06:13.628925+00 2025-05-12 20:06:13.628934+00 f t 7500.00 1 7500.00 178 85 \N 1057 +1093 2025-05-12 20:06:13.633632+00 2025-05-12 20:06:13.633641+00 f t 21000.00 1 21000.00 178 88 \N 1057 +1017 2025-05-12 19:21:10.759718+00 2025-05-12 19:21:10.75973+00 f t 38500.00 1 38500.00 176 82 \N 1054 +1094 2025-05-12 20:06:13.641175+00 2025-05-12 20:06:13.641185+00 f t 21000.00 1 21000.00 178 163 \N 1057 +1095 2025-05-12 20:06:13.647046+00 2025-05-12 20:06:13.647054+00 f t 38500.00 1 38500.00 178 82 \N 1058 +1020 2025-05-12 19:22:50.107548+00 2025-05-12 19:22:50.107559+00 f t 46000.00 1 46000.00 177 84 \N 1055 +1096 2025-05-12 20:06:13.651774+00 2025-05-12 20:06:13.651782+00 f t 7500.00 1 7500.00 178 85 \N 1058 +1097 2025-05-12 20:06:13.657081+00 2025-05-12 20:06:13.65709+00 f t 21000.00 1 21000.00 178 88 \N 1058 +1098 2025-05-12 20:06:13.66166+00 2025-05-12 20:06:13.661669+00 f t 21000.00 1 21000.00 178 163 \N 1058 +1259 2025-05-13 14:37:02.456825+00 2025-05-13 14:37:02.456839+00 f t 38500.00 1 38500.00 208 82 \N 1080 +1101 2025-05-12 20:32:25.842406+00 2025-05-12 20:32:25.842419+00 f t 38500.00 1 38500.00 179 82 \N 1059 +1102 2025-05-12 20:32:25.848189+00 2025-05-12 20:32:25.848198+00 f t 82500.00 1 82500.00 179 144 \N 1059 +1260 2025-05-13 14:37:02.464726+00 2025-05-13 14:37:02.464737+00 f t 12000.00 1 12000.00 208 139 \N 1080 +1834 2025-05-13 19:29:54.473281+00 2025-05-13 19:29:54.473296+00 f t 38500.00 1 38500.00 222 82 \N 1096 +1262 2025-05-13 15:04:56.048054+00 2025-05-13 15:04:56.048064+00 f t 38500.00 1 38500.00 211 82 \N 1082 +1835 2025-05-13 19:29:54.481764+00 2025-05-13 19:29:54.481785+00 f t 21000.00 1 21000.00 222 86 \N 1096 +1839 2025-05-13 19:37:30.433387+00 2025-05-13 19:37:30.433399+00 f t 46000.00 1 46000.00 223 84 \N 1097 +1179 2025-05-13 13:14:12.120997+00 2025-05-13 13:14:12.121011+00 f t 38500.00 1 38500.00 205 82 \N 1078 +1180 2025-05-13 13:14:12.129033+00 2025-05-13 13:14:12.129046+00 f t 68750.00 1 68750.00 205 142 \N 1078 +1116 2025-05-12 20:48:53.607915+00 2025-05-12 20:48:53.607924+00 f t 38500.00 1 38500.00 181 82 \N 1061 +1683 2025-05-13 15:52:24.031746+00 2025-05-13 15:52:24.031759+00 f t 38500.00 1 38500.00 212 82 \N 1085 +1684 2025-05-13 15:52:24.038771+00 2025-05-13 15:52:24.038785+00 f t 7500.00 1 7500.00 212 85 \N 1085 +1685 2025-05-13 15:52:24.05012+00 2025-05-13 15:52:24.050133+00 f t 21000.00 1 21000.00 212 86 \N 1085 +1686 2025-05-13 15:52:24.057696+00 2025-05-13 15:52:24.057709+00 f t 21000.00 1 21000.00 212 87 \N 1085 +1687 2025-05-13 15:52:24.064711+00 2025-05-13 15:52:24.064725+00 f t 38500.00 1 38500.00 212 82 \N 1086 +1688 2025-05-13 15:52:24.071738+00 2025-05-13 15:52:24.071777+00 f t 7500.00 1 7500.00 212 85 \N 1086 +1689 2025-05-13 15:52:24.078209+00 2025-05-13 15:52:24.078222+00 f t 21000.00 1 21000.00 212 86 \N 1086 +1861 2025-05-13 22:43:28.226005+00 2025-05-13 22:43:28.226016+00 f t 38500.00 1 38500.00 226 82 \N 1098 +1862 2025-05-13 22:43:28.23213+00 2025-05-13 22:43:28.23214+00 f t 7500.00 1 7500.00 226 85 \N 1098 +1863 2025-05-13 22:43:28.237773+00 2025-05-13 22:43:28.237782+00 f t 21000.00 1 21000.00 226 88 \N 1098 +1871 2025-05-14 00:11:19.540896+00 2025-05-14 00:11:19.540905+00 f t 46000.00 1 46000.00 227 84 \N 1099 +1709 2025-05-13 16:54:22.915111+00 2025-05-13 16:54:22.915125+00 f t 38500.00 1 38500.00 214 82 \N 1087 +1710 2025-05-13 16:54:22.92267+00 2025-05-13 16:54:22.922684+00 f t 12000.00 1 12000.00 214 139 \N 1087 +1786 2025-05-13 17:31:50.386557+00 2025-05-13 17:31:50.386567+00 f t 38500.00 1 38500.00 216 82 \N 1089 +1787 2025-05-13 17:31:50.395241+00 2025-05-13 17:31:50.395253+00 f t 25500.00 1 25500.00 216 124 \N 1089 +1788 2025-05-13 17:31:50.402131+00 2025-05-13 17:31:50.402141+00 f t 7500.00 1 7500.00 216 85 \N 1089 +1789 2025-05-13 17:31:50.408271+00 2025-05-13 17:31:50.408282+00 f t 38500.00 1 38500.00 216 82 \N 1090 +1790 2025-05-13 17:31:50.414464+00 2025-05-13 17:31:50.414478+00 f t 25500.00 1 25500.00 216 124 \N 1090 +1791 2025-05-13 17:31:50.420404+00 2025-05-13 17:31:50.420414+00 f t 7500.00 1 7500.00 216 85 \N 1090 +1793 2025-05-13 18:23:06.605381+00 2025-05-13 18:23:06.605391+00 f t 46000.00 1 46000.00 218 84 \N 1091 +1879 2025-05-14 01:49:42.160551+00 2025-05-14 01:49:42.160563+00 f t 38500.00 1 38500.00 228 82 \N 1100 +1881 2025-05-14 02:17:33.958724+00 2025-05-14 02:17:33.958739+00 f t 38500.00 1 38500.00 229 82 \N 1101 +2238 2025-05-14 23:42:09.760665+00 2025-05-14 23:42:09.760678+00 f t 38500.00 1 38500.00 285 82 \N 1145 +2239 2025-05-14 23:42:09.766588+00 2025-05-14 23:42:09.766597+00 f t 7500.00 1 7500.00 285 85 \N 1145 +2240 2025-05-14 23:42:09.773321+00 2025-05-14 23:42:09.773337+00 f t 21000.00 1 21000.00 285 88 \N 1145 +2242 2025-05-15 00:19:16.905062+00 2025-05-15 00:19:16.905075+00 f t 38500.00 1 38500.00 287 82 \N 1146 +2493 2025-05-16 09:35:35.524233+00 2025-05-16 09:35:35.524248+00 f t 38500.00 1 38500.00 330 82 \N 1183 +2118 2025-05-14 19:59:54.439276+00 2025-05-14 19:59:54.439286+00 f t 38500.00 1 38500.00 271 82 \N 1135 +2119 2025-05-14 19:59:54.446081+00 2025-05-14 19:59:54.446095+00 f t 7500.00 1 7500.00 271 85 \N 1135 +2494 2025-05-16 09:35:35.533518+00 2025-05-16 09:35:35.533531+00 f t 21000.00 1 21000.00 330 163 \N 1183 +3213 2025-05-18 05:27:58.555599+00 2025-05-18 05:27:58.555612+00 f t 46000.00 1 46000.00 423 84 \N 1252 +2127 2025-05-14 20:35:01.240554+00 2025-05-14 20:35:01.240568+00 f t 95000.00 1 95000.00 273 103 \N 1136 +2255 2025-05-15 02:18:07.573908+00 2025-05-15 02:18:07.573916+00 f t 38500.00 1 38500.00 288 82 \N 1147 +2256 2025-05-15 02:18:07.581075+00 2025-05-15 02:18:07.581085+00 f t 7500.00 1 7500.00 288 85 \N 1147 +2033 2025-05-14 16:25:33.817039+00 2025-05-14 16:25:33.817048+00 f t 38500.00 1 38500.00 245 82 \N 1116 +2034 2025-05-14 16:25:33.822812+00 2025-05-14 16:25:33.822821+00 f t 7500.00 1 7500.00 245 85 \N 1116 +2035 2025-05-14 16:25:33.82765+00 2025-05-14 16:25:33.827659+00 f t 21000.00 1 21000.00 245 163 \N 1116 +2257 2025-05-15 02:18:07.586033+00 2025-05-15 02:18:07.586045+00 f t 21000.00 1 21000.00 288 163 \N 1147 +2136 2025-05-14 20:38:24.154934+00 2025-05-14 20:38:24.154954+00 f t 38500.00 1 38500.00 274 82 \N 1137 +2137 2025-05-14 20:38:24.166363+00 2025-05-14 20:38:24.166377+00 f t 7000.00 1 7000.00 274 93 \N 1137 +2138 2025-05-14 20:38:24.177731+00 2025-05-14 20:38:24.177744+00 f t 38000.00 1 38000.00 274 110 \N 1137 +2139 2025-05-14 20:38:24.185233+00 2025-05-14 20:38:24.185248+00 f t 12000.00 1 12000.00 274 146 \N 1137 +2259 2025-05-15 10:58:37.906623+00 2025-05-15 10:58:37.906637+00 f t 46000.00 1 46000.00 292 84 \N 1148 +2263 2025-05-15 12:12:30.634274+00 2025-05-15 12:12:30.634287+00 f t 46000.00 1 46000.00 294 84 \N 1149 +2047 2025-05-14 16:45:27.943689+00 2025-05-14 16:45:27.9437+00 f t 95000.00 1 95000.00 247 103 \N 1117 +2264 2025-05-15 12:50:57.840607+00 2025-05-15 12:50:57.840616+00 f t 46000.00 1 46000.00 252 84 \N 1123 +1934 2025-05-14 02:49:41.589432+00 2025-05-14 02:49:41.589445+00 f t 95000.00 1 95000.00 230 103 \N 1102 +1935 2025-05-14 02:49:41.596459+00 2025-05-14 02:49:41.596472+00 f t 55000.00 1 55000.00 230 100 \N 1102 +1936 2025-05-14 02:49:41.602857+00 2025-05-14 02:49:41.602869+00 f t 38500.00 1 38500.00 230 82 \N 1102 +1937 2025-05-14 02:49:41.609971+00 2025-05-14 02:49:41.609985+00 f t 7000.00 1 7000.00 230 93 \N 1102 +1938 2025-05-14 02:49:41.617548+00 2025-05-14 02:49:41.617559+00 f t 38000.00 1 38000.00 230 110 \N 1102 +1939 2025-05-14 02:49:41.622475+00 2025-05-14 02:49:41.622484+00 f t 12000.00 1 12000.00 230 146 \N 1102 +2153 2025-05-14 22:12:15.788605+00 2025-05-14 22:12:15.78862+00 f t 46000.00 1 46000.00 279 84 \N 1139 +2057 2025-05-14 16:50:18.716285+00 2025-05-14 16:50:18.716301+00 f t 95000.00 1 95000.00 248 103 \N 1119 +1948 2025-05-14 03:55:56.779128+00 2025-05-14 03:55:56.779142+00 f t 38500.00 1 38500.00 232 82 \N 1104 +1949 2025-05-14 03:55:56.787782+00 2025-05-14 03:55:56.787798+00 f t 21000.00 1 21000.00 232 86 \N 1104 +2273 2025-05-15 14:21:30.634397+00 2025-05-15 14:21:30.634407+00 f t 25000.00 1 25000.00 298 83 \N 1151 +2060 2025-05-14 16:55:08.5173+00 2025-05-14 16:55:08.517316+00 f t 85000.00 1 85000.00 249 108 \N 1121 +1956 2025-05-14 11:39:44.798768+00 2025-05-14 11:39:44.798777+00 f t 38500.00 1 38500.00 234 82 \N 1106 +1957 2025-05-14 11:39:44.806143+00 2025-05-14 11:39:44.806156+00 f t 21000.00 1 21000.00 234 88 \N 1106 +2278 2025-05-15 14:40:26.118741+00 2025-05-15 14:40:26.120003+00 f t 38500.00 1 38500.00 300 82 \N 1153 +2279 2025-05-15 14:40:26.136439+00 2025-05-15 14:40:26.136451+00 f t 21000.00 1 21000.00 300 88 \N 1153 +2073 2025-05-14 17:01:01.831722+00 2025-05-14 17:01:01.831737+00 f t 38500.00 1 38500.00 250 82 \N 1122 +1967 2025-05-14 12:34:22.175965+00 2025-05-14 12:34:22.17598+00 f t 38500.00 1 38500.00 235 82 \N 1107 +1968 2025-05-14 12:34:22.183554+00 2025-05-14 12:34:22.18357+00 f t 7500.00 1 7500.00 235 85 \N 1107 +2074 2025-05-14 17:01:01.844703+00 2025-05-14 17:01:01.844717+00 f t 7500.00 1 7500.00 250 85 \N 1122 +2288 2025-05-15 14:53:14.802213+00 2025-05-15 14:53:14.802226+00 f t 38500.00 1 38500.00 301 82 \N 1154 +1973 2025-05-14 12:34:46.680594+00 2025-05-14 12:34:46.680609+00 f t 46000.00 1 46000.00 236 84 \N 1108 +1974 2025-05-14 13:34:46.819412+00 2025-05-14 13:34:46.819423+00 f t 46000.00 1 46000.00 231 84 \N 1103 +2290 2025-05-15 15:52:51.030696+00 2025-05-15 15:52:51.030711+00 f t 25000.00 1 25000.00 303 83 \N 1159 +1977 2025-05-14 14:24:32.540877+00 2025-05-14 14:24:32.540888+00 f t 38500.00 1 38500.00 239 82 \N 1109 +2174 2025-05-14 22:19:12.34453+00 2025-05-14 22:19:12.344541+00 f t 38500.00 1 38500.00 280 82 \N 1140 +1980 2025-05-14 15:56:39.698929+00 2025-05-14 15:56:39.698942+00 f t 38500.00 1 38500.00 244 82 \N 1114 +1981 2025-05-14 15:56:39.70644+00 2025-05-14 15:56:39.706453+00 f t 21000.00 1 21000.00 244 163 \N 1114 +2082 2025-05-14 17:24:54.701177+00 2025-05-14 17:24:54.701187+00 f t 38500.00 1 38500.00 253 82 \N 1124 +2175 2025-05-14 22:19:12.351275+00 2025-05-14 22:19:12.351287+00 f t 7000.00 1 7000.00 280 93 \N 1140 +2176 2025-05-14 22:19:12.35673+00 2025-05-14 22:19:12.356742+00 f t 20000.00 1 20000.00 280 109 \N 1140 +2177 2025-05-14 22:19:12.362236+00 2025-05-14 22:19:12.362248+00 f t 12000.00 1 12000.00 280 146 \N 1140 +2293 2025-05-15 16:42:13.403609+00 2025-05-15 16:42:13.403621+00 f t 46000.00 1 46000.00 308 84 \N 1161 +2088 2025-05-14 17:25:31.830239+00 2025-05-14 17:25:31.830252+00 f t 95000.00 1 95000.00 254 103 \N 1125 +2180 2025-05-14 22:25:58.990009+00 2025-05-14 22:25:58.990021+00 f t 38500.00 1 38500.00 281 82 \N 1141 +2181 2025-05-14 22:25:58.996511+00 2025-05-14 22:25:58.996523+00 f t 7500.00 1 7500.00 281 85 \N 1141 +2095 2025-05-14 17:42:20.22948+00 2025-05-14 17:42:20.22949+00 f t 38500.00 1 38500.00 256 82 \N 1126 +2096 2025-05-14 17:42:20.236685+00 2025-05-14 17:42:20.236751+00 f t 7500.00 1 7500.00 256 85 \N 1126 +2098 2025-05-14 17:49:54.482093+00 2025-05-14 17:49:54.482107+00 f t 46000.00 1 46000.00 257 84 \N 1127 +2298 2025-05-15 17:39:32.722624+00 2025-05-15 17:39:32.722639+00 f t 46000.00 1 46000.00 310 84 \N 1163 +2100 2025-05-14 18:21:48.961175+00 2025-05-14 18:21:48.961189+00 f t 46000.00 1 46000.00 260 84 \N 1130 +2188 2025-05-14 22:48:05.34382+00 2025-05-14 22:48:05.343831+00 f t 75000.00 1 75000.00 282 90 \N 1142 +2189 2025-05-14 22:48:05.35105+00 2025-05-14 22:48:05.35106+00 f t 95000.00 1 95000.00 282 103 \N 1142 +2190 2025-05-14 22:48:05.357115+00 2025-05-14 22:48:05.357128+00 f t 38500.00 1 38500.00 282 82 \N 1142 +2300 2025-05-15 18:23:29.099304+00 2025-05-15 18:23:29.099317+00 f t 38500.00 1 38500.00 311 82 \N 1165 +2103 2025-05-14 18:38:11.414639+00 2025-05-14 18:38:11.414654+00 f t 38500.00 1 38500.00 266 82 \N 1132 +2104 2025-05-14 18:38:11.421942+00 2025-05-14 18:38:11.421952+00 f t 7500.00 1 7500.00 266 85 \N 1132 +2192 2025-05-14 23:14:06.260473+00 2025-05-14 23:14:06.260487+00 f t 46000.00 1 46000.00 283 84 \N 1143 +2194 2025-05-14 23:16:46.5915+00 2025-05-14 23:16:46.591509+00 f t 46000.00 1 46000.00 284 84 \N 1144 +3333 2025-05-18 16:20:10.839766+00 2025-05-18 16:20:10.839777+00 f t 38500.00 1 38500.00 444 82 \N 1267 +2310 2025-05-15 19:54:53.515414+00 2025-05-15 19:54:53.515426+00 f t 38500.00 1 38500.00 313 82 \N 1168 +2311 2025-05-15 19:54:53.522906+00 2025-05-15 19:54:53.522915+00 f t 7500.00 1 7500.00 313 85 \N 1168 +2312 2025-05-15 19:54:53.528544+00 2025-05-15 19:54:53.528555+00 f t 21000.00 1 21000.00 313 163 \N 1168 +3211 2025-05-18 05:25:39.007002+00 2025-05-18 05:25:39.007015+00 f t 46000.00 1 46000.00 422 84 \N 1251 +2505 2025-05-16 11:29:24.939398+00 2025-05-16 11:29:24.939411+00 f t 38500.00 1 38500.00 333 82 \N 1186 +2506 2025-05-16 11:29:24.946949+00 2025-05-16 11:29:24.946961+00 f t 21000.00 1 21000.00 333 86 \N 1186 +2509 2025-05-16 13:09:09.960484+00 2025-05-16 13:09:09.960494+00 f t 38500.00 1 38500.00 337 82 \N 1191 +2510 2025-05-16 13:09:09.966902+00 2025-05-16 13:09:09.966913+00 f t 7500.00 1 7500.00 337 85 \N 1191 +2325 2025-05-15 20:18:31.666835+00 2025-05-15 20:18:31.666847+00 f t 38500.00 1 38500.00 315 82 \N 1169 +2326 2025-05-15 20:18:31.673491+00 2025-05-15 20:18:31.673503+00 f t 21000.00 1 21000.00 315 86 \N 1169 +2327 2025-05-15 20:18:31.679646+00 2025-05-15 20:18:31.679658+00 f t 21000.00 1 21000.00 315 163 \N 1169 +2513 2025-05-16 13:11:59.147479+00 2025-05-16 13:11:59.147491+00 f t 38500.00 1 38500.00 338 82 \N 1192 +2514 2025-05-16 13:11:59.153778+00 2025-05-16 13:11:59.153787+00 f t 7500.00 1 7500.00 338 85 \N 1192 +2397 2025-05-15 20:27:25.367326+00 2025-05-15 20:27:25.367336+00 f t 55000.00 1 55000.00 316 100 \N 1118 +2398 2025-05-15 20:27:25.37339+00 2025-05-15 20:27:25.373401+00 f t 38500.00 1 38500.00 316 82 \N 1118 +2399 2025-05-15 20:27:25.378853+00 2025-05-15 20:27:25.378862+00 f t 7000.00 1 7000.00 316 93 \N 1118 +2400 2025-05-15 20:27:25.383704+00 2025-05-15 20:27:25.383714+00 f t 38000.00 1 38000.00 316 110 \N 1118 +2401 2025-05-15 20:27:25.388975+00 2025-05-15 20:27:25.388985+00 f t 12000.00 1 12000.00 316 146 \N 1118 +2402 2025-05-15 20:27:25.394356+00 2025-05-15 20:27:25.394368+00 f t 21000.00 1 21000.00 316 163 \N 1118 +2683 2025-05-16 20:29:23.841153+00 2025-05-16 20:29:23.841167+00 f t 38500.00 1 38500.00 357 82 \N 1204 +2684 2025-05-16 20:29:23.847301+00 2025-05-16 20:29:23.847311+00 f t 7500.00 1 7500.00 357 85 \N 1204 +2685 2025-05-16 20:29:23.853274+00 2025-05-16 20:29:23.853286+00 f t 21000.00 1 21000.00 357 86 \N 1204 +2686 2025-05-16 20:29:23.858931+00 2025-05-16 20:29:23.858941+00 f t 38500.00 1 38500.00 357 82 \N 1205 +2687 2025-05-16 20:29:23.865246+00 2025-05-16 20:29:23.865258+00 f t 7500.00 1 7500.00 357 85 \N 1205 +2688 2025-05-16 20:29:23.870726+00 2025-05-16 20:29:23.870736+00 f t 21000.00 1 21000.00 357 163 \N 1205 +2689 2025-05-16 20:29:23.875927+00 2025-05-16 20:29:23.875935+00 f t 38500.00 1 38500.00 357 82 \N 1206 +2690 2025-05-16 20:29:23.880743+00 2025-05-16 20:29:23.880753+00 f t 7500.00 1 7500.00 357 85 \N 1206 +2525 2025-05-16 16:15:53.850287+00 2025-05-16 16:15:53.850298+00 f t 46000.00 1 46000.00 345 84 \N 1195 +2691 2025-05-16 20:29:23.887039+00 2025-05-16 20:29:23.887053+00 f t 21000.00 1 21000.00 357 163 \N 1206 +2812 2025-05-17 12:01:21.864726+00 2025-05-17 12:01:21.864738+00 f t 38500.00 1 38500.00 380 82 \N 1220 +2419 2025-05-15 21:06:36.053457+00 2025-05-15 21:06:36.05347+00 f t 38500.00 1 38500.00 317 82 \N 1170 +2420 2025-05-15 21:06:36.061028+00 2025-05-15 21:06:36.061039+00 f t 7500.00 1 7500.00 317 85 \N 1170 +2421 2025-05-15 21:06:36.066205+00 2025-05-15 21:06:36.066215+00 f t 38500.00 1 38500.00 317 82 \N 1171 +2422 2025-05-15 21:06:36.071859+00 2025-05-15 21:06:36.071869+00 f t 7500.00 1 7500.00 317 85 \N 1171 +2813 2025-05-17 12:01:21.871532+00 2025-05-17 12:01:21.871585+00 f t 7000.00 1 7000.00 380 93 \N 1220 +2424 2025-05-15 21:16:04.621344+00 2025-05-15 21:16:04.621358+00 f t 25000.00 1 25000.00 318 83 \N 1173 +2814 2025-05-17 12:01:21.877286+00 2025-05-17 12:01:21.877299+00 f t 42000.00 1 42000.00 380 114 \N 1220 +2533 2025-05-16 17:22:39.842733+00 2025-05-16 17:22:39.842749+00 f t 46000.00 1 46000.00 348 84 \N 1197 +2815 2025-05-17 12:01:21.894355+00 2025-05-17 12:01:21.89437+00 f t 12000.00 1 12000.00 380 146 \N 1220 +2535 2025-05-16 17:35:03.25557+00 2025-05-16 17:35:03.255585+00 f t 85000.00 1 85000.00 349 108 \N 1198 +2816 2025-05-17 12:01:21.9013+00 2025-05-17 12:01:21.901312+00 f t 7500.00 1 7500.00 380 85 \N 1220 +2537 2025-05-16 17:46:29.726503+00 2025-05-16 17:46:29.726518+00 f t 46000.00 1 46000.00 350 84 \N 1199 +2817 2025-05-17 12:01:21.907172+00 2025-05-17 12:01:21.907181+00 f t 21000.00 1 21000.00 380 163 \N 1220 +2541 2025-05-16 18:00:27.606659+00 2025-05-16 18:00:27.606673+00 f t 57000.00 1 57000.00 352 106 \N 1201 +2546 2025-05-16 18:49:19.89097+00 2025-05-16 18:49:19.890983+00 f t 38500.00 1 38500.00 355 82 \N 1203 +2547 2025-05-16 18:49:19.89795+00 2025-05-16 18:49:19.897963+00 f t 7500.00 1 7500.00 355 85 \N 1203 +2708 2025-05-16 21:13:11.026839+00 2025-05-16 21:13:11.02685+00 f t 38500.00 1 38500.00 360 82 \N 1209 +2709 2025-05-16 21:13:11.033817+00 2025-05-16 21:13:11.033829+00 f t 21000.00 1 21000.00 360 88 \N 1209 +2712 2025-05-17 00:44:18.879178+00 2025-05-17 00:44:18.879187+00 f t 38500.00 1 38500.00 367 82 \N 1212 +2713 2025-05-17 00:44:18.884306+00 2025-05-17 00:44:18.884315+00 f t 21000.00 1 21000.00 367 163 \N 1212 +2716 2025-05-17 02:01:06.61168+00 2025-05-17 02:01:06.611695+00 f t 46000.00 1 46000.00 368 84 \N 1213 +2831 2025-05-17 13:37:31.515648+00 2025-05-17 13:37:31.515657+00 f t 46000.00 1 46000.00 381 84 \N 1221 +2833 2025-05-17 13:48:00.581769+00 2025-05-17 13:48:00.58178+00 f t 46000.00 1 46000.00 382 84 \N 1222 +2451 2025-05-15 23:02:33.848449+00 2025-05-15 23:02:33.84846+00 f t 38500.00 1 38500.00 322 82 \N 1176 +2452 2025-05-15 23:02:33.85748+00 2025-05-15 23:02:33.857495+00 f t 7500.00 1 7500.00 322 85 \N 1176 +2454 2025-05-15 23:50:56.155289+00 2025-05-15 23:50:56.1553+00 f t 38500.00 1 38500.00 323 82 \N 1177 +2724 2025-05-17 02:17:09.404249+00 2025-05-17 02:17:09.404336+00 f t 38500.00 1 38500.00 370 82 \N 1214 +2844 2025-05-17 13:55:42.28202+00 2025-05-17 13:55:42.282029+00 f t 46000.00 1 46000.00 383 84 \N 1223 +2465 2025-05-16 00:11:01.780798+00 2025-05-16 00:11:01.780812+00 f t 38500.00 1 38500.00 324 82 \N 1178 +2466 2025-05-16 00:11:01.788996+00 2025-05-16 00:11:01.789007+00 f t 21000.00 1 21000.00 324 86 \N 1178 +2468 2025-05-16 00:31:31.062009+00 2025-05-16 00:31:31.062018+00 f t 46000.00 1 46000.00 325 84 \N 1179 +2475 2025-05-16 02:38:20.825748+00 2025-05-16 02:38:20.82576+00 f t 25000.00 1 25000.00 327 83 \N 1181 +2853 2025-05-17 14:33:05.498971+00 2025-05-17 14:33:05.498984+00 f t 38500.00 1 38500.00 384 82 \N 1224 +2854 2025-05-17 14:33:05.505956+00 2025-05-17 14:33:05.505967+00 f t 21000.00 1 21000.00 384 86 \N 1224 +2857 2025-05-17 14:54:18.697047+00 2025-05-17 14:54:18.697057+00 f t 38500.00 1 38500.00 385 82 \N 1225 +2483 2025-05-16 08:11:00.815452+00 2025-05-16 08:11:00.815466+00 f t 46000.00 1 46000.00 329 84 \N 1182 +2751 2025-05-17 02:47:38.233687+00 2025-05-17 02:47:38.2337+00 f t 38500.00 1 38500.00 371 82 \N 1215 +2753 2025-05-17 03:56:14.847933+00 2025-05-17 03:56:14.847952+00 f t 38500.00 1 38500.00 374 82 \N 1216 +2770 2025-05-17 08:38:58.953363+00 2025-05-17 08:38:58.953376+00 f t 38500.00 1 38500.00 375 82 \N 1217 +2771 2025-05-17 08:38:58.961377+00 2025-05-17 08:38:58.961387+00 f t 68750.00 1 68750.00 375 142 \N 1217 +2776 2025-05-17 10:59:47.690751+00 2025-05-17 10:59:47.690762+00 f t 85000.00 1 85000.00 376 108 \N 1218 +2858 2025-05-17 14:54:18.703274+00 2025-05-17 14:54:18.703283+00 f t 7500.00 1 7500.00 385 85 \N 1225 +3058 2025-05-18 00:30:29.99809+00 2025-05-18 00:30:29.998109+00 f t 38500.00 1 38500.00 407 82 \N 1241 +2927 2025-05-17 22:50:15.130458+00 2025-05-17 22:50:15.130471+00 f t 38500.00 1 38500.00 401 82 \N 1233 +2928 2025-05-17 22:50:15.138462+00 2025-05-17 22:50:15.138472+00 f t 7000.00 1 7000.00 401 93 \N 1233 +2929 2025-05-17 22:50:15.145086+00 2025-05-17 22:50:15.145098+00 f t 38000.00 1 38000.00 401 110 \N 1233 +2930 2025-05-17 22:50:15.15272+00 2025-05-17 22:50:15.152734+00 f t 12000.00 1 12000.00 401 146 \N 1233 +3059 2025-05-18 00:30:30.030693+00 2025-05-18 00:30:30.030707+00 f t 7500.00 1 7500.00 407 85 \N 1241 +3060 2025-05-18 00:30:30.037737+00 2025-05-18 00:30:30.037746+00 f t 21000.00 1 21000.00 407 163 \N 1241 +3062 2025-05-18 00:33:45.985344+00 2025-05-18 00:33:45.985355+00 f t 38500.00 1 38500.00 408 82 \N 1242 +3653 2025-05-19 20:21:48.284241+00 2025-05-19 20:21:48.284254+00 f t 38500.00 1 38500.00 499 82 \N 1312 +2869 2025-05-17 15:48:31.319824+00 2025-05-17 15:48:31.319838+00 f t 38500.00 1 38500.00 386 82 \N 1226 +2870 2025-05-17 15:48:31.328788+00 2025-05-17 15:48:31.328801+00 f t 21000.00 1 21000.00 386 86 \N 1226 +3067 2025-05-18 00:35:16.29159+00 2025-05-18 00:35:16.291602+00 f t 38500.00 1 38500.00 409 82 \N 1243 +3068 2025-05-18 00:35:16.298322+00 2025-05-18 00:35:16.298334+00 f t 7000.00 1 7000.00 409 93 \N 1243 +3069 2025-05-18 00:35:16.304586+00 2025-05-18 00:35:16.304599+00 f t 31000.00 1 31000.00 409 111 \N 1243 +3070 2025-05-18 00:35:16.310632+00 2025-05-18 00:35:16.310644+00 f t 12000.00 1 12000.00 409 146 \N 1243 +3337 2025-05-18 17:07:38.3801+00 2025-05-18 17:07:38.380114+00 f t 46000.00 1 46000.00 445 84 \N 1268 +2877 2025-05-17 15:57:04.524315+00 2025-05-17 15:57:04.524327+00 f t 46000.00 1 46000.00 387 84 \N 1227 +3999 2025-05-21 13:42:09.583239+00 2025-05-21 13:42:09.58325+00 f t 38500.00 1 38500.00 567 82 \N 1365 +2880 2025-05-17 16:04:51.010099+00 2025-05-17 16:04:51.010114+00 f t 46000.00 1 46000.00 388 84 \N 1228 +3341 2025-05-18 17:15:55.871904+00 2025-05-18 17:15:55.871916+00 f t 38500.00 1 38500.00 446 82 \N 1269 +3345 2025-05-18 19:18:19.34193+00 2025-05-18 19:18:19.341943+00 f t 38500.00 1 38500.00 449 82 \N 1271 +3348 2025-05-18 20:17:50.22786+00 2025-05-18 20:17:50.22787+00 f t 46000.00 1 46000.00 452 84 \N 1274 +2891 2025-05-17 17:20:49.117936+00 2025-05-17 17:20:49.117946+00 f t 38500.00 1 38500.00 390 82 \N 1229 +2892 2025-05-17 17:20:49.124632+00 2025-05-17 17:20:49.124644+00 f t 68750.00 1 68750.00 390 142 \N 1229 +3086 2025-05-18 01:03:56.501331+00 2025-05-18 01:03:56.50134+00 f t 46000.00 1 46000.00 411 84 \N 1244 +3351 2025-05-18 20:18:15.897494+00 2025-05-18 20:18:15.897502+00 f t 38500.00 1 38500.00 451 82 \N 1273 +3352 2025-05-18 20:18:15.90278+00 2025-05-18 20:18:15.902789+00 f t 21000.00 1 21000.00 451 86 \N 1273 +3094 2025-05-18 01:16:51.116928+00 2025-05-18 01:16:51.116942+00 f t 46000.00 1 46000.00 412 84 \N 1245 +3232 2025-05-18 05:35:13.789519+00 2025-05-18 05:35:13.789531+00 f t 38500.00 1 38500.00 424 82 \N 1253 +3097 2025-05-18 01:31:54.791143+00 2025-05-18 01:31:54.791154+00 f t 46000.00 1 46000.00 413 84 \N 1246 +3233 2025-05-18 05:35:13.796917+00 2025-05-18 05:35:13.79693+00 f t 21000.00 1 21000.00 424 87 \N 1253 +3238 2025-05-18 11:16:00.318872+00 2025-05-18 11:16:00.318886+00 f t 57000.00 1 57000.00 426 106 \N 1254 +2912 2025-05-17 19:37:14.640557+00 2025-05-17 19:37:14.640568+00 f t 57000.00 1 57000.00 394 106 \N 1230 +3240 2025-05-18 11:36:37.184712+00 2025-05-18 11:36:37.184722+00 f t 46000.00 1 46000.00 427 84 \N 1255 +3249 2025-05-18 11:50:06.978995+00 2025-05-18 11:50:06.97901+00 f t 38500.00 1 38500.00 428 82 \N 1256 +3250 2025-05-18 11:50:06.991444+00 2025-05-18 11:50:06.991465+00 f t 7000.00 1 7000.00 428 93 \N 1256 +3251 2025-05-18 11:50:07.000316+00 2025-05-18 11:50:07.000331+00 f t 20000.00 1 20000.00 428 109 \N 1256 +3117 2025-05-18 01:48:43.044341+00 2025-05-18 01:48:43.044353+00 f t 38500.00 1 38500.00 415 82 \N 1247 +3118 2025-05-18 01:48:43.05001+00 2025-05-18 01:48:43.05002+00 f t 7500.00 1 7500.00 415 85 \N 1247 +3252 2025-05-18 11:50:07.013992+00 2025-05-18 11:50:07.014006+00 f t 12000.00 1 12000.00 428 146 \N 1256 +3123 2025-05-18 02:11:46.811383+00 2025-05-18 02:11:46.811394+00 f t 46000.00 1 46000.00 416 84 \N 1248 +2999 2025-05-17 23:32:17.318023+00 2025-05-17 23:32:17.318032+00 f t 38500.00 1 38500.00 402 82 \N 1236 +3000 2025-05-17 23:32:17.323714+00 2025-05-17 23:32:17.323724+00 f t 21000.00 1 21000.00 402 163 \N 1236 +3001 2025-05-17 23:32:17.328884+00 2025-05-17 23:32:17.328894+00 f t 38500.00 1 38500.00 402 82 \N 1237 +3002 2025-05-17 23:32:17.334401+00 2025-05-17 23:32:17.33446+00 f t 21000.00 1 21000.00 402 163 \N 1237 +3005 2025-05-17 23:54:12.171213+00 2025-05-17 23:54:12.171225+00 f t 38500.00 1 38500.00 404 82 \N 1238 +3006 2025-05-17 23:54:12.177583+00 2025-05-17 23:54:12.177593+00 f t 7500.00 1 7500.00 404 85 \N 1238 +3384 2025-05-18 21:19:17.274713+00 2025-05-18 21:19:17.274721+00 f t 46000.00 1 46000.00 455 84 \N 1276 +3386 2025-05-18 21:44:38.654936+00 2025-05-18 21:44:38.654947+00 f t 25000.00 1 25000.00 456 83 \N 1277 +3138 2025-05-18 03:19:34.983213+00 2025-05-18 03:19:34.983223+00 f t 38500.00 1 38500.00 417 82 \N 1249 +3139 2025-05-18 03:19:34.991384+00 2025-05-18 03:19:34.991395+00 f t 7500.00 1 7500.00 417 85 \N 1249 +3277 2025-05-18 12:09:59.495378+00 2025-05-18 12:09:59.495387+00 f t 38500.00 1 38500.00 429 82 \N 1257 +3278 2025-05-18 12:09:59.500668+00 2025-05-18 12:09:59.500679+00 f t 21000.00 1 21000.00 429 86 \N 1257 +3397 2025-05-18 23:33:17.432287+00 2025-05-18 23:33:17.432298+00 f t 38500.00 1 38500.00 458 82 \N 1279 +3398 2025-05-18 23:33:17.438608+00 2025-05-18 23:33:17.43862+00 f t 7500.00 1 7500.00 458 85 \N 1279 +3027 2025-05-18 00:28:34.602813+00 2025-05-18 00:28:34.602823+00 f t 46000.00 1 46000.00 406 84 \N 1240 +3401 2025-05-19 01:41:05.460901+00 2025-05-19 01:41:05.460914+00 f t 38500.00 1 38500.00 460 82 \N 1281 +3402 2025-05-19 01:41:05.468002+00 2025-05-19 01:41:05.468015+00 f t 21000.00 1 21000.00 460 86 \N 1281 +3291 2025-05-18 12:30:19.093335+00 2025-05-18 12:30:19.093349+00 f t 38500.00 1 38500.00 430 82 \N 1258 +3292 2025-05-18 12:30:19.101391+00 2025-05-18 12:30:19.101404+00 f t 21000.00 1 21000.00 430 163 \N 1258 +3294 2025-05-18 12:43:49.594+00 2025-05-18 12:43:49.594009+00 f t 38500.00 1 38500.00 431 82 \N 1259 +3410 2025-05-19 02:25:52.131659+00 2025-05-19 02:25:52.131668+00 f t 38500.00 1 38500.00 461 82 \N 1282 +3300 2025-05-18 13:11:53.130884+00 2025-05-18 13:11:53.130897+00 f t 25000.00 1 25000.00 432 83 \N 1260 +3304 2025-05-18 14:23:52.804091+00 2025-05-18 14:23:52.804101+00 f t 57000.00 1 57000.00 437 106 \N 1262 +3185 2025-05-18 04:56:17.46117+00 2025-05-18 04:56:17.46118+00 f t 38500.00 1 38500.00 421 82 \N 1250 +3186 2025-05-18 04:56:17.467375+00 2025-05-18 04:56:17.467385+00 f t 7500.00 1 7500.00 421 85 \N 1250 +3187 2025-05-18 04:56:17.472084+00 2025-05-18 04:56:17.472094+00 f t 21000.00 1 21000.00 421 88 \N 1250 +3188 2025-05-18 04:56:17.477702+00 2025-05-18 04:56:17.477713+00 f t 21000.00 1 21000.00 421 163 \N 1250 +3321 2025-05-18 14:36:10.96756+00 2025-05-18 14:36:10.967573+00 f t 38500.00 1 38500.00 439 82 \N 1264 +3322 2025-05-18 14:36:10.974485+00 2025-05-18 14:36:10.974494+00 f t 82500.00 1 82500.00 439 144 \N 1264 +3324 2025-05-18 15:10:57.455384+00 2025-05-18 15:10:57.455398+00 f t 46000.00 1 46000.00 441 84 \N 1265 +3411 2025-05-19 02:25:52.137622+00 2025-05-19 02:25:52.137632+00 f t 38500.00 1 38500.00 461 82 \N 1283 +3412 2025-05-19 02:25:52.143302+00 2025-05-19 02:25:52.143314+00 f t 68750.00 1 68750.00 461 142 \N 1283 +3822 2025-05-20 21:08:25.885589+00 2025-05-20 21:08:25.885598+00 f t 38500.00 1 38500.00 540 82 \N 1347 +3991 2025-05-21 11:40:51.476434+00 2025-05-21 11:40:51.476447+00 f t 38500.00 1 38500.00 561 82 \N 1362 +3495 2025-05-19 14:58:27.037745+00 2025-05-19 14:58:27.037758+00 f t 38500.00 1 38500.00 474 82 \N 1293 +3496 2025-05-19 14:58:27.044856+00 2025-05-19 14:58:27.044867+00 f t 7500.00 1 7500.00 474 85 \N 1293 +3825 2025-05-20 21:09:07.8278+00 2025-05-20 21:09:07.827838+00 f t 38500.00 1 38500.00 541 82 \N 1348 +3826 2025-05-20 21:09:07.834671+00 2025-05-20 21:09:07.834683+00 f t 7500.00 1 7500.00 541 85 \N 1348 +3420 2025-05-19 03:03:37.451335+00 2025-05-19 03:03:37.451346+00 f t 46000.00 1 46000.00 462 84 \N 1284 +3997 2025-05-21 13:06:33.768121+00 2025-05-21 13:06:33.76813+00 f t 46000.00 1 46000.00 565 84 \N 1364 +3660 2025-05-19 22:53:35.437928+00 2025-05-19 22:53:35.437938+00 f t 38500.00 1 38500.00 503 82 \N 1314 +3661 2025-05-19 22:53:35.443002+00 2025-05-19 22:53:35.44301+00 f t 21000.00 1 21000.00 503 163 \N 1314 +4018 2025-05-21 14:07:02.13874+00 2025-05-21 14:07:02.138754+00 f t 25000.00 1 25000.00 570 83 \N 1369 +3672 2025-05-20 00:16:05.446337+00 2025-05-20 00:16:05.446347+00 f t 38500.00 1 38500.00 504 82 \N 1315 +3673 2025-05-20 00:16:05.452792+00 2025-05-20 00:16:05.452801+00 f t 21000.00 1 21000.00 504 88 \N 1315 +4020 2025-05-21 15:15:37.436495+00 2025-05-21 15:15:37.436508+00 f t 38500.00 1 38500.00 577 82 \N 1371 +3440 2025-05-19 04:15:40.280136+00 2025-05-19 04:15:40.280148+00 f t 38500.00 1 38500.00 463 82 \N 1285 +3441 2025-05-19 04:15:40.285058+00 2025-05-19 04:15:40.28507+00 f t 7500.00 1 7500.00 463 85 \N 1285 +3442 2025-05-19 04:15:40.289609+00 2025-05-19 04:15:40.289617+00 f t 21000.00 1 21000.00 463 88 \N 1285 +3443 2025-05-19 04:15:40.293157+00 2025-05-19 04:15:40.293165+00 f t 21000.00 1 21000.00 463 86 \N 1285 +3680 2025-05-20 01:36:23.693323+00 2025-05-20 01:36:23.693333+00 f t 38500.00 1 38500.00 506 82 \N 1316 +3681 2025-05-20 01:36:23.698897+00 2025-05-20 01:36:23.698908+00 f t 7500.00 1 7500.00 506 85 \N 1316 +3449 2025-05-19 05:44:17.316872+00 2025-05-19 05:44:17.316882+00 f t 46000.00 1 46000.00 464 84 \N 1286 +3683 2025-05-20 02:24:24.685556+00 2025-05-20 02:24:24.685565+00 f t 38500.00 1 38500.00 507 82 \N 1317 +3534 2025-05-19 15:56:45.661731+00 2025-05-19 15:56:45.661744+00 f t 38500.00 1 38500.00 477 82 \N 1298 +3538 2025-05-19 15:57:04.113943+00 2025-05-19 15:57:04.113957+00 f t 38500.00 1 38500.00 476 82 \N 1297 +3459 2025-05-19 07:41:09.766342+00 2025-05-19 07:41:09.766351+00 f t 38500.00 1 38500.00 466 82 \N 1287 +3460 2025-05-19 07:41:09.771914+00 2025-05-19 07:41:09.771926+00 f t 7500.00 1 7500.00 466 85 \N 1287 +3461 2025-05-19 07:41:09.776162+00 2025-05-19 07:41:09.77617+00 f t 21000.00 1 21000.00 466 86 \N 1287 +3539 2025-05-19 15:57:04.119842+00 2025-05-19 15:57:04.119852+00 f t 7500.00 1 7500.00 476 85 \N 1297 +3540 2025-05-19 15:57:04.12504+00 2025-05-19 15:57:04.125053+00 f t 21000.00 1 21000.00 476 86 \N 1297 +3471 2025-05-19 09:09:35.617348+00 2025-05-19 09:09:35.61736+00 f t 38500.00 1 38500.00 467 82 \N 1288 +3472 2025-05-19 09:09:35.624581+00 2025-05-19 09:09:35.624593+00 f t 12000.00 1 12000.00 467 138 \N 1288 +3473 2025-05-19 09:09:35.629817+00 2025-05-19 09:09:35.629826+00 f t 25000.00 1 25000.00 467 83 \N 1288 +3475 2025-05-19 09:17:09.616364+00 2025-05-19 09:17:09.6164+00 f t 38500.00 1 38500.00 468 82 \N 1289 +3698 2025-05-20 03:21:13.584292+00 2025-05-20 03:21:13.584304+00 f t 38500.00 1 38500.00 509 82 \N 1320 +3477 2025-05-19 12:40:38.645288+00 2025-05-19 12:40:38.645301+00 f t 38500.00 1 38500.00 471 82 \N 1290 +3699 2025-05-20 03:21:16.552263+00 2025-05-20 03:21:16.552272+00 f t 46000.00 1 46000.00 510 84 \N 1319 +3480 2025-05-19 14:21:24.795239+00 2025-05-19 14:21:24.795252+00 f t 38500.00 1 38500.00 472 82 \N 1291 +3701 2025-05-20 11:46:48.157009+00 2025-05-20 11:46:48.157023+00 f t 38500.00 1 38500.00 512 82 \N 1321 +3703 2025-05-20 12:33:22.645228+00 2025-05-20 12:33:22.645236+00 f t 46000.00 1 46000.00 515 84 \N 1323 +3706 2025-05-20 13:11:31.466024+00 2025-05-20 13:11:31.466032+00 f t 46000.00 1 46000.00 518 84 \N 1324 +3488 2025-05-19 14:24:03.529193+00 2025-05-19 14:24:03.529206+00 f t 46000.00 1 46000.00 473 84 \N 1292 +3559 2025-05-19 16:13:04.036096+00 2025-05-19 16:13:04.036108+00 f t 46000.00 1 46000.00 478 84 \N 1299 +3708 2025-05-20 13:26:04.204465+00 2025-05-20 13:26:04.204477+00 f t 38500.00 1 38500.00 519 82 \N 1325 +3711 2025-05-20 13:31:55.273688+00 2025-05-20 13:31:55.273698+00 f t 38500.00 1 38500.00 520 82 \N 932 +3712 2025-05-20 13:31:55.279411+00 2025-05-20 13:31:55.27942+00 f t 21000.00 1 21000.00 520 86 \N 932 +3714 2025-05-20 13:53:11.565462+00 2025-05-20 13:53:11.565477+00 f t 38500.00 1 38500.00 521 82 \N 1326 +3570 2025-05-19 16:18:49.281788+00 2025-05-19 16:18:49.281801+00 f t 46000.00 1 46000.00 479 84 \N 778 +3577 2025-05-19 16:46:29.648913+00 2025-05-19 16:46:29.648927+00 f t 38500.00 1 38500.00 480 82 \N 1095 +3578 2025-05-19 16:46:29.655558+00 2025-05-19 16:46:29.655569+00 f t 21000.00 1 21000.00 480 163 \N 1095 +3583 2025-05-19 17:04:28.193645+00 2025-05-19 17:04:28.193656+00 f t 38500.00 1 38500.00 484 82 \N 1304 +3584 2025-05-19 17:04:28.199597+00 2025-05-19 17:04:28.199607+00 f t 7000.00 1 7000.00 484 93 \N 1304 +3585 2025-05-19 17:04:28.204828+00 2025-05-19 17:04:28.204837+00 f t 38000.00 1 38000.00 484 110 \N 1304 +3586 2025-05-19 17:04:28.210423+00 2025-05-19 17:04:28.210435+00 f t 12000.00 1 12000.00 484 146 \N 1304 +3588 2025-05-19 17:18:38.193138+00 2025-05-19 17:18:38.193148+00 f t 38500.00 1 38500.00 486 82 \N 1305 +3593 2025-05-19 18:37:42.92211+00 2025-05-19 18:37:42.922123+00 f t 38500.00 1 38500.00 490 82 \N 1306 +3594 2025-05-19 18:37:42.929277+00 2025-05-19 18:37:42.929286+00 f t 21000.00 1 21000.00 490 86 \N 1306 +3596 2025-05-19 18:44:34.547817+00 2025-05-19 18:44:34.54783+00 f t 95000.00 1 95000.00 491 103 \N 1307 +3747 2025-05-20 13:58:27.838413+00 2025-05-20 13:58:27.838421+00 f t 38500.00 1 38500.00 522 82 \N 1327 +3750 2025-05-20 14:28:30.78289+00 2025-05-20 14:28:30.782903+00 f t 38500.00 1 38500.00 523 82 \N 1330 +3751 2025-05-20 14:28:30.790592+00 2025-05-20 14:28:30.790604+00 f t 7500.00 1 7500.00 523 85 \N 1330 +3618 2025-05-19 20:16:16.831574+00 2025-05-19 20:16:16.831585+00 f t 38500.00 1 38500.00 496 82 \N 1308 +3619 2025-05-19 20:16:16.840008+00 2025-05-19 20:16:16.840022+00 f t 21000.00 1 21000.00 496 86 \N 1308 +3620 2025-05-19 20:16:16.847073+00 2025-05-19 20:16:16.847086+00 f t 38500.00 1 38500.00 496 82 \N 1309 +3622 2025-05-19 20:19:35.962222+00 2025-05-19 20:19:35.962235+00 f t 46000.00 1 46000.00 497 84 \N 1310 +3756 2025-05-20 15:15:23.667391+00 2025-05-20 15:15:23.667404+00 f t 38500.00 1 38500.00 526 82 \N 1334 +3625 2025-05-19 20:20:09.237286+00 2025-05-19 20:20:09.2373+00 f t 38500.00 1 38500.00 498 82 \N 1311 +3626 2025-05-19 20:20:09.250142+00 2025-05-19 20:20:09.250157+00 f t 21000.00 1 21000.00 498 86 \N 1311 +3772 2025-05-20 15:29:03.40689+00 2025-05-20 15:29:03.40694+00 f t 38500.00 1 38500.00 527 82 \N 1335 +3773 2025-05-20 15:29:03.412395+00 2025-05-20 15:29:03.412404+00 f t 7500.00 1 7500.00 527 85 \N 1335 +3780 2025-05-20 18:38:35.363915+00 2025-05-20 18:38:35.363926+00 f t 25000.00 1 25000.00 534 83 \N 335 +3995 2025-05-21 12:46:37.262008+00 2025-05-21 12:46:37.262017+00 f t 38500.00 1 38500.00 564 82 \N 1363 +6338 2025-05-26 07:26:24.265698+00 2025-05-26 07:26:24.265707+00 f t 38500.00 1 38500.00 810 82 \N 1567 +4345 2025-05-22 01:13:48.001683+00 2025-05-22 01:13:48.001693+00 f t 25000.00 1 25000.00 607 83 \N 1395 +4170 2025-05-21 20:23:40.817662+00 2025-05-21 20:23:40.817674+00 f t 38500.00 1 38500.00 593 82 \N 1383 +4171 2025-05-21 20:23:40.824566+00 2025-05-21 20:23:40.824576+00 f t 7000.00 1 7000.00 593 93 \N 1383 +4172 2025-05-21 20:23:40.829652+00 2025-05-21 20:23:40.829661+00 f t 38000.00 1 38000.00 593 110 \N 1383 +4173 2025-05-21 20:23:40.83568+00 2025-05-21 20:23:40.83569+00 f t 12000.00 1 12000.00 593 146 \N 1383 +3850 2025-05-21 00:04:37.075445+00 2025-05-21 00:04:37.075455+00 f t 38500.00 1 38500.00 544 82 \N 1349 +3851 2025-05-21 00:04:37.081949+00 2025-05-21 00:04:37.081959+00 f t 7500.00 1 7500.00 544 85 \N 1349 +3852 2025-05-21 00:04:37.087226+00 2025-05-21 00:04:37.087235+00 f t 38500.00 1 38500.00 544 82 \N 1350 +3853 2025-05-21 00:04:37.092923+00 2025-05-21 00:04:37.092932+00 f t 12000.00 1 12000.00 544 139 \N 1350 +3854 2025-05-21 00:04:37.098834+00 2025-05-21 00:04:37.098843+00 f t 7500.00 1 7500.00 544 85 \N 1350 +4175 2025-05-21 20:33:03.057246+00 2025-05-21 20:33:03.057258+00 f t 46000.00 1 46000.00 595 84 \N 1385 +3857 2025-05-21 00:47:00.998817+00 2025-05-21 00:47:00.998831+00 f t 38500.00 1 38500.00 545 82 \N 1351 +3858 2025-05-21 00:47:01.004433+00 2025-05-21 00:47:01.004446+00 f t 21000.00 1 21000.00 545 163 \N 1351 +4178 2025-05-21 20:43:30.057535+00 2025-05-21 20:43:30.05755+00 f t 38500.00 1 38500.00 596 82 \N 1387 +4179 2025-05-21 20:43:30.06793+00 2025-05-21 20:43:30.067942+00 f t 21000.00 1 21000.00 596 86 \N 1387 +3865 2025-05-21 00:49:03.540623+00 2025-05-21 00:49:03.540638+00 f t 38500.00 1 38500.00 547 82 \N 1353 +3866 2025-05-21 00:49:03.555996+00 2025-05-21 00:49:03.556013+00 f t 21000.00 1 21000.00 547 163 \N 1353 +4182 2025-05-21 20:46:23.99202+00 2025-05-21 20:46:23.992034+00 f t 38500.00 1 38500.00 597 82 \N 1388 +4183 2025-05-21 20:46:23.999569+00 2025-05-21 20:46:23.999581+00 f t 7500.00 1 7500.00 597 85 \N 1388 +4940 2025-05-22 20:51:37.622282+00 2025-05-22 20:51:37.622291+00 f t 38500.00 1 38500.00 654 82 \N 1440 +4941 2025-05-22 20:51:37.627295+00 2025-05-22 20:51:37.627304+00 f t 21000.00 1 21000.00 654 86 \N 1440 +4358 2025-05-22 01:21:04.006719+00 2025-05-22 01:21:04.006729+00 f t 38500.00 1 38500.00 608 82 \N 1396 +4359 2025-05-22 01:21:04.012921+00 2025-05-22 01:21:04.012935+00 f t 7000.00 1 7000.00 608 93 \N 1396 +4360 2025-05-22 01:21:04.018266+00 2025-05-22 01:21:04.018276+00 f t 31000.00 1 31000.00 608 111 \N 1396 +4361 2025-05-22 01:21:04.024372+00 2025-05-22 01:21:04.024416+00 f t 12000.00 1 12000.00 608 146 \N 1396 +4368 2025-05-22 01:23:56.286685+00 2025-05-22 01:23:56.286694+00 f t 95000.00 1 95000.00 612 103 \N 1397 +4369 2025-05-22 01:23:56.292182+00 2025-05-22 01:23:56.292192+00 f t 38500.00 1 38500.00 612 82 \N 1397 +4064 2025-05-21 18:12:54.290332+00 2025-05-21 18:12:54.290341+00 f t 38500.00 1 38500.00 586 82 \N 1376 +3907 2025-05-21 02:49:58.371301+00 2025-05-21 02:49:58.371314+00 f t 46000.00 1 46000.00 553 84 \N 1358 +4065 2025-05-21 18:12:54.296907+00 2025-05-21 18:12:54.296919+00 f t 21000.00 1 21000.00 586 163 \N 1376 +4067 2025-05-21 18:16:35.420322+00 2025-05-21 18:16:35.420332+00 f t 38500.00 1 38500.00 589 82 \N 1380 +4389 2025-05-22 01:32:43.420619+00 2025-05-22 01:32:43.420634+00 f t 38500.00 1 38500.00 615 82 \N 1400 +4821 2025-05-22 14:34:31.924994+00 2025-05-22 14:34:31.925003+00 f t 57000.00 1 57000.00 638 106 \N 1424 +3917 2025-05-21 02:56:05.467895+00 2025-05-21 02:56:05.467904+00 f t 46000.00 1 46000.00 554 84 \N 559 +4397 2025-05-22 01:51:50.434109+00 2025-05-22 01:51:50.434117+00 f t 38500.00 1 38500.00 616 82 \N 1401 +3921 2025-05-21 03:50:05.148714+00 2025-05-21 03:50:05.148729+00 f t 38500.00 1 38500.00 556 82 \N 1359 +4399 2025-05-22 02:15:18.075652+00 2025-05-22 02:15:18.075663+00 f t 46000.00 1 46000.00 618 84 \N 1402 +4831 2025-05-22 15:03:56.67985+00 2025-05-22 15:03:56.679858+00 f t 38500.00 1 38500.00 639 82 \N 1425 +4081 2025-05-21 18:51:29.844925+00 2025-05-21 18:51:29.844938+00 f t 38500.00 1 38500.00 590 82 \N 1381 +4082 2025-05-21 18:51:29.854833+00 2025-05-21 18:51:29.854843+00 f t 21000.00 1 21000.00 590 88 \N 1381 +4402 2025-05-22 02:30:45.530216+00 2025-05-22 02:30:45.530227+00 f t 46000.00 1 46000.00 619 84 \N 1403 +4085 2025-05-21 19:27:24.88914+00 2025-05-21 19:27:24.889149+00 f t 38500.00 1 38500.00 591 82 \N 1382 +4086 2025-05-21 19:27:24.897113+00 2025-05-21 19:27:24.897126+00 f t 7500.00 1 7500.00 591 85 \N 1382 +4620 2025-05-22 03:12:34.737488+00 2025-05-22 03:12:34.737497+00 f t 38500.00 1 38500.00 621 82 \N 1407 +4621 2025-05-22 03:12:34.743832+00 2025-05-22 03:12:34.743841+00 f t 7500.00 1 7500.00 621 85 \N 1407 +4622 2025-05-22 03:12:34.748988+00 2025-05-22 03:12:34.749+00 f t 38500.00 1 38500.00 621 82 \N 1408 +4623 2025-05-22 03:12:34.753718+00 2025-05-22 03:12:34.753726+00 f t 7500.00 1 7500.00 621 85 \N 1408 +4624 2025-05-22 03:12:34.757825+00 2025-05-22 03:12:34.757833+00 f t 38500.00 1 38500.00 621 82 \N 1409 +4625 2025-05-22 03:12:34.763131+00 2025-05-22 03:12:34.76314+00 f t 7500.00 1 7500.00 621 85 \N 1409 +4628 2025-05-22 04:46:46.613546+00 2025-05-22 04:46:46.613556+00 f t 38500.00 1 38500.00 622 82 \N 1410 +4629 2025-05-22 04:46:46.6195+00 2025-05-22 04:46:46.619508+00 f t 7500.00 1 7500.00 622 85 \N 1410 +4634 2025-05-22 11:27:15.836223+00 2025-05-22 11:27:15.836232+00 f t 38500.00 1 38500.00 623 82 \N 1411 +4637 2025-05-22 11:53:23.312633+00 2025-05-22 11:53:23.312645+00 f t 38500.00 1 38500.00 625 82 \N 1412 +4638 2025-05-22 11:53:23.317475+00 2025-05-22 11:53:23.317487+00 f t 21000.00 1 21000.00 625 86 \N 1412 +3989 2025-05-21 10:21:49.628487+00 2025-05-21 10:21:49.628498+00 f t 38500.00 1 38500.00 559 82 \N 1361 +4297 2025-05-21 23:18:27.82289+00 2025-05-21 23:18:27.8229+00 f t 38500.00 1 38500.00 600 82 \N 1390 +4298 2025-05-21 23:18:27.829021+00 2025-05-21 23:18:27.829029+00 f t 20500.00 1 20500.00 600 117 \N 1390 +4299 2025-05-21 23:18:27.83417+00 2025-05-21 23:18:27.834179+00 f t 7000.00 1 7000.00 600 93 \N 1390 +4300 2025-05-21 23:18:27.838955+00 2025-05-21 23:18:27.838967+00 f t 31000.00 1 31000.00 600 111 \N 1390 +4301 2025-05-21 23:18:27.843956+00 2025-05-21 23:18:27.843964+00 f t 12000.00 1 12000.00 600 146 \N 1390 +4307 2025-05-21 23:51:19.92636+00 2025-05-21 23:51:19.926371+00 f t 46000.00 1 46000.00 602 84 \N 1391 +4312 2025-05-22 00:19:10.915858+00 2025-05-22 00:19:10.915872+00 f t 38500.00 1 38500.00 604 82 \N 1392 +4313 2025-05-22 00:19:10.923091+00 2025-05-22 00:19:10.923102+00 f t 7000.00 1 7000.00 604 93 \N 1392 +4314 2025-05-22 00:19:10.929326+00 2025-05-22 00:19:10.929338+00 f t 38000.00 1 38000.00 604 110 \N 1392 +4315 2025-05-22 00:19:10.935268+00 2025-05-22 00:19:10.935279+00 f t 12000.00 1 12000.00 604 146 \N 1392 +4337 2025-05-22 00:46:47.643651+00 2025-05-22 00:46:47.643661+00 f t 46000.00 1 46000.00 605 84 \N 1393 +4340 2025-05-22 00:46:49.507259+00 2025-05-22 00:46:49.507268+00 f t 38500.00 1 38500.00 606 82 \N 1394 +4341 2025-05-22 00:46:49.513981+00 2025-05-22 00:46:49.513995+00 f t 7500.00 1 7500.00 606 85 \N 1394 +4919 2025-05-22 20:10:00.703241+00 2025-05-22 20:10:00.703255+00 f t 46000.00 1 46000.00 653 84 \N 1439 +5509 2025-05-24 16:50:31.19999+00 2025-05-24 16:50:31.199999+00 f t 46000.00 1 46000.00 728 84 \N 1504 +5924 2025-05-25 18:29:00.245536+00 2025-05-25 18:29:00.24555+00 f t 38500.00 1 38500.00 787 82 \N 1544 +4657 2025-05-22 12:22:03.273394+00 2025-05-22 12:22:03.273404+00 f t 38500.00 1 38500.00 628 82 \N 1415 +4658 2025-05-22 12:22:03.280002+00 2025-05-22 12:22:03.280011+00 f t 7500.00 1 7500.00 628 85 \N 1415 +5925 2025-05-25 18:29:00.253548+00 2025-05-25 18:29:00.253558+00 f t 7000.00 1 7000.00 787 93 \N 1544 +5926 2025-05-25 18:29:00.25879+00 2025-05-25 18:29:00.258805+00 f t 30000.00 1 30000.00 787 112 \N 1544 +4661 2025-05-22 12:41:54.238727+00 2025-05-22 12:41:54.238735+00 f t 38500.00 1 38500.00 629 82 \N 1416 +4662 2025-05-22 12:41:54.242933+00 2025-05-22 12:41:54.24294+00 f t 7500.00 1 7500.00 629 85 \N 1416 +5927 2025-05-25 18:29:00.264463+00 2025-05-25 18:29:00.264472+00 f t 12000.00 1 12000.00 787 146 \N 1544 +4666 2025-05-22 13:09:59.311739+00 2025-05-22 13:09:59.311747+00 f t 46000.00 1 46000.00 632 84 \N 1418 +4947 2025-05-22 21:47:44.880687+00 2025-05-22 21:47:44.880695+00 f t 38500.00 1 38500.00 655 82 \N 1442 +4951 2025-05-23 00:33:58.748267+00 2025-05-23 00:33:58.748277+00 f t 70000.00 1 70000.00 656 97 \N 1444 +5119 2025-05-23 13:08:04.016279+00 2025-05-23 13:08:04.016289+00 f t 38500.00 1 38500.00 674 82 \N 1460 +4953 2025-05-23 01:02:22.500181+00 2025-05-23 01:02:22.500195+00 f t 46000.00 1 46000.00 657 84 \N 1445 +4677 2025-05-22 13:58:46.458242+00 2025-05-22 13:58:46.45825+00 f t 38500.00 1 38500.00 633 82 \N 1420 +4678 2025-05-22 13:58:46.464531+00 2025-05-22 13:58:46.46454+00 f t 21000.00 1 21000.00 633 163 \N 1420 +5120 2025-05-23 13:08:04.021815+00 2025-05-23 13:08:04.021823+00 f t 21000.00 1 21000.00 674 163 \N 1460 +5122 2025-05-23 14:09:16.980052+00 2025-05-23 14:09:16.980062+00 f t 38500.00 1 38500.00 676 82 \N 1462 +5125 2025-05-23 14:58:36.484321+00 2025-05-23 14:58:36.484334+00 f t 38500.00 1 38500.00 677 82 \N 1468 +4807 2025-05-22 14:24:54.21264+00 2025-05-22 14:24:54.212649+00 f t 38500.00 1 38500.00 636 82 \N 1421 +4808 2025-05-22 14:24:54.21863+00 2025-05-22 14:24:54.218639+00 f t 7500.00 1 7500.00 636 85 \N 1421 +4809 2025-05-22 14:24:54.222813+00 2025-05-22 14:24:54.22282+00 f t 38500.00 1 38500.00 636 82 \N 1422 +4810 2025-05-22 14:24:54.22745+00 2025-05-22 14:24:54.227458+00 f t 7500.00 1 7500.00 636 85 \N 1422 +4960 2025-05-23 01:05:28.05288+00 2025-05-23 01:05:28.05289+00 f t 46000.00 1 46000.00 658 84 \N 1446 +5126 2025-05-23 14:58:36.491259+00 2025-05-23 14:58:36.491271+00 f t 7000.00 1 7000.00 677 93 \N 1468 +4695 2025-05-22 14:00:54.746323+00 2025-05-22 14:00:54.746337+00 f t 38500.00 1 38500.00 634 82 \N 930 +4696 2025-05-22 14:00:54.75321+00 2025-05-22 14:00:54.753224+00 f t 21000.00 1 21000.00 634 86 \N 930 +4842 2025-05-22 15:09:51.047289+00 2025-05-22 15:09:51.047298+00 f t 38500.00 1 38500.00 640 82 \N 1426 +4978 2025-05-23 01:07:53.273706+00 2025-05-23 01:07:53.273717+00 f t 38500.00 1 38500.00 659 82 \N 1447 +4979 2025-05-23 01:07:53.280286+00 2025-05-23 01:07:53.280298+00 f t 75000.00 1 75000.00 659 143 \N 1447 +5339 2025-05-23 17:33:50.1181+00 2025-05-23 17:33:50.11811+00 f t 25000.00 1 25000.00 687 83 \N 1477 +5343 2025-05-23 18:10:42.88656+00 2025-05-23 18:10:42.886571+00 f t 38500.00 1 38500.00 688 82 \N 1478 +4987 2025-05-23 02:08:16.180457+00 2025-05-23 02:08:16.180465+00 f t 46000.00 1 46000.00 661 84 \N 1448 +4865 2025-05-22 17:19:49.034312+00 2025-05-22 17:19:49.03432+00 f t 38500.00 1 38500.00 644 82 \N 732 +4866 2025-05-22 17:19:49.039217+00 2025-05-22 17:19:49.039225+00 f t 21000.00 1 21000.00 644 163 \N 732 +4867 2025-05-22 17:19:49.04332+00 2025-05-22 17:19:49.043327+00 f t 38500.00 1 38500.00 644 82 \N 733 +4868 2025-05-22 17:19:49.047275+00 2025-05-22 17:19:49.047286+00 f t 21000.00 1 21000.00 644 163 \N 733 +4871 2025-05-22 18:30:29.794822+00 2025-05-22 18:30:29.794831+00 f t 95000.00 1 95000.00 648 103 \N 1433 +4873 2025-05-22 18:44:28.698695+00 2025-05-22 18:44:28.698703+00 f t 25000.00 1 25000.00 650 83 \N 1434 +5349 2025-05-23 18:27:48.49394+00 2025-05-23 18:27:48.493954+00 f t 95000.00 1 95000.00 689 103 \N 1479 +4876 2025-05-22 18:46:33.773202+00 2025-05-22 18:46:33.773212+00 f t 38500.00 1 38500.00 651 82 \N 1435 +4877 2025-05-22 18:46:33.777546+00 2025-05-22 18:46:33.777553+00 f t 7500.00 1 7500.00 651 85 \N 1435 +4993 2025-05-23 02:14:46.380249+00 2025-05-23 02:14:46.380263+00 f t 38500.00 1 38500.00 662 82 \N 1449 +4994 2025-05-23 02:14:46.386702+00 2025-05-23 02:14:46.386715+00 f t 38500.00 1 38500.00 662 82 \N 1450 +5351 2025-05-23 18:30:58.123475+00 2025-05-23 18:30:58.123484+00 f t 38500.00 1 38500.00 690 82 \N 1480 +4998 2025-05-23 02:54:54.061325+00 2025-05-23 02:54:54.061335+00 f t 38500.00 1 38500.00 665 82 \N 1451 +5005 2025-05-23 03:57:19.674795+00 2025-05-23 03:57:19.674804+00 f t 38500.00 1 38500.00 666 82 \N 1452 +5006 2025-05-23 03:57:19.680835+00 2025-05-23 03:57:19.680845+00 f t 21000.00 1 21000.00 666 86 \N 1452 +5018 2025-05-23 07:09:21.160545+00 2025-05-23 07:09:21.160559+00 f t 46000.00 1 46000.00 667 84 \N 1453 +5022 2025-05-23 10:16:23.833512+00 2025-05-23 10:16:23.833521+00 f t 46000.00 1 46000.00 668 84 \N 1454 +4906 2025-05-22 19:07:17.720976+00 2025-05-22 19:07:17.720986+00 f t 38500.00 1 38500.00 652 82 \N 1436 +4907 2025-05-22 19:07:17.729046+00 2025-05-22 19:07:17.729058+00 f t 38500.00 1 38500.00 652 82 \N 1437 +5645 2025-05-25 03:09:06.724319+00 2025-05-25 03:09:06.724332+00 f t 38500.00 1 38500.00 756 82 \N 1520 +5646 2025-05-25 03:09:06.730542+00 2025-05-25 03:09:06.730554+00 f t 7500.00 1 7500.00 756 85 \N 1520 +5028 2025-05-23 10:54:17.375228+00 2025-05-23 10:54:17.375241+00 f t 46000.00 1 46000.00 670 84 \N 1455 +5647 2025-05-25 03:09:06.736357+00 2025-05-25 03:09:06.736368+00 f t 21000.00 1 21000.00 756 86 \N 1520 +5201 2025-05-23 15:17:09.381096+00 2025-05-23 15:17:09.381106+00 f t 38500.00 1 38500.00 679 82 \N 1471 +5209 2025-05-23 15:18:47.061918+00 2025-05-23 15:18:47.06193+00 f t 38500.00 1 38500.00 678 82 \N 1469 +5210 2025-05-23 15:18:47.069312+00 2025-05-23 15:18:47.069324+00 f t 12000.00 1 12000.00 678 138 \N 1469 +5211 2025-05-23 15:18:47.076238+00 2025-05-23 15:18:47.076252+00 f t 14000.00 1 14000.00 678 89 \N 1469 +5213 2025-05-23 15:49:42.592387+00 2025-05-23 15:49:42.592399+00 f t 38500.00 1 38500.00 680 82 \N 1472 +5216 2025-05-23 16:43:48.331985+00 2025-05-23 16:43:48.331995+00 f t 38500.00 1 38500.00 683 82 \N 1473 +5217 2025-05-23 16:43:48.3373+00 2025-05-23 16:43:48.337308+00 f t 21000.00 1 21000.00 683 163 \N 1473 +5097 2025-05-23 13:07:28.218989+00 2025-05-23 13:07:28.219008+00 f t 38500.00 1 38500.00 673 82 \N 1458 +5098 2025-05-23 13:07:28.223792+00 2025-05-23 13:07:28.2238+00 f t 9000.00 1 9000.00 673 131 \N 1458 +5099 2025-05-23 13:07:28.227762+00 2025-05-23 13:07:28.22777+00 f t 38500.00 1 38500.00 673 82 \N 1459 +5100 2025-05-23 13:07:28.231828+00 2025-05-23 13:07:28.231835+00 f t 9000.00 1 9000.00 673 132 \N 1459 +5285 2025-05-23 16:48:36.116639+00 2025-05-23 16:48:36.116649+00 f t 38500.00 1 38500.00 684 82 \N 1475 +6335 2025-05-26 07:24:38.247789+00 2025-05-26 07:24:38.247803+00 f t 38500.00 1 38500.00 809 82 \N 1566 +5505 2025-05-24 15:34:36.464151+00 2025-05-24 15:34:36.464161+00 f t 46000.00 1 46000.00 725 84 \N 1502 +5506 2025-05-24 15:34:36.472929+00 2025-05-24 15:34:36.472941+00 f t 38500.00 1 38500.00 725 82 \N 1502 +5507 2025-05-24 15:34:36.478083+00 2025-05-24 15:34:36.478092+00 f t 21000.00 1 21000.00 725 87 \N 1502 +5919 2025-05-25 18:17:31.449132+00 2025-05-25 18:17:31.449142+00 f t 46000.00 1 46000.00 786 84 \N 1543 +5378 2025-05-23 21:09:43.76993+00 2025-05-23 21:09:43.769938+00 f t 38500.00 1 38500.00 692 82 \N 1482 +5379 2025-05-23 21:09:43.776033+00 2025-05-23 21:09:43.776045+00 f t 7000.00 1 7000.00 692 93 \N 1482 +5380 2025-05-23 21:09:43.7815+00 2025-05-23 21:09:43.781512+00 f t 31000.00 1 31000.00 692 111 \N 1482 +5381 2025-05-23 21:09:43.786829+00 2025-05-23 21:09:43.786838+00 f t 12000.00 1 12000.00 692 146 \N 1482 +5399 2025-05-23 22:45:36.736711+00 2025-05-23 22:45:36.736726+00 f t 38500.00 1 38500.00 695 82 \N 1483 +5400 2025-05-23 22:45:36.747848+00 2025-05-23 22:45:36.747862+00 f t 7500.00 1 7500.00 695 85 \N 1483 +5401 2025-05-23 22:45:36.755826+00 2025-05-23 22:45:36.755841+00 f t 21000.00 1 21000.00 695 163 \N 1483 +5556 2025-05-24 17:37:59.859618+00 2025-05-24 17:37:59.859627+00 f t 38500.00 1 38500.00 730 82 \N 1505 +5557 2025-05-24 17:37:59.864526+00 2025-05-24 17:37:59.864537+00 f t 21000.00 1 21000.00 730 163 \N 1505 +5560 2025-05-24 17:53:42.238372+00 2025-05-24 17:53:42.238381+00 f t 38500.00 1 38500.00 732 82 \N 1507 +5561 2025-05-24 17:53:42.243272+00 2025-05-24 17:53:42.243281+00 f t 7500.00 1 7500.00 732 85 \N 1507 +5565 2025-05-24 18:46:21.503936+00 2025-05-24 18:46:21.503946+00 f t 46000.00 1 46000.00 739 84 \N 1508 +5568 2025-05-24 20:25:25.960677+00 2025-05-24 20:25:25.96069+00 f t 38500.00 1 38500.00 741 82 \N 1509 +5569 2025-05-24 20:25:25.967005+00 2025-05-24 20:25:25.967014+00 f t 21000.00 1 21000.00 741 86 \N 1509 +5571 2025-05-24 21:36:20.385535+00 2025-05-24 21:36:20.385545+00 f t 38500.00 1 38500.00 743 82 \N 1511 +5414 2025-05-23 22:46:34.818576+00 2025-05-23 22:46:34.818591+00 f t 38500.00 1 38500.00 696 82 \N 1484 +5415 2025-05-23 22:46:34.825721+00 2025-05-23 22:46:34.825732+00 f t 7000.00 1 7000.00 696 93 \N 1484 +5416 2025-05-23 22:46:34.831402+00 2025-05-23 22:46:34.831414+00 f t 38000.00 1 38000.00 696 110 \N 1484 +5417 2025-05-23 22:46:34.83973+00 2025-05-23 22:46:34.839744+00 f t 12000.00 1 12000.00 696 146 \N 1484 +5420 2025-05-23 22:58:51.191488+00 2025-05-23 22:58:51.191497+00 f t 38500.00 1 38500.00 698 82 \N 1485 +5421 2025-05-23 22:58:51.196782+00 2025-05-23 22:58:51.196792+00 f t 68750.00 1 68750.00 698 142 \N 1485 +5599 2025-05-24 23:03:31.151495+00 2025-05-24 23:03:31.151505+00 f t 38500.00 1 38500.00 745 82 \N 1512 +5606 2025-05-24 23:20:19.009998+00 2025-05-24 23:20:19.010009+00 f t 38500.00 1 38500.00 747 82 \N 1513 +5607 2025-05-24 23:20:19.015219+00 2025-05-24 23:20:19.01523+00 f t 21000.00 1 21000.00 747 163 \N 1513 +5614 2025-05-24 23:36:30.860014+00 2025-05-24 23:36:30.860027+00 f t 38500.00 1 38500.00 749 82 \N 1514 +5615 2025-05-24 23:36:30.868015+00 2025-05-24 23:36:30.868027+00 f t 21000.00 1 21000.00 749 86 \N 1514 +5618 2025-05-25 00:32:53.747793+00 2025-05-25 00:32:53.747805+00 f t 38500.00 1 38500.00 750 82 \N 1515 +5619 2025-05-25 00:32:53.753481+00 2025-05-25 00:32:53.753496+00 f t 7500.00 1 7500.00 750 85 \N 1515 +5621 2025-05-25 00:36:42.773233+00 2025-05-25 00:36:42.773242+00 f t 46000.00 1 46000.00 751 84 \N 1516 +5623 2025-05-25 01:07:50.080942+00 2025-05-25 01:07:50.080952+00 f t 46000.00 1 46000.00 753 84 \N 1517 +5626 2025-05-25 01:17:41.115604+00 2025-05-25 01:17:41.115613+00 f t 38500.00 1 38500.00 754 82 \N 1518 +5444 2025-05-23 23:41:37.018247+00 2025-05-23 23:41:37.018257+00 f t 46000.00 1 46000.00 700 84 \N 1486 +5627 2025-05-25 01:17:41.120395+00 2025-05-25 01:17:41.120404+00 f t 7500.00 1 7500.00 754 85 \N 1518 +5630 2025-05-25 01:29:07.738646+00 2025-05-25 01:29:07.738655+00 f t 38500.00 1 38500.00 755 82 \N 1519 +5631 2025-05-25 01:29:07.744359+00 2025-05-25 01:29:07.744367+00 f t 7500.00 1 7500.00 755 85 \N 1519 +5451 2025-05-24 01:02:04.711212+00 2025-05-24 01:02:04.711221+00 f t 46000.00 1 46000.00 706 84 \N 1489 +5454 2025-05-24 02:13:23.963638+00 2025-05-24 02:13:23.963648+00 f t 38500.00 1 38500.00 708 82 \N 1490 +5461 2025-05-24 02:41:59.261753+00 2025-05-24 02:41:59.261764+00 f t 38500.00 1 38500.00 709 82 \N 1492 +5462 2025-05-24 02:41:59.266297+00 2025-05-24 02:41:59.266305+00 f t 21000.00 1 21000.00 709 86 \N 1492 +5464 2025-05-24 02:45:25.574047+00 2025-05-24 02:45:25.574057+00 f t 46000.00 1 46000.00 710 84 \N 1493 +5472 2025-05-24 12:19:03.82422+00 2025-05-24 12:19:03.82423+00 f t 57000.00 1 57000.00 713 106 \N 1495 +5775 2025-05-25 03:33:20.453167+00 2025-05-25 03:33:20.45318+00 f t 38500.00 1 38500.00 760 82 \N 1522 +5776 2025-05-25 03:33:20.459604+00 2025-05-25 03:33:20.459613+00 f t 57000.00 1 57000.00 760 106 \N 1522 +5777 2025-05-25 03:33:20.464964+00 2025-05-25 03:33:20.464978+00 f t 7000.00 1 7000.00 760 93 \N 1522 +5778 2025-05-25 03:33:20.471302+00 2025-05-25 03:33:20.471315+00 f t 12000.00 1 12000.00 760 146 \N 1522 +5482 2025-05-24 13:11:13.596915+00 2025-05-24 13:11:13.596925+00 f t 25000.00 1 25000.00 718 83 \N 1498 +5781 2025-05-25 03:59:21.028862+00 2025-05-25 03:59:21.028871+00 f t 38500.00 1 38500.00 762 82 \N 1523 +5782 2025-05-25 03:59:21.033722+00 2025-05-25 03:59:21.033733+00 f t 7500.00 1 7500.00 762 85 \N 1523 +5486 2025-05-24 13:47:42.634412+00 2025-05-24 13:47:42.634426+00 f t 38500.00 1 38500.00 720 82 \N 1499 +5488 2025-05-24 14:22:35.475938+00 2025-05-24 14:22:35.475949+00 f t 70000.00 1 70000.00 722 97 \N 1500 +5784 2025-05-25 05:43:17.532941+00 2025-05-25 05:43:17.53295+00 f t 38500.00 1 38500.00 763 82 \N 1524 +5786 2025-05-25 10:20:17.18553+00 2025-05-25 10:20:17.185544+00 f t 38500.00 1 38500.00 764 82 \N 1525 +5497 2025-05-24 15:03:24.652594+00 2025-05-24 15:03:24.652605+00 f t 46000.00 1 46000.00 724 84 \N 1501 +5794 2025-05-25 10:41:05.104121+00 2025-05-25 10:41:05.104131+00 f t 46000.00 1 46000.00 765 84 \N 1526 +5798 2025-05-25 13:28:40.141183+00 2025-05-25 13:28:40.141191+00 f t 38500.00 1 38500.00 767 82 \N 1527 +5801 2025-05-25 13:40:49.922126+00 2025-05-25 13:40:49.922136+00 f t 46000.00 1 46000.00 768 84 \N 1529 +5818 2025-05-25 14:00:49.579019+00 2025-05-25 14:00:49.579029+00 f t 38500.00 1 38500.00 770 82 \N 1531 +5819 2025-05-25 14:00:49.585038+00 2025-05-25 14:00:49.585049+00 f t 21000.00 1 21000.00 770 86 \N 1531 +5838 2025-05-25 14:48:07.873487+00 2025-05-25 14:48:07.8735+00 f t 46000.00 1 46000.00 772 84 \N 1533 +5842 2025-05-25 15:39:34.954905+00 2025-05-25 15:39:34.954915+00 f t 38500.00 1 38500.00 773 82 \N 1534 +5844 2025-05-25 16:07:05.818813+00 2025-05-25 16:07:05.818823+00 f t 38500.00 1 38500.00 775 82 \N 1536 +5861 2025-05-25 16:27:02.331744+00 2025-05-25 16:27:02.331754+00 f t 38500.00 1 38500.00 776 82 \N 1537 +5869 2025-05-25 16:29:53.379+00 2025-05-25 16:29:53.37901+00 f t 38500.00 1 38500.00 777 82 \N 1538 +5872 2025-05-25 16:43:07.90048+00 2025-05-25 16:43:07.900493+00 f t 38500.00 1 38500.00 778 82 \N 1539 +5873 2025-05-25 16:43:07.906245+00 2025-05-25 16:43:07.906255+00 f t 7500.00 1 7500.00 778 85 \N 1539 +5916 2025-05-25 18:03:51.17689+00 2025-05-25 18:03:51.176899+00 f t 38500.00 1 38500.00 785 82 \N 1542 +5917 2025-05-25 18:03:51.181846+00 2025-05-25 18:03:51.181855+00 f t 7500.00 1 7500.00 785 85 \N 1542 +6339 2025-05-26 07:26:24.271781+00 2025-05-26 07:26:24.271792+00 f t 68750.00 1 68750.00 810 142 \N 1567 +6341 2025-05-26 07:28:35.602982+00 2025-05-26 07:28:35.602991+00 f t 46000.00 1 46000.00 811 84 \N 1568 +6347 2025-05-26 09:30:03.539099+00 2025-05-26 09:30:03.539112+00 f t 46000.00 1 46000.00 813 84 \N 1569 +6348 2025-05-26 09:30:03.548442+00 2025-05-26 09:30:03.548457+00 f t 57000.00 1 57000.00 813 106 \N 1569 +5890 2025-05-25 17:55:25.594557+00 2025-05-25 17:55:25.594565+00 f t 38500.00 1 38500.00 783 82 \N 1540 +5891 2025-05-25 17:55:25.599565+00 2025-05-25 17:55:25.599573+00 f t 7500.00 1 7500.00 783 85 \N 1540 +6586 2025-05-26 23:35:12.718938+00 2025-05-26 23:35:12.71895+00 f t 38500.00 1 38500.00 849 82 \N 1594 +5936 2025-05-25 19:08:06.969015+00 2025-05-25 19:08:06.969026+00 f t 38500.00 1 38500.00 788 82 \N 1545 +5894 2025-05-25 17:56:11.086913+00 2025-05-25 17:56:11.086944+00 f t 38500.00 1 38500.00 784 82 \N 1541 +5895 2025-05-25 17:56:11.095061+00 2025-05-25 17:56:11.09507+00 f t 7500.00 1 7500.00 784 85 \N 1541 +5937 2025-05-25 19:08:06.975373+00 2025-05-25 19:08:06.975386+00 f t 21000.00 1 21000.00 788 86 \N 1545 +6350 2025-05-26 09:30:59.460227+00 2025-05-26 09:30:59.46024+00 f t 46000.00 1 46000.00 814 84 \N 1570 +6587 2025-05-26 23:35:12.724827+00 2025-05-26 23:35:12.724835+00 f t 7000.00 1 7000.00 849 93 \N 1594 +6588 2025-05-26 23:35:12.729605+00 2025-05-26 23:35:12.729612+00 f t 31000.00 1 31000.00 849 111 \N 1594 +6589 2025-05-26 23:35:12.739984+00 2025-05-26 23:35:12.739995+00 f t 12000.00 1 12000.00 849 146 \N 1594 +6591 2025-05-26 23:35:45.889271+00 2025-05-26 23:35:45.889281+00 f t 95000.00 1 95000.00 850 103 \N 1595 +6595 2025-05-27 00:37:50.782864+00 2025-05-27 00:37:50.782913+00 f t 46000.00 1 46000.00 852 84 \N 1596 +5950 2025-05-25 19:37:48.236099+00 2025-05-25 19:37:48.236108+00 f t 38500.00 1 38500.00 789 82 \N 1546 +5963 2025-05-25 19:57:22.090998+00 2025-05-25 19:57:22.091008+00 f t 46000.00 1 46000.00 791 84 \N 1547 +5972 2025-05-25 21:22:08.066043+00 2025-05-25 21:22:08.06605+00 f t 38500.00 1 38500.00 793 82 \N 1551 +5973 2025-05-25 21:22:08.071899+00 2025-05-25 21:22:08.071908+00 f t 7500.00 1 7500.00 793 85 \N 1551 +6385 2025-05-26 13:32:00.123582+00 2025-05-26 13:32:00.123592+00 f t 25000.00 1 25000.00 816 83 \N 1572 +5976 2025-05-25 21:39:40.422854+00 2025-05-25 21:39:40.422865+00 f t 38500.00 1 38500.00 794 82 \N 1552 +5977 2025-05-25 21:39:40.428334+00 2025-05-25 21:39:40.428342+00 f t 21000.00 1 21000.00 794 86 \N 1552 +5981 2025-05-25 21:54:18.624298+00 2025-05-25 21:54:18.624307+00 f t 46000.00 1 46000.00 795 84 \N 1553 +6389 2025-05-26 13:49:08.247789+00 2025-05-26 13:49:08.247801+00 f t 38500.00 1 38500.00 818 82 \N 1573 +6398 2025-05-26 14:24:01.871006+00 2025-05-26 14:24:01.871019+00 f t 38500.00 1 38500.00 821 82 \N 1575 +6399 2025-05-26 14:24:01.880479+00 2025-05-26 14:24:01.880493+00 f t 7500.00 1 7500.00 821 85 \N 1575 +5994 2025-05-25 22:30:58.073018+00 2025-05-25 22:30:58.073028+00 f t 38500.00 1 38500.00 796 82 \N 1554 +5995 2025-05-25 22:30:58.078461+00 2025-05-25 22:30:58.078469+00 f t 21000.00 1 21000.00 796 86 \N 1554 +5996 2025-05-25 22:30:58.082454+00 2025-05-25 22:30:58.082465+00 f t 38500.00 1 38500.00 796 82 \N 1555 +5997 2025-05-25 22:30:58.08818+00 2025-05-25 22:30:58.088189+00 f t 21000.00 1 21000.00 796 86 \N 1555 +6404 2025-05-26 14:41:10.022891+00 2025-05-26 14:41:10.022903+00 f t 38500.00 1 38500.00 822 82 \N 932 +6405 2025-05-26 14:41:10.028847+00 2025-05-26 14:41:10.028859+00 f t 21000.00 1 21000.00 822 86 \N 932 +6407 2025-05-26 14:53:27.577896+00 2025-05-26 14:53:27.577906+00 f t 38500.00 1 38500.00 823 82 \N 1576 +6412 2025-05-26 15:33:49.914625+00 2025-05-26 15:33:49.914635+00 f t 38500.00 1 38500.00 824 82 \N 1577 +6413 2025-05-26 15:33:49.920095+00 2025-05-26 15:33:49.920107+00 f t 21000.00 1 21000.00 824 163 \N 1577 +6011 2025-05-26 00:28:23.6487+00 2025-05-26 00:28:23.648711+00 f t 46000.00 1 46000.00 799 84 \N 1557 +6013 2025-05-26 01:14:35.900243+00 2025-05-26 01:14:35.900255+00 f t 38500.00 1 38500.00 802 82 \N 1559 +6021 2025-05-26 01:54:05.937393+00 2025-05-26 01:54:05.937406+00 f t 46000.00 1 46000.00 803 84 \N 1560 +6032 2025-05-26 02:14:14.017745+00 2025-05-26 02:14:14.017755+00 f t 38500.00 1 38500.00 804 82 \N 1561 +6033 2025-05-26 02:14:14.024396+00 2025-05-26 02:14:14.024405+00 f t 7500.00 1 7500.00 804 85 \N 1561 +6035 2025-05-26 04:22:52.299308+00 2025-05-26 04:22:52.299319+00 f t 70000.00 1 70000.00 805 97 \N 1562 +6433 2025-05-26 16:05:37.224165+00 2025-05-26 16:05:37.224178+00 f t 46000.00 1 46000.00 825 84 \N 1578 +6434 2025-05-26 16:05:37.231239+00 2025-05-26 16:05:37.231253+00 f t 55000.00 1 55000.00 825 100 \N 1578 +6038 2025-05-26 04:52:52.594177+00 2025-05-26 04:52:52.594188+00 f t 57000.00 1 57000.00 806 106 \N 1563 +6435 2025-05-26 16:05:37.236735+00 2025-05-26 16:05:37.236743+00 f t 38500.00 1 38500.00 825 82 \N 1578 +6436 2025-05-26 16:05:37.241624+00 2025-05-26 16:05:37.241636+00 f t 7000.00 1 7000.00 825 93 \N 1578 +6437 2025-05-26 16:05:37.246473+00 2025-05-26 16:05:37.246482+00 f t 20000.00 1 20000.00 825 109 \N 1578 +6438 2025-05-26 16:05:37.25108+00 2025-05-26 16:05:37.251092+00 f t 12000.00 1 12000.00 825 146 \N 1578 +6049 2025-05-26 04:57:48.916883+00 2025-05-26 04:57:48.916896+00 f t 38500.00 1 38500.00 807 82 \N 1564 +6476 2025-05-26 16:11:16.913328+00 2025-05-26 16:11:16.913337+00 f t 38500.00 1 38500.00 827 82 \N 1579 +6480 2025-05-26 16:26:58.142401+00 2025-05-26 16:26:58.142411+00 f t 25000.00 1 25000.00 828 83 \N 1580 +6484 2025-05-26 16:46:06.281334+00 2025-05-26 16:46:06.281387+00 f t 70000.00 1 70000.00 829 97 \N 1581 +6486 2025-05-26 16:59:15.834925+00 2025-05-26 16:59:15.834936+00 f t 46000.00 1 46000.00 830 84 \N 1582 +6495 2025-05-26 17:15:02.204312+00 2025-05-26 17:15:02.204328+00 f t 38500.00 1 38500.00 831 82 \N 1584 +6497 2025-05-26 18:34:43.293143+00 2025-05-26 18:34:43.293151+00 f t 46000.00 1 46000.00 832 84 \N 1585 +6330 2025-05-26 05:30:12.031805+00 2025-05-26 05:30:12.031815+00 f t 38500.00 1 38500.00 808 82 \N 1565 +6331 2025-05-26 05:30:12.037485+00 2025-05-26 05:30:12.037495+00 f t 7000.00 1 7000.00 808 93 \N 1565 +6332 2025-05-26 05:30:12.04241+00 2025-05-26 05:30:12.04242+00 f t 31000.00 1 31000.00 808 111 \N 1565 +6333 2025-05-26 05:30:12.047467+00 2025-05-26 05:30:12.047477+00 f t 12000.00 1 12000.00 808 146 \N 1565 +6521 2025-05-26 20:08:22.422844+00 2025-05-26 20:08:22.422853+00 f t 38500.00 1 38500.00 835 82 \N 1586 +6523 2025-05-26 20:16:53.940405+00 2025-05-26 20:16:53.940414+00 f t 46000.00 1 46000.00 836 84 \N 1587 +6529 2025-05-26 21:48:17.850281+00 2025-05-26 21:48:17.850291+00 f t 38500.00 1 38500.00 841 82 \N 1588 +6531 2025-05-26 21:51:43.451099+00 2025-05-26 21:51:43.451128+00 f t 46000.00 1 46000.00 843 84 \N 1590 +6533 2025-05-26 22:23:56.303033+00 2025-05-26 22:23:56.303046+00 f t 38500.00 1 38500.00 845 82 \N 1591 +6537 2025-05-26 23:21:36.11943+00 2025-05-26 23:21:36.119445+00 f t 38500.00 1 38500.00 847 82 \N 1593 +7029 2025-05-27 16:49:43.284898+00 2025-05-27 16:49:43.284907+00 f t 38500.00 1 38500.00 896 82 \N 1633 +7030 2025-05-27 16:49:43.289424+00 2025-05-27 16:49:43.289431+00 f t 7500.00 1 7500.00 896 85 \N 1633 +7031 2025-05-27 16:49:43.29334+00 2025-05-27 16:49:43.293347+00 f t 21000.00 1 21000.00 896 86 \N 1633 +10758 2025-06-06 01:14:12.317406+00 2025-06-06 01:14:12.317416+00 f t 0.00 1 0.00 1393 101 \N 2046 +7487 2025-05-28 02:38:18.730713+00 2025-05-28 02:38:18.730724+00 f t 46000.00 1 46000.00 930 84 \N 1667 +7036 2025-05-27 17:05:58.470939+00 2025-05-27 17:05:58.470949+00 f t 38500.00 1 38500.00 897 82 \N 1634 +7494 2025-05-28 02:39:24.789668+00 2025-05-28 02:39:24.789678+00 f t 38500.00 1 38500.00 932 82 \N 1668 +7495 2025-05-28 02:39:24.795542+00 2025-05-28 02:39:24.795552+00 f t 21000.00 1 21000.00 932 163 \N 1668 +7039 2025-05-27 17:21:37.987601+00 2025-05-27 17:21:37.987611+00 f t 38500.00 1 38500.00 898 82 \N 1635 +7040 2025-05-27 17:21:37.993452+00 2025-05-27 17:21:37.993464+00 f t 21000.00 1 21000.00 898 88 \N 1635 +7042 2025-05-27 17:41:18.931163+00 2025-05-27 17:41:18.931172+00 f t 46000.00 1 46000.00 899 84 \N 1636 +6601 2025-05-27 00:39:20.538498+00 2025-05-27 00:39:20.538507+00 f t 46000.00 1 46000.00 853 84 \N 1597 +7045 2025-05-27 17:54:42.866442+00 2025-05-27 17:54:42.866451+00 f t 38500.00 1 38500.00 904 82 \N 1638 +7046 2025-05-27 17:54:42.872006+00 2025-05-27 17:54:42.872018+00 f t 21000.00 1 21000.00 904 86 \N 1638 +6606 2025-05-27 01:23:20.45867+00 2025-05-27 01:23:20.458685+00 f t 46000.00 1 46000.00 856 84 \N 1598 +6616 2025-05-27 01:40:26.579014+00 2025-05-27 01:40:26.579028+00 f t 46000.00 1 46000.00 857 84 \N 1599 +6633 2025-05-27 02:04:12.994654+00 2025-05-27 02:04:12.994663+00 f t 38500.00 1 38500.00 858 82 \N 1600 +6634 2025-05-27 02:04:13.000177+00 2025-05-27 02:04:13.00019+00 f t 21000.00 1 21000.00 858 88 \N 1600 +6652 2025-05-27 02:38:05.99993+00 2025-05-27 02:38:05.999944+00 f t 38500.00 1 38500.00 861 82 \N 1601 +6653 2025-05-27 02:38:06.006061+00 2025-05-27 02:38:06.00607+00 f t 21000.00 1 21000.00 861 163 \N 1601 +6657 2025-05-27 02:45:22.154392+00 2025-05-27 02:45:22.154404+00 f t 25000.00 1 25000.00 863 83 \N 1602 +6659 2025-05-27 02:51:43.616814+00 2025-05-27 02:51:43.616823+00 f t 38500.00 1 38500.00 864 82 \N 1603 +6681 2025-05-27 03:21:25.544474+00 2025-05-27 03:21:25.544482+00 f t 38500.00 1 38500.00 865 82 \N 1604 +6682 2025-05-27 03:21:25.54997+00 2025-05-27 03:21:25.549979+00 f t 7500.00 1 7500.00 865 85 \N 1604 +6683 2025-05-27 03:21:25.554555+00 2025-05-27 03:21:25.554563+00 f t 21000.00 1 21000.00 865 87 \N 1604 +6913 2025-05-27 09:50:33.261813+00 2025-05-27 09:50:33.261822+00 f t 38500.00 1 38500.00 872 82 \N 1612 +7144 2025-05-27 18:40:32.149654+00 2025-05-27 18:40:32.149667+00 f t 38500.00 1 38500.00 905 82 \N 1639 +7145 2025-05-27 18:40:32.156917+00 2025-05-27 18:40:32.156929+00 f t 21000.00 1 21000.00 905 86 \N 1639 +7149 2025-05-27 19:47:23.235308+00 2025-05-27 19:47:23.235321+00 f t 46000.00 1 46000.00 907 84 \N 1643 +6927 2025-05-27 11:18:14.2745+00 2025-05-27 11:18:14.274511+00 f t 38500.00 1 38500.00 873 82 \N 1613 +6928 2025-05-27 11:18:14.280811+00 2025-05-27 11:18:14.280819+00 f t 7500.00 1 7500.00 873 85 \N 1613 +6929 2025-05-27 11:18:14.285991+00 2025-05-27 11:18:14.286001+00 f t 21000.00 1 21000.00 873 86 \N 1613 +6936 2025-05-27 12:36:05.732295+00 2025-05-27 12:36:05.732305+00 f t 38500.00 1 38500.00 875 82 \N 1615 +6937 2025-05-27 12:36:05.738712+00 2025-05-27 12:36:05.738722+00 f t 21000.00 1 21000.00 875 86 \N 1615 +6939 2025-05-27 12:39:47.239603+00 2025-05-27 12:39:47.239615+00 f t 95000.00 1 95000.00 876 103 \N 1616 +7160 2025-05-27 19:52:39.649314+00 2025-05-27 19:52:39.649327+00 f t 38500.00 1 38500.00 908 82 \N 1642 +6750 2025-05-27 04:32:58.330692+00 2025-05-27 04:32:58.330704+00 f t 38500.00 1 38500.00 868 82 \N 1607 +6751 2025-05-27 04:32:58.336783+00 2025-05-27 04:32:58.336792+00 f t 21000.00 1 21000.00 868 86 \N 1607 +6960 2025-05-27 12:51:43.929677+00 2025-05-27 12:51:43.929686+00 f t 25000.00 1 25000.00 877 83 \N 1548 +6756 2025-05-27 05:25:33.328962+00 2025-05-27 05:25:33.328971+00 f t 38500.00 1 38500.00 870 82 \N 1609 +6963 2025-05-27 13:19:03.136978+00 2025-05-27 13:19:03.136991+00 f t 57000.00 1 57000.00 878 106 \N 1617 +6965 2025-05-27 13:46:25.699021+00 2025-05-27 13:46:25.699033+00 f t 38500.00 1 38500.00 879 82 \N 1619 +6967 2025-05-27 13:55:20.067724+00 2025-05-27 13:55:20.067733+00 f t 85000.00 1 85000.00 881 108 \N 1621 +6972 2025-05-27 15:28:17.909038+00 2025-05-27 15:28:17.909048+00 f t 46000.00 1 46000.00 885 84 \N 1624 +6979 2025-05-27 15:43:02.593724+00 2025-05-27 15:43:02.593734+00 f t 75000.00 1 75000.00 887 99 \N 1626 +6981 2025-05-27 15:43:48.650625+00 2025-05-27 15:43:48.650633+00 f t 46000.00 1 46000.00 888 84 \N 1627 +7194 2025-05-27 20:49:02.192698+00 2025-05-27 20:49:02.192712+00 f t 38500.00 1 38500.00 910 82 \N 1645 +7195 2025-05-27 20:49:02.204457+00 2025-05-27 20:49:02.204472+00 f t 7500.00 1 7500.00 910 85 \N 1645 +7196 2025-05-27 20:49:02.215809+00 2025-05-27 20:49:02.215821+00 f t 21000.00 1 21000.00 910 86 \N 1645 +7197 2025-05-27 20:49:02.224038+00 2025-05-27 20:49:02.224054+00 f t 21000.00 1 21000.00 910 87 \N 1645 +7200 2025-05-27 21:57:35.111777+00 2025-05-27 21:57:35.11179+00 f t 38500.00 1 38500.00 911 82 \N 1646 +7201 2025-05-27 21:57:35.118007+00 2025-05-27 21:57:35.11802+00 f t 21000.00 1 21000.00 911 163 \N 1646 +7203 2025-05-27 22:09:05.713438+00 2025-05-27 22:09:05.713453+00 f t 38500.00 1 38500.00 912 82 \N 1647 +7206 2025-05-27 22:37:42.390081+00 2025-05-27 22:37:42.390092+00 f t 38500.00 1 38500.00 913 82 \N 1648 +6998 2025-05-27 16:01:59.593734+00 2025-05-27 16:01:59.593745+00 f t 38500.00 1 38500.00 891 82 \N 1629 +6999 2025-05-27 16:01:59.599418+00 2025-05-27 16:01:59.599427+00 f t 21000.00 1 21000.00 891 86 \N 1629 +7210 2025-05-27 22:41:44.856162+00 2025-05-27 22:41:44.856173+00 f t 38500.00 1 38500.00 914 82 \N 1649 +7004 2025-05-27 16:05:47.850263+00 2025-05-27 16:05:47.850273+00 f t 57000.00 1 57000.00 892 106 \N 1631 +7013 2025-05-27 16:40:54.90009+00 2025-05-27 16:40:54.9001+00 f t 38500.00 1 38500.00 893 82 \N 1632 +7014 2025-05-27 16:40:54.907823+00 2025-05-27 16:40:54.907851+00 f t 7000.00 1 7000.00 893 93 \N 1632 +7015 2025-05-27 16:40:54.914814+00 2025-05-27 16:40:54.914823+00 f t 20000.00 1 20000.00 893 109 \N 1632 +7016 2025-05-27 16:40:54.921154+00 2025-05-27 16:40:54.921166+00 f t 12000.00 1 12000.00 893 146 \N 1632 +7245 2025-05-27 22:52:17.096487+00 2025-05-27 22:52:17.0965+00 f t 38500.00 1 38500.00 915 82 \N 1650 +7246 2025-05-27 22:52:17.103483+00 2025-05-27 22:52:17.103495+00 f t 68750.00 1 68750.00 915 142 \N 1650 +7248 2025-05-27 23:32:05.52567+00 2025-05-27 23:32:05.525682+00 f t 38500.00 1 38500.00 916 82 \N 1653 +7255 2025-05-28 01:00:03.23489+00 2025-05-28 01:00:03.234907+00 f t 46000.00 1 46000.00 920 84 \N 1655 +7258 2025-05-28 01:53:12.244829+00 2025-05-28 01:53:12.24484+00 f t 38500.00 1 38500.00 921 82 \N 1656 +7259 2025-05-28 01:53:12.251907+00 2025-05-28 01:53:12.251917+00 f t 21000.00 1 21000.00 921 86 \N 1656 +8554 2025-05-31 01:38:13.038973+00 2025-05-31 01:38:13.038984+00 f t 46000.00 1 46000.00 1072 84 \N 1787 +8557 2025-05-31 01:43:39.89074+00 2025-05-31 01:43:39.890752+00 f t 38500.00 1 38500.00 1073 82 \N 1788 +7977 2025-05-29 19:21:30.018129+00 2025-05-29 19:21:30.018144+00 f t 38500.00 1 38500.00 998 82 \N 1720 +7978 2025-05-29 19:21:30.025086+00 2025-05-29 19:21:30.025096+00 f t 7000.00 1 7000.00 998 93 \N 1720 +7979 2025-05-29 19:21:30.031002+00 2025-05-29 19:21:30.031015+00 f t 12000.00 1 12000.00 998 146 \N 1720 +7269 2025-05-28 01:57:06.2548+00 2025-05-28 01:57:06.254811+00 f t 38500.00 1 38500.00 923 82 \N 1658 +7270 2025-05-28 01:57:06.261209+00 2025-05-28 01:57:06.261223+00 f t 21000.00 1 21000.00 923 86 \N 1658 +7271 2025-05-28 01:57:06.267838+00 2025-05-28 01:57:06.267851+00 f t 21000.00 1 21000.00 923 163 \N 1658 +8558 2025-05-31 01:43:39.896698+00 2025-05-31 01:43:39.896707+00 f t 7500.00 1 7500.00 1073 85 \N 1788 +7983 2025-05-29 19:33:47.74478+00 2025-05-29 19:33:47.744795+00 f t 46000.00 1 46000.00 999 84 \N 1721 +7501 2025-05-28 02:48:19.343313+00 2025-05-28 02:48:19.343326+00 f t 38500.00 1 38500.00 933 82 \N 1669 +7277 2025-05-28 02:13:57.945739+00 2025-05-28 02:13:57.945749+00 f t 38500.00 1 38500.00 926 82 \N 1661 +7278 2025-05-28 02:13:57.950725+00 2025-05-28 02:13:57.950734+00 f t 25500.00 1 25500.00 926 124 \N 1661 +7279 2025-05-28 02:13:57.955495+00 2025-05-28 02:13:57.955505+00 f t 14000.00 1 14000.00 926 89 \N 1661 +7503 2025-05-28 02:52:34.702941+00 2025-05-28 02:52:34.702956+00 f t 25000.00 1 25000.00 935 83 \N 1670 +8291 2025-05-30 11:18:52.977082+00 2025-05-30 11:18:52.977097+00 f t 46000.00 1 46000.00 1025 84 \N 1741 +7986 2025-05-29 22:32:05.645389+00 2025-05-29 22:32:05.645404+00 f t 46000.00 1 46000.00 1004 84 \N 1724 +7988 2025-05-29 22:36:06.741422+00 2025-05-29 22:36:06.741437+00 f t 46000.00 1 46000.00 1005 84 \N 1725 +7286 2025-05-28 02:24:02.059773+00 2025-05-28 02:24:02.059788+00 f t 57000.00 1 57000.00 927 106 \N 1663 +7990 2025-05-30 00:13:42.217775+00 2025-05-30 00:13:42.217789+00 f t 38500.00 1 38500.00 1010 82 \N 1731 +7512 2025-05-28 03:21:40.454249+00 2025-05-28 03:21:40.454262+00 f t 46000.00 1 46000.00 936 84 \N 1671 +7752 2025-05-29 01:59:53.551294+00 2025-05-29 01:59:53.551309+00 f t 38500.00 1 38500.00 965 82 \N 1696 +7753 2025-05-29 01:59:53.558515+00 2025-05-29 01:59:53.558528+00 f t 7500.00 1 7500.00 965 85 \N 1696 +7757 2025-05-29 02:23:50.435527+00 2025-05-29 02:23:50.435536+00 f t 38500.00 1 38500.00 966 82 \N 1697 +7522 2025-05-28 03:27:25.766772+00 2025-05-28 03:27:25.766786+00 f t 46000.00 1 46000.00 937 84 \N 1672 +7525 2025-05-28 03:40:14.870356+00 2025-05-28 03:40:14.870368+00 f t 38500.00 1 38500.00 938 82 \N 1673 +7526 2025-05-28 03:40:14.877275+00 2025-05-28 03:40:14.877285+00 f t 21000.00 1 21000.00 938 86 \N 1673 +7529 2025-05-28 04:00:15.903044+00 2025-05-28 04:00:15.90306+00 f t 38500.00 1 38500.00 940 82 \N 1674 +7530 2025-05-28 04:00:15.912073+00 2025-05-28 04:00:15.912084+00 f t 21000.00 1 21000.00 940 86 \N 1674 +7539 2025-05-28 04:31:56.952948+00 2025-05-28 04:31:56.95297+00 f t 46000.00 1 46000.00 941 84 \N 1675 +7541 2025-05-28 09:20:10.089304+00 2025-05-28 09:20:10.08932+00 f t 38500.00 1 38500.00 942 82 \N 1676 +7545 2025-05-28 12:10:42.462862+00 2025-05-28 12:10:42.462873+00 f t 38500.00 1 38500.00 945 82 \N 1678 +7547 2025-05-28 13:25:47.579931+00 2025-05-28 13:25:47.579944+00 f t 75000.00 1 75000.00 947 99 \N 1680 +7550 2025-05-28 15:45:46.566665+00 2025-05-28 15:45:46.566675+00 f t 38500.00 1 38500.00 949 82 \N 1681 +7551 2025-05-28 15:45:46.5734+00 2025-05-28 15:45:46.573414+00 f t 7500.00 1 7500.00 949 85 \N 1681 +7553 2025-05-28 15:51:54.841136+00 2025-05-28 15:51:54.84115+00 f t 38500.00 1 38500.00 950 82 \N 1682 +7810 2025-05-29 04:38:22.119169+00 2025-05-29 04:38:22.119182+00 f t 38500.00 1 38500.00 967 82 \N 1698 +7811 2025-05-29 04:38:22.126235+00 2025-05-29 04:38:22.126247+00 f t 22000.00 1 22000.00 967 118 \N 1698 +7812 2025-05-29 04:38:22.131742+00 2025-05-29 04:38:22.131755+00 f t 14000.00 1 14000.00 967 89 \N 1698 +7813 2025-05-29 04:38:22.137209+00 2025-05-29 04:38:22.137221+00 f t 7500.00 1 7500.00 967 85 \N 1698 +7814 2025-05-29 04:38:22.142561+00 2025-05-29 04:38:22.142573+00 f t 21000.00 1 21000.00 967 86 \N 1698 +7828 2025-05-29 05:23:34.403276+00 2025-05-29 05:23:34.403289+00 f t 46000.00 1 46000.00 968 84 \N 1699 +7831 2025-05-29 09:57:31.432038+00 2025-05-29 09:57:31.432052+00 f t 38500.00 1 38500.00 970 82 \N 1701 +7611 2025-05-28 16:18:52.918299+00 2025-05-28 16:18:52.918314+00 f t 38500.00 1 38500.00 951 82 \N 1684 +7612 2025-05-28 16:18:52.92705+00 2025-05-28 16:18:52.92706+00 f t 21000.00 1 21000.00 951 88 \N 1684 +7838 2025-05-29 12:51:37.478735+00 2025-05-29 12:51:37.478748+00 f t 38500.00 1 38500.00 973 82 \N 1703 +7839 2025-05-29 12:51:37.484896+00 2025-05-29 12:51:37.484908+00 f t 21000.00 1 21000.00 973 86 \N 1703 +7841 2025-05-29 12:51:43.400045+00 2025-05-29 12:51:43.400058+00 f t 46000.00 1 46000.00 974 84 \N 1704 +7848 2025-05-29 12:57:11.209519+00 2025-05-29 12:57:11.209532+00 f t 38500.00 1 38500.00 975 82 \N 1705 +7626 2025-05-28 16:46:09.785558+00 2025-05-28 16:46:09.785572+00 f t 25000.00 1 25000.00 952 83 \N 1510 +7628 2025-05-28 17:12:56.095202+00 2025-05-28 17:12:56.095213+00 f t 38500.00 1 38500.00 953 82 \N 1685 +7851 2025-05-29 13:42:40.870476+00 2025-05-29 13:42:40.870488+00 f t 38500.00 1 38500.00 976 82 \N 1707 +7852 2025-05-29 13:42:40.877178+00 2025-05-29 13:42:40.8772+00 f t 7500.00 1 7500.00 976 85 \N 1707 +7865 2025-05-29 13:55:51.913663+00 2025-05-29 13:55:51.913676+00 f t 38500.00 1 38500.00 977 82 \N 1708 +7866 2025-05-29 13:55:51.920221+00 2025-05-29 13:55:51.92023+00 f t 21000.00 1 21000.00 977 163 \N 1708 +7656 2025-05-28 21:26:09.118777+00 2025-05-28 21:26:09.118793+00 f t 46000.00 1 46000.00 957 84 \N 1690 +7658 2025-05-28 23:27:30.949523+00 2025-05-28 23:27:30.949537+00 f t 46000.00 1 46000.00 959 84 \N 1691 +7660 2025-05-28 23:43:13.752444+00 2025-05-28 23:43:13.752455+00 f t 38500.00 1 38500.00 960 82 \N 1692 +7662 2025-05-28 23:52:04.064517+00 2025-05-28 23:52:04.06453+00 f t 46000.00 1 46000.00 961 84 \N 1693 +7881 2025-05-29 14:50:17.685447+00 2025-05-29 14:50:17.685462+00 f t 70000.00 1 70000.00 982 97 \N 1713 +7665 2025-05-29 00:27:59.232691+00 2025-05-29 00:27:59.232704+00 f t 38500.00 1 38500.00 962 82 \N 1694 +7666 2025-05-29 00:27:59.23795+00 2025-05-29 00:27:59.237958+00 f t 7500.00 1 7500.00 962 85 \N 1694 +7668 2025-05-29 01:56:03.801209+00 2025-05-29 01:56:03.801219+00 f t 38500.00 1 38500.00 964 82 \N 1695 +7892 2025-05-29 15:21:50.9239+00 2025-05-29 15:21:50.92391+00 f t 46000.00 1 46000.00 986 84 \N 1714 +7477 2025-05-28 02:35:31.775705+00 2025-05-28 02:35:31.775716+00 f t 38500.00 1 38500.00 931 82 \N 1666 +7927 2025-05-29 16:38:27.662487+00 2025-05-29 16:38:27.6625+00 f t 38500.00 1 38500.00 991 82 \N 933 +7928 2025-05-29 16:38:27.670971+00 2025-05-29 16:38:27.670985+00 f t 21000.00 1 21000.00 991 86 \N 933 +7961 2025-05-29 18:24:52.647847+00 2025-05-29 18:24:52.647858+00 f t 46000.00 1 46000.00 996 84 \N 1719 +8279 2025-05-30 11:08:02.980862+00 2025-05-30 11:08:02.980876+00 f t 38500.00 1 38500.00 1023 82 \N 1740 +8280 2025-05-30 11:08:02.99388+00 2025-05-30 11:08:02.993896+00 f t 7500.00 1 7500.00 1023 85 \N 1740 +7999 2025-05-30 00:28:13.559065+00 2025-05-30 00:28:13.559075+00 f t 38500.00 1 38500.00 1013 82 \N 1733 +8000 2025-05-30 00:28:13.564669+00 2025-05-30 00:28:13.564681+00 f t 21000.00 1 21000.00 1013 163 \N 1733 +8299 2025-05-30 12:01:14.565435+00 2025-05-30 12:01:14.56545+00 f t 38500.00 1 38500.00 1028 82 \N 1742 +8300 2025-05-30 12:01:14.581263+00 2025-05-30 12:01:14.581278+00 f t 7500.00 1 7500.00 1028 85 \N 1742 +8302 2025-05-30 12:07:09.383819+00 2025-05-30 12:07:09.38383+00 f t 38500.00 1 38500.00 1029 82 \N 1743 +8009 2025-05-30 00:29:51.92731+00 2025-05-30 00:29:51.92732+00 f t 38500.00 1 38500.00 1012 82 \N 1732 +8010 2025-05-30 00:29:51.933399+00 2025-05-30 00:29:51.933408+00 f t 21000.00 1 21000.00 1012 163 \N 1732 +8012 2025-05-30 00:44:18.652238+00 2025-05-30 00:44:18.652251+00 f t 38500.00 1 38500.00 1014 82 \N 1734 +8308 2025-05-30 12:09:47.866882+00 2025-05-30 12:09:47.866899+00 f t 46000.00 1 46000.00 1030 84 \N 1744 +8310 2025-05-30 12:16:59.880154+00 2025-05-30 12:16:59.880168+00 f t 38500.00 1 38500.00 1031 82 \N 1745 +8016 2025-05-30 01:37:40.118412+00 2025-05-30 01:37:40.118421+00 f t 38500.00 1 38500.00 1015 82 \N 1735 +8856 2025-06-01 04:03:13.575718+00 2025-06-01 04:03:13.575728+00 f t 38500.00 1 38500.00 1127 82 \N 1824 +8018 2025-05-30 01:37:59.772345+00 2025-05-30 01:37:59.772354+00 f t 46000.00 1 46000.00 1016 84 \N 1736 +8567 2025-05-31 02:13:35.933215+00 2025-05-31 02:13:35.933225+00 f t 38500.00 1 38500.00 1075 82 \N 1789 +8568 2025-05-31 02:13:35.939974+00 2025-05-31 02:13:35.939984+00 f t 7500.00 1 7500.00 1075 85 \N 1789 +8858 2025-06-01 04:26:38.37621+00 2025-06-01 04:26:38.376222+00 f t 38500.00 1 38500.00 1128 82 \N 1825 +8323 2025-05-30 12:29:12.416215+00 2025-05-30 12:29:12.416228+00 f t 38500.00 1 38500.00 1032 82 \N 1746 +8024 2025-05-30 01:39:25.342857+00 2025-05-30 01:39:25.342867+00 f t 38500.00 1 38500.00 1017 82 \N 1737 +8025 2025-05-30 01:39:25.347683+00 2025-05-30 01:39:25.347691+00 f t 21000.00 1 21000.00 1017 86 \N 1737 +8324 2025-05-30 12:29:12.424311+00 2025-05-30 12:29:12.424325+00 f t 7500.00 1 7500.00 1032 85 \N 1746 +8325 2025-05-30 12:29:12.431898+00 2025-05-30 12:29:12.431913+00 f t 21000.00 1 21000.00 1032 163 \N 1746 +8577 2025-05-31 02:46:21.487974+00 2025-05-31 02:46:21.487985+00 f t 38500.00 1 38500.00 1076 82 \N 1790 +8578 2025-05-31 02:46:21.495909+00 2025-05-31 02:46:21.495922+00 f t 21000.00 1 21000.00 1076 163 \N 1790 +8580 2025-05-31 03:36:51.32908+00 2025-05-31 03:36:51.32909+00 f t 46000.00 1 46000.00 1078 84 \N 1791 +8584 2025-05-31 05:04:25.930205+00 2025-05-31 05:04:25.930214+00 f t 38500.00 1 38500.00 1081 82 \N 1792 +8603 2025-05-31 07:10:30.517011+00 2025-05-31 07:10:30.517021+00 f t 38500.00 1 38500.00 1082 82 \N 1793 +8364 2025-05-30 12:51:34.887504+00 2025-05-30 12:51:34.887516+00 f t 38500.00 1 38500.00 1033 82 \N 1747 +8365 2025-05-30 12:51:34.893119+00 2025-05-30 12:51:34.893129+00 f t 7000.00 1 7000.00 1033 93 \N 1747 +8366 2025-05-30 12:51:34.897492+00 2025-05-30 12:51:34.897501+00 f t 38000.00 1 38000.00 1033 110 \N 1747 +8367 2025-05-30 12:51:34.902295+00 2025-05-30 12:51:34.902303+00 f t 12000.00 1 12000.00 1033 146 \N 1747 +8606 2025-05-31 09:53:37.579894+00 2025-05-31 09:53:37.579905+00 f t 38500.00 1 38500.00 1083 82 \N 1794 +8377 2025-05-30 13:52:41.312174+00 2025-05-30 13:52:41.312187+00 f t 38500.00 1 38500.00 1034 82 \N 1748 +8378 2025-05-30 13:52:41.318547+00 2025-05-30 13:52:41.318564+00 f t 21000.00 1 21000.00 1034 86 \N 1748 +8379 2025-05-30 13:52:41.323646+00 2025-05-30 13:52:41.323656+00 f t 7500.00 1 7500.00 1034 85 \N 1748 +8398 2025-05-30 17:03:50.954845+00 2025-05-30 17:03:50.954859+00 f t 38500.00 1 38500.00 1042 82 \N 1753 +8399 2025-05-30 17:03:50.962297+00 2025-05-30 17:03:50.962311+00 f t 21000.00 1 21000.00 1042 86 \N 1753 +8402 2025-05-30 17:49:09.931315+00 2025-05-30 17:49:09.931325+00 f t 38500.00 1 38500.00 1043 82 \N 1757 +8403 2025-05-30 17:49:09.936982+00 2025-05-30 17:49:09.936992+00 f t 68750.00 1 68750.00 1043 142 \N 1757 +8405 2025-05-30 18:04:49.776647+00 2025-05-30 18:04:49.776663+00 f t 38500.00 1 38500.00 1045 82 \N 1759 +8409 2025-05-30 20:29:56.011887+00 2025-05-30 20:29:56.011902+00 f t 46000.00 1 46000.00 1049 84 \N 1762 +8416 2025-05-30 20:44:28.749475+00 2025-05-30 20:44:28.749485+00 f t 46000.00 1 46000.00 1052 84 \N 1763 +8417 2025-05-30 20:44:28.757357+00 2025-05-30 20:44:28.757369+00 f t 46000.00 1 46000.00 1052 84 \N 1764 +8420 2025-05-30 20:51:34.568783+00 2025-05-30 20:51:34.568796+00 f t 38500.00 1 38500.00 1053 82 \N 1765 +8421 2025-05-30 20:51:34.574297+00 2025-05-30 20:51:34.574305+00 f t 21000.00 1 21000.00 1053 86 \N 1765 +8424 2025-05-30 21:25:42.343176+00 2025-05-30 21:25:42.343189+00 f t 38500.00 1 38500.00 1056 82 \N 1766 +8425 2025-05-30 21:25:42.351758+00 2025-05-30 21:25:42.351769+00 f t 21000.00 1 21000.00 1056 88 \N 1766 +8429 2025-05-30 21:58:32.036641+00 2025-05-30 21:58:32.036654+00 f t 38500.00 1 38500.00 1060 82 \N 1768 +8456 2025-05-30 22:31:15.231421+00 2025-05-30 22:31:15.231458+00 f t 85000.00 1 85000.00 1061 108 \N 1772 +8460 2025-05-30 23:28:49.436791+00 2025-05-30 23:28:49.436803+00 f t 46000.00 1 46000.00 1062 84 \N 1773 +8462 2025-05-30 23:42:14.171201+00 2025-05-30 23:42:14.171214+00 f t 46000.00 1 46000.00 1063 84 \N 1774 +8517 2025-05-31 00:22:00.449763+00 2025-05-31 00:22:00.449775+00 f t 38500.00 1 38500.00 1065 82 \N 1776 +8518 2025-05-31 00:22:00.458134+00 2025-05-31 00:22:00.458148+00 f t 22000.00 1 22000.00 1065 118 \N 1776 +8519 2025-05-31 00:22:00.466388+00 2025-05-31 00:22:00.466402+00 f t 14000.00 1 14000.00 1065 89 \N 1776 +8520 2025-05-31 00:22:00.473324+00 2025-05-31 00:22:00.473342+00 f t 7500.00 1 7500.00 1065 85 \N 1776 +8521 2025-05-31 00:22:00.479732+00 2025-05-31 00:22:00.479742+00 f t 21000.00 1 21000.00 1065 86 \N 1776 +8525 2025-05-31 00:22:28.021613+00 2025-05-31 00:22:28.021624+00 f t 38500.00 1 38500.00 1066 82 \N 1778 +8528 2025-05-31 00:22:56.340127+00 2025-05-31 00:22:56.340138+00 f t 38500.00 1 38500.00 1064 82 \N 1777 +8529 2025-05-31 00:22:56.346838+00 2025-05-31 00:22:56.346849+00 f t 75000.00 1 75000.00 1064 143 \N 1777 +8533 2025-05-31 00:46:13.635986+00 2025-05-31 00:46:13.635998+00 f t 25000.00 1 25000.00 1068 83 \N 1780 +8537 2025-05-31 00:46:52.883926+00 2025-05-31 00:46:52.883937+00 f t 46000.00 1 46000.00 1067 84 \N 1779 +8543 2025-05-31 01:04:56.109893+00 2025-05-31 01:04:56.109903+00 f t 85000.00 1 85000.00 1070 108 \N 1783 +8551 2025-05-31 01:05:31.729962+00 2025-05-31 01:05:31.729971+00 f t 38500.00 1 38500.00 1069 82 \N 1784 +8274 2025-05-30 03:12:42.123713+00 2025-05-30 03:12:42.123727+00 f t 38500.00 1 38500.00 1020 82 \N 1739 +8275 2025-05-30 03:12:42.131624+00 2025-05-30 03:12:42.131637+00 f t 7500.00 1 7500.00 1020 85 \N 1739 +8276 2025-05-30 03:12:42.137584+00 2025-05-30 03:12:42.137598+00 f t 21000.00 1 21000.00 1020 86 \N 1739 +8607 2025-05-31 09:53:37.586605+00 2025-05-31 09:53:37.586617+00 f t 21000.00 1 21000.00 1083 88 \N 1794 +12645 2025-06-11 15:29:06.882346+00 2025-06-11 15:29:06.88236+00 f t 42000.00 1 42000.00 1694 82 \N 2285 +8846 2025-06-01 02:41:32.967578+00 2025-06-01 02:41:32.967587+00 f t 38500.00 1 38500.00 1126 82 \N 1823 +8847 2025-06-01 02:41:32.974962+00 2025-06-01 02:41:32.974975+00 f t 7500.00 1 7500.00 1126 85 \N 1823 +9435 2025-06-02 13:36:33.080449+00 2025-06-02 13:36:33.08046+00 f t 50000.00 1 50000.00 1186 84 \N 1874 +8860 2025-06-01 07:02:51.19394+00 2025-06-01 07:02:51.193953+00 f t 25000.00 1 25000.00 1132 83 \N 1826 +8862 2025-06-01 11:53:03.149672+00 2025-06-01 11:53:03.149685+00 f t 46000.00 1 46000.00 1135 84 \N 1827 +9466 2025-06-02 14:48:40.540045+00 2025-06-02 14:48:40.540055+00 f t 93750.00 1 93750.00 1187 90 \N 1875 +8869 2025-06-01 12:43:06.471888+00 2025-06-01 12:43:06.4719+00 f t 46000.00 1 46000.00 1137 84 \N 1828 +9467 2025-06-02 14:48:40.54599+00 2025-06-02 14:48:40.546003+00 f t 42000.00 1 42000.00 1187 82 \N 1875 +9476 2025-06-02 16:28:00.254778+00 2025-06-02 16:28:00.254791+00 f t 50000.00 1 50000.00 1192 84 \N 1879 +8635 2025-05-31 12:07:30.326822+00 2025-05-31 12:07:30.326835+00 f t 38500.00 1 38500.00 1086 82 \N 1796 +8636 2025-05-31 12:07:30.339415+00 2025-05-31 12:07:30.339429+00 f t 19000.00 1 19000.00 1086 122 \N 1796 +8637 2025-05-31 12:07:30.34697+00 2025-05-31 12:07:30.346982+00 f t 14000.00 1 14000.00 1086 89 \N 1796 +9485 2025-06-02 18:47:35.743305+00 2025-06-02 18:47:35.743314+00 f t 42000.00 1 42000.00 1199 82 \N 1882 +9486 2025-06-02 18:47:35.748848+00 2025-06-02 18:47:35.748857+00 f t 22500.00 1 22500.00 1199 163 \N 1882 +8643 2025-05-31 13:29:19.352589+00 2025-05-31 13:29:19.352602+00 f t 46000.00 1 46000.00 1089 84 \N 1799 +8880 2025-06-01 13:44:13.593365+00 2025-06-01 13:44:13.593378+00 f t 38500.00 1 38500.00 1141 82 \N 1831 +8646 2025-05-31 14:49:12.998375+00 2025-05-31 14:49:12.998388+00 f t 38500.00 1 38500.00 1095 82 \N 1800 +8650 2025-05-31 14:57:28.635156+00 2025-05-31 14:57:28.635166+00 f t 46000.00 1 46000.00 1096 84 \N 1801 +9507 2025-06-02 20:12:34.502078+00 2025-06-02 20:12:34.502093+00 f t 50000.00 1 50000.00 1207 84 \N 1887 +8652 2025-05-31 15:07:31.379374+00 2025-05-31 15:07:31.379384+00 f t 57000.00 1 57000.00 1097 106 \N 1802 +8654 2025-05-31 15:18:36.199901+00 2025-05-31 15:18:36.199911+00 f t 50000.00 1 50000.00 1098 105 \N 1804 +9519 2025-06-02 20:26:59.236749+00 2025-06-02 20:26:59.236761+00 f t 42000.00 1 42000.00 1214 82 \N 1890 +8890 2025-06-01 14:13:44.896585+00 2025-06-01 14:13:44.896594+00 f t 38500.00 1 38500.00 1142 82 \N 1832 +8891 2025-06-01 14:13:44.901539+00 2025-06-01 14:13:44.90155+00 f t 7500.00 1 7500.00 1142 85 \N 1832 +8660 2025-05-31 16:17:45.431304+00 2025-05-31 16:17:45.431314+00 f t 38500.00 1 38500.00 1100 82 \N 1805 +8892 2025-06-01 14:13:44.905809+00 2025-06-01 14:13:44.905817+00 f t 21000.00 1 21000.00 1142 86 \N 1832 +9520 2025-06-02 20:26:59.242728+00 2025-06-02 20:26:59.24274+00 f t 22500.00 1 22500.00 1214 163 \N 1890 +8894 2025-06-01 14:48:20.216088+00 2025-06-01 14:48:20.216097+00 f t 38500.00 1 38500.00 1143 82 \N 1836 +8664 2025-05-31 17:13:25.677142+00 2025-05-31 17:13:25.677155+00 f t 85000.00 1 85000.00 1102 108 \N 1807 +8667 2025-05-31 17:19:53.663966+00 2025-05-31 17:19:53.663975+00 f t 38500.00 1 38500.00 1103 82 \N 1808 +8668 2025-05-31 17:19:53.670689+00 2025-05-31 17:19:53.670699+00 f t 75000.00 1 75000.00 1103 143 \N 1808 +9532 2025-06-02 21:11:49.338584+00 2025-06-02 21:11:49.338593+00 f t 42000.00 1 42000.00 1216 82 \N 1892 +8677 2025-05-31 18:23:15.31112+00 2025-05-31 18:23:15.311131+00 f t 25000.00 1 25000.00 1108 83 \N 1809 +8680 2025-05-31 18:25:18.563123+00 2025-05-31 18:25:18.563135+00 f t 46000.00 1 46000.00 1109 84 \N 1810 +8684 2025-05-31 19:51:24.480336+00 2025-05-31 19:51:24.480348+00 f t 38500.00 1 38500.00 1111 82 \N 1811 +8689 2025-05-31 20:51:16.145377+00 2025-05-31 20:51:16.14539+00 f t 85000.00 1 85000.00 1112 108 \N 1812 +8694 2025-05-31 20:56:54.249212+00 2025-05-31 20:56:54.249221+00 f t 38500.00 1 38500.00 1113 82 \N 1813 +8695 2025-05-31 20:56:54.254978+00 2025-05-31 20:56:54.25499+00 f t 68750.00 1 68750.00 1113 142 \N 1813 +8704 2025-05-31 21:30:23.757281+00 2025-05-31 21:30:23.757291+00 f t 46000.00 1 46000.00 1114 84 \N 1814 +8706 2025-05-31 22:13:57.049356+00 2025-05-31 22:13:57.049367+00 f t 46000.00 1 46000.00 1115 84 \N 1817 +8708 2025-05-31 23:45:02.415656+00 2025-05-31 23:45:02.41567+00 f t 46000.00 1 46000.00 1119 84 \N 1818 +8932 2025-06-01 18:36:19.242937+00 2025-06-01 18:36:19.242946+00 f t 38500.00 1 38500.00 1147 82 \N 1838 +8933 2025-06-01 18:36:19.248745+00 2025-06-01 18:36:19.248756+00 f t 7500.00 1 7500.00 1147 85 \N 1838 +8715 2025-06-01 00:04:42.900995+00 2025-06-01 00:04:42.901004+00 f t 38500.00 1 38500.00 1122 82 \N 1819 +8716 2025-06-01 00:04:42.907575+00 2025-06-01 00:04:42.907587+00 f t 57000.00 1 57000.00 1122 106 \N 1819 +8717 2025-06-01 00:04:42.913123+00 2025-06-01 00:04:42.913135+00 f t 68750.00 1 68750.00 1122 142 \N 1819 +8934 2025-06-01 18:36:19.25401+00 2025-06-01 18:36:19.254019+00 f t 38500.00 1 38500.00 1147 82 \N 1839 +8719 2025-06-01 00:38:51.299668+00 2025-06-01 00:38:51.299681+00 f t 25000.00 1 25000.00 1123 83 \N 1820 +8935 2025-06-01 18:36:19.258425+00 2025-06-01 18:36:19.258434+00 f t 7500.00 1 7500.00 1147 85 \N 1839 +8938 2025-06-01 18:42:59.896903+00 2025-06-01 18:42:59.896913+00 f t 38500.00 1 38500.00 1146 82 \N 1837 +8948 2025-06-01 21:43:42.119782+00 2025-06-01 21:43:42.119796+00 f t 46000.00 1 46000.00 1150 84 \N 1841 +8734 2025-06-01 00:54:44.137287+00 2025-06-01 00:54:44.137296+00 f t 38500.00 1 38500.00 1124 82 \N 1821 +8735 2025-06-01 00:54:44.143335+00 2025-06-01 00:54:44.143347+00 f t 7000.00 1 7000.00 1124 93 \N 1821 +8736 2025-06-01 00:54:44.148481+00 2025-06-01 00:54:44.148491+00 f t 31000.00 1 31000.00 1124 111 \N 1821 +8737 2025-06-01 00:54:44.152789+00 2025-06-01 00:54:44.152798+00 f t 12000.00 1 12000.00 1124 146 \N 1821 +8958 2025-06-01 22:42:44.495542+00 2025-06-01 22:42:44.495551+00 f t 38500.00 1 38500.00 1152 82 \N 1843 +8960 2025-06-01 22:43:38.806959+00 2025-06-01 22:43:38.806969+00 f t 95000.00 1 95000.00 1153 103 \N 1844 +8987 2025-06-01 22:52:32.800614+00 2025-06-01 22:52:32.800626+00 f t 38500.00 1 38500.00 1154 82 \N 1845 +8988 2025-06-01 22:52:32.807216+00 2025-06-01 22:52:32.807227+00 f t 21000.00 1 21000.00 1154 86 \N 1845 +8781 2025-06-01 02:26:15.404754+00 2025-06-01 02:26:15.404764+00 f t 57000.00 1 57000.00 1125 106 \N 1822 +9009 2025-06-01 23:10:10.686769+00 2025-06-01 23:10:10.686782+00 f t 38500.00 1 38500.00 1155 82 \N 1846 +9010 2025-06-01 23:10:10.695094+00 2025-06-01 23:10:10.695107+00 f t 21000.00 1 21000.00 1155 86 \N 1846 +9068 2025-06-02 01:05:49.96059+00 2025-06-02 01:05:49.9606+00 f t 38500.00 1 38500.00 1158 82 \N 1847 +9069 2025-06-02 01:05:49.966681+00 2025-06-02 01:05:49.966692+00 f t 21000.00 1 21000.00 1158 87 \N 1847 +9072 2025-06-02 01:23:34.006887+00 2025-06-02 01:23:34.006901+00 f t 38500.00 1 38500.00 1160 82 \N 1849 +9073 2025-06-02 01:23:34.014416+00 2025-06-02 01:23:34.014429+00 f t 7500.00 1 7500.00 1160 85 \N 1849 +9431 2025-06-02 13:27:53.007973+00 2025-06-02 13:27:53.007987+00 f t 38500.00 1 38500.00 1184 82 \N 1873 +9432 2025-06-02 13:27:53.014823+00 2025-06-02 13:27:53.014834+00 f t 7500.00 1 7500.00 1184 85 \N 1873 +9433 2025-06-02 13:27:53.021429+00 2025-06-02 13:27:53.021441+00 f t 21000.00 1 21000.00 1184 86 \N 1873 +10687 2025-06-05 13:48:24.336824+00 2025-06-05 13:48:24.336834+00 f t 0.00 1 0.00 1369 104 \N 2019 +10713 2025-06-05 18:50:52.938164+00 2025-06-05 18:50:52.938175+00 f t 0.00 1 0.00 1380 101 \N 2034 +9732 2025-06-03 14:43:06.349095+00 2025-06-03 14:43:06.349105+00 f t 50000.00 1 50000.00 1247 84 \N 1918 +10772 2025-06-06 01:33:50.237421+00 2025-06-06 01:33:50.237431+00 f t 42000.00 1 42000.00 1398 82 \N 2048 +9738 2025-06-03 15:08:44.561611+00 2025-06-03 15:08:44.56162+00 f t 57000.00 1 57000.00 1251 106 \N 1919 +9741 2025-06-03 15:47:26.061559+00 2025-06-03 15:47:26.061568+00 f t 42000.00 1 42000.00 1254 82 \N 1920 +9742 2025-06-03 15:47:26.06691+00 2025-06-03 15:47:26.066919+00 f t 7500.00 1 7500.00 1254 85 \N 1920 +9744 2025-06-03 15:58:59.236763+00 2025-06-03 15:58:59.236772+00 f t 42000.00 1 42000.00 1256 82 \N 1921 +9746 2025-06-03 16:04:43.138946+00 2025-06-03 16:04:43.138956+00 f t 50000.00 1 50000.00 1257 84 \N 1922 +10773 2025-06-06 01:33:50.242904+00 2025-06-06 01:33:50.242918+00 f t 22500.00 1 22500.00 1398 163 \N 2048 +9750 2025-06-03 16:44:48.741914+00 2025-06-03 16:44:48.741923+00 f t 42000.00 1 42000.00 1260 82 \N 1923 +10792 2025-06-06 02:04:32.301867+00 2025-06-06 02:04:32.301881+00 f t 42000.00 1 42000.00 1402 82 \N 2052 +9765 2025-06-03 17:22:06.206232+00 2025-06-03 17:22:06.206244+00 f t 42000.00 1 42000.00 1261 82 \N 1925 +9505 2025-06-02 19:43:51.607256+00 2025-06-02 19:43:51.607268+00 f t 50000.00 1 50000.00 1203 84 \N 1886 +9766 2025-06-03 17:22:06.21223+00 2025-06-03 17:22:06.212242+00 f t 22500.00 1 22500.00 1261 86 \N 1925 +9792 2025-06-03 18:01:27.767506+00 2025-06-03 18:01:27.767515+00 f t 42000.00 1 42000.00 1262 82 \N 355 +9797 2025-06-03 18:37:39.392965+00 2025-06-03 18:37:39.392974+00 f t 42000.00 1 42000.00 1263 82 \N 1926 +9547 2025-06-03 00:15:12.970036+00 2025-06-03 00:15:12.970049+00 f t 42000.00 1 42000.00 1225 82 \N 1898 +9798 2025-06-03 18:37:39.398398+00 2025-06-03 18:37:39.398407+00 f t 7700.00 1 7700.00 1263 93 \N 1926 +9799 2025-06-03 18:37:39.402888+00 2025-06-03 18:37:39.402896+00 f t 20000.00 1 20000.00 1263 109 \N 1926 +9800 2025-06-03 18:37:39.407762+00 2025-06-03 18:37:39.40777+00 f t 12000.00 1 12000.00 1263 146 \N 1926 +9558 2025-06-03 01:17:07.092208+00 2025-06-03 01:17:07.092217+00 f t 42000.00 1 42000.00 1226 82 \N 1901 +9559 2025-06-03 01:17:07.100308+00 2025-06-03 01:17:07.100321+00 f t 22500.00 1 22500.00 1226 86 \N 1901 +9561 2025-06-03 01:42:54.859937+00 2025-06-03 01:42:54.859947+00 f t 42000.00 1 42000.00 1227 82 \N 1902 +10138 2025-06-04 05:39:44.330838+00 2025-06-04 05:39:44.330846+00 f t 50000.00 1 50000.00 1294 84 \N 1953 +9839 2025-06-03 22:02:56.370492+00 2025-06-03 22:02:56.370503+00 f t 42000.00 1 42000.00 1272 82 \N 1933 +9863 2025-06-03 22:31:34.193631+00 2025-06-03 22:31:34.193643+00 f t 50000.00 1 50000.00 1275 84 \N 1936 +9624 2025-06-03 02:55:33.180938+00 2025-06-03 02:55:33.180947+00 f t 42000.00 1 42000.00 1236 82 \N 1910 +9878 2025-06-03 23:43:15.768102+00 2025-06-03 23:43:15.76811+00 f t 42000.00 1 42000.00 1278 82 \N 1938 +9879 2025-06-03 23:43:15.772878+00 2025-06-03 23:43:15.772889+00 f t 22500.00 1 22500.00 1278 163 \N 1938 +9881 2025-06-03 23:44:01.010032+00 2025-06-03 23:44:01.010043+00 f t 42000.00 1 42000.00 1279 82 \N 1939 +9885 2025-06-04 01:53:13.177108+00 2025-06-04 01:53:13.177119+00 f t 70000.00 1 70000.00 1281 108 \N 1941 +9889 2025-06-04 01:57:27.282919+00 2025-06-04 01:57:27.282929+00 f t 42000.00 1 42000.00 1282 82 \N 1942 +9890 2025-06-04 01:57:27.287864+00 2025-06-04 01:57:27.287872+00 f t 33000.00 1 33000.00 1282 139 \N 1942 +9891 2025-06-04 01:57:27.291614+00 2025-06-04 01:57:27.291622+00 f t 13000.00 1 13000.00 1282 89 \N 1942 +9937 2025-06-04 02:11:14.637316+00 2025-06-04 02:11:14.637325+00 f t 42000.00 1 42000.00 1284 82 \N 1944 +9938 2025-06-04 02:11:14.642351+00 2025-06-04 02:11:14.64236+00 f t 22500.00 1 22500.00 1284 163 \N 1944 +9942 2025-06-04 02:32:24.152371+00 2025-06-04 02:32:24.152385+00 f t 50000.00 1 50000.00 1286 84 \N 1945 +9711 2025-06-03 09:04:26.57665+00 2025-06-03 09:04:26.576659+00 f t 42000.00 1 42000.00 1239 82 \N 1913 +9713 2025-06-03 10:59:33.276696+00 2025-06-03 10:59:33.276707+00 f t 42000.00 1 42000.00 1240 82 \N 1914 +10223 2025-06-04 12:00:58.510614+00 2025-06-04 12:00:58.510628+00 f t 42000.00 1 42000.00 1299 82 \N 1958 +10224 2025-06-04 12:00:58.519149+00 2025-06-04 12:00:58.519162+00 f t 69000.00 1 69000.00 1299 142 \N 1958 +10234 2025-06-04 12:51:28.767666+00 2025-06-04 12:51:28.767679+00 f t 50000.00 1 50000.00 1303 84 \N 1961 +10237 2025-06-04 12:52:25.513779+00 2025-06-04 12:52:25.513789+00 f t 42000.00 1 42000.00 1304 82 \N 1962 +10238 2025-06-04 12:52:25.518838+00 2025-06-04 12:52:25.518847+00 f t 7500.00 1 7500.00 1304 85 \N 1962 +10288 2025-06-04 13:32:20.809048+00 2025-06-04 13:32:20.809059+00 f t 42000.00 1 42000.00 1305 82 \N 1963 +10289 2025-06-04 13:32:20.81498+00 2025-06-04 13:32:20.814992+00 f t 22500.00 1 22500.00 1305 86 \N 1963 +10290 2025-06-04 13:32:20.820923+00 2025-06-04 13:32:20.820932+00 f t 42000.00 1 42000.00 1305 82 \N 1964 +10291 2025-06-04 13:32:20.826243+00 2025-06-04 13:32:20.826252+00 f t 56000.00 1 56000.00 1305 105 \N 1964 +10292 2025-06-04 13:32:20.831392+00 2025-06-04 13:32:20.831401+00 f t 7500.00 1 7500.00 1305 85 \N 1964 +10293 2025-06-04 13:32:20.836661+00 2025-06-04 13:32:20.83667+00 f t 22500.00 1 22500.00 1305 163 \N 1964 +10296 2025-06-04 13:38:11.572904+00 2025-06-04 13:38:11.572914+00 f t 50000.00 1 50000.00 1306 84 \N 1965 +10299 2025-06-04 15:21:21.164403+00 2025-06-04 15:21:21.164414+00 f t 42000.00 1 42000.00 1312 82 \N 1968 +10300 2025-06-04 15:21:21.17016+00 2025-06-04 15:21:21.170172+00 f t 7500.00 1 7500.00 1312 85 \N 1968 +10303 2025-06-04 15:35:25.087838+00 2025-06-04 15:35:25.087851+00 f t 42000.00 1 42000.00 1313 82 \N 1969 +10304 2025-06-04 15:35:25.095282+00 2025-06-04 15:35:25.095295+00 f t 7500.00 1 7500.00 1313 85 \N 1969 +10314 2025-06-04 15:37:53.655755+00 2025-06-04 15:37:53.655764+00 f t 42000.00 1 42000.00 1314 82 \N 1970 +10315 2025-06-04 15:37:53.661159+00 2025-06-04 15:37:53.66117+00 f t 7500.00 1 7500.00 1314 85 \N 1970 +10316 2025-06-04 15:37:53.666658+00 2025-06-04 15:37:53.66667+00 f t 22500.00 1 22500.00 1314 86 \N 1970 +10319 2025-06-04 15:43:31.147673+00 2025-06-04 15:43:31.147687+00 f t 42000.00 1 42000.00 1315 82 \N 1971 +10320 2025-06-04 15:43:31.154521+00 2025-06-04 15:43:31.154531+00 f t 75000.00 1 75000.00 1315 143 \N 1971 +10327 2025-06-04 15:45:24.952789+00 2025-06-04 15:45:24.952798+00 f t 42000.00 1 42000.00 1316 82 \N 1972 +10328 2025-06-04 15:45:24.958876+00 2025-06-04 15:45:24.958885+00 f t 7500.00 1 7500.00 1316 85 \N 1972 +10341 2025-06-04 15:47:34.56232+00 2025-06-04 15:47:34.56233+00 f t 70000.00 1 70000.00 1317 97 \N 1973 +10342 2025-06-04 15:47:34.568011+00 2025-06-04 15:47:34.568024+00 f t 45000.00 1 45000.00 1317 98 \N 1973 +10343 2025-06-04 15:47:34.573299+00 2025-06-04 15:47:34.573308+00 f t 61000.00 1 61000.00 1317 100 \N 1973 +9421 2025-06-02 13:17:03.379201+00 2025-06-02 13:17:03.379211+00 f t 57000.00 1 57000.00 1183 106 \N 1872 +9716 2025-06-03 13:28:12.056569+00 2025-06-03 13:28:12.056582+00 f t 42000.00 1 42000.00 1244 82 \N 1915 +9717 2025-06-03 13:28:12.062786+00 2025-06-03 13:28:12.062798+00 f t 75000.00 1 75000.00 1244 143 \N 1915 +12646 2025-06-11 15:29:06.890477+00 2025-06-11 15:29:06.890489+00 f t 22500.00 1 22500.00 1694 163 \N 2285 +10062 2025-06-04 02:59:09.364531+00 2025-06-04 02:59:09.36454+00 f t 50000.00 1 50000.00 1289 84 \N 1948 +10064 2025-06-04 03:39:10.365464+00 2025-06-04 03:39:10.365476+00 f t 42000.00 1 42000.00 1291 82 \N 1950 +11878 2025-06-09 16:32:11.856087+00 2025-06-09 16:32:11.856096+00 f t 42000.00 1 42000.00 1574 82 \N 2188 +9478 2025-06-02 16:29:04.259557+00 2025-06-02 16:29:04.259567+00 f t 50000.00 1 50000.00 1193 84 \N 1880 +9488 2025-06-02 19:12:57.048544+00 2025-06-02 19:12:57.048556+00 f t 50000.00 1 50000.00 1202 84 \N 1885 +9512 2025-06-02 20:13:23.275395+00 2025-06-02 20:13:23.275406+00 f t 42000.00 1 42000.00 1209 82 \N 1888 +9535 2025-06-02 22:13:56.91871+00 2025-06-02 22:13:56.918725+00 f t 42000.00 1 42000.00 1221 82 \N 1894 +9536 2025-06-02 22:13:56.927282+00 2025-06-02 22:13:56.927295+00 f t 22500.00 1 22500.00 1221 86 \N 1894 +9538 2025-06-02 22:51:40.031212+00 2025-06-02 22:51:40.031221+00 f t 57000.00 1 57000.00 1222 106 \N 1895 +9544 2025-06-02 23:45:48.43746+00 2025-06-02 23:45:48.43747+00 f t 70000.00 1 70000.00 1224 97 \N 1897 +10130 2025-06-04 03:53:41.462262+00 2025-06-04 03:53:41.46227+00 f t 42000.00 1 42000.00 1292 82 \N 1951 +10131 2025-06-04 03:53:41.467469+00 2025-06-04 03:53:41.467477+00 f t 7700.00 1 7700.00 1292 91 \N 1951 +10133 2025-06-04 05:37:57.000955+00 2025-06-04 05:37:57.000964+00 f t 42000.00 1 42000.00 1293 82 \N 1952 +9803 2025-06-03 18:53:35.730433+00 2025-06-03 18:53:35.730441+00 f t 50000.00 1 50000.00 1265 84 \N 1928 +9304 2025-06-02 02:39:23.108767+00 2025-06-02 02:39:23.108778+00 f t 38500.00 1 38500.00 1163 82 \N 1852 +9305 2025-06-02 02:39:23.114732+00 2025-06-02 02:39:23.114745+00 f t 7000.00 1 7000.00 1163 93 \N 1852 +9306 2025-06-02 02:39:23.120013+00 2025-06-02 02:39:23.120024+00 f t 38000.00 1 38000.00 1163 110 \N 1852 +9307 2025-06-02 02:39:23.125693+00 2025-06-02 02:39:23.125704+00 f t 12000.00 1 12000.00 1163 146 \N 1852 +10153 2025-06-04 05:51:16.858699+00 2025-06-04 05:51:16.858708+00 f t 42000.00 1 42000.00 1295 82 \N 1954 +10154 2025-06-04 05:51:16.864092+00 2025-06-04 05:51:16.864103+00 f t 33500.00 1 33500.00 1295 118 \N 1954 +9584 2025-06-03 01:50:45.158951+00 2025-06-03 01:50:45.158964+00 f t 42000.00 1 42000.00 1229 82 \N 1904 +9585 2025-06-03 01:50:45.164895+00 2025-06-03 01:50:45.164907+00 f t 7500.00 1 7500.00 1229 85 \N 1904 +9820 2025-06-03 19:40:21.396802+00 2025-06-03 19:40:21.396813+00 f t 42000.00 1 42000.00 1266 82 \N 1929 +9821 2025-06-03 19:40:21.402316+00 2025-06-03 19:40:21.402327+00 f t 7500.00 1 7500.00 1266 85 \N 1929 +9822 2025-06-03 19:40:21.407469+00 2025-06-03 19:40:21.407481+00 f t 22500.00 1 22500.00 1266 86 \N 1929 +9824 2025-06-03 20:04:42.011052+00 2025-06-03 20:04:42.011065+00 f t 42000.00 1 42000.00 1267 82 \N 1930 +9319 2025-06-02 02:43:34.356294+00 2025-06-02 02:43:34.356307+00 f t 38500.00 1 38500.00 1164 82 \N 1854 +9596 2025-06-03 02:01:48.060049+00 2025-06-03 02:01:48.06006+00 f t 42000.00 1 42000.00 1231 82 \N 1905 +9321 2025-06-02 04:01:17.137448+00 2025-06-02 04:01:17.137457+00 f t 46000.00 1 46000.00 1167 84 \N 1857 +9597 2025-06-03 02:01:48.06575+00 2025-06-03 02:01:48.065759+00 f t 7500.00 1 7500.00 1231 85 \N 1905 +9323 2025-06-02 07:45:06.626627+00 2025-06-02 07:45:06.626637+00 f t 46000.00 1 46000.00 1169 84 \N 1858 +9599 2025-06-03 02:16:02.996563+00 2025-06-03 02:16:02.996574+00 f t 50000.00 1 50000.00 1232 84 \N 1906 +9325 2025-06-02 07:53:02.466058+00 2025-06-02 07:53:02.466072+00 f t 38500.00 1 38500.00 1170 82 \N 1859 +9826 2025-06-03 20:17:42.626583+00 2025-06-03 20:17:42.626595+00 f t 50000.00 1 50000.00 1268 84 \N 1931 +9829 2025-06-03 20:27:02.102295+00 2025-06-03 20:27:02.102309+00 f t 42000.00 1 42000.00 1269 82 \N 1932 +9605 2025-06-03 02:18:59.041141+00 2025-06-03 02:18:59.041152+00 f t 42000.00 1 42000.00 1233 82 \N 1907 +9830 2025-06-03 20:27:02.110991+00 2025-06-03 20:27:02.111003+00 f t 7500.00 1 7500.00 1269 85 \N 1932 +10155 2025-06-04 05:51:16.868631+00 2025-06-04 05:51:16.868639+00 f t 13000.00 1 13000.00 1295 89 \N 1954 +9331 2025-06-02 08:39:19.617182+00 2025-06-02 08:39:19.617194+00 f t 25000.00 1 25000.00 1171 83 \N 1861 +9611 2025-06-03 02:33:33.084983+00 2025-06-03 02:33:33.084993+00 f t 50000.00 1 50000.00 1235 84 \N 1909 +10157 2025-06-04 08:24:14.759257+00 2025-06-04 08:24:14.759267+00 f t 50000.00 1 50000.00 1296 84 \N 1955 +9846 2025-06-03 22:06:25.487463+00 2025-06-03 22:06:25.487472+00 f t 42000.00 1 42000.00 1273 82 \N 1934 +9856 2025-06-03 22:25:15.659756+00 2025-06-03 22:25:15.659767+00 f t 70000.00 1 70000.00 1274 108 \N 1935 +9345 2025-06-02 09:01:00.433762+00 2025-06-02 09:01:00.433777+00 f t 38500.00 1 38500.00 1172 82 \N 1862 +9354 2025-06-02 09:13:12.040968+00 2025-06-02 09:13:12.040979+00 f t 38500.00 1 38500.00 1176 82 \N 1865 +9356 2025-06-02 10:47:08.093472+00 2025-06-02 10:47:08.093486+00 f t 38500.00 1 38500.00 1177 82 \N 1866 +9359 2025-06-02 12:03:45.745932+00 2025-06-02 12:03:45.745942+00 f t 38500.00 1 38500.00 1178 82 \N 1867 +9360 2025-06-02 12:03:45.752451+00 2025-06-02 12:03:45.752462+00 f t 7500.00 1 7500.00 1178 85 \N 1867 +10199 2025-06-04 09:32:47.830345+00 2025-06-04 09:32:47.830355+00 f t 50000.00 1 50000.00 1298 84 \N 1957 +9362 2025-06-02 12:42:54.901249+00 2025-06-02 12:42:54.901258+00 f t 38500.00 1 38500.00 1179 82 \N 1868 +9365 2025-06-02 13:02:07.731389+00 2025-06-02 13:02:07.731399+00 f t 46000.00 1 46000.00 1181 84 \N 1870 +9371 2025-06-02 13:07:55.962487+00 2025-06-02 13:07:55.962499+00 f t 21000.00 1 21000.00 1157 163 \N 1325 +9372 2025-06-02 13:07:55.970457+00 2025-06-02 13:07:55.97047+00 f t 38500.00 1 38500.00 1157 82 \N 1325 +9705 2025-06-03 08:22:39.332017+00 2025-06-03 08:22:39.332026+00 f t 42000.00 1 42000.00 1238 82 \N 1912 +9706 2025-06-03 08:22:39.336977+00 2025-06-03 08:22:39.336986+00 f t 22500.00 1 22500.00 1238 86 \N 1912 +9924 2025-06-04 02:05:13.796089+00 2025-06-04 02:05:13.796105+00 f t 42000.00 1 42000.00 1283 82 \N 1943 +9925 2025-06-04 02:05:13.802473+00 2025-06-04 02:05:13.802485+00 f t 7700.00 1 7700.00 1283 93 \N 1943 +9926 2025-06-04 02:05:13.808506+00 2025-06-04 02:05:13.808519+00 f t 21000.00 1 21000.00 1283 109 \N 1943 +9927 2025-06-04 02:05:13.813023+00 2025-06-04 02:05:13.813031+00 f t 12000.00 1 12000.00 1283 146 \N 1943 +9417 2025-06-02 13:11:35.67191+00 2025-06-02 13:11:35.671924+00 f t 38500.00 1 38500.00 1182 82 \N 1871 +9418 2025-06-02 13:11:35.67872+00 2025-06-02 13:11:35.67873+00 f t 21000.00 1 21000.00 1182 86 \N 1871 +10052 2025-06-04 02:53:13.401168+00 2025-06-04 02:53:13.401177+00 f t 42000.00 1 42000.00 1288 82 \N 1947 +10053 2025-06-04 02:53:13.406499+00 2025-06-04 02:53:13.406508+00 f t 7700.00 1 7700.00 1288 93 \N 1947 +10054 2025-06-04 02:53:13.411094+00 2025-06-04 02:53:13.411101+00 f t 21000.00 1 21000.00 1288 109 \N 1947 +10055 2025-06-04 02:53:13.415215+00 2025-06-04 02:53:13.415222+00 f t 70000.00 1 70000.00 1288 108 \N 1947 +10056 2025-06-04 02:53:13.419546+00 2025-06-04 02:53:13.419554+00 f t 12000.00 1 12000.00 1288 146 \N 1947 +10769 2025-06-06 01:27:28.56502+00 2025-06-06 01:27:28.565031+00 f t 57000.00 1 57000.00 1395 106 \N 2047 +10783 2025-06-06 01:46:29.362753+00 2025-06-06 01:46:29.362763+00 f t 42000.00 1 42000.00 1400 82 \N 2050 +10789 2025-06-06 01:55:42.078725+00 2025-06-06 01:55:42.078739+00 f t 42000.00 1 42000.00 1401 82 \N 2051 +10410 2025-06-04 16:21:15.341491+00 2025-06-04 16:21:15.341501+00 f t 42000.00 1 42000.00 1320 82 \N 1975 +10411 2025-06-04 16:21:15.347313+00 2025-06-04 16:21:15.347325+00 f t 7500.00 1 7500.00 1320 85 \N 1975 +10412 2025-06-04 16:21:15.352747+00 2025-06-04 16:21:15.35276+00 f t 22500.00 1 22500.00 1320 86 \N 1975 +10413 2025-06-04 16:21:15.357622+00 2025-06-04 16:21:15.357633+00 f t 42000.00 1 42000.00 1320 82 \N 1978 +10414 2025-06-04 16:21:15.362456+00 2025-06-04 16:21:15.36247+00 f t 7500.00 1 7500.00 1320 85 \N 1978 +10415 2025-06-04 16:21:15.368342+00 2025-06-04 16:21:15.368355+00 f t 22500.00 1 22500.00 1320 86 \N 1978 +10793 2025-06-06 02:04:32.309977+00 2025-06-06 02:04:32.30999+00 f t 22500.00 1 22500.00 1402 86 \N 2052 +10795 2025-06-06 02:22:32.376184+00 2025-06-06 02:22:32.376198+00 f t 50000.00 1 50000.00 1403 84 \N 2053 +10797 2025-06-06 03:12:15.381018+00 2025-06-06 03:12:15.381028+00 f t 50000.00 1 50000.00 1405 84 \N 2054 +10815 2025-06-06 12:27:08.565386+00 2025-06-06 12:27:08.565397+00 f t 50000.00 1 50000.00 1409 84 \N 2057 +10816 2025-06-06 12:27:08.571523+00 2025-06-06 12:27:08.571535+00 f t 57000.00 1 57000.00 1409 106 \N 2057 +10823 2025-06-06 13:35:40.481959+00 2025-06-06 13:35:40.481968+00 f t 42000.00 1 42000.00 1410 82 \N 2058 +10824 2025-06-06 13:35:40.488395+00 2025-06-06 13:35:40.488405+00 f t 7500.00 1 7500.00 1410 85 \N 2058 +10830 2025-06-06 14:47:00.255536+00 2025-06-06 14:47:00.255545+00 f t 57000.00 1 57000.00 1411 106 \N 2059 +10833 2025-06-06 16:01:27.065029+00 2025-06-06 16:01:27.065042+00 f t 42000.00 1 42000.00 1413 82 \N 2060 +10834 2025-06-06 16:01:27.073443+00 2025-06-06 16:01:27.073458+00 f t 22500.00 1 22500.00 1413 86 \N 2060 +10844 2025-06-06 18:57:02.23065+00 2025-06-06 18:57:02.230664+00 f t 70000.00 1 70000.00 1421 108 \N 2063 +11202 2025-06-07 16:25:30.841568+00 2025-06-07 16:25:30.841584+00 f t 57000.00 1 57000.00 1466 106 \N 2095 +11208 2025-06-07 18:00:30.177485+00 2025-06-07 18:00:30.177498+00 f t 42000.00 1 42000.00 1471 82 \N 2098 +11217 2025-06-07 18:11:33.520764+00 2025-06-07 18:11:33.520774+00 f t 42000.00 1 42000.00 1472 82 \N 2099 +10499 2025-06-04 16:33:41.73846+00 2025-06-04 16:33:41.738472+00 f t 42000.00 1 42000.00 1323 82 \N 1980 +10500 2025-06-04 16:33:41.745418+00 2025-06-04 16:33:41.745434+00 f t 22500.00 1 22500.00 1323 86 \N 1980 +10501 2025-06-04 16:33:41.751122+00 2025-06-04 16:33:41.751135+00 f t 42000.00 1 42000.00 1323 82 \N 1981 +10502 2025-06-04 16:33:41.75605+00 2025-06-04 16:33:41.756063+00 f t 22500.00 1 22500.00 1323 86 \N 1981 +10503 2025-06-04 16:33:41.761172+00 2025-06-04 16:33:41.761182+00 f t 42000.00 1 42000.00 1323 82 \N 1982 +10504 2025-06-04 16:33:41.769245+00 2025-06-04 16:33:41.769258+00 f t 22500.00 1 22500.00 1323 86 \N 1982 +10525 2025-06-04 17:15:03.072969+00 2025-06-04 17:15:03.072985+00 f t 50000.00 1 50000.00 1324 84 \N 1983 +10527 2025-06-04 17:23:09.106394+00 2025-06-04 17:23:09.106403+00 f t 70000.00 1 70000.00 1325 108 \N 1984 +10530 2025-06-04 18:45:08.98396+00 2025-06-04 18:45:08.983973+00 f t 42000.00 1 42000.00 1327 82 \N 1989 +10531 2025-06-04 18:45:08.990536+00 2025-06-04 18:45:08.990549+00 f t 7500.00 1 7500.00 1327 85 \N 1989 +10533 2025-06-04 20:06:20.124549+00 2025-06-04 20:06:20.12456+00 f t 50000.00 1 50000.00 1329 84 \N 1990 +10535 2025-06-04 20:34:47.046867+00 2025-06-04 20:34:47.046882+00 f t 42000.00 1 42000.00 1331 82 \N 1992 +10537 2025-06-04 20:47:35.983166+00 2025-06-04 20:47:35.98318+00 f t 70000.00 1 70000.00 1332 97 \N 1993 +10543 2025-06-04 21:09:27.789105+00 2025-06-04 21:09:27.78912+00 f t 70000.00 1 70000.00 1334 97 \N 1994 +10545 2025-06-04 21:12:16.624281+00 2025-06-04 21:12:16.624295+00 f t 42000.00 1 42000.00 1335 82 \N 1996 +10548 2025-06-04 21:17:02.992856+00 2025-06-04 21:17:02.992872+00 f t 42000.00 1 42000.00 1337 82 \N 1997 +10549 2025-06-04 21:17:03.002624+00 2025-06-04 21:17:03.002634+00 f t 22500.00 1 22500.00 1337 163 \N 1997 +10580 2025-06-04 22:07:05.734071+00 2025-06-04 22:07:05.734085+00 f t 42000.00 1 42000.00 1339 82 \N 1999 +10581 2025-06-04 22:07:05.740712+00 2025-06-04 22:07:05.740724+00 f t 7700.00 1 7700.00 1339 93 \N 1999 +10582 2025-06-04 22:07:05.746165+00 2025-06-04 22:07:05.746174+00 f t 45500.00 1 45500.00 1339 114 \N 1999 +10583 2025-06-04 22:07:05.750558+00 2025-06-04 22:07:05.750566+00 f t 12000.00 1 12000.00 1339 146 \N 1999 +10584 2025-06-04 22:07:05.755321+00 2025-06-04 22:07:05.75533+00 f t 22500.00 1 22500.00 1339 163 \N 1999 +10590 2025-06-04 22:23:48.68964+00 2025-06-04 22:23:48.689651+00 f t 42000.00 1 42000.00 1340 82 \N 2000 +10591 2025-06-04 22:23:48.694544+00 2025-06-04 22:23:48.694554+00 f t 22500.00 1 22500.00 1340 88 \N 2000 +10612 2025-06-04 23:22:47.73255+00 2025-06-04 23:22:47.732559+00 f t 42000.00 1 42000.00 1341 82 \N 2001 +10613 2025-06-04 23:22:47.738629+00 2025-06-04 23:22:47.738638+00 f t 7500.00 1 7500.00 1341 85 \N 2001 +10616 2025-06-05 01:35:52.002479+00 2025-06-05 01:35:52.002491+00 f t 57000.00 1 57000.00 1346 106 \N 2002 +10619 2025-06-05 01:42:40.215296+00 2025-06-05 01:42:40.215307+00 f t 57000.00 1 57000.00 1348 106 \N 2003 +10622 2025-06-05 02:27:40.339017+00 2025-06-05 02:27:40.339027+00 f t 50000.00 1 50000.00 1349 84 \N 2004 +10625 2025-06-05 02:31:57.115808+00 2025-06-05 02:31:57.115818+00 f t 42000.00 1 42000.00 1350 82 \N 2005 +10626 2025-06-05 02:31:57.121383+00 2025-06-05 02:31:57.121395+00 f t 7500.00 1 7500.00 1350 85 \N 2005 +10630 2025-06-05 04:15:44.142782+00 2025-06-05 04:15:44.142795+00 f t 42000.00 1 42000.00 1355 82 \N 2008 +10636 2025-06-05 04:19:57.352327+00 2025-06-05 04:19:57.352337+00 f t 27500.00 1 27500.00 1357 83 \N 2009 +10642 2025-06-05 05:46:54.277262+00 2025-06-05 05:46:54.277272+00 f t 42000.00 1 42000.00 1360 82 \N 2011 +10643 2025-06-05 05:46:54.282692+00 2025-06-05 05:46:54.282705+00 f t 70000.00 1 70000.00 1360 108 \N 2011 +10656 2025-06-05 05:59:47.430093+00 2025-06-05 05:59:47.430104+00 f t 42000.00 1 42000.00 1361 82 \N 2012 +10657 2025-06-05 05:59:47.436222+00 2025-06-05 05:59:47.436232+00 f t 7700.00 1 7700.00 1361 93 \N 2012 +10658 2025-06-05 05:59:47.441774+00 2025-06-05 05:59:47.441788+00 f t 21000.00 1 21000.00 1361 109 \N 2012 +10659 2025-06-05 05:59:47.448163+00 2025-06-05 05:59:47.448174+00 f t 12000.00 1 12000.00 1361 146 \N 2012 +10661 2025-06-05 08:56:10.516744+00 2025-06-05 08:56:10.516757+00 f t 50000.00 1 50000.00 1362 84 \N 2013 +10664 2025-06-05 08:57:22.929703+00 2025-06-05 08:57:22.929714+00 f t 50000.00 1 50000.00 1363 84 \N 2014 +10671 2025-06-05 10:55:41.179117+00 2025-06-05 10:55:41.17913+00 f t 42000.00 1 42000.00 1365 82 \N 2015 +10672 2025-06-05 10:55:41.186101+00 2025-06-05 10:55:41.186112+00 f t 7500.00 1 7500.00 1365 85 \N 2015 +10678 2025-06-05 10:57:39.859378+00 2025-06-05 10:57:39.859393+00 f t 42000.00 1 42000.00 1366 82 \N 2016 +10738 2025-06-05 22:22:52.478442+00 2025-06-05 22:22:52.478455+00 f t 50000.00 1 50000.00 1387 84 \N 2043 +11100 2025-06-07 14:18:01.011496+00 2025-06-07 14:18:01.011505+00 f t 42000.00 1 42000.00 1462 82 \N 2090 +11101 2025-06-07 14:18:01.017478+00 2025-06-07 14:18:01.017491+00 f t 7500.00 1 7500.00 1462 85 \N 2090 +10753 2025-06-05 22:45:29.282841+00 2025-06-05 22:45:29.282852+00 f t 42000.00 1 42000.00 1390 82 \N 2045 +10754 2025-06-05 22:45:29.290596+00 2025-06-05 22:45:29.290606+00 f t 33000.00 1 33000.00 1390 140 \N 2045 +10755 2025-06-05 22:45:29.297512+00 2025-06-05 22:45:29.297522+00 f t 13000.00 1 13000.00 1390 89 \N 2045 +10756 2025-06-05 22:45:29.303498+00 2025-06-05 22:45:29.30351+00 f t 22500.00 1 22500.00 1390 163 \N 2045 +10690 2025-06-05 14:44:50.541603+00 2025-06-05 14:44:50.541614+00 f t 42000.00 1 42000.00 1371 82 \N 2022 +10691 2025-06-05 14:44:50.548202+00 2025-06-05 14:44:50.548214+00 f t 22500.00 1 22500.00 1371 163 \N 2022 +10693 2025-06-05 15:01:16.719523+00 2025-06-05 15:01:16.719534+00 f t 70000.00 1 70000.00 1372 97 \N 2023 +10778 2025-06-06 01:39:50.362712+00 2025-06-06 01:39:50.362723+00 f t 42000.00 1 42000.00 1399 82 \N 2049 +10779 2025-06-06 01:39:50.36977+00 2025-06-06 01:39:50.369782+00 f t 7700.00 1 7700.00 1399 93 \N 2049 +10780 2025-06-06 01:39:50.374855+00 2025-06-06 01:39:50.374865+00 f t 21000.00 1 21000.00 1399 109 \N 2049 +10781 2025-06-06 01:39:50.37979+00 2025-06-06 01:39:50.3798+00 f t 12000.00 1 12000.00 1399 146 \N 2049 +10705 2025-06-05 17:25:57.774535+00 2025-06-05 17:25:57.774548+00 f t 15400.00 1 15400.00 1377 92 \N 2031 +10706 2025-06-05 17:25:57.780628+00 2025-06-05 17:25:57.780637+00 f t 42000.00 1 42000.00 1377 82 \N 2031 +10710 2025-06-05 18:30:18.261483+00 2025-06-05 18:30:18.261498+00 f t 42000.00 1 42000.00 1379 82 \N 2033 +10715 2025-06-05 19:38:30.031263+00 2025-06-05 19:38:30.031277+00 f t 27500.00 1 27500.00 1382 83 \N 2037 +10718 2025-06-05 21:12:20.467892+00 2025-06-05 21:12:20.467901+00 f t 42000.00 1 42000.00 1385 82 \N 2041 +10719 2025-06-05 21:12:20.473759+00 2025-06-05 21:12:20.473768+00 f t 22500.00 1 22500.00 1385 86 \N 2041 +10804 2025-06-06 10:47:57.880406+00 2025-06-06 10:47:57.880417+00 f t 42000.00 1 42000.00 1406 82 \N 2055 +10805 2025-06-06 10:47:57.886546+00 2025-06-06 10:47:57.886555+00 f t 7700.00 1 7700.00 1406 91 \N 2055 +10809 2025-06-06 11:30:30.86363+00 2025-06-06 11:30:30.863644+00 f t 42000.00 1 42000.00 1407 82 \N 2056 +11164 2025-06-07 15:16:12.497118+00 2025-06-07 15:16:12.497133+00 f t 42000.00 1 42000.00 1464 82 \N 2092 +10732 2025-06-05 21:50:39.964665+00 2025-06-05 21:50:39.964675+00 f t 42000.00 1 42000.00 1386 82 \N 2042 +10733 2025-06-05 21:50:39.972153+00 2025-06-05 21:50:39.972163+00 f t 7500.00 1 7500.00 1386 85 \N 2042 +10845 2025-06-06 19:11:47.001491+00 2025-06-06 19:11:47.001502+00 f t 50000.00 1 50000.00 1374 84 \N 2026 +11218 2025-06-07 18:11:33.526345+00 2025-06-07 18:11:33.526354+00 f t 22500.00 1 22500.00 1472 163 \N 2099 +11230 2025-06-07 18:53:52.877274+00 2025-06-07 18:53:52.877284+00 f t 61000.00 1 61000.00 1474 100 \N 2100 +11233 2025-06-07 19:01:30.521929+00 2025-06-07 19:01:30.521939+00 f t 42000.00 1 42000.00 1475 82 \N 2101 +11234 2025-06-07 19:01:30.528927+00 2025-06-07 19:01:30.528937+00 f t 7500.00 1 7500.00 1475 85 \N 2101 +11249 2025-06-07 19:43:18.666429+00 2025-06-07 19:43:18.666441+00 f t 42000.00 1 42000.00 1477 82 \N 2103 +11250 2025-06-07 19:43:18.671788+00 2025-06-07 19:43:18.671798+00 f t 7500.00 1 7500.00 1477 85 \N 2103 +10881 2025-06-06 19:17:26.383296+00 2025-06-06 19:17:26.383308+00 f t 42000.00 1 42000.00 1422 82 \N 2064 +10882 2025-06-06 19:17:26.389492+00 2025-06-06 19:17:26.389504+00 f t 7500.00 1 7500.00 1422 85 \N 2064 +10883 2025-06-06 19:17:26.395744+00 2025-06-06 19:17:26.395757+00 f t 22500.00 1 22500.00 1422 86 \N 2064 +10884 2025-06-06 19:17:26.401843+00 2025-06-06 19:17:26.401855+00 f t 22500.00 1 22500.00 1422 87 \N 2064 +10893 2025-06-06 23:01:16.318058+00 2025-06-06 23:01:16.31807+00 f t 27500.00 1 27500.00 1424 83 \N 2067 +10914 2025-06-06 23:49:48.982166+00 2025-06-06 23:49:48.982178+00 f t 42000.00 1 42000.00 1427 82 \N 2068 +10915 2025-06-06 23:49:48.989135+00 2025-06-06 23:49:48.989147+00 f t 22500.00 1 22500.00 1427 86 \N 2068 +10917 2025-06-06 23:56:56.426721+00 2025-06-06 23:56:56.42673+00 f t 50000.00 1 50000.00 1428 84 \N 2069 +10919 2025-06-07 00:27:24.564173+00 2025-06-07 00:27:24.564183+00 f t 42000.00 1 42000.00 1431 82 \N 2071 +10922 2025-06-07 00:56:40.740905+00 2025-06-07 00:56:40.740915+00 f t 93750.00 1 93750.00 1432 90 \N 2072 +10923 2025-06-07 00:56:40.746735+00 2025-06-07 00:56:40.746747+00 f t 42000.00 1 42000.00 1432 82 \N 2072 +10986 2025-06-07 01:33:20.349679+00 2025-06-07 01:33:20.34969+00 f t 15400.00 1 15400.00 1433 92 \N 2073 +10987 2025-06-07 01:33:20.355114+00 2025-06-07 01:33:20.355123+00 f t 42000.00 1 42000.00 1433 82 \N 2073 +10988 2025-06-07 01:33:20.3595+00 2025-06-07 01:33:20.359508+00 f t 69000.00 1 69000.00 1433 142 \N 2073 +10989 2025-06-07 01:33:20.363752+00 2025-06-07 01:33:20.363761+00 f t 7700.00 1 7700.00 1433 93 \N 2073 +10990 2025-06-07 01:33:20.369402+00 2025-06-07 01:33:20.369424+00 f t 45500.00 1 45500.00 1433 114 \N 2073 +10991 2025-06-07 01:33:20.37459+00 2025-06-07 01:33:20.374599+00 f t 12000.00 1 12000.00 1433 146 \N 2073 +10992 2025-06-07 01:33:20.379653+00 2025-06-07 01:33:20.379662+00 f t 7500.00 1 7500.00 1433 85 \N 2073 +10993 2025-06-07 01:33:20.384493+00 2025-06-07 01:33:20.384506+00 f t 22500.00 1 22500.00 1433 163 \N 2073 +10999 2025-06-07 01:47:36.996889+00 2025-06-07 01:47:36.996902+00 f t 45000.00 1 45000.00 1434 98 \N 2074 +11001 2025-06-07 02:37:02.189171+00 2025-06-07 02:37:02.189185+00 f t 75000.00 1 75000.00 1439 99 \N 2075 +11014 2025-06-07 02:55:00.083715+00 2025-06-07 02:55:00.083727+00 f t 42000.00 1 42000.00 1440 82 \N 2076 +11015 2025-06-07 02:55:00.08931+00 2025-06-07 02:55:00.089318+00 f t 22500.00 1 22500.00 1440 86 \N 2076 +11017 2025-06-07 03:12:13.91227+00 2025-06-07 03:12:13.912279+00 f t 42000.00 1 42000.00 1441 82 \N 2077 +11019 2025-06-07 03:56:24.644893+00 2025-06-07 03:56:24.644908+00 f t 42000.00 1 42000.00 1442 82 \N 2078 +11024 2025-06-07 04:28:50.227831+00 2025-06-07 04:28:50.227842+00 f t 57000.00 1 57000.00 1444 106 \N 2079 +11041 2025-06-07 10:57:37.323986+00 2025-06-07 10:57:37.323999+00 f t 50000.00 1 50000.00 1445 84 \N 2080 +11058 2025-06-07 11:09:44.364641+00 2025-06-07 11:09:44.364655+00 f t 42000.00 1 42000.00 1446 82 \N 2081 +11060 2025-06-07 11:11:50.634174+00 2025-06-07 11:11:50.634183+00 f t 50000.00 1 50000.00 1447 84 \N 2082 +11078 2025-06-07 11:24:47.100968+00 2025-06-07 11:24:47.100978+00 f t 50000.00 1 50000.00 1449 84 \N 2084 +11080 2025-06-07 11:59:35.08298+00 2025-06-07 11:59:35.082994+00 f t 42000.00 1 42000.00 1450 82 \N 2085 +11082 2025-06-07 12:14:19.384366+00 2025-06-07 12:14:19.38438+00 f t 57000.00 1 57000.00 1452 106 \N 2086 +11085 2025-06-07 12:51:40.146734+00 2025-06-07 12:51:40.146743+00 f t 42000.00 1 42000.00 1455 82 \N 2087 +11086 2025-06-07 12:51:40.15411+00 2025-06-07 12:51:40.154124+00 f t 7500.00 1 7500.00 1455 85 \N 2087 +11845 2025-06-09 14:41:11.949838+00 2025-06-09 14:41:11.949851+00 f t 95000.00 1 95000.00 1569 103 \N 2183 +11095 2025-06-07 13:33:53.703729+00 2025-06-07 13:33:53.70374+00 f t 95000.00 1 95000.00 1458 103 \N 2088 +11475 2025-06-08 10:17:32.030634+00 2025-06-08 10:17:32.030645+00 f t 42000.00 1 42000.00 1509 82 \N 2130 +11476 2025-06-08 10:17:32.040198+00 2025-06-08 10:17:32.040211+00 f t 22500.00 1 22500.00 1509 163 \N 2130 +11477 2025-06-08 10:17:32.048587+00 2025-06-08 10:17:32.048602+00 f t 42000.00 1 42000.00 1509 82 \N 2131 +11478 2025-06-08 10:17:32.055142+00 2025-06-08 10:17:32.055154+00 f t 22500.00 1 22500.00 1509 163 \N 2131 +11480 2025-06-08 11:32:19.181811+00 2025-06-08 11:32:19.18182+00 f t 45000.00 1 45000.00 1510 98 \N 2132 +11906 2025-06-09 18:35:28.273339+00 2025-06-09 18:35:28.273348+00 f t 57000.00 1 57000.00 1586 106 \N 2195 +11915 2025-06-09 19:12:19.150168+00 2025-06-09 19:12:19.150182+00 f t 57000.00 1 57000.00 1588 106 \N 2197 +11180 2025-06-07 15:18:35.514937+00 2025-06-07 15:18:35.51495+00 f t 27500.00 1 27500.00 1465 83 \N 2093 +11198 2025-06-07 16:25:09.536699+00 2025-06-07 16:25:09.536711+00 f t 50000.00 1 50000.00 1467 84 \N 2096 +11204 2025-06-07 17:01:03.67161+00 2025-06-07 17:01:03.67162+00 f t 57000.00 1 57000.00 1469 106 \N 2097 +11497 2025-06-08 11:45:50.826666+00 2025-06-08 11:45:50.826681+00 f t 50000.00 1 50000.00 1511 84 \N 2133 +11499 2025-06-08 12:25:43.464178+00 2025-06-08 12:25:43.464191+00 f t 95000.00 1 95000.00 1513 103 \N 2134 +11960 2025-06-09 22:46:30.071955+00 2025-06-09 22:46:30.071964+00 f t 50000.00 1 50000.00 1603 84 \N 2206 +11503 2025-06-08 12:37:10.43952+00 2025-06-08 12:37:10.439529+00 f t 50000.00 1 50000.00 1514 84 \N 2135 +11966 2025-06-10 02:47:31.51523+00 2025-06-10 02:47:31.515244+00 f t 50000.00 1 50000.00 1612 84 \N 2215 +11243 2025-06-07 19:17:08.558645+00 2025-06-07 19:17:08.558659+00 f t 42000.00 1 42000.00 1476 82 \N 2102 +11244 2025-06-07 19:17:08.567124+00 2025-06-07 19:17:08.567134+00 f t 69000.00 1 69000.00 1476 142 \N 2102 +11252 2025-06-07 21:19:04.683173+00 2025-06-07 21:19:04.683185+00 f t 50000.00 1 50000.00 1479 84 \N 2104 +11511 2025-06-08 13:02:42.253135+00 2025-06-08 13:02:42.253145+00 f t 50000.00 1 50000.00 1515 84 \N 2136 +11257 2025-06-07 21:21:38.183083+00 2025-06-07 21:21:38.183093+00 f t 50000.00 1 50000.00 1480 84 \N 2105 +11259 2025-06-07 22:06:30.196044+00 2025-06-07 22:06:30.196075+00 f t 27500.00 1 27500.00 1482 83 \N 2106 +11261 2025-06-07 23:11:17.114049+00 2025-06-07 23:11:17.114061+00 f t 42000.00 1 42000.00 1483 82 \N 2109 +11518 2025-06-08 13:04:10.890813+00 2025-06-08 13:04:10.890826+00 f t 50000.00 1 50000.00 1516 84 \N 2137 +11520 2025-06-08 14:20:27.112535+00 2025-06-08 14:20:27.112546+00 f t 42000.00 1 42000.00 1519 82 \N 2139 +11522 2025-06-08 14:31:17.199251+00 2025-06-08 14:31:17.199261+00 f t 42000.00 1 42000.00 1520 82 \N 2140 +11274 2025-06-07 23:41:25.038208+00 2025-06-07 23:41:25.038217+00 f t 50000.00 1 50000.00 1484 84 \N 2110 +11275 2025-06-07 23:41:25.043692+00 2025-06-07 23:41:25.043735+00 f t 57000.00 1 57000.00 1484 106 \N 2110 +11276 2025-06-07 23:41:25.050734+00 2025-06-07 23:41:25.050746+00 f t 27500.00 1 27500.00 1484 83 \N 2110 +11279 2025-06-08 00:40:58.241291+00 2025-06-08 00:40:58.2413+00 f t 42000.00 1 42000.00 1487 82 \N 2111 +11280 2025-06-08 00:40:58.246586+00 2025-06-08 00:40:58.246595+00 f t 22500.00 1 22500.00 1487 86 \N 2111 +11534 2025-06-08 14:35:31.316664+00 2025-06-08 14:35:31.316676+00 f t 42000.00 1 42000.00 1521 82 \N 2141 +11536 2025-06-08 14:55:05.034116+00 2025-06-08 14:55:05.034132+00 f t 50000.00 1 50000.00 1522 84 \N 2143 +11287 2025-06-08 00:43:36.407392+00 2025-06-08 00:43:36.407405+00 f t 50000.00 1 50000.00 1488 84 \N 2112 +11289 2025-06-08 01:01:53.237229+00 2025-06-08 01:01:53.237239+00 f t 75000.00 1 75000.00 1485 99 \N 2114 +11291 2025-06-08 01:02:53.004708+00 2025-06-08 01:02:53.004721+00 f t 50000.00 1 50000.00 1491 84 \N 2115 +11539 2025-06-08 15:25:00.644796+00 2025-06-08 15:25:00.644805+00 f t 42000.00 1 42000.00 1525 82 \N 2144 +11293 2025-06-08 01:37:22.998627+00 2025-06-08 01:37:22.998638+00 f t 50000.00 1 50000.00 1493 84 \N 2117 +11540 2025-06-08 15:25:00.649904+00 2025-06-08 15:25:00.649913+00 f t 22500.00 1 22500.00 1525 163 \N 2144 +11297 2025-06-08 02:10:50.665944+00 2025-06-08 02:10:50.665958+00 f t 42000.00 1 42000.00 1494 82 \N 2118 +11299 2025-06-08 03:04:24.239222+00 2025-06-08 03:04:24.239236+00 f t 42000.00 1 42000.00 1496 82 \N 2120 +11548 2025-06-08 15:53:08.047706+00 2025-06-08 15:53:08.047718+00 f t 50000.00 1 50000.00 1526 84 \N 2145 +11306 2025-06-08 03:14:19.110667+00 2025-06-08 03:14:19.110681+00 f t 42000.00 1 42000.00 1497 82 \N 2121 +11551 2025-06-08 16:15:25.622971+00 2025-06-08 16:15:25.622984+00 f t 42000.00 1 42000.00 1527 82 \N 2146 +11552 2025-06-08 16:15:25.629424+00 2025-06-08 16:15:25.629435+00 f t 69000.00 1 69000.00 1527 142 \N 2146 +11554 2025-06-08 16:17:40.625562+00 2025-06-08 16:17:40.625571+00 f t 50000.00 1 50000.00 1528 84 \N 2147 +11557 2025-06-08 18:38:05.113378+00 2025-06-08 18:38:05.113389+00 f t 42000.00 1 42000.00 1531 82 \N 2148 +11558 2025-06-08 18:38:05.122158+00 2025-06-08 18:38:05.122168+00 f t 22500.00 1 22500.00 1531 86 \N 2148 +11560 2025-06-08 19:13:01.90763+00 2025-06-08 19:13:01.907645+00 f t 42000.00 1 42000.00 1533 82 \N 2149 +11320 2025-06-08 03:21:00.059549+00 2025-06-08 03:21:00.059562+00 f t 42000.00 1 42000.00 1498 82 \N 2122 +11565 2025-06-08 19:20:45.083831+00 2025-06-08 19:20:45.08384+00 f t 57000.00 1 57000.00 1534 106 \N 2150 +11567 2025-06-08 21:20:13.664976+00 2025-06-08 21:20:13.66499+00 f t 50000.00 1 50000.00 1535 84 \N 2155 +11327 2025-06-08 03:22:35.4117+00 2025-06-08 03:22:35.41171+00 f t 42000.00 1 42000.00 1501 82 \N 2123 +11569 2025-06-08 22:14:39.043335+00 2025-06-08 22:14:39.043345+00 f t 50000.00 1 50000.00 1537 84 \N 2156 +11570 2025-06-08 22:35:57.078416+00 2025-06-08 22:35:57.078425+00 f t 50000.00 1 50000.00 1539 84 \N 2159 +11334 2025-06-08 03:25:40.762173+00 2025-06-08 03:25:40.762183+00 f t 42000.00 1 42000.00 1502 82 \N 2124 +11341 2025-06-08 03:26:42.624011+00 2025-06-08 03:26:42.624023+00 f t 42000.00 1 42000.00 1503 82 \N 2125 +11582 2025-06-08 23:03:47.96195+00 2025-06-08 23:03:47.96196+00 f t 50000.00 1 50000.00 1541 84 \N 2160 +11586 2025-06-08 23:49:52.517961+00 2025-06-08 23:49:52.51797+00 f t 42000.00 1 42000.00 1543 82 \N 2161 +11587 2025-06-08 23:49:52.522433+00 2025-06-08 23:49:52.522444+00 f t 33000.00 1 33000.00 1543 140 \N 2161 +11363 2025-06-08 03:43:58.901351+00 2025-06-08 03:43:58.90136+00 f t 42000.00 1 42000.00 1507 82 \N 2127 +11364 2025-06-08 03:43:58.906581+00 2025-06-08 03:43:58.906589+00 f t 7500.00 1 7500.00 1507 85 \N 2127 +11374 2025-06-08 03:44:57.434445+00 2025-06-08 03:44:57.434454+00 f t 42000.00 1 42000.00 1504 82 \N 2128 +11375 2025-06-08 03:44:57.440135+00 2025-06-08 03:44:57.440144+00 f t 7500.00 1 7500.00 1504 85 \N 2128 +11376 2025-06-08 03:44:57.445026+00 2025-06-08 03:44:57.445035+00 f t 22500.00 1 22500.00 1504 163 \N 2128 +11393 2025-06-08 05:28:46.988006+00 2025-06-08 05:28:46.988017+00 f t 42000.00 1 42000.00 1508 82 \N 2129 +11394 2025-06-08 05:28:46.994261+00 2025-06-08 05:28:46.994273+00 f t 7700.00 1 7700.00 1508 93 \N 2129 +11395 2025-06-08 05:28:46.999907+00 2025-06-08 05:28:46.999919+00 f t 52000.00 1 52000.00 1508 113 \N 2129 +11396 2025-06-08 05:28:47.005626+00 2025-06-08 05:28:47.005637+00 f t 12000.00 1 12000.00 1508 146 \N 2129 +11588 2025-06-08 23:49:52.526333+00 2025-06-08 23:49:52.526341+00 f t 13000.00 1 13000.00 1543 89 \N 2161 +11590 2025-06-08 23:55:06.728694+00 2025-06-08 23:55:06.728707+00 f t 50000.00 1 50000.00 1544 84 \N 2162 +11593 2025-06-09 00:37:27.638544+00 2025-06-09 00:37:27.638557+00 f t 42000.00 1 42000.00 1545 82 \N 2163 +11594 2025-06-09 00:37:27.64301+00 2025-06-09 00:37:27.643019+00 f t 7500.00 1 7500.00 1545 85 \N 2163 +11858 2025-06-09 15:35:51.963093+00 2025-06-09 15:35:51.963103+00 f t 0.00 1 0.00 1571 104 \N 2185 +15395 2025-06-17 18:58:17.999834+00 2025-06-17 18:58:17.999844+00 f t 42000.00 1 42000.00 2005 82 \N 2539 +11884 2025-06-09 16:49:45.72968+00 2025-06-09 16:49:45.72969+00 f t 57000.00 1 57000.00 1578 106 \N 2190 +11901 2025-06-09 17:02:30.195087+00 2025-06-09 17:02:30.195098+00 f t 57000.00 1 57000.00 1579 106 \N 2191 +11904 2025-06-09 17:39:51.176082+00 2025-06-09 17:39:51.176092+00 f t 57000.00 1 57000.00 1583 106 \N 2194 +12285 2025-06-10 21:56:11.00588+00 2025-06-10 21:56:11.005893+00 f t 42000.00 1 42000.00 1657 82 \N 2255 +12286 2025-06-10 21:56:11.013977+00 2025-06-10 21:56:11.013988+00 f t 7700.00 1 7700.00 1657 93 \N 2255 +12287 2025-06-10 21:56:11.019506+00 2025-06-10 21:56:11.019515+00 f t 41000.00 1 41000.00 1657 110 \N 2255 +12288 2025-06-10 21:56:11.024723+00 2025-06-10 21:56:11.024763+00 f t 12000.00 1 12000.00 1657 146 \N 2255 +14533 2025-06-16 22:18:30.756341+00 2025-06-16 22:18:30.75635+00 f t 42000.00 1 42000.00 1958 82 \N 2492 +14534 2025-06-16 22:18:30.762664+00 2025-06-16 22:18:30.762673+00 f t 22500.00 1 22500.00 1958 163 \N 2492 +11940 2025-06-09 19:32:41.13442+00 2025-06-09 19:32:41.134433+00 f t 42000.00 1 42000.00 1590 82 \N 2199 +11941 2025-06-09 19:32:41.139969+00 2025-06-09 19:32:41.13998+00 f t 7500.00 1 7500.00 1590 85 \N 2199 +11944 2025-06-09 20:27:11.617148+00 2025-06-09 20:27:11.617158+00 f t 95000.00 1 95000.00 1594 103 \N 2201 +11964 2025-06-10 01:08:20.399574+00 2025-06-10 01:08:20.399586+00 f t 50000.00 1 50000.00 1607 84 \N 2211 +11979 2025-06-10 03:09:43.384387+00 2025-06-10 03:09:43.384396+00 f t 42000.00 1 42000.00 1614 82 \N 2217 +11986 2025-06-10 04:21:57.874923+00 2025-06-10 04:21:57.874934+00 f t 42000.00 1 42000.00 1615 82 \N 2218 +11987 2025-06-10 04:21:57.881847+00 2025-06-10 04:21:57.88186+00 f t 22500.00 1 22500.00 1615 163 \N 2218 +11989 2025-06-10 05:31:14.678235+00 2025-06-10 05:31:14.678249+00 f t 42000.00 1 42000.00 1616 82 \N 2219 +11991 2025-06-10 05:47:05.440506+00 2025-06-10 05:47:05.440516+00 f t 42000.00 1 42000.00 1617 82 \N 2220 +11993 2025-06-10 08:31:03.305101+00 2025-06-10 08:31:03.305111+00 f t 50000.00 1 50000.00 1618 84 \N 2221 +11655 2025-06-09 00:48:42.220993+00 2025-06-09 00:48:42.221009+00 f t 42000.00 1 42000.00 1546 82 \N 2164 +11656 2025-06-09 00:48:42.228931+00 2025-06-09 00:48:42.228941+00 f t 22500.00 1 22500.00 1546 163 \N 2164 +12371 2025-06-10 23:15:57.270523+00 2025-06-10 23:15:57.270533+00 f t 42000.00 1 42000.00 1662 82 \N 2258 +12372 2025-06-10 23:15:57.275723+00 2025-06-10 23:15:57.275733+00 f t 41000.00 1 41000.00 1662 135 \N 2258 +12373 2025-06-10 23:15:57.280271+00 2025-06-10 23:15:57.28028+00 f t 13000.00 1 13000.00 1662 89 \N 2258 +12382 2025-06-10 23:18:23.831967+00 2025-06-10 23:18:23.831978+00 f t 42000.00 1 42000.00 1663 82 \N 2259 +12384 2025-06-10 23:20:57.230342+00 2025-06-10 23:20:57.230351+00 f t 42000.00 1 42000.00 1665 82 \N 2260 +12387 2025-06-11 00:03:38.153635+00 2025-06-11 00:03:38.153645+00 f t 42000.00 1 42000.00 1666 82 \N 2261 +12388 2025-06-11 00:03:38.159719+00 2025-06-11 00:03:38.159729+00 f t 7500.00 1 7500.00 1666 85 \N 2261 +12419 2025-06-11 01:44:05.379899+00 2025-06-11 01:44:05.379915+00 f t 42000.00 1 42000.00 1671 82 \N 2264 +12080 2025-06-10 12:10:40.094668+00 2025-06-10 12:10:40.094677+00 f t 42000.00 1 42000.00 1623 82 \N 2227 +12081 2025-06-10 12:10:40.1006+00 2025-06-10 12:10:40.100617+00 f t 12000.00 1 12000.00 1623 116 \N 2227 +12082 2025-06-10 12:10:40.105515+00 2025-06-10 12:10:40.105523+00 f t 7700.00 1 7700.00 1623 93 \N 2227 +12083 2025-06-10 12:10:40.110803+00 2025-06-10 12:10:40.110812+00 f t 41000.00 1 41000.00 1623 110 \N 2227 +12084 2025-06-10 12:10:40.115527+00 2025-06-10 12:10:40.115536+00 f t 12000.00 1 12000.00 1623 146 \N 2227 +12420 2025-06-11 01:44:05.388505+00 2025-06-11 01:44:05.388516+00 f t 7500.00 1 7500.00 1671 85 \N 2264 +12421 2025-06-11 01:44:05.39633+00 2025-06-11 01:44:05.396345+00 f t 22500.00 1 22500.00 1671 163 \N 2264 +12106 2025-06-10 12:46:03.006292+00 2025-06-10 12:46:03.006306+00 f t 95000.00 1 95000.00 1625 103 \N 2229 +12107 2025-06-10 12:46:03.013282+00 2025-06-10 12:46:03.013291+00 f t 42000.00 1 42000.00 1625 82 \N 2229 +12108 2025-06-10 12:46:03.018633+00 2025-06-10 12:46:03.018642+00 f t 7700.00 1 7700.00 1625 93 \N 2229 +12109 2025-06-10 12:46:03.023439+00 2025-06-10 12:46:03.023448+00 f t 21000.00 1 21000.00 1625 109 \N 2229 +12110 2025-06-10 12:46:03.028528+00 2025-06-10 12:46:03.028537+00 f t 12000.00 1 12000.00 1625 146 \N 2229 +12113 2025-06-10 12:46:34.289309+00 2025-06-10 12:46:34.289321+00 f t 42000.00 1 42000.00 1626 82 \N 2228 +12114 2025-06-10 12:46:34.29551+00 2025-06-10 12:46:34.29553+00 f t 22500.00 1 22500.00 1626 163 \N 2228 +12116 2025-06-10 14:19:24.241337+00 2025-06-10 14:19:24.24135+00 f t 42000.00 1 42000.00 1629 82 \N 2232 +12118 2025-06-10 15:19:35.292642+00 2025-06-10 15:19:35.292651+00 f t 50000.00 1 50000.00 1631 84 \N 2236 +12121 2025-06-10 15:45:32.215944+00 2025-06-10 15:45:32.215958+00 f t 42000.00 1 42000.00 1632 82 \N 2237 +12122 2025-06-10 15:45:32.224103+00 2025-06-10 15:45:32.224117+00 f t 22500.00 1 22500.00 1632 86 \N 2237 +12124 2025-06-10 16:02:24.760725+00 2025-06-10 16:02:24.760737+00 f t 50000.00 1 50000.00 1637 84 \N 2240 +12153 2025-06-10 18:02:43.542415+00 2025-06-10 18:02:43.542428+00 f t 42000.00 1 42000.00 1644 82 \N 2245 +12154 2025-06-10 18:02:43.549065+00 2025-06-10 18:02:43.549077+00 f t 7500.00 1 7500.00 1644 85 \N 2245 +12155 2025-06-10 18:02:43.554157+00 2025-06-10 18:02:43.554167+00 f t 22500.00 1 22500.00 1644 86 \N 2245 +12157 2025-06-10 19:20:02.829589+00 2025-06-10 19:20:02.829602+00 f t 50000.00 1 50000.00 1646 84 \N 2246 +12159 2025-06-10 19:32:45.558453+00 2025-06-10 19:32:45.558464+00 f t 42000.00 1 42000.00 1647 82 \N 2247 +12166 2025-06-10 20:24:27.475028+00 2025-06-10 20:24:27.475038+00 f t 42000.00 1 42000.00 1650 82 \N 2249 +12167 2025-06-10 20:24:27.481126+00 2025-06-10 20:24:27.481139+00 f t 22500.00 1 22500.00 1650 163 \N 2249 +12529 2025-06-11 10:59:30.575513+00 2025-06-11 10:59:30.575549+00 f t 42000.00 1 42000.00 1682 82 \N 2272 +12530 2025-06-11 10:59:30.581601+00 2025-06-11 10:59:30.58161+00 f t 7500.00 1 7500.00 1682 85 \N 2272 +12531 2025-06-11 10:59:30.586864+00 2025-06-11 10:59:30.586873+00 f t 22500.00 1 22500.00 1682 163 \N 2272 +12532 2025-06-11 10:59:30.593827+00 2025-06-11 10:59:30.593842+00 f t 42000.00 1 42000.00 1682 82 \N 2273 +12533 2025-06-11 10:59:30.599952+00 2025-06-11 10:59:30.599961+00 f t 7500.00 1 7500.00 1682 85 \N 2273 +12535 2025-06-11 11:22:38.150563+00 2025-06-11 11:22:38.150574+00 f t 50000.00 1 50000.00 1684 84 \N 2274 +12544 2025-06-11 12:39:15.768612+00 2025-06-11 12:39:15.768627+00 f t 42000.00 1 42000.00 1687 82 \N 2275 +12549 2025-06-11 13:30:29.294446+00 2025-06-11 13:30:29.294461+00 f t 50000.00 1 50000.00 1688 84 \N 2278 +12553 2025-06-11 13:49:30.710148+00 2025-06-11 13:49:30.710159+00 f t 42000.00 1 42000.00 1689 82 \N 2279 +11847 2025-06-09 14:47:26.835661+00 2025-06-09 14:47:26.835674+00 f t 42000.00 1 42000.00 1570 82 \N 2184 +14929 2025-06-17 01:32:35.890269+00 2025-06-17 01:32:35.890277+00 f t 42000.00 1 42000.00 1969 82 \N 2504 +11881 2025-06-09 16:45:47.789702+00 2025-06-09 16:45:47.789712+00 f t 57000.00 1 57000.00 1577 106 \N 2189 +11897 2025-06-09 17:01:42.366318+00 2025-06-09 17:01:42.366331+00 f t 42000.00 1 42000.00 1580 82 \N 2192 +11898 2025-06-09 17:01:42.373486+00 2025-06-09 17:01:42.373499+00 f t 7500.00 1 7500.00 1580 85 \N 2192 +11899 2025-06-09 17:01:42.379655+00 2025-06-09 17:01:42.379669+00 f t 22500.00 1 22500.00 1580 163 \N 2192 +11908 2025-06-09 18:58:25.105532+00 2025-06-09 18:58:25.105548+00 f t 70000.00 1 70000.00 1587 108 \N 2196 +11936 2025-06-09 19:26:11.125062+00 2025-06-09 19:26:11.125072+00 f t 42000.00 1 42000.00 1589 82 \N 2198 +11937 2025-06-09 19:26:11.13208+00 2025-06-09 19:26:11.132091+00 f t 16800.00 1 16800.00 1589 96 \N 2198 +11948 2025-06-09 22:14:35.323924+00 2025-06-09 22:14:35.323938+00 f t 50000.00 1 50000.00 1599 84 \N 2203 +11951 2025-06-09 22:15:48.04044+00 2025-06-09 22:15:48.04045+00 f t 50000.00 1 50000.00 1600 84 \N 2204 +11962 2025-06-10 00:15:29.979771+00 2025-06-10 00:15:29.979782+00 f t 42000.00 1 42000.00 1606 82 \N 2208 +11968 2025-06-10 02:57:25.53211+00 2025-06-10 02:57:25.532124+00 f t 42000.00 1 42000.00 1613 82 \N 2216 +11697 2025-06-09 01:31:42.094908+00 2025-06-09 01:31:42.094918+00 f t 42000.00 1 42000.00 1547 82 \N 2165 +11698 2025-06-09 01:31:42.099978+00 2025-06-09 01:31:42.099994+00 f t 33000.00 1 33000.00 1547 133 \N 2165 +11699 2025-06-09 01:31:42.104442+00 2025-06-09 01:31:42.10445+00 f t 13000.00 1 13000.00 1547 89 \N 2165 +11700 2025-06-09 01:31:42.108585+00 2025-06-09 01:31:42.108594+00 f t 7500.00 1 7500.00 1547 85 \N 2165 +12718 2025-06-11 18:45:53.761071+00 2025-06-11 18:45:53.761084+00 f t 42000.00 1 42000.00 1702 82 \N 2292 +12719 2025-06-11 18:45:53.768772+00 2025-06-11 18:45:53.768781+00 f t 7500.00 1 7500.00 1702 85 \N 2292 +11712 2025-06-09 03:28:08.151218+00 2025-06-09 03:28:08.151228+00 f t 95000.00 1 95000.00 1548 103 \N 2167 +11998 2025-06-10 10:25:57.774602+00 2025-06-10 10:25:57.774612+00 f t 57000.00 1 57000.00 1619 106 \N 2222 +12000 2025-06-10 10:28:30.269807+00 2025-06-10 10:28:30.269822+00 f t 57000.00 1 57000.00 1620 106 \N 2223 +11717 2025-06-09 05:45:56.374533+00 2025-06-09 05:45:56.374543+00 f t 42000.00 1 42000.00 1549 82 \N 2168 +11719 2025-06-09 07:08:24.157843+00 2025-06-09 07:08:24.157853+00 f t 42000.00 1 42000.00 1550 82 \N 2169 +12006 2025-06-10 11:17:07.479161+00 2025-06-10 11:17:07.47917+00 f t 45000.00 1 45000.00 1621 98 \N 2224 +12345 2025-06-10 21:59:00.630678+00 2025-06-10 21:59:00.630691+00 f t 42000.00 1 42000.00 1658 82 \N 2256 +12346 2025-06-10 21:59:00.63715+00 2025-06-10 21:59:00.637158+00 f t 7700.00 1 7700.00 1658 93 \N 2256 +12347 2025-06-10 21:59:00.642272+00 2025-06-10 21:59:00.642281+00 f t 41000.00 1 41000.00 1658 110 \N 2256 +12348 2025-06-10 21:59:00.647436+00 2025-06-10 21:59:00.647445+00 f t 12000.00 1 12000.00 1658 146 \N 2256 +12356 2025-06-10 22:11:52.490059+00 2025-06-10 22:11:52.490118+00 f t 45000.00 1 45000.00 1656 98 \N 2253 +11732 2025-06-09 11:34:59.524513+00 2025-06-09 11:34:59.524523+00 f t 0.00 1 0.00 1553 101 \N 2171 +12358 2025-06-10 22:44:58.094554+00 2025-06-10 22:44:58.094567+00 f t 56000.00 1 56000.00 1661 105 \N 2257 +11735 2025-06-09 12:07:41.899602+00 2025-06-09 12:07:41.899617+00 f t 42000.00 1 42000.00 1555 82 \N 2173 +11736 2025-06-09 12:07:41.907257+00 2025-06-09 12:07:41.907271+00 f t 7500.00 1 7500.00 1555 85 \N 2173 +11746 2025-06-09 12:28:41.454164+00 2025-06-09 12:28:41.454174+00 f t 42000.00 1 42000.00 1556 82 \N 2174 +11747 2025-06-09 12:28:41.459749+00 2025-06-09 12:28:41.459758+00 f t 7500.00 1 7500.00 1556 85 \N 2174 +11748 2025-06-09 12:28:41.464382+00 2025-06-09 12:28:41.464391+00 f t 22500.00 1 22500.00 1556 163 \N 2174 +12394 2025-06-11 00:15:37.816718+00 2025-06-11 00:15:37.816727+00 f t 42000.00 1 42000.00 1668 82 \N 2262 +12395 2025-06-11 00:15:37.822743+00 2025-06-11 00:15:37.822752+00 f t 7500.00 1 7500.00 1668 85 \N 2262 +12397 2025-06-11 01:13:38.204627+00 2025-06-11 01:13:38.204641+00 f t 27500.00 1 27500.00 1669 83 \N 2263 +11768 2025-06-09 12:41:46.550454+00 2025-06-09 12:41:46.550463+00 f t 42000.00 1 42000.00 1557 82 \N 2175 +11769 2025-06-09 12:41:46.555719+00 2025-06-09 12:41:46.555727+00 f t 7500.00 1 7500.00 1557 85 \N 2175 +11770 2025-06-09 12:41:46.559549+00 2025-06-09 12:41:46.559557+00 f t 22500.00 1 22500.00 1557 88 \N 2175 +11771 2025-06-09 12:41:46.563168+00 2025-06-09 12:41:46.563175+00 f t 22500.00 1 22500.00 1557 163 \N 2175 +12431 2025-06-11 02:00:58.678994+00 2025-06-11 02:00:58.679004+00 f t 42000.00 1 42000.00 1672 82 \N 2265 +12432 2025-06-11 02:00:58.686209+00 2025-06-11 02:00:58.686223+00 f t 7500.00 1 7500.00 1672 85 \N 2265 +12433 2025-06-11 02:00:58.693478+00 2025-06-11 02:00:58.693491+00 f t 22500.00 1 22500.00 1672 86 \N 2265 +11787 2025-06-09 13:10:50.259766+00 2025-06-09 13:10:50.259776+00 f t 50000.00 1 50000.00 1558 84 \N 2176 +12457 2025-06-11 03:35:26.21513+00 2025-06-11 03:35:26.21514+00 f t 42000.00 1 42000.00 1675 82 \N 2267 +12458 2025-06-11 03:35:26.222243+00 2025-06-11 03:35:26.222252+00 f t 7700.00 1 7700.00 1675 93 \N 2267 +11792 2025-06-09 13:51:15.474393+00 2025-06-09 13:51:15.474403+00 f t 42000.00 1 42000.00 1562 82 \N 2177 +11793 2025-06-09 13:51:15.48149+00 2025-06-09 13:51:15.4815+00 f t 22500.00 1 22500.00 1562 163 \N 2177 +12459 2025-06-11 03:35:26.228087+00 2025-06-11 03:35:26.228096+00 f t 12000.00 1 12000.00 1675 146 \N 2267 +12133 2025-06-10 16:20:26.533001+00 2025-06-10 16:20:26.533014+00 f t 42000.00 1 42000.00 1638 82 \N 2241 +12139 2025-06-10 16:35:10.53759+00 2025-06-10 16:35:10.537604+00 f t 42000.00 1 42000.00 1639 82 \N 2242 +12142 2025-06-10 17:21:22.948002+00 2025-06-10 17:21:22.948015+00 f t 42000.00 1 42000.00 1641 82 \N 2243 +12143 2025-06-10 17:21:22.954246+00 2025-06-10 17:21:22.954256+00 f t 22500.00 1 22500.00 1641 86 \N 2243 +11810 2025-06-09 13:53:12.936942+00 2025-06-09 13:53:12.936952+00 f t 50000.00 1 50000.00 1563 84 \N 2178 +11811 2025-06-09 13:53:12.942302+00 2025-06-09 13:53:12.942315+00 f t 42000.00 1 42000.00 1563 82 \N 2178 +11812 2025-06-09 13:53:12.948479+00 2025-06-09 13:53:12.948492+00 f t 7700.00 1 7700.00 1563 93 \N 2178 +11813 2025-06-09 13:53:12.953114+00 2025-06-09 13:53:12.953123+00 f t 52000.00 1 52000.00 1563 113 \N 2178 +11814 2025-06-09 13:53:12.957401+00 2025-06-09 13:53:12.957414+00 f t 12000.00 1 12000.00 1563 146 \N 2178 +11817 2025-06-09 13:57:48.767326+00 2025-06-09 13:57:48.767335+00 f t 75000.00 1 75000.00 1566 99 \N 2180 +12489 2025-06-11 09:43:03.327451+00 2025-06-11 09:43:03.327464+00 f t 42000.00 1 42000.00 1680 82 \N 2270 +11819 2025-06-09 14:01:19.231285+00 2025-06-09 14:01:19.231295+00 f t 57000.00 1 57000.00 1567 106 \N 2181 +12490 2025-06-11 09:43:03.334065+00 2025-06-11 09:43:03.334074+00 f t 33000.00 1 33000.00 1680 140 \N 2270 +12172 2025-06-10 20:28:42.239908+00 2025-06-10 20:28:42.23992+00 f t 50000.00 1 50000.00 1651 84 \N 2250 +12174 2025-06-10 20:29:18.396204+00 2025-06-10 20:29:18.396216+00 f t 50000.00 1 50000.00 1652 84 \N 2251 +12491 2025-06-11 09:43:03.338662+00 2025-06-11 09:43:03.33867+00 f t 13000.00 1 13000.00 1680 89 \N 2270 +12493 2025-06-11 09:55:51.048859+00 2025-06-11 09:55:51.048872+00 f t 27500.00 1 27500.00 1681 83 \N 2271 +12192 2025-06-10 20:48:27.485292+00 2025-06-10 20:48:27.485305+00 f t 50000.00 1 50000.00 1653 84 \N 2252 +12554 2025-06-11 13:49:30.71798+00 2025-06-11 13:49:30.717995+00 f t 31000.00 1 31000.00 1689 138 \N 2279 +12555 2025-06-11 13:49:30.723842+00 2025-06-11 13:49:30.723852+00 f t 13000.00 1 13000.00 1689 89 \N 2279 +12662 2025-06-11 15:49:40.016319+00 2025-06-11 15:49:40.016334+00 f t 42000.00 1 42000.00 1695 82 \N 2287 +12663 2025-06-11 15:49:40.023605+00 2025-06-11 15:49:40.023619+00 f t 57000.00 1 57000.00 1695 106 \N 2287 +12664 2025-06-11 15:49:40.02999+00 2025-06-11 15:49:40.030001+00 f t 7700.00 1 7700.00 1695 93 \N 2287 +12665 2025-06-11 15:49:40.03632+00 2025-06-11 15:49:40.036332+00 f t 21000.00 1 21000.00 1695 109 \N 2287 +12666 2025-06-11 15:49:40.043604+00 2025-06-11 15:49:40.043619+00 f t 70000.00 1 70000.00 1695 108 \N 2287 +12667 2025-06-11 15:49:40.050898+00 2025-06-11 15:49:40.050913+00 f t 12000.00 1 12000.00 1695 146 \N 2287 +12669 2025-06-11 17:29:30.902443+00 2025-06-11 17:29:30.902458+00 f t 42000.00 1 42000.00 1696 82 \N 2288 +12683 2025-06-11 18:33:44.37597+00 2025-06-11 18:33:44.37598+00 f t 42000.00 1 42000.00 1700 82 \N 2289 +12686 2025-06-11 18:42:29.739446+00 2025-06-11 18:42:29.739457+00 f t 42000.00 1 42000.00 1701 82 \N 2291 +12687 2025-06-11 18:42:29.746208+00 2025-06-11 18:42:29.746222+00 f t 7500.00 1 7500.00 1701 85 \N 2291 +13606 2025-06-14 15:08:15.513131+00 2025-06-14 15:08:15.513143+00 f t 50000.00 1 50000.00 1838 84 \N 2392 +13624 2025-06-14 17:22:54.306384+00 2025-06-14 17:22:54.306397+00 f t 42000.00 1 42000.00 1840 82 \N 2394 +13625 2025-06-14 17:22:54.311844+00 2025-06-14 17:22:54.311856+00 f t 7700.00 1 7700.00 1840 93 \N 2394 +13626 2025-06-14 17:22:54.316455+00 2025-06-14 17:22:54.316465+00 f t 45500.00 1 45500.00 1840 114 \N 2394 +13169 2025-06-13 03:34:45.223444+00 2025-06-13 03:34:45.223454+00 f t 42000.00 1 42000.00 1774 82 \N 2351 +13172 2025-06-13 06:40:10.780191+00 2025-06-13 06:40:10.780205+00 f t 42000.00 1 42000.00 1780 82 \N 2353 +12606 2025-06-11 14:44:19.144479+00 2025-06-11 14:44:19.144489+00 f t 27500.00 1 27500.00 1690 83 \N 2280 +12607 2025-06-11 14:44:19.150621+00 2025-06-11 14:44:19.150633+00 f t 42000.00 1 42000.00 1690 82 \N 2281 +12740 2025-06-11 18:48:58.615996+00 2025-06-11 18:48:58.616007+00 f t 42000.00 1 42000.00 1703 82 \N 2293 +12741 2025-06-11 18:48:58.621632+00 2025-06-11 18:48:58.621641+00 f t 7500.00 1 7500.00 1703 85 \N 2293 +12745 2025-06-11 18:53:58.324504+00 2025-06-11 18:53:58.324514+00 f t 42000.00 1 42000.00 1704 82 \N 2294 +12746 2025-06-11 18:53:58.329371+00 2025-06-11 18:53:58.329379+00 f t 33000.00 1 33000.00 1704 140 \N 2294 +12747 2025-06-11 18:53:58.333469+00 2025-06-11 18:53:58.333481+00 f t 13000.00 1 13000.00 1704 89 \N 2294 +12750 2025-06-11 18:55:46.883821+00 2025-06-11 18:55:46.883835+00 f t 42000.00 1 42000.00 1705 82 \N 2295 +12755 2025-06-11 19:11:41.975707+00 2025-06-11 19:11:41.97572+00 f t 42000.00 1 42000.00 1706 82 \N 2296 +12760 2025-06-11 22:31:30.543234+00 2025-06-11 22:31:30.543244+00 f t 50000.00 1 50000.00 1710 84 \N 2301 +12637 2025-06-11 15:21:16.580453+00 2025-06-11 15:21:16.580467+00 f t 42000.00 1 42000.00 1692 82 \N 2283 +12638 2025-06-11 15:21:16.58568+00 2025-06-11 15:21:16.585689+00 f t 7500.00 1 7500.00 1692 85 \N 2283 +12639 2025-06-11 15:21:16.59089+00 2025-06-11 15:21:16.590903+00 f t 22500.00 1 22500.00 1692 86 \N 2283 +12640 2025-06-11 15:21:16.596714+00 2025-06-11 15:21:16.596722+00 f t 22500.00 1 22500.00 1692 87 \N 2283 +12773 2025-06-11 22:36:01.77213+00 2025-06-11 22:36:01.772143+00 f t 42000.00 1 42000.00 1711 82 \N 2302 +12774 2025-06-11 22:36:01.780143+00 2025-06-11 22:36:01.780153+00 f t 7700.00 1 7700.00 1711 93 \N 2302 +12775 2025-06-11 22:36:01.791647+00 2025-06-11 22:36:01.79166+00 f t 33000.00 1 33000.00 1711 111 \N 2302 +12776 2025-06-11 22:36:01.799414+00 2025-06-11 22:36:01.799425+00 f t 12000.00 1 12000.00 1711 146 \N 2302 +12778 2025-06-11 22:40:43.117491+00 2025-06-11 22:40:43.117502+00 f t 50000.00 1 50000.00 1712 84 \N 2303 +12797 2025-06-11 22:54:52.238177+00 2025-06-11 22:54:52.238189+00 f t 42000.00 1 42000.00 1713 82 \N 2304 +12798 2025-06-11 22:54:52.249858+00 2025-06-11 22:54:52.249868+00 f t 7700.00 1 7700.00 1713 93 \N 2304 +12799 2025-06-11 22:54:52.255671+00 2025-06-11 22:54:52.255679+00 f t 21000.00 1 21000.00 1713 109 \N 2304 +12800 2025-06-11 22:54:52.261435+00 2025-06-11 22:54:52.261445+00 f t 12000.00 1 12000.00 1713 146 \N 2304 +12801 2025-06-11 22:54:52.266349+00 2025-06-11 22:54:52.266357+00 f t 7500.00 1 7500.00 1713 85 \N 2304 +12803 2025-06-11 23:16:41.404141+00 2025-06-11 23:16:41.404149+00 f t 50000.00 1 50000.00 1714 84 \N 2305 +12831 2025-06-11 23:30:15.00935+00 2025-06-11 23:30:15.00936+00 f t 70000.00 1 70000.00 1716 108 \N 2306 +12833 2025-06-11 23:36:07.194193+00 2025-06-11 23:36:07.194202+00 f t 42000.00 1 42000.00 1717 82 \N 2307 +12837 2025-06-12 00:10:36.134559+00 2025-06-12 00:10:36.13457+00 f t 50000.00 1 50000.00 1718 84 \N 2308 +12840 2025-06-12 00:47:00.104691+00 2025-06-12 00:47:00.1047+00 f t 50000.00 1 50000.00 1719 84 \N 2310 +12844 2025-06-12 04:03:01.490258+00 2025-06-12 04:03:01.490269+00 f t 42000.00 1 42000.00 1722 82 \N 2311 +12846 2025-06-12 10:28:37.021254+00 2025-06-12 10:28:37.021264+00 f t 50000.00 1 50000.00 1724 84 \N 2312 +12849 2025-06-12 12:16:21.336599+00 2025-06-12 12:16:21.336612+00 f t 42000.00 1 42000.00 1729 82 \N 2313 +12850 2025-06-12 12:16:21.344613+00 2025-06-12 12:16:21.344626+00 f t 22500.00 1 22500.00 1729 86 \N 2313 +12859 2025-06-12 13:23:19.483108+00 2025-06-12 13:23:19.483117+00 f t 27500.00 1 27500.00 1733 83 \N 1510 +12876 2025-06-12 13:40:21.579427+00 2025-06-12 13:40:21.579442+00 f t 50000.00 1 50000.00 1735 84 \N 443 +12882 2025-06-12 13:40:55.543725+00 2025-06-12 13:40:55.543737+00 f t 56000.00 1 56000.00 1734 105 \N 2315 +12900 2025-06-12 15:28:06.016959+00 2025-06-12 15:28:06.016973+00 f t 42000.00 1 42000.00 1739 82 \N 2321 +12907 2025-06-12 16:41:17.355556+00 2025-06-12 16:41:17.355569+00 f t 70000.00 1 70000.00 1745 108 \N 2324 +12909 2025-06-12 16:47:47.988211+00 2025-06-12 16:47:47.988221+00 f t 95000.00 1 95000.00 1746 103 \N 2325 +12916 2025-06-12 17:01:06.999522+00 2025-06-12 17:01:06.999536+00 f t 42000.00 1 42000.00 1743 82 \N 2323 +12917 2025-06-12 17:01:07.008798+00 2025-06-12 17:01:07.008812+00 f t 7500.00 1 7500.00 1743 85 \N 2323 +12929 2025-06-12 17:07:17.413077+00 2025-06-12 17:07:17.413087+00 f t 50000.00 1 50000.00 1747 84 \N 2326 +12941 2025-06-12 20:25:13.517729+00 2025-06-12 20:25:13.517739+00 f t 42000.00 1 42000.00 1753 82 \N 2331 +12942 2025-06-12 20:25:13.524362+00 2025-06-12 20:25:13.524374+00 f t 27500.00 1 27500.00 1753 83 \N 2331 +12953 2025-06-12 21:03:30.266248+00 2025-06-12 21:03:30.266258+00 f t 42000.00 1 42000.00 1754 82 \N 2332 +12954 2025-06-12 21:03:30.273943+00 2025-06-12 21:03:30.273955+00 f t 22500.00 1 22500.00 1754 86 \N 2332 +12958 2025-06-12 21:07:23.460656+00 2025-06-12 21:07:23.460669+00 f t 42000.00 1 42000.00 1755 82 \N 2334 +12969 2025-06-12 21:17:21.107553+00 2025-06-12 21:17:21.107563+00 f t 42000.00 1 42000.00 1757 82 \N 2336 +12970 2025-06-12 21:17:21.114711+00 2025-06-12 21:17:21.114726+00 f t 7700.00 1 7700.00 1757 91 \N 2336 +14930 2025-06-17 01:32:35.89495+00 2025-06-17 01:32:35.894958+00 f t 7700.00 1 7700.00 1969 91 \N 2504 +14931 2025-06-17 01:32:35.899124+00 2025-06-17 01:32:35.899157+00 f t 7500.00 1 7500.00 1969 85 \N 2504 +12976 2025-06-12 21:52:36.853992+00 2025-06-12 21:52:36.854006+00 f t 50000.00 1 50000.00 1758 84 \N 2337 +15399 2025-06-17 18:58:54.398977+00 2025-06-17 18:58:54.398992+00 f t 50000.00 1 50000.00 2004 84 \N 2538 +13578 2025-06-14 14:59:24.099771+00 2025-06-14 14:59:24.099784+00 f t 42000.00 1 42000.00 1837 82 \N 2391 +13579 2025-06-14 14:59:24.106168+00 2025-06-14 14:59:24.106179+00 f t 7700.00 1 7700.00 1837 93 \N 2391 +13580 2025-06-14 14:59:24.111402+00 2025-06-14 14:59:24.111412+00 f t 21000.00 1 21000.00 1837 109 \N 2391 +13581 2025-06-14 14:59:24.116674+00 2025-06-14 14:59:24.116685+00 f t 12000.00 1 12000.00 1837 146 \N 2391 +12988 2025-06-12 22:06:46.782343+00 2025-06-12 22:06:46.782352+00 f t 42000.00 1 42000.00 1760 82 \N 2339 +12989 2025-06-12 22:06:46.788844+00 2025-06-12 22:06:46.788857+00 f t 7500.00 1 7500.00 1760 85 \N 2339 +12990 2025-06-12 22:06:46.795006+00 2025-06-12 22:06:46.79502+00 f t 22500.00 1 22500.00 1760 86 \N 2339 +12997 2025-06-12 22:12:46.424468+00 2025-06-12 22:12:46.424479+00 f t 42000.00 1 42000.00 1761 82 \N 2340 +12998 2025-06-12 22:12:46.431934+00 2025-06-12 22:12:46.431945+00 f t 7500.00 1 7500.00 1761 85 \N 2340 +13627 2025-06-14 17:22:54.320835+00 2025-06-14 17:22:54.320844+00 f t 12000.00 1 12000.00 1840 146 \N 2394 +13003 2025-06-12 22:14:29.469475+00 2025-06-12 22:14:29.469488+00 f t 42000.00 1 42000.00 1762 82 \N 2341 +13004 2025-06-12 22:14:29.476997+00 2025-06-12 22:14:29.47701+00 f t 7700.00 1 7700.00 1762 93 \N 2341 +13005 2025-06-12 22:14:29.48381+00 2025-06-12 22:14:29.483824+00 f t 33000.00 1 33000.00 1762 112 \N 2341 +13006 2025-06-12 22:14:29.490474+00 2025-06-12 22:14:29.490484+00 f t 12000.00 1 12000.00 1762 146 \N 2341 +13628 2025-06-14 17:22:54.325101+00 2025-06-14 17:22:54.325108+00 f t 22500.00 1 22500.00 1840 163 \N 2394 +13173 2025-06-13 06:40:10.788568+00 2025-06-13 06:40:10.788578+00 f t 22500.00 1 22500.00 1780 88 \N 2353 +13631 2025-06-14 18:14:13.311768+00 2025-06-14 18:14:13.311782+00 f t 42000.00 1 42000.00 1841 82 \N 2395 +13175 2025-06-13 10:12:06.035375+00 2025-06-13 10:12:06.035389+00 f t 70000.00 1 70000.00 1781 108 \N 2354 +13632 2025-06-14 18:14:13.318567+00 2025-06-14 18:14:13.318581+00 f t 22500.00 1 22500.00 1841 86 \N 2395 +13177 2025-06-13 10:41:34.810318+00 2025-06-13 10:41:34.810328+00 f t 70000.00 1 70000.00 1783 97 \N 2355 +13634 2025-06-14 18:40:41.286222+00 2025-06-14 18:40:41.286232+00 f t 50000.00 1 50000.00 1842 84 \N 2396 +13180 2025-06-13 11:16:07.21051+00 2025-06-13 11:16:07.210526+00 f t 42000.00 1 42000.00 1784 82 \N 2356 +13181 2025-06-13 11:16:07.218307+00 2025-06-13 11:16:07.218319+00 f t 7500.00 1 7500.00 1784 85 \N 2356 +13184 2025-06-13 11:30:03.77167+00 2025-06-13 11:30:03.771685+00 f t 42000.00 1 42000.00 1785 82 \N 2357 +13185 2025-06-13 11:30:03.78363+00 2025-06-13 11:30:03.783646+00 f t 75000.00 1 75000.00 1785 143 \N 2357 +13190 2025-06-13 11:41:16.662925+00 2025-06-13 11:41:16.662937+00 f t 42000.00 1 42000.00 1786 82 \N 2358 +13191 2025-06-13 11:41:16.66967+00 2025-06-13 11:41:16.669682+00 f t 7700.00 1 7700.00 1786 93 \N 2358 +13192 2025-06-13 11:41:16.675447+00 2025-06-13 11:41:16.675459+00 f t 33000.00 1 33000.00 1786 111 \N 2358 +13193 2025-06-13 11:41:16.681034+00 2025-06-13 11:41:16.681046+00 f t 12000.00 1 12000.00 1786 146 \N 2358 +13029 2025-06-12 23:04:12.835722+00 2025-06-12 23:04:12.835758+00 f t 42000.00 1 42000.00 1764 82 \N 2343 +13030 2025-06-12 23:04:12.84198+00 2025-06-12 23:04:12.841993+00 f t 75000.00 1 75000.00 1764 143 \N 2343 +13035 2025-06-13 00:12:36.37169+00 2025-06-13 00:12:36.3717+00 f t 42000.00 1 42000.00 1765 82 \N 2344 +13036 2025-06-13 00:12:36.378328+00 2025-06-13 00:12:36.37834+00 f t 7700.00 1 7700.00 1765 93 \N 2344 +13037 2025-06-13 00:12:36.385121+00 2025-06-13 00:12:36.385132+00 f t 33000.00 1 33000.00 1765 112 \N 2344 +13038 2025-06-13 00:12:36.391707+00 2025-06-13 00:12:36.391743+00 f t 12000.00 1 12000.00 1765 146 \N 2344 +13040 2025-06-13 00:46:44.066945+00 2025-06-13 00:46:44.066955+00 f t 50000.00 1 50000.00 1767 84 \N 2346 +13043 2025-06-13 01:44:29.090594+00 2025-06-13 01:44:29.090603+00 f t 50000.00 1 50000.00 1768 84 \N 2347 +13047 2025-06-13 01:47:51.511614+00 2025-06-13 01:47:51.511623+00 f t 27500.00 1 27500.00 1769 83 \N 2348 +13205 2025-06-13 12:31:13.712775+00 2025-06-13 12:31:13.712786+00 f t 42000.00 1 42000.00 1789 82 \N 2359 +13210 2025-06-13 13:17:58.805615+00 2025-06-13 13:17:58.805628+00 f t 42000.00 1 42000.00 1791 82 \N 2360 +13211 2025-06-13 13:17:58.812703+00 2025-06-13 13:17:58.812713+00 f t 7700.00 1 7700.00 1791 93 \N 2360 +13212 2025-06-13 13:17:58.821904+00 2025-06-13 13:17:58.821914+00 f t 33000.00 1 33000.00 1791 111 \N 2360 +13213 2025-06-13 13:17:58.827845+00 2025-06-13 13:17:58.827853+00 f t 12000.00 1 12000.00 1791 146 \N 2360 +13220 2025-06-13 13:49:45.221228+00 2025-06-13 13:49:45.221239+00 f t 42000.00 1 42000.00 1792 82 \N 2361 +13108 2025-06-13 02:54:50.463473+00 2025-06-13 02:54:50.463484+00 f t 42000.00 1 42000.00 1770 82 \N 2349 +13109 2025-06-13 02:54:50.468387+00 2025-06-13 02:54:50.468401+00 f t 7700.00 1 7700.00 1770 93 \N 2349 +13110 2025-06-13 02:54:50.47318+00 2025-06-13 02:54:50.47319+00 f t 41000.00 1 41000.00 1770 110 \N 2349 +13111 2025-06-13 02:54:50.47712+00 2025-06-13 02:54:50.477129+00 f t 12000.00 1 12000.00 1770 146 \N 2349 +13291 2025-06-13 14:13:29.164351+00 2025-06-13 14:13:29.16436+00 f t 42000.00 1 42000.00 1793 82 \N 2362 +13313 2025-06-13 14:21:49.682309+00 2025-06-13 14:21:49.682325+00 f t 50000.00 1 50000.00 1795 84 \N 2363 +13320 2025-06-13 16:14:49.111221+00 2025-06-13 16:14:49.111231+00 f t 50000.00 1 50000.00 1799 84 \N 2365 +13323 2025-06-13 16:17:04.644934+00 2025-06-13 16:17:04.644947+00 f t 50000.00 1 50000.00 1800 84 \N 2366 +13326 2025-06-13 16:19:07.161423+00 2025-06-13 16:19:07.161436+00 f t 50000.00 1 50000.00 1801 84 \N 2241 +13328 2025-06-13 16:25:38.608009+00 2025-06-13 16:25:38.60802+00 f t 61000.00 1 61000.00 1802 100 \N 2367 +13330 2025-06-13 16:42:29.642913+00 2025-06-13 16:42:29.642926+00 f t 50000.00 1 50000.00 1803 84 \N 2368 +13340 2025-06-13 18:00:31.438153+00 2025-06-13 18:00:31.438169+00 f t 50000.00 1 50000.00 1808 84 \N 2370 +13341 2025-06-13 18:25:47.120934+00 2025-06-13 18:25:47.120947+00 f t 50000.00 1 50000.00 1807 84 \N 2369 +13354 2025-06-13 18:28:39.668341+00 2025-06-13 18:28:39.66835+00 f t 0.00 1 0.00 1809 104 \N 2371 +13361 2025-06-13 20:26:33.944507+00 2025-06-13 20:26:33.944516+00 f t 42000.00 1 42000.00 1810 82 \N 2372 +13362 2025-06-13 20:26:33.950639+00 2025-06-13 20:26:33.950648+00 f t 22500.00 1 22500.00 1810 163 \N 2372 +13368 2025-06-13 21:30:41.969954+00 2025-06-13 21:30:41.969965+00 f t 50000.00 1 50000.00 1812 84 \N 2373 +13382 2025-06-13 21:47:15.216792+00 2025-06-13 21:47:15.216801+00 f t 42000.00 1 42000.00 1814 82 \N 2375 +13383 2025-06-13 21:47:15.221822+00 2025-06-13 21:47:15.221831+00 f t 31000.00 1 31000.00 1814 138 \N 2375 +13384 2025-06-13 21:47:15.226519+00 2025-06-13 21:47:15.226527+00 f t 13000.00 1 13000.00 1814 89 \N 2375 +14018 2025-06-15 22:40:16.230825+00 2025-06-15 22:40:16.230835+00 f t 42000.00 1 42000.00 1901 82 \N 2446 +14019 2025-06-15 22:40:16.237606+00 2025-06-15 22:40:16.237619+00 f t 7500.00 1 7500.00 1901 85 \N 2446 +14020 2025-06-15 22:40:16.244581+00 2025-06-15 22:40:16.244593+00 f t 22500.00 1 22500.00 1901 86 \N 2446 +14021 2025-06-15 22:40:16.250836+00 2025-06-15 22:40:16.250849+00 f t 22500.00 1 22500.00 1901 87 \N 2446 +13424 2025-06-13 22:00:38.941376+00 2025-06-13 22:00:38.941389+00 f t 42000.00 1 42000.00 1815 82 \N 2376 +13608 2025-06-14 16:22:34.694305+00 2025-06-14 16:22:34.694315+00 f t 50000.00 1 50000.00 1839 84 \N 2393 +13433 2025-06-13 22:23:03.703446+00 2025-06-13 22:23:03.703461+00 f t 0.00 1 0.00 1816 104 \N 2377 +13449 2025-06-13 23:18:34.045319+00 2025-06-13 23:18:34.04533+00 f t 42000.00 1 42000.00 1817 82 \N 2378 +13450 2025-06-13 23:18:34.052628+00 2025-06-13 23:18:34.052638+00 f t 22500.00 1 22500.00 1817 86 \N 2378 +14081 2025-06-15 22:54:14.079259+00 2025-06-15 22:54:14.079341+00 f t 42000.00 1 42000.00 1903 82 \N 2447 +14082 2025-06-15 22:54:14.08611+00 2025-06-15 22:54:14.08612+00 f t 7700.00 1 7700.00 1903 91 \N 2447 +13656 2025-06-14 20:21:56.096217+00 2025-06-14 20:21:56.096226+00 f t 42000.00 1 42000.00 1847 82 \N 2398 +13457 2025-06-14 01:14:43.359353+00 2025-06-14 01:14:43.359365+00 f t 95000.00 1 95000.00 1822 103 \N 2380 +13458 2025-06-14 01:14:43.365499+00 2025-06-14 01:14:43.36551+00 f t 42000.00 1 42000.00 1822 82 \N 2380 +13657 2025-06-14 20:21:56.101799+00 2025-06-14 20:21:56.10181+00 f t 7500.00 1 7500.00 1847 85 \N 2398 +13658 2025-06-14 20:21:56.106414+00 2025-06-14 20:21:56.106422+00 f t 22500.00 1 22500.00 1847 86 \N 2398 +14083 2025-06-15 22:54:14.091432+00 2025-06-15 22:54:14.091441+00 f t 7700.00 1 7700.00 1903 94 \N 2447 +14085 2025-06-15 22:59:18.40532+00 2025-06-15 22:59:18.405329+00 f t 50000.00 1 50000.00 1904 84 \N 2448 +13665 2025-06-14 20:39:54.639304+00 2025-06-14 20:39:54.639317+00 f t 42000.00 1 42000.00 1848 82 \N 2399 +13666 2025-06-14 20:39:54.645876+00 2025-06-14 20:39:54.645888+00 f t 22500.00 1 22500.00 1848 163 \N 2399 +14087 2025-06-15 23:15:03.316452+00 2025-06-15 23:15:03.316469+00 f t 42000.00 1 42000.00 1906 82 \N 2450 +13676 2025-06-14 23:27:35.390103+00 2025-06-14 23:27:35.390116+00 f t 27500.00 1 27500.00 1851 83 \N 2406 +14095 2025-06-15 23:25:30.112499+00 2025-06-15 23:25:30.112511+00 f t 50000.00 1 50000.00 1908 84 \N 2452 +13473 2025-06-14 06:30:43.407369+00 2025-06-14 06:30:43.407382+00 f t 42000.00 1 42000.00 1826 82 \N 2384 +13474 2025-06-14 06:30:43.413822+00 2025-06-14 06:30:43.413835+00 f t 22500.00 1 22500.00 1826 163 \N 2384 +13477 2025-06-14 12:09:19.518361+00 2025-06-14 12:09:19.518376+00 f t 42000.00 1 42000.00 1828 82 \N 2386 +13478 2025-06-14 12:09:19.525133+00 2025-06-14 12:09:19.525144+00 f t 22500.00 1 22500.00 1828 86 \N 2386 +13685 2025-06-14 23:28:12.185713+00 2025-06-14 23:28:12.185722+00 f t 42000.00 1 42000.00 1852 82 \N 2408 +13686 2025-06-14 23:28:12.190428+00 2025-06-14 23:28:12.190452+00 f t 7700.00 1 7700.00 1852 93 \N 2408 +13687 2025-06-14 23:28:12.195085+00 2025-06-14 23:28:12.195092+00 f t 45500.00 1 45500.00 1852 114 \N 2408 +13688 2025-06-14 23:28:12.199769+00 2025-06-14 23:28:12.199779+00 f t 12000.00 1 12000.00 1852 146 \N 2408 +13483 2025-06-14 12:43:41.196507+00 2025-06-14 12:43:41.19652+00 f t 57000.00 1 57000.00 1829 106 \N 2387 +13693 2025-06-14 23:29:23.244894+00 2025-06-14 23:29:23.244905+00 f t 42000.00 1 42000.00 1853 82 \N 2409 +13694 2025-06-14 23:29:23.250612+00 2025-06-14 23:29:23.250619+00 f t 7700.00 1 7700.00 1853 93 \N 2409 +13695 2025-06-14 23:29:23.254873+00 2025-06-14 23:29:23.254884+00 f t 45500.00 1 45500.00 1853 114 \N 2409 +13491 2025-06-14 12:54:48.294496+00 2025-06-14 12:54:48.294509+00 f t 57000.00 1 57000.00 1831 106 \N 2388 +13696 2025-06-14 23:29:23.260444+00 2025-06-14 23:29:23.260451+00 f t 12000.00 1 12000.00 1853 146 \N 2409 +13700 2025-06-15 00:48:49.666165+00 2025-06-15 00:48:49.666177+00 f t 50000.00 1 50000.00 1856 84 \N 2411 +13702 2025-06-15 00:56:16.783395+00 2025-06-15 00:56:16.783408+00 f t 42000.00 1 42000.00 1857 82 \N 2412 +13505 2025-06-14 12:56:11.844736+00 2025-06-14 12:56:11.844749+00 f t 50000.00 1 50000.00 1830 84 \N 2389 +13515 2025-06-14 14:41:49.948008+00 2025-06-14 14:41:49.948019+00 f t 42000.00 1 42000.00 1834 82 \N 2390 +13516 2025-06-14 14:41:49.954058+00 2025-06-14 14:41:49.954068+00 f t 16800.00 1 16800.00 1834 96 \N 2390 +13517 2025-06-14 14:41:49.958959+00 2025-06-14 14:41:49.958967+00 f t 56000.00 1 56000.00 1834 105 \N 2390 +13826 2025-06-15 01:08:47.669084+00 2025-06-15 01:08:47.669093+00 f t 42000.00 1 42000.00 1858 82 \N 2413 +13827 2025-06-15 01:08:47.675191+00 2025-06-15 01:08:47.675199+00 f t 7500.00 1 7500.00 1858 85 \N 2413 +13828 2025-06-15 01:08:47.679613+00 2025-06-15 01:08:47.679621+00 f t 22500.00 1 22500.00 1858 88 \N 2413 +13829 2025-06-15 01:08:47.683576+00 2025-06-15 01:08:47.683584+00 f t 42000.00 1 42000.00 1858 82 \N 2414 +13830 2025-06-15 01:08:47.687946+00 2025-06-15 01:08:47.687956+00 f t 22500.00 1 22500.00 1858 88 \N 2414 +13831 2025-06-15 01:08:47.692051+00 2025-06-15 01:08:47.69206+00 f t 42000.00 1 42000.00 1858 82 \N 2415 +13832 2025-06-15 01:08:47.695981+00 2025-06-15 01:08:47.695988+00 f t 7500.00 1 7500.00 1858 85 \N 2415 +13833 2025-06-15 01:08:47.70009+00 2025-06-15 01:08:47.700101+00 f t 22500.00 1 22500.00 1858 88 \N 2415 +13835 2025-06-15 02:08:53.873871+00 2025-06-15 02:08:53.873883+00 f t 50000.00 1 50000.00 1861 84 \N 2416 +13838 2025-06-15 02:54:21.772863+00 2025-06-15 02:54:21.772875+00 f t 42000.00 1 42000.00 1863 82 \N 2418 +13842 2025-06-15 03:06:58.658372+00 2025-06-15 03:06:58.658381+00 f t 50000.00 1 50000.00 1864 84 \N 2419 +13844 2025-06-15 03:28:28.760966+00 2025-06-15 03:28:28.760976+00 f t 42000.00 1 42000.00 1866 82 \N 2420 +13846 2025-06-15 03:54:24.640977+00 2025-06-15 03:54:24.64099+00 f t 42000.00 1 42000.00 1867 82 \N 2421 +13848 2025-06-15 12:48:42.352238+00 2025-06-15 12:48:42.352249+00 f t 42000.00 1 42000.00 1873 82 \N 2423 +13859 2025-06-15 12:57:55.51063+00 2025-06-15 12:57:55.510643+00 f t 50000.00 1 50000.00 1874 84 \N 2424 +13861 2025-06-15 13:23:18.66566+00 2025-06-15 13:23:18.665673+00 f t 50000.00 1 50000.00 1875 84 \N 2425 +13863 2025-06-15 13:24:09.14099+00 2025-06-15 13:24:09.140999+00 f t 50000.00 1 50000.00 1876 84 \N 2426 +13868 2025-06-15 13:44:11.294451+00 2025-06-15 13:44:11.294464+00 f t 27500.00 1 27500.00 1877 83 \N 2427 +13878 2025-06-15 14:24:38.284198+00 2025-06-15 14:24:38.284209+00 f t 0.00 1 0.00 1878 104 \N 2428 +13891 2025-06-15 15:04:27.055764+00 2025-06-15 15:04:27.055777+00 f t 42000.00 1 42000.00 1879 82 \N 2429 +13892 2025-06-15 15:04:27.063364+00 2025-06-15 15:04:27.063376+00 f t 7500.00 1 7500.00 1879 85 \N 2429 +13893 2025-06-15 15:04:27.068802+00 2025-06-15 15:04:27.06881+00 f t 22500.00 1 22500.00 1879 86 \N 2429 +13895 2025-06-15 15:24:49.246088+00 2025-06-15 15:24:49.246108+00 f t 50000.00 1 50000.00 1880 84 \N 2430 +13899 2025-06-15 15:28:57.483013+00 2025-06-15 15:28:57.483025+00 f t 42000.00 1 42000.00 1881 82 \N 2431 +13901 2025-06-15 17:22:27.662841+00 2025-06-15 17:22:27.662851+00 f t 50000.00 1 50000.00 1884 84 \N 2432 +15385 2025-06-17 18:03:56.946443+00 2025-06-17 18:03:56.946452+00 f t 50000.00 1 50000.00 2002 84 \N 2537 +13911 2025-06-15 17:41:41.428768+00 2025-06-15 17:41:41.42878+00 f t 50000.00 1 50000.00 1885 84 \N 2435 +15415 2025-06-17 21:31:59.889852+00 2025-06-17 21:31:59.889861+00 f t 42000.00 1 42000.00 2007 82 \N 2542 +13922 2025-06-15 18:29:06.717316+00 2025-06-15 18:29:06.717327+00 f t 50000.00 1 50000.00 1887 84 \N 2436 +15416 2025-06-17 21:31:59.896689+00 2025-06-17 21:31:59.896702+00 f t 7500.00 1 7500.00 2007 85 \N 2542 +15417 2025-06-17 21:31:59.902898+00 2025-06-17 21:31:59.90291+00 f t 22500.00 1 22500.00 2007 163 \N 2542 +13927 2025-06-15 20:53:21.779831+00 2025-06-15 20:53:21.779842+00 f t 50000.00 1 50000.00 1890 84 \N 2439 +15421 2025-06-17 21:55:39.11888+00 2025-06-17 21:55:39.118929+00 f t 57000.00 1 57000.00 2008 106 \N 2543 +15423 2025-06-17 23:50:35.160772+00 2025-06-17 23:50:35.160781+00 f t 95000.00 1 95000.00 2013 103 \N 2544 +18683 2025-06-25 02:09:35.277264+00 2025-06-25 02:09:35.277275+00 f t 42000.00 1 42000.00 2420 82 \N 2853 +15425 2025-06-18 00:44:02.922956+00 2025-06-18 00:44:02.92297+00 f t 70000.00 1 70000.00 2015 108 \N 2546 +18684 2025-06-25 02:09:35.282326+00 2025-06-25 02:09:35.282335+00 f t 33000.00 1 33000.00 2420 133 \N 2853 +15428 2025-06-18 02:35:48.321278+00 2025-06-18 02:35:48.321291+00 f t 42000.00 1 42000.00 2018 82 \N 2552 +15429 2025-06-18 02:35:48.327316+00 2025-06-18 02:35:48.327329+00 f t 22500.00 1 22500.00 2018 163 \N 2552 +14097 2025-06-16 00:05:28.128485+00 2025-06-16 00:05:28.128498+00 f t 50000.00 1 50000.00 1911 84 \N 2453 +14101 2025-06-16 01:30:23.143381+00 2025-06-16 01:30:23.143393+00 f t 50000.00 1 50000.00 1914 84 \N 2456 +14103 2025-06-16 02:12:37.51057+00 2025-06-16 02:12:37.510582+00 f t 42000.00 1 42000.00 1916 82 \N 2457 +15042 2025-06-17 15:12:38.906722+00 2025-06-17 15:12:38.906735+00 f t 42000.00 1 42000.00 1994 82 \N 2527 +13962 2025-06-15 21:29:21.498816+00 2025-06-15 21:29:21.498828+00 f t 42000.00 1 42000.00 1893 82 \N 2441 +13963 2025-06-15 21:29:21.506289+00 2025-06-15 21:29:21.506299+00 f t 69000.00 1 69000.00 1893 142 \N 2441 +15043 2025-06-17 15:12:38.91404+00 2025-06-17 15:12:38.914052+00 f t 7500.00 1 7500.00 1994 85 \N 2527 +15044 2025-06-17 15:12:38.91999+00 2025-06-17 15:12:38.920001+00 f t 22500.00 1 22500.00 1994 163 \N 2527 +15045 2025-06-17 15:12:38.925673+00 2025-06-17 15:12:38.925685+00 f t 42000.00 1 42000.00 1994 82 \N 2528 +14113 2025-06-16 02:37:05.84985+00 2025-06-16 02:37:05.849863+00 f t 42000.00 1 42000.00 1917 82 \N 2458 +14114 2025-06-16 02:37:05.857536+00 2025-06-16 02:37:05.85755+00 f t 7500.00 1 7500.00 1917 85 \N 2458 +14115 2025-06-16 02:37:05.863859+00 2025-06-16 02:37:05.863873+00 f t 22500.00 1 22500.00 1917 86 \N 2458 +15046 2025-06-17 15:12:38.931369+00 2025-06-17 15:12:38.93138+00 f t 7500.00 1 7500.00 1994 85 \N 2528 +15047 2025-06-17 15:12:38.937156+00 2025-06-17 15:12:38.937167+00 f t 22500.00 1 22500.00 1994 163 \N 2528 +13974 2025-06-15 21:56:53.392859+00 2025-06-15 21:56:53.392869+00 f t 95000.00 1 95000.00 1896 103 \N 2442 +13978 2025-06-15 22:01:16.86069+00 2025-06-15 22:01:16.8607+00 f t 42000.00 1 42000.00 1897 82 \N 2443 +14123 2025-06-16 03:30:03.615405+00 2025-06-16 03:30:03.615422+00 f t 70000.00 1 70000.00 1921 108 \N 2461 +13980 2025-06-15 22:09:48.127601+00 2025-06-15 22:09:48.127614+00 f t 50000.00 1 50000.00 1898 84 \N 2444 +13984 2025-06-15 22:36:43.131839+00 2025-06-15 22:36:43.131849+00 f t 50000.00 1 50000.00 1900 84 \N 2445 +14142 2025-06-16 08:23:52.378958+00 2025-06-16 08:23:52.378971+00 f t 50000.00 1 50000.00 1925 84 \N 2463 +14155 2025-06-16 09:56:24.48404+00 2025-06-16 09:56:24.48405+00 f t 42000.00 1 42000.00 1926 82 \N 2464 +14156 2025-06-16 09:56:24.490967+00 2025-06-16 09:56:24.490977+00 f t 7700.00 1 7700.00 1926 93 \N 2464 +14157 2025-06-16 09:56:24.497082+00 2025-06-16 09:56:24.497092+00 f t 21000.00 1 21000.00 1926 109 \N 2464 +14158 2025-06-16 09:56:24.502342+00 2025-06-16 09:56:24.502355+00 f t 12000.00 1 12000.00 1926 146 \N 2464 +15152 2025-06-17 15:47:27.794514+00 2025-06-17 15:47:27.794527+00 f t 42000.00 1 42000.00 1995 82 \N 2531 +15153 2025-06-17 15:47:27.800687+00 2025-06-17 15:47:27.800697+00 f t 22500.00 1 22500.00 1995 163 \N 2531 +14199 2025-06-16 11:55:25.730417+00 2025-06-16 11:55:25.730431+00 f t 95000.00 1 95000.00 1927 103 \N 2465 +14208 2025-06-16 13:59:58.737961+00 2025-06-16 13:59:58.737972+00 f t 42000.00 1 42000.00 1932 82 \N 2466 +14209 2025-06-16 13:59:58.743563+00 2025-06-16 13:59:58.743572+00 f t 7700.00 1 7700.00 1932 93 \N 2466 +14210 2025-06-16 13:59:58.74831+00 2025-06-16 13:59:58.748319+00 f t 33000.00 1 33000.00 1932 112 \N 2466 +14211 2025-06-16 13:59:58.753587+00 2025-06-16 13:59:58.753596+00 f t 12000.00 1 12000.00 1932 146 \N 2466 +14215 2025-06-16 14:12:12.076755+00 2025-06-16 14:12:12.076769+00 f t 50000.00 1 50000.00 1933 84 \N 2467 +14219 2025-06-16 14:34:06.839574+00 2025-06-16 14:34:06.839583+00 f t 70000.00 1 70000.00 1934 108 \N 2468 +14222 2025-06-16 14:42:49.5511+00 2025-06-16 14:42:49.551112+00 f t 27500.00 1 27500.00 1935 83 \N 2469 +14226 2025-06-16 16:07:18.637048+00 2025-06-16 16:07:18.637057+00 f t 42000.00 1 42000.00 1936 82 \N 2470 +14227 2025-06-16 16:29:07.469521+00 2025-06-16 16:29:07.469749+00 f t 50000.00 1 50000.00 1922 84 \N 2462 +14277 2025-06-16 16:35:58.737106+00 2025-06-16 16:35:58.737115+00 f t 42000.00 1 42000.00 1937 82 \N 2471 +14279 2025-06-16 16:45:12.04891+00 2025-06-16 16:45:12.048925+00 f t 27500.00 1 27500.00 1938 83 \N 2474 +14286 2025-06-16 16:52:14.640919+00 2025-06-16 16:52:14.640928+00 f t 50000.00 1 50000.00 1939 84 \N 2475 +15360 2025-06-17 17:29:23.848755+00 2025-06-17 17:29:23.848768+00 f t 42000.00 1 42000.00 1999 82 \N 2534 +15361 2025-06-17 17:29:23.85584+00 2025-06-17 17:29:23.855852+00 f t 7500.00 1 7500.00 1999 85 \N 2534 +15362 2025-06-17 17:29:23.862015+00 2025-06-17 17:29:23.862028+00 f t 22500.00 1 22500.00 1999 86 \N 2534 +14303 2025-06-16 17:02:15.548056+00 2025-06-16 17:02:15.548065+00 f t 42000.00 1 42000.00 1941 82 \N 2476 +14304 2025-06-16 17:02:15.553919+00 2025-06-16 17:02:15.553927+00 f t 7500.00 1 7500.00 1941 85 \N 2476 +14305 2025-06-16 17:02:15.558464+00 2025-06-16 17:02:15.558474+00 f t 42000.00 1 42000.00 1941 82 \N 2477 +14306 2025-06-16 17:02:15.564689+00 2025-06-16 17:02:15.5647+00 f t 7500.00 1 7500.00 1941 85 \N 2477 +14308 2025-06-16 18:44:36.324802+00 2025-06-16 18:44:36.324812+00 f t 50000.00 1 50000.00 1948 84 \N 2478 +14322 2025-06-16 19:57:41.114424+00 2025-06-16 19:57:41.114433+00 f t 42000.00 1 42000.00 1950 82 \N 2479 +14323 2025-06-16 19:57:41.118898+00 2025-06-16 19:57:41.118909+00 f t 7500.00 1 7500.00 1950 85 \N 2479 +14324 2025-06-16 19:57:41.123463+00 2025-06-16 19:57:41.123471+00 f t 22500.00 1 22500.00 1950 163 \N 2479 +14331 2025-06-16 20:55:16.300584+00 2025-06-16 20:55:16.30063+00 f t 42000.00 1 42000.00 1952 82 \N 2484 +14332 2025-06-16 20:55:16.308422+00 2025-06-16 20:55:16.308432+00 f t 69000.00 1 69000.00 1952 142 \N 2484 +66668 2025-10-08 18:59:34.704696+00 2025-10-08 18:59:34.704703+00 f t 0.00 1 0.00 9176 174 \N 335 +14334 2025-06-16 20:57:20.047617+00 2025-06-16 20:57:20.047629+00 f t 42000.00 1 42000.00 1953 82 \N 2485 +14936 2025-06-17 03:03:19.4516+00 2025-06-17 03:03:19.451614+00 f t 70000.00 1 70000.00 1970 108 \N 2506 +15401 2025-06-17 21:17:38.188385+00 2025-06-17 21:17:38.188398+00 f t 70000.00 1 70000.00 2006 108 \N 2541 +14945 2025-06-17 03:15:19.723534+00 2025-06-17 03:15:19.723544+00 f t 50000.00 1 50000.00 1971 84 \N 2507 +14951 2025-06-17 03:27:10.44636+00 2025-06-17 03:27:10.446372+00 f t 42000.00 1 42000.00 1972 82 \N 2508 +14952 2025-06-17 03:27:10.452516+00 2025-06-17 03:27:10.452529+00 f t 42000.00 1 42000.00 1972 82 \N 2509 +14955 2025-06-17 05:00:22.273006+00 2025-06-17 05:00:22.273019+00 f t 42000.00 1 42000.00 1973 82 \N 2510 +14956 2025-06-17 05:00:22.282868+00 2025-06-17 05:00:22.28288+00 f t 22500.00 1 22500.00 1973 163 \N 2510 +14959 2025-06-17 05:25:55.277022+00 2025-06-17 05:25:55.277032+00 f t 42000.00 1 42000.00 1974 82 \N 2511 +14960 2025-06-17 05:25:55.283877+00 2025-06-17 05:25:55.283891+00 f t 7700.00 1 7700.00 1974 91 \N 2511 +14962 2025-06-17 12:49:39.492453+00 2025-06-17 12:49:39.492465+00 f t 70000.00 1 70000.00 1977 97 \N 2512 +14964 2025-06-17 13:20:26.577261+00 2025-06-17 13:20:26.577273+00 f t 95000.00 1 95000.00 1978 103 \N 2513 +14537 2025-06-16 22:18:33.383536+00 2025-06-16 22:18:33.38355+00 f t 42000.00 1 42000.00 1959 82 \N 2493 +14538 2025-06-16 22:18:33.391223+00 2025-06-16 22:18:33.391234+00 f t 22500.00 1 22500.00 1959 87 \N 2493 +14966 2025-06-17 13:36:38.924331+00 2025-06-17 13:36:38.924345+00 f t 50000.00 1 50000.00 1979 84 \N 2514 +14359 2025-06-16 21:09:29.12567+00 2025-06-16 21:09:29.125681+00 f t 42000.00 1 42000.00 1954 82 \N 2486 +14360 2025-06-16 21:09:29.132069+00 2025-06-16 21:09:29.132081+00 f t 22500.00 1 22500.00 1954 88 \N 2486 +14361 2025-06-16 21:09:29.136927+00 2025-06-16 21:09:29.136938+00 f t 42000.00 1 42000.00 1954 82 \N 2487 +14362 2025-06-16 21:09:29.142402+00 2025-06-16 21:09:29.142413+00 f t 22500.00 1 22500.00 1954 88 \N 2487 +14975 2025-06-17 13:40:28.369626+00 2025-06-17 13:40:28.369639+00 f t 42000.00 1 42000.00 1980 82 \N 2515 +14976 2025-06-17 13:40:28.376403+00 2025-06-17 13:40:28.376415+00 f t 22500.00 1 22500.00 1980 86 \N 2515 +14984 2025-06-17 14:30:22.730484+00 2025-06-17 14:30:22.730493+00 f t 57000.00 1 57000.00 1982 106 \N 2517 +14994 2025-06-17 14:40:53.643942+00 2025-06-17 14:40:53.644+00 f t 42000.00 1 42000.00 1987 82 \N 2521 +14995 2025-06-17 14:40:53.651658+00 2025-06-17 14:40:53.65167+00 f t 33000.00 1 33000.00 1987 140 \N 2521 +14996 2025-06-17 14:40:53.657396+00 2025-06-17 14:40:53.657404+00 f t 13000.00 1 13000.00 1987 89 \N 2521 +14377 2025-06-16 21:53:27.53469+00 2025-06-16 21:53:27.534701+00 f t 42000.00 1 42000.00 1956 82 \N 2489 +14463 2025-06-16 22:14:38.949285+00 2025-06-16 22:14:38.949298+00 f t 42000.00 1 42000.00 1957 82 \N 2490 +14464 2025-06-16 22:14:38.954852+00 2025-06-16 22:14:38.954859+00 f t 7500.00 1 7500.00 1957 85 \N 2490 +14465 2025-06-16 22:14:38.959668+00 2025-06-16 22:14:38.959676+00 f t 22500.00 1 22500.00 1957 86 \N 2490 +14833 2025-06-16 22:39:30.904473+00 2025-06-16 22:39:30.904485+00 f t 42000.00 1 42000.00 1960 82 \N 2494 +14834 2025-06-16 22:39:30.913283+00 2025-06-16 22:39:30.913292+00 f t 7500.00 1 7500.00 1960 85 \N 2494 +14835 2025-06-16 22:39:30.921239+00 2025-06-16 22:39:30.921253+00 f t 22500.00 1 22500.00 1960 86 \N 2494 +14836 2025-06-16 22:39:30.929491+00 2025-06-16 22:39:30.929505+00 f t 42000.00 1 42000.00 1960 82 \N 2495 +14837 2025-06-16 22:39:30.943701+00 2025-06-16 22:39:30.943717+00 f t 7500.00 1 7500.00 1960 85 \N 2495 +14838 2025-06-16 22:39:30.951264+00 2025-06-16 22:39:30.951277+00 f t 22500.00 1 22500.00 1960 86 \N 2495 +14839 2025-06-16 22:39:30.958705+00 2025-06-16 22:39:30.958719+00 f t 42000.00 1 42000.00 1960 82 \N 2496 +14840 2025-06-16 22:39:30.965439+00 2025-06-16 22:39:30.965451+00 f t 7500.00 1 7500.00 1960 85 \N 2496 +14841 2025-06-16 22:39:30.971767+00 2025-06-16 22:39:30.971781+00 f t 22500.00 1 22500.00 1960 163 \N 2496 +14842 2025-06-16 22:39:30.979025+00 2025-06-16 22:39:30.979038+00 f t 42000.00 1 42000.00 1960 82 \N 2497 +14843 2025-06-16 22:39:30.985684+00 2025-06-16 22:39:30.985696+00 f t 29000.00 1 29000.00 1960 122 \N 2497 +14844 2025-06-16 22:39:30.991731+00 2025-06-16 22:39:30.991745+00 f t 13000.00 1 13000.00 1960 89 \N 2497 +14845 2025-06-16 22:39:30.997843+00 2025-06-16 22:39:30.997855+00 f t 22500.00 1 22500.00 1960 163 \N 2497 +14848 2025-06-16 23:46:56.0596+00 2025-06-16 23:46:56.059609+00 f t 42000.00 1 42000.00 1962 82 \N 2499 +14850 2025-06-17 00:18:17.895368+00 2025-06-17 00:18:17.895381+00 f t 70000.00 1 70000.00 1963 97 \N 2500 +15304 2025-06-17 15:51:03.246987+00 2025-06-17 15:51:03.246999+00 f t 42000.00 1 42000.00 1993 82 \N 2530 +15305 2025-06-17 15:51:03.254714+00 2025-06-17 15:51:03.254724+00 f t 29000.00 1 29000.00 1993 124 \N 2530 +15306 2025-06-17 15:51:03.261539+00 2025-06-17 15:51:03.26155+00 f t 13000.00 1 13000.00 1993 89 \N 2530 +15307 2025-06-17 15:51:03.268691+00 2025-06-17 15:51:03.268701+00 f t 7500.00 1 7500.00 1993 85 \N 2530 +15308 2025-06-17 15:51:03.27407+00 2025-06-17 15:51:03.274082+00 f t 22500.00 1 22500.00 1993 163 \N 2530 +14857 2025-06-17 00:19:40.945669+00 2025-06-17 00:19:40.945682+00 f t 42000.00 1 42000.00 1964 82 \N 2501 +14858 2025-06-17 00:19:40.9522+00 2025-06-17 00:19:40.952211+00 f t 22500.00 1 22500.00 1964 163 \N 2501 +15337 2025-06-17 15:52:41.716353+00 2025-06-17 15:52:41.716362+00 f t 42000.00 1 42000.00 1996 82 \N 2532 +15338 2025-06-17 15:52:41.723012+00 2025-06-17 15:52:41.723021+00 f t 29000.00 1 29000.00 1996 124 \N 2532 +15339 2025-06-17 15:52:41.72846+00 2025-06-17 15:52:41.728471+00 f t 13000.00 1 13000.00 1996 89 \N 2532 +15340 2025-06-17 15:52:41.735041+00 2025-06-17 15:52:41.735053+00 f t 7500.00 1 7500.00 1996 85 \N 2532 +15341 2025-06-17 15:52:41.742948+00 2025-06-17 15:52:41.742961+00 f t 22500.00 1 22500.00 1996 163 \N 2532 +15344 2025-06-17 16:16:44.703626+00 2025-06-17 16:16:44.703638+00 f t 42000.00 1 42000.00 1998 82 \N 2533 +15345 2025-06-17 16:16:44.710933+00 2025-06-17 16:16:44.710947+00 f t 7500.00 1 7500.00 1998 85 \N 2533 +14882 2025-06-17 00:32:07.606625+00 2025-06-17 00:32:07.606639+00 f t 42000.00 1 42000.00 1965 82 \N 2502 +14883 2025-06-17 00:32:07.614446+00 2025-06-17 00:32:07.614455+00 f t 22500.00 1 22500.00 1965 86 \N 2502 +15379 2025-06-17 17:55:27.522047+00 2025-06-17 17:55:27.522059+00 f t 42000.00 1 42000.00 2001 82 \N 2535 +15380 2025-06-17 17:55:27.52814+00 2025-06-17 17:55:27.52815+00 f t 22500.00 1 22500.00 2001 86 \N 2535 +15381 2025-06-17 17:55:27.533528+00 2025-06-17 17:55:27.533536+00 f t 42000.00 1 42000.00 2001 82 \N 2536 +15382 2025-06-17 17:55:27.538763+00 2025-06-17 17:55:27.538771+00 f t 22500.00 1 22500.00 2001 86 \N 2536 +14917 2025-06-17 00:59:01.086051+00 2025-06-17 00:59:01.086062+00 f t 42000.00 1 42000.00 1967 82 \N 2503 +14918 2025-06-17 00:59:01.092478+00 2025-06-17 00:59:01.092486+00 f t 33000.00 1 33000.00 1967 133 \N 2503 +14919 2025-06-17 00:59:01.097231+00 2025-06-17 00:59:01.09724+00 f t 13000.00 1 13000.00 1967 89 \N 2503 +16423 2025-06-20 19:40:05.240437+00 2025-06-20 19:40:05.240453+00 f t 50000.00 1 50000.00 2184 84 \N 2671 +18596 2025-06-24 21:12:56.697462+00 2025-06-24 21:12:56.697472+00 f t 42000.00 1 42000.00 2404 82 \N 2842 +15435 2025-06-18 02:50:57.020837+00 2025-06-18 02:50:57.020845+00 f t 42000.00 1 42000.00 2021 82 \N 2553 +16439 2025-06-20 20:22:23.430073+00 2025-06-20 20:22:23.430083+00 f t 70000.00 1 70000.00 2187 97 \N 2674 +15437 2025-06-18 04:55:46.716542+00 2025-06-18 04:55:46.716554+00 f t 50000.00 1 50000.00 2023 84 \N 2554 +16460 2025-06-20 21:13:48.52238+00 2025-06-20 21:13:48.522395+00 f t 42000.00 1 42000.00 2188 82 \N 2675 +16461 2025-06-20 21:13:48.531373+00 2025-06-20 21:13:48.531384+00 f t 13000.00 1 13000.00 2188 89 \N 2675 +16465 2025-06-20 22:25:40.310768+00 2025-06-20 22:25:40.310777+00 f t 27500.00 1 27500.00 2191 83 \N 2677 +15443 2025-06-18 05:40:26.100567+00 2025-06-18 05:40:26.100581+00 f t 50000.00 1 50000.00 2024 84 \N 2555 +15445 2025-06-18 11:25:03.289269+00 2025-06-18 11:25:03.289286+00 f t 61000.00 1 61000.00 2031 100 \N 2558 +15447 2025-06-18 12:26:38.858832+00 2025-06-18 12:26:38.858842+00 f t 27500.00 1 27500.00 2032 83 \N 2559 +15449 2025-06-18 13:05:17.491826+00 2025-06-18 13:05:17.491839+00 f t 57000.00 1 57000.00 2034 106 \N 2560 +15453 2025-06-18 14:09:27.572539+00 2025-06-18 14:09:27.57255+00 f t 42000.00 1 42000.00 2035 82 \N 2561 +15456 2025-06-18 15:17:54.247216+00 2025-06-18 15:17:54.247228+00 f t 42000.00 1 42000.00 2037 82 \N 2562 +15457 2025-06-18 15:17:54.252965+00 2025-06-18 15:17:54.252974+00 f t 75000.00 1 75000.00 2037 143 \N 2562 +15958 2025-06-19 12:29:27.421143+00 2025-06-19 12:29:27.421158+00 f t 42000.00 1 42000.00 2092 82 \N 2605 +15971 2025-06-19 13:15:30.722756+00 2025-06-19 13:15:30.722769+00 f t 42000.00 1 42000.00 2093 82 \N 2607 +15481 2025-06-18 15:19:32.312993+00 2025-06-18 15:19:32.313007+00 f t 42000.00 1 42000.00 2038 82 \N 2563 +15482 2025-06-18 15:19:32.321784+00 2025-06-18 15:19:32.321792+00 f t 22500.00 1 22500.00 2038 86 \N 2563 +15972 2025-06-19 13:15:30.729532+00 2025-06-19 13:15:30.729545+00 f t 7500.00 1 7500.00 2093 85 \N 2607 +15973 2025-06-19 13:15:30.735615+00 2025-06-19 13:15:30.735628+00 f t 22500.00 1 22500.00 2093 86 \N 2607 +15976 2025-06-19 13:20:52.869751+00 2025-06-19 13:20:52.869761+00 f t 42000.00 1 42000.00 2094 82 \N 2608 +15977 2025-06-19 13:20:52.874909+00 2025-06-19 13:20:52.874919+00 f t 22500.00 1 22500.00 2094 163 \N 2608 +15981 2025-06-19 16:06:10.510982+00 2025-06-19 16:06:10.510994+00 f t 27500.00 1 27500.00 2096 83 \N 2611 +15983 2025-06-19 16:55:59.75525+00 2025-06-19 16:55:59.755263+00 f t 70000.00 1 70000.00 2101 108 \N 2614 +15492 2025-06-18 16:13:48.343187+00 2025-06-18 16:13:48.3432+00 f t 42000.00 1 42000.00 2044 82 \N 2565 +15493 2025-06-18 16:13:48.348946+00 2025-06-18 16:13:48.348958+00 f t 7500.00 1 7500.00 2044 85 \N 2565 +15496 2025-06-18 16:20:04.588639+00 2025-06-18 16:20:04.588654+00 f t 42000.00 1 42000.00 2045 82 \N 2566 +15497 2025-06-18 16:20:04.596847+00 2025-06-18 16:20:04.596856+00 f t 7500.00 1 7500.00 2045 85 \N 2566 +15499 2025-06-18 16:29:32.498881+00 2025-06-18 16:29:32.498893+00 f t 50000.00 1 50000.00 2046 84 \N 2568 +15520 2025-06-18 17:24:02.918212+00 2025-06-18 17:24:02.918224+00 f t 42000.00 1 42000.00 2047 82 \N 2569 +15521 2025-06-18 17:24:02.924559+00 2025-06-18 17:24:02.924567+00 f t 69000.00 1 69000.00 2047 142 \N 2569 +15538 2025-06-18 17:27:28.541747+00 2025-06-18 17:27:28.54176+00 f t 42000.00 1 42000.00 2048 82 \N 2570 +15539 2025-06-18 17:27:28.548706+00 2025-06-18 17:27:28.548722+00 f t 87500.00 1 87500.00 2048 141 \N 2570 +15541 2025-06-18 17:31:24.613331+00 2025-06-18 17:31:24.61334+00 f t 42000.00 1 42000.00 2049 82 \N 2571 +15544 2025-06-18 17:43:55.490717+00 2025-06-18 17:43:55.490729+00 f t 42000.00 1 42000.00 2050 82 \N 2572 +15545 2025-06-18 17:43:55.49751+00 2025-06-18 17:43:55.497522+00 f t 22500.00 1 22500.00 2050 163 \N 2572 +15547 2025-06-18 18:20:14.752712+00 2025-06-18 18:20:14.752724+00 f t 57000.00 1 57000.00 2052 106 \N 2573 +15555 2025-06-18 18:44:04.94584+00 2025-06-18 18:44:04.945849+00 f t 42000.00 1 42000.00 2053 82 \N 2574 +15556 2025-06-18 18:44:04.95372+00 2025-06-18 18:44:04.953732+00 f t 7700.00 1 7700.00 2053 93 \N 2574 +15557 2025-06-18 18:44:04.961965+00 2025-06-18 18:44:04.961978+00 f t 41000.00 1 41000.00 2053 110 \N 2574 +15558 2025-06-18 18:44:04.969405+00 2025-06-18 18:44:04.969417+00 f t 12000.00 1 12000.00 2053 146 \N 2574 +15560 2025-06-18 18:56:11.165154+00 2025-06-18 18:56:11.165163+00 f t 42000.00 1 42000.00 2054 82 \N 2575 +16135 2025-06-19 23:48:28.873707+00 2025-06-19 23:48:28.873718+00 f t 62000.00 1 62000.00 2132 106 \N 2638 +16138 2025-06-20 00:30:39.294638+00 2025-06-20 00:30:39.294649+00 f t 42000.00 1 42000.00 2135 82 \N 2639 +16139 2025-06-20 00:30:39.30055+00 2025-06-20 00:30:39.30056+00 f t 7500.00 1 7500.00 2135 85 \N 2639 +16198 2025-06-20 01:19:29.829841+00 2025-06-20 01:19:29.829854+00 f t 42000.00 1 42000.00 2147 82 \N 2642 +16201 2025-06-20 01:20:10.284496+00 2025-06-20 01:20:10.284527+00 f t 42000.00 1 42000.00 2148 82 \N 2643 +16202 2025-06-20 01:20:10.292916+00 2025-06-20 01:20:10.292929+00 f t 22500.00 1 22500.00 2148 86 \N 2643 +15613 2025-06-18 19:26:45.736133+00 2025-06-18 19:26:45.736147+00 f t 42000.00 1 42000.00 2056 82 \N 2576 +15614 2025-06-18 19:26:45.743498+00 2025-06-18 19:26:45.74351+00 f t 22500.00 1 22500.00 2056 86 \N 2576 +15616 2025-06-18 19:43:53.797349+00 2025-06-18 19:43:53.797363+00 f t 27500.00 1 27500.00 2058 83 \N 2577 +16206 2025-06-20 02:18:00.814283+00 2025-06-20 02:18:00.814298+00 f t 70000.00 1 70000.00 2150 97 \N 2645 +15634 2025-06-18 21:26:35.22451+00 2025-06-18 21:26:35.224522+00 f t 50000.00 1 50000.00 2059 84 \N 2578 +15640 2025-06-18 22:23:31.521765+00 2025-06-18 22:23:31.521779+00 f t 50000.00 1 50000.00 2061 84 \N 2579 +15641 2025-06-18 22:23:31.529447+00 2025-06-18 22:23:31.529461+00 f t 42000.00 1 42000.00 2061 82 \N 2579 +15648 2025-06-18 22:38:20.489722+00 2025-06-18 22:38:20.489731+00 f t 27500.00 1 27500.00 2062 83 \N 2580 +15651 2025-06-18 22:43:05.472356+00 2025-06-18 22:43:05.472368+00 f t 57000.00 1 57000.00 2063 106 \N 2581 +15666 2025-06-18 22:55:32.321517+00 2025-06-18 22:55:32.321533+00 f t 42000.00 1 42000.00 2065 82 \N 2583 +15667 2025-06-18 22:55:32.329069+00 2025-06-18 22:55:32.329083+00 f t 7500.00 1 7500.00 2065 85 \N 2583 +15693 2025-06-18 22:57:28.154813+00 2025-06-18 22:57:28.154827+00 f t 42000.00 1 42000.00 2064 82 \N 2582 +15694 2025-06-18 22:57:28.163684+00 2025-06-18 22:57:28.163698+00 f t 22500.00 1 22500.00 2064 163 \N 2582 +15700 2025-06-18 23:51:31.190645+00 2025-06-18 23:51:31.190656+00 f t 50000.00 1 50000.00 2067 84 \N 2584 +15701 2025-06-18 23:51:31.19848+00 2025-06-18 23:51:31.198492+00 f t 42000.00 1 42000.00 2067 82 \N 2584 +15706 2025-06-19 00:07:54.404606+00 2025-06-19 00:07:54.404615+00 f t 42000.00 1 42000.00 2070 82 \N 2585 +15709 2025-06-19 00:38:45.369334+00 2025-06-19 00:38:45.36935+00 f t 42000.00 1 42000.00 2071 82 \N 2589 +15710 2025-06-19 00:38:45.376258+00 2025-06-19 00:38:45.376268+00 f t 7500.00 1 7500.00 2071 85 \N 2589 +15897 2025-06-19 10:02:10.230954+00 2025-06-19 10:02:10.230969+00 f t 42000.00 1 42000.00 2088 82 \N 2602 +15898 2025-06-19 10:02:10.239219+00 2025-06-19 10:02:10.239233+00 f t 7700.00 1 7700.00 2088 93 \N 2602 +15899 2025-06-19 10:02:10.246228+00 2025-06-19 10:02:10.246239+00 f t 21000.00 1 21000.00 2088 109 \N 2602 +15900 2025-06-19 10:02:10.252424+00 2025-06-19 10:02:10.252438+00 f t 12000.00 1 12000.00 2088 146 \N 2602 +15901 2025-06-19 10:02:10.259533+00 2025-06-19 10:02:10.259547+00 f t 22500.00 1 22500.00 2088 163 \N 2602 +16470 2025-06-20 22:27:39.107808+00 2025-06-20 22:27:39.107817+00 f t 95000.00 1 95000.00 2192 103 \N 2678 +16480 2025-06-20 23:53:05.007519+00 2025-06-20 23:53:05.007533+00 f t 50000.00 1 50000.00 2196 84 \N 2680 +16487 2025-06-21 00:54:18.130858+00 2025-06-21 00:54:18.130874+00 f t 42000.00 1 42000.00 2202 82 \N 2683 +15936 2025-06-19 10:42:20.206659+00 2025-06-19 10:42:20.206672+00 f t 42000.00 1 42000.00 2089 82 \N 2603 +15937 2025-06-19 10:42:20.214322+00 2025-06-19 10:42:20.214334+00 f t 87500.00 1 87500.00 2089 141 \N 2603 +15941 2025-06-19 10:59:20.859759+00 2025-06-19 10:59:20.859772+00 f t 50000.00 1 50000.00 2090 84 \N 2604 +15992 2025-06-19 16:59:10.934515+00 2025-06-19 16:59:10.934527+00 f t 42000.00 1 42000.00 2100 82 \N 2613 +15993 2025-06-19 16:59:10.943223+00 2025-06-19 16:59:10.943237+00 f t 7700.00 1 7700.00 2100 93 \N 2613 +15776 2025-06-19 01:00:20.915195+00 2025-06-19 01:00:20.915207+00 f t 42000.00 1 42000.00 2073 82 \N 2590 +15777 2025-06-19 01:00:20.922075+00 2025-06-19 01:00:20.922089+00 f t 29000.00 1 29000.00 2073 124 \N 2590 +15778 2025-06-19 01:00:20.929075+00 2025-06-19 01:00:20.929086+00 f t 13000.00 1 13000.00 2073 89 \N 2590 +15779 2025-06-19 01:00:20.935253+00 2025-06-19 01:00:20.935265+00 f t 7500.00 1 7500.00 2073 85 \N 2590 +15780 2025-06-19 01:00:20.94141+00 2025-06-19 01:00:20.941423+00 f t 22500.00 1 22500.00 2073 163 \N 2590 +15994 2025-06-19 16:59:10.949299+00 2025-06-19 16:59:10.949312+00 f t 33000.00 1 33000.00 2100 112 \N 2613 +15782 2025-06-19 01:07:56.365142+00 2025-06-19 01:07:56.365155+00 f t 50000.00 1 50000.00 2074 84 \N 2591 +15995 2025-06-19 16:59:10.955298+00 2025-06-19 16:59:10.955312+00 f t 12000.00 1 12000.00 2100 146 \N 2613 +15784 2025-06-19 01:22:05.107098+00 2025-06-19 01:22:05.107112+00 f t 95000.00 1 95000.00 2075 103 \N 2592 +15789 2025-06-19 01:23:29.922093+00 2025-06-19 01:23:29.922106+00 f t 42000.00 1 42000.00 2076 82 \N 2593 +15790 2025-06-19 01:23:29.930689+00 2025-06-19 01:23:29.9307+00 f t 7700.00 1 7700.00 2076 93 \N 2593 +15791 2025-06-19 01:23:29.938744+00 2025-06-19 01:23:29.938758+00 f t 33000.00 1 33000.00 2076 111 \N 2593 +15792 2025-06-19 01:23:29.946877+00 2025-06-19 01:23:29.946891+00 f t 12000.00 1 12000.00 2076 146 \N 2593 +15794 2025-06-19 01:23:53.759072+00 2025-06-19 01:23:53.759083+00 f t 42000.00 1 42000.00 2077 82 \N 2594 +15797 2025-06-19 01:52:12.503631+00 2025-06-19 01:52:12.503643+00 f t 95000.00 1 95000.00 2081 103 \N 2595 +16011 2025-06-19 17:13:22.885513+00 2025-06-19 17:13:22.88553+00 f t 42000.00 1 42000.00 2105 82 \N 2616 +16012 2025-06-19 17:13:22.8935+00 2025-06-19 17:13:22.893514+00 f t 42000.00 1 42000.00 2105 82 \N 2617 +16014 2025-06-19 17:16:22.803345+00 2025-06-19 17:16:22.803361+00 f t 50000.00 1 50000.00 2106 84 \N 2618 +16017 2025-06-19 17:46:43.534593+00 2025-06-19 17:46:43.534613+00 f t 42000.00 1 42000.00 2109 82 \N 2619 +16018 2025-06-19 17:46:43.541383+00 2025-06-19 17:46:43.541397+00 f t 69000.00 1 69000.00 2109 142 \N 2619 +16020 2025-06-19 18:12:18.482203+00 2025-06-19 18:12:18.482215+00 f t 42000.00 1 42000.00 2110 82 \N 2620 +16031 2025-06-19 19:07:33.524581+00 2025-06-19 19:07:33.524595+00 f t 42000.00 1 42000.00 2115 82 \N 2621 +16032 2025-06-19 19:07:33.531615+00 2025-06-19 19:07:33.531629+00 f t 7700.00 1 7700.00 2115 91 \N 2621 +16036 2025-06-19 20:09:16.289693+00 2025-06-19 20:09:16.289704+00 f t 42000.00 1 42000.00 2118 82 \N 2625 +16045 2025-06-19 20:51:12.077555+00 2025-06-19 20:51:12.077569+00 f t 42000.00 1 42000.00 2120 82 \N 2627 +16046 2025-06-19 20:51:12.085301+00 2025-06-19 20:51:12.085316+00 f t 7500.00 1 7500.00 2120 85 \N 2627 +16050 2025-06-19 21:12:20.772326+00 2025-06-19 21:12:20.77234+00 f t 42000.00 1 42000.00 2121 82 \N 2628 +15818 2025-06-19 02:42:52.673016+00 2025-06-19 02:42:52.673029+00 f t 42000.00 1 42000.00 2082 82 \N 2596 +15819 2025-06-19 02:42:52.680841+00 2025-06-19 02:42:52.680868+00 f t 22500.00 1 22500.00 2082 86 \N 2596 +16051 2025-06-19 21:12:20.779896+00 2025-06-19 21:12:20.77991+00 f t 33000.00 1 33000.00 2121 139 \N 2628 +15821 2025-06-19 02:56:20.006876+00 2025-06-19 02:56:20.00689+00 f t 95000.00 1 95000.00 2083 103 \N 2597 +16052 2025-06-19 21:12:20.786147+00 2025-06-19 21:12:20.78616+00 f t 13000.00 1 13000.00 2121 89 \N 2628 +15823 2025-06-19 03:32:57.191647+00 2025-06-19 03:32:57.191658+00 f t 42000.00 1 42000.00 2084 82 \N 2598 +16055 2025-06-19 21:28:50.117166+00 2025-06-19 21:28:50.117179+00 f t 42000.00 1 42000.00 2122 82 \N 2629 +16056 2025-06-19 21:28:50.1234+00 2025-06-19 21:28:50.123413+00 f t 7500.00 1 7500.00 2122 85 \N 2629 +16059 2025-06-19 22:18:20.084281+00 2025-06-19 22:18:20.084297+00 f t 42000.00 1 42000.00 2124 82 \N 2630 +16060 2025-06-19 22:18:20.091669+00 2025-06-19 22:18:20.091684+00 f t 7500.00 1 7500.00 2124 85 \N 2630 +15828 2025-06-19 03:34:33.346396+00 2025-06-19 03:34:33.346406+00 f t 42000.00 1 42000.00 2085 82 \N 2599 +15829 2025-06-19 03:34:33.352956+00 2025-06-19 03:34:33.352968+00 f t 7500.00 1 7500.00 2085 85 \N 2599 +16066 2025-06-19 22:35:01.147092+00 2025-06-19 22:35:01.147106+00 f t 95000.00 1 95000.00 2125 103 \N 2631 +16087 2025-06-19 23:09:08.788647+00 2025-06-19 23:09:08.788663+00 f t 42000.00 1 42000.00 2128 82 \N 2633 +16088 2025-06-19 23:09:08.795112+00 2025-06-19 23:09:08.795123+00 f t 7700.00 1 7700.00 2128 93 \N 2633 +16089 2025-06-19 23:09:08.802459+00 2025-06-19 23:09:08.802474+00 f t 41000.00 1 41000.00 2128 110 \N 2633 +16090 2025-06-19 23:09:08.809692+00 2025-06-19 23:09:08.809702+00 f t 12000.00 1 12000.00 2128 146 \N 2633 +16095 2025-06-19 23:18:29.050819+00 2025-06-19 23:18:29.050833+00 f t 42000.00 1 42000.00 2129 82 \N 2634 +16096 2025-06-19 23:18:29.058074+00 2025-06-19 23:18:29.058086+00 f t 12000.00 1 12000.00 2129 116 \N 2634 +16097 2025-06-19 23:18:29.064166+00 2025-06-19 23:18:29.064176+00 f t 7700.00 1 7700.00 2129 93 \N 2634 +16098 2025-06-19 23:18:29.069047+00 2025-06-19 23:18:29.069057+00 f t 12000.00 1 12000.00 2129 146 \N 2634 +16124 2025-06-19 23:29:22.701665+00 2025-06-19 23:29:22.701676+00 f t 42000.00 1 42000.00 2130 82 \N 2635 +16125 2025-06-19 23:29:22.707005+00 2025-06-19 23:29:22.707014+00 f t 42000.00 1 42000.00 2130 82 \N 2636 +16126 2025-06-19 23:29:22.712093+00 2025-06-19 23:29:22.712102+00 f t 42000.00 1 42000.00 2130 82 \N 2637 +16127 2025-06-19 23:29:22.716909+00 2025-06-19 23:29:22.716922+00 f t 41000.00 1 41000.00 2130 135 \N 2637 +16128 2025-06-19 23:29:22.722264+00 2025-06-19 23:29:22.722273+00 f t 13000.00 1 13000.00 2130 89 \N 2637 +16144 2025-06-20 01:05:35.190642+00 2025-06-20 01:05:35.190657+00 f t 50000.00 1 50000.00 2140 84 \N 2640 +16146 2025-06-20 01:15:49.289295+00 2025-06-20 01:15:49.289307+00 f t 42000.00 1 42000.00 2146 82 \N 2641 +15884 2025-06-19 05:37:35.118662+00 2025-06-19 05:37:35.118678+00 f t 42000.00 1 42000.00 2087 82 \N 2600 +15885 2025-06-19 05:37:35.126512+00 2025-06-19 05:37:35.126526+00 f t 7700.00 1 7700.00 2087 91 \N 2600 +16191 2025-06-20 01:18:47.377303+00 2025-06-20 01:18:47.377318+00 f t 50000.00 1 50000.00 2149 84 \N 2644 +16425 2025-06-20 19:57:37.842747+00 2025-06-20 19:57:37.842758+00 f t 42000.00 1 42000.00 2185 82 \N 2672 +16219 2025-06-20 03:09:50.671489+00 2025-06-20 03:09:50.671503+00 f t 42000.00 1 42000.00 2152 82 \N 2646 +16220 2025-06-20 03:09:50.679422+00 2025-06-20 03:09:50.679438+00 f t 7700.00 1 7700.00 2152 93 \N 2646 +16221 2025-06-20 03:09:50.685786+00 2025-06-20 03:09:50.685796+00 f t 52000.00 1 52000.00 2152 113 \N 2646 +16222 2025-06-20 03:09:50.69173+00 2025-06-20 03:09:50.691743+00 f t 12000.00 1 12000.00 2152 146 \N 2646 +16463 2025-06-20 21:27:06.956229+00 2025-06-20 21:27:06.956238+00 f t 42000.00 1 42000.00 2189 82 \N 2676 +16477 2025-06-20 23:23:36.111079+00 2025-06-20 23:23:36.111088+00 f t 42000.00 1 42000.00 2194 82 \N 2679 +16478 2025-06-20 23:23:36.115784+00 2025-06-20 23:23:36.115791+00 f t 7500.00 1 7500.00 2194 85 \N 2679 +16484 2025-06-21 00:15:45.015391+00 2025-06-21 00:15:45.015401+00 f t 95000.00 1 95000.00 2198 103 \N 2682 +16488 2025-06-21 00:54:18.138427+00 2025-06-21 00:54:18.13844+00 f t 22500.00 1 22500.00 2202 163 \N 2683 +16490 2025-06-21 01:43:54.824261+00 2025-06-21 01:43:54.82427+00 f t 70000.00 1 70000.00 2204 108 \N 2685 +16492 2025-06-21 02:03:18.693654+00 2025-06-21 02:03:18.693664+00 f t 50000.00 1 50000.00 2205 84 \N 2686 +16494 2025-06-21 03:10:51.010475+00 2025-06-21 03:10:51.010487+00 f t 70000.00 1 70000.00 2207 97 \N 2688 +16504 2025-06-21 03:34:23.607191+00 2025-06-21 03:34:23.607203+00 f t 70000.00 1 70000.00 2208 97 \N 2689 +16506 2025-06-21 03:45:04.620353+00 2025-06-21 03:45:04.620368+00 f t 42000.00 1 42000.00 2209 82 \N 2690 +16508 2025-06-21 05:42:01.232559+00 2025-06-21 05:42:01.232584+00 f t 75000.00 1 75000.00 2210 99 \N 2691 +16514 2025-06-21 07:19:31.336526+00 2025-06-21 07:19:31.336538+00 f t 42000.00 1 42000.00 2214 82 \N 2693 +18671 2025-06-24 23:23:24.299494+00 2025-06-24 23:23:24.299505+00 f t 75000.00 1 75000.00 2409 99 \N 2846 +18675 2025-06-24 23:39:48.092435+00 2025-06-24 23:39:48.092445+00 f t 50000.00 1 50000.00 2411 84 \N 2847 +16529 2025-06-21 14:07:14.495845+00 2025-06-21 14:07:14.495871+00 f t 50000.00 1 50000.00 2220 84 \N 2696 +16555 2025-06-21 15:14:37.497595+00 2025-06-21 15:14:37.497604+00 f t 42000.00 1 42000.00 2224 82 \N 2700 +16557 2025-06-21 15:41:55.476808+00 2025-06-21 15:41:55.476818+00 f t 42000.00 1 42000.00 2225 82 \N 2701 +16560 2025-06-21 16:03:42.129211+00 2025-06-21 16:03:42.129219+00 f t 15400.00 1 15400.00 2226 92 \N 2702 +16561 2025-06-21 16:03:42.134635+00 2025-06-21 16:03:42.134644+00 f t 42000.00 1 42000.00 2226 82 \N 2702 +17045 2025-06-22 08:49:21.268766+00 2025-06-22 08:49:21.268778+00 f t 42000.00 1 42000.00 2268 82 \N 2727 +17046 2025-06-22 08:49:21.276064+00 2025-06-22 08:49:21.276073+00 f t 22500.00 1 22500.00 2268 88 \N 2727 +16567 2025-06-21 17:34:21.941638+00 2025-06-21 17:34:21.941647+00 f t 42000.00 1 42000.00 2229 82 \N 2703 +16569 2025-06-21 17:55:00.135937+00 2025-06-21 17:55:00.135947+00 f t 42000.00 1 42000.00 2230 82 \N 2704 +17048 2025-06-22 11:08:55.644419+00 2025-06-22 11:08:55.644433+00 f t 50000.00 1 50000.00 2269 84 \N 2728 +16573 2025-06-21 18:38:39.565379+00 2025-06-21 18:38:39.565388+00 f t 62000.00 1 62000.00 2231 106 \N 2705 +17050 2025-06-22 12:09:44.385986+00 2025-06-22 12:09:44.385999+00 f t 42000.00 1 42000.00 2270 82 \N 2729 +17052 2025-06-22 13:54:13.674978+00 2025-06-22 13:54:13.674988+00 f t 45000.00 1 45000.00 2271 98 \N 2730 +16620 2025-06-21 18:52:47.355419+00 2025-06-21 18:52:47.355428+00 f t 70000.00 1 70000.00 2232 97 \N 2706 +16621 2025-06-21 18:52:47.360913+00 2025-06-21 18:52:47.360921+00 f t 42000.00 1 42000.00 2232 82 \N 2706 +16622 2025-06-21 18:52:47.36523+00 2025-06-21 18:52:47.365237+00 f t 33000.00 1 33000.00 2232 139 \N 2706 +16623 2025-06-21 18:52:47.36937+00 2025-06-21 18:52:47.369378+00 f t 13000.00 1 13000.00 2232 89 \N 2706 +16655 2025-06-21 21:02:40.295698+00 2025-06-21 21:02:40.295708+00 f t 42000.00 1 42000.00 2239 82 \N 2710 +16656 2025-06-21 21:02:40.300614+00 2025-06-21 21:02:40.300621+00 f t 7500.00 1 7500.00 2239 85 \N 2710 +16659 2025-06-21 21:03:58.480485+00 2025-06-21 21:03:58.480502+00 f t 42000.00 1 42000.00 2240 82 \N 2713 +16660 2025-06-21 21:03:58.485844+00 2025-06-21 21:03:58.485852+00 f t 7500.00 1 7500.00 2240 85 \N 2713 +16662 2025-06-21 22:44:27.197409+00 2025-06-21 22:44:27.197417+00 f t 50000.00 1 50000.00 2251 84 \N 2715 +17150 2025-06-22 20:41:15.729565+00 2025-06-22 20:41:15.729574+00 f t 62000.00 1 62000.00 2289 106 \N 2744 +17154 2025-06-22 20:57:09.35143+00 2025-06-22 20:57:09.351459+00 f t 27500.00 1 27500.00 2290 83 \N 2745 +17164 2025-06-22 21:10:38.283706+00 2025-06-22 21:10:38.283715+00 f t 50000.00 1 50000.00 2291 84 \N 2746 +17167 2025-06-22 23:23:35.357861+00 2025-06-22 23:23:35.35787+00 f t 42000.00 1 42000.00 2295 82 \N 2749 +17168 2025-06-22 23:23:35.366947+00 2025-06-22 23:23:35.366977+00 f t 7500.00 1 7500.00 2295 85 \N 2749 +16708 2025-06-22 02:03:25.155762+00 2025-06-22 02:03:25.155773+00 f t 42000.00 1 42000.00 2258 82 \N 2719 +16709 2025-06-22 02:03:25.161893+00 2025-06-22 02:03:25.161902+00 f t 7500.00 1 7500.00 2258 85 \N 2719 +16710 2025-06-22 02:03:25.166491+00 2025-06-22 02:03:25.166498+00 f t 42000.00 1 42000.00 2258 82 \N 2720 +16711 2025-06-22 02:03:25.170664+00 2025-06-22 02:03:25.170672+00 f t 7500.00 1 7500.00 2258 85 \N 2720 +17193 2025-06-23 02:33:21.500786+00 2025-06-23 02:33:21.500795+00 f t 42000.00 1 42000.00 2299 82 \N 2752 +17194 2025-06-23 02:33:21.506364+00 2025-06-23 02:33:21.506373+00 f t 12000.00 1 12000.00 2299 116 \N 2752 +17195 2025-06-23 02:33:21.511157+00 2025-06-23 02:33:21.511166+00 f t 7700.00 1 7700.00 2299 93 \N 2752 +17196 2025-06-23 02:33:21.515733+00 2025-06-23 02:33:21.515745+00 f t 12000.00 1 12000.00 2299 146 \N 2752 +17213 2025-06-23 02:35:21.531273+00 2025-06-23 02:35:21.531282+00 f t 15400.00 1 15400.00 2300 92 \N 2753 +17214 2025-06-23 02:35:21.537065+00 2025-06-23 02:35:21.537081+00 f t 70000.00 1 70000.00 2300 97 \N 2753 +17215 2025-06-23 02:35:21.542361+00 2025-06-23 02:35:21.542371+00 f t 42000.00 1 42000.00 2300 82 \N 2753 +17216 2025-06-23 02:35:21.546961+00 2025-06-23 02:35:21.546969+00 f t 7500.00 1 7500.00 2300 85 \N 2753 +17238 2025-06-23 04:02:55.037442+00 2025-06-23 04:02:55.037451+00 f t 42000.00 1 42000.00 2308 82 \N 2758 +17239 2025-06-23 04:02:55.04445+00 2025-06-23 04:02:55.044462+00 f t 7500.00 1 7500.00 2308 85 \N 2758 +17252 2025-06-23 07:15:09.114737+00 2025-06-23 07:15:09.114746+00 f t 50000.00 1 50000.00 2310 84 \N 2761 +17258 2025-06-23 08:06:03.934349+00 2025-06-23 08:06:03.934362+00 f t 42000.00 1 42000.00 2311 82 \N 2762 +17260 2025-06-23 11:19:19.542149+00 2025-06-23 11:19:19.54216+00 f t 50000.00 1 50000.00 2313 84 \N 2763 +17274 2025-06-23 12:06:43.019646+00 2025-06-23 12:06:43.019654+00 f t 50000.00 1 50000.00 2315 84 \N 2765 +17289 2025-06-23 12:09:20.534225+00 2025-06-23 12:09:20.534234+00 f t 42000.00 1 42000.00 2316 82 \N 2766 +17290 2025-06-23 12:09:20.539577+00 2025-06-23 12:09:20.539584+00 f t 7500.00 1 7500.00 2316 85 \N 2766 +17291 2025-06-23 12:09:20.543231+00 2025-06-23 12:09:20.543238+00 f t 42000.00 1 42000.00 2316 82 \N 2767 +17292 2025-06-23 12:09:20.546946+00 2025-06-23 12:09:20.546957+00 f t 7500.00 1 7500.00 2316 85 \N 2767 +17298 2025-06-23 12:12:39.176364+00 2025-06-23 12:12:39.176375+00 f t 42000.00 1 42000.00 2317 82 \N 2768 +16436 2025-06-20 20:10:19.478+00 2025-06-20 20:10:19.478011+00 f t 42000.00 1 42000.00 2186 82 \N 2673 +16227 2025-06-20 03:12:23.871465+00 2025-06-20 03:12:23.871479+00 f t 42000.00 1 42000.00 2153 82 \N 2647 +16228 2025-06-20 03:12:23.879394+00 2025-06-20 03:12:23.879406+00 f t 22500.00 1 22500.00 2153 86 \N 2647 +16437 2025-06-20 20:10:19.48437+00 2025-06-20 20:10:19.48438+00 f t 69000.00 1 69000.00 2186 142 \N 2673 +16231 2025-06-20 03:44:35.684892+00 2025-06-20 03:44:35.684903+00 f t 42000.00 1 42000.00 2155 82 \N 2649 +16232 2025-06-20 03:44:35.692002+00 2025-06-20 03:44:35.692012+00 f t 7500.00 1 7500.00 2155 85 \N 2649 +17561 2025-06-23 18:33:57.559753+00 2025-06-23 18:33:57.559766+00 f t 42000.00 1 42000.00 2337 82 \N 2789 +17562 2025-06-23 18:33:57.566196+00 2025-06-23 18:33:57.566208+00 f t 7700.00 1 7700.00 2337 93 \N 2789 +16482 2025-06-21 00:06:58.265116+00 2025-06-21 00:06:58.265128+00 f t 42000.00 1 42000.00 2197 82 \N 2681 +16243 2025-06-20 09:21:48.336759+00 2025-06-20 09:21:48.336769+00 f t 42000.00 1 42000.00 2157 82 \N 2650 +16244 2025-06-20 09:21:48.344069+00 2025-06-20 09:21:48.344079+00 f t 69000.00 1 69000.00 2157 142 \N 2650 +17563 2025-06-23 18:33:57.571472+00 2025-06-23 18:33:57.571483+00 f t 45500.00 1 45500.00 2337 114 \N 2789 +16246 2025-06-20 13:48:22.754636+00 2025-06-20 13:48:22.754648+00 f t 42000.00 1 42000.00 2159 82 \N 2652 +17564 2025-06-23 18:33:57.57713+00 2025-06-23 18:33:57.577141+00 f t 12000.00 1 12000.00 2337 146 \N 2789 +16251 2025-06-20 14:22:20.901137+00 2025-06-20 14:22:20.901147+00 f t 27500.00 1 27500.00 2160 83 \N 2653 +16255 2025-06-20 14:32:26.016176+00 2025-06-20 14:32:26.016188+00 f t 42000.00 1 42000.00 2161 82 \N 2654 +16256 2025-06-20 14:32:26.023911+00 2025-06-20 14:32:26.023925+00 f t 33000.00 1 33000.00 2161 140 \N 2654 +16257 2025-06-20 14:32:26.028723+00 2025-06-20 14:32:26.028732+00 f t 13000.00 1 13000.00 2161 89 \N 2654 +16260 2025-06-20 14:40:30.786902+00 2025-06-20 14:40:30.786912+00 f t 42000.00 1 42000.00 2162 82 \N 2655 +16261 2025-06-20 14:40:30.792389+00 2025-06-20 14:40:30.792399+00 f t 69000.00 1 69000.00 2162 142 \N 2655 +16265 2025-06-20 14:48:39.883983+00 2025-06-20 14:48:39.883995+00 f t 42000.00 1 42000.00 2163 82 \N 2656 +16271 2025-06-20 15:23:51.882993+00 2025-06-20 15:23:51.883005+00 f t 27500.00 1 27500.00 2165 83 \N 2658 +16523 2025-06-21 07:20:48.608861+00 2025-06-21 07:20:48.608872+00 f t 42000.00 1 42000.00 2213 82 \N 2692 +16524 2025-06-21 07:20:48.614222+00 2025-06-21 07:20:48.614231+00 f t 22500.00 1 22500.00 2213 86 \N 2692 +16526 2025-06-21 12:53:12.033723+00 2025-06-21 12:53:12.033732+00 f t 42000.00 1 42000.00 2216 82 \N 2694 +16537 2025-06-21 14:11:54.545001+00 2025-06-21 14:11:54.545014+00 f t 42000.00 1 42000.00 2218 82 \N 2695 +16538 2025-06-21 14:11:54.549777+00 2025-06-21 14:11:54.549786+00 f t 42000.00 1 42000.00 2218 82 \N 2697 +16282 2025-06-20 15:40:22.974926+00 2025-06-20 15:40:22.974938+00 f t 42000.00 1 42000.00 2166 82 \N 2659 +16283 2025-06-20 15:40:22.981289+00 2025-06-20 15:40:22.981302+00 f t 7500.00 1 7500.00 2166 85 \N 2659 +17070 2025-06-22 14:02:25.378494+00 2025-06-22 14:02:25.378503+00 f t 42000.00 1 42000.00 2273 82 \N 2735 +17077 2025-06-22 14:27:56.479683+00 2025-06-22 14:27:56.479694+00 f t 42000.00 1 42000.00 2275 82 \N 2736 +16302 2025-06-20 16:36:40.937207+00 2025-06-20 16:36:40.93722+00 f t 70000.00 1 70000.00 2169 97 \N 2660 +17078 2025-06-22 14:27:56.484741+00 2025-06-22 14:27:56.484749+00 f t 7500.00 1 7500.00 2275 85 \N 2736 +17102 2025-06-22 15:58:37.104113+00 2025-06-22 15:58:37.104122+00 f t 42000.00 1 42000.00 2281 82 \N 2738 +16316 2025-06-20 17:25:31.886858+00 2025-06-20 17:25:31.886871+00 f t 50000.00 1 50000.00 2170 84 \N 2661 +17106 2025-06-22 16:16:14.750435+00 2025-06-22 16:16:14.750447+00 f t 42000.00 1 42000.00 2283 82 \N 2739 +17108 2025-06-22 17:15:49.363384+00 2025-06-22 17:15:49.363392+00 f t 50000.00 1 50000.00 2285 84 \N 2740 +17115 2025-06-22 17:47:00.999798+00 2025-06-22 17:47:00.999811+00 f t 42000.00 1 42000.00 2286 82 \N 2741 +17116 2025-06-22 17:47:01.006911+00 2025-06-22 17:47:01.006923+00 f t 22500.00 1 22500.00 2286 86 \N 2741 +16326 2025-06-20 18:08:30.59277+00 2025-06-20 18:08:30.592782+00 f t 42000.00 1 42000.00 2172 82 \N 2662 +17134 2025-06-22 18:03:20.375713+00 2025-06-22 18:03:20.375725+00 f t 42000.00 1 42000.00 2287 82 \N 2742 +17135 2025-06-22 18:03:20.382033+00 2025-06-22 18:03:20.382041+00 f t 7700.00 1 7700.00 2287 93 \N 2742 +17136 2025-06-22 18:03:20.387827+00 2025-06-22 18:03:20.387838+00 f t 33000.00 1 33000.00 2287 111 \N 2742 +17137 2025-06-22 18:03:20.393287+00 2025-06-22 18:03:20.393299+00 f t 12000.00 1 12000.00 2287 146 \N 2742 +16636 2025-06-21 19:48:36.332215+00 2025-06-21 19:48:36.332223+00 f t 42000.00 1 42000.00 2233 82 \N 2707 +16640 2025-06-21 19:49:44.611169+00 2025-06-21 19:49:44.611178+00 f t 95000.00 1 95000.00 2234 103 \N 2708 +16642 2025-06-21 19:51:20.882755+00 2025-06-21 19:51:20.882764+00 f t 42000.00 1 42000.00 2235 82 \N 2709 +17171 2025-06-23 01:38:26.485672+00 2025-06-23 01:38:26.485683+00 f t 50000.00 1 50000.00 2297 84 \N 2750 +17174 2025-06-23 02:16:10.908127+00 2025-06-23 02:16:10.908141+00 f t 42000.00 1 42000.00 2298 82 \N 2751 +17175 2025-06-23 02:16:10.913938+00 2025-06-23 02:16:10.913948+00 f t 22500.00 1 22500.00 2298 163 \N 2751 +16687 2025-06-21 23:24:31.271162+00 2025-06-21 23:24:31.271172+00 f t 95000.00 1 95000.00 2252 103 \N 2716 +16689 2025-06-22 00:58:07.304186+00 2025-06-22 00:58:07.304195+00 f t 27500.00 1 27500.00 2255 83 \N 2717 +16695 2025-06-22 01:30:37.136735+00 2025-06-22 01:30:37.136743+00 f t 50000.00 1 50000.00 2257 84 \N 2718 +16368 2025-06-20 18:27:11.890489+00 2025-06-20 18:27:11.890499+00 f t 42000.00 1 42000.00 2175 82 \N 2664 +16369 2025-06-20 18:27:11.896639+00 2025-06-20 18:27:11.896648+00 f t 81500.00 1 81500.00 2175 144 \N 2664 +16371 2025-06-20 18:40:21.282043+00 2025-06-20 18:40:21.282057+00 f t 27500.00 1 27500.00 2177 83 \N 2666 +16374 2025-06-20 19:04:39.004741+00 2025-06-20 19:04:39.004752+00 f t 42000.00 1 42000.00 2181 82 \N 2669 +16375 2025-06-20 19:04:39.010579+00 2025-06-20 19:04:39.010589+00 f t 22500.00 1 22500.00 2181 163 \N 2669 +16714 2025-06-22 02:59:26.816652+00 2025-06-22 02:59:26.816662+00 f t 42000.00 1 42000.00 2259 82 \N 2721 +17219 2025-06-23 03:24:14.872662+00 2025-06-23 03:24:14.872676+00 f t 62000.00 1 62000.00 2305 106 \N 2754 +17223 2025-06-23 03:55:03.077233+00 2025-06-23 03:55:03.077247+00 f t 42000.00 1 42000.00 2306 82 \N 2756 +17224 2025-06-23 03:55:03.091923+00 2025-06-23 03:55:03.091936+00 f t 33000.00 1 33000.00 2306 139 \N 2756 +17225 2025-06-23 03:55:03.100965+00 2025-06-23 03:55:03.100978+00 f t 13000.00 1 13000.00 2306 89 \N 2756 +17229 2025-06-23 03:56:30.56569+00 2025-06-23 03:56:30.565699+00 f t 42000.00 1 42000.00 2307 82 \N 2757 +16767 2025-06-22 03:43:25.107505+00 2025-06-22 03:43:25.107514+00 f t 42000.00 1 42000.00 2263 82 \N 2724 +16768 2025-06-22 03:43:25.113213+00 2025-06-22 03:43:25.113223+00 f t 7500.00 1 7500.00 2263 85 \N 2724 +16418 2025-06-20 19:25:33.555246+00 2025-06-20 19:25:33.555258+00 f t 42000.00 1 42000.00 2183 82 \N 2670 +16419 2025-06-20 19:25:33.560813+00 2025-06-20 19:25:33.560825+00 f t 7700.00 1 7700.00 2183 93 \N 2670 +16420 2025-06-20 19:25:33.566584+00 2025-06-20 19:25:33.566596+00 f t 33000.00 1 33000.00 2183 111 \N 2670 +16421 2025-06-20 19:25:33.572747+00 2025-06-20 19:25:33.572761+00 f t 12000.00 1 12000.00 2183 146 \N 2670 +19170 2025-06-26 01:20:48.640371+00 2025-06-26 01:20:48.640384+00 f t 42000.00 1 42000.00 2487 82 \N 2892 +17303 2025-06-23 13:06:46.201804+00 2025-06-23 13:06:46.201813+00 f t 42000.00 1 42000.00 2318 82 \N 2769 +17304 2025-06-23 13:06:46.207289+00 2025-06-23 13:06:46.207297+00 f t 7700.00 1 7700.00 2318 93 \N 2769 +17305 2025-06-23 13:06:46.211599+00 2025-06-23 13:06:46.211609+00 f t 33000.00 1 33000.00 2318 111 \N 2769 +17306 2025-06-23 13:06:46.21583+00 2025-06-23 13:06:46.215838+00 f t 12000.00 1 12000.00 2318 146 \N 2769 +17548 2025-06-23 18:20:35.982203+00 2025-06-23 18:20:35.982212+00 f t 42000.00 1 42000.00 2336 82 \N 2788 +17549 2025-06-23 18:20:35.988816+00 2025-06-23 18:20:35.988827+00 f t 46900.00 1 46900.00 2336 136 \N 2788 +17550 2025-06-23 18:20:35.994692+00 2025-06-23 18:20:35.994703+00 f t 33000.00 1 33000.00 2336 133 \N 2788 +17551 2025-06-23 18:20:36.001579+00 2025-06-23 18:20:36.001591+00 f t 13000.00 1 13000.00 2336 89 \N 2788 +20447 2025-06-29 12:59:15.578765+00 2025-06-29 12:59:15.578774+00 f t 50000.00 1 50000.00 2678 84 \N 3057 +17317 2025-06-23 14:24:16.227871+00 2025-06-23 14:24:16.22788+00 f t 56000.00 1 56000.00 2322 105 \N 2773 +17321 2025-06-23 14:24:38.417155+00 2025-06-23 14:24:38.417164+00 f t 42000.00 1 42000.00 2321 82 \N 2772 +17567 2025-06-23 20:42:16.915775+00 2025-06-23 20:42:16.915787+00 f t 50000.00 1 50000.00 2343 84 \N 2796 +17327 2025-06-23 15:17:57.130065+00 2025-06-23 15:17:57.130078+00 f t 70000.00 1 70000.00 2324 97 \N 2774 +17328 2025-06-23 15:17:57.136153+00 2025-06-23 15:17:57.136166+00 f t 27500.00 1 27500.00 2324 83 \N 2774 +17331 2025-06-23 16:13:25.71379+00 2025-06-23 16:13:25.713799+00 f t 42000.00 1 42000.00 2325 82 \N 2776 +17332 2025-06-23 16:13:25.719906+00 2025-06-23 16:13:25.719915+00 f t 22500.00 1 22500.00 2325 86 \N 2776 +18679 2025-06-25 00:25:42.107887+00 2025-06-25 00:25:42.107896+00 f t 42000.00 1 42000.00 2415 82 \N 2849 +18685 2025-06-25 02:09:35.286512+00 2025-06-25 02:09:35.286521+00 f t 13000.00 1 13000.00 2420 89 \N 2853 +18693 2025-06-25 02:31:28.314539+00 2025-06-25 02:31:28.314551+00 f t 50000.00 1 50000.00 2422 84 \N 2854 +18696 2025-06-25 02:45:04.116945+00 2025-06-25 02:45:04.116958+00 f t 42000.00 1 42000.00 2423 82 \N 2855 +18697 2025-06-25 02:45:04.128326+00 2025-06-25 02:45:04.12834+00 f t 7500.00 1 7500.00 2423 85 \N 2855 +17345 2025-06-23 16:25:33.428042+00 2025-06-23 16:25:33.428051+00 f t 42000.00 1 42000.00 2326 82 \N 2777 +17346 2025-06-23 16:25:33.434896+00 2025-06-23 16:25:33.434908+00 f t 7500.00 1 7500.00 2326 85 \N 2777 +18699 2025-06-25 02:49:23.661152+00 2025-06-25 02:49:23.661161+00 f t 42000.00 1 42000.00 2425 82 \N 2856 +18762 2025-06-25 03:49:33.67753+00 2025-06-25 03:49:33.67754+00 f t 42000.00 1 42000.00 2430 82 \N 2860 +18763 2025-06-25 03:49:33.682849+00 2025-06-25 03:49:33.682857+00 f t 7700.00 1 7700.00 2430 93 \N 2860 +18764 2025-06-25 03:49:33.687442+00 2025-06-25 03:49:33.687456+00 f t 45500.00 1 45500.00 2430 114 \N 2860 +18765 2025-06-25 03:49:33.692658+00 2025-06-25 03:49:33.692667+00 f t 12000.00 1 12000.00 2430 146 \N 2860 +18767 2025-06-25 05:55:51.240934+00 2025-06-25 05:55:51.240943+00 f t 50000.00 1 50000.00 2431 84 \N 2861 +18769 2025-06-25 10:19:35.499538+00 2025-06-25 10:19:35.499549+00 f t 62000.00 1 62000.00 2436 106 \N 2863 +17400 2025-06-23 16:42:04.738429+00 2025-06-23 16:42:04.738439+00 f t 42000.00 1 42000.00 2327 82 \N 2778 +17401 2025-06-23 16:42:04.743731+00 2025-06-23 16:42:04.74374+00 f t 7700.00 1 7700.00 2327 93 \N 2778 +17402 2025-06-23 16:42:04.749026+00 2025-06-23 16:42:04.749038+00 f t 52000.00 1 52000.00 2327 113 \N 2778 +17403 2025-06-23 16:42:04.753836+00 2025-06-23 16:42:04.753848+00 f t 21000.00 1 21000.00 2327 109 \N 2778 +17404 2025-06-23 16:42:04.758485+00 2025-06-23 16:42:04.758493+00 f t 12000.00 1 12000.00 2327 146 \N 2778 +18775 2025-06-25 10:31:31.572708+00 2025-06-25 10:31:31.57272+00 f t 50000.00 1 50000.00 2437 84 \N 2864 +18782 2025-06-25 12:45:51.690197+00 2025-06-25 12:45:51.690207+00 f t 61000.00 1 61000.00 2438 100 \N 2865 +18783 2025-06-25 12:45:51.696492+00 2025-06-25 12:45:51.696504+00 f t 42000.00 1 42000.00 2438 82 \N 2865 +18784 2025-06-25 12:45:51.70106+00 2025-06-25 12:45:51.70107+00 f t 22500.00 1 22500.00 2438 86 \N 2865 +17646 2025-06-23 20:56:56.714654+00 2025-06-23 20:56:56.714666+00 f t 95000.00 1 95000.00 2344 103 \N 2797 +17647 2025-06-23 20:56:56.721514+00 2025-06-23 20:56:56.721522+00 f t 42000.00 1 42000.00 2344 82 \N 2797 +17648 2025-06-23 20:56:56.726281+00 2025-06-23 20:56:56.726291+00 f t 7700.00 1 7700.00 2344 93 \N 2797 +17649 2025-06-23 20:56:56.731022+00 2025-06-23 20:56:56.73103+00 f t 12000.00 1 12000.00 2344 146 \N 2797 +17419 2025-06-23 16:53:12.999292+00 2025-06-23 16:53:12.999303+00 f t 42000.00 1 42000.00 2328 82 \N 2780 +17420 2025-06-23 16:53:13.005965+00 2025-06-23 16:53:13.005979+00 f t 7500.00 1 7500.00 2328 85 \N 2780 +18786 2025-06-25 13:46:41.747094+00 2025-06-25 13:46:41.747106+00 f t 95000.00 1 95000.00 2441 103 \N 2866 +17423 2025-06-23 18:02:35.698629+00 2025-06-23 18:02:35.698638+00 f t 62000.00 1 62000.00 2332 106 \N 2782 +17426 2025-06-23 18:11:18.673031+00 2025-06-23 18:11:18.673041+00 f t 42000.00 1 42000.00 2333 82 \N 2783 +17427 2025-06-23 18:11:18.677999+00 2025-06-23 18:11:18.678007+00 f t 22500.00 1 22500.00 2333 86 \N 2783 +17447 2025-06-23 18:14:00.043435+00 2025-06-23 18:14:00.043444+00 f t 70000.00 1 70000.00 2334 108 \N 2784 +18354 2025-06-24 01:29:22.673608+00 2025-06-24 01:29:22.673618+00 f t 42000.00 1 42000.00 2357 82 \N 2809 +18355 2025-06-24 01:29:22.680305+00 2025-06-24 01:29:22.680316+00 f t 69000.00 1 69000.00 2357 142 \N 2809 +18356 2025-06-24 01:29:22.685918+00 2025-06-24 01:29:22.685926+00 f t 27500.00 1 27500.00 2357 83 \N 2809 +18360 2025-06-24 01:37:20.590945+00 2025-06-24 01:37:20.590984+00 f t 42000.00 1 42000.00 2358 82 \N 2810 +18361 2025-06-24 01:37:20.600918+00 2025-06-24 01:37:20.600929+00 f t 24000.00 1 24000.00 2358 131 \N 2810 +18362 2025-06-24 01:37:20.606276+00 2025-06-24 01:37:20.606311+00 f t 13000.00 1 13000.00 2358 89 \N 2810 +18364 2025-06-24 01:45:01.201172+00 2025-06-24 01:45:01.201181+00 f t 42000.00 1 42000.00 2359 82 \N 2811 +18370 2025-06-24 01:57:49.502309+00 2025-06-24 01:57:49.502317+00 f t 50000.00 1 50000.00 2360 84 \N 2812 +18424 2025-06-24 15:05:48.151472+00 2025-06-24 15:05:48.151481+00 f t 42000.00 1 42000.00 2377 82 \N 2820 +18436 2025-06-24 15:10:38.510873+00 2025-06-24 15:10:38.510885+00 f t 61000.00 1 61000.00 2380 100 \N 2821 +18439 2025-06-24 15:27:31.343214+00 2025-06-24 15:27:31.343225+00 f t 42000.00 1 42000.00 2381 82 \N 2823 +18440 2025-06-24 15:27:31.349619+00 2025-06-24 15:27:31.349629+00 f t 7700.00 1 7700.00 2381 91 \N 2823 +17523 2025-06-23 18:18:40.383435+00 2025-06-23 18:18:40.383443+00 f t 42000.00 1 42000.00 2335 82 \N 2785 +17524 2025-06-23 18:18:40.388766+00 2025-06-23 18:18:40.388774+00 f t 7500.00 1 7500.00 2335 85 \N 2785 +17525 2025-06-23 18:18:40.393139+00 2025-06-23 18:18:40.393151+00 f t 22500.00 1 22500.00 2335 163 \N 2785 +17526 2025-06-23 18:18:40.397214+00 2025-06-23 18:18:40.397221+00 f t 42000.00 1 42000.00 2335 82 \N 2787 +17527 2025-06-23 18:18:40.401455+00 2025-06-23 18:18:40.401463+00 f t 7500.00 1 7500.00 2335 85 \N 2787 +17528 2025-06-23 18:18:40.406225+00 2025-06-23 18:18:40.406236+00 f t 22500.00 1 22500.00 2335 163 \N 2787 +19798 2025-06-27 11:37:09.523594+00 2025-06-27 11:37:09.523607+00 f t 42000.00 1 42000.00 2570 82 \N 2964 +19799 2025-06-27 11:37:09.530503+00 2025-06-27 11:37:09.530516+00 f t 7500.00 1 7500.00 2570 85 \N 2964 +18659 2025-06-24 22:40:11.248447+00 2025-06-24 22:40:11.248457+00 f t 70000.00 1 70000.00 2405 97 \N 2843 +18663 2025-06-24 22:50:13.438026+00 2025-06-24 22:50:13.438035+00 f t 27500.00 1 27500.00 2407 83 \N 2844 +18668 2025-06-24 23:21:54.120392+00 2025-06-24 23:21:54.120401+00 f t 42000.00 1 42000.00 2408 82 \N 2845 +18669 2025-06-24 23:21:54.126431+00 2025-06-24 23:21:54.126443+00 f t 75000.00 1 75000.00 2408 143 \N 2845 +18677 2025-06-25 00:02:32.699991+00 2025-06-25 00:02:32.700001+00 f t 42000.00 1 42000.00 2413 82 \N 2848 +18704 2025-06-25 03:09:07.094073+00 2025-06-25 03:09:07.094084+00 f t 42000.00 1 42000.00 2427 82 \N 2857 +18705 2025-06-25 03:09:07.101143+00 2025-06-25 03:09:07.101155+00 f t 7500.00 1 7500.00 2427 85 \N 2857 +18728 2025-06-25 03:43:21.651427+00 2025-06-25 03:43:21.651436+00 f t 42000.00 1 42000.00 2429 82 \N 2858 +18729 2025-06-25 03:43:21.658607+00 2025-06-25 03:43:21.658616+00 f t 22500.00 1 22500.00 2429 88 \N 2858 +18730 2025-06-25 03:43:21.663811+00 2025-06-25 03:43:21.663823+00 f t 42000.00 1 42000.00 2429 82 \N 2859 +18731 2025-06-25 03:43:21.668696+00 2025-06-25 03:43:21.668706+00 f t 22500.00 1 22500.00 2429 88 \N 2859 +18160 2025-06-23 21:52:47.943011+00 2025-06-23 21:52:47.94302+00 f t 42000.00 1 42000.00 2345 82 \N 2798 +18164 2025-06-23 22:42:25.761789+00 2025-06-23 22:42:25.761801+00 f t 62000.00 1 62000.00 2347 106 \N 2799 +18204 2025-06-23 23:04:03.64085+00 2025-06-23 23:04:03.640865+00 f t 42000.00 1 42000.00 2348 82 \N 2800 +18205 2025-06-23 23:04:03.6491+00 2025-06-23 23:04:03.649112+00 f t 7700.00 1 7700.00 2348 91 \N 2800 +18206 2025-06-23 23:04:03.656899+00 2025-06-23 23:04:03.656913+00 f t 7500.00 1 7500.00 2348 85 \N 2800 +18207 2025-06-23 23:04:03.663659+00 2025-06-23 23:04:03.663673+00 f t 22500.00 1 22500.00 2348 86 \N 2800 +18279 2025-06-23 23:41:13.265209+00 2025-06-23 23:41:13.265218+00 f t 42000.00 1 42000.00 2349 82 \N 2801 +18280 2025-06-23 23:41:13.271166+00 2025-06-23 23:41:13.271174+00 f t 33000.00 1 33000.00 2349 139 \N 2801 +18281 2025-06-23 23:41:13.275843+00 2025-06-23 23:41:13.27585+00 f t 13000.00 1 13000.00 2349 89 \N 2801 +18291 2025-06-24 00:09:29.017376+00 2025-06-24 00:09:29.017386+00 f t 50000.00 1 50000.00 2351 84 \N 2803 +18312 2025-06-24 00:13:35.461811+00 2025-06-24 00:13:35.461821+00 f t 42000.00 1 42000.00 2350 82 \N 2802 +18313 2025-06-24 00:13:35.466563+00 2025-06-24 00:13:35.466572+00 f t 7500.00 1 7500.00 2350 85 \N 2802 +18314 2025-06-24 00:13:35.471768+00 2025-06-24 00:13:35.47178+00 f t 22500.00 1 22500.00 2350 86 \N 2802 +18325 2025-06-24 00:34:57.078095+00 2025-06-24 00:34:57.078104+00 f t 42000.00 1 42000.00 2352 82 \N 2805 +18326 2025-06-24 00:34:57.088305+00 2025-06-24 00:34:57.088315+00 f t 22500.00 1 22500.00 2352 86 \N 2805 +18343 2025-06-24 01:23:22.836009+00 2025-06-24 01:23:22.836018+00 f t 42000.00 1 42000.00 2356 82 \N 2807 +18344 2025-06-24 01:23:22.842187+00 2025-06-24 01:23:22.842198+00 f t 62000.00 1 62000.00 2356 106 \N 2807 +18345 2025-06-24 01:23:22.846817+00 2025-06-24 01:23:22.846824+00 f t 7700.00 1 7700.00 2356 93 \N 2807 +18346 2025-06-24 01:23:22.851404+00 2025-06-24 01:23:22.851412+00 f t 45500.00 1 45500.00 2356 114 \N 2807 +18347 2025-06-24 01:23:22.855714+00 2025-06-24 01:23:22.855722+00 f t 12000.00 1 12000.00 2356 146 \N 2807 +18375 2025-06-24 02:12:42.38619+00 2025-06-24 02:12:42.386204+00 f t 61000.00 1 61000.00 2361 100 \N 2813 +18381 2025-06-24 02:15:43.963781+00 2025-06-24 02:15:43.963791+00 f t 61000.00 1 61000.00 2362 100 \N 2814 +18383 2025-06-24 13:00:22.643596+00 2025-06-24 13:00:22.64361+00 f t 42000.00 1 42000.00 2370 82 \N 2815 +18399 2025-06-24 13:41:51.485574+00 2025-06-24 13:41:51.485584+00 f t 50000.00 1 50000.00 2373 84 \N 2816 +18418 2025-06-24 14:46:51.659607+00 2025-06-24 14:46:51.659616+00 f t 42000.00 1 42000.00 2375 82 \N 2818 +18419 2025-06-24 14:46:51.66528+00 2025-06-24 14:46:51.665289+00 f t 69000.00 1 69000.00 2375 142 \N 2818 +18421 2025-06-24 14:53:27.490246+00 2025-06-24 14:53:27.490255+00 f t 42000.00 1 42000.00 2376 82 \N 2819 +18452 2025-06-24 15:36:43.711266+00 2025-06-24 15:36:43.711275+00 f t 95000.00 1 95000.00 2382 103 \N 2824 +18453 2025-06-24 15:36:43.719474+00 2025-06-24 15:36:43.719484+00 f t 62000.00 1 62000.00 2382 106 \N 2824 +18458 2025-06-24 15:45:16.46971+00 2025-06-24 15:45:16.469723+00 f t 42000.00 1 42000.00 2383 82 \N 2826 +18459 2025-06-24 15:45:16.477458+00 2025-06-24 15:45:16.477472+00 f t 7700.00 1 7700.00 2383 93 \N 2826 +18460 2025-06-24 15:45:16.484523+00 2025-06-24 15:45:16.484537+00 f t 45500.00 1 45500.00 2383 114 \N 2826 +18461 2025-06-24 15:45:16.490624+00 2025-06-24 15:45:16.490634+00 f t 12000.00 1 12000.00 2383 146 \N 2826 +18463 2025-06-24 16:14:15.234122+00 2025-06-24 16:14:15.234135+00 f t 42000.00 1 42000.00 2384 82 \N 2827 +18465 2025-06-24 16:38:48.598286+00 2025-06-24 16:38:48.598295+00 f t 42000.00 1 42000.00 2385 82 \N 2828 +18468 2025-06-24 16:42:17.540006+00 2025-06-24 16:42:17.540015+00 f t 42000.00 1 42000.00 2387 82 \N 2829 +18469 2025-06-24 16:42:17.544999+00 2025-06-24 16:42:17.545007+00 f t 22500.00 1 22500.00 2387 86 \N 2829 +18481 2025-06-24 18:14:32.537138+00 2025-06-24 18:14:32.537147+00 f t 42000.00 1 42000.00 2389 82 \N 2831 +18485 2025-06-24 18:25:03.952624+00 2025-06-24 18:25:03.952638+00 f t 42000.00 1 42000.00 2390 82 \N 2832 +18486 2025-06-24 18:25:03.968531+00 2025-06-24 18:25:03.968546+00 f t 33000.00 1 33000.00 2390 139 \N 2832 +18487 2025-06-24 18:25:03.977796+00 2025-06-24 18:25:03.977808+00 f t 13000.00 1 13000.00 2390 89 \N 2832 +18489 2025-06-24 18:38:53.121546+00 2025-06-24 18:38:53.121556+00 f t 70000.00 1 70000.00 2393 108 \N 2834 +18510 2025-06-24 18:41:16.287251+00 2025-06-24 18:41:16.287263+00 f t 42000.00 1 42000.00 2395 82 \N 2835 +18511 2025-06-24 18:41:16.293177+00 2025-06-24 18:41:16.293189+00 f t 70000.00 1 70000.00 2395 108 \N 2835 +18512 2025-06-24 18:41:16.298994+00 2025-06-24 18:41:16.299006+00 f t 7500.00 1 7500.00 2395 85 \N 2835 +18525 2025-06-24 20:13:11.317401+00 2025-06-24 20:13:11.31741+00 f t 42000.00 1 42000.00 2398 82 \N 2839 +18526 2025-06-24 20:13:11.323388+00 2025-06-24 20:13:11.323401+00 f t 7500.00 1 7500.00 2398 85 \N 2839 +18577 2025-06-24 20:14:25.233684+00 2025-06-24 20:14:25.233693+00 f t 42000.00 1 42000.00 2399 82 \N 2838 +18578 2025-06-24 20:14:25.2383+00 2025-06-24 20:14:25.238307+00 f t 7700.00 1 7700.00 2399 93 \N 2838 +18579 2025-06-24 20:14:25.242168+00 2025-06-24 20:14:25.242176+00 f t 41000.00 1 41000.00 2399 110 \N 2838 +18580 2025-06-24 20:14:25.245922+00 2025-06-24 20:14:25.245931+00 f t 12000.00 1 12000.00 2399 146 \N 2838 +18592 2025-06-24 20:44:04.442239+00 2025-06-24 20:44:04.442252+00 f t 50000.00 1 50000.00 2403 84 \N 2840 +18593 2025-06-24 20:44:04.477239+00 2025-06-24 20:44:04.477251+00 f t 42000.00 1 42000.00 2402 82 \N 2841 +18594 2025-06-24 20:44:04.484446+00 2025-06-24 20:44:04.484459+00 f t 22500.00 1 22500.00 2402 86 \N 2841 +67719 2025-10-11 18:34:33.29888+00 2025-10-11 18:34:33.298889+00 f t 0.00 1 0.00 9400 174 \N 75 +18802 2025-06-25 14:28:00.445121+00 2025-06-25 14:28:00.44513+00 f t 42000.00 1 42000.00 2449 82 \N 2867 +18803 2025-06-25 14:28:00.450315+00 2025-06-25 14:28:00.450324+00 f t 50000.00 1 50000.00 2449 84 \N 2868 +18804 2025-06-25 14:28:00.454836+00 2025-06-25 14:28:00.454844+00 f t 62000.00 1 62000.00 2449 106 \N 2868 +18812 2025-06-25 15:48:13.384122+00 2025-06-25 15:48:13.384133+00 f t 42000.00 1 42000.00 2452 82 \N 2871 +18815 2025-06-25 16:12:22.998273+00 2025-06-25 16:12:22.998282+00 f t 42000.00 1 42000.00 2453 82 \N 2873 +18820 2025-06-25 16:49:14.734992+00 2025-06-25 16:49:14.735002+00 f t 42000.00 1 42000.00 2454 82 \N 2874 +18821 2025-06-25 16:49:14.739689+00 2025-06-25 16:49:14.739697+00 f t 7700.00 1 7700.00 2454 93 \N 2874 +18822 2025-06-25 16:49:14.74412+00 2025-06-25 16:49:14.744127+00 f t 45500.00 1 45500.00 2454 114 \N 2874 +18823 2025-06-25 16:49:14.748325+00 2025-06-25 16:49:14.748337+00 f t 12000.00 1 12000.00 2454 146 \N 2874 +19225 2025-06-26 01:38:11.446263+00 2025-06-26 01:38:11.446277+00 f t 42000.00 1 42000.00 2489 82 \N 2894 +19226 2025-06-26 01:38:11.453654+00 2025-06-26 01:38:11.453667+00 f t 7700.00 1 7700.00 2489 93 \N 2894 +19227 2025-06-26 01:38:11.459779+00 2025-06-26 01:38:11.45979+00 f t 33000.00 1 33000.00 2489 112 \N 2894 +19228 2025-06-26 01:38:11.465607+00 2025-06-26 01:38:11.465619+00 f t 12000.00 1 12000.00 2489 146 \N 2894 +19229 2025-06-26 01:38:11.471163+00 2025-06-26 01:38:11.471174+00 f t 7500.00 1 7500.00 2489 85 \N 2894 +19267 2025-06-26 04:24:06.210778+00 2025-06-26 04:24:06.210788+00 f t 42000.00 1 42000.00 2498 82 \N 2903 +18857 2025-06-25 16:53:36.034752+00 2025-06-25 16:53:36.034761+00 f t 42000.00 1 42000.00 2455 82 \N 2875 +18858 2025-06-25 16:53:36.04006+00 2025-06-25 16:53:36.040068+00 f t 7700.00 1 7700.00 2455 93 \N 2875 +18859 2025-06-25 16:53:36.044266+00 2025-06-25 16:53:36.044277+00 f t 45500.00 1 45500.00 2455 114 \N 2875 +18860 2025-06-25 16:53:36.050213+00 2025-06-25 16:53:36.050223+00 f t 52000.00 1 52000.00 2455 113 \N 2875 +18861 2025-06-25 16:53:36.054755+00 2025-06-25 16:53:36.054765+00 f t 21000.00 1 21000.00 2455 109 \N 2875 +18862 2025-06-25 16:53:36.059358+00 2025-06-25 16:53:36.059366+00 f t 12000.00 1 12000.00 2455 146 \N 2875 +19292 2025-06-26 09:37:58.423582+00 2025-06-26 09:37:58.423592+00 f t 42000.00 1 42000.00 2504 82 \N 2906 +19293 2025-06-26 09:37:58.429219+00 2025-06-26 09:37:58.429229+00 f t 7500.00 1 7500.00 2504 85 \N 2906 +19294 2025-06-26 09:37:58.433849+00 2025-06-26 09:37:58.433857+00 f t 22500.00 1 22500.00 2504 163 \N 2906 +19297 2025-06-26 11:04:33.824215+00 2025-06-26 11:04:33.824227+00 f t 42000.00 1 42000.00 2506 82 \N 2910 +19298 2025-06-26 11:04:33.830002+00 2025-06-26 11:04:33.830015+00 f t 7500.00 1 7500.00 2506 85 \N 2910 +19302 2025-06-26 11:21:40.873525+00 2025-06-26 11:21:40.873537+00 f t 50000.00 1 50000.00 2508 84 \N 2913 +18881 2025-06-25 18:53:17.600801+00 2025-06-25 18:53:17.60081+00 f t 42000.00 1 42000.00 2461 82 \N 2877 +18882 2025-06-25 18:53:17.605779+00 2025-06-25 18:53:17.605787+00 f t 69000.00 1 69000.00 2461 142 \N 2877 +18885 2025-06-25 19:06:21.585058+00 2025-06-25 19:06:21.585067+00 f t 42000.00 1 42000.00 2462 82 \N 2878 +18888 2025-06-25 19:16:15.265408+00 2025-06-25 19:16:15.265418+00 f t 75000.00 1 75000.00 2464 99 \N 2880 +18890 2025-06-25 19:47:10.446659+00 2025-06-25 19:47:10.446673+00 f t 27500.00 1 27500.00 2465 83 \N 2882 +19321 2025-06-26 11:44:33.037316+00 2025-06-26 11:44:33.037325+00 f t 42000.00 1 42000.00 2510 82 \N 2914 +18892 2025-06-25 20:48:27.946786+00 2025-06-25 20:48:27.946799+00 f t 95000.00 1 95000.00 2467 103 \N 2884 +19322 2025-06-26 11:44:33.044296+00 2025-06-26 11:44:33.044306+00 f t 7500.00 1 7500.00 2510 85 \N 2914 +19323 2025-06-26 11:44:33.049537+00 2025-06-26 11:44:33.049547+00 f t 22500.00 1 22500.00 2510 163 \N 2914 +19326 2025-06-26 12:05:40.55811+00 2025-06-26 12:05:40.558126+00 f t 42000.00 1 42000.00 2511 82 \N 2915 +19327 2025-06-26 12:05:40.564493+00 2025-06-26 12:05:40.564502+00 f t 22500.00 1 22500.00 2511 86 \N 2915 +19418 2025-06-26 12:22:53.807763+00 2025-06-26 12:22:53.807772+00 f t 42000.00 1 42000.00 2512 82 \N 2916 +19419 2025-06-26 12:22:53.814053+00 2025-06-26 12:22:53.814062+00 f t 7500.00 1 7500.00 2512 85 \N 2916 +19420 2025-06-26 12:22:53.819612+00 2025-06-26 12:22:53.819624+00 f t 22500.00 1 22500.00 2512 163 \N 2916 +19425 2025-06-26 12:54:36.079396+00 2025-06-26 12:54:36.079405+00 f t 42000.00 1 42000.00 2518 82 \N 2922 +19426 2025-06-26 12:54:36.084915+00 2025-06-26 12:54:36.084926+00 f t 7700.00 1 7700.00 2518 93 \N 2922 +19427 2025-06-26 12:54:36.089715+00 2025-06-26 12:54:36.089722+00 f t 41000.00 1 41000.00 2518 110 \N 2922 +19428 2025-06-26 12:54:36.094244+00 2025-06-26 12:54:36.094251+00 f t 12000.00 1 12000.00 2518 146 \N 2922 +19434 2025-06-26 15:39:42.087099+00 2025-06-26 15:39:42.087111+00 f t 42000.00 1 42000.00 2522 82 \N 2924 +19515 2025-06-26 15:51:33.701245+00 2025-06-26 15:51:33.701256+00 f t 42000.00 1 42000.00 2523 82 \N 2925 +19516 2025-06-26 15:51:33.706148+00 2025-06-26 15:51:33.706156+00 f t 7500.00 1 7500.00 2523 85 \N 2925 +19517 2025-06-26 15:51:33.70984+00 2025-06-26 15:51:33.709847+00 f t 22500.00 1 22500.00 2523 163 \N 2925 +19518 2025-06-26 15:51:33.713448+00 2025-06-26 15:51:33.713455+00 f t 42000.00 1 42000.00 2523 82 \N 2926 +19519 2025-06-26 15:51:33.717346+00 2025-06-26 15:51:33.717355+00 f t 0.00 1 0.00 2523 101 \N 2926 +19520 2025-06-26 15:51:33.722021+00 2025-06-26 15:51:33.72203+00 f t 7500.00 1 7500.00 2523 85 \N 2926 +19521 2025-06-26 15:51:33.727227+00 2025-06-26 15:51:33.727238+00 f t 22500.00 1 22500.00 2523 163 \N 2926 +19523 2025-06-26 16:45:02.650596+00 2025-06-26 16:45:02.650611+00 f t 42000.00 1 42000.00 2525 82 \N 2928 +19538 2025-06-26 16:47:33.549797+00 2025-06-26 16:47:33.549808+00 f t 42000.00 1 42000.00 2526 82 \N 2929 +19539 2025-06-26 16:47:33.558845+00 2025-06-26 16:47:33.558854+00 f t 22500.00 1 22500.00 2526 88 \N 2929 +19540 2025-06-26 16:47:33.564185+00 2025-06-26 16:47:33.564192+00 f t 42000.00 1 42000.00 2526 82 \N 2930 +19541 2025-06-26 16:47:33.568356+00 2025-06-26 16:47:33.568364+00 f t 22500.00 1 22500.00 2526 163 \N 2930 +19588 2025-06-26 18:32:37.814851+00 2025-06-26 18:32:37.814863+00 f t 50000.00 1 50000.00 2534 84 \N 2937 +19590 2025-06-26 18:40:17.423242+00 2025-06-26 18:40:17.423256+00 f t 27500.00 1 27500.00 2535 83 \N 2938 +19592 2025-06-26 18:41:49.975769+00 2025-06-26 18:41:49.975784+00 f t 50000.00 1 50000.00 2536 84 \N 2939 +19644 2025-06-26 23:07:28.714137+00 2025-06-26 23:07:28.714149+00 f t 42000.00 1 42000.00 2549 82 \N 2945 +19652 2025-06-26 23:20:10.468293+00 2025-06-26 23:20:10.468303+00 f t 50000.00 1 50000.00 2550 84 \N 2946 +19654 2025-06-27 00:55:02.32898+00 2025-06-27 00:55:02.328995+00 f t 50000.00 1 50000.00 2551 84 \N 2948 +19657 2025-06-27 00:57:29.642573+00 2025-06-27 00:57:29.642582+00 f t 42000.00 1 42000.00 2552 82 \N 2949 +19658 2025-06-27 00:57:29.648654+00 2025-06-27 00:57:29.648663+00 f t 7500.00 1 7500.00 2552 85 \N 2949 +19673 2025-06-27 01:04:43.777022+00 2025-06-27 01:04:43.777036+00 f t 42000.00 1 42000.00 2555 82 \N 2951 +19782 2025-06-27 11:22:43.518865+00 2025-06-27 11:22:43.518875+00 f t 42000.00 1 42000.00 2568 82 \N 2962 +19819 2025-06-27 12:05:12.741546+00 2025-06-27 12:05:12.741555+00 f t 93750.00 1 93750.00 2574 90 \N 2969 +19820 2025-06-27 12:05:12.747235+00 2025-06-27 12:05:12.747244+00 f t 42000.00 1 42000.00 2574 82 \N 2969 +19821 2025-06-27 12:05:12.752321+00 2025-06-27 12:05:12.752328+00 f t 75000.00 1 75000.00 2574 99 \N 2969 +20479 2025-06-29 14:01:05.044221+00 2025-06-29 14:01:05.044235+00 f t 50000.00 1 50000.00 2681 84 \N 3061 +20482 2025-06-29 14:09:48.857837+00 2025-06-29 14:09:48.857847+00 f t 50000.00 1 50000.00 2682 84 \N 3062 +20491 2025-06-29 15:03:16.54629+00 2025-06-29 15:03:16.546299+00 f t 42000.00 1 42000.00 2683 82 \N 3063 +19233 2025-06-26 01:41:26.041241+00 2025-06-26 01:41:26.041255+00 f t 42000.00 1 42000.00 2490 82 \N 2897 +20506 2025-06-29 16:06:24.770334+00 2025-06-29 16:06:24.770345+00 f t 50000.00 1 50000.00 2689 84 \N 3067 +19119 2025-06-25 23:13:26.138307+00 2025-06-25 23:13:26.138316+00 f t 42000.00 1 42000.00 2474 82 \N 2885 +19120 2025-06-25 23:13:26.143254+00 2025-06-25 23:13:26.143263+00 f t 22500.00 1 22500.00 2474 88 \N 2885 +19121 2025-06-25 23:13:26.147173+00 2025-06-25 23:13:26.147181+00 f t 42000.00 1 42000.00 2474 82 \N 2886 +19122 2025-06-25 23:13:26.151905+00 2025-06-25 23:13:26.151918+00 f t 7700.00 1 7700.00 2474 93 \N 2886 +19123 2025-06-25 23:13:26.157891+00 2025-06-25 23:13:26.157903+00 f t 45500.00 1 45500.00 2474 114 \N 2886 +19124 2025-06-25 23:13:26.16354+00 2025-06-25 23:13:26.163551+00 f t 12000.00 1 12000.00 2474 146 \N 2886 +19250 2025-06-26 01:42:54.741707+00 2025-06-26 01:42:54.741721+00 f t 42000.00 1 42000.00 2491 82 \N 2896 +19131 2025-06-25 23:39:59.096328+00 2025-06-25 23:39:59.09634+00 f t 62000.00 1 62000.00 2477 106 \N 2887 +19251 2025-06-26 01:42:54.74773+00 2025-06-26 01:42:54.747741+00 f t 75000.00 1 75000.00 2491 99 \N 2896 +19133 2025-06-26 00:11:19.249769+00 2025-06-26 00:11:19.249778+00 f t 42000.00 1 42000.00 2481 82 \N 2888 +19252 2025-06-26 01:42:54.752218+00 2025-06-26 01:42:54.752227+00 f t 16800.00 1 16800.00 2491 96 \N 2896 +19257 2025-06-26 01:48:44.126508+00 2025-06-26 01:48:44.126518+00 f t 42000.00 1 42000.00 2492 82 \N 2898 +19136 2025-06-26 00:38:38.826091+00 2025-06-26 00:38:38.826101+00 f t 62000.00 1 62000.00 2483 106 \N 2889 +19258 2025-06-26 01:48:44.132655+00 2025-06-26 01:48:44.132666+00 f t 7700.00 1 7700.00 2492 93 \N 2898 +19259 2025-06-26 01:48:44.137498+00 2025-06-26 01:48:44.13751+00 f t 41000.00 1 41000.00 2492 110 \N 2898 +19260 2025-06-26 01:48:44.142401+00 2025-06-26 01:48:44.142414+00 f t 12000.00 1 12000.00 2492 146 \N 2898 +19262 2025-06-26 02:00:04.44938+00 2025-06-26 02:00:04.449449+00 f t 42000.00 1 42000.00 2494 82 \N 2899 +19141 2025-06-26 00:50:01.101987+00 2025-06-26 00:50:01.102002+00 f t 42000.00 1 42000.00 2484 82 \N 2890 +19264 2025-06-26 03:50:19.398566+00 2025-06-26 03:50:19.398579+00 f t 50000.00 1 50000.00 2496 84 \N 2900 +19276 2025-06-26 04:52:55.87877+00 2025-06-26 04:52:55.878782+00 f t 42000.00 1 42000.00 2499 82 \N 2904 +19150 2025-06-26 00:51:32.457468+00 2025-06-26 00:51:32.457478+00 f t 42000.00 1 42000.00 2485 82 \N 2891 +19151 2025-06-26 00:51:32.463423+00 2025-06-26 00:51:32.463434+00 f t 7500.00 1 7500.00 2485 85 \N 2891 +19879 2025-06-27 13:31:36.536062+00 2025-06-27 13:31:36.536071+00 f t 42000.00 1 42000.00 2579 82 \N 2974 +19880 2025-06-27 13:31:36.540433+00 2025-06-27 13:31:36.54044+00 f t 22500.00 1 22500.00 2579 88 \N 2974 +19907 2025-06-27 14:32:16.81685+00 2025-06-27 14:32:16.816859+00 f t 50000.00 1 50000.00 2583 84 \N 2981 +19911 2025-06-27 14:36:11.994269+00 2025-06-27 14:36:11.994278+00 f t 42000.00 1 42000.00 2585 82 \N 2982 +19912 2025-06-27 14:36:12.004987+00 2025-06-27 14:36:12.004997+00 f t 33000.00 1 33000.00 2585 139 \N 2982 +19913 2025-06-27 14:36:12.010414+00 2025-06-27 14:36:12.010423+00 f t 13000.00 1 13000.00 2585 89 \N 2982 +19918 2025-06-27 14:37:01.382003+00 2025-06-27 14:37:01.382014+00 f t 42000.00 1 42000.00 2584 82 \N 2983 +19919 2025-06-27 14:37:01.389328+00 2025-06-27 14:37:01.389337+00 f t 7700.00 1 7700.00 2584 93 \N 2983 +19920 2025-06-27 14:37:01.394653+00 2025-06-27 14:37:01.394665+00 f t 45500.00 1 45500.00 2584 114 \N 2983 +19921 2025-06-27 14:37:01.400778+00 2025-06-27 14:37:01.40079+00 f t 12000.00 1 12000.00 2584 146 \N 2983 +19925 2025-06-27 14:59:38.573213+00 2025-06-27 14:59:38.573222+00 f t 27500.00 1 27500.00 2586 83 \N 2984 +19931 2025-06-27 15:59:35.098262+00 2025-06-27 15:59:35.098271+00 f t 62000.00 1 62000.00 2588 106 \N 2986 +19953 2025-06-27 22:02:23.446475+00 2025-06-27 22:02:23.446483+00 f t 50000.00 1 50000.00 2596 84 \N 2995 +19956 2025-06-27 22:56:49.564488+00 2025-06-27 22:56:49.564497+00 f t 42000.00 1 42000.00 2597 82 \N 2996 +19957 2025-06-27 22:56:49.569861+00 2025-06-27 22:56:49.56987+00 f t 69000.00 1 69000.00 2597 142 \N 2996 +19959 2025-06-27 23:10:35.9848+00 2025-06-27 23:10:35.984809+00 f t 62000.00 1 62000.00 2598 106 \N 2997 +19970 2025-06-27 23:27:59.49569+00 2025-06-27 23:27:59.495702+00 f t 42000.00 1 42000.00 2600 82 \N 2999 +19971 2025-06-27 23:27:59.50258+00 2025-06-27 23:27:59.502592+00 f t 7700.00 1 7700.00 2600 93 \N 2999 +19972 2025-06-27 23:27:59.507919+00 2025-06-27 23:27:59.507929+00 f t 45500.00 1 45500.00 2600 114 \N 2999 +19973 2025-06-27 23:27:59.512801+00 2025-06-27 23:27:59.512809+00 f t 12000.00 1 12000.00 2600 146 \N 2999 +19999 2025-06-28 01:11:07.431282+00 2025-06-28 01:11:07.431296+00 f t 50000.00 1 50000.00 2602 84 \N 3000 +19550 2025-06-26 17:07:39.806176+00 2025-06-26 17:07:39.806185+00 f t 42000.00 1 42000.00 2527 82 \N 2931 +19551 2025-06-26 17:07:39.811359+00 2025-06-26 17:07:39.811369+00 f t 22500.00 1 22500.00 2527 163 \N 2931 +19554 2025-06-26 17:21:27.03162+00 2025-06-26 17:21:27.031629+00 f t 42000.00 1 42000.00 2528 82 \N 2932 +19555 2025-06-26 17:21:27.036809+00 2025-06-26 17:21:27.036817+00 f t 7500.00 1 7500.00 2528 85 \N 2932 +19579 2025-06-26 17:38:53.517675+00 2025-06-26 17:38:53.517685+00 f t 50000.00 1 50000.00 2530 84 \N 2933 +19581 2025-06-26 17:48:26.07405+00 2025-06-26 17:48:26.074059+00 f t 42000.00 1 42000.00 2531 82 \N 2934 +19583 2025-06-26 18:06:35.901376+00 2025-06-26 18:06:35.901388+00 f t 62000.00 1 62000.00 2532 106 \N 2935 +19613 2025-06-26 18:55:29.80587+00 2025-06-26 18:55:29.805881+00 f t 50000.00 1 50000.00 2537 84 \N 2941 +19621 2025-06-26 19:52:01.089732+00 2025-06-26 19:52:01.089741+00 f t 62000.00 1 62000.00 2541 106 \N 2942 +19623 2025-06-26 22:59:22.618818+00 2025-06-26 22:59:22.618827+00 f t 62000.00 1 62000.00 2546 106 \N 2943 +19635 2025-06-26 23:03:11.723187+00 2025-06-26 23:03:11.7232+00 f t 42000.00 1 42000.00 2547 82 \N 2944 +19661 2025-06-27 01:00:46.602002+00 2025-06-27 01:00:46.602011+00 f t 50000.00 1 50000.00 2553 84 \N 2950 +19674 2025-06-27 01:04:43.785472+00 2025-06-27 01:04:43.785489+00 f t 22500.00 1 22500.00 2555 163 \N 2951 +19692 2025-06-27 01:23:06.745548+00 2025-06-27 01:23:06.745557+00 f t 50000.00 1 50000.00 2556 84 \N 2952 +19694 2025-06-27 02:05:58.999294+00 2025-06-27 02:05:58.999303+00 f t 42000.00 1 42000.00 2557 82 \N 2953 +19779 2025-06-27 09:34:53.98206+00 2025-06-27 09:34:53.982072+00 f t 42000.00 1 42000.00 2566 82 \N 2960 +19780 2025-06-27 09:34:53.987055+00 2025-06-27 09:34:53.987063+00 f t 7500.00 1 7500.00 2566 85 \N 2960 +20429 2025-06-29 12:48:02.817628+00 2025-06-29 12:48:02.81764+00 f t 50000.00 1 50000.00 2676 84 \N 3055 +19791 2025-06-27 11:31:57.135825+00 2025-06-27 11:31:57.135833+00 f t 27500.00 1 27500.00 2569 83 \N 2963 +19801 2025-06-27 11:50:25.924558+00 2025-06-27 11:50:25.924567+00 f t 42000.00 1 42000.00 2571 82 \N 2966 +19805 2025-06-27 11:58:35.975825+00 2025-06-27 11:58:35.975837+00 f t 50000.00 1 50000.00 2572 84 \N 2967 +19808 2025-06-27 12:00:58.640932+00 2025-06-27 12:00:58.640946+00 f t 42000.00 1 42000.00 2573 82 \N 2968 +19809 2025-06-27 12:00:58.647854+00 2025-06-27 12:00:58.647863+00 f t 22500.00 1 22500.00 2573 163 \N 2968 +19724 2025-06-27 06:02:44.397497+00 2025-06-27 06:02:44.397513+00 f t 42000.00 1 42000.00 2560 82 \N 2955 +19725 2025-06-27 06:02:44.404539+00 2025-06-27 06:02:44.404551+00 f t 12000.00 1 12000.00 2560 116 \N 2955 +19726 2025-06-27 06:02:44.410277+00 2025-06-27 06:02:44.410289+00 f t 130000.00 1 130000.00 2560 164 \N 2955 +19727 2025-06-27 06:02:44.415703+00 2025-06-27 06:02:44.415713+00 f t 7700.00 1 7700.00 2560 93 \N 2955 +19728 2025-06-27 06:02:44.420973+00 2025-06-27 06:02:44.420983+00 f t 12000.00 1 12000.00 2560 146 \N 2955 +19730 2025-06-27 06:29:12.396893+00 2025-06-27 06:29:12.396904+00 f t 42000.00 1 42000.00 2562 82 \N 2956 +19732 2025-06-27 09:04:51.520518+00 2025-06-27 09:04:51.520527+00 f t 50000.00 1 50000.00 2563 84 \N 2957 +19734 2025-06-27 09:05:00.933062+00 2025-06-27 09:05:00.933074+00 f t 42000.00 1 42000.00 2564 82 \N 2958 +19824 2025-06-27 12:29:03.125487+00 2025-06-27 12:29:03.125497+00 f t 42000.00 1 42000.00 2575 82 \N 2970 +19835 2025-06-27 12:45:13.463411+00 2025-06-27 12:45:13.463422+00 f t 42000.00 1 42000.00 2576 82 \N 2971 +19836 2025-06-27 12:45:13.468093+00 2025-06-27 12:45:13.468101+00 f t 7500.00 1 7500.00 2576 85 \N 2971 +20474 2025-06-29 13:22:37.41302+00 2025-06-29 13:22:37.413028+00 f t 42000.00 1 42000.00 2680 82 \N 3060 +19745 2025-06-27 09:28:11.286144+00 2025-06-27 09:28:11.286153+00 f t 42000.00 1 42000.00 2565 82 \N 2959 +19746 2025-06-27 09:28:11.291282+00 2025-06-27 09:28:11.291292+00 f t 7500.00 1 7500.00 2565 85 \N 2959 +19860 2025-06-27 13:16:02.4276+00 2025-06-27 13:16:02.427613+00 f t 42000.00 1 42000.00 2577 82 \N 2972 +19861 2025-06-27 13:16:02.43517+00 2025-06-27 13:16:02.435185+00 f t 7700.00 1 7700.00 2577 93 \N 2972 +19862 2025-06-27 13:16:02.441612+00 2025-06-27 13:16:02.441622+00 f t 33000.00 1 33000.00 2577 111 \N 2972 +19863 2025-06-27 13:16:02.446901+00 2025-06-27 13:16:02.44691+00 f t 12000.00 1 12000.00 2577 146 \N 2972 +20509 2025-06-29 16:11:34.54871+00 2025-06-29 16:11:34.548719+00 f t 45000.00 1 45000.00 2690 98 \N 3068 +20511 2025-06-29 16:47:25.822911+00 2025-06-29 16:47:25.822923+00 f t 42000.00 1 42000.00 2691 82 \N 3069 +20513 2025-06-29 16:55:18.236906+00 2025-06-29 16:55:18.236918+00 f t 42000.00 1 42000.00 2692 82 \N 3070 +20517 2025-06-29 17:14:09.036097+00 2025-06-29 17:14:09.036105+00 f t 42000.00 1 42000.00 2693 82 \N 3071 +19898 2025-06-27 13:53:42.968331+00 2025-06-27 13:53:42.96834+00 f t 95000.00 1 95000.00 2581 103 \N 2976 +19899 2025-06-27 13:53:42.973185+00 2025-06-27 13:53:42.973192+00 f t 42000.00 1 42000.00 2581 82 \N 2976 +19900 2025-06-27 13:53:42.97691+00 2025-06-27 13:53:42.976917+00 f t 7700.00 1 7700.00 2581 93 \N 2976 +19901 2025-06-27 13:53:42.980682+00 2025-06-27 13:53:42.980692+00 f t 21000.00 1 21000.00 2581 109 \N 2976 +19902 2025-06-27 13:53:42.984296+00 2025-06-27 13:53:42.984304+00 f t 12000.00 1 12000.00 2581 146 \N 2976 +19928 2025-06-27 15:10:51.673349+00 2025-06-27 15:10:51.673358+00 f t 42000.00 1 42000.00 2587 82 \N 2985 +19934 2025-06-27 19:55:30.497738+00 2025-06-27 19:55:30.497747+00 f t 50000.00 1 50000.00 2591 84 \N 2991 +19938 2025-06-27 20:01:42.928406+00 2025-06-27 20:01:42.928415+00 f t 50000.00 1 50000.00 2592 84 \N 2992 +19941 2025-06-27 21:27:19.492253+00 2025-06-27 21:27:19.492263+00 f t 42000.00 1 42000.00 2594 82 \N 2993 +19942 2025-06-27 21:27:19.498809+00 2025-06-27 21:27:19.498822+00 f t 7500.00 1 7500.00 2594 85 \N 2993 +19944 2025-06-27 21:56:50.268874+00 2025-06-27 21:56:50.268883+00 f t 50000.00 1 50000.00 2595 84 \N 2994 +19962 2025-06-27 23:16:15.784442+00 2025-06-27 23:16:15.784452+00 f t 50000.00 1 50000.00 2599 84 \N 2998 +20008 2025-06-28 02:39:54.06433+00 2025-06-28 02:39:54.064343+00 f t 45000.00 1 45000.00 2604 98 \N 3002 +20107 2025-06-28 03:36:31.852897+00 2025-06-28 03:36:31.852907+00 f t 42000.00 1 42000.00 2605 82 \N 3003 +20108 2025-06-28 03:36:31.858822+00 2025-06-28 03:36:31.85883+00 f t 7700.00 1 7700.00 2605 93 \N 3003 +20109 2025-06-28 03:36:31.863821+00 2025-06-28 03:36:31.863831+00 f t 41000.00 1 41000.00 2605 110 \N 3003 +20110 2025-06-28 03:36:31.869009+00 2025-06-28 03:36:31.86902+00 f t 12000.00 1 12000.00 2605 146 \N 3003 +20116 2025-06-28 05:39:03.311064+00 2025-06-28 05:39:03.311077+00 f t 45000.00 1 45000.00 2609 98 \N 3006 +20122 2025-06-28 10:44:54.382893+00 2025-06-28 10:44:54.382902+00 f t 95000.00 1 95000.00 2610 103 \N 3007 +20126 2025-06-28 12:33:20.933683+00 2025-06-28 12:33:20.933695+00 f t 50000.00 1 50000.00 2613 84 \N 3008 +20132 2025-06-28 12:56:11.556304+00 2025-06-28 12:56:11.556319+00 f t 50000.00 1 50000.00 2614 84 \N 3009 +20134 2025-06-28 13:02:28.63978+00 2025-06-28 13:02:28.639791+00 f t 62000.00 1 62000.00 2615 106 \N 3010 +20136 2025-06-28 13:35:41.90883+00 2025-06-28 13:35:41.908839+00 f t 42000.00 1 42000.00 2616 82 \N 3011 +20140 2025-06-28 13:57:21.544369+00 2025-06-28 13:57:21.544383+00 f t 42000.00 1 42000.00 2617 82 \N 3012 +20143 2025-06-28 14:14:47.802325+00 2025-06-28 14:14:47.802334+00 f t 42000.00 1 42000.00 2618 82 \N 3013 +20144 2025-06-28 14:14:47.806808+00 2025-06-28 14:14:47.806816+00 f t 7500.00 1 7500.00 2618 85 \N 3013 +20150 2025-06-28 14:36:19.384841+00 2025-06-28 14:36:19.384848+00 f t 50000.00 1 50000.00 2619 84 \N 3014 +20153 2025-06-28 14:42:37.46048+00 2025-06-28 14:42:37.460493+00 f t 42000.00 1 42000.00 2620 82 \N 3015 +20154 2025-06-28 14:42:37.467633+00 2025-06-28 14:42:37.467642+00 f t 7700.00 1 7700.00 2620 91 \N 3015 +20159 2025-06-28 15:33:19.267584+00 2025-06-28 15:33:19.267593+00 f t 42000.00 1 42000.00 2621 82 \N 3016 +20160 2025-06-28 15:33:19.273281+00 2025-06-28 15:33:19.27329+00 f t 7500.00 1 7500.00 2621 85 \N 3016 +20172 2025-06-28 15:47:41.278217+00 2025-06-28 15:47:41.278226+00 f t 70000.00 1 70000.00 2623 97 \N 3017 +20174 2025-06-28 16:38:50.43234+00 2025-06-28 16:38:50.43235+00 f t 42000.00 1 42000.00 2625 82 \N 3018 +20176 2025-06-28 17:20:39.878617+00 2025-06-28 17:20:39.878629+00 f t 50000.00 1 50000.00 2627 84 \N 3019 +20178 2025-06-28 17:29:30.447336+00 2025-06-28 17:29:30.447345+00 f t 50000.00 1 50000.00 2631 84 \N 3021 +20182 2025-06-28 18:05:01.849471+00 2025-06-28 18:05:01.849486+00 f t 45000.00 1 45000.00 2633 98 \N 3023 +20184 2025-06-28 18:34:35.422001+00 2025-06-28 18:34:35.422013+00 f t 42000.00 1 42000.00 2634 82 \N 3024 +20189 2025-06-28 19:13:48.345508+00 2025-06-28 19:13:48.345518+00 f t 42000.00 1 42000.00 2635 82 \N 3025 +21770 2025-07-03 02:59:42.578934+00 2025-07-03 02:59:42.578943+00 f t 42000.00 1 42000.00 2893 82 \N 3230 +21771 2025-07-03 02:59:42.58343+00 2025-07-03 02:59:42.583437+00 f t 69000.00 1 69000.00 2893 142 \N 3230 +20471 2025-06-29 13:04:27.315325+00 2025-06-29 13:04:27.315337+00 f t 42000.00 1 42000.00 2679 82 \N 3058 +20472 2025-06-29 13:04:27.321499+00 2025-06-29 13:04:27.321509+00 f t 7500.00 1 7500.00 2679 85 \N 3058 +20499 2025-06-29 15:48:24.966864+00 2025-06-29 15:48:24.966873+00 f t 42000.00 1 42000.00 2688 82 \N 3066 +20519 2025-06-29 17:24:55.292089+00 2025-06-29 17:24:55.292098+00 f t 70000.00 1 70000.00 2694 97 \N 3072 +20523 2025-06-29 19:18:19.630226+00 2025-06-29 19:18:19.630235+00 f t 42000.00 1 42000.00 2698 82 \N 3073 +20248 2025-06-28 20:12:24.124634+00 2025-06-28 20:12:24.124646+00 f t 50000.00 1 50000.00 2637 84 \N 3026 +20250 2025-06-28 20:25:58.394759+00 2025-06-28 20:25:58.394768+00 f t 42000.00 1 42000.00 2641 82 \N 3028 +20525 2025-06-29 19:48:04.907319+00 2025-06-29 19:48:04.907328+00 f t 42000.00 1 42000.00 2699 82 \N 3074 +20252 2025-06-28 20:31:10.88676+00 2025-06-28 20:31:10.886772+00 f t 50000.00 1 50000.00 2640 84 \N 3027 +20527 2025-06-29 20:19:57.624435+00 2025-06-29 20:19:57.624444+00 f t 70000.00 1 70000.00 2700 97 \N 3075 +20530 2025-06-29 20:32:31.052541+00 2025-06-29 20:32:31.052549+00 f t 50000.00 1 50000.00 2701 84 \N 3076 +20532 2025-06-29 21:21:51.61349+00 2025-06-29 21:21:51.613504+00 f t 50000.00 1 50000.00 2703 84 \N 3077 +20534 2025-06-29 22:25:41.064698+00 2025-06-29 22:25:41.064707+00 f t 50000.00 1 50000.00 2705 84 \N 3079 +20265 2025-06-28 22:23:17.832136+00 2025-06-28 22:23:17.832144+00 f t 42000.00 1 42000.00 2645 82 \N 3030 +20266 2025-06-28 22:23:17.837168+00 2025-06-28 22:23:17.837176+00 f t 7500.00 1 7500.00 2645 85 \N 3030 +20267 2025-06-28 22:23:17.8415+00 2025-06-28 22:23:17.841508+00 f t 22500.00 1 22500.00 2645 163 \N 3030 +20271 2025-06-28 22:42:19.042934+00 2025-06-28 22:42:19.042943+00 f t 27500.00 1 27500.00 2646 83 \N 3033 +20277 2025-06-28 23:00:01.021483+00 2025-06-28 23:00:01.021492+00 f t 27500.00 1 27500.00 2648 83 \N 3034 +20546 2025-06-29 22:30:31.791793+00 2025-06-29 22:30:31.791805+00 f t 50000.00 1 50000.00 2706 84 \N 3080 +20281 2025-06-28 23:17:12.921496+00 2025-06-28 23:17:12.921508+00 f t 27500.00 1 27500.00 2649 83 \N 3035 +20550 2025-06-29 22:32:37.612615+00 2025-06-29 22:32:37.612624+00 f t 50000.00 1 50000.00 2707 84 \N 3081 +20284 2025-06-28 23:30:23.652223+00 2025-06-28 23:30:23.652235+00 f t 62000.00 1 62000.00 2650 106 \N 3036 +20291 2025-06-28 23:37:54.325155+00 2025-06-28 23:37:54.325167+00 f t 62000.00 1 62000.00 2651 106 \N 3037 +20304 2025-06-28 23:52:14.240358+00 2025-06-28 23:52:14.240367+00 f t 42000.00 1 42000.00 2652 82 \N 3038 +20305 2025-06-28 23:52:14.24491+00 2025-06-28 23:52:14.244918+00 f t 7700.00 1 7700.00 2652 93 \N 3038 +20306 2025-06-28 23:52:14.249206+00 2025-06-28 23:52:14.249214+00 f t 41000.00 1 41000.00 2652 110 \N 3038 +20307 2025-06-28 23:52:14.252907+00 2025-06-28 23:52:14.252915+00 f t 27500.00 1 27500.00 2652 83 \N 3038 +20308 2025-06-28 23:52:14.257346+00 2025-06-28 23:52:14.257354+00 f t 12000.00 1 12000.00 2652 146 \N 3038 +20571 2025-06-29 23:56:49.826203+00 2025-06-29 23:56:49.826214+00 f t 50000.00 1 50000.00 2710 84 \N 3083 +20312 2025-06-29 00:19:36.281352+00 2025-06-29 00:19:36.281363+00 f t 42000.00 1 42000.00 2654 82 \N 3039 +20575 2025-06-30 00:48:51.168261+00 2025-06-30 00:48:51.168269+00 f t 27500.00 1 27500.00 2713 83 \N 3084 +20321 2025-06-29 00:35:26.037706+00 2025-06-29 00:35:26.037717+00 f t 42000.00 1 42000.00 2655 82 \N 3040 +20322 2025-06-29 00:35:26.043956+00 2025-06-29 00:35:26.043967+00 f t 75000.00 1 75000.00 2655 143 \N 3040 +20324 2025-06-29 00:36:43.206803+00 2025-06-29 00:36:43.206814+00 f t 50000.00 1 50000.00 2656 84 \N 3041 +20582 2025-06-30 01:18:03.00841+00 2025-06-30 01:18:03.008423+00 f t 27500.00 1 27500.00 2714 83 \N 3085 +20588 2025-06-30 01:37:26.118288+00 2025-06-30 01:37:26.118301+00 f t 27500.00 1 27500.00 2716 83 \N 3086 +20590 2025-06-30 02:11:24.985109+00 2025-06-30 02:11:24.98512+00 f t 42000.00 1 42000.00 2719 82 \N 3027 +20351 2025-06-29 00:50:02.448115+00 2025-06-29 00:50:02.448132+00 f t 42000.00 1 42000.00 2657 82 \N 3043 +20352 2025-06-29 00:50:02.461373+00 2025-06-29 00:50:02.461386+00 f t 22500.00 1 22500.00 2657 163 \N 3043 +20354 2025-06-29 01:09:30.095334+00 2025-06-29 01:09:30.095342+00 f t 50000.00 1 50000.00 2660 84 \N 3044 +20368 2025-06-29 01:50:01.624037+00 2025-06-29 01:50:01.624053+00 f t 42000.00 1 42000.00 2662 82 \N 3045 +20371 2025-06-29 04:01:24.585571+00 2025-06-29 04:01:24.585584+00 f t 50000.00 1 50000.00 2666 84 \N 3046 +20636 2025-06-30 03:49:15.033634+00 2025-06-30 03:49:15.033644+00 f t 42000.00 1 42000.00 2721 82 \N 3087 +20637 2025-06-30 03:49:15.039945+00 2025-06-30 03:49:15.039955+00 f t 12000.00 1 12000.00 2721 116 \N 3087 +20638 2025-06-30 03:49:15.046234+00 2025-06-30 03:49:15.046246+00 f t 7700.00 1 7700.00 2721 93 \N 3087 +20639 2025-06-30 03:49:15.053282+00 2025-06-30 03:49:15.053294+00 f t 41000.00 1 41000.00 2721 110 \N 3087 +20640 2025-06-30 03:49:15.059606+00 2025-06-30 03:49:15.059619+00 f t 40800.00 1 40800.00 2721 115 \N 3087 +20641 2025-06-30 03:49:15.065297+00 2025-06-30 03:49:15.065306+00 f t 12000.00 1 12000.00 2721 146 \N 3087 +20394 2025-06-29 04:24:42.143649+00 2025-06-29 04:24:42.143658+00 f t 42000.00 1 42000.00 2667 82 \N 3047 +20395 2025-06-29 04:24:42.148454+00 2025-06-29 04:24:42.148465+00 f t 22500.00 1 22500.00 2667 86 \N 3047 +20402 2025-06-29 06:32:55.045549+00 2025-06-29 06:32:55.045559+00 f t 50000.00 1 50000.00 2668 84 \N 3048 +20405 2025-06-29 07:00:33.912584+00 2025-06-29 07:00:33.912596+00 f t 42000.00 1 42000.00 2669 82 \N 3049 +20406 2025-06-29 07:00:33.919552+00 2025-06-29 07:00:33.919565+00 f t 22500.00 1 22500.00 2669 86 \N 3049 +20410 2025-06-29 10:17:12.430412+00 2025-06-29 10:17:12.43042+00 f t 56000.00 1 56000.00 2670 105 \N 3050 +20412 2025-06-29 11:23:32.622432+00 2025-06-29 11:23:32.622442+00 f t 50000.00 1 50000.00 2671 84 \N 3051 +20416 2025-06-29 12:14:47.18996+00 2025-06-29 12:14:47.189972+00 f t 50000.00 1 50000.00 2674 84 \N 3053 +20664 2025-06-30 04:31:52.09423+00 2025-06-30 04:31:52.09424+00 f t 50000.00 1 50000.00 2722 84 \N 3088 +20665 2025-06-30 04:31:52.100033+00 2025-06-30 04:31:52.100044+00 f t 42000.00 1 42000.00 2722 82 \N 3088 +20668 2025-06-30 09:19:15.97981+00 2025-06-30 09:19:15.979819+00 f t 42000.00 1 42000.00 2729 82 \N 3090 +20669 2025-06-30 09:19:15.98527+00 2025-06-30 09:19:15.985279+00 f t 22500.00 1 22500.00 2729 86 \N 3090 +20676 2025-06-30 11:10:49.146038+00 2025-06-30 11:10:49.146047+00 f t 62000.00 1 62000.00 2730 106 \N 3091 +20703 2025-06-30 12:54:38.987217+00 2025-06-30 12:54:38.987229+00 f t 42000.00 1 42000.00 2733 82 \N 3092 +20715 2025-06-30 12:59:35.03312+00 2025-06-30 12:59:35.033133+00 f t 42000.00 1 42000.00 2734 82 \N 3094 +20719 2025-06-30 13:37:30.57761+00 2025-06-30 13:37:30.577621+00 f t 50000.00 1 50000.00 2735 84 \N 3095 +20721 2025-06-30 13:38:37.84465+00 2025-06-30 13:38:37.844659+00 f t 42000.00 1 42000.00 2738 82 \N 3096 +20724 2025-06-30 13:53:48.601522+00 2025-06-30 13:53:48.601536+00 f t 42000.00 1 42000.00 2739 82 \N 3097 +20725 2025-06-30 13:53:48.607663+00 2025-06-30 13:53:48.607672+00 f t 7500.00 1 7500.00 2739 85 \N 3097 +21749 2025-07-02 21:06:58.23066+00 2025-07-02 21:06:58.230668+00 f t 50000.00 1 50000.00 2879 84 \N 3221 +20727 2025-06-30 14:00:36.572718+00 2025-06-30 14:00:36.572732+00 f t 42000.00 1 42000.00 2740 82 \N 3098 +73090 2025-10-21 21:35:26.079239+00 2025-10-21 21:35:26.079247+00 f t 0.00 1 0.00 10234 168 \N 9346 +20730 2025-06-30 14:03:16.264854+00 2025-06-30 14:03:16.264863+00 f t 42000.00 1 42000.00 2737 82 \N 3099 +21075 2025-07-01 12:37:12.490058+00 2025-07-01 12:37:12.490072+00 f t 70000.00 1 70000.00 2796 97 \N 3147 +21081 2025-07-01 12:46:15.456183+00 2025-07-01 12:46:15.456191+00 f t 42000.00 1 42000.00 2797 82 \N 3148 +20737 2025-06-30 15:20:03.649717+00 2025-06-30 15:20:03.649733+00 f t 42000.00 1 42000.00 2743 82 \N 3100 +20738 2025-06-30 15:20:03.671184+00 2025-06-30 15:20:03.671202+00 f t 7700.00 1 7700.00 2743 91 \N 3100 +21083 2025-07-01 12:54:49.801714+00 2025-07-01 12:54:49.801727+00 f t 61000.00 1 61000.00 2799 100 \N 3149 +21087 2025-07-01 13:41:05.303363+00 2025-07-01 13:41:05.303373+00 f t 42000.00 1 42000.00 2803 82 \N 3150 +20747 2025-06-30 15:35:34.633384+00 2025-06-30 15:35:34.633399+00 f t 42000.00 1 42000.00 2744 82 \N 3101 +20748 2025-06-30 15:35:34.639584+00 2025-06-30 15:35:34.639597+00 f t 87500.00 1 87500.00 2744 141 \N 3101 +20750 2025-06-30 15:42:05.329608+00 2025-06-30 15:42:05.329622+00 f t 50000.00 1 50000.00 2745 84 \N 3103 +21122 2025-07-01 14:02:35.968011+00 2025-07-01 14:02:35.968021+00 f t 42000.00 1 42000.00 2806 82 \N 3152 +21123 2025-07-01 14:02:35.973163+00 2025-07-01 14:02:35.973171+00 f t 7500.00 1 7500.00 2806 85 \N 3152 +21124 2025-07-01 14:02:35.977606+00 2025-07-01 14:02:35.977616+00 f t 22500.00 1 22500.00 2806 86 \N 3152 +20767 2025-06-30 16:44:12.593592+00 2025-06-30 16:44:12.593605+00 f t 42000.00 1 42000.00 2748 82 \N 3106 +20769 2025-06-30 17:54:28.689965+00 2025-06-30 17:54:28.689974+00 f t 62000.00 1 62000.00 2749 106 \N 3107 +20771 2025-06-30 18:47:09.819102+00 2025-06-30 18:47:09.819111+00 f t 62000.00 1 62000.00 2753 106 \N 3110 +20783 2025-06-30 19:40:47.279872+00 2025-06-30 19:40:47.27988+00 f t 42000.00 1 42000.00 2761 82 \N 3112 +20784 2025-06-30 19:40:47.284513+00 2025-06-30 19:40:47.284521+00 f t 7500.00 1 7500.00 2761 85 \N 3112 +20785 2025-06-30 19:40:47.289096+00 2025-06-30 19:40:47.289104+00 f t 22500.00 1 22500.00 2761 86 \N 3112 +20786 2025-06-30 19:41:13.724949+00 2025-06-30 19:41:13.72496+00 f t 42000.00 1 42000.00 2760 82 \N 3111 +20789 2025-06-30 19:45:13.792103+00 2025-06-30 19:45:13.792115+00 f t 50000.00 1 50000.00 2762 84 \N 3113 +20798 2025-06-30 20:05:06.873961+00 2025-06-30 20:05:06.873975+00 f t 42000.00 1 42000.00 2764 82 \N 3115 +20799 2025-06-30 20:05:06.884033+00 2025-06-30 20:05:06.884049+00 f t 22500.00 1 22500.00 2764 86 \N 3115 +20803 2025-06-30 20:24:19.180372+00 2025-06-30 20:24:19.180382+00 f t 50000.00 1 50000.00 2765 84 \N 3116 +20806 2025-06-30 20:24:46.629002+00 2025-06-30 20:24:46.62901+00 f t 62000.00 1 62000.00 2767 106 \N 3117 +20823 2025-06-30 21:10:43.627973+00 2025-06-30 21:10:43.627982+00 f t 42000.00 1 42000.00 2768 82 \N 3118 +20824 2025-06-30 21:10:43.633075+00 2025-06-30 21:10:43.633084+00 f t 7500.00 1 7500.00 2768 85 \N 3118 +20825 2025-06-30 21:10:43.636983+00 2025-06-30 21:10:43.636993+00 f t 42000.00 1 42000.00 2768 82 \N 3119 +20826 2025-06-30 21:10:43.641438+00 2025-06-30 21:10:43.641451+00 f t 7500.00 1 7500.00 2768 85 \N 3119 +20828 2025-06-30 21:45:40.957035+00 2025-06-30 21:45:40.957046+00 f t 42000.00 1 42000.00 2770 82 \N 3120 +20848 2025-06-30 21:52:13.369205+00 2025-06-30 21:52:13.369218+00 f t 42000.00 1 42000.00 2772 82 \N 3122 +20849 2025-06-30 21:52:13.374332+00 2025-06-30 21:52:13.37434+00 f t 22500.00 1 22500.00 2772 163 \N 3122 +20850 2025-06-30 21:52:13.378767+00 2025-06-30 21:52:13.378776+00 f t 42000.00 1 42000.00 2772 82 \N 3123 +20852 2025-06-30 22:03:40.131933+00 2025-06-30 22:03:40.131942+00 f t 70000.00 1 70000.00 2774 97 \N 3125 +20855 2025-06-30 22:47:40.835018+00 2025-06-30 22:47:40.835028+00 f t 62000.00 1 62000.00 2775 106 \N 3127 +20857 2025-06-30 22:57:27.302839+00 2025-06-30 22:57:27.302849+00 f t 42000.00 1 42000.00 2776 82 \N 3128 +21271 2025-07-01 16:08:06.025396+00 2025-07-01 16:08:06.025407+00 f t 42000.00 1 42000.00 2818 82 \N 3164 +21272 2025-07-01 16:08:06.034154+00 2025-07-01 16:08:06.034168+00 f t 22500.00 1 22500.00 2818 163 \N 3164 +20861 2025-07-01 00:00:21.94839+00 2025-07-01 00:00:21.948405+00 f t 42000.00 1 42000.00 2778 82 \N 3131 +20867 2025-07-01 00:02:16.559354+00 2025-07-01 00:02:16.559362+00 f t 50000.00 1 50000.00 2779 84 \N 3132 +20880 2025-07-01 00:08:15.987885+00 2025-07-01 00:08:15.987898+00 f t 42000.00 1 42000.00 2780 82 \N 3133 +20887 2025-07-01 00:19:53.856151+00 2025-07-01 00:19:53.856162+00 f t 42000.00 1 42000.00 2782 82 \N 3137 +20888 2025-07-01 00:19:53.862091+00 2025-07-01 00:19:53.862113+00 f t 7500.00 1 7500.00 2782 85 \N 3137 +20907 2025-07-01 00:36:07.729433+00 2025-07-01 00:36:07.729445+00 f t 42000.00 1 42000.00 2784 82 \N 3140 +20912 2025-07-01 01:33:40.348059+00 2025-07-01 01:33:40.348068+00 f t 50000.00 1 50000.00 2787 84 \N 3142 +21367 2025-07-01 20:53:19.449762+00 2025-07-01 20:53:19.449771+00 f t 27500.00 1 27500.00 2828 83 \N 3174 +21369 2025-07-01 21:24:22.595288+00 2025-07-01 21:24:22.595296+00 f t 42000.00 1 42000.00 2829 82 \N 3177 +20921 2025-07-01 02:43:37.508811+00 2025-07-01 02:43:37.50882+00 f t 50000.00 1 50000.00 2790 84 \N 3143 +21387 2025-07-01 22:10:51.685691+00 2025-07-01 22:10:51.685704+00 f t 42000.00 1 42000.00 2831 82 \N 3179 +21390 2025-07-01 22:25:51.234161+00 2025-07-01 22:25:51.234172+00 f t 42000.00 1 42000.00 2832 82 \N 3180 +21391 2025-07-01 22:25:51.239192+00 2025-07-01 22:25:51.239201+00 f t 7500.00 1 7500.00 2832 85 \N 3180 +21396 2025-07-01 23:07:55.254254+00 2025-07-01 23:07:55.254263+00 f t 42000.00 1 42000.00 2833 82 \N 3181 +21397 2025-07-01 23:07:55.259513+00 2025-07-01 23:07:55.259522+00 f t 7700.00 1 7700.00 2833 93 \N 3181 +21398 2025-07-01 23:07:55.263935+00 2025-07-01 23:07:55.263944+00 f t 33000.00 1 33000.00 2833 111 \N 3181 +21399 2025-07-01 23:07:55.268491+00 2025-07-01 23:07:55.2685+00 f t 12000.00 1 12000.00 2833 146 \N 3181 +21404 2025-07-01 23:09:30.446595+00 2025-07-01 23:09:30.446608+00 f t 42000.00 1 42000.00 2834 82 \N 3182 +21405 2025-07-01 23:09:30.453186+00 2025-07-01 23:09:30.453198+00 f t 7700.00 1 7700.00 2834 93 \N 3182 +21406 2025-07-01 23:09:30.458658+00 2025-07-01 23:09:30.45867+00 f t 21000.00 1 21000.00 2834 109 \N 3182 +21407 2025-07-01 23:09:30.464072+00 2025-07-01 23:09:30.464084+00 f t 12000.00 1 12000.00 2834 146 \N 3182 +21412 2025-07-01 23:13:44.119954+00 2025-07-01 23:13:44.119964+00 f t 42000.00 1 42000.00 2835 82 \N 3183 +21413 2025-07-01 23:13:44.124786+00 2025-07-01 23:13:44.124794+00 f t 7700.00 1 7700.00 2835 93 \N 3183 +21414 2025-07-01 23:13:44.128807+00 2025-07-01 23:13:44.128814+00 f t 21000.00 1 21000.00 2835 109 \N 3183 +21415 2025-07-01 23:13:44.132993+00 2025-07-01 23:13:44.133+00 f t 12000.00 1 12000.00 2835 146 \N 3183 +21417 2025-07-01 23:51:32.52001+00 2025-07-01 23:51:32.520023+00 f t 42000.00 1 42000.00 2836 82 \N 3184 +21430 2025-07-02 00:14:31.152022+00 2025-07-02 00:14:31.15203+00 f t 42000.00 1 42000.00 2838 82 \N 3186 +21431 2025-07-02 00:14:31.156678+00 2025-07-02 00:14:31.156686+00 f t 7700.00 1 7700.00 2838 93 \N 3186 +21065 2025-07-01 09:43:15.437902+00 2025-07-01 09:43:15.437912+00 f t 42000.00 1 42000.00 2792 82 \N 3144 +21066 2025-07-01 09:43:15.443453+00 2025-07-01 09:43:15.443463+00 f t 12000.00 1 12000.00 2792 116 \N 3144 +21067 2025-07-01 09:43:15.448718+00 2025-07-01 09:43:15.448728+00 f t 7700.00 1 7700.00 2792 93 \N 3144 +21068 2025-07-01 09:43:15.453608+00 2025-07-01 09:43:15.453617+00 f t 12000.00 1 12000.00 2792 146 \N 3144 +21070 2025-07-01 09:58:38.853009+00 2025-07-01 09:58:38.853019+00 f t 70000.00 1 70000.00 2793 108 \N 3145 +21758 2025-07-03 01:13:30.410226+00 2025-07-03 01:13:30.410235+00 f t 75000.00 1 75000.00 2886 99 \N 3226 +21761 2025-07-03 02:20:31.32403+00 2025-07-03 02:20:31.324042+00 f t 62000.00 1 62000.00 2889 106 \N 3227 +21767 2025-07-03 02:58:24.71766+00 2025-07-03 02:58:24.717667+00 f t 50000.00 1 50000.00 2892 84 \N 3229 +21094 2025-07-01 13:43:12.852965+00 2025-07-01 13:43:12.852975+00 f t 42000.00 1 42000.00 2804 82 \N 3151 +21826 2025-07-03 16:21:58.543005+00 2025-07-03 16:21:58.543013+00 f t 42000.00 1 42000.00 2915 82 \N 3240 +21147 2025-07-01 14:14:35.661578+00 2025-07-01 14:14:35.661587+00 f t 42000.00 1 42000.00 2809 82 \N 3155 +21148 2025-07-01 14:14:35.666731+00 2025-07-01 14:14:35.666739+00 f t 22500.00 1 22500.00 2809 86 \N 3155 +21161 2025-07-01 14:37:33.05364+00 2025-07-01 14:37:33.053651+00 f t 42000.00 1 42000.00 2810 82 \N 3156 +21162 2025-07-01 14:37:33.058685+00 2025-07-01 14:37:33.058694+00 f t 7700.00 1 7700.00 2810 93 \N 3156 +21163 2025-07-01 14:37:33.062945+00 2025-07-01 14:37:33.062953+00 f t 21000.00 1 21000.00 2810 109 \N 3156 +21164 2025-07-01 14:37:33.066733+00 2025-07-01 14:37:33.066741+00 f t 12000.00 1 12000.00 2810 146 \N 3156 +21885 2025-07-03 17:43:15.075714+00 2025-07-03 17:43:15.075723+00 f t 42000.00 1 42000.00 2921 82 \N 3244 +21886 2025-07-03 17:43:15.081108+00 2025-07-03 17:43:15.08112+00 f t 7500.00 1 7500.00 2921 85 \N 3244 +21249 2025-07-01 15:07:06.387232+00 2025-07-01 15:07:06.387241+00 f t 42000.00 1 42000.00 2812 82 \N 3159 +21250 2025-07-01 15:07:06.392289+00 2025-07-01 15:07:06.3923+00 f t 7700.00 1 7700.00 2812 93 \N 3159 +21251 2025-07-01 15:07:06.397145+00 2025-07-01 15:07:06.397153+00 f t 21000.00 1 21000.00 2812 109 \N 3159 +21252 2025-07-01 15:07:06.401388+00 2025-07-01 15:07:06.401396+00 f t 12000.00 1 12000.00 2812 146 \N 3159 +21259 2025-07-01 15:08:36.979467+00 2025-07-01 15:08:36.979477+00 f t 42000.00 1 42000.00 2813 82 \N 3160 +21260 2025-07-01 15:08:36.98483+00 2025-07-01 15:08:36.984839+00 f t 7500.00 1 7500.00 2813 85 \N 3160 +21263 2025-07-01 15:31:58.551186+00 2025-07-01 15:31:58.551198+00 f t 42000.00 1 42000.00 2815 82 \N 3162 +21264 2025-07-01 15:31:58.558786+00 2025-07-01 15:31:58.558836+00 f t 22500.00 1 22500.00 2815 86 \N 3162 +21266 2025-07-01 15:35:08.572332+00 2025-07-01 15:35:08.572344+00 f t 62000.00 1 62000.00 2816 106 \N 3163 +21298 2025-07-01 16:39:34.385125+00 2025-07-01 16:39:34.385135+00 f t 42000.00 1 42000.00 2819 82 \N 3165 +21299 2025-07-01 16:39:34.38954+00 2025-07-01 16:39:34.389548+00 f t 7500.00 1 7500.00 2819 85 \N 3165 +21300 2025-07-01 16:39:34.393219+00 2025-07-01 16:39:34.393229+00 f t 22500.00 1 22500.00 2819 163 \N 3165 +21303 2025-07-01 17:05:22.408292+00 2025-07-01 17:05:22.408302+00 f t 42000.00 1 42000.00 2821 82 \N 3168 +21304 2025-07-01 17:05:22.414067+00 2025-07-01 17:05:22.414081+00 f t 7500.00 1 7500.00 2821 85 \N 3168 +21306 2025-07-01 17:07:39.848207+00 2025-07-01 17:07:39.848215+00 f t 42000.00 1 42000.00 2822 82 \N 3169 +21312 2025-07-01 17:43:27.745481+00 2025-07-01 17:43:27.74549+00 f t 42000.00 1 42000.00 2823 82 \N 3170 +21332 2025-07-01 17:49:31.601203+00 2025-07-01 17:49:31.601213+00 f t 42000.00 1 42000.00 2824 82 \N 3171 +21334 2025-07-01 18:09:33.254854+00 2025-07-01 18:09:33.254863+00 f t 50000.00 1 50000.00 2825 84 \N 3172 +22003 2025-07-03 18:10:54.109831+00 2025-07-03 18:10:54.109839+00 f t 42000.00 1 42000.00 2927 82 \N 3250 +22004 2025-07-03 18:10:54.114317+00 2025-07-03 18:10:54.114325+00 f t 7700.00 1 7700.00 2927 93 \N 3250 +22005 2025-07-03 18:10:54.119866+00 2025-07-03 18:10:54.119875+00 f t 21000.00 1 21000.00 2927 109 \N 3250 +22006 2025-07-03 18:10:54.123987+00 2025-07-03 18:10:54.123994+00 f t 12000.00 1 12000.00 2927 146 \N 3250 +21374 2025-07-01 21:54:09.736052+00 2025-07-01 21:54:09.736064+00 f t 95000.00 1 95000.00 2830 103 \N 3178 +22008 2025-07-03 18:30:21.00814+00 2025-07-03 18:30:21.008148+00 f t 50000.00 1 50000.00 2931 84 \N 3251 +22024 2025-07-03 18:51:41.69999+00 2025-07-03 18:51:41.700005+00 f t 70000.00 1 70000.00 2936 108 \N 3254 +22028 2025-07-03 19:00:11.465398+00 2025-07-03 19:00:11.465413+00 f t 45000.00 1 45000.00 2937 98 \N 3255 +22044 2025-07-03 19:49:07.164586+00 2025-07-03 19:49:07.164594+00 f t 42000.00 1 42000.00 2941 82 \N 3256 +21432 2025-07-02 00:14:31.160494+00 2025-07-02 00:14:31.160501+00 f t 21000.00 1 21000.00 2838 109 \N 3186 +21433 2025-07-02 00:14:31.164372+00 2025-07-02 00:14:31.164382+00 f t 12000.00 1 12000.00 2838 146 \N 3186 +22070 2025-07-03 21:50:31.552328+00 2025-07-03 21:50:31.552336+00 f t 50000.00 1 50000.00 2949 84 \N 3261 +22072 2025-07-03 22:42:10.326174+00 2025-07-03 22:42:10.326185+00 f t 42000.00 1 42000.00 2950 82 \N 3262 +21442 2025-07-02 00:15:29.40666+00 2025-07-02 00:15:29.406672+00 f t 50000.00 1 50000.00 2837 84 \N 3185 +21445 2025-07-02 00:21:46.153814+00 2025-07-02 00:21:46.153825+00 f t 42000.00 1 42000.00 2839 82 \N 3187 +21446 2025-07-02 00:21:46.159059+00 2025-07-02 00:21:46.159067+00 f t 22500.00 1 22500.00 2839 163 \N 3187 +21448 2025-07-02 01:04:59.616932+00 2025-07-02 01:04:59.616943+00 f t 42000.00 1 42000.00 2841 82 \N 3189 +21482 2025-07-02 01:26:46.635024+00 2025-07-02 01:26:46.635035+00 f t 42000.00 1 42000.00 2842 82 \N 3191 +21483 2025-07-02 01:26:46.641096+00 2025-07-02 01:26:46.641108+00 f t 7500.00 1 7500.00 2842 85 \N 3191 +21484 2025-07-02 01:26:46.645861+00 2025-07-02 01:26:46.64587+00 f t 22500.00 1 22500.00 2842 88 \N 3191 +21485 2025-07-02 01:26:46.650675+00 2025-07-02 01:26:46.650685+00 f t 22500.00 1 22500.00 2842 86 \N 3191 +21516 2025-07-02 02:26:16.578822+00 2025-07-02 02:26:16.578867+00 f t 42000.00 1 42000.00 2846 82 \N 3194 +21517 2025-07-02 02:26:16.58423+00 2025-07-02 02:26:16.584238+00 f t 13000.00 1 13000.00 2846 89 \N 3194 +21518 2025-07-02 02:26:16.588662+00 2025-07-02 02:26:16.588671+00 f t 7500.00 1 7500.00 2846 85 \N 3194 +21519 2025-07-02 02:26:16.59317+00 2025-07-02 02:26:16.59318+00 f t 22500.00 1 22500.00 2846 88 \N 3194 +21522 2025-07-02 02:55:35.075354+00 2025-07-02 02:55:35.075366+00 f t 42000.00 1 42000.00 2847 82 \N 3195 +21523 2025-07-02 02:55:35.082456+00 2025-07-02 02:55:35.082467+00 f t 22500.00 1 22500.00 2847 86 \N 3195 +21525 2025-07-02 03:04:09.358616+00 2025-07-02 03:04:09.358628+00 f t 50000.00 1 50000.00 2848 84 \N 3196 +21534 2025-07-02 03:46:30.565495+00 2025-07-02 03:46:30.565504+00 f t 42000.00 1 42000.00 2850 82 \N 3197 +21535 2025-07-02 03:46:30.571275+00 2025-07-02 03:46:30.571287+00 f t 62000.00 1 62000.00 2850 106 \N 3197 +21536 2025-07-02 03:46:30.575828+00 2025-07-02 03:46:30.575839+00 f t 7700.00 1 7700.00 2850 93 \N 3197 +21537 2025-07-02 03:46:30.580603+00 2025-07-02 03:46:30.580613+00 f t 40800.00 1 40800.00 2850 115 \N 3197 +21538 2025-07-02 03:46:30.585659+00 2025-07-02 03:46:30.585669+00 f t 12000.00 1 12000.00 2850 146 \N 3197 +29581 2025-07-22 14:46:08.513979+00 2025-07-22 14:46:08.513991+00 f t 50000.00 1 50000.00 4073 84 \N 1325 +25464 2025-07-13 00:36:38.567995+00 2025-07-13 00:36:38.568008+00 f t 50000.00 1 50000.00 3497 84 \N 3700 +21765 2025-07-03 02:44:21.949625+00 2025-07-03 02:44:21.949634+00 f t 50000.00 1 50000.00 2891 84 \N 3228 +21545 2025-07-02 11:15:00.417307+00 2025-07-02 11:15:00.417319+00 f t 42000.00 1 42000.00 2852 82 \N 3198 +21785 2025-07-03 12:57:18.322371+00 2025-07-03 12:57:18.32238+00 f t 50000.00 1 50000.00 2897 84 \N 3232 +21800 2025-07-03 13:40:47.156983+00 2025-07-03 13:40:47.156991+00 f t 42000.00 1 42000.00 2899 82 \N 3234 +21801 2025-07-03 13:40:47.16207+00 2025-07-03 13:40:47.16208+00 f t 7700.00 1 7700.00 2899 93 \N 3234 +21802 2025-07-03 13:40:47.167023+00 2025-07-03 13:40:47.167031+00 f t 41000.00 1 41000.00 2899 110 \N 3234 +21803 2025-07-03 13:40:47.170819+00 2025-07-03 13:40:47.170826+00 f t 12000.00 1 12000.00 2899 146 \N 3234 +21807 2025-07-03 14:23:03.255814+00 2025-07-03 14:23:03.255825+00 f t 50000.00 1 50000.00 2904 84 \N 3236 +22478 2025-07-05 12:13:14.678641+00 2025-07-05 12:13:14.678651+00 f t 70000.00 1 70000.00 3020 97 \N 3313 +21569 2025-07-02 11:21:46.381298+00 2025-07-02 11:21:46.38131+00 f t 50000.00 1 50000.00 2853 84 \N 3199 +21815 2025-07-03 16:00:40.791168+00 2025-07-03 16:00:40.791179+00 f t 50000.00 1 50000.00 2910 84 \N 3238 +21823 2025-07-03 16:11:06.636381+00 2025-07-03 16:11:06.63639+00 f t 42000.00 1 42000.00 2912 82 \N 3239 +21576 2025-07-02 11:26:03.708702+00 2025-07-02 11:26:03.708712+00 f t 42000.00 1 42000.00 2854 82 \N 3200 +21577 2025-07-02 11:26:03.714712+00 2025-07-02 11:26:03.714721+00 f t 7500.00 1 7500.00 2854 85 \N 3200 +21579 2025-07-02 12:43:39.449694+00 2025-07-02 12:43:39.449703+00 f t 42000.00 1 42000.00 2855 82 \N 3201 +21581 2025-07-02 15:46:57.224291+00 2025-07-02 15:46:57.224301+00 f t 42000.00 1 42000.00 2862 82 \N 3203 +21585 2025-07-02 16:02:38.102472+00 2025-07-02 16:02:38.102486+00 f t 42000.00 1 42000.00 2863 82 \N 3204 +22500 2025-07-05 12:40:32.605337+00 2025-07-05 12:40:32.605346+00 f t 42000.00 1 42000.00 3023 82 \N 3315 +21841 2025-07-03 16:33:22.929584+00 2025-07-03 16:33:22.929595+00 f t 42000.00 1 42000.00 2916 82 \N 3241 +22510 2025-07-05 12:53:24.440803+00 2025-07-05 12:53:24.440811+00 f t 42000.00 1 42000.00 3024 82 \N 3316 +21871 2025-07-03 16:38:50.742665+00 2025-07-03 16:38:50.742673+00 f t 27500.00 1 27500.00 2918 83 \N 3243 +21613 2025-07-02 17:15:49.081679+00 2025-07-02 17:15:49.081688+00 f t 95000.00 1 95000.00 2865 103 \N 3207 +21614 2025-07-02 17:15:49.085776+00 2025-07-02 17:15:49.085784+00 f t 75000.00 1 75000.00 2865 99 \N 3207 +21891 2025-07-03 17:45:12.024473+00 2025-07-03 17:45:12.024483+00 f t 42000.00 1 42000.00 2922 82 \N 3245 +21892 2025-07-03 17:45:12.029933+00 2025-07-03 17:45:12.029944+00 f t 7500.00 1 7500.00 2922 85 \N 3245 +21617 2025-07-02 18:03:18.377992+00 2025-07-02 18:03:18.378004+00 f t 27500.00 1 27500.00 2867 83 \N 3208 +21902 2025-07-03 17:50:46.917483+00 2025-07-03 17:50:46.917492+00 f t 70000.00 1 70000.00 2923 108 \N 3246 +21909 2025-07-03 17:57:28.379488+00 2025-07-03 17:57:28.379498+00 f t 42000.00 1 42000.00 2924 82 \N 3247 +21910 2025-07-03 17:57:28.385176+00 2025-07-03 17:57:28.385183+00 f t 22500.00 1 22500.00 2924 86 \N 3247 +21925 2025-07-03 18:01:38.862411+00 2025-07-03 18:01:38.862421+00 f t 42000.00 1 42000.00 2925 82 \N 3248 +21926 2025-07-03 18:01:38.867611+00 2025-07-03 18:01:38.867619+00 f t 7700.00 1 7700.00 2925 93 \N 3248 +21927 2025-07-03 18:01:38.872321+00 2025-07-03 18:01:38.872334+00 f t 21000.00 1 21000.00 2925 109 \N 3248 +21928 2025-07-03 18:01:38.877356+00 2025-07-03 18:01:38.877368+00 f t 12000.00 1 12000.00 2925 146 \N 3248 +21655 2025-07-02 18:22:54.624691+00 2025-07-02 18:22:54.6247+00 f t 42000.00 1 42000.00 2868 82 \N 3209 +21656 2025-07-02 18:22:54.629082+00 2025-07-02 18:22:54.629089+00 f t 7700.00 1 7700.00 2868 93 \N 3209 +21657 2025-07-02 18:22:54.632846+00 2025-07-02 18:22:54.632854+00 f t 52000.00 1 52000.00 2868 113 \N 3209 +21658 2025-07-02 18:22:54.636432+00 2025-07-02 18:22:54.63644+00 f t 70000.00 1 70000.00 2868 108 \N 3209 +21659 2025-07-02 18:22:54.640082+00 2025-07-02 18:22:54.640089+00 f t 12000.00 1 12000.00 2868 146 \N 3209 +21662 2025-07-02 18:49:26.449254+00 2025-07-02 18:49:26.44929+00 f t 95000.00 1 95000.00 2869 103 \N 3210 +21666 2025-07-02 20:00:43.340418+00 2025-07-02 20:00:43.340428+00 f t 42000.00 1 42000.00 2872 82 \N 3215 +21667 2025-07-02 20:00:43.346264+00 2025-07-02 20:00:43.346279+00 f t 31500.00 1 31500.00 2872 126 \N 3215 +21668 2025-07-02 20:00:43.350374+00 2025-07-02 20:00:43.350382+00 f t 13000.00 1 13000.00 2872 89 \N 3215 +21986 2025-07-03 18:09:57.4422+00 2025-07-03 18:09:57.442209+00 f t 50000.00 1 50000.00 2926 84 \N 3249 +21677 2025-07-02 20:12:03.681169+00 2025-07-02 20:12:03.681184+00 f t 42000.00 1 42000.00 2873 82 \N 3216 +21678 2025-07-02 20:12:03.688206+00 2025-07-02 20:12:03.688217+00 f t 81500.00 1 81500.00 2873 144 \N 3216 +22019 2025-07-03 18:33:29.194727+00 2025-07-03 18:33:29.194735+00 f t 50000.00 1 50000.00 2933 84 \N 3252 +22061 2025-07-03 19:54:08.72191+00 2025-07-03 19:54:08.721919+00 f t 42000.00 1 42000.00 2943 82 \N 3257 +22063 2025-07-03 20:02:58.594672+00 2025-07-03 20:02:58.594684+00 f t 42000.00 1 42000.00 2944 82 \N 3259 +22067 2025-07-03 20:38:50.873232+00 2025-07-03 20:38:50.873242+00 f t 42000.00 1 42000.00 2945 82 \N 3027 +22079 2025-07-03 23:59:57.119793+00 2025-07-03 23:59:57.119802+00 f t 42000.00 1 42000.00 2952 82 \N 3263 +21735 2025-07-02 20:41:54.468504+00 2025-07-02 20:41:54.468513+00 f t 27500.00 1 27500.00 2875 83 \N 3217 +21746 2025-07-02 20:44:10.902242+00 2025-07-02 20:44:10.902254+00 f t 42000.00 1 42000.00 2877 82 \N 3220 +21747 2025-07-02 20:44:10.907307+00 2025-07-02 20:44:10.907315+00 f t 22500.00 1 22500.00 2877 86 \N 3220 +22107 2025-07-04 00:23:15.12866+00 2025-07-04 00:23:15.128669+00 f t 42000.00 1 42000.00 2953 82 \N 3264 +22108 2025-07-04 00:23:15.134051+00 2025-07-04 00:23:15.13406+00 f t 7500.00 1 7500.00 2953 85 \N 3264 +22109 2025-07-04 00:23:15.13827+00 2025-07-04 00:23:15.138277+00 f t 22500.00 1 22500.00 2953 86 \N 3264 +22143 2025-07-04 00:26:45.851281+00 2025-07-04 00:26:45.85129+00 f t 42000.00 1 42000.00 2954 82 \N 3265 +22144 2025-07-04 00:26:45.855592+00 2025-07-04 00:26:45.8556+00 f t 32500.00 1 32500.00 2954 117 \N 3265 +22145 2025-07-04 00:26:45.866134+00 2025-07-04 00:26:45.866142+00 f t 13000.00 1 13000.00 2954 89 \N 3265 +22152 2025-07-04 00:30:38.128709+00 2025-07-04 00:30:38.128721+00 f t 42000.00 1 42000.00 2955 82 \N 3266 +22155 2025-07-04 01:44:23.817999+00 2025-07-04 01:44:23.818008+00 f t 42000.00 1 42000.00 2958 82 \N 3267 +22156 2025-07-04 01:44:23.823016+00 2025-07-04 01:44:23.823024+00 f t 7500.00 1 7500.00 2958 85 \N 3267 +22179 2025-07-04 10:39:59.467037+00 2025-07-04 10:39:59.467047+00 f t 50000.00 1 50000.00 2964 84 \N 3270 +22181 2025-07-04 11:02:28.414164+00 2025-07-04 11:02:28.414174+00 f t 42000.00 1 42000.00 2965 82 \N 3271 +24701 2025-07-10 18:25:07.566885+00 2025-07-10 18:25:07.566897+00 f t 42000.00 1 42000.00 3374 82 \N 3597 +23162 2025-07-06 22:30:48.96842+00 2025-07-06 22:30:48.968429+00 f t 42000.00 1 42000.00 3134 82 \N 3396 +24702 2025-07-10 18:25:07.57539+00 2025-07-10 18:25:07.575406+00 f t 69000.00 1 69000.00 3374 142 \N 3597 +22455 2025-07-05 09:59:35.690969+00 2025-07-05 09:59:35.690981+00 f t 62000.00 1 62000.00 3012 106 \N 3309 +22458 2025-07-05 12:08:12.642834+00 2025-07-05 12:08:12.642842+00 f t 42000.00 1 42000.00 3019 82 \N 3312 +22459 2025-07-05 12:08:12.647577+00 2025-07-05 12:08:12.647588+00 f t 7700.00 1 7700.00 3019 91 \N 3312 +22210 2025-07-04 11:19:37.619553+00 2025-07-04 11:19:37.619563+00 f t 42000.00 1 42000.00 2966 82 \N 3272 +22211 2025-07-04 11:19:37.624486+00 2025-07-04 11:19:37.624496+00 f t 69000.00 1 69000.00 2966 142 \N 3272 +22497 2025-07-05 12:22:30.100014+00 2025-07-05 12:22:30.100028+00 f t 70000.00 1 70000.00 3022 97 \N 3314 +22214 2025-07-04 11:41:34.913436+00 2025-07-04 11:41:34.913446+00 f t 50000.00 1 50000.00 2967 84 \N 3273 +22218 2025-07-04 12:23:26.090134+00 2025-07-04 12:23:26.090146+00 f t 42000.00 1 42000.00 2969 82 \N 3274 +22220 2025-07-04 13:25:38.373554+00 2025-07-04 13:25:38.373564+00 f t 50000.00 1 50000.00 2973 84 \N 3276 +22225 2025-07-04 15:07:54.119322+00 2025-07-04 15:07:54.119336+00 f t 42000.00 1 42000.00 2977 82 \N 3278 +22226 2025-07-04 15:07:54.124865+00 2025-07-04 15:07:54.124873+00 f t 7700.00 1 7700.00 2977 93 \N 3278 +22227 2025-07-04 15:07:54.128796+00 2025-07-04 15:07:54.128803+00 f t 41000.00 1 41000.00 2977 110 \N 3278 +22228 2025-07-04 15:07:54.132275+00 2025-07-04 15:07:54.132282+00 f t 12000.00 1 12000.00 2977 146 \N 3278 +22515 2025-07-05 14:01:55.688236+00 2025-07-05 14:01:55.688244+00 f t 42000.00 1 42000.00 3027 82 \N 3318 +22516 2025-07-05 14:01:55.692521+00 2025-07-05 14:01:55.692529+00 f t 22500.00 1 22500.00 3027 86 \N 3318 +22522 2025-07-05 14:17:38.725969+00 2025-07-05 14:17:38.725978+00 f t 50000.00 1 50000.00 3028 84 \N 3319 +22252 2025-07-04 16:16:10.771213+00 2025-07-04 16:16:10.771225+00 f t 50000.00 1 50000.00 2981 84 \N 3281 +22254 2025-07-04 16:32:42.827035+00 2025-07-04 16:32:42.827046+00 f t 50000.00 1 50000.00 2982 84 \N 3283 +22256 2025-07-04 17:01:17.11958+00 2025-07-04 17:01:17.119591+00 f t 70000.00 1 70000.00 2983 108 \N 3284 +22260 2025-07-04 17:21:24.553002+00 2025-07-04 17:21:24.553011+00 f t 42000.00 1 42000.00 2986 82 \N 3285 +22263 2025-07-04 18:14:34.639408+00 2025-07-04 18:14:34.639417+00 f t 42000.00 1 42000.00 2987 82 \N 3287 +22264 2025-07-04 18:14:34.645415+00 2025-07-04 18:14:34.645424+00 f t 81500.00 1 81500.00 2987 144 \N 3287 +22269 2025-07-04 19:37:57.567645+00 2025-07-04 19:37:57.567654+00 f t 50000.00 1 50000.00 2989 84 \N 3288 +22562 2025-07-05 15:35:38.315753+00 2025-07-05 15:35:38.315766+00 f t 42000.00 1 42000.00 3030 82 \N 3320 +22563 2025-07-05 15:35:38.321081+00 2025-07-05 15:35:38.321089+00 f t 7700.00 1 7700.00 3030 93 \N 3320 +22564 2025-07-05 15:35:38.325701+00 2025-07-05 15:35:38.325709+00 f t 45500.00 1 45500.00 3030 114 \N 3320 +22281 2025-07-04 20:37:17.609177+00 2025-07-04 20:37:17.609187+00 f t 27500.00 1 27500.00 2991 83 \N 3290 +22565 2025-07-05 15:35:38.330328+00 2025-07-05 15:35:38.330336+00 f t 12000.00 1 12000.00 3030 146 \N 3320 +22566 2025-07-05 15:35:38.334522+00 2025-07-05 15:35:38.334532+00 f t 22500.00 1 22500.00 3030 88 \N 3320 +22567 2025-07-05 15:35:38.339296+00 2025-07-05 15:35:38.339304+00 f t 22500.00 1 22500.00 3030 163 \N 3320 +22571 2025-07-05 15:47:44.936961+00 2025-07-05 15:47:44.93697+00 f t 130000.00 1 130000.00 3031 164 \N 3322 +22575 2025-07-05 15:58:16.475185+00 2025-07-05 15:58:16.475196+00 f t 42000.00 1 42000.00 3032 82 \N 3323 +22297 2025-07-04 20:42:54.991227+00 2025-07-04 20:42:54.991235+00 f t 27500.00 1 27500.00 2992 83 \N 3291 +22583 2025-07-05 16:52:12.685091+00 2025-07-05 16:52:12.685104+00 f t 50000.00 1 50000.00 3035 84 \N 3324 +22587 2025-07-05 17:48:02.57873+00 2025-07-05 17:48:02.578741+00 f t 50000.00 1 50000.00 3037 84 \N 3325 +22590 2025-07-05 17:51:24.214347+00 2025-07-05 17:51:24.21436+00 f t 50000.00 1 50000.00 3038 84 \N 3326 +22593 2025-07-05 18:10:42.233744+00 2025-07-05 18:10:42.233752+00 f t 42000.00 1 42000.00 3039 82 \N 3327 +22605 2025-07-05 18:16:44.273727+00 2025-07-05 18:16:44.273736+00 f t 42000.00 1 42000.00 3040 82 \N 3328 +22324 2025-07-04 21:16:31.806067+00 2025-07-04 21:16:31.806076+00 f t 42000.00 1 42000.00 2993 82 \N 3292 +22325 2025-07-04 21:16:31.810052+00 2025-07-04 21:16:31.810059+00 f t 22500.00 1 22500.00 2993 163 \N 3292 +22612 2025-07-05 18:41:59.502591+00 2025-07-05 18:41:59.502599+00 f t 42000.00 1 42000.00 3042 82 \N 3329 +22613 2025-07-05 18:41:59.506684+00 2025-07-05 18:41:59.506691+00 f t 22500.00 1 22500.00 3042 163 \N 3329 +22624 2025-07-05 18:43:23.30195+00 2025-07-05 18:43:23.30196+00 f t 42000.00 1 42000.00 3043 82 \N 3330 +22625 2025-07-05 18:43:23.307036+00 2025-07-05 18:43:23.307046+00 f t 33000.00 1 33000.00 3043 133 \N 3330 +22351 2025-07-04 22:54:55.181616+00 2025-07-04 22:54:55.181629+00 f t 42000.00 1 42000.00 2995 82 \N 3293 +22352 2025-07-04 22:54:55.187375+00 2025-07-04 22:54:55.187386+00 f t 7500.00 1 7500.00 2995 85 \N 3293 +22353 2025-07-04 22:54:55.193294+00 2025-07-04 22:54:55.193302+00 f t 22500.00 1 22500.00 2995 86 \N 3293 +22358 2025-07-04 23:34:57.042492+00 2025-07-04 23:34:57.042504+00 f t 50000.00 1 50000.00 2998 84 \N 3295 +22368 2025-07-04 23:43:14.047068+00 2025-07-04 23:43:14.047076+00 f t 50000.00 1 50000.00 3000 84 \N 3297 +22378 2025-07-05 01:05:33.73664+00 2025-07-05 01:05:33.736652+00 f t 42000.00 1 42000.00 3003 82 \N 3300 +22379 2025-07-05 01:05:33.74163+00 2025-07-05 01:05:33.741637+00 f t 7500.00 1 7500.00 3003 85 \N 3300 +22380 2025-07-05 01:05:33.745501+00 2025-07-05 01:05:33.745509+00 f t 22500.00 1 22500.00 3003 163 \N 3300 +22385 2025-07-05 01:09:23.507425+00 2025-07-05 01:09:23.507438+00 f t 42000.00 1 42000.00 3004 82 \N 3301 +22386 2025-07-05 01:09:23.513357+00 2025-07-05 01:09:23.513368+00 f t 7700.00 1 7700.00 3004 93 \N 3301 +22387 2025-07-05 01:09:23.518307+00 2025-07-05 01:09:23.518318+00 f t 21000.00 1 21000.00 3004 109 \N 3301 +22388 2025-07-05 01:09:23.523166+00 2025-07-05 01:09:23.523177+00 f t 12000.00 1 12000.00 3004 146 \N 3301 +22393 2025-07-05 01:23:40.325431+00 2025-07-05 01:23:40.32544+00 f t 42000.00 1 42000.00 3005 82 \N 3303 +22394 2025-07-05 01:23:40.330943+00 2025-07-05 01:23:40.330952+00 f t 12000.00 1 12000.00 3005 116 \N 3303 +22395 2025-07-05 01:23:40.335813+00 2025-07-05 01:23:40.335824+00 f t 7700.00 1 7700.00 3005 93 \N 3303 +22396 2025-07-05 01:23:40.340369+00 2025-07-05 01:23:40.340378+00 f t 12000.00 1 12000.00 3005 146 \N 3303 +22399 2025-07-05 02:02:46.213842+00 2025-07-05 02:02:46.21385+00 f t 42000.00 1 42000.00 3006 82 \N 3304 +22400 2025-07-05 02:02:46.219206+00 2025-07-05 02:02:46.219214+00 f t 22500.00 1 22500.00 3006 163 \N 3304 +22420 2025-07-05 03:00:22.725736+00 2025-07-05 03:00:22.725751+00 f t 70000.00 1 70000.00 3007 97 \N 3305 +22425 2025-07-05 03:22:12.61911+00 2025-07-05 03:22:12.619119+00 f t 50000.00 1 50000.00 3008 84 \N 3306 +22626 2025-07-05 18:43:23.311736+00 2025-07-05 18:43:23.311744+00 f t 13000.00 1 13000.00 3043 89 \N 3330 +22627 2025-07-05 18:43:23.315789+00 2025-07-05 18:43:23.315797+00 f t 22500.00 1 22500.00 3043 86 \N 3330 +26258 2025-07-14 23:21:22.52347+00 2025-07-14 23:21:22.523494+00 f t 42000.00 1 42000.00 3609 82 \N 3799 +23201 2025-07-07 03:02:52.297346+00 2025-07-07 03:02:52.297355+00 f t 42000.00 1 42000.00 3147 82 \N 3403 +22651 2025-07-05 19:15:09.433965+00 2025-07-05 19:15:09.433977+00 f t 42000.00 1 42000.00 3044 82 \N 3331 +22652 2025-07-05 19:15:09.440257+00 2025-07-05 19:15:09.440268+00 f t 32500.00 1 32500.00 3044 117 \N 3331 +22653 2025-07-05 19:15:09.446183+00 2025-07-05 19:15:09.446194+00 f t 13000.00 1 13000.00 3044 89 \N 3331 +22654 2025-07-05 19:15:09.451521+00 2025-07-05 19:15:09.45153+00 f t 7500.00 1 7500.00 3044 85 \N 3331 +22655 2025-07-05 19:15:09.455943+00 2025-07-05 19:15:09.455951+00 f t 22500.00 1 22500.00 3044 86 \N 3331 +23263 2025-07-07 04:39:42.940312+00 2025-07-07 04:39:42.940321+00 f t 42000.00 1 42000.00 3154 82 \N 3405 +23264 2025-07-07 04:39:42.944989+00 2025-07-07 04:39:42.944996+00 f t 46900.00 1 46900.00 3154 136 \N 3405 +23265 2025-07-07 04:39:42.948922+00 2025-07-07 04:39:42.94893+00 f t 13000.00 1 13000.00 3154 89 \N 3405 +23266 2025-07-07 04:39:42.952656+00 2025-07-07 04:39:42.952663+00 f t 7500.00 1 7500.00 3154 85 \N 3405 +23267 2025-07-07 04:39:42.957479+00 2025-07-07 04:39:42.957486+00 f t 22500.00 1 22500.00 3154 88 \N 3405 +23269 2025-07-07 06:08:53.203492+00 2025-07-07 06:08:53.203504+00 f t 50000.00 1 50000.00 3155 84 \N 3406 +23292 2025-07-07 09:42:38.504253+00 2025-07-07 09:42:38.504265+00 f t 42000.00 1 42000.00 3158 82 \N 3407 +23293 2025-07-07 09:42:38.510784+00 2025-07-07 09:42:38.510795+00 f t 7500.00 1 7500.00 3158 85 \N 3407 +23294 2025-07-07 09:42:38.515731+00 2025-07-07 09:42:38.515739+00 f t 42000.00 1 42000.00 3158 82 \N 3408 +23295 2025-07-07 09:42:38.519588+00 2025-07-07 09:42:38.519596+00 f t 22500.00 1 22500.00 3158 163 \N 3408 +22690 2025-07-05 19:30:06.591126+00 2025-07-05 19:30:06.59117+00 f t 42000.00 1 42000.00 3048 82 \N 3332 +22691 2025-07-05 19:30:06.598376+00 2025-07-05 19:30:06.598389+00 f t 7500.00 1 7500.00 3048 85 \N 3332 +22692 2025-07-05 19:30:06.604457+00 2025-07-05 19:30:06.604465+00 f t 42000.00 1 42000.00 3048 82 \N 3333 +22693 2025-07-05 19:30:06.610094+00 2025-07-05 19:30:06.610106+00 f t 7500.00 1 7500.00 3048 85 \N 3333 +23297 2025-07-07 11:13:39.457017+00 2025-07-07 11:13:39.457029+00 f t 42000.00 1 42000.00 3160 82 \N 3410 +23299 2025-07-07 12:48:50.3687+00 2025-07-07 12:48:50.368712+00 f t 62000.00 1 62000.00 3161 106 \N 3411 +22697 2025-07-05 20:12:38.179291+00 2025-07-05 20:12:38.179301+00 f t 42000.00 1 42000.00 3049 82 \N 3334 +23303 2025-07-07 13:03:33.108056+00 2025-07-07 13:03:33.108065+00 f t 70000.00 1 70000.00 3162 108 \N 3412 +22699 2025-07-05 22:25:48.51328+00 2025-07-05 22:25:48.513288+00 f t 85000.00 1 85000.00 3054 99 \N 3337 +23306 2025-07-07 13:13:32.657844+00 2025-07-07 13:13:32.657855+00 f t 42000.00 1 42000.00 3163 82 \N 3413 +23307 2025-07-07 13:13:32.66388+00 2025-07-07 13:13:32.663889+00 f t 7500.00 1 7500.00 3163 85 \N 3413 +22704 2025-07-05 22:46:43.681455+00 2025-07-05 22:46:43.681464+00 f t 42000.00 1 42000.00 3056 82 \N 3338 +22705 2025-07-05 22:46:43.688271+00 2025-07-05 22:46:43.68828+00 f t 7500.00 1 7500.00 3056 85 \N 3338 +23313 2025-07-07 13:20:27.561389+00 2025-07-07 13:20:27.561402+00 f t 62000.00 1 62000.00 3166 106 \N 3415 +23315 2025-07-07 13:50:09.818827+00 2025-07-07 13:50:09.818839+00 f t 42000.00 1 42000.00 3167 82 \N 3416 +23319 2025-07-07 14:18:44.68174+00 2025-07-07 14:18:44.681748+00 f t 42000.00 1 42000.00 3168 82 \N 3417 +22724 2025-07-05 23:04:09.829769+00 2025-07-05 23:04:09.829779+00 f t 42000.00 1 42000.00 3058 82 \N 3339 +22725 2025-07-05 23:04:09.834817+00 2025-07-05 23:04:09.834824+00 f t 7500.00 1 7500.00 3058 85 \N 3339 +22726 2025-07-05 23:04:09.839199+00 2025-07-05 23:04:09.839206+00 f t 22500.00 1 22500.00 3058 163 \N 3339 +23355 2025-07-07 15:39:00.226991+00 2025-07-07 15:39:00.227003+00 f t 50000.00 1 50000.00 3179 84 \N 3425 +22731 2025-07-05 23:20:17.598114+00 2025-07-05 23:20:17.598126+00 f t 42000.00 1 42000.00 3059 82 \N 3340 +22736 2025-07-05 23:34:51.949113+00 2025-07-05 23:34:51.949122+00 f t 42000.00 1 42000.00 3060 82 \N 3341 +23370 2025-07-07 18:11:26.507588+00 2025-07-07 18:11:26.507596+00 f t 42000.00 1 42000.00 3185 82 \N 3433 +23371 2025-07-07 18:11:26.512835+00 2025-07-07 18:11:26.512843+00 f t 7500.00 1 7500.00 3185 85 \N 3433 +23372 2025-07-07 18:11:26.517113+00 2025-07-07 18:11:26.517122+00 f t 22500.00 1 22500.00 3185 86 \N 3433 +23378 2025-07-07 18:20:03.369276+00 2025-07-07 18:20:03.369292+00 f t 42000.00 1 42000.00 3186 82 \N 3434 +23400 2025-07-07 18:41:09.056525+00 2025-07-07 18:41:09.056533+00 f t 42000.00 1 42000.00 3189 82 \N 3437 +23413 2025-07-07 19:24:06.746029+00 2025-07-07 19:24:06.746037+00 f t 42000.00 1 42000.00 3191 82 \N 3438 +23414 2025-07-07 19:24:06.750731+00 2025-07-07 19:24:06.750738+00 f t 22500.00 1 22500.00 3191 163 \N 3438 +22845 2025-07-05 23:56:31.010299+00 2025-07-05 23:56:31.010307+00 f t 42000.00 1 42000.00 3061 82 \N 3342 +22846 2025-07-05 23:56:31.014885+00 2025-07-05 23:56:31.014893+00 f t 7700.00 1 7700.00 3061 93 \N 3342 +22847 2025-07-05 23:56:31.018968+00 2025-07-05 23:56:31.018976+00 f t 33000.00 1 33000.00 3061 112 \N 3342 +22848 2025-07-05 23:56:31.022473+00 2025-07-05 23:56:31.02248+00 f t 12000.00 1 12000.00 3061 146 \N 3342 +22849 2025-07-05 23:56:31.026328+00 2025-07-05 23:56:31.026335+00 f t 7500.00 1 7500.00 3061 85 \N 3342 +22850 2025-07-05 23:56:31.029992+00 2025-07-05 23:56:31.030001+00 f t 42000.00 1 42000.00 3061 82 \N 3343 +22851 2025-07-05 23:56:31.033406+00 2025-07-05 23:56:31.033412+00 f t 22500.00 1 22500.00 3061 86 \N 3343 +22852 2025-07-05 23:56:31.037453+00 2025-07-05 23:56:31.037459+00 f t 22500.00 1 22500.00 3061 87 \N 3343 +22854 2025-07-06 00:03:33.021499+00 2025-07-06 00:03:33.021508+00 f t 27500.00 1 27500.00 3062 83 \N 3344 +22856 2025-07-06 00:25:15.593801+00 2025-07-06 00:25:15.59381+00 f t 42000.00 1 42000.00 3064 82 \N 3346 +22862 2025-07-06 00:26:28.527268+00 2025-07-06 00:26:28.527277+00 f t 27500.00 1 27500.00 3065 83 \N 3347 +22865 2025-07-06 01:41:00.712601+00 2025-07-06 01:41:00.71261+00 f t 50000.00 1 50000.00 3066 84 \N 3348 +22868 2025-07-06 01:48:03.132074+00 2025-07-06 01:48:03.132082+00 f t 50000.00 1 50000.00 3067 84 \N 3349 +22871 2025-07-06 03:59:32.223287+00 2025-07-06 03:59:32.223295+00 f t 42000.00 1 42000.00 3070 82 \N 3351 +22872 2025-07-06 03:59:32.227956+00 2025-07-06 03:59:32.227963+00 f t 7500.00 1 7500.00 3070 85 \N 3351 +22874 2025-07-06 04:48:05.369554+00 2025-07-06 04:48:05.369566+00 f t 42000.00 1 42000.00 3073 82 \N 3352 +22901 2025-07-06 05:34:32.834452+00 2025-07-06 05:34:32.83446+00 f t 50000.00 1 50000.00 3074 84 \N 3353 +22906 2025-07-06 05:59:29.690062+00 2025-07-06 05:59:29.69007+00 f t 56000.00 1 56000.00 3075 105 \N 3354 +22912 2025-07-06 08:58:05.234929+00 2025-07-06 08:58:05.234941+00 f t 50000.00 1 50000.00 3077 84 \N 3356 +23160 2025-07-06 22:07:52.593128+00 2025-07-06 22:07:52.593136+00 f t 42000.00 1 42000.00 3132 82 \N 3395 +23164 2025-07-06 23:07:23.030585+00 2025-07-06 23:07:23.030593+00 f t 50000.00 1 50000.00 3136 84 \N 3398 +23168 2025-07-07 00:56:32.864264+00 2025-07-07 00:56:32.864273+00 f t 50000.00 1 50000.00 3140 84 \N 3399 +23172 2025-07-07 01:02:50.428289+00 2025-07-07 01:02:50.428297+00 f t 50000.00 1 50000.00 3141 84 \N 3400 +31440 2025-07-28 03:54:08.123919+00 2025-07-28 03:54:08.123927+00 f t 42000.00 1 42000.00 4395 82 \N 4411 +23187 2025-07-07 02:15:49.535942+00 2025-07-07 02:15:49.53595+00 f t 42000.00 1 42000.00 3146 82 \N 3402 +23188 2025-07-07 02:15:49.540783+00 2025-07-07 02:15:49.540792+00 f t 13000.00 1 13000.00 3146 89 \N 3402 +22926 2025-07-06 09:08:06.343981+00 2025-07-06 09:08:06.343991+00 f t 50000.00 1 50000.00 3078 84 \N 3357 +22932 2025-07-06 09:28:32.863397+00 2025-07-06 09:28:32.863405+00 f t 50000.00 1 50000.00 3079 84 \N 3358 +23226 2025-07-07 03:10:54.600005+00 2025-07-07 03:10:54.600014+00 f t 42000.00 1 42000.00 3148 82 \N 3404 +23227 2025-07-07 03:10:54.604238+00 2025-07-07 03:10:54.604245+00 f t 62000.00 1 62000.00 3148 106 \N 3404 +23228 2025-07-07 03:10:54.607738+00 2025-07-07 03:10:54.607744+00 f t 7700.00 1 7700.00 3148 93 \N 3404 +23229 2025-07-07 03:10:54.61115+00 2025-07-07 03:10:54.611156+00 f t 21000.00 1 21000.00 3148 109 \N 3404 +23230 2025-07-07 03:10:54.614763+00 2025-07-07 03:10:54.614769+00 f t 12000.00 1 12000.00 3148 146 \N 3404 +23231 2025-07-07 03:10:54.618448+00 2025-07-07 03:10:54.618454+00 f t 22500.00 1 22500.00 3148 86 \N 3404 +22950 2025-07-06 09:40:31.375622+00 2025-07-06 09:40:31.375631+00 f t 50000.00 1 50000.00 3080 84 \N 3359 +22970 2025-07-06 09:48:11.913931+00 2025-07-06 09:48:11.913941+00 f t 42000.00 1 42000.00 3081 82 \N 3360 +22973 2025-07-06 11:20:35.001004+00 2025-07-06 11:20:35.001016+00 f t 50000.00 1 50000.00 3082 84 \N 3361 +22982 2025-07-06 11:42:26.462446+00 2025-07-06 11:42:26.462453+00 f t 50000.00 1 50000.00 3083 84 \N 3362 +22984 2025-07-06 12:16:37.717778+00 2025-07-06 12:16:37.717787+00 f t 42000.00 1 42000.00 3084 82 \N 3363 +22986 2025-07-06 12:34:56.275691+00 2025-07-06 12:34:56.275702+00 f t 70000.00 1 70000.00 3085 97 \N 3365 +22991 2025-07-06 12:50:08.597198+00 2025-07-06 12:50:08.597207+00 f t 50000.00 1 50000.00 3087 84 \N 3367 +23310 2025-07-07 13:18:28.124918+00 2025-07-07 13:18:28.124945+00 f t 62000.00 1 62000.00 3165 106 \N 3414 +23324 2025-07-07 14:43:03.613728+00 2025-07-07 14:43:03.613737+00 f t 50000.00 1 50000.00 3170 84 \N 3419 +23336 2025-07-07 14:46:43.135049+00 2025-07-07 14:46:43.135061+00 f t 50000.00 1 50000.00 3171 84 \N 3420 +23350 2025-07-07 15:23:07.247345+00 2025-07-07 15:23:07.247354+00 f t 42000.00 1 42000.00 3176 82 \N 3423 +23351 2025-07-07 15:23:07.251782+00 2025-07-07 15:23:07.25179+00 f t 29000.00 1 29000.00 3176 124 \N 3423 +23352 2025-07-07 15:23:07.255596+00 2025-07-07 15:23:07.255604+00 f t 13000.00 1 13000.00 3176 89 \N 3423 +23358 2025-07-07 15:40:29.888981+00 2025-07-07 15:40:29.888994+00 f t 27500.00 1 27500.00 3180 83 \N 962 +23017 2025-07-06 13:41:04.605249+00 2025-07-06 13:41:04.605259+00 f t 42000.00 1 42000.00 3091 82 \N 3369 +23360 2025-07-07 16:37:30.641421+00 2025-07-07 16:37:30.641431+00 f t 70000.00 1 70000.00 3181 108 \N 3426 +23021 2025-07-06 14:00:14.400675+00 2025-07-06 14:00:14.400687+00 f t 42000.00 1 42000.00 3092 82 \N 3370 +23022 2025-07-06 14:00:14.407031+00 2025-07-06 14:00:14.40704+00 f t 33000.00 1 33000.00 3092 139 \N 3370 +23023 2025-07-06 14:00:14.412468+00 2025-07-06 14:00:14.412477+00 f t 13000.00 1 13000.00 3092 89 \N 3370 +23025 2025-07-06 14:23:39.538269+00 2025-07-06 14:23:39.538278+00 f t 50000.00 1 50000.00 3094 84 \N 3371 +23027 2025-07-06 14:25:14.227243+00 2025-07-06 14:25:14.227251+00 f t 50000.00 1 50000.00 3095 84 \N 3372 +23030 2025-07-06 14:32:59.938932+00 2025-07-06 14:32:59.938942+00 f t 42000.00 1 42000.00 3098 82 \N 3374 +23031 2025-07-06 14:32:59.94628+00 2025-07-06 14:32:59.946291+00 f t 7500.00 1 7500.00 3098 85 \N 3374 +23037 2025-07-06 15:10:44.522272+00 2025-07-06 15:10:44.522286+00 f t 50000.00 1 50000.00 3103 84 \N 3375 +23039 2025-07-06 15:18:58.99692+00 2025-07-06 15:18:58.996928+00 f t 50000.00 1 50000.00 3104 84 \N 3376 +23396 2025-07-07 18:39:39.634393+00 2025-07-07 18:39:39.634401+00 f t 93750.00 1 93750.00 3188 90 \N 3436 +23397 2025-07-07 18:39:39.638362+00 2025-07-07 18:39:39.638369+00 f t 42000.00 1 42000.00 3188 82 \N 3436 +23053 2025-07-06 15:45:43.179483+00 2025-07-06 15:45:43.179494+00 f t 50000.00 1 50000.00 3105 84 \N 3377 +23055 2025-07-06 15:56:08.602401+00 2025-07-06 15:56:08.60241+00 f t 56000.00 1 56000.00 3107 105 \N 3378 +23057 2025-07-06 15:57:36.930515+00 2025-07-06 15:57:36.930524+00 f t 50000.00 1 50000.00 3108 84 \N 3379 +23059 2025-07-06 17:34:42.19403+00 2025-07-06 17:34:42.194041+00 f t 42000.00 1 42000.00 3110 82 \N 3380 +23061 2025-07-06 18:33:03.82106+00 2025-07-06 18:33:03.821068+00 f t 50000.00 1 50000.00 3114 84 \N 3381 +23421 2025-07-07 19:52:45.886588+00 2025-07-07 19:52:45.886602+00 f t 42000.00 1 42000.00 3193 82 \N 3440 +23422 2025-07-07 19:52:45.891353+00 2025-07-07 19:52:45.891361+00 f t 7500.00 1 7500.00 3193 85 \N 3440 +23065 2025-07-06 19:01:01.985208+00 2025-07-06 19:01:01.985218+00 f t 70000.00 1 70000.00 3117 97 \N 3382 +23438 2025-07-07 20:05:18.611935+00 2025-07-07 20:05:18.611948+00 f t 42000.00 1 42000.00 3194 82 \N 3441 +23439 2025-07-07 20:05:18.617079+00 2025-07-07 20:05:18.617091+00 f t 34500.00 1 34500.00 3194 134 \N 3441 +23440 2025-07-07 20:05:18.621786+00 2025-07-07 20:05:18.621794+00 f t 13000.00 1 13000.00 3194 89 \N 3441 +23087 2025-07-06 19:08:13.800593+00 2025-07-06 19:08:13.800606+00 f t 62000.00 1 62000.00 3118 106 \N 3384 +23092 2025-07-06 19:59:15.990699+00 2025-07-06 19:59:15.990709+00 f t 50000.00 1 50000.00 3121 84 \N 3385 +23094 2025-07-06 20:05:11.913597+00 2025-07-06 20:05:11.913608+00 f t 50000.00 1 50000.00 3122 84 \N 3386 +23451 2025-07-07 20:13:33.303461+00 2025-07-07 20:13:33.303474+00 f t 50000.00 1 50000.00 3195 84 \N 3442 +23454 2025-07-07 22:02:10.055313+00 2025-07-07 22:02:10.055325+00 f t 42000.00 1 42000.00 3206 82 \N 3447 +23109 2025-07-06 20:21:24.849561+00 2025-07-06 20:21:24.84957+00 f t 62000.00 1 62000.00 3123 106 \N 3387 +23110 2025-07-06 20:21:24.854101+00 2025-07-06 20:21:24.85411+00 f t 70000.00 1 70000.00 3123 108 \N 3387 +23117 2025-07-06 20:23:47.582256+00 2025-07-06 20:23:47.582265+00 f t 50000.00 1 50000.00 3124 84 \N 3388 +23473 2025-07-07 22:23:28.90514+00 2025-07-07 22:23:28.905148+00 f t 42000.00 1 42000.00 3207 82 \N 3450 +23474 2025-07-07 22:23:28.909547+00 2025-07-07 22:23:28.909558+00 f t 42000.00 1 42000.00 3207 82 \N 3451 +23493 2025-07-07 22:30:19.713376+00 2025-07-07 22:30:19.713385+00 f t 42000.00 1 42000.00 3208 82 \N 3452 +23495 2025-07-07 23:00:08.863928+00 2025-07-07 23:00:08.863943+00 f t 50000.00 1 50000.00 3209 84 \N 3453 +23497 2025-07-07 23:02:38.409623+00 2025-07-07 23:02:38.409633+00 f t 62000.00 1 62000.00 3210 106 \N 3454 +23501 2025-07-07 23:35:32.573319+00 2025-07-07 23:35:32.57333+00 f t 42000.00 1 42000.00 3212 82 \N 3456 +23155 2025-07-06 21:58:51.95297+00 2025-07-06 21:58:51.952977+00 f t 42000.00 1 42000.00 3131 82 \N 3394 +23156 2025-07-06 21:58:51.957327+00 2025-07-06 21:58:51.957334+00 f t 69000.00 1 69000.00 3131 142 \N 3394 +23505 2025-07-08 00:27:16.991574+00 2025-07-08 00:27:16.991588+00 f t 50000.00 1 50000.00 3215 84 \N 3458 +25544 2025-07-13 13:52:18.058614+00 2025-07-13 13:52:18.058623+00 f t 42000.00 1 42000.00 3517 82 \N 3721 +25545 2025-07-13 13:52:18.063164+00 2025-07-13 13:52:18.063174+00 f t 29000.00 1 29000.00 3517 124 \N 3721 +25546 2025-07-13 13:52:18.066888+00 2025-07-13 13:52:18.066894+00 f t 13000.00 1 13000.00 3517 89 \N 3721 +25552 2025-07-13 14:40:39.650838+00 2025-07-13 14:40:39.650847+00 f t 62000.00 1 62000.00 3518 106 \N 3723 +23983 2025-07-08 18:43:49.991763+00 2025-07-08 18:43:49.991778+00 f t 42000.00 1 42000.00 3257 82 \N 3498 +23984 2025-07-08 18:43:49.998157+00 2025-07-08 18:43:49.998166+00 f t 7500.00 1 7500.00 3257 85 \N 3498 +23985 2025-07-08 18:43:50.002776+00 2025-07-08 18:43:50.002785+00 f t 22500.00 1 22500.00 3257 86 \N 3498 +24772 2025-07-10 20:09:48.240899+00 2025-07-10 20:09:48.240908+00 f t 95000.00 1 95000.00 3378 103 \N 3600 +24774 2025-07-10 20:18:42.969931+00 2025-07-10 20:18:42.96994+00 f t 50000.00 1 50000.00 3379 84 \N 3601 +25567 2025-07-13 15:52:59.342744+00 2025-07-13 15:52:59.342757+00 f t 42000.00 1 42000.00 3522 82 \N 3727 +23544 2025-07-08 01:28:28.919396+00 2025-07-08 01:28:28.919405+00 f t 50000.00 1 50000.00 3218 84 \N 3461 +25589 2025-07-13 17:26:22.977984+00 2025-07-13 17:26:22.977994+00 f t 42000.00 1 42000.00 3525 82 \N 3731 +25590 2025-07-13 17:26:22.985365+00 2025-07-13 17:26:22.985374+00 f t 81500.00 1 81500.00 3525 144 \N 3731 +25598 2025-07-13 17:34:08.896347+00 2025-07-13 17:34:08.896358+00 f t 95000.00 1 95000.00 3527 103 \N 3733 +25610 2025-07-13 20:32:42.856157+00 2025-07-13 20:32:42.856166+00 f t 27500.00 1 27500.00 3532 83 \N 3737 +25616 2025-07-13 21:25:35.572067+00 2025-07-13 21:25:35.572079+00 f t 50000.00 1 50000.00 3535 84 \N 3738 +24058 2025-07-08 20:49:58.684309+00 2025-07-08 20:49:58.684317+00 f t 42000.00 1 42000.00 3264 82 \N 3506 +24844 2025-07-10 23:43:54.410204+00 2025-07-10 23:43:54.410216+00 f t 42000.00 1 42000.00 3389 82 \N 3610 +24845 2025-07-10 23:43:54.416073+00 2025-07-10 23:43:54.416085+00 f t 22500.00 1 22500.00 3389 88 \N 3610 +24101 2025-07-08 22:22:57.310107+00 2025-07-08 22:22:57.310119+00 f t 50000.00 1 50000.00 3270 84 \N 3512 +24111 2025-07-08 22:43:21.809341+00 2025-07-08 22:43:21.809348+00 f t 62000.00 1 62000.00 3276 106 \N 3517 +24142 2025-07-08 23:29:13.137845+00 2025-07-08 23:29:13.137853+00 f t 42000.00 1 42000.00 3281 82 \N 3521 +24143 2025-07-08 23:29:13.142285+00 2025-07-08 23:29:13.142292+00 f t 7500.00 1 7500.00 3281 85 \N 3521 +24146 2025-07-08 23:51:49.990672+00 2025-07-08 23:51:49.990682+00 f t 42000.00 1 42000.00 3282 82 \N 3522 +24147 2025-07-08 23:51:49.99562+00 2025-07-08 23:51:49.995628+00 f t 22500.00 1 22500.00 3282 163 \N 3522 +23617 2025-07-08 01:31:06.106878+00 2025-07-08 01:31:06.106889+00 f t 42000.00 1 42000.00 3217 82 \N 3463 +23618 2025-07-08 01:31:06.111935+00 2025-07-08 01:31:06.111943+00 f t 22500.00 1 22500.00 3217 163 \N 3463 +24197 2025-07-09 00:38:00.716779+00 2025-07-09 00:38:00.71679+00 f t 50000.00 1 50000.00 3285 84 \N 3524 +23657 2025-07-08 01:33:35.666621+00 2025-07-08 01:33:35.66663+00 f t 42000.00 1 42000.00 3219 82 \N 3464 +23658 2025-07-08 01:33:35.672309+00 2025-07-08 01:33:35.67232+00 f t 69000.00 1 69000.00 3219 142 \N 3464 +24992 2025-07-11 04:12:14.533568+00 2025-07-11 04:12:14.533577+00 f t 50000.00 1 50000.00 3397 84 \N 3618 +23666 2025-07-08 01:56:59.757293+00 2025-07-08 01:56:59.757303+00 f t 27500.00 1 27500.00 3221 83 \N 3466 +24255 2025-07-09 03:30:35.222495+00 2025-07-09 03:30:35.222504+00 f t 85000.00 1 85000.00 3287 99 \N 3526 +24267 2025-07-09 04:30:01.676955+00 2025-07-09 04:30:01.676969+00 f t 42000.00 1 42000.00 3288 82 \N 3527 +24289 2025-07-09 12:15:15.848535+00 2025-07-09 12:15:15.848542+00 f t 42000.00 1 42000.00 3293 82 \N 3532 +24291 2025-07-09 13:32:19.092342+00 2025-07-09 13:32:19.092351+00 f t 50000.00 1 50000.00 3297 84 \N 3533 +23689 2025-07-08 02:00:31.453027+00 2025-07-08 02:00:31.45304+00 f t 42000.00 1 42000.00 3222 82 \N 3467 +23692 2025-07-08 02:05:13.825303+00 2025-07-08 02:05:13.825312+00 f t 42000.00 1 42000.00 3223 82 \N 3468 +23693 2025-07-08 02:05:13.830532+00 2025-07-08 02:05:13.83054+00 f t 7500.00 1 7500.00 3223 85 \N 3468 +25017 2025-07-11 04:20:22.683245+00 2025-07-11 04:20:22.683258+00 f t 42000.00 1 42000.00 3398 82 \N 3619 +23697 2025-07-08 02:25:46.043185+00 2025-07-08 02:25:46.043192+00 f t 42000.00 1 42000.00 3224 82 \N 3469 +25021 2025-07-11 07:47:43.881834+00 2025-07-11 07:47:43.88185+00 f t 27500.00 1 27500.00 3400 83 \N 3621 +25023 2025-07-11 07:48:44.862901+00 2025-07-11 07:48:44.862909+00 f t 50000.00 1 50000.00 3401 84 \N 3622 +23705 2025-07-08 10:49:07.116647+00 2025-07-08 10:49:07.116656+00 f t 50000.00 1 50000.00 3228 84 \N 3471 +25026 2025-07-11 07:53:43.179702+00 2025-07-11 07:53:43.17971+00 f t 42000.00 1 42000.00 3402 82 \N 3623 +25027 2025-07-11 07:53:43.184695+00 2025-07-11 07:53:43.184701+00 f t 75000.00 1 75000.00 3402 143 \N 3623 +24362 2025-07-09 15:55:51.957747+00 2025-07-09 15:55:51.957758+00 f t 42000.00 1 42000.00 3300 82 \N 3534 +24363 2025-07-09 15:55:51.962744+00 2025-07-09 15:55:51.962752+00 f t 69000.00 1 69000.00 3300 142 \N 3534 +24376 2025-07-09 15:59:59.351114+00 2025-07-09 15:59:59.351125+00 f t 42000.00 1 42000.00 3301 82 \N 3535 +24377 2025-07-09 15:59:59.356465+00 2025-07-09 15:59:59.356474+00 f t 69000.00 1 69000.00 3301 142 \N 3535 +23755 2025-07-08 10:54:53.038561+00 2025-07-08 10:54:53.038568+00 f t 42000.00 1 42000.00 3227 82 \N 3470 +24397 2025-07-09 16:26:37.013126+00 2025-07-09 16:26:37.013135+00 f t 42000.00 1 42000.00 3302 82 \N 3536 +23760 2025-07-08 11:01:52.211396+00 2025-07-08 11:01:52.211408+00 f t 62000.00 1 62000.00 3229 106 \N 3472 +24399 2025-07-09 16:57:48.788612+00 2025-07-09 16:57:48.788621+00 f t 62000.00 1 62000.00 3303 106 \N 3537 +23765 2025-07-08 11:06:03.429093+00 2025-07-08 11:06:03.429101+00 f t 42000.00 1 42000.00 3230 82 \N 3473 +23766 2025-07-08 11:06:03.434885+00 2025-07-08 11:06:03.434894+00 f t 7700.00 1 7700.00 3230 93 \N 3473 +23767 2025-07-08 11:06:03.439803+00 2025-07-08 11:06:03.439811+00 f t 41000.00 1 41000.00 3230 110 \N 3473 +23768 2025-07-08 11:06:03.445024+00 2025-07-08 11:06:03.445037+00 f t 12000.00 1 12000.00 3230 146 \N 3473 +23770 2025-07-08 12:38:17.070129+00 2025-07-08 12:38:17.070139+00 f t 42000.00 1 42000.00 3233 82 \N 3474 +24409 2025-07-09 17:50:58.07187+00 2025-07-09 17:50:58.071881+00 f t 50000.00 1 50000.00 3305 84 \N 3538 +24413 2025-07-09 18:00:21.335876+00 2025-07-09 18:00:21.335888+00 f t 50000.00 1 50000.00 3306 84 \N 3539 +24416 2025-07-09 19:04:55.024629+00 2025-07-09 19:04:55.024641+00 f t 70000.00 1 70000.00 3308 108 \N 3540 +23785 2025-07-08 13:37:17.04114+00 2025-07-08 13:37:17.041149+00 f t 130000.00 1 130000.00 3237 164 \N 3478 +24423 2025-07-09 19:08:49.533395+00 2025-07-09 19:08:49.533406+00 f t 42000.00 1 42000.00 3309 82 \N 3542 +24424 2025-07-09 19:08:49.538745+00 2025-07-09 19:08:49.538755+00 f t 22500.00 1 22500.00 3309 86 \N 3542 +23793 2025-07-08 13:47:11.308708+00 2025-07-08 13:47:11.308721+00 f t 42000.00 1 42000.00 3239 82 \N 3479 +23794 2025-07-08 13:47:11.314536+00 2025-07-08 13:47:11.314546+00 f t 42000.00 1 42000.00 3239 82 \N 3480 +27056 2025-07-16 08:46:25.857768+00 2025-07-16 08:46:25.857781+00 f t 42000.00 1 42000.00 3699 82 \N 3868 +25479 2025-07-13 02:03:49.272795+00 2025-07-13 02:03:49.272804+00 f t 42000.00 1 42000.00 3500 82 \N 3701 +23799 2025-07-08 14:06:03.23408+00 2025-07-08 14:06:03.234092+00 f t 42000.00 1 42000.00 3240 82 \N 3481 +23800 2025-07-08 14:06:03.240513+00 2025-07-08 14:06:03.240525+00 f t 7700.00 1 7700.00 3240 93 \N 3481 +23801 2025-07-08 14:06:03.247068+00 2025-07-08 14:06:03.247081+00 f t 21000.00 1 21000.00 3240 109 \N 3481 +23802 2025-07-08 14:06:03.253795+00 2025-07-08 14:06:03.253808+00 f t 12000.00 1 12000.00 3240 146 \N 3481 +25480 2025-07-13 02:03:49.277534+00 2025-07-13 02:03:49.277544+00 f t 22500.00 1 22500.00 3500 88 \N 3701 +23807 2025-07-08 14:07:53.342237+00 2025-07-08 14:07:53.34225+00 f t 130000.00 1 130000.00 3241 164 \N 3482 +23958 2025-07-08 18:00:04.918157+00 2025-07-08 18:00:04.918171+00 f t 42000.00 1 42000.00 3253 82 \N 3496 +23959 2025-07-08 18:00:04.937933+00 2025-07-08 18:00:04.937947+00 f t 62000.00 1 62000.00 3253 106 \N 3496 +23960 2025-07-08 18:00:04.960584+00 2025-07-08 18:00:04.960598+00 f t 7700.00 1 7700.00 3253 93 \N 3496 +23961 2025-07-08 18:00:04.96933+00 2025-07-08 18:00:04.969345+00 f t 45500.00 1 45500.00 3253 114 \N 3496 +23962 2025-07-08 18:00:04.998182+00 2025-07-08 18:00:04.998199+00 f t 33000.00 1 33000.00 3253 111 \N 3496 +23963 2025-07-08 18:00:05.026558+00 2025-07-08 18:00:05.026573+00 f t 12000.00 1 12000.00 3253 146 \N 3496 +23966 2025-07-08 18:04:28.481196+00 2025-07-08 18:04:28.481206+00 f t 42000.00 1 42000.00 3256 82 \N 3497 +23967 2025-07-08 18:04:28.487326+00 2025-07-08 18:04:28.487334+00 f t 22500.00 1 22500.00 3256 86 \N 3497 +23831 2025-07-08 14:09:16.321946+00 2025-07-08 14:09:16.321954+00 f t 42000.00 1 42000.00 3242 82 \N 3483 +23832 2025-07-08 14:09:16.326876+00 2025-07-08 14:09:16.326883+00 f t 22500.00 1 22500.00 3242 86 \N 3483 +23833 2025-07-08 14:09:16.331371+00 2025-07-08 14:09:16.331379+00 f t 22500.00 1 22500.00 3242 87 \N 3483 +23835 2025-07-08 14:58:25.284503+00 2025-07-08 14:58:25.284512+00 f t 95000.00 1 95000.00 3243 103 \N 3485 +23837 2025-07-08 15:08:39.188351+00 2025-07-08 15:08:39.18836+00 f t 42000.00 1 42000.00 3244 82 \N 3486 +23840 2025-07-08 15:23:19.624923+00 2025-07-08 15:23:19.624932+00 f t 50000.00 1 50000.00 3246 84 \N 3488 +24002 2025-07-08 19:08:46.507792+00 2025-07-08 19:08:46.507802+00 f t 42000.00 1 42000.00 3258 82 \N 3499 +24003 2025-07-08 19:08:46.512018+00 2025-07-08 19:08:46.512025+00 f t 7700.00 1 7700.00 3258 93 \N 3499 +24004 2025-07-08 19:08:46.515557+00 2025-07-08 19:08:46.515563+00 f t 21000.00 1 21000.00 3258 109 \N 3499 +24005 2025-07-08 19:08:46.519126+00 2025-07-08 19:08:46.519156+00 f t 12000.00 1 12000.00 3258 146 \N 3499 +23847 2025-07-08 15:36:35.367886+00 2025-07-08 15:36:35.367895+00 f t 42000.00 1 42000.00 3247 82 \N 3489 +23848 2025-07-08 15:36:35.373137+00 2025-07-08 15:36:35.373145+00 f t 7500.00 1 7500.00 3247 85 \N 3489 +24012 2025-07-08 20:23:48.698545+00 2025-07-08 20:23:48.698553+00 f t 42000.00 1 42000.00 3260 82 \N 3502 +24013 2025-07-08 20:23:48.703037+00 2025-07-08 20:23:48.703045+00 f t 87500.00 1 87500.00 3260 141 \N 3502 +23853 2025-07-08 15:40:44.359388+00 2025-07-08 15:40:44.359397+00 f t 42000.00 1 42000.00 3249 82 \N 3491 +23854 2025-07-08 15:40:44.365312+00 2025-07-08 15:40:44.365324+00 f t 7500.00 1 7500.00 3249 85 \N 3491 +23856 2025-07-08 16:28:25.446172+00 2025-07-08 16:28:25.446181+00 f t 85000.00 1 85000.00 3251 99 \N 3494 +24022 2025-07-08 20:31:11.489023+00 2025-07-08 20:31:11.489031+00 f t 42000.00 1 42000.00 3261 82 \N 3501 +24023 2025-07-08 20:31:11.493533+00 2025-07-08 20:31:11.493545+00 f t 7500.00 1 7500.00 3261 85 \N 3501 +24044 2025-07-08 20:38:59.22793+00 2025-07-08 20:38:59.227939+00 f t 42000.00 1 42000.00 3262 82 \N 3503 +24045 2025-07-08 20:38:59.233526+00 2025-07-08 20:38:59.233536+00 f t 12000.00 1 12000.00 3262 116 \N 3503 +24046 2025-07-08 20:38:59.238041+00 2025-07-08 20:38:59.238051+00 f t 7700.00 1 7700.00 3262 93 \N 3503 +24047 2025-07-08 20:38:59.24219+00 2025-07-08 20:38:59.242197+00 f t 12000.00 1 12000.00 3262 146 \N 3503 +24048 2025-07-08 20:38:59.246274+00 2025-07-08 20:38:59.246282+00 f t 42000.00 1 42000.00 3262 82 \N 3504 +24049 2025-07-08 20:38:59.250712+00 2025-07-08 20:38:59.250721+00 f t 7500.00 1 7500.00 3262 85 \N 3504 +24051 2025-07-08 20:44:03.542891+00 2025-07-08 20:44:03.542901+00 f t 70000.00 1 70000.00 3263 108 \N 3505 +24080 2025-07-08 21:38:44.56519+00 2025-07-08 21:38:44.565201+00 f t 42000.00 1 42000.00 3266 82 \N 3508 +24082 2025-07-08 21:38:55.153115+00 2025-07-08 21:38:55.153124+00 f t 42000.00 1 42000.00 3265 82 \N 3507 +24083 2025-07-08 21:38:55.157988+00 2025-07-08 21:38:55.157996+00 f t 22500.00 1 22500.00 3265 163 \N 3507 +24084 2025-07-08 21:38:55.162256+00 2025-07-08 21:38:55.162265+00 f t 42000.00 1 42000.00 3265 82 \N 3509 +24096 2025-07-08 21:58:11.532614+00 2025-07-08 21:58:11.532626+00 f t 42000.00 1 42000.00 3267 82 \N 3510 +24098 2025-07-08 22:12:49.022965+00 2025-07-08 22:12:49.022976+00 f t 70000.00 1 70000.00 3268 108 \N 3511 +24104 2025-07-08 22:25:08.517671+00 2025-07-08 22:25:08.517682+00 f t 62000.00 1 62000.00 3271 106 \N 3513 +24106 2025-07-08 22:29:47.545171+00 2025-07-08 22:29:47.545182+00 f t 62000.00 1 62000.00 3275 106 \N 3516 +24116 2025-07-08 23:08:58.54184+00 2025-07-08 23:08:58.541853+00 f t 27500.00 1 27500.00 3277 83 \N 3518 +24122 2025-07-08 23:17:16.950562+00 2025-07-08 23:17:16.950573+00 f t 70000.00 1 70000.00 3278 108 \N 3519 +24124 2025-07-08 23:26:58.701886+00 2025-07-08 23:26:58.701895+00 f t 50000.00 1 50000.00 3279 84 \N 3520 +24188 2025-07-09 00:13:07.198316+00 2025-07-09 00:13:07.198324+00 f t 42000.00 1 42000.00 3284 82 \N 3523 +24189 2025-07-09 00:13:07.203588+00 2025-07-09 00:13:07.203596+00 f t 33000.00 1 33000.00 3284 139 \N 3523 +24190 2025-07-09 00:13:07.208346+00 2025-07-09 00:13:07.208353+00 f t 13000.00 1 13000.00 3284 89 \N 3523 +24191 2025-07-09 00:13:07.21243+00 2025-07-09 00:13:07.212437+00 f t 7500.00 1 7500.00 3284 85 \N 3523 +24192 2025-07-09 00:13:07.216895+00 2025-07-09 00:13:07.216904+00 f t 22500.00 1 22500.00 3284 163 \N 3523 +24247 2025-07-09 02:14:34.491429+00 2025-07-09 02:14:34.491438+00 f t 42000.00 1 42000.00 3286 82 \N 3525 +24248 2025-07-09 02:14:34.495656+00 2025-07-09 02:14:34.495664+00 f t 7500.00 1 7500.00 3286 85 \N 3525 +24249 2025-07-09 02:14:34.49933+00 2025-07-09 02:14:34.499337+00 f t 22500.00 1 22500.00 3286 86 \N 3525 +24250 2025-07-09 02:14:34.502957+00 2025-07-09 02:14:34.502963+00 f t 22500.00 1 22500.00 3286 163 \N 3525 +24270 2025-07-09 05:28:35.78013+00 2025-07-09 05:28:35.780138+00 f t 42000.00 1 42000.00 3289 82 \N 3528 +24272 2025-07-09 06:02:11.895639+00 2025-07-09 06:02:11.895651+00 f t 42000.00 1 42000.00 3290 82 \N 3529 +24277 2025-07-09 11:06:16.557976+00 2025-07-09 11:06:16.557984+00 f t 42000.00 1 42000.00 3291 82 \N 3530 +24278 2025-07-09 11:06:16.562736+00 2025-07-09 11:06:16.562745+00 f t 7700.00 1 7700.00 3291 93 \N 3530 +24279 2025-07-09 11:06:16.566713+00 2025-07-09 11:06:16.56672+00 f t 33000.00 1 33000.00 3291 111 \N 3530 +24280 2025-07-09 11:06:16.571253+00 2025-07-09 11:06:16.571262+00 f t 12000.00 1 12000.00 3291 146 \N 3530 +24284 2025-07-09 11:58:19.868948+00 2025-07-09 11:58:19.868958+00 f t 42000.00 1 42000.00 3292 82 \N 3531 +73099 2025-10-21 21:41:13.452508+00 2025-10-21 21:41:13.452517+00 f t 0.00 1 0.00 10237 97 \N 9349 +24427 2025-07-09 19:12:15.315527+00 2025-07-09 19:12:15.315535+00 f t 42000.00 1 42000.00 3310 82 \N 3543 +24428 2025-07-09 19:12:15.320439+00 2025-07-09 19:12:15.320446+00 f t 22500.00 1 22500.00 3310 88 \N 3543 +24430 2025-07-09 19:17:37.083666+00 2025-07-09 19:17:37.083674+00 f t 95000.00 1 95000.00 3311 103 \N 3544 +24438 2025-07-09 20:01:50.659485+00 2025-07-09 20:01:50.659496+00 f t 50000.00 1 50000.00 3313 84 \N 3545 +24459 2025-07-09 20:55:37.007806+00 2025-07-09 20:55:37.007816+00 f t 42000.00 1 42000.00 3314 82 \N 3546 +24460 2025-07-09 20:55:37.013582+00 2025-07-09 20:55:37.013591+00 f t 42000.00 1 42000.00 3314 82 \N 3547 +24793 2025-07-10 21:17:36.097812+00 2025-07-10 21:17:36.097821+00 f t 42000.00 1 42000.00 3377 82 \N 732 +24794 2025-07-10 21:17:36.102653+00 2025-07-10 21:17:36.102661+00 f t 22500.00 1 22500.00 3377 163 \N 732 +24795 2025-07-10 21:17:36.107891+00 2025-07-10 21:17:36.107904+00 f t 42000.00 1 42000.00 3377 82 \N 733 +24796 2025-07-10 21:17:36.112872+00 2025-07-10 21:17:36.11288+00 f t 22500.00 1 22500.00 3377 163 \N 733 +24798 2025-07-10 21:17:45.262409+00 2025-07-10 21:17:45.262417+00 f t 42000.00 1 42000.00 3382 82 \N 3604 +24802 2025-07-10 21:36:24.571197+00 2025-07-10 21:36:24.571208+00 f t 42000.00 1 42000.00 3384 82 \N 3605 +24475 2025-07-09 21:52:43.168548+00 2025-07-09 21:52:43.168558+00 f t 62000.00 1 62000.00 3316 106 \N 3551 +24824 2025-07-10 22:09:47.091938+00 2025-07-10 22:09:47.091947+00 f t 50000.00 1 50000.00 3386 84 \N 3607 +24497 2025-07-09 22:16:58.829257+00 2025-07-09 22:16:58.829268+00 f t 50000.00 1 50000.00 3317 84 \N 3554 +24503 2025-07-09 22:26:53.428905+00 2025-07-09 22:26:53.428917+00 f t 50000.00 1 50000.00 3319 84 \N 3556 +24504 2025-07-09 22:26:53.435637+00 2025-07-09 22:26:53.435645+00 f t 42000.00 1 42000.00 3319 82 \N 3556 +24858 2025-07-11 01:09:08.773839+00 2025-07-11 01:09:08.773848+00 f t 70000.00 1 70000.00 3390 108 \N 3612 +24514 2025-07-09 22:59:52.567292+00 2025-07-09 22:59:52.567304+00 f t 50000.00 1 50000.00 3321 84 \N 3558 +24516 2025-07-09 23:03:13.898037+00 2025-07-09 23:03:13.898045+00 f t 42000.00 1 42000.00 3322 82 \N 3559 +24518 2025-07-09 23:21:37.760323+00 2025-07-09 23:21:37.760332+00 f t 42000.00 1 42000.00 3323 82 \N 3560 +24520 2025-07-09 23:46:09.0981+00 2025-07-09 23:46:09.098109+00 f t 50000.00 1 50000.00 3324 84 \N 3561 +24523 2025-07-10 01:53:27.048074+00 2025-07-10 01:53:27.048083+00 f t 70000.00 1 70000.00 3329 108 \N 3562 +24525 2025-07-10 02:00:58.091571+00 2025-07-10 02:00:58.09158+00 f t 42000.00 1 42000.00 3330 82 \N 3563 +24530 2025-07-10 02:11:35.038458+00 2025-07-10 02:11:35.038466+00 f t 70000.00 1 70000.00 3331 108 \N 3564 +24533 2025-07-10 02:14:37.012629+00 2025-07-10 02:14:37.012641+00 f t 56000.00 1 56000.00 3332 105 \N 3565 +24544 2025-07-10 02:16:46.566628+00 2025-07-10 02:16:46.566636+00 f t 42000.00 1 42000.00 3333 82 \N 3566 +24545 2025-07-10 02:16:46.571284+00 2025-07-10 02:16:46.571292+00 f t 7500.00 1 7500.00 3333 85 \N 3566 +24548 2025-07-10 04:25:47.379897+00 2025-07-10 04:25:47.379905+00 f t 42000.00 1 42000.00 3336 82 \N 3568 +24549 2025-07-10 04:25:47.384515+00 2025-07-10 04:25:47.384523+00 f t 22500.00 1 22500.00 3336 163 \N 3568 +24562 2025-07-10 10:15:22.064529+00 2025-07-10 10:15:22.06454+00 f t 42000.00 1 42000.00 3338 82 \N 3570 +24563 2025-07-10 10:15:22.070062+00 2025-07-10 10:15:22.070071+00 f t 87500.00 1 87500.00 3338 141 \N 3570 +24949 2025-07-11 01:32:59.604086+00 2025-07-11 01:32:59.604095+00 f t 42000.00 1 42000.00 3392 82 \N 3613 +24950 2025-07-11 01:32:59.608741+00 2025-07-11 01:32:59.608749+00 f t 7700.00 1 7700.00 3392 93 \N 3613 +24951 2025-07-11 01:32:59.613339+00 2025-07-11 01:32:59.613346+00 f t 52000.00 1 52000.00 3392 113 \N 3613 +24952 2025-07-11 01:32:59.617128+00 2025-07-11 01:32:59.617134+00 f t 12000.00 1 12000.00 3392 146 \N 3613 +24962 2025-07-11 02:11:04.538078+00 2025-07-11 02:11:04.538091+00 f t 42000.00 1 42000.00 3394 82 \N 3615 +24969 2025-07-11 02:54:05.987812+00 2025-07-11 02:54:05.987823+00 f t 42000.00 1 42000.00 3395 82 \N 3616 +24970 2025-07-11 02:54:05.994545+00 2025-07-11 02:54:05.994558+00 f t 7500.00 1 7500.00 3395 85 \N 3616 +24975 2025-07-11 03:09:00.969472+00 2025-07-11 03:09:00.969482+00 f t 42000.00 1 42000.00 3396 82 \N 3617 +24578 2025-07-10 10:22:51.338655+00 2025-07-10 10:22:51.338663+00 f t 50000.00 1 50000.00 3340 84 \N 3571 +24976 2025-07-11 03:09:00.9752+00 2025-07-11 03:09:00.975208+00 f t 7700.00 1 7700.00 3396 93 \N 3617 +24977 2025-07-11 03:09:00.981494+00 2025-07-11 03:09:00.981504+00 f t 45500.00 1 45500.00 3396 114 \N 3617 +24978 2025-07-11 03:09:00.986405+00 2025-07-11 03:09:00.986413+00 f t 12000.00 1 12000.00 3396 146 \N 3617 +24605 2025-07-10 11:01:23.723371+00 2025-07-10 11:01:23.723383+00 f t 42000.00 1 42000.00 3343 82 \N 3572 +24606 2025-07-10 11:01:23.729028+00 2025-07-10 11:01:23.729043+00 f t 87500.00 1 87500.00 3343 141 \N 3572 +24608 2025-07-10 12:07:49.941207+00 2025-07-10 12:07:49.941219+00 f t 42000.00 1 42000.00 3345 82 \N 3574 +24614 2025-07-10 12:40:16.591557+00 2025-07-10 12:40:16.591568+00 f t 95000.00 1 95000.00 3346 103 \N 3575 +24617 2025-07-10 12:40:48.118432+00 2025-07-10 12:40:48.118441+00 f t 50000.00 1 50000.00 3347 84 \N 3576 +24619 2025-07-10 13:01:53.444969+00 2025-07-10 13:01:53.44498+00 f t 130000.00 1 130000.00 3348 164 \N 3577 +24621 2025-07-10 13:03:10.438548+00 2025-07-10 13:03:10.438556+00 f t 95000.00 1 95000.00 3349 103 \N 3578 +24623 2025-07-10 13:12:45.412192+00 2025-07-10 13:12:45.412201+00 f t 62000.00 1 62000.00 3350 106 \N 3579 +24638 2025-07-10 13:22:43.044525+00 2025-07-10 13:22:43.044536+00 f t 50000.00 1 50000.00 3351 84 \N 3580 +24640 2025-07-10 13:27:05.044396+00 2025-07-10 13:27:05.044408+00 f t 62000.00 1 62000.00 3352 106 \N 3581 +24646 2025-07-10 13:31:03.662308+00 2025-07-10 13:31:03.662386+00 f t 42000.00 1 42000.00 3353 82 \N 3582 +24648 2025-07-10 14:16:04.416396+00 2025-07-10 14:16:04.416409+00 f t 42000.00 1 42000.00 3355 82 \N 3586 +24650 2025-07-10 15:13:47.489954+00 2025-07-10 15:13:47.489962+00 f t 61000.00 1 61000.00 3359 100 \N 3588 +24659 2025-07-10 15:25:46.632028+00 2025-07-10 15:25:46.632037+00 f t 42000.00 1 42000.00 3361 82 \N 3589 +24662 2025-07-10 16:14:41.683758+00 2025-07-10 16:14:41.683766+00 f t 42000.00 1 42000.00 3366 82 \N 3591 +24663 2025-07-10 16:14:41.688168+00 2025-07-10 16:14:41.68818+00 f t 69000.00 1 69000.00 3366 142 \N 3591 +24676 2025-07-10 17:12:46.724892+00 2025-07-10 17:12:46.724904+00 f t 42000.00 1 42000.00 3370 82 \N 3593 +24677 2025-07-10 17:12:46.730716+00 2025-07-10 17:12:46.730729+00 f t 7500.00 1 7500.00 3370 85 \N 3593 +24678 2025-07-10 17:12:46.735528+00 2025-07-10 17:12:46.735537+00 f t 22500.00 1 22500.00 3370 86 \N 3593 +24681 2025-07-10 17:54:45.986669+00 2025-07-10 17:54:45.986677+00 f t 85000.00 1 85000.00 3371 99 \N 3594 +24684 2025-07-10 18:06:23.144526+00 2025-07-10 18:06:23.144535+00 f t 42000.00 1 42000.00 3372 82 \N 3595 +24685 2025-07-10 18:06:23.150598+00 2025-07-10 18:06:23.150606+00 f t 69000.00 1 69000.00 3372 142 \N 3595 +24698 2025-07-10 18:10:04.960098+00 2025-07-10 18:10:04.960176+00 f t 70000.00 1 70000.00 3373 108 \N 3596 +25462 2025-07-13 00:26:05.163814+00 2025-07-13 00:26:05.163825+00 f t 50000.00 1 50000.00 3495 84 \N 3699 +25529 2025-07-13 13:03:06.703267+00 2025-07-13 13:03:06.703282+00 f t 130000.00 1 130000.00 3513 164 \N 3715 +25535 2025-07-13 13:32:53.193804+00 2025-07-13 13:32:53.193813+00 f t 50000.00 1 50000.00 3515 84 \N 3717 +25565 2025-07-13 15:03:13.847121+00 2025-07-13 15:03:13.847145+00 f t 42000.00 1 42000.00 3521 82 \N 3726 +25582 2025-07-13 16:31:15.041883+00 2025-07-13 16:31:15.041893+00 f t 42000.00 1 42000.00 3523 82 \N 3728 +25583 2025-07-13 16:31:15.050493+00 2025-07-13 16:31:15.050506+00 f t 42000.00 1 42000.00 3523 82 \N 3729 +25584 2025-07-13 16:31:15.056376+00 2025-07-13 16:31:15.056401+00 f t 7700.00 1 7700.00 3523 93 \N 3729 +25585 2025-07-13 16:31:15.062282+00 2025-07-13 16:31:15.062293+00 f t 21000.00 1 21000.00 3523 109 \N 3729 +25586 2025-07-13 16:31:15.066786+00 2025-07-13 16:31:15.066795+00 f t 12000.00 1 12000.00 3523 146 \N 3729 +25681 2025-07-13 21:40:23.688149+00 2025-07-13 21:40:23.688158+00 f t 42000.00 1 42000.00 3537 82 \N 3740 +25172 2025-07-11 11:34:07.010874+00 2025-07-11 11:34:07.010882+00 f t 42000.00 1 42000.00 3406 82 \N 3626 +25173 2025-07-11 11:34:07.016033+00 2025-07-11 11:34:07.016041+00 f t 33000.00 1 33000.00 3406 140 \N 3626 +25174 2025-07-11 11:34:07.02036+00 2025-07-11 11:34:07.020371+00 f t 13000.00 1 13000.00 3406 89 \N 3626 +25175 2025-07-11 11:34:07.024655+00 2025-07-11 11:34:07.024663+00 f t 7500.00 1 7500.00 3406 85 \N 3626 +25176 2025-07-11 11:34:07.02928+00 2025-07-11 11:34:07.029288+00 f t 42000.00 1 42000.00 3406 82 \N 3628 +25177 2025-07-11 11:34:07.033286+00 2025-07-11 11:34:07.033294+00 f t 7700.00 1 7700.00 3406 93 \N 3628 +25178 2025-07-11 11:34:07.037481+00 2025-07-11 11:34:07.037488+00 f t 41000.00 1 41000.00 3406 110 \N 3628 +25179 2025-07-11 11:34:07.041366+00 2025-07-11 11:34:07.041373+00 f t 12000.00 1 12000.00 3406 146 \N 3628 +25682 2025-07-13 21:40:23.692498+00 2025-07-13 21:40:23.692506+00 f t 31500.00 1 31500.00 3537 127 \N 3740 +25683 2025-07-13 21:40:23.696453+00 2025-07-13 21:40:23.696461+00 f t 13000.00 1 13000.00 3537 89 \N 3740 +25183 2025-07-11 12:15:55.815003+00 2025-07-11 12:15:55.815013+00 f t 62000.00 1 62000.00 3410 106 \N 3629 +25687 2025-07-13 21:41:02.462133+00 2025-07-13 21:41:02.462145+00 f t 50000.00 1 50000.00 3538 84 \N 3742 +25689 2025-07-13 21:58:02.225198+00 2025-07-13 21:58:02.225211+00 f t 27500.00 1 27500.00 3539 83 \N 3743 +25696 2025-07-13 22:02:26.90853+00 2025-07-13 22:02:26.908539+00 f t 42000.00 1 42000.00 3540 82 \N 3744 +25697 2025-07-13 22:02:26.912986+00 2025-07-13 22:02:26.912995+00 f t 22500.00 1 22500.00 3540 88 \N 3744 +25190 2025-07-11 13:44:09.537699+00 2025-07-11 13:44:09.537708+00 f t 42000.00 1 42000.00 3412 82 \N 3630 +25191 2025-07-11 13:44:09.542227+00 2025-07-11 13:44:09.542234+00 f t 22500.00 1 22500.00 3412 163 \N 3630 +25193 2025-07-11 14:10:40.829744+00 2025-07-11 14:10:40.829762+00 f t 42000.00 1 42000.00 3413 82 \N 3631 +25195 2025-07-11 15:56:46.015393+00 2025-07-11 15:56:46.015401+00 f t 62000.00 1 62000.00 3419 106 \N 3636 +25211 2025-07-11 16:17:18.882971+00 2025-07-11 16:17:18.882983+00 f t 42000.00 1 42000.00 3420 82 \N 3637 +25212 2025-07-11 16:17:18.889269+00 2025-07-11 16:17:18.889281+00 f t 22500.00 1 22500.00 3420 163 \N 3637 +25214 2025-07-11 16:20:18.090956+00 2025-07-11 16:20:18.090966+00 f t 70000.00 1 70000.00 3421 97 \N 3638 +25222 2025-07-11 18:13:24.059333+00 2025-07-11 18:13:24.059342+00 f t 42000.00 1 42000.00 3424 82 \N 3640 +25223 2025-07-11 18:13:24.064174+00 2025-07-11 18:13:24.064183+00 f t 7500.00 1 7500.00 3424 85 \N 3640 +25227 2025-07-11 20:48:02.955278+00 2025-07-11 20:48:02.955288+00 f t 85000.00 1 85000.00 3431 99 \N 3642 +25763 2025-07-13 23:02:16.303466+00 2025-07-13 23:02:16.303478+00 f t 62000.00 1 62000.00 3544 106 \N 3748 +25769 2025-07-13 23:09:30.439354+00 2025-07-13 23:09:30.439362+00 f t 42000.00 1 42000.00 3546 82 \N 3750 +25237 2025-07-11 22:16:38.85111+00 2025-07-11 22:16:38.851149+00 f t 42000.00 1 42000.00 3434 82 \N 3645 +25238 2025-07-11 22:16:38.85613+00 2025-07-11 22:16:38.856141+00 f t 42000.00 1 42000.00 3434 82 \N 3646 +25248 2025-07-11 22:40:07.014632+00 2025-07-11 22:40:07.014647+00 f t 42000.00 1 42000.00 3435 82 \N 3647 +25249 2025-07-11 22:40:07.024789+00 2025-07-11 22:40:07.024804+00 f t 32500.00 1 32500.00 3435 117 \N 3647 +25250 2025-07-11 22:40:07.034836+00 2025-07-11 22:40:07.034851+00 f t 13000.00 1 13000.00 3435 89 \N 3647 +25808 2025-07-14 01:20:01.121055+00 2025-07-14 01:20:01.121071+00 f t 42000.00 1 42000.00 3553 82 \N 3755 +25809 2025-07-14 01:20:01.128293+00 2025-07-14 01:20:01.128306+00 f t 7700.00 1 7700.00 3553 93 \N 3755 +25810 2025-07-14 01:20:01.13487+00 2025-07-14 01:20:01.134883+00 f t 45500.00 1 45500.00 3553 114 \N 3755 +25811 2025-07-14 01:20:01.141081+00 2025-07-14 01:20:01.141095+00 f t 12000.00 1 12000.00 3553 146 \N 3755 +25261 2025-07-11 22:51:02.437944+00 2025-07-11 22:51:02.437957+00 f t 62000.00 1 62000.00 3437 106 \N 3649 +25262 2025-07-11 22:51:15.550669+00 2025-07-11 22:51:15.550682+00 f t 42000.00 1 42000.00 3436 82 \N 3648 +25812 2025-07-14 01:20:01.147476+00 2025-07-14 01:20:01.147489+00 f t 22500.00 1 22500.00 3553 88 \N 3755 +25264 2025-07-11 23:04:11.602386+00 2025-07-11 23:04:11.602395+00 f t 42000.00 1 42000.00 3438 82 \N 3650 +25285 2025-07-12 00:56:12.558716+00 2025-07-12 00:56:12.558725+00 f t 50000.00 1 50000.00 3442 84 \N 3655 +25287 2025-07-12 01:00:42.020489+00 2025-07-12 01:00:42.020503+00 f t 50000.00 1 50000.00 3443 84 \N 3656 +25291 2025-07-12 03:03:53.683623+00 2025-07-12 03:03:53.683632+00 f t 42000.00 1 42000.00 3445 82 \N 3657 +25292 2025-07-12 03:03:53.68877+00 2025-07-12 03:03:53.688779+00 f t 24000.00 1 24000.00 3445 131 \N 3657 +25293 2025-07-12 03:03:53.693007+00 2025-07-12 03:03:53.693015+00 f t 13000.00 1 13000.00 3445 89 \N 3657 +25317 2025-07-12 07:28:00.606283+00 2025-07-12 07:28:00.606294+00 f t 42000.00 1 42000.00 3450 82 \N 3659 +25323 2025-07-12 10:33:58.680025+00 2025-07-12 10:33:58.680034+00 f t 50000.00 1 50000.00 3456 84 \N 3664 +25325 2025-07-12 13:58:53.167783+00 2025-07-12 13:58:53.167795+00 f t 70000.00 1 70000.00 3463 108 \N 3670 +25946 2025-07-14 03:25:52.173574+00 2025-07-14 03:25:52.173583+00 f t 42000.00 1 42000.00 3560 82 \N 3760 +25947 2025-07-14 03:25:52.178414+00 2025-07-14 03:25:52.178421+00 f t 7500.00 1 7500.00 3560 85 \N 3760 +25948 2025-07-14 03:25:52.182612+00 2025-07-14 03:25:52.182619+00 f t 42000.00 1 42000.00 3560 82 \N 3761 +25949 2025-07-14 03:25:52.186309+00 2025-07-14 03:25:52.186317+00 f t 7500.00 1 7500.00 3560 85 \N 3761 +25950 2025-07-14 03:25:52.190197+00 2025-07-14 03:25:52.190205+00 f t 42000.00 1 42000.00 3560 82 \N 3762 +25951 2025-07-14 03:25:52.193884+00 2025-07-14 03:25:52.193891+00 f t 7500.00 1 7500.00 3560 85 \N 3762 +25970 2025-07-14 03:27:32.171032+00 2025-07-14 03:27:32.171041+00 f t 42000.00 1 42000.00 3561 82 \N 3763 +25971 2025-07-14 03:27:32.176797+00 2025-07-14 03:27:32.176805+00 f t 7500.00 1 7500.00 3561 85 \N 3763 +25972 2025-07-14 03:27:32.181655+00 2025-07-14 03:27:32.181669+00 f t 42000.00 1 42000.00 3561 82 \N 3764 +25973 2025-07-14 03:27:32.187169+00 2025-07-14 03:27:32.187178+00 f t 7500.00 1 7500.00 3561 85 \N 3764 +27057 2025-07-16 08:46:25.864577+00 2025-07-16 08:46:25.864586+00 f t 7500.00 1 7500.00 3699 85 \N 3868 +25482 2025-07-13 02:22:01.143841+00 2025-07-13 02:22:01.143854+00 f t 95000.00 1 95000.00 3503 103 \N 3706 +26275 2025-07-15 01:13:58.725223+00 2025-07-15 01:13:58.725236+00 f t 95000.00 1 95000.00 3615 103 \N 3803 +25389 2025-07-12 14:24:13.281983+00 2025-07-12 14:24:13.281995+00 f t 42000.00 1 42000.00 3464 82 \N 3560 +25390 2025-07-12 14:24:13.287258+00 2025-07-12 14:24:13.287269+00 f t 62000.00 1 62000.00 3464 106 \N 3560 +25391 2025-07-12 14:24:13.294015+00 2025-07-12 14:24:13.294024+00 f t 7700.00 1 7700.00 3464 93 \N 3560 +25392 2025-07-12 14:24:13.298027+00 2025-07-12 14:24:13.298035+00 f t 33000.00 1 33000.00 3464 111 \N 3560 +25393 2025-07-12 14:24:13.301693+00 2025-07-12 14:24:13.3017+00 f t 12000.00 1 12000.00 3464 146 \N 3560 +26276 2025-07-15 01:13:58.731004+00 2025-07-15 01:13:58.731015+00 f t 95000.00 1 95000.00 3615 103 \N 3804 +25497 2025-07-13 09:36:42.460052+00 2025-07-13 09:36:42.460065+00 f t 50000.00 1 50000.00 3508 84 \N 3709 +25521 2025-07-13 11:42:10.53278+00 2025-07-13 11:42:10.532792+00 f t 62000.00 1 62000.00 3509 106 \N 3710 +26299 2025-07-15 07:03:26.041267+00 2025-07-15 07:03:26.041277+00 f t 42000.00 1 42000.00 3623 82 \N 3810 +26300 2025-07-15 07:03:26.047567+00 2025-07-15 07:03:26.047576+00 f t 7500.00 1 7500.00 3623 85 \N 3810 +25533 2025-07-13 13:28:18.475084+00 2025-07-13 13:28:18.475093+00 f t 50000.00 1 50000.00 3514 84 \N 3716 +26301 2025-07-15 07:03:26.052563+00 2025-07-15 07:03:26.052576+00 f t 22500.00 1 22500.00 3623 86 \N 3810 +25408 2025-07-12 14:51:48.332357+00 2025-07-12 14:51:48.332366+00 f t 50000.00 1 50000.00 3466 84 \N 3672 +25410 2025-07-12 17:45:21.939236+00 2025-07-12 17:45:21.939249+00 f t 27500.00 1 27500.00 3470 83 \N 3680 +25412 2025-07-12 17:53:01.953099+00 2025-07-12 17:53:01.953111+00 f t 27500.00 1 27500.00 3472 83 \N 3682 +26310 2025-07-15 11:13:02.586529+00 2025-07-15 11:13:02.586543+00 f t 42000.00 1 42000.00 3628 82 \N 3812 +26311 2025-07-15 11:13:02.602345+00 2025-07-15 11:13:02.602359+00 f t 7500.00 1 7500.00 3628 85 \N 3812 +26313 2025-07-15 11:57:52.20022+00 2025-07-15 11:57:52.200229+00 f t 70000.00 1 70000.00 3630 108 \N 3813 +26316 2025-07-15 12:43:24.862219+00 2025-07-15 12:43:24.862231+00 f t 42000.00 1 42000.00 3633 82 \N 3815 +26317 2025-07-15 12:43:24.86886+00 2025-07-15 12:43:24.868872+00 f t 7500.00 1 7500.00 3633 85 \N 3815 +25423 2025-07-12 20:27:15.04563+00 2025-07-12 20:27:15.045642+00 f t 42000.00 1 42000.00 3482 82 \N 3686 +25424 2025-07-12 20:27:15.050597+00 2025-07-12 20:27:15.050606+00 f t 22500.00 1 22500.00 3482 163 \N 3686 +25593 2025-07-13 17:27:35.555562+00 2025-07-13 17:27:35.555571+00 f t 42000.00 1 42000.00 3526 82 \N 3732 +25594 2025-07-13 17:27:35.560848+00 2025-07-13 17:27:35.560859+00 f t 81500.00 1 81500.00 3526 144 \N 3732 +25600 2025-07-13 18:56:00.604974+00 2025-07-13 18:56:00.604987+00 f t 50000.00 1 50000.00 3530 84 \N 3734 +25436 2025-07-12 21:23:32.794726+00 2025-07-12 21:23:32.794739+00 f t 50000.00 1 50000.00 3486 84 \N 3691 +27174 2025-07-16 22:26:50.413723+00 2025-07-16 22:26:50.413735+00 f t 50000.00 1 50000.00 3737 84 \N 3900 +25440 2025-07-12 23:58:13.415306+00 2025-07-12 23:58:13.415319+00 f t 70000.00 1 70000.00 3489 108 \N 3692 +25620 2025-07-13 21:28:06.4749+00 2025-07-13 21:28:06.474909+00 f t 50000.00 1 50000.00 3536 84 \N 3739 +26352 2025-07-15 12:50:08.261263+00 2025-07-15 12:50:08.261273+00 f t 42000.00 1 42000.00 3634 82 \N 3816 +26353 2025-07-15 12:50:08.268912+00 2025-07-15 12:50:08.268922+00 f t 32500.00 1 32500.00 3634 117 \N 3816 +26354 2025-07-15 12:50:08.274832+00 2025-07-15 12:50:08.274845+00 f t 13000.00 1 13000.00 3634 89 \N 3816 +26355 2025-07-15 12:50:08.28107+00 2025-07-15 12:50:08.281084+00 f t 7500.00 1 7500.00 3634 85 \N 3816 +26356 2025-07-15 12:50:08.28745+00 2025-07-15 12:50:08.287459+00 f t 22500.00 1 22500.00 3634 86 \N 3816 +25447 2025-07-13 00:01:29.248805+00 2025-07-13 00:01:29.248818+00 f t 42000.00 1 42000.00 3490 82 \N 3694 +25448 2025-07-13 00:01:29.255275+00 2025-07-13 00:01:29.255285+00 f t 7500.00 1 7500.00 3490 85 \N 3694 +25450 2025-07-13 00:14:03.153481+00 2025-07-13 00:14:03.153492+00 f t 50000.00 1 50000.00 3491 84 \N 3695 +25454 2025-07-13 00:14:35.809725+00 2025-07-13 00:14:35.809734+00 f t 50000.00 1 50000.00 3492 84 \N 3696 +26387 2025-07-15 13:20:29.059452+00 2025-07-15 13:20:29.05946+00 f t 42000.00 1 42000.00 3636 82 \N 3817 +26388 2025-07-15 13:20:29.063924+00 2025-07-15 13:20:29.063931+00 f t 46900.00 1 46900.00 3636 136 \N 3817 +26389 2025-07-15 13:20:29.068006+00 2025-07-15 13:20:29.068014+00 f t 13000.00 1 13000.00 3636 89 \N 3817 +27325 2025-07-17 13:42:48.026351+00 2025-07-17 13:42:48.02636+00 f t 42000.00 1 42000.00 3770 82 \N 3918 +27326 2025-07-17 13:42:48.032765+00 2025-07-17 13:42:48.032777+00 f t 75000.00 1 75000.00 3770 143 \N 3918 +27366 2025-07-17 17:30:37.492207+00 2025-07-17 17:30:37.492216+00 f t 50000.00 1 50000.00 3785 84 \N 3934 +25752 2025-07-13 23:00:09.586681+00 2025-07-13 23:00:09.586693+00 f t 42000.00 1 42000.00 3543 82 \N 3746 +25753 2025-07-13 23:00:09.605459+00 2025-07-13 23:00:09.605474+00 f t 22500.00 1 22500.00 3543 88 \N 3746 +25754 2025-07-13 23:00:09.618823+00 2025-07-13 23:00:09.618837+00 f t 22500.00 1 22500.00 3543 163 \N 3746 +25755 2025-07-13 23:00:09.629859+00 2025-07-13 23:00:09.629874+00 f t 42000.00 1 42000.00 3543 82 \N 3747 +25756 2025-07-13 23:00:09.650946+00 2025-07-13 23:00:09.65096+00 f t 22500.00 1 22500.00 3543 88 \N 3747 +25772 2025-07-13 23:21:12.145841+00 2025-07-13 23:21:12.14585+00 f t 27500.00 1 27500.00 3548 83 \N 3752 +25782 2025-07-14 00:49:17.161776+00 2025-07-14 00:49:17.161785+00 f t 62000.00 1 62000.00 3551 106 \N 3754 +25868 2025-07-14 02:29:28.376314+00 2025-07-14 02:29:28.376324+00 f t 42000.00 1 42000.00 3559 82 \N 3759 +25889 2025-07-14 02:29:51.843538+00 2025-07-14 02:29:51.843548+00 f t 42000.00 1 42000.00 3558 82 \N 3757 +25890 2025-07-14 02:29:51.848895+00 2025-07-14 02:29:51.848905+00 f t 7500.00 1 7500.00 3558 85 \N 3757 +25891 2025-07-14 02:29:51.853409+00 2025-07-14 02:29:51.853419+00 f t 42000.00 1 42000.00 3558 82 \N 3758 +25892 2025-07-14 02:29:51.858335+00 2025-07-14 02:29:51.858345+00 f t 7500.00 1 7500.00 3558 85 \N 3758 +25976 2025-07-14 04:59:33.570235+00 2025-07-14 04:59:33.570244+00 f t 42000.00 1 42000.00 3563 82 \N 3765 +25977 2025-07-14 04:59:33.574686+00 2025-07-14 04:59:33.574694+00 f t 13000.00 1 13000.00 3563 89 \N 3765 +26003 2025-07-14 07:15:41.622715+00 2025-07-14 07:15:41.622726+00 f t 42000.00 1 42000.00 3564 82 \N 3766 +26006 2025-07-14 13:32:27.294541+00 2025-07-14 13:32:27.294551+00 f t 42000.00 1 42000.00 3571 82 \N 3767 +26007 2025-07-14 13:32:27.30041+00 2025-07-14 13:32:27.300419+00 f t 7500.00 1 7500.00 3571 85 \N 3767 +26009 2025-07-14 13:49:08.562515+00 2025-07-14 13:49:08.562527+00 f t 42000.00 1 42000.00 3573 82 \N 3768 +26014 2025-07-14 14:20:29.792261+00 2025-07-14 14:20:29.792274+00 f t 42000.00 1 42000.00 3575 82 \N 3770 +26025 2025-07-14 15:25:55.042647+00 2025-07-14 15:25:55.042657+00 f t 50000.00 1 50000.00 3578 84 \N 3772 +26280 2025-07-15 01:48:00.935382+00 2025-07-15 01:48:00.935391+00 f t 50000.00 1 50000.00 3618 84 \N 3806 +26289 2025-07-15 02:04:06.590904+00 2025-07-15 02:04:06.590917+00 f t 42000.00 1 42000.00 3619 82 \N 3807 +27119 2025-07-16 15:52:18.145+00 2025-07-16 15:52:18.145012+00 f t 42000.00 1 42000.00 3712 82 \N 3881 +27124 2025-07-16 17:33:12.927431+00 2025-07-16 17:33:12.92744+00 f t 42000.00 1 42000.00 3719 82 \N 3885 +27125 2025-07-16 17:33:12.931888+00 2025-07-16 17:33:12.931894+00 f t 13000.00 1 13000.00 3719 89 \N 3885 +27133 2025-07-16 19:22:45.627002+00 2025-07-16 19:22:45.627013+00 f t 50000.00 1 50000.00 3722 84 \N 3887 +27183 2025-07-16 22:52:17.241444+00 2025-07-16 22:52:17.241453+00 f t 70000.00 1 70000.00 3739 108 \N 3902 +27213 2025-07-17 00:13:54.838465+00 2025-07-17 00:13:54.838474+00 f t 50000.00 1 50000.00 3745 84 \N 3904 +26066 2025-07-14 15:28:08.205557+00 2025-07-14 15:28:08.205569+00 f t 42000.00 1 42000.00 3579 82 \N 3774 +26067 2025-07-14 15:28:08.211825+00 2025-07-14 15:28:08.21187+00 f t 12000.00 1 12000.00 3579 146 \N 3774 +26070 2025-07-14 16:03:10.473437+00 2025-07-14 16:03:10.473446+00 f t 42000.00 1 42000.00 3582 82 \N 3776 +26071 2025-07-14 16:03:10.479177+00 2025-07-14 16:03:10.479188+00 f t 7500.00 1 7500.00 3582 85 \N 3776 +27229 2025-07-17 00:47:26.784519+00 2025-07-17 00:47:26.784529+00 f t 50000.00 1 50000.00 3749 84 \N 3906 +26073 2025-07-14 16:09:17.394053+00 2025-07-14 16:09:17.394062+00 f t 42000.00 1 42000.00 3583 82 \N 3777 +26087 2025-07-14 17:08:13.023264+00 2025-07-14 17:08:13.023276+00 f t 50000.00 1 50000.00 3584 84 \N 3778 +26089 2025-07-14 17:16:18.365575+00 2025-07-14 17:16:18.365587+00 f t 70000.00 1 70000.00 3585 108 \N 3779 +26091 2025-07-14 17:40:39.977448+00 2025-07-14 17:40:39.977458+00 f t 27500.00 1 27500.00 3588 83 \N 3781 +27299 2025-07-17 07:40:42.631743+00 2025-07-17 07:40:42.631753+00 f t 42000.00 1 42000.00 3760 82 \N 3911 +27313 2025-07-17 12:22:02.556116+00 2025-07-17 12:22:02.556131+00 f t 50000.00 1 50000.00 3764 84 \N 3915 +27339 2025-07-17 14:59:58.111436+00 2025-07-17 14:59:58.111445+00 f t 50000.00 1 50000.00 3776 84 \N 3921 +27343 2025-07-17 15:51:47.808674+00 2025-07-17 15:51:47.808684+00 f t 27500.00 1 27500.00 3778 83 \N 3924 +27355 2025-07-17 16:38:55.80226+00 2025-07-17 16:38:55.802271+00 f t 62000.00 1 62000.00 3783 106 \N 3931 +26477 2025-07-15 13:29:32.35982+00 2025-07-15 13:29:32.359832+00 f t 42000.00 1 42000.00 3637 82 \N 3818 +26478 2025-07-15 13:29:32.365837+00 2025-07-15 13:29:32.365846+00 f t 7700.00 1 7700.00 3637 93 \N 3818 +26479 2025-07-15 13:29:32.370556+00 2025-07-15 13:29:32.370565+00 f t 45500.00 1 45500.00 3637 114 \N 3818 +26480 2025-07-15 13:29:32.375461+00 2025-07-15 13:29:32.375469+00 f t 12000.00 1 12000.00 3637 146 \N 3818 +26481 2025-07-15 13:29:32.380179+00 2025-07-15 13:29:32.380188+00 f t 7500.00 1 7500.00 3637 85 \N 3818 +27465 2025-07-17 20:35:08.186747+00 2025-07-17 20:35:08.186761+00 f t 42000.00 1 42000.00 3791 82 \N 3939 +27466 2025-07-17 20:35:08.194534+00 2025-07-17 20:35:08.194547+00 f t 7500.00 1 7500.00 3791 85 \N 3939 +27483 2025-07-17 20:37:28.696222+00 2025-07-17 20:37:28.696233+00 f t 42000.00 1 42000.00 3792 82 \N 3940 +27484 2025-07-17 20:37:28.703279+00 2025-07-17 20:37:28.703289+00 f t 7700.00 1 7700.00 3792 93 \N 3940 +26168 2025-07-14 17:54:04.183005+00 2025-07-14 17:54:04.183015+00 f t 42000.00 1 42000.00 3591 82 \N 3783 +26169 2025-07-14 17:54:04.189735+00 2025-07-14 17:54:04.189749+00 f t 7700.00 1 7700.00 3591 93 \N 3783 +26170 2025-07-14 17:54:04.195199+00 2025-07-14 17:54:04.195209+00 f t 12000.00 1 12000.00 3591 146 \N 3783 +26183 2025-07-14 18:29:22.326617+00 2025-07-14 18:29:22.326628+00 f t 42000.00 1 42000.00 3593 82 \N 3785 +26185 2025-07-14 18:30:20.937075+00 2025-07-14 18:30:20.937086+00 f t 42000.00 1 42000.00 3594 82 \N 3786 +26187 2025-07-14 18:52:48.844751+00 2025-07-14 18:52:48.844761+00 f t 42000.00 1 42000.00 3595 82 \N 3789 +27602 2025-07-17 23:46:15.234856+00 2025-07-17 23:46:15.234865+00 f t 42000.00 1 42000.00 3804 82 \N 3950 +27603 2025-07-17 23:46:15.24122+00 2025-07-17 23:46:15.241229+00 f t 31500.00 1 31500.00 3804 126 \N 3950 +27604 2025-07-17 23:46:15.245878+00 2025-07-17 23:46:15.245886+00 f t 13000.00 1 13000.00 3804 89 \N 3950 +26566 2025-07-15 13:53:36.32907+00 2025-07-15 13:53:36.32908+00 f t 42000.00 1 42000.00 3639 82 \N 3819 +26567 2025-07-15 13:53:36.334249+00 2025-07-15 13:53:36.334258+00 f t 7500.00 1 7500.00 3639 85 \N 3819 +26568 2025-07-15 13:53:36.338238+00 2025-07-15 13:53:36.338246+00 f t 22500.00 1 22500.00 3639 86 \N 3819 +26569 2025-07-15 13:53:36.342454+00 2025-07-15 13:53:36.342462+00 f t 42000.00 1 42000.00 3639 82 \N 3820 +26570 2025-07-15 13:53:36.346411+00 2025-07-15 13:53:36.346418+00 f t 7500.00 1 7500.00 3639 85 \N 3820 +26214 2025-07-14 19:21:23.802845+00 2025-07-14 19:21:23.802859+00 f t 42000.00 1 42000.00 3596 82 \N 3790 +26215 2025-07-14 19:21:23.810052+00 2025-07-14 19:21:23.810062+00 f t 7700.00 1 7700.00 3596 91 \N 3790 +26571 2025-07-15 13:53:36.350514+00 2025-07-15 13:53:36.350524+00 f t 22500.00 1 22500.00 3639 86 \N 3820 +26217 2025-07-14 20:58:12.844326+00 2025-07-14 20:58:12.844335+00 f t 62000.00 1 62000.00 3602 106 \N 3795 +26220 2025-07-14 21:42:10.952779+00 2025-07-14 21:42:10.952788+00 f t 27500.00 1 27500.00 3604 83 \N 3796 +26223 2025-07-14 22:49:29.479732+00 2025-07-14 22:49:29.479744+00 f t 42000.00 1 42000.00 3607 82 \N 3797 +26224 2025-07-14 22:49:29.485818+00 2025-07-14 22:49:29.48583+00 f t 7500.00 1 7500.00 3607 85 \N 3797 +26588 2025-07-15 13:57:56.621308+00 2025-07-15 13:57:56.621316+00 f t 42000.00 1 42000.00 3640 82 \N 3821 +26589 2025-07-15 13:57:56.626512+00 2025-07-15 13:57:56.62652+00 f t 13000.00 1 13000.00 3640 89 \N 3821 +27674 2025-07-18 12:45:03.44455+00 2025-07-18 12:45:03.444566+00 f t 42000.00 1 42000.00 3816 82 \N 3963 +27675 2025-07-18 12:45:03.470862+00 2025-07-18 12:45:03.470885+00 f t 7700.00 1 7700.00 3816 93 \N 3963 +27676 2025-07-18 12:45:03.487114+00 2025-07-18 12:45:03.487177+00 f t 21000.00 1 21000.00 3816 109 \N 3963 +27677 2025-07-18 12:45:03.502546+00 2025-07-18 12:45:03.502566+00 f t 70000.00 1 70000.00 3816 108 \N 3963 +27678 2025-07-18 12:45:03.51662+00 2025-07-18 12:45:03.516635+00 f t 12000.00 1 12000.00 3816 146 \N 3963 +26602 2025-07-15 14:01:00.845314+00 2025-07-15 14:01:00.845326+00 f t 42000.00 1 42000.00 3641 82 \N 3822 +26603 2025-07-15 14:01:00.853235+00 2025-07-15 14:01:00.853245+00 f t 7500.00 1 7500.00 3641 85 \N 3822 +26604 2025-07-15 14:01:00.859036+00 2025-07-15 14:01:00.859045+00 f t 22500.00 1 22500.00 3641 86 \N 3822 +26255 2025-07-14 23:19:24.204378+00 2025-07-14 23:19:24.20439+00 f t 42000.00 1 42000.00 3608 82 \N 3798 +26256 2025-07-14 23:19:24.210345+00 2025-07-14 23:19:24.210353+00 f t 81500.00 1 81500.00 3608 144 \N 3798 +26617 2025-07-15 14:16:58.843582+00 2025-07-15 14:16:58.843595+00 f t 42000.00 1 42000.00 3646 82 \N 3826 +26618 2025-07-15 14:16:58.850675+00 2025-07-15 14:16:58.850689+00 f t 7500.00 1 7500.00 3646 85 \N 3826 +26619 2025-07-15 14:16:58.856724+00 2025-07-15 14:16:58.856737+00 f t 22500.00 1 22500.00 3646 86 \N 3826 +26625 2025-07-15 14:46:40.778021+00 2025-07-15 14:46:40.778034+00 f t 27500.00 1 27500.00 3649 83 \N 3829 +27097 2025-07-16 11:47:19.867852+00 2025-07-16 11:47:19.867863+00 f t 50000.00 1 50000.00 3703 84 \N 3871 +26692 2025-07-15 15:56:05.382078+00 2025-07-15 15:56:05.382088+00 f t 42000.00 1 42000.00 3658 82 \N 3836 +26693 2025-07-15 15:56:05.387481+00 2025-07-15 15:56:05.387489+00 f t 87500.00 1 87500.00 3658 141 \N 3836 +26695 2025-07-15 16:30:41.587013+00 2025-07-15 16:30:41.587022+00 f t 50000.00 1 50000.00 3659 84 \N 3837 +26701 2025-07-15 17:04:25.947543+00 2025-07-15 17:04:25.947553+00 f t 42000.00 1 42000.00 3661 82 \N 3839 +27307 2025-07-17 11:37:27.490986+00 2025-07-17 11:37:27.490996+00 f t 42000.00 1 42000.00 3762 82 \N 3913 +27308 2025-07-17 11:37:27.497245+00 2025-07-17 11:37:27.497254+00 f t 7700.00 1 7700.00 3762 93 \N 3913 +27309 2025-07-17 11:37:27.501951+00 2025-07-17 11:37:27.501959+00 f t 21000.00 1 21000.00 3762 109 \N 3913 +27310 2025-07-17 11:37:27.506253+00 2025-07-17 11:37:27.506262+00 f t 12000.00 1 12000.00 3762 146 \N 3913 +27322 2025-07-17 13:35:58.800709+00 2025-07-17 13:35:58.800721+00 f t 50000.00 1 50000.00 3767 84 \N 3916 +26752 2025-07-15 18:01:53.107951+00 2025-07-15 18:01:53.10796+00 f t 42000.00 1 42000.00 3665 82 \N 3842 +26753 2025-07-15 18:01:53.114102+00 2025-07-15 18:01:53.11411+00 f t 33000.00 1 33000.00 3665 133 \N 3842 +26754 2025-07-15 18:01:53.119356+00 2025-07-15 18:01:53.119365+00 f t 13000.00 1 13000.00 3665 89 \N 3842 +26755 2025-07-15 18:01:53.124296+00 2025-07-15 18:01:53.124306+00 f t 22500.00 1 22500.00 3665 86 \N 3842 +28163 2025-07-19 14:28:32.801189+00 2025-07-19 14:28:32.801199+00 f t 50000.00 1 50000.00 3878 84 \N 4003 +28187 2025-07-19 15:10:52.327707+00 2025-07-19 15:10:52.327717+00 f t 42000.00 1 42000.00 3879 82 \N 4004 +28197 2025-07-19 18:50:42.352291+00 2025-07-19 18:50:42.352299+00 f t 42000.00 1 42000.00 3890 82 \N 4012 +28198 2025-07-19 18:50:42.357695+00 2025-07-19 18:50:42.357703+00 f t 7500.00 1 7500.00 3890 85 \N 4012 +27460 2025-07-17 20:33:31.005012+00 2025-07-17 20:33:31.005023+00 f t 42000.00 1 42000.00 3790 82 \N 3938 +27461 2025-07-17 20:33:31.010539+00 2025-07-17 20:33:31.010548+00 f t 7500.00 1 7500.00 3790 85 \N 3938 +27462 2025-07-17 20:33:31.014118+00 2025-07-17 20:33:31.014125+00 f t 22500.00 1 22500.00 3790 86 \N 3938 +26799 2025-07-15 20:15:10.192913+00 2025-07-15 20:15:10.192926+00 f t 42000.00 1 42000.00 3671 82 \N 3847 +26800 2025-07-15 20:15:10.199072+00 2025-07-15 20:15:10.199084+00 f t 7500.00 1 7500.00 3671 85 \N 3847 +26801 2025-07-15 20:15:10.203949+00 2025-07-15 20:15:10.203959+00 f t 22500.00 1 22500.00 3671 88 \N 3847 +26802 2025-07-15 20:15:10.208202+00 2025-07-15 20:15:10.208211+00 f t 22500.00 1 22500.00 3671 163 \N 3847 +27494 2025-07-17 22:47:51.28082+00 2025-07-17 22:47:51.280829+00 f t 42000.00 1 42000.00 3801 82 \N 3947 +28264 2025-07-19 19:15:21.215801+00 2025-07-19 19:15:21.215814+00 f t 42000.00 1 42000.00 3892 82 \N 4019 +28270 2025-07-19 19:29:10.271524+00 2025-07-19 19:29:10.271536+00 f t 50000.00 1 50000.00 3895 84 \N 4023 +27611 2025-07-18 00:35:27.849117+00 2025-07-18 00:35:27.849126+00 f t 42000.00 1 42000.00 3806 82 \N 3953 +27612 2025-07-18 00:35:27.854286+00 2025-07-18 00:35:27.854294+00 f t 7700.00 1 7700.00 3806 93 \N 3953 +27613 2025-07-18 00:35:27.858177+00 2025-07-18 00:35:27.858185+00 f t 33000.00 1 33000.00 3806 112 \N 3953 +27614 2025-07-18 00:35:27.861922+00 2025-07-18 00:35:27.861931+00 f t 12000.00 1 12000.00 3806 146 \N 3953 +28327 2025-07-20 00:52:17.602125+00 2025-07-20 00:52:17.602134+00 f t 42000.00 1 42000.00 3910 82 \N 4035 +28328 2025-07-20 00:52:17.60708+00 2025-07-20 00:52:17.607088+00 f t 7700.00 1 7700.00 3910 93 \N 4035 +28329 2025-07-20 00:52:17.611623+00 2025-07-20 00:52:17.611631+00 f t 21000.00 1 21000.00 3910 109 \N 4035 +28330 2025-07-20 00:52:17.615888+00 2025-07-20 00:52:17.6159+00 f t 12000.00 1 12000.00 3910 146 \N 4035 +28333 2025-07-20 01:15:29.773962+00 2025-07-20 01:15:29.77397+00 f t 42000.00 1 42000.00 3911 82 \N 4036 +28334 2025-07-20 01:15:29.780415+00 2025-07-20 01:15:29.780427+00 f t 7500.00 1 7500.00 3911 85 \N 4036 +27647 2025-07-18 01:10:14.320743+00 2025-07-18 01:10:14.320754+00 f t 42000.00 1 42000.00 3809 82 \N 3955 +27648 2025-07-18 01:10:14.325629+00 2025-07-18 01:10:14.325641+00 f t 22500.00 1 22500.00 3809 86 \N 3955 +27651 2025-07-18 01:12:29.984682+00 2025-07-18 01:12:29.984695+00 f t 27500.00 1 27500.00 3807 83 \N 3954 +28338 2025-07-20 01:58:57.90352+00 2025-07-20 01:58:57.903528+00 f t 50000.00 1 50000.00 3914 84 \N 4038 +26862 2025-07-15 20:27:23.326825+00 2025-07-15 20:27:23.326834+00 f t 42000.00 1 42000.00 3673 82 \N 3848 +26863 2025-07-15 20:27:23.332695+00 2025-07-15 20:27:23.332709+00 f t 7700.00 1 7700.00 3673 93 \N 3848 +26864 2025-07-15 20:27:23.338071+00 2025-07-15 20:27:23.338082+00 f t 21000.00 1 21000.00 3673 109 \N 3848 +26865 2025-07-15 20:27:23.343786+00 2025-07-15 20:27:23.343798+00 f t 27500.00 1 27500.00 3673 83 \N 3848 +26866 2025-07-15 20:27:23.349386+00 2025-07-15 20:27:23.349398+00 f t 12000.00 1 12000.00 3673 146 \N 3848 +28354 2025-07-20 03:06:53.038354+00 2025-07-20 03:06:53.038363+00 f t 42000.00 1 42000.00 3921 82 \N 4044 +26882 2025-07-15 20:30:36.543081+00 2025-07-15 20:30:36.543092+00 f t 42000.00 1 42000.00 3674 82 \N 3849 +26885 2025-07-15 20:47:55.974694+00 2025-07-15 20:47:55.974704+00 f t 42000.00 1 42000.00 3675 82 \N 3850 +26894 2025-07-15 21:57:19.500433+00 2025-07-15 21:57:19.500447+00 f t 42000.00 1 42000.00 3679 82 \N 3852 +26895 2025-07-15 21:57:19.506459+00 2025-07-15 21:57:19.50647+00 f t 7500.00 1 7500.00 3679 85 \N 3852 +26898 2025-07-16 00:04:29.390128+00 2025-07-16 00:04:29.390137+00 f t 42000.00 1 42000.00 3681 82 \N 3855 +26899 2025-07-16 00:04:29.394758+00 2025-07-16 00:04:29.394765+00 f t 7500.00 1 7500.00 3681 85 \N 3855 +26901 2025-07-16 00:20:58.118312+00 2025-07-16 00:20:58.118325+00 f t 42000.00 1 42000.00 3683 82 \N 3856 +26909 2025-07-16 00:21:58.466791+00 2025-07-16 00:21:58.466804+00 f t 50000.00 1 50000.00 3684 84 \N 3857 +26911 2025-07-16 01:21:06.586205+00 2025-07-16 01:21:06.586218+00 f t 27500.00 1 27500.00 3685 83 \N 3858 +26914 2025-07-16 01:40:57.811734+00 2025-07-16 01:40:57.811746+00 f t 62000.00 1 62000.00 3686 106 \N 3859 +26917 2025-07-16 01:47:45.218342+00 2025-07-16 01:47:45.218354+00 f t 42000.00 1 42000.00 3688 82 \N 3860 +26918 2025-07-16 01:47:45.224048+00 2025-07-16 01:47:45.224057+00 f t 69000.00 1 69000.00 3688 142 \N 3860 +27752 2025-07-18 20:01:12.907876+00 2025-07-18 20:01:12.907885+00 f t 42000.00 1 42000.00 3837 82 \N 3972 +27753 2025-07-18 20:01:12.91319+00 2025-07-18 20:01:12.913199+00 f t 7500.00 1 7500.00 3837 85 \N 3972 +26921 2025-07-16 01:54:01.529039+00 2025-07-16 01:54:01.529052+00 f t 42000.00 1 42000.00 3689 82 \N 3861 +26922 2025-07-16 01:54:01.535585+00 2025-07-16 01:54:01.535597+00 f t 69000.00 1 69000.00 3689 142 \N 3861 +27754 2025-07-18 20:01:12.917598+00 2025-07-18 20:01:12.917606+00 f t 22500.00 1 22500.00 3837 163 \N 3972 +26956 2025-07-16 01:55:11.248943+00 2025-07-16 01:55:11.248952+00 f t 42000.00 1 42000.00 3690 82 \N 3862 +26957 2025-07-16 01:55:11.254561+00 2025-07-16 01:55:11.25457+00 f t 7500.00 1 7500.00 3690 85 \N 3862 +26958 2025-07-16 01:55:11.259928+00 2025-07-16 01:55:11.259937+00 f t 22500.00 1 22500.00 3690 88 \N 3862 +26959 2025-07-16 01:55:11.265685+00 2025-07-16 01:55:11.265697+00 f t 22500.00 1 22500.00 3690 163 \N 3862 +29591 2025-07-22 15:22:37.793252+00 2025-07-22 15:22:37.793263+00 f t 42000.00 1 42000.00 4075 82 \N 4166 +32438 2025-07-30 23:45:27.001207+00 2025-07-30 23:45:27.001217+00 f t 42000.00 1 42000.00 4592 82 \N 4577 +27106 2025-07-16 12:51:21.990243+00 2025-07-16 12:51:21.990252+00 f t 42000.00 1 42000.00 3705 82 \N 3872 +27107 2025-07-16 12:51:21.994896+00 2025-07-16 12:51:21.994903+00 f t 22500.00 1 22500.00 3705 163 \N 3872 +27114 2025-07-16 13:59:02.543686+00 2025-07-16 13:59:02.543698+00 f t 42000.00 1 42000.00 3709 82 \N 3877 +27115 2025-07-16 13:59:02.54974+00 2025-07-16 13:59:02.549749+00 f t 7700.00 1 7700.00 3709 93 \N 3877 +27116 2025-07-16 13:59:02.555491+00 2025-07-16 13:59:02.5555+00 f t 45500.00 1 45500.00 3709 114 \N 3877 +27117 2025-07-16 13:59:02.56061+00 2025-07-16 13:59:02.56062+00 f t 12000.00 1 12000.00 3709 146 \N 3877 +26977 2025-07-16 04:24:40.78685+00 2025-07-16 04:24:40.786858+00 f t 42000.00 1 42000.00 3693 82 \N 3865 +27121 2025-07-16 16:34:43.99538+00 2025-07-16 16:34:43.995393+00 f t 42000.00 1 42000.00 3713 82 \N 3882 +27131 2025-07-16 18:51:43.580123+00 2025-07-16 18:51:43.580131+00 f t 27500.00 1 27500.00 3720 83 \N 3886 +27135 2025-07-16 19:22:54.635656+00 2025-07-16 19:22:54.635665+00 f t 42000.00 1 42000.00 3723 82 \N 3888 +26982 2025-07-16 04:25:28.678138+00 2025-07-16 04:25:28.678147+00 f t 70000.00 1 70000.00 3692 108 \N 3866 +27139 2025-07-16 19:43:30.581803+00 2025-07-16 19:43:30.581812+00 f t 42000.00 1 42000.00 3726 82 \N 3890 +27143 2025-07-16 20:08:38.592521+00 2025-07-16 20:08:38.592531+00 f t 70000.00 1 70000.00 3728 97 \N 3892 +27166 2025-07-16 20:37:04.756948+00 2025-07-16 20:37:04.756961+00 f t 42000.00 1 42000.00 3731 82 \N 3897 +27167 2025-07-16 20:37:04.764286+00 2025-07-16 20:37:04.764299+00 f t 7700.00 1 7700.00 3731 93 \N 3897 +27168 2025-07-16 20:37:04.770615+00 2025-07-16 20:37:04.770626+00 f t 41000.00 1 41000.00 3731 110 \N 3897 +27169 2025-07-16 20:37:04.776595+00 2025-07-16 20:37:04.776606+00 f t 12000.00 1 12000.00 3731 146 \N 3897 +27181 2025-07-16 22:29:18.271421+00 2025-07-16 22:29:18.271432+00 f t 50000.00 1 50000.00 3738 84 \N 3901 +27188 2025-07-16 23:31:18.706487+00 2025-07-16 23:31:18.706495+00 f t 42000.00 1 42000.00 3742 82 \N 3903 +27189 2025-07-16 23:31:18.711606+00 2025-07-16 23:31:18.711613+00 f t 7700.00 1 7700.00 3742 93 \N 3903 +27190 2025-07-16 23:31:18.715621+00 2025-07-16 23:31:18.715628+00 f t 45500.00 1 45500.00 3742 114 \N 3903 +27191 2025-07-16 23:31:18.719565+00 2025-07-16 23:31:18.719572+00 f t 12000.00 1 12000.00 3742 146 \N 3903 +27215 2025-07-17 00:21:05.545087+00 2025-07-17 00:21:05.5451+00 f t 42000.00 1 42000.00 3747 82 \N 3905 +27241 2025-07-17 02:43:54.503316+00 2025-07-17 02:43:54.503327+00 f t 42000.00 1 42000.00 3753 82 \N 3909 +27337 2025-07-17 14:14:39.225654+00 2025-07-17 14:14:39.225667+00 f t 50000.00 1 50000.00 3772 84 \N 3919 +27341 2025-07-17 15:45:44.368247+00 2025-07-17 15:45:44.36826+00 f t 62000.00 1 62000.00 3777 106 \N 3923 +27050 2025-07-16 05:21:37.497331+00 2025-07-16 05:21:37.497344+00 f t 42000.00 1 42000.00 3694 82 \N 3867 +27051 2025-07-16 05:21:37.503759+00 2025-07-16 05:21:37.503771+00 f t 7500.00 1 7500.00 3694 85 \N 3867 +27052 2025-07-16 05:21:37.509426+00 2025-07-16 05:21:37.509439+00 f t 22500.00 1 22500.00 3694 86 \N 3867 +27053 2025-07-16 05:21:37.514784+00 2025-07-16 05:21:37.514796+00 f t 22500.00 1 22500.00 3694 87 \N 3867 +28147 2025-07-19 12:25:00.29247+00 2025-07-19 12:25:00.292479+00 f t 42000.00 1 42000.00 3870 82 \N 3996 +28148 2025-07-19 12:25:00.297174+00 2025-07-19 12:25:00.297183+00 f t 62000.00 1 62000.00 3870 106 \N 3996 +28149 2025-07-19 12:25:00.301698+00 2025-07-19 12:25:00.301708+00 f t 75000.00 1 75000.00 3870 143 \N 3996 +28158 2025-07-19 14:05:51.571792+00 2025-07-19 14:05:51.571801+00 f t 42000.00 1 42000.00 3874 82 \N 3999 +28159 2025-07-19 14:05:51.577536+00 2025-07-19 14:05:51.577545+00 f t 7700.00 1 7700.00 3874 93 \N 3999 +28160 2025-07-19 14:05:51.581774+00 2025-07-19 14:05:51.581782+00 f t 21000.00 1 21000.00 3874 109 \N 3999 +28161 2025-07-19 14:05:51.586064+00 2025-07-19 14:05:51.586073+00 f t 12000.00 1 12000.00 3874 146 \N 3999 +27486 2025-07-17 22:27:51.832942+00 2025-07-17 22:27:51.83397+00 f t 62000.00 1 62000.00 3800 106 \N 3944 +28194 2025-07-19 18:34:42.874386+00 2025-07-19 18:34:42.874396+00 f t 62000.00 1 62000.00 3889 106 \N 4011 +27606 2025-07-18 00:28:36.43188+00 2025-07-18 00:28:36.43189+00 f t 27500.00 1 27500.00 3805 83 \N 3952 +27655 2025-07-18 02:57:05.908133+00 2025-07-18 02:57:05.908147+00 f t 50000.00 1 50000.00 3811 84 \N 3957 +27718 2025-07-18 13:03:42.41838+00 2025-07-18 13:03:42.418389+00 f t 70000.00 1 70000.00 3818 108 \N 3964 +27724 2025-07-18 14:34:02.77561+00 2025-07-18 14:34:02.77562+00 f t 62000.00 1 62000.00 3822 106 \N 3966 +27726 2025-07-18 16:54:07.900248+00 2025-07-18 16:54:07.900257+00 f t 27500.00 1 27500.00 3826 83 \N 3967 +27730 2025-07-18 17:09:30.550926+00 2025-07-18 17:09:30.550937+00 f t 27500.00 1 27500.00 3827 83 \N 3968 +27735 2025-07-18 19:23:01.91858+00 2025-07-18 19:23:01.9186+00 f t 42000.00 1 42000.00 3835 82 \N 3971 +27736 2025-07-18 19:23:01.928218+00 2025-07-18 19:23:01.928231+00 f t 7500.00 1 7500.00 3835 85 \N 3971 +27738 2025-07-18 19:23:49.647838+00 2025-07-18 19:23:49.647851+00 f t 50000.00 1 50000.00 3836 84 \N 2141 +27760 2025-07-18 21:06:04.788697+00 2025-07-18 21:06:04.788707+00 f t 42000.00 1 42000.00 3842 82 \N 3975 +27761 2025-07-18 21:06:04.795025+00 2025-07-18 21:06:04.795033+00 f t 22500.00 1 22500.00 3842 86 \N 3975 +27774 2025-07-18 22:36:41.597708+00 2025-07-18 22:36:41.597719+00 f t 42000.00 1 42000.00 3846 82 \N 3978 +27775 2025-07-18 22:36:41.603752+00 2025-07-18 22:36:41.603763+00 f t 22500.00 1 22500.00 3846 88 \N 3978 +27779 2025-07-18 23:17:18.538311+00 2025-07-18 23:17:18.538322+00 f t 42000.00 1 42000.00 3847 82 \N 3979 +27783 2025-07-18 23:19:14.536956+00 2025-07-18 23:19:14.536968+00 f t 50000.00 1 50000.00 3848 84 \N 3980 +27787 2025-07-18 23:29:57.41233+00 2025-07-18 23:29:57.41234+00 f t 50000.00 1 50000.00 3849 84 \N 3981 +27794 2025-07-19 00:00:02.329166+00 2025-07-19 00:00:02.329182+00 f t 42000.00 1 42000.00 3851 82 \N 3982 +27795 2025-07-19 00:00:02.350814+00 2025-07-19 00:00:02.350827+00 f t 7500.00 1 7500.00 3851 85 \N 3982 +27806 2025-07-19 00:44:38.071641+00 2025-07-19 00:44:38.071654+00 f t 42000.00 1 42000.00 3853 82 \N 3984 +27807 2025-07-19 00:44:38.078769+00 2025-07-19 00:44:38.078781+00 f t 7500.00 1 7500.00 3853 85 \N 3984 +27811 2025-07-19 01:42:55.741142+00 2025-07-19 01:42:55.741154+00 f t 27500.00 1 27500.00 3857 83 \N 3987 +27838 2025-07-19 02:14:46.014893+00 2025-07-19 02:14:46.014902+00 f t 27500.00 1 27500.00 3859 83 \N 3988 +27852 2025-07-19 04:23:57.014926+00 2025-07-19 04:23:57.014938+00 f t 42000.00 1 42000.00 3862 82 \N 3990 +27853 2025-07-19 04:23:57.019436+00 2025-07-19 04:23:57.019445+00 f t 7500.00 1 7500.00 3862 85 \N 3990 +27854 2025-07-19 04:23:57.02329+00 2025-07-19 04:23:57.023299+00 f t 22500.00 1 22500.00 3862 86 \N 3990 +33437 2025-08-02 05:48:27.29355+00 2025-08-02 05:48:27.293559+00 f t 50000.00 1 50000.00 4750 84 \N 4704 +27860 2025-07-19 10:27:31.599836+00 2025-07-19 10:27:31.599845+00 f t 42000.00 1 42000.00 3866 82 \N 3991 +29657 2025-07-22 19:20:38.867086+00 2025-07-22 19:20:38.867094+00 f t 70000.00 1 70000.00 4098 108 \N 4183 +29688 2025-07-22 23:47:47.801283+00 2025-07-22 23:47:47.801291+00 f t 42000.00 1 42000.00 4109 82 \N 4194 +27876 2025-07-19 11:00:11.849825+00 2025-07-19 11:00:11.849838+00 f t 50000.00 1 50000.00 3867 84 \N 3992 +29716 2025-07-23 02:34:33.084965+00 2025-07-23 02:34:33.084973+00 f t 42000.00 1 42000.00 4117 82 \N 4200 +27883 2025-07-19 11:36:04.707503+00 2025-07-19 11:36:04.707512+00 f t 42000.00 1 42000.00 3868 82 \N 3993 +27884 2025-07-19 11:36:04.714371+00 2025-07-19 11:36:04.714384+00 f t 22500.00 1 22500.00 3868 86 \N 3993 +29830 2025-07-23 08:56:46.713993+00 2025-07-23 08:56:46.714002+00 f t 42000.00 1 42000.00 4130 82 \N 4210 +29831 2025-07-23 08:56:46.719031+00 2025-07-23 08:56:46.719039+00 f t 24000.00 1 24000.00 4130 131 \N 4210 +29832 2025-07-23 08:56:46.723768+00 2025-07-23 08:56:46.72378+00 f t 13000.00 1 13000.00 4130 89 \N 4210 +29833 2025-07-23 08:56:46.729521+00 2025-07-23 08:56:46.729532+00 f t 22500.00 1 22500.00 4130 163 \N 4210 +29834 2025-07-23 08:56:46.734248+00 2025-07-23 08:56:46.734256+00 f t 42000.00 1 42000.00 4130 82 \N 4211 +29835 2025-07-23 08:56:46.738619+00 2025-07-23 08:56:46.738627+00 f t 29000.00 1 29000.00 4130 123 \N 4211 +29836 2025-07-23 08:56:46.742999+00 2025-07-23 08:56:46.743006+00 f t 13000.00 1 13000.00 4130 89 \N 4211 +29861 2025-07-23 11:37:01.317722+00 2025-07-23 11:37:01.317737+00 f t 62000.00 1 62000.00 4133 106 \N 4213 +29965 2025-07-23 13:50:19.535954+00 2025-07-23 13:50:19.535963+00 f t 62000.00 1 62000.00 4141 106 \N 4219 +30002 2025-07-23 21:35:20.322429+00 2025-07-23 21:35:20.322442+00 f t 95000.00 1 95000.00 4155 103 \N 4230 +28153 2025-07-19 13:51:31.702987+00 2025-07-19 13:51:31.703+00 f t 50000.00 1 50000.00 3873 84 \N 3998 +28189 2025-07-19 17:05:58.529027+00 2025-07-19 17:05:58.529036+00 f t 42000.00 1 42000.00 3884 82 \N 4009 +28200 2025-07-19 19:08:54.300075+00 2025-07-19 19:08:54.300087+00 f t 50000.00 1 50000.00 3891 84 \N 4014 +30094 2025-07-24 10:30:40.999049+00 2025-07-24 10:30:40.999062+00 f t 42000.00 1 42000.00 4178 82 \N 4246 +30095 2025-07-24 10:30:41.006457+00 2025-07-24 10:30:41.006472+00 f t 7700.00 1 7700.00 4178 93 \N 4246 +30096 2025-07-24 10:30:41.013826+00 2025-07-24 10:30:41.01384+00 f t 41000.00 1 41000.00 4178 110 \N 4246 +30097 2025-07-24 10:30:41.020483+00 2025-07-24 10:30:41.020494+00 f t 12000.00 1 12000.00 4178 146 \N 4246 +30166 2025-07-24 17:24:46.280222+00 2025-07-24 17:24:46.280231+00 f t 42000.00 1 42000.00 4202 82 \N 4262 +30171 2025-07-24 18:33:50.254437+00 2025-07-24 18:33:50.254446+00 f t 50000.00 1 50000.00 4204 84 \N 4263 +28275 2025-07-19 20:27:11.129864+00 2025-07-19 20:27:11.129874+00 f t 70000.00 1 70000.00 3898 108 \N 3951 +28279 2025-07-19 22:22:55.212102+00 2025-07-19 22:22:55.212111+00 f t 50000.00 1 50000.00 3902 84 \N 4027 +30227 2025-07-24 23:09:30.09109+00 2025-07-24 23:09:30.091099+00 f t 42000.00 1 42000.00 4226 82 \N 4278 +28289 2025-07-19 23:18:28.328902+00 2025-07-19 23:18:28.32891+00 f t 27500.00 1 27500.00 3903 83 \N 4028 +28292 2025-07-19 23:36:39.435313+00 2025-07-19 23:36:39.43532+00 f t 42000.00 1 42000.00 3906 82 \N 4030 +28293 2025-07-19 23:36:39.441023+00 2025-07-19 23:36:39.441031+00 f t 22500.00 1 22500.00 3906 86 \N 4030 +28299 2025-07-19 23:50:37.1364+00 2025-07-19 23:50:37.136409+00 f t 50000.00 1 50000.00 3907 84 \N 4031 +28306 2025-07-19 23:54:36.550982+00 2025-07-19 23:54:36.550993+00 f t 42000.00 1 42000.00 3908 82 \N 4033 +28307 2025-07-19 23:54:36.556031+00 2025-07-19 23:54:36.556046+00 f t 69000.00 1 69000.00 3908 142 \N 4033 +30270 2025-07-25 08:47:59.118773+00 2025-07-25 08:47:59.118784+00 f t 42000.00 1 42000.00 4235 82 \N 4284 +30271 2025-07-25 08:47:59.124647+00 2025-07-25 08:47:59.124658+00 f t 22500.00 1 22500.00 4235 86 \N 4284 +28341 2025-07-20 02:27:42.323522+00 2025-07-20 02:27:42.323532+00 f t 27500.00 1 27500.00 3915 83 \N 4039 +28343 2025-07-20 02:28:50.810643+00 2025-07-20 02:28:50.810655+00 f t 50000.00 1 50000.00 3916 84 \N 4040 +28357 2025-07-20 03:55:33.885438+00 2025-07-20 03:55:33.885449+00 f t 42000.00 1 42000.00 3922 82 \N 4045 +28358 2025-07-20 03:55:33.889811+00 2025-07-20 03:55:33.889819+00 f t 22500.00 1 22500.00 3922 88 \N 4045 +28362 2025-07-20 04:57:22.480316+00 2025-07-20 04:57:22.480327+00 f t 42000.00 1 42000.00 3924 82 \N 4048 +28367 2025-07-20 05:04:02.562239+00 2025-07-20 05:04:02.562252+00 f t 42000.00 1 42000.00 3925 82 \N 4049 +28368 2025-07-20 05:04:02.570476+00 2025-07-20 05:04:02.570489+00 f t 7700.00 1 7700.00 3925 93 \N 4049 +28369 2025-07-20 05:04:02.576692+00 2025-07-20 05:04:02.576706+00 f t 45500.00 1 45500.00 3925 114 \N 4049 +28370 2025-07-20 05:04:02.584456+00 2025-07-20 05:04:02.584466+00 f t 12000.00 1 12000.00 3925 146 \N 4049 +28373 2025-07-20 05:35:43.990913+00 2025-07-20 05:35:43.990922+00 f t 42000.00 1 42000.00 3926 82 \N 4050 +28374 2025-07-20 05:35:43.995365+00 2025-07-20 05:35:43.995377+00 f t 22500.00 1 22500.00 3926 87 \N 4050 +28377 2025-07-20 12:06:39.920069+00 2025-07-20 12:06:39.920078+00 f t 62000.00 1 62000.00 3937 106 \N 4058 +28379 2025-07-20 12:50:39.191278+00 2025-07-20 12:50:39.191289+00 f t 62000.00 1 62000.00 3938 106 \N 4059 +28382 2025-07-20 13:09:43.76522+00 2025-07-20 13:09:43.765239+00 f t 50000.00 1 50000.00 3942 84 \N 4060 +28387 2025-07-20 14:07:27.730362+00 2025-07-20 14:07:27.730371+00 f t 50000.00 1 50000.00 3943 84 \N 4061 +28398 2025-07-20 14:41:30.982538+00 2025-07-20 14:41:30.982546+00 f t 42000.00 1 42000.00 3944 82 \N 4062 +28399 2025-07-20 14:41:30.987656+00 2025-07-20 14:41:30.987663+00 f t 81500.00 1 81500.00 3944 144 \N 4062 +28404 2025-07-20 14:50:30.751365+00 2025-07-20 14:50:30.751374+00 f t 50000.00 1 50000.00 3945 84 \N 4063 +28415 2025-07-20 14:58:16.451717+00 2025-07-20 14:58:16.451728+00 f t 42000.00 1 42000.00 3946 82 \N 4064 +28419 2025-07-20 15:49:16.397945+00 2025-07-20 15:49:16.397953+00 f t 27500.00 1 27500.00 3949 83 \N 4069 +28423 2025-07-20 15:58:01.670717+00 2025-07-20 15:58:01.670727+00 f t 27500.00 1 27500.00 3950 83 \N 4070 +28426 2025-07-20 16:08:54.341323+00 2025-07-20 16:08:54.341332+00 f t 42000.00 1 42000.00 3952 82 \N 4072 +28428 2025-07-20 17:02:17.300211+00 2025-07-20 17:02:17.30022+00 f t 42000.00 1 42000.00 3955 82 \N 4074 +28430 2025-07-20 17:15:38.862322+00 2025-07-20 17:15:38.862334+00 f t 42000.00 1 42000.00 3956 82 \N 4075 +28456 2025-07-20 17:31:32.718322+00 2025-07-20 17:31:32.718331+00 f t 42000.00 1 42000.00 3958 82 \N 4076 +28457 2025-07-20 17:31:32.723318+00 2025-07-20 17:31:32.723327+00 f t 13000.00 1 13000.00 3958 89 \N 4076 +28458 2025-07-20 17:31:32.727476+00 2025-07-20 17:31:32.727484+00 f t 22500.00 1 22500.00 3958 163 \N 4076 +28471 2025-07-20 19:03:12.897526+00 2025-07-20 19:03:12.897535+00 f t 42000.00 1 42000.00 3962 82 \N 4079 +30502 2025-07-25 16:11:07.053722+00 2025-07-25 16:11:07.053732+00 f t 42000.00 1 42000.00 4255 82 \N 4306 +30503 2025-07-25 16:11:07.060753+00 2025-07-25 16:11:07.060764+00 f t 7500.00 1 7500.00 4255 85 \N 4306 +29609 2025-07-22 16:16:20.772954+00 2025-07-22 16:16:20.772963+00 f t 42000.00 1 42000.00 4081 82 \N 4170 +28489 2025-07-20 19:24:18.910163+00 2025-07-20 19:24:18.910171+00 f t 50000.00 1 50000.00 3964 84 \N 4081 +28491 2025-07-20 20:00:25.997668+00 2025-07-20 20:00:25.997681+00 f t 42000.00 1 42000.00 3969 82 \N 4083 +29666 2025-07-22 21:50:17.073415+00 2025-07-22 21:50:17.073423+00 f t 42000.00 1 42000.00 4104 82 \N 4188 +28493 2025-07-20 20:00:42.35693+00 2025-07-20 20:00:42.356942+00 f t 42000.00 1 42000.00 3968 82 \N 4084 +29667 2025-07-22 21:50:17.078616+00 2025-07-22 21:50:17.078629+00 f t 7500.00 1 7500.00 4104 85 \N 4188 +29678 2025-07-22 21:55:41.0234+00 2025-07-22 21:55:41.023407+00 f t 50000.00 1 50000.00 4106 84 \N 4190 +28499 2025-07-20 20:33:38.725368+00 2025-07-20 20:33:38.725379+00 f t 50000.00 1 50000.00 3970 84 \N 4085 +29700 2025-07-23 02:13:36.379664+00 2025-07-23 02:13:36.379676+00 f t 42000.00 1 42000.00 4116 82 \N 4199 +28506 2025-07-20 20:45:02.613126+00 2025-07-20 20:45:02.613142+00 f t 42000.00 1 42000.00 3972 82 \N 4088 +28507 2025-07-20 20:45:02.639912+00 2025-07-20 20:45:02.639927+00 f t 7500.00 1 7500.00 3972 85 \N 4088 +29733 2025-07-23 02:57:28.032153+00 2025-07-23 02:57:28.032162+00 f t 42000.00 1 42000.00 4119 82 \N 4202 +29734 2025-07-23 02:57:28.037804+00 2025-07-23 02:57:28.037812+00 f t 7700.00 1 7700.00 4119 93 \N 4202 +29735 2025-07-23 02:57:28.042586+00 2025-07-23 02:57:28.042594+00 f t 45500.00 1 45500.00 4119 114 \N 4202 +29736 2025-07-23 02:57:28.047069+00 2025-07-23 02:57:28.047078+00 f t 12000.00 1 12000.00 4119 146 \N 4202 +28522 2025-07-20 21:22:33.905566+00 2025-07-20 21:22:33.905577+00 f t 42000.00 1 42000.00 3975 82 \N 4093 +28523 2025-07-20 21:22:33.911055+00 2025-07-20 21:22:33.911066+00 f t 7500.00 1 7500.00 3975 85 \N 4093 +28524 2025-07-20 21:22:33.916249+00 2025-07-20 21:22:33.916259+00 f t 22500.00 1 22500.00 3975 88 \N 4093 +28526 2025-07-20 23:23:06.102683+00 2025-07-20 23:23:06.102692+00 f t 50000.00 1 50000.00 3981 84 \N 4096 +28543 2025-07-20 23:32:16.414601+00 2025-07-20 23:32:16.414614+00 f t 42000.00 1 42000.00 3982 82 \N 4097 +28544 2025-07-20 23:32:16.419707+00 2025-07-20 23:32:16.419715+00 f t 22500.00 1 22500.00 3982 163 \N 4097 +28546 2025-07-20 23:52:54.89475+00 2025-07-20 23:52:54.894763+00 f t 50000.00 1 50000.00 3983 84 \N 4098 +28550 2025-07-21 00:09:25.688661+00 2025-07-21 00:09:25.688669+00 f t 42000.00 1 42000.00 3985 82 \N 4099 +28551 2025-07-21 00:09:25.693708+00 2025-07-21 00:09:25.693717+00 f t 29000.00 1 29000.00 3985 123 \N 4099 +28552 2025-07-21 00:09:25.698218+00 2025-07-21 00:09:25.698225+00 f t 13000.00 1 13000.00 3985 89 \N 4099 +28557 2025-07-21 00:30:16.201784+00 2025-07-21 00:30:16.201793+00 f t 62000.00 1 62000.00 3987 106 \N 4100 +28566 2025-07-21 00:36:15.749245+00 2025-07-21 00:36:15.749253+00 f t 42000.00 1 42000.00 3988 82 \N 4101 +28568 2025-07-21 00:52:14.371057+00 2025-07-21 00:52:14.371065+00 f t 42000.00 1 42000.00 3989 82 \N 4102 +28570 2025-07-21 01:55:43.945212+00 2025-07-21 01:55:43.945222+00 f t 42000.00 1 42000.00 3993 82 \N 4105 +29971 2025-07-23 16:22:57.244064+00 2025-07-23 16:22:57.244077+00 f t 50000.00 1 50000.00 4147 84 \N 4226 +30062 2025-07-24 00:40:44.388488+00 2025-07-24 00:40:44.388501+00 f t 50000.00 1 50000.00 4171 84 \N 4240 +30135 2025-07-24 11:29:30.044433+00 2025-07-24 11:29:30.044442+00 f t 50000.00 1 50000.00 4182 84 \N 4250 +30156 2025-07-24 15:18:47.913556+00 2025-07-24 15:18:47.913565+00 f t 42000.00 1 42000.00 4197 82 \N 4258 +30157 2025-07-24 15:18:47.919256+00 2025-07-24 15:18:47.919266+00 f t 7500.00 1 7500.00 4197 85 \N 4258 +30206 2025-07-24 19:39:46.321087+00 2025-07-24 19:39:46.321096+00 f t 70000.00 1 70000.00 4210 108 \N 4267 +30242 2025-07-25 00:29:51.38009+00 2025-07-25 00:29:51.3801+00 f t 62000.00 1 62000.00 4229 106 \N 4281 +30247 2025-07-25 01:30:45.497078+00 2025-07-25 01:30:45.497089+00 f t 42000.00 1 42000.00 4230 82 \N 4282 +30248 2025-07-25 01:30:45.508796+00 2025-07-25 01:30:45.508808+00 f t 7500.00 1 7500.00 4230 85 \N 4282 +30309 2025-07-25 12:24:17.28383+00 2025-07-25 12:24:17.283839+00 f t 42000.00 1 42000.00 4241 82 \N 4288 +30330 2025-07-25 14:43:53.578753+00 2025-07-25 14:43:53.578764+00 f t 50000.00 1 50000.00 4248 84 \N 4295 +28669 2025-07-21 03:44:11.345623+00 2025-07-21 03:44:11.345632+00 f t 42000.00 1 42000.00 3998 82 \N 4107 +28670 2025-07-21 03:44:11.352509+00 2025-07-21 03:44:11.352521+00 f t 7700.00 1 7700.00 3998 93 \N 4107 +28671 2025-07-21 03:44:11.357872+00 2025-07-21 03:44:11.357881+00 f t 45500.00 1 45500.00 3998 114 \N 4107 +28672 2025-07-21 03:44:11.362724+00 2025-07-21 03:44:11.362735+00 f t 12000.00 1 12000.00 3998 146 \N 4107 +28673 2025-07-21 03:44:11.366993+00 2025-07-21 03:44:11.367004+00 f t 7500.00 1 7500.00 3998 85 \N 4107 +28674 2025-07-21 03:44:11.371346+00 2025-07-21 03:44:11.371353+00 f t 22500.00 1 22500.00 3998 88 \N 4107 +28675 2025-07-21 03:44:11.375685+00 2025-07-21 03:44:11.375694+00 f t 22500.00 1 22500.00 3998 163 \N 4107 +29148 2025-07-21 03:53:08.41252+00 2025-07-21 03:53:08.412531+00 f t 93750.00 1 93750.00 3999 90 \N 4108 +29149 2025-07-21 03:53:08.418395+00 2025-07-21 03:53:08.418404+00 f t 42000.00 1 42000.00 3999 82 \N 4108 +29150 2025-07-21 03:53:08.423673+00 2025-07-21 03:53:08.423682+00 f t 29000.00 1 29000.00 3999 123 \N 4108 +29151 2025-07-21 03:53:08.429165+00 2025-07-21 03:53:08.429176+00 f t 7700.00 1 7700.00 3999 93 \N 4108 +29152 2025-07-21 03:53:08.435586+00 2025-07-21 03:53:08.435595+00 f t 13000.00 1 13000.00 3999 89 \N 4108 +29153 2025-07-21 03:53:08.441639+00 2025-07-21 03:53:08.441651+00 f t 45500.00 1 45500.00 3999 114 \N 4108 +29154 2025-07-21 03:53:08.447381+00 2025-07-21 03:53:08.447393+00 f t 12000.00 1 12000.00 3999 146 \N 4108 +29155 2025-07-21 03:53:08.452741+00 2025-07-21 03:53:08.452749+00 f t 7500.00 1 7500.00 3999 85 \N 4108 +29156 2025-07-21 03:53:08.457488+00 2025-07-21 03:53:08.457496+00 f t 22500.00 1 22500.00 3999 88 \N 4108 +29157 2025-07-21 03:53:08.462691+00 2025-07-21 03:53:08.462699+00 f t 22500.00 1 22500.00 3999 163 \N 4108 +29167 2025-07-21 08:27:04.236827+00 2025-07-21 08:27:04.236839+00 f t 50000.00 1 50000.00 4003 84 \N 4109 +29168 2025-07-21 08:27:04.243299+00 2025-07-21 08:27:04.243308+00 f t 42000.00 1 42000.00 4003 82 \N 4109 +29169 2025-07-21 08:27:04.248801+00 2025-07-21 08:27:04.24881+00 f t 0.00 1 0.00 4003 145 \N 4109 +29171 2025-07-21 12:01:03.756624+00 2025-07-21 12:01:03.756636+00 f t 62000.00 1 62000.00 4010 106 \N 4113 +29173 2025-07-21 12:03:42.063552+00 2025-07-21 12:03:42.063559+00 f t 42000.00 1 42000.00 4011 82 \N 4114 +29178 2025-07-21 12:06:54.450161+00 2025-07-21 12:06:54.45017+00 f t 42000.00 1 42000.00 4012 82 \N 4115 +29179 2025-07-21 12:06:54.456977+00 2025-07-21 12:06:54.456986+00 f t 7700.00 1 7700.00 4012 93 \N 4115 +29180 2025-07-21 12:06:54.461433+00 2025-07-21 12:06:54.461444+00 f t 52000.00 1 52000.00 4012 113 \N 4115 +30504 2025-07-25 16:11:07.067404+00 2025-07-25 16:11:07.067416+00 f t 22500.00 1 22500.00 4255 163 \N 4306 +30505 2025-07-25 16:11:07.073679+00 2025-07-25 16:11:07.073689+00 f t 42000.00 1 42000.00 4255 82 \N 4307 +30506 2025-07-25 16:11:07.07947+00 2025-07-25 16:11:07.07948+00 f t 7500.00 1 7500.00 4255 85 \N 4307 +30507 2025-07-25 16:11:07.085665+00 2025-07-25 16:11:07.085678+00 f t 22500.00 1 22500.00 4255 163 \N 4307 +29644 2025-07-22 16:58:20.635906+00 2025-07-22 16:58:20.63592+00 f t 42000.00 1 42000.00 4086 82 \N 4176 +29645 2025-07-22 16:58:20.642234+00 2025-07-22 16:58:20.642242+00 f t 7500.00 1 7500.00 4086 85 \N 4176 +31464 2025-07-28 04:07:38.869894+00 2025-07-28 04:07:38.869902+00 f t 42000.00 1 42000.00 4397 82 \N 4413 +31465 2025-07-28 04:07:38.876423+00 2025-07-28 04:07:38.876431+00 f t 7500.00 1 7500.00 4397 85 \N 4413 +31466 2025-07-28 04:07:38.881982+00 2025-07-28 04:07:38.881991+00 f t 22500.00 1 22500.00 4397 163 \N 4413 +31493 2025-07-28 12:38:06.842463+00 2025-07-28 12:38:06.842472+00 f t 42000.00 1 42000.00 4404 82 \N 4418 +31494 2025-07-28 12:38:06.849915+00 2025-07-28 12:38:06.849926+00 f t 7700.00 1 7700.00 4404 93 \N 4418 +31495 2025-07-28 12:38:06.856725+00 2025-07-28 12:38:06.856735+00 f t 52500.00 1 52500.00 4404 114 \N 4418 +29719 2025-07-23 02:40:34.865551+00 2025-07-23 02:40:34.86556+00 f t 42000.00 1 42000.00 4118 82 \N 4201 +29720 2025-07-23 02:40:34.871364+00 2025-07-23 02:40:34.871373+00 f t 7500.00 1 7500.00 4118 85 \N 4201 +30557 2025-07-25 17:46:29.571162+00 2025-07-25 17:46:29.571171+00 f t 50000.00 1 50000.00 4264 84 \N 4315 +30564 2025-07-25 20:48:47.747857+00 2025-07-25 20:48:47.747866+00 f t 42000.00 1 42000.00 4266 82 \N 4318 +29754 2025-07-23 03:53:53.414173+00 2025-07-23 03:53:53.414183+00 f t 50000.00 1 50000.00 4123 84 \N 4204 +30565 2025-07-25 20:48:47.75308+00 2025-07-25 20:48:47.753087+00 f t 7500.00 1 7500.00 4266 85 \N 4318 +29863 2025-07-23 11:46:33.033026+00 2025-07-23 11:46:33.033037+00 f t 50000.00 1 50000.00 4135 84 \N 4215 +30646 2025-07-26 12:45:07.173367+00 2025-07-26 12:45:07.173377+00 f t 50000.00 1 50000.00 4288 84 \N 4340 +29984 2025-07-23 18:47:58.869479+00 2025-07-23 18:47:58.8695+00 f t 50000.00 1 50000.00 4151 84 \N 4229 +30692 2025-07-26 13:38:27.281253+00 2025-07-26 13:38:27.281261+00 f t 42000.00 1 42000.00 4293 82 \N 4343 +30693 2025-07-26 13:38:27.286977+00 2025-07-26 13:38:27.286986+00 f t 7700.00 1 7700.00 4293 93 \N 4343 +30099 2025-07-24 10:53:39.938729+00 2025-07-24 10:53:39.938738+00 f t 62000.00 1 62000.00 4179 106 \N 4247 +30105 2025-07-24 11:04:21.68245+00 2025-07-24 11:04:21.68246+00 f t 50000.00 1 50000.00 4180 84 \N 4248 +30106 2025-07-24 11:04:21.687461+00 2025-07-24 11:04:21.687473+00 f t 62000.00 1 62000.00 4180 106 \N 4248 +30694 2025-07-26 13:38:27.29184+00 2025-07-26 13:38:27.291849+00 f t 21000.00 1 21000.00 4293 109 \N 4343 +30695 2025-07-26 13:38:27.296297+00 2025-07-26 13:38:27.296305+00 f t 12000.00 1 12000.00 4293 146 \N 4343 +30713 2025-07-26 13:54:27.67202+00 2025-07-26 13:54:27.67203+00 f t 42000.00 1 42000.00 4294 82 \N 4344 +30716 2025-07-26 14:33:11.735002+00 2025-07-26 14:33:11.735011+00 f t 42000.00 1 42000.00 4295 82 \N 4345 +30717 2025-07-26 14:33:11.739615+00 2025-07-26 14:33:11.739622+00 f t 7500.00 1 7500.00 4295 85 \N 4345 +30721 2025-07-26 14:41:46.644534+00 2025-07-26 14:41:46.644543+00 f t 42000.00 1 42000.00 4296 82 \N 3688 +30723 2025-07-26 14:57:47.392853+00 2025-07-26 14:57:47.392861+00 f t 50000.00 1 50000.00 4299 84 \N 4346 +30729 2025-07-26 15:02:32.748065+00 2025-07-26 15:02:32.748074+00 f t 50000.00 1 50000.00 4300 84 \N 4347 +30735 2025-07-26 15:06:49.579586+00 2025-07-26 15:06:49.579594+00 f t 50000.00 1 50000.00 4301 84 \N 4348 +30212 2025-07-24 20:00:33.449366+00 2025-07-24 20:00:33.449378+00 f t 42000.00 1 42000.00 4215 82 \N 4269 +30217 2025-07-24 21:48:57.343699+00 2025-07-24 21:48:57.343708+00 f t 42000.00 1 42000.00 4219 82 \N 4273 +30229 2025-07-24 23:31:13.650148+00 2025-07-24 23:31:13.650157+00 f t 50000.00 1 50000.00 4227 84 \N 4279 +30253 2025-07-25 04:03:13.267754+00 2025-07-25 04:03:13.267764+00 f t 27500.00 1 27500.00 4233 83 \N 4283 +30754 2025-07-26 15:39:28.830309+00 2025-07-26 15:39:28.830318+00 f t 50000.00 1 50000.00 4303 84 \N 372 +30313 2025-07-25 13:36:19.249866+00 2025-07-25 13:36:19.249875+00 f t 27500.00 1 27500.00 4244 83 \N 4291 +30324 2025-07-25 14:38:27.867749+00 2025-07-25 14:38:27.867758+00 f t 42000.00 1 42000.00 4247 82 \N 4294 +30325 2025-07-25 14:38:27.872775+00 2025-07-25 14:38:27.872783+00 f t 22500.00 1 22500.00 4247 86 \N 4294 +30362 2025-07-25 15:17:03.738859+00 2025-07-25 15:17:03.738872+00 f t 42000.00 1 42000.00 4251 82 \N 4299 +30363 2025-07-25 15:17:03.747095+00 2025-07-25 15:17:03.747106+00 f t 7500.00 1 7500.00 4251 85 \N 4299 +30875 2025-07-26 16:22:57.872551+00 2025-07-26 16:22:57.872559+00 f t 50000.00 1 50000.00 4307 84 \N 4350 +30889 2025-07-26 16:45:24.39378+00 2025-07-26 16:45:24.393788+00 f t 42000.00 1 42000.00 4309 82 \N 4352 +30890 2025-07-26 16:45:24.399061+00 2025-07-26 16:45:24.399071+00 f t 7700.00 1 7700.00 4309 93 \N 4352 +30892 2025-07-26 16:47:32.715937+00 2025-07-26 16:47:32.715945+00 f t 50000.00 1 50000.00 4311 84 \N 4354 +30894 2025-07-26 16:48:12.76754+00 2025-07-26 16:48:12.767549+00 f t 95000.00 1 95000.00 4310 103 \N 4353 +30906 2025-07-26 18:06:56.585047+00 2025-07-26 18:06:56.585058+00 f t 22500.00 1 22500.00 4312 163 \N 4355 +30914 2025-07-26 18:18:05.19337+00 2025-07-26 18:18:05.193384+00 f t 50000.00 1 50000.00 4313 84 \N 4356 +30915 2025-07-26 18:18:05.201506+00 2025-07-26 18:18:05.201524+00 f t 62000.00 1 62000.00 4313 106 \N 4356 +30917 2025-07-26 18:43:01.053938+00 2025-07-26 18:43:01.053952+00 f t 42000.00 1 42000.00 4314 82 \N 4357 +30923 2025-07-26 18:51:29.562227+00 2025-07-26 18:51:29.562236+00 f t 50000.00 1 50000.00 4315 84 \N 4358 +30927 2025-07-26 19:36:26.859833+00 2025-07-26 19:36:26.859843+00 f t 50000.00 1 50000.00 4316 84 \N 4359 +30932 2025-07-26 20:15:58.423794+00 2025-07-26 20:15:58.423802+00 f t 42000.00 1 42000.00 4319 82 \N 4360 +30933 2025-07-26 20:15:58.429109+00 2025-07-26 20:15:58.429117+00 f t 7700.00 1 7700.00 4319 93 \N 4360 +30934 2025-07-26 20:15:58.432954+00 2025-07-26 20:15:58.432964+00 f t 52000.00 1 52000.00 4319 113 \N 4360 +30935 2025-07-26 20:15:58.437013+00 2025-07-26 20:15:58.43702+00 f t 12000.00 1 12000.00 4319 146 \N 4360 +30938 2025-07-26 22:26:42.261355+00 2025-07-26 22:26:42.261364+00 f t 42000.00 1 42000.00 4325 82 \N 4363 +30939 2025-07-26 22:26:42.266429+00 2025-07-26 22:26:42.266437+00 f t 7500.00 1 7500.00 4325 85 \N 4363 +30948 2025-07-26 22:41:32.198759+00 2025-07-26 22:41:32.198769+00 f t 42000.00 1 42000.00 4326 82 \N 4364 +30949 2025-07-26 22:41:32.204053+00 2025-07-26 22:41:32.204112+00 f t 69000.00 1 69000.00 4326 142 \N 4364 +30970 2025-07-27 02:20:23.875262+00 2025-07-27 02:20:23.875274+00 f t 42000.00 1 42000.00 4330 82 \N 4366 +30971 2025-07-27 02:20:23.881923+00 2025-07-27 02:20:23.881936+00 f t 7700.00 1 7700.00 4330 93 \N 4366 +30972 2025-07-27 02:20:23.887169+00 2025-07-27 02:20:23.887178+00 f t 21000.00 1 21000.00 4330 109 \N 4366 +29181 2025-07-21 12:06:54.465985+00 2025-07-21 12:06:54.465992+00 f t 12000.00 1 12000.00 4012 146 \N 4115 +29588 2025-07-22 15:22:29.752824+00 2025-07-22 15:22:29.752836+00 f t 42000.00 1 42000.00 4074 82 \N 4165 +29589 2025-07-22 15:22:29.758706+00 2025-07-22 15:22:29.758717+00 f t 7500.00 1 7500.00 4074 85 \N 4165 +29595 2025-07-22 15:43:57.600215+00 2025-07-22 15:43:57.600223+00 f t 62000.00 1 62000.00 4077 106 \N 4167 +29186 2025-07-21 12:07:32.843117+00 2025-07-21 12:07:32.843125+00 f t 42000.00 1 42000.00 4014 82 \N 4116 +29187 2025-07-21 12:07:32.848164+00 2025-07-21 12:07:32.848172+00 f t 7700.00 1 7700.00 4014 93 \N 4116 +29188 2025-07-21 12:07:32.852715+00 2025-07-21 12:07:32.852722+00 f t 21000.00 1 21000.00 4014 109 \N 4116 +29189 2025-07-21 12:07:32.85673+00 2025-07-21 12:07:32.856738+00 f t 12000.00 1 12000.00 4014 146 \N 4116 +29191 2025-07-21 12:09:59.304642+00 2025-07-21 12:09:59.304651+00 f t 50000.00 1 50000.00 4013 84 \N 4117 +29611 2025-07-22 16:34:03.17266+00 2025-07-22 16:34:03.172673+00 f t 42000.00 1 42000.00 4083 82 \N 4172 +29195 2025-07-21 12:42:42.406942+00 2025-07-21 12:42:42.406951+00 f t 50000.00 1 50000.00 4017 84 \N 4119 +29635 2025-07-22 16:41:31.297788+00 2025-07-22 16:41:31.297796+00 f t 42000.00 1 42000.00 4084 82 \N 4173 +29636 2025-07-22 16:41:31.302438+00 2025-07-22 16:41:31.302449+00 f t 42000.00 1 42000.00 4084 82 \N 4174 +29637 2025-07-22 16:41:31.306201+00 2025-07-22 16:41:31.306209+00 f t 42000.00 1 42000.00 4084 82 \N 4175 +29654 2025-07-22 18:10:32.907709+00 2025-07-22 18:10:32.907722+00 f t 42000.00 1 42000.00 4091 82 \N 4180 +29655 2025-07-22 18:10:32.914288+00 2025-07-22 18:10:32.914298+00 f t 69000.00 1 69000.00 4091 142 \N 4180 +29683 2025-07-22 21:55:45.745054+00 2025-07-22 21:55:45.745063+00 f t 42000.00 1 42000.00 4105 82 \N 4189 +29684 2025-07-22 21:55:45.749829+00 2025-07-22 21:55:45.749836+00 f t 7700.00 1 7700.00 4105 93 \N 4189 +29685 2025-07-22 21:55:45.754295+00 2025-07-22 21:55:45.754303+00 f t 33000.00 1 33000.00 4105 111 \N 4189 +29686 2025-07-22 21:55:45.75852+00 2025-07-22 21:55:45.75853+00 f t 12000.00 1 12000.00 4105 146 \N 4189 +29220 2025-07-21 13:09:30.874468+00 2025-07-21 13:09:30.874479+00 f t 42000.00 1 42000.00 4018 82 \N 4120 +29221 2025-07-21 13:09:30.880419+00 2025-07-21 13:09:30.880427+00 f t 7500.00 1 7500.00 4018 85 \N 4120 +29222 2025-07-21 13:09:30.884718+00 2025-07-21 13:09:30.88473+00 f t 22500.00 1 22500.00 4018 86 \N 4120 +29224 2025-07-21 13:41:17.649604+00 2025-07-21 13:41:17.649612+00 f t 62000.00 1 62000.00 4020 106 \N 4123 +29749 2025-07-23 03:36:01.848659+00 2025-07-23 03:36:01.848673+00 f t 42000.00 1 42000.00 4122 82 \N 4203 +29750 2025-07-23 03:36:01.857738+00 2025-07-23 03:36:01.857752+00 f t 7500.00 1 7500.00 4122 85 \N 4203 +29234 2025-07-21 13:48:35.52939+00 2025-07-21 13:48:35.529398+00 f t 42000.00 1 42000.00 4021 82 \N 4124 +29244 2025-07-21 14:42:18.958826+00 2025-07-21 14:42:18.958839+00 f t 42000.00 1 42000.00 4024 82 \N 4125 +29245 2025-07-21 14:42:18.96492+00 2025-07-21 14:42:18.964931+00 f t 42000.00 1 42000.00 4024 82 \N 4126 +29856 2025-07-23 10:22:47.564555+00 2025-07-23 10:22:47.564568+00 f t 42000.00 1 42000.00 4132 82 \N 4212 +29857 2025-07-23 10:22:47.570072+00 2025-07-23 10:22:47.570084+00 f t 7500.00 1 7500.00 4132 85 \N 4212 +29858 2025-07-23 10:22:47.575169+00 2025-07-23 10:22:47.575181+00 f t 22500.00 1 22500.00 4132 88 \N 4212 +29859 2025-07-23 10:22:47.579629+00 2025-07-23 10:22:47.579637+00 f t 22500.00 1 22500.00 4132 163 \N 4212 +29269 2025-07-21 15:41:39.440018+00 2025-07-21 15:41:39.440027+00 f t 42000.00 1 42000.00 4030 82 \N 4129 +29270 2025-07-21 15:41:39.444462+00 2025-07-21 15:41:39.44447+00 f t 70000.00 1 70000.00 4030 108 \N 4129 +29271 2025-07-21 15:41:39.44846+00 2025-07-21 15:41:39.448469+00 f t 22500.00 1 22500.00 4030 163 \N 4129 +29277 2025-07-21 16:40:31.919522+00 2025-07-21 16:40:31.919535+00 f t 42000.00 1 42000.00 4034 82 \N 4134 +29279 2025-07-21 17:13:46.029512+00 2025-07-21 17:13:46.029522+00 f t 42000.00 1 42000.00 4036 82 \N 4135 +29283 2025-07-21 17:25:00.39202+00 2025-07-21 17:25:00.392029+00 f t 62000.00 1 62000.00 4037 106 \N 4136 +29963 2025-07-23 13:42:57.629076+00 2025-07-23 13:42:57.629085+00 f t 42000.00 1 42000.00 4139 82 \N 4218 +29974 2025-07-23 17:56:09.389118+00 2025-07-23 17:56:09.389127+00 f t 42000.00 1 42000.00 4149 82 \N 4228 +29288 2025-07-21 17:34:51.526935+00 2025-07-21 17:34:51.526943+00 f t 42000.00 1 42000.00 4038 82 \N 4137 +29289 2025-07-21 17:34:51.531802+00 2025-07-21 17:34:51.53181+00 f t 7700.00 1 7700.00 4038 93 \N 4137 +29290 2025-07-21 17:34:51.536639+00 2025-07-21 17:34:51.536646+00 f t 41000.00 1 41000.00 4038 110 \N 4137 +29291 2025-07-21 17:34:51.540623+00 2025-07-21 17:34:51.540631+00 f t 12000.00 1 12000.00 4038 146 \N 4137 +29975 2025-07-23 17:56:09.394573+00 2025-07-23 17:56:09.394581+00 f t 7500.00 1 7500.00 4149 85 \N 4228 +29294 2025-07-21 18:01:00.18671+00 2025-07-21 18:01:00.186719+00 f t 42000.00 1 42000.00 4041 82 \N 4138 +29295 2025-07-21 18:01:00.193588+00 2025-07-21 18:01:00.193598+00 f t 22500.00 1 22500.00 4041 163 \N 4138 +29297 2025-07-21 18:35:36.796734+00 2025-07-21 18:35:36.796743+00 f t 42000.00 1 42000.00 4043 82 \N 4139 +29304 2025-07-21 20:00:26.409764+00 2025-07-21 20:00:26.409777+00 f t 42000.00 1 42000.00 4045 82 \N 4140 +29305 2025-07-21 20:00:26.41653+00 2025-07-21 20:00:26.416543+00 f t 7500.00 1 7500.00 4045 85 \N 4140 +29308 2025-07-21 20:33:04.612684+00 2025-07-21 20:33:04.612693+00 f t 42000.00 1 42000.00 4048 82 \N 4141 +29309 2025-07-21 20:33:04.618275+00 2025-07-21 20:33:04.618285+00 f t 22500.00 1 22500.00 4048 86 \N 4141 +29311 2025-07-21 22:11:00.780451+00 2025-07-21 22:11:00.780462+00 f t 70000.00 1 70000.00 4049 108 \N 4142 +30054 2025-07-24 00:27:25.418671+00 2025-07-24 00:27:25.418684+00 f t 27500.00 1 27500.00 4170 83 \N 4239 +29318 2025-07-21 22:12:14.924959+00 2025-07-21 22:12:14.92497+00 f t 42000.00 1 42000.00 4050 82 \N 4143 +29320 2025-07-21 22:27:50.781111+00 2025-07-21 22:27:50.78112+00 f t 27500.00 1 27500.00 4051 83 \N 4144 +30076 2025-07-24 05:08:19.152292+00 2025-07-24 05:08:19.152301+00 f t 42000.00 1 42000.00 4177 82 \N 4245 +30138 2025-07-24 13:36:29.284369+00 2025-07-24 13:36:29.284381+00 f t 42000.00 1 42000.00 4189 82 \N 4252 +30139 2025-07-24 13:36:29.291428+00 2025-07-24 13:36:29.291441+00 f t 7500.00 1 7500.00 4189 85 \N 4252 +30164 2025-07-24 17:20:09.550011+00 2025-07-24 17:20:09.550021+00 f t 62000.00 1 62000.00 4200 106 \N 4261 +30200 2025-07-24 19:32:18.245865+00 2025-07-24 19:32:18.245873+00 f t 42000.00 1 42000.00 4209 82 \N 4265 +30201 2025-07-24 19:32:18.251667+00 2025-07-24 19:32:18.251676+00 f t 7700.00 1 7700.00 4209 93 \N 4265 +30202 2025-07-24 19:32:18.256136+00 2025-07-24 19:32:18.256144+00 f t 52000.00 1 52000.00 4209 113 \N 4265 +30203 2025-07-24 19:32:18.259994+00 2025-07-24 19:32:18.26+00 f t 12000.00 1 12000.00 4209 146 \N 4265 +30208 2025-07-24 19:57:42.048663+00 2025-07-24 19:57:42.048673+00 f t 50000.00 1 50000.00 4214 84 \N 4268 +30225 2025-07-24 21:58:51.009556+00 2025-07-24 21:58:51.009568+00 f t 42000.00 1 42000.00 4221 82 \N 4275 +29356 2025-07-22 00:08:20.692739+00 2025-07-22 00:08:20.692748+00 f t 50000.00 1 50000.00 4054 84 \N 4146 +30235 2025-07-25 00:24:25.369141+00 2025-07-25 00:24:25.369152+00 f t 62000.00 1 62000.00 4228 106 \N 4280 +29359 2025-07-22 01:30:54.57377+00 2025-07-22 01:30:54.573783+00 f t 42000.00 1 42000.00 4058 82 \N 4150 +29360 2025-07-22 01:30:54.582628+00 2025-07-22 01:30:54.582641+00 f t 69000.00 1 69000.00 4058 142 \N 4150 +30514 2025-07-25 16:22:52.881506+00 2025-07-25 16:22:52.881518+00 f t 42000.00 1 42000.00 4257 82 \N 176 +29606 2025-07-22 16:00:29.132051+00 2025-07-22 16:00:29.132064+00 f t 42000.00 1 42000.00 4079 82 \N 4168 +29607 2025-07-22 16:00:29.143053+00 2025-07-22 16:00:29.143068+00 f t 16800.00 1 16800.00 4079 96 \N 4168 +30517 2025-07-25 16:23:08.079804+00 2025-07-25 16:23:08.079815+00 f t 42000.00 1 42000.00 4256 82 \N 4308 +30518 2025-07-25 16:23:08.085668+00 2025-07-25 16:23:08.085676+00 f t 7500.00 1 7500.00 4256 85 \N 4308 +29697 2025-07-23 00:05:42.90126+00 2025-07-23 00:05:42.901271+00 f t 42000.00 1 42000.00 4111 82 \N 4195 +29698 2025-07-23 00:05:42.906715+00 2025-07-23 00:05:42.906725+00 f t 13000.00 1 13000.00 4111 89 \N 4195 +30547 2025-07-25 16:53:47.268847+00 2025-07-25 16:53:47.268857+00 f t 42000.00 1 42000.00 4260 82 \N 4313 +30548 2025-07-25 16:53:47.273157+00 2025-07-25 16:53:47.273164+00 f t 7700.00 1 7700.00 4260 93 \N 4313 +30549 2025-07-25 16:53:47.276924+00 2025-07-25 16:53:47.276931+00 f t 21000.00 1 21000.00 4260 109 \N 4313 +30550 2025-07-25 16:53:47.280474+00 2025-07-25 16:53:47.280481+00 f t 12000.00 1 12000.00 4260 146 \N 4313 +30553 2025-07-25 17:23:26.299039+00 2025-07-25 17:23:26.299048+00 f t 42000.00 1 42000.00 4263 82 \N 4314 +30554 2025-07-25 17:23:26.304745+00 2025-07-25 17:23:26.304757+00 f t 22500.00 1 22500.00 4263 86 \N 4314 +29501 2025-07-22 03:13:17.495928+00 2025-07-22 03:13:17.495937+00 f t 42000.00 1 42000.00 4060 82 \N 4154 +29502 2025-07-22 03:13:17.500759+00 2025-07-22 03:13:17.500767+00 f t 22500.00 1 22500.00 4060 88 \N 4154 +29503 2025-07-22 03:13:17.505092+00 2025-07-22 03:13:17.5051+00 f t 22500.00 1 22500.00 4060 163 \N 4154 +29776 2025-07-23 08:11:58.499901+00 2025-07-23 08:11:58.499909+00 f t 50000.00 1 50000.00 4128 84 \N 4209 +30583 2025-07-25 21:31:32.003809+00 2025-07-25 21:31:32.003819+00 f t 42000.00 1 42000.00 4267 82 \N 4319 +30584 2025-07-25 21:31:32.009502+00 2025-07-25 21:31:32.009512+00 f t 7500.00 1 7500.00 4267 85 \N 4319 +29518 2025-07-22 05:48:49.967372+00 2025-07-22 05:48:49.967382+00 f t 42000.00 1 42000.00 4062 82 \N 4157 +29519 2025-07-22 05:48:49.972388+00 2025-07-22 05:48:49.972396+00 f t 7500.00 1 7500.00 4062 85 \N 4157 +30585 2025-07-25 21:31:32.014864+00 2025-07-25 21:31:32.014876+00 f t 22500.00 1 22500.00 4267 86 \N 4319 +30591 2025-07-25 21:53:25.836412+00 2025-07-25 21:53:25.83642+00 f t 27500.00 1 27500.00 4268 83 \N 4320 +30593 2025-07-25 23:27:25.9156+00 2025-07-25 23:27:25.915612+00 f t 42000.00 1 42000.00 4270 82 \N 4322 +30595 2025-07-26 00:04:40.256653+00 2025-07-26 00:04:40.256661+00 f t 42000.00 1 42000.00 4273 82 \N 4326 +29526 2025-07-22 12:08:34.949+00 2025-07-22 12:08:34.949012+00 f t 50000.00 1 50000.00 4068 84 \N 4160 +29865 2025-07-23 11:56:49.337728+00 2025-07-23 11:56:49.337736+00 f t 42000.00 1 42000.00 4136 82 \N 4216 +30602 2025-07-26 00:33:16.473075+00 2025-07-26 00:33:16.473084+00 f t 42000.00 1 42000.00 4275 82 \N 4328 +30603 2025-07-26 00:33:16.478882+00 2025-07-26 00:33:16.478892+00 f t 7700.00 1 7700.00 4275 91 \N 4328 +30605 2025-07-26 02:26:55.77049+00 2025-07-26 02:26:55.770499+00 f t 50000.00 1 50000.00 4279 84 \N 4334 +30620 2025-07-26 10:03:55.320445+00 2025-07-26 10:03:55.320453+00 f t 42000.00 1 42000.00 4282 82 \N 4336 +30621 2025-07-26 10:03:55.324838+00 2025-07-26 10:03:55.324846+00 f t 22500.00 1 22500.00 4282 86 \N 4336 +29954 2025-07-23 12:15:13.555811+00 2025-07-23 12:15:13.555823+00 f t 42000.00 1 42000.00 4137 82 \N 4217 +29955 2025-07-23 12:15:13.562734+00 2025-07-23 12:15:13.562743+00 f t 7700.00 1 7700.00 4137 91 \N 4217 +29956 2025-07-23 12:15:13.567643+00 2025-07-23 12:15:13.567651+00 f t 40500.00 1 40500.00 4137 120 \N 4217 +29957 2025-07-23 12:15:13.572246+00 2025-07-23 12:15:13.572255+00 f t 13000.00 1 13000.00 4137 89 \N 4217 +29969 2025-07-23 14:50:36.230753+00 2025-07-23 14:50:36.230764+00 f t 42000.00 1 42000.00 4143 82 \N 4222 +30649 2025-07-26 13:24:41.866148+00 2025-07-26 13:24:41.866158+00 f t 42000.00 1 42000.00 4291 82 \N 4341 +30071 2025-07-24 01:51:08.543166+00 2025-07-24 01:51:08.543176+00 f t 42000.00 1 42000.00 4172 82 \N 4241 +30072 2025-07-24 01:51:08.549063+00 2025-07-24 01:51:08.549072+00 f t 70000.00 1 70000.00 4172 108 \N 4241 +29572 2025-07-22 14:43:23.024463+00 2025-07-22 14:43:23.024472+00 f t 42000.00 1 42000.00 4072 82 \N 4164 +29573 2025-07-22 14:43:23.030084+00 2025-07-22 14:43:23.030092+00 f t 7700.00 1 7700.00 4072 91 \N 4164 +29574 2025-07-22 14:43:23.034471+00 2025-07-22 14:43:23.034478+00 f t 7700.00 1 7700.00 4072 93 \N 4164 +29575 2025-07-22 14:43:23.03896+00 2025-07-22 14:43:23.038969+00 f t 21000.00 1 21000.00 4072 109 \N 4164 +29576 2025-07-22 14:43:23.043243+00 2025-07-22 14:43:23.043253+00 f t 12000.00 1 12000.00 4072 146 \N 4164 +30677 2025-07-26 13:36:25.812711+00 2025-07-26 13:36:25.812722+00 f t 42000.00 1 42000.00 4292 82 \N 4342 +30678 2025-07-26 13:36:25.817879+00 2025-07-26 13:36:25.817887+00 f t 7700.00 1 7700.00 4292 93 \N 4342 +30679 2025-07-26 13:36:25.823398+00 2025-07-26 13:36:25.823406+00 f t 12000.00 1 12000.00 4292 146 \N 4342 +30118 2025-07-24 11:26:26.221251+00 2025-07-24 11:26:26.221265+00 f t 50000.00 1 50000.00 4181 84 \N 4249 +30214 2025-07-24 21:44:56.591947+00 2025-07-24 21:44:56.591959+00 f t 42000.00 1 42000.00 4218 82 \N 4272 +30278 2025-07-25 08:57:35.524558+00 2025-07-25 08:57:35.524568+00 f t 50000.00 1 50000.00 4236 84 \N 4285 +30301 2025-07-25 10:15:52.124657+00 2025-07-25 10:15:52.124667+00 f t 42000.00 1 42000.00 4239 82 \N 4287 +30302 2025-07-25 10:15:52.130387+00 2025-07-25 10:15:52.130396+00 f t 7500.00 1 7500.00 4239 85 \N 4287 +30311 2025-07-25 12:40:56.850274+00 2025-07-25 12:40:56.850286+00 f t 42000.00 1 42000.00 4242 82 \N 4289 +30358 2025-07-25 15:16:01.466976+00 2025-07-25 15:16:01.466989+00 f t 42000.00 1 42000.00 4250 82 \N 4297 +30359 2025-07-25 15:16:01.474813+00 2025-07-25 15:16:01.474825+00 f t 42000.00 1 42000.00 4250 82 \N 4298 +30868 2025-07-26 16:16:11.143214+00 2025-07-26 16:16:11.143223+00 f t 42000.00 1 42000.00 4305 82 \N 4349 +30869 2025-07-26 16:16:11.149388+00 2025-07-26 16:16:11.149401+00 f t 7500.00 1 7500.00 4305 85 \N 4349 +30870 2025-07-26 16:16:11.154784+00 2025-07-26 16:16:11.154792+00 f t 22500.00 1 22500.00 4305 86 \N 4349 +30454 2025-07-25 16:01:30.489573+00 2025-07-25 16:01:30.489588+00 f t 42000.00 1 42000.00 4254 82 \N 4303 +30455 2025-07-25 16:01:30.505585+00 2025-07-25 16:01:30.505597+00 f t 7500.00 1 7500.00 4254 85 \N 4303 +30456 2025-07-25 16:01:30.511118+00 2025-07-25 16:01:30.511152+00 f t 22500.00 1 22500.00 4254 163 \N 4303 +30457 2025-07-25 16:01:30.522163+00 2025-07-25 16:01:30.522174+00 f t 42000.00 1 42000.00 4254 82 \N 4304 +30458 2025-07-25 16:01:30.527576+00 2025-07-25 16:01:30.527587+00 f t 7500.00 1 7500.00 4254 85 \N 4304 +30459 2025-07-25 16:01:30.545647+00 2025-07-25 16:01:30.545657+00 f t 22500.00 1 22500.00 4254 163 \N 4304 +30880 2025-07-26 16:41:46.304083+00 2025-07-26 16:41:46.304092+00 f t 42000.00 1 42000.00 4308 82 \N 4351 +30881 2025-07-26 16:41:46.308873+00 2025-07-26 16:41:46.308881+00 f t 7500.00 1 7500.00 4308 85 \N 4351 +30904 2025-07-26 18:06:56.574813+00 2025-07-26 18:06:56.574825+00 f t 42000.00 1 42000.00 4312 82 \N 4355 +30905 2025-07-26 18:06:56.580256+00 2025-07-26 18:06:56.580267+00 f t 22500.00 1 22500.00 4312 88 \N 4355 +30973 2025-07-27 02:20:23.892757+00 2025-07-27 02:20:23.892768+00 f t 12000.00 1 12000.00 4330 146 \N 4366 +32435 2025-07-30 21:58:45.0967+00 2025-07-30 21:58:45.096712+00 f t 42000.00 1 42000.00 4589 82 \N 4576 +30978 2025-07-27 03:12:14.743607+00 2025-07-27 03:12:14.743617+00 f t 42000.00 1 42000.00 4333 82 \N 4367 +30979 2025-07-27 03:12:14.749615+00 2025-07-27 03:12:14.749623+00 f t 12000.00 1 12000.00 4333 116 \N 4367 +30980 2025-07-27 03:12:14.754598+00 2025-07-27 03:12:14.754609+00 f t 7700.00 1 7700.00 4333 93 \N 4367 +30981 2025-07-27 03:12:14.759456+00 2025-07-27 03:12:14.759467+00 f t 12000.00 1 12000.00 4333 146 \N 4367 +32446 2025-07-31 00:13:48.223561+00 2025-07-31 00:13:48.223571+00 f t 95000.00 1 95000.00 4595 103 \N 4581 +30986 2025-07-27 06:03:07.854181+00 2025-07-27 06:03:07.854196+00 f t 70000.00 1 70000.00 4336 108 \N 4370 +32469 2025-07-31 00:40:17.89787+00 2025-07-31 00:40:17.897879+00 f t 42000.00 1 42000.00 4596 82 \N 4582 +32470 2025-07-31 00:40:17.903652+00 2025-07-31 00:40:17.903662+00 f t 22500.00 1 22500.00 4596 86 \N 4582 +30995 2025-07-27 13:07:09.356792+00 2025-07-27 13:07:09.356801+00 f t 42000.00 1 42000.00 4340 82 \N 4372 +31488 2025-07-28 12:03:24.611155+00 2025-07-28 12:03:24.611164+00 f t 42000.00 1 42000.00 4403 82 \N 4417 +31496 2025-07-28 12:38:06.8629+00 2025-07-28 12:38:06.862911+00 f t 12000.00 1 12000.00 4404 146 \N 4418 +31499 2025-07-28 13:54:37.882502+00 2025-07-28 13:54:37.882511+00 f t 42000.00 1 42000.00 4407 82 \N 4419 +31500 2025-07-28 13:54:37.887201+00 2025-07-28 13:54:37.887209+00 f t 7500.00 1 7500.00 4407 85 \N 4419 +31503 2025-07-28 14:29:40.169617+00 2025-07-28 14:29:40.169624+00 f t 42000.00 1 42000.00 4408 82 \N 4420 +31504 2025-07-28 14:29:40.175007+00 2025-07-28 14:29:40.175018+00 f t 22500.00 1 22500.00 4408 87 \N 4420 +31516 2025-07-28 15:05:08.224626+00 2025-07-28 15:05:08.224637+00 f t 50000.00 1 50000.00 4410 84 \N 4429 +31518 2025-07-28 15:19:24.035151+00 2025-07-28 15:19:24.035166+00 f t 42000.00 1 42000.00 4418 82 \N 4431 +31530 2025-07-28 15:30:43.205184+00 2025-07-28 15:30:43.205193+00 f t 42000.00 1 42000.00 4419 82 \N 4432 +32520 2025-07-31 03:14:07.354175+00 2025-07-31 03:14:07.354185+00 f t 62000.00 1 62000.00 4605 106 \N 4589 +31547 2025-07-28 15:39:35.098593+00 2025-07-28 15:39:35.098605+00 f t 42000.00 1 42000.00 4423 82 \N 4435 +31548 2025-07-28 15:39:35.105299+00 2025-07-28 15:39:35.105308+00 f t 7500.00 1 7500.00 4423 85 \N 4435 +31554 2025-07-28 15:45:49.428933+00 2025-07-28 15:45:49.428941+00 f t 95000.00 1 95000.00 4422 103 \N 4434 +32537 2025-07-31 12:24:00.957645+00 2025-07-31 12:24:00.957657+00 f t 42000.00 1 42000.00 4619 82 \N 4597 +32552 2025-07-31 13:33:28.512362+00 2025-07-31 13:33:28.512371+00 f t 95000.00 1 95000.00 4623 103 \N 4603 +31570 2025-07-28 17:38:59.037121+00 2025-07-28 17:38:59.03713+00 f t 42000.00 1 42000.00 4434 82 \N 4444 +32561 2025-07-31 13:56:23.94973+00 2025-07-31 13:56:23.949742+00 f t 42000.00 1 42000.00 4625 82 \N 4605 +31642 2025-07-28 18:03:47.984047+00 2025-07-28 18:03:47.984057+00 f t 50000.00 1 50000.00 4438 84 \N 4450 +31654 2025-07-28 18:12:09.891634+00 2025-07-28 18:12:09.891643+00 f t 42000.00 1 42000.00 4439 82 \N 4451 +31655 2025-07-28 18:12:09.89682+00 2025-07-28 18:12:09.89683+00 f t 7700.00 1 7700.00 4439 93 \N 4451 +31656 2025-07-28 18:12:09.901406+00 2025-07-28 18:12:09.901414+00 f t 12000.00 1 12000.00 4439 146 \N 4451 +31723 2025-07-29 00:04:46.688491+00 2025-07-29 00:04:46.688503+00 f t 50000.00 1 50000.00 4462 84 \N 4302 +31729 2025-07-29 00:12:34.06176+00 2025-07-29 00:12:34.061773+00 f t 50000.00 1 50000.00 4465 84 \N 4471 +31732 2025-07-29 01:41:33.78043+00 2025-07-29 01:41:33.780441+00 f t 42000.00 1 42000.00 4470 82 \N 4473 +31733 2025-07-29 01:41:33.788825+00 2025-07-29 01:41:33.788834+00 f t 7500.00 1 7500.00 4470 85 \N 4473 +31741 2025-07-29 02:13:42.904194+00 2025-07-29 02:13:42.904205+00 f t 27500.00 1 27500.00 4471 83 \N 4474 +31789 2025-07-29 02:33:30.941243+00 2025-07-29 02:33:30.941256+00 f t 42000.00 1 42000.00 4475 82 \N 4480 +31790 2025-07-29 02:33:30.948604+00 2025-07-29 02:33:30.948618+00 f t 29000.00 1 29000.00 4475 123 \N 4480 +31791 2025-07-29 02:33:30.954609+00 2025-07-29 02:33:30.954623+00 f t 13000.00 1 13000.00 4475 89 \N 4480 +31793 2025-07-29 07:53:45.995896+00 2025-07-29 07:53:45.99591+00 f t 70000.00 1 70000.00 4479 97 \N 4485 +31800 2025-07-29 10:00:54.405704+00 2025-07-29 10:00:54.405714+00 f t 42000.00 1 42000.00 4481 82 \N 4486 +31801 2025-07-29 10:00:54.411051+00 2025-07-29 10:00:54.41106+00 f t 7500.00 1 7500.00 4481 85 \N 4486 +31803 2025-07-29 12:48:17.649982+00 2025-07-29 12:48:17.649998+00 f t 50000.00 1 50000.00 4490 84 \N 4488 +31811 2025-07-29 13:03:16.155044+00 2025-07-29 13:03:16.155055+00 f t 62000.00 1 62000.00 4489 106 \N 4487 +31817 2025-07-29 13:04:17.950785+00 2025-07-29 13:04:17.950798+00 f t 50000.00 1 50000.00 4491 84 \N 4490 +31862 2025-07-29 15:39:00.745808+00 2025-07-29 15:39:00.745817+00 f t 27500.00 1 27500.00 4503 83 \N 4499 +31187 2025-07-27 14:16:55.399273+00 2025-07-27 14:16:55.399286+00 f t 42000.00 1 42000.00 4342 82 \N 4374 +31188 2025-07-27 14:16:55.404885+00 2025-07-27 14:16:55.404895+00 f t 7700.00 1 7700.00 4342 93 \N 4374 +31189 2025-07-27 14:16:55.409784+00 2025-07-27 14:16:55.409793+00 f t 21000.00 1 21000.00 4342 109 \N 4374 +31190 2025-07-27 14:16:55.414711+00 2025-07-27 14:16:55.414722+00 f t 12000.00 1 12000.00 4342 146 \N 4374 +31197 2025-07-27 14:18:42.768665+00 2025-07-27 14:18:42.768675+00 f t 42000.00 1 42000.00 4343 82 \N 4375 +31198 2025-07-27 14:18:42.773148+00 2025-07-27 14:18:42.773156+00 f t 87500.00 1 87500.00 4343 141 \N 4375 +31895 2025-07-29 15:51:02.676331+00 2025-07-29 15:51:02.676345+00 f t 50000.00 1 50000.00 4506 84 \N 4501 +31216 2025-07-27 15:32:45.645387+00 2025-07-27 15:32:45.645401+00 f t 42000.00 1 42000.00 4350 82 \N 4380 +31217 2025-07-27 15:32:45.652953+00 2025-07-27 15:32:45.652966+00 f t 7700.00 1 7700.00 4350 93 \N 4380 +31218 2025-07-27 15:32:45.659953+00 2025-07-27 15:32:45.659965+00 f t 21000.00 1 21000.00 4350 109 \N 4380 +31219 2025-07-27 15:32:45.668507+00 2025-07-27 15:32:45.668518+00 f t 12000.00 1 12000.00 4350 146 \N 4380 +31907 2025-07-29 15:51:53.164443+00 2025-07-29 15:51:53.164455+00 f t 50000.00 1 50000.00 4505 84 \N 4500 +31909 2025-07-29 15:56:52.633264+00 2025-07-29 15:56:52.633277+00 f t 42000.00 1 42000.00 4507 82 \N 4502 +31248 2025-07-27 17:00:07.891087+00 2025-07-27 17:00:07.891102+00 f t 42000.00 1 42000.00 4353 82 \N 4382 +31937 2025-07-29 16:01:18.375633+00 2025-07-29 16:01:18.375643+00 f t 50000.00 1 50000.00 4509 84 \N 4504 +31254 2025-07-27 17:04:08.116897+00 2025-07-27 17:04:08.116946+00 f t 42000.00 1 42000.00 4354 82 \N 4383 +31941 2025-07-29 16:25:08.632383+00 2025-07-29 16:25:08.632395+00 f t 62000.00 1 62000.00 4511 106 \N 4505 +31944 2025-07-29 18:36:47.130064+00 2025-07-29 18:36:47.130078+00 f t 93750.00 1 93750.00 4520 90 \N 4509 +31945 2025-07-29 18:36:47.137303+00 2025-07-29 18:36:47.137312+00 f t 42000.00 1 42000.00 4520 82 \N 4509 +31947 2025-07-29 19:07:16.084017+00 2025-07-29 19:07:16.084026+00 f t 70000.00 1 70000.00 4521 97 \N 4510 +31433 2025-07-28 03:46:58.635022+00 2025-07-28 03:46:58.635034+00 f t 50000.00 1 50000.00 4394 84 \N 4410 +32430 2025-07-30 21:56:19.201475+00 2025-07-30 21:56:19.201485+00 f t 42000.00 1 42000.00 4587 82 \N 4575 +31279 2025-07-27 17:29:18.552341+00 2025-07-27 17:29:18.552349+00 f t 42000.00 1 42000.00 4355 82 \N 4384 +31280 2025-07-27 17:29:18.557568+00 2025-07-27 17:29:18.557575+00 f t 7700.00 1 7700.00 4355 93 \N 4384 +31281 2025-07-27 17:29:18.561963+00 2025-07-27 17:29:18.561971+00 f t 52500.00 1 52500.00 4355 114 \N 4384 +31282 2025-07-27 17:29:18.566798+00 2025-07-27 17:29:18.566806+00 f t 12000.00 1 12000.00 4355 146 \N 4384 +31284 2025-07-27 17:40:27.866508+00 2025-07-27 17:40:27.866518+00 f t 50000.00 1 50000.00 4356 84 \N 4385 +31286 2025-07-27 18:12:12.183695+00 2025-07-27 18:12:12.183708+00 f t 50000.00 1 50000.00 4357 84 \N 4387 +31292 2025-07-27 18:35:10.477218+00 2025-07-27 18:35:10.477229+00 f t 50000.00 1 50000.00 4359 84 \N 4389 +31295 2025-07-27 18:40:12.845092+00 2025-07-27 18:40:12.845102+00 f t 50000.00 1 50000.00 4360 84 \N 4390 +31298 2025-07-27 18:43:02.781004+00 2025-07-27 18:43:02.781013+00 f t 50000.00 1 50000.00 4361 84 \N 4391 +31313 2025-07-27 20:27:06.883096+00 2025-07-27 20:27:06.883106+00 f t 42000.00 1 42000.00 4363 82 \N 4392 +31314 2025-07-27 20:27:06.888821+00 2025-07-27 20:27:06.888833+00 f t 7700.00 1 7700.00 4363 93 \N 4392 +31315 2025-07-27 20:27:06.894944+00 2025-07-27 20:27:06.894956+00 f t 52500.00 1 52500.00 4363 114 \N 4392 +31316 2025-07-27 20:27:06.901493+00 2025-07-27 20:27:06.901503+00 f t 12000.00 1 12000.00 4363 146 \N 4392 +31318 2025-07-27 20:44:15.567601+00 2025-07-27 20:44:15.567609+00 f t 50000.00 1 50000.00 4365 84 \N 4393 +31320 2025-07-27 21:38:54.564422+00 2025-07-27 21:38:54.56443+00 f t 50000.00 1 50000.00 4370 84 \N 4394 +31563 2025-07-28 16:50:26.60663+00 2025-07-28 16:50:26.606639+00 f t 62000.00 1 62000.00 4427 106 \N 4439 +31565 2025-07-28 16:55:29.01149+00 2025-07-28 16:55:29.011499+00 f t 42000.00 1 42000.00 4429 82 \N 4440 +31567 2025-07-28 17:16:13.550796+00 2025-07-28 17:16:13.550805+00 f t 70000.00 1 70000.00 4430 108 \N 4441 +31596 2025-07-28 17:51:18.754209+00 2025-07-28 17:51:18.754217+00 f t 42000.00 1 42000.00 4436 82 \N 4445 +31597 2025-07-28 17:51:18.758834+00 2025-07-28 17:51:18.758844+00 f t 42000.00 1 42000.00 4436 82 \N 4446 +31598 2025-07-28 17:51:18.762707+00 2025-07-28 17:51:18.762716+00 f t 7500.00 1 7500.00 4436 85 \N 4446 +31599 2025-07-28 17:51:18.766185+00 2025-07-28 17:51:18.766191+00 f t 42000.00 1 42000.00 4436 82 \N 4447 +31600 2025-07-28 17:51:18.770846+00 2025-07-28 17:51:18.770856+00 f t 29000.00 1 29000.00 4436 123 \N 4447 +31601 2025-07-28 17:51:18.775353+00 2025-07-28 17:51:18.775363+00 f t 13000.00 1 13000.00 4436 89 \N 4447 +31626 2025-07-28 17:56:47.219367+00 2025-07-28 17:56:47.219376+00 f t 20500.00 1 20500.00 4437 109 \N 4449 +31627 2025-07-28 17:56:47.225716+00 2025-07-28 17:56:47.225727+00 f t 42000.00 1 42000.00 4437 82 \N 4449 +31628 2025-07-28 17:56:47.230054+00 2025-07-28 17:56:47.230062+00 f t 7700.00 1 7700.00 4437 93 \N 4449 +31629 2025-07-28 17:56:47.234327+00 2025-07-28 17:56:47.234338+00 f t 12000.00 1 12000.00 4437 146 \N 4449 +31369 2025-07-27 22:33:43.079354+00 2025-07-27 22:33:43.079363+00 f t 42000.00 1 42000.00 4373 82 \N 4397 +31370 2025-07-27 22:33:43.08432+00 2025-07-27 22:33:43.084331+00 f t 7700.00 1 7700.00 4373 93 \N 4397 +31371 2025-07-27 22:33:43.088075+00 2025-07-27 22:33:43.088082+00 f t 52500.00 1 52500.00 4373 114 \N 4397 +31372 2025-07-27 22:33:43.091508+00 2025-07-27 22:33:43.091518+00 f t 12000.00 1 12000.00 4373 146 \N 4397 +31673 2025-07-28 18:22:52.675458+00 2025-07-28 18:22:52.675467+00 f t 32500.00 1 32500.00 4440 112 \N 4456 +31395 2025-07-28 00:36:14.415148+00 2025-07-28 00:36:14.41516+00 f t 42000.00 1 42000.00 4378 82 \N 4401 +31396 2025-07-28 00:36:14.420506+00 2025-07-28 00:36:14.420514+00 f t 7700.00 1 7700.00 4378 93 \N 4401 +31397 2025-07-28 00:36:14.425213+00 2025-07-28 00:36:14.425221+00 f t 33000.00 1 33000.00 4378 112 \N 4401 +31398 2025-07-28 00:36:14.429631+00 2025-07-28 00:36:14.42964+00 f t 12000.00 1 12000.00 4378 146 \N 4401 +31674 2025-07-28 18:22:52.680467+00 2025-07-28 18:22:52.680476+00 f t 42000.00 1 42000.00 4440 82 \N 4456 +31675 2025-07-28 18:22:52.684804+00 2025-07-28 18:22:52.684814+00 f t 7700.00 1 7700.00 4440 93 \N 4456 +31676 2025-07-28 18:22:52.689301+00 2025-07-28 18:22:52.689309+00 f t 12000.00 1 12000.00 4440 146 \N 4456 +31678 2025-07-28 19:17:23.073214+00 2025-07-28 19:17:23.073224+00 f t 50000.00 1 50000.00 4442 84 \N 4457 +31681 2025-07-28 19:27:01.66385+00 2025-07-28 19:27:01.663862+00 f t 42000.00 1 42000.00 4443 82 \N 4458 +31682 2025-07-28 19:27:01.67221+00 2025-07-28 19:27:01.672224+00 f t 22500.00 1 22500.00 4443 88 \N 4458 +31685 2025-07-28 19:35:28.443937+00 2025-07-28 19:35:28.443949+00 f t 42000.00 1 42000.00 4444 82 \N 4459 +31686 2025-07-28 19:35:28.449229+00 2025-07-28 19:35:28.449238+00 f t 22500.00 1 22500.00 4444 86 \N 4459 +31408 2025-07-28 00:48:19.401817+00 2025-07-28 00:48:19.401826+00 f t 50000.00 1 50000.00 4379 84 \N 4402 +31693 2025-07-28 21:36:59.803222+00 2025-07-28 21:36:59.803234+00 f t 42000.00 1 42000.00 4451 82 \N 4463 +31694 2025-07-28 21:36:59.80981+00 2025-07-28 21:36:59.809819+00 f t 22500.00 1 22500.00 4451 86 \N 4463 +31698 2025-07-28 21:53:54.017029+00 2025-07-28 21:53:54.017038+00 f t 62000.00 1 62000.00 4452 106 \N 4464 +31700 2025-07-28 22:02:52.488874+00 2025-07-28 22:02:52.488883+00 f t 27500.00 1 27500.00 4453 83 \N 4465 +31415 2025-07-28 02:30:59.978244+00 2025-07-28 02:30:59.978255+00 f t 42000.00 1 42000.00 4385 82 \N 3400 +31416 2025-07-28 02:30:59.984234+00 2025-07-28 02:30:59.984243+00 f t 33000.00 1 33000.00 4385 139 \N 3400 +31417 2025-07-28 02:30:59.989505+00 2025-07-28 02:30:59.989517+00 f t 13000.00 1 13000.00 4385 89 \N 3400 +31704 2025-07-28 22:07:26.685055+00 2025-07-28 22:07:26.685063+00 f t 27500.00 1 27500.00 4454 83 \N 4466 +31710 2025-07-28 23:12:55.857679+00 2025-07-28 23:12:55.85769+00 f t 50000.00 1 50000.00 4458 84 \N 4469 +31423 2025-07-28 02:35:09.768602+00 2025-07-28 02:35:09.768613+00 f t 50000.00 1 50000.00 4388 84 \N 4407 +31714 2025-07-28 23:18:56.317857+00 2025-07-28 23:18:56.317867+00 f t 50000.00 1 50000.00 4460 84 \N 4470 +31426 2025-07-28 02:35:12.270192+00 2025-07-28 02:35:12.270204+00 f t 42000.00 1 42000.00 4387 82 \N 4406 +31427 2025-07-28 02:35:12.276875+00 2025-07-28 02:35:12.276885+00 f t 7500.00 1 7500.00 4387 85 \N 4406 +31830 2025-07-29 14:30:48.649822+00 2025-07-29 14:30:48.649833+00 f t 42000.00 1 42000.00 4496 82 \N 4494 +31831 2025-07-29 14:30:48.656444+00 2025-07-29 14:30:48.65646+00 f t 22500.00 1 22500.00 4496 163 \N 4494 +31844 2025-07-29 14:34:07.539229+00 2025-07-29 14:34:07.539238+00 f t 32500.00 1 32500.00 4495 112 \N 4493 +31845 2025-07-29 14:34:07.545452+00 2025-07-29 14:34:07.545461+00 f t 42000.00 1 42000.00 4495 82 \N 4493 +31846 2025-07-29 14:34:07.550779+00 2025-07-29 14:34:07.550793+00 f t 7700.00 1 7700.00 4495 93 \N 4493 +31847 2025-07-29 14:34:07.556816+00 2025-07-29 14:34:07.556829+00 f t 12000.00 1 12000.00 4495 146 \N 4493 +31849 2025-07-29 14:50:17.761562+00 2025-07-29 14:50:17.761571+00 f t 42000.00 1 42000.00 4498 82 \N 4497 +31855 2025-07-29 14:57:53.724762+00 2025-07-29 14:57:53.724774+00 f t 42000.00 1 42000.00 4501 82 \N 4498 +32431 2025-07-30 21:56:19.208038+00 2025-07-30 21:56:19.208049+00 f t 7500.00 1 7500.00 4587 85 \N 4575 +38922 2025-08-15 14:45:01.929176+00 2025-08-15 14:45:01.929192+00 f t 50000.00 1 50000.00 5564 84 \N 5373 +31952 2025-07-29 19:24:59.019471+00 2025-07-29 19:24:59.01948+00 f t 42000.00 1 42000.00 4525 82 \N 4514 +31953 2025-07-29 19:24:59.024944+00 2025-07-29 19:24:59.024953+00 f t 7500.00 1 7500.00 4525 85 \N 4514 +33446 2025-08-02 12:30:10.1351+00 2025-08-02 12:30:10.135116+00 f t 68000.00 1 68000.00 4754 106 \N 4707 +33454 2025-08-02 13:25:26.997309+00 2025-08-02 13:25:26.997324+00 f t 68000.00 1 68000.00 4756 106 \N 4709 +32499 2025-07-31 01:47:31.249516+00 2025-07-31 01:47:31.249527+00 f t 42000.00 1 42000.00 4601 82 \N 4586 +32500 2025-07-31 01:47:31.254747+00 2025-07-31 01:47:31.254757+00 f t 81500.00 1 81500.00 4601 144 \N 4586 +32589 2025-07-31 14:31:16.761951+00 2025-07-31 14:31:16.761964+00 f t 42000.00 1 42000.00 4627 82 \N 4607 +32590 2025-07-31 14:31:16.768444+00 2025-07-31 14:31:16.768455+00 f t 7500.00 1 7500.00 4627 85 \N 4607 +32591 2025-07-31 14:31:16.773454+00 2025-07-31 14:31:16.773466+00 f t 22500.00 1 22500.00 4627 88 \N 4607 +32592 2025-07-31 14:31:16.77847+00 2025-07-31 14:31:16.778481+00 f t 22500.00 1 22500.00 4627 163 \N 4607 +32598 2025-07-31 14:49:05.690082+00 2025-07-31 14:49:05.690095+00 f t 50000.00 1 50000.00 4628 84 \N 4608 +32600 2025-07-31 15:06:50.412942+00 2025-07-31 15:06:50.412951+00 f t 70000.00 1 70000.00 4629 97 \N 4609 +32602 2025-07-31 15:44:59.813538+00 2025-07-31 15:44:59.813547+00 f t 42000.00 1 42000.00 4630 82 \N 4610 +32029 2025-07-29 19:50:06.906419+00 2025-07-29 19:50:06.906435+00 f t 50000.00 1 50000.00 4524 84 \N 4513 +32703 2025-07-31 16:48:34.106906+00 2025-07-31 16:48:34.106914+00 f t 42000.00 1 42000.00 4635 82 \N 4614 +32704 2025-07-31 16:48:34.111675+00 2025-07-31 16:48:34.111684+00 f t 22500.00 1 22500.00 4635 87 \N 4614 +32722 2025-07-31 16:49:47.368606+00 2025-07-31 16:49:47.368618+00 f t 42000.00 1 42000.00 4636 82 \N 4615 +32723 2025-07-31 16:49:47.374109+00 2025-07-31 16:49:47.374117+00 f t 7500.00 1 7500.00 4636 85 \N 4615 +32724 2025-07-31 16:49:47.378551+00 2025-07-31 16:49:47.37856+00 f t 22500.00 1 22500.00 4636 163 \N 4615 +32805 2025-07-31 17:00:56.428451+00 2025-07-31 17:00:56.428465+00 f t 50000.00 1 50000.00 4639 84 \N 4618 +32808 2025-07-31 18:17:32.583352+00 2025-07-31 18:17:32.583366+00 f t 42000.00 1 42000.00 4645 82 \N 4622 +32809 2025-07-31 18:17:32.589291+00 2025-07-31 18:17:32.5893+00 f t 22500.00 1 22500.00 4645 163 \N 4622 +32812 2025-07-31 18:18:50.999193+00 2025-07-31 18:18:50.999206+00 f t 42000.00 1 42000.00 4646 82 \N 4623 +32813 2025-07-31 18:18:51.006358+00 2025-07-31 18:18:51.006368+00 f t 22500.00 1 22500.00 4646 88 \N 4623 +32815 2025-07-31 18:39:27.520631+00 2025-07-31 18:39:27.520642+00 f t 42000.00 1 42000.00 4648 82 \N 4624 +32818 2025-07-31 18:48:19.149387+00 2025-07-31 18:48:19.149397+00 f t 42000.00 1 42000.00 4651 82 \N 4627 +32819 2025-07-31 18:48:19.155345+00 2025-07-31 18:48:19.155355+00 f t 22500.00 1 22500.00 4651 86 \N 4627 +32142 2025-07-29 19:59:29.843758+00 2025-07-29 19:59:29.84377+00 f t 42000.00 1 42000.00 4526 82 \N 4515 +32143 2025-07-29 19:59:29.849871+00 2025-07-29 19:59:29.849882+00 f t 22500.00 1 22500.00 4526 86 \N 4515 +32144 2025-07-29 19:59:29.855117+00 2025-07-29 19:59:29.855127+00 f t 42000.00 1 42000.00 4526 82 \N 4516 +32145 2025-07-29 19:59:29.860165+00 2025-07-29 19:59:29.860176+00 f t 22500.00 1 22500.00 4526 163 \N 4516 +32146 2025-07-29 19:59:29.865852+00 2025-07-29 19:59:29.865864+00 f t 42000.00 1 42000.00 4526 82 \N 4518 +32147 2025-07-29 19:59:29.871861+00 2025-07-29 19:59:29.871873+00 f t 22500.00 1 22500.00 4526 163 \N 4518 +32148 2025-07-29 19:59:29.876866+00 2025-07-29 19:59:29.876876+00 f t 42000.00 1 42000.00 4526 82 \N 4519 +32149 2025-07-29 19:59:29.8823+00 2025-07-29 19:59:29.882311+00 f t 22500.00 1 22500.00 4526 163 \N 4519 +32150 2025-07-29 19:59:29.887033+00 2025-07-29 19:59:29.88704+00 f t 42000.00 1 42000.00 4526 82 \N 4520 +32151 2025-07-29 19:59:29.891874+00 2025-07-29 19:59:29.891887+00 f t 22500.00 1 22500.00 4526 163 \N 4520 +32154 2025-07-29 20:23:01.476373+00 2025-07-29 20:23:01.476387+00 f t 42000.00 1 42000.00 4527 82 \N 4521 +32155 2025-07-29 20:23:01.486581+00 2025-07-29 20:23:01.486595+00 f t 22500.00 1 22500.00 4527 87 \N 4521 +32157 2025-07-29 20:23:47.211861+00 2025-07-29 20:23:47.211873+00 f t 42000.00 1 42000.00 4528 82 \N 4522 +32161 2025-07-29 22:37:42.69346+00 2025-07-29 22:37:42.693474+00 f t 42000.00 1 42000.00 4533 82 \N 4527 +32859 2025-07-31 21:10:35.647162+00 2025-07-31 21:10:35.647173+00 f t 42000.00 1 42000.00 4659 82 \N 4633 +32860 2025-07-31 21:10:35.654106+00 2025-07-31 21:10:35.654117+00 f t 7500.00 1 7500.00 4659 85 \N 4633 +32861 2025-07-31 21:10:35.660588+00 2025-07-31 21:10:35.660601+00 f t 22500.00 1 22500.00 4659 163 \N 4633 +32166 2025-07-30 00:55:10.770577+00 2025-07-30 00:55:10.770587+00 f t 20500.00 1 20500.00 4536 109 \N 4532 +32167 2025-07-30 00:55:10.776583+00 2025-07-30 00:55:10.776592+00 f t 42000.00 1 42000.00 4536 82 \N 4532 +32168 2025-07-30 00:55:10.781755+00 2025-07-30 00:55:10.781767+00 f t 7700.00 1 7700.00 4536 93 \N 4532 +32169 2025-07-30 00:55:10.786931+00 2025-07-30 00:55:10.786943+00 f t 12000.00 1 12000.00 4536 146 \N 4532 +32864 2025-07-31 22:47:36.058756+00 2025-07-31 22:47:36.058768+00 f t 50000.00 1 50000.00 4661 84 \N 4634 +32172 2025-07-30 09:13:24.028851+00 2025-07-30 09:13:24.028861+00 f t 42000.00 1 42000.00 4540 82 \N 4535 +32173 2025-07-30 09:13:24.034458+00 2025-07-30 09:13:24.034468+00 f t 22500.00 1 22500.00 4540 86 \N 4535 +32866 2025-07-31 22:52:27.889064+00 2025-07-31 22:52:27.889078+00 f t 62000.00 1 62000.00 4662 106 \N 4636 +32190 2025-07-30 09:48:06.134699+00 2025-07-30 09:48:06.13471+00 f t 42000.00 1 42000.00 4542 82 \N 4536 +32191 2025-07-30 09:48:06.140779+00 2025-07-30 09:48:06.140788+00 f t 7500.00 1 7500.00 4542 85 \N 4536 +32192 2025-07-30 09:48:06.146287+00 2025-07-30 09:48:06.146295+00 f t 42000.00 1 42000.00 4542 82 \N 4537 +32193 2025-07-30 09:48:06.151787+00 2025-07-30 09:48:06.151796+00 f t 7500.00 1 7500.00 4542 85 \N 4537 +32197 2025-07-30 10:25:31.322432+00 2025-07-30 10:25:31.322444+00 f t 50000.00 1 50000.00 4544 84 \N 4538 +32200 2025-07-30 11:09:57.731179+00 2025-07-30 11:09:57.731188+00 f t 42000.00 1 42000.00 4545 82 \N 4539 +32202 2025-07-30 11:44:38.88989+00 2025-07-30 11:44:38.889901+00 f t 42000.00 1 42000.00 4546 82 \N 4540 +32204 2025-07-30 11:51:47.72166+00 2025-07-30 11:51:47.721669+00 f t 42000.00 1 42000.00 4547 82 \N 4541 +32207 2025-07-30 11:56:07.610442+00 2025-07-30 11:56:07.610451+00 f t 42000.00 1 42000.00 4548 82 \N 4542 +32208 2025-07-30 11:56:07.61537+00 2025-07-30 11:56:07.615378+00 f t 7500.00 1 7500.00 4548 85 \N 4542 +32221 2025-07-30 12:03:28.919104+00 2025-07-30 12:03:28.919116+00 f t 42000.00 1 42000.00 4549 82 \N 4543 +32222 2025-07-30 12:03:28.924973+00 2025-07-30 12:03:28.924983+00 f t 7700.00 1 7700.00 4549 91 \N 4543 +32224 2025-07-30 12:12:26.382554+00 2025-07-30 12:12:26.382564+00 f t 50000.00 1 50000.00 4550 84 \N 4545 +35525 2025-08-06 19:20:32.054585+00 2025-08-06 19:20:32.054598+00 f t 42000.00 1 42000.00 5001 82 \N 4903 +36616 2025-08-10 15:24:58.821296+00 2025-08-10 15:24:58.821305+00 f t 42000.00 1 42000.00 5209 82 \N 5080 +75737 2025-10-29 01:46:51.126744+00 2025-10-29 01:46:51.126753+00 f t 0.00 1 0.00 10812 97 \N 9752 +32483 2025-07-31 01:38:07.985894+00 2025-07-31 01:38:07.985907+00 f t 42000.00 1 42000.00 4600 82 \N 4585 +32484 2025-07-31 01:38:07.993848+00 2025-07-31 01:38:07.993858+00 f t 81500.00 1 81500.00 4600 144 \N 4585 +32507 2025-07-31 02:30:12.16223+00 2025-07-31 02:30:12.162243+00 f t 42000.00 1 42000.00 4604 82 \N 4588 +32523 2025-07-31 09:57:04.186288+00 2025-07-31 09:57:04.186301+00 f t 42000.00 1 42000.00 4611 82 \N 4591 +32524 2025-07-31 09:57:04.192781+00 2025-07-31 09:57:04.192794+00 f t 69000.00 1 69000.00 4611 142 \N 4591 +32539 2025-07-31 13:15:38.209396+00 2025-07-31 13:15:38.209409+00 f t 50000.00 1 50000.00 4622 84 \N 4602 +32563 2025-07-31 14:05:56.012132+00 2025-07-31 14:05:56.012145+00 f t 50000.00 1 50000.00 4626 84 \N 4606 +32283 2025-07-30 12:29:53.709318+00 2025-07-30 12:29:53.709331+00 f t 62000.00 1 62000.00 4552 106 \N 4546 +32302 2025-07-30 12:33:10.561893+00 2025-07-30 12:33:10.561903+00 f t 20500.00 1 20500.00 4553 109 \N 4547 +32303 2025-07-30 12:33:10.567864+00 2025-07-30 12:33:10.567873+00 f t 42000.00 1 42000.00 4553 82 \N 4547 +32304 2025-07-30 12:33:10.572874+00 2025-07-30 12:33:10.572885+00 f t 24000.00 1 24000.00 4553 125 \N 4547 +32305 2025-07-30 12:33:10.578516+00 2025-07-30 12:33:10.578527+00 f t 7700.00 1 7700.00 4553 93 \N 4547 +32306 2025-07-30 12:33:10.584205+00 2025-07-30 12:33:10.584218+00 f t 12000.00 1 12000.00 4553 146 \N 4547 +32307 2025-07-30 12:33:10.590377+00 2025-07-30 12:33:10.590388+00 f t 13000.00 1 13000.00 4553 89 \N 4547 +32311 2025-07-30 12:33:49.3707+00 2025-07-30 12:33:49.37071+00 f t 42000.00 1 42000.00 4554 82 \N 4548 +32312 2025-07-30 12:33:49.375226+00 2025-07-30 12:33:49.375236+00 f t 24000.00 1 24000.00 4554 125 \N 4548 +32313 2025-07-30 12:33:49.379722+00 2025-07-30 12:33:49.379732+00 f t 13000.00 1 13000.00 4554 89 \N 4548 +32315 2025-07-30 13:19:05.409717+00 2025-07-30 13:19:05.409729+00 f t 50000.00 1 50000.00 4557 84 \N 4550 +32325 2025-07-30 13:20:40.914048+00 2025-07-30 13:20:40.91406+00 f t 62000.00 1 62000.00 4556 106 \N 4549 +32330 2025-07-30 13:20:52.741752+00 2025-07-30 13:20:52.741764+00 f t 34000.00 1 34000.00 4551 110 \N 176 +32331 2025-07-30 13:20:52.747229+00 2025-07-30 13:20:52.74724+00 f t 42000.00 1 42000.00 4551 82 \N 176 +32332 2025-07-30 13:20:52.751804+00 2025-07-30 13:20:52.751814+00 f t 7700.00 1 7700.00 4551 93 \N 176 +32333 2025-07-30 13:20:52.75604+00 2025-07-30 13:20:52.756048+00 f t 12000.00 1 12000.00 4551 146 \N 176 +32342 2025-07-30 14:39:23.549317+00 2025-07-30 14:39:23.549326+00 f t 42000.00 1 42000.00 4561 82 \N 4552 +32343 2025-07-30 14:39:23.55505+00 2025-07-30 14:39:23.555059+00 f t 7700.00 1 7700.00 4561 93 \N 4552 +32344 2025-07-30 14:39:23.560741+00 2025-07-30 14:39:23.560754+00 f t 85000.00 1 85000.00 4561 165 \N 4552 +32345 2025-07-30 14:39:23.565764+00 2025-07-30 14:39:23.565773+00 f t 12000.00 1 12000.00 4561 146 \N 4552 +32348 2025-07-30 15:15:34.61074+00 2025-07-30 15:15:34.610749+00 f t 42000.00 1 42000.00 4563 82 \N 4555 +32349 2025-07-30 15:15:34.617612+00 2025-07-30 15:15:34.617621+00 f t 7500.00 1 7500.00 4563 85 \N 4555 +32361 2025-07-30 15:43:01.133837+00 2025-07-30 15:43:01.133848+00 f t 42000.00 1 42000.00 4568 82 \N 4557 +32363 2025-07-30 17:30:03.896204+00 2025-07-30 17:30:03.896287+00 f t 95000.00 1 95000.00 4572 103 \N 4561 +32371 2025-07-30 17:58:26.012849+00 2025-07-30 17:58:26.012859+00 f t 62000.00 1 62000.00 4574 106 \N 4564 +32376 2025-07-30 18:03:03.5832+00 2025-07-30 18:03:03.58321+00 f t 42000.00 1 42000.00 4575 82 \N 4565 +32377 2025-07-30 18:03:03.588791+00 2025-07-30 18:03:03.5888+00 f t 7500.00 1 7500.00 4575 85 \N 4565 +32705 2025-07-31 16:48:41.229098+00 2025-07-31 16:48:41.229111+00 f t 42000.00 1 42000.00 4633 82 \N 4612 +32706 2025-07-31 16:48:41.234335+00 2025-07-31 16:48:41.234344+00 f t 7500.00 1 7500.00 4633 85 \N 4612 +32707 2025-07-31 16:48:41.239168+00 2025-07-31 16:48:41.239178+00 f t 22500.00 1 22500.00 4633 88 \N 4612 +32708 2025-07-31 16:48:41.243982+00 2025-07-31 16:48:41.243995+00 f t 22500.00 1 22500.00 4633 163 \N 4612 +32382 2025-07-30 18:28:20.687972+00 2025-07-30 18:28:20.687981+00 f t 42000.00 1 42000.00 4576 82 \N 4568 +32383 2025-07-30 18:28:20.692457+00 2025-07-30 18:28:20.692466+00 f t 7500.00 1 7500.00 4576 85 \N 4568 +32709 2025-07-31 16:48:41.248573+00 2025-07-31 16:48:41.248582+00 f t 42000.00 1 42000.00 4633 82 \N 4613 +32710 2025-07-31 16:48:41.253213+00 2025-07-31 16:48:41.253222+00 f t 7500.00 1 7500.00 4633 85 \N 4613 +32711 2025-07-31 16:48:41.257568+00 2025-07-31 16:48:41.257578+00 f t 22500.00 1 22500.00 4633 88 \N 4613 +32712 2025-07-31 16:48:41.261797+00 2025-07-31 16:48:41.261806+00 f t 22500.00 1 22500.00 4633 163 \N 4613 +32388 2025-07-30 18:33:49.243461+00 2025-07-30 18:33:49.24347+00 f t 42000.00 1 42000.00 4579 82 \N 4569 +32389 2025-07-30 18:33:49.249959+00 2025-07-30 18:33:49.249974+00 f t 22500.00 1 22500.00 4579 163 \N 4569 +32404 2025-07-30 18:57:42.982911+00 2025-07-30 18:57:42.982923+00 f t 45000.00 1 45000.00 4580 98 \N 4570 +32409 2025-07-30 19:49:21.836941+00 2025-07-30 19:49:21.836949+00 f t 42000.00 1 42000.00 4581 82 \N 4571 +32410 2025-07-30 19:49:21.842386+00 2025-07-30 19:49:21.842394+00 f t 7500.00 1 7500.00 4581 85 \N 4571 +32414 2025-07-30 20:19:54.409276+00 2025-07-30 20:19:54.409285+00 f t 70000.00 1 70000.00 4583 97 \N 4572 +32419 2025-07-30 20:47:02.941815+00 2025-07-30 20:47:02.941828+00 f t 32500.00 1 32500.00 4584 112 \N 4573 +32420 2025-07-30 20:47:02.948535+00 2025-07-30 20:47:02.948547+00 f t 42000.00 1 42000.00 4584 82 \N 4573 +32421 2025-07-30 20:47:02.954423+00 2025-07-30 20:47:02.954436+00 f t 7700.00 1 7700.00 4584 93 \N 4573 +32422 2025-07-30 20:47:02.96054+00 2025-07-30 20:47:02.960551+00 f t 12000.00 1 12000.00 4584 146 \N 4573 +32425 2025-07-30 21:29:04.368687+00 2025-07-30 21:29:04.368696+00 f t 42000.00 1 42000.00 4586 82 \N 4574 +32795 2025-07-31 16:51:24.044823+00 2025-07-31 16:51:24.044833+00 f t 42000.00 1 42000.00 4637 82 \N 4616 +32796 2025-07-31 16:51:24.050458+00 2025-07-31 16:51:24.05047+00 f t 7500.00 1 7500.00 4637 85 \N 4616 +32797 2025-07-31 16:51:24.054629+00 2025-07-31 16:51:24.05464+00 f t 22500.00 1 22500.00 4637 88 \N 4616 +32798 2025-07-31 16:51:24.058706+00 2025-07-31 16:51:24.058714+00 f t 22500.00 1 22500.00 4637 163 \N 4616 +32799 2025-07-31 16:51:24.062558+00 2025-07-31 16:51:24.062566+00 f t 42000.00 1 42000.00 4637 82 \N 4617 +32800 2025-07-31 16:51:24.066385+00 2025-07-31 16:51:24.066394+00 f t 7500.00 1 7500.00 4637 85 \N 4617 +32801 2025-07-31 16:51:24.07009+00 2025-07-31 16:51:24.070097+00 f t 22500.00 1 22500.00 4637 88 \N 4617 +32802 2025-07-31 16:51:24.074122+00 2025-07-31 16:51:24.074129+00 f t 22500.00 1 22500.00 4637 163 \N 4617 +32822 2025-07-31 19:13:16.727512+00 2025-07-31 19:13:16.727524+00 f t 42000.00 1 42000.00 4654 82 \N 4628 +32829 2025-07-31 19:33:35.401064+00 2025-07-31 19:33:35.401073+00 f t 42000.00 1 42000.00 4655 82 \N 4629 +32830 2025-07-31 19:33:35.406752+00 2025-07-31 19:33:35.406767+00 f t 7500.00 1 7500.00 4655 85 \N 4629 +32832 2025-07-31 20:27:29.295112+00 2025-07-31 20:27:29.295126+00 f t 42000.00 1 42000.00 4658 82 \N 4632 +32871 2025-07-31 23:03:32.488796+00 2025-07-31 23:03:32.488808+00 f t 34000.00 1 34000.00 4668 110 \N 4641 +32872 2025-07-31 23:03:32.495505+00 2025-07-31 23:03:32.495517+00 f t 42000.00 1 42000.00 4668 82 \N 4641 +32873 2025-07-31 23:03:32.502019+00 2025-07-31 23:03:32.502031+00 f t 7700.00 1 7700.00 4668 93 \N 4641 +32874 2025-07-31 23:03:32.507443+00 2025-07-31 23:03:32.507455+00 f t 12000.00 1 12000.00 4668 146 \N 4641 +33440 2025-08-02 06:53:33.233876+00 2025-08-02 06:53:33.233886+00 f t 42000.00 1 42000.00 4751 82 \N 4705 +33444 2025-08-02 10:46:33.084348+00 2025-08-02 10:46:33.08436+00 f t 50000.00 1 50000.00 4752 84 \N 4706 +33448 2025-08-02 12:57:12.616901+00 2025-08-02 12:57:12.616915+00 f t 49000.00 1 49000.00 4755 98 \N 4708 +35543 2025-08-06 19:56:38.9711+00 2025-08-06 19:56:38.97111+00 f t 95000.00 1 95000.00 5007 103 \N 4908 +35569 2025-08-06 22:13:08.680003+00 2025-08-06 22:13:08.680016+00 f t 42000.00 1 42000.00 5015 82 \N 4920 +35620 2025-08-07 05:54:31.737194+00 2025-08-07 05:54:31.737206+00 f t 42000.00 1 42000.00 5036 82 \N 4939 +35621 2025-08-07 05:54:31.743343+00 2025-08-07 05:54:31.743355+00 f t 7500.00 1 7500.00 5036 85 \N 4939 +33637 2025-08-02 17:28:23.007905+00 2025-08-02 17:28:23.007913+00 f t 42000.00 1 42000.00 4765 82 \N 4719 +33638 2025-08-02 17:28:23.01288+00 2025-08-02 17:28:23.01289+00 f t 87500.00 1 87500.00 4765 141 \N 4719 +33640 2025-08-02 17:56:54.757669+00 2025-08-02 17:56:54.757678+00 f t 42000.00 1 42000.00 4768 82 \N 4722 +33642 2025-08-02 18:10:17.298371+00 2025-08-02 18:10:17.298381+00 f t 50000.00 1 50000.00 4769 84 \N 4723 +33672 2025-08-03 08:13:25.303715+00 2025-08-03 08:13:25.303727+00 f t 42000.00 1 42000.00 4790 82 \N 4738 +33700 2025-08-03 12:38:42.597562+00 2025-08-03 12:38:42.597574+00 f t 42000.00 1 42000.00 4797 82 \N 4745 +33710 2025-08-03 15:42:59.640259+00 2025-08-03 15:42:59.640271+00 f t 42000.00 1 42000.00 4801 82 \N 4748 +33711 2025-08-03 15:42:59.646315+00 2025-08-03 15:42:59.646326+00 f t 33000.00 1 33000.00 4801 133 \N 4748 +33712 2025-08-03 15:42:59.651654+00 2025-08-03 15:42:59.651665+00 f t 13000.00 1 13000.00 4801 89 \N 4748 +33006 2025-08-01 00:57:35.841379+00 2025-08-01 00:57:35.841392+00 f t 42000.00 1 42000.00 4670 82 \N 3954 +33007 2025-08-01 00:57:35.847098+00 2025-08-01 00:57:35.847109+00 f t 40500.00 1 40500.00 4670 119 \N 3954 +33008 2025-08-01 00:57:35.851855+00 2025-08-01 00:57:35.851866+00 f t 7500.00 1 7500.00 4670 85 \N 3954 +33009 2025-08-01 00:57:35.856524+00 2025-08-01 00:57:35.856533+00 f t 22500.00 1 22500.00 4670 86 \N 3954 +33010 2025-08-01 00:57:35.860748+00 2025-08-01 00:57:35.860756+00 f t 13000.00 1 13000.00 4670 89 \N 3954 +33717 2025-08-03 19:13:32.210015+00 2025-08-03 19:13:32.210029+00 f t 34000.00 1 34000.00 4804 110 \N 4750 +33718 2025-08-03 19:13:32.217283+00 2025-08-03 19:13:32.217292+00 f t 42000.00 1 42000.00 4804 82 \N 4750 +33719 2025-08-03 19:13:32.221872+00 2025-08-03 19:13:32.22188+00 f t 7700.00 1 7700.00 4804 93 \N 4750 +33720 2025-08-03 19:13:32.22612+00 2025-08-03 19:13:32.226129+00 f t 12000.00 1 12000.00 4804 146 \N 4750 +33728 2025-08-03 19:25:02.750817+00 2025-08-03 19:25:02.750832+00 f t 76000.00 1 76000.00 4805 97 \N 4751 +33022 2025-08-01 04:52:47.951225+00 2025-08-01 04:52:47.951235+00 f t 42000.00 1 42000.00 4682 82 \N 4647 +33023 2025-08-01 04:52:47.958071+00 2025-08-01 04:52:47.95808+00 f t 42000.00 1 42000.00 4682 82 \N 4648 +33025 2025-08-01 06:17:39.656398+00 2025-08-01 06:17:39.656411+00 f t 42000.00 1 42000.00 4683 82 \N 4649 +33038 2025-08-01 06:43:48.070052+00 2025-08-01 06:43:48.071118+00 f t 42000.00 1 42000.00 4684 82 \N 4650 +33039 2025-08-01 06:43:48.089023+00 2025-08-01 06:43:48.089034+00 f t 22500.00 1 22500.00 4684 86 \N 4650 +33045 2025-08-01 07:23:11.031465+00 2025-08-01 07:23:11.031475+00 f t 27500.00 1 27500.00 4685 83 \N 4651 +33049 2025-08-01 07:27:46.567835+00 2025-08-01 07:27:46.567845+00 f t 42000.00 1 42000.00 4686 82 \N 4652 +33781 2025-08-03 20:16:07.902481+00 2025-08-03 20:16:07.902491+00 f t 34000.00 1 34000.00 4809 110 \N 4756 +33782 2025-08-03 20:16:07.908599+00 2025-08-03 20:16:07.908609+00 f t 42000.00 1 42000.00 4809 82 \N 4756 +33052 2025-08-01 11:17:54.937838+00 2025-08-01 11:17:54.937851+00 f t 42000.00 1 42000.00 4693 82 \N 4656 +33053 2025-08-01 11:17:54.946339+00 2025-08-01 11:17:54.946352+00 f t 22500.00 1 22500.00 4693 87 \N 4656 +33783 2025-08-03 20:16:07.913929+00 2025-08-03 20:16:07.913938+00 f t 7700.00 1 7700.00 4809 93 \N 4756 +33055 2025-08-01 11:31:36.056012+00 2025-08-01 11:31:36.056023+00 f t 60000.00 1 60000.00 4696 104 \N 4659 +33784 2025-08-03 20:16:07.91958+00 2025-08-03 20:16:07.91959+00 f t 12000.00 1 12000.00 4809 146 \N 4756 +33792 2025-08-03 21:17:34.374667+00 2025-08-03 21:17:34.374681+00 f t 42000.00 1 42000.00 4811 82 \N 4757 +33832 2025-08-03 22:44:09.329883+00 2025-08-03 22:44:09.329896+00 f t 42000.00 1 42000.00 4816 82 \N 4760 +33835 2025-08-03 23:02:18.056564+00 2025-08-03 23:02:18.056574+00 f t 42000.00 1 42000.00 4817 82 \N 4761 +33836 2025-08-03 23:02:18.062016+00 2025-08-03 23:02:18.062026+00 f t 69000.00 1 69000.00 4817 142 \N 4761 +33838 2025-08-03 23:31:36.112616+00 2025-08-03 23:31:36.112629+00 f t 42000.00 1 42000.00 4820 82 \N 4763 +33840 2025-08-03 23:40:46.326387+00 2025-08-03 23:40:46.326401+00 f t 50000.00 1 50000.00 4822 84 \N 4764 +33890 2025-08-04 01:51:57.297351+00 2025-08-04 01:51:57.297364+00 f t 42000.00 1 42000.00 4827 82 \N 4769 +33891 2025-08-04 01:51:57.302908+00 2025-08-04 01:51:57.302919+00 f t 7700.00 1 7700.00 4827 93 \N 4769 +33892 2025-08-04 01:51:57.30809+00 2025-08-04 01:51:57.308101+00 f t 12000.00 1 12000.00 4827 146 \N 4769 +33894 2025-08-04 03:58:44.82348+00 2025-08-04 03:58:44.82349+00 f t 50000.00 1 50000.00 4831 84 \N 4770 +33896 2025-08-04 08:56:42.629011+00 2025-08-04 08:56:42.629021+00 f t 68000.00 1 68000.00 4834 106 \N 4773 +33898 2025-08-04 09:21:03.134554+00 2025-08-04 09:21:03.134571+00 f t 42000.00 1 42000.00 4835 82 \N 4774 +33905 2025-08-04 11:54:37.138445+00 2025-08-04 11:54:37.138455+00 f t 68000.00 1 68000.00 4838 106 \N 4777 +33908 2025-08-04 13:09:12.241046+00 2025-08-04 13:09:12.24106+00 f t 42000.00 1 42000.00 4839 82 \N 4778 +33913 2025-08-04 13:30:06.504123+00 2025-08-04 13:30:06.504138+00 f t 50000.00 1 50000.00 4843 84 \N 4780 +33915 2025-08-04 14:30:05.879717+00 2025-08-04 14:30:05.879734+00 f t 42000.00 1 42000.00 4847 82 \N 4782 +33140 2025-08-01 13:10:24.936256+00 2025-08-01 13:10:24.936268+00 f t 42000.00 1 42000.00 4700 82 \N 4660 +33141 2025-08-01 13:10:24.943751+00 2025-08-01 13:10:24.943759+00 f t 68000.00 1 68000.00 4700 106 \N 4660 +33142 2025-08-01 13:10:24.949188+00 2025-08-01 13:10:24.949197+00 f t 7700.00 1 7700.00 4700 93 \N 4660 +33143 2025-08-01 13:10:24.95386+00 2025-08-01 13:10:24.953867+00 f t 12000.00 1 12000.00 4700 146 \N 4660 +33146 2025-08-01 13:13:01.384476+00 2025-08-01 13:13:01.384489+00 f t 42000.00 1 42000.00 4701 82 \N 4661 +33148 2025-08-01 13:28:17.658561+00 2025-08-01 13:28:17.658573+00 f t 68000.00 1 68000.00 4703 106 \N 4662 +33150 2025-08-01 13:28:44.387592+00 2025-08-01 13:28:44.387606+00 f t 42000.00 1 42000.00 4702 82 \N 4663 +33175 2025-08-01 14:23:53.710256+00 2025-08-01 14:23:53.710269+00 f t 27500.00 1 27500.00 4710 83 \N 4665 +33185 2025-08-01 15:32:59.790767+00 2025-08-01 15:32:59.790777+00 f t 42000.00 1 42000.00 4712 82 \N 4668 +33187 2025-08-01 15:50:09.674568+00 2025-08-01 15:50:09.67458+00 f t 42000.00 1 42000.00 4713 82 \N 4669 +33189 2025-08-01 16:06:23.848608+00 2025-08-01 16:06:23.848618+00 f t 70000.00 1 70000.00 4714 108 \N 4670 +33204 2025-08-01 16:09:19.491919+00 2025-08-01 16:09:19.491932+00 f t 42000.00 1 42000.00 4716 82 \N 4672 +33205 2025-08-01 16:09:19.497841+00 2025-08-01 16:09:19.49785+00 f t 7500.00 1 7500.00 4716 85 \N 4672 +33535 2025-08-02 14:05:52.625696+00 2025-08-02 14:05:52.625709+00 f t 34000.00 1 34000.00 4758 110 \N 4711 +33536 2025-08-02 14:05:52.631273+00 2025-08-02 14:05:52.631284+00 f t 42000.00 1 42000.00 4758 82 \N 4711 +33210 2025-08-01 16:18:04.992027+00 2025-08-01 16:18:04.992043+00 f t 34000.00 1 34000.00 4718 110 \N 4673 +33211 2025-08-01 16:18:05.001258+00 2025-08-01 16:18:05.001272+00 f t 42000.00 1 42000.00 4718 82 \N 4673 +33212 2025-08-01 16:18:05.009728+00 2025-08-01 16:18:05.009743+00 f t 7700.00 1 7700.00 4718 93 \N 4673 +33213 2025-08-01 16:18:05.016873+00 2025-08-01 16:18:05.016885+00 f t 12000.00 1 12000.00 4718 146 \N 4673 +33537 2025-08-02 14:05:52.636212+00 2025-08-02 14:05:52.636221+00 f t 7700.00 1 7700.00 4758 93 \N 4711 +33538 2025-08-02 14:05:52.640356+00 2025-08-02 14:05:52.640364+00 f t 12000.00 1 12000.00 4758 146 \N 4711 +33216 2025-08-01 17:07:36.038441+00 2025-08-01 17:07:36.038453+00 f t 42000.00 1 42000.00 4720 82 \N 4675 +33217 2025-08-01 17:07:36.04474+00 2025-08-01 17:07:36.044752+00 f t 22500.00 1 22500.00 4720 163 \N 4675 +33539 2025-08-02 14:05:52.644354+00 2025-08-02 14:05:52.644361+00 f t 34000.00 1 34000.00 4758 110 \N 4712 +33219 2025-08-01 17:07:39.201268+00 2025-08-01 17:07:39.201278+00 f t 42000.00 1 42000.00 4719 82 \N 4674 +33540 2025-08-02 14:05:52.648431+00 2025-08-02 14:05:52.648443+00 f t 42000.00 1 42000.00 4758 82 \N 4712 +33541 2025-08-02 14:05:52.653783+00 2025-08-02 14:05:52.653795+00 f t 7700.00 1 7700.00 4758 93 \N 4712 +33542 2025-08-02 14:05:52.658725+00 2025-08-02 14:05:52.658739+00 f t 12000.00 1 12000.00 4758 146 \N 4712 +33608 2025-08-02 15:18:29.3611+00 2025-08-02 15:18:29.361112+00 f t 42000.00 1 42000.00 4761 82 \N 4715 +33619 2025-08-02 16:08:35.153642+00 2025-08-02 16:08:35.153652+00 f t 42000.00 1 42000.00 4763 82 \N 4716 +33620 2025-08-02 16:08:35.159001+00 2025-08-02 16:08:35.159012+00 f t 22500.00 1 22500.00 4763 86 \N 4716 +33262 2025-08-01 18:41:13.212331+00 2025-08-01 18:41:13.21234+00 f t 50000.00 1 50000.00 4721 84 \N 4677 +33624 2025-08-02 17:15:32.370468+00 2025-08-02 17:15:32.370479+00 f t 68000.00 1 68000.00 4764 106 \N 4718 +33269 2025-08-01 18:42:46.373484+00 2025-08-01 18:42:46.373492+00 f t 50000.00 1 50000.00 4723 84 \N 4679 +33271 2025-08-01 18:43:02.64842+00 2025-08-01 18:43:02.648433+00 f t 70000.00 1 70000.00 4722 108 \N 4678 +33273 2025-08-01 18:43:33.177842+00 2025-08-01 18:43:33.17785+00 f t 42000.00 1 42000.00 4724 82 \N 4680 +33277 2025-08-01 20:07:10.883792+00 2025-08-01 20:07:10.883801+00 f t 42000.00 1 42000.00 4727 82 \N 4682 +33280 2025-08-01 21:14:18.462389+00 2025-08-01 21:14:18.462398+00 f t 95000.00 1 95000.00 4729 103 \N 4683 +33285 2025-08-01 21:43:46.815811+00 2025-08-01 21:43:46.815823+00 f t 20500.00 1 20500.00 4732 109 \N 4686 +33286 2025-08-01 21:43:46.821318+00 2025-08-01 21:43:46.821329+00 f t 42000.00 1 42000.00 4732 82 \N 4686 +33287 2025-08-01 21:43:46.826553+00 2025-08-01 21:43:46.826561+00 f t 7700.00 1 7700.00 4732 93 \N 4686 +33288 2025-08-01 21:43:46.831277+00 2025-08-01 21:43:46.831287+00 f t 12000.00 1 12000.00 4732 146 \N 4686 +33661 2025-08-02 20:45:18.549992+00 2025-08-02 20:45:18.550003+00 f t 68000.00 1 68000.00 4779 106 \N 4734 +33663 2025-08-02 22:08:28.859996+00 2025-08-02 22:08:28.86001+00 f t 42000.00 1 42000.00 4782 82 \N 4735 +33293 2025-08-01 22:24:46.702051+00 2025-08-01 22:24:46.702059+00 f t 42000.00 1 42000.00 4734 82 \N 4690 +33294 2025-08-01 22:24:46.707711+00 2025-08-01 22:24:46.70772+00 f t 22500.00 1 22500.00 4734 86 \N 4690 +33666 2025-08-03 04:21:48.528044+00 2025-08-03 04:21:48.528054+00 f t 42000.00 1 42000.00 4788 82 \N 4737 +33667 2025-08-03 04:21:48.533464+00 2025-08-03 04:21:48.533476+00 f t 7500.00 1 7500.00 4788 85 \N 4737 +33675 2025-08-03 08:14:53.527532+00 2025-08-03 08:14:53.527542+00 f t 42000.00 1 42000.00 4791 82 \N 4739 +33681 2025-08-03 08:28:22.739903+00 2025-08-03 08:28:22.739917+00 f t 27500.00 1 27500.00 4793 83 \N 4741 +33685 2025-08-03 08:38:00.954998+00 2025-08-03 08:38:00.955008+00 f t 50000.00 1 50000.00 4794 84 \N 4742 +33697 2025-08-03 12:27:14.538242+00 2025-08-03 12:27:14.538254+00 f t 42000.00 1 42000.00 4796 82 \N 4744 +33316 2025-08-01 23:12:52.451291+00 2025-08-01 23:12:52.451302+00 f t 42000.00 1 42000.00 4740 82 \N 4694 +33317 2025-08-01 23:12:52.456447+00 2025-08-01 23:12:52.456455+00 f t 22500.00 1 22500.00 4740 86 \N 4694 +33789 2025-08-03 21:17:12.951236+00 2025-08-03 21:17:12.951263+00 f t 42000.00 1 42000.00 4812 82 \N 4758 +33388 2025-08-01 23:16:07.142043+00 2025-08-01 23:16:07.142052+00 f t 42000.00 1 42000.00 4739 82 \N 4693 +33389 2025-08-01 23:16:07.148478+00 2025-08-01 23:16:07.148487+00 f t 7500.00 1 7500.00 4739 85 \N 4693 +33390 2025-08-01 23:16:07.153149+00 2025-08-01 23:16:07.153157+00 f t 22500.00 1 22500.00 4739 163 \N 4693 +33391 2025-08-01 23:16:07.157695+00 2025-08-01 23:16:07.157709+00 f t 42000.00 1 42000.00 4739 82 \N 4695 +33392 2025-08-01 23:16:07.163494+00 2025-08-01 23:16:07.163504+00 f t 7500.00 1 7500.00 4739 85 \N 4695 +33393 2025-08-01 23:16:07.16969+00 2025-08-01 23:16:07.169702+00 f t 22500.00 1 22500.00 4739 163 \N 4695 +33404 2025-08-02 01:56:57.957462+00 2025-08-02 01:56:57.957474+00 f t 42000.00 1 42000.00 4741 82 \N 4696 +33405 2025-08-02 01:56:57.963335+00 2025-08-02 01:56:57.963343+00 f t 7500.00 1 7500.00 4741 85 \N 4696 +33408 2025-08-02 02:29:03.890506+00 2025-08-02 02:29:03.890517+00 f t 42000.00 1 42000.00 4742 82 \N 4697 +33411 2025-08-02 02:39:14.257301+00 2025-08-02 02:39:14.257314+00 f t 93750.00 1 93750.00 4745 90 \N 4699 +33412 2025-08-02 02:39:14.263912+00 2025-08-02 02:39:14.263924+00 f t 42000.00 1 42000.00 4745 82 \N 4699 +33875 2025-08-04 00:04:30.315748+00 2025-08-04 00:04:30.315761+00 f t 42000.00 1 42000.00 4823 82 \N 4765 +33414 2025-08-02 02:40:19.592902+00 2025-08-02 02:40:19.592914+00 f t 60000.00 1 60000.00 4746 104 \N 4700 +33876 2025-08-04 00:04:30.322886+00 2025-08-04 00:04:30.322898+00 f t 22500.00 1 22500.00 4823 86 \N 4765 +33879 2025-08-04 00:09:51.149252+00 2025-08-04 00:09:51.149264+00 f t 42000.00 1 42000.00 4824 82 \N 4766 +33417 2025-08-02 03:11:36.613331+00 2025-08-02 03:11:36.613341+00 f t 50000.00 1 50000.00 4747 84 \N 4701 +33880 2025-08-04 00:09:51.155509+00 2025-08-04 00:09:51.15552+00 f t 7500.00 1 7500.00 4824 85 \N 4766 +33882 2025-08-04 00:23:53.949143+00 2025-08-04 00:23:53.949157+00 f t 68000.00 1 68000.00 4825 106 \N 4767 +33884 2025-08-04 00:53:10.373513+00 2025-08-04 00:53:10.373523+00 f t 50000.00 1 50000.00 4826 84 \N 4768 +33889 2025-08-04 01:51:57.291256+00 2025-08-04 01:51:57.291266+00 f t 20500.00 1 20500.00 4827 109 \N 4769 +35527 2025-08-06 19:40:11.088556+00 2025-08-06 19:40:11.088568+00 f t 50000.00 1 50000.00 5003 84 \N 4905 +35537 2025-08-06 19:46:36.002056+00 2025-08-06 19:46:36.002096+00 f t 42000.00 1 42000.00 5005 82 \N 4906 +35538 2025-08-06 19:46:36.00803+00 2025-08-06 19:46:36.00804+00 f t 7500.00 1 7500.00 5005 85 \N 4906 +35539 2025-08-06 19:46:36.01295+00 2025-08-06 19:46:36.012961+00 f t 22500.00 1 22500.00 5005 86 \N 4906 +33937 2025-08-04 15:08:13.063565+00 2025-08-04 15:08:13.063578+00 f t 42000.00 1 42000.00 4851 82 \N 4786 +37799 2025-08-13 15:45:20.08161+00 2025-08-13 15:45:20.081623+00 f t 42000.00 1 42000.00 5426 82 \N 5246 +37800 2025-08-13 15:45:20.088829+00 2025-08-13 15:45:20.088838+00 f t 7700.00 1 7700.00 5426 93 \N 5246 +35565 2025-08-06 21:26:16.152491+00 2025-08-06 21:26:16.152504+00 f t 70000.00 1 70000.00 5014 108 \N 4919 +35589 2025-08-07 03:30:57.086536+00 2025-08-07 03:30:57.086546+00 f t 42000.00 1 42000.00 5031 82 \N 4936 +35604 2025-08-07 03:50:39.531058+00 2025-08-07 03:50:39.531071+00 f t 42000.00 1 42000.00 5034 82 \N 4938 +35622 2025-08-07 05:54:31.748427+00 2025-08-07 05:54:31.748438+00 f t 22500.00 1 22500.00 5036 163 \N 4939 +35630 2025-08-07 12:41:09.298962+00 2025-08-07 12:41:09.298973+00 f t 50000.00 1 50000.00 5041 84 \N 4944 +36712 2025-08-10 21:00:00.212694+00 2025-08-10 21:00:00.212709+00 f t 42000.00 1 42000.00 5227 82 \N 659 +35642 2025-08-07 12:54:16.677311+00 2025-08-07 12:54:16.677325+00 f t 42000.00 1 42000.00 5045 82 \N 4948 +36713 2025-08-10 21:00:00.222121+00 2025-08-10 21:00:00.222136+00 f t 22500.00 1 22500.00 5227 86 \N 659 +33969 2025-08-04 15:10:14.84108+00 2025-08-04 15:10:14.841096+00 f t 42000.00 1 42000.00 4850 82 \N 4785 +33970 2025-08-04 15:10:14.849525+00 2025-08-04 15:10:14.849538+00 f t 31500.00 1 31500.00 4850 126 \N 4785 +33971 2025-08-04 15:10:14.858854+00 2025-08-04 15:10:14.858867+00 f t 13000.00 1 13000.00 4850 89 \N 4785 +33973 2025-08-04 15:10:58.30739+00 2025-08-04 15:10:58.307399+00 f t 68000.00 1 68000.00 4853 106 \N 4788 +33975 2025-08-04 15:21:16.967058+00 2025-08-04 15:21:16.967069+00 f t 50000.00 1 50000.00 4854 84 \N 4790 +33978 2025-08-04 15:23:32.41626+00 2025-08-04 15:23:32.41627+00 f t 42000.00 1 42000.00 4855 82 \N 4791 +33979 2025-08-04 15:23:32.422312+00 2025-08-04 15:23:32.422322+00 f t 22500.00 1 22500.00 4855 86 \N 4791 +35731 2025-08-07 14:19:26.518834+00 2025-08-07 14:19:26.518847+00 f t 76000.00 1 76000.00 5055 97 \N 4958 +35732 2025-08-07 14:19:26.525854+00 2025-08-07 14:19:26.525866+00 f t 42000.00 1 42000.00 5055 82 \N 4958 +35736 2025-08-07 16:14:56.509869+00 2025-08-07 16:14:56.509878+00 f t 42000.00 1 42000.00 5057 82 \N 4959 +33994 2025-08-04 15:27:39.401533+00 2025-08-04 15:27:39.401546+00 f t 42000.00 1 42000.00 4856 82 \N 4792 +33995 2025-08-04 15:27:39.408241+00 2025-08-04 15:27:39.40825+00 f t 87500.00 1 87500.00 4856 141 \N 4792 +33998 2025-08-04 15:29:39.126372+00 2025-08-04 15:29:39.126382+00 f t 50000.00 1 50000.00 4857 84 \N 4793 +34000 2025-08-04 15:32:23.719397+00 2025-08-04 15:32:23.719411+00 f t 42000.00 1 42000.00 4858 82 \N 4794 +35759 2025-08-07 17:28:21.013038+00 2025-08-07 17:28:21.013051+00 f t 42000.00 1 42000.00 5061 82 \N 4962 +34746 2025-08-05 19:19:16.865685+00 2025-08-05 19:19:16.865697+00 f t 27500.00 1 27500.00 4934 83 \N 4851 +35760 2025-08-07 17:28:21.019702+00 2025-08-07 17:28:21.019716+00 f t 7500.00 1 7500.00 5061 85 \N 4962 +35761 2025-08-07 17:28:21.025857+00 2025-08-07 17:28:21.02587+00 f t 22500.00 1 22500.00 5061 163 \N 4962 +34758 2025-08-05 21:37:24.031847+00 2025-08-05 21:37:24.03186+00 f t 76000.00 1 76000.00 4940 97 \N 4857 +35779 2025-08-07 19:57:18.385952+00 2025-08-07 19:57:18.385965+00 f t 50000.00 1 50000.00 5069 84 \N 4970 +34011 2025-08-04 15:35:11.242776+00 2025-08-04 15:35:11.242788+00 f t 42000.00 1 42000.00 4859 82 \N 4795 +34012 2025-08-04 15:35:11.257926+00 2025-08-04 15:35:11.257943+00 f t 87500.00 1 87500.00 4859 141 \N 4795 +34772 2025-08-05 22:24:17.921697+00 2025-08-05 22:24:17.921706+00 f t 76000.00 1 76000.00 4944 97 \N 4863 +34023 2025-08-04 15:44:35.030311+00 2025-08-04 15:44:35.030324+00 f t 42000.00 1 42000.00 4860 82 \N 4796 +34024 2025-08-04 15:44:35.038212+00 2025-08-04 15:44:35.038222+00 f t 22500.00 1 22500.00 4860 163 \N 4796 +34034 2025-08-04 15:53:52.91455+00 2025-08-04 15:53:52.914565+00 f t 42000.00 1 42000.00 4861 82 \N 4797 +34035 2025-08-04 15:53:52.921229+00 2025-08-04 15:53:52.921307+00 f t 7500.00 1 7500.00 4861 85 \N 4797 +34036 2025-08-04 15:53:52.927512+00 2025-08-04 15:53:52.927524+00 f t 22500.00 1 22500.00 4861 86 \N 4797 +34038 2025-08-04 16:54:12.406964+00 2025-08-04 16:54:12.406977+00 f t 50000.00 1 50000.00 4863 84 \N 4798 +34040 2025-08-04 17:04:04.484359+00 2025-08-04 17:04:04.484369+00 f t 68000.00 1 68000.00 4864 106 \N 4799 +34055 2025-08-04 17:11:05.368329+00 2025-08-04 17:11:05.368344+00 f t 42000.00 1 42000.00 4865 82 \N 4800 +34056 2025-08-04 17:11:05.375574+00 2025-08-04 17:11:05.375584+00 f t 22500.00 1 22500.00 4865 163 \N 4800 +34067 2025-08-04 17:13:18.962844+00 2025-08-04 17:13:18.962854+00 f t 42000.00 1 42000.00 4866 82 \N 4801 +34068 2025-08-04 17:13:18.968622+00 2025-08-04 17:13:18.968635+00 f t 22500.00 1 22500.00 4866 163 \N 4801 +34071 2025-08-04 17:20:21.667303+00 2025-08-04 17:20:21.667312+00 f t 42000.00 1 42000.00 4867 82 \N 4802 +34072 2025-08-04 17:20:21.676262+00 2025-08-04 17:20:21.676271+00 f t 22500.00 1 22500.00 4867 86 \N 4802 +34916 2025-08-05 23:27:58.400781+00 2025-08-05 23:27:58.400794+00 f t 42000.00 1 42000.00 4952 82 \N 4867 +34962 2025-08-06 03:55:57.425623+00 2025-08-06 03:55:57.425632+00 f t 42000.00 1 42000.00 4962 82 \N 4873 +35114 2025-08-06 11:39:44.04606+00 2025-08-06 11:39:44.046071+00 f t 50000.00 1 50000.00 4966 84 \N 4876 +34174 2025-08-04 17:54:43.897411+00 2025-08-04 17:54:43.897423+00 f t 20500.00 1 20500.00 4870 109 \N 4806 +34175 2025-08-04 17:54:43.903487+00 2025-08-04 17:54:43.903495+00 f t 42000.00 1 42000.00 4870 82 \N 4806 +34176 2025-08-04 17:54:43.908089+00 2025-08-04 17:54:43.908101+00 f t 7700.00 1 7700.00 4870 93 \N 4806 +34177 2025-08-04 17:54:43.914661+00 2025-08-04 17:54:43.914675+00 f t 12000.00 1 12000.00 4870 146 \N 4806 +34181 2025-08-04 17:57:07.139637+00 2025-08-04 17:57:07.13965+00 f t 42000.00 1 42000.00 4871 82 \N 4807 +35230 2025-08-06 12:33:56.958048+00 2025-08-06 12:33:56.958059+00 f t 42000.00 1 42000.00 4972 82 \N 4881 +35231 2025-08-06 12:33:56.964324+00 2025-08-06 12:33:56.964335+00 f t 7700.00 1 7700.00 4972 91 \N 4881 +35263 2025-08-06 13:45:26.936676+00 2025-08-06 13:45:26.936694+00 f t 42000.00 1 42000.00 4976 82 \N 4885 +35264 2025-08-06 13:45:26.944063+00 2025-08-06 13:45:26.944076+00 f t 22500.00 1 22500.00 4976 163 \N 4885 +34198 2025-08-04 20:08:10.335078+00 2025-08-04 20:08:10.335089+00 f t 42000.00 1 42000.00 4877 82 \N 4810 +35288 2025-08-06 15:17:15.330554+00 2025-08-06 15:17:15.330566+00 f t 42000.00 1 42000.00 4979 82 \N 4888 +35289 2025-08-06 15:17:15.343061+00 2025-08-06 15:17:15.343074+00 f t 22500.00 1 22500.00 4979 163 \N 4888 +34222 2025-08-04 20:29:04.899113+00 2025-08-04 20:29:04.899154+00 f t 27500.00 1 27500.00 4880 83 \N 4811 +36647 2025-08-10 15:39:00.915438+00 2025-08-10 15:39:00.915451+00 f t 42000.00 1 42000.00 5210 82 \N 5081 +34228 2025-08-04 20:31:57.048205+00 2025-08-04 20:31:57.048221+00 f t 50000.00 1 50000.00 4881 84 \N 4812 +36648 2025-08-10 15:39:00.922778+00 2025-08-10 15:39:00.922793+00 f t 7500.00 1 7500.00 5210 85 \N 5081 +35561 2025-08-06 21:08:21.69709+00 2025-08-06 21:08:21.697103+00 f t 42000.00 1 42000.00 5013 82 \N 4918 +35573 2025-08-06 22:42:36.518646+00 2025-08-06 22:42:36.518658+00 f t 42000.00 1 42000.00 5016 82 \N 4922 +34233 2025-08-04 20:35:34.905752+00 2025-08-04 20:35:34.905764+00 f t 50000.00 1 50000.00 4883 84 \N 4813 +35574 2025-08-06 22:42:36.525271+00 2025-08-06 22:42:36.525281+00 f t 31000.00 1 31000.00 5016 138 \N 4922 +35575 2025-08-06 22:42:36.530021+00 2025-08-06 22:42:36.530033+00 f t 13000.00 1 13000.00 5016 89 \N 4922 +35580 2025-08-06 23:35:07.224865+00 2025-08-06 23:35:07.22488+00 f t 42000.00 1 42000.00 5021 82 \N 4929 +35585 2025-08-07 01:18:46.965258+00 2025-08-07 01:18:46.965268+00 f t 42000.00 1 42000.00 5025 82 \N 4932 +34238 2025-08-04 21:23:00.806406+00 2025-08-04 21:23:00.806419+00 f t 50000.00 1 50000.00 4886 84 \N 4816 +34240 2025-08-04 21:32:50.908957+00 2025-08-04 21:32:50.90897+00 f t 42000.00 1 42000.00 4887 82 \N 4817 +36677 2025-08-10 18:07:09.952043+00 2025-08-10 18:07:09.952052+00 f t 42000.00 1 42000.00 5220 82 \N 5087 +36678 2025-08-10 18:07:09.959959+00 2025-08-10 18:07:09.959973+00 f t 22500.00 1 22500.00 5220 163 \N 5087 +34245 2025-08-04 22:38:45.835794+00 2025-08-04 22:38:45.835808+00 f t 31500.00 1 31500.00 4890 111 \N 4820 +34246 2025-08-04 22:38:45.843087+00 2025-08-04 22:38:45.8431+00 f t 42000.00 1 42000.00 4890 82 \N 4820 +34247 2025-08-04 22:38:45.852835+00 2025-08-04 22:38:45.852847+00 f t 7700.00 1 7700.00 4890 93 \N 4820 +34248 2025-08-04 22:38:45.859814+00 2025-08-04 22:38:45.859827+00 f t 12000.00 1 12000.00 4890 146 \N 4820 +35627 2025-08-07 11:56:35.766052+00 2025-08-07 11:56:35.766061+00 f t 70000.00 1 70000.00 5038 108 \N 4941 +34254 2025-08-04 22:41:17.263721+00 2025-08-04 22:41:17.263732+00 f t 27500.00 1 27500.00 4892 83 \N 4822 +35639 2025-08-07 12:52:45.72049+00 2025-08-07 12:52:45.720499+00 f t 42000.00 1 42000.00 5043 82 \N 4946 +34260 2025-08-04 22:57:05.528342+00 2025-08-04 22:57:05.528355+00 f t 42000.00 1 42000.00 4893 82 \N 4823 +34269 2025-08-04 23:03:38.357044+00 2025-08-04 23:03:38.357056+00 f t 42000.00 1 42000.00 4894 82 \N 4824 +34284 2025-08-05 00:50:49.846924+00 2025-08-05 00:50:49.846937+00 f t 27500.00 1 27500.00 4899 83 \N 4827 +34286 2025-08-05 00:51:43.354716+00 2025-08-05 00:51:43.354726+00 f t 42000.00 1 42000.00 4900 82 \N 4828 +34290 2025-08-05 01:22:33.718161+00 2025-08-05 01:22:33.718173+00 f t 42000.00 1 42000.00 4901 82 \N 4829 +35768 2025-08-07 17:44:18.533438+00 2025-08-07 17:44:18.533451+00 f t 42000.00 1 42000.00 5064 82 \N 4964 +34292 2025-08-05 01:31:54.051854+00 2025-08-05 01:31:54.051863+00 f t 42000.00 1 42000.00 4902 82 \N 4830 +35772 2025-08-07 18:05:53.266261+00 2025-08-07 18:05:53.266273+00 f t 50000.00 1 50000.00 5067 84 \N 4966 +34756 2025-08-05 21:04:23.505688+00 2025-08-05 21:04:23.505703+00 f t 42000.00 1 42000.00 4938 82 \N 4854 +34770 2025-08-05 22:02:00.777802+00 2025-08-05 22:02:00.777816+00 f t 50000.00 1 50000.00 4943 84 \N 4862 +34318 2025-08-05 01:48:39.384442+00 2025-08-05 01:48:39.384455+00 f t 27500.00 1 27500.00 4903 83 \N 4831 +34320 2025-08-05 02:00:30.442717+00 2025-08-05 02:00:30.44273+00 f t 50000.00 1 50000.00 4904 84 \N 4832 +34322 2025-08-05 10:57:04.668364+00 2025-08-05 10:57:04.668376+00 f t 95000.00 1 95000.00 4911 103 \N 4833 +34335 2025-08-05 11:56:36.953593+00 2025-08-05 11:56:36.953603+00 f t 42000.00 1 42000.00 4916 82 \N 4835 +34346 2025-08-05 12:13:04.803603+00 2025-08-05 12:13:04.803618+00 f t 42000.00 1 42000.00 4917 82 \N 4837 +34347 2025-08-05 12:13:04.811841+00 2025-08-05 12:13:04.811855+00 f t 7500.00 1 7500.00 4917 85 \N 4837 +34913 2025-08-05 22:35:16.620643+00 2025-08-05 22:35:16.620653+00 f t 42000.00 1 42000.00 4946 82 \N 4865 +34914 2025-08-05 22:35:16.627047+00 2025-08-05 22:35:16.627058+00 f t 7700.00 1 7700.00 4946 93 \N 4865 +34368 2025-08-05 12:13:22.129345+00 2025-08-05 12:13:22.129359+00 f t 31500.00 1 31500.00 4918 111 \N 4836 +34369 2025-08-05 12:13:22.135381+00 2025-08-05 12:13:22.135394+00 f t 42000.00 1 42000.00 4918 82 \N 4836 +34370 2025-08-05 12:13:22.140468+00 2025-08-05 12:13:22.14048+00 f t 7700.00 1 7700.00 4918 93 \N 4836 +34371 2025-08-05 12:13:22.144791+00 2025-08-05 12:13:22.1448+00 f t 12000.00 1 12000.00 4918 146 \N 4836 +34925 2025-08-06 00:18:33.238261+00 2025-08-06 00:18:33.238273+00 f t 31500.00 1 31500.00 4956 111 \N 4869 +34926 2025-08-06 00:18:33.244383+00 2025-08-06 00:18:33.244395+00 f t 42000.00 1 42000.00 4956 82 \N 4869 +34927 2025-08-06 00:18:33.250336+00 2025-08-06 00:18:33.250349+00 f t 7700.00 1 7700.00 4956 93 \N 4869 +34375 2025-08-05 13:04:55.995936+00 2025-08-05 13:04:55.995951+00 f t 42000.00 1 42000.00 4919 82 \N 4838 +34928 2025-08-06 00:18:33.256349+00 2025-08-06 00:18:33.256363+00 f t 12000.00 1 12000.00 4956 146 \N 4869 +34377 2025-08-05 13:33:26.174102+00 2025-08-05 13:33:26.174115+00 f t 50000.00 1 50000.00 4921 84 \N 4839 +34937 2025-08-06 00:35:45.895688+00 2025-08-06 00:35:45.895701+00 f t 42000.00 1 42000.00 4958 82 \N 4871 +34381 2025-08-05 14:14:11.7313+00 2025-08-05 14:14:11.731311+00 f t 42000.00 1 42000.00 4922 82 \N 4840 +34382 2025-08-05 14:14:11.738714+00 2025-08-05 14:14:11.738725+00 f t 24000.00 1 24000.00 4922 132 \N 4840 +34383 2025-08-05 14:14:11.745434+00 2025-08-05 14:14:11.745447+00 f t 13000.00 1 13000.00 4922 89 \N 4840 +34952 2025-08-06 03:43:46.650814+00 2025-08-06 03:43:46.650828+00 f t 42000.00 1 42000.00 4960 82 \N 4872 +34390 2025-08-05 15:14:22.115224+00 2025-08-05 15:14:22.115247+00 f t 42000.00 1 42000.00 4927 82 \N 4844 +34391 2025-08-05 15:14:22.12141+00 2025-08-05 15:14:22.121419+00 f t 22500.00 1 22500.00 4927 163 \N 4844 +34402 2025-08-05 16:21:16.747146+00 2025-08-05 16:21:16.747165+00 f t 42000.00 1 42000.00 4931 82 \N 4847 +34403 2025-08-05 16:21:16.751823+00 2025-08-05 16:21:16.751834+00 f t 7500.00 1 7500.00 4931 85 \N 4847 +34419 2025-08-05 18:43:20.360242+00 2025-08-05 18:43:20.360254+00 f t 68000.00 1 68000.00 4932 106 \N 4848 +34420 2025-08-05 18:43:20.366245+00 2025-08-05 18:43:20.366258+00 f t 68000.00 1 68000.00 4932 106 \N 4849 +35224 2025-08-06 12:15:54.276863+00 2025-08-06 12:15:54.276875+00 f t 34000.00 1 34000.00 4971 110 \N 4880 +35225 2025-08-06 12:15:54.285041+00 2025-08-06 12:15:54.285054+00 f t 42000.00 1 42000.00 4971 82 \N 4880 +35226 2025-08-06 12:15:54.290524+00 2025-08-06 12:15:54.290535+00 f t 7700.00 1 7700.00 4971 93 \N 4880 +35227 2025-08-06 12:15:54.295744+00 2025-08-06 12:15:54.295756+00 f t 12000.00 1 12000.00 4971 146 \N 4880 +35275 2025-08-06 14:08:20.646211+00 2025-08-06 14:08:20.64622+00 f t 42000.00 1 42000.00 4977 82 \N 4886 +35276 2025-08-06 14:08:20.652969+00 2025-08-06 14:08:20.65298+00 f t 75000.00 1 75000.00 4977 143 \N 4886 +35279 2025-08-06 14:33:07.693026+00 2025-08-06 14:33:07.693037+00 f t 42000.00 1 42000.00 4978 82 \N 4887 +37780 2025-08-13 15:43:19.566453+00 2025-08-13 15:43:19.566467+00 f t 42000.00 1 42000.00 5425 82 \N 5245 +37781 2025-08-13 15:43:19.574978+00 2025-08-13 15:43:19.574991+00 f t 22500.00 1 22500.00 5425 86 \N 5245 +37801 2025-08-13 15:45:20.09588+00 2025-08-13 15:45:20.095892+00 f t 52500.00 1 52500.00 5426 113 \N 5246 +35596 2025-08-07 03:35:09.01207+00 2025-08-07 03:35:09.012084+00 f t 50000.00 1 50000.00 5032 84 \N 4937 +35624 2025-08-07 10:37:12.064358+00 2025-08-07 10:37:12.064369+00 f t 68000.00 1 68000.00 5037 106 \N 4940 +35632 2025-08-07 12:41:49.168788+00 2025-08-07 12:41:49.168797+00 f t 42000.00 1 42000.00 5042 82 \N 4945 +35640 2025-08-07 12:53:13.767048+00 2025-08-07 12:53:13.767061+00 f t 50000.00 1 50000.00 5044 84 \N 4947 +35764 2025-08-07 17:39:02.761142+00 2025-08-07 17:39:02.761159+00 f t 42000.00 1 42000.00 5062 82 \N 4963 +35765 2025-08-07 17:39:02.776879+00 2025-08-07 17:39:02.776894+00 f t 7500.00 1 7500.00 5062 85 \N 4963 +34716 2025-08-05 19:08:46.679064+00 2025-08-05 19:08:46.679077+00 f t 20500.00 1 20500.00 4933 109 \N 4850 +34717 2025-08-05 19:08:46.686472+00 2025-08-05 19:08:46.686484+00 f t 42000.00 1 42000.00 4933 82 \N 4850 +34718 2025-08-05 19:08:46.692188+00 2025-08-05 19:08:46.692199+00 f t 7700.00 1 7700.00 4933 93 \N 4850 +34719 2025-08-05 19:08:46.697264+00 2025-08-05 19:08:46.697276+00 f t 12000.00 1 12000.00 4933 146 \N 4850 +34767 2025-08-05 21:50:11.744081+00 2025-08-05 21:50:11.744095+00 f t 42000.00 1 42000.00 4942 82 \N 4861 +34768 2025-08-05 21:50:11.754723+00 2025-08-05 21:50:11.754738+00 f t 22500.00 1 22500.00 4942 86 \N 4861 +35888 2025-08-07 20:23:58.768443+00 2025-08-07 20:23:58.768453+00 f t 60000.00 1 60000.00 5070 104 \N 4971 +35889 2025-08-07 20:23:58.775847+00 2025-08-07 20:23:58.775859+00 f t 42000.00 1 42000.00 5070 82 \N 4971 +35890 2025-08-07 20:23:58.787852+00 2025-08-07 20:23:58.787867+00 f t 68000.00 1 68000.00 5070 106 \N 4971 +35891 2025-08-07 20:23:58.793239+00 2025-08-07 20:23:58.793247+00 f t 7700.00 1 7700.00 5070 93 \N 4971 +35892 2025-08-07 20:23:58.79832+00 2025-08-07 20:23:58.798331+00 f t 12000.00 1 12000.00 5070 146 \N 4971 +35894 2025-08-07 21:01:28.488063+00 2025-08-07 21:01:28.488074+00 f t 42000.00 1 42000.00 5071 82 \N 4972 +35900 2025-08-07 23:16:48.671118+00 2025-08-07 23:16:48.671154+00 f t 42000.00 1 42000.00 5074 82 \N 4974 +34909 2025-08-05 22:33:34.512038+00 2025-08-05 22:33:34.512048+00 f t 42000.00 1 42000.00 4945 82 \N 4864 +34910 2025-08-05 22:33:34.518612+00 2025-08-05 22:33:34.518624+00 f t 7700.00 1 7700.00 4945 93 \N 4864 +34919 2025-08-05 23:29:56.389071+00 2025-08-05 23:29:56.389083+00 f t 42000.00 1 42000.00 4954 82 \N 4868 +34920 2025-08-05 23:29:56.395419+00 2025-08-05 23:29:56.395429+00 f t 22500.00 1 22500.00 4954 88 \N 4868 +35977 2025-08-08 01:26:49.319306+00 2025-08-08 01:26:49.319316+00 f t 42000.00 1 42000.00 5082 82 \N 4980 +35978 2025-08-08 01:26:49.324473+00 2025-08-08 01:26:49.324483+00 f t 11000.00 1 11000.00 5082 116 \N 4980 +35979 2025-08-08 01:26:49.32888+00 2025-08-08 01:26:49.32889+00 f t 7700.00 1 7700.00 5082 93 \N 4980 +35980 2025-08-08 01:26:49.333824+00 2025-08-08 01:26:49.333834+00 f t 12000.00 1 12000.00 5082 146 \N 4980 +35985 2025-08-08 02:35:44.665107+00 2025-08-08 02:35:44.665117+00 f t 20500.00 1 20500.00 5084 109 \N 4981 +35986 2025-08-08 02:35:44.672023+00 2025-08-08 02:35:44.672035+00 f t 42000.00 1 42000.00 5084 82 \N 4981 +35987 2025-08-08 02:35:44.677952+00 2025-08-08 02:35:44.677961+00 f t 7700.00 1 7700.00 5084 93 \N 4981 +35988 2025-08-08 02:35:44.683094+00 2025-08-08 02:35:44.683103+00 f t 12000.00 1 12000.00 5084 146 \N 4981 +35990 2025-08-08 02:55:31.420857+00 2025-08-08 02:55:31.420867+00 f t 50000.00 1 50000.00 5086 84 \N 4983 +35039 2025-08-06 04:53:25.181966+00 2025-08-06 04:53:25.18198+00 f t 34000.00 1 34000.00 4964 110 \N 4874 +35040 2025-08-06 04:53:25.190714+00 2025-08-06 04:53:25.190724+00 f t 42000.00 1 42000.00 4964 82 \N 4874 +35041 2025-08-06 04:53:25.197503+00 2025-08-06 04:53:25.197512+00 f t 11000.00 1 11000.00 4964 116 \N 4874 +35042 2025-08-06 04:53:25.203002+00 2025-08-06 04:53:25.203011+00 f t 68000.00 1 68000.00 4964 106 \N 4874 +35043 2025-08-06 04:53:25.208305+00 2025-08-06 04:53:25.208507+00 f t 7700.00 1 7700.00 4964 93 \N 4874 +35044 2025-08-06 04:53:25.214141+00 2025-08-06 04:53:25.214149+00 f t 12000.00 1 12000.00 4964 146 \N 4874 +35050 2025-08-06 10:38:14.525572+00 2025-08-06 10:38:14.525583+00 f t 50000.00 1 50000.00 4965 84 \N 4875 +36004 2025-08-08 03:18:48.10618+00 2025-08-08 03:18:48.106191+00 f t 50000.00 1 50000.00 5088 84 \N 4985 +35134 2025-08-06 11:47:46.112377+00 2025-08-06 11:47:46.112389+00 f t 50000.00 1 50000.00 4967 84 \N 4877 +35146 2025-08-06 11:54:19.769764+00 2025-08-06 11:54:19.769773+00 f t 50000.00 1 50000.00 4968 84 \N 4878 +35147 2025-08-06 11:54:19.775001+00 2025-08-06 11:54:19.775009+00 f t 42000.00 1 42000.00 4968 82 \N 4878 +35148 2025-08-06 11:54:19.779168+00 2025-08-06 11:54:19.779176+00 f t 7700.00 1 7700.00 4968 93 \N 4878 +35176 2025-08-06 11:57:28.9642+00 2025-08-06 11:57:28.964214+00 f t 50000.00 1 50000.00 4969 84 \N 4879 +35177 2025-08-06 11:57:28.978781+00 2025-08-06 11:57:28.978795+00 f t 42000.00 1 42000.00 4969 82 \N 4879 +35178 2025-08-06 11:57:28.993067+00 2025-08-06 11:57:28.993084+00 f t 7700.00 1 7700.00 4969 93 \N 4879 +35179 2025-08-06 11:57:29.002517+00 2025-08-06 11:57:29.002531+00 f t 12000.00 1 12000.00 4969 146 \N 4879 +36099 2025-08-08 08:15:34.542309+00 2025-08-08 08:15:34.542323+00 f t 42000.00 1 42000.00 5094 82 \N 4991 +35250 2025-08-06 13:14:37.886844+00 2025-08-06 13:14:37.886859+00 f t 42000.00 1 42000.00 4974 82 \N 4882 +35251 2025-08-06 13:14:37.895482+00 2025-08-06 13:14:37.895496+00 f t 7500.00 1 7500.00 4974 85 \N 4882 +35252 2025-08-06 13:14:37.902126+00 2025-08-06 13:14:37.90214+00 f t 22500.00 1 22500.00 4974 86 \N 4882 +36113 2025-08-08 09:03:43.61946+00 2025-08-08 09:03:43.61947+00 f t 42000.00 1 42000.00 5096 82 \N 4992 +36145 2025-08-08 12:50:01.441854+00 2025-08-08 12:50:01.441868+00 f t 50000.00 1 50000.00 5102 84 \N 4997 +36147 2025-08-08 14:06:59.462445+00 2025-08-08 14:06:59.462458+00 f t 50000.00 1 50000.00 5107 84 \N 5002 +36150 2025-08-08 14:11:49.955289+00 2025-08-08 14:11:49.955301+00 f t 42000.00 1 42000.00 5108 82 \N 5003 +36151 2025-08-08 14:11:49.962318+00 2025-08-08 14:11:49.962329+00 f t 22500.00 1 22500.00 5108 86 \N 5003 +36165 2025-08-08 14:26:56.596298+00 2025-08-08 14:26:56.596308+00 f t 50000.00 1 50000.00 5111 84 \N 5006 +36175 2025-08-08 14:28:59.513534+00 2025-08-08 14:28:59.513543+00 f t 42000.00 1 42000.00 5112 82 \N 5007 +36187 2025-08-08 14:44:14.855012+00 2025-08-08 14:44:14.855024+00 f t 50000.00 1 50000.00 5114 84 \N 5009 +36191 2025-08-08 14:50:52.854111+00 2025-08-08 14:50:52.854123+00 f t 50000.00 1 50000.00 5115 84 \N 5010 +36193 2025-08-08 15:06:22.221606+00 2025-08-08 15:06:22.221615+00 f t 95000.00 1 95000.00 5118 103 \N 5012 +36195 2025-08-08 15:25:52.758845+00 2025-08-08 15:25:52.758854+00 f t 42000.00 1 42000.00 5119 82 \N 5013 +36197 2025-08-08 16:09:52.386592+00 2025-08-08 16:09:52.386605+00 f t 50000.00 1 50000.00 5125 84 \N 5015 +35550 2025-08-06 21:02:45.677139+00 2025-08-06 21:02:45.677151+00 f t 42000.00 1 42000.00 5012 82 \N 4915 +35551 2025-08-06 21:02:45.68444+00 2025-08-06 21:02:45.684451+00 f t 7500.00 1 7500.00 5012 85 \N 4915 +35367 2025-08-06 15:55:45.491735+00 2025-08-06 15:55:45.491744+00 f t 42000.00 1 42000.00 4981 82 \N 4889 +35368 2025-08-06 15:55:45.496623+00 2025-08-06 15:55:45.496631+00 f t 7500.00 1 7500.00 4981 85 \N 4889 +35369 2025-08-06 15:55:45.50085+00 2025-08-06 15:55:45.500859+00 f t 22500.00 1 22500.00 4981 86 \N 4889 +35370 2025-08-06 15:55:45.505859+00 2025-08-06 15:55:45.505871+00 f t 42000.00 1 42000.00 4981 82 \N 4890 +35371 2025-08-06 15:55:45.510627+00 2025-08-06 15:55:45.510635+00 f t 7500.00 1 7500.00 4981 85 \N 4890 +35372 2025-08-06 15:55:45.514849+00 2025-08-06 15:55:45.514857+00 f t 22500.00 1 22500.00 4981 86 \N 4890 +36651 2025-08-10 16:25:39.751257+00 2025-08-10 16:25:39.751271+00 f t 42000.00 1 42000.00 5213 82 \N 5083 +36652 2025-08-10 16:25:39.758233+00 2025-08-10 16:25:39.758245+00 f t 22500.00 1 22500.00 5213 86 \N 5083 +35377 2025-08-06 16:10:00.350254+00 2025-08-06 16:10:00.350266+00 f t 42000.00 1 42000.00 4982 82 \N 4891 +35577 2025-08-06 23:00:16.653157+00 2025-08-06 23:00:16.653172+00 f t 68000.00 1 68000.00 5019 106 \N 4924 +35379 2025-08-06 16:26:04.016307+00 2025-08-06 16:26:04.016321+00 f t 50000.00 1 50000.00 4983 84 \N 4892 +35592 2025-08-07 03:31:29.495914+00 2025-08-07 03:31:29.495925+00 f t 50000.00 1 50000.00 5030 84 \N 4935 +35383 2025-08-06 16:42:29.507013+00 2025-08-06 16:42:29.507022+00 f t 42000.00 1 42000.00 4986 82 \N 4893 +35602 2025-08-07 03:43:39.045737+00 2025-08-07 03:43:39.045747+00 f t 50000.00 1 50000.00 5033 84 \N 2462 +35390 2025-08-06 17:17:06.427806+00 2025-08-06 17:17:06.427822+00 f t 42000.00 1 42000.00 4987 82 \N 4894 +36730 2025-08-10 21:58:29.958401+00 2025-08-10 21:58:29.958416+00 f t 42000.00 1 42000.00 5230 82 \N 5096 +35651 2025-08-07 13:15:32.09653+00 2025-08-07 13:15:32.096545+00 f t 76000.00 1 76000.00 5048 97 \N 4950 +36731 2025-08-10 21:58:29.96707+00 2025-08-10 21:58:29.967082+00 f t 69000.00 1 69000.00 5230 142 \N 5096 +36736 2025-08-10 22:28:09.212267+00 2025-08-10 22:28:09.212281+00 f t 42000.00 1 42000.00 5233 82 \N 5098 +35400 2025-08-06 17:32:24.732767+00 2025-08-06 17:32:24.732776+00 f t 42000.00 1 42000.00 4988 82 \N 4895 +36737 2025-08-10 22:28:09.222957+00 2025-08-10 22:28:09.222971+00 f t 22500.00 1 22500.00 5233 86 \N 5098 +41528 2025-08-22 00:38:17.133338+00 2025-08-22 00:38:17.13335+00 f t 42000.00 1 42000.00 6007 82 \N 5777 +41529 2025-08-22 00:38:17.141094+00 2025-08-22 00:38:17.141105+00 f t 22500.00 1 22500.00 6007 163 \N 5777 +35722 2025-08-07 13:27:17.456645+00 2025-08-07 13:27:17.456658+00 f t 31500.00 1 31500.00 5052 111 \N 4956 +35723 2025-08-07 13:27:17.468977+00 2025-08-07 13:27:17.468991+00 f t 42000.00 1 42000.00 5052 82 \N 4956 +35724 2025-08-07 13:27:17.47686+00 2025-08-07 13:27:17.476873+00 f t 7700.00 1 7700.00 5052 93 \N 4956 +35725 2025-08-07 13:27:17.483015+00 2025-08-07 13:27:17.483028+00 f t 12000.00 1 12000.00 5052 146 \N 4956 +35422 2025-08-06 18:05:08.825547+00 2025-08-06 18:05:08.825562+00 f t 50000.00 1 50000.00 4990 84 \N 4896 +35424 2025-08-06 18:13:25.055606+00 2025-08-06 18:13:25.05562+00 f t 42000.00 1 42000.00 4991 82 \N 4897 +35748 2025-08-07 17:21:14.653123+00 2025-08-07 17:21:14.653136+00 f t 42000.00 1 42000.00 5060 82 \N 4960 +35426 2025-08-06 18:19:09.853458+00 2025-08-06 18:19:09.853473+00 f t 42000.00 1 42000.00 4992 82 \N 4898 +35749 2025-08-07 17:21:14.658642+00 2025-08-07 17:21:14.658653+00 f t 42000.00 1 42000.00 5060 82 \N 4961 +35770 2025-08-07 18:02:17.493704+00 2025-08-07 18:02:17.493725+00 f t 42000.00 1 42000.00 5066 82 \N 4965 +35774 2025-08-07 18:53:39.458531+00 2025-08-07 18:53:39.458541+00 f t 42000.00 1 42000.00 5068 82 \N 4967 +36829 2025-08-10 22:56:50.250851+00 2025-08-10 22:56:50.250861+00 f t 50000.00 1 50000.00 5235 84 \N 5099 +36830 2025-08-10 22:56:50.257398+00 2025-08-10 22:56:50.257411+00 f t 42000.00 1 42000.00 5235 82 \N 5099 +36831 2025-08-10 22:56:50.26296+00 2025-08-10 22:56:50.26297+00 f t 12000.00 1 12000.00 5235 146 \N 5099 +36845 2025-08-11 03:30:55.891404+00 2025-08-11 03:30:55.891417+00 f t 12000.00 1 12000.00 5241 146 \N 5105 +35455 2025-08-06 18:26:45.327388+00 2025-08-06 18:26:45.327399+00 f t 50000.00 1 50000.00 4993 84 \N 4146 +35464 2025-08-06 18:30:44.936163+00 2025-08-06 18:30:44.936173+00 f t 42000.00 1 42000.00 4994 82 \N 4899 +35467 2025-08-06 18:36:31.725557+00 2025-08-06 18:36:31.725571+00 f t 42000.00 1 42000.00 4997 82 \N 4900 +36916 2025-08-11 13:43:58.630256+00 2025-08-11 13:43:58.63027+00 f t 42000.00 1 42000.00 5252 82 \N 5113 +36947 2025-08-11 16:18:14.151727+00 2025-08-11 16:18:14.151738+00 f t 68000.00 1 68000.00 5262 106 \N 5120 +35914 2025-08-08 00:15:28.597252+00 2025-08-08 00:15:28.597263+00 f t 42000.00 1 42000.00 5075 82 \N 4976 +35915 2025-08-08 00:15:28.603802+00 2025-08-08 00:15:28.60381+00 f t 22500.00 1 22500.00 5075 86 \N 4976 +35922 2025-08-08 00:28:55.432094+00 2025-08-08 00:28:55.432137+00 f t 42000.00 1 42000.00 5077 82 \N 4977 +35495 2025-08-06 18:44:38.18048+00 2025-08-06 18:44:38.180493+00 f t 42000.00 1 42000.00 4999 82 \N 4902 +35923 2025-08-08 00:28:55.436896+00 2025-08-08 00:28:55.436904+00 f t 22500.00 1 22500.00 5077 163 \N 4977 +36992 2025-08-11 20:14:28.183845+00 2025-08-11 20:14:28.183861+00 f t 42000.00 1 42000.00 5278 82 \N 5133 +35937 2025-08-08 00:46:54.172768+00 2025-08-08 00:46:54.17278+00 f t 42000.00 1 42000.00 5078 82 \N 4978 +35939 2025-08-08 00:52:17.16816+00 2025-08-08 00:52:17.168169+00 f t 50000.00 1 50000.00 5079 84 \N 4979 +36993 2025-08-11 20:14:28.206946+00 2025-08-11 20:14:28.20696+00 f t 7500.00 1 7500.00 5278 85 \N 5133 +35522 2025-08-06 18:45:28.337551+00 2025-08-06 18:45:28.337559+00 f t 42000.00 1 42000.00 4998 82 \N 4901 +35523 2025-08-06 18:45:28.343277+00 2025-08-06 18:45:28.343288+00 f t 7700.00 1 7700.00 4998 94 \N 4901 +35999 2025-08-08 03:01:02.910578+00 2025-08-08 03:01:02.910591+00 f t 50000.00 1 50000.00 5087 84 \N 4984 +36087 2025-08-08 03:52:25.644094+00 2025-08-08 03:52:25.644107+00 f t 31500.00 1 31500.00 5089 111 \N 4986 +36088 2025-08-08 03:52:25.65082+00 2025-08-08 03:52:25.650833+00 f t 42000.00 1 42000.00 5089 82 \N 4986 +36089 2025-08-08 03:52:25.657974+00 2025-08-08 03:52:25.657986+00 f t 7700.00 1 7700.00 5089 93 \N 4986 +36090 2025-08-08 03:52:25.66612+00 2025-08-08 03:52:25.666129+00 f t 12000.00 1 12000.00 5089 146 \N 4986 +36092 2025-08-08 05:27:39.735551+00 2025-08-08 05:27:39.735561+00 f t 42000.00 1 42000.00 5090 82 \N 4987 +36095 2025-08-08 07:59:59.539093+00 2025-08-08 07:59:59.539102+00 f t 42000.00 1 42000.00 5093 82 \N 4990 +36096 2025-08-08 07:59:59.544026+00 2025-08-08 07:59:59.544035+00 f t 22500.00 1 22500.00 5093 163 \N 4990 +36140 2025-08-08 12:14:59.312097+00 2025-08-08 12:14:59.312107+00 f t 68000.00 1 68000.00 5100 106 \N 4996 +36154 2025-08-08 14:14:36.071256+00 2025-08-08 14:14:36.071266+00 f t 50000.00 1 50000.00 5109 84 \N 5004 +36156 2025-08-08 14:16:44.438245+00 2025-08-08 14:16:44.438255+00 f t 70000.00 1 70000.00 5110 108 \N 5005 +36182 2025-08-08 14:41:43.986855+00 2025-08-08 14:41:43.986868+00 f t 50000.00 1 50000.00 5113 84 \N 5008 +38924 2025-08-15 14:46:47.249501+00 2025-08-15 14:46:47.249514+00 f t 75000.00 1 75000.00 5565 108 \N 5374 +37802 2025-08-13 15:45:20.103275+00 2025-08-13 15:45:20.103287+00 f t 85000.00 1 85000.00 5426 165 \N 5246 +37803 2025-08-13 15:45:20.109946+00 2025-08-13 15:45:20.109958+00 f t 12000.00 1 12000.00 5426 146 \N 5246 +36226 2025-08-08 16:22:01.450992+00 2025-08-08 16:22:01.451006+00 f t 42000.00 1 42000.00 5127 82 \N 5016 +36227 2025-08-08 16:22:01.460863+00 2025-08-08 16:22:01.460878+00 f t 22500.00 1 22500.00 5127 163 \N 5016 +37807 2025-08-13 16:58:43.218427+00 2025-08-13 16:58:43.218441+00 f t 27500.00 1 27500.00 5430 83 \N 5249 +36230 2025-08-08 17:04:41.316747+00 2025-08-08 17:04:41.316756+00 f t 42000.00 1 42000.00 5128 82 \N 5017 +41431 2025-08-21 20:44:19.098726+00 2025-08-21 20:44:19.098735+00 f t 42000.00 1 42000.00 5997 82 \N 5764 +36233 2025-08-08 17:11:45.752847+00 2025-08-08 17:11:45.75286+00 f t 42000.00 1 42000.00 5129 82 \N 5018 +36234 2025-08-08 17:11:45.759321+00 2025-08-08 17:11:45.759334+00 f t 7500.00 1 7500.00 5129 85 \N 5018 +36236 2025-08-08 21:10:37.520352+00 2025-08-08 21:10:37.520365+00 f t 42000.00 1 42000.00 5140 82 \N 5027 +36239 2025-08-08 21:26:54.170906+00 2025-08-08 21:26:54.170915+00 f t 42000.00 1 42000.00 5142 82 \N 5029 +36240 2025-08-08 21:26:54.176908+00 2025-08-08 21:26:54.176929+00 f t 22500.00 1 22500.00 5142 163 \N 5029 +37836 2025-08-13 17:19:18.916156+00 2025-08-13 17:19:18.916168+00 f t 42000.00 1 42000.00 5431 82 \N 5251 +37837 2025-08-13 17:19:18.923406+00 2025-08-13 17:19:18.923417+00 f t 7500.00 1 7500.00 5431 85 \N 5251 +36251 2025-08-08 21:35:50.648381+00 2025-08-08 21:35:50.648391+00 f t 42000.00 1 42000.00 5143 82 \N 5030 +36252 2025-08-08 21:35:50.65391+00 2025-08-08 21:35:50.653919+00 f t 22500.00 1 22500.00 5143 88 \N 5030 +36256 2025-08-08 22:30:19.50782+00 2025-08-08 22:30:19.507832+00 f t 42000.00 1 42000.00 5144 82 \N 5031 +41518 2025-08-21 21:24:04.341985+00 2025-08-21 21:24:04.341998+00 f t 42000.00 1 42000.00 6000 82 \N 5767 +36273 2025-08-09 00:34:37.579523+00 2025-08-09 00:34:37.579534+00 f t 42000.00 1 42000.00 5149 82 \N 5034 +36274 2025-08-09 00:34:37.585018+00 2025-08-09 00:34:37.585027+00 f t 22500.00 1 22500.00 5149 86 \N 5034 +36283 2025-08-09 00:43:08.89439+00 2025-08-09 00:43:08.894399+00 f t 50000.00 1 50000.00 5150 84 \N 3400 +36285 2025-08-09 00:46:49.336552+00 2025-08-09 00:46:49.336565+00 f t 42000.00 1 42000.00 5151 82 \N 5035 +36292 2025-08-09 01:27:39.815394+00 2025-08-09 01:27:39.815404+00 f t 50000.00 1 50000.00 5156 84 \N 5038 +36842 2025-08-11 00:08:51.907987+00 2025-08-11 00:08:51.908003+00 f t 42000.00 1 42000.00 5238 82 \N 5102 +36843 2025-08-11 00:08:51.915612+00 2025-08-11 00:08:51.915625+00 f t 7500.00 1 7500.00 5238 85 \N 5102 +36849 2025-08-11 05:48:08.620756+00 2025-08-11 05:48:08.620766+00 f t 27500.00 1 27500.00 5243 83 \N 5106 +36308 2025-08-09 01:32:18.547485+00 2025-08-09 01:32:18.547498+00 f t 42000.00 1 42000.00 5157 82 \N 5039 +36309 2025-08-09 01:32:18.553244+00 2025-08-09 01:32:18.553254+00 f t 7500.00 1 7500.00 5157 85 \N 5039 +36310 2025-08-09 01:32:18.558204+00 2025-08-09 01:32:18.558213+00 f t 22500.00 1 22500.00 5157 86 \N 5039 +36882 2025-08-11 12:02:58.288244+00 2025-08-11 12:02:58.288261+00 f t 27500.00 1 27500.00 5246 83 \N 5109 +36896 2025-08-11 13:06:09.729744+00 2025-08-11 13:06:09.729754+00 f t 50000.00 1 50000.00 5249 84 \N 5112 +36326 2025-08-09 03:26:10.976247+00 2025-08-09 03:26:10.97626+00 f t 42000.00 1 42000.00 5158 82 \N 5041 +36929 2025-08-11 14:14:47.783357+00 2025-08-11 14:14:47.783371+00 f t 42000.00 1 42000.00 5256 82 \N 883 +36936 2025-08-11 16:03:38.065143+00 2025-08-11 16:03:38.065157+00 f t 42000.00 1 42000.00 5261 82 \N 5119 +36937 2025-08-11 16:03:38.074297+00 2025-08-11 16:03:38.074311+00 f t 22500.00 1 22500.00 5261 86 \N 5119 +36951 2025-08-11 16:20:10.107527+00 2025-08-11 16:20:10.107543+00 f t 50000.00 1 50000.00 5263 84 \N 5121 +36339 2025-08-09 07:54:16.137808+00 2025-08-09 07:54:16.137818+00 f t 50000.00 1 50000.00 5162 84 \N 5046 +36966 2025-08-11 16:36:14.338951+00 2025-08-11 16:36:14.338962+00 f t 70000.00 1 70000.00 5265 108 \N 5123 +36988 2025-08-11 19:45:06.939803+00 2025-08-11 19:45:06.93982+00 f t 42000.00 1 42000.00 5276 82 \N 5131 +36989 2025-08-11 19:45:06.960859+00 2025-08-11 19:45:06.960875+00 f t 22500.00 1 22500.00 5276 88 \N 5131 +36350 2025-08-09 10:14:14.12514+00 2025-08-09 10:14:14.125149+00 f t 50000.00 1 50000.00 5164 84 \N 5048 +36997 2025-08-11 20:23:14.26065+00 2025-08-11 20:23:14.260661+00 f t 42000.00 1 42000.00 5280 82 \N 5134 +36354 2025-08-09 11:16:00.09883+00 2025-08-09 11:16:00.098838+00 f t 42000.00 1 42000.00 5165 82 \N 5049 +36357 2025-08-09 11:21:28.767556+00 2025-08-09 11:21:28.767566+00 f t 42000.00 1 42000.00 5166 82 \N 5051 +36358 2025-08-09 11:21:28.774497+00 2025-08-09 11:21:28.774507+00 f t 22500.00 1 22500.00 5166 163 \N 5051 +36366 2025-08-09 11:47:58.116499+00 2025-08-09 11:47:58.11651+00 f t 42000.00 1 42000.00 5167 82 \N 5052 +36395 2025-08-09 14:17:17.836391+00 2025-08-09 14:17:17.8364+00 f t 42000.00 1 42000.00 5173 82 \N 5055 +36396 2025-08-09 14:17:17.842647+00 2025-08-09 14:17:17.842659+00 f t 22500.00 1 22500.00 5173 163 \N 5055 +36397 2025-08-09 14:17:17.847681+00 2025-08-09 14:17:17.847695+00 f t 42000.00 1 42000.00 5173 82 \N 5056 +36398 2025-08-09 14:17:17.853354+00 2025-08-09 14:17:17.853381+00 f t 22500.00 1 22500.00 5173 163 \N 5056 +36402 2025-08-09 16:32:25.242497+00 2025-08-09 16:32:25.242513+00 f t 42000.00 1 42000.00 5177 82 \N 5058 +36405 2025-08-09 20:34:19.768092+00 2025-08-09 20:34:19.768107+00 f t 50000.00 1 50000.00 5181 84 \N 5061 +36420 2025-08-09 21:13:11.860145+00 2025-08-09 21:13:11.860167+00 f t 68000.00 1 68000.00 5182 106 \N 5062 +37130 2025-08-12 01:19:43.199303+00 2025-08-12 01:19:43.199324+00 f t 42000.00 1 42000.00 5312 82 \N 5152 +36430 2025-08-09 22:39:32.791943+00 2025-08-09 22:39:32.791957+00 f t 68000.00 1 68000.00 5161 106 \N 5045 +36432 2025-08-10 00:13:11.434114+00 2025-08-10 00:13:11.434126+00 f t 50000.00 1 50000.00 5189 84 \N 5064 +37150 2025-08-12 01:58:32.992353+00 2025-08-12 01:58:32.992365+00 f t 42000.00 1 42000.00 5315 82 \N 5154 +37151 2025-08-12 01:58:33.000435+00 2025-08-12 01:58:33.000449+00 f t 22500.00 1 22500.00 5315 86 \N 5154 +36439 2025-08-10 00:30:20.589224+00 2025-08-10 00:30:20.589239+00 f t 42000.00 1 42000.00 5191 82 \N 5066 +36442 2025-08-10 00:38:52.777682+00 2025-08-10 00:38:52.777698+00 f t 50000.00 1 50000.00 5192 84 \N 5067 +36445 2025-08-10 01:00:12.998982+00 2025-08-10 01:00:12.998999+00 f t 50000.00 1 50000.00 5194 84 \N 5069 +36453 2025-08-10 01:05:14.033068+00 2025-08-10 01:05:14.033082+00 f t 42000.00 1 42000.00 5195 82 \N 5070 +36458 2025-08-10 01:50:49.060904+00 2025-08-10 01:50:49.060916+00 f t 50000.00 1 50000.00 5196 84 \N 5071 +37268 2025-08-12 10:27:39.344948+00 2025-08-12 10:27:39.344963+00 f t 50000.00 1 50000.00 5326 84 \N 5164 +37275 2025-08-12 12:08:13.490742+00 2025-08-12 12:08:13.490756+00 f t 42000.00 1 42000.00 5331 82 \N 5168 +37276 2025-08-12 12:08:13.504332+00 2025-08-12 12:08:13.504349+00 f t 7500.00 1 7500.00 5331 85 \N 5168 +40160 2025-08-18 20:57:04.62183+00 2025-08-18 20:57:04.621844+00 f t 42000.00 1 42000.00 5775 82 \N 5560 +40161 2025-08-18 20:57:04.629649+00 2025-08-18 20:57:04.629658+00 f t 7500.00 1 7500.00 5775 85 \N 5560 +36655 2025-08-10 16:32:13.354189+00 2025-08-10 16:32:13.354202+00 f t 42000.00 1 42000.00 5214 82 \N 5084 +36656 2025-08-10 16:32:13.364842+00 2025-08-10 16:32:13.364853+00 f t 22500.00 1 22500.00 5214 86 \N 5084 +36662 2025-08-10 17:04:36.935576+00 2025-08-10 17:04:36.935589+00 f t 50000.00 1 50000.00 5218 84 \N 5086 +36682 2025-08-10 19:13:48.300967+00 2025-08-10 19:13:48.300976+00 f t 42000.00 1 42000.00 5222 82 \N 5089 +36693 2025-08-10 19:33:56.580422+00 2025-08-10 19:33:56.580431+00 f t 42000.00 1 42000.00 5223 82 \N 5090 +36694 2025-08-10 19:33:56.604715+00 2025-08-10 19:33:56.604726+00 f t 29000.00 1 29000.00 5223 124 \N 5090 +36695 2025-08-10 19:33:56.609973+00 2025-08-10 19:33:56.609982+00 f t 7500.00 1 7500.00 5223 85 \N 5090 +36696 2025-08-10 19:33:56.615011+00 2025-08-10 19:33:56.615021+00 f t 13000.00 1 13000.00 5223 89 \N 5090 +36701 2025-08-10 20:11:02.05181+00 2025-08-10 20:11:02.051827+00 f t 50000.00 1 50000.00 5225 84 \N 5091 +36529 2025-08-10 02:14:36.793431+00 2025-08-10 02:14:36.793458+00 f t 42000.00 1 42000.00 5197 82 \N 1465 +36530 2025-08-10 02:14:36.801296+00 2025-08-10 02:14:36.801307+00 f t 7700.00 1 7700.00 5197 91 \N 1465 +36534 2025-08-10 03:51:34.888772+00 2025-08-10 03:51:34.888786+00 f t 42000.00 1 42000.00 5198 82 \N 5072 +36536 2025-08-10 03:54:30.606352+00 2025-08-10 03:54:30.606366+00 f t 27500.00 1 27500.00 5199 83 \N 5073 +36726 2025-08-10 21:10:20.536578+00 2025-08-10 21:10:20.536592+00 f t 42000.00 1 42000.00 5229 82 \N 5095 +36727 2025-08-10 21:10:20.542504+00 2025-08-10 21:10:20.542513+00 f t 7500.00 1 7500.00 5229 85 \N 5095 +36733 2025-08-10 22:26:23.864256+00 2025-08-10 22:26:23.864269+00 f t 27500.00 1 27500.00 5231 83 \N 5097 +36540 2025-08-10 06:15:34.301696+00 2025-08-10 06:15:34.301711+00 f t 42000.00 1 42000.00 5201 82 \N 5075 +36553 2025-08-10 07:21:55.202548+00 2025-08-10 07:21:55.202557+00 f t 50000.00 1 50000.00 5203 84 \N 5076 +36839 2025-08-10 22:58:07.354627+00 2025-08-10 22:58:07.354646+00 f t 50000.00 1 50000.00 5236 84 \N 5100 +37948 2025-08-13 18:54:19.72679+00 2025-08-13 18:54:19.726804+00 f t 95000.00 1 95000.00 5437 103 \N 5258 +37966 2025-08-13 19:55:46.653334+00 2025-08-13 19:55:46.653346+00 f t 42000.00 1 42000.00 5439 82 \N 5261 +36588 2025-08-10 14:00:49.649873+00 2025-08-10 14:00:49.649884+00 f t 42000.00 1 42000.00 5206 82 \N 5077 +37977 2025-08-13 21:44:36.931183+00 2025-08-13 21:44:36.931195+00 f t 42000.00 1 42000.00 5442 82 \N 5264 +37978 2025-08-13 21:44:36.936906+00 2025-08-13 21:44:36.936916+00 f t 7500.00 1 7500.00 5442 85 \N 5264 +36591 2025-08-10 14:10:30.317368+00 2025-08-10 14:10:30.317381+00 f t 42000.00 1 42000.00 5207 82 \N 5078 +36592 2025-08-10 14:10:30.325993+00 2025-08-10 14:10:30.326007+00 f t 7500.00 1 7500.00 5207 85 \N 5078 +37996 2025-08-13 23:18:39.933762+00 2025-08-13 23:18:39.933776+00 f t 42000.00 1 42000.00 5446 82 \N 5268 +38004 2025-08-14 00:15:45.663382+00 2025-08-14 00:15:45.663392+00 f t 50000.00 1 50000.00 5448 84 \N 5270 +36933 2025-08-11 15:39:14.044908+00 2025-08-11 15:39:14.044922+00 f t 68000.00 1 68000.00 5260 106 \N 5118 +36614 2025-08-10 14:55:09.675422+00 2025-08-10 14:55:09.675433+00 f t 50000.00 1 50000.00 5208 84 \N 5079 +36979 2025-08-11 17:27:56.309372+00 2025-08-11 17:27:56.309387+00 f t 42000.00 1 42000.00 5268 82 \N 5124 +36980 2025-08-11 17:27:56.327594+00 2025-08-11 17:27:56.327606+00 f t 7700.00 1 7700.00 5268 93 \N 5124 +36981 2025-08-11 17:27:56.335124+00 2025-08-11 17:27:56.335172+00 f t 85000.00 1 85000.00 5268 165 \N 5124 +36982 2025-08-11 17:27:56.342602+00 2025-08-11 17:27:56.342616+00 f t 12000.00 1 12000.00 5268 146 \N 5124 +36985 2025-08-11 18:37:10.877911+00 2025-08-11 18:37:10.877924+00 f t 42000.00 1 42000.00 5273 82 \N 5127 +37011 2025-08-11 21:19:20.406542+00 2025-08-11 21:19:20.406555+00 f t 42000.00 1 42000.00 5290 82 \N 5137 +37012 2025-08-11 21:19:20.413212+00 2025-08-11 21:19:20.413222+00 f t 33000.00 1 33000.00 5290 133 \N 5137 +37013 2025-08-11 21:19:20.419959+00 2025-08-11 21:19:20.419973+00 f t 7500.00 1 7500.00 5290 85 \N 5137 +37014 2025-08-11 21:19:20.426252+00 2025-08-11 21:19:20.426261+00 f t 13000.00 1 13000.00 5290 89 \N 5137 +37025 2025-08-11 22:04:22.350145+00 2025-08-11 22:04:22.350166+00 f t 42000.00 1 42000.00 5293 82 \N 5138 +37026 2025-08-11 22:04:22.364766+00 2025-08-11 22:04:22.364777+00 f t 7500.00 1 7500.00 5293 85 \N 5138 +37028 2025-08-11 22:50:38.345277+00 2025-08-11 22:50:38.345292+00 f t 50000.00 1 50000.00 5299 84 \N 5142 +37032 2025-08-11 22:59:31.047059+00 2025-08-11 22:59:31.047074+00 f t 76000.00 1 76000.00 5301 97 \N 5143 +37036 2025-08-11 23:34:47.525232+00 2025-08-11 23:34:47.525248+00 f t 50000.00 1 50000.00 5304 84 \N 5145 +37038 2025-08-11 23:50:28.533825+00 2025-08-11 23:50:28.533836+00 f t 42000.00 1 42000.00 5305 82 \N 5146 +37048 2025-08-12 00:06:22.586454+00 2025-08-12 00:06:22.586465+00 f t 42000.00 1 42000.00 5307 82 \N 5148 +37097 2025-08-12 00:20:15.45713+00 2025-08-12 00:20:15.457146+00 f t 42000.00 1 42000.00 5308 82 \N 5149 +37098 2025-08-12 00:20:15.468142+00 2025-08-12 00:20:15.468157+00 f t 7500.00 1 7500.00 5308 85 \N 5149 +37099 2025-08-12 00:20:15.479404+00 2025-08-12 00:20:15.479418+00 f t 22500.00 1 22500.00 5308 86 \N 5149 +37101 2025-08-12 00:24:36.998439+00 2025-08-12 00:24:36.998451+00 f t 95000.00 1 95000.00 5309 103 \N 5150 +37115 2025-08-12 00:52:36.213535+00 2025-08-12 00:52:36.21355+00 f t 42000.00 1 42000.00 5311 82 \N 5151 +37140 2025-08-12 01:24:27.725971+00 2025-08-12 01:24:27.72598+00 f t 42000.00 1 42000.00 5313 82 \N 5153 +37141 2025-08-12 01:24:27.734177+00 2025-08-12 01:24:27.734187+00 f t 7500.00 1 7500.00 5313 85 \N 5153 +37168 2025-08-12 02:25:46.91499+00 2025-08-12 02:25:46.915005+00 f t 76000.00 1 76000.00 5316 97 \N 5155 +37191 2025-08-12 02:48:57.223308+00 2025-08-12 02:48:57.223321+00 f t 42000.00 1 42000.00 5319 82 \N 5158 +37192 2025-08-12 02:48:57.230826+00 2025-08-12 02:48:57.230837+00 f t 22500.00 1 22500.00 5319 86 \N 5158 +37195 2025-08-12 04:28:24.623452+00 2025-08-12 04:28:24.623467+00 f t 42000.00 1 42000.00 5320 82 \N 5159 +37196 2025-08-12 04:28:24.631301+00 2025-08-12 04:28:24.63131+00 f t 22500.00 1 22500.00 5320 86 \N 5159 +37199 2025-08-12 08:41:28.974838+00 2025-08-12 08:41:28.974852+00 f t 42000.00 1 42000.00 5322 82 \N 5161 +37200 2025-08-12 08:41:28.98331+00 2025-08-12 08:41:28.98332+00 f t 22500.00 1 22500.00 5322 163 \N 5161 +37250 2025-08-12 09:45:36.742586+00 2025-08-12 09:45:36.742638+00 f t 32500.00 1 32500.00 5325 112 \N 5163 +37251 2025-08-12 09:45:36.756541+00 2025-08-12 09:45:36.756557+00 f t 42000.00 1 42000.00 5325 82 \N 5163 +37252 2025-08-12 09:45:36.76616+00 2025-08-12 09:45:36.766175+00 f t 7700.00 1 7700.00 5325 93 \N 5163 +37253 2025-08-12 09:45:36.77746+00 2025-08-12 09:45:36.777477+00 f t 12000.00 1 12000.00 5325 146 \N 5163 +37285 2025-08-12 12:32:21.358077+00 2025-08-12 12:32:21.35809+00 f t 50000.00 1 50000.00 5335 84 \N 5170 +37292 2025-08-12 12:38:03.289419+00 2025-08-12 12:38:03.289434+00 f t 42000.00 1 42000.00 5336 82 \N 5171 +37314 2025-08-12 12:38:58.258547+00 2025-08-12 12:38:58.258561+00 f t 42000.00 1 42000.00 5332 82 \N 5172 +37315 2025-08-12 12:38:58.267798+00 2025-08-12 12:38:58.267808+00 f t 22500.00 1 22500.00 5332 163 \N 5172 +38926 2025-08-15 14:50:09.900174+00 2025-08-15 14:50:09.90019+00 f t 27500.00 1 27500.00 5566 83 \N 5375 +38941 2025-08-15 15:17:11.719874+00 2025-08-15 15:17:11.719887+00 f t 42000.00 1 42000.00 5568 82 \N 5378 +37318 2025-08-12 13:19:48.103394+00 2025-08-12 13:19:48.103407+00 f t 42000.00 1 42000.00 5338 82 \N 5173 +37319 2025-08-12 13:19:48.110251+00 2025-08-12 13:19:48.110263+00 f t 7500.00 1 7500.00 5338 85 \N 5173 +37805 2025-08-13 16:42:52.931842+00 2025-08-13 16:42:52.931856+00 f t 42000.00 1 42000.00 5428 82 \N 5247 +37325 2025-08-12 13:24:55.136338+00 2025-08-12 13:24:55.13635+00 f t 42000.00 1 42000.00 5340 82 \N 5174 +37332 2025-08-12 13:31:13.145767+00 2025-08-12 13:31:13.145785+00 f t 49000.00 1 49000.00 5339 98 \N 5175 +37342 2025-08-12 13:46:32.474823+00 2025-08-12 13:46:32.474836+00 f t 50000.00 1 50000.00 5341 84 \N 443 +37343 2025-08-12 13:46:32.481492+00 2025-08-12 13:46:32.481502+00 f t 50000.00 1 50000.00 5341 84 \N 444 +37914 2025-08-13 17:48:47.656408+00 2025-08-13 17:48:47.656429+00 f t 34000.00 1 34000.00 5432 110 \N 5253 +37915 2025-08-13 17:48:47.664752+00 2025-08-13 17:48:47.664764+00 f t 42000.00 1 42000.00 5432 82 \N 5253 +37916 2025-08-13 17:48:47.671315+00 2025-08-13 17:48:47.671329+00 f t 7700.00 1 7700.00 5432 93 \N 5253 +37917 2025-08-13 17:48:47.677947+00 2025-08-13 17:48:47.677961+00 f t 12000.00 1 12000.00 5432 146 \N 5253 +37936 2025-08-13 18:14:42.629464+00 2025-08-13 18:14:42.629474+00 f t 42000.00 1 42000.00 5436 82 \N 5256 +37937 2025-08-13 18:14:42.640711+00 2025-08-13 18:14:42.640723+00 f t 7500.00 1 7500.00 5436 85 \N 5256 +37376 2025-08-12 16:00:58.091491+00 2025-08-12 16:00:58.091506+00 f t 32500.00 1 32500.00 5344 112 \N 5178 +37377 2025-08-12 16:00:58.107851+00 2025-08-12 16:00:58.107867+00 f t 42000.00 1 42000.00 5344 82 \N 5178 +37378 2025-08-12 16:00:58.127885+00 2025-08-12 16:00:58.127895+00 f t 7700.00 1 7700.00 5344 93 \N 5178 +37379 2025-08-12 16:00:58.148138+00 2025-08-12 16:00:58.148153+00 f t 12000.00 1 12000.00 5344 146 \N 5178 +37381 2025-08-12 16:39:00.474867+00 2025-08-12 16:39:00.474878+00 f t 50000.00 1 50000.00 5345 84 \N 5179 +37961 2025-08-13 19:04:58.770833+00 2025-08-13 19:04:58.770846+00 f t 42000.00 1 42000.00 5438 82 \N 5259 +37962 2025-08-13 19:04:58.776496+00 2025-08-13 19:04:58.776506+00 f t 7500.00 1 7500.00 5438 85 \N 5259 +37963 2025-08-13 19:04:58.792071+00 2025-08-13 19:04:58.792083+00 f t 42000.00 1 42000.00 5438 82 \N 5260 +37964 2025-08-13 19:04:58.79783+00 2025-08-13 19:04:58.79784+00 f t 7500.00 1 7500.00 5438 85 \N 5260 +37391 2025-08-12 16:40:31.145663+00 2025-08-12 16:40:31.145675+00 f t 42000.00 1 42000.00 5346 82 \N 5180 +37392 2025-08-12 16:40:31.153158+00 2025-08-12 16:40:31.153171+00 f t 7500.00 1 7500.00 5346 85 \N 5180 +37393 2025-08-12 16:40:31.160265+00 2025-08-12 16:40:31.16028+00 f t 22500.00 1 22500.00 5346 86 \N 5180 +37396 2025-08-12 17:15:53.931521+00 2025-08-12 17:15:53.931535+00 f t 42000.00 1 42000.00 5350 82 \N 5182 +37397 2025-08-12 17:15:53.939437+00 2025-08-12 17:15:53.939451+00 f t 7500.00 1 7500.00 5350 85 \N 5182 +37994 2025-08-13 22:57:15.17187+00 2025-08-13 22:57:15.171881+00 f t 50000.00 1 50000.00 5445 84 \N 5267 +37407 2025-08-12 18:20:06.863678+00 2025-08-12 18:20:06.863696+00 f t 50000.00 1 50000.00 5353 84 \N 5184 +37412 2025-08-12 18:31:32.685701+00 2025-08-12 18:31:32.685712+00 f t 20500.00 1 20500.00 5355 109 \N 5185 +37413 2025-08-12 18:31:32.693169+00 2025-08-12 18:31:32.693184+00 f t 42000.00 1 42000.00 5355 82 \N 5185 +37414 2025-08-12 18:31:32.69994+00 2025-08-12 18:31:32.699951+00 f t 7700.00 1 7700.00 5355 93 \N 5185 +37415 2025-08-12 18:31:32.706979+00 2025-08-12 18:31:32.706993+00 f t 12000.00 1 12000.00 5355 146 \N 5185 +37419 2025-08-12 19:13:31.18381+00 2025-08-12 19:13:31.183826+00 f t 50000.00 1 50000.00 5357 84 \N 5187 +37430 2025-08-12 20:18:52.508919+00 2025-08-12 20:18:52.50893+00 f t 95000.00 1 95000.00 5361 103 \N 5191 +37437 2025-08-12 22:31:00.711351+00 2025-08-12 22:31:00.711365+00 f t 42000.00 1 42000.00 5367 82 \N 5193 +37438 2025-08-12 22:31:00.719877+00 2025-08-12 22:31:00.71989+00 f t 7500.00 1 7500.00 5367 85 \N 5193 +37441 2025-08-12 22:32:55.285735+00 2025-08-12 22:32:55.285745+00 f t 42000.00 1 42000.00 5368 82 \N 5194 +37442 2025-08-12 22:32:55.291732+00 2025-08-12 22:32:55.291741+00 f t 22500.00 1 22500.00 5368 86 \N 5194 +37444 2025-08-12 23:36:05.284323+00 2025-08-12 23:36:05.284339+00 f t 50000.00 1 50000.00 5372 84 \N 5197 +37449 2025-08-12 23:54:44.591529+00 2025-08-12 23:54:44.591538+00 f t 42000.00 1 42000.00 5373 82 \N 5198 +37450 2025-08-12 23:54:44.599264+00 2025-08-12 23:54:44.599276+00 f t 22500.00 1 22500.00 5373 88 \N 5198 +37453 2025-08-13 00:16:19.975738+00 2025-08-13 00:16:19.975751+00 f t 42000.00 1 42000.00 5374 82 \N 5200 +37454 2025-08-13 00:16:19.983625+00 2025-08-13 00:16:19.983637+00 f t 22500.00 1 22500.00 5374 86 \N 5200 +37484 2025-08-13 00:21:48.826918+00 2025-08-13 00:21:48.826933+00 f t 93750.00 1 93750.00 5375 90 \N 5201 +37485 2025-08-13 00:21:48.835025+00 2025-08-13 00:21:48.835037+00 f t 42000.00 1 42000.00 5375 82 \N 5201 +37486 2025-08-13 00:21:48.844613+00 2025-08-13 00:21:48.844628+00 f t 22500.00 1 22500.00 5375 86 \N 5201 +37489 2025-08-13 00:55:48.762418+00 2025-08-13 00:55:48.762426+00 f t 42000.00 1 42000.00 5377 82 \N 5203 +37490 2025-08-13 00:55:48.768471+00 2025-08-13 00:55:48.768479+00 f t 22500.00 1 22500.00 5377 86 \N 5203 +37492 2025-08-13 00:58:51.334354+00 2025-08-13 00:58:51.334363+00 f t 42000.00 1 42000.00 5378 82 \N 5205 +38187 2025-08-14 04:41:24.397111+00 2025-08-14 04:41:24.397121+00 f t 42000.00 1 42000.00 5465 82 \N 5291 +38194 2025-08-14 05:12:17.888408+00 2025-08-14 05:12:17.888421+00 f t 42000.00 1 42000.00 5466 82 \N 5292 +38195 2025-08-14 05:12:17.897305+00 2025-08-14 05:12:17.897315+00 f t 7500.00 1 7500.00 5466 85 \N 5292 +37552 2025-08-13 01:17:04.605856+00 2025-08-13 01:17:04.605865+00 f t 31500.00 1 31500.00 5380 111 \N 5206 +37553 2025-08-13 01:17:04.614249+00 2025-08-13 01:17:04.614261+00 f t 42000.00 1 42000.00 5380 82 \N 5206 +37554 2025-08-13 01:17:04.621364+00 2025-08-13 01:17:04.621376+00 f t 7700.00 1 7700.00 5380 93 \N 5206 +37555 2025-08-13 01:17:04.630019+00 2025-08-13 01:17:04.630031+00 f t 85000.00 1 85000.00 5380 165 \N 5206 +37556 2025-08-13 01:17:04.638115+00 2025-08-13 01:17:04.638128+00 f t 12000.00 1 12000.00 5380 146 \N 5206 +37557 2025-08-13 01:17:04.645467+00 2025-08-13 01:17:04.645479+00 f t 7500.00 1 7500.00 5380 85 \N 5206 +37560 2025-08-13 01:18:06.599641+00 2025-08-13 01:18:06.59965+00 f t 42000.00 1 42000.00 5382 82 \N 5208 +37561 2025-08-13 01:18:06.607531+00 2025-08-13 01:18:06.60754+00 f t 22500.00 1 22500.00 5382 88 \N 5208 +37565 2025-08-13 02:12:23.167647+00 2025-08-13 02:12:23.167661+00 f t 50000.00 1 50000.00 5384 84 \N 5210 +37567 2025-08-13 02:46:19.372182+00 2025-08-13 02:46:19.372192+00 f t 42000.00 1 42000.00 5386 82 \N 5212 +37569 2025-08-13 03:02:41.878836+00 2025-08-13 03:02:41.878846+00 f t 42000.00 1 42000.00 5387 82 \N 5213 +37605 2025-08-13 04:46:41.703216+00 2025-08-13 04:46:41.703232+00 f t 42000.00 1 42000.00 5388 82 \N 5214 +37606 2025-08-13 04:46:41.713713+00 2025-08-13 04:46:41.713726+00 f t 7700.00 1 7700.00 5388 93 \N 5214 +37607 2025-08-13 04:46:41.723356+00 2025-08-13 04:46:41.723366+00 f t 12000.00 1 12000.00 5388 146 \N 5214 +38942 2025-08-15 15:17:11.727596+00 2025-08-15 15:17:11.727605+00 f t 7500.00 1 7500.00 5568 85 \N 5378 +37614 2025-08-13 09:13:17.11011+00 2025-08-13 09:13:17.110121+00 f t 42000.00 1 42000.00 5391 82 \N 5218 +37619 2025-08-13 10:16:46.230505+00 2025-08-13 10:16:46.230519+00 f t 42000.00 1 42000.00 5392 82 \N 5219 +37620 2025-08-13 10:16:46.240186+00 2025-08-13 10:16:46.240196+00 f t 22500.00 1 22500.00 5392 163 \N 5219 +37625 2025-08-13 11:22:06.507053+00 2025-08-13 11:22:06.507066+00 f t 68000.00 1 68000.00 5395 106 \N 5221 +37630 2025-08-13 12:21:13.258741+00 2025-08-13 12:21:13.258754+00 f t 42000.00 1 42000.00 5397 82 \N 5222 +37631 2025-08-13 12:21:13.268866+00 2025-08-13 12:21:13.268877+00 f t 7500.00 1 7500.00 5397 85 \N 5222 +39021 2025-08-15 17:35:06.865266+00 2025-08-15 17:35:06.86528+00 f t 34000.00 1 34000.00 5580 110 \N 5385 +39022 2025-08-15 17:35:06.875098+00 2025-08-15 17:35:06.875111+00 f t 50000.00 1 50000.00 5580 84 \N 5385 +39023 2025-08-15 17:35:06.885815+00 2025-08-15 17:35:06.885831+00 f t 42000.00 1 42000.00 5580 82 \N 5385 +39024 2025-08-15 17:35:06.894988+00 2025-08-15 17:35:06.895002+00 f t 7700.00 1 7700.00 5580 93 \N 5385 +39025 2025-08-15 17:35:06.90459+00 2025-08-15 17:35:06.904605+00 f t 12000.00 1 12000.00 5580 146 \N 5385 +39029 2025-08-15 19:04:20.351512+00 2025-08-15 19:04:20.351522+00 f t 50000.00 1 50000.00 5584 84 \N 5388 +39063 2025-08-15 20:42:14.606288+00 2025-08-15 20:42:14.6063+00 f t 68000.00 1 68000.00 5594 106 \N 5395 +37648 2025-08-13 12:24:34.245204+00 2025-08-13 12:24:34.245217+00 f t 42000.00 1 42000.00 5398 82 \N 5223 +37649 2025-08-13 12:24:34.253417+00 2025-08-13 12:24:34.253426+00 f t 33000.00 1 33000.00 5398 140 \N 5223 +37650 2025-08-13 12:24:34.25992+00 2025-08-13 12:24:34.259931+00 f t 7500.00 1 7500.00 5398 85 \N 5223 +37651 2025-08-13 12:24:34.267014+00 2025-08-13 12:24:34.267025+00 f t 13000.00 1 13000.00 5398 89 \N 5223 +39067 2025-08-15 22:09:07.00993+00 2025-08-15 22:09:07.009944+00 f t 50000.00 1 50000.00 5595 84 \N 5397 +37927 2025-08-13 18:11:41.777388+00 2025-08-13 18:11:41.777399+00 f t 42000.00 1 42000.00 5434 82 \N 5255 +39095 2025-08-16 00:06:28.330141+00 2025-08-16 00:06:28.330154+00 f t 42000.00 1 42000.00 5604 82 \N 5407 +37938 2025-08-13 18:20:22.167609+00 2025-08-13 18:20:22.167625+00 f t 42000.00 1 42000.00 5418 82 \N 5239 +37939 2025-08-13 18:20:22.179766+00 2025-08-13 18:20:22.17978+00 f t 42000.00 1 42000.00 5418 82 \N 5238 +37666 2025-08-13 13:14:48.037188+00 2025-08-13 13:14:48.037198+00 f t 50000.00 1 50000.00 5409 84 \N 5230 +39123 2025-08-16 04:49:19.535403+00 2025-08-16 04:49:19.535416+00 f t 31500.00 1 31500.00 5613 111 \N 5413 +37969 2025-08-13 21:33:20.932466+00 2025-08-13 21:33:20.932481+00 f t 42000.00 1 42000.00 5441 82 \N 5263 +37671 2025-08-13 13:34:08.659571+00 2025-08-13 13:34:08.659586+00 f t 50000.00 1 50000.00 5406 84 \N 5228 +37970 2025-08-13 21:33:20.940593+00 2025-08-13 21:33:20.940607+00 f t 22500.00 1 22500.00 5441 86 \N 5263 +39124 2025-08-16 04:49:19.54322+00 2025-08-16 04:49:19.543234+00 f t 42000.00 1 42000.00 5613 82 \N 5413 +39125 2025-08-16 04:49:19.55076+00 2025-08-16 04:49:19.550773+00 f t 7700.00 1 7700.00 5613 93 \N 5413 +37675 2025-08-13 13:37:36.185321+00 2025-08-13 13:37:36.185339+00 f t 42000.00 1 42000.00 5411 82 \N 5233 +39126 2025-08-16 04:49:19.559016+00 2025-08-16 04:49:19.559029+00 f t 12000.00 1 12000.00 5613 146 \N 5413 +37983 2025-08-13 22:04:16.524936+00 2025-08-13 22:04:16.524945+00 f t 27500.00 1 27500.00 5444 83 \N 5266 +37999 2025-08-14 00:07:38.139158+00 2025-08-14 00:07:38.13917+00 f t 42000.00 1 42000.00 5447 82 \N 5269 +38000 2025-08-14 00:07:38.14597+00 2025-08-14 00:07:38.14598+00 f t 69000.00 1 69000.00 5447 142 \N 5269 +38006 2025-08-14 02:26:27.379837+00 2025-08-14 02:26:27.379849+00 f t 42000.00 1 42000.00 5452 82 \N 5274 +39148 2025-08-16 07:42:42.003896+00 2025-08-16 07:42:42.003908+00 f t 50000.00 1 50000.00 5618 84 \N 5417 +37692 2025-08-13 14:44:27.435433+00 2025-08-13 14:44:27.435444+00 f t 42000.00 1 42000.00 5416 82 \N 5237 +37693 2025-08-13 14:44:27.441758+00 2025-08-13 14:44:27.441767+00 f t 7500.00 1 7500.00 5416 85 \N 5237 +39196 2025-08-16 15:10:42.350565+00 2025-08-16 15:10:42.350577+00 f t 27500.00 1 27500.00 5634 83 \N 5433 +37722 2025-08-13 15:01:38.975577+00 2025-08-13 15:01:38.97559+00 f t 42000.00 1 42000.00 5419 82 \N 5240 +37723 2025-08-13 15:01:38.984573+00 2025-08-13 15:01:38.984585+00 f t 7500.00 1 7500.00 5419 85 \N 5240 +37726 2025-08-13 15:10:08.833293+00 2025-08-13 15:10:08.833309+00 f t 68000.00 1 68000.00 5420 106 \N 5241 +39300 2025-08-16 23:15:27.670516+00 2025-08-16 23:15:27.670529+00 f t 42000.00 1 42000.00 5655 82 \N 5454 +39372 2025-08-17 00:33:57.981808+00 2025-08-17 00:33:57.981817+00 f t 68000.00 1 68000.00 5660 106 \N 5458 +39399 2025-08-17 02:00:58.795263+00 2025-08-17 02:00:58.795274+00 f t 42000.00 1 42000.00 5666 82 \N 5464 +39400 2025-08-17 02:00:58.802183+00 2025-08-17 02:00:58.802192+00 f t 7700.00 1 7700.00 5666 91 \N 5464 +38157 2025-08-14 02:33:05.516234+00 2025-08-14 02:33:05.516243+00 f t 20500.00 1 20500.00 5453 109 \N 5275 +38158 2025-08-14 02:33:05.524926+00 2025-08-14 02:33:05.524935+00 f t 42000.00 1 42000.00 5453 82 \N 5275 +38159 2025-08-14 02:33:05.532588+00 2025-08-14 02:33:05.532601+00 f t 7700.00 1 7700.00 5453 93 \N 5275 +38160 2025-08-14 02:33:05.53972+00 2025-08-14 02:33:05.539734+00 f t 12000.00 1 12000.00 5453 146 \N 5275 +38163 2025-08-14 02:44:37.091521+00 2025-08-14 02:44:37.091531+00 f t 42000.00 1 42000.00 5454 82 \N 5276 +38164 2025-08-14 02:44:37.098291+00 2025-08-14 02:44:37.09831+00 f t 22500.00 1 22500.00 5454 86 \N 5276 +37773 2025-08-13 15:42:42.045751+00 2025-08-13 15:42:42.045765+00 f t 34000.00 1 34000.00 5424 110 \N 5243 +37774 2025-08-13 15:42:42.054313+00 2025-08-13 15:42:42.054324+00 f t 42000.00 1 42000.00 5424 82 \N 5243 +37775 2025-08-13 15:42:42.06325+00 2025-08-13 15:42:42.063263+00 f t 7700.00 1 7700.00 5424 93 \N 5243 +37776 2025-08-13 15:42:42.070112+00 2025-08-13 15:42:42.070126+00 f t 12000.00 1 12000.00 5424 146 \N 5243 +37777 2025-08-13 15:42:42.076979+00 2025-08-13 15:42:42.076991+00 f t 22500.00 1 22500.00 5424 163 \N 5243 +38180 2025-08-14 02:59:58.12913+00 2025-08-14 02:59:58.129143+00 f t 68000.00 1 68000.00 5458 106 \N 5278 +38182 2025-08-14 04:34:55.717501+00 2025-08-14 04:34:55.717514+00 f t 42000.00 1 42000.00 5461 82 \N 5283 +38184 2025-08-14 04:36:52.213901+00 2025-08-14 04:36:52.213911+00 f t 42000.00 1 42000.00 5462 82 \N 5284 +39538 2025-08-17 11:59:38.347125+00 2025-08-17 11:59:38.347161+00 f t 31500.00 1 31500.00 5683 111 \N 5482 +39539 2025-08-17 11:59:38.353596+00 2025-08-17 11:59:38.353605+00 f t 42000.00 1 42000.00 5683 82 \N 5482 +39540 2025-08-17 11:59:38.35855+00 2025-08-17 11:59:38.358563+00 f t 68000.00 1 68000.00 5683 106 \N 5482 +39541 2025-08-17 11:59:38.363027+00 2025-08-17 11:59:38.363037+00 f t 7700.00 1 7700.00 5683 93 \N 5482 +39542 2025-08-17 11:59:38.367917+00 2025-08-17 11:59:38.36793+00 f t 12000.00 1 12000.00 5683 146 \N 5482 +39544 2025-08-17 12:59:28.167165+00 2025-08-17 12:59:28.167177+00 f t 42000.00 1 42000.00 5686 82 \N 5483 +40162 2025-08-18 20:57:04.635959+00 2025-08-18 20:57:04.635968+00 f t 22500.00 1 22500.00 5775 86 \N 5560 +40163 2025-08-18 20:57:04.642204+00 2025-08-18 20:57:04.642218+00 f t 22500.00 1 22500.00 5775 87 \N 5560 +38958 2025-08-15 16:12:32.662227+00 2025-08-15 16:12:32.662238+00 f t 42000.00 1 42000.00 5575 82 \N 5382 +38959 2025-08-15 16:12:32.669019+00 2025-08-15 16:12:32.669031+00 f t 24000.00 1 24000.00 5575 125 \N 5382 +38960 2025-08-15 16:12:32.68478+00 2025-08-15 16:12:32.684792+00 f t 13000.00 1 13000.00 5575 89 \N 5382 +38967 2025-08-15 16:24:27.845791+00 2025-08-15 16:24:27.845805+00 f t 42000.00 1 42000.00 5576 82 \N 5383 +38968 2025-08-15 16:24:27.8533+00 2025-08-15 16:24:27.853319+00 f t 7700.00 1 7700.00 5576 93 \N 5383 +38969 2025-08-15 16:24:27.859952+00 2025-08-15 16:24:27.859965+00 f t 52500.00 1 52500.00 5576 114 \N 5383 +38970 2025-08-15 16:24:27.8663+00 2025-08-15 16:24:27.866311+00 f t 12000.00 1 12000.00 5576 146 \N 5383 +39000 2025-08-15 17:29:22.46066+00 2025-08-15 17:29:22.460673+00 f t 27500.00 1 27500.00 5579 83 \N 5384 +38340 2025-08-14 05:22:21.298346+00 2025-08-14 05:22:21.298355+00 f t 34000.00 1 34000.00 5467 110 \N 5293 +38341 2025-08-14 05:22:21.304912+00 2025-08-14 05:22:21.304925+00 f t 42000.00 1 42000.00 5467 82 \N 5293 +38342 2025-08-14 05:22:21.310579+00 2025-08-14 05:22:21.310588+00 f t 7700.00 1 7700.00 5467 93 \N 5293 +38343 2025-08-14 05:22:21.31576+00 2025-08-14 05:22:21.315768+00 f t 12000.00 1 12000.00 5467 146 \N 5293 +38346 2025-08-14 05:38:34.195841+00 2025-08-14 05:38:34.195852+00 f t 27500.00 1 27500.00 5470 83 \N 5295 +39165 2025-08-16 13:30:08.76918+00 2025-08-16 13:30:08.769193+00 f t 50000.00 1 50000.00 5625 84 \N 5424 +39227 2025-08-16 17:48:42.692403+00 2025-08-16 17:48:42.692415+00 f t 42000.00 1 42000.00 5641 82 \N 5439 +39228 2025-08-16 17:48:42.698617+00 2025-08-16 17:48:42.698627+00 f t 33000.00 1 33000.00 5641 139 \N 5439 +39229 2025-08-16 17:48:42.703277+00 2025-08-16 17:48:42.703285+00 f t 13000.00 1 13000.00 5641 89 \N 5439 +39254 2025-08-16 23:06:20.863299+00 2025-08-16 23:06:20.863311+00 f t 42000.00 1 42000.00 5653 82 \N 5451 +39255 2025-08-16 23:06:20.870386+00 2025-08-16 23:06:20.870399+00 f t 7500.00 1 7500.00 5653 85 \N 5451 +38399 2025-08-14 12:20:56.796936+00 2025-08-14 12:20:56.796948+00 f t 32500.00 1 32500.00 5474 112 \N 5296 +38400 2025-08-14 12:20:56.804726+00 2025-08-14 12:20:56.804738+00 f t 31500.00 1 31500.00 5474 111 \N 5296 +38401 2025-08-14 12:20:56.811475+00 2025-08-14 12:20:56.811486+00 f t 42000.00 1 42000.00 5474 82 \N 5296 +38402 2025-08-14 12:20:56.817991+00 2025-08-14 12:20:56.818004+00 f t 7700.00 1 7700.00 5474 93 \N 5296 +38403 2025-08-14 12:20:56.824259+00 2025-08-14 12:20:56.824272+00 f t 85000.00 1 85000.00 5474 165 \N 5296 +38404 2025-08-14 12:20:56.830349+00 2025-08-14 12:20:56.830361+00 f t 12000.00 1 12000.00 5474 146 \N 5296 +38405 2025-08-14 12:20:56.836567+00 2025-08-14 12:20:56.836579+00 f t 7500.00 1 7500.00 5474 85 \N 5296 +38408 2025-08-14 12:54:32.319863+00 2025-08-14 12:54:32.319875+00 f t 42000.00 1 42000.00 5475 82 \N 5297 +38409 2025-08-14 12:54:32.327079+00 2025-08-14 12:54:32.327092+00 f t 22500.00 1 22500.00 5475 163 \N 5297 +38413 2025-08-14 12:55:51.931557+00 2025-08-14 12:55:51.931567+00 f t 42000.00 1 42000.00 5476 82 \N 5298 +38426 2025-08-14 12:56:30.363522+00 2025-08-14 12:56:30.363535+00 f t 42000.00 1 42000.00 5477 82 \N 5299 +38427 2025-08-14 12:56:30.371594+00 2025-08-14 12:56:30.371607+00 f t 33000.00 1 33000.00 5477 139 \N 5299 +38428 2025-08-14 12:56:30.378889+00 2025-08-14 12:56:30.378898+00 f t 13000.00 1 13000.00 5477 89 \N 5299 +39365 2025-08-17 00:28:38.135582+00 2025-08-17 00:28:38.135594+00 f t 50000.00 1 50000.00 5658 84 \N 5457 +38437 2025-08-14 13:28:08.267739+00 2025-08-14 13:28:08.267749+00 f t 42000.00 1 42000.00 5479 82 \N 5300 +38438 2025-08-14 13:28:08.27558+00 2025-08-14 13:28:08.275593+00 f t 7500.00 1 7500.00 5479 85 \N 5300 +38441 2025-08-14 14:12:28.063652+00 2025-08-14 14:12:28.063666+00 f t 42000.00 1 42000.00 5481 82 \N 5301 +38442 2025-08-14 14:12:28.071659+00 2025-08-14 14:12:28.071671+00 f t 69000.00 1 69000.00 5481 142 \N 5301 +39405 2025-08-17 03:30:10.74321+00 2025-08-17 03:30:10.743227+00 f t 50000.00 1 50000.00 5670 84 \N 5467 +38447 2025-08-14 14:20:32.60157+00 2025-08-14 14:20:32.601578+00 f t 42000.00 1 42000.00 5483 82 \N 5303 +38448 2025-08-14 14:20:32.609543+00 2025-08-14 14:20:32.60956+00 f t 7700.00 1 7700.00 5483 93 \N 5303 +38449 2025-08-14 14:20:32.619916+00 2025-08-14 14:20:32.619926+00 f t 85000.00 1 85000.00 5483 165 \N 5303 +38450 2025-08-14 14:20:32.626378+00 2025-08-14 14:20:32.626388+00 f t 12000.00 1 12000.00 5483 146 \N 5303 +38452 2025-08-14 14:32:41.198074+00 2025-08-14 14:32:41.198089+00 f t 42000.00 1 42000.00 5484 82 \N 5304 +39438 2025-08-17 05:34:30.019965+00 2025-08-17 05:34:30.019975+00 f t 50000.00 1 50000.00 5675 84 \N 5472 +39444 2025-08-17 06:36:24.386534+00 2025-08-17 06:36:24.386544+00 f t 27500.00 1 27500.00 5677 83 \N 5474 +38489 2025-08-14 14:52:09.983653+00 2025-08-14 14:52:09.983669+00 f t 42000.00 1 42000.00 5487 82 \N 5307 +38490 2025-08-14 14:52:09.992965+00 2025-08-14 14:52:09.992979+00 f t 7700.00 1 7700.00 5487 93 \N 5307 +38491 2025-08-14 14:52:10.007684+00 2025-08-14 14:52:10.007695+00 f t 85000.00 1 85000.00 5487 165 \N 5307 +38492 2025-08-14 14:52:10.015927+00 2025-08-14 14:52:10.015939+00 f t 12000.00 1 12000.00 5487 146 \N 5307 +38493 2025-08-14 14:52:10.023642+00 2025-08-14 14:52:10.023656+00 f t 42000.00 1 42000.00 5487 82 \N 5308 +38494 2025-08-14 14:52:10.031189+00 2025-08-14 14:52:10.031202+00 f t 7700.00 1 7700.00 5487 93 \N 5308 +38495 2025-08-14 14:52:10.039191+00 2025-08-14 14:52:10.039205+00 f t 85000.00 1 85000.00 5487 165 \N 5308 +38496 2025-08-14 14:52:10.048092+00 2025-08-14 14:52:10.048105+00 f t 12000.00 1 12000.00 5487 146 \N 5308 +38500 2025-08-14 15:19:15.798898+00 2025-08-14 15:19:15.798913+00 f t 42000.00 1 42000.00 5489 82 \N 5310 +38502 2025-08-14 15:26:18.298784+00 2025-08-14 15:26:18.298794+00 f t 42000.00 1 42000.00 5490 82 \N 5311 +38506 2025-08-14 15:43:28.061625+00 2025-08-14 15:43:28.061637+00 f t 42000.00 1 42000.00 5492 82 \N 5312 +38514 2025-08-14 16:19:47.924051+00 2025-08-14 16:19:47.924063+00 f t 50000.00 1 50000.00 5497 84 \N 5317 +38517 2025-08-14 16:25:03.287826+00 2025-08-14 16:25:03.287839+00 f t 50000.00 1 50000.00 5500 84 \N 5319 +38521 2025-08-14 17:19:59.518682+00 2025-08-14 17:19:59.518693+00 f t 50000.00 1 50000.00 5501 84 \N 5320 +38580 2025-08-14 18:03:15.107589+00 2025-08-14 18:03:15.107603+00 f t 42000.00 1 42000.00 5502 82 \N 5321 +38581 2025-08-14 18:03:15.115667+00 2025-08-14 18:03:15.115679+00 f t 7500.00 1 7500.00 5502 85 \N 5321 +38582 2025-08-14 18:03:15.122344+00 2025-08-14 18:03:15.122354+00 f t 20500.00 1 20500.00 5502 109 \N 5322 +38583 2025-08-14 18:03:15.129061+00 2025-08-14 18:03:15.129073+00 f t 42000.00 1 42000.00 5502 82 \N 5322 +38584 2025-08-14 18:03:15.136006+00 2025-08-14 18:03:15.136019+00 f t 7700.00 1 7700.00 5502 93 \N 5322 +38585 2025-08-14 18:03:15.150425+00 2025-08-14 18:03:15.150437+00 f t 12000.00 1 12000.00 5502 146 \N 5322 +40186 2025-08-18 21:23:28.183657+00 2025-08-18 21:23:28.183667+00 f t 42000.00 1 42000.00 5777 82 \N 5561 +40221 2025-08-18 23:17:47.379244+00 2025-08-18 23:17:47.379256+00 f t 42000.00 1 42000.00 5789 82 \N 5572 +40260 2025-08-19 00:00:51.472878+00 2025-08-19 00:00:51.472892+00 f t 42000.00 1 42000.00 5792 82 \N 5575 +39061 2025-08-15 20:29:36.178843+00 2025-08-15 20:29:36.178858+00 f t 42000.00 1 42000.00 5591 82 \N 5393 +39073 2025-08-15 22:16:11.136719+00 2025-08-15 22:16:11.136733+00 f t 50000.00 1 50000.00 5597 84 \N 5399 +40279 2025-08-19 01:22:50.898523+00 2025-08-19 01:22:50.89853+00 f t 42000.00 1 42000.00 5797 82 \N 5579 +39086 2025-08-15 23:39:37.206898+00 2025-08-15 23:39:37.20691+00 f t 42000.00 1 42000.00 5603 82 \N 5406 +38625 2025-08-14 20:28:35.835954+00 2025-08-14 20:28:35.835963+00 f t 68000.00 1 68000.00 5520 106 \N 5338 +39087 2025-08-15 23:39:37.212508+00 2025-08-15 23:39:37.212517+00 f t 22500.00 1 22500.00 5603 88 \N 5406 +39093 2025-08-15 23:58:47.25357+00 2025-08-15 23:58:47.253583+00 f t 50000.00 1 50000.00 5590 84 \N 5392 +40280 2025-08-19 01:22:50.903357+00 2025-08-19 01:22:50.903366+00 f t 22500.00 1 22500.00 5797 86 \N 5579 +38629 2025-08-14 20:29:50.217865+00 2025-08-14 20:29:50.217875+00 f t 42000.00 1 42000.00 5521 82 \N 5339 +38630 2025-08-14 20:29:50.224033+00 2025-08-14 20:29:50.224043+00 f t 33000.00 1 33000.00 5521 139 \N 5339 +38631 2025-08-14 20:29:50.22925+00 2025-08-14 20:29:50.229259+00 f t 13000.00 1 13000.00 5521 89 \N 5339 +39108 2025-08-16 00:51:56.540484+00 2025-08-16 00:51:56.540497+00 f t 42000.00 1 42000.00 5607 82 \N 5410 +39109 2025-08-16 00:51:56.548127+00 2025-08-16 00:51:56.54814+00 f t 7500.00 1 7500.00 5607 85 \N 5410 +38635 2025-08-14 21:43:16.431325+00 2025-08-14 21:43:16.431334+00 f t 42000.00 1 42000.00 5523 82 \N 5343 +39110 2025-08-16 00:51:56.554275+00 2025-08-16 00:51:56.554287+00 f t 22500.00 1 22500.00 5607 163 \N 5410 +38641 2025-08-14 22:07:06.753654+00 2025-08-14 22:07:06.753672+00 f t 68000.00 1 68000.00 5524 106 \N 5344 +38644 2025-08-14 22:34:18.12534+00 2025-08-14 22:34:18.125349+00 f t 42000.00 1 42000.00 5525 82 \N 5345 +38645 2025-08-14 22:34:18.130982+00 2025-08-14 22:34:18.130994+00 f t 22500.00 1 22500.00 5525 163 \N 5345 +38650 2025-08-14 22:40:20.523632+00 2025-08-14 22:40:20.523646+00 f t 20500.00 1 20500.00 5527 109 \N 5346 +38651 2025-08-14 22:40:20.530395+00 2025-08-14 22:40:20.530411+00 f t 42000.00 1 42000.00 5527 82 \N 5346 +38652 2025-08-14 22:40:20.536997+00 2025-08-14 22:40:20.537009+00 f t 7700.00 1 7700.00 5527 93 \N 5346 +38653 2025-08-14 22:40:20.546868+00 2025-08-14 22:40:20.546882+00 f t 12000.00 1 12000.00 5527 146 \N 5346 +39174 2025-08-16 13:38:11.355495+00 2025-08-16 13:38:11.355507+00 f t 50000.00 1 50000.00 5626 84 \N 5425 +39190 2025-08-16 14:08:39.052772+00 2025-08-16 14:08:39.052781+00 f t 50000.00 1 50000.00 5630 84 \N 5429 +39194 2025-08-16 14:58:55.263386+00 2025-08-16 14:58:55.263394+00 f t 27500.00 1 27500.00 5633 83 \N 5432 +38673 2025-08-14 22:50:38.268848+00 2025-08-14 22:50:38.268862+00 f t 42000.00 1 42000.00 5529 82 \N 5347 +38674 2025-08-14 22:50:38.283604+00 2025-08-14 22:50:38.283617+00 f t 7500.00 1 7500.00 5529 85 \N 5347 +39294 2025-08-16 23:12:57.229002+00 2025-08-16 23:12:57.229011+00 f t 20500.00 1 20500.00 5654 109 \N 5453 +39295 2025-08-16 23:12:57.235547+00 2025-08-16 23:12:57.235556+00 f t 42000.00 1 42000.00 5654 82 \N 5453 +39296 2025-08-16 23:12:57.24098+00 2025-08-16 23:12:57.240989+00 f t 7700.00 1 7700.00 5654 93 \N 5453 +39297 2025-08-16 23:12:57.247188+00 2025-08-16 23:12:57.247202+00 f t 12000.00 1 12000.00 5654 146 \N 5453 +39298 2025-08-16 23:12:57.25305+00 2025-08-16 23:12:57.253065+00 f t 7500.00 1 7500.00 5654 85 \N 5453 +38699 2025-08-14 23:28:22.425956+00 2025-08-14 23:28:22.425966+00 f t 42000.00 1 42000.00 5530 82 \N 5349 +38700 2025-08-14 23:28:22.432696+00 2025-08-14 23:28:22.43271+00 f t 42000.00 1 42000.00 5530 82 \N 5351 +38701 2025-08-14 23:28:22.440134+00 2025-08-14 23:28:22.440144+00 f t 42000.00 1 42000.00 5530 82 \N 5352 +38703 2025-08-15 00:07:22.464765+00 2025-08-15 00:07:22.464774+00 f t 50000.00 1 50000.00 5532 84 \N 5354 +39354 2025-08-16 23:51:15.510471+00 2025-08-16 23:51:15.510486+00 f t 50000.00 1 50000.00 5657 84 \N 5456 +39380 2025-08-17 01:04:39.593347+00 2025-08-17 01:04:39.593356+00 f t 42000.00 1 42000.00 5663 82 \N 5460 +38713 2025-08-15 00:10:20.661945+00 2025-08-15 00:10:20.661954+00 f t 50000.00 1 50000.00 5533 84 \N 5355 +39387 2025-08-17 01:06:37.466376+00 2025-08-17 01:06:37.466388+00 f t 42000.00 1 42000.00 5664 82 \N 5462 +39388 2025-08-17 01:06:37.472437+00 2025-08-17 01:06:37.472446+00 f t 22500.00 1 22500.00 5664 86 \N 5462 +38720 2025-08-15 01:11:26.125322+00 2025-08-15 01:11:26.125335+00 f t 42000.00 1 42000.00 5535 82 \N 5356 +38721 2025-08-15 01:11:26.133758+00 2025-08-15 01:11:26.133771+00 f t 22500.00 1 22500.00 5535 86 \N 5356 +38723 2025-08-15 01:26:44.381219+00 2025-08-15 01:26:44.381231+00 f t 27500.00 1 27500.00 5536 83 \N 5357 +39423 2025-08-17 04:59:17.849716+00 2025-08-17 04:59:17.849724+00 f t 42000.00 1 42000.00 5672 82 \N 5469 +39424 2025-08-17 04:59:17.855487+00 2025-08-17 04:59:17.855496+00 f t 7500.00 1 7500.00 5672 85 \N 5469 +39425 2025-08-17 04:59:17.860369+00 2025-08-17 04:59:17.860379+00 f t 22500.00 1 22500.00 5672 86 \N 5469 +38774 2025-08-15 01:30:18.479051+00 2025-08-15 01:30:18.479061+00 f t 42000.00 1 42000.00 5537 82 \N 5358 +38775 2025-08-15 01:30:18.484971+00 2025-08-15 01:30:18.48498+00 f t 7700.00 1 7700.00 5537 93 \N 5358 +38776 2025-08-15 01:30:18.490704+00 2025-08-15 01:30:18.490712+00 f t 85000.00 1 85000.00 5537 165 \N 5358 +38777 2025-08-15 01:30:18.49549+00 2025-08-15 01:30:18.4955+00 f t 12000.00 1 12000.00 5537 146 \N 5358 +38779 2025-08-15 01:45:59.606997+00 2025-08-15 01:45:59.60701+00 f t 27500.00 1 27500.00 5538 83 \N 5359 +38783 2025-08-15 02:12:56.024907+00 2025-08-15 02:12:56.024923+00 f t 42000.00 1 42000.00 5540 82 \N 5360 +38792 2025-08-15 03:48:58.74185+00 2025-08-15 03:48:58.74186+00 f t 42000.00 1 42000.00 5544 82 \N 5361 +38793 2025-08-15 03:48:58.748211+00 2025-08-15 03:48:58.74822+00 f t 7500.00 1 7500.00 5544 85 \N 5361 +38795 2025-08-15 03:49:26.96508+00 2025-08-15 03:49:26.965094+00 f t 42000.00 1 42000.00 5545 82 \N 5362 +38826 2025-08-15 05:08:56.609409+00 2025-08-15 05:08:56.609423+00 f t 42000.00 1 42000.00 5547 82 \N 5363 +38827 2025-08-15 05:08:56.623724+00 2025-08-15 05:08:56.623739+00 f t 22500.00 1 22500.00 5547 163 \N 5363 +38830 2025-08-15 08:20:28.520577+00 2025-08-15 08:20:28.52059+00 f t 50000.00 1 50000.00 5551 84 \N 5367 +38832 2025-08-15 09:56:17.118414+00 2025-08-15 09:56:17.118423+00 f t 50000.00 1 50000.00 5553 84 \N 5368 +38834 2025-08-15 12:05:47.151777+00 2025-08-15 12:05:47.151791+00 f t 95000.00 1 95000.00 5554 103 \N 5369 +38839 2025-08-15 13:28:54.649862+00 2025-08-15 13:28:54.649876+00 f t 42000.00 1 42000.00 5559 82 \N 5370 +38840 2025-08-15 13:28:54.65768+00 2025-08-15 13:28:54.657693+00 f t 7700.00 1 7700.00 5559 93 \N 5370 +38841 2025-08-15 13:28:54.664684+00 2025-08-15 13:28:54.664696+00 f t 85000.00 1 85000.00 5559 165 \N 5370 +38842 2025-08-15 13:28:54.671776+00 2025-08-15 13:28:54.671788+00 f t 12000.00 1 12000.00 5559 146 \N 5370 +38976 2025-08-15 16:39:34.724038+00 2025-08-15 16:39:34.724048+00 f t 42000.00 1 42000.00 5577 82 \N 3919 +40208 2025-08-18 22:12:35.409271+00 2025-08-18 22:12:35.409284+00 f t 68000.00 1 68000.00 5783 106 \N 5567 +40212 2025-08-18 22:42:32.521858+00 2025-08-18 22:42:32.52187+00 f t 95000.00 1 95000.00 5786 103 \N 5569 +40218 2025-08-18 23:15:36.547372+00 2025-08-18 23:15:36.547381+00 f t 50000.00 1 50000.00 5788 84 \N 5571 +41519 2025-08-21 21:24:04.349662+00 2025-08-21 21:24:04.349674+00 f t 7500.00 1 7500.00 6000 85 \N 5767 +39042 2025-08-15 19:11:50.717478+00 2025-08-15 19:11:50.717491+00 f t 42000.00 1 42000.00 5585 82 \N 5389 +39046 2025-08-15 20:12:28.238843+00 2025-08-15 20:12:28.238857+00 f t 50000.00 1 50000.00 5587 84 \N 5391 +40284 2025-08-19 02:18:00.390283+00 2025-08-19 02:18:00.390295+00 f t 42000.00 1 42000.00 5800 82 \N 5582 +38916 2025-08-15 13:31:53.838415+00 2025-08-15 13:31:53.838427+00 f t 68000.00 1 68000.00 5560 106 \N 5371 +38917 2025-08-15 13:31:53.846294+00 2025-08-15 13:31:53.846309+00 f t 75000.00 1 75000.00 5560 108 \N 5371 +40300 2025-08-19 02:35:06.622195+00 2025-08-19 02:35:06.622209+00 f t 27500.00 1 27500.00 5801 83 \N 5583 +40305 2025-08-19 02:49:01.438759+00 2025-08-19 02:49:01.438773+00 f t 42000.00 1 42000.00 5802 82 \N 5584 +40306 2025-08-19 02:49:01.448617+00 2025-08-19 02:49:01.448631+00 f t 7700.00 1 7700.00 5802 91 \N 5584 +39139 2025-08-16 05:05:37.346199+00 2025-08-16 05:05:37.346214+00 f t 68000.00 1 68000.00 5616 106 \N 5415 +39221 2025-08-16 17:37:03.711728+00 2025-08-16 17:37:03.711737+00 f t 50000.00 1 50000.00 5639 84 \N 5437 +39222 2025-08-16 17:37:03.723431+00 2025-08-16 17:37:03.72344+00 f t 42000.00 1 42000.00 5639 82 \N 5437 +39223 2025-08-16 17:37:03.729174+00 2025-08-16 17:37:03.729187+00 f t 22500.00 1 22500.00 5639 86 \N 5437 +39232 2025-08-16 18:28:42.179463+00 2025-08-16 18:28:42.179476+00 f t 42000.00 1 42000.00 5644 82 \N 5444 +39233 2025-08-16 18:28:42.185383+00 2025-08-16 18:28:42.185394+00 f t 7500.00 1 7500.00 5644 85 \N 5444 +39251 2025-08-16 20:10:13.152862+00 2025-08-16 20:10:13.152878+00 f t 42000.00 1 42000.00 5650 82 \N 5448 +40454 2025-08-19 12:12:41.805713+00 2025-08-19 12:12:41.805726+00 f t 27500.00 1 27500.00 5815 83 \N 5594 +40460 2025-08-19 13:37:14.400263+00 2025-08-19 13:37:14.400273+00 f t 27500.00 1 27500.00 5825 83 \N 5602 +40475 2025-08-19 14:44:10.520695+00 2025-08-19 14:44:10.520708+00 f t 50000.00 1 50000.00 5831 84 \N 5606 +40504 2025-08-19 16:13:01.356979+00 2025-08-19 16:13:01.356988+00 f t 42000.00 1 42000.00 5836 82 \N 5614 +39407 2025-08-17 04:10:46.694797+00 2025-08-17 04:10:46.694821+00 f t 50000.00 1 50000.00 5671 84 \N 5468 +40552 2025-08-19 18:56:26.510562+00 2025-08-19 18:56:26.510575+00 f t 50000.00 1 50000.00 5848 84 \N 5628 +40562 2025-08-19 19:45:36.764493+00 2025-08-19 19:45:36.764504+00 f t 50000.00 1 50000.00 5851 84 \N 5632 +39436 2025-08-17 05:09:07.78652+00 2025-08-17 05:09:07.786533+00 f t 76000.00 1 76000.00 5673 97 \N 5470 +39441 2025-08-17 06:01:55.778917+00 2025-08-17 06:01:55.77893+00 f t 42000.00 1 42000.00 5676 82 \N 5473 +39442 2025-08-17 06:01:55.787693+00 2025-08-17 06:01:55.787706+00 f t 22500.00 1 22500.00 5676 163 \N 5473 +39446 2025-08-17 06:49:23.659483+00 2025-08-17 06:49:23.659495+00 f t 50000.00 1 50000.00 5678 84 \N 5475 +39477 2025-08-17 11:12:29.183231+00 2025-08-17 11:12:29.183246+00 f t 31500.00 1 31500.00 5681 111 \N 5479 +39478 2025-08-17 11:12:29.194265+00 2025-08-17 11:12:29.194279+00 f t 42000.00 1 42000.00 5681 82 \N 5479 +39479 2025-08-17 11:12:29.202188+00 2025-08-17 11:12:29.202203+00 f t 68000.00 1 68000.00 5681 106 \N 5479 +39480 2025-08-17 11:12:29.209199+00 2025-08-17 11:12:29.20921+00 f t 7700.00 1 7700.00 5681 93 \N 5479 +39481 2025-08-17 11:12:29.216585+00 2025-08-17 11:12:29.216598+00 f t 12000.00 1 12000.00 5681 146 \N 5479 +40589 2025-08-19 21:31:28.462447+00 2025-08-19 21:31:28.462456+00 f t 42000.00 1 42000.00 5857 82 \N 5531 +39487 2025-08-17 11:15:38.142279+00 2025-08-17 11:15:38.142291+00 f t 42000.00 1 42000.00 5682 82 \N 5480 +40631 2025-08-19 23:35:15.645635+00 2025-08-19 23:35:15.645649+00 f t 42000.00 1 42000.00 5868 82 \N 5648 +39546 2025-08-17 13:18:45.294285+00 2025-08-17 13:18:45.294295+00 f t 50000.00 1 50000.00 5687 84 \N 5484 +39559 2025-08-17 13:47:29.327952+00 2025-08-17 13:47:29.327965+00 f t 69000.00 1 69000.00 5680 142 \N 5477 +39560 2025-08-17 13:47:29.335017+00 2025-08-17 13:47:29.335032+00 f t 42000.00 1 42000.00 5680 82 \N 5477 +39563 2025-08-17 14:32:59.550674+00 2025-08-17 14:32:59.550688+00 f t 42000.00 1 42000.00 5690 82 \N 5487 +40683 2025-08-20 01:42:15.597117+00 2025-08-20 01:42:15.597126+00 f t 42000.00 1 42000.00 5880 82 \N 5662 +39566 2025-08-17 15:02:52.109693+00 2025-08-17 15:02:52.109706+00 f t 42000.00 1 42000.00 5691 82 \N 5488 +40684 2025-08-20 01:42:15.607522+00 2025-08-20 01:42:15.607531+00 f t 22500.00 1 22500.00 5880 163 \N 5662 +39575 2025-08-17 16:23:49.213572+00 2025-08-17 16:23:49.213584+00 f t 27500.00 1 27500.00 5696 83 \N 5492 +39583 2025-08-17 17:57:36.790285+00 2025-08-17 17:57:36.790298+00 f t 42000.00 1 42000.00 5698 82 \N 5493 +39589 2025-08-17 18:11:48.464303+00 2025-08-17 18:11:48.464312+00 f t 50000.00 1 50000.00 5699 84 \N 5494 +40740 2025-08-20 04:13:24.09531+00 2025-08-20 04:13:24.095322+00 f t 42000.00 1 42000.00 5884 82 \N 5666 +40741 2025-08-20 04:13:24.101131+00 2025-08-20 04:13:24.101142+00 f t 16800.00 1 16800.00 5884 96 \N 5666 +39600 2025-08-17 18:16:41.003694+00 2025-08-17 18:16:41.003704+00 f t 50000.00 1 50000.00 5700 84 \N 5495 +39602 2025-08-17 21:01:58.977928+00 2025-08-17 21:01:58.97794+00 f t 27500.00 1 27500.00 5703 83 \N 5499 +39607 2025-08-17 21:02:45.268368+00 2025-08-17 21:02:45.268382+00 f t 34000.00 1 34000.00 5704 110 \N 5500 +39608 2025-08-17 21:02:45.277902+00 2025-08-17 21:02:45.277911+00 f t 42000.00 1 42000.00 5704 82 \N 5500 +39609 2025-08-17 21:02:45.287267+00 2025-08-17 21:02:45.28728+00 f t 7700.00 1 7700.00 5704 93 \N 5500 +39610 2025-08-17 21:02:45.294581+00 2025-08-17 21:02:45.294593+00 f t 12000.00 1 12000.00 5704 146 \N 5500 +39616 2025-08-17 21:52:29.534642+00 2025-08-17 21:52:29.534656+00 f t 68000.00 1 68000.00 5707 106 \N 5503 +39618 2025-08-17 22:02:17.617376+00 2025-08-17 22:02:17.617389+00 f t 68000.00 1 68000.00 5711 106 \N 5506 +39622 2025-08-17 22:21:41.013111+00 2025-08-17 22:21:41.013124+00 f t 42000.00 1 42000.00 5712 82 \N 5508 +39623 2025-08-17 22:21:41.019104+00 2025-08-17 22:21:41.019113+00 f t 29000.00 1 29000.00 5712 123 \N 5508 +39624 2025-08-17 22:21:41.023709+00 2025-08-17 22:21:41.023719+00 f t 13000.00 1 13000.00 5712 89 \N 5508 +40802 2025-08-20 06:31:50.400166+00 2025-08-20 06:31:50.400175+00 f t 42000.00 1 42000.00 5886 82 \N 5667 +40803 2025-08-20 06:31:50.412067+00 2025-08-20 06:31:50.412082+00 f t 75000.00 1 75000.00 5886 143 \N 5667 +40830 2025-08-20 13:02:22.592353+00 2025-08-20 13:02:22.592365+00 f t 50000.00 1 50000.00 5894 84 \N 5673 +40833 2025-08-20 13:13:59.447084+00 2025-08-20 13:13:59.447093+00 f t 42000.00 1 42000.00 5895 82 \N 5674 +40834 2025-08-20 13:13:59.452371+00 2025-08-20 13:13:59.452379+00 f t 81500.00 1 81500.00 5895 144 \N 5674 +42748 2025-08-25 17:08:52.41988+00 2025-08-25 17:08:52.419892+00 f t 42000.00 1 42000.00 6213 82 \N 5970 +40200 2025-08-18 22:01:32.775512+00 2025-08-18 22:01:32.775526+00 f t 50000.00 1 50000.00 5781 84 \N 5565 +40201 2025-08-18 22:01:32.782534+00 2025-08-18 22:01:32.782546+00 f t 42000.00 1 42000.00 5781 82 \N 5565 +39697 2025-08-17 22:32:09.868238+00 2025-08-17 22:32:09.868248+00 f t 31500.00 1 31500.00 5713 111 \N 5509 +39698 2025-08-17 22:32:09.875707+00 2025-08-17 22:32:09.875719+00 f t 42000.00 1 42000.00 5713 82 \N 5509 +39699 2025-08-17 22:32:09.880799+00 2025-08-17 22:32:09.880808+00 f t 7700.00 1 7700.00 5713 93 \N 5509 +39700 2025-08-17 22:32:09.88611+00 2025-08-17 22:32:09.886119+00 f t 12000.00 1 12000.00 5713 146 \N 5509 +39702 2025-08-17 23:01:14.009468+00 2025-08-17 23:01:14.009482+00 f t 42000.00 1 42000.00 5714 82 \N 5510 +39704 2025-08-17 23:14:32.872471+00 2025-08-17 23:14:32.872483+00 f t 68000.00 1 68000.00 5715 106 \N 5511 +40276 2025-08-19 01:21:51.980009+00 2025-08-19 01:21:51.980018+00 f t 50000.00 1 50000.00 5796 84 \N 5578 +40282 2025-08-19 01:25:02.760345+00 2025-08-19 01:25:02.76036+00 f t 27500.00 1 27500.00 5798 83 \N 5580 +39718 2025-08-17 23:29:51.718216+00 2025-08-17 23:29:51.718228+00 f t 27500.00 1 27500.00 5716 83 \N 5512 +39720 2025-08-17 23:45:57.739851+00 2025-08-17 23:45:57.739864+00 f t 27500.00 1 27500.00 5718 83 \N 5513 +39726 2025-08-18 00:41:27.917922+00 2025-08-18 00:41:27.917934+00 f t 75000.00 1 75000.00 5721 108 \N 5457 +39730 2025-08-18 00:48:32.133289+00 2025-08-18 00:48:32.133299+00 f t 50000.00 1 50000.00 5722 84 \N 5514 +39732 2025-08-18 01:46:39.008751+00 2025-08-18 01:46:39.008764+00 f t 42000.00 1 42000.00 5723 82 \N 5515 +39740 2025-08-18 01:47:45.382806+00 2025-08-18 01:47:45.382816+00 f t 42000.00 1 42000.00 5724 82 \N 5516 +39742 2025-08-18 02:09:01.781939+00 2025-08-18 02:09:01.781954+00 f t 42000.00 1 42000.00 5725 82 \N 5517 +39745 2025-08-18 02:12:02.904122+00 2025-08-18 02:12:02.904133+00 f t 42000.00 1 42000.00 5726 82 \N 5518 +39746 2025-08-18 02:12:02.913177+00 2025-08-18 02:12:02.913192+00 f t 7500.00 1 7500.00 5726 85 \N 5518 +39748 2025-08-18 02:33:19.722783+00 2025-08-18 02:33:19.722794+00 f t 42000.00 1 42000.00 5727 82 \N 5519 +40436 2025-08-19 10:58:52.473573+00 2025-08-19 10:58:52.473586+00 f t 95000.00 1 95000.00 5810 103 \N 5589 +40437 2025-08-19 10:58:52.479471+00 2025-08-19 10:58:52.47948+00 f t 68000.00 1 68000.00 5810 106 \N 5589 +40452 2025-08-19 11:39:06.484942+00 2025-08-19 11:39:06.484953+00 f t 42000.00 1 42000.00 5813 82 \N 5592 +40458 2025-08-19 12:55:55.454148+00 2025-08-19 12:55:55.454157+00 f t 42000.00 1 42000.00 5821 82 \N 5600 +40470 2025-08-19 14:18:42.91072+00 2025-08-19 14:18:42.910732+00 f t 50000.00 1 50000.00 5830 84 \N 5605 +39793 2025-08-18 04:12:07.346964+00 2025-08-18 04:12:07.346976+00 f t 95000.00 1 95000.00 5729 103 \N 5522 +39794 2025-08-18 04:12:07.355573+00 2025-08-18 04:12:07.355588+00 f t 42000.00 1 42000.00 5729 82 \N 5522 +40499 2025-08-19 16:07:20.356863+00 2025-08-19 16:07:20.356876+00 f t 68000.00 1 68000.00 5834 106 \N 5612 +39798 2025-08-18 04:19:08.266422+00 2025-08-18 04:19:08.266438+00 f t 42000.00 1 42000.00 5730 82 \N 5523 +39800 2025-08-18 04:29:02.774057+00 2025-08-18 04:29:02.774074+00 f t 27500.00 1 27500.00 5731 83 \N 5524 +39802 2025-08-18 04:50:27.731826+00 2025-08-18 04:50:27.731836+00 f t 42000.00 1 42000.00 5732 82 \N 5525 +40511 2025-08-19 17:04:11.790391+00 2025-08-19 17:04:11.790403+00 f t 42000.00 1 42000.00 5840 82 \N 5618 +39806 2025-08-18 11:36:52.466763+00 2025-08-18 11:36:52.466773+00 f t 42000.00 1 42000.00 5734 82 \N 5526 +40529 2025-08-19 18:19:03.487248+00 2025-08-19 18:19:03.487264+00 f t 50000.00 1 50000.00 5843 84 \N 5623 +40545 2025-08-19 18:28:59.297526+00 2025-08-19 18:28:59.297537+00 f t 42000.00 1 42000.00 5845 82 \N 5624 +40546 2025-08-19 18:28:59.303523+00 2025-08-19 18:28:59.303531+00 f t 40500.00 1 40500.00 5845 119 \N 5624 +40547 2025-08-19 18:28:59.310882+00 2025-08-19 18:28:59.310896+00 f t 13000.00 1 13000.00 5845 89 \N 5624 +40550 2025-08-19 18:46:30.894979+00 2025-08-19 18:46:30.894991+00 f t 42000.00 1 42000.00 5847 82 \N 5627 +40566 2025-08-19 20:21:30.214699+00 2025-08-19 20:21:30.214715+00 f t 42000.00 1 42000.00 5853 82 \N 5634 +40626 2025-08-19 23:30:44.122877+00 2025-08-19 23:30:44.122887+00 f t 42000.00 1 42000.00 5867 82 \N 5646 +40627 2025-08-19 23:30:44.129039+00 2025-08-19 23:30:44.129047+00 f t 7700.00 1 7700.00 5867 93 \N 5646 +40628 2025-08-19 23:30:44.133763+00 2025-08-19 23:30:44.133774+00 f t 85000.00 1 85000.00 5867 165 \N 5646 +40629 2025-08-19 23:30:44.13792+00 2025-08-19 23:30:44.137985+00 f t 12000.00 1 12000.00 5867 146 \N 5646 +40650 2025-08-20 00:23:24.493735+00 2025-08-20 00:23:24.493746+00 f t 42000.00 1 42000.00 5874 82 \N 5657 +40651 2025-08-20 00:23:24.500312+00 2025-08-20 00:23:24.500323+00 f t 7700.00 1 7700.00 5874 93 \N 5657 +40652 2025-08-20 00:23:24.505756+00 2025-08-20 00:23:24.505767+00 f t 85000.00 1 85000.00 5874 165 \N 5657 +40653 2025-08-20 00:23:24.510999+00 2025-08-20 00:23:24.51101+00 f t 12000.00 1 12000.00 5874 146 \N 5657 +40654 2025-08-20 00:23:24.516084+00 2025-08-20 00:23:24.516095+00 f t 22500.00 1 22500.00 5874 88 \N 5657 +39879 2025-08-18 11:47:33.049024+00 2025-08-18 11:47:33.049033+00 f t 42000.00 1 42000.00 5736 82 \N 5527 +39880 2025-08-18 11:47:33.054761+00 2025-08-18 11:47:33.054771+00 f t 29000.00 1 29000.00 5736 124 \N 5527 +39881 2025-08-18 11:47:33.059489+00 2025-08-18 11:47:33.059498+00 f t 7500.00 1 7500.00 5736 85 \N 5527 +39882 2025-08-18 11:47:33.064017+00 2025-08-18 11:47:33.064026+00 f t 22500.00 1 22500.00 5736 88 \N 5527 +39883 2025-08-18 11:47:33.068513+00 2025-08-18 11:47:33.068521+00 f t 22500.00 1 22500.00 5736 163 \N 5527 +39884 2025-08-18 11:47:33.072812+00 2025-08-18 11:47:33.072821+00 f t 13000.00 1 13000.00 5736 89 \N 5527 +39903 2025-08-18 12:11:16.136381+00 2025-08-18 12:11:16.13639+00 f t 50000.00 1 50000.00 5737 84 \N 5528 +39906 2025-08-18 12:12:35.886476+00 2025-08-18 12:12:35.886489+00 f t 50000.00 1 50000.00 5738 84 \N 5529 +39925 2025-08-18 12:16:45.494237+00 2025-08-18 12:16:45.494249+00 f t 50000.00 1 50000.00 5739 84 \N 5530 +39931 2025-08-18 12:54:24.218614+00 2025-08-18 12:54:24.218627+00 f t 42000.00 1 42000.00 5740 82 \N 5531 +39933 2025-08-18 13:11:04.015111+00 2025-08-18 13:11:04.015155+00 f t 42000.00 1 42000.00 5741 82 \N 5532 +39936 2025-08-18 13:37:46.462363+00 2025-08-18 13:37:46.462373+00 f t 42000.00 1 42000.00 5743 82 \N 5534 +39937 2025-08-18 13:37:46.469129+00 2025-08-18 13:37:46.469142+00 f t 22500.00 1 22500.00 5743 88 \N 5534 +39941 2025-08-18 13:41:00.245198+00 2025-08-18 13:41:00.245207+00 f t 50000.00 1 50000.00 5745 84 \N 5536 +39944 2025-08-18 14:02:33.539681+00 2025-08-18 14:02:33.539694+00 f t 42000.00 1 42000.00 5746 82 \N 5537 +39945 2025-08-18 14:02:33.547179+00 2025-08-18 14:02:33.547188+00 f t 7500.00 1 7500.00 5746 85 \N 5537 +39963 2025-08-18 15:11:30.952462+00 2025-08-18 15:11:30.952471+00 f t 42000.00 1 42000.00 5750 82 \N 5539 +39964 2025-08-18 15:11:30.959778+00 2025-08-18 15:11:30.959787+00 f t 7500.00 1 7500.00 5750 85 \N 5539 +39965 2025-08-18 15:11:30.965678+00 2025-08-18 15:11:30.96569+00 f t 22500.00 1 22500.00 5750 163 \N 5539 +40206 2025-08-18 22:07:39.571291+00 2025-08-18 22:07:39.571303+00 f t 68000.00 1 68000.00 5782 106 \N 5566 +40210 2025-08-18 22:36:19.598632+00 2025-08-18 22:36:19.598643+00 f t 50000.00 1 50000.00 5784 84 \N 5568 +40215 2025-08-18 22:47:11.094919+00 2025-08-18 22:47:11.094929+00 f t 42000.00 1 42000.00 5787 82 \N 5570 +39978 2025-08-18 16:18:52.509576+00 2025-08-18 16:18:52.509585+00 f t 42000.00 1 42000.00 5753 82 \N 5542 +39979 2025-08-18 16:18:52.516011+00 2025-08-18 16:18:52.51602+00 f t 7500.00 1 7500.00 5753 85 \N 5542 +39980 2025-08-18 16:18:52.521817+00 2025-08-18 16:18:52.521827+00 f t 42000.00 1 42000.00 5753 82 \N 5543 +39981 2025-08-18 16:18:52.528477+00 2025-08-18 16:18:52.52849+00 f t 7500.00 1 7500.00 5753 85 \N 5543 +40216 2025-08-18 22:47:11.10007+00 2025-08-18 22:47:11.100078+00 f t 7500.00 1 7500.00 5787 85 \N 5570 +40235 2025-08-18 23:55:29.126585+00 2025-08-18 23:55:29.126597+00 f t 42000.00 1 42000.00 5790 82 \N 5573 +40236 2025-08-18 23:55:29.13372+00 2025-08-18 23:55:29.133733+00 f t 87500.00 1 87500.00 5790 141 \N 5573 +39992 2025-08-18 16:36:46.528448+00 2025-08-18 16:36:46.528462+00 f t 42000.00 1 42000.00 5755 82 \N 5546 +39993 2025-08-18 16:36:46.535937+00 2025-08-18 16:36:46.53595+00 f t 22500.00 1 22500.00 5755 86 \N 5546 +39997 2025-08-18 16:37:12.474025+00 2025-08-18 16:37:12.474034+00 f t 42000.00 1 42000.00 5754 82 \N 5544 +40263 2025-08-19 00:38:18.237644+00 2025-08-19 00:38:18.237652+00 f t 42000.00 1 42000.00 5795 82 \N 5577 +40008 2025-08-18 17:23:10.341574+00 2025-08-18 17:23:10.341588+00 f t 42000.00 1 42000.00 5757 82 \N 5549 +40009 2025-08-18 17:23:10.349118+00 2025-08-18 17:23:10.349131+00 f t 7500.00 1 7500.00 5757 85 \N 5549 +40014 2025-08-18 17:25:29.775665+00 2025-08-18 17:25:29.775677+00 f t 20500.00 1 20500.00 5759 109 \N 5550 +40015 2025-08-18 17:25:29.782541+00 2025-08-18 17:25:29.782554+00 f t 42000.00 1 42000.00 5759 82 \N 5550 +40016 2025-08-18 17:25:29.788798+00 2025-08-18 17:25:29.788809+00 f t 7700.00 1 7700.00 5759 93 \N 5550 +40017 2025-08-18 17:25:29.79422+00 2025-08-18 17:25:29.794233+00 f t 12000.00 1 12000.00 5759 146 \N 5550 +40022 2025-08-18 17:26:44.142528+00 2025-08-18 17:26:44.142541+00 f t 20500.00 1 20500.00 5760 109 \N 5551 +40023 2025-08-18 17:26:44.149044+00 2025-08-18 17:26:44.149053+00 f t 42000.00 1 42000.00 5760 82 \N 5551 +40024 2025-08-18 17:26:44.154094+00 2025-08-18 17:26:44.154103+00 f t 7700.00 1 7700.00 5760 93 \N 5551 +40025 2025-08-18 17:26:44.159402+00 2025-08-18 17:26:44.159415+00 f t 12000.00 1 12000.00 5760 146 \N 5551 +40027 2025-08-18 18:24:25.024582+00 2025-08-18 18:24:25.024595+00 f t 95000.00 1 95000.00 5767 103 \N 5554 +40044 2025-08-18 19:15:32.108971+00 2025-08-18 19:15:32.108981+00 f t 42000.00 1 42000.00 5769 82 \N 5556 +40045 2025-08-18 19:15:32.11387+00 2025-08-18 19:15:32.113877+00 f t 22500.00 1 22500.00 5769 163 \N 5556 +40419 2025-08-19 05:42:20.109666+00 2025-08-19 05:42:20.109675+00 f t 76000.00 1 76000.00 5805 97 \N 5586 +40444 2025-08-19 11:06:53.271267+00 2025-08-19 11:06:53.271279+00 f t 34000.00 1 34000.00 5811 110 \N 5590 +40445 2025-08-19 11:06:53.277532+00 2025-08-19 11:06:53.277544+00 f t 42000.00 1 42000.00 5811 82 \N 5590 +40446 2025-08-19 11:06:53.283054+00 2025-08-19 11:06:53.283066+00 f t 7700.00 1 7700.00 5811 93 \N 5590 +40447 2025-08-19 11:06:53.288824+00 2025-08-19 11:06:53.288837+00 f t 12000.00 1 12000.00 5811 146 \N 5590 +40450 2025-08-19 11:16:34.081854+00 2025-08-19 11:16:34.081867+00 f t 42000.00 1 42000.00 5812 82 \N 5591 +40456 2025-08-19 12:38:59.787876+00 2025-08-19 12:38:59.787886+00 f t 42000.00 1 42000.00 5818 82 \N 5598 +40465 2025-08-19 13:59:26.373186+00 2025-08-19 13:59:26.373199+00 f t 34000.00 1 34000.00 5826 110 \N 5603 +40466 2025-08-19 13:59:26.379932+00 2025-08-19 13:59:26.379944+00 f t 42000.00 1 42000.00 5826 82 \N 5603 +40467 2025-08-19 13:59:26.385796+00 2025-08-19 13:59:26.385808+00 f t 7700.00 1 7700.00 5826 93 \N 5603 +40468 2025-08-19 13:59:26.391781+00 2025-08-19 13:59:26.39179+00 f t 12000.00 1 12000.00 5826 146 \N 5603 +40496 2025-08-19 15:15:19.394156+00 2025-08-19 15:15:19.394166+00 f t 42000.00 1 42000.00 5833 82 \N 5609 +40497 2025-08-19 15:15:19.399751+00 2025-08-19 15:15:19.39976+00 f t 22500.00 1 22500.00 5833 86 \N 5609 +40524 2025-08-19 17:41:47.137773+00 2025-08-19 17:41:47.137808+00 f t 42000.00 1 42000.00 5842 82 \N 5620 +40525 2025-08-19 17:41:47.160889+00 2025-08-19 17:41:47.160909+00 f t 22500.00 1 22500.00 5842 88 \N 5620 +40526 2025-08-19 17:41:47.175745+00 2025-08-19 17:41:47.175759+00 f t 42000.00 1 42000.00 5842 82 \N 5621 +40527 2025-08-19 17:41:47.184635+00 2025-08-19 17:41:47.184649+00 f t 22500.00 1 22500.00 5842 88 \N 5621 +40110 2025-08-18 19:31:26.241566+00 2025-08-18 19:31:26.241579+00 f t 42000.00 1 42000.00 5770 82 \N 5557 +40111 2025-08-18 19:31:26.248383+00 2025-08-18 19:31:26.248396+00 f t 7500.00 1 7500.00 5770 85 \N 5557 +40556 2025-08-19 19:19:15.970042+00 2025-08-19 19:19:15.970066+00 f t 42000.00 1 42000.00 5849 82 \N 5629 +40557 2025-08-19 19:19:15.977481+00 2025-08-19 19:19:15.977491+00 f t 33000.00 1 33000.00 5849 139 \N 5629 +40558 2025-08-19 19:19:15.98302+00 2025-08-19 19:19:15.983029+00 f t 13000.00 1 13000.00 5849 89 \N 5629 +40564 2025-08-19 20:14:50.84096+00 2025-08-19 20:14:50.840974+00 f t 42000.00 1 42000.00 5852 82 \N 5633 +40570 2025-08-19 21:24:09.206306+00 2025-08-19 21:24:09.206319+00 f t 42000.00 1 42000.00 5855 82 \N 5636 +40120 2025-08-18 20:02:48.471854+00 2025-08-18 20:02:48.471865+00 f t 42000.00 1 42000.00 5771 82 \N 5558 +40123 2025-08-18 20:32:00.557736+00 2025-08-18 20:32:00.557745+00 f t 42000.00 1 42000.00 5774 82 \N 5559 +40124 2025-08-18 20:32:00.564444+00 2025-08-18 20:32:00.564453+00 f t 7500.00 1 7500.00 5774 85 \N 5559 +40637 2025-08-20 00:16:30.017648+00 2025-08-20 00:16:30.017657+00 f t 50000.00 1 50000.00 5872 84 \N 5655 +40638 2025-08-20 00:16:30.02346+00 2025-08-20 00:16:30.023471+00 f t 42000.00 1 42000.00 5872 82 \N 5655 +40658 2025-08-20 00:48:01.885811+00 2025-08-20 00:48:01.885825+00 f t 50000.00 1 50000.00 5877 84 \N 5660 +40671 2025-08-20 01:27:12.353383+00 2025-08-20 01:27:12.353393+00 f t 34000.00 1 34000.00 5879 110 \N 5661 +40672 2025-08-20 01:27:12.35837+00 2025-08-20 01:27:12.358378+00 f t 42000.00 1 42000.00 5879 82 \N 5661 +40673 2025-08-20 01:27:12.362293+00 2025-08-20 01:27:12.362301+00 f t 7700.00 1 7700.00 5879 93 \N 5661 +40674 2025-08-20 01:27:12.36624+00 2025-08-20 01:27:12.366251+00 f t 12000.00 1 12000.00 5879 146 \N 5661 +40713 2025-08-20 02:04:37.47204+00 2025-08-20 02:04:37.47205+00 f t 50000.00 1 50000.00 5882 84 \N 5664 +40715 2025-08-20 04:03:17.306596+00 2025-08-20 04:03:17.306606+00 f t 50000.00 1 50000.00 5883 84 \N 5665 +40818 2025-08-20 12:17:32.270831+00 2025-08-20 12:17:32.270839+00 f t 42000.00 1 42000.00 5891 82 \N 5671 +40819 2025-08-20 12:17:32.278184+00 2025-08-20 12:17:32.278197+00 f t 7500.00 1 7500.00 5891 85 \N 5671 +40823 2025-08-20 12:30:17.115157+00 2025-08-20 12:30:17.115172+00 f t 42000.00 1 42000.00 5892 82 \N 5672 +40849 2025-08-20 13:31:46.189097+00 2025-08-20 13:31:46.189107+00 f t 27500.00 1 27500.00 5896 83 \N 5675 +40854 2025-08-20 13:42:11.779702+00 2025-08-20 13:42:11.779715+00 f t 20500.00 1 20500.00 5898 109 \N 5676 +40855 2025-08-20 13:42:11.785144+00 2025-08-20 13:42:11.785155+00 f t 42000.00 1 42000.00 5898 82 \N 5676 +40856 2025-08-20 13:42:11.791414+00 2025-08-20 13:42:11.791423+00 f t 7700.00 1 7700.00 5898 93 \N 5676 +40857 2025-08-20 13:42:11.796886+00 2025-08-20 13:42:11.796894+00 f t 12000.00 1 12000.00 5898 146 \N 5676 +41508 2025-08-21 21:14:46.815497+00 2025-08-21 21:14:46.815507+00 f t 50000.00 1 50000.00 5998 84 \N 5765 +41513 2025-08-21 21:21:06.275218+00 2025-08-21 21:21:06.275231+00 f t 50000.00 1 50000.00 5999 84 \N 5766 +41525 2025-08-21 23:32:31.918424+00 2025-08-21 23:32:31.918434+00 f t 42000.00 1 42000.00 6005 82 \N 5773 +40868 2025-08-20 14:34:04.683185+00 2025-08-20 14:34:04.683194+00 f t 42000.00 1 42000.00 5900 82 \N 5678 +40869 2025-08-20 14:34:04.68914+00 2025-08-20 14:34:04.689148+00 f t 22500.00 1 22500.00 5900 163 \N 5678 +41549 2025-08-22 08:07:27.244448+00 2025-08-22 08:07:27.244457+00 f t 50000.00 1 50000.00 6017 84 \N 5783 +41550 2025-08-22 08:07:27.250186+00 2025-08-22 08:07:27.250195+00 f t 42000.00 1 42000.00 6017 82 \N 5783 +41551 2025-08-22 08:07:27.256328+00 2025-08-22 08:07:27.256341+00 f t 33000.00 1 33000.00 6017 133 \N 5783 +40876 2025-08-20 14:48:47.832356+00 2025-08-20 14:48:47.832366+00 f t 42000.00 1 42000.00 5902 82 \N 5680 +40877 2025-08-20 14:48:47.83809+00 2025-08-20 14:48:47.8381+00 f t 22500.00 1 22500.00 5902 86 \N 5680 +41552 2025-08-22 08:07:27.262076+00 2025-08-22 08:07:27.262085+00 f t 13000.00 1 13000.00 6017 89 \N 5783 +41554 2025-08-22 11:29:12.296458+00 2025-08-22 11:29:12.296471+00 f t 42000.00 1 42000.00 6019 82 \N 5786 +40880 2025-08-20 14:53:07.697748+00 2025-08-20 14:53:07.697758+00 f t 42000.00 1 42000.00 5904 82 \N 5682 +40884 2025-08-20 15:06:09.047363+00 2025-08-20 15:06:09.047372+00 f t 50000.00 1 50000.00 5906 84 \N 5684 +41601 2025-08-22 16:18:51.749019+00 2025-08-22 16:18:51.749028+00 f t 34000.00 1 34000.00 6031 110 \N 5799 +41602 2025-08-22 16:18:51.75466+00 2025-08-22 16:18:51.754667+00 f t 42000.00 1 42000.00 6031 82 \N 5799 +41603 2025-08-22 16:18:51.759577+00 2025-08-22 16:18:51.759585+00 f t 7700.00 1 7700.00 6031 93 \N 5799 +41604 2025-08-22 16:18:51.763937+00 2025-08-22 16:18:51.763945+00 f t 12000.00 1 12000.00 6031 146 \N 5799 +41606 2025-08-22 16:52:16.789413+00 2025-08-22 16:52:16.789424+00 f t 50000.00 1 50000.00 6035 84 \N 5801 +41608 2025-08-22 17:29:15.666871+00 2025-08-22 17:29:15.66688+00 f t 50000.00 1 50000.00 6038 84 \N 5804 +40920 2025-08-20 15:23:16.948442+00 2025-08-20 15:23:16.948452+00 f t 34000.00 1 34000.00 5910 110 \N 5688 +40921 2025-08-20 15:23:16.9538+00 2025-08-20 15:23:16.95381+00 f t 42000.00 1 42000.00 5910 82 \N 5688 +40922 2025-08-20 15:23:16.958377+00 2025-08-20 15:23:16.958385+00 f t 55000.00 1 55000.00 5910 101 \N 5688 +40923 2025-08-20 15:23:16.96278+00 2025-08-20 15:23:16.962791+00 f t 7700.00 1 7700.00 5910 93 \N 5688 +40924 2025-08-20 15:23:16.967407+00 2025-08-20 15:23:16.967416+00 f t 12000.00 1 12000.00 5910 146 \N 5688 +40927 2025-08-20 15:41:17.854324+00 2025-08-20 15:41:17.854332+00 f t 42000.00 1 42000.00 5911 82 \N 5689 +40928 2025-08-20 15:41:17.860436+00 2025-08-20 15:41:17.860447+00 f t 7500.00 1 7500.00 5911 85 \N 5689 +40962 2025-08-20 15:46:49.833495+00 2025-08-20 15:46:49.83352+00 f t 42000.00 1 42000.00 5913 82 \N 5690 +40969 2025-08-20 16:22:24.293512+00 2025-08-20 16:22:24.293521+00 f t 42000.00 1 42000.00 5918 82 \N 5693 +40970 2025-08-20 16:22:24.298755+00 2025-08-20 16:22:24.298762+00 f t 7500.00 1 7500.00 5918 85 \N 5693 +40984 2025-08-20 16:43:21.012377+00 2025-08-20 16:43:21.012386+00 f t 42000.00 1 42000.00 5920 82 \N 5694 +40985 2025-08-20 16:43:21.01875+00 2025-08-20 16:43:21.018758+00 f t 33000.00 1 33000.00 5920 133 \N 5694 +40986 2025-08-20 16:43:21.023528+00 2025-08-20 16:43:21.023535+00 f t 13000.00 1 13000.00 5920 89 \N 5694 +40988 2025-08-20 16:49:08.710675+00 2025-08-20 16:49:08.710688+00 f t 42000.00 1 42000.00 5921 82 \N 5695 +41009 2025-08-20 17:25:19.413664+00 2025-08-20 17:25:19.413677+00 f t 20500.00 1 20500.00 5926 109 \N 5697 +41010 2025-08-20 17:25:19.419449+00 2025-08-20 17:25:19.419457+00 f t 42000.00 1 42000.00 5926 82 \N 5697 +41011 2025-08-20 17:25:19.427484+00 2025-08-20 17:25:19.427493+00 f t 7700.00 1 7700.00 5926 93 \N 5697 +41012 2025-08-20 17:25:19.432325+00 2025-08-20 17:25:19.432333+00 f t 12000.00 1 12000.00 5926 146 \N 5697 +41037 2025-08-20 18:09:54.096329+00 2025-08-20 18:09:54.096339+00 f t 42000.00 1 42000.00 5930 82 \N 5700 +41038 2025-08-20 18:09:54.102056+00 2025-08-20 18:09:54.102064+00 f t 7500.00 1 7500.00 5930 85 \N 5700 +41039 2025-08-20 18:09:54.106815+00 2025-08-20 18:09:54.106824+00 f t 22500.00 1 22500.00 5930 88 \N 5700 +41042 2025-08-20 18:10:14.331298+00 2025-08-20 18:10:14.331307+00 f t 42000.00 1 42000.00 5931 82 \N 5701 +41043 2025-08-20 18:10:14.337386+00 2025-08-20 18:10:14.337397+00 f t 7500.00 1 7500.00 5931 85 \N 5701 +41045 2025-08-20 19:39:08.562162+00 2025-08-20 19:39:08.562175+00 f t 68000.00 1 68000.00 5934 106 \N 5704 +41049 2025-08-20 20:14:41.230355+00 2025-08-20 20:14:41.230363+00 f t 42000.00 1 42000.00 5935 82 \N 5705 +41054 2025-08-20 20:54:03.115411+00 2025-08-20 20:54:03.115425+00 f t 95000.00 1 95000.00 5936 103 \N 5706 +41067 2025-08-20 21:25:01.677854+00 2025-08-20 21:25:01.677868+00 f t 42000.00 1 42000.00 5938 82 \N 5709 +41068 2025-08-20 21:25:01.688645+00 2025-08-20 21:25:01.688658+00 f t 22500.00 1 22500.00 5938 86 \N 5709 +41077 2025-08-20 21:34:54.823446+00 2025-08-20 21:34:54.823454+00 f t 42000.00 1 42000.00 5939 82 \N 5710 +41078 2025-08-20 21:34:54.828511+00 2025-08-20 21:34:54.828519+00 f t 22500.00 1 22500.00 5939 163 \N 5710 +41080 2025-08-20 21:39:40.682289+00 2025-08-20 21:39:40.682298+00 f t 50000.00 1 50000.00 5940 84 \N 5711 +41086 2025-08-20 21:43:33.261867+00 2025-08-20 21:43:33.261878+00 f t 42000.00 1 42000.00 5941 82 \N 5712 +41089 2025-08-20 21:45:15.720805+00 2025-08-20 21:45:15.720814+00 f t 42000.00 1 42000.00 5942 82 \N 5713 +41090 2025-08-20 21:45:15.727241+00 2025-08-20 21:45:15.72725+00 f t 7500.00 1 7500.00 5942 85 \N 5713 +41093 2025-08-20 21:51:22.866741+00 2025-08-20 21:51:22.86675+00 f t 68000.00 1 68000.00 5943 106 \N 5714 +41096 2025-08-20 21:58:47.439738+00 2025-08-20 21:58:47.43975+00 f t 42000.00 1 42000.00 5944 82 \N 5715 +41100 2025-08-20 22:05:47.973172+00 2025-08-20 22:05:47.973186+00 f t 50000.00 1 50000.00 5945 84 \N 5716 +41103 2025-08-20 22:25:11.848677+00 2025-08-20 22:25:11.84869+00 f t 42000.00 1 42000.00 5948 82 \N 5717 +41104 2025-08-20 22:25:11.85558+00 2025-08-20 22:25:11.855589+00 f t 22500.00 1 22500.00 5948 163 \N 5717 +41106 2025-08-21 00:21:02.212853+00 2025-08-21 00:21:02.212864+00 f t 95000.00 1 95000.00 5951 103 \N 5721 +41109 2025-08-21 00:27:46.999751+00 2025-08-21 00:27:46.99976+00 f t 50000.00 1 50000.00 5952 84 \N 5722 +41118 2025-08-21 00:35:15.488431+00 2025-08-21 00:35:15.488443+00 f t 76000.00 1 76000.00 5953 97 \N 5723 +41429 2025-08-21 20:31:59.228626+00 2025-08-21 20:31:59.228636+00 f t 42000.00 1 42000.00 5996 82 \N 5762 +42762 2025-08-25 18:59:13.53315+00 2025-08-25 18:59:13.533166+00 f t 42000.00 1 42000.00 6218 82 \N 5976 +42763 2025-08-25 18:59:13.540675+00 2025-08-25 18:59:13.540686+00 f t 7700.00 1 7700.00 6218 93 \N 5976 +41137 2025-08-21 01:25:26.967655+00 2025-08-21 01:25:26.967665+00 f t 27500.00 1 27500.00 5955 83 \N 5725 +41139 2025-08-21 01:32:30.220331+00 2025-08-21 01:32:30.220339+00 f t 50000.00 1 50000.00 5956 84 \N 3911 +41148 2025-08-21 01:34:15.062157+00 2025-08-21 01:34:15.06217+00 f t 27500.00 1 27500.00 5958 83 \N 5726 +41522 2025-08-21 21:30:04.469832+00 2025-08-21 21:30:04.469846+00 f t 42000.00 1 42000.00 6001 82 \N 5768 +41523 2025-08-21 21:30:04.486233+00 2025-08-21 21:30:04.486249+00 f t 22500.00 1 22500.00 6001 86 \N 5768 +41565 2025-08-22 13:40:35.900803+00 2025-08-22 13:40:35.900815+00 f t 34000.00 1 34000.00 6024 110 \N 5791 +41566 2025-08-22 13:40:35.907699+00 2025-08-22 13:40:35.90771+00 f t 42000.00 1 42000.00 6024 82 \N 5791 +41567 2025-08-22 13:40:35.913243+00 2025-08-22 13:40:35.913253+00 f t 7700.00 1 7700.00 6024 93 \N 5791 +41568 2025-08-22 13:40:35.918712+00 2025-08-22 13:40:35.918725+00 f t 12000.00 1 12000.00 6024 146 \N 5791 +41581 2025-08-22 14:00:24.555542+00 2025-08-22 14:00:24.555554+00 f t 42000.00 1 42000.00 6026 82 \N 5792 +41582 2025-08-22 14:00:24.562704+00 2025-08-22 14:00:24.562716+00 f t 7500.00 1 7500.00 6026 85 \N 5792 +41583 2025-08-22 14:00:24.569147+00 2025-08-22 14:00:24.569161+00 f t 22500.00 1 22500.00 6026 86 \N 5792 +41586 2025-08-22 14:08:43.028614+00 2025-08-22 14:08:43.028625+00 f t 42000.00 1 42000.00 6027 82 \N 5793 +41587 2025-08-22 14:08:43.034093+00 2025-08-22 14:08:43.034102+00 f t 7500.00 1 7500.00 6027 85 \N 5793 +41591 2025-08-22 15:50:55.033563+00 2025-08-22 15:50:55.033575+00 f t 42000.00 1 42000.00 6029 82 \N 5796 +41194 2025-08-21 03:11:30.528774+00 2025-08-21 03:11:30.52879+00 f t 32500.00 1 32500.00 5964 112 \N 5729 +41195 2025-08-21 03:11:30.536995+00 2025-08-21 03:11:30.537009+00 f t 42000.00 1 42000.00 5964 82 \N 5729 +41196 2025-08-21 03:11:30.545639+00 2025-08-21 03:11:30.545653+00 f t 7700.00 1 7700.00 5964 93 \N 5729 +41197 2025-08-21 03:11:30.552295+00 2025-08-21 03:11:30.552308+00 f t 12000.00 1 12000.00 5964 146 \N 5729 +41199 2025-08-21 04:57:11.866204+00 2025-08-21 04:57:11.866218+00 f t 27500.00 1 27500.00 5966 83 \N 5731 +41202 2025-08-21 09:49:51.357889+00 2025-08-21 09:49:51.357898+00 f t 50000.00 1 50000.00 5968 84 \N 5733 +41610 2025-08-22 17:52:06.770546+00 2025-08-22 17:52:06.770559+00 f t 68000.00 1 68000.00 6039 106 \N 5805 +41612 2025-08-22 18:44:47.783024+00 2025-08-22 18:44:47.783033+00 f t 50000.00 1 50000.00 6040 84 \N 5806 +41206 2025-08-21 12:45:38.679321+00 2025-08-21 12:45:38.679333+00 f t 50000.00 1 50000.00 5971 84 \N 5735 +41615 2025-08-22 18:47:35.804958+00 2025-08-22 18:47:35.80497+00 f t 42000.00 1 42000.00 6041 82 \N 5807 +41616 2025-08-22 18:47:35.810843+00 2025-08-22 18:47:35.810851+00 f t 7500.00 1 7500.00 6041 85 \N 5807 +41215 2025-08-21 13:43:28.023295+00 2025-08-21 13:43:28.023306+00 f t 42000.00 1 42000.00 5974 82 \N 5738 +41627 2025-08-22 19:27:32.022867+00 2025-08-22 19:27:32.022877+00 f t 42000.00 1 42000.00 6042 82 \N 5808 +41628 2025-08-22 19:27:32.029488+00 2025-08-22 19:27:32.029497+00 f t 22500.00 1 22500.00 6042 86 \N 5808 +41631 2025-08-22 19:31:44.736015+00 2025-08-22 19:31:44.736024+00 f t 42000.00 1 42000.00 6043 82 \N 5809 +41632 2025-08-22 19:31:44.741869+00 2025-08-22 19:31:44.741878+00 f t 7500.00 1 7500.00 6043 85 \N 5809 +41635 2025-08-22 19:46:27.884642+00 2025-08-22 19:46:27.884651+00 f t 42000.00 1 42000.00 6046 82 \N 5811 +41636 2025-08-22 19:46:27.889981+00 2025-08-22 19:46:27.889999+00 f t 22500.00 1 22500.00 6046 163 \N 5811 +41641 2025-08-22 20:15:20.931564+00 2025-08-22 20:15:20.931576+00 f t 42000.00 1 42000.00 6049 82 \N 5817 +41642 2025-08-22 20:15:20.93946+00 2025-08-22 20:15:20.939473+00 f t 7700.00 1 7700.00 6049 93 \N 5817 +41643 2025-08-22 20:15:20.945884+00 2025-08-22 20:15:20.945899+00 f t 85000.00 1 85000.00 6049 165 \N 5817 +41644 2025-08-22 20:15:20.952815+00 2025-08-22 20:15:20.952824+00 f t 12000.00 1 12000.00 6049 146 \N 5817 +41651 2025-08-22 21:16:52.535639+00 2025-08-22 21:16:52.535647+00 f t 42000.00 1 42000.00 6051 82 \N 5819 +41252 2025-08-21 13:57:36.746461+00 2025-08-21 13:57:36.74647+00 f t 42000.00 1 42000.00 5975 82 \N 5739 +41253 2025-08-21 13:57:36.752593+00 2025-08-21 13:57:36.752602+00 f t 7700.00 1 7700.00 5975 93 \N 5739 +41254 2025-08-21 13:57:36.757614+00 2025-08-21 13:57:36.757622+00 f t 85000.00 1 85000.00 5975 165 \N 5739 +41255 2025-08-21 13:57:36.762361+00 2025-08-21 13:57:36.762369+00 f t 12000.00 1 12000.00 5975 146 \N 5739 +41657 2025-08-22 21:19:05.510946+00 2025-08-22 21:19:05.510955+00 f t 42000.00 1 42000.00 6052 82 \N 5820 +41669 2025-08-22 21:36:35.967663+00 2025-08-22 21:36:35.967672+00 f t 68000.00 1 68000.00 6054 106 \N 5821 +41671 2025-08-22 21:43:21.318076+00 2025-08-22 21:43:21.318087+00 f t 42000.00 1 42000.00 6055 82 \N 5822 +41675 2025-08-22 21:55:54.74722+00 2025-08-22 21:55:54.747233+00 f t 50000.00 1 50000.00 6056 84 \N 5823 +41677 2025-08-22 22:24:44.806363+00 2025-08-22 22:24:44.806373+00 f t 42000.00 1 42000.00 6058 82 \N 5825 +41280 2025-08-21 14:42:12.779826+00 2025-08-21 14:42:12.779837+00 f t 42000.00 1 42000.00 5976 82 \N 5740 +41281 2025-08-21 14:42:12.785603+00 2025-08-21 14:42:12.785615+00 f t 7700.00 1 7700.00 5976 91 \N 5740 +41288 2025-08-21 15:50:43.22688+00 2025-08-21 15:50:43.226892+00 f t 50000.00 1 50000.00 5978 84 \N 5743 +41326 2025-08-21 16:18:10.345543+00 2025-08-21 16:18:10.345556+00 f t 12000.00 1 12000.00 5981 146 \N 5745 +41344 2025-08-21 17:09:55.597897+00 2025-08-21 17:09:55.59791+00 f t 42000.00 1 42000.00 5984 82 \N 5748 +41345 2025-08-21 17:09:55.603503+00 2025-08-21 17:09:55.603514+00 f t 22500.00 1 22500.00 5984 163 \N 5748 +41348 2025-08-21 17:20:53.405762+00 2025-08-21 17:20:53.405774+00 f t 95000.00 1 95000.00 5985 103 \N 5749 +41351 2025-08-21 17:32:29.488552+00 2025-08-21 17:32:29.488562+00 f t 42000.00 1 42000.00 5986 82 \N 5752 +41370 2025-08-21 17:35:37.91899+00 2025-08-21 17:35:37.918997+00 f t 42000.00 1 42000.00 5988 82 \N 5753 +41371 2025-08-21 17:35:37.926021+00 2025-08-21 17:35:37.926032+00 f t 7500.00 1 7500.00 5988 85 \N 5753 +41372 2025-08-21 17:35:37.931251+00 2025-08-21 17:35:37.93126+00 f t 42000.00 1 42000.00 5988 82 \N 5754 +41373 2025-08-21 17:35:37.935876+00 2025-08-21 17:35:37.935885+00 f t 7500.00 1 7500.00 5988 85 \N 5754 +41383 2025-08-21 17:58:33.391737+00 2025-08-21 17:58:33.391749+00 f t 42000.00 1 42000.00 5990 82 \N 5757 +41384 2025-08-21 17:58:33.397839+00 2025-08-21 17:58:33.397847+00 f t 33000.00 1 33000.00 5990 139 \N 5757 +41385 2025-08-21 17:58:33.403606+00 2025-08-21 17:58:33.403616+00 f t 13000.00 1 13000.00 5990 89 \N 5757 +41416 2025-08-21 19:03:02.084475+00 2025-08-21 19:03:02.084491+00 f t 42000.00 1 42000.00 5992 82 \N 5759 +41417 2025-08-21 19:03:02.111858+00 2025-08-21 19:03:02.111872+00 f t 22500.00 1 22500.00 5992 163 \N 5759 +41680 2025-08-22 23:21:20.843287+00 2025-08-22 23:21:20.843301+00 f t 42000.00 1 42000.00 6061 82 \N 5826 +41681 2025-08-22 23:21:20.851374+00 2025-08-22 23:21:20.851386+00 f t 22500.00 1 22500.00 6061 86 \N 5826 +42726 2025-08-25 16:15:47.262884+00 2025-08-25 16:15:47.262894+00 f t 50000.00 1 50000.00 6210 84 \N 5966 +41685 2025-08-22 23:25:56.47942+00 2025-08-22 23:25:56.479429+00 f t 42000.00 1 42000.00 6062 82 \N 5827 +42750 2025-08-25 18:21:11.795196+00 2025-08-25 18:21:11.79521+00 f t 95000.00 1 95000.00 6216 103 \N 5975 +42764 2025-08-25 18:59:13.546824+00 2025-08-25 18:59:13.546837+00 f t 12000.00 1 12000.00 6218 146 \N 5976 +42858 2025-08-26 02:56:17.811738+00 2025-08-26 02:56:17.811753+00 f t 50000.00 1 50000.00 6237 84 \N 5991 +42931 2025-08-26 13:04:51.723951+00 2025-08-26 13:04:51.723965+00 f t 50000.00 1 50000.00 6251 84 \N 6004 +42956 2025-08-26 15:17:29.141178+00 2025-08-26 15:17:29.141191+00 f t 42000.00 1 42000.00 6255 82 \N 6010 +42957 2025-08-26 15:17:29.151996+00 2025-08-26 15:17:29.152008+00 f t 7500.00 1 7500.00 6255 85 \N 6010 +43058 2025-08-27 02:40:15.523476+00 2025-08-27 02:40:15.523487+00 f t 42000.00 1 42000.00 6280 82 \N 6036 +43059 2025-08-27 02:40:15.534568+00 2025-08-27 02:40:15.534579+00 f t 7500.00 1 7500.00 6280 85 \N 6036 +43075 2025-08-27 02:50:26.10485+00 2025-08-27 02:50:26.104862+00 f t 42000.00 1 42000.00 6281 82 \N 6038 +43076 2025-08-27 02:50:26.11122+00 2025-08-27 02:50:26.111231+00 f t 7500.00 1 7500.00 6281 85 \N 6038 +43077 2025-08-27 02:50:26.116265+00 2025-08-27 02:50:26.116277+00 f t 22500.00 1 22500.00 6281 163 \N 6038 +43092 2025-08-27 07:21:47.259196+00 2025-08-27 07:21:47.25921+00 f t 42000.00 1 42000.00 6285 82 \N 6042 +43100 2025-08-27 13:05:17.175837+00 2025-08-27 13:05:17.175849+00 f t 42000.00 1 42000.00 6289 82 \N 6045 +43113 2025-08-27 15:17:34.659485+00 2025-08-27 15:17:34.659495+00 f t 42000.00 1 42000.00 6294 82 \N 6050 +43114 2025-08-27 15:17:34.678411+00 2025-08-27 15:17:34.678427+00 f t 22500.00 1 22500.00 6294 86 \N 6050 +43128 2025-08-27 16:11:33.97752+00 2025-08-27 16:11:33.977532+00 f t 42000.00 1 42000.00 6297 82 \N 6052 +41797 2025-08-23 00:28:30.610886+00 2025-08-23 00:28:30.610896+00 f t 42000.00 1 42000.00 6065 82 \N 5830 +41798 2025-08-23 00:28:30.617271+00 2025-08-23 00:28:30.617281+00 f t 7500.00 1 7500.00 6065 85 \N 5830 +41799 2025-08-23 00:28:30.622674+00 2025-08-23 00:28:30.622683+00 f t 22500.00 1 22500.00 6065 163 \N 5830 +41800 2025-08-23 00:28:30.629895+00 2025-08-23 00:28:30.629905+00 f t 42000.00 1 42000.00 6065 82 \N 5831 +41801 2025-08-23 00:28:30.635435+00 2025-08-23 00:28:30.635445+00 f t 7500.00 1 7500.00 6065 85 \N 5831 +41802 2025-08-23 00:28:30.641552+00 2025-08-23 00:28:30.641562+00 f t 22500.00 1 22500.00 6065 163 \N 5831 +43175 2025-08-27 17:10:28.216242+00 2025-08-27 17:10:28.216255+00 f t 93750.00 1 93750.00 6300 90 \N 6054 +41806 2025-08-23 01:31:31.654157+00 2025-08-23 01:31:31.654167+00 f t 68000.00 1 68000.00 6066 106 \N 5832 +43176 2025-08-27 17:10:28.22257+00 2025-08-27 17:10:28.22258+00 f t 42000.00 1 42000.00 6300 82 \N 6054 +43177 2025-08-27 17:10:28.228346+00 2025-08-27 17:10:28.228357+00 f t 22500.00 1 22500.00 6300 88 \N 6054 +43183 2025-08-27 17:28:58.689904+00 2025-08-27 17:28:58.689917+00 f t 42000.00 1 42000.00 6302 82 \N 6056 +43203 2025-08-27 17:40:18.276283+00 2025-08-27 17:40:18.276293+00 f t 31500.00 1 31500.00 6304 111 \N 6057 +43204 2025-08-27 17:40:18.282383+00 2025-08-27 17:40:18.282396+00 f t 42000.00 1 42000.00 6304 82 \N 6057 +43205 2025-08-27 17:40:18.289286+00 2025-08-27 17:40:18.289297+00 f t 7700.00 1 7700.00 6304 93 \N 6057 +43206 2025-08-27 17:40:18.295564+00 2025-08-27 17:40:18.295574+00 f t 12000.00 1 12000.00 6304 146 \N 6057 +43207 2025-08-27 17:40:18.301552+00 2025-08-27 17:40:18.301564+00 f t 7500.00 1 7500.00 6304 85 \N 6057 +43215 2025-08-27 17:47:04.789663+00 2025-08-27 17:47:04.789677+00 f t 42000.00 1 42000.00 6305 82 \N 6058 +43224 2025-08-27 17:56:05.555811+00 2025-08-27 17:56:05.555843+00 f t 32500.00 1 32500.00 6261 112 \N 6018 +43225 2025-08-27 17:56:05.570253+00 2025-08-27 17:56:05.570265+00 f t 42000.00 1 42000.00 6261 82 \N 6018 +43226 2025-08-27 17:56:05.578143+00 2025-08-27 17:56:05.578156+00 f t 7700.00 1 7700.00 6261 93 \N 6018 +41827 2025-08-23 02:17:01.951989+00 2025-08-23 02:17:01.952002+00 f t 31500.00 1 31500.00 6068 111 \N 5833 +41828 2025-08-23 02:17:01.960275+00 2025-08-23 02:17:01.960286+00 f t 42000.00 1 42000.00 6068 82 \N 5833 +41829 2025-08-23 02:17:01.973662+00 2025-08-23 02:17:01.973676+00 f t 7700.00 1 7700.00 6068 93 \N 5833 +41830 2025-08-23 02:17:02.005058+00 2025-08-23 02:17:02.005073+00 f t 12000.00 1 12000.00 6068 146 \N 5833 +41847 2025-08-23 02:49:02.283364+00 2025-08-23 02:49:02.283381+00 f t 31500.00 1 31500.00 6070 111 \N 5835 +41848 2025-08-23 02:49:02.298067+00 2025-08-23 02:49:02.298081+00 f t 42000.00 1 42000.00 6070 82 \N 5835 +41849 2025-08-23 02:49:02.307862+00 2025-08-23 02:49:02.307877+00 f t 7700.00 1 7700.00 6070 93 \N 5835 +41850 2025-08-23 02:49:02.320018+00 2025-08-23 02:49:02.320033+00 f t 12000.00 1 12000.00 6070 146 \N 5835 +41855 2025-08-23 02:53:36.949105+00 2025-08-23 02:53:36.949116+00 f t 34000.00 1 34000.00 6071 110 \N 5836 +41856 2025-08-23 02:53:36.956288+00 2025-08-23 02:53:36.956299+00 f t 42000.00 1 42000.00 6071 82 \N 5836 +41857 2025-08-23 02:53:36.962895+00 2025-08-23 02:53:36.962908+00 f t 7700.00 1 7700.00 6071 93 \N 5836 +41858 2025-08-23 02:53:36.968953+00 2025-08-23 02:53:36.968966+00 f t 12000.00 1 12000.00 6071 146 \N 5836 +41863 2025-08-23 03:00:17.547678+00 2025-08-23 03:00:17.547693+00 f t 31500.00 1 31500.00 6072 111 \N 5838 +41864 2025-08-23 03:00:17.553609+00 2025-08-23 03:00:17.553619+00 f t 42000.00 1 42000.00 6072 82 \N 5838 +41865 2025-08-23 03:00:17.558648+00 2025-08-23 03:00:17.558657+00 f t 7700.00 1 7700.00 6072 93 \N 5838 +41866 2025-08-23 03:00:17.563927+00 2025-08-23 03:00:17.563936+00 f t 12000.00 1 12000.00 6072 146 \N 5838 +41869 2025-08-23 06:39:17.301504+00 2025-08-23 06:39:17.301518+00 f t 42000.00 1 42000.00 6074 82 \N 5840 +41870 2025-08-23 06:39:17.314601+00 2025-08-23 06:39:17.314612+00 f t 7500.00 1 7500.00 6074 85 \N 5840 +41876 2025-08-23 13:14:26.905649+00 2025-08-23 13:14:26.905662+00 f t 42000.00 1 42000.00 6078 82 \N 5843 +41901 2025-08-23 13:51:56.972106+00 2025-08-23 13:51:56.972117+00 f t 31500.00 1 31500.00 6080 111 \N 5845 +41902 2025-08-23 13:51:56.978895+00 2025-08-23 13:51:56.978906+00 f t 42000.00 1 42000.00 6080 82 \N 5845 +41903 2025-08-23 13:51:56.984866+00 2025-08-23 13:51:56.984878+00 f t 7700.00 1 7700.00 6080 93 \N 5845 +41904 2025-08-23 13:51:56.990853+00 2025-08-23 13:51:56.990864+00 f t 12000.00 1 12000.00 6080 146 \N 5845 +41909 2025-08-23 14:02:50.794154+00 2025-08-23 14:02:50.794166+00 f t 75000.00 1 75000.00 6081 108 \N 5846 +41911 2025-08-23 14:08:23.883641+00 2025-08-23 14:08:23.883658+00 f t 50000.00 1 50000.00 6082 84 \N 5847 +41913 2025-08-23 14:12:38.252033+00 2025-08-23 14:12:38.252043+00 f t 42000.00 1 42000.00 6083 82 \N 5848 +41916 2025-08-23 14:37:29.91441+00 2025-08-23 14:37:29.914423+00 f t 42000.00 1 42000.00 6085 82 \N 5851 +41917 2025-08-23 14:37:29.923964+00 2025-08-23 14:37:29.923977+00 f t 7500.00 1 7500.00 6085 85 \N 5851 +41922 2025-08-23 14:42:56.996717+00 2025-08-23 14:42:56.996731+00 f t 50000.00 1 50000.00 6086 84 \N 5852 +48388 2025-09-06 00:35:40.270527+00 2025-09-06 00:35:40.270535+00 f t 46000.00 1 46000.00 6996 82 \N 6654 +42783 2025-08-25 20:23:39.311363+00 2025-08-25 20:23:39.311374+00 f t 42000.00 1 42000.00 6219 82 \N 5978 +42797 2025-08-26 00:40:42.898601+00 2025-08-26 00:40:42.898615+00 f t 42000.00 1 42000.00 6229 82 \N 5985 +42798 2025-08-26 00:40:42.906465+00 2025-08-26 00:40:42.906476+00 f t 32500.00 1 32500.00 6229 117 \N 5985 +42799 2025-08-26 00:40:42.916154+00 2025-08-26 00:40:42.916168+00 f t 13000.00 1 13000.00 6229 89 \N 5985 +45533 2025-09-01 03:33:13.960817+00 2025-09-01 03:33:13.960826+00 f t 46000.00 1 46000.00 6615 82 \N 6337 +45534 2025-09-01 03:33:13.966086+00 2025-09-01 03:33:13.966094+00 f t 8000.00 1 8000.00 6615 85 \N 6337 +42836 2025-08-26 02:10:29.021256+00 2025-08-26 02:10:29.021265+00 f t 42000.00 1 42000.00 6232 82 \N 5988 +42837 2025-08-26 02:10:29.029464+00 2025-08-26 02:10:29.02948+00 f t 22500.00 1 22500.00 6232 86 \N 5988 +42844 2025-08-26 02:16:43.356579+00 2025-08-26 02:16:43.356592+00 f t 42000.00 1 42000.00 6234 82 \N 5989 +42845 2025-08-26 02:16:43.363542+00 2025-08-26 02:16:43.363551+00 f t 22500.00 1 22500.00 6234 86 \N 5989 +44173 2025-08-29 00:14:39.097601+00 2025-08-29 00:14:39.097616+00 f t 50000.00 1 50000.00 6395 84 \N 6140 +44182 2025-08-29 00:26:23.677273+00 2025-08-29 00:26:23.677288+00 f t 42000.00 1 42000.00 6396 82 \N 6141 +44183 2025-08-29 00:26:23.684216+00 2025-08-29 00:26:23.684228+00 f t 22500.00 1 22500.00 6396 163 \N 6141 +42876 2025-08-26 03:36:51.94324+00 2025-08-26 03:36:51.94325+00 f t 42000.00 1 42000.00 6238 82 \N 5993 +42877 2025-08-26 03:36:51.951936+00 2025-08-26 03:36:51.951949+00 f t 7500.00 1 7500.00 6238 85 \N 5993 +42878 2025-08-26 03:36:51.957583+00 2025-08-26 03:36:51.957591+00 f t 22500.00 1 22500.00 6238 163 \N 5993 +42011 2025-08-23 16:25:50.229652+00 2025-08-23 16:25:50.229664+00 f t 42000.00 1 42000.00 6088 82 \N 5855 +42014 2025-08-23 16:26:22.573663+00 2025-08-23 16:26:22.573676+00 f t 42000.00 1 42000.00 6089 82 \N 5856 +42015 2025-08-23 16:26:22.580719+00 2025-08-23 16:26:22.580733+00 f t 7500.00 1 7500.00 6089 85 \N 5856 +42017 2025-08-23 16:33:50.709333+00 2025-08-23 16:33:50.709347+00 f t 42000.00 1 42000.00 6090 82 \N 5858 +42020 2025-08-23 18:56:19.233028+00 2025-08-23 18:56:19.23304+00 f t 42000.00 1 42000.00 6092 82 \N 5862 +42021 2025-08-23 18:56:19.240318+00 2025-08-23 18:56:19.240331+00 f t 22500.00 1 22500.00 6092 86 \N 5862 +42023 2025-08-23 19:17:02.623686+00 2025-08-23 19:17:02.623702+00 f t 42000.00 1 42000.00 6093 82 \N 5863 +42914 2025-08-26 04:08:11.025514+00 2025-08-26 04:08:11.025529+00 f t 42000.00 1 42000.00 6240 82 \N 5995 +42027 2025-08-23 19:34:18.430783+00 2025-08-23 19:34:18.430794+00 f t 42000.00 1 42000.00 6094 82 \N 5864 +42924 2025-08-26 12:03:51.637531+00 2025-08-26 12:03:51.637541+00 f t 68000.00 1 68000.00 6249 106 \N 6001 +42029 2025-08-23 20:07:12.309197+00 2025-08-23 20:07:12.30921+00 f t 50000.00 1 50000.00 6096 84 \N 5866 +42036 2025-08-23 20:27:47.721045+00 2025-08-23 20:27:47.721054+00 f t 31500.00 1 31500.00 6097 111 \N 5867 +42037 2025-08-23 20:27:47.726627+00 2025-08-23 20:27:47.726635+00 f t 42000.00 1 42000.00 6097 82 \N 5867 +42038 2025-08-23 20:27:47.730745+00 2025-08-23 20:27:47.730754+00 f t 7700.00 1 7700.00 6097 93 \N 5867 +42039 2025-08-23 20:27:47.735093+00 2025-08-23 20:27:47.735104+00 f t 12000.00 1 12000.00 6097 146 \N 5867 +42041 2025-08-23 20:38:48.774466+00 2025-08-23 20:38:48.774474+00 f t 50000.00 1 50000.00 6098 84 \N 5868 +42044 2025-08-23 20:39:57.873217+00 2025-08-23 20:39:57.873226+00 f t 50000.00 1 50000.00 6091 84 \N 5860 +42988 2025-08-26 21:42:07.692908+00 2025-08-26 21:42:07.69292+00 f t 42000.00 1 42000.00 6264 82 \N 6021 +42989 2025-08-26 21:42:07.700151+00 2025-08-26 21:42:07.700161+00 f t 7500.00 1 7500.00 6264 85 \N 6021 +43004 2025-08-26 21:50:20.964431+00 2025-08-26 21:50:20.964441+00 f t 42000.00 1 42000.00 6265 82 \N 6022 +43005 2025-08-26 21:50:20.971484+00 2025-08-26 21:50:20.971494+00 f t 7500.00 1 7500.00 6265 85 \N 6022 +43041 2025-08-27 01:05:07.04276+00 2025-08-27 01:05:07.042776+00 f t 68000.00 1 68000.00 6275 106 \N 6032 +42068 2025-08-23 21:30:34.809344+00 2025-08-23 21:30:34.809355+00 f t 42000.00 1 42000.00 6099 82 \N 5869 +42069 2025-08-23 21:30:34.815605+00 2025-08-23 21:30:34.815618+00 f t 7500.00 1 7500.00 6099 85 \N 5869 +42070 2025-08-23 21:30:34.821228+00 2025-08-23 21:30:34.821239+00 f t 22500.00 1 22500.00 6099 163 \N 5869 +42072 2025-08-23 21:41:37.317679+00 2025-08-23 21:41:37.31769+00 f t 42000.00 1 42000.00 6100 82 \N 5870 +43053 2025-08-27 02:36:13.027492+00 2025-08-27 02:36:13.027503+00 f t 42000.00 1 42000.00 6279 82 \N 6035 +42123 2025-08-23 22:50:45.47756+00 2025-08-23 22:50:45.47757+00 f t 20500.00 1 20500.00 6103 109 \N 5874 +42124 2025-08-23 22:50:45.482501+00 2025-08-23 22:50:45.48251+00 f t 42000.00 1 42000.00 6103 82 \N 5874 +42125 2025-08-23 22:50:45.48657+00 2025-08-23 22:50:45.486579+00 f t 7700.00 1 7700.00 6103 93 \N 5874 +42126 2025-08-23 22:50:45.490912+00 2025-08-23 22:50:45.49092+00 f t 12000.00 1 12000.00 6103 146 \N 5874 +42128 2025-08-23 23:18:53.606233+00 2025-08-23 23:18:53.606245+00 f t 42000.00 1 42000.00 6105 82 \N 5876 +42130 2025-08-23 23:51:11.083931+00 2025-08-23 23:51:11.083941+00 f t 50000.00 1 50000.00 6108 84 \N 5879 +42135 2025-08-24 01:04:57.146509+00 2025-08-24 01:04:57.146517+00 f t 50000.00 1 50000.00 6111 84 \N 5881 +42141 2025-08-24 01:07:38.598232+00 2025-08-24 01:07:38.598241+00 f t 42000.00 1 42000.00 6112 82 \N 5882 +42189 2025-08-24 02:29:40.594503+00 2025-08-24 02:29:40.594515+00 f t 42000.00 1 42000.00 6113 82 \N 5883 +42190 2025-08-24 02:29:40.602296+00 2025-08-24 02:29:40.602308+00 f t 33000.00 1 33000.00 6113 133 \N 5883 +42191 2025-08-24 02:29:40.607569+00 2025-08-24 02:29:40.607578+00 f t 13000.00 1 13000.00 6113 89 \N 5883 +42215 2025-08-24 04:08:37.416104+00 2025-08-24 04:08:37.416117+00 f t 42000.00 1 42000.00 6115 82 \N 5884 +42217 2025-08-24 05:09:33.039556+00 2025-08-24 05:09:33.039569+00 f t 50000.00 1 50000.00 6117 84 \N 5885 +42219 2025-08-24 08:15:12.520935+00 2025-08-24 08:15:12.520949+00 f t 50000.00 1 50000.00 6118 84 \N 5886 +42223 2025-08-24 10:06:06.1626+00 2025-08-24 10:06:06.162614+00 f t 50000.00 1 50000.00 6119 84 \N 5887 +42231 2025-08-24 11:25:25.881842+00 2025-08-24 11:25:25.881853+00 f t 50000.00 1 50000.00 6120 84 \N 5888 +42233 2025-08-24 12:03:29.137308+00 2025-08-24 12:03:29.137319+00 f t 76000.00 1 76000.00 6122 97 \N 5889 +42235 2025-08-24 12:27:52.221611+00 2025-08-24 12:27:52.221621+00 f t 42000.00 1 42000.00 6123 82 \N 5890 +42239 2025-08-24 12:37:23.199236+00 2025-08-24 12:37:23.199248+00 f t 42000.00 1 42000.00 6124 82 \N 5891 +42244 2025-08-24 13:59:24.613644+00 2025-08-24 13:59:24.613654+00 f t 42000.00 1 42000.00 6127 82 \N 5895 +42245 2025-08-24 13:59:24.619239+00 2025-08-24 13:59:24.619247+00 f t 22500.00 1 22500.00 6127 86 \N 5895 +42251 2025-08-24 14:05:11.593479+00 2025-08-24 14:05:11.593493+00 f t 50000.00 1 50000.00 6128 84 \N 5896 +42260 2025-08-24 15:44:16.686359+00 2025-08-24 15:44:16.686368+00 f t 50000.00 1 50000.00 6130 84 \N 5897 +42262 2025-08-24 16:38:27.377741+00 2025-08-24 16:38:27.377749+00 f t 27500.00 1 27500.00 6131 83 \N 5898 +44031 2025-08-28 15:44:13.402653+00 2025-08-28 15:44:13.402666+00 f t 50000.00 1 50000.00 6365 84 \N 6120 +72848 2025-10-21 13:09:26.783623+00 2025-10-21 13:09:26.783633+00 f t 0.00 1 0.00 10180 169 \N 9313 +42265 2025-08-24 19:23:28.441419+00 2025-08-24 19:23:28.441431+00 f t 42000.00 1 42000.00 6136 82 \N 5905 +42746 2025-08-25 16:39:52.884123+00 2025-08-25 16:39:52.884133+00 f t 50000.00 1 50000.00 6212 84 \N 5969 +42268 2025-08-24 19:26:32.293935+00 2025-08-24 19:26:32.293944+00 f t 42000.00 1 42000.00 6137 82 \N 5907 +42270 2025-08-24 20:22:53.687367+00 2025-08-24 20:22:53.687377+00 f t 50000.00 1 50000.00 6140 84 \N 5910 +42788 2025-08-25 23:57:18.907663+00 2025-08-25 23:57:18.907675+00 f t 50000.00 1 50000.00 6225 84 \N 5983 +42856 2025-08-26 02:34:07.32388+00 2025-08-26 02:34:07.323894+00 f t 50000.00 1 50000.00 6236 84 \N 5990 +44207 2025-08-29 01:54:11.867021+00 2025-08-29 01:54:11.867032+00 f t 50000.00 1 50000.00 6400 84 \N 6144 +44219 2025-08-29 02:40:09.881279+00 2025-08-29 02:40:09.881293+00 f t 42000.00 1 42000.00 6402 82 \N 6146 +44220 2025-08-29 02:40:09.889202+00 2025-08-29 02:40:09.889217+00 f t 46900.00 1 46900.00 6402 136 \N 6146 +44221 2025-08-29 02:40:09.896374+00 2025-08-29 02:40:09.896387+00 f t 13000.00 1 13000.00 6402 89 \N 6146 +44281 2025-08-29 11:29:38.972561+00 2025-08-29 11:29:38.972575+00 f t 20500.00 1 20500.00 6412 109 \N 6153 +44282 2025-08-29 11:29:38.979065+00 2025-08-29 11:29:38.979077+00 f t 42000.00 1 42000.00 6412 82 \N 6153 +44283 2025-08-29 11:29:38.98467+00 2025-08-29 11:29:38.984682+00 f t 7700.00 1 7700.00 6412 93 \N 6153 +44284 2025-08-29 11:29:38.990154+00 2025-08-29 11:29:38.990166+00 f t 12000.00 1 12000.00 6412 146 \N 6153 +42929 2025-08-26 12:31:10.648694+00 2025-08-26 12:31:10.648709+00 f t 42000.00 1 42000.00 6250 82 \N 6003 +44316 2025-08-29 12:46:53.273091+00 2025-08-29 12:46:53.273105+00 f t 50000.00 1 50000.00 6421 84 \N 6162 +42959 2025-08-26 16:56:02.431175+00 2025-08-26 16:56:02.431188+00 f t 42000.00 1 42000.00 6257 82 \N 6012 +43010 2025-08-26 23:05:28.54255+00 2025-08-26 23:05:28.542564+00 f t 50000.00 1 50000.00 6269 84 \N 6026 +44402 2025-08-29 13:38:36.002553+00 2025-08-29 13:38:36.002571+00 f t 76000.00 1 76000.00 6427 97 \N 6167 +42339 2025-08-24 21:20:37.226924+00 2025-08-24 21:20:37.226934+00 f t 42000.00 1 42000.00 6143 82 \N 5911 +42340 2025-08-24 21:20:37.232422+00 2025-08-24 21:20:37.232431+00 f t 7700.00 1 7700.00 6143 93 \N 5911 +42341 2025-08-24 21:20:37.237506+00 2025-08-24 21:20:37.237515+00 f t 12000.00 1 12000.00 6143 146 \N 5911 +42342 2025-08-24 21:20:37.242453+00 2025-08-24 21:20:37.242463+00 f t 22500.00 1 22500.00 6143 163 \N 5911 +44403 2025-08-29 13:38:36.010367+00 2025-08-29 13:38:36.010385+00 f t 42000.00 1 42000.00 6427 82 \N 6167 +44404 2025-08-29 13:38:36.016948+00 2025-08-29 13:38:36.016961+00 f t 24000.00 1 24000.00 6427 132 \N 6167 +44405 2025-08-29 13:38:36.023644+00 2025-08-29 13:38:36.023654+00 f t 7500.00 1 7500.00 6427 85 \N 6167 +44406 2025-08-29 13:38:36.0305+00 2025-08-29 13:38:36.030513+00 f t 22500.00 1 22500.00 6427 163 \N 6167 +44407 2025-08-29 13:38:36.037061+00 2025-08-29 13:38:36.037073+00 f t 13000.00 1 13000.00 6427 89 \N 6167 +43081 2025-08-27 03:26:05.99907+00 2025-08-27 03:26:05.999082+00 f t 27500.00 1 27500.00 6284 83 \N 6041 +42358 2025-08-24 21:21:28.682146+00 2025-08-24 21:21:28.682155+00 f t 42000.00 1 42000.00 6144 82 \N 5914 +44479 2025-08-29 15:17:50.978124+00 2025-08-29 15:17:50.978139+00 f t 42000.00 1 42000.00 6432 82 \N 6171 +44480 2025-08-29 15:17:50.986582+00 2025-08-29 15:17:50.986593+00 f t 42000.00 1 42000.00 6432 82 \N 6172 +43110 2025-08-27 15:06:33.380407+00 2025-08-27 15:06:33.38042+00 f t 42000.00 1 42000.00 6292 82 \N 6048 +44481 2025-08-29 15:17:50.997678+00 2025-08-29 15:17:50.997689+00 f t 7500.00 1 7500.00 6432 85 \N 6172 +42367 2025-08-24 21:21:40.179076+00 2025-08-24 21:21:40.179086+00 f t 42000.00 1 42000.00 6145 82 \N 5913 +42368 2025-08-24 21:21:40.18406+00 2025-08-24 21:21:40.184072+00 f t 22500.00 1 22500.00 6145 163 \N 5913 +44507 2025-08-29 15:49:17.154533+00 2025-08-29 15:49:17.154542+00 f t 42000.00 1 42000.00 6442 82 \N 6177 +44508 2025-08-29 15:49:17.161811+00 2025-08-29 15:49:17.161821+00 f t 22500.00 1 22500.00 6442 86 \N 6177 +42390 2025-08-24 21:22:41.681458+00 2025-08-24 21:22:41.681471+00 f t 42000.00 1 42000.00 6146 82 \N 5915 +42391 2025-08-24 21:22:41.69041+00 2025-08-24 21:22:41.690423+00 f t 7500.00 1 7500.00 6146 85 \N 5915 +42392 2025-08-24 21:22:41.697166+00 2025-08-24 21:22:41.697177+00 f t 22500.00 1 22500.00 6146 163 \N 5915 +42396 2025-08-24 21:36:37.898921+00 2025-08-24 21:36:37.89893+00 f t 50000.00 1 50000.00 6147 84 \N 5916 +42399 2025-08-24 21:47:34.456705+00 2025-08-24 21:47:34.456715+00 f t 50000.00 1 50000.00 6149 84 \N 5918 +42402 2025-08-24 21:49:22.660802+00 2025-08-24 21:49:22.660815+00 f t 50000.00 1 50000.00 6150 84 \N 5919 +42404 2025-08-24 22:40:37.338008+00 2025-08-24 22:40:37.338017+00 f t 42000.00 1 42000.00 6154 82 \N 5920 +43227 2025-08-27 17:56:05.585901+00 2025-08-27 17:56:05.585914+00 f t 12000.00 1 12000.00 6261 146 \N 6018 +43238 2025-08-27 18:23:51.402709+00 2025-08-27 18:23:51.402719+00 f t 42000.00 1 42000.00 6306 82 \N 6059 +43239 2025-08-27 18:23:51.408889+00 2025-08-27 18:23:51.408904+00 f t 7500.00 1 7500.00 6306 85 \N 6059 +43294 2025-08-27 22:12:25.271463+00 2025-08-27 22:12:25.271472+00 f t 27500.00 1 27500.00 6319 83 \N 6069 +43312 2025-08-27 22:40:03.707658+00 2025-08-27 22:40:03.707674+00 f t 50000.00 1 50000.00 6321 84 \N 6072 +42459 2025-08-24 23:08:48.370618+00 2025-08-24 23:08:48.370632+00 f t 42000.00 1 42000.00 6155 82 \N 5921 +42460 2025-08-24 23:08:48.375858+00 2025-08-24 23:08:48.375867+00 f t 24000.00 1 24000.00 6155 132 \N 5921 +42461 2025-08-24 23:08:48.379952+00 2025-08-24 23:08:48.37996+00 f t 22500.00 1 22500.00 6155 163 \N 5921 +42462 2025-08-24 23:08:48.384008+00 2025-08-24 23:08:48.384017+00 f t 13000.00 1 13000.00 6155 89 \N 5921 +42464 2025-08-24 23:37:41.579343+00 2025-08-24 23:37:41.579352+00 f t 72500.00 1 72500.00 6156 104 \N 5922 +42474 2025-08-24 23:40:37.605166+00 2025-08-24 23:40:37.605179+00 f t 42000.00 1 42000.00 6157 82 \N 5923 +42485 2025-08-25 00:00:02.201352+00 2025-08-25 00:00:02.20137+00 f t 42000.00 1 42000.00 6161 82 \N 5926 +42486 2025-08-25 00:00:02.215868+00 2025-08-25 00:00:02.215883+00 f t 7500.00 1 7500.00 6161 85 \N 5926 +42489 2025-08-25 00:20:39.675724+00 2025-08-25 00:20:39.675736+00 f t 42000.00 1 42000.00 6163 82 \N 5927 +42490 2025-08-25 00:20:39.68105+00 2025-08-25 00:20:39.681058+00 f t 7500.00 1 7500.00 6163 85 \N 5927 +42495 2025-08-25 00:28:30.191114+00 2025-08-25 00:28:30.191122+00 f t 42000.00 1 42000.00 6164 82 \N 5928 +42496 2025-08-25 00:28:30.19631+00 2025-08-25 00:28:30.196319+00 f t 7500.00 1 7500.00 6164 85 \N 5928 +42498 2025-08-25 00:33:39.794864+00 2025-08-25 00:33:39.794872+00 f t 50000.00 1 50000.00 6166 84 \N 5929 +42500 2025-08-25 00:34:47.055268+00 2025-08-25 00:34:47.055276+00 f t 50000.00 1 50000.00 6165 84 \N 5930 +42506 2025-08-25 01:18:58.152409+00 2025-08-25 01:18:58.152418+00 f t 42000.00 1 42000.00 6169 82 \N 5932 +42507 2025-08-25 01:18:58.157381+00 2025-08-25 01:18:58.157389+00 f t 7500.00 1 7500.00 6169 85 \N 5932 +44043 2025-08-28 17:56:44.233628+00 2025-08-28 17:56:44.233638+00 f t 42000.00 1 42000.00 6370 82 \N 6124 +45445 2025-08-31 20:36:21.785952+00 2025-08-31 20:36:21.786359+00 f t 75000.00 1 75000.00 6576 108 \N 6298 +42563 2025-08-25 02:36:25.496468+00 2025-08-25 02:36:25.496477+00 f t 50000.00 1 50000.00 6174 84 \N 5938 +42777 2025-08-25 20:08:12.494969+00 2025-08-25 20:08:12.49498+00 f t 68000.00 1 68000.00 6141 106 \N 5835 +42789 2025-08-25 23:57:18.908946+00 2025-08-25 23:57:18.908958+00 f t 50000.00 1 50000.00 6225 84 \N 5983 +42793 2025-08-26 00:12:00.270181+00 2025-08-26 00:12:00.270195+00 f t 50000.00 1 50000.00 6227 84 \N 5984 +42823 2025-08-26 00:42:50.745915+00 2025-08-26 00:42:50.745928+00 f t 42000.00 1 42000.00 6230 82 \N 5986 +42824 2025-08-26 00:42:50.752649+00 2025-08-26 00:42:50.752661+00 f t 33000.00 1 33000.00 6230 133 \N 5986 +42825 2025-08-26 00:42:50.75864+00 2025-08-26 00:42:50.75865+00 f t 13000.00 1 13000.00 6230 89 \N 5986 +42576 2025-08-25 02:50:44.126979+00 2025-08-25 02:50:44.126993+00 f t 42000.00 1 42000.00 6177 82 \N 5942 +42577 2025-08-25 02:50:44.133437+00 2025-08-25 02:50:44.133451+00 f t 7500.00 1 7500.00 6177 85 \N 5942 +42829 2025-08-26 01:03:49.705608+00 2025-08-26 01:03:49.705621+00 f t 50000.00 1 50000.00 6231 84 \N 5987 +42833 2025-08-26 01:31:33.88493+00 2025-08-26 01:31:33.88494+00 f t 75000.00 1 75000.00 6189 108 \N 5714 +44130 2025-08-28 20:22:42.543584+00 2025-08-28 20:22:42.543599+00 f t 42000.00 1 42000.00 6383 82 \N 6133 +44131 2025-08-28 20:22:42.55036+00 2025-08-28 20:22:42.550371+00 f t 33000.00 1 33000.00 6383 140 \N 6133 +44132 2025-08-28 20:22:42.556225+00 2025-08-28 20:22:42.556237+00 f t 13000.00 1 13000.00 6383 89 \N 6133 +44143 2025-08-28 21:40:43.527747+00 2025-08-28 21:40:43.527762+00 f t 42000.00 1 42000.00 6389 82 \N 6134 +44167 2025-08-28 21:42:51.087959+00 2025-08-28 21:42:51.087971+00 f t 42000.00 1 42000.00 6388 82 \N 6135 +44168 2025-08-28 21:42:51.093867+00 2025-08-28 21:42:51.093878+00 f t 22500.00 1 22500.00 6388 88 \N 6135 +44169 2025-08-28 21:42:51.100115+00 2025-08-28 21:42:51.100124+00 f t 42000.00 1 42000.00 6388 82 \N 6136 +42590 2025-08-25 02:52:54.014713+00 2025-08-25 02:52:54.014727+00 f t 42000.00 1 42000.00 6178 82 \N 5943 +42596 2025-08-25 03:11:47.519193+00 2025-08-25 03:11:47.519204+00 f t 50000.00 1 50000.00 6179 84 \N 5944 +42599 2025-08-25 04:39:16.487923+00 2025-08-25 04:39:16.487937+00 f t 95000.00 1 95000.00 6181 103 \N 5945 +42912 2025-08-26 04:01:50.919936+00 2025-08-26 04:01:50.919951+00 f t 42000.00 1 42000.00 6239 82 \N 5994 +42601 2025-08-25 09:58:50.28664+00 2025-08-25 09:58:50.28665+00 f t 27500.00 1 27500.00 6183 83 \N 5946 +42919 2025-08-26 11:42:27.065196+00 2025-08-26 11:42:27.065205+00 f t 32500.00 1 32500.00 6247 112 \N 6000 +42920 2025-08-26 11:42:27.071771+00 2025-08-26 11:42:27.071781+00 f t 42000.00 1 42000.00 6247 82 \N 6000 +42604 2025-08-25 11:14:03.100247+00 2025-08-25 11:14:03.100257+00 f t 42000.00 1 42000.00 6185 82 \N 5948 +42605 2025-08-25 11:14:03.107815+00 2025-08-25 11:14:03.107826+00 f t 7500.00 1 7500.00 6185 85 \N 5948 +42921 2025-08-26 11:42:27.077005+00 2025-08-26 11:42:27.077014+00 f t 7700.00 1 7700.00 6247 93 \N 6000 +44228 2025-08-29 10:47:34.195163+00 2025-08-29 10:47:34.195175+00 f t 50000.00 1 50000.00 6409 84 \N 6151 +42922 2025-08-26 11:42:27.08195+00 2025-08-26 11:42:27.08196+00 f t 12000.00 1 12000.00 6247 146 \N 6000 +42609 2025-08-25 12:28:22.59046+00 2025-08-25 12:28:22.590472+00 f t 42000.00 1 42000.00 6193 82 \N 5951 +42934 2025-08-26 13:31:01.047604+00 2025-08-26 13:31:01.047617+00 f t 42000.00 1 42000.00 6252 82 \N 6005 +42620 2025-08-25 13:28:22.615914+00 2025-08-25 13:28:22.615929+00 f t 42000.00 1 42000.00 6196 82 \N 5955 +44291 2025-08-29 11:48:26.72648+00 2025-08-29 11:48:26.726494+00 f t 42000.00 1 42000.00 6410 82 \N 6152 +42622 2025-08-25 14:04:12.245805+00 2025-08-25 14:04:12.245819+00 f t 68000.00 1 68000.00 6199 106 \N 5958 +44292 2025-08-29 11:48:26.733635+00 2025-08-29 11:48:26.733651+00 f t 7500.00 1 7500.00 6410 85 \N 6152 +42985 2025-08-26 19:20:50.591289+00 2025-08-26 19:20:50.591303+00 f t 27500.00 1 27500.00 6262 83 \N 6019 +43039 2025-08-27 01:02:10.647795+00 2025-08-27 01:02:10.647809+00 f t 50000.00 1 50000.00 6274 84 \N 6031 +43051 2025-08-27 02:16:20.549844+00 2025-08-27 02:16:20.549863+00 f t 42000.00 1 42000.00 6277 82 \N 6034 +42647 2025-08-25 14:49:37.738375+00 2025-08-25 14:49:37.738386+00 f t 50000.00 1 50000.00 6201 84 \N 5961 +42649 2025-08-25 15:18:38.566188+00 2025-08-25 15:18:38.5662+00 f t 27500.00 1 27500.00 6204 83 \N 5962 +43079 2025-08-27 02:50:45.729912+00 2025-08-27 02:50:45.729926+00 f t 27500.00 1 27500.00 6282 83 \N 6039 +43095 2025-08-27 11:50:37.424676+00 2025-08-27 11:50:37.42469+00 f t 42000.00 1 42000.00 6287 82 \N 6043 +43096 2025-08-27 11:50:37.431374+00 2025-08-27 11:50:37.431386+00 f t 22500.00 1 22500.00 6287 86 \N 6043 +43105 2025-08-27 14:55:30.007387+00 2025-08-27 14:55:30.007403+00 f t 31500.00 1 31500.00 6293 111 \N 6049 +43106 2025-08-27 14:55:30.015087+00 2025-08-27 14:55:30.015101+00 f t 42000.00 1 42000.00 6293 82 \N 6049 +43107 2025-08-27 14:55:30.02119+00 2025-08-27 14:55:30.0212+00 f t 7700.00 1 7700.00 6293 93 \N 6049 +43108 2025-08-27 14:55:30.026993+00 2025-08-27 14:55:30.027005+00 f t 12000.00 1 12000.00 6293 146 \N 6049 +43117 2025-08-27 15:23:32.319253+00 2025-08-27 15:23:32.319267+00 f t 93750.00 1 93750.00 6295 90 \N 6051 +43118 2025-08-27 15:23:32.325192+00 2025-08-27 15:23:32.325203+00 f t 42000.00 1 42000.00 6295 82 \N 6051 +44492 2025-08-29 15:46:56.05566+00 2025-08-29 15:46:56.055669+00 f t 42000.00 1 42000.00 6440 82 \N 6175 +44493 2025-08-29 15:46:56.061463+00 2025-08-29 15:46:56.061472+00 f t 81500.00 1 81500.00 6440 144 \N 6175 +44529 2025-08-29 16:06:39.262759+00 2025-08-29 16:06:39.26277+00 f t 75000.00 1 75000.00 6443 108 \N 6178 +44539 2025-08-29 17:27:00.8006+00 2025-08-29 17:27:00.800613+00 f t 42000.00 1 42000.00 6445 82 \N 6183 +43179 2025-08-27 17:21:44.618284+00 2025-08-27 17:21:44.618294+00 f t 42000.00 1 42000.00 6301 82 \N 6055 +42720 2025-08-25 15:54:47.917157+00 2025-08-25 15:54:47.91717+00 f t 32500.00 1 32500.00 6209 112 \N 5965 +42721 2025-08-25 15:54:47.927799+00 2025-08-25 15:54:47.92781+00 f t 42000.00 1 42000.00 6209 82 \N 5965 +42722 2025-08-25 15:54:47.934311+00 2025-08-25 15:54:47.934321+00 f t 7700.00 1 7700.00 6209 93 \N 5965 +42723 2025-08-25 15:54:47.940503+00 2025-08-25 15:54:47.940513+00 f t 12000.00 1 12000.00 6209 146 \N 5965 +43266 2025-08-27 18:32:26.898336+00 2025-08-27 18:32:26.898348+00 f t 42000.00 1 42000.00 6307 82 \N 6061 +43267 2025-08-27 18:32:26.904335+00 2025-08-27 18:32:26.904345+00 f t 22500.00 1 22500.00 6307 163 \N 6061 +43278 2025-08-27 19:57:14.571838+00 2025-08-27 19:57:14.571849+00 f t 42000.00 1 42000.00 6312 82 \N 6064 +43279 2025-08-27 19:57:14.577749+00 2025-08-27 19:57:14.577758+00 f t 7500.00 1 7500.00 6312 85 \N 6064 +43281 2025-08-27 20:04:16.128723+00 2025-08-27 20:04:16.128732+00 f t 42000.00 1 42000.00 6314 82 \N 6065 +43283 2025-08-27 22:06:03.567332+00 2025-08-27 22:06:03.567347+00 f t 42000.00 1 42000.00 6318 82 \N 6068 +43316 2025-08-27 22:40:54.653148+00 2025-08-27 22:40:54.653158+00 f t 42000.00 1 42000.00 6320 82 \N 6070 +43317 2025-08-27 22:40:54.657975+00 2025-08-27 22:40:54.657986+00 f t 22500.00 1 22500.00 6320 86 \N 6070 +43318 2025-08-27 22:40:54.661986+00 2025-08-27 22:40:54.661993+00 f t 42000.00 1 42000.00 6320 82 \N 6071 +44034 2025-08-28 16:35:23.846022+00 2025-08-28 16:35:23.846033+00 f t 42000.00 1 42000.00 6367 82 \N 6122 +44035 2025-08-28 16:35:23.851793+00 2025-08-28 16:35:23.851805+00 f t 22500.00 1 22500.00 6367 163 \N 6122 +46912 2025-09-03 20:28:02.814711+00 2025-09-03 20:28:02.814721+00 f t 30000.00 1 30000.00 6834 83 \N 6521 +45451 2025-08-31 20:57:57.524651+00 2025-08-31 20:57:57.525032+00 f t 50000.00 1 50000.00 6593 84 \N 6319 +45466 2025-08-31 21:20:31.313791+00 2025-08-31 21:20:31.3138+00 f t 50000.00 1 50000.00 6598 84 \N 6323 +44104 2025-08-28 19:14:39.073264+00 2025-08-28 19:14:39.073276+00 f t 42000.00 1 42000.00 6378 82 \N 6130 +44105 2025-08-28 19:14:39.07822+00 2025-08-28 19:14:39.078233+00 f t 22500.00 1 22500.00 6378 163 \N 6130 +44209 2025-08-29 02:17:40.071888+00 2025-08-29 02:17:40.071897+00 f t 50000.00 1 50000.00 6401 84 \N 6145 +45593 2025-09-01 05:05:33.303483+00 2025-09-01 05:05:33.303494+00 f t 46000.00 1 46000.00 6617 82 \N 6339 +45594 2025-09-01 05:05:33.309945+00 2025-09-01 05:05:33.309957+00 f t 8000.00 1 8000.00 6617 85 \N 6339 +45595 2025-09-01 05:05:33.315211+00 2025-09-01 05:05:33.315223+00 f t 24000.00 1 24000.00 6617 86 \N 6339 +44318 2025-08-29 12:51:42.770536+00 2025-08-29 12:51:42.770545+00 f t 27500.00 1 27500.00 6422 83 \N 6163 +44323 2025-08-29 13:22:09.712679+00 2025-08-29 13:22:09.712691+00 f t 42000.00 1 42000.00 6424 82 \N 6164 +45633 2025-09-01 12:58:02.54949+00 2025-09-01 12:58:02.549501+00 f t 68000.00 1 68000.00 6632 106 \N 6351 +45662 2025-09-01 15:07:40.587916+00 2025-09-01 15:07:40.587929+00 f t 46000.00 1 46000.00 6639 82 \N 6358 +45663 2025-09-01 15:07:40.594753+00 2025-09-01 15:07:40.594766+00 f t 24000.00 1 24000.00 6639 163 \N 6358 +44484 2025-08-29 15:44:35.270829+00 2025-08-29 15:44:35.270841+00 f t 42000.00 1 42000.00 6438 82 \N 6173 +44485 2025-08-29 15:44:35.276142+00 2025-08-29 15:44:35.276152+00 f t 69000.00 1 69000.00 6438 142 \N 6173 +45738 2025-09-01 16:58:51.887178+00 2025-09-01 16:58:51.887188+00 f t 95000.00 1 95000.00 6650 103 \N 6363 +44561 2025-08-29 18:32:53.350775+00 2025-08-29 18:32:53.350785+00 f t 42000.00 1 42000.00 6449 82 \N 6186 +44565 2025-08-29 18:53:41.641815+00 2025-08-29 18:53:41.641825+00 f t 42000.00 1 42000.00 6450 82 \N 6187 +44569 2025-08-29 18:59:26.204377+00 2025-08-29 18:59:26.20439+00 f t 42000.00 1 42000.00 6452 82 \N 6189 +44606 2025-08-29 22:33:41.438373+00 2025-08-29 22:33:41.438382+00 f t 42000.00 1 42000.00 6461 82 \N 6197 +44607 2025-08-29 22:33:41.443903+00 2025-08-29 22:33:41.443911+00 f t 7500.00 1 7500.00 6461 85 \N 6197 +44624 2025-08-30 00:01:57.869916+00 2025-08-30 00:01:57.869932+00 f t 50000.00 1 50000.00 6468 84 \N 6205 +44636 2025-08-30 06:23:03.26043+00 2025-08-30 06:23:03.260443+00 f t 42000.00 1 42000.00 6478 82 \N 6212 +44639 2025-08-30 08:11:00.060165+00 2025-08-30 08:11:00.060175+00 f t 50000.00 1 50000.00 6479 84 \N 6213 +44645 2025-08-30 10:03:49.22015+00 2025-08-30 10:03:49.220159+00 f t 50000.00 1 50000.00 6481 84 \N 6215 +45797 2025-09-01 18:20:12.075449+00 2025-09-01 18:20:12.075463+00 f t 68000.00 1 68000.00 6657 106 \N 6371 +44666 2025-08-30 10:43:40.611019+00 2025-08-30 10:43:40.611032+00 f t 50000.00 1 50000.00 6482 84 \N 6216 +45819 2025-09-01 18:42:23.520539+00 2025-09-01 18:42:23.520552+00 f t 20500.00 1 20500.00 6659 109 \N 6373 +45820 2025-09-01 18:42:23.526161+00 2025-09-01 18:42:23.526169+00 f t 46000.00 1 46000.00 6659 82 \N 6373 +45821 2025-09-01 18:42:23.531504+00 2025-09-01 18:42:23.531512+00 f t 7700.00 1 7700.00 6659 91 \N 6373 +44684 2025-08-30 13:57:30.416023+00 2025-08-30 13:57:30.416034+00 f t 42000.00 1 42000.00 6490 82 \N 6221 +45822 2025-09-01 18:42:23.535344+00 2025-09-01 18:42:23.535351+00 f t 7700.00 1 7700.00 6659 93 \N 6373 +45823 2025-09-01 18:42:23.539253+00 2025-09-01 18:42:23.539261+00 f t 12000.00 1 12000.00 6659 146 \N 6373 +44693 2025-08-30 14:08:20.429396+00 2025-08-30 14:08:20.429406+00 f t 50000.00 1 50000.00 6491 84 \N 6222 +45826 2025-09-01 19:17:54.090654+00 2025-09-01 19:17:54.090664+00 f t 46000.00 1 46000.00 6662 82 \N 6375 +45827 2025-09-01 19:17:54.096118+00 2025-09-01 19:17:54.096128+00 f t 69000.00 1 69000.00 6662 142 \N 6375 +44702 2025-08-30 14:24:46.871216+00 2025-08-30 14:24:46.871228+00 f t 50000.00 1 50000.00 6493 84 \N 6224 +45849 2025-09-01 19:49:58.194564+00 2025-09-01 19:49:58.194577+00 f t 46000.00 1 46000.00 6664 82 \N 6378 +45900 2025-09-01 19:59:21.953839+00 2025-09-01 19:59:21.953854+00 f t 76000.00 1 76000.00 6666 97 \N 6380 +45903 2025-09-01 20:04:28.618039+00 2025-09-01 20:04:28.618053+00 f t 46000.00 1 46000.00 6667 82 \N 6381 +45904 2025-09-01 20:04:28.62598+00 2025-09-01 20:04:28.625994+00 f t 24000.00 1 24000.00 6667 86 \N 6381 +45939 2025-09-01 20:49:12.455852+00 2025-09-01 20:49:12.455862+00 f t 55000.00 1 55000.00 6671 84 \N 6385 +45943 2025-09-01 21:27:25.391268+00 2025-09-01 21:27:25.391278+00 f t 75000.00 1 75000.00 6672 108 \N 6386 +45948 2025-09-01 21:28:41.038975+00 2025-09-01 21:28:41.038989+00 f t 31500.00 1 31500.00 6673 111 \N 6387 +44898 2025-08-30 15:47:05.661294+00 2025-08-30 15:47:05.661309+00 f t 42000.00 1 42000.00 6500 82 \N 6230 +44899 2025-08-30 15:47:05.669155+00 2025-08-30 15:47:05.669167+00 f t 87500.00 1 87500.00 6500 141 \N 6230 +45949 2025-09-01 21:28:41.045243+00 2025-09-01 21:28:41.045255+00 f t 46000.00 1 46000.00 6673 82 \N 6387 +45950 2025-09-01 21:28:41.050462+00 2025-09-01 21:28:41.050471+00 f t 7700.00 1 7700.00 6673 93 \N 6387 +45951 2025-09-01 21:28:41.055024+00 2025-09-01 21:28:41.055036+00 f t 12000.00 1 12000.00 6673 146 \N 6387 +44966 2025-08-30 16:28:00.344032+00 2025-08-30 16:28:00.344043+00 f t 20500.00 1 20500.00 6508 109 \N 6240 +44967 2025-08-30 16:28:00.34907+00 2025-08-30 16:28:00.349078+00 f t 42000.00 1 42000.00 6508 82 \N 6240 +44968 2025-08-30 16:28:00.352834+00 2025-08-30 16:28:00.352841+00 f t 7700.00 1 7700.00 6508 93 \N 6240 +44969 2025-08-30 16:28:00.356814+00 2025-08-30 16:28:00.356822+00 f t 12000.00 1 12000.00 6508 146 \N 6240 +44973 2025-08-30 16:40:26.299552+00 2025-08-30 16:40:26.299562+00 f t 50000.00 1 50000.00 6511 84 \N 6243 +44977 2025-08-30 16:41:46.123082+00 2025-08-30 16:41:46.123094+00 f t 42000.00 1 42000.00 6512 82 \N 6245 +44979 2025-08-30 16:45:49.940468+00 2025-08-30 16:45:49.94048+00 f t 95000.00 1 95000.00 6513 103 \N 6246 +44985 2025-08-30 16:46:54.959238+00 2025-08-30 16:46:54.959246+00 f t 42000.00 1 42000.00 6515 82 \N 6247 +44986 2025-08-30 16:46:54.964202+00 2025-08-30 16:46:54.96421+00 f t 33000.00 1 33000.00 6515 140 \N 6247 +44987 2025-08-30 16:46:54.968284+00 2025-08-30 16:46:54.968292+00 f t 13000.00 1 13000.00 6515 89 \N 6247 +45001 2025-08-30 17:37:30.457747+00 2025-08-30 17:37:30.457759+00 f t 50000.00 1 50000.00 6520 84 \N 6251 +45044 2025-08-30 18:04:03.678169+00 2025-08-30 18:04:03.678184+00 f t 50000.00 1 50000.00 6521 84 \N 6252 +45054 2025-08-30 18:37:32.738178+00 2025-08-30 18:37:32.738189+00 f t 42000.00 1 42000.00 6523 82 \N 6253 +45055 2025-08-30 18:37:32.743473+00 2025-08-30 18:37:32.74348+00 f t 7500.00 1 7500.00 6523 85 \N 6253 +45056 2025-08-30 18:37:32.747569+00 2025-08-30 18:37:32.747576+00 f t 22500.00 1 22500.00 6523 86 \N 6253 +44047 2025-08-28 17:57:55.617846+00 2025-08-28 17:57:55.617857+00 f t 42000.00 1 42000.00 6375 82 \N 6126 +44048 2025-08-28 17:57:55.625841+00 2025-08-28 17:57:55.625854+00 f t 7500.00 1 7500.00 6375 85 \N 6126 +44049 2025-08-28 17:57:55.631804+00 2025-08-28 17:57:55.631817+00 f t 22500.00 1 22500.00 6375 163 \N 6126 +44112 2025-08-28 20:08:45.516325+00 2025-08-28 20:08:45.516336+00 f t 42000.00 1 42000.00 6381 82 \N 6132 +43643 2025-08-27 22:52:02.521244+00 2025-08-27 22:52:02.521258+00 f t 20500.00 1 20500.00 6323 109 \N 6073 +43644 2025-08-27 22:52:02.529456+00 2025-08-27 22:52:02.529466+00 f t 42000.00 1 42000.00 6323 82 \N 6073 +43645 2025-08-27 22:52:02.535746+00 2025-08-27 22:52:02.535755+00 f t 7700.00 1 7700.00 6323 93 \N 6073 +43646 2025-08-27 22:52:02.541348+00 2025-08-27 22:52:02.541357+00 f t 12000.00 1 12000.00 6323 146 \N 6073 +43647 2025-08-27 22:52:02.547009+00 2025-08-27 22:52:02.547021+00 f t 7500.00 1 7500.00 6323 85 \N 6073 +43648 2025-08-27 22:52:02.552654+00 2025-08-27 22:52:02.552668+00 f t 22500.00 1 22500.00 6323 163 \N 6073 +43649 2025-08-27 22:52:02.559414+00 2025-08-27 22:52:02.559428+00 f t 20500.00 1 20500.00 6323 109 \N 6074 +43650 2025-08-27 22:52:02.566183+00 2025-08-27 22:52:02.566196+00 f t 42000.00 1 42000.00 6323 82 \N 6074 +43651 2025-08-27 22:52:02.572488+00 2025-08-27 22:52:02.572501+00 f t 7700.00 1 7700.00 6323 93 \N 6074 +43652 2025-08-27 22:52:02.578445+00 2025-08-27 22:52:02.578459+00 f t 12000.00 1 12000.00 6323 146 \N 6074 +43653 2025-08-27 22:52:02.58459+00 2025-08-27 22:52:02.5846+00 f t 7500.00 1 7500.00 6323 85 \N 6074 +43654 2025-08-27 22:52:02.590272+00 2025-08-27 22:52:02.590287+00 f t 22500.00 1 22500.00 6323 163 \N 6074 +43655 2025-08-27 22:52:02.595589+00 2025-08-27 22:52:02.595599+00 f t 20500.00 1 20500.00 6323 109 \N 6076 +43656 2025-08-27 22:52:02.601398+00 2025-08-27 22:52:02.601411+00 f t 42000.00 1 42000.00 6323 82 \N 6076 +43657 2025-08-27 22:52:02.607531+00 2025-08-27 22:52:02.607544+00 f t 7700.00 1 7700.00 6323 93 \N 6076 +43658 2025-08-27 22:52:02.614045+00 2025-08-27 22:52:02.614056+00 f t 12000.00 1 12000.00 6323 146 \N 6076 +43659 2025-08-27 22:52:02.620109+00 2025-08-27 22:52:02.62012+00 f t 7500.00 1 7500.00 6323 85 \N 6076 +43660 2025-08-27 22:52:02.626562+00 2025-08-27 22:52:02.626575+00 f t 22500.00 1 22500.00 6323 163 \N 6076 +44171 2025-08-28 22:49:51.921209+00 2025-08-28 22:49:51.92122+00 f t 42000.00 1 42000.00 6392 82 \N 6138 +43663 2025-08-27 23:23:56.583164+00 2025-08-27 23:23:56.583176+00 f t 42000.00 1 42000.00 6325 82 \N 6079 +43664 2025-08-27 23:23:56.588618+00 2025-08-27 23:23:56.588627+00 f t 22500.00 1 22500.00 6325 86 \N 6079 +44294 2025-08-29 12:11:55.906432+00 2025-08-29 12:11:55.906443+00 f t 68000.00 1 68000.00 6415 106 \N 6156 +44303 2025-08-29 12:12:55.436207+00 2025-08-29 12:12:55.436221+00 f t 42000.00 1 42000.00 6416 82 \N 6157 +43688 2025-08-28 00:04:15.30549+00 2025-08-28 00:04:15.3055+00 f t 68000.00 1 68000.00 6329 106 \N 6085 +44304 2025-08-29 12:12:55.443747+00 2025-08-29 12:12:55.443759+00 f t 69000.00 1 69000.00 6416 142 \N 6157 +44350 2025-08-29 13:35:26.604862+00 2025-08-29 13:35:26.604876+00 f t 76000.00 1 76000.00 6425 97 \N 6165 +44351 2025-08-29 13:35:26.612007+00 2025-08-29 13:35:26.612019+00 f t 42000.00 1 42000.00 6425 82 \N 6165 +44352 2025-08-29 13:35:26.618306+00 2025-08-29 13:35:26.618319+00 f t 7500.00 1 7500.00 6425 85 \N 6165 +44353 2025-08-29 13:35:26.625217+00 2025-08-29 13:35:26.625226+00 f t 22500.00 1 22500.00 6425 86 \N 6165 +44496 2025-08-29 15:47:42.127634+00 2025-08-29 15:47:42.127645+00 f t 42000.00 1 42000.00 6441 82 \N 6176 +44497 2025-08-29 15:47:42.133541+00 2025-08-29 15:47:42.13355+00 f t 69000.00 1 69000.00 6441 142 \N 6176 +44603 2025-08-29 22:17:31.101582+00 2025-08-29 22:17:31.101594+00 f t 42000.00 1 42000.00 6459 82 \N 6196 +44616 2025-08-29 23:15:11.315923+00 2025-08-29 23:15:11.315935+00 f t 50000.00 1 50000.00 6465 84 \N 6202 +44679 2025-08-30 13:51:03.810678+00 2025-08-30 13:51:03.810691+00 f t 42000.00 1 42000.00 6488 82 \N 6220 +44680 2025-08-30 13:51:03.81808+00 2025-08-30 13:51:03.818093+00 f t 33000.00 1 33000.00 6488 133 \N 6220 +44681 2025-08-30 13:51:03.824514+00 2025-08-30 13:51:03.824525+00 f t 7500.00 1 7500.00 6488 85 \N 6220 +44682 2025-08-30 13:51:03.831001+00 2025-08-30 13:51:03.831013+00 f t 13000.00 1 13000.00 6488 89 \N 6220 +43797 2025-08-28 00:09:49.93025+00 2025-08-28 00:09:49.930262+00 f t 42000.00 1 42000.00 6332 82 \N 6087 +43798 2025-08-28 00:09:49.936383+00 2025-08-28 00:09:49.936393+00 f t 7500.00 1 7500.00 6332 85 \N 6087 +43799 2025-08-28 00:09:49.941026+00 2025-08-28 00:09:49.941035+00 f t 22500.00 1 22500.00 6332 163 \N 6087 +43800 2025-08-28 00:09:49.945852+00 2025-08-28 00:09:49.94586+00 f t 42000.00 1 42000.00 6332 82 \N 6088 +43801 2025-08-28 00:09:49.950609+00 2025-08-28 00:09:49.950621+00 f t 7500.00 1 7500.00 6332 85 \N 6088 +43802 2025-08-28 00:09:49.955418+00 2025-08-28 00:09:49.955427+00 f t 22500.00 1 22500.00 6332 163 \N 6088 +43803 2025-08-28 00:09:49.960364+00 2025-08-28 00:09:49.960373+00 f t 42000.00 1 42000.00 6332 82 \N 6089 +43804 2025-08-28 00:09:49.964921+00 2025-08-28 00:09:49.964929+00 f t 7500.00 1 7500.00 6332 85 \N 6089 +43805 2025-08-28 00:09:49.969572+00 2025-08-28 00:09:49.96958+00 f t 22500.00 1 22500.00 6332 163 \N 6089 +43807 2025-08-28 00:56:43.885213+00 2025-08-28 00:56:43.885223+00 f t 50000.00 1 50000.00 6333 84 \N 6090 +43813 2025-08-28 01:13:33.719571+00 2025-08-28 01:13:33.719581+00 f t 42000.00 1 42000.00 6335 82 \N 6092 +43815 2025-08-28 01:43:20.41817+00 2025-08-28 01:43:20.41818+00 f t 42000.00 1 42000.00 6336 82 \N 6093 +44775 2025-08-30 14:46:24.02964+00 2025-08-30 14:46:24.02965+00 f t 27500.00 1 27500.00 6496 83 \N 6227 +43840 2025-08-28 02:33:53.269038+00 2025-08-28 02:33:53.269049+00 f t 42000.00 1 42000.00 6339 82 \N 6095 +44863 2025-08-30 14:51:40.544401+00 2025-08-30 14:51:40.544411+00 f t 20500.00 1 20500.00 6494 109 \N 6225 +44864 2025-08-30 14:51:40.549228+00 2025-08-30 14:51:40.549236+00 f t 42000.00 1 42000.00 6494 82 \N 6225 +44865 2025-08-30 14:51:40.553323+00 2025-08-30 14:51:40.553331+00 f t 29000.00 1 29000.00 6494 123 \N 6225 +44866 2025-08-30 14:51:40.557285+00 2025-08-30 14:51:40.557293+00 f t 7700.00 1 7700.00 6494 93 \N 6225 +44867 2025-08-30 14:51:40.562254+00 2025-08-30 14:51:40.562263+00 f t 52500.00 1 52500.00 6494 113 \N 6225 +44868 2025-08-30 14:51:40.567098+00 2025-08-30 14:51:40.567106+00 f t 85000.00 1 85000.00 6494 165 \N 6225 +44869 2025-08-30 14:51:40.571429+00 2025-08-30 14:51:40.571437+00 f t 12000.00 1 12000.00 6494 146 \N 6225 +44870 2025-08-30 14:51:40.575476+00 2025-08-30 14:51:40.575485+00 f t 7500.00 1 7500.00 6494 85 \N 6225 +44871 2025-08-30 14:51:40.579869+00 2025-08-30 14:51:40.579877+00 f t 13000.00 1 13000.00 6494 89 \N 6225 +44905 2025-08-30 15:48:49.17247+00 2025-08-30 15:48:49.172479+00 f t 27500.00 1 27500.00 6502 83 \N 6232 +44920 2025-08-30 16:08:37.746704+00 2025-08-30 16:08:37.746713+00 f t 20500.00 1 20500.00 6505 109 \N 6235 +44921 2025-08-30 16:08:37.751732+00 2025-08-30 16:08:37.75174+00 f t 42000.00 1 42000.00 6505 82 \N 6235 +44922 2025-08-30 16:08:37.755655+00 2025-08-30 16:08:37.755663+00 f t 7700.00 1 7700.00 6505 93 \N 6235 +43938 2025-08-28 03:11:19.348433+00 2025-08-28 03:11:19.34845+00 f t 27500.00 1 27500.00 6343 83 \N 6099 +44204 2025-08-29 01:38:39.201057+00 2025-08-29 01:38:39.201066+00 f t 42000.00 1 42000.00 6399 82 \N 6143 +44205 2025-08-29 01:38:39.206601+00 2025-08-29 01:38:39.206613+00 f t 87500.00 1 87500.00 6399 141 \N 6143 +43941 2025-08-28 03:29:07.633491+00 2025-08-28 03:29:07.633503+00 f t 42000.00 1 42000.00 6344 82 \N 6100 +43942 2025-08-28 03:29:07.639645+00 2025-08-28 03:29:07.639653+00 f t 7500.00 1 7500.00 6344 85 \N 6100 +44225 2025-08-29 10:03:53.753595+00 2025-08-29 10:03:53.753606+00 f t 42000.00 1 42000.00 6407 82 \N 6149 +43953 2025-08-28 08:27:01.817662+00 2025-08-28 08:27:01.817674+00 f t 42000.00 1 42000.00 6347 82 \N 6103 +45602 2025-09-01 07:31:32.159992+00 2025-09-01 07:31:32.160004+00 f t 72500.00 1 72500.00 6619 104 \N 6341 +45603 2025-09-01 07:31:32.166263+00 2025-09-01 07:31:32.166275+00 f t 46000.00 1 46000.00 6619 82 \N 6341 +45604 2025-09-01 07:31:32.17163+00 2025-09-01 07:31:32.171642+00 f t 69000.00 1 69000.00 6619 142 \N 6341 +45608 2025-09-01 10:19:18.592849+00 2025-09-01 10:19:18.592861+00 f t 46000.00 1 46000.00 6622 82 \N 6343 +44288 2025-08-29 11:37:40.406021+00 2025-08-29 11:37:40.406031+00 f t 49000.00 1 49000.00 6414 98 \N 6155 +45623 2025-09-01 12:02:05.985308+00 2025-09-01 12:02:05.985321+00 f t 46000.00 1 46000.00 6627 82 \N 6347 +45624 2025-09-01 12:02:05.993351+00 2025-09-01 12:02:05.993362+00 f t 24000.00 1 24000.00 6627 86 \N 6347 +44310 2025-08-29 12:26:05.879835+00 2025-08-29 12:26:05.879851+00 f t 27500.00 1 27500.00 6418 83 \N 6159 +43980 2025-08-28 11:34:36.486262+00 2025-08-28 11:34:36.486271+00 f t 42000.00 1 42000.00 6350 82 \N 6105 +43981 2025-08-28 11:34:36.491376+00 2025-08-28 11:34:36.491385+00 f t 7500.00 1 7500.00 6350 85 \N 6105 +43982 2025-08-28 11:34:36.496119+00 2025-08-28 11:34:36.496128+00 f t 42000.00 1 42000.00 6350 82 \N 6106 +43983 2025-08-28 11:34:36.500155+00 2025-08-28 11:34:36.500163+00 f t 7500.00 1 7500.00 6350 85 \N 6106 +43986 2025-08-28 11:35:19.725931+00 2025-08-28 11:35:19.72594+00 f t 42000.00 1 42000.00 6351 82 \N 6107 +43987 2025-08-28 11:35:19.730863+00 2025-08-28 11:35:19.730871+00 f t 7500.00 1 7500.00 6351 85 \N 6107 +43989 2025-08-28 12:20:11.920745+00 2025-08-28 12:20:11.920761+00 f t 42000.00 1 42000.00 6354 82 \N 6109 +43993 2025-08-28 12:59:52.624235+00 2025-08-28 12:59:52.624244+00 f t 42000.00 1 42000.00 6357 82 \N 6113 +44412 2025-08-29 15:10:21.623933+00 2025-08-29 15:10:21.623942+00 f t 42000.00 1 42000.00 6431 82 \N 6169 +43996 2025-08-28 13:26:42.93711+00 2025-08-28 13:26:42.937121+00 f t 42000.00 1 42000.00 6342 82 \N 1095 +44413 2025-08-29 15:10:21.629693+00 2025-08-29 15:10:21.629702+00 f t 7700.00 1 7700.00 6431 95 \N 6169 +43999 2025-08-28 14:03:09.79561+00 2025-08-28 14:03:09.79562+00 f t 50000.00 1 50000.00 6360 84 \N 6115 +44004 2025-08-28 15:14:55.859365+00 2025-08-28 15:14:55.859378+00 f t 42000.00 1 42000.00 6362 82 \N 6117 +44005 2025-08-28 15:14:55.865464+00 2025-08-28 15:14:55.865476+00 f t 22500.00 1 22500.00 6362 86 \N 6117 +44488 2025-08-29 15:45:49.175424+00 2025-08-29 15:45:49.175435+00 f t 42000.00 1 42000.00 6439 82 \N 6174 +44489 2025-08-29 15:45:49.180774+00 2025-08-29 15:45:49.180782+00 f t 87500.00 1 87500.00 6439 141 \N 6174 +44026 2025-08-28 15:37:18.661321+00 2025-08-28 15:37:18.661333+00 f t 20500.00 1 20500.00 6364 109 \N 6119 +44027 2025-08-28 15:37:18.666204+00 2025-08-28 15:37:18.666215+00 f t 42000.00 1 42000.00 6364 82 \N 6119 +44028 2025-08-28 15:37:18.670362+00 2025-08-28 15:37:18.67037+00 f t 7700.00 1 7700.00 6364 93 \N 6119 +44029 2025-08-28 15:37:18.674213+00 2025-08-28 15:37:18.674221+00 f t 12000.00 1 12000.00 6364 146 \N 6119 +44537 2025-08-29 16:16:26.877416+00 2025-08-29 16:16:26.877429+00 f t 42000.00 1 42000.00 6444 82 \N 6180 +44548 2025-08-29 18:06:35.088302+00 2025-08-29 18:06:35.088313+00 f t 34000.00 1 34000.00 6447 110 \N 6184 +44549 2025-08-29 18:06:35.093736+00 2025-08-29 18:06:35.093745+00 f t 42000.00 1 42000.00 6447 82 \N 6184 +44550 2025-08-29 18:06:35.098368+00 2025-08-29 18:06:35.098377+00 f t 7700.00 1 7700.00 6447 93 \N 6184 +44551 2025-08-29 18:06:35.104103+00 2025-08-29 18:06:35.104112+00 f t 12000.00 1 12000.00 6447 146 \N 6184 +44558 2025-08-29 18:09:28.871762+00 2025-08-29 18:09:28.871773+00 f t 42000.00 1 42000.00 6448 82 \N 6185 +44559 2025-08-29 18:09:28.878154+00 2025-08-29 18:09:28.878167+00 f t 22500.00 1 22500.00 6448 163 \N 6185 +44579 2025-08-29 19:55:58.25325+00 2025-08-29 19:55:58.253262+00 f t 42000.00 1 42000.00 6453 82 \N 6194 +44580 2025-08-29 19:55:58.258799+00 2025-08-29 19:55:58.258809+00 f t 7500.00 1 7500.00 6453 85 \N 6194 +44581 2025-08-29 19:55:58.263474+00 2025-08-29 19:55:58.263484+00 f t 22500.00 1 22500.00 6453 163 \N 6194 +44599 2025-08-29 21:56:33.403108+00 2025-08-29 21:56:33.403121+00 f t 42000.00 1 42000.00 6458 82 \N 6195 +44600 2025-08-29 21:56:33.408925+00 2025-08-29 21:56:33.408937+00 f t 7500.00 1 7500.00 6458 85 \N 6195 +44601 2025-08-29 21:56:33.41433+00 2025-08-29 21:56:33.414342+00 f t 22500.00 1 22500.00 6458 88 \N 6195 +44610 2025-08-29 22:34:08.815503+00 2025-08-29 22:34:08.815517+00 f t 42000.00 1 42000.00 6460 82 \N 6198 +44611 2025-08-29 22:34:08.825281+00 2025-08-29 22:34:08.82529+00 f t 7500.00 1 7500.00 6460 85 \N 6198 +44620 2025-08-29 23:33:58.437009+00 2025-08-29 23:33:58.437018+00 f t 95000.00 1 95000.00 6466 103 \N 6203 +44632 2025-08-30 01:56:12.808156+00 2025-08-30 01:56:12.80817+00 f t 50000.00 1 50000.00 6474 84 \N 6209 +44641 2025-08-30 09:20:37.199948+00 2025-08-30 09:20:37.199956+00 f t 50000.00 1 50000.00 6480 84 \N 6214 +44668 2025-08-30 12:08:56.570318+00 2025-08-30 12:08:56.570327+00 f t 42000.00 1 42000.00 6485 82 \N 6219 +44698 2025-08-30 14:24:22.315087+00 2025-08-30 14:24:22.315097+00 f t 50000.00 1 50000.00 6492 84 \N 6223 +44878 2025-08-30 15:18:54.43639+00 2025-08-30 15:18:54.436399+00 f t 42000.00 1 42000.00 6499 82 \N 6229 +44879 2025-08-30 15:18:54.441247+00 2025-08-30 15:18:54.441256+00 f t 22500.00 1 22500.00 6499 86 \N 6229 +44902 2025-08-30 15:47:37.908108+00 2025-08-30 15:47:37.908118+00 f t 42000.00 1 42000.00 6501 82 \N 6231 +44903 2025-08-30 15:47:37.913048+00 2025-08-30 15:47:37.913057+00 f t 87500.00 1 87500.00 6501 141 \N 6231 +44909 2025-08-30 15:55:25.958797+00 2025-08-30 15:55:25.958809+00 f t 68000.00 1 68000.00 6503 106 \N 6233 +44915 2025-08-30 16:03:53.753634+00 2025-08-30 16:03:53.753648+00 f t 50000.00 1 50000.00 6504 84 \N 6234 +44923 2025-08-30 16:08:37.759651+00 2025-08-30 16:08:37.759659+00 f t 12000.00 1 12000.00 6505 146 \N 6235 +44925 2025-08-30 16:23:41.942817+00 2025-08-30 16:23:41.942826+00 f t 68000.00 1 68000.00 6506 106 \N 6236 +44932 2025-08-30 16:24:49.645181+00 2025-08-30 16:24:49.645191+00 f t 42000.00 1 42000.00 6507 82 \N 6237 +44933 2025-08-30 16:24:49.651212+00 2025-08-30 16:24:49.651221+00 f t 22500.00 1 22500.00 6507 163 \N 6237 +44992 2025-08-30 16:47:39.045995+00 2025-08-30 16:47:39.046003+00 f t 42000.00 1 42000.00 6514 82 \N 6248 +44994 2025-08-30 16:49:12.914582+00 2025-08-30 16:49:12.914592+00 f t 50000.00 1 50000.00 6516 84 \N 6249 +45058 2025-08-30 18:57:15.868653+00 2025-08-30 18:57:15.868663+00 f t 42000.00 1 42000.00 6525 82 \N 6255 +45060 2025-08-30 19:22:32.235448+00 2025-08-30 19:22:32.235458+00 f t 68000.00 1 68000.00 6526 106 \N 6256 +48389 2025-09-06 00:35:40.275926+00 2025-09-06 00:35:40.275934+00 f t 8000.00 1 8000.00 6996 85 \N 6654 +45473 2025-08-31 21:34:25.060265+00 2025-08-31 21:34:25.060274+00 f t 50000.00 1 50000.00 6599 84 \N 6324 +45068 2025-08-30 19:46:30.151762+00 2025-08-30 19:46:30.151772+00 f t 42000.00 1 42000.00 6528 82 \N 6258 +45069 2025-08-30 19:46:30.157934+00 2025-08-30 19:46:30.157942+00 f t 7500.00 1 7500.00 6528 85 \N 6258 +45070 2025-08-30 19:46:30.16262+00 2025-08-30 19:46:30.16263+00 f t 22500.00 1 22500.00 6528 86 \N 6258 +45073 2025-08-30 19:47:11.216863+00 2025-08-30 19:47:11.216871+00 f t 42000.00 1 42000.00 6529 82 \N 6260 +45074 2025-08-30 19:47:11.22142+00 2025-08-30 19:47:11.221431+00 f t 22500.00 1 22500.00 6529 86 \N 6260 +45078 2025-08-30 20:21:17.762196+00 2025-08-30 20:21:17.762662+00 f t 50000.00 1 50000.00 6531 84 \N 6262 +45527 2025-09-01 03:22:05.30594+00 2025-09-01 03:22:05.305951+00 f t 46000.00 1 46000.00 6613 82 \N 6335 +45528 2025-09-01 03:22:05.312721+00 2025-09-01 03:22:05.31273+00 f t 24000.00 1 24000.00 6613 163 \N 6335 +45529 2025-09-01 03:22:05.318542+00 2025-09-01 03:22:05.318551+00 f t 46000.00 1 46000.00 6613 82 \N 6336 +45530 2025-09-01 03:22:05.323738+00 2025-09-01 03:22:05.323748+00 f t 24000.00 1 24000.00 6613 163 \N 6336 +45088 2025-08-30 20:33:44.218995+00 2025-08-30 20:33:44.219003+00 f t 50000.00 1 50000.00 6532 84 \N 6263 +45089 2025-08-30 20:33:44.224238+00 2025-08-30 20:33:44.224247+00 f t 68000.00 1 68000.00 6532 106 \N 6263 +45093 2025-08-30 21:14:15.492899+00 2025-08-30 21:14:15.492908+00 f t 42000.00 1 42000.00 6533 82 \N 6264 +45095 2025-08-30 22:26:50.795561+00 2025-08-30 22:26:50.795575+00 f t 42000.00 1 42000.00 6538 82 \N 6266 +45098 2025-08-30 22:27:54.752106+00 2025-08-30 22:27:54.752114+00 f t 42000.00 1 42000.00 6539 82 \N 6267 +45099 2025-08-30 22:27:54.756651+00 2025-08-30 22:27:54.756659+00 f t 22500.00 1 22500.00 6539 86 \N 6267 +48523 2025-09-06 15:58:37.000058+00 2025-09-06 15:58:37.000068+00 f t 46000.00 1 46000.00 7023 82 \N 6673 +45112 2025-08-30 23:34:30.937568+00 2025-08-30 23:34:30.937579+00 f t 50000.00 1 50000.00 6541 84 \N 6269 +45639 2025-09-01 13:20:45.7051+00 2025-09-01 13:20:45.705114+00 f t 46000.00 1 46000.00 6634 82 \N 6353 +45120 2025-08-30 23:46:23.585426+00 2025-08-30 23:46:23.585436+00 f t 42000.00 1 42000.00 6542 82 \N 6270 +45123 2025-08-31 00:49:34.168342+00 2025-08-31 00:49:34.168352+00 f t 42000.00 1 42000.00 6544 82 \N 6271 +45124 2025-08-31 00:49:34.173821+00 2025-08-31 00:49:34.173834+00 f t 7500.00 1 7500.00 6544 85 \N 6271 +45651 2025-09-01 13:55:50.768613+00 2025-09-01 13:55:50.768626+00 f t 46000.00 1 46000.00 6636 82 \N 6355 +45129 2025-08-31 01:24:41.593089+00 2025-08-31 01:24:41.593098+00 f t 42000.00 1 42000.00 6546 82 \N 6273 +45692 2025-09-01 15:26:32.556704+00 2025-09-01 15:26:32.556713+00 f t 46000.00 1 46000.00 6643 82 \N 6360 +45693 2025-09-01 15:26:32.561485+00 2025-09-01 15:26:32.561494+00 f t 24000.00 1 24000.00 6643 86 \N 6360 +45732 2025-09-01 16:20:26.443256+00 2025-09-01 16:20:26.443264+00 f t 46000.00 1 46000.00 6649 82 \N 6362 +45733 2025-09-01 16:20:26.448264+00 2025-09-01 16:20:26.448272+00 f t 24000.00 1 24000.00 6649 86 \N 6362 +45779 2025-09-01 17:39:28.828958+00 2025-09-01 17:39:28.828969+00 f t 32500.00 1 32500.00 6653 112 \N 6366 +45780 2025-09-01 17:39:28.834551+00 2025-09-01 17:39:28.834563+00 f t 95000.00 1 95000.00 6653 103 \N 6366 +45781 2025-09-01 17:39:28.839079+00 2025-09-01 17:39:28.839088+00 f t 46000.00 1 46000.00 6653 82 \N 6366 +45782 2025-09-01 17:39:28.843187+00 2025-09-01 17:39:28.843196+00 f t 7700.00 1 7700.00 6653 93 \N 6366 +45783 2025-09-01 17:39:28.847245+00 2025-09-01 17:39:28.847254+00 f t 12000.00 1 12000.00 6653 146 \N 6366 +45792 2025-09-01 18:12:20.139169+00 2025-09-01 18:12:20.139183+00 f t 34000.00 1 34000.00 6655 110 \N 6367 +45793 2025-09-01 18:12:20.145362+00 2025-09-01 18:12:20.145372+00 f t 46000.00 1 46000.00 6655 82 \N 6367 +45794 2025-09-01 18:12:20.150337+00 2025-09-01 18:12:20.150351+00 f t 7700.00 1 7700.00 6655 93 \N 6367 +45795 2025-09-01 18:12:20.15631+00 2025-09-01 18:12:20.156323+00 f t 12000.00 1 12000.00 6655 146 \N 6367 +45196 2025-08-31 02:29:19.393994+00 2025-08-31 02:29:19.394002+00 f t 42000.00 1 42000.00 6547 82 \N 6274 +45197 2025-08-31 02:29:19.398088+00 2025-08-31 02:29:19.398096+00 f t 7700.00 1 7700.00 6547 91 \N 6274 +45198 2025-08-31 02:29:19.401454+00 2025-08-31 02:29:19.401461+00 f t 22500.00 1 22500.00 6547 88 \N 6274 +45200 2025-08-31 03:46:10.498107+00 2025-08-31 03:46:10.498116+00 f t 50000.00 1 50000.00 6550 84 \N 6276 +45205 2025-08-31 04:38:17.92145+00 2025-08-31 04:38:17.921458+00 f t 34000.00 1 34000.00 6551 110 \N 6277 +45206 2025-08-31 04:38:17.925743+00 2025-08-31 04:38:17.92575+00 f t 42000.00 1 42000.00 6551 82 \N 6277 +45207 2025-08-31 04:38:17.929013+00 2025-08-31 04:38:17.92902+00 f t 7700.00 1 7700.00 6551 93 \N 6277 +45208 2025-08-31 04:38:17.932745+00 2025-08-31 04:38:17.932751+00 f t 12000.00 1 12000.00 6551 146 \N 6277 +45210 2025-08-31 08:35:17.818166+00 2025-08-31 08:35:17.818182+00 f t 42000.00 1 42000.00 6552 82 \N 6278 +45213 2025-08-31 11:27:23.383388+00 2025-08-31 11:27:23.383399+00 f t 50000.00 1 50000.00 6554 84 \N 6280 +45222 2025-08-31 11:48:33.642462+00 2025-08-31 11:48:33.642475+00 f t 50000.00 1 50000.00 6555 84 \N 6281 +45231 2025-08-31 11:54:15.029883+00 2025-08-31 11:54:15.029893+00 f t 50000.00 1 50000.00 6556 84 \N 6282 +45236 2025-08-31 12:19:35.850528+00 2025-08-31 12:19:35.850538+00 f t 42000.00 1 42000.00 6557 82 \N 6283 +45237 2025-08-31 12:19:35.855884+00 2025-08-31 12:19:35.855894+00 f t 22500.00 1 22500.00 6557 86 \N 6283 +45241 2025-08-31 12:23:53.886586+00 2025-08-31 12:23:53.886599+00 f t 27500.00 1 27500.00 6558 83 \N 6284 +45266 2025-08-31 12:32:55.842408+00 2025-08-31 12:32:55.842418+00 f t 15400.00 1 15400.00 6560 92 \N 6286 +45267 2025-08-31 12:32:55.847623+00 2025-08-31 12:32:55.847631+00 f t 42000.00 1 42000.00 6560 82 \N 6286 +45274 2025-08-31 13:18:57.328624+00 2025-08-31 13:18:57.328634+00 f t 50000.00 1 50000.00 6561 84 \N 6287 +45280 2025-08-31 13:19:56.601588+00 2025-08-31 13:19:56.601603+00 f t 50000.00 1 50000.00 6562 84 \N 6288 +45284 2025-08-31 13:32:09.816451+00 2025-08-31 13:32:09.816463+00 f t 50000.00 1 50000.00 6563 84 \N 6289 +45286 2025-08-31 13:42:02.363847+00 2025-08-31 13:42:02.363857+00 f t 27500.00 1 27500.00 6564 83 \N 6290 +45297 2025-08-31 13:53:04.036794+00 2025-08-31 13:53:04.036808+00 f t 42000.00 1 42000.00 6566 82 \N 6291 +45298 2025-08-31 13:53:04.042428+00 2025-08-31 13:53:04.042439+00 f t 42000.00 1 42000.00 6566 82 \N 6292 +45300 2025-08-31 14:47:21.345469+00 2025-08-31 14:47:21.34548+00 f t 42000.00 1 42000.00 6567 82 \N 6293 +45326 2025-08-31 15:33:01.574766+00 2025-08-31 15:33:01.574778+00 f t 50000.00 1 50000.00 6571 84 \N 6294 +45338 2025-08-31 15:37:05.96183+00 2025-08-31 15:37:05.961845+00 f t 68000.00 1 68000.00 6565 106 \N 4835 +45437 2025-08-31 20:26:11.086249+00 2025-08-31 20:26:11.086259+00 f t 75000.00 1 75000.00 6590 108 \N 6317 +45459 2025-08-31 21:14:02.038281+00 2025-08-31 21:14:02.038294+00 f t 50000.00 1 50000.00 6597 84 \N 6322 +45479 2025-08-31 21:58:00.479549+00 2025-08-31 21:58:00.47956+00 f t 50000.00 1 50000.00 6601 84 \N 6325 +45358 2025-08-31 16:09:59.197851+00 2025-08-31 16:09:59.197864+00 f t 68000.00 1 68000.00 6577 106 \N 6299 +45489 2025-08-31 22:57:22.754505+00 2025-08-31 22:57:22.754517+00 f t 46000.00 1 46000.00 6604 82 \N 6328 +45490 2025-08-31 22:57:22.759684+00 2025-08-31 22:57:22.759693+00 f t 8000.00 1 8000.00 6604 85 \N 6328 +45361 2025-08-31 16:39:16.773563+00 2025-08-31 16:39:16.773573+00 f t 42000.00 1 42000.00 6578 82 \N 6300 +45362 2025-08-31 16:39:16.778918+00 2025-08-31 16:39:16.778927+00 f t 22500.00 1 22500.00 6578 86 \N 6300 +45491 2025-08-31 22:57:22.763844+00 2025-08-31 22:57:22.763852+00 f t 23000.00 1 23000.00 6604 86 \N 6328 +46948 2025-09-03 21:49:40.793398+00 2025-09-03 21:49:40.793407+00 f t 46000.00 1 46000.00 6847 82 \N 6531 +45365 2025-08-31 16:41:26.02499+00 2025-08-31 16:41:26.025+00 f t 42000.00 1 42000.00 6579 82 \N 6301 +45366 2025-08-31 16:41:26.030375+00 2025-08-31 16:41:26.030384+00 f t 22500.00 1 22500.00 6579 86 \N 6301 +45383 2025-08-31 17:44:53.527669+00 2025-08-31 17:44:53.527678+00 f t 42000.00 1 42000.00 6581 82 \N 6303 +45384 2025-08-31 17:44:53.532217+00 2025-08-31 17:44:53.53223+00 f t 22500.00 1 22500.00 6581 163 \N 6303 +45388 2025-08-31 18:18:45.673597+00 2025-08-31 18:18:45.67361+00 f t 42000.00 1 42000.00 6582 82 \N 6305 +45392 2025-08-31 19:00:28.565861+00 2025-08-31 19:00:28.565872+00 f t 50000.00 1 50000.00 6584 84 \N 6307 +45619 2025-09-01 10:26:05.408931+00 2025-09-01 10:26:05.408946+00 f t 46000.00 1 46000.00 6623 82 \N 6344 +45620 2025-09-01 10:26:05.415915+00 2025-09-01 10:26:05.415928+00 f t 7700.00 1 7700.00 6623 94 \N 6344 +45626 2025-09-01 12:05:31.325781+00 2025-09-01 12:05:31.325793+00 f t 30000.00 1 30000.00 6629 83 \N 6349 +45636 2025-09-01 13:09:34.753559+00 2025-09-01 13:09:34.753571+00 f t 46000.00 1 46000.00 6633 82 \N 6352 +45637 2025-09-01 13:09:34.759477+00 2025-09-01 13:09:34.759486+00 f t 75000.00 1 75000.00 6633 143 \N 6352 +45655 2025-09-01 14:08:17.445403+00 2025-09-01 14:08:17.445413+00 f t 95000.00 1 95000.00 6637 103 \N 6356 +45665 2025-09-01 15:21:57.218219+00 2025-09-01 15:21:57.218227+00 f t 68000.00 1 68000.00 6642 106 \N 5835 +47113 2025-09-03 22:19:12.757559+00 2025-09-03 22:19:12.757573+00 f t 31500.00 1 31500.00 6851 111 \N 6539 +47114 2025-09-03 22:19:12.766745+00 2025-09-03 22:19:12.766756+00 f t 46000.00 1 46000.00 6851 82 \N 6539 +47115 2025-09-03 22:19:12.772634+00 2025-09-03 22:19:12.772643+00 f t 7700.00 1 7700.00 6851 93 \N 6539 +47116 2025-09-03 22:19:12.777234+00 2025-09-03 22:19:12.777242+00 f t 13200.00 1 13200.00 6851 146 \N 6539 +47137 2025-09-03 22:49:05.169774+00 2025-09-03 22:49:05.169786+00 f t 46000.00 1 46000.00 6853 82 \N 6541 +47138 2025-09-03 22:49:05.183373+00 2025-09-03 22:49:05.183385+00 f t 30000.00 1 30000.00 6853 83 \N 6541 +45429 2025-08-31 20:14:22.846076+00 2025-08-31 20:14:22.846089+00 f t 42000.00 1 42000.00 6588 82 \N 6312 +45430 2025-08-31 20:14:22.852391+00 2025-08-31 20:14:22.8524+00 f t 7500.00 1 7500.00 6588 85 \N 6312 +45431 2025-08-31 20:14:22.856931+00 2025-08-31 20:14:22.856943+00 f t 22500.00 1 22500.00 6588 87 \N 6312 +45727 2025-09-01 15:57:04.811066+00 2025-09-01 15:57:04.811076+00 f t 46000.00 1 46000.00 6648 82 \N 1115 +45728 2025-09-01 15:57:04.815955+00 2025-09-01 15:57:04.815964+00 f t 8000.00 1 8000.00 6648 85 \N 1115 +45729 2025-09-01 15:57:04.819998+00 2025-09-01 15:57:04.820006+00 f t 24000.00 1 24000.00 6648 163 \N 1115 +45743 2025-09-01 17:35:27.594736+00 2025-09-01 17:35:27.59475+00 f t 34000.00 1 34000.00 6651 110 \N 6364 +45744 2025-09-01 17:35:27.600472+00 2025-09-01 17:35:27.600483+00 f t 46000.00 1 46000.00 6651 82 \N 6364 +45745 2025-09-01 17:35:27.604712+00 2025-09-01 17:35:27.604721+00 f t 7700.00 1 7700.00 6651 93 \N 6364 +45746 2025-09-01 17:35:27.609658+00 2025-09-01 17:35:27.609669+00 f t 12000.00 1 12000.00 6651 146 \N 6364 +45767 2025-09-01 17:36:43.324115+00 2025-09-01 17:36:43.324128+00 f t 34000.00 1 34000.00 6652 110 \N 6365 +45768 2025-09-01 17:36:43.330535+00 2025-09-01 17:36:43.330547+00 f t 46000.00 1 46000.00 6652 82 \N 6365 +45769 2025-09-01 17:36:43.335926+00 2025-09-01 17:36:43.335939+00 f t 7700.00 1 7700.00 6652 93 \N 6365 +45770 2025-09-01 17:36:43.341462+00 2025-09-01 17:36:43.341473+00 f t 12000.00 1 12000.00 6652 146 \N 6365 +45799 2025-09-01 18:37:44.974145+00 2025-09-01 18:37:44.974155+00 f t 46000.00 1 46000.00 6658 82 \N 6372 +47217 2025-09-04 02:01:13.520657+00 2025-09-04 02:01:13.520666+00 f t 46000.00 1 46000.00 6864 82 \N 6550 +47218 2025-09-04 02:01:13.525642+00 2025-09-04 02:01:13.525652+00 f t 8000.00 1 8000.00 6864 85 \N 6550 +47219 2025-09-04 02:01:13.529635+00 2025-09-04 02:01:13.529643+00 f t 24000.00 1 24000.00 6864 86 \N 6550 +47220 2025-09-04 02:01:13.53481+00 2025-09-04 02:01:13.534819+00 f t 24000.00 1 24000.00 6864 87 \N 6550 +47227 2025-09-04 02:06:34.692987+00 2025-09-04 02:06:34.692997+00 f t 46000.00 1 46000.00 6866 82 \N 6552 +47228 2025-09-04 02:06:34.699969+00 2025-09-04 02:06:34.699978+00 f t 8000.00 1 8000.00 6866 85 \N 6552 +45846 2025-09-01 19:35:29.256048+00 2025-09-01 19:35:29.256057+00 f t 46000.00 1 46000.00 6663 82 \N 6376 +45896 2025-09-01 19:58:36.973642+00 2025-09-01 19:58:36.973652+00 f t 20500.00 1 20500.00 6665 109 \N 6379 +45897 2025-09-01 19:58:36.979658+00 2025-09-01 19:58:36.979668+00 f t 46000.00 1 46000.00 6665 82 \N 6379 +45898 2025-09-01 19:58:36.984622+00 2025-09-01 19:58:36.984633+00 f t 7700.00 1 7700.00 6665 93 \N 6379 +45899 2025-09-01 19:58:36.991737+00 2025-09-01 19:58:36.991751+00 f t 12000.00 1 12000.00 6665 146 \N 6379 +45927 2025-09-01 20:10:16.485738+00 2025-09-01 20:10:16.485754+00 f t 46000.00 1 46000.00 6668 82 \N 6382 +45928 2025-09-01 20:10:16.492589+00 2025-09-01 20:10:16.492604+00 f t 8000.00 1 8000.00 6668 85 \N 6382 +45929 2025-09-01 20:10:16.50069+00 2025-09-01 20:10:16.500705+00 f t 24000.00 1 24000.00 6668 86 \N 6382 +45930 2025-09-01 20:10:16.50842+00 2025-09-01 20:10:16.508435+00 f t 24000.00 1 24000.00 6668 87 \N 6382 +45936 2025-09-01 20:47:19.157476+00 2025-09-01 20:47:19.157486+00 f t 55000.00 1 55000.00 6670 84 \N 6384 +45978 2025-09-01 21:48:53.836763+00 2025-09-01 21:48:53.836774+00 f t 46000.00 1 46000.00 6674 82 \N 6388 +45979 2025-09-01 21:48:53.844224+00 2025-09-01 21:48:53.844238+00 f t 8000.00 1 8000.00 6674 85 \N 6388 +45980 2025-09-01 21:48:53.85095+00 2025-09-01 21:48:53.85096+00 f t 24000.00 1 24000.00 6674 86 \N 6388 +46058 2025-09-01 22:23:34.430679+00 2025-09-01 22:23:34.43069+00 f t 46000.00 1 46000.00 6675 82 \N 6390 +46059 2025-09-01 22:23:34.437013+00 2025-09-01 22:23:34.437026+00 f t 8000.00 1 8000.00 6675 85 \N 6390 +46060 2025-09-01 22:23:34.442246+00 2025-09-01 22:23:34.442256+00 f t 24000.00 1 24000.00 6675 163 \N 6390 +46062 2025-09-01 22:29:23.858834+00 2025-09-01 22:29:23.858848+00 f t 46000.00 1 46000.00 6676 82 \N 6391 +46065 2025-09-01 22:38:53.165751+00 2025-09-01 22:38:53.165764+00 f t 46000.00 1 46000.00 6677 82 \N 6392 +46066 2025-09-01 22:38:53.171809+00 2025-09-01 22:38:53.171818+00 f t 69000.00 1 69000.00 6677 142 \N 6392 +83280 2025-11-13 23:40:22.385856+00 2025-11-13 23:40:22.385868+00 f t 0.00 1 0.00 12288 166 \N 10906 +46068 2025-09-01 23:07:46.620339+00 2025-09-01 23:07:46.620348+00 f t 30000.00 1 30000.00 6678 83 \N 6393 +48377 2025-09-05 21:32:46.171819+00 2025-09-05 21:32:46.171828+00 f t 75000.00 1 75000.00 6985 108 \N 6649 +46985 2025-09-03 21:52:04.87883+00 2025-09-03 21:52:04.878844+00 f t 46000.00 1 46000.00 6848 82 \N 6532 +46986 2025-09-03 21:52:04.887821+00 2025-09-03 21:52:04.887832+00 f t 8000.00 1 8000.00 6848 85 \N 6532 +46987 2025-09-03 21:52:04.89442+00 2025-09-03 21:52:04.894433+00 f t 24000.00 1 24000.00 6848 86 \N 6532 +46085 2025-09-01 23:15:28.814106+00 2025-09-01 23:15:28.814115+00 f t 46000.00 1 46000.00 6680 82 \N 6394 +46988 2025-09-03 21:52:04.900555+00 2025-09-03 21:52:04.900567+00 f t 46000.00 1 46000.00 6848 82 \N 6534 +46989 2025-09-03 21:52:04.906588+00 2025-09-03 21:52:04.906599+00 f t 8000.00 1 8000.00 6848 85 \N 6534 +46990 2025-09-03 21:52:04.913034+00 2025-09-03 21:52:04.913044+00 f t 24000.00 1 24000.00 6848 86 \N 6534 +46093 2025-09-01 23:17:58.310445+00 2025-09-01 23:17:58.310457+00 f t 46000.00 1 46000.00 6681 82 \N 6395 +46096 2025-09-01 23:23:58.296987+00 2025-09-01 23:23:58.296998+00 f t 46000.00 1 46000.00 6682 82 \N 6396 +46097 2025-09-01 23:23:58.307938+00 2025-09-01 23:23:58.307949+00 f t 8000.00 1 8000.00 6682 85 \N 6396 +48524 2025-09-06 15:58:37.00745+00 2025-09-06 15:58:37.007463+00 f t 24000.00 1 24000.00 7023 163 \N 6673 +46102 2025-09-01 23:52:11.664664+00 2025-09-01 23:52:11.664673+00 f t 46000.00 1 46000.00 6685 82 \N 6398 +46104 2025-09-01 23:56:34.245038+00 2025-09-01 23:56:34.24505+00 f t 95000.00 1 95000.00 6686 103 \N 6399 +48536 2025-09-06 17:31:47.635942+00 2025-09-06 17:31:47.635954+00 f t 46000.00 1 46000.00 7028 82 \N 6676 +46123 2025-09-02 00:42:02.919196+00 2025-09-02 00:42:02.919207+00 f t 55000.00 1 55000.00 6687 84 \N 6403 +47143 2025-09-03 23:04:36.773535+00 2025-09-03 23:04:36.773545+00 f t 46000.00 1 46000.00 6854 82 \N 6542 +47164 2025-09-04 00:28:33.06366+00 2025-09-04 00:28:33.06367+00 f t 32500.00 1 32500.00 6857 112 \N 6545 +47165 2025-09-04 00:28:33.068387+00 2025-09-04 00:28:33.068395+00 f t 46000.00 1 46000.00 6857 82 \N 6545 +47166 2025-09-04 00:28:33.072732+00 2025-09-04 00:28:33.07274+00 f t 7700.00 1 7700.00 6857 93 \N 6545 +47167 2025-09-04 00:28:33.076538+00 2025-09-04 00:28:33.076547+00 f t 13200.00 1 13200.00 6857 146 \N 6545 +47171 2025-09-04 00:31:45.52083+00 2025-09-04 00:31:45.52084+00 f t 55000.00 1 55000.00 6858 84 \N 6546 +47177 2025-09-04 00:56:53.9656+00 2025-09-04 00:56:53.96561+00 f t 55000.00 1 55000.00 6862 84 \N 6549 +47247 2025-09-04 11:30:07.038463+00 2025-09-04 11:30:07.038474+00 f t 78000.00 1 78000.00 6878 167 \N 6557 +46169 2025-09-02 02:15:57.931362+00 2025-09-02 02:15:57.931371+00 f t 46000.00 1 46000.00 6690 82 \N 6405 +46170 2025-09-02 02:15:57.936342+00 2025-09-02 02:15:57.936351+00 f t 41000.00 1 41000.00 6690 135 \N 6405 +46171 2025-09-02 02:15:57.94185+00 2025-09-02 02:15:57.941859+00 f t 13000.00 1 13000.00 6690 89 \N 6405 +46180 2025-09-02 04:19:02.102132+00 2025-09-02 04:19:02.102149+00 f t 31500.00 1 31500.00 6696 111 \N 6408 +46181 2025-09-02 04:19:02.122181+00 2025-09-02 04:19:02.122204+00 f t 46000.00 1 46000.00 6696 82 \N 6408 +46182 2025-09-02 04:19:02.132258+00 2025-09-02 04:19:02.132273+00 f t 7700.00 1 7700.00 6696 93 \N 6408 +46183 2025-09-02 04:19:02.14759+00 2025-09-02 04:19:02.147606+00 f t 12000.00 1 12000.00 6696 146 \N 6408 +46190 2025-09-02 10:57:50.537676+00 2025-09-02 10:57:50.537685+00 f t 15400.00 1 15400.00 6700 92 \N 6409 +46191 2025-09-02 10:57:50.542285+00 2025-09-02 10:57:50.542294+00 f t 46000.00 1 46000.00 6700 82 \N 6409 +46202 2025-09-02 11:10:39.466274+00 2025-09-02 11:10:39.466287+00 f t 46000.00 1 46000.00 6701 82 \N 6410 +48885 2025-09-06 19:05:39.241617+00 2025-09-06 19:05:39.241629+00 f t 46000.00 1 46000.00 7005 82 \N 6658 +48886 2025-09-06 19:05:39.246729+00 2025-09-06 19:05:39.246738+00 f t 7700.00 1 7700.00 7005 91 \N 6658 +48894 2025-09-06 19:11:14.384394+00 2025-09-06 19:11:14.384404+00 f t 46000.00 1 46000.00 7033 82 \N 6682 +46211 2025-09-02 11:56:02.575434+00 2025-09-02 11:56:02.575448+00 f t 46000.00 1 46000.00 6705 82 \N 6412 +46213 2025-09-02 12:03:09.747082+00 2025-09-02 12:03:09.747094+00 f t 46000.00 1 46000.00 6707 82 \N 6414 +48906 2025-09-06 23:17:33.347538+00 2025-09-06 23:17:33.347548+00 f t 55000.00 1 55000.00 7043 84 \N 6686 +46235 2025-09-02 12:19:59.662691+00 2025-09-02 12:19:59.662726+00 f t 46000.00 1 46000.00 6708 82 \N 6052 +46236 2025-09-02 12:19:59.668931+00 2025-09-02 12:19:59.668942+00 f t 8000.00 1 8000.00 6708 85 \N 6052 +46237 2025-09-02 12:19:59.673988+00 2025-09-02 12:19:59.673999+00 f t 24000.00 1 24000.00 6708 163 \N 6052 +46239 2025-09-02 12:52:05.952887+00 2025-09-02 12:52:05.952896+00 f t 76000.00 1 76000.00 6709 97 \N 6416 +49002 2025-09-07 11:03:07.65802+00 2025-09-07 11:03:07.65803+00 f t 46000.00 1 46000.00 7056 82 \N 6696 +46243 2025-09-02 13:13:19.998646+00 2025-09-02 13:13:19.998656+00 f t 46000.00 1 46000.00 6711 82 \N 6419 +46249 2025-09-02 14:39:08.801699+00 2025-09-02 14:39:08.801713+00 f t 46000.00 1 46000.00 6714 82 \N 6421 +46253 2025-09-02 15:00:18.135429+00 2025-09-02 15:00:18.135444+00 f t 95000.00 1 95000.00 6716 103 \N 6422 +46254 2025-09-02 15:14:28.967406+00 2025-09-02 15:14:28.967418+00 f t 95000.00 1 95000.00 6718 103 \N 6006 +49118 2025-09-07 19:06:15.536395+00 2025-09-07 19:06:15.536404+00 f t 55000.00 1 55000.00 7073 84 \N 6711 +46283 2025-09-02 15:21:23.289432+00 2025-09-02 15:21:23.289442+00 f t 32500.00 1 32500.00 6719 112 \N 6423 +46284 2025-09-02 15:21:23.295651+00 2025-09-02 15:21:23.295664+00 f t 46000.00 1 46000.00 6719 82 \N 6423 +46285 2025-09-02 15:21:23.301516+00 2025-09-02 15:21:23.301528+00 f t 7700.00 1 7700.00 6719 93 \N 6423 +46286 2025-09-02 15:21:23.307662+00 2025-09-02 15:21:23.307673+00 f t 12000.00 1 12000.00 6719 146 \N 6423 +49164 2025-09-08 00:42:03.586053+00 2025-09-08 00:42:03.586062+00 f t 46000.00 1 46000.00 7083 82 \N 6721 +49165 2025-09-08 00:42:03.592295+00 2025-09-08 00:42:03.592307+00 f t 8000.00 1 8000.00 7083 85 \N 6721 +49166 2025-09-08 00:42:03.598216+00 2025-09-08 00:42:03.598228+00 f t 24000.00 1 24000.00 7083 163 \N 6721 +49171 2025-09-08 01:26:53.82793+00 2025-09-08 01:26:53.82794+00 f t 46000.00 1 46000.00 7085 82 \N 6723 +49172 2025-09-08 01:26:53.833371+00 2025-09-08 01:26:53.83338+00 f t 8000.00 1 8000.00 7085 85 \N 6723 +47530 2025-09-04 13:55:18.581416+00 2025-09-04 13:55:18.581428+00 f t 68000.00 1 68000.00 6886 106 \N 6566 +47567 2025-09-04 14:53:36.948142+00 2025-09-04 14:53:36.948154+00 f t 32500.00 1 32500.00 6890 112 \N 6568 +47583 2025-09-04 15:09:39.101781+00 2025-09-04 15:09:39.101795+00 f t 11000.00 1 11000.00 6888 116 \N 5610 +47584 2025-09-04 15:09:39.108348+00 2025-09-04 15:09:39.108358+00 f t 13200.00 1 13200.00 6888 146 \N 5610 +47586 2025-09-04 15:18:05.418034+00 2025-09-04 15:18:05.418047+00 f t 68000.00 1 68000.00 6891 106 \N 6569 +49834 2025-09-09 02:20:50.12574+00 2025-09-09 02:20:50.125749+00 f t 46000.00 1 46000.00 7163 82 \N 6796 +46358 2025-09-02 15:36:28.343758+00 2025-09-02 15:36:28.343767+00 f t 46000.00 1 46000.00 6722 82 \N 6425 +49835 2025-09-09 02:20:50.130861+00 2025-09-09 02:20:50.130869+00 f t 8000.00 1 8000.00 7163 85 \N 6796 +49836 2025-09-09 02:20:50.134325+00 2025-09-09 02:20:50.134332+00 f t 24000.00 1 24000.00 7163 88 \N 6796 +46367 2025-09-02 15:36:47.260955+00 2025-09-02 15:36:47.260965+00 f t 32500.00 1 32500.00 6721 112 \N 6424 +46368 2025-09-02 15:36:47.266799+00 2025-09-02 15:36:47.26681+00 f t 46000.00 1 46000.00 6721 82 \N 6424 +46369 2025-09-02 15:36:47.274317+00 2025-09-02 15:36:47.274327+00 f t 7700.00 1 7700.00 6721 93 \N 6424 +46370 2025-09-02 15:36:47.281123+00 2025-09-02 15:36:47.281136+00 f t 12000.00 1 12000.00 6721 146 \N 6424 +46372 2025-09-02 15:53:08.693409+00 2025-09-02 15:53:08.69342+00 f t 46000.00 1 46000.00 6724 82 \N 6426 +46374 2025-09-02 16:07:24.186501+00 2025-09-02 16:07:24.186511+00 f t 95000.00 1 95000.00 6725 103 \N 6427 +46375 2025-09-02 16:22:10.558023+00 2025-09-02 16:22:10.558037+00 f t 46000.00 1 46000.00 6729 82 \N 3550 +46379 2025-09-02 17:42:28.934876+00 2025-09-02 17:42:28.934887+00 f t 46000.00 1 46000.00 6736 82 \N 6433 +46380 2025-09-02 17:42:28.940518+00 2025-09-02 17:42:28.940526+00 f t 8000.00 1 8000.00 6736 85 \N 6433 +46381 2025-09-02 17:42:28.950903+00 2025-09-02 17:42:28.950913+00 f t 24000.00 1 24000.00 6736 86 \N 6433 +48461 2025-09-06 06:18:06.199682+00 2025-09-06 06:18:06.199696+00 f t 55000.00 1 55000.00 7007 84 \N 6660 +46389 2025-09-02 18:39:32.703552+00 2025-09-02 18:39:32.703562+00 f t 55000.00 1 55000.00 6740 84 \N 355 +48510 2025-09-06 15:43:25.418278+00 2025-09-06 15:43:25.418289+00 f t 55000.00 1 55000.00 7021 84 \N 6671 +46393 2025-09-02 19:26:30.290802+00 2025-09-02 19:26:30.290813+00 f t 46000.00 1 46000.00 6742 82 \N 6437 +46394 2025-09-02 19:26:30.306577+00 2025-09-02 19:26:30.306587+00 f t 24000.00 1 24000.00 6742 163 \N 6437 +46404 2025-09-02 19:46:01.06199+00 2025-09-02 19:46:01.062+00 f t 46000.00 1 46000.00 6744 82 \N 6439 +46405 2025-09-02 19:46:01.067787+00 2025-09-02 19:46:01.067796+00 f t 24000.00 1 24000.00 6744 86 \N 6439 +46406 2025-09-02 19:57:38.329534+00 2025-09-02 19:57:38.329546+00 f t 55000.00 1 55000.00 6745 84 \N 6440 +46415 2025-09-02 20:58:00.770072+00 2025-09-02 20:58:00.770088+00 f t 75000.00 1 75000.00 6747 108 \N 6443 +47101 2025-09-03 22:06:13.256972+00 2025-09-03 22:06:13.256982+00 f t 46000.00 1 46000.00 6850 82 \N 6535 +46420 2025-09-02 22:24:59.444986+00 2025-09-02 22:24:59.444996+00 f t 46000.00 1 46000.00 6751 82 \N 6448 +47102 2025-09-03 22:06:13.265189+00 2025-09-03 22:06:13.265203+00 f t 8000.00 1 8000.00 6850 85 \N 6535 +46422 2025-09-02 22:35:33.664395+00 2025-09-02 22:35:33.664405+00 f t 30000.00 1 30000.00 6752 83 \N 6449 +47103 2025-09-03 22:06:13.270863+00 2025-09-03 22:06:13.270872+00 f t 46000.00 1 46000.00 6850 82 \N 6536 +46424 2025-09-02 22:48:35.002152+00 2025-09-02 22:48:35.002167+00 f t 46000.00 1 46000.00 6753 82 \N 6450 +47104 2025-09-03 22:06:13.277257+00 2025-09-03 22:06:13.277269+00 f t 8000.00 1 8000.00 6850 85 \N 6536 +47105 2025-09-03 22:06:13.283811+00 2025-09-03 22:06:13.283828+00 f t 46000.00 1 46000.00 6850 82 \N 6537 +47106 2025-09-03 22:06:13.28996+00 2025-09-03 22:06:13.28997+00 f t 8000.00 1 8000.00 6850 85 \N 6537 +47107 2025-09-03 22:06:13.295497+00 2025-09-03 22:06:13.295508+00 f t 46000.00 1 46000.00 6850 82 \N 6538 +47108 2025-09-03 22:06:13.301269+00 2025-09-03 22:06:13.301279+00 f t 8000.00 1 8000.00 6850 85 \N 6538 +47118 2025-09-03 22:44:20.857258+00 2025-09-03 22:44:20.857268+00 f t 46000.00 1 46000.00 6852 82 \N 6540 +46431 2025-09-02 22:50:34.011152+00 2025-09-02 22:50:34.01118+00 f t 46000.00 1 46000.00 6754 82 \N 6451 +46435 2025-09-02 23:02:18.835896+00 2025-09-02 23:02:18.835906+00 f t 46000.00 1 46000.00 6755 82 \N 6452 +46452 2025-09-02 23:16:31.614483+00 2025-09-02 23:16:31.614493+00 f t 46000.00 1 46000.00 6757 82 \N 6455 +46457 2025-09-02 23:25:18.874654+00 2025-09-02 23:25:18.874669+00 f t 46000.00 1 46000.00 6756 82 \N 6453 +47223 2025-09-04 02:04:10.469495+00 2025-09-04 02:04:10.469507+00 f t 46000.00 1 46000.00 6865 82 \N 6551 +47224 2025-09-04 02:04:10.478869+00 2025-09-04 02:04:10.478883+00 f t 24000.00 1 24000.00 6865 86 \N 6551 +47236 2025-09-04 08:31:25.737783+00 2025-09-04 08:31:25.737792+00 f t 55000.00 1 55000.00 6871 84 \N 6553 +47242 2025-09-04 10:24:38.214256+00 2025-09-04 10:24:38.214264+00 f t 55000.00 1 55000.00 6876 84 \N 6556 +47254 2025-09-04 11:35:44.543184+00 2025-09-04 11:35:44.543194+00 f t 78000.00 1 78000.00 6879 167 \N 6558 +46480 2025-09-02 23:39:40.314324+00 2025-09-02 23:39:40.314335+00 f t 46000.00 1 46000.00 6758 82 \N 6456 +46485 2025-09-02 23:55:19.744472+00 2025-09-02 23:55:19.744482+00 f t 31500.00 1 31500.00 6759 111 \N 6457 +46486 2025-09-02 23:55:19.751809+00 2025-09-02 23:55:19.751822+00 f t 46000.00 1 46000.00 6759 82 \N 6457 +46487 2025-09-02 23:55:19.757248+00 2025-09-02 23:55:19.75726+00 f t 7700.00 1 7700.00 6759 93 \N 6457 +46488 2025-09-02 23:55:19.762882+00 2025-09-02 23:55:19.762892+00 f t 13200.00 1 13200.00 6759 146 \N 6457 +47321 2025-09-04 13:04:26.295861+00 2025-09-04 13:04:26.295872+00 f t 46000.00 1 46000.00 6880 82 \N 6559 +47322 2025-09-04 13:04:26.30338+00 2025-09-04 13:04:26.30339+00 f t 8000.00 1 8000.00 6880 85 \N 6559 +47323 2025-09-04 13:04:26.307848+00 2025-09-04 13:04:26.307858+00 f t 24000.00 1 24000.00 6880 86 \N 6559 +47324 2025-09-04 13:04:26.312935+00 2025-09-04 13:04:26.312943+00 f t 46000.00 1 46000.00 6880 82 \N 6560 +47325 2025-09-04 13:04:26.317308+00 2025-09-04 13:04:26.317317+00 f t 8000.00 1 8000.00 6880 85 \N 6560 +47326 2025-09-04 13:04:26.322036+00 2025-09-04 13:04:26.322046+00 f t 24000.00 1 24000.00 6880 86 \N 6560 +46506 2025-09-03 00:07:41.839126+00 2025-09-03 00:07:41.839162+00 f t 46000.00 1 46000.00 6761 82 \N 6458 +46507 2025-09-03 00:07:41.847384+00 2025-09-03 00:07:41.847395+00 f t 8000.00 1 8000.00 6761 85 \N 6458 +46508 2025-09-03 00:07:41.853595+00 2025-09-03 00:07:41.853604+00 f t 24000.00 1 24000.00 6761 163 \N 6458 +46512 2025-09-03 00:23:55.204468+00 2025-09-03 00:23:55.20448+00 f t 46000.00 1 46000.00 6765 82 \N 6460 +46517 2025-09-03 00:31:37.162321+00 2025-09-03 00:31:37.162331+00 f t 95000.00 1 95000.00 6768 103 \N 6462 +46520 2025-09-03 00:48:11.779349+00 2025-09-03 00:48:11.77936+00 f t 46000.00 1 46000.00 6769 82 \N 6463 +46521 2025-09-03 00:48:11.785336+00 2025-09-03 00:48:11.785348+00 f t 24000.00 1 24000.00 6769 86 \N 6463 +46524 2025-09-03 01:07:11.774703+00 2025-09-03 01:07:11.774717+00 f t 46000.00 1 46000.00 6773 82 \N 6469 +46525 2025-09-03 01:07:11.781832+00 2025-09-03 01:07:11.781845+00 f t 8000.00 1 8000.00 6773 85 \N 6469 +46563 2025-09-03 01:19:07.204312+00 2025-09-03 01:19:07.204325+00 f t 31500.00 1 31500.00 6774 111 \N 6470 +46564 2025-09-03 01:19:07.212168+00 2025-09-03 01:19:07.212181+00 f t 46000.00 1 46000.00 6774 82 \N 6470 +46565 2025-09-03 01:19:07.218591+00 2025-09-03 01:19:07.218606+00 f t 7700.00 1 7700.00 6774 93 \N 6470 +46566 2025-09-03 01:19:07.224506+00 2025-09-03 01:19:07.224516+00 f t 52500.00 1 52500.00 6774 114 \N 6470 +46567 2025-09-03 01:19:07.22985+00 2025-09-03 01:19:07.229858+00 f t 13200.00 1 13200.00 6774 146 \N 6470 +46569 2025-09-03 01:53:23.511745+00 2025-09-03 01:53:23.511756+00 f t 55000.00 1 55000.00 6775 84 \N 6471 +48371 2025-09-05 20:38:06.645836+00 2025-09-05 20:38:06.645848+00 f t 30000.00 1 30000.00 6983 83 \N 6647 +48380 2025-09-06 00:05:27.285955+00 2025-09-06 00:05:27.285968+00 f t 46000.00 1 46000.00 6994 82 \N 6653 +48381 2025-09-06 00:05:27.294472+00 2025-09-06 00:05:27.294483+00 f t 24000.00 1 24000.00 6994 87 \N 6653 +46663 2025-09-03 02:18:41.116346+00 2025-09-03 02:18:41.116356+00 f t 46000.00 1 46000.00 6779 82 \N 6473 +46664 2025-09-03 02:18:41.121894+00 2025-09-03 02:18:41.121903+00 f t 33000.00 1 33000.00 6779 133 \N 6473 +46665 2025-09-03 02:18:41.127253+00 2025-09-03 02:18:41.127262+00 f t 13000.00 1 13000.00 6779 89 \N 6473 +46668 2025-09-03 02:24:12.879209+00 2025-09-03 02:24:12.879219+00 f t 46000.00 1 46000.00 6780 82 \N 6474 +46669 2025-09-03 02:24:12.88385+00 2025-09-03 02:24:12.883859+00 f t 8000.00 1 8000.00 6780 85 \N 6474 +48544 2025-09-06 17:45:20.301863+00 2025-09-06 17:45:20.301872+00 f t 46000.00 1 46000.00 7029 82 \N 6677 +46681 2025-09-03 10:35:49.387937+00 2025-09-03 10:35:49.387949+00 f t 46000.00 1 46000.00 6787 82 \N 6477 +46682 2025-09-03 10:35:49.396096+00 2025-09-03 10:35:49.396107+00 f t 46000.00 1 46000.00 6787 82 \N 6478 +46690 2025-09-03 10:44:54.002863+00 2025-09-03 10:44:54.002878+00 f t 46000.00 1 46000.00 6788 82 \N 6480 +46696 2025-09-03 10:54:08.549247+00 2025-09-03 10:54:08.549263+00 f t 55000.00 1 55000.00 6790 84 \N 6482 +46703 2025-09-03 10:57:18.3849+00 2025-09-03 10:57:18.384914+00 f t 55000.00 1 55000.00 6792 84 \N 6484 +46707 2025-09-03 10:59:28.850618+00 2025-09-03 10:59:28.850632+00 f t 46000.00 1 46000.00 6791 82 \N 6483 +47145 2025-09-03 23:56:17.70773+00 2025-09-03 23:56:17.707741+00 f t 30000.00 1 30000.00 6855 83 \N 6543 +47158 2025-09-04 00:02:04.922614+00 2025-09-04 00:02:04.922627+00 f t 46000.00 1 46000.00 6856 82 \N 6544 +47159 2025-09-04 00:02:04.930148+00 2025-09-04 00:02:04.930158+00 f t 8000.00 1 8000.00 6856 85 \N 6544 +47174 2025-09-04 00:53:10.029266+00 2025-09-04 00:53:10.029275+00 f t 46000.00 1 46000.00 6861 82 \N 6548 +47175 2025-09-04 00:53:10.03463+00 2025-09-04 00:53:10.034642+00 f t 8000.00 1 8000.00 6861 85 \N 6548 +46724 2025-09-03 12:21:07.123311+00 2025-09-03 12:21:07.123323+00 f t 46000.00 1 46000.00 6795 82 \N 6486 +46725 2025-09-03 12:21:07.128642+00 2025-09-03 12:21:07.128653+00 f t 8000.00 1 8000.00 6795 85 \N 6486 +46726 2025-09-03 12:21:07.133192+00 2025-09-03 12:21:07.133201+00 f t 24000.00 1 24000.00 6795 86 \N 6486 +46733 2025-09-03 13:09:39.004143+00 2025-09-03 13:09:39.004153+00 f t 46000.00 1 46000.00 6798 82 \N 6490 +46738 2025-09-03 13:24:31.888119+00 2025-09-03 13:24:31.888133+00 f t 55000.00 1 55000.00 6801 84 \N 6492 +46740 2025-09-03 13:40:23.909608+00 2025-09-03 13:40:23.909621+00 f t 68000.00 1 68000.00 6802 106 \N 6493 +46741 2025-09-03 14:02:33.51922+00 2025-09-03 14:02:33.519234+00 f t 55000.00 1 55000.00 6805 84 \N 4266 +46744 2025-09-03 14:26:53.605741+00 2025-09-03 14:26:53.605754+00 f t 46000.00 1 46000.00 6810 82 \N 6496 +46745 2025-09-03 14:26:53.612194+00 2025-09-03 14:26:53.612206+00 f t 24000.00 1 24000.00 6810 86 \N 6496 +47240 2025-09-04 08:47:37.140386+00 2025-09-04 08:47:37.140395+00 f t 46000.00 1 46000.00 6874 82 \N 6555 +46750 2025-09-03 14:28:50.144222+00 2025-09-03 14:28:50.144234+00 f t 46000.00 1 46000.00 6811 82 \N 6497 +46751 2025-09-03 14:28:50.149969+00 2025-09-03 14:28:50.14998+00 f t 7700.00 1 7700.00 6811 93 \N 6497 +46752 2025-09-03 14:28:50.155689+00 2025-09-03 14:28:50.155702+00 f t 87000.00 1 87000.00 6811 165 \N 6497 +46753 2025-09-03 14:28:50.160637+00 2025-09-03 14:28:50.160645+00 f t 13200.00 1 13200.00 6811 146 \N 6497 +46766 2025-09-03 14:32:29.744631+00 2025-09-03 14:32:29.744645+00 f t 46000.00 1 46000.00 6812 82 \N 6498 +46767 2025-09-03 14:32:29.75069+00 2025-09-03 14:32:29.750701+00 f t 7700.00 1 7700.00 6812 93 \N 6498 +46768 2025-09-03 14:32:29.755994+00 2025-09-03 14:32:29.756006+00 f t 52500.00 1 52500.00 6812 113 \N 6498 +46769 2025-09-03 14:32:29.760942+00 2025-09-03 14:32:29.760953+00 f t 13200.00 1 13200.00 6812 146 \N 6498 +46771 2025-09-03 15:17:59.530853+00 2025-09-03 15:17:59.530863+00 f t 55000.00 1 55000.00 6813 84 \N 6500 +46792 2025-09-03 15:23:17.07227+00 2025-09-03 15:23:17.072281+00 f t 46000.00 1 46000.00 6809 82 \N 6501 +46793 2025-09-03 15:23:17.078408+00 2025-09-03 15:23:17.078418+00 f t 46000.00 1 46000.00 6809 82 \N 6502 +46794 2025-09-03 15:23:17.083279+00 2025-09-03 15:23:17.08329+00 f t 8000.00 1 8000.00 6809 85 \N 6502 +46799 2025-09-03 16:03:15.309913+00 2025-09-03 16:03:15.309923+00 f t 46000.00 1 46000.00 6815 82 \N 6504 +46800 2025-09-03 16:03:15.316054+00 2025-09-03 16:03:15.316064+00 f t 24000.00 1 24000.00 6815 88 \N 6504 +46805 2025-09-03 16:57:38.044739+00 2025-09-03 16:57:38.044749+00 f t 75000.00 1 75000.00 6817 108 \N 6506 +46809 2025-09-03 17:15:01.034813+00 2025-09-03 17:15:01.034823+00 f t 55000.00 1 55000.00 6819 84 \N 6508 +46833 2025-09-03 17:38:48.747591+00 2025-09-03 17:38:48.7476+00 f t 46000.00 1 46000.00 6821 82 \N 6510 +46834 2025-09-03 17:38:48.753346+00 2025-09-03 17:38:48.753355+00 f t 29000.00 1 29000.00 6821 123 \N 6510 +46835 2025-09-03 17:38:48.760774+00 2025-09-03 17:38:48.760787+00 f t 13000.00 1 13000.00 6821 89 \N 6510 +46837 2025-09-03 17:40:07.867655+00 2025-09-03 17:40:07.867677+00 f t 46000.00 1 46000.00 6822 82 \N 6511 +46842 2025-09-03 17:41:00.266336+00 2025-09-03 17:41:00.266352+00 f t 55000.00 1 55000.00 6820 84 \N 6509 +46843 2025-09-03 17:41:00.277647+00 2025-09-03 17:41:00.277661+00 f t 46000.00 1 46000.00 6820 82 \N 6509 +46844 2025-09-03 17:41:00.283832+00 2025-09-03 17:41:00.283842+00 f t 69000.00 1 69000.00 6820 142 \N 6509 +46851 2025-09-03 17:52:38.038881+00 2025-09-03 17:52:38.038891+00 f t 46000.00 1 46000.00 6823 82 \N 6512 +46852 2025-09-03 17:52:38.044255+00 2025-09-03 17:52:38.044268+00 f t 8000.00 1 8000.00 6823 85 \N 6512 +46861 2025-09-03 18:04:35.483419+00 2025-09-03 18:04:35.483429+00 f t 30000.00 1 30000.00 6824 83 \N 6514 +46864 2025-09-03 18:15:08.832153+00 2025-09-03 18:15:08.832163+00 f t 46000.00 1 46000.00 6826 82 \N 6516 +46865 2025-09-03 18:15:08.841589+00 2025-09-03 18:15:08.8416+00 f t 16800.00 1 16800.00 6826 96 \N 6516 +46871 2025-09-03 20:05:58.692481+00 2025-09-03 20:05:58.692493+00 f t 46000.00 1 46000.00 6832 82 \N 6519 +46872 2025-09-03 20:05:58.700401+00 2025-09-03 20:05:58.70041+00 f t 24000.00 1 24000.00 6832 86 \N 6519 +46906 2025-09-03 20:18:40.804998+00 2025-09-03 20:18:40.805011+00 f t 72500.00 1 72500.00 6833 104 \N 6520 +46907 2025-09-03 20:18:40.812093+00 2025-09-03 20:18:40.812104+00 f t 46000.00 1 46000.00 6833 82 \N 6520 +46908 2025-09-03 20:18:40.818166+00 2025-09-03 20:18:40.818178+00 f t 7700.00 1 7700.00 6833 93 \N 6520 +46909 2025-09-03 20:18:40.824197+00 2025-09-03 20:18:40.824206+00 f t 87000.00 1 87000.00 6833 165 \N 6520 +46910 2025-09-03 20:18:40.830041+00 2025-09-03 20:18:40.830052+00 f t 13200.00 1 13200.00 6833 146 \N 6520 +47559 2025-09-04 14:16:24.661865+00 2025-09-04 14:16:24.661874+00 f t 46000.00 1 46000.00 6889 82 \N 6567 +47560 2025-09-04 14:16:24.666759+00 2025-09-04 14:16:24.666768+00 f t 8000.00 1 8000.00 6889 85 \N 6567 +75850 2025-10-29 05:02:43.511387+00 2025-10-29 05:02:43.511397+00 f t 0.00 1 0.00 10823 98 \N 9764 +47609 2025-09-04 15:26:24.404142+00 2025-09-04 15:26:24.404151+00 f t 24000.00 1 24000.00 6893 163 \N 6052 +47610 2025-09-04 15:26:24.411163+00 2025-09-04 15:26:24.411173+00 f t 46000.00 1 46000.00 6893 82 \N 6052 +48393 2025-09-06 01:17:53.742049+00 2025-09-06 01:17:53.742058+00 f t 68000.00 1 68000.00 6999 106 \N 6655 +47615 2025-09-04 15:59:04.945914+00 2025-09-04 15:59:04.945924+00 f t 46000.00 1 46000.00 6895 82 \N 6572 +47616 2025-09-04 15:59:04.952343+00 2025-09-04 15:59:04.952353+00 f t 24000.00 1 24000.00 6895 163 \N 6572 +47621 2025-09-04 16:08:49.345891+00 2025-09-04 16:08:49.3459+00 f t 46000.00 1 46000.00 6896 82 \N 6573 +47622 2025-09-04 16:08:49.352+00 2025-09-04 16:08:49.352009+00 f t 8000.00 1 8000.00 6896 85 \N 6573 +47624 2025-09-04 17:00:41.846669+00 2025-09-04 17:00:41.846678+00 f t 46000.00 1 46000.00 6900 82 \N 6575 +48470 2025-09-06 13:18:56.628802+00 2025-09-06 13:18:56.628812+00 f t 55000.00 1 55000.00 7010 84 \N 6661 +48505 2025-09-06 14:27:48.740624+00 2025-09-06 14:27:48.740633+00 f t 46000.00 1 46000.00 7017 82 \N 6667 +48533 2025-09-06 16:36:11.877096+00 2025-09-06 16:36:11.877105+00 f t 75000.00 1 75000.00 7025 108 \N 6675 +47645 2025-09-04 17:20:16.713028+00 2025-09-04 17:20:16.713036+00 f t 46000.00 1 46000.00 6902 82 \N 6576 +47646 2025-09-04 17:20:16.717356+00 2025-09-04 17:20:16.717365+00 f t 24000.00 1 24000.00 6902 88 \N 6576 +47647 2025-09-04 17:20:16.720929+00 2025-09-04 17:20:16.720936+00 f t 46000.00 1 46000.00 6902 82 \N 6577 +47648 2025-09-04 17:20:16.724307+00 2025-09-04 17:20:16.724315+00 f t 24000.00 1 24000.00 6902 88 \N 6577 +47651 2025-09-04 17:33:35.960263+00 2025-09-04 17:33:35.960273+00 f t 93750.00 1 93750.00 6904 90 \N 6579 +47652 2025-09-04 17:33:35.965079+00 2025-09-04 17:33:35.965089+00 f t 46000.00 1 46000.00 6904 82 \N 6579 +47656 2025-09-04 18:00:35.847499+00 2025-09-04 18:00:35.84751+00 f t 34000.00 1 34000.00 6906 110 \N 6581 +47658 2025-09-04 18:04:24.749828+00 2025-09-04 18:04:24.749838+00 f t 34000.00 1 34000.00 6909 110 \N 6582 +47662 2025-09-04 18:11:22.84451+00 2025-09-04 18:11:22.844522+00 f t 46000.00 1 46000.00 6910 82 \N 6583 +47673 2025-09-04 18:24:21.290199+00 2025-09-04 18:24:21.290212+00 f t 46000.00 1 46000.00 6911 82 \N 6584 +47674 2025-09-04 18:24:21.298702+00 2025-09-04 18:24:21.298712+00 f t 24000.00 1 24000.00 6911 86 \N 6584 +47677 2025-09-04 18:38:37.442597+00 2025-09-04 18:38:37.44261+00 f t 55000.00 1 55000.00 6912 84 \N 6585 +47686 2025-09-04 19:09:31.015669+00 2025-09-04 19:09:31.015682+00 f t 46000.00 1 46000.00 6915 82 \N 6588 +47687 2025-09-04 19:09:31.021679+00 2025-09-04 19:09:31.021692+00 f t 24000.00 1 24000.00 6915 86 \N 6588 +47724 2025-09-04 19:19:13.046638+00 2025-09-04 19:19:13.046648+00 f t 46000.00 1 46000.00 6916 82 \N 6590 +47725 2025-09-04 19:19:13.053455+00 2025-09-04 19:19:13.053466+00 f t 46000.00 1 46000.00 6916 82 \N 6591 +47726 2025-09-04 19:19:13.058655+00 2025-09-04 19:19:13.058667+00 f t 24000.00 1 24000.00 6916 86 \N 6591 +47727 2025-09-04 20:00:19.820778+00 2025-09-04 20:00:19.820788+00 f t 46000.00 1 46000.00 6914 82 \N 6589 +47728 2025-09-04 20:00:19.828162+00 2025-09-04 20:00:19.828176+00 f t 46000.00 1 46000.00 6914 82 \N 6587 +47735 2025-09-04 20:39:31.498156+00 2025-09-04 20:39:31.498169+00 f t 30000.00 1 30000.00 6919 83 \N 6592 +47737 2025-09-04 22:39:46.176484+00 2025-09-04 22:39:46.176493+00 f t 55000.00 1 55000.00 6921 84 \N 6593 +48961 2025-09-07 00:26:10.437176+00 2025-09-07 00:26:10.437186+00 f t 55000.00 1 55000.00 7047 84 \N 6689 +48962 2025-09-07 00:26:10.441967+00 2025-09-07 00:26:10.441975+00 f t 68000.00 1 68000.00 7047 106 \N 6689 +47765 2025-09-04 22:50:23.72427+00 2025-09-04 22:50:23.724279+00 f t 34000.00 1 34000.00 6922 110 \N 6594 +47766 2025-09-04 22:50:23.730405+00 2025-09-04 22:50:23.730413+00 f t 95000.00 1 95000.00 6922 103 \N 6594 +47767 2025-09-04 22:50:23.734972+00 2025-09-04 22:50:23.73498+00 f t 68000.00 1 68000.00 6922 106 \N 6594 +48988 2025-09-07 04:30:20.495615+00 2025-09-07 04:30:20.495624+00 f t 75000.00 1 75000.00 7053 108 \N 6694 +49018 2025-09-07 15:53:10.670367+00 2025-09-07 15:53:10.67038+00 f t 55000.00 1 55000.00 7064 84 \N 6702 +47780 2025-09-04 23:08:08.41182+00 2025-09-04 23:08:08.411828+00 f t 46000.00 1 46000.00 6923 82 \N 6595 +47781 2025-09-04 23:08:08.416519+00 2025-09-04 23:08:08.416528+00 f t 8000.00 1 8000.00 6923 85 \N 6595 +47782 2025-09-04 23:08:08.420356+00 2025-09-04 23:08:08.420363+00 f t 24000.00 1 24000.00 6923 86 \N 6595 +47786 2025-09-04 23:53:40.653965+00 2025-09-04 23:53:40.653975+00 f t 55000.00 1 55000.00 6925 84 \N 6596 +49056 2025-09-07 17:05:59.603834+00 2025-09-07 17:05:59.603847+00 f t 55000.00 1 55000.00 7067 84 \N 6705 +47795 2025-09-05 00:52:47.055342+00 2025-09-05 00:52:47.055353+00 f t 46000.00 1 46000.00 6928 82 \N 6597 +47796 2025-09-05 00:52:47.059633+00 2025-09-05 00:52:47.059641+00 f t 24000.00 1 24000.00 6928 86 \N 6597 +47799 2025-09-05 01:37:21.625242+00 2025-09-05 01:37:21.625255+00 f t 46000.00 1 46000.00 6930 82 \N 6600 +47800 2025-09-05 01:37:21.630618+00 2025-09-05 01:37:21.63063+00 f t 8000.00 1 8000.00 6930 85 \N 6600 +47807 2025-09-05 02:24:11.68567+00 2025-09-05 02:24:11.685679+00 f t 55000.00 1 55000.00 6932 84 \N 6601 +49103 2025-09-07 18:20:32.556878+00 2025-09-07 18:20:32.556888+00 f t 46000.00 1 46000.00 7070 82 \N 6708 +49107 2025-09-07 19:03:43.434468+00 2025-09-07 19:03:43.434482+00 f t 55000.00 1 55000.00 7072 84 \N 6710 +49131 2025-09-07 19:56:24.066176+00 2025-09-07 19:56:24.066185+00 f t 46000.00 1 46000.00 7076 82 \N 6715 +49184 2025-09-08 03:33:21.311274+00 2025-09-08 03:33:21.311283+00 f t 46000.00 1 46000.00 7087 82 \N 6725 +49185 2025-09-08 03:33:21.315337+00 2025-09-08 03:33:21.315345+00 f t 8000.00 1 8000.00 7087 85 \N 6725 +49186 2025-09-08 03:33:21.319443+00 2025-09-08 03:33:21.31945+00 f t 24000.00 1 24000.00 7087 86 \N 6725 +49221 2025-09-08 11:23:44.298288+00 2025-09-08 11:23:44.298296+00 f t 31500.00 1 31500.00 7094 111 \N 6732 +49232 2025-09-08 12:23:05.22855+00 2025-09-08 12:23:05.228559+00 f t 46000.00 1 46000.00 7097 82 \N 6734 +49233 2025-09-08 12:23:05.234459+00 2025-09-08 12:23:05.234468+00 f t 24000.00 1 24000.00 7097 86 \N 6734 +49242 2025-09-08 12:49:16.123066+00 2025-09-08 12:49:16.123075+00 f t 46000.00 1 46000.00 7099 82 \N 6736 +49243 2025-09-08 12:49:16.127415+00 2025-09-08 12:49:16.127422+00 f t 8000.00 1 8000.00 7099 85 \N 6736 +47851 2025-09-05 03:23:13.33625+00 2025-09-05 03:23:13.336263+00 f t 46000.00 1 46000.00 6935 82 \N 6604 +47852 2025-09-05 03:23:13.342151+00 2025-09-05 03:23:13.34216+00 f t 8000.00 1 8000.00 6935 85 \N 6604 +47862 2025-09-05 03:25:12.727968+00 2025-09-05 03:25:12.727978+00 f t 30000.00 1 30000.00 6936 83 \N 6605 +47867 2025-09-05 05:31:55.425639+00 2025-09-05 05:31:55.425651+00 f t 46000.00 1 46000.00 6939 82 \N 6607 +47868 2025-09-05 05:31:55.43075+00 2025-09-05 05:31:55.43076+00 f t 87500.00 1 87500.00 6939 141 \N 6607 +49312 2025-09-08 15:08:05.492963+00 2025-09-08 15:08:05.492985+00 f t 46000.00 1 46000.00 7106 82 \N 6743 +49313 2025-09-08 15:08:05.502374+00 2025-09-08 15:08:05.502387+00 f t 24000.00 1 24000.00 7106 88 \N 6743 +49816 2025-09-09 01:59:11.540461+00 2025-09-09 01:59:11.540471+00 f t 55000.00 1 55000.00 7162 84 \N 6795 +75440 2025-10-28 16:57:09.564024+00 2025-10-28 16:57:09.564038+00 f t 0.00 1 0.00 10739 98 \N 9704 +47900 2025-09-05 09:04:58.834479+00 2025-09-05 09:04:58.834488+00 f t 46000.00 1 46000.00 6940 82 \N 6608 +47901 2025-09-05 09:04:58.838529+00 2025-09-05 09:04:58.838536+00 f t 8000.00 1 8000.00 6940 85 \N 6608 +47902 2025-09-05 09:04:58.841844+00 2025-09-05 09:04:58.841851+00 f t 46000.00 1 46000.00 6940 82 \N 6610 +49869 2025-09-09 02:50:18.061056+00 2025-09-09 02:50:18.061065+00 f t 46000.00 1 46000.00 7168 82 \N 6800 +48429 2025-09-06 02:36:46.765841+00 2025-09-06 02:36:46.765852+00 f t 75000.00 1 75000.00 7002 108 \N 6587 +49877 2025-09-09 02:58:46.414038+00 2025-09-09 02:58:46.414047+00 f t 46000.00 1 46000.00 7165 82 \N 6798 +49885 2025-09-09 03:25:47.544412+00 2025-09-09 03:25:47.544421+00 f t 68000.00 1 68000.00 7174 106 \N 6803 +48478 2025-09-06 13:58:50.297183+00 2025-09-06 13:58:50.297194+00 f t 55000.00 1 55000.00 7011 84 \N 6662 +48492 2025-09-06 14:11:54.231567+00 2025-09-06 14:11:54.231578+00 f t 55000.00 1 55000.00 7014 84 \N 6664 +48499 2025-09-06 14:20:02.844119+00 2025-09-06 14:20:02.844133+00 f t 55000.00 1 55000.00 7016 84 \N 6666 +48534 2025-09-06 17:01:20.635204+00 2025-09-06 17:01:20.635218+00 f t 78000.00 1 78000.00 7022 167 \N 6672 +47951 2025-09-05 10:15:24.454606+00 2025-09-05 10:15:24.454616+00 f t 46000.00 1 46000.00 6941 82 \N 6611 +47952 2025-09-05 10:15:24.458791+00 2025-09-05 10:15:24.458799+00 f t 8000.00 1 8000.00 6941 85 \N 6611 +47953 2025-09-05 10:15:24.462361+00 2025-09-05 10:15:24.462369+00 f t 24000.00 1 24000.00 6941 86 \N 6611 +47954 2025-09-05 10:15:24.46593+00 2025-09-05 10:15:24.465938+00 f t 46000.00 1 46000.00 6941 82 \N 6612 +47955 2025-09-05 10:15:24.469638+00 2025-09-05 10:15:24.469645+00 f t 8000.00 1 8000.00 6941 85 \N 6612 +47956 2025-09-05 10:15:24.473375+00 2025-09-05 10:15:24.473382+00 f t 24000.00 1 24000.00 6941 163 \N 6612 +48644 2025-09-06 18:39:55.948489+00 2025-09-06 18:39:55.948497+00 f t 55000.00 1 55000.00 7031 84 \N 6679 +47962 2025-09-05 10:44:09.532767+00 2025-09-05 10:44:09.532776+00 f t 20500.00 1 20500.00 6942 109 \N 6613 +47963 2025-09-05 10:44:09.537414+00 2025-09-05 10:44:09.537422+00 f t 46000.00 1 46000.00 6942 82 \N 6613 +47966 2025-09-05 11:12:07.553595+00 2025-09-05 11:12:07.553605+00 f t 46000.00 1 46000.00 6943 82 \N 6614 +47967 2025-09-05 11:12:07.559722+00 2025-09-05 11:12:07.559731+00 f t 24000.00 1 24000.00 6943 163 \N 6614 +47982 2025-09-05 11:35:15.518244+00 2025-09-05 11:35:15.518254+00 f t 46000.00 1 46000.00 6945 82 \N 6616 +48877 2025-09-06 18:59:13.485672+00 2025-09-06 18:59:13.485681+00 f t 34000.00 1 34000.00 7030 110 \N 6678 +48878 2025-09-06 18:59:13.489654+00 2025-09-06 18:59:13.489661+00 f t 46000.00 1 46000.00 7030 82 \N 6678 +48879 2025-09-06 18:59:13.492897+00 2025-09-06 18:59:13.492903+00 f t 29000.00 1 29000.00 7030 123 \N 6678 +48880 2025-09-06 18:59:13.496326+00 2025-09-06 18:59:13.496332+00 f t 52500.00 1 52500.00 7030 113 \N 6678 +48881 2025-09-06 18:59:13.499699+00 2025-09-06 18:59:13.499705+00 f t 87000.00 1 87000.00 7030 165 \N 6678 +48882 2025-09-06 18:59:13.502752+00 2025-09-06 18:59:13.502757+00 f t 8000.00 1 8000.00 7030 85 \N 6678 +48883 2025-09-06 18:59:13.505721+00 2025-09-06 18:59:13.505726+00 f t 13000.00 1 13000.00 7030 89 \N 6678 +48029 2025-09-05 12:09:17.3745+00 2025-09-05 12:09:17.37451+00 f t 46000.00 1 46000.00 6946 82 \N 6617 +48030 2025-09-05 12:09:17.379225+00 2025-09-05 12:09:17.379236+00 f t 8000.00 1 8000.00 6946 85 \N 6617 +48888 2025-09-06 19:06:12.938711+00 2025-09-06 19:06:12.938719+00 f t 30000.00 1 30000.00 7032 83 \N 6680 +48896 2025-09-06 22:31:09.532754+00 2025-09-06 22:31:09.532763+00 f t 55000.00 1 55000.00 7040 84 \N 6684 +48908 2025-09-06 23:38:31.919003+00 2025-09-06 23:38:31.919012+00 f t 46000.00 1 46000.00 7044 82 \N 6687 +48039 2025-09-05 12:32:25.020366+00 2025-09-05 12:32:25.020376+00 f t 55000.00 1 55000.00 6947 84 \N 6618 +48968 2025-09-07 00:30:06.220589+00 2025-09-07 00:30:06.220598+00 f t 46000.00 1 46000.00 7048 82 \N 6690 +48969 2025-09-07 00:30:06.225708+00 2025-09-07 00:30:06.225719+00 f t 68000.00 1 68000.00 7048 106 \N 6690 +49005 2025-09-07 12:55:24.341028+00 2025-09-07 12:55:24.341036+00 f t 46000.00 1 46000.00 7057 82 \N 6697 +49006 2025-09-07 12:55:24.345979+00 2025-09-07 12:55:24.345992+00 f t 24000.00 1 24000.00 7057 163 \N 6697 +48064 2025-09-05 12:38:12.133798+00 2025-09-05 12:38:12.133809+00 f t 31500.00 1 31500.00 6948 111 \N 6619 +48071 2025-09-05 12:40:27.250852+00 2025-09-05 12:40:27.250861+00 f t 46000.00 1 46000.00 6949 82 \N 6620 +48072 2025-09-05 12:40:27.255386+00 2025-09-05 12:40:27.255394+00 f t 8000.00 1 8000.00 6949 85 \N 6620 +48074 2025-09-05 13:06:11.710988+00 2025-09-05 13:06:11.710999+00 f t 78000.00 1 78000.00 6952 167 \N 6622 +48076 2025-09-05 13:54:27.568408+00 2025-09-05 13:54:27.568418+00 f t 55000.00 1 55000.00 6953 84 \N 6624 +48082 2025-09-05 14:06:53.387601+00 2025-09-05 14:06:53.387611+00 f t 20500.00 1 20500.00 6954 109 \N 6625 +49066 2025-09-07 17:59:30.048092+00 2025-09-07 17:59:30.048101+00 f t 46000.00 1 46000.00 7068 82 \N 6706 +49067 2025-09-07 17:59:30.052711+00 2025-09-07 17:59:30.052719+00 f t 8000.00 1 8000.00 7068 85 \N 6706 +49068 2025-09-07 17:59:30.056284+00 2025-09-07 17:59:30.05629+00 f t 24000.00 1 24000.00 7068 163 \N 6706 +49144 2025-09-07 22:19:12.302361+00 2025-09-07 22:19:12.302371+00 f t 46000.00 1 46000.00 7080 82 \N 6719 +49168 2025-09-08 00:52:32.732922+00 2025-09-08 00:52:32.732936+00 f t 55000.00 1 55000.00 7084 84 \N 6722 +49174 2025-09-08 01:38:25.804704+00 2025-09-08 01:38:25.804717+00 f t 46000.00 1 46000.00 7086 82 \N 6724 +49196 2025-09-08 07:55:09.46599+00 2025-09-08 07:55:09.466+00 f t 55000.00 1 55000.00 7089 84 \N 6727 +49209 2025-09-08 10:36:09.343417+00 2025-09-08 10:36:09.343425+00 f t 46000.00 1 46000.00 7092 82 \N 6729 +49210 2025-09-08 10:36:09.350217+00 2025-09-08 10:36:09.350225+00 f t 8000.00 1 8000.00 7092 85 \N 6729 +49219 2025-09-08 10:50:22.154937+00 2025-09-08 10:50:22.154946+00 f t 55000.00 1 55000.00 7093 84 \N 6731 +49257 2025-09-08 14:39:41.231897+00 2025-09-08 14:39:41.231908+00 f t 46000.00 1 46000.00 7102 82 \N 6739 +49258 2025-09-08 14:39:41.238261+00 2025-09-08 14:39:41.23827+00 f t 8000.00 1 8000.00 7102 85 \N 6739 +49259 2025-09-08 14:39:41.242912+00 2025-09-08 14:39:41.242922+00 f t 24000.00 1 24000.00 7102 163 \N 6739 +48144 2025-09-05 14:22:05.372935+00 2025-09-05 14:22:05.372945+00 f t 46000.00 1 46000.00 6955 82 \N 6626 +48145 2025-09-05 14:22:05.378436+00 2025-09-05 14:22:05.378445+00 f t 24000.00 1 24000.00 6955 163 \N 6626 +48150 2025-09-05 14:27:58.624518+00 2025-09-05 14:27:58.624529+00 f t 68000.00 1 68000.00 6956 106 \N 6627 +48156 2025-09-05 14:46:03.078209+00 2025-09-05 14:46:03.078223+00 f t 30000.00 1 30000.00 6957 83 \N 6628 +49309 2025-09-08 15:05:29.39778+00 2025-09-08 15:05:29.39779+00 f t 46000.00 1 46000.00 7105 82 \N 6742 +48160 2025-09-05 15:06:00.567062+00 2025-09-05 15:06:00.567076+00 f t 68000.00 1 68000.00 6958 106 \N 6629 +48163 2025-09-05 15:12:04.360616+00 2025-09-05 15:12:04.360651+00 f t 55000.00 1 55000.00 6960 84 \N 6630 +53006 2025-09-15 00:24:43.116027+00 2025-09-15 00:24:43.116036+00 f t 46000.00 1 46000.00 7544 82 \N 7142 +53007 2025-09-15 00:24:43.120513+00 2025-09-15 00:24:43.12052+00 f t 33000.00 1 33000.00 7544 140 \N 7142 +48190 2025-09-05 15:25:51.288024+00 2025-09-05 15:25:51.288034+00 f t 49000.00 1 49000.00 6961 98 \N 6631 +48194 2025-09-05 15:26:23.949842+00 2025-09-05 15:26:23.949854+00 f t 68000.00 1 68000.00 6962 106 \N 6632 +48196 2025-09-05 16:30:10.120589+00 2025-09-05 16:30:10.120603+00 f t 20500.00 1 20500.00 6964 109 \N 6634 +48395 2025-09-06 01:42:34.775909+00 2025-09-06 01:42:34.775918+00 f t 68000.00 1 68000.00 7001 106 \N 6656 +48444 2025-09-06 04:27:58.286072+00 2025-09-06 04:27:58.286083+00 f t 46000.00 1 46000.00 7006 82 \N 6659 +48486 2025-09-06 14:09:10.35552+00 2025-09-06 14:09:10.355532+00 f t 55000.00 1 55000.00 7012 84 \N 6663 +48507 2025-09-06 14:58:37.954904+00 2025-09-06 14:58:37.954912+00 f t 55000.00 1 55000.00 7019 84 \N 6669 +48529 2025-09-06 16:35:21.099551+00 2025-09-06 16:35:21.09956+00 f t 55000.00 1 55000.00 7026 84 \N 6674 +48233 2025-09-05 17:02:11.909642+00 2025-09-05 17:02:11.909655+00 f t 46000.00 1 46000.00 6967 82 \N 6635 +48234 2025-09-05 17:02:11.915022+00 2025-09-05 17:02:11.915031+00 f t 8000.00 1 8000.00 6967 85 \N 6635 +49963 2025-09-09 07:08:09.656466+00 2025-09-09 07:08:09.656479+00 f t 46000.00 1 46000.00 7181 82 \N 6810 +49964 2025-09-09 07:08:09.663121+00 2025-09-09 07:08:09.663164+00 f t 33000.00 1 33000.00 7181 140 \N 6810 +49965 2025-09-09 07:08:09.66846+00 2025-09-09 07:08:09.668472+00 f t 13000.00 1 13000.00 7181 89 \N 6810 +48243 2025-09-05 17:21:02.285077+00 2025-09-05 17:21:02.285091+00 f t 46000.00 1 46000.00 6970 82 \N 6638 +48244 2025-09-05 17:21:02.293629+00 2025-09-05 17:21:02.293641+00 f t 8000.00 1 8000.00 6970 85 \N 6638 +50109 2025-09-09 12:59:14.907895+00 2025-09-09 12:59:14.907908+00 f t 55000.00 1 55000.00 7188 84 \N 6816 +48308 2025-09-05 17:23:14.338528+00 2025-09-05 17:23:14.338537+00 f t 46000.00 1 46000.00 6969 82 \N 6637 +48309 2025-09-05 17:23:14.343397+00 2025-09-05 17:23:14.343406+00 f t 33000.00 1 33000.00 6969 133 \N 6637 +48310 2025-09-05 17:23:14.347328+00 2025-09-05 17:23:14.347337+00 f t 13000.00 1 13000.00 6969 89 \N 6637 +48312 2025-09-05 18:12:16.601454+00 2025-09-05 18:12:16.601467+00 f t 55000.00 1 55000.00 6971 84 \N 6640 +48901 2025-09-06 22:50:28.331273+00 2025-09-06 22:50:28.331284+00 f t 55000.00 1 55000.00 7042 84 \N 6685 +48319 2025-09-05 18:42:50.729499+00 2025-09-05 18:42:50.729513+00 f t 46000.00 1 46000.00 6975 82 \N 6642 +48320 2025-09-05 18:42:50.735725+00 2025-09-05 18:42:50.735739+00 f t 24000.00 1 24000.00 6975 86 \N 6642 +48948 2025-09-07 00:13:19.12974+00 2025-09-07 00:13:19.129748+00 f t 46000.00 1 46000.00 7046 82 \N 6688 +48331 2025-09-05 20:05:29.276094+00 2025-09-05 20:05:29.276108+00 f t 46000.00 1 46000.00 6979 82 \N 6644 +48332 2025-09-05 20:05:29.282468+00 2025-09-05 20:05:29.282479+00 f t 24000.00 1 24000.00 6979 163 \N 6644 +48949 2025-09-07 00:13:19.134177+00 2025-09-07 00:13:19.134185+00 f t 33000.00 1 33000.00 7046 133 \N 6688 +48950 2025-09-07 00:13:19.137622+00 2025-09-07 00:13:19.137628+00 f t 13000.00 1 13000.00 7046 89 \N 6688 +49015 2025-09-07 15:48:42.524569+00 2025-09-07 15:48:42.524579+00 f t 46000.00 1 46000.00 7063 82 \N 6701 +49016 2025-09-07 15:48:42.531249+00 2025-09-07 15:48:42.531259+00 f t 8000.00 1 8000.00 7063 85 \N 6701 +49021 2025-09-07 15:54:26.63231+00 2025-09-07 15:54:26.632325+00 f t 46000.00 1 46000.00 7066 82 \N 6704 +49022 2025-09-07 15:54:26.639601+00 2025-09-07 15:54:26.639615+00 f t 24000.00 1 24000.00 7066 88 \N 6704 +50291 2025-09-09 14:31:26.832384+00 2025-09-09 14:31:26.832397+00 f t 55000.00 1 55000.00 7196 84 \N 6823 +49094 2025-09-07 18:15:55.418734+00 2025-09-07 18:15:55.418742+00 f t 46000.00 1 46000.00 7069 82 \N 6707 +49095 2025-09-07 18:15:55.423927+00 2025-09-07 18:15:55.423936+00 f t 32500.00 1 32500.00 7069 117 \N 6707 +49096 2025-09-07 18:15:55.428406+00 2025-09-07 18:15:55.428415+00 f t 8000.00 1 8000.00 7069 85 \N 6707 +49097 2025-09-07 18:15:55.435212+00 2025-09-07 18:15:55.435221+00 f t 13000.00 1 13000.00 7069 89 \N 6707 +49105 2025-09-07 19:03:41.185079+00 2025-09-07 19:03:41.185088+00 f t 95000.00 1 95000.00 7071 103 \N 6709 +49125 2025-09-07 19:32:16.031724+00 2025-09-07 19:32:16.031737+00 f t 55000.00 1 55000.00 7074 84 \N 6713 +50327 2025-09-09 16:11:32.185467+00 2025-09-09 16:11:32.185477+00 f t 46000.00 1 46000.00 7203 82 \N 6829 +50328 2025-09-09 16:11:32.191217+00 2025-09-09 16:11:32.191227+00 f t 24000.00 1 24000.00 7203 86 \N 6829 +49153 2025-09-07 23:18:39.129848+00 2025-09-07 23:18:39.129857+00 f t 46000.00 1 46000.00 7082 82 \N 6720 +49154 2025-09-07 23:18:39.135284+00 2025-09-07 23:18:39.135292+00 f t 24000.00 1 24000.00 7082 163 \N 6720 +50342 2025-09-09 17:04:51.065492+00 2025-09-09 17:04:51.065502+00 f t 46000.00 1 46000.00 7206 82 \N 6834 +50343 2025-09-09 17:04:51.070725+00 2025-09-09 17:04:51.070732+00 f t 8000.00 1 8000.00 7206 85 \N 6834 +50366 2025-09-09 18:42:24.089+00 2025-09-09 18:42:24.089014+00 f t 55000.00 1 55000.00 7214 84 \N 6839 +49194 2025-09-08 04:10:02.833085+00 2025-09-08 04:10:02.8331+00 f t 55000.00 1 55000.00 7088 101 \N 6726 +50380 2025-09-09 19:22:46.358817+00 2025-09-09 19:22:46.358828+00 f t 46000.00 1 46000.00 7218 82 \N 6844 +50381 2025-09-09 19:22:46.364105+00 2025-09-09 19:22:46.364117+00 f t 24000.00 1 24000.00 7218 86 \N 6844 +49206 2025-09-08 10:28:26.946644+00 2025-09-08 10:28:26.946657+00 f t 46000.00 1 46000.00 7090 82 \N 6728 +49235 2025-09-08 12:32:51.318902+00 2025-09-08 12:32:51.31891+00 f t 46000.00 1 46000.00 7098 82 \N 6735 +49246 2025-09-08 13:35:49.424327+00 2025-09-08 13:35:49.424336+00 f t 46000.00 1 46000.00 7100 82 \N 6737 +49247 2025-09-08 13:35:49.428875+00 2025-09-08 13:35:49.428883+00 f t 8000.00 1 8000.00 7100 85 \N 6737 +49276 2025-09-08 14:42:27.670607+00 2025-09-08 14:42:27.67062+00 f t 46000.00 1 46000.00 7103 82 \N 6740 +49277 2025-09-08 14:42:27.67707+00 2025-09-08 14:42:27.677082+00 f t 24000.00 1 24000.00 7103 86 \N 6740 +49280 2025-09-08 14:43:30.927337+00 2025-09-08 14:43:30.927347+00 f t 46000.00 1 46000.00 7104 82 \N 6741 +49315 2025-09-08 16:46:18.059835+00 2025-09-08 16:46:18.059843+00 f t 68000.00 1 68000.00 7111 106 \N 6747 +49329 2025-09-08 17:03:24.079454+00 2025-09-08 17:03:24.079468+00 f t 46000.00 1 46000.00 7115 82 \N 6750 +49359 2025-09-08 17:08:11.720548+00 2025-09-08 17:08:11.720558+00 f t 34000.00 1 34000.00 7114 110 \N 6749 +49360 2025-09-08 17:08:11.725807+00 2025-09-08 17:08:11.725816+00 f t 46000.00 1 46000.00 7114 82 \N 6749 +49361 2025-09-08 17:08:11.729795+00 2025-09-08 17:08:11.729803+00 f t 40500.00 1 40500.00 7114 120 \N 6749 +49362 2025-09-08 17:08:11.733636+00 2025-09-08 17:08:11.733644+00 f t 7700.00 1 7700.00 7114 93 \N 6749 +49363 2025-09-08 17:08:11.737522+00 2025-09-08 17:08:11.737529+00 f t 13000.00 1 13000.00 7114 89 \N 6749 +49367 2025-09-08 17:21:23.099188+00 2025-09-08 17:21:23.099198+00 f t 55000.00 1 55000.00 7117 84 \N 6751 +49370 2025-09-08 17:37:00.473843+00 2025-09-08 17:37:00.473855+00 f t 46000.00 1 46000.00 7118 82 \N 6752 +53008 2025-09-15 00:24:43.12434+00 2025-09-15 00:24:43.124346+00 f t 13000.00 1 13000.00 7544 89 \N 7142 +53033 2025-09-15 00:28:09.364929+00 2025-09-15 00:28:09.36494+00 f t 32500.00 1 32500.00 7545 112 \N 7143 +53034 2025-09-15 00:28:09.371245+00 2025-09-15 00:28:09.371258+00 f t 46000.00 1 46000.00 7545 82 \N 7143 +53035 2025-09-15 00:28:09.376506+00 2025-09-15 00:28:09.376515+00 f t 7700.00 1 7700.00 7545 93 \N 7143 +49843 2025-09-09 02:30:14.013407+00 2025-09-09 02:30:14.013417+00 f t 30000.00 1 30000.00 7164 83 \N 6797 +75457 2025-10-28 17:28:02.951706+00 2025-10-28 17:28:02.951721+00 f t 0.00 1 0.00 10742 105 \N 9707 +49879 2025-09-09 03:08:45.209175+00 2025-09-09 03:08:45.209184+00 f t 55000.00 1 55000.00 7169 101 \N 6801 +49887 2025-09-09 03:32:50.794776+00 2025-09-09 03:32:50.794785+00 f t 46000.00 1 46000.00 7178 82 \N 6805 +49959 2025-09-09 05:18:06.606742+00 2025-09-09 05:18:06.606757+00 f t 68000.00 1 68000.00 7180 106 \N 6809 +49419 2025-09-08 18:10:29.060282+00 2025-09-08 18:10:29.060291+00 f t 46000.00 1 46000.00 7120 82 \N 6753 +49420 2025-09-08 18:10:29.064923+00 2025-09-08 18:10:29.064931+00 f t 8000.00 1 8000.00 7120 85 \N 6753 +49451 2025-09-08 18:57:19.674542+00 2025-09-08 18:57:19.674991+00 f t 46000.00 1 46000.00 7122 82 \N 6759 +49452 2025-09-08 18:57:19.681598+00 2025-09-08 18:57:19.681607+00 f t 24000.00 1 24000.00 7122 86 \N 6759 +49453 2025-09-08 18:57:37.110737+00 2025-09-08 18:57:37.110749+00 f t 46000.00 1 46000.00 7124 82 \N 6758 +49454 2025-09-08 18:57:37.117479+00 2025-09-08 18:57:37.117487+00 f t 8000.00 1 8000.00 7124 85 \N 6758 +49456 2025-09-08 18:59:15.1444+00 2025-09-08 18:59:15.14441+00 f t 46000.00 1 46000.00 7125 82 \N 6760 +49463 2025-09-08 19:24:19.521597+00 2025-09-08 19:24:19.522042+00 f t 78000.00 1 78000.00 7126 167 \N 6761 +49467 2025-09-08 19:37:39.256881+00 2025-09-08 19:37:39.256891+00 f t 46000.00 1 46000.00 7127 82 \N 6762 +49468 2025-09-08 19:37:39.261122+00 2025-09-08 19:37:39.26113+00 f t 40500.00 1 40500.00 7127 119 \N 6762 +49469 2025-09-08 19:37:39.264699+00 2025-09-08 19:37:39.264707+00 f t 13000.00 1 13000.00 7127 89 \N 6762 +50095 2025-09-09 10:08:05.029031+00 2025-09-09 10:08:05.02904+00 f t 32500.00 1 32500.00 7184 112 \N 6812 +49476 2025-09-08 19:48:24.734325+00 2025-09-08 19:48:24.734336+00 f t 55000.00 1 55000.00 7128 84 \N 6763 +49477 2025-09-08 19:48:24.739816+00 2025-09-08 19:48:24.739824+00 f t 55000.00 1 55000.00 7128 84 \N 6764 +49479 2025-09-08 19:50:58.42516+00 2025-09-08 19:50:58.425169+00 f t 55000.00 1 55000.00 7129 84 \N 6765 +50126 2025-09-09 13:13:59.46152+00 2025-09-09 13:13:59.461528+00 f t 46000.00 1 46000.00 7191 82 \N 6819 +50127 2025-09-09 13:13:59.465934+00 2025-09-09 13:13:59.465942+00 f t 8000.00 1 8000.00 7191 85 \N 6819 +49492 2025-09-08 19:52:46.514196+00 2025-09-08 19:52:46.514205+00 f t 46000.00 1 46000.00 7130 82 \N 6766 +49493 2025-09-08 19:52:46.518945+00 2025-09-08 19:52:46.518953+00 f t 24000.00 1 24000.00 7130 163 \N 6766 +49494 2025-09-08 19:52:46.522738+00 2025-09-08 19:52:46.522745+00 f t 46000.00 1 46000.00 7130 82 \N 6767 +49495 2025-09-08 19:52:46.526261+00 2025-09-08 19:52:46.526268+00 f t 24000.00 1 24000.00 7130 163 \N 6767 +50156 2025-09-09 14:25:39.395362+00 2025-09-09 14:25:39.395375+00 f t 55000.00 1 55000.00 7195 84 \N 6822 +49520 2025-09-08 20:01:33.105123+00 2025-09-08 20:01:33.105136+00 f t 55000.00 1 55000.00 7132 84 \N 6769 +49523 2025-09-08 20:15:47.664587+00 2025-09-08 20:15:47.664599+00 f t 46000.00 1 46000.00 7134 82 \N 6771 +49524 2025-09-08 20:15:47.669748+00 2025-09-08 20:15:47.66976+00 f t 8000.00 1 8000.00 7134 85 \N 6771 +49527 2025-09-08 20:21:49.817932+00 2025-09-08 20:21:49.817944+00 f t 46000.00 1 46000.00 7135 82 \N 6772 +49528 2025-09-08 20:21:49.825204+00 2025-09-08 20:21:49.825217+00 f t 8000.00 1 8000.00 7135 85 \N 6772 +49533 2025-09-08 20:43:42.545985+00 2025-09-08 20:43:42.545995+00 f t 78000.00 1 78000.00 7136 167 \N 6773 +50285 2025-09-09 14:30:58.95492+00 2025-09-09 14:30:58.954929+00 f t 46000.00 1 46000.00 7197 82 \N 6824 +50286 2025-09-09 14:30:58.959872+00 2025-09-09 14:30:58.95988+00 f t 33000.00 1 33000.00 7197 133 \N 6824 +50287 2025-09-09 14:30:58.964196+00 2025-09-09 14:30:58.964203+00 f t 8000.00 1 8000.00 7197 85 \N 6824 +50288 2025-09-09 14:30:58.967781+00 2025-09-09 14:30:58.967788+00 f t 24000.00 1 24000.00 7197 86 \N 6824 +50289 2025-09-09 14:30:58.971221+00 2025-09-09 14:30:58.971231+00 f t 13000.00 1 13000.00 7197 89 \N 6824 +49550 2025-09-08 21:12:56.173052+00 2025-09-08 21:12:56.173066+00 f t 46000.00 1 46000.00 7138 82 \N 6775 +49551 2025-09-08 21:12:56.181325+00 2025-09-08 21:12:56.181337+00 f t 24000.00 1 24000.00 7138 86 \N 6775 +50318 2025-09-09 15:18:03.638699+00 2025-09-09 15:18:03.638712+00 f t 55000.00 1 55000.00 7200 84 \N 6826 +49561 2025-09-08 21:14:02.097659+00 2025-09-08 21:14:02.097669+00 f t 46000.00 1 46000.00 7137 82 \N 6774 +49562 2025-09-08 21:14:02.104229+00 2025-09-08 21:14:02.10424+00 f t 24000.00 1 24000.00 7137 163 \N 6774 +49563 2025-09-08 21:14:02.11026+00 2025-09-08 21:14:02.11027+00 f t 46000.00 1 46000.00 7137 82 \N 6776 +49564 2025-09-08 21:14:02.115088+00 2025-09-08 21:14:02.115096+00 f t 24000.00 1 24000.00 7137 131 \N 6776 +49565 2025-09-08 21:14:02.119982+00 2025-09-08 21:14:02.119991+00 f t 13000.00 1 13000.00 7137 89 \N 6776 +49567 2025-09-08 21:32:21.111641+00 2025-09-08 21:32:21.111652+00 f t 68000.00 1 68000.00 7139 106 \N 6777 +50324 2025-09-09 15:39:07.626261+00 2025-09-09 15:39:07.626271+00 f t 55000.00 1 55000.00 7201 84 \N 6827 +49569 2025-09-08 21:48:24.891095+00 2025-09-08 21:48:24.891109+00 f t 30000.00 1 30000.00 7140 83 \N 750 +50338 2025-09-09 16:45:35.878383+00 2025-09-09 16:45:35.878396+00 f t 46000.00 1 46000.00 7205 82 \N 6832 +50339 2025-09-09 16:45:35.884195+00 2025-09-09 16:45:35.884204+00 f t 46000.00 1 46000.00 7205 82 \N 6833 +50373 2025-09-09 19:05:51.190938+00 2025-09-09 19:05:51.190948+00 f t 46000.00 1 46000.00 7217 82 \N 6841 +50374 2025-09-09 19:05:51.195679+00 2025-09-09 19:05:51.195688+00 f t 24000.00 1 24000.00 7217 86 \N 6841 +49620 2025-09-08 23:11:06.015972+00 2025-09-08 23:11:06.015984+00 f t 46000.00 1 46000.00 7142 82 \N 6778 +49621 2025-09-08 23:11:06.022176+00 2025-09-08 23:11:06.022185+00 f t 24000.00 1 24000.00 7142 86 \N 6778 +50465 2025-09-09 19:58:08.953471+00 2025-09-09 19:58:08.953481+00 f t 46000.00 1 46000.00 7220 82 \N 6846 +50466 2025-09-09 19:58:08.958675+00 2025-09-09 19:58:08.958682+00 f t 46000.00 1 46000.00 7220 82 \N 6849 +50469 2025-09-09 21:34:15.778473+00 2025-09-09 21:34:15.778485+00 f t 46000.00 1 46000.00 7225 82 \N 6852 +50470 2025-09-09 21:34:15.784855+00 2025-09-09 21:34:15.784865+00 f t 24000.00 1 24000.00 7225 86 \N 6852 +50473 2025-09-09 22:08:24.364206+00 2025-09-09 22:08:24.364219+00 f t 46000.00 1 46000.00 7227 82 \N 6854 +50474 2025-09-09 22:08:24.370773+00 2025-09-09 22:08:24.370784+00 f t 24000.00 1 24000.00 7227 86 \N 6854 +50476 2025-09-09 23:22:19.292921+00 2025-09-09 23:22:19.292961+00 f t 46000.00 1 46000.00 7229 82 \N 6856 +50484 2025-09-09 23:53:01.71728+00 2025-09-09 23:53:01.71729+00 f t 30000.00 1 30000.00 7231 83 \N 6857 +50504 2025-09-10 00:43:58.12384+00 2025-09-10 00:43:58.123855+00 f t 30000.00 1 30000.00 7234 83 \N 6861 +49669 2025-09-08 23:26:46.291178+00 2025-09-08 23:26:46.29119+00 f t 46000.00 1 46000.00 7143 82 \N 6779 +49670 2025-09-08 23:26:46.296016+00 2025-09-08 23:26:46.296028+00 f t 24000.00 1 24000.00 7143 86 \N 6779 +53036 2025-09-15 00:28:09.381544+00 2025-09-15 00:28:09.381552+00 f t 13200.00 1 13200.00 7545 146 \N 7143 +49864 2025-09-09 02:41:26.790986+00 2025-09-09 02:41:26.790995+00 f t 46000.00 1 46000.00 7166 82 \N 6799 +53082 2025-09-15 01:29:05.494863+00 2025-09-15 01:29:05.494876+00 f t 20500.00 1 20500.00 7548 109 \N 7146 +53083 2025-09-15 01:29:05.505956+00 2025-09-15 01:29:05.505965+00 f t 46000.00 1 46000.00 7548 82 \N 7146 +53084 2025-09-15 01:29:05.513048+00 2025-09-15 01:29:05.513058+00 f t 7700.00 1 7700.00 7548 93 \N 7146 +53085 2025-09-15 01:29:05.520206+00 2025-09-15 01:29:05.520215+00 f t 13200.00 1 13200.00 7548 146 \N 7146 +49705 2025-09-08 23:33:24.141057+00 2025-09-08 23:33:24.141066+00 f t 34000.00 1 34000.00 7144 110 \N 6780 +49706 2025-09-08 23:33:24.146625+00 2025-09-08 23:33:24.146634+00 f t 46000.00 1 46000.00 7144 82 \N 6780 +49954 2025-09-09 05:06:48.706288+00 2025-09-09 05:06:48.706303+00 f t 46000.00 1 46000.00 7179 82 \N 6807 +49955 2025-09-09 05:06:48.713274+00 2025-09-09 05:06:48.713286+00 f t 24000.00 1 24000.00 7179 163 \N 6807 +49956 2025-09-09 05:06:48.719752+00 2025-09-09 05:06:48.719765+00 f t 46000.00 1 46000.00 7179 82 \N 6808 +49957 2025-09-09 05:06:48.72694+00 2025-09-09 05:06:48.726954+00 f t 24000.00 1 24000.00 7179 163 \N 6808 +49714 2025-09-08 23:35:25.365659+00 2025-09-08 23:35:25.365672+00 f t 55000.00 1 55000.00 7145 84 \N 6781 +53212 2025-09-15 15:29:19.366435+00 2025-09-15 15:29:19.366445+00 f t 31500.00 1 31500.00 7557 111 \N 7156 +53213 2025-09-15 15:29:19.373035+00 2025-09-15 15:29:19.373048+00 f t 46000.00 1 46000.00 7557 82 \N 7156 +53214 2025-09-15 15:29:19.379594+00 2025-09-15 15:29:19.379605+00 f t 7700.00 1 7700.00 7557 93 \N 7156 +53215 2025-09-15 15:29:19.385999+00 2025-09-15 15:29:19.386012+00 f t 13200.00 1 13200.00 7557 146 \N 7156 +53267 2025-09-15 17:57:43.995027+00 2025-09-15 17:57:43.995039+00 f t 46000.00 1 46000.00 7562 82 \N 7161 +53333 2025-09-15 20:53:40.133441+00 2025-09-15 20:53:40.133454+00 f t 46000.00 1 46000.00 7569 82 \N 7169 +53334 2025-09-15 20:53:40.140576+00 2025-09-15 20:53:40.140586+00 f t 24000.00 1 24000.00 7569 86 \N 7169 +53340 2025-09-15 21:18:13.189879+00 2025-09-15 21:18:13.189888+00 f t 46000.00 1 46000.00 7570 82 \N 7170 +53341 2025-09-15 21:18:13.197969+00 2025-09-15 21:18:13.197978+00 f t 8000.00 1 8000.00 7570 85 \N 7170 +53358 2025-09-15 22:51:46.90306+00 2025-09-15 22:51:46.903073+00 f t 46000.00 1 46000.00 7576 82 \N 7174 +49754 2025-09-08 23:48:02.232447+00 2025-09-08 23:48:02.23246+00 f t 46000.00 1 46000.00 7146 82 \N 6782 +49757 2025-09-08 23:55:59.393136+00 2025-09-08 23:55:59.393145+00 f t 46000.00 1 46000.00 7148 82 \N 6784 +49758 2025-09-08 23:55:59.398582+00 2025-09-08 23:55:59.398591+00 f t 8000.00 1 8000.00 7148 85 \N 6784 +50111 2025-09-09 13:06:23.110982+00 2025-09-09 13:06:23.110995+00 f t 46000.00 1 46000.00 7189 82 \N 6817 +49770 2025-09-09 00:33:29.84743+00 2025-09-09 00:33:29.84744+00 f t 55000.00 1 55000.00 7153 84 \N 6786 +50122 2025-09-09 13:11:08.997326+00 2025-09-09 13:11:08.997336+00 f t 46000.00 1 46000.00 7190 82 \N 6818 +49773 2025-09-09 00:39:19.411484+00 2025-09-09 00:39:19.411493+00 f t 46000.00 1 46000.00 7154 82 \N 6787 +49774 2025-09-09 00:39:19.416684+00 2025-09-09 00:39:19.416694+00 f t 24000.00 1 24000.00 7154 88 \N 6787 +50123 2025-09-09 13:11:09.003815+00 2025-09-09 13:11:09.003828+00 f t 24000.00 1 24000.00 7190 86 \N 6818 +49776 2025-09-09 00:49:39.664886+00 2025-09-09 00:49:39.664895+00 f t 55000.00 1 55000.00 7155 84 \N 6788 +50131 2025-09-09 13:56:14.712811+00 2025-09-09 13:56:14.71282+00 f t 55000.00 1 55000.00 7187 84 \N 6815 +49782 2025-09-09 01:00:09.579246+00 2025-09-09 01:00:09.579258+00 f t 95000.00 1 95000.00 7156 103 \N 6789 +49783 2025-09-09 01:00:09.586136+00 2025-09-09 01:00:09.586148+00 f t 130000.00 1 130000.00 7156 164 \N 6789 +50152 2025-09-09 14:15:50.551289+00 2025-09-09 14:15:50.551297+00 f t 93750.00 1 93750.00 7194 90 \N 6821 +50153 2025-09-09 14:15:50.556779+00 2025-09-09 14:15:50.55679+00 f t 76000.00 1 76000.00 7194 97 \N 6821 +49788 2025-09-09 01:04:32.269601+00 2025-09-09 01:04:32.26961+00 f t 32500.00 1 32500.00 7157 112 \N 6790 +50154 2025-09-09 14:15:50.561671+00 2025-09-09 14:15:50.561679+00 f t 46000.00 1 46000.00 7194 82 \N 6821 +49791 2025-09-09 01:07:07.766986+00 2025-09-09 01:07:07.766999+00 f t 75000.00 1 75000.00 7159 108 \N 6792 +49795 2025-09-09 01:21:22.338026+00 2025-09-09 01:21:22.338038+00 f t 30000.00 1 30000.00 7160 83 \N 6793 +49812 2025-09-09 01:47:37.624599+00 2025-09-09 01:47:37.624611+00 f t 72500.00 1 72500.00 7161 104 \N 6794 +49813 2025-09-09 01:47:37.631366+00 2025-09-09 01:47:37.631375+00 f t 46000.00 1 46000.00 7161 82 \N 6794 +49814 2025-09-09 01:47:37.63579+00 2025-09-09 01:47:37.635798+00 f t 8000.00 1 8000.00 7161 85 \N 6794 +50294 2025-09-09 14:44:18.505038+00 2025-09-09 14:44:18.50505+00 f t 46000.00 1 46000.00 7198 82 \N 6825 +50295 2025-09-09 14:44:18.51109+00 2025-09-09 14:44:18.511099+00 f t 8000.00 1 8000.00 7198 85 \N 6825 +50304 2025-09-09 14:58:54.774748+00 2025-09-09 14:58:54.774757+00 f t 55000.00 1 55000.00 7185 84 \N 6813 +50346 2025-09-09 18:19:45.220546+00 2025-09-09 18:19:45.220559+00 f t 46000.00 1 46000.00 7210 82 \N 6836 +50347 2025-09-09 18:19:45.227863+00 2025-09-09 18:19:45.227873+00 f t 24000.00 1 24000.00 7210 88 \N 6836 +50362 2025-09-09 18:27:43.78415+00 2025-09-09 18:27:43.784162+00 f t 55000.00 1 55000.00 7211 84 \N 6837 +50421 2025-09-09 19:44:15.389687+00 2025-09-09 19:44:15.3897+00 f t 46000.00 1 46000.00 7219 82 \N 6845 +50422 2025-09-09 19:44:15.395055+00 2025-09-09 19:44:15.395065+00 f t 29000.00 1 29000.00 7219 123 \N 6845 +50423 2025-09-09 19:44:15.399569+00 2025-09-09 19:44:15.399581+00 f t 8000.00 1 8000.00 7219 85 \N 6845 +50424 2025-09-09 19:44:15.404554+00 2025-09-09 19:44:15.404564+00 f t 24000.00 1 24000.00 7219 88 \N 6845 +50425 2025-09-09 19:44:15.409749+00 2025-09-09 19:44:15.40976+00 f t 24000.00 1 24000.00 7219 163 \N 6845 +50426 2025-09-09 19:44:15.418138+00 2025-09-09 19:44:15.418147+00 f t 13000.00 1 13000.00 7219 89 \N 6845 +50490 2025-09-10 00:03:17.519595+00 2025-09-10 00:03:17.519603+00 f t 46000.00 1 46000.00 7232 82 \N 6858 +50491 2025-09-10 00:03:17.52407+00 2025-09-10 00:03:17.524107+00 f t 30000.00 1 30000.00 7232 83 \N 6858 +50534 2025-09-10 01:00:15.841142+00 2025-09-10 01:00:15.841152+00 f t 46000.00 1 46000.00 7235 82 \N 6862 +50535 2025-09-10 01:00:15.848544+00 2025-09-10 01:00:15.848557+00 f t 24000.00 1 24000.00 7235 163 \N 6862 +50536 2025-09-10 01:00:15.855008+00 2025-09-10 01:00:15.855021+00 f t 46000.00 1 46000.00 7235 82 \N 6864 +50541 2025-09-10 01:42:51.580835+00 2025-09-10 01:42:51.580848+00 f t 46000.00 1 46000.00 7240 82 \N 6866 +50542 2025-09-10 01:42:51.587463+00 2025-09-10 01:42:51.587476+00 f t 75000.00 1 75000.00 7240 143 \N 6866 +50544 2025-09-10 02:43:57.612493+00 2025-09-10 02:43:57.612502+00 f t 68000.00 1 68000.00 7241 106 \N 6867 +50557 2025-09-10 07:34:53.256618+00 2025-09-10 07:34:53.256626+00 f t 46000.00 1 46000.00 7244 82 \N 6872 +50558 2025-09-10 07:34:53.260668+00 2025-09-10 07:34:53.260675+00 f t 33000.00 1 33000.00 7244 133 \N 6872 +50559 2025-09-10 07:34:53.263902+00 2025-09-10 07:34:53.263909+00 f t 13000.00 1 13000.00 7244 89 \N 6872 +50561 2025-09-10 08:47:35.895108+00 2025-09-10 08:47:35.895116+00 f t 55000.00 1 55000.00 7245 84 \N 6873 +50565 2025-09-10 11:29:39.454695+00 2025-09-10 11:29:39.454704+00 f t 78000.00 1 78000.00 7247 167 \N 6875 +50571 2025-09-10 11:37:27.190399+00 2025-09-10 11:37:27.19041+00 f t 30000.00 1 30000.00 7248 83 \N 6876 +50577 2025-09-10 11:54:59.421558+00 2025-09-10 11:54:59.421568+00 f t 55000.00 1 55000.00 7250 84 \N 6878 +51533 2025-09-11 14:47:53.555154+00 2025-09-11 14:47:53.555164+00 f t 46000.00 1 46000.00 7343 82 \N 6956 +51534 2025-09-11 14:47:53.559781+00 2025-09-11 14:47:53.559789+00 f t 11000.00 1 11000.00 7343 116 \N 6956 +51535 2025-09-11 14:47:53.563323+00 2025-09-11 14:47:53.563331+00 f t 32500.00 1 32500.00 7343 117 \N 6956 +51536 2025-09-11 14:47:53.5679+00 2025-09-11 14:47:53.567908+00 f t 7700.00 1 7700.00 7343 93 \N 6956 +51537 2025-09-11 14:47:53.571587+00 2025-09-11 14:47:53.571595+00 f t 13200.00 1 13200.00 7343 146 \N 6956 +51538 2025-09-11 14:47:53.575582+00 2025-09-11 14:47:53.57559+00 f t 8000.00 1 8000.00 7343 85 \N 6956 +51539 2025-09-11 14:47:53.579527+00 2025-09-11 14:47:53.579535+00 f t 24000.00 1 24000.00 7343 86 \N 6956 +51540 2025-09-11 14:47:53.583786+00 2025-09-11 14:47:53.583794+00 f t 13000.00 1 13000.00 7343 89 \N 6956 +50586 2025-09-10 12:53:41.82915+00 2025-09-10 12:53:41.829159+00 f t 55000.00 1 55000.00 7254 84 \N 6880 +50588 2025-09-10 13:19:13.30043+00 2025-09-10 13:19:13.300442+00 f t 95000.00 1 95000.00 7256 103 \N 6882 +51551 2025-09-11 15:10:15.622808+00 2025-09-11 15:10:15.622816+00 f t 46000.00 1 46000.00 7347 82 \N 6958 +51552 2025-09-11 15:10:15.627377+00 2025-09-11 15:10:15.627387+00 f t 8000.00 1 8000.00 7347 85 \N 6958 +50592 2025-09-10 14:32:42.908916+00 2025-09-10 14:32:42.908928+00 f t 46000.00 1 46000.00 7258 82 \N 6883 +51562 2025-09-11 16:16:07.802953+00 2025-09-11 16:16:07.802961+00 f t 46000.00 1 46000.00 7351 82 \N 6962 +51571 2025-09-11 18:55:14.392146+00 2025-09-11 18:55:14.392154+00 f t 72500.00 1 72500.00 7361 104 \N 6971 +50599 2025-09-10 15:24:19.312398+00 2025-09-10 15:24:19.312407+00 f t 46000.00 1 46000.00 7260 82 \N 6885 +50600 2025-09-10 15:24:19.317739+00 2025-09-10 15:24:19.31775+00 f t 29000.00 1 29000.00 7260 124 \N 6885 +50601 2025-09-10 15:24:19.322579+00 2025-09-10 15:24:19.322588+00 f t 13000.00 1 13000.00 7260 89 \N 6885 +50608 2025-09-10 15:28:58.61348+00 2025-09-10 15:28:58.613489+00 f t 46000.00 1 46000.00 7261 82 \N 6886 +50609 2025-09-10 15:28:58.618197+00 2025-09-10 15:28:58.61821+00 f t 24000.00 1 24000.00 7261 163 \N 6886 +50616 2025-09-10 16:07:50.312193+00 2025-09-10 16:07:50.312205+00 f t 55000.00 1 55000.00 7265 84 \N 6888 +50619 2025-09-10 16:25:41.33018+00 2025-09-10 16:25:41.330192+00 f t 46000.00 1 46000.00 7266 82 \N 6889 +50620 2025-09-10 16:25:41.335113+00 2025-09-10 16:25:41.33512+00 f t 8000.00 1 8000.00 7266 85 \N 6889 +50622 2025-09-10 16:40:14.066245+00 2025-09-10 16:40:14.066257+00 f t 30000.00 1 30000.00 7268 83 \N 6890 +50624 2025-09-10 16:41:13.772295+00 2025-09-10 16:41:13.772304+00 f t 46000.00 1 46000.00 7267 82 \N 6891 +50627 2025-09-10 16:44:00.687079+00 2025-09-10 16:44:00.68709+00 f t 46000.00 1 46000.00 7269 82 \N 6892 +50628 2025-09-10 16:44:00.692703+00 2025-09-10 16:44:00.692712+00 f t 87500.00 1 87500.00 7269 141 \N 6892 +50630 2025-09-10 16:46:46.633956+00 2025-09-10 16:46:46.633965+00 f t 30000.00 1 30000.00 7270 83 \N 6893 +50636 2025-09-10 17:09:55.559346+00 2025-09-10 17:09:55.55936+00 f t 31500.00 1 31500.00 7271 111 \N 6894 +50637 2025-09-10 17:09:55.566378+00 2025-09-10 17:09:55.56639+00 f t 46000.00 1 46000.00 7271 82 \N 6894 +50642 2025-09-10 17:39:51.630893+00 2025-09-10 17:39:51.630908+00 f t 55000.00 1 55000.00 7274 84 \N 6895 +50645 2025-09-10 19:05:14.935355+00 2025-09-10 19:05:14.935365+00 f t 46000.00 1 46000.00 7280 82 \N 6897 +50646 2025-09-10 19:05:14.940263+00 2025-09-10 19:05:14.940273+00 f t 24000.00 1 24000.00 7280 163 \N 6897 +50668 2025-09-10 19:08:11.757976+00 2025-09-10 19:08:11.757988+00 f t 34000.00 1 34000.00 7281 110 \N 6898 +50669 2025-09-10 19:08:11.763363+00 2025-09-10 19:08:11.763374+00 f t 68000.00 1 68000.00 7281 106 \N 6898 +50674 2025-09-10 19:17:06.437934+00 2025-09-10 19:17:06.437945+00 f t 34000.00 1 34000.00 7282 110 \N 6899 +50675 2025-09-10 19:17:06.443332+00 2025-09-10 19:17:06.443341+00 f t 46000.00 1 46000.00 7282 82 \N 6899 +50676 2025-09-10 19:17:06.448145+00 2025-09-10 19:17:06.448153+00 f t 7700.00 1 7700.00 7282 93 \N 6899 +50677 2025-09-10 19:17:06.452605+00 2025-09-10 19:17:06.452612+00 f t 13200.00 1 13200.00 7282 146 \N 6899 +50697 2025-09-10 19:21:40.807083+00 2025-09-10 19:21:40.807092+00 f t 46000.00 1 46000.00 7283 82 \N 6900 +50698 2025-09-10 19:21:40.811832+00 2025-09-10 19:21:40.81184+00 f t 8000.00 1 8000.00 7283 85 \N 6900 +50699 2025-09-10 19:21:40.815713+00 2025-09-10 19:21:40.815722+00 f t 46000.00 1 46000.00 7283 82 \N 6901 +50700 2025-09-10 19:21:40.819696+00 2025-09-10 19:21:40.819707+00 f t 8000.00 1 8000.00 7283 85 \N 6901 +50710 2025-09-10 19:42:15.960354+00 2025-09-10 19:42:15.960363+00 f t 46000.00 1 46000.00 7288 82 \N 6905 +50750 2025-09-10 19:49:15.977348+00 2025-09-10 19:49:15.977357+00 f t 46000.00 1 46000.00 7290 82 \N 6907 +50751 2025-09-10 19:49:15.982312+00 2025-09-10 19:49:15.982322+00 f t 68000.00 1 68000.00 7290 106 \N 6907 +50784 2025-09-10 19:56:46.024994+00 2025-09-10 19:56:46.025006+00 f t 34000.00 1 34000.00 7292 110 \N 6908 +50785 2025-09-10 19:56:46.031613+00 2025-09-10 19:56:46.031622+00 f t 55000.00 1 55000.00 7292 84 \N 6908 +50786 2025-09-10 19:56:46.036377+00 2025-09-10 19:56:46.036385+00 f t 46000.00 1 46000.00 7292 82 \N 6908 +50787 2025-09-10 19:56:46.040778+00 2025-09-10 19:56:46.040786+00 f t 7700.00 1 7700.00 7292 93 \N 6908 +50788 2025-09-10 19:56:46.045605+00 2025-09-10 19:56:46.045616+00 f t 13200.00 1 13200.00 7292 146 \N 6908 +50809 2025-09-10 19:59:40.40978+00 2025-09-10 19:59:40.409793+00 f t 46000.00 1 46000.00 7293 82 \N 6909 +50810 2025-09-10 19:59:40.415778+00 2025-09-10 19:59:40.415789+00 f t 7700.00 1 7700.00 7293 91 \N 6909 +50811 2025-09-10 19:59:40.420921+00 2025-09-10 19:59:40.42093+00 f t 24000.00 1 24000.00 7293 131 \N 6909 +50812 2025-09-10 19:59:40.424981+00 2025-09-10 19:59:40.42499+00 f t 13000.00 1 13000.00 7293 89 \N 6909 +50822 2025-09-10 20:02:20.068771+00 2025-09-10 20:02:20.068779+00 f t 32500.00 1 32500.00 7294 112 \N 6910 +50823 2025-09-10 20:02:20.073621+00 2025-09-10 20:02:20.073629+00 f t 46000.00 1 46000.00 7294 82 \N 6910 +50824 2025-09-10 20:02:20.077899+00 2025-09-10 20:02:20.077907+00 f t 7700.00 1 7700.00 7294 93 \N 6910 +50825 2025-09-10 20:02:20.081897+00 2025-09-10 20:02:20.081905+00 f t 13200.00 1 13200.00 7294 146 \N 6910 +50837 2025-09-10 20:06:30.936312+00 2025-09-10 20:06:30.936324+00 f t 46000.00 1 46000.00 7295 82 \N 6911 +50839 2025-09-10 20:14:55.990894+00 2025-09-10 20:14:55.990902+00 f t 75000.00 1 75000.00 7296 108 \N 6912 +50842 2025-09-10 20:16:49.222775+00 2025-09-10 20:16:49.222787+00 f t 46000.00 1 46000.00 7297 82 \N 6913 +50843 2025-09-10 20:16:49.227391+00 2025-09-10 20:16:49.227399+00 f t 8000.00 1 8000.00 7297 85 \N 6913 +50846 2025-09-10 20:17:10.119468+00 2025-09-10 20:17:10.119477+00 f t 46000.00 1 46000.00 7298 82 \N 6914 +50847 2025-09-10 20:17:10.124497+00 2025-09-10 20:17:10.124505+00 f t 24000.00 1 24000.00 7298 86 \N 6914 +51523 2025-09-11 14:23:23.589419+00 2025-09-11 14:23:23.589428+00 f t 46000.00 1 46000.00 7345 82 \N 6957 +51524 2025-09-11 14:23:23.594233+00 2025-09-11 14:23:23.594241+00 f t 8000.00 1 8000.00 7345 85 \N 6957 +50878 2025-09-10 21:02:41.411938+00 2025-09-10 21:02:41.411947+00 f t 46000.00 1 46000.00 7299 82 \N 6916 +50879 2025-09-10 21:02:41.417726+00 2025-09-10 21:02:41.417737+00 f t 24000.00 1 24000.00 7299 88 \N 6916 +50880 2025-09-10 21:02:41.422178+00 2025-09-10 21:02:41.422186+00 f t 46000.00 1 46000.00 7299 82 \N 6917 +50881 2025-09-10 21:02:41.42708+00 2025-09-10 21:02:41.427088+00 f t 24000.00 1 24000.00 7299 88 \N 6917 +50882 2025-09-10 21:02:41.431369+00 2025-09-10 21:02:41.431377+00 f t 46000.00 1 46000.00 7299 82 \N 6918 +50883 2025-09-10 21:02:41.435672+00 2025-09-10 21:02:41.435681+00 f t 24000.00 1 24000.00 7299 88 \N 6918 +51559 2025-09-11 15:36:03.950408+00 2025-09-11 15:36:03.950418+00 f t 46000.00 1 46000.00 7349 82 \N 6960 +51560 2025-09-11 15:36:03.955747+00 2025-09-11 15:36:03.955755+00 f t 24000.00 1 24000.00 7349 86 \N 6960 +51566 2025-09-11 16:42:38.630782+00 2025-09-11 16:42:38.630795+00 f t 46000.00 1 46000.00 7352 82 \N 6963 +51569 2025-09-11 18:17:58.982289+00 2025-09-11 18:17:58.982299+00 f t 68000.00 1 68000.00 7358 106 \N 6970 +50893 2025-09-10 21:28:49.691209+00 2025-09-10 21:28:49.691221+00 f t 55000.00 1 55000.00 7302 84 \N 6922 +50897 2025-09-10 21:53:59.740315+00 2025-09-10 21:53:59.740325+00 f t 30000.00 1 30000.00 7300 83 \N 6920 +50901 2025-09-10 22:03:12.431992+00 2025-09-10 22:03:12.432004+00 f t 30000.00 1 30000.00 7304 83 \N 6925 +50903 2025-09-10 22:23:29.453612+00 2025-09-10 22:23:29.453621+00 f t 46000.00 1 46000.00 7305 82 \N 6926 +50906 2025-09-10 22:42:05.661109+00 2025-09-10 22:42:05.661117+00 f t 55000.00 1 55000.00 7306 84 \N 6927 +50908 2025-09-10 22:44:26.938838+00 2025-09-10 22:44:26.938849+00 f t 55000.00 1 55000.00 7307 84 \N 6928 +51604 2025-09-11 20:34:45.207046+00 2025-09-11 20:34:45.207056+00 f t 46000.00 1 46000.00 7367 82 \N 6976 +51605 2025-09-11 20:34:45.211638+00 2025-09-11 20:34:45.211647+00 f t 8000.00 1 8000.00 7367 85 \N 6976 +51613 2025-09-11 22:57:07.086887+00 2025-09-11 22:57:07.086901+00 f t 55000.00 1 55000.00 7374 84 \N 6981 +50926 2025-09-10 23:07:21.279444+00 2025-09-10 23:07:21.279457+00 f t 46000.00 1 46000.00 7308 82 \N 6929 +50927 2025-09-10 23:07:21.284413+00 2025-09-10 23:07:21.28442+00 f t 8000.00 1 8000.00 7308 85 \N 6929 +50928 2025-09-10 23:07:21.288217+00 2025-09-10 23:07:21.288225+00 f t 24000.00 1 24000.00 7308 163 \N 6929 +50929 2025-09-10 23:38:53.333321+00 2025-09-10 23:38:53.333334+00 f t 46000.00 1 46000.00 7303 82 \N 6924 +50936 2025-09-10 23:43:56.304064+00 2025-09-10 23:43:56.304659+00 f t 46000.00 1 46000.00 7309 82 \N 6930 +50937 2025-09-10 23:43:56.313384+00 2025-09-10 23:43:56.313391+00 f t 24000.00 1 24000.00 7309 86 \N 6930 +51643 2025-09-11 23:18:05.564151+00 2025-09-11 23:18:05.56416+00 f t 46000.00 1 46000.00 7376 82 \N 6983 +51644 2025-09-11 23:18:05.569968+00 2025-09-11 23:18:05.569977+00 f t 24000.00 1 24000.00 7376 86 \N 6983 +51645 2025-09-11 23:18:05.574388+00 2025-09-11 23:18:05.574399+00 f t 24000.00 1 24000.00 7376 87 \N 6983 +50942 2025-09-11 01:07:59.25457+00 2025-09-11 01:07:59.254581+00 f t 32500.00 1 32500.00 7314 112 \N 6935 +50943 2025-09-11 01:07:59.260776+00 2025-09-11 01:07:59.260784+00 f t 46000.00 1 46000.00 7314 82 \N 6935 +50944 2025-09-11 01:07:59.264895+00 2025-09-11 01:07:59.264903+00 f t 7700.00 1 7700.00 7314 93 \N 6935 +50945 2025-09-11 01:07:59.268967+00 2025-09-11 01:07:59.268975+00 f t 13200.00 1 13200.00 7314 146 \N 6935 +51647 2025-09-11 23:30:34.532409+00 2025-09-11 23:30:34.532418+00 f t 46000.00 1 46000.00 7377 82 \N 6984 +50947 2025-09-11 01:09:58.47273+00 2025-09-11 01:09:58.47274+00 f t 46000.00 1 46000.00 7315 82 \N 6937 +50956 2025-09-11 01:12:26.982843+00 2025-09-11 01:12:26.982852+00 f t 32500.00 1 32500.00 7316 112 \N 6936 +50957 2025-09-11 01:12:26.987536+00 2025-09-11 01:12:26.987544+00 f t 46000.00 1 46000.00 7316 82 \N 6936 +50958 2025-09-11 01:12:26.992552+00 2025-09-11 01:12:26.992563+00 f t 7700.00 1 7700.00 7316 93 \N 6936 +50959 2025-09-11 01:12:26.996923+00 2025-09-11 01:12:26.996934+00 f t 13200.00 1 13200.00 7316 146 \N 6936 +51756 2025-09-11 23:54:04.883055+00 2025-09-11 23:54:04.883064+00 f t 95000.00 1 95000.00 7378 103 \N 6986 +51757 2025-09-11 23:54:04.888501+00 2025-09-11 23:54:04.88851+00 f t 76000.00 1 76000.00 7378 97 \N 6986 +51758 2025-09-11 23:54:04.893002+00 2025-09-11 23:54:04.89301+00 f t 46000.00 1 46000.00 7378 82 \N 6986 +51759 2025-09-11 23:54:04.897327+00 2025-09-11 23:54:04.897335+00 f t 69000.00 1 69000.00 7378 142 \N 6986 +51760 2025-09-11 23:54:04.901416+00 2025-09-11 23:54:04.901424+00 f t 13200.00 1 13200.00 7378 146 \N 6986 +51761 2025-09-11 23:54:04.905556+00 2025-09-11 23:54:04.905564+00 f t 8000.00 1 8000.00 7378 85 \N 6986 +51765 2025-09-12 00:12:54.550778+00 2025-09-12 00:12:54.550788+00 f t 55000.00 1 55000.00 7379 84 \N 6987 +51036 2025-09-11 01:26:27.438747+00 2025-09-11 01:26:27.438756+00 f t 20500.00 1 20500.00 7318 109 \N 6939 +51037 2025-09-11 01:26:27.443348+00 2025-09-11 01:26:27.443356+00 f t 46000.00 1 46000.00 7318 82 \N 6939 +51038 2025-09-11 01:26:27.447069+00 2025-09-11 01:26:27.447079+00 f t 7700.00 1 7700.00 7318 93 \N 6939 +51039 2025-09-11 01:26:27.451067+00 2025-09-11 01:26:27.451075+00 f t 13200.00 1 13200.00 7318 146 \N 6939 +51048 2025-09-11 02:05:39.671215+00 2025-09-11 02:05:39.671223+00 f t 46000.00 1 46000.00 7320 82 \N 6940 +51051 2025-09-11 02:08:31.649037+00 2025-09-11 02:08:31.649045+00 f t 46000.00 1 46000.00 7321 82 \N 6941 +51063 2025-09-11 03:38:59.017866+00 2025-09-11 03:38:59.017878+00 f t 46000.00 1 46000.00 7328 82 \N 6943 +51064 2025-09-11 03:38:59.023553+00 2025-09-11 03:38:59.023561+00 f t 24000.00 1 24000.00 7328 163 \N 6943 +51085 2025-09-11 04:26:51.013012+00 2025-09-11 04:26:51.013024+00 f t 46000.00 1 46000.00 7330 82 \N 6944 +51086 2025-09-11 04:26:51.019737+00 2025-09-11 04:26:51.019745+00 f t 24000.00 1 24000.00 7330 163 \N 6944 +51092 2025-09-11 04:48:47.810236+00 2025-09-11 04:48:47.810245+00 f t 68000.00 1 68000.00 7331 106 \N 6945 +51093 2025-09-11 04:48:47.815018+00 2025-09-11 04:48:47.815026+00 f t 78000.00 1 78000.00 7331 167 \N 6945 +51098 2025-09-11 05:23:47.88403+00 2025-09-11 05:23:47.884039+00 f t 55000.00 1 55000.00 7332 84 \N 6946 +51100 2025-09-11 08:13:30.794234+00 2025-09-11 08:13:30.794245+00 f t 55000.00 1 55000.00 7333 84 \N 6947 +51107 2025-09-11 11:17:27.586446+00 2025-09-11 11:17:27.586462+00 f t 46000.00 1 46000.00 7335 82 \N 6948 +51108 2025-09-11 11:17:27.591823+00 2025-09-11 11:17:27.591833+00 f t 24000.00 1 24000.00 7335 86 \N 6948 +61777 2025-09-30 12:55:50.605401+00 2025-09-30 12:55:50.60541+00 f t 46000.00 1 46000.00 8588 82 \N 8052 +53046 2025-09-15 00:46:35.019515+00 2025-09-15 00:46:35.019527+00 f t 20500.00 1 20500.00 7546 109 \N 7144 +53047 2025-09-15 00:46:35.028011+00 2025-09-15 00:46:35.028025+00 f t 46000.00 1 46000.00 7546 82 \N 7144 +53048 2025-09-15 00:46:35.035796+00 2025-09-15 00:46:35.035805+00 f t 7700.00 1 7700.00 7546 93 \N 7144 +53049 2025-09-15 00:46:35.041056+00 2025-09-15 00:46:35.041065+00 f t 13200.00 1 13200.00 7546 146 \N 7144 +61825 2025-09-30 16:45:11.470936+00 2025-09-30 16:45:11.470953+00 f t 107000.00 1 107000.00 8599 103 \N 8062 +51139 2025-09-11 13:33:27.257553+00 2025-09-11 13:33:27.257564+00 f t 34000.00 1 34000.00 7337 110 \N 6950 +51140 2025-09-11 13:33:27.262593+00 2025-09-11 13:33:27.262601+00 f t 46000.00 1 46000.00 7337 82 \N 6950 +51141 2025-09-11 13:33:27.266858+00 2025-09-11 13:33:27.266867+00 f t 7700.00 1 7700.00 7337 93 \N 6950 +51142 2025-09-11 13:33:27.2711+00 2025-09-11 13:33:27.271108+00 f t 75000.00 1 75000.00 7337 108 \N 6950 +51143 2025-09-11 13:33:27.275121+00 2025-09-11 13:33:27.275147+00 f t 13200.00 1 13200.00 7337 146 \N 6950 +61867 2025-09-30 19:18:37.750009+00 2025-09-30 19:18:37.750018+00 f t 46000.00 1 46000.00 8606 82 \N 8069 +51146 2025-09-11 13:46:31.981377+00 2025-09-11 13:46:31.98139+00 f t 46000.00 1 46000.00 7338 82 \N 6951 +51147 2025-09-11 13:46:31.987375+00 2025-09-11 13:46:31.987386+00 f t 8000.00 1 8000.00 7338 85 \N 6951 +51564 2025-09-11 16:42:16.865511+00 2025-09-11 16:42:16.86552+00 f t 46000.00 1 46000.00 7353 82 \N 6964 +51573 2025-09-11 19:07:56.870154+00 2025-09-11 19:07:56.870167+00 f t 46000.00 1 46000.00 7362 82 \N 6972 +51578 2025-09-11 19:09:39.729786+00 2025-09-11 19:09:39.729794+00 f t 46000.00 1 46000.00 7363 82 \N 6973 +51579 2025-09-11 19:09:39.7346+00 2025-09-11 19:09:39.734609+00 f t 7700.00 1 7700.00 7363 93 \N 6973 +51580 2025-09-11 19:09:39.739473+00 2025-09-11 19:09:39.739481+00 f t 87000.00 1 87000.00 7363 165 \N 6973 +51581 2025-09-11 19:09:39.74421+00 2025-09-11 19:09:39.74422+00 f t 13200.00 1 13200.00 7363 146 \N 6973 +51583 2025-09-11 19:21:43.42994+00 2025-09-11 19:21:43.42995+00 f t 68000.00 1 68000.00 7364 106 \N 6974 +51590 2025-09-11 20:11:40.066581+00 2025-09-11 20:11:40.066589+00 f t 46000.00 1 46000.00 7366 82 \N 6975 +51591 2025-09-11 20:11:40.071706+00 2025-09-11 20:11:40.071714+00 f t 8000.00 1 8000.00 7366 85 \N 6975 +51610 2025-09-11 22:16:10.568703+00 2025-09-11 22:16:10.568715+00 f t 30000.00 1 30000.00 7371 83 \N 6978 +51623 2025-09-11 23:03:20.167994+00 2025-09-11 23:03:20.168005+00 f t 46000.00 1 46000.00 7375 82 \N 6982 +51624 2025-09-11 23:03:20.174218+00 2025-09-11 23:03:20.174227+00 f t 8000.00 1 8000.00 7375 85 \N 6982 +51625 2025-09-11 23:03:20.178749+00 2025-09-11 23:03:20.178757+00 f t 24000.00 1 24000.00 7375 163 \N 6982 +51240 2025-09-11 14:11:59.56448+00 2025-09-11 14:11:59.56449+00 f t 46000.00 1 46000.00 7340 82 \N 6952 +51241 2025-09-11 14:11:59.569304+00 2025-09-11 14:11:59.569312+00 f t 32500.00 1 32500.00 7340 117 \N 6952 +51242 2025-09-11 14:11:59.573456+00 2025-09-11 14:11:59.573465+00 f t 8000.00 1 8000.00 7340 85 \N 6952 +51243 2025-09-11 14:11:59.578186+00 2025-09-11 14:11:59.578194+00 f t 24000.00 1 24000.00 7340 86 \N 6952 +51244 2025-09-11 14:11:59.582679+00 2025-09-11 14:11:59.582691+00 f t 13000.00 1 13000.00 7340 89 \N 6952 +51246 2025-09-11 14:14:19.289227+00 2025-09-11 14:14:19.289239+00 f t 46000.00 1 46000.00 7341 82 \N 6953 +51280 2025-09-11 14:18:01.848174+00 2025-09-11 14:18:01.848188+00 f t 34000.00 1 34000.00 7342 110 \N 6954 +51281 2025-09-11 14:18:01.856193+00 2025-09-11 14:18:01.856205+00 f t 46000.00 1 46000.00 7342 82 \N 6954 +51282 2025-09-11 14:18:01.862949+00 2025-09-11 14:18:01.862962+00 f t 7700.00 1 7700.00 7342 93 \N 6954 +51283 2025-09-11 14:18:01.86979+00 2025-09-11 14:18:01.869803+00 f t 13200.00 1 13200.00 7342 146 \N 6954 +51768 2025-09-12 00:15:54.920955+00 2025-09-12 00:15:54.920966+00 f t 46000.00 1 46000.00 7381 82 \N 6988 +51801 2025-09-12 00:39:07.69001+00 2025-09-12 00:39:07.690019+00 f t 46000.00 1 46000.00 7383 82 \N 6989 +51802 2025-09-12 00:39:07.695737+00 2025-09-12 00:39:07.695748+00 f t 24000.00 1 24000.00 7383 86 \N 6989 +51806 2025-09-12 00:39:19.938871+00 2025-09-12 00:39:19.938879+00 f t 55000.00 1 55000.00 7384 84 \N 6990 +51815 2025-09-12 02:47:06.81224+00 2025-09-12 02:47:06.812249+00 f t 46000.00 1 46000.00 7387 82 \N 6993 +51821 2025-09-12 03:36:44.039892+00 2025-09-12 03:36:44.039905+00 f t 30000.00 1 30000.00 7389 83 \N 6996 +51824 2025-09-12 03:55:27.620878+00 2025-09-12 03:55:27.620893+00 f t 46000.00 1 46000.00 7390 82 \N 6997 +51825 2025-09-12 03:55:27.625612+00 2025-09-12 03:55:27.625619+00 f t 24000.00 1 24000.00 7390 86 \N 6997 +51827 2025-09-12 08:42:44.862124+00 2025-09-12 08:42:44.862133+00 f t 55000.00 1 55000.00 7396 84 \N 6999 +51829 2025-09-12 08:51:13.149532+00 2025-09-12 08:51:13.149542+00 f t 46000.00 1 46000.00 7397 82 \N 7000 +51837 2025-09-12 10:09:23.525296+00 2025-09-12 10:09:23.525304+00 f t 78000.00 1 78000.00 7395 167 \N 6998 +51841 2025-09-12 11:07:20.334596+00 2025-09-12 11:07:20.334606+00 f t 46000.00 1 46000.00 7398 82 \N 7001 +51842 2025-09-12 11:07:20.340005+00 2025-09-12 11:07:20.340014+00 f t 32500.00 1 32500.00 7398 117 \N 7001 +51843 2025-09-12 11:07:20.344378+00 2025-09-12 11:07:20.344387+00 f t 13000.00 1 13000.00 7398 89 \N 7001 +51845 2025-09-12 11:31:35.492145+00 2025-09-12 11:31:35.492158+00 f t 76000.00 1 76000.00 7399 97 \N 7002 +51849 2025-09-12 11:51:04.561446+00 2025-09-12 11:51:04.561458+00 f t 46000.00 1 46000.00 7401 82 \N 7003 +51850 2025-09-12 11:51:04.567376+00 2025-09-12 11:51:04.567388+00 f t 29000.00 1 29000.00 7401 123 \N 7003 +51851 2025-09-12 11:51:04.572966+00 2025-09-12 11:51:04.572978+00 f t 13000.00 1 13000.00 7401 89 \N 7003 +51854 2025-09-12 12:24:27.755847+00 2025-09-12 12:24:27.755856+00 f t 46000.00 1 46000.00 7403 82 \N 7005 +51855 2025-09-12 12:24:27.760443+00 2025-09-12 12:24:27.760452+00 f t 8000.00 1 8000.00 7403 85 \N 7005 +51861 2025-09-12 12:40:17.068861+00 2025-09-12 12:40:17.06887+00 f t 78000.00 1 78000.00 7405 167 \N 7007 +51862 2025-09-12 12:42:36.863471+00 2025-09-12 12:42:36.86348+00 f t 46000.00 1 46000.00 7404 82 \N 7006 +51863 2025-09-12 12:42:36.868602+00 2025-09-12 12:42:36.868614+00 f t 24000.00 1 24000.00 7404 86 \N 7006 +51865 2025-09-12 13:01:25.611922+00 2025-09-12 13:01:25.611935+00 f t 55000.00 1 55000.00 7406 84 \N 7008 +51866 2025-09-12 13:02:00.298996+00 2025-09-12 13:02:00.299008+00 f t 55000.00 1 55000.00 7385 84 \N 6991 +51868 2025-09-12 13:22:24.240221+00 2025-09-12 13:22:24.240231+00 f t 55000.00 1 55000.00 7409 84 \N 7010 +51876 2025-09-12 13:25:41.139515+00 2025-09-12 13:25:41.139524+00 f t 55000.00 1 55000.00 7411 84 \N 7011 +51879 2025-09-12 13:27:24.867545+00 2025-09-12 13:27:24.867557+00 f t 46000.00 1 46000.00 7412 82 \N 7012 +51880 2025-09-12 13:27:24.873462+00 2025-09-12 13:27:24.873475+00 f t 8000.00 1 8000.00 7412 85 \N 7012 +51882 2025-09-12 13:42:02.193909+00 2025-09-12 13:42:02.193918+00 f t 46000.00 1 46000.00 7415 82 \N 7014 +51893 2025-09-12 14:08:12.102023+00 2025-09-12 14:08:12.102032+00 f t 46000.00 1 46000.00 7416 82 \N 7015 +51894 2025-09-12 14:08:12.107749+00 2025-09-12 14:08:12.107758+00 f t 8000.00 1 8000.00 7416 85 \N 7015 +51896 2025-09-12 14:50:05.95806+00 2025-09-12 14:50:05.958074+00 f t 72500.00 1 72500.00 7417 104 \N 7016 +51898 2025-09-12 14:51:15.438092+00 2025-09-12 14:51:15.438102+00 f t 55000.00 1 55000.00 7418 84 \N 7017 +53092 2025-09-15 12:57:49.80428+00 2025-09-15 12:57:49.804288+00 f t 46000.00 1 46000.00 7552 82 \N 7149 +53093 2025-09-15 12:57:49.810461+00 2025-09-15 12:57:49.810472+00 f t 8000.00 1 8000.00 7552 85 \N 7149 +51909 2025-09-12 16:07:23.936471+00 2025-09-12 16:07:23.93648+00 f t 46000.00 1 46000.00 7420 82 \N 7019 +51910 2025-09-12 16:07:23.942354+00 2025-09-12 16:07:23.942366+00 f t 69000.00 1 69000.00 7420 142 \N 7019 +51929 2025-09-12 16:54:28.498605+00 2025-09-12 16:54:28.498616+00 f t 55000.00 1 55000.00 7426 84 \N 7023 +53245 2025-09-15 16:46:05.205148+00 2025-09-15 16:46:05.205156+00 f t 46000.00 1 46000.00 7559 82 \N 7158 +53246 2025-09-15 16:46:05.210419+00 2025-09-15 16:46:05.210429+00 f t 24000.00 1 24000.00 7559 163 \N 7158 +51937 2025-09-12 17:27:10.23105+00 2025-09-12 17:27:10.231059+00 f t 46000.00 1 46000.00 7427 82 \N 7024 +51938 2025-09-12 17:27:10.237431+00 2025-09-12 17:27:10.237439+00 f t 24000.00 1 24000.00 7427 87 \N 7024 +51939 2025-09-12 17:27:32.426816+00 2025-09-12 17:27:32.426824+00 f t 55000.00 1 55000.00 7424 84 \N 7021 +51946 2025-09-12 18:10:31.879414+00 2025-09-12 18:10:31.879423+00 f t 46000.00 1 46000.00 7430 82 \N 7026 +51947 2025-09-12 18:10:31.884802+00 2025-09-12 18:10:31.88481+00 f t 24000.00 1 24000.00 7430 86 \N 7026 +53325 2025-09-15 19:08:36.188252+00 2025-09-15 19:08:36.188268+00 f t 46000.00 1 46000.00 7565 82 \N 7164 +53326 2025-09-15 19:08:36.192609+00 2025-09-15 19:08:36.192622+00 f t 46000.00 1 46000.00 7565 82 \N 7165 +53359 2025-09-15 22:51:46.916484+00 2025-09-15 22:51:46.916493+00 f t 24000.00 1 24000.00 7576 163 \N 7174 +53388 2025-09-15 23:41:27.08486+00 2025-09-15 23:41:27.084872+00 f t 46000.00 1 46000.00 7581 82 \N 7176 +53389 2025-09-15 23:41:27.091316+00 2025-09-15 23:41:27.091325+00 f t 8000.00 1 8000.00 7581 85 \N 7176 +53390 2025-09-15 23:41:27.096243+00 2025-09-15 23:41:27.096254+00 f t 24000.00 1 24000.00 7581 88 \N 7176 +53404 2025-09-16 01:14:24.489366+00 2025-09-16 01:14:24.489377+00 f t 46000.00 1 46000.00 7584 82 \N 7179 +53405 2025-09-16 01:14:24.495262+00 2025-09-16 01:14:24.49527+00 f t 46000.00 1 46000.00 7584 82 \N 7180 +53415 2025-09-16 01:21:40.499021+00 2025-09-16 01:21:40.499032+00 f t 46000.00 1 46000.00 7586 82 \N 7182 +51976 2025-09-12 18:28:26.555646+00 2025-09-12 18:28:26.555657+00 f t 46000.00 1 46000.00 7432 82 \N 7028 +51977 2025-09-12 18:28:26.560243+00 2025-09-12 18:28:26.560251+00 f t 87500.00 1 87500.00 7432 141 \N 7028 +53445 2025-09-16 02:30:27.198251+00 2025-09-16 02:30:27.19826+00 f t 46000.00 1 46000.00 7592 82 \N 7186 +51980 2025-09-12 18:57:41.973276+00 2025-09-12 18:57:41.973287+00 f t 46000.00 1 46000.00 7435 82 \N 7029 +51981 2025-09-12 18:57:41.978467+00 2025-09-12 18:57:41.978515+00 f t 8000.00 1 8000.00 7435 85 \N 7029 +53446 2025-09-16 02:30:27.204538+00 2025-09-16 02:30:27.204546+00 f t 8000.00 1 8000.00 7592 85 \N 7186 +53453 2025-09-16 02:32:11.185993+00 2025-09-16 02:32:11.186005+00 f t 46000.00 1 46000.00 7594 82 \N 7188 +53454 2025-09-16 02:32:11.192446+00 2025-09-16 02:32:11.192457+00 f t 24000.00 1 24000.00 7594 88 \N 7188 +52030 2025-09-12 19:22:48.11581+00 2025-09-12 19:22:48.11582+00 f t 46000.00 1 46000.00 7437 82 \N 7031 +52031 2025-09-12 19:22:48.12017+00 2025-09-12 19:22:48.120178+00 f t 8000.00 1 8000.00 7437 85 \N 7031 +52032 2025-09-12 19:22:48.123499+00 2025-09-12 19:22:48.123505+00 f t 24000.00 1 24000.00 7437 163 \N 7031 +52036 2025-09-12 19:54:35.769785+00 2025-09-12 19:54:35.769797+00 f t 46000.00 1 46000.00 7439 82 \N 7034 +52052 2025-09-12 21:00:23.665918+00 2025-09-12 21:00:23.665933+00 f t 34000.00 1 34000.00 7440 110 \N 7035 +52053 2025-09-12 21:00:23.681611+00 2025-09-12 21:00:23.681625+00 f t 46000.00 1 46000.00 7440 82 \N 7035 +52054 2025-09-12 21:00:23.690761+00 2025-09-12 21:00:23.690777+00 f t 7700.00 1 7700.00 7440 93 \N 7035 +52055 2025-09-12 21:00:23.699347+00 2025-09-12 21:00:23.69936+00 f t 13200.00 1 13200.00 7440 146 \N 7035 +52056 2025-09-12 21:00:23.707821+00 2025-09-12 21:00:23.707835+00 f t 24000.00 1 24000.00 7440 86 \N 7035 +52069 2025-09-12 21:48:50.274861+00 2025-09-12 21:48:50.27487+00 f t 46000.00 1 46000.00 7441 82 \N 7036 +52070 2025-09-12 21:48:50.280242+00 2025-09-12 21:48:50.280253+00 f t 24000.00 1 24000.00 7441 163 \N 7036 +52071 2025-09-12 21:48:50.284558+00 2025-09-12 21:48:50.284566+00 f t 46000.00 1 46000.00 7441 82 \N 7037 +52072 2025-09-12 21:48:50.28898+00 2025-09-12 21:48:50.288988+00 f t 24000.00 1 24000.00 7441 163 \N 7037 +52099 2025-09-12 22:00:54.193375+00 2025-09-12 22:00:54.193386+00 f t 46000.00 1 46000.00 7442 82 \N 7038 +52100 2025-09-12 22:00:54.198915+00 2025-09-12 22:00:54.198928+00 f t 46000.00 1 46000.00 7442 82 \N 7041 +52102 2025-09-12 22:49:19.76836+00 2025-09-12 22:49:19.76837+00 f t 30000.00 1 30000.00 7446 83 \N 7042 +52106 2025-09-13 00:03:33.327846+00 2025-09-13 00:03:33.327855+00 f t 55000.00 1 55000.00 7450 84 \N 7043 +52115 2025-09-13 00:53:44.156488+00 2025-09-13 00:53:44.156499+00 f t 55000.00 1 55000.00 7457 84 \N 7045 +52126 2025-09-13 01:00:24.319274+00 2025-09-13 01:00:24.319288+00 f t 55000.00 1 55000.00 7460 84 \N 7048 +52128 2025-09-13 01:21:20.534082+00 2025-09-13 01:21:20.53409+00 f t 78000.00 1 78000.00 7461 167 \N 7049 +52134 2025-09-13 01:41:09.660811+00 2025-09-13 01:41:09.660823+00 f t 55000.00 1 55000.00 7462 84 \N 7050 +52135 2025-09-13 01:41:09.668263+00 2025-09-13 01:41:09.668277+00 f t 46000.00 1 46000.00 7462 82 \N 7050 +52143 2025-09-13 02:25:24.294199+00 2025-09-13 02:25:24.294207+00 f t 49000.00 1 49000.00 7464 98 \N 7051 +52144 2025-09-13 02:25:24.298756+00 2025-09-13 02:25:24.298766+00 f t 46000.00 1 46000.00 7464 82 \N 7051 +52150 2025-09-13 04:13:51.096943+00 2025-09-13 04:13:51.096952+00 f t 55000.00 1 55000.00 7465 84 \N 7052 +52151 2025-09-13 04:13:51.102515+00 2025-09-13 04:13:51.102524+00 f t 46000.00 1 46000.00 7465 82 \N 7052 +52155 2025-09-13 08:39:06.154215+00 2025-09-13 08:39:06.154227+00 f t 46000.00 1 46000.00 7467 82 \N 7053 +52156 2025-09-13 08:39:06.161193+00 2025-09-13 08:39:06.161204+00 f t 29000.00 1 29000.00 7467 122 \N 7053 +52157 2025-09-13 08:39:06.167198+00 2025-09-13 08:39:06.16721+00 f t 13000.00 1 13000.00 7467 89 \N 7053 +52160 2025-09-13 11:43:52.59245+00 2025-09-13 11:43:52.592459+00 f t 46000.00 1 46000.00 7468 82 \N 7054 +52161 2025-09-13 11:43:52.597129+00 2025-09-13 11:43:52.597136+00 f t 8000.00 1 8000.00 7468 85 \N 7054 +52165 2025-09-13 11:57:39.831974+00 2025-09-13 11:57:39.831982+00 f t 68000.00 1 68000.00 7469 106 \N 7055 +52168 2025-09-13 12:02:46.169652+00 2025-09-13 12:02:46.169665+00 f t 68000.00 1 68000.00 7470 106 \N 7056 +52170 2025-09-13 12:22:10.148414+00 2025-09-13 12:22:10.148423+00 f t 55000.00 1 55000.00 7471 84 \N 7057 +52180 2025-09-13 12:31:13.626414+00 2025-09-13 12:31:13.626422+00 f t 46000.00 1 46000.00 7472 82 \N 7058 +52181 2025-09-13 12:31:13.634814+00 2025-09-13 12:31:13.634824+00 f t 8000.00 1 8000.00 7472 85 \N 7058 +52182 2025-09-13 12:31:13.656042+00 2025-09-13 12:31:13.656055+00 f t 24000.00 1 24000.00 7472 86 \N 7058 +61778 2025-09-30 13:28:30.487758+00 2025-09-30 13:28:30.487768+00 f t 55000.00 1 55000.00 8589 84 \N 308 +74443 2025-10-24 23:20:04.035345+00 2025-10-24 23:20:04.035361+00 f t 68000.00 1 68000.00 10465 106 \N 9505 +53052 2025-09-15 00:47:09.24383+00 2025-09-15 00:47:09.24384+00 f t 46000.00 1 46000.00 7547 82 \N 7145 +53053 2025-09-15 00:47:09.250517+00 2025-09-15 00:47:09.250526+00 f t 8000.00 1 8000.00 7547 85 \N 7145 +54791 2025-09-18 21:48:50.624144+00 2025-09-18 21:48:50.624152+00 f t 46000.00 1 46000.00 7770 82 \N 7350 +52190 2025-09-13 12:36:13.50467+00 2025-09-13 12:36:13.504678+00 f t 31500.00 1 31500.00 7473 111 \N 7059 +52191 2025-09-13 12:36:13.509115+00 2025-09-13 12:36:13.509123+00 f t 46000.00 1 46000.00 7473 82 \N 7059 +52192 2025-09-13 12:36:13.513071+00 2025-09-13 12:36:13.513079+00 f t 7700.00 1 7700.00 7473 93 \N 7059 +52193 2025-09-13 12:36:13.517184+00 2025-09-13 12:36:13.517191+00 f t 13200.00 1 13200.00 7473 146 \N 7059 +54802 2025-09-18 21:54:00.974678+00 2025-09-18 21:54:00.974691+00 f t 46000.00 1 46000.00 7771 82 \N 7351 +54803 2025-09-18 21:54:00.9822+00 2025-09-18 21:54:00.982212+00 f t 24000.00 1 24000.00 7771 88 \N 7351 +53147 2025-09-15 13:09:15.190841+00 2025-09-15 13:09:15.190851+00 f t 46000.00 1 46000.00 7553 82 \N 7151 +53148 2025-09-15 13:09:15.195924+00 2025-09-15 13:09:15.195935+00 f t 24000.00 1 24000.00 7553 163 \N 7151 +52208 2025-09-13 12:46:27.949938+00 2025-09-13 12:46:27.949948+00 f t 55000.00 1 55000.00 7475 84 \N 7060 +52219 2025-09-13 13:15:37.191751+00 2025-09-13 13:15:37.19176+00 f t 55000.00 1 55000.00 7476 84 \N 7061 +52222 2025-09-13 13:49:50.905873+00 2025-09-13 13:49:50.905883+00 f t 68000.00 1 68000.00 7478 106 \N 7063 +52235 2025-09-13 14:48:23.81092+00 2025-09-13 14:48:23.81093+00 f t 46000.00 1 46000.00 7479 82 \N 7064 +52236 2025-09-13 14:48:23.816005+00 2025-09-13 14:48:23.816016+00 f t 69000.00 1 69000.00 7479 142 \N 7064 +52238 2025-09-13 15:03:22.135123+00 2025-09-13 15:03:22.135155+00 f t 30000.00 1 30000.00 7480 83 \N 7065 +52245 2025-09-13 16:59:00.830823+00 2025-09-13 16:59:00.830835+00 f t 55000.00 1 55000.00 7482 84 \N 7067 +52247 2025-09-13 17:11:40.015725+00 2025-09-13 17:11:40.015736+00 f t 46000.00 1 46000.00 7483 82 \N 7069 +53343 2025-09-15 21:54:54.720443+00 2025-09-15 21:54:54.720451+00 f t 30000.00 1 30000.00 7572 83 \N 4259 +52251 2025-09-13 17:27:33.591161+00 2025-09-13 17:27:33.59117+00 f t 72500.00 1 72500.00 7484 104 \N 7071 +52253 2025-09-13 17:35:12.972317+00 2025-09-13 17:35:12.972327+00 f t 75000.00 1 75000.00 7486 108 \N 7073 +53353 2025-09-15 22:19:12.231728+00 2025-09-15 22:19:12.231739+00 f t 55000.00 1 55000.00 7574 84 \N 7172 +52255 2025-09-13 17:54:31.314957+00 2025-09-13 17:54:31.314968+00 f t 55000.00 1 55000.00 7487 84 \N 7074 +52259 2025-09-13 18:07:28.922622+00 2025-09-13 18:07:28.922631+00 f t 55000.00 1 55000.00 7489 84 \N 7075 +52261 2025-09-13 18:20:38.260966+00 2025-09-13 18:20:38.260976+00 f t 46000.00 1 46000.00 7491 82 \N 7077 +52268 2025-09-13 19:23:43.040276+00 2025-09-13 19:23:43.040289+00 f t 46000.00 1 46000.00 7493 82 \N 7079 +52269 2025-09-13 19:23:43.047198+00 2025-09-13 19:23:43.047211+00 f t 24000.00 1 24000.00 7493 86 \N 7079 +52287 2025-09-13 19:41:28.309679+00 2025-09-13 19:41:28.309688+00 f t 46000.00 1 46000.00 7494 82 \N 7080 +52288 2025-09-13 19:41:28.314447+00 2025-09-13 19:41:28.314455+00 f t 24000.00 1 24000.00 7494 88 \N 7080 +52289 2025-09-13 19:41:28.318194+00 2025-09-13 19:41:28.318201+00 f t 24000.00 1 24000.00 7494 163 \N 7080 +53467 2025-09-16 11:42:19.462188+00 2025-09-16 11:42:19.462196+00 f t 55000.00 1 55000.00 7607 84 \N 7196 +52304 2025-09-13 20:04:43.849326+00 2025-09-13 20:04:43.849335+00 f t 46000.00 1 46000.00 7495 82 \N 7081 +52305 2025-09-13 20:04:43.854045+00 2025-09-13 20:04:43.854053+00 f t 29000.00 1 29000.00 7495 123 \N 7081 +52306 2025-09-13 20:04:43.857838+00 2025-09-13 20:04:43.857852+00 f t 24000.00 1 24000.00 7495 163 \N 7081 +52307 2025-09-13 20:04:43.861896+00 2025-09-13 20:04:43.861904+00 f t 13000.00 1 13000.00 7495 89 \N 7081 +53529 2025-09-16 15:28:36.718792+00 2025-09-16 15:28:36.718801+00 f t 46000.00 1 46000.00 7620 82 \N 7208 +53530 2025-09-16 15:28:36.725191+00 2025-09-16 15:28:36.7252+00 f t 24000.00 1 24000.00 7620 86 \N 7208 +52337 2025-09-13 20:53:43.785951+00 2025-09-13 20:53:43.78596+00 f t 46000.00 1 46000.00 7499 82 \N 7084 +52338 2025-09-13 20:53:43.790816+00 2025-09-13 20:53:43.790824+00 f t 31000.00 1 31000.00 7499 138 \N 7084 +52339 2025-09-13 20:53:43.795006+00 2025-09-13 20:53:43.795015+00 f t 13000.00 1 13000.00 7499 89 \N 7084 +52345 2025-09-13 21:12:05.084993+00 2025-09-13 21:12:05.085004+00 f t 46000.00 1 46000.00 7500 82 \N 7086 +53588 2025-09-16 16:31:39.265391+00 2025-09-16 16:31:39.265401+00 f t 46000.00 1 46000.00 7626 82 \N 7217 +53589 2025-09-16 16:31:39.270793+00 2025-09-16 16:31:39.270804+00 f t 33000.00 1 33000.00 7626 140 \N 7217 +53590 2025-09-16 16:31:39.275985+00 2025-09-16 16:31:39.275993+00 f t 24000.00 1 24000.00 7626 163 \N 7217 +53591 2025-09-16 16:31:39.280493+00 2025-09-16 16:31:39.280502+00 f t 13000.00 1 13000.00 7626 89 \N 7217 +52354 2025-09-13 21:25:53.813332+00 2025-09-13 21:25:53.81334+00 f t 46000.00 1 46000.00 7501 82 \N 7087 +53610 2025-09-16 19:17:59.958764+00 2025-09-16 19:17:59.958773+00 f t 46000.00 1 46000.00 7632 82 \N 7224 +53613 2025-09-16 19:52:42.952355+00 2025-09-16 19:52:42.952368+00 f t 46000.00 1 46000.00 7636 82 \N 7225 +53614 2025-09-16 19:52:42.95931+00 2025-09-16 19:52:42.959322+00 f t 8000.00 1 8000.00 7636 85 \N 7225 +52365 2025-09-13 22:02:15.501056+00 2025-09-13 22:02:15.50107+00 f t 46000.00 1 46000.00 7504 82 \N 7092 +52366 2025-09-13 22:02:15.507408+00 2025-09-13 22:02:15.507418+00 f t 8000.00 1 8000.00 7504 85 \N 7092 +53635 2025-09-16 20:42:23.749463+00 2025-09-16 20:42:23.749472+00 f t 46000.00 1 46000.00 7642 82 \N 7228 +53636 2025-09-16 20:42:23.755275+00 2025-09-16 20:42:23.755283+00 f t 8000.00 1 8000.00 7642 85 \N 7228 +53637 2025-09-16 20:42:23.760106+00 2025-09-16 20:42:23.760114+00 f t 24000.00 1 24000.00 7642 163 \N 7228 +53650 2025-09-16 20:55:23.529976+00 2025-09-16 20:55:23.529985+00 f t 46000.00 1 46000.00 7644 82 \N 7229 +53651 2025-09-16 20:55:23.53963+00 2025-09-16 20:55:23.539639+00 f t 75000.00 1 75000.00 7644 108 \N 7229 +53653 2025-09-16 21:13:41.858263+00 2025-09-16 21:13:41.858272+00 f t 75000.00 1 75000.00 7646 108 \N 7230 +53655 2025-09-16 21:18:54.600091+00 2025-09-16 21:18:54.600102+00 f t 65000.00 1 65000.00 7647 107 \N 7231 +53657 2025-09-16 22:13:51.679345+00 2025-09-16 22:13:51.679359+00 f t 30000.00 1 30000.00 7649 83 \N 7234 +53664 2025-09-16 22:34:21.295942+00 2025-09-16 22:34:21.29595+00 f t 46000.00 1 46000.00 7650 82 \N 7235 +53665 2025-09-16 22:34:21.301128+00 2025-09-16 22:34:21.301136+00 f t 24000.00 1 24000.00 7650 86 \N 7235 +53690 2025-09-16 23:41:15.856833+00 2025-09-16 23:41:15.856846+00 f t 46000.00 1 46000.00 7652 82 \N 7238 +53691 2025-09-16 23:41:15.862543+00 2025-09-16 23:41:15.862552+00 f t 46000.00 1 46000.00 7652 82 \N 7239 +58065 2025-09-23 18:46:13.602992+00 2025-09-23 18:46:13.603001+00 f t 46000.00 1 46000.00 8093 82 \N 7620 +58066 2025-09-23 18:46:13.609953+00 2025-09-23 18:46:13.609962+00 f t 8000.00 1 8000.00 8093 85 \N 7620 +52480 2025-09-13 22:19:21.697238+00 2025-09-13 22:19:21.697248+00 f t 55000.00 1 55000.00 7507 84 \N 7094 +52489 2025-09-13 22:46:17.414618+00 2025-09-13 22:46:17.414626+00 f t 55000.00 1 55000.00 7508 84 \N 7095 +53202 2025-09-15 14:05:28.438702+00 2025-09-15 14:05:28.438714+00 f t 46000.00 1 46000.00 7555 82 \N 7153 +53203 2025-09-15 14:05:28.44383+00 2025-09-15 14:05:28.443839+00 f t 8000.00 1 8000.00 7555 85 \N 7153 +53204 2025-09-15 14:05:28.449057+00 2025-09-15 14:05:28.449066+00 f t 24000.00 1 24000.00 7555 163 \N 7153 +53205 2025-09-15 14:05:28.454259+00 2025-09-15 14:05:28.454268+00 f t 46000.00 1 46000.00 7555 82 \N 7154 +53206 2025-09-15 14:05:28.459265+00 2025-09-15 14:05:28.459274+00 f t 8000.00 1 8000.00 7555 85 \N 7154 +53207 2025-09-15 14:05:28.463332+00 2025-09-15 14:05:28.46334+00 f t 24000.00 1 24000.00 7555 86 \N 7154 +53262 2025-09-15 17:05:46.038856+00 2025-09-15 17:05:46.038867+00 f t 20500.00 1 20500.00 7560 109 \N 7159 +53263 2025-09-15 17:05:46.043736+00 2025-09-15 17:05:46.043745+00 f t 46000.00 1 46000.00 7560 82 \N 7159 +53264 2025-09-15 17:05:46.04823+00 2025-09-15 17:05:46.048243+00 f t 7700.00 1 7700.00 7560 93 \N 7159 +53265 2025-09-15 17:05:46.05388+00 2025-09-15 17:05:46.053892+00 f t 13200.00 1 13200.00 7560 146 \N 7159 +53329 2025-09-15 19:23:46.473588+00 2025-09-15 19:23:46.473597+00 f t 46000.00 1 46000.00 7567 82 \N 7167 +53330 2025-09-15 19:23:46.478824+00 2025-09-15 19:23:46.478834+00 f t 8000.00 1 8000.00 7567 85 \N 7167 +53349 2025-09-15 22:00:42.364859+00 2025-09-15 22:00:42.364872+00 f t 46000.00 1 46000.00 7573 82 \N 7171 +53395 2025-09-16 01:04:48.860469+00 2025-09-16 01:04:48.860488+00 f t 32500.00 1 32500.00 7583 112 \N 7178 +53396 2025-09-16 01:04:48.866721+00 2025-09-16 01:04:48.86673+00 f t 46000.00 1 46000.00 7583 82 \N 7178 +53397 2025-09-16 01:04:48.872859+00 2025-09-16 01:04:48.87287+00 f t 7700.00 1 7700.00 7583 93 \N 7178 +53398 2025-09-16 01:04:48.877173+00 2025-09-16 01:04:48.877181+00 f t 13200.00 1 13200.00 7583 146 \N 7178 +53410 2025-09-16 01:20:28.570686+00 2025-09-16 01:20:28.570695+00 f t 32500.00 1 32500.00 7585 112 \N 7181 +53411 2025-09-16 01:20:28.576643+00 2025-09-16 01:20:28.576655+00 f t 46000.00 1 46000.00 7585 82 \N 7181 +53412 2025-09-16 01:20:28.582246+00 2025-09-16 01:20:28.582257+00 f t 7700.00 1 7700.00 7585 93 \N 7181 +53413 2025-09-16 01:20:28.587785+00 2025-09-16 01:20:28.587797+00 f t 13200.00 1 13200.00 7585 146 \N 7181 +53420 2025-09-16 01:27:54.969524+00 2025-09-16 01:27:54.969533+00 f t 20500.00 1 20500.00 7587 109 \N 7183 +53421 2025-09-16 01:27:54.973713+00 2025-09-16 01:27:54.97372+00 f t 46000.00 1 46000.00 7587 82 \N 7183 +53422 2025-09-16 01:27:54.977058+00 2025-09-16 01:27:54.977065+00 f t 7700.00 1 7700.00 7587 93 \N 7183 +53423 2025-09-16 01:27:54.980185+00 2025-09-16 01:27:54.980191+00 f t 13200.00 1 13200.00 7587 146 \N 7183 +52569 2025-09-13 23:33:45.846643+00 2025-09-13 23:33:45.846656+00 f t 46000.00 1 46000.00 7510 82 \N 7097 +52570 2025-09-13 23:33:45.854089+00 2025-09-13 23:33:45.854101+00 f t 8000.00 1 8000.00 7510 85 \N 7097 +52571 2025-09-13 23:33:45.859167+00 2025-09-13 23:33:45.859174+00 f t 24000.00 1 24000.00 7510 86 \N 7097 +52572 2025-09-13 23:33:45.863058+00 2025-09-13 23:33:45.863067+00 f t 24000.00 1 24000.00 7510 87 \N 7097 +53449 2025-09-16 02:30:34.884695+00 2025-09-16 02:30:34.884707+00 f t 46000.00 1 46000.00 7593 82 \N 7187 +53450 2025-09-16 02:30:34.890502+00 2025-09-16 02:30:34.890512+00 f t 8000.00 1 8000.00 7593 85 \N 7187 +53456 2025-09-16 06:24:52.332924+00 2025-09-16 06:24:52.332935+00 f t 46000.00 1 46000.00 7601 82 \N 7189 +52579 2025-09-14 04:17:21.38643+00 2025-09-14 04:17:21.386443+00 f t 55000.00 1 55000.00 7515 84 \N 7102 +53465 2025-09-16 11:20:10.615298+00 2025-09-16 11:20:10.615307+00 f t 46000.00 1 46000.00 7606 82 \N 7195 +52581 2025-09-14 05:09:47.819505+00 2025-09-14 05:09:47.819517+00 f t 46000.00 1 46000.00 7516 82 \N 7103 +52585 2025-09-14 05:55:19.005322+00 2025-09-14 05:55:19.005335+00 f t 46000.00 1 46000.00 7517 82 \N 7104 +52586 2025-09-14 05:55:19.013269+00 2025-09-14 05:55:19.013282+00 f t 29000.00 1 29000.00 7517 124 \N 7104 +52587 2025-09-14 05:55:19.020232+00 2025-09-14 05:55:19.020245+00 f t 13000.00 1 13000.00 7517 89 \N 7104 +52590 2025-09-14 06:41:54.620375+00 2025-09-14 06:41:54.620383+00 f t 55000.00 1 55000.00 7518 84 \N 7105 +52594 2025-09-14 09:10:59.43042+00 2025-09-14 09:10:59.43043+00 f t 78000.00 1 78000.00 7519 167 \N 7106 +53517 2025-09-16 15:10:22.241917+00 2025-09-16 15:10:22.241926+00 f t 55000.00 1 55000.00 7615 84 \N 7203 +53526 2025-09-16 15:23:59.00954+00 2025-09-16 15:23:59.009548+00 f t 46000.00 1 46000.00 7617 82 \N 7205 +52647 2025-09-14 10:51:55.688872+00 2025-09-14 10:51:55.688881+00 f t 55000.00 1 55000.00 7520 84 \N 7107 +52652 2025-09-14 11:21:08.052409+00 2025-09-14 11:21:08.052421+00 f t 68000.00 1 68000.00 7521 106 \N 7110 +52665 2025-09-14 12:55:46.416165+00 2025-09-14 12:55:46.416174+00 f t 75000.00 1 75000.00 7524 108 \N 7113 +52676 2025-09-14 12:59:55.765928+00 2025-09-14 12:59:55.765937+00 f t 78000.00 1 78000.00 7525 167 \N 7115 +52680 2025-09-14 13:47:31.38949+00 2025-09-14 13:47:31.3895+00 f t 78000.00 1 78000.00 7526 167 \N 7116 +52683 2025-09-14 13:58:00.976779+00 2025-09-14 13:58:00.976788+00 f t 68000.00 1 68000.00 7527 106 \N 7117 +52697 2025-09-14 14:20:32.214354+00 2025-09-14 14:20:32.214368+00 f t 46000.00 1 46000.00 7528 82 \N 7118 +52698 2025-09-14 14:20:32.219971+00 2025-09-14 14:20:32.219981+00 f t 8000.00 1 8000.00 7528 85 \N 7118 +52699 2025-09-14 14:20:32.224397+00 2025-09-14 14:20:32.224406+00 f t 24000.00 1 24000.00 7528 163 \N 7118 +52703 2025-09-14 14:23:29.183629+00 2025-09-14 14:23:29.183639+00 f t 46000.00 1 46000.00 7529 82 \N 7119 +52705 2025-09-14 14:27:28.312463+00 2025-09-14 14:27:28.312473+00 f t 46000.00 1 46000.00 7530 82 \N 7120 +52708 2025-09-14 14:45:08.448287+00 2025-09-14 14:45:08.448298+00 f t 46000.00 1 46000.00 7531 82 \N 7121 +52709 2025-09-14 14:45:08.453027+00 2025-09-14 14:45:08.453039+00 f t 24000.00 1 24000.00 7531 86 \N 7121 +52712 2025-09-14 15:59:08.204708+00 2025-09-14 15:59:08.204722+00 f t 46000.00 1 46000.00 7532 82 \N 7122 +52713 2025-09-14 15:59:08.211642+00 2025-09-14 15:59:08.211657+00 f t 8000.00 1 8000.00 7532 85 \N 7122 +52718 2025-09-14 16:52:26.129136+00 2025-09-14 16:52:26.129149+00 f t 95000.00 1 95000.00 7533 103 \N 7123 +52723 2025-09-14 16:56:50.08588+00 2025-09-14 16:56:50.08589+00 f t 31500.00 1 31500.00 7534 111 \N 7124 +52724 2025-09-14 16:56:50.091353+00 2025-09-14 16:56:50.091361+00 f t 46000.00 1 46000.00 7534 82 \N 7124 +52725 2025-09-14 16:56:50.095702+00 2025-09-14 16:56:50.09571+00 f t 7700.00 1 7700.00 7534 93 \N 7124 +52726 2025-09-14 16:56:50.099878+00 2025-09-14 16:56:50.099885+00 f t 13200.00 1 13200.00 7534 146 \N 7124 +52732 2025-09-14 18:06:35.129247+00 2025-09-14 18:06:35.12926+00 f t 46000.00 1 46000.00 7535 82 \N 7125 +52738 2025-09-14 21:09:13.885762+00 2025-09-14 21:09:13.885775+00 f t 55000.00 1 55000.00 7537 84 \N 7131 +56407 2025-09-21 19:37:36.758975+00 2025-09-21 19:37:36.758983+00 f t 76000.00 1 76000.00 7953 97 \N 7502 +61826 2025-09-30 17:08:44.596896+00 2025-09-30 17:08:44.596909+00 f t 107000.00 1 107000.00 8602 103 \N 6192 +61849 2025-09-30 17:33:40.533055+00 2025-09-30 17:33:40.533065+00 f t 55000.00 1 55000.00 8604 84 \N 8066 +61868 2025-09-30 19:18:37.755095+00 2025-09-30 19:18:37.755106+00 f t 75000.00 1 75000.00 8606 142 \N 8069 +53089 2025-09-15 04:10:05.830738+00 2025-09-15 04:10:05.83075+00 f t 49000.00 1 49000.00 7549 98 \N 7147 +52780 2025-09-14 23:24:32.306914+00 2025-09-14 23:24:32.306922+00 f t 46000.00 1 46000.00 7539 82 \N 7135 +53161 2025-09-15 13:56:41.782884+00 2025-09-15 13:56:41.782895+00 f t 46000.00 1 46000.00 7554 82 \N 7152 +53162 2025-09-15 13:56:41.789378+00 2025-09-15 13:56:41.78939+00 f t 8000.00 1 8000.00 7554 85 \N 7152 +54928 2025-09-18 23:03:43.471707+00 2025-09-18 23:03:43.471717+00 f t 55000.00 1 55000.00 7780 84 \N 7361 +53239 2025-09-15 15:51:53.659017+00 2025-09-15 15:51:53.659025+00 f t 46000.00 1 46000.00 7558 82 \N 7157 +53240 2025-09-15 15:51:53.663793+00 2025-09-15 15:51:53.663804+00 f t 8000.00 1 8000.00 7558 85 \N 7157 +53241 2025-09-15 15:51:53.668431+00 2025-09-15 15:51:53.668438+00 f t 24000.00 1 24000.00 7558 86 \N 7157 +53242 2025-09-15 15:51:53.67312+00 2025-09-15 15:51:53.673127+00 f t 24000.00 1 24000.00 7558 87 \N 7157 +53312 2025-09-15 18:06:57.297319+00 2025-09-15 18:06:57.297328+00 f t 46000.00 1 46000.00 7563 82 \N 7162 +53313 2025-09-15 18:06:57.302354+00 2025-09-15 18:06:57.302362+00 f t 7700.00 1 7700.00 7563 93 \N 7162 +53314 2025-09-15 18:06:57.30619+00 2025-09-15 18:06:57.306197+00 f t 87000.00 1 87000.00 7563 165 \N 7162 +53315 2025-09-15 18:06:57.31001+00 2025-09-15 18:06:57.310018+00 f t 75000.00 1 75000.00 7563 108 \N 7162 +53316 2025-09-15 18:06:57.313871+00 2025-09-15 18:06:57.313878+00 f t 13200.00 1 13200.00 7563 146 \N 7162 +53317 2025-09-15 18:06:57.317772+00 2025-09-15 18:06:57.317782+00 f t 8000.00 1 8000.00 7563 85 \N 7162 +53318 2025-09-15 18:06:57.321739+00 2025-09-15 18:06:57.321746+00 f t 24000.00 1 24000.00 7563 88 \N 7162 +55038 2025-09-19 05:27:24.103453+00 2025-09-19 05:27:24.103466+00 f t 46000.00 1 46000.00 7794 82 \N 7375 +55055 2025-09-19 09:46:34.042912+00 2025-09-19 09:46:34.042925+00 f t 55000.00 1 55000.00 7797 84 \N 7378 +55075 2025-09-19 14:20:51.438098+00 2025-09-19 14:20:51.438111+00 f t 46000.00 1 46000.00 7808 82 \N 7388 +53428 2025-09-16 01:44:50.665091+00 2025-09-16 01:44:50.665099+00 f t 46000.00 1 46000.00 7588 82 \N 7184 +53460 2025-09-16 10:41:59.144961+00 2025-09-16 10:41:59.144974+00 f t 55000.00 1 55000.00 7603 84 \N 7190 +53463 2025-09-16 10:57:14.01358+00 2025-09-16 10:57:14.013593+00 f t 55000.00 1 55000.00 7605 84 \N 7193 +53472 2025-09-16 12:16:15.748221+00 2025-09-16 12:16:15.74823+00 f t 46000.00 1 46000.00 7608 82 \N 7197 +53475 2025-09-16 13:43:38.34766+00 2025-09-16 13:43:38.347671+00 f t 55000.00 1 55000.00 7613 84 \N 7201 +55162 2025-09-19 15:57:12.415866+00 2025-09-19 15:57:12.415875+00 f t 55000.00 1 55000.00 7816 84 \N 7394 +53491 2025-09-16 14:56:50.918586+00 2025-09-16 14:56:50.918596+00 f t 46000.00 1 46000.00 7614 82 \N 7202 +53492 2025-09-16 14:56:50.925282+00 2025-09-16 14:56:50.92529+00 f t 33000.00 1 33000.00 7614 133 \N 7202 +53493 2025-09-16 14:56:50.930056+00 2025-09-16 14:56:50.930064+00 f t 13000.00 1 13000.00 7614 89 \N 7202 +52874 2025-09-14 23:45:32.106891+00 2025-09-14 23:45:32.106903+00 f t 30000.00 1 30000.00 7540 83 \N 7136 +53560 2025-09-16 15:33:36.840539+00 2025-09-16 15:33:36.840547+00 f t 46000.00 1 46000.00 7621 82 \N 7210 +53561 2025-09-16 15:33:36.845778+00 2025-09-16 15:33:36.845792+00 f t 8000.00 1 8000.00 7621 85 \N 7210 +53562 2025-09-16 15:33:36.853676+00 2025-09-16 15:33:36.853709+00 f t 24000.00 1 24000.00 7621 88 \N 7210 +53563 2025-09-16 15:33:36.858268+00 2025-09-16 15:33:36.858276+00 f t 24000.00 1 24000.00 7621 163 \N 7210 +53565 2025-09-16 16:07:54.237824+00 2025-09-16 16:07:54.237836+00 f t 46000.00 1 46000.00 7624 82 \N 7214 +53568 2025-09-16 16:12:17.88464+00 2025-09-16 16:12:17.884651+00 f t 46000.00 1 46000.00 7625 82 \N 7216 +53569 2025-09-16 16:12:17.89087+00 2025-09-16 16:12:17.890879+00 f t 8000.00 1 8000.00 7625 85 \N 7216 +53594 2025-09-16 16:38:08.079447+00 2025-09-16 16:38:08.079462+00 f t 46000.00 1 46000.00 7627 82 \N 7218 +53597 2025-09-16 18:08:45.831068+00 2025-09-16 18:08:45.831076+00 f t 46000.00 1 46000.00 7630 82 \N 7221 +53598 2025-09-16 18:08:45.836451+00 2025-09-16 18:08:45.836463+00 f t 24000.00 1 24000.00 7630 86 \N 7221 +53619 2025-09-16 20:25:34.395643+00 2025-09-16 20:25:34.395652+00 f t 78000.00 1 78000.00 7640 167 \N 7226 +53624 2025-09-16 20:27:10.200919+00 2025-09-16 20:27:10.200928+00 f t 46000.00 1 46000.00 7641 82 \N 7227 +53625 2025-09-16 20:27:10.208157+00 2025-09-16 20:27:10.20817+00 f t 24000.00 1 24000.00 7641 87 \N 7227 +52936 2025-09-14 23:55:37.839616+00 2025-09-14 23:55:37.839625+00 f t 46000.00 1 46000.00 7541 82 \N 7137 +52937 2025-09-14 23:55:37.845684+00 2025-09-14 23:55:37.845692+00 f t 46000.00 1 46000.00 7541 82 \N 7138 +52938 2025-09-14 23:55:37.853152+00 2025-09-14 23:55:37.853164+00 f t 46000.00 1 46000.00 7541 82 \N 7139 +53677 2025-09-16 23:20:00.769205+00 2025-09-16 23:20:00.769214+00 f t 46000.00 1 46000.00 7651 82 \N 7236 +53678 2025-09-16 23:20:00.775816+00 2025-09-16 23:20:00.775826+00 f t 46000.00 1 46000.00 7651 82 \N 7237 +52957 2025-09-15 00:00:10.263021+00 2025-09-15 00:00:10.263036+00 f t 46000.00 1 46000.00 7543 82 \N 7140 +52958 2025-09-15 00:00:10.287877+00 2025-09-15 00:00:10.287892+00 f t 24000.00 1 24000.00 7543 163 \N 7140 +52959 2025-09-15 00:00:10.318762+00 2025-09-15 00:00:10.318782+00 f t 46000.00 1 46000.00 7543 82 \N 7141 +52960 2025-09-15 00:00:10.328463+00 2025-09-15 00:00:10.328475+00 f t 24000.00 1 24000.00 7543 86 \N 7141 +53696 2025-09-17 00:11:32.369691+00 2025-09-17 00:11:32.369699+00 f t 46000.00 1 46000.00 7653 82 \N 7241 +53701 2025-09-17 00:45:17.548049+00 2025-09-17 00:45:17.548062+00 f t 46000.00 1 46000.00 7655 82 \N 7242 +53702 2025-09-17 00:45:17.553806+00 2025-09-17 00:45:17.553818+00 f t 7700.00 1 7700.00 7655 93 \N 7242 +53703 2025-09-17 00:45:17.558882+00 2025-09-17 00:45:17.55889+00 f t 87000.00 1 87000.00 7655 165 \N 7242 +53704 2025-09-17 00:45:17.564685+00 2025-09-17 00:45:17.564699+00 f t 13200.00 1 13200.00 7655 146 \N 7242 +53707 2025-09-17 01:34:50.808335+00 2025-09-17 01:34:50.808345+00 f t 46000.00 1 46000.00 7656 82 \N 7243 +53708 2025-09-17 01:34:50.814066+00 2025-09-17 01:34:50.814075+00 f t 8000.00 1 8000.00 7656 85 \N 7243 +53712 2025-09-17 07:35:01.438937+00 2025-09-17 07:35:01.438952+00 f t 46000.00 1 46000.00 7658 82 \N 7245 +53715 2025-09-17 10:36:17.914302+00 2025-09-17 10:36:17.914312+00 f t 46000.00 1 46000.00 7661 82 \N 7246 +53716 2025-09-17 10:36:17.922644+00 2025-09-17 10:36:17.922655+00 f t 8000.00 1 8000.00 7661 85 \N 7246 +53719 2025-09-17 11:28:37.632539+00 2025-09-17 11:28:37.632549+00 f t 46000.00 1 46000.00 7662 82 \N 7247 +53720 2025-09-17 11:28:37.638169+00 2025-09-17 11:28:37.638182+00 f t 8000.00 1 8000.00 7662 85 \N 7247 +53722 2025-09-17 12:44:51.276814+00 2025-09-17 12:44:51.276823+00 f t 68000.00 1 68000.00 7665 106 \N 7249 +53725 2025-09-17 13:17:58.340912+00 2025-09-17 13:17:58.340924+00 f t 46000.00 1 46000.00 7666 82 \N 7250 +53726 2025-09-17 13:17:58.348471+00 2025-09-17 13:17:58.34848+00 f t 24000.00 1 24000.00 7666 86 \N 7250 +65638 2025-10-07 01:23:46.216452+00 2025-10-07 01:23:46.216466+00 f t 107000.00 1 107000.00 9045 103 \N 8437 +56419 2025-09-21 19:42:23.344273+00 2025-09-21 19:42:23.344282+00 f t 46000.00 1 46000.00 7934 82 \N 7485 +65658 2025-10-07 02:50:07.508813+00 2025-10-07 02:50:07.508824+00 f t 75000.00 1 75000.00 9050 108 \N 8441 +54805 2025-09-18 22:11:32.606798+00 2025-09-18 22:11:32.606807+00 f t 55000.00 1 55000.00 7772 84 \N 7352 +53817 2025-09-17 13:35:56.527124+00 2025-09-17 13:35:56.527257+00 f t 46000.00 1 46000.00 7667 82 \N 7252 +53818 2025-09-17 13:35:56.534233+00 2025-09-17 13:35:56.534246+00 f t 8000.00 1 8000.00 7667 85 \N 7252 +53819 2025-09-17 13:35:56.540697+00 2025-09-17 13:35:56.540711+00 f t 46000.00 1 46000.00 7667 82 \N 7253 +53820 2025-09-17 13:35:56.546736+00 2025-09-17 13:35:56.54675+00 f t 24000.00 1 24000.00 7667 163 \N 7253 +53827 2025-09-17 13:52:04.184211+00 2025-09-17 13:52:04.184226+00 f t 55000.00 1 55000.00 7669 84 \N 7254 +54904 2025-09-18 22:19:31.410896+00 2025-09-18 22:19:31.410904+00 f t 34000.00 1 34000.00 7773 110 \N 7353 +54905 2025-09-18 22:19:31.415284+00 2025-09-18 22:19:31.415292+00 f t 46000.00 1 46000.00 7773 82 \N 7353 +54906 2025-09-18 22:19:31.418769+00 2025-09-18 22:19:31.418777+00 f t 7700.00 1 7700.00 7773 93 \N 7353 +54907 2025-09-18 22:19:31.42294+00 2025-09-18 22:19:31.422947+00 f t 13200.00 1 13200.00 7773 146 \N 7353 +54908 2025-09-18 22:19:31.426705+00 2025-09-18 22:19:31.426715+00 f t 8000.00 1 8000.00 7773 85 \N 7353 +54909 2025-09-18 22:19:31.430343+00 2025-09-18 22:19:31.430351+00 f t 24000.00 1 24000.00 7773 163 \N 7353 +54924 2025-09-18 23:00:04.034367+00 2025-09-18 23:00:04.034384+00 f t 46000.00 1 46000.00 7779 82 \N 7360 +55017 2025-09-19 02:16:45.948351+00 2025-09-19 02:16:45.94836+00 f t 20500.00 1 20500.00 7789 109 \N 7369 +55018 2025-09-19 02:16:45.952721+00 2025-09-19 02:16:45.952729+00 f t 46000.00 1 46000.00 7789 82 \N 7369 +55019 2025-09-19 02:16:45.956141+00 2025-09-19 02:16:45.956148+00 f t 7700.00 1 7700.00 7789 93 \N 7369 +55020 2025-09-19 02:16:45.960174+00 2025-09-19 02:16:45.960182+00 f t 13200.00 1 13200.00 7789 146 \N 7369 +55032 2025-09-19 03:14:30.83867+00 2025-09-19 03:14:30.838679+00 f t 30000.00 1 30000.00 7792 83 \N 7373 +55066 2025-09-19 11:56:25.305349+00 2025-09-19 11:56:25.305358+00 f t 55000.00 1 55000.00 7802 84 \N 7382 +55071 2025-09-19 14:18:45.616881+00 2025-09-19 14:18:45.616927+00 f t 55000.00 1 55000.00 7806 84 \N 7386 +55076 2025-09-19 14:20:55.52357+00 2025-09-19 14:20:55.52358+00 f t 75000.00 1 75000.00 7807 108 \N 7387 +55368 2025-09-19 17:44:10.506257+00 2025-09-19 17:44:10.50627+00 f t 34000.00 1 34000.00 7827 110 \N 7401 +53935 2025-09-17 14:49:31.043819+00 2025-09-17 14:49:31.043831+00 f t 107000.00 1 107000.00 7670 103 \N 7255 +53936 2025-09-17 14:49:31.050743+00 2025-09-17 14:49:31.050755+00 f t 72500.00 1 72500.00 7670 104 \N 7255 +53937 2025-09-17 14:49:31.056378+00 2025-09-17 14:49:31.056389+00 f t 130000.00 1 130000.00 7670 164 \N 7255 +53938 2025-09-17 14:49:31.062433+00 2025-09-17 14:49:31.062443+00 f t 68000.00 1 68000.00 7670 106 \N 7255 +53939 2025-09-17 14:49:31.068613+00 2025-09-17 14:49:31.068626+00 f t 65000.00 1 65000.00 7670 107 \N 7255 +53940 2025-09-17 14:49:31.074926+00 2025-09-17 14:49:31.074939+00 f t 78000.00 1 78000.00 7670 167 \N 7255 +53941 2025-09-17 14:49:31.080956+00 2025-09-17 14:49:31.080967+00 f t 75000.00 1 75000.00 7670 108 \N 7255 +55369 2025-09-19 17:44:10.514065+00 2025-09-19 17:44:10.514074+00 f t 46000.00 1 46000.00 7827 82 \N 7401 +55370 2025-09-19 17:44:10.519567+00 2025-09-19 17:44:10.519578+00 f t 7700.00 1 7700.00 7827 93 \N 7401 +55371 2025-09-19 17:44:10.525182+00 2025-09-19 17:44:10.525192+00 f t 13200.00 1 13200.00 7827 146 \N 7401 +55372 2025-09-19 17:44:10.534676+00 2025-09-19 17:44:10.534692+00 f t 8000.00 1 8000.00 7827 85 \N 7401 +55373 2025-09-19 17:44:10.542782+00 2025-09-19 17:44:10.542793+00 f t 24000.00 1 24000.00 7827 163 \N 7401 +53952 2025-09-17 15:53:59.999243+00 2025-09-17 15:53:59.999252+00 f t 46000.00 1 46000.00 7671 82 \N 7256 +53953 2025-09-17 15:54:00.006336+00 2025-09-17 15:54:00.006351+00 f t 8000.00 1 8000.00 7671 85 \N 7256 +53955 2025-09-17 16:04:53.904288+00 2025-09-17 16:04:53.9043+00 f t 46000.00 1 46000.00 7672 82 \N 7257 +53965 2025-09-17 17:27:44.530846+00 2025-09-17 17:27:44.530858+00 f t 46000.00 1 46000.00 7673 82 \N 7259 +53966 2025-09-17 17:27:44.537163+00 2025-09-17 17:27:44.537171+00 f t 8000.00 1 8000.00 7673 85 \N 7259 +53967 2025-09-17 17:27:44.542503+00 2025-09-17 17:27:44.542511+00 f t 24000.00 1 24000.00 7673 86 \N 7259 +53978 2025-09-17 18:03:18.928251+00 2025-09-17 18:03:18.928263+00 f t 46000.00 1 46000.00 7675 82 \N 7261 +53979 2025-09-17 18:03:18.934061+00 2025-09-17 18:03:18.93407+00 f t 8000.00 1 8000.00 7675 85 \N 7261 +53981 2025-09-17 18:27:53.529905+00 2025-09-17 18:27:53.529917+00 f t 55000.00 1 55000.00 7676 84 \N 7264 +53987 2025-09-17 18:30:35.305207+00 2025-09-17 18:30:35.305218+00 f t 72500.00 1 72500.00 7677 104 \N 7265 +53988 2025-09-17 18:30:35.311293+00 2025-09-17 18:30:35.311302+00 f t 75000.00 1 75000.00 7677 108 \N 7265 +53990 2025-09-17 18:34:34.764632+00 2025-09-17 18:34:34.764647+00 f t 55000.00 1 55000.00 7679 84 \N 7266 +53997 2025-09-17 18:40:06.195605+00 2025-09-17 18:40:06.195619+00 f t 46000.00 1 46000.00 7682 82 \N 7268 +53998 2025-09-17 18:40:06.215055+00 2025-09-17 18:40:06.215068+00 f t 24000.00 1 24000.00 7682 86 \N 7268 +54028 2025-09-17 19:16:14.833692+00 2025-09-17 19:16:14.833704+00 f t 55000.00 1 55000.00 7684 84 \N 7271 +54031 2025-09-17 19:18:47.133664+00 2025-09-17 19:18:47.133672+00 f t 46000.00 1 46000.00 7685 82 \N 7272 +54033 2025-09-17 19:34:40.645024+00 2025-09-17 19:34:40.645037+00 f t 55000.00 1 55000.00 7686 84 \N 7273 +54036 2025-09-17 19:52:18.447524+00 2025-09-17 19:52:18.447533+00 f t 46000.00 1 46000.00 7689 82 \N 7275 +54037 2025-09-17 19:52:18.452615+00 2025-09-17 19:52:18.452625+00 f t 24000.00 1 24000.00 7689 88 \N 7275 +54050 2025-09-17 20:18:50.063519+00 2025-09-17 20:18:50.063531+00 f t 46000.00 1 46000.00 7690 82 \N 7276 +54057 2025-09-17 20:39:28.31121+00 2025-09-17 20:39:28.311222+00 f t 46000.00 1 46000.00 7692 82 \N 7278 +54058 2025-09-17 20:39:28.316135+00 2025-09-17 20:39:28.316142+00 f t 24000.00 1 24000.00 7692 163 \N 7278 +54064 2025-09-17 20:57:14.309712+00 2025-09-17 20:57:14.30972+00 f t 68000.00 1 68000.00 7693 106 \N 7280 +54065 2025-09-17 20:57:14.323221+00 2025-09-17 20:57:14.32323+00 f t 75000.00 1 75000.00 7693 108 \N 7280 +54070 2025-09-17 21:06:29.829621+00 2025-09-17 21:06:29.829632+00 f t 46000.00 1 46000.00 7694 82 \N 7282 +54071 2025-09-17 21:06:29.837131+00 2025-09-17 21:06:29.837145+00 f t 7700.00 1 7700.00 7694 93 \N 7282 +54072 2025-09-17 21:06:29.843833+00 2025-09-17 21:06:29.843845+00 f t 52500.00 1 52500.00 7694 114 \N 7282 +54073 2025-09-17 21:06:29.849768+00 2025-09-17 21:06:29.849777+00 f t 13200.00 1 13200.00 7694 146 \N 7282 +54076 2025-09-17 21:59:04.48512+00 2025-09-17 21:59:04.485128+00 f t 46000.00 1 46000.00 7695 82 \N 7283 +54077 2025-09-17 21:59:04.490069+00 2025-09-17 21:59:04.490079+00 f t 8000.00 1 8000.00 7695 85 \N 7283 +56447 2025-09-21 20:01:47.078622+00 2025-09-21 20:01:47.078634+00 f t 46000.00 1 46000.00 7956 82 \N 7505 +54930 2025-09-18 23:14:56.747842+00 2025-09-18 23:14:56.747856+00 f t 68000.00 1 68000.00 7781 106 \N 7362 +54935 2025-09-18 23:52:59.403155+00 2025-09-18 23:52:59.403164+00 f t 46000.00 1 46000.00 7782 82 \N 7363 +54978 2025-09-19 01:34:08.913418+00 2025-09-19 01:34:08.913428+00 f t 55000.00 1 55000.00 7787 84 \N 7367 +55028 2025-09-19 03:09:36.524429+00 2025-09-19 03:09:36.524438+00 f t 55000.00 1 55000.00 7791 84 \N 7372 +56705 2025-09-21 21:14:32.442648+00 2025-09-21 21:14:32.442657+00 f t 46000.00 1 46000.00 7955 82 \N 7504 +55041 2025-09-19 05:27:55.125716+00 2025-09-19 05:27:55.125728+00 f t 46000.00 1 46000.00 7795 82 \N 7376 +55042 2025-09-19 05:27:55.133876+00 2025-09-19 05:27:55.133886+00 f t 8000.00 1 8000.00 7795 85 \N 7376 +56706 2025-09-21 21:14:32.448628+00 2025-09-21 21:14:32.448638+00 f t 7700.00 1 7700.00 7955 93 \N 7504 +56707 2025-09-21 21:14:32.45368+00 2025-09-21 21:14:32.453689+00 f t 7700.00 1 7700.00 7955 93 \N 6920 +56708 2025-09-21 21:14:32.458324+00 2025-09-21 21:14:32.458335+00 f t 46000.00 1 46000.00 7955 82 \N 6920 +55062 2025-09-19 10:48:38.172447+00 2025-09-19 10:48:38.172456+00 f t 55000.00 1 55000.00 7799 84 \N 7379 +56713 2025-09-21 21:38:08.425032+00 2025-09-21 21:38:08.425043+00 f t 55000.00 1 55000.00 7962 84 \N 7510 +56763 2025-09-21 23:59:25.117696+00 2025-09-21 23:59:25.117709+00 f t 46000.00 1 46000.00 7968 82 \N 7516 +54160 2025-09-17 22:49:04.213724+00 2025-09-17 22:49:04.213737+00 f t 46000.00 1 46000.00 7697 82 \N 7286 +54161 2025-09-17 22:49:04.221476+00 2025-09-17 22:49:04.221491+00 f t 8000.00 1 8000.00 7697 85 \N 7286 +54162 2025-09-17 22:49:04.227862+00 2025-09-17 22:49:04.227873+00 f t 24000.00 1 24000.00 7697 88 \N 7286 +54163 2025-09-17 22:49:04.238365+00 2025-09-17 22:49:04.238379+00 f t 24000.00 1 24000.00 7697 163 \N 7286 +54164 2025-09-17 22:49:04.245027+00 2025-09-17 22:49:04.245037+00 f t 46000.00 1 46000.00 7697 82 \N 7287 +54165 2025-09-17 22:49:04.251293+00 2025-09-17 22:49:04.251306+00 f t 8000.00 1 8000.00 7697 85 \N 7287 +54166 2025-09-17 22:49:04.257183+00 2025-09-17 22:49:04.257192+00 f t 24000.00 1 24000.00 7697 88 \N 7287 +54167 2025-09-17 22:49:04.263639+00 2025-09-17 22:49:04.263647+00 f t 24000.00 1 24000.00 7697 163 \N 7287 +56773 2025-09-22 02:03:09.060941+00 2025-09-22 02:03:09.060951+00 f t 46000.00 1 46000.00 7975 82 \N 7520 +54176 2025-09-17 22:56:20.348786+00 2025-09-17 22:56:20.3488+00 f t 46000.00 1 46000.00 7699 82 \N 7288 +54177 2025-09-17 22:56:20.35765+00 2025-09-17 22:56:20.357661+00 f t 8000.00 1 8000.00 7699 85 \N 7288 +55164 2025-09-19 16:19:04.45102+00 2025-09-19 16:19:04.451029+00 f t 75000.00 1 75000.00 7818 108 \N 7395 +54190 2025-09-17 23:04:49.350854+00 2025-09-17 23:04:49.350864+00 f t 20500.00 1 20500.00 7700 109 \N 7289 +54191 2025-09-17 23:04:49.356747+00 2025-09-17 23:04:49.356758+00 f t 46000.00 1 46000.00 7700 82 \N 7289 +54192 2025-09-17 23:04:49.361461+00 2025-09-17 23:04:49.36147+00 f t 7700.00 1 7700.00 7700 93 \N 7289 +54193 2025-09-17 23:04:49.365971+00 2025-09-17 23:04:49.36598+00 f t 13200.00 1 13200.00 7700 146 \N 7289 +55222 2025-09-19 16:37:20.44984+00 2025-09-19 16:37:20.449848+00 f t 8000.00 1 8000.00 7762 85 \N 6512 +54195 2025-09-17 23:31:57.192852+00 2025-09-17 23:31:57.192861+00 f t 55000.00 1 55000.00 7702 84 \N 7292 +55223 2025-09-19 16:37:20.454416+00 2025-09-19 16:37:20.454426+00 f t 24000.00 1 24000.00 7762 163 \N 6512 +55224 2025-09-19 16:37:20.458057+00 2025-09-19 16:37:20.458065+00 f t 46000.00 1 46000.00 7762 82 \N 6512 +55228 2025-09-19 17:00:01.994095+00 2025-09-19 17:00:01.994112+00 f t 68000.00 1 68000.00 7823 106 \N 7399 +54199 2025-09-18 00:53:06.312654+00 2025-09-18 00:53:06.312665+00 f t 30000.00 1 30000.00 7704 83 \N 7293 +54220 2025-09-18 01:18:19.452654+00 2025-09-18 01:18:19.452663+00 f t 20500.00 1 20500.00 7705 109 \N 7294 +54221 2025-09-18 01:18:19.458573+00 2025-09-18 01:18:19.458585+00 f t 46000.00 1 46000.00 7705 82 \N 7294 +54222 2025-09-18 01:18:19.462982+00 2025-09-18 01:18:19.462991+00 f t 7700.00 1 7700.00 7705 93 \N 7294 +54223 2025-09-18 01:18:19.466899+00 2025-09-18 01:18:19.466906+00 f t 13200.00 1 13200.00 7705 146 \N 7294 +54232 2025-09-18 01:28:16.590846+00 2025-09-18 01:28:16.590855+00 f t 68000.00 1 68000.00 7707 106 \N 7295 +54234 2025-09-18 02:07:08.138802+00 2025-09-18 02:07:08.138812+00 f t 46000.00 1 46000.00 7708 82 \N 7296 +54241 2025-09-18 02:51:19.376338+00 2025-09-18 02:51:19.376352+00 f t 46000.00 1 46000.00 7709 82 \N 7297 +54242 2025-09-18 02:51:19.382336+00 2025-09-18 02:51:19.382348+00 f t 33000.00 1 33000.00 7709 133 \N 7297 +54243 2025-09-18 02:51:19.387479+00 2025-09-18 02:51:19.387487+00 f t 13000.00 1 13000.00 7709 89 \N 7297 +54258 2025-09-18 03:43:30.020839+00 2025-09-18 03:43:30.020852+00 f t 46000.00 1 46000.00 7711 82 \N 7298 +55426 2025-09-19 17:49:41.7064+00 2025-09-19 17:49:41.706409+00 f t 46000.00 1 46000.00 7828 82 \N 7406 +55427 2025-09-19 17:49:41.712926+00 2025-09-19 17:49:41.712934+00 f t 7700.00 1 7700.00 7828 93 \N 7406 +55428 2025-09-19 17:49:41.718612+00 2025-09-19 17:49:41.718621+00 f t 13200.00 1 13200.00 7828 146 \N 7406 +55429 2025-09-19 17:49:41.723288+00 2025-09-19 17:49:41.723296+00 f t 8000.00 1 8000.00 7828 85 \N 7406 +55430 2025-09-19 17:49:41.727813+00 2025-09-19 17:49:41.727822+00 f t 24000.00 1 24000.00 7828 163 \N 7406 +55433 2025-09-19 17:52:03.23071+00 2025-09-19 17:52:03.23072+00 f t 46000.00 1 46000.00 7830 82 \N 7407 +55434 2025-09-19 17:52:03.237576+00 2025-09-19 17:52:03.237589+00 f t 24000.00 1 24000.00 7830 86 \N 7407 +54277 2025-09-18 04:07:00.03375+00 2025-09-18 04:07:00.033763+00 f t 46000.00 1 46000.00 7712 82 \N 7299 +54278 2025-09-18 04:07:00.040168+00 2025-09-18 04:07:00.04018+00 f t 8000.00 1 8000.00 7712 85 \N 7299 +54279 2025-09-18 04:07:00.045218+00 2025-09-18 04:07:00.04523+00 f t 24000.00 1 24000.00 7712 86 \N 7299 +55461 2025-09-19 18:02:38.068789+00 2025-09-19 18:02:38.068801+00 f t 46000.00 1 46000.00 7832 82 \N 7409 +55462 2025-09-19 18:02:38.075079+00 2025-09-19 18:02:38.075091+00 f t 8000.00 1 8000.00 7832 85 \N 7409 +55463 2025-09-19 18:02:38.080103+00 2025-09-19 18:02:38.080112+00 f t 24000.00 1 24000.00 7832 88 \N 7409 +55464 2025-09-19 18:02:38.084687+00 2025-09-19 18:02:38.084694+00 f t 24000.00 1 24000.00 7832 163 \N 7409 +54287 2025-09-18 05:09:16.266585+00 2025-09-18 05:09:16.266595+00 f t 32500.00 1 32500.00 7713 112 \N 7300 +54288 2025-09-18 05:09:16.272489+00 2025-09-18 05:09:16.272498+00 f t 46000.00 1 46000.00 7713 82 \N 7300 +54289 2025-09-18 05:09:16.277558+00 2025-09-18 05:09:16.277566+00 f t 7700.00 1 7700.00 7713 93 \N 7300 +54290 2025-09-18 05:09:16.282428+00 2025-09-18 05:09:16.282438+00 f t 13200.00 1 13200.00 7713 146 \N 7300 +54295 2025-09-18 05:39:32.991835+00 2025-09-18 05:39:32.991844+00 f t 32500.00 1 32500.00 7714 112 \N 7301 +54296 2025-09-18 05:39:32.996663+00 2025-09-18 05:39:32.996673+00 f t 46000.00 1 46000.00 7714 82 \N 7301 +54297 2025-09-18 05:39:33.000454+00 2025-09-18 05:39:33.000462+00 f t 7700.00 1 7700.00 7714 93 \N 7301 +54298 2025-09-18 05:39:33.004971+00 2025-09-18 05:39:33.00498+00 f t 13200.00 1 13200.00 7714 146 \N 7301 +54301 2025-09-18 06:26:55.920031+00 2025-09-18 06:26:55.920044+00 f t 55000.00 1 55000.00 7717 84 \N 7303 +54303 2025-09-18 07:18:59.090564+00 2025-09-18 07:18:59.090573+00 f t 46000.00 1 46000.00 7720 82 \N 7306 +56421 2025-09-21 19:42:33.014083+00 2025-09-21 19:42:33.014094+00 f t 46000.00 1 46000.00 7954 82 \N 7503 +58081 2025-09-23 18:53:36.893792+00 2025-09-23 18:53:36.8938+00 f t 46000.00 1 46000.00 8094 82 \N 7622 +67782 2025-10-12 00:03:36.832558+00 2025-10-12 00:03:36.832571+00 f t 30000.00 1 30000.00 9411 83 \N 8726 +54787 2025-09-18 21:42:05.024307+00 2025-09-18 21:42:05.024317+00 f t 46000.00 1 46000.00 7769 82 \N 7349 +54788 2025-09-18 21:42:05.029552+00 2025-09-18 21:42:05.029564+00 f t 8000.00 1 8000.00 7769 85 \N 7349 +54789 2025-09-18 21:42:05.033998+00 2025-09-18 21:42:05.034006+00 f t 24000.00 1 24000.00 7769 163 \N 7349 +65741 2025-10-07 11:42:20.310583+00 2025-10-07 11:42:20.310592+00 f t 55000.00 1 55000.00 9065 84 \N 8460 +54402 2025-09-18 08:17:34.0745+00 2025-09-18 08:17:34.074509+00 f t 34000.00 1 34000.00 7721 110 \N 7307 +54403 2025-09-18 08:17:34.079117+00 2025-09-18 08:17:34.079124+00 f t 46000.00 1 46000.00 7721 82 \N 7307 +54404 2025-09-18 08:17:34.082584+00 2025-09-18 08:17:34.082592+00 f t 24000.00 1 24000.00 7721 131 \N 7307 +54405 2025-09-18 08:17:34.086032+00 2025-09-18 08:17:34.08604+00 f t 7700.00 1 7700.00 7721 93 \N 7307 +54406 2025-09-18 08:17:34.091088+00 2025-09-18 08:17:34.0911+00 f t 87000.00 1 87000.00 7721 165 \N 7307 +54407 2025-09-18 08:17:34.09561+00 2025-09-18 08:17:34.095621+00 f t 13200.00 1 13200.00 7721 146 \N 7307 +54408 2025-09-18 08:17:34.100802+00 2025-09-18 08:17:34.100814+00 f t 8000.00 1 8000.00 7721 85 \N 7307 +54409 2025-09-18 08:17:34.105065+00 2025-09-18 08:17:34.105074+00 f t 24000.00 1 24000.00 7721 163 \N 7307 +54410 2025-09-18 08:17:34.10864+00 2025-09-18 08:17:34.108648+00 f t 13000.00 1 13000.00 7721 89 \N 7307 +54931 2025-09-18 23:27:58.777614+00 2025-09-18 23:27:58.777623+00 f t 68000.00 1 68000.00 7777 106 \N 7359 +54429 2025-09-18 09:56:39.737466+00 2025-09-18 09:56:39.737475+00 f t 46000.00 1 46000.00 7722 82 \N 7309 +54430 2025-09-18 09:56:39.742076+00 2025-09-18 09:56:39.742086+00 f t 8000.00 1 8000.00 7722 85 \N 7309 +54956 2025-09-19 01:15:43.127981+00 2025-09-19 01:15:43.127993+00 f t 20500.00 1 20500.00 7784 109 \N 7364 +54957 2025-09-19 01:15:43.133474+00 2025-09-19 01:15:43.133485+00 f t 46000.00 1 46000.00 7784 82 \N 7364 +54958 2025-09-19 01:15:43.138109+00 2025-09-19 01:15:43.13812+00 f t 7700.00 1 7700.00 7784 93 \N 7364 +54959 2025-09-19 01:15:43.142822+00 2025-09-19 01:15:43.142831+00 f t 13200.00 1 13200.00 7784 146 \N 7364 +54438 2025-09-18 10:28:58.98402+00 2025-09-18 10:28:58.984031+00 f t 55000.00 1 55000.00 7723 84 \N 7310 +55022 2025-09-19 02:28:41.164453+00 2025-09-19 02:28:41.164462+00 f t 46000.00 1 46000.00 7790 82 \N 7370 +54449 2025-09-18 10:32:42.854015+00 2025-09-18 10:32:42.854027+00 f t 55000.00 1 55000.00 7724 84 \N 7311 +55035 2025-09-19 04:10:54.475932+00 2025-09-19 04:10:54.475941+00 f t 46000.00 1 46000.00 7793 82 \N 7374 +54451 2025-09-18 10:39:04.028623+00 2025-09-18 10:39:04.028636+00 f t 68000.00 1 68000.00 7725 106 \N 7312 +55036 2025-09-19 04:10:54.480815+00 2025-09-19 04:10:54.480823+00 f t 8000.00 1 8000.00 7793 85 \N 7374 +54454 2025-09-18 10:39:55.692399+00 2025-09-18 10:39:55.692411+00 f t 68000.00 1 68000.00 7726 106 \N 7313 +55078 2025-09-19 14:43:47.182849+00 2025-09-19 14:43:47.182858+00 f t 68000.00 1 68000.00 7810 106 \N 7389 +55158 2025-09-19 15:38:56.393425+00 2025-09-19 15:38:56.393433+00 f t 76000.00 1 76000.00 7815 97 \N 7393 +55159 2025-09-19 15:38:56.399106+00 2025-09-19 15:38:56.399115+00 f t 49000.00 1 49000.00 7815 98 \N 7393 +55160 2025-09-19 15:38:56.403718+00 2025-09-19 15:38:56.403727+00 f t 46000.00 1 46000.00 7815 82 \N 7393 +54497 2025-09-18 11:25:56.527293+00 2025-09-18 11:25:56.527304+00 f t 46000.00 1 46000.00 7728 82 \N 7314 +54502 2025-09-18 11:27:47.173565+00 2025-09-18 11:27:47.173575+00 f t 32500.00 1 32500.00 7729 112 \N 7315 +54503 2025-09-18 11:27:47.178655+00 2025-09-18 11:27:47.178663+00 f t 46000.00 1 46000.00 7729 82 \N 7315 +54504 2025-09-18 11:27:47.183494+00 2025-09-18 11:27:47.183503+00 f t 7700.00 1 7700.00 7729 93 \N 7315 +54505 2025-09-18 11:27:47.187409+00 2025-09-18 11:27:47.187417+00 f t 13200.00 1 13200.00 7729 146 \N 7315 +54509 2025-09-18 11:32:43.543109+00 2025-09-18 11:32:43.543117+00 f t 30000.00 1 30000.00 7730 83 \N 7316 +54511 2025-09-18 12:25:02.917074+00 2025-09-18 12:25:02.917089+00 f t 46000.00 1 46000.00 7735 82 \N 7318 +54515 2025-09-18 12:38:37.69276+00 2025-09-18 12:38:37.692774+00 f t 46000.00 1 46000.00 7736 82 \N 7319 +54519 2025-09-18 13:27:11.069028+00 2025-09-18 13:27:11.069038+00 f t 46000.00 1 46000.00 7737 82 \N 928 +54521 2025-09-18 13:27:38.908968+00 2025-09-18 13:27:38.908979+00 f t 55000.00 1 55000.00 7738 84 \N 7320 +54525 2025-09-18 13:51:26.206911+00 2025-09-18 13:51:26.206921+00 f t 46000.00 1 46000.00 7739 82 \N 7321 +54528 2025-09-18 14:05:12.436814+00 2025-09-18 14:05:12.436826+00 f t 46000.00 1 46000.00 7742 82 \N 7323 +54529 2025-09-18 14:05:12.442933+00 2025-09-18 14:05:12.442945+00 f t 24000.00 1 24000.00 7742 86 \N 7323 +54531 2025-09-18 15:25:03.80262+00 2025-09-18 15:25:03.802634+00 f t 46000.00 1 46000.00 7743 82 \N 7325 +54533 2025-09-18 16:35:26.922432+00 2025-09-18 16:35:26.922444+00 f t 76000.00 1 76000.00 7748 97 \N 7332 +54537 2025-09-18 17:08:14.480347+00 2025-09-18 17:08:14.481212+00 f t 55000.00 1 55000.00 7749 84 \N 7333 +54572 2025-09-18 18:13:33.929901+00 2025-09-18 18:13:33.92991+00 f t 46000.00 1 46000.00 7754 82 \N 7337 +54573 2025-09-18 18:13:33.934819+00 2025-09-18 18:13:33.934827+00 f t 24000.00 1 24000.00 7754 163 \N 7337 +54574 2025-09-18 18:13:36.29302+00 2025-09-18 18:13:36.293029+00 f t 46000.00 1 46000.00 7755 82 \N 7338 +54575 2025-09-18 18:13:36.298701+00 2025-09-18 18:13:36.298709+00 f t 24000.00 1 24000.00 7755 86 \N 7338 +54584 2025-09-18 18:28:27.158333+00 2025-09-18 18:28:27.158341+00 f t 31500.00 1 31500.00 7757 111 \N 7339 +54585 2025-09-18 18:28:27.164361+00 2025-09-18 18:28:27.164372+00 f t 46000.00 1 46000.00 7757 82 \N 7339 +54586 2025-09-18 18:28:27.168565+00 2025-09-18 18:28:27.168575+00 f t 68000.00 1 68000.00 7757 106 \N 7339 +54587 2025-09-18 18:28:27.172816+00 2025-09-18 18:28:27.172823+00 f t 7700.00 1 7700.00 7757 93 \N 7339 +54588 2025-09-18 18:28:27.17669+00 2025-09-18 18:28:27.176698+00 f t 13200.00 1 13200.00 7757 146 \N 7339 +54613 2025-09-18 18:32:48.2574+00 2025-09-18 18:32:48.257408+00 f t 55000.00 1 55000.00 7759 84 \N 7341 +54615 2025-09-18 18:32:52.345484+00 2025-09-18 18:32:52.345492+00 f t 68000.00 1 68000.00 7758 106 \N 7340 +54664 2025-09-18 18:50:47.621868+00 2025-09-18 18:50:47.621878+00 f t 46000.00 1 46000.00 7760 82 \N 7342 +54665 2025-09-18 18:50:47.627408+00 2025-09-18 18:50:47.627419+00 f t 8000.00 1 8000.00 7760 85 \N 7342 +54666 2025-09-18 18:50:47.632459+00 2025-09-18 18:50:47.632471+00 f t 24000.00 1 24000.00 7760 163 \N 7342 +54667 2025-09-18 18:50:47.637406+00 2025-09-18 18:50:47.637416+00 f t 46000.00 1 46000.00 7760 82 \N 7343 +54668 2025-09-18 18:50:47.642346+00 2025-09-18 18:50:47.642356+00 f t 8000.00 1 8000.00 7760 85 \N 7343 +54669 2025-09-18 18:50:47.647226+00 2025-09-18 18:50:47.647237+00 f t 24000.00 1 24000.00 7760 163 \N 7343 +54757 2025-09-18 21:13:00.198023+00 2025-09-18 21:13:00.198033+00 f t 46000.00 1 46000.00 7767 82 \N 7348 +54758 2025-09-18 21:13:00.203281+00 2025-09-18 21:13:00.203289+00 f t 7700.00 1 7700.00 7767 93 \N 7348 +54759 2025-09-18 21:13:00.207556+00 2025-09-18 21:13:00.207565+00 f t 13200.00 1 13200.00 7767 146 \N 7348 +77090 2025-10-31 23:35:30.364392+00 2025-10-31 23:35:30.3644+00 f t 20500.00 1 20500.00 11130 109 \N 10012 +54678 2025-09-18 19:08:05.446315+00 2025-09-18 19:08:05.446325+00 f t 46000.00 1 46000.00 7761 82 \N 7344 +54679 2025-09-18 19:08:05.451757+00 2025-09-18 19:08:05.451765+00 f t 8000.00 1 8000.00 7761 85 \N 7344 +61783 2025-09-30 14:24:47.656571+00 2025-09-30 14:24:47.656581+00 f t 55000.00 1 55000.00 8590 84 \N 8053 +56457 2025-09-21 20:38:37.511071+00 2025-09-21 20:38:37.511083+00 f t 46000.00 1 46000.00 7958 82 \N 618 +67793 2025-10-12 00:43:49.889879+00 2025-10-12 00:43:49.889889+00 f t 46000.00 1 46000.00 9414 82 \N 8729 +58335 2025-09-23 23:24:47.657804+00 2025-09-23 23:24:47.657815+00 f t 46000.00 1 46000.00 8114 82 \N 7638 +58336 2025-09-23 23:24:47.663173+00 2025-09-23 23:24:47.66318+00 f t 69000.00 1 69000.00 8114 142 \N 7638 +54716 2025-09-18 20:25:29.474647+00 2025-09-18 20:25:29.474657+00 f t 32500.00 1 32500.00 7763 112 \N 7345 +54717 2025-09-18 20:25:29.480552+00 2025-09-18 20:25:29.480561+00 f t 46000.00 1 46000.00 7763 82 \N 7345 +54718 2025-09-18 20:25:29.486687+00 2025-09-18 20:25:29.486698+00 f t 7700.00 1 7700.00 7763 93 \N 7345 +54719 2025-09-18 20:25:29.492239+00 2025-09-18 20:25:29.49225+00 f t 13200.00 1 13200.00 7763 146 \N 7345 +54965 2025-09-19 01:21:55.624196+00 2025-09-19 01:21:55.624205+00 f t 46000.00 1 46000.00 7785 82 \N 7365 +54724 2025-09-18 20:43:34.804317+00 2025-09-18 20:43:34.804327+00 f t 34000.00 1 34000.00 7764 110 \N 7346 +54725 2025-09-18 20:43:34.810008+00 2025-09-18 20:43:34.810022+00 f t 46000.00 1 46000.00 7764 82 \N 7346 +54726 2025-09-18 20:43:34.815494+00 2025-09-18 20:43:34.815507+00 f t 7700.00 1 7700.00 7764 93 \N 7346 +54727 2025-09-18 20:43:34.820088+00 2025-09-18 20:43:34.820096+00 f t 13200.00 1 13200.00 7764 146 \N 7346 +58364 2025-09-24 02:13:11.834549+00 2025-09-24 02:13:11.834561+00 f t 55000.00 1 55000.00 8124 84 \N 7645 +54991 2025-09-19 02:06:16.975015+00 2025-09-19 02:06:16.975024+00 f t 46000.00 1 46000.00 7788 82 \N 7368 +54992 2025-09-19 02:06:16.97952+00 2025-09-19 02:06:16.979528+00 f t 24000.00 1 24000.00 7788 86 \N 7368 +54736 2025-09-18 21:03:03.314616+00 2025-09-18 21:03:03.314626+00 f t 20500.00 1 20500.00 7766 109 \N 7347 +54737 2025-09-18 21:03:03.320461+00 2025-09-18 21:03:03.32047+00 f t 46000.00 1 46000.00 7766 82 \N 7347 +54738 2025-09-18 21:03:03.32475+00 2025-09-18 21:03:03.324761+00 f t 7700.00 1 7700.00 7766 93 \N 7347 +54739 2025-09-18 21:03:03.329017+00 2025-09-18 21:03:03.329025+00 f t 13200.00 1 13200.00 7766 146 \N 7347 +55044 2025-09-19 07:11:18.976567+00 2025-09-19 07:11:18.976578+00 f t 55000.00 1 55000.00 7796 84 \N 7377 +55064 2025-09-19 11:09:05.808239+00 2025-09-19 11:09:05.808248+00 f t 46000.00 1 46000.00 7800 82 \N 7380 +55089 2025-09-19 15:14:18.581616+00 2025-09-19 15:14:18.581625+00 f t 46000.00 1 46000.00 7813 82 \N 7391 +55090 2025-09-19 15:14:18.586357+00 2025-09-19 15:14:18.586369+00 f t 8000.00 1 8000.00 7813 85 \N 7391 +55127 2025-09-19 15:27:04.203621+00 2025-09-19 15:27:04.203631+00 f t 20500.00 1 20500.00 7814 109 \N 7392 +55128 2025-09-19 15:27:04.209908+00 2025-09-19 15:27:04.209918+00 f t 46000.00 1 46000.00 7814 82 \N 7392 +55129 2025-09-19 15:27:04.216351+00 2025-09-19 15:27:04.21636+00 f t 7700.00 1 7700.00 7814 93 \N 7392 +55130 2025-09-19 15:27:04.222038+00 2025-09-19 15:27:04.222049+00 f t 13200.00 1 13200.00 7814 146 \N 7392 +56769 2025-09-22 00:29:25.083499+00 2025-09-22 00:29:25.083508+00 f t 46000.00 1 46000.00 7970 82 \N 7518 +58566 2025-09-24 18:25:15.032718+00 2025-09-24 18:25:15.032728+00 f t 46000.00 1 46000.00 8173 82 \N 7687 +58576 2025-09-24 19:34:35.14915+00 2025-09-24 19:34:35.149159+00 f t 55000.00 1 55000.00 8180 84 \N 7695 +56802 2025-09-22 03:14:30.543209+00 2025-09-22 03:14:30.543218+00 f t 55000.00 1 55000.00 7977 84 \N 7522 +58603 2025-09-24 21:03:31.822668+00 2025-09-24 21:03:31.822677+00 f t 46000.00 1 46000.00 8192 82 \N 7705 +55216 2025-09-19 16:33:02.773212+00 2025-09-19 16:33:02.773224+00 f t 46000.00 1 46000.00 7819 82 \N 7396 +55217 2025-09-19 16:33:02.779347+00 2025-09-19 16:33:02.77936+00 f t 8000.00 1 8000.00 7819 85 \N 7396 +55218 2025-09-19 16:33:02.784807+00 2025-09-19 16:33:02.78482+00 f t 24000.00 1 24000.00 7819 86 \N 7396 +55226 2025-09-19 16:46:40.590054+00 2025-09-19 16:46:40.590065+00 f t 65000.00 1 65000.00 7821 107 \N 7397 +56818 2025-09-22 09:44:04.947283+00 2025-09-22 09:44:04.947292+00 f t 68000.00 1 68000.00 7982 106 \N 7527 +58604 2025-09-24 21:03:31.82796+00 2025-09-24 21:03:31.827969+00 f t 8000.00 1 8000.00 8192 85 \N 7705 +58623 2025-09-24 21:46:20.496041+00 2025-09-24 21:46:20.49605+00 f t 46000.00 1 46000.00 8195 82 \N 7708 +58624 2025-09-24 21:46:20.501556+00 2025-09-24 21:46:20.501565+00 f t 8000.00 1 8000.00 8195 85 \N 7708 +56878 2025-09-22 11:30:56.64562+00 2025-09-22 11:30:56.645633+00 f t 68000.00 1 68000.00 7986 106 \N 7530 +58727 2025-09-24 22:46:44.585627+00 2025-09-24 22:46:44.585641+00 f t 46000.00 1 46000.00 8200 82 \N 7711 +56979 2025-09-22 14:20:53.76063+00 2025-09-22 14:20:53.760638+00 f t 75000.00 1 75000.00 7999 108 \N 6782 +57016 2025-09-22 14:35:02.497667+00 2025-09-22 14:35:02.497682+00 f t 46000.00 1 46000.00 8002 82 \N 7546 +57017 2025-09-22 14:35:02.507886+00 2025-09-22 14:35:02.507901+00 f t 24000.00 1 24000.00 8002 86 \N 7546 +57061 2025-09-22 14:55:31.23503+00 2025-09-22 14:55:31.235039+00 f t 46000.00 1 46000.00 8005 82 \N 7549 +57062 2025-09-22 14:55:31.240831+00 2025-09-22 14:55:31.240839+00 f t 24000.00 1 24000.00 8005 86 \N 7549 +57098 2025-09-22 15:52:02.192814+00 2025-09-22 15:52:02.192823+00 f t 46000.00 1 46000.00 7984 82 \N 7529 +57103 2025-09-22 16:05:16.068198+00 2025-09-22 16:05:16.068208+00 f t 46000.00 1 46000.00 8013 82 \N 7554 +57104 2025-09-22 16:05:16.073315+00 2025-09-22 16:05:16.073324+00 f t 24000.00 1 24000.00 8013 163 \N 7554 +58889 2025-09-25 06:42:14.43579+00 2025-09-25 06:42:14.435804+00 f t 55000.00 1 55000.00 8217 84 \N 7735 +58903 2025-09-25 11:51:47.751782+00 2025-09-25 11:51:47.751794+00 f t 55000.00 1 55000.00 8224 84 \N 7742 +58970 2025-09-25 16:06:21.637456+00 2025-09-25 16:06:21.637466+00 f t 68000.00 1 68000.00 8246 106 \N 7759 +57187 2025-09-22 18:52:41.084481+00 2025-09-22 18:52:41.084494+00 f t 55000.00 1 55000.00 8027 84 \N 7563 +57224 2025-09-22 20:52:43.45823+00 2025-09-22 20:52:43.458239+00 f t 55000.00 1 55000.00 8034 84 \N 7569 +57262 2025-09-22 22:15:52.833603+00 2025-09-22 22:15:52.833611+00 f t 55000.00 1 55000.00 8042 84 \N 7575 +57271 2025-09-22 22:54:04.904658+00 2025-09-22 22:54:04.904668+00 f t 46000.00 1 46000.00 8044 82 \N 7577 +57272 2025-09-22 22:54:04.909965+00 2025-09-22 22:54:04.909973+00 f t 24000.00 1 24000.00 8044 163 \N 7577 +55581 2025-09-19 18:34:44.761773+00 2025-09-19 18:34:44.761787+00 f t 46000.00 1 46000.00 7833 82 \N 7410 +55585 2025-09-19 18:40:50.494375+00 2025-09-19 18:40:50.494392+00 f t 46000.00 1 46000.00 7834 82 \N 7411 +55620 2025-09-19 18:50:53.000193+00 2025-09-19 18:50:53.000207+00 f t 46000.00 1 46000.00 7829 82 \N 7403 +55621 2025-09-19 18:50:53.013419+00 2025-09-19 18:50:53.013429+00 f t 46000.00 1 46000.00 7829 82 \N 7402 +55622 2025-09-19 18:50:53.02417+00 2025-09-19 18:50:53.02418+00 f t 46000.00 1 46000.00 7829 82 \N 7405 +55623 2025-09-19 18:50:53.035844+00 2025-09-19 18:50:53.035859+00 f t 46000.00 1 46000.00 7829 82 \N 7404 +55624 2025-09-19 18:50:53.045366+00 2025-09-19 18:50:53.04538+00 f t 8000.00 1 8000.00 7829 85 \N 7403 +55625 2025-09-19 18:50:53.051947+00 2025-09-19 18:50:53.05196+00 f t 8000.00 1 8000.00 7829 85 \N 7402 +55626 2025-09-19 18:50:53.058331+00 2025-09-19 18:50:53.058344+00 f t 8000.00 1 8000.00 7829 85 \N 7405 +55627 2025-09-19 18:50:53.06637+00 2025-09-19 18:50:53.066382+00 f t 8000.00 1 8000.00 7829 85 \N 7404 +55628 2025-09-19 18:50:53.073033+00 2025-09-19 18:50:53.073046+00 f t 24000.00 1 24000.00 7829 86 \N 7402 +55629 2025-09-19 18:50:53.079898+00 2025-09-19 18:50:53.079911+00 f t 24000.00 1 24000.00 7829 163 \N 7403 +55630 2025-09-19 18:50:53.086052+00 2025-09-19 18:50:53.086064+00 f t 24000.00 1 24000.00 7829 163 \N 7405 +55631 2025-09-19 18:50:53.091809+00 2025-09-19 18:50:53.091822+00 f t 24000.00 1 24000.00 7829 86 \N 7404 +59989 2025-09-27 13:49:37.680027+00 2025-09-27 13:49:37.680037+00 f t 34000.00 1 34000.00 8385 110 \N 7879 +59990 2025-09-27 13:49:37.688127+00 2025-09-27 13:49:37.68814+00 f t 46000.00 1 46000.00 8385 82 \N 7879 +59991 2025-09-27 13:49:37.69219+00 2025-09-27 13:49:37.692199+00 f t 7700.00 1 7700.00 8385 93 \N 7879 +56458 2025-09-21 20:44:58.948445+00 2025-09-21 20:44:58.948455+00 f t 46000.00 1 46000.00 7959 82 \N 7507 +59992 2025-09-27 13:49:37.696304+00 2025-09-27 13:49:37.696312+00 f t 13200.00 1 13200.00 8385 146 \N 7879 +55640 2025-09-19 19:15:42.620466+00 2025-09-19 19:15:42.620476+00 f t 46000.00 1 46000.00 7837 82 \N 7412 +55641 2025-09-19 19:25:21.980444+00 2025-09-19 19:25:21.980457+00 f t 55000.00 1 55000.00 7838 84 \N 557 +55650 2025-09-19 19:56:30.098074+00 2025-09-19 19:56:30.098085+00 f t 46000.00 1 46000.00 7839 82 \N 7413 +55651 2025-09-19 19:56:30.104415+00 2025-09-19 19:56:30.104424+00 f t 24000.00 1 24000.00 7839 163 \N 7413 +55656 2025-09-19 20:26:22.008126+00 2025-09-19 20:26:22.008136+00 f t 68000.00 1 68000.00 7843 106 \N 7416 +55657 2025-09-19 20:37:41.390977+00 2025-09-19 20:37:41.390987+00 f t 55000.00 1 55000.00 7841 84 \N 7414 +55660 2025-09-19 20:58:06.62873+00 2025-09-19 20:58:06.628772+00 f t 46000.00 1 46000.00 7846 82 \N 7418 +56710 2025-09-21 21:30:24.208752+00 2025-09-21 21:30:24.208765+00 f t 46000.00 1 46000.00 7961 82 \N 7509 +56716 2025-09-21 21:58:35.37869+00 2025-09-21 21:58:35.3787+00 f t 46000.00 1 46000.00 7963 82 \N 7511 +56717 2025-09-21 21:58:35.384505+00 2025-09-21 21:58:35.384514+00 f t 24000.00 1 24000.00 7963 86 \N 7511 +56749 2025-09-21 23:48:06.147998+00 2025-09-21 23:48:06.148008+00 f t 46000.00 1 46000.00 7966 82 \N 7514 +55702 2025-09-19 21:43:03.825815+00 2025-09-19 21:43:03.825826+00 f t 55000.00 1 55000.00 7849 84 \N 7419 +56750 2025-09-21 23:48:06.156249+00 2025-09-21 23:48:06.156259+00 f t 8000.00 1 8000.00 7966 85 \N 7514 +56765 2025-09-22 00:01:08.103382+00 2025-09-22 00:01:08.103391+00 f t 55000.00 1 55000.00 7969 84 \N 7517 +56799 2025-09-22 03:04:57.583279+00 2025-09-22 03:04:57.583288+00 f t 46000.00 1 46000.00 7976 82 \N 7521 +56831 2025-09-22 09:55:40.295042+00 2025-09-22 09:55:40.295051+00 f t 55000.00 1 55000.00 7983 84 \N 7528 +55728 2025-09-19 22:04:46.641142+00 2025-09-19 22:04:46.641156+00 f t 46000.00 1 46000.00 7847 82 \N 7417 +55729 2025-09-19 22:04:46.648083+00 2025-09-19 22:04:46.648093+00 f t 7700.00 1 7700.00 7847 93 \N 7417 +55730 2025-09-19 22:04:46.653715+00 2025-09-19 22:04:46.653726+00 f t 13200.00 1 13200.00 7847 146 \N 7417 +56932 2025-09-22 12:48:44.823373+00 2025-09-22 12:48:44.823383+00 f t 55000.00 1 55000.00 7990 84 \N 7536 +56936 2025-09-22 12:51:53.900991+00 2025-09-22 12:51:53.901002+00 f t 68000.00 1 68000.00 7991 106 \N 7538 +56944 2025-09-22 13:53:09.085925+00 2025-09-22 13:53:09.085934+00 f t 55000.00 1 55000.00 7997 84 \N 7541 +55759 2025-09-19 22:16:26.30947+00 2025-09-19 22:16:26.309482+00 f t 46000.00 1 46000.00 7852 82 \N 7423 +55761 2025-09-19 22:17:41.399541+00 2025-09-19 22:17:41.399553+00 f t 46000.00 1 46000.00 7853 82 \N 7424 +55763 2025-09-19 22:28:18.059554+00 2025-09-19 22:28:18.059562+00 f t 55000.00 1 55000.00 7854 84 \N 7425 +55764 2025-09-19 22:45:46.17287+00 2025-09-19 22:45:46.172883+00 f t 55000.00 1 55000.00 7855 84 \N 7426 +55766 2025-09-19 22:53:00.244841+00 2025-09-19 22:53:00.24485+00 f t 46000.00 1 46000.00 7857 82 \N 7427 +55768 2025-09-19 23:09:08.910127+00 2025-09-19 23:09:08.910137+00 f t 55000.00 1 55000.00 7858 84 \N 7428 +57026 2025-09-22 14:52:28.576675+00 2025-09-22 14:52:28.576685+00 f t 55000.00 1 55000.00 8003 84 \N 7547 +55783 2025-09-19 23:15:33.576151+00 2025-09-19 23:15:33.57616+00 f t 55000.00 1 55000.00 7859 84 \N 7429 +55784 2025-09-19 23:25:17.309201+00 2025-09-19 23:25:17.30921+00 f t 46000.00 1 46000.00 7860 82 \N 3336 +55786 2025-09-19 23:46:43.240301+00 2025-09-19 23:46:43.240311+00 f t 55000.00 1 55000.00 7863 84 \N 7432 +55788 2025-09-20 00:19:15.800202+00 2025-09-20 00:19:15.800211+00 f t 46000.00 1 46000.00 7866 82 \N 7434 +55796 2025-09-20 01:48:43.547911+00 2025-09-20 01:48:43.547922+00 f t 55000.00 1 55000.00 7868 84 \N 7435 +57087 2025-09-22 15:20:30.553779+00 2025-09-22 15:20:30.553788+00 f t 46000.00 1 46000.00 8001 82 \N 7544 +57091 2025-09-22 15:21:19.464159+00 2025-09-22 15:21:19.464168+00 f t 55000.00 1 55000.00 8007 84 \N 7550 +55802 2025-09-20 04:27:46.964557+00 2025-09-20 04:27:46.964566+00 f t 55000.00 1 55000.00 7872 84 \N 7437 +55804 2025-09-20 04:46:23.214803+00 2025-09-20 04:46:23.214813+00 f t 46000.00 1 46000.00 7873 82 \N 7438 +57136 2025-09-22 16:55:20.367973+00 2025-09-22 16:55:20.367988+00 f t 55000.00 1 55000.00 8019 84 \N 7559 +57180 2025-09-22 18:19:32.623457+00 2025-09-22 18:19:32.623466+00 f t 30000.00 1 30000.00 8025 83 \N 7562 +55823 2025-09-20 10:22:23.579365+00 2025-09-20 10:22:23.579375+00 f t 46000.00 1 46000.00 7874 82 \N 7439 +57241 2025-09-22 21:01:16.155899+00 2025-09-22 21:01:16.155911+00 f t 32500.00 1 32500.00 8035 112 \N 7570 +57242 2025-09-22 21:01:16.161533+00 2025-09-22 21:01:16.161545+00 f t 46000.00 1 46000.00 8035 82 \N 7570 +57243 2025-09-22 21:01:16.166385+00 2025-09-22 21:01:16.166395+00 f t 68000.00 1 68000.00 8035 106 \N 7570 +57244 2025-09-22 21:01:16.173098+00 2025-09-22 21:01:16.17311+00 f t 7700.00 1 7700.00 8035 93 \N 7570 +57245 2025-09-22 21:01:16.178196+00 2025-09-22 21:01:16.178204+00 f t 13200.00 1 13200.00 8035 146 \N 7570 +55887 2025-09-20 10:29:25.882863+00 2025-09-20 10:29:25.882871+00 f t 46000.00 1 46000.00 7875 82 \N 7440 +55902 2025-09-20 10:32:36.236048+00 2025-09-20 10:32:36.236057+00 f t 46000.00 1 46000.00 7876 82 \N 7441 +55903 2025-09-20 10:32:36.240488+00 2025-09-20 10:32:36.240498+00 f t 24000.00 1 24000.00 7876 163 \N 7441 +55908 2025-09-20 11:58:50.835259+00 2025-09-20 11:58:50.835268+00 f t 46000.00 1 46000.00 7878 82 \N 7443 +55911 2025-09-20 12:20:16.065859+00 2025-09-20 12:20:16.065868+00 f t 46000.00 1 46000.00 7879 82 \N 7444 +55912 2025-09-20 12:20:16.072744+00 2025-09-20 12:20:16.072755+00 f t 8000.00 1 8000.00 7879 85 \N 7444 +55913 2025-09-20 13:13:22.453691+00 2025-09-20 13:13:22.453701+00 f t 46000.00 1 46000.00 7880 82 \N 5547 +61809 2025-09-30 16:25:17.889371+00 2025-09-30 16:25:17.88938+00 f t 46000.00 1 46000.00 8598 82 \N 8061 +61810 2025-09-30 16:25:17.895867+00 2025-09-30 16:25:17.895876+00 f t 46000.00 1 46000.00 8598 82 \N 8060 +55921 2025-09-20 13:26:44.040352+00 2025-09-20 13:26:44.040363+00 f t 55000.00 1 55000.00 7882 84 \N 7446 +55923 2025-09-20 13:55:14.993723+00 2025-09-20 13:55:14.993732+00 f t 55000.00 1 55000.00 7884 84 \N 7447 +55928 2025-09-20 14:49:45.184527+00 2025-09-20 14:49:45.184537+00 f t 55000.00 1 55000.00 7886 84 \N 7448 +55943 2025-09-20 15:20:44.72445+00 2025-09-20 15:20:44.72446+00 f t 46000.00 1 46000.00 7889 82 \N 7449 +55944 2025-09-20 15:20:44.733216+00 2025-09-20 15:20:44.733226+00 f t 8000.00 1 8000.00 7889 85 \N 7449 +55947 2025-09-20 15:30:27.955111+00 2025-09-20 15:30:27.955122+00 f t 68000.00 1 68000.00 7890 106 \N 7450 +58417 2025-09-24 02:57:44.828333+00 2025-09-24 02:57:44.828342+00 f t 46000.00 1 46000.00 8126 82 \N 7646 +58418 2025-09-24 02:57:44.837382+00 2025-09-24 02:57:44.837395+00 f t 24000.00 1 24000.00 8126 163 \N 7646 +56702 2025-09-21 21:07:29.448704+00 2025-09-21 21:07:29.448713+00 f t 76000.00 1 76000.00 7960 97 \N 7508 +56730 2025-09-21 22:30:53.855266+00 2025-09-21 22:30:53.855279+00 f t 55000.00 1 55000.00 7964 84 \N 7512 +56740 2025-09-21 22:33:01.174468+00 2025-09-21 22:33:01.174482+00 f t 46000.00 1 46000.00 7965 82 \N 7513 +56741 2025-09-21 22:33:01.182455+00 2025-09-21 22:33:01.182468+00 f t 8000.00 1 8000.00 7965 85 \N 7513 +56742 2025-09-21 22:33:01.188787+00 2025-09-21 22:33:01.188799+00 f t 24000.00 1 24000.00 7965 86 \N 7513 +56771 2025-09-22 01:15:31.361866+00 2025-09-22 01:15:31.361875+00 f t 46000.00 1 46000.00 7972 82 \N 7519 +58477 2025-09-24 12:02:07.712098+00 2025-09-24 12:02:07.712107+00 f t 55000.00 1 55000.00 8137 84 \N 7658 +58533 2025-09-24 15:07:54.84808+00 2025-09-24 15:07:54.848089+00 f t 55000.00 1 55000.00 8149 84 \N 7667 +56816 2025-09-22 08:34:14.857221+00 2025-09-22 08:34:14.857232+00 f t 55000.00 1 55000.00 7980 84 \N 7525 +58539 2025-09-24 16:08:56.442769+00 2025-09-24 16:08:56.442777+00 f t 72500.00 1 72500.00 8152 104 \N 7670 +55998 2025-09-20 16:07:57.77458+00 2025-09-20 16:07:57.774591+00 f t 46000.00 1 46000.00 7892 82 \N 7453 +55999 2025-09-20 16:07:57.781562+00 2025-09-20 16:07:57.781574+00 f t 46000.00 1 46000.00 7892 82 \N 7451 +56000 2025-09-20 16:07:57.78762+00 2025-09-20 16:07:57.787632+00 f t 8000.00 1 8000.00 7892 85 \N 7451 +56001 2025-09-20 16:07:57.793408+00 2025-09-20 16:07:57.79342+00 f t 24000.00 1 24000.00 7892 86 \N 7453 +56002 2025-09-20 16:07:57.799125+00 2025-09-20 16:07:57.799165+00 f t 24000.00 1 24000.00 7892 86 \N 7451 +56003 2025-09-20 16:07:57.804718+00 2025-09-20 16:07:57.804728+00 f t 8000.00 1 8000.00 7892 85 \N 7453 +58560 2025-09-24 17:32:21.913711+00 2025-09-24 17:32:21.913721+00 f t 46000.00 1 46000.00 8159 82 \N 7675 +58561 2025-09-24 17:32:21.918897+00 2025-09-24 17:32:21.918905+00 f t 24000.00 1 24000.00 8159 86 \N 7675 +56014 2025-09-20 16:32:28.575664+00 2025-09-20 16:32:28.575676+00 f t 55000.00 1 55000.00 7893 84 \N 7454 +58617 2025-09-24 21:11:56.322237+00 2025-09-24 21:11:56.32225+00 f t 55000.00 1 55000.00 8194 84 \N 7706 +56018 2025-09-20 18:03:06.156977+00 2025-09-20 18:03:06.15699+00 f t 55000.00 1 55000.00 7895 84 \N 7456 +56880 2025-09-22 11:51:35.439032+00 2025-09-22 11:51:35.439045+00 f t 68000.00 1 68000.00 7987 106 \N 7531 +58655 2025-09-24 22:20:08.036371+00 2025-09-24 22:20:08.036383+00 f t 46000.00 1 46000.00 8196 82 \N 7709 +58656 2025-09-24 22:20:08.050968+00 2025-09-24 22:20:08.050982+00 f t 8000.00 1 8000.00 8196 85 \N 7709 +58657 2025-09-24 22:20:08.064242+00 2025-09-24 22:20:08.064255+00 f t 24000.00 1 24000.00 8196 163 \N 7709 +56035 2025-09-20 18:38:36.688296+00 2025-09-20 18:38:36.68831+00 f t 68000.00 1 68000.00 7898 106 \N 7457 +56036 2025-09-20 18:38:36.693282+00 2025-09-20 18:38:36.693291+00 f t 30000.00 1 30000.00 7898 83 \N 7457 +56937 2025-09-22 13:50:12.076343+00 2025-09-22 13:50:12.076408+00 f t 46000.00 1 46000.00 7996 82 \N 7540 +57056 2025-09-22 14:53:58.855293+00 2025-09-22 14:53:58.855302+00 f t 46000.00 1 46000.00 8004 82 \N 7548 +57057 2025-09-22 14:53:58.860108+00 2025-09-22 14:53:58.860115+00 f t 8000.00 1 8000.00 8004 85 \N 7548 +57058 2025-09-22 14:53:58.864021+00 2025-09-22 14:53:58.86403+00 f t 24000.00 1 24000.00 8004 86 \N 7548 +56077 2025-09-20 19:49:26.549367+00 2025-09-20 19:49:26.549379+00 f t 20500.00 1 20500.00 7903 109 \N 7459 +56078 2025-09-20 19:49:26.554687+00 2025-09-20 19:49:26.5547+00 f t 46000.00 1 46000.00 7903 82 \N 7459 +56079 2025-09-20 19:49:26.558691+00 2025-09-20 19:49:26.558698+00 f t 7700.00 1 7700.00 7903 93 \N 7459 +56080 2025-09-20 19:49:26.562563+00 2025-09-20 19:49:26.56257+00 f t 13200.00 1 13200.00 7903 146 \N 7459 +56081 2025-09-20 19:49:26.567567+00 2025-09-20 19:49:26.567575+00 f t 8000.00 1 8000.00 7903 85 \N 7459 +56082 2025-09-20 19:49:26.571467+00 2025-09-20 19:49:26.571476+00 f t 24000.00 1 24000.00 7903 163 \N 7459 +57096 2025-09-22 15:28:42.70145+00 2025-09-22 15:28:42.701459+00 f t 65000.00 1 65000.00 8010 107 \N 7552 +57100 2025-09-22 15:57:54.291063+00 2025-09-22 15:57:54.291075+00 f t 76000.00 1 76000.00 8011 97 \N 7553 +56096 2025-09-20 20:29:15.046826+00 2025-09-20 20:29:15.046838+00 f t 46000.00 1 46000.00 7904 82 \N 7460 +56098 2025-09-20 22:05:30.02404+00 2025-09-20 22:05:30.024049+00 f t 55000.00 1 55000.00 7906 84 \N 7461 +57164 2025-09-22 16:58:28.51595+00 2025-09-22 16:58:28.515959+00 f t 46000.00 1 46000.00 8020 82 \N 7560 +57165 2025-09-22 16:58:28.521475+00 2025-09-22 16:58:28.521486+00 f t 68000.00 1 68000.00 8020 106 \N 7560 +57172 2025-09-22 17:08:25.094771+00 2025-09-22 17:08:25.09478+00 f t 46000.00 1 46000.00 8022 82 \N 7561 +57173 2025-09-22 17:08:25.100174+00 2025-09-22 17:08:25.100187+00 f t 69000.00 1 69000.00 8022 142 \N 7561 +57213 2025-09-22 19:55:24.513915+00 2025-09-22 19:55:24.513928+00 f t 46000.00 1 46000.00 8031 82 \N 7566 +56120 2025-09-20 22:26:48.479546+00 2025-09-20 22:26:48.479559+00 f t 46000.00 1 46000.00 7908 82 \N 7462 +57219 2025-09-22 20:08:57.55063+00 2025-09-22 20:08:57.550639+00 f t 46000.00 1 46000.00 8028 82 \N 7564 +56122 2025-09-20 22:50:16.251356+00 2025-09-20 22:50:16.251366+00 f t 78000.00 1 78000.00 7910 167 \N 7464 +57220 2025-09-22 20:08:57.556967+00 2025-09-22 20:08:57.556982+00 f t 24000.00 1 24000.00 8028 86 \N 7564 +57221 2025-09-22 20:08:57.562617+00 2025-09-22 20:08:57.562629+00 f t 24000.00 1 24000.00 8028 86 \N 2230 +57222 2025-09-22 20:08:57.566974+00 2025-09-22 20:08:57.566983+00 f t 46000.00 1 46000.00 8028 82 \N 2230 +57257 2025-09-22 22:07:56.777149+00 2025-09-22 22:07:56.777162+00 f t 55000.00 1 55000.00 8041 84 \N 7574 +56140 2025-09-21 00:28:56.416697+00 2025-09-21 00:28:56.416706+00 f t 78000.00 1 78000.00 7912 167 \N 7466 +56148 2025-09-21 00:41:20.700612+00 2025-09-21 00:41:20.700622+00 f t 55000.00 1 55000.00 7913 84 \N 7467 +56153 2025-09-21 01:13:08.57092+00 2025-09-21 01:13:08.570929+00 f t 55000.00 1 55000.00 7914 84 \N 7468 +61811 2025-09-30 16:25:17.90099+00 2025-09-30 16:25:17.900998+00 f t 8000.00 1 8000.00 8598 85 \N 8061 +56205 2025-09-21 07:06:52.45696+00 2025-09-21 07:06:52.456982+00 f t 30000.00 1 30000.00 7920 83 \N 7471 +61812 2025-09-30 16:25:17.905947+00 2025-09-30 16:25:17.905956+00 f t 8000.00 1 8000.00 8598 85 \N 8060 +56207 2025-09-21 07:26:23.605134+00 2025-09-21 07:26:23.605145+00 f t 46000.00 1 46000.00 7921 82 \N 7472 +58174 2025-09-23 19:17:56.881552+00 2025-09-23 19:17:56.881564+00 f t 93750.00 1 93750.00 8096 90 \N 7624 +58175 2025-09-23 19:17:56.887632+00 2025-09-23 19:17:56.88764+00 f t 46000.00 1 46000.00 8096 82 \N 7624 +58176 2025-09-23 19:17:56.89278+00 2025-09-23 19:17:56.892788+00 f t 8000.00 1 8000.00 8096 85 \N 7624 +58177 2025-09-23 19:17:56.897743+00 2025-09-23 19:17:56.897751+00 f t 24000.00 1 24000.00 8096 163 \N 7624 +56223 2025-09-21 07:43:35.45553+00 2025-09-21 07:43:35.455542+00 f t 78000.00 1 78000.00 7922 167 \N 7473 +56224 2025-09-21 07:43:35.46192+00 2025-09-21 07:43:35.461929+00 f t 78000.00 1 78000.00 7922 167 \N 7474 +56226 2025-09-21 08:53:19.502755+00 2025-09-21 08:53:19.502768+00 f t 46000.00 1 46000.00 7923 82 \N 7475 +56229 2025-09-21 11:26:34.925402+00 2025-09-21 11:26:34.925415+00 f t 46000.00 1 46000.00 7924 82 \N 7476 +56230 2025-09-21 11:26:34.932328+00 2025-09-21 11:26:34.932336+00 f t 8000.00 1 8000.00 7924 85 \N 7476 +58243 2025-09-23 22:55:31.378747+00 2025-09-23 22:55:31.378757+00 f t 46000.00 1 46000.00 8109 82 \N 7634 +58349 2025-09-23 23:49:46.009945+00 2025-09-23 23:49:46.009954+00 f t 46000.00 1 46000.00 8117 82 \N 7641 +58350 2025-09-23 23:49:46.01547+00 2025-09-23 23:49:46.015478+00 f t 24000.00 1 24000.00 8117 163 \N 7641 +56255 2025-09-21 13:00:38.693468+00 2025-09-21 13:00:38.693482+00 f t 55000.00 1 55000.00 7928 84 \N 7480 +56258 2025-09-21 14:26:35.166694+00 2025-09-21 14:26:35.166702+00 f t 46000.00 1 46000.00 7929 82 \N 7481 +56259 2025-09-21 14:26:35.171382+00 2025-09-21 14:26:35.171389+00 f t 8000.00 1 8000.00 7929 85 \N 7481 +56275 2025-09-21 15:22:42.310271+00 2025-09-21 15:22:42.310279+00 f t 55000.00 1 55000.00 7931 84 \N 7482 +58452 2025-09-24 05:02:28.39685+00 2025-09-24 05:02:28.396858+00 f t 46000.00 1 46000.00 8131 82 \N 7653 +58453 2025-09-24 05:02:28.40184+00 2025-09-24 05:02:28.401848+00 f t 24000.00 1 24000.00 8131 163 \N 7653 +56282 2025-09-21 15:26:12.685508+00 2025-09-21 15:26:12.685521+00 f t 55000.00 1 55000.00 7932 84 \N 7483 +56295 2025-09-21 15:41:02.372741+00 2025-09-21 15:41:02.37275+00 f t 55000.00 1 55000.00 7933 84 \N 7484 +58553 2025-09-24 17:18:48.398421+00 2025-09-24 17:18:48.398429+00 f t 1000.00 1 1000.00 8121 170 \N 7643 +58554 2025-09-24 17:18:48.406477+00 2025-09-24 17:18:48.406486+00 f t 46000.00 1 46000.00 8121 82 \N 7643 +58718 2025-09-24 22:25:25.158808+00 2025-09-24 22:25:25.158819+00 f t 34000.00 1 34000.00 8197 110 \N 7710 +58719 2025-09-24 22:25:25.168874+00 2025-09-24 22:25:25.168889+00 f t 46000.00 1 46000.00 8197 82 \N 7710 +58720 2025-09-24 22:25:25.17614+00 2025-09-24 22:25:25.176153+00 f t 7700.00 1 7700.00 8197 93 \N 7710 +58721 2025-09-24 22:25:25.18371+00 2025-09-24 22:25:25.183723+00 f t 13200.00 1 13200.00 8197 146 \N 7710 +58722 2025-09-24 22:25:25.192134+00 2025-09-24 22:25:25.192148+00 f t 8000.00 1 8000.00 8197 85 \N 7710 +58723 2025-09-24 22:25:25.211011+00 2025-09-24 22:25:25.211021+00 f t 24000.00 1 24000.00 8197 163 \N 7710 +56332 2025-09-21 16:04:47.890799+00 2025-09-21 16:04:47.890807+00 f t 46000.00 1 46000.00 7935 82 \N 7488 +56333 2025-09-21 16:04:47.896383+00 2025-09-21 16:04:47.896393+00 f t 87500.00 1 87500.00 7935 141 \N 7488 +56335 2025-09-21 16:04:52.323275+00 2025-09-21 16:04:52.323285+00 f t 55000.00 1 55000.00 7937 84 \N 7489 +58764 2025-09-24 23:53:50.666493+00 2025-09-24 23:53:50.666504+00 f t 46000.00 1 46000.00 8205 82 \N 7718 +58769 2025-09-25 01:03:55.458761+00 2025-09-25 01:03:55.458769+00 f t 55000.00 1 55000.00 8208 84 \N 7721 +56342 2025-09-21 16:05:42.678197+00 2025-09-21 16:05:42.678206+00 f t 55000.00 1 55000.00 7939 84 \N 7491 +58786 2025-09-25 01:24:28.46277+00 2025-09-25 01:24:28.462778+00 f t 46000.00 1 46000.00 8210 82 \N 7722 +58787 2025-09-25 01:24:28.467705+00 2025-09-25 01:24:28.467714+00 f t 8000.00 1 8000.00 8210 85 \N 7722 +58788 2025-09-25 01:24:28.472446+00 2025-09-25 01:24:28.472456+00 f t 24000.00 1 24000.00 8210 86 \N 7722 +56347 2025-09-21 16:07:50.970219+00 2025-09-21 16:07:50.970231+00 f t 55000.00 1 55000.00 7940 84 \N 7492 +56349 2025-09-21 16:19:21.709614+00 2025-09-21 16:19:21.709623+00 f t 46000.00 1 46000.00 7941 82 \N 7493 +56351 2025-09-21 16:46:36.122657+00 2025-09-21 16:46:36.122665+00 f t 46000.00 1 46000.00 7942 82 \N 7494 +56358 2025-09-21 18:26:36.831875+00 2025-09-21 18:26:36.831887+00 f t 46000.00 1 46000.00 7944 82 \N 7495 +56359 2025-09-21 19:18:31.580482+00 2025-09-21 19:18:31.580493+00 f t 46000.00 1 46000.00 7945 82 \N 2042 +56365 2025-09-21 19:22:48.703423+00 2025-09-21 19:22:48.703432+00 f t 46000.00 1 46000.00 7949 82 \N 7498 +58860 2025-09-25 04:46:27.355946+00 2025-09-25 04:46:27.355959+00 f t 55000.00 1 55000.00 8215 84 \N 7733 +56367 2025-09-21 19:23:14.260154+00 2025-09-21 19:23:14.260164+00 f t 55000.00 1 55000.00 7946 84 \N 7496 +56368 2025-09-21 19:24:35.218179+00 2025-09-21 19:24:35.218189+00 f t 46000.00 1 46000.00 7950 82 \N 7499 +56370 2025-09-21 19:31:14.810088+00 2025-09-21 19:31:14.810097+00 f t 46000.00 1 46000.00 7951 82 \N 7501 +57097 2025-09-22 15:35:39.322215+00 2025-09-22 15:35:39.322224+00 f t 55000.00 1 55000.00 8006 84 \N 6907 +58899 2025-09-25 11:43:49.378314+00 2025-09-25 11:43:49.378325+00 f t 46000.00 1 46000.00 8223 82 \N 7741 +57108 2025-09-22 16:24:13.927425+00 2025-09-22 16:24:13.927434+00 f t 46000.00 1 46000.00 8014 82 \N 7127 +57109 2025-09-22 16:24:13.932518+00 2025-09-22 16:24:13.932526+00 f t 8000.00 1 8000.00 8014 85 \N 7127 +57110 2025-09-22 16:24:13.937025+00 2025-09-22 16:24:13.937033+00 f t 24000.00 1 24000.00 8014 163 \N 7127 +57120 2025-09-22 16:33:38.564739+00 2025-09-22 16:33:38.564748+00 f t 107000.00 1 107000.00 8015 103 \N 7555 +57121 2025-09-22 16:33:38.569392+00 2025-09-22 16:33:38.5694+00 f t 46000.00 1 46000.00 8015 82 \N 7555 +57122 2025-09-22 16:33:38.573119+00 2025-09-22 16:33:38.573128+00 f t 8000.00 1 8000.00 8015 85 \N 7555 +57130 2025-09-22 16:40:12.148577+00 2025-09-22 16:40:12.148586+00 f t 46000.00 1 46000.00 8017 82 \N 7557 +57134 2025-09-22 16:40:25.375744+00 2025-09-22 16:40:25.375754+00 f t 107000.00 1 107000.00 8016 103 \N 7556 +58926 2025-09-25 13:55:26.35869+00 2025-09-25 13:55:26.358701+00 f t 46000.00 1 46000.00 8231 82 \N 7745 +58927 2025-09-25 13:55:26.365404+00 2025-09-25 13:55:26.365414+00 f t 8000.00 1 8000.00 8231 85 \N 7745 +57174 2025-09-22 17:21:52.532709+00 2025-09-22 17:21:52.532721+00 f t 46000.00 1 46000.00 8023 82 \N 176 +56401 2025-09-21 19:33:41.615283+00 2025-09-21 19:33:41.615292+00 f t 46000.00 1 46000.00 7927 82 \N 7479 +56402 2025-09-21 19:33:41.619526+00 2025-09-21 19:33:41.619534+00 f t 29000.00 1 29000.00 7927 123 \N 7479 +56403 2025-09-21 19:33:41.624089+00 2025-09-21 19:33:41.624097+00 f t 13000.00 1 13000.00 7927 89 \N 7479 +57210 2025-09-22 19:37:33.899815+00 2025-09-22 19:37:33.899824+00 f t 46000.00 1 46000.00 8029 82 \N 7565 +57214 2025-09-22 20:03:36.936346+00 2025-09-22 20:03:36.936355+00 f t 30000.00 1 30000.00 8033 83 \N 928 +57247 2025-09-22 21:22:16.668432+00 2025-09-22 21:22:16.668443+00 f t 46000.00 1 46000.00 8038 82 \N 7572 +59993 2025-09-27 13:49:37.700669+00 2025-09-27 13:49:37.700677+00 f t 8000.00 1 8000.00 8385 85 \N 7879 +59994 2025-09-27 13:49:37.706351+00 2025-09-27 13:49:37.706359+00 f t 24000.00 1 24000.00 8385 163 \N 7879 +58232 2025-09-23 22:34:12.306522+00 2025-09-23 22:34:12.30653+00 f t 46000.00 1 46000.00 8106 82 \N 7630 +58266 2025-09-23 23:08:08.549382+00 2025-09-23 23:08:08.549391+00 f t 7700.00 1 7700.00 8111 93 \N 7636 +58267 2025-09-23 23:08:08.556105+00 2025-09-23 23:08:08.556114+00 f t 87000.00 1 87000.00 8111 165 \N 7636 +58268 2025-09-23 23:08:08.562647+00 2025-09-23 23:08:08.56266+00 f t 13200.00 1 13200.00 8111 146 \N 7636 +58269 2025-09-23 23:08:08.569392+00 2025-09-23 23:08:08.569405+00 f t 46000.00 1 46000.00 8111 82 \N 7636 +60063 2025-09-27 13:56:48.946799+00 2025-09-27 13:56:48.946809+00 f t 34000.00 1 34000.00 8387 110 \N 7880 +60064 2025-09-27 13:56:48.952487+00 2025-09-27 13:56:48.952495+00 f t 46000.00 1 46000.00 8387 82 \N 7880 +60065 2025-09-27 13:56:48.956978+00 2025-09-27 13:56:48.956986+00 f t 7700.00 1 7700.00 8387 93 \N 7880 +60066 2025-09-27 13:56:48.961397+00 2025-09-27 13:56:48.961405+00 f t 13200.00 1 13200.00 8387 146 \N 7880 +60067 2025-09-27 13:56:48.965823+00 2025-09-27 13:56:48.965833+00 f t 8000.00 1 8000.00 8387 85 \N 7880 +60068 2025-09-27 13:56:48.970047+00 2025-09-27 13:56:48.970057+00 f t 24000.00 1 24000.00 8387 163 \N 7880 +58351 2025-09-24 00:15:55.164653+00 2025-09-24 00:15:55.1647+00 f t 46000.00 1 46000.00 8118 82 \N 7642 +58422 2025-09-24 03:01:43.241848+00 2025-09-24 03:01:43.241856+00 f t 31500.00 1 31500.00 8127 111 \N 7649 +58423 2025-09-24 03:01:43.247022+00 2025-09-24 03:01:43.24703+00 f t 7700.00 1 7700.00 8127 93 \N 7649 +58424 2025-09-24 03:01:43.255861+00 2025-09-24 03:01:43.255872+00 f t 13200.00 1 13200.00 8127 146 \N 7649 +58425 2025-09-24 03:01:43.260621+00 2025-09-24 03:01:43.260628+00 f t 46000.00 1 46000.00 8127 82 \N 7649 +58509 2025-09-24 14:45:15.432438+00 2025-09-24 14:45:15.432446+00 f t 55000.00 1 55000.00 8140 84 \N 7660 +58535 2025-09-24 15:08:01.932287+00 2025-09-24 15:08:01.932298+00 f t 46000.00 1 46000.00 8148 82 \N 7666 +58555 2025-09-24 17:25:39.975669+00 2025-09-24 17:25:39.975681+00 f t 78000.00 1 78000.00 8157 167 \N 7673 +58579 2025-09-24 19:53:50.716239+00 2025-09-24 19:53:50.716254+00 f t 68000.00 1 68000.00 8187 106 \N 7701 +58734 2025-09-24 22:57:29.373201+00 2025-09-24 22:57:29.37321+00 f t 46000.00 1 46000.00 8202 82 \N 7712 +58760 2025-09-24 23:51:15.374189+00 2025-09-24 23:51:15.374199+00 f t 46000.00 1 46000.00 8203 82 \N 7717 +57591 2025-09-22 23:29:06.726108+00 2025-09-22 23:29:06.726116+00 f t 46000.00 1 46000.00 8045 82 \N 7579 +57592 2025-09-22 23:29:06.730896+00 2025-09-22 23:29:06.730904+00 f t 8000.00 1 8000.00 8045 85 \N 7579 +57593 2025-09-22 23:37:01.827612+00 2025-09-22 23:37:01.827624+00 f t 30000.00 1 30000.00 8047 83 \N 7583 +57595 2025-09-22 23:37:04.262289+00 2025-09-22 23:37:04.262298+00 f t 46000.00 1 46000.00 8046 82 \N 7582 +57598 2025-09-22 23:39:54.687513+00 2025-09-22 23:39:54.687521+00 f t 46000.00 1 46000.00 8050 82 \N 7585 +57603 2025-09-23 00:23:43.967012+00 2025-09-23 00:23:43.967021+00 f t 46000.00 1 46000.00 8052 82 \N 7587 +57604 2025-09-23 00:23:43.974461+00 2025-09-23 00:23:43.974474+00 f t 24000.00 1 24000.00 8052 86 \N 7587 +57608 2025-09-23 00:27:51.763243+00 2025-09-23 00:27:51.763252+00 f t 68000.00 1 68000.00 8053 106 \N 7591 +57610 2025-09-23 00:30:40.258904+00 2025-09-23 00:30:40.258913+00 f t 55000.00 1 55000.00 8054 84 \N 7592 +58892 2025-09-25 08:26:11.113654+00 2025-09-25 08:26:11.113664+00 f t 1000.00 1 1000.00 8218 170 \N 7737 +58893 2025-09-25 08:26:11.119317+00 2025-09-25 08:26:11.119326+00 f t 46000.00 1 46000.00 8218 82 \N 7737 +58920 2025-09-25 13:17:38.941656+00 2025-09-25 13:17:38.941666+00 f t 55000.00 1 55000.00 8229 84 \N 7743 +58928 2025-09-25 13:58:17.729562+00 2025-09-25 13:58:17.729572+00 f t 55000.00 1 55000.00 8230 84 \N 3104 +58947 2025-09-25 15:35:39.670316+00 2025-09-25 15:35:39.670328+00 f t 46000.00 1 46000.00 8241 82 \N 7755 +58948 2025-09-25 15:35:39.676952+00 2025-09-25 15:35:39.676964+00 f t 24000.00 1 24000.00 8241 88 \N 7755 +58967 2025-09-25 15:57:50.187474+00 2025-09-25 15:57:50.187483+00 f t 78000.00 1 78000.00 8243 167 \N 7757 +59018 2025-09-25 16:21:20.704329+00 2025-09-25 16:21:20.704338+00 f t 78000.00 1 78000.00 8186 167 \N 7700 +59038 2025-09-25 17:40:07.30216+00 2025-09-25 17:40:07.302174+00 f t 46000.00 1 46000.00 8255 82 \N 7764 +59039 2025-09-25 17:40:07.323262+00 2025-09-25 17:40:07.323277+00 f t 24000.00 1 24000.00 8255 163 \N 7764 +59042 2025-09-25 17:42:25.5383+00 2025-09-25 17:42:25.538308+00 f t 55000.00 1 55000.00 8212 84 \N 7724 +59050 2025-09-25 18:03:45.69783+00 2025-09-25 18:03:45.697844+00 f t 55000.00 1 55000.00 8257 84 \N 7766 +59052 2025-09-25 18:34:10.741252+00 2025-09-25 18:34:10.741265+00 f t 55000.00 1 55000.00 8258 84 \N 7767 +59076 2025-09-25 19:04:03.707072+00 2025-09-25 19:04:03.707083+00 f t 34000.00 1 34000.00 8247 110 \N 7760 +59077 2025-09-25 19:04:03.717896+00 2025-09-25 19:04:03.717912+00 f t 46000.00 1 46000.00 8247 82 \N 7760 +59078 2025-09-25 19:04:03.725482+00 2025-09-25 19:04:03.725495+00 f t 7700.00 1 7700.00 8247 93 \N 7760 +59079 2025-09-25 19:04:03.732999+00 2025-09-25 19:04:03.733008+00 f t 13200.00 1 13200.00 8247 146 \N 7760 +59080 2025-09-25 19:04:03.742164+00 2025-09-25 19:04:03.742175+00 f t 23000.00 1 23000.00 8247 172 \N 7760 +59082 2025-09-25 19:45:17.465432+00 2025-09-25 19:45:17.465442+00 f t 55000.00 1 55000.00 8254 84 \N 7763 +59085 2025-09-25 20:11:10.908241+00 2025-09-25 20:11:10.908251+00 f t 46000.00 1 46000.00 8267 82 \N 7772 +59086 2025-09-25 20:11:10.91533+00 2025-09-25 20:11:10.915342+00 f t 24000.00 1 24000.00 8267 163 \N 7772 +57695 2025-09-23 01:08:23.316855+00 2025-09-23 01:08:23.316867+00 f t 34000.00 1 34000.00 8056 110 \N 7593 +57696 2025-09-23 01:08:23.322596+00 2025-09-23 01:08:23.322607+00 f t 46000.00 1 46000.00 8056 82 \N 7593 +57697 2025-09-23 01:08:23.328581+00 2025-09-23 01:08:23.328593+00 f t 7700.00 1 7700.00 8056 93 \N 7593 +57698 2025-09-23 01:08:23.334391+00 2025-09-23 01:08:23.334404+00 f t 13200.00 1 13200.00 8056 146 \N 7593 +57699 2025-09-23 01:08:23.339656+00 2025-09-23 01:08:23.339668+00 f t 8000.00 1 8000.00 8056 85 \N 7593 +57700 2025-09-23 01:08:23.34475+00 2025-09-23 01:08:23.344766+00 f t 24000.00 1 24000.00 8056 163 \N 7593 +57710 2025-09-23 05:48:59.534921+00 2025-09-23 05:48:59.534932+00 f t 68000.00 1 68000.00 8060 106 \N 7597 +57726 2025-09-23 06:47:01.865249+00 2025-09-23 06:47:01.865259+00 f t 55000.00 1 55000.00 8061 84 \N 7598 +59195 2025-09-25 21:05:28.180165+00 2025-09-25 21:05:28.18018+00 f t 13200.00 1 13200.00 8269 146 \N 7774 +57737 2025-09-23 10:18:46.68676+00 2025-09-23 10:18:46.686769+00 f t 46000.00 1 46000.00 8063 82 \N 7599 +57746 2025-09-23 10:31:09.271391+00 2025-09-23 10:31:09.271399+00 f t 78000.00 1 78000.00 8064 167 \N 7600 +59221 2025-09-25 21:21:35.008135+00 2025-09-25 21:21:35.008145+00 f t 46000.00 1 46000.00 8270 82 \N 7775 +59222 2025-09-25 21:21:35.012968+00 2025-09-25 21:21:35.012977+00 f t 24000.00 1 24000.00 8270 163 \N 7775 +57761 2025-09-23 11:12:39.528919+00 2025-09-23 11:12:39.528928+00 f t 32500.00 1 32500.00 8065 112 \N 7601 +57762 2025-09-23 11:12:39.533455+00 2025-09-23 11:12:39.533465+00 f t 107000.00 1 107000.00 8065 103 \N 7601 +57763 2025-09-23 11:12:39.537472+00 2025-09-23 11:12:39.537481+00 f t 7700.00 1 7700.00 8065 93 \N 7601 +57764 2025-09-23 11:12:39.541486+00 2025-09-23 11:12:39.541496+00 f t 13200.00 1 13200.00 8065 146 \N 7601 +57765 2025-09-23 11:12:39.545717+00 2025-09-23 11:12:39.545725+00 f t 46000.00 1 46000.00 8065 82 \N 7601 +61813 2025-09-30 16:25:17.910149+00 2025-09-30 16:25:17.910156+00 f t 24000.00 1 24000.00 8598 86 \N 8060 +57767 2025-09-23 11:18:31.816126+00 2025-09-23 11:18:31.816136+00 f t 46000.00 1 46000.00 8067 82 \N 7602 +58147 2025-09-23 19:04:44.988383+00 2025-09-23 19:04:44.988396+00 f t 46000.00 1 46000.00 8095 82 \N 7623 +58148 2025-09-23 19:04:44.99351+00 2025-09-23 19:04:44.993519+00 f t 7700.00 1 7700.00 8095 93 \N 7623 +58149 2025-09-23 19:04:44.997921+00 2025-09-23 19:04:44.997929+00 f t 87000.00 1 87000.00 8095 165 \N 7623 +58150 2025-09-23 19:04:45.002398+00 2025-09-23 19:04:45.002406+00 f t 13200.00 1 13200.00 8095 146 \N 7623 +58179 2025-09-23 19:36:54.900129+00 2025-09-23 19:36:54.90014+00 f t 68000.00 1 68000.00 8097 106 \N 7625 +58212 2025-09-23 20:36:51.754885+00 2025-09-23 20:36:51.754896+00 f t 46000.00 1 46000.00 8100 82 \N 7628 +58213 2025-09-23 20:36:51.7615+00 2025-09-23 20:36:51.761512+00 f t 8000.00 1 8000.00 8100 85 \N 7628 +57788 2025-09-23 11:23:12.125482+00 2025-09-23 11:23:12.12549+00 f t 55000.00 1 55000.00 8068 84 \N 7603 +57790 2025-09-23 11:47:05.31759+00 2025-09-23 11:47:05.317599+00 f t 30000.00 1 30000.00 8070 83 \N 7604 +58247 2025-09-23 23:01:22.761293+00 2025-09-23 23:01:22.761305+00 f t 32500.00 1 32500.00 8110 112 \N 7635 +58248 2025-09-23 23:01:22.76964+00 2025-09-23 23:01:22.769653+00 f t 7700.00 1 7700.00 8110 93 \N 7635 +58249 2025-09-23 23:01:22.775856+00 2025-09-23 23:01:22.775899+00 f t 13200.00 1 13200.00 8110 146 \N 7635 +58250 2025-09-23 23:01:22.781793+00 2025-09-23 23:01:22.781805+00 f t 46000.00 1 46000.00 8110 82 \N 7635 +57798 2025-09-23 12:06:36.738741+00 2025-09-23 12:06:36.738753+00 f t 55000.00 1 55000.00 8071 84 \N 7605 +58317 2025-09-23 23:10:51.217509+00 2025-09-23 23:10:51.217518+00 f t 32500.00 1 32500.00 8112 112 \N 7637 +58318 2025-09-23 23:10:51.223736+00 2025-09-23 23:10:51.223747+00 f t 46000.00 1 46000.00 8112 82 \N 7637 +58319 2025-09-23 23:10:51.228862+00 2025-09-23 23:10:51.228873+00 f t 7700.00 1 7700.00 8112 93 \N 7637 +58320 2025-09-23 23:10:51.233723+00 2025-09-23 23:10:51.233735+00 f t 13200.00 1 13200.00 8112 146 \N 7637 +58342 2025-09-23 23:49:39.800084+00 2025-09-23 23:49:39.800093+00 f t 46000.00 1 46000.00 8116 82 \N 7640 +58352 2025-09-24 00:21:19.896591+00 2025-09-24 00:21:19.896603+00 f t 76000.00 1 76000.00 8119 97 \N 5175 +58362 2025-09-24 00:48:33.276281+00 2025-09-24 00:48:33.276294+00 f t 55000.00 1 55000.00 8122 84 \N 7644 +58438 2025-09-24 04:04:13.583423+00 2025-09-24 04:04:13.58343+00 f t 46000.00 1 46000.00 8128 82 \N 7650 +58439 2025-09-24 04:04:13.588717+00 2025-09-24 04:04:13.588727+00 f t 8000.00 1 8000.00 8128 85 \N 7650 +58445 2025-09-24 04:33:09.96753+00 2025-09-24 04:33:09.967543+00 f t 55000.00 1 55000.00 8129 84 \N 7651 +58455 2025-09-24 11:12:52.593026+00 2025-09-24 11:12:52.593038+00 f t 55000.00 1 55000.00 8133 84 \N 7654 +58529 2025-09-24 14:58:04.969133+00 2025-09-24 14:58:04.969141+00 f t 46000.00 1 46000.00 8146 82 \N 7665 +58530 2025-09-24 14:58:04.974152+00 2025-09-24 14:58:04.97416+00 f t 8000.00 1 8000.00 8146 85 \N 7665 +58564 2025-09-24 17:58:54.10038+00 2025-09-24 17:58:54.100389+00 f t 13200.00 1 13200.00 8162 146 \N 7566 +58600 2025-09-24 20:55:52.189668+00 2025-09-24 20:55:52.189676+00 f t 46000.00 1 46000.00 8191 82 \N 7704 +57879 2025-09-23 12:10:36.406626+00 2025-09-23 12:10:36.406639+00 f t 34000.00 1 34000.00 8072 110 \N 7606 +57880 2025-09-23 12:10:36.41406+00 2025-09-23 12:10:36.414073+00 f t 46000.00 1 46000.00 8072 82 \N 7606 +57881 2025-09-23 12:10:36.419927+00 2025-09-23 12:10:36.419938+00 f t 7700.00 1 7700.00 8072 93 \N 7606 +57882 2025-09-23 12:10:36.424326+00 2025-09-23 12:10:36.424333+00 f t 13200.00 1 13200.00 8072 146 \N 7606 +57883 2025-09-23 12:10:36.428215+00 2025-09-23 12:10:36.428222+00 f t 8000.00 1 8000.00 8072 85 \N 7606 +57884 2025-09-23 12:10:36.432701+00 2025-09-23 12:10:36.432709+00 f t 24000.00 1 24000.00 8072 163 \N 7606 +58867 2025-09-25 06:10:08.607507+00 2025-09-25 06:10:08.607521+00 f t 55000.00 1 55000.00 8216 84 \N 7734 +57915 2025-09-23 12:35:38.299234+00 2025-09-23 12:35:38.299243+00 f t 34000.00 1 34000.00 8074 110 \N 7607 +57916 2025-09-23 12:35:38.304013+00 2025-09-23 12:35:38.304021+00 f t 46000.00 1 46000.00 8074 82 \N 7607 +57917 2025-09-23 12:35:38.308107+00 2025-09-23 12:35:38.308117+00 f t 7700.00 1 7700.00 8074 93 \N 7607 +57918 2025-09-23 12:35:38.312149+00 2025-09-23 12:35:38.312157+00 f t 13200.00 1 13200.00 8074 146 \N 7607 +57919 2025-09-23 12:35:38.316194+00 2025-09-23 12:35:38.316202+00 f t 8000.00 1 8000.00 8074 85 \N 7607 +57920 2025-09-23 12:35:38.319973+00 2025-09-23 12:35:38.31998+00 f t 24000.00 1 24000.00 8074 163 \N 7607 +58921 2025-09-25 13:36:16.713663+00 2025-09-25 13:36:16.713673+00 f t 55000.00 1 55000.00 8120 84 \N 7541 +58929 2025-09-25 14:17:20.593645+00 2025-09-25 14:17:20.593659+00 f t 76000.00 1 76000.00 8232 97 \N 7746 +57925 2025-09-23 14:00:14.797937+00 2025-09-23 14:00:14.797951+00 f t 75000.00 1 75000.00 8077 108 \N 7609 +58934 2025-09-25 14:56:41.114755+00 2025-09-25 14:56:41.114764+00 f t 13200.00 1 13200.00 8237 146 \N 176 +58940 2025-09-25 15:33:03.334142+00 2025-09-25 15:33:03.334151+00 f t 78000.00 1 78000.00 8239 167 \N 7754 +57934 2025-09-23 14:54:16.699475+00 2025-09-23 14:54:16.699484+00 f t 76000.00 1 76000.00 8078 97 \N 7610 +58968 2025-09-25 16:00:57.708203+00 2025-09-25 16:00:57.708216+00 f t 13200.00 1 13200.00 8174 146 \N 7688 +57938 2025-09-23 15:46:24.197165+00 2025-09-23 15:46:24.197177+00 f t 13200.00 1 13200.00 8024 146 \N 6126 +57940 2025-09-23 16:07:16.056315+00 2025-09-23 16:07:16.056324+00 f t 46000.00 1 46000.00 8081 82 \N 3648 +57941 2025-09-23 16:08:36.215631+00 2025-09-23 16:08:36.21564+00 f t 46000.00 1 46000.00 8082 82 \N 3688 +57944 2025-09-23 16:18:02.86806+00 2025-09-23 16:18:02.86807+00 f t 55000.00 1 55000.00 8083 84 \N 7612 +57946 2025-09-23 16:21:31.575569+00 2025-09-23 16:21:31.575579+00 f t 55000.00 1 55000.00 8085 84 \N 7614 +59019 2025-09-25 16:27:33.389503+00 2025-09-25 16:27:33.389514+00 f t 39000.00 1 39000.00 8248 168 \N 2418 +59030 2025-09-25 17:27:01.105285+00 2025-09-25 17:27:01.105299+00 f t 46000.00 1 46000.00 8252 82 \N 7762 +59031 2025-09-25 17:27:01.11441+00 2025-09-25 17:27:01.114423+00 f t 8000.00 1 8000.00 8252 85 \N 7762 +58024 2025-09-23 17:31:08.806579+00 2025-09-23 17:31:08.806587+00 f t 15400.00 1 15400.00 8088 92 \N 7616 +58025 2025-09-23 17:31:08.81148+00 2025-09-23 17:31:08.811492+00 f t 46000.00 1 46000.00 8088 82 \N 7616 +58033 2025-09-23 18:20:47.204336+00 2025-09-23 18:20:47.204345+00 f t 55000.00 1 55000.00 8089 84 \N 7617 +58076 2025-09-23 18:48:28.548844+00 2025-09-23 18:48:28.548853+00 f t 55000.00 1 55000.00 8092 84 \N 7621 +67771 2025-10-11 18:41:35.397195+00 2025-10-11 18:41:35.397204+00 f t 46000.00 1 46000.00 9402 82 \N 8721 +63726 2025-10-03 20:28:34.861201+00 2025-10-03 20:28:34.86121+00 f t 75000.00 1 75000.00 8823 108 \N 1128 +61814 2025-09-30 16:25:17.914651+00 2025-09-30 16:25:17.91466+00 f t 24000.00 1 24000.00 8598 86 \N 8061 +58057 2025-09-23 18:23:21.429599+00 2025-09-23 18:23:21.429608+00 f t 32500.00 1 32500.00 8090 112 \N 7618 +58058 2025-09-23 18:23:21.435459+00 2025-09-23 18:23:21.435548+00 f t 7700.00 1 7700.00 8090 93 \N 7618 +58059 2025-09-23 18:23:21.440225+00 2025-09-23 18:23:21.440233+00 f t 13200.00 1 13200.00 8090 146 \N 7618 +58060 2025-09-23 18:23:21.444128+00 2025-09-23 18:23:21.444135+00 f t 46000.00 1 46000.00 8090 82 \N 7618 +61901 2025-09-30 20:02:58.550963+00 2025-09-30 20:02:58.550979+00 f t 55000.00 1 55000.00 8616 84 \N 8077 +58214 2025-09-23 20:41:41.282482+00 2025-09-23 20:41:41.282491+00 f t 107000.00 1 107000.00 8098 103 \N 7507 +58225 2025-09-23 21:45:54.691252+00 2025-09-23 21:45:54.691261+00 f t 46000.00 1 46000.00 8103 82 \N 7629 +58226 2025-09-23 21:45:54.697397+00 2025-09-23 21:45:54.697406+00 f t 24000.00 1 24000.00 8103 86 \N 7629 +58234 2025-09-23 22:53:45.173145+00 2025-09-23 22:53:45.173156+00 f t 46000.00 1 46000.00 8108 82 \N 7633 +60072 2025-09-27 13:57:39.481042+00 2025-09-27 13:57:39.481052+00 f t 46000.00 1 46000.00 8388 82 \N 7881 +58467 2025-09-24 11:39:17.839095+00 2025-09-24 11:39:17.839104+00 f t 46000.00 1 46000.00 8135 82 \N 7656 +58468 2025-09-24 11:39:17.844665+00 2025-09-24 11:39:17.844673+00 f t 8000.00 1 8000.00 8135 85 \N 7656 +58469 2025-09-24 11:39:17.848501+00 2025-09-24 11:39:17.848508+00 f t 24000.00 1 24000.00 8135 86 \N 7656 +58531 2025-09-24 15:02:12.551953+00 2025-09-24 15:02:12.551961+00 f t 46000.00 1 46000.00 8147 82 \N 928 +58537 2025-09-24 16:07:35.000434+00 2025-09-24 16:07:35.000444+00 f t 30000.00 1 30000.00 8151 83 \N 7669 +58557 2025-09-24 17:31:29.943223+00 2025-09-24 17:31:29.943232+00 f t 23000.00 1 23000.00 8155 172 \N 6835 +58573 2025-09-24 19:23:28.945545+00 2025-09-24 19:23:28.945557+00 f t 31500.00 1 31500.00 8179 111 \N 7694 +58574 2025-09-24 19:23:28.950378+00 2025-09-24 19:23:28.950386+00 f t 13200.00 1 13200.00 8179 146 \N 7694 +58575 2025-09-24 19:23:28.954431+00 2025-09-24 19:23:28.954439+00 f t 7700.00 1 7700.00 8179 93 \N 7694 +60211 2025-09-27 14:19:18.23082+00 2025-09-27 14:19:18.230829+00 f t 34000.00 1 34000.00 8393 110 \N 7883 +60212 2025-09-27 14:19:18.236718+00 2025-09-27 14:19:18.236727+00 f t 46000.00 1 46000.00 8393 82 \N 7883 +60213 2025-09-27 14:19:18.241838+00 2025-09-27 14:19:18.241849+00 f t 7700.00 1 7700.00 8393 93 \N 7883 +60214 2025-09-27 14:19:18.247807+00 2025-09-27 14:19:18.247815+00 f t 13200.00 1 13200.00 8393 146 \N 7883 +60215 2025-09-27 14:19:18.253776+00 2025-09-27 14:19:18.253789+00 f t 8000.00 1 8000.00 8393 85 \N 7883 +60216 2025-09-27 14:19:18.260449+00 2025-09-27 14:19:18.260461+00 f t 24000.00 1 24000.00 8393 163 \N 7883 +58741 2025-09-24 22:58:02.928649+00 2025-09-24 22:58:02.928661+00 f t 46000.00 1 46000.00 8201 82 \N 546 +58742 2025-09-24 22:58:02.93395+00 2025-09-24 22:58:02.933959+00 f t 46000.00 1 46000.00 8201 82 \N 547 +58762 2025-09-24 23:51:24.435949+00 2025-09-24 23:51:24.435958+00 f t 55000.00 1 55000.00 8204 84 \N 7716 +58767 2025-09-25 00:03:09.440517+00 2025-09-25 00:03:09.440529+00 f t 55000.00 1 55000.00 8206 84 \N 7719 +60286 2025-09-27 14:42:47.603769+00 2025-09-27 14:42:47.603778+00 f t 55000.00 1 55000.00 8397 84 \N 7886 +58830 2025-09-25 04:03:45.482225+00 2025-09-25 04:03:45.482238+00 f t 46000.00 1 46000.00 8214 82 \N 7731 +58831 2025-09-25 04:03:45.488049+00 2025-09-25 04:03:45.488059+00 f t 24000.00 1 24000.00 8214 163 \N 7731 +58896 2025-09-25 09:32:28.055477+00 2025-09-25 09:32:28.055486+00 f t 46000.00 1 46000.00 8221 82 \N 7740 +58897 2025-09-25 09:32:28.059858+00 2025-09-25 09:32:28.059864+00 f t 8000.00 1 8000.00 8221 85 \N 7740 +58935 2025-09-25 15:20:51.238903+00 2025-09-25 15:20:51.238912+00 f t 87500.00 1 87500.00 8238 141 \N 7753 +58936 2025-09-25 15:20:51.245201+00 2025-09-25 15:20:51.24521+00 f t 46000.00 1 46000.00 8238 82 \N 7753 +58951 2025-09-25 15:54:05.29062+00 2025-09-25 15:54:05.290629+00 f t 46000.00 1 46000.00 8242 82 \N 7756 +58952 2025-09-25 15:54:05.296406+00 2025-09-25 15:54:05.296419+00 f t 7700.00 1 7700.00 8242 91 \N 7756 +60424 2025-09-27 15:40:35.558658+00 2025-09-27 15:40:35.558669+00 f t 46000.00 1 46000.00 8400 82 \N 7890 +59020 2025-09-25 16:35:52.85819+00 2025-09-25 16:35:52.858199+00 f t 69000.00 1 69000.00 8249 141 \N 5547 +59021 2025-09-25 16:35:52.866356+00 2025-09-25 16:35:52.866365+00 f t 46000.00 1 46000.00 8249 82 \N 5547 +59027 2025-09-25 16:44:20.300955+00 2025-09-25 16:44:20.300965+00 f t 46000.00 1 46000.00 8250 82 \N 7761 +59032 2025-09-25 17:32:23.956201+00 2025-09-25 17:32:23.95621+00 f t 24000.00 1 24000.00 8253 87 \N 5891 +59033 2025-09-25 17:32:23.962632+00 2025-09-25 17:32:23.962649+00 f t 46000.00 1 46000.00 8253 82 \N 5891 +59043 2025-09-25 17:44:57.694223+00 2025-09-25 17:44:57.694232+00 f t 55000.00 1 55000.00 8256 84 \N 7765 +59057 2025-09-25 18:42:54.086539+00 2025-09-25 18:42:54.086548+00 f t 55000.00 1 55000.00 8259 84 \N 7768 +59074 2025-09-25 19:01:23.526288+00 2025-09-25 19:01:23.526299+00 f t 46000.00 1 46000.00 8262 82 \N 7770 +59075 2025-09-25 19:01:23.533222+00 2025-09-25 19:01:23.533233+00 f t 24000.00 1 24000.00 8262 86 \N 7770 +59081 2025-09-25 19:41:40.714847+00 2025-09-25 19:41:40.71486+00 f t 46000.00 1 46000.00 8263 82 \N 7771 +60515 2025-09-27 17:19:33.255173+00 2025-09-27 17:19:33.255182+00 f t 46000.00 1 46000.00 8408 82 \N 7900 +60516 2025-09-27 17:19:33.260085+00 2025-09-27 17:19:33.260092+00 f t 24000.00 1 24000.00 8408 163 \N 7900 +59170 2025-09-25 20:57:22.694973+00 2025-09-25 20:57:22.694982+00 f t 93750.00 1 93750.00 8268 90 \N 7773 +59171 2025-09-25 20:57:22.701542+00 2025-09-25 20:57:22.701551+00 f t 46000.00 1 46000.00 8268 82 \N 7773 +60579 2025-09-27 18:21:40.77544+00 2025-09-27 18:21:40.775449+00 f t 31500.00 1 31500.00 8405 111 \N 7894 +60580 2025-09-27 18:21:40.78067+00 2025-09-27 18:21:40.780678+00 f t 7700.00 1 7700.00 8405 93 \N 7894 +60581 2025-09-27 18:21:40.784704+00 2025-09-27 18:21:40.784712+00 f t 13200.00 1 13200.00 8405 146 \N 7894 +60582 2025-09-27 18:21:40.788909+00 2025-09-27 18:21:40.788917+00 f t 46000.00 1 46000.00 8405 82 \N 7894 +60584 2025-09-27 18:32:09.522044+00 2025-09-27 18:32:09.522054+00 f t 75000.00 1 75000.00 8410 108 \N 7902 +60597 2025-09-27 19:55:09.56964+00 2025-09-27 19:55:09.569653+00 f t 55000.00 1 55000.00 8412 84 \N 7904 +60599 2025-09-27 20:18:59.380986+00 2025-09-27 20:18:59.381+00 f t 72500.00 1 72500.00 8413 104 \N 7905 +60601 2025-09-27 20:44:41.994815+00 2025-09-27 20:44:41.994824+00 f t 72500.00 1 72500.00 8414 104 \N 7906 +60620 2025-09-28 00:06:38.243889+00 2025-09-28 00:06:38.2439+00 f t 80000.00 1 80000.00 8417 173 \N 7909 +60624 2025-09-28 00:29:35.236683+00 2025-09-28 00:29:35.236692+00 f t 55000.00 1 55000.00 8418 84 \N 7910 +67772 2025-10-11 18:41:35.403106+00 2025-10-11 18:41:35.403114+00 f t 24000.00 1 24000.00 9402 163 \N 8721 +65661 2025-10-07 02:51:27.631174+00 2025-10-07 02:51:27.631184+00 f t 55000.00 1 55000.00 9051 84 \N 8442 +65709 2025-10-07 06:18:40.111386+00 2025-10-07 06:18:40.111397+00 f t 46000.00 1 46000.00 9057 82 \N 8447 +60145 2025-09-27 14:05:47.563894+00 2025-09-27 14:05:47.563903+00 f t 34000.00 1 34000.00 8390 110 \N 7882 +60146 2025-09-27 14:05:47.568586+00 2025-09-27 14:05:47.568594+00 f t 46000.00 1 46000.00 8390 82 \N 7882 +60147 2025-09-27 14:05:47.572142+00 2025-09-27 14:05:47.57215+00 f t 7700.00 1 7700.00 8390 93 \N 7882 +60148 2025-09-27 14:05:47.575789+00 2025-09-27 14:05:47.575796+00 f t 13200.00 1 13200.00 8390 146 \N 7882 +60149 2025-09-27 14:05:47.579599+00 2025-09-27 14:05:47.579605+00 f t 8000.00 1 8000.00 8390 85 \N 7882 +60150 2025-09-27 14:05:47.583197+00 2025-09-27 14:05:47.583204+00 f t 24000.00 1 24000.00 8390 163 \N 7882 +60276 2025-09-27 14:22:58.406556+00 2025-09-27 14:22:58.406566+00 f t 31500.00 1 31500.00 8395 111 \N 7885 +60277 2025-09-27 14:22:58.41183+00 2025-09-27 14:22:58.41184+00 f t 46000.00 1 46000.00 8395 82 \N 7885 +60278 2025-09-27 14:22:58.417126+00 2025-09-27 14:22:58.417135+00 f t 7700.00 1 7700.00 8395 93 \N 7885 +60279 2025-09-27 14:22:58.422149+00 2025-09-27 14:22:58.422157+00 f t 13200.00 1 13200.00 8395 146 \N 7885 +60280 2025-09-27 14:22:58.427057+00 2025-09-27 14:22:58.427066+00 f t 8000.00 1 8000.00 8395 85 \N 7885 +60281 2025-09-27 14:22:58.431902+00 2025-09-27 14:22:58.431915+00 f t 24000.00 1 24000.00 8395 163 \N 7885 +59347 2025-09-25 21:34:50.483125+00 2025-09-25 21:34:50.483154+00 f t 34000.00 1 34000.00 8271 110 \N 7776 +59348 2025-09-25 21:34:50.488549+00 2025-09-25 21:34:50.488559+00 f t 46000.00 1 46000.00 8271 82 \N 7776 +59349 2025-09-25 21:34:50.49633+00 2025-09-25 21:34:50.49634+00 f t 7700.00 1 7700.00 8271 93 \N 7776 +59350 2025-09-25 21:34:50.500753+00 2025-09-25 21:34:50.500763+00 f t 13200.00 1 13200.00 8271 146 \N 7776 +59351 2025-09-25 21:34:50.504798+00 2025-09-25 21:34:50.504807+00 f t 8000.00 1 8000.00 8271 85 \N 7776 +59352 2025-09-25 21:34:50.508888+00 2025-09-25 21:34:50.508896+00 f t 24000.00 1 24000.00 8271 163 \N 7776 +59359 2025-09-25 22:04:50.707556+00 2025-09-25 22:04:50.70757+00 f t 46000.00 1 46000.00 8274 82 \N 7780 +59362 2025-09-25 22:26:50.488975+00 2025-09-25 22:26:50.488989+00 f t 46000.00 1 46000.00 8275 82 \N 7781 +59384 2025-09-25 23:40:40.726109+00 2025-09-25 23:40:40.726122+00 f t 31500.00 1 31500.00 8281 111 \N 7785 +59385 2025-09-25 23:40:40.733078+00 2025-09-25 23:40:40.733087+00 f t 7700.00 1 7700.00 8281 93 \N 7785 +59386 2025-09-25 23:40:40.738332+00 2025-09-25 23:40:40.738341+00 f t 13200.00 1 13200.00 8281 146 \N 7785 +59387 2025-09-25 23:40:40.743871+00 2025-09-25 23:40:40.743883+00 f t 46000.00 1 46000.00 8281 82 \N 7785 +59389 2025-09-25 23:46:21.065811+00 2025-09-25 23:46:21.06582+00 f t 30000.00 1 30000.00 8282 83 \N 7786 +60377 2025-09-27 14:54:31.192466+00 2025-09-27 14:54:31.192479+00 f t 34000.00 1 34000.00 8398 110 \N 7887 +60378 2025-09-27 14:54:31.198184+00 2025-09-27 14:54:31.198193+00 f t 46000.00 1 46000.00 8398 82 \N 7887 +59393 2025-09-25 23:50:00.053941+00 2025-09-25 23:50:00.053954+00 f t 75000.00 1 75000.00 8283 142 \N 3031 +59394 2025-09-25 23:50:00.062985+00 2025-09-25 23:50:00.062998+00 f t 46000.00 1 46000.00 8283 82 \N 3031 +60379 2025-09-27 14:54:31.202449+00 2025-09-27 14:54:31.202457+00 f t 7700.00 1 7700.00 8398 93 \N 7887 +59396 2025-09-25 23:56:20.697686+00 2025-09-25 23:56:20.6977+00 f t 55000.00 1 55000.00 8284 84 \N 7788 +60380 2025-09-27 14:54:31.206477+00 2025-09-27 14:54:31.206484+00 f t 13200.00 1 13200.00 8398 146 \N 7887 +59398 2025-09-26 00:12:32.060784+00 2025-09-26 00:12:32.060796+00 f t 30000.00 1 30000.00 8285 83 \N 7789 +60381 2025-09-27 14:54:31.210415+00 2025-09-27 14:54:31.210423+00 f t 8000.00 1 8000.00 8398 85 \N 7887 +59400 2025-09-26 01:01:14.706667+00 2025-09-26 01:01:14.706676+00 f t 46000.00 1 46000.00 8286 82 \N 7790 +60382 2025-09-27 14:54:31.214921+00 2025-09-27 14:54:31.214931+00 f t 24000.00 1 24000.00 8398 163 \N 7887 +59403 2025-09-26 01:03:47.689027+00 2025-09-26 01:03:47.689042+00 f t 55000.00 1 55000.00 8287 84 \N 7791 +59410 2025-09-26 01:15:00.423995+00 2025-09-26 01:15:00.424004+00 f t 30000.00 1 30000.00 8288 83 \N 7792 +59411 2025-09-26 01:15:00.428956+00 2025-09-26 01:15:00.428964+00 f t 30000.00 1 30000.00 8288 83 \N 7793 +59413 2025-09-26 02:08:05.091363+00 2025-09-26 02:08:05.091375+00 f t 46000.00 1 46000.00 8291 82 \N 7794 +59423 2025-09-26 02:46:01.459086+00 2025-09-26 02:46:01.4591+00 f t 55000.00 1 55000.00 8294 84 \N 7797 +60451 2025-09-27 16:03:50.135801+00 2025-09-27 16:03:50.135812+00 f t 46000.00 1 46000.00 8404 82 \N 7895 +60452 2025-09-27 16:03:50.142595+00 2025-09-27 16:03:50.142606+00 f t 8000.00 1 8000.00 8404 85 \N 7895 +60453 2025-09-27 16:03:50.147244+00 2025-09-27 16:03:50.147257+00 f t 24000.00 1 24000.00 8404 163 \N 7895 +59433 2025-09-26 03:07:36.876527+00 2025-09-26 03:07:36.876535+00 f t 55000.00 1 55000.00 8296 84 \N 7799 +59436 2025-09-26 03:08:05.421441+00 2025-09-26 03:08:05.421454+00 f t 78000.00 1 78000.00 8295 167 \N 7798 +59439 2025-09-26 03:38:13.469659+00 2025-09-26 03:38:13.469669+00 f t 78000.00 1 78000.00 8298 167 \N 7801 +59441 2025-09-26 04:02:08.551771+00 2025-09-26 04:02:08.551783+00 f t 46000.00 1 46000.00 8299 82 \N 7802 +59445 2025-09-26 04:24:47.10876+00 2025-09-26 04:24:47.108772+00 f t 46000.00 1 46000.00 8300 82 \N 7804 +59453 2025-09-26 05:11:48.979065+00 2025-09-26 05:11:48.979077+00 f t 55000.00 1 55000.00 8301 84 \N 7805 +59455 2025-09-26 10:57:55.8966+00 2025-09-26 10:57:55.896611+00 f t 76000.00 1 76000.00 8307 97 \N 7809 +59457 2025-09-26 11:35:59.918555+00 2025-09-26 11:35:59.918563+00 f t 46000.00 1 46000.00 8308 82 \N 7810 +59459 2025-09-26 11:43:13.8425+00 2025-09-26 11:43:13.842511+00 f t 68000.00 1 68000.00 8309 106 \N 7811 +59466 2025-09-26 11:59:56.545896+00 2025-09-26 11:59:56.545904+00 f t 46000.00 1 46000.00 8310 82 \N 7812 +59484 2025-09-26 12:26:35.289864+00 2025-09-26 12:26:35.289874+00 f t 46000.00 1 46000.00 8311 82 \N 7813 +59485 2025-09-26 12:26:35.296066+00 2025-09-26 12:26:35.296075+00 f t 24000.00 1 24000.00 8311 86 \N 7813 +59500 2025-09-26 12:40:50.040867+00 2025-09-26 12:40:50.040876+00 f t 46000.00 1 46000.00 8313 82 \N 7815 +59501 2025-09-26 12:40:50.046189+00 2025-09-26 12:40:50.046201+00 f t 24000.00 1 24000.00 8313 88 \N 7815 +59504 2025-09-26 12:42:54.990516+00 2025-09-26 12:42:54.990526+00 f t 46000.00 1 46000.00 8314 82 \N 7816 +59505 2025-09-26 12:42:54.99653+00 2025-09-26 12:42:54.996539+00 f t 8000.00 1 8000.00 8314 85 \N 7816 +59521 2025-09-26 13:14:11.041558+00 2025-09-26 13:14:11.041567+00 f t 46000.00 1 46000.00 8316 82 \N 7818 +59522 2025-09-26 13:14:11.046834+00 2025-09-26 13:14:11.046842+00 f t 8000.00 1 8000.00 8316 85 \N 7818 +59523 2025-09-26 13:14:11.051066+00 2025-09-26 13:14:11.051074+00 f t 24000.00 1 24000.00 8316 163 \N 7818 +59531 2025-09-26 13:22:56.639983+00 2025-09-26 13:22:56.639992+00 f t 30000.00 1 30000.00 8317 83 \N 7819 +59538 2025-09-26 13:23:29.692937+00 2025-09-26 13:23:29.692946+00 f t 46000.00 1 46000.00 8318 82 \N 7820 +61789 2025-09-30 15:35:33.898922+00 2025-09-30 15:35:33.898932+00 f t 13200.00 1 13200.00 8593 146 \N 8056 +59540 2025-09-26 13:33:20.018852+00 2025-09-26 13:33:20.018862+00 f t 107000.00 1 107000.00 8319 103 \N 7821 +59548 2025-09-26 14:00:57.799608+00 2025-09-26 14:00:57.799623+00 f t 78000.00 1 78000.00 8320 167 \N 7822 +61902 2025-09-30 20:03:25.116515+00 2025-09-30 20:03:25.116527+00 f t 39000.00 1 39000.00 8617 168 \N 8078 +61928 2025-09-30 20:43:58.160044+00 2025-09-30 20:43:58.160057+00 f t 55000.00 1 55000.00 8621 84 \N 8080 +61934 2025-09-30 20:47:15.826168+00 2025-09-30 20:47:15.826182+00 f t 46000.00 1 46000.00 8622 82 \N 8081 +59558 2025-09-26 14:08:21.645675+00 2025-09-26 14:08:21.645686+00 f t 78000.00 1 78000.00 8321 167 \N 7823 +59569 2025-09-26 14:38:42.284591+00 2025-09-26 14:38:42.284603+00 f t 46000.00 1 46000.00 8325 82 \N 7825 +59570 2025-09-26 14:38:42.292299+00 2025-09-26 14:38:42.292314+00 f t 8000.00 1 8000.00 8325 85 \N 7825 +59572 2025-09-26 14:41:59.780547+00 2025-09-26 14:41:59.78056+00 f t 46000.00 1 46000.00 8326 82 \N 7826 +59574 2025-09-26 14:46:52.419817+00 2025-09-26 14:46:52.419826+00 f t 30000.00 1 30000.00 8327 83 \N 7827 +59575 2025-09-26 14:48:17.424225+00 2025-09-26 14:48:17.424234+00 f t 24000.00 1 24000.00 8328 163 \N 5647 +59576 2025-09-26 14:48:17.429211+00 2025-09-26 14:48:17.429219+00 f t 46000.00 1 46000.00 8328 82 \N 5647 +59595 2025-09-26 15:00:07.575597+00 2025-09-26 15:00:07.575612+00 f t 55000.00 1 55000.00 8329 84 \N 7828 +59596 2025-09-26 15:18:37.517209+00 2025-09-26 15:18:37.517221+00 f t 23000.00 1 23000.00 8330 172 \N 928 +59597 2025-09-26 15:47:08.815736+00 2025-09-26 15:47:08.815745+00 f t 55000.00 1 55000.00 8332 84 \N 7830 +59600 2025-09-26 15:57:10.952447+00 2025-09-26 15:57:10.95246+00 f t 46000.00 1 46000.00 8334 82 \N 7831 +59601 2025-09-26 15:57:10.959015+00 2025-09-26 15:57:10.959028+00 f t 24000.00 1 24000.00 8334 86 \N 7831 +59604 2025-09-26 16:02:15.853895+00 2025-09-26 16:02:15.853905+00 f t 46000.00 1 46000.00 8336 82 \N 7832 +59605 2025-09-26 16:02:15.859688+00 2025-09-26 16:02:15.859701+00 f t 8000.00 1 8000.00 8336 85 \N 7832 +59609 2025-09-26 16:35:49.135024+00 2025-09-26 16:35:49.135034+00 f t 46000.00 1 46000.00 8323 82 \N 7824 +59610 2025-09-26 16:35:49.139656+00 2025-09-26 16:35:49.139665+00 f t 24000.00 1 24000.00 8323 163 \N 7824 +59611 2025-09-26 16:35:49.143428+00 2025-09-26 16:35:49.143438+00 f t 8000.00 1 8000.00 8323 85 \N 7824 +59612 2025-09-26 16:41:31.872164+00 2025-09-26 16:41:31.872175+00 f t 30000.00 1 30000.00 8340 83 \N 5906 +59615 2025-09-26 16:56:59.615874+00 2025-09-26 16:56:59.615886+00 f t 46000.00 1 46000.00 8341 82 \N 7835 +59616 2025-09-26 16:56:59.621994+00 2025-09-26 16:56:59.622006+00 f t 24000.00 1 24000.00 8341 86 \N 7835 +59621 2025-09-26 17:12:32.801961+00 2025-09-26 17:12:32.801971+00 f t 80000.00 1 80000.00 8343 173 \N 7836 +59624 2025-09-26 17:15:27.531992+00 2025-09-26 17:15:27.532001+00 f t 46000.00 1 46000.00 8344 82 \N 7837 +59625 2025-09-26 17:15:27.537842+00 2025-09-26 17:15:27.537851+00 f t 8000.00 1 8000.00 8344 85 \N 7837 +59626 2025-09-26 17:15:27.543458+00 2025-09-26 17:15:27.543467+00 f t 24000.00 1 24000.00 8344 163 \N 7837 +59629 2025-09-26 18:07:34.95894+00 2025-09-26 18:07:34.958953+00 f t 55000.00 1 55000.00 8349 84 \N 7841 +59637 2025-09-26 18:11:59.087346+00 2025-09-26 18:11:59.087362+00 f t 46000.00 1 46000.00 8350 82 \N 7842 +59638 2025-09-26 18:11:59.094471+00 2025-09-26 18:11:59.094481+00 f t 46000.00 1 46000.00 8350 82 \N 7843 +59709 2025-09-26 18:27:12.976091+00 2025-09-26 18:27:12.9761+00 f t 46000.00 1 46000.00 8351 82 \N 7847 +59710 2025-09-26 18:27:12.981792+00 2025-09-26 18:27:12.981801+00 f t 46000.00 1 46000.00 8351 82 \N 7844 +59711 2025-09-26 18:27:12.98698+00 2025-09-26 18:27:12.986989+00 f t 46000.00 1 46000.00 8351 82 \N 7846 +59712 2025-09-26 18:27:12.991984+00 2025-09-26 18:27:12.991992+00 f t 46000.00 1 46000.00 8351 82 \N 7845 +59713 2025-09-26 18:27:12.996865+00 2025-09-26 18:27:12.996873+00 f t 8000.00 1 8000.00 8351 85 \N 7847 +59714 2025-09-26 18:27:13.001915+00 2025-09-26 18:27:13.001924+00 f t 8000.00 1 8000.00 8351 85 \N 7844 +59715 2025-09-26 18:27:13.00837+00 2025-09-26 18:27:13.008379+00 f t 8000.00 1 8000.00 8351 85 \N 7846 +59716 2025-09-26 18:27:13.013078+00 2025-09-26 18:27:13.013087+00 f t 24000.00 1 24000.00 8351 163 \N 7845 +59717 2025-09-26 18:27:13.017373+00 2025-09-26 18:27:13.017386+00 f t 24000.00 1 24000.00 8351 163 \N 7844 +59718 2025-09-26 18:27:13.021556+00 2025-09-26 18:27:13.021564+00 f t 24000.00 1 24000.00 8351 163 \N 7847 +59720 2025-09-26 18:36:17.571948+00 2025-09-26 18:36:17.571961+00 f t 46000.00 1 46000.00 8352 82 \N 7848 +59722 2025-09-26 18:48:06.467784+00 2025-09-26 18:48:06.467797+00 f t 46000.00 1 46000.00 8353 82 \N 7849 +59733 2025-09-26 19:39:19.319217+00 2025-09-26 19:39:19.319228+00 f t 107000.00 1 107000.00 8357 103 \N 7852 +59736 2025-09-26 20:55:40.417098+00 2025-09-26 20:55:40.417108+00 f t 46000.00 1 46000.00 8358 82 \N 7853 +59737 2025-09-26 20:55:40.422417+00 2025-09-26 20:55:40.422426+00 f t 75000.00 1 75000.00 8358 142 \N 7853 +59742 2025-09-26 20:56:23.020143+00 2025-09-26 20:56:23.020153+00 f t 75000.00 1 75000.00 8359 108 \N 7854 +59744 2025-09-26 21:03:53.98478+00 2025-09-26 21:03:53.98479+00 f t 55000.00 1 55000.00 8360 84 \N 7855 +59747 2025-09-26 21:12:47.283397+00 2025-09-26 21:12:47.28341+00 f t 75000.00 1 75000.00 8361 108 \N 7856 +59755 2025-09-26 22:20:14.781931+00 2025-09-26 22:20:14.781948+00 f t 55000.00 1 55000.00 8363 84 \N 7859 +59766 2025-09-26 22:32:30.676584+00 2025-09-26 22:32:30.676594+00 f t 30000.00 1 30000.00 8366 83 \N 7507 +59779 2025-09-26 22:50:59.796267+00 2025-09-26 22:50:59.796276+00 f t 46000.00 1 46000.00 8367 82 \N 7863 +59780 2025-09-26 22:50:59.804639+00 2025-09-26 22:50:59.804651+00 f t 8000.00 1 8000.00 8367 85 \N 7863 +59782 2025-09-26 23:20:25.439391+00 2025-09-26 23:20:25.439401+00 f t 46000.00 1 46000.00 8371 82 \N 7866 +59785 2025-09-26 23:27:09.219804+00 2025-09-26 23:27:09.219813+00 f t 55000.00 1 55000.00 8372 84 \N 7867 +59796 2025-09-26 23:55:09.221465+00 2025-09-26 23:55:09.221475+00 f t 46000.00 1 46000.00 8374 82 \N 7869 +59797 2025-09-26 23:55:09.227377+00 2025-09-26 23:55:09.227389+00 f t 8000.00 1 8000.00 8374 85 \N 7869 +59798 2025-09-26 23:55:09.231982+00 2025-09-26 23:55:09.23199+00 f t 24000.00 1 24000.00 8374 86 \N 7869 +59804 2025-09-27 00:17:52.455174+00 2025-09-27 00:17:52.455186+00 f t 46000.00 1 46000.00 8373 82 \N 7868 +59807 2025-09-27 00:19:41.45385+00 2025-09-27 00:19:41.45386+00 f t 55000.00 1 55000.00 8365 84 \N 7861 +59810 2025-09-27 00:32:37.687168+00 2025-09-27 00:32:37.68718+00 f t 46000.00 1 46000.00 8375 82 \N 7870 +59811 2025-09-27 00:32:37.69321+00 2025-09-27 00:32:37.69322+00 f t 75000.00 1 75000.00 8375 142 \N 7870 +59824 2025-09-27 00:34:45.880376+00 2025-09-27 00:34:45.880387+00 f t 46000.00 1 46000.00 8376 82 \N 7871 +59825 2025-09-27 00:34:45.887468+00 2025-09-27 00:34:45.887478+00 f t 75000.00 1 75000.00 8376 142 \N 7871 +67773 2025-10-11 19:30:47.467896+00 2025-10-11 19:30:47.467905+00 f t 55000.00 1 55000.00 9403 84 \N 8722 +61817 2025-09-30 16:36:36.807427+00 2025-09-30 16:36:36.80744+00 f t 78000.00 1 78000.00 8600 167 \N 8063 +59834 2025-09-27 03:22:28.736791+00 2025-09-27 03:22:28.736804+00 f t 30000.00 1 30000.00 8377 83 \N 7872 +61858 2025-09-30 18:15:08.367864+00 2025-09-30 18:15:08.367878+00 f t 46000.00 1 46000.00 8605 82 \N 8068 +61859 2025-09-30 18:15:08.377872+00 2025-09-30 18:15:08.377887+00 f t 46000.00 1 46000.00 8605 82 \N 8067 +61860 2025-09-30 18:15:08.385589+00 2025-09-30 18:15:08.385599+00 f t 8000.00 1 8000.00 8605 85 \N 8068 +61861 2025-09-30 18:15:08.396205+00 2025-09-30 18:15:08.396222+00 f t 24000.00 1 24000.00 8605 163 \N 8067 +61862 2025-09-30 18:15:08.409108+00 2025-09-30 18:15:08.409123+00 f t 24000.00 1 24000.00 8605 86 \N 8068 +59840 2025-09-27 04:06:36.40976+00 2025-09-27 04:06:36.409771+00 f t 55000.00 1 55000.00 8378 84 \N 7873 +59842 2025-09-27 07:34:40.296757+00 2025-09-27 07:34:40.296766+00 f t 55000.00 1 55000.00 8380 84 \N 7874 +59843 2025-09-27 12:43:24.122142+00 2025-09-27 12:43:24.122151+00 f t 75000.00 1 75000.00 8382 142 \N 7541 +59844 2025-09-27 12:43:24.128159+00 2025-09-27 12:43:24.128167+00 f t 46000.00 1 46000.00 8382 82 \N 7541 +61887 2025-09-30 19:21:41.224554+00 2025-09-30 19:21:41.224563+00 f t 46000.00 1 46000.00 8607 82 \N 8070 +59853 2025-09-27 13:13:11.800726+00 2025-09-27 13:13:11.80074+00 f t 55000.00 1 55000.00 8383 84 \N 7876 +61988 2025-09-30 22:24:53.210936+00 2025-09-30 22:24:53.210946+00 f t 80000.00 1 80000.00 8629 173 \N 8088 +62077 2025-09-30 23:28:00.571898+00 2025-09-30 23:28:00.571911+00 f t 46000.00 1 46000.00 8633 82 \N 8091 +62078 2025-09-30 23:28:00.580053+00 2025-09-30 23:28:00.580065+00 f t 13200.00 1 13200.00 8633 146 \N 8091 +62079 2025-09-30 23:28:00.586458+00 2025-09-30 23:28:00.586472+00 f t 24000.00 1 24000.00 8633 163 \N 8091 +59891 2025-09-27 13:43:31.311727+00 2025-09-27 13:43:31.311737+00 f t 30000.00 1 30000.00 8384 83 \N 7877 +59892 2025-09-27 13:43:31.317912+00 2025-09-27 13:43:31.317921+00 f t 30000.00 1 30000.00 8384 83 \N 7878 +62122 2025-09-30 23:57:16.215643+00 2025-09-30 23:57:16.215651+00 f t 39000.00 1 39000.00 8636 168 \N 8096 +60218 2025-09-27 14:20:37.572734+00 2025-09-27 14:20:37.572747+00 f t 46000.00 1 46000.00 8394 82 \N 7884 +62222 2025-10-01 03:03:42.821837+00 2025-10-01 03:03:42.821849+00 f t 46000.00 1 46000.00 8653 82 \N 8112 +62245 2025-10-01 03:16:25.374367+00 2025-10-01 03:16:25.374382+00 f t 46000.00 1 46000.00 8656 82 \N 8115 +60413 2025-09-27 15:17:09.836491+00 2025-09-27 15:17:09.836501+00 f t 46000.00 1 46000.00 8399 82 \N 7889 +60414 2025-09-27 15:17:09.843072+00 2025-09-27 15:17:09.843082+00 f t 8000.00 1 8000.00 8399 85 \N 7889 +62444 2025-10-01 09:57:15.179723+00 2025-10-01 09:57:15.179737+00 f t 55000.00 1 55000.00 8662 84 \N 8120 +62478 2025-10-01 11:03:16.418461+00 2025-10-01 11:03:16.41847+00 f t 34000.00 1 34000.00 8664 110 \N 8122 +62479 2025-10-01 11:03:16.424232+00 2025-10-01 11:03:16.42424+00 f t 46000.00 1 46000.00 8664 82 \N 8122 +62480 2025-10-01 11:03:16.428991+00 2025-10-01 11:03:16.428999+00 f t 7700.00 1 7700.00 8664 93 \N 8122 +62481 2025-10-01 11:03:16.434486+00 2025-10-01 11:03:16.434494+00 f t 13200.00 1 13200.00 8664 146 \N 8122 +60499 2025-09-27 16:33:04.960756+00 2025-09-27 16:33:04.960766+00 f t 46000.00 1 46000.00 8406 82 \N 7898 +60500 2025-09-27 16:33:04.970611+00 2025-09-27 16:33:04.970626+00 f t 24000.00 1 24000.00 8406 88 \N 7898 +62482 2025-10-01 11:03:16.439531+00 2025-10-01 11:03:16.439539+00 f t 8000.00 1 8000.00 8664 85 \N 8122 +62483 2025-10-01 11:03:16.443825+00 2025-10-01 11:03:16.443833+00 f t 24000.00 1 24000.00 8664 163 \N 8122 +60506 2025-09-27 17:08:10.164435+00 2025-09-27 17:08:10.164444+00 f t 23000.00 1 23000.00 8407 172 \N 7899 +60517 2025-09-27 17:19:47.341025+00 2025-09-27 17:19:47.341034+00 f t 46000.00 1 46000.00 8409 82 \N 7901 +60518 2025-09-27 17:19:47.346901+00 2025-09-27 17:19:47.34691+00 f t 8000.00 1 8000.00 8409 85 \N 7901 +60521 2025-09-27 17:25:00.922261+00 2025-09-27 17:25:00.922271+00 f t 55000.00 1 55000.00 8402 84 \N 7892 +62571 2025-10-01 14:57:12.001907+00 2025-10-01 14:57:12.001918+00 f t 75000.00 1 75000.00 8675 108 \N 7238 +62572 2025-10-01 14:57:12.009025+00 2025-10-01 14:57:12.009036+00 f t 34000.00 1 34000.00 8675 110 \N 7239 +62573 2025-10-01 14:57:12.014984+00 2025-10-01 14:57:12.014993+00 f t 7700.00 1 7700.00 8675 93 \N 7239 +62574 2025-10-01 14:57:12.020411+00 2025-10-01 14:57:12.02042+00 f t 75000.00 1 75000.00 8675 108 \N 7239 +62575 2025-10-01 14:57:12.025852+00 2025-10-01 14:57:12.025861+00 f t 13200.00 1 13200.00 8675 146 \N 7239 +62576 2025-10-01 14:57:12.031323+00 2025-10-01 14:57:12.031333+00 f t 46000.00 1 46000.00 8675 82 \N 7239 +60608 2025-09-27 23:02:22.331722+00 2025-09-27 23:02:22.331732+00 f t 46000.00 1 46000.00 8415 82 \N 7907 +60609 2025-09-27 23:02:22.336801+00 2025-09-27 23:02:22.336808+00 f t 8000.00 1 8000.00 8415 85 \N 7907 +60611 2025-09-27 23:32:15.201637+00 2025-09-27 23:32:15.201646+00 f t 75000.00 1 75000.00 8416 108 \N 7908 +62626 2025-10-01 15:47:34.489572+00 2025-10-01 15:47:34.489584+00 f t 46000.00 1 46000.00 8680 82 \N 8132 +62643 2025-10-01 16:10:39.037099+00 2025-10-01 16:10:39.037107+00 f t 75000.00 1 75000.00 8687 108 \N 7168 +62661 2025-10-01 18:11:30.280372+00 2025-10-01 18:11:30.280383+00 f t 24000.00 1 24000.00 8693 163 \N 8142 +62662 2025-10-01 18:11:30.287431+00 2025-10-01 18:11:30.287441+00 f t 46000.00 1 46000.00 8693 82 \N 8142 +62701 2025-10-01 18:52:02.170517+00 2025-10-01 18:52:02.170531+00 f t 46000.00 1 46000.00 8696 82 \N 8145 +62702 2025-10-01 18:52:02.180325+00 2025-10-01 18:52:02.180338+00 f t 8000.00 1 8000.00 8696 85 \N 8145 +60658 2025-09-28 00:39:01.530321+00 2025-09-28 00:39:01.530336+00 f t 55000.00 1 55000.00 8420 84 \N 7912 +62703 2025-10-01 18:52:02.188074+00 2025-10-01 18:52:02.188089+00 f t 24000.00 1 24000.00 8696 88 \N 8145 +62704 2025-10-01 18:52:02.195167+00 2025-10-01 18:52:02.195181+00 f t 24000.00 1 24000.00 8696 163 \N 8145 +62710 2025-10-01 19:11:20.108512+00 2025-10-01 19:11:20.108524+00 f t 55000.00 1 55000.00 8698 84 \N 8147 +62713 2025-10-01 21:50:11.288738+00 2025-10-01 21:50:11.288759+00 f t 13200.00 1 13200.00 8699 146 \N 8053 +62716 2025-10-02 13:36:52.02708+00 2025-10-02 13:36:52.027096+00 f t 46000.00 1 46000.00 8705 82 \N 8150 +60667 2025-09-28 00:44:14.472367+00 2025-09-28 00:44:14.472383+00 f t 34000.00 1 34000.00 8421 110 \N 7913 +60668 2025-09-28 00:44:14.480181+00 2025-09-28 00:44:14.480194+00 f t 46000.00 1 46000.00 8421 82 \N 7913 +60669 2025-09-28 00:44:14.486175+00 2025-09-28 00:44:14.486184+00 f t 7700.00 1 7700.00 8421 93 \N 7913 +60670 2025-09-28 00:44:14.491856+00 2025-09-28 00:44:14.491868+00 f t 13200.00 1 13200.00 8421 146 \N 7913 +62731 2025-10-02 14:06:32.245857+00 2025-10-02 14:06:32.245867+00 f t 55000.00 1 55000.00 8708 84 \N 7319 +60674 2025-09-28 01:17:23.206725+00 2025-09-28 01:17:23.206733+00 f t 46000.00 1 46000.00 8422 82 \N 7914 +60682 2025-09-28 02:50:50.955048+00 2025-09-28 02:50:50.955061+00 f t 46000.00 1 46000.00 8424 82 \N 7916 +61773 2025-09-30 12:40:08.371264+00 2025-09-30 12:40:08.371279+00 f t 55000.00 1 55000.00 8587 84 \N 8051 +61791 2025-09-30 15:44:55.224095+00 2025-09-30 15:44:55.224103+00 f t 55000.00 1 55000.00 8596 84 \N 8059 +67807 2025-10-12 03:03:55.912798+00 2025-10-12 03:03:55.912808+00 f t 55000.00 1 55000.00 9417 84 \N 8732 +61888 2025-09-30 19:48:59.871325+00 2025-09-30 19:48:59.871339+00 f t 46000.00 1 46000.00 8612 82 \N 8073 +61897 2025-09-30 19:57:01.407325+00 2025-09-30 19:57:01.407335+00 f t 46000.00 1 46000.00 8614 82 \N 8075 +65732 2025-10-07 10:53:25.514837+00 2025-10-07 10:53:25.514846+00 f t 46000.00 1 46000.00 9063 82 \N 8457 +65744 2025-10-07 12:37:15.807151+00 2025-10-07 12:37:15.807159+00 f t 46000.00 1 46000.00 9066 82 \N 8461 +60705 2025-09-28 03:23:11.263455+00 2025-09-28 03:23:11.263467+00 f t 46000.00 1 46000.00 8425 82 \N 7917 +61973 2025-09-30 20:56:46.822159+00 2025-09-30 20:56:46.822169+00 f t 55000.00 1 55000.00 8623 84 \N 8084 +63835 2025-10-04 01:00:44.921662+00 2025-10-04 01:00:44.921671+00 f t 82000.00 1 82000.00 8840 97 \N 8257 +63866 2025-10-04 12:49:19.708013+00 2025-10-04 12:49:19.708024+00 f t 46000.00 1 46000.00 8810 82 \N 8229 +63867 2025-10-04 12:49:19.712651+00 2025-10-04 12:49:19.712659+00 f t 46000.00 1 46000.00 8810 82 \N 8231 +63868 2025-10-04 12:49:19.716331+00 2025-10-04 12:49:19.716338+00 f t 8000.00 1 8000.00 8810 85 \N 8229 +63869 2025-10-04 12:49:19.720121+00 2025-10-04 12:49:19.720127+00 f t 8000.00 1 8000.00 8810 85 \N 8231 +63870 2025-10-04 12:49:19.723688+00 2025-10-04 12:49:19.723695+00 f t 24000.00 1 24000.00 8810 86 \N 8229 +63871 2025-10-04 12:49:19.727513+00 2025-10-04 12:49:19.727519+00 f t 24000.00 1 24000.00 8810 163 \N 8231 +63888 2025-10-04 13:57:33.636849+00 2025-10-04 13:57:33.636858+00 f t 46000.00 1 46000.00 8847 82 \N 8263 +63919 2025-10-04 15:47:09.738693+00 2025-10-04 15:47:09.738703+00 f t 13200.00 1 13200.00 8854 146 \N 8150 +62114 2025-09-30 23:36:38.828303+00 2025-09-30 23:36:38.828311+00 f t 46000.00 1 46000.00 8634 82 \N 8092 +62115 2025-09-30 23:36:38.836772+00 2025-09-30 23:36:38.836781+00 f t 8000.00 1 8000.00 8634 85 \N 8092 +62116 2025-09-30 23:36:38.841664+00 2025-09-30 23:36:38.841672+00 f t 46000.00 1 46000.00 8634 82 \N 8093 +62117 2025-09-30 23:36:38.846053+00 2025-09-30 23:36:38.846061+00 f t 8000.00 1 8000.00 8634 85 \N 8093 +62118 2025-09-30 23:36:38.850225+00 2025-09-30 23:36:38.850233+00 f t 46000.00 1 46000.00 8634 82 \N 8094 +62119 2025-09-30 23:36:38.855675+00 2025-09-30 23:36:38.855686+00 f t 8000.00 1 8000.00 8634 85 \N 8094 +62146 2025-10-01 00:27:53.183357+00 2025-10-01 00:27:53.183367+00 f t 46000.00 1 46000.00 8643 82 \N 8102 +64014 2025-10-04 18:41:31.378103+00 2025-10-04 18:41:31.378111+00 f t 75000.00 1 75000.00 8864 108 \N 8277 +64038 2025-10-04 21:57:01.736527+00 2025-10-04 21:57:01.736537+00 f t 55000.00 1 55000.00 8873 84 \N 8282 +62175 2025-10-01 00:53:35.74475+00 2025-10-01 00:53:35.744759+00 f t 55000.00 1 55000.00 8646 84 \N 8104 +62179 2025-10-01 01:01:40.580541+00 2025-10-01 01:01:40.580553+00 f t 46000.00 1 46000.00 8647 82 \N 8105 +62215 2025-10-01 02:36:10.841192+00 2025-10-01 02:36:10.841203+00 f t 60000.00 1 60000.00 8651 101 \N 8110 +64172 2025-10-05 11:28:50.834847+00 2025-10-05 11:28:50.834858+00 f t 30000.00 1 30000.00 8906 83 \N 8311 +64431 2025-10-05 18:13:47.434429+00 2025-10-05 18:13:47.434437+00 f t 46000.00 1 46000.00 8923 82 \N 8325 +64432 2025-10-05 18:13:47.439836+00 2025-10-05 18:13:47.439844+00 f t 8000.00 1 8000.00 8923 85 \N 8325 +64433 2025-10-05 18:13:47.444389+00 2025-10-05 18:13:47.444396+00 f t 46000.00 1 46000.00 8923 82 \N 8326 +64434 2025-10-05 18:13:47.448734+00 2025-10-05 18:13:47.448742+00 f t 24000.00 1 24000.00 8923 86 \N 8326 +62442 2025-10-01 05:34:19.04544+00 2025-10-01 05:34:19.045454+00 f t 46000.00 1 46000.00 8661 82 \N 8119 +64468 2025-10-05 19:29:12.018811+00 2025-10-05 19:29:12.01882+00 f t 55000.00 1 55000.00 8927 84 \N 8328 +64483 2025-10-05 19:33:35.894665+00 2025-10-05 19:33:35.894674+00 f t 55000.00 1 55000.00 8928 84 \N 8328 +62532 2025-10-01 12:23:46.807361+00 2025-10-01 12:23:46.807371+00 f t 55000.00 1 55000.00 8668 84 \N 8124 +62542 2025-10-01 14:31:26.090669+00 2025-10-01 14:31:26.090681+00 f t 46000.00 1 46000.00 8673 82 \N 8128 +62602 2025-10-01 15:28:33.258101+00 2025-10-01 15:28:33.25811+00 f t 8000.00 1 8000.00 8678 85 \N 788 +62603 2025-10-01 15:28:33.263277+00 2025-10-01 15:28:33.263285+00 f t 46000.00 1 46000.00 8678 82 \N 788 +62610 2025-10-01 15:28:47.475334+00 2025-10-01 15:28:47.475346+00 f t 46000.00 1 46000.00 8677 82 \N 8131 +62611 2025-10-01 15:28:47.481841+00 2025-10-01 15:28:47.481855+00 f t 46000.00 1 46000.00 8677 82 \N 8130 +62612 2025-10-01 15:28:47.490819+00 2025-10-01 15:28:47.490833+00 f t 8000.00 1 8000.00 8677 85 \N 8131 +62613 2025-10-01 15:28:47.496775+00 2025-10-01 15:28:47.496787+00 f t 8000.00 1 8000.00 8677 85 \N 8130 +62614 2025-10-01 15:28:47.50262+00 2025-10-01 15:28:47.502631+00 f t 24000.00 1 24000.00 8677 163 \N 8130 +62615 2025-10-01 15:28:47.508688+00 2025-10-01 15:28:47.5087+00 f t 24000.00 1 24000.00 8677 163 \N 8131 +62621 2025-10-01 15:37:13.638338+00 2025-10-01 15:37:13.63835+00 f t 55000.00 1 55000.00 8679 84 \N 1174 +62630 2025-10-01 15:53:47.65676+00 2025-10-01 15:53:47.656768+00 f t 46000.00 1 46000.00 8682 82 \N 8134 +62636 2025-10-01 15:57:12.877582+00 2025-10-01 15:57:12.877595+00 f t 55000.00 1 55000.00 8685 84 \N 8136 +60920 2025-09-28 04:26:20.507761+00 2025-09-28 04:26:20.507769+00 f t 55000.00 1 55000.00 8419 84 \N 7911 +60921 2025-09-28 04:26:20.512976+00 2025-09-28 04:26:20.512984+00 f t 55000.00 1 55000.00 8419 84 \N 7919 +60922 2025-09-28 04:26:20.517218+00 2025-09-28 04:26:20.517226+00 f t 55000.00 1 55000.00 8419 84 \N 7920 +60923 2025-09-28 04:26:20.521213+00 2025-09-28 04:26:20.521221+00 f t 55000.00 1 55000.00 8419 84 \N 7921 +62648 2025-10-01 16:39:34.130958+00 2025-10-01 16:39:34.130967+00 f t 55000.00 1 55000.00 8688 84 \N 8138 +64689 2025-10-06 00:12:53.761372+00 2025-10-06 00:12:53.761384+00 f t 82000.00 1 82000.00 8941 97 \N 7379 +64693 2025-10-06 00:41:46.248778+00 2025-10-06 00:41:46.248788+00 f t 46000.00 1 46000.00 8943 82 \N 8342 +62714 2025-10-01 23:08:00.76075+00 2025-10-01 23:08:00.760765+00 f t 30000.00 1 30000.00 8700 83 \N 8148 +60950 2025-09-28 06:45:31.52063+00 2025-09-28 06:45:31.52064+00 f t 46000.00 1 46000.00 8428 82 \N 7922 +60951 2025-09-28 06:45:31.527234+00 2025-09-28 06:45:31.527245+00 f t 24000.00 1 24000.00 8428 86 \N 7922 +60964 2025-09-28 09:56:07.327362+00 2025-09-28 09:56:07.327375+00 f t 30000.00 1 30000.00 8430 83 \N 7924 +60966 2025-09-28 11:16:56.399626+00 2025-09-28 11:16:56.399634+00 f t 55000.00 1 55000.00 8431 84 \N 7925 +62759 2025-10-02 15:37:24.747392+00 2025-10-02 15:37:24.747404+00 f t 46000.00 1 46000.00 8712 82 \N 8154 +62760 2025-10-02 15:37:24.75319+00 2025-10-02 15:37:24.753202+00 f t 8000.00 1 8000.00 8712 85 \N 8154 +62761 2025-10-02 15:37:24.758215+00 2025-10-02 15:37:24.758226+00 f t 24000.00 1 24000.00 8712 163 \N 8154 +62762 2025-10-02 15:40:54.92873+00 2025-10-02 15:40:54.92874+00 f t 46000.00 1 46000.00 8713 82 \N 7904 +63715 2025-10-03 19:34:41.054306+00 2025-10-03 19:34:41.054315+00 f t 46000.00 1 46000.00 8819 82 \N 8238 +63716 2025-10-03 19:34:41.059211+00 2025-10-03 19:34:41.059219+00 f t 8000.00 1 8000.00 8819 85 \N 8238 +60987 2025-09-28 13:06:13.646464+00 2025-09-28 13:06:13.646474+00 f t 46000.00 1 46000.00 8435 82 \N 7926 +60991 2025-09-28 13:08:35.110969+00 2025-09-28 13:08:35.110977+00 f t 76000.00 1 76000.00 8436 97 \N 7927 +61918 2025-09-30 20:30:51.690564+00 2025-09-30 20:30:51.690573+00 f t 46000.00 1 46000.00 8620 82 \N 8079 +60993 2025-09-28 13:38:25.213377+00 2025-09-28 13:38:25.213386+00 f t 107000.00 1 107000.00 8437 103 \N 7928 +61919 2025-09-30 20:30:51.69517+00 2025-09-30 20:30:51.695178+00 f t 8000.00 1 8000.00 8620 85 \N 8079 +60995 2025-09-28 13:57:10.209139+00 2025-09-28 13:57:10.209149+00 f t 46000.00 1 46000.00 8438 82 \N 7929 +60999 2025-09-28 15:30:30.839307+00 2025-09-28 15:30:30.839321+00 f t 55000.00 1 55000.00 8442 84 \N 7930 +61002 2025-09-28 16:02:01.524315+00 2025-09-28 16:02:01.524328+00 f t 46000.00 1 46000.00 8444 82 \N 7931 +61004 2025-09-28 16:11:04.498084+00 2025-09-28 16:11:04.498095+00 f t 55000.00 1 55000.00 8445 84 \N 7932 +61006 2025-09-28 16:43:56.436971+00 2025-09-28 16:43:56.436984+00 f t 55000.00 1 55000.00 8448 84 \N 7933 +61978 2025-09-30 21:04:51.032933+00 2025-09-30 21:04:51.032941+00 f t 55000.00 1 55000.00 8626 84 \N 8086 +61985 2025-09-30 21:09:06.350539+00 2025-09-30 21:09:06.350553+00 f t 46000.00 1 46000.00 8627 82 \N 8087 +61011 2025-09-28 16:54:39.633625+00 2025-09-28 16:54:39.633637+00 f t 55000.00 1 55000.00 8453 84 \N 7934 +61986 2025-09-30 21:09:06.369005+00 2025-09-30 21:09:06.369018+00 f t 24000.00 1 24000.00 8627 86 \N 8087 +61991 2025-09-30 22:43:26.735116+00 2025-09-30 22:43:26.735125+00 f t 46000.00 1 46000.00 8630 82 \N 8089 +61014 2025-09-28 16:58:38.329887+00 2025-09-28 16:58:38.329897+00 f t 55000.00 1 55000.00 8454 84 \N 7935 +61992 2025-09-30 22:43:26.741062+00 2025-09-30 22:43:26.741071+00 f t 24000.00 1 24000.00 8630 86 \N 8089 +61016 2025-09-28 17:18:36.934246+00 2025-09-28 17:18:36.934254+00 f t 46000.00 1 46000.00 8455 82 \N 7936 +61028 2025-09-28 17:34:33.29073+00 2025-09-28 17:34:33.290743+00 f t 55000.00 1 55000.00 8457 84 \N 7939 +61029 2025-09-28 17:34:33.297367+00 2025-09-28 17:34:33.297379+00 f t 46000.00 1 46000.00 8457 82 \N 7939 +61031 2025-09-28 17:57:13.153309+00 2025-09-28 17:57:13.153323+00 f t 46000.00 1 46000.00 8458 82 \N 7940 +61033 2025-09-28 18:09:33.158173+00 2025-09-28 18:09:33.158184+00 f t 46000.00 1 46000.00 8460 82 \N 7941 +61035 2025-09-28 18:21:32.904897+00 2025-09-28 18:21:32.904906+00 f t 75000.00 1 75000.00 8462 108 \N 7943 +61040 2025-09-28 19:04:14.566127+00 2025-09-28 19:04:14.566136+00 f t 55000.00 1 55000.00 8466 84 \N 7948 +61041 2025-09-28 19:17:11.758156+00 2025-09-28 19:17:11.758165+00 f t 55000.00 1 55000.00 8467 84 \N 7949 +62128 2025-10-01 00:07:13.130807+00 2025-10-01 00:07:13.130816+00 f t 46000.00 1 46000.00 8638 82 \N 8099 +62141 2025-10-01 00:17:56.606655+00 2025-10-01 00:17:56.606667+00 f t 46000.00 1 46000.00 8640 82 \N 8100 +62142 2025-10-01 00:17:56.613303+00 2025-10-01 00:17:56.613315+00 f t 8000.00 1 8000.00 8640 85 \N 8100 +61059 2025-09-28 20:19:51.552096+00 2025-09-28 20:19:51.552111+00 f t 46000.00 1 46000.00 8472 82 \N 7952 +62143 2025-10-01 00:17:56.619036+00 2025-10-01 00:17:56.619049+00 f t 24000.00 1 24000.00 8640 88 \N 8100 +61062 2025-09-28 20:31:46.694762+00 2025-09-28 20:31:46.694771+00 f t 55000.00 1 55000.00 8474 84 \N 7954 +62155 2025-10-01 00:39:47.257545+00 2025-10-01 00:39:47.257553+00 f t 46000.00 1 46000.00 8645 82 \N 8103 +61065 2025-09-28 21:42:37.035729+00 2025-09-28 21:42:37.035742+00 f t 55000.00 1 55000.00 8477 84 \N 7956 +62156 2025-10-01 00:39:47.263698+00 2025-10-01 00:39:47.263707+00 f t 24000.00 1 24000.00 8645 86 \N 8103 +61068 2025-09-28 21:58:08.512472+00 2025-09-28 21:58:08.512481+00 f t 55000.00 1 55000.00 8479 84 \N 7958 +61070 2025-09-28 22:06:02.193582+00 2025-09-28 22:06:02.193591+00 f t 55000.00 1 55000.00 8481 84 \N 7960 +61072 2025-09-28 22:06:15.433769+00 2025-09-28 22:06:15.433781+00 f t 46000.00 1 46000.00 8480 82 \N 7959 +61075 2025-09-28 22:38:59.637331+00 2025-09-28 22:38:59.637341+00 f t 46000.00 1 46000.00 8483 82 \N 7961 +61080 2025-09-29 00:10:23.059288+00 2025-09-29 00:10:23.059297+00 f t 55000.00 1 55000.00 8485 84 \N 7963 +62220 2025-10-01 02:42:55.075424+00 2025-10-01 02:42:55.075438+00 f t 46000.00 1 46000.00 8652 82 \N 8111 +62224 2025-10-01 03:08:40.857751+00 2025-10-01 03:08:40.857763+00 f t 30000.00 1 30000.00 8654 83 \N 8113 +62239 2025-10-01 03:10:58.98477+00 2025-10-01 03:10:58.98478+00 f t 20500.00 1 20500.00 8655 109 \N 8114 +62240 2025-10-01 03:10:58.989633+00 2025-10-01 03:10:58.989641+00 f t 46000.00 1 46000.00 8655 82 \N 8114 +62241 2025-10-01 03:10:58.993832+00 2025-10-01 03:10:58.99384+00 f t 7700.00 1 7700.00 8655 93 \N 8114 +62242 2025-10-01 03:10:58.997862+00 2025-10-01 03:10:58.997873+00 f t 13200.00 1 13200.00 8655 146 \N 8114 +62243 2025-10-01 03:10:59.002303+00 2025-10-01 03:10:59.002312+00 f t 8000.00 1 8000.00 8655 85 \N 8114 +61117 2025-09-29 00:34:36.736911+00 2025-09-29 00:34:36.736919+00 f t 46000.00 1 46000.00 8486 82 \N 7964 +61118 2025-09-29 00:34:36.743319+00 2025-09-29 00:34:36.743332+00 f t 75000.00 1 75000.00 8486 142 \N 7964 +61125 2025-09-29 01:22:34.345961+00 2025-09-29 01:22:34.345969+00 f t 46000.00 1 46000.00 8411 82 \N 7903 +61126 2025-09-29 01:22:34.352226+00 2025-09-29 01:22:34.352235+00 f t 20500.00 1 20500.00 8411 109 \N 7903 +61127 2025-09-29 01:22:34.357621+00 2025-09-29 01:22:34.357628+00 f t 7700.00 1 7700.00 8411 93 \N 7903 +61128 2025-09-29 01:22:34.362449+00 2025-09-29 01:22:34.362456+00 f t 13200.00 1 13200.00 8411 146 \N 7903 +61129 2025-09-29 01:22:34.367616+00 2025-09-29 01:22:34.367623+00 f t 46000.00 1 46000.00 8411 82 \N 7903 +61208 2025-09-29 01:57:30.657248+00 2025-09-29 01:57:30.657257+00 f t 34000.00 1 34000.00 8488 110 \N 7965 +61209 2025-09-29 01:57:30.66297+00 2025-09-29 01:57:30.662982+00 f t 46000.00 1 46000.00 8488 82 \N 7965 +61210 2025-09-29 01:57:30.671718+00 2025-09-29 01:57:30.671727+00 f t 7700.00 1 7700.00 8488 93 \N 7965 +61211 2025-09-29 01:57:30.676746+00 2025-09-29 01:57:30.676758+00 f t 13200.00 1 13200.00 8488 146 \N 7965 +61225 2025-09-29 02:41:23.334015+00 2025-09-29 02:41:23.334029+00 f t 46000.00 1 46000.00 8489 82 \N 7968 +61227 2025-09-29 03:38:56.617705+00 2025-09-29 03:38:56.617718+00 f t 80000.00 1 80000.00 8490 173 \N 7969 +61229 2025-09-29 04:02:03.562599+00 2025-09-29 04:02:03.562612+00 f t 68000.00 1 68000.00 8491 106 \N 7970 +61249 2025-09-29 10:27:57.118835+00 2025-09-29 10:27:57.118847+00 f t 80000.00 1 80000.00 8495 173 \N 7974 +61252 2025-09-29 10:53:47.586416+00 2025-09-29 10:53:47.586426+00 f t 46000.00 1 46000.00 8498 82 \N 7976 +61253 2025-09-29 10:53:47.592319+00 2025-09-29 10:53:47.592327+00 f t 8000.00 1 8000.00 8498 85 \N 7976 +61256 2025-09-29 11:04:51.197524+00 2025-09-29 11:04:51.197541+00 f t 46000.00 1 46000.00 8501 82 \N 7979 +61258 2025-09-29 11:25:08.436275+00 2025-09-29 11:25:08.436285+00 f t 80000.00 1 80000.00 8502 173 \N 7980 +61794 2025-09-30 15:49:47.529253+00 2025-09-30 15:49:47.529262+00 f t 55000.00 1 55000.00 8581 84 \N 8045 +61278 2025-09-29 12:37:27.55007+00 2025-09-29 12:37:27.550084+00 f t 46000.00 1 46000.00 8503 82 \N 7981 +61296 2025-09-29 12:42:32.746407+00 2025-09-29 12:42:32.746416+00 f t 46000.00 1 46000.00 8504 82 \N 7982 +61299 2025-09-29 12:46:46.661385+00 2025-09-29 12:46:46.661395+00 f t 55000.00 1 55000.00 8505 84 \N 7983 +61300 2025-09-29 12:51:28.483314+00 2025-09-29 12:51:28.483322+00 f t 60000.00 1 60000.00 8506 169 \N 928 +61305 2025-09-29 12:53:24.032028+00 2025-09-29 12:53:24.03204+00 f t 46000.00 1 46000.00 8508 82 \N 7985 +61311 2025-09-29 13:00:29.624046+00 2025-09-29 13:00:29.62406+00 f t 46000.00 1 46000.00 8509 82 \N 7986 +61312 2025-09-29 13:02:35.146612+00 2025-09-29 13:02:35.14662+00 f t 55000.00 1 55000.00 8510 84 \N 4386 +61320 2025-09-29 13:11:26.243334+00 2025-09-29 13:11:26.243347+00 f t 46000.00 1 46000.00 8511 82 \N 7987 +61325 2025-09-29 13:21:52.870166+00 2025-09-29 13:21:52.870174+00 f t 75000.00 1 75000.00 8512 108 \N 7988 +61327 2025-09-29 13:24:25.111704+00 2025-09-29 13:24:25.111715+00 f t 46000.00 1 46000.00 8514 82 \N 7989 +61331 2025-09-29 13:25:54.122526+00 2025-09-29 13:25:54.122535+00 f t 20500.00 1 20500.00 8513 109 \N 7990 +61332 2025-09-29 13:25:54.127618+00 2025-09-29 13:25:54.127629+00 f t 7700.00 1 7700.00 8513 93 \N 7990 +61333 2025-09-29 13:25:54.13193+00 2025-09-29 13:25:54.131948+00 f t 13200.00 1 13200.00 8513 146 \N 7990 +61334 2025-09-29 13:25:54.136983+00 2025-09-29 13:25:54.136993+00 f t 46000.00 1 46000.00 8513 82 \N 7990 +61373 2025-09-29 14:27:47.969284+00 2025-09-29 14:27:47.969296+00 f t 46000.00 1 46000.00 8520 82 \N 7992 +61374 2025-09-29 14:27:47.976128+00 2025-09-29 14:27:47.97614+00 f t 46000.00 1 46000.00 8520 82 \N 7994 +61375 2025-09-29 14:27:47.982129+00 2025-09-29 14:27:47.982142+00 f t 46000.00 1 46000.00 8520 82 \N 7993 +61376 2025-09-29 14:27:47.987941+00 2025-09-29 14:27:47.987954+00 f t 8000.00 1 8000.00 8520 85 \N 7992 +61377 2025-09-29 14:27:47.993001+00 2025-09-29 14:27:47.993009+00 f t 8000.00 1 8000.00 8520 85 \N 7994 +61378 2025-09-29 14:27:47.99794+00 2025-09-29 14:27:47.99795+00 f t 8000.00 1 8000.00 8520 85 \N 7993 +61379 2025-09-29 14:27:48.002699+00 2025-09-29 14:27:48.002709+00 f t 24000.00 1 24000.00 8520 163 \N 7993 +61380 2025-09-29 14:27:48.00761+00 2025-09-29 14:27:48.007622+00 f t 24000.00 1 24000.00 8520 163 \N 7994 +61381 2025-09-29 14:27:48.012666+00 2025-09-29 14:27:48.012674+00 f t 24000.00 1 24000.00 8520 86 \N 7992 +61382 2025-09-29 14:35:53.842091+00 2025-09-29 14:35:53.842102+00 f t 55000.00 1 55000.00 8484 84 \N 7962 +61387 2025-09-29 14:39:57.807561+00 2025-09-29 14:39:57.807575+00 f t 30000.00 1 30000.00 8521 83 \N 7995 +61399 2025-09-29 14:45:47.503382+00 2025-09-29 14:45:47.503392+00 f t 55000.00 1 55000.00 8522 84 \N 7996 +61403 2025-09-29 14:50:32.26639+00 2025-09-29 14:50:32.266399+00 f t 46000.00 1 46000.00 8523 82 \N 7997 +61406 2025-09-29 15:43:37.375123+00 2025-09-29 15:43:37.375164+00 f t 46000.00 1 46000.00 8526 82 \N 8000 +61407 2025-09-29 15:43:37.381198+00 2025-09-29 15:43:37.38121+00 f t 8000.00 1 8000.00 8526 85 \N 8000 +61409 2025-09-29 15:48:25.201595+00 2025-09-29 15:48:25.201603+00 f t 46000.00 1 46000.00 8527 82 \N 8002 +61413 2025-09-29 16:10:19.232468+00 2025-09-29 16:10:19.232482+00 f t 130000.00 1 130000.00 8530 164 \N 8004 +61416 2025-09-29 16:23:27.940895+00 2025-09-29 16:23:27.940908+00 f t 78000.00 1 78000.00 8532 167 \N 8005 +61419 2025-09-29 17:05:46.228923+00 2025-09-29 17:05:46.228932+00 f t 46000.00 1 46000.00 8533 82 \N 8006 +61420 2025-09-29 17:05:46.234777+00 2025-09-29 17:05:46.234786+00 f t 8000.00 1 8000.00 8533 85 \N 8006 +61422 2025-09-29 17:57:20.867233+00 2025-09-29 17:57:20.867245+00 f t 68000.00 1 68000.00 8534 106 \N 8007 +61424 2025-09-29 18:22:00.119992+00 2025-09-29 18:22:00.120005+00 f t 76000.00 1 76000.00 8537 97 \N 8009 +61426 2025-09-29 18:27:29.371983+00 2025-09-29 18:27:29.371998+00 f t 46000.00 1 46000.00 8538 82 \N 8010 +61430 2025-09-29 19:14:57.077991+00 2025-09-29 19:14:57.078001+00 f t 30000.00 1 30000.00 8541 83 \N 8013 +61457 2025-09-29 20:06:47.693053+00 2025-09-29 20:06:47.693062+00 f t 46000.00 1 46000.00 8543 82 \N 8016 +61458 2025-09-29 20:06:47.699039+00 2025-09-29 20:06:47.699048+00 f t 8000.00 1 8000.00 8543 85 \N 8016 +61461 2025-09-29 20:09:49.042322+00 2025-09-29 20:09:49.042335+00 f t 46000.00 1 46000.00 8544 82 \N 8017 +61485 2025-09-29 20:13:05.540218+00 2025-09-29 20:13:05.540231+00 f t 68000.00 1 68000.00 8546 106 \N 8018 +61486 2025-09-29 20:13:05.547035+00 2025-09-29 20:13:05.547049+00 f t 20500.00 1 20500.00 8546 109 \N 8019 +61487 2025-09-29 20:13:05.552504+00 2025-09-29 20:13:05.552517+00 f t 7700.00 1 7700.00 8546 93 \N 8019 +61488 2025-09-29 20:13:05.558498+00 2025-09-29 20:13:05.55851+00 f t 13200.00 1 13200.00 8546 146 \N 8019 +61489 2025-09-29 20:13:05.563612+00 2025-09-29 20:13:05.563621+00 f t 46000.00 1 46000.00 8546 82 \N 8019 +61491 2025-09-29 20:36:13.587396+00 2025-09-29 20:36:13.58741+00 f t 55000.00 1 55000.00 8547 84 \N 8020 +61493 2025-09-29 21:13:13.674884+00 2025-09-29 21:13:13.674893+00 f t 68000.00 1 68000.00 8549 106 \N 8021 +61506 2025-09-29 21:57:27.410184+00 2025-09-29 21:57:27.410194+00 f t 46000.00 1 46000.00 8550 82 \N 8023 +61507 2025-09-29 21:57:27.416015+00 2025-09-29 21:57:27.416025+00 f t 24000.00 1 24000.00 8550 86 \N 8023 +61508 2025-09-29 21:57:27.42068+00 2025-09-29 21:57:27.420689+00 f t 46000.00 1 46000.00 8550 82 \N 8024 +61509 2025-09-29 21:57:27.425328+00 2025-09-29 21:57:27.425339+00 f t 24000.00 1 24000.00 8550 86 \N 8024 +61510 2025-09-29 23:20:05.310797+00 2025-09-29 23:20:05.310813+00 f t 78000.00 1 78000.00 8557 167 \N 8028 +61513 2025-09-29 23:26:16.847053+00 2025-09-29 23:26:16.847068+00 f t 46000.00 1 46000.00 8559 82 \N 8029 +61514 2025-09-29 23:26:16.853526+00 2025-09-29 23:26:16.853535+00 f t 24000.00 1 24000.00 8559 86 \N 8029 +61515 2025-09-29 23:26:16.858697+00 2025-09-29 23:26:16.858705+00 f t 8000.00 1 8000.00 8559 85 \N 8029 +61518 2025-09-29 23:36:32.664883+00 2025-09-29 23:36:32.664892+00 f t 107000.00 1 107000.00 8560 103 \N 8031 +61519 2025-09-29 23:36:32.671078+00 2025-09-29 23:36:32.671087+00 f t 107000.00 1 107000.00 8560 103 \N 8030 +61520 2025-09-29 23:57:44.7582+00 2025-09-29 23:57:44.758209+00 f t 46000.00 1 46000.00 8563 82 \N 1510 +61522 2025-09-30 00:09:14.543465+00 2025-09-30 00:09:14.543476+00 f t 46000.00 1 46000.00 8564 82 \N 8033 +61523 2025-09-30 00:09:14.549816+00 2025-09-30 00:09:14.549826+00 f t 7700.00 1 7700.00 8564 93 \N 8033 +61534 2025-09-30 00:31:04.164387+00 2025-09-30 00:31:04.164396+00 f t 107000.00 1 107000.00 8567 103 \N 8035 +61538 2025-09-30 00:31:42.110177+00 2025-09-30 00:31:42.110187+00 f t 46000.00 1 46000.00 8566 82 \N 8034 +61550 2025-09-30 02:47:11.703331+00 2025-09-30 02:47:11.703345+00 f t 46000.00 1 46000.00 8571 82 \N 8036 +61551 2025-09-30 02:47:11.711792+00 2025-09-30 02:47:11.711806+00 f t 8000.00 1 8000.00 8571 85 \N 8036 +61553 2025-09-30 02:55:56.181959+00 2025-09-30 02:55:56.181968+00 f t 55000.00 1 55000.00 8572 84 \N 8037 +61759 2025-09-30 11:30:44.883693+00 2025-09-30 11:30:44.883705+00 f t 55000.00 1 55000.00 8568 84 \N 985 +63717 2025-10-03 19:34:41.063111+00 2025-10-03 19:34:41.063118+00 f t 24000.00 1 24000.00 8819 86 \N 8238 +61557 2025-09-30 02:59:27.790245+00 2025-09-30 02:59:27.790255+00 f t 11000.00 1 11000.00 8573 116 \N 8038 +61558 2025-09-30 02:59:27.796435+00 2025-09-30 02:59:27.796444+00 f t 7700.00 1 7700.00 8573 93 \N 8038 +61559 2025-09-30 02:59:27.80075+00 2025-09-30 02:59:27.800758+00 f t 13200.00 1 13200.00 8573 146 \N 8038 +61560 2025-09-30 02:59:27.804815+00 2025-09-30 02:59:27.804823+00 f t 46000.00 1 46000.00 8573 82 \N 8038 +61821 2025-09-30 16:43:50.973156+00 2025-09-30 16:43:50.973164+00 f t 13200.00 1 13200.00 8592 146 \N 8055 +61822 2025-09-30 16:43:50.978298+00 2025-09-30 16:43:50.978307+00 f t 23000.00 1 23000.00 8592 172 \N 8055 +61823 2025-09-30 16:43:50.98279+00 2025-09-30 16:43:50.982812+00 f t 31500.00 1 31500.00 8592 111 \N 8055 +61824 2025-09-30 16:43:50.987307+00 2025-09-30 16:43:50.987314+00 f t 7700.00 1 7700.00 8592 93 \N 8055 +61845 2025-09-30 17:23:55.69923+00 2025-09-30 17:23:55.699239+00 f t 46000.00 1 46000.00 8603 82 \N 8065 +61846 2025-09-30 17:23:55.704711+00 2025-09-30 17:23:55.704721+00 f t 8000.00 1 8000.00 8603 85 \N 8065 +61847 2025-09-30 17:23:55.709073+00 2025-09-30 17:23:55.709081+00 f t 24000.00 1 24000.00 8603 88 \N 8065 +61899 2025-09-30 20:02:19.480148+00 2025-09-30 20:02:19.480157+00 f t 76000.00 1 76000.00 8615 97 \N 8076 +61954 2025-09-30 20:55:46.397519+00 2025-09-30 20:55:46.397527+00 f t 46000.00 1 46000.00 8624 82 \N 8083 +61955 2025-09-30 20:55:46.402172+00 2025-09-30 20:55:46.402179+00 f t 46000.00 1 46000.00 8624 82 \N 8082 +61956 2025-09-30 20:55:46.406406+00 2025-09-30 20:55:46.406416+00 f t 8000.00 1 8000.00 8624 85 \N 8083 +61957 2025-09-30 20:55:46.410703+00 2025-09-30 20:55:46.410714+00 f t 8000.00 1 8000.00 8624 85 \N 8082 +61958 2025-09-30 20:55:46.414976+00 2025-09-30 20:55:46.414983+00 f t 24000.00 1 24000.00 8624 163 \N 8082 +61959 2025-09-30 20:55:46.419086+00 2025-09-30 20:55:46.419094+00 f t 24000.00 1 24000.00 8624 163 \N 8083 +61997 2025-09-30 22:53:08.262113+00 2025-09-30 22:53:08.262126+00 f t 46000.00 1 46000.00 8632 82 \N 8090 +61603 2025-09-30 03:50:31.639099+00 2025-09-30 03:50:31.639115+00 f t 46000.00 1 46000.00 8575 82 \N 8039 +61604 2025-09-30 03:50:31.646369+00 2025-09-30 03:50:31.646378+00 f t 8000.00 1 8000.00 8575 85 \N 8039 +61605 2025-09-30 03:50:31.651696+00 2025-09-30 03:50:31.651708+00 f t 24000.00 1 24000.00 8575 163 \N 8039 +61606 2025-09-30 03:50:31.657606+00 2025-09-30 03:50:31.657618+00 f t 46000.00 1 46000.00 8575 82 \N 8040 +61607 2025-09-30 03:50:31.666073+00 2025-09-30 03:50:31.666087+00 f t 8000.00 1 8000.00 8575 85 \N 8040 +61608 2025-09-30 03:50:31.673877+00 2025-09-30 03:50:31.673888+00 f t 24000.00 1 24000.00 8575 163 \N 8040 +62135 2025-10-01 00:10:16.469141+00 2025-10-01 00:10:16.469155+00 f t 46000.00 1 46000.00 8639 82 \N 8098 +62185 2025-10-01 01:28:14.431688+00 2025-10-01 01:28:14.431699+00 f t 55000.00 1 55000.00 8648 84 \N 8106 +62212 2025-10-01 02:04:23.16169+00 2025-10-01 02:04:23.1617+00 f t 46000.00 1 46000.00 8649 82 \N 8108 +62213 2025-10-01 02:04:23.1693+00 2025-10-01 02:04:23.169309+00 f t 24000.00 1 24000.00 8649 86 \N 8108 +61672 2025-09-30 05:32:30.185973+00 2025-09-30 05:32:30.185984+00 f t 15400.00 1 15400.00 8576 92 \N 8041 +61673 2025-09-30 05:32:30.192844+00 2025-09-30 05:32:30.192859+00 f t 46000.00 1 46000.00 8576 82 \N 8041 +61674 2025-09-30 05:32:30.199024+00 2025-09-30 05:32:30.199036+00 f t 24000.00 1 24000.00 8576 88 \N 8041 +61675 2025-09-30 05:32:30.204503+00 2025-09-30 05:32:30.204515+00 f t 24000.00 1 24000.00 8576 163 \N 8041 +61679 2025-09-30 07:17:39.478743+00 2025-09-30 07:17:39.478756+00 f t 76000.00 1 76000.00 8577 97 \N 8042 +61694 2025-09-30 08:07:46.537029+00 2025-09-30 08:07:46.537038+00 f t 46000.00 1 46000.00 8579 82 \N 8044 +62435 2025-10-01 03:23:11.778974+00 2025-10-01 03:23:11.778984+00 f t 46000.00 1 46000.00 8658 82 \N 8117 +62436 2025-10-01 03:23:11.785863+00 2025-10-01 03:23:11.785876+00 f t 24000.00 1 24000.00 8658 88 \N 8117 +62437 2025-10-01 03:23:11.792696+00 2025-10-01 03:23:11.79271+00 f t 46000.00 1 46000.00 8658 82 \N 8118 +62438 2025-10-01 03:23:11.799483+00 2025-10-01 03:23:11.799497+00 f t 8000.00 1 8000.00 8658 85 \N 8118 +62439 2025-10-01 03:23:11.806562+00 2025-10-01 03:23:11.806576+00 f t 24000.00 1 24000.00 8658 88 \N 8118 +62440 2025-10-01 03:23:11.813114+00 2025-10-01 03:23:11.813126+00 f t 24000.00 1 24000.00 8658 163 \N 8118 +62446 2025-10-01 10:45:33.524255+00 2025-10-01 10:45:33.524267+00 f t 55000.00 1 55000.00 8663 84 \N 8121 +61739 2025-09-30 10:42:36.585476+00 2025-09-30 10:42:36.585489+00 f t 34000.00 1 34000.00 8583 110 \N 8047 +61740 2025-09-30 10:42:36.591926+00 2025-09-30 10:42:36.591938+00 f t 46000.00 1 46000.00 8583 82 \N 8047 +61741 2025-09-30 10:42:36.597633+00 2025-09-30 10:42:36.597645+00 f t 7700.00 1 7700.00 8583 93 \N 8047 +61742 2025-09-30 10:42:36.603311+00 2025-09-30 10:42:36.603324+00 f t 13200.00 1 13200.00 8583 146 \N 8047 +62539 2025-10-01 13:31:55.704709+00 2025-10-01 13:31:55.704718+00 f t 46000.00 1 46000.00 8669 82 \N 8125 +62540 2025-10-01 13:31:55.709356+00 2025-10-01 13:31:55.709365+00 f t 24000.00 1 24000.00 8669 163 \N 8125 +62579 2025-10-01 15:07:33.277902+00 2025-10-01 15:07:33.277915+00 f t 55000.00 1 55000.00 8666 84 \N 8123 +62641 2025-10-01 16:02:58.914585+00 2025-10-01 16:02:58.914596+00 f t 93750.00 1 93750.00 8686 90 \N 8137 +62642 2025-10-01 16:02:58.921026+00 2025-10-01 16:02:58.921038+00 f t 46000.00 1 46000.00 8686 82 \N 8137 +62646 2025-10-01 16:28:18.061748+00 2025-10-01 16:28:18.061756+00 f t 46000.00 1 46000.00 8676 82 \N 8129 +62657 2025-10-01 17:32:03.082266+00 2025-10-01 17:32:03.082283+00 f t 46000.00 1 46000.00 8689 82 \N 8140 +62658 2025-10-01 17:32:03.105352+00 2025-10-01 17:32:03.105366+00 f t 24000.00 1 24000.00 8689 163 \N 8140 +62659 2025-10-01 17:32:03.118653+00 2025-10-01 17:32:03.118671+00 f t 24000.00 1 24000.00 8689 163 \N 8139 +62660 2025-10-01 17:32:03.126824+00 2025-10-01 17:32:03.126837+00 f t 46000.00 1 46000.00 8689 82 \N 8139 +62712 2025-10-01 19:38:55.14924+00 2025-10-01 19:38:55.149252+00 f t 55000.00 1 55000.00 8697 84 \N 5636 +62715 2025-10-02 13:04:38.63273+00 2025-10-02 13:04:38.632743+00 f t 46000.00 1 46000.00 8701 82 \N 8149 +62730 2025-10-02 14:03:08.227226+00 2025-10-02 14:03:08.227235+00 f t 13200.00 1 13200.00 8707 146 \N 8106 +62733 2025-10-02 14:43:46.202884+00 2025-10-02 14:43:46.202896+00 f t 46000.00 1 46000.00 8710 82 \N 8152 +62745 2025-10-02 14:52:20.062848+00 2025-10-02 14:52:20.062861+00 f t 34000.00 1 34000.00 8711 110 \N 8153 +62746 2025-10-02 14:52:20.070776+00 2025-10-02 14:52:20.070788+00 f t 68000.00 1 68000.00 8711 106 \N 8153 +62747 2025-10-02 14:52:20.077013+00 2025-10-02 14:52:20.077026+00 f t 7700.00 1 7700.00 8711 93 \N 8153 +62748 2025-10-02 14:52:20.082757+00 2025-10-02 14:52:20.082769+00 f t 13200.00 1 13200.00 8711 146 \N 8153 +62749 2025-10-02 14:52:20.088425+00 2025-10-02 14:52:20.088436+00 f t 46000.00 1 46000.00 8711 82 \N 8153 +63718 2025-10-03 19:34:41.067217+00 2025-10-03 19:34:41.067224+00 f t 24000.00 1 24000.00 8819 87 \N 8238 +62767 2025-10-02 16:11:29.854646+00 2025-10-02 16:11:29.854655+00 f t 13200.00 1 13200.00 8718 146 \N 8033 +63719 2025-10-03 19:34:41.07102+00 2025-10-03 19:34:41.071028+00 f t 46000.00 1 46000.00 8819 82 \N 8240 +63720 2025-10-03 19:34:41.074633+00 2025-10-03 19:34:41.07464+00 f t 8000.00 1 8000.00 8819 85 \N 8240 +63721 2025-10-03 19:34:41.07815+00 2025-10-03 19:34:41.078157+00 f t 24000.00 1 24000.00 8819 86 \N 8240 +63722 2025-10-03 19:34:41.082497+00 2025-10-03 19:34:41.082504+00 f t 24000.00 1 24000.00 8819 87 \N 8240 +67795 2025-10-12 00:48:04.819088+00 2025-10-12 00:48:04.8191+00 f t 30000.00 1 30000.00 9415 83 \N 8730 +65687 2025-10-07 06:07:18.973403+00 2025-10-07 06:07:18.973412+00 f t 46000.00 1 46000.00 9055 82 \N 8445 +65688 2025-10-07 06:07:18.978607+00 2025-10-07 06:07:18.978614+00 f t 24000.00 1 24000.00 9055 86 \N 8445 +65712 2025-10-07 09:47:06.544092+00 2025-10-07 09:47:06.544101+00 f t 46000.00 1 46000.00 9058 82 \N 8448 +65713 2025-10-07 09:47:06.548827+00 2025-10-07 09:47:06.548834+00 f t 24000.00 1 24000.00 9058 87 \N 8448 +62783 2025-10-02 16:39:56.596919+00 2025-10-02 16:39:56.596931+00 f t 69000.00 1 69000.00 8720 141 \N 480 +62784 2025-10-02 16:39:56.60303+00 2025-10-02 16:39:56.603041+00 f t 46000.00 1 46000.00 8720 82 \N 480 +67847 2025-10-12 11:11:32.786654+00 2025-10-12 11:11:32.786665+00 f t 55000.00 1 55000.00 9427 84 \N 8739 +63791 2025-10-03 22:32:31.549035+00 2025-10-03 22:32:31.549045+00 f t 107000.00 1 107000.00 8831 103 \N 8250 +63855 2025-10-04 09:34:25.770444+00 2025-10-04 09:34:25.770456+00 f t 46000.00 1 46000.00 8845 82 \N 8261 +63872 2025-10-04 13:03:03.688749+00 2025-10-04 13:03:03.688758+00 f t 80000.00 1 80000.00 8821 173 \N 8053 +62803 2025-10-02 16:45:48.950175+00 2025-10-02 16:45:48.950219+00 f t 46000.00 1 46000.00 8722 82 \N 8160 +62804 2025-10-02 16:45:48.95492+00 2025-10-02 16:45:48.954927+00 f t 8000.00 1 8000.00 8722 85 \N 8160 +62814 2025-10-02 16:49:00.673478+00 2025-10-02 16:49:00.673488+00 f t 46000.00 1 46000.00 8723 82 \N 8161 +62815 2025-10-02 16:50:31.326724+00 2025-10-02 16:50:31.326735+00 f t 39000.00 1 39000.00 8724 168 \N 5906 +63949 2025-10-04 15:51:23.64057+00 2025-10-04 15:51:23.640582+00 f t 30000.00 1 30000.00 8856 83 \N 8271 +64031 2025-10-04 20:17:48.293428+00 2025-10-04 20:17:48.293436+00 f t 46000.00 1 46000.00 8869 82 \N 8280 +64054 2025-10-04 23:00:33.23728+00 2025-10-04 23:00:33.237293+00 f t 55000.00 1 55000.00 8881 84 \N 8287 +62853 2025-10-02 16:55:09.028245+00 2025-10-02 16:55:09.028255+00 f t 7700.00 1 7700.00 8725 93 \N 8162 +62854 2025-10-02 16:55:09.034382+00 2025-10-02 16:55:09.03439+00 f t 87000.00 1 87000.00 8725 165 \N 8162 +62855 2025-10-02 16:55:09.039254+00 2025-10-02 16:55:09.039263+00 f t 13200.00 1 13200.00 8725 146 \N 8162 +62856 2025-10-02 16:55:09.043953+00 2025-10-02 16:55:09.043962+00 f t 46000.00 1 46000.00 8725 82 \N 8162 +62862 2025-10-02 16:56:46.976144+00 2025-10-02 16:56:46.976153+00 f t 46000.00 1 46000.00 8726 82 \N 8163 +64158 2025-10-05 09:19:59.130123+00 2025-10-05 09:19:59.130132+00 f t 23000.00 1 23000.00 8902 172 \N 8308 +64173 2025-10-05 12:40:32.896797+00 2025-10-05 12:40:32.896806+00 f t 55000.00 1 55000.00 8890 84 \N 8297 +64178 2025-10-05 13:53:10.638576+00 2025-10-05 13:53:10.638589+00 f t 55000.00 1 55000.00 8908 84 \N 8313 +62873 2025-10-02 16:58:27.733713+00 2025-10-02 16:58:27.733727+00 f t 55000.00 1 55000.00 8719 84 \N 8159 +62874 2025-10-02 16:58:27.739557+00 2025-10-02 16:58:27.739565+00 f t 55000.00 1 55000.00 8719 84 \N 8164 +62875 2025-10-02 17:27:42.966982+00 2025-10-02 17:27:42.96699+00 f t 46000.00 1 46000.00 8727 82 \N 7414 +62878 2025-10-02 17:32:44.295847+00 2025-10-02 17:32:44.295855+00 f t 46000.00 1 46000.00 8729 82 \N 8165 +62879 2025-10-02 17:32:44.301851+00 2025-10-02 17:32:44.301859+00 f t 24000.00 1 24000.00 8729 86 \N 8165 +62881 2025-10-02 17:51:33.996423+00 2025-10-02 17:51:33.996431+00 f t 46000.00 1 46000.00 8731 82 \N 8166 +62882 2025-10-02 18:06:47.647784+00 2025-10-02 18:06:47.647793+00 f t 46000.00 1 46000.00 8702 82 \N 6967 +62883 2025-10-02 18:06:47.653234+00 2025-10-02 18:06:47.653246+00 f t 24000.00 1 24000.00 8702 88 \N 6967 +62884 2025-10-02 18:06:47.657991+00 2025-10-02 18:06:47.658002+00 f t 24000.00 1 24000.00 8702 163 \N 6967 +64345 2025-10-05 15:45:01.699644+00 2025-10-05 15:45:01.699659+00 f t 32500.00 1 32500.00 8917 112 \N 8321 +64346 2025-10-05 15:45:01.714274+00 2025-10-05 15:45:01.714286+00 f t 7700.00 1 7700.00 8917 93 \N 8321 +64347 2025-10-05 15:45:01.725426+00 2025-10-05 15:45:01.725439+00 f t 13200.00 1 13200.00 8917 146 \N 8321 +64348 2025-10-05 15:45:01.733951+00 2025-10-05 15:45:01.733965+00 f t 46000.00 1 46000.00 8917 82 \N 8321 +64414 2025-10-05 17:44:53.015754+00 2025-10-05 17:44:53.015764+00 f t 46000.00 1 46000.00 8922 82 \N 8324 +64435 2025-10-05 19:18:21.825939+00 2025-10-05 19:18:21.825948+00 f t 30000.00 1 30000.00 8926 83 \N 1370 +62934 2025-10-02 18:45:27.170424+00 2025-10-02 18:45:27.170432+00 f t 46000.00 1 46000.00 8734 82 \N 8169 +62935 2025-10-02 18:45:27.174874+00 2025-10-02 18:45:27.174882+00 f t 8000.00 1 8000.00 8734 85 \N 8169 +62936 2025-10-02 18:49:13.881784+00 2025-10-02 18:49:13.881792+00 f t 46000.00 1 46000.00 8733 82 \N 8168 +62939 2025-10-02 18:50:45.748387+00 2025-10-02 18:50:45.748396+00 f t 46000.00 1 46000.00 8728 82 \N 869 +62940 2025-10-02 18:50:45.754126+00 2025-10-02 18:50:45.754134+00 f t 24000.00 1 24000.00 8728 163 \N 869 +62941 2025-10-02 18:50:45.758986+00 2025-10-02 18:50:45.758997+00 f t 8000.00 1 8000.00 8728 85 \N 869 +64495 2025-10-05 19:46:01.586081+00 2025-10-05 19:46:01.58609+00 f t 55000.00 1 55000.00 8930 84 \N 8328 +62970 2025-10-02 18:53:11.06109+00 2025-10-02 18:53:11.061099+00 f t 7700.00 1 7700.00 8732 93 \N 8167 +62971 2025-10-02 18:53:11.066956+00 2025-10-02 18:53:11.066965+00 f t 13200.00 1 13200.00 8732 146 \N 8167 +62972 2025-10-02 18:53:11.071032+00 2025-10-02 18:53:11.071039+00 f t 23000.00 1 23000.00 8732 172 \N 8167 +62973 2025-10-02 18:53:11.075242+00 2025-10-02 18:53:11.07525+00 f t 46000.00 1 46000.00 8732 82 \N 8167 +62976 2025-10-02 18:54:08.385053+00 2025-10-02 18:54:08.385065+00 f t 46000.00 1 46000.00 8735 82 \N 8170 +64649 2025-10-05 20:33:35.74168+00 2025-10-05 20:33:35.741688+00 f t 46000.00 1 46000.00 8933 82 \N 8333 +64650 2025-10-05 20:33:35.745944+00 2025-10-05 20:33:35.745951+00 f t 8000.00 1 8000.00 8933 85 \N 8333 +64670 2025-10-05 21:46:44.591654+00 2025-10-05 21:46:44.591663+00 f t 55000.00 1 55000.00 8936 84 \N 8336 +64733 2025-10-06 00:58:42.48872+00 2025-10-06 00:58:42.488728+00 f t 31500.00 1 31500.00 8944 111 \N 8343 +64734 2025-10-06 00:58:42.493241+00 2025-10-06 00:58:42.493248+00 f t 46000.00 1 46000.00 8944 82 \N 8343 +64735 2025-10-06 00:58:42.496815+00 2025-10-06 00:58:42.496822+00 f t 7700.00 1 7700.00 8944 93 \N 8343 +64736 2025-10-06 00:58:42.500844+00 2025-10-06 00:58:42.500852+00 f t 13200.00 1 13200.00 8944 146 \N 8343 +64777 2025-10-06 01:31:38.256365+00 2025-10-06 01:31:38.256373+00 f t 46000.00 1 46000.00 8947 82 \N 8345 +64781 2025-10-06 02:36:03.131154+00 2025-10-06 02:36:03.131164+00 f t 46000.00 1 46000.00 8948 82 \N 8346 +63065 2025-10-02 19:35:11.79695+00 2025-10-02 19:35:11.79696+00 f t 30000.00 1 30000.00 8738 83 \N 8172 +63764 2025-10-03 20:39:33.974295+00 2025-10-03 20:39:33.974305+00 f t 55000.00 1 55000.00 8824 84 \N 8243 +63068 2025-10-02 19:45:59.986766+00 2025-10-02 19:45:59.986774+00 f t 66000.00 1 66000.00 8739 105 \N 8031 +63071 2025-10-02 20:10:43.508968+00 2025-10-02 20:10:43.508976+00 f t 46000.00 1 46000.00 8740 82 \N 8173 +63072 2025-10-02 20:10:43.513386+00 2025-10-02 20:10:43.513393+00 f t 8000.00 1 8000.00 8740 85 \N 8173 +63073 2025-10-02 20:10:43.517196+00 2025-10-02 20:10:43.517204+00 f t 24000.00 1 24000.00 8740 163 \N 8173 +63786 2025-10-03 21:48:30.42683+00 2025-10-03 21:48:30.426838+00 f t 75000.00 1 75000.00 8830 108 \N 928 +63079 2025-10-02 20:31:33.801688+00 2025-10-02 20:31:33.801697+00 f t 46000.00 1 46000.00 8741 82 \N 8175 +63080 2025-10-02 20:38:03.415884+00 2025-10-02 20:38:03.415897+00 f t 46000.00 1 46000.00 8744 82 \N 8176 +63084 2025-10-02 21:11:19.389449+00 2025-10-02 21:11:19.389458+00 f t 46000.00 1 46000.00 8746 82 \N 8177 +63085 2025-10-02 21:11:19.394121+00 2025-10-02 21:11:19.394129+00 f t 24000.00 1 24000.00 8746 86 \N 8177 +63086 2025-10-02 21:52:54.455451+00 2025-10-02 21:52:54.455461+00 f t 24000.00 1 24000.00 8747 86 \N 6717 +63087 2025-10-02 21:52:54.462335+00 2025-10-02 21:52:54.462344+00 f t 46000.00 1 46000.00 8747 82 \N 6717 +63943 2025-10-04 15:47:43.419999+00 2025-10-04 15:47:43.420007+00 f t 46000.00 1 46000.00 8855 82 \N 8270 +63944 2025-10-04 15:47:43.424783+00 2025-10-04 15:47:43.424793+00 f t 24000.00 1 24000.00 8855 88 \N 8270 +63945 2025-10-04 15:47:43.42863+00 2025-10-04 15:47:43.428637+00 f t 24000.00 1 24000.00 8855 163 \N 8270 +63116 2025-10-02 22:08:12.942696+00 2025-10-02 22:08:12.942705+00 f t 46000.00 1 46000.00 8748 82 \N 8178 +63117 2025-10-02 22:08:12.947706+00 2025-10-02 22:08:12.947715+00 f t 8000.00 1 8000.00 8748 85 \N 8178 +63118 2025-10-02 22:08:12.951625+00 2025-10-02 22:08:12.951633+00 f t 24000.00 1 24000.00 8748 86 \N 8178 +63993 2025-10-04 17:22:59.216263+00 2025-10-04 17:22:59.216271+00 f t 11000.00 1 11000.00 8826 116 \N 8245 +63994 2025-10-04 17:22:59.222446+00 2025-10-04 17:22:59.222454+00 f t 13200.00 1 13200.00 8826 146 \N 8245 +63995 2025-10-04 17:22:59.226767+00 2025-10-04 17:22:59.226774+00 f t 7700.00 1 7700.00 8826 93 \N 8245 +63128 2025-10-02 22:11:10.123355+00 2025-10-02 22:11:10.123363+00 f t 46000.00 1 46000.00 8749 82 \N 8179 +63129 2025-10-02 22:11:10.127727+00 2025-10-02 22:11:10.127735+00 f t 8000.00 1 8000.00 8749 85 \N 8179 +63130 2025-10-02 22:11:10.131358+00 2025-10-02 22:11:10.131365+00 f t 24000.00 1 24000.00 8749 86 \N 8179 +64016 2025-10-04 18:46:47.864629+00 2025-10-04 18:46:47.864637+00 f t 75000.00 1 75000.00 8865 108 \N 8278 +64040 2025-10-04 22:33:24.463739+00 2025-10-04 22:33:24.463751+00 f t 46000.00 1 46000.00 8875 82 \N 8283 +64065 2025-10-04 23:33:09.143023+00 2025-10-04 23:33:09.143032+00 f t 68000.00 1 68000.00 8883 106 \N 8289 +64085 2025-10-05 00:07:01.956023+00 2025-10-05 00:07:01.956033+00 f t 55000.00 1 55000.00 8885 84 \N 8291 +63158 2025-10-02 22:40:59.168901+00 2025-10-02 22:40:59.168913+00 f t 31500.00 1 31500.00 8750 111 \N 8180 +63159 2025-10-02 22:40:59.174659+00 2025-10-02 22:40:59.174667+00 f t 7700.00 1 7700.00 8750 93 \N 8180 +63160 2025-10-02 22:40:59.179176+00 2025-10-02 22:40:59.179184+00 f t 13200.00 1 13200.00 8750 146 \N 8180 +63161 2025-10-02 22:40:59.183634+00 2025-10-02 22:40:59.183642+00 f t 46000.00 1 46000.00 8750 82 \N 8180 +64142 2025-10-05 05:14:19.72487+00 2025-10-05 05:14:19.724881+00 f t 55000.00 1 55000.00 8896 84 \N 8302 +64148 2025-10-05 06:32:33.437393+00 2025-10-05 06:32:33.437401+00 f t 46000.00 1 46000.00 8899 82 \N 8305 +64149 2025-10-05 06:32:33.442896+00 2025-10-05 06:32:33.442902+00 f t 8000.00 1 8000.00 8899 85 \N 8305 +63203 2025-10-02 23:08:36.688936+00 2025-10-02 23:08:36.688945+00 f t 55000.00 1 55000.00 8753 84 \N 8183 +63205 2025-10-03 00:22:05.942784+00 2025-10-03 00:22:05.942798+00 f t 46000.00 1 46000.00 8756 82 \N 8185 +63209 2025-10-03 00:38:29.264501+00 2025-10-03 00:38:29.26451+00 f t 55000.00 1 55000.00 8758 84 \N 8187 +63213 2025-10-03 00:55:55.374516+00 2025-10-03 00:55:55.374526+00 f t 55000.00 1 55000.00 8759 84 \N 8188 +63215 2025-10-03 01:38:43.496981+00 2025-10-03 01:38:43.496991+00 f t 55000.00 1 55000.00 8761 84 \N 8189 +63217 2025-10-03 01:45:57.051956+00 2025-10-03 01:45:57.051966+00 f t 46000.00 1 46000.00 8762 82 \N 8190 +64404 2025-10-05 17:20:25.067374+00 2025-10-05 17:20:25.067384+00 f t 46000.00 1 46000.00 8920 82 \N 8322 +63224 2025-10-03 01:49:19.719423+00 2025-10-03 01:49:19.719433+00 f t 46000.00 1 46000.00 8763 82 \N 8191 +64405 2025-10-05 17:20:25.072378+00 2025-10-05 17:20:25.07239+00 f t 81500.00 1 81500.00 8920 143 \N 8322 +63232 2025-10-03 01:52:07.265546+00 2025-10-03 01:52:07.265559+00 f t 55000.00 1 55000.00 8767 84 \N 8193 +63234 2025-10-03 02:35:04.073229+00 2025-10-03 02:35:04.073239+00 f t 46000.00 1 46000.00 8769 82 \N 8194 +63245 2025-10-03 02:45:46.175877+00 2025-10-03 02:45:46.175886+00 f t 46000.00 1 46000.00 8770 82 \N 8195 +63246 2025-10-03 02:45:46.181076+00 2025-10-03 02:45:46.181084+00 f t 7700.00 1 7700.00 8770 91 \N 8195 +64496 2025-10-05 19:53:21.195315+00 2025-10-05 19:53:21.195324+00 f t 55000.00 1 55000.00 8893 84 \N 8300 +63266 2025-10-03 03:40:23.515448+00 2025-10-03 03:40:23.515456+00 f t 55000.00 1 55000.00 8772 84 \N 8196 +63276 2025-10-03 03:48:27.133309+00 2025-10-03 03:48:27.133318+00 f t 46000.00 1 46000.00 8773 82 \N 8197 +63278 2025-10-03 05:47:12.605998+00 2025-10-03 05:47:12.606012+00 f t 46000.00 1 46000.00 8776 82 \N 8198 +63281 2025-10-03 06:01:38.583223+00 2025-10-03 06:01:38.583232+00 f t 46000.00 1 46000.00 8777 82 \N 8199 +63282 2025-10-03 06:01:38.587681+00 2025-10-03 06:01:38.587689+00 f t 24000.00 1 24000.00 8777 87 \N 8199 +63285 2025-10-03 08:53:21.595446+00 2025-10-03 08:53:21.595455+00 f t 55000.00 1 55000.00 8778 84 \N 8200 +64637 2025-10-05 20:04:07.799332+00 2025-10-05 20:04:07.79934+00 f t 107000.00 1 107000.00 8931 103 \N 8331 +64772 2025-10-06 01:00:53.417853+00 2025-10-06 01:00:53.417863+00 f t 31500.00 1 31500.00 8945 111 \N 8344 +64773 2025-10-06 01:00:53.423318+00 2025-10-06 01:00:53.423325+00 f t 46000.00 1 46000.00 8945 82 \N 8344 +64774 2025-10-06 01:00:53.42758+00 2025-10-06 01:00:53.427588+00 f t 7700.00 1 7700.00 8945 93 \N 8344 +64775 2025-10-06 01:00:53.431599+00 2025-10-06 01:00:53.431606+00 f t 13200.00 1 13200.00 8945 146 \N 8344 +63332 2025-10-03 10:14:21.219911+00 2025-10-03 10:14:21.21992+00 f t 46000.00 1 46000.00 8779 82 \N 8201 +63333 2025-10-03 10:14:21.225142+00 2025-10-03 10:14:21.22515+00 f t 24000.00 1 24000.00 8779 86 \N 8201 +63334 2025-10-03 10:14:21.22981+00 2025-10-03 10:14:21.229818+00 f t 46000.00 1 46000.00 8779 82 \N 8202 +63335 2025-10-03 10:14:21.235049+00 2025-10-03 10:14:21.235057+00 f t 24000.00 1 24000.00 8779 86 \N 8202 +63336 2025-10-03 10:14:21.238976+00 2025-10-03 10:14:21.238983+00 f t 46000.00 1 46000.00 8779 82 \N 8203 +63337 2025-10-03 10:14:21.243239+00 2025-10-03 10:14:21.243247+00 f t 8000.00 1 8000.00 8779 85 \N 8203 +63724 2025-10-03 20:24:55.721639+00 2025-10-03 20:24:55.721647+00 f t 46000.00 1 46000.00 8822 82 \N 8241 +65649 2025-10-07 01:40:22.051317+00 2025-10-07 01:40:22.051328+00 f t 46000.00 1 46000.00 9046 82 \N 8438 +65650 2025-10-07 01:40:22.057055+00 2025-10-07 01:40:22.057066+00 f t 8000.00 1 8000.00 9046 85 \N 8438 +75972 2025-10-29 15:30:15.682776+00 2025-10-29 15:30:15.682787+00 f t 0.00 1 0.00 10858 97 \N 9791 +65735 2025-10-07 11:36:47.541651+00 2025-10-07 11:36:47.54166+00 f t 46000.00 1 46000.00 9064 82 \N 8459 +65736 2025-10-07 11:36:47.547166+00 2025-10-07 11:36:47.547173+00 f t 24000.00 1 24000.00 9064 86 \N 8459 +63787 2025-10-03 21:51:09.48062+00 2025-10-03 21:51:09.48063+00 f t 23000.00 1 23000.00 8829 172 \N 8249 +63788 2025-10-03 21:51:09.489606+00 2025-10-03 21:51:09.489617+00 f t 55000.00 1 55000.00 8829 84 \N 8248 +63803 2025-10-03 23:19:21.854022+00 2025-10-03 23:19:21.854036+00 f t 55000.00 1 55000.00 8832 84 \N 8251 +63813 2025-10-04 00:42:03.960859+00 2025-10-04 00:42:03.960867+00 f t 46000.00 1 46000.00 8837 82 \N 8255 +63833 2025-10-04 00:59:13.889507+00 2025-10-04 00:59:13.889517+00 f t 46000.00 1 46000.00 8839 82 \N 8256 +63846 2025-10-04 01:52:05.364201+00 2025-10-04 01:52:05.364213+00 f t 46000.00 1 46000.00 8842 82 \N 8258 +63847 2025-10-04 01:52:05.370557+00 2025-10-04 01:52:05.370567+00 f t 8000.00 1 8000.00 8842 85 \N 8258 +63875 2025-10-04 13:53:48.649862+00 2025-10-04 13:53:48.649872+00 f t 46000.00 1 46000.00 8846 82 \N 8262 +63876 2025-10-04 13:53:48.660775+00 2025-10-04 13:53:48.660783+00 f t 75000.00 1 75000.00 8846 142 \N 8262 +63897 2025-10-04 15:09:58.502429+00 2025-10-04 15:09:58.502437+00 f t 46000.00 1 46000.00 8851 82 \N 8267 +63898 2025-10-04 15:09:58.507895+00 2025-10-04 15:09:58.507903+00 f t 24000.00 1 24000.00 8851 163 \N 8267 +63908 2025-10-04 15:37:25.948469+00 2025-10-04 15:37:25.948477+00 f t 55000.00 1 55000.00 8853 84 \N 8269 +63397 2025-10-03 11:49:03.954852+00 2025-10-03 11:49:03.954861+00 f t 46000.00 1 46000.00 8781 82 \N 8204 +63398 2025-10-03 11:49:03.959257+00 2025-10-03 11:49:03.959264+00 f t 8000.00 1 8000.00 8781 85 \N 8204 +63399 2025-10-03 11:49:03.96323+00 2025-10-03 11:49:03.963237+00 f t 24000.00 1 24000.00 8781 86 \N 8204 +63401 2025-10-03 12:29:25.383821+00 2025-10-03 12:29:25.383829+00 f t 75000.00 1 75000.00 8784 108 \N 8206 +64007 2025-10-04 17:47:21.574758+00 2025-10-04 17:47:21.574766+00 f t 46000.00 1 46000.00 8860 82 \N 8274 +64017 2025-10-04 18:58:46.180634+00 2025-10-04 18:58:46.180645+00 f t 46000.00 1 46000.00 8866 82 \N 8279 +64041 2025-10-04 22:44:35.494997+00 2025-10-04 22:44:35.495008+00 f t 68000.00 1 68000.00 8877 106 \N 8265 +63414 2025-10-03 12:58:33.75458+00 2025-10-03 12:58:33.754589+00 f t 80000.00 1 80000.00 8789 173 \N 8211 +64050 2025-10-04 22:50:25.487197+00 2025-10-04 22:50:25.487206+00 f t 13200.00 1 13200.00 8878 146 \N 8265 +64056 2025-10-04 23:12:29.198352+00 2025-10-04 23:12:29.198364+00 f t 30000.00 1 30000.00 8882 83 \N 8288 +63417 2025-10-03 13:06:37.033552+00 2025-10-03 13:06:37.033561+00 f t 46000.00 1 46000.00 8790 82 \N 8212 +63418 2025-10-03 13:06:37.038642+00 2025-10-03 13:06:37.038651+00 f t 8000.00 1 8000.00 8790 85 \N 8212 +63419 2025-10-03 13:11:29.833219+00 2025-10-03 13:11:29.833227+00 f t 55000.00 1 55000.00 8785 84 \N 8207 +63423 2025-10-03 13:37:39.981451+00 2025-10-03 13:37:39.981459+00 f t 30000.00 1 30000.00 8795 83 \N 8215 +63429 2025-10-03 13:40:29.967353+00 2025-10-03 13:40:29.967362+00 f t 107000.00 1 107000.00 8796 103 \N 8216 +63431 2025-10-03 13:52:24.099478+00 2025-10-03 13:52:24.099488+00 f t 55000.00 1 55000.00 8797 84 \N 3550 +63432 2025-10-03 14:07:49.627289+00 2025-10-03 14:07:49.627299+00 f t 75000.00 1 75000.00 8745 108 \N 7557 +63434 2025-10-03 14:16:45.312431+00 2025-10-03 14:16:45.312441+00 f t 82000.00 1 82000.00 8799 97 \N 8218 +63435 2025-10-03 14:33:11.360348+00 2025-10-03 14:33:11.36036+00 f t 13200.00 1 13200.00 8752 146 \N 8181 +63437 2025-10-03 14:46:05.515574+00 2025-10-03 14:46:05.515586+00 f t 80000.00 1 80000.00 8802 173 \N 8220 +63444 2025-10-03 15:01:23.958397+00 2025-10-03 15:01:23.958406+00 f t 46000.00 1 46000.00 8803 82 \N 8221 +63445 2025-10-03 15:01:23.963166+00 2025-10-03 15:01:23.963174+00 f t 24000.00 1 24000.00 8803 86 \N 8221 +64160 2025-10-05 09:38:42.35748+00 2025-10-05 09:38:42.357488+00 f t 55000.00 1 55000.00 8903 84 \N 8309 +64175 2025-10-05 12:52:31.635444+00 2025-10-05 12:52:31.635454+00 f t 80000.00 1 80000.00 8907 173 \N 8312 +64242 2025-10-05 14:51:39.738956+00 2025-10-05 14:51:39.738966+00 f t 46000.00 1 46000.00 8913 82 \N 8316 +64243 2025-10-05 14:51:39.745244+00 2025-10-05 14:51:39.745252+00 f t 87500.00 1 87500.00 8913 144 \N 8316 +64274 2025-10-05 15:06:24.49617+00 2025-10-05 15:06:24.496178+00 f t 46000.00 1 46000.00 8915 82 \N 8319 +64275 2025-10-05 15:06:24.501633+00 2025-10-05 15:06:24.501641+00 f t 7700.00 1 7700.00 8915 93 \N 8319 +64276 2025-10-05 15:06:24.506253+00 2025-10-05 15:06:24.50626+00 f t 13200.00 1 13200.00 8915 146 \N 8319 +63478 2025-10-03 15:26:12.395288+00 2025-10-03 15:26:12.395297+00 f t 46000.00 1 46000.00 8804 82 \N 8222 +64489 2025-10-05 19:41:16.763465+00 2025-10-05 19:41:16.763474+00 f t 46000.00 1 46000.00 8929 82 \N 8320 +64490 2025-10-05 19:41:16.76873+00 2025-10-05 19:41:16.768738+00 f t 7700.00 1 7700.00 8929 93 \N 8320 +64491 2025-10-05 19:41:16.77302+00 2025-10-05 19:41:16.773029+00 f t 13200.00 1 13200.00 8929 146 \N 8320 +64492 2025-10-05 19:41:16.777241+00 2025-10-05 19:41:16.777248+00 f t 32500.00 1 32500.00 8929 112 \N 8320 +63526 2025-10-03 15:47:32.832558+00 2025-10-03 15:47:32.83257+00 f t 46000.00 1 46000.00 8806 82 \N 8204 +63527 2025-10-03 15:47:32.838264+00 2025-10-03 15:47:32.838272+00 f t 8000.00 1 8000.00 8806 85 \N 8204 +63528 2025-10-03 15:47:32.842381+00 2025-10-03 15:47:32.842389+00 f t 24000.00 1 24000.00 8806 86 \N 8204 +63529 2025-10-03 15:58:42.01644+00 2025-10-03 15:58:42.016447+00 f t 55000.00 1 55000.00 8807 84 \N 8224 +63557 2025-10-03 16:27:24.468206+00 2025-10-03 16:27:24.468214+00 f t 55000.00 1 55000.00 8809 84 \N 8227 +63558 2025-10-03 17:24:26.547414+00 2025-10-03 17:24:26.547427+00 f t 68000.00 1 68000.00 8800 106 \N 8219 +63578 2025-10-03 17:45:49.247004+00 2025-10-03 17:45:49.247014+00 f t 55000.00 1 55000.00 8811 84 \N 8232 +63581 2025-10-03 17:56:09.536541+00 2025-10-03 17:56:09.536551+00 f t 46000.00 1 46000.00 8812 82 \N 8233 +63582 2025-10-03 17:56:09.542772+00 2025-10-03 17:56:09.542781+00 f t 1000.00 1 1000.00 8812 170 \N 8233 +63591 2025-10-03 18:16:17.874089+00 2025-10-03 18:16:17.874099+00 f t 80000.00 1 80000.00 8808 173 \N 8226 +63596 2025-10-03 18:34:50.458469+00 2025-10-03 18:34:50.458478+00 f t 46000.00 1 46000.00 8816 82 \N 8236 +63598 2025-10-03 18:55:22.558373+00 2025-10-03 18:55:22.558383+00 f t 55000.00 1 55000.00 8817 84 \N 8237 +63599 2025-10-03 18:59:30.39265+00 2025-10-03 18:59:30.392661+00 f t 107000.00 1 107000.00 8818 103 \N 7067 +63600 2025-10-03 19:24:52.671895+00 2025-10-03 19:24:52.671903+00 f t 13200.00 1 13200.00 8805 146 \N 7319 +63611 2025-10-03 19:30:44.648041+00 2025-10-03 19:30:44.64805+00 f t 46000.00 1 46000.00 8820 82 \N 8239 +63612 2025-10-03 19:30:44.653517+00 2025-10-03 19:30:44.653525+00 f t 8000.00 1 8000.00 8820 85 \N 8239 +67776 2025-10-11 22:37:41.736497+00 2025-10-11 22:37:41.736506+00 f t 55000.00 1 55000.00 9408 84 \N 8724 +72098 2025-10-19 21:12:26.581976+00 2025-10-19 21:12:26.581985+00 f t 55000.00 1 55000.00 10043 84 \N 9202 +67817 2025-10-12 03:53:23.424412+00 2025-10-12 03:53:23.424425+00 f t 55000.00 1 55000.00 9419 84 \N 8734 +65715 2025-10-07 10:36:27.494127+00 2025-10-07 10:36:27.494139+00 f t 72500.00 1 72500.00 9062 104 \N 8456 +63776 2025-10-03 20:49:45.53719+00 2025-10-03 20:49:45.537199+00 f t 23000.00 1 23000.00 8825 172 \N 8244 +63782 2025-10-03 21:17:14.574651+00 2025-10-03 21:17:14.574658+00 f t 46000.00 1 46000.00 8828 82 \N 8247 +63783 2025-10-03 21:17:14.579591+00 2025-10-03 21:17:14.579599+00 f t 24000.00 1 24000.00 8828 86 \N 8247 +63789 2025-10-03 22:29:51.524911+00 2025-10-03 22:29:51.524922+00 f t 78000.00 1 78000.00 8768 167 \N 1370 +63809 2025-10-03 23:57:52.610693+00 2025-10-03 23:57:52.610706+00 f t 55000.00 1 55000.00 8833 84 \N 8252 +63853 2025-10-04 08:47:50.232158+00 2025-10-04 08:47:50.232166+00 f t 46000.00 1 46000.00 8844 82 \N 8260 +63968 2025-10-04 16:05:19.452226+00 2025-10-04 16:05:19.452234+00 f t 46000.00 1 46000.00 8857 82 \N 8131 +63969 2025-10-04 16:05:19.457139+00 2025-10-04 16:05:19.457147+00 f t 46000.00 1 46000.00 8857 82 \N 8130 +63970 2025-10-04 16:05:19.461046+00 2025-10-04 16:05:19.461053+00 f t 8000.00 1 8000.00 8857 85 \N 8130 +63971 2025-10-04 16:05:19.465013+00 2025-10-04 16:05:19.46502+00 f t 24000.00 1 24000.00 8857 163 \N 8131 +63972 2025-10-04 16:05:19.469058+00 2025-10-04 16:05:19.469064+00 f t 24000.00 1 24000.00 8857 163 \N 8130 +63973 2025-10-04 16:05:19.472992+00 2025-10-04 16:05:19.472999+00 f t 8000.00 1 8000.00 8857 85 \N 8131 +63986 2025-10-04 16:59:52.735236+00 2025-10-04 16:59:52.735245+00 f t 55000.00 1 55000.00 8859 84 \N 8272 +65930 2025-10-07 12:47:27.968819+00 2025-10-07 12:47:27.968828+00 f t 46000.00 1 46000.00 9068 82 \N 8463 +63987 2025-10-04 16:59:52.741296+00 2025-10-04 16:59:52.741307+00 f t 55000.00 1 55000.00 8859 84 \N 8273 +63988 2025-10-04 16:59:52.745053+00 2025-10-04 16:59:52.74506+00 f t 30000.00 1 30000.00 8859 83 \N 8273 +63997 2025-10-04 17:45:04.897706+00 2025-10-04 17:45:04.897717+00 f t 46000.00 1 46000.00 8861 82 \N 8275 +65931 2025-10-07 12:47:27.973878+00 2025-10-07 12:47:27.973887+00 f t 8000.00 1 8000.00 9068 85 \N 8463 +65932 2025-10-07 12:47:27.977802+00 2025-10-07 12:47:27.977809+00 f t 24000.00 1 24000.00 9068 163 \N 8463 +65933 2025-10-07 12:47:27.981641+00 2025-10-07 12:47:27.981649+00 f t 46000.00 1 46000.00 9068 82 \N 8464 +65934 2025-10-07 12:47:27.985508+00 2025-10-07 12:47:27.985516+00 f t 8000.00 1 8000.00 9068 85 \N 8464 +65935 2025-10-07 12:47:27.989199+00 2025-10-07 12:47:27.989206+00 f t 24000.00 1 24000.00 9068 163 \N 8464 +65936 2025-10-07 12:47:27.992945+00 2025-10-07 12:47:27.992952+00 f t 46000.00 1 46000.00 9068 82 \N 8465 +65937 2025-10-07 12:47:27.99674+00 2025-10-07 12:47:27.996753+00 f t 8000.00 1 8000.00 9068 85 \N 8465 +65938 2025-10-07 12:47:28.000517+00 2025-10-07 12:47:28.000524+00 f t 24000.00 1 24000.00 9068 163 \N 8465 +64051 2025-10-04 22:50:43.83319+00 2025-10-04 22:50:43.833199+00 f t 46000.00 1 46000.00 8849 82 \N 8265 +64052 2025-10-04 22:50:43.838728+00 2025-10-04 22:50:43.838737+00 f t 7700.00 1 7700.00 8849 93 \N 8265 +64077 2025-10-04 23:53:20.671868+00 2025-10-04 23:53:20.671876+00 f t 46000.00 1 46000.00 8884 82 \N 8290 +64087 2025-10-05 01:36:30.917447+00 2025-10-05 01:36:30.917456+00 f t 46000.00 1 46000.00 8888 82 \N 8294 +65965 2025-10-07 13:33:59.539905+00 2025-10-07 13:33:59.539913+00 f t 20500.00 1 20500.00 9073 109 \N 8470 +65966 2025-10-07 13:33:59.544851+00 2025-10-07 13:33:59.54486+00 f t 7700.00 1 7700.00 9073 93 \N 8470 +65967 2025-10-07 13:33:59.54898+00 2025-10-07 13:33:59.548988+00 f t 13200.00 1 13200.00 9073 146 \N 8470 +65968 2025-10-07 13:33:59.553065+00 2025-10-07 13:33:59.553072+00 f t 46000.00 1 46000.00 9073 82 \N 8470 +64151 2025-10-05 06:48:42.179108+00 2025-10-05 06:48:42.179116+00 f t 46000.00 1 46000.00 8900 82 \N 8306 +64156 2025-10-05 08:15:29.671338+00 2025-10-05 08:15:29.671349+00 f t 55000.00 1 55000.00 8901 84 \N 8307 +64166 2025-10-05 10:41:06.766269+00 2025-10-05 10:41:06.766279+00 f t 55000.00 1 55000.00 8904 84 \N 8310 +64201 2025-10-05 14:14:11.255533+00 2025-10-05 14:14:11.255546+00 f t 55000.00 1 55000.00 8910 84 \N 8314 +64234 2025-10-05 14:20:58.124797+00 2025-10-05 14:20:58.124807+00 f t 46000.00 1 46000.00 8911 82 \N 8315 +64235 2025-10-05 14:20:58.130494+00 2025-10-05 14:20:58.130504+00 f t 24000.00 1 24000.00 8911 86 \N 8315 +64369 2025-10-05 16:22:59.794388+00 2025-10-05 16:22:59.7944+00 f t 107000.00 1 107000.00 8916 103 \N 8320 +66178 2025-10-07 15:34:40.786073+00 2025-10-07 15:34:40.786085+00 f t 55000.00 1 55000.00 9084 84 \N 8481 +64407 2025-10-05 17:43:14.70062+00 2025-10-05 17:43:14.700636+00 f t 55000.00 1 55000.00 8921 84 \N 8323 +66190 2025-10-07 16:00:56.319896+00 2025-10-07 16:00:56.319904+00 f t 46000.00 1 46000.00 9085 82 \N 8482 +66229 2025-10-07 19:06:34.525135+00 2025-10-07 19:06:34.525146+00 f t 46000.00 1 46000.00 9093 82 \N 8486 +64459 2025-10-05 19:26:30.797236+00 2025-10-05 19:26:30.797244+00 f t 46000.00 1 46000.00 8914 82 \N 8318 +64460 2025-10-05 19:26:30.802025+00 2025-10-05 19:26:30.802033+00 f t 8000.00 1 8000.00 8914 85 \N 8318 +64461 2025-10-05 19:26:30.806454+00 2025-10-05 19:26:30.806462+00 f t 24000.00 1 24000.00 8914 163 \N 8318 +64462 2025-10-05 19:26:30.810609+00 2025-10-05 19:26:30.810616+00 f t 55000.00 1 55000.00 8914 84 \N 8317 +66261 2025-10-07 21:18:50.924538+00 2025-10-07 21:18:50.924547+00 f t 34000.00 1 34000.00 9105 110 \N 8492 +66262 2025-10-07 21:18:50.930136+00 2025-10-07 21:18:50.930148+00 f t 7700.00 1 7700.00 9105 93 \N 8492 +66263 2025-10-07 21:18:50.934831+00 2025-10-07 21:18:50.934838+00 f t 13200.00 1 13200.00 9105 146 \N 8492 +66264 2025-10-07 21:18:50.938993+00 2025-10-07 21:18:50.939001+00 f t 46000.00 1 46000.00 9105 82 \N 8492 +66272 2025-10-07 21:46:46.01327+00 2025-10-07 21:46:46.013281+00 f t 46000.00 1 46000.00 9112 82 \N 169 +66288 2025-10-07 23:34:29.178309+00 2025-10-07 23:34:29.178318+00 f t 55000.00 1 55000.00 9116 84 \N 8497 +66301 2025-10-08 00:27:51.761886+00 2025-10-08 00:27:51.761894+00 f t 46000.00 1 46000.00 9122 82 \N 8502 +66302 2025-10-08 00:27:51.76732+00 2025-10-08 00:27:51.767329+00 f t 24000.00 1 24000.00 9122 163 \N 8502 +66317 2025-10-08 01:05:27.121663+00 2025-10-08 01:05:27.121673+00 f t 46000.00 1 46000.00 9126 82 \N 8505 +66318 2025-10-08 01:05:27.12765+00 2025-10-08 01:05:27.127659+00 f t 24000.00 1 24000.00 9126 88 \N 8505 +66359 2025-10-08 01:47:46.123758+00 2025-10-08 01:47:46.123767+00 f t 46000.00 1 46000.00 9130 82 \N 8508 +64638 2025-10-05 20:20:07.863186+00 2025-10-05 20:20:07.863199+00 f t 46000.00 1 46000.00 8932 82 \N 8332 +64660 2025-10-05 21:19:45.828652+00 2025-10-05 21:19:45.828661+00 f t 46000.00 1 46000.00 8934 82 \N 8334 +64668 2025-10-05 21:40:45.581713+00 2025-10-05 21:40:45.581721+00 f t 55000.00 1 55000.00 8935 84 \N 8335 +64672 2025-10-05 22:01:15.798717+00 2025-10-05 22:01:15.798726+00 f t 55000.00 1 55000.00 8937 84 \N 8337 +64676 2025-10-05 22:34:36.967327+00 2025-10-05 22:34:36.967336+00 f t 30000.00 1 30000.00 8938 83 \N 8339 +64784 2025-10-06 03:22:35.141118+00 2025-10-06 03:22:35.141128+00 f t 30000.00 1 30000.00 8949 83 \N 8347 +65653 2025-10-07 01:55:19.32817+00 2025-10-07 01:55:19.328181+00 f t 46000.00 1 46000.00 9047 82 \N 8439 +65654 2025-10-07 01:55:19.332852+00 2025-10-07 01:55:19.332858+00 f t 87500.00 1 87500.00 9047 144 \N 8439 +64873 2025-10-06 03:37:09.636697+00 2025-10-06 03:37:09.636708+00 f t 46000.00 1 46000.00 8950 82 \N 8348 +64874 2025-10-06 03:37:09.642181+00 2025-10-06 03:37:09.642191+00 f t 13200.00 1 13200.00 8950 146 \N 8348 +64890 2025-10-06 03:39:49.519737+00 2025-10-06 03:39:49.519746+00 f t 107000.00 1 107000.00 8951 103 \N 8349 +64891 2025-10-06 03:39:49.525944+00 2025-10-06 03:39:49.525952+00 f t 46000.00 1 46000.00 8951 82 \N 8349 +64892 2025-10-06 03:39:49.530541+00 2025-10-06 03:39:49.530554+00 f t 87500.00 1 87500.00 8951 144 \N 8349 +64893 2025-10-06 03:39:49.534821+00 2025-10-06 03:39:49.53483+00 f t 75000.00 1 75000.00 8951 108 \N 8349 +64897 2025-10-06 08:44:55.784244+00 2025-10-06 08:44:55.784253+00 f t 55000.00 1 55000.00 8953 84 \N 8351 +64910 2025-10-06 10:23:45.831545+00 2025-10-06 10:23:45.831553+00 f t 55000.00 1 55000.00 8956 84 \N 8353 +64912 2025-10-06 10:56:58.547194+00 2025-10-06 10:56:58.547212+00 f t 46000.00 1 46000.00 8958 82 \N 8354 +65948 2025-10-07 13:26:53.463586+00 2025-10-07 13:26:53.463594+00 f t 55000.00 1 55000.00 9056 84 \N 8446 +66171 2025-10-07 14:59:01.854579+00 2025-10-07 14:59:01.854589+00 f t 46000.00 1 46000.00 9083 82 \N 8480 +66191 2025-10-07 16:38:20.769601+00 2025-10-07 16:38:20.769614+00 f t 75000.00 1 75000.00 9086 108 \N 8483 +64985 2025-10-06 11:27:18.858373+00 2025-10-06 11:27:18.85838+00 f t 55000.00 1 55000.00 8961 84 \N 8357 +66236 2025-10-07 19:13:57.785448+00 2025-10-07 19:13:57.785456+00 f t 80000.00 1 80000.00 9092 173 \N 8485 +64998 2025-10-06 11:32:44.729252+00 2025-10-06 11:32:44.729261+00 f t 46000.00 1 46000.00 8962 82 \N 8358 +65000 2025-10-06 11:42:18.417228+00 2025-10-06 11:42:18.417242+00 f t 72500.00 1 72500.00 8964 104 \N 8360 +66269 2025-10-07 21:40:36.202533+00 2025-10-07 21:40:36.202546+00 f t 46000.00 1 46000.00 9109 82 \N 8494 +66285 2025-10-07 23:18:39.06117+00 2025-10-07 23:18:39.06118+00 f t 107000.00 1 107000.00 9114 103 \N 8496 +65016 2025-10-06 11:45:53.920362+00 2025-10-06 11:45:53.920371+00 f t 46000.00 1 46000.00 8965 82 \N 8361 +65017 2025-10-06 11:45:53.924913+00 2025-10-06 11:45:53.92492+00 f t 46000.00 1 46000.00 8965 82 \N 8362 +65029 2025-10-06 11:52:35.118812+00 2025-10-06 11:52:35.118822+00 f t 34000.00 1 34000.00 8966 110 \N 8363 +65030 2025-10-06 11:52:35.124673+00 2025-10-06 11:52:35.124681+00 f t 7700.00 1 7700.00 8966 93 \N 8363 +65031 2025-10-06 11:52:35.128945+00 2025-10-06 11:52:35.128953+00 f t 13200.00 1 13200.00 8966 146 \N 8363 +65032 2025-10-06 11:52:35.133855+00 2025-10-06 11:52:35.133862+00 f t 46000.00 1 46000.00 8966 82 \N 8363 +65048 2025-10-06 12:13:00.829275+00 2025-10-06 12:13:00.829285+00 f t 55000.00 1 55000.00 8852 84 \N 8268 +65049 2025-10-06 12:13:00.837585+00 2025-10-06 12:13:00.837594+00 f t 7700.00 1 7700.00 8852 91 \N 8268 +65050 2025-10-06 12:13:00.842796+00 2025-10-06 12:13:00.842803+00 f t 46000.00 1 46000.00 8852 82 \N 8268 +65051 2025-10-06 12:17:49.014831+00 2025-10-06 12:17:49.014839+00 f t 55000.00 1 55000.00 8967 84 \N 8364 +65053 2025-10-06 13:23:28.280733+00 2025-10-06 13:23:28.280743+00 f t 46000.00 1 46000.00 8968 82 \N 8365 +65054 2025-10-06 13:30:09.934428+00 2025-10-06 13:30:09.934438+00 f t 55000.00 1 55000.00 8971 84 \N 7414 +65056 2025-10-06 13:35:07.722659+00 2025-10-06 13:35:07.722667+00 f t 46000.00 1 46000.00 8972 82 \N 8367 +65057 2025-10-06 14:01:22.929061+00 2025-10-06 14:01:22.929071+00 f t 13200.00 1 13200.00 8974 146 \N 7660 +65059 2025-10-06 14:17:24.213756+00 2025-10-06 14:17:24.21377+00 f t 30000.00 1 30000.00 8975 83 \N 8368 +65062 2025-10-06 14:34:58.613166+00 2025-10-06 14:34:58.613175+00 f t 46000.00 1 46000.00 8977 82 \N 8370 +65063 2025-10-06 14:34:58.619381+00 2025-10-06 14:34:58.619393+00 f t 24000.00 1 24000.00 8977 86 \N 8370 +66469 2025-10-08 04:06:03.500493+00 2025-10-08 04:06:03.500503+00 f t 32500.00 1 32500.00 9137 112 \N 8514 +66470 2025-10-08 04:06:03.505707+00 2025-10-08 04:06:03.505715+00 f t 46000.00 1 46000.00 9137 82 \N 8514 +66471 2025-10-08 04:06:03.510044+00 2025-10-08 04:06:03.510052+00 f t 7700.00 1 7700.00 9137 93 \N 8514 +66472 2025-10-08 04:06:03.514061+00 2025-10-08 04:06:03.514072+00 f t 13200.00 1 13200.00 9137 146 \N 8514 +66527 2025-10-08 09:28:23.243719+00 2025-10-08 09:28:23.243728+00 f t 46000.00 1 46000.00 9140 82 \N 8518 +66528 2025-10-08 09:28:23.24852+00 2025-10-08 09:28:23.248528+00 f t 1000.00 1 1000.00 9140 170 \N 8518 +66529 2025-10-08 09:28:23.252296+00 2025-10-08 09:28:23.252303+00 f t 87500.00 1 87500.00 9140 144 \N 8518 +66545 2025-10-08 11:43:18.513233+00 2025-10-08 11:43:18.513241+00 f t 30000.00 1 30000.00 9142 83 \N 8520 +66556 2025-10-08 13:37:44.04923+00 2025-10-08 13:37:44.049238+00 f t 55000.00 1 55000.00 9149 84 \N 8523 +66560 2025-10-08 14:11:20.802209+00 2025-10-08 14:11:20.802219+00 f t 78000.00 1 78000.00 9120 167 \N 8499 +65110 2025-10-06 14:35:55.940943+00 2025-10-06 14:35:55.940954+00 f t 46000.00 1 46000.00 8978 82 \N 8371 +65111 2025-10-06 14:35:55.94634+00 2025-10-06 14:35:55.946348+00 f t 24000.00 1 24000.00 8978 163 \N 8371 +65113 2025-10-06 14:37:38.971357+00 2025-10-06 14:37:38.971372+00 f t 46000.00 1 46000.00 8979 82 \N 8372 +66575 2025-10-08 15:13:09.64886+00 2025-10-08 15:13:09.648874+00 f t 46000.00 1 46000.00 9156 82 \N 7319 +65115 2025-10-06 14:38:21.587004+00 2025-10-06 14:38:21.587018+00 f t 30000.00 1 30000.00 8980 83 \N 8373 +66576 2025-10-08 15:13:09.655735+00 2025-10-08 15:13:09.655744+00 f t 8000.00 1 8000.00 9156 85 \N 7319 +66577 2025-10-08 15:13:09.660993+00 2025-10-08 15:13:09.661005+00 f t 24000.00 1 24000.00 9156 86 \N 7319 +66583 2025-10-08 15:33:58.104314+00 2025-10-08 15:33:58.104322+00 f t 30000.00 1 30000.00 9160 83 \N 8265 +65128 2025-10-06 14:40:06.191622+00 2025-10-06 14:40:06.19163+00 f t 46000.00 1 46000.00 8981 82 \N 8374 +65129 2025-10-06 14:40:06.197437+00 2025-10-06 14:40:06.197449+00 f t 24000.00 1 24000.00 8981 163 \N 8374 +65130 2025-10-06 14:45:25.897713+00 2025-10-06 14:45:25.897721+00 f t 82000.00 1 82000.00 8983 97 \N 8375 +65134 2025-10-06 14:56:26.142748+00 2025-10-06 14:56:26.142756+00 f t 78000.00 1 78000.00 8984 167 \N 8377 +65140 2025-10-06 14:58:19.15336+00 2025-10-06 14:58:19.153371+00 f t 32500.00 1 32500.00 8985 112 \N 8378 +65141 2025-10-06 14:58:19.160011+00 2025-10-06 14:58:19.160025+00 f t 7700.00 1 7700.00 8985 93 \N 8378 +65142 2025-10-06 14:58:19.164862+00 2025-10-06 14:58:19.16487+00 f t 13200.00 1 13200.00 8985 146 \N 8378 +65143 2025-10-06 14:58:19.169583+00 2025-10-06 14:58:19.169593+00 f t 46000.00 1 46000.00 8985 82 \N 8378 +65144 2025-10-06 15:27:29.872983+00 2025-10-06 15:27:29.872995+00 f t 68000.00 1 68000.00 8986 106 \N 8379 +65145 2025-10-06 15:30:12.53137+00 2025-10-06 15:30:12.531377+00 f t 30000.00 1 30000.00 8987 83 \N 6126 +65146 2025-10-06 15:57:39.417867+00 2025-10-06 15:57:39.417874+00 f t 30000.00 1 30000.00 8991 83 \N 8383 +65150 2025-10-06 16:17:28.51412+00 2025-10-06 16:17:28.514128+00 f t 46000.00 1 46000.00 8994 82 \N 8385 +76364 2025-10-30 04:13:01.052197+00 2025-10-30 04:13:01.052207+00 f t 0.00 1 0.00 10950 145 \N 9865 +65767 2025-10-07 12:40:03.93007+00 2025-10-07 12:40:03.930086+00 f t 55000.00 1 55000.00 9067 84 \N 8462 +65169 2025-10-06 16:20:12.73839+00 2025-10-06 16:20:12.738397+00 f t 46000.00 1 46000.00 8995 82 \N 8386 +65170 2025-10-06 16:20:12.748161+00 2025-10-06 16:20:12.74817+00 f t 7700.00 1 7700.00 8995 91 \N 8386 +65177 2025-10-06 16:40:08.09095+00 2025-10-06 16:40:08.090964+00 f t 20500.00 1 20500.00 8996 109 \N 8387 +65178 2025-10-06 16:40:08.096896+00 2025-10-06 16:40:08.096907+00 f t 7700.00 1 7700.00 8996 93 \N 8387 +65179 2025-10-06 16:40:08.10435+00 2025-10-06 16:40:08.10436+00 f t 13200.00 1 13200.00 8996 146 \N 8387 +65180 2025-10-06 16:40:08.108682+00 2025-10-06 16:40:08.108689+00 f t 46000.00 1 46000.00 8996 82 \N 8387 +65181 2025-10-06 16:53:42.148005+00 2025-10-06 16:53:42.148017+00 f t 68000.00 1 68000.00 8997 106 \N 8307 +65184 2025-10-06 16:58:54.551654+00 2025-10-06 16:58:54.551664+00 f t 46000.00 1 46000.00 8998 82 \N 8388 +65185 2025-10-06 16:58:54.559008+00 2025-10-06 16:58:54.559016+00 f t 24000.00 1 24000.00 8998 86 \N 8388 +65186 2025-10-06 17:04:56.043923+00 2025-10-06 17:04:56.043931+00 f t 46000.00 1 46000.00 8999 82 \N 403 +65205 2025-10-06 17:27:23.440079+00 2025-10-06 17:27:23.440088+00 f t 46000.00 1 46000.00 9001 82 \N 8389 +65206 2025-10-06 17:27:23.445398+00 2025-10-06 17:27:23.445407+00 f t 8000.00 1 8000.00 9001 85 \N 8389 +65940 2025-10-07 13:06:57.238559+00 2025-10-07 13:06:57.238568+00 f t 46000.00 1 46000.00 9069 82 \N 8466 +65961 2025-10-07 13:33:54.182197+00 2025-10-07 13:33:54.182209+00 f t 46000.00 1 46000.00 9053 82 \N 7733 +65990 2025-10-07 13:37:26.512777+00 2025-10-07 13:37:26.512785+00 f t 60000.00 1 60000.00 9074 169 \N 8471 +66038 2025-10-07 14:00:39.509738+00 2025-10-07 14:00:39.509748+00 f t 46000.00 1 46000.00 9076 82 \N 8473 +65241 2025-10-06 17:44:16.446532+00 2025-10-06 17:44:16.446541+00 f t 31500.00 1 31500.00 9003 111 \N 8391 +65242 2025-10-06 17:44:16.452222+00 2025-10-06 17:44:16.45223+00 f t 7700.00 1 7700.00 9003 93 \N 8391 +65243 2025-10-06 17:44:16.456485+00 2025-10-06 17:44:16.456494+00 f t 13200.00 1 13200.00 9003 146 \N 8391 +65244 2025-10-06 17:44:16.460406+00 2025-10-06 17:44:16.460414+00 f t 46000.00 1 46000.00 9003 82 \N 8391 +65266 2025-10-06 18:00:20.051959+00 2025-10-06 18:00:20.05199+00 f t 46000.00 1 46000.00 9004 82 \N 8392 +65267 2025-10-06 18:00:20.061006+00 2025-10-06 18:00:20.061017+00 f t 24000.00 1 24000.00 9004 88 \N 8392 +65268 2025-10-06 18:25:53.641795+00 2025-10-06 18:25:53.641807+00 f t 24000.00 1 24000.00 9002 86 \N 8390 +65269 2025-10-06 18:25:53.649444+00 2025-10-06 18:25:53.649455+00 f t 46000.00 1 46000.00 9002 82 \N 8390 +65276 2025-10-06 18:28:14.641834+00 2025-10-06 18:28:14.641847+00 f t 46000.00 1 46000.00 9006 82 \N 8394 +65277 2025-10-06 18:28:14.64895+00 2025-10-06 18:28:14.648963+00 f t 24000.00 1 24000.00 9006 163 \N 8394 +65280 2025-10-06 18:45:31.405929+00 2025-10-06 18:45:31.405938+00 f t 46000.00 1 46000.00 9007 82 \N 8396 +65281 2025-10-06 18:45:31.420913+00 2025-10-06 18:45:31.420922+00 f t 81500.00 1 81500.00 9007 143 \N 8396 +65286 2025-10-06 18:49:41.765247+00 2025-10-06 18:49:41.765258+00 f t 46000.00 1 46000.00 9009 82 \N 8397 +66237 2025-10-07 19:32:11.697412+00 2025-10-07 19:32:11.697423+00 f t 13200.00 1 13200.00 9095 146 \N 8460 +66253 2025-10-07 19:41:16.666279+00 2025-10-07 19:41:16.666288+00 f t 46000.00 1 46000.00 9097 82 \N 8489 +66257 2025-10-07 20:59:29.346049+00 2025-10-07 20:59:29.346059+00 f t 68000.00 1 68000.00 9104 106 \N 8476 +66266 2025-10-07 21:31:09.647174+00 2025-10-07 21:31:09.647185+00 f t 46000.00 1 46000.00 9107 82 \N 8493 +66270 2025-10-07 21:43:26.307211+00 2025-10-07 21:43:26.30722+00 f t 46000.00 1 46000.00 9110 82 \N 169 +66290 2025-10-08 00:04:09.868511+00 2025-10-08 00:04:09.86852+00 f t 46000.00 1 46000.00 9118 82 \N 8498 +66298 2025-10-08 00:12:11.805232+00 2025-10-08 00:12:11.805241+00 f t 55000.00 1 55000.00 9121 84 \N 8500 +66304 2025-10-08 00:30:39.778671+00 2025-10-08 00:30:39.778682+00 f t 30000.00 1 30000.00 9123 83 \N 8503 +66320 2025-10-08 01:06:52.073888+00 2025-10-08 01:06:52.073898+00 f t 46000.00 1 46000.00 9127 82 \N 8506 +66370 2025-10-08 01:52:37.573413+00 2025-10-08 01:52:37.573425+00 f t 46000.00 1 46000.00 9132 82 \N 8510 +66371 2025-10-08 01:52:37.578279+00 2025-10-08 01:52:37.578287+00 f t 8000.00 1 8000.00 9132 85 \N 8510 +66411 2025-10-08 02:13:11.306549+00 2025-10-08 02:13:11.306562+00 f t 34000.00 1 34000.00 9133 110 \N 8511 +66412 2025-10-08 02:13:11.312154+00 2025-10-08 02:13:11.312162+00 f t 46000.00 1 46000.00 9133 82 \N 8511 +66413 2025-10-08 02:13:11.315927+00 2025-10-08 02:13:11.315935+00 f t 7700.00 1 7700.00 9133 93 \N 8511 +65348 2025-10-06 19:12:11.239054+00 2025-10-06 19:12:11.239063+00 f t 55000.00 1 55000.00 9011 84 \N 8403 +65349 2025-10-06 19:12:11.245002+00 2025-10-06 19:12:11.24501+00 f t 46000.00 1 46000.00 9011 82 \N 8403 +65350 2025-10-06 19:12:11.249991+00 2025-10-06 19:12:11.250002+00 f t 8000.00 1 8000.00 9011 85 \N 8403 +66414 2025-10-08 02:13:11.319856+00 2025-10-08 02:13:11.319865+00 f t 13200.00 1 13200.00 9133 146 \N 8511 +65353 2025-10-06 19:26:54.750206+00 2025-10-06 19:26:54.750219+00 f t 46000.00 1 46000.00 9012 82 \N 8399 +65354 2025-10-06 19:26:54.756616+00 2025-10-06 19:26:54.756624+00 f t 8000.00 1 8000.00 9012 85 \N 8399 +65355 2025-10-06 19:26:54.762114+00 2025-10-06 19:26:54.762127+00 f t 24000.00 1 24000.00 9012 163 \N 8399 +65380 2025-10-06 19:28:57.620984+00 2025-10-06 19:28:57.620994+00 f t 46000.00 1 46000.00 9013 82 \N 8404 +65381 2025-10-06 19:28:57.627056+00 2025-10-06 19:28:57.627066+00 f t 24000.00 1 24000.00 9013 86 \N 8404 +65382 2025-10-06 19:28:57.631986+00 2025-10-06 19:28:57.631994+00 f t 23000.00 1 23000.00 9013 172 \N 8404 +65385 2025-10-06 19:52:22.576755+00 2025-10-06 19:52:22.576764+00 f t 46000.00 1 46000.00 9015 82 \N 8407 +65388 2025-10-06 19:59:40.682917+00 2025-10-06 19:59:40.682925+00 f t 46000.00 1 46000.00 9017 82 \N 8408 +65389 2025-10-06 19:59:40.687393+00 2025-10-06 19:59:40.687399+00 f t 8000.00 1 8000.00 9017 85 \N 8408 +65390 2025-10-06 20:08:41.624603+00 2025-10-06 20:08:41.624611+00 f t 46000.00 1 46000.00 9019 82 \N 128 +66557 2025-10-08 14:07:22.236213+00 2025-10-08 14:07:22.236222+00 f t 13200.00 1 13200.00 9150 146 \N 8150 +66561 2025-10-08 14:19:29.807705+00 2025-10-08 14:19:29.807717+00 f t 20500.00 1 20500.00 9151 109 \N 8320 +66562 2025-10-08 14:19:29.815507+00 2025-10-08 14:19:29.815519+00 f t 13200.00 1 13200.00 9151 146 \N 8320 +66563 2025-10-08 14:19:29.82186+00 2025-10-08 14:19:29.821871+00 f t 7700.00 1 7700.00 9151 93 \N 8320 +65421 2025-10-06 20:10:52.932073+00 2025-10-06 20:10:52.932082+00 f t 46000.00 1 46000.00 9020 82 \N 8410 +66591 2025-10-08 16:29:17.948989+00 2025-10-08 16:29:17.949005+00 f t 55000.00 1 55000.00 9124 84 \N 8504 +65423 2025-10-06 20:46:02.212131+00 2025-10-06 20:46:02.212141+00 f t 46000.00 1 46000.00 9024 82 \N 8415 +66593 2025-10-08 17:18:16.661711+00 2025-10-08 17:18:16.66172+00 f t 46000.00 1 46000.00 9165 82 \N 8532 +66595 2025-10-08 17:31:58.714935+00 2025-10-08 17:31:58.714947+00 f t 13200.00 1 13200.00 9168 146 \N 8533 +65656 2025-10-07 02:33:15.435898+00 2025-10-07 02:33:15.435909+00 f t 55000.00 1 55000.00 9049 84 \N 8440 +82647 2025-11-12 20:07:11.284663+00 2025-11-12 20:07:11.284673+00 f t 55000.00 1 55000.00 12173 84 \N 10798 +67848 2025-10-12 11:11:32.793391+00 2025-10-12 11:11:32.793403+00 f t 46000.00 1 46000.00 9427 82 \N 8739 +67849 2025-10-12 11:11:32.799295+00 2025-10-12 11:11:32.799308+00 f t 68000.00 1 68000.00 9427 106 \N 8739 +67850 2025-10-12 11:11:32.804802+00 2025-10-12 11:11:32.804815+00 f t 8000.00 1 8000.00 9427 85 \N 8739 +67855 2025-10-12 12:38:58.352602+00 2025-10-12 12:38:58.352611+00 f t 55000.00 1 55000.00 9432 84 \N 8741 +67865 2025-10-12 13:28:16.882002+00 2025-10-12 13:28:16.882014+00 f t 46000.00 1 46000.00 9434 82 \N 8743 +67870 2025-10-12 13:53:13.402461+00 2025-10-12 13:53:13.40247+00 f t 46000.00 1 46000.00 9436 82 \N 8745 +67901 2025-10-12 15:27:45.555839+00 2025-10-12 15:27:45.555848+00 f t 55000.00 1 55000.00 9440 84 \N 8748 +67943 2025-10-12 17:03:18.670724+00 2025-10-12 17:03:18.670734+00 f t 78000.00 1 78000.00 9449 167 \N 8755 +65494 2025-10-06 21:50:58.289997+00 2025-10-06 21:50:58.290011+00 f t 46000.00 1 46000.00 9029 82 \N 8420 +65495 2025-10-06 21:50:58.296761+00 2025-10-06 21:50:58.296773+00 f t 8000.00 1 8000.00 9029 85 \N 8420 +65945 2025-10-07 13:11:41.072178+00 2025-10-07 13:11:41.072191+00 f t 55000.00 1 55000.00 9070 84 \N 8467 +65950 2025-10-07 13:27:36.543593+00 2025-10-07 13:27:36.543602+00 f t 46000.00 1 46000.00 9071 82 \N 8468 +65508 2025-10-06 21:58:08.820177+00 2025-10-06 21:58:08.820185+00 f t 46000.00 1 46000.00 9030 82 \N 8421 +65509 2025-10-06 21:58:08.824698+00 2025-10-06 21:58:08.824705+00 f t 8000.00 1 8000.00 9030 85 \N 8421 +65518 2025-10-06 22:41:11.080725+00 2025-10-06 22:41:11.080737+00 f t 46000.00 1 46000.00 9034 82 \N 8424 +65519 2025-10-06 23:30:19.965575+00 2025-10-06 23:30:19.965585+00 f t 30000.00 1 30000.00 9035 83 \N 8425 +65520 2025-10-06 23:34:36.783338+00 2025-10-06 23:34:36.783351+00 f t 46000.00 1 46000.00 9037 82 \N 6192 +66011 2025-10-07 13:44:41.161415+00 2025-10-07 13:44:41.161425+00 f t 60000.00 1 60000.00 9075 169 \N 8472 +65526 2025-10-06 23:43:42.722449+00 2025-10-06 23:43:42.722468+00 f t 46000.00 1 46000.00 9040 82 \N 8427 +65527 2025-10-06 23:43:42.729409+00 2025-10-06 23:43:42.729421+00 f t 8000.00 1 8000.00 9040 85 \N 8427 +65528 2025-10-06 23:43:42.734034+00 2025-10-06 23:43:42.734042+00 f t 24000.00 1 24000.00 9040 86 \N 8427 +65529 2025-10-06 23:43:42.738364+00 2025-10-06 23:43:42.738374+00 f t 8000.00 1 8000.00 9040 85 \N 6193 +65530 2025-10-06 23:43:42.742861+00 2025-10-06 23:43:42.742871+00 f t 46000.00 1 46000.00 9040 82 \N 6193 +66039 2025-10-07 14:26:59.288102+00 2025-10-07 14:26:59.288111+00 f t 30000.00 1 30000.00 9081 83 \N 7319 +65539 2025-10-07 00:16:24.219962+00 2025-10-07 00:16:24.219972+00 f t 68000.00 1 68000.00 9041 106 \N 8429 +65550 2025-10-07 00:39:10.653539+00 2025-10-07 00:39:10.653549+00 f t 46000.00 1 46000.00 9042 82 \N 8430 +65551 2025-10-07 00:39:10.658316+00 2025-10-07 00:39:10.658323+00 f t 24000.00 1 24000.00 9042 86 \N 8430 +66216 2025-10-07 17:16:36.517807+00 2025-10-07 17:16:36.517816+00 f t 46000.00 1 46000.00 9082 82 \N 8477 +66217 2025-10-07 17:16:36.523207+00 2025-10-07 17:16:36.523215+00 f t 46000.00 1 46000.00 9082 82 \N 8479 +66218 2025-10-07 17:16:36.527791+00 2025-10-07 17:16:36.527803+00 f t 46000.00 1 46000.00 9082 82 \N 8478 +66219 2025-10-07 17:16:36.5327+00 2025-10-07 17:16:36.532711+00 f t 8000.00 1 8000.00 9082 85 \N 8477 +66220 2025-10-07 17:16:36.536929+00 2025-10-07 17:16:36.536937+00 f t 8000.00 1 8000.00 9082 85 \N 8479 +66221 2025-10-07 17:16:36.540977+00 2025-10-07 17:16:36.540985+00 f t 8000.00 1 8000.00 9082 85 \N 8478 +66222 2025-10-07 17:16:36.545245+00 2025-10-07 17:16:36.545253+00 f t 24000.00 1 24000.00 9082 163 \N 8478 +65588 2025-10-07 00:49:24.134059+00 2025-10-07 00:49:24.13407+00 f t 46000.00 1 46000.00 9043 82 \N 8431 +65589 2025-10-07 00:49:24.139307+00 2025-10-07 00:49:24.139314+00 f t 24000.00 1 24000.00 9043 163 \N 8431 +65590 2025-10-07 00:49:24.143376+00 2025-10-07 00:49:24.143383+00 f t 46000.00 1 46000.00 9043 82 \N 8434 +65591 2025-10-07 00:49:24.146896+00 2025-10-07 00:49:24.146905+00 f t 24000.00 1 24000.00 9043 86 \N 8434 +66223 2025-10-07 17:16:36.54963+00 2025-10-07 17:16:36.549637+00 f t 24000.00 1 24000.00 9082 163 \N 8479 +66224 2025-10-07 17:16:36.554035+00 2025-10-07 17:16:36.554042+00 f t 24000.00 1 24000.00 9082 163 \N 8477 +66244 2025-10-07 19:36:17.835254+00 2025-10-07 19:36:17.835269+00 f t 55000.00 1 55000.00 9096 84 \N 8488 +66245 2025-10-07 19:36:17.843518+00 2025-10-07 19:36:17.843531+00 f t 46000.00 1 46000.00 9096 82 \N 8488 +66246 2025-10-07 19:36:17.850156+00 2025-10-07 19:36:17.850166+00 f t 24000.00 1 24000.00 9096 87 \N 8488 +66254 2025-10-07 20:47:15.165177+00 2025-10-07 20:47:15.165186+00 f t 82000.00 1 82000.00 9101 97 \N 4927 +66267 2025-10-07 21:37:46.049949+00 2025-10-07 21:37:46.049959+00 f t 46000.00 1 46000.00 9108 82 \N 169 +66271 2025-10-07 21:45:14.62422+00 2025-10-07 21:45:14.624233+00 f t 46000.00 1 46000.00 9111 82 \N 169 +66283 2025-10-07 23:15:27.221359+00 2025-10-07 23:15:27.221368+00 f t 46000.00 1 46000.00 9113 82 \N 8495 +66345 2025-10-08 01:38:47.268572+00 2025-10-08 01:38:47.268581+00 f t 46000.00 1 46000.00 9129 82 \N 8507 +66346 2025-10-08 01:38:47.274173+00 2025-10-08 01:38:47.274181+00 f t 8000.00 1 8000.00 9129 85 \N 8507 +65633 2025-10-07 01:13:19.397738+00 2025-10-07 01:13:19.397746+00 f t 46000.00 1 46000.00 9044 82 \N 8436 +65634 2025-10-07 01:13:19.401998+00 2025-10-07 01:13:19.402007+00 f t 8000.00 1 8000.00 9044 85 \N 8436 +65635 2025-10-07 01:13:19.405503+00 2025-10-07 01:13:19.40551+00 f t 24000.00 1 24000.00 9044 88 \N 8436 +65636 2025-10-07 01:13:19.409571+00 2025-10-07 01:13:19.409578+00 f t 24000.00 1 24000.00 9044 163 \N 8436 +66421 2025-10-08 03:52:11.14087+00 2025-10-08 03:52:11.140878+00 f t 30000.00 1 30000.00 9135 83 \N 8512 +66474 2025-10-08 08:50:14.738018+00 2025-10-08 08:50:14.738031+00 f t 55000.00 1 55000.00 9139 84 \N 8516 +66535 2025-10-08 11:38:56.455048+00 2025-10-08 11:38:56.45506+00 f t 46000.00 1 46000.00 9141 82 \N 8519 +66536 2025-10-08 11:38:56.461062+00 2025-10-08 11:38:56.461073+00 f t 68000.00 1 68000.00 9141 106 \N 8519 +66547 2025-10-08 12:15:02.23286+00 2025-10-08 12:15:02.232874+00 f t 46000.00 1 46000.00 9146 82 \N 8521 +66567 2025-10-08 14:28:59.010987+00 2025-10-08 14:28:59.010996+00 f t 30000.00 1 30000.00 9153 83 \N 8525 +66570 2025-10-08 14:45:11.269129+00 2025-10-08 14:45:11.269141+00 f t 55000.00 1 55000.00 9154 84 \N 8526 +66579 2025-10-08 15:29:59.04686+00 2025-10-08 15:29:59.046873+00 f t 30000.00 1 30000.00 9158 83 \N 741 +66582 2025-10-08 15:31:16.983308+00 2025-10-08 15:31:16.983323+00 f t 55000.00 1 55000.00 9159 84 \N 8528 +66586 2025-10-08 15:53:37.210212+00 2025-10-08 15:53:37.210225+00 f t 80000.00 1 80000.00 9161 173 \N 8529 +66589 2025-10-08 16:24:34.268382+00 2025-10-08 16:24:34.268392+00 f t 46000.00 1 46000.00 9162 82 \N 8530 +66590 2025-10-08 16:24:34.275337+00 2025-10-08 16:24:34.275351+00 f t 8000.00 1 8000.00 9162 85 \N 8530 +66594 2025-10-08 17:28:51.995404+00 2025-10-08 17:28:51.995413+00 f t 23000.00 1 23000.00 9167 172 \N 8533 +85584 2025-11-17 23:35:43.512336+00 2025-11-17 23:35:43.512346+00 f t 24000.00 1 24000.00 12632 86 \N 11187 +67811 2025-10-12 03:49:14.32291+00 2025-10-12 03:49:14.32292+00 f t 55000.00 1 55000.00 9418 84 \N 8733 +67819 2025-10-12 04:20:34.821373+00 2025-10-12 04:20:34.821387+00 f t 55000.00 1 55000.00 9423 84 \N 8736 +67827 2025-10-12 05:35:35.986309+00 2025-10-12 05:35:35.986317+00 f t 55000.00 1 55000.00 9424 84 \N 8737 +67828 2025-10-12 05:35:35.99107+00 2025-10-12 05:35:35.991078+00 f t 68000.00 1 68000.00 9424 106 \N 8737 +67886 2025-10-12 14:45:36.281636+00 2025-10-12 14:45:36.281646+00 f t 46000.00 1 46000.00 9439 82 \N 8747 +66642 2025-10-08 17:40:14.307611+00 2025-10-08 17:40:14.30762+00 f t 46000.00 1 46000.00 9169 82 \N 8535 +66643 2025-10-08 17:40:14.312586+00 2025-10-08 17:40:14.312593+00 f t 24000.00 1 24000.00 9169 163 \N 8535 +67887 2025-10-12 14:45:36.287315+00 2025-10-12 14:45:36.287324+00 f t 24000.00 1 24000.00 9439 86 \N 8747 +66654 2025-10-08 17:41:29.943682+00 2025-10-08 17:41:29.94369+00 f t 55000.00 1 55000.00 9170 84 \N 8536 +66662 2025-10-08 18:30:26.482245+00 2025-10-08 18:30:26.482257+00 f t 60000.00 1 60000.00 9172 169 \N 8538 +66663 2025-10-08 18:30:26.487937+00 2025-10-08 18:30:26.487945+00 f t 60000.00 1 60000.00 9172 101 \N 8538 +66665 2025-10-08 18:47:09.185918+00 2025-10-08 18:47:09.185927+00 f t 46000.00 1 46000.00 9173 82 \N 8539 +66666 2025-10-08 18:56:04.715067+00 2025-10-08 18:56:04.715077+00 f t 23000.00 1 23000.00 9174 172 \N 8540 +66667 2025-10-08 18:57:07.432421+00 2025-10-08 18:57:07.432432+00 f t 13200.00 1 13200.00 9175 146 \N 8540 +66671 2025-10-08 19:00:33.099824+00 2025-10-08 19:00:33.099833+00 f t 46000.00 1 46000.00 9177 82 \N 8541 +66672 2025-10-08 19:00:33.105181+00 2025-10-08 19:00:33.105189+00 f t 8000.00 1 8000.00 9177 85 \N 8541 +66673 2025-10-08 19:00:33.109047+00 2025-10-08 19:00:33.109055+00 f t 24000.00 1 24000.00 9177 163 \N 8541 +67990 2025-10-12 19:22:44.594024+00 2025-10-12 19:22:44.594034+00 f t 46000.00 1 46000.00 9457 82 \N 8762 +67991 2025-10-12 19:22:44.599793+00 2025-10-12 19:22:44.599802+00 f t 8000.00 1 8000.00 9457 85 \N 8762 +67992 2025-10-12 19:22:44.604474+00 2025-10-12 19:22:44.604482+00 f t 24000.00 1 24000.00 9457 163 \N 8762 +67994 2025-10-12 19:56:42.87842+00 2025-10-12 19:56:42.87843+00 f t 55000.00 1 55000.00 9459 84 \N 8764 +67997 2025-10-12 19:59:24.929723+00 2025-10-12 19:59:24.929736+00 f t 46000.00 1 46000.00 9460 82 \N 8764 +67998 2025-10-12 19:59:24.936831+00 2025-10-12 19:59:24.936843+00 f t 8000.00 1 8000.00 9460 85 \N 8764 +66684 2025-10-08 19:30:03.198279+00 2025-10-08 19:30:03.198294+00 f t 46000.00 1 46000.00 9180 82 \N 8544 +66685 2025-10-08 19:30:03.207711+00 2025-10-08 19:30:03.207726+00 f t 24000.00 1 24000.00 9180 163 \N 8544 +67999 2025-10-12 19:59:24.942721+00 2025-10-12 19:59:24.942732+00 f t 24000.00 1 24000.00 9460 88 \N 8764 +68002 2025-10-12 20:10:18.676872+00 2025-10-12 20:10:18.676887+00 f t 46000.00 1 46000.00 9461 82 \N 6168 +68003 2025-10-12 20:10:18.683617+00 2025-10-12 20:10:18.683627+00 f t 24000.00 1 24000.00 9461 88 \N 6168 +68004 2025-10-12 20:10:18.689092+00 2025-10-12 20:10:18.689104+00 f t 8000.00 1 8000.00 9461 85 \N 6168 +68010 2025-10-12 20:21:37.588945+00 2025-10-12 20:21:37.588956+00 f t 46000.00 1 46000.00 9465 82 \N 8765 +66725 2025-10-08 19:43:45.644226+00 2025-10-08 19:43:45.644235+00 f t 68000.00 1 68000.00 9183 106 \N 8546 +66731 2025-10-08 20:04:46.362424+00 2025-10-08 20:04:46.362438+00 f t 46000.00 1 46000.00 9184 82 \N 8547 +66732 2025-10-08 20:04:46.367257+00 2025-10-08 20:04:46.367265+00 f t 24000.00 1 24000.00 9184 86 \N 8547 +66734 2025-10-08 20:11:19.785554+00 2025-10-08 20:11:19.785563+00 f t 46000.00 1 46000.00 9185 82 \N 8548 +66737 2025-10-08 20:14:34.314473+00 2025-10-08 20:14:34.314486+00 f t 55000.00 1 55000.00 9187 84 \N 8550 +66738 2025-10-08 20:15:03.772123+00 2025-10-08 20:15:03.772137+00 f t 68000.00 1 68000.00 9186 106 \N 8549 +66739 2025-10-08 20:20:28.78344+00 2025-10-08 20:20:28.783449+00 f t 46000.00 1 46000.00 9188 82 \N 488 +66741 2025-10-08 20:28:43.477316+00 2025-10-08 20:28:43.477325+00 f t 46000.00 1 46000.00 9189 82 \N 8551 +66752 2025-10-08 20:44:31.906442+00 2025-10-08 20:44:31.90645+00 f t 46000.00 1 46000.00 9190 82 \N 8553 +66753 2025-10-08 20:44:31.910909+00 2025-10-08 20:44:31.910918+00 f t 8000.00 1 8000.00 9190 85 \N 8553 +66755 2025-10-08 21:22:16.215756+00 2025-10-08 21:22:16.215766+00 f t 68000.00 1 68000.00 9193 106 \N 8555 +66792 2025-10-08 21:59:53.894978+00 2025-10-08 21:59:53.89499+00 f t 46000.00 1 46000.00 9195 82 \N 8557 +66794 2025-10-08 22:23:06.88064+00 2025-10-08 22:23:06.880649+00 f t 107000.00 1 107000.00 9198 103 \N 8558 +66797 2025-10-08 22:32:00.512443+00 2025-10-08 22:32:00.512456+00 f t 46000.00 1 46000.00 9199 82 \N 8559 +66801 2025-10-08 23:03:15.044735+00 2025-10-08 23:03:15.044745+00 f t 57000.00 1 57000.00 9203 98 \N 8563 +66802 2025-10-08 23:16:51.185721+00 2025-10-08 23:16:51.185729+00 f t 78000.00 1 78000.00 9204 167 \N 8564 +66832 2025-10-08 23:47:02.720671+00 2025-10-08 23:47:02.72068+00 f t 15400.00 1 15400.00 9206 92 \N 8565 +66833 2025-10-08 23:47:02.725539+00 2025-10-08 23:47:02.725547+00 f t 46000.00 1 46000.00 9206 82 \N 8565 +66834 2025-10-08 23:47:02.729831+00 2025-10-08 23:47:02.729838+00 f t 8000.00 1 8000.00 9206 85 \N 8565 +66835 2025-10-08 23:47:02.733549+00 2025-10-08 23:47:02.733557+00 f t 24000.00 1 24000.00 9206 163 \N 8565 +66836 2025-10-08 23:47:02.737445+00 2025-10-08 23:47:02.737453+00 f t 7700.00 1 7700.00 9206 91 \N 8565 +66837 2025-10-09 00:54:24.000595+00 2025-10-09 00:54:24.000604+00 f t 46000.00 1 46000.00 9182 82 \N 8545 +66838 2025-10-09 00:54:24.007518+00 2025-10-09 00:54:24.007528+00 f t 8000.00 1 8000.00 9182 85 \N 8545 +66839 2025-10-09 00:54:24.012157+00 2025-10-09 00:54:24.012164+00 f t 24000.00 1 24000.00 9182 163 \N 8545 +66855 2025-10-09 01:31:05.500791+00 2025-10-09 01:31:05.5008+00 f t 46000.00 1 46000.00 9208 82 \N 8567 +66856 2025-10-09 01:31:05.507082+00 2025-10-09 01:31:05.50709+00 f t 8000.00 1 8000.00 9208 85 \N 8567 +66857 2025-10-09 01:31:05.511667+00 2025-10-09 01:31:05.511676+00 f t 24000.00 1 24000.00 9208 163 \N 8567 +66865 2025-10-09 03:03:31.10355+00 2025-10-09 03:03:31.103559+00 f t 46000.00 1 46000.00 9211 82 \N 8569 +66874 2025-10-09 04:52:00.787997+00 2025-10-09 04:52:00.788006+00 f t 55000.00 1 55000.00 9213 84 \N 8570 +66880 2025-10-09 10:04:28.182256+00 2025-10-09 10:04:28.182266+00 f t 46000.00 1 46000.00 9214 82 \N 8571 +66882 2025-10-09 11:02:48.68875+00 2025-10-09 11:02:48.688758+00 f t 46000.00 1 46000.00 9216 82 \N 8573 +66890 2025-10-09 11:15:37.128678+00 2025-10-09 11:15:37.12869+00 f t 55000.00 1 55000.00 9218 84 \N 8575 +66903 2025-10-09 11:30:59.848325+00 2025-10-09 11:30:59.848335+00 f t 55000.00 1 55000.00 9219 84 \N 8576 +66913 2025-10-09 12:30:53.992695+00 2025-10-09 12:30:53.992704+00 f t 46000.00 1 46000.00 9221 82 \N 8578 +66914 2025-10-09 12:30:53.99716+00 2025-10-09 12:30:53.997167+00 f t 8000.00 1 8000.00 9221 85 \N 8578 +66915 2025-10-09 12:30:54.00104+00 2025-10-09 12:30:54.001047+00 f t 23000.00 1 23000.00 9221 172 \N 8578 +67789 2025-10-12 00:21:17.599785+00 2025-10-12 00:21:17.599796+00 f t 46000.00 1 46000.00 9413 82 \N 8727 +66918 2025-10-09 13:07:23.5265+00 2025-10-09 13:07:23.526509+00 f t 55000.00 1 55000.00 9227 84 \N 8582 +67790 2025-10-12 00:21:17.605504+00 2025-10-12 00:21:17.605512+00 f t 46000.00 1 46000.00 9413 82 \N 8728 +66924 2025-10-09 14:19:15.406822+00 2025-10-09 14:19:15.406831+00 f t 46000.00 1 46000.00 9230 82 \N 8584 +72129 2025-10-19 21:55:23.554047+00 2025-10-19 21:55:23.554059+00 f t 55000.00 1 55000.00 10045 84 \N 9204 +66940 2025-10-09 14:20:10.189782+00 2025-10-09 14:20:10.189795+00 f t 20500.00 1 20500.00 9231 109 \N 8585 +66941 2025-10-09 14:20:10.19871+00 2025-10-09 14:20:10.198721+00 f t 46000.00 1 46000.00 9231 82 \N 8585 +66942 2025-10-09 14:20:10.205465+00 2025-10-09 14:20:10.205478+00 f t 7700.00 1 7700.00 9231 93 \N 8585 +66943 2025-10-09 14:20:10.212331+00 2025-10-09 14:20:10.212343+00 f t 13200.00 1 13200.00 9231 146 \N 8585 +66944 2025-10-09 14:21:22.570098+00 2025-10-09 14:21:22.570107+00 f t 55000.00 1 55000.00 9233 84 \N 8586 +67915 2025-10-12 16:22:57.956741+00 2025-10-12 16:22:57.956751+00 f t 46000.00 1 46000.00 9445 82 \N 8752 +67955 2025-10-12 17:14:58.864655+00 2025-10-12 17:14:58.864665+00 f t 46000.00 1 46000.00 9451 82 \N 8756 +67965 2025-10-12 18:51:30.74337+00 2025-10-12 18:51:30.74338+00 f t 46000.00 1 46000.00 9453 82 \N 8758 +66980 2025-10-09 14:33:11.588134+00 2025-10-09 14:33:11.588148+00 f t 20500.00 1 20500.00 9235 109 \N 8588 +66981 2025-10-09 14:33:11.592531+00 2025-10-09 14:33:11.592538+00 f t 46000.00 1 46000.00 9235 82 \N 8588 +66982 2025-10-09 14:33:11.596072+00 2025-10-09 14:33:11.596079+00 f t 7700.00 1 7700.00 9235 93 \N 8588 +66983 2025-10-09 14:33:11.599642+00 2025-10-09 14:33:11.599649+00 f t 13200.00 1 13200.00 9235 146 \N 8588 +66986 2025-10-09 14:51:21.050157+00 2025-10-09 14:51:21.050166+00 f t 46000.00 1 46000.00 9238 82 \N 8589 +66987 2025-10-09 14:51:21.054648+00 2025-10-09 14:51:21.054655+00 f t 24000.00 1 24000.00 9238 86 \N 8589 +66990 2025-10-09 15:23:38.443218+00 2025-10-09 15:23:38.443227+00 f t 107000.00 1 107000.00 9241 103 \N 8595 +66994 2025-10-09 18:04:24.270694+00 2025-10-09 18:04:24.270705+00 f t 55000.00 1 55000.00 9244 84 \N 8596 +66996 2025-10-09 18:09:20.114116+00 2025-10-09 18:09:20.114124+00 f t 23000.00 1 23000.00 9245 172 \N 8597 +66997 2025-10-09 18:09:20.118705+00 2025-10-09 18:09:20.118713+00 f t 34000.00 1 34000.00 9245 110 \N 8597 +66998 2025-10-09 18:09:20.12282+00 2025-10-09 18:09:20.122827+00 f t 13200.00 1 13200.00 9245 146 \N 8597 +66999 2025-10-09 18:09:20.128128+00 2025-10-09 18:09:20.128138+00 f t 7700.00 1 7700.00 9245 93 \N 8597 +67000 2025-10-09 18:11:10.833138+00 2025-10-09 18:11:10.83315+00 f t 13200.00 1 13200.00 9247 146 \N 8597 +67001 2025-10-09 18:15:23.486564+00 2025-10-09 18:15:23.486571+00 f t 75000.00 1 75000.00 9248 108 \N 8279 +67002 2025-10-09 19:04:58.587299+00 2025-10-09 19:04:58.587307+00 f t 46000.00 1 46000.00 9250 82 \N 8599 +67010 2025-10-09 20:02:23.176081+00 2025-10-09 20:02:23.176094+00 f t 68000.00 1 68000.00 9254 106 \N 8602 +67012 2025-10-09 20:03:36.942417+00 2025-10-09 20:03:36.942425+00 f t 60000.00 1 60000.00 9255 169 \N 8603 +67013 2025-10-09 20:11:52.537276+00 2025-10-09 20:11:52.537287+00 f t 55000.00 1 55000.00 9256 84 \N 6902 +67015 2025-10-09 20:13:14.745449+00 2025-10-09 20:13:14.745458+00 f t 68000.00 1 68000.00 9257 106 \N 8604 +67021 2025-10-09 20:14:57.591748+00 2025-10-09 20:14:57.591757+00 f t 55000.00 1 55000.00 9258 84 \N 8605 +67045 2025-10-09 20:30:50.836475+00 2025-10-09 20:30:50.836486+00 f t 46000.00 1 46000.00 9260 82 \N 8606 +67047 2025-10-09 20:43:48.427151+00 2025-10-09 20:43:48.427159+00 f t 46000.00 1 46000.00 9261 82 \N 8607 +67048 2025-10-09 20:51:15.356938+00 2025-10-09 20:51:15.356948+00 f t 30000.00 1 30000.00 9262 83 \N 8150 +67049 2025-10-09 20:57:47.069377+00 2025-10-09 20:57:47.069386+00 f t 78000.00 1 78000.00 9253 167 \N 8601 +67055 2025-10-09 21:16:58.235672+00 2025-10-09 21:16:58.23568+00 f t 46000.00 1 46000.00 9263 82 \N 8608 +67061 2025-10-09 21:47:11.663091+00 2025-10-09 21:47:11.6631+00 f t 68000.00 1 68000.00 9266 106 \N 8611 +67064 2025-10-09 21:53:59.917641+00 2025-10-09 21:53:59.917652+00 f t 46000.00 1 46000.00 9267 82 \N 8612 +67065 2025-10-09 21:53:59.92358+00 2025-10-09 21:53:59.92359+00 f t 8000.00 1 8000.00 9267 85 \N 8612 +67067 2025-10-09 21:56:37.253441+00 2025-10-09 21:56:37.25345+00 f t 46000.00 1 46000.00 9268 82 \N 8613 +67069 2025-10-09 22:06:36.66784+00 2025-10-09 22:06:36.667848+00 f t 30000.00 1 30000.00 9269 83 \N 8614 +67087 2025-10-09 23:00:33.773584+00 2025-10-09 23:00:33.773592+00 f t 30000.00 1 30000.00 9272 83 \N 8615 +67089 2025-10-09 23:52:08.129531+00 2025-10-09 23:52:08.129538+00 f t 55000.00 1 55000.00 9274 84 \N 8617 +67090 2025-10-09 23:56:00.508303+00 2025-10-09 23:56:00.508314+00 f t 55000.00 1 55000.00 9275 84 \N 890 +67092 2025-10-10 00:43:43.401348+00 2025-10-10 00:43:43.401356+00 f t 55000.00 1 55000.00 9276 84 \N 8618 +67094 2025-10-10 01:31:51.317565+00 2025-10-10 01:31:51.317576+00 f t 30000.00 1 30000.00 9278 83 \N 8620 +67103 2025-10-10 02:22:56.222569+00 2025-10-10 02:22:56.22258+00 f t 46000.00 1 46000.00 9279 82 \N 8621 +67104 2025-10-10 02:22:56.227597+00 2025-10-10 02:22:56.227606+00 f t 7700.00 1 7700.00 9279 93 \N 8621 +67106 2025-10-10 02:58:12.573798+00 2025-10-10 02:58:12.573806+00 f t 46000.00 1 46000.00 9281 82 \N 8622 +67108 2025-10-10 03:08:29.534281+00 2025-10-10 03:08:29.534289+00 f t 46000.00 1 46000.00 9282 82 \N 8623 +67112 2025-10-10 05:13:00.959813+00 2025-10-10 05:13:00.959825+00 f t 46000.00 1 46000.00 9283 82 \N 8624 +67114 2025-10-10 07:41:59.106779+00 2025-10-10 07:41:59.106788+00 f t 55000.00 1 55000.00 9284 84 \N 8625 +67118 2025-10-10 08:21:59.592181+00 2025-10-10 08:21:59.59219+00 f t 55000.00 1 55000.00 9285 84 \N 8626 +67143 2025-10-10 09:04:53.54613+00 2025-10-10 09:04:53.546138+00 f t 46000.00 1 46000.00 9286 82 \N 8627 +67144 2025-10-10 09:04:53.550715+00 2025-10-10 09:04:53.550725+00 f t 7700.00 1 7700.00 9286 93 \N 8627 +67145 2025-10-10 09:04:53.555169+00 2025-10-10 09:04:53.555176+00 f t 13200.00 1 13200.00 9286 146 \N 8627 +67152 2025-10-10 10:27:26.856804+00 2025-10-10 10:27:26.856812+00 f t 55000.00 1 55000.00 9287 84 \N 8628 +67166 2025-10-10 11:39:23.912017+00 2025-10-10 11:39:23.912026+00 f t 55000.00 1 55000.00 9292 84 \N 8631 +67176 2025-10-10 12:16:38.539398+00 2025-10-10 12:16:38.539406+00 f t 46000.00 1 46000.00 9294 82 \N 8633 +67177 2025-10-10 12:16:38.544868+00 2025-10-10 12:16:38.544876+00 f t 8000.00 1 8000.00 9294 85 \N 8633 +67178 2025-10-10 12:16:40.310352+00 2025-10-10 12:16:40.31036+00 f t 75000.00 1 75000.00 9293 108 \N 8632 +67179 2025-10-10 12:26:21.604401+00 2025-10-10 12:26:21.604409+00 f t 55000.00 1 55000.00 9295 84 \N 294 +67202 2025-10-10 12:32:32.867114+00 2025-10-10 12:32:32.867124+00 f t 55000.00 1 55000.00 9296 84 \N 8634 +67203 2025-10-10 12:51:17.250357+00 2025-10-10 12:51:17.250366+00 f t 75000.00 1 75000.00 9297 142 \N 8635 +67204 2025-10-10 12:51:17.260729+00 2025-10-10 12:51:17.260738+00 f t 46000.00 1 46000.00 9297 82 \N 8635 +67207 2025-10-10 12:56:57.711717+00 2025-10-10 12:56:57.711725+00 f t 46000.00 1 46000.00 9298 82 \N 8636 +67208 2025-10-10 12:56:57.717559+00 2025-10-10 12:56:57.717566+00 f t 75000.00 1 75000.00 9298 142 \N 8636 +67209 2025-10-10 13:01:09.827508+00 2025-10-10 13:01:09.827517+00 f t 80000.00 1 80000.00 9299 173 \N 8637 +67780 2025-10-12 00:02:07.71891+00 2025-10-12 00:02:07.718922+00 f t 46000.00 1 46000.00 9410 82 \N 8725 +67853 2025-10-12 11:23:05.598624+00 2025-10-12 11:23:05.598633+00 f t 55000.00 1 55000.00 9428 84 \N 8740 +67863 2025-10-12 12:42:35.802283+00 2025-10-12 12:42:35.802297+00 f t 55000.00 1 55000.00 9433 84 \N 8742 +67873 2025-10-12 14:03:14.347316+00 2025-10-12 14:03:14.347325+00 f t 55000.00 1 55000.00 9438 84 \N 8746 +67227 2025-10-10 13:04:59.415078+00 2025-10-10 13:04:59.415086+00 f t 46000.00 1 46000.00 9301 82 \N 4861 +67228 2025-10-10 13:04:59.419844+00 2025-10-10 13:04:59.419851+00 f t 7700.00 1 7700.00 9301 91 \N 4861 +67229 2025-10-10 13:04:59.424274+00 2025-10-10 13:04:59.424281+00 f t 8000.00 1 8000.00 9301 85 \N 4861 +67233 2025-10-10 13:06:45.146556+00 2025-10-10 13:06:45.146564+00 f t 55000.00 1 55000.00 9302 84 \N 8638 +67909 2025-10-12 15:38:22.175749+00 2025-10-12 15:38:22.175762+00 f t 46000.00 1 46000.00 9442 82 \N 8750 +67242 2025-10-10 13:14:34.371271+00 2025-10-10 13:14:34.371279+00 f t 46000.00 1 46000.00 9308 82 \N 8641 +67243 2025-10-10 13:14:34.376549+00 2025-10-10 13:14:34.376556+00 f t 8000.00 1 8000.00 9308 85 \N 8641 +67951 2025-10-12 17:04:44.041802+00 2025-10-12 17:04:44.041813+00 f t 55000.00 1 55000.00 9448 84 \N 8754 +67245 2025-10-10 13:14:47.220891+00 2025-10-10 13:14:47.220899+00 f t 55000.00 1 55000.00 9307 84 \N 8642 +67247 2025-10-10 13:16:32.812019+00 2025-10-10 13:16:32.812028+00 f t 80000.00 1 80000.00 9309 173 \N 8643 +67249 2025-10-10 13:18:57.671374+00 2025-10-10 13:18:57.671386+00 f t 30000.00 1 30000.00 9310 83 \N 8644 +67250 2025-10-10 13:29:58.584763+00 2025-10-10 13:29:58.584773+00 f t 78000.00 1 78000.00 9311 167 \N 8645 +67966 2025-10-12 19:05:41.730067+00 2025-10-12 19:05:41.730076+00 f t 55000.00 1 55000.00 9454 84 \N 8759 +67252 2025-10-10 13:42:52.459496+00 2025-10-10 13:42:52.459506+00 f t 46000.00 1 46000.00 9312 82 \N 8646 +67977 2025-10-12 19:16:17.422982+00 2025-10-12 19:16:17.422993+00 f t 46000.00 1 46000.00 9455 82 \N 8760 +67255 2025-10-10 14:46:24.847828+00 2025-10-10 14:46:24.847837+00 f t 46000.00 1 46000.00 9316 82 \N 8651 +67256 2025-10-10 14:46:24.8542+00 2025-10-10 14:46:24.85421+00 f t 8000.00 1 8000.00 9316 85 \N 8651 +67257 2025-10-10 14:51:45.82669+00 2025-10-10 14:51:45.826699+00 f t 55000.00 1 55000.00 9317 84 \N 8652 +67264 2025-10-10 15:07:23.744569+00 2025-10-10 15:07:23.744577+00 f t 46000.00 1 46000.00 9318 82 \N 8653 +67300 2025-10-10 15:16:01.442323+00 2025-10-10 15:16:01.442333+00 f t 46000.00 1 46000.00 9319 82 \N 8654 +67301 2025-10-10 15:16:01.447461+00 2025-10-10 15:16:01.44747+00 f t 8000.00 1 8000.00 9319 85 \N 8654 +67302 2025-10-10 15:16:01.451977+00 2025-10-10 15:16:01.451986+00 f t 24000.00 1 24000.00 9319 86 \N 8654 +67306 2025-10-10 15:22:08.26564+00 2025-10-10 15:22:08.265649+00 f t 55000.00 1 55000.00 9320 84 \N 8655 +67308 2025-10-10 15:50:00.576042+00 2025-10-10 15:50:00.576051+00 f t 46000.00 1 46000.00 9321 82 \N 8656 +67346 2025-10-10 15:51:58.331875+00 2025-10-10 15:51:58.331884+00 f t 46000.00 1 46000.00 9322 82 \N 8657 +67347 2025-10-10 15:51:58.338365+00 2025-10-10 15:51:58.338374+00 f t 7700.00 1 7700.00 9322 93 \N 8657 +67348 2025-10-10 15:57:09.841583+00 2025-10-10 15:57:09.841594+00 f t 55000.00 1 55000.00 9323 84 \N 8658 +67355 2025-10-10 16:07:12.202047+00 2025-10-10 16:07:12.202055+00 f t 55000.00 1 55000.00 9325 84 \N 8660 +67367 2025-10-10 16:08:06.225559+00 2025-10-10 16:08:06.225567+00 f t 46000.00 1 46000.00 9327 82 \N 8662 +67379 2025-10-10 16:11:53.480716+00 2025-10-10 16:11:53.480727+00 f t 68000.00 1 68000.00 9328 106 \N 8663 +67386 2025-10-10 16:43:10.416838+00 2025-10-10 16:43:10.416846+00 f t 55000.00 1 55000.00 9326 84 \N 8661 +67387 2025-10-10 16:50:34.874472+00 2025-10-10 16:50:34.87448+00 f t 55000.00 1 55000.00 9332 84 \N 8667 +67388 2025-10-10 16:53:15.871124+00 2025-10-10 16:53:15.871148+00 f t 78000.00 1 78000.00 9333 167 \N 8668 +67391 2025-10-10 17:26:14.202845+00 2025-10-10 17:26:14.202856+00 f t 46000.00 1 46000.00 9334 82 \N 8669 +67392 2025-10-10 17:26:14.209145+00 2025-10-10 17:26:14.209156+00 f t 24000.00 1 24000.00 9334 163 \N 8669 +67404 2025-10-10 17:29:51.605795+00 2025-10-10 17:29:51.605803+00 f t 82000.00 1 82000.00 9335 97 \N 8670 +67405 2025-10-10 17:29:51.610978+00 2025-10-10 17:29:51.610989+00 f t 57000.00 1 57000.00 9335 98 \N 8670 +67409 2025-10-10 18:17:52.4812+00 2025-10-10 18:17:52.481209+00 f t 55000.00 1 55000.00 9336 84 \N 8671 +67427 2025-10-10 18:40:17.890977+00 2025-10-10 18:40:17.890986+00 f t 46000.00 1 46000.00 9337 82 \N 8672 +67443 2025-10-10 18:49:09.424405+00 2025-10-10 18:49:09.424416+00 f t 55000.00 1 55000.00 9338 84 \N 8673 +67444 2025-10-10 18:49:50.637823+00 2025-10-10 18:49:50.637831+00 f t 46000.00 1 46000.00 9339 82 \N 8674 +67445 2025-10-10 18:49:50.642555+00 2025-10-10 18:49:50.642563+00 f t 8000.00 1 8000.00 9339 85 \N 8674 +67450 2025-10-10 19:12:31.942512+00 2025-10-10 19:12:31.942521+00 f t 46000.00 1 46000.00 9340 82 \N 8675 +67452 2025-10-10 20:06:57.606445+00 2025-10-10 20:06:57.606454+00 f t 55000.00 1 55000.00 9343 84 \N 8679 +67455 2025-10-10 20:16:27.908516+00 2025-10-10 20:16:27.908529+00 f t 46000.00 1 46000.00 9344 82 \N 8680 +67456 2025-10-10 20:16:27.91569+00 2025-10-10 20:16:27.915701+00 f t 75000.00 1 75000.00 9344 142 \N 8680 +67459 2025-10-10 21:08:00.418866+00 2025-10-10 21:08:00.418875+00 f t 46000.00 1 46000.00 9345 82 \N 8681 +67460 2025-10-10 21:08:00.423792+00 2025-10-10 21:08:00.4238+00 f t 8000.00 1 8000.00 9345 85 \N 8681 +67469 2025-10-10 21:46:26.405928+00 2025-10-10 21:46:26.405937+00 f t 46000.00 1 46000.00 9349 82 \N 8685 +67471 2025-10-10 21:47:12.017355+00 2025-10-10 21:47:12.017367+00 f t 55000.00 1 55000.00 9350 84 \N 8686 +67485 2025-10-10 22:23:03.04694+00 2025-10-10 22:23:03.046949+00 f t 46000.00 1 46000.00 9352 82 \N 8688 +67489 2025-10-10 22:33:16.686431+00 2025-10-10 22:33:16.686439+00 f t 23000.00 1 23000.00 9354 172 \N 8689 +67490 2025-10-10 23:01:12.538824+00 2025-10-10 23:01:12.538832+00 f t 55000.00 1 55000.00 9355 84 \N 8661 +67491 2025-10-10 23:10:18.614359+00 2025-10-10 23:10:18.614368+00 f t 55000.00 1 55000.00 9356 84 \N 3550 +67492 2025-10-10 23:18:12.640355+00 2025-10-10 23:18:12.640364+00 f t 46000.00 1 46000.00 9033 82 \N 8423 +67493 2025-10-10 23:18:12.645279+00 2025-10-10 23:18:12.645285+00 f t 8000.00 1 8000.00 9033 85 \N 8423 +67494 2025-10-10 23:18:12.649318+00 2025-10-10 23:18:12.649325+00 f t 24000.00 1 24000.00 9033 86 \N 8423 +67495 2025-10-10 23:29:05.122045+00 2025-10-10 23:29:05.122054+00 f t 55000.00 1 55000.00 9358 84 \N 8690 +67496 2025-10-10 23:39:34.095588+00 2025-10-10 23:39:34.095597+00 f t 78000.00 1 78000.00 9359 167 \N 8691 +67497 2025-10-10 23:45:32.867792+00 2025-10-10 23:45:32.867801+00 f t 55000.00 1 55000.00 9353 84 \N 8687 +72071 2025-10-19 18:33:25.025034+00 2025-10-19 18:33:25.025043+00 f t 55000.00 1 55000.00 10037 84 \N 9198 +67804 2025-10-12 03:03:20.224759+00 2025-10-12 03:03:20.224768+00 f t 46000.00 1 46000.00 9416 82 \N 8731 +67805 2025-10-12 03:03:20.23132+00 2025-10-12 03:03:20.231328+00 f t 24000.00 1 24000.00 9416 163 \N 8731 +67502 2025-10-10 23:47:33.989183+00 2025-10-10 23:47:33.989195+00 f t 68000.00 1 68000.00 9361 106 \N 8693 +77129 2025-11-01 01:45:08.513863+00 2025-11-01 01:45:08.51388+00 f t 46000.00 1 46000.00 11145 82 \N 10026 +67506 2025-10-10 23:48:33.574802+00 2025-10-10 23:48:33.574811+00 f t 55000.00 1 55000.00 9360 84 \N 8692 +67508 2025-10-10 23:56:17.419986+00 2025-10-10 23:56:17.419995+00 f t 107000.00 1 107000.00 9362 103 \N 8694 +67510 2025-10-11 00:01:28.80241+00 2025-10-11 00:01:28.802419+00 f t 46000.00 1 46000.00 9363 82 \N 8695 +69963 2025-10-15 22:37:30.636277+00 2025-10-15 22:37:30.636285+00 f t 46000.00 1 46000.00 9742 82 \N 8981 +69964 2025-10-15 22:37:30.641116+00 2025-10-15 22:37:30.641123+00 f t 24000.00 1 24000.00 9742 163 \N 8981 +69994 2025-10-15 23:49:21.962859+00 2025-10-15 23:49:21.962873+00 f t 46000.00 1 46000.00 9751 82 \N 8987 +69995 2025-10-15 23:49:21.969256+00 2025-10-15 23:49:21.969264+00 f t 24000.00 1 24000.00 9751 163 \N 8987 +67520 2025-10-11 00:17:28.910007+00 2025-10-11 00:17:28.910016+00 f t 55000.00 1 55000.00 9364 84 \N 8696 +67957 2025-10-12 17:22:27.054025+00 2025-10-12 17:22:27.054036+00 f t 68000.00 1 68000.00 9452 106 \N 8757 +67537 2025-10-11 00:55:12.393214+00 2025-10-11 00:55:12.393225+00 f t 55000.00 1 55000.00 9365 84 \N 8697 +67539 2025-10-11 01:50:01.455908+00 2025-10-11 01:50:01.455922+00 f t 82000.00 1 82000.00 9367 97 \N 8698 +67542 2025-10-11 02:27:58.694815+00 2025-10-11 02:27:58.694828+00 f t 82000.00 1 82000.00 9369 97 \N 8700 +67978 2025-10-12 19:16:17.427997+00 2025-10-12 19:16:17.428006+00 f t 24000.00 1 24000.00 9455 163 \N 8760 +67980 2025-10-12 19:17:19.84397+00 2025-10-12 19:17:19.843984+00 f t 68000.00 1 68000.00 9456 106 \N 8761 +67549 2025-10-11 03:07:37.066239+00 2025-10-11 03:07:37.066249+00 f t 46000.00 1 46000.00 9370 82 \N 8701 +67550 2025-10-11 03:07:37.071641+00 2025-10-11 03:07:37.071648+00 f t 75000.00 1 75000.00 9370 142 \N 8701 +67993 2025-10-12 19:33:57.229062+00 2025-10-12 19:33:57.229076+00 f t 55000.00 1 55000.00 9458 84 \N 8763 +67554 2025-10-11 04:54:37.932378+00 2025-10-11 04:54:37.932386+00 f t 55000.00 1 55000.00 9372 84 \N 8702 +68005 2025-10-12 20:18:12.172354+00 2025-10-12 20:18:12.172363+00 f t 55000.00 1 55000.00 9464 84 \N 827 +67562 2025-10-11 05:10:50.557935+00 2025-10-11 05:10:50.557944+00 f t 55000.00 1 55000.00 9375 84 \N 8704 +68013 2025-10-12 20:25:53.34083+00 2025-10-12 20:25:53.340838+00 f t 55000.00 1 55000.00 9466 84 \N 8766 +67565 2025-10-11 05:14:47.90036+00 2025-10-11 05:14:47.900371+00 f t 46000.00 1 46000.00 9376 82 \N 8705 +67567 2025-10-11 13:16:06.643233+00 2025-10-11 13:16:06.643242+00 f t 55000.00 1 55000.00 9382 84 \N 8708 +68026 2025-10-12 20:33:10.115482+00 2025-10-12 20:33:10.115493+00 f t 68000.00 1 68000.00 9467 106 \N 128 +67581 2025-10-11 13:35:14.181516+00 2025-10-11 13:35:14.18153+00 f t 55000.00 1 55000.00 9383 84 \N 8709 +67583 2025-10-11 13:49:59.536137+00 2025-10-11 13:49:59.536146+00 f t 46000.00 1 46000.00 9384 82 \N 8710 +67603 2025-10-11 16:09:48.886353+00 2025-10-11 16:09:48.886362+00 f t 32500.00 1 32500.00 9391 112 \N 8713 +67604 2025-10-11 16:09:48.891965+00 2025-10-11 16:09:48.891974+00 f t 107000.00 1 107000.00 9391 103 \N 8713 +67605 2025-10-11 16:09:48.896596+00 2025-10-11 16:09:48.896604+00 f t 46000.00 1 46000.00 9391 82 \N 8713 +67606 2025-10-11 16:09:48.901758+00 2025-10-11 16:09:48.90177+00 f t 7700.00 1 7700.00 9391 93 \N 8713 +67607 2025-10-11 16:09:48.907182+00 2025-10-11 16:09:48.90719+00 f t 13200.00 1 13200.00 9391 146 \N 8713 +68051 2025-10-12 20:38:42.054607+00 2025-10-12 20:38:42.054618+00 f t 80000.00 1 80000.00 9462 173 \N 8767 +68052 2025-10-12 20:38:52.020896+00 2025-10-12 20:38:52.020909+00 f t 46000.00 1 46000.00 9468 82 \N 128 +68053 2025-10-12 20:38:52.027537+00 2025-10-12 20:38:52.027546+00 f t 7700.00 1 7700.00 9468 93 \N 128 +68054 2025-10-12 20:38:52.032169+00 2025-10-12 20:38:52.032177+00 f t 13200.00 1 13200.00 9468 146 \N 128 +67632 2025-10-11 16:12:34.081378+00 2025-10-11 16:12:34.081391+00 f t 32500.00 1 32500.00 9392 112 \N 8714 +67633 2025-10-11 16:12:34.089181+00 2025-10-11 16:12:34.089194+00 f t 107000.00 1 107000.00 9392 103 \N 8714 +67634 2025-10-11 16:12:34.096383+00 2025-10-11 16:12:34.096395+00 f t 46000.00 1 46000.00 9392 82 \N 8714 +67635 2025-10-11 16:12:34.10273+00 2025-10-11 16:12:34.102743+00 f t 7700.00 1 7700.00 9392 93 \N 8714 +67636 2025-10-11 16:12:34.109147+00 2025-10-11 16:12:34.109159+00 f t 13200.00 1 13200.00 9392 146 \N 8714 +67693 2025-10-11 16:16:07.672081+00 2025-10-11 16:16:07.67209+00 f t 32500.00 1 32500.00 9393 112 \N 8715 +67694 2025-10-11 16:16:07.677954+00 2025-10-11 16:16:07.677963+00 f t 107000.00 1 107000.00 9393 103 \N 8715 +67695 2025-10-11 16:16:07.68312+00 2025-10-11 16:16:07.683161+00 f t 46000.00 1 46000.00 9393 82 \N 8715 +67696 2025-10-11 16:16:07.6882+00 2025-10-11 16:16:07.688209+00 f t 7700.00 1 7700.00 9393 93 \N 8715 +67697 2025-10-11 16:16:07.692829+00 2025-10-11 16:16:07.692839+00 f t 13200.00 1 13200.00 9393 146 \N 8715 +67703 2025-10-11 17:01:13.175181+00 2025-10-11 17:01:13.175196+00 f t 55000.00 1 55000.00 9394 84 \N 8716 +67710 2025-10-11 17:43:13.732512+00 2025-10-11 17:43:13.732523+00 f t 46000.00 1 46000.00 9395 82 \N 8717 +67711 2025-10-11 17:43:13.737853+00 2025-10-11 17:43:13.737862+00 f t 24000.00 1 24000.00 9395 86 \N 8717 +68143 2025-10-12 21:23:39.488435+00 2025-10-12 21:23:39.488444+00 f t 55000.00 1 55000.00 9470 84 \N 8769 +67718 2025-10-11 18:30:30.721852+00 2025-10-11 18:30:30.721862+00 f t 55000.00 1 55000.00 9399 84 \N 8719 +68147 2025-10-12 21:36:48.623627+00 2025-10-12 21:36:48.623638+00 f t 55000.00 1 55000.00 9471 84 \N 8770 +68152 2025-10-12 22:16:58.119087+00 2025-10-12 22:16:58.1191+00 f t 46000.00 1 46000.00 9472 82 \N 8771 +68153 2025-10-12 22:16:58.125256+00 2025-10-12 22:16:58.125265+00 f t 8000.00 1 8000.00 9472 85 \N 8771 +68177 2025-10-12 22:36:03.289668+00 2025-10-12 22:36:03.28968+00 f t 80000.00 1 80000.00 9473 173 \N 8772 +68182 2025-10-12 23:01:46.636217+00 2025-10-12 23:01:46.636226+00 f t 55000.00 1 55000.00 9476 84 \N 8773 +68187 2025-10-12 23:32:59.436293+00 2025-10-12 23:32:59.436306+00 f t 46000.00 1 46000.00 9477 82 \N 8774 +68192 2025-10-12 23:42:57.493781+00 2025-10-12 23:42:57.493793+00 f t 46000.00 1 46000.00 9478 82 \N 8775 +68193 2025-10-12 23:42:57.499673+00 2025-10-12 23:42:57.499684+00 f t 8000.00 1 8000.00 9478 85 \N 8775 +68195 2025-10-13 01:23:16.886998+00 2025-10-13 01:23:16.887009+00 f t 23000.00 1 23000.00 9481 172 \N 8776 +68205 2025-10-13 01:40:31.7993+00 2025-10-13 01:40:31.799312+00 f t 46000.00 1 46000.00 9482 82 \N 8777 +68206 2025-10-13 01:40:31.804445+00 2025-10-13 01:40:31.804454+00 f t 8000.00 1 8000.00 9482 85 \N 8777 +68207 2025-10-13 01:40:31.808647+00 2025-10-13 01:40:31.808656+00 f t 24000.00 1 24000.00 9482 86 \N 8777 +69941 2025-10-15 21:35:54.296858+00 2025-10-15 21:35:54.296867+00 f t 68000.00 1 68000.00 9736 106 \N 8978 +72152 2025-10-20 01:48:14.679683+00 2025-10-20 01:48:14.679692+00 f t 46000.00 1 46000.00 10061 82 \N 9212 +72259 2025-10-20 11:54:30.161776+00 2025-10-20 11:54:30.161785+00 f t 32500.00 1 32500.00 10081 112 \N 9228 +72260 2025-10-20 11:54:30.16614+00 2025-10-20 11:54:30.166148+00 f t 7700.00 1 7700.00 10081 93 \N 9228 +72261 2025-10-20 11:54:30.17022+00 2025-10-20 11:54:30.170227+00 f t 13200.00 1 13200.00 10081 146 \N 9228 +72262 2025-10-20 11:54:30.1739+00 2025-10-20 11:54:30.173907+00 f t 46000.00 1 46000.00 10081 82 \N 9228 +72378 2025-10-20 13:28:28.677805+00 2025-10-20 13:28:28.677818+00 f t 107000.00 1 107000.00 10093 103 \N 9238 +72430 2025-10-20 13:43:14.344968+00 2025-10-20 13:43:14.344976+00 f t 46000.00 1 46000.00 10094 82 \N 9240 +70224 2025-10-16 00:17:09.597282+00 2025-10-16 00:17:09.597295+00 f t 55000.00 1 55000.00 9757 84 \N 8992 +72431 2025-10-20 13:43:14.349727+00 2025-10-20 13:43:14.349735+00 f t 75000.00 1 75000.00 10094 142 \N 9240 +72432 2025-10-20 13:43:14.353713+00 2025-10-20 13:43:14.353721+00 f t 66000.00 1 66000.00 10094 105 \N 9240 +70277 2025-10-16 09:19:41.002194+00 2025-10-16 09:19:41.002204+00 f t 46000.00 1 46000.00 9767 82 \N 8999 +70278 2025-10-16 09:19:41.006967+00 2025-10-16 09:19:41.006975+00 f t 8000.00 1 8000.00 9767 85 \N 8999 +72492 2025-10-20 14:48:05.753266+00 2025-10-20 14:48:05.753275+00 f t 7700.00 1 7700.00 10106 93 \N 9247 +72493 2025-10-20 14:48:05.758981+00 2025-10-20 14:48:05.75899+00 f t 87000.00 1 87000.00 10106 165 \N 9247 +72494 2025-10-20 14:48:05.763631+00 2025-10-20 14:48:05.763639+00 f t 13200.00 1 13200.00 10106 146 \N 9247 +72495 2025-10-20 14:48:05.767537+00 2025-10-20 14:48:05.767544+00 f t 46000.00 1 46000.00 10106 82 \N 9247 +70324 2025-10-16 13:20:31.555206+00 2025-10-16 13:20:31.555214+00 f t 46000.00 1 46000.00 9781 82 \N 9010 +72537 2025-10-20 15:58:17.23286+00 2025-10-20 15:58:17.23287+00 f t 46000.00 1 46000.00 10116 82 \N 9252 +72538 2025-10-20 15:58:17.237998+00 2025-10-20 15:58:17.238006+00 f t 8000.00 1 8000.00 10116 85 \N 9252 +70366 2025-10-16 14:00:31.539867+00 2025-10-16 14:00:31.539885+00 f t 46000.00 1 46000.00 9787 82 \N 9017 +70367 2025-10-16 14:00:31.545967+00 2025-10-16 14:00:31.545975+00 f t 24000.00 1 24000.00 9787 88 \N 9017 +72539 2025-10-20 15:58:17.243453+00 2025-10-20 15:58:17.243464+00 f t 24000.00 1 24000.00 10116 163 \N 9252 +72540 2025-10-20 15:58:17.247422+00 2025-10-20 15:58:17.24743+00 f t 46000.00 1 46000.00 10116 82 \N 9253 +72541 2025-10-20 15:58:17.251295+00 2025-10-20 15:58:17.251303+00 f t 24000.00 1 24000.00 10116 163 \N 9253 +70392 2025-10-16 15:12:10.869589+00 2025-10-16 15:12:10.869597+00 f t 46000.00 1 46000.00 9791 82 \N 9020 +70393 2025-10-16 15:12:10.874153+00 2025-10-16 15:12:10.874161+00 f t 8000.00 1 8000.00 9791 85 \N 9020 +70394 2025-10-16 15:12:10.877769+00 2025-10-16 15:12:10.877776+00 f t 24000.00 1 24000.00 9791 163 \N 9020 +70415 2025-10-16 16:32:09.744239+00 2025-10-16 16:32:09.744247+00 f t 55000.00 1 55000.00 9798 84 \N 9025 +70450 2025-10-16 21:28:21.283428+00 2025-10-16 21:28:21.283436+00 f t 55000.00 1 55000.00 9820 84 \N 8812 +70466 2025-10-16 23:10:26.060029+00 2025-10-16 23:10:26.060038+00 f t 55000.00 1 55000.00 9834 84 \N 9042 +72619 2025-10-20 18:02:19.022691+00 2025-10-20 18:02:19.022704+00 f t 46000.00 1 46000.00 10124 82 \N 9260 +72620 2025-10-20 18:02:19.029807+00 2025-10-20 18:02:19.029819+00 f t 8000.00 1 8000.00 10124 85 \N 9260 +70486 2025-10-17 00:48:26.194139+00 2025-10-17 00:48:26.194148+00 f t 46000.00 1 46000.00 9848 82 \N 9059 +70487 2025-10-17 00:48:26.198757+00 2025-10-17 00:48:26.198766+00 f t 46000.00 1 46000.00 9848 82 \N 9060 +72621 2025-10-20 18:02:19.03472+00 2025-10-20 18:02:19.03473+00 f t 24000.00 1 24000.00 10124 163 \N 9260 +72626 2025-10-20 18:27:43.040638+00 2025-10-20 18:27:43.040646+00 f t 46000.00 1 46000.00 10127 82 \N 9262 +72632 2025-10-20 19:11:39.637601+00 2025-10-20 19:11:39.637614+00 f t 46000.00 1 46000.00 10134 82 \N 9269 +72633 2025-10-20 19:11:39.643435+00 2025-10-20 19:11:39.643443+00 f t 24000.00 1 24000.00 10134 86 \N 9269 +72642 2025-10-20 19:12:50.20603+00 2025-10-20 19:12:50.206038+00 f t 46000.00 1 46000.00 10133 82 \N 9268 +72643 2025-10-20 19:12:50.211483+00 2025-10-20 19:12:50.211491+00 f t 7700.00 1 7700.00 10133 91 \N 9268 +72650 2025-10-20 19:52:13.972169+00 2025-10-20 19:52:13.972178+00 f t 20500.00 1 20500.00 10139 109 \N 9272 +72651 2025-10-20 19:52:13.977865+00 2025-10-20 19:52:13.977875+00 f t 7700.00 1 7700.00 10139 93 \N 9272 +72652 2025-10-20 19:52:13.98222+00 2025-10-20 19:52:13.982229+00 f t 13200.00 1 13200.00 10139 146 \N 9272 +72653 2025-10-20 19:52:13.98822+00 2025-10-20 19:52:13.988228+00 f t 46000.00 1 46000.00 10139 82 \N 9272 +72658 2025-10-20 20:50:28.365123+00 2025-10-20 20:50:28.365133+00 f t 30000.00 1 30000.00 10141 83 \N 9274 +72682 2025-10-20 21:52:12.647538+00 2025-10-20 21:52:12.647548+00 f t 46000.00 1 46000.00 10146 82 \N 9281 +72683 2025-10-20 21:52:12.652938+00 2025-10-20 21:52:12.652946+00 f t 8000.00 1 8000.00 10146 85 \N 9281 +72703 2025-10-20 22:06:46.354045+00 2025-10-20 22:06:46.354054+00 f t 46000.00 1 46000.00 10148 82 \N 9283 +72713 2025-10-20 23:20:11.438064+00 2025-10-20 23:20:11.438076+00 f t 46000.00 1 46000.00 10154 82 \N 9287 +70699 2025-10-17 11:40:31.856401+00 2025-10-17 11:40:31.856413+00 f t 55000.00 1 55000.00 9881 84 \N 9082 +70700 2025-10-17 11:40:31.861549+00 2025-10-17 11:40:31.861557+00 f t 78000.00 1 78000.00 9881 167 \N 9082 +70717 2025-10-17 11:48:49.231025+00 2025-10-17 11:48:49.231034+00 f t 46000.00 1 46000.00 9882 82 \N 9083 +70718 2025-10-17 11:48:49.236671+00 2025-10-17 11:48:49.236682+00 f t 8000.00 1 8000.00 9882 85 \N 9083 +70734 2025-10-17 12:06:37.928846+00 2025-10-17 12:06:37.928855+00 f t 55000.00 1 55000.00 9830 84 \N 9039 +70736 2025-10-17 12:19:22.797491+00 2025-10-17 12:19:22.797499+00 f t 46000.00 1 46000.00 9886 82 \N 9086 +70739 2025-10-17 13:28:13.361787+00 2025-10-17 13:28:13.361795+00 f t 55000.00 1 55000.00 9883 84 \N 827 +70746 2025-10-17 13:42:17.076855+00 2025-10-17 13:42:17.076864+00 f t 46000.00 1 46000.00 9888 82 \N 9067 +70747 2025-10-17 13:42:17.08257+00 2025-10-17 13:42:17.082582+00 f t 24000.00 1 24000.00 9888 163 \N 9067 +70750 2025-10-17 13:52:01.930206+00 2025-10-17 13:52:01.930218+00 f t 55000.00 1 55000.00 9892 84 \N 8812 +70753 2025-10-17 14:41:20.005368+00 2025-10-17 14:41:20.00538+00 f t 46000.00 1 46000.00 9863 82 \N 9067 +70754 2025-10-17 14:41:20.01274+00 2025-10-17 14:41:20.012752+00 f t 8000.00 1 8000.00 9863 85 \N 9067 +70755 2025-10-17 14:41:20.018916+00 2025-10-17 14:41:20.018929+00 f t 24000.00 1 24000.00 9863 163 \N 9067 +70757 2025-10-17 14:59:31.952722+00 2025-10-17 14:59:31.952735+00 f t 46000.00 1 46000.00 9893 82 \N 9090 +70759 2025-10-17 15:44:19.169273+00 2025-10-17 15:44:19.169285+00 f t 107000.00 1 107000.00 9897 103 \N 9091 +70765 2025-10-17 16:18:48.495788+00 2025-10-17 16:18:48.496384+00 f t 55000.00 1 55000.00 9901 84 \N 9094 +70773 2025-10-17 16:27:56.916898+00 2025-10-17 16:27:56.916907+00 f t 55000.00 1 55000.00 9903 84 \N 9096 +70777 2025-10-17 16:47:24.561138+00 2025-10-17 16:47:24.561147+00 f t 30000.00 1 30000.00 9904 83 \N 9097 +70791 2025-10-17 17:16:33.408472+00 2025-10-17 17:16:33.40848+00 f t 23000.00 1 23000.00 9905 172 \N 9098 +77114 2025-11-01 00:57:20.340228+00 2025-11-01 00:57:20.340238+00 f t 75000.00 1 75000.00 11140 108 \N 10021 +69956 2025-10-15 21:55:51.635922+00 2025-10-15 21:55:51.635931+00 f t 46000.00 1 46000.00 9737 82 \N 8979 +69957 2025-10-15 21:55:51.641222+00 2025-10-15 21:55:51.641231+00 f t 24000.00 1 24000.00 9737 86 \N 8979 +72131 2025-10-19 22:04:24.107989+00 2025-10-19 22:04:24.107998+00 f t 60000.00 1 60000.00 10046 101 \N 9205 +69987 2025-10-15 23:03:54.424766+00 2025-10-15 23:03:54.424778+00 f t 46000.00 1 46000.00 9745 82 \N 8983 +72229 2025-10-20 11:39:58.353297+00 2025-10-20 11:39:58.353307+00 f t 55000.00 1 55000.00 10079 84 \N 9225 +72287 2025-10-20 12:18:45.864285+00 2025-10-20 12:18:45.864294+00 f t 82000.00 1 82000.00 10082 97 \N 9229 +70220 2025-10-16 00:14:18.480059+00 2025-10-16 00:14:18.480069+00 f t 55000.00 1 55000.00 9756 84 \N 8991 +70235 2025-10-16 03:22:41.429464+00 2025-10-16 03:22:41.429474+00 f t 55000.00 1 55000.00 9761 84 \N 8995 +70240 2025-10-16 09:15:20.834009+00 2025-10-16 09:15:20.834018+00 f t 78000.00 1 78000.00 9766 167 \N 8998 +70293 2025-10-16 11:56:25.790465+00 2025-10-16 11:56:25.790477+00 f t 75000.00 1 75000.00 9773 108 \N 9004 +70313 2025-10-16 13:01:06.576703+00 2025-10-16 13:01:06.576712+00 f t 46000.00 1 46000.00 9778 82 \N 9007 +70314 2025-10-16 13:01:06.582689+00 2025-10-16 13:01:06.5827+00 f t 8000.00 1 8000.00 9778 85 \N 9007 +68535 2025-10-13 02:40:43.970903+00 2025-10-13 02:40:43.970914+00 f t 46000.00 1 46000.00 9483 82 \N 8778 +68536 2025-10-13 02:40:43.976463+00 2025-10-13 02:40:43.976473+00 f t 8000.00 1 8000.00 9483 85 \N 8778 +68537 2025-10-13 02:40:43.99261+00 2025-10-13 02:40:43.99262+00 f t 24000.00 1 24000.00 9483 88 \N 8778 +68538 2025-10-13 02:40:43.99844+00 2025-10-13 02:40:43.99845+00 f t 24000.00 1 24000.00 9483 163 \N 8778 +70374 2025-10-16 15:03:31.044463+00 2025-10-16 15:03:31.044472+00 f t 46000.00 1 46000.00 9790 82 \N 9019 +70416 2025-10-16 16:39:56.505331+00 2025-10-16 16:39:56.505339+00 f t 55000.00 1 55000.00 9795 84 \N 9023 +70431 2025-10-16 17:17:01.374549+00 2025-10-16 17:17:01.374561+00 f t 46000.00 1 46000.00 9802 82 \N 9028 +70432 2025-10-16 17:17:01.381434+00 2025-10-16 17:17:01.381447+00 f t 24000.00 1 24000.00 9802 87 \N 9028 +70446 2025-10-16 20:07:51.340572+00 2025-10-16 20:07:51.340581+00 f t 46000.00 1 46000.00 9814 82 \N 9032 +68564 2025-10-13 02:58:23.678244+00 2025-10-13 02:58:23.678254+00 f t 80000.00 1 80000.00 9469 173 \N 8767 +68567 2025-10-13 03:02:04.857367+00 2025-10-13 03:02:04.85738+00 f t 46000.00 1 46000.00 9488 82 \N 8786 +70475 2025-10-17 00:07:18.945193+00 2025-10-17 00:07:18.945205+00 f t 46000.00 1 46000.00 9844 82 \N 9053 +70479 2025-10-17 00:32:00.122877+00 2025-10-17 00:32:00.122888+00 f t 55000.00 1 55000.00 9847 84 \N 9055 +68576 2025-10-13 04:44:35.353418+00 2025-10-13 04:44:35.353428+00 f t 55000.00 1 55000.00 9491 84 \N 8788 +68580 2025-10-13 04:45:00.556019+00 2025-10-13 04:45:00.556033+00 f t 46000.00 1 46000.00 9490 82 \N 8787 +68589 2025-10-13 04:46:57.070707+00 2025-10-13 04:46:57.070716+00 f t 107000.00 1 107000.00 9492 103 \N 8789 +68590 2025-10-13 04:46:57.079399+00 2025-10-13 04:46:57.079409+00 f t 55000.00 1 55000.00 9492 84 \N 8789 +68594 2025-10-13 04:49:20.219638+00 2025-10-13 04:49:20.219651+00 f t 20500.00 1 20500.00 9493 109 \N 8790 +68595 2025-10-13 04:49:20.225458+00 2025-10-13 04:49:20.22547+00 f t 7700.00 1 7700.00 9493 93 \N 8790 +68596 2025-10-13 04:49:20.230629+00 2025-10-13 04:49:20.230641+00 f t 13200.00 1 13200.00 9493 146 \N 8790 +68597 2025-10-13 04:49:20.235639+00 2025-10-13 04:49:20.23565+00 f t 46000.00 1 46000.00 9493 82 \N 8790 +70571 2025-10-17 03:08:54.184274+00 2025-10-17 03:08:54.184284+00 f t 30000.00 1 30000.00 9864 83 \N 9069 +68620 2025-10-13 05:38:09.414247+00 2025-10-13 05:38:09.414256+00 f t 46000.00 1 46000.00 9496 82 \N 8791 +68621 2025-10-13 05:38:09.419627+00 2025-10-13 05:38:09.419636+00 f t 24000.00 1 24000.00 9496 88 \N 8791 +70636 2025-10-17 03:35:07.543372+00 2025-10-17 03:35:07.543382+00 f t 46000.00 1 46000.00 9868 82 \N 9067 +70637 2025-10-17 03:35:07.549104+00 2025-10-17 03:35:07.549116+00 f t 24000.00 1 24000.00 9868 163 \N 9067 +70656 2025-10-17 03:40:26.301702+00 2025-10-17 03:40:26.301714+00 f t 46000.00 1 46000.00 9870 82 \N 9067 +70657 2025-10-17 03:40:26.307571+00 2025-10-17 03:40:26.307581+00 f t 24000.00 1 24000.00 9870 163 \N 9067 +70664 2025-10-17 03:45:22.129276+00 2025-10-17 03:45:22.129285+00 f t 46000.00 1 46000.00 9871 82 \N 9067 +70665 2025-10-17 03:45:22.13429+00 2025-10-17 03:45:22.134299+00 f t 24000.00 1 24000.00 9871 163 \N 9067 +70670 2025-10-17 03:53:04.4679+00 2025-10-17 03:53:04.467908+00 f t 93750.00 1 93750.00 9872 90 \N 9076 +70671 2025-10-17 03:53:04.4738+00 2025-10-17 03:53:04.473811+00 f t 46000.00 1 46000.00 9872 82 \N 9076 +70674 2025-10-17 04:33:41.683387+00 2025-10-17 04:33:41.683396+00 f t 1000.00 1 1000.00 9874 170 \N 9078 +70675 2025-10-17 04:33:41.689415+00 2025-10-17 04:33:41.68943+00 f t 46000.00 1 46000.00 9874 82 \N 9078 +70677 2025-10-17 04:34:48.350477+00 2025-10-17 04:34:48.350486+00 f t 55000.00 1 55000.00 9875 84 \N 9079 +70679 2025-10-17 09:40:46.413594+00 2025-10-17 09:40:46.413602+00 f t 46000.00 1 46000.00 9877 82 \N 9081 +70733 2025-10-17 11:53:56.144685+00 2025-10-17 11:53:56.144697+00 f t 55000.00 1 55000.00 9885 84 \N 9085 +70737 2025-10-17 12:39:07.012553+00 2025-10-17 12:39:07.012561+00 f t 24000.00 1 24000.00 9887 86 \N 9087 +70738 2025-10-17 12:39:07.017492+00 2025-10-17 12:39:07.0175+00 f t 46000.00 1 46000.00 9887 82 \N 9087 +70748 2025-10-17 13:46:13.544841+00 2025-10-17 13:46:13.544853+00 f t 24000.00 1 24000.00 9891 86 \N 9089 +70749 2025-10-17 13:46:13.552499+00 2025-10-17 13:46:13.552511+00 f t 46000.00 1 46000.00 9891 82 \N 9089 +70758 2025-10-17 15:41:09.415188+00 2025-10-17 15:41:09.415199+00 f t 75000.00 1 75000.00 9896 108 \N 9091 +70764 2025-10-17 16:18:43.437357+00 2025-10-17 16:18:43.437386+00 f t 46000.00 1 46000.00 9900 82 \N 9093 +68708 2025-10-13 06:43:58.341112+00 2025-10-13 06:43:58.341122+00 f t 46000.00 1 46000.00 9497 82 \N 8792 +68709 2025-10-13 06:43:58.345908+00 2025-10-13 06:43:58.345916+00 f t 24000.00 1 24000.00 9497 163 \N 8792 +68710 2025-10-13 06:43:58.349802+00 2025-10-13 06:43:58.34981+00 f t 46000.00 1 46000.00 9497 82 \N 8793 +68711 2025-10-13 06:43:58.353406+00 2025-10-13 06:43:58.353413+00 f t 24000.00 1 24000.00 9497 163 \N 8793 +68712 2025-10-13 06:43:58.356851+00 2025-10-13 06:43:58.356858+00 f t 46000.00 1 46000.00 9497 82 \N 8794 +68713 2025-10-13 06:43:58.360385+00 2025-10-13 06:43:58.360391+00 f t 24000.00 1 24000.00 9497 163 \N 8794 +68715 2025-10-13 07:45:00.137318+00 2025-10-13 07:45:00.137327+00 f t 46000.00 1 46000.00 9498 82 \N 8795 +68717 2025-10-13 08:18:52.568367+00 2025-10-13 08:18:52.568378+00 f t 55000.00 1 55000.00 9499 84 \N 8796 +68720 2025-10-13 08:20:42.391057+00 2025-10-13 08:20:42.39107+00 f t 55000.00 1 55000.00 9500 84 \N 8797 +68722 2025-10-13 10:35:35.681717+00 2025-10-13 10:35:35.681726+00 f t 55000.00 1 55000.00 9502 84 \N 8798 +70808 2025-10-17 17:20:22.525319+00 2025-10-17 17:20:22.525328+00 f t 23000.00 1 23000.00 9906 172 \N 8997 +69944 2025-10-15 21:55:19.835033+00 2025-10-15 21:55:19.835041+00 f t 46000.00 1 46000.00 9738 82 \N 8980 +69945 2025-10-15 21:55:19.841268+00 2025-10-15 21:55:19.841277+00 f t 24000.00 1 24000.00 9738 163 \N 8980 +72142 2025-10-20 01:05:56.716047+00 2025-10-20 01:05:56.716056+00 f t 46000.00 1 46000.00 10059 82 \N 9211 +72143 2025-10-20 01:05:56.721869+00 2025-10-20 01:05:56.721878+00 f t 24000.00 1 24000.00 10059 163 \N 9211 +74523 2025-10-25 00:31:57.831397+00 2025-10-25 00:31:57.831407+00 f t 46000.00 1 46000.00 10469 82 \N 9511 +74524 2025-10-25 00:31:57.840072+00 2025-10-25 00:31:57.840084+00 f t 30000.00 1 30000.00 10469 83 \N 9511 +68765 2025-10-13 12:03:54.410783+00 2025-10-13 12:03:54.410796+00 f t 46000.00 1 46000.00 9506 82 \N 8801 +74539 2025-10-25 07:29:33.172514+00 2025-10-25 07:29:33.172526+00 f t 55000.00 1 55000.00 10477 84 \N 9518 +68773 2025-10-13 12:10:18.278627+00 2025-10-13 12:10:18.27864+00 f t 46000.00 1 46000.00 9507 82 \N 8802 +68774 2025-10-13 12:10:18.28491+00 2025-10-13 12:10:18.284918+00 f t 46000.00 1 46000.00 9507 82 \N 8803 +68775 2025-10-13 12:48:59.657459+00 2025-10-13 12:48:59.657468+00 f t 55000.00 1 55000.00 9508 84 \N 7841 +68776 2025-10-13 13:10:55.910841+00 2025-10-13 13:10:55.910849+00 f t 46000.00 1 46000.00 9509 82 \N 4122 +72288 2025-10-20 12:58:54.496824+00 2025-10-20 12:58:54.496832+00 f t 55000.00 1 55000.00 10086 84 \N 519 +68809 2025-10-13 13:22:18.410435+00 2025-10-13 13:22:18.410443+00 f t 31500.00 1 31500.00 9510 111 \N 8804 +68810 2025-10-13 13:22:18.41561+00 2025-10-13 13:22:18.415618+00 f t 46000.00 1 46000.00 9510 82 \N 8804 +68811 2025-10-13 13:22:18.419651+00 2025-10-13 13:22:18.41966+00 f t 68000.00 1 68000.00 9510 106 \N 8804 +68812 2025-10-13 13:22:18.423401+00 2025-10-13 13:22:18.42341+00 f t 7700.00 1 7700.00 9510 93 \N 8804 +68813 2025-10-13 13:22:18.42731+00 2025-10-13 13:22:18.42732+00 f t 75000.00 1 75000.00 9510 108 \N 8804 +68814 2025-10-13 13:22:18.431071+00 2025-10-13 13:22:18.431078+00 f t 13200.00 1 13200.00 9510 146 \N 8804 +68817 2025-10-13 13:23:59.856302+00 2025-10-13 13:23:59.85631+00 f t 55000.00 1 55000.00 9504 84 \N 8799 +68820 2025-10-13 13:44:28.835828+00 2025-10-13 13:44:28.83584+00 f t 68000.00 1 68000.00 9514 106 \N 8808 +68822 2025-10-13 13:47:41.631725+00 2025-10-13 13:47:41.631736+00 f t 55000.00 1 55000.00 9515 84 \N 8809 +68825 2025-10-13 13:51:56.077208+00 2025-10-13 13:51:56.077218+00 f t 46000.00 1 46000.00 9517 82 \N 8810 +68831 2025-10-13 13:56:29.605331+00 2025-10-13 13:56:29.605341+00 f t 55000.00 1 55000.00 9518 84 \N 8811 +68832 2025-10-13 14:02:25.449634+00 2025-10-13 14:02:25.449646+00 f t 107000.00 1 107000.00 9519 103 \N 128 +68845 2025-10-13 14:30:29.9846+00 2025-10-13 14:30:29.984612+00 f t 46000.00 1 46000.00 9522 82 \N 8813 +68846 2025-10-13 14:37:31.368292+00 2025-10-13 14:37:31.368304+00 f t 23000.00 1 23000.00 9523 172 \N 5994 +68847 2025-10-13 14:42:18.772653+00 2025-10-13 14:42:18.772664+00 f t 55000.00 1 55000.00 9525 84 \N 8814 +68851 2025-10-13 14:47:57.593231+00 2025-10-13 14:47:57.593241+00 f t 55000.00 1 55000.00 9527 84 \N 8816 +68891 2025-10-13 14:50:08.907724+00 2025-10-13 14:50:08.907738+00 f t 46000.00 1 46000.00 9528 82 \N 8817 +68892 2025-10-13 14:50:08.915233+00 2025-10-13 14:50:08.915242+00 f t 7700.00 1 7700.00 9528 93 \N 8817 +68906 2025-10-13 14:59:12.89476+00 2025-10-13 14:59:12.894772+00 f t 46000.00 1 46000.00 9534 82 \N 8822 +68908 2025-10-13 15:16:13.315412+00 2025-10-13 15:16:13.315422+00 f t 46000.00 1 46000.00 9537 82 \N 8823 +68910 2025-10-13 15:18:50.61331+00 2025-10-13 15:18:50.613322+00 f t 80000.00 1 80000.00 9538 173 \N 8824 +68911 2025-10-13 15:20:35.626692+00 2025-10-13 15:20:35.626702+00 f t 46000.00 1 46000.00 9539 82 \N 8825 +68914 2025-10-13 15:24:40.706793+00 2025-10-13 15:24:40.706802+00 f t 46000.00 1 46000.00 9540 82 \N 407 +68915 2025-10-13 15:24:40.710898+00 2025-10-13 15:24:40.710905+00 f t 8000.00 1 8000.00 9540 85 \N 407 +68916 2025-10-13 15:24:40.714432+00 2025-10-13 15:24:40.714438+00 f t 24000.00 1 24000.00 9540 163 \N 407 +68919 2025-10-13 15:28:11.214999+00 2025-10-13 15:28:11.215007+00 f t 46000.00 1 46000.00 9541 82 \N 8826 +68932 2025-10-13 15:55:58.118589+00 2025-10-13 15:55:58.118598+00 f t 46000.00 1 46000.00 9532 82 \N 8819 +68933 2025-10-13 15:55:58.125392+00 2025-10-13 15:55:58.125404+00 f t 46000.00 1 46000.00 9532 82 \N 8821 +68934 2025-10-13 15:55:58.130789+00 2025-10-13 15:55:58.1308+00 f t 8000.00 1 8000.00 9532 85 \N 8821 +68935 2025-10-13 15:55:58.136046+00 2025-10-13 15:55:58.136054+00 f t 8000.00 1 8000.00 9532 85 \N 8819 +68936 2025-10-13 15:55:58.141124+00 2025-10-13 15:55:58.141133+00 f t 24000.00 1 24000.00 9532 163 \N 8819 +68937 2025-10-13 15:55:58.146241+00 2025-10-13 15:55:58.146253+00 f t 24000.00 1 24000.00 9532 163 \N 8821 +68939 2025-10-13 15:59:57.172107+00 2025-10-13 15:59:57.172121+00 f t 82000.00 1 82000.00 9543 97 \N 8828 +68941 2025-10-13 16:09:52.064621+00 2025-10-13 16:09:52.06463+00 f t 46000.00 1 46000.00 9544 82 \N 8829 +68942 2025-10-13 16:20:20.957623+00 2025-10-13 16:20:20.957631+00 f t 30000.00 1 30000.00 9545 83 \N 7557 +68956 2025-10-13 16:46:42.393891+00 2025-10-13 16:46:42.393901+00 f t 46000.00 1 46000.00 9547 82 \N 8831 +68957 2025-10-13 16:49:02.73026+00 2025-10-13 16:49:02.730274+00 f t 55000.00 1 55000.00 9548 84 \N 6902 +68980 2025-10-13 17:07:55.567736+00 2025-10-13 17:07:55.567749+00 f t 46000.00 1 46000.00 9550 82 \N 8832 +68981 2025-10-13 17:07:55.577407+00 2025-10-13 17:07:55.577421+00 f t 8000.00 1 8000.00 9550 85 \N 8832 +68982 2025-10-13 17:07:55.58481+00 2025-10-13 17:07:55.584821+00 f t 24000.00 1 24000.00 9550 163 \N 8832 +68990 2025-10-13 17:48:59.067081+00 2025-10-13 17:48:59.067093+00 f t 46000.00 1 46000.00 9520 82 \N 8812 +68992 2025-10-13 17:55:29.254785+00 2025-10-13 17:55:29.254794+00 f t 30000.00 1 30000.00 9553 83 \N 8835 +68995 2025-10-13 18:15:36.295224+00 2025-10-13 18:15:36.295233+00 f t 46000.00 1 46000.00 9552 82 \N 8834 +68996 2025-10-13 18:15:36.300332+00 2025-10-13 18:15:36.300344+00 f t 24000.00 1 24000.00 9552 88 \N 8834 +69001 2025-10-13 18:38:28.206944+00 2025-10-13 18:38:28.206955+00 f t 30000.00 1 30000.00 9557 83 \N 8836 +69003 2025-10-13 18:40:01.456007+00 2025-10-13 18:40:01.456022+00 f t 55000.00 1 55000.00 9558 84 \N 8837 +69005 2025-10-13 18:57:00.151109+00 2025-10-13 18:57:00.151118+00 f t 55000.00 1 55000.00 9546 84 \N 8830 +69006 2025-10-13 18:59:44.245823+00 2025-10-13 18:59:44.245834+00 f t 68000.00 1 68000.00 9560 106 \N 128 +69007 2025-10-13 19:57:16.863452+00 2025-10-13 19:57:16.863462+00 f t 60000.00 1 60000.00 9562 169 \N 8838 +69009 2025-10-13 20:20:46.968251+00 2025-10-13 20:20:46.968264+00 f t 46000.00 1 46000.00 9563 82 \N 8839 +69024 2025-10-13 20:59:24.957016+00 2025-10-13 20:59:24.957024+00 f t 78000.00 1 78000.00 9564 167 \N 8840 +69028 2025-10-13 21:01:55.330856+00 2025-10-13 21:01:55.330866+00 f t 68000.00 1 68000.00 9565 106 \N 8841 +69032 2025-10-13 21:05:11.518477+00 2025-10-13 21:05:11.518489+00 f t 78000.00 1 78000.00 9566 167 \N 8842 +69034 2025-10-13 22:02:57.989898+00 2025-10-13 22:02:57.990448+00 f t 46000.00 1 46000.00 9570 82 \N 8845 +69046 2025-10-13 22:38:07.390415+00 2025-10-13 22:38:07.390425+00 f t 80000.00 1 80000.00 9572 173 \N 8847 +69048 2025-10-13 22:47:06.170193+00 2025-10-13 22:47:06.170202+00 f t 46000.00 1 46000.00 9573 82 \N 8848 +69050 2025-10-13 22:50:18.623001+00 2025-10-13 22:50:18.62301+00 f t 30000.00 1 30000.00 9574 83 \N 8849 +69052 2025-10-13 23:19:57.782267+00 2025-10-13 23:19:57.782276+00 f t 68000.00 1 68000.00 9578 106 \N 8850 +69989 2025-10-15 23:34:42.680721+00 2025-10-15 23:34:42.68073+00 f t 30000.00 1 30000.00 9750 83 \N 8986 +69071 2025-10-13 23:23:58.011873+00 2025-10-13 23:23:58.011881+00 f t 46000.00 1 46000.00 9577 82 \N 8851 +69072 2025-10-13 23:23:58.018693+00 2025-10-13 23:23:58.018703+00 f t 24000.00 1 24000.00 9577 86 \N 8851 +70205 2025-10-15 23:59:12.601908+00 2025-10-15 23:59:12.601917+00 f t 32500.00 1 32500.00 9754 112 \N 8989 +70206 2025-10-15 23:59:12.607362+00 2025-10-15 23:59:12.607369+00 f t 20500.00 1 20500.00 9754 109 \N 8989 +70207 2025-10-15 23:59:12.611768+00 2025-10-15 23:59:12.611776+00 f t 46000.00 1 46000.00 9754 82 \N 8989 +69095 2025-10-13 23:27:36.11758+00 2025-10-13 23:27:36.117591+00 f t 46000.00 1 46000.00 9579 82 \N 8852 +69096 2025-10-13 23:27:36.123074+00 2025-10-13 23:27:36.123084+00 f t 24000.00 1 24000.00 9579 86 \N 8852 +70208 2025-10-15 23:59:12.61635+00 2025-10-15 23:59:12.616359+00 f t 7700.00 1 7700.00 9754 93 \N 8989 +70209 2025-10-15 23:59:12.621192+00 2025-10-15 23:59:12.6212+00 f t 13200.00 1 13200.00 9754 146 \N 8989 +69100 2025-10-13 23:35:29.537874+00 2025-10-13 23:35:29.537882+00 f t 82000.00 1 82000.00 9580 97 \N 8854 +69102 2025-10-13 23:50:19.222205+00 2025-10-13 23:50:19.222214+00 f t 46000.00 1 46000.00 9581 82 \N 8855 +69103 2025-10-13 23:56:46.692724+00 2025-10-13 23:56:46.692733+00 f t 7700.00 1 7700.00 9582 91 \N 7837 +69104 2025-10-13 23:56:46.699229+00 2025-10-13 23:56:46.699238+00 f t 46000.00 1 46000.00 9582 82 \N 7837 +70226 2025-10-16 02:24:45.269325+00 2025-10-16 02:24:45.269334+00 f t 55000.00 1 55000.00 9759 84 \N 8993 +70280 2025-10-16 09:56:54.482357+00 2025-10-16 09:56:54.482366+00 f t 46000.00 1 46000.00 9769 82 \N 9000 +70306 2025-10-16 12:38:40.771551+00 2025-10-16 12:38:40.77156+00 f t 55000.00 1 55000.00 9776 84 \N 9006 +70321 2025-10-16 13:09:57.357412+00 2025-10-16 13:09:57.357421+00 f t 46000.00 1 46000.00 9782 82 \N 9011 +70433 2025-10-16 17:59:57.503014+00 2025-10-16 17:59:57.503024+00 f t 46000.00 1 46000.00 9807 82 \N 9029 +70440 2025-10-16 18:53:30.842865+00 2025-10-16 18:53:30.842877+00 f t 46000.00 1 46000.00 9809 82 \N 9030 +70441 2025-10-16 18:53:30.848772+00 2025-10-16 18:53:30.848784+00 f t 7700.00 1 7700.00 9809 93 \N 9030 +70442 2025-10-16 18:53:30.853867+00 2025-10-16 18:53:30.853879+00 f t 13200.00 1 13200.00 9809 146 \N 9030 +70447 2025-10-16 20:51:18.113978+00 2025-10-16 20:51:18.11399+00 f t 46000.00 1 46000.00 9817 82 \N 9033 +70460 2025-10-16 21:55:59.646666+00 2025-10-16 21:55:59.646675+00 f t 46000.00 1 46000.00 9825 82 \N 9036 +70468 2025-10-16 23:40:29.865375+00 2025-10-16 23:40:29.865384+00 f t 57000.00 1 57000.00 9843 98 \N 9052 +70476 2025-10-17 00:18:18.742408+00 2025-10-17 00:18:18.742417+00 f t 30000.00 1 30000.00 9846 83 \N 9054 +70490 2025-10-17 00:59:35.983012+00 2025-10-17 00:59:35.983023+00 f t 46000.00 1 46000.00 9850 82 \N 9061 +70491 2025-10-17 00:59:35.988906+00 2025-10-17 00:59:35.988918+00 f t 24000.00 1 24000.00 9850 163 \N 9061 +70530 2025-10-17 01:44:19.173837+00 2025-10-17 01:44:19.173847+00 f t 46000.00 1 46000.00 9857 82 \N 9065 +70531 2025-10-17 01:44:19.17986+00 2025-10-17 01:44:19.179868+00 f t 8000.00 1 8000.00 9857 85 \N 9065 +70532 2025-10-17 01:44:19.184127+00 2025-10-17 01:44:19.184136+00 f t 24000.00 1 24000.00 9857 163 \N 9065 +70556 2025-10-17 03:08:02.390327+00 2025-10-17 03:08:02.390335+00 f t 46000.00 1 46000.00 9862 82 \N 9068 +70557 2025-10-17 03:08:02.396419+00 2025-10-17 03:08:02.396428+00 f t 24000.00 1 24000.00 9862 86 \N 9068 +69186 2025-10-14 00:04:50.562189+00 2025-10-14 00:04:50.562198+00 f t 13200.00 1 13200.00 9583 146 \N 8856 +69187 2025-10-14 00:06:08.002901+00 2025-10-14 00:06:08.002914+00 f t 78000.00 1 78000.00 9584 167 \N 8857 +69188 2025-10-14 00:09:55.616744+00 2025-10-14 00:09:55.616754+00 f t 78000.00 1 78000.00 9585 167 \N 3826 +69191 2025-10-14 00:15:00.426426+00 2025-10-14 00:15:00.426437+00 f t 46000.00 1 46000.00 9586 82 \N 8858 +69192 2025-10-14 00:15:00.432117+00 2025-10-14 00:15:00.432128+00 f t 8000.00 1 8000.00 9586 85 \N 8858 +69193 2025-10-14 00:15:00.437446+00 2025-10-14 00:15:00.437457+00 f t 24000.00 1 24000.00 9586 86 \N 8858 +69210 2025-10-14 00:33:20.565015+00 2025-10-14 00:33:20.565026+00 f t 46000.00 1 46000.00 9588 82 \N 8859 +69211 2025-10-14 00:33:20.570721+00 2025-10-14 00:33:20.57073+00 f t 8000.00 1 8000.00 9588 85 \N 8859 +69223 2025-10-14 00:46:50.524546+00 2025-10-14 00:46:50.524554+00 f t 55000.00 1 55000.00 9589 84 \N 8862 +69244 2025-10-14 01:14:02.584254+00 2025-10-14 01:14:02.584267+00 f t 46000.00 1 46000.00 9591 82 \N 8864 +69245 2025-10-14 01:14:02.590557+00 2025-10-14 01:14:02.590568+00 f t 24000.00 1 24000.00 9591 86 \N 8864 +69250 2025-10-14 01:16:54.347029+00 2025-10-14 01:16:54.347038+00 f t 46000.00 1 46000.00 9592 82 \N 8865 +69251 2025-10-14 01:16:54.351666+00 2025-10-14 01:16:54.351675+00 f t 8000.00 1 8000.00 9592 85 \N 8865 +69253 2025-10-14 01:25:05.997169+00 2025-10-14 01:25:05.997183+00 f t 55000.00 1 55000.00 9593 84 \N 8866 +69260 2025-10-14 01:41:48.908593+00 2025-10-14 01:41:48.908947+00 f t 46000.00 1 46000.00 9594 82 \N 8867 +69261 2025-10-14 01:41:48.917334+00 2025-10-14 01:41:48.917344+00 f t 46000.00 1 46000.00 9594 82 \N 8868 +69268 2025-10-14 02:53:43.913128+00 2025-10-14 02:53:43.913141+00 f t 46000.00 1 46000.00 9595 82 \N 8869 +69269 2025-10-14 02:53:43.919782+00 2025-10-14 02:53:43.91979+00 f t 8000.00 1 8000.00 9595 85 \N 8869 +69271 2025-10-14 03:00:49.504485+00 2025-10-14 03:00:49.504495+00 f t 55000.00 1 55000.00 9596 84 \N 8870 +69275 2025-10-14 03:21:19.83273+00 2025-10-14 03:21:19.832742+00 f t 55000.00 1 55000.00 9598 84 \N 8872 +69277 2025-10-14 03:22:45.724161+00 2025-10-14 03:22:45.72417+00 f t 55000.00 1 55000.00 9597 84 \N 8871 +69281 2025-10-14 08:12:10.037673+00 2025-10-14 08:12:10.037682+00 f t 46000.00 1 46000.00 9603 82 \N 8875 +69302 2025-10-14 12:39:20.957452+00 2025-10-14 12:39:20.95746+00 f t 46000.00 1 46000.00 9605 82 \N 8877 +69303 2025-10-14 12:39:20.962984+00 2025-10-14 12:39:20.962992+00 f t 75000.00 1 75000.00 9605 142 \N 8877 +69305 2025-10-14 13:32:05.118447+00 2025-10-14 13:32:05.118461+00 f t 46000.00 1 46000.00 9607 82 \N 8879 +69324 2025-10-14 13:56:31.887783+00 2025-10-14 13:56:31.887797+00 f t 46000.00 1 46000.00 9609 82 \N 8881 +69325 2025-10-14 13:56:31.894232+00 2025-10-14 13:56:31.894244+00 f t 46000.00 1 46000.00 9609 82 \N 8882 +69326 2025-10-14 13:56:31.899273+00 2025-10-14 13:56:31.899284+00 f t 8000.00 1 8000.00 9609 85 \N 8882 +69331 2025-10-14 14:38:24.864094+00 2025-10-14 14:38:24.864103+00 f t 46000.00 1 46000.00 9613 82 \N 8886 +69332 2025-10-14 14:38:24.869368+00 2025-10-14 14:38:24.869376+00 f t 7700.00 1 7700.00 9613 93 \N 8886 +69333 2025-10-14 14:38:24.873974+00 2025-10-14 14:38:24.873982+00 f t 13200.00 1 13200.00 9613 146 \N 8886 +69340 2025-10-14 14:44:33.302634+00 2025-10-14 14:44:33.302643+00 f t 46000.00 1 46000.00 9614 82 \N 8887 +69341 2025-10-14 14:44:33.307597+00 2025-10-14 14:44:33.307605+00 f t 24000.00 1 24000.00 9614 88 \N 8887 +69356 2025-10-14 15:00:57.933468+00 2025-10-14 15:00:57.93348+00 f t 20500.00 1 20500.00 9616 109 \N 8889 +69357 2025-10-14 15:00:57.941387+00 2025-10-14 15:00:57.941399+00 f t 7700.00 1 7700.00 9616 93 \N 8889 +69358 2025-10-14 15:00:57.947342+00 2025-10-14 15:00:57.947352+00 f t 13200.00 1 13200.00 9616 146 \N 8889 +69359 2025-10-14 15:00:57.952651+00 2025-10-14 15:00:57.952663+00 f t 46000.00 1 46000.00 9616 82 \N 8889 +69360 2025-10-14 15:10:20.599796+00 2025-10-14 15:10:20.599807+00 f t 55000.00 1 55000.00 9618 84 \N 3134 +69364 2025-10-14 15:52:25.781639+00 2025-10-14 15:52:25.781648+00 f t 130000.00 1 130000.00 9612 164 \N 8885 +69366 2025-10-14 15:56:11.551972+00 2025-10-14 15:56:11.551983+00 f t 46000.00 1 46000.00 9621 82 \N 8891 +69367 2025-10-14 15:56:11.557677+00 2025-10-14 15:56:11.557688+00 f t 32500.00 1 32500.00 9621 112 \N 8891 +69368 2025-10-14 15:56:11.562853+00 2025-10-14 15:56:11.562864+00 f t 13200.00 1 13200.00 9621 146 \N 8891 +69369 2025-10-14 15:56:11.567294+00 2025-10-14 15:56:11.567305+00 f t 7700.00 1 7700.00 9621 93 \N 8891 +69371 2025-10-14 16:07:08.484563+00 2025-10-14 16:07:08.484573+00 f t 75000.00 1 75000.00 9622 108 \N 8893 +69375 2025-10-14 16:43:55.18944+00 2025-10-14 16:43:55.189452+00 f t 7700.00 1 7700.00 9623 93 \N 8895 +69376 2025-10-14 16:43:55.194297+00 2025-10-14 16:43:55.194305+00 f t 52500.00 1 52500.00 9623 114 \N 8895 +69377 2025-10-14 16:43:55.198193+00 2025-10-14 16:43:55.1982+00 f t 13200.00 1 13200.00 9623 146 \N 8895 +69378 2025-10-14 16:43:55.201991+00 2025-10-14 16:43:55.201998+00 f t 46000.00 1 46000.00 9623 82 \N 8895 +69379 2025-10-14 16:55:18.64881+00 2025-10-14 16:55:18.648818+00 f t 46000.00 1 46000.00 9624 82 \N 8894 +69387 2025-10-14 17:21:43.353581+00 2025-10-14 17:21:43.353589+00 f t 13200.00 1 13200.00 9627 146 \N 8891 +69406 2025-10-14 17:23:57.175379+00 2025-10-14 17:23:57.175387+00 f t 107000.00 1 107000.00 9629 103 \N 8891 +69409 2025-10-14 17:48:49.174125+00 2025-10-14 17:48:49.174134+00 f t 55000.00 1 55000.00 9631 84 \N 8898 +69412 2025-10-14 18:07:46.87088+00 2025-10-14 18:07:46.87089+00 f t 55000.00 1 55000.00 9632 84 \N 8899 +69413 2025-10-14 18:29:05.005798+00 2025-10-14 18:29:05.00581+00 f t 30000.00 1 30000.00 9635 83 \N 8150 +69414 2025-10-14 18:33:28.329396+00 2025-10-14 18:33:28.329405+00 f t 13200.00 1 13200.00 9637 146 \N 8472 +69415 2025-10-14 18:38:56.946492+00 2025-10-14 18:38:56.946501+00 f t 46000.00 1 46000.00 9636 82 \N 8472 +69416 2025-10-14 18:44:54.520116+00 2025-10-14 18:44:54.520124+00 f t 68000.00 1 68000.00 9639 106 \N 8812 +69418 2025-10-14 19:04:00.180017+00 2025-10-14 19:04:00.180027+00 f t 46000.00 1 46000.00 9640 82 \N 8903 +69419 2025-10-14 20:14:14.74183+00 2025-10-14 20:14:14.74184+00 f t 82000.00 1 82000.00 9642 97 \N 7379 +69421 2025-10-14 20:21:05.423551+00 2025-10-14 20:21:05.423564+00 f t 46000.00 1 46000.00 9643 82 \N 8904 +70289 2025-10-16 10:58:03.580246+00 2025-10-16 10:58:03.580254+00 f t 46000.00 1 46000.00 9771 82 \N 9003 +70290 2025-10-16 10:58:03.585055+00 2025-10-16 10:58:03.585062+00 f t 24000.00 1 24000.00 9771 88 \N 9003 +70295 2025-10-16 12:31:12.401844+00 2025-10-16 12:31:12.401855+00 f t 46000.00 1 46000.00 9775 82 \N 9005 +70363 2025-10-16 13:54:54.011202+00 2025-10-16 13:54:54.011216+00 f t 57000.00 1 57000.00 9786 98 \N 7379 +70370 2025-10-16 14:06:33.223763+00 2025-10-16 14:06:33.223773+00 f t 23000.00 1 23000.00 9784 172 \N 9015 +70371 2025-10-16 14:06:33.229387+00 2025-10-16 14:06:33.229398+00 f t 23000.00 1 23000.00 9784 172 \N 9013 +70398 2025-10-16 15:27:02.229614+00 2025-10-16 15:27:02.229623+00 f t 55000.00 1 55000.00 9792 84 \N 9021 +69454 2025-10-14 20:39:32.638034+00 2025-10-14 20:39:32.638043+00 f t 46000.00 1 46000.00 9645 82 \N 8905 +69455 2025-10-14 20:39:32.642563+00 2025-10-14 20:39:32.642571+00 f t 46000.00 1 46000.00 9645 82 \N 8907 +69456 2025-10-14 20:39:32.646526+00 2025-10-14 20:39:32.646533+00 f t 8000.00 1 8000.00 9645 85 \N 8907 +69457 2025-10-14 20:39:32.650108+00 2025-10-14 20:39:32.650115+00 f t 24000.00 1 24000.00 9645 86 \N 8907 +69458 2025-10-14 20:48:19.366966+00 2025-10-14 20:48:19.366978+00 f t 46000.00 1 46000.00 9647 82 \N 8908 +70418 2025-10-16 17:09:06.174281+00 2025-10-16 17:09:06.17429+00 f t 80000.00 1 80000.00 9800 173 \N 9026 +70434 2025-10-16 18:02:42.28067+00 2025-10-16 18:02:42.280678+00 f t 46000.00 1 46000.00 9760 82 \N 8994 +70435 2025-10-16 18:02:42.285555+00 2025-10-16 18:02:42.285563+00 f t 7700.00 1 7700.00 9760 91 \N 8994 +70443 2025-10-16 19:06:27.074002+00 2025-10-16 19:06:27.074013+00 f t 13200.00 1 13200.00 9810 146 \N 9030 +70455 2025-10-16 21:35:20.563632+00 2025-10-16 21:35:20.563641+00 f t 46000.00 1 46000.00 9821 82 \N 9034 +70456 2025-10-16 21:35:20.568576+00 2025-10-16 21:35:20.568585+00 f t 24000.00 1 24000.00 9821 86 \N 9034 +69471 2025-10-14 20:56:17.739845+00 2025-10-14 20:56:17.739855+00 f t 46000.00 1 46000.00 9648 82 \N 8909 +69472 2025-10-14 20:56:17.744926+00 2025-10-14 20:56:17.744934+00 f t 24000.00 1 24000.00 9648 86 \N 8909 +69479 2025-10-14 21:07:48.73677+00 2025-10-14 21:07:48.736778+00 f t 46000.00 1 46000.00 9649 82 \N 8910 +69480 2025-10-14 21:07:48.742095+00 2025-10-14 21:07:48.742104+00 f t 24000.00 1 24000.00 9649 163 \N 8910 +69519 2025-10-14 22:19:21.369906+00 2025-10-14 22:19:21.369915+00 f t 46000.00 1 46000.00 9651 82 \N 8913 +69530 2025-10-14 22:57:13.838741+00 2025-10-14 22:57:13.838756+00 f t 46000.00 1 46000.00 9652 82 \N 8914 +69531 2025-10-14 22:57:13.844723+00 2025-10-14 22:57:13.844732+00 f t 24000.00 1 24000.00 9652 86 \N 8914 +69539 2025-10-14 23:50:32.727893+00 2025-10-14 23:50:32.727903+00 f t 46000.00 1 46000.00 9656 82 \N 8917 +69546 2025-10-15 00:10:03.007945+00 2025-10-15 00:10:03.007961+00 f t 23000.00 1 23000.00 9659 172 \N 8918 +69563 2025-10-15 01:23:49.760098+00 2025-10-15 01:23:49.760111+00 f t 30000.00 1 30000.00 9663 83 \N 8922 +69566 2025-10-15 01:33:35.259003+00 2025-10-15 01:33:35.259012+00 f t 55000.00 1 55000.00 9664 84 \N 8924 +69586 2025-10-15 01:46:02.803536+00 2025-10-15 01:46:02.80355+00 f t 32500.00 1 32500.00 9665 112 \N 8925 +69587 2025-10-15 01:46:02.810691+00 2025-10-15 01:46:02.810702+00 f t 46000.00 1 46000.00 9665 82 \N 8925 +69588 2025-10-15 01:46:02.816779+00 2025-10-15 01:46:02.81679+00 f t 7700.00 1 7700.00 9665 93 \N 8925 +69589 2025-10-15 01:46:02.822657+00 2025-10-15 01:46:02.822669+00 f t 13200.00 1 13200.00 9665 146 \N 8925 +69593 2025-10-15 02:51:52.6394+00 2025-10-15 02:51:52.639412+00 f t 46000.00 1 46000.00 9669 82 \N 8928 +69599 2025-10-15 03:31:51.655621+00 2025-10-15 03:31:51.65563+00 f t 55000.00 1 55000.00 9671 84 \N 8930 +69603 2025-10-15 10:33:49.541646+00 2025-10-15 10:33:49.541656+00 f t 55000.00 1 55000.00 9676 84 \N 8933 +69608 2025-10-15 10:35:03.705017+00 2025-10-15 10:35:03.705033+00 f t 46000.00 1 46000.00 9677 82 \N 8934 +81700 2025-11-10 20:15:52.553806+00 2025-11-10 20:15:52.553816+00 f t 0.00 1 0.00 11950 166 \N 10642 +69937 2025-10-15 21:32:08.014936+00 2025-10-15 21:32:08.014944+00 f t 46000.00 1 46000.00 9735 82 \N 8977 +69938 2025-10-15 21:32:08.020522+00 2025-10-15 21:32:08.02053+00 f t 24000.00 1 24000.00 9735 163 \N 8977 +69649 2025-10-15 11:02:23.570544+00 2025-10-15 11:02:23.570557+00 f t 46000.00 1 46000.00 9679 82 \N 8935 +69650 2025-10-15 11:02:23.577781+00 2025-10-15 11:02:23.577794+00 f t 7700.00 1 7700.00 9679 93 \N 8935 +70238 2025-10-16 05:49:37.187365+00 2025-10-16 05:49:37.187378+00 f t 23000.00 1 23000.00 9763 172 \N 8997 +70282 2025-10-16 09:57:47.284625+00 2025-10-16 09:57:47.284638+00 f t 57000.00 1 57000.00 9770 98 \N 9001 +69710 2025-10-15 12:37:04.909368+00 2025-10-15 12:37:04.909382+00 f t 8000.00 1 8000.00 9681 85 \N 8937 +69711 2025-10-15 12:37:04.915661+00 2025-10-15 12:37:04.915671+00 f t 24000.00 1 24000.00 9681 163 \N 8937 +69713 2025-10-15 12:37:04.927963+00 2025-10-15 12:37:04.927977+00 f t 8000.00 1 8000.00 9681 85 \N 8938 +69714 2025-10-15 12:37:04.93623+00 2025-10-15 12:37:04.936243+00 f t 24000.00 1 24000.00 9681 163 \N 8938 +69712 2025-10-15 12:37:04.921687+00 2025-10-15 12:37:04.921699+00 f t 46000.00 1 46000.00 9681 82 \N 8938 +69709 2025-10-15 12:37:04.902894+00 2025-10-15 12:37:04.902908+00 f t 46000.00 1 46000.00 9681 82 \N 8937 +69717 2025-10-15 12:41:02.345562+00 2025-10-15 12:41:02.345574+00 f t 46000.00 1 46000.00 9682 82 \N 8939 +69718 2025-10-15 12:41:02.351553+00 2025-10-15 12:41:02.351562+00 f t 81500.00 1 81500.00 9682 143 \N 8939 +70399 2025-10-16 15:37:43.974643+00 2025-10-16 15:37:43.974652+00 f t 78000.00 1 78000.00 9794 167 \N 9022 +69724 2025-10-15 13:48:10.158462+00 2025-10-15 13:48:10.158471+00 f t 46000.00 1 46000.00 9684 82 \N 8940 +69725 2025-10-15 13:48:10.163443+00 2025-10-15 13:48:10.163452+00 f t 8000.00 1 8000.00 9684 85 \N 8940 +69726 2025-10-15 13:48:10.167893+00 2025-10-15 13:48:10.167901+00 f t 24000.00 1 24000.00 9684 86 \N 8940 +69727 2025-10-15 14:19:50.056055+00 2025-10-15 14:19:50.056063+00 f t 68000.00 1 68000.00 9686 106 \N 8942 +69728 2025-10-15 14:23:01.372255+00 2025-10-15 14:23:01.372269+00 f t 78000.00 1 78000.00 9685 167 \N 8941 +69729 2025-10-15 14:23:56.095886+00 2025-10-15 14:23:56.095897+00 f t 23000.00 1 23000.00 9688 172 \N 8942 +70414 2025-10-16 16:20:46.666601+00 2025-10-16 16:20:46.66661+00 f t 82000.00 1 82000.00 9797 97 \N 9024 +69731 2025-10-15 14:33:50.479739+00 2025-10-15 14:33:50.479749+00 f t 46000.00 1 46000.00 9690 82 \N 8945 +69732 2025-10-15 14:36:17.456453+00 2025-10-15 14:36:17.456462+00 f t 13200.00 1 13200.00 9691 146 \N 5994 +70436 2025-10-16 18:40:25.982405+00 2025-10-16 18:40:25.98242+00 f t 55000.00 1 55000.00 9808 84 \N 3257 +69737 2025-10-15 14:44:28.095949+00 2025-10-15 14:44:28.095963+00 f t 46000.00 1 46000.00 9692 82 \N 8946 +69738 2025-10-15 14:44:28.103703+00 2025-10-15 14:44:28.103714+00 f t 8000.00 1 8000.00 9692 85 \N 8946 +70444 2025-10-16 19:34:09.874893+00 2025-10-16 19:34:09.874902+00 f t 46000.00 1 46000.00 9812 82 \N 3257 +70449 2025-10-16 21:20:04.157198+00 2025-10-16 21:20:04.157213+00 f t 55000.00 1 55000.00 9819 84 \N 2020 +70457 2025-10-16 21:52:39.576433+00 2025-10-16 21:52:39.576443+00 f t 55000.00 1 55000.00 9823 84 \N 724 +69742 2025-10-15 14:48:17.959038+00 2025-10-15 14:48:17.959046+00 f t 46000.00 1 46000.00 9695 82 \N 8948 +69743 2025-10-15 14:50:13.338377+00 2025-10-15 14:50:13.338389+00 f t 13200.00 1 13200.00 9694 146 \N 128 +69745 2025-10-15 14:56:02.480059+00 2025-10-15 14:56:02.480068+00 f t 46000.00 1 46000.00 9696 82 \N 8949 +69746 2025-10-15 15:07:37.442075+00 2025-10-15 15:07:37.442086+00 f t 30000.00 1 30000.00 9697 83 \N 8950 +70469 2025-10-17 00:03:58.335487+00 2025-10-17 00:03:58.335496+00 f t 80000.00 1 80000.00 9836 173 \N 9045 +69749 2025-10-15 15:24:33.02469+00 2025-10-15 15:24:33.0247+00 f t 55000.00 1 55000.00 9701 84 \N 8953 +69751 2025-10-15 16:20:25.82483+00 2025-10-15 16:20:25.824842+00 f t 46000.00 1 46000.00 9704 82 \N 8955 +69752 2025-10-15 16:44:22.245519+00 2025-10-15 16:44:22.245531+00 f t 30000.00 1 30000.00 9705 83 \N 5041 +69754 2025-10-15 17:02:38.719974+00 2025-10-15 17:02:38.719986+00 f t 80000.00 1 80000.00 9708 173 \N 8957 +69755 2025-10-15 17:07:32.83487+00 2025-10-15 17:07:32.834883+00 f t 55000.00 1 55000.00 9709 84 \N 8958 +70533 2025-10-17 02:17:53.023538+00 2025-10-17 02:17:53.023547+00 f t 46000.00 1 46000.00 9859 82 \N 9054 +70541 2025-10-17 02:44:05.382918+00 2025-10-17 02:44:05.38293+00 f t 55000.00 1 55000.00 9860 84 \N 9066 +69796 2025-10-15 17:36:17.788228+00 2025-10-15 17:36:17.788241+00 f t 46000.00 1 46000.00 9712 82 \N 8961 +69797 2025-10-15 17:36:17.795289+00 2025-10-15 17:36:17.795302+00 f t 69000.00 1 69000.00 9712 141 \N 8961 +70621 2025-10-17 03:17:19.863652+00 2025-10-17 03:17:19.86366+00 f t 46000.00 1 46000.00 9866 82 \N 9071 +70638 2025-10-17 03:36:53.630173+00 2025-10-17 03:36:53.630181+00 f t 46000.00 1 46000.00 9865 82 \N 9070 +70639 2025-10-17 03:36:53.637681+00 2025-10-17 03:36:53.63769+00 f t 24000.00 1 24000.00 9865 163 \N 9070 +70644 2025-10-17 03:38:38.650236+00 2025-10-17 03:38:38.650245+00 f t 46000.00 1 46000.00 9869 82 \N 9073 +70645 2025-10-17 03:38:38.655269+00 2025-10-17 03:38:38.655278+00 f t 24000.00 1 24000.00 9869 86 \N 9073 +69811 2025-10-15 18:12:46.503464+00 2025-10-15 18:12:46.503474+00 f t 55000.00 1 55000.00 9714 84 \N 8963 +69814 2025-10-15 18:13:34.857308+00 2025-10-15 18:13:34.857317+00 f t 46000.00 1 46000.00 9713 82 \N 8962 +69817 2025-10-15 18:46:27.972365+00 2025-10-15 18:46:27.972379+00 f t 46000.00 1 46000.00 9718 82 \N 8966 +69818 2025-10-15 18:46:27.978172+00 2025-10-15 18:46:27.978184+00 f t 8000.00 1 8000.00 9718 85 \N 8966 +69819 2025-10-15 18:46:27.983387+00 2025-10-15 18:46:27.983399+00 f t 24000.00 1 24000.00 9718 86 \N 8966 +69840 2025-10-15 19:06:03.952293+00 2025-10-15 19:06:03.952305+00 f t 46000.00 1 46000.00 9719 82 \N 8967 +69841 2025-10-15 19:06:03.957904+00 2025-10-15 19:06:03.957914+00 f t 24000.00 1 24000.00 9719 86 \N 8967 +69842 2025-10-15 19:09:24.874614+00 2025-10-15 19:09:24.874623+00 f t 46000.00 1 46000.00 9720 82 \N 8968 +69843 2025-10-15 19:15:13.316313+00 2025-10-15 19:15:13.316326+00 f t 13200.00 1 13200.00 9724 146 \N 8597 +69844 2025-10-15 19:15:38.864702+00 2025-10-15 19:15:38.864714+00 f t 23000.00 1 23000.00 9722 172 \N 8597 +69864 2025-10-15 19:28:59.467994+00 2025-10-15 19:28:59.468005+00 f t 60000.00 1 60000.00 9725 101 \N 8969 +69865 2025-10-15 19:30:29.416886+00 2025-10-15 19:30:29.416899+00 f t 55000.00 1 55000.00 9661 84 \N 8919 +69866 2025-10-15 19:30:29.424265+00 2025-10-15 19:30:29.424274+00 f t 7700.00 1 7700.00 9661 91 \N 8919 +69867 2025-10-15 19:30:29.429648+00 2025-10-15 19:30:29.429655+00 f t 46000.00 1 46000.00 9661 82 \N 8919 +69876 2025-10-15 20:29:57.601701+00 2025-10-15 20:29:57.601709+00 f t 46000.00 1 46000.00 9729 82 \N 8970 +69877 2025-10-15 20:29:57.607727+00 2025-10-15 20:29:57.607738+00 f t 23000.00 1 23000.00 9729 172 \N 8970 +69888 2025-10-15 20:52:03.02011+00 2025-10-15 20:52:03.020123+00 f t 46000.00 1 46000.00 9732 82 \N 8974 +69889 2025-10-15 20:52:03.027477+00 2025-10-15 20:52:03.027486+00 f t 24000.00 1 24000.00 9732 163 \N 8974 +72133 2025-10-19 22:29:08.922915+00 2025-10-19 22:29:08.922925+00 f t 30000.00 1 30000.00 10049 83 \N 9207 +72214 2025-10-20 11:06:48.062357+00 2025-10-20 11:06:48.062372+00 f t 46000.00 1 46000.00 10075 82 \N 9223 +72215 2025-10-20 11:06:48.068666+00 2025-10-20 11:06:48.068675+00 f t 8000.00 1 8000.00 10075 85 \N 9223 +72366 2025-10-20 13:27:19.217969+00 2025-10-20 13:27:19.217981+00 f t 46000.00 1 46000.00 10089 82 \N 9235 +72367 2025-10-20 13:27:19.223453+00 2025-10-20 13:27:19.223464+00 f t 46000.00 1 46000.00 10089 82 \N 9236 +72433 2025-10-20 13:50:29.310597+00 2025-10-20 13:50:29.310606+00 f t 55000.00 1 55000.00 10091 84 \N 9239 +72485 2025-10-20 13:56:40.370514+00 2025-10-20 13:56:40.370523+00 f t 46000.00 1 46000.00 10102 82 \N 9244 +72486 2025-10-20 13:56:40.375164+00 2025-10-20 13:56:40.375172+00 f t 8000.00 1 8000.00 10102 85 \N 9244 +72503 2025-10-20 15:22:12.528096+00 2025-10-20 15:22:12.528109+00 f t 46000.00 1 46000.00 10111 82 \N 9250 +72611 2025-10-20 17:44:12.867732+00 2025-10-20 17:44:12.867741+00 f t 46000.00 1 46000.00 10122 82 \N 9259 +70967 2025-10-17 17:56:34.351696+00 2025-10-17 17:56:34.351705+00 f t 46000.00 1 46000.00 9909 82 \N 9101 +70968 2025-10-17 17:56:34.359026+00 2025-10-17 17:56:34.359034+00 f t 46000.00 1 46000.00 9909 82 \N 9102 +72627 2025-10-20 18:44:43.957492+00 2025-10-20 18:44:43.957504+00 f t 46000.00 1 46000.00 10129 82 \N 9264 +72644 2025-10-20 19:34:39.542575+00 2025-10-20 19:34:39.542586+00 f t 30000.00 1 30000.00 10136 83 \N 7733 +72654 2025-10-20 20:19:38.600137+00 2025-10-20 20:19:38.600151+00 f t 30000.00 1 30000.00 10140 83 \N 8472 +70978 2025-10-17 18:00:53.994574+00 2025-10-17 18:00:53.994582+00 f t 23000.00 1 23000.00 9912 172 \N 8997 +72720 2025-10-21 00:09:08.193028+00 2025-10-21 00:09:08.193037+00 f t 7700.00 1 7700.00 10156 93 \N 9291 +72721 2025-10-21 00:09:08.198925+00 2025-10-21 00:09:08.198937+00 f t 87000.00 1 87000.00 10156 165 \N 9291 +72722 2025-10-21 00:09:08.204095+00 2025-10-21 00:09:08.204107+00 f t 13200.00 1 13200.00 10156 146 \N 9291 +72723 2025-10-21 00:09:08.20949+00 2025-10-21 00:09:08.209502+00 f t 46000.00 1 46000.00 10156 82 \N 9291 +72767 2025-10-21 01:31:18.800544+00 2025-10-21 01:31:18.800556+00 f t 46000.00 1 46000.00 10162 82 \N 9297 +72779 2025-10-21 02:24:13.817019+00 2025-10-21 02:24:13.817031+00 f t 46000.00 1 46000.00 10165 82 \N 9300 +72780 2025-10-21 02:24:13.825652+00 2025-10-21 02:24:13.825668+00 f t 24000.00 1 24000.00 10165 86 \N 9300 +71006 2025-10-17 18:08:56.189342+00 2025-10-17 18:08:56.189351+00 f t 46000.00 1 46000.00 9913 82 \N 9104 +72818 2025-10-21 10:34:16.349468+00 2025-10-21 10:34:16.349476+00 f t 55000.00 1 55000.00 10169 84 \N 9304 +72830 2025-10-21 11:52:17.234693+00 2025-10-21 11:52:17.234702+00 f t 55000.00 1 55000.00 10174 84 \N 9308 +71021 2025-10-17 18:28:41.295499+00 2025-10-17 18:28:41.295511+00 f t 46000.00 1 46000.00 9914 82 \N 9105 +71022 2025-10-17 18:28:41.301725+00 2025-10-17 18:28:41.301735+00 f t 8000.00 1 8000.00 9914 85 \N 9105 +71023 2025-10-17 18:28:41.307268+00 2025-10-17 18:28:41.307279+00 f t 46000.00 1 46000.00 9914 82 \N 9106 +71024 2025-10-17 18:28:41.312312+00 2025-10-17 18:28:41.312322+00 f t 24000.00 1 24000.00 9914 86 \N 9106 +71025 2025-10-17 18:46:20.041968+00 2025-10-17 18:46:20.041976+00 f t 55000.00 1 55000.00 9916 84 \N 9107 +72849 2025-10-21 13:12:32.592505+00 2025-10-21 13:12:32.592517+00 f t 78000.00 1 78000.00 10181 167 \N 9314 +71032 2025-10-17 19:25:50.559408+00 2025-10-17 19:25:50.559417+00 f t 46000.00 1 46000.00 9918 82 \N 9109 +71033 2025-10-17 19:25:50.564775+00 2025-10-17 19:25:50.564786+00 f t 8000.00 1 8000.00 9918 85 \N 9109 +72859 2025-10-21 14:44:12.092092+00 2025-10-21 14:44:12.092104+00 f t 7700.00 1 7700.00 10190 93 \N 9319 +72860 2025-10-21 14:44:12.104365+00 2025-10-21 14:44:12.104375+00 f t 46000.00 1 46000.00 10190 82 \N 9319 +71040 2025-10-17 19:27:24.484043+00 2025-10-17 19:27:24.484052+00 f t 46000.00 1 46000.00 9919 82 \N 9110 +71041 2025-10-17 19:27:24.489191+00 2025-10-17 19:27:24.4892+00 f t 8000.00 1 8000.00 9919 85 \N 9110 +71044 2025-10-17 19:49:12.532143+00 2025-10-17 19:49:12.532152+00 f t 46000.00 1 46000.00 9921 82 \N 335 +72889 2025-10-21 15:34:49.231288+00 2025-10-21 15:34:49.231298+00 f t 13200.00 1 13200.00 10196 146 \N 9319 +71055 2025-10-17 19:52:37.100891+00 2025-10-17 19:52:37.100903+00 f t 55000.00 1 55000.00 9922 84 \N 9112 +72924 2025-10-21 16:35:23.97767+00 2025-10-21 16:35:23.977679+00 f t 46000.00 1 46000.00 10159 82 \N 9294 +72925 2025-10-21 16:35:23.983112+00 2025-10-21 16:35:23.983119+00 f t 8000.00 1 8000.00 10159 85 \N 9294 +72926 2025-10-21 16:35:23.987669+00 2025-10-21 16:35:23.987675+00 f t 24000.00 1 24000.00 10159 163 \N 9294 +72963 2025-10-21 16:58:08.016946+00 2025-10-21 16:58:08.016955+00 f t 46000.00 1 46000.00 10200 82 \N 9325 +71077 2025-10-17 20:09:36.321793+00 2025-10-17 20:09:36.321801+00 f t 46000.00 1 46000.00 9923 82 \N 9113 +71078 2025-10-17 20:09:36.32663+00 2025-10-17 20:09:36.326637+00 f t 8000.00 1 8000.00 9923 85 \N 9113 +71079 2025-10-17 20:09:36.330219+00 2025-10-17 20:09:36.330227+00 f t 24000.00 1 24000.00 9923 86 \N 9113 +72984 2025-10-21 17:12:37.468098+00 2025-10-21 17:12:37.468108+00 f t 46000.00 1 46000.00 10205 82 \N 9329 +71081 2025-10-17 20:09:58.776481+00 2025-10-17 20:09:58.77649+00 f t 23000.00 1 23000.00 9924 172 \N 7733 +71082 2025-10-17 20:09:58.781036+00 2025-10-17 20:09:58.781043+00 f t 13200.00 1 13200.00 9924 146 \N 7733 +72985 2025-10-21 17:12:37.473633+00 2025-10-21 17:12:37.47364+00 f t 8000.00 1 8000.00 10205 85 \N 9329 +72986 2025-10-21 17:12:37.477963+00 2025-10-21 17:12:37.47797+00 f t 24000.00 1 24000.00 10205 163 \N 9329 +72999 2025-10-21 18:22:53.036543+00 2025-10-21 18:22:53.036553+00 f t 55000.00 1 55000.00 10212 84 \N 9333 +73003 2025-10-21 18:35:16.557893+00 2025-10-21 18:35:16.557906+00 f t 46000.00 1 46000.00 10213 82 \N 9334 +71092 2025-10-17 21:04:38.052742+00 2025-10-17 21:04:38.052754+00 f t 46000.00 1 46000.00 9925 82 \N 9114 +71093 2025-10-17 21:04:38.058509+00 2025-10-17 21:04:38.058521+00 f t 8000.00 1 8000.00 9925 85 \N 9114 +71094 2025-10-17 21:04:38.063869+00 2025-10-17 21:04:38.063882+00 f t 24000.00 1 24000.00 9925 86 \N 9114 +71103 2025-10-17 21:37:50.712544+00 2025-10-17 21:37:50.712554+00 f t 55000.00 1 55000.00 9930 84 \N 9116 +71104 2025-10-17 21:47:15.966507+00 2025-10-17 21:47:15.966515+00 f t 13200.00 1 13200.00 9931 146 \N 7733 +71107 2025-10-17 22:17:32.058082+00 2025-10-17 22:17:32.058092+00 f t 13200.00 1 13200.00 9934 146 \N 9096 +71108 2025-10-17 22:27:46.791537+00 2025-10-17 22:27:46.791546+00 f t 78000.00 1 78000.00 9935 167 \N 9096 +71115 2025-10-17 22:55:09.072068+00 2025-10-17 22:55:09.072078+00 f t 46000.00 1 46000.00 9927 82 \N 9045 +71116 2025-10-17 22:55:09.077462+00 2025-10-17 22:55:09.077473+00 f t 69000.00 1 69000.00 9927 141 \N 9045 +71144 2025-10-17 23:22:44.466927+00 2025-10-17 23:22:44.466936+00 f t 46000.00 1 46000.00 9938 82 \N 9119 +71145 2025-10-17 23:22:44.47223+00 2025-10-17 23:22:44.472239+00 f t 46000.00 1 46000.00 9938 82 \N 9120 +71134 2025-10-17 23:21:44.298689+00 2025-10-17 23:21:44.298699+00 f t 55000.00 1 55000.00 9939 84 \N 9082 +71135 2025-10-17 23:21:44.304434+00 2025-10-17 23:21:44.304443+00 f t 68000.00 1 68000.00 9939 106 \N 9082 +85585 2025-11-17 23:35:43.520976+00 2025-11-17 23:35:43.520988+00 f t 46000.00 1 46000.00 12632 82 \N 11187 +72091 2025-10-19 19:18:01.814125+00 2025-10-19 19:18:01.814135+00 f t 30000.00 1 30000.00 10040 83 \N 9200 +77131 2025-11-01 01:47:05.706949+00 2025-11-01 01:47:05.706958+00 f t 46000.00 1 46000.00 11146 82 \N 10027 +72156 2025-10-20 03:41:34.188206+00 2025-10-20 03:41:34.188215+00 f t 46000.00 1 46000.00 10065 82 \N 9215 +72165 2025-10-20 10:41:17.031685+00 2025-10-20 10:41:17.031693+00 f t 78000.00 1 78000.00 10073 167 \N 9220 +77187 2025-11-01 07:52:45.090415+00 2025-11-01 07:52:45.090424+00 f t 78000.00 1 78000.00 11160 106 \N 10037 +77220 2025-11-01 10:46:05.530378+00 2025-11-01 10:46:05.530387+00 f t 55000.00 1 55000.00 11164 84 \N 10042 +71196 2025-10-17 23:42:43.046315+00 2025-10-17 23:42:43.046325+00 f t 46000.00 1 46000.00 9940 82 \N 9121 +71197 2025-10-17 23:42:43.052077+00 2025-10-17 23:42:43.052087+00 f t 46000.00 1 46000.00 9940 82 \N 9123 +71198 2025-10-17 23:42:43.056594+00 2025-10-17 23:42:43.056603+00 f t 24000.00 1 24000.00 9940 163 \N 9123 +72325 2025-10-20 13:15:44.869089+00 2025-10-20 13:15:44.869098+00 f t 46000.00 1 46000.00 10087 82 \N 9232 +72326 2025-10-20 13:15:44.874476+00 2025-10-20 13:15:44.874485+00 f t 46000.00 1 46000.00 10087 82 \N 9233 +72327 2025-10-20 13:15:44.878656+00 2025-10-20 13:15:44.878663+00 f t 7700.00 1 7700.00 10087 91 \N 9232 +72328 2025-10-20 13:15:44.888298+00 2025-10-20 13:15:44.888312+00 f t 8000.00 1 8000.00 10087 85 \N 9233 +72329 2025-10-20 13:15:44.894123+00 2025-10-20 13:15:44.894135+00 f t 8000.00 1 8000.00 10087 85 \N 9232 +72330 2025-10-20 13:15:44.899619+00 2025-10-20 13:15:44.899632+00 f t 24000.00 1 24000.00 10087 163 \N 9232 +72331 2025-10-20 13:15:44.904892+00 2025-10-20 13:15:44.904904+00 f t 24000.00 1 24000.00 10087 163 \N 9233 +72332 2025-10-20 13:15:44.910047+00 2025-10-20 13:15:44.910059+00 f t 7700.00 1 7700.00 10087 91 \N 9233 +71210 2025-10-18 00:07:15.130046+00 2025-10-18 00:07:15.130058+00 f t 46000.00 1 46000.00 9943 82 \N 9124 +71211 2025-10-18 00:13:20.795571+00 2025-10-18 00:13:20.795603+00 f t 55000.00 1 55000.00 9946 84 \N 3550 +71227 2025-10-18 00:15:19.467173+00 2025-10-18 00:15:19.467182+00 f t 46000.00 1 46000.00 9948 82 \N 9126 +71228 2025-10-18 00:15:19.472594+00 2025-10-18 00:15:19.472602+00 f t 24000.00 1 24000.00 9948 86 \N 9126 +71234 2025-10-18 00:15:50.308456+00 2025-10-18 00:15:50.308465+00 f t 34000.00 1 34000.00 9947 110 \N 9125 +71235 2025-10-18 00:15:50.313666+00 2025-10-18 00:15:50.313673+00 f t 107000.00 1 107000.00 9947 103 \N 9125 +71236 2025-10-18 00:15:50.317621+00 2025-10-18 00:15:50.317628+00 f t 7700.00 1 7700.00 9947 93 \N 9125 +71237 2025-10-18 00:15:50.322378+00 2025-10-18 00:15:50.322388+00 f t 13200.00 1 13200.00 9947 146 \N 9125 +71238 2025-10-18 00:15:50.326833+00 2025-10-18 00:15:50.326843+00 f t 46000.00 1 46000.00 9947 82 \N 9125 +72487 2025-10-20 14:22:55.970395+00 2025-10-20 14:22:55.970406+00 f t 55000.00 1 55000.00 10084 84 \N 9230 +72498 2025-10-20 14:48:30.038358+00 2025-10-20 14:48:30.038368+00 f t 46000.00 1 46000.00 10107 82 \N 9248 +72499 2025-10-20 14:48:30.044479+00 2025-10-20 14:48:30.044488+00 f t 24000.00 1 24000.00 10107 86 \N 9248 +71246 2025-10-18 00:25:50.193109+00 2025-10-18 00:25:50.193118+00 f t 55000.00 1 55000.00 9950 84 \N 743 +72504 2025-10-20 15:47:11.384696+00 2025-10-20 15:47:11.384704+00 f t 13200.00 1 13200.00 10115 146 \N 9246 +71248 2025-10-18 00:37:03.473821+00 2025-10-18 00:37:03.47383+00 f t 46000.00 1 46000.00 9951 82 \N 9128 +72606 2025-10-20 16:55:52.119262+00 2025-10-20 16:55:52.119271+00 f t 46000.00 1 46000.00 10121 82 \N 9258 +72607 2025-10-20 16:55:52.124356+00 2025-10-20 16:55:52.124364+00 f t 8000.00 1 8000.00 10121 85 \N 9258 +72623 2025-10-20 18:04:09.012706+00 2025-10-20 18:04:09.012715+00 f t 30000.00 1 30000.00 10125 83 \N 9261 +72645 2025-10-20 19:43:49.687465+00 2025-10-20 19:43:49.687473+00 f t 78000.00 1 78000.00 10137 167 \N 9270 +72665 2025-10-20 21:47:10.167411+00 2025-10-20 21:47:10.167423+00 f t 46000.00 1 46000.00 10144 82 \N 9277 +72666 2025-10-20 21:47:10.174219+00 2025-10-20 21:47:10.17423+00 f t 46000.00 1 46000.00 10144 82 \N 9278 +72685 2025-10-20 21:59:12.466496+00 2025-10-20 21:59:12.466506+00 f t 55000.00 1 55000.00 10147 84 \N 9282 +71303 2025-10-18 00:53:05.125967+00 2025-10-18 00:53:05.125976+00 f t 46000.00 1 46000.00 9952 82 \N 9129 +71304 2025-10-18 00:53:05.131038+00 2025-10-18 00:53:05.131046+00 f t 8000.00 1 8000.00 9952 85 \N 9129 +71305 2025-10-18 00:53:05.135041+00 2025-10-18 00:53:05.135049+00 f t 24000.00 1 24000.00 9952 86 \N 9129 +71306 2025-10-18 00:53:05.139525+00 2025-10-18 00:53:05.139534+00 f t 46000.00 1 46000.00 9952 82 \N 9130 +71307 2025-10-18 00:53:05.143627+00 2025-10-18 00:53:05.143635+00 f t 8000.00 1 8000.00 9952 85 \N 9130 +71308 2025-10-18 00:53:05.148206+00 2025-10-18 00:53:05.148215+00 f t 24000.00 1 24000.00 9952 86 \N 9130 +71316 2025-10-18 00:56:49.118332+00 2025-10-18 00:56:49.118342+00 f t 46000.00 1 46000.00 9954 82 \N 9132 +71317 2025-10-18 00:56:49.12489+00 2025-10-18 00:56:49.124898+00 f t 78000.00 1 78000.00 9954 167 \N 9132 +71320 2025-10-18 01:28:33.387572+00 2025-10-18 01:28:33.387581+00 f t 46000.00 1 46000.00 9955 82 \N 9133 +71329 2025-10-18 01:32:32.441788+00 2025-10-18 01:32:32.441797+00 f t 46000.00 1 46000.00 9956 82 \N 9134 +71330 2025-10-18 01:32:32.448329+00 2025-10-18 01:32:32.448338+00 f t 46000.00 1 46000.00 9956 82 \N 9135 +71366 2025-10-18 01:47:22.417804+00 2025-10-18 01:47:22.417813+00 f t 46000.00 1 46000.00 9957 82 \N 9136 +71367 2025-10-18 01:47:22.423039+00 2025-10-18 01:47:22.423047+00 f t 7700.00 1 7700.00 9957 91 \N 9136 +71368 2025-10-18 01:47:22.427433+00 2025-10-18 01:47:22.427441+00 f t 8000.00 1 8000.00 9957 85 \N 9136 +71383 2025-10-18 03:46:46.632383+00 2025-10-18 03:46:46.632395+00 f t 46000.00 1 46000.00 9960 82 \N 9137 +71384 2025-10-18 03:46:46.638983+00 2025-10-18 03:46:46.638995+00 f t 75000.00 1 75000.00 9960 142 \N 9137 +71397 2025-10-18 03:49:21.184357+00 2025-10-18 03:49:21.184369+00 f t 46000.00 1 46000.00 9961 82 \N 9138 +71398 2025-10-18 03:49:21.191432+00 2025-10-18 03:49:21.191441+00 f t 1000.00 1 1000.00 9961 170 \N 9138 +71399 2025-10-18 03:49:21.196275+00 2025-10-18 03:49:21.196283+00 f t 81500.00 1 81500.00 9961 143 \N 9138 +71404 2025-10-18 04:02:02.754175+00 2025-10-18 04:02:02.754184+00 f t 55000.00 1 55000.00 9962 84 \N 9139 +71415 2025-10-18 06:27:52.880815+00 2025-10-18 06:27:52.880825+00 f t 46000.00 1 46000.00 9963 82 \N 9140 +71416 2025-10-18 06:27:52.886101+00 2025-10-18 06:27:52.886109+00 f t 24000.00 1 24000.00 9963 163 \N 9140 +71446 2025-10-18 06:34:13.631762+00 2025-10-18 06:34:13.631771+00 f t 34000.00 1 34000.00 9964 110 \N 9141 +71447 2025-10-18 06:34:13.637129+00 2025-10-18 06:34:13.637138+00 f t 7700.00 1 7700.00 9964 93 \N 9141 +71448 2025-10-18 06:34:13.642001+00 2025-10-18 06:34:13.642012+00 f t 13200.00 1 13200.00 9964 146 \N 9141 +71449 2025-10-18 06:34:13.646941+00 2025-10-18 06:34:13.646948+00 f t 46000.00 1 46000.00 9964 82 \N 9141 +71454 2025-10-18 10:06:41.307866+00 2025-10-18 10:06:41.307879+00 f t 55000.00 1 55000.00 9965 84 \N 9142 +72079 2025-10-19 18:57:34.953377+00 2025-10-19 18:57:34.953392+00 f t 55000.00 1 55000.00 10039 84 \N 9199 +72092 2025-10-19 19:48:42.764157+00 2025-10-19 19:48:42.764169+00 f t 46000.00 1 46000.00 10041 82 \N 9193 +72488 2025-10-20 14:31:24.611975+00 2025-10-20 14:31:24.611987+00 f t 78000.00 1 78000.00 10105 167 \N 9246 +72500 2025-10-20 15:06:00.501214+00 2025-10-20 15:06:00.501221+00 f t 23000.00 1 23000.00 10108 172 \N 9246 +72574 2025-10-20 16:25:43.910864+00 2025-10-20 16:25:43.910873+00 f t 46000.00 1 46000.00 10117 82 \N 9254 +72575 2025-10-20 16:25:43.916571+00 2025-10-20 16:25:43.916582+00 f t 8000.00 1 8000.00 10117 85 \N 9254 +72576 2025-10-20 16:25:43.922121+00 2025-10-20 16:25:43.92213+00 f t 46000.00 1 46000.00 10117 82 \N 9255 +72577 2025-10-20 16:25:43.926766+00 2025-10-20 16:25:43.926774+00 f t 8000.00 1 8000.00 10117 85 \N 9255 +72594 2025-10-20 16:51:13.05727+00 2025-10-20 16:51:13.057281+00 f t 68000.00 1 68000.00 10120 106 \N 9257 +72624 2025-10-20 18:14:03.513648+00 2025-10-20 18:14:03.51366+00 f t 46000.00 1 46000.00 10126 82 \N 9223 +72646 2025-10-20 19:44:18.229745+00 2025-10-20 19:44:18.229753+00 f t 55000.00 1 55000.00 10138 84 \N 9271 +71562 2025-10-18 10:59:57.322241+00 2025-10-18 10:59:57.322253+00 f t 107000.00 1 107000.00 9967 103 \N 9144 +71565 2025-10-18 11:52:25.322664+00 2025-10-18 11:52:25.322676+00 f t 46000.00 1 46000.00 9969 82 \N 9146 +71566 2025-10-18 11:52:25.328555+00 2025-10-18 11:52:25.328564+00 f t 8000.00 1 8000.00 9969 85 \N 9146 +72716 2025-10-21 00:00:07.142232+00 2025-10-21 00:00:07.142248+00 f t 55000.00 1 55000.00 10155 84 \N 9290 +72725 2025-10-21 00:19:47.074356+00 2025-10-21 00:19:47.074369+00 f t 45000.00 1 45000.00 10157 168 \N 9292 +72776 2025-10-21 01:44:13.282707+00 2025-10-21 01:44:13.282717+00 f t 46000.00 1 46000.00 10164 82 \N 9299 +71588 2025-10-18 12:20:38.492058+00 2025-10-18 12:20:38.492067+00 f t 55000.00 1 55000.00 9970 84 \N 9147 +72814 2025-10-21 10:14:13.453068+00 2025-10-21 10:14:13.453076+00 f t 46000.00 1 46000.00 10168 82 \N 9303 +71598 2025-10-18 12:40:25.510072+00 2025-10-18 12:40:25.510081+00 f t 46000.00 1 46000.00 9971 82 \N 9148 +71599 2025-10-18 12:40:25.514977+00 2025-10-18 12:40:25.514985+00 f t 8000.00 1 8000.00 9971 85 \N 9148 +71600 2025-10-18 12:40:25.519369+00 2025-10-18 12:40:25.519378+00 f t 24000.00 1 24000.00 9971 88 \N 9148 +72815 2025-10-21 10:14:13.457974+00 2025-10-21 10:14:13.457983+00 f t 8000.00 1 8000.00 10168 85 \N 9303 +72816 2025-10-21 10:14:13.461691+00 2025-10-21 10:14:13.461701+00 f t 24000.00 1 24000.00 10168 86 \N 9303 +71603 2025-10-18 12:42:03.522296+00 2025-10-18 12:42:03.522304+00 f t 46000.00 1 46000.00 9966 82 \N 9143 +71604 2025-10-18 13:13:27.91824+00 2025-10-18 13:13:27.918252+00 f t 55000.00 1 55000.00 9972 84 \N 9149 +72828 2025-10-21 11:34:02.363586+00 2025-10-21 11:34:02.363597+00 f t 82000.00 1 82000.00 10173 97 \N 9307 +72836 2025-10-21 12:24:30.354259+00 2025-10-21 12:24:30.354268+00 f t 46000.00 1 46000.00 10176 82 \N 9310 +72837 2025-10-21 12:24:30.360048+00 2025-10-21 12:24:30.360056+00 f t 8000.00 1 8000.00 10176 85 \N 9310 +72856 2025-10-21 14:33:14.878606+00 2025-10-21 14:33:14.878618+00 f t 55000.00 1 55000.00 10189 84 \N 9318 +72861 2025-10-21 14:44:20.541704+00 2025-10-21 14:44:20.541717+00 f t 13200.00 1 13200.00 10192 146 \N 8941 +71621 2025-10-18 14:47:04.689099+00 2025-10-18 14:47:04.689112+00 f t 55000.00 1 55000.00 9975 84 \N 9150 +71624 2025-10-18 14:59:48.519932+00 2025-10-18 14:59:48.519942+00 f t 46000.00 1 46000.00 9976 82 \N 9151 +71625 2025-10-18 14:59:48.524864+00 2025-10-18 14:59:48.524874+00 f t 8000.00 1 8000.00 9976 85 \N 9151 +72884 2025-10-21 14:51:09.775935+00 2025-10-21 14:51:09.775944+00 f t 46000.00 1 46000.00 10193 82 \N 9320 +72885 2025-10-21 14:51:09.782543+00 2025-10-21 14:51:09.782554+00 f t 8000.00 1 8000.00 10193 85 \N 9320 +72886 2025-10-21 14:51:09.787361+00 2025-10-21 14:51:09.787369+00 f t 46000.00 1 46000.00 10193 82 \N 9321 +72887 2025-10-21 14:51:09.792507+00 2025-10-21 14:51:09.792514+00 f t 8000.00 1 8000.00 10193 85 \N 9321 +72890 2025-10-21 15:49:35.115712+00 2025-10-21 15:49:35.115721+00 f t 23000.00 1 23000.00 10198 172 \N 9323 +71632 2025-10-18 15:36:46.961483+00 2025-10-18 15:36:46.961496+00 f t 55000.00 1 55000.00 9977 84 \N 9152 +72896 2025-10-21 16:00:36.74062+00 2025-10-21 16:00:36.740631+00 f t 55000.00 1 55000.00 10201 84 \N 9326 +72911 2025-10-21 16:13:42.479768+00 2025-10-21 16:13:42.479777+00 f t 30000.00 1 30000.00 10135 83 \N 9327 +71652 2025-10-18 16:03:44.49139+00 2025-10-18 16:03:44.491399+00 f t 46000.00 1 46000.00 9978 82 \N 9153 +71653 2025-10-18 16:03:44.497371+00 2025-10-18 16:03:44.49738+00 f t 8000.00 1 8000.00 9978 85 \N 9153 +71654 2025-10-18 16:03:44.502694+00 2025-10-18 16:03:44.502706+00 f t 24000.00 1 24000.00 9978 88 \N 9153 +71655 2025-10-18 16:03:44.507747+00 2025-10-18 16:03:44.507755+00 f t 24000.00 1 24000.00 9978 163 \N 9153 +71665 2025-10-18 16:07:37.945412+00 2025-10-18 16:07:37.945421+00 f t 46000.00 1 46000.00 9979 82 \N 9154 +71666 2025-10-18 16:07:37.950707+00 2025-10-18 16:07:37.950716+00 f t 8000.00 1 8000.00 9979 85 \N 9154 +71667 2025-10-18 16:07:37.954689+00 2025-10-18 16:07:37.954697+00 f t 24000.00 1 24000.00 9979 163 \N 9154 +71668 2025-10-18 16:18:20.460068+00 2025-10-18 16:18:20.460079+00 f t 55000.00 1 55000.00 9982 84 \N 4266 +72994 2025-10-21 18:07:59.806454+00 2025-10-21 18:07:59.806463+00 f t 46000.00 1 46000.00 10211 82 \N 9332 +73000 2025-10-21 18:26:35.894127+00 2025-10-21 18:26:35.894136+00 f t 0.00 1 0.00 10210 97 \N 1150 +73004 2025-10-21 18:35:16.566213+00 2025-10-21 18:35:16.566224+00 f t 8000.00 1 8000.00 10213 85 \N 9334 +73005 2025-10-21 18:35:16.572412+00 2025-10-21 18:35:16.572422+00 f t 24000.00 1 24000.00 10213 86 \N 9334 +73014 2025-10-21 19:25:12.589183+00 2025-10-21 19:25:12.589193+00 f t 32500.00 1 32500.00 10218 112 \N 9336 +73015 2025-10-21 19:25:12.595514+00 2025-10-21 19:25:12.595521+00 f t 7700.00 1 7700.00 10218 93 \N 9336 +73016 2025-10-21 19:25:12.600217+00 2025-10-21 19:25:12.600223+00 f t 13200.00 1 13200.00 10218 146 \N 9336 +73017 2025-10-21 19:25:12.604845+00 2025-10-21 19:25:12.604852+00 f t 46000.00 1 46000.00 10218 82 \N 9336 +73025 2025-10-21 19:26:42.932512+00 2025-10-21 19:26:42.93252+00 f t 46000.00 1 46000.00 10219 82 \N 7061 +73026 2025-10-21 19:26:42.937823+00 2025-10-21 19:26:42.937831+00 f t 8000.00 1 8000.00 10219 85 \N 7061 +73027 2025-10-21 19:26:42.941955+00 2025-10-21 19:26:42.941963+00 f t 24000.00 1 24000.00 10219 163 \N 7061 +73029 2025-10-21 19:37:44.270391+00 2025-10-21 19:37:44.270404+00 f t 72500.00 1 72500.00 10222 104 \N 9338 +73031 2025-10-21 20:00:05.022825+00 2025-10-21 20:00:05.022838+00 f t 23000.00 1 23000.00 10225 172 \N 9341 +73050 2025-10-21 20:32:00.905253+00 2025-10-21 20:32:00.905265+00 f t 46000.00 1 46000.00 10229 82 \N 9343 +73051 2025-10-21 20:32:00.910897+00 2025-10-21 20:32:00.910904+00 f t 8000.00 1 8000.00 10229 85 \N 9343 +73052 2025-10-21 20:32:00.915313+00 2025-10-21 20:32:00.915318+00 f t 24000.00 1 24000.00 10229 88 \N 9343 +71714 2025-10-18 16:35:05.156114+00 2025-10-18 16:35:05.156127+00 f t 46000.00 1 46000.00 9983 82 \N 9156 +71715 2025-10-18 16:35:05.165822+00 2025-10-18 16:35:05.165844+00 f t 7700.00 1 7700.00 9983 91 \N 9156 +72136 2025-10-19 23:30:01.527539+00 2025-10-19 23:30:01.527553+00 f t 55000.00 1 55000.00 10055 84 \N 9209 +77248 2025-11-01 11:55:00.395875+00 2025-11-01 11:55:00.395883+00 f t 82000.00 1 82000.00 11169 97 \N 10048 +77269 2025-11-01 13:11:58.229049+00 2025-11-01 13:11:58.229058+00 f t 55000.00 1 55000.00 11175 84 \N 5900 +72254 2025-10-20 11:52:58.816453+00 2025-10-20 11:52:58.816462+00 f t 46000.00 1 46000.00 10080 82 \N 9226 +72255 2025-10-20 11:52:58.821467+00 2025-10-20 11:52:58.821476+00 f t 46000.00 1 46000.00 10080 82 \N 9227 +72336 2025-10-20 13:18:33.907386+00 2025-10-20 13:18:33.907394+00 f t 31500.00 1 31500.00 10088 111 \N 9234 +72337 2025-10-20 13:18:33.912862+00 2025-10-20 13:18:33.91287+00 f t 7700.00 1 7700.00 10088 93 \N 9234 +72338 2025-10-20 13:18:33.916986+00 2025-10-20 13:18:33.916996+00 f t 13200.00 1 13200.00 10088 146 \N 9234 +72339 2025-10-20 13:18:33.921867+00 2025-10-20 13:18:33.921878+00 f t 46000.00 1 46000.00 10088 82 \N 9234 +72394 2025-10-20 13:40:20.512041+00 2025-10-20 13:40:20.512051+00 f t 31500.00 1 31500.00 10096 111 \N 9241 +72395 2025-10-20 13:40:20.517586+00 2025-10-20 13:40:20.517596+00 f t 7700.00 1 7700.00 10096 93 \N 9241 +72396 2025-10-20 13:40:20.521778+00 2025-10-20 13:40:20.521786+00 f t 13200.00 1 13200.00 10096 146 \N 9241 +72397 2025-10-20 13:40:20.525871+00 2025-10-20 13:40:20.525878+00 f t 46000.00 1 46000.00 10096 82 \N 9241 +71816 2025-10-18 17:01:38.852511+00 2025-10-18 17:01:38.852524+00 f t 46000.00 1 46000.00 9987 82 \N 9158 +71817 2025-10-18 17:01:38.858055+00 2025-10-18 17:01:38.858064+00 f t 7700.00 1 7700.00 9987 93 \N 9158 +71818 2025-10-18 17:01:38.862296+00 2025-10-18 17:01:38.862304+00 f t 13200.00 1 13200.00 9987 146 \N 9158 +71819 2025-10-18 17:01:38.866709+00 2025-10-18 17:01:38.866717+00 f t 8000.00 1 8000.00 9987 85 \N 9158 +71820 2025-10-18 17:01:38.871288+00 2025-10-18 17:01:38.871297+00 f t 24000.00 1 24000.00 9987 163 \N 9158 +71821 2025-10-18 17:27:22.094242+00 2025-10-18 17:27:22.094251+00 f t 78000.00 1 78000.00 9988 167 \N 9159 +71823 2025-10-18 17:33:11.923416+00 2025-10-18 17:33:11.923428+00 f t 46000.00 1 46000.00 9989 82 \N 9160 +71833 2025-10-18 17:38:15.296261+00 2025-10-18 17:38:15.296274+00 f t 46000.00 1 46000.00 9990 82 \N 9161 +71839 2025-10-18 17:58:38.963667+00 2025-10-18 17:58:38.963681+00 f t 46000.00 1 46000.00 9991 82 \N 9162 +71840 2025-10-18 17:58:38.969631+00 2025-10-18 17:58:38.969643+00 f t 8000.00 1 8000.00 9991 85 \N 9162 +71849 2025-10-18 18:21:55.738577+00 2025-10-18 18:21:55.738587+00 f t 46000.00 1 46000.00 9992 82 \N 9163 +71850 2025-10-18 18:21:55.743579+00 2025-10-18 18:21:55.743591+00 f t 24000.00 1 24000.00 9992 163 \N 9163 +71865 2025-10-18 18:30:36.640228+00 2025-10-18 18:30:36.640241+00 f t 55000.00 1 55000.00 9993 84 \N 9164 +71867 2025-10-18 18:31:49.682228+00 2025-10-18 18:31:49.682238+00 f t 55000.00 1 55000.00 9995 84 \N 9165 +71869 2025-10-18 19:19:38.637569+00 2025-10-18 19:19:38.637578+00 f t 55000.00 1 55000.00 10000 84 \N 9166 +71888 2025-10-18 19:30:34.336606+00 2025-10-18 19:30:34.336615+00 f t 46000.00 1 46000.00 10001 82 \N 9167 +71889 2025-10-18 19:30:34.341923+00 2025-10-18 19:30:34.341933+00 f t 69000.00 1 69000.00 10001 141 \N 9167 +71893 2025-10-18 19:30:43.1129+00 2025-10-18 19:30:43.112911+00 f t 82000.00 1 82000.00 10002 97 \N 9168 +71894 2025-10-18 19:30:43.119867+00 2025-10-18 19:30:43.11988+00 f t 46000.00 1 46000.00 10002 82 \N 9168 +71895 2025-10-18 19:30:43.124767+00 2025-10-18 19:30:43.124779+00 f t 24000.00 1 24000.00 10002 86 \N 9168 +71900 2025-10-18 19:59:16.720266+00 2025-10-18 19:59:16.720274+00 f t 46000.00 1 46000.00 10003 82 \N 9169 +71901 2025-10-18 19:59:16.725598+00 2025-10-18 19:59:16.72561+00 f t 8000.00 1 8000.00 10003 85 \N 9169 +71902 2025-10-18 21:08:11.0716+00 2025-10-18 21:08:11.071611+00 f t 46000.00 1 46000.00 9985 82 \N 9157 +71903 2025-10-18 21:08:11.077268+00 2025-10-18 21:08:11.077277+00 f t 8000.00 1 8000.00 9985 85 \N 9157 +71904 2025-10-18 21:08:11.081963+00 2025-10-18 21:08:11.081971+00 f t 24000.00 1 24000.00 9985 86 \N 9157 +71905 2025-10-18 21:11:24.60474+00 2025-10-18 21:11:24.604756+00 f t 46000.00 1 46000.00 9984 82 \N 9021 +71906 2025-10-18 21:11:24.612281+00 2025-10-18 21:11:24.612293+00 f t 81500.00 1 81500.00 9984 143 \N 9021 +71907 2025-10-18 21:11:24.618299+00 2025-10-18 21:11:24.61831+00 f t 1000.00 1 1000.00 9984 170 \N 9021 +71915 2025-10-18 21:24:21.46647+00 2025-10-18 21:24:21.466481+00 f t 30000.00 1 30000.00 10004 83 \N 9170 +71927 2025-10-18 23:26:26.290943+00 2025-10-18 23:26:26.290953+00 f t 46000.00 1 46000.00 10006 82 \N 9171 +71930 2025-10-19 00:13:48.869998+00 2025-10-19 00:13:48.870007+00 f t 46000.00 1 46000.00 10007 82 \N 9172 +71931 2025-10-19 00:13:48.874513+00 2025-10-19 00:13:48.874521+00 f t 24000.00 1 24000.00 10007 163 \N 9172 +71946 2025-10-19 02:04:44.464378+00 2025-10-19 02:04:44.46439+00 f t 55000.00 1 55000.00 10008 84 \N 9173 +71953 2025-10-19 05:34:32.569056+00 2025-10-19 05:34:32.569064+00 f t 55000.00 1 55000.00 10012 84 \N 9175 +71977 2025-10-19 09:51:45.214215+00 2025-10-19 09:51:45.214225+00 f t 55000.00 1 55000.00 10015 84 \N 9178 +71979 2025-10-19 10:46:07.319614+00 2025-10-19 10:46:07.319628+00 f t 55000.00 1 55000.00 10016 84 \N 9179 +71984 2025-10-19 11:21:15.538163+00 2025-10-19 11:21:15.538177+00 f t 46000.00 1 46000.00 10017 82 \N 9180 +71986 2025-10-19 11:25:43.287922+00 2025-10-19 11:25:43.287931+00 f t 55000.00 1 55000.00 10018 84 \N 9181 +71988 2025-10-19 11:56:44.964021+00 2025-10-19 11:56:44.964031+00 f t 68000.00 1 68000.00 10020 106 \N 9182 +71992 2025-10-19 12:48:43.675278+00 2025-10-19 12:48:43.675289+00 f t 46000.00 1 46000.00 10021 82 \N 9183 +71994 2025-10-19 12:49:39.562511+00 2025-10-19 12:49:39.562519+00 f t 55000.00 1 55000.00 10022 84 \N 9185 +71998 2025-10-19 12:59:21.710353+00 2025-10-19 12:59:21.710361+00 f t 55000.00 1 55000.00 10023 84 \N 9186 +72001 2025-10-19 13:01:21.253721+00 2025-10-19 13:01:21.253734+00 f t 46000.00 1 46000.00 10024 82 \N 9187 +72002 2025-10-19 13:01:21.260453+00 2025-10-19 13:01:21.260462+00 f t 8000.00 1 8000.00 10024 85 \N 9187 +72003 2025-10-19 14:16:05.197284+00 2025-10-19 14:16:05.197296+00 f t 46000.00 1 46000.00 10014 82 \N 9039 +72004 2025-10-19 14:23:52.470343+00 2025-10-19 14:23:52.470353+00 f t 55000.00 1 55000.00 10011 84 \N 9067 +72007 2025-10-19 14:44:08.686037+00 2025-10-19 14:44:08.686049+00 f t 46000.00 1 46000.00 10026 82 \N 9188 +72008 2025-10-19 14:44:08.691458+00 2025-10-19 14:44:08.691466+00 f t 7700.00 1 7700.00 10026 93 \N 9188 +72012 2025-10-19 14:45:06.554475+00 2025-10-19 14:45:06.554487+00 f t 55000.00 1 55000.00 10027 84 \N 9189 +72016 2025-10-19 14:56:48.384681+00 2025-10-19 14:56:48.38469+00 f t 55000.00 1 55000.00 10028 84 \N 9190 +72018 2025-10-19 15:01:39.175417+00 2025-10-19 15:01:39.175426+00 f t 30000.00 1 30000.00 10029 83 \N 9191 +72032 2025-10-19 15:19:20.151946+00 2025-10-19 15:19:20.151957+00 f t 46000.00 1 46000.00 10030 82 \N 9192 +72036 2025-10-19 15:49:41.139815+00 2025-10-19 15:49:41.139828+00 f t 55000.00 1 55000.00 10031 84 \N 9193 +72040 2025-10-19 16:34:04.545027+00 2025-10-19 16:34:04.545038+00 f t 46000.00 1 46000.00 10032 82 \N 9194 +77099 2025-10-31 23:48:58.594075+00 2025-10-31 23:48:58.594084+00 f t 46000.00 1 46000.00 11129 82 \N 10013 +72043 2025-10-19 16:39:48.83493+00 2025-10-19 16:39:48.834945+00 f t 30000.00 1 30000.00 10033 83 \N 9195 +72044 2025-10-19 17:25:42.020347+00 2025-10-19 17:25:42.020357+00 f t 15400.00 1 15400.00 10035 92 \N 6168 +72045 2025-10-19 17:25:42.02726+00 2025-10-19 17:25:42.027273+00 f t 46000.00 1 46000.00 10035 82 \N 6168 +72047 2025-10-19 18:04:00.757046+00 2025-10-19 18:04:00.757056+00 f t 46000.00 1 46000.00 10036 82 \N 9197 +72095 2025-10-19 20:31:11.496076+00 2025-10-19 20:31:11.496088+00 f t 46000.00 1 46000.00 10042 82 \N 9201 +72096 2025-10-19 20:31:11.502318+00 2025-10-19 20:31:11.502329+00 f t 24000.00 1 24000.00 10042 163 \N 9201 +74435 2025-10-24 22:52:21.488155+00 2025-10-24 22:52:21.488169+00 f t 46000.00 1 46000.00 10462 82 \N 9503 +77158 2025-11-01 02:36:33.426306+00 2025-11-01 02:36:33.426316+00 f t 46000.00 1 46000.00 11153 82 \N 10033 +72159 2025-10-20 03:54:52.550896+00 2025-10-20 03:54:52.550906+00 f t 55000.00 1 55000.00 10067 84 \N 9217 +72190 2025-10-20 10:55:30.65773+00 2025-10-20 10:55:30.657738+00 f t 46000.00 1 46000.00 10074 82 \N 9222 +72191 2025-10-20 10:55:30.662369+00 2025-10-20 10:55:30.662376+00 f t 24000.00 1 24000.00 10074 163 \N 9222 +74525 2025-10-25 00:46:41.886439+00 2025-10-25 00:46:41.886448+00 f t 24000.00 1 24000.00 10470 86 \N 9512 +72227 2025-10-20 11:30:09.184295+00 2025-10-20 11:30:09.184304+00 f t 78000.00 1 78000.00 10077 167 \N 9224 +74526 2025-10-25 00:46:41.894452+00 2025-10-25 00:46:41.894464+00 f t 46000.00 1 46000.00 10470 82 \N 9512 +74532 2025-10-25 06:22:32.62434+00 2025-10-25 06:22:32.624349+00 f t 8000.00 1 8000.00 10476 85 \N 9517 +74533 2025-10-25 06:22:32.630142+00 2025-10-25 06:22:32.630149+00 f t 46000.00 1 46000.00 10476 82 \N 9517 +74540 2025-10-25 08:36:50.605174+00 2025-10-25 08:36:50.605182+00 f t 55000.00 1 55000.00 10478 84 \N 9519 +74555 2025-10-25 12:53:26.375263+00 2025-10-25 12:53:26.375272+00 f t 80000.00 1 80000.00 10485 173 \N 9526 +74561 2025-10-25 13:42:37.098513+00 2025-10-25 13:42:37.098527+00 f t 13200.00 1 13200.00 10490 146 \N 9364 +74566 2025-10-25 13:44:40.148393+00 2025-10-25 13:44:40.148401+00 f t 55000.00 1 55000.00 10491 84 \N 9531 +74571 2025-10-25 14:02:45.580515+00 2025-10-25 14:02:45.580523+00 f t 107000.00 1 107000.00 10486 103 \N 9527 +74641 2025-10-25 18:19:55.188874+00 2025-10-25 18:19:55.188886+00 f t 55000.00 1 55000.00 10508 84 \N 9543 +74675 2025-10-25 22:46:50.543249+00 2025-10-25 22:46:50.543262+00 f t 46000.00 1 46000.00 10520 82 \N 9552 +74699 2025-10-25 22:49:11.199869+00 2025-10-25 22:49:11.199882+00 f t 60000.00 1 60000.00 10518 101 \N 9549 +72461 2025-10-20 13:55:29.283294+00 2025-10-20 13:55:29.283302+00 f t 46000.00 1 46000.00 10100 82 \N 9243 +72462 2025-10-20 13:55:29.288501+00 2025-10-20 13:55:29.28851+00 f t 8000.00 1 8000.00 10100 85 \N 9243 +74714 2025-10-25 23:18:41.026836+00 2025-10-25 23:18:41.026848+00 f t 30000.00 1 30000.00 10524 83 \N 9555 +72501 2025-10-20 15:16:33.846617+00 2025-10-20 15:16:33.846628+00 f t 55000.00 1 55000.00 10110 84 \N 9249 +74771 2025-10-26 16:04:27.724038+00 2025-10-26 16:04:27.724047+00 f t 55000.00 1 55000.00 10544 84 \N 9571 +74776 2025-10-26 16:19:23.772842+00 2025-10-26 16:19:23.77285+00 f t 55000.00 1 55000.00 10545 84 \N 9572 +74787 2025-10-26 17:24:17.925152+00 2025-10-26 17:24:17.925162+00 f t 55000.00 1 55000.00 10550 84 \N 9577 +74797 2025-10-26 18:16:03.217872+00 2025-10-26 18:16:03.217884+00 f t 31500.00 1 31500.00 10555 111 \N 9580 +74881 2025-10-27 13:56:16.92835+00 2025-10-27 13:56:16.928358+00 f t 55000.00 1 55000.00 10583 84 \N 7575 +74934 2025-10-27 14:56:43.781254+00 2025-10-27 14:56:43.781262+00 f t 46000.00 1 46000.00 10592 82 \N 8317 +74935 2025-10-27 14:56:43.78683+00 2025-10-27 14:56:43.786837+00 f t 8000.00 1 8000.00 10592 85 \N 8317 +74936 2025-10-27 14:56:43.791189+00 2025-10-27 14:56:43.791195+00 f t 24000.00 1 24000.00 10592 163 \N 8317 +74937 2025-10-27 14:56:43.795593+00 2025-10-27 14:56:43.795601+00 f t 33000.00 1 33000.00 10592 123 \N 8317 +72712 2025-10-20 23:14:27.194927+00 2025-10-20 23:14:27.194936+00 f t 55000.00 1 55000.00 10152 84 \N 9286 +72771 2025-10-21 01:33:31.679152+00 2025-10-21 01:33:31.679161+00 f t 7700.00 1 7700.00 10163 93 \N 9298 +72772 2025-10-21 01:33:31.684703+00 2025-10-21 01:33:31.684712+00 f t 87000.00 1 87000.00 10163 165 \N 9298 +72773 2025-10-21 01:33:31.688945+00 2025-10-21 01:33:31.688954+00 f t 13200.00 1 13200.00 10163 146 \N 9298 +72774 2025-10-21 01:33:31.693091+00 2025-10-21 01:33:31.693098+00 f t 46000.00 1 46000.00 10163 82 \N 9298 +72786 2025-10-21 02:57:31.033502+00 2025-10-21 02:57:31.033512+00 f t 46000.00 1 46000.00 10166 82 \N 9301 +72787 2025-10-21 02:57:31.039442+00 2025-10-21 02:57:31.039451+00 f t 8000.00 1 8000.00 10166 85 \N 9301 +72820 2025-10-21 11:07:18.783172+00 2025-10-21 11:07:18.78318+00 f t 82000.00 1 82000.00 10171 97 \N 9305 +72833 2025-10-21 12:10:43.399569+00 2025-10-21 12:10:43.399582+00 f t 55000.00 1 55000.00 10172 84 \N 9306 +72841 2025-10-21 12:27:16.753556+00 2025-10-21 12:27:16.753566+00 f t 75000.00 1 75000.00 10177 108 \N 9311 +72851 2025-10-21 14:30:40.593841+00 2025-10-21 14:30:40.593854+00 f t 23000.00 1 23000.00 10188 172 \N 8941 +72888 2025-10-21 15:23:29.570281+00 2025-10-21 15:23:29.570292+00 f t 46000.00 1 46000.00 10194 82 \N 9322 +72891 2025-10-21 15:52:41.705942+00 2025-10-21 15:52:41.705956+00 f t 46000.00 1 46000.00 10199 82 \N 9324 +72959 2025-10-21 16:46:19.393922+00 2025-10-21 16:46:19.393935+00 f t 34000.00 1 34000.00 10204 110 \N 9328 +72960 2025-10-21 16:46:19.400861+00 2025-10-21 16:46:19.400871+00 f t 7700.00 1 7700.00 10204 93 \N 9328 +72961 2025-10-21 16:46:19.406776+00 2025-10-21 16:46:19.406787+00 f t 13200.00 1 13200.00 10204 146 \N 9328 +72962 2025-10-21 16:46:19.412667+00 2025-10-21 16:46:19.412677+00 f t 46000.00 1 46000.00 10204 82 \N 9328 +72992 2025-10-21 17:24:47.250695+00 2025-10-21 17:24:47.250705+00 f t 30000.00 1 30000.00 10208 83 \N 9331 +73006 2025-10-21 19:06:20.789886+00 2025-10-21 19:06:20.789895+00 f t 55000.00 1 55000.00 10217 84 \N 9335 +73028 2025-10-21 19:32:42.252154+00 2025-10-21 19:32:42.252163+00 f t 46000.00 1 46000.00 10220 82 \N 9337 +73030 2025-10-21 19:54:52.928589+00 2025-10-21 19:54:52.928597+00 f t 46000.00 1 46000.00 10223 82 \N 9340 +73053 2025-10-21 20:32:00.919754+00 2025-10-21 20:32:00.919762+00 f t 24000.00 1 24000.00 10229 163 \N 9343 +73067 2025-10-21 21:14:57.07968+00 2025-10-21 21:14:57.079692+00 f t 46000.00 1 46000.00 10236 82 \N 9347 +73078 2025-10-21 21:25:59.928171+00 2025-10-21 21:25:59.928183+00 f t 55000.00 1 55000.00 10235 84 \N 9348 +73100 2025-10-21 21:41:13.458882+00 2025-10-21 21:41:13.45889+00 f t 46000.00 1 46000.00 10237 82 \N 9349 +73101 2025-10-21 21:41:13.463792+00 2025-10-21 21:41:13.463798+00 f t 8000.00 1 8000.00 10237 85 \N 9349 +73105 2025-10-21 22:11:31.018913+00 2025-10-21 22:11:31.018922+00 f t 8000.00 1 8000.00 10239 85 \N 9350 +73106 2025-10-21 22:11:31.025327+00 2025-10-21 22:11:31.025335+00 f t 46000.00 1 46000.00 10239 82 \N 9350 +73107 2025-10-21 22:13:52.6462+00 2025-10-21 22:13:52.646212+00 f t 46000.00 1 46000.00 10240 82 \N 9351 +77118 2025-11-01 01:10:51.618973+00 2025-11-01 01:10:51.618982+00 f t 55000.00 1 55000.00 11141 84 \N 10022 +74527 2025-10-25 02:17:45.287409+00 2025-10-25 02:17:45.287422+00 f t 46000.00 1 46000.00 10474 82 \N 9515 +74541 2025-10-25 08:55:50.810765+00 2025-10-25 08:55:50.810774+00 f t 55000.00 1 55000.00 10479 84 \N 9520 +74589 2025-10-25 14:48:48.685091+00 2025-10-25 14:48:48.685104+00 f t 13200.00 1 13200.00 10497 146 \N 9474 +74637 2025-10-25 18:16:29.696491+00 2025-10-25 18:16:29.696502+00 f t 55000.00 1 55000.00 10507 84 \N 9542 +74642 2025-10-25 18:30:55.462882+00 2025-10-25 18:30:55.462891+00 f t 0.00 1 0.00 10500 97 \N 9536 +74666 2025-10-25 22:22:39.530159+00 2025-10-25 22:22:39.530169+00 f t 55000.00 1 55000.00 10516 84 \N 9547 +74671 2025-10-25 22:45:06.431668+00 2025-10-25 22:45:06.431681+00 f t 46000.00 1 46000.00 10519 82 \N 9551 +73183 2025-10-21 22:28:47.049129+00 2025-10-21 22:28:47.049138+00 f t 46000.00 1 46000.00 10241 82 \N 9352 +73184 2025-10-21 22:28:47.055227+00 2025-10-21 22:28:47.055236+00 f t 24000.00 1 24000.00 10241 163 \N 9352 +73185 2025-10-21 22:28:47.059884+00 2025-10-21 22:28:47.059894+00 f t 24000.00 1 24000.00 10241 88 \N 9352 +73186 2025-10-21 22:30:02.656236+00 2025-10-21 22:30:02.65625+00 f t 46000.00 1 46000.00 10244 82 \N 9353 +74700 2025-10-25 23:00:59.41835+00 2025-10-25 23:00:59.418358+00 f t 55000.00 1 55000.00 10522 84 \N 9553 +74715 2025-10-25 23:29:58.502236+00 2025-10-25 23:29:58.502245+00 f t 55000.00 1 55000.00 10525 84 \N 9556 +74749 2025-10-26 04:19:24.856726+00 2025-10-26 04:19:24.856735+00 f t 55000.00 1 55000.00 10534 84 \N 8913 +74750 2025-10-26 04:19:24.863779+00 2025-10-26 04:19:24.863786+00 f t 46000.00 1 46000.00 10534 82 \N 8913 +74766 2025-10-26 15:38:20.856571+00 2025-10-26 15:38:20.856579+00 f t 55000.00 1 55000.00 10541 84 \N 9568 +74798 2025-10-26 18:41:13.65886+00 2025-10-26 18:41:13.658869+00 f t 55000.00 1 55000.00 10558 84 \N 8899 +74814 2025-10-26 20:13:45.395021+00 2025-10-26 20:13:45.395029+00 f t 55000.00 1 55000.00 10565 84 \N 9584 +74851 2025-10-27 02:06:39.537637+00 2025-10-27 02:06:39.537645+00 f t 107000.00 1 107000.00 10568 103 \N 9586 +74862 2025-10-27 13:18:34.943444+00 2025-10-27 13:18:34.943453+00 f t 107000.00 1 107000.00 10579 103 \N 9592 +74882 2025-10-27 13:56:47.801924+00 2025-10-27 13:56:47.801933+00 f t 72500.00 1 72500.00 10581 104 \N 9338 +74889 2025-10-27 14:18:40.051147+00 2025-10-27 14:18:40.051167+00 f t 24000.00 1 24000.00 10586 86 \N 9598 +74890 2025-10-27 14:18:40.057023+00 2025-10-27 14:18:40.057032+00 f t 46000.00 1 46000.00 10586 82 \N 9598 +74926 2025-10-27 14:45:16.54126+00 2025-10-27 14:45:16.541269+00 f t 55000.00 1 55000.00 10590 84 \N 9600 +74938 2025-10-27 15:01:41.070994+00 2025-10-27 15:01:41.071007+00 f t 46000.00 1 46000.00 10594 82 \N 9603 +74954 2025-10-27 15:18:12.092126+00 2025-10-27 15:18:12.092141+00 f t 24000.00 1 24000.00 10597 163 \N 9605 +74955 2025-10-27 15:18:12.100562+00 2025-10-27 15:18:12.100575+00 f t 46000.00 1 46000.00 10597 82 \N 9605 +74987 2025-10-27 16:16:49.966356+00 2025-10-27 16:16:49.966363+00 f t 55000.00 1 55000.00 10602 84 \N 9608 +75004 2025-10-27 17:01:02.805253+00 2025-10-27 17:01:02.805265+00 f t 24000.00 1 24000.00 10610 163 \N 9613 +75005 2025-10-27 17:01:02.814926+00 2025-10-27 17:01:02.814943+00 f t 46000.00 1 46000.00 10610 82 \N 9613 +73254 2025-10-21 22:50:41.979875+00 2025-10-21 22:50:41.979884+00 f t 32500.00 1 32500.00 10247 112 \N 9357 +73255 2025-10-21 22:50:41.987222+00 2025-10-21 22:50:41.987234+00 f t 7700.00 1 7700.00 10247 93 \N 9357 +73256 2025-10-21 22:50:41.992624+00 2025-10-21 22:50:41.992631+00 f t 13200.00 1 13200.00 10247 146 \N 9357 +73257 2025-10-21 22:50:41.997604+00 2025-10-21 22:50:41.997611+00 f t 46000.00 1 46000.00 10247 82 \N 9357 +73319 2025-10-21 23:16:24.063893+00 2025-10-21 23:16:24.063902+00 f t 31500.00 1 31500.00 10245 111 \N 9356 +73320 2025-10-21 23:16:24.070146+00 2025-10-21 23:16:24.070153+00 f t 46000.00 1 46000.00 10245 82 \N 9356 +73321 2025-10-21 23:16:24.075103+00 2025-10-21 23:16:24.07511+00 f t 7700.00 1 7700.00 10245 93 \N 9356 +73322 2025-10-21 23:16:24.079798+00 2025-10-21 23:16:24.079805+00 f t 13200.00 1 13200.00 10245 146 \N 9356 +73335 2025-10-21 23:42:09.623774+00 2025-10-21 23:42:09.623782+00 f t 24000.00 1 24000.00 10254 163 \N 9359 +73336 2025-10-21 23:42:09.629852+00 2025-10-21 23:42:09.629861+00 f t 46000.00 1 46000.00 10254 82 \N 9359 +73337 2025-10-21 23:44:19.92875+00 2025-10-21 23:44:19.92876+00 f t 30000.00 1 30000.00 10255 83 \N 9360 +73340 2025-10-22 00:34:28.16489+00 2025-10-22 00:34:28.164899+00 f t 46000.00 1 46000.00 10257 82 \N 9361 +73341 2025-10-22 00:34:28.17006+00 2025-10-22 00:34:28.170066+00 f t 24000.00 1 24000.00 10257 86 \N 9361 +73342 2025-10-22 00:50:01.890217+00 2025-10-22 00:50:01.890231+00 f t 46000.00 1 46000.00 10259 82 \N 9362 +73356 2025-10-22 01:18:08.919432+00 2025-10-22 01:18:08.91944+00 f t 23000.00 1 23000.00 10261 172 \N 9365 +73357 2025-10-22 01:26:11.799163+00 2025-10-22 01:26:11.799172+00 f t 55000.00 1 55000.00 10264 84 \N 9369 +73358 2025-10-22 01:43:44.60661+00 2025-10-22 01:43:44.606619+00 f t 46000.00 1 46000.00 10265 82 \N 9370 +73379 2025-10-22 02:41:12.279562+00 2025-10-22 02:41:12.279571+00 f t 46000.00 1 46000.00 10268 82 \N 9371 +73380 2025-10-22 02:41:12.285017+00 2025-10-22 02:41:12.285024+00 f t 24000.00 1 24000.00 10268 163 \N 9371 +73381 2025-10-22 02:41:12.289416+00 2025-10-22 02:41:12.289424+00 f t 46000.00 1 46000.00 10268 82 \N 9372 +73382 2025-10-22 02:41:12.293894+00 2025-10-22 02:41:12.2939+00 f t 24000.00 1 24000.00 10268 163 \N 9372 +73383 2025-10-22 04:40:47.311689+00 2025-10-22 04:40:47.311701+00 f t 46000.00 1 46000.00 10272 82 \N 9376 +73385 2025-10-22 08:14:20.582965+00 2025-10-22 08:14:20.582975+00 f t 46000.00 1 46000.00 10274 82 \N 9180 +73386 2025-10-22 11:13:57.732239+00 2025-10-22 11:13:57.732247+00 f t 55000.00 1 55000.00 10275 84 \N 9377 +73387 2025-10-22 11:26:03.411944+00 2025-10-22 11:26:03.411957+00 f t 23000.00 1 23000.00 10276 172 \N 9378 +73390 2025-10-22 12:10:06.358141+00 2025-10-22 12:10:06.358152+00 f t 24000.00 1 24000.00 10277 163 \N 9379 +73391 2025-10-22 12:10:06.365212+00 2025-10-22 12:10:06.365222+00 f t 46000.00 1 46000.00 10277 82 \N 9379 +73394 2025-10-22 12:26:05.723869+00 2025-10-22 12:26:05.723883+00 f t 46000.00 1 46000.00 10278 82 \N 9380 +73395 2025-10-22 12:26:05.731463+00 2025-10-22 12:26:05.731475+00 f t 8000.00 1 8000.00 10278 85 \N 9380 +73396 2025-10-22 12:26:05.737647+00 2025-10-22 12:26:05.737657+00 f t 24000.00 1 24000.00 10278 86 \N 9380 +73397 2025-10-22 13:09:41.454475+00 2025-10-22 13:09:41.454486+00 f t 8000.00 1 8000.00 10281 85 \N 9381 +73398 2025-10-22 13:09:41.460424+00 2025-10-22 13:09:41.460431+00 f t 46000.00 1 46000.00 10281 82 \N 9381 +73415 2025-10-22 13:50:29.49554+00 2025-10-22 13:50:29.495552+00 f t 46000.00 1 46000.00 10283 82 \N 9382 +73416 2025-10-22 13:50:29.502012+00 2025-10-22 13:50:29.502022+00 f t 8000.00 1 8000.00 10283 85 \N 9382 +73419 2025-10-22 14:04:35.066206+00 2025-10-22 14:04:35.066215+00 f t 55000.00 1 55000.00 10260 84 \N 9364 +73422 2025-10-22 15:02:06.028912+00 2025-10-22 15:02:06.028921+00 f t 46000.00 1 46000.00 10287 82 \N 7005 +73423 2025-10-22 15:02:06.035179+00 2025-10-22 15:02:06.035187+00 f t 8000.00 1 8000.00 10287 85 \N 7005 +77101 2025-10-31 23:55:09.435047+00 2025-10-31 23:55:09.435055+00 f t 46000.00 1 46000.00 11132 82 \N 10014 +77119 2025-11-01 01:28:24.454628+00 2025-11-01 01:28:24.454639+00 f t 46000.00 1 46000.00 11142 82 \N 10023 +73426 2025-10-22 15:14:09.897764+00 2025-10-22 15:14:09.897773+00 f t 8000.00 1 8000.00 10288 85 \N 9384 +73427 2025-10-22 15:14:09.903809+00 2025-10-22 15:14:09.903818+00 f t 46000.00 1 46000.00 10288 82 \N 9384 +74437 2025-10-24 23:06:04.562436+00 2025-10-24 23:06:04.56245+00 f t 55000.00 1 55000.00 10464 84 \N 9504 +73431 2025-10-22 15:25:52.817206+00 2025-10-22 15:25:52.817216+00 f t 55000.00 1 55000.00 10238 84 \N 602 +74515 2025-10-25 00:02:44.764596+00 2025-10-25 00:02:44.764604+00 f t 46000.00 1 46000.00 10467 82 \N 9508 +74516 2025-10-25 00:02:44.770967+00 2025-10-25 00:02:44.770975+00 f t 8000.00 1 8000.00 10467 85 \N 9508 +74517 2025-10-25 00:02:44.775966+00 2025-10-25 00:02:44.775978+00 f t 24000.00 1 24000.00 10467 163 \N 9508 +74518 2025-10-25 00:02:44.781266+00 2025-10-25 00:02:44.781276+00 f t 46000.00 1 46000.00 10467 82 \N 9509 +74519 2025-10-25 00:02:44.787539+00 2025-10-25 00:02:44.78755+00 f t 8000.00 1 8000.00 10467 85 \N 9509 +74520 2025-10-25 00:02:44.793335+00 2025-10-25 00:02:44.793345+00 f t 24000.00 1 24000.00 10467 163 \N 9509 +73447 2025-10-22 16:01:15.92648+00 2025-10-22 16:01:15.92649+00 f t 8000.00 1 8000.00 10291 85 \N 9386 +73448 2025-10-22 16:01:15.934344+00 2025-10-22 16:01:15.934354+00 f t 24000.00 1 24000.00 10291 86 \N 9386 +73449 2025-10-22 16:01:15.940216+00 2025-10-22 16:01:15.940224+00 f t 24000.00 1 24000.00 10291 87 \N 9386 +73450 2025-10-22 16:01:15.946688+00 2025-10-22 16:01:15.9467+00 f t 46000.00 1 46000.00 10291 82 \N 9386 +73452 2025-10-22 16:11:34.058821+00 2025-10-22 16:11:34.058831+00 f t 30000.00 1 30000.00 10293 83 \N 9387 +74542 2025-10-25 11:19:19.202272+00 2025-10-25 11:19:19.202284+00 f t 55000.00 1 55000.00 10481 84 \N 9521 +73456 2025-10-22 16:20:31.087812+00 2025-10-22 16:20:31.087825+00 f t 55000.00 1 55000.00 10295 84 \N 9389 +73457 2025-10-22 16:28:27.468329+00 2025-10-22 16:28:27.468341+00 f t 30000.00 1 30000.00 10296 83 \N 618 +73458 2025-10-22 16:30:56.596172+00 2025-10-22 16:30:56.596181+00 f t 55000.00 1 55000.00 10297 84 \N 4489 +74557 2025-10-25 13:39:11.08085+00 2025-10-25 13:39:11.080859+00 f t 78000.00 1 78000.00 10488 167 \N 9364 +73461 2025-10-22 17:14:33.441056+00 2025-10-22 17:14:33.441066+00 f t 68000.00 1 68000.00 10290 106 \N 8899 +73462 2025-10-22 17:29:36.18557+00 2025-10-22 17:29:36.185578+00 f t 46000.00 1 46000.00 10300 82 \N 8504 +73463 2025-10-22 18:29:43.018276+00 2025-10-22 18:29:43.018285+00 f t 80000.00 1 80000.00 10303 173 \N 9393 +73473 2025-10-22 18:37:57.345404+00 2025-10-22 18:37:57.345412+00 f t 75000.00 1 75000.00 10304 108 \N 3480 +73472 2025-10-22 18:37:57.340076+00 2025-10-22 18:37:57.340085+00 f t 75000.00 1 75000.00 10304 108 \N 3479 +74662 2025-10-25 19:15:44.885955+00 2025-10-25 19:15:44.885967+00 f t 30000.00 1 30000.00 10511 83 \N 9545 +74716 2025-10-26 00:30:43.544769+00 2025-10-26 00:30:43.544781+00 f t 55000.00 1 55000.00 10528 84 \N 9557 +74767 2025-10-26 15:42:02.900301+00 2025-10-26 15:42:02.900313+00 f t 8000.00 1 8000.00 10542 85 \N 9569 +74768 2025-10-26 15:42:02.909394+00 2025-10-26 15:42:02.909434+00 f t 46000.00 1 46000.00 10542 82 \N 9569 +74789 2025-10-26 17:58:34.038373+00 2025-10-26 17:58:34.038382+00 f t 55000.00 1 55000.00 10554 84 \N 9579 +74799 2025-10-26 18:51:32.944528+00 2025-10-26 18:51:32.944537+00 f t 55000.00 1 55000.00 10559 84 \N 9581 +74807 2025-10-26 19:20:19.650184+00 2025-10-26 19:20:19.650192+00 f t 46000.00 1 46000.00 10561 82 \N 9582 +74808 2025-10-26 19:20:19.655789+00 2025-10-26 19:20:19.655796+00 f t 8000.00 1 8000.00 10561 85 \N 9582 +74809 2025-10-26 19:20:19.660475+00 2025-10-26 19:20:19.660482+00 f t 24000.00 1 24000.00 10561 88 \N 9582 +74810 2025-10-26 19:20:19.664495+00 2025-10-26 19:20:19.664501+00 f t 29000.00 1 29000.00 10561 123 \N 9582 +74815 2025-10-26 20:37:41.087802+00 2025-10-26 20:37:41.08781+00 f t 55000.00 1 55000.00 10566 84 \N 9585 +74852 2025-10-27 10:34:36.400653+00 2025-10-27 10:34:36.400667+00 f t 46000.00 1 46000.00 10574 82 \N 9588 +74863 2025-10-27 13:25:05.050131+00 2025-10-27 13:25:05.050146+00 f t 55000.00 1 55000.00 10577 84 \N 1025 +74891 2025-10-27 14:19:23.024674+00 2025-10-27 14:19:23.024684+00 f t 8000.00 1 8000.00 10587 85 \N 9599 +74892 2025-10-27 14:19:23.031436+00 2025-10-27 14:19:23.031446+00 f t 46000.00 1 46000.00 10587 82 \N 9599 +74927 2025-10-27 14:54:38.533593+00 2025-10-27 14:54:38.533601+00 f t 24000.00 1 24000.00 10591 86 \N 9601 +73528 2025-10-22 18:54:34.968439+00 2025-10-22 18:54:34.968448+00 f t 46000.00 1 46000.00 10306 82 \N 9398 +74928 2025-10-27 14:54:38.539631+00 2025-10-27 14:54:38.539638+00 f t 46000.00 1 46000.00 10591 82 \N 9601 +74939 2025-10-27 15:04:51.451516+00 2025-10-27 15:04:51.451525+00 f t 30000.00 1 30000.00 10595 83 \N 7660 +74988 2025-10-27 16:26:55.458385+00 2025-10-27 16:26:55.458394+00 f t 24000.00 1 24000.00 10605 163 \N 9609 +74989 2025-10-27 16:26:55.465294+00 2025-10-27 16:26:55.465307+00 f t 46000.00 1 46000.00 10605 82 \N 9609 +75017 2025-10-27 17:09:57.122211+00 2025-10-27 17:09:57.122224+00 f t 46000.00 1 46000.00 10608 82 \N 9611 +75018 2025-10-27 17:09:57.128834+00 2025-10-27 17:09:57.128844+00 f t 7700.00 1 7700.00 10608 93 \N 9611 +75019 2025-10-27 17:09:57.134458+00 2025-10-27 17:09:57.134468+00 f t 13200.00 1 13200.00 10608 146 \N 9611 +75020 2025-10-27 17:09:57.140242+00 2025-10-27 17:09:57.140251+00 f t 34000.00 1 34000.00 10608 110 \N 9611 +75023 2025-10-27 17:21:03.760609+00 2025-10-27 17:21:03.760622+00 f t 30000.00 1 30000.00 10613 83 \N 9615 +73626 2025-10-22 19:08:46.209089+00 2025-10-22 19:08:46.209097+00 f t 8000.00 1 8000.00 10308 85 \N 9399 +73627 2025-10-22 19:08:46.215469+00 2025-10-22 19:08:46.215476+00 f t 46000.00 1 46000.00 10308 82 \N 9399 +73654 2025-10-22 19:11:53.095774+00 2025-10-22 19:11:53.095783+00 f t 30000.00 1 30000.00 10309 83 \N 9400 +73679 2025-10-22 19:34:24.744243+00 2025-10-22 19:34:24.744255+00 f t 93750.00 1 93750.00 10310 90 \N 9401 +73680 2025-10-22 19:34:24.750658+00 2025-10-22 19:34:24.750665+00 f t 46000.00 1 46000.00 10310 82 \N 9401 +73687 2025-10-22 19:36:11.644537+00 2025-10-22 19:36:11.644547+00 f t 32500.00 1 32500.00 10311 112 \N 5647 +73688 2025-10-22 19:36:11.64956+00 2025-10-22 19:36:11.649567+00 f t 46000.00 1 46000.00 10311 82 \N 5647 +73689 2025-10-22 19:36:11.65417+00 2025-10-22 19:36:11.654179+00 f t 7700.00 1 7700.00 10311 93 \N 5647 +73690 2025-10-22 19:36:11.658306+00 2025-10-22 19:36:11.658312+00 f t 13200.00 1 13200.00 10311 146 \N 5647 +73691 2025-10-22 19:57:09.970816+00 2025-10-22 19:57:09.970825+00 f t 13200.00 1 13200.00 10312 146 \N 3479 +73692 2025-10-22 19:58:17.258587+00 2025-10-22 19:58:17.258599+00 f t 32500.00 1 32500.00 10313 112 \N 3479 +73702 2025-10-22 20:02:22.503657+00 2025-10-22 20:02:22.503666+00 f t 34000.00 1 34000.00 10305 110 \N 3480 +73703 2025-10-22 20:02:22.50968+00 2025-10-22 20:02:22.509691+00 f t 34000.00 1 34000.00 10305 110 \N 3479 +73704 2025-10-22 20:02:22.515669+00 2025-10-22 20:02:22.51568+00 f t 46000.00 1 46000.00 10305 82 \N 3480 +73705 2025-10-22 20:02:22.52188+00 2025-10-22 20:02:22.521889+00 f t 7700.00 1 7700.00 10305 93 \N 3480 +73706 2025-10-22 20:02:22.528296+00 2025-10-22 20:02:22.528308+00 f t 7700.00 1 7700.00 10305 93 \N 3479 +73707 2025-10-22 20:02:22.534361+00 2025-10-22 20:02:22.534373+00 f t 13200.00 1 13200.00 10305 146 \N 3479 +73708 2025-10-22 20:02:22.54068+00 2025-10-22 20:02:22.540692+00 f t 13200.00 1 13200.00 10305 146 \N 3480 +73709 2025-10-22 20:02:22.546576+00 2025-10-22 20:02:22.546583+00 f t 23000.00 1 23000.00 10305 172 \N 3479 +73710 2025-10-22 20:02:22.551051+00 2025-10-22 20:02:22.55106+00 f t 46000.00 1 46000.00 10305 82 \N 3479 +77102 2025-11-01 00:26:51.992078+00 2025-11-01 00:26:51.992086+00 f t 87000.00 1 87000.00 11137 165 \N 10018 +74543 2025-10-25 12:17:36.338203+00 2025-10-25 12:17:36.338213+00 f t 55000.00 1 55000.00 10482 84 \N 9474 +73733 2025-10-22 20:20:34.307651+00 2025-10-22 20:20:34.307663+00 f t 46000.00 1 46000.00 10314 82 \N 9402 +73734 2025-10-22 20:20:34.314561+00 2025-10-22 20:20:34.314572+00 f t 8000.00 1 8000.00 10314 85 \N 9402 +73735 2025-10-22 20:20:34.320429+00 2025-10-22 20:20:34.320439+00 f t 24000.00 1 24000.00 10314 163 \N 9402 +73736 2025-10-22 22:16:48.054398+00 2025-10-22 22:16:48.054412+00 f t 55000.00 1 55000.00 10319 84 \N 9406 +73737 2025-10-22 22:45:18.141447+00 2025-10-22 22:45:18.141457+00 f t 55000.00 1 55000.00 10323 84 \N 9409 +74569 2025-10-25 13:45:05.234484+00 2025-10-25 13:45:05.234501+00 f t 55000.00 1 55000.00 10492 84 \N 9530 +74574 2025-10-25 14:24:44.802908+00 2025-10-25 14:24:44.80292+00 f t 46000.00 1 46000.00 10495 82 \N 9532 +73743 2025-10-22 23:03:06.70474+00 2025-10-22 23:03:06.704752+00 f t 46000.00 1 46000.00 10324 82 \N 9410 +74591 2025-10-25 14:55:51.644394+00 2025-10-25 14:55:51.644402+00 f t 46000.00 1 46000.00 10499 82 \N 9535 +73745 2025-10-23 00:05:49.071848+00 2025-10-23 00:05:49.071857+00 f t 23000.00 1 23000.00 10325 172 \N 3479 +73746 2025-10-23 00:05:49.077654+00 2025-10-23 00:05:49.077663+00 f t 23000.00 1 23000.00 10325 172 \N 3480 +73747 2025-10-23 01:53:30.770403+00 2025-10-23 01:53:30.770412+00 f t 46000.00 1 46000.00 10329 82 \N 9412 +74663 2025-10-25 20:17:44.735259+00 2025-10-25 20:17:44.735268+00 f t 46000.00 1 46000.00 10512 82 \N 9546 +74668 2025-10-25 22:41:59.225779+00 2025-10-25 22:41:59.225787+00 f t 87000.00 1 87000.00 10501 165 \N 9538 +74737 2025-10-26 03:01:45.080729+00 2025-10-26 03:01:45.08074+00 f t 31500.00 1 31500.00 10531 111 \N 9559 +74738 2025-10-26 03:01:45.087502+00 2025-10-26 03:01:45.087513+00 f t 31500.00 1 31500.00 10531 111 \N 9560 +74744 2025-10-26 04:19:17.875424+00 2025-10-26 04:19:17.875433+00 f t 55000.00 1 55000.00 10533 84 \N 9561 +74763 2025-10-26 15:17:02.546747+00 2025-10-26 15:17:02.546763+00 f t 46000.00 1 46000.00 10539 82 \N 9566 +74769 2025-10-26 15:47:15.546274+00 2025-10-26 15:47:15.546282+00 f t 46000.00 1 46000.00 10543 82 \N 9570 +74800 2025-10-26 19:02:34.510963+00 2025-10-26 19:02:34.510976+00 f t 46000.00 1 46000.00 10560 82 \N 9541 +73791 2025-10-23 02:17:49.968867+00 2025-10-23 02:17:49.968876+00 f t 55000.00 1 55000.00 10331 84 \N 9413 +74846 2025-10-26 23:39:36.648102+00 2025-10-26 23:39:36.64811+00 f t 46000.00 1 46000.00 10567 82 \N 8065 +74847 2025-10-26 23:39:36.653639+00 2025-10-26 23:39:36.653648+00 f t 8000.00 1 8000.00 10567 85 \N 8065 +74848 2025-10-26 23:39:36.657956+00 2025-10-26 23:39:36.657962+00 f t 24000.00 1 24000.00 10567 88 \N 8065 +74858 2025-10-27 12:34:08.699841+00 2025-10-27 12:34:08.69985+00 f t 68000.00 1 68000.00 10576 106 \N 9590 +74864 2025-10-27 13:50:57.850095+00 2025-10-27 13:50:57.850108+00 f t 46000.00 1 46000.00 10582 82 \N 9594 +74884 2025-10-27 14:12:53.13423+00 2025-10-27 14:12:53.134239+00 f t 46000.00 1 46000.00 10585 82 \N 9597 +74950 2025-10-27 15:11:43.792358+00 2025-10-27 15:11:43.79237+00 f t 46000.00 1 46000.00 10596 82 \N 9604 +74983 2025-10-27 15:54:00.362221+00 2025-10-27 15:54:00.362231+00 f t 34000.00 1 34000.00 10601 110 \N 9607 +74984 2025-10-27 15:54:00.369795+00 2025-10-27 15:54:00.369804+00 f t 33000.00 1 33000.00 10601 123 \N 9607 +74985 2025-10-27 15:54:00.375522+00 2025-10-27 15:54:00.37553+00 f t 46000.00 1 46000.00 10601 82 \N 9607 +74998 2025-10-27 16:54:11.311743+00 2025-10-27 16:54:11.311753+00 f t 75000.00 1 75000.00 10607 108 \N 9610 +75007 2025-10-27 17:05:17.240786+00 2025-10-27 17:05:17.240796+00 f t 46000.00 1 46000.00 10611 82 \N 9614 +75021 2025-10-27 17:14:02.057673+00 2025-10-27 17:14:02.057683+00 f t 13200.00 1 13200.00 10612 146 \N 9611 +75045 2025-10-27 18:26:30.6458+00 2025-10-27 18:26:30.645809+00 f t 55000.00 1 55000.00 10619 84 \N 637 +75056 2025-10-27 18:39:14.382879+00 2025-10-27 18:39:14.382888+00 f t 24000.00 1 24000.00 10627 163 \N 9624 +75057 2025-10-27 18:39:14.388583+00 2025-10-27 18:39:14.38859+00 f t 46000.00 1 46000.00 10627 82 \N 9624 +73851 2025-10-23 02:19:43.197711+00 2025-10-23 02:19:43.19772+00 f t 46000.00 1 46000.00 10333 82 \N 9415 +75070 2025-10-27 19:22:10.140126+00 2025-10-27 19:22:10.140137+00 f t 30000.00 1 30000.00 10624 83 \N 9157 +75073 2025-10-27 20:05:46.556945+00 2025-10-27 20:05:46.556957+00 f t 80000.00 1 80000.00 10632 173 \N 9630 +73915 2025-10-23 02:22:39.613036+00 2025-10-23 02:22:39.613046+00 f t 46000.00 1 46000.00 10332 82 \N 9414 +73916 2025-10-23 02:22:39.619685+00 2025-10-23 02:22:39.619693+00 f t 7700.00 1 7700.00 10332 91 \N 9414 +73917 2025-10-23 02:22:39.624626+00 2025-10-23 02:22:39.624634+00 f t 7700.00 1 7700.00 10332 94 \N 9414 +73918 2025-10-23 02:22:39.630087+00 2025-10-23 02:22:39.630097+00 f t 69000.00 1 69000.00 10332 141 \N 9414 +73930 2025-10-23 03:13:10.630085+00 2025-10-23 03:13:10.630094+00 f t 8000.00 1 8000.00 10335 85 \N 9416 +73931 2025-10-23 03:13:10.636192+00 2025-10-23 03:13:10.6362+00 f t 46000.00 1 46000.00 10335 82 \N 9416 +73950 2025-10-23 03:17:22.397616+00 2025-10-23 03:17:22.397624+00 f t 46000.00 1 46000.00 10337 82 \N 9417 +73951 2025-10-23 03:17:22.403346+00 2025-10-23 03:17:22.403352+00 f t 8000.00 1 8000.00 10337 85 \N 9417 +73952 2025-10-23 03:17:22.407828+00 2025-10-23 03:17:22.407836+00 f t 24000.00 1 24000.00 10337 86 \N 9417 +73953 2025-10-23 03:17:22.413024+00 2025-10-23 03:17:22.413033+00 f t 31500.00 1 31500.00 10337 111 \N 9417 +73955 2025-10-23 03:32:57.284591+00 2025-10-23 03:32:57.2846+00 f t 55000.00 1 55000.00 10338 84 \N 9348 +73956 2025-10-23 05:23:13.149128+00 2025-10-23 05:23:13.149141+00 f t 75000.00 1 75000.00 10339 142 \N 9418 +73957 2025-10-23 05:23:13.157428+00 2025-10-23 05:23:13.157439+00 f t 46000.00 1 46000.00 10339 82 \N 9418 +73978 2025-10-23 07:06:18.372089+00 2025-10-23 07:06:18.3721+00 f t 46000.00 1 46000.00 10340 82 \N 9420 +73979 2025-10-23 07:06:18.377322+00 2025-10-23 07:06:18.377328+00 f t 8000.00 1 8000.00 10340 85 \N 9420 +73980 2025-10-23 07:06:18.381556+00 2025-10-23 07:06:18.381562+00 f t 24000.00 1 24000.00 10340 86 \N 9420 +73993 2025-10-23 09:50:15.469887+00 2025-10-23 09:50:15.469896+00 f t 46000.00 1 46000.00 10341 82 \N 9421 +73994 2025-10-23 09:50:15.475347+00 2025-10-23 09:50:15.475356+00 f t 8000.00 1 8000.00 10341 85 \N 9421 +73995 2025-10-23 09:50:15.481455+00 2025-10-23 09:50:15.481462+00 f t 46000.00 1 46000.00 10341 82 \N 9422 +73996 2025-10-23 09:50:15.48708+00 2025-10-23 09:50:15.487091+00 f t 8000.00 1 8000.00 10341 85 \N 9422 +73997 2025-10-23 11:24:13.852826+00 2025-10-23 11:24:13.852834+00 f t 46000.00 1 46000.00 10342 82 \N 9423 +73998 2025-10-23 11:30:18.681819+00 2025-10-23 11:30:18.681827+00 f t 46000.00 1 46000.00 10343 82 \N 9424 +74440 2025-10-24 23:06:58.694415+00 2025-10-24 23:06:58.694423+00 f t 46000.00 1 46000.00 10463 82 \N 6717 +74441 2025-10-24 23:06:58.699853+00 2025-10-24 23:06:58.69986+00 f t 8000.00 1 8000.00 10463 85 \N 6717 +74537 2025-10-25 07:04:16.488671+00 2025-10-25 07:04:16.48868+00 f t 0.00 1 0.00 10395 97 \N 9453 +74753 2025-10-26 15:09:25.384149+00 2025-10-26 15:09:25.384164+00 f t 0.00 1 0.00 10538 169 \N 9565 +74008 2025-10-23 11:35:34.290074+00 2025-10-23 11:35:34.290083+00 f t 75000.00 1 75000.00 10344 108 \N 9425 +74012 2025-10-23 13:10:36.901381+00 2025-10-23 13:10:36.90139+00 f t 0.00 1 0.00 10345 97 \N 9307 +74013 2025-10-23 13:17:02.328827+00 2025-10-23 13:17:02.32884+00 f t 55000.00 1 55000.00 10346 84 \N 9426 +74014 2025-10-23 13:53:28.367768+00 2025-10-23 13:53:28.367777+00 f t 55000.00 1 55000.00 10347 84 \N 9427 +74015 2025-10-23 14:03:49.584274+00 2025-10-23 14:03:49.584285+00 f t 8000.00 1 8000.00 10348 85 \N 8101 +74016 2025-10-23 14:03:49.591032+00 2025-10-23 14:03:49.59104+00 f t 46000.00 1 46000.00 10348 82 \N 8101 +74017 2025-10-23 14:29:52.048986+00 2025-10-23 14:29:52.048993+00 f t 30000.00 1 30000.00 10351 83 \N 8941 +74020 2025-10-23 14:38:04.762743+00 2025-10-23 14:38:04.762752+00 f t 55000.00 1 55000.00 10352 84 \N 9429 +74021 2025-10-23 14:48:44.83095+00 2025-10-23 14:48:44.830962+00 f t 23000.00 1 23000.00 10353 172 \N 8899 +74022 2025-10-23 15:05:52.074373+00 2025-10-23 15:05:52.074382+00 f t 107000.00 1 107000.00 10354 103 \N 8899 +74024 2025-10-23 15:17:59.62718+00 2025-10-23 15:17:59.627201+00 f t 13200.00 1 13200.00 10356 146 \N 8899 +74036 2025-10-23 15:40:52.670495+00 2025-10-23 15:40:52.670505+00 f t 55000.00 1 55000.00 10355 84 \N 9430 +74045 2025-10-23 16:01:15.623587+00 2025-10-23 16:01:15.623595+00 f t 46000.00 1 46000.00 10358 82 \N 9431 +74046 2025-10-23 16:23:41.166447+00 2025-10-23 16:23:41.166455+00 f t 46000.00 1 46000.00 10359 82 \N 9433 +74059 2025-10-23 16:59:36.799545+00 2025-10-23 16:59:36.799553+00 f t 46000.00 1 46000.00 10362 82 \N 9436 +74152 2025-10-23 17:30:15.040046+00 2025-10-23 17:30:15.040058+00 f t 46000.00 1 46000.00 10365 82 \N 9439 +74155 2025-10-23 17:32:10.673625+00 2025-10-23 17:32:10.673635+00 f t 107000.00 1 107000.00 10361 103 \N 9434 +74156 2025-10-23 17:47:53.846416+00 2025-10-23 17:47:53.846425+00 f t 55000.00 1 55000.00 10366 84 \N 9440 +74157 2025-10-23 18:15:07.121506+00 2025-10-23 18:15:07.121518+00 f t 30000.00 1 30000.00 10367 83 \N 9441 +74158 2025-10-23 18:58:24.875304+00 2025-10-23 18:58:24.875316+00 f t 55000.00 1 55000.00 10370 84 \N 9443 +74159 2025-10-23 19:08:18.737373+00 2025-10-23 19:08:18.737381+00 f t 107000.00 1 107000.00 10371 103 \N 9380 +74160 2025-10-23 19:10:03.497074+00 2025-10-23 19:10:03.497104+00 f t 75000.00 1 75000.00 10372 108 \N 9380 +74173 2025-10-23 20:05:32.291597+00 2025-10-23 20:05:32.291605+00 f t 7700.00 1 7700.00 10373 91 \N 9445 +74174 2025-10-23 20:05:32.297571+00 2025-10-23 20:05:32.297577+00 f t 46000.00 1 46000.00 10373 82 \N 9445 +74176 2025-10-23 20:17:49.124515+00 2025-10-23 20:17:49.124524+00 f t 55000.00 1 55000.00 10375 84 \N 9446 +74177 2025-10-23 20:20:01.266209+00 2025-10-23 20:20:01.266222+00 f t 13200.00 1 13200.00 10376 146 \N 9430 +74178 2025-10-23 21:18:08.54576+00 2025-10-23 21:18:08.545769+00 f t 23000.00 1 23000.00 10378 172 \N 8966 +74179 2025-10-23 21:19:02.312692+00 2025-10-23 21:19:02.312704+00 f t 107000.00 1 107000.00 10379 103 \N 8966 +74181 2025-10-23 21:53:46.945244+00 2025-10-23 21:53:46.945253+00 f t 46000.00 1 46000.00 10374 82 \N 9327 +74182 2025-10-23 22:02:17.404802+00 2025-10-23 22:02:17.404811+00 f t 30000.00 1 30000.00 10380 83 \N 9447 +74183 2025-10-23 22:20:34.437883+00 2025-10-23 22:20:34.437892+00 f t 75000.00 1 75000.00 10381 108 \N 9439 +74184 2025-10-23 22:27:24.008369+00 2025-10-23 22:27:24.008379+00 f t 75000.00 1 75000.00 10382 108 \N 9439 +74185 2025-10-23 22:50:23.578411+00 2025-10-23 22:50:23.578423+00 f t 107000.00 1 107000.00 10386 103 \N 9439 +74187 2025-10-23 22:57:20.571482+00 2025-10-23 22:57:20.571495+00 f t 30000.00 1 30000.00 10387 83 \N 9448 +74196 2025-10-23 23:06:35.8933+00 2025-10-23 23:06:35.893308+00 f t 30000.00 1 30000.00 10389 83 \N 9449 +74197 2025-10-23 23:44:19.557172+00 2025-10-23 23:44:19.557181+00 f t 8000.00 1 8000.00 10391 85 \N 9450 +74198 2025-10-23 23:44:19.564212+00 2025-10-23 23:44:19.56422+00 f t 46000.00 1 46000.00 10391 82 \N 9450 +74210 2025-10-24 00:29:07.637693+00 2025-10-24 00:29:07.637701+00 f t 55000.00 1 55000.00 10394 84 \N 9452 +74212 2025-10-24 00:48:09.188547+00 2025-10-24 00:48:09.188557+00 f t 68000.00 1 68000.00 10397 106 \N 9454 +74213 2025-10-24 01:32:58.70749+00 2025-10-24 01:32:58.707498+00 f t 24000.00 1 24000.00 10398 163 \N 9456 +74214 2025-10-24 01:32:58.713614+00 2025-10-24 01:32:58.713621+00 f t 46000.00 1 46000.00 10398 82 \N 9456 +74215 2025-10-24 02:11:49.266474+00 2025-10-24 02:11:49.266482+00 f t 55000.00 1 55000.00 10400 84 \N 9457 +74217 2025-10-24 02:19:11.571517+00 2025-10-24 02:19:11.571529+00 f t 24000.00 1 24000.00 10401 86 \N 9458 +74218 2025-10-24 02:19:11.577845+00 2025-10-24 02:19:11.577856+00 f t 46000.00 1 46000.00 10401 82 \N 9458 +74219 2025-10-24 03:49:00.663745+00 2025-10-24 03:49:00.663755+00 f t 55000.00 1 55000.00 10404 84 \N 9460 +74220 2025-10-24 04:48:17.990083+00 2025-10-24 04:48:17.990092+00 f t 8000.00 1 8000.00 10405 85 \N 9461 +74221 2025-10-24 04:48:17.996064+00 2025-10-24 04:48:17.996071+00 f t 46000.00 1 46000.00 10405 82 \N 9461 +74223 2025-10-24 05:06:16.036303+00 2025-10-24 05:06:16.036312+00 f t 55000.00 1 55000.00 10406 84 \N 9462 +74224 2025-10-24 08:14:26.924875+00 2025-10-24 08:14:26.924883+00 f t 75000.00 1 75000.00 10407 108 \N 9463 +74225 2025-10-24 09:54:52.566003+00 2025-10-24 09:54:52.566011+00 f t 8000.00 1 8000.00 10409 85 \N 9465 +74226 2025-10-24 09:54:52.572619+00 2025-10-24 09:54:52.572626+00 f t 46000.00 1 46000.00 10409 82 \N 9465 +74234 2025-10-24 11:25:45.289779+00 2025-10-24 11:25:45.289787+00 f t 55000.00 1 55000.00 10410 84 \N 9466 +74235 2025-10-24 11:33:41.783872+00 2025-10-24 11:33:41.783882+00 f t 23000.00 1 23000.00 10411 172 \N 9467 +74253 2025-10-24 12:00:33.141948+00 2025-10-24 12:00:33.141956+00 f t 46000.00 1 46000.00 10412 82 \N 8204 +74254 2025-10-24 12:00:33.148262+00 2025-10-24 12:00:33.148269+00 f t 8000.00 1 8000.00 10412 85 \N 8204 +74255 2025-10-24 12:00:33.152553+00 2025-10-24 12:00:33.15256+00 f t 24000.00 1 24000.00 10412 86 \N 8204 +74257 2025-10-24 12:10:45.387993+00 2025-10-24 12:10:45.388002+00 f t 8000.00 1 8000.00 10414 85 \N 9469 +74258 2025-10-24 12:10:45.393534+00 2025-10-24 12:10:45.393541+00 f t 46000.00 1 46000.00 10414 82 \N 9469 +74268 2025-10-24 12:16:27.721199+00 2025-10-24 12:16:27.721208+00 f t 32500.00 1 32500.00 10415 112 \N 9470 +74271 2025-10-24 12:32:24.164771+00 2025-10-24 12:32:24.16478+00 f t 55000.00 1 55000.00 10417 84 \N 9472 +74422 2025-10-24 22:47:07.787703+00 2025-10-24 22:47:07.787712+00 f t 46000.00 1 46000.00 10461 82 \N 9499 +74274 2025-10-24 13:10:25.936201+00 2025-10-24 13:10:25.936209+00 f t 23000.00 1 23000.00 10416 172 \N 9471 +74275 2025-10-24 14:01:11.8944+00 2025-10-24 14:01:11.894413+00 f t 55000.00 1 55000.00 10423 84 \N 9474 +74423 2025-10-24 22:47:07.796966+00 2025-10-24 22:47:07.796978+00 f t 46000.00 1 46000.00 10461 82 \N 9500 +74424 2025-10-24 22:47:07.803482+00 2025-10-24 22:47:07.803491+00 f t 46000.00 1 46000.00 10461 82 \N 9501 +74425 2025-10-24 22:47:07.80918+00 2025-10-24 22:47:07.809188+00 f t 46000.00 1 46000.00 10461 82 \N 9502 +74442 2025-10-24 23:06:58.704524+00 2025-10-24 23:06:58.704531+00 f t 24000.00 1 24000.00 10463 86 \N 6717 +74282 2025-10-24 14:12:59.969265+00 2025-10-24 14:12:59.969277+00 f t 78000.00 1 78000.00 10424 167 \N 9425 +74530 2025-10-25 04:14:29.59728+00 2025-10-25 04:14:29.597289+00 f t 55000.00 1 55000.00 10475 84 \N 9516 +74292 2025-10-24 15:07:53.158419+00 2025-10-24 15:07:53.15843+00 f t 13200.00 1 13200.00 10427 146 \N 9471 +74293 2025-10-24 15:14:16.616343+00 2025-10-24 15:14:16.616352+00 f t 55000.00 1 55000.00 10428 84 \N 7334 +74559 2025-10-25 13:40:55.908717+00 2025-10-25 13:40:55.908726+00 f t 23000.00 1 23000.00 10489 172 \N 9364 +74560 2025-10-25 13:40:55.914572+00 2025-10-25 13:40:55.914579+00 f t 13200.00 1 13200.00 10489 146 \N 9364 +74301 2025-10-24 15:16:25.64188+00 2025-10-24 15:16:25.641897+00 f t 29000.00 1 29000.00 10429 122 \N 9477 +74302 2025-10-24 15:16:25.650887+00 2025-10-24 15:16:25.650899+00 f t 24000.00 1 24000.00 10429 163 \N 9477 +74303 2025-10-24 15:16:25.657563+00 2025-10-24 15:16:25.657573+00 f t 46000.00 1 46000.00 10429 82 \N 9477 +74304 2025-10-24 15:54:28.514321+00 2025-10-24 15:54:28.51433+00 f t 46000.00 1 46000.00 10432 82 \N 9478 +74308 2025-10-24 16:05:59.564769+00 2025-10-24 16:05:59.564777+00 f t 80000.00 1 80000.00 10434 173 \N 8088 +74311 2025-10-24 16:13:09.521953+00 2025-10-24 16:13:09.521961+00 f t 107000.00 1 107000.00 10435 103 \N 9480 +74312 2025-10-24 16:22:07.472156+00 2025-10-24 16:22:07.472164+00 f t 130000.00 1 130000.00 10436 164 \N 9481 +74313 2025-10-24 16:41:47.109046+00 2025-10-24 16:41:47.109055+00 f t 24000.00 1 24000.00 10437 163 \N 9482 +74314 2025-10-24 16:41:47.114986+00 2025-10-24 16:41:47.114992+00 f t 46000.00 1 46000.00 10437 82 \N 9482 +74635 2025-10-25 15:40:39.9403+00 2025-10-25 15:40:39.940311+00 f t 55000.00 1 55000.00 10502 84 \N 9539 +74658 2025-10-25 19:02:09.864357+00 2025-10-25 19:02:09.864372+00 f t 75000.00 1 75000.00 10510 142 \N 9544 +74659 2025-10-25 19:02:09.873046+00 2025-10-25 19:02:09.873056+00 f t 46000.00 1 46000.00 10510 82 \N 9544 +74718 2025-10-26 01:33:03.677149+00 2025-10-26 01:33:03.677157+00 f t 8000.00 1 8000.00 10530 85 \N 9558 +74719 2025-10-26 01:33:03.682834+00 2025-10-26 01:33:03.68284+00 f t 46000.00 1 46000.00 10530 82 \N 9558 +74344 2025-10-24 17:27:29.585727+00 2025-10-24 17:27:29.585736+00 f t 46000.00 1 46000.00 10440 82 \N 9485 +74345 2025-10-24 17:34:30.909383+00 2025-10-24 17:34:30.909391+00 f t 107000.00 1 107000.00 10441 103 \N 9486 +74346 2025-10-24 17:55:20.08906+00 2025-10-24 17:55:20.089071+00 f t 13200.00 1 13200.00 10443 146 \N 5647 +74347 2025-10-24 18:56:30.015696+00 2025-10-24 18:56:30.015706+00 f t 55000.00 1 55000.00 10445 84 \N 9488 +74350 2025-10-24 19:02:43.00876+00 2025-10-24 19:02:43.008769+00 f t 55000.00 1 55000.00 10446 84 \N 8809 +74764 2025-10-26 15:33:24.356155+00 2025-10-26 15:33:24.356163+00 f t 55000.00 1 55000.00 10540 84 \N 9567 +74355 2025-10-24 20:15:21.834081+00 2025-10-24 20:15:21.834092+00 f t 46000.00 1 46000.00 10449 82 \N 9489 +74356 2025-10-24 20:15:21.840423+00 2025-10-24 20:15:21.84043+00 f t 29000.00 1 29000.00 10449 123 \N 9489 +74786 2025-10-26 16:59:12.661444+00 2025-10-26 16:59:12.661453+00 f t 30000.00 1 30000.00 10548 83 \N 9576 +74801 2025-10-26 19:03:54.610177+00 2025-10-26 19:03:54.610187+00 f t 75000.00 1 75000.00 10506 108 \N 9541 +74363 2025-10-24 20:30:41.958416+00 2025-10-24 20:30:41.958426+00 f t 46000.00 1 46000.00 10450 82 \N 9490 +74364 2025-10-24 20:39:38.20014+00 2025-10-24 20:39:38.200152+00 f t 13200.00 1 13200.00 10451 146 \N 9157 +74369 2025-10-24 20:51:20.773938+00 2025-10-24 20:51:20.773945+00 f t 68000.00 1 68000.00 10452 106 \N 9492 +74370 2025-10-24 20:56:45.937052+00 2025-10-24 20:56:45.937063+00 f t 46000.00 1 46000.00 10453 82 \N 9493 +74371 2025-10-24 21:22:28.47271+00 2025-10-24 21:22:28.472719+00 f t 46000.00 1 46000.00 10454 82 \N 9494 +74372 2025-10-24 21:24:14.566874+00 2025-10-24 21:24:14.566883+00 f t 30000.00 1 30000.00 10455 83 \N 128 +74373 2025-10-24 21:40:07.81272+00 2025-10-24 21:40:07.812733+00 f t 46000.00 1 46000.00 10456 82 \N 9495 +74854 2025-10-27 12:25:19.840108+00 2025-10-27 12:25:19.840117+00 f t 75000.00 1 75000.00 10575 108 \N 9589 +74859 2025-10-27 12:44:29.455597+00 2025-10-27 12:44:29.455606+00 f t 8000.00 1 8000.00 10578 85 \N 9591 +74860 2025-10-27 12:44:29.462066+00 2025-10-27 12:44:29.462075+00 f t 46000.00 1 46000.00 10578 82 \N 9591 +74380 2025-10-24 21:52:44.098407+00 2025-10-24 21:52:44.098416+00 f t 46000.00 1 46000.00 10457 82 \N 8065 +74381 2025-10-24 21:52:44.104516+00 2025-10-24 21:52:44.104523+00 f t 8000.00 1 8000.00 10457 85 \N 8065 +74382 2025-10-24 21:52:44.110021+00 2025-10-24 21:52:44.110029+00 f t 24000.00 1 24000.00 10457 88 \N 8065 +74384 2025-10-24 21:54:24.818828+00 2025-10-24 21:54:24.818839+00 f t 55000.00 1 55000.00 10425 84 \N 9475 +74389 2025-10-24 22:06:57.225652+00 2025-10-24 22:06:57.225662+00 f t 8000.00 1 8000.00 10458 85 \N 9496 +74390 2025-10-24 22:06:57.23279+00 2025-10-24 22:06:57.232799+00 f t 46000.00 1 46000.00 10458 82 \N 9496 +74393 2025-10-24 22:32:05.617827+00 2025-10-24 22:32:05.617838+00 f t 8000.00 1 8000.00 10460 85 \N 9498 +74394 2025-10-24 22:32:05.628693+00 2025-10-24 22:32:05.628703+00 f t 46000.00 1 46000.00 10460 82 \N 9498 +74960 2025-10-27 15:43:30.370398+00 2025-10-27 15:43:30.370408+00 f t 24000.00 1 24000.00 10600 163 \N 9606 +74961 2025-10-27 15:43:30.377819+00 2025-10-27 15:43:30.377828+00 f t 46000.00 1 46000.00 10600 82 \N 9606 +74986 2025-10-27 15:57:21.541495+00 2025-10-27 15:57:21.541504+00 f t 23000.00 1 23000.00 10599 172 \N 912 +75003 2025-10-27 16:59:51.167887+00 2025-10-27 16:59:51.167896+00 f t 75000.00 1 75000.00 10609 108 \N 9612 +75032 2025-10-27 18:00:26.832613+00 2025-10-27 18:00:26.832628+00 f t 8000.00 1 8000.00 10616 85 \N 9617 +75033 2025-10-27 18:00:26.84644+00 2025-10-27 18:00:26.846455+00 f t 46000.00 1 46000.00 10616 82 \N 9617 +75036 2025-10-27 18:13:15.040188+00 2025-10-27 18:13:15.040197+00 f t 46000.00 1 46000.00 10621 82 \N 9592 +75037 2025-10-27 18:13:15.047955+00 2025-10-27 18:13:15.047969+00 f t 8000.00 1 8000.00 10621 85 \N 9592 +75038 2025-10-27 18:13:15.056593+00 2025-10-27 18:13:15.056601+00 f t 24000.00 1 24000.00 10621 86 \N 9592 +75043 2025-10-27 18:17:56.72851+00 2025-10-27 18:17:56.72852+00 f t 8000.00 1 8000.00 10623 85 \N 9620 +75044 2025-10-27 18:17:56.734181+00 2025-10-27 18:17:56.734187+00 f t 46000.00 1 46000.00 10623 82 \N 9620 +75064 2025-10-27 18:58:34.744148+00 2025-10-27 18:58:34.744157+00 f t 23000.00 1 23000.00 10628 172 \N 9625 +75067 2025-10-27 19:12:47.569468+00 2025-10-27 19:12:47.56964+00 f t 46000.00 1 46000.00 10629 82 \N 9626 +75068 2025-10-27 19:12:47.577318+00 2025-10-27 19:12:47.577326+00 f t 8000.00 1 8000.00 10629 85 \N 9626 +75069 2025-10-27 19:12:47.582163+00 2025-10-27 19:12:47.582169+00 f t 24000.00 1 24000.00 10629 163 \N 9626 +75071 2025-10-27 19:34:51.547312+00 2025-10-27 19:34:51.547326+00 f t 46000.00 1 46000.00 10584 82 \N 8759 +77103 2025-11-01 00:36:44.471474+00 2025-11-01 00:36:44.471483+00 f t 8000.00 1 8000.00 11138 85 \N 10019 +77104 2025-11-01 00:36:44.480613+00 2025-11-01 00:36:44.480622+00 f t 46000.00 1 46000.00 11138 82 \N 10019 +85561 2025-11-17 21:49:15.255428+00 2025-11-17 21:49:15.255437+00 f t 55000.00 1 55000.00 12617 84 \N 11173 +75085 2025-10-27 20:36:17.038921+00 2025-10-27 20:36:17.038934+00 f t 34000.00 1 34000.00 10634 110 \N 9631 +77159 2025-11-01 02:36:33.434055+00 2025-11-01 02:36:33.434063+00 f t 8000.00 1 8000.00 11153 85 \N 10033 +75091 2025-10-27 20:41:09.294281+00 2025-10-27 20:41:09.294293+00 f t 55000.00 1 55000.00 10635 84 \N 9632 +75092 2025-10-27 20:56:56.673397+00 2025-10-27 20:56:56.673412+00 f t 46000.00 1 46000.00 10638 82 \N 9636 +77249 2025-11-01 12:45:55.84097+00 2025-11-01 12:45:55.840978+00 f t 55000.00 1 55000.00 11171 84 \N 9803 +77270 2025-11-01 13:20:28.089711+00 2025-11-01 13:20:28.089723+00 f t 46000.00 1 46000.00 11176 82 \N 10050 +77276 2025-11-01 13:46:04.663112+00 2025-11-01 13:46:04.663122+00 f t 46000.00 1 46000.00 11179 82 \N 10054 +75109 2025-10-27 21:04:53.846913+00 2025-10-27 21:04:53.846922+00 f t 46000.00 1 46000.00 10639 82 \N 9637 +75110 2025-10-27 21:05:08.678191+00 2025-10-27 21:05:08.6782+00 f t 46000.00 1 46000.00 10640 82 \N 9638 +75113 2025-10-27 21:17:17.894671+00 2025-10-27 21:17:17.89468+00 f t 46000.00 1 46000.00 10645 82 \N 9641 +75114 2025-10-27 21:48:18.042518+00 2025-10-27 21:48:18.042526+00 f t 31500.00 1 31500.00 10648 111 \N 9642 +75115 2025-10-27 22:21:45.055183+00 2025-10-27 22:21:45.055367+00 f t 55000.00 1 55000.00 10651 84 \N 9644 +75116 2025-10-27 22:35:43.227336+00 2025-10-27 22:35:43.227345+00 f t 8000.00 1 8000.00 10653 85 \N 9645 +75117 2025-10-27 22:35:43.233359+00 2025-10-27 22:35:43.233366+00 f t 46000.00 1 46000.00 10653 82 \N 9645 +75118 2025-10-27 22:39:55.835857+00 2025-10-27 22:39:55.835869+00 f t 55000.00 1 55000.00 10654 84 \N 9646 +77312 2025-11-01 15:05:23.632323+00 2025-11-01 15:05:23.632331+00 f t 80000.00 1 80000.00 11192 173 \N 10063 +77318 2025-11-01 16:00:57.445117+00 2025-11-01 16:00:57.445131+00 f t 46000.00 1 46000.00 11197 82 \N 10066 +75132 2025-10-27 23:05:16.744625+00 2025-10-27 23:05:16.744637+00 f t 46000.00 1 46000.00 10657 82 \N 9648 +75135 2025-10-27 23:45:36.542061+00 2025-10-27 23:45:36.54207+00 f t 46000.00 1 46000.00 10655 82 \N 9647 +75136 2025-10-27 23:53:40.852446+00 2025-10-27 23:53:40.852455+00 f t 78000.00 1 78000.00 10658 167 \N 9621 +75137 2025-10-27 23:56:09.830829+00 2025-10-27 23:56:09.830838+00 f t 46000.00 1 46000.00 10659 82 \N 9650 +75142 2025-10-28 00:03:51.126908+00 2025-10-28 00:03:51.126921+00 f t 46000.00 1 46000.00 10660 82 \N 9651 +75143 2025-10-28 00:03:51.133705+00 2025-10-28 00:03:51.133716+00 f t 24000.00 1 24000.00 10660 163 \N 9651 +75144 2025-10-28 00:03:51.139173+00 2025-10-28 00:03:51.13918+00 f t 8000.00 1 8000.00 10660 85 \N 9651 +75145 2025-10-28 00:15:05.743068+00 2025-10-28 00:15:05.743084+00 f t 13200.00 1 13200.00 10662 146 \N 9364 +75164 2025-10-28 00:20:59.053789+00 2025-10-28 00:20:59.053798+00 f t 46000.00 1 46000.00 10666 82 \N 9652 +75165 2025-10-28 01:23:29.083482+00 2025-10-28 01:23:29.083494+00 f t 8000.00 1 8000.00 10671 85 \N 9654 +75166 2025-10-28 01:23:29.089616+00 2025-10-28 01:23:29.089623+00 f t 46000.00 1 46000.00 10671 82 \N 9654 +75173 2025-10-28 01:27:23.489746+00 2025-10-28 01:27:23.489758+00 f t 46000.00 1 46000.00 10670 82 \N 9653 +75179 2025-10-28 01:51:50.013412+00 2025-10-28 01:51:50.013421+00 f t 30000.00 1 30000.00 10673 83 \N 9655 +75183 2025-10-28 02:21:23.985827+00 2025-10-28 02:21:23.985836+00 f t 46000.00 1 46000.00 10674 82 \N 9656 +75211 2025-10-28 02:27:57.828867+00 2025-10-28 02:27:57.828875+00 f t 32500.00 1 32500.00 10675 112 \N 9657 +75212 2025-10-28 02:27:57.834363+00 2025-10-28 02:27:57.834373+00 f t 46000.00 1 46000.00 10675 82 \N 9657 +75213 2025-10-28 02:27:57.83876+00 2025-10-28 02:27:57.838766+00 f t 68000.00 1 68000.00 10675 106 \N 9657 +75214 2025-10-28 02:27:57.842907+00 2025-10-28 02:27:57.842914+00 f t 8000.00 1 8000.00 10675 85 \N 9657 +75215 2025-10-28 02:27:57.847392+00 2025-10-28 02:27:57.847403+00 f t 24000.00 1 24000.00 10675 86 \N 9657 +75216 2025-10-28 02:27:57.851901+00 2025-10-28 02:27:57.851909+00 f t 107000.00 1 107000.00 10675 103 \N 9657 +75219 2025-10-28 02:42:10.111461+00 2025-10-28 02:42:10.111469+00 f t 24000.00 1 24000.00 10676 86 \N 9658 +75220 2025-10-28 02:42:10.116449+00 2025-10-28 02:42:10.116455+00 f t 46000.00 1 46000.00 10676 82 \N 9658 +75221 2025-10-28 02:53:00.494696+00 2025-10-28 02:53:00.494704+00 f t 23000.00 1 23000.00 10677 172 \N 9659 +75234 2025-10-28 03:09:00.87217+00 2025-10-28 03:09:00.872181+00 f t 34000.00 1 34000.00 10682 110 \N 9660 +75235 2025-10-28 03:09:35.639653+00 2025-10-28 03:09:35.639662+00 f t 46000.00 1 46000.00 10685 82 \N 9662 +75245 2025-10-28 04:41:06.071431+00 2025-10-28 04:41:06.071439+00 f t 30000.00 1 30000.00 10690 83 \N 9664 +75246 2025-10-28 08:35:22.518529+00 2025-10-28 08:35:22.518537+00 f t 55000.00 1 55000.00 10694 84 \N 9665 +75251 2025-10-28 10:19:50.419663+00 2025-10-28 10:19:50.419672+00 f t 46000.00 1 46000.00 10695 82 \N 9666 +75257 2025-10-28 10:53:13.708156+00 2025-10-28 10:53:13.708165+00 f t 46000.00 1 46000.00 10696 82 \N 9667 +75259 2025-10-28 11:05:05.098622+00 2025-10-28 11:05:05.098636+00 f t 34000.00 1 34000.00 10697 110 \N 9668 +75261 2025-10-28 11:14:19.895195+00 2025-10-28 11:14:19.895204+00 f t 55000.00 1 55000.00 10698 84 \N 9669 +75268 2025-10-28 11:17:28.053575+00 2025-10-28 11:17:28.053587+00 f t 34000.00 1 34000.00 10699 110 \N 9670 +75272 2025-10-28 11:18:23.294424+00 2025-10-28 11:18:23.294433+00 f t 55000.00 1 55000.00 10700 84 \N 9671 +75278 2025-10-28 11:41:38.331439+00 2025-10-28 11:41:38.331448+00 f t 46000.00 1 46000.00 10701 82 \N 9672 +75315 2025-10-28 12:14:23.807545+00 2025-10-28 12:14:23.807554+00 f t 75000.00 1 75000.00 10702 108 \N 9673 +75316 2025-10-28 12:14:23.814858+00 2025-10-28 12:14:23.814866+00 f t 46000.00 1 46000.00 10702 82 \N 9674 +75317 2025-10-28 12:14:23.820466+00 2025-10-28 12:14:23.820474+00 f t 24000.00 1 24000.00 10702 163 \N 9674 +75318 2025-10-28 12:14:23.825711+00 2025-10-28 12:14:23.825718+00 f t 46000.00 1 46000.00 10702 82 \N 9675 +75319 2025-10-28 12:14:23.831325+00 2025-10-28 12:14:23.831333+00 f t 24000.00 1 24000.00 10702 163 \N 9675 +75351 2025-10-28 12:53:41.986675+00 2025-10-28 12:53:41.986684+00 f t 8000.00 1 8000.00 10707 85 \N 9679 +75352 2025-10-28 12:53:41.99312+00 2025-10-28 12:53:41.993129+00 f t 46000.00 1 46000.00 10707 82 \N 9679 +75353 2025-10-28 13:25:04.609456+00 2025-10-28 13:25:04.609469+00 f t 46000.00 1 46000.00 10709 82 \N 9680 +75361 2025-10-28 13:45:07.263855+00 2025-10-28 13:45:07.263864+00 f t 46000.00 1 46000.00 10684 82 \N 9676 +75362 2025-10-28 13:45:07.270292+00 2025-10-28 13:45:07.270299+00 f t 24000.00 1 24000.00 10684 163 \N 9676 +75363 2025-10-28 13:45:07.274874+00 2025-10-28 13:45:07.27488+00 f t 8000.00 1 8000.00 10684 85 \N 9676 +75364 2025-10-28 14:03:32.298895+00 2025-10-28 14:03:32.298907+00 f t 23000.00 1 23000.00 10715 172 \N 9684 +75367 2025-10-28 14:22:36.137302+00 2025-10-28 14:22:36.13731+00 f t 46000.00 1 46000.00 10716 82 \N 9685 +75372 2025-10-28 14:32:21.482791+00 2025-10-28 14:32:21.482801+00 f t 24000.00 1 24000.00 10717 86 \N 9686 +75373 2025-10-28 14:32:21.490104+00 2025-10-28 14:32:21.490115+00 f t 46000.00 1 46000.00 10717 82 \N 9686 +75377 2025-10-28 15:00:03.277411+00 2025-10-28 15:00:03.277426+00 f t 107000.00 1 107000.00 10719 103 \N 9688 +75378 2025-10-28 15:01:56.8533+00 2025-10-28 15:01:56.853313+00 f t 34000.00 1 34000.00 10721 110 \N 8511 +75379 2025-10-28 15:01:56.860761+00 2025-10-28 15:01:56.860772+00 f t 46000.00 1 46000.00 10721 82 \N 8511 +75380 2025-10-28 15:01:56.867265+00 2025-10-28 15:01:56.867276+00 f t 7700.00 1 7700.00 10721 93 \N 8511 +75381 2025-10-28 15:01:56.873221+00 2025-10-28 15:01:56.87323+00 f t 13200.00 1 13200.00 10721 146 \N 8511 +75382 2025-10-28 15:23:31.643441+00 2025-10-28 15:23:31.643449+00 f t 107000.00 1 107000.00 10723 103 \N 9691 +75383 2025-10-28 15:23:55.292147+00 2025-10-28 15:23:55.292155+00 f t 75000.00 1 75000.00 10714 108 \N 7597 +75385 2025-10-28 15:24:21.289334+00 2025-10-28 15:24:21.289346+00 f t 23000.00 1 23000.00 10720 172 \N 9690 +75386 2025-10-28 15:24:21.294636+00 2025-10-28 15:24:21.294642+00 f t 23000.00 1 23000.00 10720 172 \N 9689 +75388 2025-10-28 15:24:43.269794+00 2025-10-28 15:24:43.269805+00 f t 107000.00 1 107000.00 10722 103 \N 9690 +75389 2025-10-28 15:24:43.277714+00 2025-10-28 15:24:43.277724+00 f t 107000.00 1 107000.00 10722 103 \N 9689 +75392 2025-10-28 15:28:28.955147+00 2025-10-28 15:28:28.955165+00 f t 55000.00 1 55000.00 10725 84 \N 9693 +75393 2025-10-28 15:42:28.473906+00 2025-10-28 15:42:28.473914+00 f t 68000.00 1 68000.00 10726 106 \N 9695 +75400 2025-10-28 15:48:14.831525+00 2025-10-28 15:48:14.831532+00 f t 30000.00 1 30000.00 10728 83 \N 2263 +75406 2025-10-28 15:56:56.108824+00 2025-10-28 15:56:56.108833+00 f t 46000.00 1 46000.00 10729 82 \N 9696 +75407 2025-10-28 15:56:56.114528+00 2025-10-28 15:56:56.114536+00 f t 1000.00 1 1000.00 10729 170 \N 9696 +75408 2025-10-28 15:58:28.015849+00 2025-10-28 15:58:28.015856+00 f t 23000.00 1 23000.00 10730 172 \N 8096 +75416 2025-10-28 16:20:08.64391+00 2025-10-28 16:20:08.643922+00 f t 68000.00 1 68000.00 10731 106 \N 9697 +75417 2025-10-28 16:20:15.653289+00 2025-10-28 16:20:15.653298+00 f t 107000.00 1 107000.00 10727 103 \N 3479 +75418 2025-10-28 16:20:15.658921+00 2025-10-28 16:20:15.658929+00 f t 107000.00 1 107000.00 10727 103 \N 3480 +75419 2025-10-28 16:24:08.430116+00 2025-10-28 16:24:08.430125+00 f t 13200.00 1 13200.00 10735 146 \N 8096 +75428 2025-10-28 16:31:58.610578+00 2025-10-28 16:31:58.610588+00 f t 55000.00 1 55000.00 10737 84 \N 9702 +75429 2025-10-28 16:32:38.358587+00 2025-10-28 16:32:38.358598+00 f t 107000.00 1 107000.00 10736 103 \N 9701 +75433 2025-10-28 16:40:31.184656+00 2025-10-28 16:40:31.184666+00 f t 46000.00 1 46000.00 10738 82 \N 9703 +75434 2025-10-28 16:40:31.190851+00 2025-10-28 16:40:31.190861+00 f t 8000.00 1 8000.00 10738 85 \N 9703 +75435 2025-10-28 16:40:31.195844+00 2025-10-28 16:40:31.195852+00 f t 24000.00 1 24000.00 10738 163 \N 9703 +75441 2025-10-28 17:03:38.701422+00 2025-10-28 17:03:38.701435+00 f t 30000.00 1 30000.00 10740 83 \N 9705 +75446 2025-10-28 17:11:33.216429+00 2025-10-28 17:11:33.216439+00 f t 24000.00 1 24000.00 10741 163 \N 9706 +75447 2025-10-28 17:11:33.224172+00 2025-10-28 17:11:33.224188+00 f t 46000.00 1 46000.00 10741 82 \N 9706 +75460 2025-10-28 17:29:45.895999+00 2025-10-28 17:29:45.896009+00 f t 46000.00 1 46000.00 10743 82 \N 9708 +75461 2025-10-28 17:29:45.901944+00 2025-10-28 17:29:45.901951+00 f t 24000.00 1 24000.00 10743 88 \N 9708 +75465 2025-10-28 17:47:06.30717+00 2025-10-28 17:47:06.307181+00 f t 24000.00 1 24000.00 10745 86 \N 9710 +75466 2025-10-28 17:47:06.31491+00 2025-10-28 17:47:06.314923+00 f t 46000.00 1 46000.00 10745 82 \N 9710 +75467 2025-10-28 17:55:00.846514+00 2025-10-28 17:55:00.846524+00 f t 8000.00 1 8000.00 10749 85 \N 9711 +75468 2025-10-28 17:55:00.852311+00 2025-10-28 17:55:00.852319+00 f t 46000.00 1 46000.00 10749 82 \N 9711 +75481 2025-10-28 17:59:59.470215+00 2025-10-28 17:59:59.470224+00 f t 46000.00 1 46000.00 10751 82 \N 9712 +75482 2025-10-28 18:01:02.173022+00 2025-10-28 18:01:02.173032+00 f t 24000.00 1 24000.00 10750 86 \N 7308 +75483 2025-10-28 18:01:02.181915+00 2025-10-28 18:01:02.181949+00 f t 46000.00 1 46000.00 10750 82 \N 7308 +75499 2025-10-28 19:16:10.405439+00 2025-10-28 19:16:10.405449+00 f t 46000.00 1 46000.00 10757 82 \N 8065 +75500 2025-10-28 19:16:10.41263+00 2025-10-28 19:16:10.41264+00 f t 8000.00 1 8000.00 10757 85 \N 8065 +75501 2025-10-28 19:16:10.418647+00 2025-10-28 19:16:10.418659+00 f t 24000.00 1 24000.00 10757 88 \N 8065 +75503 2025-10-28 19:20:34.849517+00 2025-10-28 19:20:34.849529+00 f t 46000.00 1 46000.00 10758 82 \N 9716 +75504 2025-10-28 19:27:36.844011+00 2025-10-28 19:27:36.84402+00 f t 8000.00 1 8000.00 10760 85 \N 8068 +75505 2025-10-28 19:27:36.850935+00 2025-10-28 19:27:36.850943+00 f t 46000.00 1 46000.00 10760 82 \N 8068 +75514 2025-10-28 19:33:42.12351+00 2025-10-28 19:33:42.12352+00 f t 78000.00 1 78000.00 10762 167 \N 9590 +75520 2025-10-28 19:37:49.987255+00 2025-10-28 19:37:49.987268+00 f t 46000.00 1 46000.00 10763 82 \N 9717 +75521 2025-10-28 20:06:21.001595+00 2025-10-28 20:06:21.001604+00 f t 23000.00 1 23000.00 10764 172 \N 8265 +75523 2025-10-28 20:14:27.312689+00 2025-10-28 20:14:27.312701+00 f t 46000.00 1 46000.00 10765 82 \N 9718 +75524 2025-10-28 20:20:04.573378+00 2025-10-28 20:20:04.573393+00 f t 78000.00 1 78000.00 10767 106 \N 9647 +75526 2025-10-28 20:23:18.125732+00 2025-10-28 20:23:18.125761+00 f t 13200.00 1 13200.00 10769 146 \N 9690 +75527 2025-10-28 20:46:17.501114+00 2025-10-28 20:46:17.501127+00 f t 55000.00 1 55000.00 10770 84 \N 9722 +75536 2025-10-28 20:52:47.956744+00 2025-10-28 20:52:47.956753+00 f t 55000.00 1 55000.00 10772 84 \N 9725 +75539 2025-10-28 20:53:34.801871+00 2025-10-28 20:53:34.80188+00 f t 72500.00 1 72500.00 10773 104 \N 9726 +75540 2025-10-28 20:56:27.483875+00 2025-10-28 20:56:27.483886+00 f t 55000.00 1 55000.00 10774 84 \N 9621 +75541 2025-10-28 20:59:32.885651+00 2025-10-28 20:59:32.885665+00 f t 30000.00 1 30000.00 10775 83 \N 8891 +75542 2025-10-28 21:02:20.201801+00 2025-10-28 21:02:20.20181+00 f t 24000.00 1 24000.00 10776 125 \N 9727 +75543 2025-10-28 21:02:20.207362+00 2025-10-28 21:02:20.207369+00 f t 46000.00 1 46000.00 10776 82 \N 9727 +75546 2025-10-28 21:19:34.013696+00 2025-10-28 21:19:34.013706+00 f t 46000.00 1 46000.00 10778 82 \N 9728 +75547 2025-10-28 21:19:34.021808+00 2025-10-28 21:19:34.021817+00 f t 8000.00 1 8000.00 10778 85 \N 9728 +75548 2025-10-28 21:19:34.02743+00 2025-10-28 21:19:34.027437+00 f t 24000.00 1 24000.00 10778 163 \N 9728 +75551 2025-10-28 21:54:26.93401+00 2025-10-28 21:54:26.934022+00 f t 46000.00 1 46000.00 10771 82 \N 9723 +75552 2025-10-28 21:54:26.940646+00 2025-10-28 21:54:26.940657+00 f t 46000.00 1 46000.00 10771 82 \N 9724 +75557 2025-10-28 22:42:59.193349+00 2025-10-28 22:42:59.193359+00 f t 8000.00 1 8000.00 10790 85 \N 9732 +75558 2025-10-28 22:42:59.19896+00 2025-10-28 22:42:59.19897+00 f t 46000.00 1 46000.00 10790 82 \N 9732 +75567 2025-10-28 23:07:04.579357+00 2025-10-28 23:07:04.579371+00 f t 8000.00 1 8000.00 10791 85 \N 9734 +75568 2025-10-28 23:07:04.58684+00 2025-10-28 23:07:04.586849+00 f t 46000.00 1 46000.00 10791 82 \N 9734 +75572 2025-10-28 23:22:36.339531+00 2025-10-28 23:22:36.339544+00 f t 46000.00 1 46000.00 10792 82 \N 9736 +75573 2025-10-28 23:23:57.178362+00 2025-10-28 23:23:57.178376+00 f t 8000.00 1 8000.00 10793 85 \N 9737 +75574 2025-10-28 23:23:57.184801+00 2025-10-28 23:23:57.18481+00 f t 46000.00 1 46000.00 10793 82 \N 9737 +75575 2025-10-28 23:30:55.91557+00 2025-10-28 23:30:55.91558+00 f t 46000.00 1 46000.00 10794 82 \N 9738 +75576 2025-10-28 23:34:53.297149+00 2025-10-28 23:34:53.297158+00 f t 46000.00 1 46000.00 10795 82 \N 9739 +88903 2025-11-23 22:38:55.042116+00 2025-11-23 22:38:55.042125+00 f t 24000.00 1 24000.00 13332 163 \N 11766 +82683 2025-11-12 20:45:46.498903+00 2025-11-12 20:45:46.498911+00 f t 55000.00 1 55000.00 12177 84 \N 10820 +88904 2025-11-23 22:38:55.068999+00 2025-11-23 22:38:55.069008+00 f t 46000.00 1 46000.00 13332 82 \N 11766 +88950 2025-11-24 02:11:56.190817+00 2025-11-24 02:11:56.190827+00 f t 55000.00 1 55000.00 13345 84 \N 11776 +88964 2025-11-24 05:07:31.090555+00 2025-11-24 05:07:31.090564+00 f t 80000.00 1 80000.00 13354 173 \N 11783 +77225 2025-11-01 11:18:01.150478+00 2025-11-01 11:18:01.150492+00 f t 46000.00 1 46000.00 11165 82 \N 10043 +77226 2025-11-01 11:18:01.160431+00 2025-11-01 11:18:01.160442+00 f t 8000.00 1 8000.00 11165 85 \N 10043 +77227 2025-11-01 11:18:01.166771+00 2025-11-01 11:18:01.166782+00 f t 24000.00 1 24000.00 11165 88 \N 10043 +77240 2025-11-01 11:23:53.916025+00 2025-11-01 11:23:53.916035+00 f t 46000.00 1 46000.00 11166 82 \N 10045 +77241 2025-11-01 11:23:53.923263+00 2025-11-01 11:23:53.923269+00 f t 24000.00 1 24000.00 11166 163 \N 10045 +77242 2025-11-01 11:23:53.9271+00 2025-11-01 11:23:53.927105+00 f t 24000.00 1 24000.00 11166 163 \N 10046 +77243 2025-11-01 11:23:53.930969+00 2025-11-01 11:23:53.930974+00 f t 46000.00 1 46000.00 11166 82 \N 10046 +77277 2025-11-01 13:54:25.682494+00 2025-11-01 13:54:25.682503+00 f t 55000.00 1 55000.00 11180 84 \N 10055 +75601 2025-10-28 23:41:24.420832+00 2025-10-28 23:41:24.420845+00 f t 46000.00 1 46000.00 10796 82 \N 9741 +75602 2025-10-28 23:41:24.427213+00 2025-10-28 23:41:24.427222+00 f t 0.00 1 0.00 10796 97 \N 9741 +77287 2025-11-01 14:01:01.771832+00 2025-11-01 14:01:01.771844+00 f t 46000.00 1 46000.00 11182 82 \N 10057 +75605 2025-10-28 23:44:25.951119+00 2025-10-28 23:44:25.951147+00 f t 46000.00 1 46000.00 10798 82 \N 9458 +77313 2025-11-01 15:27:01.397742+00 2025-11-01 15:27:01.397751+00 f t 46000.00 1 46000.00 11193 82 \N 10064 +77319 2025-11-01 16:22:10.88102+00 2025-11-01 16:22:10.881032+00 f t 46000.00 1 46000.00 11200 82 \N 10067 +77337 2025-11-01 16:47:36.089145+00 2025-11-01 16:47:36.089154+00 f t 46000.00 1 46000.00 11205 82 \N 8140 +77338 2025-11-01 16:47:36.096539+00 2025-11-01 16:47:36.096546+00 f t 46000.00 1 46000.00 11205 82 \N 8139 +77339 2025-11-01 16:47:36.100951+00 2025-11-01 16:47:36.100956+00 f t 7700.00 1 7700.00 11205 91 \N 8140 +77340 2025-11-01 16:47:36.106665+00 2025-11-01 16:47:36.106672+00 f t 24000.00 1 24000.00 11205 163 \N 8140 +77341 2025-11-01 16:47:36.110947+00 2025-11-01 16:47:36.110953+00 f t 24000.00 1 24000.00 11205 163 \N 8139 +77342 2025-11-01 16:47:36.115343+00 2025-11-01 16:47:36.11535+00 f t 7700.00 1 7700.00 11205 91 \N 8139 +77346 2025-11-01 18:16:29.88233+00 2025-11-01 18:16:29.882342+00 f t 107000.00 1 107000.00 11209 103 \N 9998 +77349 2025-11-01 18:28:07.506144+00 2025-11-01 18:28:07.506153+00 f t 30000.00 1 30000.00 11210 83 \N 10072 +77352 2025-11-01 18:51:01.50605+00 2025-11-01 18:51:01.506062+00 f t 55000.00 1 55000.00 11212 84 \N 10073 +77353 2025-11-01 18:51:01.516775+00 2025-11-01 18:51:01.516786+00 f t 46000.00 1 46000.00 11212 82 \N 10073 +77356 2025-11-01 19:04:08.585865+00 2025-11-01 19:04:08.585876+00 f t 46000.00 1 46000.00 11213 82 \N 10074 +77384 2025-11-01 20:58:18.238563+00 2025-11-01 20:58:18.238574+00 f t 24000.00 1 24000.00 11225 163 \N 10083 +77385 2025-11-01 20:58:18.247967+00 2025-11-01 20:58:18.247975+00 f t 46000.00 1 46000.00 11225 82 \N 10083 +77388 2025-11-01 21:08:12.166186+00 2025-11-01 21:08:12.166195+00 f t 30000.00 1 30000.00 11226 83 \N 10084 +77403 2025-11-01 23:16:03.541764+00 2025-11-01 23:16:03.541773+00 f t 46000.00 1 46000.00 11232 82 \N 2626 +77404 2025-11-01 23:16:03.54984+00 2025-11-01 23:16:03.549848+00 f t 8000.00 1 8000.00 11232 85 \N 2626 +77405 2025-11-01 23:16:03.554481+00 2025-11-01 23:16:03.554488+00 f t 24000.00 1 24000.00 11232 86 \N 2626 +77406 2025-11-01 23:16:03.559185+00 2025-11-01 23:16:03.559192+00 f t 93750.00 1 93750.00 11232 90 \N 2626 +75658 2025-10-28 23:56:15.558267+00 2025-10-28 23:56:15.558277+00 f t 46000.00 1 46000.00 10797 82 \N 9742 +77438 2025-11-02 12:57:19.534594+00 2025-11-02 12:57:19.534603+00 f t 46000.00 1 46000.00 11240 82 \N 10096 +77439 2025-11-02 12:57:19.542172+00 2025-11-02 12:57:19.542179+00 f t 46000.00 1 46000.00 11240 82 \N 10097 +77448 2025-11-02 17:39:55.380067+00 2025-11-02 17:39:55.380076+00 f t 46000.00 1 46000.00 11245 82 \N 10100 +75679 2025-10-29 00:03:18.854427+00 2025-10-29 00:03:18.854437+00 f t 55000.00 1 55000.00 10802 84 \N 9745 +75686 2025-10-29 00:09:21.838568+00 2025-10-29 00:09:21.838578+00 f t 46000.00 1 46000.00 10804 82 \N 9746 +77492 2025-11-02 18:15:58.579089+00 2025-11-02 18:15:58.579097+00 f t 46000.00 1 46000.00 11251 82 \N 10103 +75704 2025-10-29 00:11:42.857353+00 2025-10-29 00:11:42.857363+00 f t 46000.00 1 46000.00 10805 82 \N 9747 +75705 2025-10-29 00:11:42.862977+00 2025-10-29 00:11:42.862986+00 f t 8000.00 1 8000.00 10805 85 \N 9747 +75706 2025-10-29 00:11:42.867354+00 2025-10-29 00:11:42.867361+00 f t 24000.00 1 24000.00 10805 163 \N 9747 +75707 2025-10-29 00:11:42.871491+00 2025-10-29 00:11:42.871498+00 f t 24000.00 1 24000.00 10805 88 \N 9747 +75708 2025-10-29 00:17:12.188874+00 2025-10-29 00:17:12.188885+00 f t 88000.00 1 88000.00 10806 167 \N 9748 +75709 2025-10-29 01:27:30.073851+00 2025-10-29 01:27:30.07386+00 f t 46000.00 1 46000.00 10810 82 \N 9751 +77523 2025-11-02 19:50:17.192928+00 2025-11-02 19:50:17.192937+00 f t 46000.00 1 46000.00 11256 82 \N 2626 +77524 2025-11-02 19:50:17.201419+00 2025-11-02 19:50:17.201426+00 f t 32500.00 1 32500.00 11256 133 \N 2626 +75731 2025-10-29 01:30:21.155931+00 2025-10-29 01:30:21.155941+00 f t 34000.00 1 34000.00 10809 110 \N 9750 +75732 2025-10-29 01:30:21.162605+00 2025-10-29 01:30:21.162613+00 f t 46000.00 1 46000.00 10809 82 \N 9750 +75733 2025-10-29 01:30:21.167487+00 2025-10-29 01:30:21.167494+00 f t 87000.00 1 87000.00 10809 165 \N 9750 +75739 2025-10-29 01:49:28.652299+00 2025-10-29 01:49:28.652309+00 f t 46000.00 1 46000.00 10813 82 \N 9753 +75742 2025-10-29 02:41:40.077557+00 2025-10-29 02:41:40.077567+00 f t 55000.00 1 55000.00 10815 84 \N 9754 +75743 2025-10-29 03:02:58.098339+00 2025-10-29 03:02:58.098351+00 f t 24000.00 1 24000.00 10817 86 \N 9755 +75744 2025-10-29 03:02:58.104886+00 2025-10-29 03:02:58.104893+00 f t 46000.00 1 46000.00 10817 82 \N 9755 +75749 2025-10-29 03:26:38.73578+00 2025-10-29 03:26:38.73579+00 f t 24000.00 1 24000.00 10818 86 \N 9756 +75750 2025-10-29 03:26:38.742891+00 2025-10-29 03:26:38.7429+00 f t 46000.00 1 46000.00 10818 82 \N 9756 +75761 2025-10-29 04:01:17.169306+00 2025-10-29 04:01:17.169318+00 f t 46000.00 1 46000.00 10819 82 \N 9757 +75762 2025-10-29 04:01:17.175502+00 2025-10-29 04:01:17.175509+00 f t 8000.00 1 8000.00 10819 85 \N 9757 +75763 2025-10-29 04:01:17.180161+00 2025-10-29 04:01:17.180168+00 f t 24000.00 1 24000.00 10819 88 \N 9757 +75764 2025-10-29 04:01:17.1852+00 2025-10-29 04:01:17.185206+00 f t 24000.00 1 24000.00 10819 163 \N 9757 +75777 2025-10-29 04:47:16.773238+00 2025-10-29 04:47:16.773251+00 f t 55000.00 1 55000.00 10822 84 \N 9761 +75796 2025-10-29 04:48:50.887559+00 2025-10-29 04:48:50.887569+00 f t 46000.00 1 46000.00 10821 82 \N 9762 +75797 2025-10-29 04:48:50.894477+00 2025-10-29 04:48:50.894486+00 f t 8000.00 1 8000.00 10821 85 \N 9762 +77148 2025-11-01 01:52:51.608852+00 2025-11-01 01:52:51.60886+00 f t 55000.00 1 55000.00 11139 84 \N 10028 +77210 2025-11-01 09:27:10.046909+00 2025-11-01 09:27:10.046918+00 f t 46000.00 1 46000.00 11162 82 \N 10039 +77211 2025-11-01 09:27:10.054838+00 2025-11-01 09:27:10.054846+00 f t 34500.00 1 34500.00 11162 118 \N 10039 +77212 2025-11-01 09:27:10.0592+00 2025-11-01 09:27:10.059206+00 f t 8000.00 1 8000.00 11162 85 \N 10039 +77213 2025-11-01 09:27:10.063307+00 2025-11-01 09:27:10.063312+00 f t 15400.00 1 15400.00 11162 92 \N 10039 +77265 2025-11-01 13:01:36.565503+00 2025-11-01 13:01:36.565512+00 f t 55000.00 1 55000.00 11147 84 \N 10020 +77272 2025-11-01 13:24:50.101805+00 2025-11-01 13:24:50.101817+00 f t 55000.00 1 55000.00 11177 84 \N 10052 +75853 2025-10-29 11:56:04.643664+00 2025-10-29 11:56:04.643676+00 f t 46000.00 1 46000.00 10829 82 \N 9768 +75856 2025-10-29 12:03:59.095056+00 2025-10-29 12:03:59.095068+00 f t 55000.00 1 55000.00 10831 84 \N 9769 +75857 2025-10-29 12:34:00.371157+00 2025-10-29 12:34:00.37117+00 f t 46000.00 1 46000.00 10832 82 \N 9771 +75866 2025-10-29 12:55:53.156812+00 2025-10-29 12:55:53.156822+00 f t 46000.00 1 46000.00 10836 82 \N 9774 +75867 2025-10-29 13:03:00.109286+00 2025-10-29 13:03:00.109299+00 f t 1000.00 1 1000.00 10837 170 \N 8518 +75868 2025-10-29 13:03:00.116861+00 2025-10-29 13:03:00.116871+00 f t 46000.00 1 46000.00 10837 82 \N 8518 +75869 2025-10-29 13:06:25.498319+00 2025-10-29 13:06:25.498333+00 f t 1000.00 1 1000.00 10838 170 \N 8518 +75870 2025-10-29 13:06:25.506836+00 2025-10-29 13:06:25.506849+00 f t 46000.00 1 46000.00 10838 82 \N 8518 +75871 2025-10-29 13:15:39.992338+00 2025-10-29 13:15:39.992346+00 f t 55000.00 1 55000.00 10839 84 \N 9738 +75885 2025-10-29 13:37:04.638113+00 2025-10-29 13:37:04.638123+00 f t 75000.00 1 75000.00 10841 142 \N 9776 +75886 2025-10-29 13:37:04.645542+00 2025-10-29 13:37:04.645552+00 f t 46000.00 1 46000.00 10841 82 \N 9776 +75892 2025-10-29 13:54:38.33729+00 2025-10-29 13:54:38.337301+00 f t 46000.00 1 46000.00 10842 82 \N 9777 +75893 2025-10-29 13:54:38.344723+00 2025-10-29 13:54:38.344738+00 f t 33000.00 1 33000.00 10842 124 \N 9777 +75894 2025-10-29 13:54:38.350218+00 2025-10-29 13:54:38.350225+00 f t 8000.00 1 8000.00 10842 85 \N 9777 +75895 2025-10-29 14:12:19.703939+00 2025-10-29 14:12:19.703947+00 f t 24000.00 1 24000.00 10845 88 \N 9781 +75896 2025-10-29 14:12:19.710646+00 2025-10-29 14:12:19.710658+00 f t 46000.00 1 46000.00 10845 82 \N 9781 +75897 2025-10-29 14:19:52.331339+00 2025-10-29 14:19:52.331349+00 f t 46000.00 1 46000.00 10848 82 \N 9783 +75900 2025-10-29 14:20:02.562646+00 2025-10-29 14:20:02.562663+00 f t 46000.00 1 46000.00 10846 82 \N 48 +75953 2025-10-29 14:43:26.047727+00 2025-10-29 14:43:26.047736+00 f t 34000.00 1 34000.00 10847 110 \N 8041 +75954 2025-10-29 14:43:26.053683+00 2025-10-29 14:43:26.053693+00 f t 15400.00 1 15400.00 10847 92 \N 8041 +75955 2025-10-29 14:43:26.05933+00 2025-10-29 14:43:26.059338+00 f t 46000.00 1 46000.00 10847 82 \N 8041 +75956 2025-10-29 14:43:26.064506+00 2025-10-29 14:43:26.064517+00 f t 24000.00 1 24000.00 10847 163 \N 8041 +75962 2025-10-29 14:47:12.189464+00 2025-10-29 14:47:12.189474+00 f t 46000.00 1 46000.00 10851 82 \N 9786 +75963 2025-10-29 14:47:12.195512+00 2025-10-29 14:47:12.195521+00 f t 8000.00 1 8000.00 10851 85 \N 9786 +75964 2025-10-29 14:48:59.948704+00 2025-10-29 14:48:59.948724+00 f t 46000.00 1 46000.00 10852 82 \N 9787 +75965 2025-10-29 15:13:17.775909+00 2025-10-29 15:13:17.775918+00 f t 24000.00 1 24000.00 10854 163 \N 9788 +75966 2025-10-29 15:13:17.783222+00 2025-10-29 15:13:17.783231+00 f t 46000.00 1 46000.00 10854 82 \N 9788 +75969 2025-10-29 15:13:49.058708+00 2025-10-29 15:13:49.058721+00 f t 23000.00 1 23000.00 10833 172 \N 9772 +75970 2025-10-29 15:14:26.669361+00 2025-10-29 15:14:26.66937+00 f t 24000.00 1 24000.00 10853 163 \N 9790 +75971 2025-10-29 15:14:26.675184+00 2025-10-29 15:14:26.675193+00 f t 46000.00 1 46000.00 10853 82 \N 9790 +75973 2025-10-29 15:32:03.75851+00 2025-10-29 15:32:03.758522+00 f t 80000.00 1 80000.00 10855 173 \N 9712 +75990 2025-10-29 15:35:43.331376+00 2025-10-29 15:35:43.331388+00 f t 8000.00 1 8000.00 10861 85 \N 9794 +75991 2025-10-29 15:35:43.336957+00 2025-10-29 15:35:43.336964+00 f t 46000.00 1 46000.00 10861 82 \N 9794 +75996 2025-10-29 15:36:18.303061+00 2025-10-29 15:36:18.30307+00 f t 46000.00 1 46000.00 10860 82 \N 9795 +75997 2025-10-29 16:01:20.228474+00 2025-10-29 16:01:20.228487+00 f t 46000.00 1 46000.00 10863 82 \N 9797 +75998 2025-10-29 16:06:43.122494+00 2025-10-29 16:06:43.122504+00 f t 13200.00 1 13200.00 10864 146 \N 9769 +76000 2025-10-29 16:15:56.840768+00 2025-10-29 16:15:56.840777+00 f t 88000.00 1 88000.00 10865 167 \N 9798 +76001 2025-10-29 16:18:08.157502+00 2025-10-29 16:18:08.157512+00 f t 46000.00 1 46000.00 10867 82 \N 9800 +76011 2025-10-29 16:55:06.963396+00 2025-10-29 16:55:06.963409+00 f t 46000.00 1 46000.00 10869 82 \N 9802 +76012 2025-10-29 16:55:06.97033+00 2025-10-29 16:55:06.970342+00 f t 8000.00 1 8000.00 10869 85 \N 9802 +76014 2025-10-29 17:15:54.066519+00 2025-10-29 17:15:54.066531+00 f t 55000.00 1 55000.00 10870 84 \N 9803 +76015 2025-10-29 17:55:55.978848+00 2025-10-29 17:55:55.97886+00 f t 55000.00 1 55000.00 10871 84 \N 9804 +76018 2025-10-29 17:59:17.101143+00 2025-10-29 17:59:17.101153+00 f t 55000.00 1 55000.00 10872 84 \N 9805 +76019 2025-10-29 18:16:09.473393+00 2025-10-29 18:16:09.473402+00 f t 24000.00 1 24000.00 10874 88 \N 9806 +76020 2025-10-29 18:16:09.481361+00 2025-10-29 18:16:09.481374+00 f t 46000.00 1 46000.00 10874 82 \N 9806 +76023 2025-10-29 18:37:19.475695+00 2025-10-29 18:37:19.475709+00 f t 46000.00 1 46000.00 10876 82 \N 8140 +76024 2025-10-29 18:37:19.483291+00 2025-10-29 18:37:19.483302+00 f t 24000.00 1 24000.00 10876 163 \N 8140 +76025 2025-10-29 18:37:19.489674+00 2025-10-29 18:37:19.489686+00 f t 24000.00 1 24000.00 10876 163 \N 8139 +76026 2025-10-29 18:37:19.4962+00 2025-10-29 18:37:19.496212+00 f t 46000.00 1 46000.00 10876 82 \N 8139 +76027 2025-10-29 18:37:27.481503+00 2025-10-29 18:37:27.481512+00 f t 46000.00 1 46000.00 10877 82 \N 9807 +76039 2025-10-29 18:58:16.640987+00 2025-10-29 18:58:16.640999+00 f t 46000.00 1 46000.00 10879 82 \N 9809 +76040 2025-10-29 18:58:16.646672+00 2025-10-29 18:58:16.646711+00 f t 8000.00 1 8000.00 10879 85 \N 9809 +76041 2025-10-29 18:58:16.650792+00 2025-10-29 18:58:16.650798+00 f t 8000.00 1 8000.00 10879 85 \N 9810 +76042 2025-10-29 18:58:16.654842+00 2025-10-29 18:58:16.654849+00 f t 46000.00 1 46000.00 10879 82 \N 9810 +76043 2025-10-29 19:09:32.437279+00 2025-10-29 19:09:32.437288+00 f t 46000.00 1 46000.00 10882 82 \N 9811 +76080 2025-10-29 19:20:38.766655+00 2025-10-29 19:20:38.766667+00 f t 24000.00 1 24000.00 10884 86 \N 9813 +76081 2025-10-29 19:20:38.773545+00 2025-10-29 19:20:38.773556+00 f t 46000.00 1 46000.00 10884 82 \N 9813 +76089 2025-10-29 19:20:56.932333+00 2025-10-29 19:20:56.932342+00 f t 8000.00 1 8000.00 10883 85 \N 9812 +76090 2025-10-29 19:20:56.938671+00 2025-10-29 19:20:56.93868+00 f t 24000.00 1 24000.00 10883 86 \N 9812 +76091 2025-10-29 19:20:56.943318+00 2025-10-29 19:20:56.943325+00 f t 46000.00 1 46000.00 10883 82 \N 9812 +77149 2025-11-01 02:07:14.739893+00 2025-11-01 02:07:14.739902+00 f t 46000.00 1 46000.00 11148 82 \N 10029 +77182 2025-11-01 07:49:20.695178+00 2025-11-01 07:49:20.695187+00 f t 31500.00 1 31500.00 11157 111 \N 10034 +77183 2025-11-01 07:49:20.703459+00 2025-11-01 07:49:20.703467+00 f t 11000.00 1 11000.00 11157 116 \N 10034 +77184 2025-11-01 07:49:20.707599+00 2025-11-01 07:49:20.707605+00 f t 0.00 1 0.00 11157 166 \N 10034 +77273 2025-11-01 13:38:22.461817+00 2025-11-01 13:38:22.461828+00 f t 55000.00 1 55000.00 11178 84 \N 10053 +77283 2025-11-01 13:56:26.507353+00 2025-11-01 13:56:26.507363+00 f t 55000.00 1 55000.00 11181 84 \N 10056 +76119 2025-10-29 19:29:55.712846+00 2025-10-29 19:29:55.712857+00 f t 46000.00 1 46000.00 10886 82 \N 9814 +76120 2025-10-29 19:29:55.719253+00 2025-10-29 19:29:55.719262+00 f t 24000.00 1 24000.00 10886 86 \N 9814 +76121 2025-10-29 19:29:55.723695+00 2025-10-29 19:29:55.723703+00 f t 46000.00 1 46000.00 10886 82 \N 9815 +76122 2025-10-29 19:29:55.728218+00 2025-10-29 19:29:55.728224+00 f t 24000.00 1 24000.00 10886 86 \N 9815 +76124 2025-10-29 20:05:13.102771+00 2025-10-29 20:05:13.102783+00 f t 46000.00 1 46000.00 10890 82 \N 9816 +77301 2025-11-01 14:10:54.820166+00 2025-11-01 14:10:54.820174+00 f t 46000.00 1 46000.00 11183 82 \N 10058 +76127 2025-10-29 20:26:23.563753+00 2025-10-29 20:26:23.563762+00 f t 46000.00 1 46000.00 10840 82 \N 9775 +76128 2025-10-29 20:26:23.568773+00 2025-10-29 20:26:23.56878+00 f t 7700.00 1 7700.00 10840 93 \N 9775 +76129 2025-10-29 20:26:23.573133+00 2025-10-29 20:26:23.57314+00 f t 31500.00 1 31500.00 10840 111 \N 9775 +76130 2025-10-29 20:27:46.581951+00 2025-10-29 20:27:46.581963+00 f t 13200.00 1 13200.00 10895 146 \N 9775 +76131 2025-10-29 20:35:07.191848+00 2025-10-29 20:35:07.191858+00 f t 55000.00 1 55000.00 10896 84 \N 9828 +77302 2025-11-01 14:10:54.828676+00 2025-11-01 14:10:54.828684+00 f t 8000.00 1 8000.00 11183 85 \N 10058 +77303 2025-11-01 14:10:54.833345+00 2025-11-01 14:10:54.833351+00 f t 24000.00 1 24000.00 11183 163 \N 10058 +76134 2025-10-29 21:19:15.554313+00 2025-10-29 21:19:15.554322+00 f t 55000.00 1 55000.00 10898 84 \N 9829 +77304 2025-11-01 14:10:54.838819+00 2025-11-01 14:10:54.838825+00 f t 78000.00 1 78000.00 11183 106 \N 10058 +76137 2025-10-29 21:36:39.90065+00 2025-10-29 21:36:39.900659+00 f t 46000.00 1 46000.00 10900 82 \N 9831 +77314 2025-11-01 15:45:23.059494+00 2025-11-01 15:45:23.059503+00 f t 24000.00 1 24000.00 11195 86 \N 9025 +76139 2025-10-29 21:42:45.534474+00 2025-10-29 21:42:45.534486+00 f t 20500.00 1 20500.00 10901 109 \N 9832 +77315 2025-11-01 15:45:23.067333+00 2025-11-01 15:45:23.067346+00 f t 46000.00 1 46000.00 11195 82 \N 9025 +76141 2025-10-29 22:06:36.491363+00 2025-10-29 22:06:36.491375+00 f t 80000.00 1 80000.00 10903 173 \N 9833 +77320 2025-11-01 16:25:32.911984+00 2025-11-01 16:25:32.911993+00 f t 55000.00 1 55000.00 11201 84 \N 2020 +76146 2025-10-29 22:16:53.794442+00 2025-10-29 22:16:53.794453+00 f t 46000.00 1 46000.00 10904 82 \N 9834 +77343 2025-11-01 17:01:16.255857+00 2025-11-01 17:01:16.255866+00 f t 46000.00 1 46000.00 11206 82 \N 323 +76153 2025-10-29 22:36:24.421059+00 2025-10-29 22:36:24.421067+00 f t 8000.00 1 8000.00 10906 85 \N 9835 +76154 2025-10-29 22:36:24.426605+00 2025-10-29 22:36:24.426612+00 f t 46000.00 1 46000.00 10906 82 \N 9835 +77357 2025-11-01 19:40:40.64171+00 2025-11-01 19:40:40.642262+00 f t 46000.00 1 46000.00 11215 82 \N 10075 +76156 2025-10-29 22:44:36.57472+00 2025-10-29 22:44:36.57473+00 f t 46000.00 1 46000.00 10907 82 \N 9836 +76160 2025-10-29 22:59:26.90515+00 2025-10-29 22:59:26.905158+00 f t 80000.00 1 80000.00 10911 173 \N 9838 +77381 2025-11-01 20:39:30.195736+00 2025-11-01 20:39:30.195745+00 f t 55000.00 1 55000.00 11223 84 \N 10081 +76165 2025-10-29 23:00:59.365981+00 2025-10-29 23:00:59.365991+00 f t 46000.00 1 46000.00 10910 82 \N 9837 +77389 2025-11-01 21:30:14.000305+00 2025-11-01 21:30:14.000316+00 f t 46000.00 1 46000.00 11227 82 \N 10085 +76168 2025-10-29 23:15:36.260654+00 2025-10-29 23:15:36.260668+00 f t 46000.00 1 46000.00 10913 82 \N 9840 +77395 2025-11-01 22:01:32.09834+00 2025-11-01 22:01:32.098742+00 f t 55000.00 1 55000.00 11230 84 \N 10088 +77407 2025-11-02 00:18:30.052699+00 2025-11-02 00:18:30.052713+00 f t 24000.00 1 24000.00 11234 88 \N 10091 +77408 2025-11-02 00:18:30.064341+00 2025-11-02 00:18:30.064349+00 f t 46000.00 1 46000.00 11234 82 \N 10091 +76177 2025-10-29 23:19:35.081119+00 2025-10-29 23:19:35.081128+00 f t 46000.00 1 46000.00 10914 82 \N 9841 +76181 2025-10-29 23:48:42.529913+00 2025-10-29 23:48:42.529922+00 f t 13200.00 1 13200.00 10917 146 \N 9800 +76187 2025-10-30 00:23:56.929329+00 2025-10-30 00:23:56.929341+00 f t 46000.00 1 46000.00 10920 82 \N 9845 +76192 2025-10-30 00:24:50.716538+00 2025-10-30 00:24:50.716547+00 f t 46000.00 1 46000.00 10921 82 \N 9846 +76193 2025-10-30 00:24:50.722053+00 2025-10-30 00:24:50.72206+00 f t 24000.00 1 24000.00 10921 88 \N 9846 +76194 2025-10-30 00:24:50.726561+00 2025-10-30 00:24:50.726567+00 f t 8000.00 1 8000.00 10921 85 \N 9846 +76196 2025-10-30 00:25:23.747392+00 2025-10-30 00:25:23.7474+00 f t 55000.00 1 55000.00 10922 84 \N 9847 +76199 2025-10-30 00:27:49.304796+00 2025-10-30 00:27:49.304805+00 f t 55000.00 1 55000.00 10923 84 \N 9848 +76207 2025-10-30 00:58:10.08211+00 2025-10-30 00:58:10.082119+00 f t 55000.00 1 55000.00 10927 84 \N 9850 +76218 2025-10-30 01:26:59.410331+00 2025-10-30 01:26:59.410339+00 f t 24000.00 1 24000.00 10929 86 \N 9852 +76219 2025-10-30 01:26:59.415314+00 2025-10-30 01:26:59.415321+00 f t 46000.00 1 46000.00 10929 82 \N 9852 +76220 2025-10-30 02:12:12.804055+00 2025-10-30 02:12:12.804063+00 f t 46000.00 1 46000.00 10936 82 \N 9854 +76221 2025-10-30 02:49:34.044187+00 2025-10-30 02:49:34.044196+00 f t 46000.00 1 46000.00 10940 82 \N 9857 +76225 2025-10-30 03:00:21.427314+00 2025-10-30 03:00:21.427324+00 f t 80000.00 1 80000.00 10941 173 \N 9858 +76226 2025-10-30 03:00:21.432978+00 2025-10-30 03:00:21.432986+00 f t 55000.00 1 55000.00 10941 84 \N 9858 +76228 2025-10-30 03:10:44.486516+00 2025-10-30 03:10:44.486527+00 f t 46000.00 1 46000.00 10943 82 \N 9860 +76230 2025-10-30 03:17:10.969615+00 2025-10-30 03:17:10.969627+00 f t 46000.00 1 46000.00 10944 82 \N 9861 +76232 2025-10-30 03:45:28.072948+00 2025-10-30 03:45:28.072961+00 f t 55000.00 1 55000.00 10948 84 \N 9862 +76323 2025-10-30 04:00:58.672249+00 2025-10-30 04:00:58.672263+00 f t 46000.00 1 46000.00 10949 82 \N 9863 +76324 2025-10-30 04:00:58.680128+00 2025-10-30 04:00:58.680141+00 f t 33000.00 1 33000.00 10949 117 \N 9863 +76325 2025-10-30 04:00:58.687288+00 2025-10-30 04:00:58.6873+00 f t 8000.00 1 8000.00 10949 85 \N 9863 +76326 2025-10-30 04:00:58.694981+00 2025-10-30 04:00:58.694992+00 f t 24000.00 1 24000.00 10949 86 \N 9863 +76327 2025-10-30 04:00:58.702282+00 2025-10-30 04:00:58.702295+00 f t 46000.00 1 46000.00 10949 82 \N 9864 +76328 2025-10-30 04:00:58.709036+00 2025-10-30 04:00:58.709047+00 f t 8000.00 1 8000.00 10949 85 \N 9864 +76329 2025-10-30 04:00:58.715867+00 2025-10-30 04:00:58.715875+00 f t 24000.00 1 24000.00 10949 88 \N 9864 +76330 2025-10-30 04:00:58.721359+00 2025-10-30 04:00:58.72137+00 f t 24000.00 1 24000.00 10949 163 \N 9864 +76331 2025-10-30 04:00:58.727673+00 2025-10-30 04:00:58.727685+00 f t 33000.00 1 33000.00 10949 123 \N 9864 +76365 2025-10-30 04:13:01.058662+00 2025-10-30 04:13:01.058671+00 f t 46000.00 1 46000.00 10950 82 \N 9865 +76366 2025-10-30 06:05:12.198648+00 2025-10-30 06:05:12.198657+00 f t 32500.00 1 32500.00 10951 112 \N 9866 +77150 2025-11-01 02:18:14.657388+00 2025-11-01 02:18:14.6574+00 f t 46000.00 1 46000.00 11151 82 \N 10031 +82722 2025-11-12 20:52:56.088536+00 2025-11-12 20:52:56.088545+00 f t 80000.00 1 80000.00 12174 173 \N 10814 +76372 2025-10-30 06:24:27.633335+00 2025-10-30 06:24:27.633344+00 f t 75000.00 1 75000.00 10952 108 \N 9867 +76373 2025-10-30 08:30:02.140328+00 2025-10-30 08:30:02.140344+00 f t 55000.00 1 55000.00 10953 84 \N 9868 +76374 2025-10-30 10:55:37.331164+00 2025-10-30 10:55:37.331173+00 f t 46000.00 1 46000.00 10957 82 \N 9869 +76377 2025-10-30 11:58:06.461123+00 2025-10-30 11:58:06.461133+00 f t 46000.00 1 46000.00 10958 82 \N 9870 +76378 2025-10-30 11:58:06.468559+00 2025-10-30 11:58:06.468568+00 f t 24000.00 1 24000.00 10958 86 \N 9870 +76417 2025-10-30 12:31:17.632049+00 2025-10-30 12:31:17.632061+00 f t 80000.00 1 80000.00 10960 173 \N 9872 +76424 2025-10-30 12:40:41.106412+00 2025-10-30 12:40:41.106421+00 f t 80000.00 1 80000.00 10962 173 \N 9873 +76436 2025-10-30 12:57:41.760396+00 2025-10-30 12:57:41.760406+00 f t 55000.00 1 55000.00 10959 84 \N 9871 +76445 2025-10-30 13:11:29.39651+00 2025-10-30 13:11:29.396518+00 f t 46000.00 1 46000.00 10964 82 \N 9874 +76446 2025-10-30 13:11:29.402005+00 2025-10-30 13:11:29.402012+00 f t 24000.00 1 24000.00 10964 163 \N 9874 +76447 2025-10-30 13:11:29.406456+00 2025-10-30 13:11:29.406463+00 f t 8000.00 1 8000.00 10964 85 \N 9874 +76452 2025-10-30 13:31:59.360698+00 2025-10-30 13:31:59.360751+00 f t 55000.00 1 55000.00 10966 84 \N 9876 +76453 2025-10-30 13:36:36.501264+00 2025-10-30 13:36:36.501274+00 f t 23000.00 1 23000.00 10967 172 \N 9875 +76457 2025-10-30 13:45:41.333225+00 2025-10-30 13:45:41.333233+00 f t 55000.00 1 55000.00 10969 84 \N 9878 +76473 2025-10-30 14:31:41.772336+00 2025-10-30 14:31:41.772344+00 f t 46000.00 1 46000.00 10974 82 \N 9881 +76474 2025-10-30 14:31:41.777252+00 2025-10-30 14:31:41.777259+00 f t 8000.00 1 8000.00 10974 85 \N 9881 +76475 2025-10-30 14:31:41.781202+00 2025-10-30 14:31:41.781208+00 f t 8000.00 1 8000.00 10974 85 \N 9882 +76476 2025-10-30 14:31:41.785216+00 2025-10-30 14:31:41.785222+00 f t 46000.00 1 46000.00 10974 82 \N 9882 +76481 2025-10-30 14:37:26.698523+00 2025-10-30 14:37:26.698533+00 f t 46000.00 1 46000.00 10975 82 \N 9883 +76482 2025-10-30 14:37:26.704696+00 2025-10-30 14:37:26.704704+00 f t 24000.00 1 24000.00 10975 163 \N 9883 +76483 2025-10-30 14:40:00.426333+00 2025-10-30 14:40:00.426341+00 f t 55000.00 1 55000.00 10976 84 \N 9884 +76484 2025-10-30 14:46:44.645524+00 2025-10-30 14:46:44.645532+00 f t 8000.00 1 8000.00 10977 85 \N 9885 +76485 2025-10-30 14:46:44.651554+00 2025-10-30 14:46:44.651562+00 f t 46000.00 1 46000.00 10977 82 \N 9885 +76487 2025-10-30 15:16:10.903035+00 2025-10-30 15:16:10.903044+00 f t 29000.00 1 29000.00 10978 140 \N 9886 +76488 2025-10-30 15:16:10.91012+00 2025-10-30 15:16:10.91013+00 f t 46000.00 1 46000.00 10978 82 \N 9886 +76489 2025-10-30 15:18:19.479881+00 2025-10-30 15:18:19.47989+00 f t 55000.00 1 55000.00 10979 84 \N 9887 +76495 2025-10-30 15:59:01.419382+00 2025-10-30 15:59:01.41939+00 f t 46000.00 1 46000.00 10981 82 \N 9891 +76496 2025-10-30 15:59:01.424806+00 2025-10-30 15:59:01.424813+00 f t 46000.00 1 46000.00 10981 82 \N 9892 +76526 2025-10-30 16:06:44.617426+00 2025-10-30 16:06:44.617435+00 f t 46000.00 1 46000.00 10983 82 \N 9895 +76527 2025-10-30 16:06:44.623895+00 2025-10-30 16:06:44.623904+00 f t 24000.00 1 24000.00 10983 163 \N 9895 +76528 2025-10-30 16:06:44.628577+00 2025-10-30 16:06:44.628583+00 f t 93750.00 1 93750.00 10983 90 \N 9895 +76534 2025-10-30 16:14:36.03867+00 2025-10-30 16:14:36.038678+00 f t 13200.00 1 13200.00 10985 146 \N 9875 +76536 2025-10-30 16:43:51.006257+00 2025-10-30 16:43:51.006266+00 f t 23000.00 1 23000.00 10987 172 \N 9897 +76537 2025-10-30 17:10:53.981013+00 2025-10-30 17:10:53.981025+00 f t 46000.00 1 46000.00 10986 82 \N 7841 +76539 2025-10-30 17:25:30.189043+00 2025-10-30 17:25:30.189054+00 f t 8000.00 1 8000.00 10991 85 \N 9904 +76540 2025-10-30 17:25:30.194947+00 2025-10-30 17:25:30.194955+00 f t 46000.00 1 46000.00 10991 82 \N 9904 +76541 2025-10-30 17:28:56.941357+00 2025-10-30 17:28:56.941366+00 f t 55000.00 1 55000.00 10992 84 \N 9906 +76554 2025-10-30 17:37:18.164762+00 2025-10-30 17:37:18.164771+00 f t 46000.00 1 46000.00 10982 82 \N 9893 +76555 2025-10-30 17:37:18.170606+00 2025-10-30 17:37:18.170613+00 f t 46000.00 1 46000.00 10982 82 \N 9894 +76556 2025-10-30 17:37:18.175936+00 2025-10-30 17:37:18.175943+00 f t 8000.00 1 8000.00 10982 85 \N 9893 +76557 2025-10-30 17:37:18.180362+00 2025-10-30 17:37:18.180368+00 f t 8000.00 1 8000.00 10982 85 \N 9894 +76558 2025-10-30 17:37:18.184383+00 2025-10-30 17:37:18.184389+00 f t 24000.00 1 24000.00 10982 163 \N 9894 +76559 2025-10-30 17:37:18.18817+00 2025-10-30 17:37:18.188175+00 f t 24000.00 1 24000.00 10982 163 \N 9893 +76560 2025-10-30 17:45:17.934241+00 2025-10-30 17:45:17.93425+00 f t 30000.00 1 30000.00 10994 83 \N 9907 +76562 2025-10-30 18:12:49.986052+00 2025-10-30 18:12:49.986061+00 f t 23000.00 1 23000.00 10995 172 \N 9908 +76565 2025-10-30 18:20:26.700358+00 2025-10-30 18:20:26.700367+00 f t 7700.00 1 7700.00 10996 91 \N 9909 +76566 2025-10-30 18:20:26.706091+00 2025-10-30 18:20:26.706101+00 f t 46000.00 1 46000.00 10996 82 \N 9909 +76575 2025-10-30 18:41:43.196411+00 2025-10-30 18:41:43.19642+00 f t 23000.00 1 23000.00 10973 172 \N 9879 +76590 2025-10-30 19:20:50.03449+00 2025-10-30 19:20:50.034499+00 f t 46000.00 1 46000.00 10997 82 \N 9910 +76591 2025-10-30 19:20:50.039841+00 2025-10-30 19:20:50.039848+00 f t 8000.00 1 8000.00 10997 85 \N 9910 +76592 2025-10-30 19:20:50.044041+00 2025-10-30 19:20:50.044047+00 f t 24000.00 1 24000.00 10997 86 \N 9910 +76598 2025-10-30 19:37:48.79315+00 2025-10-30 19:37:48.793158+00 f t 15400.00 1 15400.00 11000 92 \N 9915 +76599 2025-10-30 19:37:48.798887+00 2025-10-30 19:37:48.798895+00 f t 46000.00 1 46000.00 11000 82 \N 9915 +76601 2025-10-30 19:53:01.775118+00 2025-10-30 19:53:01.775127+00 f t 8000.00 1 8000.00 11001 85 \N 9916 +76602 2025-10-30 19:53:01.781863+00 2025-10-30 19:53:01.781871+00 f t 46000.00 1 46000.00 11001 82 \N 9916 +76611 2025-10-30 20:01:44.769914+00 2025-10-30 20:01:44.769925+00 f t 46000.00 1 46000.00 11002 82 \N 9917 +76612 2025-10-30 20:01:44.77652+00 2025-10-30 20:01:44.776528+00 f t 8000.00 1 8000.00 11002 85 \N 9917 +76613 2025-10-30 20:02:39.482705+00 2025-10-30 20:02:39.482713+00 f t 46000.00 1 46000.00 11003 82 \N 9918 +76638 2025-10-30 20:19:04.276687+00 2025-10-30 20:19:04.276698+00 f t 20500.00 1 20500.00 11007 109 \N 9921 +76639 2025-10-30 20:19:04.283106+00 2025-10-30 20:19:04.283115+00 f t 46000.00 1 46000.00 11007 82 \N 9921 +76640 2025-10-30 20:19:04.287755+00 2025-10-30 20:19:04.287762+00 f t 13200.00 1 13200.00 11007 146 \N 9800 +76641 2025-10-30 20:26:10.672225+00 2025-10-30 20:26:10.672234+00 f t 8000.00 1 8000.00 11009 85 \N 9923 +76642 2025-10-30 20:26:10.678289+00 2025-10-30 20:26:10.678296+00 f t 46000.00 1 46000.00 11009 82 \N 9923 +76666 2025-10-30 21:01:34.709615+00 2025-10-30 21:01:34.709624+00 f t 46000.00 1 46000.00 11011 82 \N 9925 +77305 2025-11-01 14:30:53.959928+00 2025-11-01 14:30:53.95994+00 f t 88000.00 1 88000.00 11187 167 \N 10059 +76668 2025-10-30 21:26:45.717164+00 2025-10-30 21:26:45.717173+00 f t 46000.00 1 46000.00 11012 82 \N 9926 +77310 2025-11-01 15:04:15.023414+00 2025-11-01 15:04:15.023423+00 f t 55000.00 1 55000.00 11191 84 \N 10062 +76675 2025-10-30 22:21:20.378286+00 2025-10-30 22:21:20.378298+00 f t 46000.00 1 46000.00 11015 82 \N 9928 +76676 2025-10-30 22:27:01.080597+00 2025-10-30 22:27:01.08061+00 f t 30000.00 1 30000.00 11013 83 \N 2309 +76678 2025-10-30 22:27:50.402963+00 2025-10-30 22:27:50.402971+00 f t 46000.00 1 46000.00 11016 82 \N 9929 +76679 2025-10-30 22:57:42.403956+00 2025-10-30 22:57:42.403963+00 f t 23000.00 1 23000.00 11017 172 \N 9897 +76680 2025-10-30 23:31:29.902376+00 2025-10-30 23:31:29.902388+00 f t 66000.00 1 66000.00 11020 105 \N 8031 +76681 2025-10-30 23:35:17.409261+00 2025-10-30 23:35:17.40927+00 f t 66000.00 1 66000.00 11021 105 \N 8031 +76682 2025-10-30 23:42:29.137827+00 2025-10-30 23:42:29.137838+00 f t 66000.00 1 66000.00 11022 105 \N 8031 +76683 2025-10-30 23:43:53.68756+00 2025-10-30 23:43:53.687572+00 f t 66000.00 1 66000.00 11024 105 \N 8031 +76686 2025-10-30 23:49:04.982302+00 2025-10-30 23:49:04.982311+00 f t 46000.00 1 46000.00 11025 82 \N 9932 +76687 2025-10-30 23:49:04.989353+00 2025-10-30 23:49:04.989361+00 f t 88000.00 1 88000.00 11025 167 \N 9932 +76688 2025-10-30 23:54:13.719288+00 2025-10-30 23:54:13.719297+00 f t 78000.00 1 78000.00 11028 106 \N 9933 +76713 2025-10-31 00:26:22.678044+00 2025-10-31 00:26:22.678053+00 f t 55000.00 1 55000.00 11029 84 \N 9934 +76733 2025-10-31 00:52:37.466345+00 2025-10-31 00:52:37.466354+00 f t 78000.00 1 78000.00 11030 106 \N 9935 +76736 2025-10-31 02:18:09.856012+00 2025-10-31 02:18:09.856025+00 f t 60000.00 1 60000.00 11035 169 \N 9938 +76737 2025-10-31 02:21:25.496983+00 2025-10-31 02:21:25.496992+00 f t 46000.00 1 46000.00 11036 82 \N 9939 +76753 2025-10-31 02:35:28.62789+00 2025-10-31 02:35:28.627897+00 f t 46000.00 1 46000.00 11039 82 \N 9942 +76754 2025-10-31 02:35:28.633292+00 2025-10-31 02:35:28.633299+00 f t 8000.00 1 8000.00 11039 85 \N 9942 +76755 2025-10-31 02:35:28.63754+00 2025-10-31 02:35:28.637545+00 f t 24000.00 1 24000.00 11039 86 \N 9942 +76758 2025-10-31 02:39:21.226913+00 2025-10-31 02:39:21.226921+00 f t 55000.00 1 55000.00 11042 84 \N 9943 +76767 2025-10-31 02:43:17.118941+00 2025-10-31 02:43:17.118951+00 f t 24000.00 1 24000.00 11043 86 \N 9944 +76768 2025-10-31 02:43:17.124865+00 2025-10-31 02:43:17.124878+00 f t 46000.00 1 46000.00 11043 82 \N 9944 +76812 2025-10-31 02:51:23.560781+00 2025-10-31 02:51:23.56079+00 f t 46000.00 1 46000.00 11044 82 \N 9947 +76813 2025-10-31 02:51:23.566725+00 2025-10-31 02:51:23.566732+00 f t 24000.00 1 24000.00 11044 86 \N 9947 +76814 2025-10-31 02:51:23.571365+00 2025-10-31 02:51:23.571371+00 f t 34500.00 1 34500.00 11044 118 \N 9947 +76818 2025-10-31 02:53:20.187345+00 2025-10-31 02:53:20.187353+00 f t 107000.00 1 107000.00 11045 103 \N 9948 +76819 2025-10-31 02:53:20.193105+00 2025-10-31 02:53:20.193112+00 f t 40500.00 1 40500.00 11045 135 \N 9948 +76820 2025-10-31 02:53:20.197572+00 2025-10-31 02:53:20.197578+00 f t 46000.00 1 46000.00 11045 82 \N 9948 +76821 2025-10-31 03:32:24.948664+00 2025-10-31 03:32:24.948673+00 f t 46000.00 1 46000.00 11047 82 \N 9949 +76826 2025-10-31 08:09:31.380682+00 2025-10-31 08:09:31.380691+00 f t 55000.00 1 55000.00 11049 84 \N 9950 +76829 2025-10-31 09:45:30.236688+00 2025-10-31 09:45:30.236696+00 f t 46000.00 1 46000.00 11051 82 \N 9952 +76830 2025-10-31 09:45:30.242878+00 2025-10-31 09:45:30.242888+00 f t 33000.00 1 33000.00 11051 123 \N 9952 +76834 2025-10-31 12:15:13.808729+00 2025-10-31 12:15:13.808739+00 f t 46000.00 1 46000.00 11059 82 \N 9957 +76840 2025-10-31 12:21:14.241073+00 2025-10-31 12:21:14.241082+00 f t 46000.00 1 46000.00 11060 82 \N 9958 +76841 2025-10-31 12:21:47.208579+00 2025-10-31 12:21:47.208591+00 f t 46000.00 1 46000.00 11061 82 \N 9959 +76842 2025-10-31 12:22:41.471747+00 2025-10-31 12:22:41.471756+00 f t 46000.00 1 46000.00 11062 82 \N 9960 +76843 2025-10-31 12:31:39.012166+00 2025-10-31 12:31:39.012178+00 f t 13200.00 1 13200.00 11063 146 \N 8265 +76844 2025-10-31 13:07:09.748871+00 2025-10-31 13:07:09.748879+00 f t 78000.00 1 78000.00 11064 106 \N 8941 +76851 2025-10-31 13:39:50.895384+00 2025-10-31 13:39:50.895392+00 f t 55000.00 1 55000.00 11065 84 \N 9961 +76857 2025-10-31 13:47:27.378693+00 2025-10-31 13:47:27.378701+00 f t 46000.00 1 46000.00 11066 82 \N 9962 +76858 2025-10-31 13:47:27.383696+00 2025-10-31 13:47:27.383702+00 f t 8000.00 1 8000.00 11066 85 \N 9962 +76859 2025-10-31 13:47:27.387688+00 2025-10-31 13:47:27.387693+00 f t 24000.00 1 24000.00 11066 163 \N 9962 +76860 2025-10-31 13:47:27.391638+00 2025-10-31 13:47:27.391644+00 f t 33000.00 1 33000.00 11066 123 \N 9962 +76861 2025-10-31 13:49:43.508777+00 2025-10-31 13:49:43.508786+00 f t 46000.00 1 46000.00 11067 82 \N 9963 +76862 2025-10-31 14:09:17.477663+00 2025-10-31 14:09:17.477676+00 f t 55000.00 1 55000.00 11068 84 \N 9964 +76863 2025-10-31 14:15:11.422539+00 2025-10-31 14:15:11.422552+00 f t 81500.00 1 81500.00 11071 143 \N 7334 +76864 2025-10-31 14:15:11.434+00 2025-10-31 14:15:11.43401+00 f t 46000.00 1 46000.00 11071 82 \N 7334 +76865 2025-10-31 14:18:01.26143+00 2025-10-31 14:18:01.261439+00 f t 88000.00 1 88000.00 11072 167 \N 9531 +76874 2025-10-31 14:21:11.142294+00 2025-10-31 14:21:11.142302+00 f t 29000.00 1 29000.00 11069 138 \N 9967 +76875 2025-10-31 14:21:11.149872+00 2025-10-31 14:21:11.149879+00 f t 46000.00 1 46000.00 11069 82 \N 9968 +76876 2025-10-31 14:21:11.15436+00 2025-10-31 14:21:11.154366+00 f t 8000.00 1 8000.00 11069 85 \N 9968 +76877 2025-10-31 14:21:11.158388+00 2025-10-31 14:21:11.158393+00 f t 46000.00 1 46000.00 11069 82 \N 9967 +76878 2025-10-31 14:44:09.065174+00 2025-10-31 14:44:09.065183+00 f t 69000.00 1 69000.00 11074 82 \N 9969 +76879 2025-10-31 14:52:34.154875+00 2025-10-31 14:52:34.154887+00 f t 78000.00 1 78000.00 11075 106 \N 9803 +76880 2025-10-31 14:54:34.998035+00 2025-10-31 14:54:34.998044+00 f t 75000.00 1 75000.00 11076 108 \N 9803 +76882 2025-10-31 14:56:46.626763+00 2025-10-31 14:56:46.626771+00 f t 78000.00 1 78000.00 11078 106 \N 9971 +76889 2025-10-31 15:11:22.126771+00 2025-10-31 15:11:22.12678+00 f t 55000.00 1 55000.00 11079 84 \N 9972 +76890 2025-10-31 15:19:46.80518+00 2025-10-31 15:19:46.805189+00 f t 30000.00 1 30000.00 11081 83 \N 9974 +76901 2025-10-31 15:27:22.155451+00 2025-10-31 15:27:22.155463+00 f t 87000.00 1 87000.00 11082 165 \N 9975 +76902 2025-10-31 15:34:50.894798+00 2025-10-31 15:34:50.894807+00 f t 46000.00 1 46000.00 11083 82 \N 9976 +76904 2025-10-31 16:02:27.221154+00 2025-10-31 16:02:27.221163+00 f t 55000.00 1 55000.00 11085 84 \N 9977 +76905 2025-10-31 16:23:12.222084+00 2025-10-31 16:23:12.222092+00 f t 24000.00 1 24000.00 11086 86 \N 9025 +76906 2025-10-31 16:23:12.229785+00 2025-10-31 16:23:12.229792+00 f t 46000.00 1 46000.00 11086 82 \N 9025 +76907 2025-10-31 16:45:02.562507+00 2025-10-31 16:45:02.562522+00 f t 46000.00 1 46000.00 11087 82 \N 9978 +76910 2025-10-31 17:04:11.280342+00 2025-10-31 17:04:11.280354+00 f t 80000.00 1 80000.00 11089 173 \N 9980 +77127 2025-11-01 01:39:09.821022+00 2025-11-01 01:39:09.821031+00 f t 46000.00 1 46000.00 11144 82 \N 10025 +77198 2025-11-01 07:53:47.095052+00 2025-11-01 07:53:47.095067+00 f t 31500.00 1 31500.00 11159 111 \N 10036 +77199 2025-11-01 07:53:47.104148+00 2025-11-01 07:53:47.104156+00 f t 11000.00 1 11000.00 11159 116 \N 10036 +77218 2025-11-01 10:32:10.984258+00 2025-11-01 10:32:10.984266+00 f t 24000.00 1 24000.00 11163 163 \N 10041 +77219 2025-11-01 10:32:10.991809+00 2025-11-01 10:32:10.991818+00 f t 46000.00 1 46000.00 11163 82 \N 10041 +76931 2025-10-31 17:07:06.855024+00 2025-10-31 17:07:06.855033+00 f t 24000.00 1 24000.00 11093 88 \N 9984 +76932 2025-10-31 17:07:06.86382+00 2025-10-31 17:07:06.863829+00 f t 24000.00 1 24000.00 11093 163 \N 9984 +76933 2025-10-31 17:07:06.868302+00 2025-10-31 17:07:06.868308+00 f t 46000.00 1 46000.00 11093 82 \N 9984 +76936 2025-10-31 17:12:40.427862+00 2025-10-31 17:12:40.427871+00 f t 80000.00 1 80000.00 11094 173 \N 9985 +76937 2025-10-31 17:14:09.747933+00 2025-10-31 17:14:09.747942+00 f t 93750.00 1 93750.00 11095 90 \N 2626 +76938 2025-10-31 17:14:09.759081+00 2025-10-31 17:14:09.75909+00 f t 46000.00 1 46000.00 11095 82 \N 2626 +76939 2025-10-31 17:16:52.559899+00 2025-10-31 17:16:52.559907+00 f t 60000.00 1 60000.00 11096 101 \N 8031 +76941 2025-10-31 17:26:40.564281+00 2025-10-31 17:26:40.564294+00 f t 80000.00 1 80000.00 11098 173 \N 9986 +77306 2025-11-01 14:57:10.223011+00 2025-11-01 14:57:10.22302+00 f t 55000.00 1 55000.00 11189 84 \N 10060 +76945 2025-10-31 18:11:03.046054+00 2025-10-31 18:11:03.046064+00 f t 107000.00 1 107000.00 11099 103 \N 9987 +77316 2025-11-01 15:46:03.658944+00 2025-11-01 15:46:03.658953+00 f t 8000.00 1 8000.00 11196 85 \N 10065 +77317 2025-11-01 15:46:03.667019+00 2025-11-01 15:46:03.667027+00 f t 46000.00 1 46000.00 11196 82 \N 10065 +77325 2025-11-01 16:44:31.768284+00 2025-11-01 16:44:31.768293+00 f t 88000.00 1 88000.00 11203 167 \N 10069 +76956 2025-10-31 18:13:18.536557+00 2025-10-31 18:13:18.536566+00 f t 46000.00 1 46000.00 11088 82 \N 9979 +76957 2025-10-31 18:13:18.545378+00 2025-10-31 18:13:18.545387+00 f t 46000.00 1 46000.00 11088 82 \N 9988 +76958 2025-10-31 18:13:18.550218+00 2025-10-31 18:13:18.550225+00 f t 8000.00 1 8000.00 11088 85 \N 9979 +76959 2025-10-31 18:13:18.554523+00 2025-10-31 18:13:18.554529+00 f t 8000.00 1 8000.00 11088 85 \N 9988 +76960 2025-10-31 18:13:18.559161+00 2025-10-31 18:13:18.559168+00 f t 24000.00 1 24000.00 11088 163 \N 9988 +76961 2025-10-31 18:13:18.563541+00 2025-10-31 18:13:18.563546+00 f t 24000.00 1 24000.00 11088 163 \N 9979 +76962 2025-10-31 18:52:23.292204+00 2025-10-31 18:52:23.292213+00 f t 46000.00 1 46000.00 11101 82 \N 9989 +77344 2025-11-01 17:31:08.937227+00 2025-11-01 17:31:08.93724+00 f t 8000.00 1 8000.00 11207 85 \N 10070 +77345 2025-11-01 17:31:08.94626+00 2025-11-01 17:31:08.946266+00 f t 46000.00 1 46000.00 11207 82 \N 10070 +77358 2025-11-01 19:44:37.495297+00 2025-11-01 19:44:37.495751+00 f t 55000.00 1 55000.00 11216 84 \N 10076 +77361 2025-11-01 19:51:43.805534+00 2025-11-01 19:51:43.805542+00 f t 30000.00 1 30000.00 11217 83 \N 9921 +76974 2025-10-31 19:06:43.243081+00 2025-10-31 19:06:43.243089+00 f t 30000.00 1 30000.00 11102 83 \N 9990 +76976 2025-10-31 20:02:37.453463+00 2025-10-31 20:02:37.45348+00 f t 69000.00 1 69000.00 11104 82 \N 9991 +77382 2025-11-01 20:40:22.285839+00 2025-11-01 20:40:22.285848+00 f t 29000.00 1 29000.00 11224 139 \N 10082 +76978 2025-10-31 20:11:11.540746+00 2025-10-31 20:11:11.54076+00 f t 46000.00 1 46000.00 11105 82 \N 9992 +76979 2025-10-31 20:11:11.551295+00 2025-10-31 20:11:11.551306+00 f t 7700.00 1 7700.00 11105 93 \N 9992 +76980 2025-10-31 20:34:53.085247+00 2025-10-31 20:34:53.085259+00 f t 55000.00 1 55000.00 11108 84 \N 9995 +77383 2025-11-01 20:40:22.293668+00 2025-11-01 20:40:22.293675+00 f t 46000.00 1 46000.00 11224 82 \N 10082 +77390 2025-11-01 21:35:37.940761+00 2025-11-01 21:35:37.94107+00 f t 55000.00 1 55000.00 11228 84 \N 10086 +77393 2025-11-01 21:38:55.05771+00 2025-11-01 21:38:55.058611+00 f t 55000.00 1 55000.00 11229 84 \N 10087 +77396 2025-11-01 22:22:56.439496+00 2025-11-01 22:22:56.439505+00 f t 55000.00 1 55000.00 11231 84 \N 10089 +77402 2025-11-01 23:15:57.823091+00 2025-11-01 23:15:57.8231+00 f t 46000.00 1 46000.00 11233 82 \N 10090 +77409 2025-11-02 00:21:38.237736+00 2025-11-02 00:21:38.237747+00 f t 24000.00 1 24000.00 11235 163 \N 10092 +77410 2025-11-02 00:21:38.247128+00 2025-11-02 00:21:38.247173+00 f t 46000.00 1 46000.00 11235 82 \N 10092 +77417 2025-11-02 10:31:53.675688+00 2025-11-02 10:31:53.675696+00 f t 46000.00 1 46000.00 11236 82 \N 10093 +76991 2025-10-31 21:45:20.779207+00 2025-10-31 21:45:20.779215+00 f t 46000.00 1 46000.00 11110 82 \N 9996 +76992 2025-10-31 21:45:20.786706+00 2025-10-31 21:45:20.786713+00 f t 24000.00 1 24000.00 11110 163 \N 9996 +76993 2025-10-31 21:45:49.50035+00 2025-10-31 21:45:49.500358+00 f t 46000.00 1 46000.00 11111 82 \N 9997 +77418 2025-11-02 10:31:53.684908+00 2025-11-02 10:31:53.68492+00 f t 1000.00 1 1000.00 11236 170 \N 10093 +77419 2025-11-02 10:31:53.689828+00 2025-11-02 10:31:53.689838+00 f t 87500.00 1 87500.00 11236 144 \N 10093 +76997 2025-10-31 21:47:52.472751+00 2025-10-31 21:47:52.47276+00 f t 46000.00 1 46000.00 11113 82 \N 9998 +77433 2025-11-02 11:17:01.334082+00 2025-11-02 11:17:01.334092+00 f t 23000.00 1 23000.00 11237 172 \N 10094 +77005 2025-10-31 22:15:56.121301+00 2025-10-31 22:15:56.121313+00 f t 55000.00 1 55000.00 11115 84 \N 9998 +77440 2025-11-02 13:01:14.951208+00 2025-11-02 13:01:14.951217+00 f t 24000.00 1 24000.00 11241 163 \N 10098 +77441 2025-11-02 13:01:14.960402+00 2025-11-02 13:01:14.96041+00 f t 46000.00 1 46000.00 11241 82 \N 10098 +77011 2025-10-31 22:21:28.582044+00 2025-10-31 22:21:28.582053+00 f t 72500.00 1 72500.00 11116 104 \N 9999 +77446 2025-11-02 14:04:13.289547+00 2025-11-02 14:04:13.289555+00 f t 24000.00 1 24000.00 11243 86 \N 10099 +77447 2025-11-02 14:04:13.297522+00 2025-11-02 14:04:13.29753+00 f t 46000.00 1 46000.00 11243 82 \N 10099 +77457 2025-11-02 17:50:25.695399+00 2025-11-02 17:50:25.695407+00 f t 55000.00 1 55000.00 11248 84 \N 5457 +77021 2025-10-31 22:39:03.48335+00 2025-10-31 22:39:03.483362+00 f t 46000.00 1 46000.00 11118 82 \N 10002 +77023 2025-10-31 22:47:34.643515+00 2025-10-31 22:47:34.643524+00 f t 30000.00 1 30000.00 11120 83 \N 9364 +77024 2025-10-31 22:55:37.739735+00 2025-10-31 22:55:37.739747+00 f t 46000.00 1 46000.00 11122 82 \N 10005 +77026 2025-10-31 23:02:21.661605+00 2025-10-31 23:02:21.661614+00 f t 55000.00 1 55000.00 11124 84 \N 10006 +77027 2025-10-31 23:05:03.704408+00 2025-10-31 23:05:03.704422+00 f t 46000.00 1 46000.00 11125 82 \N 10007 +77475 2025-11-02 18:07:53.710648+00 2025-11-02 18:07:53.710657+00 f t 46000.00 1 46000.00 11250 82 \N 10102 +77507 2025-11-02 18:19:30.395911+00 2025-11-02 18:19:30.395919+00 f t 46000.00 1 46000.00 11252 82 \N 10104 +77509 2025-11-02 19:03:46.937314+00 2025-11-02 19:03:46.937326+00 f t 55000.00 1 55000.00 11173 84 \N 10049 +77084 2025-10-31 23:21:13.30156+00 2025-10-31 23:21:13.30157+00 f t 46000.00 1 46000.00 11128 82 \N 10009 +77085 2025-10-31 23:21:13.310058+00 2025-10-31 23:21:13.310066+00 f t 8000.00 1 8000.00 11128 85 \N 10009 +77086 2025-10-31 23:21:13.314705+00 2025-10-31 23:21:13.314712+00 f t 46000.00 1 46000.00 11128 82 \N 10010 +77087 2025-10-31 23:21:13.319414+00 2025-10-31 23:21:13.31942+00 f t 8000.00 1 8000.00 11128 85 \N 10010 +77088 2025-10-31 23:21:13.323659+00 2025-10-31 23:21:13.323665+00 f t 46000.00 1 46000.00 11128 82 \N 10011 +77089 2025-10-31 23:21:13.327992+00 2025-10-31 23:21:13.327998+00 f t 8000.00 1 8000.00 11128 85 \N 10011 +77525 2025-11-02 19:50:17.205831+00 2025-11-02 19:50:17.205838+00 f t 15400.00 1 15400.00 11256 92 \N 2626 +85602 2025-11-18 00:11:44.128968+00 2025-11-18 00:11:44.128977+00 f t 46000.00 1 46000.00 12639 82 \N 11148 +77531 2025-11-02 21:09:59.812073+00 2025-11-02 21:09:59.812082+00 f t 46000.00 1 46000.00 11257 82 \N 10107 +77532 2025-11-03 01:35:39.694494+00 2025-11-03 01:35:39.694503+00 f t 8000.00 1 8000.00 11262 85 \N 10111 +77533 2025-11-03 01:35:39.702598+00 2025-11-03 01:35:39.702605+00 f t 46000.00 1 46000.00 11262 82 \N 10111 +77535 2025-11-03 03:09:47.778731+00 2025-11-03 03:09:47.778741+00 f t 55000.00 1 55000.00 11263 84 \N 10112 +82797 2025-11-12 22:30:48.631243+00 2025-11-12 22:30:48.631251+00 f t 85000.00 1 85000.00 12191 108 \N 10834 +82940 2025-11-13 03:17:48.68125+00 2025-11-13 03:17:48.681258+00 f t 72500.00 1 72500.00 12208 104 \N 10848 +82941 2025-11-13 03:17:48.689401+00 2025-11-13 03:17:48.689409+00 f t 46000.00 1 46000.00 12208 82 \N 10848 +82960 2025-11-13 13:20:58.606327+00 2025-11-13 13:20:58.606338+00 f t 55000.00 1 55000.00 12225 84 \N 10859 +77585 2025-11-03 10:01:15.803528+00 2025-11-03 10:01:15.803536+00 f t 55000.00 1 55000.00 11265 84 \N 10114 +77605 2025-11-03 10:12:07.458314+00 2025-11-03 10:12:07.458323+00 f t 55000.00 1 55000.00 11266 84 \N 10115 +77609 2025-11-03 12:46:39.503861+00 2025-11-03 12:46:39.50387+00 f t 30000.00 1 30000.00 11267 83 \N 10116 +77610 2025-11-03 13:22:15.759298+00 2025-11-03 13:22:15.759307+00 f t 46000.00 1 46000.00 11255 82 \N 10106 +77611 2025-11-03 13:22:15.768695+00 2025-11-03 13:22:15.768706+00 f t 24000.00 1 24000.00 11255 163 \N 10106 +77612 2025-11-03 13:22:15.775213+00 2025-11-03 13:22:15.775221+00 f t 8000.00 1 8000.00 11255 85 \N 10106 +77618 2025-11-03 14:00:03.460209+00 2025-11-03 14:00:03.460223+00 f t 107000.00 1 107000.00 11272 103 \N 6006 +77621 2025-11-03 14:30:21.312165+00 2025-11-03 14:30:21.312174+00 f t 55000.00 1 55000.00 11277 84 \N 9921 +77622 2025-11-03 14:36:14.702326+00 2025-11-03 14:36:14.702335+00 f t 24000.00 1 24000.00 11278 87 \N 6193 +77623 2025-11-03 14:36:14.710199+00 2025-11-03 14:36:14.710206+00 f t 46000.00 1 46000.00 11278 82 \N 6193 +77625 2025-11-03 14:51:53.050473+00 2025-11-03 14:51:53.050483+00 f t 46000.00 1 46000.00 11280 82 \N 10121 +77626 2025-11-03 14:58:17.469239+00 2025-11-03 14:58:17.469248+00 f t 78000.00 1 78000.00 11281 106 \N 10122 +77627 2025-11-03 15:02:59.783668+00 2025-11-03 15:02:59.783676+00 f t 55000.00 1 55000.00 11274 84 \N 8763 +77628 2025-11-03 15:02:59.791853+00 2025-11-03 15:02:59.791861+00 f t 55000.00 1 55000.00 11274 84 \N 10123 +77630 2025-11-03 15:30:10.883199+00 2025-11-03 15:30:10.883214+00 f t 46000.00 1 46000.00 11284 82 \N 10125 +77631 2025-11-03 15:31:32.288817+00 2025-11-03 15:31:32.288825+00 f t 24000.00 1 24000.00 11285 86 \N 10126 +77632 2025-11-03 15:31:32.296752+00 2025-11-03 15:31:32.29676+00 f t 46000.00 1 46000.00 11285 82 \N 10126 +77633 2025-11-03 15:37:01.829315+00 2025-11-03 15:37:01.829325+00 f t 55000.00 1 55000.00 11286 84 \N 10127 +77636 2025-11-03 15:37:11.280758+00 2025-11-03 15:37:11.280767+00 f t 46000.00 1 46000.00 11283 82 \N 10124 +77637 2025-11-03 15:37:11.289078+00 2025-11-03 15:37:11.289087+00 f t 24000.00 1 24000.00 11283 86 \N 10124 +77638 2025-11-03 15:37:11.293701+00 2025-11-03 15:37:11.293708+00 f t 8000.00 1 8000.00 11283 85 \N 10124 +77639 2025-11-03 15:41:00.217623+00 2025-11-03 15:41:00.217637+00 f t 55000.00 1 55000.00 11276 84 \N 10119 +77703 2025-11-03 15:45:42.752773+00 2025-11-03 15:45:42.752788+00 f t 46000.00 1 46000.00 11271 82 \N 10118 +77704 2025-11-03 15:45:42.762657+00 2025-11-03 15:45:42.762666+00 f t 46000.00 1 46000.00 11271 82 \N 10117 +77705 2025-11-03 15:45:42.767295+00 2025-11-03 15:45:42.767303+00 f t 33000.00 1 33000.00 11271 123 \N 10117 +77706 2025-11-03 15:45:42.772274+00 2025-11-03 15:45:42.772282+00 f t 8000.00 1 8000.00 11271 85 \N 10117 +77707 2025-11-03 15:45:42.776879+00 2025-11-03 15:45:42.776885+00 f t 8000.00 1 8000.00 11271 85 \N 10118 +77708 2025-11-03 15:45:42.781077+00 2025-11-03 15:45:42.781084+00 f t 24000.00 1 24000.00 11271 163 \N 10117 +77709 2025-11-03 15:45:42.785322+00 2025-11-03 15:45:42.785328+00 f t 24000.00 1 24000.00 11271 163 \N 10118 +77710 2025-11-03 15:45:42.789598+00 2025-11-03 15:45:42.789607+00 f t 33000.00 1 33000.00 11271 124 \N 10118 +77711 2025-11-03 15:45:50.59606+00 2025-11-03 15:45:50.596069+00 f t 40500.00 1 40500.00 11288 135 \N 10128 +77712 2025-11-03 15:45:50.605332+00 2025-11-03 15:45:50.605343+00 f t 46000.00 1 46000.00 11288 82 \N 10128 +77715 2025-11-03 15:46:00.199598+00 2025-11-03 15:46:00.199607+00 f t 80000.00 1 80000.00 11269 173 \N 9875 +77718 2025-11-03 15:46:13.588071+00 2025-11-03 15:46:13.588084+00 f t 7700.00 1 7700.00 11289 91 \N 10129 +77719 2025-11-03 15:46:13.597675+00 2025-11-03 15:46:13.597686+00 f t 46000.00 1 46000.00 11289 82 \N 10129 +77722 2025-11-03 16:09:01.689706+00 2025-11-03 16:09:01.68972+00 f t 46000.00 1 46000.00 11292 82 \N 10133 +77740 2025-11-03 16:14:35.564559+00 2025-11-03 16:14:35.564568+00 f t 46000.00 1 46000.00 11293 82 \N 10134 +77741 2025-11-03 16:14:35.572449+00 2025-11-03 16:14:35.572467+00 f t 8000.00 1 8000.00 11293 85 \N 10134 +77742 2025-11-03 16:14:35.578801+00 2025-11-03 16:14:35.578809+00 f t 24000.00 1 24000.00 11293 86 \N 10134 +77743 2025-11-03 16:14:35.583715+00 2025-11-03 16:14:35.583723+00 f t 24000.00 1 24000.00 11293 87 \N 10134 +77753 2025-11-03 16:30:58.37042+00 2025-11-03 16:30:58.370429+00 f t 46000.00 1 46000.00 11294 82 \N 10135 +77756 2025-11-03 16:45:09.573881+00 2025-11-03 16:45:09.573891+00 f t 46000.00 1 46000.00 11295 82 \N 10136 +77757 2025-11-03 16:45:09.584768+00 2025-11-03 16:45:09.584784+00 f t 24000.00 1 24000.00 11295 163 \N 10136 +77758 2025-11-03 16:47:21.627576+00 2025-11-03 16:47:21.627585+00 f t 55000.00 1 55000.00 11297 84 \N 10060 +77759 2025-11-03 16:55:58.635069+00 2025-11-03 16:55:58.635078+00 f t 24000.00 1 24000.00 11299 163 \N 10138 +77760 2025-11-03 16:55:58.643327+00 2025-11-03 16:55:58.643336+00 f t 46000.00 1 46000.00 11299 82 \N 10138 +77761 2025-11-03 17:00:12.699565+00 2025-11-03 17:00:12.699581+00 f t 55000.00 1 55000.00 11298 84 \N 10137 +77772 2025-11-03 17:25:50.842697+00 2025-11-03 17:25:50.842706+00 f t 46000.00 1 46000.00 11301 82 \N 10140 +77775 2025-11-03 17:30:34.484924+00 2025-11-03 17:30:34.484933+00 f t 46000.00 1 46000.00 11303 82 \N 10141 +77776 2025-11-03 17:30:34.49468+00 2025-11-03 17:30:34.494689+00 f t 33000.00 1 33000.00 11303 123 \N 10141 +77782 2025-11-03 17:48:37.316363+00 2025-11-03 17:48:37.316376+00 f t 55000.00 1 55000.00 11304 84 \N 10142 +77785 2025-11-03 17:50:31.453637+00 2025-11-03 17:50:31.453646+00 f t 80000.00 1 80000.00 11305 173 \N 10143 +77787 2025-11-03 18:01:58.645856+00 2025-11-03 18:01:58.645864+00 f t 55000.00 1 55000.00 11306 84 \N 10144 +77803 2025-11-03 18:06:20.468364+00 2025-11-03 18:06:20.468376+00 f t 88000.00 1 88000.00 11307 167 \N 10145 +77808 2025-11-03 18:08:29.371463+00 2025-11-03 18:08:29.371471+00 f t 88000.00 1 88000.00 11308 167 \N 10147 +77809 2025-11-03 18:17:26.684271+00 2025-11-03 18:17:26.684283+00 f t 78000.00 1 78000.00 11310 106 \N 9611 +85566 2025-11-17 22:04:24.804622+00 2025-11-17 22:04:24.804631+00 f t 8000.00 1 8000.00 12618 85 \N 11174 +77821 2025-11-03 18:22:36.057322+00 2025-11-03 18:22:36.057331+00 f t 46000.00 1 46000.00 11311 82 \N 10148 +77822 2025-11-03 18:32:47.500944+00 2025-11-03 18:32:47.500953+00 f t 30000.00 1 30000.00 11313 83 \N 9712 +79908 2025-11-07 12:53:26.388035+00 2025-11-07 12:53:26.388046+00 f t 46000.00 1 46000.00 11646 82 \N 10405 +77826 2025-11-03 18:38:00.860095+00 2025-11-03 18:38:00.860105+00 f t 60000.00 1 60000.00 11314 169 \N 10149 +77827 2025-11-03 18:41:59.629933+00 2025-11-03 18:41:59.629942+00 f t 55000.00 1 55000.00 11309 84 \N 10146 +77828 2025-11-03 19:04:04.629478+00 2025-11-03 19:04:04.629488+00 f t 45000.00 1 45000.00 11316 168 \N 7319 +77829 2025-11-03 19:52:39.837039+00 2025-11-03 19:52:39.837049+00 f t 46000.00 1 46000.00 11320 82 \N 10151 +77830 2025-11-03 20:02:07.992645+00 2025-11-03 20:02:07.992654+00 f t 13200.00 1 13200.00 11321 146 \N 8891 +77831 2025-11-03 20:35:28.126302+00 2025-11-03 20:35:28.126314+00 f t 55000.00 1 55000.00 11323 84 \N 10152 +77832 2025-11-03 22:27:20.772689+00 2025-11-03 22:27:20.772698+00 f t 55000.00 1 55000.00 11326 84 \N 10154 +77833 2025-11-03 22:38:57.078271+00 2025-11-03 22:38:57.07828+00 f t 30000.00 1 30000.00 11327 83 \N 10155 +79909 2025-11-07 12:53:26.395786+00 2025-11-07 12:53:26.395793+00 f t 8000.00 1 8000.00 11646 85 \N 10405 +79910 2025-11-07 12:53:26.399951+00 2025-11-07 12:53:26.399957+00 f t 46000.00 1 46000.00 11646 82 \N 10407 +79911 2025-11-07 12:53:26.404065+00 2025-11-07 12:53:26.404071+00 f t 8000.00 1 8000.00 11646 85 \N 10407 +79912 2025-11-07 12:53:26.409729+00 2025-11-07 12:53:26.409737+00 f t 46000.00 1 46000.00 11646 82 \N 10408 +79913 2025-11-07 12:53:26.415493+00 2025-11-07 12:53:26.415501+00 f t 8000.00 1 8000.00 11646 85 \N 10408 +79914 2025-11-07 12:53:26.420237+00 2025-11-07 12:53:26.420243+00 f t 46000.00 1 46000.00 11646 82 \N 10409 +79915 2025-11-07 12:53:26.42464+00 2025-11-07 12:53:26.424646+00 f t 8000.00 1 8000.00 11646 85 \N 10409 +77873 2025-11-03 23:08:35.470305+00 2025-11-03 23:08:35.470314+00 f t 55000.00 1 55000.00 11328 84 \N 10156 +77874 2025-11-03 23:11:16.398924+00 2025-11-03 23:11:16.398933+00 f t 87500.00 1 87500.00 11319 144 \N 10150 +77875 2025-11-03 23:11:16.406768+00 2025-11-03 23:11:16.406778+00 f t 46000.00 1 46000.00 11319 82 \N 10150 +77878 2025-11-03 23:18:06.987124+00 2025-11-03 23:18:06.987163+00 f t 8000.00 1 8000.00 11329 85 \N 10157 +77879 2025-11-03 23:18:06.998447+00 2025-11-03 23:18:06.998459+00 f t 46000.00 1 46000.00 11329 82 \N 10157 +77880 2025-11-03 23:24:28.224337+00 2025-11-03 23:24:28.224349+00 f t 8000.00 1 8000.00 11331 85 \N 10159 +77881 2025-11-03 23:24:28.233922+00 2025-11-03 23:24:28.233929+00 f t 46000.00 1 46000.00 11331 82 \N 10159 +77882 2025-11-03 23:57:51.813907+00 2025-11-03 23:57:51.813916+00 f t 1000.00 1 1000.00 11334 170 \N 10150 +77883 2025-11-03 23:57:51.822902+00 2025-11-03 23:57:51.822914+00 f t 46000.00 1 46000.00 11334 82 \N 10150 +77893 2025-11-04 00:18:03.762466+00 2025-11-04 00:18:03.762475+00 f t 78000.00 1 78000.00 11337 106 \N 10166 +77896 2025-11-04 01:07:25.300125+00 2025-11-04 01:07:25.300137+00 f t 55000.00 1 55000.00 11340 84 \N 5373 +77898 2025-11-04 01:35:08.730512+00 2025-11-04 01:35:08.730521+00 f t 78000.00 1 78000.00 11342 106 \N 10168 +77906 2025-11-04 01:37:11.703405+00 2025-11-04 01:37:11.703414+00 f t 55000.00 1 55000.00 11344 84 \N 10170 +77961 2025-11-04 01:39:01.988183+00 2025-11-04 01:39:01.988199+00 f t 46000.00 1 46000.00 11343 82 \N 10169 +77962 2025-11-04 01:39:02.012996+00 2025-11-04 01:39:02.013011+00 f t 8000.00 1 8000.00 11343 85 \N 10169 +77963 2025-11-04 01:39:02.023393+00 2025-11-04 01:39:02.023408+00 f t 46000.00 1 46000.00 11343 82 \N 10171 +77964 2025-11-04 01:39:02.032878+00 2025-11-04 01:39:02.032892+00 f t 8000.00 1 8000.00 11343 85 \N 10171 +77965 2025-11-04 01:39:02.042734+00 2025-11-04 01:39:02.042747+00 f t 46000.00 1 46000.00 11343 82 \N 10172 +77966 2025-11-04 01:39:02.052116+00 2025-11-04 01:39:02.052128+00 f t 8000.00 1 8000.00 11343 85 \N 10172 +77986 2025-11-04 02:12:35.039593+00 2025-11-04 02:12:35.039602+00 f t 107000.00 1 107000.00 11346 103 \N 10173 +77989 2025-11-04 03:05:53.982351+00 2025-11-04 03:05:53.98236+00 f t 46000.00 1 46000.00 11348 82 \N 10175 +78009 2025-11-04 03:11:30.752058+00 2025-11-04 03:11:30.752068+00 f t 46000.00 1 46000.00 11349 82 \N 10176 +78021 2025-11-04 03:31:19.292276+00 2025-11-04 03:31:19.292286+00 f t 8000.00 1 8000.00 11351 85 \N 10178 +78022 2025-11-04 03:31:19.300088+00 2025-11-04 03:31:19.300095+00 f t 46000.00 1 46000.00 11351 82 \N 10178 +78032 2025-11-04 03:33:55.338074+00 2025-11-04 03:33:55.338087+00 f t 8000.00 1 8000.00 11353 85 \N 10180 +78033 2025-11-04 03:33:55.349169+00 2025-11-04 03:33:55.349178+00 f t 24000.00 1 24000.00 11353 88 \N 10180 +78034 2025-11-04 03:33:55.353906+00 2025-11-04 03:33:55.353913+00 f t 46000.00 1 46000.00 11353 82 \N 10180 +78035 2025-11-04 05:07:35.09465+00 2025-11-04 05:07:35.094659+00 f t 46000.00 1 46000.00 11354 82 \N 10181 +78041 2025-11-04 09:39:25.947677+00 2025-11-04 09:39:25.947685+00 f t 55000.00 1 55000.00 11356 84 \N 10183 +78049 2025-11-04 10:30:46.033001+00 2025-11-04 10:30:46.033011+00 f t 55000.00 1 55000.00 11357 84 \N 10184 +78050 2025-11-04 10:34:36.613158+00 2025-11-04 10:34:36.61317+00 f t 55000.00 1 55000.00 11358 84 \N 10185 +78068 2025-11-04 11:20:53.565748+00 2025-11-04 11:20:53.565757+00 f t 46000.00 1 46000.00 11360 82 \N 10187 +78069 2025-11-04 11:20:53.574107+00 2025-11-04 11:20:53.574115+00 f t 24000.00 1 24000.00 11360 86 \N 10187 +78070 2025-11-04 11:20:53.578632+00 2025-11-04 11:20:53.578639+00 f t 24000.00 1 24000.00 11360 87 \N 10187 +78071 2025-11-04 11:20:53.583099+00 2025-11-04 11:20:53.583105+00 f t 8000.00 1 8000.00 11360 85 \N 10187 +78072 2025-11-04 12:41:42.124014+00 2025-11-04 12:41:42.124023+00 f t 55000.00 1 55000.00 11361 84 \N 10188 +78074 2025-11-04 13:09:55.013662+00 2025-11-04 13:09:55.013671+00 f t 80000.00 1 80000.00 11362 173 \N 10189 +78078 2025-11-04 13:14:54.908103+00 2025-11-04 13:14:54.908112+00 f t 55000.00 1 55000.00 11350 84 \N 10177 +78081 2025-11-04 13:37:54.811083+00 2025-11-04 13:37:54.811092+00 f t 46000.00 1 46000.00 11364 82 \N 10190 +78082 2025-11-04 13:37:54.819043+00 2025-11-04 13:37:54.819052+00 f t 8000.00 1 8000.00 11364 85 \N 10190 +78083 2025-11-04 14:05:53.565313+00 2025-11-04 14:05:53.565323+00 f t 78000.00 1 78000.00 11367 106 \N 10192 +78090 2025-11-04 14:27:03.586014+00 2025-11-04 14:27:03.586024+00 f t 46000.00 1 46000.00 11368 82 \N 10193 +78091 2025-11-04 14:27:03.593793+00 2025-11-04 14:27:03.5938+00 f t 24000.00 1 24000.00 11368 86 \N 10193 +78093 2025-11-04 14:36:36.017417+00 2025-11-04 14:36:36.017427+00 f t 30000.00 1 30000.00 11370 83 \N 10194 +78098 2025-11-04 14:37:27.98559+00 2025-11-04 14:37:27.9856+00 f t 55000.00 1 55000.00 11371 84 \N 10195 +78099 2025-11-04 14:37:27.993752+00 2025-11-04 14:37:27.993761+00 f t 8000.00 1 8000.00 11371 85 \N 10196 +78100 2025-11-04 14:37:27.998533+00 2025-11-04 14:37:27.998544+00 f t 46000.00 1 46000.00 11371 82 \N 10196 +78105 2025-11-04 14:49:41.18335+00 2025-11-04 14:49:41.183369+00 f t 88000.00 1 88000.00 11366 167 \N 9875 +78106 2025-11-04 14:51:16.165207+00 2025-11-04 14:51:16.165216+00 f t 75000.00 1 75000.00 11373 142 \N 10198 +78107 2025-11-04 14:51:16.174251+00 2025-11-04 14:51:16.174259+00 f t 46000.00 1 46000.00 11373 82 \N 10198 +78108 2025-11-04 14:58:58.449193+00 2025-11-04 14:58:58.449201+00 f t 45000.00 1 45000.00 11375 83 \N 10199 +78109 2025-11-04 14:59:53.115322+00 2025-11-04 14:59:53.115331+00 f t 55000.00 1 55000.00 11374 84 \N 6078 +78116 2025-11-04 15:02:11.823483+00 2025-11-04 15:02:11.823492+00 f t 16800.00 1 16800.00 11372 96 \N 10197 +78117 2025-11-04 15:02:11.83195+00 2025-11-04 15:02:11.831959+00 f t 46000.00 1 46000.00 11372 82 \N 10197 +82798 2025-11-12 23:20:00.798591+00 2025-11-12 23:20:00.7986+00 f t 46000.00 1 46000.00 12192 82 \N 10835 +78128 2025-11-04 15:03:18.529866+00 2025-11-04 15:03:18.529878+00 f t 16800.00 1 16800.00 11376 96 \N 10200 +78129 2025-11-04 15:03:18.542031+00 2025-11-04 15:03:18.542044+00 f t 46000.00 1 46000.00 11376 82 \N 10200 +78130 2025-11-04 15:05:25.376163+00 2025-11-04 15:05:25.376172+00 f t 16800.00 1 16800.00 11377 96 \N 10202 +78131 2025-11-04 15:05:25.384403+00 2025-11-04 15:05:25.384411+00 f t 46000.00 1 46000.00 11377 82 \N 10202 +78132 2025-11-04 15:13:19.129643+00 2025-11-04 15:13:19.129656+00 f t 46000.00 1 46000.00 11378 82 \N 10203 +78133 2025-11-04 15:19:49.381117+00 2025-11-04 15:19:49.381129+00 f t 24000.00 1 24000.00 11379 86 \N 10204 +78134 2025-11-04 15:19:49.391656+00 2025-11-04 15:19:49.391666+00 f t 46000.00 1 46000.00 11379 82 \N 10204 +79963 2025-11-07 15:56:23.030585+00 2025-11-07 15:56:23.030594+00 f t 30000.00 1 30000.00 11662 83 \N 10420 +79993 2025-11-07 17:19:03.529458+00 2025-11-07 17:19:03.529467+00 f t 88000.00 1 88000.00 11670 167 \N 10425 +80000 2025-11-07 17:53:05.677894+00 2025-11-07 17:53:05.677903+00 f t 46000.00 1 46000.00 11672 82 \N 10426 +80001 2025-11-07 17:53:05.687602+00 2025-11-07 17:53:05.687611+00 f t 78000.00 1 78000.00 11672 106 \N 10426 +80002 2025-11-07 17:53:05.692908+00 2025-11-07 17:53:05.692919+00 f t 85000.00 1 85000.00 11672 108 \N 10426 +82933 2025-11-13 01:04:27.301599+00 2025-11-13 01:04:27.301609+00 f t 55000.00 1 55000.00 12202 84 \N 10844 +80018 2025-11-07 18:50:50.643986+00 2025-11-07 18:50:50.643996+00 f t 75000.00 1 75000.00 11677 142 \N 10431 +80019 2025-11-07 18:50:50.654778+00 2025-11-07 18:50:50.654788+00 f t 46000.00 1 46000.00 11677 82 \N 10431 +80027 2025-11-07 19:01:12.639085+00 2025-11-07 19:01:12.639094+00 f t 46000.00 1 46000.00 11681 82 \N 10434 +80028 2025-11-07 19:01:12.648154+00 2025-11-07 19:01:12.648166+00 f t 29000.00 1 29000.00 11681 139 \N 10434 +82961 2025-11-13 13:27:09.394215+00 2025-11-13 13:27:09.394224+00 f t 87500.00 1 87500.00 12227 144 \N 9803 +82962 2025-11-13 13:27:09.403641+00 2025-11-13 13:27:09.403651+00 f t 46000.00 1 46000.00 12227 82 \N 9803 +80096 2025-11-07 19:27:08.0745+00 2025-11-07 19:27:08.07451+00 f t 85000.00 1 85000.00 11688 108 \N 10439 +83027 2025-11-13 14:57:24.99169+00 2025-11-13 14:57:24.991699+00 f t 55000.00 1 55000.00 12237 84 \N 10869 +80134 2025-11-07 20:56:36.964476+00 2025-11-07 20:56:36.964486+00 f t 55000.00 1 55000.00 11690 84 \N 10441 +80139 2025-11-07 21:37:45.934163+00 2025-11-07 21:37:45.934174+00 f t 46000.00 1 46000.00 11692 82 \N 10442 +80151 2025-11-07 22:41:50.770953+00 2025-11-07 22:41:50.770962+00 f t 30000.00 1 30000.00 11705 83 \N 5175 +83056 2025-11-13 16:32:42.557412+00 2025-11-13 16:32:42.557421+00 f t 88000.00 1 88000.00 12241 167 \N 10872 +83064 2025-11-13 16:55:12.944864+00 2025-11-13 16:55:12.944874+00 f t 1000.00 1 1000.00 12249 170 \N 10878 +83065 2025-11-13 16:55:12.953067+00 2025-11-13 16:55:12.953075+00 f t 46000.00 1 46000.00 12249 82 \N 10878 +83138 2025-11-13 18:57:17.056772+00 2025-11-13 18:57:17.056783+00 f t 46000.00 1 46000.00 12251 82 \N 10879 +83145 2025-11-13 19:27:45.882226+00 2025-11-13 19:27:45.882237+00 f t 78000.00 1 78000.00 12261 106 \N 10885 +83183 2025-11-13 21:40:09.060227+00 2025-11-13 21:40:09.060238+00 f t 8000.00 1 8000.00 12270 85 \N 10892 +83184 2025-11-13 21:40:09.070957+00 2025-11-13 21:40:09.070985+00 f t 46000.00 1 46000.00 12270 82 \N 10892 +83190 2025-11-13 22:37:57.172+00 2025-11-13 22:37:57.172009+00 f t 46000.00 1 46000.00 12275 82 \N 10897 +83281 2025-11-13 23:57:08.505227+00 2025-11-13 23:57:08.505236+00 f t 78000.00 1 78000.00 12291 106 \N 10908 +83302 2025-11-14 00:16:07.747437+00 2025-11-14 00:16:07.747446+00 f t 87000.00 1 87000.00 12292 165 \N 10909 +83311 2025-11-14 00:24:14.278595+00 2025-11-14 00:24:14.278604+00 f t 46000.00 1 46000.00 12296 82 \N 10913 +83315 2025-11-14 00:56:54.479294+00 2025-11-14 00:56:54.479302+00 f t 55000.00 1 55000.00 12300 84 \N 10916 +83384 2025-11-14 01:48:33.947159+00 2025-11-14 01:48:33.947171+00 f t 55000.00 1 55000.00 12311 84 \N 7289 +83393 2025-11-14 03:22:31.149902+00 2025-11-14 03:22:31.14991+00 f t 55000.00 1 55000.00 12320 84 \N 10929 +80599 2025-11-08 02:26:33.878408+00 2025-11-08 02:26:33.878418+00 f t 46000.00 1 46000.00 11723 82 \N 10466 +80600 2025-11-08 02:26:33.888069+00 2025-11-08 02:26:33.888077+00 f t 69000.00 1 69000.00 11723 141 \N 10466 +80625 2025-11-08 11:15:24.155203+00 2025-11-08 11:15:24.155217+00 f t 55000.00 1 55000.00 11731 84 \N 10473 +83483 2025-11-14 11:57:19.047113+00 2025-11-14 11:57:19.047124+00 f t 87000.00 1 87000.00 12333 165 \N 10939 +83487 2025-11-14 12:28:39.298919+00 2025-11-14 12:28:39.298928+00 f t 46000.00 1 46000.00 12339 82 \N 10944 +80639 2025-11-08 13:10:39.550519+00 2025-11-08 13:10:39.550529+00 f t 46000.00 1 46000.00 11735 82 \N 10476 +80640 2025-11-08 13:10:39.558871+00 2025-11-08 13:10:39.55888+00 f t 69000.00 1 69000.00 11735 141 \N 10476 +83493 2025-11-14 12:31:16.869282+00 2025-11-14 12:31:16.869295+00 f t 55000.00 1 55000.00 12340 84 \N 10945 +83499 2025-11-14 12:56:38.93505+00 2025-11-14 12:56:38.935059+00 f t 55000.00 1 55000.00 12342 84 \N 10947 +80674 2025-11-08 14:26:54.731674+00 2025-11-08 14:26:54.731684+00 f t 30000.00 1 30000.00 11746 83 \N 10485 +80705 2025-11-08 14:38:53.829521+00 2025-11-08 14:38:53.82953+00 f t 46000.00 1 46000.00 11748 82 \N 10489 +80709 2025-11-08 14:39:57.03943+00 2025-11-08 14:39:57.039441+00 f t 32500.00 1 32500.00 11743 112 \N 10483 +80732 2025-11-08 14:51:41.097313+00 2025-11-08 14:51:41.097325+00 f t 32500.00 1 32500.00 11750 112 \N 10492 +80733 2025-11-08 14:51:41.109063+00 2025-11-08 14:51:41.109074+00 f t 130000.00 1 130000.00 11750 164 \N 10492 +80735 2025-11-08 15:25:34.37417+00 2025-11-08 15:25:34.374179+00 f t 46000.00 1 46000.00 11752 82 \N 10495 +80754 2025-11-08 15:44:09.960166+00 2025-11-08 15:44:09.960179+00 f t 78000.00 1 78000.00 11756 106 \N 10497 +80764 2025-11-08 15:53:27.215978+00 2025-11-08 15:53:27.215992+00 f t 46000.00 1 46000.00 11758 82 \N 10499 +80765 2025-11-08 15:53:27.229486+00 2025-11-08 15:53:27.229497+00 f t 8000.00 1 8000.00 11758 85 \N 10499 +80773 2025-11-08 15:57:36.859396+00 2025-11-08 15:57:36.859407+00 f t 32500.00 1 32500.00 11759 112 \N 10500 +80781 2025-11-08 16:06:32.625967+00 2025-11-08 16:06:32.625976+00 f t 46000.00 1 46000.00 11761 82 \N 10501 +80782 2025-11-08 16:06:32.635024+00 2025-11-08 16:06:32.635033+00 f t 8000.00 1 8000.00 11761 85 \N 10501 +80783 2025-11-08 16:06:32.639818+00 2025-11-08 16:06:32.639824+00 f t 24000.00 1 24000.00 11761 163 \N 10501 +79917 2025-11-07 12:53:39.791647+00 2025-11-07 12:53:39.791656+00 f t 46000.00 1 46000.00 11647 82 \N 10410 +79942 2025-11-07 14:14:49.539901+00 2025-11-07 14:14:49.539909+00 f t 31500.00 1 31500.00 11649 111 \N 10411 +79943 2025-11-07 14:14:49.547796+00 2025-11-07 14:14:49.547804+00 f t 46000.00 1 46000.00 11649 82 \N 6190 +79944 2025-11-07 14:14:49.552669+00 2025-11-07 14:14:49.552678+00 f t 7700.00 1 7700.00 11649 93 \N 6190 +79945 2025-11-07 14:14:49.558409+00 2025-11-07 14:14:49.558419+00 f t 13200.00 1 13200.00 11649 146 \N 6190 +79964 2025-11-07 15:59:03.741645+00 2025-11-07 15:59:03.741658+00 f t 88000.00 1 88000.00 11663 167 \N 10421 +80020 2025-11-07 19:00:20.088562+00 2025-11-07 19:00:20.088575+00 f t 46000.00 1 46000.00 11679 82 \N 10433 +80029 2025-11-07 19:03:03.112987+00 2025-11-07 19:03:03.112997+00 f t 33000.00 1 33000.00 11684 123 \N 10436 +80030 2025-11-07 19:03:03.121712+00 2025-11-07 19:03:03.12172+00 f t 46000.00 1 46000.00 11684 82 \N 10436 +80073 2025-11-07 19:20:09.939032+00 2025-11-07 19:20:09.939041+00 f t 34000.00 1 34000.00 11686 110 \N 10437 +80074 2025-11-07 19:20:09.948514+00 2025-11-07 19:20:09.948525+00 f t 46000.00 1 46000.00 11686 82 \N 10437 +80075 2025-11-07 19:20:09.953821+00 2025-11-07 19:20:09.953828+00 f t 13200.00 1 13200.00 11686 146 \N 10437 +80076 2025-11-07 19:20:09.958583+00 2025-11-07 19:20:09.958589+00 f t 8000.00 1 8000.00 11686 85 \N 10437 +80077 2025-11-07 19:20:09.963413+00 2025-11-07 19:20:09.963421+00 f t 24000.00 1 24000.00 11686 163 \N 10437 +80112 2025-11-07 19:39:30.747904+00 2025-11-07 19:39:30.747913+00 f t 55000.00 1 55000.00 11673 84 \N 10427 +80113 2025-11-07 19:39:30.755642+00 2025-11-07 19:39:30.755651+00 f t 46000.00 1 46000.00 11673 82 \N 10428 +80114 2025-11-07 19:39:30.76028+00 2025-11-07 19:39:30.760286+00 f t 24000.00 1 24000.00 11673 163 \N 10428 +80115 2025-11-07 19:39:30.764812+00 2025-11-07 19:39:30.76482+00 f t 8000.00 1 8000.00 11673 85 \N 10428 +80140 2025-11-07 21:42:54.396978+00 2025-11-07 21:42:54.396989+00 f t 13200.00 1 13200.00 11693 146 \N 10146 +80168 2025-11-07 23:18:27.299804+00 2025-11-07 23:18:27.299811+00 f t 52500.00 1 52500.00 11710 114 \N 10453 +78313 2025-11-04 15:30:52.543058+00 2025-11-04 15:30:52.543071+00 f t 46000.00 1 46000.00 11381 82 \N 10207 +78314 2025-11-04 15:30:52.553994+00 2025-11-04 15:30:52.554006+00 f t 8000.00 1 8000.00 11381 85 \N 10207 +78315 2025-11-04 15:30:52.560267+00 2025-11-04 15:30:52.560276+00 f t 46000.00 1 46000.00 11381 82 \N 10208 +78316 2025-11-04 15:30:52.56541+00 2025-11-04 15:30:52.565421+00 f t 8000.00 1 8000.00 11381 85 \N 10208 +78317 2025-11-04 15:30:52.571893+00 2025-11-04 15:30:52.571901+00 f t 46000.00 1 46000.00 11381 82 \N 10209 +78318 2025-11-04 15:30:52.576776+00 2025-11-04 15:30:52.576786+00 f t 8000.00 1 8000.00 11381 85 \N 10209 +78319 2025-11-04 15:30:52.582378+00 2025-11-04 15:30:52.582386+00 f t 46000.00 1 46000.00 11381 82 \N 10211 +78320 2025-11-04 15:30:52.586846+00 2025-11-04 15:30:52.586853+00 f t 8000.00 1 8000.00 11381 85 \N 10211 +78341 2025-11-04 15:32:45.300447+00 2025-11-04 15:32:45.300459+00 f t 32500.00 1 32500.00 11382 112 \N 10210 +78342 2025-11-04 15:34:15.997944+00 2025-11-04 15:34:15.997954+00 f t 55000.00 1 55000.00 11383 84 \N 10177 +78343 2025-11-04 15:37:32.574315+00 2025-11-04 15:37:32.574325+00 f t 46000.00 1 46000.00 11384 82 \N 10212 +78344 2025-11-04 15:39:36.344569+00 2025-11-04 15:39:36.344578+00 f t 46000.00 1 46000.00 11363 82 \N 8399 +78345 2025-11-04 15:39:36.35531+00 2025-11-04 15:39:36.355318+00 f t 15400.00 1 15400.00 11363 92 \N 8399 +78353 2025-11-04 15:58:08.67036+00 2025-11-04 15:58:08.67037+00 f t 8000.00 1 8000.00 11385 85 \N 10213 +78354 2025-11-04 15:58:08.6791+00 2025-11-04 15:58:08.679108+00 f t 24000.00 1 24000.00 11385 86 \N 10213 +78355 2025-11-04 15:58:08.684412+00 2025-11-04 15:58:08.68442+00 f t 46000.00 1 46000.00 11385 82 \N 10213 +78356 2025-11-04 16:19:23.207202+00 2025-11-04 16:19:23.207211+00 f t 46000.00 1 46000.00 11386 82 \N 10214 +78360 2025-11-04 16:36:02.600767+00 2025-11-04 16:36:02.600781+00 f t 46000.00 1 46000.00 11387 82 \N 5971 +78361 2025-11-04 16:36:02.613455+00 2025-11-04 16:36:02.613468+00 f t 7700.00 1 7700.00 11387 93 \N 5971 +78362 2025-11-04 16:36:02.62114+00 2025-11-04 16:36:02.62115+00 f t 13200.00 1 13200.00 11387 146 \N 5971 +78363 2025-11-04 17:05:29.017119+00 2025-11-04 17:05:29.017129+00 f t 13200.00 1 13200.00 11390 146 \N 5971 +78364 2025-11-04 17:09:13.36227+00 2025-11-04 17:09:13.362285+00 f t 75000.00 1 75000.00 11391 108 \N 10217 +78371 2025-11-04 17:11:46.480202+00 2025-11-04 17:11:46.48021+00 f t 46000.00 1 46000.00 11392 82 \N 10216 +78372 2025-11-04 17:11:46.488965+00 2025-11-04 17:11:46.488974+00 f t 7700.00 1 7700.00 11392 93 \N 10216 +78373 2025-11-04 17:11:46.494694+00 2025-11-04 17:11:46.494703+00 f t 87000.00 1 87000.00 11392 165 \N 10216 +78374 2025-11-04 17:11:46.499605+00 2025-11-04 17:11:46.499611+00 f t 13200.00 1 13200.00 11392 146 \N 10216 +78375 2025-11-04 17:20:01.760277+00 2025-11-04 17:20:01.760291+00 f t 55000.00 1 55000.00 11393 84 \N 128 +78376 2025-11-04 17:29:53.347814+00 2025-11-04 17:29:53.347823+00 f t 107000.00 1 107000.00 11394 103 \N 9712 +78377 2025-11-04 17:30:45.306838+00 2025-11-04 17:30:45.306851+00 f t 75000.00 1 75000.00 11395 108 \N 9712 +78384 2025-11-04 17:47:48.007584+00 2025-11-04 17:47:48.007593+00 f t 46000.00 1 46000.00 11397 82 \N 10218 +78385 2025-11-04 17:47:48.01675+00 2025-11-04 17:47:48.016763+00 f t 24000.00 1 24000.00 11397 163 \N 10218 +78390 2025-11-04 18:41:37.059476+00 2025-11-04 18:41:37.059485+00 f t 88000.00 1 88000.00 11400 167 \N 10219 +78415 2025-11-04 18:53:47.528827+00 2025-11-04 18:53:47.528837+00 f t 46000.00 1 46000.00 11406 82 \N 10224 +78416 2025-11-04 18:53:47.536327+00 2025-11-04 18:53:47.536335+00 f t 1000.00 1 1000.00 11406 170 \N 10224 +78417 2025-11-04 18:53:47.540866+00 2025-11-04 18:53:47.540873+00 f t 81500.00 1 81500.00 11406 143 \N 10224 +78419 2025-11-04 19:00:15.869998+00 2025-11-04 19:00:15.870011+00 f t 46000.00 1 46000.00 11407 82 \N 10225 +78420 2025-11-04 19:00:15.882863+00 2025-11-04 19:00:15.882877+00 f t 7700.00 1 7700.00 11407 91 \N 10225 +78421 2025-11-04 19:21:46.119295+00 2025-11-04 19:21:46.119304+00 f t 46000.00 1 46000.00 11408 82 \N 9995 +78422 2025-11-04 19:43:02.806042+00 2025-11-04 19:43:02.806051+00 f t 46000.00 1 46000.00 11411 82 \N 10228 +78423 2025-11-04 19:48:38.295322+00 2025-11-04 19:48:38.295332+00 f t 55000.00 1 55000.00 11412 84 \N 10229 +78505 2025-11-04 20:04:29.223507+00 2025-11-04 20:04:29.223516+00 f t 46000.00 1 46000.00 11416 82 \N 10231 +78506 2025-11-04 20:04:29.231039+00 2025-11-04 20:04:29.231047+00 f t 1000.00 1 1000.00 11416 170 \N 10231 +78507 2025-11-04 20:04:29.235094+00 2025-11-04 20:04:29.2351+00 f t 81500.00 1 81500.00 11416 143 \N 10231 +78516 2025-11-04 20:25:22.050106+00 2025-11-04 20:25:22.050115+00 f t 46000.00 1 46000.00 11417 82 \N 10232 +78517 2025-11-04 20:25:22.061115+00 2025-11-04 20:25:22.061124+00 f t 81500.00 1 81500.00 11417 143 \N 10232 +78518 2025-11-04 20:25:22.065649+00 2025-11-04 20:25:22.065656+00 f t 1000.00 1 1000.00 11417 170 \N 10232 +78519 2025-11-04 20:25:43.832565+00 2025-11-04 20:25:43.832574+00 f t 55000.00 1 55000.00 11415 84 \N 10230 +79946 2025-11-07 14:19:16.206448+00 2025-11-07 14:19:16.206456+00 f t 13200.00 1 13200.00 11656 146 \N 6190 +79954 2025-11-07 14:48:38.554824+00 2025-11-07 14:48:38.554832+00 f t 8000.00 1 8000.00 11658 85 \N 10417 +79955 2025-11-07 14:48:38.562832+00 2025-11-07 14:48:38.56284+00 f t 46000.00 1 46000.00 11658 82 \N 10417 +78538 2025-11-04 20:31:25.670896+00 2025-11-04 20:31:25.670909+00 f t 55000.00 1 55000.00 11418 84 \N 10234 +78539 2025-11-04 21:00:18.428246+00 2025-11-04 21:00:18.428256+00 f t 78000.00 1 78000.00 11420 106 \N 10235 +80031 2025-11-07 19:16:20.299692+00 2025-11-07 19:16:20.299701+00 f t 30000.00 1 30000.00 11685 83 \N 10177 +80141 2025-11-07 21:55:10.928933+00 2025-11-07 21:55:10.928943+00 f t 46000.00 1 46000.00 11695 82 \N 10444 +78575 2025-11-04 21:05:43.850975+00 2025-11-04 21:05:43.850984+00 f t 46000.00 1 46000.00 11421 82 \N 10236 +78576 2025-11-04 21:05:43.859734+00 2025-11-04 21:05:43.859742+00 f t 8000.00 1 8000.00 11421 85 \N 10236 +78577 2025-11-04 21:05:43.864473+00 2025-11-04 21:05:43.86448+00 f t 24000.00 1 24000.00 11421 163 \N 10236 +78578 2025-11-04 21:05:43.868893+00 2025-11-04 21:05:43.8689+00 f t 29000.00 1 29000.00 11421 138 \N 10236 +80158 2025-11-07 22:49:24.274971+00 2025-11-07 22:49:24.27498+00 f t 55000.00 1 55000.00 11706 84 \N 10451 +80163 2025-11-07 23:09:34.505955+00 2025-11-07 23:09:34.505968+00 f t 55000.00 1 55000.00 11708 84 \N 10452 +78584 2025-11-04 21:11:30.700201+00 2025-11-04 21:11:30.700226+00 f t 46000.00 1 46000.00 11419 82 \N 10233 +78585 2025-11-04 21:11:30.709595+00 2025-11-04 21:11:30.709603+00 f t 8000.00 1 8000.00 11419 85 \N 10233 +78586 2025-11-04 21:11:30.715703+00 2025-11-04 21:11:30.71571+00 f t 24000.00 1 24000.00 11419 86 \N 10233 +78587 2025-11-04 21:11:30.720766+00 2025-11-04 21:11:30.720773+00 f t 41000.00 1 41000.00 11419 119 \N 10233 +78589 2025-11-04 21:25:05.308986+00 2025-11-04 21:25:05.311696+00 f t 107000.00 1 107000.00 11422 103 \N 10237 +78590 2025-11-04 21:52:31.917037+00 2025-11-04 21:52:31.917047+00 f t 46000.00 1 46000.00 11424 82 \N 10238 +78591 2025-11-04 21:54:46.890295+00 2025-11-04 21:54:46.890305+00 f t 69000.00 1 69000.00 11425 141 \N 10239 +78592 2025-11-04 21:54:46.903823+00 2025-11-04 21:54:46.903835+00 f t 46000.00 1 46000.00 11425 82 \N 10239 +78593 2025-11-04 22:23:45.472113+00 2025-11-04 22:23:45.472122+00 f t 72500.00 1 72500.00 11428 104 \N 10240 +80216 2025-11-08 00:58:19.504458+00 2025-11-08 00:58:19.504466+00 f t 46000.00 1 46000.00 11714 82 \N 10456 +80217 2025-11-08 00:58:19.512121+00 2025-11-08 00:58:19.512131+00 f t 60000.00 1 60000.00 11714 169 \N 10456 +80218 2025-11-08 00:58:19.517209+00 2025-11-08 00:58:19.517217+00 f t 13200.00 1 13200.00 11714 146 \N 10456 +80219 2025-11-08 00:58:19.521504+00 2025-11-08 00:58:19.521511+00 f t 93750.00 1 93750.00 11714 90 \N 10456 +78610 2025-11-05 00:35:54.994267+00 2025-11-05 00:35:54.994278+00 f t 55000.00 1 55000.00 11436 84 \N 10243 +78622 2025-11-05 00:43:10.205345+00 2025-11-05 00:43:10.205353+00 f t 24000.00 1 24000.00 11437 88 \N 10244 +78623 2025-11-05 00:43:10.21328+00 2025-11-05 00:43:10.213288+00 f t 46000.00 1 46000.00 11437 82 \N 10244 +78624 2025-11-05 01:05:54.623736+00 2025-11-05 01:05:54.623749+00 f t 60000.00 1 60000.00 11438 169 \N 10245 +78625 2025-11-05 02:14:57.179937+00 2025-11-05 02:14:57.179946+00 f t 55000.00 1 55000.00 11439 84 \N 10246 +78637 2025-11-05 04:59:25.730142+00 2025-11-05 04:59:25.730151+00 f t 46000.00 1 46000.00 11445 82 \N 10250 +78638 2025-11-05 04:59:25.738973+00 2025-11-05 04:59:25.738984+00 f t 88000.00 1 88000.00 11445 167 \N 10250 +78639 2025-11-05 10:10:57.802865+00 2025-11-05 10:10:57.802875+00 f t 82000.00 1 82000.00 11446 97 \N 10251 +78640 2025-11-05 11:46:28.604813+00 2025-11-05 11:46:28.604829+00 f t 46000.00 1 46000.00 11451 82 \N 10254 +78675 2025-11-05 12:27:21.678788+00 2025-11-05 12:27:21.678796+00 f t 46000.00 1 46000.00 11454 82 \N 10256 +78676 2025-11-05 12:27:21.686722+00 2025-11-05 12:27:21.686729+00 f t 24000.00 1 24000.00 11454 86 \N 10256 +78677 2025-11-05 12:27:21.690981+00 2025-11-05 12:27:21.690987+00 f t 46000.00 1 46000.00 11454 82 \N 10257 +78678 2025-11-05 12:27:21.69507+00 2025-11-05 12:27:21.695076+00 f t 24000.00 1 24000.00 11454 86 \N 10257 +78679 2025-11-05 13:05:00.879421+00 2025-11-05 13:05:00.87943+00 f t 46000.00 1 46000.00 11456 82 \N 10258 +78680 2025-11-05 13:10:12.717526+00 2025-11-05 13:10:12.717536+00 f t 13200.00 1 13200.00 11457 146 \N 10216 +78681 2025-11-05 13:14:01.524239+00 2025-11-05 13:14:01.524252+00 f t 8000.00 1 8000.00 11458 85 \N 10259 +78682 2025-11-05 13:14:01.534368+00 2025-11-05 13:14:01.534381+00 f t 46000.00 1 46000.00 11458 82 \N 10259 +78683 2025-11-05 13:20:55.683353+00 2025-11-05 13:20:55.683363+00 f t 46000.00 1 46000.00 11459 82 \N 10260 +78686 2025-11-05 13:21:55.924274+00 2025-11-05 13:21:55.924283+00 f t 55000.00 1 55000.00 11460 84 \N 10261 +78687 2025-11-05 13:26:40.880811+00 2025-11-05 13:26:40.88082+00 f t 46000.00 1 46000.00 11461 82 \N 10262 +78690 2025-11-05 14:13:40.341505+00 2025-11-05 14:13:40.341515+00 f t 46000.00 1 46000.00 11452 82 \N 10255 +78694 2025-11-05 14:39:10.632733+00 2025-11-05 14:39:10.632745+00 f t 46000.00 1 46000.00 11464 82 \N 10266 +78695 2025-11-05 14:39:10.640783+00 2025-11-05 14:39:10.640792+00 f t 46000.00 1 46000.00 11464 82 \N 10264 +78696 2025-11-05 14:39:10.645252+00 2025-11-05 14:39:10.645259+00 f t 46000.00 1 46000.00 11464 82 \N 10265 +78698 2025-11-05 14:39:42.956317+00 2025-11-05 14:39:42.956325+00 f t 46000.00 1 46000.00 11465 82 \N 10267 +78699 2025-11-05 14:44:50.655795+00 2025-11-05 14:44:50.655804+00 f t 55000.00 1 55000.00 11466 84 \N 10268 +78706 2025-11-05 14:55:17.026189+00 2025-11-05 14:55:17.026198+00 f t 107000.00 1 107000.00 11462 103 \N 10263 +78709 2025-11-05 15:10:54.15096+00 2025-11-05 15:10:54.150973+00 f t 46000.00 1 46000.00 11468 82 \N 10270 +78710 2025-11-05 15:10:54.162806+00 2025-11-05 15:10:54.162817+00 f t 24000.00 1 24000.00 11468 163 \N 10270 +78711 2025-11-05 15:10:54.168822+00 2025-11-05 15:10:54.16883+00 f t 8000.00 1 8000.00 11468 85 \N 10270 +80592 2025-11-08 01:55:27.309151+00 2025-11-08 01:55:27.309163+00 f t 34000.00 1 34000.00 11721 110 \N 7289 +80593 2025-11-08 01:55:27.317196+00 2025-11-08 01:55:27.317203+00 f t 46000.00 1 46000.00 11721 82 \N 7289 +80594 2025-11-08 01:55:27.321615+00 2025-11-08 01:55:27.321622+00 f t 13200.00 1 13200.00 11721 146 \N 7289 +80621 2025-11-08 04:16:22.367407+00 2025-11-08 04:16:22.367417+00 f t 30000.00 1 30000.00 11726 83 \N 10468 +80622 2025-11-08 04:16:22.376418+00 2025-11-08 04:16:22.376426+00 f t 46000.00 1 46000.00 11726 82 \N 10468 +80626 2025-11-08 12:08:16.388585+00 2025-11-08 12:08:16.388597+00 f t 55000.00 1 55000.00 11732 84 \N 10474 +80647 2025-11-08 13:20:49.63814+00 2025-11-08 13:20:49.638149+00 f t 46000.00 1 46000.00 11738 82 \N 10478 +80648 2025-11-08 13:20:49.646193+00 2025-11-08 13:20:49.646201+00 f t 69000.00 1 69000.00 11738 141 \N 10478 +78810 2025-11-05 15:21:28.66655+00 2025-11-05 15:21:28.666559+00 f t 31500.00 1 31500.00 11470 111 \N 10272 +78811 2025-11-05 15:21:28.675291+00 2025-11-05 15:21:28.6753+00 f t 46000.00 1 46000.00 11470 82 \N 10272 +78812 2025-11-05 15:21:28.680036+00 2025-11-05 15:21:28.680045+00 f t 8000.00 1 8000.00 11470 85 \N 10272 +78813 2025-11-05 15:21:28.6845+00 2025-11-05 15:21:28.684507+00 f t 31500.00 1 31500.00 11470 111 \N 10273 +78814 2025-11-05 15:21:28.689778+00 2025-11-05 15:21:28.689784+00 f t 46000.00 1 46000.00 11470 82 \N 10273 +78815 2025-11-05 15:21:28.694414+00 2025-11-05 15:21:28.694424+00 f t 8000.00 1 8000.00 11470 85 \N 10273 +85567 2025-11-17 22:04:24.815327+00 2025-11-17 22:04:24.815335+00 f t 46000.00 1 46000.00 12618 82 \N 11174 +78821 2025-11-05 15:55:45.25553+00 2025-11-05 15:55:45.255542+00 f t 32500.00 1 32500.00 11471 112 \N 10274 +78822 2025-11-05 15:55:45.263847+00 2025-11-05 15:55:45.263856+00 f t 46000.00 1 46000.00 11471 82 \N 10274 +78823 2025-11-05 15:55:45.268699+00 2025-11-05 15:55:45.268707+00 f t 7700.00 1 7700.00 11471 93 \N 10274 +78824 2025-11-05 15:55:45.273286+00 2025-11-05 15:55:45.273293+00 f t 13200.00 1 13200.00 11471 146 \N 10274 +78826 2025-11-05 16:13:57.846432+00 2025-11-05 16:13:57.846442+00 f t 46000.00 1 46000.00 11472 82 \N 10275 +78827 2025-11-05 16:34:52.828868+00 2025-11-05 16:34:52.828878+00 f t 23000.00 1 23000.00 11473 172 \N 10177 +78828 2025-11-05 16:37:16.401441+00 2025-11-05 16:37:16.401454+00 f t 13200.00 1 13200.00 11474 146 \N 10177 +78829 2025-11-05 16:39:21.24696+00 2025-11-05 16:39:21.246969+00 f t 78000.00 1 78000.00 11475 106 \N 10177 +78830 2025-11-05 17:28:02.281956+00 2025-11-05 17:28:02.281966+00 f t 88000.00 1 88000.00 11477 167 \N 10276 +78831 2025-11-05 17:42:18.283938+00 2025-11-05 17:42:18.283951+00 f t 81500.00 1 81500.00 11478 143 \N 10277 +78832 2025-11-05 17:42:18.292711+00 2025-11-05 17:42:18.29272+00 f t 46000.00 1 46000.00 11478 82 \N 10277 +78838 2025-11-05 18:23:16.935782+00 2025-11-05 18:23:16.93579+00 f t 46000.00 1 46000.00 11479 82 \N 10278 +78839 2025-11-05 18:23:16.943431+00 2025-11-05 18:23:16.94344+00 f t 7700.00 1 7700.00 11479 93 \N 10278 +78840 2025-11-05 18:23:16.947865+00 2025-11-05 18:23:16.947872+00 f t 13200.00 1 13200.00 11479 146 \N 10278 +78841 2025-11-05 18:23:16.952372+00 2025-11-05 18:23:16.952382+00 f t 87000.00 1 87000.00 11479 165 \N 10278 +78842 2025-11-05 18:57:30.134663+00 2025-11-05 18:57:30.134674+00 f t 8000.00 1 8000.00 11480 85 \N 10279 +78843 2025-11-05 18:57:30.143893+00 2025-11-05 18:57:30.143902+00 f t 46000.00 1 46000.00 11480 82 \N 10279 +78844 2025-11-05 18:58:56.651003+00 2025-11-05 18:58:56.651011+00 f t 13200.00 1 13200.00 11481 146 \N 10274 +78845 2025-11-05 18:59:47.7706+00 2025-11-05 18:59:47.77061+00 f t 107000.00 1 107000.00 11483 103 \N 10274 +79927 2025-11-07 14:11:28.784112+00 2025-11-07 14:11:28.78412+00 f t 30000.00 1 30000.00 11644 83 \N 9271 +79956 2025-11-07 15:18:03.345287+00 2025-11-07 15:18:03.345297+00 f t 13200.00 1 13200.00 11660 146 \N 9637 +79961 2025-11-07 15:30:42.576407+00 2025-11-07 15:30:42.576416+00 f t 107000.00 1 107000.00 11661 103 \N 10419 +80117 2025-11-07 20:17:13.495059+00 2025-11-07 20:17:13.495067+00 f t 78000.00 1 78000.00 11689 106 \N 10440 +80142 2025-11-07 21:58:15.41462+00 2025-11-07 21:58:15.414633+00 f t 24000.00 1 24000.00 11694 163 \N 10443 +80143 2025-11-07 21:58:15.423835+00 2025-11-07 21:58:15.423843+00 f t 46000.00 1 46000.00 11694 82 \N 10443 +78890 2025-11-05 19:38:07.423263+00 2025-11-05 19:38:07.423272+00 f t 46000.00 1 46000.00 11485 82 \N 10281 +78896 2025-11-05 19:53:09.920812+00 2025-11-05 19:53:09.920825+00 f t 46000.00 1 46000.00 11486 82 \N 10282 +78897 2025-11-05 19:53:09.930023+00 2025-11-05 19:53:09.930031+00 f t 8000.00 1 8000.00 11486 85 \N 10282 +78898 2025-11-05 19:53:09.934472+00 2025-11-05 19:53:09.934482+00 f t 24000.00 1 24000.00 11486 163 \N 10282 +78899 2025-11-05 19:53:09.940248+00 2025-11-05 19:53:09.940257+00 f t 33000.00 1 33000.00 11486 123 \N 10282 +78900 2025-11-05 19:53:49.272993+00 2025-11-05 19:53:49.273005+00 f t 13200.00 1 13200.00 11487 146 \N 10278 +78901 2025-11-05 20:01:17.231214+00 2025-11-05 20:01:17.231223+00 f t 78000.00 1 78000.00 11488 106 \N 10283 +78902 2025-11-05 20:08:29.114425+00 2025-11-05 20:08:29.114434+00 f t 81500.00 1 81500.00 11489 143 \N 10284 +78903 2025-11-05 20:08:29.122769+00 2025-11-05 20:08:29.122776+00 f t 46000.00 1 46000.00 11489 82 \N 10284 +78904 2025-11-05 20:11:50.905453+00 2025-11-05 20:11:50.905463+00 f t 55000.00 1 55000.00 11490 84 \N 10285 +80179 2025-11-07 23:21:59.215417+00 2025-11-07 23:21:59.215427+00 f t 46000.00 1 46000.00 11711 82 \N 10454 +80180 2025-11-07 23:21:59.223229+00 2025-11-07 23:21:59.223236+00 f t 24000.00 1 24000.00 11711 163 \N 10454 +80189 2025-11-08 00:51:12.386+00 2025-11-08 00:51:12.386009+00 f t 55000.00 1 55000.00 11715 84 \N 10457 +80346 2025-11-08 01:30:09.665281+00 2025-11-08 01:30:09.665294+00 f t 34000.00 1 34000.00 11716 110 \N 7289 +80347 2025-11-08 01:30:09.677957+00 2025-11-08 01:30:09.677966+00 f t 46000.00 1 46000.00 11716 82 \N 7289 +80348 2025-11-08 01:30:09.684878+00 2025-11-08 01:30:09.68489+00 f t 13200.00 1 13200.00 11716 146 \N 7289 +80349 2025-11-08 01:30:09.691975+00 2025-11-08 01:30:09.691982+00 f t 8000.00 1 8000.00 11716 85 \N 7289 +80350 2025-11-08 01:30:09.698796+00 2025-11-08 01:30:09.698808+00 f t 24000.00 1 24000.00 11716 163 \N 7289 +78969 2025-11-05 20:37:08.925618+00 2025-11-05 20:37:08.925627+00 f t 46000.00 1 46000.00 11491 82 \N 10288 +78970 2025-11-05 20:37:08.935026+00 2025-11-05 20:37:08.935035+00 f t 8000.00 1 8000.00 11491 85 \N 10288 +78971 2025-11-05 20:37:08.939965+00 2025-11-05 20:37:08.939973+00 f t 24000.00 1 24000.00 11491 163 \N 10288 +78973 2025-11-05 21:06:52.172872+00 2025-11-05 21:06:52.172884+00 f t 57000.00 1 57000.00 11495 98 \N 10291 +78975 2025-11-05 21:31:58.936629+00 2025-11-05 21:31:58.936641+00 f t 55000.00 1 55000.00 11496 84 \N 8763 +78977 2025-11-05 22:07:14.54883+00 2025-11-05 22:07:14.549215+00 f t 46000.00 1 46000.00 11498 82 \N 10292 +80424 2025-11-08 01:38:27.014051+00 2025-11-08 01:38:27.014059+00 f t 34000.00 1 34000.00 11718 110 \N 10460 +80425 2025-11-08 01:38:27.024564+00 2025-11-08 01:38:27.024574+00 f t 46000.00 1 46000.00 11718 82 \N 10460 +80426 2025-11-08 01:38:27.030827+00 2025-11-08 01:38:27.030835+00 f t 13200.00 1 13200.00 11718 146 \N 10460 +80427 2025-11-08 01:38:27.035766+00 2025-11-08 01:38:27.035772+00 f t 8000.00 1 8000.00 11718 85 \N 10460 +80428 2025-11-08 01:38:27.040025+00 2025-11-08 01:38:27.040031+00 f t 24000.00 1 24000.00 11718 163 \N 10460 +78983 2025-11-05 22:16:36.451841+00 2025-11-05 22:16:36.451851+00 f t 75000.00 1 75000.00 11499 108 \N 10293 +78984 2025-11-05 22:29:53.174585+00 2025-11-05 22:29:53.174593+00 f t 8000.00 1 8000.00 11500 85 \N 10294 +78985 2025-11-05 22:29:53.183275+00 2025-11-05 22:29:53.183284+00 f t 46000.00 1 46000.00 11500 82 \N 10294 +78986 2025-11-05 22:33:17.235502+00 2025-11-05 22:33:17.23551+00 f t 46000.00 1 46000.00 11501 82 \N 10295 +80538 2025-11-08 01:52:56.68754+00 2025-11-08 01:52:56.687549+00 f t 34000.00 1 34000.00 11720 110 \N 10464 +80539 2025-11-08 01:52:56.695332+00 2025-11-08 01:52:56.69534+00 f t 46000.00 1 46000.00 11720 82 \N 10464 +80540 2025-11-08 01:52:56.699949+00 2025-11-08 01:52:56.699955+00 f t 8000.00 1 8000.00 11720 85 \N 10464 +80541 2025-11-08 01:52:56.704915+00 2025-11-08 01:52:56.704922+00 f t 24000.00 1 24000.00 11720 163 \N 10464 +80595 2025-11-08 01:55:27.326193+00 2025-11-08 01:55:27.326199+00 f t 8000.00 1 8000.00 11721 85 \N 7289 +80596 2025-11-08 01:55:27.330862+00 2025-11-08 01:55:27.330868+00 f t 24000.00 1 24000.00 11721 163 \N 7289 +80623 2025-11-08 05:29:28.479303+00 2025-11-08 05:29:28.479317+00 f t 72500.00 1 72500.00 11727 104 \N 10469 +85568 2025-11-17 22:16:59.624231+00 2025-11-17 22:16:59.624243+00 f t 33000.00 1 33000.00 12619 123 \N 11175 +85569 2025-11-17 22:16:59.637017+00 2025-11-17 22:16:59.637027+00 f t 46000.00 1 46000.00 12619 82 \N 11175 +85588 2025-11-17 23:53:55.503808+00 2025-11-17 23:53:55.503817+00 f t 24000.00 1 24000.00 12637 86 \N 11189 +82799 2025-11-12 23:39:34.221056+00 2025-11-12 23:39:34.221065+00 f t 8000.00 1 8000.00 12193 85 \N 10836 +82800 2025-11-12 23:39:34.231604+00 2025-11-12 23:39:34.231613+00 f t 46000.00 1 46000.00 12193 82 \N 10836 +79123 2025-11-05 23:00:28.216981+00 2025-11-05 23:00:28.216993+00 f t 46000.00 1 46000.00 11502 82 \N 10298 +79124 2025-11-05 23:00:28.226159+00 2025-11-05 23:00:28.226171+00 f t 8000.00 1 8000.00 11502 85 \N 10298 +79125 2025-11-05 23:00:28.231538+00 2025-11-05 23:00:28.231546+00 f t 24000.00 1 24000.00 11502 163 \N 10298 +79126 2025-11-05 23:00:28.236649+00 2025-11-05 23:00:28.236657+00 f t 46000.00 1 46000.00 11502 82 \N 10299 +79127 2025-11-05 23:00:28.242139+00 2025-11-05 23:00:28.242148+00 f t 8000.00 1 8000.00 11502 85 \N 10299 +79128 2025-11-05 23:00:28.247758+00 2025-11-05 23:00:28.247766+00 f t 24000.00 1 24000.00 11502 163 \N 10299 +79129 2025-11-05 23:00:28.253114+00 2025-11-05 23:00:28.253123+00 f t 46000.00 1 46000.00 11502 82 \N 10300 +79130 2025-11-05 23:00:28.258107+00 2025-11-05 23:00:28.258115+00 f t 8000.00 1 8000.00 11502 85 \N 10300 +79131 2025-11-05 23:00:28.263005+00 2025-11-05 23:00:28.263013+00 f t 24000.00 1 24000.00 11502 86 \N 10300 +79132 2025-11-05 23:11:49.713403+00 2025-11-05 23:11:49.713412+00 f t 46000.00 1 46000.00 11503 82 \N 10301 +79133 2025-11-05 23:23:59.882329+00 2025-11-05 23:23:59.882524+00 f t 46000.00 1 46000.00 11504 82 \N 10302 +79134 2025-11-05 23:27:07.609491+00 2025-11-05 23:27:07.609875+00 f t 107000.00 1 107000.00 11505 103 \N 10303 +79136 2025-11-05 23:47:44.434353+00 2025-11-05 23:47:44.434363+00 f t 55000.00 1 55000.00 11507 84 \N 10305 +79137 2025-11-06 00:15:38.875262+00 2025-11-06 00:15:38.875312+00 f t 69000.00 1 69000.00 11508 141 \N 10306 +79138 2025-11-06 00:15:38.884959+00 2025-11-06 00:15:38.884967+00 f t 46000.00 1 46000.00 11508 82 \N 10306 +79142 2025-11-06 00:47:09.470269+00 2025-11-06 00:47:09.470279+00 f t 52500.00 1 52500.00 11509 114 \N 10307 +79156 2025-11-06 01:08:37.664355+00 2025-11-06 01:08:37.664363+00 f t 46000.00 1 46000.00 11512 82 \N 10310 +79161 2025-11-06 01:08:43.858064+00 2025-11-06 01:08:43.858073+00 f t 46000.00 1 46000.00 11511 82 \N 10309 +79162 2025-11-06 01:08:43.867665+00 2025-11-06 01:08:43.867674+00 f t 8000.00 1 8000.00 11511 85 \N 10309 +79164 2025-11-06 01:25:54.001601+00 2025-11-06 01:25:54.001613+00 f t 46000.00 1 46000.00 11514 82 \N 10312 +79165 2025-11-06 01:26:15.69691+00 2025-11-06 01:26:15.696921+00 f t 55000.00 1 55000.00 11513 84 \N 10311 +79166 2025-11-06 01:47:53.520687+00 2025-11-06 01:47:53.520695+00 f t 55000.00 1 55000.00 11515 84 \N 10313 +79167 2025-11-06 02:21:11.11986+00 2025-11-06 02:21:11.119869+00 f t 46000.00 1 46000.00 11517 82 \N 10315 +79176 2025-11-06 02:36:26.72684+00 2025-11-06 02:36:26.726853+00 f t 46000.00 1 46000.00 11518 82 \N 10317 +79177 2025-11-06 02:54:52.502201+00 2025-11-06 02:54:52.50221+00 f t 60000.00 1 60000.00 11519 169 \N 10318 +79185 2025-11-06 02:58:33.065015+00 2025-11-06 02:58:33.065025+00 f t 46000.00 1 46000.00 11520 82 \N 10319 +79224 2025-11-06 03:27:47.790837+00 2025-11-06 03:27:47.790845+00 f t 46000.00 1 46000.00 11521 82 \N 9507 +79221 2025-11-06 03:27:47.771728+00 2025-11-06 03:27:47.771737+00 f t 46000.00 1 46000.00 11521 82 \N 9509 +79225 2025-11-06 03:27:47.795615+00 2025-11-06 03:27:47.795622+00 f t 8000.00 1 8000.00 11521 85 \N 9507 +79222 2025-11-06 03:27:47.780396+00 2025-11-06 03:27:47.780409+00 f t 8000.00 1 8000.00 11521 85 \N 9509 +79226 2025-11-06 03:27:47.801603+00 2025-11-06 03:27:47.801613+00 f t 24000.00 1 24000.00 11521 163 \N 9507 +79223 2025-11-06 03:27:47.785405+00 2025-11-06 03:27:47.785412+00 f t 24000.00 1 24000.00 11521 163 \N 9509 +79229 2025-11-06 04:42:46.954834+00 2025-11-06 04:42:46.954847+00 f t 55000.00 1 55000.00 11522 84 \N 10322 +79230 2025-11-06 06:43:28.80615+00 2025-11-06 06:43:28.806159+00 f t 55000.00 1 55000.00 11525 84 \N 10324 +79232 2025-11-06 07:56:07.949725+00 2025-11-06 07:56:07.949734+00 f t 23000.00 1 23000.00 11527 172 \N 10325 +79245 2025-11-06 08:30:06.152257+00 2025-11-06 08:30:06.152278+00 f t 23000.00 1 23000.00 11528 172 \N 10326 +79246 2025-11-06 10:07:32.803172+00 2025-11-06 10:07:32.803184+00 f t 46000.00 1 46000.00 11532 82 \N 10329 +79249 2025-11-06 11:46:20.085023+00 2025-11-06 11:46:20.085036+00 f t 46000.00 1 46000.00 11537 82 \N 10332 +79260 2025-11-06 12:09:27.319542+00 2025-11-06 12:09:27.319555+00 f t 46000.00 1 46000.00 11541 82 \N 10336 +79267 2025-11-06 12:42:38.68984+00 2025-11-06 12:42:38.689851+00 f t 55000.00 1 55000.00 11544 84 \N 10339 +79334 2025-11-06 12:45:32.822834+00 2025-11-06 12:45:32.822846+00 f t 46000.00 1 46000.00 11543 82 \N 10338 +79335 2025-11-06 12:45:32.830951+00 2025-11-06 12:45:32.830959+00 f t 75000.00 1 75000.00 11543 142 \N 10338 +79337 2025-11-06 12:49:23.194409+00 2025-11-06 12:49:23.194418+00 f t 78000.00 1 78000.00 11545 106 \N 10340 +79342 2025-11-06 13:12:54.578343+00 2025-11-06 13:12:54.578354+00 f t 80000.00 1 80000.00 11548 173 \N 10342 +79344 2025-11-06 13:13:09.906967+00 2025-11-06 13:13:09.906976+00 f t 55000.00 1 55000.00 11547 84 \N 10341 +79346 2025-11-06 13:16:07.712605+00 2025-11-06 13:16:07.712615+00 f t 46000.00 1 46000.00 11549 82 \N 10343 +79348 2025-11-06 13:34:17.86547+00 2025-11-06 13:34:17.865478+00 f t 80000.00 1 80000.00 11551 173 \N 10344 +79349 2025-11-06 13:37:05.442227+00 2025-11-06 13:37:05.442236+00 f t 24000.00 1 24000.00 11552 86 \N 10345 +79350 2025-11-06 13:37:05.450436+00 2025-11-06 13:37:05.450444+00 f t 46000.00 1 46000.00 11552 82 \N 10345 +79351 2025-11-06 13:51:42.738649+00 2025-11-06 13:51:42.738657+00 f t 46000.00 1 46000.00 11553 82 \N 10346 +79354 2025-11-06 14:10:08.762747+00 2025-11-06 14:10:08.76276+00 f t 55000.00 1 55000.00 11542 84 \N 10337 +79355 2025-11-06 14:26:13.72062+00 2025-11-06 14:26:13.720629+00 f t 1000.00 1 1000.00 11554 170 \N 10284 +79356 2025-11-06 14:26:13.729404+00 2025-11-06 14:26:13.729415+00 f t 46000.00 1 46000.00 11554 82 \N 10284 +79357 2025-11-06 14:41:41.656925+00 2025-11-06 14:41:41.656933+00 f t 30000.00 1 30000.00 11556 83 \N 3336 +79358 2025-11-06 15:18:38.712095+00 2025-11-06 15:18:38.712104+00 f t 55000.00 1 55000.00 11558 84 \N 10347 +79359 2025-11-06 15:22:07.60137+00 2025-11-06 15:22:07.601379+00 f t 24000.00 1 24000.00 11559 163 \N 10348 +79360 2025-11-06 15:22:07.61003+00 2025-11-06 15:22:07.610039+00 f t 46000.00 1 46000.00 11559 82 \N 10348 +79361 2025-11-06 15:47:17.516232+00 2025-11-06 15:47:17.516241+00 f t 88000.00 1 88000.00 11560 167 \N 10214 +79364 2025-11-06 16:03:31.618716+00 2025-11-06 16:03:31.618724+00 f t 46000.00 1 46000.00 11561 82 \N 3758 +79365 2025-11-06 16:03:31.626389+00 2025-11-06 16:03:31.626396+00 f t 24000.00 1 24000.00 11561 86 \N 3758 +79366 2025-11-06 16:03:31.630691+00 2025-11-06 16:03:31.630698+00 f t 24000.00 1 24000.00 11561 86 \N 3757 +79367 2025-11-06 16:03:31.634882+00 2025-11-06 16:03:31.634888+00 f t 46000.00 1 46000.00 11561 82 \N 3757 +85570 2025-11-17 22:21:49.617816+00 2025-11-17 22:21:49.61783+00 f t 24000.00 1 24000.00 12620 163 \N 11176 +85571 2025-11-17 22:21:49.627299+00 2025-11-17 22:21:49.627309+00 f t 46000.00 1 46000.00 12620 82 \N 11176 +79373 2025-11-06 16:05:27.736806+00 2025-11-06 16:05:27.736815+00 f t 46000.00 1 46000.00 11510 82 \N 10308 +79374 2025-11-06 16:05:27.744334+00 2025-11-06 16:05:27.744342+00 f t 7700.00 1 7700.00 11510 93 \N 10308 +79375 2025-11-06 16:05:27.748628+00 2025-11-06 16:05:27.748634+00 f t 52500.00 1 52500.00 11510 114 \N 10308 +79376 2025-11-06 16:05:27.752945+00 2025-11-06 16:05:27.752951+00 f t 13200.00 1 13200.00 11510 146 \N 10308 +79377 2025-11-06 16:06:38.411774+00 2025-11-06 16:06:38.411783+00 f t 13200.00 1 13200.00 11562 146 \N 10308 +79381 2025-11-06 16:12:54.273362+00 2025-11-06 16:12:54.273374+00 f t 55000.00 1 55000.00 11563 84 \N 10350 +79408 2025-11-06 16:22:21.076126+00 2025-11-06 16:22:21.076135+00 f t 46000.00 1 46000.00 11565 82 \N 10352 +79413 2025-11-06 16:31:11.198268+00 2025-11-06 16:31:11.198277+00 f t 80000.00 1 80000.00 11566 173 \N 10353 +79414 2025-11-06 16:40:31.062486+00 2025-11-06 16:40:31.062495+00 f t 23000.00 1 23000.00 11567 172 \N 10354 +79418 2025-11-06 16:45:02.484959+00 2025-11-06 16:45:02.484973+00 f t 13200.00 1 13200.00 11569 146 \N 10354 +79419 2025-11-06 16:46:50.60027+00 2025-11-06 16:46:50.600278+00 f t 13200.00 1 13200.00 11571 146 \N 10354 +79420 2025-11-06 16:47:11.303533+00 2025-11-06 16:47:11.303545+00 f t 24000.00 1 24000.00 11570 88 \N 10358 +79421 2025-11-06 16:47:11.313094+00 2025-11-06 16:47:11.313105+00 f t 46000.00 1 46000.00 11570 82 \N 10358 +79424 2025-11-06 16:53:19.029082+00 2025-11-06 16:53:19.02909+00 f t 46000.00 1 46000.00 11564 82 \N 10351 +79425 2025-11-06 16:53:19.037091+00 2025-11-06 16:53:19.037099+00 f t 8000.00 1 8000.00 11564 85 \N 10351 +79426 2025-11-06 16:53:19.042584+00 2025-11-06 16:53:19.042593+00 f t 24000.00 1 24000.00 11564 163 \N 10351 +79430 2025-11-06 17:24:48.015708+00 2025-11-06 17:24:48.015717+00 f t 46000.00 1 46000.00 11576 82 \N 9531 +79431 2025-11-06 17:35:49.36738+00 2025-11-06 17:35:49.367388+00 f t 24000.00 1 24000.00 11577 86 \N 10363 +79432 2025-11-06 17:35:49.377052+00 2025-11-06 17:35:49.37706+00 f t 46000.00 1 46000.00 11577 82 \N 10363 +79433 2025-11-06 17:52:57.895489+00 2025-11-06 17:52:57.895499+00 f t 107000.00 1 107000.00 11572 103 \N 323 +79449 2025-11-06 18:41:21.059154+00 2025-11-06 18:41:21.059182+00 f t 46000.00 1 46000.00 11581 82 \N 6966 +79450 2025-11-06 18:41:21.070786+00 2025-11-06 18:41:21.070796+00 f t 8000.00 1 8000.00 11581 85 \N 6966 +79451 2025-11-06 18:41:21.076593+00 2025-11-06 18:41:21.0766+00 f t 24000.00 1 24000.00 11581 88 \N 6966 +79454 2025-11-06 18:47:47.800837+00 2025-11-06 18:47:47.800849+00 f t 24000.00 1 24000.00 11584 88 \N 10365 +79455 2025-11-06 18:47:47.811607+00 2025-11-06 18:47:47.811618+00 f t 46000.00 1 46000.00 11584 82 \N 10365 +79456 2025-11-06 19:04:39.263128+00 2025-11-06 19:04:39.263159+00 f t 13200.00 1 13200.00 11585 146 \N 10146 +79471 2025-11-06 19:13:51.1362+00 2025-11-06 19:13:51.136208+00 f t 46000.00 1 46000.00 11586 82 \N 10367 +79472 2025-11-06 19:13:51.143884+00 2025-11-06 19:13:51.143891+00 f t 33000.00 1 33000.00 11586 123 \N 10367 +79473 2025-11-06 19:13:51.148852+00 2025-11-06 19:13:51.148861+00 f t 24000.00 1 24000.00 11586 132 \N 10368 +79474 2025-11-06 19:13:51.15428+00 2025-11-06 19:13:51.15429+00 f t 46000.00 1 46000.00 11586 82 \N 10368 +79477 2025-11-06 19:58:06.579099+00 2025-11-06 19:58:06.579111+00 f t 46000.00 1 46000.00 11587 82 \N 128 +79478 2025-11-06 19:58:06.588284+00 2025-11-06 19:58:06.588292+00 f t 8000.00 1 8000.00 11587 85 \N 128 +79479 2025-11-06 19:58:06.592954+00 2025-11-06 19:58:06.59296+00 f t 24000.00 1 24000.00 11587 86 \N 128 +79484 2025-11-06 19:59:11.250127+00 2025-11-06 19:59:11.250136+00 f t 24000.00 1 24000.00 11588 86 \N 10370 +79485 2025-11-06 19:59:11.260282+00 2025-11-06 19:59:11.260292+00 f t 46000.00 1 46000.00 11588 82 \N 10370 +79489 2025-11-06 20:33:06.277325+00 2025-11-06 20:33:06.277336+00 f t 78000.00 1 78000.00 11591 106 \N 10350 +79490 2025-11-06 20:33:42.178552+00 2025-11-06 20:33:42.178561+00 f t 46000.00 1 46000.00 11590 82 \N 10371 +79491 2025-11-06 21:04:32.246836+00 2025-11-06 21:04:32.246844+00 f t 7700.00 1 7700.00 11589 93 \N 10350 +79492 2025-11-06 21:04:32.256663+00 2025-11-06 21:04:32.256674+00 f t 46000.00 1 46000.00 11589 82 \N 10350 +79493 2025-11-06 21:08:00.251023+00 2025-11-06 21:08:00.251035+00 f t 24000.00 1 24000.00 11595 88 \N 10372 +79494 2025-11-06 21:08:00.261576+00 2025-11-06 21:08:00.261588+00 f t 46000.00 1 46000.00 11595 82 \N 10372 +79495 2025-11-06 21:08:51.18216+00 2025-11-06 21:08:51.182169+00 f t 13200.00 1 13200.00 11596 146 \N 10350 +79506 2025-11-06 21:11:15.204843+00 2025-11-06 21:11:15.204855+00 f t 46000.00 1 46000.00 11594 82 \N 4926 +79507 2025-11-06 21:11:15.214178+00 2025-11-06 21:11:15.214187+00 f t 46000.00 1 46000.00 11594 82 \N 4925 +79508 2025-11-06 21:11:15.218832+00 2025-11-06 21:11:15.21884+00 f t 8000.00 1 8000.00 11594 85 \N 4926 +79509 2025-11-06 21:11:15.223403+00 2025-11-06 21:11:15.223409+00 f t 8000.00 1 8000.00 11594 85 \N 4925 +79510 2025-11-06 21:11:15.227525+00 2025-11-06 21:11:15.227531+00 f t 24000.00 1 24000.00 11594 163 \N 4925 +79511 2025-11-06 21:11:15.231712+00 2025-11-06 21:11:15.231718+00 f t 24000.00 1 24000.00 11594 163 \N 4926 +79512 2025-11-06 21:24:19.089801+00 2025-11-06 21:24:19.089809+00 f t 23000.00 1 23000.00 11597 172 \N 9775 +79513 2025-11-06 21:27:21.562842+00 2025-11-06 21:27:21.562851+00 f t 78000.00 1 78000.00 11598 106 \N 8055 +79514 2025-11-06 21:30:09.955173+00 2025-11-06 21:30:09.955182+00 f t 46000.00 1 46000.00 11599 82 \N 10373 +79521 2025-11-06 22:41:43.651314+00 2025-11-06 22:41:43.651324+00 f t 46000.00 1 46000.00 11602 82 \N 10374 +79522 2025-11-06 22:41:43.660472+00 2025-11-06 22:41:43.660482+00 f t 24000.00 1 24000.00 11602 163 \N 10374 +79523 2025-11-06 22:41:43.665621+00 2025-11-06 22:41:43.665628+00 f t 8000.00 1 8000.00 11602 85 \N 10374 +79524 2025-11-06 22:55:40.398631+00 2025-11-06 22:55:40.398639+00 f t 46000.00 1 46000.00 11603 82 \N 10375 +79533 2025-11-06 23:12:10.907061+00 2025-11-06 23:12:10.907069+00 f t 46000.00 1 46000.00 11604 82 \N 10376 +79597 2025-11-06 23:34:21.500725+00 2025-11-06 23:34:21.500736+00 f t 34000.00 1 34000.00 11606 110 \N 10377 +79598 2025-11-06 23:34:21.510784+00 2025-11-06 23:34:21.510795+00 f t 46000.00 1 46000.00 11606 82 \N 10377 +79599 2025-11-06 23:34:21.516314+00 2025-11-06 23:34:21.516324+00 f t 13200.00 1 13200.00 11606 146 \N 10377 +79600 2025-11-06 23:34:21.522141+00 2025-11-06 23:34:21.52215+00 f t 8000.00 1 8000.00 11606 85 \N 10377 +79601 2025-11-06 23:34:21.528542+00 2025-11-06 23:34:21.528552+00 f t 24000.00 1 24000.00 11606 163 \N 10377 +79602 2025-11-07 00:39:22.303833+00 2025-11-07 00:39:22.303846+00 f t 32500.00 1 32500.00 11605 112 \N 10214 +79611 2025-11-07 00:56:11.307955+00 2025-11-07 00:56:11.307965+00 f t 46000.00 1 46000.00 11610 82 \N 10379 +79612 2025-11-07 00:56:11.316578+00 2025-11-07 00:56:11.316584+00 f t 75000.00 1 75000.00 11610 142 \N 10379 +79622 2025-11-07 01:38:00.16605+00 2025-11-07 01:38:00.16606+00 f t 11000.00 1 11000.00 11612 116 \N 10380 +79623 2025-11-07 02:12:43.660225+00 2025-11-07 02:12:43.660234+00 f t 46000.00 1 46000.00 11615 82 \N 10381 +85572 2025-11-17 22:31:28.538114+00 2025-11-17 22:31:28.538124+00 f t 55000.00 1 55000.00 12622 84 \N 11177 +79631 2025-11-07 02:33:10.157488+00 2025-11-07 02:33:10.1575+00 f t 46000.00 1 46000.00 11617 82 \N 10382 +79632 2025-11-07 02:33:10.170126+00 2025-11-07 02:33:10.170137+00 f t 46000.00 1 46000.00 11617 82 \N 10383 +79921 2025-11-07 13:37:11.216608+00 2025-11-07 13:37:11.216617+00 f t 24000.00 1 24000.00 11651 163 \N 10413 +79636 2025-11-07 03:49:05.736294+00 2025-11-07 03:49:05.736301+00 f t 31500.00 1 31500.00 11619 111 \N 10384 +79637 2025-11-07 03:49:05.743839+00 2025-11-07 03:49:05.743847+00 f t 78000.00 1 78000.00 11619 106 \N 10384 +79638 2025-11-07 03:49:41.124175+00 2025-11-07 03:49:41.124186+00 f t 78000.00 1 78000.00 11620 106 \N 10385 +79922 2025-11-07 13:37:11.224496+00 2025-11-07 13:37:11.224504+00 f t 46000.00 1 46000.00 11651 82 \N 10413 +79645 2025-11-07 04:32:59.263302+00 2025-11-07 04:32:59.263311+00 f t 46000.00 1 46000.00 11621 82 \N 10386 +79646 2025-11-07 04:47:24.576739+00 2025-11-07 04:47:24.576752+00 f t 55000.00 1 55000.00 11622 84 \N 10387 +79971 2025-11-07 16:48:05.67037+00 2025-11-07 16:48:05.670382+00 f t 46000.00 1 46000.00 11666 82 \N 8599 +79972 2025-11-07 16:48:05.681285+00 2025-11-07 16:48:05.681297+00 f t 46000.00 1 46000.00 11666 82 \N 8600 +79973 2025-11-07 16:48:05.687432+00 2025-11-07 16:48:05.687442+00 f t 33000.00 1 33000.00 11666 124 \N 8599 +79974 2025-11-07 16:48:05.693227+00 2025-11-07 16:48:05.693237+00 f t 8000.00 1 8000.00 11666 85 \N 8600 +79975 2025-11-07 16:48:05.699286+00 2025-11-07 16:48:05.699297+00 f t 15400.00 1 15400.00 11666 92 \N 8599 +79984 2025-11-07 16:55:49.736366+00 2025-11-07 16:55:49.736382+00 f t 46000.00 1 46000.00 11667 82 \N 10422 +79985 2025-11-07 16:55:49.747798+00 2025-11-07 16:55:49.747806+00 f t 24000.00 1 24000.00 11667 88 \N 10422 +79986 2025-11-07 16:55:49.752644+00 2025-11-07 16:55:49.752652+00 f t 24000.00 1 24000.00 11667 86 \N 10423 +79987 2025-11-07 16:55:49.757627+00 2025-11-07 16:55:49.757634+00 f t 46000.00 1 46000.00 11667 82 \N 10423 +79992 2025-11-07 17:03:08.280234+00 2025-11-07 17:03:08.280244+00 f t 107000.00 1 107000.00 11669 103 \N 10424 +82786 2025-11-12 21:33:35.163891+00 2025-11-12 21:33:35.163905+00 f t 46000.00 1 46000.00 12185 82 \N 10831 +82787 2025-11-12 21:33:35.174088+00 2025-11-12 21:33:35.174097+00 f t 8000.00 1 8000.00 12185 85 \N 10831 +82788 2025-11-12 21:33:35.179091+00 2025-11-12 21:33:35.1791+00 f t 24000.00 1 24000.00 12185 163 \N 10831 +82801 2025-11-13 00:01:30.986076+00 2025-11-13 00:01:30.986085+00 f t 46000.00 1 46000.00 12194 82 \N 323 +80017 2025-11-07 18:44:11.983727+00 2025-11-07 18:44:11.983739+00 f t 46000.00 1 46000.00 11676 82 \N 10430 +79668 2025-11-07 04:51:18.208823+00 2025-11-07 04:51:18.208831+00 f t 55000.00 1 55000.00 11623 84 \N 10388 +79672 2025-11-07 05:16:55.729723+00 2025-11-07 05:16:55.729732+00 f t 31500.00 1 31500.00 11624 111 \N 10389 +79677 2025-11-07 08:18:23.337033+00 2025-11-07 08:18:23.337046+00 f t 8000.00 1 8000.00 11627 85 \N 10391 +79678 2025-11-07 08:18:23.344836+00 2025-11-07 08:18:23.344843+00 f t 46000.00 1 46000.00 11627 82 \N 10391 +80093 2025-11-07 19:22:53.188513+00 2025-11-07 19:22:53.188522+00 f t 46000.00 1 46000.00 11687 82 \N 10438 +80094 2025-11-07 19:22:53.197394+00 2025-11-07 19:22:53.197402+00 f t 8000.00 1 8000.00 11687 85 \N 10438 +80095 2025-11-07 19:22:53.202386+00 2025-11-07 19:22:53.202396+00 f t 24000.00 1 24000.00 11687 163 \N 10438 +79687 2025-11-07 09:30:53.698826+00 2025-11-07 09:30:53.698834+00 f t 55000.00 1 55000.00 11628 84 \N 10392 +80144 2025-11-07 22:27:51.53592+00 2025-11-07 22:27:51.535929+00 f t 46000.00 1 46000.00 11701 82 \N 10447 +80149 2025-11-07 22:37:58.57036+00 2025-11-07 22:37:58.570372+00 f t 80000.00 1 80000.00 11704 173 \N 10450 +80150 2025-11-07 22:37:58.579155+00 2025-11-07 22:37:58.579162+00 f t 46000.00 1 46000.00 11704 82 \N 10450 +79697 2025-11-07 10:10:12.533857+00 2025-11-07 10:10:12.533866+00 f t 46000.00 1 46000.00 11630 82 \N 10394 +79698 2025-11-07 10:10:12.544757+00 2025-11-07 10:10:12.544768+00 f t 8000.00 1 8000.00 11630 85 \N 10394 +79699 2025-11-07 10:10:12.551234+00 2025-11-07 10:10:12.551246+00 f t 24000.00 1 24000.00 11630 163 \N 10394 +79706 2025-11-07 10:23:37.120056+00 2025-11-07 10:23:37.120069+00 f t 46000.00 1 46000.00 11632 82 \N 10396 +79707 2025-11-07 10:23:37.128355+00 2025-11-07 10:23:37.128369+00 f t 46000.00 1 46000.00 11632 82 \N 10397 +79708 2025-11-07 10:47:32.287109+00 2025-11-07 10:47:32.287118+00 f t 55000.00 1 55000.00 11633 84 \N 10398 +80181 2025-11-07 23:38:43.104917+00 2025-11-07 23:38:43.10493+00 f t 46000.00 1 46000.00 11712 82 \N 10455 +79717 2025-11-07 11:20:05.67128+00 2025-11-07 11:20:05.67129+00 f t 46000.00 1 46000.00 11635 82 \N 10399 +79718 2025-11-07 11:20:05.680104+00 2025-11-07 11:20:05.680112+00 f t 24000.00 1 24000.00 11635 163 \N 10399 +79719 2025-11-07 11:20:05.685112+00 2025-11-07 11:20:05.685118+00 f t 24000.00 1 24000.00 11635 163 \N 10400 +79720 2025-11-07 11:20:05.689711+00 2025-11-07 11:20:05.689717+00 f t 46000.00 1 46000.00 11635 82 \N 10400 +79723 2025-11-07 11:59:21.034512+00 2025-11-07 11:59:21.034522+00 f t 46000.00 1 46000.00 11637 82 \N 10401 +79727 2025-11-07 12:12:45.574042+00 2025-11-07 12:12:45.574051+00 f t 55000.00 1 55000.00 11640 84 \N 10403 +79737 2025-11-07 12:14:53.070102+00 2025-11-07 12:14:53.070111+00 f t 8000.00 1 8000.00 11639 85 \N 10402 +79738 2025-11-07 12:14:53.078465+00 2025-11-07 12:14:53.078473+00 f t 24000.00 1 24000.00 11639 86 \N 10402 +79739 2025-11-07 12:14:53.084845+00 2025-11-07 12:14:53.084854+00 f t 46000.00 1 46000.00 11639 82 \N 10402 +79740 2025-11-07 12:22:05.966007+00 2025-11-07 12:22:05.966018+00 f t 13200.00 1 13200.00 11641 146 \N 10214 +79750 2025-11-07 12:31:38.316334+00 2025-11-07 12:31:38.316342+00 f t 55000.00 1 55000.00 11642 84 \N 10404 +80512 2025-11-08 01:47:25.327495+00 2025-11-08 01:47:25.327504+00 f t 46000.00 1 46000.00 11719 82 \N 7289 +80513 2025-11-08 01:47:25.335685+00 2025-11-08 01:47:25.335693+00 f t 13200.00 1 13200.00 11719 146 \N 7289 +80514 2025-11-08 01:47:25.340006+00 2025-11-08 01:47:25.340014+00 f t 8000.00 1 8000.00 11719 85 \N 7289 +80515 2025-11-08 01:47:25.344786+00 2025-11-08 01:47:25.344792+00 f t 24000.00 1 24000.00 11719 163 \N 7289 +80609 2025-11-08 03:29:27.727513+00 2025-11-08 03:29:27.727525+00 f t 69000.00 1 69000.00 11724 141 \N 10467 +80610 2025-11-08 03:29:27.735286+00 2025-11-08 03:29:27.735294+00 f t 46000.00 1 46000.00 11724 82 \N 10467 +80624 2025-11-08 07:59:15.041415+00 2025-11-08 07:59:15.041425+00 f t 30000.00 1 30000.00 11728 83 \N 10470 +80632 2025-11-08 12:26:13.91438+00 2025-11-08 12:26:13.914393+00 f t 46000.00 1 46000.00 11733 82 \N 10475 +80665 2025-11-08 13:33:21.18817+00 2025-11-08 13:33:21.188179+00 f t 55000.00 1 55000.00 11740 84 \N 10479 +80669 2025-11-08 14:07:35.007847+00 2025-11-08 14:07:35.007856+00 f t 46000.00 1 46000.00 11744 82 \N 10482 +80701 2025-11-08 14:29:40.283847+00 2025-11-08 14:29:40.283861+00 f t 46000.00 1 46000.00 11745 82 \N 10484 +80702 2025-11-08 14:29:40.295651+00 2025-11-08 14:29:40.295664+00 f t 46000.00 1 46000.00 11745 82 \N 10486 +80704 2025-11-08 14:38:43.327833+00 2025-11-08 14:38:43.327843+00 f t 46000.00 1 46000.00 11747 82 \N 10487 +80734 2025-11-08 14:58:21.979453+00 2025-11-08 14:58:21.979463+00 f t 46000.00 1 46000.00 11751 82 \N 10493 +82789 2025-11-12 21:42:17.211894+00 2025-11-12 21:42:17.211902+00 f t 55000.00 1 55000.00 12187 84 \N 10833 +80809 2025-11-08 16:42:05.292746+00 2025-11-08 16:42:05.292757+00 f t 55000.00 1 55000.00 11762 84 \N 10502 +80811 2025-11-08 17:08:56.62097+00 2025-11-08 17:08:56.62098+00 f t 55000.00 1 55000.00 11763 84 \N 10503 +80813 2025-11-08 17:13:39.045306+00 2025-11-08 17:13:39.045316+00 f t 55000.00 1 55000.00 11766 84 \N 10507 +80814 2025-11-08 17:47:59.520611+00 2025-11-08 17:47:59.52062+00 f t 30000.00 1 30000.00 11768 83 \N 10510 +80815 2025-11-08 18:03:30.723345+00 2025-11-08 18:03:30.723354+00 f t 85000.00 1 85000.00 11734 108 \N 2933 +80819 2025-11-08 18:12:50.112492+00 2025-11-08 18:12:50.112504+00 f t 46000.00 1 46000.00 11770 82 \N 10511 +80820 2025-11-08 18:26:03.09551+00 2025-11-08 18:26:03.095521+00 f t 24000.00 1 24000.00 11772 86 \N 10512 +80821 2025-11-08 18:26:03.107319+00 2025-11-08 18:26:03.107332+00 f t 46000.00 1 46000.00 11772 82 \N 10512 +80826 2025-11-08 18:28:13.152436+00 2025-11-08 18:28:13.152445+00 f t 20500.00 1 20500.00 11773 109 \N 10513 +80827 2025-11-08 18:36:41.269916+00 2025-11-08 18:36:41.269925+00 f t 24000.00 1 24000.00 11775 86 \N 10515 +80828 2025-11-08 18:36:41.278968+00 2025-11-08 18:36:41.278979+00 f t 46000.00 1 46000.00 11775 82 \N 10515 +80829 2025-11-08 18:39:59.473959+00 2025-11-08 18:39:59.473968+00 f t 55000.00 1 55000.00 11776 84 \N 10350 +82924 2025-11-13 00:56:52.506845+00 2025-11-13 00:56:52.506853+00 f t 34000.00 1 34000.00 12201 110 \N 7289 +82925 2025-11-13 00:56:52.514685+00 2025-11-13 00:56:52.514692+00 f t 46000.00 1 46000.00 12201 82 \N 7289 +82934 2025-11-13 02:30:04.104789+00 2025-11-13 02:30:04.104803+00 f t 8000.00 1 8000.00 12204 85 \N 10845 +82935 2025-11-13 02:30:04.127789+00 2025-11-13 02:30:04.127803+00 f t 46000.00 1 46000.00 12204 82 \N 10845 +82943 2025-11-13 04:22:01.402815+00 2025-11-13 04:22:01.402825+00 f t 46000.00 1 46000.00 12209 82 \N 10849 +80836 2025-11-08 19:04:44.374016+00 2025-11-08 19:04:44.374028+00 f t 46000.00 1 46000.00 11778 82 \N 10516 +80837 2025-11-08 19:07:17.291771+00 2025-11-08 19:07:17.291782+00 f t 46000.00 1 46000.00 11779 82 \N 10517 +80838 2025-11-08 19:12:19.605971+00 2025-11-08 19:12:19.605979+00 f t 46000.00 1 46000.00 11780 82 \N 10428 +80839 2025-11-08 19:27:05.348529+00 2025-11-08 19:27:05.348539+00 f t 46000.00 1 46000.00 11781 82 \N 10518 +80840 2025-11-08 19:36:49.289406+00 2025-11-08 19:36:49.289416+00 f t 30000.00 1 30000.00 11782 83 \N 9803 +80841 2025-11-08 19:49:38.194251+00 2025-11-08 19:49:38.194261+00 f t 46000.00 1 46000.00 11783 82 \N 10278 +80842 2025-11-08 19:50:37.761386+00 2025-11-08 19:50:37.761398+00 f t 13200.00 1 13200.00 11784 146 \N 10278 +80843 2025-11-08 20:23:46.37365+00 2025-11-08 20:23:46.373658+00 f t 46000.00 1 46000.00 11786 82 \N 10519 +82954 2025-11-13 11:13:03.34413+00 2025-11-13 11:13:03.34414+00 f t 46000.00 1 46000.00 12218 82 \N 10856 +82963 2025-11-13 13:27:56.627444+00 2025-11-13 13:27:56.627453+00 f t 46000.00 1 46000.00 12228 82 \N 10861 +80846 2025-11-08 21:08:32.830628+00 2025-11-08 21:08:32.830639+00 f t 46000.00 1 46000.00 11788 82 \N 10520 +80851 2025-11-09 00:13:14.351295+00 2025-11-09 00:13:14.351305+00 f t 24000.00 1 24000.00 11797 163 \N 10526 +80852 2025-11-09 00:13:14.360691+00 2025-11-09 00:13:14.360699+00 f t 46000.00 1 46000.00 11797 82 \N 10526 +80855 2025-11-09 00:20:22.846014+00 2025-11-09 00:20:22.846023+00 f t 46000.00 1 46000.00 11798 82 \N 10527 +80856 2025-11-09 00:20:22.854002+00 2025-11-09 00:20:22.85401+00 f t 75000.00 1 75000.00 11798 142 \N 10527 +80857 2025-11-09 00:32:28.085252+00 2025-11-09 00:32:28.085261+00 f t 55000.00 1 55000.00 11799 84 \N 10528 +80862 2025-11-09 00:35:27.160197+00 2025-11-09 00:35:27.160205+00 f t 46000.00 1 46000.00 11800 82 \N 10529 +80863 2025-11-09 00:35:27.167569+00 2025-11-09 00:35:27.167577+00 f t 8000.00 1 8000.00 11800 85 \N 10529 +80864 2025-11-09 00:35:27.172615+00 2025-11-09 00:35:27.172625+00 f t 24000.00 1 24000.00 11800 163 \N 10529 +80891 2025-11-09 01:07:12.319292+00 2025-11-09 01:07:12.319301+00 f t 8000.00 1 8000.00 11801 85 \N 10530 +80892 2025-11-09 01:07:12.328338+00 2025-11-09 01:07:12.328347+00 f t 24000.00 1 24000.00 11801 88 \N 10530 +80893 2025-11-09 01:07:12.333177+00 2025-11-09 01:07:12.333184+00 f t 24000.00 1 24000.00 11801 163 \N 10530 +80894 2025-11-09 01:07:12.337932+00 2025-11-09 01:07:12.337938+00 f t 46000.00 1 46000.00 11801 82 \N 10530 +80902 2025-11-09 01:19:24.550394+00 2025-11-09 01:19:24.550403+00 f t 30000.00 1 30000.00 11802 83 \N 10531 +80926 2025-11-09 01:22:20.084378+00 2025-11-09 01:22:20.084387+00 f t 46000.00 1 46000.00 11749 82 \N 10490 +80927 2025-11-09 01:22:20.092122+00 2025-11-09 01:22:20.092129+00 f t 46000.00 1 46000.00 11749 82 \N 10491 +81011 2025-11-09 02:04:29.014657+00 2025-11-09 02:04:29.014667+00 f t 46000.00 1 46000.00 11805 82 \N 10534 +81012 2025-11-09 02:04:29.023696+00 2025-11-09 02:04:29.023703+00 f t 33000.00 1 33000.00 11805 122 \N 10534 +81013 2025-11-09 02:04:29.027948+00 2025-11-09 02:04:29.027955+00 f t 46000.00 1 46000.00 11805 82 \N 10535 +81014 2025-11-09 02:04:29.031899+00 2025-11-09 02:04:29.031905+00 f t 33000.00 1 33000.00 11805 122 \N 10535 +81015 2025-11-09 02:04:29.035842+00 2025-11-09 02:04:29.035848+00 f t 46000.00 1 46000.00 11805 82 \N 10536 +81016 2025-11-09 02:04:29.039868+00 2025-11-09 02:04:29.039874+00 f t 33000.00 1 33000.00 11805 122 \N 10536 +81017 2025-11-09 02:04:29.043724+00 2025-11-09 02:04:29.04373+00 f t 33000.00 1 33000.00 11805 122 \N 10537 +81018 2025-11-09 02:04:29.047955+00 2025-11-09 02:04:29.047963+00 f t 46000.00 1 46000.00 11805 82 \N 10537 +81021 2025-11-09 02:27:48.808466+00 2025-11-09 02:27:48.808475+00 f t 24000.00 1 24000.00 11806 86 \N 10538 +81022 2025-11-09 02:27:48.818516+00 2025-11-09 02:27:48.818525+00 f t 46000.00 1 46000.00 11806 82 \N 10538 +81023 2025-11-09 02:31:30.327085+00 2025-11-09 02:31:30.327094+00 f t 55000.00 1 55000.00 11807 84 \N 10539 +81036 2025-11-09 03:55:30.976237+00 2025-11-09 03:55:30.97625+00 f t 55000.00 1 55000.00 11810 84 \N 10541 +81038 2025-11-09 04:15:59.109881+00 2025-11-09 04:15:59.109891+00 f t 46000.00 1 46000.00 11814 82 \N 10542 +81040 2025-11-09 05:24:31.673853+00 2025-11-09 05:24:31.673865+00 f t 57000.00 1 57000.00 11816 98 \N 10543 +81045 2025-11-09 06:12:03.029258+00 2025-11-09 06:12:03.029267+00 f t 46000.00 1 46000.00 11817 82 \N 10544 +81048 2025-11-09 06:27:40.923287+00 2025-11-09 06:27:40.923295+00 f t 8000.00 1 8000.00 11818 85 \N 10545 +81049 2025-11-09 06:27:40.931229+00 2025-11-09 06:27:40.931236+00 f t 46000.00 1 46000.00 11818 82 \N 10545 +81062 2025-11-09 13:44:08.314689+00 2025-11-09 13:44:08.314701+00 f t 55000.00 1 55000.00 11825 84 \N 10548 +81070 2025-11-09 14:02:16.803223+00 2025-11-09 14:02:16.803236+00 f t 55000.00 1 55000.00 11827 84 \N 10549 +81071 2025-11-09 14:04:11.069012+00 2025-11-09 14:04:11.069022+00 f t 55000.00 1 55000.00 11828 84 \N 10550 +81072 2025-11-09 14:34:04.964056+00 2025-11-09 14:34:04.96407+00 f t 55000.00 1 55000.00 11831 84 \N 10552 +81075 2025-11-09 14:54:40.42152+00 2025-11-09 14:54:40.421529+00 f t 30000.00 1 30000.00 11835 83 \N 10554 +81076 2025-11-09 14:59:01.089733+00 2025-11-09 14:59:01.089747+00 f t 88000.00 1 88000.00 11836 167 \N 10555 +81091 2025-11-09 16:00:48.151663+00 2025-11-09 16:00:48.151678+00 f t 8000.00 1 8000.00 11837 85 \N 10556 +81092 2025-11-09 16:00:48.164875+00 2025-11-09 16:00:48.164888+00 f t 46000.00 1 46000.00 11837 82 \N 10556 +82790 2025-11-12 21:52:18.794647+00 2025-11-12 21:52:18.794656+00 f t 30000.00 1 30000.00 12188 83 \N 6192 +81094 2025-11-09 16:04:01.668823+00 2025-11-09 16:04:01.668835+00 f t 46000.00 1 46000.00 11839 82 \N 10557 +81100 2025-11-09 16:17:40.155022+00 2025-11-09 16:17:40.155031+00 f t 46000.00 1 46000.00 11840 82 \N 10558 +81101 2025-11-09 16:17:40.165245+00 2025-11-09 16:17:40.165254+00 f t 46000.00 1 46000.00 11840 82 \N 10559 +81102 2025-11-09 16:17:58.89903+00 2025-11-09 16:17:58.899038+00 f t 46000.00 1 46000.00 11843 82 \N 10561 +81110 2025-11-09 18:04:20.289679+00 2025-11-09 18:04:20.289687+00 f t 24000.00 1 24000.00 11847 86 \N 10562 +81111 2025-11-09 18:04:20.29819+00 2025-11-09 18:04:20.298201+00 f t 46000.00 1 46000.00 11847 82 \N 10562 +82928 2025-11-13 00:56:52.527828+00 2025-11-13 00:56:52.527834+00 f t 13200.00 1 13200.00 12201 146 \N 7289 +82926 2025-11-13 00:56:52.519176+00 2025-11-13 00:56:52.519183+00 f t 8000.00 1 8000.00 12201 85 \N 7289 +82927 2025-11-13 00:56:52.523791+00 2025-11-13 00:56:52.523797+00 f t 24000.00 1 24000.00 12201 163 \N 7289 +82936 2025-11-13 02:42:11.866919+00 2025-11-13 02:42:11.866931+00 f t 46000.00 1 46000.00 12205 82 \N 10846 +82944 2025-11-13 04:28:25.063399+00 2025-11-13 04:28:25.063411+00 f t 46000.00 1 46000.00 12210 82 \N 10850 +82964 2025-11-13 13:41:08.466931+00 2025-11-13 13:41:08.46694+00 f t 46000.00 1 46000.00 12229 82 \N 10862 +81123 2025-11-09 18:28:43.261294+00 2025-11-09 18:28:43.261303+00 f t 46000.00 1 46000.00 11849 82 \N 10564 +81130 2025-11-09 18:44:55.810432+00 2025-11-09 18:44:55.810441+00 f t 46000.00 1 46000.00 11848 82 \N 10563 +81135 2025-11-09 19:10:48.995909+00 2025-11-09 19:10:48.995918+00 f t 46000.00 1 46000.00 11850 82 \N 10565 +81136 2025-11-09 19:10:49.005279+00 2025-11-09 19:10:49.005287+00 f t 8000.00 1 8000.00 11850 85 \N 10565 +81137 2025-11-09 19:10:49.010513+00 2025-11-09 19:10:49.01052+00 f t 24000.00 1 24000.00 11850 87 \N 10565 +83028 2025-11-13 14:59:24.56407+00 2025-11-13 14:59:24.564079+00 f t 55000.00 1 55000.00 12236 84 \N 10868 +81140 2025-11-09 19:30:41.266914+00 2025-11-09 19:30:41.266923+00 f t 55000.00 1 55000.00 11852 84 \N 10567 +81141 2025-11-09 19:32:53.464593+00 2025-11-09 19:32:53.464602+00 f t 88000.00 1 88000.00 11853 167 \N 10567 +81142 2025-11-09 19:44:59.010741+00 2025-11-09 19:44:59.010749+00 f t 55000.00 1 55000.00 11854 84 \N 10568 +81143 2025-11-09 19:46:51.454383+00 2025-11-09 19:46:51.454391+00 f t 78000.00 1 78000.00 11855 106 \N 10568 +83037 2025-11-13 15:39:45.955756+00 2025-11-13 15:39:45.955764+00 f t 34000.00 1 34000.00 12238 110 \N 365 +83038 2025-11-13 15:39:45.963302+00 2025-11-13 15:39:45.96331+00 f t 46000.00 1 46000.00 12238 82 \N 365 +83039 2025-11-13 15:39:45.967529+00 2025-11-13 15:39:45.967536+00 f t 13200.00 1 13200.00 12238 146 \N 365 +83040 2025-11-13 15:39:45.971533+00 2025-11-13 15:39:45.971539+00 f t 7700.00 1 7700.00 12238 93 \N 365 +83057 2025-11-13 16:38:00.706649+00 2025-11-13 16:38:00.706659+00 f t 8000.00 1 8000.00 12244 85 \N 10874 +83058 2025-11-13 16:38:00.716548+00 2025-11-13 16:38:00.716557+00 f t 46000.00 1 46000.00 12244 82 \N 10874 +83072 2025-11-13 18:18:36.957324+00 2025-11-13 18:18:36.957332+00 f t 46000.00 1 46000.00 11925 82 \N 10626 +81169 2025-11-09 19:50:23.442459+00 2025-11-09 19:50:23.442468+00 f t 31500.00 1 31500.00 11856 111 \N 10568 +81170 2025-11-09 19:50:23.449555+00 2025-11-09 19:50:23.449562+00 f t 13200.00 1 13200.00 11856 146 \N 10568 +81171 2025-11-09 19:50:23.453342+00 2025-11-09 19:50:23.453347+00 f t 23000.00 1 23000.00 11856 172 \N 10568 +81200 2025-11-09 19:59:44.91484+00 2025-11-09 19:59:44.914849+00 f t 30000.00 1 30000.00 11860 83 \N 10570 +81201 2025-11-09 20:04:47.011457+00 2025-11-09 20:04:47.011467+00 f t 45000.00 1 45000.00 11861 168 \N 8096 +81202 2025-11-09 20:08:35.846299+00 2025-11-09 20:08:35.846307+00 f t 55000.00 1 55000.00 11862 84 \N 10571 +81208 2025-11-09 20:11:21.615191+00 2025-11-09 20:11:21.6152+00 f t 55000.00 1 55000.00 11863 84 \N 10572 +81212 2025-11-09 20:21:37.918932+00 2025-11-09 20:21:37.918941+00 f t 46000.00 1 46000.00 11753 82 \N 10475 +81213 2025-11-09 20:21:37.927063+00 2025-11-09 20:21:37.927074+00 f t 7700.00 1 7700.00 11753 93 \N 10475 +81218 2025-11-09 20:25:36.603889+00 2025-11-09 20:25:36.603898+00 f t 46000.00 1 46000.00 11864 82 \N 10573 +81219 2025-11-09 20:25:36.612046+00 2025-11-09 20:25:36.612054+00 f t 8000.00 1 8000.00 11864 85 \N 10574 +81220 2025-11-09 20:25:36.616796+00 2025-11-09 20:25:36.616804+00 f t 46000.00 1 46000.00 11864 82 \N 10574 +81225 2025-11-09 20:28:13.190719+00 2025-11-09 20:28:13.190727+00 f t 46000.00 1 46000.00 11865 82 \N 10575 +81226 2025-11-09 20:28:13.198943+00 2025-11-09 20:28:13.198951+00 f t 8000.00 1 8000.00 11865 85 \N 10575 +81227 2025-11-09 20:28:13.203179+00 2025-11-09 20:28:13.203186+00 f t 24000.00 1 24000.00 11865 86 \N 10575 +81232 2025-11-09 20:34:20.542963+00 2025-11-09 20:34:20.542973+00 f t 55000.00 1 55000.00 11866 84 \N 10576 +81233 2025-11-09 22:12:20.55594+00 2025-11-09 22:12:20.55595+00 f t 72500.00 1 72500.00 11867 104 \N 10577 +81256 2025-11-10 00:26:22.533692+00 2025-11-10 00:26:22.5337+00 f t 46000.00 1 46000.00 11870 82 \N 10580 +81257 2025-11-10 00:26:22.542295+00 2025-11-10 00:26:22.542303+00 f t 29000.00 1 29000.00 11870 139 \N 10580 +81258 2025-11-10 00:26:22.547213+00 2025-11-10 00:26:22.547221+00 f t 33000.00 1 33000.00 11870 123 \N 10580 +81268 2025-11-10 01:28:27.057595+00 2025-11-10 01:28:27.057607+00 f t 55000.00 1 55000.00 11873 84 \N 10582 +81281 2025-11-10 01:31:09.272962+00 2025-11-10 01:31:09.272974+00 f t 46000.00 1 46000.00 11872 82 \N 10581 +81282 2025-11-10 01:31:09.283221+00 2025-11-10 01:31:09.283233+00 f t 24000.00 1 24000.00 11872 132 \N 10581 +81283 2025-11-10 01:31:09.289513+00 2025-11-10 01:31:09.289523+00 f t 24000.00 1 24000.00 11872 125 \N 10583 +81284 2025-11-10 01:31:09.295278+00 2025-11-10 01:31:09.295288+00 f t 46000.00 1 46000.00 11872 82 \N 10583 +81286 2025-11-10 03:17:58.306426+00 2025-11-10 03:17:58.306436+00 f t 15400.00 1 15400.00 11877 92 \N 10588 +81287 2025-11-10 03:17:58.314091+00 2025-11-10 03:17:58.314099+00 f t 46000.00 1 46000.00 11877 82 \N 10588 +81355 2025-11-10 03:42:57.827882+00 2025-11-10 03:42:57.82789+00 f t 24000.00 1 24000.00 11879 131 \N 10590 +81356 2025-11-10 03:42:57.83636+00 2025-11-10 03:42:57.836368+00 f t 30000.00 1 30000.00 11879 83 \N 10590 +81357 2025-11-10 03:42:57.840809+00 2025-11-10 03:42:57.840814+00 f t 8000.00 1 8000.00 11879 85 \N 10590 +81358 2025-11-10 03:42:57.845166+00 2025-11-10 03:42:57.845171+00 f t 24000.00 1 24000.00 11879 88 \N 10590 +81359 2025-11-10 03:42:57.849425+00 2025-11-10 03:42:57.849431+00 f t 24000.00 1 24000.00 11879 163 \N 10590 +81360 2025-11-10 03:42:57.85377+00 2025-11-10 03:42:57.853775+00 f t 46000.00 1 46000.00 11879 82 \N 10590 +81363 2025-11-10 03:45:44.224851+00 2025-11-10 03:45:44.22486+00 f t 78000.00 1 78000.00 11880 106 \N 10591 +81364 2025-11-10 03:45:44.233644+00 2025-11-10 03:45:44.233651+00 f t 46000.00 1 46000.00 11880 82 \N 10591 +81373 2025-11-10 03:58:48.788528+00 2025-11-10 03:58:48.788536+00 f t 46000.00 1 46000.00 11881 82 \N 10592 +81374 2025-11-10 03:58:48.798239+00 2025-11-10 03:58:48.798263+00 f t 69000.00 1 69000.00 11881 141 \N 10592 +81375 2025-11-10 04:03:33.125994+00 2025-11-10 04:03:33.126006+00 f t 46000.00 1 46000.00 11882 82 \N 10593 +81378 2025-11-10 04:59:41.625345+00 2025-11-10 04:59:41.625357+00 f t 46000.00 1 46000.00 11884 82 \N 10594 +81379 2025-11-10 05:38:28.798478+00 2025-11-10 05:38:28.798488+00 f t 24000.00 1 24000.00 11885 86 \N 10595 +81380 2025-11-10 05:38:28.807567+00 2025-11-10 05:38:28.807574+00 f t 46000.00 1 46000.00 11885 82 \N 10595 +82716 2025-11-12 20:49:33.991551+00 2025-11-12 20:49:33.991563+00 f t 20500.00 1 20500.00 12176 109 \N 10821 +81383 2025-11-10 07:59:35.461345+00 2025-11-10 07:59:35.461354+00 f t 55000.00 1 55000.00 11886 84 \N 10596 +81385 2025-11-10 08:12:49.79538+00 2025-11-10 08:12:49.795388+00 f t 55000.00 1 55000.00 11887 84 \N 10597 +81386 2025-11-10 08:59:07.379495+00 2025-11-10 08:59:07.379504+00 f t 46000.00 1 46000.00 11888 82 \N 10598 +81388 2025-11-10 09:33:03.602479+00 2025-11-10 09:33:03.602487+00 f t 46000.00 1 46000.00 11889 82 \N 10599 +81390 2025-11-10 10:32:37.220509+00 2025-11-10 10:32:37.220518+00 f t 46000.00 1 46000.00 11892 82 \N 10600 +81391 2025-11-10 10:59:29.89064+00 2025-11-10 10:59:29.890649+00 f t 24000.00 1 24000.00 11893 86 \N 10601 +81392 2025-11-10 10:59:29.899811+00 2025-11-10 10:59:29.899818+00 f t 46000.00 1 46000.00 11893 82 \N 10601 +81393 2025-11-10 11:03:12.541744+00 2025-11-10 11:03:12.541752+00 f t 34000.00 1 34000.00 11894 110 \N 10602 +81396 2025-11-10 11:07:15.071365+00 2025-11-10 11:07:15.071374+00 f t 34000.00 1 34000.00 11895 110 \N 10603 +81399 2025-11-10 11:10:44.371012+00 2025-11-10 11:10:44.371021+00 f t 46000.00 1 46000.00 11896 82 \N 10604 +81400 2025-11-10 11:10:44.379304+00 2025-11-10 11:10:44.379311+00 f t 24000.00 1 24000.00 11896 125 \N 10604 +81404 2025-11-10 11:54:19.05214+00 2025-11-10 11:54:19.05215+00 f t 46000.00 1 46000.00 11898 82 \N 10605 +81405 2025-11-10 11:59:51.618313+00 2025-11-10 11:59:51.618325+00 f t 55000.00 1 55000.00 11899 84 \N 10606 +81416 2025-11-10 12:28:30.988304+00 2025-11-10 12:28:30.988312+00 f t 46000.00 1 46000.00 11900 82 \N 10607 +82937 2025-11-13 03:04:02.75252+00 2025-11-13 03:04:02.752529+00 f t 55000.00 1 55000.00 12207 84 \N 10847 +82945 2025-11-13 07:37:35.343988+00 2025-11-13 07:37:35.343999+00 f t 24000.00 1 24000.00 12211 86 \N 10851 +82946 2025-11-13 07:37:35.352081+00 2025-11-13 07:37:35.352088+00 f t 46000.00 1 46000.00 12211 82 \N 10851 +81423 2025-11-10 13:47:15.415361+00 2025-11-10 13:47:15.41537+00 f t 13200.00 1 13200.00 11903 146 \N 10475 +81431 2025-11-10 13:51:56.740911+00 2025-11-10 13:51:56.740922+00 f t 46000.00 1 46000.00 11902 82 \N 10609 +81432 2025-11-10 13:51:56.749346+00 2025-11-10 13:51:56.749355+00 f t 33000.00 1 33000.00 11902 117 \N 10609 +81433 2025-11-10 13:51:56.75483+00 2025-11-10 13:51:56.754838+00 f t 8000.00 1 8000.00 11902 85 \N 10609 +81434 2025-11-10 13:51:56.759305+00 2025-11-10 13:51:56.759311+00 f t 24000.00 1 24000.00 11902 86 \N 10609 +81435 2025-11-10 13:51:56.763808+00 2025-11-10 13:51:56.763815+00 f t 7700.00 1 7700.00 11902 91 \N 10609 +81436 2025-11-10 13:56:00.623231+00 2025-11-10 13:56:00.623241+00 f t 72500.00 1 72500.00 11857 104 \N 10569 +83029 2025-11-13 15:00:36.053124+00 2025-11-13 15:00:36.053133+00 f t 8000.00 1 8000.00 12232 85 \N 10863 +81445 2025-11-10 14:05:23.014639+00 2025-11-10 14:05:23.014648+00 f t 46000.00 1 46000.00 11905 82 \N 10610 +81446 2025-11-10 14:08:52.692151+00 2025-11-10 14:08:52.692162+00 f t 81500.00 1 81500.00 11906 143 \N 10611 +81447 2025-11-10 14:08:52.70213+00 2025-11-10 14:08:52.702141+00 f t 46000.00 1 46000.00 11906 82 \N 10611 +83030 2025-11-13 15:00:36.062997+00 2025-11-13 15:00:36.063009+00 f t 46000.00 1 46000.00 12232 82 \N 10863 +81450 2025-11-10 14:21:58.703719+00 2025-11-10 14:21:58.703727+00 f t 46000.00 1 46000.00 11908 82 \N 5944 +81451 2025-11-10 14:21:58.712258+00 2025-11-10 14:21:58.712266+00 f t 24000.00 1 24000.00 11908 163 \N 5944 +81452 2025-11-10 14:21:58.716751+00 2025-11-10 14:21:58.71676+00 f t 7700.00 1 7700.00 11908 91 \N 5944 +83073 2025-11-13 18:18:36.965857+00 2025-11-13 18:18:36.965865+00 f t 8000.00 1 8000.00 11925 85 \N 10626 +83074 2025-11-13 18:18:36.970624+00 2025-11-13 18:18:36.97063+00 f t 24000.00 1 24000.00 11925 163 \N 10626 +81472 2025-11-10 14:33:40.762219+00 2025-11-10 14:33:40.762227+00 f t 46000.00 1 46000.00 11909 82 \N 10612 +81473 2025-11-10 14:36:26.24647+00 2025-11-10 14:36:26.246479+00 f t 46000.00 1 46000.00 11910 82 \N 10613 +81476 2025-11-10 15:04:56.460436+00 2025-11-10 15:04:56.460445+00 f t 55000.00 1 55000.00 11913 84 \N 10614 +81477 2025-11-10 15:04:56.468518+00 2025-11-10 15:04:56.468526+00 f t 30000.00 1 30000.00 11913 83 \N 10614 +81478 2025-11-10 15:14:07.480329+00 2025-11-10 15:14:07.480339+00 f t 78000.00 1 78000.00 11914 106 \N 10615 +81482 2025-11-10 15:17:46.080641+00 2025-11-10 15:17:46.080651+00 f t 55000.00 1 55000.00 11916 84 \N 10616 +83156 2025-11-13 19:53:23.336666+00 2025-11-13 19:53:23.336674+00 f t 46000.00 1 46000.00 12263 82 \N 10886 +83157 2025-11-13 19:53:23.343812+00 2025-11-13 19:53:23.343818+00 f t 24000.00 1 24000.00 12263 86 \N 10886 +83162 2025-11-13 20:01:30.854784+00 2025-11-13 20:01:30.854792+00 f t 8000.00 1 8000.00 12265 85 \N 10889 +83163 2025-11-13 20:01:30.863518+00 2025-11-13 20:01:30.863527+00 f t 46000.00 1 46000.00 12265 82 \N 10889 +83175 2025-11-13 20:31:45.671476+00 2025-11-13 20:31:45.671484+00 f t 46000.00 1 46000.00 12266 82 \N 498 +83176 2025-11-13 20:31:45.679232+00 2025-11-13 20:31:45.679239+00 f t 46000.00 1 46000.00 12266 82 \N 497 +83177 2025-11-13 20:31:45.68351+00 2025-11-13 20:31:45.683518+00 f t 8000.00 1 8000.00 12266 85 \N 498 +83178 2025-11-13 20:31:45.687993+00 2025-11-13 20:31:45.688+00 f t 8000.00 1 8000.00 12266 85 \N 497 +81493 2025-11-10 16:08:38.058192+00 2025-11-10 16:08:38.058203+00 f t 32500.00 1 32500.00 11921 112 \N 10620 +83179 2025-11-13 20:31:45.692181+00 2025-11-13 20:31:45.692187+00 f t 24000.00 1 24000.00 12266 86 \N 498 +83180 2025-11-13 20:31:45.696145+00 2025-11-13 20:31:45.696151+00 f t 24000.00 1 24000.00 12266 163 \N 497 +83185 2025-11-13 22:15:46.719304+00 2025-11-13 22:15:46.719313+00 f t 46000.00 1 46000.00 12273 82 \N 10896 +83240 2025-11-13 23:10:18.149452+00 2025-11-13 23:10:18.149463+00 f t 46000.00 1 46000.00 12280 82 \N 10902 +83250 2025-11-13 23:34:35.818388+00 2025-11-13 23:34:35.818396+00 f t 32500.00 1 32500.00 12289 112 \N 10907 +83385 2025-11-14 01:57:24.087645+00 2025-11-14 01:57:24.087653+00 f t 8000.00 1 8000.00 12313 85 \N 10924 +83386 2025-11-14 01:57:24.097292+00 2025-11-14 01:57:24.097302+00 f t 46000.00 1 46000.00 12313 82 \N 10924 +83394 2025-11-14 10:13:25.041462+00 2025-11-14 10:13:25.041473+00 f t 8000.00 1 8000.00 12324 85 \N 10932 +83395 2025-11-14 10:13:25.050309+00 2025-11-14 10:13:25.050317+00 f t 46000.00 1 46000.00 12324 82 \N 10932 +83416 2025-11-14 10:53:57.540064+00 2025-11-14 10:53:57.540077+00 f t 20500.00 1 20500.00 12326 109 \N 10934 +83417 2025-11-14 10:53:57.550159+00 2025-11-14 10:53:57.55017+00 f t 0.00 1 0.00 12326 166 \N 10934 +83418 2025-11-14 10:53:57.555497+00 2025-11-14 10:53:57.555506+00 f t 13200.00 1 13200.00 12326 146 \N 10934 +83432 2025-11-14 11:00:57.473322+00 2025-11-14 11:00:57.473331+00 f t 88000.00 1 88000.00 12328 167 \N 10936 +83447 2025-11-14 11:17:38.645924+00 2025-11-14 11:17:38.645932+00 f t 78000.00 1 78000.00 12330 106 \N 10917 +85589 2025-11-17 23:53:55.513504+00 2025-11-17 23:53:55.513512+00 f t 46000.00 1 46000.00 12637 82 \N 11189 +88951 2025-11-24 02:12:02.371146+00 2025-11-24 02:12:02.371159+00 f t 24000.00 1 24000.00 13346 163 \N 11777 +88952 2025-11-24 02:12:02.400585+00 2025-11-24 02:12:02.400598+00 f t 46000.00 1 46000.00 13346 82 \N 11777 +81606 2025-11-10 16:22:32.712921+00 2025-11-10 16:22:32.712933+00 f t 46000.00 1 46000.00 11922 82 \N 10621 +81607 2025-11-10 16:22:32.724075+00 2025-11-10 16:22:32.724086+00 f t 8000.00 1 8000.00 11922 85 \N 10621 +81608 2025-11-10 16:22:32.7293+00 2025-11-10 16:22:32.729309+00 f t 24000.00 1 24000.00 11922 163 \N 10621 +81609 2025-11-10 16:22:32.735003+00 2025-11-10 16:22:32.735013+00 f t 46000.00 1 46000.00 11922 82 \N 10622 +81610 2025-11-10 16:22:32.740878+00 2025-11-10 16:22:32.740887+00 f t 8000.00 1 8000.00 11922 85 \N 10622 +81611 2025-11-10 16:22:32.746571+00 2025-11-10 16:22:32.74658+00 f t 24000.00 1 24000.00 11922 163 \N 10622 +81612 2025-11-10 16:22:32.751686+00 2025-11-10 16:22:32.751695+00 f t 46000.00 1 46000.00 11922 82 \N 10623 +81613 2025-11-10 16:22:32.757159+00 2025-11-10 16:22:32.757167+00 f t 8000.00 1 8000.00 11922 85 \N 10623 +81614 2025-11-10 16:22:32.762567+00 2025-11-10 16:22:32.762575+00 f t 24000.00 1 24000.00 11922 163 \N 10623 +81616 2025-11-10 16:29:58.385321+00 2025-11-10 16:29:58.385333+00 f t 20500.00 1 20500.00 11924 109 \N 10625 +81629 2025-11-10 17:22:18.053846+00 2025-11-10 17:22:18.053857+00 f t 8000.00 1 8000.00 11932 85 \N 10630 +81630 2025-11-10 17:22:18.063647+00 2025-11-10 17:22:18.063655+00 f t 46000.00 1 46000.00 11932 82 \N 10630 +81634 2025-11-10 17:59:10.240482+00 2025-11-10 17:59:10.24049+00 f t 24000.00 1 24000.00 11936 86 \N 10633 +81635 2025-11-10 17:59:10.248982+00 2025-11-10 17:59:10.248991+00 f t 46000.00 1 46000.00 11936 82 \N 10633 +81639 2025-11-10 17:59:28.807206+00 2025-11-10 17:59:28.807215+00 f t 46000.00 1 46000.00 11935 82 \N 10632 +81640 2025-11-10 17:59:28.814775+00 2025-11-10 17:59:28.814782+00 f t 93750.00 1 93750.00 11935 90 \N 10632 +81643 2025-11-10 18:00:01.806651+00 2025-11-10 18:00:01.806665+00 f t 55000.00 1 55000.00 11937 84 \N 10634 +81647 2025-11-10 19:20:03.804696+00 2025-11-10 19:20:03.804711+00 f t 24000.00 1 24000.00 11938 86 \N 10635 +81648 2025-11-10 19:20:03.831027+00 2025-11-10 19:20:03.831043+00 f t 46000.00 1 46000.00 11938 82 \N 10635 +81656 2025-11-10 19:38:20.935002+00 2025-11-10 19:38:20.935013+00 f t 46000.00 1 46000.00 11940 82 \N 10636 +81662 2025-11-10 19:53:00.79639+00 2025-11-10 19:53:00.796401+00 f t 32500.00 1 32500.00 11917 112 \N 10618 +81663 2025-11-10 19:53:00.805644+00 2025-11-10 19:53:00.805651+00 f t 23000.00 1 23000.00 11917 172 \N 10618 +81664 2025-11-10 19:53:00.80953+00 2025-11-10 19:53:00.809536+00 f t 13200.00 1 13200.00 11917 146 \N 10618 +81665 2025-11-10 19:54:21.322482+00 2025-11-10 19:54:21.322492+00 f t 107000.00 1 107000.00 11942 103 \N 10618 +81666 2025-11-10 19:56:25.859747+00 2025-11-10 19:56:25.860317+00 f t 13200.00 1 13200.00 11943 146 \N 10618 +81679 2025-11-10 20:04:34.75607+00 2025-11-10 20:04:34.756081+00 f t 46000.00 1 46000.00 11944 82 \N 10618 +81690 2025-11-10 20:05:45.933211+00 2025-11-10 20:05:45.933223+00 f t 78000.00 1 78000.00 11948 106 \N 10640 +81694 2025-11-10 20:15:15.207083+00 2025-11-10 20:15:15.207457+00 f t 46000.00 1 46000.00 11951 82 \N 10641 +81714 2025-11-10 20:24:18.04183+00 2025-11-10 20:24:18.042448+00 f t 57000.00 1 57000.00 11955 98 \N 10645 +81722 2025-11-10 20:42:21.470511+00 2025-11-10 20:42:21.470864+00 f t 85000.00 1 85000.00 11957 108 \N 10646 +81729 2025-11-10 21:08:14.158966+00 2025-11-10 21:08:14.158979+00 f t 7700.00 1 7700.00 11960 91 \N 10649 +81730 2025-11-10 21:08:14.169242+00 2025-11-10 21:08:14.169253+00 f t 46000.00 1 46000.00 11960 82 \N 10649 +81732 2025-11-10 21:11:31.011756+00 2025-11-10 21:11:31.011765+00 f t 8000.00 1 8000.00 11961 85 \N 10650 +81733 2025-11-10 21:11:31.022341+00 2025-11-10 21:11:31.022349+00 f t 46000.00 1 46000.00 11961 82 \N 10650 +81734 2025-11-10 21:16:59.637253+00 2025-11-10 21:16:59.637265+00 f t 55000.00 1 55000.00 11963 84 \N 10651 +81735 2025-11-10 21:27:19.469072+00 2025-11-10 21:27:19.469082+00 f t 46000.00 1 46000.00 11965 82 \N 10653 +81741 2025-11-10 21:35:16.56193+00 2025-11-10 21:35:16.561938+00 f t 46000.00 1 46000.00 11969 82 \N 10490 +81742 2025-11-10 21:35:16.569054+00 2025-11-10 21:35:16.569061+00 f t 46000.00 1 46000.00 11969 82 \N 10491 +81753 2025-11-10 22:02:35.220723+00 2025-11-10 22:02:35.220732+00 f t 46000.00 1 46000.00 11972 82 \N 10658 +81754 2025-11-10 22:02:35.229368+00 2025-11-10 22:02:35.229377+00 f t 8000.00 1 8000.00 11972 85 \N 10658 +81755 2025-11-10 22:02:35.233829+00 2025-11-10 22:02:35.233836+00 f t 24000.00 1 24000.00 11972 163 \N 10658 +81756 2025-11-10 22:41:59.088983+00 2025-11-10 22:41:59.088992+00 f t 8000.00 1 8000.00 11974 85 \N 10660 +81757 2025-11-10 22:41:59.09712+00 2025-11-10 22:41:59.097134+00 f t 46000.00 1 46000.00 11974 82 \N 10660 +81760 2025-11-10 22:54:47.472174+00 2025-11-10 22:54:47.472182+00 f t 46000.00 1 46000.00 11976 82 \N 10662 +81761 2025-11-10 22:54:47.480547+00 2025-11-10 22:54:47.480555+00 f t 85000.00 1 85000.00 11976 108 \N 10662 +81762 2025-11-10 23:16:03.77146+00 2025-11-10 23:16:03.77147+00 f t 24000.00 1 24000.00 11978 88 \N 10663 +81763 2025-11-10 23:16:03.78086+00 2025-11-10 23:16:03.780873+00 f t 46000.00 1 46000.00 11978 82 \N 10663 +81765 2025-11-10 23:41:34.638399+00 2025-11-10 23:41:34.638408+00 f t 23000.00 1 23000.00 11980 172 \N 9803 +81766 2025-11-10 23:41:34.64743+00 2025-11-10 23:41:34.647438+00 f t 13200.00 1 13200.00 11980 146 \N 9803 +81767 2025-11-10 23:50:04.617657+00 2025-11-10 23:50:04.618292+00 f t 30000.00 1 30000.00 11981 83 \N 10664 +81769 2025-11-10 23:59:37.643532+00 2025-11-10 23:59:37.644443+00 f t 46000.00 1 46000.00 11982 82 \N 10665 +81779 2025-11-11 01:21:47.35023+00 2025-11-11 01:21:47.350239+00 f t 46000.00 1 46000.00 11986 82 \N 10667 +81780 2025-11-11 01:21:47.359962+00 2025-11-11 01:21:47.359969+00 f t 7700.00 1 7700.00 11986 91 \N 10667 +81785 2025-11-11 01:41:33.321573+00 2025-11-11 01:41:33.321582+00 f t 46000.00 1 46000.00 11987 82 \N 10668 +81786 2025-11-11 01:41:33.329138+00 2025-11-11 01:41:33.329146+00 f t 46000.00 1 46000.00 11987 82 \N 10669 +81787 2025-11-11 02:06:20.59265+00 2025-11-11 02:06:20.592658+00 f t 8000.00 1 8000.00 11988 85 \N 10670 +81788 2025-11-11 02:06:20.601456+00 2025-11-11 02:06:20.601464+00 f t 46000.00 1 46000.00 11988 82 \N 10670 +81806 2025-11-11 03:39:45.493207+00 2025-11-11 03:39:45.493217+00 f t 46000.00 1 46000.00 11994 82 \N 10676 +81809 2025-11-11 03:51:20.782177+00 2025-11-11 03:51:20.782337+00 f t 46000.00 1 46000.00 11995 82 \N 10677 +81810 2025-11-11 03:51:20.791732+00 2025-11-11 03:51:20.79174+00 f t 57000.00 1 57000.00 11995 98 \N 10677 +81812 2025-11-11 05:57:46.498661+00 2025-11-11 05:57:46.498671+00 f t 46000.00 1 46000.00 11996 82 \N 10678 +81813 2025-11-11 07:47:44.307533+00 2025-11-11 07:47:44.307546+00 f t 8000.00 1 8000.00 11997 85 \N 10679 +81814 2025-11-11 07:47:44.318888+00 2025-11-11 07:47:44.3189+00 f t 46000.00 1 46000.00 11997 82 \N 10679 +81821 2025-11-11 10:41:54.243493+00 2025-11-11 10:41:54.243961+00 f t 55000.00 1 55000.00 12002 84 \N 10682 +81822 2025-11-11 10:43:56.507272+00 2025-11-11 10:43:56.507285+00 f t 8000.00 1 8000.00 12003 85 \N 10683 +81823 2025-11-11 10:43:56.517022+00 2025-11-11 10:43:56.517029+00 f t 46000.00 1 46000.00 12003 82 \N 10683 +81829 2025-11-11 10:50:53.017992+00 2025-11-11 10:50:53.018001+00 f t 46000.00 1 46000.00 12004 82 \N 10684 +82793 2025-11-12 22:22:29.622232+00 2025-11-12 22:22:29.622242+00 f t 46000.00 1 46000.00 12179 82 \N 10823 +82892 2025-11-13 00:52:47.976668+00 2025-11-13 00:52:47.97668+00 f t 46000.00 1 46000.00 12199 82 \N 10841 +82893 2025-11-13 00:52:47.985046+00 2025-11-13 00:52:47.985054+00 f t 8000.00 1 8000.00 12199 85 \N 10841 +82894 2025-11-13 00:52:47.989569+00 2025-11-13 00:52:47.989577+00 f t 24000.00 1 24000.00 12199 163 \N 10841 +82895 2025-11-13 00:52:47.993636+00 2025-11-13 00:52:47.993642+00 f t 34000.00 1 34000.00 12199 110 \N 10841 +81851 2025-11-11 11:10:10.380978+00 2025-11-11 11:10:10.38099+00 f t 34000.00 1 34000.00 12006 110 \N 10686 +81853 2025-11-11 13:04:21.41888+00 2025-11-11 13:04:21.418889+00 f t 85000.00 1 85000.00 12011 108 \N 10691 +81855 2025-11-11 13:07:34.82271+00 2025-11-11 13:07:34.82272+00 f t 85000.00 1 85000.00 12010 108 \N 10690 +81856 2025-11-11 13:18:18.639408+00 2025-11-11 13:18:18.639419+00 f t 24000.00 1 24000.00 12013 163 \N 10692 +81857 2025-11-11 13:18:18.650962+00 2025-11-11 13:18:18.650973+00 f t 46000.00 1 46000.00 12013 82 \N 10692 +81860 2025-11-11 13:23:14.948574+00 2025-11-11 13:23:14.948586+00 f t 46000.00 1 46000.00 11993 82 \N 10674 +82947 2025-11-13 10:01:02.239007+00 2025-11-13 10:01:02.239019+00 f t 8000.00 1 8000.00 12215 85 \N 10853 +82948 2025-11-13 10:01:02.251311+00 2025-11-13 10:01:02.251323+00 f t 46000.00 1 46000.00 12215 82 \N 10853 +81870 2025-11-11 13:34:11.708753+00 2025-11-11 13:34:11.708765+00 f t 46000.00 1 46000.00 12015 82 \N 10693 +83023 2025-11-13 14:39:32.605431+00 2025-11-13 14:39:32.60544+00 f t 46000.00 1 46000.00 12235 82 \N 10867 +83024 2025-11-13 14:39:32.612908+00 2025-11-13 14:39:32.612917+00 f t 24000.00 1 24000.00 12235 163 \N 10867 +83025 2025-11-13 14:39:32.616955+00 2025-11-13 14:39:32.616961+00 f t 11000.00 1 11000.00 12235 116 \N 10867 +83053 2025-11-13 16:18:56.295541+00 2025-11-13 16:18:56.295551+00 f t 46000.00 1 46000.00 12242 82 \N 10873 +83054 2025-11-13 16:18:56.30364+00 2025-11-13 16:18:56.303652+00 f t 24000.00 1 24000.00 12242 131 \N 10873 +83061 2025-11-13 16:39:44.152588+00 2025-11-13 16:39:44.152601+00 f t 46000.00 1 46000.00 12245 82 \N 10875 +83062 2025-11-13 16:39:44.163101+00 2025-11-13 16:39:44.16311+00 f t 8000.00 1 8000.00 12245 85 \N 10875 +83068 2025-11-13 17:07:01.084148+00 2025-11-13 17:07:01.084157+00 f t 30000.00 1 30000.00 12248 83 \N 10877 +83075 2025-11-13 18:18:38.310422+00 2025-11-13 18:18:38.310431+00 f t 8000.00 1 8000.00 12255 85 \N 10881 +83076 2025-11-13 18:18:38.318621+00 2025-11-13 18:18:38.318629+00 f t 46000.00 1 46000.00 12255 82 \N 10881 +83128 2025-11-13 18:44:02.644875+00 2025-11-13 18:44:02.644885+00 f t 55000.00 1 55000.00 12258 84 \N 10883 +81902 2025-11-11 13:45:44.215259+00 2025-11-11 13:45:44.215269+00 f t 31500.00 1 31500.00 12014 111 \N 10567 +81903 2025-11-11 13:45:44.224682+00 2025-11-11 13:45:44.224691+00 f t 46000.00 1 46000.00 12014 82 \N 10567 +81904 2025-11-11 13:45:44.229342+00 2025-11-11 13:45:44.229349+00 f t 7700.00 1 7700.00 12014 93 \N 10567 +81905 2025-11-11 13:45:44.233855+00 2025-11-11 13:45:44.233864+00 f t 13200.00 1 13200.00 12014 146 \N 10567 +83142 2025-11-13 19:04:46.856674+00 2025-11-13 19:04:46.856684+00 f t 46000.00 1 46000.00 12256 82 \N 10882 +83143 2025-11-13 19:04:46.865933+00 2025-11-13 19:04:46.865941+00 f t 24000.00 1 24000.00 12256 163 \N 10882 +83181 2025-11-13 20:34:11.793563+00 2025-11-13 20:34:11.793571+00 f t 46000.00 1 46000.00 12267 82 \N 10890 +83193 2025-11-13 22:46:25.65536+00 2025-11-13 22:46:25.655371+00 f t 46000.00 1 46000.00 12276 82 \N 10898 +81919 2025-11-11 13:55:19.119521+00 2025-11-11 13:55:19.11953+00 f t 24000.00 1 24000.00 12017 86 \N 10695 +81920 2025-11-11 13:55:19.127855+00 2025-11-11 13:55:19.127867+00 f t 46000.00 1 46000.00 12017 82 \N 10695 +81921 2025-11-11 13:55:32.950473+00 2025-11-11 13:55:32.950483+00 f t 13200.00 1 13200.00 12018 146 \N 10567 +81922 2025-11-11 14:17:40.859338+00 2025-11-11 14:17:40.859348+00 f t 46000.00 1 46000.00 12020 82 \N 10475 +81923 2025-11-11 14:19:26.204076+00 2025-11-11 14:19:26.204085+00 f t 55000.00 1 55000.00 12021 84 \N 9029 +83194 2025-11-13 22:46:25.663664+00 2025-11-13 22:46:25.663671+00 f t 24000.00 1 24000.00 12276 163 \N 10898 +81928 2025-11-11 14:33:39.134919+00 2025-11-11 14:33:39.134928+00 f t 46000.00 1 46000.00 12023 82 \N 10697 +81929 2025-11-11 14:33:39.142369+00 2025-11-11 14:33:39.142378+00 f t 8000.00 1 8000.00 12023 85 \N 10697 +81930 2025-11-11 14:33:39.14673+00 2025-11-11 14:33:39.146735+00 f t 24000.00 1 24000.00 12023 163 \N 10697 +81931 2025-11-11 14:43:02.924225+00 2025-11-11 14:43:02.924234+00 f t 55000.00 1 55000.00 12022 84 \N 10696 +83241 2025-11-13 23:13:59.456124+00 2025-11-13 23:13:59.456133+00 f t 46000.00 1 46000.00 12283 82 \N 10903 +83246 2025-11-13 23:19:19.966971+00 2025-11-13 23:19:19.96698+00 f t 46000.00 1 46000.00 12285 82 \N 10905 +83299 2025-11-14 00:15:23.2796+00 2025-11-14 00:15:23.279608+00 f t 46000.00 1 46000.00 12293 82 \N 10910 +83300 2025-11-14 00:15:23.289598+00 2025-11-14 00:15:23.28961+00 f t 75000.00 1 75000.00 12293 142 \N 10910 +83321 2025-11-14 01:03:06.868946+00 2025-11-14 01:03:06.868959+00 f t 8000.00 1 8000.00 12302 85 \N 10918 +83322 2025-11-14 01:03:06.87953+00 2025-11-14 01:03:06.879539+00 f t 46000.00 1 46000.00 12302 82 \N 10918 +83330 2025-11-14 01:04:41.25555+00 2025-11-14 01:04:41.255558+00 f t 85000.00 1 85000.00 12301 108 \N 10917 +83387 2025-11-14 02:29:51.486607+00 2025-11-14 02:29:51.486616+00 f t 46000.00 1 46000.00 12316 82 \N 10926 +82009 2025-11-11 14:52:46.303432+00 2025-11-11 14:52:46.303441+00 f t 46000.00 1 46000.00 12026 82 \N 10699 +82010 2025-11-11 14:52:46.311869+00 2025-11-11 14:52:46.311877+00 f t 1000.00 1 1000.00 12026 170 \N 10699 +82011 2025-11-11 14:52:46.317145+00 2025-11-11 14:52:46.317195+00 f t 81500.00 1 81500.00 12026 143 \N 10699 +82012 2025-11-11 14:54:52.668626+00 2025-11-11 14:54:52.668638+00 f t 46000.00 1 46000.00 12027 82 \N 10700 +82013 2025-11-11 14:54:52.676472+00 2025-11-11 14:54:52.676479+00 f t 24000.00 1 24000.00 12027 86 \N 10700 +82094 2025-11-11 15:07:31.813992+00 2025-11-11 15:07:31.814001+00 f t 46000.00 1 46000.00 12029 82 \N 10703 +82095 2025-11-11 15:07:31.821856+00 2025-11-11 15:07:31.821864+00 f t 33000.00 1 33000.00 12029 124 \N 10703 +82096 2025-11-11 15:07:31.826687+00 2025-11-11 15:07:31.826696+00 f t 33000.00 1 33000.00 12029 124 \N 10704 +82097 2025-11-11 15:07:31.832027+00 2025-11-11 15:07:31.832034+00 f t 46000.00 1 46000.00 12029 82 \N 10704 +82111 2025-11-11 15:12:41.332165+00 2025-11-11 15:12:41.332173+00 f t 46000.00 1 46000.00 12030 82 \N 10705 +82112 2025-11-11 15:12:41.340654+00 2025-11-11 15:12:41.340666+00 f t 8000.00 1 8000.00 12030 85 \N 10705 +82113 2025-11-11 15:12:41.346344+00 2025-11-11 15:12:41.346354+00 f t 24000.00 1 24000.00 12030 86 \N 10705 +82114 2025-11-11 15:12:41.351905+00 2025-11-11 15:12:41.351915+00 f t 46000.00 1 46000.00 12030 82 \N 10706 +82115 2025-11-11 15:12:41.357235+00 2025-11-11 15:12:41.357244+00 f t 8000.00 1 8000.00 12030 85 \N 10706 +82116 2025-11-11 15:12:41.362751+00 2025-11-11 15:12:41.362761+00 f t 24000.00 1 24000.00 12030 163 \N 10706 +82121 2025-11-11 15:57:07.211739+00 2025-11-11 15:57:07.211752+00 f t 78000.00 1 78000.00 12031 106 \N 10707 +82123 2025-11-11 15:59:58.001698+00 2025-11-11 15:59:58.001707+00 f t 78000.00 1 78000.00 12032 106 \N 10708 +82775 2025-11-12 21:06:58.765135+00 2025-11-12 21:06:58.765144+00 f t 46000.00 1 46000.00 12181 82 \N 10828 +82794 2025-11-12 22:30:07.652856+00 2025-11-12 22:30:07.65287+00 f t 23000.00 1 23000.00 12167 172 \N 10814 +82134 2025-11-11 17:16:55.287176+00 2025-11-11 17:16:55.287186+00 f t 24000.00 1 24000.00 12035 88 \N 10709 +82135 2025-11-11 17:16:55.295383+00 2025-11-11 17:16:55.295392+00 f t 46000.00 1 46000.00 12035 82 \N 10709 +82137 2025-11-11 17:26:13.597538+00 2025-11-11 17:26:13.597547+00 f t 85000.00 1 85000.00 12037 108 \N 10710 +82138 2025-11-11 18:26:42.27545+00 2025-11-11 18:26:42.275461+00 f t 55000.00 1 55000.00 12040 84 \N 10572 +82141 2025-11-11 18:28:21.563293+00 2025-11-11 18:28:21.563302+00 f t 24000.00 1 24000.00 12039 163 \N 10711 +82142 2025-11-11 18:28:21.571602+00 2025-11-11 18:28:21.571609+00 f t 46000.00 1 46000.00 12039 82 \N 10711 +82157 2025-11-11 18:52:27.684877+00 2025-11-11 18:52:27.684886+00 f t 15400.00 1 15400.00 12042 92 \N 10713 +82158 2025-11-11 18:52:27.694496+00 2025-11-11 18:52:27.694505+00 f t 46000.00 1 46000.00 12042 82 \N 10713 +82161 2025-11-11 19:04:19.037694+00 2025-11-11 19:04:19.037703+00 f t 46000.00 1 46000.00 12044 82 \N 10715 +82165 2025-11-11 19:16:48.329458+00 2025-11-11 19:16:48.329467+00 f t 15400.00 1 15400.00 12045 92 \N 10716 +82166 2025-11-11 19:16:48.336508+00 2025-11-11 19:16:48.336515+00 f t 46000.00 1 46000.00 12045 82 \N 10716 +82171 2025-11-11 19:21:19.946875+00 2025-11-11 19:21:19.946883+00 f t 46000.00 1 46000.00 12046 82 \N 10717 +82172 2025-11-11 19:21:19.954917+00 2025-11-11 19:21:19.954925+00 f t 8000.00 1 8000.00 12046 85 \N 10717 +82173 2025-11-11 19:41:46.821732+00 2025-11-11 19:41:46.821741+00 f t 30000.00 1 30000.00 12047 83 \N 3954 +82257 2025-11-11 19:56:36.627929+00 2025-11-11 19:56:36.627942+00 f t 46000.00 1 46000.00 12048 82 \N 10718 +82258 2025-11-11 19:56:36.635644+00 2025-11-11 19:56:36.635652+00 f t 8000.00 1 8000.00 12048 85 \N 10718 +82259 2025-11-11 19:56:36.639638+00 2025-11-11 19:56:36.639645+00 f t 24000.00 1 24000.00 12048 163 \N 10718 +82260 2025-11-11 19:56:36.643623+00 2025-11-11 19:56:36.64363+00 f t 46000.00 1 46000.00 12048 82 \N 10719 +82261 2025-11-11 19:56:36.648141+00 2025-11-11 19:56:36.648148+00 f t 8000.00 1 8000.00 12048 85 \N 10719 +82262 2025-11-11 19:56:36.651872+00 2025-11-11 19:56:36.651878+00 f t 24000.00 1 24000.00 12048 163 \N 10719 +82263 2025-11-11 20:06:02.5042+00 2025-11-11 20:06:02.504216+00 f t 46000.00 1 46000.00 12049 82 \N 10721 +82264 2025-11-11 20:30:40.71454+00 2025-11-11 20:30:40.714552+00 f t 29000.00 1 29000.00 12051 140 \N 10722 +82265 2025-11-11 20:30:40.724275+00 2025-11-11 20:30:40.724286+00 f t 46000.00 1 46000.00 12051 82 \N 10722 +82266 2025-11-11 20:37:12.277375+00 2025-11-11 20:37:12.277388+00 f t 46000.00 1 46000.00 12055 82 \N 10724 +82267 2025-11-11 20:51:10.396072+00 2025-11-11 20:51:10.396081+00 f t 46000.00 1 46000.00 12057 82 \N 10609 +82268 2025-11-11 21:00:00.214831+00 2025-11-11 21:00:00.214841+00 f t 24000.00 1 24000.00 12058 163 \N 10725 +82269 2025-11-11 21:00:00.224315+00 2025-11-11 21:00:00.224327+00 f t 46000.00 1 46000.00 12058 82 \N 10725 +82270 2025-11-11 21:00:18.991287+00 2025-11-11 21:00:18.991299+00 f t 23000.00 1 23000.00 12053 172 \N 10696 +82271 2025-11-11 21:01:41.250539+00 2025-11-11 21:01:41.250559+00 f t 46000.00 1 46000.00 12052 82 \N 10723 +82274 2025-11-11 21:14:09.203889+00 2025-11-11 21:14:09.203901+00 f t 8000.00 1 8000.00 12059 85 \N 10726 +82275 2025-11-11 21:14:09.211826+00 2025-11-11 21:14:09.211832+00 f t 46000.00 1 46000.00 12059 82 \N 10726 +82286 2025-11-11 21:17:29.17336+00 2025-11-11 21:17:29.173369+00 f t 46000.00 1 46000.00 12060 82 \N 10727 +82287 2025-11-11 21:17:29.181742+00 2025-11-11 21:17:29.181751+00 f t 8000.00 1 8000.00 12060 85 \N 10727 +82288 2025-11-11 21:17:29.186508+00 2025-11-11 21:17:29.186514+00 f t 24000.00 1 24000.00 12060 163 \N 10727 +82289 2025-11-11 21:20:18.289855+00 2025-11-11 21:20:18.289863+00 f t 13200.00 1 13200.00 12061 146 \N 10696 +82293 2025-11-11 21:25:01.332467+00 2025-11-11 21:25:01.332481+00 f t 88000.00 1 88000.00 12062 167 \N 10729 +82295 2025-11-11 21:27:52.647936+00 2025-11-11 21:27:52.647944+00 f t 46000.00 1 46000.00 12063 82 \N 10730 +82297 2025-11-11 21:43:39.263578+00 2025-11-11 21:43:39.263592+00 f t 46000.00 1 46000.00 12066 82 \N 10732 +82306 2025-11-11 22:32:00.587348+00 2025-11-11 22:32:00.587357+00 f t 55000.00 1 55000.00 12072 84 \N 10572 +82308 2025-11-11 22:50:40.016304+00 2025-11-11 22:50:40.016312+00 f t 60000.00 1 60000.00 12074 169 \N 10736 +82310 2025-11-11 23:06:14.979641+00 2025-11-11 23:06:14.979654+00 f t 55000.00 1 55000.00 12076 84 \N 10737 +82319 2025-11-11 23:11:35.914585+00 2025-11-11 23:11:35.914593+00 f t 46000.00 1 46000.00 12079 82 \N 10739 +82320 2025-11-11 23:11:35.921508+00 2025-11-11 23:11:35.921515+00 f t 8000.00 1 8000.00 12079 85 \N 10739 +82321 2025-11-11 23:11:35.925162+00 2025-11-11 23:11:35.925168+00 f t 24000.00 1 24000.00 12079 163 \N 10739 +82322 2025-11-11 23:29:56.710979+00 2025-11-11 23:29:56.710989+00 f t 46000.00 1 46000.00 12080 82 \N 10740 +82323 2025-11-11 23:49:20.982799+00 2025-11-11 23:49:20.982811+00 f t 78000.00 1 78000.00 12073 106 \N 10735 +82326 2025-11-11 23:50:51.799063+00 2025-11-11 23:50:51.799071+00 f t 8000.00 1 8000.00 12083 85 \N 10742 +82327 2025-11-11 23:50:51.807323+00 2025-11-11 23:50:51.807335+00 f t 46000.00 1 46000.00 12083 82 \N 10742 +82328 2025-11-11 23:51:13.607207+00 2025-11-11 23:51:13.607215+00 f t 78000.00 1 78000.00 12084 106 \N 10735 +82329 2025-11-12 00:01:38.565202+00 2025-11-12 00:01:38.565217+00 f t 29000.00 1 29000.00 12085 139 \N 10743 +82330 2025-11-12 00:01:38.576889+00 2025-11-12 00:01:38.576898+00 f t 46000.00 1 46000.00 12085 82 \N 10743 +82343 2025-11-12 01:01:52.937014+00 2025-11-12 01:01:52.937025+00 f t 33000.00 1 33000.00 12087 123 \N 10748 +82344 2025-11-12 01:01:52.947694+00 2025-11-12 01:01:52.947705+00 f t 46000.00 1 46000.00 12087 82 \N 10748 +82358 2025-11-12 01:17:12.785597+00 2025-11-12 01:17:12.785608+00 f t 46000.00 1 46000.00 12089 82 \N 10749 +82359 2025-11-12 01:17:12.793855+00 2025-11-12 01:17:12.793862+00 f t 8000.00 1 8000.00 12089 85 \N 10749 +82360 2025-11-12 01:17:12.798074+00 2025-11-12 01:17:12.79808+00 f t 24000.00 1 24000.00 12089 163 \N 10749 +82363 2025-11-12 01:17:31.40033+00 2025-11-12 01:17:31.400339+00 f t 55000.00 1 55000.00 12090 84 \N 10750 +82376 2025-11-12 01:26:19.427579+00 2025-11-12 01:26:19.42759+00 f t 46000.00 1 46000.00 12092 82 \N 10751 +82377 2025-11-12 01:26:19.436886+00 2025-11-12 01:26:19.436897+00 f t 24000.00 1 24000.00 12092 86 \N 10751 +82386 2025-11-12 01:32:33.46026+00 2025-11-12 01:32:33.46027+00 f t 46000.00 1 46000.00 12093 82 \N 10752 +82387 2025-11-12 01:32:33.468126+00 2025-11-12 01:32:33.468134+00 f t 8000.00 1 8000.00 12093 85 \N 10752 +82388 2025-11-12 01:32:33.472266+00 2025-11-12 01:32:33.472273+00 f t 24000.00 1 24000.00 12093 163 \N 10753 +82389 2025-11-12 01:32:33.477937+00 2025-11-12 01:32:33.477945+00 f t 46000.00 1 46000.00 12093 82 \N 10753 +82679 2025-11-12 20:37:45.225789+00 2025-11-12 20:37:45.225798+00 f t 46000.00 1 46000.00 12175 82 \N 10818 +82397 2025-11-12 01:46:06.862886+00 2025-11-12 01:46:06.862897+00 f t 46000.00 1 46000.00 12095 82 \N 10755 +82402 2025-11-12 01:48:30.269633+00 2025-11-12 01:48:30.269642+00 f t 8000.00 1 8000.00 12096 85 \N 10756 +82403 2025-11-12 01:48:30.277015+00 2025-11-12 01:48:30.277022+00 f t 46000.00 1 46000.00 12096 82 \N 10756 +82404 2025-11-12 01:49:19.604537+00 2025-11-12 01:49:19.604545+00 f t 46000.00 1 46000.00 12097 82 \N 10757 +82407 2025-11-12 02:39:26.028439+00 2025-11-12 02:39:26.028448+00 f t 46000.00 1 46000.00 12099 82 \N 10759 +82410 2025-11-12 02:42:04.929919+00 2025-11-12 02:42:04.929931+00 f t 8000.00 1 8000.00 12100 85 \N 10760 +82411 2025-11-12 02:42:04.940205+00 2025-11-12 02:42:04.940215+00 f t 46000.00 1 46000.00 12100 82 \N 10760 +82412 2025-11-12 03:08:29.923688+00 2025-11-12 03:08:29.923697+00 f t 8000.00 1 8000.00 12105 85 \N 10763 +82413 2025-11-12 03:08:29.932191+00 2025-11-12 03:08:29.932199+00 f t 46000.00 1 46000.00 12105 82 \N 10763 +82414 2025-11-12 03:36:08.141683+00 2025-11-12 03:36:08.141691+00 f t 46000.00 1 46000.00 12106 82 \N 10764 +82416 2025-11-12 10:36:42.317953+00 2025-11-12 10:36:42.317975+00 f t 46000.00 1 46000.00 12109 82 \N 10768 +82418 2025-11-12 11:17:02.163594+00 2025-11-12 11:17:02.16361+00 f t 55000.00 1 55000.00 12110 84 \N 10769 +82419 2025-11-12 12:22:42.587943+00 2025-11-12 12:22:42.587952+00 f t 24000.00 1 24000.00 12114 86 \N 10771 +82420 2025-11-12 12:22:42.599707+00 2025-11-12 12:22:42.59972+00 f t 46000.00 1 46000.00 12114 82 \N 10771 +82423 2025-11-12 12:27:59.684723+00 2025-11-12 12:27:59.684732+00 f t 55000.00 1 55000.00 12088 84 \N 10746 +82425 2025-11-12 12:37:32.126427+00 2025-11-12 12:37:32.126436+00 f t 46000.00 1 46000.00 12115 82 \N 10773 +82426 2025-11-12 12:42:47.389543+00 2025-11-12 12:42:47.389556+00 f t 55000.00 1 55000.00 12116 84 \N 9334 +82427 2025-11-12 12:45:23.825999+00 2025-11-12 12:45:23.826011+00 f t 110000.00 1 110000.00 12117 103 \N 10774 +82428 2025-11-12 12:48:15.385512+00 2025-11-12 12:48:15.38552+00 f t 24000.00 1 24000.00 12118 163 \N 10775 +82429 2025-11-12 12:48:15.39383+00 2025-11-12 12:48:15.393838+00 f t 46000.00 1 46000.00 12118 82 \N 10775 +82430 2025-11-12 12:55:07.894687+00 2025-11-12 12:55:07.894696+00 f t 46000.00 1 46000.00 12120 82 \N 10776 +82467 2025-11-12 13:25:32.472464+00 2025-11-12 13:25:32.472473+00 f t 46000.00 1 46000.00 12123 82 \N 10706 +82464 2025-11-12 13:25:32.451796+00 2025-11-12 13:25:32.451808+00 f t 46000.00 1 46000.00 12123 82 \N 10705 +82468 2025-11-12 13:25:32.477733+00 2025-11-12 13:25:32.477742+00 f t 8000.00 1 8000.00 12123 85 \N 10706 +82465 2025-11-12 13:25:32.461416+00 2025-11-12 13:25:32.461426+00 f t 8000.00 1 8000.00 12123 85 \N 10705 +82466 2025-11-12 13:25:32.467017+00 2025-11-12 13:25:32.467026+00 f t 24000.00 1 24000.00 12123 86 \N 10705 +82469 2025-11-12 13:25:32.482977+00 2025-11-12 13:25:32.482985+00 f t 24000.00 1 24000.00 12123 163 \N 10706 +82472 2025-11-12 13:32:32.535984+00 2025-11-12 13:32:32.535993+00 f t 55000.00 1 55000.00 12094 84 \N 10754 +82474 2025-11-12 13:44:49.998808+00 2025-11-12 13:44:49.998817+00 f t 31500.00 1 31500.00 12124 111 \N 10779 +82475 2025-11-12 13:53:16.883791+00 2025-11-12 13:53:16.8838+00 f t 46000.00 1 46000.00 12125 82 \N 10780 +82492 2025-11-12 13:58:43.008629+00 2025-11-12 13:58:43.008638+00 f t 15400.00 1 15400.00 12126 92 \N 10781 +82493 2025-11-12 13:58:43.017431+00 2025-11-12 13:58:43.01744+00 f t 46000.00 1 46000.00 12126 82 \N 10781 +82494 2025-11-12 13:58:43.022079+00 2025-11-12 13:58:43.02209+00 f t 7700.00 1 7700.00 12126 91 \N 10781 +82495 2025-11-12 13:58:43.02644+00 2025-11-12 13:58:43.026446+00 f t 34500.00 1 34500.00 12126 118 \N 10781 +82498 2025-11-12 14:10:40.912427+00 2025-11-12 14:10:40.912439+00 f t 46000.00 1 46000.00 12127 82 \N 10782 +82499 2025-11-12 14:10:40.921212+00 2025-11-12 14:10:40.921221+00 f t 8000.00 1 8000.00 12127 85 \N 10782 +82500 2025-11-12 14:10:40.926103+00 2025-11-12 14:10:40.926109+00 f t 24000.00 1 24000.00 12127 86 \N 10782 +82501 2025-11-12 14:23:51.565458+00 2025-11-12 14:23:51.565467+00 f t 88000.00 1 88000.00 12129 167 \N 10783 +82519 2025-11-12 14:30:13.745637+00 2025-11-12 14:30:13.745647+00 f t 46000.00 1 46000.00 12130 82 \N 10784 +82520 2025-11-12 14:30:13.754622+00 2025-11-12 14:30:13.754634+00 f t 8000.00 1 8000.00 12130 85 \N 10784 +82521 2025-11-12 14:30:13.760372+00 2025-11-12 14:30:13.760379+00 f t 24000.00 1 24000.00 12130 88 \N 10784 +82522 2025-11-12 14:30:13.764971+00 2025-11-12 14:30:13.764978+00 f t 24000.00 1 24000.00 12130 163 \N 10784 +82525 2025-11-12 14:33:47.533613+00 2025-11-12 14:33:47.533627+00 f t 8000.00 1 8000.00 12131 85 \N 10785 +82526 2025-11-12 14:33:47.544405+00 2025-11-12 14:33:47.544417+00 f t 46000.00 1 46000.00 12131 82 \N 10785 +82535 2025-11-12 14:43:45.602635+00 2025-11-12 14:43:45.602647+00 f t 24000.00 1 24000.00 12132 86 \N 10786 +82536 2025-11-12 14:43:45.610378+00 2025-11-12 14:43:45.610386+00 f t 46000.00 1 46000.00 12132 82 \N 10786 +82537 2025-11-12 14:46:12.728105+00 2025-11-12 14:46:12.728113+00 f t 80000.00 1 80000.00 12133 173 \N 10787 +82538 2025-11-12 14:46:27.36654+00 2025-11-12 14:46:27.366549+00 f t 80000.00 1 80000.00 12134 173 \N 10572 +82540 2025-11-12 14:52:06.787676+00 2025-11-12 14:52:06.787685+00 f t 57000.00 1 57000.00 12135 98 \N 10789 +82541 2025-11-12 14:55:58.739302+00 2025-11-12 14:55:58.739311+00 f t 23000.00 1 23000.00 12136 172 \N 10790 +82542 2025-11-12 15:09:38.153066+00 2025-11-12 15:09:38.153079+00 f t 80000.00 1 80000.00 12137 173 \N 10791 +82544 2025-11-12 15:46:25.121031+00 2025-11-12 15:46:25.121044+00 f t 46000.00 1 46000.00 12138 82 \N 8544 +82545 2025-11-12 16:09:12.584682+00 2025-11-12 16:09:12.584694+00 f t 46000.00 1 46000.00 12143 82 \N 10794 +82549 2025-11-12 16:15:07.912444+00 2025-11-12 16:15:07.912457+00 f t 46000.00 1 46000.00 12145 82 \N 10796 +82569 2025-11-12 16:17:20.511364+00 2025-11-12 16:17:20.511376+00 f t 46000.00 1 46000.00 12146 82 \N 10797 +82570 2025-11-12 16:17:20.519836+00 2025-11-12 16:17:20.519844+00 f t 8000.00 1 8000.00 12146 85 \N 10797 +82571 2025-11-12 16:17:20.525346+00 2025-11-12 16:17:20.525354+00 f t 24000.00 1 24000.00 12146 163 \N 10797 +82572 2025-11-12 16:17:20.529939+00 2025-11-12 16:17:20.529945+00 f t 24000.00 1 24000.00 12146 88 \N 10797 +82573 2025-11-12 16:33:23.408736+00 2025-11-12 16:33:23.408745+00 f t 55000.00 1 55000.00 12148 84 \N 10798 +82582 2025-11-12 16:44:18.319271+00 2025-11-12 16:44:18.319279+00 f t 46000.00 1 46000.00 12150 82 \N 10802 +82583 2025-11-12 16:44:18.327627+00 2025-11-12 16:44:18.327637+00 f t 75000.00 1 75000.00 12150 142 \N 10802 +82584 2025-11-12 16:56:10.121549+00 2025-11-12 16:56:10.121557+00 f t 46000.00 1 46000.00 12139 82 \N 2662 +82589 2025-11-12 17:00:31.93159+00 2025-11-12 17:00:31.931599+00 f t 46000.00 1 46000.00 12153 82 \N 10804 +82593 2025-11-12 17:11:47.872859+00 2025-11-12 17:11:47.872869+00 f t 55000.00 1 55000.00 12155 84 \N 10806 +82594 2025-11-12 17:20:55.830599+00 2025-11-12 17:20:55.83061+00 f t 13200.00 1 13200.00 12157 146 \N 9803 +82595 2025-11-12 17:36:19.907598+00 2025-11-12 17:36:19.907607+00 f t 13200.00 1 13200.00 12158 146 \N 10754 +82596 2025-11-12 17:47:02.840052+00 2025-11-12 17:47:02.840063+00 f t 85000.00 1 85000.00 12159 108 \N 10809 +82597 2025-11-12 18:08:52.569534+00 2025-11-12 18:08:52.569546+00 f t 30000.00 1 30000.00 12160 83 \N 9803 +82598 2025-11-12 18:10:30.663028+00 2025-11-12 18:10:30.663036+00 f t 55000.00 1 55000.00 12161 84 \N 10810 +82599 2025-11-12 18:12:14.160171+00 2025-11-12 18:12:14.160181+00 f t 46000.00 1 46000.00 12162 82 \N 10811 +82680 2025-11-12 20:37:45.234495+00 2025-11-12 20:37:45.234504+00 f t 33000.00 1 33000.00 12175 124 \N 10818 +82601 2025-11-12 18:32:06.522176+00 2025-11-12 18:32:06.522187+00 f t 46000.00 1 46000.00 12164 82 \N 10812 +82602 2025-11-12 18:33:49.495542+00 2025-11-12 18:33:49.495551+00 f t 46000.00 1 46000.00 12140 82 \N 8891 +82603 2025-11-12 18:37:01.106561+00 2025-11-12 18:37:01.106573+00 f t 78000.00 1 78000.00 12165 106 \N 10754 +82681 2025-11-12 20:37:45.2397+00 2025-11-12 20:37:45.239707+00 f t 46000.00 1 46000.00 12175 82 \N 10819 +85574 2025-11-17 22:40:04.607177+00 2025-11-17 22:40:04.607193+00 f t 46000.00 1 46000.00 12625 82 \N 11178 +82719 2025-11-12 20:51:02.388703+00 2025-11-12 20:51:02.388716+00 f t 46000.00 1 46000.00 12178 82 \N 10822 +82607 2025-11-12 19:07:44.69904+00 2025-11-12 19:07:44.699049+00 f t 46000.00 1 46000.00 12166 82 \N 10813 +82846 2025-11-13 00:13:29.998997+00 2025-11-13 00:13:29.999005+00 f t 46000.00 1 46000.00 12196 82 \N 10839 +82847 2025-11-13 00:13:30.007593+00 2025-11-13 00:13:30.007603+00 f t 8000.00 1 8000.00 12196 85 \N 10839 +82848 2025-11-13 00:13:30.012282+00 2025-11-13 00:13:30.012289+00 f t 24000.00 1 24000.00 12196 88 \N 10839 +82620 2025-11-12 19:30:00.468565+00 2025-11-12 19:30:00.468574+00 f t 46000.00 1 46000.00 12168 82 \N 10815 +82621 2025-11-12 19:30:00.476633+00 2025-11-12 19:30:00.47664+00 f t 8000.00 1 8000.00 12168 85 \N 10815 +82622 2025-11-12 19:30:00.480884+00 2025-11-12 19:30:00.48089+00 f t 24000.00 1 24000.00 12168 163 \N 10815 +82849 2025-11-13 00:13:30.016554+00 2025-11-13 00:13:30.01656+00 f t 24000.00 1 24000.00 12196 163 \N 10839 +82949 2025-11-13 11:02:18.855081+00 2025-11-13 11:02:18.855089+00 f t 46000.00 1 46000.00 12217 82 \N 10855 +82959 2025-11-13 11:53:12.28809+00 2025-11-13 11:53:12.2881+00 f t 0.00 1 0.00 12221 166 \N 10857 +82967 2025-11-13 14:32:29.777722+00 2025-11-13 14:32:29.777731+00 f t 46000.00 1 46000.00 12233 82 \N 10678 +82643 2025-11-12 19:32:05.817544+00 2025-11-12 19:32:05.817552+00 f t 46000.00 1 46000.00 12169 82 \N 10816 +82644 2025-11-12 19:32:05.826014+00 2025-11-12 19:32:05.826022+00 f t 29000.00 1 29000.00 12169 140 \N 10816 +82645 2025-11-12 19:32:05.830627+00 2025-11-12 19:32:05.830634+00 f t 8000.00 1 8000.00 12169 85 \N 10816 +82646 2025-11-12 19:32:05.835526+00 2025-11-12 19:32:05.835533+00 f t 24000.00 1 24000.00 12169 88 \N 10816 +83015 2025-11-13 14:38:18.156998+00 2025-11-13 14:38:18.157009+00 f t 46000.00 1 46000.00 12234 82 \N 10865 +83016 2025-11-13 14:38:18.167096+00 2025-11-13 14:38:18.167103+00 f t 8000.00 1 8000.00 12234 85 \N 10865 +83017 2025-11-13 14:38:18.172109+00 2025-11-13 14:38:18.172115+00 f t 46000.00 1 46000.00 12234 82 \N 10866 +83055 2025-11-13 16:19:28.907984+00 2025-11-13 16:19:28.907993+00 f t 46000.00 1 46000.00 12243 82 \N 455 +83063 2025-11-13 16:52:45.038628+00 2025-11-13 16:52:45.03864+00 f t 57000.00 1 57000.00 12246 98 \N 10876 +83069 2025-11-13 17:43:45.096992+00 2025-11-13 17:43:45.097002+00 f t 110000.00 1 110000.00 12253 103 \N 10880 +83137 2025-11-13 18:45:31.995072+00 2025-11-13 18:45:31.995085+00 f t 55000.00 1 55000.00 12259 84 \N 10682 +83144 2025-11-13 19:10:04.665428+00 2025-11-13 19:10:04.665442+00 f t 30000.00 1 30000.00 12260 83 \N 10146 +83159 2025-11-13 19:59:15.600931+00 2025-11-13 19:59:15.60094+00 f t 46000.00 1 46000.00 12264 82 \N 10888 +83182 2025-11-13 20:37:57.854472+00 2025-11-13 20:37:57.85448+00 f t 13200.00 1 13200.00 12268 146 \N 365 +83228 2025-11-13 22:49:59.898697+00 2025-11-13 22:49:59.898706+00 f t 55000.00 1 55000.00 12278 84 \N 10900 +83236 2025-11-13 22:50:58.254807+00 2025-11-13 22:50:58.254816+00 f t 46000.00 1 46000.00 12279 82 \N 10901 +83237 2025-11-13 22:50:58.26291+00 2025-11-13 22:50:58.262917+00 f t 24000.00 1 24000.00 12279 88 \N 10901 +83238 2025-11-13 22:50:58.267473+00 2025-11-13 22:50:58.267479+00 f t 33000.00 1 33000.00 12279 123 \N 10901 +83242 2025-11-13 23:16:46.387062+00 2025-11-13 23:16:46.387071+00 f t 46000.00 1 46000.00 12284 82 \N 10904 +83310 2025-11-14 00:22:15.303627+00 2025-11-14 00:22:15.303635+00 f t 34000.00 1 34000.00 12295 110 \N 10912 +83331 2025-11-14 01:22:22.785115+00 2025-11-14 01:22:22.785124+00 f t 46000.00 1 46000.00 12305 82 \N 10919 +83343 2025-11-14 01:30:05.777245+00 2025-11-14 01:30:05.77726+00 f t 55000.00 1 55000.00 12307 84 \N 10920 +83388 2025-11-14 02:32:15.633555+00 2025-11-14 02:32:15.63357+00 f t 8000.00 1 8000.00 12318 85 \N 10928 +83389 2025-11-14 02:32:15.64358+00 2025-11-14 02:32:15.643591+00 f t 46000.00 1 46000.00 12318 82 \N 10928 +83402 2025-11-14 10:31:28.661861+00 2025-11-14 10:31:28.66187+00 f t 24000.00 1 24000.00 12325 86 \N 10933 +83403 2025-11-14 10:31:28.669813+00 2025-11-14 10:31:28.669821+00 f t 46000.00 1 46000.00 12325 82 \N 10933 +83436 2025-11-14 11:02:30.93629+00 2025-11-14 11:02:30.936302+00 f t 55000.00 1 55000.00 12327 84 \N 10935 +83467 2025-11-14 11:55:02.371871+00 2025-11-14 11:55:02.371885+00 f t 23000.00 1 23000.00 12335 172 \N 10940 +83470 2025-11-14 11:55:03.634288+00 2025-11-14 11:55:03.634303+00 f t 55000.00 1 55000.00 12334 84 \N 10475 +83484 2025-11-14 12:22:32.182017+00 2025-11-14 12:22:32.182028+00 f t 46000.00 1 46000.00 12337 82 \N 10942 +83494 2025-11-14 12:48:42.544168+00 2025-11-14 12:48:42.544178+00 f t 82000.00 1 82000.00 12341 97 \N 10946 +83500 2025-11-14 13:15:57.791929+00 2025-11-14 13:15:57.791942+00 f t 55000.00 1 55000.00 12344 84 \N 10949 +83501 2025-11-14 13:43:45.971612+00 2025-11-14 13:43:45.971621+00 f t 13200.00 1 13200.00 12346 146 \N 10568 +83502 2025-11-14 13:48:21.47719+00 2025-11-14 13:48:21.4772+00 f t 85000.00 1 85000.00 12347 108 \N 10950 +83510 2025-11-14 14:09:34.100225+00 2025-11-14 14:09:34.100237+00 f t 88000.00 1 88000.00 12348 167 \N 10951 +83511 2025-11-14 14:26:35.901239+00 2025-11-14 14:26:35.901248+00 f t 60000.00 1 60000.00 12349 101 \N 10952 +83512 2025-11-14 14:58:20.462319+00 2025-11-14 14:58:20.462328+00 f t 46000.00 1 46000.00 12352 82 \N 10953 +83523 2025-11-14 15:03:55.741808+00 2025-11-14 15:03:55.741817+00 f t 46000.00 1 46000.00 12353 82 \N 10954 +83524 2025-11-14 15:03:55.749516+00 2025-11-14 15:03:55.749529+00 f t 75000.00 1 75000.00 12353 142 \N 10954 +83529 2025-11-14 15:13:42.594102+00 2025-11-14 15:13:42.594111+00 f t 55000.00 1 55000.00 12356 84 \N 6920 +83538 2025-11-14 15:32:02.927312+00 2025-11-14 15:32:02.927321+00 f t 46000.00 1 46000.00 12358 82 \N 10958 +83539 2025-11-14 15:32:02.937109+00 2025-11-14 15:32:02.93712+00 f t 8000.00 1 8000.00 12358 85 \N 10958 +83540 2025-11-14 15:32:02.942443+00 2025-11-14 15:32:02.942455+00 f t 24000.00 1 24000.00 12358 86 \N 10958 +83541 2025-11-14 16:28:20.486889+00 2025-11-14 16:28:20.486899+00 f t 60000.00 1 60000.00 12360 169 \N 10350 +83542 2025-11-14 16:35:10.373043+00 2025-11-14 16:35:10.373056+00 f t 46000.00 1 46000.00 12361 82 \N 10959 +83543 2025-11-14 16:58:32.804583+00 2025-11-14 16:58:32.804591+00 f t 55000.00 1 55000.00 12363 84 \N 8460 +83544 2025-11-14 17:17:19.014701+00 2025-11-14 17:17:19.014714+00 f t 55000.00 1 55000.00 12364 84 \N 10960 +83586 2025-11-14 17:38:50.280485+00 2025-11-14 17:38:50.280497+00 f t 55000.00 1 55000.00 12366 84 \N 10962 +83590 2025-11-14 17:40:24.837556+00 2025-11-14 17:40:24.837566+00 f t 32500.00 1 32500.00 12367 112 \N 10963 +83593 2025-11-14 17:41:32.89683+00 2025-11-14 17:41:32.896838+00 f t 31500.00 1 31500.00 12368 111 \N 10964 +83594 2025-11-14 17:43:48.886589+00 2025-11-14 17:43:48.886602+00 f t 8000.00 1 8000.00 12369 85 \N 10965 +83595 2025-11-14 17:43:48.8952+00 2025-11-14 17:43:48.895209+00 f t 46000.00 1 46000.00 12369 82 \N 10965 +83596 2025-11-14 18:02:35.905245+00 2025-11-14 18:02:35.905258+00 f t 88000.00 1 88000.00 12371 167 \N 10053 +88982 2025-11-24 05:46:22.619586+00 2025-11-24 05:46:22.619594+00 f t 20500.00 1 20500.00 13358 109 \N 11787 +83616 2025-11-14 18:07:11.79556+00 2025-11-14 18:07:11.795569+00 f t 30000.00 1 30000.00 12372 83 \N 10966 +83617 2025-11-14 18:12:56.73176+00 2025-11-14 18:12:56.73177+00 f t 30000.00 1 30000.00 12374 83 \N 10968 +83624 2025-11-14 18:30:18.754815+00 2025-11-14 18:30:18.754824+00 f t 8000.00 1 8000.00 12377 85 \N 10970 +83625 2025-11-14 18:30:18.76274+00 2025-11-14 18:30:18.762748+00 f t 46000.00 1 46000.00 12377 82 \N 10970 +83628 2025-11-14 18:43:22.276818+00 2025-11-14 18:43:22.276826+00 f t 46000.00 1 46000.00 12378 82 \N 10971 +83629 2025-11-14 19:51:00.505056+00 2025-11-14 19:51:00.505068+00 f t 55000.00 1 55000.00 12382 84 \N 10572 +83630 2025-11-14 20:57:46.830919+00 2025-11-14 20:57:46.830928+00 f t 8000.00 1 8000.00 12384 85 \N 10973 +83631 2025-11-14 20:57:46.839411+00 2025-11-14 20:57:46.83942+00 f t 46000.00 1 46000.00 12384 82 \N 10973 +83636 2025-11-14 21:30:18.573484+00 2025-11-14 21:30:18.573494+00 f t 46000.00 1 46000.00 12385 82 \N 10975 +83637 2025-11-14 21:30:18.583629+00 2025-11-14 21:30:18.583641+00 f t 24000.00 1 24000.00 12385 86 \N 10975 +83638 2025-11-14 21:30:24.124092+00 2025-11-14 21:30:24.124101+00 f t 12000.00 1 12000.00 12386 85 \N 10974 +83639 2025-11-14 21:30:24.134353+00 2025-11-14 21:30:24.134362+00 f t 69000.00 1 69000.00 12386 82 \N 10974 +83640 2025-11-14 21:59:24.372344+00 2025-11-14 21:59:24.372354+00 f t 24000.00 1 24000.00 12388 86 \N 10976 +83641 2025-11-14 21:59:24.381167+00 2025-11-14 21:59:24.381175+00 f t 46000.00 1 46000.00 12388 82 \N 10976 +83644 2025-11-14 22:06:15.182271+00 2025-11-14 22:06:15.182279+00 f t 46000.00 1 46000.00 12390 82 \N 10978 +83645 2025-11-14 22:06:15.192023+00 2025-11-14 22:06:15.192037+00 f t 8000.00 1 8000.00 12390 85 \N 10978 +83646 2025-11-14 22:06:15.198544+00 2025-11-14 22:06:15.198554+00 f t 24000.00 1 24000.00 12390 163 \N 10978 +83647 2025-11-14 22:07:00.646052+00 2025-11-14 22:07:00.646065+00 f t 46000.00 1 46000.00 12391 82 \N 10979 +83665 2025-11-14 22:17:59.741327+00 2025-11-14 22:17:59.741335+00 f t 46000.00 1 46000.00 12393 82 \N 10981 +83666 2025-11-14 22:17:59.748777+00 2025-11-14 22:17:59.748786+00 f t 24000.00 1 24000.00 12393 163 \N 10981 +83667 2025-11-14 22:25:47.188888+00 2025-11-14 22:25:47.188897+00 f t 30000.00 1 30000.00 12395 83 \N 10983 +83668 2025-11-14 22:26:31.046555+00 2025-11-14 22:26:31.046564+00 f t 8000.00 1 8000.00 12396 85 \N 10984 +83669 2025-11-14 22:26:31.056283+00 2025-11-14 22:26:31.056291+00 f t 46000.00 1 46000.00 12396 82 \N 10984 +83671 2025-11-14 22:35:15.142307+00 2025-11-14 22:35:15.142317+00 f t 46000.00 1 46000.00 12397 82 \N 10985 +83674 2025-11-14 22:59:41.75992+00 2025-11-14 22:59:41.759928+00 f t 46000.00 1 46000.00 12398 82 \N 10986 +83675 2025-11-14 22:59:41.767853+00 2025-11-14 22:59:41.767861+00 f t 24000.00 1 24000.00 12398 163 \N 10986 +83678 2025-11-14 23:22:05.874524+00 2025-11-14 23:22:05.874534+00 f t 55000.00 1 55000.00 12399 84 \N 10987 +83679 2025-11-14 23:22:22.294735+00 2025-11-14 23:22:22.294744+00 f t 8000.00 1 8000.00 12400 85 \N 10988 +83680 2025-11-14 23:22:22.302795+00 2025-11-14 23:22:22.302803+00 f t 46000.00 1 46000.00 12400 82 \N 10988 +83702 2025-11-14 23:55:35.067147+00 2025-11-14 23:55:35.067155+00 f t 46000.00 1 46000.00 12401 82 \N 10989 +83703 2025-11-14 23:55:35.074113+00 2025-11-14 23:55:35.07412+00 f t 7700.00 1 7700.00 12401 91 \N 10989 +83704 2025-11-14 23:55:35.077876+00 2025-11-14 23:55:35.077882+00 f t 24000.00 1 24000.00 12401 87 \N 10989 +83719 2025-11-15 00:10:01.045387+00 2025-11-15 00:10:01.045399+00 f t 46000.00 1 46000.00 12404 82 \N 10991 +83720 2025-11-15 00:10:01.056907+00 2025-11-15 00:10:01.056919+00 f t 8000.00 1 8000.00 12404 85 \N 10991 +83721 2025-11-15 00:10:01.063679+00 2025-11-15 00:10:01.063692+00 f t 24000.00 1 24000.00 12404 86 \N 10991 +83722 2025-11-15 00:10:01.07079+00 2025-11-15 00:10:01.070803+00 f t 24000.00 1 24000.00 12404 87 \N 10991 +83727 2025-11-15 00:12:14.397228+00 2025-11-15 00:12:14.397236+00 f t 46000.00 1 46000.00 12405 82 \N 10992 +83728 2025-11-15 00:12:14.407432+00 2025-11-15 00:12:14.407444+00 f t 8000.00 1 8000.00 12405 85 \N 10992 +83729 2025-11-15 00:12:14.412582+00 2025-11-15 00:12:14.41259+00 f t 24000.00 1 24000.00 12405 86 \N 10992 +83730 2025-11-15 00:15:14.997766+00 2025-11-15 00:15:14.997776+00 f t 24000.00 1 24000.00 12408 163 \N 10995 +83731 2025-11-15 00:15:15.010894+00 2025-11-15 00:15:15.010906+00 f t 46000.00 1 46000.00 12408 82 \N 10995 +83773 2025-11-15 00:58:08.94856+00 2025-11-15 00:58:08.948572+00 f t 46000.00 1 46000.00 12411 82 \N 10997 +83774 2025-11-15 00:58:08.958168+00 2025-11-15 00:58:08.958177+00 f t 8000.00 1 8000.00 12411 85 \N 10997 +83775 2025-11-15 00:58:08.963263+00 2025-11-15 00:58:08.963273+00 f t 24000.00 1 24000.00 12411 163 \N 10997 +83776 2025-11-15 00:58:08.968895+00 2025-11-15 00:58:08.968904+00 f t 46000.00 1 46000.00 12411 82 \N 10998 +83777 2025-11-15 00:58:08.97427+00 2025-11-15 00:58:08.974279+00 f t 24000.00 1 24000.00 12411 88 \N 10998 +83796 2025-11-15 01:43:13.48466+00 2025-11-15 01:43:13.484669+00 f t 46000.00 1 46000.00 12412 82 \N 10999 +83797 2025-11-15 01:43:13.494664+00 2025-11-15 01:43:13.494673+00 f t 8000.00 1 8000.00 12412 85 \N 10999 +83798 2025-11-15 01:43:13.499475+00 2025-11-15 01:43:13.499482+00 f t 24000.00 1 24000.00 12412 163 \N 10999 +83799 2025-11-15 01:43:13.504664+00 2025-11-15 01:43:13.504672+00 f t 24000.00 1 24000.00 12412 86 \N 11000 +83800 2025-11-15 01:43:13.509377+00 2025-11-15 01:43:13.509387+00 f t 46000.00 1 46000.00 12412 82 \N 11000 +83835 2025-11-15 02:26:30.022959+00 2025-11-15 02:26:30.022968+00 f t 7700.00 1 7700.00 12414 93 \N 11002 +83836 2025-11-15 02:26:30.03091+00 2025-11-15 02:26:30.030917+00 f t 46000.00 1 46000.00 12414 82 \N 11002 +83839 2025-11-15 03:16:49.173794+00 2025-11-15 03:16:49.173802+00 f t 46000.00 1 46000.00 12415 82 \N 11003 +83840 2025-11-15 03:16:49.184861+00 2025-11-15 03:16:49.184868+00 f t 8000.00 1 8000.00 12415 85 \N 11003 +83846 2025-11-15 03:43:31.367932+00 2025-11-15 03:43:31.367941+00 f t 46000.00 1 46000.00 12416 82 \N 11004 +83847 2025-11-15 03:47:46.556032+00 2025-11-15 03:47:46.556044+00 f t 8000.00 1 8000.00 12418 85 \N 11005 +83848 2025-11-15 03:47:46.566819+00 2025-11-15 03:47:46.566831+00 f t 46000.00 1 46000.00 12418 82 \N 11005 +83864 2025-11-15 03:51:02.914654+00 2025-11-15 03:51:02.914663+00 f t 7700.00 1 7700.00 12417 91 \N 11006 +83865 2025-11-15 03:51:02.922729+00 2025-11-15 03:51:02.922737+00 f t 46000.00 1 46000.00 12417 82 \N 11006 +85577 2025-11-17 22:42:26.28023+00 2025-11-17 22:42:26.280239+00 f t 46000.00 1 46000.00 12627 82 \N 11181 +85592 2025-11-18 00:01:12.728984+00 2025-11-18 00:01:12.728993+00 f t 46000.00 1 46000.00 12630 82 \N 11185 +83870 2025-11-15 04:07:49.580949+00 2025-11-15 04:07:49.580959+00 f t 8000.00 1 8000.00 12419 85 \N 11007 +83871 2025-11-15 04:07:49.588734+00 2025-11-15 04:07:49.588741+00 f t 46000.00 1 46000.00 12419 82 \N 11007 +88911 2025-11-23 23:18:51.689945+00 2025-11-23 23:18:51.689955+00 f t 46000.00 1 46000.00 13334 82 \N 11768 +88912 2025-11-23 23:18:51.713065+00 2025-11-23 23:18:51.713077+00 f t 8000.00 1 8000.00 13334 85 \N 11768 +83887 2025-11-15 04:30:07.011072+00 2025-11-15 04:30:07.011083+00 f t 46000.00 1 46000.00 12420 82 \N 11008 +83888 2025-11-15 06:05:13.916953+00 2025-11-15 06:05:13.916965+00 f t 55000.00 1 55000.00 12423 84 \N 11009 +83927 2025-11-15 11:30:26.152025+00 2025-11-15 11:30:26.152033+00 f t 55000.00 1 55000.00 12429 84 \N 11013 +83928 2025-11-15 11:55:05.420054+00 2025-11-15 11:55:05.420063+00 f t 60000.00 1 60000.00 12430 169 \N 11014 +83949 2025-11-15 12:14:40.954653+00 2025-11-15 12:14:40.954679+00 f t 55000.00 1 55000.00 12431 84 \N 11015 +83953 2025-11-15 12:24:20.250795+00 2025-11-15 12:24:20.250807+00 f t 55000.00 1 55000.00 12432 84 \N 11016 +83954 2025-11-15 12:52:19.791395+00 2025-11-15 12:52:19.791404+00 f t 46000.00 1 46000.00 12433 82 \N 11017 +83960 2025-11-15 13:04:58.665808+00 2025-11-15 13:04:58.665821+00 f t 46000.00 1 46000.00 12427 82 \N 11011 +83961 2025-11-15 13:04:58.678055+00 2025-11-15 13:04:58.678068+00 f t 46000.00 1 46000.00 12427 82 \N 11012 +83962 2025-11-15 13:04:58.683821+00 2025-11-15 13:04:58.683829+00 f t 8000.00 1 8000.00 12427 85 \N 11011 +83963 2025-11-15 13:04:58.689394+00 2025-11-15 13:04:58.689402+00 f t 8000.00 1 8000.00 12427 85 \N 11012 +83964 2025-11-15 13:04:58.695115+00 2025-11-15 13:04:58.695126+00 f t 24000.00 1 24000.00 12427 163 \N 11011 +83965 2025-11-15 13:04:58.702563+00 2025-11-15 13:04:58.702575+00 f t 24000.00 1 24000.00 12427 163 \N 11012 +83967 2025-11-15 13:30:08.865637+00 2025-11-15 13:30:08.86565+00 f t 57000.00 1 57000.00 12436 98 \N 11019 +83969 2025-11-15 13:40:22.990956+00 2025-11-15 13:40:22.990965+00 f t 30000.00 1 30000.00 12438 83 \N 11020 +83974 2025-11-15 13:44:20.32544+00 2025-11-15 13:44:20.325448+00 f t 46000.00 1 46000.00 12439 82 \N 11021 +83975 2025-11-15 13:44:20.334486+00 2025-11-15 13:44:20.334498+00 f t 8000.00 1 8000.00 12439 85 \N 11021 +83976 2025-11-15 14:22:19.936878+00 2025-11-15 14:22:19.936888+00 f t 55000.00 1 55000.00 12440 84 \N 11022 +83978 2025-11-15 14:45:32.964353+00 2025-11-15 14:45:32.964365+00 f t 30000.00 1 30000.00 12443 83 \N 11023 +83983 2025-11-15 14:53:32.833584+00 2025-11-15 14:53:32.833596+00 f t 8000.00 1 8000.00 12446 85 \N 11025 +83984 2025-11-15 14:53:32.844185+00 2025-11-15 14:53:32.844197+00 f t 46000.00 1 46000.00 12446 82 \N 11025 +83986 2025-11-15 15:06:20.22176+00 2025-11-15 15:06:20.221768+00 f t 46000.00 1 46000.00 12448 82 \N 11027 +83987 2025-11-15 16:00:22.296201+00 2025-11-15 16:00:22.297099+00 f t 55000.00 1 55000.00 12452 84 \N 11028 +83988 2025-11-15 16:20:34.607872+00 2025-11-15 16:20:34.608219+00 f t 55000.00 1 55000.00 12455 84 \N 11031 +83992 2025-11-15 16:47:23.290753+00 2025-11-15 16:47:23.290761+00 f t 23000.00 1 23000.00 12456 172 \N 11032 +83997 2025-11-15 17:13:06.350859+00 2025-11-15 17:13:06.350869+00 f t 24000.00 1 24000.00 12457 163 \N 11033 +83998 2025-11-15 17:13:06.360659+00 2025-11-15 17:13:06.360669+00 f t 46000.00 1 46000.00 12457 82 \N 11033 +83999 2025-11-15 17:49:05.272238+00 2025-11-15 17:49:05.272251+00 f t 55000.00 1 55000.00 12458 84 \N 11034 +84017 2025-11-15 17:57:56.675551+00 2025-11-15 17:57:56.675561+00 f t 55000.00 1 55000.00 12413 84 \N 11001 +84020 2025-11-15 17:58:07.692743+00 2025-11-15 17:58:07.692771+00 f t 55000.00 1 55000.00 12459 84 \N 11035 +84021 2025-11-15 18:02:44.232815+00 2025-11-15 18:02:44.232825+00 f t 110000.00 1 110000.00 12460 103 \N 11036 +84022 2025-11-15 18:23:24.296843+00 2025-11-15 18:23:24.296854+00 f t 46000.00 1 46000.00 12461 82 \N 11037 +84023 2025-11-15 18:28:11.373856+00 2025-11-15 18:28:11.373866+00 f t 55000.00 1 55000.00 12462 84 \N 10572 +84024 2025-11-15 18:37:23.984738+00 2025-11-15 18:37:23.984747+00 f t 46000.00 1 46000.00 12467 82 \N 11038 +84031 2025-11-15 19:12:38.750249+00 2025-11-15 19:12:38.75026+00 f t 55000.00 1 55000.00 12468 84 \N 11039 +84032 2025-11-15 19:32:17.616727+00 2025-11-15 19:32:17.616735+00 f t 8000.00 1 8000.00 12454 85 \N 11030 +84033 2025-11-15 19:32:17.62627+00 2025-11-15 19:32:17.626282+00 f t 46000.00 1 46000.00 12454 82 \N 11030 +84035 2025-11-15 19:34:43.58712+00 2025-11-15 19:34:43.587145+00 f t 55000.00 1 55000.00 12469 84 \N 11040 +84036 2025-11-15 19:46:33.415868+00 2025-11-15 19:46:33.415875+00 f t 85000.00 1 85000.00 12470 108 \N 11041 +84037 2025-11-15 19:50:18.860664+00 2025-11-15 19:50:18.860673+00 f t 78000.00 1 78000.00 12471 106 \N 10612 +84038 2025-11-15 20:18:35.958638+00 2025-11-15 20:18:35.95865+00 f t 24000.00 1 24000.00 12473 86 \N 9648 +84039 2025-11-15 20:18:35.969643+00 2025-11-15 20:18:35.969654+00 f t 46000.00 1 46000.00 12473 82 \N 9648 +84044 2025-11-15 21:49:40.142302+00 2025-11-15 21:49:40.142311+00 f t 60000.00 1 60000.00 12478 101 \N 11044 +84045 2025-11-15 21:49:40.150375+00 2025-11-15 21:49:40.150383+00 f t 46000.00 1 46000.00 12478 82 \N 11044 +84048 2025-11-16 00:18:01.235096+00 2025-11-16 00:18:01.235107+00 f t 82000.00 1 82000.00 12480 97 \N 11045 +84054 2025-11-16 01:54:32.826104+00 2025-11-16 01:54:32.826113+00 f t 29000.00 1 29000.00 12482 138 \N 11047 +84055 2025-11-16 01:54:32.835196+00 2025-11-16 01:54:32.835209+00 f t 46000.00 1 46000.00 12482 82 \N 11047 +84056 2025-11-16 02:24:13.012611+00 2025-11-16 02:24:13.01262+00 f t 46000.00 1 46000.00 12483 82 \N 11048 +84057 2025-11-16 05:04:00.727514+00 2025-11-16 05:04:00.727524+00 f t 30000.00 1 30000.00 12484 83 \N 11049 +84060 2025-11-16 12:14:24.920475+00 2025-11-16 12:14:24.920488+00 f t 46000.00 1 46000.00 12486 82 \N 11050 +84061 2025-11-16 12:14:24.930332+00 2025-11-16 12:14:24.930343+00 f t 8000.00 1 8000.00 12486 85 \N 11050 +84068 2025-11-16 12:44:08.569832+00 2025-11-16 12:44:08.569845+00 f t 46000.00 1 46000.00 12487 82 \N 11051 +84069 2025-11-16 12:44:08.58123+00 2025-11-16 12:44:08.581239+00 f t 8000.00 1 8000.00 12487 85 \N 11051 +84070 2025-11-16 13:20:48.928447+00 2025-11-16 13:20:48.928459+00 f t 24000.00 1 24000.00 12488 86 \N 11052 +84071 2025-11-16 13:20:48.936875+00 2025-11-16 13:20:48.936884+00 f t 46000.00 1 46000.00 12488 82 \N 11052 +84077 2025-11-16 13:49:29.801133+00 2025-11-16 13:49:29.801146+00 f t 46000.00 1 46000.00 12489 82 \N 11053 +84080 2025-11-16 13:56:33.740747+00 2025-11-16 13:56:33.740758+00 f t 8000.00 1 8000.00 12491 85 \N 11055 +84081 2025-11-16 13:56:33.750174+00 2025-11-16 13:56:33.750183+00 f t 46000.00 1 46000.00 12491 82 \N 11055 +84082 2025-11-16 14:14:14.472193+00 2025-11-16 14:14:14.472205+00 f t 46000.00 1 46000.00 12493 82 \N 11057 +84083 2025-11-16 14:21:01.751245+00 2025-11-16 14:21:01.751259+00 f t 55000.00 1 55000.00 12494 84 \N 11058 +84097 2025-11-16 14:26:44.783616+00 2025-11-16 14:26:44.783629+00 f t 46000.00 1 46000.00 12496 82 \N 11060 +84098 2025-11-16 14:26:44.793161+00 2025-11-16 14:26:44.79317+00 f t 8000.00 1 8000.00 12496 85 \N 11060 +84099 2025-11-16 14:26:44.798142+00 2025-11-16 14:26:44.79815+00 f t 33000.00 1 33000.00 12496 123 \N 11060 +85578 2025-11-17 22:47:16.036645+00 2025-11-17 22:47:16.036654+00 f t 46000.00 1 46000.00 12628 82 \N 11182 +85593 2025-11-18 00:07:19.956927+00 2025-11-18 00:07:19.956938+00 f t 55000.00 1 55000.00 12638 84 \N 11191 +88913 2025-11-23 23:18:51.719294+00 2025-11-23 23:18:51.719302+00 f t 24000.00 1 24000.00 13334 87 \N 11768 +88938 2025-11-24 01:05:38.105197+00 2025-11-24 01:05:38.105206+00 f t 8000.00 1 8000.00 13339 85 \N 11773 +85626 2025-11-18 00:22:18.1573+00 2025-11-18 00:22:18.157311+00 f t 46000.00 1 46000.00 12644 82 \N 11194 +88939 2025-11-24 01:05:38.12787+00 2025-11-24 01:05:38.12788+00 f t 24000.00 1 24000.00 13339 163 \N 11773 +88940 2025-11-24 01:05:38.133381+00 2025-11-24 01:05:38.133387+00 f t 46000.00 1 46000.00 13339 82 \N 11773 +88954 2025-11-24 02:57:31.236844+00 2025-11-24 02:57:31.236853+00 f t 82500.00 1 82500.00 13347 84 \N 11778 +85658 2025-11-18 01:12:46.196849+00 2025-11-18 01:12:46.196858+00 f t 46000.00 1 46000.00 12647 82 \N 11197 +85659 2025-11-18 01:12:46.206057+00 2025-11-18 01:12:46.206063+00 f t 32500.00 1 32500.00 12647 112 \N 11200 +88966 2025-11-24 05:17:25.45638+00 2025-11-24 05:17:25.456388+00 f t 46000.00 1 46000.00 13355 82 \N 11784 +84126 2025-11-16 14:29:58.129738+00 2025-11-16 14:29:58.129753+00 f t 46000.00 1 46000.00 12495 82 \N 11059 +84127 2025-11-16 14:29:58.14238+00 2025-11-16 14:29:58.142388+00 f t 8000.00 1 8000.00 12495 85 \N 11059 +84128 2025-11-16 14:29:58.148395+00 2025-11-16 14:29:58.148406+00 f t 24000.00 1 24000.00 12495 163 \N 11059 +84129 2025-11-16 15:02:33.791482+00 2025-11-16 15:02:33.791491+00 f t 8000.00 1 8000.00 12499 85 \N 11061 +84130 2025-11-16 15:02:33.800071+00 2025-11-16 15:02:33.80008+00 f t 46000.00 1 46000.00 12499 82 \N 11061 +84131 2025-11-16 15:50:55.126861+00 2025-11-16 15:50:55.126872+00 f t 8000.00 1 8000.00 12500 85 \N 11062 +84132 2025-11-16 15:50:55.13676+00 2025-11-16 15:50:55.136769+00 f t 46000.00 1 46000.00 12500 82 \N 11062 +85750 2025-11-18 02:10:39.307551+00 2025-11-18 02:10:39.307559+00 f t 8000.00 1 8000.00 12653 85 \N 11206 +85751 2025-11-18 02:10:39.316862+00 2025-11-18 02:10:39.316871+00 f t 46000.00 1 46000.00 12653 82 \N 11206 +85775 2025-11-18 02:59:31.943096+00 2025-11-18 02:59:31.943104+00 f t 46000.00 1 46000.00 12655 82 \N 11208 +85776 2025-11-18 02:59:31.952207+00 2025-11-18 02:59:31.952221+00 f t 8000.00 1 8000.00 12655 85 \N 11208 +85777 2025-11-18 02:59:31.957906+00 2025-11-18 02:59:31.957915+00 f t 8000.00 1 8000.00 12655 85 \N 11209 +85778 2025-11-18 02:59:31.963403+00 2025-11-18 02:59:31.963412+00 f t 46000.00 1 46000.00 12655 82 \N 11209 +84147 2025-11-16 16:28:00.82565+00 2025-11-16 16:28:00.825659+00 f t 46000.00 1 46000.00 12501 82 \N 11063 +84148 2025-11-16 16:28:00.833553+00 2025-11-16 16:28:00.833562+00 f t 8000.00 1 8000.00 12501 85 \N 11063 +84149 2025-11-16 16:28:00.838211+00 2025-11-16 16:28:00.838218+00 f t 24000.00 1 24000.00 12501 88 \N 11063 +84150 2025-11-16 16:28:00.8426+00 2025-11-16 16:28:00.842606+00 f t 24000.00 1 24000.00 12501 163 \N 11063 +85806 2025-11-18 09:44:31.063591+00 2025-11-18 09:44:31.063602+00 f t 8000.00 1 8000.00 12668 85 \N 11219 +84158 2025-11-16 16:37:56.345022+00 2025-11-16 16:37:56.345031+00 f t 24000.00 1 24000.00 12502 163 \N 11064 +84159 2025-11-16 16:37:56.354845+00 2025-11-16 16:37:56.354853+00 f t 46000.00 1 46000.00 12502 82 \N 11064 +85807 2025-11-18 09:44:31.072964+00 2025-11-18 09:44:31.072972+00 f t 46000.00 1 46000.00 12668 82 \N 11219 +85821 2025-11-18 09:52:38.375552+00 2025-11-18 09:52:38.37556+00 f t 24000.00 1 24000.00 12670 86 \N 11221 +85822 2025-11-18 09:52:38.383264+00 2025-11-18 09:52:38.383274+00 f t 46000.00 1 46000.00 12670 82 \N 11221 +85839 2025-11-18 10:00:18.180777+00 2025-11-18 10:00:18.18079+00 f t 55000.00 1 55000.00 12672 84 \N 11223 +85870 2025-11-18 11:32:24.909807+00 2025-11-18 11:32:24.909819+00 f t 46000.00 1 46000.00 12679 82 \N 11229 +85871 2025-11-18 11:32:24.920987+00 2025-11-18 11:32:24.920998+00 f t 8000.00 1 8000.00 12679 85 \N 11229 +85872 2025-11-18 11:32:24.927553+00 2025-11-18 11:32:24.927564+00 f t 24000.00 1 24000.00 12679 88 \N 11229 +84182 2025-11-16 17:24:33.638285+00 2025-11-16 17:24:33.638293+00 f t 46000.00 1 46000.00 12503 82 \N 11065 +84183 2025-11-16 17:24:33.646531+00 2025-11-16 17:24:33.64654+00 f t 8000.00 1 8000.00 12503 85 \N 11065 +84184 2025-11-16 17:24:33.651018+00 2025-11-16 17:24:33.651026+00 f t 24000.00 1 24000.00 12503 86 \N 11065 +84187 2025-11-16 17:42:54.073184+00 2025-11-16 17:42:54.073196+00 f t 24000.00 1 24000.00 12504 163 \N 11066 +84188 2025-11-16 17:42:54.084259+00 2025-11-16 17:42:54.08427+00 f t 46000.00 1 46000.00 12504 82 \N 11066 +85935 2025-11-18 14:56:38.452361+00 2025-11-18 14:56:38.45237+00 f t 8000.00 1 8000.00 12685 85 \N 11233 +85936 2025-11-18 14:56:38.460975+00 2025-11-18 14:56:38.460983+00 f t 46000.00 1 46000.00 12685 82 \N 11233 +85985 2025-11-18 16:01:50.949902+00 2025-11-18 16:01:50.949911+00 f t 46000.00 1 46000.00 12689 82 \N 11236 +85986 2025-11-18 16:01:50.958504+00 2025-11-18 16:01:50.958512+00 f t 8000.00 1 8000.00 12689 85 \N 11236 +85987 2025-11-18 16:01:50.963486+00 2025-11-18 16:01:50.963495+00 f t 24000.00 1 24000.00 12689 131 \N 11236 +84287 2025-11-16 18:13:14.930189+00 2025-11-16 18:13:14.930199+00 f t 46000.00 1 46000.00 12506 82 \N 11068 +84288 2025-11-16 18:13:14.938113+00 2025-11-16 18:13:14.938122+00 f t 8000.00 1 8000.00 12506 85 \N 11068 +84289 2025-11-16 18:13:14.942432+00 2025-11-16 18:13:14.94244+00 f t 24000.00 1 24000.00 12506 163 \N 11068 +84290 2025-11-16 18:13:14.946762+00 2025-11-16 18:13:14.946769+00 f t 46000.00 1 46000.00 12506 82 \N 11069 +84291 2025-11-16 18:13:14.951367+00 2025-11-16 18:13:14.951374+00 f t 24000.00 1 24000.00 12506 163 \N 11069 +84292 2025-11-16 18:13:14.956212+00 2025-11-16 18:13:14.956222+00 f t 8000.00 1 8000.00 12506 85 \N 11069 +84293 2025-11-16 18:13:14.961046+00 2025-11-16 18:13:14.961056+00 f t 46000.00 1 46000.00 12506 82 \N 11070 +84294 2025-11-16 18:13:14.966798+00 2025-11-16 18:13:14.96681+00 f t 8000.00 1 8000.00 12506 85 \N 11070 +84295 2025-11-16 18:13:14.972906+00 2025-11-16 18:13:14.972917+00 f t 24000.00 1 24000.00 12506 163 \N 11070 +84296 2025-11-16 18:49:42.873721+00 2025-11-16 18:49:42.873733+00 f t 33000.00 1 33000.00 12507 123 \N 11071 +84297 2025-11-16 18:49:42.884419+00 2025-11-16 18:49:42.884427+00 f t 46000.00 1 46000.00 12507 82 \N 11071 +84300 2025-11-16 19:25:08.167664+00 2025-11-16 19:25:08.167678+00 f t 46000.00 1 46000.00 12508 82 \N 11072 +84301 2025-11-16 19:25:08.179243+00 2025-11-16 19:25:08.179257+00 f t 24000.00 1 24000.00 12508 86 \N 11072 +84302 2025-11-16 19:25:08.185173+00 2025-11-16 19:25:08.185183+00 f t 8000.00 1 8000.00 12508 85 \N 11072 +84307 2025-11-16 19:41:23.898553+00 2025-11-16 19:41:23.898561+00 f t 31500.00 1 31500.00 12509 111 \N 11073 +84308 2025-11-16 19:41:23.905766+00 2025-11-16 19:41:23.905772+00 f t 24000.00 1 24000.00 12509 87 \N 11074 +84309 2025-11-16 19:41:23.910088+00 2025-11-16 19:41:23.910095+00 f t 46000.00 1 46000.00 12509 82 \N 11074 +84310 2025-11-16 19:42:20.904462+00 2025-11-16 19:42:20.904475+00 f t 24000.00 1 24000.00 12510 163 \N 11075 +84311 2025-11-16 19:42:20.915163+00 2025-11-16 19:42:20.915177+00 f t 46000.00 1 46000.00 12510 82 \N 11075 +84319 2025-11-16 20:09:30.85384+00 2025-11-16 20:09:30.853854+00 f t 8000.00 1 8000.00 12512 85 \N 11076 +84320 2025-11-16 20:09:30.863472+00 2025-11-16 20:09:30.863484+00 f t 24000.00 1 24000.00 12512 163 \N 11076 +84321 2025-11-16 20:09:30.869252+00 2025-11-16 20:09:30.86926+00 f t 46000.00 1 46000.00 12512 82 \N 11076 +85609 2025-11-18 00:12:22.60625+00 2025-11-18 00:12:22.606259+00 f t 46000.00 1 46000.00 12636 82 \N 11190 +85610 2025-11-18 00:12:22.613604+00 2025-11-18 00:12:22.613611+00 f t 8000.00 1 8000.00 12636 85 \N 11190 +85611 2025-11-18 00:12:22.617943+00 2025-11-18 00:12:22.617949+00 f t 24000.00 1 24000.00 12636 163 \N 11190 +85619 2025-11-18 00:19:00.55215+00 2025-11-18 00:19:00.552162+00 f t 55000.00 1 55000.00 12642 84 \N 11193 +85627 2025-11-18 00:35:25.753035+00 2025-11-18 00:35:25.753049+00 f t 24000.00 1 24000.00 12645 88 \N 11195 +85628 2025-11-18 00:35:25.762624+00 2025-11-18 00:35:25.762632+00 f t 46000.00 1 46000.00 12645 82 \N 11195 +84419 2025-11-16 20:28:53.933047+00 2025-11-16 20:28:53.933059+00 f t 46000.00 1 46000.00 12513 82 \N 11080 +84420 2025-11-16 20:28:53.943805+00 2025-11-16 20:28:53.943816+00 f t 46000.00 1 46000.00 12513 82 \N 11081 +84421 2025-11-16 20:28:53.949673+00 2025-11-16 20:28:53.949683+00 f t 46000.00 1 46000.00 12513 82 \N 11083 +84422 2025-11-16 20:28:53.95474+00 2025-11-16 20:28:53.954747+00 f t 46000.00 1 46000.00 12513 82 \N 11082 +84423 2025-11-16 20:28:53.959363+00 2025-11-16 20:28:53.95937+00 f t 33000.00 1 33000.00 12513 123 \N 11083 +84424 2025-11-16 20:28:53.963791+00 2025-11-16 20:28:53.963798+00 f t 33000.00 1 33000.00 12513 123 \N 11080 +84425 2025-11-16 20:28:53.968037+00 2025-11-16 20:28:53.968046+00 f t 33000.00 1 33000.00 12513 123 \N 11081 +84426 2025-11-16 20:28:53.972548+00 2025-11-16 20:28:53.972555+00 f t 8000.00 1 8000.00 12513 85 \N 11081 +84427 2025-11-16 20:28:53.977139+00 2025-11-16 20:28:53.977145+00 f t 8000.00 1 8000.00 12513 85 \N 11080 +84428 2025-11-16 20:28:53.98129+00 2025-11-16 20:28:53.981299+00 f t 8000.00 1 8000.00 12513 85 \N 11083 +84429 2025-11-16 20:28:53.985645+00 2025-11-16 20:28:53.985652+00 f t 8000.00 1 8000.00 12513 85 \N 11082 +84430 2025-11-16 20:28:53.990549+00 2025-11-16 20:28:53.990558+00 f t 24000.00 1 24000.00 12513 86 \N 11080 +84431 2025-11-16 20:28:53.995378+00 2025-11-16 20:28:53.995385+00 f t 24000.00 1 24000.00 12513 163 \N 11082 +84432 2025-11-16 20:28:54.000151+00 2025-11-16 20:28:54.000159+00 f t 24000.00 1 24000.00 12513 163 \N 11083 +84433 2025-11-16 20:28:54.005773+00 2025-11-16 20:28:54.005782+00 f t 24000.00 1 24000.00 12513 163 \N 11081 +84434 2025-11-16 20:28:54.010547+00 2025-11-16 20:28:54.010556+00 f t 33000.00 1 33000.00 12513 123 \N 11082 +84440 2025-11-16 22:16:40.472934+00 2025-11-16 22:16:40.472943+00 f t 93750.00 1 93750.00 12514 90 \N 11084 +84441 2025-11-16 22:16:40.480601+00 2025-11-16 22:16:40.480609+00 f t 46000.00 1 46000.00 12514 82 \N 11084 +84442 2025-11-16 23:48:02.612019+00 2025-11-16 23:48:02.612033+00 f t 24000.00 1 24000.00 12515 86 \N 11085 +84443 2025-11-16 23:48:02.62442+00 2025-11-16 23:48:02.624431+00 f t 46000.00 1 46000.00 12515 82 \N 11085 +84444 2025-11-17 00:16:38.118748+00 2025-11-17 00:16:38.118758+00 f t 24000.00 1 24000.00 12516 88 \N 11086 +84445 2025-11-17 00:16:38.128381+00 2025-11-17 00:16:38.128392+00 f t 46000.00 1 46000.00 12516 82 \N 11086 +84446 2025-11-17 00:39:01.863896+00 2025-11-17 00:39:01.863912+00 f t 24000.00 1 24000.00 12517 163 \N 11088 +84447 2025-11-17 00:39:01.890458+00 2025-11-17 00:39:01.890474+00 f t 46000.00 1 46000.00 12517 82 \N 11088 +84448 2025-11-17 00:49:55.263896+00 2025-11-17 00:49:55.263905+00 f t 46000.00 1 46000.00 12518 82 \N 11089 +84453 2025-11-17 00:55:41.425016+00 2025-11-17 00:55:41.425028+00 f t 8000.00 1 8000.00 12519 85 \N 11090 +84454 2025-11-17 00:55:41.433401+00 2025-11-17 00:55:41.43341+00 f t 46000.00 1 46000.00 12519 82 \N 11090 +84455 2025-11-17 01:52:34.024236+00 2025-11-17 01:52:34.024245+00 f t 24000.00 1 24000.00 12522 86 \N 11094 +84456 2025-11-17 01:52:34.033447+00 2025-11-17 01:52:34.033455+00 f t 46000.00 1 46000.00 12522 82 \N 11094 +84459 2025-11-17 02:19:19.45436+00 2025-11-17 02:19:19.454369+00 f t 46000.00 1 46000.00 12524 82 \N 11095 +84460 2025-11-17 02:19:19.461973+00 2025-11-17 02:19:19.461981+00 f t 8000.00 1 8000.00 12524 85 \N 11095 +84461 2025-11-17 02:33:58.916129+00 2025-11-17 02:33:58.916137+00 f t 24000.00 1 24000.00 12525 163 \N 11096 +84462 2025-11-17 02:33:58.924131+00 2025-11-17 02:33:58.924139+00 f t 46000.00 1 46000.00 12525 82 \N 11096 +84467 2025-11-17 03:00:23.559943+00 2025-11-17 03:00:23.559956+00 f t 24000.00 1 24000.00 12526 163 \N 11097 +84468 2025-11-17 03:00:23.574207+00 2025-11-17 03:00:23.574216+00 f t 46000.00 1 46000.00 12526 82 \N 11097 +84504 2025-11-17 03:04:31.832088+00 2025-11-17 03:04:31.832099+00 f t 46000.00 1 46000.00 12527 82 \N 11098 +84505 2025-11-17 03:04:31.840026+00 2025-11-17 03:04:31.840034+00 f t 33000.00 1 33000.00 12527 123 \N 11098 +84506 2025-11-17 03:04:31.84466+00 2025-11-17 03:04:31.844666+00 f t 8000.00 1 8000.00 12527 85 \N 11098 +84507 2025-11-17 03:04:31.848709+00 2025-11-17 03:04:31.848715+00 f t 24000.00 1 24000.00 12527 163 \N 11098 +84575 2025-11-17 05:59:06.840267+00 2025-11-17 05:59:06.840278+00 f t 46000.00 1 46000.00 12529 82 \N 11101 +84576 2025-11-17 05:59:06.849629+00 2025-11-17 05:59:06.849638+00 f t 24000.00 1 24000.00 12529 163 \N 11101 +84577 2025-11-17 05:59:06.854472+00 2025-11-17 05:59:06.85448+00 f t 46000.00 1 46000.00 12529 82 \N 11102 +84578 2025-11-17 05:59:06.859575+00 2025-11-17 05:59:06.859583+00 f t 24000.00 1 24000.00 12529 163 \N 11102 +84579 2025-11-17 05:59:06.864329+00 2025-11-17 05:59:06.864337+00 f t 46000.00 1 46000.00 12529 82 \N 11103 +84580 2025-11-17 05:59:06.869257+00 2025-11-17 05:59:06.869265+00 f t 24000.00 1 24000.00 12529 163 \N 11103 +84581 2025-11-17 06:24:07.281729+00 2025-11-17 06:24:07.281738+00 f t 46000.00 1 46000.00 12532 82 \N 11105 +84582 2025-11-17 07:52:41.355938+00 2025-11-17 07:52:41.355947+00 f t 24000.00 1 24000.00 12533 163 \N 11106 +84583 2025-11-17 07:52:41.363793+00 2025-11-17 07:52:41.363801+00 f t 46000.00 1 46000.00 12533 82 \N 11106 +84586 2025-11-17 10:25:06.275222+00 2025-11-17 10:25:06.275233+00 f t 24000.00 1 24000.00 12534 163 \N 11108 +84587 2025-11-17 10:25:06.289123+00 2025-11-17 10:25:06.289133+00 f t 46000.00 1 46000.00 12534 82 \N 11108 +84588 2025-11-17 12:32:44.862779+00 2025-11-17 12:32:44.862794+00 f t 8000.00 1 8000.00 12536 85 \N 11110 +84589 2025-11-17 12:32:44.870608+00 2025-11-17 12:32:44.870615+00 f t 46000.00 1 46000.00 12536 82 \N 11110 +84597 2025-11-17 12:33:41.694728+00 2025-11-17 12:33:41.694736+00 f t 24000.00 1 24000.00 12537 88 \N 11112 +84598 2025-11-17 12:33:41.702843+00 2025-11-17 12:33:41.70285+00 f t 24000.00 1 24000.00 12537 163 \N 11112 +84599 2025-11-17 12:33:41.706998+00 2025-11-17 12:33:41.707004+00 f t 46000.00 1 46000.00 12537 82 \N 11112 +84602 2025-11-17 12:39:42.886682+00 2025-11-17 12:39:42.886691+00 f t 8000.00 1 8000.00 12538 85 \N 11113 +84603 2025-11-17 12:39:42.893958+00 2025-11-17 12:39:42.893965+00 f t 46000.00 1 46000.00 12538 82 \N 11113 +84606 2025-11-17 12:40:02.683313+00 2025-11-17 12:40:02.683327+00 f t 8000.00 1 8000.00 12539 85 \N 11114 +84607 2025-11-17 12:40:02.703232+00 2025-11-17 12:40:02.703246+00 f t 46000.00 1 46000.00 12539 82 \N 11114 +84618 2025-11-17 12:45:59.913222+00 2025-11-17 12:45:59.913231+00 f t 24000.00 1 24000.00 12541 88 \N 11116 +84619 2025-11-17 12:45:59.92136+00 2025-11-17 12:45:59.921368+00 f t 46000.00 1 46000.00 12541 82 \N 11116 +84624 2025-11-17 12:46:23.456554+00 2025-11-17 12:46:23.456562+00 f t 85000.00 1 85000.00 12542 108 \N 10950 +85612 2025-11-18 00:15:14.430625+00 2025-11-18 00:15:14.430634+00 f t 30000.00 1 30000.00 12640 83 \N 11192 +88941 2025-11-24 01:27:21.669227+00 2025-11-24 01:27:21.669236+00 f t 24000.00 1 24000.00 13340 86 \N 11774 +88942 2025-11-24 01:27:21.690621+00 2025-11-24 01:27:21.69063+00 f t 46000.00 1 46000.00 13340 82 \N 11774 +88955 2025-11-24 03:38:41.832588+00 2025-11-24 03:38:41.832596+00 f t 8000.00 1 8000.00 13348 85 \N 11779 +88956 2025-11-24 03:38:41.863371+00 2025-11-24 03:38:41.863382+00 f t 46000.00 1 46000.00 13348 82 \N 11779 +85650 2025-11-18 01:10:48.514285+00 2025-11-18 01:10:48.514296+00 f t 46000.00 1 46000.00 12648 82 \N 11199 +85651 2025-11-18 01:10:48.522688+00 2025-11-18 01:10:48.522696+00 f t 93750.00 1 93750.00 12648 90 \N 11199 +88990 2025-11-24 09:05:05.639691+00 2025-11-24 09:05:05.639706+00 f t 46000.00 1 46000.00 13363 82 \N 11792 +89000 2025-11-24 09:42:43.836467+00 2025-11-24 09:42:43.836474+00 f t 78000.00 1 78000.00 13364 106 \N 11793 +89001 2025-11-24 09:42:43.857206+00 2025-11-24 09:42:43.857215+00 f t 85000.00 1 85000.00 13364 108 \N 11793 +89057 2025-11-24 12:08:21.393727+00 2025-11-24 12:08:21.393735+00 f t 8000.00 1 8000.00 13380 85 \N 11807 +89058 2025-11-24 12:08:21.418145+00 2025-11-24 12:08:21.418153+00 f t 46000.00 1 46000.00 13380 82 \N 11807 +89073 2025-11-24 12:24:09.986453+00 2025-11-24 12:24:09.986461+00 f t 8000.00 1 8000.00 13384 85 \N 11811 +89074 2025-11-24 12:24:10.011587+00 2025-11-24 12:24:10.011598+00 f t 46000.00 1 46000.00 13384 82 \N 11811 +85760 2025-11-18 02:17:20.736456+00 2025-11-18 02:17:20.736464+00 f t 46000.00 1 46000.00 12654 82 \N 11207 +85761 2025-11-18 02:17:20.744739+00 2025-11-18 02:17:20.744748+00 f t 8000.00 1 8000.00 12654 85 \N 11207 +85762 2025-11-18 02:17:20.74956+00 2025-11-18 02:17:20.749567+00 f t 24000.00 1 24000.00 12654 86 \N 11207 +85794 2025-11-18 05:31:19.973039+00 2025-11-18 05:31:19.973049+00 f t 55000.00 1 55000.00 12663 84 \N 11215 +84688 2025-11-17 12:48:50.885223+00 2025-11-17 12:48:50.885233+00 f t 46000.00 1 46000.00 12540 82 \N 11115 +84689 2025-11-17 12:48:50.893426+00 2025-11-17 12:48:50.893434+00 f t 8000.00 1 8000.00 12540 85 \N 11115 +84690 2025-11-17 12:48:50.897782+00 2025-11-17 12:48:50.897788+00 f t 24000.00 1 24000.00 12540 88 \N 11115 +84691 2025-11-17 12:48:50.902045+00 2025-11-17 12:48:50.902057+00 f t 46000.00 1 46000.00 12540 82 \N 11117 +84692 2025-11-17 12:48:50.906506+00 2025-11-17 12:48:50.906513+00 f t 8000.00 1 8000.00 12540 85 \N 11117 +84693 2025-11-17 12:48:50.910981+00 2025-11-17 12:48:50.910987+00 f t 24000.00 1 24000.00 12540 86 \N 11117 +85850 2025-11-18 10:50:24.571376+00 2025-11-18 10:50:24.571389+00 f t 8000.00 1 8000.00 12674 85 \N 11225 +85851 2025-11-18 10:50:24.583658+00 2025-11-18 10:50:24.583667+00 f t 46000.00 1 46000.00 12674 82 \N 11225 +84708 2025-11-17 13:00:20.947126+00 2025-11-17 13:00:20.947174+00 f t 46000.00 1 46000.00 12543 82 \N 11118 +84709 2025-11-17 13:00:20.962061+00 2025-11-17 13:00:20.962074+00 f t 8000.00 1 8000.00 12543 85 \N 11118 +85937 2025-11-18 14:57:57.249758+00 2025-11-18 14:57:57.249802+00 f t 46000.00 1 46000.00 12684 82 \N 8096 +85980 2025-11-18 15:59:14.972765+00 2025-11-18 15:59:14.972773+00 f t 110000.00 1 110000.00 12614 103 \N 11169 +86000 2025-11-18 17:15:28.351726+00 2025-11-18 17:15:28.351733+00 f t 33000.00 1 33000.00 12700 123 \N 11243 +86001 2025-11-18 17:15:28.360141+00 2025-11-18 17:15:28.360152+00 f t 46000.00 1 46000.00 12700 82 \N 11243 +86006 2025-11-18 17:18:41.441692+00 2025-11-18 17:18:41.441701+00 f t 24000.00 1 24000.00 12702 86 \N 11244 +86007 2025-11-18 17:18:41.450836+00 2025-11-18 17:18:41.450845+00 f t 46000.00 1 46000.00 12702 82 \N 11244 +86019 2025-11-18 17:32:04.730454+00 2025-11-18 17:32:04.730463+00 f t 30000.00 1 30000.00 12705 83 \N 11246 +86045 2025-11-18 18:45:24.725214+00 2025-11-18 18:45:24.725223+00 f t 55000.00 1 55000.00 12713 84 \N 11252 +86097 2025-11-18 19:57:58.893496+00 2025-11-18 19:57:58.893505+00 f t 8000.00 1 8000.00 12728 85 \N 11268 +86098 2025-11-18 19:57:58.903014+00 2025-11-18 19:57:58.903023+00 f t 46000.00 1 46000.00 12728 82 \N 11268 +86105 2025-11-18 20:10:01.778795+00 2025-11-18 20:10:01.77881+00 f t 46000.00 1 46000.00 12733 82 \N 11270 +86106 2025-11-18 20:10:01.797105+00 2025-11-18 20:10:01.797118+00 f t 24000.00 1 24000.00 12733 86 \N 11270 +86119 2025-11-18 21:29:08.164274+00 2025-11-18 21:29:08.164283+00 f t 13200.00 1 13200.00 12736 146 \N 10123 +86125 2025-11-18 21:34:55.521301+00 2025-11-18 21:34:55.521312+00 f t 46000.00 1 46000.00 12739 82 \N 11274 +86247 2025-11-18 22:42:28.764768+00 2025-11-18 22:42:28.764779+00 f t 46000.00 1 46000.00 12752 82 \N 11288 +86248 2025-11-18 22:42:28.774888+00 2025-11-18 22:42:28.774899+00 f t 46000.00 1 46000.00 12752 82 \N 11289 +86259 2025-11-18 23:57:28.215202+00 2025-11-18 23:57:28.21521+00 f t 8000.00 1 8000.00 12762 85 \N 11296 +86260 2025-11-18 23:57:28.224937+00 2025-11-18 23:57:28.224944+00 f t 46000.00 1 46000.00 12762 82 \N 11296 +86316 2025-11-19 01:50:25.003264+00 2025-11-19 01:50:25.003276+00 f t 55000.00 1 55000.00 12774 84 \N 11306 +86347 2025-11-19 02:30:44.285413+00 2025-11-19 02:30:44.285425+00 f t 46000.00 1 46000.00 12779 82 \N 11312 +86367 2025-11-19 02:53:09.085285+00 2025-11-19 02:53:09.085297+00 f t 46000.00 1 46000.00 12782 82 \N 11314 +86368 2025-11-19 02:53:09.093478+00 2025-11-19 02:53:09.093486+00 f t 8000.00 1 8000.00 12782 85 \N 11314 +86369 2025-11-19 02:53:09.098038+00 2025-11-19 02:53:09.098045+00 f t 24000.00 1 24000.00 12782 86 \N 11314 +86370 2025-11-19 02:53:09.102344+00 2025-11-19 02:53:09.10235+00 f t 8000.00 1 8000.00 12782 85 \N 11315 +86371 2025-11-19 02:53:09.10663+00 2025-11-19 02:53:09.106637+00 f t 46000.00 1 46000.00 12782 82 \N 11315 +86378 2025-11-19 03:41:38.595464+00 2025-11-19 03:41:38.595474+00 f t 24000.00 1 24000.00 12785 86 \N 11317 +86379 2025-11-19 03:41:38.604322+00 2025-11-19 03:41:38.604332+00 f t 46000.00 1 46000.00 12785 82 \N 11318 +86380 2025-11-19 03:41:38.609717+00 2025-11-19 03:41:38.609726+00 f t 8000.00 1 8000.00 12785 85 \N 11318 +86381 2025-11-19 03:41:38.615172+00 2025-11-19 03:41:38.615181+00 f t 46000.00 1 46000.00 12785 82 \N 11317 +86382 2025-11-19 04:26:55.768459+00 2025-11-19 04:26:55.768467+00 f t 55000.00 1 55000.00 12786 84 \N 11319 +86385 2025-11-19 04:36:12.856434+00 2025-11-19 04:36:12.856441+00 f t 69000.00 1 69000.00 12791 82 \N 11321 +86388 2025-11-19 05:44:41.749347+00 2025-11-19 05:44:41.74936+00 f t 23000.00 1 23000.00 12792 172 \N 11323 +86389 2025-11-19 09:03:53.922914+00 2025-11-19 09:03:53.922926+00 f t 46000.00 1 46000.00 12795 82 \N 11326 +86400 2025-11-19 09:50:51.739329+00 2025-11-19 09:50:51.739341+00 f t 24000.00 1 24000.00 12798 163 \N 11328 +86401 2025-11-19 09:50:51.750148+00 2025-11-19 09:50:51.750156+00 f t 46000.00 1 46000.00 12798 82 \N 11328 +86406 2025-11-19 10:05:20.903166+00 2025-11-19 10:05:20.903178+00 f t 88000.00 1 88000.00 12799 167 \N 11329 +86407 2025-11-19 10:09:34.948199+00 2025-11-19 10:09:34.948212+00 f t 24000.00 1 24000.00 12800 163 \N 11330 +86408 2025-11-19 10:09:34.957972+00 2025-11-19 10:09:34.957983+00 f t 46000.00 1 46000.00 12800 82 \N 11330 +86409 2025-11-19 10:13:54.238517+00 2025-11-19 10:13:54.238529+00 f t 46000.00 1 46000.00 12801 82 \N 11331 +85581 2025-11-17 22:49:57.671999+00 2025-11-17 22:49:57.672008+00 f t 46000.00 1 46000.00 12629 82 \N 11183 +85613 2025-11-18 00:15:18.634456+00 2025-11-18 00:15:18.634464+00 f t 46000.00 1 46000.00 12641 82 \N 10572 +88957 2025-11-24 03:43:29.065893+00 2025-11-24 03:43:29.065929+00 f t 30000.00 1 30000.00 13349 83 \N 11780 +88969 2025-11-24 05:21:12.220947+00 2025-11-24 05:21:12.220955+00 f t 24000.00 1 24000.00 13356 163 \N 11785 +88970 2025-11-24 05:21:12.248281+00 2025-11-24 05:21:12.248289+00 f t 46000.00 1 46000.00 13356 82 \N 11785 +88984 2025-11-24 05:48:38.364547+00 2025-11-24 05:48:38.364555+00 f t 20500.00 1 20500.00 13359 109 \N 11788 +85692 2025-11-18 01:16:50.45039+00 2025-11-18 01:16:50.450402+00 f t 46000.00 1 46000.00 12649 82 \N 11201 +85693 2025-11-18 01:16:50.460446+00 2025-11-18 01:16:50.460458+00 f t 24000.00 1 24000.00 12649 163 \N 11201 +85694 2025-11-18 01:16:50.46656+00 2025-11-18 01:16:50.466571+00 f t 24000.00 1 24000.00 12649 163 \N 11202 +85695 2025-11-18 01:16:50.472692+00 2025-11-18 01:16:50.472701+00 f t 46000.00 1 46000.00 12649 82 \N 11202 +85784 2025-11-18 04:02:12.235207+00 2025-11-18 04:02:12.235215+00 f t 46000.00 1 46000.00 12658 82 \N 11211 +85810 2025-11-18 09:50:34.251823+00 2025-11-18 09:50:34.251832+00 f t 24000.00 1 24000.00 12669 86 \N 11220 +85811 2025-11-18 09:50:34.262313+00 2025-11-18 09:50:34.262322+00 f t 46000.00 1 46000.00 12669 82 \N 11220 +85845 2025-11-18 10:11:42.590754+00 2025-11-18 10:11:42.590762+00 f t 88000.00 1 88000.00 12673 167 \N 11224 +85860 2025-11-18 11:11:35.646686+00 2025-11-18 11:11:35.646697+00 f t 24000.00 1 24000.00 12677 163 \N 11227 +85861 2025-11-18 11:11:35.655269+00 2025-11-18 11:11:35.655277+00 f t 46000.00 1 46000.00 12677 82 \N 11227 +84987 2025-11-17 13:11:20.750209+00 2025-11-17 13:11:20.750218+00 f t 20500.00 1 20500.00 12547 109 \N 11121 +84988 2025-11-17 13:11:20.757965+00 2025-11-17 13:11:20.757972+00 f t 46000.00 1 46000.00 12547 82 \N 11121 +84989 2025-11-17 13:11:20.762375+00 2025-11-17 13:11:20.762381+00 f t 33000.00 1 33000.00 12547 124 \N 11121 +84990 2025-11-17 13:11:20.766372+00 2025-11-17 13:11:20.766378+00 f t 8000.00 1 8000.00 12547 85 \N 11121 +84991 2025-11-17 13:11:20.770401+00 2025-11-17 13:11:20.770407+00 f t 24000.00 1 24000.00 12547 163 \N 11121 +84992 2025-11-17 13:11:20.774516+00 2025-11-17 13:11:20.774523+00 f t 52500.00 1 52500.00 12547 114 \N 11121 +85942 2025-11-18 15:16:22.316209+00 2025-11-18 15:16:22.31622+00 f t 46000.00 1 46000.00 12687 82 \N 11234 +85989 2025-11-18 16:25:37.994634+00 2025-11-18 16:25:37.994643+00 f t 46000.00 1 46000.00 12692 82 \N 11238 +85994 2025-11-18 16:47:26.576475+00 2025-11-18 16:47:26.576487+00 f t 32500.00 1 32500.00 12611 112 \N 11166 +85995 2025-11-18 16:47:26.584485+00 2025-11-18 16:47:26.584492+00 f t 31500.00 1 31500.00 12611 111 \N 11168 +85996 2025-11-18 16:47:26.588836+00 2025-11-18 16:47:26.588843+00 f t 87000.00 1 87000.00 12611 165 \N 11168 +85997 2025-11-18 16:47:26.593251+00 2025-11-18 16:47:26.593257+00 f t 46000.00 1 46000.00 12611 82 \N 11166 +86002 2025-11-18 17:17:32.383179+00 2025-11-18 17:17:32.383188+00 f t 46000.00 1 46000.00 12701 82 \N 8096 +86024 2025-11-18 17:54:27.184523+00 2025-11-18 17:54:27.184534+00 f t 46000.00 1 46000.00 12709 82 \N 11248 +86025 2025-11-18 17:54:27.193754+00 2025-11-18 17:54:27.193762+00 f t 29000.00 1 29000.00 12709 138 \N 11248 +86051 2025-11-18 19:25:38.43424+00 2025-11-18 19:25:38.43425+00 f t 93750.00 1 93750.00 12718 90 \N 11260 +86052 2025-11-18 19:25:38.444306+00 2025-11-18 19:25:38.444315+00 f t 46000.00 1 46000.00 12718 82 \N 11260 +86095 2025-11-18 19:49:47.706051+00 2025-11-18 19:49:47.706064+00 f t 55000.00 1 55000.00 12723 84 \N 11263 +86099 2025-11-18 19:58:08.540702+00 2025-11-18 19:58:08.540713+00 f t 23000.00 1 23000.00 12726 172 \N 11266 +86102 2025-11-18 19:59:24.301777+00 2025-11-18 19:59:24.301786+00 f t 55000.00 1 55000.00 12729 84 \N 11269 +86107 2025-11-18 20:10:51.246727+00 2025-11-18 20:10:51.24674+00 f t 120000.00 1 120000.00 12734 103 \N 11253 +86117 2025-11-18 20:24:19.585058+00 2025-11-18 20:24:19.585066+00 f t 55000.00 1 55000.00 12735 84 \N 11271 +86120 2025-11-18 21:33:23.93926+00 2025-11-18 21:33:23.939269+00 f t 46000.00 1 46000.00 12737 82 \N 11272 +86126 2025-11-18 21:35:01.043369+00 2025-11-18 21:35:01.043382+00 f t 46000.00 1 46000.00 12738 82 \N 11273 +86129 2025-11-18 21:37:31.220716+00 2025-11-18 21:37:31.220724+00 f t 88000.00 1 88000.00 12741 167 \N 11276 +86152 2025-11-18 21:47:39.94329+00 2025-11-18 21:47:39.943299+00 f t 88000.00 1 88000.00 12743 167 \N 11279 +86157 2025-11-18 22:06:06.76905+00 2025-11-18 22:06:06.769064+00 f t 46000.00 1 46000.00 12745 82 \N 11280 +86158 2025-11-18 22:06:06.780597+00 2025-11-18 22:06:06.78061+00 f t 8000.00 1 8000.00 12745 85 \N 11280 +86159 2025-11-18 22:06:06.786816+00 2025-11-18 22:06:06.786828+00 f t 81500.00 1 81500.00 12745 143 \N 11280 +86212 2025-11-18 22:17:48.264055+00 2025-11-18 22:17:48.264067+00 f t 46000.00 1 46000.00 12748 82 \N 11283 +86213 2025-11-18 22:17:48.275271+00 2025-11-18 22:17:48.275283+00 f t 8000.00 1 8000.00 12748 85 \N 11283 +86214 2025-11-18 22:17:48.281887+00 2025-11-18 22:17:48.281897+00 f t 8000.00 1 8000.00 12748 85 \N 11284 +86215 2025-11-18 22:17:48.28754+00 2025-11-18 22:17:48.287548+00 f t 46000.00 1 46000.00 12748 82 \N 11284 +86249 2025-11-18 23:17:38.366375+00 2025-11-18 23:17:38.366384+00 f t 55000.00 1 55000.00 12755 84 \N 11291 +86254 2025-11-18 23:29:02.393611+00 2025-11-18 23:29:02.393623+00 f t 46000.00 1 46000.00 12759 82 \N 11294 +86255 2025-11-18 23:29:02.405334+00 2025-11-18 23:29:02.405345+00 f t 24000.00 1 24000.00 12759 87 \N 11294 +86256 2025-11-18 23:29:02.411584+00 2025-11-18 23:29:02.411594+00 f t 8000.00 1 8000.00 12759 85 \N 11294 +86265 2025-11-19 01:13:51.667784+00 2025-11-19 01:13:51.667793+00 f t 46000.00 1 46000.00 12766 82 \N 11299 +86266 2025-11-19 01:13:51.676557+00 2025-11-19 01:13:51.676568+00 f t 33000.00 1 33000.00 12766 124 \N 11299 +86269 2025-11-19 01:34:02.400562+00 2025-11-19 01:34:02.400573+00 f t 55000.00 1 55000.00 12770 84 \N 11301 +86278 2025-11-19 01:43:10.174117+00 2025-11-19 01:43:10.174126+00 f t 46000.00 1 46000.00 12772 82 \N 11303 +86279 2025-11-19 01:43:10.182659+00 2025-11-19 01:43:10.182667+00 f t 8000.00 1 8000.00 12772 85 \N 11303 +86313 2025-11-19 01:49:31.898639+00 2025-11-19 01:49:31.898648+00 f t 46000.00 1 46000.00 12773 82 \N 11304 +86314 2025-11-19 01:49:31.907207+00 2025-11-19 01:49:31.907216+00 f t 8000.00 1 8000.00 12773 85 \N 11304 +86315 2025-11-19 01:49:31.911689+00 2025-11-19 01:49:31.911697+00 f t 55000.00 1 55000.00 12773 84 \N 11305 +85147 2025-11-17 13:44:04.572524+00 2025-11-17 13:44:04.572537+00 f t 88000.00 1 88000.00 12551 167 \N 5555 +85148 2025-11-17 13:44:07.831603+00 2025-11-17 13:44:07.831615+00 f t 78000.00 1 78000.00 12552 106 \N 11058 +86339 2025-11-19 02:28:18.472965+00 2025-11-19 02:28:18.472974+00 f t 46000.00 1 46000.00 12777 82 \N 11309 +86340 2025-11-19 02:28:18.483272+00 2025-11-19 02:28:18.483281+00 f t 46000.00 1 46000.00 12777 82 \N 11310 +86341 2025-11-19 02:28:18.488778+00 2025-11-19 02:28:18.488785+00 f t 24000.00 1 24000.00 12777 88 \N 11310 +86348 2025-11-19 02:31:04.302742+00 2025-11-19 02:31:04.302755+00 f t 55000.00 1 55000.00 12778 84 \N 11311 +86350 2025-11-19 02:48:34.192681+00 2025-11-19 02:48:34.1927+00 f t 46000.00 1 46000.00 12780 82 \N 11313 +85229 2025-11-17 14:18:04.273917+00 2025-11-17 14:18:04.273929+00 f t 46000.00 1 46000.00 12553 82 \N 11123 +85230 2025-11-17 14:18:04.284648+00 2025-11-17 14:18:04.284659+00 f t 8000.00 1 8000.00 12553 85 \N 11123 +85231 2025-11-17 14:18:04.290935+00 2025-11-17 14:18:04.290943+00 f t 24000.00 1 24000.00 12553 86 \N 11123 +85232 2025-11-17 14:18:04.296568+00 2025-11-17 14:18:04.296578+00 f t 46000.00 1 46000.00 12553 82 \N 11124 +85233 2025-11-17 14:18:04.303072+00 2025-11-17 14:18:04.303083+00 f t 8000.00 1 8000.00 12553 85 \N 11124 +85234 2025-11-17 14:18:04.309378+00 2025-11-17 14:18:04.309387+00 f t 24000.00 1 24000.00 12553 86 \N 11124 +85235 2025-11-17 14:18:04.314677+00 2025-11-17 14:18:04.314686+00 f t 24000.00 1 24000.00 12553 87 \N 11124 +85236 2025-11-17 14:32:27.794983+00 2025-11-17 14:32:27.794992+00 f t 24000.00 1 24000.00 12554 163 \N 11125 +85237 2025-11-17 14:32:27.805075+00 2025-11-17 14:32:27.805083+00 f t 46000.00 1 46000.00 12554 82 \N 11125 +85247 2025-11-17 14:39:25.02231+00 2025-11-17 14:39:25.022318+00 f t 8000.00 1 8000.00 12556 85 \N 11126 +85248 2025-11-17 14:39:25.030554+00 2025-11-17 14:39:25.030562+00 f t 24000.00 1 24000.00 12556 86 \N 11126 +85249 2025-11-17 14:39:25.035423+00 2025-11-17 14:39:25.035431+00 f t 46000.00 1 46000.00 12556 82 \N 11126 +85255 2025-11-17 14:55:00.748446+00 2025-11-17 14:55:00.748457+00 f t 46000.00 1 46000.00 12550 82 \N 11121 +85256 2025-11-17 14:55:00.75853+00 2025-11-17 14:55:00.758544+00 f t 33000.00 1 33000.00 12550 124 \N 11121 +85257 2025-11-17 14:55:00.765114+00 2025-11-17 14:55:00.765122+00 f t 8000.00 1 8000.00 12550 85 \N 11121 +85258 2025-11-17 14:55:00.77015+00 2025-11-17 14:55:00.770158+00 f t 24000.00 1 24000.00 12550 163 \N 11121 +85259 2025-11-17 14:59:43.722493+00 2025-11-17 14:59:43.722501+00 f t 24000.00 1 24000.00 12557 163 \N 11127 +85260 2025-11-17 14:59:43.730822+00 2025-11-17 14:59:43.730831+00 f t 46000.00 1 46000.00 12557 82 \N 11127 +85271 2025-11-17 15:10:32.948969+00 2025-11-17 15:10:32.948981+00 f t 46000.00 1 46000.00 12558 82 \N 11128 +85272 2025-11-17 15:10:32.958016+00 2025-11-17 15:10:32.958024+00 f t 8000.00 1 8000.00 12558 85 \N 11128 +85273 2025-11-17 15:10:47.978354+00 2025-11-17 15:10:47.978362+00 f t 13200.00 1 13200.00 12559 146 \N 11121 +85274 2025-11-17 15:15:13.077063+00 2025-11-17 15:15:13.077071+00 f t 8000.00 1 8000.00 12561 85 \N 11130 +85275 2025-11-17 15:15:13.086078+00 2025-11-17 15:15:13.086086+00 f t 46000.00 1 46000.00 12561 82 \N 11130 +85280 2025-11-17 15:16:41.42396+00 2025-11-17 15:16:41.423969+00 f t 46000.00 1 46000.00 12560 82 \N 11129 +85286 2025-11-17 15:34:50.328058+00 2025-11-17 15:34:50.328069+00 f t 23000.00 1 23000.00 12565 172 \N 11058 +85291 2025-11-17 15:55:31.120348+00 2025-11-17 15:55:31.120357+00 f t 8000.00 1 8000.00 12566 85 \N 11133 +85292 2025-11-17 15:55:31.129316+00 2025-11-17 15:55:31.129325+00 f t 46000.00 1 46000.00 12566 82 \N 11133 +85293 2025-11-17 16:03:57.610137+00 2025-11-17 16:03:57.610149+00 f t 82000.00 1 82000.00 12567 97 \N 11134 +85294 2025-11-17 16:23:45.580194+00 2025-11-17 16:23:45.580202+00 f t 24000.00 1 24000.00 12570 163 \N 11135 +85295 2025-11-17 16:23:45.588491+00 2025-11-17 16:23:45.588498+00 f t 46000.00 1 46000.00 12570 82 \N 11135 +85296 2025-11-17 16:36:53.713942+00 2025-11-17 16:36:53.71395+00 f t 110000.00 1 110000.00 12572 103 \N 10177 +85297 2025-11-17 16:39:20.240946+00 2025-11-17 16:39:20.240961+00 f t 46000.00 1 46000.00 12573 82 \N 10177 +85298 2025-11-17 16:51:06.58613+00 2025-11-17 16:51:06.586138+00 f t 8000.00 1 8000.00 12574 85 \N 11136 +85299 2025-11-17 16:51:06.594384+00 2025-11-17 16:51:06.594392+00 f t 46000.00 1 46000.00 12574 82 \N 11136 +85303 2025-11-17 16:52:25.763697+00 2025-11-17 16:52:25.763709+00 f t 88000.00 1 88000.00 12575 167 \N 11137 +85304 2025-11-17 16:53:47.255678+00 2025-11-17 16:53:47.25569+00 f t 55000.00 1 55000.00 12571 84 \N 373 +85305 2025-11-17 16:57:38.596289+00 2025-11-17 16:57:38.596297+00 f t 8000.00 1 8000.00 12577 85 \N 11138 +85306 2025-11-17 16:57:38.605221+00 2025-11-17 16:57:38.605233+00 f t 46000.00 1 46000.00 12577 82 \N 11138 +85309 2025-11-17 16:59:44.644293+00 2025-11-17 16:59:44.644303+00 f t 46000.00 1 46000.00 12578 82 \N 11139 +85310 2025-11-17 16:59:44.65415+00 2025-11-17 16:59:44.654158+00 f t 8000.00 1 8000.00 12578 85 \N 11139 +85313 2025-11-17 17:03:06.022409+00 2025-11-17 17:03:06.022419+00 f t 8000.00 1 8000.00 12580 85 \N 11141 +85314 2025-11-17 17:03:06.032122+00 2025-11-17 17:03:06.03213+00 f t 46000.00 1 46000.00 12580 82 \N 11141 +85329 2025-11-17 17:10:44.664337+00 2025-11-17 17:10:44.664351+00 f t 85000.00 1 85000.00 12584 108 \N 11143 +85332 2025-11-17 17:11:49.802814+00 2025-11-17 17:11:49.802823+00 f t 46000.00 1 46000.00 12582 82 \N 11142 +85340 2025-11-17 17:16:26.141903+00 2025-11-17 17:16:26.141913+00 f t 13200.00 1 13200.00 12583 146 \N 11058 +85341 2025-11-17 17:18:56.137255+00 2025-11-17 17:18:56.137264+00 f t 8000.00 1 8000.00 12585 85 \N 11144 +85342 2025-11-17 17:18:56.150504+00 2025-11-17 17:18:56.150515+00 f t 46000.00 1 46000.00 12585 82 \N 11144 +85343 2025-11-17 17:35:26.484547+00 2025-11-17 17:35:26.484555+00 f t 8000.00 1 8000.00 12587 85 \N 11145 +85344 2025-11-17 17:35:26.492618+00 2025-11-17 17:35:26.492625+00 f t 46000.00 1 46000.00 12587 82 \N 11145 +85345 2025-11-17 17:42:15.811298+00 2025-11-17 17:42:15.811307+00 f t 24000.00 1 24000.00 12589 163 \N 11147 +85346 2025-11-17 17:42:15.820281+00 2025-11-17 17:42:15.820288+00 f t 46000.00 1 46000.00 12589 82 \N 11147 +85347 2025-11-17 18:28:30.069967+00 2025-11-17 18:28:30.069976+00 f t 55000.00 1 55000.00 12590 84 \N 11148 +85350 2025-11-17 18:35:50.439319+00 2025-11-17 18:35:50.439328+00 f t 8000.00 1 8000.00 12591 85 \N 11149 +85351 2025-11-17 18:35:50.446897+00 2025-11-17 18:35:50.446904+00 f t 46000.00 1 46000.00 12591 82 \N 11149 +85354 2025-11-17 18:40:42.365264+00 2025-11-17 18:40:42.365272+00 f t 46000.00 1 46000.00 12592 82 \N 11150 +85355 2025-11-17 18:40:42.37288+00 2025-11-17 18:40:42.372886+00 f t 24000.00 1 24000.00 12592 163 \N 11150 +85356 2025-11-17 18:40:52.841341+00 2025-11-17 18:40:52.841351+00 f t 46000.00 1 46000.00 12594 82 \N 11151 +85363 2025-11-17 18:41:47.649974+00 2025-11-17 18:41:47.649985+00 f t 46000.00 1 46000.00 12593 82 \N 11152 +85391 2025-11-17 18:57:13.964662+00 2025-11-17 18:57:13.964673+00 f t 46000.00 1 46000.00 12595 82 \N 11153 +85392 2025-11-17 18:57:13.973046+00 2025-11-17 18:57:13.973054+00 f t 8000.00 1 8000.00 12595 85 \N 11153 +85393 2025-11-17 18:57:13.978033+00 2025-11-17 18:57:13.97804+00 f t 24000.00 1 24000.00 12595 86 \N 11153 +85394 2025-11-17 19:10:25.542582+00 2025-11-17 19:10:25.542594+00 f t 8000.00 1 8000.00 12598 85 \N 11154 +85395 2025-11-17 19:10:25.552772+00 2025-11-17 19:10:25.552783+00 f t 46000.00 1 46000.00 12598 82 \N 11154 +85396 2025-11-17 19:10:40.533708+00 2025-11-17 19:10:40.533719+00 f t 46000.00 1 46000.00 12597 82 \N 2042 +85401 2025-11-17 19:17:45.504134+00 2025-11-17 19:17:45.504142+00 f t 24000.00 1 24000.00 12599 88 \N 11155 +85402 2025-11-17 19:17:45.51176+00 2025-11-17 19:17:45.511767+00 f t 46000.00 1 46000.00 12599 82 \N 11155 +85403 2025-11-17 19:23:48.159239+00 2025-11-17 19:23:48.159247+00 f t 24000.00 1 24000.00 12600 163 \N 11156 +85404 2025-11-17 19:23:48.167242+00 2025-11-17 19:23:48.16725+00 f t 46000.00 1 46000.00 12600 82 \N 11156 +85405 2025-11-17 19:26:13.725695+00 2025-11-17 19:26:13.725704+00 f t 8000.00 1 8000.00 12601 85 \N 11157 +85406 2025-11-17 19:26:13.734003+00 2025-11-17 19:26:13.73401+00 f t 46000.00 1 46000.00 12601 82 \N 11157 +85582 2025-11-17 23:19:45.138569+00 2025-11-17 23:19:45.138577+00 f t 8000.00 1 8000.00 12631 85 \N 11186 +85409 2025-11-17 19:37:52.942718+00 2025-11-17 19:37:52.942727+00 f t 24000.00 1 24000.00 12602 86 \N 11158 +85410 2025-11-17 19:37:52.951514+00 2025-11-17 19:37:52.951525+00 f t 46000.00 1 46000.00 12602 82 \N 11158 +85583 2025-11-17 23:19:45.14787+00 2025-11-17 23:19:45.147877+00 f t 46000.00 1 46000.00 12631 82 \N 11186 +85415 2025-11-17 19:52:14.881021+00 2025-11-17 19:52:14.88103+00 f t 46000.00 1 46000.00 12603 82 \N 11159 +85416 2025-11-17 19:52:14.889106+00 2025-11-17 19:52:14.889118+00 f t 24000.00 1 24000.00 12603 163 \N 11159 +85417 2025-11-17 19:52:14.894168+00 2025-11-17 19:52:14.894175+00 f t 8000.00 1 8000.00 12603 85 \N 11159 +85420 2025-11-17 19:58:34.508375+00 2025-11-17 19:58:34.508383+00 f t 46000.00 1 46000.00 12604 82 \N 11160 +85421 2025-11-17 19:58:34.516801+00 2025-11-17 19:58:34.516808+00 f t 8000.00 1 8000.00 12604 85 \N 11160 +85423 2025-11-17 20:01:34.479644+00 2025-11-17 20:01:34.479656+00 f t 46000.00 1 46000.00 12605 82 \N 11161 +85424 2025-11-17 20:07:31.554246+00 2025-11-17 20:07:31.554256+00 f t 24000.00 1 24000.00 12606 163 \N 11162 +85425 2025-11-17 20:07:31.562902+00 2025-11-17 20:07:31.56291+00 f t 46000.00 1 46000.00 12606 82 \N 11162 +85426 2025-11-17 20:11:49.149488+00 2025-11-17 20:11:49.149498+00 f t 24000.00 1 24000.00 12607 163 \N 11163 +85427 2025-11-17 20:11:49.158781+00 2025-11-17 20:11:49.158793+00 f t 46000.00 1 46000.00 12607 82 \N 11163 +85428 2025-11-17 20:33:40.118412+00 2025-11-17 20:33:40.118421+00 f t 8000.00 1 8000.00 12608 85 \N 11164 +85429 2025-11-17 20:33:40.126812+00 2025-11-17 20:33:40.12682+00 f t 46000.00 1 46000.00 12608 82 \N 11164 +85434 2025-11-17 20:41:33.8415+00 2025-11-17 20:41:33.841511+00 f t 24000.00 1 24000.00 12609 163 \N 11165 +85435 2025-11-17 20:41:33.849987+00 2025-11-17 20:41:33.849994+00 f t 46000.00 1 46000.00 12609 82 \N 11165 +85730 2025-11-18 01:22:53.934968+00 2025-11-18 01:22:53.934976+00 f t 1000.00 1 1000.00 12650 170 \N 11203 +85731 2025-11-18 01:22:53.947025+00 2025-11-18 01:22:53.947034+00 f t 75000.00 1 75000.00 12650 142 \N 11203 +85732 2025-11-18 01:22:53.952844+00 2025-11-18 01:22:53.952853+00 f t 46000.00 1 46000.00 12650 82 \N 11203 +85451 2025-11-17 21:13:44.792914+00 2025-11-17 21:13:44.792924+00 f t 46000.00 1 46000.00 12612 82 \N 11167 +85748 2025-11-18 01:24:31.800503+00 2025-11-18 01:24:31.800511+00 f t 1000.00 1 1000.00 12651 170 \N 11204 +85749 2025-11-18 01:24:31.808635+00 2025-11-18 01:24:31.808644+00 f t 46000.00 1 46000.00 12651 82 \N 11204 +86064 2025-11-18 19:31:50.510148+00 2025-11-18 19:31:50.510157+00 f t 24000.00 1 24000.00 12720 163 \N 11262 +85791 2025-11-18 04:10:50.697607+00 2025-11-18 04:10:50.697616+00 f t 46000.00 1 46000.00 12661 82 \N 11213 +85792 2025-11-18 04:10:50.709318+00 2025-11-18 04:10:50.709328+00 f t 8000.00 1 8000.00 12661 85 \N 11213 +85805 2025-11-18 06:34:24.239541+00 2025-11-18 06:34:24.239554+00 f t 55000.00 1 55000.00 12665 84 \N 11217 +85834 2025-11-18 09:58:01.621989+00 2025-11-18 09:58:01.621997+00 f t 46000.00 1 46000.00 12671 82 \N 11222 +85862 2025-11-18 11:28:23.871598+00 2025-11-18 11:28:23.871606+00 f t 8000.00 1 8000.00 12678 85 \N 11228 +85863 2025-11-18 11:28:23.879216+00 2025-11-18 11:28:23.879223+00 f t 46000.00 1 46000.00 12678 82 \N 11228 +85877 2025-11-18 12:16:44.981657+00 2025-11-18 12:16:44.981664+00 f t 46000.00 1 46000.00 12680 82 \N 11231 +85878 2025-11-18 12:16:44.991645+00 2025-11-18 12:16:44.991654+00 f t 8000.00 1 8000.00 12680 85 \N 11231 +85965 2025-11-18 15:32:30.578788+00 2025-11-18 15:32:30.578801+00 f t 46000.00 1 46000.00 12681 82 \N 4861 +85966 2025-11-18 15:32:30.59004+00 2025-11-18 15:32:30.590051+00 f t 7700.00 1 7700.00 12681 91 \N 4861 +85967 2025-11-18 15:32:30.596532+00 2025-11-18 15:32:30.596542+00 f t 8000.00 1 8000.00 12681 85 \N 4861 +86003 2025-11-18 17:18:35.409385+00 2025-11-18 17:18:35.409394+00 f t 46000.00 1 46000.00 12675 82 \N 11226 +86004 2025-11-18 17:18:35.417922+00 2025-11-18 17:18:35.41793+00 f t 8000.00 1 8000.00 12675 85 \N 11226 +86005 2025-11-18 17:18:35.422558+00 2025-11-18 17:18:35.422564+00 f t 33000.00 1 33000.00 12675 124 \N 11226 +86009 2025-11-18 17:31:02.618394+00 2025-11-18 17:31:02.618406+00 f t 23000.00 1 23000.00 12704 172 \N 11245 +86021 2025-11-18 17:36:35.909973+00 2025-11-18 17:36:35.909982+00 f t 30000.00 1 30000.00 12707 83 \N 11247 +86026 2025-11-18 18:06:54.420356+00 2025-11-18 18:06:54.420365+00 f t 55000.00 1 55000.00 12710 84 \N 11249 +86031 2025-11-18 18:13:10.317855+00 2025-11-18 18:13:10.317867+00 f t 46000.00 1 46000.00 12711 82 \N 11250 +86032 2025-11-18 18:13:10.327646+00 2025-11-18 18:13:10.327655+00 f t 8000.00 1 8000.00 12711 85 \N 11250 +86065 2025-11-18 19:31:50.519977+00 2025-11-18 19:31:50.51999+00 f t 46000.00 1 46000.00 12720 82 \N 11262 +86089 2025-11-18 19:49:09.325876+00 2025-11-18 19:49:09.325884+00 f t 46000.00 1 46000.00 12724 82 \N 11264 +86090 2025-11-18 19:49:09.333505+00 2025-11-18 19:49:09.333514+00 f t 31500.00 1 31500.00 12724 111 \N 11264 +86096 2025-11-18 19:57:35.201422+00 2025-11-18 19:57:35.201431+00 f t 46000.00 1 46000.00 12727 82 \N 11267 +86118 2025-11-18 20:28:25.942458+00 2025-11-18 20:28:25.942466+00 f t 55000.00 1 55000.00 12725 84 \N 11265 +86127 2025-11-18 21:36:19.117568+00 2025-11-18 21:36:19.117577+00 f t 55000.00 1 55000.00 12740 84 \N 11275 +86146 2025-11-18 21:42:17.804164+00 2025-11-18 21:42:17.804173+00 f t 46000.00 1 46000.00 12742 82 \N 11277 +86147 2025-11-18 21:42:17.813866+00 2025-11-18 21:42:17.813876+00 f t 8000.00 1 8000.00 12742 85 \N 11277 +86148 2025-11-18 21:42:17.819065+00 2025-11-18 21:42:17.819075+00 f t 24000.00 1 24000.00 12742 86 \N 11277 +86149 2025-11-18 21:42:17.825023+00 2025-11-18 21:42:17.82503+00 f t 24000.00 1 24000.00 12742 163 \N 11278 +86150 2025-11-18 21:42:17.830543+00 2025-11-18 21:42:17.83055+00 f t 46000.00 1 46000.00 12742 82 \N 11278 +86192 2025-11-18 22:16:17.969647+00 2025-11-18 22:16:17.969659+00 f t 46000.00 1 46000.00 12747 82 \N 11281 +86193 2025-11-18 22:16:17.979104+00 2025-11-18 22:16:17.979113+00 f t 24000.00 1 24000.00 12747 88 \N 11281 +86194 2025-11-18 22:16:17.984376+00 2025-11-18 22:16:17.984384+00 f t 24000.00 1 24000.00 12747 163 \N 11281 +86195 2025-11-18 22:16:17.98959+00 2025-11-18 22:16:17.989603+00 f t 24000.00 1 24000.00 12747 88 \N 11282 +86196 2025-11-18 22:16:17.995215+00 2025-11-18 22:16:17.995233+00 f t 24000.00 1 24000.00 12747 163 \N 11282 +86197 2025-11-18 22:16:18.000952+00 2025-11-18 22:16:18.000962+00 f t 46000.00 1 46000.00 12747 82 \N 11282 +86216 2025-11-18 22:22:55.894002+00 2025-11-18 22:22:55.89401+00 f t 24000.00 1 24000.00 12749 130 \N 11285 +86217 2025-11-18 22:22:55.902461+00 2025-11-18 22:22:55.902471+00 f t 46000.00 1 46000.00 12749 82 \N 11285 +86230 2025-11-18 22:26:40.580032+00 2025-11-18 22:26:40.58004+00 f t 8000.00 1 8000.00 12750 85 \N 11286 +86231 2025-11-18 22:26:40.588128+00 2025-11-18 22:26:40.588139+00 f t 24000.00 1 24000.00 12750 86 \N 11286 +86232 2025-11-18 22:26:40.593496+00 2025-11-18 22:26:40.593505+00 f t 46000.00 1 46000.00 12750 82 \N 11286 +86262 2025-11-19 00:38:36.932145+00 2025-11-19 00:38:36.932154+00 f t 78000.00 1 78000.00 12765 106 \N 11298 +86267 2025-11-19 01:26:48.778364+00 2025-11-19 01:26:48.778373+00 f t 46000.00 1 46000.00 12769 82 \N 11300 +86270 2025-11-19 01:41:50.033398+00 2025-11-19 01:41:50.033411+00 f t 8000.00 1 8000.00 12771 85 \N 11302 +86271 2025-11-19 01:41:50.045155+00 2025-11-19 01:41:50.045167+00 f t 46000.00 1 46000.00 12771 82 \N 11302 +86429 2025-11-19 10:40:44.36702+00 2025-11-19 10:40:44.367029+00 f t 12000.00 1 12000.00 12803 85 \N 11333 +86430 2025-11-19 10:40:44.375316+00 2025-11-19 10:40:44.375326+00 f t 36000.00 1 36000.00 12803 88 \N 11333 +86431 2025-11-19 10:40:44.380586+00 2025-11-19 10:40:44.380596+00 f t 36000.00 1 36000.00 12803 163 \N 11333 +86432 2025-11-19 10:40:44.386284+00 2025-11-19 10:40:44.386294+00 f t 69000.00 1 69000.00 12803 82 \N 11333 +86438 2025-11-19 10:41:57.937311+00 2025-11-19 10:41:57.93732+00 f t 55000.00 1 55000.00 12802 84 \N 11332 +86439 2025-11-19 10:52:42.905432+00 2025-11-19 10:52:42.905441+00 f t 24000.00 1 24000.00 12804 163 \N 11334 +86440 2025-11-19 10:52:42.914689+00 2025-11-19 10:52:42.914697+00 f t 46000.00 1 46000.00 12804 82 \N 11334 +86443 2025-11-19 11:18:47.008861+00 2025-11-19 11:18:47.008873+00 f t 69000.00 1 69000.00 12806 141 \N 11335 +86444 2025-11-19 11:18:47.017895+00 2025-11-19 11:18:47.017903+00 f t 46000.00 1 46000.00 12806 82 \N 11335 +86456 2025-11-19 11:32:04.403414+00 2025-11-19 11:32:04.403423+00 f t 46000.00 1 46000.00 12809 82 \N 11337 +86457 2025-11-19 11:53:00.470427+00 2025-11-19 11:53:00.470435+00 f t 8000.00 1 8000.00 12810 85 \N 11338 +86458 2025-11-19 11:53:00.478124+00 2025-11-19 11:53:00.478131+00 f t 46000.00 1 46000.00 12810 82 \N 11338 +86470 2025-11-19 12:04:31.685572+00 2025-11-19 12:04:31.68558+00 f t 46000.00 1 46000.00 12814 82 \N 11340 +86473 2025-11-19 12:04:38.431789+00 2025-11-19 12:04:38.431798+00 f t 46000.00 1 46000.00 12813 82 \N 11337 +86474 2025-11-19 12:08:55.434377+00 2025-11-19 12:08:55.434387+00 f t 55000.00 1 55000.00 12816 84 \N 11341 +86485 2025-11-19 12:17:55.308832+00 2025-11-19 12:17:55.308843+00 f t 46000.00 1 46000.00 12817 82 \N 11343 +86486 2025-11-19 12:17:55.319698+00 2025-11-19 12:17:55.31971+00 f t 8000.00 1 8000.00 12817 85 \N 11343 +86487 2025-11-19 12:17:55.326215+00 2025-11-19 12:17:55.326226+00 f t 33000.00 1 33000.00 12817 124 \N 11344 +86488 2025-11-19 12:17:55.332675+00 2025-11-19 12:17:55.332688+00 f t 46000.00 1 46000.00 12817 82 \N 11344 +86500 2025-11-19 12:33:15.121544+00 2025-11-19 12:33:15.121553+00 f t 55000.00 1 55000.00 12818 84 \N 11346 +86519 2025-11-19 12:52:08.370222+00 2025-11-19 12:52:08.370232+00 f t 46000.00 1 46000.00 12819 82 \N 11347 +86520 2025-11-19 12:52:08.380117+00 2025-11-19 12:52:08.380129+00 f t 8000.00 1 8000.00 12819 85 \N 11347 +86521 2025-11-19 12:52:08.385073+00 2025-11-19 12:52:08.385082+00 f t 24000.00 1 24000.00 12819 86 \N 11347 +86522 2025-11-19 12:52:08.389926+00 2025-11-19 12:52:08.389933+00 f t 24000.00 1 24000.00 12819 163 \N 11348 +86523 2025-11-19 12:52:08.394765+00 2025-11-19 12:52:08.394772+00 f t 46000.00 1 46000.00 12819 82 \N 11348 +86534 2025-11-19 12:59:17.86465+00 2025-11-19 12:59:17.864663+00 f t 13200.00 1 13200.00 12822 146 \N 6127 +86539 2025-11-19 13:00:10.339524+00 2025-11-19 13:00:10.339541+00 f t 46000.00 1 46000.00 12825 82 \N 11351 +86540 2025-11-19 13:00:10.367445+00 2025-11-19 13:00:10.367549+00 f t 24000.00 1 24000.00 12825 163 \N 11351 +86541 2025-11-19 13:00:10.375718+00 2025-11-19 13:00:10.37573+00 f t 8000.00 1 8000.00 12825 85 \N 11351 +86544 2025-11-19 13:00:13.487583+00 2025-11-19 13:00:13.487606+00 f t 46000.00 1 46000.00 12823 82 \N 11350 +86545 2025-11-19 13:00:13.509898+00 2025-11-19 13:00:13.509912+00 f t 24000.00 1 24000.00 12823 163 \N 11350 +86550 2025-11-19 13:01:00.728531+00 2025-11-19 13:01:00.72855+00 f t 46000.00 1 46000.00 12824 82 \N 11352 +86551 2025-11-19 13:01:00.737558+00 2025-11-19 13:01:00.737567+00 f t 33000.00 1 33000.00 12824 123 \N 11352 +86558 2025-11-19 13:02:32.527034+00 2025-11-19 13:02:32.527046+00 f t 46000.00 1 46000.00 12826 82 \N 11353 +86559 2025-11-19 13:02:32.537303+00 2025-11-19 13:02:32.537314+00 f t 24000.00 1 24000.00 12826 163 \N 11353 +86560 2025-11-19 13:07:36.907327+00 2025-11-19 13:07:36.90734+00 f t 46000.00 1 46000.00 12827 82 \N 11354 +86572 2025-11-19 13:12:22.884397+00 2025-11-19 13:12:22.884407+00 f t 78000.00 1 78000.00 12829 106 \N 11356 +86584 2025-11-19 13:20:14.944517+00 2025-11-19 13:20:14.944526+00 f t 46000.00 1 46000.00 12831 82 \N 11358 +86585 2025-11-19 13:20:14.953976+00 2025-11-19 13:20:14.953986+00 f t 24000.00 1 24000.00 12831 163 \N 11358 +86586 2025-11-19 13:20:14.959598+00 2025-11-19 13:20:14.95961+00 f t 8000.00 1 8000.00 12831 85 \N 11358 +86587 2025-11-19 13:20:34.172182+00 2025-11-19 13:20:34.172194+00 f t 13200.00 1 13200.00 12832 146 \N 11265 +86588 2025-11-19 13:29:31.646217+00 2025-11-19 13:29:31.646226+00 f t 46000.00 1 46000.00 12775 82 \N 11307 +86589 2025-11-19 13:29:31.655356+00 2025-11-19 13:29:31.655364+00 f t 8000.00 1 8000.00 12775 85 \N 11307 +86590 2025-11-19 13:29:31.66042+00 2025-11-19 13:29:31.660427+00 f t 24000.00 1 24000.00 12775 163 \N 11307 +86637 2025-11-19 13:35:24.700846+00 2025-11-19 13:35:24.700856+00 f t 15400.00 1 15400.00 12833 92 \N 10288 +86638 2025-11-19 13:35:24.709507+00 2025-11-19 13:35:24.709516+00 f t 46000.00 1 46000.00 12833 82 \N 10288 +86639 2025-11-19 13:35:24.714476+00 2025-11-19 13:35:24.714485+00 f t 7700.00 1 7700.00 12833 91 \N 10288 +86640 2025-11-19 13:35:24.719565+00 2025-11-19 13:35:24.719573+00 f t 33000.00 1 33000.00 12833 124 \N 10288 +86641 2025-11-19 13:38:01.606782+00 2025-11-19 13:38:01.606795+00 f t 23000.00 1 23000.00 12834 172 \N 11360 +86642 2025-11-19 13:48:28.652419+00 2025-11-19 13:48:28.652429+00 f t 78000.00 1 78000.00 12835 106 \N 11361 +86656 2025-11-19 13:57:30.75955+00 2025-11-19 13:57:30.759559+00 f t 78000.00 1 78000.00 12837 106 \N 11363 +86681 2025-11-19 14:19:41.383592+00 2025-11-19 14:19:41.3836+00 f t 46000.00 1 46000.00 12830 82 \N 11357 +86682 2025-11-19 14:19:41.391111+00 2025-11-19 14:19:41.391119+00 f t 8000.00 1 8000.00 12830 85 \N 11357 +86683 2025-11-19 14:19:41.395268+00 2025-11-19 14:19:41.395274+00 f t 24000.00 1 24000.00 12830 86 \N 11357 +86684 2025-11-19 14:19:41.399775+00 2025-11-19 14:19:41.399782+00 f t 24000.00 1 24000.00 12830 87 \N 11357 +86685 2025-11-19 14:28:01.671515+00 2025-11-19 14:28:01.671527+00 f t 88000.00 1 88000.00 12840 167 \N 11252 +86686 2025-11-19 14:29:54.362624+00 2025-11-19 14:29:54.362635+00 f t 55000.00 1 55000.00 12836 84 \N 11360 +86687 2025-11-19 14:30:56.812569+00 2025-11-19 14:30:56.812581+00 f t 80000.00 1 80000.00 12841 173 \N 11365 +86690 2025-11-19 14:31:12.382453+00 2025-11-19 14:31:12.382461+00 f t 46000.00 1 46000.00 12842 82 \N 9030 +86691 2025-11-19 14:31:12.390549+00 2025-11-19 14:31:12.390557+00 f t 24000.00 1 24000.00 12842 163 \N 9030 +86692 2025-11-19 14:31:12.395265+00 2025-11-19 14:31:12.395272+00 f t 8000.00 1 8000.00 12842 85 \N 9030 +86701 2025-11-19 14:32:19.462239+00 2025-11-19 14:32:19.462252+00 f t 46000.00 1 46000.00 12843 82 \N 11366 +86702 2025-11-19 14:32:19.473133+00 2025-11-19 14:32:19.473145+00 f t 24000.00 1 24000.00 12843 163 \N 11366 +86703 2025-11-19 14:32:19.478865+00 2025-11-19 14:32:19.478876+00 f t 24000.00 1 24000.00 12843 163 \N 11367 +86704 2025-11-19 14:32:19.483753+00 2025-11-19 14:32:19.483762+00 f t 46000.00 1 46000.00 12843 82 \N 11367 +86705 2025-11-19 14:49:51.946893+00 2025-11-19 14:49:51.946903+00 f t 13200.00 1 13200.00 12846 146 \N 11267 +86708 2025-11-19 14:53:40.257017+00 2025-11-19 14:53:40.257026+00 f t 8000.00 1 8000.00 12847 85 \N 11368 +86709 2025-11-19 14:53:40.266144+00 2025-11-19 14:53:40.266151+00 f t 46000.00 1 46000.00 12847 82 \N 11368 +86710 2025-11-19 14:53:51.742412+00 2025-11-19 14:53:51.742423+00 f t 55000.00 1 55000.00 12845 84 \N 820 +86711 2025-11-19 14:58:56.655322+00 2025-11-19 14:58:56.655332+00 f t 23000.00 1 23000.00 12850 172 \N 11370 +86714 2025-11-19 15:02:41.133973+00 2025-11-19 15:02:41.133986+00 f t 24000.00 1 24000.00 12851 163 \N 11371 +86715 2025-11-19 15:02:41.145762+00 2025-11-19 15:02:41.145774+00 f t 46000.00 1 46000.00 12851 82 \N 11371 +86720 2025-11-19 15:18:04.99484+00 2025-11-19 15:18:04.994851+00 f t 46000.00 1 46000.00 12852 82 \N 11372 +86721 2025-11-19 15:18:05.003567+00 2025-11-19 15:18:05.003577+00 f t 8000.00 1 8000.00 12852 85 \N 11372 +86722 2025-11-19 15:24:12.292679+00 2025-11-19 15:24:12.292688+00 f t 8000.00 1 8000.00 12853 85 \N 11373 +86723 2025-11-19 15:24:12.300839+00 2025-11-19 15:24:12.300846+00 f t 46000.00 1 46000.00 12853 82 \N 11373 +86724 2025-11-19 15:29:26.079831+00 2025-11-19 15:29:26.07984+00 f t 34500.00 1 34500.00 12854 118 \N 11374 +86725 2025-11-19 15:29:26.08951+00 2025-11-19 15:29:26.089519+00 f t 46000.00 1 46000.00 12854 82 \N 11374 +86730 2025-11-19 15:58:14.074291+00 2025-11-19 15:58:14.074304+00 f t 46000.00 1 46000.00 12857 82 \N 11376 +86731 2025-11-19 15:58:14.087405+00 2025-11-19 15:58:14.087415+00 f t 24000.00 1 24000.00 12857 163 \N 11376 +86732 2025-11-19 15:58:14.093189+00 2025-11-19 15:58:14.093198+00 f t 24000.00 1 24000.00 12857 130 \N 11376 +89046 2025-11-24 11:41:45.507462+00 2025-11-24 11:41:45.50747+00 f t 55000.00 1 55000.00 13376 84 \N 11803 +89047 2025-11-24 11:41:45.530773+00 2025-11-24 11:41:45.530782+00 f t 46000.00 1 46000.00 13376 82 \N 11803 +86742 2025-11-19 16:22:57.668619+00 2025-11-19 16:22:57.66863+00 f t 46000.00 1 46000.00 12859 82 \N 11378 +86743 2025-11-19 16:22:57.678709+00 2025-11-19 16:22:57.678717+00 f t 24000.00 1 24000.00 12859 163 \N 11378 +86745 2025-11-19 16:25:03.143711+00 2025-11-19 16:25:03.143726+00 f t 55000.00 1 55000.00 12860 84 \N 11379 +89081 2025-11-24 12:31:12.506798+00 2025-11-24 12:31:12.506808+00 f t 55000.00 1 55000.00 13387 84 \N 11813 +89090 2025-11-24 12:40:23.643974+00 2025-11-24 12:40:23.643987+00 f t 55000.00 1 55000.00 13388 84 \N 11815 +89102 2025-11-24 13:33:21.383827+00 2025-11-24 13:33:21.383839+00 f t 46000.00 1 46000.00 13391 82 \N 11818 +86760 2025-11-19 16:30:47.475421+00 2025-11-19 16:30:47.475433+00 f t 46000.00 1 46000.00 12863 82 \N 11380 +86761 2025-11-19 16:30:47.486186+00 2025-11-19 16:30:47.486197+00 f t 24000.00 1 24000.00 12863 163 \N 11380 +86762 2025-11-19 16:34:22.862117+00 2025-11-19 16:34:22.862125+00 f t 55000.00 1 55000.00 12861 84 \N 11263 +86763 2025-11-19 16:48:23.941781+00 2025-11-19 16:48:23.94179+00 f t 30000.00 1 30000.00 12864 83 \N 6190 +86769 2025-11-19 17:05:18.846265+00 2025-11-19 17:05:18.846276+00 f t 23000.00 1 23000.00 12865 172 \N 11382 +86772 2025-11-19 17:33:41.548426+00 2025-11-19 17:33:41.548435+00 f t 46000.00 1 46000.00 12867 82 \N 11385 +86773 2025-11-19 17:33:41.559327+00 2025-11-19 17:33:41.559335+00 f t 16800.00 1 16800.00 12867 96 \N 11385 +89142 2025-11-24 13:48:13.719345+00 2025-11-24 13:48:13.719355+00 f t 55000.00 1 55000.00 13393 84 \N 11820 +86778 2025-11-19 17:45:41.850321+00 2025-11-19 17:45:41.85033+00 f t 46000.00 1 46000.00 12868 82 \N 11386 +86795 2025-11-19 17:59:23.061141+00 2025-11-19 17:59:23.061153+00 f t 24000.00 1 24000.00 12869 88 \N 11387 +86796 2025-11-19 17:59:23.070907+00 2025-11-19 17:59:23.070919+00 f t 46000.00 1 46000.00 12869 82 \N 11387 +86797 2025-11-19 18:02:10.363406+00 2025-11-19 18:02:10.363415+00 f t 46000.00 1 46000.00 12871 82 \N 11388 +86798 2025-11-19 18:14:43.401253+00 2025-11-19 18:14:43.401265+00 f t 46000.00 1 46000.00 12872 82 \N 11389 +86806 2025-11-19 18:26:48.224628+00 2025-11-19 18:26:48.224637+00 f t 46000.00 1 46000.00 12874 82 \N 11390 +86808 2025-11-19 18:49:48.014943+00 2025-11-19 18:49:48.014952+00 f t 78000.00 1 78000.00 12877 106 \N 11393 +86809 2025-11-19 18:53:02.190359+00 2025-11-19 18:53:02.19037+00 f t 13200.00 1 13200.00 12878 146 \N 11337 +86815 2025-11-19 18:57:13.122678+00 2025-11-19 18:57:13.122757+00 f t 78000.00 1 78000.00 12876 106 \N 11392 +86816 2025-11-19 18:59:32.14703+00 2025-11-19 18:59:32.147039+00 f t 46000.00 1 46000.00 12880 82 \N 11001 +86817 2025-11-19 19:02:15.989231+00 2025-11-19 19:02:15.98924+00 f t 46000.00 1 46000.00 12881 82 \N 11001 +86818 2025-11-19 19:03:27.307783+00 2025-11-19 19:03:27.307793+00 f t 46000.00 1 46000.00 12882 82 \N 11001 +86820 2025-11-19 19:14:59.829791+00 2025-11-19 19:14:59.829799+00 f t 55000.00 1 55000.00 12883 84 \N 11394 +86827 2025-11-19 19:18:59.383549+00 2025-11-19 19:18:59.383557+00 f t 23000.00 1 23000.00 12885 172 \N 11396 +86829 2025-11-19 19:20:26.155506+00 2025-11-19 19:20:26.155516+00 f t 120000.00 1 120000.00 12886 103 \N 11398 +86830 2025-11-19 19:57:38.69437+00 2025-11-19 19:57:38.694378+00 f t 8000.00 1 8000.00 12887 85 \N 11399 +86831 2025-11-19 19:57:38.703168+00 2025-11-19 19:57:38.703176+00 f t 46000.00 1 46000.00 12887 82 \N 11399 +86843 2025-11-19 20:12:22.156962+00 2025-11-19 20:12:22.15697+00 f t 46000.00 1 46000.00 12888 82 \N 11400 +86844 2025-11-19 20:12:22.166217+00 2025-11-19 20:12:22.166228+00 f t 24000.00 1 24000.00 12888 163 \N 11400 +86845 2025-11-19 20:12:22.171063+00 2025-11-19 20:12:22.171072+00 f t 24000.00 1 24000.00 12888 163 \N 11401 +86846 2025-11-19 20:12:22.176476+00 2025-11-19 20:12:22.176483+00 f t 46000.00 1 46000.00 12888 82 \N 11401 +86849 2025-11-19 20:12:56.184757+00 2025-11-19 20:12:56.184767+00 f t 46000.00 1 46000.00 12889 82 \N 11307 +86850 2025-11-19 20:12:56.193392+00 2025-11-19 20:12:56.193402+00 f t 24000.00 1 24000.00 12889 163 \N 11307 +86851 2025-11-19 20:12:56.199056+00 2025-11-19 20:12:56.199067+00 f t 8000.00 1 8000.00 12889 85 \N 11307 +86868 2025-11-19 20:28:34.184489+00 2025-11-19 20:28:34.184498+00 f t 24000.00 1 24000.00 12892 86 \N 11405 +86869 2025-11-19 20:28:34.192104+00 2025-11-19 20:28:34.192112+00 f t 46000.00 1 46000.00 12892 82 \N 11405 +86880 2025-11-19 20:29:32.155498+00 2025-11-19 20:29:32.155507+00 f t 46000.00 1 46000.00 12893 82 \N 11404 +86881 2025-11-19 20:29:32.164269+00 2025-11-19 20:29:32.164277+00 f t 24000.00 1 24000.00 12893 163 \N 11404 +86886 2025-11-19 20:30:29.013879+00 2025-11-19 20:30:29.013891+00 f t 24000.00 1 24000.00 12896 163 \N 11407 +86887 2025-11-19 20:30:29.024589+00 2025-11-19 20:30:29.024601+00 f t 46000.00 1 46000.00 12896 82 \N 11407 +86892 2025-11-19 20:35:19.631849+00 2025-11-19 20:35:19.631857+00 f t 46000.00 1 46000.00 12895 82 \N 11406 +86893 2025-11-19 20:35:19.640141+00 2025-11-19 20:35:19.64015+00 f t 8000.00 1 8000.00 12895 85 \N 11406 +86901 2025-11-19 20:40:45.666439+00 2025-11-19 20:40:45.666448+00 f t 46000.00 1 46000.00 12897 82 \N 11408 +86928 2025-11-19 20:42:02.000022+00 2025-11-19 20:42:02.000032+00 f t 46000.00 1 46000.00 12898 82 \N 11409 +86929 2025-11-19 20:42:02.01233+00 2025-11-19 20:42:02.012339+00 f t 8000.00 1 8000.00 12898 85 \N 11409 +86930 2025-11-19 20:42:02.018556+00 2025-11-19 20:42:02.0186+00 f t 24000.00 1 24000.00 12898 163 \N 11409 +86931 2025-11-19 20:42:02.024883+00 2025-11-19 20:42:02.024893+00 f t 46000.00 1 46000.00 12898 82 \N 11410 +86932 2025-11-19 20:42:02.030517+00 2025-11-19 20:42:02.030527+00 f t 8000.00 1 8000.00 12898 85 \N 11410 +86933 2025-11-19 20:42:02.037107+00 2025-11-19 20:42:02.037118+00 f t 24000.00 1 24000.00 12898 163 \N 11410 +88921 2025-11-24 00:08:29.014942+00 2025-11-24 00:08:29.014952+00 f t 46000.00 1 46000.00 13336 82 \N 11770 +88922 2025-11-24 00:08:29.038987+00 2025-11-24 00:08:29.038999+00 f t 29000.00 1 29000.00 13336 140 \N 11770 +88923 2025-11-24 00:08:29.045925+00 2025-11-24 00:08:29.045936+00 f t 75000.00 1 75000.00 13336 142 \N 11770 +86950 2025-11-19 20:44:33.886826+00 2025-11-19 20:44:33.886835+00 f t 24000.00 1 24000.00 12899 163 \N 11411 +86951 2025-11-19 20:44:33.894566+00 2025-11-19 20:44:33.894573+00 f t 46000.00 1 46000.00 12899 82 \N 11411 +86952 2025-11-19 20:48:29.217503+00 2025-11-19 20:48:29.217512+00 f t 46000.00 1 46000.00 12900 82 \N 11412 +86953 2025-11-19 20:55:55.008237+00 2025-11-19 20:55:55.008245+00 f t 24000.00 1 24000.00 12902 163 \N 11413 +86954 2025-11-19 20:55:55.016782+00 2025-11-19 20:55:55.01679+00 f t 46000.00 1 46000.00 12902 82 \N 11413 +86956 2025-11-19 20:56:15.558225+00 2025-11-19 20:56:15.558234+00 f t 46000.00 1 46000.00 12875 82 \N 11391 +86957 2025-11-19 20:56:15.565891+00 2025-11-19 20:56:15.565899+00 f t 55000.00 1 55000.00 12875 84 \N 11391 +86959 2025-11-19 20:59:03.910341+00 2025-11-19 20:59:03.910349+00 f t 55000.00 1 55000.00 12903 84 \N 11414 +86960 2025-11-19 21:01:05.155224+00 2025-11-19 21:01:05.155237+00 f t 13200.00 1 13200.00 12901 146 \N 8096 +86968 2025-11-19 21:09:57.551454+00 2025-11-19 21:09:57.551463+00 f t 46000.00 1 46000.00 12905 82 \N 11415 +86970 2025-11-19 21:22:09.109058+00 2025-11-19 21:22:09.109071+00 f t 46000.00 1 46000.00 12906 82 \N 11416 +86971 2025-11-19 21:38:01.160492+00 2025-11-19 21:38:01.160501+00 f t 55000.00 1 55000.00 12890 84 \N 11402 +86972 2025-11-19 21:47:32.476811+00 2025-11-19 21:47:32.47682+00 f t 120000.00 1 120000.00 12908 103 \N 11417 +86977 2025-11-19 22:38:46.075588+00 2025-11-19 22:38:46.075604+00 f t 46000.00 1 46000.00 12911 82 \N 11419 +86978 2025-11-19 22:38:46.08428+00 2025-11-19 22:38:46.084288+00 f t 8000.00 1 8000.00 12911 85 \N 11419 +86979 2025-11-19 22:38:46.088673+00 2025-11-19 22:38:46.088682+00 f t 24000.00 1 24000.00 12911 163 \N 11419 +86988 2025-11-19 22:51:51.84373+00 2025-11-19 22:51:51.843739+00 f t 46000.00 1 46000.00 12912 82 \N 11420 +86989 2025-11-19 22:51:51.851513+00 2025-11-19 22:51:51.85152+00 f t 8000.00 1 8000.00 12912 85 \N 11420 +86990 2025-11-19 22:51:51.855803+00 2025-11-19 22:51:51.855809+00 f t 24000.00 1 24000.00 12912 163 \N 11420 +86991 2025-11-19 22:55:30.098627+00 2025-11-19 22:55:30.098636+00 f t 33000.00 1 33000.00 12913 124 \N 11421 +86992 2025-11-19 22:55:30.107668+00 2025-11-19 22:55:30.107675+00 f t 46000.00 1 46000.00 12913 82 \N 11421 +86993 2025-11-19 23:05:00.394249+00 2025-11-19 23:05:00.394258+00 f t 78000.00 1 78000.00 12915 106 \N 11422 +87017 2025-11-19 23:40:05.075181+00 2025-11-19 23:40:05.075194+00 f t 46000.00 1 46000.00 12919 82 \N 11425 +87020 2025-11-20 00:02:47.580054+00 2025-11-20 00:02:47.580068+00 f t 55000.00 1 55000.00 12921 84 \N 11427 +87022 2025-11-20 00:16:34.928588+00 2025-11-20 00:16:34.928602+00 f t 55000.00 1 55000.00 12922 84 \N 11428 +87023 2025-11-20 00:18:16.301696+00 2025-11-20 00:18:16.301704+00 f t 55000.00 1 55000.00 12920 84 \N 11426 +87032 2025-11-20 01:00:59.12526+00 2025-11-20 01:00:59.125272+00 f t 46000.00 1 46000.00 12924 82 \N 11429 +87033 2025-11-20 01:00:59.136306+00 2025-11-20 01:00:59.136319+00 f t 8000.00 1 8000.00 12924 85 \N 11429 +87034 2025-11-20 01:00:59.142527+00 2025-11-20 01:00:59.142534+00 f t 24000.00 1 24000.00 12924 132 \N 11429 +87064 2025-11-20 01:10:40.714767+00 2025-11-20 01:10:40.714778+00 f t 24000.00 1 24000.00 12925 131 \N 11430 +87065 2025-11-20 01:10:40.723923+00 2025-11-20 01:10:40.723931+00 f t 24000.00 1 24000.00 12925 163 \N 11430 +87066 2025-11-20 01:10:40.728988+00 2025-11-20 01:10:40.728995+00 f t 46000.00 1 46000.00 12925 82 \N 11430 +87081 2025-11-20 01:12:43.731237+00 2025-11-20 01:12:43.731249+00 f t 46000.00 1 46000.00 12926 82 \N 11431 +87082 2025-11-20 01:12:43.740996+00 2025-11-20 01:12:43.741008+00 f t 8000.00 1 8000.00 12926 85 \N 11431 +87083 2025-11-20 01:55:52.251508+00 2025-11-20 01:55:52.25152+00 f t 36000.00 1 36000.00 12929 163 \N 11435 +87084 2025-11-20 01:55:52.261133+00 2025-11-20 01:55:52.261142+00 f t 69000.00 1 69000.00 12929 82 \N 11435 +87085 2025-11-20 02:18:58.967864+00 2025-11-20 02:18:58.967872+00 f t 24000.00 1 24000.00 12930 131 \N 11436 +87086 2025-11-20 02:18:58.976568+00 2025-11-20 02:18:58.976576+00 f t 46000.00 1 46000.00 12930 82 \N 11436 +87087 2025-11-20 02:26:24.095227+00 2025-11-20 02:26:24.095236+00 f t 46000.00 1 46000.00 12932 82 \N 11437 +87094 2025-11-20 02:28:21.807663+00 2025-11-20 02:28:21.807678+00 f t 1000.00 1 1000.00 12933 170 \N 11438 +87095 2025-11-20 02:28:21.81544+00 2025-11-20 02:28:21.815448+00 f t 46000.00 1 46000.00 12933 82 \N 11438 +87096 2025-11-20 02:31:50.517644+00 2025-11-20 02:31:50.517656+00 f t 24000.00 1 24000.00 12934 86 \N 11439 +87097 2025-11-20 02:31:50.52792+00 2025-11-20 02:31:50.527931+00 f t 46000.00 1 46000.00 12934 82 \N 11439 +87100 2025-11-20 04:02:56.205963+00 2025-11-20 04:02:56.20597+00 f t 30000.00 1 30000.00 12936 83 \N 11440 +87101 2025-11-20 04:02:56.213719+00 2025-11-20 04:02:56.213726+00 f t 46000.00 1 46000.00 12936 82 \N 11440 +87115 2025-11-20 05:08:48.670302+00 2025-11-20 05:08:48.670311+00 f t 55000.00 1 55000.00 12939 84 \N 11441 +87154 2025-11-20 09:58:10.03101+00 2025-11-20 09:58:10.031018+00 f t 46000.00 1 46000.00 12942 82 \N 11442 +87155 2025-11-20 09:58:10.039034+00 2025-11-20 09:58:10.039042+00 f t 75000.00 1 75000.00 12942 142 \N 11442 +87156 2025-11-20 10:07:27.07111+00 2025-11-20 10:07:27.071122+00 f t 55000.00 1 55000.00 12944 84 \N 11444 +87178 2025-11-20 11:32:48.701282+00 2025-11-20 11:32:48.701291+00 f t 46000.00 1 46000.00 12947 82 \N 11447 +87183 2025-11-20 11:41:30.891718+00 2025-11-20 11:41:30.891726+00 f t 31500.00 1 31500.00 12948 111 \N 11448 +87187 2025-11-20 12:45:38.166814+00 2025-11-20 12:45:38.166827+00 f t 24000.00 1 24000.00 12952 86 \N 11450 +87188 2025-11-20 12:45:38.17739+00 2025-11-20 12:45:38.177401+00 f t 46000.00 1 46000.00 12952 82 \N 11450 +87191 2025-11-20 12:59:18.163274+00 2025-11-20 12:59:18.163283+00 f t 120000.00 1 120000.00 12954 103 \N 10696 +87192 2025-11-20 13:09:46.905198+00 2025-11-20 13:09:46.905207+00 f t 8000.00 1 8000.00 12956 85 \N 11452 +87193 2025-11-20 13:09:46.91446+00 2025-11-20 13:09:46.914468+00 f t 46000.00 1 46000.00 12956 82 \N 11452 +87194 2025-11-20 13:49:50.584658+00 2025-11-20 13:49:50.584667+00 f t 24000.00 1 24000.00 12959 163 \N 11454 +87195 2025-11-20 13:49:50.59302+00 2025-11-20 13:49:50.593027+00 f t 46000.00 1 46000.00 12959 82 \N 11454 +87196 2025-11-20 13:53:25.834243+00 2025-11-20 13:53:25.834256+00 f t 24000.00 1 24000.00 12960 88 \N 11455 +87197 2025-11-20 13:53:25.845851+00 2025-11-20 13:53:25.845861+00 f t 46000.00 1 46000.00 12960 82 \N 11455 +87198 2025-11-20 14:17:01.27618+00 2025-11-20 14:17:01.276189+00 f t 8000.00 1 8000.00 12965 85 \N 11457 +87199 2025-11-20 14:17:01.28863+00 2025-11-20 14:17:01.288642+00 f t 46000.00 1 46000.00 12965 82 \N 11457 +87200 2025-11-20 14:35:39.46063+00 2025-11-20 14:35:39.46064+00 f t 46000.00 1 46000.00 12946 82 \N 11446 +87201 2025-11-20 14:35:39.469742+00 2025-11-20 14:35:39.469751+00 f t 8000.00 1 8000.00 12946 85 \N 11446 +87202 2025-11-20 14:35:39.474852+00 2025-11-20 14:35:39.47486+00 f t 24000.00 1 24000.00 12946 163 \N 11446 +87203 2025-11-20 14:35:39.481356+00 2025-11-20 14:35:39.481364+00 f t 33000.00 1 33000.00 12946 124 \N 11446 +87204 2025-11-20 14:46:47.121142+00 2025-11-20 14:46:47.12115+00 f t 57000.00 1 57000.00 12967 98 \N 11459 +89033 2025-11-24 10:19:37.5984+00 2025-11-24 10:19:37.59841+00 f t 55000.00 1 55000.00 13369 84 \N 11798 +89082 2025-11-24 12:39:12.841323+00 2025-11-24 12:39:12.841332+00 f t 0.00 1 0.00 13361 174 \N 11790 +89149 2025-11-24 14:01:34.601503+00 2025-11-24 14:01:34.601514+00 f t 81500.00 1 81500.00 13397 143 \N 11820 +89150 2025-11-24 14:01:34.628136+00 2025-11-24 14:01:34.628149+00 f t 46000.00 1 46000.00 13397 82 \N 11820 +87257 2025-11-20 14:57:57.43011+00 2025-11-20 14:57:57.430119+00 f t 46000.00 1 46000.00 12968 82 \N 11460 +87258 2025-11-20 14:57:57.438538+00 2025-11-20 14:57:57.438546+00 f t 24000.00 1 24000.00 12968 130 \N 11460 +87259 2025-11-20 14:57:57.443442+00 2025-11-20 14:57:57.44345+00 f t 8000.00 1 8000.00 12968 85 \N 11460 +87260 2025-11-20 14:57:57.448141+00 2025-11-20 14:57:57.448147+00 f t 24000.00 1 24000.00 12968 88 \N 11460 +87261 2025-11-20 14:57:57.452523+00 2025-11-20 14:57:57.45253+00 f t 24000.00 1 24000.00 12968 163 \N 11460 +87262 2025-11-20 15:01:50.766948+00 2025-11-20 15:01:50.766956+00 f t 55000.00 1 55000.00 11254 84 \N 10105 +87263 2025-11-20 15:09:24.989083+00 2025-11-20 15:09:24.989091+00 f t 24000.00 1 24000.00 12969 88 \N 11461 +87264 2025-11-20 15:09:24.998175+00 2025-11-20 15:09:24.998183+00 f t 46000.00 1 46000.00 12969 82 \N 11461 +87272 2025-11-20 15:19:58.893239+00 2025-11-20 15:19:58.893247+00 f t 24000.00 1 24000.00 12970 86 \N 11462 +87273 2025-11-20 15:19:58.900664+00 2025-11-20 15:19:58.900671+00 f t 46000.00 1 46000.00 12970 82 \N 11462 +87279 2025-11-20 15:44:43.587925+00 2025-11-20 15:44:43.587934+00 f t 8000.00 1 8000.00 12972 85 \N 11464 +87280 2025-11-20 15:44:43.596472+00 2025-11-20 15:44:43.596478+00 f t 46000.00 1 46000.00 12972 82 \N 11464 +87281 2025-11-20 16:17:29.441698+00 2025-11-20 16:17:29.441706+00 f t 88000.00 1 88000.00 12976 167 \N 11468 +87283 2025-11-20 16:22:41.110428+00 2025-11-20 16:22:41.11044+00 f t 46000.00 1 46000.00 12979 82 \N 11471 +87285 2025-11-20 16:26:25.271973+00 2025-11-20 16:26:25.271981+00 f t 55000.00 1 55000.00 12980 84 \N 11470 +89192 2025-11-24 14:20:06.988161+00 2025-11-24 14:20:06.988174+00 f t 24000.00 1 24000.00 13399 88 \N 11823 +89193 2025-11-24 14:20:07.038586+00 2025-11-24 14:20:07.038598+00 f t 46000.00 1 46000.00 13399 82 \N 11823 +89210 2025-11-24 14:24:07.251404+00 2025-11-24 14:24:07.251419+00 f t 30000.00 1 30000.00 13402 83 \N 11121 +89227 2025-11-24 14:30:44.501583+00 2025-11-24 14:30:44.501595+00 f t 8000.00 1 8000.00 13404 85 \N 11826 +89228 2025-11-24 14:30:44.529476+00 2025-11-24 14:30:44.529488+00 f t 46000.00 1 46000.00 13404 82 \N 11826 +89231 2025-11-24 14:42:52.213097+00 2025-11-24 14:42:52.213107+00 f t 55000.00 1 55000.00 13408 84 \N 11830 +87327 2025-11-20 16:36:28.918789+00 2025-11-20 16:36:28.918799+00 f t 46000.00 1 46000.00 12981 82 \N 11472 +87328 2025-11-20 16:36:28.927201+00 2025-11-20 16:36:28.927211+00 f t 24000.00 1 24000.00 12981 132 \N 11472 +87329 2025-11-20 16:36:28.931884+00 2025-11-20 16:36:28.93189+00 f t 24000.00 1 24000.00 12981 163 \N 11472 +87330 2025-11-20 16:36:28.936521+00 2025-11-20 16:36:28.936528+00 f t 46000.00 1 46000.00 12981 82 \N 11473 +87331 2025-11-20 16:36:28.941078+00 2025-11-20 16:36:28.941085+00 f t 24000.00 1 24000.00 12981 132 \N 11473 +87332 2025-11-20 16:36:28.945522+00 2025-11-20 16:36:28.945529+00 f t 24000.00 1 24000.00 12981 163 \N 11473 +87339 2025-11-20 16:47:17.072696+00 2025-11-20 16:47:17.072704+00 f t 46000.00 1 46000.00 12978 82 \N 11059 +87340 2025-11-20 16:47:17.080162+00 2025-11-20 16:47:17.080169+00 f t 7700.00 1 7700.00 12978 93 \N 11059 +87341 2025-11-20 16:47:17.084485+00 2025-11-20 16:47:17.084491+00 f t 13200.00 1 13200.00 12978 146 \N 11059 +87342 2025-11-20 16:47:17.088741+00 2025-11-20 16:47:17.088747+00 f t 34000.00 1 34000.00 12978 110 \N 11059 +87344 2025-11-20 16:55:39.236603+00 2025-11-20 16:55:39.236615+00 f t 55000.00 1 55000.00 12984 84 \N 11475 +87352 2025-11-20 17:08:35.650362+00 2025-11-20 17:08:35.650371+00 f t 47250.00 1 47250.00 12986 111 \N 11478 +87353 2025-11-20 17:15:21.433242+00 2025-11-20 17:15:21.43325+00 f t 46000.00 1 46000.00 12982 82 \N 11474 +87354 2025-11-20 17:21:56.029687+00 2025-11-20 17:21:56.029695+00 f t 8000.00 1 8000.00 12990 85 \N 11487 +87355 2025-11-20 17:21:56.038817+00 2025-11-20 17:21:56.038824+00 f t 46000.00 1 46000.00 12990 82 \N 11487 +87358 2025-11-20 17:40:38.128524+00 2025-11-20 17:40:38.128536+00 f t 30000.00 1 30000.00 12992 83 \N 11489 +87360 2025-11-20 17:48:20.379787+00 2025-11-20 17:48:20.379794+00 f t 30000.00 1 30000.00 12995 83 \N 11265 +87412 2025-11-20 17:56:57.878974+00 2025-11-20 17:56:57.879342+00 f t 46000.00 1 46000.00 12997 82 \N 11491 +87413 2025-11-20 17:56:57.890407+00 2025-11-20 17:56:57.890417+00 f t 24000.00 1 24000.00 12997 86 \N 11491 +87414 2025-11-20 17:56:57.895174+00 2025-11-20 17:56:57.895182+00 f t 55000.00 1 55000.00 12997 84 \N 11491 +87418 2025-11-20 18:04:06.130138+00 2025-11-20 18:04:06.130154+00 f t 46000.00 1 46000.00 12996 82 \N 9089 +87419 2025-11-20 18:04:06.143321+00 2025-11-20 18:04:06.143334+00 f t 41000.00 1 41000.00 12996 119 \N 9089 +87420 2025-11-20 18:04:06.150659+00 2025-11-20 18:04:06.150671+00 f t 15400.00 1 15400.00 12996 92 \N 9089 +87421 2025-11-20 18:15:33.42447+00 2025-11-20 18:15:33.42448+00 f t 75000.00 1 75000.00 12994 142 \N 10723 +87422 2025-11-20 18:15:33.434766+00 2025-11-20 18:15:33.434776+00 f t 46000.00 1 46000.00 12994 82 \N 10723 +87424 2025-11-20 18:29:42.138929+00 2025-11-20 18:29:42.138938+00 f t 55000.00 1 55000.00 13000 84 \N 11492 +87425 2025-11-20 18:36:56.283382+00 2025-11-20 18:36:56.283391+00 f t 8000.00 1 8000.00 13002 85 \N 11494 +87426 2025-11-20 18:36:56.292102+00 2025-11-20 18:36:56.292109+00 f t 46000.00 1 46000.00 13002 82 \N 11494 +87427 2025-11-20 18:41:53.277406+00 2025-11-20 18:41:53.277416+00 f t 46000.00 1 46000.00 13003 82 \N 11495 +87428 2025-11-20 18:55:23.811213+00 2025-11-20 18:55:23.811224+00 f t 61000.00 1 61000.00 13004 100 \N 4007 +87429 2025-11-20 19:05:42.222829+00 2025-11-20 19:05:42.222837+00 f t 75000.00 1 75000.00 13006 142 \N 11490 +87430 2025-11-20 19:05:42.234533+00 2025-11-20 19:05:42.234542+00 f t 46000.00 1 46000.00 13006 82 \N 11490 +87433 2025-11-20 19:09:18.21302+00 2025-11-20 19:09:18.213029+00 f t 24000.00 1 24000.00 13007 86 \N 11496 +87434 2025-11-20 19:09:18.220541+00 2025-11-20 19:09:18.220552+00 f t 46000.00 1 46000.00 13007 82 \N 11496 +87455 2025-11-20 19:14:20.704342+00 2025-11-20 19:14:20.704353+00 f t 46000.00 1 46000.00 13009 82 \N 11497 +87456 2025-11-20 19:14:20.71255+00 2025-11-20 19:14:20.712558+00 f t 24000.00 1 24000.00 13009 132 \N 11497 +87457 2025-11-20 19:14:20.717391+00 2025-11-20 19:14:20.717398+00 f t 8000.00 1 8000.00 13009 85 \N 11497 +87458 2025-11-20 19:14:20.72188+00 2025-11-20 19:14:20.721887+00 f t 24000.00 1 24000.00 13009 163 \N 11497 +87492 2025-11-20 19:30:13.573621+00 2025-11-20 19:30:13.57363+00 f t 46000.00 1 46000.00 13011 82 \N 11500 +87493 2025-11-20 19:30:13.581133+00 2025-11-20 19:30:13.581141+00 f t 8000.00 1 8000.00 13011 85 \N 11500 +87494 2025-11-20 19:30:13.585196+00 2025-11-20 19:30:13.585202+00 f t 24000.00 1 24000.00 13011 163 \N 11500 +87495 2025-11-20 19:30:13.589084+00 2025-11-20 19:30:13.58909+00 f t 46000.00 1 46000.00 13011 82 \N 11501 +87496 2025-11-20 19:30:13.59349+00 2025-11-20 19:30:13.593498+00 f t 8000.00 1 8000.00 13011 85 \N 11501 +87497 2025-11-20 19:30:13.598063+00 2025-11-20 19:30:13.598069+00 f t 24000.00 1 24000.00 13011 86 \N 11501 +87498 2025-11-20 19:59:34.5861+00 2025-11-20 19:59:34.586109+00 f t 8000.00 1 8000.00 13014 85 \N 11502 +87499 2025-11-20 19:59:34.59422+00 2025-11-20 19:59:34.594228+00 f t 46000.00 1 46000.00 13014 82 \N 11502 +87500 2025-11-20 20:15:35.513726+00 2025-11-20 20:15:35.513735+00 f t 13200.00 1 13200.00 13016 146 \N 11059 +87502 2025-11-20 20:20:27.661735+00 2025-11-20 20:20:27.661744+00 f t 80000.00 1 80000.00 13018 173 \N 11503 +87503 2025-11-20 20:28:08.020548+00 2025-11-20 20:28:08.020556+00 f t 30000.00 1 30000.00 12993 83 \N 6127 +88960 2025-11-24 04:07:29.142245+00 2025-11-24 04:07:29.142255+00 f t 55000.00 1 55000.00 13351 84 \N 11781 +87512 2025-11-20 20:36:25.322272+00 2025-11-20 20:36:25.322281+00 f t 24000.00 1 24000.00 13019 163 \N 11504 +87513 2025-11-20 20:36:25.330194+00 2025-11-20 20:36:25.330202+00 f t 46000.00 1 46000.00 13019 82 \N 11504 +87515 2025-11-20 20:43:19.231676+00 2025-11-20 20:43:19.231688+00 f t 78000.00 1 78000.00 13021 106 \N 11506 +87519 2025-11-20 20:48:38.296805+00 2025-11-20 20:48:38.296817+00 f t 8000.00 1 8000.00 13023 85 \N 11508 +87520 2025-11-20 20:48:38.306354+00 2025-11-20 20:48:38.306363+00 f t 46000.00 1 46000.00 13023 82 \N 11508 +87528 2025-11-20 20:49:28.620756+00 2025-11-20 20:49:28.620765+00 f t 46000.00 1 46000.00 13022 82 \N 11507 +87529 2025-11-20 20:49:28.629732+00 2025-11-20 20:49:28.62974+00 f t 24000.00 1 24000.00 13022 86 \N 11507 +87532 2025-11-20 21:25:22.510192+00 2025-11-20 21:25:22.510201+00 f t 24000.00 1 24000.00 13026 163 \N 11509 +87533 2025-11-20 21:25:22.518219+00 2025-11-20 21:25:22.518227+00 f t 46000.00 1 46000.00 13026 82 \N 11509 +87541 2025-11-20 21:29:40.663519+00 2025-11-20 21:29:40.663527+00 f t 78000.00 1 78000.00 13029 106 \N 9637 +87542 2025-11-20 21:39:09.90265+00 2025-11-20 21:39:09.902659+00 f t 55000.00 1 55000.00 13027 84 \N 11510 +87543 2025-11-20 21:55:23.222662+00 2025-11-20 21:55:23.22267+00 f t 8000.00 1 8000.00 13033 85 \N 11514 +87544 2025-11-20 21:55:23.2307+00 2025-11-20 21:55:23.230707+00 f t 46000.00 1 46000.00 13033 82 \N 11514 +87556 2025-11-20 22:01:46.342333+00 2025-11-20 22:01:46.342342+00 f t 55000.00 1 55000.00 13034 84 \N 11515 +87563 2025-11-20 22:49:58.563611+00 2025-11-20 22:49:58.56362+00 f t 46000.00 1 46000.00 13039 82 \N 11518 +87564 2025-11-20 22:49:58.572+00 2025-11-20 22:49:58.572007+00 f t 87500.00 1 87500.00 13039 144 \N 11518 +87567 2025-11-20 22:54:44.579952+00 2025-11-20 22:54:44.579963+00 f t 55000.00 1 55000.00 13040 84 \N 11519 +87570 2025-11-20 22:57:04.835366+00 2025-11-20 22:57:04.835376+00 f t 46000.00 1 46000.00 13041 82 \N 11520 +87578 2025-11-20 23:16:07.935311+00 2025-11-20 23:16:07.935322+00 f t 46000.00 1 46000.00 13043 82 \N 11521 +87579 2025-11-20 23:16:07.946438+00 2025-11-20 23:16:07.94645+00 f t 8000.00 1 8000.00 13043 85 \N 11521 +87580 2025-11-20 23:16:07.952617+00 2025-11-20 23:16:07.95263+00 f t 24000.00 1 24000.00 13043 163 \N 11521 +87585 2025-11-20 23:47:51.883833+00 2025-11-20 23:47:51.883842+00 f t 55000.00 1 55000.00 13047 84 \N 11523 +87607 2025-11-20 23:55:04.775791+00 2025-11-20 23:55:04.7758+00 f t 46000.00 1 46000.00 13048 82 \N 11524 +87608 2025-11-20 23:55:04.78622+00 2025-11-20 23:55:04.786229+00 f t 8000.00 1 8000.00 13048 85 \N 11524 +87613 2025-11-21 00:02:43.226952+00 2025-11-21 00:02:43.226965+00 f t 46000.00 1 46000.00 13049 82 \N 11525 +87614 2025-11-21 00:36:40.56777+00 2025-11-21 00:36:40.567784+00 f t 8000.00 1 8000.00 13053 85 \N 11528 +87615 2025-11-21 00:36:40.578771+00 2025-11-21 00:36:40.578782+00 f t 46000.00 1 46000.00 13053 82 \N 11528 +87626 2025-11-21 00:51:31.695809+00 2025-11-21 00:51:31.695822+00 f t 46000.00 1 46000.00 13055 82 \N 11534 +87627 2025-11-21 00:51:31.706387+00 2025-11-21 00:51:31.7064+00 f t 8000.00 1 8000.00 13055 85 \N 11534 +87628 2025-11-21 01:03:53.620547+00 2025-11-21 01:03:53.620555+00 f t 55000.00 1 55000.00 13057 84 \N 11536 +87636 2025-11-21 01:19:15.649678+00 2025-11-21 01:19:15.649686+00 f t 55000.00 1 55000.00 13058 84 \N 11537 +87654 2025-11-21 01:24:08.191753+00 2025-11-21 01:24:08.191762+00 f t 8000.00 1 8000.00 13060 85 \N 11539 +87655 2025-11-21 01:24:08.201176+00 2025-11-21 01:24:08.201185+00 f t 24000.00 1 24000.00 13060 86 \N 11539 +87656 2025-11-21 01:24:08.20595+00 2025-11-21 01:24:08.205957+00 f t 46000.00 1 46000.00 13060 82 \N 11539 +87663 2025-11-21 01:50:49.498246+00 2025-11-21 01:50:49.498255+00 f t 55000.00 1 55000.00 13061 84 \N 11540 +87678 2025-11-21 01:55:09.347013+00 2025-11-21 01:55:09.347026+00 f t 55000.00 1 55000.00 13063 84 \N 11541 +87684 2025-11-21 02:08:08.621595+00 2025-11-21 02:08:08.621604+00 f t 46000.00 1 46000.00 13065 82 \N 11542 +87685 2025-11-21 02:08:37.585466+00 2025-11-21 02:08:37.585475+00 f t 8000.00 1 8000.00 13066 85 \N 11544 +87686 2025-11-21 02:08:37.593958+00 2025-11-21 02:08:37.593967+00 f t 46000.00 1 46000.00 13066 82 \N 11544 +87688 2025-11-21 02:11:05.405885+00 2025-11-21 02:11:05.405897+00 f t 8000.00 1 8000.00 13064 85 \N 11546 +87689 2025-11-21 02:11:05.415273+00 2025-11-21 02:11:05.415283+00 f t 46000.00 1 46000.00 13064 82 \N 11546 +87690 2025-11-21 02:11:21.811544+00 2025-11-21 02:11:21.811554+00 f t 46000.00 1 46000.00 13068 82 \N 11545 +87729 2025-11-21 03:25:41.758006+00 2025-11-21 03:25:41.758015+00 f t 46000.00 1 46000.00 13071 82 \N 11548 +87730 2025-11-21 03:25:41.766448+00 2025-11-21 03:25:41.766457+00 f t 8000.00 1 8000.00 13071 85 \N 11548 +87731 2025-11-21 03:25:41.770917+00 2025-11-21 03:25:41.770924+00 f t 46000.00 1 46000.00 13071 82 \N 11549 +87732 2025-11-21 03:25:41.77567+00 2025-11-21 03:25:41.775681+00 f t 8000.00 1 8000.00 13071 85 \N 11549 +87733 2025-11-21 04:05:46.124421+00 2025-11-21 04:05:46.124432+00 f t 8000.00 1 8000.00 13073 85 \N 11550 +87734 2025-11-21 04:05:46.135252+00 2025-11-21 04:05:46.13526+00 f t 46000.00 1 46000.00 13073 82 \N 11550 +87743 2025-11-21 04:18:16.412945+00 2025-11-21 04:18:16.412953+00 f t 80000.00 1 80000.00 13074 173 \N 11551 +87744 2025-11-21 04:20:31.743818+00 2025-11-21 04:20:31.743832+00 f t 46000.00 1 46000.00 13075 82 \N 11552 +87745 2025-11-21 09:32:27.805637+00 2025-11-21 09:32:27.805646+00 f t 8000.00 1 8000.00 13078 85 \N 11555 +87746 2025-11-21 09:32:27.814083+00 2025-11-21 09:32:27.814091+00 f t 46000.00 1 46000.00 13078 82 \N 11555 +87747 2025-11-21 09:57:26.828756+00 2025-11-21 09:57:26.828766+00 f t 78000.00 1 78000.00 13079 106 \N 11556 +87748 2025-11-21 11:02:56.678171+00 2025-11-21 11:02:56.678181+00 f t 24000.00 1 24000.00 13084 88 \N 11558 +87749 2025-11-21 11:02:56.687844+00 2025-11-21 11:02:56.687853+00 f t 46000.00 1 46000.00 13084 82 \N 11558 +87752 2025-11-21 11:15:09.679527+00 2025-11-21 11:15:09.679541+00 f t 120000.00 1 120000.00 13086 103 \N 11560 +88926 2025-11-24 00:58:38.82216+00 2025-11-24 00:58:38.822174+00 f t 55000.00 1 55000.00 13338 84 \N 11772 +88961 2025-11-24 04:43:06.828571+00 2025-11-24 04:43:06.828581+00 f t 46000.00 1 46000.00 13353 82 \N 11782 +87776 2025-11-21 11:25:04.196268+00 2025-11-21 11:25:04.196282+00 f t 46000.00 1 46000.00 13087 82 \N 11561 +87777 2025-11-21 11:25:04.217529+00 2025-11-21 11:25:04.217542+00 f t 8000.00 1 8000.00 13087 85 \N 11561 +87778 2025-11-21 11:25:04.226373+00 2025-11-21 11:25:04.226385+00 f t 24000.00 1 24000.00 13087 163 \N 11561 +87780 2025-11-21 11:37:51.160453+00 2025-11-21 11:37:51.160464+00 f t 45000.00 1 45000.00 13088 168 \N 11562 +87782 2025-11-21 12:04:56.773174+00 2025-11-21 12:04:56.773183+00 f t 46000.00 1 46000.00 13090 82 \N 11564 +87801 2025-11-21 12:20:23.131463+00 2025-11-21 12:20:23.131472+00 f t 55000.00 1 55000.00 13092 84 \N 11567 +87802 2025-11-21 12:20:23.141952+00 2025-11-21 12:20:23.141964+00 f t 78000.00 1 78000.00 13092 106 \N 11567 +87803 2025-11-21 12:20:23.148014+00 2025-11-21 12:20:23.148021+00 f t 85000.00 1 85000.00 13092 108 \N 11567 +87810 2025-11-21 12:23:57.418273+00 2025-11-21 12:23:57.418285+00 f t 46000.00 1 46000.00 13093 82 \N 11568 +87811 2025-11-21 12:23:57.427634+00 2025-11-21 12:23:57.427645+00 f t 8000.00 1 8000.00 13093 85 \N 11568 +87812 2025-11-21 12:31:07.069241+00 2025-11-21 12:31:07.06925+00 f t 88000.00 1 88000.00 13094 167 \N 11560 +87818 2025-11-21 12:40:14.796619+00 2025-11-21 12:40:14.796628+00 f t 55000.00 1 55000.00 13096 84 \N 11541 +87819 2025-11-21 12:57:20.511877+00 2025-11-21 12:57:20.511886+00 f t 88000.00 1 88000.00 13097 167 \N 8096 +87823 2025-11-21 13:34:11.514903+00 2025-11-21 13:34:11.514913+00 f t 30000.00 1 30000.00 13099 83 \N 11571 +87828 2025-11-21 13:37:41.163904+00 2025-11-21 13:37:41.163914+00 f t 46000.00 1 46000.00 13100 82 \N 11572 +87833 2025-11-21 14:02:29.551754+00 2025-11-21 14:02:29.551766+00 f t 60000.00 1 60000.00 13103 101 \N 11574 +87840 2025-11-21 14:10:02.623329+00 2025-11-21 14:10:02.623346+00 f t 88000.00 1 88000.00 13104 167 \N 11575 +87841 2025-11-21 14:10:02.65382+00 2025-11-21 14:10:02.653834+00 f t 46000.00 1 46000.00 13104 82 \N 11575 +87848 2025-11-21 14:20:32.562517+00 2025-11-21 14:20:32.562528+00 f t 46000.00 1 46000.00 13105 82 \N 11576 +87850 2025-11-21 14:38:42.680487+00 2025-11-21 14:38:42.680496+00 f t 57000.00 1 57000.00 13106 98 \N 11578 +87851 2025-11-21 14:41:56.665146+00 2025-11-21 14:41:56.665156+00 f t 8000.00 1 8000.00 13107 85 \N 11579 +87852 2025-11-21 14:41:56.67409+00 2025-11-21 14:41:56.674098+00 f t 46000.00 1 46000.00 13107 82 \N 11579 +87854 2025-11-21 14:49:08.718686+00 2025-11-21 14:49:08.718697+00 f t 46000.00 1 46000.00 13108 82 \N 11580 +87855 2025-11-21 14:49:41.728205+00 2025-11-21 14:49:41.728213+00 f t 46000.00 1 46000.00 13110 82 \N 11582 +87858 2025-11-21 14:55:15.893683+00 2025-11-21 14:55:15.893695+00 f t 24000.00 1 24000.00 13111 88 \N 11583 +87859 2025-11-21 14:55:15.901789+00 2025-11-21 14:55:15.901797+00 f t 46000.00 1 46000.00 13111 82 \N 11583 +87860 2025-11-21 15:06:25.602685+00 2025-11-21 15:06:25.602696+00 f t 8000.00 1 8000.00 13113 85 \N 11584 +87861 2025-11-21 15:06:25.613422+00 2025-11-21 15:06:25.613434+00 f t 46000.00 1 46000.00 13113 82 \N 11584 +87865 2025-11-21 15:30:09.852655+00 2025-11-21 15:30:09.852665+00 f t 55000.00 1 55000.00 13115 84 \N 11588 +87866 2025-11-21 15:44:51.002925+00 2025-11-21 15:44:51.002934+00 f t 24000.00 1 24000.00 13116 86 \N 11589 +87867 2025-11-21 15:44:51.012029+00 2025-11-21 15:44:51.012037+00 f t 46000.00 1 46000.00 13116 82 \N 11589 +87878 2025-11-21 16:02:27.291153+00 2025-11-21 16:02:27.291167+00 f t 55000.00 1 55000.00 13119 84 \N 1164 +87889 2025-11-21 16:06:16.274658+00 2025-11-21 16:06:16.274667+00 f t 55000.00 1 55000.00 13120 84 \N 11594 +87892 2025-11-21 16:07:58.814475+00 2025-11-21 16:07:58.814485+00 f t 55000.00 1 55000.00 13122 84 \N 11596 +87893 2025-11-21 16:12:59.693077+00 2025-11-21 16:12:59.693087+00 f t 24000.00 1 24000.00 13123 163 \N 11597 +87894 2025-11-21 16:12:59.701229+00 2025-11-21 16:12:59.701237+00 f t 46000.00 1 46000.00 13123 82 \N 11597 +87904 2025-11-21 16:17:47.467621+00 2025-11-21 16:17:47.467629+00 f t 24000.00 1 24000.00 13124 163 \N 11598 +87905 2025-11-21 16:17:47.475274+00 2025-11-21 16:17:47.475282+00 f t 46000.00 1 46000.00 13124 82 \N 11598 +87919 2025-11-21 16:32:46.869991+00 2025-11-21 16:32:46.869999+00 f t 46000.00 1 46000.00 13127 82 \N 11599 +87920 2025-11-21 16:32:46.877858+00 2025-11-21 16:32:46.877865+00 f t 8000.00 1 8000.00 13127 85 \N 11599 +87921 2025-11-21 16:32:46.882077+00 2025-11-21 16:32:46.882083+00 f t 8000.00 1 8000.00 13127 85 \N 11600 +87922 2025-11-21 16:32:46.886047+00 2025-11-21 16:32:46.886053+00 f t 46000.00 1 46000.00 13127 82 \N 11600 +87934 2025-11-21 16:43:06.711453+00 2025-11-21 16:43:06.711462+00 f t 46000.00 1 46000.00 13118 82 \N 11591 +87935 2025-11-21 16:43:06.719548+00 2025-11-21 16:43:06.719558+00 f t 46000.00 1 46000.00 13118 82 \N 11592 +87936 2025-11-21 16:43:06.724724+00 2025-11-21 16:43:06.724732+00 f t 8000.00 1 8000.00 13118 85 \N 11591 +87937 2025-11-21 16:43:06.729464+00 2025-11-21 16:43:06.729471+00 f t 8000.00 1 8000.00 13118 85 \N 11592 +87938 2025-11-21 16:43:06.733935+00 2025-11-21 16:43:06.733941+00 f t 24000.00 1 24000.00 13118 86 \N 11591 +87939 2025-11-21 16:43:06.738614+00 2025-11-21 16:43:06.738623+00 f t 24000.00 1 24000.00 13118 86 \N 11592 +87941 2025-11-21 16:59:10.25008+00 2025-11-21 16:59:10.250088+00 f t 30000.00 1 30000.00 13132 83 \N 11602 +87942 2025-11-21 17:06:02.00792+00 2025-11-21 17:06:02.007934+00 f t 87000.00 1 87000.00 13133 165 \N 11603 +87945 2025-11-21 17:44:00.283639+00 2025-11-21 17:44:00.283648+00 f t 46000.00 1 46000.00 13134 82 \N 11604 +87946 2025-11-21 17:44:00.291692+00 2025-11-21 17:44:00.291701+00 f t 8000.00 1 8000.00 13134 85 \N 11604 +87947 2025-11-21 17:44:00.296376+00 2025-11-21 17:44:00.296383+00 f t 24000.00 1 24000.00 13134 163 \N 11604 +87948 2025-11-21 17:54:36.28129+00 2025-11-21 17:54:36.281299+00 f t 55000.00 1 55000.00 13136 84 \N 11605 +87951 2025-11-21 18:18:42.312486+00 2025-11-21 18:18:42.312495+00 f t 55000.00 1 55000.00 13138 84 \N 11607 +87974 2025-11-21 18:33:51.640574+00 2025-11-21 18:33:51.640582+00 f t 75000.00 1 75000.00 13101 142 \N 11573 +87975 2025-11-21 18:33:51.648508+00 2025-11-21 18:33:51.648516+00 f t 46000.00 1 46000.00 13101 82 \N 11573 +87997 2025-11-21 18:39:20.219861+00 2025-11-21 18:39:20.21987+00 f t 46000.00 1 46000.00 13140 82 \N 11609 +87998 2025-11-21 18:39:20.228777+00 2025-11-21 18:39:20.228788+00 f t 78000.00 1 78000.00 13140 106 \N 11609 +88005 2025-11-21 19:22:51.327847+00 2025-11-21 19:22:51.327857+00 f t 46000.00 1 46000.00 13148 82 \N 11610 +88006 2025-11-21 19:22:51.335462+00 2025-11-21 19:22:51.33547+00 f t 8000.00 1 8000.00 13148 85 \N 11610 +88007 2025-11-21 19:27:56.357355+00 2025-11-21 19:27:56.357364+00 f t 24000.00 1 24000.00 13149 88 \N 11611 +88008 2025-11-21 19:27:56.367793+00 2025-11-21 19:27:56.367805+00 f t 46000.00 1 46000.00 13149 82 \N 11611 +88009 2025-11-21 19:29:23.090096+00 2025-11-21 19:29:23.090105+00 f t 46000.00 1 46000.00 13150 82 \N 11612 +88010 2025-11-21 19:29:41.825706+00 2025-11-21 19:29:41.825715+00 f t 30000.00 1 30000.00 13151 83 \N 11613 +88011 2025-11-21 19:33:04.366254+00 2025-11-21 19:33:04.366266+00 f t 46000.00 1 46000.00 13152 82 \N 335 +88020 2025-11-21 19:36:14.666049+00 2025-11-21 19:36:14.666057+00 f t 46000.00 1 46000.00 13153 82 \N 11614 +88021 2025-11-21 19:36:14.673903+00 2025-11-21 19:36:14.67391+00 f t 8000.00 1 8000.00 13153 85 \N 11614 +89034 2025-11-24 10:48:45.805173+00 2025-11-24 10:48:45.805181+00 f t 82500.00 1 82500.00 13371 84 \N 11799 +89054 2025-11-24 11:48:22.180855+00 2025-11-24 11:48:22.180862+00 f t 46000.00 1 46000.00 13377 82 \N 11804 +89055 2025-11-24 11:48:22.202021+00 2025-11-24 11:48:22.202033+00 f t 46000.00 1 46000.00 13377 82 \N 11805 +89071 2025-11-24 12:20:41.037493+00 2025-11-24 12:20:41.037502+00 f t 55000.00 1 55000.00 13382 84 \N 11810 +89079 2025-11-24 12:25:33.127179+00 2025-11-24 12:25:33.127187+00 f t 7700.00 1 7700.00 13385 91 \N 11812 +88103 2025-11-21 19:40:59.806213+00 2025-11-21 19:40:59.806221+00 f t 46000.00 1 46000.00 13154 82 \N 11616 +88104 2025-11-21 19:40:59.813888+00 2025-11-21 19:40:59.813895+00 f t 33000.00 1 33000.00 13154 123 \N 11616 +88105 2025-11-21 19:40:59.818077+00 2025-11-21 19:40:59.818086+00 f t 8000.00 1 8000.00 13154 85 \N 11616 +88106 2025-11-21 19:40:59.822911+00 2025-11-21 19:40:59.822917+00 f t 24000.00 1 24000.00 13154 163 \N 11616 +88107 2025-11-21 19:40:59.827589+00 2025-11-21 19:40:59.827596+00 f t 46000.00 1 46000.00 13154 82 \N 11617 +88108 2025-11-21 19:40:59.833234+00 2025-11-21 19:40:59.833244+00 f t 33000.00 1 33000.00 13154 123 \N 11617 +88109 2025-11-21 19:40:59.838982+00 2025-11-21 19:40:59.838991+00 f t 8000.00 1 8000.00 13154 85 \N 11617 +88110 2025-11-21 19:40:59.84514+00 2025-11-21 19:40:59.84515+00 f t 24000.00 1 24000.00 13154 163 \N 11617 +88111 2025-11-21 19:53:13.5325+00 2025-11-21 19:53:13.532509+00 f t 55000.00 1 55000.00 13156 84 \N 11618 +88112 2025-11-21 20:08:35.99299+00 2025-11-21 20:08:35.992998+00 f t 23000.00 1 23000.00 13157 172 \N 81 +88113 2025-11-21 20:20:04.141901+00 2025-11-21 20:20:04.141916+00 f t 8000.00 1 8000.00 13159 85 \N 11620 +88114 2025-11-21 20:20:04.162781+00 2025-11-21 20:20:04.162795+00 f t 46000.00 1 46000.00 13159 82 \N 11620 +88115 2025-11-21 20:49:27.260785+00 2025-11-21 20:49:27.260793+00 f t 13200.00 1 13200.00 13161 146 \N 81 +88116 2025-11-21 20:51:44.596521+00 2025-11-21 20:51:44.596528+00 f t 120000.00 1 120000.00 13162 103 \N 81 +88143 2025-11-21 21:06:13.856615+00 2025-11-21 21:06:13.856624+00 f t 46000.00 1 46000.00 13163 82 \N 11623 +88144 2025-11-21 21:06:13.864914+00 2025-11-21 21:06:13.864922+00 f t 8000.00 1 8000.00 13163 85 \N 11623 +88145 2025-11-21 21:06:13.869777+00 2025-11-21 21:06:13.869784+00 f t 24000.00 1 24000.00 13163 88 \N 11623 +88146 2025-11-21 21:06:13.874248+00 2025-11-21 21:06:13.874254+00 f t 24000.00 1 24000.00 13163 163 \N 11623 +88148 2025-11-21 21:28:52.488366+00 2025-11-21 21:28:52.488376+00 f t 24000.00 1 24000.00 13165 163 \N 11624 +88149 2025-11-21 21:28:52.500969+00 2025-11-21 21:28:52.500981+00 f t 46000.00 1 46000.00 13165 82 \N 11624 +88163 2025-11-21 21:36:23.667199+00 2025-11-21 21:36:23.667207+00 f t 75000.00 1 75000.00 13166 142 \N 11625 +88164 2025-11-21 21:36:23.675319+00 2025-11-21 21:36:23.675329+00 f t 46000.00 1 46000.00 13166 82 \N 11625 +88165 2025-11-21 21:39:48.529495+00 2025-11-21 21:39:48.529503+00 f t 16800.00 1 16800.00 13167 96 \N 11626 +88166 2025-11-21 21:39:48.537483+00 2025-11-21 21:39:48.537492+00 f t 46000.00 1 46000.00 13167 82 \N 11626 +88167 2025-11-21 22:11:55.493915+00 2025-11-21 22:11:55.493926+00 f t 24000.00 1 24000.00 13169 86 \N 11628 +88168 2025-11-21 22:11:55.503378+00 2025-11-21 22:11:55.50339+00 f t 46000.00 1 46000.00 13169 82 \N 11628 +88172 2025-11-21 22:38:40.444337+00 2025-11-21 22:38:40.444347+00 f t 31500.00 1 31500.00 13170 111 \N 11629 +88173 2025-11-21 23:18:52.581304+00 2025-11-21 23:18:52.581319+00 f t 8000.00 1 8000.00 13173 85 \N 11630 +88174 2025-11-21 23:18:52.59474+00 2025-11-21 23:18:52.594753+00 f t 46000.00 1 46000.00 13173 82 \N 11630 +88175 2025-11-21 23:28:43.909235+00 2025-11-21 23:28:43.90925+00 f t 55000.00 1 55000.00 13175 84 \N 11634 +88178 2025-11-21 23:34:03.107722+00 2025-11-21 23:34:03.107734+00 f t 46000.00 1 46000.00 13176 82 \N 11635 +88179 2025-11-21 23:34:03.117735+00 2025-11-21 23:34:03.117744+00 f t 8000.00 1 8000.00 13176 85 \N 11635 +88180 2025-11-21 23:34:44.356998+00 2025-11-21 23:34:44.357006+00 f t 20500.00 1 20500.00 13177 109 \N 11636 +88182 2025-11-22 00:05:10.212735+00 2025-11-22 00:05:10.212748+00 f t 55000.00 1 55000.00 13180 84 \N 11637 +88183 2025-11-22 00:47:08.428722+00 2025-11-22 00:47:08.428732+00 f t 85000.00 1 85000.00 13182 108 \N 11638 +88192 2025-11-22 00:50:13.723968+00 2025-11-22 00:50:13.723977+00 f t 46000.00 1 46000.00 13184 82 \N 11639 +88193 2025-11-22 00:50:13.733166+00 2025-11-22 00:50:13.73318+00 f t 24000.00 1 24000.00 13184 88 \N 11639 +88194 2025-11-22 00:50:13.738673+00 2025-11-22 00:50:13.738681+00 f t 24000.00 1 24000.00 13184 163 \N 11639 +88195 2025-11-22 01:04:56.581423+00 2025-11-22 01:04:56.581432+00 f t 8000.00 1 8000.00 13186 85 \N 11641 +88196 2025-11-22 01:04:56.59199+00 2025-11-22 01:04:56.591998+00 f t 46000.00 1 46000.00 13186 82 \N 11641 +88198 2025-11-22 01:17:13.353164+00 2025-11-22 01:17:13.353173+00 f t 55000.00 1 55000.00 13187 84 \N 11642 +88200 2025-11-22 01:27:26.105927+00 2025-11-22 01:27:26.105939+00 f t 46000.00 1 46000.00 13188 82 \N 11643 +88203 2025-11-22 02:18:24.45873+00 2025-11-22 02:18:24.458743+00 f t 85000.00 1 85000.00 13190 108 \N 11645 +88244 2025-11-22 02:22:02.836205+00 2025-11-22 02:22:02.836218+00 f t 46000.00 1 46000.00 13192 82 \N 11647 +88245 2025-11-22 02:22:02.859709+00 2025-11-22 02:22:02.859719+00 f t 24000.00 1 24000.00 13192 88 \N 11647 +88264 2025-11-22 02:23:02.328994+00 2025-11-22 02:23:02.329003+00 f t 46000.00 1 46000.00 13191 82 \N 11648 +88265 2025-11-22 02:23:02.3528+00 2025-11-22 02:23:02.352812+00 f t 8000.00 1 8000.00 13191 85 \N 11648 +88266 2025-11-22 02:23:02.358521+00 2025-11-22 02:23:02.358543+00 f t 24000.00 1 24000.00 13191 88 \N 11648 +88267 2025-11-22 02:23:02.36456+00 2025-11-22 02:23:02.364572+00 f t 24000.00 1 24000.00 13191 163 \N 11648 +88278 2025-11-22 02:25:33.502993+00 2025-11-22 02:25:33.503001+00 f t 46000.00 1 46000.00 13193 82 \N 11649 +88279 2025-11-22 03:44:31.428772+00 2025-11-22 03:44:31.428784+00 f t 8000.00 1 8000.00 13194 85 \N 11650 +88280 2025-11-22 03:44:31.450729+00 2025-11-22 03:44:31.450737+00 f t 46000.00 1 46000.00 13194 82 \N 11650 +88285 2025-11-22 03:58:26.816394+00 2025-11-22 03:58:26.816404+00 f t 8000.00 1 8000.00 13195 85 \N 11652 +88286 2025-11-22 03:58:26.836963+00 2025-11-22 03:58:26.836974+00 f t 46000.00 1 46000.00 13195 82 \N 11652 +88287 2025-11-22 03:59:28.763908+00 2025-11-22 03:59:28.763917+00 f t 8000.00 1 8000.00 13196 85 \N 11653 +88288 2025-11-22 03:59:28.784531+00 2025-11-22 03:59:28.78454+00 f t 46000.00 1 46000.00 13196 82 \N 11653 +88299 2025-11-22 04:04:20.891942+00 2025-11-22 04:04:20.891951+00 f t 46000.00 1 46000.00 13197 82 \N 11655 +88300 2025-11-22 04:04:20.91979+00 2025-11-22 04:04:20.919799+00 f t 8000.00 1 8000.00 13197 85 \N 11655 +88301 2025-11-22 04:04:20.925578+00 2025-11-22 04:04:20.925585+00 f t 24000.00 1 24000.00 13197 88 \N 11655 +88302 2025-11-22 04:04:20.930744+00 2025-11-22 04:04:20.930753+00 f t 24000.00 1 24000.00 13197 163 \N 11655 +88307 2025-11-22 06:27:53.61669+00 2025-11-22 06:27:53.616702+00 f t 55000.00 1 55000.00 13201 84 \N 11658 +88308 2025-11-22 10:50:44.391015+00 2025-11-22 10:50:44.391024+00 f t 24000.00 1 24000.00 13204 86 \N 11659 +88309 2025-11-22 10:50:44.412669+00 2025-11-22 10:50:44.412677+00 f t 46000.00 1 46000.00 13204 82 \N 11659 +88316 2025-11-22 11:19:58.566723+00 2025-11-22 11:19:58.566731+00 f t 46000.00 1 46000.00 13207 82 \N 11661 +88317 2025-11-22 11:19:58.586939+00 2025-11-22 11:19:58.586948+00 f t 8000.00 1 8000.00 13207 85 \N 11661 +88318 2025-11-22 11:19:58.59171+00 2025-11-22 11:19:58.591717+00 f t 24000.00 1 24000.00 13207 86 \N 11661 +88323 2025-11-22 11:39:12.985627+00 2025-11-22 11:39:12.985639+00 f t 46000.00 1 46000.00 13208 82 \N 11662 +88324 2025-11-22 11:39:13.009327+00 2025-11-22 11:39:13.009335+00 f t 8000.00 1 8000.00 13208 85 \N 11662 +88325 2025-11-22 12:43:29.472831+00 2025-11-22 12:43:29.47284+00 f t 88000.00 1 88000.00 13209 167 \N 11663 +88328 2025-11-22 13:35:08.085415+00 2025-11-22 13:35:08.085425+00 f t 46000.00 1 46000.00 13211 82 \N 11665 +88329 2025-11-22 13:35:08.114816+00 2025-11-22 13:35:08.114827+00 f t 24000.00 1 24000.00 13211 86 \N 11665 +88332 2025-11-22 13:39:38.933068+00 2025-11-22 13:39:38.933079+00 f t 55000.00 1 55000.00 13212 84 \N 11666 +88336 2025-11-22 13:55:10.189413+00 2025-11-22 13:55:10.189426+00 f t 55000.00 1 55000.00 13214 84 \N 11668 +88365 2025-11-22 14:00:08.405901+00 2025-11-22 14:00:08.405915+00 f t 46000.00 1 46000.00 13215 82 \N 11669 +88366 2025-11-22 14:00:08.508606+00 2025-11-22 14:00:08.508621+00 f t 32500.00 1 32500.00 13215 133 \N 11669 +88400 2025-11-22 14:07:53.199892+00 2025-11-22 14:07:53.199901+00 f t 46000.00 1 46000.00 13216 82 \N 11670 +88409 2025-11-22 14:13:49.718206+00 2025-11-22 14:13:49.718214+00 f t 46000.00 1 46000.00 13218 82 \N 11671 +88410 2025-11-22 14:13:49.738572+00 2025-11-22 14:13:49.73858+00 f t 8000.00 1 8000.00 13218 85 \N 11671 +88411 2025-11-22 14:13:49.743963+00 2025-11-22 14:13:49.74397+00 f t 8000.00 1 8000.00 13218 85 \N 11672 +88412 2025-11-22 14:13:49.748676+00 2025-11-22 14:13:49.748685+00 f t 46000.00 1 46000.00 13218 82 \N 11672 +88413 2025-11-22 14:17:27.485136+00 2025-11-22 14:17:27.485148+00 f t 8000.00 1 8000.00 13219 85 \N 11673 +88414 2025-11-22 14:17:27.508565+00 2025-11-22 14:17:27.508575+00 f t 46000.00 1 46000.00 13219 82 \N 11673 +88419 2025-11-22 16:15:08.911376+00 2025-11-22 16:15:08.911389+00 f t 24000.00 1 24000.00 13224 86 \N 11676 +88420 2025-11-22 16:15:08.94377+00 2025-11-22 16:15:08.943783+00 f t 46000.00 1 46000.00 13224 82 \N 11676 +88421 2025-11-22 16:17:27.967388+00 2025-11-22 16:17:27.967397+00 f t 24000.00 1 24000.00 13225 163 \N 11677 +88422 2025-11-22 16:17:27.988904+00 2025-11-22 16:17:27.988914+00 f t 46000.00 1 46000.00 13225 82 \N 11677 +88425 2025-11-22 16:22:37.074232+00 2025-11-22 16:22:37.074245+00 f t 55000.00 1 55000.00 13220 84 \N 11674 +88451 2025-11-22 16:40:25.057806+00 2025-11-22 16:40:25.057816+00 f t 46000.00 1 46000.00 13229 82 \N 11679 +88452 2025-11-22 16:40:25.082012+00 2025-11-22 16:40:25.082021+00 f t 24000.00 1 24000.00 13229 163 \N 11679 +88453 2025-11-22 16:40:25.087863+00 2025-11-22 16:40:25.087876+00 f t 24000.00 1 24000.00 13229 131 \N 11679 +88454 2025-11-22 16:42:42.728226+00 2025-11-22 16:42:42.728234+00 f t 24000.00 1 24000.00 13223 86 \N 11665 +88455 2025-11-22 16:42:42.750407+00 2025-11-22 16:42:42.750417+00 f t 46000.00 1 46000.00 13223 82 \N 11665 +88458 2025-11-22 16:56:47.331001+00 2025-11-22 16:56:47.33101+00 f t 46000.00 1 46000.00 13230 82 \N 11680 +88459 2025-11-22 16:56:47.353183+00 2025-11-22 16:56:47.353192+00 f t 16800.00 1 16800.00 13230 96 \N 11680 +88460 2025-11-22 17:05:27.706972+00 2025-11-22 17:05:27.706981+00 f t 46000.00 1 46000.00 13231 82 \N 11681 +88468 2025-11-22 17:09:34.012254+00 2025-11-22 17:09:34.012262+00 f t 8000.00 1 8000.00 13232 85 \N 11682 +88469 2025-11-22 17:09:34.034921+00 2025-11-22 17:09:34.034934+00 f t 24000.00 1 24000.00 13232 88 \N 11682 +88470 2025-11-22 17:09:34.040656+00 2025-11-22 17:09:34.040664+00 f t 46000.00 1 46000.00 13232 82 \N 11682 +88471 2025-11-22 17:21:08.524056+00 2025-11-22 17:21:08.524066+00 f t 8000.00 1 8000.00 13233 85 \N 11683 +88472 2025-11-22 17:21:08.551013+00 2025-11-22 17:21:08.551021+00 f t 46000.00 1 46000.00 13233 82 \N 11683 +88473 2025-11-22 17:46:41.272294+00 2025-11-22 17:46:41.272304+00 f t 55000.00 1 55000.00 13235 84 \N 11684 +88476 2025-11-22 18:15:33.746133+00 2025-11-22 18:15:33.746142+00 f t 24000.00 1 24000.00 13236 86 \N 11685 +88477 2025-11-22 18:15:33.767012+00 2025-11-22 18:15:33.76702+00 f t 46000.00 1 46000.00 13236 82 \N 11685 +88479 2025-11-22 18:31:21.408696+00 2025-11-22 18:31:21.408705+00 f t 55000.00 1 55000.00 13237 84 \N 11596 +88483 2025-11-22 18:37:40.565324+00 2025-11-22 18:37:40.565332+00 f t 46000.00 1 46000.00 13239 82 \N 11687 +88485 2025-11-22 19:23:46.779838+00 2025-11-22 19:23:46.779848+00 f t 24000.00 1 24000.00 13242 163 \N 11691 +88486 2025-11-22 19:23:46.805726+00 2025-11-22 19:23:46.805735+00 f t 46000.00 1 46000.00 13242 82 \N 11691 +88487 2025-11-22 21:08:08.699423+00 2025-11-22 21:08:08.699431+00 f t 46000.00 1 46000.00 13244 82 \N 11694 +88502 2025-11-22 21:25:08.772627+00 2025-11-22 21:25:08.772639+00 f t 69000.00 1 69000.00 13245 141 \N 11695 +88503 2025-11-22 21:25:08.802643+00 2025-11-22 21:25:08.802655+00 f t 46000.00 1 46000.00 13245 82 \N 11695 +88508 2025-11-22 21:26:18.661348+00 2025-11-22 21:26:18.661356+00 f t 46000.00 1 46000.00 13246 82 \N 11696 +88511 2025-11-22 22:03:08.174624+00 2025-11-22 22:03:08.174636+00 f t 46000.00 1 46000.00 13247 82 \N 11697 +88512 2025-11-22 22:03:08.20174+00 2025-11-22 22:03:08.20175+00 f t 8000.00 1 8000.00 13247 85 \N 11697 +88517 2025-11-22 22:06:55.626106+00 2025-11-22 22:06:55.62612+00 f t 46000.00 1 46000.00 13248 82 \N 11698 +88518 2025-11-22 22:06:55.650517+00 2025-11-22 22:06:55.65053+00 f t 24000.00 1 24000.00 13248 88 \N 11698 +88519 2025-11-22 22:06:55.65748+00 2025-11-22 22:06:55.657491+00 f t 24000.00 1 24000.00 13248 163 \N 11698 +88529 2025-11-22 22:54:11.78274+00 2025-11-22 22:54:11.78275+00 f t 55000.00 1 55000.00 13250 84 \N 10682 +88534 2025-11-22 23:30:47.089352+00 2025-11-22 23:30:47.089361+00 f t 24000.00 1 24000.00 13251 163 \N 11700 +88535 2025-11-22 23:30:47.10987+00 2025-11-22 23:30:47.109878+00 f t 46000.00 1 46000.00 13251 82 \N 11700 +88536 2025-11-22 23:49:55.849479+00 2025-11-22 23:49:55.849488+00 f t 46000.00 1 46000.00 13252 82 \N 11701 +88537 2025-11-23 01:40:26.47997+00 2025-11-23 01:40:26.479979+00 f t 30000.00 1 30000.00 13256 83 \N 11703 +88548 2025-11-23 02:13:18.831467+00 2025-11-23 02:13:18.831479+00 f t 30000.00 1 30000.00 13257 83 \N 11705 +88566 2025-11-23 03:19:20.848365+00 2025-11-23 03:19:20.848373+00 f t 46000.00 1 46000.00 13260 82 \N 11707 +88567 2025-11-23 03:19:20.873497+00 2025-11-23 03:19:20.873505+00 f t 24000.00 1 24000.00 13260 163 \N 11707 +88568 2025-11-23 03:19:20.878802+00 2025-11-23 03:19:20.878808+00 f t 8000.00 1 8000.00 13260 85 \N 11707 +88569 2025-11-23 06:25:15.080901+00 2025-11-23 06:25:15.080911+00 f t 46000.00 1 46000.00 13263 82 \N 11709 +88570 2025-11-23 06:49:02.873954+00 2025-11-23 06:49:02.873966+00 f t 55000.00 1 55000.00 13265 84 \N 11710 +88578 2025-11-23 08:08:53.015869+00 2025-11-23 08:08:53.015881+00 f t 55000.00 1 55000.00 13267 84 \N 11712 +88581 2025-11-23 10:16:14.569587+00 2025-11-23 10:16:14.569597+00 f t 55000.00 1 55000.00 13268 84 \N 11713 +88584 2025-11-23 10:21:12.881751+00 2025-11-23 10:21:12.881763+00 f t 30000.00 1 30000.00 13269 83 \N 11714 +88592 2025-11-23 10:31:52.650794+00 2025-11-23 10:31:52.650801+00 f t 55000.00 1 55000.00 13271 84 \N 11716 +88597 2025-11-23 11:31:25.192421+00 2025-11-23 11:31:25.192429+00 f t 46000.00 1 46000.00 13273 82 \N 11717 +88598 2025-11-23 11:31:25.214564+00 2025-11-23 11:31:25.214572+00 f t 32500.00 1 32500.00 13273 133 \N 11717 +88599 2025-11-23 12:08:25.860355+00 2025-11-23 12:08:25.860369+00 f t 55000.00 1 55000.00 13274 84 \N 11718 +88602 2025-11-23 13:31:59.348153+00 2025-11-23 13:31:59.348163+00 f t 55000.00 1 55000.00 13279 84 \N 11720 +88603 2025-11-23 13:39:22.231962+00 2025-11-23 13:39:22.23197+00 f t 24000.00 1 24000.00 13280 86 \N 11721 +88604 2025-11-23 13:39:22.253204+00 2025-11-23 13:39:22.253214+00 f t 46000.00 1 46000.00 13280 82 \N 11721 +88606 2025-11-23 13:42:54.732687+00 2025-11-23 13:42:54.732696+00 f t 55000.00 1 55000.00 13281 84 \N 11719 +88607 2025-11-23 13:51:03.97845+00 2025-11-23 13:51:03.978462+00 f t 60000.00 1 60000.00 13282 169 \N 11723 +88652 2025-11-23 13:58:13.001155+00 2025-11-23 13:58:13.001167+00 f t 46000.00 1 46000.00 13283 82 \N 11724 +88653 2025-11-23 13:58:13.028345+00 2025-11-23 13:58:13.028357+00 f t 33000.00 1 33000.00 13283 122 \N 11724 +88654 2025-11-23 13:58:13.034803+00 2025-11-23 13:58:13.03481+00 f t 8000.00 1 8000.00 13283 85 \N 11724 +88655 2025-11-23 13:58:13.039771+00 2025-11-23 13:58:13.03978+00 f t 46000.00 1 46000.00 13283 82 \N 11725 +88656 2025-11-23 13:58:13.045033+00 2025-11-23 13:58:13.045045+00 f t 8000.00 1 8000.00 13283 85 \N 11725 +88657 2025-11-23 13:58:13.051253+00 2025-11-23 13:58:13.051264+00 f t 33000.00 1 33000.00 13283 122 \N 11725 +88658 2025-11-23 14:07:41.45776+00 2025-11-23 14:07:41.457769+00 f t 8000.00 1 8000.00 13284 85 \N 11726 +88659 2025-11-23 14:07:41.479969+00 2025-11-23 14:07:41.479981+00 f t 46000.00 1 46000.00 13284 82 \N 11726 +88666 2025-11-23 14:44:17.820642+00 2025-11-23 14:44:17.820651+00 f t 46000.00 1 46000.00 13285 82 \N 11727 +88667 2025-11-23 14:44:17.842229+00 2025-11-23 14:44:17.842237+00 f t 8000.00 1 8000.00 13285 85 \N 11727 +88676 2025-11-23 14:47:30.072916+00 2025-11-23 14:47:30.072925+00 f t 46000.00 1 46000.00 13287 82 \N 11729 +88677 2025-11-23 14:47:50.223603+00 2025-11-23 14:47:50.223611+00 f t 55000.00 1 55000.00 13286 84 \N 11728 +88678 2025-11-23 14:50:49.962921+00 2025-11-23 14:50:49.962929+00 f t 55000.00 1 55000.00 13288 84 \N 11730 +88702 2025-11-23 15:17:23.545603+00 2025-11-23 15:17:23.545615+00 f t 31500.00 1 31500.00 13290 111 \N 11731 +88703 2025-11-23 15:17:23.573371+00 2025-11-23 15:17:23.573383+00 f t 46000.00 1 46000.00 13290 82 \N 11731 +88704 2025-11-23 15:17:23.57947+00 2025-11-23 15:17:23.579481+00 f t 87000.00 1 87000.00 13290 165 \N 11731 +88705 2025-11-23 15:54:08.660921+00 2025-11-23 15:54:08.660929+00 f t 8000.00 1 8000.00 13291 85 \N 11732 +88706 2025-11-23 15:54:08.683434+00 2025-11-23 15:54:08.683443+00 f t 46000.00 1 46000.00 13291 82 \N 11732 +88707 2025-11-23 16:11:18.142625+00 2025-11-23 16:11:18.142634+00 f t 46000.00 1 46000.00 13292 82 \N 11733 +88708 2025-11-23 16:21:04.090104+00 2025-11-23 16:21:04.090115+00 f t 55000.00 1 55000.00 13277 84 \N 11719 +88711 2025-11-23 17:00:59.039073+00 2025-11-23 17:00:59.039086+00 f t 55000.00 1 55000.00 13294 84 \N 11734 +88712 2025-11-23 17:01:00.745536+00 2025-11-23 17:01:00.745552+00 f t 55000.00 1 55000.00 13295 84 \N 11735 +88714 2025-11-23 17:03:22.199453+00 2025-11-23 17:03:22.199462+00 f t 55000.00 1 55000.00 13296 84 \N 11736 +88717 2025-11-23 17:13:48.913993+00 2025-11-23 17:13:48.914003+00 f t 55000.00 1 55000.00 13298 84 \N 11737 +88720 2025-11-23 18:12:04.124308+00 2025-11-23 18:12:04.124321+00 f t 24000.00 1 24000.00 13300 163 \N 11738 +88721 2025-11-23 18:12:04.148889+00 2025-11-23 18:12:04.148902+00 f t 46000.00 1 46000.00 13300 82 \N 11738 +88724 2025-11-23 18:34:56.774244+00 2025-11-23 18:34:56.774252+00 f t 120000.00 1 120000.00 13303 103 \N 8096 +88728 2025-11-23 18:44:55.658504+00 2025-11-23 18:44:55.658516+00 f t 120000.00 1 120000.00 13304 103 \N 8096 +88729 2025-11-23 18:47:47.999676+00 2025-11-23 18:47:47.999685+00 f t 8000.00 1 8000.00 13307 85 \N 11741 +88730 2025-11-23 18:47:48.022885+00 2025-11-23 18:47:48.022894+00 f t 46000.00 1 46000.00 13307 82 \N 11741 +88733 2025-11-23 18:50:46.518224+00 2025-11-23 18:50:46.518232+00 f t 55000.00 1 55000.00 13308 84 \N 11742 +88734 2025-11-23 18:52:01.132981+00 2025-11-23 18:52:01.132994+00 f t 24000.00 1 24000.00 13309 88 \N 11743 +88735 2025-11-23 18:52:01.162904+00 2025-11-23 18:52:01.162918+00 f t 46000.00 1 46000.00 13309 82 \N 11743 +88736 2025-11-23 18:52:52.611923+00 2025-11-23 18:52:52.611932+00 f t 8000.00 1 8000.00 13310 85 \N 11744 +88737 2025-11-23 18:52:52.634426+00 2025-11-23 18:52:52.634437+00 f t 46000.00 1 46000.00 13310 82 \N 11744 +88767 2025-11-23 19:20:40.979764+00 2025-11-23 19:20:40.979773+00 f t 46000.00 1 46000.00 13312 82 \N 11746 +88777 2025-11-23 19:26:03.627591+00 2025-11-23 19:26:03.627601+00 f t 23000.00 1 23000.00 13313 172 \N 11747 +88782 2025-11-23 19:36:02.651452+00 2025-11-23 19:36:02.651463+00 f t 46000.00 1 46000.00 13314 82 \N 11749 +88783 2025-11-23 19:36:02.678646+00 2025-11-23 19:36:02.678703+00 f t 8000.00 1 8000.00 13314 85 \N 11749 +88784 2025-11-23 19:37:00.088544+00 2025-11-23 19:37:00.088556+00 f t 46000.00 1 46000.00 13114 82 \N 11587 +88785 2025-11-23 19:37:00.131117+00 2025-11-23 19:37:00.131126+00 f t 46000.00 1 46000.00 13114 82 \N 11585 +88786 2025-11-23 19:37:00.137791+00 2025-11-23 19:37:00.1378+00 f t 24000.00 1 24000.00 13114 132 \N 11585 +88787 2025-11-23 19:37:00.144246+00 2025-11-23 19:37:00.144255+00 f t 8000.00 1 8000.00 13114 85 \N 11585 +88788 2025-11-23 19:37:00.150443+00 2025-11-23 19:37:00.150453+00 f t 24000.00 1 24000.00 13114 163 \N 11587 +88789 2025-11-23 19:37:00.156778+00 2025-11-23 19:37:00.156787+00 f t 24000.00 1 24000.00 13114 163 \N 11586 +88790 2025-11-23 19:37:00.162577+00 2025-11-23 19:37:00.162588+00 f t 46000.00 1 46000.00 13114 82 \N 11586 +88791 2025-11-23 19:39:59.299027+00 2025-11-23 19:39:59.299036+00 f t 24000.00 1 24000.00 13315 163 \N 11750 +88792 2025-11-23 19:39:59.320704+00 2025-11-23 19:39:59.320718+00 f t 46000.00 1 46000.00 13315 82 \N 11750 +88793 2025-11-23 19:46:23.177172+00 2025-11-23 19:46:23.177181+00 f t 8000.00 1 8000.00 13316 85 \N 11751 +88794 2025-11-23 19:46:23.199868+00 2025-11-23 19:46:23.199879+00 f t 46000.00 1 46000.00 13316 82 \N 11751 +88800 2025-11-23 19:48:45.028284+00 2025-11-23 19:48:45.028294+00 f t 55000.00 1 55000.00 13317 84 \N 11752 +88828 2025-11-23 20:11:17.877712+00 2025-11-23 20:11:17.877721+00 f t 78000.00 1 78000.00 13319 106 \N 11754 +88830 2025-11-23 20:11:25.400064+00 2025-11-23 20:11:25.400073+00 f t 46000.00 1 46000.00 13318 82 \N 11753 +88833 2025-11-23 20:13:38.438173+00 2025-11-23 20:13:38.438181+00 f t 78000.00 1 78000.00 13320 106 \N 11755 +88834 2025-11-23 20:28:47.553613+00 2025-11-23 20:28:47.553621+00 f t 55000.00 1 55000.00 13322 84 \N 3954 +88835 2025-11-23 20:34:22.042122+00 2025-11-23 20:34:22.042133+00 f t 55000.00 1 55000.00 13323 84 \N 11757 +88949 2025-11-24 01:48:30.453826+00 2025-11-24 01:48:30.453839+00 f t 46000.00 1 46000.00 13342 82 \N 11775 +88981 2025-11-24 05:41:55.832978+00 2025-11-24 05:41:55.832987+00 f t 20500.00 1 20500.00 13357 109 \N 11786 +88988 2025-11-24 06:29:21.44205+00 2025-11-24 06:29:21.442058+00 f t 20500.00 1 20500.00 13360 109 \N 11789 +88844 2025-11-23 20:39:55.3086+00 2025-11-23 20:39:55.308608+00 f t 55000.00 1 55000.00 13324 84 \N 11758 +88847 2025-11-23 20:54:05.312764+00 2025-11-23 20:54:05.312773+00 f t 55000.00 1 55000.00 13326 84 \N 11759 +89022 2025-11-24 09:51:01.002259+00 2025-11-24 09:51:01.002266+00 f t 46000.00 1 46000.00 13366 82 \N 11795 +89023 2025-11-24 09:51:01.030812+00 2025-11-24 09:51:01.030821+00 f t 8000.00 1 8000.00 13366 85 \N 11795 +88851 2025-11-23 21:00:14.88696+00 2025-11-23 21:00:14.886977+00 f t 55000.00 1 55000.00 13327 84 \N 11760 +89024 2025-11-24 09:51:01.036794+00 2025-11-24 09:51:01.036802+00 f t 24000.00 1 24000.00 13366 88 \N 11795 +89025 2025-11-24 09:51:01.042187+00 2025-11-24 09:51:01.042194+00 f t 24000.00 1 24000.00 13366 163 \N 11795 +88858 2025-11-23 21:21:55.809071+00 2025-11-23 21:21:55.809083+00 f t 46000.00 1 46000.00 13328 82 \N 11761 +88859 2025-11-23 21:21:55.834247+00 2025-11-23 21:21:55.834255+00 f t 8000.00 1 8000.00 13328 85 \N 11761 +89056 2025-11-24 12:02:25.955888+00 2025-11-24 12:02:25.955902+00 f t 55000.00 1 55000.00 13378 84 \N 11806 +89072 2025-11-24 12:23:01.56274+00 2025-11-24 12:23:01.562751+00 f t 55000.00 1 55000.00 13381 84 \N 11809 +89080 2025-11-24 12:25:33.147508+00 2025-11-24 12:25:33.147516+00 f t 46000.00 1 46000.00 13385 82 \N 11812 +89101 2025-11-24 13:17:24.249936+00 2025-11-24 13:17:24.249945+00 f t 78000.00 1 78000.00 13390 106 \N 11817 +89129 2025-11-24 13:38:21.786239+00 2025-11-24 13:38:21.786248+00 f t 24000.00 1 24000.00 13392 163 \N 11819 +89130 2025-11-24 13:38:21.808513+00 2025-11-24 13:38:21.808522+00 f t 46000.00 1 46000.00 13392 82 \N 11819 +89140 2025-11-24 13:47:36.910569+00 2025-11-24 13:47:36.910578+00 f t 24000.00 1 24000.00 13394 163 \N 11821 +89141 2025-11-24 13:47:36.931497+00 2025-11-24 13:47:36.931505+00 f t 46000.00 1 46000.00 13394 82 \N 11821 +89144 2025-11-24 13:51:06.77804+00 2025-11-24 13:51:06.778053+00 f t 30000.00 1 30000.00 13395 83 \N 11822 +88900 2025-11-23 22:26:07.021831+00 2025-11-23 22:26:07.021843+00 f t 46000.00 1 46000.00 13330 82 \N 11762 +88901 2025-11-23 22:26:07.047027+00 2025-11-23 22:26:07.047039+00 f t 8000.00 1 8000.00 13330 85 \N 11762 +88902 2025-11-23 22:26:07.05358+00 2025-11-23 22:26:07.053591+00 f t 24000.00 1 24000.00 13330 86 \N 11762 +89209 2025-11-24 14:22:51.373111+00 2025-11-24 14:22:51.373119+00 f t 30000.00 1 30000.00 13401 83 \N 11824 +89225 2025-11-24 14:29:33.468855+00 2025-11-24 14:29:33.468863+00 f t 7700.00 1 7700.00 13403 91 \N 11825 +89226 2025-11-24 14:29:33.491698+00 2025-11-24 14:29:33.491709+00 f t 46000.00 1 46000.00 13403 82 \N 11825 +89229 2025-11-24 14:31:33.365857+00 2025-11-24 14:31:33.365868+00 f t 24000.00 1 24000.00 13405 163 \N 11827 +89230 2025-11-24 14:31:33.39484+00 2025-11-24 14:31:33.39485+00 f t 46000.00 1 46000.00 13405 82 \N 11827 +89240 2025-11-24 14:52:06.886945+00 2025-11-24 14:52:06.886954+00 f t 46000.00 1 46000.00 13409 82 \N 11831 +89241 2025-11-24 14:52:06.909007+00 2025-11-24 14:52:06.909016+00 f t 8000.00 1 8000.00 13409 85 \N 11831 +89242 2025-11-24 14:52:06.913827+00 2025-11-24 14:52:06.913833+00 f t 24000.00 1 24000.00 13409 88 \N 11832 +89243 2025-11-24 14:52:06.919059+00 2025-11-24 14:52:06.919068+00 f t 46000.00 1 46000.00 13409 82 \N 11832 +89246 2025-11-24 15:00:36.583712+00 2025-11-24 15:00:36.583725+00 f t 46000.00 1 46000.00 13410 82 \N 11833 +89247 2025-11-24 15:00:36.609216+00 2025-11-24 15:00:36.609228+00 f t 8000.00 1 8000.00 13410 85 \N 11833 +89277 2025-11-24 15:30:00.780682+00 2025-11-24 15:30:00.780691+00 f t 46000.00 1 46000.00 13412 82 \N 11835 +89278 2025-11-24 15:30:00.807921+00 2025-11-24 15:30:00.807934+00 f t 24000.00 1 24000.00 13412 163 \N 11835 +89279 2025-11-24 15:30:00.815823+00 2025-11-24 15:30:00.815831+00 f t 46000.00 1 46000.00 13412 82 \N 11836 +89280 2025-11-24 15:31:25.285758+00 2025-11-24 15:31:25.285766+00 f t 24000.00 1 24000.00 13413 86 \N 11837 +89281 2025-11-24 15:31:25.312+00 2025-11-24 15:31:25.312012+00 f t 46000.00 1 46000.00 13413 82 \N 11837 +89282 2025-11-24 15:39:47.472886+00 2025-11-24 15:39:47.472894+00 f t 81500.00 1 81500.00 13416 143 \N 11838 +89283 2025-11-24 15:39:47.495598+00 2025-11-24 15:39:47.495609+00 f t 46000.00 1 46000.00 13416 82 \N 11838 +89284 2025-11-24 15:40:04.313546+00 2025-11-24 15:40:04.313559+00 f t 24000.00 1 24000.00 13415 163 \N 11839 +89285 2025-11-24 15:40:04.364563+00 2025-11-24 15:40:04.364578+00 f t 46000.00 1 46000.00 13415 82 \N 11839 +89296 2025-11-24 16:09:38.067432+00 2025-11-24 16:09:38.067441+00 f t 8000.00 1 8000.00 13417 85 \N 11840 +89297 2025-11-24 16:09:38.087579+00 2025-11-24 16:09:38.087591+00 f t 24000.00 1 24000.00 13417 163 \N 11840 +89298 2025-11-24 16:09:38.092264+00 2025-11-24 16:09:38.09227+00 f t 46000.00 1 46000.00 13417 82 \N 11840 +89299 2025-11-24 16:35:01.30994+00 2025-11-24 16:35:01.309953+00 f t 8000.00 1 8000.00 13419 85 \N 11842 +89300 2025-11-24 16:35:01.343031+00 2025-11-24 16:35:01.343044+00 f t 46000.00 1 46000.00 13419 82 \N 11842 +89301 2025-11-24 17:19:00.058823+00 2025-11-24 17:19:00.058836+00 f t 8000.00 1 8000.00 13421 85 \N 11845 +89302 2025-11-24 17:19:00.082885+00 2025-11-24 17:19:00.082898+00 f t 46000.00 1 46000.00 13421 82 \N 11845 +89310 2025-11-24 17:33:06.745026+00 2025-11-24 17:33:06.745036+00 f t 46000.00 1 46000.00 13422 82 \N 11846 +89311 2025-11-24 17:33:06.774028+00 2025-11-24 17:33:06.774037+00 f t 24000.00 1 24000.00 13422 88 \N 11846 +89312 2025-11-24 17:33:06.780717+00 2025-11-24 17:33:06.780728+00 f t 24000.00 1 24000.00 13422 163 \N 11846 +89319 2025-11-24 18:02:52.860928+00 2025-11-24 18:02:52.860936+00 f t 46000.00 1 46000.00 13424 82 \N 11848 +89320 2025-11-24 18:02:52.882548+00 2025-11-24 18:02:52.882557+00 f t 8000.00 1 8000.00 13424 85 \N 11848 +89321 2025-11-24 18:20:02.88804+00 2025-11-24 18:20:02.888056+00 f t 24000.00 1 24000.00 13427 163 \N 11852 +89322 2025-11-24 18:20:02.99154+00 2025-11-24 18:20:02.991554+00 f t 46000.00 1 46000.00 13427 82 \N 11852 +89323 2025-11-24 19:04:01.165489+00 2025-11-24 19:04:01.165498+00 f t 24000.00 1 24000.00 13429 163 \N 11854 +89324 2025-11-24 19:04:01.194125+00 2025-11-24 19:04:01.194139+00 f t 46000.00 1 46000.00 13429 82 \N 11854 +89328 2025-11-24 19:53:38.356769+00 2025-11-24 19:53:38.356778+00 f t 55000.00 1 55000.00 13433 84 \N 11857 +89331 2025-11-24 20:16:21.611127+00 2025-11-24 20:16:21.611137+00 f t 30000.00 1 30000.00 13434 83 \N 11859 +89349 2025-11-24 20:20:30.207878+00 2025-11-24 20:20:30.207887+00 f t 24000.00 1 24000.00 13435 163 \N 11860 +89350 2025-11-24 20:20:30.231251+00 2025-11-24 20:20:30.231266+00 f t 46000.00 1 46000.00 13435 82 \N 11860 +89360 2025-11-24 20:43:43.028037+00 2025-11-24 20:43:43.028046+00 f t 46000.00 1 46000.00 13438 82 \N 11861 +89361 2025-11-24 20:43:43.06369+00 2025-11-24 20:43:43.063698+00 f t 34000.00 1 34000.00 13438 110 \N 11861 +89362 2025-11-24 20:45:24.922886+00 2025-11-24 20:45:24.922895+00 f t 55000.00 1 55000.00 13439 84 \N 11862 +89363 2025-11-24 20:45:38.7928+00 2025-11-24 20:45:38.792808+00 f t 8000.00 1 8000.00 13437 85 \N 764 +89364 2025-11-24 20:45:38.83865+00 2025-11-24 20:45:38.838659+00 f t 46000.00 1 46000.00 13437 82 \N 764 +89365 2025-11-24 20:59:09.631591+00 2025-11-24 20:59:09.6316+00 f t 24000.00 1 24000.00 13442 163 \N 11864 +89366 2025-11-24 20:59:09.658777+00 2025-11-24 20:59:09.658786+00 f t 46000.00 1 46000.00 13442 82 \N 11864 +89368 2025-11-24 21:33:00.262714+00 2025-11-24 21:33:00.262727+00 f t 24000.00 1 24000.00 13445 163 \N 11866 +89369 2025-11-24 21:33:00.294705+00 2025-11-24 21:33:00.294718+00 f t 46000.00 1 46000.00 13445 82 \N 11866 +89374 2025-11-24 21:39:23.733616+00 2025-11-24 21:39:23.733627+00 f t 80000.00 1 80000.00 13446 173 \N 11867 +89375 2025-11-24 21:41:28.330988+00 2025-11-24 21:41:28.331006+00 f t 46000.00 1 46000.00 13447 82 \N 11868 +89378 2025-11-24 22:20:32.227632+00 2025-11-24 22:20:32.227642+00 f t 24000.00 1 24000.00 13453 163 \N 11873 +89379 2025-11-24 22:20:32.252791+00 2025-11-24 22:20:32.252804+00 f t 46000.00 1 46000.00 13453 82 \N 11873 +89380 2025-11-24 22:21:23.435861+00 2025-11-24 22:21:23.43587+00 f t 32500.00 1 32500.00 13454 133 \N 11874 +89381 2025-11-24 22:21:23.483585+00 2025-11-24 22:21:23.483595+00 f t 46000.00 1 46000.00 13454 82 \N 11874 +89382 2025-11-24 22:37:16.842585+00 2025-11-24 22:37:16.842594+00 f t 34000.00 1 34000.00 13458 110 \N 11875 +89397 2025-11-24 22:39:59.113434+00 2025-11-24 22:39:59.113443+00 f t 46000.00 1 46000.00 13400 82 \N 11678 +89398 2025-11-24 22:39:59.180507+00 2025-11-24 22:39:59.180517+00 f t 8000.00 1 8000.00 13400 85 \N 11678 +89399 2025-11-24 22:39:59.186075+00 2025-11-24 22:39:59.186085+00 f t 24000.00 1 24000.00 13400 163 \N 11678 +89441 2025-11-24 22:41:57.608539+00 2025-11-24 22:41:57.608548+00 f t 34000.00 1 34000.00 13459 110 \N 11876 +89442 2025-11-24 22:41:57.654495+00 2025-11-24 22:41:57.654507+00 f t 120000.00 1 120000.00 13459 103 \N 11876 +89443 2025-11-24 22:41:57.661346+00 2025-11-24 22:41:57.661355+00 f t 46000.00 1 46000.00 13459 82 \N 11876 +89444 2025-11-24 22:41:57.667068+00 2025-11-24 22:41:57.667078+00 f t 85000.00 1 85000.00 13459 108 \N 11876 +89445 2025-11-24 22:41:57.672863+00 2025-11-24 22:41:57.672875+00 f t 24000.00 1 24000.00 13459 86 \N 11876 +89446 2025-11-24 22:41:57.678841+00 2025-11-24 22:41:57.678851+00 f t 7700.00 1 7700.00 13459 93 \N 11876 +89454 2025-11-24 22:49:33.58276+00 2025-11-24 22:49:33.582768+00 f t 46000.00 1 46000.00 13449 82 \N 11869 +89455 2025-11-24 22:49:33.603715+00 2025-11-24 22:49:33.603724+00 f t 8000.00 1 8000.00 13449 85 \N 11869 +89456 2025-11-24 22:49:33.608598+00 2025-11-24 22:49:33.608604+00 f t 24000.00 1 24000.00 13449 86 \N 11869 +89581 2025-11-24 22:55:50.811926+00 2025-11-24 22:55:50.811935+00 f t 46000.00 1 46000.00 13461 82 \N 11878 +89582 2025-11-24 22:55:50.837551+00 2025-11-24 22:55:50.837561+00 f t 8000.00 1 8000.00 13461 85 \N 11878 +89583 2025-11-24 22:55:50.842779+00 2025-11-24 22:55:50.842787+00 f t 24000.00 1 24000.00 13461 88 \N 11878 +89584 2025-11-24 22:55:50.847333+00 2025-11-24 22:55:50.84734+00 f t 24000.00 1 24000.00 13461 163 \N 11878 +89585 2025-11-24 22:55:50.851913+00 2025-11-24 22:55:50.85192+00 f t 46000.00 1 46000.00 13461 82 \N 11879 +89586 2025-11-24 22:55:50.856256+00 2025-11-24 22:55:50.856262+00 f t 8000.00 1 8000.00 13461 85 \N 11879 +89587 2025-11-24 22:55:50.861276+00 2025-11-24 22:55:50.861286+00 f t 24000.00 1 24000.00 13461 88 \N 11879 +89588 2025-11-24 22:55:50.867009+00 2025-11-24 22:55:50.867019+00 f t 24000.00 1 24000.00 13461 163 \N 11879 +89591 2025-11-24 23:23:41.961769+00 2025-11-24 23:23:41.961779+00 f t 46000.00 1 46000.00 13464 82 \N 11881 +89592 2025-11-24 23:31:06.78887+00 2025-11-24 23:31:06.788883+00 f t 80000.00 1 80000.00 13467 173 \N 11882 +89594 2025-11-24 23:33:11.950259+00 2025-11-24 23:33:11.950267+00 f t 46000.00 1 46000.00 13468 82 \N 11883 +89627 2025-11-24 23:39:07.235552+00 2025-11-24 23:39:07.235566+00 f t 46000.00 1 46000.00 13471 82 \N 11885 +89628 2025-11-24 23:39:07.27142+00 2025-11-24 23:39:07.271433+00 f t 8000.00 1 8000.00 13471 85 \N 11885 +89629 2025-11-24 23:39:07.281584+00 2025-11-24 23:39:07.281597+00 f t 46000.00 1 46000.00 13471 82 \N 11886 +89630 2025-11-24 23:39:07.290741+00 2025-11-24 23:39:07.290754+00 f t 8000.00 1 8000.00 13471 85 \N 11886 +89631 2025-11-25 00:01:39.83747+00 2025-11-25 00:01:39.837482+00 f t 8000.00 1 8000.00 13472 85 \N 11887 +89632 2025-11-25 00:01:39.861838+00 2025-11-25 00:01:39.861848+00 f t 46000.00 1 46000.00 13472 82 \N 11887 +89633 2025-11-25 00:12:40.050355+00 2025-11-25 00:12:40.050367+00 f t 24000.00 1 24000.00 13473 163 \N 11888 +89634 2025-11-25 00:12:40.073594+00 2025-11-25 00:12:40.073603+00 f t 46000.00 1 46000.00 13473 82 \N 11888 +89638 2025-11-25 00:22:38.282701+00 2025-11-25 00:22:38.282711+00 f t 24000.00 1 24000.00 13475 163 \N 11890 +89639 2025-11-25 00:22:38.304544+00 2025-11-25 00:22:38.304554+00 f t 46000.00 1 46000.00 13475 82 \N 11890 +89640 2025-11-25 00:26:55.307156+00 2025-11-25 00:26:55.307168+00 f t 55000.00 1 55000.00 13478 84 \N 11893 +89645 2025-11-25 00:38:35.133352+00 2025-11-25 00:38:35.133361+00 f t 55000.00 1 55000.00 13480 84 \N 11894 +89673 2025-11-25 00:40:20.802552+00 2025-11-25 00:40:20.802563+00 f t 46000.00 1 46000.00 13481 82 \N 11895 +89674 2025-11-25 00:40:20.823832+00 2025-11-25 00:40:20.823841+00 f t 8000.00 1 8000.00 13481 85 \N 11895 +89675 2025-11-25 00:40:20.82891+00 2025-11-25 00:40:20.828917+00 f t 46000.00 1 46000.00 13481 82 \N 11896 +89676 2025-11-25 00:40:20.833173+00 2025-11-25 00:40:20.833179+00 f t 8000.00 1 8000.00 13481 85 \N 11896 +89721 2025-11-25 00:48:07.130182+00 2025-11-25 00:48:07.130195+00 f t 46000.00 1 46000.00 13482 82 \N 11897 +89722 2025-11-25 00:48:07.162821+00 2025-11-25 00:48:07.162834+00 f t 8000.00 1 8000.00 13482 85 \N 11897 +89723 2025-11-25 00:48:07.170033+00 2025-11-25 00:48:07.170044+00 f t 46000.00 1 46000.00 13482 82 \N 11898 +89724 2025-11-25 00:48:07.176724+00 2025-11-25 00:48:07.176735+00 f t 8000.00 1 8000.00 13482 85 \N 11898 +89725 2025-11-25 00:50:50.587241+00 2025-11-25 00:50:50.587253+00 f t 82500.00 1 82500.00 13483 84 \N 11899 +89738 2025-11-25 01:03:25.694717+00 2025-11-25 01:03:25.69473+00 f t 55000.00 1 55000.00 13485 84 \N 11900 +89747 2025-11-25 01:22:29.188104+00 2025-11-25 01:22:29.188117+00 f t 46000.00 1 46000.00 13487 82 \N 11902 +89748 2025-11-25 01:22:29.219361+00 2025-11-25 01:22:29.219372+00 f t 24000.00 1 24000.00 13487 88 \N 11902 +89749 2025-11-25 01:22:29.225839+00 2025-11-25 01:22:29.225852+00 f t 8000.00 1 8000.00 13487 85 \N 11902 +89756 2025-11-25 01:31:44.347278+00 2025-11-25 01:31:44.347287+00 f t 46000.00 1 46000.00 13488 82 \N 11903 +89757 2025-11-25 01:31:44.367692+00 2025-11-25 01:31:44.367701+00 f t 75000.00 1 75000.00 13488 142 \N 11903 +89763 2025-11-25 01:33:32.049193+00 2025-11-25 01:33:32.049201+00 f t 55000.00 1 55000.00 13489 84 \N 11904 +89764 2025-11-25 01:39:16.328089+00 2025-11-25 01:39:16.328101+00 f t 24000.00 1 24000.00 13490 163 \N 11905 +89765 2025-11-25 01:39:16.35648+00 2025-11-25 01:39:16.356492+00 f t 46000.00 1 46000.00 13490 82 \N 11905 +89766 2025-11-25 01:40:48.487391+00 2025-11-25 01:40:48.487405+00 f t 24000.00 1 24000.00 13491 88 \N 11906 +89767 2025-11-25 01:40:48.535373+00 2025-11-25 01:40:48.535382+00 f t 46000.00 1 46000.00 13491 82 \N 11906 +89782 2025-11-25 02:01:38.060639+00 2025-11-25 02:01:38.060653+00 f t 8000.00 1 8000.00 13495 85 \N 11910 +89783 2025-11-25 02:01:38.084588+00 2025-11-25 02:01:38.0846+00 f t 46000.00 1 46000.00 13495 82 \N 11910 +89813 2025-11-25 02:03:21.146144+00 2025-11-25 02:03:21.146157+00 f t 46000.00 1 46000.00 13496 82 \N 11911 +89814 2025-11-25 02:03:21.173521+00 2025-11-25 02:03:21.173533+00 f t 8000.00 1 8000.00 13496 85 \N 11911 +89815 2025-11-25 02:03:21.180063+00 2025-11-25 02:03:21.180076+00 f t 24000.00 1 24000.00 13496 88 \N 11911 +89816 2025-11-25 02:03:21.186455+00 2025-11-25 02:03:21.186465+00 f t 24000.00 1 24000.00 13496 163 \N 11911 +89817 2025-11-25 02:03:42.323697+00 2025-11-25 02:03:42.32371+00 f t 24000.00 1 24000.00 13497 86 \N 11913 +89818 2025-11-25 02:03:42.347089+00 2025-11-25 02:03:42.347103+00 f t 46000.00 1 46000.00 13497 82 \N 11913 +89822 2025-11-25 02:03:55.669572+00 2025-11-25 02:03:55.669583+00 f t 46000.00 1 46000.00 13493 82 \N 11912 +89823 2025-11-25 02:03:55.692469+00 2025-11-25 02:03:55.692478+00 f t 8000.00 1 8000.00 13493 85 \N 11912 +89824 2025-11-25 02:03:55.697421+00 2025-11-25 02:03:55.697428+00 f t 24000.00 1 24000.00 13493 163 \N 11912 +89864 2025-11-25 02:10:08.634253+00 2025-11-25 02:10:08.634263+00 f t 46000.00 1 46000.00 13499 82 \N 11915 +89865 2025-11-25 02:44:17.073186+00 2025-11-25 02:44:17.073196+00 f t 46000.00 1 46000.00 13365 82 \N 11794 +89877 2025-11-25 03:05:00.086228+00 2025-11-25 03:05:00.086241+00 f t 46000.00 1 46000.00 13502 82 \N 11917 +89878 2025-11-25 03:05:00.111732+00 2025-11-25 03:05:00.111745+00 f t 46000.00 1 46000.00 13502 82 \N 11918 +89908 2025-11-25 10:06:31.29975+00 2025-11-25 10:06:31.299759+00 f t 46000.00 1 46000.00 13507 82 \N 11919 +89909 2025-11-25 10:06:31.323364+00 2025-11-25 10:06:31.323377+00 f t 33000.00 1 33000.00 13507 123 \N 11919 +89910 2025-11-25 10:39:18.746058+00 2025-11-25 10:39:18.746066+00 f t 55000.00 1 55000.00 13508 84 \N 11920 +89937 2025-11-25 10:58:05.157741+00 2025-11-25 10:58:05.157753+00 f t 55000.00 1 55000.00 13509 84 \N 11921 +89938 2025-11-25 11:48:53.029231+00 2025-11-25 11:48:53.029239+00 f t 55000.00 1 55000.00 13512 84 \N 11923 +89962 2025-11-25 12:07:48.723799+00 2025-11-25 12:07:48.723808+00 f t 46000.00 1 46000.00 13514 82 \N 467 +89963 2025-11-25 12:27:50.425496+00 2025-11-25 12:27:50.425504+00 f t 46000.00 1 46000.00 13492 82 \N 11907 +89964 2025-11-25 12:27:50.448144+00 2025-11-25 12:27:50.448156+00 f t 24000.00 1 24000.00 13492 86 \N 11907 +89965 2025-11-25 12:27:50.454515+00 2025-11-25 12:27:50.454525+00 f t 8000.00 1 8000.00 13492 85 \N 11907 +89973 2025-11-25 12:52:32.099789+00 2025-11-25 12:52:32.099798+00 f t 46000.00 1 46000.00 13521 82 \N 11927 +89974 2025-11-25 12:52:32.121134+00 2025-11-25 12:52:32.121144+00 f t 8000.00 1 8000.00 13521 85 \N 11927 +89986 2025-11-25 12:55:59.967565+00 2025-11-25 12:55:59.967576+00 f t 46000.00 1 46000.00 13523 82 \N 11928 +89987 2025-11-25 12:56:00.010963+00 2025-11-25 12:56:00.010974+00 f t 7700.00 1 7700.00 13523 93 \N 11928 +89988 2025-11-25 12:56:00.01774+00 2025-11-25 12:56:00.017751+00 f t 13200.00 1 13200.00 13523 146 \N 11928 +89989 2025-11-25 12:56:00.024565+00 2025-11-25 12:56:00.024577+00 f t 32500.00 1 32500.00 13523 112 \N 11928 +89990 2025-11-25 12:57:12.984942+00 2025-11-25 12:57:12.984951+00 f t 32500.00 1 32500.00 13524 112 \N 11929 +90005 2025-11-25 13:15:44.114393+00 2025-11-25 13:15:44.114402+00 f t 55000.00 1 55000.00 13527 84 \N 11930 +90014 2025-11-25 13:41:56.58463+00 2025-11-25 13:41:56.58464+00 f t 46000.00 1 46000.00 13525 82 \N 323 +90015 2025-11-25 13:42:58.397422+00 2025-11-25 13:42:58.39746+00 f t 46000.00 1 46000.00 13498 82 \N 11914 +90016 2025-11-25 13:42:58.543571+00 2025-11-25 13:42:58.54396+00 f t 8000.00 1 8000.00 13498 85 \N 11914 +90017 2025-11-25 13:42:58.551102+00 2025-11-25 13:42:58.55111+00 f t 24000.00 1 24000.00 13498 88 \N 11914 +90018 2025-11-25 13:44:48.979219+00 2025-11-25 13:44:48.97923+00 f t 46000.00 1 46000.00 13522 82 \N 540 +90021 2025-11-25 13:51:55.511321+00 2025-11-25 13:51:55.511551+00 f t 46000.00 1 46000.00 13531 82 \N 11933 +90023 2025-11-25 13:55:07.485087+00 2025-11-25 13:55:07.485454+00 f t 55000.00 1 55000.00 13519 84 \N 328 +90024 2025-11-25 13:55:07.580022+00 2025-11-25 13:55:07.580038+00 f t 46000.00 1 46000.00 13519 82 \N 328 +90026 2025-11-25 14:06:43.133637+00 2025-11-25 14:06:43.13452+00 f t 34000.00 1 34000.00 13532 110 \N 11934 +90027 2025-11-25 14:09:46.690341+00 2025-11-25 14:09:46.690402+00 f t 55000.00 1 55000.00 13533 84 \N 11935 +90028 2025-11-25 14:10:30.667563+00 2025-11-25 14:10:30.66848+00 f t 46000.00 1 46000.00 13528 82 \N 10612 +90039 2025-11-25 14:14:45.649312+00 2025-11-25 14:14:45.649711+00 f t 34000.00 1 34000.00 13536 110 \N 11938 +90048 2025-11-25 14:26:37.222562+00 2025-11-25 14:26:37.222574+00 f t 33000.00 1 33000.00 13537 123 \N 11939 +90049 2025-11-25 14:26:37.25148+00 2025-11-25 14:26:37.251489+00 f t 46000.00 1 46000.00 13537 82 \N 11939 +90059 2025-11-25 14:44:00.830943+00 2025-11-25 14:44:00.830951+00 f t 46000.00 1 46000.00 13540 82 \N 11940 +90060 2025-11-25 14:44:00.859117+00 2025-11-25 14:44:00.859126+00 f t 69000.00 1 69000.00 13540 141 \N 11940 +90061 2025-11-25 14:47:47.157351+00 2025-11-25 14:47:47.157359+00 f t 24000.00 1 24000.00 13541 163 \N 11941 +90062 2025-11-25 14:47:47.17987+00 2025-11-25 14:47:47.179879+00 f t 46000.00 1 46000.00 13541 82 \N 11941 +90064 2025-11-25 14:53:32.925915+00 2025-11-25 14:53:32.925923+00 f t 55000.00 1 55000.00 13542 84 \N 11942 +90069 2025-11-25 15:17:47.958308+00 2025-11-25 15:17:47.958317+00 f t 55000.00 1 55000.00 13543 84 \N 11943 +90074 2025-11-25 15:28:19.486092+00 2025-11-25 15:28:19.486101+00 f t 24000.00 1 24000.00 13545 86 \N 11945 +90075 2025-11-25 15:28:19.50814+00 2025-11-25 15:28:19.508151+00 f t 46000.00 1 46000.00 13545 82 \N 11945 +90076 2025-11-25 15:28:39.942754+00 2025-11-25 15:28:39.942767+00 f t 23000.00 1 23000.00 13544 172 \N 11944 +90079 2025-11-25 15:33:36.429965+00 2025-11-25 15:33:36.429978+00 f t 8000.00 1 8000.00 13547 85 \N 11948 +90080 2025-11-25 15:33:36.459658+00 2025-11-25 15:33:36.459671+00 f t 46000.00 1 46000.00 13547 82 \N 11948 +90088 2025-11-25 15:36:00.273832+00 2025-11-25 15:36:00.273844+00 f t 46000.00 1 46000.00 13548 82 \N 11949 +90089 2025-11-25 15:49:00.361424+00 2025-11-25 15:49:00.361435+00 f t 8000.00 1 8000.00 13549 85 \N 11950 +90090 2025-11-25 15:49:00.384838+00 2025-11-25 15:49:00.384848+00 f t 46000.00 1 46000.00 13549 82 \N 11950 +90092 2025-11-25 15:55:16.545678+00 2025-11-25 15:55:16.545686+00 f t 80000.00 1 80000.00 13550 173 \N 11951 +90101 2025-11-25 16:02:25.098614+00 2025-11-25 16:02:25.098625+00 f t 33000.00 1 33000.00 13552 122 \N 11952 +90102 2025-11-25 16:02:25.121166+00 2025-11-25 16:02:25.12118+00 f t 46000.00 1 46000.00 13552 82 \N 11952 +90103 2025-11-25 16:17:21.491999+00 2025-11-25 16:17:21.492008+00 f t 13200.00 1 13200.00 13551 146 \N 10612 +90104 2025-11-25 16:17:21.513575+00 2025-11-25 16:17:21.513583+00 f t 20500.00 1 20500.00 13551 109 \N 10612 +90106 2025-11-25 16:24:10.614919+00 2025-11-25 16:24:10.614932+00 f t 55000.00 1 55000.00 13554 84 \N 11953 +90113 2025-11-25 16:25:44.552081+00 2025-11-25 16:25:44.552091+00 f t 46000.00 1 46000.00 13555 82 \N 11954 +90114 2025-11-25 16:25:44.579797+00 2025-11-25 16:25:44.579806+00 f t 33000.00 1 33000.00 13555 123 \N 11954 +90117 2025-11-25 16:30:11.861044+00 2025-11-25 16:30:11.861078+00 f t 8000.00 1 8000.00 13556 85 \N 11955 +90118 2025-11-25 16:30:11.875829+00 2025-11-25 16:30:11.875839+00 f t 46000.00 1 46000.00 13556 82 \N 11955 +90119 2025-11-25 16:31:09.705742+00 2025-11-25 16:31:09.705752+00 f t 55000.00 1 55000.00 13557 84 \N 11956 +90140 2025-11-25 16:36:43.072491+00 2025-11-25 16:36:43.0725+00 f t 55000.00 1 55000.00 13560 84 \N 11959 +90143 2025-11-25 16:38:30.719584+00 2025-11-25 16:38:30.719592+00 f t 24000.00 1 24000.00 13561 87 \N 11960 +90144 2025-11-25 16:38:30.743687+00 2025-11-25 16:38:30.743696+00 f t 46000.00 1 46000.00 13561 82 \N 11960 +90153 2025-11-25 16:45:40.519667+00 2025-11-25 16:45:40.519676+00 f t 7700.00 1 7700.00 13534 93 \N 11936 +90154 2025-11-25 16:45:40.555192+00 2025-11-25 16:45:40.555201+00 f t 46000.00 1 46000.00 13534 82 \N 11936 +90156 2025-11-25 16:57:05.106478+00 2025-11-25 16:57:05.106495+00 f t 13200.00 1 13200.00 13566 146 \N 11936 +90181 2025-11-25 17:54:08.93182+00 2025-11-25 17:54:08.931829+00 f t 46000.00 1 46000.00 13572 82 \N 11966 +90182 2025-11-25 17:54:09.089285+00 2025-11-25 17:54:09.08987+00 f t 8000.00 1 8000.00 13572 85 \N 11966 +90183 2025-11-25 17:54:09.367926+00 2025-11-25 17:54:09.367954+00 f t 8000.00 1 8000.00 13572 85 \N 11967 +90184 2025-11-25 17:54:09.375083+00 2025-11-25 17:54:09.375094+00 f t 46000.00 1 46000.00 13572 82 \N 11967 +90185 2025-11-25 18:00:32.741009+00 2025-11-25 18:00:32.741022+00 f t 46000.00 1 46000.00 13573 82 \N 11968 +90188 2025-11-25 18:05:50.464569+00 2025-11-25 18:05:50.464578+00 f t 31500.00 1 31500.00 13574 111 \N 11969 +90191 2025-11-25 18:27:15.193234+00 2025-11-25 18:27:15.19355+00 f t 55000.00 1 55000.00 13577 84 \N 11970 +90192 2025-11-25 18:27:15.289232+00 2025-11-25 18:27:15.289625+00 f t 87000.00 1 87000.00 13577 165 \N 11970 +90193 2025-11-25 18:39:52.644818+00 2025-11-25 18:39:52.644826+00 f t 120000.00 1 120000.00 13579 103 \N 11267 +90199 2025-11-25 18:44:30.54248+00 2025-11-25 18:44:30.542489+00 f t 78000.00 1 78000.00 13567 106 \N 11963 +90202 2025-11-25 18:46:22.600092+00 2025-11-25 18:46:22.600103+00 f t 46000.00 1 46000.00 13585 82 \N 11972 +90210 2025-11-25 19:06:03.078059+00 2025-11-25 19:06:03.078074+00 f t 46000.00 1 46000.00 13587 82 \N 467 +90225 2025-11-25 19:09:34.13404+00 2025-11-25 19:09:34.134049+00 f t 46000.00 1 46000.00 13589 82 \N 11974 +90226 2025-11-25 19:09:34.154282+00 2025-11-25 19:09:34.154292+00 f t 8000.00 1 8000.00 13589 85 \N 11974 +90227 2025-11-25 19:09:34.159401+00 2025-11-25 19:09:34.159408+00 f t 24000.00 1 24000.00 13589 86 \N 11974 +90229 2025-11-25 19:13:26.442001+00 2025-11-25 19:13:26.442009+00 f t 80000.00 1 80000.00 13590 173 \N 11975 +90230 2025-11-25 19:45:40.987284+00 2025-11-25 19:45:40.987294+00 f t 55000.00 1 55000.00 13592 84 \N 10572 +90239 2025-11-25 20:16:40.673646+00 2025-11-25 20:16:40.673654+00 f t 55000.00 1 55000.00 13593 84 \N 11976 +90240 2025-11-25 20:19:07.538392+00 2025-11-25 20:19:07.538405+00 f t 13200.00 1 13200.00 13595 146 \N 6190 +90241 2025-11-25 20:52:37.318654+00 2025-11-25 20:52:37.318662+00 f t 55000.00 1 55000.00 13597 84 \N 11979 +90263 2025-11-25 20:59:16.871999+00 2025-11-25 20:59:16.872007+00 f t 46000.00 1 46000.00 13598 82 \N 11963 +90264 2025-11-25 20:59:16.892947+00 2025-11-25 20:59:16.892959+00 f t 7700.00 1 7700.00 13598 93 \N 11963 +90265 2025-11-25 20:59:16.897652+00 2025-11-25 20:59:16.897658+00 f t 23000.00 1 23000.00 13598 172 \N 11963 +90266 2025-11-25 21:00:35.338658+00 2025-11-25 21:00:35.338666+00 f t 55000.00 1 55000.00 13599 84 \N 11980 +90268 2025-11-25 21:00:51.706308+00 2025-11-25 21:00:51.706317+00 f t 31500.00 1 31500.00 13600 111 \N 11963 +90279 2025-11-25 21:11:46.883619+00 2025-11-25 21:11:46.883629+00 f t 46000.00 1 46000.00 13602 82 \N 11982 +90280 2025-11-25 21:11:46.905615+00 2025-11-25 21:11:46.905625+00 f t 24000.00 1 24000.00 13602 163 \N 11982 +90281 2025-11-25 21:11:46.910237+00 2025-11-25 21:11:46.910243+00 f t 8000.00 1 8000.00 13602 85 \N 11982 +90311 2025-11-25 21:20:11.270725+00 2025-11-25 21:20:11.270738+00 f t 13200.00 1 13200.00 13603 146 \N 11963 +90316 2025-11-25 21:20:50.383791+00 2025-11-25 21:20:50.3838+00 f t 46000.00 1 46000.00 13558 82 \N 11957 +90317 2025-11-25 21:20:50.403606+00 2025-11-25 21:20:50.403614+00 f t 46000.00 1 46000.00 13558 82 \N 11958 +90318 2025-11-25 21:20:50.411949+00 2025-11-25 21:20:50.411957+00 f t 8000.00 1 8000.00 13558 85 \N 11957 +90319 2025-11-25 21:20:50.416348+00 2025-11-25 21:20:50.416355+00 f t 24000.00 1 24000.00 13558 86 \N 11958 +90320 2025-11-25 21:20:50.420613+00 2025-11-25 21:20:50.420619+00 f t 24000.00 1 24000.00 13558 86 \N 11957 +90321 2025-11-25 21:23:52.297197+00 2025-11-25 21:23:52.297206+00 f t 30000.00 1 30000.00 13605 83 \N 9637 +90322 2025-11-25 21:38:13.785011+00 2025-11-25 21:38:13.78502+00 f t 46000.00 1 46000.00 13606 82 \N 11983 +90323 2025-11-25 21:39:20.198493+00 2025-11-25 21:39:20.198501+00 f t 88000.00 1 88000.00 13607 167 \N 11984 +90324 2025-11-25 22:00:03.641867+00 2025-11-25 22:00:03.641881+00 f t 78000.00 1 78000.00 13610 106 \N 11985 +90331 2025-11-25 22:20:35.826061+00 2025-11-25 22:20:35.82607+00 f t 46000.00 1 46000.00 13611 82 \N 11986 +90332 2025-11-25 22:36:48.735046+00 2025-11-25 22:36:48.735056+00 f t 75000.00 1 75000.00 13613 142 \N 11988 +90333 2025-11-25 22:36:48.762242+00 2025-11-25 22:36:48.762251+00 f t 46000.00 1 46000.00 13613 82 \N 11988 +90364 2025-11-25 22:48:03.960097+00 2025-11-25 22:48:03.960106+00 f t 55000.00 1 55000.00 13616 84 \N 11991 +90369 2025-11-25 22:49:30.983758+00 2025-11-25 22:49:30.983767+00 f t 78000.00 1 78000.00 13615 106 \N 11959 +90372 2025-11-25 23:10:57.659991+00 2025-11-25 23:10:57.660002+00 f t 55000.00 1 55000.00 13618 84 \N 11993 +90383 2025-11-25 23:15:56.116506+00 2025-11-25 23:15:56.116515+00 f t 55000.00 1 55000.00 13617 84 \N 11992 +90388 2025-11-25 23:46:16.555914+00 2025-11-25 23:46:16.555922+00 f t 46000.00 1 46000.00 13620 82 \N 11976 +90390 2025-11-26 00:21:37.719176+00 2025-11-26 00:21:37.719185+00 f t 46000.00 1 46000.00 13621 82 \N 8460 +90391 2025-11-26 00:27:02.770413+00 2025-11-26 00:27:02.770424+00 f t 8000.00 1 8000.00 13622 85 \N 11995 +90392 2025-11-26 00:27:02.801389+00 2025-11-26 00:27:02.801402+00 f t 46000.00 1 46000.00 13622 82 \N 11995 +90394 2025-11-26 00:35:48.330707+00 2025-11-26 00:35:48.330716+00 f t 55000.00 1 55000.00 13623 84 \N 11996 +90395 2025-11-26 00:40:08.127708+00 2025-11-26 00:40:08.127721+00 f t 8000.00 1 8000.00 13625 85 \N 11997 +90396 2025-11-26 00:40:08.155913+00 2025-11-26 00:40:08.155927+00 f t 46000.00 1 46000.00 13625 82 \N 11997 +90397 2025-11-26 01:07:21.128554+00 2025-11-26 01:07:21.128563+00 f t 24000.00 1 24000.00 13629 88 \N 11998 +90398 2025-11-26 01:07:21.149353+00 2025-11-26 01:07:21.149367+00 f t 46000.00 1 46000.00 13629 82 \N 11998 +90399 2025-11-26 01:30:33.477154+00 2025-11-26 01:30:33.477164+00 f t 8000.00 1 8000.00 13633 85 \N 12000 +90400 2025-11-26 01:30:33.499743+00 2025-11-26 01:30:33.499757+00 f t 46000.00 1 46000.00 13633 82 \N 12000 +90411 2025-11-26 02:30:38.368877+00 2025-11-26 02:30:38.368886+00 f t 24000.00 1 24000.00 13635 86 \N 12001 +90412 2025-11-26 02:30:38.39267+00 2025-11-26 02:30:38.392679+00 f t 46000.00 1 46000.00 13635 82 \N 12002 +90413 2025-11-26 02:30:38.397456+00 2025-11-26 02:30:38.397462+00 f t 8000.00 1 8000.00 13635 85 \N 12002 +90414 2025-11-26 02:30:38.401929+00 2025-11-26 02:30:38.401935+00 f t 46000.00 1 46000.00 13635 82 \N 12001 +90417 2025-11-26 03:35:05.309864+00 2025-11-26 03:35:05.309878+00 f t 69000.00 1 69000.00 13636 82 \N 12003 +90418 2025-11-26 03:41:21.308055+00 2025-11-26 03:41:21.308064+00 f t 24000.00 1 24000.00 13637 86 \N 12004 +90419 2025-11-26 03:41:21.328306+00 2025-11-26 03:41:21.328315+00 f t 46000.00 1 46000.00 13637 82 \N 12004 +90420 2025-11-26 04:28:04.84619+00 2025-11-26 04:28:04.8462+00 f t 55000.00 1 55000.00 13638 84 \N 12005 +\. + + +-- +-- Data for Name: productos_cartpetreason; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.productos_cartpetreason (id, created_at, updated_at, reason, cart_id, pet_id, active, deleted, user_id) FROM stdin; +1 2025-11-22 01:27:16.175986+00 2025-11-22 01:27:16.175995+00 \N 13188 11643 t f \N +30 2025-11-22 14:17:27.51761+00 2025-11-22 14:17:27.517619+00 \N 13219 11673 t f \N +4 2025-11-22 02:18:24.490958+00 2025-11-22 02:18:24.490968+00 \N 13190 11645 t f \N +25 2025-11-22 13:54:35.242282+00 2025-11-22 13:54:35.242292+00 \N 13214 11668 t f \N +102 2025-11-23 18:52:52.642887+00 2025-11-23 18:52:52.642896+00 \N 13310 11744 t f \N +92 2025-11-23 17:01:00.772001+00 2025-11-23 17:01:00.772011+00 \N 13295 11735 t f \N +32 2025-11-22 16:15:08.957241+00 2025-11-22 16:15:08.957254+00 \N 13224 11676 t f \N +33 2025-11-22 16:17:27.996637+00 2025-11-22 16:17:27.996646+00 \N 13225 11677 t f \N +53 2025-11-22 22:53:17.636685+00 2025-11-22 22:53:17.636694+00 \N 13250 11699 t f \N +31 2025-11-22 14:41:47.293211+00 2025-11-22 14:41:47.293219+00 \N 13220 11674 t f \N +76 2025-11-23 13:56:14.998956+00 2025-11-23 13:56:14.998967+00 \N 13283 11724 t f \N +54 2025-11-22 23:30:39.147504+00 2025-11-22 23:30:39.147514+00 \N 13251 11700 t f \N +8 2025-11-22 02:22:02.221982+00 2025-11-22 02:22:02.221993+00 \N 13192 11647 t f \N +55 2025-11-22 23:49:55.87483+00 2025-11-22 23:49:55.874843+00 \N 13252 11701 t f \N +56 2025-11-23 01:40:26.508709+00 2025-11-23 01:40:26.508718+00 \N 13256 11703 t f \N +26 2025-11-22 13:58:50.932382+00 2025-11-22 13:58:50.932388+00 \N 13215 11669 t f \N +139 2025-11-24 02:11:56.223384+00 2025-11-24 02:11:56.223392+00 \N 13345 11776 t f \N +9 2025-11-22 02:22:03.514498+00 2025-11-22 02:22:03.514505+00 \N 13191 11648 t f \N +77 2025-11-23 13:58:02.279647+00 2025-11-23 13:58:02.279659+00 \N 13283 11725 t f \N +68 2025-11-23 10:31:14.42879+00 2025-11-23 10:31:14.428797+00 \N 13271 11716 t f \N +78 2025-11-23 14:07:41.488892+00 2025-11-23 14:07:41.4889+00 \N 13284 11726 t f \N +69 2025-11-23 11:31:03.856682+00 2025-11-23 11:31:03.856691+00 \N 13273 11717 t f \N +34 2025-11-22 16:38:19.602131+00 2025-11-22 16:38:19.60214+00 \N 13229 11679 t f \N +35 2025-11-22 16:42:42.757392+00 2025-11-22 16:42:42.757399+00 \N 13223 11665 t f \N +36 2025-11-22 16:56:22.414777+00 2025-11-22 16:56:22.414788+00 \N 13230 11680 t f \N +10 2025-11-22 02:24:10.513031+00 2025-11-22 02:24:10.513039+00 \N 13193 11649 t f \N +11 2025-11-22 03:44:31.458268+00 2025-11-22 03:44:31.458275+00 \N 13194 11650 t f \N +37 2025-11-22 17:05:27.733176+00 2025-11-22 17:05:27.733186+00 \N 13231 11681 t f \N +12 2025-11-22 03:58:10.088383+00 2025-11-22 03:58:10.088394+00 \N 13195 11652 t f \N +13 2025-11-22 03:59:28.791618+00 2025-11-22 03:59:28.791626+00 \N 13196 11653 t f \N +70 2025-11-23 12:08:25.885476+00 2025-11-23 12:08:25.885486+00 \N 13274 11718 t f \N +58 2025-11-23 02:13:18.860422+00 2025-11-23 02:13:18.860433+00 \N 13257 11705 t f \N +14 2025-11-22 04:03:42.879669+00 2025-11-22 04:03:42.879676+00 \N 13197 11655 t f \N +38 2025-11-22 17:08:23.472065+00 2025-11-22 17:08:23.472073+00 \N 13232 11682 t f \N +39 2025-11-22 17:21:08.559264+00 2025-11-22 17:21:08.559272+00 \N 13233 11683 t f \N +40 2025-11-22 17:46:41.295871+00 2025-11-22 17:46:41.295883+00 \N 13235 11684 t f \N +18 2025-11-22 06:27:44.135583+00 2025-11-22 06:27:44.135593+00 \N 13201 11658 t f \N +19 2025-11-22 10:50:44.420817+00 2025-11-22 10:50:44.420825+00 \N 13204 11659 t f \N +41 2025-11-22 18:15:23.005423+00 2025-11-22 18:15:23.00543+00 \N 13236 11685 t f \N +20 2025-11-22 11:19:32.113125+00 2025-11-22 11:19:32.113132+00 \N 13207 11661 t f \N +21 2025-11-22 11:38:46.108436+00 2025-11-22 11:38:46.108443+00 \N 13208 11662 t f \N +22 2025-11-22 12:43:29.496172+00 2025-11-22 12:43:29.496184+00 \N 13209 11663 t f \N +23 2025-11-22 13:34:33.647086+00 2025-11-22 13:34:33.647094+00 \N 13211 11665 t f \N +42 2025-11-22 18:29:03.298001+00 2025-11-22 18:29:03.298021+00 \N 13237 11596 t f \N +24 2025-11-22 13:39:21.993903+00 2025-11-22 13:39:21.993911+00 \N 13212 11666 t f \N +43 2025-11-22 18:36:26.023727+00 2025-11-22 18:36:26.02374+00 \N 13239 11687 t f \N +45 2025-11-22 19:23:46.814222+00 2025-11-22 19:23:46.81423+00 \N 13242 11691 t f \N +46 2025-11-22 21:08:08.724301+00 2025-11-22 21:08:08.724311+00 \N 13244 11694 t f \N +72 2025-11-23 13:31:59.373815+00 2025-11-23 13:31:59.373822+00 \N 13279 11720 t f \N +27 2025-11-22 14:05:31.322715+00 2025-11-22 14:05:31.322727+00 \N 13216 11670 t f \N +73 2025-11-23 13:39:22.26068+00 2025-11-23 13:39:22.260687+00 \N 13280 11721 t f \N +29 2025-11-22 14:13:49.756431+00 2025-11-22 14:13:49.756437+00 \N 13218 11672 t f \N +28 2025-11-22 14:12:54.843243+00 2025-11-22 14:12:54.84325+00 \N 13218 11671 t f \N +74 2025-11-23 13:42:42.351958+00 2025-11-23 13:42:42.351966+00 \N 13281 11722 t f \N +49 2025-11-22 21:25:08.813669+00 2025-11-22 21:25:08.813681+00 \N 13245 11695 t f \N +75 2025-11-23 13:51:04.004265+00 2025-11-23 13:51:04.004273+00 \N 13282 11723 t f \N +50 2025-11-22 21:25:53.425059+00 2025-11-22 21:25:53.42507+00 \N 13246 11696 t f \N +51 2025-11-22 22:02:35.671009+00 2025-11-22 22:02:35.671017+00 \N 13247 11697 t f \N +60 2025-11-23 03:19:03.137938+00 2025-11-23 03:19:03.137949+00 \N 13260 11707 t f \N +52 2025-11-22 22:06:21.860004+00 2025-11-22 22:06:21.860013+00 \N 13248 11698 t f \N +61 2025-11-23 06:25:15.107544+00 2025-11-23 06:25:15.107553+00 \N 13263 11709 t f \N +62 2025-11-23 06:49:02.911345+00 2025-11-23 06:49:02.911359+00 \N 13265 11710 t f \N +93 2025-11-23 17:03:12.921328+00 2025-11-23 17:03:12.92134+00 \N 13296 11736 t f \N +79 2025-11-23 14:43:44.66416+00 2025-11-23 14:43:44.664167+00 \N 13285 11727 t f \N +64 2025-11-23 08:08:52.371009+00 2025-11-23 08:08:52.371016+00 \N 13267 11712 t f \N +65 2025-11-23 10:15:33.826948+00 2025-11-23 10:15:33.826955+00 \N 13268 11713 t f \N +66 2025-11-23 10:20:38.500749+00 2025-11-23 10:20:38.500757+00 \N 13269 11714 t f \N +94 2025-11-23 17:13:38.711841+00 2025-11-23 17:13:38.711854+00 \N 13298 11737 t f \N +81 2025-11-23 14:45:47.313347+00 2025-11-23 14:45:47.313354+00 \N 13287 11729 t f \N +84 2025-11-23 14:47:50.255158+00 2025-11-23 14:47:50.255182+00 \N 13286 11728 t f \N +85 2025-11-23 14:50:49.988717+00 2025-11-23 14:50:49.988727+00 \N 13288 11730 t f \N +95 2025-11-23 18:11:46.536395+00 2025-11-23 18:11:46.536403+00 \N 13300 11738 t f \N +98 2025-11-23 18:44:55.689988+00 2025-11-23 18:44:55.690001+00 \N 13304 8096 t f \N +96 2025-11-23 18:34:32.612289+00 2025-11-23 18:34:32.612297+00 \N 13303 8096 t f \N +87 2025-11-23 15:14:38.656904+00 2025-11-23 15:14:38.656912+00 \N 13290 11731 t f \N +88 2025-11-23 15:54:08.691042+00 2025-11-23 15:54:08.69105+00 \N 13291 11732 t f \N +89 2025-11-23 16:11:18.167251+00 2025-11-23 16:11:18.167259+00 \N 13292 11733 t f \N +90 2025-11-23 16:21:04.118677+00 2025-11-23 16:21:04.118688+00 \N 13277 11719 t f \N +91 2025-11-23 17:00:40.536675+00 2025-11-23 17:00:40.536689+00 \N 13294 11734 t f \N +99 2025-11-23 18:47:48.030908+00 2025-11-23 18:47:48.030916+00 \N 13307 11741 t f \N +100 2025-11-23 18:50:31.266007+00 2025-11-23 18:50:31.266015+00 \N 13308 11742 t f \N +101 2025-11-23 18:52:01.174085+00 2025-11-23 18:52:01.174098+00 \N 13309 11743 t f \N +111 2025-11-23 19:20:41.004119+00 2025-11-23 19:20:41.004127+00 \N 13312 11746 t f \N +113 2025-11-23 19:26:03.674012+00 2025-11-23 19:26:03.674021+00 \N 13313 11747 t f \N +115 2025-11-23 19:37:00.17558+00 2025-11-23 19:37:00.175593+00 \N 13114 11586 t f \N +109 2025-11-23 19:19:18.503061+00 2025-11-23 19:19:18.503068+00 \N 13114 11585 t f \N +114 2025-11-23 19:35:35.017747+00 2025-11-23 19:35:35.017756+00 \N 13314 11749 t f \N +112 2025-11-23 19:22:53.451388+00 2025-11-23 19:22:53.451395+00 \N 13114 11587 t f \N +116 2025-11-23 19:39:59.329429+00 2025-11-23 19:39:59.329437+00 \N 13315 11750 t f \N +117 2025-11-23 19:46:23.207703+00 2025-11-23 19:46:23.207714+00 \N 13316 11751 t f \N +118 2025-11-23 19:47:53.053738+00 2025-11-23 19:47:53.053745+00 \N 13317 11752 t f \N +120 2025-11-23 20:11:17.903716+00 2025-11-23 20:11:17.903729+00 \N 13319 11754 t f \N +119 2025-11-23 20:09:20.185404+00 2025-11-23 20:09:20.185414+00 \N 13318 11753 t f \N +122 2025-11-23 20:13:22.262123+00 2025-11-23 20:13:22.262135+00 \N 13320 11755 t f \N +123 2025-11-23 20:28:47.577526+00 2025-11-23 20:28:47.577537+00 \N 13322 3954 t f \N +124 2025-11-23 20:34:22.066359+00 2025-11-23 20:34:22.066368+00 \N 13323 11757 t f \N +140 2025-11-24 02:12:02.414797+00 2025-11-24 02:12:02.414812+00 \N 13346 11777 t f \N +142 2025-11-24 02:57:31.262536+00 2025-11-24 02:57:31.262548+00 \N 13347 11778 t f \N +143 2025-11-24 03:38:41.872238+00 2025-11-24 03:38:41.872245+00 \N 13348 11779 t f \N +144 2025-11-24 03:43:29.093582+00 2025-11-24 03:43:29.093595+00 \N 13349 11780 t f \N +200 2025-11-24 15:31:25.320809+00 2025-11-24 15:31:25.320817+00 \N 13413 11837 t f \N +125 2025-11-23 20:38:26.817048+00 2025-11-23 20:38:26.817061+00 \N 13324 11758 t f \N +145 2025-11-24 04:06:03.929558+00 2025-11-24 04:06:03.929573+00 \N 13351 11781 t f \N +127 2025-11-23 20:53:52.281255+00 2025-11-23 20:53:52.281264+00 \N 13326 11759 t f \N +146 2025-11-24 04:43:06.861534+00 2025-11-24 04:43:06.861542+00 \N 13353 11782 t f \N +128 2025-11-23 20:59:21.210002+00 2025-11-23 20:59:21.21001+00 \N 13327 11760 t f \N +196 2025-11-24 14:52:06.926524+00 2025-11-24 14:52:06.926532+00 \N 13409 11832 t f \N +147 2025-11-24 05:07:11.558877+00 2025-11-24 05:07:11.558885+00 \N 13354 11783 t f \N +129 2025-11-23 21:21:25.278722+00 2025-11-23 21:21:25.278728+00 \N 13328 11761 t f \N +148 2025-11-24 05:16:52.334186+00 2025-11-24 05:16:52.334195+00 \N 13355 11784 t f \N +149 2025-11-24 05:21:02.713487+00 2025-11-24 05:21:02.713496+00 \N 13356 11785 t f \N +195 2025-11-24 14:51:24.589054+00 2025-11-24 14:51:24.589062+00 \N 13409 11831 t f \N +167 2025-11-24 11:47:52.049233+00 2025-11-24 11:47:52.049245+00 \N 13377 11804 t f \N +168 2025-11-24 11:48:22.212375+00 2025-11-24 11:48:22.212382+00 \N 13377 11805 t f \N +169 2025-11-24 12:02:25.983777+00 2025-11-24 12:02:25.983789+00 \N 13378 11806 t f \N +170 2025-11-24 12:08:21.426106+00 2025-11-24 12:08:21.426113+00 \N 13380 11807 t f \N +197 2025-11-24 15:00:08.934697+00 2025-11-24 15:00:08.934711+00 \N 13410 11833 t f \N +150 2025-11-24 05:40:49.487165+00 2025-11-24 05:40:49.487173+00 \N 13357 11786 t f \N +151 2025-11-24 05:46:22.649857+00 2025-11-24 05:46:22.64987+00 \N 13358 11787 t f \N +130 2025-11-23 22:23:26.465241+00 2025-11-23 22:23:26.465253+00 \N 13330 11762 t f \N +132 2025-11-23 22:38:55.078368+00 2025-11-23 22:38:55.078377+00 \N 13332 11766 t f \N +152 2025-11-24 05:48:26.453798+00 2025-11-24 05:48:26.453807+00 \N 13359 11788 t f \N +133 2025-11-23 23:18:25.073878+00 2025-11-23 23:18:25.073887+00 \N 13334 11768 t f \N +134 2025-11-24 00:07:47.410818+00 2025-11-24 00:07:47.410825+00 \N 13336 11770 t f \N +154 2025-11-24 06:29:20.473002+00 2025-11-24 06:29:20.473008+00 \N 13360 11789 t f \N +135 2025-11-24 00:57:58.939095+00 2025-11-24 00:57:58.939104+00 \N 13338 11772 t f \N +156 2025-11-24 09:05:05.684699+00 2025-11-24 09:05:05.684933+00 \N 13363 11792 t f \N +201 2025-11-24 15:39:47.503726+00 2025-11-24 15:39:47.503734+00 \N 13416 11838 t f \N +136 2025-11-24 01:04:42.806278+00 2025-11-24 01:04:42.806285+00 \N 13339 11773 t f \N +137 2025-11-24 01:27:21.698334+00 2025-11-24 01:27:21.698342+00 \N 13340 11774 t f \N +202 2025-11-24 15:40:04.383013+00 2025-11-24 15:40:04.383027+00 \N 13415 11839 t f \N +219 2025-11-24 20:42:31.297978+00 2025-11-24 20:42:31.297989+00 \N 13438 11861 t f \N +157 2025-11-24 09:40:43.97676+00 2025-11-24 09:40:43.976769+00 \N 13364 11793 t f \N +138 2025-11-24 01:47:40.628984+00 2025-11-24 01:47:40.628993+00 \N 13342 11775 t f \N +189 2025-11-24 14:21:16.159964+00 2025-11-24 14:21:16.159976+00 \N 13401 11824 t f \N +181 2025-11-24 13:36:32.544076+00 2025-11-24 13:36:32.544082+00 \N 13392 11819 t f \N +172 2025-11-24 12:19:29.330898+00 2025-11-24 12:19:29.33091+00 \N 13382 11810 t f \N +171 2025-11-24 12:18:00.207896+00 2025-11-24 12:18:00.207906+00 \N 13381 11809 t f \N +173 2025-11-24 12:24:10.020579+00 2025-11-24 12:24:10.020588+00 \N 13384 11811 t f \N +159 2025-11-24 09:48:56.657577+00 2025-11-24 09:48:56.657585+00 \N 13366 11795 t f \N +190 2025-11-24 14:24:07.291259+00 2025-11-24 14:24:07.291269+00 \N 13402 11121 t f \N +174 2025-11-24 12:25:24.561129+00 2025-11-24 12:25:24.561138+00 \N 13385 11812 t f \N +175 2025-11-24 12:31:12.531229+00 2025-11-24 12:31:12.531237+00 \N 13387 11813 t f \N +163 2025-11-24 10:19:37.624139+00 2025-11-24 10:19:37.624147+00 \N 13369 11798 t f \N +164 2025-11-24 10:48:45.828896+00 2025-11-24 10:48:45.828906+00 \N 13371 11799 t f \N +176 2025-11-24 12:39:12.866012+00 2025-11-24 12:39:12.86602+00 \N 13361 11790 t f \N +220 2025-11-24 20:45:24.958211+00 2025-11-24 20:45:24.958218+00 \N 13439 11862 t f \N +183 2025-11-24 13:47:05.749543+00 2025-11-24 13:47:05.749552+00 \N 13394 11821 t f \N +166 2025-11-24 11:40:10.391023+00 2025-11-24 11:40:10.391036+00 \N 13376 11803 t f \N +182 2025-11-24 13:41:18.826335+00 2025-11-24 13:41:18.826346+00 \N 13393 11820 t f \N +185 2025-11-24 13:51:06.807346+00 2025-11-24 13:51:06.807358+00 \N 13395 11822 t f \N +177 2025-11-24 12:39:35.003086+00 2025-11-24 12:39:35.003098+00 \N 13388 11815 t f \N +211 2025-11-24 19:53:00.879818+00 2025-11-24 19:53:00.879831+00 \N 13433 11857 t f \N +186 2025-11-24 13:58:48.719795+00 2025-11-24 13:58:48.719806+00 \N 13397 11820 t f \N +203 2025-11-24 16:08:58.331166+00 2025-11-24 16:08:58.331173+00 \N 13417 11840 t f \N +204 2025-11-24 16:35:01.355214+00 2025-11-24 16:35:01.355227+00 \N 13419 11842 t f \N +205 2025-11-24 17:19:00.097777+00 2025-11-24 17:19:00.097786+00 \N 13421 11845 t f \N +179 2025-11-24 13:16:49.525069+00 2025-11-24 13:16:49.525078+00 \N 13390 11817 t f \N +180 2025-11-24 13:33:21.407803+00 2025-11-24 13:33:21.407812+00 \N 13391 11818 t f \N +206 2025-11-24 17:32:31.414338+00 2025-11-24 17:32:31.414351+00 \N 13422 11846 t f \N +191 2025-11-24 14:29:21.695567+00 2025-11-24 14:29:21.69558+00 \N 13403 11825 t f \N +192 2025-11-24 14:30:44.538717+00 2025-11-24 14:30:44.538727+00 \N 13404 11826 t f \N +193 2025-11-24 14:31:33.40294+00 2025-11-24 14:31:33.402949+00 \N 13405 11827 t f \N +194 2025-11-24 14:42:52.242948+00 2025-11-24 14:42:52.242957+00 \N 13408 11830 t f \N +187 2025-11-24 14:20:07.054909+00 2025-11-24 14:20:07.054925+00 \N 13399 11823 t f \N +214 2025-11-24 20:16:21.640655+00 2025-11-24 20:16:21.640662+00 \N 13434 11859 t f \N +208 2025-11-24 18:02:52.890575+00 2025-11-24 18:02:52.890584+00 \N 13424 11848 t f \N +198 2025-11-24 15:28:36.699132+00 2025-11-24 15:28:36.69914+00 \N 13412 11835 t f \N +199 2025-11-24 15:29:14.167758+00 2025-11-24 15:29:14.167765+00 \N 13412 11836 t f \N +209 2025-11-24 18:20:03.012828+00 2025-11-24 18:20:03.012843+00 \N 13427 11852 t f \N +210 2025-11-24 19:04:01.203657+00 2025-11-24 19:04:01.20367+00 \N 13429 11854 t f \N +221 2025-11-24 20:45:38.846283+00 2025-11-24 20:45:38.84629+00 \N 13437 764 t f \N +222 2025-11-24 20:59:09.667415+00 2025-11-24 20:59:09.667422+00 \N 13442 11864 t f \N +218 2025-11-24 20:20:30.239443+00 2025-11-24 20:20:30.239451+00 \N 13435 11860 t f \N +224 2025-11-24 21:33:00.304189+00 2025-11-24 21:33:00.304196+00 \N 13445 11866 t f \N +226 2025-11-24 21:41:28.383586+00 2025-11-24 21:41:28.383595+00 \N 13447 11868 t f \N +225 2025-11-24 21:38:53.82953+00 2025-11-24 21:38:53.829539+00 \N 13446 11867 t f \N +228 2025-11-24 22:20:32.262044+00 2025-11-24 22:20:32.262056+00 \N 13453 11873 t f \N +229 2025-11-24 22:21:23.492552+00 2025-11-24 22:21:23.49256+00 \N 13454 11874 t f \N +230 2025-11-24 22:37:16.870904+00 2025-11-24 22:37:16.870913+00 \N 13458 11875 t f \N +227 2025-11-24 21:54:05.387607+00 2025-11-24 21:54:05.387614+00 \N 13400 11678 t f \N +231 2025-11-24 22:37:46.621888+00 2025-11-24 22:37:46.621911+00 \N 13459 11876 t f \N +233 2025-11-24 22:49:27.771395+00 2025-11-24 22:49:27.771403+00 \N 13449 11869 t f \N +235 2025-11-24 22:53:15.178286+00 2025-11-24 22:53:15.178293+00 \N 13461 11879 t f \N +234 2025-11-24 22:52:11.028552+00 2025-11-24 22:52:11.028559+00 \N 13461 11878 t f \N +237 2025-11-24 23:23:32.485962+00 2025-11-24 23:23:32.485971+00 \N 13464 11881 t f \N +238 2025-11-24 23:31:06.820146+00 2025-11-24 23:31:06.820158+00 \N 13467 11882 t f \N +240 2025-11-24 23:33:11.974293+00 2025-11-24 23:33:11.974306+00 \N 13468 11883 t f \N +255 2025-11-25 01:21:43.208302+00 2025-11-25 01:21:43.208316+00 \N 13487 11902 t f \N +287 2025-11-25 14:06:43.266216+00 2025-11-25 14:06:43.267018+00 \N 13532 11934 t f \N +288 2025-11-25 14:09:46.788442+00 2025-11-25 14:09:46.789656+00 \N 13533 11935 t f \N +256 2025-11-25 01:31:02.305445+00 2025-11-25 01:31:02.305459+00 \N 13488 11903 t f \N +282 2025-11-25 13:34:00.015044+00 2025-11-25 13:34:00.015056+00 \N 13528 10612 t f \N +302 2025-11-25 15:32:43.358708+00 2025-11-25 15:32:43.358717+00 \N 13547 11948 t f \N +257 2025-11-25 01:33:03.208359+00 2025-11-25 01:33:03.208369+00 \N 13489 11904 t f \N +258 2025-11-25 01:39:16.366574+00 2025-11-25 01:39:16.366586+00 \N 13490 11905 t f \N +259 2025-11-25 01:40:48.542889+00 2025-11-25 01:40:48.542896+00 \N 13491 11906 t f \N +241 2025-11-24 23:36:50.683567+00 2025-11-24 23:36:50.683576+00 \N 13471 11885 t f \N +242 2025-11-24 23:37:25.865247+00 2025-11-24 23:37:25.865256+00 \N 13471 11886 t f \N +243 2025-11-25 00:01:39.87067+00 2025-11-25 00:01:39.870683+00 \N 13472 11887 t f \N +244 2025-11-25 00:12:40.081245+00 2025-11-25 00:12:40.081254+00 \N 13473 11888 t f \N +246 2025-11-25 00:22:38.312196+00 2025-11-25 00:22:38.312204+00 \N 13475 11890 t f \N +247 2025-11-25 00:26:55.332756+00 2025-11-25 00:26:55.332767+00 \N 13478 11893 t f \N +249 2025-11-25 00:38:35.174318+00 2025-11-25 00:38:35.174331+00 \N 13480 11894 t f \N +325 2025-11-25 17:54:09.388699+00 2025-11-25 17:54:09.38871+00 \N 13572 11967 t f \N +326 2025-11-25 18:00:32.834849+00 2025-11-25 18:00:32.834864+00 \N 13573 11968 t f \N +275 2025-11-25 12:06:07.448375+00 2025-11-25 12:06:07.448391+00 \N 13514 11925 t f \N +262 2025-11-25 02:01:38.094632+00 2025-11-25 02:01:38.094644+00 \N 13495 11910 t f \N +260 2025-11-25 01:41:29.529612+00 2025-11-25 01:41:29.52962+00 \N 13492 11907 t f \N +271 2025-11-25 10:03:55.493469+00 2025-11-25 10:03:55.493477+00 \N 13507 11919 t f \N +272 2025-11-25 10:39:18.775272+00 2025-11-25 10:39:18.775281+00 \N 13508 11920 t f \N +250 2025-11-25 00:38:53.158319+00 2025-11-25 00:38:53.158326+00 \N 13481 11896 t f \N +248 2025-11-25 00:38:13.908749+00 2025-11-25 00:38:13.908756+00 \N 13481 11895 t f \N +353 2025-11-25 21:20:40.293399+00 2025-11-25 21:20:40.293406+00 \N 13558 11957 t f \N +263 2025-11-25 02:02:04.524364+00 2025-11-25 02:02:04.524378+00 \N 13496 11911 t f \N +265 2025-11-25 02:03:42.357428+00 2025-11-25 02:03:42.357437+00 \N 13497 11913 t f \N +264 2025-11-25 02:02:38.628253+00 2025-11-25 02:02:38.628261+00 \N 13493 11912 t f \N +278 2025-11-25 12:52:10.649465+00 2025-11-25 12:52:10.649473+00 \N 13521 11927 t f \N +289 2025-11-25 14:13:44.771206+00 2025-11-25 14:13:44.771217+00 \N 13536 11938 t f \N +303 2025-11-25 15:35:07.945553+00 2025-11-25 15:35:07.945563+00 \N 13548 11949 t f \N +279 2025-11-25 12:55:07.951188+00 2025-11-25 12:55:07.951197+00 \N 13523 11928 t f \N +280 2025-11-25 12:57:13.021489+00 2025-11-25 12:57:13.021501+00 \N 13524 11929 t f \N +251 2025-11-25 00:46:32.810934+00 2025-11-25 00:46:32.810943+00 \N 13482 11897 t f \N +252 2025-11-25 00:47:20.458911+00 2025-11-25 00:47:20.458919+00 \N 13482 11898 t f \N +253 2025-11-25 00:50:50.61246+00 2025-11-25 00:50:50.612472+00 \N 13483 11899 t f \N +304 2025-11-25 15:49:00.393827+00 2025-11-25 15:49:00.393836+00 \N 13549 11950 t f \N +293 2025-11-25 14:26:24.431136+00 2025-11-25 14:26:24.431143+00 \N 13537 11939 t f \N +267 2025-11-25 02:09:10.894152+00 2025-11-25 02:09:10.894161+00 \N 13499 11915 t f \N +268 2025-11-25 02:44:17.099424+00 2025-11-25 02:44:17.099436+00 \N 13365 11794 t f \N +305 2025-11-25 15:54:40.440324+00 2025-11-25 15:54:40.440336+00 \N 13550 11951 t f \N +254 2025-11-25 01:01:52.68394+00 2025-11-25 01:01:52.683951+00 \N 13485 11900 t f \N +295 2025-11-25 14:43:26.177148+00 2025-11-25 14:43:26.177155+00 \N 13540 11940 t f \N +273 2025-11-25 10:54:43.351974+00 2025-11-25 10:54:43.351983+00 \N 13509 11921 t f \N +274 2025-11-25 11:48:53.055203+00 2025-11-25 11:48:53.055212+00 \N 13512 11923 t f \N +269 2025-11-25 03:03:38.199888+00 2025-11-25 03:03:38.199899+00 \N 13502 11917 t f \N +270 2025-11-25 03:05:00.125995+00 2025-11-25 03:05:00.126007+00 \N 13502 11918 t f \N +296 2025-11-25 14:47:47.187326+00 2025-11-25 14:47:47.187334+00 \N 13541 11941 t f \N +281 2025-11-25 13:14:15.409838+00 2025-11-25 13:14:15.409848+00 \N 13527 11930 t f \N +298 2025-11-25 14:53:32.950248+00 2025-11-25 14:53:32.950257+00 \N 13542 11942 t f \N +330 2025-11-25 18:44:15.783638+00 2025-11-25 18:44:15.783645+00 \N 13567 11963 t f \N +283 2025-11-25 13:41:56.716553+00 2025-11-25 13:41:56.716964+00 \N 13525 323 t f \N +266 2025-11-25 02:04:28.288995+00 2025-11-25 02:04:28.289008+00 \N 13498 11914 t f \N +284 2025-11-25 13:44:49.095183+00 2025-11-25 13:44:49.095608+00 \N 13522 540 t f \N +317 2025-11-25 16:43:08.772512+00 2025-11-25 16:43:08.772521+00 \N 13534 11936 t f \N +285 2025-11-25 13:51:55.610844+00 2025-11-25 13:51:55.611605+00 \N 13531 11933 t f \N +308 2025-11-25 16:02:25.129709+00 2025-11-25 16:02:25.129716+00 \N 13552 11952 t f \N +277 2025-11-25 12:41:55.048509+00 2025-11-25 12:41:55.048518+00 \N 13519 328 t f \N +299 2025-11-25 15:17:07.620192+00 2025-11-25 15:17:07.620205+00 \N 13543 11943 t f \N +306 2025-11-25 15:59:49.14926+00 2025-11-25 15:59:49.149273+00 \N 13551 10612 t f \N +300 2025-11-25 15:27:33.952756+00 2025-11-25 15:27:33.952768+00 \N 13545 11945 t f \N +301 2025-11-25 15:28:39.96758+00 2025-11-25 15:28:39.967593+00 \N 13544 11944 t f \N +309 2025-11-25 16:23:26.077943+00 2025-11-25 16:23:26.077955+00 \N 13554 11953 t f \N +319 2025-11-25 16:57:05.178223+00 2025-11-25 16:57:05.178235+00 \N 13566 11936 t f \N +310 2025-11-25 16:25:09.925313+00 2025-11-25 16:25:09.925326+00 \N 13555 11954 t f \N +311 2025-11-25 16:29:52.122084+00 2025-11-25 16:29:52.122092+00 \N 13556 11955 t f \N +312 2025-11-25 16:31:09.733003+00 2025-11-25 16:31:09.733013+00 \N 13557 11956 t f \N +327 2025-11-25 18:05:42.619974+00 2025-11-25 18:05:42.619985+00 \N 13574 11969 t f \N +315 2025-11-25 16:35:54.160033+00 2025-11-25 16:35:54.160042+00 \N 13560 11959 t f \N +316 2025-11-25 16:38:22.924403+00 2025-11-25 16:38:22.924412+00 \N 13561 11960 t f \N +328 2025-11-25 18:26:29.575363+00 2025-11-25 18:26:29.575754+00 \N 13577 11970 t f \N +329 2025-11-25 18:39:52.677293+00 2025-11-25 18:39:52.677301+00 \N 13579 11267 t f \N +324 2025-11-25 17:53:26.52258+00 2025-11-25 17:53:26.522588+00 \N 13572 11966 t f \N +337 2025-11-25 19:45:41.010066+00 2025-11-25 19:45:41.010075+00 \N 13592 10572 t f \N +333 2025-11-25 18:46:22.623645+00 2025-11-25 18:46:22.623656+00 \N 13585 11972 t f \N +335 2025-11-25 19:08:36.519847+00 2025-11-25 19:08:36.519855+00 \N 13589 11974 t f \N +334 2025-11-25 18:58:32.200134+00 2025-11-25 18:58:32.200141+00 \N 13587 467 t f \N +336 2025-11-25 19:13:06.789993+00 2025-11-25 19:13:06.790006+00 \N 13590 11975 t f \N +340 2025-11-25 20:19:07.566963+00 2025-11-25 20:19:07.566974+00 \N 13595 6190 t f \N +339 2025-11-25 20:16:40.697571+00 2025-11-25 20:16:40.697583+00 \N 13593 11976 t f \N +341 2025-11-25 20:52:37.345262+00 2025-11-25 20:52:37.34527+00 \N 13597 11979 t f \N +344 2025-11-25 20:58:58.794507+00 2025-11-25 20:58:58.794516+00 \N 13598 11963 t f \N +345 2025-11-25 21:00:35.363786+00 2025-11-25 21:00:35.363794+00 \N 13599 11980 t f \N +346 2025-11-25 21:00:46.077047+00 2025-11-25 21:00:46.077055+00 \N 13600 11963 t f \N +348 2025-11-25 21:11:24.913436+00 2025-11-25 21:11:24.913444+00 \N 13602 11982 t f \N +352 2025-11-25 21:20:11.297486+00 2025-11-25 21:20:11.297498+00 \N 13603 11963 t f \N +354 2025-11-25 21:23:52.319774+00 2025-11-25 21:23:52.319782+00 \N 13605 9637 t f \N +314 2025-11-25 16:34:02.797128+00 2025-11-25 16:34:02.797137+00 \N 13558 11958 t f \N +355 2025-11-25 21:38:13.807779+00 2025-11-25 21:38:13.807788+00 \N 13606 11983 t f \N +356 2025-11-25 21:39:20.222888+00 2025-11-25 21:39:20.222896+00 \N 13607 11984 t f \N +357 2025-11-25 22:00:03.729824+00 2025-11-25 22:00:03.729837+00 \N 13610 11985 t f \N +359 2025-11-25 22:20:00.360674+00 2025-11-25 22:20:00.361344+00 \N 13611 11986 t f \N +360 2025-11-25 22:36:48.77039+00 2025-11-25 22:36:48.770401+00 \N 13613 11988 t f \N +365 2025-11-25 22:47:46.738525+00 2025-11-25 22:47:46.738534+00 \N 13616 11991 t f \N +366 2025-11-25 22:49:17.574322+00 2025-11-25 22:49:17.574329+00 \N 13615 11990 t f \N +368 2025-11-25 23:10:57.686034+00 2025-11-25 23:10:57.686044+00 \N 13618 11993 t f \N +367 2025-11-25 23:05:06.931699+00 2025-11-25 23:05:06.931711+00 \N 13617 11992 t f \N +369 2025-11-25 23:45:43.176998+00 2025-11-25 23:45:43.177007+00 \N 13620 11994 t f \N +370 2025-11-26 00:21:30.460353+00 2025-11-26 00:21:30.460361+00 \N 13621 8460 t f \N +371 2025-11-26 00:27:02.811436+00 2025-11-26 00:27:02.811444+00 \N 13622 11995 t f \N +373 2025-11-26 00:35:48.35389+00 2025-11-26 00:35:48.353919+00 \N 13623 11996 t f \N +374 2025-11-26 00:40:08.167886+00 2025-11-26 00:40:08.1679+00 \N 13625 11997 t f \N +375 2025-11-26 01:07:21.156877+00 2025-11-26 01:07:21.156884+00 \N 13629 11998 t f \N +376 2025-11-26 01:30:33.507552+00 2025-11-26 01:30:33.507559+00 \N 13633 12000 t f \N +378 2025-11-26 02:30:38.408753+00 2025-11-26 02:30:38.408759+00 \N 13635 12001 t f \N +377 2025-11-26 02:29:04.631849+00 2025-11-26 02:29:04.631861+00 \N 13635 12002 t f \N +379 2025-11-26 03:34:45.367734+00 2025-11-26 03:34:45.367745+00 \N 13636 12003 t f \N +380 2025-11-26 03:41:21.336212+00 2025-11-26 03:41:21.336219+00 \N 13637 12004 t f \N +381 2025-11-26 04:28:04.878899+00 2025-11-26 04:28:04.878909+00 \N 13638 12005 t f \N +\. + + +-- +-- Data for Name: productos_cartresumeitem; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.productos_cartresumeitem (id, created_at, updated_at, deleted, active, concept, amount, "order", cart_id, user_id) FROM stdin; +1361 2025-04-30 15:22:54.399858+00 2025-04-30 15:22:54.399865+00 f t SUBTOTAL 46000.00 1 38 \N +1362 2025-04-30 15:22:54.401221+00 2025-04-30 15:22:54.401227+00 f t DESCUENTO 0.00 2 38 \N +1363 2025-04-30 15:22:54.4023+00 2025-04-30 15:22:54.402305+00 f t TOTAL 46000.00 3 38 \N +1364 2025-04-30 15:22:54.40326+00 2025-04-30 15:22:54.403267+00 f t ADELANTO 9500.00 4 38 \N +3325 2025-05-08 17:16:00.452304+00 2025-05-08 17:16:00.452317+00 f t SUBTOTAL 0.00 1 103 \N +3326 2025-05-08 17:16:00.455026+00 2025-05-08 17:16:00.455035+00 f t DESCUENTO 0.00 2 103 \N +3327 2025-05-08 17:16:00.456697+00 2025-05-08 17:16:00.456705+00 f t TOTAL 0.00 3 103 \N +3328 2025-05-08 17:16:00.458219+00 2025-05-08 17:16:00.458228+00 f t ADELANTO 0.00 4 103 \N +3477 2025-05-08 22:28:24.238109+00 2025-05-08 22:28:24.238117+00 f t SUBTOTAL 0.00 1 106 \N +3478 2025-05-08 22:28:24.239761+00 2025-05-08 22:28:24.239769+00 f t DESCUENTO 0.00 2 106 \N +3479 2025-05-08 22:28:24.241434+00 2025-05-08 22:28:24.241441+00 f t TOTAL 0.00 3 106 \N +3480 2025-05-08 22:28:24.242555+00 2025-05-08 22:28:24.242561+00 f t ADELANTO 0.00 4 106 \N +4241 2025-05-09 16:48:03.580182+00 2025-05-09 16:48:03.580197+00 f t SUBTOTAL 0.00 1 118 \N +4242 2025-05-09 16:48:03.58335+00 2025-05-09 16:48:03.5834+00 f t DESCUENTO 0.00 2 118 \N +4243 2025-05-09 16:48:03.585945+00 2025-05-09 16:48:03.585959+00 f t TOTAL 0.00 3 118 \N +4244 2025-05-09 16:48:03.587978+00 2025-05-09 16:48:03.587988+00 f t ADELANTO 0.00 4 118 \N +21 2025-04-15 22:23:01.912945+00 2025-04-15 22:23:01.912955+00 f t SUBTOTAL 38500.00 1 1 \N +22 2025-04-15 22:23:01.914474+00 2025-04-15 22:23:01.914483+00 f t DESCUENTO 0.00 2 1 \N +23 2025-04-15 22:23:01.915641+00 2025-04-15 22:23:01.915646+00 f t TOTAL 38500.00 3 1 \N +24 2025-04-15 22:23:01.916657+00 2025-04-15 22:23:01.916662+00 f t ADELANTO 8500.00 4 1 \N +121 2025-04-16 20:21:01.468578+00 2025-04-16 20:21:01.468589+00 f t SUBTOTAL 0.00 1 6 \N +122 2025-04-16 20:21:01.471328+00 2025-04-16 20:21:01.471338+00 f t DESCUENTO 0.00 2 6 \N +123 2025-04-16 20:21:01.472795+00 2025-04-16 20:21:01.472803+00 f t TOTAL 0.00 3 6 \N +124 2025-04-16 20:21:01.474422+00 2025-04-16 20:21:01.474428+00 f t ADELANTO 0.00 4 6 \N +29 2025-04-15 23:26:30.927808+00 2025-04-15 23:26:30.927822+00 f t SUBTOTAL 0.00 1 2 \N +30 2025-04-15 23:26:30.929597+00 2025-04-15 23:26:30.929603+00 f t DESCUENTO 0.00 2 2 \N +31 2025-04-15 23:26:30.930934+00 2025-04-15 23:26:30.930939+00 f t TOTAL 0.00 3 2 \N +32 2025-04-15 23:26:30.932031+00 2025-04-15 23:26:30.932037+00 f t ADELANTO 0.00 4 2 \N +417 2025-04-20 11:53:28.606683+00 2025-04-20 11:53:28.606694+00 f t SUBTOTAL 46000.00 1 18 \N +418 2025-04-20 11:53:28.608449+00 2025-04-20 11:53:28.608454+00 f t DESCUENTO 0.00 2 18 \N +419 2025-04-20 11:53:28.609631+00 2025-04-20 11:53:28.609639+00 f t TOTAL 46000.00 3 18 \N +420 2025-04-20 11:53:28.610759+00 2025-04-20 11:53:28.610765+00 f t ADELANTO 9500.00 4 18 \N +37 2025-04-16 12:32:19.170211+00 2025-04-16 12:32:19.170218+00 f t SUBTOTAL 0.00 1 3 \N +38 2025-04-16 12:32:19.17132+00 2025-04-16 12:32:19.171328+00 f t DESCUENTO 0.00 2 3 \N +39 2025-04-16 12:32:19.172218+00 2025-04-16 12:32:19.172223+00 f t TOTAL 0.00 3 3 \N +40 2025-04-16 12:32:19.173028+00 2025-04-16 12:32:19.173033+00 f t ADELANTO 0.00 4 3 \N +3381 2025-05-08 21:48:57.258724+00 2025-05-08 21:48:57.258733+00 f t SUBTOTAL 38500.00 1 105 \N +3382 2025-05-08 21:48:57.260189+00 2025-05-08 21:48:57.260197+00 f t DESCUENTO 0.00 2 105 \N +3383 2025-05-08 21:48:57.261448+00 2025-05-08 21:48:57.261455+00 f t TOTAL 38500.00 3 105 \N +3384 2025-05-08 21:48:57.262527+00 2025-05-08 21:48:57.262535+00 f t ADELANTO 8500.00 4 105 \N +3621 2025-05-08 22:35:12.885788+00 2025-05-08 22:35:12.8858+00 f t SUBTOTAL 84000.00 1 108 \N +3623 2025-05-08 22:35:12.887491+00 2025-05-08 22:35:12.8875+00 f t DESCUENTO 0.00 2 108 \N +3625 2025-05-08 22:35:12.888824+00 2025-05-08 22:35:12.888831+00 f t TOTAL 84000.00 3 108 \N +3627 2025-05-08 22:35:12.890468+00 2025-05-08 22:35:12.890474+00 f t ADELANTO 28000.00 4 108 \N +137 2025-04-16 20:31:19.586217+00 2025-04-16 20:31:19.586226+00 f t SUBTOTAL 0.00 1 7 \N +138 2025-04-16 20:31:19.587535+00 2025-04-16 20:31:19.587541+00 f t DESCUENTO 0.00 2 7 \N +139 2025-04-16 20:31:19.588504+00 2025-04-16 20:31:19.588509+00 f t TOTAL 0.00 3 7 \N +140 2025-04-16 20:31:19.589483+00 2025-04-16 20:31:19.589489+00 f t ADELANTO 0.00 4 7 \N +4509 2025-05-09 18:33:38.798671+00 2025-05-09 18:33:38.798681+00 f t SUBTOTAL 0.00 1 125 \N +4510 2025-05-09 18:33:38.801149+00 2025-05-09 18:33:38.801161+00 f t DESCUENTO 0.00 2 125 \N +4511 2025-05-09 18:33:38.802726+00 2025-05-09 18:33:38.802733+00 f t TOTAL 0.00 3 125 \N +4512 2025-05-09 18:33:38.804208+00 2025-05-09 18:33:38.804218+00 f t ADELANTO 0.00 4 125 \N +145 2025-04-16 20:48:55.792187+00 2025-04-16 20:48:55.792196+00 f t SUBTOTAL 0.00 1 8 \N +146 2025-04-16 20:48:55.793666+00 2025-04-16 20:48:55.793672+00 f t DESCUENTO 0.00 2 8 \N +147 2025-04-16 20:48:55.794896+00 2025-04-16 20:48:55.794903+00 f t TOTAL 0.00 3 8 \N +148 2025-04-16 20:48:55.796054+00 2025-04-16 20:48:55.796064+00 f t ADELANTO 0.00 4 8 \N +4529 2025-05-09 18:48:20.043329+00 2025-05-09 18:48:20.043342+00 f t SUBTOTAL 0.00 1 126 \N +4530 2025-05-09 18:48:20.046118+00 2025-05-09 18:48:20.04613+00 f t DESCUENTO 0.00 2 126 \N +4531 2025-05-09 18:48:20.048021+00 2025-05-09 18:48:20.048028+00 f t TOTAL 0.00 3 126 \N +4532 2025-05-09 18:48:20.049862+00 2025-05-09 18:48:20.04987+00 f t ADELANTO 0.00 4 126 \N +4293 2025-05-09 16:49:44.351978+00 2025-05-09 16:49:44.351987+00 f t SUBTOTAL 68500.00 1 119 \N +4294 2025-05-09 16:49:44.353664+00 2025-05-09 16:49:44.353671+00 f t DESCUENTO 0.00 2 119 \N +4295 2025-05-09 16:49:44.355256+00 2025-05-09 16:49:44.355264+00 f t TOTAL 68500.00 3 119 \N +4296 2025-05-09 16:49:44.356729+00 2025-05-09 16:49:44.356738+00 f t ADELANTO 33500.00 4 119 \N +701 2025-04-21 19:16:21.134853+00 2025-04-21 19:16:21.134861+00 f t SUBTOTAL 10000.00 1 21 \N +702 2025-04-21 19:16:21.136243+00 2025-04-21 19:16:21.136248+00 f t DESCUENTO 0.00 2 21 \N +703 2025-04-21 19:16:21.137298+00 2025-04-21 19:16:21.137302+00 f t TOTAL 10000.00 3 21 \N +704 2025-04-21 19:16:21.138167+00 2025-04-21 19:16:21.138172+00 f t ADELANTO 2000.00 4 21 \N +365 2025-04-17 16:18:24.838662+00 2025-04-17 16:18:24.838674+00 f t SUBTOTAL 95000.00 1 10 \N +366 2025-04-17 16:18:24.840881+00 2025-04-17 16:18:24.84089+00 f t DESCUENTO 0.00 2 10 \N +367 2025-04-17 16:18:24.842344+00 2025-04-17 16:18:24.842354+00 f t TOTAL 95000.00 3 10 \N +368 2025-04-17 16:18:24.843732+00 2025-04-17 16:18:24.84374+00 f t ADELANTO 10000.00 4 10 \N +5669 2025-05-11 15:21:11.225048+00 2025-05-11 15:21:11.225062+00 f t SUBTOTAL 0.00 1 146 \N +5670 2025-05-11 15:21:11.227977+00 2025-05-11 15:21:11.227988+00 f t DESCUENTO 0.00 2 146 \N +5671 2025-05-11 15:21:11.229805+00 2025-05-11 15:21:11.229817+00 f t TOTAL 0.00 3 146 \N +5672 2025-05-11 15:21:11.231667+00 2025-05-11 15:21:11.231677+00 f t ADELANTO 0.00 4 146 \N +97 2025-04-16 12:36:01.313067+00 2025-04-16 12:36:01.31308+00 f t SUBTOTAL 28500.00 1 4 \N +98 2025-04-16 12:36:01.31585+00 2025-04-16 12:36:01.315862+00 f t DESCUENTO 0.00 2 4 \N +99 2025-04-16 12:36:01.317667+00 2025-04-16 12:36:01.317702+00 f t TOTAL 28500.00 3 4 \N +100 2025-04-16 12:36:01.319069+00 2025-04-16 12:36:01.319087+00 f t ADELANTO 9500.00 4 4 \N +309 2025-04-16 21:30:38.956279+00 2025-04-16 21:30:38.956292+00 f t SUBTOTAL 280000.00 1 11 \N +310 2025-04-16 21:30:38.958321+00 2025-04-16 21:30:38.958332+00 f t DESCUENTO 0.00 2 11 \N +311 2025-04-16 21:30:38.959682+00 2025-04-16 21:30:38.959692+00 f t TOTAL 280000.00 3 11 \N +312 2025-04-16 21:30:38.960992+00 2025-04-16 21:30:38.961001+00 f t ADELANTO 0.00 4 11 \N +373 2025-04-18 03:41:50.232581+00 2025-04-18 03:41:50.23259+00 f t SUBTOTAL 0.00 1 17 \N +374 2025-04-18 03:41:50.233679+00 2025-04-18 03:41:50.233684+00 f t DESCUENTO 0.00 2 17 \N +375 2025-04-18 03:41:50.234652+00 2025-04-18 03:41:50.234657+00 f t TOTAL 0.00 3 17 \N +376 2025-04-18 03:41:50.235499+00 2025-04-18 03:41:50.235503+00 f t ADELANTO 0.00 4 17 \N +1265 2025-04-29 01:28:40.775539+00 2025-04-29 01:28:40.775547+00 f t SUBTOTAL 0.00 1 35 \N +1266 2025-04-29 01:28:40.776738+00 2025-04-29 01:28:40.776744+00 f t DESCUENTO 0.00 2 35 \N +1267 2025-04-29 01:28:40.777693+00 2025-04-29 01:28:40.777698+00 f t TOTAL 0.00 3 35 \N +1268 2025-04-29 01:28:40.779102+00 2025-04-29 01:28:40.77911+00 f t ADELANTO 0.00 4 35 \N +3973 2025-05-08 22:50:52.387014+00 2025-05-08 22:50:52.387024+00 f t SUBTOTAL 42000.00 1 110 \N +3974 2025-05-08 22:50:52.388885+00 2025-05-08 22:50:52.388893+00 f t DESCUENTO 0.00 2 110 \N +3975 2025-05-08 22:50:52.390353+00 2025-05-08 22:50:52.390361+00 f t TOTAL 42000.00 3 110 \N +1369 2025-05-01 05:51:38.361679+00 2025-05-01 05:51:38.361691+00 f t SUBTOTAL 0.00 1 39 \N +1370 2025-05-01 05:51:38.363639+00 2025-05-01 05:51:38.363648+00 f t DESCUENTO 0.00 2 39 \N +1371 2025-05-01 05:51:38.36527+00 2025-05-01 05:51:38.365279+00 f t TOTAL 0.00 3 39 \N +1372 2025-05-01 05:51:38.36674+00 2025-05-01 05:51:38.366749+00 f t ADELANTO 0.00 4 39 \N +1081 2025-04-25 23:21:26.090393+00 2025-04-25 23:21:26.090401+00 f t SUBTOTAL 44000.00 1 29 \N +1082 2025-04-25 23:21:26.091861+00 2025-04-25 23:21:26.091866+00 f t DESCUENTO 0.00 2 29 \N +1083 2025-04-25 23:21:26.092902+00 2025-04-25 23:21:26.092907+00 f t TOTAL 44000.00 3 29 \N +1084 2025-04-25 23:21:26.093825+00 2025-04-25 23:21:26.093834+00 f t ADELANTO 0.00 4 29 \N +997 2025-04-24 16:36:29.663247+00 2025-04-24 16:36:29.663256+00 f t SUBTOTAL 0.00 1 24 \N +998 2025-04-24 16:36:29.664542+00 2025-04-24 16:36:29.664548+00 f t DESCUENTO 0.00 2 24 \N +999 2025-04-24 16:36:29.665876+00 2025-04-24 16:36:29.665881+00 f t TOTAL 0.00 3 24 \N +1000 2025-04-24 16:36:29.66686+00 2025-04-24 16:36:29.66688+00 f t ADELANTO 0.00 4 24 \N +3622 2025-05-08 22:35:12.885924+00 2025-05-08 22:35:12.885931+00 f t SUBTOTAL 84000.00 1 108 \N +3624 2025-05-08 22:35:12.88774+00 2025-05-08 22:35:12.887747+00 f t DESCUENTO 0.00 2 108 \N +3626 2025-05-08 22:35:12.889289+00 2025-05-08 22:35:12.8893+00 f t TOTAL 84000.00 3 108 \N +3628 2025-05-08 22:35:12.890747+00 2025-05-08 22:35:12.890754+00 f t ADELANTO 28000.00 4 108 \N +5217 2025-05-09 22:59:32.8282+00 2025-05-09 22:59:32.828209+00 f t SUBTOTAL 80500.00 1 133 \N +1229 2025-04-26 18:06:57.494317+00 2025-04-26 18:06:57.494326+00 f t SUBTOTAL 52000.00 1 33 \N +1230 2025-04-26 18:06:57.495796+00 2025-04-26 18:06:57.495801+00 f t DESCUENTO 0.00 2 33 \N +1231 2025-04-26 18:06:57.497047+00 2025-04-26 18:06:57.497052+00 f t TOTAL 52000.00 3 33 \N +1232 2025-04-26 18:06:57.498001+00 2025-04-26 18:06:57.498006+00 f t ADELANTO 12000.00 4 33 \N +5218 2025-05-09 22:59:32.82968+00 2025-05-09 22:59:32.829686+00 f t DESCUENTO 0.00 2 133 \N +5219 2025-05-09 22:59:32.830734+00 2025-05-09 22:59:32.83074+00 f t TOTAL 80500.00 3 133 \N +5220 2025-05-09 22:59:32.831828+00 2025-05-09 22:59:32.831836+00 f t ADELANTO 22500.00 4 133 \N +1105 2025-04-26 00:49:35.201172+00 2025-04-26 00:49:35.201183+00 f t SUBTOTAL 76000.00 1 30 \N +1106 2025-04-26 00:49:35.203035+00 2025-04-26 00:49:35.203044+00 f t DESCUENTO 0.00 2 30 \N +1107 2025-04-26 00:49:35.204285+00 2025-04-26 00:49:35.204293+00 f t TOTAL 76000.00 3 30 \N +1108 2025-04-26 00:49:35.205583+00 2025-04-26 00:49:35.205591+00 f t ADELANTO 21000.00 4 30 \N +861 2025-04-23 20:45:27.043301+00 2025-04-23 20:45:27.043311+00 f t SUBTOTAL 0.00 1 23 \N +862 2025-04-23 20:45:27.045436+00 2025-04-23 20:45:27.045442+00 f t DESCUENTO 0.00 2 23 \N +863 2025-04-23 20:45:27.04679+00 2025-04-23 20:45:27.046798+00 f t TOTAL 0.00 3 23 \N +864 2025-04-23 20:45:27.048057+00 2025-04-23 20:45:27.048064+00 f t ADELANTO 0.00 4 23 \N +1037 2025-04-25 15:04:21.375101+00 2025-04-25 15:04:21.375112+00 f t SUBTOTAL 0.00 1 26 \N +1038 2025-04-25 15:04:21.376441+00 2025-04-25 15:04:21.376448+00 f t DESCUENTO 0.00 2 26 \N +1039 2025-04-25 15:04:21.377418+00 2025-04-25 15:04:21.377425+00 f t TOTAL 0.00 3 26 \N +1040 2025-04-25 15:04:21.378447+00 2025-04-25 15:04:21.378453+00 f t ADELANTO 0.00 4 26 \N +1045 2025-04-25 16:29:31.836162+00 2025-04-25 16:29:31.83617+00 f t SUBTOTAL 0.00 1 27 \N +1046 2025-04-25 16:29:31.837402+00 2025-04-25 16:29:31.837407+00 f t DESCUENTO 0.00 2 27 \N +1047 2025-04-25 16:29:31.838584+00 2025-04-25 16:29:31.83859+00 f t TOTAL 0.00 3 27 \N +1048 2025-04-25 16:29:31.839552+00 2025-04-25 16:29:31.839557+00 f t ADELANTO 0.00 4 27 \N +1257 2025-04-27 00:19:10.37899+00 2025-04-27 00:19:10.378999+00 f t SUBTOTAL 46000.00 1 34 \N +1258 2025-04-27 00:19:10.380535+00 2025-04-27 00:19:10.38054+00 f t DESCUENTO 0.00 2 34 \N +1259 2025-04-27 00:19:10.381635+00 2025-04-27 00:19:10.381643+00 f t TOTAL 46000.00 3 34 \N +1260 2025-04-27 00:19:10.38273+00 2025-04-27 00:19:10.382737+00 f t ADELANTO 9500.00 4 34 \N +1413 2025-05-01 12:12:44.336891+00 2025-05-01 12:12:44.3369+00 f t SUBTOTAL 46000.00 1 40 \N +1414 2025-05-01 12:12:44.338806+00 2025-05-01 12:12:44.338818+00 f t DESCUENTO 0.00 2 40 \N +1415 2025-05-01 12:12:44.340698+00 2025-05-01 12:12:44.340709+00 f t TOTAL 46000.00 3 40 \N +1416 2025-05-01 12:12:44.342475+00 2025-05-01 12:12:44.342482+00 f t ADELANTO 9500.00 4 40 \N +1061 2025-04-25 21:17:17.464379+00 2025-04-25 21:17:17.464393+00 f t SUBTOTAL 0.00 1 28 \N +1062 2025-04-25 21:17:17.46662+00 2025-04-25 21:17:17.466627+00 f t DESCUENTO 0.00 2 28 \N +1063 2025-04-25 21:17:17.467875+00 2025-04-25 21:17:17.467882+00 f t TOTAL 0.00 3 28 \N +1064 2025-04-25 21:17:17.469213+00 2025-04-25 21:17:17.46922+00 f t ADELANTO 0.00 4 28 \N +1837 2025-05-03 12:01:49.92751+00 2025-05-03 12:01:49.927518+00 f t SUBTOTAL 46000.00 1 52 \N +1141 2025-04-26 10:23:45.668593+00 2025-04-26 10:23:45.668601+00 f t SUBTOTAL 0.00 1 31 \N +1142 2025-04-26 10:23:45.673845+00 2025-04-26 10:23:45.673852+00 f t DESCUENTO 0.00 2 31 \N +1143 2025-04-26 10:23:45.675433+00 2025-04-26 10:23:45.67544+00 f t TOTAL 0.00 3 31 \N +1144 2025-04-26 10:23:45.677209+00 2025-04-26 10:23:45.677216+00 f t ADELANTO 0.00 4 31 \N +1145 2025-04-26 10:23:45.6938+00 2025-04-26 10:23:45.693809+00 f t SUBTOTAL 10000.00 1 31 \N +1146 2025-04-26 10:23:45.696481+00 2025-04-26 10:23:45.696487+00 f t DESCUENTO 0.00 2 31 \N +1147 2025-04-26 10:23:45.697574+00 2025-04-26 10:23:45.697579+00 f t TOTAL 10000.00 3 31 \N +1148 2025-04-26 10:23:45.698586+00 2025-04-26 10:23:45.69859+00 f t ADELANTO 2000.00 4 31 \N +1838 2025-05-03 12:01:49.928927+00 2025-05-03 12:01:49.928933+00 f t DESCUENTO 0.00 2 52 \N +1839 2025-05-03 12:01:49.930054+00 2025-05-03 12:01:49.93006+00 f t TOTAL 46000.00 3 52 \N +1840 2025-05-03 12:01:49.930993+00 2025-05-03 12:01:49.930998+00 f t ADELANTO 9500.00 4 52 \N +1153 2025-04-26 13:27:51.720301+00 2025-04-26 13:27:51.720309+00 f t SUBTOTAL 0.00 1 32 \N +1154 2025-04-26 13:27:51.721392+00 2025-04-26 13:27:51.721398+00 f t DESCUENTO 0.00 2 32 \N +1155 2025-04-26 13:27:51.722188+00 2025-04-26 13:27:51.722193+00 f t TOTAL 0.00 3 32 \N +1156 2025-04-26 13:27:51.72306+00 2025-04-26 13:27:51.723065+00 f t ADELANTO 0.00 4 32 \N +1157 2025-04-26 16:21:41.649361+00 2025-04-26 16:21:41.64937+00 f t SUBTOTAL 52500.00 1 25 \N +1158 2025-04-26 16:21:41.651411+00 2025-04-26 16:21:41.651417+00 f t DESCUENTO 0.00 2 25 \N +1159 2025-04-26 16:21:41.652473+00 2025-04-26 16:21:41.652477+00 f t TOTAL 52500.00 3 25 \N +1160 2025-04-26 16:21:41.653465+00 2025-04-26 16:21:41.65347+00 f t ADELANTO 12500.00 4 25 \N +1333 2025-04-29 15:13:30.326212+00 2025-04-29 15:13:30.326222+00 f t SUBTOTAL 46000.00 1 36 \N +1334 2025-04-29 15:13:30.328105+00 2025-04-29 15:13:30.328113+00 f t DESCUENTO 0.00 2 36 \N +1335 2025-04-29 15:13:30.329448+00 2025-04-29 15:13:30.329456+00 f t TOTAL 46000.00 3 36 \N +1336 2025-04-29 15:13:30.330705+00 2025-04-29 15:13:30.330713+00 f t ADELANTO 11000.00 4 36 \N +1341 2025-04-29 18:16:49.331798+00 2025-04-29 18:16:49.331807+00 f t SUBTOTAL 0.00 1 37 \N +1342 2025-04-29 18:16:49.333131+00 2025-04-29 18:16:49.333137+00 f t DESCUENTO 0.00 2 37 \N +1343 2025-04-29 18:16:49.334361+00 2025-04-29 18:16:49.334368+00 f t TOTAL 0.00 3 37 \N +1344 2025-04-29 18:16:49.335587+00 2025-04-29 18:16:49.335593+00 f t ADELANTO 0.00 4 37 \N +3101 2025-05-08 12:56:16.491848+00 2025-05-08 12:56:16.491861+00 f t SUBTOTAL 46000.00 1 100 \N +3102 2025-05-08 12:56:16.494378+00 2025-05-08 12:56:16.494391+00 f t DESCUENTO 0.00 2 100 \N +3103 2025-05-08 12:56:16.49695+00 2025-05-08 12:56:16.496963+00 f t TOTAL 46000.00 3 100 \N +3104 2025-05-08 12:56:16.499977+00 2025-05-08 12:56:16.499988+00 f t ADELANTO 9500.00 4 100 \N +3309 2025-05-08 16:36:22.440829+00 2025-05-08 16:36:22.44084+00 f t SUBTOTAL 0.00 1 102 \N +3310 2025-05-08 16:36:22.442849+00 2025-05-08 16:36:22.442856+00 f t DESCUENTO 0.00 2 102 \N +3311 2025-05-08 16:36:22.443957+00 2025-05-08 16:36:22.443966+00 f t TOTAL 0.00 3 102 \N +3312 2025-05-08 16:36:22.444876+00 2025-05-08 16:36:22.444882+00 f t ADELANTO 0.00 4 102 \N +3581 2025-05-08 22:34:37.277658+00 2025-05-08 22:34:37.277671+00 f t SUBTOTAL 0.00 1 107 \N +3349 2025-05-08 18:08:23.01015+00 2025-05-08 18:08:23.010162+00 f t SUBTOTAL 38500.00 1 104 \N +3350 2025-05-08 18:08:23.011922+00 2025-05-08 18:08:23.011932+00 f t DESCUENTO 0.00 2 104 \N +3351 2025-05-08 18:08:23.01331+00 2025-05-08 18:08:23.013317+00 f t TOTAL 38500.00 3 104 \N +3352 2025-05-08 18:08:23.014536+00 2025-05-08 18:08:23.014543+00 f t ADELANTO 17000.00 4 104 \N +1981 2025-05-04 14:04:43.776439+00 2025-05-04 14:04:43.776447+00 f t SUBTOTAL 59500.00 1 58 \N +1437 2025-05-01 14:00:13.022813+00 2025-05-01 14:00:13.022826+00 f t SUBTOTAL 19000.00 1 41 \N +1438 2025-05-01 14:00:13.025795+00 2025-05-01 14:00:13.025809+00 f t DESCUENTO 0.00 2 41 \N +1439 2025-05-01 14:00:13.028154+00 2025-05-01 14:00:13.028166+00 f t TOTAL 19000.00 3 41 \N +1440 2025-05-01 14:00:13.030804+00 2025-05-01 14:00:13.030817+00 f t ADELANTO 3500.00 4 41 \N +1982 2025-05-04 14:04:43.77799+00 2025-05-04 14:04:43.777997+00 f t DESCUENTO 0.00 2 58 \N +1983 2025-05-04 14:04:43.779016+00 2025-05-04 14:04:43.779022+00 f t TOTAL 59500.00 3 58 \N +1984 2025-05-04 14:04:43.780048+00 2025-05-04 14:04:43.780054+00 f t ADELANTO 15500.00 4 58 \N +3582 2025-05-08 22:34:37.279655+00 2025-05-08 22:34:37.279662+00 f t DESCUENTO 0.00 2 107 \N +1445 2025-05-01 18:24:32.96192+00 2025-05-01 18:24:32.961929+00 f t SUBTOTAL 0.00 1 42 \N +1446 2025-05-01 18:24:32.963502+00 2025-05-01 18:24:32.963511+00 f t DESCUENTO 0.00 2 42 \N +1447 2025-05-01 18:24:32.964856+00 2025-05-01 18:24:32.964863+00 f t TOTAL 0.00 3 42 \N +1448 2025-05-01 18:24:32.965983+00 2025-05-01 18:24:32.965988+00 f t ADELANTO 0.00 4 42 \N +3583 2025-05-08 22:34:37.280903+00 2025-05-08 22:34:37.280909+00 f t TOTAL 0.00 3 107 \N +3584 2025-05-08 22:34:37.282208+00 2025-05-08 22:34:37.282214+00 f t ADELANTO 0.00 4 107 \N +3976 2025-05-08 22:50:52.391702+00 2025-05-08 22:50:52.391709+00 f t ADELANTO 14000.00 4 110 \N +3993 2025-05-08 22:52:40.71511+00 2025-05-08 22:52:40.715119+00 f t SUBTOTAL 0.00 1 111 \N +3994 2025-05-08 22:52:40.718462+00 2025-05-08 22:52:40.718473+00 f t DESCUENTO 0.00 2 111 \N +3995 2025-05-08 22:52:40.723635+00 2025-05-08 22:52:40.723646+00 f t TOTAL 0.00 3 111 \N +3996 2025-05-08 22:52:40.727088+00 2025-05-08 22:52:40.727099+00 f t ADELANTO 0.00 4 111 \N +4225 2025-05-09 16:31:41.702229+00 2025-05-09 16:31:41.702242+00 f t SUBTOTAL 25000.00 1 117 \N +4226 2025-05-09 16:31:41.704511+00 2025-05-09 16:31:41.704522+00 f t DESCUENTO 0.00 2 117 \N +4227 2025-05-09 16:31:41.706344+00 2025-05-09 16:31:41.706355+00 f t TOTAL 25000.00 3 117 \N +4228 2025-05-09 16:31:41.708098+00 2025-05-09 16:31:41.708108+00 f t ADELANTO 25000.00 4 117 \N +12729 2025-05-16 02:28:42.111934+00 2025-05-16 02:28:42.111947+00 f t SUBTOTAL 0.00 1 326 \N +12730 2025-05-16 02:28:42.114452+00 2025-05-16 02:28:42.114466+00 f t DESCUENTO 0.00 2 326 \N +12731 2025-05-16 02:28:42.116448+00 2025-05-16 02:28:42.116459+00 f t TOTAL 0.00 3 326 \N +4869 2025-05-09 20:11:17.230135+00 2025-05-09 20:11:17.230145+00 f t SUBTOTAL 0.00 1 130 \N +4870 2025-05-09 20:11:17.232211+00 2025-05-09 20:11:17.232223+00 f t DESCUENTO 0.00 2 130 \N +4871 2025-05-09 20:11:17.234158+00 2025-05-09 20:11:17.234169+00 f t TOTAL 0.00 3 130 \N +4872 2025-05-09 20:11:17.236035+00 2025-05-09 20:11:17.236046+00 f t ADELANTO 0.00 4 130 \N +5153 2025-05-09 20:20:10.720184+00 2025-05-09 20:20:10.720199+00 f t SUBTOTAL 0.00 1 131 \N +5154 2025-05-09 20:20:10.723344+00 2025-05-09 20:20:10.723387+00 f t DESCUENTO 0.00 2 131 \N +5155 2025-05-09 20:20:10.725608+00 2025-05-09 20:20:10.725618+00 f t TOTAL 0.00 3 131 \N +5156 2025-05-09 20:20:10.728019+00 2025-05-09 20:20:10.728032+00 f t ADELANTO 0.00 4 131 \N +4081 2025-05-09 11:45:02.126658+00 2025-05-09 11:45:02.126675+00 f t SUBTOTAL 0.00 1 113 \N +4082 2025-05-09 11:45:02.135588+00 2025-05-09 11:45:02.135603+00 f t DESCUENTO 0.00 2 113 \N +4083 2025-05-09 11:45:02.139665+00 2025-05-09 11:45:02.139679+00 f t TOTAL 0.00 3 113 \N +4084 2025-05-09 11:45:02.149225+00 2025-05-09 11:45:02.14924+00 f t ADELANTO 0.00 4 113 \N +5305 2025-05-10 14:38:52.664964+00 2025-05-10 14:38:52.664974+00 f t SUBTOTAL 0.00 1 136 \N +5306 2025-05-10 14:38:52.670255+00 2025-05-10 14:38:52.670263+00 f t DESCUENTO 0.00 2 136 \N +5307 2025-05-10 14:38:52.671898+00 2025-05-10 14:38:52.671905+00 f t TOTAL 0.00 3 136 \N +5308 2025-05-10 14:38:52.673206+00 2025-05-10 14:38:52.673212+00 f t ADELANTO 0.00 4 136 \N +4577 2025-05-09 18:53:15.416822+00 2025-05-09 18:53:15.416835+00 f t SUBTOTAL 0.00 1 127 \N +4578 2025-05-09 18:53:15.419266+00 2025-05-09 18:53:15.419278+00 f t DESCUENTO 0.00 2 127 \N +4579 2025-05-09 18:53:15.421426+00 2025-05-09 18:53:15.421437+00 f t TOTAL 0.00 3 127 \N +4580 2025-05-09 18:53:15.423647+00 2025-05-09 18:53:15.423658+00 f t ADELANTO 0.00 4 127 \N +4341 2025-05-09 16:59:53.034933+00 2025-05-09 16:59:53.034943+00 f t SUBTOTAL 0.00 1 122 \N +4342 2025-05-09 16:59:53.038667+00 2025-05-09 16:59:53.038679+00 f t DESCUENTO 0.00 2 122 \N +4343 2025-05-09 16:59:53.040837+00 2025-05-09 16:59:53.040846+00 f t TOTAL 0.00 3 122 \N +4344 2025-05-09 16:59:53.042793+00 2025-05-09 16:59:53.042802+00 f t ADELANTO 0.00 4 122 \N +5225 2025-05-10 01:10:25.510315+00 2025-05-10 01:10:25.510328+00 f t SUBTOTAL 0.00 1 134 \N +5226 2025-05-10 01:10:25.512645+00 2025-05-10 01:10:25.512657+00 f t DESCUENTO 0.00 2 134 \N +5227 2025-05-10 01:10:25.51453+00 2025-05-10 01:10:25.514541+00 f t TOTAL 0.00 3 134 \N +5228 2025-05-10 01:10:25.516384+00 2025-05-10 01:10:25.516394+00 f t ADELANTO 0.00 4 134 \N +5357 2025-05-10 14:57:27.414307+00 2025-05-10 14:57:27.414319+00 f t SUBTOTAL 0.00 1 137 \N +5358 2025-05-10 14:57:27.416596+00 2025-05-10 14:57:27.416608+00 f t DESCUENTO 0.00 2 137 \N +5359 2025-05-10 14:57:27.41808+00 2025-05-10 14:57:27.41809+00 f t TOTAL 0.00 3 137 \N +5360 2025-05-10 14:57:27.419484+00 2025-05-10 14:57:27.419495+00 f t ADELANTO 0.00 4 137 \N +5653 2025-05-11 15:15:59.771772+00 2025-05-11 15:15:59.771781+00 f t SUBTOTAL 52000.00 1 145 \N +5654 2025-05-11 15:15:59.773652+00 2025-05-11 15:15:59.773661+00 f t DESCUENTO 0.00 2 145 \N +5655 2025-05-11 15:15:59.775457+00 2025-05-11 15:15:59.775468+00 f t TOTAL 52000.00 3 145 \N +5656 2025-05-11 15:15:59.777431+00 2025-05-11 15:15:59.777442+00 f t ADELANTO 12000.00 4 145 \N +5381 2025-05-10 19:39:05.899627+00 2025-05-10 19:39:05.899637+00 f t SUBTOTAL 0.00 1 139 \N +5382 2025-05-10 19:39:05.902101+00 2025-05-10 19:39:05.902111+00 f t DESCUENTO 0.00 2 139 \N +5383 2025-05-10 19:39:05.903617+00 2025-05-10 19:39:05.903627+00 f t TOTAL 0.00 3 139 \N +5384 2025-05-10 19:39:05.904937+00 2025-05-10 19:39:05.904945+00 f t ADELANTO 0.00 4 139 \N +2029 2025-05-04 16:00:40.883315+00 2025-05-04 16:00:40.883327+00 f t SUBTOTAL 46000.00 1 60 \N +2030 2025-05-04 16:00:40.885089+00 2025-05-04 16:00:40.885096+00 f t DESCUENTO 0.00 2 60 \N +2031 2025-05-04 16:00:40.886271+00 2025-05-04 16:00:40.88628+00 f t TOTAL 46000.00 3 60 \N +2032 2025-05-04 16:00:40.887719+00 2025-05-04 16:00:40.887725+00 f t ADELANTO 9500.00 4 60 \N +6145 2025-05-12 03:00:45.523623+00 2025-05-12 03:00:45.523635+00 f t SUBTOTAL 88000.00 1 152 \N +6146 2025-05-12 03:00:45.525534+00 2025-05-12 03:00:45.525546+00 f t DESCUENTO 0.00 2 152 \N +6147 2025-05-12 03:00:45.52743+00 2025-05-12 03:00:45.527441+00 f t TOTAL 88000.00 3 152 \N +6148 2025-05-12 03:00:45.529199+00 2025-05-12 03:00:45.529208+00 f t ADELANTO 25000.00 4 152 \N +12732 2025-05-16 02:28:42.118216+00 2025-05-16 02:28:42.118227+00 f t ADELANTO 0.00 4 326 \N +5737 2025-05-11 15:50:48.968573+00 2025-05-11 15:50:48.968585+00 f t SUBTOTAL 46000.00 1 147 \N +5738 2025-05-11 15:50:48.982982+00 2025-05-11 15:50:48.983001+00 f t DESCUENTO 0.00 2 147 \N +5739 2025-05-11 15:50:48.98581+00 2025-05-11 15:50:48.985822+00 f t TOTAL 46000.00 3 147 \N +5740 2025-05-11 15:50:48.988708+00 2025-05-11 15:50:48.988722+00 f t ADELANTO 9500.00 4 147 \N +6861 2025-05-12 16:34:15.773946+00 2025-05-12 16:34:15.773959+00 f t SUBTOTAL 25000.00 1 167 \N +6862 2025-05-12 16:34:15.775873+00 2025-05-12 16:34:15.775885+00 f t DESCUENTO 0.00 2 167 \N +6863 2025-05-12 16:34:15.777388+00 2025-05-12 16:34:15.777399+00 f t TOTAL 25000.00 3 167 \N +5161 2025-05-09 22:35:48.454406+00 2025-05-09 22:35:48.454415+00 f t SUBTOTAL 0.00 1 132 \N +5162 2025-05-09 22:35:48.455848+00 2025-05-09 22:35:48.455854+00 f t DESCUENTO 0.00 2 132 \N +5163 2025-05-09 22:35:48.457034+00 2025-05-09 22:35:48.457042+00 f t TOTAL 0.00 3 132 \N +5164 2025-05-09 22:35:48.458325+00 2025-05-09 22:35:48.458331+00 f t ADELANTO 0.00 4 132 \N +3353 2025-05-08 18:08:23.017023+00 2025-05-08 18:08:23.017034+00 f t SUBTOTAL 77000.00 1 104 \N +3354 2025-05-08 18:08:23.01853+00 2025-05-08 18:08:23.01854+00 f t DESCUENTO 0.00 2 104 \N +3355 2025-05-08 18:08:23.020039+00 2025-05-08 18:08:23.020048+00 f t TOTAL 77000.00 3 104 \N +3356 2025-05-08 18:08:23.021834+00 2025-05-08 18:08:23.021843+00 f t ADELANTO 17000.00 4 104 \N +5621 2025-05-11 15:08:34.093932+00 2025-05-11 15:08:34.093941+00 f t SUBTOTAL 46000.00 1 144 \N +5622 2025-05-11 15:08:34.096086+00 2025-05-11 15:08:34.096095+00 f t DESCUENTO 0.00 2 144 \N +2721 2025-05-08 12:17:53.902429+00 2025-05-08 12:17:53.902451+00 f t SUBTOTAL 0.00 1 96 \N +2722 2025-05-08 12:17:53.904586+00 2025-05-08 12:17:53.904594+00 f t DESCUENTO 0.00 2 96 \N +2723 2025-05-08 12:17:53.905973+00 2025-05-08 12:17:53.905979+00 f t TOTAL 0.00 3 96 \N +2724 2025-05-08 12:17:53.907061+00 2025-05-08 12:17:53.907067+00 f t ADELANTO 0.00 4 96 \N +5623 2025-05-11 15:08:34.097921+00 2025-05-11 15:08:34.097934+00 f t TOTAL 46000.00 3 144 \N +5624 2025-05-11 15:08:34.099801+00 2025-05-11 15:08:34.099811+00 f t ADELANTO 9500.00 4 144 \N +4017 2025-05-09 02:07:27.02615+00 2025-05-09 02:07:27.026161+00 f t SUBTOTAL 92000.00 1 112 \N +4019 2025-05-09 02:07:27.028339+00 2025-05-09 02:07:27.028348+00 f t DESCUENTO 0.00 2 112 \N +4021 2025-05-09 02:07:27.030347+00 2025-05-09 02:07:27.030356+00 f t TOTAL 92000.00 3 112 \N +4023 2025-05-09 02:07:27.031921+00 2025-05-09 02:07:27.03193+00 f t ADELANTO 19000.00 4 112 \N +3789 2025-05-08 22:44:43.232939+00 2025-05-08 22:44:43.232951+00 f t SUBTOTAL 84000.00 1 109 \N +3790 2025-05-08 22:44:43.234678+00 2025-05-08 22:44:43.234686+00 f t DESCUENTO 0.00 2 109 \N +3791 2025-05-08 22:44:43.236227+00 2025-05-08 22:44:43.236234+00 f t TOTAL 84000.00 3 109 \N +3792 2025-05-08 22:44:43.237445+00 2025-05-08 22:44:43.237453+00 f t ADELANTO 28000.00 4 109 \N +5473 2025-05-11 03:05:46.560259+00 2025-05-11 03:05:46.560272+00 f t SUBTOTAL 0.00 1 142 \N +5474 2025-05-11 03:05:46.56296+00 2025-05-11 03:05:46.562973+00 f t DESCUENTO 0.00 2 142 \N +5475 2025-05-11 03:05:46.564922+00 2025-05-11 03:05:46.564934+00 f t TOTAL 0.00 3 142 \N +5476 2025-05-11 03:05:46.566646+00 2025-05-11 03:05:46.566656+00 f t ADELANTO 0.00 4 142 \N +4581 2025-05-09 18:53:17.717606+00 2025-05-09 18:53:17.717616+00 f t SUBTOTAL 0.00 1 128 \N +4582 2025-05-09 18:53:17.720674+00 2025-05-09 18:53:17.720686+00 f t DESCUENTO 0.00 2 128 \N +4583 2025-05-09 18:53:17.722662+00 2025-05-09 18:53:17.722674+00 f t TOTAL 0.00 3 128 \N +4584 2025-05-09 18:53:17.724764+00 2025-05-09 18:53:17.724775+00 f t ADELANTO 0.00 4 128 \N +4325 2025-05-09 16:57:21.016978+00 2025-05-09 16:57:21.016991+00 f t SUBTOTAL 0.00 1 121 \N +4326 2025-05-09 16:57:21.019266+00 2025-05-09 16:57:21.019276+00 f t DESCUENTO 0.00 2 121 \N +4327 2025-05-09 16:57:21.020815+00 2025-05-09 16:57:21.020822+00 f t TOTAL 0.00 3 121 \N +4328 2025-05-09 16:57:21.022341+00 2025-05-09 16:57:21.02235+00 f t ADELANTO 0.00 4 121 \N +6864 2025-05-12 16:34:15.778905+00 2025-05-12 16:34:15.778915+00 f t ADELANTO 25000.00 4 167 \N +7413 2025-05-12 22:06:02.650227+00 2025-05-12 22:06:02.650241+00 f t SUBTOTAL 0.00 1 186 \N +7414 2025-05-12 22:06:02.652088+00 2025-05-12 22:06:02.652101+00 f t DESCUENTO 0.00 2 186 \N +6333 2025-05-12 03:35:53.768434+00 2025-05-12 03:35:53.768446+00 f t SUBTOTAL 46000.00 1 155 \N +4089 2025-05-09 11:46:20.269515+00 2025-05-09 11:46:20.269526+00 f t SUBTOTAL 0.00 1 114 \N +4090 2025-05-09 11:46:20.271767+00 2025-05-09 11:46:20.271776+00 f t DESCUENTO 0.00 2 114 \N +4091 2025-05-09 11:46:20.273208+00 2025-05-09 11:46:20.273214+00 f t TOTAL 0.00 3 114 \N +4092 2025-05-09 11:46:20.274347+00 2025-05-09 11:46:20.274352+00 f t ADELANTO 0.00 4 114 \N +5233 2025-05-10 11:25:10.185068+00 2025-05-10 11:25:10.185078+00 f t SUBTOTAL 0.00 1 135 \N +5234 2025-05-10 11:25:10.186641+00 2025-05-10 11:25:10.186649+00 f t DESCUENTO 0.00 2 135 \N +5235 2025-05-10 11:25:10.188147+00 2025-05-10 11:25:10.188156+00 f t TOTAL 0.00 3 135 \N +5236 2025-05-10 11:25:10.189663+00 2025-05-10 11:25:10.189669+00 f t ADELANTO 0.00 4 135 \N +4501 2025-05-09 17:52:31.934953+00 2025-05-09 17:52:31.934967+00 f t SUBTOTAL 69000.00 1 124 \N +4502 2025-05-09 17:52:31.937625+00 2025-05-09 17:52:31.937637+00 f t DESCUENTO 0.00 2 124 \N +4503 2025-05-09 17:52:31.940096+00 2025-05-09 17:52:31.94011+00 f t TOTAL 69000.00 3 124 \N +4504 2025-05-09 17:52:31.942881+00 2025-05-09 17:52:31.942895+00 f t ADELANTO 14000.00 4 124 \N +6334 2025-05-12 03:35:53.772973+00 2025-05-12 03:35:53.772987+00 f t DESCUENTO 0.00 2 155 \N +6335 2025-05-12 03:35:53.777207+00 2025-05-12 03:35:53.77722+00 f t TOTAL 46000.00 3 155 \N +6336 2025-05-12 03:35:53.779483+00 2025-05-12 03:35:53.779493+00 f t ADELANTO 11000.00 4 155 \N +5365 2025-05-10 17:31:28.391471+00 2025-05-10 17:31:28.391481+00 f t SUBTOTAL 0.00 1 138 \N +5366 2025-05-10 17:31:28.393017+00 2025-05-10 17:31:28.393024+00 f t DESCUENTO 0.00 2 138 \N +5367 2025-05-10 17:31:28.394232+00 2025-05-10 17:31:28.394237+00 f t TOTAL 0.00 3 138 \N +5368 2025-05-10 17:31:28.395613+00 2025-05-10 17:31:28.395618+00 f t ADELANTO 0.00 4 138 \N +5389 2025-05-10 21:08:28.083146+00 2025-05-10 21:08:28.083158+00 f t SUBTOTAL 0.00 1 140 \N +5390 2025-05-10 21:08:28.084892+00 2025-05-10 21:08:28.084902+00 f t DESCUENTO 0.00 2 140 \N +5391 2025-05-10 21:08:28.086433+00 2025-05-10 21:08:28.086441+00 f t TOTAL 0.00 3 140 \N +5392 2025-05-10 21:08:28.087805+00 2025-05-10 21:08:28.087812+00 f t ADELANTO 0.00 4 140 \N +5981 2025-05-12 00:22:59.609251+00 2025-05-12 00:22:59.609263+00 f t SUBTOTAL 25000.00 1 151 \N +5982 2025-05-12 00:22:59.611505+00 2025-05-12 00:22:59.611516+00 f t DESCUENTO 0.00 2 151 \N +5983 2025-05-12 00:22:59.613175+00 2025-05-12 00:22:59.613187+00 f t TOTAL 25000.00 3 151 \N +5984 2025-05-12 00:22:59.615083+00 2025-05-12 00:22:59.615095+00 f t ADELANTO 25000.00 4 151 \N +4861 2025-05-09 19:18:15.906105+00 2025-05-09 19:18:15.906115+00 f t SUBTOTAL 99500.00 1 129 \N +4862 2025-05-09 19:18:15.908285+00 2025-05-09 19:18:15.908298+00 f t DESCUENTO 0.00 2 129 \N +4863 2025-05-09 19:18:15.910598+00 2025-05-09 19:18:15.910612+00 f t TOTAL 99500.00 3 129 \N +4864 2025-05-09 19:18:15.913181+00 2025-05-09 19:18:15.913194+00 f t ADELANTO 64500.00 4 129 \N +5853 2025-05-11 20:53:27.05391+00 2025-05-11 20:53:27.053918+00 f t SUBTOTAL 46000.00 1 150 \N +5854 2025-05-11 20:53:27.055598+00 2025-05-11 20:53:27.055605+00 f t DESCUENTO 0.00 2 150 \N +5855 2025-05-11 20:53:27.057175+00 2025-05-11 20:53:27.057182+00 f t TOTAL 46000.00 3 150 \N +5856 2025-05-11 20:53:27.058686+00 2025-05-11 20:53:27.058696+00 f t ADELANTO 9500.00 4 150 \N +6269 2025-05-12 03:06:10.665319+00 2025-05-12 03:06:10.665329+00 f t SUBTOTAL 0.00 1 154 \N +6270 2025-05-12 03:06:10.667522+00 2025-05-12 03:06:10.667534+00 f t DESCUENTO 0.00 2 154 \N +6271 2025-05-12 03:06:10.66898+00 2025-05-12 03:06:10.668987+00 f t TOTAL 0.00 3 154 \N +6272 2025-05-12 03:06:10.670233+00 2025-05-12 03:06:10.670252+00 f t ADELANTO 0.00 4 154 \N +2801 2025-05-08 12:29:37.652269+00 2025-05-08 12:29:37.652278+00 f t SUBTOTAL 0.00 1 98 \N +2802 2025-05-08 12:29:37.654329+00 2025-05-08 12:29:37.65434+00 f t DESCUENTO 0.00 2 98 \N +2803 2025-05-08 12:29:37.655747+00 2025-05-08 12:29:37.655755+00 f t TOTAL 0.00 3 98 \N +2804 2025-05-08 12:29:37.657071+00 2025-05-08 12:29:37.657078+00 f t ADELANTO 0.00 4 98 \N +3473 2025-05-08 22:28:24.228038+00 2025-05-08 22:28:24.228047+00 f t SUBTOTAL 21000.00 1 106 \N +3474 2025-05-08 22:28:24.230843+00 2025-05-08 22:28:24.230853+00 f t DESCUENTO 0.00 2 106 \N +3475 2025-05-08 22:28:24.23243+00 2025-05-08 22:28:24.232439+00 f t TOTAL 21000.00 3 106 \N +3476 2025-05-08 22:28:24.233797+00 2025-05-08 22:28:24.233804+00 f t ADELANTO 7000.00 4 106 \N +5437 2025-05-10 23:49:17.944438+00 2025-05-10 23:49:17.94445+00 f t SUBTOTAL 46000.00 1 141 \N +5438 2025-05-10 23:49:17.946327+00 2025-05-10 23:49:17.946337+00 f t DESCUENTO 0.00 2 141 \N +5439 2025-05-10 23:49:17.947746+00 2025-05-10 23:49:17.947756+00 f t TOTAL 46000.00 3 141 \N +5440 2025-05-10 23:49:17.949154+00 2025-05-10 23:49:17.949163+00 f t ADELANTO 9500.00 4 141 \N +3149 2025-05-08 12:57:06.692611+00 2025-05-08 12:57:06.692621+00 f t SUBTOTAL 0.00 1 101 \N +3150 2025-05-08 12:57:06.694773+00 2025-05-08 12:57:06.69478+00 f t DESCUENTO 0.00 2 101 \N +3151 2025-05-08 12:57:06.696172+00 2025-05-08 12:57:06.696182+00 f t TOTAL 0.00 3 101 \N +3152 2025-05-08 12:57:06.697539+00 2025-05-08 12:57:06.697546+00 f t ADELANTO 0.00 4 101 \N +7057 2025-05-12 19:19:41.331603+00 2025-05-12 19:19:41.331612+00 f t SUBTOTAL 0.00 1 175 \N +7058 2025-05-12 19:19:41.333518+00 2025-05-12 19:19:41.333525+00 f t DESCUENTO 0.00 2 175 \N +4018 2025-05-09 02:07:27.027286+00 2025-05-09 02:07:27.0273+00 f t SUBTOTAL 92000.00 1 112 \N +4020 2025-05-09 02:07:27.030086+00 2025-05-09 02:07:27.030093+00 f t DESCUENTO 0.00 2 112 \N +4022 2025-05-09 02:07:27.031565+00 2025-05-09 02:07:27.031572+00 f t TOTAL 92000.00 3 112 \N +4024 2025-05-09 02:07:27.032964+00 2025-05-09 02:07:27.03297+00 f t ADELANTO 19000.00 4 112 \N +2493 2025-05-06 07:59:14.482551+00 2025-05-06 07:59:14.482563+00 f t SUBTOTAL 68750.00 1 84 \N +2494 2025-05-06 07:59:14.484276+00 2025-05-06 07:59:14.484286+00 f t DESCUENTO 0.00 2 84 \N +2495 2025-05-06 07:59:14.48585+00 2025-05-06 07:59:14.48586+00 f t TOTAL 68750.00 3 84 \N +2496 2025-05-06 07:59:14.487147+00 2025-05-06 07:59:14.487155+00 f t ADELANTO 13750.00 4 84 \N +4141 2025-05-09 13:32:02.364892+00 2025-05-09 13:32:02.364905+00 f t SUBTOTAL 0.00 1 115 \N +4142 2025-05-09 13:32:02.367764+00 2025-05-09 13:32:02.367776+00 f t DESCUENTO 0.00 2 115 \N +4143 2025-05-09 13:32:02.369552+00 2025-05-09 13:32:02.369563+00 f t TOTAL 0.00 3 115 \N +4144 2025-05-09 13:32:02.371599+00 2025-05-09 13:32:02.371609+00 f t ADELANTO 0.00 4 115 \N +4161 2025-05-09 13:33:51.87106+00 2025-05-09 13:33:51.871074+00 f t SUBTOTAL 0.00 1 116 \N +4162 2025-05-09 13:33:51.873528+00 2025-05-09 13:33:51.873536+00 f t DESCUENTO 0.00 2 116 \N +4163 2025-05-09 13:33:51.875221+00 2025-05-09 13:33:51.875232+00 f t TOTAL 0.00 3 116 \N +4164 2025-05-09 13:33:51.877124+00 2025-05-09 13:33:51.877135+00 f t ADELANTO 0.00 4 116 \N +4421 2025-05-09 17:11:28.956637+00 2025-05-09 17:11:28.95665+00 f t SUBTOTAL 0.00 1 123 \N +4422 2025-05-09 17:11:28.95932+00 2025-05-09 17:11:28.959329+00 f t DESCUENTO 0.00 2 123 \N +4423 2025-05-09 17:11:28.960924+00 2025-05-09 17:11:28.960933+00 f t TOTAL 0.00 3 123 \N +4424 2025-05-09 17:11:28.962484+00 2025-05-09 17:11:28.962493+00 f t ADELANTO 0.00 4 123 \N +4309 2025-05-09 16:51:28.053039+00 2025-05-09 16:51:28.053053+00 f t SUBTOTAL 0.00 1 120 \N +4310 2025-05-09 16:51:28.055797+00 2025-05-09 16:51:28.05581+00 f t DESCUENTO 0.00 2 120 \N +4311 2025-05-09 16:51:28.058127+00 2025-05-09 16:51:28.05814+00 f t TOTAL 0.00 3 120 \N +4312 2025-05-09 16:51:28.060231+00 2025-05-09 16:51:28.060244+00 f t ADELANTO 0.00 4 120 \N +5745 2025-05-11 16:24:55.009581+00 2025-05-11 16:24:55.009594+00 f t SUBTOTAL 0.00 1 148 \N +5746 2025-05-11 16:24:55.011669+00 2025-05-11 16:24:55.011679+00 f t DESCUENTO 0.00 2 148 \N +5747 2025-05-11 16:24:55.013564+00 2025-05-11 16:24:55.013575+00 f t TOTAL 0.00 3 148 \N +5748 2025-05-11 16:24:55.015303+00 2025-05-11 16:24:55.015313+00 f t ADELANTO 0.00 4 148 \N +6221 2025-05-12 03:03:32.837121+00 2025-05-12 03:03:32.837134+00 f t SUBTOTAL 66500.00 1 153 \N +6222 2025-05-12 03:03:32.842576+00 2025-05-12 03:03:32.842591+00 f t DESCUENTO 0.00 2 153 \N +6223 2025-05-12 03:03:32.845397+00 2025-05-12 03:03:32.84541+00 f t TOTAL 66500.00 3 153 \N +6224 2025-05-12 03:03:32.847903+00 2025-05-12 03:03:32.847917+00 f t ADELANTO 16500.00 4 153 \N +5789 2025-05-11 16:40:22.29243+00 2025-05-11 16:40:22.292441+00 f t SUBTOTAL 46000.00 1 149 \N +5790 2025-05-11 16:40:22.294283+00 2025-05-11 16:40:22.294292+00 f t DESCUENTO 0.00 2 149 \N +5791 2025-05-11 16:40:22.295767+00 2025-05-11 16:40:22.295776+00 f t TOTAL 46000.00 3 149 \N +5792 2025-05-11 16:40:22.297245+00 2025-05-11 16:40:22.297252+00 f t ADELANTO 11000.00 4 149 \N +5541 2025-05-11 14:36:10.566045+00 2025-05-11 14:36:10.566058+00 f t SUBTOTAL 52000.00 1 143 \N +5542 2025-05-11 14:36:10.568319+00 2025-05-11 14:36:10.568328+00 f t DESCUENTO 0.00 2 143 \N +5543 2025-05-11 14:36:10.570206+00 2025-05-11 14:36:10.570213+00 f t TOTAL 52000.00 3 143 \N +5544 2025-05-11 14:36:10.57545+00 2025-05-11 14:36:10.575462+00 f t ADELANTO 12000.00 4 143 \N +2781 2025-05-08 12:22:24.297058+00 2025-05-08 12:22:24.297067+00 f t SUBTOTAL 21000.00 1 97 \N +2782 2025-05-08 12:22:24.298206+00 2025-05-08 12:22:24.298214+00 f t SUBTOTAL 21000.00 1 97 \N +2783 2025-05-08 12:22:24.298596+00 2025-05-08 12:22:24.298603+00 f t DESCUENTO 0.00 2 97 \N +2784 2025-05-08 12:22:24.300006+00 2025-05-08 12:22:24.300015+00 f t TOTAL 21000.00 3 97 \N +2785 2025-05-08 12:22:24.300887+00 2025-05-08 12:22:24.300894+00 f t DESCUENTO 0.00 2 97 \N +2786 2025-05-08 12:22:24.30149+00 2025-05-08 12:22:24.301496+00 f t ADELANTO 7000.00 4 97 \N +2787 2025-05-08 12:22:24.302287+00 2025-05-08 12:22:24.302294+00 f t TOTAL 21000.00 3 97 \N +2788 2025-05-08 12:22:24.303488+00 2025-05-08 12:22:24.303494+00 f t ADELANTO 7000.00 4 97 \N +2649 2025-05-07 16:27:16.384953+00 2025-05-07 16:27:16.384965+00 f t SUBTOTAL 21000.00 1 91 \N +2650 2025-05-07 16:27:16.386884+00 2025-05-07 16:27:16.386894+00 f t DESCUENTO 0.00 2 91 \N +2651 2025-05-07 16:27:16.388423+00 2025-05-07 16:27:16.388431+00 f t TOTAL 21000.00 3 91 \N +2652 2025-05-07 16:27:16.389739+00 2025-05-07 16:27:16.389749+00 f t ADELANTO 7000.00 4 91 \N +2669 2025-05-07 22:51:11.862408+00 2025-05-07 22:51:11.86242+00 f t SUBTOTAL 7500.00 1 92 \N +2670 2025-05-07 22:51:11.864602+00 2025-05-07 22:51:11.864614+00 f t DESCUENTO 0.00 2 92 \N +2671 2025-05-07 22:51:11.866612+00 2025-05-07 22:51:11.866651+00 f t TOTAL 7500.00 3 92 \N +2672 2025-05-07 22:51:11.86828+00 2025-05-07 22:51:11.868289+00 f t ADELANTO 2500.00 4 92 \N +2677 2025-05-07 23:19:14.449796+00 2025-05-07 23:19:14.44981+00 f t SUBTOTAL 0.00 1 93 \N +2678 2025-05-07 23:19:14.451705+00 2025-05-07 23:19:14.451716+00 f t DESCUENTO 0.00 2 93 \N +2679 2025-05-07 23:19:14.453583+00 2025-05-07 23:19:14.45359+00 f t TOTAL 0.00 3 93 \N +2680 2025-05-07 23:19:14.455114+00 2025-05-07 23:19:14.455121+00 f t ADELANTO 0.00 4 93 \N +2685 2025-05-08 00:22:35.445147+00 2025-05-08 00:22:35.445156+00 f t SUBTOTAL 0.00 1 94 \N +2686 2025-05-08 00:22:35.446645+00 2025-05-08 00:22:35.446653+00 f t DESCUENTO 0.00 2 94 \N +2687 2025-05-08 00:22:35.448071+00 2025-05-08 00:22:35.448077+00 f t TOTAL 0.00 3 94 \N +2688 2025-05-08 00:22:35.449202+00 2025-05-08 00:22:35.449208+00 f t ADELANTO 0.00 4 94 \N +2705 2025-05-08 11:05:17.329904+00 2025-05-08 11:05:17.329917+00 f t SUBTOTAL 0.00 1 95 \N +2706 2025-05-08 11:05:17.332442+00 2025-05-08 11:05:17.33245+00 f t DESCUENTO 0.00 2 95 \N +2707 2025-05-08 11:05:17.333938+00 2025-05-08 11:05:17.333947+00 f t TOTAL 0.00 3 95 \N +2708 2025-05-08 11:05:17.335736+00 2025-05-08 11:05:17.335747+00 f t ADELANTO 0.00 4 95 \N +7059 2025-05-12 19:19:41.334796+00 2025-05-12 19:19:41.334804+00 f t TOTAL 0.00 3 175 \N +7060 2025-05-12 19:19:41.336021+00 2025-05-12 19:19:41.336026+00 f t ADELANTO 0.00 4 175 \N +6693 2025-05-12 16:06:49.188838+00 2025-05-12 16:06:49.18885+00 f t SUBTOTAL 0.00 1 165 \N +6694 2025-05-12 16:06:49.191112+00 2025-05-12 16:06:49.191123+00 f t DESCUENTO 0.00 2 165 \N +6695 2025-05-12 16:06:49.192795+00 2025-05-12 16:06:49.192804+00 f t TOTAL 0.00 3 165 \N +6696 2025-05-12 16:06:49.19435+00 2025-05-12 16:06:49.194359+00 f t ADELANTO 0.00 4 165 \N +7415 2025-05-12 22:06:02.653956+00 2025-05-12 22:06:02.653969+00 f t TOTAL 0.00 3 186 \N +7416 2025-05-12 22:06:02.656116+00 2025-05-12 22:06:02.656127+00 f t ADELANTO 0.00 4 186 \N +6561 2025-05-12 14:59:30.761618+00 2025-05-12 14:59:30.761631+00 f t SUBTOTAL 0.00 1 159 \N +6562 2025-05-12 14:59:30.764047+00 2025-05-12 14:59:30.764057+00 f t DESCUENTO 0.00 2 159 \N +6563 2025-05-12 14:59:30.76552+00 2025-05-12 14:59:30.765527+00 f t TOTAL 0.00 3 159 \N +6564 2025-05-12 14:59:30.76672+00 2025-05-12 14:59:30.766726+00 f t ADELANTO 0.00 4 159 \N +6369 2025-05-12 06:15:43.692205+00 2025-05-12 06:15:43.692214+00 f t SUBTOTAL 0.00 1 156 \N +6370 2025-05-12 06:15:43.694201+00 2025-05-12 06:15:43.694209+00 f t DESCUENTO 0.00 2 156 \N +6371 2025-05-12 06:15:43.696671+00 2025-05-12 06:15:43.696679+00 f t TOTAL 0.00 3 156 \N +6372 2025-05-12 06:15:43.698382+00 2025-05-12 06:15:43.698392+00 f t ADELANTO 0.00 4 156 \N +7457 2025-05-12 23:22:32.605455+00 2025-05-12 23:22:32.605464+00 f t SUBTOTAL 25000.00 1 187 \N +7458 2025-05-12 23:22:32.607081+00 2025-05-12 23:22:32.607088+00 f t DESCUENTO 0.00 2 187 \N +7459 2025-05-12 23:22:32.608933+00 2025-05-12 23:22:32.608939+00 f t TOTAL 25000.00 3 187 \N +6577 2025-05-12 15:01:25.72634+00 2025-05-12 15:01:25.726353+00 f t SUBTOTAL 0.00 1 161 \N +6578 2025-05-12 15:01:25.729271+00 2025-05-12 15:01:25.729285+00 f t DESCUENTO 0.00 2 161 \N +6579 2025-05-12 15:01:25.731233+00 2025-05-12 15:01:25.731241+00 f t TOTAL 0.00 3 161 \N +6580 2025-05-12 15:01:25.732984+00 2025-05-12 15:01:25.732992+00 f t ADELANTO 0.00 4 161 \N +6889 2025-05-12 17:07:47.548523+00 2025-05-12 17:07:47.548535+00 f t SUBTOTAL 85000.00 1 168 \N +6890 2025-05-12 17:07:47.550711+00 2025-05-12 17:07:47.55072+00 f t DESCUENTO 0.00 2 168 \N +6891 2025-05-12 17:07:47.552547+00 2025-05-12 17:07:47.552556+00 f t TOTAL 85000.00 3 168 \N +6892 2025-05-12 17:07:47.554145+00 2025-05-12 17:07:47.554154+00 f t ADELANTO 50000.00 4 168 \N +7460 2025-05-12 23:22:32.610034+00 2025-05-12 23:22:32.610039+00 f t ADELANTO 25000.00 4 187 \N +6733 2025-05-12 16:14:14.586286+00 2025-05-12 16:14:14.586298+00 f t SUBTOTAL 95000.00 1 166 \N +6734 2025-05-12 16:14:14.588278+00 2025-05-12 16:14:14.58829+00 f t DESCUENTO 0.00 2 166 \N +6735 2025-05-12 16:14:14.590118+00 2025-05-12 16:14:14.590128+00 f t TOTAL 95000.00 3 166 \N +6736 2025-05-12 16:14:14.591525+00 2025-05-12 16:14:14.591534+00 f t ADELANTO 10000.00 4 166 \N +6897 2025-05-12 17:10:04.538751+00 2025-05-12 17:10:04.538771+00 f t SUBTOTAL 0.00 1 169 \N +6898 2025-05-12 17:10:04.542275+00 2025-05-12 17:10:04.542288+00 f t DESCUENTO 0.00 2 169 \N +6899 2025-05-12 17:10:04.553349+00 2025-05-12 17:10:04.553362+00 f t TOTAL 0.00 3 169 \N +6900 2025-05-12 17:10:04.5613+00 2025-05-12 17:10:04.561314+00 f t ADELANTO 0.00 4 169 \N +7089 2025-05-12 19:21:10.779602+00 2025-05-12 19:21:10.779612+00 f t SUBTOTAL 38500.00 1 176 \N +7090 2025-05-12 19:21:10.781142+00 2025-05-12 19:21:10.781149+00 f t DESCUENTO 0.00 2 176 \N +7091 2025-05-12 19:21:10.782356+00 2025-05-12 19:21:10.782362+00 f t TOTAL 38500.00 3 176 \N +7092 2025-05-12 19:21:10.783234+00 2025-05-12 19:21:10.783239+00 f t ADELANTO 8500.00 4 176 \N +6601 2025-05-12 15:02:44.526951+00 2025-05-12 15:02:44.526964+00 f t SUBTOTAL 0.00 1 162 \N +6602 2025-05-12 15:02:44.529785+00 2025-05-12 15:02:44.529796+00 f t DESCUENTO 0.00 2 162 \N +6603 2025-05-12 15:02:44.531743+00 2025-05-12 15:02:44.531756+00 f t TOTAL 0.00 3 162 \N +6604 2025-05-12 15:02:44.533633+00 2025-05-12 15:02:44.533641+00 f t ADELANTO 0.00 4 162 \N +6405 2025-05-12 12:30:38.971438+00 2025-05-12 12:30:38.971481+00 f t SUBTOTAL 46000.00 1 157 \N +6406 2025-05-12 12:30:38.973861+00 2025-05-12 12:30:38.973872+00 f t DESCUENTO 0.00 2 157 \N +6407 2025-05-12 12:30:38.975773+00 2025-05-12 12:30:38.975784+00 f t TOTAL 46000.00 3 157 \N +6408 2025-05-12 12:30:38.977471+00 2025-05-12 12:30:38.977482+00 f t ADELANTO 9500.00 4 157 \N +6621 2025-05-12 15:03:23.239842+00 2025-05-12 15:03:23.239851+00 f t SUBTOTAL 0.00 1 163 \N +6622 2025-05-12 15:03:23.241999+00 2025-05-12 15:03:23.242009+00 f t DESCUENTO 0.00 2 163 \N +6623 2025-05-12 15:03:23.243666+00 2025-05-12 15:03:23.243674+00 f t TOTAL 0.00 3 163 \N +6624 2025-05-12 15:03:23.245335+00 2025-05-12 15:03:23.245342+00 f t ADELANTO 0.00 4 163 \N +6925 2025-05-12 18:39:26.914128+00 2025-05-12 18:39:26.914137+00 f t SUBTOTAL 46000.00 1 170 \N +6926 2025-05-12 18:39:26.916198+00 2025-05-12 18:39:26.916207+00 f t DESCUENTO 0.00 2 170 \N +6927 2025-05-12 18:39:26.921644+00 2025-05-12 18:39:26.921658+00 f t TOTAL 46000.00 3 170 \N +6928 2025-05-12 18:39:26.923882+00 2025-05-12 18:39:26.923894+00 f t ADELANTO 9500.00 4 170 \N +6437 2025-05-12 14:55:49.002714+00 2025-05-12 14:55:49.002723+00 f t SUBTOTAL 0.00 1 160 \N +6438 2025-05-12 14:55:49.004011+00 2025-05-12 14:55:49.004018+00 f t DESCUENTO 0.00 2 160 \N +6439 2025-05-12 14:55:49.005488+00 2025-05-12 14:55:49.005494+00 f t TOTAL 0.00 3 160 \N +6440 2025-05-12 14:55:49.006459+00 2025-05-12 14:55:49.006464+00 f t ADELANTO 0.00 4 160 \N +6933 2025-05-12 19:13:11.279531+00 2025-05-12 19:13:11.27954+00 f t SUBTOTAL 0.00 1 171 \N +6934 2025-05-12 19:13:11.281093+00 2025-05-12 19:13:11.281101+00 f t DESCUENTO 0.00 2 171 \N +6935 2025-05-12 19:13:11.282702+00 2025-05-12 19:13:11.282709+00 f t TOTAL 0.00 3 171 \N +6936 2025-05-12 19:13:11.283946+00 2025-05-12 19:13:11.283951+00 f t ADELANTO 0.00 4 171 \N +6657 2025-05-12 15:05:41.507262+00 2025-05-12 15:05:41.507274+00 f t SUBTOTAL 0.00 1 164 \N +6658 2025-05-12 15:05:41.50923+00 2025-05-12 15:05:41.509238+00 f t DESCUENTO 0.00 2 164 \N +6659 2025-05-12 15:05:41.510436+00 2025-05-12 15:05:41.510443+00 f t TOTAL 0.00 3 164 \N +6660 2025-05-12 15:05:41.511727+00 2025-05-12 15:05:41.511733+00 f t ADELANTO 0.00 4 164 \N +6965 2025-05-12 19:17:29.977851+00 2025-05-12 19:17:29.977863+00 f t SUBTOTAL 0.00 1 173 \N +6966 2025-05-12 19:17:29.981774+00 2025-05-12 19:17:29.981782+00 f t DESCUENTO 0.00 2 173 \N +6967 2025-05-12 19:17:29.983088+00 2025-05-12 19:17:29.983094+00 f t TOTAL 0.00 3 173 \N +6968 2025-05-12 19:17:29.984125+00 2025-05-12 19:17:29.984131+00 f t ADELANTO 0.00 4 173 \N +6485 2025-05-12 14:56:23.483837+00 2025-05-12 14:56:23.483846+00 f t SUBTOTAL 98000.00 1 158 \N +6486 2025-05-12 14:56:23.485715+00 2025-05-12 14:56:23.485724+00 f t DESCUENTO 0.00 2 158 \N +6487 2025-05-12 14:56:23.486943+00 2025-05-12 14:56:23.48695+00 f t TOTAL 98000.00 3 158 \N +6488 2025-05-12 14:56:23.488195+00 2025-05-12 14:56:23.488201+00 f t ADELANTO 21500.00 4 158 \N +7013 2025-05-12 19:18:54.20771+00 2025-05-12 19:18:54.207721+00 f t SUBTOTAL 0.00 1 174 \N +7014 2025-05-12 19:18:54.21139+00 2025-05-12 19:18:54.2114+00 f t DESCUENTO 0.00 2 174 \N +7015 2025-05-12 19:18:54.213016+00 2025-05-12 19:18:54.213023+00 f t TOTAL 0.00 3 174 \N +7016 2025-05-12 19:18:54.214446+00 2025-05-12 19:18:54.214453+00 f t ADELANTO 0.00 4 174 \N +7017 2025-05-12 19:19:02.670378+00 2025-05-12 19:19:02.670388+00 f t SUBTOTAL 65000.00 1 172 \N +7018 2025-05-12 19:19:02.672352+00 2025-05-12 19:19:02.672363+00 f t DESCUENTO 0.00 2 172 \N +7019 2025-05-12 19:19:02.673807+00 2025-05-12 19:19:02.673814+00 f t TOTAL 65000.00 3 172 \N +7020 2025-05-12 19:19:02.675171+00 2025-05-12 19:19:02.675178+00 f t ADELANTO 10000.00 4 172 \N +8029 2025-05-13 13:12:23.719376+00 2025-05-13 13:12:23.719391+00 f t SUBTOTAL 0.00 1 204 \N +8030 2025-05-13 13:12:23.722039+00 2025-05-13 13:12:23.722054+00 f t DESCUENTO 0.00 2 204 \N +8031 2025-05-13 13:12:23.724211+00 2025-05-13 13:12:23.724222+00 f t TOTAL 0.00 3 204 \N +7245 2025-05-12 20:32:25.876409+00 2025-05-12 20:32:25.876417+00 f t SUBTOTAL 121000.00 1 179 \N +7246 2025-05-12 20:32:25.878266+00 2025-05-12 20:32:25.878277+00 f t DESCUENTO 0.00 2 179 \N +7247 2025-05-12 20:32:25.879699+00 2025-05-12 20:32:25.879709+00 f t TOTAL 121000.00 3 179 \N +7248 2025-05-12 20:32:25.880874+00 2025-05-12 20:32:25.880879+00 f t ADELANTO 26000.00 4 179 \N +7861 2025-05-13 12:28:08.606213+00 2025-05-13 12:28:08.606223+00 f t SUBTOTAL 38500.00 1 200 \N +7862 2025-05-13 12:28:08.608142+00 2025-05-13 12:28:08.608152+00 f t DESCUENTO 0.00 2 200 \N +7863 2025-05-13 12:28:08.609809+00 2025-05-13 12:28:08.60982+00 f t TOTAL 38500.00 3 200 \N +7864 2025-05-13 12:28:08.613205+00 2025-05-13 12:28:08.613217+00 f t ADELANTO 8500.00 4 200 \N +7121 2025-05-12 19:22:50.126694+00 2025-05-12 19:22:50.126704+00 f t SUBTOTAL 46000.00 1 177 \N +7122 2025-05-12 19:22:50.128289+00 2025-05-12 19:22:50.128296+00 f t DESCUENTO 0.00 2 177 \N +7123 2025-05-12 19:22:50.129406+00 2025-05-12 19:22:50.129412+00 f t TOTAL 46000.00 3 177 \N +7124 2025-05-12 19:22:50.130428+00 2025-05-12 19:22:50.130434+00 f t ADELANTO 9500.00 4 177 \N +7661 2025-05-13 09:51:29.080292+00 2025-05-13 09:51:29.080303+00 f t SUBTOTAL 0.00 1 194 \N +7662 2025-05-13 09:51:29.082149+00 2025-05-13 09:51:29.082157+00 f t DESCUENTO 0.00 2 194 \N +7663 2025-05-13 09:51:29.083622+00 2025-05-13 09:51:29.083631+00 f t TOTAL 0.00 3 194 \N +7664 2025-05-13 09:51:29.085201+00 2025-05-13 09:51:29.085209+00 f t ADELANTO 0.00 4 194 \N +7289 2025-05-12 20:40:59.924367+00 2025-05-12 20:40:59.924378+00 f t SUBTOTAL 0.00 1 180 \N +7290 2025-05-12 20:40:59.926204+00 2025-05-12 20:40:59.926212+00 f t DESCUENTO 0.00 2 180 \N +7291 2025-05-12 20:40:59.927464+00 2025-05-12 20:40:59.927473+00 f t TOTAL 0.00 3 180 \N +7292 2025-05-12 20:40:59.928703+00 2025-05-12 20:40:59.928709+00 f t ADELANTO 0.00 4 180 \N +7485 2025-05-12 23:47:09.595011+00 2025-05-12 23:47:09.595023+00 f t SUBTOTAL 75000.00 1 188 \N +7486 2025-05-12 23:47:09.596864+00 2025-05-12 23:47:09.596874+00 f t DESCUENTO 0.00 2 188 \N +7487 2025-05-12 23:47:09.598455+00 2025-05-12 23:47:09.598464+00 f t TOTAL 75000.00 3 188 \N +7488 2025-05-12 23:47:09.599947+00 2025-05-12 23:47:09.599955+00 f t ADELANTO 10000.00 4 188 \N +7681 2025-05-13 10:50:59.45514+00 2025-05-13 10:50:59.455155+00 f t SUBTOTAL 0.00 1 195 \N +7682 2025-05-13 10:50:59.457594+00 2025-05-13 10:50:59.457606+00 f t DESCUENTO 0.00 2 195 \N +7683 2025-05-13 10:50:59.459432+00 2025-05-13 10:50:59.459443+00 f t TOTAL 0.00 3 195 \N +7684 2025-05-13 10:50:59.461093+00 2025-05-13 10:50:59.461104+00 f t ADELANTO 0.00 4 195 \N +7689 2025-05-13 10:56:48.692428+00 2025-05-13 10:56:48.692442+00 f t SUBTOTAL 0.00 1 196 \N +7690 2025-05-13 10:56:48.694502+00 2025-05-13 10:56:48.694515+00 f t DESCUENTO 0.00 2 196 \N +7317 2025-05-12 20:46:30.664473+00 2025-05-12 20:46:30.664486+00 f t SUBTOTAL 0.00 1 182 \N +7318 2025-05-12 20:46:30.666126+00 2025-05-12 20:46:30.666135+00 f t DESCUENTO 0.00 2 182 \N +7319 2025-05-12 20:46:30.667716+00 2025-05-12 20:46:30.667725+00 f t TOTAL 0.00 3 182 \N +7320 2025-05-12 20:46:30.669195+00 2025-05-12 20:46:30.669203+00 f t ADELANTO 0.00 4 182 \N +7691 2025-05-13 10:56:48.696446+00 2025-05-13 10:56:48.696457+00 f t TOTAL 0.00 3 196 \N +7692 2025-05-13 10:56:48.698877+00 2025-05-13 10:56:48.698888+00 f t ADELANTO 0.00 4 196 \N +7513 2025-05-12 23:47:50.656893+00 2025-05-12 23:47:50.656905+00 f t SUBTOTAL 75000.00 1 189 \N +7514 2025-05-12 23:47:50.658974+00 2025-05-12 23:47:50.658985+00 f t DESCUENTO 0.00 2 189 \N +7515 2025-05-12 23:47:50.660488+00 2025-05-12 23:47:50.660497+00 f t TOTAL 75000.00 3 189 \N +7516 2025-05-12 23:47:50.661931+00 2025-05-12 23:47:50.66194+00 f t ADELANTO 10000.00 4 189 \N +7217 2025-05-12 20:06:13.738516+00 2025-05-12 20:06:13.738527+00 f t SUBTOTAL 176000.00 1 178 \N +7218 2025-05-12 20:06:13.740543+00 2025-05-12 20:06:13.740551+00 f t DESCUENTO 0.00 2 178 \N +7219 2025-05-12 20:06:13.742291+00 2025-05-12 20:06:13.742299+00 f t TOTAL 176000.00 3 178 \N +7220 2025-05-12 20:06:13.744127+00 2025-05-12 20:06:13.744136+00 f t ADELANTO 50000.00 4 178 \N +7549 2025-05-12 23:59:29.490991+00 2025-05-12 23:59:29.491003+00 f t SUBTOTAL 59500.00 1 190 \N +7550 2025-05-12 23:59:29.493085+00 2025-05-12 23:59:29.493096+00 f t DESCUENTO 0.00 2 190 \N +7551 2025-05-12 23:59:29.494793+00 2025-05-12 23:59:29.494803+00 f t TOTAL 59500.00 3 190 \N +7552 2025-05-12 23:59:29.496266+00 2025-05-12 23:59:29.496275+00 f t ADELANTO 15500.00 4 190 \N +7557 2025-05-13 00:44:26.773337+00 2025-05-13 00:44:26.773347+00 f t SUBTOTAL 0.00 1 191 \N +7558 2025-05-13 00:44:26.774983+00 2025-05-13 00:44:26.774993+00 f t DESCUENTO 0.00 2 191 \N +7559 2025-05-13 00:44:26.776629+00 2025-05-13 00:44:26.776637+00 f t TOTAL 0.00 3 191 \N +7560 2025-05-13 00:44:26.777908+00 2025-05-13 00:44:26.777914+00 f t ADELANTO 0.00 4 191 \N +7381 2025-05-12 20:48:53.625709+00 2025-05-12 20:48:53.625717+00 f t SUBTOTAL 38500.00 1 181 \N +7382 2025-05-12 20:48:53.627381+00 2025-05-12 20:48:53.627391+00 f t DESCUENTO 0.00 2 181 \N +7383 2025-05-12 20:48:53.62888+00 2025-05-12 20:48:53.628888+00 f t TOTAL 38500.00 3 181 \N +7384 2025-05-12 20:48:53.630153+00 2025-05-12 20:48:53.630161+00 f t ADELANTO 8500.00 4 181 \N +7565 2025-05-13 03:58:58.839039+00 2025-05-13 03:58:58.839052+00 f t SUBTOTAL 0.00 1 192 \N +7566 2025-05-13 03:58:58.84065+00 2025-05-13 03:58:58.840659+00 f t DESCUENTO 0.00 2 192 \N +7389 2025-05-12 21:04:30.906868+00 2025-05-12 21:04:30.906878+00 f t SUBTOTAL 0.00 1 183 \N +7390 2025-05-12 21:04:30.908445+00 2025-05-12 21:04:30.908451+00 f t DESCUENTO 0.00 2 183 \N +7391 2025-05-12 21:04:30.909641+00 2025-05-12 21:04:30.909647+00 f t TOTAL 0.00 3 183 \N +7392 2025-05-12 21:04:30.910659+00 2025-05-12 21:04:30.910667+00 f t ADELANTO 0.00 4 183 \N +7567 2025-05-13 03:58:58.842144+00 2025-05-13 03:58:58.84215+00 f t TOTAL 0.00 3 192 \N +7568 2025-05-13 03:58:58.843297+00 2025-05-13 03:58:58.843305+00 f t ADELANTO 0.00 4 192 \N +7397 2025-05-12 21:21:27.263721+00 2025-05-12 21:21:27.263733+00 f t SUBTOTAL 0.00 1 184 \N +7398 2025-05-12 21:21:27.265338+00 2025-05-12 21:21:27.265346+00 f t DESCUENTO 0.00 2 184 \N +7399 2025-05-12 21:21:27.26695+00 2025-05-12 21:21:27.266956+00 f t TOTAL 0.00 3 184 \N +7400 2025-05-12 21:21:27.26826+00 2025-05-12 21:21:27.268267+00 f t ADELANTO 0.00 4 184 \N +7405 2025-05-12 21:42:19.451872+00 2025-05-12 21:42:19.451881+00 f t SUBTOTAL 0.00 1 185 \N +7406 2025-05-12 21:42:19.453286+00 2025-05-12 21:42:19.453295+00 f t DESCUENTO 0.00 2 185 \N +7407 2025-05-12 21:42:19.454314+00 2025-05-12 21:42:19.454319+00 f t TOTAL 0.00 3 185 \N +7408 2025-05-12 21:42:19.455336+00 2025-05-12 21:42:19.455341+00 f t ADELANTO 0.00 4 185 \N +7757 2025-05-13 11:28:27.07674+00 2025-05-13 11:28:27.076749+00 f t SUBTOTAL 25000.00 1 197 \N +7758 2025-05-13 11:28:27.078766+00 2025-05-13 11:28:27.078776+00 f t DESCUENTO 0.00 2 197 \N +7759 2025-05-13 11:28:27.080481+00 2025-05-13 11:28:27.08049+00 f t TOTAL 25000.00 3 197 \N +7760 2025-05-13 11:28:27.082158+00 2025-05-13 11:28:27.082174+00 f t ADELANTO 25000.00 4 197 \N +7621 2025-05-13 04:45:44.760576+00 2025-05-13 04:45:44.760587+00 f t SUBTOTAL 38500.00 1 193 \N +7622 2025-05-13 04:45:44.762768+00 2025-05-13 04:45:44.762777+00 f t DESCUENTO 0.00 2 193 \N +7623 2025-05-13 04:45:44.76517+00 2025-05-13 04:45:44.765185+00 f t TOTAL 38500.00 3 193 \N +7624 2025-05-13 04:45:44.767443+00 2025-05-13 04:45:44.767456+00 f t ADELANTO 8500.00 4 193 \N +8032 2025-05-13 13:12:23.726153+00 2025-05-13 13:12:23.72616+00 f t ADELANTO 0.00 4 204 \N +9081 2025-05-13 18:23:06.629914+00 2025-05-13 18:23:06.629927+00 f t SUBTOTAL 46000.00 1 218 \N +9082 2025-05-13 18:23:06.6323+00 2025-05-13 18:23:06.632309+00 f t DESCUENTO 0.00 2 218 \N +9083 2025-05-13 18:23:06.634644+00 2025-05-13 18:23:06.634653+00 f t TOTAL 46000.00 3 218 \N +9084 2025-05-13 18:23:06.636253+00 2025-05-13 18:23:06.63626+00 f t ADELANTO 9500.00 4 218 \N +10957 2025-05-14 20:17:22.500633+00 2025-05-14 20:17:22.500646+00 f t SUBTOTAL 0.00 1 272 \N +10958 2025-05-14 20:17:22.503577+00 2025-05-14 20:17:22.50359+00 f t DESCUENTO 0.00 2 272 \N +10959 2025-05-14 20:17:22.506386+00 2025-05-14 20:17:22.506397+00 f t TOTAL 0.00 3 272 \N +10669 2025-05-14 17:41:11.863964+00 2025-05-14 17:41:11.863977+00 f t SUBTOTAL 0.00 1 255 \N +7881 2025-05-13 12:30:58.993522+00 2025-05-13 12:30:58.993532+00 f t SUBTOTAL 0.00 1 201 \N +7882 2025-05-13 12:30:58.995803+00 2025-05-13 12:30:58.995812+00 f t DESCUENTO 0.00 2 201 \N +7883 2025-05-13 12:30:58.997414+00 2025-05-13 12:30:58.99742+00 f t TOTAL 0.00 3 201 \N +7884 2025-05-13 12:30:58.998701+00 2025-05-13 12:30:58.998707+00 f t ADELANTO 0.00 4 201 \N +7805 2025-05-13 12:11:07.015074+00 2025-05-13 12:11:07.015086+00 f t SUBTOTAL 46000.00 1 198 \N +7806 2025-05-13 12:11:07.017703+00 2025-05-13 12:11:07.017714+00 f t DESCUENTO 0.00 2 198 \N +7807 2025-05-13 12:11:07.019776+00 2025-05-13 12:11:07.019787+00 f t TOTAL 46000.00 3 198 \N +7808 2025-05-13 12:11:07.021647+00 2025-05-13 12:11:07.021655+00 f t ADELANTO 11000.00 4 198 \N +7813 2025-05-13 12:15:14.345919+00 2025-05-13 12:15:14.34593+00 f t SUBTOTAL 0.00 1 199 \N +7814 2025-05-13 12:15:14.3475+00 2025-05-13 12:15:14.347509+00 f t DESCUENTO 0.00 2 199 \N +7815 2025-05-13 12:15:14.348972+00 2025-05-13 12:15:14.34898+00 f t TOTAL 0.00 3 199 \N +7816 2025-05-13 12:15:14.350437+00 2025-05-13 12:15:14.350447+00 f t ADELANTO 0.00 4 199 \N +8073 2025-05-13 13:14:12.162563+00 2025-05-13 13:14:12.162572+00 f t SUBTOTAL 107250.00 1 205 \N +8074 2025-05-13 13:14:12.164343+00 2025-05-13 13:14:12.16435+00 f t DESCUENTO 0.00 2 205 \N +8075 2025-05-13 13:14:12.165869+00 2025-05-13 13:14:12.165879+00 f t TOTAL 107250.00 3 205 \N +8076 2025-05-13 13:14:12.167561+00 2025-05-13 13:14:12.167569+00 f t ADELANTO 22250.00 4 205 \N +8081 2025-05-13 14:00:52.951172+00 2025-05-13 14:00:52.951182+00 f t SUBTOTAL 0.00 1 206 \N +8082 2025-05-13 14:00:52.952747+00 2025-05-13 14:00:52.952755+00 f t DESCUENTO 0.00 2 206 \N +8083 2025-05-13 14:00:52.954314+00 2025-05-13 14:00:52.954323+00 f t TOTAL 0.00 3 206 \N +8084 2025-05-13 14:00:52.9556+00 2025-05-13 14:00:52.955608+00 f t ADELANTO 0.00 4 206 \N +7909 2025-05-13 12:34:31.789374+00 2025-05-13 12:34:31.789384+00 f t SUBTOTAL 38500.00 1 202 \N +7910 2025-05-13 12:34:31.791396+00 2025-05-13 12:34:31.791403+00 f t DESCUENTO 0.00 2 202 \N +7911 2025-05-13 12:34:31.793016+00 2025-05-13 12:34:31.793023+00 f t TOTAL 38500.00 3 202 \N +7912 2025-05-13 12:34:31.79441+00 2025-05-13 12:34:31.794417+00 f t ADELANTO 8500.00 4 202 \N +9401 2025-05-13 21:24:02.135154+00 2025-05-13 21:24:02.135164+00 f t SUBTOTAL 0.00 1 224 \N +9402 2025-05-13 21:24:02.136896+00 2025-05-13 21:24:02.136903+00 f t DESCUENTO 0.00 2 224 \N +9403 2025-05-13 21:24:02.138475+00 2025-05-13 21:24:02.138486+00 f t TOTAL 0.00 3 224 \N +9404 2025-05-13 21:24:02.14338+00 2025-05-13 21:24:02.143391+00 f t ADELANTO 0.00 4 224 \N +9465 2025-05-13 22:43:28.268175+00 2025-05-13 22:43:28.268183+00 f t SUBTOTAL 67000.00 1 226 \N +9466 2025-05-13 22:43:28.269843+00 2025-05-13 22:43:28.26985+00 f t DESCUENTO 0.00 2 226 \N +9467 2025-05-13 22:43:28.270986+00 2025-05-13 22:43:28.270992+00 f t TOTAL 67000.00 3 226 \N +9468 2025-05-13 22:43:28.272032+00 2025-05-13 22:43:28.272037+00 f t ADELANTO 18000.00 4 226 \N +8349 2025-05-13 14:37:02.498895+00 2025-05-13 14:37:02.498907+00 f t SUBTOTAL 50500.00 1 208 \N +8350 2025-05-13 14:37:02.501301+00 2025-05-13 14:37:02.501311+00 f t DESCUENTO 0.00 2 208 \N +8351 2025-05-13 14:37:02.503294+00 2025-05-13 14:37:02.503306+00 f t TOTAL 50500.00 3 208 \N +8352 2025-05-13 14:37:02.505611+00 2025-05-13 14:37:02.50562+00 f t ADELANTO 11000.00 4 208 \N +8357 2025-05-13 14:38:28.56266+00 2025-05-13 14:38:28.562673+00 f t SUBTOTAL 0.00 1 209 \N +8358 2025-05-13 14:38:28.564876+00 2025-05-13 14:38:28.564889+00 f t DESCUENTO 0.00 2 209 \N +8359 2025-05-13 14:38:28.566754+00 2025-05-13 14:38:28.566764+00 f t TOTAL 0.00 3 209 \N +8360 2025-05-13 14:38:28.568511+00 2025-05-13 14:38:28.568523+00 f t ADELANTO 0.00 4 209 \N +8365 2025-05-13 14:42:00.33884+00 2025-05-13 14:42:00.338851+00 f t SUBTOTAL 0.00 1 210 \N +8366 2025-05-13 14:42:00.341274+00 2025-05-13 14:42:00.341285+00 f t DESCUENTO 0.00 2 210 \N +8367 2025-05-13 14:42:00.34318+00 2025-05-13 14:42:00.343192+00 f t TOTAL 0.00 3 210 \N +8368 2025-05-13 14:42:00.344942+00 2025-05-13 14:42:00.344953+00 f t ADELANTO 0.00 4 210 \N +8793 2025-05-13 15:52:24.156536+00 2025-05-13 15:52:24.156545+00 f t SUBTOTAL 155000.00 1 212 \N +8794 2025-05-13 15:52:24.158484+00 2025-05-13 15:52:24.158495+00 f t DESCUENTO 0.00 2 212 \N +8795 2025-05-13 15:52:24.160464+00 2025-05-13 15:52:24.160476+00 f t TOTAL 155000.00 3 212 \N +8796 2025-05-13 15:52:24.162126+00 2025-05-13 15:52:24.162134+00 f t ADELANTO 43000.00 4 212 \N +8205 2025-05-13 14:11:31.081562+00 2025-05-13 14:11:31.081573+00 f t SUBTOTAL 152000.00 1 207 \N +8206 2025-05-13 14:11:31.083879+00 2025-05-13 14:11:31.083888+00 f t DESCUENTO 0.00 2 207 \N +8207 2025-05-13 14:11:31.085567+00 2025-05-13 14:11:31.085592+00 f t TOTAL 152000.00 3 207 \N +8208 2025-05-13 14:11:31.089983+00 2025-05-13 14:11:31.089994+00 f t ADELANTO 22000.00 4 207 \N +8817 2025-05-13 16:13:16.416761+00 2025-05-13 16:13:16.416773+00 f t SUBTOTAL 0.00 1 213 \N +8818 2025-05-13 16:13:16.418481+00 2025-05-13 16:13:16.418491+00 f t DESCUENTO 0.00 2 213 \N +8819 2025-05-13 16:13:16.420089+00 2025-05-13 16:13:16.420096+00 f t TOTAL 0.00 3 213 \N +8820 2025-05-13 16:13:16.421516+00 2025-05-13 16:13:16.421522+00 f t ADELANTO 0.00 4 213 \N +8401 2025-05-13 15:04:56.068805+00 2025-05-13 15:04:56.068817+00 f t SUBTOTAL 38500.00 1 211 \N +8402 2025-05-13 15:04:56.070659+00 2025-05-13 15:04:56.070668+00 f t DESCUENTO 0.00 2 211 \N +8403 2025-05-13 15:04:56.072232+00 2025-05-13 15:04:56.07224+00 f t TOTAL 38500.00 3 211 \N +8404 2025-05-13 15:04:56.073414+00 2025-05-13 15:04:56.073421+00 f t ADELANTO 8500.00 4 211 \N +9037 2025-05-13 17:31:50.492685+00 2025-05-13 17:31:50.492695+00 f t SUBTOTAL 143000.00 1 216 \N +9038 2025-05-13 17:31:50.495675+00 2025-05-13 17:31:50.495685+00 f t DESCUENTO 0.00 2 216 \N +9039 2025-05-13 17:31:50.49834+00 2025-05-13 17:31:50.498353+00 f t TOTAL 143000.00 3 216 \N +9040 2025-05-13 17:31:50.500368+00 2025-05-13 17:31:50.500376+00 f t ADELANTO 31000.00 4 216 \N +9045 2025-05-13 18:18:07.515421+00 2025-05-13 18:18:07.515435+00 f t SUBTOTAL 0.00 1 217 \N +9046 2025-05-13 18:18:07.517266+00 2025-05-13 18:18:07.517279+00 f t DESCUENTO 0.00 2 217 \N +9047 2025-05-13 18:18:07.519498+00 2025-05-13 18:18:07.519511+00 f t TOTAL 0.00 3 217 \N +9048 2025-05-13 18:18:07.521109+00 2025-05-13 18:18:07.521119+00 f t ADELANTO 0.00 4 217 \N +8861 2025-05-13 16:54:22.956974+00 2025-05-13 16:54:22.956985+00 f t SUBTOTAL 50500.00 1 214 \N +8862 2025-05-13 16:54:22.958998+00 2025-05-13 16:54:22.959009+00 f t DESCUENTO 0.00 2 214 \N +8863 2025-05-13 16:54:22.960692+00 2025-05-13 16:54:22.960706+00 f t TOTAL 50500.00 3 214 \N +8864 2025-05-13 16:54:22.962352+00 2025-05-13 16:54:22.962361+00 f t ADELANTO 11000.00 4 214 \N +9061 2025-05-13 18:20:41.270745+00 2025-05-13 18:20:41.270758+00 f t SUBTOTAL 0.00 1 219 \N +9062 2025-05-13 18:20:41.273699+00 2025-05-13 18:20:41.273713+00 f t DESCUENTO 0.00 2 219 \N +9063 2025-05-13 18:20:41.275706+00 2025-05-13 18:20:41.275715+00 f t TOTAL 0.00 3 219 \N +9064 2025-05-13 18:20:41.277836+00 2025-05-13 18:20:41.277845+00 f t ADELANTO 0.00 4 219 \N +9097 2025-05-13 18:42:57.481725+00 2025-05-13 18:42:57.481734+00 f t SUBTOTAL 0.00 1 220 \N +9098 2025-05-13 18:42:57.484447+00 2025-05-13 18:42:57.484458+00 f t DESCUENTO 0.00 2 220 \N +9099 2025-05-13 18:42:57.486499+00 2025-05-13 18:42:57.486511+00 f t TOTAL 0.00 3 220 \N +9100 2025-05-13 18:42:57.488581+00 2025-05-13 18:42:57.488591+00 f t ADELANTO 0.00 4 220 \N +9517 2025-05-14 00:11:19.570756+00 2025-05-14 00:11:19.570768+00 f t SUBTOTAL 46000.00 1 227 \N +9113 2025-05-13 18:50:56.218068+00 2025-05-13 18:50:56.218081+00 f t SUBTOTAL 46000.00 1 203 \N +9114 2025-05-13 18:50:56.220142+00 2025-05-13 18:50:56.22015+00 f t DESCUENTO 0.00 2 203 \N +9115 2025-05-13 18:50:56.22182+00 2025-05-13 18:50:56.221827+00 f t TOTAL 46000.00 3 203 \N +9116 2025-05-13 18:50:56.223447+00 2025-05-13 18:50:56.223457+00 f t ADELANTO 9500.00 4 203 \N +9121 2025-05-13 19:06:07.18441+00 2025-05-13 19:06:07.184419+00 f t SUBTOTAL 46000.00 1 215 \N +9122 2025-05-13 19:06:07.186707+00 2025-05-13 19:06:07.186718+00 f t DESCUENTO 0.00 2 215 \N +9123 2025-05-13 19:06:07.188568+00 2025-05-13 19:06:07.188579+00 f t TOTAL 46000.00 3 215 \N +9124 2025-05-13 19:06:07.190389+00 2025-05-13 19:06:07.190398+00 f t ADELANTO 9500.00 4 215 \N +9518 2025-05-14 00:11:19.573347+00 2025-05-14 00:11:19.57336+00 f t DESCUENTO 0.00 2 227 \N +9519 2025-05-14 00:11:19.575552+00 2025-05-14 00:11:19.575565+00 f t TOTAL 46000.00 3 227 \N +9520 2025-05-14 00:11:19.577728+00 2025-05-14 00:11:19.57774+00 f t ADELANTO 9500.00 4 227 \N +10469 2025-05-14 16:55:08.559569+00 2025-05-14 16:55:08.55958+00 f t SUBTOTAL 85000.00 1 249 \N +10470 2025-05-14 16:55:08.562827+00 2025-05-14 16:55:08.562839+00 f t DESCUENTO 0.00 2 249 \N +10471 2025-05-14 16:55:08.567425+00 2025-05-14 16:55:08.56744+00 f t TOTAL 85000.00 3 249 \N +10472 2025-05-14 16:55:08.57551+00 2025-05-14 16:55:08.575523+00 f t ADELANTO 50000.00 4 249 \N +9181 2025-05-13 19:19:41.243298+00 2025-05-13 19:19:41.243309+00 f t SUBTOTAL 38500.00 1 221 \N +9182 2025-05-13 19:19:41.245724+00 2025-05-13 19:19:41.245732+00 f t DESCUENTO 0.00 2 221 \N +9183 2025-05-13 19:19:41.247222+00 2025-05-13 19:19:41.24723+00 f t TOTAL 38500.00 3 221 \N +9184 2025-05-13 19:19:41.248639+00 2025-05-13 19:19:41.248645+00 f t ADELANTO 8500.00 4 221 \N +9393 2025-05-13 19:37:30.465823+00 2025-05-13 19:37:30.465839+00 f t SUBTOTAL 46000.00 1 223 \N +9394 2025-05-13 19:37:30.468392+00 2025-05-13 19:37:30.468404+00 f t DESCUENTO 0.00 2 223 \N +9395 2025-05-13 19:37:30.470762+00 2025-05-13 19:37:30.470774+00 f t TOTAL 46000.00 3 223 \N +9396 2025-05-13 19:37:30.472862+00 2025-05-13 19:37:30.472875+00 f t ADELANTO 9500.00 4 223 \N +9409 2025-05-13 21:35:23.639664+00 2025-05-13 21:35:23.639677+00 f t SUBTOTAL 0.00 1 225 \N +9410 2025-05-13 21:35:23.641529+00 2025-05-13 21:35:23.641537+00 f t DESCUENTO 0.00 2 225 \N +9411 2025-05-13 21:35:23.642918+00 2025-05-13 21:35:23.642924+00 f t TOTAL 0.00 3 225 \N +9412 2025-05-13 21:35:23.64437+00 2025-05-13 21:35:23.644376+00 f t ADELANTO 0.00 4 225 \N +9273 2025-05-13 19:29:54.515945+00 2025-05-13 19:29:54.515954+00 f t SUBTOTAL 59500.00 1 222 \N +9274 2025-05-13 19:29:54.518624+00 2025-05-13 19:29:54.518635+00 f t DESCUENTO 0.00 2 222 \N +9275 2025-05-13 19:29:54.52058+00 2025-05-13 19:29:54.520588+00 f t TOTAL 59500.00 3 222 \N +9276 2025-05-13 19:29:54.522393+00 2025-05-13 19:29:54.5224+00 f t ADELANTO 15500.00 4 222 \N +9577 2025-05-14 01:49:42.187288+00 2025-05-14 01:49:42.187297+00 f t SUBTOTAL 38500.00 1 228 \N +9578 2025-05-14 01:49:42.189139+00 2025-05-14 01:49:42.189148+00 f t DESCUENTO 0.00 2 228 \N +9579 2025-05-14 01:49:42.191058+00 2025-05-14 01:49:42.191068+00 f t TOTAL 38500.00 3 228 \N +9580 2025-05-14 01:49:42.193165+00 2025-05-14 01:49:42.193173+00 f t ADELANTO 8500.00 4 228 \N +9833 2025-05-14 03:55:56.83506+00 2025-05-14 03:55:56.835073+00 f t SUBTOTAL 59500.00 1 232 \N +9834 2025-05-14 03:55:56.838142+00 2025-05-14 03:55:56.838159+00 f t DESCUENTO 0.00 2 232 \N +9835 2025-05-14 03:55:56.84094+00 2025-05-14 03:55:56.840951+00 f t TOTAL 59500.00 3 232 \N +9836 2025-05-14 03:55:56.843572+00 2025-05-14 03:55:56.843634+00 f t ADELANTO 15500.00 4 232 \N +9605 2025-05-14 02:17:33.992876+00 2025-05-14 02:17:33.992893+00 f t SUBTOTAL 38500.00 1 229 \N +9606 2025-05-14 02:17:33.996309+00 2025-05-14 02:17:33.996323+00 f t DESCUENTO 0.00 2 229 \N +9607 2025-05-14 02:17:33.998804+00 2025-05-14 02:17:33.998817+00 f t TOTAL 38500.00 3 229 \N +9608 2025-05-14 02:17:34.001353+00 2025-05-14 02:17:34.001364+00 f t ADELANTO 8500.00 4 229 \N +10021 2025-05-14 12:34:22.220274+00 2025-05-14 12:34:22.220287+00 f t SUBTOTAL 46000.00 1 235 \N +10022 2025-05-14 12:34:22.223781+00 2025-05-14 12:34:22.223794+00 f t DESCUENTO 0.00 2 235 \N +10023 2025-05-14 12:34:22.225997+00 2025-05-14 12:34:22.226008+00 f t TOTAL 46000.00 3 235 \N +10024 2025-05-14 12:34:22.227789+00 2025-05-14 12:34:22.2278+00 f t ADELANTO 11000.00 4 235 \N +10041 2025-05-14 12:34:46.709184+00 2025-05-14 12:34:46.709197+00 f t SUBTOTAL 46000.00 1 236 \N +10042 2025-05-14 12:34:46.714274+00 2025-05-14 12:34:46.714289+00 f t DESCUENTO 0.00 2 236 \N +10043 2025-05-14 12:34:46.717939+00 2025-05-14 12:34:46.717951+00 f t TOTAL 46000.00 3 236 \N +10044 2025-05-14 12:34:46.721293+00 2025-05-14 12:34:46.721305+00 f t ADELANTO 9500.00 4 236 \N +9889 2025-05-14 04:38:00.883308+00 2025-05-14 04:38:00.88332+00 f t SUBTOTAL 0.00 1 233 \N +9890 2025-05-14 04:38:00.885632+00 2025-05-14 04:38:00.885643+00 f t DESCUENTO 0.00 2 233 \N +9891 2025-05-14 04:38:00.887384+00 2025-05-14 04:38:00.887396+00 f t TOTAL 0.00 3 233 \N +9892 2025-05-14 04:38:00.889112+00 2025-05-14 04:38:00.88912+00 f t ADELANTO 0.00 4 233 \N +10049 2025-05-14 13:34:46.840434+00 2025-05-14 13:34:46.840442+00 f t SUBTOTAL 46000.00 1 231 \N +10050 2025-05-14 13:34:46.842222+00 2025-05-14 13:34:46.842229+00 f t DESCUENTO 0.00 2 231 \N +10051 2025-05-14 13:34:46.843792+00 2025-05-14 13:34:46.8438+00 f t TOTAL 46000.00 3 231 \N +10052 2025-05-14 13:34:46.845218+00 2025-05-14 13:34:46.845227+00 f t ADELANTO 9500.00 4 231 \N +10057 2025-05-14 14:01:14.000479+00 2025-05-14 14:01:14.000489+00 f t SUBTOTAL 0.00 1 237 \N +10058 2025-05-14 14:01:14.004828+00 2025-05-14 14:01:14.004841+00 f t DESCUENTO 0.00 2 237 \N +10059 2025-05-14 14:01:14.007261+00 2025-05-14 14:01:14.007274+00 f t TOTAL 0.00 3 237 \N +10060 2025-05-14 14:01:14.009539+00 2025-05-14 14:01:14.009553+00 f t ADELANTO 0.00 4 237 \N +10065 2025-05-14 14:01:41.10717+00 2025-05-14 14:01:41.107183+00 f t SUBTOTAL 0.00 1 238 \N +10066 2025-05-14 14:01:41.109484+00 2025-05-14 14:01:41.109571+00 f t DESCUENTO 0.00 2 238 \N +9917 2025-05-14 11:39:44.841665+00 2025-05-14 11:39:44.841674+00 f t SUBTOTAL 59500.00 1 234 \N +9918 2025-05-14 11:39:44.843897+00 2025-05-14 11:39:44.843907+00 f t DESCUENTO 0.00 2 234 \N +9919 2025-05-14 11:39:44.846153+00 2025-05-14 11:39:44.846164+00 f t TOTAL 59500.00 3 234 \N +9920 2025-05-14 11:39:44.848456+00 2025-05-14 11:39:44.848468+00 f t ADELANTO 15500.00 4 234 \N +9697 2025-05-14 02:49:41.69307+00 2025-05-14 02:49:41.693079+00 f t SUBTOTAL 245500.00 1 230 \N +9698 2025-05-14 02:49:41.695148+00 2025-05-14 02:49:41.695159+00 f t DESCUENTO 0.00 2 230 \N +9699 2025-05-14 02:49:41.697283+00 2025-05-14 02:49:41.697295+00 f t TOTAL 245500.00 3 230 \N +9700 2025-05-14 02:49:41.699392+00 2025-05-14 02:49:41.699403+00 f t ADELANTO 114500.00 4 230 \N +10067 2025-05-14 14:01:41.11303+00 2025-05-14 14:01:41.113042+00 f t TOTAL 0.00 3 238 \N +10068 2025-05-14 14:01:41.116226+00 2025-05-14 14:01:41.116241+00 f t ADELANTO 0.00 4 238 \N +12101 2025-05-15 17:16:33.906836+00 2025-05-15 17:16:33.906849+00 f t SUBTOTAL 0.00 1 309 \N +12102 2025-05-15 17:16:33.909509+00 2025-05-15 17:16:33.909521+00 f t DESCUENTO 0.00 2 309 \N +12103 2025-05-15 17:16:33.911702+00 2025-05-15 17:16:33.911715+00 f t TOTAL 0.00 3 309 \N +12104 2025-05-15 17:16:33.913497+00 2025-05-15 17:16:33.913509+00 f t ADELANTO 0.00 4 309 \N +10437 2025-05-14 16:50:18.750993+00 2025-05-14 16:50:18.751005+00 f t SUBTOTAL 95000.00 1 248 \N +10438 2025-05-14 16:50:18.753451+00 2025-05-14 16:50:18.753463+00 f t DESCUENTO 0.00 2 248 \N +10439 2025-05-14 16:50:18.755547+00 2025-05-14 16:50:18.755567+00 f t TOTAL 95000.00 3 248 \N +10440 2025-05-14 16:50:18.757876+00 2025-05-14 16:50:18.757887+00 f t ADELANTO 10000.00 4 248 \N +10670 2025-05-14 17:41:11.866273+00 2025-05-14 17:41:11.866285+00 f t DESCUENTO 0.00 2 255 \N +10671 2025-05-14 17:41:11.868615+00 2025-05-14 17:41:11.868627+00 f t TOTAL 0.00 3 255 \N +10672 2025-05-14 17:41:11.87068+00 2025-05-14 17:41:11.870692+00 f t ADELANTO 0.00 4 255 \N +10960 2025-05-14 20:17:22.508552+00 2025-05-14 20:17:22.508565+00 f t ADELANTO 0.00 4 272 \N +11833 2025-05-15 14:36:14.036101+00 2025-05-15 14:36:14.037846+00 f t SUBTOTAL 0.00 1 299 \N +11834 2025-05-15 14:36:14.188751+00 2025-05-15 14:36:14.189366+00 f t DESCUENTO 0.00 2 299 \N +11835 2025-05-15 14:36:14.376347+00 2025-05-15 14:36:14.377813+00 f t TOTAL 0.00 3 299 \N +10293 2025-05-14 16:25:06.888823+00 2025-05-14 16:25:06.888836+00 f t SUBTOTAL 0.00 1 246 \N +10294 2025-05-14 16:25:06.891319+00 2025-05-14 16:25:06.891331+00 f t DESCUENTO 0.00 2 246 \N +10295 2025-05-14 16:25:06.893567+00 2025-05-14 16:25:06.89358+00 f t TOTAL 0.00 3 246 \N +10296 2025-05-14 16:25:06.896024+00 2025-05-14 16:25:06.896036+00 f t ADELANTO 0.00 4 246 \N +10485 2025-05-14 16:58:10.920064+00 2025-05-14 16:58:10.920078+00 f t SUBTOTAL 0.00 1 251 \N +10486 2025-05-14 16:58:10.92228+00 2025-05-14 16:58:10.92229+00 f t DESCUENTO 0.00 2 251 \N +10487 2025-05-14 16:58:10.924357+00 2025-05-14 16:58:10.92437+00 f t TOTAL 0.00 3 251 \N +10488 2025-05-14 16:58:10.92622+00 2025-05-14 16:58:10.926231+00 f t ADELANTO 0.00 4 251 \N +10301 2025-05-14 16:25:33.870918+00 2025-05-14 16:25:33.87093+00 f t SUBTOTAL 67000.00 1 245 \N +10302 2025-05-14 16:25:33.87315+00 2025-05-14 16:25:33.87316+00 f t DESCUENTO 0.00 2 245 \N +10303 2025-05-14 16:25:33.8746+00 2025-05-14 16:25:33.874609+00 f t TOTAL 67000.00 3 245 \N +10304 2025-05-14 16:25:33.876166+00 2025-05-14 16:25:33.876175+00 f t ADELANTO 18000.00 4 245 \N +10113 2025-05-14 14:23:50.868785+00 2025-05-14 14:23:50.868798+00 f t SUBTOTAL 0.00 1 240 \N +10114 2025-05-14 14:23:50.871262+00 2025-05-14 14:23:50.871273+00 f t DESCUENTO 0.00 2 240 \N +10115 2025-05-14 14:23:50.873523+00 2025-05-14 14:23:50.873534+00 f t TOTAL 0.00 3 240 \N +10116 2025-05-14 14:23:50.875467+00 2025-05-14 14:23:50.875477+00 f t ADELANTO 0.00 4 240 \N +10117 2025-05-14 14:24:32.573516+00 2025-05-14 14:24:32.573527+00 f t SUBTOTAL 38500.00 1 239 \N +10118 2025-05-14 14:24:32.577261+00 2025-05-14 14:24:32.577275+00 f t DESCUENTO 0.00 2 239 \N +10119 2025-05-14 14:24:32.57949+00 2025-05-14 14:24:32.5795+00 f t TOTAL 38500.00 3 239 \N +10120 2025-05-14 14:24:32.581983+00 2025-05-14 14:24:32.581995+00 f t ADELANTO 8500.00 4 239 \N +10697 2025-05-14 17:42:20.283236+00 2025-05-14 17:42:20.283246+00 f t SUBTOTAL 46000.00 1 256 \N +10125 2025-05-14 14:51:07.011924+00 2025-05-14 14:51:07.011937+00 f t SUBTOTAL 0.00 1 241 \N +10126 2025-05-14 14:51:07.013986+00 2025-05-14 14:51:07.013996+00 f t DESCUENTO 0.00 2 241 \N +10127 2025-05-14 14:51:07.017171+00 2025-05-14 14:51:07.017184+00 f t TOTAL 0.00 3 241 \N +10128 2025-05-14 14:51:07.019174+00 2025-05-14 14:51:07.019185+00 f t ADELANTO 0.00 4 241 \N +10698 2025-05-14 17:42:20.285691+00 2025-05-14 17:42:20.285699+00 f t DESCUENTO 0.00 2 256 \N +10699 2025-05-14 17:42:20.288622+00 2025-05-14 17:42:20.288635+00 f t TOTAL 46000.00 3 256 \N +10700 2025-05-14 17:42:20.293892+00 2025-05-14 17:42:20.293903+00 f t ADELANTO 11000.00 4 256 \N +10133 2025-05-14 14:51:23.321815+00 2025-05-14 14:51:23.321828+00 f t SUBTOTAL 0.00 1 242 \N +10134 2025-05-14 14:51:23.324273+00 2025-05-14 14:51:23.324285+00 f t DESCUENTO 0.00 2 242 \N +10135 2025-05-14 14:51:23.326395+00 2025-05-14 14:51:23.326406+00 f t TOTAL 0.00 3 242 \N +10136 2025-05-14 14:51:23.328346+00 2025-05-14 14:51:23.328356+00 f t ADELANTO 0.00 4 242 \N +10149 2025-05-14 15:55:19.886085+00 2025-05-14 15:55:19.886099+00 f t SUBTOTAL 0.00 1 243 \N +10150 2025-05-14 15:55:19.888771+00 2025-05-14 15:55:19.888782+00 f t DESCUENTO 0.00 2 243 \N +10151 2025-05-14 15:55:19.890751+00 2025-05-14 15:55:19.890762+00 f t TOTAL 0.00 3 243 \N +10152 2025-05-14 15:55:19.892682+00 2025-05-14 15:55:19.892692+00 f t ADELANTO 0.00 4 243 \N +10725 2025-05-14 17:49:54.518197+00 2025-05-14 17:49:54.518211+00 f t SUBTOTAL 46000.00 1 257 \N +10726 2025-05-14 17:49:54.520871+00 2025-05-14 17:49:54.520883+00 f t DESCUENTO 0.00 2 257 \N +10727 2025-05-14 17:49:54.523277+00 2025-05-14 17:49:54.523291+00 f t TOTAL 46000.00 3 257 \N +10728 2025-05-14 17:49:54.525507+00 2025-05-14 17:49:54.525519+00 f t ADELANTO 9500.00 4 257 \N +10733 2025-05-14 18:06:35.069856+00 2025-05-14 18:06:35.069869+00 f t SUBTOTAL 0.00 1 258 \N +10529 2025-05-14 17:01:01.891461+00 2025-05-14 17:01:01.891473+00 f t SUBTOTAL 46000.00 1 250 \N +10530 2025-05-14 17:01:01.894055+00 2025-05-14 17:01:01.894068+00 f t DESCUENTO 0.00 2 250 \N +10531 2025-05-14 17:01:01.898547+00 2025-05-14 17:01:01.898557+00 f t TOTAL 46000.00 3 250 \N +10532 2025-05-14 17:01:01.901122+00 2025-05-14 17:01:01.901134+00 f t ADELANTO 11000.00 4 250 \N +10734 2025-05-14 18:06:35.07477+00 2025-05-14 18:06:35.074784+00 f t DESCUENTO 0.00 2 258 \N +10735 2025-05-14 18:06:35.078478+00 2025-05-14 18:06:35.078488+00 f t TOTAL 0.00 3 258 \N +10736 2025-05-14 18:06:35.081155+00 2025-05-14 18:06:35.081169+00 f t ADELANTO 0.00 4 258 \N +10181 2025-05-14 15:56:39.744302+00 2025-05-14 15:56:39.744311+00 f t SUBTOTAL 59500.00 1 244 \N +10182 2025-05-14 15:56:39.747189+00 2025-05-14 15:56:39.747199+00 f t DESCUENTO 0.00 2 244 \N +10183 2025-05-14 15:56:39.749854+00 2025-05-14 15:56:39.749865+00 f t TOTAL 59500.00 3 244 \N +10184 2025-05-14 15:56:39.752013+00 2025-05-14 15:56:39.752025+00 f t ADELANTO 15500.00 4 244 \N +10741 2025-05-14 18:08:05.731518+00 2025-05-14 18:08:05.731532+00 f t SUBTOTAL 0.00 1 259 \N +10377 2025-05-14 16:45:27.973703+00 2025-05-14 16:45:27.973716+00 f t SUBTOTAL 95000.00 1 247 \N +10378 2025-05-14 16:45:27.976453+00 2025-05-14 16:45:27.976462+00 f t DESCUENTO 0.00 2 247 \N +10379 2025-05-14 16:45:27.978691+00 2025-05-14 16:45:27.978704+00 f t TOTAL 95000.00 3 247 \N +10380 2025-05-14 16:45:27.980898+00 2025-05-14 16:45:27.980908+00 f t ADELANTO 10000.00 4 247 \N +10601 2025-05-14 17:24:54.72799+00 2025-05-14 17:24:54.728009+00 f t SUBTOTAL 38500.00 1 253 \N +10602 2025-05-14 17:24:54.73043+00 2025-05-14 17:24:54.730444+00 f t DESCUENTO 0.00 2 253 \N +10603 2025-05-14 17:24:54.732568+00 2025-05-14 17:24:54.732581+00 f t TOTAL 38500.00 3 253 \N +10604 2025-05-14 17:24:54.734244+00 2025-05-14 17:24:54.734252+00 f t ADELANTO 8500.00 4 253 \N +10645 2025-05-14 17:25:31.859561+00 2025-05-14 17:25:31.859573+00 f t SUBTOTAL 95000.00 1 254 \N +10646 2025-05-14 17:25:31.862679+00 2025-05-14 17:25:31.862693+00 f t DESCUENTO 0.00 2 254 \N +10647 2025-05-14 17:25:31.865066+00 2025-05-14 17:25:31.865077+00 f t TOTAL 95000.00 3 254 \N +10648 2025-05-14 17:25:31.866879+00 2025-05-14 17:25:31.866888+00 f t ADELANTO 10000.00 4 254 \N +10742 2025-05-14 18:08:05.734359+00 2025-05-14 18:08:05.734372+00 f t DESCUENTO 0.00 2 259 \N +10743 2025-05-14 18:08:05.736861+00 2025-05-14 18:08:05.736873+00 f t TOTAL 0.00 3 259 \N +10744 2025-05-14 18:08:05.73895+00 2025-05-14 18:08:05.738963+00 f t ADELANTO 0.00 4 259 \N +16021 2025-05-18 02:11:46.833827+00 2025-05-18 02:11:46.833836+00 f t SUBTOTAL 46000.00 1 416 \N +16022 2025-05-18 02:11:46.835458+00 2025-05-18 02:11:46.835466+00 f t DESCUENTO 0.00 2 416 \N +16023 2025-05-18 02:11:46.836632+00 2025-05-18 02:11:46.836638+00 f t TOTAL 46000.00 3 416 \N +11836 2025-05-15 14:36:14.485006+00 2025-05-15 14:36:14.486604+00 f t ADELANTO 0.00 4 299 \N +10757 2025-05-14 18:21:00.608288+00 2025-05-14 18:21:00.608299+00 f t SUBTOTAL 0.00 1 261 \N +10758 2025-05-14 18:21:00.609958+00 2025-05-14 18:21:00.609969+00 f t DESCUENTO 0.00 2 261 \N +10759 2025-05-14 18:21:00.611689+00 2025-05-14 18:21:00.611697+00 f t TOTAL 0.00 3 261 \N +10760 2025-05-14 18:21:00.613304+00 2025-05-14 18:21:00.613314+00 f t ADELANTO 0.00 4 261 \N +10777 2025-05-14 18:21:48.99612+00 2025-05-14 18:21:48.996135+00 f t SUBTOTAL 46000.00 1 260 \N +10778 2025-05-14 18:21:48.999041+00 2025-05-14 18:21:48.999053+00 f t DESCUENTO 0.00 2 260 \N +10779 2025-05-14 18:21:49.001831+00 2025-05-14 18:21:49.001842+00 f t TOTAL 46000.00 3 260 \N +10780 2025-05-14 18:21:49.004631+00 2025-05-14 18:21:49.004643+00 f t ADELANTO 9500.00 4 260 \N +10785 2025-05-14 18:27:16.372575+00 2025-05-14 18:27:16.372585+00 f t SUBTOTAL 0.00 1 262 \N +10786 2025-05-14 18:27:16.374699+00 2025-05-14 18:27:16.374708+00 f t DESCUENTO 0.00 2 262 \N +10787 2025-05-14 18:27:16.377359+00 2025-05-14 18:27:16.377373+00 f t TOTAL 0.00 3 262 \N +10788 2025-05-14 18:27:16.380943+00 2025-05-14 18:27:16.380956+00 f t ADELANTO 0.00 4 262 \N +10793 2025-05-14 18:30:23.864484+00 2025-05-14 18:30:23.864498+00 f t SUBTOTAL 0.00 1 263 \N +10794 2025-05-14 18:30:23.867448+00 2025-05-14 18:30:23.867461+00 f t DESCUENTO 0.00 2 263 \N +10795 2025-05-14 18:30:23.869914+00 2025-05-14 18:30:23.869927+00 f t TOTAL 0.00 3 263 \N +10796 2025-05-14 18:30:23.872207+00 2025-05-14 18:30:23.87222+00 f t ADELANTO 0.00 4 263 \N +10801 2025-05-14 18:31:03.521144+00 2025-05-14 18:31:03.521164+00 f t SUBTOTAL 0.00 1 264 \N +10802 2025-05-14 18:31:03.523595+00 2025-05-14 18:31:03.523605+00 f t DESCUENTO 0.00 2 264 \N +10803 2025-05-14 18:31:03.525766+00 2025-05-14 18:31:03.525777+00 f t TOTAL 0.00 3 264 \N +10804 2025-05-14 18:31:03.528175+00 2025-05-14 18:31:03.528187+00 f t ADELANTO 0.00 4 264 \N +10809 2025-05-14 18:31:40.989153+00 2025-05-14 18:31:40.989162+00 f t SUBTOTAL 0.00 1 265 \N +10810 2025-05-14 18:31:40.992836+00 2025-05-14 18:31:40.992847+00 f t DESCUENTO 0.00 2 265 \N +10811 2025-05-14 18:31:40.995446+00 2025-05-14 18:31:40.995458+00 f t TOTAL 0.00 3 265 \N +10812 2025-05-14 18:31:40.997568+00 2025-05-14 18:31:40.997581+00 f t ADELANTO 0.00 4 265 \N +11017 2025-05-14 20:35:01.272095+00 2025-05-14 20:35:01.272108+00 f t SUBTOTAL 95000.00 1 273 \N +11018 2025-05-14 20:35:01.274951+00 2025-05-14 20:35:01.274962+00 f t DESCUENTO 0.00 2 273 \N +11019 2025-05-14 20:35:01.277294+00 2025-05-14 20:35:01.277305+00 f t TOTAL 95000.00 3 273 \N +11020 2025-05-14 20:35:01.279605+00 2025-05-14 20:35:01.279617+00 f t ADELANTO 10000.00 4 273 \N +10837 2025-05-14 18:38:11.457514+00 2025-05-14 18:38:11.457526+00 f t SUBTOTAL 46000.00 1 266 \N +10838 2025-05-14 18:38:11.460019+00 2025-05-14 18:38:11.460027+00 f t DESCUENTO 0.00 2 266 \N +10839 2025-05-14 18:38:11.463798+00 2025-05-14 18:38:11.463812+00 f t TOTAL 46000.00 3 266 \N +10840 2025-05-14 18:38:11.466041+00 2025-05-14 18:38:11.46605+00 f t ADELANTO 11000.00 4 266 \N +10845 2025-05-14 18:44:38.91728+00 2025-05-14 18:44:38.917293+00 f t SUBTOTAL 0.00 1 267 \N +10846 2025-05-14 18:44:38.920253+00 2025-05-14 18:44:38.920265+00 f t DESCUENTO 0.00 2 267 \N +10847 2025-05-14 18:44:38.923727+00 2025-05-14 18:44:38.92374+00 f t TOTAL 0.00 3 267 \N +10848 2025-05-14 18:44:38.925871+00 2025-05-14 18:44:38.92588+00 f t ADELANTO 0.00 4 267 \N +10853 2025-05-14 18:56:54.025718+00 2025-05-14 18:56:54.025732+00 f t SUBTOTAL 0.00 1 268 \N +10854 2025-05-14 18:56:54.028199+00 2025-05-14 18:56:54.028211+00 f t DESCUENTO 0.00 2 268 \N +10855 2025-05-14 18:56:54.031278+00 2025-05-14 18:56:54.031293+00 f t TOTAL 0.00 3 268 \N +10856 2025-05-14 18:56:54.034887+00 2025-05-14 18:56:54.034901+00 f t ADELANTO 0.00 4 268 \N +10873 2025-05-14 19:38:01.41203+00 2025-05-14 19:38:01.412043+00 f t SUBTOTAL 0.00 1 269 \N +10874 2025-05-14 19:38:01.415716+00 2025-05-14 19:38:01.41573+00 f t DESCUENTO 0.00 2 269 \N +10875 2025-05-14 19:38:01.418225+00 2025-05-14 19:38:01.418235+00 f t TOTAL 0.00 3 269 \N +10876 2025-05-14 19:38:01.420597+00 2025-05-14 19:38:01.420611+00 f t ADELANTO 0.00 4 269 \N +11445 2025-05-14 23:40:35.237441+00 2025-05-14 23:40:35.237451+00 f t SUBTOTAL 0.00 1 286 \N +11446 2025-05-14 23:40:35.239486+00 2025-05-14 23:40:35.239499+00 f t DESCUENTO 0.00 2 286 \N +11447 2025-05-14 23:40:35.241314+00 2025-05-14 23:40:35.241325+00 f t TOTAL 0.00 3 286 \N +11448 2025-05-14 23:40:35.243789+00 2025-05-14 23:40:35.243801+00 f t ADELANTO 0.00 4 286 \N +10913 2025-05-14 19:53:13.49127+00 2025-05-14 19:53:13.491283+00 f t SUBTOTAL 103000.00 1 270 \N +10914 2025-05-14 19:53:13.493547+00 2025-05-14 19:53:13.493559+00 f t DESCUENTO 0.00 2 270 \N +10915 2025-05-14 19:53:13.495299+00 2025-05-14 19:53:13.495309+00 f t TOTAL 103000.00 3 270 \N +10916 2025-05-14 19:53:13.497068+00 2025-05-14 19:53:13.497075+00 f t ADELANTO 21500.00 4 270 \N +11113 2025-05-14 20:37:47.321963+00 2025-05-14 20:37:47.321976+00 f t SUBTOTAL 0.00 1 275 \N +11114 2025-05-14 20:37:47.324986+00 2025-05-14 20:37:47.325002+00 f t DESCUENTO 0.00 2 275 \N +11115 2025-05-14 20:37:47.32762+00 2025-05-14 20:37:47.327632+00 f t TOTAL 0.00 3 275 \N +11116 2025-05-14 20:37:47.3295+00 2025-05-14 20:37:47.32951+00 f t ADELANTO 0.00 4 275 \N +11121 2025-05-14 20:38:24.251177+00 2025-05-14 20:38:24.25119+00 f t SUBTOTAL 95500.00 1 274 \N +11122 2025-05-14 20:38:24.254299+00 2025-05-14 20:38:24.254315+00 f t DESCUENTO 0.00 2 274 \N +11123 2025-05-14 20:38:24.257542+00 2025-05-14 20:38:24.257555+00 f t TOTAL 95500.00 3 274 \N +10949 2025-05-14 19:59:54.485632+00 2025-05-14 19:59:54.485645+00 f t SUBTOTAL 46000.00 1 271 \N +10950 2025-05-14 19:59:54.488113+00 2025-05-14 19:59:54.488127+00 f t DESCUENTO 0.00 2 271 \N +10951 2025-05-14 19:59:54.490702+00 2025-05-14 19:59:54.490715+00 f t TOTAL 46000.00 3 271 \N +10952 2025-05-14 19:59:54.492899+00 2025-05-14 19:59:54.492912+00 f t ADELANTO 11000.00 4 271 \N +11124 2025-05-14 20:38:24.261678+00 2025-05-14 20:38:24.261692+00 f t ADELANTO 60500.00 4 274 \N +11129 2025-05-14 21:14:55.143602+00 2025-05-14 21:14:55.143616+00 f t SUBTOTAL 0.00 1 276 \N +11130 2025-05-14 21:14:55.145638+00 2025-05-14 21:14:55.14565+00 f t DESCUENTO 0.00 2 276 \N +11131 2025-05-14 21:14:55.147501+00 2025-05-14 21:14:55.147511+00 f t TOTAL 0.00 3 276 \N +11132 2025-05-14 21:14:55.148999+00 2025-05-14 21:14:55.149008+00 f t ADELANTO 0.00 4 276 \N +11137 2025-05-14 21:18:53.431968+00 2025-05-14 21:18:53.431981+00 f t SUBTOTAL 0.00 1 277 \N +11138 2025-05-14 21:18:53.434011+00 2025-05-14 21:18:53.434022+00 f t DESCUENTO 0.00 2 277 \N +11139 2025-05-14 21:18:53.436349+00 2025-05-14 21:18:53.436361+00 f t TOTAL 0.00 3 277 \N +11140 2025-05-14 21:18:53.438635+00 2025-05-14 21:18:53.438643+00 f t ADELANTO 0.00 4 277 \N +11145 2025-05-14 21:23:46.896166+00 2025-05-14 21:23:46.896176+00 f t SUBTOTAL 0.00 1 278 \N +11146 2025-05-14 21:23:46.897495+00 2025-05-14 21:23:46.897502+00 f t DESCUENTO 0.00 2 278 \N +11147 2025-05-14 21:23:46.898653+00 2025-05-14 21:23:46.898659+00 f t TOTAL 0.00 3 278 \N +11148 2025-05-14 21:23:46.899768+00 2025-05-14 21:23:46.899773+00 f t ADELANTO 0.00 4 278 \N +16024 2025-05-18 02:11:46.83777+00 2025-05-18 02:11:46.837775+00 f t ADELANTO 9500.00 4 416 \N +14473 2025-05-17 11:36:47.710676+00 2025-05-17 11:36:47.710685+00 f t SUBTOTAL 0.00 1 378 \N +14474 2025-05-17 11:36:47.713219+00 2025-05-17 11:36:47.713231+00 f t DESCUENTO 0.00 2 378 \N +11509 2025-05-15 00:19:16.931844+00 2025-05-15 00:19:16.931854+00 f t SUBTOTAL 38500.00 1 287 \N +11510 2025-05-15 00:19:16.947878+00 2025-05-15 00:19:16.947888+00 f t DESCUENTO 0.00 2 287 \N +11511 2025-05-15 00:19:16.950037+00 2025-05-15 00:19:16.950047+00 f t TOTAL 38500.00 3 287 \N +11512 2025-05-15 00:19:16.951771+00 2025-05-15 00:19:16.951779+00 f t ADELANTO 8500.00 4 287 \N +11257 2025-05-14 22:19:12.421476+00 2025-05-14 22:19:12.421485+00 f t SUBTOTAL 77500.00 1 280 \N +11258 2025-05-14 22:19:12.424066+00 2025-05-14 22:19:12.424079+00 f t DESCUENTO 0.00 2 280 \N +11259 2025-05-14 22:19:12.425796+00 2025-05-14 22:19:12.425807+00 f t TOTAL 77500.00 3 280 \N +11260 2025-05-14 22:19:12.427448+00 2025-05-14 22:19:12.427455+00 f t ADELANTO 42500.00 4 280 \N +11285 2025-05-14 22:25:59.032061+00 2025-05-14 22:25:59.032073+00 f t SUBTOTAL 46000.00 1 281 \N +11286 2025-05-14 22:25:59.034413+00 2025-05-14 22:25:59.034424+00 f t DESCUENTO 0.00 2 281 \N +11287 2025-05-14 22:25:59.03632+00 2025-05-14 22:25:59.036331+00 f t TOTAL 46000.00 3 281 \N +11288 2025-05-14 22:25:59.038054+00 2025-05-14 22:25:59.038064+00 f t ADELANTO 11000.00 4 281 \N +12141 2025-05-15 17:39:32.757301+00 2025-05-15 17:39:32.757329+00 f t SUBTOTAL 46000.00 1 310 \N +12142 2025-05-15 17:39:32.760099+00 2025-05-15 17:39:32.76011+00 f t DESCUENTO 0.00 2 310 \N +12143 2025-05-15 17:39:32.762001+00 2025-05-15 17:39:32.762009+00 f t TOTAL 46000.00 3 310 \N +12144 2025-05-15 17:39:32.764378+00 2025-05-15 17:39:32.764389+00 f t ADELANTO 9500.00 4 310 \N +11337 2025-05-14 22:48:05.403719+00 2025-05-14 22:48:05.40373+00 f t SUBTOTAL 208500.00 1 282 \N +11338 2025-05-14 22:48:05.405778+00 2025-05-14 22:48:05.405789+00 f t DESCUENTO 0.00 2 282 \N +11339 2025-05-14 22:48:05.407517+00 2025-05-14 22:48:05.407527+00 f t TOTAL 208500.00 3 282 \N +11340 2025-05-14 22:48:05.409138+00 2025-05-14 22:48:05.409147+00 f t ADELANTO 33500.00 4 282 \N +11213 2025-05-14 22:12:15.817656+00 2025-05-14 22:12:15.817667+00 f t SUBTOTAL 46000.00 1 279 \N +11214 2025-05-14 22:12:15.821085+00 2025-05-14 22:12:15.821094+00 f t DESCUENTO 0.00 2 279 \N +11215 2025-05-14 22:12:15.824873+00 2025-05-14 22:12:15.824884+00 f t TOTAL 46000.00 3 279 \N +11216 2025-05-14 22:12:15.827034+00 2025-05-14 22:12:15.827044+00 f t ADELANTO 9500.00 4 279 \N +11553 2025-05-15 02:18:07.628544+00 2025-05-15 02:18:07.628556+00 f t SUBTOTAL 67000.00 1 288 \N +11554 2025-05-15 02:18:07.63061+00 2025-05-15 02:18:07.630621+00 f t DESCUENTO 0.00 2 288 \N +11555 2025-05-15 02:18:07.632569+00 2025-05-15 02:18:07.63258+00 f t TOTAL 67000.00 3 288 \N +11556 2025-05-15 02:18:07.634265+00 2025-05-15 02:18:07.634275+00 f t ADELANTO 18000.00 4 288 \N +11365 2025-05-14 23:14:06.29158+00 2025-05-14 23:14:06.291594+00 f t SUBTOTAL 46000.00 1 283 \N +11366 2025-05-14 23:14:06.294154+00 2025-05-14 23:14:06.294164+00 f t DESCUENTO 0.00 2 283 \N +11367 2025-05-14 23:14:06.296518+00 2025-05-14 23:14:06.296529+00 f t TOTAL 46000.00 3 283 \N +11368 2025-05-14 23:14:06.301445+00 2025-05-14 23:14:06.301458+00 f t ADELANTO 9500.00 4 283 \N +11561 2025-05-15 02:32:29.336925+00 2025-05-15 02:32:29.336937+00 f t SUBTOTAL 0.00 1 289 \N +11562 2025-05-15 02:32:29.33915+00 2025-05-15 02:32:29.339161+00 f t DESCUENTO 0.00 2 289 \N +11563 2025-05-15 02:32:29.341253+00 2025-05-15 02:32:29.341262+00 f t TOTAL 0.00 3 289 \N +11564 2025-05-15 02:32:29.342888+00 2025-05-15 02:32:29.342896+00 f t ADELANTO 0.00 4 289 \N +11393 2025-05-14 23:16:46.616211+00 2025-05-14 23:16:46.616223+00 f t SUBTOTAL 46000.00 1 284 \N +11394 2025-05-14 23:16:46.618134+00 2025-05-14 23:16:46.618144+00 f t DESCUENTO 0.00 2 284 \N +11395 2025-05-14 23:16:46.620022+00 2025-05-14 23:16:46.620031+00 f t TOTAL 46000.00 3 284 \N +11396 2025-05-14 23:16:46.621513+00 2025-05-14 23:16:46.621522+00 f t ADELANTO 9500.00 4 284 \N +11569 2025-05-15 08:54:18.513548+00 2025-05-15 08:54:18.513558+00 f t SUBTOTAL 0.00 1 290 \N +11570 2025-05-15 08:54:18.515243+00 2025-05-15 08:54:18.515254+00 f t DESCUENTO 0.00 2 290 \N +11571 2025-05-15 08:54:18.5167+00 2025-05-15 08:54:18.516707+00 f t TOTAL 0.00 3 290 \N +11572 2025-05-15 08:54:18.518009+00 2025-05-15 08:54:18.518015+00 f t ADELANTO 0.00 4 290 \N +11577 2025-05-15 08:56:29.642656+00 2025-05-15 08:56:29.642668+00 f t SUBTOTAL 0.00 1 291 \N +11578 2025-05-15 08:56:29.644511+00 2025-05-15 08:56:29.644519+00 f t DESCUENTO 0.00 2 291 \N +11579 2025-05-15 08:56:29.645981+00 2025-05-15 08:56:29.645987+00 f t TOTAL 0.00 3 291 \N +11580 2025-05-15 08:56:29.647216+00 2025-05-15 08:56:29.647222+00 f t ADELANTO 0.00 4 291 \N +11481 2025-05-14 23:42:09.823624+00 2025-05-14 23:42:09.823639+00 f t SUBTOTAL 67000.00 1 285 \N +11482 2025-05-14 23:42:09.826035+00 2025-05-14 23:42:09.826044+00 f t DESCUENTO 0.00 2 285 \N +11483 2025-05-14 23:42:09.827821+00 2025-05-14 23:42:09.827828+00 f t TOTAL 67000.00 3 285 \N +11484 2025-05-14 23:42:09.829371+00 2025-05-14 23:42:09.829378+00 f t ADELANTO 18000.00 4 285 \N +11605 2025-05-15 10:58:37.933707+00 2025-05-15 10:58:37.933717+00 f t SUBTOTAL 46000.00 1 292 \N +11606 2025-05-15 10:58:37.935763+00 2025-05-15 10:58:37.935771+00 f t DESCUENTO 0.00 2 292 \N +11607 2025-05-15 10:58:37.937347+00 2025-05-15 10:58:37.937354+00 f t TOTAL 46000.00 3 292 \N +11608 2025-05-15 10:58:37.938753+00 2025-05-15 10:58:37.938761+00 f t ADELANTO 9500.00 4 292 \N +11613 2025-05-15 11:58:57.422873+00 2025-05-15 11:58:57.422887+00 f t SUBTOTAL 0.00 1 293 \N +11614 2025-05-15 11:58:57.424791+00 2025-05-15 11:58:57.424801+00 f t DESCUENTO 0.00 2 293 \N +11615 2025-05-15 11:58:57.426601+00 2025-05-15 11:58:57.42661+00 f t TOTAL 0.00 3 293 \N +11616 2025-05-15 11:58:57.428179+00 2025-05-15 11:58:57.428188+00 f t ADELANTO 0.00 4 293 \N +11661 2025-05-15 12:12:30.668084+00 2025-05-15 12:12:30.668097+00 f t SUBTOTAL 46000.00 1 294 \N +11662 2025-05-15 12:12:30.670553+00 2025-05-15 12:12:30.670567+00 f t DESCUENTO 0.00 2 294 \N +11663 2025-05-15 12:12:30.672393+00 2025-05-15 12:12:30.672404+00 f t TOTAL 46000.00 3 294 \N +11664 2025-05-15 12:12:30.674273+00 2025-05-15 12:12:30.674283+00 f t ADELANTO 9500.00 4 294 \N +11669 2025-05-15 12:40:46.62108+00 2025-05-15 12:40:46.621091+00 f t SUBTOTAL 0.00 1 295 \N +11670 2025-05-15 12:40:46.622859+00 2025-05-15 12:40:46.622867+00 f t DESCUENTO 0.00 2 295 \N +11671 2025-05-15 12:40:46.624348+00 2025-05-15 12:40:46.624355+00 f t TOTAL 0.00 3 295 \N +11672 2025-05-15 12:40:46.625607+00 2025-05-15 12:40:46.625613+00 f t ADELANTO 0.00 4 295 \N +11677 2025-05-15 12:50:57.869712+00 2025-05-15 12:50:57.869725+00 f t SUBTOTAL 46000.00 1 252 \N +11678 2025-05-15 12:50:57.872083+00 2025-05-15 12:50:57.872095+00 f t DESCUENTO 0.00 2 252 \N +11679 2025-05-15 12:50:57.87409+00 2025-05-15 12:50:57.874101+00 f t TOTAL 46000.00 3 252 \N +11680 2025-05-15 12:50:57.876371+00 2025-05-15 12:50:57.876383+00 f t ADELANTO 9500.00 4 252 \N +11685 2025-05-15 13:12:18.046112+00 2025-05-15 13:12:18.046125+00 f t SUBTOTAL 0.00 1 296 \N +11686 2025-05-15 13:12:18.048174+00 2025-05-15 13:12:18.048185+00 f t DESCUENTO 0.00 2 296 \N +11687 2025-05-15 13:12:18.050451+00 2025-05-15 13:12:18.050462+00 f t TOTAL 0.00 3 296 \N +11688 2025-05-15 13:12:18.052543+00 2025-05-15 13:12:18.052553+00 f t ADELANTO 0.00 4 296 \N +11693 2025-05-15 13:42:53.487749+00 2025-05-15 13:42:53.487761+00 f t SUBTOTAL 0.00 1 297 \N +11694 2025-05-15 13:42:53.48962+00 2025-05-15 13:42:53.48963+00 f t DESCUENTO 0.00 2 297 \N +11695 2025-05-15 13:42:53.491109+00 2025-05-15 13:42:53.491118+00 f t TOTAL 0.00 3 297 \N +11696 2025-05-15 13:42:53.493016+00 2025-05-15 13:42:53.493024+00 f t ADELANTO 0.00 4 297 \N +14475 2025-05-17 11:36:47.716363+00 2025-05-17 11:36:47.716374+00 f t TOTAL 0.00 3 378 \N +14476 2025-05-17 11:36:47.718139+00 2025-05-17 11:36:47.718148+00 f t ADELANTO 0.00 4 378 \N +15245 2025-05-17 22:50:15.232648+00 2025-05-17 22:50:15.232661+00 f t SUBTOTAL 95500.00 1 401 \N +15246 2025-05-17 22:50:15.235918+00 2025-05-17 22:50:15.235932+00 f t DESCUENTO 0.00 2 401 \N +11825 2025-05-15 14:21:30.661639+00 2025-05-15 14:21:30.66165+00 f t SUBTOTAL 25000.00 1 298 \N +11826 2025-05-15 14:21:30.663834+00 2025-05-15 14:21:30.663845+00 f t DESCUENTO 0.00 2 298 \N +11827 2025-05-15 14:21:30.665662+00 2025-05-15 14:21:30.66567+00 f t TOTAL 25000.00 3 298 \N +11828 2025-05-15 14:21:30.667123+00 2025-05-15 14:21:30.667133+00 f t ADELANTO 25000.00 4 298 \N +15247 2025-05-17 22:50:15.238883+00 2025-05-17 22:50:15.238892+00 f t TOTAL 95500.00 3 401 \N +11873 2025-05-15 14:40:26.193058+00 2025-05-15 14:40:26.193069+00 f t SUBTOTAL 59500.00 1 300 \N +11874 2025-05-15 14:40:26.195905+00 2025-05-15 14:40:26.195916+00 f t DESCUENTO 0.00 2 300 \N +11875 2025-05-15 14:40:26.19857+00 2025-05-15 14:40:26.198581+00 f t TOTAL 59500.00 3 300 \N +11876 2025-05-15 14:40:26.204841+00 2025-05-15 14:40:26.204852+00 f t ADELANTO 15500.00 4 300 \N +12797 2025-05-16 03:10:28.517496+00 2025-05-16 03:10:28.517509+00 f t SUBTOTAL 0.00 1 328 \N +12798 2025-05-16 03:10:28.519856+00 2025-05-16 03:10:28.519869+00 f t DESCUENTO 0.00 2 328 \N +12799 2025-05-16 03:10:28.524242+00 2025-05-16 03:10:28.524255+00 f t TOTAL 0.00 3 328 \N +12800 2025-05-16 03:10:28.528069+00 2025-05-16 03:10:28.528082+00 f t ADELANTO 0.00 4 328 \N +12169 2025-05-15 18:23:29.125719+00 2025-05-15 18:23:29.12573+00 f t SUBTOTAL 38500.00 1 311 \N +12170 2025-05-15 18:23:29.128077+00 2025-05-15 18:23:29.128088+00 f t DESCUENTO 0.00 2 311 \N +12171 2025-05-15 18:23:29.129964+00 2025-05-15 18:23:29.129972+00 f t TOTAL 38500.00 3 311 \N +12172 2025-05-15 18:23:29.131682+00 2025-05-15 18:23:29.131689+00 f t ADELANTO 8500.00 4 311 \N +12177 2025-05-15 19:17:04.689736+00 2025-05-15 19:17:04.689751+00 f t SUBTOTAL 0.00 1 312 \N +12178 2025-05-15 19:17:04.692756+00 2025-05-15 19:17:04.69277+00 f t DESCUENTO 0.00 2 312 \N +12179 2025-05-15 19:17:04.695461+00 2025-05-15 19:17:04.695474+00 f t TOTAL 0.00 3 312 \N +12180 2025-05-15 19:17:04.697897+00 2025-05-15 19:17:04.697909+00 f t ADELANTO 0.00 4 312 \N +12521 2025-05-15 21:42:05.281501+00 2025-05-15 21:42:05.281514+00 f t SUBTOTAL 0.00 1 319 \N +12522 2025-05-15 21:42:05.283574+00 2025-05-15 21:42:05.283586+00 f t DESCUENTO 0.00 2 319 \N +12523 2025-05-15 21:42:05.285514+00 2025-05-15 21:42:05.285525+00 f t TOTAL 0.00 3 319 \N +12524 2025-05-15 21:42:05.287547+00 2025-05-15 21:42:05.287559+00 f t ADELANTO 0.00 4 319 \N +12849 2025-05-16 08:11:00.84109+00 2025-05-16 08:11:00.8411+00 f t SUBTOTAL 46000.00 1 329 \N +12850 2025-05-16 08:11:00.843179+00 2025-05-16 08:11:00.843188+00 f t DESCUENTO 0.00 2 329 \N +12851 2025-05-16 08:11:00.845012+00 2025-05-16 08:11:00.845024+00 f t TOTAL 46000.00 3 329 \N +12537 2025-05-15 22:57:32.687291+00 2025-05-15 22:57:32.687303+00 f t SUBTOTAL 0.00 1 321 \N +12538 2025-05-15 22:57:32.689429+00 2025-05-15 22:57:32.68944+00 f t DESCUENTO 0.00 2 321 \N +12539 2025-05-15 22:57:32.691928+00 2025-05-15 22:57:32.69194+00 f t TOTAL 0.00 3 321 \N +12540 2025-05-15 22:57:32.693539+00 2025-05-15 22:57:32.693547+00 f t ADELANTO 0.00 4 321 \N +12852 2025-05-16 08:11:00.846947+00 2025-05-16 08:11:00.846958+00 f t ADELANTO 9500.00 4 329 \N +12217 2025-05-15 19:54:53.573576+00 2025-05-15 19:54:53.573585+00 f t SUBTOTAL 67000.00 1 313 \N +11929 2025-05-15 14:53:14.832529+00 2025-05-15 14:53:14.832542+00 f t SUBTOTAL 38500.00 1 301 \N +11930 2025-05-15 14:53:14.834802+00 2025-05-15 14:53:14.834812+00 f t DESCUENTO 0.00 2 301 \N +11931 2025-05-15 14:53:14.836663+00 2025-05-15 14:53:14.836671+00 f t TOTAL 38500.00 3 301 \N +11932 2025-05-15 14:53:14.838556+00 2025-05-15 14:53:14.838565+00 f t ADELANTO 8500.00 4 301 \N +12218 2025-05-15 19:54:53.575789+00 2025-05-15 19:54:53.575801+00 f t DESCUENTO 0.00 2 313 \N +12219 2025-05-15 19:54:53.577874+00 2025-05-15 19:54:53.577885+00 f t TOTAL 67000.00 3 313 \N +12220 2025-05-15 19:54:53.582506+00 2025-05-15 19:54:53.582519+00 f t ADELANTO 18000.00 4 313 \N +12225 2025-05-15 20:15:35.223021+00 2025-05-15 20:15:35.223036+00 f t SUBTOTAL 0.00 1 314 \N +11941 2025-05-15 15:14:58.358886+00 2025-05-15 15:14:58.358898+00 f t SUBTOTAL 0.00 1 302 \N +11942 2025-05-15 15:14:58.361004+00 2025-05-15 15:14:58.361012+00 f t DESCUENTO 0.00 2 302 \N +11943 2025-05-15 15:14:58.362097+00 2025-05-15 15:14:58.362103+00 f t TOTAL 0.00 3 302 \N +11944 2025-05-15 15:14:58.363269+00 2025-05-15 15:14:58.363275+00 f t ADELANTO 0.00 4 302 \N +12226 2025-05-15 20:15:35.225698+00 2025-05-15 20:15:35.225713+00 f t DESCUENTO 0.00 2 314 \N +12227 2025-05-15 20:15:35.228042+00 2025-05-15 20:15:35.228055+00 f t TOTAL 0.00 3 314 \N +12228 2025-05-15 20:15:35.231254+00 2025-05-15 20:15:35.231269+00 f t ADELANTO 0.00 4 314 \N +12285 2025-05-15 20:18:31.720195+00 2025-05-15 20:18:31.720206+00 f t SUBTOTAL 80500.00 1 315 \N +12286 2025-05-15 20:18:31.722136+00 2025-05-15 20:18:31.722147+00 f t DESCUENTO 0.00 2 315 \N +12287 2025-05-15 20:18:31.723671+00 2025-05-15 20:18:31.723678+00 f t TOTAL 80500.00 3 315 \N +12288 2025-05-15 20:18:31.725122+00 2025-05-15 20:18:31.725131+00 f t ADELANTO 22500.00 4 315 \N +12013 2025-05-15 15:52:51.063671+00 2025-05-15 15:52:51.063685+00 f t SUBTOTAL 25000.00 1 303 \N +12014 2025-05-15 15:52:51.066573+00 2025-05-15 15:52:51.066584+00 f t DESCUENTO 0.00 2 303 \N +12015 2025-05-15 15:52:51.071864+00 2025-05-15 15:52:51.071873+00 f t TOTAL 25000.00 3 303 \N +12016 2025-05-15 15:52:51.074217+00 2025-05-15 15:52:51.07423+00 f t ADELANTO 25000.00 4 303 \N +12021 2025-05-15 16:03:28.57324+00 2025-05-15 16:03:28.573255+00 f t SUBTOTAL 0.00 1 304 \N +12022 2025-05-15 16:03:28.578469+00 2025-05-15 16:03:28.578483+00 f t DESCUENTO 0.00 2 304 \N +12023 2025-05-15 16:03:28.581548+00 2025-05-15 16:03:28.581558+00 f t TOTAL 0.00 3 304 \N +12024 2025-05-15 16:03:28.588134+00 2025-05-15 16:03:28.588143+00 f t ADELANTO 0.00 4 304 \N +12029 2025-05-15 16:25:51.708001+00 2025-05-15 16:25:51.708015+00 f t SUBTOTAL 0.00 1 305 \N +12030 2025-05-15 16:25:51.710647+00 2025-05-15 16:25:51.710661+00 f t DESCUENTO 0.00 2 305 \N +12031 2025-05-15 16:25:51.713295+00 2025-05-15 16:25:51.713309+00 f t TOTAL 0.00 3 305 \N +12032 2025-05-15 16:25:51.715778+00 2025-05-15 16:25:51.715792+00 f t ADELANTO 0.00 4 305 \N +12053 2025-05-15 16:40:16.443754+00 2025-05-15 16:40:16.443766+00 f t SUBTOTAL 0.00 1 306 \N +12054 2025-05-15 16:40:16.455107+00 2025-05-15 16:40:16.455118+00 f t DESCUENTO 0.00 2 306 \N +12055 2025-05-15 16:40:16.457623+00 2025-05-15 16:40:16.457632+00 f t TOTAL 0.00 3 306 \N +12056 2025-05-15 16:40:16.459594+00 2025-05-15 16:40:16.459604+00 f t ADELANTO 0.00 4 306 \N +12061 2025-05-15 16:41:45.240196+00 2025-05-15 16:41:45.240207+00 f t SUBTOTAL 0.00 1 307 \N +12062 2025-05-15 16:41:45.242539+00 2025-05-15 16:41:45.242552+00 f t DESCUENTO 0.00 2 307 \N +12063 2025-05-15 16:41:45.244728+00 2025-05-15 16:41:45.24474+00 f t TOTAL 0.00 3 307 \N +12064 2025-05-15 16:41:45.24665+00 2025-05-15 16:41:45.246661+00 f t ADELANTO 0.00 4 307 \N +12093 2025-05-15 16:42:13.428791+00 2025-05-15 16:42:13.4288+00 f t SUBTOTAL 46000.00 1 308 \N +12094 2025-05-15 16:42:13.43042+00 2025-05-15 16:42:13.430428+00 f t DESCUENTO 0.00 2 308 \N +12095 2025-05-15 16:42:13.431992+00 2025-05-15 16:42:13.431999+00 f t TOTAL 46000.00 3 308 \N +12096 2025-05-15 16:42:13.433452+00 2025-05-15 16:42:13.433461+00 f t ADELANTO 9500.00 4 308 \N +15248 2025-05-17 22:50:15.241097+00 2025-05-17 22:50:15.241106+00 f t ADELANTO 60500.00 4 401 \N +12461 2025-05-15 21:06:36.135417+00 2025-05-15 21:06:36.13543+00 f t SUBTOTAL 92000.00 1 317 \N +12462 2025-05-15 21:06:36.138144+00 2025-05-15 21:06:36.138153+00 f t DESCUENTO 0.00 2 317 \N +12405 2025-05-15 20:27:25.468557+00 2025-05-15 20:27:25.468569+00 f t SUBTOTAL 171500.00 1 316 \N +12406 2025-05-15 20:27:25.470484+00 2025-05-15 20:27:25.470493+00 f t DESCUENTO 0.00 2 316 \N +12407 2025-05-15 20:27:25.472116+00 2025-05-15 20:27:25.472126+00 f t TOTAL 171500.00 3 316 \N +12408 2025-05-15 20:27:25.473683+00 2025-05-15 20:27:25.473692+00 f t ADELANTO 111500.00 4 316 \N +12463 2025-05-15 21:06:36.140304+00 2025-05-15 21:06:36.140316+00 f t TOTAL 92000.00 3 317 \N +12464 2025-05-15 21:06:36.142171+00 2025-05-15 21:06:36.142182+00 f t ADELANTO 22000.00 4 317 \N +13141 2025-05-16 13:43:43.706681+00 2025-05-16 13:43:43.706692+00 f t SUBTOTAL 0.00 1 339 \N +12789 2025-05-16 02:38:20.852151+00 2025-05-16 02:38:20.852163+00 f t SUBTOTAL 25000.00 1 327 \N +12790 2025-05-16 02:38:20.854033+00 2025-05-16 02:38:20.854044+00 f t DESCUENTO 0.00 2 327 \N +12791 2025-05-16 02:38:20.855611+00 2025-05-16 02:38:20.85562+00 f t TOTAL 25000.00 3 327 \N +12792 2025-05-16 02:38:20.85723+00 2025-05-16 02:38:20.857238+00 f t ADELANTO 25000.00 4 327 \N +13142 2025-05-16 13:43:43.708514+00 2025-05-16 13:43:43.708521+00 f t DESCUENTO 0.00 2 339 \N +13143 2025-05-16 13:43:43.712488+00 2025-05-16 13:43:43.712497+00 f t TOTAL 0.00 3 339 \N +13144 2025-05-16 13:43:43.714126+00 2025-05-16 13:43:43.714133+00 f t ADELANTO 0.00 4 339 \N +13157 2025-05-16 14:42:15.876845+00 2025-05-16 14:42:15.876856+00 f t SUBTOTAL 0.00 1 341 \N +13158 2025-05-16 14:42:15.87878+00 2025-05-16 14:42:15.878789+00 f t DESCUENTO 0.00 2 341 \N +13159 2025-05-16 14:42:15.88045+00 2025-05-16 14:42:15.880459+00 f t TOTAL 0.00 3 341 \N +13160 2025-05-16 14:42:15.881839+00 2025-05-16 14:42:15.881847+00 f t ADELANTO 0.00 4 341 \N +12513 2025-05-15 21:16:04.658481+00 2025-05-15 21:16:04.658494+00 f t SUBTOTAL 25000.00 1 318 \N +12514 2025-05-15 21:16:04.660731+00 2025-05-15 21:16:04.660739+00 f t DESCUENTO 0.00 2 318 \N +12515 2025-05-15 21:16:04.662849+00 2025-05-15 21:16:04.66286+00 f t TOTAL 25000.00 3 318 \N +12516 2025-05-15 21:16:04.668078+00 2025-05-15 21:16:04.66809+00 f t ADELANTO 25000.00 4 318 \N +13173 2025-05-16 14:52:00.557836+00 2025-05-16 14:52:00.557847+00 f t SUBTOTAL 0.00 1 343 \N +12529 2025-05-15 22:37:53.027082+00 2025-05-15 22:37:53.027095+00 f t SUBTOTAL 0.00 1 320 \N +12530 2025-05-15 22:37:53.029642+00 2025-05-15 22:37:53.029652+00 f t DESCUENTO 0.00 2 320 \N +12531 2025-05-15 22:37:53.031754+00 2025-05-15 22:37:53.031766+00 f t TOTAL 0.00 3 320 \N +12532 2025-05-15 22:37:53.034091+00 2025-05-15 22:37:53.034104+00 f t ADELANTO 0.00 4 320 \N +13174 2025-05-16 14:52:00.559481+00 2025-05-16 14:52:00.55949+00 f t DESCUENTO 0.00 2 343 \N +13175 2025-05-16 14:52:00.560892+00 2025-05-16 14:52:00.560898+00 f t TOTAL 0.00 3 343 \N +13176 2025-05-16 14:52:00.561983+00 2025-05-16 14:52:00.561989+00 f t ADELANTO 0.00 4 343 \N +12609 2025-05-15 23:02:33.893874+00 2025-05-15 23:02:33.893887+00 f t SUBTOTAL 46000.00 1 322 \N +12610 2025-05-15 23:02:33.896518+00 2025-05-15 23:02:33.896532+00 f t DESCUENTO 0.00 2 322 \N +12611 2025-05-15 23:02:33.898827+00 2025-05-15 23:02:33.898838+00 f t TOTAL 46000.00 3 322 \N +12612 2025-05-15 23:02:33.901179+00 2025-05-15 23:02:33.901191+00 f t ADELANTO 11000.00 4 322 \N +12637 2025-05-15 23:50:56.193267+00 2025-05-15 23:50:56.193282+00 f t SUBTOTAL 38500.00 1 323 \N +12638 2025-05-15 23:50:56.196869+00 2025-05-15 23:50:56.196883+00 f t DESCUENTO 0.00 2 323 \N +12639 2025-05-15 23:50:56.203415+00 2025-05-15 23:50:56.203429+00 f t TOTAL 38500.00 3 323 \N +12640 2025-05-15 23:50:56.207172+00 2025-05-15 23:50:56.207185+00 f t ADELANTO 8500.00 4 323 \N +12917 2025-05-16 09:35:35.568247+00 2025-05-16 09:35:35.568257+00 f t SUBTOTAL 59500.00 1 330 \N +12681 2025-05-16 00:11:01.828521+00 2025-05-16 00:11:01.828534+00 f t SUBTOTAL 59500.00 1 324 \N +12682 2025-05-16 00:11:01.834159+00 2025-05-16 00:11:01.834176+00 f t DESCUENTO 0.00 2 324 \N +12683 2025-05-16 00:11:01.836899+00 2025-05-16 00:11:01.836911+00 f t TOTAL 59500.00 3 324 \N +12684 2025-05-16 00:11:01.839745+00 2025-05-16 00:11:01.839755+00 f t ADELANTO 15500.00 4 324 \N +12918 2025-05-16 09:35:35.570898+00 2025-05-16 09:35:35.57091+00 f t DESCUENTO 0.00 2 330 \N +12919 2025-05-16 09:35:35.572892+00 2025-05-16 09:35:35.572905+00 f t TOTAL 59500.00 3 330 \N +12920 2025-05-16 09:35:35.575022+00 2025-05-16 09:35:35.575033+00 f t ADELANTO 15500.00 4 330 \N +13293 2025-05-16 16:15:53.875064+00 2025-05-16 16:15:53.875078+00 f t SUBTOTAL 46000.00 1 345 \N +13294 2025-05-16 16:15:53.877016+00 2025-05-16 16:15:53.877026+00 f t DESCUENTO 0.00 2 345 \N +13295 2025-05-16 16:15:53.878476+00 2025-05-16 16:15:53.878485+00 f t TOTAL 46000.00 3 345 \N +13296 2025-05-16 16:15:53.879795+00 2025-05-16 16:15:53.879804+00 f t ADELANTO 9500.00 4 345 \N +12709 2025-05-16 00:31:31.090424+00 2025-05-16 00:31:31.090438+00 f t SUBTOTAL 46000.00 1 325 \N +12710 2025-05-16 00:31:31.092466+00 2025-05-16 00:31:31.092475+00 f t DESCUENTO 0.00 2 325 \N +12711 2025-05-16 00:31:31.094028+00 2025-05-16 00:31:31.094038+00 f t TOTAL 46000.00 3 325 \N +12712 2025-05-16 00:31:31.095601+00 2025-05-16 00:31:31.095607+00 f t ADELANTO 9500.00 4 325 \N +13313 2025-05-16 17:19:21.576226+00 2025-05-16 17:19:21.576239+00 f t SUBTOTAL 0.00 1 347 \N +13314 2025-05-16 17:19:21.579044+00 2025-05-16 17:19:21.579066+00 f t DESCUENTO 0.00 2 347 \N +13315 2025-05-16 17:19:21.581081+00 2025-05-16 17:19:21.581089+00 f t TOTAL 0.00 3 347 \N +13316 2025-05-16 17:19:21.582962+00 2025-05-16 17:19:21.582972+00 f t ADELANTO 0.00 4 347 \N +12937 2025-05-16 09:56:43.027348+00 2025-05-16 09:56:43.027384+00 f t SUBTOTAL 0.00 1 331 \N +12938 2025-05-16 09:56:43.029571+00 2025-05-16 09:56:43.029579+00 f t DESCUENTO 0.00 2 331 \N +12939 2025-05-16 09:56:43.030942+00 2025-05-16 09:56:43.03095+00 f t TOTAL 0.00 3 331 \N +12940 2025-05-16 09:56:43.032102+00 2025-05-16 09:56:43.032108+00 f t ADELANTO 0.00 4 331 \N +12953 2025-05-16 10:22:44.419889+00 2025-05-16 10:22:44.419898+00 f t SUBTOTAL 0.00 1 332 \N +12954 2025-05-16 10:22:44.422008+00 2025-05-16 10:22:44.422018+00 f t DESCUENTO 0.00 2 332 \N +12955 2025-05-16 10:22:44.423301+00 2025-05-16 10:22:44.423309+00 f t TOTAL 0.00 3 332 \N +12956 2025-05-16 10:22:44.42501+00 2025-05-16 10:22:44.425017+00 f t ADELANTO 0.00 4 332 \N +13021 2025-05-16 11:29:24.984832+00 2025-05-16 11:29:24.984846+00 f t SUBTOTAL 59500.00 1 333 \N +13022 2025-05-16 11:29:24.987202+00 2025-05-16 11:29:24.987211+00 f t DESCUENTO 0.00 2 333 \N +13023 2025-05-16 11:29:24.989027+00 2025-05-16 11:29:24.989036+00 f t TOTAL 59500.00 3 333 \N +13024 2025-05-16 11:29:24.990828+00 2025-05-16 11:29:24.990838+00 f t ADELANTO 15500.00 4 333 \N +13029 2025-05-16 11:46:15.607794+00 2025-05-16 11:46:15.607804+00 f t SUBTOTAL 0.00 1 334 \N +13030 2025-05-16 11:46:15.609512+00 2025-05-16 11:46:15.609523+00 f t DESCUENTO 0.00 2 334 \N +13031 2025-05-16 11:46:15.620631+00 2025-05-16 11:46:15.620648+00 f t TOTAL 0.00 3 334 \N +13032 2025-05-16 11:46:15.622636+00 2025-05-16 11:46:15.622646+00 f t ADELANTO 0.00 4 334 \N +13037 2025-05-16 12:53:14.780452+00 2025-05-16 12:53:14.780464+00 f t SUBTOTAL 0.00 1 335 \N +13038 2025-05-16 12:53:14.781973+00 2025-05-16 12:53:14.781981+00 f t DESCUENTO 0.00 2 335 \N +13039 2025-05-16 12:53:14.783342+00 2025-05-16 12:53:14.783348+00 f t TOTAL 0.00 3 335 \N +13040 2025-05-16 12:53:14.784596+00 2025-05-16 12:53:14.784601+00 f t ADELANTO 0.00 4 335 \N +32033 2025-05-26 16:46:06.301208+00 2025-05-26 16:46:06.301217+00 f t SUBTOTAL 70000.00 1 829 \N +32034 2025-05-26 16:46:06.303065+00 2025-05-26 16:46:06.303104+00 f t DESCUENTO 0.00 2 829 \N +14145 2025-05-17 02:45:19.430339+00 2025-05-17 02:45:19.430353+00 f t SUBTOTAL 0.00 1 372 \N +13077 2025-05-16 12:56:21.41153+00 2025-05-16 12:56:21.411543+00 f t SUBTOTAL 0.00 1 336 \N +13078 2025-05-16 12:56:21.413543+00 2025-05-16 12:56:21.413552+00 f t DESCUENTO 0.00 2 336 \N +13079 2025-05-16 12:56:21.414843+00 2025-05-16 12:56:21.414849+00 f t TOTAL 0.00 3 336 \N +13080 2025-05-16 12:56:21.415962+00 2025-05-16 12:56:21.415968+00 f t ADELANTO 0.00 4 336 \N +13105 2025-05-16 13:09:10.001737+00 2025-05-16 13:09:10.001751+00 f t SUBTOTAL 46000.00 1 337 \N +13106 2025-05-16 13:09:10.004416+00 2025-05-16 13:09:10.004429+00 f t DESCUENTO 0.00 2 337 \N +13107 2025-05-16 13:09:10.006534+00 2025-05-16 13:09:10.006545+00 f t TOTAL 46000.00 3 337 \N +13108 2025-05-16 13:09:10.008697+00 2025-05-16 13:09:10.008709+00 f t ADELANTO 11000.00 4 337 \N +13457 2025-05-16 17:49:56.557128+00 2025-05-16 17:49:56.557142+00 f t SUBTOTAL 0.00 1 351 \N +13458 2025-05-16 17:49:56.560309+00 2025-05-16 17:49:56.56032+00 f t DESCUENTO 0.00 2 351 \N +13459 2025-05-16 17:49:56.567235+00 2025-05-16 17:49:56.567249+00 f t TOTAL 0.00 3 351 \N +13460 2025-05-16 17:49:56.570023+00 2025-05-16 17:49:56.570038+00 f t ADELANTO 0.00 4 351 \N +13133 2025-05-16 13:11:59.180617+00 2025-05-16 13:11:59.180627+00 f t SUBTOTAL 46000.00 1 338 \N +13134 2025-05-16 13:11:59.182399+00 2025-05-16 13:11:59.182406+00 f t DESCUENTO 0.00 2 338 \N +13135 2025-05-16 13:11:59.183844+00 2025-05-16 13:11:59.18385+00 f t TOTAL 46000.00 3 338 \N +13136 2025-05-16 13:11:59.185496+00 2025-05-16 13:11:59.185504+00 f t ADELANTO 11000.00 4 338 \N +13149 2025-05-16 14:04:21.042846+00 2025-05-16 14:04:21.042858+00 f t SUBTOTAL 0.00 1 340 \N +13150 2025-05-16 14:04:21.044863+00 2025-05-16 14:04:21.044873+00 f t DESCUENTO 0.00 2 340 \N +13151 2025-05-16 14:04:21.046372+00 2025-05-16 14:04:21.046381+00 f t TOTAL 0.00 3 340 \N +13152 2025-05-16 14:04:21.047689+00 2025-05-16 14:04:21.047695+00 f t ADELANTO 0.00 4 340 \N +13165 2025-05-16 14:43:43.35302+00 2025-05-16 14:43:43.35303+00 f t SUBTOTAL 0.00 1 342 \N +13166 2025-05-16 14:43:43.354394+00 2025-05-16 14:43:43.354401+00 f t DESCUENTO 0.00 2 342 \N +13167 2025-05-16 14:43:43.355503+00 2025-05-16 14:43:43.355509+00 f t TOTAL 0.00 3 342 \N +13168 2025-05-16 14:43:43.356525+00 2025-05-16 14:43:43.35653+00 f t ADELANTO 0.00 4 342 \N +13493 2025-05-16 18:00:27.637041+00 2025-05-16 18:00:27.637053+00 f t SUBTOTAL 57000.00 1 352 \N +13494 2025-05-16 18:00:27.639647+00 2025-05-16 18:00:27.639662+00 f t DESCUENTO 0.00 2 352 \N +13495 2025-05-16 18:00:27.642807+00 2025-05-16 18:00:27.64282+00 f t TOTAL 57000.00 3 352 \N +13496 2025-05-16 18:00:27.647468+00 2025-05-16 18:00:27.647483+00 f t ADELANTO 12000.00 4 352 \N +13853 2025-05-16 21:13:11.06754+00 2025-05-16 21:13:11.067553+00 f t SUBTOTAL 59500.00 1 360 \N +13854 2025-05-16 21:13:11.069892+00 2025-05-16 21:13:11.0699+00 f t DESCUENTO 0.00 2 360 \N +13855 2025-05-16 21:13:11.071642+00 2025-05-16 21:13:11.07165+00 f t TOTAL 59500.00 3 360 \N +13856 2025-05-16 21:13:11.073285+00 2025-05-16 21:13:11.073295+00 f t ADELANTO 15500.00 4 360 \N +13501 2025-05-16 18:08:40.330022+00 2025-05-16 18:08:40.330036+00 f t SUBTOTAL 0.00 1 353 \N +13502 2025-05-16 18:08:40.332198+00 2025-05-16 18:08:40.332209+00 f t DESCUENTO 0.00 2 353 \N +13229 2025-05-16 15:45:34.915085+00 2025-05-16 15:45:34.915098+00 f t SUBTOTAL 0.00 1 344 \N +13230 2025-05-16 15:45:34.918127+00 2025-05-16 15:45:34.918139+00 f t DESCUENTO 0.00 2 344 \N +13231 2025-05-16 15:45:34.920284+00 2025-05-16 15:45:34.920296+00 f t TOTAL 0.00 3 344 \N +13232 2025-05-16 15:45:34.923617+00 2025-05-16 15:45:34.923628+00 f t ADELANTO 0.00 4 344 \N +13503 2025-05-16 18:08:40.334327+00 2025-05-16 18:08:40.334338+00 f t TOTAL 0.00 3 353 \N +13504 2025-05-16 18:08:40.336144+00 2025-05-16 18:08:40.336154+00 f t ADELANTO 0.00 4 353 \N +13877 2025-05-16 21:45:50.429019+00 2025-05-16 21:45:50.429029+00 f t SUBTOTAL 0.00 1 362 \N +13878 2025-05-16 21:45:50.431602+00 2025-05-16 21:45:50.431643+00 f t DESCUENTO 0.00 2 362 \N +13879 2025-05-16 21:45:50.433359+00 2025-05-16 21:45:50.433368+00 f t TOTAL 0.00 3 362 \N +13880 2025-05-16 21:45:50.435013+00 2025-05-16 21:45:50.435023+00 f t ADELANTO 0.00 4 362 \N +13517 2025-05-16 18:16:18.254262+00 2025-05-16 18:16:18.254276+00 f t SUBTOTAL 0.00 1 354 \N +13518 2025-05-16 18:16:18.256459+00 2025-05-16 18:16:18.256469+00 f t DESCUENTO 0.00 2 354 \N +13269 2025-05-16 16:15:23.684381+00 2025-05-16 16:15:23.684394+00 f t SUBTOTAL 0.00 1 346 \N +13270 2025-05-16 16:15:23.686617+00 2025-05-16 16:15:23.686627+00 f t DESCUENTO 0.00 2 346 \N +13271 2025-05-16 16:15:23.688535+00 2025-05-16 16:15:23.688543+00 f t TOTAL 0.00 3 346 \N +13272 2025-05-16 16:15:23.6902+00 2025-05-16 16:15:23.69021+00 f t ADELANTO 0.00 4 346 \N +13519 2025-05-16 18:16:18.257948+00 2025-05-16 18:16:18.257958+00 f t TOTAL 0.00 3 354 \N +13520 2025-05-16 18:16:18.259161+00 2025-05-16 18:16:18.259167+00 f t ADELANTO 0.00 4 354 \N +13893 2025-05-16 23:47:46.379841+00 2025-05-16 23:47:46.379854+00 f t SUBTOTAL 0.00 1 364 \N +13894 2025-05-16 23:47:46.381773+00 2025-05-16 23:47:46.381784+00 f t DESCUENTO 0.00 2 364 \N +13895 2025-05-16 23:47:46.383718+00 2025-05-16 23:47:46.383729+00 f t TOTAL 0.00 3 364 \N +13896 2025-05-16 23:47:46.38545+00 2025-05-16 23:47:46.385458+00 f t ADELANTO 0.00 4 364 \N +13549 2025-05-16 18:49:19.938767+00 2025-05-16 18:49:19.938779+00 f t SUBTOTAL 46000.00 1 355 \N +13550 2025-05-16 18:49:19.941147+00 2025-05-16 18:49:19.94116+00 f t DESCUENTO 0.00 2 355 \N +13551 2025-05-16 18:49:19.9435+00 2025-05-16 18:49:19.943512+00 f t TOTAL 46000.00 3 355 \N +13552 2025-05-16 18:49:19.948011+00 2025-05-16 18:49:19.94802+00 f t ADELANTO 11000.00 4 355 \N +13557 2025-05-16 19:50:09.608599+00 2025-05-16 19:50:09.608614+00 f t SUBTOTAL 0.00 1 356 \N +13558 2025-05-16 19:50:09.612749+00 2025-05-16 19:50:09.612765+00 f t DESCUENTO 0.00 2 356 \N +13559 2025-05-16 19:50:09.615832+00 2025-05-16 19:50:09.615844+00 f t TOTAL 0.00 3 356 \N +13560 2025-05-16 19:50:09.618263+00 2025-05-16 19:50:09.618275+00 f t ADELANTO 0.00 4 356 \N +13365 2025-05-16 17:22:39.870248+00 2025-05-16 17:22:39.870261+00 f t SUBTOTAL 46000.00 1 348 \N +13366 2025-05-16 17:22:39.872629+00 2025-05-16 17:22:39.872642+00 f t DESCUENTO 0.00 2 348 \N +13367 2025-05-16 17:22:39.874468+00 2025-05-16 17:22:39.874478+00 f t TOTAL 46000.00 3 348 \N +13368 2025-05-16 17:22:39.876273+00 2025-05-16 17:22:39.876282+00 f t ADELANTO 9500.00 4 348 \N +13605 2025-05-16 20:26:04.435575+00 2025-05-16 20:26:04.435588+00 f t SUBTOTAL 0.00 1 358 \N +13606 2025-05-16 20:26:04.443172+00 2025-05-16 20:26:04.443187+00 f t DESCUENTO 0.00 2 358 \N +13607 2025-05-16 20:26:04.447912+00 2025-05-16 20:26:04.447924+00 f t TOTAL 0.00 3 358 \N +13608 2025-05-16 20:26:04.451411+00 2025-05-16 20:26:04.451423+00 f t ADELANTO 0.00 4 358 \N +13393 2025-05-16 17:35:03.322165+00 2025-05-16 17:35:03.322178+00 f t SUBTOTAL 85000.00 1 349 \N +13394 2025-05-16 17:35:03.324849+00 2025-05-16 17:35:03.32486+00 f t DESCUENTO 0.00 2 349 \N +13395 2025-05-16 17:35:03.327641+00 2025-05-16 17:35:03.327653+00 f t TOTAL 85000.00 3 349 \N +13396 2025-05-16 17:35:03.330043+00 2025-05-16 17:35:03.330056+00 f t ADELANTO 50000.00 4 349 \N +13421 2025-05-16 17:46:29.795647+00 2025-05-16 17:46:29.79566+00 f t SUBTOTAL 46000.00 1 350 \N +13422 2025-05-16 17:46:29.798737+00 2025-05-16 17:46:29.798748+00 f t DESCUENTO 0.00 2 350 \N +13423 2025-05-16 17:46:29.801005+00 2025-05-16 17:46:29.801015+00 f t TOTAL 46000.00 3 350 \N +13424 2025-05-16 17:46:29.803394+00 2025-05-16 17:46:29.803405+00 f t ADELANTO 9500.00 4 350 \N +14146 2025-05-17 02:45:19.432253+00 2025-05-17 02:45:19.432264+00 f t DESCUENTO 0.00 2 372 \N +14147 2025-05-17 02:45:19.434012+00 2025-05-17 02:45:19.43402+00 f t TOTAL 0.00 3 372 \N +14148 2025-05-17 02:45:19.435551+00 2025-05-17 02:45:19.43556+00 f t ADELANTO 0.00 4 372 \N +18645 2025-05-19 16:18:49.306184+00 2025-05-19 16:18:49.306196+00 f t SUBTOTAL 46000.00 1 479 \N +18646 2025-05-19 16:18:49.308336+00 2025-05-19 16:18:49.308344+00 f t DESCUENTO 0.00 2 479 \N +18647 2025-05-19 16:18:49.309893+00 2025-05-19 16:18:49.309901+00 f t TOTAL 46000.00 3 479 \N +18648 2025-05-19 16:18:49.311201+00 2025-05-19 16:18:49.311217+00 f t ADELANTO 9500.00 4 479 \N +14873 2025-05-17 15:48:31.369195+00 2025-05-17 15:48:31.369205+00 f t SUBTOTAL 59500.00 1 386 \N +14874 2025-05-17 15:48:31.371417+00 2025-05-17 15:48:31.371431+00 f t DESCUENTO 0.00 2 386 \N +14875 2025-05-17 15:48:31.373465+00 2025-05-17 15:48:31.373474+00 f t TOTAL 59500.00 3 386 \N +14876 2025-05-17 15:48:31.375401+00 2025-05-17 15:48:31.375409+00 f t ADELANTO 15500.00 4 386 \N +14217 2025-05-17 02:47:38.269219+00 2025-05-17 02:47:38.269233+00 f t SUBTOTAL 38500.00 1 371 \N +14218 2025-05-17 02:47:38.272003+00 2025-05-17 02:47:38.272016+00 f t DESCUENTO 0.00 2 371 \N +14219 2025-05-17 02:47:38.27427+00 2025-05-17 02:47:38.274298+00 f t TOTAL 38500.00 3 371 \N +14220 2025-05-17 02:47:38.276054+00 2025-05-17 02:47:38.276063+00 f t ADELANTO 8500.00 4 371 \N +13861 2025-05-16 21:41:50.561694+00 2025-05-16 21:41:50.561704+00 f t SUBTOTAL 0.00 1 361 \N +13862 2025-05-16 21:41:50.563334+00 2025-05-16 21:41:50.563342+00 f t DESCUENTO 0.00 2 361 \N +13863 2025-05-16 21:41:50.56485+00 2025-05-16 21:41:50.564858+00 f t TOTAL 0.00 3 361 \N +13864 2025-05-16 21:41:50.566009+00 2025-05-16 21:41:50.566016+00 f t ADELANTO 0.00 4 361 \N +13749 2025-05-16 20:28:36.352308+00 2025-05-16 20:28:36.35232+00 f t SUBTOTAL 0.00 1 359 \N +13750 2025-05-16 20:28:36.354289+00 2025-05-16 20:28:36.354298+00 f t DESCUENTO 0.00 2 359 \N +13751 2025-05-16 20:28:36.355906+00 2025-05-16 20:28:36.355916+00 f t TOTAL 0.00 3 359 \N +13752 2025-05-16 20:28:36.35762+00 2025-05-16 20:28:36.357628+00 f t ADELANTO 0.00 4 359 \N +13885 2025-05-16 21:50:39.089041+00 2025-05-16 21:50:39.089051+00 f t SUBTOTAL 0.00 1 363 \N +13886 2025-05-16 21:50:39.091247+00 2025-05-16 21:50:39.09126+00 f t DESCUENTO 0.00 2 363 \N +13887 2025-05-16 21:50:39.093847+00 2025-05-16 21:50:39.09386+00 f t TOTAL 0.00 3 363 \N +13761 2025-05-16 20:29:24.020875+00 2025-05-16 20:29:24.020888+00 f t SUBTOTAL 201000.00 1 357 \N +13762 2025-05-16 20:29:24.023463+00 2025-05-16 20:29:24.023473+00 f t DESCUENTO 0.00 2 357 \N +13763 2025-05-16 20:29:24.025863+00 2025-05-16 20:29:24.025876+00 f t TOTAL 201000.00 3 357 \N +13764 2025-05-16 20:29:24.027741+00 2025-05-16 20:29:24.027752+00 f t ADELANTO 54000.00 4 357 \N +13888 2025-05-16 21:50:39.096196+00 2025-05-16 21:50:39.096206+00 f t ADELANTO 0.00 4 363 \N +13901 2025-05-16 23:48:42.984652+00 2025-05-16 23:48:42.984666+00 f t SUBTOTAL 0.00 1 365 \N +13902 2025-05-16 23:48:42.986509+00 2025-05-16 23:48:42.986521+00 f t DESCUENTO 0.00 2 365 \N +13903 2025-05-16 23:48:42.988301+00 2025-05-16 23:48:42.988312+00 f t TOTAL 0.00 3 365 \N +13904 2025-05-16 23:48:42.989789+00 2025-05-16 23:48:42.989799+00 f t ADELANTO 0.00 4 365 \N +13909 2025-05-17 00:42:44.149726+00 2025-05-17 00:42:44.149736+00 f t SUBTOTAL 0.00 1 366 \N +13910 2025-05-17 00:42:44.151773+00 2025-05-17 00:42:44.151781+00 f t DESCUENTO 0.00 2 366 \N +13911 2025-05-17 00:42:44.15351+00 2025-05-17 00:42:44.153523+00 f t TOTAL 0.00 3 366 \N +13912 2025-05-17 00:42:44.155119+00 2025-05-17 00:42:44.155127+00 f t ADELANTO 0.00 4 366 \N +14953 2025-05-17 16:04:51.037661+00 2025-05-17 16:04:51.037673+00 f t SUBTOTAL 46000.00 1 388 \N +14954 2025-05-17 16:04:51.039847+00 2025-05-17 16:04:51.039859+00 f t DESCUENTO 0.00 2 388 \N +14955 2025-05-17 16:04:51.04144+00 2025-05-17 16:04:51.041447+00 f t TOTAL 46000.00 3 388 \N +14956 2025-05-17 16:04:51.043049+00 2025-05-17 16:04:51.043065+00 f t ADELANTO 9500.00 4 388 \N +13937 2025-05-17 00:44:18.908183+00 2025-05-17 00:44:18.908192+00 f t SUBTOTAL 59500.00 1 367 \N +13938 2025-05-17 00:44:18.909752+00 2025-05-17 00:44:18.909758+00 f t DESCUENTO 0.00 2 367 \N +13939 2025-05-17 00:44:18.91097+00 2025-05-17 00:44:18.910977+00 f t TOTAL 59500.00 3 367 \N +13940 2025-05-17 00:44:18.91218+00 2025-05-17 00:44:18.912186+00 f t ADELANTO 15500.00 4 367 \N +15013 2025-05-17 18:04:58.225002+00 2025-05-17 18:04:58.225014+00 f t SUBTOTAL 0.00 1 391 \N +15014 2025-05-17 18:04:58.227626+00 2025-05-17 18:04:58.227636+00 f t DESCUENTO 0.00 2 391 \N +15015 2025-05-17 18:04:58.234473+00 2025-05-17 18:04:58.234488+00 f t TOTAL 0.00 3 391 \N +15016 2025-05-17 18:04:58.238511+00 2025-05-17 18:04:58.238521+00 f t ADELANTO 0.00 4 391 \N +15029 2025-05-17 19:25:34.647282+00 2025-05-17 19:25:34.647293+00 f t SUBTOTAL 0.00 1 393 \N +15030 2025-05-17 19:25:34.649606+00 2025-05-17 19:25:34.649617+00 f t DESCUENTO 0.00 2 393 \N +15031 2025-05-17 19:25:34.651521+00 2025-05-17 19:25:34.651532+00 f t TOTAL 0.00 3 393 \N +15032 2025-05-17 19:25:34.653108+00 2025-05-17 19:25:34.653116+00 f t ADELANTO 0.00 4 393 \N +13969 2025-05-17 02:01:06.634314+00 2025-05-17 02:01:06.634322+00 f t SUBTOTAL 46000.00 1 368 \N +13970 2025-05-17 02:01:06.635883+00 2025-05-17 02:01:06.63589+00 f t DESCUENTO 0.00 2 368 \N +13971 2025-05-17 02:01:06.637094+00 2025-05-17 02:01:06.637101+00 f t TOTAL 46000.00 3 368 \N +13972 2025-05-17 02:01:06.638271+00 2025-05-17 02:01:06.638278+00 f t ADELANTO 9500.00 4 368 \N +13977 2025-05-17 02:03:37.672999+00 2025-05-17 02:03:37.673012+00 f t SUBTOTAL 0.00 1 369 \N +13978 2025-05-17 02:03:37.674911+00 2025-05-17 02:03:37.67492+00 f t DESCUENTO 0.00 2 369 \N +13979 2025-05-17 02:03:37.676571+00 2025-05-17 02:03:37.676582+00 f t TOTAL 0.00 3 369 \N +13980 2025-05-17 02:03:37.678266+00 2025-05-17 02:03:37.678276+00 f t ADELANTO 0.00 4 369 \N +14457 2025-05-17 10:59:47.720154+00 2025-05-17 10:59:47.720167+00 f t SUBTOTAL 85000.00 1 376 \N +14458 2025-05-17 10:59:47.72247+00 2025-05-17 10:59:47.722483+00 f t DESCUENTO 0.00 2 376 \N +14459 2025-05-17 10:59:47.724514+00 2025-05-17 10:59:47.724525+00 f t TOTAL 85000.00 3 376 \N +14460 2025-05-17 10:59:47.726434+00 2025-05-17 10:59:47.726447+00 f t ADELANTO 50000.00 4 376 \N +15129 2025-05-17 19:37:14.669396+00 2025-05-17 19:37:14.669408+00 f t SUBTOTAL 57000.00 1 394 \N +15130 2025-05-17 19:37:14.671896+00 2025-05-17 19:37:14.671905+00 f t DESCUENTO 0.00 2 394 \N +15131 2025-05-17 19:37:14.67389+00 2025-05-17 19:37:14.673899+00 f t TOTAL 57000.00 3 394 \N +15132 2025-05-17 19:37:14.675775+00 2025-05-17 19:37:14.67579+00 f t ADELANTO 12000.00 4 394 \N +14761 2025-05-17 13:55:42.303821+00 2025-05-17 13:55:42.303829+00 f t SUBTOTAL 46000.00 1 383 \N +14762 2025-05-17 13:55:42.305977+00 2025-05-17 13:55:42.305984+00 f t DESCUENTO 0.00 2 383 \N +14763 2025-05-17 13:55:42.307424+00 2025-05-17 13:55:42.307431+00 f t TOTAL 46000.00 3 383 \N +14764 2025-05-17 13:55:42.308737+00 2025-05-17 13:55:42.308744+00 f t ADELANTO 9500.00 4 383 \N +15145 2025-05-17 19:53:06.961514+00 2025-05-17 19:53:06.961528+00 f t SUBTOTAL 0.00 1 396 \N +15146 2025-05-17 19:53:06.963117+00 2025-05-17 19:53:06.963125+00 f t DESCUENTO 0.00 2 396 \N +15147 2025-05-17 19:53:06.964771+00 2025-05-17 19:53:06.964779+00 f t TOTAL 0.00 3 396 \N +14081 2025-05-17 02:17:09.432082+00 2025-05-17 02:17:09.432097+00 f t SUBTOTAL 38500.00 1 370 \N +14082 2025-05-17 02:17:09.434374+00 2025-05-17 02:17:09.434389+00 f t DESCUENTO 0.00 2 370 \N +14083 2025-05-17 02:17:09.435952+00 2025-05-17 02:17:09.435961+00 f t TOTAL 38500.00 3 370 \N +14084 2025-05-17 02:17:09.437534+00 2025-05-17 02:17:09.437542+00 f t ADELANTO 8500.00 4 370 \N +16453 2025-05-18 05:35:13.831621+00 2025-05-18 05:35:13.831631+00 f t SUBTOTAL 59500.00 1 424 \N +16454 2025-05-18 05:35:13.834111+00 2025-05-18 05:35:13.834123+00 f t DESCUENTO 0.00 2 424 \N +14541 2025-05-17 11:59:04.776674+00 2025-05-17 11:59:04.776687+00 f t SUBTOTAL 0.00 1 379 \N +14542 2025-05-17 11:59:04.779703+00 2025-05-17 11:59:04.779716+00 f t DESCUENTO 0.00 2 379 \N +14543 2025-05-17 11:59:04.781991+00 2025-05-17 11:59:04.782003+00 f t TOTAL 0.00 3 379 \N +14544 2025-05-17 11:59:04.784341+00 2025-05-17 11:59:04.784353+00 f t ADELANTO 0.00 4 379 \N +14225 2025-05-17 03:43:01.191073+00 2025-05-17 03:43:01.191085+00 f t SUBTOTAL 0.00 1 373 \N +14226 2025-05-17 03:43:01.192995+00 2025-05-17 03:43:01.193007+00 f t DESCUENTO 0.00 2 373 \N +14227 2025-05-17 03:43:01.195098+00 2025-05-17 03:43:01.195108+00 f t TOTAL 0.00 3 373 \N +14228 2025-05-17 03:43:01.196965+00 2025-05-17 03:43:01.196974+00 f t ADELANTO 0.00 4 373 \N +14921 2025-05-17 15:57:04.549657+00 2025-05-17 15:57:04.549665+00 f t SUBTOTAL 46000.00 1 387 \N +14922 2025-05-17 15:57:04.55187+00 2025-05-17 15:57:04.551879+00 f t DESCUENTO 0.00 2 387 \N +14923 2025-05-17 15:57:04.553667+00 2025-05-17 15:57:04.553676+00 f t TOTAL 46000.00 3 387 \N +14924 2025-05-17 15:57:04.555481+00 2025-05-17 15:57:04.555492+00 f t ADELANTO 9500.00 4 387 \N +14593 2025-05-17 12:01:21.980698+00 2025-05-17 12:01:21.98071+00 f t SUBTOTAL 128000.00 1 380 \N +14594 2025-05-17 12:01:21.98298+00 2025-05-17 12:01:21.982992+00 f t DESCUENTO 0.00 2 380 \N +14595 2025-05-17 12:01:21.984957+00 2025-05-17 12:01:21.984966+00 f t TOTAL 128000.00 3 380 \N +14596 2025-05-17 12:01:21.986502+00 2025-05-17 12:01:21.986509+00 f t ADELANTO 74000.00 4 380 \N +14961 2025-05-17 16:11:07.639642+00 2025-05-17 16:11:07.639655+00 f t SUBTOTAL 0.00 1 389 \N +14962 2025-05-17 16:11:07.642038+00 2025-05-17 16:11:07.642061+00 f t DESCUENTO 0.00 2 389 \N +14963 2025-05-17 16:11:07.644506+00 2025-05-17 16:11:07.64452+00 f t TOTAL 0.00 3 389 \N +14964 2025-05-17 16:11:07.646918+00 2025-05-17 16:11:07.64693+00 f t ADELANTO 0.00 4 389 \N +15381 2025-05-17 23:32:17.381172+00 2025-05-17 23:32:17.381185+00 f t SUBTOTAL 119000.00 1 402 \N +15382 2025-05-17 23:32:17.383525+00 2025-05-17 23:32:17.383535+00 f t DESCUENTO 0.00 2 402 \N +15383 2025-05-17 23:32:17.385181+00 2025-05-17 23:32:17.385188+00 f t TOTAL 119000.00 3 402 \N +15384 2025-05-17 23:32:17.38683+00 2025-05-17 23:32:17.386838+00 f t ADELANTO 31000.00 4 402 \N +14669 2025-05-17 13:37:31.535222+00 2025-05-17 13:37:31.535231+00 f t SUBTOTAL 46000.00 1 381 \N +14670 2025-05-17 13:37:31.537117+00 2025-05-17 13:37:31.537126+00 f t DESCUENTO 0.00 2 381 \N +14671 2025-05-17 13:37:31.538522+00 2025-05-17 13:37:31.538528+00 f t TOTAL 46000.00 3 381 \N +14672 2025-05-17 13:37:31.539815+00 2025-05-17 13:37:31.53982+00 f t ADELANTO 9500.00 4 381 \N +14357 2025-05-17 03:56:14.879829+00 2025-05-17 03:56:14.879842+00 f t SUBTOTAL 38500.00 1 374 \N +14358 2025-05-17 03:56:14.882696+00 2025-05-17 03:56:14.882708+00 f t DESCUENTO 0.00 2 374 \N +14359 2025-05-17 03:56:14.885023+00 2025-05-17 03:56:14.885036+00 f t TOTAL 38500.00 3 374 \N +14360 2025-05-17 03:56:14.887552+00 2025-05-17 03:56:14.887565+00 f t ADELANTO 8500.00 4 374 \N +15005 2025-05-17 17:20:49.159105+00 2025-05-17 17:20:49.159117+00 f t SUBTOTAL 107250.00 1 390 \N +15006 2025-05-17 17:20:49.164195+00 2025-05-17 17:20:49.164208+00 f t DESCUENTO 0.00 2 390 \N +15007 2025-05-17 17:20:49.166301+00 2025-05-17 17:20:49.166311+00 f t TOTAL 107250.00 3 390 \N +15008 2025-05-17 17:20:49.168442+00 2025-05-17 17:20:49.16845+00 f t ADELANTO 22250.00 4 390 \N +14697 2025-05-17 13:48:00.606084+00 2025-05-17 13:48:00.606095+00 f t SUBTOTAL 46000.00 1 382 \N +14698 2025-05-17 13:48:00.607989+00 2025-05-17 13:48:00.608002+00 f t DESCUENTO 0.00 2 382 \N +14699 2025-05-17 13:48:00.609583+00 2025-05-17 13:48:00.609591+00 f t TOTAL 46000.00 3 382 \N +14700 2025-05-17 13:48:00.610895+00 2025-05-17 13:48:00.610903+00 f t ADELANTO 9500.00 4 382 \N +15021 2025-05-17 19:24:29.03992+00 2025-05-17 19:24:29.03993+00 f t SUBTOTAL 0.00 1 392 \N +15022 2025-05-17 19:24:29.04144+00 2025-05-17 19:24:29.04145+00 f t DESCUENTO 0.00 2 392 \N +15023 2025-05-17 19:24:29.042761+00 2025-05-17 19:24:29.042768+00 f t TOTAL 0.00 3 392 \N +15024 2025-05-17 19:24:29.044241+00 2025-05-17 19:24:29.044248+00 f t ADELANTO 0.00 4 392 \N +14417 2025-05-17 08:38:59.002691+00 2025-05-17 08:38:59.0027+00 f t SUBTOTAL 107250.00 1 375 \N +14418 2025-05-17 08:38:59.005716+00 2025-05-17 08:38:59.005729+00 f t DESCUENTO 0.00 2 375 \N +14419 2025-05-17 08:38:59.007924+00 2025-05-17 08:38:59.007935+00 f t TOTAL 107250.00 3 375 \N +14420 2025-05-17 08:38:59.00993+00 2025-05-17 08:38:59.00994+00 f t ADELANTO 22250.00 4 375 \N +14465 2025-05-17 11:06:16.320191+00 2025-05-17 11:06:16.320204+00 f t SUBTOTAL 0.00 1 377 \N +14466 2025-05-17 11:06:16.322536+00 2025-05-17 11:06:16.322546+00 f t DESCUENTO 0.00 2 377 \N +14467 2025-05-17 11:06:16.324597+00 2025-05-17 11:06:16.324606+00 f t TOTAL 0.00 3 377 \N +14468 2025-05-17 11:06:16.326464+00 2025-05-17 11:06:16.326472+00 f t ADELANTO 0.00 4 377 \N +14801 2025-05-17 14:33:05.539876+00 2025-05-17 14:33:05.53989+00 f t SUBTOTAL 59500.00 1 384 \N +14802 2025-05-17 14:33:05.542099+00 2025-05-17 14:33:05.542108+00 f t DESCUENTO 0.00 2 384 \N +14803 2025-05-17 14:33:05.543968+00 2025-05-17 14:33:05.543975+00 f t TOTAL 59500.00 3 384 \N +14804 2025-05-17 14:33:05.545461+00 2025-05-17 14:33:05.545467+00 f t ADELANTO 15500.00 4 384 \N +14829 2025-05-17 14:54:18.73545+00 2025-05-17 14:54:18.735462+00 f t SUBTOTAL 46000.00 1 385 \N +14830 2025-05-17 14:54:18.737519+00 2025-05-17 14:54:18.73753+00 f t DESCUENTO 0.00 2 385 \N +14831 2025-05-17 14:54:18.739433+00 2025-05-17 14:54:18.739443+00 f t TOTAL 46000.00 3 385 \N +14832 2025-05-17 14:54:18.741122+00 2025-05-17 14:54:18.741131+00 f t ADELANTO 11000.00 4 385 \N +15137 2025-05-17 19:40:48.506194+00 2025-05-17 19:40:48.506204+00 f t SUBTOTAL 0.00 1 395 \N +15138 2025-05-17 19:40:48.508223+00 2025-05-17 19:40:48.508234+00 f t DESCUENTO 0.00 2 395 \N +15139 2025-05-17 19:40:48.51034+00 2025-05-17 19:40:48.51035+00 f t TOTAL 0.00 3 395 \N +15140 2025-05-17 19:40:48.512318+00 2025-05-17 19:40:48.512328+00 f t ADELANTO 0.00 4 395 \N +15148 2025-05-17 19:53:06.966165+00 2025-05-17 19:53:06.966178+00 f t ADELANTO 0.00 4 396 \N +15153 2025-05-17 19:55:05.908033+00 2025-05-17 19:55:05.908044+00 f t SUBTOTAL 0.00 1 397 \N +15154 2025-05-17 19:55:05.914485+00 2025-05-17 19:55:05.9145+00 f t DESCUENTO 0.00 2 397 \N +15155 2025-05-17 19:55:05.917374+00 2025-05-17 19:55:05.917387+00 f t TOTAL 0.00 3 397 \N +15156 2025-05-17 19:55:05.922696+00 2025-05-17 19:55:05.92271+00 f t ADELANTO 0.00 4 397 \N +15161 2025-05-17 20:29:49.477572+00 2025-05-17 20:29:49.477586+00 f t SUBTOTAL 0.00 1 398 \N +15162 2025-05-17 20:29:49.479499+00 2025-05-17 20:29:49.479511+00 f t DESCUENTO 0.00 2 398 \N +15163 2025-05-17 20:29:49.481053+00 2025-05-17 20:29:49.481062+00 f t TOTAL 0.00 3 398 \N +15164 2025-05-17 20:29:49.482386+00 2025-05-17 20:29:49.482393+00 f t ADELANTO 0.00 4 398 \N +15169 2025-05-17 21:07:35.586363+00 2025-05-17 21:07:35.586375+00 f t SUBTOTAL 0.00 1 399 \N +15170 2025-05-17 21:07:35.588088+00 2025-05-17 21:07:35.588097+00 f t DESCUENTO 0.00 2 399 \N +15171 2025-05-17 21:07:35.58972+00 2025-05-17 21:07:35.589728+00 f t TOTAL 0.00 3 399 \N +15172 2025-05-17 21:07:35.590993+00 2025-05-17 21:07:35.590999+00 f t ADELANTO 0.00 4 399 \N +15177 2025-05-17 21:33:46.42223+00 2025-05-17 21:33:46.42224+00 f t SUBTOTAL 0.00 1 400 \N +15178 2025-05-17 21:33:46.423784+00 2025-05-17 21:33:46.423796+00 f t DESCUENTO 0.00 2 400 \N +15179 2025-05-17 21:33:46.425651+00 2025-05-17 21:33:46.425661+00 f t TOTAL 0.00 3 400 \N +15180 2025-05-17 21:33:46.427163+00 2025-05-17 21:33:46.427171+00 f t ADELANTO 0.00 4 400 \N +16455 2025-05-18 05:35:13.836107+00 2025-05-18 05:35:13.836117+00 f t TOTAL 59500.00 3 424 \N +16456 2025-05-18 05:35:13.838289+00 2025-05-18 05:35:13.8383+00 f t ADELANTO 15500.00 4 424 \N +32035 2025-05-26 16:46:06.304557+00 2025-05-26 16:46:06.304564+00 f t TOTAL 70000.00 3 829 \N +16861 2025-05-18 14:20:50.791982+00 2025-05-18 14:20:50.791995+00 f t SUBTOTAL 0.00 1 436 \N +16862 2025-05-18 14:20:50.7951+00 2025-05-18 14:20:50.795111+00 f t DESCUENTO 0.00 2 436 \N +16863 2025-05-18 14:20:50.796988+00 2025-05-18 14:20:50.796999+00 f t TOTAL 0.00 3 436 \N +15649 2025-05-18 00:30:30.081324+00 2025-05-18 00:30:30.081336+00 f t SUBTOTAL 67000.00 1 407 \N +15650 2025-05-18 00:30:30.084335+00 2025-05-18 00:30:30.084346+00 f t DESCUENTO 0.00 2 407 \N +15651 2025-05-18 00:30:30.090386+00 2025-05-18 00:30:30.090398+00 f t TOTAL 67000.00 3 407 \N +15652 2025-05-18 00:30:30.092821+00 2025-05-18 00:30:30.092829+00 f t ADELANTO 18000.00 4 407 \N +16864 2025-05-18 14:20:50.799242+00 2025-05-18 14:20:50.799252+00 f t ADELANTO 0.00 4 436 \N +20113 2025-05-20 15:51:08.593564+00 2025-05-20 15:51:08.593573+00 f t SUBTOTAL 0.00 1 528 \N +15689 2025-05-18 00:33:46.014443+00 2025-05-18 00:33:46.014457+00 f t SUBTOTAL 38500.00 1 408 \N +15690 2025-05-18 00:33:46.01687+00 2025-05-18 00:33:46.016881+00 f t DESCUENTO 0.00 2 408 \N +15691 2025-05-18 00:33:46.019145+00 2025-05-18 00:33:46.019159+00 f t TOTAL 38500.00 3 408 \N +15692 2025-05-18 00:33:46.021254+00 2025-05-18 00:33:46.021265+00 f t ADELANTO 8500.00 4 408 \N +15717 2025-05-18 00:35:16.358588+00 2025-05-18 00:35:16.358597+00 f t SUBTOTAL 88500.00 1 409 \N +15718 2025-05-18 00:35:16.360685+00 2025-05-18 00:35:16.360693+00 f t DESCUENTO 0.00 2 409 \N +15719 2025-05-18 00:35:16.362112+00 2025-05-18 00:35:16.36212+00 f t TOTAL 88500.00 3 409 \N +15720 2025-05-18 00:35:16.363565+00 2025-05-18 00:35:16.363573+00 f t ADELANTO 53500.00 4 409 \N +16073 2025-05-18 03:19:35.019539+00 2025-05-18 03:19:35.019547+00 f t SUBTOTAL 46000.00 1 417 \N +16074 2025-05-18 03:19:35.021231+00 2025-05-18 03:19:35.021238+00 f t DESCUENTO 0.00 2 417 \N +16075 2025-05-18 03:19:35.022494+00 2025-05-18 03:19:35.022503+00 f t TOTAL 46000.00 3 417 \N +16076 2025-05-18 03:19:35.023775+00 2025-05-18 03:19:35.023782+00 f t ADELANTO 11000.00 4 417 \N +16501 2025-05-18 11:16:00.357983+00 2025-05-18 11:16:00.358+00 f t SUBTOTAL 57000.00 1 426 \N +16502 2025-05-18 11:16:00.373604+00 2025-05-18 11:16:00.37362+00 f t DESCUENTO 0.00 2 426 \N +16503 2025-05-18 11:16:00.377125+00 2025-05-18 11:16:00.377139+00 f t TOTAL 57000.00 3 426 \N +16504 2025-05-18 11:16:00.388004+00 2025-05-18 11:16:00.388019+00 f t ADELANTO 12000.00 4 426 \N +16089 2025-05-18 04:08:05.715236+00 2025-05-18 04:08:05.715247+00 f t SUBTOTAL 0.00 1 419 \N +16090 2025-05-18 04:08:05.717333+00 2025-05-18 04:08:05.717342+00 f t DESCUENTO 0.00 2 419 \N +16091 2025-05-18 04:08:05.71897+00 2025-05-18 04:08:05.71898+00 f t TOTAL 0.00 3 419 \N +16092 2025-05-18 04:08:05.720493+00 2025-05-18 04:08:05.720502+00 f t ADELANTO 0.00 4 419 \N +16529 2025-05-18 11:36:37.215942+00 2025-05-18 11:36:37.215952+00 f t SUBTOTAL 46000.00 1 427 \N +16530 2025-05-18 11:36:37.218701+00 2025-05-18 11:36:37.218715+00 f t DESCUENTO 0.00 2 427 \N +16531 2025-05-18 11:36:37.220915+00 2025-05-18 11:36:37.220927+00 f t TOTAL 46000.00 3 427 \N +16532 2025-05-18 11:36:37.223378+00 2025-05-18 11:36:37.223388+00 f t ADELANTO 9500.00 4 427 \N +15389 2025-05-17 23:46:40.931643+00 2025-05-17 23:46:40.931657+00 f t SUBTOTAL 0.00 1 403 \N +15390 2025-05-17 23:46:40.933578+00 2025-05-17 23:46:40.93359+00 f t DESCUENTO 0.00 2 403 \N +15391 2025-05-17 23:46:40.935275+00 2025-05-17 23:46:40.935284+00 f t TOTAL 0.00 3 403 \N +15392 2025-05-17 23:46:40.936918+00 2025-05-17 23:46:40.936926+00 f t ADELANTO 0.00 4 403 \N +16605 2025-05-18 11:50:07.102165+00 2025-05-18 11:50:07.102179+00 f t SUBTOTAL 77500.00 1 428 \N +16606 2025-05-18 11:50:07.113075+00 2025-05-18 11:50:07.113088+00 f t DESCUENTO 0.00 2 428 \N +16607 2025-05-18 11:50:07.117794+00 2025-05-18 11:50:07.117808+00 f t TOTAL 77500.00 3 428 \N +16608 2025-05-18 11:50:07.130237+00 2025-05-18 11:50:07.130252+00 f t ADELANTO 42500.00 4 428 \N +15421 2025-05-17 23:54:12.207917+00 2025-05-17 23:54:12.207929+00 f t SUBTOTAL 46000.00 1 404 \N +15422 2025-05-17 23:54:12.210609+00 2025-05-17 23:54:12.210617+00 f t DESCUENTO 0.00 2 404 \N +15423 2025-05-17 23:54:12.212441+00 2025-05-17 23:54:12.212451+00 f t TOTAL 46000.00 3 404 \N +15424 2025-05-17 23:54:12.214146+00 2025-05-17 23:54:12.214154+00 f t ADELANTO 11000.00 4 404 \N +15441 2025-05-18 00:00:20.698864+00 2025-05-18 00:00:20.698877+00 f t SUBTOTAL 0.00 1 405 \N +15442 2025-05-18 00:00:20.711182+00 2025-05-18 00:00:20.711194+00 f t DESCUENTO 0.00 2 405 \N +15443 2025-05-18 00:00:20.713421+00 2025-05-18 00:00:20.713432+00 f t TOTAL 0.00 3 405 \N +15444 2025-05-18 00:00:20.715699+00 2025-05-18 00:00:20.71571+00 f t ADELANTO 0.00 4 405 \N +15893 2025-05-18 01:31:54.812782+00 2025-05-18 01:31:54.81279+00 f t SUBTOTAL 46000.00 1 413 \N +15894 2025-05-18 01:31:54.814591+00 2025-05-18 01:31:54.814599+00 f t DESCUENTO 0.00 2 413 \N +15895 2025-05-18 01:31:54.816055+00 2025-05-18 01:31:54.816062+00 f t TOTAL 46000.00 3 413 \N +15896 2025-05-18 01:31:54.817393+00 2025-05-18 01:31:54.817399+00 f t ADELANTO 9500.00 4 413 \N +16741 2025-05-18 12:30:19.139979+00 2025-05-18 12:30:19.139991+00 f t SUBTOTAL 59500.00 1 430 \N +16742 2025-05-18 12:30:19.142267+00 2025-05-18 12:30:19.142279+00 f t DESCUENTO 0.00 2 430 \N +16743 2025-05-18 12:30:19.144101+00 2025-05-18 12:30:19.144112+00 f t TOTAL 59500.00 3 430 \N +16744 2025-05-18 12:30:19.145944+00 2025-05-18 12:30:19.145955+00 f t ADELANTO 15500.00 4 430 \N +16333 2025-05-18 05:25:39.030797+00 2025-05-18 05:25:39.03081+00 f t SUBTOTAL 46000.00 1 422 \N +16334 2025-05-18 05:25:39.03294+00 2025-05-18 05:25:39.032951+00 f t DESCUENTO 0.00 2 422 \N +16335 2025-05-18 05:25:39.034875+00 2025-05-18 05:25:39.034886+00 f t TOTAL 46000.00 3 422 \N +16336 2025-05-18 05:25:39.036552+00 2025-05-18 05:25:39.03656+00 f t ADELANTO 9500.00 4 422 \N +16361 2025-05-18 05:27:58.574835+00 2025-05-18 05:27:58.574844+00 f t SUBTOTAL 46000.00 1 423 \N +16362 2025-05-18 05:27:58.576515+00 2025-05-18 05:27:58.576523+00 f t DESCUENTO 0.00 2 423 \N +16363 2025-05-18 05:27:58.577766+00 2025-05-18 05:27:58.577773+00 f t TOTAL 46000.00 3 423 \N +16364 2025-05-18 05:27:58.578916+00 2025-05-18 05:27:58.578921+00 f t ADELANTO 9500.00 4 423 \N +16821 2025-05-18 13:11:53.154627+00 2025-05-18 13:11:53.154642+00 f t SUBTOTAL 25000.00 1 432 \N +16822 2025-05-18 13:11:53.156522+00 2025-05-18 13:11:53.156529+00 f t DESCUENTO 0.00 2 432 \N +16823 2025-05-18 13:11:53.1578+00 2025-05-18 13:11:53.157806+00 f t TOTAL 25000.00 3 432 \N +16824 2025-05-18 13:11:53.15905+00 2025-05-18 13:11:53.159056+00 f t ADELANTO 25000.00 4 432 \N +16837 2025-05-18 14:01:28.15543+00 2025-05-18 14:01:28.15544+00 f t SUBTOTAL 0.00 1 434 \N +16838 2025-05-18 14:01:28.157146+00 2025-05-18 14:01:28.157155+00 f t DESCUENTO 0.00 2 434 \N +16839 2025-05-18 14:01:28.15868+00 2025-05-18 14:01:28.158688+00 f t TOTAL 0.00 3 434 \N +16840 2025-05-18 14:01:28.159905+00 2025-05-18 14:01:28.159911+00 f t ADELANTO 0.00 4 434 \N +15589 2025-05-18 00:28:34.625307+00 2025-05-18 00:28:34.625316+00 f t SUBTOTAL 46000.00 1 406 \N +15590 2025-05-18 00:28:34.629696+00 2025-05-18 00:28:34.629706+00 f t DESCUENTO 0.00 2 406 \N +15591 2025-05-18 00:28:34.631824+00 2025-05-18 00:28:34.631841+00 f t TOTAL 46000.00 3 406 \N +15592 2025-05-18 00:28:34.633567+00 2025-05-18 00:28:34.633577+00 f t ADELANTO 9500.00 4 406 \N +16461 2025-05-18 09:52:47.288714+00 2025-05-18 09:52:47.288724+00 f t SUBTOTAL 0.00 1 425 \N +16462 2025-05-18 09:52:47.290454+00 2025-05-18 09:52:47.290463+00 f t DESCUENTO 0.00 2 425 \N +16463 2025-05-18 09:52:47.292168+00 2025-05-18 09:52:47.292177+00 f t TOTAL 0.00 3 425 \N +16464 2025-05-18 09:52:47.293732+00 2025-05-18 09:52:47.29374+00 f t ADELANTO 0.00 4 425 \N +18193 2025-05-19 09:17:09.6376+00 2025-05-19 09:17:09.637609+00 f t SUBTOTAL 38500.00 1 468 \N +18194 2025-05-19 09:17:09.639201+00 2025-05-19 09:17:09.639209+00 f t DESCUENTO 0.00 2 468 \N +18195 2025-05-19 09:17:09.640415+00 2025-05-19 09:17:09.640421+00 f t TOTAL 38500.00 3 468 \N +18196 2025-05-19 09:17:09.641444+00 2025-05-19 09:17:09.64145+00 f t ADELANTO 8500.00 4 468 \N +16081 2025-05-18 03:55:26.613139+00 2025-05-18 03:55:26.613151+00 f t SUBTOTAL 0.00 1 418 \N +16082 2025-05-18 03:55:26.615327+00 2025-05-18 03:55:26.615339+00 f t DESCUENTO 0.00 2 418 \N +16083 2025-05-18 03:55:26.617443+00 2025-05-18 03:55:26.617451+00 f t TOTAL 0.00 3 418 \N +16084 2025-05-18 03:55:26.619212+00 2025-05-18 03:55:26.61922+00 f t ADELANTO 0.00 4 418 \N +16097 2025-05-18 04:08:48.285877+00 2025-05-18 04:08:48.285887+00 f t SUBTOTAL 0.00 1 420 \N +16098 2025-05-18 04:08:48.287654+00 2025-05-18 04:08:48.287664+00 f t DESCUENTO 0.00 2 420 \N +16099 2025-05-18 04:08:48.289184+00 2025-05-18 04:08:48.289192+00 f t TOTAL 0.00 3 420 \N +16100 2025-05-18 04:08:48.29049+00 2025-05-18 04:08:48.290496+00 f t ADELANTO 0.00 4 420 \N +15725 2025-05-18 00:38:05.198141+00 2025-05-18 00:38:05.198156+00 f t SUBTOTAL 0.00 1 410 \N +15726 2025-05-18 00:38:05.200002+00 2025-05-18 00:38:05.200011+00 f t DESCUENTO 0.00 2 410 \N +15727 2025-05-18 00:38:05.20173+00 2025-05-18 00:38:05.201739+00 f t TOTAL 0.00 3 410 \N +15728 2025-05-18 00:38:05.203197+00 2025-05-18 00:38:05.203206+00 f t ADELANTO 0.00 4 410 \N +16905 2025-05-18 14:23:52.83337+00 2025-05-18 14:23:52.833382+00 f t SUBTOTAL 57000.00 1 437 \N +16906 2025-05-18 14:23:52.835683+00 2025-05-18 14:23:52.835696+00 f t DESCUENTO 0.00 2 437 \N +16907 2025-05-18 14:23:52.837573+00 2025-05-18 14:23:52.837585+00 f t TOTAL 57000.00 3 437 \N +16908 2025-05-18 14:23:52.839607+00 2025-05-18 14:23:52.839619+00 f t ADELANTO 12000.00 4 437 \N +16181 2025-05-18 04:56:17.522779+00 2025-05-18 04:56:17.522789+00 f t SUBTOTAL 88000.00 1 421 \N +16182 2025-05-18 04:56:17.524686+00 2025-05-18 04:56:17.524697+00 f t DESCUENTO 0.00 2 421 \N +16183 2025-05-18 04:56:17.526454+00 2025-05-18 04:56:17.526463+00 f t TOTAL 88000.00 3 421 \N +16184 2025-05-18 04:56:17.528151+00 2025-05-18 04:56:17.52816+00 f t ADELANTO 25000.00 4 421 \N +16925 2025-05-18 14:28:20.948807+00 2025-05-18 14:28:20.948816+00 f t SUBTOTAL 0.00 1 438 \N +16926 2025-05-18 14:28:20.953048+00 2025-05-18 14:28:20.95306+00 f t DESCUENTO 0.00 2 438 \N +15809 2025-05-18 01:03:56.53829+00 2025-05-18 01:03:56.538303+00 f t SUBTOTAL 46000.00 1 411 \N +15810 2025-05-18 01:03:56.540403+00 2025-05-18 01:03:56.540414+00 f t DESCUENTO 0.00 2 411 \N +15811 2025-05-18 01:03:56.542305+00 2025-05-18 01:03:56.542316+00 f t TOTAL 46000.00 3 411 \N +15812 2025-05-18 01:03:56.54419+00 2025-05-18 01:03:56.544201+00 f t ADELANTO 9500.00 4 411 \N +16927 2025-05-18 14:28:20.955106+00 2025-05-18 14:28:20.955116+00 f t TOTAL 0.00 3 438 \N +16928 2025-05-18 14:28:20.956725+00 2025-05-18 14:28:20.956732+00 f t ADELANTO 0.00 4 438 \N +15861 2025-05-18 01:16:51.140835+00 2025-05-18 01:16:51.140847+00 f t SUBTOTAL 46000.00 1 412 \N +15862 2025-05-18 01:16:51.142768+00 2025-05-18 01:16:51.142778+00 f t DESCUENTO 0.00 2 412 \N +15863 2025-05-18 01:16:51.14465+00 2025-05-18 01:16:51.14466+00 f t TOTAL 46000.00 3 412 \N +15864 2025-05-18 01:16:51.14637+00 2025-05-18 01:16:51.146379+00 f t ADELANTO 9500.00 4 412 \N +15901 2025-05-18 01:33:14.430602+00 2025-05-18 01:33:14.430615+00 f t SUBTOTAL 0.00 1 414 \N +15902 2025-05-18 01:33:14.432307+00 2025-05-18 01:33:14.432316+00 f t DESCUENTO 0.00 2 414 \N +15903 2025-05-18 01:33:14.433412+00 2025-05-18 01:33:14.433418+00 f t TOTAL 0.00 3 414 \N +15904 2025-05-18 01:33:14.434365+00 2025-05-18 01:33:14.43437+00 f t ADELANTO 0.00 4 414 \N +16677 2025-05-18 12:09:59.53143+00 2025-05-18 12:09:59.531443+00 f t SUBTOTAL 59500.00 1 429 \N +16678 2025-05-18 12:09:59.533315+00 2025-05-18 12:09:59.533322+00 f t DESCUENTO 0.00 2 429 \N +16679 2025-05-18 12:09:59.535006+00 2025-05-18 12:09:59.535014+00 f t TOTAL 59500.00 3 429 \N +16680 2025-05-18 12:09:59.536735+00 2025-05-18 12:09:59.536743+00 f t ADELANTO 15500.00 4 429 \N +15969 2025-05-18 01:48:43.079418+00 2025-05-18 01:48:43.079427+00 f t SUBTOTAL 46000.00 1 415 \N +15970 2025-05-18 01:48:43.081431+00 2025-05-18 01:48:43.081442+00 f t DESCUENTO 0.00 2 415 \N +15971 2025-05-18 01:48:43.082926+00 2025-05-18 01:48:43.082933+00 f t TOTAL 46000.00 3 415 \N +15972 2025-05-18 01:48:43.084418+00 2025-05-18 01:48:43.084425+00 f t ADELANTO 11000.00 4 415 \N +16989 2025-05-18 14:36:11.007174+00 2025-05-18 14:36:11.007184+00 f t SUBTOTAL 121000.00 1 439 \N +16990 2025-05-18 14:36:11.009247+00 2025-05-18 14:36:11.00926+00 f t DESCUENTO 0.00 2 439 \N +16991 2025-05-18 14:36:11.01107+00 2025-05-18 14:36:11.011078+00 f t TOTAL 121000.00 3 439 \N +16992 2025-05-18 14:36:11.012709+00 2025-05-18 14:36:11.012718+00 f t ADELANTO 26000.00 4 439 \N +16997 2025-05-18 14:36:25.581246+00 2025-05-18 14:36:25.581256+00 f t SUBTOTAL 0.00 1 440 \N +16998 2025-05-18 14:36:25.583503+00 2025-05-18 14:36:25.583514+00 f t DESCUENTO 0.00 2 440 \N +16999 2025-05-18 14:36:25.585501+00 2025-05-18 14:36:25.585515+00 f t TOTAL 0.00 3 440 \N +17000 2025-05-18 14:36:25.587622+00 2025-05-18 14:36:25.587633+00 f t ADELANTO 0.00 4 440 \N +16765 2025-05-18 12:43:49.614997+00 2025-05-18 12:43:49.615005+00 f t SUBTOTAL 38500.00 1 431 \N +16766 2025-05-18 12:43:49.616805+00 2025-05-18 12:43:49.616813+00 f t DESCUENTO 0.00 2 431 \N +16767 2025-05-18 12:43:49.618406+00 2025-05-18 12:43:49.618413+00 f t TOTAL 38500.00 3 431 \N +16768 2025-05-18 12:43:49.619703+00 2025-05-18 12:43:49.61971+00 f t ADELANTO 8500.00 4 431 \N +17037 2025-05-18 15:10:57.482047+00 2025-05-18 15:10:57.482056+00 f t SUBTOTAL 46000.00 1 441 \N +17038 2025-05-18 15:10:57.483949+00 2025-05-18 15:10:57.483959+00 f t DESCUENTO 0.00 2 441 \N +17039 2025-05-18 15:10:57.485514+00 2025-05-18 15:10:57.485522+00 f t TOTAL 46000.00 3 441 \N +17040 2025-05-18 15:10:57.489601+00 2025-05-18 15:10:57.489615+00 f t ADELANTO 9500.00 4 441 \N +16829 2025-05-18 13:19:29.11113+00 2025-05-18 13:19:29.111144+00 f t SUBTOTAL 0.00 1 433 \N +16830 2025-05-18 13:19:29.113834+00 2025-05-18 13:19:29.113848+00 f t DESCUENTO 0.00 2 433 \N +16831 2025-05-18 13:19:29.117606+00 2025-05-18 13:19:29.117629+00 f t TOTAL 0.00 3 433 \N +16832 2025-05-18 13:19:29.120162+00 2025-05-18 13:19:29.120171+00 f t ADELANTO 0.00 4 433 \N +17045 2025-05-18 15:52:05.139748+00 2025-05-18 15:52:05.139761+00 f t SUBTOTAL 0.00 1 442 \N +17046 2025-05-18 15:52:05.141911+00 2025-05-18 15:52:05.141924+00 f t DESCUENTO 0.00 2 442 \N +16845 2025-05-18 14:13:22.715094+00 2025-05-18 14:13:22.71511+00 f t SUBTOTAL 0.00 1 435 \N +16846 2025-05-18 14:13:22.716934+00 2025-05-18 14:13:22.716943+00 f t DESCUENTO 0.00 2 435 \N +16847 2025-05-18 14:13:22.7186+00 2025-05-18 14:13:22.718609+00 f t TOTAL 0.00 3 435 \N +16848 2025-05-18 14:13:22.720511+00 2025-05-18 14:13:22.720519+00 f t ADELANTO 0.00 4 435 \N +17047 2025-05-18 15:52:05.143779+00 2025-05-18 15:52:05.143788+00 f t TOTAL 0.00 3 442 \N +17048 2025-05-18 15:52:05.145431+00 2025-05-18 15:52:05.145442+00 f t ADELANTO 0.00 4 442 \N +17053 2025-05-18 16:16:06.038572+00 2025-05-18 16:16:06.038591+00 f t SUBTOTAL 0.00 1 443 \N +17054 2025-05-18 16:16:06.042796+00 2025-05-18 16:16:06.042809+00 f t DESCUENTO 0.00 2 443 \N +17055 2025-05-18 16:16:06.046764+00 2025-05-18 16:16:06.046779+00 f t TOTAL 0.00 3 443 \N +17056 2025-05-18 16:16:06.049553+00 2025-05-18 16:16:06.049566+00 f t ADELANTO 0.00 4 443 \N +20114 2025-05-20 15:51:08.595134+00 2025-05-20 15:51:08.595144+00 f t DESCUENTO 0.00 2 528 \N +20115 2025-05-20 15:51:08.597027+00 2025-05-20 15:51:08.597035+00 f t TOTAL 0.00 3 528 \N +20116 2025-05-20 15:51:08.598337+00 2025-05-20 15:51:08.598345+00 f t ADELANTO 0.00 4 528 \N +21709 2025-05-21 14:08:12.138029+00 2025-05-21 14:08:12.138039+00 f t SUBTOTAL 0.00 1 571 \N +17729 2025-05-18 21:44:38.672441+00 2025-05-18 21:44:38.67245+00 f t SUBTOTAL 25000.00 1 456 \N +17730 2025-05-18 21:44:38.673986+00 2025-05-18 21:44:38.673994+00 f t DESCUENTO 0.00 2 456 \N +17731 2025-05-18 21:44:38.675209+00 2025-05-18 21:44:38.675216+00 f t TOTAL 25000.00 3 456 \N +17732 2025-05-18 21:44:38.676205+00 2025-05-18 21:44:38.676213+00 f t ADELANTO 25000.00 4 456 \N +18201 2025-05-19 10:52:38.65882+00 2025-05-19 10:52:38.65883+00 f t SUBTOTAL 0.00 1 469 \N +18202 2025-05-19 10:52:38.660688+00 2025-05-19 10:52:38.660696+00 f t DESCUENTO 0.00 2 469 \N +18203 2025-05-19 10:52:38.662145+00 2025-05-19 10:52:38.662152+00 f t TOTAL 0.00 3 469 \N +18204 2025-05-19 10:52:38.663529+00 2025-05-19 10:52:38.663536+00 f t ADELANTO 0.00 4 469 \N +17313 2025-05-18 18:13:08.429575+00 2025-05-18 18:13:08.429588+00 f t SUBTOTAL 0.00 1 447 \N +17314 2025-05-18 18:13:08.431671+00 2025-05-18 18:13:08.431681+00 f t DESCUENTO 0.00 2 447 \N +17315 2025-05-18 18:13:08.433148+00 2025-05-18 18:13:08.433156+00 f t TOTAL 0.00 3 447 \N +17316 2025-05-18 18:13:08.434416+00 2025-05-18 18:13:08.434423+00 f t ADELANTO 0.00 4 447 \N +17321 2025-05-18 18:34:06.097847+00 2025-05-18 18:34:06.097861+00 f t SUBTOTAL 0.00 1 448 \N +17322 2025-05-18 18:34:06.103228+00 2025-05-18 18:34:06.103245+00 f t DESCUENTO 0.00 2 448 \N +17323 2025-05-18 18:34:06.107218+00 2025-05-18 18:34:06.107229+00 f t TOTAL 0.00 3 448 \N +17324 2025-05-18 18:34:06.10944+00 2025-05-18 18:34:06.109451+00 f t ADELANTO 0.00 4 448 \N +19241 2025-05-19 20:28:31.670964+00 2025-05-19 20:28:31.670979+00 f t SUBTOTAL 0.00 1 500 \N +19242 2025-05-19 20:28:31.67324+00 2025-05-19 20:28:31.673269+00 f t DESCUENTO 0.00 2 500 \N +17809 2025-05-19 00:53:22.310013+00 2025-05-19 00:53:22.310022+00 f t SUBTOTAL 0.00 1 459 \N +17810 2025-05-19 00:53:22.311939+00 2025-05-19 00:53:22.311947+00 f t DESCUENTO 0.00 2 459 \N +17811 2025-05-19 00:53:22.313352+00 2025-05-19 00:53:22.313363+00 f t TOTAL 0.00 3 459 \N +17812 2025-05-19 00:53:22.314576+00 2025-05-19 00:53:22.314582+00 f t ADELANTO 0.00 4 459 \N +17353 2025-05-18 19:18:19.365009+00 2025-05-18 19:18:19.365018+00 f t SUBTOTAL 38500.00 1 449 \N +17354 2025-05-18 19:18:19.367114+00 2025-05-18 19:18:19.367122+00 f t DESCUENTO 0.00 2 449 \N +17355 2025-05-18 19:18:19.368872+00 2025-05-18 19:18:19.36888+00 f t TOTAL 38500.00 3 449 \N +17356 2025-05-18 19:18:19.370331+00 2025-05-18 19:18:19.370339+00 f t ADELANTO 8500.00 4 449 \N +17117 2025-05-18 16:20:10.870133+00 2025-05-18 16:20:10.870145+00 f t SUBTOTAL 38500.00 1 444 \N +17118 2025-05-18 16:20:10.872817+00 2025-05-18 16:20:10.872832+00 f t DESCUENTO 0.00 2 444 \N +17119 2025-05-18 16:20:10.876797+00 2025-05-18 16:20:10.876812+00 f t TOTAL 38500.00 3 444 \N +17120 2025-05-18 16:20:10.879023+00 2025-05-18 16:20:10.879035+00 f t ADELANTO 8500.00 4 444 \N +18269 2025-05-19 14:21:24.817631+00 2025-05-19 14:21:24.817641+00 f t SUBTOTAL 38500.00 1 472 \N +18270 2025-05-19 14:21:24.819287+00 2025-05-19 14:21:24.819301+00 f t DESCUENTO 0.00 2 472 \N +18271 2025-05-19 14:21:24.821027+00 2025-05-19 14:21:24.821036+00 f t TOTAL 38500.00 3 472 \N +18272 2025-05-19 14:21:24.822352+00 2025-05-19 14:21:24.822358+00 f t ADELANTO 8500.00 4 472 \N +17845 2025-05-19 01:41:05.498504+00 2025-05-19 01:41:05.498513+00 f t SUBTOTAL 59500.00 1 460 \N +17846 2025-05-19 01:41:05.500621+00 2025-05-19 01:41:05.500633+00 f t DESCUENTO 0.00 2 460 \N +17847 2025-05-19 01:41:05.502287+00 2025-05-19 01:41:05.502296+00 f t TOTAL 59500.00 3 460 \N +17848 2025-05-19 01:41:05.503721+00 2025-05-19 01:41:05.503728+00 f t ADELANTO 15500.00 4 460 \N +18321 2025-05-19 14:24:03.559058+00 2025-05-19 14:24:03.559068+00 f t SUBTOTAL 46000.00 1 473 \N +18322 2025-05-19 14:24:03.561495+00 2025-05-19 14:24:03.561508+00 f t DESCUENTO 0.00 2 473 \N +18323 2025-05-19 14:24:03.563844+00 2025-05-19 14:24:03.563854+00 f t TOTAL 46000.00 3 473 \N +18324 2025-05-19 14:24:03.565828+00 2025-05-19 14:24:03.565839+00 f t ADELANTO 9500.00 4 473 \N +17201 2025-05-18 17:07:38.410825+00 2025-05-18 17:07:38.410838+00 f t SUBTOTAL 46000.00 1 445 \N +17202 2025-05-18 17:07:38.412996+00 2025-05-18 17:07:38.413007+00 f t DESCUENTO 0.00 2 445 \N +17203 2025-05-18 17:07:38.414697+00 2025-05-18 17:07:38.414707+00 f t TOTAL 46000.00 3 445 \N +17204 2025-05-18 17:07:38.416557+00 2025-05-18 17:07:38.416567+00 f t ADELANTO 9500.00 4 445 \N +17445 2025-05-18 19:34:17.960709+00 2025-05-18 19:34:17.96072+00 f t SUBTOTAL 0.00 1 450 \N +17446 2025-05-18 19:34:17.963561+00 2025-05-18 19:34:17.963574+00 f t DESCUENTO 0.00 2 450 \N +17447 2025-05-18 19:34:17.965367+00 2025-05-18 19:34:17.965376+00 f t TOTAL 0.00 3 450 \N +17448 2025-05-18 19:34:17.967516+00 2025-05-18 19:34:17.967528+00 f t ADELANTO 0.00 4 450 \N +18057 2025-05-19 07:01:48.224468+00 2025-05-19 07:01:48.224478+00 f t SUBTOTAL 0.00 1 465 \N +18058 2025-05-19 07:01:48.226108+00 2025-05-19 07:01:48.226117+00 f t DESCUENTO 0.00 2 465 \N +18059 2025-05-19 07:01:48.227579+00 2025-05-19 07:01:48.227587+00 f t TOTAL 0.00 3 465 \N +18060 2025-05-19 07:01:48.228953+00 2025-05-19 07:01:48.22896+00 f t ADELANTO 0.00 4 465 \N +17257 2025-05-18 17:15:55.896111+00 2025-05-18 17:15:55.896121+00 f t SUBTOTAL 38500.00 1 446 \N +17258 2025-05-18 17:15:55.898158+00 2025-05-18 17:15:55.898168+00 f t DESCUENTO 0.00 2 446 \N +17259 2025-05-18 17:15:55.899889+00 2025-05-18 17:15:55.899898+00 f t TOTAL 38500.00 3 446 \N +17260 2025-05-18 17:15:55.901341+00 2025-05-18 17:15:55.901347+00 f t ADELANTO 8500.00 4 446 \N +17497 2025-05-18 20:17:50.246974+00 2025-05-18 20:17:50.246984+00 f t SUBTOTAL 46000.00 1 452 \N +17498 2025-05-18 20:17:50.248685+00 2025-05-18 20:17:50.248691+00 f t DESCUENTO 0.00 2 452 \N +17499 2025-05-18 20:17:50.249758+00 2025-05-18 20:17:50.249763+00 f t TOTAL 46000.00 3 452 \N +17500 2025-05-18 20:17:50.250837+00 2025-05-18 20:17:50.250843+00 f t ADELANTO 9500.00 4 452 \N +17505 2025-05-18 20:18:15.9298+00 2025-05-18 20:18:15.929808+00 f t SUBTOTAL 59500.00 1 451 \N +17506 2025-05-18 20:18:15.931522+00 2025-05-18 20:18:15.931531+00 f t DESCUENTO 0.00 2 451 \N +17507 2025-05-18 20:18:15.933147+00 2025-05-18 20:18:15.933154+00 f t TOTAL 59500.00 3 451 \N +17508 2025-05-18 20:18:15.934318+00 2025-05-18 20:18:15.934323+00 f t ADELANTO 15500.00 4 451 \N +18157 2025-05-19 09:09:35.670826+00 2025-05-19 09:09:35.670839+00 f t SUBTOTAL 75500.00 1 467 \N +18158 2025-05-19 09:09:35.672978+00 2025-05-19 09:09:35.67299+00 f t DESCUENTO 0.00 2 467 \N +18159 2025-05-19 09:09:35.675017+00 2025-05-19 09:09:35.675027+00 f t TOTAL 75500.00 3 467 \N +18160 2025-05-19 09:09:35.676679+00 2025-05-19 09:09:35.676686+00 f t ADELANTO 36000.00 4 467 \N +17569 2025-05-18 20:51:33.630331+00 2025-05-18 20:51:33.630341+00 f t SUBTOTAL 0.00 1 454 \N +17570 2025-05-18 20:51:33.632222+00 2025-05-18 20:51:33.63223+00 f t DESCUENTO 0.00 2 454 \N +17571 2025-05-18 20:51:33.633377+00 2025-05-18 20:51:33.633383+00 f t TOTAL 0.00 3 454 \N +17572 2025-05-18 20:51:33.634419+00 2025-05-18 20:51:33.634425+00 f t ADELANTO 0.00 4 454 \N +21710 2025-05-21 14:08:12.140011+00 2025-05-21 14:08:12.140023+00 f t DESCUENTO 0.00 2 571 \N +21711 2025-05-21 14:08:12.141888+00 2025-05-21 14:08:12.1419+00 f t TOTAL 0.00 3 571 \N +21712 2025-05-21 14:08:12.143526+00 2025-05-21 14:08:12.143536+00 f t ADELANTO 0.00 4 571 \N +17737 2025-05-18 21:55:10.842776+00 2025-05-18 21:55:10.842787+00 f t SUBTOTAL 0.00 1 457 \N +17738 2025-05-18 21:55:10.844184+00 2025-05-18 21:55:10.844191+00 f t DESCUENTO 0.00 2 457 \N +17739 2025-05-18 21:55:10.845643+00 2025-05-18 21:55:10.845653+00 f t TOTAL 0.00 3 457 \N +17740 2025-05-18 21:55:10.846962+00 2025-05-18 21:55:10.846968+00 f t ADELANTO 0.00 4 457 \N +17749 2025-05-18 22:51:59.180475+00 2025-05-18 22:51:59.180485+00 f t SUBTOTAL 0.00 1 453 \N +17750 2025-05-18 22:51:59.182472+00 2025-05-18 22:51:59.182479+00 f t DESCUENTO 0.00 2 453 \N +17751 2025-05-18 22:51:59.183675+00 2025-05-18 22:51:59.183681+00 f t TOTAL 0.00 3 453 \N +17752 2025-05-18 22:51:59.184688+00 2025-05-18 22:51:59.184693+00 f t ADELANTO 0.00 4 453 \N +18209 2025-05-19 11:41:54.748381+00 2025-05-19 11:41:54.748391+00 f t SUBTOTAL 0.00 1 470 \N +18210 2025-05-19 11:41:54.749826+00 2025-05-19 11:41:54.749834+00 f t DESCUENTO 0.00 2 470 \N +18211 2025-05-19 11:41:54.750847+00 2025-05-19 11:41:54.750853+00 f t TOTAL 0.00 3 470 \N +18212 2025-05-19 11:41:54.751816+00 2025-05-19 11:41:54.751821+00 f t ADELANTO 0.00 4 470 \N +17793 2025-05-18 23:33:17.466697+00 2025-05-18 23:33:17.466709+00 f t SUBTOTAL 46000.00 1 458 \N +17794 2025-05-18 23:33:17.468776+00 2025-05-18 23:33:17.468786+00 f t DESCUENTO 0.00 2 458 \N +17795 2025-05-18 23:33:17.470615+00 2025-05-18 23:33:17.470625+00 f t TOTAL 46000.00 3 458 \N +17796 2025-05-18 23:33:17.472105+00 2025-05-18 23:33:17.472112+00 f t ADELANTO 11000.00 4 458 \N +18237 2025-05-19 12:40:38.663643+00 2025-05-19 12:40:38.663652+00 f t SUBTOTAL 38500.00 1 471 \N +18238 2025-05-19 12:40:38.66544+00 2025-05-19 12:40:38.665452+00 f t DESCUENTO 0.00 2 471 \N +18239 2025-05-19 12:40:38.666745+00 2025-05-19 12:40:38.66677+00 f t TOTAL 38500.00 3 471 \N +18240 2025-05-19 12:40:38.667787+00 2025-05-19 12:40:38.667792+00 f t ADELANTO 8500.00 4 471 \N +18689 2025-05-19 16:46:29.680666+00 2025-05-19 16:46:29.680676+00 f t SUBTOTAL 59500.00 1 480 \N +18690 2025-05-19 16:46:29.68232+00 2025-05-19 16:46:29.682329+00 f t DESCUENTO 0.00 2 480 \N +18691 2025-05-19 16:46:29.683651+00 2025-05-19 16:46:29.683661+00 f t TOTAL 59500.00 3 480 \N +18692 2025-05-19 16:46:29.684967+00 2025-05-19 16:46:29.684976+00 f t ADELANTO 15500.00 4 480 \N +19243 2025-05-19 20:28:31.674742+00 2025-05-19 20:28:31.674753+00 f t TOTAL 0.00 3 500 \N +19244 2025-05-19 20:28:31.676254+00 2025-05-19 20:28:31.676261+00 f t ADELANTO 0.00 4 500 \N +18705 2025-05-19 16:51:00.244389+00 2025-05-19 16:51:00.244402+00 f t SUBTOTAL 0.00 1 482 \N +18706 2025-05-19 16:51:00.246398+00 2025-05-19 16:51:00.246411+00 f t DESCUENTO 0.00 2 482 \N +18707 2025-05-19 16:51:00.248369+00 2025-05-19 16:51:00.248382+00 f t TOTAL 0.00 3 482 \N +18708 2025-05-19 16:51:00.250319+00 2025-05-19 16:51:00.250331+00 f t ADELANTO 0.00 4 482 \N +18717 2025-05-19 16:56:18.180606+00 2025-05-19 16:56:18.180622+00 f t SUBTOTAL 0.00 1 483 \N +18718 2025-05-19 16:56:18.183099+00 2025-05-19 16:56:18.183107+00 f t DESCUENTO 0.00 2 483 \N +18719 2025-05-19 16:56:18.184578+00 2025-05-19 16:56:18.184585+00 f t TOTAL 0.00 3 483 \N +18720 2025-05-19 16:56:18.18589+00 2025-05-19 16:56:18.185896+00 f t ADELANTO 0.00 4 483 \N +18753 2025-05-19 17:04:28.266297+00 2025-05-19 17:04:28.266306+00 f t SUBTOTAL 95500.00 1 484 \N +18754 2025-05-19 17:04:28.268595+00 2025-05-19 17:04:28.268606+00 f t DESCUENTO 0.00 2 484 \N +18755 2025-05-19 17:04:28.270516+00 2025-05-19 17:04:28.270526+00 f t TOTAL 95500.00 3 484 \N +18756 2025-05-19 17:04:28.272368+00 2025-05-19 17:04:28.272378+00 f t ADELANTO 60500.00 4 484 \N +17893 2025-05-19 02:25:52.176149+00 2025-05-19 02:25:52.176158+00 f t SUBTOTAL 145750.00 1 461 \N +17894 2025-05-19 02:25:52.178093+00 2025-05-19 02:25:52.178104+00 f t DESCUENTO 0.00 2 461 \N +17895 2025-05-19 02:25:52.179725+00 2025-05-19 02:25:52.179734+00 f t TOTAL 145750.00 3 461 \N +17896 2025-05-19 02:25:52.181296+00 2025-05-19 02:25:52.181307+00 f t ADELANTO 30750.00 4 461 \N +17945 2025-05-19 03:03:37.473975+00 2025-05-19 03:03:37.473985+00 f t SUBTOTAL 46000.00 1 462 \N +17946 2025-05-19 03:03:37.475762+00 2025-05-19 03:03:37.475768+00 f t DESCUENTO 0.00 2 462 \N +17947 2025-05-19 03:03:37.477199+00 2025-05-19 03:03:37.477205+00 f t TOTAL 46000.00 3 462 \N +17948 2025-05-19 03:03:37.478427+00 2025-05-19 03:03:37.478433+00 f t ADELANTO 9500.00 4 462 \N +18361 2025-05-19 14:58:27.076402+00 2025-05-19 14:58:27.076411+00 f t SUBTOTAL 46000.00 1 474 \N +18362 2025-05-19 14:58:27.078292+00 2025-05-19 14:58:27.078302+00 f t DESCUENTO 0.00 2 474 \N +18363 2025-05-19 14:58:27.079759+00 2025-05-19 14:58:27.079768+00 f t TOTAL 46000.00 3 474 \N +18364 2025-05-19 14:58:27.081324+00 2025-05-19 14:58:27.081333+00 f t ADELANTO 11000.00 4 474 \N +17701 2025-05-18 21:19:17.297565+00 2025-05-18 21:19:17.297574+00 f t SUBTOTAL 46000.00 1 455 \N +17702 2025-05-18 21:19:17.299331+00 2025-05-18 21:19:17.29934+00 f t DESCUENTO 0.00 2 455 \N +17703 2025-05-18 21:19:17.30062+00 2025-05-18 21:19:17.300626+00 f t TOTAL 46000.00 3 455 \N +17704 2025-05-18 21:19:17.301892+00 2025-05-18 21:19:17.3019+00 f t ADELANTO 9500.00 4 455 \N +18377 2025-05-19 15:16:03.387669+00 2025-05-19 15:16:03.387683+00 f t SUBTOTAL 0.00 1 475 \N +18378 2025-05-19 15:16:03.390864+00 2025-05-19 15:16:03.39088+00 f t DESCUENTO 0.00 2 475 \N +17997 2025-05-19 04:15:40.330756+00 2025-05-19 04:15:40.330768+00 f t SUBTOTAL 88000.00 1 463 \N +17998 2025-05-19 04:15:40.332542+00 2025-05-19 04:15:40.332552+00 f t DESCUENTO 0.00 2 463 \N +17999 2025-05-19 04:15:40.333887+00 2025-05-19 04:15:40.333896+00 f t TOTAL 88000.00 3 463 \N +18000 2025-05-19 04:15:40.335156+00 2025-05-19 04:15:40.335165+00 f t ADELANTO 25000.00 4 463 \N +18379 2025-05-19 15:16:03.393396+00 2025-05-19 15:16:03.393411+00 f t TOTAL 0.00 3 475 \N +18380 2025-05-19 15:16:03.395709+00 2025-05-19 15:16:03.395722+00 f t ADELANTO 0.00 4 475 \N +18049 2025-05-19 05:44:17.337075+00 2025-05-19 05:44:17.337085+00 f t SUBTOTAL 46000.00 1 464 \N +18050 2025-05-19 05:44:17.338838+00 2025-05-19 05:44:17.338846+00 f t DESCUENTO 0.00 2 464 \N +18051 2025-05-19 05:44:17.340434+00 2025-05-19 05:44:17.340445+00 f t TOTAL 46000.00 3 464 \N +18052 2025-05-19 05:44:17.342066+00 2025-05-19 05:44:17.342077+00 f t ADELANTO 9500.00 4 464 \N +18097 2025-05-19 07:41:09.813906+00 2025-05-19 07:41:09.813916+00 f t SUBTOTAL 67000.00 1 466 \N +18098 2025-05-19 07:41:09.815729+00 2025-05-19 07:41:09.815766+00 f t DESCUENTO 0.00 2 466 \N +18099 2025-05-19 07:41:09.817265+00 2025-05-19 07:41:09.817271+00 f t TOTAL 67000.00 3 466 \N +18100 2025-05-19 07:41:09.818397+00 2025-05-19 07:41:09.818405+00 f t ADELANTO 18000.00 4 466 \N +18481 2025-05-19 15:56:45.685538+00 2025-05-19 15:56:45.685551+00 f t SUBTOTAL 38500.00 1 477 \N +18482 2025-05-19 15:56:45.687654+00 2025-05-19 15:56:45.687665+00 f t DESCUENTO 0.00 2 477 \N +18483 2025-05-19 15:56:45.689554+00 2025-05-19 15:56:45.689564+00 f t TOTAL 38500.00 3 477 \N +18484 2025-05-19 15:56:45.691176+00 2025-05-19 15:56:45.691183+00 f t ADELANTO 8500.00 4 477 \N +18489 2025-05-19 15:57:04.15915+00 2025-05-19 15:57:04.15916+00 f t SUBTOTAL 67000.00 1 476 \N +18490 2025-05-19 15:57:04.161101+00 2025-05-19 15:57:04.161109+00 f t DESCUENTO 0.00 2 476 \N +18491 2025-05-19 15:57:04.162763+00 2025-05-19 15:57:04.162772+00 f t TOTAL 67000.00 3 476 \N +18492 2025-05-19 15:57:04.164322+00 2025-05-19 15:57:04.16433+00 f t ADELANTO 18000.00 4 476 \N +19625 2025-05-20 11:48:47.905948+00 2025-05-20 11:48:47.905959+00 f t SUBTOTAL 0.00 1 513 \N +19626 2025-05-20 11:48:47.907839+00 2025-05-20 11:48:47.907849+00 f t DESCUENTO 0.00 2 513 \N +19627 2025-05-20 11:48:47.909265+00 2025-05-20 11:48:47.909273+00 f t TOTAL 0.00 3 513 \N +19628 2025-05-20 11:48:47.910535+00 2025-05-20 11:48:47.910541+00 f t ADELANTO 0.00 4 513 \N +20121 2025-05-20 16:09:47.987805+00 2025-05-20 16:09:47.987818+00 f t SUBTOTAL 0.00 1 529 \N +20122 2025-05-20 16:09:47.989632+00 2025-05-20 16:09:47.989643+00 f t DESCUENTO 0.00 2 529 \N +18697 2025-05-19 16:49:49.315805+00 2025-05-19 16:49:49.315815+00 f t SUBTOTAL 0.00 1 481 \N +18698 2025-05-19 16:49:49.317611+00 2025-05-19 16:49:49.31762+00 f t DESCUENTO 0.00 2 481 \N +18699 2025-05-19 16:49:49.31924+00 2025-05-19 16:49:49.319248+00 f t TOTAL 0.00 3 481 \N +18700 2025-05-19 16:49:49.320954+00 2025-05-19 16:49:49.320961+00 f t ADELANTO 0.00 4 481 \N +19249 2025-05-19 20:33:21.527281+00 2025-05-19 20:33:21.527296+00 f t SUBTOTAL 0.00 1 501 \N +19250 2025-05-19 20:33:21.53113+00 2025-05-19 20:33:21.531141+00 f t DESCUENTO 0.00 2 501 \N +19251 2025-05-19 20:33:21.53349+00 2025-05-19 20:33:21.533503+00 f t TOTAL 0.00 3 501 \N +19252 2025-05-19 20:33:21.535594+00 2025-05-19 20:33:21.535605+00 f t ADELANTO 0.00 4 501 \N +18585 2025-05-19 16:13:04.062899+00 2025-05-19 16:13:04.062911+00 f t SUBTOTAL 46000.00 1 478 \N +18586 2025-05-19 16:13:04.064932+00 2025-05-19 16:13:04.064941+00 f t DESCUENTO 0.00 2 478 \N +18587 2025-05-19 16:13:04.066419+00 2025-05-19 16:13:04.066425+00 f t TOTAL 46000.00 3 478 \N +18588 2025-05-19 16:13:04.067582+00 2025-05-19 16:13:04.067587+00 f t ADELANTO 9500.00 4 478 \N +18761 2025-05-19 17:04:33.773491+00 2025-05-19 17:04:33.773501+00 f t SUBTOTAL 0.00 1 485 \N +18762 2025-05-19 17:04:33.775274+00 2025-05-19 17:04:33.775283+00 f t DESCUENTO 0.00 2 485 \N +18763 2025-05-19 17:04:33.777182+00 2025-05-19 17:04:33.777192+00 f t TOTAL 0.00 3 485 \N +18764 2025-05-19 17:04:33.779396+00 2025-05-19 17:04:33.779406+00 f t ADELANTO 0.00 4 485 \N +19345 2025-05-20 00:41:44.636058+00 2025-05-20 00:41:44.636069+00 f t SUBTOTAL 0.00 1 505 \N +19346 2025-05-20 00:41:44.637688+00 2025-05-20 00:41:44.637696+00 f t DESCUENTO 0.00 2 505 \N +19347 2025-05-20 00:41:44.638873+00 2025-05-20 00:41:44.638879+00 f t TOTAL 0.00 3 505 \N +19348 2025-05-20 00:41:44.639972+00 2025-05-20 00:41:44.63998+00 f t ADELANTO 0.00 4 505 \N +18793 2025-05-19 17:18:38.214736+00 2025-05-19 17:18:38.214746+00 f t SUBTOTAL 38500.00 1 486 \N +18794 2025-05-19 17:18:38.216433+00 2025-05-19 17:18:38.216442+00 f t DESCUENTO 0.00 2 486 \N +18795 2025-05-19 17:18:38.217573+00 2025-05-19 17:18:38.217578+00 f t TOTAL 38500.00 3 486 \N +18796 2025-05-19 17:18:38.218733+00 2025-05-19 17:18:38.218741+00 f t ADELANTO 8500.00 4 486 \N +18801 2025-05-19 17:49:53.719815+00 2025-05-19 17:49:53.719828+00 f t SUBTOTAL 0.00 1 487 \N +18802 2025-05-19 17:49:53.721579+00 2025-05-19 17:49:53.721588+00 f t DESCUENTO 0.00 2 487 \N +18803 2025-05-19 17:49:53.723033+00 2025-05-19 17:49:53.723044+00 f t TOTAL 0.00 3 487 \N +18804 2025-05-19 17:49:53.724445+00 2025-05-19 17:49:53.724455+00 f t ADELANTO 0.00 4 487 \N +18809 2025-05-19 18:17:02.517569+00 2025-05-19 18:17:02.517584+00 f t SUBTOTAL 0.00 1 488 \N +18810 2025-05-19 18:17:02.520317+00 2025-05-19 18:17:02.520332+00 f t DESCUENTO 0.00 2 488 \N +18811 2025-05-19 18:17:02.523474+00 2025-05-19 18:17:02.523489+00 f t TOTAL 0.00 3 488 \N +18812 2025-05-19 18:17:02.525549+00 2025-05-19 18:17:02.52556+00 f t ADELANTO 0.00 4 488 \N +19381 2025-05-20 01:36:23.727249+00 2025-05-20 01:36:23.727262+00 f t SUBTOTAL 46000.00 1 506 \N +19382 2025-05-20 01:36:23.729106+00 2025-05-20 01:36:23.729114+00 f t DESCUENTO 0.00 2 506 \N +18817 2025-05-19 18:19:03.39799+00 2025-05-19 18:19:03.398004+00 f t SUBTOTAL 0.00 1 489 \N +18818 2025-05-19 18:19:03.401585+00 2025-05-19 18:19:03.401598+00 f t DESCUENTO 0.00 2 489 \N +18819 2025-05-19 18:19:03.404968+00 2025-05-19 18:19:03.404981+00 f t TOTAL 0.00 3 489 \N +18820 2025-05-19 18:19:03.408421+00 2025-05-19 18:19:03.408433+00 f t ADELANTO 0.00 4 489 \N +19383 2025-05-20 01:36:23.730483+00 2025-05-20 01:36:23.730493+00 f t TOTAL 46000.00 3 506 \N +19384 2025-05-20 01:36:23.731908+00 2025-05-20 01:36:23.731917+00 f t ADELANTO 11000.00 4 506 \N +19409 2025-05-20 02:24:24.708421+00 2025-05-20 02:24:24.708433+00 f t SUBTOTAL 38500.00 1 507 \N +19410 2025-05-20 02:24:24.710303+00 2025-05-20 02:24:24.71031+00 f t DESCUENTO 0.00 2 507 \N +19411 2025-05-20 02:24:24.711585+00 2025-05-20 02:24:24.711592+00 f t TOTAL 38500.00 3 507 \N +19412 2025-05-20 02:24:24.71294+00 2025-05-20 02:24:24.71295+00 f t ADELANTO 8500.00 4 507 \N +18849 2025-05-19 18:37:42.965345+00 2025-05-19 18:37:42.965354+00 f t SUBTOTAL 59500.00 1 490 \N +18850 2025-05-19 18:37:42.967553+00 2025-05-19 18:37:42.967564+00 f t DESCUENTO 0.00 2 490 \N +18851 2025-05-19 18:37:42.969546+00 2025-05-19 18:37:42.969554+00 f t TOTAL 59500.00 3 490 \N +18852 2025-05-19 18:37:42.971094+00 2025-05-19 18:37:42.971101+00 f t ADELANTO 15500.00 4 490 \N +18877 2025-05-19 18:44:34.572624+00 2025-05-19 18:44:34.572636+00 f t SUBTOTAL 95000.00 1 491 \N +18878 2025-05-19 18:44:34.574719+00 2025-05-19 18:44:34.57473+00 f t DESCUENTO 0.00 2 491 \N +18879 2025-05-19 18:44:34.5765+00 2025-05-19 18:44:34.576511+00 f t TOTAL 95000.00 3 491 \N +18880 2025-05-19 18:44:34.57812+00 2025-05-19 18:44:34.57813+00 f t ADELANTO 10000.00 4 491 \N +18885 2025-05-19 18:45:24.065858+00 2025-05-19 18:45:24.065868+00 f t SUBTOTAL 0.00 1 492 \N +18886 2025-05-19 18:45:24.06814+00 2025-05-19 18:45:24.068153+00 f t DESCUENTO 0.00 2 492 \N +18887 2025-05-19 18:45:24.070155+00 2025-05-19 18:45:24.070164+00 f t TOTAL 0.00 3 492 \N +18888 2025-05-19 18:45:24.072231+00 2025-05-19 18:45:24.07224+00 f t ADELANTO 0.00 4 492 \N +18893 2025-05-19 19:27:16.590349+00 2025-05-19 19:27:16.590358+00 f t SUBTOTAL 0.00 1 493 \N +18894 2025-05-19 19:27:16.591695+00 2025-05-19 19:27:16.591704+00 f t DESCUENTO 0.00 2 493 \N +18895 2025-05-19 19:27:16.592913+00 2025-05-19 19:27:16.592921+00 f t TOTAL 0.00 3 493 \N +18896 2025-05-19 19:27:16.59402+00 2025-05-19 19:27:16.594026+00 f t ADELANTO 0.00 4 493 \N +18901 2025-05-19 19:34:24.295488+00 2025-05-19 19:34:24.295498+00 f t SUBTOTAL 0.00 1 494 \N +18902 2025-05-19 19:34:24.297467+00 2025-05-19 19:34:24.297476+00 f t DESCUENTO 0.00 2 494 \N +18903 2025-05-19 19:34:24.29942+00 2025-05-19 19:34:24.29943+00 f t TOTAL 0.00 3 494 \N +18904 2025-05-19 19:34:24.305681+00 2025-05-19 19:34:24.305692+00 f t ADELANTO 0.00 4 494 \N +18909 2025-05-19 19:58:51.272277+00 2025-05-19 19:58:51.272287+00 f t SUBTOTAL 0.00 1 495 \N +18910 2025-05-19 19:58:51.273756+00 2025-05-19 19:58:51.273764+00 f t DESCUENTO 0.00 2 495 \N +18911 2025-05-19 19:58:51.274989+00 2025-05-19 19:58:51.274997+00 f t TOTAL 0.00 3 495 \N +18912 2025-05-19 19:58:51.276037+00 2025-05-19 19:58:51.276044+00 f t ADELANTO 0.00 4 495 \N +19549 2025-05-20 03:21:13.603132+00 2025-05-20 03:21:13.603142+00 f t SUBTOTAL 38500.00 1 509 \N +19550 2025-05-20 03:21:13.605032+00 2025-05-20 03:21:13.60504+00 f t DESCUENTO 0.00 2 509 \N +19551 2025-05-20 03:21:13.606462+00 2025-05-20 03:21:13.60647+00 f t TOTAL 38500.00 3 509 \N +19552 2025-05-20 03:21:13.607648+00 2025-05-20 03:21:13.607655+00 f t ADELANTO 8500.00 4 509 \N +19561 2025-05-20 03:54:50.91862+00 2025-05-20 03:54:50.918628+00 f t SUBTOTAL 0.00 1 511 \N +19562 2025-05-20 03:54:50.919931+00 2025-05-20 03:54:50.919939+00 f t DESCUENTO 0.00 2 511 \N +19563 2025-05-20 03:54:50.920965+00 2025-05-20 03:54:50.92097+00 f t TOTAL 0.00 3 511 \N +19564 2025-05-20 03:54:50.921782+00 2025-05-20 03:54:50.921787+00 f t ADELANTO 0.00 4 511 \N +20123 2025-05-20 16:09:47.991443+00 2025-05-20 16:09:47.991452+00 f t TOTAL 0.00 3 529 \N +20124 2025-05-20 16:09:47.993292+00 2025-05-20 16:09:47.993301+00 f t ADELANTO 0.00 4 529 \N +19633 2025-05-20 12:29:59.093142+00 2025-05-20 12:29:59.093154+00 f t SUBTOTAL 0.00 1 514 \N +19634 2025-05-20 12:29:59.094575+00 2025-05-20 12:29:59.094585+00 f t DESCUENTO 0.00 2 514 \N +19635 2025-05-20 12:29:59.09589+00 2025-05-20 12:29:59.095896+00 f t TOTAL 0.00 3 514 \N +19636 2025-05-20 12:29:59.096804+00 2025-05-20 12:29:59.096809+00 f t ADELANTO 0.00 4 514 \N +19005 2025-05-19 20:16:16.891291+00 2025-05-19 20:16:16.891301+00 f t SUBTOTAL 98000.00 1 496 \N +19006 2025-05-19 20:16:16.89339+00 2025-05-19 20:16:16.893402+00 f t DESCUENTO 0.00 2 496 \N +19007 2025-05-19 20:16:16.89533+00 2025-05-19 20:16:16.895339+00 f t TOTAL 98000.00 3 496 \N +19008 2025-05-19 20:16:16.897018+00 2025-05-19 20:16:16.89703+00 f t ADELANTO 24000.00 4 496 \N +19233 2025-05-19 20:21:48.31214+00 2025-05-19 20:21:48.312153+00 f t SUBTOTAL 38500.00 1 499 \N +19234 2025-05-19 20:21:48.315266+00 2025-05-19 20:21:48.315279+00 f t DESCUENTO 0.00 2 499 \N +19235 2025-05-19 20:21:48.317204+00 2025-05-19 20:21:48.317214+00 f t TOTAL 38500.00 3 499 \N +19236 2025-05-19 20:21:48.318892+00 2025-05-19 20:21:48.318905+00 f t ADELANTO 8500.00 4 499 \N +19257 2025-05-19 22:34:14.573914+00 2025-05-19 22:34:14.573929+00 f t SUBTOTAL 0.00 1 502 \N +19258 2025-05-19 22:34:14.576261+00 2025-05-19 22:34:14.576273+00 f t DESCUENTO 0.00 2 502 \N +19259 2025-05-19 22:34:14.578006+00 2025-05-19 22:34:14.578019+00 f t TOTAL 0.00 3 502 \N +19260 2025-05-19 22:34:14.579932+00 2025-05-19 22:34:14.579944+00 f t ADELANTO 0.00 4 502 \N +19661 2025-05-20 12:33:22.663099+00 2025-05-20 12:33:22.663109+00 f t SUBTOTAL 46000.00 1 515 \N +19662 2025-05-20 12:33:22.664542+00 2025-05-20 12:33:22.664549+00 f t DESCUENTO 0.00 2 515 \N +19663 2025-05-20 12:33:22.665675+00 2025-05-20 12:33:22.665682+00 f t TOTAL 46000.00 3 515 \N +19664 2025-05-20 12:33:22.666633+00 2025-05-20 12:33:22.666639+00 f t ADELANTO 9500.00 4 515 \N +23565 2025-05-22 03:12:34.833551+00 2025-05-22 03:12:34.833561+00 f t SUBTOTAL 138000.00 1 621 \N +23566 2025-05-22 03:12:34.835613+00 2025-05-22 03:12:34.835625+00 f t DESCUENTO 0.00 2 621 \N +23567 2025-05-22 03:12:34.837281+00 2025-05-22 03:12:34.837292+00 f t TOTAL 138000.00 3 621 \N +23568 2025-05-22 03:12:34.838983+00 2025-05-22 03:12:34.838993+00 f t ADELANTO 33000.00 4 621 \N +19669 2025-05-20 12:44:39.493078+00 2025-05-20 12:44:39.493088+00 f t SUBTOTAL 0.00 1 516 \N +19670 2025-05-20 12:44:39.494495+00 2025-05-20 12:44:39.494502+00 f t DESCUENTO 0.00 2 516 \N +19671 2025-05-20 12:44:39.495823+00 2025-05-20 12:44:39.495831+00 f t TOTAL 0.00 3 516 \N +19293 2025-05-19 22:53:35.472955+00 2025-05-19 22:53:35.472966+00 f t SUBTOTAL 59500.00 1 503 \N +19294 2025-05-19 22:53:35.475119+00 2025-05-19 22:53:35.475127+00 f t DESCUENTO 0.00 2 503 \N +19295 2025-05-19 22:53:35.476895+00 2025-05-19 22:53:35.476902+00 f t TOTAL 59500.00 3 503 \N +19296 2025-05-19 22:53:35.478384+00 2025-05-19 22:53:35.47839+00 f t ADELANTO 15500.00 4 503 \N +19672 2025-05-20 12:44:39.497157+00 2025-05-20 12:44:39.497165+00 f t ADELANTO 0.00 4 516 \N +19677 2025-05-20 12:50:04.54042+00 2025-05-20 12:50:04.540434+00 f t SUBTOTAL 0.00 1 517 \N +19678 2025-05-20 12:50:04.542549+00 2025-05-20 12:50:04.54256+00 f t DESCUENTO 0.00 2 517 \N +19679 2025-05-20 12:50:04.544724+00 2025-05-20 12:50:04.544735+00 f t TOTAL 0.00 3 517 \N +19049 2025-05-19 20:19:35.994535+00 2025-05-19 20:19:35.994548+00 f t SUBTOTAL 46000.00 1 497 \N +19050 2025-05-19 20:19:35.997112+00 2025-05-19 20:19:35.997126+00 f t DESCUENTO 0.00 2 497 \N +19051 2025-05-19 20:19:35.999409+00 2025-05-19 20:19:35.99942+00 f t TOTAL 46000.00 3 497 \N +19052 2025-05-19 20:19:36.001432+00 2025-05-19 20:19:36.001445+00 f t ADELANTO 9500.00 4 497 \N +19680 2025-05-20 12:50:04.546695+00 2025-05-20 12:50:04.546707+00 f t ADELANTO 0.00 4 517 \N +19337 2025-05-20 00:16:05.481206+00 2025-05-20 00:16:05.481218+00 f t SUBTOTAL 59500.00 1 504 \N +19338 2025-05-20 00:16:05.483647+00 2025-05-20 00:16:05.483658+00 f t DESCUENTO 0.00 2 504 \N +19339 2025-05-20 00:16:05.485265+00 2025-05-20 00:16:05.485271+00 f t TOTAL 59500.00 3 504 \N +19340 2025-05-20 00:16:05.486605+00 2025-05-20 00:16:05.486611+00 f t ADELANTO 15500.00 4 504 \N +19709 2025-05-20 13:11:31.482668+00 2025-05-20 13:11:31.482677+00 f t SUBTOTAL 46000.00 1 518 \N +19710 2025-05-20 13:11:31.484438+00 2025-05-20 13:11:31.484445+00 f t DESCUENTO 0.00 2 518 \N +19711 2025-05-20 13:11:31.48553+00 2025-05-20 13:11:31.485536+00 f t TOTAL 46000.00 3 518 \N +19712 2025-05-20 13:11:31.486555+00 2025-05-20 13:11:31.48656+00 f t ADELANTO 9500.00 4 518 \N +19097 2025-05-19 20:20:09.314397+00 2025-05-19 20:20:09.314411+00 f t SUBTOTAL 59500.00 1 498 \N +19098 2025-05-19 20:20:09.318151+00 2025-05-19 20:20:09.318167+00 f t DESCUENTO 0.00 2 498 \N +19099 2025-05-19 20:20:09.321457+00 2025-05-19 20:20:09.321466+00 f t TOTAL 59500.00 3 498 \N +19100 2025-05-19 20:20:09.325359+00 2025-05-19 20:20:09.325369+00 f t ADELANTO 15500.00 4 498 \N +19417 2025-05-20 03:18:50.800511+00 2025-05-20 03:18:50.800526+00 f t SUBTOTAL 0.00 1 508 \N +19418 2025-05-20 03:18:50.802529+00 2025-05-20 03:18:50.802538+00 f t DESCUENTO 0.00 2 508 \N +19419 2025-05-20 03:18:50.804166+00 2025-05-20 03:18:50.804177+00 f t TOTAL 0.00 3 508 \N +19420 2025-05-20 03:18:50.805619+00 2025-05-20 03:18:50.805627+00 f t ADELANTO 0.00 4 508 \N +19733 2025-05-20 13:26:04.230026+00 2025-05-20 13:26:04.230036+00 f t SUBTOTAL 38500.00 1 519 \N +19734 2025-05-20 13:26:04.232245+00 2025-05-20 13:26:04.232256+00 f t DESCUENTO 0.00 2 519 \N +19735 2025-05-20 13:26:04.23434+00 2025-05-20 13:26:04.234351+00 f t TOTAL 38500.00 3 519 \N +19736 2025-05-20 13:26:04.236408+00 2025-05-20 13:26:04.236418+00 f t ADELANTO 8500.00 4 519 \N +19757 2025-05-20 13:31:55.306434+00 2025-05-20 13:31:55.306444+00 f t SUBTOTAL 59500.00 1 520 \N +19758 2025-05-20 13:31:55.308103+00 2025-05-20 13:31:55.30811+00 f t DESCUENTO 0.00 2 520 \N +19759 2025-05-20 13:31:55.309454+00 2025-05-20 13:31:55.309461+00 f t TOTAL 59500.00 3 520 \N +19760 2025-05-20 13:31:55.310711+00 2025-05-20 13:31:55.310719+00 f t ADELANTO 15500.00 4 520 \N +19785 2025-05-20 13:53:11.586345+00 2025-05-20 13:53:11.586357+00 f t SUBTOTAL 38500.00 1 521 \N +19786 2025-05-20 13:53:11.588269+00 2025-05-20 13:53:11.58828+00 f t DESCUENTO 0.00 2 521 \N +19787 2025-05-20 13:53:11.589873+00 2025-05-20 13:53:11.589883+00 f t TOTAL 38500.00 3 521 \N +19788 2025-05-20 13:53:11.591273+00 2025-05-20 13:53:11.591282+00 f t ADELANTO 8500.00 4 521 \N +19553 2025-05-20 03:21:16.570371+00 2025-05-20 03:21:16.570379+00 f t SUBTOTAL 46000.00 1 510 \N +19554 2025-05-20 03:21:16.572038+00 2025-05-20 03:21:16.572047+00 f t DESCUENTO 0.00 2 510 \N +19555 2025-05-20 03:21:16.573403+00 2025-05-20 03:21:16.57341+00 f t TOTAL 46000.00 3 510 \N +19556 2025-05-20 03:21:16.574545+00 2025-05-20 03:21:16.574551+00 f t ADELANTO 9500.00 4 510 \N +19601 2025-05-20 11:46:48.181442+00 2025-05-20 11:46:48.181453+00 f t SUBTOTAL 38500.00 1 512 \N +19602 2025-05-20 11:46:48.183545+00 2025-05-20 11:46:48.183554+00 f t DESCUENTO 0.00 2 512 \N +19603 2025-05-20 11:46:48.185692+00 2025-05-20 11:46:48.185702+00 f t TOTAL 38500.00 3 512 \N +19604 2025-05-20 11:46:48.187309+00 2025-05-20 11:46:48.187318+00 f t ADELANTO 8500.00 4 512 \N +19881 2025-05-20 13:58:27.856007+00 2025-05-20 13:58:27.856016+00 f t SUBTOTAL 38500.00 1 522 \N +19882 2025-05-20 13:58:27.857722+00 2025-05-20 13:58:27.857732+00 f t DESCUENTO 0.00 2 522 \N +19883 2025-05-20 13:58:27.859346+00 2025-05-20 13:58:27.859382+00 f t TOTAL 38500.00 3 522 \N +19884 2025-05-20 13:58:27.86177+00 2025-05-20 13:58:27.861777+00 f t ADELANTO 8500.00 4 522 \N +20721 2025-05-21 01:39:27.785933+00 2025-05-21 01:39:27.785944+00 f t SUBTOTAL 0.00 1 549 \N +20722 2025-05-21 01:39:27.787866+00 2025-05-21 01:39:27.787873+00 f t DESCUENTO 0.00 2 549 \N +20723 2025-05-21 01:39:27.789086+00 2025-05-21 01:39:27.789092+00 f t TOTAL 0.00 3 549 \N +20724 2025-05-21 01:39:27.790018+00 2025-05-21 01:39:27.790023+00 f t ADELANTO 0.00 4 549 \N +20177 2025-05-20 17:15:08.185314+00 2025-05-20 17:15:08.185328+00 f t SUBTOTAL 0.00 1 530 \N +20178 2025-05-20 17:15:08.187928+00 2025-05-20 17:15:08.187941+00 f t DESCUENTO 0.00 2 530 \N +20179 2025-05-20 17:15:08.189781+00 2025-05-20 17:15:08.189792+00 f t TOTAL 0.00 3 530 \N +20180 2025-05-20 17:15:08.191412+00 2025-05-20 17:15:08.191422+00 f t ADELANTO 0.00 4 530 \N +19917 2025-05-20 14:28:30.830001+00 2025-05-20 14:28:30.830014+00 f t SUBTOTAL 46000.00 1 523 \N +19918 2025-05-20 14:28:30.837597+00 2025-05-20 14:28:30.837612+00 f t DESCUENTO 0.00 2 523 \N +19919 2025-05-20 14:28:30.84023+00 2025-05-20 14:28:30.840242+00 f t TOTAL 46000.00 3 523 \N +19920 2025-05-20 14:28:30.842404+00 2025-05-20 14:28:30.842416+00 f t ADELANTO 11000.00 4 523 \N +20185 2025-05-20 17:54:02.191381+00 2025-05-20 17:54:02.191392+00 f t SUBTOTAL 0.00 1 531 \N +20186 2025-05-20 17:54:02.194457+00 2025-05-20 17:54:02.194471+00 f t DESCUENTO 0.00 2 531 \N +20187 2025-05-20 17:54:02.197045+00 2025-05-20 17:54:02.197059+00 f t TOTAL 0.00 3 531 \N +20188 2025-05-20 17:54:02.201507+00 2025-05-20 17:54:02.201519+00 f t ADELANTO 0.00 4 531 \N +20773 2025-05-21 01:41:39.246454+00 2025-05-21 01:41:39.246462+00 f t SUBTOTAL 0.00 1 551 \N +20774 2025-05-21 01:41:39.247875+00 2025-05-21 01:41:39.247886+00 f t DESCUENTO 0.00 2 551 \N +20775 2025-05-21 01:41:39.249498+00 2025-05-21 01:41:39.249504+00 f t TOTAL 0.00 3 551 \N +20776 2025-05-21 01:41:39.250544+00 2025-05-21 01:41:39.250549+00 f t ADELANTO 0.00 4 551 \N +20193 2025-05-20 18:01:16.834183+00 2025-05-20 18:01:16.834198+00 f t SUBTOTAL 0.00 1 532 \N +20194 2025-05-20 18:01:16.838215+00 2025-05-20 18:01:16.838225+00 f t DESCUENTO 0.00 2 532 \N +20195 2025-05-20 18:01:16.840642+00 2025-05-20 18:01:16.840654+00 f t TOTAL 0.00 3 532 \N +20196 2025-05-20 18:01:16.842909+00 2025-05-20 18:01:16.842918+00 f t ADELANTO 0.00 4 532 \N +20201 2025-05-20 18:10:23.990933+00 2025-05-20 18:10:23.990947+00 f t SUBTOTAL 0.00 1 533 \N +20202 2025-05-20 18:10:23.99354+00 2025-05-20 18:10:23.993549+00 f t DESCUENTO 0.00 2 533 \N +20203 2025-05-20 18:10:23.995716+00 2025-05-20 18:10:23.995728+00 f t TOTAL 0.00 3 533 \N +20204 2025-05-20 18:10:23.998029+00 2025-05-20 18:10:23.998042+00 f t ADELANTO 0.00 4 533 \N +19945 2025-05-20 14:37:27.885927+00 2025-05-20 14:37:27.885942+00 f t SUBTOTAL 0.00 1 524 \N +19946 2025-05-20 14:37:27.889711+00 2025-05-20 14:37:27.889722+00 f t DESCUENTO 0.00 2 524 \N +19947 2025-05-20 14:37:27.891843+00 2025-05-20 14:37:27.891854+00 f t TOTAL 0.00 3 524 \N +19948 2025-05-20 14:37:27.893999+00 2025-05-20 14:37:27.894011+00 f t ADELANTO 0.00 4 524 \N +20229 2025-05-20 18:38:35.386409+00 2025-05-20 18:38:35.386418+00 f t SUBTOTAL 25000.00 1 534 \N +20230 2025-05-20 18:38:35.38814+00 2025-05-20 18:38:35.388148+00 f t DESCUENTO 0.00 2 534 \N +20231 2025-05-20 18:38:35.389638+00 2025-05-20 18:38:35.389644+00 f t TOTAL 25000.00 3 534 \N +20232 2025-05-20 18:38:35.391217+00 2025-05-20 18:38:35.391224+00 f t ADELANTO 25000.00 4 534 \N +19973 2025-05-20 14:39:34.766147+00 2025-05-20 14:39:34.766161+00 f t SUBTOTAL 0.00 1 525 \N +19974 2025-05-20 14:39:34.768839+00 2025-05-20 14:39:34.768853+00 f t DESCUENTO 0.00 2 525 \N +19975 2025-05-20 14:39:34.770989+00 2025-05-20 14:39:34.771002+00 f t TOTAL 0.00 3 525 \N +19976 2025-05-20 14:39:34.773155+00 2025-05-20 14:39:34.773167+00 f t ADELANTO 0.00 4 525 \N +21409 2025-05-21 11:17:18.57934+00 2025-05-21 11:17:18.57935+00 f t SUBTOTAL 0.00 1 560 \N +21410 2025-05-21 11:17:18.581472+00 2025-05-21 11:17:18.581485+00 f t DESCUENTO 0.00 2 560 \N +21411 2025-05-21 11:17:18.583586+00 2025-05-21 11:17:18.583599+00 f t TOTAL 0.00 3 560 \N +21412 2025-05-21 11:17:18.585297+00 2025-05-21 11:17:18.585305+00 f t ADELANTO 0.00 4 560 \N +20237 2025-05-20 18:40:06.181965+00 2025-05-20 18:40:06.181979+00 f t SUBTOTAL 0.00 1 535 \N +20238 2025-05-20 18:40:06.185947+00 2025-05-20 18:40:06.185961+00 f t DESCUENTO 0.00 2 535 \N +20239 2025-05-20 18:40:06.196397+00 2025-05-20 18:40:06.196413+00 f t TOTAL 0.00 3 535 \N +20240 2025-05-20 18:40:06.201236+00 2025-05-20 18:40:06.201251+00 f t ADELANTO 0.00 4 535 \N +20245 2025-05-20 19:39:40.619698+00 2025-05-20 19:39:40.619709+00 f t SUBTOTAL 0.00 1 536 \N +20246 2025-05-20 19:39:40.621799+00 2025-05-20 19:39:40.621807+00 f t DESCUENTO 0.00 2 536 \N +20247 2025-05-20 19:39:40.62348+00 2025-05-20 19:39:40.623487+00 f t TOTAL 0.00 3 536 \N +20248 2025-05-20 19:39:40.624873+00 2025-05-20 19:39:40.624878+00 f t ADELANTO 0.00 4 536 \N +20857 2025-05-21 01:47:28.485666+00 2025-05-21 01:47:28.485674+00 f t SUBTOTAL 0.00 1 552 \N +20858 2025-05-21 01:47:28.487609+00 2025-05-21 01:47:28.487615+00 f t DESCUENTO 0.00 2 552 \N +20859 2025-05-21 01:47:28.488833+00 2025-05-21 01:47:28.488839+00 f t TOTAL 0.00 3 552 \N +20860 2025-05-21 01:47:28.490024+00 2025-05-21 01:47:28.490029+00 f t ADELANTO 0.00 4 552 \N +20265 2025-05-20 19:55:16.664372+00 2025-05-20 19:55:16.664385+00 f t SUBTOTAL 0.00 1 537 \N +20266 2025-05-20 19:55:16.666866+00 2025-05-20 19:55:16.666878+00 f t DESCUENTO 0.00 2 537 \N +20267 2025-05-20 19:55:16.66853+00 2025-05-20 19:55:16.668539+00 f t TOTAL 0.00 3 537 \N +20268 2025-05-20 19:55:16.67028+00 2025-05-20 19:55:16.670288+00 f t ADELANTO 0.00 4 537 \N +20013 2025-05-20 15:15:23.689014+00 2025-05-20 15:15:23.689026+00 f t SUBTOTAL 38500.00 1 526 \N +20014 2025-05-20 15:15:23.691122+00 2025-05-20 15:15:23.691132+00 f t DESCUENTO 0.00 2 526 \N +20015 2025-05-20 15:15:23.692737+00 2025-05-20 15:15:23.692745+00 f t TOTAL 38500.00 3 526 \N +20016 2025-05-20 15:15:23.694056+00 2025-05-20 15:15:23.694062+00 f t ADELANTO 8500.00 4 526 \N +20273 2025-05-20 20:16:37.987943+00 2025-05-20 20:16:37.987955+00 f t SUBTOTAL 0.00 1 538 \N +20274 2025-05-20 20:16:37.989638+00 2025-05-20 20:16:37.989647+00 f t DESCUENTO 0.00 2 538 \N +20275 2025-05-20 20:16:37.990778+00 2025-05-20 20:16:37.990783+00 f t TOTAL 0.00 3 538 \N +20276 2025-05-20 20:16:37.992257+00 2025-05-20 20:16:37.992263+00 f t ADELANTO 0.00 4 538 \N +20933 2025-05-21 02:49:58.393103+00 2025-05-21 02:49:58.393111+00 f t SUBTOTAL 46000.00 1 553 \N +20934 2025-05-21 02:49:58.394968+00 2025-05-21 02:49:58.394977+00 f t DESCUENTO 0.00 2 553 \N +20935 2025-05-21 02:49:58.396695+00 2025-05-21 02:49:58.396705+00 f t TOTAL 46000.00 3 553 \N +20936 2025-05-21 02:49:58.398162+00 2025-05-21 02:49:58.398168+00 f t ADELANTO 9500.00 4 553 \N +20105 2025-05-20 15:29:03.436726+00 2025-05-20 15:29:03.436737+00 f t SUBTOTAL 46000.00 1 527 \N +20106 2025-05-20 15:29:03.438461+00 2025-05-20 15:29:03.438469+00 f t DESCUENTO 0.00 2 527 \N +20107 2025-05-20 15:29:03.439819+00 2025-05-20 15:29:03.439825+00 f t TOTAL 46000.00 3 527 \N +20108 2025-05-20 15:29:03.440971+00 2025-05-20 15:29:03.440977+00 f t ADELANTO 11000.00 4 527 \N +20389 2025-05-20 20:33:46.885792+00 2025-05-20 20:33:46.885805+00 f t SUBTOTAL 0.00 1 539 \N +20390 2025-05-20 20:33:46.888135+00 2025-05-20 20:33:46.888146+00 f t DESCUENTO 0.00 2 539 \N +20391 2025-05-20 20:33:46.88994+00 2025-05-20 20:33:46.889951+00 f t TOTAL 0.00 3 539 \N +20392 2025-05-20 20:33:46.891291+00 2025-05-20 20:33:46.891301+00 f t ADELANTO 0.00 4 539 \N +21717 2025-05-21 14:09:16.169455+00 2025-05-21 14:09:16.169468+00 f t SUBTOTAL 0.00 1 572 \N +21718 2025-05-21 14:09:16.171137+00 2025-05-21 14:09:16.171147+00 f t DESCUENTO 0.00 2 572 \N +21719 2025-05-21 14:09:16.172664+00 2025-05-21 14:09:16.172673+00 f t TOTAL 0.00 3 572 \N +21720 2025-05-21 14:09:16.173831+00 2025-05-21 14:09:16.173837+00 f t ADELANTO 0.00 4 572 \N +24021 2025-05-22 14:15:18.168042+00 2025-05-22 14:15:18.168058+00 f t SUBTOTAL 0.00 1 635 \N +24022 2025-05-22 14:15:18.170485+00 2025-05-22 14:15:18.170497+00 f t DESCUENTO 0.00 2 635 \N +24023 2025-05-22 14:15:18.172998+00 2025-05-22 14:15:18.173011+00 f t TOTAL 0.00 3 635 \N +24024 2025-05-22 14:15:18.175255+00 2025-05-22 14:15:18.175267+00 f t ADELANTO 0.00 4 635 \N +20433 2025-05-20 21:08:25.907163+00 2025-05-20 21:08:25.907171+00 f t SUBTOTAL 38500.00 1 540 \N +20434 2025-05-20 21:08:25.908801+00 2025-05-20 21:08:25.908807+00 f t DESCUENTO 0.00 2 540 \N +20435 2025-05-20 21:08:25.909894+00 2025-05-20 21:08:25.9099+00 f t TOTAL 38500.00 3 540 \N +20436 2025-05-20 21:08:25.910873+00 2025-05-20 21:08:25.910878+00 f t ADELANTO 8500.00 4 540 \N +20453 2025-05-20 21:09:07.86583+00 2025-05-20 21:09:07.865841+00 f t SUBTOTAL 46000.00 1 541 \N +20454 2025-05-20 21:09:07.867549+00 2025-05-20 21:09:07.867559+00 f t DESCUENTO 0.00 2 541 \N +20455 2025-05-20 21:09:07.868948+00 2025-05-20 21:09:07.868955+00 f t TOTAL 46000.00 3 541 \N +20456 2025-05-20 21:09:07.870089+00 2025-05-20 21:09:07.870094+00 f t ADELANTO 11000.00 4 541 \N +20765 2025-05-21 01:40:39.474369+00 2025-05-21 01:40:39.474378+00 f t SUBTOTAL 0.00 1 550 \N +20766 2025-05-21 01:40:39.476087+00 2025-05-21 01:40:39.476094+00 f t DESCUENTO 0.00 2 550 \N +20767 2025-05-21 01:40:39.477474+00 2025-05-21 01:40:39.47748+00 f t TOTAL 0.00 3 550 \N +20461 2025-05-20 22:28:29.182779+00 2025-05-20 22:28:29.18279+00 f t SUBTOTAL 0.00 1 542 \N +20462 2025-05-20 22:28:29.184478+00 2025-05-20 22:28:29.184486+00 f t DESCUENTO 0.00 2 542 \N +20463 2025-05-20 22:28:29.186178+00 2025-05-20 22:28:29.186185+00 f t TOTAL 0.00 3 542 \N +20464 2025-05-20 22:28:29.187564+00 2025-05-20 22:28:29.18757+00 f t ADELANTO 0.00 4 542 \N +20768 2025-05-21 01:40:39.478757+00 2025-05-21 01:40:39.478765+00 f t ADELANTO 0.00 4 550 \N +20469 2025-05-20 23:22:22.850319+00 2025-05-20 23:22:22.85033+00 f t SUBTOTAL 0.00 1 543 \N +20470 2025-05-20 23:22:22.85202+00 2025-05-20 23:22:22.85203+00 f t DESCUENTO 0.00 2 543 \N +20471 2025-05-20 23:22:22.853599+00 2025-05-20 23:22:22.853609+00 f t TOTAL 0.00 3 543 \N +20472 2025-05-20 23:22:22.854824+00 2025-05-20 23:22:22.85483+00 f t ADELANTO 0.00 4 543 \N +22493 2025-05-21 23:01:53.297324+00 2025-05-21 23:01:53.297333+00 f t SUBTOTAL 0.00 1 598 \N +21445 2025-05-21 12:33:38.225502+00 2025-05-21 12:33:38.225515+00 f t SUBTOTAL 0.00 1 562 \N +21446 2025-05-21 12:33:38.227684+00 2025-05-21 12:33:38.227695+00 f t DESCUENTO 0.00 2 562 \N +21447 2025-05-21 12:33:38.229665+00 2025-05-21 12:33:38.229674+00 f t TOTAL 0.00 3 562 \N +21448 2025-05-21 12:33:38.231292+00 2025-05-21 12:33:38.231301+00 f t ADELANTO 0.00 4 562 \N +20541 2025-05-21 00:04:37.153001+00 2025-05-21 00:04:37.15301+00 f t SUBTOTAL 104000.00 1 544 \N +20542 2025-05-21 00:04:37.155127+00 2025-05-21 00:04:37.155139+00 f t DESCUENTO 0.00 2 544 \N +20543 2025-05-21 00:04:37.157064+00 2025-05-21 00:04:37.157072+00 f t TOTAL 104000.00 3 544 \N +20544 2025-05-21 00:04:37.158763+00 2025-05-21 00:04:37.158774+00 f t ADELANTO 24500.00 4 544 \N +21533 2025-05-21 13:18:08.281671+00 2025-05-21 13:18:08.281685+00 f t SUBTOTAL 0.00 1 566 \N +21534 2025-05-21 13:18:08.283534+00 2025-05-21 13:18:08.283546+00 f t DESCUENTO 0.00 2 566 \N +21535 2025-05-21 13:18:08.285359+00 2025-05-21 13:18:08.285369+00 f t TOTAL 0.00 3 566 \N +21536 2025-05-21 13:18:08.286858+00 2025-05-21 13:18:08.286868+00 f t ADELANTO 0.00 4 566 \N +20577 2025-05-21 00:47:01.032006+00 2025-05-21 00:47:01.032015+00 f t SUBTOTAL 59500.00 1 545 \N +20578 2025-05-21 00:47:01.033576+00 2025-05-21 00:47:01.033583+00 f t DESCUENTO 0.00 2 545 \N +20579 2025-05-21 00:47:01.034884+00 2025-05-21 00:47:01.034895+00 f t TOTAL 59500.00 3 545 \N +20580 2025-05-21 00:47:01.036145+00 2025-05-21 00:47:01.036152+00 f t ADELANTO 15500.00 4 545 \N +21561 2025-05-21 13:42:09.607273+00 2025-05-21 13:42:09.607282+00 f t SUBTOTAL 38500.00 1 567 \N +21562 2025-05-21 13:42:09.609002+00 2025-05-21 13:42:09.609013+00 f t DESCUENTO 0.00 2 567 \N +21563 2025-05-21 13:42:09.610241+00 2025-05-21 13:42:09.610248+00 f t TOTAL 38500.00 3 567 \N +20585 2025-05-21 00:47:50.089222+00 2025-05-21 00:47:50.089231+00 f t SUBTOTAL 0.00 1 546 \N +20586 2025-05-21 00:47:50.09108+00 2025-05-21 00:47:50.091091+00 f t DESCUENTO 0.00 2 546 \N +20587 2025-05-21 00:47:50.092365+00 2025-05-21 00:47:50.092371+00 f t TOTAL 0.00 3 546 \N +20588 2025-05-21 00:47:50.09348+00 2025-05-21 00:47:50.093487+00 f t ADELANTO 0.00 4 546 \N +21564 2025-05-21 13:42:09.611991+00 2025-05-21 13:42:09.611998+00 f t ADELANTO 8500.00 4 567 \N +20989 2025-05-21 02:56:05.48822+00 2025-05-21 02:56:05.488228+00 f t SUBTOTAL 46000.00 1 554 \N +20990 2025-05-21 02:56:05.493326+00 2025-05-21 02:56:05.493336+00 f t DESCUENTO 0.00 2 554 \N +20991 2025-05-21 02:56:05.49562+00 2025-05-21 02:56:05.495631+00 f t TOTAL 46000.00 3 554 \N +20992 2025-05-21 02:56:05.497438+00 2025-05-21 02:56:05.497446+00 f t ADELANTO 9500.00 4 554 \N +20621 2025-05-21 00:49:03.618324+00 2025-05-21 00:49:03.618337+00 f t SUBTOTAL 59500.00 1 547 \N +20622 2025-05-21 00:49:03.622584+00 2025-05-21 00:49:03.622595+00 f t DESCUENTO 0.00 2 547 \N +20623 2025-05-21 00:49:03.625357+00 2025-05-21 00:49:03.625373+00 f t TOTAL 59500.00 3 547 \N +20624 2025-05-21 00:49:03.628544+00 2025-05-21 00:49:03.628555+00 f t ADELANTO 15500.00 4 547 \N +20997 2025-05-21 03:47:45.85992+00 2025-05-21 03:47:45.85993+00 f t SUBTOTAL 0.00 1 555 \N +20998 2025-05-21 03:47:45.862317+00 2025-05-21 03:47:45.862328+00 f t DESCUENTO 0.00 2 555 \N +20999 2025-05-21 03:47:45.863859+00 2025-05-21 03:47:45.863868+00 f t TOTAL 0.00 3 555 \N +20629 2025-05-21 01:18:43.428299+00 2025-05-21 01:18:43.42831+00 f t SUBTOTAL 0.00 1 548 \N +20630 2025-05-21 01:18:43.430096+00 2025-05-21 01:18:43.430103+00 f t DESCUENTO 0.00 2 548 \N +20631 2025-05-21 01:18:43.431398+00 2025-05-21 01:18:43.431406+00 f t TOTAL 0.00 3 548 \N +20632 2025-05-21 01:18:43.432706+00 2025-05-21 01:18:43.432711+00 f t ADELANTO 0.00 4 548 \N +21000 2025-05-21 03:47:45.865167+00 2025-05-21 03:47:45.865175+00 f t ADELANTO 0.00 4 555 \N +21701 2025-05-21 14:07:02.183063+00 2025-05-21 14:07:02.183076+00 f t SUBTOTAL 25000.00 1 570 \N +21702 2025-05-21 14:07:02.188224+00 2025-05-21 14:07:02.188236+00 f t DESCUENTO 0.00 2 570 \N +21703 2025-05-21 14:07:02.191318+00 2025-05-21 14:07:02.191328+00 f t TOTAL 25000.00 3 570 \N +21704 2025-05-21 14:07:02.193661+00 2025-05-21 14:07:02.19367+00 f t ADELANTO 25000.00 4 570 \N +21045 2025-05-21 03:50:05.230435+00 2025-05-21 03:50:05.23045+00 f t SUBTOTAL 38500.00 1 556 \N +21046 2025-05-21 03:50:05.243015+00 2025-05-21 03:50:05.243028+00 f t DESCUENTO 0.00 2 556 \N +21047 2025-05-21 03:50:05.247051+00 2025-05-21 03:50:05.247065+00 f t TOTAL 38500.00 3 556 \N +21048 2025-05-21 03:50:05.252628+00 2025-05-21 03:50:05.252643+00 f t ADELANTO 8500.00 4 556 \N +21053 2025-05-21 04:02:08.64005+00 2025-05-21 04:02:08.640062+00 f t SUBTOTAL 0.00 1 557 \N +21054 2025-05-21 04:02:08.641949+00 2025-05-21 04:02:08.641959+00 f t DESCUENTO 0.00 2 557 \N +21055 2025-05-21 04:02:08.643921+00 2025-05-21 04:02:08.643932+00 f t TOTAL 0.00 3 557 \N +21056 2025-05-21 04:02:08.645324+00 2025-05-21 04:02:08.645333+00 f t ADELANTO 0.00 4 557 \N +24585 2025-05-22 15:09:51.066661+00 2025-05-22 15:09:51.066671+00 f t SUBTOTAL 38500.00 1 640 \N +24586 2025-05-22 15:09:51.068314+00 2025-05-22 15:09:51.068321+00 f t DESCUENTO 0.00 2 640 \N +21725 2025-05-21 14:14:49.682434+00 2025-05-21 14:14:49.682444+00 f t SUBTOTAL 0.00 1 573 \N +21726 2025-05-21 14:14:49.684327+00 2025-05-21 14:14:49.684335+00 f t DESCUENTO 0.00 2 573 \N +21727 2025-05-21 14:14:49.685957+00 2025-05-21 14:14:49.685964+00 f t TOTAL 0.00 3 573 \N +21728 2025-05-21 14:14:49.687463+00 2025-05-21 14:14:49.687471+00 f t ADELANTO 0.00 4 573 \N +21733 2025-05-21 14:16:13.865808+00 2025-05-21 14:16:13.865817+00 f t SUBTOTAL 0.00 1 574 \N +21734 2025-05-21 14:16:13.867609+00 2025-05-21 14:16:13.867617+00 f t DESCUENTO 0.00 2 574 \N +21735 2025-05-21 14:16:13.869328+00 2025-05-21 14:16:13.869347+00 f t TOTAL 0.00 3 574 \N +21736 2025-05-21 14:16:13.870944+00 2025-05-21 14:16:13.870951+00 f t ADELANTO 0.00 4 574 \N +21741 2025-05-21 14:17:34.210192+00 2025-05-21 14:17:34.210205+00 f t SUBTOTAL 0.00 1 575 \N +21742 2025-05-21 14:17:34.212713+00 2025-05-21 14:17:34.212724+00 f t DESCUENTO 0.00 2 575 \N +21743 2025-05-21 14:17:34.215145+00 2025-05-21 14:17:34.215164+00 f t TOTAL 0.00 3 575 \N +21744 2025-05-21 14:17:34.217697+00 2025-05-21 14:17:34.217709+00 f t ADELANTO 0.00 4 575 \N +21749 2025-05-21 14:20:43.500785+00 2025-05-21 14:20:43.5008+00 f t SUBTOTAL 0.00 1 576 \N +21750 2025-05-21 14:20:43.504841+00 2025-05-21 14:20:43.504856+00 f t DESCUENTO 0.00 2 576 \N +21751 2025-05-21 14:20:43.509392+00 2025-05-21 14:20:43.509405+00 f t TOTAL 0.00 3 576 \N +21752 2025-05-21 14:20:43.519151+00 2025-05-21 14:20:43.519165+00 f t ADELANTO 0.00 4 576 \N +21109 2025-05-21 07:31:17.220249+00 2025-05-21 07:31:17.220262+00 f t SUBTOTAL 0.00 1 558 \N +21110 2025-05-21 07:31:17.223017+00 2025-05-21 07:31:17.223026+00 f t DESCUENTO 0.00 2 558 \N +21111 2025-05-21 07:31:17.22485+00 2025-05-21 07:31:17.224859+00 f t TOTAL 0.00 3 558 \N +21112 2025-05-21 07:31:17.226541+00 2025-05-21 07:31:17.226551+00 f t ADELANTO 0.00 4 558 \N +22457 2025-05-21 20:43:30.1299+00 2025-05-21 20:43:30.129934+00 f t SUBTOTAL 59500.00 1 596 \N +22458 2025-05-21 20:43:30.141492+00 2025-05-21 20:43:30.141506+00 f t DESCUENTO 0.00 2 596 \N +22459 2025-05-21 20:43:30.14587+00 2025-05-21 20:43:30.145884+00 f t TOTAL 59500.00 3 596 \N +22460 2025-05-21 20:43:30.148716+00 2025-05-21 20:43:30.148729+00 f t ADELANTO 15500.00 4 596 \N +21401 2025-05-21 10:21:49.657536+00 2025-05-21 10:21:49.657549+00 f t SUBTOTAL 38500.00 1 559 \N +21402 2025-05-21 10:21:49.660279+00 2025-05-21 10:21:49.66029+00 f t DESCUENTO 0.00 2 559 \N +21403 2025-05-21 10:21:49.662629+00 2025-05-21 10:21:49.662638+00 f t TOTAL 38500.00 3 559 \N +21404 2025-05-21 10:21:49.664598+00 2025-05-21 10:21:49.664606+00 f t ADELANTO 8500.00 4 559 \N +22494 2025-05-21 23:01:53.298835+00 2025-05-21 23:01:53.298846+00 f t DESCUENTO 0.00 2 598 \N +22495 2025-05-21 23:01:53.300462+00 2025-05-21 23:01:53.300469+00 f t TOTAL 0.00 3 598 \N +22496 2025-05-21 23:01:53.30172+00 2025-05-21 23:01:53.301726+00 f t ADELANTO 0.00 4 598 \N +21777 2025-05-21 15:15:37.468189+00 2025-05-21 15:15:37.468202+00 f t SUBTOTAL 38500.00 1 577 \N +21437 2025-05-21 11:40:51.507311+00 2025-05-21 11:40:51.507322+00 f t SUBTOTAL 38500.00 1 561 \N +21438 2025-05-21 11:40:51.5098+00 2025-05-21 11:40:51.509812+00 f t DESCUENTO 0.00 2 561 \N +21439 2025-05-21 11:40:51.511663+00 2025-05-21 11:40:51.511673+00 f t TOTAL 38500.00 3 561 \N +21440 2025-05-21 11:40:51.513392+00 2025-05-21 11:40:51.513401+00 f t ADELANTO 8500.00 4 561 \N +21778 2025-05-21 15:15:37.471222+00 2025-05-21 15:15:37.471236+00 f t DESCUENTO 0.00 2 577 \N +21779 2025-05-21 15:15:37.47404+00 2025-05-21 15:15:37.474053+00 f t TOTAL 38500.00 3 577 \N +21780 2025-05-21 15:15:37.476359+00 2025-05-21 15:15:37.476371+00 f t ADELANTO 8500.00 4 577 \N +21453 2025-05-21 12:38:43.449717+00 2025-05-21 12:38:43.44973+00 f t SUBTOTAL 0.00 1 563 \N +21454 2025-05-21 12:38:43.452899+00 2025-05-21 12:38:43.452909+00 f t DESCUENTO 0.00 2 563 \N +21455 2025-05-21 12:38:43.455697+00 2025-05-21 12:38:43.455707+00 f t TOTAL 0.00 3 563 \N +21456 2025-05-21 12:38:43.457739+00 2025-05-21 12:38:43.457747+00 f t ADELANTO 0.00 4 563 \N +21489 2025-05-21 12:46:37.284648+00 2025-05-21 12:46:37.284658+00 f t SUBTOTAL 38500.00 1 564 \N +21490 2025-05-21 12:46:37.286529+00 2025-05-21 12:46:37.286539+00 f t DESCUENTO 0.00 2 564 \N +21491 2025-05-21 12:46:37.288859+00 2025-05-21 12:46:37.288869+00 f t TOTAL 38500.00 3 564 \N +21492 2025-05-21 12:46:37.290901+00 2025-05-21 12:46:37.29091+00 f t ADELANTO 8500.00 4 564 \N +21805 2025-05-21 15:33:37.862845+00 2025-05-21 15:33:37.862857+00 f t SUBTOTAL 0.00 1 578 \N +21525 2025-05-21 13:06:33.788841+00 2025-05-21 13:06:33.788852+00 f t SUBTOTAL 46000.00 1 565 \N +21526 2025-05-21 13:06:33.790737+00 2025-05-21 13:06:33.790745+00 f t DESCUENTO 0.00 2 565 \N +21527 2025-05-21 13:06:33.792432+00 2025-05-21 13:06:33.792439+00 f t TOTAL 46000.00 3 565 \N +21528 2025-05-21 13:06:33.793815+00 2025-05-21 13:06:33.793821+00 f t ADELANTO 9500.00 4 565 \N +21806 2025-05-21 15:33:37.866124+00 2025-05-21 15:33:37.866136+00 f t DESCUENTO 0.00 2 578 \N +21807 2025-05-21 15:33:37.875049+00 2025-05-21 15:33:37.875059+00 f t TOTAL 0.00 3 578 \N +21808 2025-05-21 15:33:37.878132+00 2025-05-21 15:33:37.878142+00 f t ADELANTO 0.00 4 578 \N +21809 2025-05-21 16:23:41.826388+00 2025-05-21 16:23:41.826398+00 f t SUBTOTAL 0.00 1 568 \N +21810 2025-05-21 16:23:41.828699+00 2025-05-21 16:23:41.828706+00 f t DESCUENTO 0.00 2 568 \N +21811 2025-05-21 16:23:41.830307+00 2025-05-21 16:23:41.830313+00 f t TOTAL 0.00 3 568 \N +21812 2025-05-21 16:23:41.83175+00 2025-05-21 16:23:41.831759+00 f t ADELANTO 0.00 4 568 \N +21817 2025-05-21 16:56:50.306422+00 2025-05-21 16:56:50.306431+00 f t SUBTOTAL 0.00 1 579 \N +21818 2025-05-21 16:56:50.308398+00 2025-05-21 16:56:50.308407+00 f t DESCUENTO 0.00 2 579 \N +21819 2025-05-21 16:56:50.309794+00 2025-05-21 16:56:50.309801+00 f t TOTAL 0.00 3 579 \N +21820 2025-05-21 16:56:50.311022+00 2025-05-21 16:56:50.311028+00 f t ADELANTO 0.00 4 579 \N +21825 2025-05-21 16:58:02.706871+00 2025-05-21 16:58:02.706885+00 f t SUBTOTAL 0.00 1 580 \N +21826 2025-05-21 16:58:02.710266+00 2025-05-21 16:58:02.71028+00 f t DESCUENTO 0.00 2 580 \N +21827 2025-05-21 16:58:02.712671+00 2025-05-21 16:58:02.712694+00 f t TOTAL 0.00 3 580 \N +21828 2025-05-21 16:58:02.714704+00 2025-05-21 16:58:02.714713+00 f t ADELANTO 0.00 4 580 \N +21833 2025-05-21 17:09:17.662147+00 2025-05-21 17:09:17.662161+00 f t SUBTOTAL 0.00 1 581 \N +21834 2025-05-21 17:09:17.664396+00 2025-05-21 17:09:17.664405+00 f t DESCUENTO 0.00 2 581 \N +21835 2025-05-21 17:09:17.66644+00 2025-05-21 17:09:17.666452+00 f t TOTAL 0.00 3 581 \N +21836 2025-05-21 17:09:17.668468+00 2025-05-21 17:09:17.668479+00 f t ADELANTO 0.00 4 581 \N +21841 2025-05-21 17:42:49.201418+00 2025-05-21 17:42:49.201431+00 f t SUBTOTAL 0.00 1 582 \N +21842 2025-05-21 17:42:49.203697+00 2025-05-21 17:42:49.203709+00 f t DESCUENTO 0.00 2 582 \N +21843 2025-05-21 17:42:49.205494+00 2025-05-21 17:42:49.205504+00 f t TOTAL 0.00 3 582 \N +21844 2025-05-21 17:42:49.20709+00 2025-05-21 17:42:49.207097+00 f t ADELANTO 0.00 4 582 \N +21857 2025-05-21 17:42:59.541089+00 2025-05-21 17:42:59.541103+00 f t SUBTOTAL 0.00 1 583 \N +21858 2025-05-21 17:42:59.544534+00 2025-05-21 17:42:59.544547+00 f t DESCUENTO 0.00 2 583 \N +21859 2025-05-21 17:42:59.546926+00 2025-05-21 17:42:59.546935+00 f t TOTAL 0.00 3 583 \N +21860 2025-05-21 17:42:59.549212+00 2025-05-21 17:42:59.549224+00 f t ADELANTO 0.00 4 583 \N +21665 2025-05-21 14:03:52.054776+00 2025-05-21 14:03:52.054789+00 f t SUBTOTAL 0.00 1 569 \N +21666 2025-05-21 14:03:52.05774+00 2025-05-21 14:03:52.05776+00 f t DESCUENTO 0.00 2 569 \N +21667 2025-05-21 14:03:52.060026+00 2025-05-21 14:03:52.060035+00 f t TOTAL 0.00 3 569 \N +21668 2025-05-21 14:03:52.062219+00 2025-05-21 14:03:52.062231+00 f t ADELANTO 0.00 4 569 \N +27669 2025-05-24 02:41:59.291024+00 2025-05-24 02:41:59.291034+00 f t SUBTOTAL 59500.00 1 709 \N +27670 2025-05-24 02:41:59.292907+00 2025-05-24 02:41:59.292914+00 f t DESCUENTO 0.00 2 709 \N +24587 2025-05-22 15:09:51.069497+00 2025-05-22 15:09:51.069503+00 f t TOTAL 38500.00 3 640 \N +24588 2025-05-22 15:09:51.070657+00 2025-05-22 15:09:51.070663+00 f t ADELANTO 8500.00 4 640 \N +22917 2025-05-22 01:13:48.020951+00 2025-05-22 01:13:48.020959+00 f t SUBTOTAL 25000.00 1 607 \N +22918 2025-05-22 01:13:48.022682+00 2025-05-22 01:13:48.022692+00 f t DESCUENTO 0.00 2 607 \N +22919 2025-05-22 01:13:48.023983+00 2025-05-22 01:13:48.023989+00 f t TOTAL 25000.00 3 607 \N +22920 2025-05-22 01:13:48.025042+00 2025-05-22 01:13:48.025049+00 f t ADELANTO 25000.00 4 607 \N +22953 2025-05-22 01:21:04.06818+00 2025-05-22 01:21:04.06819+00 f t SUBTOTAL 88500.00 1 608 \N +22954 2025-05-22 01:21:04.070157+00 2025-05-22 01:21:04.070167+00 f t DESCUENTO 0.00 2 608 \N +22401 2025-05-21 20:23:40.883222+00 2025-05-21 20:23:40.883231+00 f t SUBTOTAL 95500.00 1 593 \N +22402 2025-05-21 20:23:40.885414+00 2025-05-21 20:23:40.885422+00 f t DESCUENTO 0.00 2 593 \N +22403 2025-05-21 20:23:40.887464+00 2025-05-21 20:23:40.887472+00 f t TOTAL 95500.00 3 593 \N +22404 2025-05-21 20:23:40.889397+00 2025-05-21 20:23:40.889409+00 f t ADELANTO 60500.00 4 593 \N +22955 2025-05-22 01:21:04.071668+00 2025-05-22 01:21:04.071675+00 f t TOTAL 88500.00 3 608 \N +22956 2025-05-22 01:21:04.072975+00 2025-05-22 01:21:04.072983+00 f t ADELANTO 53500.00 4 608 \N +22977 2025-05-22 01:22:42.939731+00 2025-05-22 01:22:42.93974+00 f t SUBTOTAL 0.00 1 611 \N +22978 2025-05-22 01:22:42.941202+00 2025-05-22 01:22:42.94121+00 f t DESCUENTO 0.00 2 611 \N +22979 2025-05-22 01:22:42.94246+00 2025-05-22 01:22:42.942468+00 f t TOTAL 0.00 3 611 \N +22980 2025-05-22 01:22:42.943748+00 2025-05-22 01:22:42.943755+00 f t ADELANTO 0.00 4 611 \N +21957 2025-05-21 17:50:21.567478+00 2025-05-21 17:50:21.567488+00 f t SUBTOTAL 0.00 1 585 \N +21958 2025-05-21 17:50:21.569282+00 2025-05-21 17:50:21.569291+00 f t DESCUENTO 0.00 2 585 \N +21959 2025-05-21 17:50:21.570761+00 2025-05-21 17:50:21.570774+00 f t TOTAL 0.00 3 585 \N +21960 2025-05-21 17:50:21.572336+00 2025-05-21 17:50:21.572345+00 f t ADELANTO 0.00 4 585 \N +21965 2025-05-21 17:59:45.424625+00 2025-05-21 17:59:45.424639+00 f t SUBTOTAL 0.00 1 584 \N +21966 2025-05-21 17:59:45.428225+00 2025-05-21 17:59:45.428236+00 f t DESCUENTO 0.00 2 584 \N +21967 2025-05-21 17:59:45.430026+00 2025-05-21 17:59:45.430036+00 f t TOTAL 0.00 3 584 \N +21968 2025-05-21 17:59:45.431728+00 2025-05-21 17:59:45.431737+00 f t ADELANTO 0.00 4 584 \N +23021 2025-05-22 01:23:56.318947+00 2025-05-22 01:23:56.318955+00 f t SUBTOTAL 133500.00 1 612 \N +23022 2025-05-22 01:23:56.320591+00 2025-05-22 01:23:56.320598+00 f t DESCUENTO 0.00 2 612 \N +23023 2025-05-22 01:23:56.321936+00 2025-05-22 01:23:56.321942+00 f t TOTAL 133500.00 3 612 \N +23024 2025-05-22 01:23:56.323167+00 2025-05-22 01:23:56.323174+00 f t ADELANTO 18500.00 4 612 \N +22549 2025-05-21 23:06:58.72852+00 2025-05-21 23:06:58.728531+00 f t SUBTOTAL 0.00 1 599 \N +22550 2025-05-21 23:06:58.730525+00 2025-05-21 23:06:58.730533+00 f t DESCUENTO 0.00 2 599 \N +22551 2025-05-21 23:06:58.731901+00 2025-05-21 23:06:58.731908+00 f t TOTAL 0.00 3 599 \N +22552 2025-05-21 23:06:58.733259+00 2025-05-21 23:06:58.733266+00 f t ADELANTO 0.00 4 599 \N +22565 2025-05-21 23:14:21.124996+00 2025-05-21 23:14:21.125005+00 f t SUBTOTAL 0.00 1 601 \N +22566 2025-05-21 23:14:21.126476+00 2025-05-21 23:14:21.126484+00 f t DESCUENTO 0.00 2 601 \N +22567 2025-05-21 23:14:21.127727+00 2025-05-21 23:14:21.127734+00 f t TOTAL 0.00 3 601 \N +22568 2025-05-21 23:14:21.128868+00 2025-05-21 23:14:21.128875+00 f t ADELANTO 0.00 4 601 \N +22029 2025-05-21 18:12:46.731915+00 2025-05-21 18:12:46.731926+00 f t SUBTOTAL 0.00 1 587 \N +22030 2025-05-21 18:12:46.73458+00 2025-05-21 18:12:46.73459+00 f t DESCUENTO 0.00 2 587 \N +22031 2025-05-21 18:12:46.736971+00 2025-05-21 18:12:46.736982+00 f t TOTAL 0.00 3 587 \N +22032 2025-05-21 18:12:46.739112+00 2025-05-21 18:12:46.739124+00 f t ADELANTO 0.00 4 587 \N +22669 2025-05-21 23:18:27.888011+00 2025-05-21 23:18:27.888023+00 f t SUBTOTAL 109000.00 1 600 \N +22670 2025-05-21 23:18:27.890071+00 2025-05-21 23:18:27.890079+00 f t DESCUENTO 0.00 2 600 \N +22671 2025-05-21 23:18:27.891308+00 2025-05-21 23:18:27.891314+00 f t TOTAL 109000.00 3 600 \N +22672 2025-05-21 23:18:27.892376+00 2025-05-21 23:18:27.892384+00 f t ADELANTO 57000.00 4 600 \N +22061 2025-05-21 18:12:54.331416+00 2025-05-21 18:12:54.331425+00 f t SUBTOTAL 59500.00 1 586 \N +22062 2025-05-21 18:12:54.333532+00 2025-05-21 18:12:54.333542+00 f t DESCUENTO 0.00 2 586 \N +22063 2025-05-21 18:12:54.335182+00 2025-05-21 18:12:54.335193+00 f t TOTAL 59500.00 3 586 \N +22064 2025-05-21 18:12:54.336732+00 2025-05-21 18:12:54.336756+00 f t ADELANTO 15500.00 4 586 \N +23181 2025-05-22 01:51:50.451974+00 2025-05-22 01:51:50.451981+00 f t SUBTOTAL 38500.00 1 616 \N +23182 2025-05-22 01:51:50.453553+00 2025-05-22 01:51:50.45356+00 f t DESCUENTO 0.00 2 616 \N +23183 2025-05-22 01:51:50.45477+00 2025-05-22 01:51:50.454775+00 f t TOTAL 38500.00 3 616 \N +22077 2025-05-21 18:13:19.568186+00 2025-05-21 18:13:19.568205+00 f t SUBTOTAL 0.00 1 588 \N +22078 2025-05-21 18:13:19.570757+00 2025-05-21 18:13:19.570775+00 f t DESCUENTO 0.00 2 588 \N +22079 2025-05-21 18:13:19.572688+00 2025-05-21 18:13:19.572696+00 f t TOTAL 0.00 3 588 \N +22080 2025-05-21 18:13:19.574267+00 2025-05-21 18:13:19.574274+00 f t ADELANTO 0.00 4 588 \N +23184 2025-05-22 01:51:50.4559+00 2025-05-22 01:51:50.455905+00 f t ADELANTO 8500.00 4 616 \N +22713 2025-05-21 23:51:19.94747+00 2025-05-21 23:51:19.947479+00 f t SUBTOTAL 46000.00 1 602 \N +22714 2025-05-21 23:51:19.949056+00 2025-05-21 23:51:19.949063+00 f t DESCUENTO 0.00 2 602 \N +22715 2025-05-21 23:51:19.950373+00 2025-05-21 23:51:19.95038+00 f t TOTAL 46000.00 3 602 \N +22716 2025-05-21 23:51:19.952608+00 2025-05-21 23:51:19.952614+00 f t ADELANTO 9500.00 4 602 \N +22105 2025-05-21 18:16:35.447215+00 2025-05-21 18:16:35.447227+00 f t SUBTOTAL 38500.00 1 589 \N +22106 2025-05-21 18:16:35.449754+00 2025-05-21 18:16:35.449768+00 f t DESCUENTO 0.00 2 589 \N +22107 2025-05-21 18:16:35.451741+00 2025-05-21 18:16:35.451752+00 f t TOTAL 38500.00 3 589 \N +22108 2025-05-21 18:16:35.4536+00 2025-05-21 18:16:35.45361+00 f t ADELANTO 8500.00 4 589 \N +22157 2025-05-21 18:51:29.899136+00 2025-05-21 18:51:29.899146+00 f t SUBTOTAL 59500.00 1 590 \N +22158 2025-05-21 18:51:29.903474+00 2025-05-21 18:51:29.903487+00 f t DESCUENTO 0.00 2 590 \N +22159 2025-05-21 18:51:29.906581+00 2025-05-21 18:51:29.906595+00 f t TOTAL 59500.00 3 590 \N +22160 2025-05-21 18:51:29.909739+00 2025-05-21 18:51:29.909751+00 f t ADELANTO 15500.00 4 590 \N +22185 2025-05-21 19:27:24.942622+00 2025-05-21 19:27:24.942631+00 f t SUBTOTAL 46000.00 1 591 \N +22186 2025-05-21 19:27:24.945519+00 2025-05-21 19:27:24.94553+00 f t DESCUENTO 0.00 2 591 \N +22187 2025-05-21 19:27:24.947906+00 2025-05-21 19:27:24.947918+00 f t TOTAL 46000.00 3 591 \N +22188 2025-05-21 19:27:24.950473+00 2025-05-21 19:27:24.950482+00 f t ADELANTO 11000.00 4 591 \N +22193 2025-05-21 19:51:00.323073+00 2025-05-21 19:51:00.323088+00 f t SUBTOTAL 0.00 1 592 \N +22194 2025-05-21 19:51:00.325638+00 2025-05-21 19:51:00.325651+00 f t DESCUENTO 0.00 2 592 \N +22195 2025-05-21 19:51:00.329266+00 2025-05-21 19:51:00.329277+00 f t TOTAL 0.00 3 592 \N +22196 2025-05-21 19:51:00.331222+00 2025-05-21 19:51:00.331234+00 f t ADELANTO 0.00 4 592 \N +32036 2025-05-26 16:46:06.305825+00 2025-05-26 16:46:06.305831+00 f t ADELANTO 10000.00 4 829 \N +112629 2025-07-04 11:41:34.934706+00 2025-07-04 11:41:34.934718+00 f t SUBTOTAL 50000.00 1 2967 \N +22429 2025-05-21 20:33:03.086166+00 2025-05-21 20:33:03.086185+00 f t SUBTOTAL 46000.00 1 595 \N +22430 2025-05-21 20:33:03.088667+00 2025-05-21 20:33:03.08868+00 f t DESCUENTO 0.00 2 595 \N +22431 2025-05-21 20:33:03.090365+00 2025-05-21 20:33:03.090373+00 f t TOTAL 46000.00 3 595 \N +22432 2025-05-21 20:33:03.092062+00 2025-05-21 20:33:03.092072+00 f t ADELANTO 9500.00 4 595 \N +22961 2025-05-22 01:22:02.483088+00 2025-05-22 01:22:02.483097+00 f t SUBTOTAL 0.00 1 609 \N +22962 2025-05-22 01:22:02.48467+00 2025-05-22 01:22:02.484677+00 f t DESCUENTO 0.00 2 609 \N +22237 2025-05-21 19:57:20.816852+00 2025-05-21 19:57:20.816866+00 f t SUBTOTAL 0.00 1 594 \N +22238 2025-05-21 19:57:20.81925+00 2025-05-21 19:57:20.81926+00 f t DESCUENTO 0.00 2 594 \N +22239 2025-05-21 19:57:20.820801+00 2025-05-21 19:57:20.820809+00 f t TOTAL 0.00 3 594 \N +22240 2025-05-21 19:57:20.822575+00 2025-05-21 19:57:20.822583+00 f t ADELANTO 0.00 4 594 \N +22963 2025-05-22 01:22:02.485851+00 2025-05-22 01:22:02.485859+00 f t TOTAL 0.00 3 609 \N +22964 2025-05-22 01:22:02.486958+00 2025-05-22 01:22:02.486964+00 f t ADELANTO 0.00 4 609 \N +22485 2025-05-21 20:46:24.038608+00 2025-05-21 20:46:24.03862+00 f t SUBTOTAL 46000.00 1 597 \N +22486 2025-05-21 20:46:24.04122+00 2025-05-21 20:46:24.041234+00 f t DESCUENTO 0.00 2 597 \N +22487 2025-05-21 20:46:24.043559+00 2025-05-21 20:46:24.043571+00 f t TOTAL 46000.00 3 597 \N +22488 2025-05-21 20:46:24.045437+00 2025-05-21 20:46:24.045449+00 f t ADELANTO 11000.00 4 597 \N +23601 2025-05-22 04:46:46.643741+00 2025-05-22 04:46:46.643749+00 f t SUBTOTAL 46000.00 1 622 \N +23602 2025-05-22 04:46:46.645596+00 2025-05-22 04:46:46.645605+00 f t DESCUENTO 0.00 2 622 \N +23603 2025-05-22 04:46:46.647258+00 2025-05-22 04:46:46.647268+00 f t TOTAL 46000.00 3 622 \N +23604 2025-05-22 04:46:46.648598+00 2025-05-22 04:46:46.648604+00 f t ADELANTO 11000.00 4 622 \N +23617 2025-05-22 11:24:39.871608+00 2025-05-22 11:24:39.871617+00 f t SUBTOTAL 0.00 1 624 \N +23618 2025-05-22 11:24:39.873267+00 2025-05-22 11:24:39.873273+00 f t DESCUENTO 0.00 2 624 \N +23619 2025-05-22 11:24:39.874515+00 2025-05-22 11:24:39.874521+00 f t TOTAL 0.00 3 624 \N +23620 2025-05-22 11:24:39.875661+00 2025-05-22 11:24:39.875668+00 f t ADELANTO 0.00 4 624 \N +23029 2025-05-22 01:24:21.081881+00 2025-05-22 01:24:21.081891+00 f t SUBTOTAL 0.00 1 613 \N +23030 2025-05-22 01:24:21.083427+00 2025-05-22 01:24:21.083434+00 f t DESCUENTO 0.00 2 613 \N +23031 2025-05-22 01:24:21.084715+00 2025-05-22 01:24:21.084722+00 f t TOTAL 0.00 3 613 \N +23032 2025-05-22 01:24:21.085965+00 2025-05-22 01:24:21.08597+00 f t ADELANTO 0.00 4 613 \N +23037 2025-05-22 01:24:56.321402+00 2025-05-22 01:24:56.32141+00 f t SUBTOTAL 0.00 1 610 \N +23038 2025-05-22 01:24:56.323388+00 2025-05-22 01:24:56.323395+00 f t DESCUENTO 0.00 2 610 \N +23039 2025-05-22 01:24:56.324846+00 2025-05-22 01:24:56.324852+00 f t TOTAL 0.00 3 610 \N +23040 2025-05-22 01:24:56.326149+00 2025-05-22 01:24:56.326155+00 f t ADELANTO 0.00 4 610 \N +23649 2025-05-22 11:27:15.853659+00 2025-05-22 11:27:15.853672+00 f t SUBTOTAL 38500.00 1 623 \N +23650 2025-05-22 11:27:15.855227+00 2025-05-22 11:27:15.855234+00 f t DESCUENTO 0.00 2 623 \N +23651 2025-05-22 11:27:15.856492+00 2025-05-22 11:27:15.856498+00 f t TOTAL 38500.00 3 623 \N +23652 2025-05-22 11:27:15.857402+00 2025-05-22 11:27:15.857407+00 f t ADELANTO 8500.00 4 623 \N +23677 2025-05-22 11:53:23.341718+00 2025-05-22 11:53:23.341727+00 f t SUBTOTAL 59500.00 1 625 \N +23678 2025-05-22 11:53:23.343486+00 2025-05-22 11:53:23.343493+00 f t DESCUENTO 0.00 2 625 \N +23679 2025-05-22 11:53:23.344712+00 2025-05-22 11:53:23.344718+00 f t TOTAL 59500.00 3 625 \N +23680 2025-05-22 11:53:23.345837+00 2025-05-22 11:53:23.345842+00 f t ADELANTO 15500.00 4 625 \N +23081 2025-05-22 01:28:43.609233+00 2025-05-22 01:28:43.609243+00 f t SUBTOTAL 0.00 1 614 \N +23082 2025-05-22 01:28:43.611292+00 2025-05-22 01:28:43.611302+00 f t DESCUENTO 0.00 2 614 \N +23083 2025-05-22 01:28:43.612585+00 2025-05-22 01:28:43.612592+00 f t TOTAL 0.00 3 614 \N +23084 2025-05-22 01:28:43.613673+00 2025-05-22 01:28:43.613679+00 f t ADELANTO 0.00 4 614 \N +23133 2025-05-22 01:32:43.445915+00 2025-05-22 01:32:43.445925+00 f t SUBTOTAL 38500.00 1 615 \N +23134 2025-05-22 01:32:43.448046+00 2025-05-22 01:32:43.448058+00 f t DESCUENTO 0.00 2 615 \N +23135 2025-05-22 01:32:43.449797+00 2025-05-22 01:32:43.449808+00 f t TOTAL 38500.00 3 615 \N +23136 2025-05-22 01:32:43.451203+00 2025-05-22 01:32:43.451213+00 f t ADELANTO 8500.00 4 615 \N +23189 2025-05-22 01:53:33.550506+00 2025-05-22 01:53:33.550516+00 f t SUBTOTAL 0.00 1 617 \N +23190 2025-05-22 01:53:33.55189+00 2025-05-22 01:53:33.551897+00 f t DESCUENTO 0.00 2 617 \N +23191 2025-05-22 01:53:33.552955+00 2025-05-22 01:53:33.552961+00 f t TOTAL 0.00 3 617 \N +23192 2025-05-22 01:53:33.553975+00 2025-05-22 01:53:33.553981+00 f t ADELANTO 0.00 4 617 \N +22721 2025-05-21 23:56:35.122236+00 2025-05-21 23:56:35.122249+00 f t SUBTOTAL 0.00 1 603 \N +22722 2025-05-21 23:56:35.124346+00 2025-05-21 23:56:35.124359+00 f t DESCUENTO 0.00 2 603 \N +22723 2025-05-21 23:56:35.125936+00 2025-05-21 23:56:35.125946+00 f t TOTAL 0.00 3 603 \N +22724 2025-05-21 23:56:35.127499+00 2025-05-21 23:56:35.127506+00 f t ADELANTO 0.00 4 603 \N +22757 2025-05-22 00:19:10.994071+00 2025-05-22 00:19:10.99408+00 f t SUBTOTAL 95500.00 1 604 \N +22758 2025-05-22 00:19:10.996399+00 2025-05-22 00:19:10.996411+00 f t DESCUENTO 0.00 2 604 \N +22759 2025-05-22 00:19:10.99889+00 2025-05-22 00:19:10.9989+00 f t TOTAL 95500.00 3 604 \N +22760 2025-05-22 00:19:11.000849+00 2025-05-22 00:19:11.000857+00 f t ADELANTO 60500.00 4 604 \N +23229 2025-05-22 02:15:18.097283+00 2025-05-22 02:15:18.097292+00 f t SUBTOTAL 46000.00 1 618 \N +23230 2025-05-22 02:15:18.099221+00 2025-05-22 02:15:18.099231+00 f t DESCUENTO 0.00 2 618 \N +23231 2025-05-22 02:15:18.100591+00 2025-05-22 02:15:18.100598+00 f t TOTAL 46000.00 3 618 \N +23232 2025-05-22 02:15:18.102057+00 2025-05-22 02:15:18.102065+00 f t ADELANTO 9500.00 4 618 \N +22861 2025-05-22 00:46:47.670582+00 2025-05-22 00:46:47.670593+00 f t SUBTOTAL 46000.00 1 605 \N +22862 2025-05-22 00:46:47.672621+00 2025-05-22 00:46:47.672633+00 f t DESCUENTO 0.00 2 605 \N +22863 2025-05-22 00:46:47.674783+00 2025-05-22 00:46:47.674791+00 f t TOTAL 46000.00 3 605 \N +22864 2025-05-22 00:46:47.676739+00 2025-05-22 00:46:47.676749+00 f t ADELANTO 9500.00 4 605 \N +22869 2025-05-22 00:46:49.552143+00 2025-05-22 00:46:49.552155+00 f t SUBTOTAL 46000.00 1 606 \N +22870 2025-05-22 00:46:49.55451+00 2025-05-22 00:46:49.554522+00 f t DESCUENTO 0.00 2 606 \N +22871 2025-05-22 00:46:49.556825+00 2025-05-22 00:46:49.556834+00 f t TOTAL 46000.00 3 606 \N +22872 2025-05-22 00:46:49.558593+00 2025-05-22 00:46:49.5586+00 f t ADELANTO 11000.00 4 606 \N +23265 2025-05-22 02:30:45.552659+00 2025-05-22 02:30:45.552668+00 f t SUBTOTAL 46000.00 1 619 \N +23266 2025-05-22 02:30:45.554355+00 2025-05-22 02:30:45.554365+00 f t DESCUENTO 0.00 2 619 \N +23267 2025-05-22 02:30:45.555656+00 2025-05-22 02:30:45.555663+00 f t TOTAL 46000.00 3 619 \N +23268 2025-05-22 02:30:45.55698+00 2025-05-22 02:30:45.556985+00 f t ADELANTO 9500.00 4 619 \N +23273 2025-05-22 02:50:05.420997+00 2025-05-22 02:50:05.421012+00 f t SUBTOTAL 0.00 1 620 \N +23274 2025-05-22 02:50:05.424496+00 2025-05-22 02:50:05.424509+00 f t DESCUENTO 0.00 2 620 \N +23275 2025-05-22 02:50:05.427718+00 2025-05-22 02:50:05.427734+00 f t TOTAL 0.00 3 620 \N +23276 2025-05-22 02:50:05.430457+00 2025-05-22 02:50:05.430471+00 f t ADELANTO 0.00 4 620 \N +27671 2025-05-24 02:41:59.294126+00 2025-05-24 02:41:59.294132+00 f t TOTAL 59500.00 3 709 \N +27672 2025-05-24 02:41:59.295141+00 2025-05-24 02:41:59.295146+00 f t ADELANTO 15500.00 4 709 \N +24593 2025-05-22 16:19:11.639618+00 2025-05-22 16:19:11.639628+00 f t SUBTOTAL 0.00 1 641 \N +24594 2025-05-22 16:19:11.641096+00 2025-05-22 16:19:11.641102+00 f t DESCUENTO 0.00 2 641 \N +24595 2025-05-22 16:19:11.64215+00 2025-05-22 16:19:11.642155+00 f t TOTAL 0.00 3 641 \N +24596 2025-05-22 16:19:11.643313+00 2025-05-22 16:19:11.64332+00 f t ADELANTO 0.00 4 641 \N +24609 2025-05-22 16:36:40.794525+00 2025-05-22 16:36:40.794536+00 f t SUBTOTAL 0.00 1 643 \N +24610 2025-05-22 16:36:40.796148+00 2025-05-22 16:36:40.796158+00 f t DESCUENTO 0.00 2 643 \N +24611 2025-05-22 16:36:40.797495+00 2025-05-22 16:36:40.797503+00 f t TOTAL 0.00 3 643 \N +24612 2025-05-22 16:36:40.798789+00 2025-05-22 16:36:40.798798+00 f t ADELANTO 0.00 4 643 \N +24673 2025-05-22 18:01:11.256723+00 2025-05-22 18:01:11.256736+00 f t SUBTOTAL 0.00 1 645 \N +24674 2025-05-22 18:01:11.258205+00 2025-05-22 18:01:11.258212+00 f t DESCUENTO 0.00 2 645 \N +24675 2025-05-22 18:01:11.259519+00 2025-05-22 18:01:11.259526+00 f t TOTAL 0.00 3 645 \N +24676 2025-05-22 18:01:11.260899+00 2025-05-22 18:01:11.260905+00 f t ADELANTO 0.00 4 645 \N +24689 2025-05-22 18:02:51.294724+00 2025-05-22 18:02:51.294735+00 f t SUBTOTAL 0.00 1 647 \N +24690 2025-05-22 18:02:51.297152+00 2025-05-22 18:02:51.297166+00 f t DESCUENTO 0.00 2 647 \N +24691 2025-05-22 18:02:51.29928+00 2025-05-22 18:02:51.29929+00 f t TOTAL 0.00 3 647 \N +24692 2025-05-22 18:02:51.301929+00 2025-05-22 18:02:51.301941+00 f t ADELANTO 0.00 4 647 \N +24729 2025-05-22 18:39:02.769456+00 2025-05-22 18:39:02.769471+00 f t SUBTOTAL 0.00 1 649 \N +24730 2025-05-22 18:39:02.772231+00 2025-05-22 18:39:02.772244+00 f t DESCUENTO 0.00 2 649 \N +24731 2025-05-22 18:39:02.774821+00 2025-05-22 18:39:02.774835+00 f t TOTAL 0.00 3 649 \N +24732 2025-05-22 18:39:02.777642+00 2025-05-22 18:39:02.777656+00 f t ADELANTO 0.00 4 649 \N +24757 2025-05-22 18:44:28.718468+00 2025-05-22 18:44:28.718477+00 f t SUBTOTAL 25000.00 1 650 \N +24758 2025-05-22 18:44:28.720579+00 2025-05-22 18:44:28.720587+00 f t DESCUENTO 0.00 2 650 \N +24759 2025-05-22 18:44:28.722069+00 2025-05-22 18:44:28.722075+00 f t TOTAL 25000.00 3 650 \N +24760 2025-05-22 18:44:28.723187+00 2025-05-22 18:44:28.723193+00 f t ADELANTO 25000.00 4 650 \N +25377 2025-05-23 01:07:53.309703+00 2025-05-23 01:07:53.309715+00 f t SUBTOTAL 113500.00 1 659 \N +25378 2025-05-23 01:07:53.311992+00 2025-05-23 01:07:53.312003+00 f t DESCUENTO 0.00 2 659 \N +25379 2025-05-23 01:07:53.313592+00 2025-05-23 01:07:53.313602+00 f t TOTAL 113500.00 3 659 \N +25380 2025-05-23 01:07:53.31495+00 2025-05-23 01:07:53.314958+00 f t ADELANTO 23500.00 4 659 \N +24785 2025-05-22 18:46:33.799128+00 2025-05-22 18:46:33.799136+00 f t SUBTOTAL 46000.00 1 651 \N +24786 2025-05-22 18:46:33.800643+00 2025-05-22 18:46:33.800649+00 f t DESCUENTO 0.00 2 651 \N +24787 2025-05-22 18:46:33.801705+00 2025-05-22 18:46:33.80171+00 f t TOTAL 46000.00 3 651 \N +24788 2025-05-22 18:46:33.804019+00 2025-05-22 18:46:33.804025+00 f t ADELANTO 11000.00 4 651 \N +23733 2025-05-22 12:01:32.308725+00 2025-05-22 12:01:32.308733+00 f t SUBTOTAL 0.00 1 626 \N +23734 2025-05-22 12:01:32.310449+00 2025-05-22 12:01:32.310455+00 f t DESCUENTO 0.00 2 626 \N +23735 2025-05-22 12:01:32.311557+00 2025-05-22 12:01:32.311563+00 f t TOTAL 0.00 3 626 \N +23736 2025-05-22 12:01:32.312722+00 2025-05-22 12:01:32.312728+00 f t ADELANTO 0.00 4 626 \N +24877 2025-05-22 19:07:17.758109+00 2025-05-22 19:07:17.758118+00 f t SUBTOTAL 77000.00 1 652 \N +24878 2025-05-22 19:07:17.759674+00 2025-05-22 19:07:17.759681+00 f t DESCUENTO 0.00 2 652 \N +24317 2025-05-22 14:24:54.26287+00 2025-05-22 14:24:54.262879+00 f t SUBTOTAL 92000.00 1 636 \N +24318 2025-05-22 14:24:54.264573+00 2025-05-22 14:24:54.26458+00 f t DESCUENTO 0.00 2 636 \N +24319 2025-05-22 14:24:54.265644+00 2025-05-22 14:24:54.26565+00 f t TOTAL 92000.00 3 636 \N +24320 2025-05-22 14:24:54.266558+00 2025-05-22 14:24:54.266563+00 f t ADELANTO 22000.00 4 636 \N +24879 2025-05-22 19:07:17.761129+00 2025-05-22 19:07:17.761135+00 f t TOTAL 77000.00 3 652 \N +24880 2025-05-22 19:07:17.76231+00 2025-05-22 19:07:17.762318+00 f t ADELANTO 17000.00 4 652 \N +25557 2025-05-23 02:14:46.423246+00 2025-05-23 02:14:46.423261+00 f t SUBTOTAL 77000.00 1 662 \N +25558 2025-05-23 02:14:46.425864+00 2025-05-23 02:14:46.425878+00 f t DESCUENTO 0.00 2 662 \N +25559 2025-05-23 02:14:46.427851+00 2025-05-23 02:14:46.427861+00 f t TOTAL 77000.00 3 662 \N +25560 2025-05-23 02:14:46.430033+00 2025-05-23 02:14:46.430045+00 f t ADELANTO 17000.00 4 662 \N +24961 2025-05-22 20:10:00.733007+00 2025-05-22 20:10:00.733021+00 f t SUBTOTAL 46000.00 1 653 \N +24962 2025-05-22 20:10:00.735477+00 2025-05-22 20:10:00.735487+00 f t DESCUENTO 0.00 2 653 \N +24963 2025-05-22 20:10:00.737149+00 2025-05-22 20:10:00.737159+00 f t TOTAL 46000.00 3 653 \N +24964 2025-05-22 20:10:00.738845+00 2025-05-22 20:10:00.738852+00 f t ADELANTO 9500.00 4 653 \N +23801 2025-05-22 12:21:38.377089+00 2025-05-22 12:21:38.377098+00 f t SUBTOTAL 0.00 1 627 \N +23802 2025-05-22 12:21:38.379056+00 2025-05-22 12:21:38.379062+00 f t DESCUENTO 0.00 2 627 \N +23803 2025-05-22 12:21:38.380201+00 2025-05-22 12:21:38.380207+00 f t TOTAL 0.00 3 627 \N +23804 2025-05-22 12:21:38.381224+00 2025-05-22 12:21:38.381229+00 f t ADELANTO 0.00 4 627 \N +23821 2025-05-22 12:22:03.305464+00 2025-05-22 12:22:03.305472+00 f t SUBTOTAL 46000.00 1 628 \N +23822 2025-05-22 12:22:03.307195+00 2025-05-22 12:22:03.307203+00 f t DESCUENTO 0.00 2 628 \N +23823 2025-05-22 12:22:03.308411+00 2025-05-22 12:22:03.308417+00 f t TOTAL 46000.00 3 628 \N +23824 2025-05-22 12:22:03.309521+00 2025-05-22 12:22:03.309527+00 f t ADELANTO 11000.00 4 628 \N +23849 2025-05-22 12:41:54.266244+00 2025-05-22 12:41:54.266255+00 f t SUBTOTAL 46000.00 1 629 \N +23850 2025-05-22 12:41:54.267912+00 2025-05-22 12:41:54.267919+00 f t DESCUENTO 0.00 2 629 \N +23851 2025-05-22 12:41:54.269026+00 2025-05-22 12:41:54.269035+00 f t TOTAL 46000.00 3 629 \N +23852 2025-05-22 12:41:54.270056+00 2025-05-22 12:41:54.270061+00 f t ADELANTO 11000.00 4 629 \N +24489 2025-05-22 15:03:56.698629+00 2025-05-22 15:03:56.698645+00 f t SUBTOTAL 38500.00 1 639 \N +24490 2025-05-22 15:03:56.700436+00 2025-05-22 15:03:56.700443+00 f t DESCUENTO 0.00 2 639 \N +24491 2025-05-22 15:03:56.701617+00 2025-05-22 15:03:56.701623+00 f t TOTAL 38500.00 3 639 \N +24492 2025-05-22 15:03:56.702665+00 2025-05-22 15:03:56.70267+00 f t ADELANTO 8500.00 4 639 \N +23865 2025-05-22 12:52:42.080324+00 2025-05-22 12:52:42.080333+00 f t SUBTOTAL 0.00 1 630 \N +23866 2025-05-22 12:52:42.082636+00 2025-05-22 12:52:42.082647+00 f t DESCUENTO 0.00 2 630 \N +23867 2025-05-22 12:52:42.085207+00 2025-05-22 12:52:42.085214+00 f t TOTAL 0.00 3 630 \N +23868 2025-05-22 12:52:42.086764+00 2025-05-22 12:52:42.086772+00 f t ADELANTO 0.00 4 630 \N +23873 2025-05-22 12:58:19.988606+00 2025-05-22 12:58:19.988614+00 f t SUBTOTAL 0.00 1 631 \N +23874 2025-05-22 12:58:19.989711+00 2025-05-22 12:58:19.989717+00 f t DESCUENTO 0.00 2 631 \N +23875 2025-05-22 12:58:19.99074+00 2025-05-22 12:58:19.990747+00 f t TOTAL 0.00 3 631 \N +23876 2025-05-22 12:58:19.991731+00 2025-05-22 12:58:19.991737+00 f t ADELANTO 0.00 4 631 \N +25109 2025-05-22 21:47:44.900146+00 2025-05-22 21:47:44.900153+00 f t SUBTOTAL 38500.00 1 655 \N +25110 2025-05-22 21:47:44.901763+00 2025-05-22 21:47:44.901773+00 f t DESCUENTO 0.00 2 655 \N +30545 2025-05-25 22:30:58.127965+00 2025-05-25 22:30:58.127976+00 f t SUBTOTAL 119000.00 1 796 \N +25817 2025-05-23 10:54:17.403341+00 2025-05-23 10:54:17.403386+00 f t SUBTOTAL 46000.00 1 670 \N +24601 2025-05-22 16:27:41.472999+00 2025-05-22 16:27:41.473008+00 f t SUBTOTAL 0.00 1 642 \N +24602 2025-05-22 16:27:41.474494+00 2025-05-22 16:27:41.474501+00 f t DESCUENTO 0.00 2 642 \N +24603 2025-05-22 16:27:41.475634+00 2025-05-22 16:27:41.47564+00 f t TOTAL 0.00 3 642 \N +23909 2025-05-22 13:09:59.328897+00 2025-05-22 13:09:59.328905+00 f t SUBTOTAL 46000.00 1 632 \N +23910 2025-05-22 13:09:59.330666+00 2025-05-22 13:09:59.330671+00 f t DESCUENTO 0.00 2 632 \N +23911 2025-05-22 13:09:59.331737+00 2025-05-22 13:09:59.331742+00 f t TOTAL 46000.00 3 632 \N +23912 2025-05-22 13:09:59.332877+00 2025-05-22 13:09:59.332883+00 f t ADELANTO 9500.00 4 632 \N +24604 2025-05-22 16:27:41.476633+00 2025-05-22 16:27:41.476638+00 f t ADELANTO 0.00 4 642 \N +25818 2025-05-23 10:54:17.406158+00 2025-05-23 10:54:17.40617+00 f t DESCUENTO 0.00 2 670 \N +25819 2025-05-23 10:54:17.4079+00 2025-05-23 10:54:17.407912+00 f t TOTAL 46000.00 3 670 \N +25820 2025-05-23 10:54:17.409574+00 2025-05-23 10:54:17.409585+00 f t ADELANTO 9500.00 4 670 \N +26433 2025-05-23 15:17:09.404713+00 2025-05-23 15:17:09.404723+00 f t SUBTOTAL 38500.00 1 679 \N +26434 2025-05-23 15:17:09.406757+00 2025-05-23 15:17:09.406767+00 f t DESCUENTO 0.00 2 679 \N +26435 2025-05-23 15:17:09.408679+00 2025-05-23 15:17:09.408689+00 f t TOTAL 38500.00 3 679 \N +26436 2025-05-23 15:17:09.410413+00 2025-05-23 15:17:09.410421+00 f t ADELANTO 8500.00 4 679 \N +25857 2025-05-23 12:35:21.921032+00 2025-05-23 12:35:21.921041+00 f t SUBTOTAL 0.00 1 672 \N +25858 2025-05-23 12:35:21.92263+00 2025-05-23 12:35:21.922637+00 f t DESCUENTO 0.00 2 672 \N +25859 2025-05-23 12:35:21.924041+00 2025-05-23 12:35:21.924047+00 f t TOTAL 0.00 3 672 \N +25860 2025-05-23 12:35:21.925118+00 2025-05-23 12:35:21.925125+00 f t ADELANTO 0.00 4 672 \N +24665 2025-05-22 17:19:49.082773+00 2025-05-22 17:19:49.082783+00 f t SUBTOTAL 119000.00 1 644 \N +24666 2025-05-22 17:19:49.084596+00 2025-05-22 17:19:49.084607+00 f t DESCUENTO 0.00 2 644 \N +24667 2025-05-22 17:19:49.08615+00 2025-05-22 17:19:49.086156+00 f t TOTAL 119000.00 3 644 \N +24668 2025-05-22 17:19:49.08741+00 2025-05-22 17:19:49.087416+00 f t ADELANTO 31000.00 4 644 \N +24681 2025-05-22 18:02:09.722533+00 2025-05-22 18:02:09.722548+00 f t SUBTOTAL 0.00 1 646 \N +24682 2025-05-22 18:02:09.726218+00 2025-05-22 18:02:09.72623+00 f t DESCUENTO 0.00 2 646 \N +24683 2025-05-22 18:02:09.728405+00 2025-05-22 18:02:09.728417+00 f t TOTAL 0.00 3 646 \N +24684 2025-05-22 18:02:09.73032+00 2025-05-22 18:02:09.730331+00 f t ADELANTO 0.00 4 646 \N +25317 2025-05-23 01:05:28.074926+00 2025-05-23 01:05:28.074936+00 f t SUBTOTAL 46000.00 1 658 \N +25318 2025-05-23 01:05:28.077693+00 2025-05-23 01:05:28.0777+00 f t DESCUENTO 0.00 2 658 \N +25319 2025-05-23 01:05:28.079322+00 2025-05-23 01:05:28.07933+00 f t TOTAL 46000.00 3 658 \N +25320 2025-05-23 01:05:28.081014+00 2025-05-23 01:05:28.081021+00 f t ADELANTO 9500.00 4 658 \N +23961 2025-05-22 13:58:46.501212+00 2025-05-22 13:58:46.501221+00 f t SUBTOTAL 59500.00 1 633 \N +23962 2025-05-22 13:58:46.503115+00 2025-05-22 13:58:46.503123+00 f t DESCUENTO 0.00 2 633 \N +23963 2025-05-22 13:58:46.504654+00 2025-05-22 13:58:46.504662+00 f t TOTAL 59500.00 3 633 \N +23964 2025-05-22 13:58:46.505938+00 2025-05-22 13:58:46.505944+00 f t ADELANTO 15500.00 4 633 \N +24721 2025-05-22 18:30:29.815547+00 2025-05-22 18:30:29.815557+00 f t SUBTOTAL 95000.00 1 648 \N +24722 2025-05-22 18:30:29.81734+00 2025-05-22 18:30:29.817348+00 f t DESCUENTO 0.00 2 648 \N +24723 2025-05-22 18:30:29.818592+00 2025-05-22 18:30:29.818599+00 f t TOTAL 95000.00 3 648 \N +24724 2025-05-22 18:30:29.819837+00 2025-05-22 18:30:29.819843+00 f t ADELANTO 10000.00 4 648 \N +25385 2025-05-23 01:22:52.506893+00 2025-05-23 01:22:52.506906+00 f t SUBTOTAL 0.00 1 660 \N +25386 2025-05-23 01:22:52.508568+00 2025-05-23 01:22:52.508579+00 f t DESCUENTO 0.00 2 660 \N +25387 2025-05-23 01:22:52.509996+00 2025-05-23 01:22:52.510005+00 f t TOTAL 0.00 3 660 \N +25388 2025-05-23 01:22:52.511349+00 2025-05-23 01:22:52.511396+00 f t ADELANTO 0.00 4 660 \N +25449 2025-05-23 02:08:16.198547+00 2025-05-23 02:08:16.198557+00 f t SUBTOTAL 46000.00 1 661 \N +25450 2025-05-23 02:08:16.200083+00 2025-05-23 02:08:16.20009+00 f t DESCUENTO 0.00 2 661 \N +25451 2025-05-23 02:08:16.201234+00 2025-05-23 02:08:16.20124+00 f t TOTAL 46000.00 3 661 \N +25452 2025-05-23 02:08:16.202216+00 2025-05-23 02:08:16.202221+00 f t ADELANTO 9500.00 4 661 \N +24013 2025-05-22 14:00:54.786211+00 2025-05-22 14:00:54.78622+00 f t SUBTOTAL 59500.00 1 634 \N +24014 2025-05-22 14:00:54.788105+00 2025-05-22 14:00:54.788113+00 f t DESCUENTO 0.00 2 634 \N +24015 2025-05-22 14:00:54.789706+00 2025-05-22 14:00:54.789714+00 f t TOTAL 59500.00 3 634 \N +24016 2025-05-22 14:00:54.791116+00 2025-05-22 14:00:54.791125+00 f t ADELANTO 15500.00 4 634 \N +25565 2025-05-23 02:20:32.717625+00 2025-05-23 02:20:32.717635+00 f t SUBTOTAL 0.00 1 663 \N +25566 2025-05-23 02:20:32.71931+00 2025-05-23 02:20:32.719318+00 f t DESCUENTO 0.00 2 663 \N +25567 2025-05-23 02:20:32.72082+00 2025-05-23 02:20:32.720827+00 f t TOTAL 0.00 3 663 \N +25568 2025-05-23 02:20:32.72228+00 2025-05-23 02:20:32.72229+00 f t ADELANTO 0.00 4 663 \N +25621 2025-05-23 02:54:54.084256+00 2025-05-23 02:54:54.084271+00 f t SUBTOTAL 38500.00 1 665 \N +25622 2025-05-23 02:54:54.086408+00 2025-05-23 02:54:54.086419+00 f t DESCUENTO 0.00 2 665 \N +25623 2025-05-23 02:54:54.088066+00 2025-05-23 02:54:54.088077+00 f t TOTAL 38500.00 3 665 \N +25624 2025-05-23 02:54:54.089441+00 2025-05-23 02:54:54.089448+00 f t ADELANTO 8500.00 4 665 \N +24393 2025-05-22 14:26:02.71976+00 2025-05-22 14:26:02.71977+00 f t SUBTOTAL 0.00 1 637 \N +24394 2025-05-22 14:26:02.722565+00 2025-05-22 14:26:02.722574+00 f t DESCUENTO 0.00 2 637 \N +24395 2025-05-22 14:26:02.724619+00 2025-05-22 14:26:02.72463+00 f t TOTAL 0.00 3 637 \N +24396 2025-05-22 14:26:02.727178+00 2025-05-22 14:26:02.72719+00 f t ADELANTO 0.00 4 637 \N +25657 2025-05-23 03:57:19.708599+00 2025-05-23 03:57:19.70861+00 f t SUBTOTAL 59500.00 1 666 \N +25658 2025-05-23 03:57:19.710639+00 2025-05-23 03:57:19.710648+00 f t DESCUENTO 0.00 2 666 \N +24421 2025-05-22 14:34:31.948762+00 2025-05-22 14:34:31.948771+00 f t SUBTOTAL 57000.00 1 638 \N +24422 2025-05-22 14:34:31.950518+00 2025-05-22 14:34:31.950526+00 f t DESCUENTO 0.00 2 638 \N +24423 2025-05-22 14:34:31.951926+00 2025-05-22 14:34:31.951934+00 f t TOTAL 57000.00 3 638 \N +24424 2025-05-22 14:34:31.953227+00 2025-05-22 14:34:31.953235+00 f t ADELANTO 12000.00 4 638 \N +25659 2025-05-23 03:57:19.712109+00 2025-05-23 03:57:19.712117+00 f t TOTAL 59500.00 3 666 \N +25660 2025-05-23 03:57:19.713422+00 2025-05-23 03:57:19.713428+00 f t ADELANTO 15500.00 4 666 \N +25773 2025-05-23 10:37:20.728051+00 2025-05-23 10:37:20.728061+00 f t SUBTOTAL 0.00 1 669 \N +25774 2025-05-23 10:37:20.729738+00 2025-05-23 10:37:20.729746+00 f t DESCUENTO 0.00 2 669 \N +25057 2025-05-22 20:51:37.651268+00 2025-05-22 20:51:37.651277+00 f t SUBTOTAL 59500.00 1 654 \N +25058 2025-05-22 20:51:37.653103+00 2025-05-22 20:51:37.65311+00 f t DESCUENTO 0.00 2 654 \N +25059 2025-05-22 20:51:37.654551+00 2025-05-22 20:51:37.654557+00 f t TOTAL 59500.00 3 654 \N +25060 2025-05-22 20:51:37.655745+00 2025-05-22 20:51:37.655751+00 f t ADELANTO 15500.00 4 654 \N +25775 2025-05-23 10:37:20.733443+00 2025-05-23 10:37:20.733451+00 f t TOTAL 0.00 3 669 \N +25776 2025-05-23 10:37:20.734868+00 2025-05-23 10:37:20.734878+00 f t ADELANTO 0.00 4 669 \N +25111 2025-05-22 21:47:44.903002+00 2025-05-22 21:47:44.903008+00 f t TOTAL 38500.00 3 655 \N +25112 2025-05-22 21:47:44.904284+00 2025-05-22 21:47:44.904291+00 f t ADELANTO 8500.00 4 655 \N +30546 2025-05-25 22:30:58.130428+00 2025-05-25 22:30:58.130441+00 f t DESCUENTO 0.00 2 796 \N +30547 2025-05-25 22:30:58.13186+00 2025-05-25 22:30:58.131868+00 f t TOTAL 119000.00 3 796 \N +27009 2025-05-23 18:10:42.917243+00 2025-05-23 18:10:42.917256+00 f t SUBTOTAL 38500.00 1 688 \N +27010 2025-05-23 18:10:42.919581+00 2025-05-23 18:10:42.919592+00 f t DESCUENTO 0.00 2 688 \N +27011 2025-05-23 18:10:42.921887+00 2025-05-23 18:10:42.9219+00 f t TOTAL 38500.00 3 688 \N +27012 2025-05-23 18:10:42.924106+00 2025-05-23 18:10:42.924119+00 f t ADELANTO 8500.00 4 688 \N +25229 2025-05-23 00:33:58.773112+00 2025-05-23 00:33:58.773125+00 f t SUBTOTAL 70000.00 1 656 \N +25230 2025-05-23 00:33:58.775314+00 2025-05-23 00:33:58.775324+00 f t DESCUENTO 0.00 2 656 \N +25231 2025-05-23 00:33:58.777623+00 2025-05-23 00:33:58.777631+00 f t TOTAL 70000.00 3 656 \N +25232 2025-05-23 00:33:58.779328+00 2025-05-23 00:33:58.779336+00 f t ADELANTO 10000.00 4 656 \N +25257 2025-05-23 01:02:22.526066+00 2025-05-23 01:02:22.526079+00 f t SUBTOTAL 46000.00 1 657 \N +25258 2025-05-23 01:02:22.528571+00 2025-05-23 01:02:22.528583+00 f t DESCUENTO 0.00 2 657 \N +25259 2025-05-23 01:02:22.530234+00 2025-05-23 01:02:22.530244+00 f t TOTAL 46000.00 3 657 \N +25260 2025-05-23 01:02:22.531693+00 2025-05-23 01:02:22.531701+00 f t ADELANTO 9500.00 4 657 \N +26465 2025-05-23 15:18:47.123279+00 2025-05-23 15:18:47.123289+00 f t SUBTOTAL 64500.00 1 678 \N +25849 2025-05-23 11:29:14.320542+00 2025-05-23 11:29:14.320556+00 f t SUBTOTAL 0.00 1 671 \N +25850 2025-05-23 11:29:14.323419+00 2025-05-23 11:29:14.323431+00 f t DESCUENTO 0.00 2 671 \N +25851 2025-05-23 11:29:14.325815+00 2025-05-23 11:29:14.325828+00 f t TOTAL 0.00 3 671 \N +25852 2025-05-23 11:29:14.327992+00 2025-05-23 11:29:14.328004+00 f t ADELANTO 0.00 4 671 \N +26466 2025-05-23 15:18:47.125385+00 2025-05-23 15:18:47.125397+00 f t DESCUENTO 0.00 2 678 \N +26467 2025-05-23 15:18:47.127434+00 2025-05-23 15:18:47.127447+00 f t TOTAL 64500.00 3 678 \N +26468 2025-05-23 15:18:47.129213+00 2025-05-23 15:18:47.129221+00 f t ADELANTO 15000.00 4 678 \N +26493 2025-05-23 15:49:42.618408+00 2025-05-23 15:49:42.618422+00 f t SUBTOTAL 38500.00 1 680 \N +26494 2025-05-23 15:49:42.620369+00 2025-05-23 15:49:42.620377+00 f t DESCUENTO 0.00 2 680 \N +26495 2025-05-23 15:49:42.622684+00 2025-05-23 15:49:42.622692+00 f t TOTAL 38500.00 3 680 \N +26496 2025-05-23 15:49:42.624185+00 2025-05-23 15:49:42.624192+00 f t ADELANTO 8500.00 4 680 \N +26509 2025-05-23 16:19:51.807419+00 2025-05-23 16:19:51.807431+00 f t SUBTOTAL 0.00 1 682 \N +26510 2025-05-23 16:19:51.809851+00 2025-05-23 16:19:51.809863+00 f t DESCUENTO 0.00 2 682 \N +26511 2025-05-23 16:19:51.812355+00 2025-05-23 16:19:51.812367+00 f t TOTAL 0.00 3 682 \N +26512 2025-05-23 16:19:51.81443+00 2025-05-23 16:19:51.814442+00 f t ADELANTO 0.00 4 682 \N +26537 2025-05-23 16:43:48.362321+00 2025-05-23 16:43:48.36233+00 f t SUBTOTAL 59500.00 1 683 \N +26538 2025-05-23 16:43:48.36387+00 2025-05-23 16:43:48.363878+00 f t DESCUENTO 0.00 2 683 \N +26539 2025-05-23 16:43:48.365014+00 2025-05-23 16:43:48.36502+00 f t TOTAL 59500.00 3 683 \N +26540 2025-05-23 16:43:48.366039+00 2025-05-23 16:43:48.366044+00 f t ADELANTO 15500.00 4 683 \N +27153 2025-05-23 22:34:46.157213+00 2025-05-23 22:34:46.157226+00 f t SUBTOTAL 0.00 1 694 \N +27154 2025-05-23 22:34:46.15927+00 2025-05-23 22:34:46.15928+00 f t DESCUENTO 0.00 2 694 \N +27155 2025-05-23 22:34:46.161161+00 2025-05-23 22:34:46.161176+00 f t TOTAL 0.00 3 694 \N +27156 2025-05-23 22:34:46.1631+00 2025-05-23 22:34:46.16311+00 f t ADELANTO 0.00 4 694 \N +27245 2025-05-23 22:46:34.897208+00 2025-05-23 22:46:34.897221+00 f t SUBTOTAL 95500.00 1 696 \N +27246 2025-05-23 22:46:34.899694+00 2025-05-23 22:46:34.899703+00 f t DESCUENTO 0.00 2 696 \N +27247 2025-05-23 22:46:34.901668+00 2025-05-23 22:46:34.901675+00 f t TOTAL 95500.00 3 696 \N +27248 2025-05-23 22:46:34.903289+00 2025-05-23 22:46:34.903296+00 f t ADELANTO 60500.00 4 696 \N +26013 2025-05-23 13:07:28.266156+00 2025-05-23 13:07:28.266165+00 f t SUBTOTAL 95000.00 1 673 \N +26014 2025-05-23 13:07:28.267838+00 2025-05-23 13:07:28.267848+00 f t DESCUENTO 0.00 2 673 \N +26015 2025-05-23 13:07:28.269127+00 2025-05-23 13:07:28.269133+00 f t TOTAL 95000.00 3 673 \N +26016 2025-05-23 13:07:28.270102+00 2025-05-23 13:07:28.270108+00 f t ADELANTO 20000.00 4 673 \N +25573 2025-05-23 02:23:12.196566+00 2025-05-23 02:23:12.196581+00 f t SUBTOTAL 0.00 1 664 \N +25574 2025-05-23 02:23:12.197844+00 2025-05-23 02:23:12.19785+00 f t DESCUENTO 0.00 2 664 \N +25575 2025-05-23 02:23:12.198888+00 2025-05-23 02:23:12.198894+00 f t TOTAL 0.00 3 664 \N +25576 2025-05-23 02:23:12.200022+00 2025-05-23 02:23:12.200027+00 f t ADELANTO 0.00 4 664 \N +26721 2025-05-23 16:48:36.137433+00 2025-05-23 16:48:36.137441+00 f t SUBTOTAL 38500.00 1 684 \N +26722 2025-05-23 16:48:36.139289+00 2025-05-23 16:48:36.139298+00 f t DESCUENTO 0.00 2 684 \N +26723 2025-05-23 16:48:36.141005+00 2025-05-23 16:48:36.141016+00 f t TOTAL 38500.00 3 684 \N +26724 2025-05-23 16:48:36.142496+00 2025-05-23 16:48:36.142506+00 f t ADELANTO 8500.00 4 684 \N +26065 2025-05-23 13:08:04.050998+00 2025-05-23 13:08:04.051008+00 f t SUBTOTAL 59500.00 1 674 \N +26066 2025-05-23 13:08:04.053051+00 2025-05-23 13:08:04.053059+00 f t DESCUENTO 0.00 2 674 \N +26067 2025-05-23 13:08:04.054468+00 2025-05-23 13:08:04.054474+00 f t TOTAL 59500.00 3 674 \N +26068 2025-05-23 13:08:04.055828+00 2025-05-23 13:08:04.055836+00 f t ADELANTO 15500.00 4 674 \N +26093 2025-05-23 13:50:47.145894+00 2025-05-23 13:50:47.145904+00 f t SUBTOTAL 0.00 1 675 \N +26094 2025-05-23 13:50:47.1482+00 2025-05-23 13:50:47.148208+00 f t DESCUENTO 0.00 2 675 \N +26095 2025-05-23 13:50:47.14973+00 2025-05-23 13:50:47.149738+00 f t TOTAL 0.00 3 675 \N +26096 2025-05-23 13:50:47.150961+00 2025-05-23 13:50:47.150967+00 f t ADELANTO 0.00 4 675 \N +25729 2025-05-23 07:09:21.184301+00 2025-05-23 07:09:21.184314+00 f t SUBTOTAL 46000.00 1 667 \N +25730 2025-05-23 07:09:21.186224+00 2025-05-23 07:09:21.186233+00 f t DESCUENTO 0.00 2 667 \N +25731 2025-05-23 07:09:21.187726+00 2025-05-23 07:09:21.187732+00 f t TOTAL 46000.00 3 667 \N +25732 2025-05-23 07:09:21.189032+00 2025-05-23 07:09:21.189038+00 f t ADELANTO 9500.00 4 667 \N +25765 2025-05-23 10:16:23.857265+00 2025-05-23 10:16:23.857273+00 f t SUBTOTAL 46000.00 1 668 \N +25766 2025-05-23 10:16:23.859105+00 2025-05-23 10:16:23.859113+00 f t DESCUENTO 0.00 2 668 \N +25767 2025-05-23 10:16:23.860734+00 2025-05-23 10:16:23.860745+00 f t TOTAL 46000.00 3 668 \N +25768 2025-05-23 10:16:23.862247+00 2025-05-23 10:16:23.862255+00 f t ADELANTO 9500.00 4 668 \N +26121 2025-05-23 14:09:17.002697+00 2025-05-23 14:09:17.002706+00 f t SUBTOTAL 38500.00 1 676 \N +26122 2025-05-23 14:09:17.004638+00 2025-05-23 14:09:17.004646+00 f t DESCUENTO 0.00 2 676 \N +26123 2025-05-23 14:09:17.006185+00 2025-05-23 14:09:17.006193+00 f t TOTAL 38500.00 3 676 \N +26124 2025-05-23 14:09:17.007631+00 2025-05-23 14:09:17.00764+00 f t ADELANTO 8500.00 4 676 \N +26873 2025-05-23 16:50:36.193026+00 2025-05-23 16:50:36.193039+00 f t SUBTOTAL 0.00 1 685 \N +26874 2025-05-23 16:50:36.195872+00 2025-05-23 16:50:36.195885+00 f t DESCUENTO 0.00 2 685 \N +26875 2025-05-23 16:50:36.198241+00 2025-05-23 16:50:36.198253+00 f t TOTAL 0.00 3 685 \N +26876 2025-05-23 16:50:36.20057+00 2025-05-23 16:50:36.200579+00 f t ADELANTO 0.00 4 685 \N +28417 2025-05-24 17:53:42.265+00 2025-05-24 17:53:42.265009+00 f t SUBTOTAL 46000.00 1 732 \N +28418 2025-05-24 17:53:42.26653+00 2025-05-24 17:53:42.266535+00 f t DESCUENTO 0.00 2 732 \N +28419 2025-05-24 17:53:42.267757+00 2025-05-24 17:53:42.267763+00 f t TOTAL 46000.00 3 732 \N +28420 2025-05-24 17:53:42.268827+00 2025-05-24 17:53:42.268833+00 f t ADELANTO 11000.00 4 732 \N +29193 2025-05-25 03:59:21.061582+00 2025-05-25 03:59:21.061595+00 f t SUBTOTAL 46000.00 1 762 \N +29194 2025-05-25 03:59:21.063567+00 2025-05-25 03:59:21.063578+00 f t DESCUENTO 0.00 2 762 \N +29195 2025-05-25 03:59:21.065115+00 2025-05-25 03:59:21.065124+00 f t TOTAL 46000.00 3 762 \N +29196 2025-05-25 03:59:21.066341+00 2025-05-25 03:59:21.066348+00 f t ADELANTO 11000.00 4 762 \N +27053 2025-05-23 18:27:48.522455+00 2025-05-23 18:27:48.522464+00 f t SUBTOTAL 95000.00 1 689 \N +27054 2025-05-23 18:27:48.524481+00 2025-05-23 18:27:48.524489+00 f t DESCUENTO 0.00 2 689 \N +27055 2025-05-23 18:27:48.526238+00 2025-05-23 18:27:48.526248+00 f t TOTAL 95000.00 3 689 \N +27056 2025-05-23 18:27:48.527553+00 2025-05-23 18:27:48.52756+00 f t ADELANTO 10000.00 4 689 \N +27081 2025-05-23 18:30:58.150417+00 2025-05-23 18:30:58.150429+00 f t SUBTOTAL 38500.00 1 690 \N +27082 2025-05-23 18:30:58.152773+00 2025-05-23 18:30:58.152785+00 f t DESCUENTO 0.00 2 690 \N +27083 2025-05-23 18:30:58.154632+00 2025-05-23 18:30:58.154644+00 f t TOTAL 38500.00 3 690 \N +27084 2025-05-23 18:30:58.156594+00 2025-05-23 18:30:58.156606+00 f t ADELANTO 8500.00 4 690 \N +26197 2025-05-23 14:58:36.527709+00 2025-05-23 14:58:36.527721+00 f t SUBTOTAL 45500.00 1 677 \N +26198 2025-05-23 14:58:36.529944+00 2025-05-23 14:58:36.529955+00 f t DESCUENTO 0.00 2 677 \N +26199 2025-05-23 14:58:36.532265+00 2025-05-23 14:58:36.532276+00 f t TOTAL 45500.00 3 677 \N +26200 2025-05-23 14:58:36.534086+00 2025-05-23 14:58:36.534097+00 f t ADELANTO 10500.00 4 677 \N +27137 2025-05-23 21:09:43.842378+00 2025-05-23 21:09:43.842392+00 f t SUBTOTAL 88500.00 1 692 \N +27138 2025-05-23 21:09:43.844568+00 2025-05-23 21:09:43.84458+00 f t DESCUENTO 0.00 2 692 \N +27139 2025-05-23 21:09:43.846454+00 2025-05-23 21:09:43.846465+00 f t TOTAL 88500.00 3 692 \N +27140 2025-05-23 21:09:43.848428+00 2025-05-23 21:09:43.848436+00 f t ADELANTO 53500.00 4 692 \N +26501 2025-05-23 15:58:19.965147+00 2025-05-23 15:58:19.965157+00 f t SUBTOTAL 0.00 1 681 \N +26502 2025-05-23 15:58:19.966857+00 2025-05-23 15:58:19.966869+00 f t DESCUENTO 0.00 2 681 \N +26503 2025-05-23 15:58:19.96852+00 2025-05-23 15:58:19.968529+00 f t TOTAL 0.00 3 681 \N +26504 2025-05-23 15:58:19.969868+00 2025-05-23 15:58:19.969873+00 f t ADELANTO 0.00 4 681 \N +27897 2025-05-24 13:04:15.880904+00 2025-05-24 13:04:15.880914+00 f t SUBTOTAL 0.00 1 717 \N +27898 2025-05-24 13:04:15.883452+00 2025-05-24 13:04:15.88346+00 f t DESCUENTO 0.00 2 717 \N +27899 2025-05-24 13:04:15.884955+00 2025-05-24 13:04:15.884961+00 f t TOTAL 0.00 3 717 \N +27253 2025-05-23 22:47:09.377271+00 2025-05-23 22:47:09.377285+00 f t SUBTOTAL 0.00 1 697 \N +27254 2025-05-23 22:47:09.379315+00 2025-05-23 22:47:09.379327+00 f t DESCUENTO 0.00 2 697 \N +27255 2025-05-23 22:47:09.381058+00 2025-05-23 22:47:09.381067+00 f t TOTAL 0.00 3 697 \N +27256 2025-05-23 22:47:09.382552+00 2025-05-23 22:47:09.382563+00 f t ADELANTO 0.00 4 697 \N +27900 2025-05-24 13:04:15.886218+00 2025-05-24 13:04:15.886224+00 f t ADELANTO 0.00 4 717 \N +27281 2025-05-23 22:58:51.230285+00 2025-05-23 22:58:51.230298+00 f t SUBTOTAL 107250.00 1 698 \N +27282 2025-05-23 22:58:51.23268+00 2025-05-23 22:58:51.232693+00 f t DESCUENTO 0.00 2 698 \N +27283 2025-05-23 22:58:51.234524+00 2025-05-23 22:58:51.234535+00 f t TOTAL 107250.00 3 698 \N +27284 2025-05-23 22:58:51.236101+00 2025-05-23 22:58:51.236112+00 f t ADELANTO 22250.00 4 698 \N +27973 2025-05-24 13:11:13.617+00 2025-05-24 13:11:13.61701+00 f t SUBTOTAL 25000.00 1 718 \N +27974 2025-05-24 13:11:13.618716+00 2025-05-24 13:11:13.618725+00 f t DESCUENTO 0.00 2 718 \N +27975 2025-05-24 13:11:13.620309+00 2025-05-24 13:11:13.620316+00 f t TOTAL 25000.00 3 718 \N +27976 2025-05-24 13:11:13.6214+00 2025-05-24 13:11:13.621406+00 f t ADELANTO 25000.00 4 718 \N +28029 2025-05-24 13:47:42.660358+00 2025-05-24 13:47:42.660367+00 f t SUBTOTAL 38500.00 1 720 \N +28030 2025-05-24 13:47:42.662589+00 2025-05-24 13:47:42.662601+00 f t DESCUENTO 0.00 2 720 \N +28031 2025-05-24 13:47:42.664814+00 2025-05-24 13:47:42.664823+00 f t TOTAL 38500.00 3 720 \N +28032 2025-05-24 13:47:42.666649+00 2025-05-24 13:47:42.666657+00 f t ADELANTO 8500.00 4 720 \N +27417 2025-05-23 23:55:31.148083+00 2025-05-23 23:55:31.148096+00 f t SUBTOTAL 0.00 1 701 \N +27418 2025-05-23 23:55:31.150236+00 2025-05-23 23:55:31.150244+00 f t DESCUENTO 0.00 2 701 \N +27419 2025-05-23 23:55:31.151838+00 2025-05-23 23:55:31.151846+00 f t TOTAL 0.00 3 701 \N +27420 2025-05-23 23:55:31.1532+00 2025-05-23 23:55:31.153206+00 f t ADELANTO 0.00 4 701 \N +27437 2025-05-23 23:58:55.149978+00 2025-05-23 23:58:55.149988+00 f t SUBTOTAL 0.00 1 702 \N +27438 2025-05-23 23:58:55.151878+00 2025-05-23 23:58:55.151886+00 f t DESCUENTO 0.00 2 702 \N +27439 2025-05-23 23:58:55.153018+00 2025-05-23 23:58:55.153025+00 f t TOTAL 0.00 3 702 \N +27440 2025-05-23 23:58:55.15408+00 2025-05-23 23:58:55.154086+00 f t ADELANTO 0.00 4 702 \N +28153 2025-05-24 15:03:24.676317+00 2025-05-24 15:03:24.676325+00 f t SUBTOTAL 46000.00 1 724 \N +28154 2025-05-24 15:03:24.677903+00 2025-05-24 15:03:24.677911+00 f t DESCUENTO 0.00 2 724 \N +28155 2025-05-24 15:03:24.67918+00 2025-05-24 15:03:24.679186+00 f t TOTAL 46000.00 3 724 \N +28156 2025-05-24 15:03:24.680439+00 2025-05-24 15:03:24.680446+00 f t ADELANTO 9500.00 4 724 \N +28213 2025-05-24 16:46:01.578472+00 2025-05-24 16:46:01.578486+00 f t SUBTOTAL 0.00 1 727 \N +28214 2025-05-24 16:46:01.580465+00 2025-05-24 16:46:01.580477+00 f t DESCUENTO 0.00 2 727 \N +28215 2025-05-24 16:46:01.583177+00 2025-05-24 16:46:01.583188+00 f t TOTAL 0.00 3 727 \N +28216 2025-05-24 16:46:01.58507+00 2025-05-24 16:46:01.585078+00 f t ADELANTO 0.00 4 727 \N +27501 2025-05-24 00:28:42.322043+00 2025-05-24 00:28:42.322056+00 f t SUBTOTAL 0.00 1 704 \N +27502 2025-05-24 00:28:42.32483+00 2025-05-24 00:28:42.324841+00 f t DESCUENTO 0.00 2 704 \N +27503 2025-05-24 00:28:42.326493+00 2025-05-24 00:28:42.326501+00 f t TOTAL 0.00 3 704 \N +27504 2025-05-24 00:28:42.327992+00 2025-05-24 00:28:42.327999+00 f t ADELANTO 0.00 4 704 \N +28257 2025-05-24 17:20:27.325722+00 2025-05-24 17:20:27.325734+00 f t SUBTOTAL 0.00 1 729 \N +28258 2025-05-24 17:20:27.327496+00 2025-05-24 17:20:27.327503+00 f t DESCUENTO 0.00 2 729 \N +28259 2025-05-24 17:20:27.32885+00 2025-05-24 17:20:27.328856+00 f t TOTAL 0.00 3 729 \N +28260 2025-05-24 17:20:27.330085+00 2025-05-24 17:20:27.330091+00 f t ADELANTO 0.00 4 729 \N +27541 2025-05-24 01:02:04.73076+00 2025-05-24 01:02:04.73077+00 f t SUBTOTAL 46000.00 1 706 \N +27542 2025-05-24 01:02:04.732645+00 2025-05-24 01:02:04.732653+00 f t DESCUENTO 0.00 2 706 \N +27543 2025-05-24 01:02:04.733888+00 2025-05-24 01:02:04.733894+00 f t TOTAL 46000.00 3 706 \N +27544 2025-05-24 01:02:04.734968+00 2025-05-24 01:02:04.734975+00 f t ADELANTO 9500.00 4 706 \N +27621 2025-05-24 02:13:23.989721+00 2025-05-24 02:13:23.989734+00 f t SUBTOTAL 38500.00 1 708 \N +27622 2025-05-24 02:13:23.992042+00 2025-05-24 02:13:23.992053+00 f t DESCUENTO 0.00 2 708 \N +27623 2025-05-24 02:13:23.99395+00 2025-05-24 02:13:23.993961+00 f t TOTAL 38500.00 3 708 \N +27624 2025-05-24 02:13:23.995893+00 2025-05-24 02:13:23.995904+00 f t ADELANTO 8500.00 4 708 \N +28389 2025-05-24 17:50:52.212599+00 2025-05-24 17:50:52.212608+00 f t SUBTOTAL 0.00 1 731 \N +28390 2025-05-24 17:50:52.214853+00 2025-05-24 17:50:52.214865+00 f t DESCUENTO 0.00 2 731 \N +28391 2025-05-24 17:50:52.216603+00 2025-05-24 17:50:52.21661+00 f t TOTAL 0.00 3 731 \N +28392 2025-05-24 17:50:52.217799+00 2025-05-24 17:50:52.217805+00 f t ADELANTO 0.00 4 731 \N +30548 2025-05-25 22:30:58.133476+00 2025-05-25 22:30:58.133483+00 f t ADELANTO 31000.00 4 796 \N +26945 2025-05-23 17:02:50.211414+00 2025-05-23 17:02:50.211425+00 f t SUBTOTAL 0.00 1 686 \N +26946 2025-05-23 17:02:50.213742+00 2025-05-23 17:02:50.213752+00 f t DESCUENTO 0.00 2 686 \N +26947 2025-05-23 17:02:50.215374+00 2025-05-23 17:02:50.215384+00 f t TOTAL 0.00 3 686 \N +26948 2025-05-23 17:02:50.217076+00 2025-05-23 17:02:50.217084+00 f t ADELANTO 0.00 4 686 \N +27705 2025-05-24 02:45:25.593373+00 2025-05-24 02:45:25.593381+00 f t SUBTOTAL 46000.00 1 710 \N +27706 2025-05-24 02:45:25.594982+00 2025-05-24 02:45:25.594989+00 f t DESCUENTO 0.00 2 710 \N +27707 2025-05-24 02:45:25.596278+00 2025-05-24 02:45:25.596283+00 f t TOTAL 46000.00 3 710 \N +27708 2025-05-24 02:45:25.597319+00 2025-05-24 02:45:25.597328+00 f t ADELANTO 9500.00 4 710 \N +27761 2025-05-24 04:24:34.728949+00 2025-05-24 04:24:34.728961+00 f t SUBTOTAL 0.00 1 712 \N +27762 2025-05-24 04:24:34.731326+00 2025-05-24 04:24:34.731338+00 f t DESCUENTO 0.00 2 712 \N +27763 2025-05-24 04:24:34.732751+00 2025-05-24 04:24:34.73276+00 f t TOTAL 0.00 3 712 \N +27764 2025-05-24 04:24:34.733995+00 2025-05-24 04:24:34.734002+00 f t ADELANTO 0.00 4 712 \N +26973 2025-05-23 17:33:50.140519+00 2025-05-23 17:33:50.14053+00 f t SUBTOTAL 25000.00 1 687 \N +26974 2025-05-23 17:33:50.142784+00 2025-05-23 17:33:50.142795+00 f t DESCUENTO 0.00 2 687 \N +26975 2025-05-23 17:33:50.144681+00 2025-05-23 17:33:50.144692+00 f t TOTAL 25000.00 3 687 \N +26976 2025-05-23 17:33:50.14634+00 2025-05-23 17:33:50.146349+00 f t ADELANTO 25000.00 4 687 \N +27089 2025-05-23 20:51:46.092452+00 2025-05-23 20:51:46.092461+00 f t SUBTOTAL 0.00 1 691 \N +27090 2025-05-23 20:51:46.094025+00 2025-05-23 20:51:46.094034+00 f t DESCUENTO 0.00 2 691 \N +27091 2025-05-23 20:51:46.095445+00 2025-05-23 20:51:46.095453+00 f t TOTAL 0.00 3 691 \N +27092 2025-05-23 20:51:46.096698+00 2025-05-23 20:51:46.096705+00 f t ADELANTO 0.00 4 691 \N +27789 2025-05-24 12:19:03.852031+00 2025-05-24 12:19:03.852047+00 f t SUBTOTAL 57000.00 1 713 \N +27790 2025-05-24 12:19:03.854247+00 2025-05-24 12:19:03.854259+00 f t DESCUENTO 0.00 2 713 \N +27791 2025-05-24 12:19:03.856533+00 2025-05-24 12:19:03.856546+00 f t TOTAL 57000.00 3 713 \N +27792 2025-05-24 12:19:03.85845+00 2025-05-24 12:19:03.858461+00 f t ADELANTO 12000.00 4 713 \N +27145 2025-05-23 22:33:29.339388+00 2025-05-23 22:33:29.3394+00 f t SUBTOTAL 0.00 1 693 \N +27146 2025-05-23 22:33:29.341551+00 2025-05-23 22:33:29.341566+00 f t DESCUENTO 0.00 2 693 \N +27147 2025-05-23 22:33:29.3434+00 2025-05-23 22:33:29.343408+00 f t TOTAL 0.00 3 693 \N +27148 2025-05-23 22:33:29.345235+00 2025-05-23 22:33:29.345243+00 f t ADELANTO 0.00 4 693 \N +27861 2025-05-24 12:53:34.570923+00 2025-05-24 12:53:34.570933+00 f t SUBTOTAL 0.00 1 715 \N +27862 2025-05-24 12:53:34.573049+00 2025-05-24 12:53:34.573061+00 f t DESCUENTO 0.00 2 715 \N +27863 2025-05-24 12:53:34.574445+00 2025-05-24 12:53:34.574455+00 f t TOTAL 0.00 3 715 \N +27864 2025-05-24 12:53:34.57588+00 2025-05-24 12:53:34.575887+00 f t ADELANTO 0.00 4 715 \N +27217 2025-05-23 22:45:36.815059+00 2025-05-23 22:45:36.81507+00 f t SUBTOTAL 67000.00 1 695 \N +27218 2025-05-23 22:45:36.820112+00 2025-05-23 22:45:36.820129+00 f t DESCUENTO 0.00 2 695 \N +27219 2025-05-23 22:45:36.828312+00 2025-05-23 22:45:36.828325+00 f t TOTAL 67000.00 3 695 \N +27220 2025-05-23 22:45:36.830942+00 2025-05-23 22:45:36.830956+00 f t ADELANTO 18000.00 4 695 \N +27289 2025-05-23 23:13:50.062992+00 2025-05-23 23:13:50.063003+00 f t SUBTOTAL 0.00 1 699 \N +27290 2025-05-23 23:13:50.064655+00 2025-05-23 23:13:50.064663+00 f t DESCUENTO 0.00 2 699 \N +27291 2025-05-23 23:13:50.065877+00 2025-05-23 23:13:50.065883+00 f t TOTAL 0.00 3 699 \N +27292 2025-05-23 23:13:50.066892+00 2025-05-23 23:13:50.066898+00 f t ADELANTO 0.00 4 699 \N +27981 2025-05-24 13:27:40.65787+00 2025-05-24 13:27:40.657884+00 f t SUBTOTAL 0.00 1 719 \N +27982 2025-05-24 13:27:40.659921+00 2025-05-24 13:27:40.659931+00 f t DESCUENTO 0.00 2 719 \N +27983 2025-05-24 13:27:40.661908+00 2025-05-24 13:27:40.661917+00 f t TOTAL 0.00 3 719 \N +27984 2025-05-24 13:27:40.663802+00 2025-05-24 13:27:40.663811+00 f t ADELANTO 0.00 4 719 \N +28037 2025-05-24 13:59:44.21665+00 2025-05-24 13:59:44.216661+00 f t SUBTOTAL 0.00 1 721 \N +28038 2025-05-24 13:59:44.218318+00 2025-05-24 13:59:44.218328+00 f t DESCUENTO 0.00 2 721 \N +28039 2025-05-24 13:59:44.219919+00 2025-05-24 13:59:44.219928+00 f t TOTAL 0.00 3 721 \N +28040 2025-05-24 13:59:44.221266+00 2025-05-24 13:59:44.221274+00 f t ADELANTO 0.00 4 721 \N +28065 2025-05-24 14:22:35.504102+00 2025-05-24 14:22:35.504116+00 f t SUBTOTAL 70000.00 1 722 \N +28066 2025-05-24 14:22:35.506718+00 2025-05-24 14:22:35.506732+00 f t DESCUENTO 0.00 2 722 \N +28067 2025-05-24 14:22:35.509078+00 2025-05-24 14:22:35.509092+00 f t TOTAL 70000.00 3 722 \N +28068 2025-05-24 14:22:35.51119+00 2025-05-24 14:22:35.511202+00 f t ADELANTO 10000.00 4 722 \N +27409 2025-05-23 23:41:37.042073+00 2025-05-23 23:41:37.042085+00 f t SUBTOTAL 46000.00 1 700 \N +27410 2025-05-23 23:41:37.044194+00 2025-05-23 23:41:37.044202+00 f t DESCUENTO 0.00 2 700 \N +27411 2025-05-23 23:41:37.045893+00 2025-05-23 23:41:37.045904+00 f t TOTAL 46000.00 3 700 \N +27412 2025-05-23 23:41:37.047812+00 2025-05-23 23:41:37.047822+00 f t ADELANTO 9500.00 4 700 \N +27445 2025-05-24 00:04:46.54848+00 2025-05-24 00:04:46.548492+00 f t SUBTOTAL 0.00 1 703 \N +27446 2025-05-24 00:04:46.549857+00 2025-05-24 00:04:46.549864+00 f t DESCUENTO 0.00 2 703 \N +27447 2025-05-24 00:04:46.550877+00 2025-05-24 00:04:46.550883+00 f t TOTAL 0.00 3 703 \N +27448 2025-05-24 00:04:46.551853+00 2025-05-24 00:04:46.551859+00 f t ADELANTO 0.00 4 703 \N +28197 2025-05-24 15:34:36.516381+00 2025-05-24 15:34:36.51639+00 f t SUBTOTAL 105500.00 1 725 \N +28198 2025-05-24 15:34:36.518393+00 2025-05-24 15:34:36.518403+00 f t DESCUENTO 0.00 2 725 \N +28199 2025-05-24 15:34:36.520021+00 2025-05-24 15:34:36.520031+00 f t TOTAL 105500.00 3 725 \N +28200 2025-05-24 15:34:36.521545+00 2025-05-24 15:34:36.521552+00 f t ADELANTO 25000.00 4 725 \N +27509 2025-05-24 00:51:04.998142+00 2025-05-24 00:51:04.998153+00 f t SUBTOTAL 0.00 1 705 \N +27510 2025-05-24 00:51:04.999694+00 2025-05-24 00:51:04.999702+00 f t DESCUENTO 0.00 2 705 \N +27511 2025-05-24 00:51:05.001196+00 2025-05-24 00:51:05.001204+00 f t TOTAL 0.00 3 705 \N +27512 2025-05-24 00:51:05.002787+00 2025-05-24 00:51:05.002797+00 f t ADELANTO 0.00 4 705 \N +27549 2025-05-24 01:30:15.950729+00 2025-05-24 01:30:15.950742+00 f t SUBTOTAL 0.00 1 707 \N +27550 2025-05-24 01:30:15.952352+00 2025-05-24 01:30:15.95236+00 f t DESCUENTO 0.00 2 707 \N +27551 2025-05-24 01:30:15.953648+00 2025-05-24 01:30:15.953657+00 f t TOTAL 0.00 3 707 \N +27552 2025-05-24 01:30:15.95473+00 2025-05-24 01:30:15.954736+00 f t ADELANTO 0.00 4 707 \N +28373 2025-05-24 17:37:59.887015+00 2025-05-24 17:37:59.887026+00 f t SUBTOTAL 59500.00 1 730 \N +28374 2025-05-24 17:37:59.888983+00 2025-05-24 17:37:59.88899+00 f t DESCUENTO 0.00 2 730 \N +28375 2025-05-24 17:37:59.890375+00 2025-05-24 17:37:59.89038+00 f t TOTAL 59500.00 3 730 \N +28376 2025-05-24 17:37:59.891445+00 2025-05-24 17:37:59.891451+00 f t ADELANTO 15500.00 4 730 \N +29877 2025-05-25 16:43:07.932343+00 2025-05-25 16:43:07.932355+00 f t SUBTOTAL 46000.00 1 778 \N +29878 2025-05-25 16:43:07.934145+00 2025-05-25 16:43:07.934155+00 f t DESCUENTO 0.00 2 778 \N +29879 2025-05-25 16:43:07.935681+00 2025-05-25 16:43:07.935688+00 f t TOTAL 46000.00 3 778 \N +29880 2025-05-25 16:43:07.937208+00 2025-05-25 16:43:07.937216+00 f t ADELANTO 11000.00 4 778 \N +27713 2025-05-24 03:02:08.100713+00 2025-05-24 03:02:08.100722+00 f t SUBTOTAL 0.00 1 711 \N +27714 2025-05-24 03:02:08.102178+00 2025-05-24 03:02:08.102184+00 f t DESCUENTO 0.00 2 711 \N +27715 2025-05-24 03:02:08.103325+00 2025-05-24 03:02:08.103331+00 f t TOTAL 0.00 3 711 \N +27716 2025-05-24 03:02:08.104559+00 2025-05-24 03:02:08.104565+00 f t ADELANTO 0.00 4 711 \N +28425 2025-05-24 18:11:04.196272+00 2025-05-24 18:11:04.196282+00 f t SUBTOTAL 0.00 1 733 \N +28426 2025-05-24 18:11:04.19799+00 2025-05-24 18:11:04.197998+00 f t DESCUENTO 0.00 2 733 \N +28427 2025-05-24 18:11:04.199523+00 2025-05-24 18:11:04.19953+00 f t TOTAL 0.00 3 733 \N +28428 2025-05-24 18:11:04.2009+00 2025-05-24 18:11:04.200906+00 f t ADELANTO 0.00 4 733 \N +28433 2025-05-24 18:12:34.460506+00 2025-05-24 18:12:34.460515+00 f t SUBTOTAL 0.00 1 734 \N +28434 2025-05-24 18:12:34.462433+00 2025-05-24 18:12:34.462443+00 f t DESCUENTO 0.00 2 734 \N +28435 2025-05-24 18:12:34.4638+00 2025-05-24 18:12:34.463807+00 f t TOTAL 0.00 3 734 \N +28436 2025-05-24 18:12:34.464949+00 2025-05-24 18:12:34.464956+00 f t ADELANTO 0.00 4 734 \N +28441 2025-05-24 18:13:09.25672+00 2025-05-24 18:13:09.25673+00 f t SUBTOTAL 0.00 1 735 \N +28442 2025-05-24 18:13:09.258289+00 2025-05-24 18:13:09.258296+00 f t DESCUENTO 0.00 2 735 \N +28443 2025-05-24 18:13:09.259549+00 2025-05-24 18:13:09.259559+00 f t TOTAL 0.00 3 735 \N +28444 2025-05-24 18:13:09.262493+00 2025-05-24 18:13:09.2625+00 f t ADELANTO 0.00 4 735 \N +28449 2025-05-24 18:14:05.551565+00 2025-05-24 18:14:05.551576+00 f t SUBTOTAL 0.00 1 736 \N +28450 2025-05-24 18:14:05.553126+00 2025-05-24 18:14:05.553133+00 f t DESCUENTO 0.00 2 736 \N +28451 2025-05-24 18:14:05.554396+00 2025-05-24 18:14:05.554403+00 f t TOTAL 0.00 3 736 \N +28452 2025-05-24 18:14:05.555844+00 2025-05-24 18:14:05.555854+00 f t ADELANTO 0.00 4 736 \N +27797 2025-05-24 12:51:11.175043+00 2025-05-24 12:51:11.175054+00 f t SUBTOTAL 0.00 1 714 \N +27798 2025-05-24 12:51:11.1764+00 2025-05-24 12:51:11.176407+00 f t DESCUENTO 0.00 2 714 \N +27799 2025-05-24 12:51:11.177456+00 2025-05-24 12:51:11.177462+00 f t TOTAL 0.00 3 714 \N +27800 2025-05-24 12:51:11.178614+00 2025-05-24 12:51:11.178622+00 f t ADELANTO 0.00 4 714 \N +28457 2025-05-24 18:15:11.95363+00 2025-05-24 18:15:11.953642+00 f t SUBTOTAL 0.00 1 737 \N +28458 2025-05-24 18:15:11.955751+00 2025-05-24 18:15:11.955761+00 f t DESCUENTO 0.00 2 737 \N +28459 2025-05-24 18:15:11.957557+00 2025-05-24 18:15:11.957567+00 f t TOTAL 0.00 3 737 \N +28460 2025-05-24 18:15:11.959097+00 2025-05-24 18:15:11.959107+00 f t ADELANTO 0.00 4 737 \N +27829 2025-05-24 12:52:26.873674+00 2025-05-24 12:52:26.873685+00 f t SUBTOTAL 0.00 1 716 \N +27830 2025-05-24 12:52:26.876955+00 2025-05-24 12:52:26.876979+00 f t DESCUENTO 0.00 2 716 \N +27831 2025-05-24 12:52:26.878472+00 2025-05-24 12:52:26.878479+00 f t TOTAL 0.00 3 716 \N +27832 2025-05-24 12:52:26.879645+00 2025-05-24 12:52:26.879651+00 f t ADELANTO 0.00 4 716 \N +28465 2025-05-24 18:39:05.361725+00 2025-05-24 18:39:05.361735+00 f t SUBTOTAL 0.00 1 738 \N +28466 2025-05-24 18:39:05.363503+00 2025-05-24 18:39:05.363514+00 f t DESCUENTO 0.00 2 738 \N +28467 2025-05-24 18:39:05.365148+00 2025-05-24 18:39:05.365155+00 f t TOTAL 0.00 3 738 \N +28468 2025-05-24 18:39:05.366372+00 2025-05-24 18:39:05.366378+00 f t ADELANTO 0.00 4 738 \N +28481 2025-05-24 18:45:21.907122+00 2025-05-24 18:45:21.907135+00 f t SUBTOTAL 0.00 1 740 \N +28482 2025-05-24 18:45:21.90912+00 2025-05-24 18:45:21.909133+00 f t DESCUENTO 0.00 2 740 \N +28483 2025-05-24 18:45:21.911159+00 2025-05-24 18:45:21.91117+00 f t TOTAL 0.00 3 740 \N +28484 2025-05-24 18:45:21.912807+00 2025-05-24 18:45:21.912815+00 f t ADELANTO 0.00 4 740 \N +28509 2025-05-24 18:46:21.525097+00 2025-05-24 18:46:21.525108+00 f t SUBTOTAL 46000.00 1 739 \N +28510 2025-05-24 18:46:21.527008+00 2025-05-24 18:46:21.527017+00 f t DESCUENTO 0.00 2 739 \N +28511 2025-05-24 18:46:21.528655+00 2025-05-24 18:46:21.528662+00 f t TOTAL 46000.00 3 739 \N +28512 2025-05-24 18:46:21.52992+00 2025-05-24 18:46:21.529926+00 f t ADELANTO 9500.00 4 739 \N +29333 2025-05-25 12:41:19.403651+00 2025-05-25 12:41:19.403659+00 f t SUBTOTAL 0.00 1 766 \N +29334 2025-05-25 12:41:19.405404+00 2025-05-25 12:41:19.405411+00 f t DESCUENTO 0.00 2 766 \N +29335 2025-05-25 12:41:19.406507+00 2025-05-25 12:41:19.406513+00 f t TOTAL 0.00 3 766 \N +29336 2025-05-25 12:41:19.407802+00 2025-05-25 12:41:19.407808+00 f t ADELANTO 0.00 4 766 \N +28537 2025-05-24 20:25:25.99332+00 2025-05-24 20:25:25.993328+00 f t SUBTOTAL 59500.00 1 741 \N +28538 2025-05-24 20:25:25.995213+00 2025-05-24 20:25:25.995222+00 f t DESCUENTO 0.00 2 741 \N +28539 2025-05-24 20:25:25.996915+00 2025-05-24 20:25:25.996925+00 f t TOTAL 59500.00 3 741 \N +28540 2025-05-24 20:25:25.998152+00 2025-05-24 20:25:25.998158+00 f t ADELANTO 15500.00 4 741 \N +28545 2025-05-24 20:58:49.590769+00 2025-05-24 20:58:49.590778+00 f t SUBTOTAL 0.00 1 742 \N +28546 2025-05-24 20:58:49.592464+00 2025-05-24 20:58:49.592471+00 f t DESCUENTO 0.00 2 742 \N +28547 2025-05-24 20:58:49.593664+00 2025-05-24 20:58:49.59367+00 f t TOTAL 0.00 3 742 \N +28548 2025-05-24 20:58:49.594847+00 2025-05-24 20:58:49.594853+00 f t ADELANTO 0.00 4 742 \N +28073 2025-05-24 14:38:14.315131+00 2025-05-24 14:38:14.315145+00 f t SUBTOTAL 0.00 1 723 \N +28074 2025-05-24 14:38:14.317121+00 2025-05-24 14:38:14.317133+00 f t DESCUENTO 0.00 2 723 \N +28075 2025-05-24 14:38:14.319099+00 2025-05-24 14:38:14.319108+00 f t TOTAL 0.00 3 723 \N +28076 2025-05-24 14:38:14.320732+00 2025-05-24 14:38:14.320741+00 f t ADELANTO 0.00 4 723 \N +28573 2025-05-24 21:36:20.405922+00 2025-05-24 21:36:20.405931+00 f t SUBTOTAL 38500.00 1 743 \N +28574 2025-05-24 21:36:20.4075+00 2025-05-24 21:36:20.407509+00 f t DESCUENTO 0.00 2 743 \N +28575 2025-05-24 21:36:20.408872+00 2025-05-24 21:36:20.408879+00 f t TOTAL 38500.00 3 743 \N +28576 2025-05-24 21:36:20.41003+00 2025-05-24 21:36:20.410039+00 f t ADELANTO 8500.00 4 743 \N +28581 2025-05-24 22:30:43.654701+00 2025-05-24 22:30:43.654713+00 f t SUBTOTAL 0.00 1 744 \N +28582 2025-05-24 22:30:43.656325+00 2025-05-24 22:30:43.656336+00 f t DESCUENTO 0.00 2 744 \N +28583 2025-05-24 22:30:43.657768+00 2025-05-24 22:30:43.657775+00 f t TOTAL 0.00 3 744 \N +28584 2025-05-24 22:30:43.659084+00 2025-05-24 22:30:43.659091+00 f t ADELANTO 0.00 4 744 \N +28205 2025-05-24 15:46:27.154367+00 2025-05-24 15:46:27.154378+00 f t SUBTOTAL 0.00 1 726 \N +28206 2025-05-24 15:46:27.156445+00 2025-05-24 15:46:27.15646+00 f t DESCUENTO 0.00 2 726 \N +28207 2025-05-24 15:46:27.158466+00 2025-05-24 15:46:27.158473+00 f t TOTAL 0.00 3 726 \N +28208 2025-05-24 15:46:27.160517+00 2025-05-24 15:46:27.160525+00 f t ADELANTO 0.00 4 726 \N +28249 2025-05-24 16:50:31.218538+00 2025-05-24 16:50:31.218547+00 f t SUBTOTAL 46000.00 1 728 \N +28250 2025-05-24 16:50:31.220375+00 2025-05-24 16:50:31.220385+00 f t DESCUENTO 0.00 2 728 \N +28251 2025-05-24 16:50:31.221626+00 2025-05-24 16:50:31.221632+00 f t TOTAL 46000.00 3 728 \N +28252 2025-05-24 16:50:31.222699+00 2025-05-24 16:50:31.222704+00 f t ADELANTO 9500.00 4 728 \N +28633 2025-05-24 23:03:23.425187+00 2025-05-24 23:03:23.425198+00 f t SUBTOTAL 0.00 1 746 \N +28634 2025-05-24 23:03:23.426771+00 2025-05-24 23:03:23.426778+00 f t DESCUENTO 0.00 2 746 \N +28635 2025-05-24 23:03:23.428271+00 2025-05-24 23:03:23.428277+00 f t TOTAL 0.00 3 746 \N +28636 2025-05-24 23:03:23.429547+00 2025-05-24 23:03:23.429553+00 f t ADELANTO 0.00 4 746 \N +112630 2025-07-04 11:41:34.936456+00 2025-07-04 11:41:34.936463+00 f t DESCUENTO 0.00 2 2967 \N +112631 2025-07-04 11:41:34.937669+00 2025-07-04 11:41:34.937675+00 f t TOTAL 50000.00 3 2967 \N +30553 2025-05-25 22:32:47.360022+00 2025-05-25 22:32:47.360035+00 f t SUBTOTAL 0.00 1 797 \N +30554 2025-05-25 22:32:47.361754+00 2025-05-25 22:32:47.361761+00 f t DESCUENTO 0.00 2 797 \N +30555 2025-05-25 22:32:47.363039+00 2025-05-25 22:32:47.363046+00 f t TOTAL 0.00 3 797 \N +30556 2025-05-25 22:32:47.364555+00 2025-05-25 22:32:47.364564+00 f t ADELANTO 0.00 4 797 \N +29165 2025-05-25 03:33:20.517377+00 2025-05-25 03:33:20.517388+00 f t SUBTOTAL 114500.00 1 760 \N +29166 2025-05-25 03:33:20.519369+00 2025-05-25 03:33:20.519378+00 f t DESCUENTO 0.00 2 760 \N +29167 2025-05-25 03:33:20.520697+00 2025-05-25 03:33:20.520703+00 f t TOTAL 114500.00 3 760 \N +29168 2025-05-25 03:33:20.521904+00 2025-05-25 03:33:20.52191+00 f t ADELANTO 34500.00 4 760 \N +29885 2025-05-25 17:18:05.871958+00 2025-05-25 17:18:05.871971+00 f t SUBTOTAL 0.00 1 779 \N +29886 2025-05-25 17:18:05.873976+00 2025-05-25 17:18:05.873987+00 f t DESCUENTO 0.00 2 779 \N +29887 2025-05-25 17:18:05.875737+00 2025-05-25 17:18:05.875748+00 f t TOTAL 0.00 3 779 \N +29888 2025-05-25 17:18:05.877451+00 2025-05-25 17:18:05.877462+00 f t ADELANTO 0.00 4 779 \N +28665 2025-05-24 23:03:31.171146+00 2025-05-24 23:03:31.171164+00 f t SUBTOTAL 38500.00 1 745 \N +28666 2025-05-24 23:03:31.172816+00 2025-05-24 23:03:31.172825+00 f t DESCUENTO 0.00 2 745 \N +28667 2025-05-24 23:03:31.174258+00 2025-05-24 23:03:31.174264+00 f t TOTAL 38500.00 3 745 \N +28668 2025-05-24 23:03:31.175402+00 2025-05-24 23:03:31.17541+00 f t ADELANTO 8500.00 4 745 \N +29909 2025-05-25 17:51:05.799121+00 2025-05-25 17:51:05.79913+00 f t SUBTOTAL 0.00 1 782 \N +29910 2025-05-25 17:51:05.801004+00 2025-05-25 17:51:05.801012+00 f t DESCUENTO 0.00 2 782 \N +29911 2025-05-25 17:51:05.802754+00 2025-05-25 17:51:05.802763+00 f t TOTAL 0.00 3 782 \N +29912 2025-05-25 17:51:05.804389+00 2025-05-25 17:51:05.804397+00 f t ADELANTO 0.00 4 782 \N +28701 2025-05-24 23:20:19.036781+00 2025-05-24 23:20:19.036789+00 f t SUBTOTAL 59500.00 1 747 \N +28702 2025-05-24 23:20:19.038447+00 2025-05-24 23:20:19.038454+00 f t DESCUENTO 0.00 2 747 \N +28703 2025-05-24 23:20:19.039664+00 2025-05-24 23:20:19.03967+00 f t TOTAL 59500.00 3 747 \N +28704 2025-05-24 23:20:19.040822+00 2025-05-24 23:20:19.04083+00 f t ADELANTO 15500.00 4 747 \N +28709 2025-05-24 23:35:13.065094+00 2025-05-24 23:35:13.065104+00 f t SUBTOTAL 0.00 1 748 \N +28710 2025-05-24 23:35:13.066585+00 2025-05-24 23:35:13.066592+00 f t DESCUENTO 0.00 2 748 \N +28711 2025-05-24 23:35:13.068124+00 2025-05-24 23:35:13.068131+00 f t TOTAL 0.00 3 748 \N +28712 2025-05-24 23:35:13.069312+00 2025-05-24 23:35:13.069318+00 f t ADELANTO 0.00 4 748 \N +29429 2025-05-25 13:40:49.940038+00 2025-05-25 13:40:49.940084+00 f t SUBTOTAL 46000.00 1 768 \N +29430 2025-05-25 13:40:49.941711+00 2025-05-25 13:40:49.941718+00 f t DESCUENTO 0.00 2 768 \N +29431 2025-05-25 13:40:49.943201+00 2025-05-25 13:40:49.943208+00 f t TOTAL 46000.00 3 768 \N +29432 2025-05-25 13:40:49.944595+00 2025-05-25 13:40:49.9446+00 f t ADELANTO 9500.00 4 768 \N +28753 2025-05-24 23:36:30.898017+00 2025-05-24 23:36:30.898026+00 f t SUBTOTAL 59500.00 1 749 \N +28754 2025-05-24 23:36:30.899593+00 2025-05-24 23:36:30.899601+00 f t DESCUENTO 0.00 2 749 \N +28755 2025-05-24 23:36:30.900855+00 2025-05-24 23:36:30.900862+00 f t TOTAL 59500.00 3 749 \N +28756 2025-05-24 23:36:30.901832+00 2025-05-24 23:36:30.901838+00 f t ADELANTO 15500.00 4 749 \N +30797 2025-05-26 02:14:14.051663+00 2025-05-26 02:14:14.051671+00 f t SUBTOTAL 46000.00 1 804 \N +30798 2025-05-26 02:14:14.053772+00 2025-05-26 02:14:14.053784+00 f t DESCUENTO 0.00 2 804 \N +30799 2025-05-26 02:14:14.055453+00 2025-05-26 02:14:14.055483+00 f t TOTAL 46000.00 3 804 \N +30800 2025-05-26 02:14:14.057051+00 2025-05-26 02:14:14.057061+00 f t ADELANTO 11000.00 4 804 \N +30825 2025-05-26 04:22:52.32595+00 2025-05-26 04:22:52.325962+00 f t SUBTOTAL 70000.00 1 805 \N +30826 2025-05-26 04:22:52.3281+00 2025-05-26 04:22:52.328111+00 f t DESCUENTO 0.00 2 805 \N +30827 2025-05-26 04:22:52.329807+00 2025-05-26 04:22:52.329815+00 f t TOTAL 70000.00 3 805 \N +30828 2025-05-26 04:22:52.331072+00 2025-05-26 04:22:52.331078+00 f t ADELANTO 10000.00 4 805 \N +28785 2025-05-25 00:32:53.78202+00 2025-05-25 00:32:53.782031+00 f t SUBTOTAL 46000.00 1 750 \N +28786 2025-05-25 00:32:53.7839+00 2025-05-25 00:32:53.783907+00 f t DESCUENTO 0.00 2 750 \N +28787 2025-05-25 00:32:53.785356+00 2025-05-25 00:32:53.785363+00 f t TOTAL 46000.00 3 750 \N +28788 2025-05-25 00:32:53.786665+00 2025-05-25 00:32:53.786671+00 f t ADELANTO 11000.00 4 750 \N +28821 2025-05-25 00:36:42.792689+00 2025-05-25 00:36:42.792698+00 f t SUBTOTAL 46000.00 1 751 \N +28822 2025-05-25 00:36:42.794251+00 2025-05-25 00:36:42.794258+00 f t DESCUENTO 0.00 2 751 \N +28823 2025-05-25 00:36:42.79538+00 2025-05-25 00:36:42.795386+00 f t TOTAL 46000.00 3 751 \N +28824 2025-05-25 00:36:42.796523+00 2025-05-25 00:36:42.796529+00 f t ADELANTO 9500.00 4 751 \N +28829 2025-05-25 01:05:38.712036+00 2025-05-25 01:05:38.712049+00 f t SUBTOTAL 0.00 1 752 \N +28830 2025-05-25 01:05:38.714053+00 2025-05-25 01:05:38.714061+00 f t DESCUENTO 0.00 2 752 \N +28831 2025-05-25 01:05:38.715655+00 2025-05-25 01:05:38.715663+00 f t TOTAL 0.00 3 752 \N +28832 2025-05-25 01:05:38.716943+00 2025-05-25 01:05:38.716949+00 f t ADELANTO 0.00 4 752 \N +28857 2025-05-25 01:07:50.104781+00 2025-05-25 01:07:50.104792+00 f t SUBTOTAL 46000.00 1 753 \N +28858 2025-05-25 01:07:50.106596+00 2025-05-25 01:07:50.106603+00 f t DESCUENTO 0.00 2 753 \N +28859 2025-05-25 01:07:50.108129+00 2025-05-25 01:07:50.10814+00 f t TOTAL 46000.00 3 753 \N +28860 2025-05-25 01:07:50.109699+00 2025-05-25 01:07:50.109708+00 f t ADELANTO 9500.00 4 753 \N +29629 2025-05-25 14:48:07.904488+00 2025-05-25 14:48:07.904501+00 f t SUBTOTAL 46000.00 1 772 \N +29630 2025-05-25 14:48:07.90691+00 2025-05-25 14:48:07.906926+00 f t DESCUENTO 0.00 2 772 \N +29631 2025-05-25 14:48:07.909048+00 2025-05-25 14:48:07.909059+00 f t TOTAL 46000.00 3 772 \N +29632 2025-05-25 14:48:07.910789+00 2025-05-25 14:48:07.910798+00 f t ADELANTO 9500.00 4 772 \N +28885 2025-05-25 01:17:41.145561+00 2025-05-25 01:17:41.14557+00 f t SUBTOTAL 46000.00 1 754 \N +28886 2025-05-25 01:17:41.147326+00 2025-05-25 01:17:41.147335+00 f t DESCUENTO 0.00 2 754 \N +28887 2025-05-25 01:17:41.148654+00 2025-05-25 01:17:41.148661+00 f t TOTAL 46000.00 3 754 \N +28888 2025-05-25 01:17:41.149761+00 2025-05-25 01:17:41.149767+00 f t ADELANTO 11000.00 4 754 \N +29665 2025-05-25 15:39:34.977028+00 2025-05-25 15:39:34.977042+00 f t SUBTOTAL 38500.00 1 773 \N +29666 2025-05-25 15:39:34.979056+00 2025-05-25 15:39:34.979064+00 f t DESCUENTO 0.00 2 773 \N +29667 2025-05-25 15:39:34.980528+00 2025-05-25 15:39:34.980538+00 f t TOTAL 38500.00 3 773 \N +29668 2025-05-25 15:39:34.981808+00 2025-05-25 15:39:34.981815+00 f t ADELANTO 8500.00 4 773 \N +28913 2025-05-25 01:29:07.773417+00 2025-05-25 01:29:07.773426+00 f t SUBTOTAL 46000.00 1 755 \N +28914 2025-05-25 01:29:07.775464+00 2025-05-25 01:29:07.775496+00 f t DESCUENTO 0.00 2 755 \N +28915 2025-05-25 01:29:07.777034+00 2025-05-25 01:29:07.777044+00 f t TOTAL 46000.00 3 755 \N +28916 2025-05-25 01:29:07.778646+00 2025-05-25 01:29:07.778655+00 f t ADELANTO 11000.00 4 755 \N +112632 2025-07-04 11:41:34.938843+00 2025-07-04 11:41:34.93885+00 f t ADELANTO 10000.00 4 2967 \N +29849 2025-05-25 16:29:53.402098+00 2025-05-25 16:29:53.402107+00 f t SUBTOTAL 38500.00 1 777 \N +29850 2025-05-25 16:29:53.404221+00 2025-05-25 16:29:53.404233+00 f t DESCUENTO 0.00 2 777 \N +29851 2025-05-25 16:29:53.405849+00 2025-05-25 16:29:53.405859+00 f t TOTAL 38500.00 3 777 \N +29852 2025-05-25 16:29:53.407261+00 2025-05-25 16:29:53.407268+00 f t ADELANTO 8500.00 4 777 \N +29893 2025-05-25 17:26:26.217549+00 2025-05-25 17:26:26.217558+00 f t SUBTOTAL 0.00 1 780 \N +29894 2025-05-25 17:26:26.21898+00 2025-05-25 17:26:26.218987+00 f t DESCUENTO 0.00 2 780 \N +29895 2025-05-25 17:26:26.220368+00 2025-05-25 17:26:26.220374+00 f t TOTAL 0.00 3 780 \N +29896 2025-05-25 17:26:26.221487+00 2025-05-25 17:26:26.221493+00 f t ADELANTO 0.00 4 780 \N +29221 2025-05-25 05:43:17.552464+00 2025-05-25 05:43:17.552473+00 f t SUBTOTAL 38500.00 1 763 \N +29222 2025-05-25 05:43:17.554208+00 2025-05-25 05:43:17.554216+00 f t DESCUENTO 0.00 2 763 \N +29223 2025-05-25 05:43:17.555298+00 2025-05-25 05:43:17.555303+00 f t TOTAL 38500.00 3 763 \N +29224 2025-05-25 05:43:17.556436+00 2025-05-25 05:43:17.556444+00 f t ADELANTO 8500.00 4 763 \N +29249 2025-05-25 10:20:17.209238+00 2025-05-25 10:20:17.20925+00 f t SUBTOTAL 38500.00 1 764 \N +29250 2025-05-25 10:20:17.211312+00 2025-05-25 10:20:17.211322+00 f t DESCUENTO 0.00 2 764 \N +29251 2025-05-25 10:20:17.212997+00 2025-05-25 10:20:17.213006+00 f t TOTAL 38500.00 3 764 \N +28961 2025-05-25 03:09:06.777206+00 2025-05-25 03:09:06.777218+00 f t SUBTOTAL 67000.00 1 756 \N +28962 2025-05-25 03:09:06.779456+00 2025-05-25 03:09:06.779467+00 f t DESCUENTO 0.00 2 756 \N +28963 2025-05-25 03:09:06.781574+00 2025-05-25 03:09:06.781586+00 f t TOTAL 67000.00 3 756 \N +28964 2025-05-25 03:09:06.784711+00 2025-05-25 03:09:06.784723+00 f t ADELANTO 18000.00 4 756 \N +29252 2025-05-25 10:20:17.214624+00 2025-05-25 10:20:17.214631+00 f t ADELANTO 8500.00 4 764 \N +28969 2025-05-25 03:25:57.124121+00 2025-05-25 03:25:57.12413+00 f t SUBTOTAL 0.00 1 757 \N +28970 2025-05-25 03:25:57.125649+00 2025-05-25 03:25:57.125658+00 f t DESCUENTO 0.00 2 757 \N +28971 2025-05-25 03:25:57.127192+00 2025-05-25 03:25:57.127199+00 f t TOTAL 0.00 3 757 \N +28972 2025-05-25 03:25:57.128331+00 2025-05-25 03:25:57.128336+00 f t ADELANTO 0.00 4 757 \N +28977 2025-05-25 03:28:20.039112+00 2025-05-25 03:28:20.039126+00 f t SUBTOTAL 0.00 1 758 \N +28978 2025-05-25 03:28:20.041297+00 2025-05-25 03:28:20.041309+00 f t DESCUENTO 0.00 2 758 \N +28979 2025-05-25 03:28:20.043745+00 2025-05-25 03:28:20.043757+00 f t TOTAL 0.00 3 758 \N +28980 2025-05-25 03:28:20.045983+00 2025-05-25 03:28:20.045995+00 f t ADELANTO 0.00 4 758 \N +28993 2025-05-25 03:29:37.83912+00 2025-05-25 03:29:37.83913+00 f t SUBTOTAL 0.00 1 759 \N +28994 2025-05-25 03:29:37.841582+00 2025-05-25 03:29:37.841589+00 f t DESCUENTO 0.00 2 759 \N +28995 2025-05-25 03:29:37.842829+00 2025-05-25 03:29:37.842834+00 f t TOTAL 0.00 3 759 \N +28996 2025-05-25 03:29:37.84469+00 2025-05-25 03:29:37.844696+00 f t ADELANTO 0.00 4 759 \N +29325 2025-05-25 10:41:05.125918+00 2025-05-25 10:41:05.125927+00 f t SUBTOTAL 46000.00 1 765 \N +29326 2025-05-25 10:41:05.127855+00 2025-05-25 10:41:05.127866+00 f t DESCUENTO 0.00 2 765 \N +29327 2025-05-25 10:41:05.129593+00 2025-05-25 10:41:05.129603+00 f t TOTAL 46000.00 3 765 \N +29328 2025-05-25 10:41:05.131257+00 2025-05-25 10:41:05.131267+00 f t ADELANTO 9500.00 4 765 \N +29389 2025-05-25 13:28:40.161575+00 2025-05-25 13:28:40.161583+00 f t SUBTOTAL 38500.00 1 767 \N +29390 2025-05-25 13:28:40.163195+00 2025-05-25 13:28:40.163202+00 f t DESCUENTO 0.00 2 767 \N +29391 2025-05-25 13:28:40.164296+00 2025-05-25 13:28:40.164302+00 f t TOTAL 38500.00 3 767 \N +29392 2025-05-25 13:28:40.165258+00 2025-05-25 13:28:40.165264+00 f t ADELANTO 8500.00 4 767 \N +29445 2025-05-25 13:56:04.135042+00 2025-05-25 13:56:04.135054+00 f t SUBTOTAL 0.00 1 769 \N +29446 2025-05-25 13:56:04.137349+00 2025-05-25 13:56:04.137359+00 f t DESCUENTO 0.00 2 769 \N +29447 2025-05-25 13:56:04.138798+00 2025-05-25 13:56:04.138806+00 f t TOTAL 0.00 3 769 \N +29448 2025-05-25 13:56:04.140252+00 2025-05-25 13:56:04.140259+00 f t ADELANTO 0.00 4 769 \N +29529 2025-05-25 14:00:49.61434+00 2025-05-25 14:00:49.61435+00 f t SUBTOTAL 59500.00 1 770 \N +29530 2025-05-25 14:00:49.616535+00 2025-05-25 14:00:49.61655+00 f t DESCUENTO 0.00 2 770 \N +29531 2025-05-25 14:00:49.618223+00 2025-05-25 14:00:49.618233+00 f t TOTAL 59500.00 3 770 \N +29532 2025-05-25 14:00:49.619696+00 2025-05-25 14:00:49.619702+00 f t ADELANTO 15500.00 4 770 \N +30233 2025-05-25 19:37:48.256206+00 2025-05-25 19:37:48.256216+00 f t SUBTOTAL 38500.00 1 789 \N +30234 2025-05-25 19:37:48.258079+00 2025-05-25 19:37:48.258086+00 f t DESCUENTO 0.00 2 789 \N +30235 2025-05-25 19:37:48.259467+00 2025-05-25 19:37:48.259473+00 f t TOTAL 38500.00 3 789 \N +30236 2025-05-25 19:37:48.26076+00 2025-05-25 19:37:48.260766+00 f t ADELANTO 8500.00 4 789 \N +29113 2025-05-25 03:32:35.485013+00 2025-05-25 03:32:35.485026+00 f t SUBTOTAL 0.00 1 761 \N +29114 2025-05-25 03:32:35.487224+00 2025-05-25 03:32:35.487237+00 f t DESCUENTO 0.00 2 761 \N +29115 2025-05-25 03:32:35.489381+00 2025-05-25 03:32:35.489395+00 f t TOTAL 0.00 3 761 \N +29116 2025-05-25 03:32:35.491132+00 2025-05-25 03:32:35.491143+00 f t ADELANTO 0.00 4 761 \N +30313 2025-05-25 19:57:22.113951+00 2025-05-25 19:57:22.11396+00 f t SUBTOTAL 46000.00 1 791 \N +30314 2025-05-25 19:57:22.115583+00 2025-05-25 19:57:22.11559+00 f t DESCUENTO 0.00 2 791 \N +30315 2025-05-25 19:57:22.116944+00 2025-05-25 19:57:22.116952+00 f t TOTAL 46000.00 3 791 \N +30316 2025-05-25 19:57:22.118038+00 2025-05-25 19:57:22.118043+00 f t ADELANTO 9500.00 4 791 \N +29589 2025-05-25 14:11:33.315201+00 2025-05-25 14:11:33.315214+00 f t SUBTOTAL 0.00 1 771 \N +29590 2025-05-25 14:11:33.317713+00 2025-05-25 14:11:33.317724+00 f t DESCUENTO 0.00 2 771 \N +29591 2025-05-25 14:11:33.319184+00 2025-05-25 14:11:33.319194+00 f t TOTAL 0.00 3 771 \N +29592 2025-05-25 14:11:33.320575+00 2025-05-25 14:11:33.320583+00 f t ADELANTO 0.00 4 771 \N +30357 2025-05-25 21:22:04.396812+00 2025-05-25 21:22:04.396822+00 f t SUBTOTAL 46000.00 1 793 \N +30358 2025-05-25 21:22:04.398438+00 2025-05-25 21:22:04.398445+00 f t DESCUENTO 0.00 2 793 \N +30359 2025-05-25 21:22:04.399688+00 2025-05-25 21:22:04.399697+00 f t TOTAL 46000.00 3 793 \N +30360 2025-05-25 21:22:04.400954+00 2025-05-25 21:22:04.400961+00 f t ADELANTO 11000.00 4 793 \N +30385 2025-05-25 21:39:40.454636+00 2025-05-25 21:39:40.454644+00 f t SUBTOTAL 59500.00 1 794 \N +30386 2025-05-25 21:39:40.456488+00 2025-05-25 21:39:40.456496+00 f t DESCUENTO 0.00 2 794 \N +30387 2025-05-25 21:39:40.457804+00 2025-05-25 21:39:40.45781+00 f t TOTAL 59500.00 3 794 \N +30388 2025-05-25 21:39:40.458983+00 2025-05-25 21:39:40.458989+00 f t ADELANTO 15500.00 4 794 \N +29689 2025-05-25 15:52:33.598122+00 2025-05-25 15:52:33.598133+00 f t SUBTOTAL 0.00 1 774 \N +29690 2025-05-25 15:52:33.600401+00 2025-05-25 15:52:33.600409+00 f t DESCUENTO 0.00 2 774 \N +29691 2025-05-25 15:52:33.601769+00 2025-05-25 15:52:33.601778+00 f t TOTAL 0.00 3 774 \N +29692 2025-05-25 15:52:33.603068+00 2025-05-25 15:52:33.603076+00 f t ADELANTO 0.00 4 774 \N +29717 2025-05-25 16:07:05.845056+00 2025-05-25 16:07:05.845065+00 f t SUBTOTAL 38500.00 1 775 \N +29718 2025-05-25 16:07:05.847238+00 2025-05-25 16:07:05.847249+00 f t DESCUENTO 0.00 2 775 \N +29719 2025-05-25 16:07:05.849273+00 2025-05-25 16:07:05.849285+00 f t TOTAL 38500.00 3 775 \N +29720 2025-05-25 16:07:05.851172+00 2025-05-25 16:07:05.851183+00 f t ADELANTO 8500.00 4 775 \N +32825 2025-05-27 00:39:20.557482+00 2025-05-27 00:39:20.557491+00 f t SUBTOTAL 46000.00 1 853 \N +32826 2025-05-27 00:39:20.559228+00 2025-05-27 00:39:20.559234+00 f t DESCUENTO 0.00 2 853 \N +32827 2025-05-27 00:39:20.560351+00 2025-05-27 00:39:20.560357+00 f t TOTAL 46000.00 3 853 \N +32828 2025-05-27 00:39:20.561423+00 2025-05-27 00:39:20.561428+00 f t ADELANTO 9500.00 4 853 \N +30573 2025-05-25 22:40:47.893619+00 2025-05-25 22:40:47.893628+00 f t SUBTOTAL 0.00 1 798 \N +30574 2025-05-25 22:40:47.895287+00 2025-05-25 22:40:47.895293+00 f t DESCUENTO 0.00 2 798 \N +30575 2025-05-25 22:40:47.896365+00 2025-05-25 22:40:47.896371+00 f t TOTAL 0.00 3 798 \N +30576 2025-05-25 22:40:47.897347+00 2025-05-25 22:40:47.897352+00 f t ADELANTO 0.00 4 798 \N +31317 2025-05-26 07:26:24.303848+00 2025-05-26 07:26:24.303861+00 f t SUBTOTAL 107250.00 1 810 \N +31318 2025-05-26 07:26:24.306183+00 2025-05-26 07:26:24.306193+00 f t DESCUENTO 0.00 2 810 \N +31319 2025-05-26 07:26:24.308337+00 2025-05-26 07:26:24.308343+00 f t TOTAL 107250.00 3 810 \N +31320 2025-05-26 07:26:24.31001+00 2025-05-26 07:26:24.31002+00 f t ADELANTO 22250.00 4 810 \N +29901 2025-05-25 17:40:28.610269+00 2025-05-25 17:40:28.610283+00 f t SUBTOTAL 0.00 1 781 \N +29902 2025-05-25 17:40:28.612893+00 2025-05-25 17:40:28.612905+00 f t DESCUENTO 0.00 2 781 \N +29903 2025-05-25 17:40:28.614704+00 2025-05-25 17:40:28.614714+00 f t TOTAL 0.00 3 781 \N +29904 2025-05-25 17:40:28.617053+00 2025-05-25 17:40:28.617065+00 f t ADELANTO 0.00 4 781 \N +31345 2025-05-26 07:28:35.625396+00 2025-05-26 07:28:35.625405+00 f t SUBTOTAL 46000.00 1 811 \N +31346 2025-05-26 07:28:35.627512+00 2025-05-26 07:28:35.627524+00 f t DESCUENTO 0.00 2 811 \N +31347 2025-05-26 07:28:35.629126+00 2025-05-26 07:28:35.629133+00 f t TOTAL 46000.00 3 811 \N +31348 2025-05-26 07:28:35.630436+00 2025-05-26 07:28:35.630446+00 f t ADELANTO 9500.00 4 811 \N +30649 2025-05-26 00:28:23.672964+00 2025-05-26 00:28:23.672977+00 f t SUBTOTAL 46000.00 1 799 \N +30650 2025-05-26 00:28:23.675229+00 2025-05-26 00:28:23.675237+00 f t DESCUENTO 0.00 2 799 \N +30651 2025-05-26 00:28:23.676844+00 2025-05-26 00:28:23.676852+00 f t TOTAL 46000.00 3 799 \N +30652 2025-05-26 00:28:23.678331+00 2025-05-26 00:28:23.678338+00 f t ADELANTO 9500.00 4 799 \N +29973 2025-05-25 17:55:25.630155+00 2025-05-25 17:55:25.630164+00 f t SUBTOTAL 46000.00 1 783 \N +29974 2025-05-25 17:55:25.632034+00 2025-05-25 17:55:25.632044+00 f t DESCUENTO 0.00 2 783 \N +29975 2025-05-25 17:55:25.633782+00 2025-05-25 17:55:25.63379+00 f t TOTAL 46000.00 3 783 \N +29976 2025-05-25 17:55:25.635619+00 2025-05-25 17:55:25.635631+00 f t ADELANTO 11000.00 4 783 \N +30001 2025-05-25 17:56:11.128288+00 2025-05-25 17:56:11.1283+00 f t SUBTOTAL 46000.00 1 784 \N +30002 2025-05-25 17:56:11.130499+00 2025-05-25 17:56:11.13051+00 f t DESCUENTO 0.00 2 784 \N +30003 2025-05-25 17:56:11.13256+00 2025-05-25 17:56:11.132568+00 f t TOTAL 46000.00 3 784 \N +30004 2025-05-25 17:56:11.1343+00 2025-05-25 17:56:11.134308+00 f t ADELANTO 11000.00 4 784 \N +29805 2025-05-25 16:27:02.3535+00 2025-05-25 16:27:02.353513+00 f t SUBTOTAL 38500.00 1 776 \N +29806 2025-05-25 16:27:02.355595+00 2025-05-25 16:27:02.355606+00 f t DESCUENTO 0.00 2 776 \N +29807 2025-05-25 16:27:02.357212+00 2025-05-25 16:27:02.357219+00 f t TOTAL 38500.00 3 776 \N +29808 2025-05-25 16:27:02.358419+00 2025-05-25 16:27:02.358427+00 f t ADELANTO 8500.00 4 776 \N +31413 2025-05-26 09:30:03.602595+00 2025-05-26 09:30:03.602608+00 f t SUBTOTAL 103000.00 1 813 \N +31414 2025-05-26 09:30:03.611952+00 2025-05-26 09:30:03.611968+00 f t DESCUENTO 0.00 2 813 \N +31415 2025-05-26 09:30:03.61459+00 2025-05-26 09:30:03.614605+00 f t TOTAL 103000.00 3 813 \N +31416 2025-05-26 09:30:03.617483+00 2025-05-26 09:30:03.617498+00 f t ADELANTO 21500.00 4 813 \N +31441 2025-05-26 09:30:59.484856+00 2025-05-26 09:30:59.484868+00 f t SUBTOTAL 46000.00 1 814 \N +31442 2025-05-26 09:30:59.486765+00 2025-05-26 09:30:59.486775+00 f t DESCUENTO 0.00 2 814 \N +31443 2025-05-26 09:30:59.48852+00 2025-05-26 09:30:59.488529+00 f t TOTAL 46000.00 3 814 \N +31444 2025-05-26 09:30:59.489872+00 2025-05-26 09:30:59.48988+00 f t ADELANTO 9500.00 4 814 \N +30065 2025-05-25 18:03:51.207031+00 2025-05-25 18:03:51.20704+00 f t SUBTOTAL 46000.00 1 785 \N +30066 2025-05-25 18:03:51.208888+00 2025-05-25 18:03:51.208899+00 f t DESCUENTO 0.00 2 785 \N +30067 2025-05-25 18:03:51.21029+00 2025-05-25 18:03:51.2103+00 f t TOTAL 46000.00 3 785 \N +30068 2025-05-25 18:03:51.211884+00 2025-05-25 18:03:51.211894+00 f t ADELANTO 11000.00 4 785 \N +30093 2025-05-25 18:17:31.473037+00 2025-05-25 18:17:31.473046+00 f t SUBTOTAL 46000.00 1 786 \N +30094 2025-05-25 18:17:31.474568+00 2025-05-25 18:17:31.474579+00 f t DESCUENTO 0.00 2 786 \N +30095 2025-05-25 18:17:31.476696+00 2025-05-25 18:17:31.476704+00 f t TOTAL 46000.00 3 786 \N +30096 2025-05-25 18:17:31.478399+00 2025-05-25 18:17:31.478406+00 f t ADELANTO 9500.00 4 786 \N +30121 2025-05-25 18:29:00.310153+00 2025-05-25 18:29:00.310162+00 f t SUBTOTAL 87500.00 1 787 \N +30122 2025-05-25 18:29:00.311994+00 2025-05-25 18:29:00.312003+00 f t DESCUENTO 0.00 2 787 \N +30123 2025-05-25 18:29:00.313756+00 2025-05-25 18:29:00.313767+00 f t TOTAL 87500.00 3 787 \N +30124 2025-05-25 18:29:00.315286+00 2025-05-25 18:29:00.315294+00 f t ADELANTO 37500.00 4 787 \N +30161 2025-05-25 19:08:07.009992+00 2025-05-25 19:08:07.010007+00 f t SUBTOTAL 59500.00 1 788 \N +30162 2025-05-25 19:08:07.012907+00 2025-05-25 19:08:07.012921+00 f t DESCUENTO 0.00 2 788 \N +30163 2025-05-25 19:08:07.014894+00 2025-05-25 19:08:07.014906+00 f t TOTAL 59500.00 3 788 \N +30164 2025-05-25 19:08:07.016693+00 2025-05-25 19:08:07.016706+00 f t ADELANTO 15500.00 4 788 \N +31541 2025-05-26 12:54:37.634752+00 2025-05-26 12:54:37.634762+00 f t SUBTOTAL 0.00 1 815 \N +30241 2025-05-25 19:53:44.086251+00 2025-05-25 19:53:44.086263+00 f t SUBTOTAL 0.00 1 790 \N +30242 2025-05-25 19:53:44.087427+00 2025-05-25 19:53:44.087432+00 f t DESCUENTO 0.00 2 790 \N +30243 2025-05-25 19:53:44.088452+00 2025-05-25 19:53:44.088458+00 f t TOTAL 0.00 3 790 \N +30244 2025-05-25 19:53:44.08935+00 2025-05-25 19:53:44.089355+00 f t ADELANTO 0.00 4 790 \N +30857 2025-05-26 04:52:52.617563+00 2025-05-26 04:52:52.617577+00 f t SUBTOTAL 57000.00 1 806 \N +30858 2025-05-26 04:52:52.619346+00 2025-05-26 04:52:52.619383+00 f t DESCUENTO 0.00 2 806 \N +30859 2025-05-26 04:52:52.620825+00 2025-05-26 04:52:52.620834+00 f t TOTAL 57000.00 3 806 \N +30860 2025-05-26 04:52:52.622025+00 2025-05-26 04:52:52.622032+00 f t ADELANTO 12000.00 4 806 \N +30321 2025-05-25 21:04:05.955663+00 2025-05-25 21:04:05.955677+00 f t SUBTOTAL 0.00 1 792 \N +30322 2025-05-25 21:04:05.957808+00 2025-05-25 21:04:05.95782+00 f t DESCUENTO 0.00 2 792 \N +30323 2025-05-25 21:04:05.959829+00 2025-05-25 21:04:05.959841+00 f t TOTAL 0.00 3 792 \N +30324 2025-05-25 21:04:05.96143+00 2025-05-25 21:04:05.96144+00 f t ADELANTO 0.00 4 792 \N +30925 2025-05-26 04:57:48.943555+00 2025-05-26 04:57:48.943567+00 f t SUBTOTAL 38500.00 1 807 \N +30926 2025-05-26 04:57:48.945512+00 2025-05-26 04:57:48.945523+00 f t DESCUENTO 0.00 2 807 \N +30927 2025-05-26 04:57:48.947267+00 2025-05-26 04:57:48.947277+00 f t TOTAL 38500.00 3 807 \N +30928 2025-05-26 04:57:48.949116+00 2025-05-26 04:57:48.949126+00 f t ADELANTO 8500.00 4 807 \N +30497 2025-05-25 21:54:18.644606+00 2025-05-25 21:54:18.644619+00 f t SUBTOTAL 46000.00 1 795 \N +30498 2025-05-25 21:54:18.646322+00 2025-05-25 21:54:18.646331+00 f t DESCUENTO 0.00 2 795 \N +30499 2025-05-25 21:54:18.647592+00 2025-05-25 21:54:18.647598+00 f t TOTAL 46000.00 3 795 \N +30500 2025-05-25 21:54:18.648817+00 2025-05-25 21:54:18.648822+00 f t ADELANTO 9500.00 4 795 \N +32065 2025-05-26 16:59:15.855985+00 2025-05-26 16:59:15.855993+00 f t SUBTOTAL 46000.00 1 830 \N +32066 2025-05-26 16:59:15.85742+00 2025-05-26 16:59:15.857427+00 f t DESCUENTO 0.00 2 830 \N +32067 2025-05-26 16:59:15.858518+00 2025-05-26 16:59:15.858523+00 f t TOTAL 46000.00 3 830 \N +32068 2025-05-26 16:59:15.85957+00 2025-05-26 16:59:15.859574+00 f t ADELANTO 9500.00 4 830 \N +32833 2025-05-27 01:13:34.861729+00 2025-05-27 01:13:34.861742+00 f t SUBTOTAL 0.00 1 854 \N +32834 2025-05-27 01:13:34.863662+00 2025-05-27 01:13:34.863672+00 f t DESCUENTO 0.00 2 854 \N +32835 2025-05-27 01:13:34.865996+00 2025-05-27 01:13:34.866006+00 f t TOTAL 0.00 3 854 \N +32836 2025-05-27 01:13:34.868115+00 2025-05-27 01:13:34.868124+00 f t ADELANTO 0.00 4 854 \N +31353 2025-05-26 09:15:44.159091+00 2025-05-26 09:15:44.159101+00 f t SUBTOTAL 0.00 1 812 \N +31354 2025-05-26 09:15:44.160523+00 2025-05-26 09:15:44.160529+00 f t DESCUENTO 0.00 2 812 \N +31355 2025-05-26 09:15:44.161834+00 2025-05-26 09:15:44.161841+00 f t TOTAL 0.00 3 812 \N +31356 2025-05-26 09:15:44.163109+00 2025-05-26 09:15:44.163119+00 f t ADELANTO 0.00 4 812 \N +30657 2025-05-26 00:56:54.190799+00 2025-05-26 00:56:54.19081+00 f t SUBTOTAL 0.00 1 800 \N +30658 2025-05-26 00:56:54.192503+00 2025-05-26 00:56:54.192514+00 f t DESCUENTO 0.00 2 800 \N +30659 2025-05-26 00:56:54.193996+00 2025-05-26 00:56:54.194005+00 f t TOTAL 0.00 3 800 \N +30660 2025-05-26 00:56:54.195289+00 2025-05-26 00:56:54.195298+00 f t ADELANTO 0.00 4 800 \N +30673 2025-05-26 00:58:16.137552+00 2025-05-26 00:58:16.137565+00 f t SUBTOTAL 0.00 1 801 \N +30674 2025-05-26 00:58:16.140125+00 2025-05-26 00:58:16.140136+00 f t DESCUENTO 0.00 2 801 \N +30675 2025-05-26 00:58:16.141989+00 2025-05-26 00:58:16.141999+00 f t TOTAL 0.00 3 801 \N +30676 2025-05-26 00:58:16.143758+00 2025-05-26 00:58:16.143767+00 f t ADELANTO 0.00 4 801 \N +30701 2025-05-26 01:14:35.926753+00 2025-05-26 01:14:35.926766+00 f t SUBTOTAL 38500.00 1 802 \N +30702 2025-05-26 01:14:35.92895+00 2025-05-26 01:14:35.92896+00 f t DESCUENTO 0.00 2 802 \N +30703 2025-05-26 01:14:35.930636+00 2025-05-26 01:14:35.930675+00 f t TOTAL 38500.00 3 802 \N +30704 2025-05-26 01:14:35.932391+00 2025-05-26 01:14:35.9324+00 f t ADELANTO 8500.00 4 802 \N +32149 2025-05-26 18:52:31.448505+00 2025-05-26 18:52:31.448513+00 f t SUBTOTAL 0.00 1 833 \N +32150 2025-05-26 18:52:31.450079+00 2025-05-26 18:52:31.450087+00 f t DESCUENTO 0.00 2 833 \N +32151 2025-05-26 18:52:31.451483+00 2025-05-26 18:52:31.451489+00 f t TOTAL 0.00 3 833 \N +32152 2025-05-26 18:52:31.452821+00 2025-05-26 18:52:31.452829+00 f t ADELANTO 0.00 4 833 \N +32953 2025-05-27 01:40:26.605549+00 2025-05-27 01:40:26.60556+00 f t SUBTOTAL 46000.00 1 857 \N +30753 2025-05-26 01:54:05.965318+00 2025-05-26 01:54:05.965342+00 f t SUBTOTAL 46000.00 1 803 \N +30754 2025-05-26 01:54:05.967703+00 2025-05-26 01:54:05.967714+00 f t DESCUENTO 0.00 2 803 \N +30755 2025-05-26 01:54:05.969942+00 2025-05-26 01:54:05.969953+00 f t TOTAL 46000.00 3 803 \N +30756 2025-05-26 01:54:05.971779+00 2025-05-26 01:54:05.971789+00 f t ADELANTO 9500.00 4 803 \N +32954 2025-05-27 01:40:26.607729+00 2025-05-27 01:40:26.60774+00 f t DESCUENTO 0.00 2 857 \N +32955 2025-05-27 01:40:26.609776+00 2025-05-27 01:40:26.609787+00 f t TOTAL 46000.00 3 857 \N +32956 2025-05-27 01:40:26.611847+00 2025-05-27 01:40:26.611858+00 f t ADELANTO 9500.00 4 857 \N +35437 2025-05-27 18:40:32.185121+00 2025-05-27 18:40:32.185133+00 f t SUBTOTAL 59500.00 1 905 \N +35438 2025-05-27 18:40:32.187118+00 2025-05-27 18:40:32.187126+00 f t DESCUENTO 0.00 2 905 \N +35439 2025-05-27 18:40:32.188567+00 2025-05-27 18:40:32.188573+00 f t TOTAL 59500.00 3 905 \N +35440 2025-05-27 18:40:32.190011+00 2025-05-27 18:40:32.190017+00 f t ADELANTO 15500.00 4 905 \N +33033 2025-05-27 02:27:54.797531+00 2025-05-27 02:27:54.79754+00 f t SUBTOTAL 0.00 1 859 \N +33034 2025-05-27 02:27:54.798838+00 2025-05-27 02:27:54.798844+00 f t DESCUENTO 0.00 2 859 \N +32313 2025-05-26 20:08:22.44515+00 2025-05-26 20:08:22.445162+00 f t SUBTOTAL 38500.00 1 835 \N +32314 2025-05-26 20:08:22.447015+00 2025-05-26 20:08:22.447025+00 f t DESCUENTO 0.00 2 835 \N +32315 2025-05-26 20:08:22.448481+00 2025-05-26 20:08:22.448489+00 f t TOTAL 38500.00 3 835 \N +32316 2025-05-26 20:08:22.449867+00 2025-05-26 20:08:22.449875+00 f t ADELANTO 8500.00 4 835 \N +31542 2025-05-26 12:54:37.636954+00 2025-05-26 12:54:37.636967+00 f t DESCUENTO 0.00 2 815 \N +31543 2025-05-26 12:54:37.638525+00 2025-05-26 12:54:37.638534+00 f t TOTAL 0.00 3 815 \N +31544 2025-05-26 12:54:37.639998+00 2025-05-26 12:54:37.640007+00 f t ADELANTO 0.00 4 815 \N +32341 2025-05-26 20:16:53.960016+00 2025-05-26 20:16:53.960025+00 f t SUBTOTAL 46000.00 1 836 \N +32342 2025-05-26 20:16:53.962021+00 2025-05-26 20:16:53.962028+00 f t DESCUENTO 0.00 2 836 \N +32343 2025-05-26 20:16:53.963425+00 2025-05-26 20:16:53.963431+00 f t TOTAL 46000.00 3 836 \N +32344 2025-05-26 20:16:53.964852+00 2025-05-26 20:16:53.964858+00 f t ADELANTO 9500.00 4 836 \N +31569 2025-05-26 13:32:00.142534+00 2025-05-26 13:32:00.142543+00 f t SUBTOTAL 25000.00 1 816 \N +31570 2025-05-26 13:32:00.144465+00 2025-05-26 13:32:00.144474+00 f t DESCUENTO 0.00 2 816 \N +31571 2025-05-26 13:32:00.145823+00 2025-05-26 13:32:00.145831+00 f t TOTAL 25000.00 3 816 \N +31572 2025-05-26 13:32:00.146925+00 2025-05-26 13:32:00.14693+00 f t ADELANTO 25000.00 4 816 \N +32381 2025-05-26 21:42:42.314798+00 2025-05-26 21:42:42.314808+00 f t SUBTOTAL 0.00 1 840 \N +32382 2025-05-26 21:42:42.316387+00 2025-05-26 21:42:42.316397+00 f t DESCUENTO 0.00 2 840 \N +32383 2025-05-26 21:42:42.317793+00 2025-05-26 21:42:42.317799+00 f t TOTAL 0.00 3 840 \N +32384 2025-05-26 21:42:42.318928+00 2025-05-26 21:42:42.318934+00 f t ADELANTO 0.00 4 840 \N +31625 2025-05-26 13:49:08.269663+00 2025-05-26 13:49:08.269671+00 f t SUBTOTAL 38500.00 1 818 \N +31626 2025-05-26 13:49:08.271674+00 2025-05-26 13:49:08.271682+00 f t DESCUENTO 0.00 2 818 \N +31627 2025-05-26 13:49:08.273238+00 2025-05-26 13:49:08.273245+00 f t TOTAL 38500.00 3 818 \N +31628 2025-05-26 13:49:08.274581+00 2025-05-26 13:49:08.274587+00 f t ADELANTO 8500.00 4 818 \N +31649 2025-05-26 14:20:59.983016+00 2025-05-26 14:20:59.983026+00 f t SUBTOTAL 0.00 1 820 \N +31650 2025-05-26 14:20:59.984478+00 2025-05-26 14:20:59.984485+00 f t DESCUENTO 0.00 2 820 \N +31651 2025-05-26 14:20:59.985592+00 2025-05-26 14:20:59.985598+00 f t TOTAL 0.00 3 820 \N +31652 2025-05-26 14:20:59.986604+00 2025-05-26 14:20:59.986611+00 f t ADELANTO 0.00 4 820 \N +32517 2025-05-26 22:04:16.292098+00 2025-05-26 22:04:16.292113+00 f t SUBTOTAL 0.00 1 844 \N +32518 2025-05-26 22:04:16.295003+00 2025-05-26 22:04:16.295011+00 f t DESCUENTO 0.00 2 844 \N +32519 2025-05-26 22:04:16.296675+00 2025-05-26 22:04:16.296686+00 f t TOTAL 0.00 3 844 \N +32520 2025-05-26 22:04:16.29888+00 2025-05-26 22:04:16.298892+00 f t ADELANTO 0.00 4 844 \N +31777 2025-05-26 15:33:49.946916+00 2025-05-26 15:33:49.946925+00 f t SUBTOTAL 59500.00 1 824 \N +31778 2025-05-26 15:33:49.948689+00 2025-05-26 15:33:49.9487+00 f t DESCUENTO 0.00 2 824 \N +31779 2025-05-26 15:33:49.950068+00 2025-05-26 15:33:49.950074+00 f t TOTAL 59500.00 3 824 \N +31780 2025-05-26 15:33:49.951063+00 2025-05-26 15:33:49.951068+00 f t ADELANTO 15500.00 4 824 \N +31857 2025-05-26 16:08:47.537579+00 2025-05-26 16:08:47.537589+00 f t SUBTOTAL 0.00 1 826 \N +31858 2025-05-26 16:08:47.539646+00 2025-05-26 16:08:47.539659+00 f t DESCUENTO 0.00 2 826 \N +31859 2025-05-26 16:08:47.541416+00 2025-05-26 16:08:47.541426+00 f t TOTAL 0.00 3 826 \N +31860 2025-05-26 16:08:47.542828+00 2025-05-26 16:08:47.542837+00 f t ADELANTO 0.00 4 826 \N +44429 2025-06-01 05:55:05.7039+00 2025-06-01 05:55:05.70391+00 f t SUBTOTAL 0.00 1 1129 \N +44430 2025-06-01 05:55:05.70609+00 2025-06-01 05:55:05.7061+00 f t DESCUENTO 0.00 2 1129 \N +44431 2025-06-01 05:55:05.708682+00 2025-06-01 05:55:05.708692+00 f t TOTAL 0.00 3 1129 \N +32841 2025-05-27 01:15:22.636968+00 2025-05-27 01:15:22.636977+00 f t SUBTOTAL 0.00 1 855 \N +32842 2025-05-27 01:15:22.638669+00 2025-05-27 01:15:22.638681+00 f t DESCUENTO 0.00 2 855 \N +32843 2025-05-27 01:15:22.64102+00 2025-05-27 01:15:22.641028+00 f t TOTAL 0.00 3 855 \N +32844 2025-05-27 01:15:22.642518+00 2025-05-27 01:15:22.642526+00 f t ADELANTO 0.00 4 855 \N +33649 2025-05-27 04:54:58.953227+00 2025-05-27 04:54:58.953237+00 f t SUBTOTAL 0.00 1 869 \N +33650 2025-05-27 04:54:58.955307+00 2025-05-27 04:54:58.955315+00 f t DESCUENTO 0.00 2 869 \N +33651 2025-05-27 04:54:58.956686+00 2025-05-27 04:54:58.956693+00 f t TOTAL 0.00 3 869 \N +33652 2025-05-27 04:54:58.957903+00 2025-05-27 04:54:58.957909+00 f t ADELANTO 0.00 4 869 \N +32893 2025-05-27 01:23:20.483855+00 2025-05-27 01:23:20.483867+00 f t SUBTOTAL 46000.00 1 856 \N +32894 2025-05-27 01:23:20.48634+00 2025-05-27 01:23:20.486353+00 f t DESCUENTO 0.00 2 856 \N +32895 2025-05-27 01:23:20.488318+00 2025-05-27 01:23:20.488329+00 f t TOTAL 46000.00 3 856 \N +32896 2025-05-27 01:23:20.490133+00 2025-05-27 01:23:20.490146+00 f t ADELANTO 9500.00 4 856 \N +31225 2025-05-26 05:30:12.098449+00 2025-05-26 05:30:12.098461+00 f t SUBTOTAL 88500.00 1 808 \N +31226 2025-05-26 05:30:12.100733+00 2025-05-26 05:30:12.100742+00 f t DESCUENTO 0.00 2 808 \N +31227 2025-05-26 05:30:12.102257+00 2025-05-26 05:30:12.102266+00 f t TOTAL 88500.00 3 808 \N +31228 2025-05-26 05:30:12.103713+00 2025-05-26 05:30:12.103719+00 f t ADELANTO 53500.00 4 808 \N +32157 2025-05-26 19:18:07.028828+00 2025-05-26 19:18:07.02884+00 f t SUBTOTAL 0.00 1 834 \N +32158 2025-05-26 19:18:07.030817+00 2025-05-26 19:18:07.030827+00 f t DESCUENTO 0.00 2 834 \N +32159 2025-05-26 19:18:07.032502+00 2025-05-26 19:18:07.032512+00 f t TOTAL 0.00 3 834 \N +32160 2025-05-26 19:18:07.034188+00 2025-05-26 19:18:07.034204+00 f t ADELANTO 0.00 4 834 \N +31261 2025-05-26 07:24:38.27478+00 2025-05-26 07:24:38.274793+00 f t SUBTOTAL 38500.00 1 809 \N +31262 2025-05-26 07:24:38.276854+00 2025-05-26 07:24:38.276864+00 f t DESCUENTO 0.00 2 809 \N +31263 2025-05-26 07:24:38.278486+00 2025-05-26 07:24:38.278496+00 f t TOTAL 38500.00 3 809 \N +31264 2025-05-26 07:24:38.280234+00 2025-05-26 07:24:38.280243+00 f t ADELANTO 8500.00 4 809 \N +33035 2025-05-27 02:27:54.80005+00 2025-05-27 02:27:54.800056+00 f t TOTAL 0.00 3 859 \N +33036 2025-05-27 02:27:54.801308+00 2025-05-27 02:27:54.801313+00 f t ADELANTO 0.00 4 859 \N +31577 2025-05-26 13:45:15.397921+00 2025-05-26 13:45:15.397931+00 f t SUBTOTAL 0.00 1 817 \N +31578 2025-05-26 13:45:15.399259+00 2025-05-26 13:45:15.399266+00 f t DESCUENTO 0.00 2 817 \N +31579 2025-05-26 13:45:15.400451+00 2025-05-26 13:45:15.400458+00 f t TOTAL 0.00 3 817 \N +31580 2025-05-26 13:45:15.401546+00 2025-05-26 13:45:15.401551+00 f t ADELANTO 0.00 4 817 \N +32349 2025-05-26 20:20:43.993593+00 2025-05-26 20:20:43.993602+00 f t SUBTOTAL 0.00 1 837 \N +32350 2025-05-26 20:20:43.995011+00 2025-05-26 20:20:43.995018+00 f t DESCUENTO 0.00 2 837 \N +32351 2025-05-26 20:20:43.996184+00 2025-05-26 20:20:43.996189+00 f t TOTAL 0.00 3 837 \N +32352 2025-05-26 20:20:43.997246+00 2025-05-26 20:20:43.997251+00 f t ADELANTO 0.00 4 837 \N +32365 2025-05-26 20:58:59.29549+00 2025-05-26 20:58:59.295499+00 f t SUBTOTAL 0.00 1 838 \N +32366 2025-05-26 20:58:59.297751+00 2025-05-26 20:58:59.297758+00 f t DESCUENTO 0.00 2 838 \N +32367 2025-05-26 20:58:59.298906+00 2025-05-26 20:58:59.298911+00 f t TOTAL 0.00 3 838 \N +32368 2025-05-26 20:58:59.300026+00 2025-05-26 20:58:59.30003+00 f t ADELANTO 0.00 4 838 \N +31641 2025-05-26 14:15:42.837237+00 2025-05-26 14:15:42.837247+00 f t SUBTOTAL 0.00 1 819 \N +31642 2025-05-26 14:15:42.839045+00 2025-05-26 14:15:42.839055+00 f t DESCUENTO 0.00 2 819 \N +31643 2025-05-26 14:15:42.84022+00 2025-05-26 14:15:42.840227+00 f t TOTAL 0.00 3 819 \N +31644 2025-05-26 14:15:42.8411+00 2025-05-26 14:15:42.841106+00 f t ADELANTO 0.00 4 819 \N +31689 2025-05-26 14:24:01.929932+00 2025-05-26 14:24:01.929944+00 f t SUBTOTAL 46000.00 1 821 \N +31690 2025-05-26 14:24:01.933487+00 2025-05-26 14:24:01.9335+00 f t DESCUENTO 0.00 2 821 \N +31691 2025-05-26 14:24:01.936072+00 2025-05-26 14:24:01.936085+00 f t TOTAL 46000.00 3 821 \N +31692 2025-05-26 14:24:01.93829+00 2025-05-26 14:24:01.938299+00 f t ADELANTO 11000.00 4 821 \N +31717 2025-05-26 14:41:10.056455+00 2025-05-26 14:41:10.056464+00 f t SUBTOTAL 59500.00 1 822 \N +31718 2025-05-26 14:41:10.058167+00 2025-05-26 14:41:10.058175+00 f t DESCUENTO 0.00 2 822 \N +31719 2025-05-26 14:41:10.059328+00 2025-05-26 14:41:10.059335+00 f t TOTAL 59500.00 3 822 \N +31720 2025-05-26 14:41:10.06048+00 2025-05-26 14:41:10.060487+00 f t ADELANTO 15500.00 4 822 \N +31745 2025-05-26 14:53:27.595257+00 2025-05-26 14:53:27.595274+00 f t SUBTOTAL 38500.00 1 823 \N +31746 2025-05-26 14:53:27.596962+00 2025-05-26 14:53:27.596972+00 f t DESCUENTO 0.00 2 823 \N +31747 2025-05-26 14:53:27.598376+00 2025-05-26 14:53:27.598382+00 f t TOTAL 38500.00 3 823 \N +31748 2025-05-26 14:53:27.599455+00 2025-05-26 14:53:27.59946+00 f t ADELANTO 8500.00 4 823 \N +32549 2025-05-26 22:23:56.327619+00 2025-05-26 22:23:56.327633+00 f t SUBTOTAL 38500.00 1 845 \N +32550 2025-05-26 22:23:56.329858+00 2025-05-26 22:23:56.329869+00 f t DESCUENTO 0.00 2 845 \N +32551 2025-05-26 22:23:56.331447+00 2025-05-26 22:23:56.331454+00 f t TOTAL 38500.00 3 845 \N +32552 2025-05-26 22:23:56.333038+00 2025-05-26 22:23:56.333046+00 f t ADELANTO 8500.00 4 845 \N +32629 2025-05-26 23:21:36.141798+00 2025-05-26 23:21:36.14181+00 f t SUBTOTAL 38500.00 1 847 \N +32630 2025-05-26 23:21:36.143762+00 2025-05-26 23:21:36.143772+00 f t DESCUENTO 0.00 2 847 \N +32631 2025-05-26 23:21:36.1455+00 2025-05-26 23:21:36.145543+00 f t TOTAL 38500.00 3 847 \N +32632 2025-05-26 23:21:36.14716+00 2025-05-26 23:21:36.147168+00 f t ADELANTO 8500.00 4 847 \N +31849 2025-05-26 16:05:37.311634+00 2025-05-26 16:05:37.311646+00 f t SUBTOTAL 178500.00 1 825 \N +31850 2025-05-26 16:05:37.31355+00 2025-05-26 16:05:37.313561+00 f t DESCUENTO 0.00 2 825 \N +31851 2025-05-26 16:05:37.315021+00 2025-05-26 16:05:37.315029+00 f t TOTAL 178500.00 3 825 \N +31852 2025-05-26 16:05:37.316787+00 2025-05-26 16:05:37.316797+00 f t ADELANTO 96000.00 4 825 \N +32709 2025-05-26 23:35:12.788293+00 2025-05-26 23:35:12.788304+00 f t SUBTOTAL 88500.00 1 849 \N +32710 2025-05-26 23:35:12.790463+00 2025-05-26 23:35:12.790476+00 f t DESCUENTO 0.00 2 849 \N +32711 2025-05-26 23:35:12.792212+00 2025-05-26 23:35:12.792219+00 f t TOTAL 88500.00 3 849 \N +32712 2025-05-26 23:35:12.793621+00 2025-05-26 23:35:12.79363+00 f t ADELANTO 53500.00 4 849 \N +32737 2025-05-26 23:35:45.914055+00 2025-05-26 23:35:45.914067+00 f t SUBTOTAL 95000.00 1 850 \N +32738 2025-05-26 23:35:45.91653+00 2025-05-26 23:35:45.916542+00 f t DESCUENTO 0.00 2 850 \N +32739 2025-05-26 23:35:45.918448+00 2025-05-26 23:35:45.918458+00 f t TOTAL 95000.00 3 850 \N +32740 2025-05-26 23:35:45.92045+00 2025-05-26 23:35:45.92046+00 f t ADELANTO 10000.00 4 850 \N +32781 2025-05-27 00:37:50.805123+00 2025-05-27 00:37:50.805132+00 f t SUBTOTAL 46000.00 1 852 \N +32782 2025-05-27 00:37:50.806947+00 2025-05-27 00:37:50.806954+00 f t DESCUENTO 0.00 2 852 \N +32783 2025-05-27 00:37:50.808387+00 2025-05-27 00:37:50.808393+00 f t TOTAL 46000.00 3 852 \N +32784 2025-05-27 00:37:50.809546+00 2025-05-27 00:37:50.809551+00 f t ADELANTO 9500.00 4 852 \N +33629 2025-05-27 04:32:58.364847+00 2025-05-27 04:32:58.364855+00 f t SUBTOTAL 59500.00 1 868 \N +33630 2025-05-27 04:32:58.366887+00 2025-05-27 04:32:58.366895+00 f t DESCUENTO 0.00 2 868 \N +33631 2025-05-27 04:32:58.368329+00 2025-05-27 04:32:58.368335+00 f t TOTAL 59500.00 3 868 \N +33632 2025-05-27 04:32:58.369758+00 2025-05-27 04:32:58.369767+00 f t ADELANTO 15500.00 4 868 \N +41445 2025-05-30 20:51:34.605065+00 2025-05-30 20:51:34.605076+00 f t SUBTOTAL 59500.00 1 1053 \N +36061 2025-05-28 00:57:59.264384+00 2025-05-28 00:57:59.264394+00 f t SUBTOTAL 0.00 1 919 \N +33689 2025-05-27 05:25:33.349508+00 2025-05-27 05:25:33.349516+00 f t SUBTOTAL 38500.00 1 870 \N +33690 2025-05-27 05:25:33.351311+00 2025-05-27 05:25:33.351322+00 f t DESCUENTO 0.00 2 870 \N +33691 2025-05-27 05:25:33.36248+00 2025-05-27 05:25:33.362492+00 f t TOTAL 38500.00 3 870 \N +33692 2025-05-27 05:25:33.366603+00 2025-05-27 05:25:33.366613+00 f t ADELANTO 8500.00 4 870 \N +36062 2025-05-28 00:57:59.266758+00 2025-05-28 00:57:59.266767+00 f t DESCUENTO 0.00 2 919 \N +36063 2025-05-28 00:57:59.268324+00 2025-05-28 00:57:59.268334+00 f t TOTAL 0.00 3 919 \N +32113 2025-05-26 17:15:02.266577+00 2025-05-26 17:15:02.26659+00 f t SUBTOTAL 38500.00 1 831 \N +32114 2025-05-26 17:15:02.283399+00 2025-05-26 17:15:02.283425+00 f t DESCUENTO 0.00 2 831 \N +32115 2025-05-26 17:15:02.286238+00 2025-05-26 17:15:02.28625+00 f t TOTAL 38500.00 3 831 \N +32116 2025-05-26 17:15:02.291267+00 2025-05-26 17:15:02.291282+00 f t ADELANTO 8500.00 4 831 \N +36064 2025-05-28 00:57:59.270026+00 2025-05-28 00:57:59.270035+00 f t ADELANTO 0.00 4 919 \N +32141 2025-05-26 18:34:43.310834+00 2025-05-26 18:34:43.310849+00 f t SUBTOTAL 46000.00 1 832 \N +32142 2025-05-26 18:34:43.312426+00 2025-05-26 18:34:43.312434+00 f t DESCUENTO 0.00 2 832 \N +32143 2025-05-26 18:34:43.313605+00 2025-05-26 18:34:43.313611+00 f t TOTAL 46000.00 3 832 \N +32144 2025-05-26 18:34:43.314646+00 2025-05-26 18:34:43.314651+00 f t ADELANTO 9500.00 4 832 \N +31961 2025-05-26 16:11:16.935541+00 2025-05-26 16:11:16.935552+00 f t SUBTOTAL 38500.00 1 827 \N +31962 2025-05-26 16:11:16.937372+00 2025-05-26 16:11:16.937379+00 f t DESCUENTO 0.00 2 827 \N +31963 2025-05-26 16:11:16.938682+00 2025-05-26 16:11:16.93869+00 f t TOTAL 38500.00 3 827 \N +31964 2025-05-26 16:11:16.940305+00 2025-05-26 16:11:16.940313+00 f t ADELANTO 8500.00 4 827 \N +33025 2025-05-27 02:04:13.028956+00 2025-05-27 02:04:13.028968+00 f t SUBTOTAL 59500.00 1 858 \N +33026 2025-05-27 02:04:13.032189+00 2025-05-27 02:04:13.032201+00 f t DESCUENTO 0.00 2 858 \N +33027 2025-05-27 02:04:13.033836+00 2025-05-27 02:04:13.033845+00 f t TOTAL 59500.00 3 858 \N +33028 2025-05-27 02:04:13.035328+00 2025-05-27 02:04:13.035336+00 f t ADELANTO 15500.00 4 858 \N +31997 2025-05-26 16:26:58.167047+00 2025-05-26 16:26:58.167058+00 f t SUBTOTAL 25000.00 1 828 \N +31998 2025-05-26 16:26:58.169529+00 2025-05-26 16:26:58.16954+00 f t DESCUENTO 0.00 2 828 \N +31999 2025-05-26 16:26:58.171549+00 2025-05-26 16:26:58.171559+00 f t TOTAL 25000.00 3 828 \N +32000 2025-05-26 16:26:58.17358+00 2025-05-26 16:26:58.17359+00 f t ADELANTO 25000.00 4 828 \N +33041 2025-05-27 02:28:28.421622+00 2025-05-27 02:28:28.421635+00 f t SUBTOTAL 0.00 1 860 \N +33042 2025-05-27 02:28:28.423706+00 2025-05-27 02:28:28.423717+00 f t DESCUENTO 0.00 2 860 \N +33043 2025-05-27 02:28:28.425912+00 2025-05-27 02:28:28.425923+00 f t TOTAL 0.00 3 860 \N +33044 2025-05-27 02:28:28.427841+00 2025-05-27 02:28:28.427852+00 f t ADELANTO 0.00 4 860 \N +32373 2025-05-26 21:41:11.699273+00 2025-05-26 21:41:11.699283+00 f t SUBTOTAL 0.00 1 839 \N +32374 2025-05-26 21:41:11.701713+00 2025-05-26 21:41:11.701723+00 f t DESCUENTO 0.00 2 839 \N +32375 2025-05-26 21:41:11.703168+00 2025-05-26 21:41:11.703174+00 f t TOTAL 0.00 3 839 \N +32376 2025-05-26 21:41:11.70446+00 2025-05-26 21:41:11.704481+00 f t ADELANTO 0.00 4 839 \N +32469 2025-05-26 21:48:17.873677+00 2025-05-26 21:48:17.873701+00 f t SUBTOTAL 38500.00 1 841 \N +32470 2025-05-26 21:48:17.876851+00 2025-05-26 21:48:17.876863+00 f t DESCUENTO 0.00 2 841 \N +32471 2025-05-26 21:48:17.87871+00 2025-05-26 21:48:17.878719+00 f t TOTAL 38500.00 3 841 \N +32472 2025-05-26 21:48:17.880033+00 2025-05-26 21:48:17.880041+00 f t ADELANTO 8500.00 4 841 \N +32481 2025-05-26 21:49:17.439063+00 2025-05-26 21:49:17.43908+00 f t SUBTOTAL 0.00 1 842 \N +32482 2025-05-26 21:49:17.441343+00 2025-05-26 21:49:17.441351+00 f t DESCUENTO 0.00 2 842 \N +32483 2025-05-26 21:49:17.442703+00 2025-05-26 21:49:17.442709+00 f t TOTAL 0.00 3 842 \N +32484 2025-05-26 21:49:17.443894+00 2025-05-26 21:49:17.443901+00 f t ADELANTO 0.00 4 842 \N +33109 2025-05-27 02:38:06.030564+00 2025-05-27 02:38:06.030573+00 f t SUBTOTAL 59500.00 1 861 \N +33110 2025-05-27 02:38:06.032556+00 2025-05-27 02:38:06.032594+00 f t DESCUENTO 0.00 2 861 \N +32509 2025-05-26 21:51:43.471157+00 2025-05-26 21:51:43.471165+00 f t SUBTOTAL 46000.00 1 843 \N +32510 2025-05-26 21:51:43.47292+00 2025-05-26 21:51:43.47293+00 f t DESCUENTO 0.00 2 843 \N +32511 2025-05-26 21:51:43.474525+00 2025-05-26 21:51:43.474534+00 f t TOTAL 46000.00 3 843 \N +32512 2025-05-26 21:51:43.475989+00 2025-05-26 21:51:43.475995+00 f t ADELANTO 9500.00 4 843 \N +33111 2025-05-27 02:38:06.034115+00 2025-05-27 02:38:06.034124+00 f t TOTAL 59500.00 3 861 \N +33112 2025-05-27 02:38:06.035711+00 2025-05-27 02:38:06.035719+00 f t ADELANTO 15500.00 4 861 \N +33117 2025-05-27 02:40:14.345391+00 2025-05-27 02:40:14.345403+00 f t SUBTOTAL 0.00 1 862 \N +33118 2025-05-27 02:40:14.34766+00 2025-05-27 02:40:14.347671+00 f t DESCUENTO 0.00 2 862 \N +33119 2025-05-27 02:40:14.350405+00 2025-05-27 02:40:14.350415+00 f t TOTAL 0.00 3 862 \N +33120 2025-05-27 02:40:14.357129+00 2025-05-27 02:40:14.357139+00 f t ADELANTO 0.00 4 862 \N +32557 2025-05-26 23:05:46.301092+00 2025-05-26 23:05:46.301103+00 f t SUBTOTAL 0.00 1 846 \N +32558 2025-05-26 23:05:46.302804+00 2025-05-26 23:05:46.302813+00 f t DESCUENTO 0.00 2 846 \N +32559 2025-05-26 23:05:46.304465+00 2025-05-26 23:05:46.30449+00 f t TOTAL 0.00 3 846 \N +32560 2025-05-26 23:05:46.305874+00 2025-05-26 23:05:46.305882+00 f t ADELANTO 0.00 4 846 \N +32637 2025-05-26 23:29:45.398918+00 2025-05-26 23:29:45.398928+00 f t SUBTOTAL 0.00 1 848 \N +32638 2025-05-26 23:29:45.400432+00 2025-05-26 23:29:45.400439+00 f t DESCUENTO 0.00 2 848 \N +32639 2025-05-26 23:29:45.402599+00 2025-05-26 23:29:45.402607+00 f t TOTAL 0.00 3 848 \N +32640 2025-05-26 23:29:45.40422+00 2025-05-26 23:29:45.40424+00 f t ADELANTO 0.00 4 848 \N +33165 2025-05-27 02:45:22.177093+00 2025-05-27 02:45:22.17712+00 f t SUBTOTAL 25000.00 1 863 \N +33166 2025-05-27 02:45:22.179209+00 2025-05-27 02:45:22.179222+00 f t DESCUENTO 0.00 2 863 \N +33167 2025-05-27 02:45:22.180977+00 2025-05-27 02:45:22.180986+00 f t TOTAL 25000.00 3 863 \N +33168 2025-05-27 02:45:22.182331+00 2025-05-27 02:45:22.182338+00 f t ADELANTO 25000.00 4 863 \N +32745 2025-05-27 00:31:01.69487+00 2025-05-27 00:31:01.694881+00 f t SUBTOTAL 0.00 1 851 \N +32746 2025-05-27 00:31:01.696933+00 2025-05-27 00:31:01.696942+00 f t DESCUENTO 0.00 2 851 \N +32747 2025-05-27 00:31:01.698949+00 2025-05-27 00:31:01.698961+00 f t TOTAL 0.00 3 851 \N +32748 2025-05-27 00:31:01.700844+00 2025-05-27 00:31:01.700853+00 f t ADELANTO 0.00 4 851 \N +33197 2025-05-27 02:51:43.63579+00 2025-05-27 02:51:43.635799+00 f t SUBTOTAL 38500.00 1 864 \N +33198 2025-05-27 02:51:43.63758+00 2025-05-27 02:51:43.637588+00 f t DESCUENTO 0.00 2 864 \N +33199 2025-05-27 02:51:43.638903+00 2025-05-27 02:51:43.638909+00 f t TOTAL 38500.00 3 864 \N +33200 2025-05-27 02:51:43.6401+00 2025-05-27 02:51:43.640106+00 f t ADELANTO 8500.00 4 864 \N +40561 2025-05-30 12:29:12.479946+00 2025-05-30 12:29:12.479956+00 f t SUBTOTAL 67000.00 1 1032 \N +40562 2025-05-30 12:29:12.481915+00 2025-05-30 12:29:12.481924+00 f t DESCUENTO 0.00 2 1032 \N +40563 2025-05-30 12:29:12.483501+00 2025-05-30 12:29:12.483511+00 f t TOTAL 67000.00 3 1032 \N +40564 2025-05-30 12:29:12.485175+00 2025-05-30 12:29:12.485182+00 f t ADELANTO 18000.00 4 1032 \N +36093 2025-05-28 01:00:03.314654+00 2025-05-28 01:00:03.314669+00 f t SUBTOTAL 46000.00 1 920 \N +36094 2025-05-28 01:00:03.322073+00 2025-05-28 01:00:03.32216+00 f t DESCUENTO 0.00 2 920 \N +36095 2025-05-28 01:00:03.325177+00 2025-05-28 01:00:03.32519+00 f t TOTAL 46000.00 3 920 \N +36096 2025-05-28 01:00:03.328396+00 2025-05-28 01:00:03.32841+00 f t ADELANTO 9500.00 4 920 \N +34461 2025-05-27 13:19:03.185889+00 2025-05-27 13:19:03.185902+00 f t SUBTOTAL 57000.00 1 878 \N +34462 2025-05-27 13:19:03.190096+00 2025-05-27 13:19:03.190114+00 f t DESCUENTO 0.00 2 878 \N +34463 2025-05-27 13:19:03.192897+00 2025-05-27 13:19:03.192911+00 f t TOTAL 57000.00 3 878 \N +34464 2025-05-27 13:19:03.201349+00 2025-05-27 13:19:03.20136+00 f t ADELANTO 12000.00 4 878 \N +36121 2025-05-28 01:53:12.281781+00 2025-05-28 01:53:12.281794+00 f t SUBTOTAL 59500.00 1 921 \N +36122 2025-05-28 01:53:12.283831+00 2025-05-28 01:53:12.283839+00 f t DESCUENTO 0.00 2 921 \N +36123 2025-05-28 01:53:12.285339+00 2025-05-28 01:53:12.285348+00 f t TOTAL 59500.00 3 921 \N +36124 2025-05-28 01:53:12.286883+00 2025-05-28 01:53:12.28689+00 f t ADELANTO 15500.00 4 921 \N +33261 2025-05-27 03:21:25.593225+00 2025-05-27 03:21:25.593238+00 f t SUBTOTAL 67000.00 1 865 \N +33262 2025-05-27 03:21:25.595094+00 2025-05-27 03:21:25.595102+00 f t DESCUENTO 0.00 2 865 \N +33263 2025-05-27 03:21:25.596492+00 2025-05-27 03:21:25.596501+00 f t TOTAL 67000.00 3 865 \N +33264 2025-05-27 03:21:25.598039+00 2025-05-27 03:21:25.598048+00 f t ADELANTO 18000.00 4 865 \N +33841 2025-05-27 08:21:18.610459+00 2025-05-27 08:21:18.610472+00 f t SUBTOTAL 0.00 1 871 \N +33842 2025-05-27 08:21:18.612947+00 2025-05-27 08:21:18.612954+00 f t DESCUENTO 0.00 2 871 \N +33843 2025-05-27 08:21:18.614511+00 2025-05-27 08:21:18.614517+00 f t TOTAL 0.00 3 871 \N +33844 2025-05-27 08:21:18.615927+00 2025-05-27 08:21:18.615934+00 f t ADELANTO 0.00 4 871 \N +34517 2025-05-27 13:52:32.476293+00 2025-05-27 13:52:32.476302+00 f t SUBTOTAL 0.00 1 880 \N +34518 2025-05-27 13:52:32.478276+00 2025-05-27 13:52:32.478285+00 f t DESCUENTO 0.00 2 880 \N +34519 2025-05-27 13:52:32.47957+00 2025-05-27 13:52:32.479578+00 f t TOTAL 0.00 3 880 \N +34520 2025-05-27 13:52:32.480627+00 2025-05-27 13:52:32.480634+00 f t ADELANTO 0.00 4 880 \N +34545 2025-05-27 13:55:20.093149+00 2025-05-27 13:55:20.093161+00 f t SUBTOTAL 85000.00 1 881 \N +34546 2025-05-27 13:55:20.095248+00 2025-05-27 13:55:20.095258+00 f t DESCUENTO 0.00 2 881 \N +34547 2025-05-27 13:55:20.096955+00 2025-05-27 13:55:20.096964+00 f t TOTAL 85000.00 3 881 \N +34548 2025-05-27 13:55:20.098518+00 2025-05-27 13:55:20.098523+00 f t ADELANTO 50000.00 4 881 \N +36233 2025-05-28 02:12:50.501823+00 2025-05-28 02:12:50.501833+00 f t SUBTOTAL 0.00 1 925 \N +36234 2025-05-28 02:12:50.503914+00 2025-05-28 02:12:50.503922+00 f t DESCUENTO 0.00 2 925 \N +36235 2025-05-28 02:12:50.505314+00 2025-05-28 02:12:50.505322+00 f t TOTAL 0.00 3 925 \N +36236 2025-05-28 02:12:50.506648+00 2025-05-28 02:12:50.506654+00 f t ADELANTO 0.00 4 925 \N +33317 2025-05-27 04:25:56.832951+00 2025-05-27 04:25:56.832958+00 f t SUBTOTAL 0.00 1 867 \N +33318 2025-05-27 04:25:56.834236+00 2025-05-27 04:25:56.834243+00 f t DESCUENTO 0.00 2 867 \N +33319 2025-05-27 04:25:56.83515+00 2025-05-27 04:25:56.835155+00 f t TOTAL 0.00 3 867 \N +33320 2025-05-27 04:25:56.835991+00 2025-05-27 04:25:56.835996+00 f t ADELANTO 0.00 4 867 \N +34581 2025-05-27 14:25:03.44579+00 2025-05-27 14:25:03.445804+00 f t SUBTOTAL 0.00 1 882 \N +34582 2025-05-27 14:25:03.449801+00 2025-05-27 14:25:03.449814+00 f t DESCUENTO 0.00 2 882 \N +34583 2025-05-27 14:25:03.452928+00 2025-05-27 14:25:03.452941+00 f t TOTAL 0.00 3 882 \N +34584 2025-05-27 14:25:03.456283+00 2025-05-27 14:25:03.456294+00 f t ADELANTO 0.00 4 882 \N +34597 2025-05-27 15:13:49.787976+00 2025-05-27 15:13:49.787985+00 f t SUBTOTAL 0.00 1 884 \N +34598 2025-05-27 15:13:49.789579+00 2025-05-27 15:13:49.789586+00 f t DESCUENTO 0.00 2 884 \N +34599 2025-05-27 15:13:49.790954+00 2025-05-27 15:13:49.79096+00 f t TOTAL 0.00 3 884 \N +34600 2025-05-27 15:13:49.792477+00 2025-05-27 15:13:49.792486+00 f t ADELANTO 0.00 4 884 \N +34741 2025-05-27 15:43:05.334862+00 2025-05-27 15:43:05.334876+00 f t SUBTOTAL 0.00 1 886 \N +34742 2025-05-27 15:43:05.337214+00 2025-05-27 15:43:05.337226+00 f t DESCUENTO 0.00 2 886 \N +34743 2025-05-27 15:43:05.339301+00 2025-05-27 15:43:05.339312+00 f t TOTAL 0.00 3 886 \N +34744 2025-05-27 15:43:05.341356+00 2025-05-27 15:43:05.341368+00 f t ADELANTO 0.00 4 886 \N +34205 2025-05-27 11:18:14.323453+00 2025-05-27 11:18:14.323462+00 f t SUBTOTAL 67000.00 1 873 \N +34206 2025-05-27 11:18:14.325171+00 2025-05-27 11:18:14.325178+00 f t DESCUENTO 0.00 2 873 \N +34207 2025-05-27 11:18:14.326742+00 2025-05-27 11:18:14.326749+00 f t TOTAL 67000.00 3 873 \N +34208 2025-05-27 11:18:14.328326+00 2025-05-27 11:18:14.328331+00 f t ADELANTO 18000.00 4 873 \N +34769 2025-05-27 15:46:01.707034+00 2025-05-27 15:46:01.707047+00 f t SUBTOTAL 0.00 1 889 \N +34770 2025-05-27 15:46:01.70974+00 2025-05-27 15:46:01.709753+00 f t DESCUENTO 0.00 2 889 \N +34771 2025-05-27 15:46:01.712447+00 2025-05-27 15:46:01.712459+00 f t TOTAL 0.00 3 889 \N +34772 2025-05-27 15:46:01.714614+00 2025-05-27 15:46:01.714623+00 f t ADELANTO 0.00 4 889 \N +34789 2025-05-27 15:55:09.673819+00 2025-05-27 15:55:09.673831+00 f t SUBTOTAL 0.00 1 890 \N +34790 2025-05-27 15:55:09.676232+00 2025-05-27 15:55:09.676244+00 f t DESCUENTO 0.00 2 890 \N +34791 2025-05-27 15:55:09.678007+00 2025-05-27 15:55:09.678017+00 f t TOTAL 0.00 3 890 \N +34792 2025-05-27 15:55:09.679596+00 2025-05-27 15:55:09.679603+00 f t ADELANTO 0.00 4 890 \N +35853 2025-05-27 22:41:44.877518+00 2025-05-27 22:41:44.877529+00 f t SUBTOTAL 38500.00 1 914 \N +35854 2025-05-27 22:41:44.879484+00 2025-05-27 22:41:44.879494+00 f t DESCUENTO 0.00 2 914 \N +35855 2025-05-27 22:41:44.880984+00 2025-05-27 22:41:44.880992+00 f t TOTAL 38500.00 3 914 \N +35856 2025-05-27 22:41:44.882429+00 2025-05-27 22:41:44.882436+00 f t ADELANTO 8500.00 4 914 \N +34857 2025-05-27 16:01:59.628731+00 2025-05-27 16:01:59.628739+00 f t SUBTOTAL 59500.00 1 891 \N +34858 2025-05-27 16:01:59.630613+00 2025-05-27 16:01:59.63062+00 f t DESCUENTO 0.00 2 891 \N +34859 2025-05-27 16:01:59.632192+00 2025-05-27 16:01:59.632199+00 f t TOTAL 59500.00 3 891 \N +34860 2025-05-27 16:01:59.633669+00 2025-05-27 16:01:59.633677+00 f t ADELANTO 15500.00 4 891 \N +35961 2025-05-27 22:52:17.136546+00 2025-05-27 22:52:17.136559+00 f t SUBTOTAL 107250.00 1 915 \N +35962 2025-05-27 22:52:17.138954+00 2025-05-27 22:52:17.138966+00 f t DESCUENTO 0.00 2 915 \N +35963 2025-05-27 22:52:17.140914+00 2025-05-27 22:52:17.140921+00 f t TOTAL 107250.00 3 915 \N +35964 2025-05-27 22:52:17.142937+00 2025-05-27 22:52:17.142946+00 f t ADELANTO 22250.00 4 915 \N +35989 2025-05-27 23:32:05.557322+00 2025-05-27 23:32:05.557335+00 f t SUBTOTAL 38500.00 1 916 \N +35990 2025-05-27 23:32:05.564684+00 2025-05-27 23:32:05.564697+00 f t DESCUENTO 0.00 2 916 \N +35991 2025-05-27 23:32:05.569695+00 2025-05-27 23:32:05.56971+00 f t TOTAL 38500.00 3 916 \N +35992 2025-05-27 23:32:05.573027+00 2025-05-27 23:32:05.573041+00 f t ADELANTO 8500.00 4 916 \N +39585 2025-05-29 22:44:09.774022+00 2025-05-29 22:44:09.774033+00 f t SUBTOTAL 0.00 1 1006 \N +39586 2025-05-29 22:44:09.77568+00 2025-05-29 22:44:09.775688+00 f t DESCUENTO 0.00 2 1006 \N +39587 2025-05-29 22:44:09.777158+00 2025-05-29 22:44:09.777168+00 f t TOTAL 0.00 3 1006 \N +39588 2025-05-29 22:44:09.778391+00 2025-05-29 22:44:09.778401+00 f t ADELANTO 0.00 4 1006 \N +34429 2025-05-27 12:51:43.951451+00 2025-05-27 12:51:43.951459+00 f t SUBTOTAL 25000.00 1 877 \N +34430 2025-05-27 12:51:43.953683+00 2025-05-27 12:51:43.953691+00 f t DESCUENTO 0.00 2 877 \N +34431 2025-05-27 12:51:43.955268+00 2025-05-27 12:51:43.955276+00 f t TOTAL 25000.00 3 877 \N +34432 2025-05-27 12:51:43.960375+00 2025-05-27 12:51:43.960384+00 f t ADELANTO 25000.00 4 877 \N +36141 2025-05-28 01:54:44.721075+00 2025-05-28 01:54:44.721084+00 f t SUBTOTAL 0.00 1 922 \N +36142 2025-05-28 01:54:44.723481+00 2025-05-28 01:54:44.723489+00 f t DESCUENTO 0.00 2 922 \N +36143 2025-05-28 01:54:44.724595+00 2025-05-28 01:54:44.724602+00 f t TOTAL 0.00 3 922 \N +36144 2025-05-28 01:54:44.725503+00 2025-05-28 01:54:44.725509+00 f t ADELANTO 0.00 4 922 \N +34501 2025-05-27 13:46:25.723525+00 2025-05-27 13:46:25.723534+00 f t SUBTOTAL 38500.00 1 879 \N +34502 2025-05-27 13:46:25.725293+00 2025-05-27 13:46:25.725299+00 f t DESCUENTO 0.00 2 879 \N +34503 2025-05-27 13:46:25.726512+00 2025-05-27 13:46:25.726518+00 f t TOTAL 38500.00 3 879 \N +34504 2025-05-27 13:46:25.72759+00 2025-05-27 13:46:25.727595+00 f t ADELANTO 8500.00 4 879 \N +35473 2025-05-27 19:04:32.209511+00 2025-05-27 19:04:32.209521+00 f t SUBTOTAL 0.00 1 906 \N +35474 2025-05-27 19:04:32.211894+00 2025-05-27 19:04:32.211905+00 f t DESCUENTO 0.00 2 906 \N +35475 2025-05-27 19:04:32.213454+00 2025-05-27 19:04:32.213461+00 f t TOTAL 0.00 3 906 \N +35476 2025-05-27 19:04:32.214897+00 2025-05-27 19:04:32.214904+00 f t ADELANTO 0.00 4 906 \N +36181 2025-05-28 01:57:06.310441+00 2025-05-28 01:57:06.310455+00 f t SUBTOTAL 80500.00 1 923 \N +36182 2025-05-28 01:57:06.312601+00 2025-05-28 01:57:06.312611+00 f t DESCUENTO 0.00 2 923 \N +36183 2025-05-28 01:57:06.314077+00 2025-05-28 01:57:06.314086+00 f t TOTAL 80500.00 3 923 \N +36184 2025-05-28 01:57:06.315548+00 2025-05-28 01:57:06.315558+00 f t ADELANTO 22500.00 4 923 \N +36197 2025-05-28 02:02:30.128446+00 2025-05-28 02:02:30.128459+00 f t SUBTOTAL 0.00 1 924 \N +36198 2025-05-28 02:02:30.131515+00 2025-05-28 02:02:30.131527+00 f t DESCUENTO 0.00 2 924 \N +36199 2025-05-28 02:02:30.133808+00 2025-05-28 02:02:30.133821+00 f t TOTAL 0.00 3 924 \N +36200 2025-05-28 02:02:30.136187+00 2025-05-28 02:02:30.136201+00 f t ADELANTO 0.00 4 924 \N +34589 2025-05-27 14:48:18.826045+00 2025-05-27 14:48:18.826058+00 f t SUBTOTAL 0.00 1 883 \N +34590 2025-05-27 14:48:18.828028+00 2025-05-27 14:48:18.828038+00 f t DESCUENTO 0.00 2 883 \N +34591 2025-05-27 14:48:18.829598+00 2025-05-27 14:48:18.829651+00 f t TOTAL 0.00 3 883 \N +34592 2025-05-27 14:48:18.83093+00 2025-05-27 14:48:18.830939+00 f t ADELANTO 0.00 4 883 \N +34629 2025-05-27 15:28:17.938964+00 2025-05-27 15:28:17.938977+00 f t SUBTOTAL 46000.00 1 885 \N +34630 2025-05-27 15:28:17.941632+00 2025-05-27 15:28:17.941642+00 f t DESCUENTO 0.00 2 885 \N +34631 2025-05-27 15:28:17.943174+00 2025-05-27 15:28:17.943181+00 f t TOTAL 46000.00 3 885 \N +34632 2025-05-27 15:28:17.944729+00 2025-05-27 15:28:17.944737+00 f t ADELANTO 9500.00 4 885 \N +35709 2025-05-27 20:49:02.308574+00 2025-05-27 20:49:02.308589+00 f t SUBTOTAL 88000.00 1 910 \N +35710 2025-05-27 20:49:02.311601+00 2025-05-27 20:49:02.31161+00 f t DESCUENTO 0.00 2 910 \N +35711 2025-05-27 20:49:02.314107+00 2025-05-27 20:49:02.31412+00 f t TOTAL 88000.00 3 910 \N +35712 2025-05-27 20:49:02.316902+00 2025-05-27 20:49:02.31692+00 f t ADELANTO 25000.00 4 910 \N +35737 2025-05-27 21:57:35.148047+00 2025-05-27 21:57:35.148058+00 f t SUBTOTAL 59500.00 1 911 \N +35738 2025-05-27 21:57:35.150379+00 2025-05-27 21:57:35.150389+00 f t DESCUENTO 0.00 2 911 \N +35739 2025-05-27 21:57:35.151722+00 2025-05-27 21:57:35.151728+00 f t TOTAL 59500.00 3 911 \N +35740 2025-05-27 21:57:35.152903+00 2025-05-27 21:57:35.152909+00 f t ADELANTO 15500.00 4 911 \N +34149 2025-05-27 09:50:33.278869+00 2025-05-27 09:50:33.27888+00 f t SUBTOTAL 38500.00 1 872 \N +34150 2025-05-27 09:50:33.280452+00 2025-05-27 09:50:33.28046+00 f t DESCUENTO 0.00 2 872 \N +34151 2025-05-27 09:50:33.281504+00 2025-05-27 09:50:33.28151+00 f t TOTAL 38500.00 3 872 \N +34152 2025-05-27 09:50:33.282408+00 2025-05-27 09:50:33.282413+00 f t ADELANTO 8500.00 4 872 \N +35765 2025-05-27 22:09:05.743638+00 2025-05-27 22:09:05.743647+00 f t SUBTOTAL 38500.00 1 912 \N +35766 2025-05-27 22:09:05.7459+00 2025-05-27 22:09:05.745907+00 f t DESCUENTO 0.00 2 912 \N +35767 2025-05-27 22:09:05.747637+00 2025-05-27 22:09:05.747648+00 f t TOTAL 38500.00 3 912 \N +35768 2025-05-27 22:09:05.749627+00 2025-05-27 22:09:05.749644+00 f t ADELANTO 8500.00 4 912 \N +34737 2025-05-27 15:43:02.620549+00 2025-05-27 15:43:02.620559+00 f t SUBTOTAL 75000.00 1 887 \N +34738 2025-05-27 15:43:02.622609+00 2025-05-27 15:43:02.62262+00 f t DESCUENTO 0.00 2 887 \N +34739 2025-05-27 15:43:02.624718+00 2025-05-27 15:43:02.624729+00 f t TOTAL 75000.00 3 887 \N +34740 2025-05-27 15:43:02.626507+00 2025-05-27 15:43:02.626517+00 f t ADELANTO 10000.00 4 887 \N +34761 2025-05-27 15:43:48.672871+00 2025-05-27 15:43:48.672879+00 f t SUBTOTAL 46000.00 1 888 \N +34762 2025-05-27 15:43:48.674378+00 2025-05-27 15:43:48.674384+00 f t DESCUENTO 0.00 2 888 \N +34763 2025-05-27 15:43:48.675907+00 2025-05-27 15:43:48.675914+00 f t TOTAL 46000.00 3 888 \N +34764 2025-05-27 15:43:48.677376+00 2025-05-27 15:43:48.677382+00 f t ADELANTO 9500.00 4 888 \N +34229 2025-05-27 11:25:36.233528+00 2025-05-27 11:25:36.233538+00 f t SUBTOTAL 0.00 1 874 \N +34230 2025-05-27 11:25:36.236067+00 2025-05-27 11:25:36.236077+00 f t DESCUENTO 0.00 2 874 \N +34231 2025-05-27 11:25:36.237454+00 2025-05-27 11:25:36.237461+00 f t TOTAL 0.00 3 874 \N +34232 2025-05-27 11:25:36.238596+00 2025-05-27 11:25:36.238602+00 f t ADELANTO 0.00 4 874 \N +34265 2025-05-27 12:36:05.767246+00 2025-05-27 12:36:05.767259+00 f t SUBTOTAL 59500.00 1 875 \N +34266 2025-05-27 12:36:05.769272+00 2025-05-27 12:36:05.769278+00 f t DESCUENTO 0.00 2 875 \N +34267 2025-05-27 12:36:05.770752+00 2025-05-27 12:36:05.770762+00 f t TOTAL 59500.00 3 875 \N +34268 2025-05-27 12:36:05.772436+00 2025-05-27 12:36:05.772444+00 f t ADELANTO 15500.00 4 875 \N +34293 2025-05-27 12:39:47.265546+00 2025-05-27 12:39:47.265559+00 f t SUBTOTAL 95000.00 1 876 \N +34294 2025-05-27 12:39:47.267727+00 2025-05-27 12:39:47.267738+00 f t DESCUENTO 0.00 2 876 \N +34295 2025-05-27 12:39:47.269399+00 2025-05-27 12:39:47.269408+00 f t TOTAL 95000.00 3 876 \N +34296 2025-05-27 12:39:47.27182+00 2025-05-27 12:39:47.271831+00 f t ADELANTO 10000.00 4 876 \N +35997 2025-05-28 00:13:24.948557+00 2025-05-28 00:13:24.94857+00 f t SUBTOTAL 0.00 1 917 \N +35998 2025-05-28 00:13:24.950091+00 2025-05-28 00:13:24.950099+00 f t DESCUENTO 0.00 2 917 \N +35999 2025-05-28 00:13:24.951737+00 2025-05-28 00:13:24.951744+00 f t TOTAL 0.00 3 917 \N +36000 2025-05-28 00:13:24.953012+00 2025-05-28 00:13:24.953019+00 f t ADELANTO 0.00 4 917 \N +34897 2025-05-27 16:05:47.872538+00 2025-05-27 16:05:47.872546+00 f t SUBTOTAL 57000.00 1 892 \N +34898 2025-05-27 16:05:47.874945+00 2025-05-27 16:05:47.874956+00 f t DESCUENTO 0.00 2 892 \N +34899 2025-05-27 16:05:47.876748+00 2025-05-27 16:05:47.876759+00 f t TOTAL 57000.00 3 892 \N +34900 2025-05-27 16:05:47.878371+00 2025-05-27 16:05:47.878381+00 f t ADELANTO 12000.00 4 892 \N +34961 2025-05-27 16:40:54.975993+00 2025-05-27 16:40:54.976001+00 f t SUBTOTAL 77500.00 1 893 \N +34962 2025-05-27 16:40:54.977888+00 2025-05-27 16:40:54.977899+00 f t DESCUENTO 0.00 2 893 \N +34963 2025-05-27 16:40:54.980977+00 2025-05-27 16:40:54.980984+00 f t TOTAL 77500.00 3 893 \N +34964 2025-05-27 16:40:54.982883+00 2025-05-27 16:40:54.982893+00 f t ADELANTO 42500.00 4 893 \N +34969 2025-05-27 16:41:50.702051+00 2025-05-27 16:41:50.702062+00 f t SUBTOTAL 0.00 1 894 \N +34970 2025-05-27 16:41:50.703799+00 2025-05-27 16:41:50.703807+00 f t DESCUENTO 0.00 2 894 \N +34971 2025-05-27 16:41:50.705126+00 2025-05-27 16:41:50.705131+00 f t TOTAL 0.00 3 894 \N +34972 2025-05-27 16:41:50.706331+00 2025-05-27 16:41:50.706336+00 f t ADELANTO 0.00 4 894 \N +34977 2025-05-27 16:43:21.437635+00 2025-05-27 16:43:21.437644+00 f t SUBTOTAL 0.00 1 895 \N +34978 2025-05-27 16:43:21.43939+00 2025-05-27 16:43:21.439398+00 f t DESCUENTO 0.00 2 895 \N +34979 2025-05-27 16:43:21.440779+00 2025-05-27 16:43:21.440785+00 f t TOTAL 0.00 3 895 \N +34980 2025-05-27 16:43:21.44195+00 2025-05-27 16:43:21.441956+00 f t ADELANTO 0.00 4 895 \N +36993 2025-05-28 03:40:14.904391+00 2025-05-28 03:40:14.9044+00 f t SUBTOTAL 59500.00 1 938 \N +36994 2025-05-28 03:40:14.906141+00 2025-05-28 03:40:14.906149+00 f t DESCUENTO 0.00 2 938 \N +36995 2025-05-28 03:40:14.907803+00 2025-05-28 03:40:14.90781+00 f t TOTAL 59500.00 3 938 \N +36996 2025-05-28 03:40:14.909263+00 2025-05-28 03:40:14.90927+00 f t ADELANTO 15500.00 4 938 \N +35021 2025-05-27 16:49:43.322243+00 2025-05-27 16:49:43.322252+00 f t SUBTOTAL 67000.00 1 896 \N +35022 2025-05-27 16:49:43.323783+00 2025-05-27 16:49:43.32379+00 f t DESCUENTO 0.00 2 896 \N +35023 2025-05-27 16:49:43.324976+00 2025-05-27 16:49:43.324982+00 f t TOTAL 67000.00 3 896 \N +35024 2025-05-27 16:49:43.326057+00 2025-05-27 16:49:43.326064+00 f t ADELANTO 18000.00 4 896 \N +35533 2025-05-27 19:47:23.256245+00 2025-05-27 19:47:23.256254+00 f t SUBTOTAL 46000.00 1 907 \N +35534 2025-05-27 19:47:23.257963+00 2025-05-27 19:47:23.257971+00 f t DESCUENTO 0.00 2 907 \N +35535 2025-05-27 19:47:23.259322+00 2025-05-27 19:47:23.259329+00 f t TOTAL 46000.00 3 907 \N +35536 2025-05-27 19:47:23.260606+00 2025-05-27 19:47:23.260612+00 f t ADELANTO 9500.00 4 907 \N +35585 2025-05-27 19:52:39.675713+00 2025-05-27 19:52:39.675724+00 f t SUBTOTAL 38500.00 1 908 \N +35586 2025-05-27 19:52:39.677488+00 2025-05-27 19:52:39.677495+00 f t DESCUENTO 0.00 2 908 \N +35587 2025-05-27 19:52:39.678872+00 2025-05-27 19:52:39.678878+00 f t TOTAL 38500.00 3 908 \N +35588 2025-05-27 19:52:39.680659+00 2025-05-27 19:52:39.680668+00 f t ADELANTO 8500.00 4 908 \N +35613 2025-05-27 19:53:47.764322+00 2025-05-27 19:53:47.764331+00 f t SUBTOTAL 0.00 1 909 \N +35614 2025-05-27 19:53:47.766642+00 2025-05-27 19:53:47.766649+00 f t DESCUENTO 0.00 2 909 \N +35615 2025-05-27 19:53:47.768025+00 2025-05-27 19:53:47.768031+00 f t TOTAL 0.00 3 909 \N +35616 2025-05-27 19:53:47.769357+00 2025-05-27 19:53:47.769365+00 f t ADELANTO 0.00 4 909 \N +35061 2025-05-27 17:05:58.491802+00 2025-05-27 17:05:58.49181+00 f t SUBTOTAL 38500.00 1 897 \N +35062 2025-05-27 17:05:58.493622+00 2025-05-27 17:05:58.493631+00 f t DESCUENTO 0.00 2 897 \N +35063 2025-05-27 17:05:58.494799+00 2025-05-27 17:05:58.494805+00 f t TOTAL 38500.00 3 897 \N +35064 2025-05-27 17:05:58.495774+00 2025-05-27 17:05:58.495779+00 f t ADELANTO 8500.00 4 897 \N +36261 2025-05-28 02:13:57.989314+00 2025-05-28 02:13:57.989324+00 f t SUBTOTAL 78000.00 1 926 \N +36262 2025-05-28 02:13:57.991419+00 2025-05-28 02:13:57.991427+00 f t DESCUENTO 0.00 2 926 \N +36263 2025-05-28 02:13:57.992801+00 2025-05-28 02:13:57.992809+00 f t TOTAL 78000.00 3 926 \N +36264 2025-05-28 02:13:57.995221+00 2025-05-28 02:13:57.995229+00 f t ADELANTO 17000.00 4 926 \N +35097 2025-05-27 17:21:38.023899+00 2025-05-27 17:21:38.02391+00 f t SUBTOTAL 59500.00 1 898 \N +35098 2025-05-27 17:21:38.025717+00 2025-05-27 17:21:38.025729+00 f t DESCUENTO 0.00 2 898 \N +35099 2025-05-27 17:21:38.027047+00 2025-05-27 17:21:38.027055+00 f t TOTAL 59500.00 3 898 \N +35100 2025-05-27 17:21:38.028386+00 2025-05-27 17:21:38.028393+00 f t ADELANTO 15500.00 4 898 \N +36317 2025-05-28 02:24:02.094109+00 2025-05-28 02:24:02.094123+00 f t SUBTOTAL 57000.00 1 927 \N +36318 2025-05-28 02:24:02.096894+00 2025-05-28 02:24:02.096906+00 f t DESCUENTO 0.00 2 927 \N +36319 2025-05-28 02:24:02.09956+00 2025-05-28 02:24:02.099574+00 f t TOTAL 57000.00 3 927 \N +36320 2025-05-28 02:24:02.102013+00 2025-05-28 02:24:02.102024+00 f t ADELANTO 12000.00 4 927 \N +35797 2025-05-27 22:37:42.41263+00 2025-05-27 22:37:42.412639+00 f t SUBTOTAL 38500.00 1 913 \N +35133 2025-05-27 17:41:18.952307+00 2025-05-27 17:41:18.952316+00 f t SUBTOTAL 46000.00 1 899 \N +35134 2025-05-27 17:41:18.954147+00 2025-05-27 17:41:18.954154+00 f t DESCUENTO 0.00 2 899 \N +35135 2025-05-27 17:41:18.955692+00 2025-05-27 17:41:18.9557+00 f t TOTAL 46000.00 3 899 \N +35136 2025-05-27 17:41:18.957532+00 2025-05-27 17:41:18.957541+00 f t ADELANTO 9500.00 4 899 \N +35798 2025-05-27 22:37:42.414685+00 2025-05-27 22:37:42.414691+00 f t DESCUENTO 0.00 2 913 \N +35799 2025-05-27 22:37:42.416299+00 2025-05-27 22:37:42.416306+00 f t TOTAL 38500.00 3 913 \N +35800 2025-05-27 22:37:42.417576+00 2025-05-27 22:37:42.417581+00 f t ADELANTO 8500.00 4 913 \N +35141 2025-05-27 17:49:27.284539+00 2025-05-27 17:49:27.284548+00 f t SUBTOTAL 0.00 1 900 \N +35142 2025-05-27 17:49:27.286272+00 2025-05-27 17:49:27.286281+00 f t DESCUENTO 0.00 2 900 \N +35143 2025-05-27 17:49:27.287704+00 2025-05-27 17:49:27.287711+00 f t TOTAL 0.00 3 900 \N +35144 2025-05-27 17:49:27.289095+00 2025-05-27 17:49:27.289101+00 f t ADELANTO 0.00 4 900 \N +35149 2025-05-27 17:50:29.96212+00 2025-05-27 17:50:29.962131+00 f t SUBTOTAL 0.00 1 901 \N +35150 2025-05-27 17:50:29.964017+00 2025-05-27 17:50:29.964026+00 f t DESCUENTO 0.00 2 901 \N +35151 2025-05-27 17:50:29.965435+00 2025-05-27 17:50:29.965441+00 f t TOTAL 0.00 3 901 \N +35152 2025-05-27 17:50:29.966734+00 2025-05-27 17:50:29.96674+00 f t ADELANTO 0.00 4 901 \N +35157 2025-05-27 17:51:40.796452+00 2025-05-27 17:51:40.796462+00 f t SUBTOTAL 0.00 1 902 \N +35158 2025-05-27 17:51:40.797952+00 2025-05-27 17:51:40.797959+00 f t DESCUENTO 0.00 2 902 \N +35159 2025-05-27 17:51:40.799591+00 2025-05-27 17:51:40.799597+00 f t TOTAL 0.00 3 902 \N +35160 2025-05-27 17:51:40.801144+00 2025-05-27 17:51:40.801155+00 f t ADELANTO 0.00 4 902 \N +35165 2025-05-27 17:51:47.205863+00 2025-05-27 17:51:47.205873+00 f t SUBTOTAL 0.00 1 903 \N +35166 2025-05-27 17:51:47.207582+00 2025-05-27 17:51:47.207591+00 f t DESCUENTO 0.00 2 903 \N +35167 2025-05-27 17:51:47.209383+00 2025-05-27 17:51:47.209391+00 f t TOTAL 0.00 3 903 \N +35168 2025-05-27 17:51:47.211017+00 2025-05-27 17:51:47.211024+00 f t ADELANTO 0.00 4 903 \N +35201 2025-05-27 17:54:42.898458+00 2025-05-27 17:54:42.89847+00 f t SUBTOTAL 59500.00 1 904 \N +35202 2025-05-27 17:54:42.900256+00 2025-05-27 17:54:42.900265+00 f t DESCUENTO 0.00 2 904 \N +35203 2025-05-27 17:54:42.901828+00 2025-05-27 17:54:42.901835+00 f t TOTAL 59500.00 3 904 \N +35204 2025-05-27 17:54:42.90319+00 2025-05-27 17:54:42.903195+00 f t ADELANTO 15500.00 4 904 \N +36005 2025-05-28 00:31:52.546549+00 2025-05-28 00:31:52.546564+00 f t SUBTOTAL 0.00 1 918 \N +36006 2025-05-28 00:31:52.549278+00 2025-05-28 00:31:52.549292+00 f t DESCUENTO 0.00 2 918 \N +36007 2025-05-28 00:31:52.551631+00 2025-05-28 00:31:52.551643+00 f t TOTAL 0.00 3 918 \N +36008 2025-05-28 00:31:52.5538+00 2025-05-28 00:31:52.55381+00 f t ADELANTO 0.00 4 918 \N +36877 2025-05-28 03:21:40.484381+00 2025-05-28 03:21:40.484395+00 f t SUBTOTAL 46000.00 1 936 \N +36878 2025-05-28 03:21:40.486758+00 2025-05-28 03:21:40.486771+00 f t DESCUENTO 0.00 2 936 \N +36879 2025-05-28 03:21:40.488532+00 2025-05-28 03:21:40.488543+00 f t TOTAL 46000.00 3 936 \N +36880 2025-05-28 03:21:40.490044+00 2025-05-28 03:21:40.490054+00 f t ADELANTO 9500.00 4 936 \N +37777 2025-05-28 21:24:19.468244+00 2025-05-28 21:24:19.468254+00 f t SUBTOTAL 0.00 1 956 \N +37778 2025-05-28 21:24:19.470049+00 2025-05-28 21:24:19.470056+00 f t DESCUENTO 0.00 2 956 \N +37779 2025-05-28 21:24:19.471285+00 2025-05-28 21:24:19.471292+00 f t TOTAL 0.00 3 956 \N +37780 2025-05-28 21:24:19.472267+00 2025-05-28 21:24:19.472272+00 f t ADELANTO 0.00 4 956 \N +37805 2025-05-28 21:26:09.142449+00 2025-05-28 21:26:09.142463+00 f t SUBTOTAL 46000.00 1 957 \N +37806 2025-05-28 21:26:09.144852+00 2025-05-28 21:26:09.144861+00 f t DESCUENTO 0.00 2 957 \N +37807 2025-05-28 21:26:09.146974+00 2025-05-28 21:26:09.146987+00 f t TOTAL 46000.00 3 957 \N +37808 2025-05-28 21:26:09.149011+00 2025-05-28 21:26:09.149022+00 f t ADELANTO 9500.00 4 957 \N +37001 2025-05-28 03:54:07.825585+00 2025-05-28 03:54:07.825598+00 f t SUBTOTAL 0.00 1 939 \N +37002 2025-05-28 03:54:07.828168+00 2025-05-28 03:54:07.828178+00 f t DESCUENTO 0.00 2 939 \N +37003 2025-05-28 03:54:07.833002+00 2025-05-28 03:54:07.833016+00 f t TOTAL 0.00 3 939 \N +37004 2025-05-28 03:54:07.835049+00 2025-05-28 03:54:07.835061+00 f t ADELANTO 0.00 4 939 \N +37029 2025-05-28 04:00:15.956102+00 2025-05-28 04:00:15.956113+00 f t SUBTOTAL 59500.00 1 940 \N +37030 2025-05-28 04:00:15.958654+00 2025-05-28 04:00:15.958666+00 f t DESCUENTO 0.00 2 940 \N +37031 2025-05-28 04:00:15.960919+00 2025-05-28 04:00:15.960931+00 f t TOTAL 59500.00 3 940 \N +37032 2025-05-28 04:00:15.96316+00 2025-05-28 04:00:15.963173+00 f t ADELANTO 15500.00 4 940 \N +36377 2025-05-28 02:27:33.787172+00 2025-05-28 02:27:33.787187+00 f t SUBTOTAL 0.00 1 928 \N +36378 2025-05-28 02:27:33.789872+00 2025-05-28 02:27:33.789884+00 f t DESCUENTO 0.00 2 928 \N +36379 2025-05-28 02:27:33.793039+00 2025-05-28 02:27:33.793047+00 f t TOTAL 0.00 3 928 \N +36380 2025-05-28 02:27:33.794574+00 2025-05-28 02:27:33.794582+00 f t ADELANTO 0.00 4 928 \N +38757 2025-05-29 14:41:37.423153+00 2025-05-29 14:41:37.423165+00 f t SUBTOTAL 0.00 1 979 \N +36385 2025-05-28 02:28:28.308366+00 2025-05-28 02:28:28.30838+00 f t SUBTOTAL 0.00 1 929 \N +36386 2025-05-28 02:28:28.310247+00 2025-05-28 02:28:28.310256+00 f t DESCUENTO 0.00 2 929 \N +36387 2025-05-28 02:28:28.311775+00 2025-05-28 02:28:28.311786+00 f t TOTAL 0.00 3 929 \N +36388 2025-05-28 02:28:28.313281+00 2025-05-28 02:28:28.313292+00 f t ADELANTO 0.00 4 929 \N +38758 2025-05-29 14:41:37.425017+00 2025-05-29 14:41:37.425027+00 f t DESCUENTO 0.00 2 979 \N +38759 2025-05-29 14:41:37.426721+00 2025-05-29 14:41:37.426731+00 f t TOTAL 0.00 3 979 \N +38760 2025-05-29 14:41:37.428256+00 2025-05-29 14:41:37.428264+00 f t ADELANTO 0.00 4 979 \N +38881 2025-05-29 15:02:43.407044+00 2025-05-29 15:02:43.40706+00 f t SUBTOTAL 0.00 1 983 \N +38882 2025-05-29 15:02:43.409213+00 2025-05-29 15:02:43.409225+00 f t DESCUENTO 0.00 2 983 \N +38883 2025-05-29 15:02:43.411064+00 2025-05-29 15:02:43.411076+00 f t TOTAL 0.00 3 983 \N +38884 2025-05-29 15:02:43.412765+00 2025-05-29 15:02:43.412777+00 f t ADELANTO 0.00 4 983 \N +37121 2025-05-28 10:07:21.350329+00 2025-05-28 10:07:21.350338+00 f t SUBTOTAL 0.00 1 943 \N +37122 2025-05-28 10:07:21.351938+00 2025-05-28 10:07:21.351945+00 f t DESCUENTO 0.00 2 943 \N +37123 2025-05-28 10:07:21.353142+00 2025-05-28 10:07:21.353148+00 f t TOTAL 0.00 3 943 \N +37124 2025-05-28 10:07:21.354209+00 2025-05-28 10:07:21.354215+00 f t ADELANTO 0.00 4 943 \N +37157 2025-05-28 12:04:30.135255+00 2025-05-28 12:04:30.135266+00 f t SUBTOTAL 0.00 1 944 \N +37158 2025-05-28 12:04:30.137931+00 2025-05-28 12:04:30.137942+00 f t DESCUENTO 0.00 2 944 \N +37159 2025-05-28 12:04:30.139787+00 2025-05-28 12:04:30.139799+00 f t TOTAL 0.00 3 944 \N +37160 2025-05-28 12:04:30.141358+00 2025-05-28 12:04:30.141369+00 f t ADELANTO 0.00 4 944 \N +37185 2025-05-28 12:10:42.48306+00 2025-05-28 12:10:42.48307+00 f t SUBTOTAL 38500.00 1 945 \N +37186 2025-05-28 12:10:42.484674+00 2025-05-28 12:10:42.484682+00 f t DESCUENTO 0.00 2 945 \N +37187 2025-05-28 12:10:42.485932+00 2025-05-28 12:10:42.485939+00 f t TOTAL 38500.00 3 945 \N +37188 2025-05-28 12:10:42.487185+00 2025-05-28 12:10:42.487191+00 f t ADELANTO 8500.00 4 945 \N +37229 2025-05-28 14:48:38.460589+00 2025-05-28 14:48:38.4606+00 f t SUBTOTAL 0.00 1 948 \N +37230 2025-05-28 14:48:38.462142+00 2025-05-28 14:48:38.462151+00 f t DESCUENTO 0.00 2 948 \N +37231 2025-05-28 14:48:38.463535+00 2025-05-28 14:48:38.463543+00 f t TOTAL 0.00 3 948 \N +37232 2025-05-28 14:48:38.464695+00 2025-05-28 14:48:38.464701+00 f t ADELANTO 0.00 4 948 \N +39025 2025-05-29 15:55:11.650801+00 2025-05-29 15:55:11.650815+00 f t SUBTOTAL 0.00 1 989 \N +39026 2025-05-29 15:55:11.653296+00 2025-05-29 15:55:11.653309+00 f t DESCUENTO 0.00 2 989 \N +39027 2025-05-29 15:55:11.655266+00 2025-05-29 15:55:11.655279+00 f t TOTAL 0.00 3 989 \N +39028 2025-05-29 15:55:11.657649+00 2025-05-29 15:55:11.657661+00 f t ADELANTO 0.00 4 989 \N +39045 2025-05-29 16:07:20.215105+00 2025-05-29 16:07:20.215122+00 f t SUBTOTAL 0.00 1 988 \N +37257 2025-05-28 15:45:46.601893+00 2025-05-28 15:45:46.601903+00 f t SUBTOTAL 46000.00 1 949 \N +37258 2025-05-28 15:45:46.603666+00 2025-05-28 15:45:46.603673+00 f t DESCUENTO 0.00 2 949 \N +37259 2025-05-28 15:45:46.60509+00 2025-05-28 15:45:46.605097+00 f t TOTAL 46000.00 3 949 \N +37260 2025-05-28 15:45:46.606231+00 2025-05-28 15:45:46.606237+00 f t ADELANTO 11000.00 4 949 \N +39046 2025-05-29 16:07:20.217942+00 2025-05-29 16:07:20.217955+00 f t DESCUENTO 0.00 2 988 \N +39047 2025-05-29 16:07:20.219723+00 2025-05-29 16:07:20.219733+00 f t TOTAL 0.00 3 988 \N +39048 2025-05-29 16:07:20.22139+00 2025-05-29 16:07:20.221398+00 f t ADELANTO 0.00 4 988 \N +39085 2025-05-29 16:38:27.712093+00 2025-05-29 16:38:27.712108+00 f t SUBTOTAL 59500.00 1 991 \N +37293 2025-05-28 15:51:54.864126+00 2025-05-28 15:51:54.864138+00 f t SUBTOTAL 38500.00 1 950 \N +37294 2025-05-28 15:51:54.866074+00 2025-05-28 15:51:54.866085+00 f t DESCUENTO 0.00 2 950 \N +37295 2025-05-28 15:51:54.867577+00 2025-05-28 15:51:54.867587+00 f t TOTAL 38500.00 3 950 \N +37296 2025-05-28 15:51:54.869108+00 2025-05-28 15:51:54.869116+00 f t ADELANTO 8500.00 4 950 \N +39086 2025-05-29 16:38:27.714842+00 2025-05-29 16:38:27.714856+00 f t DESCUENTO 0.00 2 991 \N +39087 2025-05-29 16:38:27.716831+00 2025-05-29 16:38:27.716844+00 f t TOTAL 59500.00 3 991 \N +39088 2025-05-29 16:38:27.718766+00 2025-05-29 16:38:27.718784+00 f t ADELANTO 15500.00 4 991 \N +38341 2025-05-29 04:38:22.19814+00 2025-05-29 04:38:22.19815+00 f t SUBTOTAL 103000.00 1 967 \N +38342 2025-05-29 04:38:22.200459+00 2025-05-29 04:38:22.20047+00 f t DESCUENTO 0.00 2 967 \N +38343 2025-05-29 04:38:22.202742+00 2025-05-29 04:38:22.202754+00 f t TOTAL 103000.00 3 967 \N +38344 2025-05-29 04:38:22.206782+00 2025-05-29 04:38:22.206795+00 f t ADELANTO 26000.00 4 967 \N +38417 2025-05-29 05:23:34.439155+00 2025-05-29 05:23:34.439166+00 f t SUBTOTAL 46000.00 1 968 \N +38418 2025-05-29 05:23:34.442431+00 2025-05-29 05:23:34.442442+00 f t DESCUENTO 0.00 2 968 \N +38419 2025-05-29 05:23:34.44528+00 2025-05-29 05:23:34.445294+00 f t TOTAL 46000.00 3 968 \N +38420 2025-05-29 05:23:34.447987+00 2025-05-29 05:23:34.448+00 f t ADELANTO 9500.00 4 968 \N +39549 2025-05-29 22:32:05.675311+00 2025-05-29 22:32:05.675322+00 f t SUBTOTAL 46000.00 1 1004 \N +39550 2025-05-29 22:32:05.678359+00 2025-05-29 22:32:05.678372+00 f t DESCUENTO 0.00 2 1004 \N +39551 2025-05-29 22:32:05.680309+00 2025-05-29 22:32:05.680324+00 f t TOTAL 46000.00 3 1004 \N +39552 2025-05-29 22:32:05.682478+00 2025-05-29 22:32:05.682489+00 f t ADELANTO 9500.00 4 1004 \N +44432 2025-06-01 05:55:05.710429+00 2025-06-01 05:55:05.710441+00 f t ADELANTO 0.00 4 1129 \N +38653 2025-05-29 13:42:40.914589+00 2025-05-29 13:42:40.914599+00 f t SUBTOTAL 46000.00 1 976 \N +38654 2025-05-29 13:42:40.917315+00 2025-05-29 13:42:40.917327+00 f t DESCUENTO 0.00 2 976 \N +38655 2025-05-29 13:42:40.920113+00 2025-05-29 13:42:40.920125+00 f t TOTAL 46000.00 3 976 \N +38656 2025-05-29 13:42:40.92445+00 2025-05-29 13:42:40.924461+00 f t ADELANTO 11000.00 4 976 \N +36949 2025-05-28 03:27:25.795796+00 2025-05-28 03:27:25.795808+00 f t SUBTOTAL 46000.00 1 937 \N +36950 2025-05-28 03:27:25.798186+00 2025-05-28 03:27:25.798199+00 f t DESCUENTO 0.00 2 937 \N +36951 2025-05-28 03:27:25.800205+00 2025-05-28 03:27:25.800217+00 f t TOTAL 46000.00 3 937 \N +36952 2025-05-28 03:27:25.802086+00 2025-05-28 03:27:25.802096+00 f t ADELANTO 9500.00 4 937 \N +38765 2025-05-29 14:43:36.734253+00 2025-05-29 14:43:36.734264+00 f t SUBTOTAL 0.00 1 980 \N +38766 2025-05-29 14:43:36.735856+00 2025-05-29 14:43:36.73589+00 f t DESCUENTO 0.00 2 980 \N +38767 2025-05-29 14:43:36.737315+00 2025-05-29 14:43:36.737322+00 f t TOTAL 0.00 3 980 \N +38768 2025-05-29 14:43:36.738635+00 2025-05-29 14:43:36.738641+00 f t ADELANTO 0.00 4 980 \N +36661 2025-05-28 02:35:31.798753+00 2025-05-28 02:35:31.798764+00 f t SUBTOTAL 38500.00 1 931 \N +36662 2025-05-28 02:35:31.800712+00 2025-05-28 02:35:31.800721+00 f t DESCUENTO 0.00 2 931 \N +36663 2025-05-28 02:35:31.803177+00 2025-05-28 02:35:31.803185+00 f t TOTAL 38500.00 3 931 \N +36664 2025-05-28 02:35:31.805106+00 2025-05-28 02:35:31.805118+00 f t ADELANTO 8500.00 4 931 \N +37937 2025-05-28 23:52:04.095859+00 2025-05-28 23:52:04.095875+00 f t SUBTOTAL 46000.00 1 961 \N +37938 2025-05-28 23:52:04.098456+00 2025-05-28 23:52:04.09847+00 f t DESCUENTO 0.00 2 961 \N +37939 2025-05-28 23:52:04.100382+00 2025-05-28 23:52:04.100393+00 f t TOTAL 46000.00 3 961 \N +37940 2025-05-28 23:52:04.102212+00 2025-05-28 23:52:04.102224+00 f t ADELANTO 9500.00 4 961 \N +37965 2025-05-29 00:27:59.265109+00 2025-05-29 00:27:59.265121+00 f t SUBTOTAL 46000.00 1 962 \N +37966 2025-05-29 00:27:59.266964+00 2025-05-29 00:27:59.266972+00 f t DESCUENTO 0.00 2 962 \N +37967 2025-05-29 00:27:59.268504+00 2025-05-29 00:27:59.268512+00 f t TOTAL 46000.00 3 962 \N +37968 2025-05-29 00:27:59.269833+00 2025-05-29 00:27:59.269841+00 f t ADELANTO 11000.00 4 962 \N +37085 2025-05-28 04:31:56.97279+00 2025-05-28 04:31:56.9728+00 f t SUBTOTAL 46000.00 1 941 \N +37086 2025-05-28 04:31:56.974525+00 2025-05-28 04:31:56.974534+00 f t DESCUENTO 0.00 2 941 \N +37087 2025-05-28 04:31:56.977521+00 2025-05-28 04:31:56.977536+00 f t TOTAL 46000.00 3 941 \N +37088 2025-05-28 04:31:56.979058+00 2025-05-28 04:31:56.979066+00 f t ADELANTO 9500.00 4 941 \N +37113 2025-05-28 09:20:10.117987+00 2025-05-28 09:20:10.117997+00 f t SUBTOTAL 38500.00 1 942 \N +36713 2025-05-28 02:38:18.756706+00 2025-05-28 02:38:18.756718+00 f t SUBTOTAL 46000.00 1 930 \N +36714 2025-05-28 02:38:18.759282+00 2025-05-28 02:38:18.759295+00 f t DESCUENTO 0.00 2 930 \N +36715 2025-05-28 02:38:18.761322+00 2025-05-28 02:38:18.761331+00 f t TOTAL 46000.00 3 930 \N +36716 2025-05-28 02:38:18.762753+00 2025-05-28 02:38:18.762761+00 f t ADELANTO 9500.00 4 930 \N +37114 2025-05-28 09:20:10.119835+00 2025-05-28 09:20:10.119849+00 f t DESCUENTO 0.00 2 942 \N +37115 2025-05-28 09:20:10.121389+00 2025-05-28 09:20:10.121396+00 f t TOTAL 38500.00 3 942 \N +37116 2025-05-28 09:20:10.12477+00 2025-05-28 09:20:10.124781+00 f t ADELANTO 8500.00 4 942 \N +36741 2025-05-28 02:39:24.821144+00 2025-05-28 02:39:24.821157+00 f t SUBTOTAL 59500.00 1 932 \N +36742 2025-05-28 02:39:24.822773+00 2025-05-28 02:39:24.822782+00 f t DESCUENTO 0.00 2 932 \N +36743 2025-05-28 02:39:24.824017+00 2025-05-28 02:39:24.824023+00 f t TOTAL 59500.00 3 932 \N +36744 2025-05-28 02:39:24.825102+00 2025-05-28 02:39:24.825108+00 f t ADELANTO 15500.00 4 932 \N +37193 2025-05-28 12:42:54.581952+00 2025-05-28 12:42:54.581963+00 f t SUBTOTAL 0.00 1 946 \N +37194 2025-05-28 12:42:54.583966+00 2025-05-28 12:42:54.583977+00 f t DESCUENTO 0.00 2 946 \N +37195 2025-05-28 12:42:54.586285+00 2025-05-28 12:42:54.586293+00 f t TOTAL 0.00 3 946 \N +37196 2025-05-28 12:42:54.58756+00 2025-05-28 12:42:54.587567+00 f t ADELANTO 0.00 4 946 \N +37221 2025-05-28 13:25:47.600382+00 2025-05-28 13:25:47.600392+00 f t SUBTOTAL 75000.00 1 947 \N +37222 2025-05-28 13:25:47.602199+00 2025-05-28 13:25:47.602207+00 f t DESCUENTO 0.00 2 947 \N +37223 2025-05-28 13:25:47.603509+00 2025-05-28 13:25:47.603514+00 f t TOTAL 75000.00 3 947 \N +37224 2025-05-28 13:25:47.604881+00 2025-05-28 13:25:47.604889+00 f t ADELANTO 10000.00 4 947 \N +36785 2025-05-28 02:48:19.367432+00 2025-05-28 02:48:19.367445+00 f t SUBTOTAL 38500.00 1 933 \N +36786 2025-05-28 02:48:19.369598+00 2025-05-28 02:48:19.369611+00 f t DESCUENTO 0.00 2 933 \N +36787 2025-05-28 02:48:19.371328+00 2025-05-28 02:48:19.371339+00 f t TOTAL 38500.00 3 933 \N +36788 2025-05-28 02:48:19.372938+00 2025-05-28 02:48:19.372946+00 f t ADELANTO 8500.00 4 933 \N +36793 2025-05-28 02:51:25.058078+00 2025-05-28 02:51:25.058088+00 f t SUBTOTAL 0.00 1 934 \N +36794 2025-05-28 02:51:25.059903+00 2025-05-28 02:51:25.059912+00 f t DESCUENTO 0.00 2 934 \N +36795 2025-05-28 02:51:25.061326+00 2025-05-28 02:51:25.061335+00 f t TOTAL 0.00 3 934 \N +36796 2025-05-28 02:51:25.062816+00 2025-05-28 02:51:25.062827+00 f t ADELANTO 0.00 4 934 \N +38193 2025-05-29 01:59:53.593823+00 2025-05-29 01:59:53.593837+00 f t SUBTOTAL 46000.00 1 965 \N +38194 2025-05-29 01:59:53.597335+00 2025-05-29 01:59:53.597347+00 f t DESCUENTO 0.00 2 965 \N +38195 2025-05-29 01:59:53.599217+00 2025-05-29 01:59:53.599226+00 f t TOTAL 46000.00 3 965 \N +38196 2025-05-29 01:59:53.601155+00 2025-05-29 01:59:53.601164+00 f t ADELANTO 11000.00 4 965 \N +36821 2025-05-28 02:52:34.730771+00 2025-05-28 02:52:34.730784+00 f t SUBTOTAL 25000.00 1 935 \N +36822 2025-05-28 02:52:34.732929+00 2025-05-28 02:52:34.732939+00 f t DESCUENTO 0.00 2 935 \N +36823 2025-05-28 02:52:34.734813+00 2025-05-28 02:52:34.734824+00 f t TOTAL 25000.00 3 935 \N +36824 2025-05-28 02:52:34.736549+00 2025-05-28 02:52:34.736559+00 f t ADELANTO 25000.00 4 935 \N +38437 2025-05-29 06:40:14.037595+00 2025-05-29 06:40:14.037607+00 f t SUBTOTAL 0.00 1 969 \N +38438 2025-05-29 06:40:14.041219+00 2025-05-29 06:40:14.041229+00 f t DESCUENTO 0.00 2 969 \N +38439 2025-05-29 06:40:14.044119+00 2025-05-29 06:40:14.044136+00 f t TOTAL 0.00 3 969 \N +38440 2025-05-29 06:40:14.046993+00 2025-05-29 06:40:14.047007+00 f t ADELANTO 0.00 4 969 \N +38469 2025-05-29 09:57:31.464579+00 2025-05-29 09:57:31.464592+00 f t SUBTOTAL 38500.00 1 970 \N +38470 2025-05-29 09:57:31.469534+00 2025-05-29 09:57:31.469545+00 f t DESCUENTO 0.00 2 970 \N +38471 2025-05-29 09:57:31.471816+00 2025-05-29 09:57:31.471828+00 f t TOTAL 38500.00 3 970 \N +38472 2025-05-29 09:57:31.474029+00 2025-05-29 09:57:31.474042+00 f t ADELANTO 8500.00 4 970 \N +38481 2025-05-29 12:39:29.796462+00 2025-05-29 12:39:29.796472+00 f t SUBTOTAL 0.00 1 971 \N +38482 2025-05-29 12:39:29.799428+00 2025-05-29 12:39:29.799441+00 f t DESCUENTO 0.00 2 971 \N +38621 2025-05-29 12:57:11.238831+00 2025-05-29 12:57:11.238845+00 f t SUBTOTAL 38500.00 1 975 \N +38622 2025-05-29 12:57:11.24136+00 2025-05-29 12:57:11.241372+00 f t DESCUENTO 0.00 2 975 \N +38623 2025-05-29 12:57:11.244296+00 2025-05-29 12:57:11.244311+00 f t TOTAL 38500.00 3 975 \N +38624 2025-05-29 12:57:11.24818+00 2025-05-29 12:57:11.248194+00 f t ADELANTO 8500.00 4 975 \N +41446 2025-05-30 20:51:34.606962+00 2025-05-30 20:51:34.606971+00 f t DESCUENTO 0.00 2 1053 \N +37769 2025-05-28 21:13:27.022626+00 2025-05-28 21:13:27.022641+00 f t SUBTOTAL 0.00 1 955 \N +37770 2025-05-28 21:13:27.025923+00 2025-05-28 21:13:27.025939+00 f t DESCUENTO 0.00 2 955 \N +37771 2025-05-28 21:13:27.028353+00 2025-05-28 21:13:27.028376+00 f t TOTAL 0.00 3 955 \N +37772 2025-05-28 21:13:27.031031+00 2025-05-28 21:13:27.031045+00 f t ADELANTO 0.00 4 955 \N +41447 2025-05-30 20:51:34.608656+00 2025-05-30 20:51:34.608665+00 f t TOTAL 59500.00 3 1053 \N +41448 2025-05-30 20:51:34.613557+00 2025-05-30 20:51:34.613567+00 f t ADELANTO 15500.00 4 1053 \N +41489 2025-05-30 21:25:42.389294+00 2025-05-30 21:25:42.389309+00 f t SUBTOTAL 59500.00 1 1056 \N +41490 2025-05-30 21:25:42.392599+00 2025-05-30 21:25:42.392612+00 f t DESCUENTO 0.00 2 1056 \N +41491 2025-05-30 21:25:42.395498+00 2025-05-30 21:25:42.39551+00 f t TOTAL 59500.00 3 1056 \N +41492 2025-05-30 21:25:42.397676+00 2025-05-30 21:25:42.397685+00 f t ADELANTO 15500.00 4 1056 \N +37833 2025-05-28 21:52:58.560912+00 2025-05-28 21:52:58.560923+00 f t SUBTOTAL 0.00 1 958 \N +37834 2025-05-28 21:52:58.562925+00 2025-05-28 21:52:58.562933+00 f t DESCUENTO 0.00 2 958 \N +37835 2025-05-28 21:52:58.564333+00 2025-05-28 21:52:58.56434+00 f t TOTAL 0.00 3 958 \N +37836 2025-05-28 21:52:58.565589+00 2025-05-28 21:52:58.565598+00 f t ADELANTO 0.00 4 958 \N +37873 2025-05-28 23:27:30.97539+00 2025-05-28 23:27:30.975405+00 f t SUBTOTAL 46000.00 1 959 \N +37874 2025-05-28 23:27:30.977838+00 2025-05-28 23:27:30.97785+00 f t DESCUENTO 0.00 2 959 \N +37875 2025-05-28 23:27:30.979549+00 2025-05-28 23:27:30.979559+00 f t TOTAL 46000.00 3 959 \N +37876 2025-05-28 23:27:30.981264+00 2025-05-28 23:27:30.981273+00 f t ADELANTO 9500.00 4 959 \N +37901 2025-05-28 23:43:13.774665+00 2025-05-28 23:43:13.774676+00 f t SUBTOTAL 38500.00 1 960 \N +37902 2025-05-28 23:43:13.776409+00 2025-05-28 23:43:13.776418+00 f t DESCUENTO 0.00 2 960 \N +37903 2025-05-28 23:43:13.777668+00 2025-05-28 23:43:13.777677+00 f t TOTAL 38500.00 3 960 \N +37904 2025-05-28 23:43:13.778761+00 2025-05-28 23:43:13.778766+00 f t ADELANTO 8500.00 4 960 \N +38741 2025-05-29 13:55:51.946238+00 2025-05-29 13:55:51.946246+00 f t SUBTOTAL 59500.00 1 977 \N +38742 2025-05-29 13:55:51.948983+00 2025-05-29 13:55:51.948993+00 f t DESCUENTO 0.00 2 977 \N +38743 2025-05-29 13:55:51.950655+00 2025-05-29 13:55:51.950664+00 f t TOTAL 59500.00 3 977 \N +38744 2025-05-29 13:55:51.952053+00 2025-05-29 13:55:51.952061+00 f t ADELANTO 15500.00 4 977 \N +37973 2025-05-29 01:34:31.603595+00 2025-05-29 01:34:31.603605+00 f t SUBTOTAL 0.00 1 963 \N +37974 2025-05-29 01:34:31.606007+00 2025-05-29 01:34:31.606018+00 f t DESCUENTO 0.00 2 963 \N +37549 2025-05-28 16:18:52.981283+00 2025-05-28 16:18:52.981297+00 f t SUBTOTAL 59500.00 1 951 \N +37550 2025-05-28 16:18:52.984008+00 2025-05-28 16:18:52.984024+00 f t DESCUENTO 0.00 2 951 \N +37551 2025-05-28 16:18:52.986492+00 2025-05-28 16:18:52.986505+00 f t TOTAL 59500.00 3 951 \N +37552 2025-05-28 16:18:52.988934+00 2025-05-28 16:18:52.988949+00 f t ADELANTO 15500.00 4 951 \N +37975 2025-05-29 01:34:31.607697+00 2025-05-29 01:34:31.607704+00 f t TOTAL 0.00 3 963 \N +37976 2025-05-29 01:34:31.609275+00 2025-05-29 01:34:31.609285+00 f t ADELANTO 0.00 4 963 \N +38017 2025-05-29 01:56:03.823286+00 2025-05-29 01:56:03.823295+00 f t SUBTOTAL 38500.00 1 964 \N +38018 2025-05-29 01:56:03.825103+00 2025-05-29 01:56:03.825112+00 f t DESCUENTO 0.00 2 964 \N +38019 2025-05-29 01:56:03.826576+00 2025-05-29 01:56:03.826583+00 f t TOTAL 38500.00 3 964 \N +38020 2025-05-29 01:56:03.827787+00 2025-05-29 01:56:03.827793+00 f t ADELANTO 8500.00 4 964 \N +38889 2025-05-29 15:13:30.387959+00 2025-05-29 15:13:30.387969+00 f t SUBTOTAL 0.00 1 984 \N +38890 2025-05-29 15:13:30.389418+00 2025-05-29 15:13:30.389426+00 f t DESCUENTO 0.00 2 984 \N +38891 2025-05-29 15:13:30.390881+00 2025-05-29 15:13:30.39089+00 f t TOTAL 0.00 3 984 \N +38892 2025-05-29 15:13:30.392443+00 2025-05-29 15:13:30.39245+00 f t ADELANTO 0.00 4 984 \N +38969 2025-05-29 15:21:50.944453+00 2025-05-29 15:21:50.944462+00 f t SUBTOTAL 46000.00 1 986 \N +38970 2025-05-29 15:21:50.946077+00 2025-05-29 15:21:50.946084+00 f t DESCUENTO 0.00 2 986 \N +38971 2025-05-29 15:21:50.947165+00 2025-05-29 15:21:50.94717+00 f t TOTAL 46000.00 3 986 \N +38972 2025-05-29 15:21:50.948091+00 2025-05-29 15:21:50.948096+00 f t ADELANTO 9500.00 4 986 \N +39033 2025-05-29 16:00:22.283335+00 2025-05-29 16:00:22.283348+00 f t SUBTOTAL 0.00 1 990 \N +39034 2025-05-29 16:00:22.285354+00 2025-05-29 16:00:22.285366+00 f t DESCUENTO 0.00 2 990 \N +39035 2025-05-29 16:00:22.286968+00 2025-05-29 16:00:22.286978+00 f t TOTAL 0.00 3 990 \N +37621 2025-05-28 16:46:09.810899+00 2025-05-28 16:46:09.810912+00 f t SUBTOTAL 25000.00 1 952 \N +37622 2025-05-28 16:46:09.812773+00 2025-05-28 16:46:09.812786+00 f t DESCUENTO 0.00 2 952 \N +37623 2025-05-28 16:46:09.814286+00 2025-05-28 16:46:09.814296+00 f t TOTAL 25000.00 3 952 \N +37624 2025-05-28 16:46:09.81564+00 2025-05-28 16:46:09.815647+00 f t ADELANTO 25000.00 4 952 \N +39036 2025-05-29 16:00:22.288595+00 2025-05-29 16:00:22.288604+00 f t ADELANTO 0.00 4 990 \N +39093 2025-05-29 16:55:29.001243+00 2025-05-29 16:55:29.001276+00 f t SUBTOTAL 0.00 1 992 \N +39094 2025-05-29 16:55:29.003912+00 2025-05-29 16:55:29.00393+00 f t DESCUENTO 0.00 2 992 \N +39095 2025-05-29 16:55:29.006586+00 2025-05-29 16:55:29.006599+00 f t TOTAL 0.00 3 992 \N +37649 2025-05-28 17:12:56.117188+00 2025-05-28 17:12:56.117198+00 f t SUBTOTAL 38500.00 1 953 \N +37650 2025-05-28 17:12:56.118959+00 2025-05-28 17:12:56.118967+00 f t DESCUENTO 0.00 2 953 \N +37651 2025-05-28 17:12:56.120324+00 2025-05-28 17:12:56.120332+00 f t TOTAL 38500.00 3 953 \N +37652 2025-05-28 17:12:56.12133+00 2025-05-28 17:12:56.121336+00 f t ADELANTO 8500.00 4 953 \N +39096 2025-05-29 16:55:29.00911+00 2025-05-29 16:55:29.009125+00 f t ADELANTO 0.00 4 992 \N +38261 2025-05-29 02:23:50.454148+00 2025-05-29 02:23:50.454157+00 f t SUBTOTAL 38500.00 1 966 \N +38262 2025-05-29 02:23:50.455806+00 2025-05-29 02:23:50.455814+00 f t DESCUENTO 0.00 2 966 \N +37657 2025-05-28 18:32:25.370525+00 2025-05-28 18:32:25.370534+00 f t SUBTOTAL 0.00 1 954 \N +37658 2025-05-28 18:32:25.372241+00 2025-05-28 18:32:25.372249+00 f t DESCUENTO 0.00 2 954 \N +37659 2025-05-28 18:32:25.373585+00 2025-05-28 18:32:25.373592+00 f t TOTAL 0.00 3 954 \N +37660 2025-05-28 18:32:25.374821+00 2025-05-28 18:32:25.374828+00 f t ADELANTO 0.00 4 954 \N +38263 2025-05-29 02:23:50.457028+00 2025-05-29 02:23:50.457034+00 f t TOTAL 38500.00 3 966 \N +38264 2025-05-29 02:23:50.458237+00 2025-05-29 02:23:50.458244+00 f t ADELANTO 8500.00 4 966 \N +39189 2025-05-29 17:14:36.020751+00 2025-05-29 17:14:36.020761+00 f t SUBTOTAL 0.00 1 994 \N +39190 2025-05-29 17:14:36.023212+00 2025-05-29 17:14:36.023225+00 f t DESCUENTO 0.00 2 994 \N +39191 2025-05-29 17:14:36.024838+00 2025-05-29 17:14:36.024847+00 f t TOTAL 0.00 3 994 \N +39192 2025-05-29 17:14:36.02625+00 2025-05-29 17:14:36.026257+00 f t ADELANTO 0.00 4 994 \N +38483 2025-05-29 12:39:29.801435+00 2025-05-29 12:39:29.801445+00 f t TOTAL 0.00 3 971 \N +38484 2025-05-29 12:39:29.803938+00 2025-05-29 12:39:29.803986+00 f t ADELANTO 0.00 4 971 \N +38625 2025-05-29 13:04:55.101803+00 2025-05-29 13:04:55.101816+00 f t SUBTOTAL 0.00 1 866 \N +38626 2025-05-29 13:04:55.10435+00 2025-05-29 13:04:55.104363+00 f t DESCUENTO 0.00 2 866 \N +38627 2025-05-29 13:04:55.106378+00 2025-05-29 13:04:55.106391+00 f t TOTAL 0.00 3 866 \N +38509 2025-05-29 12:40:57.010689+00 2025-05-29 12:40:57.0107+00 f t SUBTOTAL 0.00 1 972 \N +38510 2025-05-29 12:40:57.013199+00 2025-05-29 12:40:57.01321+00 f t DESCUENTO 0.00 2 972 \N +38511 2025-05-29 12:40:57.015064+00 2025-05-29 12:40:57.015075+00 f t TOTAL 0.00 3 972 \N +38512 2025-05-29 12:40:57.017012+00 2025-05-29 12:40:57.017023+00 f t ADELANTO 0.00 4 972 \N +38628 2025-05-29 13:04:55.108374+00 2025-05-29 13:04:55.108384+00 f t ADELANTO 0.00 4 866 \N +40489 2025-05-30 12:09:47.898101+00 2025-05-30 12:09:47.898113+00 f t SUBTOTAL 46000.00 1 1030 \N +40490 2025-05-30 12:09:47.900661+00 2025-05-30 12:09:47.90067+00 f t DESCUENTO 0.00 2 1030 \N +40491 2025-05-30 12:09:47.903135+00 2025-05-30 12:09:47.903149+00 f t TOTAL 46000.00 3 1030 \N +40492 2025-05-30 12:09:47.905642+00 2025-05-30 12:09:47.905654+00 f t ADELANTO 9500.00 4 1030 \N +40517 2025-05-30 12:16:59.91359+00 2025-05-30 12:16:59.913604+00 f t SUBTOTAL 38500.00 1 1031 \N +40518 2025-05-30 12:16:59.916936+00 2025-05-30 12:16:59.91695+00 f t DESCUENTO 0.00 2 1031 \N +40519 2025-05-30 12:16:59.919936+00 2025-05-30 12:16:59.919951+00 f t TOTAL 38500.00 3 1031 \N +40520 2025-05-30 12:16:59.922516+00 2025-05-30 12:16:59.92253+00 f t ADELANTO 8500.00 4 1031 \N +42449 2025-05-31 02:46:21.53003+00 2025-05-31 02:46:21.530042+00 f t SUBTOTAL 59500.00 1 1076 \N +42450 2025-05-31 02:46:21.532065+00 2025-05-31 02:46:21.532076+00 f t DESCUENTO 0.00 2 1076 \N +42451 2025-05-31 02:46:21.533612+00 2025-05-31 02:46:21.533619+00 f t TOTAL 59500.00 3 1076 \N +38749 2025-05-29 14:38:22.68083+00 2025-05-29 14:38:22.680846+00 f t SUBTOTAL 0.00 1 978 \N +38750 2025-05-29 14:38:22.68371+00 2025-05-29 14:38:22.683723+00 f t DESCUENTO 0.00 2 978 \N +38751 2025-05-29 14:38:22.686511+00 2025-05-29 14:38:22.686526+00 f t TOTAL 0.00 3 978 \N +38752 2025-05-29 14:38:22.689101+00 2025-05-29 14:38:22.689115+00 f t ADELANTO 0.00 4 978 \N +38561 2025-05-29 12:51:37.51708+00 2025-05-29 12:51:37.517092+00 f t SUBTOTAL 59500.00 1 973 \N +38562 2025-05-29 12:51:37.519333+00 2025-05-29 12:51:37.519342+00 f t DESCUENTO 0.00 2 973 \N +38563 2025-05-29 12:51:37.520905+00 2025-05-29 12:51:37.520915+00 f t TOTAL 59500.00 3 973 \N +38564 2025-05-29 12:51:37.522433+00 2025-05-29 12:51:37.52244+00 f t ADELANTO 15500.00 4 973 \N +38573 2025-05-29 12:51:43.424112+00 2025-05-29 12:51:43.424121+00 f t SUBTOTAL 46000.00 1 974 \N +38574 2025-05-29 12:51:43.425958+00 2025-05-29 12:51:43.425966+00 f t DESCUENTO 0.00 2 974 \N +38575 2025-05-29 12:51:43.427333+00 2025-05-29 12:51:43.427339+00 f t TOTAL 46000.00 3 974 \N +38576 2025-05-29 12:51:43.428606+00 2025-05-29 12:51:43.428612+00 f t ADELANTO 9500.00 4 974 \N +38873 2025-05-29 14:50:17.726545+00 2025-05-29 14:50:17.72656+00 f t SUBTOTAL 70000.00 1 982 \N +38874 2025-05-29 14:50:17.730339+00 2025-05-29 14:50:17.730354+00 f t DESCUENTO 0.00 2 982 \N +38875 2025-05-29 14:50:17.733521+00 2025-05-29 14:50:17.733535+00 f t TOTAL 70000.00 3 982 \N +38876 2025-05-29 14:50:17.736142+00 2025-05-29 14:50:17.736156+00 f t ADELANTO 10000.00 4 982 \N +40761 2025-05-30 15:40:37.802422+00 2025-05-30 15:40:37.802438+00 f t SUBTOTAL 0.00 1 1038 \N +40762 2025-05-30 15:40:37.805349+00 2025-05-30 15:40:37.805358+00 f t DESCUENTO 0.00 2 1038 \N +40763 2025-05-30 15:40:37.807175+00 2025-05-30 15:40:37.807188+00 f t TOTAL 0.00 3 1038 \N +38897 2025-05-29 15:15:11.284848+00 2025-05-29 15:15:11.284863+00 f t SUBTOTAL 0.00 1 985 \N +38898 2025-05-29 15:15:11.286964+00 2025-05-29 15:15:11.286973+00 f t DESCUENTO 0.00 2 985 \N +38899 2025-05-29 15:15:11.288747+00 2025-05-29 15:15:11.288759+00 f t TOTAL 0.00 3 985 \N +38900 2025-05-29 15:15:11.290442+00 2025-05-29 15:15:11.290453+00 f t ADELANTO 0.00 4 985 \N +40764 2025-05-30 15:40:37.809154+00 2025-05-30 15:40:37.809162+00 f t ADELANTO 0.00 4 1038 \N +39697 2025-05-30 00:23:31.999593+00 2025-05-30 00:23:31.999607+00 f t SUBTOTAL 0.00 1 1011 \N +39698 2025-05-30 00:23:32.001819+00 2025-05-30 00:23:32.001833+00 f t DESCUENTO 0.00 2 1011 \N +39699 2025-05-30 00:23:32.003862+00 2025-05-30 00:23:32.003873+00 f t TOTAL 0.00 3 1011 \N +39700 2025-05-30 00:23:32.005611+00 2025-05-30 00:23:32.005621+00 f t ADELANTO 0.00 4 1011 \N +38977 2025-05-29 15:50:03.794022+00 2025-05-29 15:50:03.794038+00 f t SUBTOTAL 0.00 1 987 \N +38978 2025-05-29 15:50:03.796797+00 2025-05-29 15:50:03.796811+00 f t DESCUENTO 0.00 2 987 \N +38979 2025-05-29 15:50:03.799223+00 2025-05-29 15:50:03.799239+00 f t TOTAL 0.00 3 987 \N +38980 2025-05-29 15:50:03.80182+00 2025-05-29 15:50:03.801835+00 f t ADELANTO 0.00 4 987 \N +39761 2025-05-30 00:28:13.596816+00 2025-05-30 00:28:13.596828+00 f t SUBTOTAL 59500.00 1 1013 \N +39762 2025-05-30 00:28:13.598648+00 2025-05-30 00:28:13.598656+00 f t DESCUENTO 0.00 2 1013 \N +39763 2025-05-30 00:28:13.600269+00 2025-05-30 00:28:13.600278+00 f t TOTAL 59500.00 3 1013 \N +39764 2025-05-30 00:28:13.601886+00 2025-05-30 00:28:13.601894+00 f t ADELANTO 15500.00 4 1013 \N +40885 2025-05-30 16:00:16.907978+00 2025-05-30 16:00:16.907995+00 f t SUBTOTAL 0.00 1 1039 \N +40886 2025-05-30 16:00:16.912493+00 2025-05-30 16:00:16.912508+00 f t DESCUENTO 0.00 2 1039 \N +40887 2025-05-30 16:00:16.916664+00 2025-05-30 16:00:16.916683+00 f t TOTAL 0.00 3 1039 \N +39777 2025-05-30 00:29:51.960786+00 2025-05-30 00:29:51.9608+00 f t SUBTOTAL 59500.00 1 1012 \N +39778 2025-05-30 00:29:51.963044+00 2025-05-30 00:29:51.963057+00 f t DESCUENTO 0.00 2 1012 \N +39779 2025-05-30 00:29:51.964846+00 2025-05-30 00:29:51.964857+00 f t TOTAL 59500.00 3 1012 \N +39780 2025-05-30 00:29:51.966388+00 2025-05-30 00:29:51.966398+00 f t ADELANTO 15500.00 4 1012 \N +40888 2025-05-30 16:00:16.919599+00 2025-05-30 16:00:16.919613+00 f t ADELANTO 0.00 4 1039 \N +39101 2025-05-29 16:56:27.934239+00 2025-05-29 16:56:27.934255+00 f t SUBTOTAL 0.00 1 993 \N +39102 2025-05-29 16:56:27.936814+00 2025-05-29 16:56:27.936827+00 f t DESCUENTO 0.00 2 993 \N +39103 2025-05-29 16:56:27.938837+00 2025-05-29 16:56:27.938847+00 f t TOTAL 0.00 3 993 \N +39104 2025-05-29 16:56:27.940567+00 2025-05-29 16:56:27.940578+00 f t ADELANTO 0.00 4 993 \N +39813 2025-05-30 00:44:18.676189+00 2025-05-30 00:44:18.676198+00 f t SUBTOTAL 38500.00 1 1014 \N +39814 2025-05-30 00:44:18.678322+00 2025-05-30 00:44:18.678332+00 f t DESCUENTO 0.00 2 1014 \N +39815 2025-05-30 00:44:18.680128+00 2025-05-30 00:44:18.680137+00 f t TOTAL 38500.00 3 1014 \N +39816 2025-05-30 00:44:18.68193+00 2025-05-30 00:44:18.681941+00 f t ADELANTO 8500.00 4 1014 \N +40965 2025-05-30 16:28:44.788023+00 2025-05-30 16:28:44.788038+00 f t SUBTOTAL 0.00 1 1041 \N +40966 2025-05-30 16:28:44.790359+00 2025-05-30 16:28:44.790371+00 f t DESCUENTO 0.00 2 1041 \N +40967 2025-05-30 16:28:44.791942+00 2025-05-30 16:28:44.791952+00 f t TOTAL 0.00 3 1041 \N +40968 2025-05-30 16:28:44.79332+00 2025-05-30 16:28:44.793326+00 f t ADELANTO 0.00 4 1041 \N +39929 2025-05-30 01:39:25.374938+00 2025-05-30 01:39:25.374948+00 f t SUBTOTAL 59500.00 1 1017 \N +39930 2025-05-30 01:39:25.37664+00 2025-05-30 01:39:25.376648+00 f t DESCUENTO 0.00 2 1017 \N +39931 2025-05-30 01:39:25.377835+00 2025-05-30 01:39:25.377841+00 f t TOTAL 59500.00 3 1017 \N +39932 2025-05-30 01:39:25.378994+00 2025-05-30 01:39:25.378999+00 f t ADELANTO 15500.00 4 1017 \N +39949 2025-05-30 02:23:46.280562+00 2025-05-30 02:23:46.280584+00 f t SUBTOTAL 0.00 1 1018 \N +39950 2025-05-30 02:23:46.283648+00 2025-05-30 02:23:46.283661+00 f t DESCUENTO 0.00 2 1018 \N +39951 2025-05-30 02:23:46.285774+00 2025-05-30 02:23:46.285786+00 f t TOTAL 0.00 3 1018 \N +39952 2025-05-30 02:23:46.287644+00 2025-05-30 02:23:46.287654+00 f t ADELANTO 0.00 4 1018 \N +42409 2025-05-31 02:13:35.97006+00 2025-05-31 02:13:35.970069+00 f t SUBTOTAL 46000.00 1 1075 \N +42410 2025-05-31 02:13:35.972261+00 2025-05-31 02:13:35.972272+00 f t DESCUENTO 0.00 2 1075 \N +42411 2025-05-31 02:13:35.974626+00 2025-05-31 02:13:35.974636+00 f t TOTAL 46000.00 3 1075 \N +39577 2025-05-29 22:36:06.769273+00 2025-05-29 22:36:06.769286+00 f t SUBTOTAL 46000.00 1 1005 \N +39578 2025-05-29 22:36:06.772366+00 2025-05-29 22:36:06.772378+00 f t DESCUENTO 0.00 2 1005 \N +39293 2025-05-29 17:46:21.918448+00 2025-05-29 17:46:21.918461+00 f t SUBTOTAL 0.00 1 995 \N +39294 2025-05-29 17:46:21.920615+00 2025-05-29 17:46:21.920627+00 f t DESCUENTO 0.00 2 995 \N +39295 2025-05-29 17:46:21.922223+00 2025-05-29 17:46:21.922235+00 f t TOTAL 0.00 3 995 \N +39296 2025-05-29 17:46:21.923765+00 2025-05-29 17:46:21.923776+00 f t ADELANTO 0.00 4 995 \N +39579 2025-05-29 22:36:06.774505+00 2025-05-29 22:36:06.774516+00 f t TOTAL 46000.00 3 1005 \N +39580 2025-05-29 22:36:06.776154+00 2025-05-29 22:36:06.776164+00 f t ADELANTO 9500.00 4 1005 \N +39309 2025-05-29 18:15:23.905976+00 2025-05-29 18:15:23.906066+00 f t SUBTOTAL 0.00 1 981 \N +39310 2025-05-29 18:15:23.908851+00 2025-05-29 18:15:23.908865+00 f t DESCUENTO 0.00 2 981 \N +39311 2025-05-29 18:15:23.910708+00 2025-05-29 18:15:23.91072+00 f t TOTAL 0.00 3 981 \N +39312 2025-05-29 18:15:23.912751+00 2025-05-29 18:15:23.912763+00 f t ADELANTO 0.00 4 981 \N +39621 2025-05-29 23:36:52.306967+00 2025-05-29 23:36:52.306978+00 f t SUBTOTAL 0.00 1 1007 \N +39622 2025-05-29 23:36:52.309263+00 2025-05-29 23:36:52.309275+00 f t DESCUENTO 0.00 2 1007 \N +39623 2025-05-29 23:36:52.311072+00 2025-05-29 23:36:52.311087+00 f t TOTAL 0.00 3 1007 \N +39624 2025-05-29 23:36:52.313037+00 2025-05-29 23:36:52.313046+00 f t ADELANTO 0.00 4 1007 \N +39641 2025-05-29 23:48:26.263396+00 2025-05-29 23:48:26.26341+00 f t SUBTOTAL 0.00 1 1008 \N +39642 2025-05-29 23:48:26.265858+00 2025-05-29 23:48:26.26587+00 f t DESCUENTO 0.00 2 1008 \N +39643 2025-05-29 23:48:26.267453+00 2025-05-29 23:48:26.267463+00 f t TOTAL 0.00 3 1008 \N +39644 2025-05-29 23:48:26.269083+00 2025-05-29 23:48:26.269091+00 f t ADELANTO 0.00 4 1008 \N +39661 2025-05-30 00:12:10.390385+00 2025-05-30 00:12:10.390396+00 f t SUBTOTAL 0.00 1 1009 \N +39662 2025-05-30 00:12:10.392602+00 2025-05-30 00:12:10.392611+00 f t DESCUENTO 0.00 2 1009 \N +39663 2025-05-30 00:12:10.394336+00 2025-05-30 00:12:10.394349+00 f t TOTAL 0.00 3 1009 \N +39664 2025-05-30 00:12:10.396003+00 2025-05-30 00:12:10.396013+00 f t ADELANTO 0.00 4 1009 \N +39337 2025-05-29 18:24:52.679078+00 2025-05-29 18:24:52.679088+00 f t SUBTOTAL 46000.00 1 996 \N +39338 2025-05-29 18:24:52.681155+00 2025-05-29 18:24:52.681165+00 f t DESCUENTO 0.00 2 996 \N +39339 2025-05-29 18:24:52.683413+00 2025-05-29 18:24:52.683428+00 f t TOTAL 46000.00 3 996 \N +39340 2025-05-29 18:24:52.709479+00 2025-05-29 18:24:52.70949+00 f t ADELANTO 9500.00 4 996 \N +39345 2025-05-29 18:30:25.78872+00 2025-05-29 18:30:25.788736+00 f t SUBTOTAL 0.00 1 997 \N +39346 2025-05-29 18:30:25.791695+00 2025-05-29 18:30:25.791712+00 f t DESCUENTO 0.00 2 997 \N +39347 2025-05-29 18:30:25.794094+00 2025-05-29 18:30:25.794108+00 f t TOTAL 0.00 3 997 \N +39348 2025-05-29 18:30:25.796084+00 2025-05-29 18:30:25.796097+00 f t ADELANTO 0.00 4 997 \N +39689 2025-05-30 00:13:42.237598+00 2025-05-30 00:13:42.237607+00 f t SUBTOTAL 38500.00 1 1010 \N +39690 2025-05-30 00:13:42.239437+00 2025-05-30 00:13:42.239445+00 f t DESCUENTO 0.00 2 1010 \N +39691 2025-05-30 00:13:42.240544+00 2025-05-30 00:13:42.24055+00 f t TOTAL 38500.00 3 1010 \N +39692 2025-05-30 00:13:42.241583+00 2025-05-30 00:13:42.241589+00 f t ADELANTO 8500.00 4 1010 \N +40689 2025-05-30 12:51:34.944838+00 2025-05-30 12:51:34.944851+00 f t SUBTOTAL 95500.00 1 1033 \N +40690 2025-05-30 12:51:34.94695+00 2025-05-30 12:51:34.94696+00 f t DESCUENTO 0.00 2 1033 \N +40691 2025-05-30 12:51:34.948525+00 2025-05-30 12:51:34.948534+00 f t TOTAL 95500.00 3 1033 \N +40692 2025-05-30 12:51:34.949874+00 2025-05-30 12:51:34.949883+00 f t ADELANTO 60500.00 4 1033 \N +40725 2025-05-30 13:52:41.364805+00 2025-05-30 13:52:41.364818+00 f t SUBTOTAL 67000.00 1 1034 \N +40726 2025-05-30 13:52:41.366695+00 2025-05-30 13:52:41.366704+00 f t DESCUENTO 0.00 2 1034 \N +40727 2025-05-30 13:52:41.368363+00 2025-05-30 13:52:41.368372+00 f t TOTAL 67000.00 3 1034 \N +40728 2025-05-30 13:52:41.369939+00 2025-05-30 13:52:41.369948+00 f t ADELANTO 18000.00 4 1034 \N +39385 2025-05-29 19:21:30.078177+00 2025-05-29 19:21:30.078189+00 f t SUBTOTAL 57500.00 1 998 \N +39386 2025-05-29 19:21:30.080244+00 2025-05-29 19:21:30.080267+00 f t DESCUENTO 0.00 2 998 \N +39387 2025-05-29 19:21:30.081966+00 2025-05-29 19:21:30.081976+00 f t TOTAL 57500.00 3 998 \N +39388 2025-05-29 19:21:30.08346+00 2025-05-29 19:21:30.08347+00 f t ADELANTO 22500.00 4 998 \N +39421 2025-05-29 19:33:47.767506+00 2025-05-29 19:33:47.767516+00 f t SUBTOTAL 46000.00 1 999 \N +39422 2025-05-29 19:33:47.769366+00 2025-05-29 19:33:47.769374+00 f t DESCUENTO 0.00 2 999 \N +39423 2025-05-29 19:33:47.770697+00 2025-05-29 19:33:47.770704+00 f t TOTAL 46000.00 3 999 \N +39424 2025-05-29 19:33:47.77189+00 2025-05-29 19:33:47.771896+00 f t ADELANTO 9500.00 4 999 \N +39429 2025-05-29 20:15:13.083673+00 2025-05-29 20:15:13.083688+00 f t SUBTOTAL 0.00 1 1000 \N +39430 2025-05-29 20:15:13.086428+00 2025-05-29 20:15:13.086442+00 f t DESCUENTO 0.00 2 1000 \N +39431 2025-05-29 20:15:13.088879+00 2025-05-29 20:15:13.088894+00 f t TOTAL 0.00 3 1000 \N +39432 2025-05-29 20:15:13.091229+00 2025-05-29 20:15:13.091243+00 f t ADELANTO 0.00 4 1000 \N +39449 2025-05-29 20:22:50.017585+00 2025-05-29 20:22:50.0176+00 f t SUBTOTAL 0.00 1 1002 \N +39450 2025-05-29 20:22:50.020218+00 2025-05-29 20:22:50.020232+00 f t DESCUENTO 0.00 2 1002 \N +39451 2025-05-29 20:22:50.022148+00 2025-05-29 20:22:50.022161+00 f t TOTAL 0.00 3 1002 \N +39452 2025-05-29 20:22:50.024176+00 2025-05-29 20:22:50.024189+00 f t ADELANTO 0.00 4 1002 \N +39885 2025-05-30 01:37:40.136362+00 2025-05-30 01:37:40.13637+00 f t SUBTOTAL 38500.00 1 1015 \N +39886 2025-05-30 01:37:40.138338+00 2025-05-30 01:37:40.138346+00 f t DESCUENTO 0.00 2 1015 \N +39887 2025-05-30 01:37:40.13964+00 2025-05-30 01:37:40.139648+00 f t TOTAL 38500.00 3 1015 \N +39888 2025-05-30 01:37:40.140979+00 2025-05-30 01:37:40.140986+00 f t ADELANTO 8500.00 4 1015 \N +39909 2025-05-30 01:37:59.791993+00 2025-05-30 01:37:59.792006+00 f t SUBTOTAL 46000.00 1 1016 \N +39910 2025-05-30 01:37:59.793775+00 2025-05-30 01:37:59.793784+00 f t DESCUENTO 0.00 2 1016 \N +39911 2025-05-30 01:37:59.795097+00 2025-05-30 01:37:59.795107+00 f t TOTAL 46000.00 3 1016 \N +39912 2025-05-30 01:37:59.796526+00 2025-05-30 01:37:59.796534+00 f t ADELANTO 9500.00 4 1016 \N +39501 2025-05-29 20:24:20.204539+00 2025-05-29 20:24:20.204549+00 f t SUBTOTAL 0.00 1 1001 \N +39502 2025-05-29 20:24:20.206866+00 2025-05-29 20:24:20.206876+00 f t DESCUENTO 0.00 2 1001 \N +39503 2025-05-29 20:24:20.208316+00 2025-05-29 20:24:20.208323+00 f t TOTAL 0.00 3 1001 \N +39504 2025-05-29 20:24:20.209664+00 2025-05-29 20:24:20.209671+00 f t ADELANTO 0.00 4 1001 \N +39957 2025-05-30 02:35:22.892372+00 2025-05-30 02:35:22.892382+00 f t SUBTOTAL 0.00 1 1019 \N +39958 2025-05-30 02:35:22.893816+00 2025-05-30 02:35:22.893823+00 f t DESCUENTO 0.00 2 1019 \N +39959 2025-05-30 02:35:22.895028+00 2025-05-30 02:35:22.895033+00 f t TOTAL 0.00 3 1019 \N +39960 2025-05-30 02:35:22.895999+00 2025-05-30 02:35:22.896004+00 f t ADELANTO 0.00 4 1019 \N +39517 2025-05-29 21:38:21.209358+00 2025-05-29 21:38:21.209372+00 f t SUBTOTAL 0.00 1 1003 \N +39518 2025-05-29 21:38:21.211849+00 2025-05-29 21:38:21.211858+00 f t DESCUENTO 0.00 2 1003 \N +39519 2025-05-29 21:38:21.213304+00 2025-05-29 21:38:21.213313+00 f t TOTAL 0.00 3 1003 \N +39520 2025-05-29 21:38:21.214826+00 2025-05-29 21:38:21.214835+00 f t ADELANTO 0.00 4 1003 \N +42412 2025-05-31 02:13:35.976666+00 2025-05-31 02:13:35.976676+00 f t ADELANTO 11000.00 4 1075 \N +41453 2025-05-30 21:23:09.025014+00 2025-05-30 21:23:09.025023+00 f t SUBTOTAL 0.00 1 1054 \N +41454 2025-05-30 21:23:09.026456+00 2025-05-30 21:23:09.026462+00 f t DESCUENTO 0.00 2 1054 \N +41455 2025-05-30 21:23:09.027692+00 2025-05-30 21:23:09.027698+00 f t TOTAL 0.00 3 1054 \N +41456 2025-05-30 21:23:09.028744+00 2025-05-30 21:23:09.02875+00 f t ADELANTO 0.00 4 1054 \N +42452 2025-05-31 02:46:21.534954+00 2025-05-31 02:46:21.534961+00 f t ADELANTO 15500.00 4 1076 \N +42489 2025-05-31 03:36:51.350457+00 2025-05-31 03:36:51.350468+00 f t SUBTOTAL 46000.00 1 1078 \N +42490 2025-05-31 03:36:51.352352+00 2025-05-31 03:36:51.352362+00 f t DESCUENTO 0.00 2 1078 \N +42491 2025-05-31 03:36:51.353621+00 2025-05-31 03:36:51.353629+00 f t TOTAL 46000.00 3 1078 \N +41497 2025-05-30 21:46:09.722769+00 2025-05-30 21:46:09.722783+00 f t SUBTOTAL 0.00 1 1057 \N +41498 2025-05-30 21:46:09.724988+00 2025-05-30 21:46:09.724999+00 f t DESCUENTO 0.00 2 1057 \N +41499 2025-05-30 21:46:09.727269+00 2025-05-30 21:46:09.72728+00 f t TOTAL 0.00 3 1057 \N +41500 2025-05-30 21:46:09.729378+00 2025-05-30 21:46:09.729391+00 f t ADELANTO 0.00 4 1057 \N +42492 2025-05-31 03:36:51.354827+00 2025-05-31 03:36:51.354834+00 f t ADELANTO 9500.00 4 1078 \N +40697 2025-05-30 13:06:19.622297+00 2025-05-30 13:06:19.622307+00 f t SUBTOTAL 0.00 1 1035 \N +40698 2025-05-30 13:06:19.624053+00 2025-05-30 13:06:19.624065+00 f t DESCUENTO 0.00 2 1035 \N +40699 2025-05-30 13:06:19.625521+00 2025-05-30 13:06:19.625527+00 f t TOTAL 0.00 3 1035 \N +40700 2025-05-30 13:06:19.627106+00 2025-05-30 13:06:19.627116+00 f t ADELANTO 0.00 4 1035 \N +40733 2025-05-30 14:29:34.990807+00 2025-05-30 14:29:34.99082+00 f t SUBTOTAL 0.00 1 1036 \N +40734 2025-05-30 14:29:34.992604+00 2025-05-30 14:29:34.992615+00 f t DESCUENTO 0.00 2 1036 \N +40735 2025-05-30 14:29:34.994026+00 2025-05-30 14:29:34.994035+00 f t TOTAL 0.00 3 1036 \N +40736 2025-05-30 14:29:34.995271+00 2025-05-30 14:29:34.99528+00 f t ADELANTO 0.00 4 1036 \N +40181 2025-05-30 03:12:42.185165+00 2025-05-30 03:12:42.185178+00 f t SUBTOTAL 67000.00 1 1020 \N +40182 2025-05-30 03:12:42.187936+00 2025-05-30 03:12:42.18795+00 f t DESCUENTO 0.00 2 1020 \N +40183 2025-05-30 03:12:42.190216+00 2025-05-30 03:12:42.190252+00 f t TOTAL 67000.00 3 1020 \N +40184 2025-05-30 03:12:42.192156+00 2025-05-30 03:12:42.192167+00 f t ADELANTO 18000.00 4 1020 \N +41745 2025-05-30 23:28:49.45811+00 2025-05-30 23:28:49.458119+00 f t SUBTOTAL 46000.00 1 1062 \N +40189 2025-05-30 03:42:25.48761+00 2025-05-30 03:42:25.487623+00 f t SUBTOTAL 0.00 1 1021 \N +40190 2025-05-30 03:42:25.489357+00 2025-05-30 03:42:25.48937+00 f t DESCUENTO 0.00 2 1021 \N +40191 2025-05-30 03:42:25.49095+00 2025-05-30 03:42:25.490961+00 f t TOTAL 0.00 3 1021 \N +40192 2025-05-30 03:42:25.492517+00 2025-05-30 03:42:25.492527+00 f t ADELANTO 0.00 4 1021 \N +41746 2025-05-30 23:28:49.460006+00 2025-05-30 23:28:49.460016+00 f t DESCUENTO 0.00 2 1062 \N +41747 2025-05-30 23:28:49.46153+00 2025-05-30 23:28:49.461537+00 f t TOTAL 46000.00 3 1062 \N +41748 2025-05-30 23:28:49.462879+00 2025-05-30 23:28:49.462884+00 f t ADELANTO 9500.00 4 1062 \N +40197 2025-05-30 04:01:16.945016+00 2025-05-30 04:01:16.945031+00 f t SUBTOTAL 0.00 1 1022 \N +40198 2025-05-30 04:01:16.947699+00 2025-05-30 04:01:16.947713+00 f t DESCUENTO 0.00 2 1022 \N +40199 2025-05-30 04:01:16.949955+00 2025-05-30 04:01:16.949989+00 f t TOTAL 0.00 3 1022 \N +40200 2025-05-30 04:01:16.952123+00 2025-05-30 04:01:16.952135+00 f t ADELANTO 0.00 4 1022 \N +40893 2025-05-30 16:25:32.03208+00 2025-05-30 16:25:32.032098+00 f t SUBTOTAL 0.00 1 1040 \N +40894 2025-05-30 16:25:32.033625+00 2025-05-30 16:25:32.033633+00 f t DESCUENTO 0.00 2 1040 \N +40895 2025-05-30 16:25:32.034829+00 2025-05-30 16:25:32.034838+00 f t TOTAL 0.00 3 1040 \N +40896 2025-05-30 16:25:32.03607+00 2025-05-30 16:25:32.036076+00 f t ADELANTO 0.00 4 1040 \N +41773 2025-05-30 23:42:14.200768+00 2025-05-30 23:42:14.200781+00 f t SUBTOTAL 46000.00 1 1063 \N +41774 2025-05-30 23:42:14.20317+00 2025-05-30 23:42:14.203181+00 f t DESCUENTO 0.00 2 1063 \N +41775 2025-05-30 23:42:14.205336+00 2025-05-30 23:42:14.205346+00 f t TOTAL 46000.00 3 1063 \N +41776 2025-05-30 23:42:14.207761+00 2025-05-30 23:42:14.207772+00 f t ADELANTO 9500.00 4 1063 \N +40225 2025-05-30 11:08:03.046968+00 2025-05-30 11:08:03.046982+00 f t SUBTOTAL 46000.00 1 1023 \N +40226 2025-05-30 11:08:03.049945+00 2025-05-30 11:08:03.049957+00 f t DESCUENTO 0.00 2 1023 \N +40227 2025-05-30 11:08:03.052082+00 2025-05-30 11:08:03.052093+00 f t TOTAL 46000.00 3 1023 \N +40228 2025-05-30 11:08:03.054697+00 2025-05-30 11:08:03.05471+00 f t ADELANTO 11000.00 4 1023 \N +40233 2025-05-30 11:11:27.93597+00 2025-05-30 11:11:27.935984+00 f t SUBTOTAL 0.00 1 1024 \N +40234 2025-05-30 11:11:27.938628+00 2025-05-30 11:11:27.938638+00 f t DESCUENTO 0.00 2 1024 \N +40235 2025-05-30 11:11:27.944313+00 2025-05-30 11:11:27.944326+00 f t TOTAL 0.00 3 1024 \N +40236 2025-05-30 11:11:27.947681+00 2025-05-30 11:11:27.947696+00 f t ADELANTO 0.00 4 1024 \N +41029 2025-05-30 17:03:50.997381+00 2025-05-30 17:03:50.997393+00 f t SUBTOTAL 59500.00 1 1042 \N +41030 2025-05-30 17:03:50.999829+00 2025-05-30 17:03:50.999841+00 f t DESCUENTO 0.00 2 1042 \N +41031 2025-05-30 17:03:51.001648+00 2025-05-30 17:03:51.001661+00 f t TOTAL 59500.00 3 1042 \N +41032 2025-05-30 17:03:51.004186+00 2025-05-30 17:03:51.004199+00 f t ADELANTO 15500.00 4 1042 \N +41065 2025-05-30 17:49:09.96211+00 2025-05-30 17:49:09.962122+00 f t SUBTOTAL 107250.00 1 1043 \N +41066 2025-05-30 17:49:09.963906+00 2025-05-30 17:49:09.963914+00 f t DESCUENTO 0.00 2 1043 \N +41067 2025-05-30 17:49:09.965366+00 2025-05-30 17:49:09.965374+00 f t TOTAL 107250.00 3 1043 \N +41068 2025-05-30 17:49:09.966838+00 2025-05-30 17:49:09.966845+00 f t ADELANTO 22250.00 4 1043 \N +41089 2025-05-30 18:03:47.628569+00 2025-05-30 18:03:47.62858+00 f t SUBTOTAL 0.00 1 1044 \N +41090 2025-05-30 18:03:47.63093+00 2025-05-30 18:03:47.630938+00 f t DESCUENTO 0.00 2 1044 \N +41091 2025-05-30 18:03:47.632413+00 2025-05-30 18:03:47.63242+00 f t TOTAL 0.00 3 1044 \N +41092 2025-05-30 18:03:47.633819+00 2025-05-30 18:03:47.633827+00 f t ADELANTO 0.00 4 1044 \N +40297 2025-05-30 11:18:53.003722+00 2025-05-30 11:18:53.003734+00 f t SUBTOTAL 46000.00 1 1025 \N +40298 2025-05-30 11:18:53.005812+00 2025-05-30 11:18:53.005824+00 f t DESCUENTO 0.00 2 1025 \N +40299 2025-05-30 11:18:53.007589+00 2025-05-30 11:18:53.0076+00 f t TOTAL 46000.00 3 1025 \N +40300 2025-05-30 11:18:53.009204+00 2025-05-30 11:18:53.009213+00 f t ADELANTO 9500.00 4 1025 \N +40305 2025-05-30 11:36:28.469429+00 2025-05-30 11:36:28.469442+00 f t SUBTOTAL 0.00 1 1026 \N +40306 2025-05-30 11:36:28.471097+00 2025-05-30 11:36:28.471106+00 f t DESCUENTO 0.00 2 1026 \N +40307 2025-05-30 11:36:28.472605+00 2025-05-30 11:36:28.472614+00 f t TOTAL 0.00 3 1026 \N +40308 2025-05-30 11:36:28.474083+00 2025-05-30 11:36:28.474091+00 f t ADELANTO 0.00 4 1026 \N +40313 2025-05-30 11:36:44.465517+00 2025-05-30 11:36:44.465528+00 f t SUBTOTAL 0.00 1 1027 \N +40314 2025-05-30 11:36:44.467412+00 2025-05-30 11:36:44.467423+00 f t DESCUENTO 0.00 2 1027 \N +40315 2025-05-30 11:36:44.469258+00 2025-05-30 11:36:44.469266+00 f t TOTAL 0.00 3 1027 \N +40316 2025-05-30 11:36:44.470473+00 2025-05-30 11:36:44.47048+00 f t ADELANTO 0.00 4 1027 \N +41117 2025-05-30 18:04:49.806984+00 2025-05-30 18:04:49.806994+00 f t SUBTOTAL 38500.00 1 1045 \N +41118 2025-05-30 18:04:49.809259+00 2025-05-30 18:04:49.809269+00 f t DESCUENTO 0.00 2 1045 \N +41119 2025-05-30 18:04:49.811501+00 2025-05-30 18:04:49.811514+00 f t TOTAL 38500.00 3 1045 \N +41120 2025-05-30 18:04:49.813785+00 2025-05-30 18:04:49.813796+00 f t ADELANTO 8500.00 4 1045 \N +40373 2025-05-30 12:01:14.627818+00 2025-05-30 12:01:14.62783+00 f t SUBTOTAL 46000.00 1 1028 \N +40374 2025-05-30 12:01:14.630384+00 2025-05-30 12:01:14.630397+00 f t DESCUENTO 0.00 2 1028 \N +40375 2025-05-30 12:01:14.632577+00 2025-05-30 12:01:14.632588+00 f t TOTAL 46000.00 3 1028 \N +40376 2025-05-30 12:01:14.634518+00 2025-05-30 12:01:14.634532+00 f t ADELANTO 11000.00 4 1028 \N +41461 2025-05-30 21:23:58.799445+00 2025-05-30 21:23:58.799459+00 f t SUBTOTAL 0.00 1 1055 \N +41462 2025-05-30 21:23:58.801597+00 2025-05-30 21:23:58.801608+00 f t DESCUENTO 0.00 2 1055 \N +41463 2025-05-30 21:23:58.803239+00 2025-05-30 21:23:58.803248+00 f t TOTAL 0.00 3 1055 \N +41464 2025-05-30 21:23:58.804637+00 2025-05-30 21:23:58.804646+00 f t ADELANTO 0.00 4 1055 \N +41505 2025-05-30 21:46:41.385682+00 2025-05-30 21:46:41.385697+00 f t SUBTOTAL 0.00 1 1058 \N +41506 2025-05-30 21:46:41.38774+00 2025-05-30 21:46:41.387752+00 f t DESCUENTO 0.00 2 1058 \N +41507 2025-05-30 21:46:41.389536+00 2025-05-30 21:46:41.389548+00 f t TOTAL 0.00 3 1058 \N +41508 2025-05-30 21:46:41.391216+00 2025-05-30 21:46:41.391227+00 f t ADELANTO 0.00 4 1058 \N +42457 2025-05-31 03:30:25.654987+00 2025-05-31 03:30:25.655001+00 f t SUBTOTAL 0.00 1 1077 \N +42458 2025-05-31 03:30:25.656988+00 2025-05-31 03:30:25.656999+00 f t DESCUENTO 0.00 2 1077 \N +42459 2025-05-31 03:30:25.658853+00 2025-05-31 03:30:25.658865+00 f t TOTAL 0.00 3 1077 \N +42460 2025-05-31 03:30:25.660859+00 2025-05-31 03:30:25.66087+00 f t ADELANTO 0.00 4 1077 \N +45593 2025-06-02 02:13:42.171078+00 2025-06-02 02:13:42.17109+00 f t SUBTOTAL 0.00 1 1161 \N +45594 2025-06-02 02:13:42.173856+00 2025-06-02 02:13:42.173867+00 f t DESCUENTO 0.00 2 1161 \N +45595 2025-06-02 02:13:42.175655+00 2025-06-02 02:13:42.175666+00 f t TOTAL 0.00 3 1161 \N +45596 2025-06-02 02:13:42.177674+00 2025-06-02 02:13:42.177682+00 f t ADELANTO 0.00 4 1161 \N +40409 2025-05-30 12:07:09.415536+00 2025-05-30 12:07:09.415548+00 f t SUBTOTAL 38500.00 1 1029 \N +40410 2025-05-30 12:07:09.418205+00 2025-05-30 12:07:09.418215+00 f t DESCUENTO 0.00 2 1029 \N +40411 2025-05-30 12:07:09.420509+00 2025-05-30 12:07:09.420521+00 f t TOTAL 38500.00 3 1029 \N +40412 2025-05-30 12:07:09.422921+00 2025-05-30 12:07:09.422934+00 f t ADELANTO 8500.00 4 1029 \N +41561 2025-05-30 21:58:32.062064+00 2025-05-30 21:58:32.062077+00 f t SUBTOTAL 38500.00 1 1060 \N +41562 2025-05-30 21:58:32.063957+00 2025-05-30 21:58:32.063964+00 f t DESCUENTO 0.00 2 1060 \N +41563 2025-05-30 21:58:32.065617+00 2025-05-30 21:58:32.065625+00 f t TOTAL 38500.00 3 1060 \N +41564 2025-05-30 21:58:32.06706+00 2025-05-30 21:58:32.067069+00 f t ADELANTO 8500.00 4 1060 \N +42497 2025-05-31 03:38:25.967055+00 2025-05-31 03:38:25.967069+00 f t SUBTOTAL 0.00 1 1079 \N +42498 2025-05-31 03:38:25.969237+00 2025-05-31 03:38:25.969249+00 f t DESCUENTO 0.00 2 1079 \N +42499 2025-05-31 03:38:25.971308+00 2025-05-31 03:38:25.971319+00 f t TOTAL 0.00 3 1079 \N +42500 2025-05-31 03:38:25.973544+00 2025-05-31 03:38:25.973555+00 f t ADELANTO 0.00 4 1079 \N +40741 2025-05-30 15:32:29.172165+00 2025-05-30 15:32:29.17218+00 f t SUBTOTAL 0.00 1 1037 \N +40742 2025-05-30 15:32:29.174629+00 2025-05-30 15:32:29.174644+00 f t DESCUENTO 0.00 2 1037 \N +40743 2025-05-30 15:32:29.176958+00 2025-05-30 15:32:29.176972+00 f t TOTAL 0.00 3 1037 \N +40744 2025-05-30 15:32:29.178783+00 2025-05-30 15:32:29.178796+00 f t ADELANTO 0.00 4 1037 \N +42577 2025-05-31 05:04:25.954739+00 2025-05-31 05:04:25.954747+00 f t SUBTOTAL 38500.00 1 1081 \N +42578 2025-05-31 05:04:25.957455+00 2025-05-31 05:04:25.957466+00 f t DESCUENTO 0.00 2 1081 \N +42579 2025-05-31 05:04:25.958991+00 2025-05-31 05:04:25.958998+00 f t TOTAL 38500.00 3 1081 \N +42580 2025-05-31 05:04:25.960317+00 2025-05-31 05:04:25.960326+00 f t ADELANTO 8500.00 4 1081 \N +43589 2025-05-31 20:51:16.169135+00 2025-05-31 20:51:16.169147+00 f t SUBTOTAL 85000.00 1 1112 \N +43590 2025-05-31 20:51:16.17116+00 2025-05-31 20:51:16.171171+00 f t DESCUENTO 0.00 2 1112 \N +43591 2025-05-31 20:51:16.172883+00 2025-05-31 20:51:16.172891+00 f t TOTAL 85000.00 3 1112 \N +43592 2025-05-31 20:51:16.174106+00 2025-05-31 20:51:16.174112+00 f t ADELANTO 50000.00 4 1112 \N +41697 2025-05-30 22:31:15.251009+00 2025-05-30 22:31:15.251018+00 f t SUBTOTAL 85000.00 1 1061 \N +41698 2025-05-30 22:31:15.252703+00 2025-05-30 22:31:15.25271+00 f t DESCUENTO 0.00 2 1061 \N +41699 2025-05-30 22:31:15.25393+00 2025-05-30 22:31:15.253938+00 f t TOTAL 85000.00 3 1061 \N +41700 2025-05-30 22:31:15.255261+00 2025-05-30 22:31:15.255267+00 f t ADELANTO 50000.00 4 1061 \N +43693 2025-05-31 21:30:23.781708+00 2025-05-31 21:30:23.781721+00 f t SUBTOTAL 46000.00 1 1114 \N +43694 2025-05-31 21:30:23.784258+00 2025-05-31 21:30:23.784272+00 f t DESCUENTO 0.00 2 1114 \N +43695 2025-05-31 21:30:23.786719+00 2025-05-31 21:30:23.786731+00 f t TOTAL 46000.00 3 1114 \N +43696 2025-05-31 21:30:23.788717+00 2025-05-31 21:30:23.788729+00 f t ADELANTO 9500.00 4 1114 \N +42725 2025-05-31 10:59:58.215382+00 2025-05-31 10:59:58.215392+00 f t SUBTOTAL 0.00 1 1085 \N +42726 2025-05-31 10:59:58.217409+00 2025-05-31 10:59:58.217417+00 f t DESCUENTO 0.00 2 1085 \N +42727 2025-05-31 10:59:58.218732+00 2025-05-31 10:59:58.21874+00 f t TOTAL 0.00 3 1085 \N +42728 2025-05-31 10:59:58.219873+00 2025-05-31 10:59:58.21988+00 f t ADELANTO 0.00 4 1085 \N +42813 2025-05-31 12:07:30.397275+00 2025-05-31 12:07:30.397288+00 f t SUBTOTAL 71500.00 1 1086 \N +42814 2025-05-31 12:07:30.399462+00 2025-05-31 12:07:30.399473+00 f t DESCUENTO 0.00 2 1086 \N +42815 2025-05-31 12:07:30.401619+00 2025-05-31 12:07:30.401632+00 f t TOTAL 71500.00 3 1086 \N +42816 2025-05-31 12:07:30.403836+00 2025-05-31 12:07:30.403845+00 f t ADELANTO 16000.00 4 1086 \N +42041 2025-05-31 00:22:56.381451+00 2025-05-31 00:22:56.381463+00 f t SUBTOTAL 113500.00 1 1064 \N +42042 2025-05-31 00:22:56.383473+00 2025-05-31 00:22:56.383485+00 f t DESCUENTO 0.00 2 1064 \N +42043 2025-05-31 00:22:56.38529+00 2025-05-31 00:22:56.385302+00 f t TOTAL 113500.00 3 1064 \N +42044 2025-05-31 00:22:56.386693+00 2025-05-31 00:22:56.386703+00 f t ADELANTO 23500.00 4 1064 \N +43061 2025-05-31 13:54:28.714553+00 2025-05-31 13:54:28.714564+00 f t SUBTOTAL 0.00 1 1091 \N +43062 2025-05-31 13:54:28.716827+00 2025-05-31 13:54:28.716837+00 f t DESCUENTO 0.00 2 1091 \N +43063 2025-05-31 13:54:28.718412+00 2025-05-31 13:54:28.718423+00 f t TOTAL 0.00 3 1091 \N +43064 2025-05-31 13:54:28.720311+00 2025-05-31 13:54:28.720321+00 f t ADELANTO 0.00 4 1091 \N +43085 2025-05-31 13:58:56.868282+00 2025-05-31 13:58:56.868291+00 f t SUBTOTAL 0.00 1 1094 \N +43086 2025-05-31 13:58:56.869818+00 2025-05-31 13:58:56.869825+00 f t DESCUENTO 0.00 2 1094 \N +43087 2025-05-31 13:58:56.871053+00 2025-05-31 13:58:56.871059+00 f t TOTAL 0.00 3 1094 \N +43088 2025-05-31 13:58:56.87233+00 2025-05-31 13:58:56.872348+00 f t ADELANTO 0.00 4 1094 \N +43153 2025-05-31 14:57:28.656792+00 2025-05-31 14:57:28.656802+00 f t SUBTOTAL 46000.00 1 1096 \N +43154 2025-05-31 14:57:28.658566+00 2025-05-31 14:57:28.658574+00 f t DESCUENTO 0.00 2 1096 \N +43155 2025-05-31 14:57:28.660085+00 2025-05-31 14:57:28.660091+00 f t TOTAL 46000.00 3 1096 \N +43156 2025-05-31 14:57:28.661144+00 2025-05-31 14:57:28.661149+00 f t ADELANTO 9500.00 4 1096 \N +42105 2025-05-31 00:46:13.663625+00 2025-05-31 00:46:13.663636+00 f t SUBTOTAL 25000.00 1 1068 \N +42106 2025-05-31 00:46:13.6658+00 2025-05-31 00:46:13.665811+00 f t DESCUENTO 0.00 2 1068 \N +42107 2025-05-31 00:46:13.667554+00 2025-05-31 00:46:13.667564+00 f t TOTAL 25000.00 3 1068 \N +42108 2025-05-31 00:46:13.669313+00 2025-05-31 00:46:13.669323+00 f t ADELANTO 25000.00 4 1068 \N +44437 2025-06-01 06:44:33.13782+00 2025-06-01 06:44:33.13783+00 f t SUBTOTAL 0.00 1 1130 \N +44438 2025-06-01 06:44:33.139637+00 2025-06-01 06:44:33.139645+00 f t DESCUENTO 0.00 2 1130 \N +44439 2025-06-01 06:44:33.141335+00 2025-06-01 06:44:33.141342+00 f t TOTAL 0.00 3 1130 \N +44440 2025-06-01 06:44:33.143017+00 2025-06-01 06:44:33.143026+00 f t ADELANTO 0.00 4 1130 \N +46521 2025-06-02 12:42:54.927637+00 2025-06-02 12:42:54.927651+00 f t SUBTOTAL 38500.00 1 1179 \N +41265 2025-05-30 18:08:13.796684+00 2025-05-30 18:08:13.796701+00 f t SUBTOTAL 0.00 1 1046 \N +41266 2025-05-30 18:08:13.799079+00 2025-05-30 18:08:13.799092+00 f t DESCUENTO 0.00 2 1046 \N +41267 2025-05-30 18:08:13.800956+00 2025-05-30 18:08:13.800966+00 f t TOTAL 0.00 3 1046 \N +41268 2025-05-30 18:08:13.802581+00 2025-05-30 18:08:13.80259+00 f t ADELANTO 0.00 4 1046 \N +41513 2025-05-30 21:49:59.04601+00 2025-05-30 21:49:59.046024+00 f t SUBTOTAL 0.00 1 1059 \N +41514 2025-05-30 21:49:59.047909+00 2025-05-30 21:49:59.04792+00 f t DESCUENTO 0.00 2 1059 \N +41515 2025-05-30 21:49:59.04965+00 2025-05-30 21:49:59.049659+00 f t TOTAL 0.00 3 1059 \N +41516 2025-05-30 21:49:59.051141+00 2025-05-30 21:49:59.05115+00 f t ADELANTO 0.00 4 1059 \N +41273 2025-05-30 18:18:32.895422+00 2025-05-30 18:18:32.895437+00 f t SUBTOTAL 0.00 1 1047 \N +41274 2025-05-30 18:18:32.898679+00 2025-05-30 18:18:32.898693+00 f t DESCUENTO 0.00 2 1047 \N +41275 2025-05-30 18:18:32.901029+00 2025-05-30 18:18:32.901054+00 f t TOTAL 0.00 3 1047 \N +41276 2025-05-30 18:18:32.903041+00 2025-05-30 18:18:32.903053+00 f t ADELANTO 0.00 4 1047 \N +41281 2025-05-30 18:41:19.808233+00 2025-05-30 18:41:19.808246+00 f t SUBTOTAL 0.00 1 1048 \N +41282 2025-05-30 18:41:19.810296+00 2025-05-30 18:41:19.810309+00 f t DESCUENTO 0.00 2 1048 \N +41283 2025-05-30 18:41:19.812652+00 2025-05-30 18:41:19.812663+00 f t TOTAL 0.00 3 1048 \N +41284 2025-05-30 18:41:19.814574+00 2025-05-30 18:41:19.814585+00 f t ADELANTO 0.00 4 1048 \N +42505 2025-05-31 03:40:31.340302+00 2025-05-31 03:40:31.340315+00 f t SUBTOTAL 0.00 1 1080 \N +42506 2025-05-31 03:40:31.342295+00 2025-05-31 03:40:31.342306+00 f t DESCUENTO 0.00 2 1080 \N +42507 2025-05-31 03:40:31.344332+00 2025-05-31 03:40:31.344343+00 f t TOTAL 0.00 3 1080 \N +42508 2025-05-31 03:40:31.345972+00 2025-05-31 03:40:31.34598+00 f t ADELANTO 0.00 4 1080 \N +41329 2025-05-30 20:29:56.043696+00 2025-05-30 20:29:56.043708+00 f t SUBTOTAL 46000.00 1 1049 \N +41330 2025-05-30 20:29:56.045853+00 2025-05-30 20:29:56.045862+00 f t DESCUENTO 0.00 2 1049 \N +41331 2025-05-30 20:29:56.047971+00 2025-05-30 20:29:56.047983+00 f t TOTAL 46000.00 3 1049 \N +41332 2025-05-30 20:29:56.049839+00 2025-05-30 20:29:56.04985+00 f t ADELANTO 9500.00 4 1049 \N +41337 2025-05-30 20:35:10.268383+00 2025-05-30 20:35:10.268392+00 f t SUBTOTAL 0.00 1 1050 \N +41338 2025-05-30 20:35:10.269899+00 2025-05-30 20:35:10.269909+00 f t DESCUENTO 0.00 2 1050 \N +41339 2025-05-30 20:35:10.271709+00 2025-05-30 20:35:10.271719+00 f t TOTAL 0.00 3 1050 \N +41340 2025-05-30 20:35:10.273414+00 2025-05-30 20:35:10.273452+00 f t ADELANTO 0.00 4 1050 \N +41345 2025-05-30 20:35:27.717987+00 2025-05-30 20:35:27.718+00 f t SUBTOTAL 0.00 1 1051 \N +41346 2025-05-30 20:35:27.71975+00 2025-05-30 20:35:27.719757+00 f t DESCUENTO 0.00 2 1051 \N +41347 2025-05-30 20:35:27.721261+00 2025-05-30 20:35:27.721268+00 f t TOTAL 0.00 3 1051 \N +41348 2025-05-30 20:35:27.722595+00 2025-05-30 20:35:27.722605+00 f t ADELANTO 0.00 4 1051 \N +43737 2025-05-31 23:40:16.575033+00 2025-05-31 23:40:16.575048+00 f t SUBTOTAL 0.00 1 1117 \N +43738 2025-05-31 23:40:16.576992+00 2025-05-31 23:40:16.577001+00 f t DESCUENTO 0.00 2 1117 \N +43739 2025-05-31 23:40:16.578798+00 2025-05-31 23:40:16.578809+00 f t TOTAL 0.00 3 1117 \N +43740 2025-05-31 23:40:16.580295+00 2025-05-31 23:40:16.580303+00 f t ADELANTO 0.00 4 1117 \N +43789 2025-06-01 00:01:01.566298+00 2025-06-01 00:01:01.566316+00 f t SUBTOTAL 0.00 1 1121 \N +43790 2025-06-01 00:01:01.572433+00 2025-06-01 00:01:01.572447+00 f t DESCUENTO 0.00 2 1121 \N +43791 2025-06-01 00:01:01.580425+00 2025-06-01 00:01:01.58044+00 f t TOTAL 0.00 3 1121 \N +43792 2025-06-01 00:01:01.582563+00 2025-06-01 00:01:01.582576+00 f t ADELANTO 0.00 4 1121 \N +41413 2025-05-30 20:44:28.79308+00 2025-05-30 20:44:28.79309+00 f t SUBTOTAL 92000.00 1 1052 \N +41414 2025-05-30 20:44:28.796105+00 2025-05-30 20:44:28.796115+00 f t DESCUENTO 0.00 2 1052 \N +41415 2025-05-30 20:44:28.798356+00 2025-05-30 20:44:28.798369+00 f t TOTAL 92000.00 3 1052 \N +41416 2025-05-30 20:44:28.800612+00 2025-05-30 20:44:28.800622+00 f t ADELANTO 19000.00 4 1052 \N +43933 2025-06-01 00:54:44.201669+00 2025-06-01 00:54:44.201678+00 f t SUBTOTAL 88500.00 1 1124 \N +43934 2025-06-01 00:54:44.203517+00 2025-06-01 00:54:44.203525+00 f t DESCUENTO 0.00 2 1124 \N +43935 2025-06-01 00:54:44.204953+00 2025-06-01 00:54:44.20496+00 f t TOTAL 88500.00 3 1124 \N +43936 2025-06-01 00:54:44.206061+00 2025-06-01 00:54:44.206068+00 f t ADELANTO 53500.00 4 1124 \N +42869 2025-05-31 13:08:06.629843+00 2025-05-31 13:08:06.629853+00 f t SUBTOTAL 0.00 1 1087 \N +42870 2025-05-31 13:08:06.631758+00 2025-05-31 13:08:06.631766+00 f t DESCUENTO 0.00 2 1087 \N +42871 2025-05-31 13:08:06.633124+00 2025-05-31 13:08:06.633131+00 f t TOTAL 0.00 3 1087 \N +42872 2025-05-31 13:08:06.63445+00 2025-05-31 13:08:06.634456+00 f t ADELANTO 0.00 4 1087 \N +42957 2025-05-31 13:10:31.616859+00 2025-05-31 13:10:31.616868+00 f t SUBTOTAL 0.00 1 1088 \N +42958 2025-05-31 13:10:31.619137+00 2025-05-31 13:10:31.619144+00 f t DESCUENTO 0.00 2 1088 \N +42959 2025-05-31 13:10:31.620485+00 2025-05-31 13:10:31.620491+00 f t TOTAL 0.00 3 1088 \N +42960 2025-05-31 13:10:31.622003+00 2025-05-31 13:10:31.622009+00 f t ADELANTO 0.00 4 1088 \N +43045 2025-05-31 13:29:19.377047+00 2025-05-31 13:29:19.377057+00 f t SUBTOTAL 46000.00 1 1089 \N +43046 2025-05-31 13:29:19.378834+00 2025-05-31 13:29:19.378843+00 f t DESCUENTO 0.00 2 1089 \N +43047 2025-05-31 13:29:19.38032+00 2025-05-31 13:29:19.38033+00 f t TOTAL 46000.00 3 1089 \N +43048 2025-05-31 13:29:19.381704+00 2025-05-31 13:29:19.381713+00 f t ADELANTO 9500.00 4 1089 \N +43069 2025-05-31 13:55:48.215192+00 2025-05-31 13:55:48.2152+00 f t SUBTOTAL 0.00 1 1092 \N +43070 2025-05-31 13:55:48.216606+00 2025-05-31 13:55:48.216616+00 f t DESCUENTO 0.00 2 1092 \N +43071 2025-05-31 13:55:48.217903+00 2025-05-31 13:55:48.217909+00 f t TOTAL 0.00 3 1092 \N +43072 2025-05-31 13:55:48.219079+00 2025-05-31 13:55:48.219085+00 f t ADELANTO 0.00 4 1092 \N +42013 2025-05-31 00:22:00.56054+00 2025-05-31 00:22:00.560553+00 f t SUBTOTAL 103000.00 1 1065 \N +42014 2025-05-31 00:22:00.563171+00 2025-05-31 00:22:00.563184+00 f t DESCUENTO 0.00 2 1065 \N +42015 2025-05-31 00:22:00.565675+00 2025-05-31 00:22:00.565687+00 f t TOTAL 103000.00 3 1065 \N +42016 2025-05-31 00:22:00.568006+00 2025-05-31 00:22:00.568016+00 f t ADELANTO 26000.00 4 1065 \N +42029 2025-05-31 00:22:28.051222+00 2025-05-31 00:22:28.051231+00 f t SUBTOTAL 38500.00 1 1066 \N +42030 2025-05-31 00:22:28.053796+00 2025-05-31 00:22:28.053809+00 f t DESCUENTO 0.00 2 1066 \N +42031 2025-05-31 00:22:28.05612+00 2025-05-31 00:22:28.056132+00 f t TOTAL 38500.00 3 1066 \N +42032 2025-05-31 00:22:28.058346+00 2025-05-31 00:22:28.058354+00 f t ADELANTO 8500.00 4 1066 \N +43117 2025-05-31 14:49:13.022825+00 2025-05-31 14:49:13.022838+00 f t SUBTOTAL 38500.00 1 1095 \N +43118 2025-05-31 14:49:13.024918+00 2025-05-31 14:49:13.024931+00 f t DESCUENTO 0.00 2 1095 \N +43119 2025-05-31 14:49:13.026938+00 2025-05-31 14:49:13.02695+00 f t TOTAL 38500.00 3 1095 \N +43120 2025-05-31 14:49:13.028845+00 2025-05-31 14:49:13.028855+00 f t ADELANTO 8500.00 4 1095 \N +46522 2025-06-02 12:42:54.935462+00 2025-06-02 12:42:54.935472+00 f t DESCUENTO 0.00 2 1179 \N +46523 2025-06-02 12:42:54.937513+00 2025-06-02 12:42:54.937521+00 f t TOTAL 38500.00 3 1179 \N +46524 2025-06-02 12:42:54.939038+00 2025-06-02 12:42:54.939045+00 f t ADELANTO 8500.00 4 1179 \N +47673 2025-06-02 22:11:33.630825+00 2025-06-02 22:11:33.630834+00 f t SUBTOTAL 0.00 1 1220 \N +42121 2025-05-31 00:46:52.908053+00 2025-05-31 00:46:52.908066+00 f t SUBTOTAL 46000.00 1 1067 \N +42122 2025-05-31 00:46:52.909785+00 2025-05-31 00:46:52.909792+00 f t DESCUENTO 0.00 2 1067 \N +42123 2025-05-31 00:46:52.911229+00 2025-05-31 00:46:52.911236+00 f t TOTAL 46000.00 3 1067 \N +42124 2025-05-31 00:46:52.912622+00 2025-05-31 00:46:52.912631+00 f t ADELANTO 9500.00 4 1067 \N +43505 2025-05-31 18:25:18.587329+00 2025-05-31 18:25:18.58734+00 f t SUBTOTAL 46000.00 1 1109 \N +43506 2025-05-31 18:25:18.590701+00 2025-05-31 18:25:18.59071+00 f t DESCUENTO 0.00 2 1109 \N +43507 2025-05-31 18:25:18.592791+00 2025-05-31 18:25:18.592802+00 f t TOTAL 46000.00 3 1109 \N +43508 2025-05-31 18:25:18.594516+00 2025-05-31 18:25:18.594524+00 f t ADELANTO 9500.00 4 1109 \N +43721 2025-05-31 22:13:57.070286+00 2025-05-31 22:13:57.070296+00 f t SUBTOTAL 46000.00 1 1115 \N +43722 2025-05-31 22:13:57.072432+00 2025-05-31 22:13:57.072444+00 f t DESCUENTO 0.00 2 1115 \N +43723 2025-05-31 22:13:57.073932+00 2025-05-31 22:13:57.073938+00 f t TOTAL 46000.00 3 1115 \N +43724 2025-05-31 22:13:57.075396+00 2025-05-31 22:13:57.075407+00 f t ADELANTO 9500.00 4 1115 \N +42673 2025-05-31 07:10:30.542559+00 2025-05-31 07:10:30.542568+00 f t SUBTOTAL 38500.00 1 1082 \N +42674 2025-05-31 07:10:30.544806+00 2025-05-31 07:10:30.544817+00 f t DESCUENTO 0.00 2 1082 \N +42675 2025-05-31 07:10:30.546013+00 2025-05-31 07:10:30.54602+00 f t TOTAL 38500.00 3 1082 \N +42676 2025-05-31 07:10:30.54697+00 2025-05-31 07:10:30.546976+00 f t ADELANTO 8500.00 4 1082 \N +43745 2025-05-31 23:41:09.509602+00 2025-05-31 23:41:09.509612+00 f t SUBTOTAL 0.00 1 1118 \N +43746 2025-05-31 23:41:09.510991+00 2025-05-31 23:41:09.510998+00 f t DESCUENTO 0.00 2 1118 \N +43747 2025-05-31 23:41:09.512227+00 2025-05-31 23:41:09.512234+00 f t TOTAL 0.00 3 1118 \N +43748 2025-05-31 23:41:09.513273+00 2025-05-31 23:41:09.513278+00 f t ADELANTO 0.00 4 1118 \N +42701 2025-05-31 09:53:37.620937+00 2025-05-31 09:53:37.620946+00 f t SUBTOTAL 59500.00 1 1083 \N +42702 2025-05-31 09:53:37.622949+00 2025-05-31 09:53:37.62296+00 f t DESCUENTO 0.00 2 1083 \N +42703 2025-05-31 09:53:37.62489+00 2025-05-31 09:53:37.6249+00 f t TOTAL 59500.00 3 1083 \N +42704 2025-05-31 09:53:37.626662+00 2025-05-31 09:53:37.626672+00 f t ADELANTO 15500.00 4 1083 \N +42717 2025-05-31 09:58:47.435414+00 2025-05-31 09:58:47.435427+00 f t SUBTOTAL 0.00 1 1084 \N +42718 2025-05-31 09:58:47.438131+00 2025-05-31 09:58:47.438144+00 f t DESCUENTO 0.00 2 1084 \N +42719 2025-05-31 09:58:47.439601+00 2025-05-31 09:58:47.439608+00 f t TOTAL 0.00 3 1084 \N +42720 2025-05-31 09:58:47.440881+00 2025-05-31 09:58:47.440887+00 f t ADELANTO 0.00 4 1084 \N +43773 2025-05-31 23:45:02.466553+00 2025-05-31 23:45:02.466569+00 f t SUBTOTAL 46000.00 1 1119 \N +43774 2025-05-31 23:45:02.472295+00 2025-05-31 23:45:02.472312+00 f t DESCUENTO 0.00 2 1119 \N +43775 2025-05-31 23:45:02.475156+00 2025-05-31 23:45:02.475176+00 f t TOTAL 46000.00 3 1119 \N +43776 2025-05-31 23:45:02.478219+00 2025-05-31 23:45:02.478233+00 f t ADELANTO 9500.00 4 1119 \N +42213 2025-05-31 01:04:56.13431+00 2025-05-31 01:04:56.134322+00 f t SUBTOTAL 85000.00 1 1070 \N +42214 2025-05-31 01:04:56.13679+00 2025-05-31 01:04:56.136799+00 f t DESCUENTO 0.00 2 1070 \N +42215 2025-05-31 01:04:56.13823+00 2025-05-31 01:04:56.138237+00 f t TOTAL 85000.00 3 1070 \N +42216 2025-05-31 01:04:56.139235+00 2025-05-31 01:04:56.13924+00 f t ADELANTO 50000.00 4 1070 \N +43845 2025-06-01 00:04:42.945848+00 2025-06-01 00:04:42.945856+00 f t SUBTOTAL 164250.00 1 1122 \N +43846 2025-06-01 00:04:42.948009+00 2025-06-01 00:04:42.948018+00 f t DESCUENTO 0.00 2 1122 \N +43847 2025-06-01 00:04:42.949413+00 2025-06-01 00:04:42.94942+00 f t TOTAL 164250.00 3 1122 \N +43848 2025-06-01 00:04:42.951791+00 2025-06-01 00:04:42.951798+00 f t ADELANTO 34250.00 4 1122 \N +43873 2025-06-01 00:38:51.325897+00 2025-06-01 00:38:51.325911+00 f t SUBTOTAL 25000.00 1 1123 \N +43874 2025-06-01 00:38:51.328058+00 2025-06-01 00:38:51.328071+00 f t DESCUENTO 0.00 2 1123 \N +43875 2025-06-01 00:38:51.329698+00 2025-06-01 00:38:51.329708+00 f t TOTAL 25000.00 3 1123 \N +43876 2025-06-01 00:38:51.331212+00 2025-06-01 00:38:51.331218+00 f t ADELANTO 25000.00 4 1123 \N +42253 2025-05-31 01:05:31.755293+00 2025-05-31 01:05:31.755304+00 f t SUBTOTAL 38500.00 1 1069 \N +42254 2025-05-31 01:05:31.758083+00 2025-05-31 01:05:31.758094+00 f t DESCUENTO 0.00 2 1069 \N +42255 2025-05-31 01:05:31.759759+00 2025-05-31 01:05:31.759766+00 f t TOTAL 38500.00 3 1069 \N +42256 2025-05-31 01:05:31.761415+00 2025-05-31 01:05:31.761424+00 f t ADELANTO 8500.00 4 1069 \N +42285 2025-05-31 01:37:23.750172+00 2025-05-31 01:37:23.750199+00 f t SUBTOTAL 0.00 1 1071 \N +42286 2025-05-31 01:37:23.752919+00 2025-05-31 01:37:23.752931+00 f t DESCUENTO 0.00 2 1071 \N +42287 2025-05-31 01:37:23.754941+00 2025-05-31 01:37:23.75495+00 f t TOTAL 0.00 3 1071 \N +42288 2025-05-31 01:37:23.756819+00 2025-05-31 01:37:23.756828+00 f t ADELANTO 0.00 4 1071 \N +42317 2025-05-31 01:38:13.06671+00 2025-05-31 01:38:13.066723+00 f t SUBTOTAL 46000.00 1 1072 \N +42318 2025-05-31 01:38:13.069424+00 2025-05-31 01:38:13.069437+00 f t DESCUENTO 0.00 2 1072 \N +42319 2025-05-31 01:38:13.071845+00 2025-05-31 01:38:13.071858+00 f t TOTAL 46000.00 3 1072 \N +42320 2025-05-31 01:38:13.074855+00 2025-05-31 01:38:13.074868+00 f t ADELANTO 9500.00 4 1072 \N +43053 2025-05-31 13:44:21.910724+00 2025-05-31 13:44:21.910734+00 f t SUBTOTAL 0.00 1 1090 \N +43054 2025-05-31 13:44:21.912539+00 2025-05-31 13:44:21.912551+00 f t DESCUENTO 0.00 2 1090 \N +43055 2025-05-31 13:44:21.914514+00 2025-05-31 13:44:21.914523+00 f t TOTAL 0.00 3 1090 \N +43056 2025-05-31 13:44:21.916249+00 2025-05-31 13:44:21.916257+00 f t ADELANTO 0.00 4 1090 \N +43077 2025-05-31 13:57:48.660267+00 2025-05-31 13:57:48.660277+00 f t SUBTOTAL 0.00 1 1093 \N +43078 2025-05-31 13:57:48.66173+00 2025-05-31 13:57:48.661738+00 f t DESCUENTO 0.00 2 1093 \N +43079 2025-05-31 13:57:48.662879+00 2025-05-31 13:57:48.662886+00 f t TOTAL 0.00 3 1093 \N +43080 2025-05-31 13:57:48.664052+00 2025-05-31 13:57:48.664059+00 f t ADELANTO 0.00 4 1093 \N +42353 2025-05-31 01:43:39.922879+00 2025-05-31 01:43:39.922889+00 f t SUBTOTAL 46000.00 1 1073 \N +42354 2025-05-31 01:43:39.925088+00 2025-05-31 01:43:39.925099+00 f t DESCUENTO 0.00 2 1073 \N +42355 2025-05-31 01:43:39.9267+00 2025-05-31 01:43:39.926707+00 f t TOTAL 46000.00 3 1073 \N +42356 2025-05-31 01:43:39.92784+00 2025-05-31 01:43:39.927846+00 f t ADELANTO 11000.00 4 1073 \N +42361 2025-05-31 02:12:00.53279+00 2025-05-31 02:12:00.532802+00 f t SUBTOTAL 0.00 1 1074 \N +42362 2025-05-31 02:12:00.53421+00 2025-05-31 02:12:00.534217+00 f t DESCUENTO 0.00 2 1074 \N +42363 2025-05-31 02:12:00.53594+00 2025-05-31 02:12:00.535948+00 f t TOTAL 0.00 3 1074 \N +42364 2025-05-31 02:12:00.537331+00 2025-05-31 02:12:00.53734+00 f t ADELANTO 0.00 4 1074 \N +43181 2025-05-31 15:07:31.40203+00 2025-05-31 15:07:31.40204+00 f t SUBTOTAL 57000.00 1 1097 \N +43182 2025-05-31 15:07:31.404023+00 2025-05-31 15:07:31.404034+00 f t DESCUENTO 0.00 2 1097 \N +43183 2025-05-31 15:07:31.405713+00 2025-05-31 15:07:31.405723+00 f t TOTAL 57000.00 3 1097 \N +43184 2025-05-31 15:07:31.407099+00 2025-05-31 15:07:31.407107+00 f t ADELANTO 12000.00 4 1097 \N +44445 2025-06-01 06:59:01.360374+00 2025-06-01 06:59:01.360383+00 f t SUBTOTAL 0.00 1 1131 \N +44446 2025-06-01 06:59:01.3621+00 2025-06-01 06:59:01.362108+00 f t DESCUENTO 0.00 2 1131 \N +44447 2025-06-01 06:59:01.363286+00 2025-06-01 06:59:01.363292+00 f t TOTAL 0.00 3 1131 \N +44448 2025-06-01 06:59:01.364435+00 2025-06-01 06:59:01.364443+00 f t ADELANTO 0.00 4 1131 \N +43473 2025-05-31 18:23:15.333907+00 2025-05-31 18:23:15.333917+00 f t SUBTOTAL 25000.00 1 1108 \N +43474 2025-05-31 18:23:15.336013+00 2025-05-31 18:23:15.336023+00 f t DESCUENTO 0.00 2 1108 \N +43475 2025-05-31 18:23:15.337594+00 2025-05-31 18:23:15.337601+00 f t TOTAL 25000.00 3 1108 \N +43476 2025-05-31 18:23:15.338969+00 2025-05-31 18:23:15.338975+00 f t ADELANTO 25000.00 4 1108 \N +45513 2025-06-02 01:05:49.994122+00 2025-06-02 01:05:49.994132+00 f t SUBTOTAL 59500.00 1 1158 \N +45514 2025-06-02 01:05:49.996465+00 2025-06-02 01:05:49.996477+00 f t DESCUENTO 0.00 2 1158 \N +45515 2025-06-02 01:05:49.998202+00 2025-06-02 01:05:49.998213+00 f t TOTAL 59500.00 3 1158 \N +45516 2025-06-02 01:05:49.999585+00 2025-06-02 01:05:49.999592+00 f t ADELANTO 15500.00 4 1158 \N +43217 2025-05-31 15:18:36.220916+00 2025-05-31 15:18:36.220925+00 f t SUBTOTAL 50000.00 1 1098 \N +43218 2025-05-31 15:18:36.222662+00 2025-05-31 15:18:36.222672+00 f t DESCUENTO 0.00 2 1098 \N +43219 2025-05-31 15:18:36.224253+00 2025-05-31 15:18:36.22426+00 f t TOTAL 50000.00 3 1098 \N +43220 2025-05-31 15:18:36.22551+00 2025-05-31 15:18:36.225518+00 f t ADELANTO 8000.00 4 1098 \N +44497 2025-06-01 07:02:51.213357+00 2025-06-01 07:02:51.213366+00 f t SUBTOTAL 25000.00 1 1132 \N +43513 2025-05-31 19:12:27.806477+00 2025-05-31 19:12:27.806487+00 f t SUBTOTAL 0.00 1 1110 \N +43514 2025-05-31 19:12:27.808359+00 2025-05-31 19:12:27.808369+00 f t DESCUENTO 0.00 2 1110 \N +43515 2025-05-31 19:12:27.810088+00 2025-05-31 19:12:27.810095+00 f t TOTAL 0.00 3 1110 \N +43225 2025-05-31 16:00:54.06906+00 2025-05-31 16:00:54.069079+00 f t SUBTOTAL 0.00 1 1099 \N +43226 2025-05-31 16:00:54.071333+00 2025-05-31 16:00:54.071346+00 f t DESCUENTO 0.00 2 1099 \N +43227 2025-05-31 16:00:54.073736+00 2025-05-31 16:00:54.07375+00 f t TOTAL 0.00 3 1099 \N +43228 2025-05-31 16:00:54.076231+00 2025-05-31 16:00:54.076244+00 f t ADELANTO 0.00 4 1099 \N +43516 2025-05-31 19:12:27.811646+00 2025-05-31 19:12:27.811652+00 f t ADELANTO 0.00 4 1110 \N +44498 2025-06-01 07:02:51.215308+00 2025-06-01 07:02:51.215317+00 f t DESCUENTO 0.00 2 1132 \N +44499 2025-06-01 07:02:51.216574+00 2025-06-01 07:02:51.21658+00 f t TOTAL 25000.00 3 1132 \N +44500 2025-06-01 07:02:51.217735+00 2025-06-01 07:02:51.217742+00 f t ADELANTO 25000.00 4 1132 \N +43549 2025-05-31 19:51:24.506123+00 2025-05-31 19:51:24.506135+00 f t SUBTOTAL 38500.00 1 1111 \N +43550 2025-05-31 19:51:24.508252+00 2025-05-31 19:51:24.508264+00 f t DESCUENTO 0.00 2 1111 \N +43551 2025-05-31 19:51:24.509984+00 2025-05-31 19:51:24.509994+00 f t TOTAL 38500.00 3 1111 \N +43552 2025-05-31 19:51:24.511709+00 2025-05-31 19:51:24.51172+00 f t ADELANTO 8500.00 4 1111 \N +43637 2025-05-31 20:56:54.285682+00 2025-05-31 20:56:54.28569+00 f t SUBTOTAL 107250.00 1 1113 \N +43638 2025-05-31 20:56:54.2873+00 2025-05-31 20:56:54.287308+00 f t DESCUENTO 0.00 2 1113 \N +43639 2025-05-31 20:56:54.289116+00 2025-05-31 20:56:54.289123+00 f t TOTAL 107250.00 3 1113 \N +43640 2025-05-31 20:56:54.290175+00 2025-05-31 20:56:54.29018+00 f t ADELANTO 22250.00 4 1113 \N +43269 2025-05-31 16:17:45.454376+00 2025-05-31 16:17:45.454387+00 f t SUBTOTAL 38500.00 1 1100 \N +43270 2025-05-31 16:17:45.456388+00 2025-05-31 16:17:45.456399+00 f t DESCUENTO 0.00 2 1100 \N +43271 2025-05-31 16:17:45.457807+00 2025-05-31 16:17:45.457813+00 f t TOTAL 38500.00 3 1100 \N +43272 2025-05-31 16:17:45.459019+00 2025-05-31 16:17:45.459025+00 f t ADELANTO 8500.00 4 1100 \N +43729 2025-05-31 22:34:48.033541+00 2025-05-31 22:34:48.033575+00 f t SUBTOTAL 0.00 1 1116 \N +43730 2025-05-31 22:34:48.035536+00 2025-05-31 22:34:48.035545+00 f t DESCUENTO 0.00 2 1116 \N +43731 2025-05-31 22:34:48.037643+00 2025-05-31 22:34:48.037652+00 f t TOTAL 0.00 3 1116 \N +43732 2025-05-31 22:34:48.040007+00 2025-05-31 22:34:48.040019+00 f t ADELANTO 0.00 4 1116 \N +43781 2025-05-31 23:49:00.12506+00 2025-05-31 23:49:00.12507+00 f t SUBTOTAL 0.00 1 1120 \N +43782 2025-05-31 23:49:00.126737+00 2025-05-31 23:49:00.126747+00 f t DESCUENTO 0.00 2 1120 \N +43783 2025-05-31 23:49:00.128455+00 2025-05-31 23:49:00.128468+00 f t TOTAL 0.00 3 1120 \N +43784 2025-05-31 23:49:00.130219+00 2025-05-31 23:49:00.13023+00 f t ADELANTO 0.00 4 1120 \N +43321 2025-05-31 16:50:01.795504+00 2025-05-31 16:50:01.79552+00 f t SUBTOTAL 0.00 1 1101 \N +43322 2025-05-31 16:50:01.798718+00 2025-05-31 16:50:01.798732+00 f t DESCUENTO 0.00 2 1101 \N +43323 2025-05-31 16:50:01.801392+00 2025-05-31 16:50:01.801408+00 f t TOTAL 0.00 3 1101 \N +43324 2025-05-31 16:50:01.80468+00 2025-05-31 16:50:01.804695+00 f t ADELANTO 0.00 4 1101 \N +43349 2025-05-31 17:13:25.703029+00 2025-05-31 17:13:25.703042+00 f t SUBTOTAL 85000.00 1 1102 \N +43350 2025-05-31 17:13:25.70493+00 2025-05-31 17:13:25.70494+00 f t DESCUENTO 0.00 2 1102 \N +43351 2025-05-31 17:13:25.706522+00 2025-05-31 17:13:25.706531+00 f t TOTAL 85000.00 3 1102 \N +43352 2025-05-31 17:13:25.708012+00 2025-05-31 17:13:25.70802+00 f t ADELANTO 50000.00 4 1102 \N +43385 2025-05-31 17:19:53.700632+00 2025-05-31 17:19:53.700642+00 f t SUBTOTAL 113500.00 1 1103 \N +43386 2025-05-31 17:19:53.702536+00 2025-05-31 17:19:53.702545+00 f t DESCUENTO 0.00 2 1103 \N +43387 2025-05-31 17:19:53.704024+00 2025-05-31 17:19:53.704032+00 f t TOTAL 113500.00 3 1103 \N +43388 2025-05-31 17:19:53.705302+00 2025-05-31 17:19:53.705309+00 f t ADELANTO 23500.00 4 1103 \N +43393 2025-05-31 17:32:43.85169+00 2025-05-31 17:32:43.851701+00 f t SUBTOTAL 0.00 1 1104 \N +43394 2025-05-31 17:32:43.854397+00 2025-05-31 17:32:43.854409+00 f t DESCUENTO 0.00 2 1104 \N +43395 2025-05-31 17:32:43.857165+00 2025-05-31 17:32:43.857178+00 f t TOTAL 0.00 3 1104 \N +43396 2025-05-31 17:32:43.859451+00 2025-05-31 17:32:43.859465+00 f t ADELANTO 0.00 4 1104 \N +43401 2025-05-31 17:34:48.761868+00 2025-05-31 17:34:48.761877+00 f t SUBTOTAL 0.00 1 1105 \N +43402 2025-05-31 17:34:48.763404+00 2025-05-31 17:34:48.763411+00 f t DESCUENTO 0.00 2 1105 \N +43403 2025-05-31 17:34:48.764561+00 2025-05-31 17:34:48.764567+00 f t TOTAL 0.00 3 1105 \N +43404 2025-05-31 17:34:48.765623+00 2025-05-31 17:34:48.765629+00 f t ADELANTO 0.00 4 1105 \N +43409 2025-05-31 17:36:47.604807+00 2025-05-31 17:36:47.604817+00 f t SUBTOTAL 0.00 1 1106 \N +43410 2025-05-31 17:36:47.606521+00 2025-05-31 17:36:47.606529+00 f t DESCUENTO 0.00 2 1106 \N +43411 2025-05-31 17:36:47.608225+00 2025-05-31 17:36:47.608234+00 f t TOTAL 0.00 3 1106 \N +43412 2025-05-31 17:36:47.609743+00 2025-05-31 17:36:47.60975+00 f t ADELANTO 0.00 4 1106 \N +43417 2025-05-31 17:54:11.505454+00 2025-05-31 17:54:11.505465+00 f t SUBTOTAL 0.00 1 1107 \N +43418 2025-05-31 17:54:11.50724+00 2025-05-31 17:54:11.507249+00 f t DESCUENTO 0.00 2 1107 \N +43419 2025-05-31 17:54:11.508748+00 2025-05-31 17:54:11.508756+00 f t TOTAL 0.00 3 1107 \N +43420 2025-05-31 17:54:11.510925+00 2025-05-31 17:54:11.510933+00 f t ADELANTO 0.00 4 1107 \N +44117 2025-06-01 02:26:15.435255+00 2025-06-01 02:26:15.435279+00 f t SUBTOTAL 57000.00 1 1125 \N +44118 2025-06-01 02:26:15.437305+00 2025-06-01 02:26:15.437316+00 f t DESCUENTO 0.00 2 1125 \N +44119 2025-06-01 02:26:15.439006+00 2025-06-01 02:26:15.439015+00 f t TOTAL 57000.00 3 1125 \N +44120 2025-06-01 02:26:15.440572+00 2025-06-01 02:26:15.44058+00 f t ADELANTO 12000.00 4 1125 \N +47674 2025-06-02 22:11:33.632923+00 2025-06-02 22:11:33.632929+00 f t DESCUENTO 0.00 2 1220 \N +47675 2025-06-02 22:11:33.634221+00 2025-06-02 22:11:33.634227+00 f t TOTAL 0.00 3 1220 \N +47676 2025-06-02 22:11:33.635137+00 2025-06-02 22:11:33.635144+00 f t ADELANTO 0.00 4 1220 \N +47717 2025-06-02 22:13:56.964632+00 2025-06-02 22:13:56.964643+00 f t SUBTOTAL 64500.00 1 1221 \N +47718 2025-06-02 22:13:56.966691+00 2025-06-02 22:13:56.966701+00 f t DESCUENTO 0.00 2 1221 \N +47719 2025-06-02 22:13:56.968483+00 2025-06-02 22:13:56.968494+00 f t TOTAL 64500.00 3 1221 \N +47720 2025-06-02 22:13:56.970307+00 2025-06-02 22:13:56.970315+00 f t ADELANTO 17000.00 4 1221 \N +44505 2025-06-01 07:26:11.607597+00 2025-06-01 07:26:11.607608+00 f t SUBTOTAL 0.00 1 1133 \N +44506 2025-06-01 07:26:11.609829+00 2025-06-01 07:26:11.609839+00 f t DESCUENTO 0.00 2 1133 \N +44507 2025-06-01 07:26:11.611481+00 2025-06-01 07:26:11.611491+00 f t TOTAL 0.00 3 1133 \N +44508 2025-06-01 07:26:11.612726+00 2025-06-01 07:26:11.612732+00 f t ADELANTO 0.00 4 1133 \N +45649 2025-06-02 02:16:29.5916+00 2025-06-02 02:16:29.591613+00 f t SUBTOTAL 0.00 1 1162 \N +45650 2025-06-02 02:16:29.594575+00 2025-06-02 02:16:29.594585+00 f t DESCUENTO 0.00 2 1162 \N +45651 2025-06-02 02:16:29.596372+00 2025-06-02 02:16:29.596381+00 f t TOTAL 0.00 3 1162 \N +45652 2025-06-02 02:16:29.597955+00 2025-06-02 02:16:29.597963+00 f t ADELANTO 0.00 4 1162 \N +44557 2025-06-01 12:40:04.704997+00 2025-06-01 12:40:04.705011+00 f t SUBTOTAL 0.00 1 1136 \N +44558 2025-06-01 12:40:04.708766+00 2025-06-01 12:40:04.708779+00 f t DESCUENTO 0.00 2 1136 \N +44559 2025-06-01 12:40:04.714422+00 2025-06-01 12:40:04.714435+00 f t TOTAL 0.00 3 1136 \N +44560 2025-06-01 12:40:04.718969+00 2025-06-01 12:40:04.718985+00 f t ADELANTO 0.00 4 1136 \N +44613 2025-06-01 12:43:06.494986+00 2025-06-01 12:43:06.494994+00 f t SUBTOTAL 46000.00 1 1137 \N +44614 2025-06-01 12:43:06.496623+00 2025-06-01 12:43:06.49663+00 f t DESCUENTO 0.00 2 1137 \N +44615 2025-06-01 12:43:06.498095+00 2025-06-01 12:43:06.498102+00 f t TOTAL 46000.00 3 1137 \N +44616 2025-06-01 12:43:06.499457+00 2025-06-01 12:43:06.499463+00 f t ADELANTO 9500.00 4 1137 \N +44681 2025-06-01 13:04:14.784423+00 2025-06-01 13:04:14.784433+00 f t SUBTOTAL 0.00 1 1139 \N +44682 2025-06-01 13:04:14.786397+00 2025-06-01 13:04:14.786405+00 f t DESCUENTO 0.00 2 1139 \N +44683 2025-06-01 13:04:14.787914+00 2025-06-01 13:04:14.787941+00 f t TOTAL 0.00 3 1139 \N +44684 2025-06-01 13:04:14.78939+00 2025-06-01 13:04:14.789397+00 f t ADELANTO 0.00 4 1139 \N +44737 2025-06-01 13:44:13.6218+00 2025-06-01 13:44:13.621813+00 f t SUBTOTAL 38500.00 1 1141 \N +44738 2025-06-01 13:44:13.623817+00 2025-06-01 13:44:13.623828+00 f t DESCUENTO 0.00 2 1141 \N +44739 2025-06-01 13:44:13.625462+00 2025-06-01 13:44:13.625473+00 f t TOTAL 38500.00 3 1141 \N +44740 2025-06-01 13:44:13.627532+00 2025-06-01 13:44:13.627543+00 f t ADELANTO 8500.00 4 1141 \N +46005 2025-06-02 04:01:17.161294+00 2025-06-02 04:01:17.161307+00 f t SUBTOTAL 46000.00 1 1167 \N +46006 2025-06-02 04:01:17.163138+00 2025-06-02 04:01:17.163147+00 f t DESCUENTO 0.00 2 1167 \N +46007 2025-06-02 04:01:17.164502+00 2025-06-02 04:01:17.164508+00 f t TOTAL 46000.00 3 1167 \N +46008 2025-06-02 04:01:17.165813+00 2025-06-02 04:01:17.165821+00 f t ADELANTO 9500.00 4 1167 \N +46977 2025-06-02 16:21:56.785017+00 2025-06-02 16:21:56.785026+00 f t SUBTOTAL 0.00 1 1191 \N +46978 2025-06-02 16:21:56.786651+00 2025-06-02 16:21:56.78666+00 f t DESCUENTO 0.00 2 1191 \N +46979 2025-06-02 16:21:56.788113+00 2025-06-02 16:21:56.788122+00 f t TOTAL 0.00 3 1191 \N +46980 2025-06-02 16:21:56.789431+00 2025-06-02 16:21:56.78944+00 f t ADELANTO 0.00 4 1191 \N +47033 2025-06-02 16:28:00.280822+00 2025-06-02 16:28:00.280834+00 f t SUBTOTAL 50000.00 1 1192 \N +44821 2025-06-01 14:55:07.805569+00 2025-06-01 14:55:07.805583+00 f t SUBTOTAL 0.00 1 1144 \N +44822 2025-06-01 14:55:07.80747+00 2025-06-01 14:55:07.807478+00 f t DESCUENTO 0.00 2 1144 \N +44823 2025-06-01 14:55:07.809185+00 2025-06-01 14:55:07.809194+00 f t TOTAL 0.00 3 1144 \N +44824 2025-06-01 14:55:07.810639+00 2025-06-01 14:55:07.810649+00 f t ADELANTO 0.00 4 1144 \N +47034 2025-06-02 16:28:00.283028+00 2025-06-02 16:28:00.283037+00 f t DESCUENTO 0.00 2 1192 \N +47035 2025-06-02 16:28:00.284784+00 2025-06-02 16:28:00.284791+00 f t TOTAL 50000.00 3 1192 \N +47036 2025-06-02 16:28:00.28643+00 2025-06-02 16:28:00.286438+00 f t ADELANTO 10000.00 4 1192 \N +46181 2025-06-02 08:39:19.656511+00 2025-06-02 08:39:19.656525+00 f t SUBTOTAL 25000.00 1 1171 \N +46182 2025-06-02 08:39:19.658762+00 2025-06-02 08:39:19.658775+00 f t DESCUENTO 0.00 2 1171 \N +44317 2025-06-01 02:41:33.009041+00 2025-06-01 02:41:33.009051+00 f t SUBTOTAL 46000.00 1 1126 \N +44318 2025-06-01 02:41:33.011342+00 2025-06-01 02:41:33.011382+00 f t DESCUENTO 0.00 2 1126 \N +44319 2025-06-01 02:41:33.013287+00 2025-06-01 02:41:33.013301+00 f t TOTAL 46000.00 3 1126 \N +44320 2025-06-01 02:41:33.015043+00 2025-06-01 02:41:33.015054+00 f t ADELANTO 11000.00 4 1126 \N +46183 2025-06-02 08:39:19.660588+00 2025-06-02 08:39:19.660599+00 f t TOTAL 25000.00 3 1171 \N +46184 2025-06-02 08:39:19.662205+00 2025-06-02 08:39:19.662219+00 f t ADELANTO 25000.00 4 1171 \N +47077 2025-06-02 16:48:29.210006+00 2025-06-02 16:48:29.210019+00 f t SUBTOTAL 0.00 1 1194 \N +47078 2025-06-02 16:48:29.211623+00 2025-06-02 16:48:29.211632+00 f t DESCUENTO 0.00 2 1194 \N +47079 2025-06-02 16:48:29.212872+00 2025-06-02 16:48:29.212878+00 f t TOTAL 0.00 3 1194 \N +47080 2025-06-02 16:48:29.213934+00 2025-06-02 16:48:29.21394+00 f t ADELANTO 0.00 4 1194 \N +47101 2025-06-02 18:19:01.655216+00 2025-06-02 18:19:01.655231+00 f t SUBTOTAL 0.00 1 1197 \N +47102 2025-06-02 18:19:01.659443+00 2025-06-02 18:19:01.65946+00 f t DESCUENTO 0.00 2 1197 \N +47103 2025-06-02 18:19:01.66513+00 2025-06-02 18:19:01.665144+00 f t TOTAL 0.00 3 1197 \N +47104 2025-06-02 18:19:01.669061+00 2025-06-02 18:19:01.669075+00 f t ADELANTO 0.00 4 1197 \N +46373 2025-06-02 09:10:30.266694+00 2025-06-02 09:10:30.266703+00 f t SUBTOTAL 0.00 1 1175 \N +46374 2025-06-02 09:10:30.268327+00 2025-06-02 09:10:30.268338+00 f t DESCUENTO 0.00 2 1175 \N +46375 2025-06-02 09:10:30.269975+00 2025-06-02 09:10:30.269984+00 f t TOTAL 0.00 3 1175 \N +46376 2025-06-02 09:10:30.271624+00 2025-06-02 09:10:30.271632+00 f t ADELANTO 0.00 4 1175 \N +44393 2025-06-01 04:03:13.600313+00 2025-06-01 04:03:13.600325+00 f t SUBTOTAL 38500.00 1 1127 \N +44394 2025-06-01 04:03:13.602523+00 2025-06-01 04:03:13.602531+00 f t DESCUENTO 0.00 2 1127 \N +44395 2025-06-01 04:03:13.604021+00 2025-06-01 04:03:13.604027+00 f t TOTAL 38500.00 3 1127 \N +44396 2025-06-01 04:03:13.60521+00 2025-06-01 04:03:13.605219+00 f t ADELANTO 8500.00 4 1127 \N +45009 2025-06-01 18:42:59.918348+00 2025-06-01 18:42:59.918378+00 f t SUBTOTAL 38500.00 1 1146 \N +45010 2025-06-01 18:42:59.920375+00 2025-06-01 18:42:59.920383+00 f t DESCUENTO 0.00 2 1146 \N +45011 2025-06-01 18:42:59.922406+00 2025-06-01 18:42:59.922414+00 f t TOTAL 38500.00 3 1146 \N +45012 2025-06-01 18:42:59.923958+00 2025-06-01 18:42:59.923968+00 f t ADELANTO 8500.00 4 1146 \N +45025 2025-06-01 21:07:22.393797+00 2025-06-01 21:07:22.393806+00 f t SUBTOTAL 0.00 1 1149 \N +45026 2025-06-01 21:07:22.395397+00 2025-06-01 21:07:22.395407+00 f t DESCUENTO 0.00 2 1149 \N +45027 2025-06-01 21:07:22.396635+00 2025-06-01 21:07:22.396643+00 f t TOTAL 0.00 3 1149 \N +45028 2025-06-01 21:07:22.397778+00 2025-06-01 21:07:22.397785+00 f t ADELANTO 0.00 4 1149 \N +44421 2025-06-01 04:26:38.397957+00 2025-06-01 04:26:38.397966+00 f t SUBTOTAL 38500.00 1 1128 \N +44422 2025-06-01 04:26:38.399784+00 2025-06-01 04:26:38.399793+00 f t DESCUENTO 0.00 2 1128 \N +44423 2025-06-01 04:26:38.401219+00 2025-06-01 04:26:38.401226+00 f t TOTAL 38500.00 3 1128 \N +44424 2025-06-01 04:26:38.402356+00 2025-06-01 04:26:38.402362+00 f t ADELANTO 8500.00 4 1128 \N +53541 2025-06-05 10:55:41.215478+00 2025-06-05 10:55:41.215487+00 f t SUBTOTAL 49500.00 1 1365 \N +45549 2025-06-02 01:20:03.35504+00 2025-06-02 01:20:03.355052+00 f t SUBTOTAL 0.00 1 1159 \N +45550 2025-06-02 01:20:03.358933+00 2025-06-02 01:20:03.358947+00 f t DESCUENTO 0.00 2 1159 \N +45551 2025-06-02 01:20:03.364988+00 2025-06-02 01:20:03.365006+00 f t TOTAL 0.00 3 1159 \N +45552 2025-06-02 01:20:03.381421+00 2025-06-02 01:20:03.381434+00 f t ADELANTO 0.00 4 1159 \N +45577 2025-06-02 01:23:34.053987+00 2025-06-02 01:23:34.054+00 f t SUBTOTAL 46000.00 1 1160 \N +45578 2025-06-02 01:23:34.056372+00 2025-06-02 01:23:34.056384+00 f t DESCUENTO 0.00 2 1160 \N +45579 2025-06-02 01:23:34.058152+00 2025-06-02 01:23:34.058162+00 f t TOTAL 46000.00 3 1160 \N +45580 2025-06-02 01:23:34.060165+00 2025-06-02 01:23:34.060178+00 f t ADELANTO 11000.00 4 1160 \N +44513 2025-06-01 11:34:08.621138+00 2025-06-01 11:34:08.621151+00 f t SUBTOTAL 0.00 1 1134 \N +44514 2025-06-01 11:34:08.623136+00 2025-06-01 11:34:08.623144+00 f t DESCUENTO 0.00 2 1134 \N +44515 2025-06-01 11:34:08.624965+00 2025-06-01 11:34:08.624987+00 f t TOTAL 0.00 3 1134 \N +44516 2025-06-01 11:34:08.626432+00 2025-06-01 11:34:08.626438+00 f t ADELANTO 0.00 4 1134 \N +46581 2025-06-02 13:07:56.006354+00 2025-06-02 13:07:56.006367+00 f t SUBTOTAL 59500.00 1 1157 \N +46582 2025-06-02 13:07:56.008817+00 2025-06-02 13:07:56.008828+00 f t DESCUENTO 0.00 2 1157 \N +46583 2025-06-02 13:07:56.010515+00 2025-06-02 13:07:56.010525+00 f t TOTAL 59500.00 3 1157 \N +46584 2025-06-02 13:07:56.012335+00 2025-06-02 13:07:56.012346+00 f t ADELANTO 15500.00 4 1157 \N +44549 2025-06-01 11:53:03.173658+00 2025-06-01 11:53:03.17367+00 f t SUBTOTAL 46000.00 1 1135 \N +44550 2025-06-01 11:53:03.175527+00 2025-06-01 11:53:03.175555+00 f t DESCUENTO 0.00 2 1135 \N +44551 2025-06-01 11:53:03.176969+00 2025-06-01 11:53:03.176978+00 f t TOTAL 46000.00 3 1135 \N +44552 2025-06-01 11:53:03.178255+00 2025-06-01 11:53:03.178263+00 f t ADELANTO 9500.00 4 1135 \N +44585 2025-06-01 12:42:41.164845+00 2025-06-01 12:42:41.164855+00 f t SUBTOTAL 0.00 1 1138 \N +44586 2025-06-01 12:42:41.166445+00 2025-06-01 12:42:41.166451+00 f t DESCUENTO 0.00 2 1138 \N +44587 2025-06-01 12:42:41.167747+00 2025-06-01 12:42:41.167754+00 f t TOTAL 0.00 3 1138 \N +44588 2025-06-01 12:42:41.169193+00 2025-06-01 12:42:41.169201+00 f t ADELANTO 0.00 4 1138 \N +46749 2025-06-02 13:17:03.412642+00 2025-06-02 13:17:03.412655+00 f t SUBTOTAL 57000.00 1 1183 \N +46750 2025-06-02 13:17:03.415197+00 2025-06-02 13:17:03.415209+00 f t DESCUENTO 0.00 2 1183 \N +46751 2025-06-02 13:17:03.417398+00 2025-06-02 13:17:03.41741+00 f t TOTAL 57000.00 3 1183 \N +46752 2025-06-02 13:17:03.41941+00 2025-06-02 13:17:03.419421+00 f t ADELANTO 12000.00 4 1183 \N +46825 2025-06-02 13:36:33.103437+00 2025-06-02 13:36:33.103449+00 f t SUBTOTAL 50000.00 1 1186 \N +46826 2025-06-02 13:36:33.105539+00 2025-06-02 13:36:33.10555+00 f t DESCUENTO 0.00 2 1186 \N +46827 2025-06-02 13:36:33.107024+00 2025-06-02 13:36:33.107035+00 f t TOTAL 50000.00 3 1186 \N +46828 2025-06-02 13:36:33.108441+00 2025-06-02 13:36:33.10845+00 f t ADELANTO 10000.00 4 1186 \N +44689 2025-06-01 13:34:50.619577+00 2025-06-01 13:34:50.61959+00 f t SUBTOTAL 0.00 1 1140 \N +44690 2025-06-01 13:34:50.621412+00 2025-06-01 13:34:50.62142+00 f t DESCUENTO 0.00 2 1140 \N +44691 2025-06-01 13:34:50.623193+00 2025-06-01 13:34:50.623201+00 f t TOTAL 0.00 3 1140 \N +44692 2025-06-01 13:34:50.624551+00 2025-06-01 13:34:50.624557+00 f t ADELANTO 0.00 4 1140 \N +46013 2025-06-02 05:25:18.847836+00 2025-06-02 05:25:18.847847+00 f t SUBTOTAL 0.00 1 1168 \N +46014 2025-06-02 05:25:18.85+00 2025-06-02 05:25:18.850012+00 f t DESCUENTO 0.00 2 1168 \N +46015 2025-06-02 05:25:18.851929+00 2025-06-02 05:25:18.851941+00 f t TOTAL 0.00 3 1168 \N +46016 2025-06-02 05:25:18.853595+00 2025-06-02 05:25:18.853605+00 f t ADELANTO 0.00 4 1168 \N +46069 2025-06-02 07:53:02.498048+00 2025-06-02 07:53:02.498058+00 f t SUBTOTAL 38500.00 1 1170 \N +46070 2025-06-02 07:53:02.500598+00 2025-06-02 07:53:02.500607+00 f t DESCUENTO 0.00 2 1170 \N +46071 2025-06-02 07:53:02.50258+00 2025-06-02 07:53:02.502591+00 f t TOTAL 38500.00 3 1170 \N +46072 2025-06-02 07:53:02.504549+00 2025-06-02 07:53:02.504562+00 f t ADELANTO 8500.00 4 1170 \N +44777 2025-06-01 14:13:44.936937+00 2025-06-01 14:13:44.936949+00 f t SUBTOTAL 67000.00 1 1142 \N +44778 2025-06-01 14:13:44.939154+00 2025-06-01 14:13:44.939165+00 f t DESCUENTO 0.00 2 1142 \N +44779 2025-06-01 14:13:44.940831+00 2025-06-01 14:13:44.940838+00 f t TOTAL 67000.00 3 1142 \N +44780 2025-06-01 14:13:44.942285+00 2025-06-01 14:13:44.942294+00 f t ADELANTO 18000.00 4 1142 \N +44813 2025-06-01 14:48:20.236123+00 2025-06-01 14:48:20.236132+00 f t SUBTOTAL 38500.00 1 1143 \N +44814 2025-06-01 14:48:20.238364+00 2025-06-01 14:48:20.238374+00 f t DESCUENTO 0.00 2 1143 \N +44815 2025-06-01 14:48:20.239913+00 2025-06-01 14:48:20.23992+00 f t TOTAL 38500.00 3 1143 \N +44816 2025-06-01 14:48:20.241213+00 2025-06-01 14:48:20.241235+00 f t ADELANTO 8500.00 4 1143 \N +44829 2025-06-01 16:20:50.191165+00 2025-06-01 16:20:50.191174+00 f t SUBTOTAL 0.00 1 1145 \N +44830 2025-06-01 16:20:50.192784+00 2025-06-01 16:20:50.192791+00 f t DESCUENTO 0.00 2 1145 \N +44831 2025-06-01 16:20:50.194123+00 2025-06-01 16:20:50.19413+00 f t TOTAL 0.00 3 1145 \N +44832 2025-06-01 16:20:50.195673+00 2025-06-01 16:20:50.195684+00 f t ADELANTO 0.00 4 1145 \N +46273 2025-06-02 09:06:45.56911+00 2025-06-02 09:06:45.569155+00 f t SUBTOTAL 0.00 1 1173 \N +46274 2025-06-02 09:06:45.571811+00 2025-06-02 09:06:45.571823+00 f t DESCUENTO 0.00 2 1173 \N +46275 2025-06-02 09:06:45.574248+00 2025-06-02 09:06:45.574259+00 f t TOTAL 0.00 3 1173 \N +46276 2025-06-02 09:06:45.576312+00 2025-06-02 09:06:45.576324+00 f t ADELANTO 0.00 4 1173 \N +46429 2025-06-02 09:13:12.069405+00 2025-06-02 09:13:12.069415+00 f t SUBTOTAL 38500.00 1 1176 \N +46430 2025-06-02 09:13:12.071449+00 2025-06-02 09:13:12.071463+00 f t DESCUENTO 0.00 2 1176 \N +46431 2025-06-02 09:13:12.073585+00 2025-06-02 09:13:12.073596+00 f t TOTAL 38500.00 3 1176 \N +46432 2025-06-02 09:13:12.075509+00 2025-06-02 09:13:12.075521+00 f t ADELANTO 8500.00 4 1176 \N +44997 2025-06-01 18:36:19.298857+00 2025-06-01 18:36:19.298866+00 f t SUBTOTAL 92000.00 1 1147 \N +44998 2025-06-01 18:36:19.301192+00 2025-06-01 18:36:19.301204+00 f t DESCUENTO 0.00 2 1147 \N +44999 2025-06-01 18:36:19.302819+00 2025-06-01 18:36:19.302826+00 f t TOTAL 92000.00 3 1147 \N +45000 2025-06-01 18:36:19.304262+00 2025-06-01 18:36:19.304268+00 f t ADELANTO 22000.00 4 1147 \N +46485 2025-06-02 12:03:45.780903+00 2025-06-02 12:03:45.780917+00 f t SUBTOTAL 46000.00 1 1178 \N +46486 2025-06-02 12:03:45.784427+00 2025-06-02 12:03:45.78444+00 f t DESCUENTO 0.00 2 1178 \N +46487 2025-06-02 12:03:45.786417+00 2025-06-02 12:03:45.786426+00 f t TOTAL 46000.00 3 1178 \N +46488 2025-06-02 12:03:45.7883+00 2025-06-02 12:03:45.788311+00 f t ADELANTO 11000.00 4 1178 \N +45017 2025-06-01 18:43:21.735835+00 2025-06-01 18:43:21.735849+00 f t SUBTOTAL 0.00 1 1148 \N +45018 2025-06-01 18:43:21.737683+00 2025-06-01 18:43:21.737693+00 f t DESCUENTO 0.00 2 1148 \N +45019 2025-06-01 18:43:21.739155+00 2025-06-01 18:43:21.739164+00 f t TOTAL 0.00 3 1148 \N +45020 2025-06-01 18:43:21.740426+00 2025-06-01 18:43:21.740434+00 f t ADELANTO 0.00 4 1148 \N +53542 2025-06-05 10:55:41.217649+00 2025-06-05 10:55:41.217659+00 f t DESCUENTO 0.00 2 1365 \N +53543 2025-06-05 10:55:41.219557+00 2025-06-05 10:55:41.219565+00 f t TOTAL 49500.00 3 1365 \N +49957 2025-06-03 23:02:10.755214+00 2025-06-03 23:02:10.755227+00 f t SUBTOTAL 0.00 1 1276 \N +49958 2025-06-03 23:02:10.7571+00 2025-06-03 23:02:10.757124+00 f t DESCUENTO 0.00 2 1276 \N +46569 2025-06-02 13:02:07.754558+00 2025-06-02 13:02:07.75457+00 f t SUBTOTAL 46000.00 1 1181 \N +46570 2025-06-02 13:02:07.757945+00 2025-06-02 13:02:07.757958+00 f t DESCUENTO 0.00 2 1181 \N +46571 2025-06-02 13:02:07.759973+00 2025-06-02 13:02:07.759982+00 f t TOTAL 46000.00 3 1181 \N +46572 2025-06-02 13:02:07.761692+00 2025-06-02 13:02:07.7617+00 f t ADELANTO 9500.00 4 1181 \N +49959 2025-06-03 23:02:10.758374+00 2025-06-03 23:02:10.758382+00 f t TOTAL 0.00 3 1276 \N +47845 2025-06-02 23:45:48.455333+00 2025-06-02 23:45:48.455341+00 f t SUBTOTAL 70000.00 1 1224 \N +46717 2025-06-02 13:11:35.70572+00 2025-06-02 13:11:35.70573+00 f t SUBTOTAL 59500.00 1 1182 \N +46718 2025-06-02 13:11:35.707553+00 2025-06-02 13:11:35.707564+00 f t DESCUENTO 0.00 2 1182 \N +46719 2025-06-02 13:11:35.709043+00 2025-06-02 13:11:35.709052+00 f t TOTAL 59500.00 3 1182 \N +46720 2025-06-02 13:11:35.710398+00 2025-06-02 13:11:35.710406+00 f t ADELANTO 15500.00 4 1182 \N +47846 2025-06-02 23:45:48.456904+00 2025-06-02 23:45:48.456911+00 f t DESCUENTO 0.00 2 1224 \N +45093 2025-06-01 21:43:42.150374+00 2025-06-01 21:43:42.150387+00 f t SUBTOTAL 46000.00 1 1150 \N +45094 2025-06-01 21:43:42.152432+00 2025-06-01 21:43:42.152443+00 f t DESCUENTO 0.00 2 1150 \N +45095 2025-06-01 21:43:42.154031+00 2025-06-01 21:43:42.154041+00 f t TOTAL 46000.00 3 1150 \N +45096 2025-06-01 21:43:42.155489+00 2025-06-01 21:43:42.155498+00 f t ADELANTO 9500.00 4 1150 \N +47847 2025-06-02 23:45:48.458037+00 2025-06-02 23:45:48.458043+00 f t TOTAL 70000.00 3 1224 \N +47848 2025-06-02 23:45:48.459514+00 2025-06-02 23:45:48.45952+00 f t ADELANTO 10000.00 4 1224 \N +45109 2025-06-01 22:19:17.52191+00 2025-06-01 22:19:17.521922+00 f t SUBTOTAL 0.00 1 1151 \N +45110 2025-06-01 22:19:17.523911+00 2025-06-01 22:19:17.523921+00 f t DESCUENTO 0.00 2 1151 \N +45111 2025-06-01 22:19:17.525206+00 2025-06-01 22:19:17.525214+00 f t TOTAL 0.00 3 1151 \N +45112 2025-06-01 22:19:17.526647+00 2025-06-01 22:19:17.526654+00 f t ADELANTO 0.00 4 1151 \N +46789 2025-06-02 13:27:53.068802+00 2025-06-02 13:27:53.068818+00 f t SUBTOTAL 67000.00 1 1184 \N +46790 2025-06-02 13:27:53.071197+00 2025-06-02 13:27:53.07121+00 f t DESCUENTO 0.00 2 1184 \N +46791 2025-06-02 13:27:53.073473+00 2025-06-02 13:27:53.073484+00 f t TOTAL 67000.00 3 1184 \N +46792 2025-06-02 13:27:53.075532+00 2025-06-02 13:27:53.075542+00 f t ADELANTO 18000.00 4 1184 \N +45853 2025-06-02 02:39:23.176334+00 2025-06-02 02:39:23.176344+00 f t SUBTOTAL 95500.00 1 1163 \N +45854 2025-06-02 02:39:23.178468+00 2025-06-02 02:39:23.178482+00 f t DESCUENTO 0.00 2 1163 \N +45855 2025-06-02 02:39:23.180193+00 2025-06-02 02:39:23.180202+00 f t TOTAL 95500.00 3 1163 \N +45856 2025-06-02 02:39:23.181751+00 2025-06-02 02:39:23.181759+00 f t ADELANTO 60500.00 4 1163 \N +45905 2025-06-02 02:43:34.38197+00 2025-06-02 02:43:34.38198+00 f t SUBTOTAL 38500.00 1 1164 \N +45906 2025-06-02 02:43:34.384184+00 2025-06-02 02:43:34.384192+00 f t DESCUENTO 0.00 2 1164 \N +45907 2025-06-02 02:43:34.385853+00 2025-06-02 02:43:34.38586+00 f t TOTAL 38500.00 3 1164 \N +45908 2025-06-02 02:43:34.387418+00 2025-06-02 02:43:34.387426+00 f t ADELANTO 8500.00 4 1164 \N +45925 2025-06-02 03:21:58.39688+00 2025-06-02 03:21:58.39689+00 f t SUBTOTAL 0.00 1 1165 \N +45926 2025-06-02 03:21:58.399091+00 2025-06-02 03:21:58.399099+00 f t DESCUENTO 0.00 2 1165 \N +45927 2025-06-02 03:21:58.400422+00 2025-06-02 03:21:58.400428+00 f t TOTAL 0.00 3 1165 \N +45928 2025-06-02 03:21:58.401545+00 2025-06-02 03:21:58.401551+00 f t ADELANTO 0.00 4 1165 \N +45977 2025-06-02 03:59:28.511977+00 2025-06-02 03:59:28.511986+00 f t SUBTOTAL 0.00 1 1166 \N +45978 2025-06-02 03:59:28.513979+00 2025-06-02 03:59:28.513986+00 f t DESCUENTO 0.00 2 1166 \N +45979 2025-06-02 03:59:28.515436+00 2025-06-02 03:59:28.515443+00 f t TOTAL 0.00 3 1166 \N +45980 2025-06-02 03:59:28.516881+00 2025-06-02 03:59:28.516888+00 f t ADELANTO 0.00 4 1166 \N +45169 2025-06-01 22:42:44.515947+00 2025-06-01 22:42:44.515956+00 f t SUBTOTAL 38500.00 1 1152 \N +45170 2025-06-01 22:42:44.517865+00 2025-06-01 22:42:44.517874+00 f t DESCUENTO 0.00 2 1152 \N +45171 2025-06-01 22:42:44.519393+00 2025-06-01 22:42:44.519401+00 f t TOTAL 38500.00 3 1152 \N +45172 2025-06-01 22:42:44.520521+00 2025-06-01 22:42:44.520527+00 f t ADELANTO 8500.00 4 1152 \N +46961 2025-06-02 16:07:57.893728+00 2025-06-02 16:07:57.893743+00 f t SUBTOTAL 0.00 1 1189 \N +46962 2025-06-02 16:07:57.896269+00 2025-06-02 16:07:57.896282+00 f t DESCUENTO 0.00 2 1189 \N +46963 2025-06-02 16:07:57.898069+00 2025-06-02 16:07:57.898079+00 f t TOTAL 0.00 3 1189 \N +46964 2025-06-02 16:07:57.899842+00 2025-06-02 16:07:57.899853+00 f t ADELANTO 0.00 4 1189 \N +45197 2025-06-01 22:43:38.830161+00 2025-06-01 22:43:38.83017+00 f t SUBTOTAL 95000.00 1 1153 \N +45198 2025-06-01 22:43:38.832101+00 2025-06-01 22:43:38.83211+00 f t DESCUENTO 0.00 2 1153 \N +45199 2025-06-01 22:43:38.833719+00 2025-06-01 22:43:38.833727+00 f t TOTAL 95000.00 3 1153 \N +45200 2025-06-01 22:43:38.835152+00 2025-06-01 22:43:38.83516+00 f t ADELANTO 10000.00 4 1153 \N +48105 2025-06-03 02:01:48.092375+00 2025-06-03 02:01:48.092385+00 f t SUBTOTAL 49500.00 1 1231 \N +48106 2025-06-03 02:01:48.095967+00 2025-06-03 02:01:48.095976+00 f t DESCUENTO 0.00 2 1231 \N +48107 2025-06-03 02:01:48.0975+00 2025-06-03 02:01:48.097507+00 f t TOTAL 49500.00 3 1231 \N +48108 2025-06-03 02:01:48.098846+00 2025-06-03 02:01:48.098854+00 f t ADELANTO 11500.00 4 1231 \N +48133 2025-06-03 02:16:03.019799+00 2025-06-03 02:16:03.019808+00 f t SUBTOTAL 50000.00 1 1232 \N +48134 2025-06-03 02:16:03.021819+00 2025-06-03 02:16:03.021827+00 f t DESCUENTO 0.00 2 1232 \N +48135 2025-06-03 02:16:03.023288+00 2025-06-03 02:16:03.023295+00 f t TOTAL 50000.00 3 1232 \N +48136 2025-06-03 02:16:03.024808+00 2025-06-03 02:16:03.024813+00 f t ADELANTO 10000.00 4 1232 \N +47085 2025-06-02 16:54:30.165716+00 2025-06-02 16:54:30.165731+00 f t SUBTOTAL 0.00 1 1195 \N +46257 2025-06-02 09:01:00.463799+00 2025-06-02 09:01:00.463812+00 f t SUBTOTAL 38500.00 1 1172 \N +46258 2025-06-02 09:01:00.466632+00 2025-06-02 09:01:00.466642+00 f t DESCUENTO 0.00 2 1172 \N +46259 2025-06-02 09:01:00.468513+00 2025-06-02 09:01:00.468522+00 f t TOTAL 38500.00 3 1172 \N +46260 2025-06-02 09:01:00.470373+00 2025-06-02 09:01:00.470383+00 f t ADELANTO 8500.00 4 1172 \N +47086 2025-06-02 16:54:30.167674+00 2025-06-02 16:54:30.167683+00 f t DESCUENTO 0.00 2 1195 \N +47087 2025-06-02 16:54:30.169422+00 2025-06-02 16:54:30.169432+00 f t TOTAL 0.00 3 1195 \N +47088 2025-06-02 16:54:30.17121+00 2025-06-02 16:54:30.171217+00 f t ADELANTO 0.00 4 1195 \N +45269 2025-06-01 22:52:32.842542+00 2025-06-01 22:52:32.842556+00 f t SUBTOTAL 59500.00 1 1154 \N +45270 2025-06-01 22:52:32.844442+00 2025-06-01 22:52:32.844452+00 f t DESCUENTO 0.00 2 1154 \N +45271 2025-06-01 22:52:32.846034+00 2025-06-01 22:52:32.846044+00 f t TOTAL 59500.00 3 1154 \N +45272 2025-06-01 22:52:32.847733+00 2025-06-01 22:52:32.847742+00 f t ADELANTO 15500.00 4 1154 \N +47193 2025-06-02 19:00:16.725033+00 2025-06-02 19:00:16.725048+00 f t SUBTOTAL 0.00 1 1200 \N +47194 2025-06-02 19:00:16.728451+00 2025-06-02 19:00:16.728465+00 f t DESCUENTO 0.00 2 1200 \N +47195 2025-06-02 19:00:16.732081+00 2025-06-02 19:00:16.732095+00 f t TOTAL 0.00 3 1200 \N +47196 2025-06-02 19:00:16.735429+00 2025-06-02 19:00:16.735443+00 f t ADELANTO 0.00 4 1200 \N +46537 2025-06-02 12:44:08.720673+00 2025-06-02 12:44:08.720686+00 f t SUBTOTAL 0.00 1 1180 \N +46538 2025-06-02 12:44:08.72303+00 2025-06-02 12:44:08.723043+00 f t DESCUENTO 0.00 2 1180 \N +46539 2025-06-02 12:44:08.724743+00 2025-06-02 12:44:08.724753+00 f t TOTAL 0.00 3 1180 \N +46540 2025-06-02 12:44:08.726378+00 2025-06-02 12:44:08.726389+00 f t ADELANTO 0.00 4 1180 \N +53544 2025-06-05 10:55:41.22119+00 2025-06-05 10:55:41.221198+00 f t ADELANTO 11500.00 4 1365 \N +61817 2025-06-09 20:33:20.452634+00 2025-06-09 20:33:20.452646+00 f t SUBTOTAL 0.00 1 1595 \N +45345 2025-06-01 23:10:10.73898+00 2025-06-01 23:10:10.738992+00 f t SUBTOTAL 59500.00 1 1155 \N +45346 2025-06-01 23:10:10.742176+00 2025-06-01 23:10:10.742187+00 f t DESCUENTO 0.00 2 1155 \N +45347 2025-06-01 23:10:10.745133+00 2025-06-01 23:10:10.745145+00 f t TOTAL 59500.00 3 1155 \N +45348 2025-06-01 23:10:10.747387+00 2025-06-01 23:10:10.747402+00 f t ADELANTO 15500.00 4 1155 \N +45353 2025-06-02 00:48:10.562376+00 2025-06-02 00:48:10.562389+00 f t SUBTOTAL 0.00 1 1156 \N +45354 2025-06-02 00:48:10.564255+00 2025-06-02 00:48:10.564262+00 f t DESCUENTO 0.00 2 1156 \N +45355 2025-06-02 00:48:10.565636+00 2025-06-02 00:48:10.565642+00 f t TOTAL 0.00 3 1156 \N +45356 2025-06-02 00:48:10.566727+00 2025-06-02 00:48:10.566733+00 f t ADELANTO 0.00 4 1156 \N +47761 2025-06-02 22:51:40.056783+00 2025-06-02 22:51:40.056795+00 f t SUBTOTAL 57000.00 1 1222 \N +47762 2025-06-02 22:51:40.058798+00 2025-06-02 22:51:40.058807+00 f t DESCUENTO 0.00 2 1222 \N +47763 2025-06-02 22:51:40.060355+00 2025-06-02 22:51:40.060364+00 f t TOTAL 57000.00 3 1222 \N +47764 2025-06-02 22:51:40.06176+00 2025-06-02 22:51:40.061768+00 f t ADELANTO 12000.00 4 1222 \N +47797 2025-06-02 23:42:50.336879+00 2025-06-02 23:42:50.336889+00 f t SUBTOTAL 0.00 1 1223 \N +47798 2025-06-02 23:42:50.340112+00 2025-06-02 23:42:50.34012+00 f t DESCUENTO 0.00 2 1223 \N +47799 2025-06-02 23:42:50.341669+00 2025-06-02 23:42:50.341676+00 f t TOTAL 0.00 3 1223 \N +47800 2025-06-02 23:42:50.34324+00 2025-06-02 23:42:50.343246+00 f t ADELANTO 0.00 4 1223 \N +47885 2025-06-03 00:15:12.994997+00 2025-06-03 00:15:12.995006+00 f t SUBTOTAL 42000.00 1 1225 \N +47886 2025-06-03 00:15:12.996995+00 2025-06-03 00:15:12.997018+00 f t DESCUENTO 0.00 2 1225 \N +47887 2025-06-03 00:15:12.999085+00 2025-06-03 00:15:12.999096+00 f t TOTAL 42000.00 3 1225 \N +47888 2025-06-03 00:15:13.001079+00 2025-06-03 00:15:13.001088+00 f t ADELANTO 9500.00 4 1225 \N +46797 2025-06-02 13:34:53.479463+00 2025-06-02 13:34:53.479473+00 f t SUBTOTAL 0.00 1 1185 \N +46798 2025-06-02 13:34:53.481345+00 2025-06-02 13:34:53.481356+00 f t DESCUENTO 0.00 2 1185 \N +46799 2025-06-02 13:34:53.482981+00 2025-06-02 13:34:53.482992+00 f t TOTAL 0.00 3 1185 \N +46800 2025-06-02 13:34:53.484425+00 2025-06-02 13:34:53.484434+00 f t ADELANTO 0.00 4 1185 \N +47957 2025-06-03 01:42:54.881281+00 2025-06-03 01:42:54.881291+00 f t SUBTOTAL 42000.00 1 1227 \N +47958 2025-06-03 01:42:54.883342+00 2025-06-03 01:42:54.883377+00 f t DESCUENTO 0.00 2 1227 \N +47959 2025-06-03 01:42:54.88478+00 2025-06-03 01:42:54.884785+00 f t TOTAL 42000.00 3 1227 \N +47960 2025-06-03 01:42:54.886743+00 2025-06-03 01:42:54.886754+00 f t ADELANTO 9500.00 4 1227 \N +46909 2025-06-02 14:48:40.575908+00 2025-06-02 14:48:40.57592+00 f t SUBTOTAL 135750.00 1 1187 \N +46910 2025-06-02 14:48:40.577975+00 2025-06-02 14:48:40.577986+00 f t DESCUENTO 0.00 2 1187 \N +46911 2025-06-02 14:48:40.579765+00 2025-06-02 14:48:40.579773+00 f t TOTAL 135750.00 3 1187 \N +46912 2025-06-02 14:48:40.581282+00 2025-06-02 14:48:40.581289+00 f t ADELANTO 28250.00 4 1187 \N +46925 2025-06-02 15:59:03.83247+00 2025-06-02 15:59:03.832479+00 f t SUBTOTAL 0.00 1 1188 \N +46926 2025-06-02 15:59:03.834554+00 2025-06-02 15:59:03.834562+00 f t DESCUENTO 0.00 2 1188 \N +46927 2025-06-02 15:59:03.836041+00 2025-06-02 15:59:03.83605+00 f t TOTAL 0.00 3 1188 \N +46928 2025-06-02 15:59:03.837134+00 2025-06-02 15:59:03.837139+00 f t ADELANTO 0.00 4 1188 \N +46969 2025-06-02 16:19:04.571586+00 2025-06-02 16:19:04.5716+00 f t SUBTOTAL 0.00 1 1190 \N +46970 2025-06-02 16:19:04.574293+00 2025-06-02 16:19:04.574305+00 f t DESCUENTO 0.00 2 1190 \N +46971 2025-06-02 16:19:04.57685+00 2025-06-02 16:19:04.576859+00 f t TOTAL 0.00 3 1190 \N +46972 2025-06-02 16:19:04.57926+00 2025-06-02 16:19:04.57927+00 f t ADELANTO 0.00 4 1190 \N +46041 2025-06-02 07:45:06.653158+00 2025-06-02 07:45:06.653168+00 f t SUBTOTAL 46000.00 1 1169 \N +46042 2025-06-02 07:45:06.655327+00 2025-06-02 07:45:06.655337+00 f t DESCUENTO 0.00 2 1169 \N +46043 2025-06-02 07:45:06.657576+00 2025-06-02 07:45:06.657587+00 f t TOTAL 46000.00 3 1169 \N +46044 2025-06-02 07:45:06.659301+00 2025-06-02 07:45:06.659309+00 f t ADELANTO 9500.00 4 1169 \N +47069 2025-06-02 16:29:04.284859+00 2025-06-02 16:29:04.284868+00 f t SUBTOTAL 50000.00 1 1193 \N +47070 2025-06-02 16:29:04.287241+00 2025-06-02 16:29:04.28725+00 f t DESCUENTO 0.00 2 1193 \N +47071 2025-06-02 16:29:04.289163+00 2025-06-02 16:29:04.289172+00 f t TOTAL 50000.00 3 1193 \N +47072 2025-06-02 16:29:04.29092+00 2025-06-02 16:29:04.29093+00 f t ADELANTO 10000.00 4 1193 \N +47093 2025-06-02 17:17:46.22763+00 2025-06-02 17:17:46.22764+00 f t SUBTOTAL 0.00 1 1196 \N +47094 2025-06-02 17:17:46.229131+00 2025-06-02 17:17:46.229138+00 f t DESCUENTO 0.00 2 1196 \N +47095 2025-06-02 17:17:46.230443+00 2025-06-02 17:17:46.230453+00 f t TOTAL 0.00 3 1196 \N +47096 2025-06-02 17:17:46.231527+00 2025-06-02 17:17:46.231536+00 f t ADELANTO 0.00 4 1196 \N +47149 2025-06-02 18:24:48.266066+00 2025-06-02 18:24:48.266077+00 f t SUBTOTAL 0.00 1 1198 \N +47150 2025-06-02 18:24:48.26862+00 2025-06-02 18:24:48.268634+00 f t DESCUENTO 0.00 2 1198 \N +47151 2025-06-02 18:24:48.270351+00 2025-06-02 18:24:48.270362+00 f t TOTAL 0.00 3 1198 \N +47152 2025-06-02 18:24:48.271999+00 2025-06-02 18:24:48.272008+00 f t ADELANTO 0.00 4 1198 \N +47185 2025-06-02 18:47:35.7767+00 2025-06-02 18:47:35.77671+00 f t SUBTOTAL 64500.00 1 1199 \N +47186 2025-06-02 18:47:35.779008+00 2025-06-02 18:47:35.779021+00 f t DESCUENTO 0.00 2 1199 \N +47187 2025-06-02 18:47:35.780876+00 2025-06-02 18:47:35.780885+00 f t TOTAL 64500.00 3 1199 \N +47188 2025-06-02 18:47:35.782595+00 2025-06-02 18:47:35.782602+00 f t ADELANTO 17000.00 4 1199 \N +47209 2025-06-02 19:08:13.231295+00 2025-06-02 19:08:13.231308+00 f t SUBTOTAL 0.00 1 1201 \N +47210 2025-06-02 19:08:13.233582+00 2025-06-02 19:08:13.233594+00 f t DESCUENTO 0.00 2 1201 \N +47211 2025-06-02 19:08:13.235687+00 2025-06-02 19:08:13.235697+00 f t TOTAL 0.00 3 1201 \N +47212 2025-06-02 19:08:13.237921+00 2025-06-02 19:08:13.237933+00 f t ADELANTO 0.00 4 1201 \N +46365 2025-06-02 09:10:04.994729+00 2025-06-02 09:10:04.994743+00 f t SUBTOTAL 0.00 1 1174 \N +46366 2025-06-02 09:10:05.000303+00 2025-06-02 09:10:05.000317+00 f t DESCUENTO 0.00 2 1174 \N +46367 2025-06-02 09:10:05.016361+00 2025-06-02 09:10:05.016377+00 f t TOTAL 0.00 3 1174 \N +46368 2025-06-02 09:10:05.025436+00 2025-06-02 09:10:05.025452+00 f t ADELANTO 0.00 4 1174 \N +47237 2025-06-02 19:12:57.070911+00 2025-06-02 19:12:57.070921+00 f t SUBTOTAL 50000.00 1 1202 \N +47238 2025-06-02 19:12:57.072764+00 2025-06-02 19:12:57.072772+00 f t DESCUENTO 0.00 2 1202 \N +47239 2025-06-02 19:12:57.074269+00 2025-06-02 19:12:57.07428+00 f t TOTAL 50000.00 3 1202 \N +47240 2025-06-02 19:12:57.075709+00 2025-06-02 19:12:57.075716+00 f t ADELANTO 10000.00 4 1202 \N +46457 2025-06-02 10:47:08.117251+00 2025-06-02 10:47:08.117261+00 f t SUBTOTAL 38500.00 1 1177 \N +46458 2025-06-02 10:47:08.119685+00 2025-06-02 10:47:08.119698+00 f t DESCUENTO 0.00 2 1177 \N +46459 2025-06-02 10:47:08.12156+00 2025-06-02 10:47:08.121571+00 f t TOTAL 38500.00 3 1177 \N +46460 2025-06-02 10:47:08.123448+00 2025-06-02 10:47:08.123459+00 f t ADELANTO 8500.00 4 1177 \N +49960 2025-06-03 23:02:10.759503+00 2025-06-03 23:02:10.759511+00 f t ADELANTO 0.00 4 1276 \N +50001 2025-06-03 23:32:27.115212+00 2025-06-03 23:32:27.115222+00 f t SUBTOTAL 0.00 1 1277 \N +50002 2025-06-03 23:32:27.117282+00 2025-06-03 23:32:27.11729+00 f t DESCUENTO 0.00 2 1277 \N +50003 2025-06-03 23:32:27.118675+00 2025-06-03 23:32:27.118682+00 f t TOTAL 0.00 3 1277 \N +50004 2025-06-03 23:32:27.120049+00 2025-06-03 23:32:27.120057+00 f t ADELANTO 0.00 4 1277 \N +54881 2025-06-06 12:24:21.68826+00 2025-06-06 12:24:21.688271+00 f t SUBTOTAL 0.00 1 1408 \N +54882 2025-06-06 12:24:21.690205+00 2025-06-06 12:24:21.690214+00 f t DESCUENTO 0.00 2 1408 \N +47325 2025-06-02 19:43:51.631122+00 2025-06-02 19:43:51.631135+00 f t SUBTOTAL 50000.00 1 1203 \N +47326 2025-06-02 19:43:51.633061+00 2025-06-02 19:43:51.633071+00 f t DESCUENTO 0.00 2 1203 \N +47327 2025-06-02 19:43:51.634479+00 2025-06-02 19:43:51.634485+00 f t TOTAL 50000.00 3 1203 \N +47328 2025-06-02 19:43:51.635684+00 2025-06-02 19:43:51.63569+00 f t ADELANTO 10000.00 4 1203 \N +57713 2025-06-08 00:43:36.428557+00 2025-06-08 00:43:36.428567+00 f t SUBTOTAL 50000.00 1 1488 \N +57714 2025-06-08 00:43:36.430432+00 2025-06-08 00:43:36.430443+00 f t DESCUENTO 0.00 2 1488 \N +57715 2025-06-08 00:43:36.432032+00 2025-06-08 00:43:36.432039+00 f t TOTAL 50000.00 3 1488 \N +57716 2025-06-08 00:43:36.433245+00 2025-06-08 00:43:36.433251+00 f t ADELANTO 10000.00 4 1488 \N +47333 2025-06-02 19:44:10.44158+00 2025-06-02 19:44:10.441593+00 f t SUBTOTAL 0.00 1 1204 \N +47334 2025-06-02 19:44:10.443544+00 2025-06-02 19:44:10.443553+00 f t DESCUENTO 0.00 2 1204 \N +47335 2025-06-02 19:44:10.444842+00 2025-06-02 19:44:10.444848+00 f t TOTAL 0.00 3 1204 \N +47336 2025-06-02 19:44:10.445886+00 2025-06-02 19:44:10.445892+00 f t ADELANTO 0.00 4 1204 \N +47341 2025-06-02 19:46:04.26892+00 2025-06-02 19:46:04.26893+00 f t SUBTOTAL 0.00 1 1205 \N +47342 2025-06-02 19:46:04.270568+00 2025-06-02 19:46:04.270578+00 f t DESCUENTO 0.00 2 1205 \N +47343 2025-06-02 19:46:04.272397+00 2025-06-02 19:46:04.272404+00 f t TOTAL 0.00 3 1205 \N +47344 2025-06-02 19:46:04.273785+00 2025-06-02 19:46:04.273793+00 f t ADELANTO 0.00 4 1205 \N +47349 2025-06-02 20:10:15.091517+00 2025-06-02 20:10:15.091528+00 f t SUBTOTAL 0.00 1 1206 \N +47350 2025-06-02 20:10:15.093273+00 2025-06-02 20:10:15.093283+00 f t DESCUENTO 0.00 2 1206 \N +47351 2025-06-02 20:10:15.095017+00 2025-06-02 20:10:15.095028+00 f t TOTAL 0.00 3 1206 \N +47352 2025-06-02 20:10:15.09675+00 2025-06-02 20:10:15.096761+00 f t ADELANTO 0.00 4 1206 \N +47365 2025-06-02 20:11:14.886912+00 2025-06-02 20:11:14.886922+00 f t SUBTOTAL 0.00 1 1208 \N +47366 2025-06-02 20:11:14.888656+00 2025-06-02 20:11:14.888664+00 f t DESCUENTO 0.00 2 1208 \N +47367 2025-06-02 20:11:14.889932+00 2025-06-02 20:11:14.889942+00 f t TOTAL 0.00 3 1208 \N +47368 2025-06-02 20:11:14.890961+00 2025-06-02 20:11:14.890967+00 f t ADELANTO 0.00 4 1208 \N +49081 2025-06-03 15:58:59.258144+00 2025-06-03 15:58:59.258155+00 f t SUBTOTAL 42000.00 1 1256 \N +49082 2025-06-03 15:58:59.260035+00 2025-06-03 15:58:59.260044+00 f t DESCUENTO 0.00 2 1256 \N +49083 2025-06-03 15:58:59.261535+00 2025-06-03 15:58:59.261543+00 f t TOTAL 42000.00 3 1256 \N +49084 2025-06-03 15:58:59.262882+00 2025-06-03 15:58:59.262888+00 f t ADELANTO 9500.00 4 1256 \N +47393 2025-06-02 20:12:34.531174+00 2025-06-02 20:12:34.531188+00 f t SUBTOTAL 50000.00 1 1207 \N +47394 2025-06-02 20:12:34.533733+00 2025-06-02 20:12:34.533747+00 f t DESCUENTO 0.00 2 1207 \N +47395 2025-06-02 20:12:34.535826+00 2025-06-02 20:12:34.535838+00 f t TOTAL 50000.00 3 1207 \N +47396 2025-06-02 20:12:34.538232+00 2025-06-02 20:12:34.538243+00 f t ADELANTO 10000.00 4 1207 \N +47965 2025-06-03 01:44:21.684926+00 2025-06-03 01:44:21.684937+00 f t SUBTOTAL 0.00 1 1228 \N +47966 2025-06-03 01:44:21.68634+00 2025-06-03 01:44:21.686347+00 f t DESCUENTO 0.00 2 1228 \N +47967 2025-06-03 01:44:21.687658+00 2025-06-03 01:44:21.687664+00 f t TOTAL 0.00 3 1228 \N +47968 2025-06-03 01:44:21.688685+00 2025-06-03 01:44:21.68869+00 f t ADELANTO 0.00 4 1228 \N +47421 2025-06-02 20:12:51.464978+00 2025-06-02 20:12:51.464992+00 f t SUBTOTAL 0.00 1 1210 \N +47422 2025-06-02 20:12:51.466721+00 2025-06-02 20:12:51.466732+00 f t DESCUENTO 0.00 2 1210 \N +47423 2025-06-02 20:12:51.46838+00 2025-06-02 20:12:51.468389+00 f t TOTAL 0.00 3 1210 \N +47424 2025-06-02 20:12:51.469824+00 2025-06-02 20:12:51.469832+00 f t ADELANTO 0.00 4 1210 \N +47429 2025-06-02 20:12:54.830931+00 2025-06-02 20:12:54.830941+00 f t SUBTOTAL 0.00 1 1211 \N +47430 2025-06-02 20:12:54.832523+00 2025-06-02 20:12:54.832531+00 f t DESCUENTO 0.00 2 1211 \N +47431 2025-06-02 20:12:54.834076+00 2025-06-02 20:12:54.834086+00 f t TOTAL 0.00 3 1211 \N +47432 2025-06-02 20:12:54.835395+00 2025-06-02 20:12:54.835403+00 f t ADELANTO 0.00 4 1211 \N +48053 2025-06-03 01:50:45.19017+00 2025-06-03 01:50:45.190179+00 f t SUBTOTAL 49500.00 1 1229 \N +48054 2025-06-03 01:50:45.191784+00 2025-06-03 01:50:45.191792+00 f t DESCUENTO 0.00 2 1229 \N +48055 2025-06-03 01:50:45.19299+00 2025-06-03 01:50:45.192996+00 f t TOTAL 49500.00 3 1229 \N +48056 2025-06-03 01:50:45.194037+00 2025-06-03 01:50:45.194043+00 f t ADELANTO 11500.00 4 1229 \N +47461 2025-06-02 20:13:23.301023+00 2025-06-02 20:13:23.301032+00 f t SUBTOTAL 42000.00 1 1209 \N +47462 2025-06-02 20:13:23.303234+00 2025-06-02 20:13:23.303247+00 f t DESCUENTO 0.00 2 1209 \N +47463 2025-06-02 20:13:23.305383+00 2025-06-02 20:13:23.305393+00 f t TOTAL 42000.00 3 1209 \N +47464 2025-06-02 20:13:23.307211+00 2025-06-02 20:13:23.30722+00 f t ADELANTO 9500.00 4 1209 \N +47469 2025-06-02 20:18:17.618428+00 2025-06-02 20:18:17.618442+00 f t SUBTOTAL 0.00 1 1212 \N +47470 2025-06-02 20:18:17.620081+00 2025-06-02 20:18:17.620089+00 f t DESCUENTO 0.00 2 1212 \N +47471 2025-06-02 20:18:17.621109+00 2025-06-02 20:18:17.621115+00 f t TOTAL 0.00 3 1212 \N +47472 2025-06-02 20:18:17.622+00 2025-06-02 20:18:17.622005+00 f t ADELANTO 0.00 4 1212 \N +47477 2025-06-02 20:24:31.792826+00 2025-06-02 20:24:31.792835+00 f t SUBTOTAL 0.00 1 1213 \N +47478 2025-06-02 20:24:31.795892+00 2025-06-02 20:24:31.7959+00 f t DESCUENTO 0.00 2 1213 \N +47479 2025-06-02 20:24:31.797435+00 2025-06-02 20:24:31.797445+00 f t TOTAL 0.00 3 1213 \N +47480 2025-06-02 20:24:31.798759+00 2025-06-02 20:24:31.798766+00 f t ADELANTO 0.00 4 1213 \N +48221 2025-06-03 02:21:20.020387+00 2025-06-03 02:21:20.0204+00 f t SUBTOTAL 0.00 1 1234 \N +48222 2025-06-03 02:21:20.023585+00 2025-06-03 02:21:20.023593+00 f t DESCUENTO 0.00 2 1234 \N +48223 2025-06-03 02:21:20.025409+00 2025-06-03 02:21:20.025422+00 f t TOTAL 0.00 3 1234 \N +48224 2025-06-03 02:21:20.027989+00 2025-06-03 02:21:20.027999+00 f t ADELANTO 0.00 4 1234 \N +47513 2025-06-02 20:26:59.278961+00 2025-06-02 20:26:59.278974+00 f t SUBTOTAL 64500.00 1 1214 \N +47514 2025-06-02 20:26:59.280898+00 2025-06-02 20:26:59.28091+00 f t DESCUENTO 0.00 2 1214 \N +47515 2025-06-02 20:26:59.282366+00 2025-06-02 20:26:59.282376+00 f t TOTAL 64500.00 3 1214 \N +47516 2025-06-02 20:26:59.283673+00 2025-06-02 20:26:59.283683+00 f t ADELANTO 17000.00 4 1214 \N +49501 2025-06-03 18:46:28.43849+00 2025-06-03 18:46:28.440049+00 f t SUBTOTAL 0.00 1 1264 \N +49502 2025-06-03 18:46:28.491242+00 2025-06-03 18:46:28.491834+00 f t DESCUENTO 0.00 2 1264 \N +49503 2025-06-03 18:46:28.552937+00 2025-06-03 18:46:28.554018+00 f t TOTAL 0.00 3 1264 \N +49504 2025-06-03 18:46:28.609643+00 2025-06-03 18:46:28.610463+00 f t ADELANTO 0.00 4 1264 \N +48265 2025-06-03 02:33:33.108094+00 2025-06-03 02:33:33.108102+00 f t SUBTOTAL 50000.00 1 1235 \N +48266 2025-06-03 02:33:33.109769+00 2025-06-03 02:33:33.109776+00 f t DESCUENTO 0.00 2 1235 \N +48267 2025-06-03 02:33:33.11089+00 2025-06-03 02:33:33.110898+00 f t TOTAL 50000.00 3 1235 \N +48268 2025-06-03 02:33:33.112112+00 2025-06-03 02:33:33.112119+00 f t ADELANTO 10000.00 4 1235 \N +61818 2025-06-09 20:33:20.455462+00 2025-06-09 20:33:20.455474+00 f t DESCUENTO 0.00 2 1595 \N +61819 2025-06-09 20:33:20.458741+00 2025-06-09 20:33:20.45875+00 f t TOTAL 0.00 3 1595 \N +61820 2025-06-09 20:33:20.460483+00 2025-06-09 20:33:20.460553+00 f t ADELANTO 0.00 4 1595 \N +54883 2025-06-06 12:24:21.692062+00 2025-06-06 12:24:21.69207+00 f t TOTAL 0.00 3 1408 \N +54884 2025-06-06 12:24:21.693956+00 2025-06-06 12:24:21.693964+00 f t ADELANTO 0.00 4 1408 \N +47609 2025-06-02 21:11:49.361489+00 2025-06-02 21:11:49.361498+00 f t SUBTOTAL 42000.00 1 1216 \N +47610 2025-06-02 21:11:49.363498+00 2025-06-02 21:11:49.363507+00 f t DESCUENTO 0.00 2 1216 \N +47611 2025-06-02 21:11:49.36493+00 2025-06-02 21:11:49.364938+00 f t TOTAL 42000.00 3 1216 \N +47612 2025-06-02 21:11:49.366271+00 2025-06-02 21:11:49.366279+00 f t ADELANTO 9500.00 4 1216 \N +47617 2025-06-02 21:14:42.498351+00 2025-06-02 21:14:42.498363+00 f t SUBTOTAL 0.00 1 1217 \N +47618 2025-06-02 21:14:42.500282+00 2025-06-02 21:14:42.500293+00 f t DESCUENTO 0.00 2 1217 \N +47619 2025-06-02 21:14:42.502091+00 2025-06-02 21:14:42.5021+00 f t TOTAL 0.00 3 1217 \N +47620 2025-06-02 21:14:42.503651+00 2025-06-02 21:14:42.503663+00 f t ADELANTO 0.00 4 1217 \N +47625 2025-06-02 21:18:59.849979+00 2025-06-02 21:18:59.84999+00 f t SUBTOTAL 0.00 1 1218 \N +47626 2025-06-02 21:18:59.85157+00 2025-06-02 21:18:59.851578+00 f t DESCUENTO 0.00 2 1218 \N +47627 2025-06-02 21:18:59.852884+00 2025-06-02 21:18:59.85289+00 f t TOTAL 0.00 3 1218 \N +47628 2025-06-02 21:18:59.854131+00 2025-06-02 21:18:59.854182+00 f t ADELANTO 0.00 4 1218 \N +47633 2025-06-02 21:20:36.749535+00 2025-06-02 21:20:36.749547+00 f t SUBTOTAL 0.00 1 1219 \N +47634 2025-06-02 21:20:36.751415+00 2025-06-02 21:20:36.751425+00 f t DESCUENTO 0.00 2 1219 \N +47635 2025-06-02 21:20:36.752831+00 2025-06-02 21:20:36.75284+00 f t TOTAL 0.00 3 1219 \N +47636 2025-06-02 21:20:36.7544+00 2025-06-02 21:20:36.754409+00 f t ADELANTO 0.00 4 1219 \N +50093 2025-06-03 23:44:01.030294+00 2025-06-03 23:44:01.030303+00 f t SUBTOTAL 42000.00 1 1279 \N +50094 2025-06-03 23:44:01.031964+00 2025-06-03 23:44:01.031971+00 f t DESCUENTO 0.00 2 1279 \N +50095 2025-06-03 23:44:01.0332+00 2025-06-03 23:44:01.033209+00 f t TOTAL 42000.00 3 1279 \N +50096 2025-06-03 23:44:01.034144+00 2025-06-03 23:44:01.03415+00 f t ADELANTO 9500.00 4 1279 \N +49001 2025-06-03 15:08:44.580489+00 2025-06-03 15:08:44.580498+00 f t SUBTOTAL 57000.00 1 1251 \N +49002 2025-06-03 15:08:44.582025+00 2025-06-03 15:08:44.582033+00 f t DESCUENTO 0.00 2 1251 \N +49003 2025-06-03 15:08:44.583227+00 2025-06-03 15:08:44.583233+00 f t TOTAL 57000.00 3 1251 \N +49004 2025-06-03 15:08:44.584178+00 2025-06-03 15:08:44.584183+00 f t ADELANTO 12000.00 4 1251 \N +47929 2025-06-03 01:17:07.135348+00 2025-06-03 01:17:07.135394+00 f t SUBTOTAL 64500.00 1 1226 \N +47930 2025-06-03 01:17:07.138513+00 2025-06-03 01:17:07.138524+00 f t DESCUENTO 0.00 2 1226 \N +47931 2025-06-03 01:17:07.140376+00 2025-06-03 01:17:07.140385+00 f t TOTAL 64500.00 3 1226 \N +49045 2025-06-03 15:47:26.089699+00 2025-06-03 15:47:26.089707+00 f t SUBTOTAL 49500.00 1 1254 \N +49046 2025-06-03 15:47:26.091384+00 2025-06-03 15:47:26.091394+00 f t DESCUENTO 0.00 2 1254 \N +49047 2025-06-03 15:47:26.092518+00 2025-06-03 15:47:26.092524+00 f t TOTAL 49500.00 3 1254 \N +49048 2025-06-03 15:47:26.094112+00 2025-06-03 15:47:26.094117+00 f t ADELANTO 11500.00 4 1254 \N +47932 2025-06-03 01:17:07.14157+00 2025-06-03 01:17:07.141575+00 f t ADELANTO 17000.00 4 1226 \N +50149 2025-06-04 01:53:13.199985+00 2025-06-04 01:53:13.199996+00 f t SUBTOTAL 70000.00 1 1281 \N +50150 2025-06-04 01:53:13.203298+00 2025-06-04 01:53:13.203309+00 f t DESCUENTO 0.00 2 1281 \N +50151 2025-06-04 01:53:13.205369+00 2025-06-04 01:53:13.205378+00 f t TOTAL 70000.00 3 1281 \N +50152 2025-06-04 01:53:13.207006+00 2025-06-04 01:53:13.207015+00 f t ADELANTO 15000.00 4 1281 \N +49137 2025-06-03 16:04:43.161486+00 2025-06-03 16:04:43.161496+00 f t SUBTOTAL 50000.00 1 1257 \N +49138 2025-06-03 16:04:43.163296+00 2025-06-03 16:04:43.163303+00 f t DESCUENTO 0.00 2 1257 \N +49139 2025-06-03 16:04:43.16572+00 2025-06-03 16:04:43.165727+00 f t TOTAL 50000.00 3 1257 \N +49140 2025-06-03 16:04:43.166887+00 2025-06-03 16:04:43.166893+00 f t ADELANTO 10000.00 4 1257 \N +50237 2025-06-04 02:05:13.849907+00 2025-06-04 02:05:13.849916+00 f t SUBTOTAL 82700.00 1 1283 \N +50238 2025-06-04 02:05:13.851516+00 2025-06-04 02:05:13.851524+00 f t DESCUENTO 0.00 2 1283 \N +50239 2025-06-04 02:05:13.852722+00 2025-06-04 02:05:13.852728+00 f t TOTAL 82700.00 3 1283 \N +50240 2025-06-04 02:05:13.853814+00 2025-06-04 02:05:13.85382+00 f t ADELANTO 44700.00 4 1283 \N +48061 2025-06-03 01:59:55.077842+00 2025-06-03 01:59:55.077851+00 f t SUBTOTAL 0.00 1 1230 \N +48062 2025-06-03 01:59:55.079237+00 2025-06-03 01:59:55.079244+00 f t DESCUENTO 0.00 2 1230 \N +48063 2025-06-03 01:59:55.080521+00 2025-06-03 01:59:55.080529+00 f t TOTAL 0.00 3 1230 \N +48064 2025-06-03 01:59:55.081997+00 2025-06-03 01:59:55.082004+00 f t ADELANTO 0.00 4 1230 \N +50289 2025-06-04 02:11:14.66995+00 2025-06-04 02:11:14.669959+00 f t SUBTOTAL 64500.00 1 1284 \N +50290 2025-06-04 02:11:14.671464+00 2025-06-04 02:11:14.671471+00 f t DESCUENTO 0.00 2 1284 \N +50291 2025-06-04 02:11:14.672632+00 2025-06-04 02:11:14.672638+00 f t TOTAL 64500.00 3 1284 \N +50292 2025-06-04 02:11:14.673676+00 2025-06-04 02:11:14.673681+00 f t ADELANTO 17000.00 4 1284 \N +48205 2025-06-03 02:18:59.066797+00 2025-06-03 02:18:59.06681+00 f t SUBTOTAL 42000.00 1 1233 \N +48206 2025-06-03 02:18:59.068943+00 2025-06-03 02:18:59.068954+00 f t DESCUENTO 0.00 2 1233 \N +48207 2025-06-03 02:18:59.07042+00 2025-06-03 02:18:59.070429+00 f t TOTAL 42000.00 3 1233 \N +48208 2025-06-03 02:18:59.071685+00 2025-06-03 02:18:59.071693+00 f t ADELANTO 9500.00 4 1233 \N +49469 2025-06-03 18:37:39.445836+00 2025-06-03 18:37:39.445847+00 f t SUBTOTAL 81700.00 1 1263 \N +49470 2025-06-03 18:37:39.447596+00 2025-06-03 18:37:39.447604+00 f t DESCUENTO 0.00 2 1263 \N +49471 2025-06-03 18:37:39.448701+00 2025-06-03 18:37:39.448705+00 f t TOTAL 81700.00 3 1263 \N +49472 2025-06-03 18:37:39.449729+00 2025-06-03 18:37:39.449735+00 f t ADELANTO 43700.00 4 1263 \N +48313 2025-06-03 02:55:33.201032+00 2025-06-03 02:55:33.201041+00 f t SUBTOTAL 42000.00 1 1236 \N +48314 2025-06-03 02:55:33.204808+00 2025-06-03 02:55:33.204819+00 f t DESCUENTO 0.00 2 1236 \N +48315 2025-06-03 02:55:33.206937+00 2025-06-03 02:55:33.206945+00 f t TOTAL 42000.00 3 1236 \N +48316 2025-06-03 02:55:33.208142+00 2025-06-03 02:55:33.208148+00 f t ADELANTO 9500.00 4 1236 \N +49653 2025-06-03 20:04:42.037399+00 2025-06-03 20:04:42.037412+00 f t SUBTOTAL 42000.00 1 1267 \N +49654 2025-06-03 20:04:42.039613+00 2025-06-03 20:04:42.039624+00 f t DESCUENTO 0.00 2 1267 \N +49655 2025-06-03 20:04:42.041096+00 2025-06-03 20:04:42.041104+00 f t TOTAL 42000.00 3 1267 \N +49656 2025-06-03 20:04:42.042448+00 2025-06-03 20:04:42.042457+00 f t ADELANTO 9500.00 4 1267 \N +49681 2025-06-03 20:17:42.646024+00 2025-06-03 20:17:42.646032+00 f t SUBTOTAL 50000.00 1 1268 \N +49682 2025-06-03 20:17:42.647756+00 2025-06-03 20:17:42.647765+00 f t DESCUENTO 0.00 2 1268 \N +49683 2025-06-03 20:17:42.64897+00 2025-06-03 20:17:42.648977+00 f t TOTAL 50000.00 3 1268 \N +49684 2025-06-03 20:17:42.650053+00 2025-06-03 20:17:42.650059+00 f t ADELANTO 10000.00 4 1268 \N +49709 2025-06-03 20:27:02.152999+00 2025-06-03 20:27:02.153012+00 f t SUBTOTAL 49500.00 1 1269 \N +49710 2025-06-03 20:27:02.155797+00 2025-06-03 20:27:02.15581+00 f t DESCUENTO 0.00 2 1269 \N +49711 2025-06-03 20:27:02.157845+00 2025-06-03 20:27:02.157857+00 f t TOTAL 49500.00 3 1269 \N +49712 2025-06-03 20:27:02.159903+00 2025-06-03 20:27:02.159915+00 f t ADELANTO 11500.00 4 1269 \N +52297 2025-06-04 16:33:41.822284+00 2025-06-04 16:33:41.822295+00 f t SUBTOTAL 193500.00 1 1323 \N +52298 2025-06-04 16:33:41.823904+00 2025-06-04 16:33:41.823912+00 f t DESCUENTO 0.00 2 1323 \N +52299 2025-06-04 16:33:41.825631+00 2025-06-04 16:33:41.825641+00 f t TOTAL 193500.00 3 1323 \N +52300 2025-06-04 16:33:41.827008+00 2025-06-04 16:33:41.827016+00 f t ADELANTO 51000.00 4 1323 \N +48949 2025-06-03 14:43:06.373753+00 2025-06-03 14:43:06.373761+00 f t SUBTOTAL 50000.00 1 1247 \N +48950 2025-06-03 14:43:06.375856+00 2025-06-03 14:43:06.375865+00 f t DESCUENTO 0.00 2 1247 \N +48951 2025-06-03 14:43:06.37724+00 2025-06-03 14:43:06.377247+00 f t TOTAL 50000.00 3 1247 \N +48952 2025-06-03 14:43:06.378609+00 2025-06-03 14:43:06.378619+00 f t ADELANTO 10000.00 4 1247 \N +48457 2025-06-03 04:05:29.409488+00 2025-06-03 04:05:29.409501+00 f t SUBTOTAL 0.00 1 1237 \N +48458 2025-06-03 04:05:29.411512+00 2025-06-03 04:05:29.41152+00 f t DESCUENTO 0.00 2 1237 \N +48459 2025-06-03 04:05:29.412664+00 2025-06-03 04:05:29.41267+00 f t TOTAL 0.00 3 1237 \N +48460 2025-06-03 04:05:29.413882+00 2025-06-03 04:05:29.413888+00 f t ADELANTO 0.00 4 1237 \N +49009 2025-06-03 15:18:29.8235+00 2025-06-03 15:18:29.82351+00 f t SUBTOTAL 0.00 1 1252 \N +49010 2025-06-03 15:18:29.824955+00 2025-06-03 15:18:29.824962+00 f t DESCUENTO 0.00 2 1252 \N +49011 2025-06-03 15:18:29.826141+00 2025-06-03 15:18:29.826149+00 f t TOTAL 0.00 3 1252 \N +49012 2025-06-03 15:18:29.827542+00 2025-06-03 15:18:29.82755+00 f t ADELANTO 0.00 4 1252 \N +50101 2025-06-04 01:46:28.93638+00 2025-06-04 01:46:28.936389+00 f t SUBTOTAL 0.00 1 1280 \N +50102 2025-06-04 01:46:28.937795+00 2025-06-04 01:46:28.937803+00 f t DESCUENTO 0.00 2 1280 \N +50103 2025-06-04 01:46:28.939035+00 2025-06-04 01:46:28.939044+00 f t TOTAL 0.00 3 1280 \N +50104 2025-06-04 01:46:28.940273+00 2025-06-04 01:46:28.940281+00 f t ADELANTO 0.00 4 1280 \N +49053 2025-06-03 15:51:05.286359+00 2025-06-03 15:51:05.286368+00 f t SUBTOTAL 0.00 1 1255 \N +49054 2025-06-03 15:51:05.28795+00 2025-06-03 15:51:05.287989+00 f t DESCUENTO 0.00 2 1255 \N +49055 2025-06-03 15:51:05.289436+00 2025-06-03 15:51:05.289443+00 f t TOTAL 0.00 3 1255 \N +49056 2025-06-03 15:51:05.290607+00 2025-06-03 15:51:05.290667+00 f t ADELANTO 0.00 4 1255 \N +49145 2025-06-03 16:13:10.282175+00 2025-06-03 16:13:10.282185+00 f t SUBTOTAL 0.00 1 1258 \N +49146 2025-06-03 16:13:10.283967+00 2025-06-03 16:13:10.284005+00 f t DESCUENTO 0.00 2 1258 \N +49147 2025-06-03 16:13:10.285116+00 2025-06-03 16:13:10.285121+00 f t TOTAL 0.00 3 1258 \N +49148 2025-06-03 16:13:10.286131+00 2025-06-03 16:13:10.286137+00 f t ADELANTO 0.00 4 1258 \N +49201 2025-06-03 16:44:48.761639+00 2025-06-03 16:44:48.761647+00 f t SUBTOTAL 42000.00 1 1260 \N +49202 2025-06-03 16:44:48.767163+00 2025-06-03 16:44:48.767176+00 f t DESCUENTO 0.00 2 1260 \N +49203 2025-06-03 16:44:48.774292+00 2025-06-03 16:44:48.774305+00 f t TOTAL 42000.00 3 1260 \N +49204 2025-06-03 16:44:48.784802+00 2025-06-03 16:44:48.784815+00 f t ADELANTO 9500.00 4 1260 \N +49253 2025-06-03 17:22:06.236935+00 2025-06-03 17:22:06.236944+00 f t SUBTOTAL 64500.00 1 1261 \N +49254 2025-06-03 17:22:06.238959+00 2025-06-03 17:22:06.238967+00 f t DESCUENTO 0.00 2 1261 \N +49255 2025-06-03 17:22:06.240399+00 2025-06-03 17:22:06.240406+00 f t TOTAL 64500.00 3 1261 \N +49256 2025-06-03 17:22:06.24158+00 2025-06-03 17:22:06.241586+00 f t ADELANTO 17000.00 4 1261 \N +50297 2025-06-04 02:21:34.842873+00 2025-06-04 02:21:34.842882+00 f t SUBTOTAL 0.00 1 1285 \N +50298 2025-06-04 02:21:34.844313+00 2025-06-04 02:21:34.844319+00 f t DESCUENTO 0.00 2 1285 \N +50299 2025-06-04 02:21:34.845391+00 2025-06-04 02:21:34.845396+00 f t TOTAL 0.00 3 1285 \N +50300 2025-06-04 02:21:34.846367+00 2025-06-04 02:21:34.846372+00 f t ADELANTO 0.00 4 1285 \N +50365 2025-06-04 02:32:24.177781+00 2025-06-04 02:32:24.177794+00 f t SUBTOTAL 50000.00 1 1286 \N +50366 2025-06-04 02:32:24.179633+00 2025-06-04 02:32:24.179644+00 f t DESCUENTO 0.00 2 1286 \N +50367 2025-06-04 02:32:24.181003+00 2025-06-04 02:32:24.181012+00 f t TOTAL 50000.00 3 1286 \N +50368 2025-06-04 02:32:24.182298+00 2025-06-04 02:32:24.182306+00 f t ADELANTO 10000.00 4 1286 \N +50385 2025-06-04 02:43:53.2432+00 2025-06-04 02:43:53.243211+00 f t SUBTOTAL 0.00 1 1287 \N +50386 2025-06-04 02:43:53.245442+00 2025-06-04 02:43:53.245451+00 f t DESCUENTO 0.00 2 1287 \N +50387 2025-06-04 02:43:53.246745+00 2025-06-04 02:43:53.246752+00 f t TOTAL 0.00 3 1287 \N +50388 2025-06-04 02:43:53.247863+00 2025-06-04 02:43:53.247869+00 f t ADELANTO 0.00 4 1287 \N +49437 2025-06-03 18:01:27.787397+00 2025-06-03 18:01:27.787406+00 f t SUBTOTAL 42000.00 1 1262 \N +49438 2025-06-03 18:01:27.789523+00 2025-06-03 18:01:27.78953+00 f t DESCUENTO 0.00 2 1262 \N +49439 2025-06-03 18:01:27.790866+00 2025-06-03 18:01:27.790872+00 f t TOTAL 42000.00 3 1262 \N +49440 2025-06-03 18:01:27.792142+00 2025-06-03 18:01:27.792147+00 f t ADELANTO 9500.00 4 1262 \N +48593 2025-06-03 08:22:39.361233+00 2025-06-03 08:22:39.361244+00 f t SUBTOTAL 64500.00 1 1238 \N +48594 2025-06-03 08:22:39.363009+00 2025-06-03 08:22:39.363017+00 f t DESCUENTO 0.00 2 1238 \N +48595 2025-06-03 08:22:39.364397+00 2025-06-03 08:22:39.364406+00 f t TOTAL 64500.00 3 1238 \N +48596 2025-06-03 08:22:39.365531+00 2025-06-03 08:22:39.365537+00 f t ADELANTO 17000.00 4 1238 \N +48665 2025-06-03 09:04:26.595951+00 2025-06-03 09:04:26.595959+00 f t SUBTOTAL 42000.00 1 1239 \N +48666 2025-06-03 09:04:26.597492+00 2025-06-03 09:04:26.5975+00 f t DESCUENTO 0.00 2 1239 \N +48667 2025-06-03 09:04:26.598552+00 2025-06-03 09:04:26.598558+00 f t TOTAL 42000.00 3 1239 \N +48668 2025-06-03 09:04:26.599766+00 2025-06-03 09:04:26.599772+00 f t ADELANTO 9500.00 4 1239 \N +49717 2025-06-03 21:01:26.077013+00 2025-06-03 21:01:26.077022+00 f t SUBTOTAL 0.00 1 1270 \N +49718 2025-06-03 21:01:26.078132+00 2025-06-03 21:01:26.078138+00 f t DESCUENTO 0.00 2 1270 \N +49719 2025-06-03 21:01:26.079121+00 2025-06-03 21:01:26.079127+00 f t TOTAL 0.00 3 1270 \N +49720 2025-06-03 21:01:26.080023+00 2025-06-03 21:01:26.080028+00 f t ADELANTO 0.00 4 1270 \N +48693 2025-06-03 10:59:33.29663+00 2025-06-03 10:59:33.296639+00 f t SUBTOTAL 42000.00 1 1240 \N +48694 2025-06-03 10:59:33.298762+00 2025-06-03 10:59:33.298771+00 f t DESCUENTO 0.00 2 1240 \N +48695 2025-06-03 10:59:33.300436+00 2025-06-03 10:59:33.300444+00 f t TOTAL 42000.00 3 1240 \N +48696 2025-06-03 10:59:33.302233+00 2025-06-03 10:59:33.302241+00 f t ADELANTO 9500.00 4 1240 \N +49781 2025-06-03 22:02:56.390042+00 2025-06-03 22:02:56.39005+00 f t SUBTOTAL 42000.00 1 1272 \N +49782 2025-06-03 22:02:56.391518+00 2025-06-03 22:02:56.391525+00 f t DESCUENTO 0.00 2 1272 \N +49783 2025-06-03 22:02:56.392656+00 2025-06-03 22:02:56.392663+00 f t TOTAL 42000.00 3 1272 \N +48701 2025-06-03 11:31:55.627164+00 2025-06-03 11:31:55.627172+00 f t SUBTOTAL 0.00 1 1241 \N +48702 2025-06-03 11:31:55.628552+00 2025-06-03 11:31:55.628561+00 f t DESCUENTO 0.00 2 1241 \N +48703 2025-06-03 11:31:55.629856+00 2025-06-03 11:31:55.629863+00 f t TOTAL 0.00 3 1241 \N +48704 2025-06-03 11:31:55.630875+00 2025-06-03 11:31:55.630882+00 f t ADELANTO 0.00 4 1241 \N +49784 2025-06-03 22:02:56.393639+00 2025-06-03 22:02:56.393645+00 f t ADELANTO 9500.00 4 1272 \N +48709 2025-06-03 11:54:07.716556+00 2025-06-03 11:54:07.716569+00 f t SUBTOTAL 0.00 1 1242 \N +48710 2025-06-03 11:54:07.718133+00 2025-06-03 11:54:07.718142+00 f t DESCUENTO 0.00 2 1242 \N +48711 2025-06-03 11:54:07.719622+00 2025-06-03 11:54:07.719629+00 f t TOTAL 0.00 3 1242 \N +48712 2025-06-03 11:54:07.721059+00 2025-06-03 11:54:07.721067+00 f t ADELANTO 0.00 4 1242 \N +56273 2025-06-07 11:09:44.387192+00 2025-06-07 11:09:44.387201+00 f t SUBTOTAL 42000.00 1 1446 \N +48717 2025-06-03 11:58:32.954506+00 2025-06-03 11:58:32.95452+00 f t SUBTOTAL 0.00 1 1243 \N +48718 2025-06-03 11:58:32.95652+00 2025-06-03 11:58:32.956527+00 f t DESCUENTO 0.00 2 1243 \N +48719 2025-06-03 11:58:32.958108+00 2025-06-03 11:58:32.958115+00 f t TOTAL 0.00 3 1243 \N +48720 2025-06-03 11:58:32.959611+00 2025-06-03 11:58:32.95962+00 f t ADELANTO 0.00 4 1243 \N +48829 2025-06-03 14:25:23.990996+00 2025-06-03 14:25:23.991005+00 f t SUBTOTAL 0.00 1 1249 \N +48830 2025-06-03 14:25:23.992948+00 2025-06-03 14:25:23.992956+00 f t DESCUENTO 0.00 2 1249 \N +48831 2025-06-03 14:25:23.994302+00 2025-06-03 14:25:23.994311+00 f t TOTAL 0.00 3 1249 \N +48832 2025-06-03 14:25:23.995725+00 2025-06-03 14:25:23.995731+00 f t ADELANTO 0.00 4 1249 \N +48745 2025-06-03 13:28:12.093412+00 2025-06-03 13:28:12.093421+00 f t SUBTOTAL 117000.00 1 1244 \N +48746 2025-06-03 13:28:12.095691+00 2025-06-03 13:28:12.095702+00 f t DESCUENTO 0.00 2 1244 \N +48747 2025-06-03 13:28:12.097664+00 2025-06-03 13:28:12.097675+00 f t TOTAL 117000.00 3 1244 \N +48748 2025-06-03 13:28:12.099498+00 2025-06-03 13:28:12.099509+00 f t ADELANTO 24500.00 4 1244 \N +52401 2025-06-04 17:15:03.148309+00 2025-06-04 17:15:03.148322+00 f t SUBTOTAL 50000.00 1 1324 \N +52402 2025-06-04 17:15:03.15907+00 2025-06-04 17:15:03.159084+00 f t DESCUENTO 0.00 2 1324 \N +52403 2025-06-04 17:15:03.162118+00 2025-06-04 17:15:03.162133+00 f t TOTAL 50000.00 3 1324 \N +52404 2025-06-04 17:15:03.16482+00 2025-06-04 17:15:03.164835+00 f t ADELANTO 10000.00 4 1324 \N +48753 2025-06-03 13:45:44.507211+00 2025-06-03 13:45:44.50722+00 f t SUBTOTAL 0.00 1 1245 \N +48754 2025-06-03 13:45:44.509323+00 2025-06-03 13:45:44.509335+00 f t DESCUENTO 0.00 2 1245 \N +48755 2025-06-03 13:45:44.511003+00 2025-06-03 13:45:44.51101+00 f t TOTAL 0.00 3 1245 \N +48756 2025-06-03 13:45:44.512266+00 2025-06-03 13:45:44.512272+00 f t ADELANTO 0.00 4 1245 \N +52429 2025-06-04 17:23:09.123857+00 2025-06-04 17:23:09.123865+00 f t SUBTOTAL 70000.00 1 1325 \N +52430 2025-06-04 17:23:09.125492+00 2025-06-04 17:23:09.125498+00 f t DESCUENTO 0.00 2 1325 \N +52431 2025-06-04 17:23:09.126787+00 2025-06-04 17:23:09.126793+00 f t TOTAL 70000.00 3 1325 \N +52432 2025-06-04 17:23:09.127841+00 2025-06-04 17:23:09.127846+00 f t ADELANTO 15000.00 4 1325 \N +48761 2025-06-03 14:00:37.780785+00 2025-06-03 14:00:37.780797+00 f t SUBTOTAL 0.00 1 1246 \N +48762 2025-06-03 14:00:37.782923+00 2025-06-03 14:00:37.782934+00 f t DESCUENTO 0.00 2 1246 \N +48763 2025-06-03 14:00:37.78514+00 2025-06-03 14:00:37.785153+00 f t TOTAL 0.00 3 1246 \N +48764 2025-06-03 14:00:37.787233+00 2025-06-03 14:00:37.787243+00 f t ADELANTO 0.00 4 1246 \N +48957 2025-06-03 14:55:34.884722+00 2025-06-03 14:55:34.884732+00 f t SUBTOTAL 0.00 1 1250 \N +48958 2025-06-03 14:55:34.886356+00 2025-06-03 14:55:34.886364+00 f t DESCUENTO 0.00 2 1250 \N +48959 2025-06-03 14:55:34.887879+00 2025-06-03 14:55:34.887888+00 f t TOTAL 0.00 3 1250 \N +48960 2025-06-03 14:55:34.88934+00 2025-06-03 14:55:34.88935+00 f t ADELANTO 0.00 4 1250 \N +52553 2025-06-04 20:06:20.150332+00 2025-06-04 20:06:20.150345+00 f t SUBTOTAL 50000.00 1 1329 \N +48785 2025-06-03 14:23:22.537294+00 2025-06-03 14:23:22.537307+00 f t SUBTOTAL 0.00 1 1248 \N +48786 2025-06-03 14:23:22.539446+00 2025-06-03 14:23:22.539454+00 f t DESCUENTO 0.00 2 1248 \N +48787 2025-06-03 14:23:22.540872+00 2025-06-03 14:23:22.54088+00 f t TOTAL 0.00 3 1248 \N +48788 2025-06-03 14:23:22.54211+00 2025-06-03 14:23:22.542116+00 f t ADELANTO 0.00 4 1248 \N +49017 2025-06-03 15:38:39.110641+00 2025-06-03 15:38:39.110654+00 f t SUBTOTAL 0.00 1 1253 \N +49018 2025-06-03 15:38:39.112296+00 2025-06-03 15:38:39.112303+00 f t DESCUENTO 0.00 2 1253 \N +49019 2025-06-03 15:38:39.113744+00 2025-06-03 15:38:39.113751+00 f t TOTAL 0.00 3 1253 \N +49020 2025-06-03 15:38:39.115635+00 2025-06-03 15:38:39.115654+00 f t ADELANTO 0.00 4 1253 \N +52554 2025-06-04 20:06:20.152644+00 2025-06-04 20:06:20.152656+00 f t DESCUENTO 0.00 2 1329 \N +52555 2025-06-04 20:06:20.154303+00 2025-06-04 20:06:20.154313+00 f t TOTAL 50000.00 3 1329 \N +52556 2025-06-04 20:06:20.156011+00 2025-06-04 20:06:20.15602+00 f t ADELANTO 10000.00 4 1329 \N +52741 2025-06-04 21:17:03.048067+00 2025-06-04 21:17:03.048081+00 f t SUBTOTAL 64500.00 1 1337 \N +49153 2025-06-03 16:14:38.837013+00 2025-06-03 16:14:38.837023+00 f t SUBTOTAL 0.00 1 1259 \N +49154 2025-06-03 16:14:38.838418+00 2025-06-03 16:14:38.838423+00 f t DESCUENTO 0.00 2 1259 \N +49155 2025-06-03 16:14:38.839578+00 2025-06-03 16:14:38.839584+00 f t TOTAL 0.00 3 1259 \N +49156 2025-06-03 16:14:38.840489+00 2025-06-03 16:14:38.840494+00 f t ADELANTO 0.00 4 1259 \N +52742 2025-06-04 21:17:03.051101+00 2025-06-04 21:17:03.051116+00 f t DESCUENTO 0.00 2 1337 \N +52743 2025-06-04 21:17:03.054006+00 2025-06-04 21:17:03.054018+00 f t TOTAL 64500.00 3 1337 \N +52744 2025-06-04 21:17:03.056622+00 2025-06-04 21:17:03.056636+00 f t ADELANTO 17000.00 4 1337 \N +51489 2025-06-04 11:22:06.179608+00 2025-06-04 11:22:06.179621+00 f t SUBTOTAL 0.00 1 1301 \N +51490 2025-06-04 11:22:06.182272+00 2025-06-04 11:22:06.182281+00 f t DESCUENTO 0.00 2 1301 \N +51491 2025-06-04 11:22:06.183696+00 2025-06-04 11:22:06.183702+00 f t TOTAL 0.00 3 1301 \N +51492 2025-06-04 11:22:06.184875+00 2025-06-04 11:22:06.18488+00 f t ADELANTO 0.00 4 1301 \N +49533 2025-06-03 18:53:35.746277+00 2025-06-03 18:53:35.746287+00 f t SUBTOTAL 50000.00 1 1265 \N +49534 2025-06-03 18:53:35.747809+00 2025-06-03 18:53:35.747816+00 f t DESCUENTO 0.00 2 1265 \N +49535 2025-06-03 18:53:35.748954+00 2025-06-03 18:53:35.748959+00 f t TOTAL 50000.00 3 1265 \N +49536 2025-06-03 18:53:35.749921+00 2025-06-03 18:53:35.749927+00 f t ADELANTO 10000.00 4 1265 \N +51645 2025-06-04 12:51:28.789571+00 2025-06-04 12:51:28.789579+00 f t SUBTOTAL 50000.00 1 1303 \N +51646 2025-06-04 12:51:28.791381+00 2025-06-04 12:51:28.791388+00 f t DESCUENTO 0.00 2 1303 \N +51647 2025-06-04 12:51:28.792842+00 2025-06-04 12:51:28.792849+00 f t TOTAL 50000.00 3 1303 \N +51648 2025-06-04 12:51:28.794266+00 2025-06-04 12:51:28.794272+00 f t ADELANTO 10000.00 4 1303 \N +49585 2025-06-03 19:40:21.449847+00 2025-06-03 19:40:21.449859+00 f t SUBTOTAL 72000.00 1 1266 \N +49586 2025-06-03 19:40:21.452011+00 2025-06-03 19:40:21.452022+00 f t DESCUENTO 0.00 2 1266 \N +49587 2025-06-03 19:40:21.453619+00 2025-06-03 19:40:21.45363+00 f t TOTAL 72000.00 3 1266 \N +49588 2025-06-03 19:40:21.456297+00 2025-06-03 19:40:21.456308+00 f t ADELANTO 19000.00 4 1266 \N +50693 2025-06-04 02:59:09.385428+00 2025-06-04 02:59:09.385437+00 f t SUBTOTAL 50000.00 1 1289 \N +50694 2025-06-04 02:59:09.387048+00 2025-06-04 02:59:09.387055+00 f t DESCUENTO 0.00 2 1289 \N +50695 2025-06-04 02:59:09.38828+00 2025-06-04 02:59:09.388286+00 f t TOTAL 50000.00 3 1289 \N +50696 2025-06-04 02:59:09.389401+00 2025-06-04 02:59:09.389407+00 f t ADELANTO 10000.00 4 1289 \N +49725 2025-06-03 21:58:42.269826+00 2025-06-03 21:58:42.269838+00 f t SUBTOTAL 0.00 1 1271 \N +49726 2025-06-03 21:58:42.271546+00 2025-06-03 21:58:42.271555+00 f t DESCUENTO 0.00 2 1271 \N +49727 2025-06-03 21:58:42.273137+00 2025-06-03 21:58:42.273161+00 f t TOTAL 0.00 3 1271 \N +49728 2025-06-03 21:58:42.27485+00 2025-06-03 21:58:42.274857+00 f t ADELANTO 0.00 4 1271 \N +51805 2025-06-04 13:58:53.57664+00 2025-06-04 13:58:53.57665+00 f t SUBTOTAL 0.00 1 1308 \N +51806 2025-06-04 13:58:53.578449+00 2025-06-04 13:58:53.578461+00 f t DESCUENTO 0.00 2 1308 \N +51807 2025-06-04 13:58:53.580388+00 2025-06-04 13:58:53.580398+00 f t TOTAL 0.00 3 1308 \N +49949 2025-06-03 22:31:34.216753+00 2025-06-03 22:31:34.216764+00 f t SUBTOTAL 50000.00 1 1275 \N +49950 2025-06-03 22:31:34.218657+00 2025-06-03 22:31:34.218668+00 f t DESCUENTO 0.00 2 1275 \N +49951 2025-06-03 22:31:34.219942+00 2025-06-03 22:31:34.219948+00 f t TOTAL 50000.00 3 1275 \N +49952 2025-06-03 22:31:34.221009+00 2025-06-03 22:31:34.221015+00 f t ADELANTO 10000.00 4 1275 \N +51169 2025-06-04 08:24:14.777172+00 2025-06-04 08:24:14.77718+00 f t SUBTOTAL 50000.00 1 1296 \N +51170 2025-06-04 08:24:14.778916+00 2025-06-04 08:24:14.778926+00 f t DESCUENTO 0.00 2 1296 \N +51171 2025-06-04 08:24:14.780351+00 2025-06-04 08:24:14.780357+00 f t TOTAL 50000.00 3 1296 \N +51172 2025-06-04 08:24:14.781524+00 2025-06-04 08:24:14.781528+00 f t ADELANTO 10000.00 4 1296 \N +50073 2025-06-03 23:43:15.795387+00 2025-06-03 23:43:15.795396+00 f t SUBTOTAL 64500.00 1 1278 \N +50074 2025-06-03 23:43:15.796974+00 2025-06-03 23:43:15.796985+00 f t DESCUENTO 0.00 2 1278 \N +50075 2025-06-03 23:43:15.798016+00 2025-06-03 23:43:15.798022+00 f t TOTAL 64500.00 3 1278 \N +50076 2025-06-03 23:43:15.79909+00 2025-06-03 23:43:15.799095+00 f t ADELANTO 17000.00 4 1278 \N +49841 2025-06-03 22:06:25.507027+00 2025-06-03 22:06:25.507036+00 f t SUBTOTAL 42000.00 1 1273 \N +49842 2025-06-03 22:06:25.508963+00 2025-06-03 22:06:25.50897+00 f t DESCUENTO 0.00 2 1273 \N +49843 2025-06-03 22:06:25.510298+00 2025-06-03 22:06:25.510306+00 f t TOTAL 42000.00 3 1273 \N +49844 2025-06-03 22:06:25.511549+00 2025-06-03 22:06:25.511554+00 f t ADELANTO 9500.00 4 1273 \N +50181 2025-06-04 01:57:27.321425+00 2025-06-04 01:57:27.321433+00 f t SUBTOTAL 88000.00 1 1282 \N +50182 2025-06-04 01:57:27.323116+00 2025-06-04 01:57:27.323123+00 f t DESCUENTO 0.00 2 1282 \N +50183 2025-06-04 01:57:27.324514+00 2025-06-04 01:57:27.324521+00 f t TOTAL 88000.00 3 1282 \N +50184 2025-06-04 01:57:27.325794+00 2025-06-04 01:57:27.325801+00 f t ADELANTO 19000.00 4 1282 \N +52537 2025-06-04 20:05:50.21315+00 2025-06-04 20:05:50.213164+00 f t SUBTOTAL 0.00 1 1330 \N +52538 2025-06-04 20:05:50.215251+00 2025-06-04 20:05:50.215259+00 f t DESCUENTO 0.00 2 1330 \N +52539 2025-06-04 20:05:50.216665+00 2025-06-04 20:05:50.216672+00 f t TOTAL 0.00 3 1330 \N +52540 2025-06-04 20:05:50.2184+00 2025-06-04 20:05:50.218407+00 f t ADELANTO 0.00 4 1330 \N +52581 2025-06-04 20:34:47.07601+00 2025-06-04 20:34:47.076022+00 f t SUBTOTAL 42000.00 1 1331 \N +52582 2025-06-04 20:34:47.078447+00 2025-06-04 20:34:47.07846+00 f t DESCUENTO 0.00 2 1331 \N +52583 2025-06-04 20:34:47.0805+00 2025-06-04 20:34:47.080513+00 f t TOTAL 42000.00 3 1331 \N +52584 2025-06-04 20:34:47.083577+00 2025-06-04 20:34:47.083589+00 f t ADELANTO 9500.00 4 1331 \N +52697 2025-06-04 21:12:16.647782+00 2025-06-04 21:12:16.647791+00 f t SUBTOTAL 42000.00 1 1335 \N +52698 2025-06-04 21:12:16.649986+00 2025-06-04 21:12:16.649997+00 f t DESCUENTO 0.00 2 1335 \N +52699 2025-06-04 21:12:16.65159+00 2025-06-04 21:12:16.651596+00 f t TOTAL 42000.00 3 1335 \N +52700 2025-06-04 21:12:16.653053+00 2025-06-04 21:12:16.653062+00 f t ADELANTO 9500.00 4 1335 \N +49901 2025-06-03 22:25:15.677107+00 2025-06-03 22:25:15.677116+00 f t SUBTOTAL 70000.00 1 1274 \N +49902 2025-06-03 22:25:15.678804+00 2025-06-03 22:25:15.678811+00 f t DESCUENTO 0.00 2 1274 \N +49903 2025-06-03 22:25:15.68013+00 2025-06-03 22:25:15.680135+00 f t TOTAL 70000.00 3 1274 \N +49904 2025-06-03 22:25:15.681017+00 2025-06-03 22:25:15.681022+00 f t ADELANTO 15000.00 4 1274 \N +51429 2025-06-04 10:25:47.26232+00 2025-06-04 10:25:47.26233+00 f t SUBTOTAL 0.00 1 1300 \N +51430 2025-06-04 10:25:47.26394+00 2025-06-04 10:25:47.263951+00 f t DESCUENTO 0.00 2 1300 \N +51431 2025-06-04 10:25:47.266839+00 2025-06-04 10:25:47.266846+00 f t TOTAL 0.00 3 1300 \N +51432 2025-06-04 10:25:47.268039+00 2025-06-04 10:25:47.268044+00 f t ADELANTO 0.00 4 1300 \N +52941 2025-06-04 23:38:43.214165+00 2025-06-04 23:38:43.214176+00 f t SUBTOTAL 0.00 1 1342 \N +52942 2025-06-04 23:38:43.21569+00 2025-06-04 23:38:43.215697+00 f t DESCUENTO 0.00 2 1342 \N +52943 2025-06-04 23:38:43.216857+00 2025-06-04 23:38:43.216863+00 f t TOTAL 0.00 3 1342 \N +52944 2025-06-04 23:38:43.217986+00 2025-06-04 23:38:43.217994+00 f t ADELANTO 0.00 4 1342 \N +50613 2025-06-04 02:53:13.466588+00 2025-06-04 02:53:13.466597+00 f t SUBTOTAL 152700.00 1 1288 \N +50614 2025-06-04 02:53:13.468678+00 2025-06-04 02:53:13.468689+00 f t DESCUENTO 0.00 2 1288 \N +50615 2025-06-04 02:53:13.470041+00 2025-06-04 02:53:13.47005+00 f t TOTAL 152700.00 3 1288 \N +50616 2025-06-04 02:53:13.475535+00 2025-06-04 02:53:13.475546+00 f t ADELANTO 59700.00 4 1288 \N +52965 2025-06-05 00:57:02.309345+00 2025-06-05 00:57:02.30936+00 f t SUBTOTAL 0.00 1 1345 \N +52966 2025-06-05 00:57:02.311394+00 2025-06-05 00:57:02.311403+00 f t DESCUENTO 0.00 2 1345 \N +52967 2025-06-05 00:57:02.313145+00 2025-06-05 00:57:02.313158+00 f t TOTAL 0.00 3 1345 \N +52968 2025-06-05 00:57:02.315044+00 2025-06-05 00:57:02.315052+00 f t ADELANTO 0.00 4 1345 \N +53005 2025-06-05 01:35:52.029889+00 2025-06-05 01:35:52.029903+00 f t SUBTOTAL 57000.00 1 1346 \N +53006 2025-06-05 01:35:52.033591+00 2025-06-05 01:35:52.0336+00 f t DESCUENTO 0.00 2 1346 \N +53007 2025-06-05 01:35:52.035765+00 2025-06-05 01:35:52.035774+00 f t TOTAL 57000.00 3 1346 \N +53008 2025-06-05 01:35:52.037382+00 2025-06-05 01:35:52.03739+00 f t ADELANTO 12000.00 4 1346 \N +53077 2025-06-05 02:27:40.35748+00 2025-06-05 02:27:40.357489+00 f t SUBTOTAL 50000.00 1 1349 \N +53078 2025-06-05 02:27:40.359805+00 2025-06-05 02:27:40.359816+00 f t DESCUENTO 0.00 2 1349 \N +53079 2025-06-05 02:27:40.361506+00 2025-06-05 02:27:40.361514+00 f t TOTAL 50000.00 3 1349 \N +53080 2025-06-05 02:27:40.363078+00 2025-06-05 02:27:40.363089+00 f t ADELANTO 10000.00 4 1349 \N +50709 2025-06-04 03:03:54.446267+00 2025-06-04 03:03:54.446275+00 f t SUBTOTAL 0.00 1 1290 \N +50710 2025-06-04 03:03:54.447913+00 2025-06-04 03:03:54.447919+00 f t DESCUENTO 0.00 2 1290 \N +50711 2025-06-04 03:03:54.448973+00 2025-06-04 03:03:54.448978+00 f t TOTAL 0.00 3 1290 \N +50712 2025-06-04 03:03:54.450012+00 2025-06-04 03:03:54.45002+00 f t ADELANTO 0.00 4 1290 \N +53105 2025-06-05 02:31:57.14487+00 2025-06-05 02:31:57.144879+00 f t SUBTOTAL 49500.00 1 1350 \N +53106 2025-06-05 02:31:57.146481+00 2025-06-05 02:31:57.146487+00 f t DESCUENTO 0.00 2 1350 \N +53107 2025-06-05 02:31:57.147716+00 2025-06-05 02:31:57.147722+00 f t TOTAL 49500.00 3 1350 \N +53108 2025-06-05 02:31:57.14887+00 2025-06-05 02:31:57.148876+00 f t ADELANTO 11500.00 4 1350 \N +51749 2025-06-04 13:32:20.90658+00 2025-06-04 13:32:20.906592+00 f t SUBTOTAL 192500.00 1 1305 \N +50737 2025-06-04 03:39:10.384741+00 2025-06-04 03:39:10.384749+00 f t SUBTOTAL 42000.00 1 1291 \N +50738 2025-06-04 03:39:10.386236+00 2025-06-04 03:39:10.386243+00 f t DESCUENTO 0.00 2 1291 \N +50739 2025-06-04 03:39:10.387336+00 2025-06-04 03:39:10.387342+00 f t TOTAL 42000.00 3 1291 \N +50740 2025-06-04 03:39:10.388612+00 2025-06-04 03:39:10.388618+00 f t ADELANTO 9500.00 4 1291 \N +51750 2025-06-04 13:32:20.908746+00 2025-06-04 13:32:20.908757+00 f t DESCUENTO 0.00 2 1305 \N +51751 2025-06-04 13:32:20.910623+00 2025-06-04 13:32:20.910656+00 f t TOTAL 192500.00 3 1305 \N +51752 2025-06-04 13:32:20.912714+00 2025-06-04 13:32:20.912725+00 f t ADELANTO 84000.00 4 1305 \N +51808 2025-06-04 13:58:53.581715+00 2025-06-04 13:58:53.581722+00 f t ADELANTO 0.00 4 1308 \N +51821 2025-06-04 15:04:14.580874+00 2025-06-04 15:04:14.580902+00 f t SUBTOTAL 0.00 1 1310 \N +51822 2025-06-04 15:04:14.585657+00 2025-06-04 15:04:14.585667+00 f t DESCUENTO 0.00 2 1310 \N +51823 2025-06-04 15:04:14.587546+00 2025-06-04 15:04:14.587554+00 f t TOTAL 0.00 3 1310 \N +51824 2025-06-04 15:04:14.589201+00 2025-06-04 15:04:14.589208+00 f t ADELANTO 0.00 4 1310 \N +64849 2025-06-11 11:22:38.172603+00 2025-06-11 11:22:38.172613+00 f t SUBTOTAL 50000.00 1 1684 \N +51121 2025-06-04 05:51:16.900117+00 2025-06-04 05:51:16.900126+00 f t SUBTOTAL 88500.00 1 1295 \N +51122 2025-06-04 05:51:16.901676+00 2025-06-04 05:51:16.901683+00 f t DESCUENTO 0.00 2 1295 \N +51123 2025-06-04 05:51:16.903183+00 2025-06-04 05:51:16.903189+00 f t TOTAL 88500.00 3 1295 \N +51124 2025-06-04 05:51:16.904302+00 2025-06-04 05:51:16.904307+00 f t ADELANTO 19000.00 4 1295 \N +56274 2025-06-07 11:09:44.388756+00 2025-06-07 11:09:44.388843+00 f t DESCUENTO 0.00 2 1446 \N +56275 2025-06-07 11:09:44.39009+00 2025-06-07 11:09:44.390096+00 f t TOTAL 42000.00 3 1446 \N +56276 2025-06-07 11:09:44.391287+00 2025-06-07 11:09:44.391293+00 f t ADELANTO 9500.00 4 1446 \N +52473 2025-06-04 18:44:16.351847+00 2025-06-04 18:44:16.351857+00 f t SUBTOTAL 0.00 1 1328 \N +52474 2025-06-04 18:44:16.353279+00 2025-06-04 18:44:16.353287+00 f t DESCUENTO 0.00 2 1328 \N +52475 2025-06-04 18:44:16.354359+00 2025-06-04 18:44:16.354365+00 f t TOTAL 0.00 3 1328 \N +52476 2025-06-04 18:44:16.355318+00 2025-06-04 18:44:16.355325+00 f t ADELANTO 0.00 4 1328 \N +51241 2025-06-04 09:19:19.387425+00 2025-06-04 09:19:19.387438+00 f t SUBTOTAL 0.00 1 1297 \N +51242 2025-06-04 09:19:19.389428+00 2025-06-04 09:19:19.389438+00 f t DESCUENTO 0.00 2 1297 \N +51243 2025-06-04 09:19:19.390713+00 2025-06-04 09:19:19.390722+00 f t TOTAL 0.00 3 1297 \N +51244 2025-06-04 09:19:19.391985+00 2025-06-04 09:19:19.391993+00 f t ADELANTO 0.00 4 1297 \N +52609 2025-06-04 20:47:36.006888+00 2025-06-04 20:47:36.006899+00 f t SUBTOTAL 70000.00 1 1332 \N +52610 2025-06-04 20:47:36.009175+00 2025-06-04 20:47:36.009187+00 f t DESCUENTO 0.00 2 1332 \N +52611 2025-06-04 20:47:36.010993+00 2025-06-04 20:47:36.011003+00 f t TOTAL 70000.00 3 1332 \N +52612 2025-06-04 20:47:36.012554+00 2025-06-04 20:47:36.012564+00 f t ADELANTO 10000.00 4 1332 \N +51377 2025-06-04 09:32:47.849569+00 2025-06-04 09:32:47.849579+00 f t SUBTOTAL 50000.00 1 1298 \N +51378 2025-06-04 09:32:47.851339+00 2025-06-04 09:32:47.851349+00 f t DESCUENTO 0.00 2 1298 \N +51379 2025-06-04 09:32:47.852809+00 2025-06-04 09:32:47.852816+00 f t TOTAL 50000.00 3 1298 \N +51380 2025-06-04 09:32:47.854254+00 2025-06-04 09:32:47.85426+00 f t ADELANTO 10000.00 4 1298 \N +52705 2025-06-04 21:14:34.286821+00 2025-06-04 21:14:34.286831+00 f t SUBTOTAL 0.00 1 1336 \N +52706 2025-06-04 21:14:34.288555+00 2025-06-04 21:14:34.288565+00 f t DESCUENTO 0.00 2 1336 \N +52707 2025-06-04 21:14:34.289986+00 2025-06-04 21:14:34.289994+00 f t TOTAL 0.00 3 1336 \N +52708 2025-06-04 21:14:34.291417+00 2025-06-04 21:14:34.291423+00 f t ADELANTO 0.00 4 1336 \N +52821 2025-06-04 22:07:05.803037+00 2025-06-04 22:07:05.803047+00 f t SUBTOTAL 129700.00 1 1339 \N +52822 2025-06-04 22:07:05.805186+00 2025-06-04 22:07:05.805198+00 f t DESCUENTO 0.00 2 1339 \N +52823 2025-06-04 22:07:05.807278+00 2025-06-04 22:07:05.807288+00 f t TOTAL 129700.00 3 1339 \N +52824 2025-06-04 22:07:05.809178+00 2025-06-04 22:07:05.809189+00 f t ADELANTO 76700.00 4 1339 \N +51533 2025-06-04 12:00:58.552944+00 2025-06-04 12:00:58.552959+00 f t SUBTOTAL 111000.00 1 1299 \N +51534 2025-06-04 12:00:58.556038+00 2025-06-04 12:00:58.556051+00 f t DESCUENTO 0.00 2 1299 \N +51535 2025-06-04 12:00:58.558325+00 2025-06-04 12:00:58.558337+00 f t TOTAL 111000.00 3 1299 \N +51536 2025-06-04 12:00:58.56048+00 2025-06-04 12:00:58.560491+00 f t ADELANTO 23500.00 4 1299 \N +51613 2025-06-04 12:51:00.819331+00 2025-06-04 12:51:00.819341+00 f t SUBTOTAL 0.00 1 1302 \N +51614 2025-06-04 12:51:00.821463+00 2025-06-04 12:51:00.821474+00 f t DESCUENTO 0.00 2 1302 \N +50953 2025-06-04 03:53:41.491945+00 2025-06-04 03:53:41.491953+00 f t SUBTOTAL 49700.00 1 1292 \N +50954 2025-06-04 03:53:41.493552+00 2025-06-04 03:53:41.493559+00 f t DESCUENTO 0.00 2 1292 \N +50955 2025-06-04 03:53:41.494829+00 2025-06-04 03:53:41.494834+00 f t TOTAL 49700.00 3 1292 \N +50956 2025-06-04 03:53:41.496209+00 2025-06-04 03:53:41.496215+00 f t ADELANTO 11700.00 4 1292 \N +51615 2025-06-04 12:51:00.822937+00 2025-06-04 12:51:00.822946+00 f t TOTAL 0.00 3 1302 \N +51616 2025-06-04 12:51:00.824328+00 2025-06-04 12:51:00.824334+00 f t ADELANTO 0.00 4 1302 \N +51665 2025-06-04 12:52:25.544628+00 2025-06-04 12:52:25.544638+00 f t SUBTOTAL 49500.00 1 1304 \N +51666 2025-06-04 12:52:25.546395+00 2025-06-04 12:52:25.546402+00 f t DESCUENTO 0.00 2 1304 \N +51667 2025-06-04 12:52:25.547662+00 2025-06-04 12:52:25.547667+00 f t TOTAL 49500.00 3 1304 \N +51668 2025-06-04 12:52:25.548742+00 2025-06-04 12:52:25.548747+00 f t ADELANTO 11500.00 4 1304 \N +50981 2025-06-04 05:37:57.020718+00 2025-06-04 05:37:57.020727+00 f t SUBTOTAL 42000.00 1 1293 \N +50982 2025-06-04 05:37:57.022352+00 2025-06-04 05:37:57.022359+00 f t DESCUENTO 0.00 2 1293 \N +50983 2025-06-04 05:37:57.023572+00 2025-06-04 05:37:57.023577+00 f t TOTAL 42000.00 3 1293 \N +50984 2025-06-04 05:37:57.024544+00 2025-06-04 05:37:57.02455+00 f t ADELANTO 9500.00 4 1293 \N +51781 2025-06-04 13:38:11.594034+00 2025-06-04 13:38:11.594046+00 f t SUBTOTAL 50000.00 1 1306 \N +51782 2025-06-04 13:38:11.595779+00 2025-06-04 13:38:11.595786+00 f t DESCUENTO 0.00 2 1306 \N +51783 2025-06-04 13:38:11.597066+00 2025-06-04 13:38:11.597072+00 f t TOTAL 50000.00 3 1306 \N +51784 2025-06-04 13:38:11.598243+00 2025-06-04 13:38:11.598249+00 f t ADELANTO 10000.00 4 1306 \N +51797 2025-06-04 13:41:51.10763+00 2025-06-04 13:41:51.107644+00 f t SUBTOTAL 0.00 1 1307 \N +51798 2025-06-04 13:41:51.110435+00 2025-06-04 13:41:51.110445+00 f t DESCUENTO 0.00 2 1307 \N +51799 2025-06-04 13:41:51.112073+00 2025-06-04 13:41:51.112082+00 f t TOTAL 0.00 3 1307 \N +51800 2025-06-04 13:41:51.113368+00 2025-06-04 13:41:51.113374+00 f t ADELANTO 0.00 4 1307 \N +51813 2025-06-04 14:01:06.575909+00 2025-06-04 14:01:06.57592+00 f t SUBTOTAL 0.00 1 1309 \N +51814 2025-06-04 14:01:06.578437+00 2025-06-04 14:01:06.578452+00 f t DESCUENTO 0.00 2 1309 \N +51029 2025-06-04 05:39:44.350608+00 2025-06-04 05:39:44.350616+00 f t SUBTOTAL 50000.00 1 1294 \N +51030 2025-06-04 05:39:44.352292+00 2025-06-04 05:39:44.3523+00 f t DESCUENTO 0.00 2 1294 \N +51031 2025-06-04 05:39:44.353761+00 2025-06-04 05:39:44.353768+00 f t TOTAL 50000.00 3 1294 \N +51032 2025-06-04 05:39:44.355033+00 2025-06-04 05:39:44.355039+00 f t ADELANTO 10000.00 4 1294 \N +51815 2025-06-04 14:01:06.581111+00 2025-06-04 14:01:06.581125+00 f t TOTAL 0.00 3 1309 \N +51816 2025-06-04 14:01:06.583262+00 2025-06-04 14:01:06.583274+00 f t ADELANTO 0.00 4 1309 \N +51829 2025-06-04 15:18:45.820555+00 2025-06-04 15:18:45.820569+00 f t SUBTOTAL 0.00 1 1311 \N +51830 2025-06-04 15:18:45.822236+00 2025-06-04 15:18:45.822245+00 f t DESCUENTO 0.00 2 1311 \N +51831 2025-06-04 15:18:45.823838+00 2025-06-04 15:18:45.823847+00 f t TOTAL 0.00 3 1311 \N +51832 2025-06-04 15:18:45.825308+00 2025-06-04 15:18:45.825317+00 f t ADELANTO 0.00 4 1311 \N +51857 2025-06-04 15:21:21.202454+00 2025-06-04 15:21:21.202466+00 f t SUBTOTAL 49500.00 1 1312 \N +51858 2025-06-04 15:21:21.20473+00 2025-06-04 15:21:21.204741+00 f t DESCUENTO 0.00 2 1312 \N +51859 2025-06-04 15:21:21.206471+00 2025-06-04 15:21:21.206478+00 f t TOTAL 49500.00 3 1312 \N +51860 2025-06-04 15:21:21.2079+00 2025-06-04 15:21:21.207909+00 f t ADELANTO 11500.00 4 1312 \N +51885 2025-06-04 15:35:25.125074+00 2025-06-04 15:35:25.125084+00 f t SUBTOTAL 49500.00 1 1313 \N +51886 2025-06-04 15:35:25.126739+00 2025-06-04 15:35:25.126746+00 f t DESCUENTO 0.00 2 1313 \N +51887 2025-06-04 15:35:25.128294+00 2025-06-04 15:35:25.128302+00 f t TOTAL 49500.00 3 1313 \N +51888 2025-06-04 15:35:25.129775+00 2025-06-04 15:35:25.129787+00 f t ADELANTO 11500.00 4 1313 \N +52445 2025-06-04 18:17:18.235874+00 2025-06-04 18:17:18.235897+00 f t SUBTOTAL 0.00 1 1326 \N +52446 2025-06-04 18:17:18.237933+00 2025-06-04 18:17:18.23794+00 f t DESCUENTO 0.00 2 1326 \N +52447 2025-06-04 18:17:18.238975+00 2025-06-04 18:17:18.238981+00 f t TOTAL 0.00 3 1326 \N +52448 2025-06-04 18:17:18.239909+00 2025-06-04 18:17:18.239914+00 f t ADELANTO 0.00 4 1326 \N +51925 2025-06-04 15:37:53.700702+00 2025-06-04 15:37:53.700714+00 f t SUBTOTAL 72000.00 1 1314 \N +51926 2025-06-04 15:37:53.703179+00 2025-06-04 15:37:53.703187+00 f t DESCUENTO 0.00 2 1314 \N +51927 2025-06-04 15:37:53.704885+00 2025-06-04 15:37:53.704893+00 f t TOTAL 72000.00 3 1314 \N +51928 2025-06-04 15:37:53.706241+00 2025-06-04 15:37:53.706248+00 f t ADELANTO 19000.00 4 1314 \N +53673 2025-06-05 11:51:45.282239+00 2025-06-05 11:51:45.282254+00 f t SUBTOTAL 0.00 1 1368 \N +53674 2025-06-05 11:51:45.284993+00 2025-06-05 11:51:45.285007+00 f t DESCUENTO 0.00 2 1368 \N +53675 2025-06-05 11:51:45.287243+00 2025-06-05 11:51:45.287256+00 f t TOTAL 0.00 3 1368 \N +53676 2025-06-05 11:51:45.289754+00 2025-06-05 11:51:45.289768+00 f t ADELANTO 0.00 4 1368 \N +51953 2025-06-04 15:43:31.181678+00 2025-06-04 15:43:31.181687+00 f t SUBTOTAL 117000.00 1 1315 \N +51954 2025-06-04 15:43:31.18455+00 2025-06-04 15:43:31.18456+00 f t DESCUENTO 0.00 2 1315 \N +51955 2025-06-04 15:43:31.187389+00 2025-06-04 15:43:31.187399+00 f t TOTAL 117000.00 3 1315 \N +51956 2025-06-04 15:43:31.189142+00 2025-06-04 15:43:31.189149+00 f t ADELANTO 24500.00 4 1315 \N +52617 2025-06-04 21:07:16.873292+00 2025-06-04 21:07:16.873304+00 f t SUBTOTAL 0.00 1 1333 \N +52618 2025-06-04 21:07:16.875169+00 2025-06-04 21:07:16.87518+00 f t DESCUENTO 0.00 2 1333 \N +52619 2025-06-04 21:07:16.876715+00 2025-06-04 21:07:16.876724+00 f t TOTAL 0.00 3 1333 \N +52620 2025-06-04 21:07:16.878011+00 2025-06-04 21:07:16.87802+00 f t ADELANTO 0.00 4 1333 \N +52661 2025-06-04 21:09:27.81292+00 2025-06-04 21:09:27.812929+00 f t SUBTOTAL 70000.00 1 1334 \N +52662 2025-06-04 21:09:27.814557+00 2025-06-04 21:09:27.814564+00 f t DESCUENTO 0.00 2 1334 \N +52663 2025-06-04 21:09:27.81593+00 2025-06-04 21:09:27.815938+00 f t TOTAL 70000.00 3 1334 \N +52664 2025-06-04 21:09:27.81724+00 2025-06-04 21:09:27.817247+00 f t ADELANTO 10000.00 4 1334 \N +53741 2025-06-05 14:05:56.57528+00 2025-06-05 14:05:56.57529+00 f t SUBTOTAL 0.00 1 1370 \N +53742 2025-06-05 14:05:56.577452+00 2025-06-05 14:05:56.577465+00 f t DESCUENTO 0.00 2 1370 \N +53743 2025-06-05 14:05:56.579388+00 2025-06-05 14:05:56.579397+00 f t TOTAL 0.00 3 1370 \N +53744 2025-06-05 14:05:56.581007+00 2025-06-05 14:05:56.581015+00 f t ADELANTO 0.00 4 1370 \N +53769 2025-06-05 14:44:50.575966+00 2025-06-05 14:44:50.575976+00 f t SUBTOTAL 64500.00 1 1371 \N +53770 2025-06-05 14:44:50.578003+00 2025-06-05 14:44:50.578014+00 f t DESCUENTO 0.00 2 1371 \N +53771 2025-06-05 14:44:50.579305+00 2025-06-05 14:44:50.579315+00 f t TOTAL 64500.00 3 1371 \N +53772 2025-06-05 14:44:50.58076+00 2025-06-05 14:44:50.580768+00 f t ADELANTO 17000.00 4 1371 \N +53797 2025-06-05 15:01:16.744662+00 2025-06-05 15:01:16.744672+00 f t SUBTOTAL 70000.00 1 1372 \N +53798 2025-06-05 15:01:16.747679+00 2025-06-05 15:01:16.747692+00 f t DESCUENTO 0.00 2 1372 \N +53799 2025-06-05 15:01:16.749851+00 2025-06-05 15:01:16.74986+00 f t TOTAL 70000.00 3 1372 \N +51997 2025-06-04 15:45:24.99167+00 2025-06-04 15:45:24.991682+00 f t SUBTOTAL 49500.00 1 1316 \N +51998 2025-06-04 15:45:24.994135+00 2025-06-04 15:45:24.994146+00 f t DESCUENTO 0.00 2 1316 \N +51999 2025-06-04 15:45:24.995977+00 2025-06-04 15:45:24.995988+00 f t TOTAL 49500.00 3 1316 \N +52000 2025-06-04 15:45:24.997596+00 2025-06-04 15:45:24.997605+00 f t ADELANTO 11500.00 4 1316 \N +53800 2025-06-05 15:01:16.751589+00 2025-06-05 15:01:16.751597+00 f t ADELANTO 10000.00 4 1372 \N +52861 2025-06-04 22:23:48.722183+00 2025-06-04 22:23:48.722195+00 f t SUBTOTAL 64500.00 1 1340 \N +52862 2025-06-04 22:23:48.723975+00 2025-06-04 22:23:48.723985+00 f t DESCUENTO 0.00 2 1340 \N +52863 2025-06-04 22:23:48.725583+00 2025-06-04 22:23:48.725592+00 f t TOTAL 64500.00 3 1340 \N +52864 2025-06-04 22:23:48.726771+00 2025-06-04 22:23:48.726779+00 f t ADELANTO 17000.00 4 1340 \N +52949 2025-06-05 00:09:23.198351+00 2025-06-05 00:09:23.198363+00 f t SUBTOTAL 0.00 1 1343 \N +52950 2025-06-05 00:09:23.200785+00 2025-06-05 00:09:23.200798+00 f t DESCUENTO 0.00 2 1343 \N +52951 2025-06-05 00:09:23.202575+00 2025-06-05 00:09:23.202583+00 f t TOTAL 0.00 3 1343 \N +52041 2025-06-04 15:47:34.608475+00 2025-06-04 15:47:34.608485+00 f t SUBTOTAL 176000.00 1 1317 \N +52042 2025-06-04 15:47:34.610599+00 2025-06-04 15:47:34.61061+00 f t DESCUENTO 0.00 2 1317 \N +52043 2025-06-04 15:47:34.612844+00 2025-06-04 15:47:34.612856+00 f t TOTAL 176000.00 3 1317 \N +52044 2025-06-04 15:47:34.614702+00 2025-06-04 15:47:34.614712+00 f t ADELANTO 31000.00 4 1317 \N +52952 2025-06-05 00:09:23.204206+00 2025-06-05 00:09:23.204213+00 f t ADELANTO 0.00 4 1343 \N +52049 2025-06-04 16:11:38.303344+00 2025-06-04 16:11:38.303381+00 f t SUBTOTAL 0.00 1 1318 \N +52050 2025-06-04 16:11:38.305594+00 2025-06-04 16:11:38.305605+00 f t DESCUENTO 0.00 2 1318 \N +52051 2025-06-04 16:11:38.307406+00 2025-06-04 16:11:38.307417+00 f t TOTAL 0.00 3 1318 \N +52052 2025-06-04 16:11:38.309522+00 2025-06-04 16:11:38.309533+00 f t ADELANTO 0.00 4 1318 \N +53013 2025-06-05 01:38:24.17379+00 2025-06-05 01:38:24.1738+00 f t SUBTOTAL 0.00 1 1347 \N +53014 2025-06-05 01:38:24.175045+00 2025-06-05 01:38:24.175052+00 f t DESCUENTO 0.00 2 1347 \N +53015 2025-06-05 01:38:24.176241+00 2025-06-05 01:38:24.176248+00 f t TOTAL 0.00 3 1347 \N +53016 2025-06-05 01:38:24.177177+00 2025-06-05 01:38:24.177183+00 f t ADELANTO 0.00 4 1347 \N +52077 2025-06-04 16:15:17.401553+00 2025-06-04 16:15:17.401564+00 f t SUBTOTAL 0.00 1 1319 \N +52078 2025-06-04 16:15:17.404197+00 2025-06-04 16:15:17.404207+00 f t DESCUENTO 0.00 2 1319 \N +52079 2025-06-04 16:15:17.406007+00 2025-06-04 16:15:17.406015+00 f t TOTAL 0.00 3 1319 \N +52080 2025-06-04 16:15:17.407393+00 2025-06-04 16:15:17.407402+00 f t ADELANTO 0.00 4 1319 \N +52093 2025-06-04 16:15:37.496685+00 2025-06-04 16:15:37.496697+00 f t SUBTOTAL 0.00 1 1321 \N +52094 2025-06-04 16:15:37.4988+00 2025-06-04 16:15:37.498813+00 f t DESCUENTO 0.00 2 1321 \N +52095 2025-06-04 16:15:37.500581+00 2025-06-04 16:15:37.500591+00 f t TOTAL 0.00 3 1321 \N +52096 2025-06-04 16:15:37.502049+00 2025-06-04 16:15:37.502058+00 f t ADELANTO 0.00 4 1321 \N +53121 2025-06-05 02:46:13.724572+00 2025-06-05 02:46:13.724586+00 f t SUBTOTAL 0.00 1 1351 \N +53122 2025-06-05 02:46:13.727456+00 2025-06-05 02:46:13.727466+00 f t DESCUENTO 0.00 2 1351 \N +53123 2025-06-05 02:46:13.729189+00 2025-06-05 02:46:13.729197+00 f t TOTAL 0.00 3 1351 \N +53124 2025-06-05 02:46:13.730692+00 2025-06-05 02:46:13.7307+00 f t ADELANTO 0.00 4 1351 \N +53145 2025-06-05 03:55:03.869484+00 2025-06-05 03:55:03.869496+00 f t SUBTOTAL 0.00 1 1353 \N +53146 2025-06-05 03:55:03.871964+00 2025-06-05 03:55:03.871975+00 f t DESCUENTO 0.00 2 1353 \N +53147 2025-06-05 03:55:03.875526+00 2025-06-05 03:55:03.875541+00 f t TOTAL 0.00 3 1353 \N +53148 2025-06-05 03:55:03.878226+00 2025-06-05 03:55:03.87824+00 f t ADELANTO 0.00 4 1353 \N +52177 2025-06-04 16:21:15.43826+00 2025-06-04 16:21:15.438273+00 f t SUBTOTAL 144000.00 1 1320 \N +52178 2025-06-04 16:21:15.440804+00 2025-06-04 16:21:15.440817+00 f t DESCUENTO 0.00 2 1320 \N +52179 2025-06-04 16:21:15.44271+00 2025-06-04 16:21:15.442722+00 f t TOTAL 144000.00 3 1320 \N +52180 2025-06-04 16:21:15.444367+00 2025-06-04 16:21:15.444377+00 f t ADELANTO 38000.00 4 1320 \N +52185 2025-06-04 16:25:53.326831+00 2025-06-04 16:25:53.326845+00 f t SUBTOTAL 0.00 1 1322 \N +52186 2025-06-04 16:25:53.329157+00 2025-06-04 16:25:53.329168+00 f t DESCUENTO 0.00 2 1322 \N +52187 2025-06-04 16:25:53.331151+00 2025-06-04 16:25:53.331161+00 f t TOTAL 0.00 3 1322 \N +52188 2025-06-04 16:25:53.332682+00 2025-06-04 16:25:53.33269+00 f t ADELANTO 0.00 4 1322 \N +64850 2025-06-11 11:22:38.174995+00 2025-06-11 11:22:38.175004+00 f t DESCUENTO 0.00 2 1684 \N +59109 2025-06-08 14:31:17.222425+00 2025-06-08 14:31:17.222434+00 f t SUBTOTAL 42000.00 1 1520 \N +59110 2025-06-08 14:31:17.224161+00 2025-06-08 14:31:17.224169+00 f t DESCUENTO 0.00 2 1520 \N +59111 2025-06-08 14:31:17.225543+00 2025-06-08 14:31:17.225563+00 f t TOTAL 42000.00 3 1520 \N +59112 2025-06-08 14:31:17.226933+00 2025-06-08 14:31:17.226939+00 f t ADELANTO 9500.00 4 1520 \N +52481 2025-06-04 18:45:09.021164+00 2025-06-04 18:45:09.021178+00 f t SUBTOTAL 49500.00 1 1327 \N +52482 2025-06-04 18:45:09.023524+00 2025-06-04 18:45:09.023535+00 f t DESCUENTO 0.00 2 1327 \N +52483 2025-06-04 18:45:09.025149+00 2025-06-04 18:45:09.025157+00 f t TOTAL 49500.00 3 1327 \N +52484 2025-06-04 18:45:09.026549+00 2025-06-04 18:45:09.026559+00 f t ADELANTO 11500.00 4 1327 \N +55053 2025-06-06 17:03:08.508905+00 2025-06-06 17:03:08.508919+00 f t SUBTOTAL 0.00 1 1415 \N +55054 2025-06-06 17:03:08.510995+00 2025-06-06 17:03:08.511007+00 f t DESCUENTO 0.00 2 1415 \N +55055 2025-06-06 17:03:08.512683+00 2025-06-06 17:03:08.512693+00 f t TOTAL 0.00 3 1415 \N +55056 2025-06-06 17:03:08.514266+00 2025-06-06 17:03:08.514274+00 f t ADELANTO 0.00 4 1415 \N +55085 2025-06-06 18:14:54.27709+00 2025-06-06 18:14:54.277103+00 f t SUBTOTAL 0.00 1 1418 \N +55086 2025-06-06 18:14:54.278803+00 2025-06-06 18:14:54.278811+00 f t DESCUENTO 0.00 2 1418 \N +55087 2025-06-06 18:14:54.280403+00 2025-06-06 18:14:54.28041+00 f t TOTAL 0.00 3 1418 \N +55088 2025-06-06 18:14:54.281775+00 2025-06-06 18:14:54.281782+00 f t ADELANTO 0.00 4 1418 \N +55257 2025-06-06 18:57:02.263742+00 2025-06-06 18:57:02.263752+00 f t SUBTOTAL 70000.00 1 1421 \N +55258 2025-06-06 18:57:02.266233+00 2025-06-06 18:57:02.266243+00 f t DESCUENTO 0.00 2 1421 \N +55259 2025-06-06 18:57:02.268127+00 2025-06-06 18:57:02.268136+00 f t TOTAL 70000.00 3 1421 \N +55260 2025-06-06 18:57:02.269985+00 2025-06-06 18:57:02.269994+00 f t ADELANTO 15000.00 4 1421 \N +52761 2025-06-04 21:56:54.098961+00 2025-06-04 21:56:54.098974+00 f t SUBTOTAL 0.00 1 1338 \N +52762 2025-06-04 21:56:54.101332+00 2025-06-04 21:56:54.101342+00 f t DESCUENTO 0.00 2 1338 \N +52763 2025-06-04 21:56:54.102623+00 2025-06-04 21:56:54.102632+00 f t TOTAL 0.00 3 1338 \N +52764 2025-06-04 21:56:54.10401+00 2025-06-04 21:56:54.104016+00 f t ADELANTO 0.00 4 1338 \N +52933 2025-06-04 23:22:47.766304+00 2025-06-04 23:22:47.766316+00 f t SUBTOTAL 49500.00 1 1341 \N +52934 2025-06-04 23:22:47.76822+00 2025-06-04 23:22:47.768231+00 f t DESCUENTO 0.00 2 1341 \N +52935 2025-06-04 23:22:47.769635+00 2025-06-04 23:22:47.769641+00 f t TOTAL 49500.00 3 1341 \N +52936 2025-06-04 23:22:47.77107+00 2025-06-04 23:22:47.771077+00 f t ADELANTO 11500.00 4 1341 \N +53889 2025-06-05 17:07:18.646722+00 2025-06-05 17:07:18.646735+00 f t SUBTOTAL 0.00 1 1376 \N +53890 2025-06-05 17:07:18.64843+00 2025-06-05 17:07:18.648439+00 f t DESCUENTO 0.00 2 1376 \N +53891 2025-06-05 17:07:18.650035+00 2025-06-05 17:07:18.650041+00 f t TOTAL 0.00 3 1376 \N +53892 2025-06-05 17:07:18.651437+00 2025-06-05 17:07:18.651444+00 f t ADELANTO 0.00 4 1376 \N +52957 2025-06-05 00:12:04.722979+00 2025-06-05 00:12:04.722992+00 f t SUBTOTAL 0.00 1 1344 \N +52958 2025-06-05 00:12:04.727268+00 2025-06-05 00:12:04.727281+00 f t DESCUENTO 0.00 2 1344 \N +52959 2025-06-05 00:12:04.730248+00 2025-06-05 00:12:04.730261+00 f t TOTAL 0.00 3 1344 \N +52960 2025-06-05 00:12:04.732957+00 2025-06-05 00:12:04.732967+00 f t ADELANTO 0.00 4 1344 \N +55529 2025-06-06 23:49:49.02351+00 2025-06-06 23:49:49.023521+00 f t SUBTOTAL 64500.00 1 1427 \N +55530 2025-06-06 23:49:49.025562+00 2025-06-06 23:49:49.025574+00 f t DESCUENTO 0.00 2 1427 \N +55531 2025-06-06 23:49:49.02731+00 2025-06-06 23:49:49.027317+00 f t TOTAL 64500.00 3 1427 \N +55532 2025-06-06 23:49:49.028629+00 2025-06-06 23:49:49.028636+00 f t ADELANTO 17000.00 4 1427 \N +53045 2025-06-05 01:42:40.236202+00 2025-06-05 01:42:40.236213+00 f t SUBTOTAL 57000.00 1 1348 \N +53046 2025-06-05 01:42:40.238323+00 2025-06-05 01:42:40.238335+00 f t DESCUENTO 0.00 2 1348 \N +53047 2025-06-05 01:42:40.239889+00 2025-06-05 01:42:40.239896+00 f t TOTAL 57000.00 3 1348 \N +53048 2025-06-05 01:42:40.241179+00 2025-06-05 01:42:40.241185+00 f t ADELANTO 12000.00 4 1348 \N +53949 2025-06-05 17:25:57.807328+00 2025-06-05 17:25:57.807337+00 f t SUBTOTAL 57400.00 1 1377 \N +53950 2025-06-05 17:25:57.809076+00 2025-06-05 17:25:57.809086+00 f t DESCUENTO 0.00 2 1377 \N +53951 2025-06-05 17:25:57.810408+00 2025-06-05 17:25:57.810414+00 f t TOTAL 57400.00 3 1377 \N +53952 2025-06-05 17:25:57.811664+00 2025-06-05 17:25:57.811669+00 f t ADELANTO 13900.00 4 1377 \N +53137 2025-06-05 02:46:43.930397+00 2025-06-05 02:46:43.93041+00 f t SUBTOTAL 0.00 1 1352 \N +53138 2025-06-05 02:46:43.93368+00 2025-06-05 02:46:43.933692+00 f t DESCUENTO 0.00 2 1352 \N +53139 2025-06-05 02:46:43.936153+00 2025-06-05 02:46:43.936166+00 f t TOTAL 0.00 3 1352 \N +53140 2025-06-05 02:46:43.938729+00 2025-06-05 02:46:43.938741+00 f t ADELANTO 0.00 4 1352 \N +53153 2025-06-05 03:55:47.574464+00 2025-06-05 03:55:47.574478+00 f t SUBTOTAL 0.00 1 1354 \N +53154 2025-06-05 03:55:47.576888+00 2025-06-05 03:55:47.576897+00 f t DESCUENTO 0.00 2 1354 \N +53155 2025-06-05 03:55:47.578762+00 2025-06-05 03:55:47.57877+00 f t TOTAL 0.00 3 1354 \N +53156 2025-06-05 03:55:47.580211+00 2025-06-05 03:55:47.580219+00 f t ADELANTO 0.00 4 1354 \N +53169 2025-06-05 04:14:27.538419+00 2025-06-05 04:14:27.538433+00 f t SUBTOTAL 0.00 1 1356 \N +53170 2025-06-05 04:14:27.540612+00 2025-06-05 04:14:27.540624+00 f t DESCUENTO 0.00 2 1356 \N +53171 2025-06-05 04:14:27.542431+00 2025-06-05 04:14:27.542442+00 f t TOTAL 0.00 3 1356 \N +53172 2025-06-05 04:14:27.543952+00 2025-06-05 04:14:27.543962+00 f t ADELANTO 0.00 4 1356 \N +54057 2025-06-05 18:09:31.083015+00 2025-06-05 18:09:31.083031+00 f t SUBTOTAL 0.00 1 1378 \N +54058 2025-06-05 18:09:31.085725+00 2025-06-05 18:09:31.085734+00 f t DESCUENTO 0.00 2 1378 \N +54059 2025-06-05 18:09:31.087553+00 2025-06-05 18:09:31.087564+00 f t TOTAL 0.00 3 1378 \N +54060 2025-06-05 18:09:31.089524+00 2025-06-05 18:09:31.089532+00 f t ADELANTO 0.00 4 1378 \N +53217 2025-06-05 04:15:44.171003+00 2025-06-05 04:15:44.171016+00 f t SUBTOTAL 42000.00 1 1355 \N +53218 2025-06-05 04:15:44.173176+00 2025-06-05 04:15:44.173189+00 f t DESCUENTO 0.00 2 1355 \N +53219 2025-06-05 04:15:44.175224+00 2025-06-05 04:15:44.175235+00 f t TOTAL 42000.00 3 1355 \N +53220 2025-06-05 04:15:44.177305+00 2025-06-05 04:15:44.177317+00 f t ADELANTO 9500.00 4 1355 \N +54093 2025-06-05 18:30:18.292899+00 2025-06-05 18:30:18.292912+00 f t SUBTOTAL 42000.00 1 1379 \N +54094 2025-06-05 18:30:18.295169+00 2025-06-05 18:30:18.295181+00 f t DESCUENTO 0.00 2 1379 \N +54095 2025-06-05 18:30:18.297003+00 2025-06-05 18:30:18.297015+00 f t TOTAL 42000.00 3 1379 \N +54096 2025-06-05 18:30:18.298562+00 2025-06-05 18:30:18.298572+00 f t ADELANTO 9500.00 4 1379 \N +54137 2025-06-05 18:50:52.965844+00 2025-06-05 18:50:52.965857+00 f t SUBTOTAL 0.00 1 1380 \N +54138 2025-06-05 18:50:52.968477+00 2025-06-05 18:50:52.968491+00 f t DESCUENTO 0.00 2 1380 \N +54139 2025-06-05 18:50:52.970485+00 2025-06-05 18:50:52.970498+00 f t TOTAL 0.00 3 1380 \N +64851 2025-06-11 11:22:38.176627+00 2025-06-11 11:22:38.176636+00 f t TOTAL 50000.00 3 1684 \N +53577 2025-06-05 10:57:39.891651+00 2025-06-05 10:57:39.891665+00 f t SUBTOTAL 42000.00 1 1366 \N +53578 2025-06-05 10:57:39.894141+00 2025-06-05 10:57:39.894155+00 f t DESCUENTO 0.00 2 1366 \N +53579 2025-06-05 10:57:39.896644+00 2025-06-05 10:57:39.896658+00 f t TOTAL 42000.00 3 1366 \N +53580 2025-06-05 10:57:39.898849+00 2025-06-05 10:57:39.898862+00 f t ADELANTO 9500.00 4 1366 \N +54957 2025-06-06 13:35:40.521302+00 2025-06-06 13:35:40.521312+00 f t SUBTOTAL 49500.00 1 1410 \N +54958 2025-06-06 13:35:40.523424+00 2025-06-06 13:35:40.523432+00 f t DESCUENTO 0.00 2 1410 \N +54959 2025-06-06 13:35:40.525145+00 2025-06-06 13:35:40.525153+00 f t TOTAL 49500.00 3 1410 \N +54960 2025-06-06 13:35:40.526768+00 2025-06-06 13:35:40.526775+00 f t ADELANTO 11500.00 4 1410 \N +53653 2025-06-05 11:25:22.175663+00 2025-06-05 11:25:22.175677+00 f t SUBTOTAL 0.00 1 1367 \N +53654 2025-06-05 11:25:22.178366+00 2025-06-05 11:25:22.178379+00 f t DESCUENTO 0.00 2 1367 \N +53301 2025-06-05 04:19:57.375375+00 2025-06-05 04:19:57.375384+00 f t SUBTOTAL 27500.00 1 1357 \N +53302 2025-06-05 04:19:57.377191+00 2025-06-05 04:19:57.377199+00 f t DESCUENTO 0.00 2 1357 \N +53303 2025-06-05 04:19:57.378723+00 2025-06-05 04:19:57.378732+00 f t TOTAL 27500.00 3 1357 \N +53304 2025-06-05 04:19:57.380069+00 2025-06-05 04:19:57.380075+00 f t ADELANTO 27500.00 4 1357 \N +53655 2025-06-05 11:25:22.180093+00 2025-06-05 11:25:22.180104+00 f t TOTAL 0.00 3 1367 \N +53656 2025-06-05 11:25:22.182026+00 2025-06-05 11:25:22.182036+00 f t ADELANTO 0.00 4 1367 \N +55001 2025-06-06 14:47:00.279736+00 2025-06-06 14:47:00.27975+00 f t SUBTOTAL 57000.00 1 1411 \N +55002 2025-06-06 14:47:00.281686+00 2025-06-06 14:47:00.281693+00 f t DESCUENTO 0.00 2 1411 \N +53309 2025-06-05 04:24:36.783656+00 2025-06-05 04:24:36.783665+00 f t SUBTOTAL 0.00 1 1358 \N +53310 2025-06-05 04:24:36.78531+00 2025-06-05 04:24:36.785321+00 f t DESCUENTO 0.00 2 1358 \N +53311 2025-06-05 04:24:36.787287+00 2025-06-05 04:24:36.7873+00 f t TOTAL 0.00 3 1358 \N +53312 2025-06-05 04:24:36.789311+00 2025-06-05 04:24:36.789322+00 f t ADELANTO 0.00 4 1358 \N +55003 2025-06-06 14:47:00.283255+00 2025-06-06 14:47:00.283265+00 f t TOTAL 57000.00 3 1411 \N +55004 2025-06-06 14:47:00.284724+00 2025-06-06 14:47:00.28473+00 f t ADELANTO 12000.00 4 1411 \N +53733 2025-06-05 13:48:24.360285+00 2025-06-05 13:48:24.360294+00 f t SUBTOTAL 0.00 1 1369 \N +53734 2025-06-05 13:48:24.362259+00 2025-06-05 13:48:24.362271+00 f t DESCUENTO 0.00 2 1369 \N +53735 2025-06-05 13:48:24.363957+00 2025-06-05 13:48:24.363967+00 f t TOTAL 0.00 3 1369 \N +53736 2025-06-05 13:48:24.365419+00 2025-06-05 13:48:24.365428+00 f t ADELANTO 0.00 4 1369 \N +55093 2025-06-06 18:16:14.072607+00 2025-06-06 18:16:14.07262+00 f t SUBTOTAL 0.00 1 1419 \N +55094 2025-06-06 18:16:14.075899+00 2025-06-06 18:16:14.075914+00 f t DESCUENTO 0.00 2 1419 \N +55095 2025-06-06 18:16:14.078317+00 2025-06-06 18:16:14.078328+00 f t TOTAL 0.00 3 1419 \N +55096 2025-06-06 18:16:14.080444+00 2025-06-06 18:16:14.080454+00 f t ADELANTO 0.00 4 1419 \N +56481 2025-06-07 11:59:35.115035+00 2025-06-07 11:59:35.115048+00 f t SUBTOTAL 42000.00 1 1450 \N +56482 2025-06-07 11:59:35.117529+00 2025-06-07 11:59:35.117542+00 f t DESCUENTO 0.00 2 1450 \N +56483 2025-06-07 11:59:35.119939+00 2025-06-07 11:59:35.119949+00 f t TOTAL 42000.00 3 1450 \N +56484 2025-06-07 11:59:35.122419+00 2025-06-07 11:59:35.122432+00 f t ADELANTO 9500.00 4 1450 \N +53353 2025-06-05 04:39:13.125883+00 2025-06-05 04:39:13.125904+00 f t SUBTOTAL 0.00 1 1359 \N +53354 2025-06-05 04:39:13.12835+00 2025-06-05 04:39:13.128359+00 f t DESCUENTO 0.00 2 1359 \N +53355 2025-06-05 04:39:13.129902+00 2025-06-05 04:39:13.129913+00 f t TOTAL 0.00 3 1359 \N +53356 2025-06-05 04:39:13.132536+00 2025-06-05 04:39:13.132546+00 f t ADELANTO 0.00 4 1359 \N +53817 2025-06-05 15:16:36.449234+00 2025-06-05 15:16:36.449245+00 f t SUBTOTAL 0.00 1 1373 \N +53818 2025-06-05 15:16:36.451724+00 2025-06-05 15:16:36.451738+00 f t DESCUENTO 0.00 2 1373 \N +53819 2025-06-05 15:16:36.453487+00 2025-06-05 15:16:36.453498+00 f t TOTAL 0.00 3 1373 \N +53820 2025-06-05 15:16:36.456037+00 2025-06-05 15:16:36.456046+00 f t ADELANTO 0.00 4 1373 \N +53881 2025-06-05 16:11:59.308106+00 2025-06-05 16:11:59.30812+00 f t SUBTOTAL 0.00 1 1375 \N +53882 2025-06-05 16:11:59.310236+00 2025-06-05 16:11:59.310248+00 f t DESCUENTO 0.00 2 1375 \N +53883 2025-06-05 16:11:59.311983+00 2025-06-05 16:11:59.311994+00 f t TOTAL 0.00 3 1375 \N +53884 2025-06-05 16:11:59.313476+00 2025-06-05 16:11:59.313486+00 f t ADELANTO 0.00 4 1375 \N +53401 2025-06-05 05:46:54.311136+00 2025-06-05 05:46:54.311145+00 f t SUBTOTAL 112000.00 1 1360 \N +53402 2025-06-05 05:46:54.313277+00 2025-06-05 05:46:54.313287+00 f t DESCUENTO 0.00 2 1360 \N +53403 2025-06-05 05:46:54.3149+00 2025-06-05 05:46:54.314908+00 f t TOTAL 112000.00 3 1360 \N +53404 2025-06-05 05:46:54.316233+00 2025-06-05 05:46:54.31624+00 f t ADELANTO 24500.00 4 1360 \N +55413 2025-06-06 23:01:16.341638+00 2025-06-06 23:01:16.34165+00 f t SUBTOTAL 27500.00 1 1424 \N +55414 2025-06-06 23:01:16.343621+00 2025-06-06 23:01:16.343631+00 f t DESCUENTO 0.00 2 1424 \N +55415 2025-06-06 23:01:16.345114+00 2025-06-06 23:01:16.345122+00 f t TOTAL 27500.00 3 1424 \N +55416 2025-06-06 23:01:16.346449+00 2025-06-06 23:01:16.346457+00 f t ADELANTO 27500.00 4 1424 \N +53437 2025-06-05 05:59:47.496863+00 2025-06-05 05:59:47.496874+00 f t SUBTOTAL 82700.00 1 1361 \N +53438 2025-06-05 05:59:47.49947+00 2025-06-05 05:59:47.499481+00 f t DESCUENTO 0.00 2 1361 \N +53439 2025-06-05 05:59:47.501467+00 2025-06-05 05:59:47.501475+00 f t TOTAL 82700.00 3 1361 \N +53440 2025-06-05 05:59:47.503019+00 2025-06-05 05:59:47.503026+00 f t ADELANTO 44700.00 4 1361 \N +53465 2025-06-05 08:56:10.545285+00 2025-06-05 08:56:10.545297+00 f t SUBTOTAL 50000.00 1 1362 \N +53466 2025-06-05 08:56:10.547339+00 2025-06-05 08:56:10.547347+00 f t DESCUENTO 0.00 2 1362 \N +53467 2025-06-05 08:56:10.550638+00 2025-06-05 08:56:10.550647+00 f t TOTAL 50000.00 3 1362 \N +53468 2025-06-05 08:56:10.552273+00 2025-06-05 08:56:10.55228+00 f t ADELANTO 10000.00 4 1362 \N +53497 2025-06-05 08:57:22.951733+00 2025-06-05 08:57:22.951743+00 f t SUBTOTAL 50000.00 1 1363 \N +53498 2025-06-05 08:57:22.953776+00 2025-06-05 08:57:22.953784+00 f t DESCUENTO 0.00 2 1363 \N +53499 2025-06-05 08:57:22.955667+00 2025-06-05 08:57:22.955674+00 f t TOTAL 50000.00 3 1363 \N +53500 2025-06-05 08:57:22.957267+00 2025-06-05 08:57:22.957276+00 f t ADELANTO 10000.00 4 1363 \N +53505 2025-06-05 10:53:05.778698+00 2025-06-05 10:53:05.778709+00 f t SUBTOTAL 0.00 1 1364 \N +53506 2025-06-05 10:53:05.781535+00 2025-06-05 10:53:05.781545+00 f t DESCUENTO 0.00 2 1364 \N +53507 2025-06-05 10:53:05.784364+00 2025-06-05 10:53:05.784373+00 f t TOTAL 0.00 3 1364 \N +53508 2025-06-05 10:53:05.785989+00 2025-06-05 10:53:05.785997+00 f t ADELANTO 0.00 4 1364 \N +54140 2025-06-05 18:50:52.972409+00 2025-06-05 18:50:52.972422+00 f t ADELANTO 0.00 4 1380 \N +54145 2025-06-05 19:12:11.988527+00 2025-06-05 19:12:11.988537+00 f t SUBTOTAL 0.00 1 1381 \N +54146 2025-06-05 19:12:11.990524+00 2025-06-05 19:12:11.990531+00 f t DESCUENTO 0.00 2 1381 \N +54147 2025-06-05 19:12:11.992192+00 2025-06-05 19:12:11.992199+00 f t TOTAL 0.00 3 1381 \N +54148 2025-06-05 19:12:11.993721+00 2025-06-05 19:12:11.993729+00 f t ADELANTO 0.00 4 1381 \N +54149 2025-06-05 19:25:38.979084+00 2025-06-05 19:25:38.979098+00 f t SUBTOTAL 0.00 1 1215 \N +54150 2025-06-05 19:25:38.984983+00 2025-06-05 19:25:38.984992+00 f t DESCUENTO 0.00 2 1215 \N +54151 2025-06-05 19:25:38.986363+00 2025-06-05 19:25:38.986372+00 f t TOTAL 0.00 3 1215 \N +54152 2025-06-05 19:25:38.98792+00 2025-06-05 19:25:38.987927+00 f t ADELANTO 0.00 4 1215 \N +57621 2025-06-07 23:41:25.080791+00 2025-06-07 23:41:25.0808+00 f t SUBTOTAL 134500.00 1 1484 \N +57622 2025-06-07 23:41:25.082559+00 2025-06-07 23:41:25.082566+00 f t DESCUENTO 0.00 2 1484 \N +57623 2025-06-07 23:41:25.083811+00 2025-06-07 23:41:25.083819+00 f t TOTAL 134500.00 3 1484 \N +57624 2025-06-07 23:41:25.085001+00 2025-06-07 23:41:25.085007+00 f t ADELANTO 49500.00 4 1484 \N +54177 2025-06-05 19:38:30.061222+00 2025-06-05 19:38:30.061234+00 f t SUBTOTAL 27500.00 1 1382 \N +54178 2025-06-05 19:38:30.063465+00 2025-06-05 19:38:30.063475+00 f t DESCUENTO 0.00 2 1382 \N +54179 2025-06-05 19:38:30.065162+00 2025-06-05 19:38:30.065203+00 f t TOTAL 27500.00 3 1382 \N +54180 2025-06-05 19:38:30.066937+00 2025-06-05 19:38:30.066946+00 f t ADELANTO 27500.00 4 1382 \N +54185 2025-06-05 21:06:46.577651+00 2025-06-05 21:06:46.577662+00 f t SUBTOTAL 0.00 1 1383 \N +54186 2025-06-05 21:06:46.579278+00 2025-06-05 21:06:46.579285+00 f t DESCUENTO 0.00 2 1383 \N +54187 2025-06-05 21:06:46.580803+00 2025-06-05 21:06:46.580812+00 f t TOTAL 0.00 3 1383 \N +54188 2025-06-05 21:06:46.582404+00 2025-06-05 21:06:46.582414+00 f t ADELANTO 0.00 4 1383 \N +55009 2025-06-06 15:56:08.886876+00 2025-06-06 15:56:08.88689+00 f t SUBTOTAL 0.00 1 1412 \N +55010 2025-06-06 15:56:08.888893+00 2025-06-06 15:56:08.888904+00 f t DESCUENTO 0.00 2 1412 \N +55011 2025-06-06 15:56:08.890817+00 2025-06-06 15:56:08.890829+00 f t TOTAL 0.00 3 1412 \N +55012 2025-06-06 15:56:08.892659+00 2025-06-06 15:56:08.892671+00 f t ADELANTO 0.00 4 1412 \N +54201 2025-06-05 21:11:10.078689+00 2025-06-05 21:11:10.078699+00 f t SUBTOTAL 0.00 1 1384 \N +54202 2025-06-05 21:11:10.081248+00 2025-06-05 21:11:10.081259+00 f t DESCUENTO 0.00 2 1384 \N +54203 2025-06-05 21:11:10.082895+00 2025-06-05 21:11:10.082903+00 f t TOTAL 0.00 3 1384 \N +54204 2025-06-05 21:11:10.084581+00 2025-06-05 21:11:10.084589+00 f t ADELANTO 0.00 4 1384 \N +55141 2025-06-06 18:35:06.362681+00 2025-06-06 18:35:06.362693+00 f t SUBTOTAL 0.00 1 1420 \N +55142 2025-06-06 18:35:06.365789+00 2025-06-06 18:35:06.365802+00 f t DESCUENTO 0.00 2 1420 \N +55143 2025-06-06 18:35:06.367661+00 2025-06-06 18:35:06.367673+00 f t TOTAL 0.00 3 1420 \N +55144 2025-06-06 18:35:06.369609+00 2025-06-06 18:35:06.369619+00 f t ADELANTO 0.00 4 1420 \N +54229 2025-06-05 21:12:20.50869+00 2025-06-05 21:12:20.508704+00 f t SUBTOTAL 64500.00 1 1385 \N +54230 2025-06-05 21:12:20.510707+00 2025-06-05 21:12:20.510719+00 f t DESCUENTO 0.00 2 1385 \N +54231 2025-06-05 21:12:20.512466+00 2025-06-05 21:12:20.512479+00 f t TOTAL 64500.00 3 1385 \N +54232 2025-06-05 21:12:20.514154+00 2025-06-05 21:12:20.514164+00 f t ADELANTO 17000.00 4 1385 \N +55265 2025-06-06 19:11:47.025809+00 2025-06-06 19:11:47.025819+00 f t SUBTOTAL 50000.00 1 1374 \N +55266 2025-06-06 19:11:47.028028+00 2025-06-06 19:11:47.028037+00 f t DESCUENTO 0.00 2 1374 \N +55267 2025-06-06 19:11:47.029527+00 2025-06-06 19:11:47.029535+00 f t TOTAL 50000.00 3 1374 \N +55268 2025-06-06 19:11:47.031111+00 2025-06-06 19:11:47.031122+00 f t ADELANTO 10000.00 4 1374 \N +54277 2025-06-05 21:50:40.002687+00 2025-06-05 21:50:40.002697+00 f t SUBTOTAL 49500.00 1 1386 \N +54278 2025-06-05 21:50:40.004504+00 2025-06-05 21:50:40.004514+00 f t DESCUENTO 0.00 2 1386 \N +54279 2025-06-05 21:50:40.006466+00 2025-06-05 21:50:40.006478+00 f t TOTAL 49500.00 3 1386 \N +54280 2025-06-05 21:50:40.008387+00 2025-06-05 21:50:40.008396+00 f t ADELANTO 11500.00 4 1386 \N +55421 2025-06-06 23:24:57.02387+00 2025-06-06 23:24:57.02388+00 f t SUBTOTAL 0.00 1 1425 \N +55422 2025-06-06 23:24:57.025307+00 2025-06-06 23:24:57.025314+00 f t DESCUENTO 0.00 2 1425 \N +55423 2025-06-06 23:24:57.026471+00 2025-06-06 23:24:57.026478+00 f t TOTAL 0.00 3 1425 \N +55424 2025-06-06 23:24:57.027626+00 2025-06-06 23:24:57.027632+00 f t ADELANTO 0.00 4 1425 \N +55465 2025-06-06 23:31:31.225545+00 2025-06-06 23:31:31.225555+00 f t SUBTOTAL 0.00 1 1426 \N +55466 2025-06-06 23:31:31.227726+00 2025-06-06 23:31:31.227734+00 f t DESCUENTO 0.00 2 1426 \N +55467 2025-06-06 23:31:31.229232+00 2025-06-06 23:31:31.229239+00 f t TOTAL 0.00 3 1426 \N +55468 2025-06-06 23:31:31.230737+00 2025-06-06 23:31:31.230744+00 f t ADELANTO 0.00 4 1426 \N +54317 2025-06-05 22:22:52.5077+00 2025-06-05 22:22:52.507713+00 f t SUBTOTAL 50000.00 1 1387 \N +54318 2025-06-05 22:22:52.509931+00 2025-06-05 22:22:52.509945+00 f t DESCUENTO 0.00 2 1387 \N +54319 2025-06-05 22:22:52.511739+00 2025-06-05 22:22:52.51175+00 f t TOTAL 50000.00 3 1387 \N +54320 2025-06-05 22:22:52.513417+00 2025-06-05 22:22:52.513427+00 f t ADELANTO 10000.00 4 1387 \N +54325 2025-06-05 22:28:48.606302+00 2025-06-05 22:28:48.606314+00 f t SUBTOTAL 0.00 1 1388 \N +54326 2025-06-05 22:28:48.608453+00 2025-06-05 22:28:48.608467+00 f t DESCUENTO 0.00 2 1388 \N +54327 2025-06-05 22:28:48.610721+00 2025-06-05 22:28:48.610734+00 f t TOTAL 0.00 3 1388 \N +54328 2025-06-05 22:28:48.612706+00 2025-06-05 22:28:48.61272+00 f t ADELANTO 0.00 4 1388 \N +55585 2025-06-07 00:21:53.774782+00 2025-06-07 00:21:53.774795+00 f t SUBTOTAL 0.00 1 1430 \N +55586 2025-06-07 00:21:53.777448+00 2025-06-07 00:21:53.777459+00 f t DESCUENTO 0.00 2 1430 \N +55587 2025-06-07 00:21:53.779403+00 2025-06-07 00:21:53.779414+00 f t TOTAL 0.00 3 1430 \N +55588 2025-06-07 00:21:53.781607+00 2025-06-07 00:21:53.781618+00 f t ADELANTO 0.00 4 1430 \N +55613 2025-06-07 00:27:24.590242+00 2025-06-07 00:27:24.590251+00 f t SUBTOTAL 42000.00 1 1431 \N +55614 2025-06-07 00:27:24.594395+00 2025-06-07 00:27:24.594403+00 f t DESCUENTO 0.00 2 1431 \N +55615 2025-06-07 00:27:24.597764+00 2025-06-07 00:27:24.597776+00 f t TOTAL 42000.00 3 1431 \N +55616 2025-06-07 00:27:24.599443+00 2025-06-07 00:27:24.59945+00 f t ADELANTO 9500.00 4 1431 \N +54345 2025-06-05 22:31:36.260785+00 2025-06-05 22:31:36.260799+00 f t SUBTOTAL 0.00 1 1389 \N +54346 2025-06-05 22:31:36.263012+00 2025-06-05 22:31:36.263022+00 f t DESCUENTO 0.00 2 1389 \N +54347 2025-06-05 22:31:36.264609+00 2025-06-05 22:31:36.264618+00 f t TOTAL 0.00 3 1389 \N +54348 2025-06-05 22:31:36.266025+00 2025-06-05 22:31:36.266032+00 f t ADELANTO 0.00 4 1389 \N +54393 2025-06-05 22:45:29.356841+00 2025-06-05 22:45:29.356854+00 f t SUBTOTAL 110500.00 1 1390 \N +54394 2025-06-05 22:45:29.358976+00 2025-06-05 22:45:29.35899+00 f t DESCUENTO 0.00 2 1390 \N +54395 2025-06-05 22:45:29.360794+00 2025-06-05 22:45:29.360806+00 f t TOTAL 110500.00 3 1390 \N +54396 2025-06-05 22:45:29.362757+00 2025-06-05 22:45:29.362768+00 f t ADELANTO 26500.00 4 1390 \N +54401 2025-06-06 00:52:16.692291+00 2025-06-06 00:52:16.692305+00 f t SUBTOTAL 0.00 1 1391 \N +54402 2025-06-06 00:52:16.694198+00 2025-06-06 00:52:16.69421+00 f t DESCUENTO 0.00 2 1391 \N +54403 2025-06-06 00:52:16.695994+00 2025-06-06 00:52:16.696006+00 f t TOTAL 0.00 3 1391 \N +54404 2025-06-06 00:52:16.697706+00 2025-06-06 00:52:16.697714+00 f t ADELANTO 0.00 4 1391 \N +54409 2025-06-06 00:58:37.911279+00 2025-06-06 00:58:37.91129+00 f t SUBTOTAL 0.00 1 1392 \N +54410 2025-06-06 00:58:37.912775+00 2025-06-06 00:58:37.912784+00 f t DESCUENTO 0.00 2 1392 \N +54411 2025-06-06 00:58:37.913963+00 2025-06-06 00:58:37.913972+00 f t TOTAL 0.00 3 1392 \N +54412 2025-06-06 00:58:37.914904+00 2025-06-06 00:58:37.914909+00 f t ADELANTO 0.00 4 1392 \N +55797 2025-06-07 01:57:18.797946+00 2025-06-07 01:57:18.797958+00 f t SUBTOTAL 0.00 1 1435 \N +55798 2025-06-07 01:57:18.800572+00 2025-06-07 01:57:18.80058+00 f t DESCUENTO 0.00 2 1435 \N +55799 2025-06-07 01:57:18.802669+00 2025-06-07 01:57:18.802676+00 f t TOTAL 0.00 3 1435 \N +54921 2025-06-06 12:27:08.603263+00 2025-06-06 12:27:08.603273+00 f t SUBTOTAL 107000.00 1 1409 \N +54922 2025-06-06 12:27:08.608635+00 2025-06-06 12:27:08.608646+00 f t DESCUENTO 0.00 2 1409 \N +54923 2025-06-06 12:27:08.610479+00 2025-06-06 12:27:08.610487+00 f t TOTAL 107000.00 3 1409 \N +54453 2025-06-06 01:14:12.344028+00 2025-06-06 01:14:12.344038+00 f t SUBTOTAL 0.00 1 1393 \N +54454 2025-06-06 01:14:12.346233+00 2025-06-06 01:14:12.346246+00 f t DESCUENTO 0.00 2 1393 \N +54455 2025-06-06 01:14:12.348298+00 2025-06-06 01:14:12.348307+00 f t TOTAL 0.00 3 1393 \N +54456 2025-06-06 01:14:12.350033+00 2025-06-06 01:14:12.350041+00 f t ADELANTO 0.00 4 1393 \N +54924 2025-06-06 12:27:08.612253+00 2025-06-06 12:27:08.612261+00 f t ADELANTO 22000.00 4 1409 \N +54461 2025-06-06 01:23:04.726216+00 2025-06-06 01:23:04.726227+00 f t SUBTOTAL 0.00 1 1394 \N +54462 2025-06-06 01:23:04.728301+00 2025-06-06 01:23:04.728315+00 f t DESCUENTO 0.00 2 1394 \N +54463 2025-06-06 01:23:04.730327+00 2025-06-06 01:23:04.730339+00 f t TOTAL 0.00 3 1394 \N +54464 2025-06-06 01:23:04.732101+00 2025-06-06 01:23:04.732111+00 f t ADELANTO 0.00 4 1394 \N +56413 2025-06-07 11:24:47.118945+00 2025-06-07 11:24:47.118954+00 f t SUBTOTAL 50000.00 1 1449 \N +56414 2025-06-07 11:24:47.120582+00 2025-06-07 11:24:47.120589+00 f t DESCUENTO 0.00 2 1449 \N +56415 2025-06-07 11:24:47.121698+00 2025-06-07 11:24:47.121703+00 f t TOTAL 50000.00 3 1449 \N +56416 2025-06-07 11:24:47.122648+00 2025-06-07 11:24:47.122653+00 f t ADELANTO 10000.00 4 1449 \N +55037 2025-06-06 16:01:27.112533+00 2025-06-06 16:01:27.112546+00 f t SUBTOTAL 64500.00 1 1413 \N +55038 2025-06-06 16:01:27.114864+00 2025-06-06 16:01:27.114877+00 f t DESCUENTO 0.00 2 1413 \N +55039 2025-06-06 16:01:27.117635+00 2025-06-06 16:01:27.117647+00 f t TOTAL 64500.00 3 1413 \N +55040 2025-06-06 16:01:27.120117+00 2025-06-06 16:01:27.12013+00 f t ADELANTO 17000.00 4 1413 \N +55069 2025-06-06 17:07:47.277122+00 2025-06-06 17:07:47.277133+00 f t SUBTOTAL 0.00 1 1416 \N +55070 2025-06-06 17:07:47.279939+00 2025-06-06 17:07:47.279951+00 f t DESCUENTO 0.00 2 1416 \N +55071 2025-06-06 17:07:47.281985+00 2025-06-06 17:07:47.281994+00 f t TOTAL 0.00 3 1416 \N +55072 2025-06-06 17:07:47.283626+00 2025-06-06 17:07:47.283633+00 f t ADELANTO 0.00 4 1416 \N +54525 2025-06-06 01:27:28.595128+00 2025-06-06 01:27:28.595142+00 f t SUBTOTAL 57000.00 1 1395 \N +54526 2025-06-06 01:27:28.59777+00 2025-06-06 01:27:28.597783+00 f t DESCUENTO 0.00 2 1395 \N +54527 2025-06-06 01:27:28.600212+00 2025-06-06 01:27:28.600224+00 f t TOTAL 57000.00 3 1395 \N +54528 2025-06-06 01:27:28.60239+00 2025-06-06 01:27:28.602403+00 f t ADELANTO 12000.00 4 1395 \N +54533 2025-06-06 01:32:45.332506+00 2025-06-06 01:32:45.332517+00 f t SUBTOTAL 0.00 1 1396 \N +54534 2025-06-06 01:32:45.334018+00 2025-06-06 01:32:45.334025+00 f t DESCUENTO 0.00 2 1396 \N +54535 2025-06-06 01:32:45.335208+00 2025-06-06 01:32:45.335214+00 f t TOTAL 0.00 3 1396 \N +54536 2025-06-06 01:32:45.336602+00 2025-06-06 01:32:45.336608+00 f t ADELANTO 0.00 4 1396 \N +54541 2025-06-06 01:33:02.888641+00 2025-06-06 01:33:02.888655+00 f t SUBTOTAL 0.00 1 1397 \N +54542 2025-06-06 01:33:02.890641+00 2025-06-06 01:33:02.890652+00 f t DESCUENTO 0.00 2 1397 \N +54543 2025-06-06 01:33:02.892376+00 2025-06-06 01:33:02.892386+00 f t TOTAL 0.00 3 1397 \N +54544 2025-06-06 01:33:02.894133+00 2025-06-06 01:33:02.894143+00 f t ADELANTO 0.00 4 1397 \N +55333 2025-06-06 19:17:26.441715+00 2025-06-06 19:17:26.441723+00 f t SUBTOTAL 94500.00 1 1422 \N +55334 2025-06-06 19:17:26.444831+00 2025-06-06 19:17:26.444841+00 f t DESCUENTO 0.00 2 1422 \N +55335 2025-06-06 19:17:26.446822+00 2025-06-06 19:17:26.446833+00 f t TOTAL 94500.00 3 1422 \N +55336 2025-06-06 19:17:26.448445+00 2025-06-06 19:17:26.448453+00 f t ADELANTO 26500.00 4 1422 \N +55357 2025-06-06 22:15:35.391668+00 2025-06-06 22:15:35.391677+00 f t SUBTOTAL 0.00 1 1423 \N +55358 2025-06-06 22:15:35.394094+00 2025-06-06 22:15:35.394104+00 f t DESCUENTO 0.00 2 1423 \N +55359 2025-06-06 22:15:35.39575+00 2025-06-06 22:15:35.395757+00 f t TOTAL 0.00 3 1423 \N +55360 2025-06-06 22:15:35.397219+00 2025-06-06 22:15:35.397226+00 f t ADELANTO 0.00 4 1423 \N +54569 2025-06-06 01:33:50.278924+00 2025-06-06 01:33:50.278937+00 f t SUBTOTAL 64500.00 1 1398 \N +54570 2025-06-06 01:33:50.281338+00 2025-06-06 01:33:50.28135+00 f t DESCUENTO 0.00 2 1398 \N +54571 2025-06-06 01:33:50.283177+00 2025-06-06 01:33:50.283188+00 f t TOTAL 64500.00 3 1398 \N +54572 2025-06-06 01:33:50.285129+00 2025-06-06 01:33:50.28514+00 f t ADELANTO 17000.00 4 1398 \N +54597 2025-06-06 01:39:50.426442+00 2025-06-06 01:39:50.426452+00 f t SUBTOTAL 82700.00 1 1399 \N +54598 2025-06-06 01:39:50.428292+00 2025-06-06 01:39:50.4283+00 f t DESCUENTO 0.00 2 1399 \N +54599 2025-06-06 01:39:50.429789+00 2025-06-06 01:39:50.429797+00 f t TOTAL 82700.00 3 1399 \N +54600 2025-06-06 01:39:50.431047+00 2025-06-06 01:39:50.431054+00 f t ADELANTO 44700.00 4 1399 \N +55557 2025-06-06 23:56:56.445595+00 2025-06-06 23:56:56.445604+00 f t SUBTOTAL 50000.00 1 1428 \N +55558 2025-06-06 23:56:56.447286+00 2025-06-06 23:56:56.447294+00 f t DESCUENTO 0.00 2 1428 \N +55559 2025-06-06 23:56:56.448624+00 2025-06-06 23:56:56.448632+00 f t TOTAL 50000.00 3 1428 \N +55560 2025-06-06 23:56:56.449831+00 2025-06-06 23:56:56.449837+00 f t ADELANTO 10000.00 4 1428 \N +54625 2025-06-06 01:46:29.385812+00 2025-06-06 01:46:29.385821+00 f t SUBTOTAL 42000.00 1 1400 \N +54626 2025-06-06 01:46:29.387588+00 2025-06-06 01:46:29.387597+00 f t DESCUENTO 0.00 2 1400 \N +54627 2025-06-06 01:46:29.388906+00 2025-06-06 01:46:29.388914+00 f t TOTAL 42000.00 3 1400 \N +54628 2025-06-06 01:46:29.390245+00 2025-06-06 01:46:29.390251+00 f t ADELANTO 9500.00 4 1400 \N +55645 2025-06-07 00:56:40.773558+00 2025-06-07 00:56:40.773567+00 f t SUBTOTAL 135750.00 1 1432 \N +55646 2025-06-07 00:56:40.775535+00 2025-06-07 00:56:40.775545+00 f t DESCUENTO 0.00 2 1432 \N +55647 2025-06-07 00:56:40.777022+00 2025-06-07 00:56:40.77703+00 f t TOTAL 135750.00 3 1432 \N +55648 2025-06-07 00:56:40.778515+00 2025-06-07 00:56:40.778522+00 f t ADELANTO 28250.00 4 1432 \N +54669 2025-06-06 01:55:42.108295+00 2025-06-06 01:55:42.108308+00 f t SUBTOTAL 42000.00 1 1401 \N +54670 2025-06-06 01:55:42.110351+00 2025-06-06 01:55:42.110365+00 f t DESCUENTO 0.00 2 1401 \N +54671 2025-06-06 01:55:42.112117+00 2025-06-06 01:55:42.112129+00 f t TOTAL 42000.00 3 1401 \N +54672 2025-06-06 01:55:42.11382+00 2025-06-06 01:55:42.113832+00 f t ADELANTO 9500.00 4 1401 \N +55721 2025-06-07 01:33:20.462612+00 2025-06-07 01:33:20.462622+00 f t SUBTOTAL 221600.00 1 1433 \N +55722 2025-06-07 01:33:20.464427+00 2025-06-07 01:33:20.464435+00 f t DESCUENTO 0.00 2 1433 \N +55723 2025-06-07 01:33:20.465576+00 2025-06-07 01:33:20.465581+00 f t TOTAL 221600.00 3 1433 \N +55724 2025-06-07 01:33:20.466928+00 2025-06-07 01:33:20.466933+00 f t ADELANTO 97100.00 4 1433 \N +55800 2025-06-07 01:57:18.805922+00 2025-06-07 01:57:18.805935+00 f t ADELANTO 0.00 4 1435 \N +54705 2025-06-06 02:04:32.342597+00 2025-06-06 02:04:32.342607+00 f t SUBTOTAL 64500.00 1 1402 \N +54706 2025-06-06 02:04:32.344239+00 2025-06-06 02:04:32.344247+00 f t DESCUENTO 0.00 2 1402 \N +54707 2025-06-06 02:04:32.345699+00 2025-06-06 02:04:32.345709+00 f t TOTAL 64500.00 3 1402 \N +54708 2025-06-06 02:04:32.347092+00 2025-06-06 02:04:32.347101+00 f t ADELANTO 17000.00 4 1402 \N +55813 2025-06-07 02:11:05.851663+00 2025-06-07 02:11:05.851673+00 f t SUBTOTAL 0.00 1 1437 \N +55814 2025-06-07 02:11:05.853366+00 2025-06-07 02:11:05.853378+00 f t DESCUENTO 0.00 2 1437 \N +55815 2025-06-07 02:11:05.854776+00 2025-06-07 02:11:05.854783+00 f t TOTAL 0.00 3 1437 \N +55816 2025-06-07 02:11:05.856281+00 2025-06-07 02:11:05.856288+00 f t ADELANTO 0.00 4 1437 \N +54733 2025-06-06 02:22:32.402171+00 2025-06-06 02:22:32.402185+00 f t SUBTOTAL 50000.00 1 1403 \N +54734 2025-06-06 02:22:32.404673+00 2025-06-06 02:22:32.404688+00 f t DESCUENTO 0.00 2 1403 \N +54735 2025-06-06 02:22:32.406951+00 2025-06-06 02:22:32.406962+00 f t TOTAL 50000.00 3 1403 \N +54736 2025-06-06 02:22:32.40932+00 2025-06-06 02:22:32.40933+00 f t ADELANTO 10000.00 4 1403 \N +54873 2025-06-06 11:30:30.893142+00 2025-06-06 11:30:30.893155+00 f t SUBTOTAL 42000.00 1 1407 \N +54874 2025-06-06 11:30:30.897562+00 2025-06-06 11:30:30.897577+00 f t DESCUENTO 0.00 2 1407 \N +54875 2025-06-06 11:30:30.89975+00 2025-06-06 11:30:30.899761+00 f t TOTAL 42000.00 3 1407 \N +54876 2025-06-06 11:30:30.901888+00 2025-06-06 11:30:30.901899+00 f t ADELANTO 9500.00 4 1407 \N +54741 2025-06-06 02:38:03.02213+00 2025-06-06 02:38:03.022144+00 f t SUBTOTAL 0.00 1 1404 \N +54742 2025-06-06 02:38:03.023989+00 2025-06-06 02:38:03.023997+00 f t DESCUENTO 0.00 2 1404 \N +54743 2025-06-06 02:38:03.025529+00 2025-06-06 02:38:03.025536+00 f t TOTAL 0.00 3 1404 \N +54744 2025-06-06 02:38:03.02696+00 2025-06-06 02:38:03.026967+00 f t ADELANTO 0.00 4 1404 \N +60413 2025-06-09 12:04:36.682966+00 2025-06-09 12:04:36.682976+00 f t SUBTOTAL 0.00 1 1554 \N +60414 2025-06-09 12:04:36.685323+00 2025-06-09 12:04:36.68533+00 f t DESCUENTO 0.00 2 1554 \N +60415 2025-06-09 12:04:36.686661+00 2025-06-09 12:04:36.686667+00 f t TOTAL 0.00 3 1554 \N +60416 2025-06-09 12:04:36.687763+00 2025-06-09 12:04:36.687769+00 f t ADELANTO 0.00 4 1554 \N +56321 2025-06-07 11:20:19.460523+00 2025-06-07 11:20:19.460538+00 f t SUBTOTAL 0.00 1 1448 \N +56322 2025-06-07 11:20:19.462953+00 2025-06-07 11:20:19.462966+00 f t DESCUENTO 0.00 2 1448 \N +56323 2025-06-07 11:20:19.465169+00 2025-06-07 11:20:19.465177+00 f t TOTAL 0.00 3 1448 \N +56324 2025-06-07 11:20:19.466574+00 2025-06-07 11:20:19.466583+00 f t ADELANTO 0.00 4 1448 \N +57665 2025-06-08 00:40:58.276042+00 2025-06-08 00:40:58.276053+00 f t SUBTOTAL 64500.00 1 1487 \N +57666 2025-06-08 00:40:58.278115+00 2025-06-08 00:40:58.278125+00 f t DESCUENTO 0.00 2 1487 \N +57667 2025-06-08 00:40:58.279621+00 2025-06-08 00:40:58.279631+00 f t TOTAL 64500.00 3 1487 \N +57668 2025-06-08 00:40:58.280916+00 2025-06-08 00:40:58.280922+00 f t ADELANTO 17000.00 4 1487 \N +54769 2025-06-06 03:12:15.403059+00 2025-06-06 03:12:15.403069+00 f t SUBTOTAL 50000.00 1 1405 \N +54770 2025-06-06 03:12:15.405167+00 2025-06-06 03:12:15.405175+00 f t DESCUENTO 0.00 2 1405 \N +54771 2025-06-06 03:12:15.406455+00 2025-06-06 03:12:15.406461+00 f t TOTAL 50000.00 3 1405 \N +54772 2025-06-06 03:12:15.40763+00 2025-06-06 03:12:15.407636+00 f t ADELANTO 10000.00 4 1405 \N +55045 2025-06-06 16:22:16.814517+00 2025-06-06 16:22:16.814532+00 f t SUBTOTAL 0.00 1 1414 \N +55046 2025-06-06 16:22:16.816405+00 2025-06-06 16:22:16.816416+00 f t DESCUENTO 0.00 2 1414 \N +55047 2025-06-06 16:22:16.818001+00 2025-06-06 16:22:16.81801+00 f t TOTAL 0.00 3 1414 \N +55048 2025-06-06 16:22:16.819401+00 2025-06-06 16:22:16.819409+00 f t ADELANTO 0.00 4 1414 \N +55077 2025-06-06 17:47:06.463246+00 2025-06-06 17:47:06.463257+00 f t SUBTOTAL 0.00 1 1417 \N +55078 2025-06-06 17:47:06.464662+00 2025-06-06 17:47:06.464669+00 f t DESCUENTO 0.00 2 1417 \N +55079 2025-06-06 17:47:06.465766+00 2025-06-06 17:47:06.465771+00 f t TOTAL 0.00 3 1417 \N +55080 2025-06-06 17:47:06.467096+00 2025-06-06 17:47:06.467102+00 f t ADELANTO 0.00 4 1417 \N +56489 2025-06-07 11:59:45.313016+00 2025-06-07 11:59:45.313029+00 f t SUBTOTAL 0.00 1 1451 \N +56490 2025-06-07 11:59:45.314669+00 2025-06-07 11:59:45.314679+00 f t DESCUENTO 0.00 2 1451 \N +56491 2025-06-07 11:59:45.316059+00 2025-06-07 11:59:45.316068+00 f t TOTAL 0.00 3 1451 \N +56492 2025-06-07 11:59:45.317247+00 2025-06-07 11:59:45.317255+00 f t ADELANTO 0.00 4 1451 \N +56517 2025-06-07 12:14:19.407389+00 2025-06-07 12:14:19.407399+00 f t SUBTOTAL 57000.00 1 1452 \N +56518 2025-06-07 12:14:19.409096+00 2025-06-07 12:14:19.409102+00 f t DESCUENTO 0.00 2 1452 \N +56519 2025-06-07 12:14:19.410474+00 2025-06-07 12:14:19.41048+00 f t TOTAL 57000.00 3 1452 \N +56520 2025-06-07 12:14:19.413094+00 2025-06-07 12:14:19.413111+00 f t ADELANTO 12000.00 4 1452 \N +56569 2025-06-07 12:54:43.53089+00 2025-06-07 12:54:43.530902+00 f t SUBTOTAL 0.00 1 1456 \N +56570 2025-06-07 12:54:43.532479+00 2025-06-07 12:54:43.532487+00 f t DESCUENTO 0.00 2 1456 \N +56571 2025-06-07 12:54:43.533918+00 2025-06-07 12:54:43.533927+00 f t TOTAL 0.00 3 1456 \N +56572 2025-06-07 12:54:43.535413+00 2025-06-07 12:54:43.535423+00 f t ADELANTO 0.00 4 1456 \N +54837 2025-06-06 10:47:57.921645+00 2025-06-06 10:47:57.921658+00 f t SUBTOTAL 49700.00 1 1406 \N +54838 2025-06-06 10:47:57.924125+00 2025-06-06 10:47:57.924138+00 f t DESCUENTO 0.00 2 1406 \N +54839 2025-06-06 10:47:57.926518+00 2025-06-06 10:47:57.926532+00 f t TOTAL 49700.00 3 1406 \N +54840 2025-06-06 10:47:57.928438+00 2025-06-06 10:47:57.928446+00 f t ADELANTO 11700.00 4 1406 \N +55565 2025-06-07 00:12:11.494377+00 2025-06-07 00:12:11.494391+00 f t SUBTOTAL 0.00 1 1429 \N +55566 2025-06-07 00:12:11.495956+00 2025-06-07 00:12:11.495967+00 f t DESCUENTO 0.00 2 1429 \N +55567 2025-06-07 00:12:11.497485+00 2025-06-07 00:12:11.497494+00 f t TOTAL 0.00 3 1429 \N +55568 2025-06-07 00:12:11.499086+00 2025-06-07 00:12:11.499093+00 f t ADELANTO 0.00 4 1429 \N +56865 2025-06-07 15:16:12.520279+00 2025-06-07 15:16:12.52029+00 f t SUBTOTAL 42000.00 1 1464 \N +56866 2025-06-07 15:16:12.522061+00 2025-06-07 15:16:12.522071+00 f t DESCUENTO 0.00 2 1464 \N +56867 2025-06-07 15:16:12.523548+00 2025-06-07 15:16:12.523586+00 f t TOTAL 42000.00 3 1464 \N +56868 2025-06-07 15:16:12.524961+00 2025-06-07 15:16:12.524968+00 f t ADELANTO 9500.00 4 1464 \N +56941 2025-06-07 15:18:35.537791+00 2025-06-07 15:18:35.537801+00 f t SUBTOTAL 27500.00 1 1465 \N +56942 2025-06-07 15:18:35.539883+00 2025-06-07 15:18:35.539891+00 f t DESCUENTO 0.00 2 1465 \N +56943 2025-06-07 15:18:35.541419+00 2025-06-07 15:18:35.541426+00 f t TOTAL 27500.00 3 1465 \N +56944 2025-06-07 15:18:35.544173+00 2025-06-07 15:18:35.54418+00 f t ADELANTO 27500.00 4 1465 \N +55789 2025-06-07 01:47:37.022173+00 2025-06-07 01:47:37.022185+00 f t SUBTOTAL 45000.00 1 1434 \N +55790 2025-06-07 01:47:37.024502+00 2025-06-07 01:47:37.02451+00 f t DESCUENTO 0.00 2 1434 \N +55791 2025-06-07 01:47:37.025865+00 2025-06-07 01:47:37.025871+00 f t TOTAL 45000.00 3 1434 \N +55792 2025-06-07 01:47:37.027137+00 2025-06-07 01:47:37.027142+00 f t ADELANTO 10000.00 4 1434 \N +55805 2025-06-07 02:03:58.39957+00 2025-06-07 02:03:58.399584+00 f t SUBTOTAL 0.00 1 1436 \N +55806 2025-06-07 02:03:58.401379+00 2025-06-07 02:03:58.401388+00 f t DESCUENTO 0.00 2 1436 \N +55807 2025-06-07 02:03:58.40308+00 2025-06-07 02:03:58.403088+00 f t TOTAL 0.00 3 1436 \N +55808 2025-06-07 02:03:58.404626+00 2025-06-07 02:03:58.404633+00 f t ADELANTO 0.00 4 1436 \N +55821 2025-06-07 02:12:41.342587+00 2025-06-07 02:12:41.342598+00 f t SUBTOTAL 0.00 1 1438 \N +55822 2025-06-07 02:12:41.345134+00 2025-06-07 02:12:41.345142+00 f t DESCUENTO 0.00 2 1438 \N +55823 2025-06-07 02:12:41.346858+00 2025-06-07 02:12:41.346865+00 f t TOTAL 0.00 3 1438 \N +55824 2025-06-07 02:12:41.348739+00 2025-06-07 02:12:41.348747+00 f t ADELANTO 0.00 4 1438 \N +57069 2025-06-07 16:25:09.561967+00 2025-06-07 16:25:09.561981+00 f t SUBTOTAL 50000.00 1 1467 \N +57070 2025-06-07 16:25:09.563962+00 2025-06-07 16:25:09.563976+00 f t DESCUENTO 0.00 2 1467 \N +57071 2025-06-07 16:25:09.565433+00 2025-06-07 16:25:09.565443+00 f t TOTAL 50000.00 3 1467 \N +57072 2025-06-07 16:25:09.566939+00 2025-06-07 16:25:09.566946+00 f t ADELANTO 10000.00 4 1467 \N +58981 2025-06-08 13:56:31.433177+00 2025-06-08 13:56:31.433188+00 f t SUBTOTAL 0.00 1 1517 \N +58982 2025-06-08 13:56:31.435759+00 2025-06-08 13:56:31.435796+00 f t DESCUENTO 0.00 2 1517 \N +58983 2025-06-08 13:56:31.437458+00 2025-06-08 13:56:31.437469+00 f t TOTAL 0.00 3 1517 \N +58984 2025-06-08 13:56:31.438817+00 2025-06-08 13:56:31.438826+00 f t ADELANTO 0.00 4 1517 \N +64852 2025-06-11 11:22:38.1785+00 2025-06-11 11:22:38.178514+00 f t ADELANTO 10000.00 4 1684 \N +61825 2025-06-09 20:34:36.953254+00 2025-06-09 20:34:36.953264+00 f t SUBTOTAL 0.00 1 1596 \N +55865 2025-06-07 02:37:02.245265+00 2025-06-07 02:37:02.245278+00 f t SUBTOTAL 75000.00 1 1439 \N +55866 2025-06-07 02:37:02.248737+00 2025-06-07 02:37:02.248752+00 f t DESCUENTO 0.00 2 1439 \N +55867 2025-06-07 02:37:02.260866+00 2025-06-07 02:37:02.260882+00 f t TOTAL 75000.00 3 1439 \N +55868 2025-06-07 02:37:02.26373+00 2025-06-07 02:37:02.263745+00 f t ADELANTO 15000.00 4 1439 \N +61826 2025-06-09 20:34:36.954542+00 2025-06-09 20:34:36.954549+00 f t DESCUENTO 0.00 2 1596 \N +61827 2025-06-09 20:34:36.955709+00 2025-06-09 20:34:36.955715+00 f t TOTAL 0.00 3 1596 \N +57637 2025-06-07 23:57:17.636085+00 2025-06-07 23:57:17.636097+00 f t SUBTOTAL 0.00 1 1486 \N +57638 2025-06-07 23:57:17.6379+00 2025-06-07 23:57:17.637909+00 f t DESCUENTO 0.00 2 1486 \N +57639 2025-06-07 23:57:17.639443+00 2025-06-07 23:57:17.639449+00 f t TOTAL 0.00 3 1486 \N +57640 2025-06-07 23:57:17.640866+00 2025-06-07 23:57:17.640874+00 f t ADELANTO 0.00 4 1486 \N +57737 2025-06-08 00:53:22.577469+00 2025-06-08 00:53:22.577479+00 f t SUBTOTAL 0.00 1 1489 \N +57738 2025-06-08 00:53:22.579877+00 2025-06-08 00:53:22.579886+00 f t DESCUENTO 0.00 2 1489 \N +57739 2025-06-08 00:53:22.581204+00 2025-06-08 00:53:22.581211+00 f t TOTAL 0.00 3 1489 \N +57740 2025-06-08 00:53:22.58243+00 2025-06-08 00:53:22.582436+00 f t ADELANTO 0.00 4 1489 \N +57773 2025-06-08 01:01:53.260777+00 2025-06-08 01:01:53.260787+00 f t SUBTOTAL 75000.00 1 1485 \N +57774 2025-06-08 01:01:53.262743+00 2025-06-08 01:01:53.262756+00 f t DESCUENTO 0.00 2 1485 \N +57775 2025-06-08 01:01:53.264732+00 2025-06-08 01:01:53.264745+00 f t TOTAL 75000.00 3 1485 \N +57776 2025-06-08 01:01:53.266577+00 2025-06-08 01:01:53.266586+00 f t ADELANTO 15000.00 4 1485 \N +57849 2025-06-08 01:37:23.027494+00 2025-06-08 01:37:23.027506+00 f t SUBTOTAL 50000.00 1 1493 \N +57850 2025-06-08 01:37:23.030059+00 2025-06-08 01:37:23.030072+00 f t DESCUENTO 0.00 2 1493 \N +57851 2025-06-08 01:37:23.032272+00 2025-06-08 01:37:23.032284+00 f t TOTAL 50000.00 3 1493 \N +57852 2025-06-08 01:37:23.033984+00 2025-06-08 01:37:23.034025+00 f t ADELANTO 10000.00 4 1493 \N +57885 2025-06-08 02:10:50.68772+00 2025-06-08 02:10:50.68773+00 f t SUBTOTAL 42000.00 1 1494 \N +56525 2025-06-07 12:32:03.984482+00 2025-06-07 12:32:03.984492+00 f t SUBTOTAL 0.00 1 1453 \N +56526 2025-06-07 12:32:03.986005+00 2025-06-07 12:32:03.986012+00 f t DESCUENTO 0.00 2 1453 \N +56527 2025-06-07 12:32:03.987556+00 2025-06-07 12:32:03.987563+00 f t TOTAL 0.00 3 1453 \N +56528 2025-06-07 12:32:03.988765+00 2025-06-07 12:32:03.988774+00 f t ADELANTO 0.00 4 1453 \N +57886 2025-06-08 02:10:50.689884+00 2025-06-08 02:10:50.689893+00 f t DESCUENTO 0.00 2 1494 \N +57887 2025-06-08 02:10:50.691766+00 2025-06-08 02:10:50.691776+00 f t TOTAL 42000.00 3 1494 \N +57888 2025-06-08 02:10:50.693226+00 2025-06-08 02:10:50.693234+00 f t ADELANTO 9500.00 4 1494 \N +56577 2025-06-07 12:55:26.944978+00 2025-06-07 12:55:26.944992+00 f t SUBTOTAL 0.00 1 1457 \N +56578 2025-06-07 12:55:26.94669+00 2025-06-07 12:55:26.946698+00 f t DESCUENTO 0.00 2 1457 \N +56579 2025-06-07 12:55:26.947997+00 2025-06-07 12:55:26.948007+00 f t TOTAL 0.00 3 1457 \N +56580 2025-06-07 12:55:26.949209+00 2025-06-07 12:55:26.949215+00 f t ADELANTO 0.00 4 1457 \N +55945 2025-06-07 02:55:00.117008+00 2025-06-07 02:55:00.117017+00 f t SUBTOTAL 64500.00 1 1440 \N +55946 2025-06-07 02:55:00.118685+00 2025-06-07 02:55:00.118693+00 f t DESCUENTO 0.00 2 1440 \N +55947 2025-06-07 02:55:00.119911+00 2025-06-07 02:55:00.119916+00 f t TOTAL 64500.00 3 1440 \N +55948 2025-06-07 02:55:00.121079+00 2025-06-07 02:55:00.121084+00 f t ADELANTO 17000.00 4 1440 \N +56641 2025-06-07 13:33:53.723308+00 2025-06-07 13:33:53.723316+00 f t SUBTOTAL 95000.00 1 1458 \N +56642 2025-06-07 13:33:53.724962+00 2025-06-07 13:33:53.724968+00 f t DESCUENTO 0.00 2 1458 \N +56643 2025-06-07 13:33:53.726185+00 2025-06-07 13:33:53.726192+00 f t TOTAL 95000.00 3 1458 \N +56644 2025-06-07 13:33:53.727402+00 2025-06-07 13:33:53.727407+00 f t ADELANTO 10000.00 4 1458 \N +55973 2025-06-07 03:12:13.93526+00 2025-06-07 03:12:13.935272+00 f t SUBTOTAL 42000.00 1 1441 \N +55974 2025-06-07 03:12:13.937377+00 2025-06-07 03:12:13.937387+00 f t DESCUENTO 0.00 2 1441 \N +55975 2025-06-07 03:12:13.938761+00 2025-06-07 03:12:13.938768+00 f t TOTAL 42000.00 3 1441 \N +55976 2025-06-07 03:12:13.93999+00 2025-06-07 03:12:13.939996+00 f t ADELANTO 9500.00 4 1441 \N +56685 2025-06-07 13:59:28.649093+00 2025-06-07 13:59:28.649107+00 f t SUBTOTAL 0.00 1 1460 \N +56686 2025-06-07 13:59:28.651805+00 2025-06-07 13:59:28.651817+00 f t DESCUENTO 0.00 2 1460 \N +56687 2025-06-07 13:59:28.653703+00 2025-06-07 13:59:28.65371+00 f t TOTAL 0.00 3 1460 \N +56688 2025-06-07 13:59:28.655005+00 2025-06-07 13:59:28.655011+00 f t ADELANTO 0.00 4 1460 \N +58077 2025-06-08 03:20:39.951991+00 2025-06-08 03:20:39.952001+00 f t SUBTOTAL 0.00 1 1500 \N +58078 2025-06-08 03:20:39.953561+00 2025-06-08 03:20:39.953568+00 f t DESCUENTO 0.00 2 1500 \N +58079 2025-06-08 03:20:39.955061+00 2025-06-08 03:20:39.955068+00 f t TOTAL 0.00 3 1500 \N +58080 2025-06-08 03:20:39.956615+00 2025-06-08 03:20:39.956621+00 f t ADELANTO 0.00 4 1500 \N +56001 2025-06-07 03:56:24.674167+00 2025-06-07 03:56:24.67418+00 f t SUBTOTAL 42000.00 1 1442 \N +56002 2025-06-07 03:56:24.676629+00 2025-06-07 03:56:24.676641+00 f t DESCUENTO 0.00 2 1442 \N +56003 2025-06-07 03:56:24.678567+00 2025-06-07 03:56:24.678578+00 f t TOTAL 42000.00 3 1442 \N +56004 2025-06-07 03:56:24.68019+00 2025-06-07 03:56:24.6802+00 f t ADELANTO 9500.00 4 1442 \N +56009 2025-06-07 04:20:31.048267+00 2025-06-07 04:20:31.048278+00 f t SUBTOTAL 0.00 1 1443 \N +56010 2025-06-07 04:20:31.050116+00 2025-06-07 04:20:31.050129+00 f t DESCUENTO 0.00 2 1443 \N +56011 2025-06-07 04:20:31.051761+00 2025-06-07 04:20:31.05177+00 f t TOTAL 0.00 3 1443 \N +56012 2025-06-07 04:20:31.052959+00 2025-06-07 04:20:31.052966+00 f t ADELANTO 0.00 4 1443 \N +56049 2025-06-07 04:28:50.250336+00 2025-06-07 04:28:50.250381+00 f t SUBTOTAL 57000.00 1 1444 \N +56050 2025-06-07 04:28:50.252393+00 2025-06-07 04:28:50.252401+00 f t DESCUENTO 0.00 2 1444 \N +56051 2025-06-07 04:28:50.253892+00 2025-06-07 04:28:50.253899+00 f t TOTAL 57000.00 3 1444 \N +56052 2025-06-07 04:28:50.255321+00 2025-06-07 04:28:50.255328+00 f t ADELANTO 12000.00 4 1444 \N +57093 2025-06-07 16:53:00.500833+00 2025-06-07 16:53:00.500844+00 f t SUBTOTAL 0.00 1 1468 \N +57094 2025-06-07 16:53:00.502754+00 2025-06-07 16:53:00.502765+00 f t DESCUENTO 0.00 2 1468 \N +56137 2025-06-07 10:57:37.347082+00 2025-06-07 10:57:37.347095+00 f t SUBTOTAL 50000.00 1 1445 \N +56138 2025-06-07 10:57:37.349136+00 2025-06-07 10:57:37.349147+00 f t DESCUENTO 0.00 2 1445 \N +56139 2025-06-07 10:57:37.350708+00 2025-06-07 10:57:37.350718+00 f t TOTAL 50000.00 3 1445 \N +56140 2025-06-07 10:57:37.351949+00 2025-06-07 10:57:37.351957+00 f t ADELANTO 10000.00 4 1445 \N +57095 2025-06-07 16:53:00.50419+00 2025-06-07 16:53:00.504197+00 f t TOTAL 0.00 3 1468 \N +57096 2025-06-07 16:53:00.505305+00 2025-06-07 16:53:00.505315+00 f t ADELANTO 0.00 4 1468 \N +61828 2025-06-09 20:34:36.956852+00 2025-06-09 20:34:36.956857+00 f t ADELANTO 0.00 4 1596 \N +56301 2025-06-07 11:11:50.654643+00 2025-06-07 11:11:50.654652+00 f t SUBTOTAL 50000.00 1 1447 \N +56302 2025-06-07 11:11:50.656233+00 2025-06-07 11:11:50.656242+00 f t DESCUENTO 0.00 2 1447 \N +56303 2025-06-07 11:11:50.657562+00 2025-06-07 11:11:50.657569+00 f t TOTAL 50000.00 3 1447 \N +56304 2025-06-07 11:11:50.658801+00 2025-06-07 11:11:50.658809+00 f t ADELANTO 10000.00 4 1447 \N +58989 2025-06-08 14:19:02.997099+00 2025-06-08 14:19:02.997115+00 f t SUBTOTAL 0.00 1 1518 \N +58990 2025-06-08 14:19:02.999735+00 2025-06-08 14:19:02.999749+00 f t DESCUENTO 0.00 2 1518 \N +58991 2025-06-08 14:19:03.003021+00 2025-06-08 14:19:03.003031+00 f t TOTAL 0.00 3 1518 \N +58992 2025-06-08 14:19:03.005226+00 2025-06-08 14:19:03.005298+00 f t ADELANTO 0.00 4 1518 \N +59025 2025-06-08 14:20:27.135913+00 2025-06-08 14:20:27.135922+00 f t SUBTOTAL 42000.00 1 1519 \N +59026 2025-06-08 14:20:27.137603+00 2025-06-08 14:20:27.137611+00 f t DESCUENTO 0.00 2 1519 \N +59027 2025-06-08 14:20:27.1391+00 2025-06-08 14:20:27.139108+00 f t TOTAL 42000.00 3 1519 \N +59028 2025-06-08 14:20:27.14038+00 2025-06-08 14:20:27.140385+00 f t ADELANTO 9500.00 4 1519 \N +57745 2025-06-08 00:55:36.034402+00 2025-06-08 00:55:36.034411+00 f t SUBTOTAL 0.00 1 1490 \N +57746 2025-06-08 00:55:36.035807+00 2025-06-08 00:55:36.035815+00 f t DESCUENTO 0.00 2 1490 \N +57747 2025-06-08 00:55:36.037284+00 2025-06-08 00:55:36.03729+00 f t TOTAL 0.00 3 1490 \N +57748 2025-06-08 00:55:36.038336+00 2025-06-08 00:55:36.038342+00 f t ADELANTO 0.00 4 1490 \N +59197 2025-06-08 14:35:31.343193+00 2025-06-08 14:35:31.343205+00 f t SUBTOTAL 42000.00 1 1521 \N +59198 2025-06-08 14:35:31.345526+00 2025-06-08 14:35:31.345535+00 f t DESCUENTO 0.00 2 1521 \N +59199 2025-06-08 14:35:31.347446+00 2025-06-08 14:35:31.347457+00 f t TOTAL 42000.00 3 1521 \N +59200 2025-06-08 14:35:31.349129+00 2025-06-08 14:35:31.349137+00 f t ADELANTO 9500.00 4 1521 \N +56533 2025-06-07 12:50:01.5799+00 2025-06-07 12:50:01.579916+00 f t SUBTOTAL 0.00 1 1454 \N +56534 2025-06-07 12:50:01.582771+00 2025-06-07 12:50:01.582786+00 f t DESCUENTO 0.00 2 1454 \N +56535 2025-06-07 12:50:01.58546+00 2025-06-07 12:50:01.585475+00 f t TOTAL 0.00 3 1454 \N +56536 2025-06-07 12:50:01.588471+00 2025-06-07 12:50:01.588484+00 f t ADELANTO 0.00 4 1454 \N +59249 2025-06-08 15:07:30.782126+00 2025-06-08 15:07:30.782135+00 f t SUBTOTAL 0.00 1 1524 \N +56561 2025-06-07 12:51:40.191792+00 2025-06-07 12:51:40.191806+00 f t SUBTOTAL 49500.00 1 1455 \N +56562 2025-06-07 12:51:40.194377+00 2025-06-07 12:51:40.194388+00 f t DESCUENTO 0.00 2 1455 \N +56563 2025-06-07 12:51:40.196647+00 2025-06-07 12:51:40.196657+00 f t TOTAL 49500.00 3 1455 \N +56564 2025-06-07 12:51:40.198869+00 2025-06-07 12:51:40.198877+00 f t ADELANTO 11500.00 4 1455 \N +59250 2025-06-08 15:07:30.784123+00 2025-06-08 15:07:30.784135+00 f t DESCUENTO 0.00 2 1524 \N +59251 2025-06-08 15:07:30.786006+00 2025-06-08 15:07:30.786015+00 f t TOTAL 0.00 3 1524 \N +59252 2025-06-08 15:07:30.787555+00 2025-06-08 15:07:30.787566+00 f t ADELANTO 0.00 4 1524 \N +59365 2025-06-08 16:15:25.660255+00 2025-06-08 16:15:25.660268+00 f t SUBTOTAL 111000.00 1 1527 \N +59366 2025-06-08 16:15:25.662308+00 2025-06-08 16:15:25.662319+00 f t DESCUENTO 0.00 2 1527 \N +59367 2025-06-08 16:15:25.66374+00 2025-06-08 16:15:25.663747+00 f t TOTAL 111000.00 3 1527 \N +59368 2025-06-08 16:15:25.66528+00 2025-06-08 16:15:25.665288+00 f t ADELANTO 23500.00 4 1527 \N +57929 2025-06-08 03:04:24.268567+00 2025-06-08 03:04:24.268579+00 f t SUBTOTAL 42000.00 1 1496 \N +57930 2025-06-08 03:04:24.270857+00 2025-06-08 03:04:24.270869+00 f t DESCUENTO 0.00 2 1496 \N +57931 2025-06-08 03:04:24.27267+00 2025-06-08 03:04:24.272682+00 f t TOTAL 42000.00 3 1496 \N +57932 2025-06-08 03:04:24.274516+00 2025-06-08 03:04:24.274525+00 f t ADELANTO 9500.00 4 1496 \N +56649 2025-06-07 13:35:17.046703+00 2025-06-07 13:35:17.046712+00 f t SUBTOTAL 0.00 1 1459 \N +56650 2025-06-07 13:35:17.048741+00 2025-06-07 13:35:17.048753+00 f t DESCUENTO 0.00 2 1459 \N +56651 2025-06-07 13:35:17.050765+00 2025-06-07 13:35:17.050778+00 f t TOTAL 0.00 3 1459 \N +56652 2025-06-07 13:35:17.052614+00 2025-06-07 13:35:17.052622+00 f t ADELANTO 0.00 4 1459 \N +57985 2025-06-08 03:14:19.143008+00 2025-06-08 03:14:19.143022+00 f t SUBTOTAL 42000.00 1 1497 \N +57986 2025-06-08 03:14:19.145727+00 2025-06-08 03:14:19.145738+00 f t DESCUENTO 0.00 2 1497 \N +57987 2025-06-08 03:14:19.147806+00 2025-06-08 03:14:19.147814+00 f t TOTAL 42000.00 3 1497 \N +57988 2025-06-08 03:14:19.149772+00 2025-06-08 03:14:19.149782+00 f t ADELANTO 9500.00 4 1497 \N +56693 2025-06-07 14:03:30.368138+00 2025-06-07 14:03:30.368149+00 f t SUBTOTAL 0.00 1 1461 \N +56694 2025-06-07 14:03:30.369914+00 2025-06-07 14:03:30.369923+00 f t DESCUENTO 0.00 2 1461 \N +56695 2025-06-07 14:03:30.371582+00 2025-06-07 14:03:30.371589+00 f t TOTAL 0.00 3 1461 \N +56696 2025-06-07 14:03:30.37313+00 2025-06-07 14:03:30.373138+00 f t ADELANTO 0.00 4 1461 \N +56721 2025-06-07 14:18:01.053473+00 2025-06-07 14:18:01.053485+00 f t SUBTOTAL 49500.00 1 1462 \N +56722 2025-06-07 14:18:01.055605+00 2025-06-07 14:18:01.055615+00 f t DESCUENTO 0.00 2 1462 \N +56723 2025-06-07 14:18:01.057463+00 2025-06-07 14:18:01.057473+00 f t TOTAL 49500.00 3 1462 \N +56724 2025-06-07 14:18:01.058921+00 2025-06-07 14:18:01.058928+00 f t ADELANTO 11500.00 4 1462 \N +56737 2025-06-07 14:44:52.782769+00 2025-06-07 14:44:52.782779+00 f t SUBTOTAL 0.00 1 1463 \N +56738 2025-06-07 14:44:52.78488+00 2025-06-07 14:44:52.784887+00 f t DESCUENTO 0.00 2 1463 \N +56739 2025-06-07 14:44:52.785952+00 2025-06-07 14:44:52.785958+00 f t TOTAL 0.00 3 1463 \N +56740 2025-06-07 14:44:52.787005+00 2025-06-07 14:44:52.787011+00 f t ADELANTO 0.00 4 1463 \N +58245 2025-06-08 03:26:42.648722+00 2025-06-08 03:26:42.648734+00 f t SUBTOTAL 42000.00 1 1503 \N +58246 2025-06-08 03:26:42.650799+00 2025-06-08 03:26:42.650811+00 f t DESCUENTO 0.00 2 1503 \N +58247 2025-06-08 03:26:42.652248+00 2025-06-08 03:26:42.652258+00 f t TOTAL 42000.00 3 1503 \N +58248 2025-06-08 03:26:42.653717+00 2025-06-08 03:26:42.653725+00 f t ADELANTO 9500.00 4 1503 \N +58473 2025-06-08 05:28:47.053688+00 2025-06-08 05:28:47.053701+00 f t SUBTOTAL 113700.00 1 1508 \N +58474 2025-06-08 05:28:47.055453+00 2025-06-08 05:28:47.055462+00 f t DESCUENTO 0.00 2 1508 \N +58475 2025-06-08 05:28:47.057067+00 2025-06-08 05:28:47.057076+00 f t TOTAL 113700.00 3 1508 \N +58476 2025-06-08 05:28:47.058409+00 2025-06-08 05:28:47.058417+00 f t ADELANTO 75700.00 4 1508 \N +57085 2025-06-07 16:25:30.868037+00 2025-06-07 16:25:30.868047+00 f t SUBTOTAL 57000.00 1 1466 \N +57086 2025-06-07 16:25:30.874733+00 2025-06-07 16:25:30.874746+00 f t DESCUENTO 0.00 2 1466 \N +57087 2025-06-07 16:25:30.877103+00 2025-06-07 16:25:30.877114+00 f t TOTAL 57000.00 3 1466 \N +57088 2025-06-07 16:25:30.879143+00 2025-06-07 16:25:30.879151+00 f t ADELANTO 12000.00 4 1466 \N +57121 2025-06-07 17:01:03.691153+00 2025-06-07 17:01:03.691163+00 f t SUBTOTAL 57000.00 1 1469 \N +57122 2025-06-07 17:01:03.692778+00 2025-06-07 17:01:03.692785+00 f t DESCUENTO 0.00 2 1469 \N +57123 2025-06-07 17:01:03.694015+00 2025-06-07 17:01:03.694021+00 f t TOTAL 57000.00 3 1469 \N +57124 2025-06-07 17:01:03.695289+00 2025-06-07 17:01:03.695297+00 f t ADELANTO 12000.00 4 1469 \N +57129 2025-06-07 17:14:48.312913+00 2025-06-07 17:14:48.312924+00 f t SUBTOTAL 0.00 1 1470 \N +57130 2025-06-07 17:14:48.314504+00 2025-06-07 17:14:48.314512+00 f t DESCUENTO 0.00 2 1470 \N +57131 2025-06-07 17:14:48.315732+00 2025-06-07 17:14:48.315739+00 f t TOTAL 0.00 3 1470 \N +57132 2025-06-07 17:14:48.316862+00 2025-06-07 17:14:48.316868+00 f t ADELANTO 0.00 4 1470 \N +60461 2025-06-09 12:07:41.943489+00 2025-06-09 12:07:41.943502+00 f t SUBTOTAL 49500.00 1 1555 \N +60462 2025-06-09 12:07:41.945683+00 2025-06-09 12:07:41.945695+00 f t DESCUENTO 0.00 2 1555 \N +60463 2025-06-09 12:07:41.947396+00 2025-06-09 12:07:41.947406+00 f t TOTAL 49500.00 3 1555 \N +60464 2025-06-09 12:07:41.948924+00 2025-06-09 12:07:41.948931+00 f t ADELANTO 11500.00 4 1555 \N +57177 2025-06-07 18:00:30.207999+00 2025-06-07 18:00:30.208012+00 f t SUBTOTAL 42000.00 1 1471 \N +57178 2025-06-07 18:00:30.210629+00 2025-06-07 18:00:30.210642+00 f t DESCUENTO 0.00 2 1471 \N +57179 2025-06-07 18:00:30.212884+00 2025-06-07 18:00:30.212896+00 f t TOTAL 42000.00 3 1471 \N +57180 2025-06-07 18:00:30.214971+00 2025-06-07 18:00:30.214982+00 f t ADELANTO 9500.00 4 1471 \N +57801 2025-06-08 01:02:53.025379+00 2025-06-08 01:02:53.025388+00 f t SUBTOTAL 50000.00 1 1491 \N +57802 2025-06-08 01:02:53.027209+00 2025-06-08 01:02:53.027216+00 f t DESCUENTO 0.00 2 1491 \N +57803 2025-06-08 01:02:53.02865+00 2025-06-08 01:02:53.028656+00 f t TOTAL 50000.00 3 1491 \N +57804 2025-06-08 01:02:53.030337+00 2025-06-08 01:02:53.030346+00 f t ADELANTO 10000.00 4 1491 \N +57821 2025-06-08 01:25:43.843323+00 2025-06-08 01:25:43.843334+00 f t SUBTOTAL 0.00 1 1492 \N +57822 2025-06-08 01:25:43.845526+00 2025-06-08 01:25:43.845537+00 f t DESCUENTO 0.00 2 1492 \N +57823 2025-06-08 01:25:43.84696+00 2025-06-08 01:25:43.846968+00 f t TOTAL 0.00 3 1492 \N +57824 2025-06-08 01:25:43.848195+00 2025-06-08 01:25:43.848201+00 f t ADELANTO 0.00 4 1492 \N +59277 2025-06-08 15:25:00.676533+00 2025-06-08 15:25:00.676543+00 f t SUBTOTAL 64500.00 1 1525 \N +59278 2025-06-08 15:25:00.678229+00 2025-06-08 15:25:00.678237+00 f t DESCUENTO 0.00 2 1525 \N +59279 2025-06-08 15:25:00.679503+00 2025-06-08 15:25:00.679509+00 f t TOTAL 64500.00 3 1525 \N +59280 2025-06-08 15:25:00.681115+00 2025-06-08 15:25:00.68112+00 f t ADELANTO 17000.00 4 1525 \N +57233 2025-06-07 18:11:33.552812+00 2025-06-07 18:11:33.55282+00 f t SUBTOTAL 64500.00 1 1472 \N +57234 2025-06-07 18:11:33.554578+00 2025-06-07 18:11:33.554585+00 f t DESCUENTO 0.00 2 1472 \N +57235 2025-06-07 18:11:33.555914+00 2025-06-07 18:11:33.55592+00 f t TOTAL 64500.00 3 1472 \N +57236 2025-06-07 18:11:33.557122+00 2025-06-07 18:11:33.557128+00 f t ADELANTO 17000.00 4 1472 \N +57241 2025-06-07 18:28:34.74283+00 2025-06-07 18:28:34.742842+00 f t SUBTOTAL 0.00 1 1473 \N +57242 2025-06-07 18:28:34.744666+00 2025-06-07 18:28:34.744673+00 f t DESCUENTO 0.00 2 1473 \N +57243 2025-06-07 18:28:34.745999+00 2025-06-07 18:28:34.746005+00 f t TOTAL 0.00 3 1473 \N +57244 2025-06-07 18:28:34.747153+00 2025-06-07 18:28:34.747159+00 f t ADELANTO 0.00 4 1473 \N +59441 2025-06-08 17:36:48.125556+00 2025-06-08 17:36:48.125569+00 f t SUBTOTAL 0.00 1 1530 \N +59442 2025-06-08 17:36:48.127151+00 2025-06-08 17:36:48.127158+00 f t DESCUENTO 0.00 2 1530 \N +59443 2025-06-08 17:36:48.128566+00 2025-06-08 17:36:48.128572+00 f t TOTAL 0.00 3 1530 \N +59444 2025-06-08 17:36:48.129841+00 2025-06-08 17:36:48.129846+00 f t ADELANTO 0.00 4 1530 \N +58141 2025-06-08 03:22:35.433408+00 2025-06-08 03:22:35.433418+00 f t SUBTOTAL 42000.00 1 1501 \N +58142 2025-06-08 03:22:35.435062+00 2025-06-08 03:22:35.43507+00 f t DESCUENTO 0.00 2 1501 \N +58143 2025-06-08 03:22:35.436563+00 2025-06-08 03:22:35.436569+00 f t TOTAL 42000.00 3 1501 \N +58144 2025-06-08 03:22:35.4377+00 2025-06-08 03:22:35.437706+00 f t ADELANTO 9500.00 4 1501 \N +58197 2025-06-08 03:25:40.779947+00 2025-06-08 03:25:40.779957+00 f t SUBTOTAL 42000.00 1 1502 \N +58198 2025-06-08 03:25:40.781532+00 2025-06-08 03:25:40.781539+00 f t DESCUENTO 0.00 2 1502 \N +58199 2025-06-08 03:25:40.782616+00 2025-06-08 03:25:40.782622+00 f t TOTAL 42000.00 3 1502 \N +58200 2025-06-08 03:25:40.78371+00 2025-06-08 03:25:40.783715+00 f t ADELANTO 9500.00 4 1502 \N +57309 2025-06-07 18:53:52.895884+00 2025-06-07 18:53:52.895895+00 f t SUBTOTAL 61000.00 1 1474 \N +57310 2025-06-07 18:53:52.897592+00 2025-06-07 18:53:52.897599+00 f t DESCUENTO 0.00 2 1474 \N +57311 2025-06-07 18:53:52.899061+00 2025-06-07 18:53:52.899068+00 f t TOTAL 61000.00 3 1474 \N +57312 2025-06-07 18:53:52.900304+00 2025-06-07 18:53:52.900311+00 f t ADELANTO 11000.00 4 1474 \N +58277 2025-06-08 03:40:10.703265+00 2025-06-08 03:40:10.703277+00 f t SUBTOTAL 0.00 1 1506 \N +58278 2025-06-08 03:40:10.705771+00 2025-06-08 03:40:10.705783+00 f t DESCUENTO 0.00 2 1506 \N +58279 2025-06-08 03:40:10.707316+00 2025-06-08 03:40:10.707327+00 f t TOTAL 0.00 3 1506 \N +58280 2025-06-08 03:40:10.70887+00 2025-06-08 03:40:10.70888+00 f t ADELANTO 0.00 4 1506 \N +59649 2025-06-08 22:14:39.062427+00 2025-06-08 22:14:39.062435+00 f t SUBTOTAL 50000.00 1 1537 \N +59650 2025-06-08 22:14:39.064185+00 2025-06-08 22:14:39.064192+00 f t DESCUENTO 0.00 2 1537 \N +59651 2025-06-08 22:14:39.065408+00 2025-06-08 22:14:39.065416+00 f t TOTAL 50000.00 3 1537 \N +59652 2025-06-08 22:14:39.066511+00 2025-06-08 22:14:39.066517+00 f t ADELANTO 10000.00 4 1537 \N +57349 2025-06-07 19:01:30.562111+00 2025-06-07 19:01:30.562121+00 f t SUBTOTAL 49500.00 1 1475 \N +57350 2025-06-07 19:01:30.564264+00 2025-06-07 19:01:30.564274+00 f t DESCUENTO 0.00 2 1475 \N +57351 2025-06-07 19:01:30.565906+00 2025-06-07 19:01:30.565916+00 f t TOTAL 49500.00 3 1475 \N +57352 2025-06-07 19:01:30.567787+00 2025-06-07 19:01:30.567798+00 f t ADELANTO 11500.00 4 1475 \N +59689 2025-06-08 22:51:24.414039+00 2025-06-08 22:51:24.414048+00 f t SUBTOTAL 0.00 1 1540 \N +59690 2025-06-08 22:51:24.420254+00 2025-06-08 22:51:24.420263+00 f t DESCUENTO 0.00 2 1540 \N +59691 2025-06-08 22:51:24.421992+00 2025-06-08 22:51:24.422+00 f t TOTAL 0.00 3 1540 \N +59692 2025-06-08 22:51:24.423536+00 2025-06-08 22:51:24.423542+00 f t ADELANTO 0.00 4 1540 \N +59757 2025-06-08 23:03:47.980772+00 2025-06-08 23:03:47.980782+00 f t SUBTOTAL 50000.00 1 1541 \N +59758 2025-06-08 23:03:47.982272+00 2025-06-08 23:03:47.982278+00 f t DESCUENTO 0.00 2 1541 \N +59759 2025-06-08 23:03:47.983527+00 2025-06-08 23:03:47.983533+00 f t TOTAL 50000.00 3 1541 \N +59760 2025-06-08 23:03:47.984524+00 2025-06-08 23:03:47.984532+00 f t ADELANTO 10000.00 4 1541 \N +57389 2025-06-07 19:17:08.604947+00 2025-06-07 19:17:08.60496+00 f t SUBTOTAL 111000.00 1 1476 \N +57390 2025-06-07 19:17:08.607143+00 2025-06-07 19:17:08.607152+00 f t DESCUENTO 0.00 2 1476 \N +57391 2025-06-07 19:17:08.609102+00 2025-06-07 19:17:08.609115+00 f t TOTAL 111000.00 3 1476 \N +57392 2025-06-07 19:17:08.610767+00 2025-06-07 19:17:08.610776+00 f t ADELANTO 23500.00 4 1476 \N +57421 2025-06-07 19:43:18.696744+00 2025-06-07 19:43:18.696753+00 f t SUBTOTAL 49500.00 1 1477 \N +57422 2025-06-07 19:43:18.698294+00 2025-06-07 19:43:18.6983+00 f t DESCUENTO 0.00 2 1477 \N +57423 2025-06-07 19:43:18.707438+00 2025-06-07 19:43:18.707447+00 f t TOTAL 49500.00 3 1477 \N +57424 2025-06-07 19:43:18.709607+00 2025-06-07 19:43:18.709616+00 f t ADELANTO 11500.00 4 1477 \N +57429 2025-06-07 20:50:20.258446+00 2025-06-07 20:50:20.258456+00 f t SUBTOTAL 0.00 1 1478 \N +57430 2025-06-07 20:50:20.260147+00 2025-06-07 20:50:20.260155+00 f t DESCUENTO 0.00 2 1478 \N +57431 2025-06-07 20:50:20.261893+00 2025-06-07 20:50:20.261902+00 f t TOTAL 0.00 3 1478 \N +57432 2025-06-07 20:50:20.263704+00 2025-06-07 20:50:20.263713+00 f t ADELANTO 0.00 4 1478 \N +58661 2025-06-08 10:17:32.108539+00 2025-06-08 10:17:32.108549+00 f t SUBTOTAL 129000.00 1 1509 \N +58662 2025-06-08 10:17:32.110709+00 2025-06-08 10:17:32.110717+00 f t DESCUENTO 0.00 2 1509 \N +58663 2025-06-08 10:17:32.112035+00 2025-06-08 10:17:32.112042+00 f t TOTAL 129000.00 3 1509 \N +58664 2025-06-08 10:17:32.113283+00 2025-06-08 10:17:32.113289+00 f t ADELANTO 34000.00 4 1509 \N +73109 2025-06-15 23:40:33.249541+00 2025-06-15 23:40:33.249553+00 f t SUBTOTAL 0.00 1 1909 \N +57457 2025-06-07 21:19:04.707921+00 2025-06-07 21:19:04.707932+00 f t SUBTOTAL 50000.00 1 1479 \N +57458 2025-06-07 21:19:04.710069+00 2025-06-07 21:19:04.710077+00 f t DESCUENTO 0.00 2 1479 \N +57459 2025-06-07 21:19:04.711578+00 2025-06-07 21:19:04.711585+00 f t TOTAL 50000.00 3 1479 \N +57460 2025-06-07 21:19:04.713069+00 2025-06-07 21:19:04.713075+00 f t ADELANTO 10000.00 4 1479 \N +57497 2025-06-07 21:21:38.202455+00 2025-06-07 21:21:38.202465+00 f t SUBTOTAL 50000.00 1 1480 \N +57498 2025-06-07 21:21:38.204126+00 2025-06-07 21:21:38.204133+00 f t DESCUENTO 0.00 2 1480 \N +57499 2025-06-07 21:21:38.20542+00 2025-06-07 21:21:38.205429+00 f t TOTAL 50000.00 3 1480 \N +57500 2025-06-07 21:21:38.206788+00 2025-06-07 21:21:38.206795+00 f t ADELANTO 10000.00 4 1480 \N +57505 2025-06-07 21:44:13.23938+00 2025-06-07 21:44:13.239391+00 f t SUBTOTAL 0.00 1 1481 \N +57506 2025-06-07 21:44:13.240879+00 2025-06-07 21:44:13.240886+00 f t DESCUENTO 0.00 2 1481 \N +57507 2025-06-07 21:44:13.241986+00 2025-06-07 21:44:13.241992+00 f t TOTAL 0.00 3 1481 \N +57508 2025-06-07 21:44:13.243149+00 2025-06-07 21:44:13.243157+00 f t ADELANTO 0.00 4 1481 \N +57901 2025-06-08 02:33:00.997367+00 2025-06-08 02:33:00.99738+00 f t SUBTOTAL 0.00 1 1495 \N +57902 2025-06-08 02:33:01.000337+00 2025-06-08 02:33:01.000349+00 f t DESCUENTO 0.00 2 1495 \N +57903 2025-06-08 02:33:01.001939+00 2025-06-08 02:33:01.001948+00 f t TOTAL 0.00 3 1495 \N +57904 2025-06-08 02:33:01.004179+00 2025-06-08 02:33:01.004187+00 f t ADELANTO 0.00 4 1495 \N +60661 2025-06-09 13:25:49.309123+00 2025-06-09 13:25:49.309133+00 f t SUBTOTAL 0.00 1 1560 \N +60662 2025-06-09 13:25:49.31097+00 2025-06-09 13:25:49.310981+00 f t DESCUENTO 0.00 2 1560 \N +60663 2025-06-09 13:25:49.312561+00 2025-06-09 13:25:49.312572+00 f t TOTAL 0.00 3 1560 \N +60664 2025-06-09 13:25:49.313824+00 2025-06-09 13:25:49.313832+00 f t ADELANTO 0.00 4 1560 \N +57533 2025-06-07 22:06:30.229722+00 2025-06-07 22:06:30.229736+00 f t SUBTOTAL 27500.00 1 1482 \N +57534 2025-06-07 22:06:30.233848+00 2025-06-07 22:06:30.233863+00 f t DESCUENTO 0.00 2 1482 \N +57535 2025-06-07 22:06:30.237035+00 2025-06-07 22:06:30.237051+00 f t TOTAL 27500.00 3 1482 \N +57536 2025-06-07 22:06:30.239985+00 2025-06-07 22:06:30.239996+00 f t ADELANTO 27500.00 4 1482 \N +58069 2025-06-08 03:19:19.41247+00 2025-06-08 03:19:19.41248+00 f t SUBTOTAL 0.00 1 1499 \N +58070 2025-06-08 03:19:19.414311+00 2025-06-08 03:19:19.414323+00 f t DESCUENTO 0.00 2 1499 \N +58071 2025-06-08 03:19:19.415977+00 2025-06-08 03:19:19.415984+00 f t TOTAL 0.00 3 1499 \N +57569 2025-06-07 23:11:17.134136+00 2025-06-07 23:11:17.134145+00 f t SUBTOTAL 42000.00 1 1483 \N +57570 2025-06-07 23:11:17.136429+00 2025-06-07 23:11:17.136438+00 f t DESCUENTO 0.00 2 1483 \N +57571 2025-06-07 23:11:17.137756+00 2025-06-07 23:11:17.137763+00 f t TOTAL 42000.00 3 1483 \N +57572 2025-06-07 23:11:17.138859+00 2025-06-07 23:11:17.138865+00 f t ADELANTO 9500.00 4 1483 \N +58072 2025-06-08 03:19:19.417298+00 2025-06-08 03:19:19.417305+00 f t ADELANTO 0.00 4 1499 \N +58093 2025-06-08 03:21:00.082552+00 2025-06-08 03:21:00.082566+00 f t SUBTOTAL 42000.00 1 1498 \N +58094 2025-06-08 03:21:00.084453+00 2025-06-08 03:21:00.08446+00 f t DESCUENTO 0.00 2 1498 \N +58095 2025-06-08 03:21:00.086212+00 2025-06-08 03:21:00.086221+00 f t TOTAL 42000.00 3 1498 \N +58096 2025-06-08 03:21:00.087664+00 2025-06-08 03:21:00.087671+00 f t ADELANTO 9500.00 4 1498 \N +59505 2025-06-08 19:13:01.947414+00 2025-06-08 19:13:01.947424+00 f t SUBTOTAL 42000.00 1 1533 \N +59506 2025-06-08 19:13:01.949839+00 2025-06-08 19:13:01.949849+00 f t DESCUENTO 0.00 2 1533 \N +59507 2025-06-08 19:13:01.956271+00 2025-06-08 19:13:01.956286+00 f t TOTAL 42000.00 3 1533 \N +59508 2025-06-08 19:13:01.963331+00 2025-06-08 19:13:01.963421+00 f t ADELANTO 9500.00 4 1533 \N +60845 2025-06-09 13:57:48.785944+00 2025-06-09 13:57:48.785956+00 f t SUBTOTAL 75000.00 1 1566 \N +60846 2025-06-09 13:57:48.787827+00 2025-06-09 13:57:48.787835+00 f t DESCUENTO 0.00 2 1566 \N +60847 2025-06-09 13:57:48.788948+00 2025-06-09 13:57:48.788954+00 f t TOTAL 75000.00 3 1566 \N +60848 2025-06-09 13:57:48.789923+00 2025-06-09 13:57:48.789928+00 f t ADELANTO 15000.00 4 1566 \N +59593 2025-06-08 21:20:13.688075+00 2025-06-08 21:20:13.688085+00 f t SUBTOTAL 50000.00 1 1535 \N +59594 2025-06-08 21:20:13.690119+00 2025-06-08 21:20:13.690127+00 f t DESCUENTO 0.00 2 1535 \N +59595 2025-06-08 21:20:13.691542+00 2025-06-08 21:20:13.691548+00 f t TOTAL 50000.00 3 1535 \N +59596 2025-06-08 21:20:13.69277+00 2025-06-08 21:20:13.692778+00 f t ADELANTO 10000.00 4 1535 \N +60881 2025-06-09 14:01:19.253576+00 2025-06-09 14:01:19.253585+00 f t SUBTOTAL 57000.00 1 1567 \N +60882 2025-06-09 14:01:19.255523+00 2025-06-09 14:01:19.255532+00 f t DESCUENTO 0.00 2 1567 \N +60883 2025-06-09 14:01:19.257023+00 2025-06-09 14:01:19.257029+00 f t TOTAL 57000.00 3 1567 \N +60884 2025-06-09 14:01:19.258415+00 2025-06-09 14:01:19.258421+00 f t ADELANTO 12000.00 4 1567 \N +59637 2025-06-08 22:14:24.106859+00 2025-06-08 22:14:24.106867+00 f t SUBTOTAL 0.00 1 1538 \N +59638 2025-06-08 22:14:24.109165+00 2025-06-08 22:14:24.109175+00 f t DESCUENTO 0.00 2 1538 \N +59639 2025-06-08 22:14:24.11039+00 2025-06-08 22:14:24.110398+00 f t TOTAL 0.00 3 1538 \N +59640 2025-06-08 22:14:24.111602+00 2025-06-08 22:14:24.11161+00 f t ADELANTO 0.00 4 1538 \N +58261 2025-06-08 03:38:22.849533+00 2025-06-08 03:38:22.849546+00 f t SUBTOTAL 0.00 1 1505 \N +58262 2025-06-08 03:38:22.851427+00 2025-06-08 03:38:22.851439+00 f t DESCUENTO 0.00 2 1505 \N +58263 2025-06-08 03:38:22.853184+00 2025-06-08 03:38:22.853194+00 f t TOTAL 0.00 3 1505 \N +58264 2025-06-08 03:38:22.854612+00 2025-06-08 03:38:22.85462+00 f t ADELANTO 0.00 4 1505 \N +58349 2025-06-08 03:43:58.935877+00 2025-06-08 03:43:58.935889+00 f t SUBTOTAL 49500.00 1 1507 \N +58350 2025-06-08 03:43:58.937822+00 2025-06-08 03:43:58.937834+00 f t DESCUENTO 0.00 2 1507 \N +58351 2025-06-08 03:43:58.939604+00 2025-06-08 03:43:58.939614+00 f t TOTAL 49500.00 3 1507 \N +58352 2025-06-08 03:43:58.941136+00 2025-06-08 03:43:58.941146+00 f t ADELANTO 11500.00 4 1507 \N +61033 2025-06-09 14:41:11.972263+00 2025-06-09 14:41:11.972271+00 f t SUBTOTAL 95000.00 1 1569 \N +61034 2025-06-09 14:41:11.974025+00 2025-06-09 14:41:11.974033+00 f t DESCUENTO 0.00 2 1569 \N +61035 2025-06-09 14:41:11.975562+00 2025-06-09 14:41:11.975571+00 f t TOTAL 95000.00 3 1569 \N +61036 2025-06-09 14:41:11.976829+00 2025-06-09 14:41:11.976836+00 f t ADELANTO 10000.00 4 1569 \N +58381 2025-06-08 03:44:57.48553+00 2025-06-08 03:44:57.485541+00 f t SUBTOTAL 72000.00 1 1504 \N +58382 2025-06-08 03:44:57.488039+00 2025-06-08 03:44:57.488048+00 f t DESCUENTO 0.00 2 1504 \N +58383 2025-06-08 03:44:57.489906+00 2025-06-08 03:44:57.489914+00 f t TOTAL 72000.00 3 1504 \N +58384 2025-06-08 03:44:57.491648+00 2025-06-08 03:44:57.491658+00 f t ADELANTO 19000.00 4 1504 \N +59765 2025-06-08 23:11:20.989673+00 2025-06-08 23:11:20.989682+00 f t SUBTOTAL 0.00 1 1542 \N +59766 2025-06-08 23:11:20.991228+00 2025-06-08 23:11:20.991235+00 f t DESCUENTO 0.00 2 1542 \N +59767 2025-06-08 23:11:20.992335+00 2025-06-08 23:11:20.99234+00 f t TOTAL 0.00 3 1542 \N +59768 2025-06-08 23:11:20.993155+00 2025-06-08 23:11:20.99316+00 f t ADELANTO 0.00 4 1542 \N +59881 2025-06-09 00:37:27.689404+00 2025-06-09 00:37:27.689412+00 f t SUBTOTAL 49500.00 1 1545 \N +59882 2025-06-09 00:37:27.691269+00 2025-06-09 00:37:27.691278+00 f t DESCUENTO 0.00 2 1545 \N +59883 2025-06-09 00:37:27.692477+00 2025-06-09 00:37:27.692484+00 f t TOTAL 49500.00 3 1545 \N +59884 2025-06-09 00:37:27.693548+00 2025-06-09 00:37:27.693553+00 f t ADELANTO 11500.00 4 1545 \N +61833 2025-06-09 20:47:18.289018+00 2025-06-09 20:47:18.289029+00 f t SUBTOTAL 0.00 1 1597 \N +61834 2025-06-09 20:47:18.291092+00 2025-06-09 20:47:18.291101+00 f t DESCUENTO 0.00 2 1597 \N +61835 2025-06-09 20:47:18.292366+00 2025-06-09 20:47:18.292374+00 f t TOTAL 0.00 3 1597 \N +61836 2025-06-09 20:47:18.29335+00 2025-06-09 20:47:18.293356+00 f t ADELANTO 0.00 4 1597 \N +58689 2025-06-08 11:32:19.19938+00 2025-06-08 11:32:19.19939+00 f t SUBTOTAL 45000.00 1 1510 \N +58690 2025-06-08 11:32:19.201014+00 2025-06-08 11:32:19.20102+00 f t DESCUENTO 0.00 2 1510 \N +58691 2025-06-08 11:32:19.202084+00 2025-06-08 11:32:19.202089+00 f t TOTAL 45000.00 3 1510 \N +58692 2025-06-08 11:32:19.203011+00 2025-06-08 11:32:19.203017+00 f t ADELANTO 10000.00 4 1510 \N +61925 2025-06-09 22:15:48.066048+00 2025-06-09 22:15:48.06606+00 f t SUBTOTAL 50000.00 1 1600 \N +61926 2025-06-09 22:15:48.067959+00 2025-06-09 22:15:48.067966+00 f t DESCUENTO 0.00 2 1600 \N +61927 2025-06-09 22:15:48.069532+00 2025-06-09 22:15:48.06954+00 f t TOTAL 50000.00 3 1600 \N +61928 2025-06-09 22:15:48.071181+00 2025-06-09 22:15:48.071188+00 f t ADELANTO 10000.00 4 1600 \N +61953 2025-06-09 22:34:44.217463+00 2025-06-09 22:34:44.217478+00 f t SUBTOTAL 0.00 1 1602 \N +61954 2025-06-09 22:34:44.220134+00 2025-06-09 22:34:44.220146+00 f t DESCUENTO 0.00 2 1602 \N +61955 2025-06-09 22:34:44.221818+00 2025-06-09 22:34:44.221825+00 f t TOTAL 0.00 3 1602 \N +61956 2025-06-09 22:34:44.223062+00 2025-06-09 22:34:44.223068+00 f t ADELANTO 0.00 4 1602 \N +59233 2025-06-08 14:55:05.078388+00 2025-06-08 14:55:05.078401+00 f t SUBTOTAL 50000.00 1 1522 \N +59234 2025-06-08 14:55:05.081517+00 2025-06-08 14:55:05.08153+00 f t DESCUENTO 0.00 2 1522 \N +59235 2025-06-08 14:55:05.083929+00 2025-06-08 14:55:05.083942+00 f t TOTAL 50000.00 3 1522 \N +59236 2025-06-08 14:55:05.086516+00 2025-06-08 14:55:05.08653+00 f t ADELANTO 10000.00 4 1522 \N +62009 2025-06-09 23:24:13.910666+00 2025-06-09 23:24:13.910678+00 f t SUBTOTAL 0.00 1 1604 \N +62010 2025-06-09 23:24:13.912615+00 2025-06-09 23:24:13.912627+00 f t DESCUENTO 0.00 2 1604 \N +62011 2025-06-09 23:24:13.914368+00 2025-06-09 23:24:13.914378+00 f t TOTAL 0.00 3 1604 \N +62012 2025-06-09 23:24:13.915984+00 2025-06-09 23:24:13.915995+00 f t ADELANTO 0.00 4 1604 \N +62029 2025-06-09 23:58:10.65084+00 2025-06-09 23:58:10.650853+00 f t SUBTOTAL 0.00 1 1605 \N +62030 2025-06-09 23:58:10.653225+00 2025-06-09 23:58:10.653234+00 f t DESCUENTO 0.00 2 1605 \N +62031 2025-06-09 23:58:10.654872+00 2025-06-09 23:58:10.654882+00 f t TOTAL 0.00 3 1605 \N +62032 2025-06-09 23:58:10.656429+00 2025-06-09 23:58:10.656439+00 f t ADELANTO 0.00 4 1605 \N +59329 2025-06-08 15:53:08.071999+00 2025-06-08 15:53:08.072011+00 f t SUBTOTAL 50000.00 1 1526 \N +59330 2025-06-08 15:53:08.074211+00 2025-06-08 15:53:08.07422+00 f t DESCUENTO 0.00 2 1526 \N +59331 2025-06-08 15:53:08.075676+00 2025-06-08 15:53:08.075683+00 f t TOTAL 50000.00 3 1526 \N +59332 2025-06-08 15:53:08.076969+00 2025-06-08 15:53:08.076976+00 f t ADELANTO 10000.00 4 1526 \N +60669 2025-06-09 13:46:14.305231+00 2025-06-09 13:46:14.305241+00 f t SUBTOTAL 0.00 1 1561 \N +60670 2025-06-09 13:46:14.306787+00 2025-06-09 13:46:14.306795+00 f t DESCUENTO 0.00 2 1561 \N +60671 2025-06-09 13:46:14.30814+00 2025-06-09 13:46:14.308148+00 f t TOTAL 0.00 3 1561 \N +60672 2025-06-09 13:46:14.309616+00 2025-06-09 13:46:14.309622+00 f t ADELANTO 0.00 4 1561 \N +59425 2025-06-08 16:17:40.646768+00 2025-06-08 16:17:40.646776+00 f t SUBTOTAL 50000.00 1 1528 \N +59426 2025-06-08 16:17:40.648271+00 2025-06-08 16:17:40.648278+00 f t DESCUENTO 0.00 2 1528 \N +59427 2025-06-08 16:17:40.649402+00 2025-06-08 16:17:40.649408+00 f t TOTAL 50000.00 3 1528 \N +59428 2025-06-08 16:17:40.65044+00 2025-06-08 16:17:40.650446+00 f t ADELANTO 10000.00 4 1528 \N +59469 2025-06-08 18:38:05.152293+00 2025-06-08 18:38:05.152303+00 f t SUBTOTAL 64500.00 1 1531 \N +59470 2025-06-08 18:38:05.154452+00 2025-06-08 18:38:05.154463+00 f t DESCUENTO 0.00 2 1531 \N +59471 2025-06-08 18:38:05.156067+00 2025-06-08 18:38:05.156077+00 f t TOTAL 64500.00 3 1531 \N +59472 2025-06-08 18:38:05.157522+00 2025-06-08 18:38:05.15753+00 f t ADELANTO 17000.00 4 1531 \N +58777 2025-06-08 11:45:50.851187+00 2025-06-08 11:45:50.851198+00 f t SUBTOTAL 50000.00 1 1511 \N +58778 2025-06-08 11:45:50.853443+00 2025-06-08 11:45:50.853454+00 f t DESCUENTO 0.00 2 1511 \N +58779 2025-06-08 11:45:50.854886+00 2025-06-08 11:45:50.854895+00 f t TOTAL 50000.00 3 1511 \N +58780 2025-06-08 11:45:50.856963+00 2025-06-08 11:45:50.856972+00 f t ADELANTO 10000.00 4 1511 \N +58785 2025-06-08 12:13:57.151403+00 2025-06-08 12:13:57.151412+00 f t SUBTOTAL 0.00 1 1512 \N +58786 2025-06-08 12:13:57.152717+00 2025-06-08 12:13:57.152724+00 f t DESCUENTO 0.00 2 1512 \N +58787 2025-06-08 12:13:57.15377+00 2025-06-08 12:13:57.153777+00 f t TOTAL 0.00 3 1512 \N +58788 2025-06-08 12:13:57.154792+00 2025-06-08 12:13:57.154797+00 f t ADELANTO 0.00 4 1512 \N +59601 2025-06-08 21:20:48.662008+00 2025-06-08 21:20:48.662018+00 f t SUBTOTAL 0.00 1 1536 \N +59602 2025-06-08 21:20:48.663377+00 2025-06-08 21:20:48.663385+00 f t DESCUENTO 0.00 2 1536 \N +59603 2025-06-08 21:20:48.664579+00 2025-06-08 21:20:48.664586+00 f t TOTAL 0.00 3 1536 \N +59604 2025-06-08 21:20:48.665739+00 2025-06-08 21:20:48.665745+00 f t ADELANTO 0.00 4 1536 \N +58813 2025-06-08 12:25:43.49314+00 2025-06-08 12:25:43.493151+00 f t SUBTOTAL 95000.00 1 1513 \N +58814 2025-06-08 12:25:43.495724+00 2025-06-08 12:25:43.495732+00 f t DESCUENTO 0.00 2 1513 \N +58815 2025-06-08 12:25:43.497227+00 2025-06-08 12:25:43.497235+00 f t TOTAL 95000.00 3 1513 \N +58816 2025-06-08 12:25:43.498892+00 2025-06-08 12:25:43.498898+00 f t ADELANTO 10000.00 4 1513 \N +58849 2025-06-08 12:37:10.460761+00 2025-06-08 12:37:10.460773+00 f t SUBTOTAL 50000.00 1 1514 \N +58850 2025-06-08 12:37:10.462595+00 2025-06-08 12:37:10.462606+00 f t DESCUENTO 0.00 2 1514 \N +58851 2025-06-08 12:37:10.464241+00 2025-06-08 12:37:10.464252+00 f t TOTAL 50000.00 3 1514 \N +58852 2025-06-08 12:37:10.466145+00 2025-06-08 12:37:10.466153+00 f t ADELANTO 10000.00 4 1514 \N +59845 2025-06-08 23:55:06.747218+00 2025-06-08 23:55:06.74723+00 f t SUBTOTAL 50000.00 1 1544 \N +59846 2025-06-08 23:55:06.749031+00 2025-06-08 23:55:06.74904+00 f t DESCUENTO 0.00 2 1544 \N +59847 2025-06-08 23:55:06.750373+00 2025-06-08 23:55:06.750379+00 f t TOTAL 50000.00 3 1544 \N +59848 2025-06-08 23:55:06.751513+00 2025-06-08 23:55:06.751518+00 f t ADELANTO 10000.00 4 1544 \N +58913 2025-06-08 13:02:42.273585+00 2025-06-08 13:02:42.273595+00 f t SUBTOTAL 50000.00 1 1515 \N +58914 2025-06-08 13:02:42.275657+00 2025-06-08 13:02:42.275677+00 f t DESCUENTO 0.00 2 1515 \N +58915 2025-06-08 13:02:42.277164+00 2025-06-08 13:02:42.277172+00 f t TOTAL 50000.00 3 1515 \N +58916 2025-06-08 13:02:42.278409+00 2025-06-08 13:02:42.278415+00 f t ADELANTO 10000.00 4 1515 \N +60037 2025-06-09 00:48:42.269329+00 2025-06-09 00:48:42.269341+00 f t SUBTOTAL 64500.00 1 1546 \N +60038 2025-06-09 00:48:42.271631+00 2025-06-09 00:48:42.271642+00 f t DESCUENTO 0.00 2 1546 \N +60039 2025-06-09 00:48:42.273531+00 2025-06-09 00:48:42.27354+00 f t TOTAL 64500.00 3 1546 \N +60040 2025-06-09 00:48:42.276033+00 2025-06-09 00:48:42.276043+00 f t ADELANTO 17000.00 4 1546 \N +61261 2025-06-09 16:32:02.218526+00 2025-06-09 16:32:02.218535+00 f t SUBTOTAL 0.00 1 1573 \N +61262 2025-06-09 16:32:02.225117+00 2025-06-09 16:32:02.22513+00 f t DESCUENTO 0.00 2 1573 \N +61263 2025-06-09 16:32:02.228094+00 2025-06-09 16:32:02.228108+00 f t TOTAL 0.00 3 1573 \N +61264 2025-06-09 16:32:02.230829+00 2025-06-09 16:32:02.230843+00 f t ADELANTO 0.00 4 1573 \N +58961 2025-06-08 13:04:10.915577+00 2025-06-08 13:04:10.915588+00 f t SUBTOTAL 50000.00 1 1516 \N +58962 2025-06-08 13:04:10.917793+00 2025-06-08 13:04:10.917804+00 f t DESCUENTO 0.00 2 1516 \N +58963 2025-06-08 13:04:10.919294+00 2025-06-08 13:04:10.919303+00 f t TOTAL 50000.00 3 1516 \N +58964 2025-06-08 13:04:10.921288+00 2025-06-08 13:04:10.921296+00 f t ADELANTO 10000.00 4 1516 \N +60397 2025-06-09 11:34:59.543127+00 2025-06-09 11:34:59.543135+00 f t SUBTOTAL 0.00 1 1553 \N +60398 2025-06-09 11:34:59.544802+00 2025-06-09 11:34:59.54481+00 f t DESCUENTO 0.00 2 1553 \N +60399 2025-06-09 11:34:59.546079+00 2025-06-09 11:34:59.546085+00 f t TOTAL 0.00 3 1553 \N +60400 2025-06-09 11:34:59.547201+00 2025-06-09 11:34:59.547207+00 f t ADELANTO 0.00 4 1553 \N +73110 2025-06-15 23:40:33.251999+00 2025-06-15 23:40:33.252012+00 f t DESCUENTO 0.00 2 1909 \N +73111 2025-06-15 23:40:33.254391+00 2025-06-15 23:40:33.254401+00 f t TOTAL 0.00 3 1909 \N +73112 2025-06-15 23:40:33.256166+00 2025-06-15 23:40:33.256175+00 f t ADELANTO 0.00 4 1909 \N +64857 2025-06-11 11:27:15.612509+00 2025-06-11 11:27:15.612518+00 f t SUBTOTAL 0.00 1 1685 \N +61841 2025-06-09 20:57:27.640871+00 2025-06-09 20:57:27.640881+00 f t SUBTOTAL 0.00 1 1598 \N +61842 2025-06-09 20:57:27.642257+00 2025-06-09 20:57:27.642263+00 f t DESCUENTO 0.00 2 1598 \N +61843 2025-06-09 20:57:27.643575+00 2025-06-09 20:57:27.643581+00 f t TOTAL 0.00 3 1598 \N +61844 2025-06-09 20:57:27.644665+00 2025-06-09 20:57:27.64467+00 f t ADELANTO 0.00 4 1598 \N +63413 2025-06-10 20:17:11.870565+00 2025-06-10 20:17:11.870581+00 f t SUBTOTAL 0.00 1 1649 \N +60509 2025-06-09 12:28:41.497026+00 2025-06-09 12:28:41.497039+00 f t SUBTOTAL 72000.00 1 1556 \N +60510 2025-06-09 12:28:41.499045+00 2025-06-09 12:28:41.499056+00 f t DESCUENTO 0.00 2 1556 \N +60511 2025-06-09 12:28:41.500793+00 2025-06-09 12:28:41.500802+00 f t TOTAL 72000.00 3 1556 \N +60512 2025-06-09 12:28:41.502028+00 2025-06-09 12:28:41.502036+00 f t ADELANTO 19000.00 4 1556 \N +60561 2025-06-09 12:41:46.597306+00 2025-06-09 12:41:46.597315+00 f t SUBTOTAL 94500.00 1 1557 \N +60562 2025-06-09 12:41:46.599202+00 2025-06-09 12:41:46.599209+00 f t DESCUENTO 0.00 2 1557 \N +60563 2025-06-09 12:41:46.600379+00 2025-06-09 12:41:46.600385+00 f t TOTAL 94500.00 3 1557 \N +60564 2025-06-09 12:41:46.6016+00 2025-06-09 12:41:46.601606+00 f t ADELANTO 26500.00 4 1557 \N +61933 2025-06-09 22:16:56.499477+00 2025-06-09 22:16:56.499489+00 f t SUBTOTAL 0.00 1 1601 \N +61934 2025-06-09 22:16:56.500894+00 2025-06-09 22:16:56.5009+00 f t DESCUENTO 0.00 2 1601 \N +61935 2025-06-09 22:16:56.502033+00 2025-06-09 22:16:56.502039+00 f t TOTAL 0.00 3 1601 \N +61936 2025-06-09 22:16:56.503302+00 2025-06-09 22:16:56.503308+00 f t ADELANTO 0.00 4 1601 \N +59241 2025-06-08 15:06:14.58154+00 2025-06-08 15:06:14.581549+00 f t SUBTOTAL 0.00 1 1523 \N +59242 2025-06-08 15:06:14.583268+00 2025-06-08 15:06:14.583276+00 f t DESCUENTO 0.00 2 1523 \N +59243 2025-06-08 15:06:14.584679+00 2025-06-08 15:06:14.584686+00 f t TOTAL 0.00 3 1523 \N +59244 2025-06-08 15:06:14.58586+00 2025-06-08 15:06:14.585866+00 f t ADELANTO 0.00 4 1523 \N +60645 2025-06-09 13:10:50.281253+00 2025-06-09 13:10:50.281265+00 f t SUBTOTAL 50000.00 1 1558 \N +60646 2025-06-09 13:10:50.283024+00 2025-06-09 13:10:50.283034+00 f t DESCUENTO 0.00 2 1558 \N +60647 2025-06-09 13:10:50.285017+00 2025-06-09 13:10:50.285027+00 f t TOTAL 50000.00 3 1558 \N +60648 2025-06-09 13:10:50.286553+00 2025-06-09 13:10:50.286562+00 f t ADELANTO 10000.00 4 1558 \N +59433 2025-06-08 16:46:41.406628+00 2025-06-08 16:46:41.406637+00 f t SUBTOTAL 0.00 1 1529 \N +59434 2025-06-08 16:46:41.408168+00 2025-06-08 16:46:41.408175+00 f t DESCUENTO 0.00 2 1529 \N +59435 2025-06-08 16:46:41.409277+00 2025-06-08 16:46:41.409283+00 f t TOTAL 0.00 3 1529 \N +59436 2025-06-08 16:46:41.410236+00 2025-06-08 16:46:41.410241+00 f t ADELANTO 0.00 4 1529 \N +59477 2025-06-08 19:03:08.764963+00 2025-06-08 19:03:08.764975+00 f t SUBTOTAL 0.00 1 1532 \N +59478 2025-06-08 19:03:08.766411+00 2025-06-08 19:03:08.766418+00 f t DESCUENTO 0.00 2 1532 \N +59479 2025-06-08 19:03:08.767706+00 2025-06-08 19:03:08.767713+00 f t TOTAL 0.00 3 1532 \N +59480 2025-06-08 19:03:08.768834+00 2025-06-08 19:03:08.76884+00 f t ADELANTO 0.00 4 1532 \N +60785 2025-06-09 13:52:45.542804+00 2025-06-09 13:52:45.542832+00 f t SUBTOTAL 0.00 1 1565 \N +60786 2025-06-09 13:52:45.544584+00 2025-06-09 13:52:45.544595+00 f t DESCUENTO 0.00 2 1565 \N +60787 2025-06-09 13:52:45.546083+00 2025-06-09 13:52:45.546091+00 f t TOTAL 0.00 3 1565 \N +60788 2025-06-09 13:52:45.547349+00 2025-06-09 13:52:45.547371+00 f t ADELANTO 0.00 4 1565 \N +59565 2025-06-08 19:20:45.103965+00 2025-06-08 19:20:45.103976+00 f t SUBTOTAL 57000.00 1 1534 \N +59566 2025-06-08 19:20:45.105685+00 2025-06-08 19:20:45.105693+00 f t DESCUENTO 0.00 2 1534 \N +59567 2025-06-08 19:20:45.107004+00 2025-06-08 19:20:45.107011+00 f t TOTAL 57000.00 3 1534 \N +59568 2025-06-08 19:20:45.108435+00 2025-06-08 19:20:45.108441+00 f t ADELANTO 12000.00 4 1534 \N +60909 2025-06-09 14:12:45.048423+00 2025-06-09 14:12:45.048433+00 f t SUBTOTAL 0.00 1 1568 \N +60910 2025-06-09 14:12:45.050415+00 2025-06-09 14:12:45.050423+00 f t DESCUENTO 0.00 2 1568 \N +60911 2025-06-09 14:12:45.051606+00 2025-06-09 14:12:45.051612+00 f t TOTAL 0.00 3 1568 \N +60912 2025-06-09 14:12:45.052551+00 2025-06-09 14:12:45.052556+00 f t ADELANTO 0.00 4 1568 \N +59681 2025-06-08 22:35:57.097409+00 2025-06-08 22:35:57.097421+00 f t SUBTOTAL 50000.00 1 1539 \N +59682 2025-06-08 22:35:57.09955+00 2025-06-08 22:35:57.099557+00 f t DESCUENTO 0.00 2 1539 \N +59683 2025-06-08 22:35:57.100856+00 2025-06-08 22:35:57.100862+00 f t TOTAL 50000.00 3 1539 \N +59684 2025-06-08 22:35:57.10207+00 2025-06-08 22:35:57.102075+00 f t ADELANTO 10000.00 4 1539 \N +59809 2025-06-08 23:49:52.556758+00 2025-06-08 23:49:52.556767+00 f t SUBTOTAL 88000.00 1 1543 \N +59810 2025-06-08 23:49:52.558771+00 2025-06-08 23:49:52.55878+00 f t DESCUENTO 0.00 2 1543 \N +59811 2025-06-08 23:49:52.560296+00 2025-06-08 23:49:52.560304+00 f t TOTAL 88000.00 3 1543 \N +59812 2025-06-08 23:49:52.562658+00 2025-06-08 23:49:52.562666+00 f t ADELANTO 19000.00 4 1543 \N +61209 2025-06-09 16:29:36.728606+00 2025-06-09 16:29:36.728616+00 f t SUBTOTAL 0.00 1 1572 \N +61210 2025-06-09 16:29:36.730538+00 2025-06-09 16:29:36.730545+00 f t DESCUENTO 0.00 2 1572 \N +61211 2025-06-09 16:29:36.731766+00 2025-06-09 16:29:36.731772+00 f t TOTAL 0.00 3 1572 \N +61212 2025-06-09 16:29:36.732753+00 2025-06-09 16:29:36.732758+00 f t ADELANTO 0.00 4 1572 \N +61273 2025-06-09 16:32:11.87526+00 2025-06-09 16:32:11.87527+00 f t SUBTOTAL 42000.00 1 1574 \N +61274 2025-06-09 16:32:11.877243+00 2025-06-09 16:32:11.877254+00 f t DESCUENTO 0.00 2 1574 \N +61275 2025-06-09 16:32:11.878668+00 2025-06-09 16:32:11.878677+00 f t TOTAL 42000.00 3 1574 \N +61276 2025-06-09 16:32:11.880065+00 2025-06-09 16:32:11.880071+00 f t ADELANTO 9500.00 4 1574 \N +61289 2025-06-09 16:43:22.081169+00 2025-06-09 16:43:22.08118+00 f t SUBTOTAL 0.00 1 1576 \N +61290 2025-06-09 16:43:22.083063+00 2025-06-09 16:43:22.083073+00 f t DESCUENTO 0.00 2 1576 \N +61291 2025-06-09 16:43:22.084677+00 2025-06-09 16:43:22.084684+00 f t TOTAL 0.00 3 1576 \N +61292 2025-06-09 16:43:22.085986+00 2025-06-09 16:43:22.085995+00 f t ADELANTO 0.00 4 1576 \N +61321 2025-06-09 16:45:47.815668+00 2025-06-09 16:45:47.815679+00 f t SUBTOTAL 57000.00 1 1577 \N +61322 2025-06-09 16:45:47.817644+00 2025-06-09 16:45:47.817653+00 f t DESCUENTO 0.00 2 1577 \N +61323 2025-06-09 16:45:47.81902+00 2025-06-09 16:45:47.819027+00 f t TOTAL 57000.00 3 1577 \N +61324 2025-06-09 16:45:47.820376+00 2025-06-09 16:45:47.820382+00 f t ADELANTO 12000.00 4 1577 \N +64858 2025-06-11 11:27:15.614337+00 2025-06-11 11:27:15.614348+00 f t DESCUENTO 0.00 2 1685 \N +64859 2025-06-11 11:27:15.616207+00 2025-06-11 11:27:15.616214+00 f t TOTAL 0.00 3 1685 \N +64860 2025-06-11 11:27:15.617559+00 2025-06-11 11:27:15.617568+00 f t ADELANTO 0.00 4 1685 \N +78509 2025-06-18 17:46:18.653122+00 2025-06-18 17:46:18.653134+00 f t SUBTOTAL 0.00 1 2051 \N +78510 2025-06-18 17:46:18.65785+00 2025-06-18 17:46:18.657864+00 f t DESCUENTO 0.00 2 2051 \N +78511 2025-06-18 17:46:18.65969+00 2025-06-18 17:46:18.659698+00 f t TOTAL 0.00 3 2051 \N +63414 2025-06-10 20:17:11.873167+00 2025-06-10 20:17:11.873179+00 f t DESCUENTO 0.00 2 1649 \N +63415 2025-06-10 20:17:11.87622+00 2025-06-10 20:17:11.876233+00 f t TOTAL 0.00 3 1649 \N +63416 2025-06-10 20:17:11.878244+00 2025-06-10 20:17:11.878257+00 f t ADELANTO 0.00 4 1649 \N +60133 2025-06-09 01:31:42.149976+00 2025-06-09 01:31:42.149985+00 f t SUBTOTAL 95500.00 1 1547 \N +60134 2025-06-09 01:31:42.151918+00 2025-06-09 01:31:42.15193+00 f t DESCUENTO 0.00 2 1547 \N +60135 2025-06-09 01:31:42.153672+00 2025-06-09 01:31:42.15368+00 f t TOTAL 95500.00 3 1547 \N +60136 2025-06-09 01:31:42.155059+00 2025-06-09 01:31:42.155068+00 f t ADELANTO 21000.00 4 1547 \N +63609 2025-06-10 20:48:27.510628+00 2025-06-10 20:48:27.510641+00 f t SUBTOTAL 50000.00 1 1653 \N +63610 2025-06-10 20:48:27.51294+00 2025-06-10 20:48:27.512948+00 f t DESCUENTO 0.00 2 1653 \N +63611 2025-06-10 20:48:27.514596+00 2025-06-10 20:48:27.514605+00 f t TOTAL 50000.00 3 1653 \N +63612 2025-06-10 20:48:27.51604+00 2025-06-10 20:48:27.516046+00 f t ADELANTO 10000.00 4 1653 \N +60653 2025-06-09 13:15:13.653125+00 2025-06-09 13:15:13.653135+00 f t SUBTOTAL 0.00 1 1559 \N +60654 2025-06-09 13:15:13.655114+00 2025-06-09 13:15:13.65512+00 f t DESCUENTO 0.00 2 1559 \N +60655 2025-06-09 13:15:13.656586+00 2025-06-09 13:15:13.656592+00 f t TOTAL 0.00 3 1559 \N +60656 2025-06-09 13:15:13.657838+00 2025-06-09 13:15:13.657847+00 f t ADELANTO 0.00 4 1559 \N +62109 2025-06-10 01:39:46.04059+00 2025-06-10 01:39:46.040602+00 f t SUBTOTAL 0.00 1 1609 \N +62110 2025-06-10 01:39:46.042194+00 2025-06-10 01:39:46.042201+00 f t DESCUENTO 0.00 2 1609 \N +62111 2025-06-10 01:39:46.043625+00 2025-06-10 01:39:46.043631+00 f t TOTAL 0.00 3 1609 \N +62112 2025-06-10 01:39:46.045241+00 2025-06-10 01:39:46.045247+00 f t ADELANTO 0.00 4 1609 \N +60733 2025-06-09 13:51:15.516313+00 2025-06-09 13:51:15.516327+00 f t SUBTOTAL 64500.00 1 1562 \N +60734 2025-06-09 13:51:15.518492+00 2025-06-09 13:51:15.518549+00 f t DESCUENTO 0.00 2 1562 \N +60735 2025-06-09 13:51:15.520319+00 2025-06-09 13:51:15.520329+00 f t TOTAL 64500.00 3 1562 \N +60736 2025-06-09 13:51:15.522002+00 2025-06-09 13:51:15.52201+00 f t ADELANTO 17000.00 4 1562 \N +60753 2025-06-09 13:51:47.511304+00 2025-06-09 13:51:47.511315+00 f t SUBTOTAL 0.00 1 1564 \N +60754 2025-06-09 13:51:47.513286+00 2025-06-09 13:51:47.513294+00 f t DESCUENTO 0.00 2 1564 \N +60755 2025-06-09 13:51:47.514958+00 2025-06-09 13:51:47.514966+00 f t TOTAL 0.00 3 1564 \N +60756 2025-06-09 13:51:47.516199+00 2025-06-09 13:51:47.516205+00 f t ADELANTO 0.00 4 1564 \N +60805 2025-06-09 13:53:13.000672+00 2025-06-09 13:53:13.000681+00 f t SUBTOTAL 163700.00 1 1563 \N +60806 2025-06-09 13:53:13.002257+00 2025-06-09 13:53:13.002265+00 f t DESCUENTO 0.00 2 1563 \N +60807 2025-06-09 13:53:13.003628+00 2025-06-09 13:53:13.003635+00 f t TOTAL 163700.00 3 1563 \N +60201 2025-06-09 03:28:08.17585+00 2025-06-09 03:28:08.17586+00 f t SUBTOTAL 95000.00 1 1548 \N +60202 2025-06-09 03:28:08.177478+00 2025-06-09 03:28:08.177484+00 f t DESCUENTO 0.00 2 1548 \N +60203 2025-06-09 03:28:08.179095+00 2025-06-09 03:28:08.179105+00 f t TOTAL 95000.00 3 1548 \N +60204 2025-06-09 03:28:08.180783+00 2025-06-09 03:28:08.18079+00 f t ADELANTO 10000.00 4 1548 \N +60808 2025-06-09 13:53:13.005583+00 2025-06-09 13:53:13.005589+00 f t ADELANTO 85700.00 4 1563 \N +62241 2025-06-10 02:47:31.542463+00 2025-06-10 02:47:31.542477+00 f t SUBTOTAL 50000.00 1 1612 \N +62242 2025-06-10 02:47:31.545304+00 2025-06-10 02:47:31.545318+00 f t DESCUENTO 0.00 2 1612 \N +62243 2025-06-10 02:47:31.547455+00 2025-06-10 02:47:31.547467+00 f t TOTAL 50000.00 3 1612 \N +62244 2025-06-10 02:47:31.549348+00 2025-06-10 02:47:31.549359+00 f t ADELANTO 10000.00 4 1612 \N +62269 2025-06-10 02:57:25.554387+00 2025-06-10 02:57:25.554396+00 f t SUBTOTAL 42000.00 1 1613 \N +62270 2025-06-10 02:57:25.556121+00 2025-06-10 02:57:25.55613+00 f t DESCUENTO 0.00 2 1613 \N +62271 2025-06-10 02:57:25.5576+00 2025-06-10 02:57:25.55761+00 f t TOTAL 42000.00 3 1613 \N +62272 2025-06-10 02:57:25.55915+00 2025-06-10 02:57:25.559157+00 f t ADELANTO 9500.00 4 1613 \N +60261 2025-06-09 05:45:56.397801+00 2025-06-09 05:45:56.39781+00 f t SUBTOTAL 42000.00 1 1549 \N +60262 2025-06-09 05:45:56.399633+00 2025-06-09 05:45:56.399709+00 f t DESCUENTO 0.00 2 1549 \N +60263 2025-06-09 05:45:56.401435+00 2025-06-09 05:45:56.401443+00 f t TOTAL 42000.00 3 1549 \N +60264 2025-06-09 05:45:56.402935+00 2025-06-09 05:45:56.402943+00 f t ADELANTO 9500.00 4 1549 \N +61061 2025-06-09 14:47:26.855975+00 2025-06-09 14:47:26.855987+00 f t SUBTOTAL 42000.00 1 1570 \N +61062 2025-06-09 14:47:26.857709+00 2025-06-09 14:47:26.857719+00 f t DESCUENTO 0.00 2 1570 \N +61063 2025-06-09 14:47:26.859064+00 2025-06-09 14:47:26.859073+00 f t TOTAL 42000.00 3 1570 \N +61064 2025-06-09 14:47:26.860447+00 2025-06-09 14:47:26.860454+00 f t ADELANTO 9500.00 4 1570 \N +62373 2025-06-10 04:21:57.916197+00 2025-06-10 04:21:57.916206+00 f t SUBTOTAL 64500.00 1 1615 \N +62374 2025-06-10 04:21:57.917958+00 2025-06-10 04:21:57.917968+00 f t DESCUENTO 0.00 2 1615 \N +62375 2025-06-10 04:21:57.919838+00 2025-06-10 04:21:57.919849+00 f t TOTAL 64500.00 3 1615 \N +62376 2025-06-10 04:21:57.921796+00 2025-06-10 04:21:57.921808+00 f t ADELANTO 17000.00 4 1615 \N +60289 2025-06-09 07:08:24.177039+00 2025-06-09 07:08:24.177049+00 f t SUBTOTAL 42000.00 1 1550 \N +60290 2025-06-09 07:08:24.178947+00 2025-06-09 07:08:24.178959+00 f t DESCUENTO 0.00 2 1550 \N +60291 2025-06-09 07:08:24.180568+00 2025-06-09 07:08:24.180574+00 f t TOTAL 42000.00 3 1550 \N +60292 2025-06-09 07:08:24.181636+00 2025-06-09 07:08:24.181643+00 f t ADELANTO 9500.00 4 1550 \N +61125 2025-06-09 15:35:51.984596+00 2025-06-09 15:35:51.984605+00 f t SUBTOTAL 0.00 1 1571 \N +61126 2025-06-09 15:35:51.986584+00 2025-06-09 15:35:51.986593+00 f t DESCUENTO 0.00 2 1571 \N +61127 2025-06-09 15:35:51.988139+00 2025-06-09 15:35:51.988147+00 f t TOTAL 0.00 3 1571 \N +60297 2025-06-09 09:53:07.84034+00 2025-06-09 09:53:07.840351+00 f t SUBTOTAL 0.00 1 1551 \N +60298 2025-06-09 09:53:07.841724+00 2025-06-09 09:53:07.841729+00 f t DESCUENTO 0.00 2 1551 \N +60299 2025-06-09 09:53:07.842951+00 2025-06-09 09:53:07.842956+00 f t TOTAL 0.00 3 1551 \N +60300 2025-06-09 09:53:07.843911+00 2025-06-09 09:53:07.843916+00 f t ADELANTO 0.00 4 1551 \N +61128 2025-06-09 15:35:51.989441+00 2025-06-09 15:35:51.989451+00 f t ADELANTO 0.00 4 1571 \N +60333 2025-06-09 11:18:19.437463+00 2025-06-09 11:18:19.437473+00 f t SUBTOTAL 0.00 1 1552 \N +60334 2025-06-09 11:18:19.439567+00 2025-06-09 11:18:19.439574+00 f t DESCUENTO 0.00 2 1552 \N +60335 2025-06-09 11:18:19.440876+00 2025-06-09 11:18:19.440882+00 f t TOTAL 0.00 3 1552 \N +60336 2025-06-09 11:18:19.441942+00 2025-06-09 11:18:19.441947+00 f t ADELANTO 0.00 4 1552 \N +61281 2025-06-09 16:41:40.874922+00 2025-06-09 16:41:40.874935+00 f t SUBTOTAL 0.00 1 1575 \N +61282 2025-06-09 16:41:40.877719+00 2025-06-09 16:41:40.877728+00 f t DESCUENTO 0.00 2 1575 \N +61283 2025-06-09 16:41:40.881+00 2025-06-09 16:41:40.881012+00 f t TOTAL 0.00 3 1575 \N +61284 2025-06-09 16:41:40.883104+00 2025-06-09 16:41:40.883115+00 f t ADELANTO 0.00 4 1575 \N +61353 2025-06-09 16:49:45.750327+00 2025-06-09 16:49:45.750336+00 f t SUBTOTAL 57000.00 1 1578 \N +61354 2025-06-09 16:49:45.752004+00 2025-06-09 16:49:45.75201+00 f t DESCUENTO 0.00 2 1578 \N +61355 2025-06-09 16:49:45.753259+00 2025-06-09 16:49:45.753266+00 f t TOTAL 57000.00 3 1578 \N +61356 2025-06-09 16:49:45.754437+00 2025-06-09 16:49:45.754445+00 f t ADELANTO 12000.00 4 1578 \N +68185 2025-06-13 03:22:28.789508+00 2025-06-13 03:22:28.789518+00 f t SUBTOTAL 0.00 1 1773 \N +68186 2025-06-13 03:22:28.791863+00 2025-06-13 03:22:28.791872+00 f t DESCUENTO 0.00 2 1773 \N +68187 2025-06-13 03:22:28.793401+00 2025-06-13 03:22:28.793411+00 f t TOTAL 0.00 3 1773 \N +68188 2025-06-13 03:22:28.794901+00 2025-06-13 03:22:28.794908+00 f t ADELANTO 0.00 4 1773 \N +62065 2025-06-10 00:15:29.99979+00 2025-06-10 00:15:29.9998+00 f t SUBTOTAL 42000.00 1 1606 \N +62066 2025-06-10 00:15:30.001497+00 2025-06-10 00:15:30.001505+00 f t DESCUENTO 0.00 2 1606 \N +62067 2025-06-10 00:15:30.002773+00 2025-06-10 00:15:30.00278+00 f t TOTAL 42000.00 3 1606 \N +62068 2025-06-10 00:15:30.004121+00 2025-06-10 00:15:30.00413+00 f t ADELANTO 9500.00 4 1606 \N +62093 2025-06-10 01:08:20.419659+00 2025-06-10 01:08:20.419671+00 f t SUBTOTAL 50000.00 1 1607 \N +62094 2025-06-10 01:08:20.421457+00 2025-06-10 01:08:20.421464+00 f t DESCUENTO 0.00 2 1607 \N +62095 2025-06-10 01:08:20.422799+00 2025-06-10 01:08:20.422805+00 f t TOTAL 50000.00 3 1607 \N +62096 2025-06-10 01:08:20.424209+00 2025-06-10 01:08:20.424216+00 f t ADELANTO 10000.00 4 1607 \N +62129 2025-06-10 01:45:10.620762+00 2025-06-10 01:45:10.620773+00 f t SUBTOTAL 0.00 1 1610 \N +62130 2025-06-10 01:45:10.623495+00 2025-06-10 01:45:10.623569+00 f t DESCUENTO 0.00 2 1610 \N +62131 2025-06-10 01:45:10.625785+00 2025-06-10 01:45:10.625796+00 f t TOTAL 0.00 3 1610 \N +62132 2025-06-10 01:45:10.627607+00 2025-06-10 01:45:10.627615+00 f t ADELANTO 0.00 4 1610 \N +62145 2025-06-10 02:30:03.60049+00 2025-06-10 02:30:03.600506+00 f t SUBTOTAL 0.00 1 1611 \N +62146 2025-06-10 02:30:03.604269+00 2025-06-10 02:30:03.604285+00 f t DESCUENTO 0.00 2 1611 \N +62147 2025-06-10 02:30:03.606897+00 2025-06-10 02:30:03.606912+00 f t TOTAL 0.00 3 1611 \N +62148 2025-06-10 02:30:03.609514+00 2025-06-10 02:30:03.609529+00 f t ADELANTO 0.00 4 1611 \N +61433 2025-06-09 17:01:42.429457+00 2025-06-09 17:01:42.429469+00 f t SUBTOTAL 72000.00 1 1580 \N +61434 2025-06-09 17:01:42.431628+00 2025-06-09 17:01:42.431638+00 f t DESCUENTO 0.00 2 1580 \N +61435 2025-06-09 17:01:42.433754+00 2025-06-09 17:01:42.433766+00 f t TOTAL 72000.00 3 1580 \N +61436 2025-06-09 17:01:42.435567+00 2025-06-09 17:01:42.435575+00 f t ADELANTO 19000.00 4 1580 \N +61449 2025-06-09 17:02:30.222434+00 2025-06-09 17:02:30.222443+00 f t SUBTOTAL 57000.00 1 1579 \N +61450 2025-06-09 17:02:30.224398+00 2025-06-09 17:02:30.224405+00 f t DESCUENTO 0.00 2 1579 \N +61451 2025-06-09 17:02:30.225841+00 2025-06-09 17:02:30.225848+00 f t TOTAL 57000.00 3 1579 \N +61452 2025-06-09 17:02:30.227272+00 2025-06-09 17:02:30.227279+00 f t ADELANTO 12000.00 4 1579 \N +61457 2025-06-09 17:22:58.394142+00 2025-06-09 17:22:58.394152+00 f t SUBTOTAL 0.00 1 1581 \N +61458 2025-06-09 17:22:58.395471+00 2025-06-09 17:22:58.395478+00 f t DESCUENTO 0.00 2 1581 \N +61459 2025-06-09 17:22:58.396475+00 2025-06-09 17:22:58.39648+00 f t TOTAL 0.00 3 1581 \N +61460 2025-06-09 17:22:58.397311+00 2025-06-09 17:22:58.397315+00 f t ADELANTO 0.00 4 1581 \N +61473 2025-06-09 17:38:37.365292+00 2025-06-09 17:38:37.365305+00 f t SUBTOTAL 0.00 1 1582 \N +61474 2025-06-09 17:38:37.367575+00 2025-06-09 17:38:37.367583+00 f t DESCUENTO 0.00 2 1582 \N +61475 2025-06-09 17:38:37.369007+00 2025-06-09 17:38:37.369018+00 f t TOTAL 0.00 3 1582 \N +61476 2025-06-09 17:38:37.370109+00 2025-06-09 17:38:37.370115+00 f t ADELANTO 0.00 4 1582 \N +62337 2025-06-10 03:09:43.401783+00 2025-06-10 03:09:43.401792+00 f t SUBTOTAL 42000.00 1 1614 \N +62338 2025-06-10 03:09:43.403503+00 2025-06-10 03:09:43.40351+00 f t DESCUENTO 0.00 2 1614 \N +62339 2025-06-10 03:09:43.404739+00 2025-06-10 03:09:43.404745+00 f t TOTAL 42000.00 3 1614 \N +62340 2025-06-10 03:09:43.405717+00 2025-06-10 03:09:43.405723+00 f t ADELANTO 9500.00 4 1614 \N +61505 2025-06-09 17:39:51.198082+00 2025-06-09 17:39:51.198091+00 f t SUBTOTAL 57000.00 1 1583 \N +61506 2025-06-09 17:39:51.199665+00 2025-06-09 17:39:51.199673+00 f t DESCUENTO 0.00 2 1583 \N +61507 2025-06-09 17:39:51.200793+00 2025-06-09 17:39:51.200799+00 f t TOTAL 57000.00 3 1583 \N +61508 2025-06-09 17:39:51.201759+00 2025-06-09 17:39:51.201765+00 f t ADELANTO 12000.00 4 1583 \N +61513 2025-06-09 18:14:21.299721+00 2025-06-09 18:14:21.299733+00 f t SUBTOTAL 0.00 1 1584 \N +61514 2025-06-09 18:14:21.301238+00 2025-06-09 18:14:21.301245+00 f t DESCUENTO 0.00 2 1584 \N +61515 2025-06-09 18:14:21.30241+00 2025-06-09 18:14:21.302417+00 f t TOTAL 0.00 3 1584 \N +61516 2025-06-09 18:14:21.303715+00 2025-06-09 18:14:21.303723+00 f t ADELANTO 0.00 4 1584 \N +61521 2025-06-09 18:33:53.716871+00 2025-06-09 18:33:53.716885+00 f t SUBTOTAL 0.00 1 1585 \N +61522 2025-06-09 18:33:53.718378+00 2025-06-09 18:33:53.718386+00 f t DESCUENTO 0.00 2 1585 \N +61523 2025-06-09 18:33:53.719893+00 2025-06-09 18:33:53.7199+00 f t TOTAL 0.00 3 1585 \N +61524 2025-06-09 18:33:53.721116+00 2025-06-09 18:33:53.721124+00 f t ADELANTO 0.00 4 1585 \N +62429 2025-06-10 05:31:14.703295+00 2025-06-10 05:31:14.703308+00 f t SUBTOTAL 42000.00 1 1616 \N +62430 2025-06-10 05:31:14.705588+00 2025-06-10 05:31:14.705597+00 f t DESCUENTO 0.00 2 1616 \N +62431 2025-06-10 05:31:14.706942+00 2025-06-10 05:31:14.70695+00 f t TOTAL 42000.00 3 1616 \N +62432 2025-06-10 05:31:14.708277+00 2025-06-10 05:31:14.708285+00 f t ADELANTO 9500.00 4 1616 \N +62457 2025-06-10 05:47:05.462744+00 2025-06-10 05:47:05.462756+00 f t SUBTOTAL 42000.00 1 1617 \N +62458 2025-06-10 05:47:05.46464+00 2025-06-10 05:47:05.464648+00 f t DESCUENTO 0.00 2 1617 \N +62459 2025-06-10 05:47:05.465818+00 2025-06-10 05:47:05.465824+00 f t TOTAL 42000.00 3 1617 \N +62460 2025-06-10 05:47:05.466889+00 2025-06-10 05:47:05.466894+00 f t ADELANTO 9500.00 4 1617 \N +62485 2025-06-10 08:31:03.327897+00 2025-06-10 08:31:03.32791+00 f t SUBTOTAL 50000.00 1 1618 \N +62486 2025-06-10 08:31:03.329921+00 2025-06-10 08:31:03.329932+00 f t DESCUENTO 0.00 2 1618 \N +61553 2025-06-09 18:35:28.29506+00 2025-06-09 18:35:28.295071+00 f t SUBTOTAL 57000.00 1 1586 \N +61554 2025-06-09 18:35:28.2996+00 2025-06-09 18:35:28.299614+00 f t DESCUENTO 0.00 2 1586 \N +61555 2025-06-09 18:35:28.301445+00 2025-06-09 18:35:28.301456+00 f t TOTAL 57000.00 3 1586 \N +61556 2025-06-09 18:35:28.303005+00 2025-06-09 18:35:28.303014+00 f t ADELANTO 12000.00 4 1586 \N +62487 2025-06-10 08:31:03.331594+00 2025-06-10 08:31:03.331605+00 f t TOTAL 50000.00 3 1618 \N +62488 2025-06-10 08:31:03.333326+00 2025-06-10 08:31:03.333336+00 f t ADELANTO 10000.00 4 1618 \N +61581 2025-06-09 18:58:25.128225+00 2025-06-09 18:58:25.128238+00 f t SUBTOTAL 70000.00 1 1587 \N +61582 2025-06-09 18:58:25.129875+00 2025-06-09 18:58:25.129882+00 f t DESCUENTO 0.00 2 1587 \N +61583 2025-06-09 18:58:25.131285+00 2025-06-09 18:58:25.131292+00 f t TOTAL 70000.00 3 1587 \N +61584 2025-06-09 18:58:25.132797+00 2025-06-09 18:58:25.132803+00 f t ADELANTO 15000.00 4 1587 \N +62657 2025-06-10 11:17:07.498923+00 2025-06-10 11:17:07.498933+00 f t SUBTOTAL 45000.00 1 1621 \N +62658 2025-06-10 11:17:07.500738+00 2025-06-10 11:17:07.500745+00 f t DESCUENTO 0.00 2 1621 \N +62659 2025-06-10 11:17:07.502261+00 2025-06-10 11:17:07.502269+00 f t TOTAL 45000.00 3 1621 \N +62660 2025-06-10 11:17:07.503902+00 2025-06-10 11:17:07.503925+00 f t ADELANTO 10000.00 4 1621 \N +78512 2025-06-18 17:46:18.661106+00 2025-06-18 17:46:18.661113+00 f t ADELANTO 0.00 4 2051 \N +63389 2025-06-10 19:32:45.596263+00 2025-06-10 19:32:45.596276+00 f t SUBTOTAL 42000.00 1 1647 \N +63390 2025-06-10 19:32:45.598722+00 2025-06-10 19:32:45.598733+00 f t DESCUENTO 0.00 2 1647 \N +63391 2025-06-10 19:32:45.60086+00 2025-06-10 19:32:45.60087+00 f t TOTAL 42000.00 3 1647 \N +63392 2025-06-10 19:32:45.602624+00 2025-06-10 19:32:45.602632+00 f t ADELANTO 9500.00 4 1647 \N +61901 2025-06-09 22:14:35.34485+00 2025-06-09 22:14:35.34486+00 f t SUBTOTAL 50000.00 1 1599 \N +61902 2025-06-09 22:14:35.346346+00 2025-06-09 22:14:35.346351+00 f t DESCUENTO 0.00 2 1599 \N +61903 2025-06-09 22:14:35.347451+00 2025-06-09 22:14:35.347462+00 f t TOTAL 50000.00 3 1599 \N +61904 2025-06-09 22:14:35.348783+00 2025-06-09 22:14:35.348789+00 f t ADELANTO 10000.00 4 1599 \N +61645 2025-06-09 19:12:19.175119+00 2025-06-09 19:12:19.175132+00 f t SUBTOTAL 57000.00 1 1588 \N +61646 2025-06-09 19:12:19.177095+00 2025-06-09 19:12:19.177105+00 f t DESCUENTO 0.00 2 1588 \N +61647 2025-06-09 19:12:19.17862+00 2025-06-09 19:12:19.178631+00 f t TOTAL 57000.00 3 1588 \N +61648 2025-06-09 19:12:19.180209+00 2025-06-09 19:12:19.180216+00 f t ADELANTO 12000.00 4 1588 \N +64989 2025-06-11 13:40:48.615438+00 2025-06-11 13:40:48.615454+00 f t SUBTOTAL 0.00 1 1686 \N +64990 2025-06-11 13:40:48.618076+00 2025-06-11 13:40:48.618084+00 f t DESCUENTO 0.00 2 1686 \N +64991 2025-06-11 13:40:48.619309+00 2025-06-11 13:40:48.619314+00 f t TOTAL 0.00 3 1686 \N +64992 2025-06-11 13:40:48.62063+00 2025-06-11 13:40:48.620636+00 f t ADELANTO 0.00 4 1686 \N +62001 2025-06-09 22:46:30.09571+00 2025-06-09 22:46:30.095719+00 f t SUBTOTAL 50000.00 1 1603 \N +62002 2025-06-09 22:46:30.097514+00 2025-06-09 22:46:30.09752+00 f t DESCUENTO 0.00 2 1603 \N +62003 2025-06-09 22:46:30.098924+00 2025-06-09 22:46:30.098931+00 f t TOTAL 50000.00 3 1603 \N +62004 2025-06-09 22:46:30.100057+00 2025-06-09 22:46:30.100062+00 f t ADELANTO 10000.00 4 1603 \N +63617 2025-06-10 20:58:17.07132+00 2025-06-10 20:58:17.071333+00 f t SUBTOTAL 0.00 1 1654 \N +63618 2025-06-10 20:58:17.073385+00 2025-06-10 20:58:17.073396+00 f t DESCUENTO 0.00 2 1654 \N +63619 2025-06-10 20:58:17.075592+00 2025-06-10 20:58:17.075603+00 f t TOTAL 0.00 3 1654 \N +63620 2025-06-10 20:58:17.077244+00 2025-06-10 20:58:17.077252+00 f t ADELANTO 0.00 4 1654 \N +62101 2025-06-10 01:34:49.090505+00 2025-06-10 01:34:49.09052+00 f t SUBTOTAL 0.00 1 1608 \N +62102 2025-06-10 01:34:49.092273+00 2025-06-10 01:34:49.092282+00 f t DESCUENTO 0.00 2 1608 \N +62103 2025-06-10 01:34:49.097605+00 2025-06-10 01:34:49.097617+00 f t TOTAL 0.00 3 1608 \N +62104 2025-06-10 01:34:49.099494+00 2025-06-10 01:34:49.099502+00 f t ADELANTO 0.00 4 1608 \N +61709 2025-06-09 19:26:11.165674+00 2025-06-09 19:26:11.165686+00 f t SUBTOTAL 58800.00 1 1589 \N +61710 2025-06-09 19:26:11.16786+00 2025-06-09 19:26:11.167873+00 f t DESCUENTO 0.00 2 1589 \N +61711 2025-06-09 19:26:11.170229+00 2025-06-09 19:26:11.170242+00 f t TOTAL 58800.00 3 1589 \N +61712 2025-06-09 19:26:11.173654+00 2025-06-09 19:26:11.173668+00 f t ADELANTO 14300.00 4 1589 \N +61737 2025-06-09 19:32:41.166676+00 2025-06-09 19:32:41.166686+00 f t SUBTOTAL 49500.00 1 1590 \N +61738 2025-06-09 19:32:41.16866+00 2025-06-09 19:32:41.168691+00 f t DESCUENTO 0.00 2 1590 \N +61739 2025-06-09 19:32:41.170239+00 2025-06-09 19:32:41.170247+00 f t TOTAL 49500.00 3 1590 \N +61740 2025-06-09 19:32:41.171513+00 2025-06-09 19:32:41.171519+00 f t ADELANTO 11500.00 4 1590 \N +61745 2025-06-09 19:59:38.302055+00 2025-06-09 19:59:38.302074+00 f t SUBTOTAL 0.00 1 1591 \N +61746 2025-06-09 19:59:38.303747+00 2025-06-09 19:59:38.303757+00 f t DESCUENTO 0.00 2 1591 \N +61747 2025-06-09 19:59:38.305628+00 2025-06-09 19:59:38.305637+00 f t TOTAL 0.00 3 1591 \N +61748 2025-06-09 19:59:38.30705+00 2025-06-09 19:59:38.307057+00 f t ADELANTO 0.00 4 1591 \N +61769 2025-06-09 20:17:05.089398+00 2025-06-09 20:17:05.089409+00 f t SUBTOTAL 0.00 1 1592 \N +61770 2025-06-09 20:17:05.091644+00 2025-06-09 20:17:05.091654+00 f t DESCUENTO 0.00 2 1592 \N +61771 2025-06-09 20:17:05.093025+00 2025-06-09 20:17:05.093035+00 f t TOTAL 0.00 3 1592 \N +61772 2025-06-09 20:17:05.094626+00 2025-06-09 20:17:05.094636+00 f t ADELANTO 0.00 4 1592 \N +61777 2025-06-09 20:24:46.505851+00 2025-06-09 20:24:46.50586+00 f t SUBTOTAL 0.00 1 1593 \N +61778 2025-06-09 20:24:46.50742+00 2025-06-09 20:24:46.507426+00 f t DESCUENTO 0.00 2 1593 \N +61779 2025-06-09 20:24:46.50892+00 2025-06-09 20:24:46.508926+00 f t TOTAL 0.00 3 1593 \N +61780 2025-06-09 20:24:46.510126+00 2025-06-09 20:24:46.510131+00 f t ADELANTO 0.00 4 1593 \N +63989 2025-06-10 22:13:14.154179+00 2025-06-10 22:13:14.154189+00 f t SUBTOTAL 0.00 1 1659 \N +63990 2025-06-10 22:13:14.157182+00 2025-06-10 22:13:14.157191+00 f t DESCUENTO 0.00 2 1659 \N +63991 2025-06-10 22:13:14.158733+00 2025-06-10 22:13:14.158749+00 f t TOTAL 0.00 3 1659 \N +63992 2025-06-10 22:13:14.160373+00 2025-06-10 22:13:14.160383+00 f t ADELANTO 0.00 4 1659 \N +64065 2025-06-10 23:15:57.315551+00 2025-06-10 23:15:57.31556+00 f t SUBTOTAL 96000.00 1 1662 \N +61809 2025-06-09 20:27:11.635309+00 2025-06-09 20:27:11.635319+00 f t SUBTOTAL 95000.00 1 1594 \N +61810 2025-06-09 20:27:11.636949+00 2025-06-09 20:27:11.636956+00 f t DESCUENTO 0.00 2 1594 \N +61811 2025-06-09 20:27:11.63811+00 2025-06-09 20:27:11.638116+00 f t TOTAL 95000.00 3 1594 \N +61812 2025-06-09 20:27:11.639115+00 2025-06-09 20:27:11.639125+00 f t ADELANTO 10000.00 4 1594 \N +64066 2025-06-10 23:15:57.317253+00 2025-06-10 23:15:57.317261+00 f t DESCUENTO 0.00 2 1662 \N +64067 2025-06-10 23:15:57.318496+00 2025-06-10 23:15:57.318504+00 f t TOTAL 96000.00 3 1662 \N +64068 2025-06-10 23:15:57.319965+00 2025-06-10 23:15:57.319972+00 f t ADELANTO 20500.00 4 1662 \N +64121 2025-06-10 23:18:23.861187+00 2025-06-10 23:18:23.861199+00 f t SUBTOTAL 42000.00 1 1663 \N +64122 2025-06-10 23:18:23.864197+00 2025-06-10 23:18:23.864207+00 f t DESCUENTO 0.00 2 1663 \N +64123 2025-06-10 23:18:23.866309+00 2025-06-10 23:18:23.866318+00 f t TOTAL 42000.00 3 1663 \N +64124 2025-06-10 23:18:23.868427+00 2025-06-10 23:18:23.868436+00 f t ADELANTO 9500.00 4 1663 \N +64177 2025-06-11 00:03:38.194325+00 2025-06-11 00:03:38.194338+00 f t SUBTOTAL 49500.00 1 1666 \N +64178 2025-06-11 00:03:38.196536+00 2025-06-11 00:03:38.196546+00 f t DESCUENTO 0.00 2 1666 \N +64179 2025-06-11 00:03:38.198137+00 2025-06-11 00:03:38.198146+00 f t TOTAL 49500.00 3 1666 \N +64180 2025-06-11 00:03:38.199587+00 2025-06-11 00:03:38.199593+00 f t ADELANTO 11500.00 4 1666 \N +64233 2025-06-11 00:15:37.848832+00 2025-06-11 00:15:37.848841+00 f t SUBTOTAL 49500.00 1 1668 \N +64234 2025-06-11 00:15:37.850851+00 2025-06-11 00:15:37.850859+00 f t DESCUENTO 0.00 2 1668 \N +64235 2025-06-11 00:15:37.852237+00 2025-06-11 00:15:37.852242+00 f t TOTAL 49500.00 3 1668 \N +64236 2025-06-11 00:15:37.853415+00 2025-06-11 00:15:37.853419+00 f t ADELANTO 11500.00 4 1668 \N +62529 2025-06-10 10:25:57.793957+00 2025-06-10 10:25:57.793966+00 f t SUBTOTAL 57000.00 1 1619 \N +62530 2025-06-10 10:25:57.795629+00 2025-06-10 10:25:57.795636+00 f t DESCUENTO 0.00 2 1619 \N +62531 2025-06-10 10:25:57.797243+00 2025-06-10 10:25:57.797249+00 f t TOTAL 57000.00 3 1619 \N +62532 2025-06-10 10:25:57.798696+00 2025-06-10 10:25:57.798704+00 f t ADELANTO 12000.00 4 1619 \N +62569 2025-06-10 10:28:30.292152+00 2025-06-10 10:28:30.292165+00 f t SUBTOTAL 57000.00 1 1620 \N +62570 2025-06-10 10:28:30.294165+00 2025-06-10 10:28:30.294176+00 f t DESCUENTO 0.00 2 1620 \N +62571 2025-06-10 10:28:30.295854+00 2025-06-10 10:28:30.295864+00 f t TOTAL 57000.00 3 1620 \N +62572 2025-06-10 10:28:30.29728+00 2025-06-10 10:28:30.297287+00 f t ADELANTO 12000.00 4 1620 \N +63361 2025-06-10 19:20:02.903231+00 2025-06-10 19:20:02.903246+00 f t SUBTOTAL 50000.00 1 1646 \N +63362 2025-06-10 19:20:02.910786+00 2025-06-10 19:20:02.910801+00 f t DESCUENTO 0.00 2 1646 \N +63363 2025-06-10 19:20:02.928009+00 2025-06-10 19:20:02.928024+00 f t TOTAL 50000.00 3 1646 \N +63364 2025-06-10 19:20:02.931012+00 2025-06-10 19:20:02.931026+00 f t ADELANTO 10000.00 4 1646 \N +71449 2025-06-15 03:28:28.781061+00 2025-06-15 03:28:28.781074+00 f t SUBTOTAL 42000.00 1 1866 \N +71450 2025-06-15 03:28:28.782905+00 2025-06-15 03:28:28.782913+00 f t DESCUENTO 0.00 2 1866 \N +71451 2025-06-15 03:28:28.784413+00 2025-06-15 03:28:28.784422+00 f t TOTAL 42000.00 3 1866 \N +71452 2025-06-15 03:28:28.785896+00 2025-06-15 03:28:28.785903+00 f t ADELANTO 9500.00 4 1866 \N +66521 2025-06-12 13:18:01.405725+00 2025-06-12 13:18:01.405738+00 f t SUBTOTAL 0.00 1 1732 \N +66522 2025-06-12 13:18:01.408219+00 2025-06-12 13:18:01.408233+00 f t DESCUENTO 0.00 2 1732 \N +66523 2025-06-12 13:18:01.410698+00 2025-06-12 13:18:01.410707+00 f t TOTAL 0.00 3 1732 \N +66524 2025-06-12 13:18:01.412788+00 2025-06-12 13:18:01.4128+00 f t ADELANTO 0.00 4 1732 \N +62713 2025-06-10 11:23:08.874409+00 2025-06-10 11:23:08.87442+00 f t SUBTOTAL 0.00 1 1622 \N +62714 2025-06-10 11:23:08.876379+00 2025-06-10 11:23:08.876388+00 f t DESCUENTO 0.00 2 1622 \N +62715 2025-06-10 11:23:08.877711+00 2025-06-10 11:23:08.877719+00 f t TOTAL 0.00 3 1622 \N +62716 2025-06-10 11:23:08.879008+00 2025-06-10 11:23:08.879016+00 f t ADELANTO 0.00 4 1622 \N +63625 2025-06-10 21:47:03.453374+00 2025-06-10 21:47:03.453383+00 f t SUBTOTAL 0.00 1 1655 \N +63626 2025-06-10 21:47:03.455045+00 2025-06-10 21:47:03.455052+00 f t DESCUENTO 0.00 2 1655 \N +63627 2025-06-10 21:47:03.456403+00 2025-06-10 21:47:03.456409+00 f t TOTAL 0.00 3 1655 \N +63628 2025-06-10 21:47:03.457918+00 2025-06-10 21:47:03.457925+00 f t ADELANTO 0.00 4 1655 \N +65401 2025-06-11 18:22:56.26464+00 2025-06-11 18:22:56.26465+00 f t SUBTOTAL 0.00 1 1698 \N +63997 2025-06-10 22:43:00.140598+00 2025-06-10 22:43:00.14061+00 f t SUBTOTAL 0.00 1 1660 \N +63998 2025-06-10 22:43:00.142562+00 2025-06-10 22:43:00.14257+00 f t DESCUENTO 0.00 2 1660 \N +63999 2025-06-10 22:43:00.144285+00 2025-06-10 22:43:00.144293+00 f t TOTAL 0.00 3 1660 \N +64000 2025-06-10 22:43:00.145822+00 2025-06-10 22:43:00.145832+00 f t ADELANTO 0.00 4 1660 \N +65402 2025-06-11 18:22:56.269412+00 2025-06-11 18:22:56.269421+00 f t DESCUENTO 0.00 2 1698 \N +65403 2025-06-11 18:22:56.271514+00 2025-06-11 18:22:56.271523+00 f t TOTAL 0.00 3 1698 \N +62809 2025-06-10 12:10:40.163045+00 2025-06-10 12:10:40.163053+00 f t SUBTOTAL 114700.00 1 1623 \N +62810 2025-06-10 12:10:40.164855+00 2025-06-10 12:10:40.164864+00 f t DESCUENTO 0.00 2 1623 \N +62811 2025-06-10 12:10:40.166743+00 2025-06-10 12:10:40.166751+00 f t TOTAL 114700.00 3 1623 \N +62812 2025-06-10 12:10:40.168279+00 2025-06-10 12:10:40.168285+00 f t ADELANTO 76700.00 4 1623 \N +65404 2025-06-11 18:22:56.273336+00 2025-06-11 18:22:56.273344+00 f t ADELANTO 0.00 4 1698 \N +62817 2025-06-10 12:23:17.600993+00 2025-06-10 12:23:17.601003+00 f t SUBTOTAL 0.00 1 1624 \N +62818 2025-06-10 12:23:17.602788+00 2025-06-10 12:23:17.602803+00 f t DESCUENTO 0.00 2 1624 \N +62819 2025-06-10 12:23:17.604925+00 2025-06-10 12:23:17.604936+00 f t TOTAL 0.00 3 1624 \N +62820 2025-06-10 12:23:17.606605+00 2025-06-10 12:23:17.606677+00 f t ADELANTO 0.00 4 1624 \N +65505 2025-06-11 18:33:44.401824+00 2025-06-11 18:33:44.401833+00 f t SUBTOTAL 42000.00 1 1700 \N +65506 2025-06-11 18:33:44.403859+00 2025-06-11 18:33:44.403866+00 f t DESCUENTO 0.00 2 1700 \N +65507 2025-06-11 18:33:44.405621+00 2025-06-11 18:33:44.405655+00 f t TOTAL 42000.00 3 1700 \N +65508 2025-06-11 18:33:44.407136+00 2025-06-11 18:33:44.407144+00 f t ADELANTO 9500.00 4 1700 \N +64185 2025-06-11 00:14:29.069556+00 2025-06-11 00:14:29.06957+00 f t SUBTOTAL 0.00 1 1667 \N +64186 2025-06-11 00:14:29.072046+00 2025-06-11 00:14:29.072056+00 f t DESCUENTO 0.00 2 1667 \N +64187 2025-06-11 00:14:29.074705+00 2025-06-11 00:14:29.074718+00 f t TOTAL 0.00 3 1667 \N +64188 2025-06-11 00:14:29.07754+00 2025-06-11 00:14:29.07756+00 f t ADELANTO 0.00 4 1667 \N +64289 2025-06-11 01:13:38.231219+00 2025-06-11 01:13:38.231231+00 f t SUBTOTAL 27500.00 1 1669 \N +64290 2025-06-11 01:13:38.233479+00 2025-06-11 01:13:38.233487+00 f t DESCUENTO 0.00 2 1669 \N +64291 2025-06-11 01:13:38.235669+00 2025-06-11 01:13:38.23568+00 f t TOTAL 27500.00 3 1669 \N +64292 2025-06-11 01:13:38.237495+00 2025-06-11 01:13:38.237505+00 f t ADELANTO 27500.00 4 1669 \N +62897 2025-06-10 12:46:03.083852+00 2025-06-10 12:46:03.083861+00 f t SUBTOTAL 177700.00 1 1625 \N +62898 2025-06-10 12:46:03.085782+00 2025-06-10 12:46:03.085792+00 f t DESCUENTO 0.00 2 1625 \N +62899 2025-06-10 12:46:03.087324+00 2025-06-10 12:46:03.087331+00 f t TOTAL 177700.00 3 1625 \N +62900 2025-06-10 12:46:03.088507+00 2025-06-10 12:46:03.088513+00 f t ADELANTO 54700.00 4 1625 \N +62905 2025-06-10 12:46:34.336118+00 2025-06-10 12:46:34.336127+00 f t SUBTOTAL 64500.00 1 1626 \N +62906 2025-06-10 12:46:34.33803+00 2025-06-10 12:46:34.338039+00 f t DESCUENTO 0.00 2 1626 \N +62907 2025-06-10 12:46:34.340027+00 2025-06-10 12:46:34.340037+00 f t TOTAL 64500.00 3 1626 \N +62908 2025-06-10 12:46:34.341846+00 2025-06-10 12:46:34.341853+00 f t ADELANTO 17000.00 4 1626 \N +62913 2025-06-10 12:58:35.32442+00 2025-06-10 12:58:35.32443+00 f t SUBTOTAL 0.00 1 1627 \N +62914 2025-06-10 12:58:35.325871+00 2025-06-10 12:58:35.325879+00 f t DESCUENTO 0.00 2 1627 \N +62915 2025-06-10 12:58:35.32723+00 2025-06-10 12:58:35.327239+00 f t TOTAL 0.00 3 1627 \N +62916 2025-06-10 12:58:35.328518+00 2025-06-10 12:58:35.328526+00 f t ADELANTO 0.00 4 1627 \N +64353 2025-06-11 01:44:05.447721+00 2025-06-11 01:44:05.447732+00 f t SUBTOTAL 72000.00 1 1671 \N +64354 2025-06-11 01:44:05.450804+00 2025-06-11 01:44:05.450814+00 f t DESCUENTO 0.00 2 1671 \N +64355 2025-06-11 01:44:05.452997+00 2025-06-11 01:44:05.453007+00 f t TOTAL 72000.00 3 1671 \N +62921 2025-06-10 13:12:21.150498+00 2025-06-10 13:12:21.150508+00 f t SUBTOTAL 0.00 1 1628 \N +62922 2025-06-10 13:12:21.152297+00 2025-06-10 13:12:21.152307+00 f t DESCUENTO 0.00 2 1628 \N +62923 2025-06-10 13:12:21.153749+00 2025-06-10 13:12:21.153756+00 f t TOTAL 0.00 3 1628 \N +62924 2025-06-10 13:12:21.154812+00 2025-06-10 13:12:21.154817+00 f t ADELANTO 0.00 4 1628 \N +64356 2025-06-11 01:44:05.454965+00 2025-06-11 01:44:05.454977+00 f t ADELANTO 19000.00 4 1671 \N +65777 2025-06-11 18:53:58.365647+00 2025-06-11 18:53:58.365656+00 f t SUBTOTAL 88000.00 1 1704 \N +65778 2025-06-11 18:53:58.3676+00 2025-06-11 18:53:58.367608+00 f t DESCUENTO 0.00 2 1704 \N +65779 2025-06-11 18:53:58.368857+00 2025-06-11 18:53:58.368864+00 f t TOTAL 88000.00 3 1704 \N +65780 2025-06-11 18:53:58.369894+00 2025-06-11 18:53:58.3699+00 f t ADELANTO 19000.00 4 1704 \N +64413 2025-06-11 02:00:58.736775+00 2025-06-11 02:00:58.736789+00 f t SUBTOTAL 72000.00 1 1672 \N +64414 2025-06-11 02:00:58.739246+00 2025-06-11 02:00:58.739256+00 f t DESCUENTO 0.00 2 1672 \N +64415 2025-06-11 02:00:58.741496+00 2025-06-11 02:00:58.74151+00 f t TOTAL 72000.00 3 1672 \N +64416 2025-06-11 02:00:58.743381+00 2025-06-11 02:00:58.74339+00 f t ADELANTO 19000.00 4 1672 \N +62949 2025-06-10 14:19:24.265616+00 2025-06-10 14:19:24.265628+00 f t SUBTOTAL 42000.00 1 1629 \N +62950 2025-06-10 14:19:24.267816+00 2025-06-10 14:19:24.267827+00 f t DESCUENTO 0.00 2 1629 \N +62951 2025-06-10 14:19:24.269766+00 2025-06-10 14:19:24.269779+00 f t TOTAL 42000.00 3 1629 \N +62952 2025-06-10 14:19:24.271994+00 2025-06-10 14:19:24.272005+00 f t ADELANTO 9500.00 4 1629 \N +66405 2025-06-12 10:28:37.044896+00 2025-06-12 10:28:37.044904+00 f t SUBTOTAL 50000.00 1 1724 \N +66406 2025-06-12 10:28:37.04683+00 2025-06-12 10:28:37.046838+00 f t DESCUENTO 0.00 2 1724 \N +66407 2025-06-12 10:28:37.048299+00 2025-06-12 10:28:37.048307+00 f t TOTAL 50000.00 3 1724 \N +62957 2025-06-10 14:41:50.443877+00 2025-06-10 14:41:50.443888+00 f t SUBTOTAL 0.00 1 1630 \N +62958 2025-06-10 14:41:50.445596+00 2025-06-10 14:41:50.445607+00 f t DESCUENTO 0.00 2 1630 \N +62959 2025-06-10 14:41:50.44746+00 2025-06-10 14:41:50.447468+00 f t TOTAL 0.00 3 1630 \N +62960 2025-06-10 14:41:50.448842+00 2025-06-10 14:41:50.448849+00 f t ADELANTO 0.00 4 1630 \N +66408 2025-06-12 10:28:37.049663+00 2025-06-12 10:28:37.049668+00 f t ADELANTO 10000.00 4 1724 \N +64929 2025-06-11 12:39:15.800828+00 2025-06-11 12:39:15.800841+00 f t SUBTOTAL 42000.00 1 1687 \N +64930 2025-06-11 12:39:15.8033+00 2025-06-11 12:39:15.803311+00 f t DESCUENTO 0.00 2 1687 \N +64931 2025-06-11 12:39:15.805244+00 2025-06-11 12:39:15.805254+00 f t TOTAL 42000.00 3 1687 \N +64932 2025-06-11 12:39:15.807074+00 2025-06-11 12:39:15.807084+00 f t ADELANTO 9500.00 4 1687 \N +63449 2025-06-10 20:24:27.517263+00 2025-06-10 20:24:27.517277+00 f t SUBTOTAL 64500.00 1 1650 \N +63450 2025-06-10 20:24:27.519508+00 2025-06-10 20:24:27.519519+00 f t DESCUENTO 0.00 2 1650 \N +63451 2025-06-10 20:24:27.521171+00 2025-06-10 20:24:27.521181+00 f t TOTAL 64500.00 3 1650 \N +63452 2025-06-10 20:24:27.522581+00 2025-06-10 20:24:27.522588+00 f t ADELANTO 17000.00 4 1650 \N +63497 2025-06-10 20:28:42.268085+00 2025-06-10 20:28:42.268098+00 f t SUBTOTAL 50000.00 1 1651 \N +63498 2025-06-10 20:28:42.270963+00 2025-06-10 20:28:42.270976+00 f t DESCUENTO 0.00 2 1651 \N +63499 2025-06-10 20:28:42.273175+00 2025-06-10 20:28:42.273187+00 f t TOTAL 50000.00 3 1651 \N +62985 2025-06-10 15:19:35.316933+00 2025-06-10 15:19:35.316944+00 f t SUBTOTAL 50000.00 1 1631 \N +62986 2025-06-10 15:19:35.318822+00 2025-06-10 15:19:35.31883+00 f t DESCUENTO 0.00 2 1631 \N +62987 2025-06-10 15:19:35.320186+00 2025-06-10 15:19:35.320193+00 f t TOTAL 50000.00 3 1631 \N +62988 2025-06-10 15:19:35.321335+00 2025-06-10 15:19:35.32134+00 f t ADELANTO 10000.00 4 1631 \N +63500 2025-06-10 20:28:42.27514+00 2025-06-10 20:28:42.275153+00 f t ADELANTO 10000.00 4 1651 \N +63517 2025-06-10 20:29:18.421087+00 2025-06-10 20:29:18.421098+00 f t SUBTOTAL 50000.00 1 1652 \N +63518 2025-06-10 20:29:18.423031+00 2025-06-10 20:29:18.423042+00 f t DESCUENTO 0.00 2 1652 \N +63519 2025-06-10 20:29:18.424755+00 2025-06-10 20:29:18.424765+00 f t TOTAL 50000.00 3 1652 \N +63520 2025-06-10 20:29:18.426159+00 2025-06-10 20:29:18.426168+00 f t ADELANTO 10000.00 4 1652 \N +63013 2025-06-10 15:45:32.270709+00 2025-06-10 15:45:32.270723+00 f t SUBTOTAL 64500.00 1 1632 \N +63014 2025-06-10 15:45:32.273279+00 2025-06-10 15:45:32.273289+00 f t DESCUENTO 0.00 2 1632 \N +63015 2025-06-10 15:45:32.275459+00 2025-06-10 15:45:32.275472+00 f t TOTAL 64500.00 3 1632 \N +63016 2025-06-10 15:45:32.277831+00 2025-06-10 15:45:32.277842+00 f t ADELANTO 17000.00 4 1632 \N +63021 2025-06-10 15:57:03.975614+00 2025-06-10 15:57:03.975624+00 f t SUBTOTAL 0.00 1 1633 \N +63022 2025-06-10 15:57:03.977096+00 2025-06-10 15:57:03.977104+00 f t DESCUENTO 0.00 2 1633 \N +63023 2025-06-10 15:57:03.978482+00 2025-06-10 15:57:03.978489+00 f t TOTAL 0.00 3 1633 \N +63024 2025-06-10 15:57:03.979563+00 2025-06-10 15:57:03.97957+00 f t ADELANTO 0.00 4 1633 \N +63037 2025-06-10 15:57:31.692397+00 2025-06-10 15:57:31.692409+00 f t SUBTOTAL 0.00 1 1635 \N +63038 2025-06-10 15:57:31.694286+00 2025-06-10 15:57:31.694297+00 f t DESCUENTO 0.00 2 1635 \N +63039 2025-06-10 15:57:31.69603+00 2025-06-10 15:57:31.69604+00 f t TOTAL 0.00 3 1635 \N +63040 2025-06-10 15:57:31.697767+00 2025-06-10 15:57:31.697776+00 f t ADELANTO 0.00 4 1635 \N +63053 2025-06-10 15:57:59.906573+00 2025-06-10 15:57:59.906582+00 f t SUBTOTAL 0.00 1 1634 \N +63054 2025-06-10 15:57:59.908834+00 2025-06-10 15:57:59.908846+00 f t DESCUENTO 0.00 2 1634 \N +63055 2025-06-10 15:57:59.910658+00 2025-06-10 15:57:59.910668+00 f t TOTAL 0.00 3 1634 \N +63056 2025-06-10 15:57:59.912215+00 2025-06-10 15:57:59.912224+00 f t ADELANTO 0.00 4 1634 \N +63061 2025-06-10 15:59:28.295896+00 2025-06-10 15:59:28.295909+00 f t SUBTOTAL 0.00 1 1636 \N +63062 2025-06-10 15:59:28.298417+00 2025-06-10 15:59:28.298432+00 f t DESCUENTO 0.00 2 1636 \N +63063 2025-06-10 15:59:28.300941+00 2025-06-10 15:59:28.300954+00 f t TOTAL 0.00 3 1636 \N +63064 2025-06-10 15:59:28.302954+00 2025-06-10 15:59:28.302964+00 f t ADELANTO 0.00 4 1636 \N +63941 2025-06-10 21:59:00.700335+00 2025-06-10 21:59:00.700349+00 f t SUBTOTAL 102700.00 1 1658 \N +63942 2025-06-10 21:59:00.70238+00 2025-06-10 21:59:00.70239+00 f t DESCUENTO 0.00 2 1658 \N +63943 2025-06-10 21:59:00.703962+00 2025-06-10 21:59:00.70397+00 f t TOTAL 102700.00 3 1658 \N +63101 2025-06-10 16:02:24.788637+00 2025-06-10 16:02:24.788646+00 f t SUBTOTAL 50000.00 1 1637 \N +63102 2025-06-10 16:02:24.791102+00 2025-06-10 16:02:24.791111+00 f t DESCUENTO 0.00 2 1637 \N +63103 2025-06-10 16:02:24.792785+00 2025-06-10 16:02:24.792795+00 f t TOTAL 50000.00 3 1637 \N +63104 2025-06-10 16:02:24.794409+00 2025-06-10 16:02:24.794417+00 f t ADELANTO 10000.00 4 1637 \N +63944 2025-06-10 21:59:00.705509+00 2025-06-10 21:59:00.705518+00 f t ADELANTO 64700.00 4 1658 \N +64081 2025-06-10 23:17:26.900113+00 2025-06-10 23:17:26.900124+00 f t SUBTOTAL 0.00 1 1664 \N +64082 2025-06-10 23:17:26.901924+00 2025-06-10 23:17:26.901933+00 f t DESCUENTO 0.00 2 1664 \N +64083 2025-06-10 23:17:26.903841+00 2025-06-10 23:17:26.903851+00 f t TOTAL 0.00 3 1664 \N +64084 2025-06-10 23:17:26.905531+00 2025-06-10 23:17:26.905538+00 f t ADELANTO 0.00 4 1664 \N +64149 2025-06-10 23:20:57.254696+00 2025-06-10 23:20:57.254708+00 f t SUBTOTAL 42000.00 1 1665 \N +64150 2025-06-10 23:20:57.257286+00 2025-06-10 23:20:57.257297+00 f t DESCUENTO 0.00 2 1665 \N +64151 2025-06-10 23:20:57.259029+00 2025-06-10 23:20:57.259036+00 f t TOTAL 42000.00 3 1665 \N +64152 2025-06-10 23:20:57.26072+00 2025-06-10 23:20:57.260728+00 f t ADELANTO 9500.00 4 1665 \N +63173 2025-06-10 16:20:26.562173+00 2025-06-10 16:20:26.562185+00 f t SUBTOTAL 42000.00 1 1638 \N +63174 2025-06-10 16:20:26.564224+00 2025-06-10 16:20:26.564237+00 f t DESCUENTO 0.00 2 1638 \N +63175 2025-06-10 16:20:26.566242+00 2025-06-10 16:20:26.566251+00 f t TOTAL 42000.00 3 1638 \N +63176 2025-06-10 16:20:26.567828+00 2025-06-10 16:20:26.567835+00 f t ADELANTO 9500.00 4 1638 \N +64297 2025-06-11 01:40:28.883417+00 2025-06-11 01:40:28.883432+00 f t SUBTOTAL 0.00 1 1670 \N +64298 2025-06-11 01:40:28.885475+00 2025-06-11 01:40:28.885486+00 f t DESCUENTO 0.00 2 1670 \N +64299 2025-06-11 01:40:28.887484+00 2025-06-11 01:40:28.887495+00 f t TOTAL 0.00 3 1670 \N +64300 2025-06-11 01:40:28.889554+00 2025-06-11 01:40:28.889566+00 f t ADELANTO 0.00 4 1670 \N +63225 2025-06-10 16:35:10.565332+00 2025-06-10 16:35:10.565344+00 f t SUBTOTAL 42000.00 1 1639 \N +63226 2025-06-10 16:35:10.567633+00 2025-06-10 16:35:10.567644+00 f t DESCUENTO 0.00 2 1639 \N +63227 2025-06-10 16:35:10.56957+00 2025-06-10 16:35:10.56958+00 f t TOTAL 42000.00 3 1639 \N +63228 2025-06-10 16:35:10.571244+00 2025-06-10 16:35:10.571254+00 f t ADELANTO 9500.00 4 1639 \N +63233 2025-06-10 17:07:57.723191+00 2025-06-10 17:07:57.723201+00 f t SUBTOTAL 0.00 1 1640 \N +63234 2025-06-10 17:07:57.725583+00 2025-06-10 17:07:57.725592+00 f t DESCUENTO 0.00 2 1640 \N +63235 2025-06-10 17:07:57.727344+00 2025-06-10 17:07:57.727376+00 f t TOTAL 0.00 3 1640 \N +63236 2025-06-10 17:07:57.728561+00 2025-06-10 17:07:57.728567+00 f t ADELANTO 0.00 4 1640 \N +73117 2025-06-15 23:41:52.188487+00 2025-06-15 23:41:52.188499+00 f t SUBTOTAL 0.00 1 1910 \N +63405 2025-06-10 20:10:00.263908+00 2025-06-10 20:10:00.263923+00 f t SUBTOTAL 0.00 1 1648 \N +63406 2025-06-10 20:10:00.267618+00 2025-06-10 20:10:00.267633+00 f t DESCUENTO 0.00 2 1648 \N +63407 2025-06-10 20:10:00.270975+00 2025-06-10 20:10:00.270989+00 f t TOTAL 0.00 3 1648 \N +63408 2025-06-10 20:10:00.273386+00 2025-06-10 20:10:00.273399+00 f t ADELANTO 0.00 4 1648 \N +66413 2025-06-12 11:15:36.146667+00 2025-06-12 11:15:36.146681+00 f t SUBTOTAL 0.00 1 1725 \N +66414 2025-06-12 11:15:36.14885+00 2025-06-12 11:15:36.148859+00 f t DESCUENTO 0.00 2 1725 \N +66415 2025-06-12 11:15:36.150515+00 2025-06-12 11:15:36.150522+00 f t TOTAL 0.00 3 1725 \N +66416 2025-06-12 11:15:36.151817+00 2025-06-12 11:15:36.151823+00 f t ADELANTO 0.00 4 1725 \N +63261 2025-06-10 17:21:22.983272+00 2025-06-10 17:21:22.983282+00 f t SUBTOTAL 64500.00 1 1641 \N +63262 2025-06-10 17:21:22.985418+00 2025-06-10 17:21:22.985427+00 f t DESCUENTO 0.00 2 1641 \N +63263 2025-06-10 17:21:22.986887+00 2025-06-10 17:21:22.986894+00 f t TOTAL 64500.00 3 1641 \N +63264 2025-06-10 17:21:22.988583+00 2025-06-10 17:21:22.988589+00 f t ADELANTO 17000.00 4 1641 \N +63269 2025-06-10 17:22:08.640647+00 2025-06-10 17:22:08.640657+00 f t SUBTOTAL 0.00 1 1642 \N +63270 2025-06-10 17:22:08.642068+00 2025-06-10 17:22:08.642075+00 f t DESCUENTO 0.00 2 1642 \N +63271 2025-06-10 17:22:08.643678+00 2025-06-10 17:22:08.643685+00 f t TOTAL 0.00 3 1642 \N +63272 2025-06-10 17:22:08.645035+00 2025-06-10 17:22:08.645042+00 f t ADELANTO 0.00 4 1642 \N +63285 2025-06-10 17:37:34.541512+00 2025-06-10 17:37:34.541522+00 f t SUBTOTAL 0.00 1 1643 \N +63286 2025-06-10 17:37:34.543734+00 2025-06-10 17:37:34.543743+00 f t DESCUENTO 0.00 2 1643 \N +63287 2025-06-10 17:37:34.545043+00 2025-06-10 17:37:34.54505+00 f t TOTAL 0.00 3 1643 \N +63288 2025-06-10 17:37:34.546521+00 2025-06-10 17:37:34.546529+00 f t ADELANTO 0.00 4 1643 \N +65017 2025-06-11 13:49:30.766522+00 2025-06-11 13:49:30.766532+00 f t SUBTOTAL 86000.00 1 1689 \N +65018 2025-06-11 13:49:30.768698+00 2025-06-11 13:49:30.768707+00 f t DESCUENTO 0.00 2 1689 \N +65019 2025-06-11 13:49:30.770725+00 2025-06-11 13:49:30.770733+00 f t TOTAL 86000.00 3 1689 \N +65020 2025-06-11 13:49:30.772267+00 2025-06-11 13:49:30.772274+00 f t ADELANTO 18500.00 4 1689 \N +63325 2025-06-10 18:02:43.601454+00 2025-06-10 18:02:43.601467+00 f t SUBTOTAL 72000.00 1 1644 \N +63326 2025-06-10 18:02:43.603839+00 2025-06-10 18:02:43.603851+00 f t DESCUENTO 0.00 2 1644 \N +63327 2025-06-10 18:02:43.605982+00 2025-06-10 18:02:43.605995+00 f t TOTAL 72000.00 3 1644 \N +63328 2025-06-10 18:02:43.608048+00 2025-06-10 18:02:43.608059+00 f t ADELANTO 19000.00 4 1644 \N +63333 2025-06-10 18:40:38.002368+00 2025-06-10 18:40:38.002398+00 f t SUBTOTAL 0.00 1 1645 \N +63334 2025-06-10 18:40:38.004419+00 2025-06-10 18:40:38.004431+00 f t DESCUENTO 0.00 2 1645 \N +63335 2025-06-10 18:40:38.006235+00 2025-06-10 18:40:38.006246+00 f t TOTAL 0.00 3 1645 \N +63336 2025-06-10 18:40:38.008203+00 2025-06-10 18:40:38.008215+00 f t ADELANTO 0.00 4 1645 \N +63861 2025-06-10 21:56:11.073131+00 2025-06-10 21:56:11.073139+00 f t SUBTOTAL 102700.00 1 1657 \N +63862 2025-06-10 21:56:11.075329+00 2025-06-10 21:56:11.075338+00 f t DESCUENTO 0.00 2 1657 \N +63863 2025-06-10 21:56:11.077358+00 2025-06-10 21:56:11.077367+00 f t TOTAL 102700.00 3 1657 \N +63864 2025-06-10 21:56:11.07913+00 2025-06-10 21:56:11.079141+00 f t ADELANTO 64700.00 4 1657 \N +66945 2025-06-12 15:31:16.115029+00 2025-06-12 15:31:16.115038+00 f t SUBTOTAL 0.00 1 1740 \N +66946 2025-06-12 15:31:16.117644+00 2025-06-12 15:31:16.117652+00 f t DESCUENTO 0.00 2 1740 \N +66947 2025-06-12 15:31:16.119969+00 2025-06-12 15:31:16.119978+00 f t TOTAL 0.00 3 1740 \N +66948 2025-06-12 15:31:16.121443+00 2025-06-12 15:31:16.121451+00 f t ADELANTO 0.00 4 1740 \N +63981 2025-06-10 22:11:52.513203+00 2025-06-10 22:11:52.513213+00 f t SUBTOTAL 45000.00 1 1656 \N +63982 2025-06-10 22:11:52.515302+00 2025-06-10 22:11:52.515313+00 f t DESCUENTO 0.00 2 1656 \N +63983 2025-06-10 22:11:52.516956+00 2025-06-10 22:11:52.516966+00 f t TOTAL 45000.00 3 1656 \N +63984 2025-06-10 22:11:52.518386+00 2025-06-10 22:11:52.518392+00 f t ADELANTO 10000.00 4 1656 \N +64025 2025-06-10 22:44:58.120611+00 2025-06-10 22:44:58.120621+00 f t SUBTOTAL 56000.00 1 1661 \N +64026 2025-06-10 22:44:58.122917+00 2025-06-10 22:44:58.122929+00 f t DESCUENTO 0.00 2 1661 \N +64027 2025-06-10 22:44:58.124988+00 2025-06-10 22:44:58.124998+00 f t TOTAL 56000.00 3 1661 \N +64028 2025-06-10 22:44:58.127092+00 2025-06-10 22:44:58.127104+00 f t ADELANTO 48000.00 4 1661 \N +65409 2025-06-11 18:24:30.739636+00 2025-06-11 18:24:30.739645+00 f t SUBTOTAL 0.00 1 1699 \N +65410 2025-06-11 18:24:30.741244+00 2025-06-11 18:24:30.74125+00 f t DESCUENTO 0.00 2 1699 \N +65411 2025-06-11 18:24:30.742449+00 2025-06-11 18:24:30.742454+00 f t TOTAL 0.00 3 1699 \N +65412 2025-06-11 18:24:30.743368+00 2025-06-11 18:24:30.743374+00 f t ADELANTO 0.00 4 1699 \N +67109 2025-06-12 16:47:48.010977+00 2025-06-12 16:47:48.010991+00 f t SUBTOTAL 95000.00 1 1746 \N +67110 2025-06-12 16:47:48.012922+00 2025-06-12 16:47:48.01293+00 f t DESCUENTO 0.00 2 1746 \N +67111 2025-06-12 16:47:48.014523+00 2025-06-12 16:47:48.014531+00 f t TOTAL 95000.00 3 1746 \N +67112 2025-06-12 16:47:48.016181+00 2025-06-12 16:47:48.016192+00 f t ADELANTO 10000.00 4 1746 \N +67193 2025-06-12 17:07:17.432874+00 2025-06-12 17:07:17.432885+00 f t SUBTOTAL 50000.00 1 1747 \N +67194 2025-06-12 17:07:17.434673+00 2025-06-12 17:07:17.434681+00 f t DESCUENTO 0.00 2 1747 \N +67195 2025-06-12 17:07:17.436039+00 2025-06-12 17:07:17.436047+00 f t TOTAL 50000.00 3 1747 \N +67196 2025-06-12 17:07:17.43749+00 2025-06-12 17:07:17.437496+00 f t ADELANTO 10000.00 4 1747 \N +65545 2025-06-11 18:42:29.785613+00 2025-06-11 18:42:29.785627+00 f t SUBTOTAL 49500.00 1 1701 \N +65546 2025-06-11 18:42:29.78804+00 2025-06-11 18:42:29.788052+00 f t DESCUENTO 0.00 2 1701 \N +65547 2025-06-11 18:42:29.78996+00 2025-06-11 18:42:29.78997+00 f t TOTAL 49500.00 3 1701 \N +65548 2025-06-11 18:42:29.791659+00 2025-06-11 18:42:29.791667+00 f t ADELANTO 11500.00 4 1701 \N +67233 2025-06-12 19:37:31.004856+00 2025-06-12 19:37:31.004867+00 f t SUBTOTAL 0.00 1 1752 \N +67234 2025-06-12 19:37:31.00678+00 2025-06-12 19:37:31.006792+00 f t DESCUENTO 0.00 2 1752 \N +67235 2025-06-12 19:37:31.00889+00 2025-06-12 19:37:31.008898+00 f t TOTAL 0.00 3 1752 \N +67236 2025-06-12 19:37:31.010414+00 2025-06-12 19:37:31.010425+00 f t ADELANTO 0.00 4 1752 \N +67317 2025-06-12 20:25:13.55218+00 2025-06-12 20:25:13.552224+00 f t SUBTOTAL 69500.00 1 1753 \N +67318 2025-06-12 20:25:13.554035+00 2025-06-12 20:25:13.554044+00 f t DESCUENTO 0.00 2 1753 \N +67319 2025-06-12 20:25:13.555334+00 2025-06-12 20:25:13.555341+00 f t TOTAL 69500.00 3 1753 \N +67320 2025-06-12 20:25:13.556539+00 2025-06-12 20:25:13.556545+00 f t ADELANTO 37000.00 4 1753 \N +64409 2025-06-11 02:00:58.3721+00 2025-06-11 02:00:58.372114+00 f t SUBTOTAL 0.00 1 1673 \N +64410 2025-06-11 02:00:58.374632+00 2025-06-11 02:00:58.37464+00 f t DESCUENTO 0.00 2 1673 \N +64411 2025-06-11 02:00:58.37691+00 2025-06-11 02:00:58.376922+00 f t TOTAL 0.00 3 1673 \N +64412 2025-06-11 02:00:58.378929+00 2025-06-11 02:00:58.378939+00 f t ADELANTO 0.00 4 1673 \N +64421 2025-06-11 03:10:53.344438+00 2025-06-11 03:10:53.344453+00 f t SUBTOTAL 0.00 1 1674 \N +64422 2025-06-11 03:10:53.346531+00 2025-06-11 03:10:53.346576+00 f t DESCUENTO 0.00 2 1674 \N +64423 2025-06-11 03:10:53.348492+00 2025-06-11 03:10:53.348501+00 f t TOTAL 0.00 3 1674 \N +64424 2025-06-11 03:10:53.350337+00 2025-06-11 03:10:53.350347+00 f t ADELANTO 0.00 4 1674 \N +73118 2025-06-15 23:41:52.190796+00 2025-06-15 23:41:52.190807+00 f t DESCUENTO 0.00 2 1910 \N +73119 2025-06-15 23:41:52.192886+00 2025-06-15 23:41:52.192896+00 f t TOTAL 0.00 3 1910 \N +66421 2025-06-12 11:28:49.961637+00 2025-06-12 11:28:49.961651+00 f t SUBTOTAL 0.00 1 1726 \N +66422 2025-06-12 11:28:49.964009+00 2025-06-12 11:28:49.96402+00 f t DESCUENTO 0.00 2 1726 \N +66423 2025-06-12 11:28:49.96618+00 2025-06-12 11:28:49.966192+00 f t TOTAL 0.00 3 1726 \N +66424 2025-06-12 11:28:49.967949+00 2025-06-12 11:28:49.967957+00 f t ADELANTO 0.00 4 1726 \N +69769 2025-06-13 23:32:12.919315+00 2025-06-13 23:32:12.919325+00 f t SUBTOTAL 0.00 1 1820 \N +69770 2025-06-13 23:32:12.921152+00 2025-06-13 23:32:12.921162+00 f t DESCUENTO 0.00 2 1820 \N +69771 2025-06-13 23:32:12.922736+00 2025-06-13 23:32:12.922743+00 f t TOTAL 0.00 3 1820 \N +64473 2025-06-11 03:35:26.270037+00 2025-06-11 03:35:26.270047+00 f t SUBTOTAL 61700.00 1 1675 \N +64474 2025-06-11 03:35:26.272239+00 2025-06-11 03:35:26.272252+00 f t DESCUENTO 0.00 2 1675 \N +64475 2025-06-11 03:35:26.274026+00 2025-06-11 03:35:26.274034+00 f t TOTAL 61700.00 3 1675 \N +64476 2025-06-11 03:35:26.275746+00 2025-06-11 03:35:26.275754+00 f t ADELANTO 23700.00 4 1675 \N +69772 2025-06-13 23:32:12.92473+00 2025-06-13 23:32:12.924737+00 f t ADELANTO 0.00 4 1820 \N +68161 2025-06-13 03:11:41.07942+00 2025-06-13 03:11:41.079429+00 f t SUBTOTAL 0.00 1 1772 \N +68162 2025-06-13 03:11:41.08106+00 2025-06-13 03:11:41.081072+00 f t DESCUENTO 0.00 2 1772 \N +68163 2025-06-13 03:11:41.082401+00 2025-06-13 03:11:41.082407+00 f t TOTAL 0.00 3 1772 \N +68164 2025-06-13 03:11:41.083491+00 2025-06-13 03:11:41.083497+00 f t ADELANTO 0.00 4 1772 \N +64529 2025-06-11 03:49:58.526664+00 2025-06-11 03:49:58.526674+00 f t SUBTOTAL 0.00 1 1676 \N +64530 2025-06-11 03:49:58.528858+00 2025-06-11 03:49:58.52887+00 f t DESCUENTO 0.00 2 1676 \N +64531 2025-06-11 03:49:58.530453+00 2025-06-11 03:49:58.530462+00 f t TOTAL 0.00 3 1676 \N +64532 2025-06-11 03:49:58.532219+00 2025-06-11 03:49:58.532229+00 f t ADELANTO 0.00 4 1676 \N +65189 2025-06-11 14:46:02.715274+00 2025-06-11 14:46:02.715288+00 f t SUBTOTAL 0.00 1 1691 \N +65190 2025-06-11 14:46:02.718266+00 2025-06-11 14:46:02.718278+00 f t DESCUENTO 0.00 2 1691 \N +65191 2025-06-11 14:46:02.720179+00 2025-06-11 14:46:02.720188+00 f t TOTAL 0.00 3 1691 \N +65192 2025-06-11 14:46:02.722302+00 2025-06-11 14:46:02.722311+00 f t ADELANTO 0.00 4 1691 \N +65257 2025-06-11 15:21:16.639497+00 2025-06-11 15:21:16.639507+00 f t SUBTOTAL 94500.00 1 1692 \N +65258 2025-06-11 15:21:16.641443+00 2025-06-11 15:21:16.64145+00 f t DESCUENTO 0.00 2 1692 \N +65259 2025-06-11 15:21:16.643029+00 2025-06-11 15:21:16.643038+00 f t TOTAL 94500.00 3 1692 \N +65260 2025-06-11 15:21:16.645037+00 2025-06-11 15:21:16.645045+00 f t ADELANTO 26500.00 4 1692 \N +65297 2025-06-11 15:29:06.92588+00 2025-06-11 15:29:06.925925+00 f t SUBTOTAL 64500.00 1 1694 \N +65298 2025-06-11 15:29:06.928654+00 2025-06-11 15:29:06.928663+00 f t DESCUENTO 0.00 2 1694 \N +64561 2025-06-11 04:08:08.669546+00 2025-06-11 04:08:08.66956+00 f t SUBTOTAL 0.00 1 1677 \N +64562 2025-06-11 04:08:08.671936+00 2025-06-11 04:08:08.67195+00 f t DESCUENTO 0.00 2 1677 \N +64563 2025-06-11 04:08:08.673658+00 2025-06-11 04:08:08.67367+00 f t TOTAL 0.00 3 1677 \N +64564 2025-06-11 04:08:08.675205+00 2025-06-11 04:08:08.675216+00 f t ADELANTO 0.00 4 1677 \N +65299 2025-06-11 15:29:06.930631+00 2025-06-11 15:29:06.930643+00 f t TOTAL 64500.00 3 1694 \N +65300 2025-06-11 15:29:06.934218+00 2025-06-11 15:29:06.934228+00 f t ADELANTO 17000.00 4 1694 \N +66925 2025-06-12 15:28:06.044121+00 2025-06-12 15:28:06.044134+00 f t SUBTOTAL 42000.00 1 1739 \N +66926 2025-06-12 15:28:06.046055+00 2025-06-12 15:28:06.046064+00 f t DESCUENTO 0.00 2 1739 \N +64569 2025-06-11 04:33:27.751017+00 2025-06-11 04:33:27.751031+00 f t SUBTOTAL 0.00 1 1678 \N +64570 2025-06-11 04:33:27.752608+00 2025-06-11 04:33:27.752615+00 f t DESCUENTO 0.00 2 1678 \N +64571 2025-06-11 04:33:27.753973+00 2025-06-11 04:33:27.753981+00 f t TOTAL 0.00 3 1678 \N +64572 2025-06-11 04:33:27.756349+00 2025-06-11 04:33:27.756356+00 f t ADELANTO 0.00 4 1678 \N +66927 2025-06-12 15:28:06.047906+00 2025-06-12 15:28:06.047913+00 f t TOTAL 42000.00 3 1739 \N +66928 2025-06-12 15:28:06.049557+00 2025-06-12 15:28:06.049564+00 f t ADELANTO 9500.00 4 1739 \N +64577 2025-06-11 04:52:46.049341+00 2025-06-11 04:52:46.049351+00 f t SUBTOTAL 0.00 1 1679 \N +64578 2025-06-11 04:52:46.050933+00 2025-06-11 04:52:46.050939+00 f t DESCUENTO 0.00 2 1679 \N +64579 2025-06-11 04:52:46.052172+00 2025-06-11 04:52:46.052179+00 f t TOTAL 0.00 3 1679 \N +64580 2025-06-11 04:52:46.053202+00 2025-06-11 04:52:46.053208+00 f t ADELANTO 0.00 4 1679 \N +66953 2025-06-12 15:32:55.332494+00 2025-06-12 15:32:55.332503+00 f t SUBTOTAL 0.00 1 1741 \N +66954 2025-06-12 15:32:55.333891+00 2025-06-12 15:32:55.333898+00 f t DESCUENTO 0.00 2 1741 \N +66955 2025-06-12 15:32:55.335441+00 2025-06-12 15:32:55.335448+00 f t TOTAL 0.00 3 1741 \N +66956 2025-06-12 15:32:55.336705+00 2025-06-12 15:32:55.336711+00 f t ADELANTO 0.00 4 1741 \N +65385 2025-06-11 17:29:30.939608+00 2025-06-11 17:29:30.93962+00 f t SUBTOTAL 42000.00 1 1696 \N +65386 2025-06-11 17:29:30.942362+00 2025-06-11 17:29:30.942372+00 f t DESCUENTO 0.00 2 1696 \N +65387 2025-06-11 17:29:30.944379+00 2025-06-11 17:29:30.944387+00 f t TOTAL 42000.00 3 1696 \N +65388 2025-06-11 17:29:30.946212+00 2025-06-11 17:29:30.946222+00 f t ADELANTO 9500.00 4 1696 \N +67049 2025-06-12 16:41:17.383358+00 2025-06-12 16:41:17.38337+00 f t SUBTOTAL 70000.00 1 1745 \N +67050 2025-06-12 16:41:17.386028+00 2025-06-12 16:41:17.386037+00 f t DESCUENTO 0.00 2 1745 \N +67051 2025-06-12 16:41:17.38804+00 2025-06-12 16:41:17.388049+00 f t TOTAL 70000.00 3 1745 \N +67052 2025-06-12 16:41:17.390154+00 2025-06-12 16:41:17.390164+00 f t ADELANTO 15000.00 4 1745 \N +67201 2025-06-12 18:33:16.611523+00 2025-06-12 18:33:16.611533+00 f t SUBTOTAL 0.00 1 1748 \N +67202 2025-06-12 18:33:16.613155+00 2025-06-12 18:33:16.613164+00 f t DESCUENTO 0.00 2 1748 \N +67203 2025-06-12 18:33:16.614612+00 2025-06-12 18:33:16.614621+00 f t TOTAL 0.00 3 1748 \N +67204 2025-06-12 18:33:16.616299+00 2025-06-12 18:33:16.616308+00 f t ADELANTO 0.00 4 1748 \N +65749 2025-06-11 18:48:58.65018+00 2025-06-11 18:48:58.650192+00 f t SUBTOTAL 49500.00 1 1703 \N +65750 2025-06-11 18:48:58.652905+00 2025-06-11 18:48:58.652914+00 f t DESCUENTO 0.00 2 1703 \N +65751 2025-06-11 18:48:58.654593+00 2025-06-11 18:48:58.654603+00 f t TOTAL 49500.00 3 1703 \N +65752 2025-06-11 18:48:58.656315+00 2025-06-11 18:48:58.656323+00 f t ADELANTO 11500.00 4 1703 \N +64705 2025-06-11 09:43:03.381709+00 2025-06-11 09:43:03.381723+00 f t SUBTOTAL 88000.00 1 1680 \N +64706 2025-06-11 09:43:03.38422+00 2025-06-11 09:43:03.384233+00 f t DESCUENTO 0.00 2 1680 \N +64707 2025-06-11 09:43:03.386307+00 2025-06-11 09:43:03.386319+00 f t TOTAL 88000.00 3 1680 \N +64708 2025-06-11 09:43:03.388252+00 2025-06-11 09:43:03.388265+00 f t ADELANTO 19000.00 4 1680 \N +64733 2025-06-11 09:55:51.07672+00 2025-06-11 09:55:51.076733+00 f t SUBTOTAL 27500.00 1 1681 \N +64734 2025-06-11 09:55:51.078818+00 2025-06-11 09:55:51.07883+00 f t DESCUENTO 0.00 2 1681 \N +64735 2025-06-11 09:55:51.080902+00 2025-06-11 09:55:51.080913+00 f t TOTAL 27500.00 3 1681 \N +64736 2025-06-11 09:55:51.082959+00 2025-06-11 09:55:51.08297+00 f t ADELANTO 27500.00 4 1681 \N +65905 2025-06-11 21:22:16.783849+00 2025-06-11 21:22:16.783862+00 f t SUBTOTAL 0.00 1 1708 \N +65906 2025-06-11 21:22:16.786991+00 2025-06-11 21:22:16.787004+00 f t DESCUENTO 0.00 2 1708 \N +69669 2025-06-13 22:23:03.734893+00 2025-06-13 22:23:03.734906+00 f t SUBTOTAL 0.00 1 1816 \N +69670 2025-06-13 22:23:03.737412+00 2025-06-13 22:23:03.737423+00 f t DESCUENTO 0.00 2 1816 \N +66429 2025-06-12 11:53:01.865279+00 2025-06-12 11:53:01.86529+00 f t SUBTOTAL 0.00 1 1727 \N +66430 2025-06-12 11:53:01.867016+00 2025-06-12 11:53:01.867025+00 f t DESCUENTO 0.00 2 1727 \N +66431 2025-06-12 11:53:01.86861+00 2025-06-12 11:53:01.868617+00 f t TOTAL 0.00 3 1727 \N +66432 2025-06-12 11:53:01.870062+00 2025-06-12 11:53:01.870071+00 f t ADELANTO 0.00 4 1727 \N +64985 2025-06-11 13:30:29.316901+00 2025-06-11 13:30:29.316913+00 f t SUBTOTAL 50000.00 1 1688 \N +64986 2025-06-11 13:30:29.319062+00 2025-06-11 13:30:29.319072+00 f t DESCUENTO 0.00 2 1688 \N +64987 2025-06-11 13:30:29.320925+00 2025-06-11 13:30:29.320932+00 f t TOTAL 50000.00 3 1688 \N +64988 2025-06-11 13:30:29.322545+00 2025-06-11 13:30:29.322554+00 f t ADELANTO 10000.00 4 1688 \N +66561 2025-06-12 13:23:19.508872+00 2025-06-12 13:23:19.508883+00 f t SUBTOTAL 27500.00 1 1733 \N +66562 2025-06-12 13:23:19.511185+00 2025-06-12 13:23:19.511196+00 f t DESCUENTO 0.00 2 1733 \N +66563 2025-06-12 13:23:19.513099+00 2025-06-12 13:23:19.513109+00 f t TOTAL 27500.00 3 1733 \N +66564 2025-06-12 13:23:19.514617+00 2025-06-12 13:23:19.514625+00 f t ADELANTO 27500.00 4 1733 \N +66665 2025-06-12 13:40:21.623858+00 2025-06-12 13:40:21.623868+00 f t SUBTOTAL 50000.00 1 1735 \N +66666 2025-06-12 13:40:21.648814+00 2025-06-12 13:40:21.648827+00 f t DESCUENTO 0.00 2 1735 \N +66667 2025-06-12 13:40:21.651976+00 2025-06-12 13:40:21.651988+00 f t TOTAL 50000.00 3 1735 \N +66668 2025-06-12 13:40:21.654472+00 2025-06-12 13:40:21.65448+00 f t ADELANTO 10000.00 4 1735 \N +66689 2025-06-12 13:40:55.57099+00 2025-06-12 13:40:55.571+00 f t SUBTOTAL 56000.00 1 1734 \N +66690 2025-06-12 13:40:55.574908+00 2025-06-12 13:40:55.574919+00 f t DESCUENTO 0.00 2 1734 \N +66691 2025-06-12 13:40:55.577545+00 2025-06-12 13:40:55.577556+00 f t TOTAL 56000.00 3 1734 \N +66692 2025-06-12 13:40:55.579742+00 2025-06-12 13:40:55.579754+00 f t ADELANTO 48000.00 4 1734 \N +65161 2025-06-11 14:44:19.17864+00 2025-06-11 14:44:19.17865+00 f t SUBTOTAL 69500.00 1 1690 \N +65162 2025-06-11 14:44:19.180566+00 2025-06-11 14:44:19.180575+00 f t DESCUENTO 0.00 2 1690 \N +65163 2025-06-11 14:44:19.182506+00 2025-06-11 14:44:19.182516+00 f t TOTAL 69500.00 3 1690 \N +65164 2025-06-11 14:44:19.184046+00 2025-06-11 14:44:19.184053+00 f t ADELANTO 37000.00 4 1690 \N +64813 2025-06-11 10:59:30.649362+00 2025-06-11 10:59:30.649374+00 f t SUBTOTAL 121500.00 1 1682 \N +64814 2025-06-11 10:59:30.651205+00 2025-06-11 10:59:30.651213+00 f t DESCUENTO 0.00 2 1682 \N +64815 2025-06-11 10:59:30.652814+00 2025-06-11 10:59:30.652822+00 f t TOTAL 121500.00 3 1682 \N +64816 2025-06-11 10:59:30.654218+00 2025-06-11 10:59:30.654231+00 f t ADELANTO 30500.00 4 1682 \N +64821 2025-06-11 11:00:02.564626+00 2025-06-11 11:00:02.56464+00 f t SUBTOTAL 0.00 1 1683 \N +64822 2025-06-11 11:00:02.572062+00 2025-06-11 11:00:02.572077+00 f t DESCUENTO 0.00 2 1683 \N +64823 2025-06-11 11:00:02.575262+00 2025-06-11 11:00:02.575277+00 f t TOTAL 0.00 3 1683 \N +64824 2025-06-11 11:00:02.578231+00 2025-06-11 11:00:02.578246+00 f t ADELANTO 0.00 4 1683 \N +65265 2025-06-11 15:22:20.075974+00 2025-06-11 15:22:20.075988+00 f t SUBTOTAL 0.00 1 1693 \N +65266 2025-06-11 15:22:20.077794+00 2025-06-11 15:22:20.077804+00 f t DESCUENTO 0.00 2 1693 \N +65267 2025-06-11 15:22:20.079385+00 2025-06-11 15:22:20.079395+00 f t TOTAL 0.00 3 1693 \N +65268 2025-06-11 15:22:20.081148+00 2025-06-11 15:22:20.081158+00 f t ADELANTO 0.00 4 1693 \N +66961 2025-06-12 15:49:36.592536+00 2025-06-12 15:49:36.592548+00 f t SUBTOTAL 0.00 1 1742 \N +66962 2025-06-12 15:49:36.594492+00 2025-06-12 15:49:36.594502+00 f t DESCUENTO 0.00 2 1742 \N +66963 2025-06-12 15:49:36.59619+00 2025-06-12 15:49:36.596199+00 f t TOTAL 0.00 3 1742 \N +66964 2025-06-12 15:49:36.598292+00 2025-06-12 15:49:36.598299+00 f t ADELANTO 0.00 4 1742 \N +65353 2025-06-11 15:49:40.129536+00 2025-06-11 15:49:40.12955+00 f t SUBTOTAL 209700.00 1 1695 \N +65354 2025-06-11 15:49:40.132338+00 2025-06-11 15:49:40.132351+00 f t DESCUENTO 0.00 2 1695 \N +65355 2025-06-11 15:49:40.134836+00 2025-06-11 15:49:40.134849+00 f t TOTAL 209700.00 3 1695 \N +65356 2025-06-11 15:49:40.136708+00 2025-06-11 15:49:40.136718+00 f t ADELANTO 71700.00 4 1695 \N +65393 2025-06-11 17:29:54.486999+00 2025-06-11 17:29:54.487012+00 f t SUBTOTAL 0.00 1 1697 \N +65394 2025-06-11 17:29:54.488849+00 2025-06-11 17:29:54.488859+00 f t DESCUENTO 0.00 2 1697 \N +65395 2025-06-11 17:29:54.491161+00 2025-06-11 17:29:54.491171+00 f t TOTAL 0.00 3 1697 \N +65396 2025-06-11 17:29:54.492869+00 2025-06-11 17:29:54.492878+00 f t ADELANTO 0.00 4 1697 \N +67209 2025-06-12 18:39:00.739359+00 2025-06-12 18:39:00.739373+00 f t SUBTOTAL 0.00 1 1749 \N +67210 2025-06-12 18:39:00.741556+00 2025-06-12 18:39:00.741568+00 f t DESCUENTO 0.00 2 1749 \N +67211 2025-06-12 18:39:00.74351+00 2025-06-12 18:39:00.743523+00 f t TOTAL 0.00 3 1749 \N +67212 2025-06-12 18:39:00.74532+00 2025-06-12 18:39:00.745332+00 f t ADELANTO 0.00 4 1749 \N +65653 2025-06-11 18:45:53.802963+00 2025-06-11 18:45:53.802973+00 f t SUBTOTAL 49500.00 1 1702 \N +65654 2025-06-11 18:45:53.80519+00 2025-06-11 18:45:53.805198+00 f t DESCUENTO 0.00 2 1702 \N +65655 2025-06-11 18:45:53.806887+00 2025-06-11 18:45:53.806895+00 f t TOTAL 49500.00 3 1702 \N +65656 2025-06-11 18:45:53.808435+00 2025-06-11 18:45:53.808444+00 f t ADELANTO 11500.00 4 1702 \N +67361 2025-06-12 21:03:30.309712+00 2025-06-12 21:03:30.309721+00 f t SUBTOTAL 64500.00 1 1754 \N +67362 2025-06-12 21:03:30.311996+00 2025-06-12 21:03:30.312007+00 f t DESCUENTO 0.00 2 1754 \N +67363 2025-06-12 21:03:30.314163+00 2025-06-12 21:03:30.314175+00 f t TOTAL 64500.00 3 1754 \N +67364 2025-06-12 21:03:30.316425+00 2025-06-12 21:03:30.316438+00 f t ADELANTO 17000.00 4 1754 \N +65809 2025-06-11 18:55:46.915847+00 2025-06-11 18:55:46.915861+00 f t SUBTOTAL 42000.00 1 1705 \N +65810 2025-06-11 18:55:46.918621+00 2025-06-11 18:55:46.918634+00 f t DESCUENTO 0.00 2 1705 \N +65811 2025-06-11 18:55:46.921074+00 2025-06-11 18:55:46.921087+00 f t TOTAL 42000.00 3 1705 \N +65812 2025-06-11 18:55:46.922874+00 2025-06-11 18:55:46.922887+00 f t ADELANTO 9500.00 4 1705 \N +65869 2025-06-11 19:11:42.006015+00 2025-06-11 19:11:42.006027+00 f t SUBTOTAL 42000.00 1 1706 \N +65870 2025-06-11 19:11:42.008006+00 2025-06-11 19:11:42.008017+00 f t DESCUENTO 0.00 2 1706 \N +65871 2025-06-11 19:11:42.009689+00 2025-06-11 19:11:42.0097+00 f t TOTAL 42000.00 3 1706 \N +65872 2025-06-11 19:11:42.01129+00 2025-06-11 19:11:42.011299+00 f t ADELANTO 9500.00 4 1706 \N +65889 2025-06-11 20:43:03.984314+00 2025-06-11 20:43:03.984327+00 f t SUBTOTAL 0.00 1 1707 \N +65890 2025-06-11 20:43:03.987175+00 2025-06-11 20:43:03.987187+00 f t DESCUENTO 0.00 2 1707 \N +65891 2025-06-11 20:43:03.989708+00 2025-06-11 20:43:03.98972+00 f t TOTAL 0.00 3 1707 \N +65892 2025-06-11 20:43:03.99151+00 2025-06-11 20:43:03.991517+00 f t ADELANTO 0.00 4 1707 \N +65907 2025-06-11 21:22:16.789501+00 2025-06-11 21:22:16.789512+00 f t TOTAL 0.00 3 1708 \N +65908 2025-06-11 21:22:16.795193+00 2025-06-11 21:22:16.795205+00 f t ADELANTO 0.00 4 1708 \N +65913 2025-06-11 21:25:55.640628+00 2025-06-11 21:25:55.640637+00 f t SUBTOTAL 0.00 1 1709 \N +65914 2025-06-11 21:25:55.642035+00 2025-06-11 21:25:55.642042+00 f t DESCUENTO 0.00 2 1709 \N +65915 2025-06-11 21:25:55.643361+00 2025-06-11 21:25:55.643369+00 f t TOTAL 0.00 3 1709 \N +65916 2025-06-11 21:25:55.644556+00 2025-06-11 21:25:55.644561+00 f t ADELANTO 0.00 4 1709 \N +69671 2025-06-13 22:23:03.739318+00 2025-06-13 22:23:03.739358+00 f t TOTAL 0.00 3 1816 \N +69672 2025-06-13 22:23:03.741041+00 2025-06-13 22:23:03.741052+00 f t ADELANTO 0.00 4 1816 \N +73120 2025-06-15 23:41:52.194605+00 2025-06-15 23:41:52.194614+00 f t ADELANTO 0.00 4 1910 \N +84417 2025-06-21 14:05:20.767182+00 2025-06-21 14:05:20.767189+00 f t SUBTOTAL 0.00 1 2219 \N +66437 2025-06-12 12:11:47.90577+00 2025-06-12 12:11:47.905783+00 f t SUBTOTAL 0.00 1 1728 \N +66438 2025-06-12 12:11:47.907994+00 2025-06-12 12:11:47.908004+00 f t DESCUENTO 0.00 2 1728 \N +66439 2025-06-12 12:11:47.909899+00 2025-06-12 12:11:47.909906+00 f t TOTAL 0.00 3 1728 \N +66440 2025-06-12 12:11:47.911778+00 2025-06-12 12:11:47.911786+00 f t ADELANTO 0.00 4 1728 \N +66473 2025-06-12 12:16:21.379059+00 2025-06-12 12:16:21.379072+00 f t SUBTOTAL 64500.00 1 1729 \N +66474 2025-06-12 12:16:21.381423+00 2025-06-12 12:16:21.381433+00 f t DESCUENTO 0.00 2 1729 \N +66475 2025-06-12 12:16:21.38311+00 2025-06-12 12:16:21.383121+00 f t TOTAL 64500.00 3 1729 \N +66476 2025-06-12 12:16:21.384736+00 2025-06-12 12:16:21.384746+00 f t ADELANTO 17000.00 4 1729 \N +66505 2025-06-12 13:09:24.806673+00 2025-06-12 13:09:24.806681+00 f t SUBTOTAL 0.00 1 1730 \N +66506 2025-06-12 13:09:24.808474+00 2025-06-12 13:09:24.808481+00 f t DESCUENTO 0.00 2 1730 \N +66507 2025-06-12 13:09:24.809797+00 2025-06-12 13:09:24.809803+00 f t TOTAL 0.00 3 1730 \N +66508 2025-06-12 13:09:24.810946+00 2025-06-12 13:09:24.810953+00 f t ADELANTO 0.00 4 1730 \N +65953 2025-06-11 22:31:30.563802+00 2025-06-11 22:31:30.56381+00 f t SUBTOTAL 50000.00 1 1710 \N +65954 2025-06-11 22:31:30.565588+00 2025-06-11 22:31:30.565598+00 f t DESCUENTO 0.00 2 1710 \N +65955 2025-06-11 22:31:30.567392+00 2025-06-11 22:31:30.567401+00 f t TOTAL 50000.00 3 1710 \N +65956 2025-06-11 22:31:30.568803+00 2025-06-11 22:31:30.568809+00 f t ADELANTO 10000.00 4 1710 \N +68257 2025-06-13 06:22:24.843552+00 2025-06-13 06:22:24.843567+00 f t SUBTOTAL 0.00 1 1778 \N +68258 2025-06-13 06:22:24.845858+00 2025-06-13 06:22:24.845867+00 f t DESCUENTO 0.00 2 1778 \N +68259 2025-06-13 06:22:24.848298+00 2025-06-13 06:22:24.848309+00 f t TOTAL 0.00 3 1778 \N +68260 2025-06-13 06:22:24.850378+00 2025-06-13 06:22:24.850391+00 f t ADELANTO 0.00 4 1778 \N +65989 2025-06-11 22:36:01.896221+00 2025-06-11 22:36:01.89623+00 f t SUBTOTAL 94700.00 1 1711 \N +65990 2025-06-11 22:36:01.898521+00 2025-06-11 22:36:01.898533+00 f t DESCUENTO 0.00 2 1711 \N +65991 2025-06-11 22:36:01.900868+00 2025-06-11 22:36:01.900878+00 f t TOTAL 94700.00 3 1711 \N +65992 2025-06-11 22:36:01.902803+00 2025-06-11 22:36:01.902812+00 f t ADELANTO 56700.00 4 1711 \N +66845 2025-06-12 14:36:14.349623+00 2025-06-12 14:36:14.349633+00 f t SUBTOTAL 0.00 1 1737 \N +66846 2025-06-12 14:36:14.351916+00 2025-06-12 14:36:14.351927+00 f t DESCUENTO 0.00 2 1737 \N +66847 2025-06-12 14:36:14.35364+00 2025-06-12 14:36:14.353647+00 f t TOTAL 0.00 3 1737 \N +66848 2025-06-12 14:36:14.355283+00 2025-06-12 14:36:14.355294+00 f t ADELANTO 0.00 4 1737 \N +66017 2025-06-11 22:40:43.142492+00 2025-06-11 22:40:43.142504+00 f t SUBTOTAL 50000.00 1 1712 \N +66018 2025-06-11 22:40:43.14493+00 2025-06-11 22:40:43.14494+00 f t DESCUENTO 0.00 2 1712 \N +66019 2025-06-11 22:40:43.146966+00 2025-06-11 22:40:43.146976+00 f t TOTAL 50000.00 3 1712 \N +66020 2025-06-11 22:40:43.148908+00 2025-06-11 22:40:43.148917+00 f t ADELANTO 10000.00 4 1712 \N +68421 2025-06-13 11:30:03.873161+00 2025-06-13 11:30:03.873176+00 f t SUBTOTAL 117000.00 1 1785 \N +68422 2025-06-13 11:30:03.876675+00 2025-06-13 11:30:03.876689+00 f t DESCUENTO 0.00 2 1785 \N +68423 2025-06-13 11:30:03.881397+00 2025-06-13 11:30:03.881411+00 f t TOTAL 117000.00 3 1785 \N +68424 2025-06-13 11:30:03.885058+00 2025-06-13 11:30:03.885075+00 f t ADELANTO 24500.00 4 1785 \N +68449 2025-06-13 11:41:16.731589+00 2025-06-13 11:41:16.731608+00 f t SUBTOTAL 94700.00 1 1786 \N +68450 2025-06-13 11:41:16.73381+00 2025-06-13 11:41:16.733821+00 f t DESCUENTO 0.00 2 1786 \N +68451 2025-06-13 11:41:16.735578+00 2025-06-13 11:41:16.735588+00 f t TOTAL 94700.00 3 1786 \N +68452 2025-06-13 11:41:16.7371+00 2025-06-13 11:41:16.737109+00 f t ADELANTO 56700.00 4 1786 \N +68533 2025-06-13 12:31:13.738098+00 2025-06-13 12:31:13.73811+00 f t SUBTOTAL 42000.00 1 1789 \N +68534 2025-06-13 12:31:13.740261+00 2025-06-13 12:31:13.740273+00 f t DESCUENTO 0.00 2 1789 \N +68535 2025-06-13 12:31:13.74203+00 2025-06-13 12:31:13.742039+00 f t TOTAL 42000.00 3 1789 \N +66077 2025-06-11 22:54:52.315414+00 2025-06-11 22:54:52.315423+00 f t SUBTOTAL 90200.00 1 1713 \N +66078 2025-06-11 22:54:52.31993+00 2025-06-11 22:54:52.319939+00 f t DESCUENTO 0.00 2 1713 \N +66079 2025-06-11 22:54:52.321822+00 2025-06-11 22:54:52.32183+00 f t TOTAL 90200.00 3 1713 \N +66080 2025-06-11 22:54:52.324198+00 2025-06-11 22:54:52.324206+00 f t ADELANTO 46700.00 4 1713 \N +68536 2025-06-13 12:31:13.743848+00 2025-06-13 12:31:13.743858+00 f t ADELANTO 9500.00 4 1789 \N +67217 2025-06-12 18:40:36.212629+00 2025-06-12 18:40:36.212642+00 f t SUBTOTAL 0.00 1 1750 \N +67218 2025-06-12 18:40:36.217565+00 2025-06-12 18:40:36.217577+00 f t DESCUENTO 0.00 2 1750 \N +67219 2025-06-12 18:40:36.219453+00 2025-06-12 18:40:36.219464+00 f t TOTAL 0.00 3 1750 \N +67220 2025-06-12 18:40:36.221207+00 2025-06-12 18:40:36.221217+00 f t ADELANTO 0.00 4 1750 \N +66105 2025-06-11 23:16:41.42806+00 2025-06-11 23:16:41.428072+00 f t SUBTOTAL 50000.00 1 1714 \N +66106 2025-06-11 23:16:41.429986+00 2025-06-11 23:16:41.429993+00 f t DESCUENTO 0.00 2 1714 \N +66107 2025-06-11 23:16:41.431669+00 2025-06-11 23:16:41.431678+00 f t TOTAL 50000.00 3 1714 \N +66108 2025-06-11 23:16:41.43321+00 2025-06-11 23:16:41.43322+00 f t ADELANTO 10000.00 4 1714 \N +68617 2025-06-13 13:49:45.246001+00 2025-06-13 13:49:45.246014+00 f t SUBTOTAL 42000.00 1 1792 \N +68618 2025-06-13 13:49:45.247692+00 2025-06-13 13:49:45.247702+00 f t DESCUENTO 0.00 2 1792 \N +68619 2025-06-13 13:49:45.249346+00 2025-06-13 13:49:45.249355+00 f t TOTAL 42000.00 3 1792 \N +66113 2025-06-11 23:26:53.610827+00 2025-06-11 23:26:53.610836+00 f t SUBTOTAL 0.00 1 1715 \N +66114 2025-06-11 23:26:53.61238+00 2025-06-11 23:26:53.612387+00 f t DESCUENTO 0.00 2 1715 \N +66115 2025-06-11 23:26:53.61356+00 2025-06-11 23:26:53.613566+00 f t TOTAL 0.00 3 1715 \N +66116 2025-06-11 23:26:53.61475+00 2025-06-11 23:26:53.614757+00 f t ADELANTO 0.00 4 1715 \N +68620 2025-06-13 13:49:45.251069+00 2025-06-13 13:49:45.251077+00 f t ADELANTO 9500.00 4 1792 \N +67417 2025-06-12 21:07:23.487676+00 2025-06-12 21:07:23.487689+00 f t SUBTOTAL 42000.00 1 1755 \N +67418 2025-06-12 21:07:23.490437+00 2025-06-12 21:07:23.490448+00 f t DESCUENTO 0.00 2 1755 \N +67419 2025-06-12 21:07:23.49237+00 2025-06-12 21:07:23.492382+00 f t TOTAL 42000.00 3 1755 \N +67420 2025-06-12 21:07:23.494359+00 2025-06-12 21:07:23.494425+00 f t ADELANTO 9500.00 4 1755 \N +68733 2025-06-13 14:15:23.310622+00 2025-06-13 14:15:23.310631+00 f t SUBTOTAL 0.00 1 1794 \N +68734 2025-06-13 14:15:23.312234+00 2025-06-13 14:15:23.312242+00 f t DESCUENTO 0.00 2 1794 \N +68735 2025-06-13 14:15:23.313715+00 2025-06-13 14:15:23.313723+00 f t TOTAL 0.00 3 1794 \N +68736 2025-06-13 14:15:23.315065+00 2025-06-13 14:15:23.315071+00 f t ADELANTO 0.00 4 1794 \N +66209 2025-06-11 23:30:15.037605+00 2025-06-11 23:30:15.037614+00 f t SUBTOTAL 70000.00 1 1716 \N +66210 2025-06-11 23:30:15.040402+00 2025-06-11 23:30:15.040413+00 f t DESCUENTO 0.00 2 1716 \N +66211 2025-06-11 23:30:15.042404+00 2025-06-11 23:30:15.042415+00 f t TOTAL 70000.00 3 1716 \N +66212 2025-06-11 23:30:15.04439+00 2025-06-11 23:30:15.044398+00 f t ADELANTO 15000.00 4 1716 \N +66513 2025-06-12 13:15:58.263821+00 2025-06-12 13:15:58.263835+00 f t SUBTOTAL 0.00 1 1731 \N +66514 2025-06-12 13:15:58.265656+00 2025-06-12 13:15:58.265667+00 f t DESCUENTO 0.00 2 1731 \N +66515 2025-06-12 13:15:58.267279+00 2025-06-12 13:15:58.267288+00 f t TOTAL 0.00 3 1731 \N +66516 2025-06-12 13:15:58.26888+00 2025-06-12 13:15:58.268888+00 f t ADELANTO 0.00 4 1731 \N +66249 2025-06-11 23:36:07.213607+00 2025-06-11 23:36:07.213619+00 f t SUBTOTAL 42000.00 1 1717 \N +66250 2025-06-11 23:36:07.215641+00 2025-06-11 23:36:07.215648+00 f t DESCUENTO 0.00 2 1717 \N +66251 2025-06-11 23:36:07.217149+00 2025-06-11 23:36:07.217155+00 f t TOTAL 42000.00 3 1717 \N +66252 2025-06-11 23:36:07.218307+00 2025-06-11 23:36:07.218312+00 f t ADELANTO 9500.00 4 1717 \N +68213 2025-06-13 03:34:45.250063+00 2025-06-13 03:34:45.250074+00 f t SUBTOTAL 42000.00 1 1774 \N +68214 2025-06-13 03:34:45.252434+00 2025-06-13 03:34:45.252445+00 f t DESCUENTO 0.00 2 1774 \N +68215 2025-06-13 03:34:45.254556+00 2025-06-13 03:34:45.254567+00 f t TOTAL 42000.00 3 1774 \N +68216 2025-06-13 03:34:45.256239+00 2025-06-13 03:34:45.256249+00 f t ADELANTO 9500.00 4 1774 \N +68233 2025-06-13 03:54:11.128035+00 2025-06-13 03:54:11.128048+00 f t SUBTOTAL 0.00 1 1775 \N +68234 2025-06-13 03:54:11.13122+00 2025-06-13 03:54:11.131228+00 f t DESCUENTO 0.00 2 1775 \N +68235 2025-06-13 03:54:11.133112+00 2025-06-13 03:54:11.133119+00 f t TOTAL 0.00 3 1775 \N +68236 2025-06-13 03:54:11.134588+00 2025-06-13 03:54:11.134597+00 f t ADELANTO 0.00 4 1775 \N +68265 2025-06-13 06:33:06.118406+00 2025-06-13 06:33:06.118416+00 f t SUBTOTAL 0.00 1 1779 \N +68266 2025-06-13 06:33:06.120224+00 2025-06-13 06:33:06.120232+00 f t DESCUENTO 0.00 2 1779 \N +68267 2025-06-13 06:33:06.121768+00 2025-06-13 06:33:06.121775+00 f t TOTAL 0.00 3 1779 \N +68268 2025-06-13 06:33:06.123109+00 2025-06-13 06:33:06.123115+00 f t ADELANTO 0.00 4 1779 \N +66725 2025-06-12 13:44:06.428482+00 2025-06-12 13:44:06.428494+00 f t SUBTOTAL 0.00 1 1736 \N +66726 2025-06-12 13:44:06.43171+00 2025-06-12 13:44:06.431721+00 f t DESCUENTO 0.00 2 1736 \N +66727 2025-06-12 13:44:06.433646+00 2025-06-12 13:44:06.433656+00 f t TOTAL 0.00 3 1736 \N +66728 2025-06-12 13:44:06.435352+00 2025-06-12 13:44:06.435363+00 f t ADELANTO 0.00 4 1736 \N +68321 2025-06-13 10:12:06.064938+00 2025-06-13 10:12:06.064951+00 f t SUBTOTAL 70000.00 1 1781 \N +68322 2025-06-13 10:12:06.067288+00 2025-06-13 10:12:06.067297+00 f t DESCUENTO 0.00 2 1781 \N +68323 2025-06-13 10:12:06.069037+00 2025-06-13 10:12:06.069047+00 f t TOTAL 70000.00 3 1781 \N +68324 2025-06-13 10:12:06.070583+00 2025-06-13 10:12:06.070591+00 f t ADELANTO 15000.00 4 1781 \N +66285 2025-06-12 00:10:36.156342+00 2025-06-12 00:10:36.156351+00 f t SUBTOTAL 50000.00 1 1718 \N +66286 2025-06-12 00:10:36.157963+00 2025-06-12 00:10:36.157971+00 f t DESCUENTO 0.00 2 1718 \N +66287 2025-06-12 00:10:36.159394+00 2025-06-12 00:10:36.1594+00 f t TOTAL 50000.00 3 1718 \N +66288 2025-06-12 00:10:36.160484+00 2025-06-12 00:10:36.160489+00 f t ADELANTO 10000.00 4 1718 \N +66853 2025-06-12 15:24:52.601613+00 2025-06-12 15:24:52.601625+00 f t SUBTOTAL 0.00 1 1738 \N +66854 2025-06-12 15:24:52.603624+00 2025-06-12 15:24:52.603634+00 f t DESCUENTO 0.00 2 1738 \N +66855 2025-06-12 15:24:52.605231+00 2025-06-12 15:24:52.60524+00 f t TOTAL 0.00 3 1738 \N +66856 2025-06-12 15:24:52.606558+00 2025-06-12 15:24:52.606565+00 f t ADELANTO 0.00 4 1738 \N +66317 2025-06-12 00:47:00.127567+00 2025-06-12 00:47:00.127575+00 f t SUBTOTAL 50000.00 1 1719 \N +66318 2025-06-12 00:47:00.129131+00 2025-06-12 00:47:00.129137+00 f t DESCUENTO 0.00 2 1719 \N +66319 2025-06-12 00:47:00.130303+00 2025-06-12 00:47:00.130308+00 f t TOTAL 50000.00 3 1719 \N +66320 2025-06-12 00:47:00.131505+00 2025-06-12 00:47:00.13151+00 f t ADELANTO 10000.00 4 1719 \N +66325 2025-06-12 01:41:00.202665+00 2025-06-12 01:41:00.202675+00 f t SUBTOTAL 0.00 1 1720 \N +66326 2025-06-12 01:41:00.204408+00 2025-06-12 01:41:00.204419+00 f t DESCUENTO 0.00 2 1720 \N +66327 2025-06-12 01:41:00.206026+00 2025-06-12 01:41:00.206036+00 f t TOTAL 0.00 3 1720 \N +66328 2025-06-12 01:41:00.207446+00 2025-06-12 01:41:00.207464+00 f t ADELANTO 0.00 4 1720 \N +66333 2025-06-12 01:56:50.843896+00 2025-06-12 01:56:50.843909+00 f t SUBTOTAL 0.00 1 1721 \N +66334 2025-06-12 01:56:50.84701+00 2025-06-12 01:56:50.847021+00 f t DESCUENTO 0.00 2 1721 \N +66335 2025-06-12 01:56:50.84917+00 2025-06-12 01:56:50.84918+00 f t TOTAL 0.00 3 1721 \N +66336 2025-06-12 01:56:50.851061+00 2025-06-12 01:56:50.851071+00 f t ADELANTO 0.00 4 1721 \N +67017 2025-06-12 16:22:57.577358+00 2025-06-12 16:22:57.577372+00 f t SUBTOTAL 0.00 1 1744 \N +67018 2025-06-12 16:22:57.578984+00 2025-06-12 16:22:57.578993+00 f t DESCUENTO 0.00 2 1744 \N +67019 2025-06-12 16:22:57.580494+00 2025-06-12 16:22:57.580502+00 f t TOTAL 0.00 3 1744 \N +67020 2025-06-12 16:22:57.581822+00 2025-06-12 16:22:57.58183+00 f t ADELANTO 0.00 4 1744 \N +66369 2025-06-12 04:03:01.53002+00 2025-06-12 04:03:01.530032+00 f t SUBTOTAL 42000.00 1 1722 \N +66370 2025-06-12 04:03:01.534055+00 2025-06-12 04:03:01.534064+00 f t DESCUENTO 0.00 2 1722 \N +66371 2025-06-12 04:03:01.53772+00 2025-06-12 04:03:01.537732+00 f t TOTAL 42000.00 3 1722 \N +66372 2025-06-12 04:03:01.540348+00 2025-06-12 04:03:01.54036+00 f t ADELANTO 9500.00 4 1722 \N +67125 2025-06-12 17:01:07.04054+00 2025-06-12 17:01:07.040553+00 f t SUBTOTAL 49500.00 1 1743 \N +67126 2025-06-12 17:01:07.042526+00 2025-06-12 17:01:07.042532+00 f t DESCUENTO 0.00 2 1743 \N +67127 2025-06-12 17:01:07.044069+00 2025-06-12 17:01:07.044075+00 f t TOTAL 49500.00 3 1743 \N +67128 2025-06-12 17:01:07.045543+00 2025-06-12 17:01:07.04555+00 f t ADELANTO 11500.00 4 1743 \N +66377 2025-06-12 05:04:33.397517+00 2025-06-12 05:04:33.397526+00 f t SUBTOTAL 0.00 1 1723 \N +66378 2025-06-12 05:04:33.399249+00 2025-06-12 05:04:33.399267+00 f t DESCUENTO 0.00 2 1723 \N +66379 2025-06-12 05:04:33.400555+00 2025-06-12 05:04:33.400561+00 f t TOTAL 0.00 3 1723 \N +66380 2025-06-12 05:04:33.401641+00 2025-06-12 05:04:33.401646+00 f t ADELANTO 0.00 4 1723 \N +67225 2025-06-12 18:49:01.828021+00 2025-06-12 18:49:01.828036+00 f t SUBTOTAL 0.00 1 1751 \N +67226 2025-06-12 18:49:01.831009+00 2025-06-12 18:49:01.831021+00 f t DESCUENTO 0.00 2 1751 \N +67227 2025-06-12 18:49:01.836687+00 2025-06-12 18:49:01.836702+00 f t TOTAL 0.00 3 1751 \N +67228 2025-06-12 18:49:01.839534+00 2025-06-12 18:49:01.839548+00 f t ADELANTO 0.00 4 1751 \N +67473 2025-06-12 21:14:15.253401+00 2025-06-12 21:14:15.253411+00 f t SUBTOTAL 0.00 1 1756 \N +67474 2025-06-12 21:14:15.255572+00 2025-06-12 21:14:15.255584+00 f t DESCUENTO 0.00 2 1756 \N +67475 2025-06-12 21:14:15.256995+00 2025-06-12 21:14:15.257002+00 f t TOTAL 0.00 3 1756 \N +67476 2025-06-12 21:14:15.258214+00 2025-06-12 21:14:15.258221+00 f t ADELANTO 0.00 4 1756 \N +67525 2025-06-12 21:17:21.1448+00 2025-06-12 21:17:21.144809+00 f t SUBTOTAL 49700.00 1 1757 \N +67526 2025-06-12 21:17:21.146254+00 2025-06-12 21:17:21.146263+00 f t DESCUENTO 0.00 2 1757 \N +67527 2025-06-12 21:17:21.147428+00 2025-06-12 21:17:21.147434+00 f t TOTAL 49700.00 3 1757 \N +67528 2025-06-12 21:17:21.148451+00 2025-06-12 21:17:21.148457+00 f t ADELANTO 11700.00 4 1757 \N +67569 2025-06-12 21:52:36.883473+00 2025-06-12 21:52:36.883485+00 f t SUBTOTAL 50000.00 1 1758 \N +67570 2025-06-12 21:52:36.885945+00 2025-06-12 21:52:36.885957+00 f t DESCUENTO 0.00 2 1758 \N +67571 2025-06-12 21:52:36.887872+00 2025-06-12 21:52:36.887884+00 f t TOTAL 50000.00 3 1758 \N +67572 2025-06-12 21:52:36.889806+00 2025-06-12 21:52:36.889816+00 f t ADELANTO 10000.00 4 1758 \N +84418 2025-06-21 14:05:20.775829+00 2025-06-21 14:05:20.775839+00 f t DESCUENTO 0.00 2 2219 \N +67597 2025-06-12 22:01:19.765186+00 2025-06-12 22:01:19.7652+00 f t SUBTOTAL 0.00 1 1759 \N +67598 2025-06-12 22:01:19.76797+00 2025-06-12 22:01:19.767983+00 f t DESCUENTO 0.00 2 1759 \N +67599 2025-06-12 22:01:19.769773+00 2025-06-12 22:01:19.769783+00 f t TOTAL 0.00 3 1759 \N +67600 2025-06-12 22:01:19.771355+00 2025-06-12 22:01:19.771365+00 f t ADELANTO 0.00 4 1759 \N +68081 2025-06-13 02:54:50.517863+00 2025-06-13 02:54:50.517874+00 f t SUBTOTAL 102700.00 1 1770 \N +68082 2025-06-13 02:54:50.519652+00 2025-06-13 02:54:50.519661+00 f t DESCUENTO 0.00 2 1770 \N +68083 2025-06-13 02:54:50.5211+00 2025-06-13 02:54:50.521108+00 f t TOTAL 102700.00 3 1770 \N +68084 2025-06-13 02:54:50.522424+00 2025-06-13 02:54:50.522431+00 f t ADELANTO 64700.00 4 1770 \N +68241 2025-06-13 05:38:50.796996+00 2025-06-13 05:38:50.797011+00 f t SUBTOTAL 0.00 1 1776 \N +68242 2025-06-13 05:38:50.798735+00 2025-06-13 05:38:50.798746+00 f t DESCUENTO 0.00 2 1776 \N +68243 2025-06-13 05:38:50.800664+00 2025-06-13 05:38:50.800674+00 f t TOTAL 0.00 3 1776 \N +68244 2025-06-13 05:38:50.802241+00 2025-06-13 05:38:50.802251+00 f t ADELANTO 0.00 4 1776 \N +69885 2025-06-14 02:21:53.65588+00 2025-06-14 02:21:53.655895+00 f t SUBTOTAL 0.00 1 1823 \N +69886 2025-06-14 02:21:53.660868+00 2025-06-14 02:21:53.660881+00 f t DESCUENTO 0.00 2 1823 \N +67641 2025-06-12 22:06:46.841845+00 2025-06-12 22:06:46.841854+00 f t SUBTOTAL 72000.00 1 1760 \N +67642 2025-06-12 22:06:46.843994+00 2025-06-12 22:06:46.844006+00 f t DESCUENTO 0.00 2 1760 \N +67643 2025-06-12 22:06:46.845561+00 2025-06-12 22:06:46.845571+00 f t TOTAL 72000.00 3 1760 \N +67644 2025-06-12 22:06:46.847034+00 2025-06-12 22:06:46.847042+00 f t ADELANTO 19000.00 4 1760 \N +69887 2025-06-14 02:21:53.664443+00 2025-06-14 02:21:53.664455+00 f t TOTAL 0.00 3 1823 \N +69888 2025-06-14 02:21:53.667792+00 2025-06-14 02:21:53.667805+00 f t ADELANTO 0.00 4 1823 \N +69929 2025-06-14 03:56:33.36453+00 2025-06-14 03:56:33.364543+00 f t SUBTOTAL 0.00 1 1824 \N +69930 2025-06-14 03:56:33.367122+00 2025-06-14 03:56:33.367192+00 f t DESCUENTO 0.00 2 1824 \N +69931 2025-06-14 03:56:33.369286+00 2025-06-14 03:56:33.369295+00 f t TOTAL 0.00 3 1824 \N +69932 2025-06-14 03:56:33.371074+00 2025-06-14 03:56:33.371081+00 f t ADELANTO 0.00 4 1824 \N +68329 2025-06-13 10:39:55.33302+00 2025-06-13 10:39:55.333033+00 f t SUBTOTAL 0.00 1 1782 \N +68330 2025-06-13 10:39:55.334523+00 2025-06-13 10:39:55.33453+00 f t DESCUENTO 0.00 2 1782 \N +68331 2025-06-13 10:39:55.335886+00 2025-06-13 10:39:55.335892+00 f t TOTAL 0.00 3 1782 \N +68332 2025-06-13 10:39:55.337124+00 2025-06-13 10:39:55.337129+00 f t ADELANTO 0.00 4 1782 \N +68357 2025-06-13 10:41:34.836362+00 2025-06-13 10:41:34.836374+00 f t SUBTOTAL 70000.00 1 1783 \N +68358 2025-06-13 10:41:34.838687+00 2025-06-13 10:41:34.8387+00 f t DESCUENTO 0.00 2 1783 \N +68359 2025-06-13 10:41:34.840919+00 2025-06-13 10:41:34.840931+00 f t TOTAL 70000.00 3 1783 \N +68360 2025-06-13 10:41:34.842848+00 2025-06-13 10:41:34.84286+00 f t ADELANTO 10000.00 4 1783 \N +67677 2025-06-12 22:12:46.472282+00 2025-06-12 22:12:46.472329+00 f t SUBTOTAL 49500.00 1 1761 \N +67678 2025-06-12 22:12:46.474708+00 2025-06-12 22:12:46.474721+00 f t DESCUENTO 0.00 2 1761 \N +67679 2025-06-12 22:12:46.476903+00 2025-06-12 22:12:46.476916+00 f t TOTAL 49500.00 3 1761 \N +67680 2025-06-12 22:12:46.479041+00 2025-06-12 22:12:46.479053+00 f t ADELANTO 11500.00 4 1761 \N +68385 2025-06-13 11:16:07.249642+00 2025-06-13 11:16:07.249651+00 f t SUBTOTAL 49500.00 1 1784 \N +68386 2025-06-13 11:16:07.251533+00 2025-06-13 11:16:07.251541+00 f t DESCUENTO 0.00 2 1784 \N +68387 2025-06-13 11:16:07.25342+00 2025-06-13 11:16:07.253428+00 f t TOTAL 49500.00 3 1784 \N +68388 2025-06-13 11:16:07.255524+00 2025-06-13 11:16:07.255531+00 f t ADELANTO 11500.00 4 1784 \N +67705 2025-06-12 22:14:29.544453+00 2025-06-12 22:14:29.544462+00 f t SUBTOTAL 94700.00 1 1762 \N +67706 2025-06-12 22:14:29.546524+00 2025-06-12 22:14:29.546532+00 f t DESCUENTO 0.00 2 1762 \N +67707 2025-06-12 22:14:29.548591+00 2025-06-12 22:14:29.548599+00 f t TOTAL 94700.00 3 1762 \N +67708 2025-06-12 22:14:29.55033+00 2025-06-12 22:14:29.550337+00 f t ADELANTO 56700.00 4 1762 \N +68457 2025-06-13 11:59:28.075177+00 2025-06-13 11:59:28.075187+00 f t SUBTOTAL 0.00 1 1787 \N +68458 2025-06-13 11:59:28.080313+00 2025-06-13 11:59:28.080324+00 f t DESCUENTO 0.00 2 1787 \N +68459 2025-06-13 11:59:28.084473+00 2025-06-13 11:59:28.084487+00 f t TOTAL 0.00 3 1787 \N +68460 2025-06-13 11:59:28.086377+00 2025-06-13 11:59:28.086385+00 f t ADELANTO 0.00 4 1787 \N +67737 2025-06-12 22:30:53.286352+00 2025-06-12 22:30:53.286365+00 f t SUBTOTAL 0.00 1 1763 \N +67738 2025-06-12 22:30:53.289259+00 2025-06-12 22:30:53.289268+00 f t DESCUENTO 0.00 2 1763 \N +67739 2025-06-12 22:30:53.290961+00 2025-06-12 22:30:53.290973+00 f t TOTAL 0.00 3 1763 \N +67740 2025-06-12 22:30:53.292872+00 2025-06-12 22:30:53.292883+00 f t ADELANTO 0.00 4 1763 \N +68541 2025-06-13 13:02:35.888059+00 2025-06-13 13:02:35.888067+00 f t SUBTOTAL 0.00 1 1790 \N +68542 2025-06-13 13:02:35.889519+00 2025-06-13 13:02:35.889528+00 f t DESCUENTO 0.00 2 1790 \N +68543 2025-06-13 13:02:35.89084+00 2025-06-13 13:02:35.890848+00 f t TOTAL 0.00 3 1790 \N +68544 2025-06-13 13:02:35.892189+00 2025-06-13 13:02:35.892198+00 f t ADELANTO 0.00 4 1790 \N +68569 2025-06-13 13:17:58.871439+00 2025-06-13 13:17:58.871454+00 f t SUBTOTAL 94700.00 1 1791 \N +68570 2025-06-13 13:17:58.873542+00 2025-06-13 13:17:58.873548+00 f t DESCUENTO 0.00 2 1791 \N +68571 2025-06-13 13:17:58.874877+00 2025-06-13 13:17:58.874883+00 f t TOTAL 94700.00 3 1791 \N +68572 2025-06-13 13:17:58.876025+00 2025-06-13 13:17:58.87603+00 f t ADELANTO 56700.00 4 1791 \N +67805 2025-06-12 23:04:12.874234+00 2025-06-12 23:04:12.874245+00 f t SUBTOTAL 117000.00 1 1764 \N +67806 2025-06-12 23:04:12.876244+00 2025-06-12 23:04:12.876252+00 f t DESCUENTO 0.00 2 1764 \N +67807 2025-06-12 23:04:12.877871+00 2025-06-12 23:04:12.877881+00 f t TOTAL 117000.00 3 1764 \N +67808 2025-06-12 23:04:12.879722+00 2025-06-12 23:04:12.879732+00 f t ADELANTO 24500.00 4 1764 \N +67821 2025-06-13 00:10:15.859931+00 2025-06-13 00:10:15.859955+00 f t SUBTOTAL 0.00 1 1766 \N +67822 2025-06-13 00:10:15.862697+00 2025-06-13 00:10:15.86271+00 f t DESCUENTO 0.00 2 1766 \N +67823 2025-06-13 00:10:15.865533+00 2025-06-13 00:10:15.865545+00 f t TOTAL 0.00 3 1766 \N +67824 2025-06-13 00:10:15.867888+00 2025-06-13 00:10:15.867901+00 f t ADELANTO 0.00 4 1766 \N +67845 2025-06-13 00:12:36.444285+00 2025-06-13 00:12:36.444298+00 f t SUBTOTAL 94700.00 1 1765 \N +67846 2025-06-13 00:12:36.44621+00 2025-06-13 00:12:36.446222+00 f t DESCUENTO 0.00 2 1765 \N +67847 2025-06-13 00:12:36.447758+00 2025-06-13 00:12:36.447767+00 f t TOTAL 94700.00 3 1765 \N +67848 2025-06-13 00:12:36.449231+00 2025-06-13 00:12:36.44924+00 f t ADELANTO 56700.00 4 1765 \N +68841 2025-06-13 14:21:49.707977+00 2025-06-13 14:21:49.707991+00 f t SUBTOTAL 50000.00 1 1795 \N +68842 2025-06-13 14:21:49.710099+00 2025-06-13 14:21:49.710111+00 f t DESCUENTO 0.00 2 1795 \N +68843 2025-06-13 14:21:49.71166+00 2025-06-13 14:21:49.711671+00 f t TOTAL 50000.00 3 1795 \N +68844 2025-06-13 14:21:49.713364+00 2025-06-13 14:21:49.713375+00 f t ADELANTO 10000.00 4 1795 \N +68861 2025-06-13 15:23:44.510507+00 2025-06-13 15:23:44.510517+00 f t SUBTOTAL 0.00 1 1796 \N +68862 2025-06-13 15:23:44.512478+00 2025-06-13 15:23:44.512487+00 f t DESCUENTO 0.00 2 1796 \N +68863 2025-06-13 15:23:44.51396+00 2025-06-13 15:23:44.51397+00 f t TOTAL 0.00 3 1796 \N +84419 2025-06-21 14:05:20.777389+00 2025-06-21 14:05:20.777396+00 f t TOTAL 0.00 3 2219 \N +84420 2025-06-21 14:05:20.779492+00 2025-06-21 14:05:20.779501+00 f t ADELANTO 0.00 4 2219 \N +86457 2025-06-22 06:33:21.008323+00 2025-06-22 06:33:21.008331+00 f t SUBTOTAL 0.00 1 2267 \N +67893 2025-06-13 00:46:44.092551+00 2025-06-13 00:46:44.092565+00 f t SUBTOTAL 50000.00 1 1767 \N +67894 2025-06-13 00:46:44.094745+00 2025-06-13 00:46:44.094757+00 f t DESCUENTO 0.00 2 1767 \N +67895 2025-06-13 00:46:44.097519+00 2025-06-13 00:46:44.097531+00 f t TOTAL 50000.00 3 1767 \N +67896 2025-06-13 00:46:44.099408+00 2025-06-13 00:46:44.099416+00 f t ADELANTO 10000.00 4 1767 \N +71485 2025-06-15 04:43:41.397847+00 2025-06-15 04:43:41.397856+00 f t SUBTOTAL 0.00 1 1868 \N +71486 2025-06-15 04:43:41.399865+00 2025-06-15 04:43:41.399872+00 f t DESCUENTO 0.00 2 1868 \N +71487 2025-06-15 04:43:41.401233+00 2025-06-15 04:43:41.40124+00 f t TOTAL 0.00 3 1868 \N +71488 2025-06-15 04:43:41.402536+00 2025-06-15 04:43:41.402543+00 f t ADELANTO 0.00 4 1868 \N +67925 2025-06-13 01:44:29.112891+00 2025-06-13 01:44:29.112899+00 f t SUBTOTAL 50000.00 1 1768 \N +67926 2025-06-13 01:44:29.114977+00 2025-06-13 01:44:29.114984+00 f t DESCUENTO 0.00 2 1768 \N +67927 2025-06-13 01:44:29.11653+00 2025-06-13 01:44:29.116537+00 f t TOTAL 50000.00 3 1768 \N +67928 2025-06-13 01:44:29.117867+00 2025-06-13 01:44:29.117875+00 f t ADELANTO 10000.00 4 1768 \N +68249 2025-06-13 05:49:58.768399+00 2025-06-13 05:49:58.768412+00 f t SUBTOTAL 0.00 1 1777 \N +68250 2025-06-13 05:49:58.770205+00 2025-06-13 05:49:58.770216+00 f t DESCUENTO 0.00 2 1777 \N +68251 2025-06-13 05:49:58.771937+00 2025-06-13 05:49:58.771948+00 f t TOTAL 0.00 3 1777 \N +68252 2025-06-13 05:49:58.773376+00 2025-06-13 05:49:58.773385+00 f t ADELANTO 0.00 4 1777 \N +68293 2025-06-13 06:40:10.829432+00 2025-06-13 06:40:10.829444+00 f t SUBTOTAL 64500.00 1 1780 \N +68294 2025-06-13 06:40:10.83173+00 2025-06-13 06:40:10.831741+00 f t DESCUENTO 0.00 2 1780 \N +68295 2025-06-13 06:40:10.833745+00 2025-06-13 06:40:10.833756+00 f t TOTAL 64500.00 3 1780 \N +68296 2025-06-13 06:40:10.836037+00 2025-06-13 06:40:10.836049+00 f t ADELANTO 17000.00 4 1780 \N +71685 2025-06-15 13:23:18.691056+00 2025-06-15 13:23:18.691068+00 f t SUBTOTAL 50000.00 1 1875 \N +71686 2025-06-15 13:23:18.692864+00 2025-06-15 13:23:18.692874+00 f t DESCUENTO 0.00 2 1875 \N +71687 2025-06-15 13:23:18.694266+00 2025-06-15 13:23:18.694274+00 f t TOTAL 50000.00 3 1875 \N +69937 2025-06-14 03:56:34.237701+00 2025-06-14 03:56:34.237715+00 f t SUBTOTAL 0.00 1 1825 \N +69938 2025-06-14 03:56:34.239545+00 2025-06-14 03:56:34.239557+00 f t DESCUENTO 0.00 2 1825 \N +69939 2025-06-14 03:56:34.241412+00 2025-06-14 03:56:34.241424+00 f t TOTAL 0.00 3 1825 \N +69940 2025-06-14 03:56:34.243232+00 2025-06-14 03:56:34.243243+00 f t ADELANTO 0.00 4 1825 \N +71688 2025-06-15 13:23:18.695634+00 2025-06-15 13:23:18.695643+00 f t ADELANTO 10000.00 4 1875 \N +69973 2025-06-14 06:30:43.44549+00 2025-06-14 06:30:43.445502+00 f t SUBTOTAL 64500.00 1 1826 \N +69974 2025-06-14 06:30:43.447685+00 2025-06-14 06:30:43.447698+00 f t DESCUENTO 0.00 2 1826 \N +69975 2025-06-14 06:30:43.449423+00 2025-06-14 06:30:43.449435+00 f t TOTAL 64500.00 3 1826 \N +69976 2025-06-14 06:30:43.451169+00 2025-06-14 06:30:43.451179+00 f t ADELANTO 17000.00 4 1826 \N +69993 2025-06-14 09:10:20.657571+00 2025-06-14 09:10:20.657582+00 f t SUBTOTAL 0.00 1 1827 \N +69994 2025-06-14 09:10:20.660177+00 2025-06-14 09:10:20.66019+00 f t DESCUENTO 0.00 2 1827 \N +69995 2025-06-14 09:10:20.661998+00 2025-06-14 09:10:20.662007+00 f t TOTAL 0.00 3 1827 \N +69996 2025-06-14 09:10:20.663612+00 2025-06-14 09:10:20.663622+00 f t ADELANTO 0.00 4 1827 \N +67973 2025-06-13 01:47:51.531653+00 2025-06-13 01:47:51.531664+00 f t SUBTOTAL 27500.00 1 1769 \N +67974 2025-06-13 01:47:51.533769+00 2025-06-13 01:47:51.53378+00 f t DESCUENTO 0.00 2 1769 \N +67975 2025-06-13 01:47:51.535404+00 2025-06-13 01:47:51.535413+00 f t TOTAL 27500.00 3 1769 \N +67976 2025-06-13 01:47:51.536845+00 2025-06-13 01:47:51.536852+00 f t ADELANTO 27500.00 4 1769 \N +68465 2025-06-13 12:01:16.102121+00 2025-06-13 12:01:16.102135+00 f t SUBTOTAL 0.00 1 1788 \N +68466 2025-06-13 12:01:16.104362+00 2025-06-13 12:01:16.104371+00 f t DESCUENTO 0.00 2 1788 \N +68467 2025-06-13 12:01:16.106434+00 2025-06-13 12:01:16.106444+00 f t TOTAL 0.00 3 1788 \N +68468 2025-06-13 12:01:16.108106+00 2025-06-13 12:01:16.108116+00 f t ADELANTO 0.00 4 1788 \N +70205 2025-06-14 14:02:13.652182+00 2025-06-14 14:02:13.652191+00 f t SUBTOTAL 0.00 1 1832 \N +70206 2025-06-14 14:02:13.653792+00 2025-06-14 14:02:13.6538+00 f t DESCUENTO 0.00 2 1832 \N +70207 2025-06-14 14:02:13.655355+00 2025-06-14 14:02:13.655363+00 f t TOTAL 0.00 3 1832 \N +70208 2025-06-14 14:02:13.656843+00 2025-06-14 14:02:13.65685+00 f t ADELANTO 0.00 4 1832 \N +68725 2025-06-13 14:13:29.18511+00 2025-06-13 14:13:29.185119+00 f t SUBTOTAL 42000.00 1 1793 \N +68726 2025-06-13 14:13:29.18702+00 2025-06-13 14:13:29.187031+00 f t DESCUENTO 0.00 2 1793 \N +68727 2025-06-13 14:13:29.18848+00 2025-06-13 14:13:29.188487+00 f t TOTAL 42000.00 3 1793 \N +68728 2025-06-13 14:13:29.1898+00 2025-06-13 14:13:29.18981+00 f t ADELANTO 9500.00 4 1793 \N +70521 2025-06-14 16:22:34.716921+00 2025-06-14 16:22:34.71693+00 f t SUBTOTAL 50000.00 1 1839 \N +70522 2025-06-14 16:22:34.71851+00 2025-06-14 16:22:34.718517+00 f t DESCUENTO 0.00 2 1839 \N +70523 2025-06-14 16:22:34.719811+00 2025-06-14 16:22:34.719817+00 f t TOTAL 50000.00 3 1839 \N +70524 2025-06-14 16:22:34.721097+00 2025-06-14 16:22:34.721102+00 f t ADELANTO 10000.00 4 1839 \N +70633 2025-06-14 18:49:34.625643+00 2025-06-14 18:49:34.625658+00 f t SUBTOTAL 0.00 1 1843 \N +70634 2025-06-14 18:49:34.627345+00 2025-06-14 18:49:34.627357+00 f t DESCUENTO 0.00 2 1843 \N +70635 2025-06-14 18:49:34.629957+00 2025-06-14 18:49:34.629967+00 f t TOTAL 0.00 3 1843 \N +70636 2025-06-14 18:49:34.631554+00 2025-06-14 18:49:34.631564+00 f t ADELANTO 0.00 4 1843 \N +70657 2025-06-14 18:54:33.288525+00 2025-06-14 18:54:33.288535+00 f t SUBTOTAL 0.00 1 1845 \N +68853 2025-06-13 14:32:01.530878+00 2025-06-13 14:32:01.530892+00 f t SUBTOTAL 0.00 1 1771 \N +68854 2025-06-13 14:32:01.533703+00 2025-06-13 14:32:01.533714+00 f t DESCUENTO 0.00 2 1771 \N +68855 2025-06-13 14:32:01.535557+00 2025-06-13 14:32:01.535566+00 f t TOTAL 0.00 3 1771 \N +68856 2025-06-13 14:32:01.537446+00 2025-06-13 14:32:01.537455+00 f t ADELANTO 0.00 4 1771 \N +68864 2025-06-13 15:23:44.515527+00 2025-06-13 15:23:44.515536+00 f t ADELANTO 0.00 4 1796 \N +70658 2025-06-14 18:54:33.289832+00 2025-06-14 18:54:33.28984+00 f t DESCUENTO 0.00 2 1845 \N +70659 2025-06-14 18:54:33.290923+00 2025-06-14 18:54:33.290931+00 f t TOTAL 0.00 3 1845 \N +70660 2025-06-14 18:54:33.292111+00 2025-06-14 18:54:33.292119+00 f t ADELANTO 0.00 4 1845 \N +68869 2025-06-13 15:57:52.614009+00 2025-06-13 15:57:52.61402+00 f t SUBTOTAL 0.00 1 1797 \N +68870 2025-06-13 15:57:52.616055+00 2025-06-13 15:57:52.616068+00 f t DESCUENTO 0.00 2 1797 \N +68871 2025-06-13 15:57:52.617922+00 2025-06-13 15:57:52.617932+00 f t TOTAL 0.00 3 1797 \N +68872 2025-06-13 15:57:52.620074+00 2025-06-13 15:57:52.620085+00 f t ADELANTO 0.00 4 1797 \N +68877 2025-06-13 15:59:18.827057+00 2025-06-13 15:59:18.827067+00 f t SUBTOTAL 0.00 1 1798 \N +68878 2025-06-13 15:59:18.829068+00 2025-06-13 15:59:18.829081+00 f t DESCUENTO 0.00 2 1798 \N +68879 2025-06-13 15:59:18.830638+00 2025-06-13 15:59:18.830645+00 f t TOTAL 0.00 3 1798 \N +68880 2025-06-13 15:59:18.832294+00 2025-06-13 15:59:18.832301+00 f t ADELANTO 0.00 4 1798 \N +74869 2025-06-16 21:09:29.18625+00 2025-06-16 21:09:29.18626+00 f t SUBTOTAL 129000.00 1 1954 \N +74870 2025-06-16 21:09:29.188016+00 2025-06-16 21:09:29.188024+00 f t DESCUENTO 0.00 2 1954 \N +74871 2025-06-16 21:09:29.189389+00 2025-06-16 21:09:29.189396+00 f t TOTAL 129000.00 3 1954 \N +74872 2025-06-16 21:09:29.190561+00 2025-06-16 21:09:29.190567+00 f t ADELANTO 34000.00 4 1954 \N +69745 2025-06-13 23:18:34.093633+00 2025-06-13 23:18:34.093646+00 f t SUBTOTAL 64500.00 1 1817 \N +69746 2025-06-13 23:18:34.096129+00 2025-06-13 23:18:34.096138+00 f t DESCUENTO 0.00 2 1817 \N +69747 2025-06-13 23:18:34.098136+00 2025-06-13 23:18:34.098145+00 f t TOTAL 64500.00 3 1817 \N +69748 2025-06-13 23:18:34.100352+00 2025-06-13 23:18:34.100364+00 f t ADELANTO 17000.00 4 1817 \N +71517 2025-06-15 04:47:28.164065+00 2025-06-15 04:47:28.164075+00 f t SUBTOTAL 0.00 1 1869 \N +71518 2025-06-15 04:47:28.166272+00 2025-06-15 04:47:28.166282+00 f t DESCUENTO 0.00 2 1869 \N +68913 2025-06-13 16:14:49.136448+00 2025-06-13 16:14:49.136457+00 f t SUBTOTAL 50000.00 1 1799 \N +68914 2025-06-13 16:14:49.138546+00 2025-06-13 16:14:49.138571+00 f t DESCUENTO 0.00 2 1799 \N +68915 2025-06-13 16:14:49.140622+00 2025-06-13 16:14:49.140639+00 f t TOTAL 50000.00 3 1799 \N +68916 2025-06-13 16:14:49.142412+00 2025-06-13 16:14:49.14242+00 f t ADELANTO 10000.00 4 1799 \N +71519 2025-06-15 04:47:28.167615+00 2025-06-15 04:47:28.167624+00 f t TOTAL 0.00 3 1869 \N +71520 2025-06-15 04:47:28.169039+00 2025-06-15 04:47:28.169045+00 f t ADELANTO 0.00 4 1869 \N +71581 2025-06-15 12:48:42.376027+00 2025-06-15 12:48:42.376037+00 f t SUBTOTAL 42000.00 1 1873 \N +71582 2025-06-15 12:48:42.378203+00 2025-06-15 12:48:42.378214+00 f t DESCUENTO 0.00 2 1873 \N +71583 2025-06-15 12:48:42.379857+00 2025-06-15 12:48:42.379865+00 f t TOTAL 42000.00 3 1873 \N +71584 2025-06-15 12:48:42.381388+00 2025-06-15 12:48:42.381398+00 f t ADELANTO 9500.00 4 1873 \N +68945 2025-06-13 16:17:04.671497+00 2025-06-13 16:17:04.671507+00 f t SUBTOTAL 50000.00 1 1800 \N +68946 2025-06-13 16:17:04.673473+00 2025-06-13 16:17:04.6735+00 f t DESCUENTO 0.00 2 1800 \N +68947 2025-06-13 16:17:04.675437+00 2025-06-13 16:17:04.675448+00 f t TOTAL 50000.00 3 1800 \N +68948 2025-06-13 16:17:04.677288+00 2025-06-13 16:17:04.677298+00 f t ADELANTO 10000.00 4 1800 \N +68973 2025-06-13 16:19:07.198851+00 2025-06-13 16:19:07.198863+00 f t SUBTOTAL 50000.00 1 1801 \N +68974 2025-06-13 16:19:07.201959+00 2025-06-13 16:19:07.201972+00 f t DESCUENTO 0.00 2 1801 \N +68975 2025-06-13 16:19:07.204514+00 2025-06-13 16:19:07.204528+00 f t TOTAL 50000.00 3 1801 \N +68976 2025-06-13 16:19:07.206835+00 2025-06-13 16:19:07.206844+00 f t ADELANTO 10000.00 4 1801 \N +71953 2025-06-15 16:00:08.373491+00 2025-06-15 16:00:08.373505+00 f t SUBTOTAL 0.00 1 1882 \N +71954 2025-06-15 16:00:08.377754+00 2025-06-15 16:00:08.377781+00 f t DESCUENTO 0.00 2 1882 \N +71955 2025-06-15 16:00:08.381965+00 2025-06-15 16:00:08.38198+00 f t TOTAL 0.00 3 1882 \N +71956 2025-06-15 16:00:08.389338+00 2025-06-15 16:00:08.389353+00 f t ADELANTO 0.00 4 1882 \N +72001 2025-06-15 17:22:27.686519+00 2025-06-15 17:22:27.686531+00 f t SUBTOTAL 50000.00 1 1884 \N +69013 2025-06-13 16:25:38.628811+00 2025-06-13 16:25:38.62882+00 f t SUBTOTAL 61000.00 1 1802 \N +69014 2025-06-13 16:25:38.630519+00 2025-06-13 16:25:38.630526+00 f t DESCUENTO 0.00 2 1802 \N +69015 2025-06-13 16:25:38.631811+00 2025-06-13 16:25:38.631817+00 f t TOTAL 61000.00 3 1802 \N +69016 2025-06-13 16:25:38.632972+00 2025-06-13 16:25:38.632978+00 f t ADELANTO 11000.00 4 1802 \N +72002 2025-06-15 17:22:27.6892+00 2025-06-15 17:22:27.689212+00 f t DESCUENTO 0.00 2 1884 \N +72003 2025-06-15 17:22:27.690932+00 2025-06-15 17:22:27.690942+00 f t TOTAL 50000.00 3 1884 \N +72004 2025-06-15 17:22:27.692524+00 2025-06-15 17:22:27.692533+00 f t ADELANTO 10000.00 4 1884 \N +70213 2025-06-14 14:03:15.903712+00 2025-06-14 14:03:15.903724+00 f t SUBTOTAL 0.00 1 1833 \N +70214 2025-06-14 14:03:15.90547+00 2025-06-14 14:03:15.90548+00 f t DESCUENTO 0.00 2 1833 \N +70215 2025-06-14 14:03:15.907073+00 2025-06-14 14:03:15.907083+00 f t TOTAL 0.00 3 1833 \N +70216 2025-06-14 14:03:15.908758+00 2025-06-14 14:03:15.908768+00 f t ADELANTO 0.00 4 1833 \N +70281 2025-06-14 14:41:49.996018+00 2025-06-14 14:41:49.996028+00 f t SUBTOTAL 114800.00 1 1834 \N +70282 2025-06-14 14:41:49.997752+00 2025-06-14 14:41:49.997761+00 f t DESCUENTO 0.00 2 1834 \N +69041 2025-06-13 16:42:29.671805+00 2025-06-13 16:42:29.671818+00 f t SUBTOTAL 50000.00 1 1803 \N +69042 2025-06-13 16:42:29.674418+00 2025-06-13 16:42:29.67443+00 f t DESCUENTO 0.00 2 1803 \N +69043 2025-06-13 16:42:29.676253+00 2025-06-13 16:42:29.676261+00 f t TOTAL 50000.00 3 1803 \N +69044 2025-06-13 16:42:29.677766+00 2025-06-13 16:42:29.677775+00 f t ADELANTO 10000.00 4 1803 \N +70283 2025-06-14 14:41:49.999291+00 2025-06-14 14:41:49.9993+00 f t TOTAL 114800.00 3 1834 \N +70284 2025-06-14 14:41:50.000848+00 2025-06-14 14:41:50.000856+00 f t ADELANTO 62300.00 4 1834 \N +69049 2025-06-13 17:13:32.97434+00 2025-06-13 17:13:32.974351+00 f t SUBTOTAL 0.00 1 1804 \N +69050 2025-06-13 17:13:32.97617+00 2025-06-13 17:13:32.976179+00 f t DESCUENTO 0.00 2 1804 \N +69051 2025-06-13 17:13:32.977769+00 2025-06-13 17:13:32.977777+00 f t TOTAL 0.00 3 1804 \N +69052 2025-06-13 17:13:32.979292+00 2025-06-13 17:13:32.9793+00 f t ADELANTO 0.00 4 1804 \N +69057 2025-06-13 17:15:22.801238+00 2025-06-13 17:15:22.801251+00 f t SUBTOTAL 0.00 1 1805 \N +69058 2025-06-13 17:15:22.803213+00 2025-06-13 17:15:22.803221+00 f t DESCUENTO 0.00 2 1805 \N +69059 2025-06-13 17:15:22.804879+00 2025-06-13 17:15:22.80489+00 f t TOTAL 0.00 3 1805 \N +69060 2025-06-13 17:15:22.806892+00 2025-06-13 17:15:22.806899+00 f t ADELANTO 0.00 4 1805 \N +69065 2025-06-13 17:45:17.857499+00 2025-06-13 17:45:17.857512+00 f t SUBTOTAL 0.00 1 1806 \N +69066 2025-06-13 17:45:17.859733+00 2025-06-13 17:45:17.859746+00 f t DESCUENTO 0.00 2 1806 \N +69067 2025-06-13 17:45:17.86188+00 2025-06-13 17:45:17.861916+00 f t TOTAL 0.00 3 1806 \N +69068 2025-06-13 17:45:17.864327+00 2025-06-13 17:45:17.864362+00 f t ADELANTO 0.00 4 1806 \N +70597 2025-06-14 18:14:13.350211+00 2025-06-14 18:14:13.350223+00 f t SUBTOTAL 64500.00 1 1841 \N +70598 2025-06-14 18:14:13.352504+00 2025-06-14 18:14:13.352515+00 f t DESCUENTO 0.00 2 1841 \N +70599 2025-06-14 18:14:13.35458+00 2025-06-14 18:14:13.354589+00 f t TOTAL 64500.00 3 1841 \N +70600 2025-06-14 18:14:13.356252+00 2025-06-14 18:14:13.35626+00 f t ADELANTO 17000.00 4 1841 \N +70665 2025-06-14 18:58:21.015514+00 2025-06-14 18:58:21.015528+00 f t SUBTOTAL 0.00 1 1846 \N +70666 2025-06-14 18:58:21.017526+00 2025-06-14 18:58:21.017537+00 f t DESCUENTO 0.00 2 1846 \N +69153 2025-06-13 18:00:31.487566+00 2025-06-13 18:00:31.487576+00 f t SUBTOTAL 50000.00 1 1808 \N +69154 2025-06-13 18:00:31.48984+00 2025-06-13 18:00:31.489849+00 f t DESCUENTO 0.00 2 1808 \N +69155 2025-06-13 18:00:31.49159+00 2025-06-13 18:00:31.491602+00 f t TOTAL 50000.00 3 1808 \N +69156 2025-06-13 18:00:31.49338+00 2025-06-13 18:00:31.493392+00 f t ADELANTO 10000.00 4 1808 \N +70667 2025-06-14 18:58:21.019275+00 2025-06-14 18:58:21.019285+00 f t TOTAL 0.00 3 1846 \N +70668 2025-06-14 18:58:21.021005+00 2025-06-14 18:58:21.021014+00 f t ADELANTO 0.00 4 1846 \N +69161 2025-06-13 18:25:47.149613+00 2025-06-13 18:25:47.149624+00 f t SUBTOTAL 50000.00 1 1807 \N +69162 2025-06-13 18:25:47.151807+00 2025-06-13 18:25:47.151819+00 f t DESCUENTO 0.00 2 1807 \N +69163 2025-06-13 18:25:47.153783+00 2025-06-13 18:25:47.153794+00 f t TOTAL 50000.00 3 1807 \N +69164 2025-06-13 18:25:47.156712+00 2025-06-13 18:25:47.156722+00 f t ADELANTO 10000.00 4 1807 \N +69753 2025-06-13 23:24:57.135663+00 2025-06-13 23:24:57.135674+00 f t SUBTOTAL 0.00 1 1818 \N +69754 2025-06-13 23:24:57.137203+00 2025-06-13 23:24:57.137211+00 f t DESCUENTO 0.00 2 1818 \N +69755 2025-06-13 23:24:57.140008+00 2025-06-13 23:24:57.140021+00 f t TOTAL 0.00 3 1818 \N +69756 2025-06-13 23:24:57.141972+00 2025-06-13 23:24:57.141981+00 f t ADELANTO 0.00 4 1818 \N +69789 2025-06-13 23:45:38.274915+00 2025-06-13 23:45:38.274929+00 f t SUBTOTAL 0.00 1 1821 \N +69790 2025-06-13 23:45:38.277805+00 2025-06-13 23:45:38.277814+00 f t DESCUENTO 0.00 2 1821 \N +69791 2025-06-13 23:45:38.279894+00 2025-06-13 23:45:38.279908+00 f t TOTAL 0.00 3 1821 \N +69792 2025-06-13 23:45:38.281646+00 2025-06-13 23:45:38.281654+00 f t ADELANTO 0.00 4 1821 \N +69833 2025-06-14 01:14:43.393806+00 2025-06-14 01:14:43.393815+00 f t SUBTOTAL 137000.00 1 1822 \N +69834 2025-06-14 01:14:43.401918+00 2025-06-14 01:14:43.401928+00 f t DESCUENTO 0.00 2 1822 \N +69835 2025-06-14 01:14:43.403809+00 2025-06-14 01:14:43.403817+00 f t TOTAL 137000.00 3 1822 \N +69836 2025-06-14 01:14:43.405751+00 2025-06-14 01:14:43.405761+00 f t ADELANTO 19500.00 4 1822 \N +71525 2025-06-15 05:00:51.848841+00 2025-06-15 05:00:51.848855+00 f t SUBTOTAL 0.00 1 1870 \N +71526 2025-06-15 05:00:51.850766+00 2025-06-15 05:00:51.850775+00 f t DESCUENTO 0.00 2 1870 \N +71527 2025-06-15 05:00:51.852077+00 2025-06-15 05:00:51.852085+00 f t TOTAL 0.00 3 1870 \N +71528 2025-06-15 05:00:51.853249+00 2025-06-15 05:00:51.853255+00 f t ADELANTO 0.00 4 1870 \N +78741 2025-06-18 19:26:45.782541+00 2025-06-18 19:26:45.782552+00 f t SUBTOTAL 64500.00 1 2056 \N +78742 2025-06-18 19:26:45.785204+00 2025-06-18 19:26:45.785215+00 f t DESCUENTO 0.00 2 2056 \N +78743 2025-06-18 19:26:45.787255+00 2025-06-18 19:26:45.787266+00 f t TOTAL 64500.00 3 2056 \N +78744 2025-06-18 19:26:45.789368+00 2025-06-18 19:26:45.789378+00 f t ADELANTO 17000.00 4 2056 \N +69233 2025-06-13 18:28:39.690742+00 2025-06-13 18:28:39.690751+00 f t SUBTOTAL 0.00 1 1809 \N +69234 2025-06-13 18:28:39.692721+00 2025-06-13 18:28:39.692729+00 f t DESCUENTO 0.00 2 1809 \N +69235 2025-06-13 18:28:39.694147+00 2025-06-13 18:28:39.694154+00 f t TOTAL 0.00 3 1809 \N +69236 2025-06-13 18:28:39.695541+00 2025-06-13 18:28:39.695548+00 f t ADELANTO 0.00 4 1809 \N +70021 2025-06-14 12:09:19.557583+00 2025-06-14 12:09:19.557592+00 f t SUBTOTAL 64500.00 1 1828 \N +70022 2025-06-14 12:09:19.559452+00 2025-06-14 12:09:19.55946+00 f t DESCUENTO 0.00 2 1828 \N +70023 2025-06-14 12:09:19.56099+00 2025-06-14 12:09:19.560997+00 f t TOTAL 64500.00 3 1828 \N +70024 2025-06-14 12:09:19.562436+00 2025-06-14 12:09:19.562445+00 f t ADELANTO 17000.00 4 1828 \N +71821 2025-06-15 14:24:38.307547+00 2025-06-15 14:24:38.307559+00 f t SUBTOTAL 0.00 1 1878 \N +71822 2025-06-15 14:24:38.309527+00 2025-06-15 14:24:38.309538+00 f t DESCUENTO 0.00 2 1878 \N +71823 2025-06-15 14:24:38.311273+00 2025-06-15 14:24:38.311283+00 f t TOTAL 0.00 3 1878 \N +69273 2025-06-13 20:26:33.985277+00 2025-06-13 20:26:33.98529+00 f t SUBTOTAL 64500.00 1 1810 \N +69274 2025-06-13 20:26:33.987895+00 2025-06-13 20:26:33.987906+00 f t DESCUENTO 0.00 2 1810 \N +69275 2025-06-13 20:26:33.990249+00 2025-06-13 20:26:33.990261+00 f t TOTAL 64500.00 3 1810 \N +69276 2025-06-13 20:26:33.992177+00 2025-06-13 20:26:33.992188+00 f t ADELANTO 17000.00 4 1810 \N +71824 2025-06-15 14:24:38.312853+00 2025-06-15 14:24:38.312863+00 f t ADELANTO 0.00 4 1878 \N +69281 2025-06-13 21:27:55.259702+00 2025-06-13 21:27:55.259714+00 f t SUBTOTAL 0.00 1 1811 \N +69282 2025-06-13 21:27:55.261868+00 2025-06-13 21:27:55.261877+00 f t DESCUENTO 0.00 2 1811 \N +69283 2025-06-13 21:27:55.263795+00 2025-06-13 21:27:55.263806+00 f t TOTAL 0.00 3 1811 \N +69284 2025-06-13 21:27:55.265658+00 2025-06-13 21:27:55.265667+00 f t ADELANTO 0.00 4 1811 \N +71961 2025-06-15 16:16:14.076553+00 2025-06-15 16:16:14.076567+00 f t SUBTOTAL 0.00 1 1883 \N +71962 2025-06-15 16:16:14.078474+00 2025-06-15 16:16:14.078483+00 f t DESCUENTO 0.00 2 1883 \N +71963 2025-06-15 16:16:14.080241+00 2025-06-15 16:16:14.08025+00 f t TOTAL 0.00 3 1883 \N +71964 2025-06-15 16:16:14.082258+00 2025-06-15 16:16:14.082268+00 f t ADELANTO 0.00 4 1883 \N +70289 2025-06-14 14:43:55.002716+00 2025-06-14 14:43:55.002726+00 f t SUBTOTAL 0.00 1 1835 \N +70290 2025-06-14 14:43:55.004365+00 2025-06-14 14:43:55.004373+00 f t DESCUENTO 0.00 2 1835 \N +70291 2025-06-14 14:43:55.005795+00 2025-06-14 14:43:55.005803+00 f t TOTAL 0.00 3 1835 \N +70292 2025-06-14 14:43:55.00736+00 2025-06-14 14:43:55.007369+00 f t ADELANTO 0.00 4 1835 \N +69333 2025-06-13 21:30:42.003807+00 2025-06-13 21:30:42.003819+00 f t SUBTOTAL 50000.00 1 1812 \N +69334 2025-06-13 21:30:42.006353+00 2025-06-13 21:30:42.006362+00 f t DESCUENTO 0.00 2 1812 \N +69335 2025-06-13 21:30:42.008467+00 2025-06-13 21:30:42.008479+00 f t TOTAL 50000.00 3 1812 \N +69336 2025-06-13 21:30:42.010516+00 2025-06-13 21:30:42.010529+00 f t ADELANTO 10000.00 4 1812 \N +72069 2025-06-15 18:04:27.457005+00 2025-06-15 18:04:27.457016+00 f t SUBTOTAL 0.00 1 1886 \N +72070 2025-06-15 18:04:27.458739+00 2025-06-15 18:04:27.458749+00 f t DESCUENTO 0.00 2 1886 \N +72071 2025-06-15 18:04:27.459966+00 2025-06-15 18:04:27.459971+00 f t TOTAL 0.00 3 1886 \N +72072 2025-06-15 18:04:27.4613+00 2025-06-15 18:04:27.461306+00 f t ADELANTO 0.00 4 1886 \N +70493 2025-06-14 15:08:15.539245+00 2025-06-14 15:08:15.539253+00 f t SUBTOTAL 50000.00 1 1838 \N +70494 2025-06-14 15:08:15.541032+00 2025-06-14 15:08:15.541039+00 f t DESCUENTO 0.00 2 1838 \N +70495 2025-06-14 15:08:15.542438+00 2025-06-14 15:08:15.542447+00 f t TOTAL 50000.00 3 1838 \N +70496 2025-06-14 15:08:15.544018+00 2025-06-14 15:08:15.544026+00 f t ADELANTO 10000.00 4 1838 \N +72229 2025-06-15 20:53:21.809654+00 2025-06-15 20:53:21.809665+00 f t SUBTOTAL 50000.00 1 1890 \N +72230 2025-06-15 20:53:21.811894+00 2025-06-15 20:53:21.811905+00 f t DESCUENTO 0.00 2 1890 \N +72231 2025-06-15 20:53:21.813661+00 2025-06-15 20:53:21.813669+00 f t TOTAL 50000.00 3 1890 \N +72232 2025-06-15 20:53:21.815066+00 2025-06-15 20:53:21.815072+00 f t ADELANTO 10000.00 4 1890 \N +69389 2025-06-13 21:43:18.3784+00 2025-06-13 21:43:18.378413+00 f t SUBTOTAL 0.00 1 1813 \N +69390 2025-06-13 21:43:18.381186+00 2025-06-13 21:43:18.381198+00 f t DESCUENTO 0.00 2 1813 \N +69391 2025-06-13 21:43:18.384393+00 2025-06-13 21:43:18.384403+00 f t TOTAL 0.00 3 1813 \N +69392 2025-06-13 21:43:18.386245+00 2025-06-13 21:43:18.386257+00 f t ADELANTO 0.00 4 1813 \N +70729 2025-06-14 20:21:56.136543+00 2025-06-14 20:21:56.136552+00 f t SUBTOTAL 72000.00 1 1847 \N +70730 2025-06-14 20:21:56.138294+00 2025-06-14 20:21:56.138302+00 f t DESCUENTO 0.00 2 1847 \N +70731 2025-06-14 20:21:56.139516+00 2025-06-14 20:21:56.139522+00 f t TOTAL 72000.00 3 1847 \N +70732 2025-06-14 20:21:56.14051+00 2025-06-14 20:21:56.140516+00 f t ADELANTO 19000.00 4 1847 \N +70773 2025-06-14 20:39:54.676186+00 2025-06-14 20:39:54.676198+00 f t SUBTOTAL 64500.00 1 1848 \N +70774 2025-06-14 20:39:54.678242+00 2025-06-14 20:39:54.678253+00 f t DESCUENTO 0.00 2 1848 \N +70775 2025-06-14 20:39:54.679764+00 2025-06-14 20:39:54.679773+00 f t TOTAL 64500.00 3 1848 \N +70776 2025-06-14 20:39:54.681215+00 2025-06-14 20:39:54.681224+00 f t ADELANTO 17000.00 4 1848 \N +69465 2025-06-13 21:47:15.265527+00 2025-06-13 21:47:15.265539+00 f t SUBTOTAL 86000.00 1 1814 \N +69466 2025-06-13 21:47:15.267742+00 2025-06-13 21:47:15.267752+00 f t DESCUENTO 0.00 2 1814 \N +69467 2025-06-13 21:47:15.269519+00 2025-06-13 21:47:15.269529+00 f t TOTAL 86000.00 3 1814 \N +69468 2025-06-13 21:47:15.271092+00 2025-06-13 21:47:15.2711+00 f t ADELANTO 18500.00 4 1814 \N +74877 2025-06-16 21:33:04.495582+00 2025-06-16 21:33:04.495591+00 f t SUBTOTAL 0.00 1 1955 \N +74878 2025-06-16 21:33:04.497549+00 2025-06-16 21:33:04.49756+00 f t DESCUENTO 0.00 2 1955 \N +74879 2025-06-16 21:33:04.499126+00 2025-06-16 21:33:04.499156+00 f t TOTAL 0.00 3 1955 \N +74880 2025-06-16 21:33:04.500505+00 2025-06-16 21:33:04.500512+00 f t ADELANTO 0.00 4 1955 \N +69761 2025-06-13 23:26:46.941562+00 2025-06-13 23:26:46.941574+00 f t SUBTOTAL 0.00 1 1819 \N +69762 2025-06-13 23:26:46.943319+00 2025-06-13 23:26:46.943329+00 f t DESCUENTO 0.00 2 1819 \N +69763 2025-06-13 23:26:46.94487+00 2025-06-13 23:26:46.94488+00 f t TOTAL 0.00 3 1819 \N +69764 2025-06-13 23:26:46.946289+00 2025-06-13 23:26:46.946297+00 f t ADELANTO 0.00 4 1819 \N +71533 2025-06-15 09:24:38.182087+00 2025-06-15 09:24:38.182103+00 f t SUBTOTAL 0.00 1 1871 \N +71534 2025-06-15 09:24:38.184361+00 2025-06-15 09:24:38.184373+00 f t DESCUENTO 0.00 2 1871 \N +71535 2025-06-15 09:24:38.187549+00 2025-06-15 09:24:38.187561+00 f t TOTAL 0.00 3 1871 \N +71536 2025-06-15 09:24:38.191247+00 2025-06-15 09:24:38.191256+00 f t ADELANTO 0.00 4 1871 \N +73481 2025-06-16 02:12:37.535575+00 2025-06-16 02:12:37.535587+00 f t SUBTOTAL 42000.00 1 1916 \N +73482 2025-06-16 02:12:37.537917+00 2025-06-16 02:12:37.537929+00 f t DESCUENTO 0.00 2 1916 \N +73483 2025-06-16 02:12:37.539708+00 2025-06-16 02:12:37.539719+00 f t TOTAL 42000.00 3 1916 \N +73484 2025-06-16 02:12:37.541469+00 2025-06-16 02:12:37.541481+00 f t ADELANTO 9500.00 4 1916 \N +73565 2025-06-16 03:20:11.103687+00 2025-06-16 03:20:11.103697+00 f t SUBTOTAL 0.00 1 1919 \N +73566 2025-06-16 03:20:11.106757+00 2025-06-16 03:20:11.106767+00 f t DESCUENTO 0.00 2 1919 \N +73567 2025-06-16 03:20:11.108895+00 2025-06-16 03:20:11.108905+00 f t TOTAL 0.00 3 1919 \N +73568 2025-06-16 03:20:11.110814+00 2025-06-16 03:20:11.110826+00 f t ADELANTO 0.00 4 1919 \N +70061 2025-06-14 12:43:41.218631+00 2025-06-14 12:43:41.218642+00 f t SUBTOTAL 57000.00 1 1829 \N +70062 2025-06-14 12:43:41.220532+00 2025-06-14 12:43:41.220539+00 f t DESCUENTO 0.00 2 1829 \N +70063 2025-06-14 12:43:41.22181+00 2025-06-14 12:43:41.221815+00 f t TOTAL 57000.00 3 1829 \N +70064 2025-06-14 12:43:41.223025+00 2025-06-14 12:43:41.223031+00 f t ADELANTO 12000.00 4 1829 \N +70133 2025-06-14 12:54:48.316293+00 2025-06-14 12:54:48.316302+00 f t SUBTOTAL 57000.00 1 1831 \N +70134 2025-06-14 12:54:48.318125+00 2025-06-14 12:54:48.318132+00 f t DESCUENTO 0.00 2 1831 \N +70135 2025-06-14 12:54:48.319426+00 2025-06-14 12:54:48.319432+00 f t TOTAL 57000.00 3 1831 \N +70136 2025-06-14 12:54:48.321091+00 2025-06-14 12:54:48.321098+00 f t ADELANTO 12000.00 4 1831 \N +70197 2025-06-14 12:56:11.872456+00 2025-06-14 12:56:11.872465+00 f t SUBTOTAL 50000.00 1 1830 \N +70198 2025-06-14 12:56:11.874342+00 2025-06-14 12:56:11.874354+00 f t DESCUENTO 0.00 2 1830 \N +70199 2025-06-14 12:56:11.876123+00 2025-06-14 12:56:11.876134+00 f t TOTAL 50000.00 3 1830 \N +70200 2025-06-14 12:56:11.87779+00 2025-06-14 12:56:11.877798+00 f t ADELANTO 10000.00 4 1830 \N +70297 2025-06-14 14:51:28.139117+00 2025-06-14 14:51:28.139126+00 f t SUBTOTAL 0.00 1 1836 \N +70298 2025-06-14 14:51:28.140693+00 2025-06-14 14:51:28.1407+00 f t DESCUENTO 0.00 2 1836 \N +70299 2025-06-14 14:51:28.142032+00 2025-06-14 14:51:28.142039+00 f t TOTAL 0.00 3 1836 \N +70300 2025-06-14 14:51:28.143174+00 2025-06-14 14:51:28.14318+00 f t ADELANTO 0.00 4 1836 \N +69613 2025-06-13 22:00:38.985446+00 2025-06-13 22:00:38.985459+00 f t SUBTOTAL 42000.00 1 1815 \N +69614 2025-06-13 22:00:38.98774+00 2025-06-13 22:00:38.987752+00 f t DESCUENTO 0.00 2 1815 \N +69615 2025-06-13 22:00:38.989992+00 2025-06-13 22:00:38.990005+00 f t TOTAL 42000.00 3 1815 \N +69616 2025-06-13 22:00:38.992259+00 2025-06-13 22:00:38.992272+00 f t ADELANTO 9500.00 4 1815 \N +70381 2025-06-14 14:59:24.170876+00 2025-06-14 14:59:24.170886+00 f t SUBTOTAL 82700.00 1 1837 \N +70382 2025-06-14 14:59:24.172933+00 2025-06-14 14:59:24.172976+00 f t DESCUENTO 0.00 2 1837 \N +70383 2025-06-14 14:59:24.174595+00 2025-06-14 14:59:24.174605+00 f t TOTAL 82700.00 3 1837 \N +70384 2025-06-14 14:59:24.176085+00 2025-06-14 14:59:24.176092+00 f t ADELANTO 44700.00 4 1837 \N +72177 2025-06-15 19:06:19.640943+00 2025-06-15 19:06:19.640952+00 f t SUBTOTAL 0.00 1 1888 \N +72178 2025-06-15 19:06:19.642939+00 2025-06-15 19:06:19.642947+00 f t DESCUENTO 0.00 2 1888 \N +72179 2025-06-15 19:06:19.644429+00 2025-06-15 19:06:19.644438+00 f t TOTAL 0.00 3 1888 \N +72180 2025-06-15 19:06:19.645623+00 2025-06-15 19:06:19.645629+00 f t ADELANTO 0.00 4 1888 \N +72197 2025-06-15 20:36:29.076873+00 2025-06-15 20:36:29.076882+00 f t SUBTOTAL 0.00 1 1889 \N +72198 2025-06-15 20:36:29.079511+00 2025-06-15 20:36:29.07952+00 f t DESCUENTO 0.00 2 1889 \N +72199 2025-06-15 20:36:29.081567+00 2025-06-15 20:36:29.081576+00 f t TOTAL 0.00 3 1889 \N +72200 2025-06-15 20:36:29.083216+00 2025-06-15 20:36:29.083227+00 f t ADELANTO 0.00 4 1889 \N +72253 2025-06-15 21:13:44.80337+00 2025-06-15 21:13:44.80338+00 f t SUBTOTAL 0.00 1 1892 \N +72254 2025-06-15 21:13:44.805151+00 2025-06-15 21:13:44.805161+00 f t DESCUENTO 0.00 2 1892 \N +72255 2025-06-15 21:13:44.806635+00 2025-06-15 21:13:44.806642+00 f t TOTAL 0.00 3 1892 \N +72256 2025-06-15 21:13:44.807908+00 2025-06-15 21:13:44.807913+00 f t ADELANTO 0.00 4 1892 \N +70569 2025-06-14 17:22:54.369757+00 2025-06-14 17:22:54.369767+00 f t SUBTOTAL 129700.00 1 1840 \N +70570 2025-06-14 17:22:54.371504+00 2025-06-14 17:22:54.371512+00 f t DESCUENTO 0.00 2 1840 \N +70571 2025-06-14 17:22:54.372796+00 2025-06-14 17:22:54.372802+00 f t TOTAL 129700.00 3 1840 \N +70572 2025-06-14 17:22:54.373926+00 2025-06-14 17:22:54.373932+00 f t ADELANTO 76700.00 4 1840 \N +70625 2025-06-14 18:40:41.308119+00 2025-06-14 18:40:41.308129+00 f t SUBTOTAL 50000.00 1 1842 \N +70626 2025-06-14 18:40:41.309828+00 2025-06-14 18:40:41.309835+00 f t DESCUENTO 0.00 2 1842 \N +70627 2025-06-14 18:40:41.311585+00 2025-06-14 18:40:41.311592+00 f t TOTAL 50000.00 3 1842 \N +70628 2025-06-14 18:40:41.314172+00 2025-06-14 18:40:41.314183+00 f t ADELANTO 10000.00 4 1842 \N +70649 2025-06-14 18:54:03.265633+00 2025-06-14 18:54:03.265642+00 f t SUBTOTAL 0.00 1 1844 \N +70650 2025-06-14 18:54:03.269163+00 2025-06-14 18:54:03.269172+00 f t DESCUENTO 0.00 2 1844 \N +70651 2025-06-14 18:54:03.270606+00 2025-06-14 18:54:03.270613+00 f t TOTAL 0.00 3 1844 \N +70652 2025-06-14 18:54:03.272524+00 2025-06-14 18:54:03.272532+00 f t ADELANTO 0.00 4 1844 \N +72361 2025-06-15 21:54:57.519272+00 2025-06-15 21:54:57.519281+00 f t SUBTOTAL 0.00 1 1895 \N +72362 2025-06-15 21:54:57.520841+00 2025-06-15 21:54:57.520877+00 f t DESCUENTO 0.00 2 1895 \N +72363 2025-06-15 21:54:57.522157+00 2025-06-15 21:54:57.522172+00 f t TOTAL 0.00 3 1895 \N +72364 2025-06-15 21:54:57.523406+00 2025-06-15 21:54:57.523412+00 f t ADELANTO 0.00 4 1895 \N +70781 2025-06-14 20:40:48.777402+00 2025-06-14 20:40:48.777411+00 f t SUBTOTAL 0.00 1 1849 \N +70782 2025-06-14 20:40:48.77928+00 2025-06-14 20:40:48.77929+00 f t DESCUENTO 0.00 2 1849 \N +70783 2025-06-14 20:40:48.780977+00 2025-06-14 20:40:48.780984+00 f t TOTAL 0.00 3 1849 \N +70784 2025-06-14 20:40:48.782305+00 2025-06-14 20:40:48.782311+00 f t ADELANTO 0.00 4 1849 \N +70801 2025-06-14 20:44:40.152187+00 2025-06-14 20:44:40.1522+00 f t SUBTOTAL 0.00 1 1850 \N +70802 2025-06-14 20:44:40.154251+00 2025-06-14 20:44:40.15426+00 f t DESCUENTO 0.00 2 1850 \N +70803 2025-06-14 20:44:40.155848+00 2025-06-14 20:44:40.15586+00 f t TOTAL 0.00 3 1850 \N +70804 2025-06-14 20:44:40.157618+00 2025-06-14 20:44:40.157628+00 f t ADELANTO 0.00 4 1850 \N +80469 2025-06-19 16:43:17.094044+00 2025-06-19 16:43:17.094058+00 f t SUBTOTAL 0.00 1 2099 \N +80470 2025-06-19 16:43:17.096733+00 2025-06-19 16:43:17.096742+00 f t DESCUENTO 0.00 2 2099 \N +80471 2025-06-19 16:43:17.098715+00 2025-06-19 16:43:17.098727+00 f t TOTAL 0.00 3 2099 \N +80472 2025-06-19 16:43:17.100705+00 2025-06-19 16:43:17.100715+00 f t ADELANTO 0.00 4 2099 \N +71541 2025-06-15 12:08:10.792384+00 2025-06-15 12:08:10.792394+00 f t SUBTOTAL 0.00 1 1872 \N +71542 2025-06-15 12:08:10.793905+00 2025-06-15 12:08:10.793912+00 f t DESCUENTO 0.00 2 1872 \N +71543 2025-06-15 12:08:10.795971+00 2025-06-15 12:08:10.795981+00 f t TOTAL 0.00 3 1872 \N +71544 2025-06-15 12:08:10.797294+00 2025-06-15 12:08:10.7973+00 f t ADELANTO 0.00 4 1872 \N +71645 2025-06-15 12:57:55.533052+00 2025-06-15 12:57:55.533062+00 f t SUBTOTAL 50000.00 1 1874 \N +71646 2025-06-15 12:57:55.535+00 2025-06-15 12:57:55.535008+00 f t DESCUENTO 0.00 2 1874 \N +71647 2025-06-15 12:57:55.536769+00 2025-06-15 12:57:55.536777+00 f t TOTAL 50000.00 3 1874 \N +71648 2025-06-15 12:57:55.538234+00 2025-06-15 12:57:55.53824+00 f t ADELANTO 10000.00 4 1874 \N +78749 2025-06-18 19:36:19.768754+00 2025-06-18 19:36:19.768763+00 f t SUBTOTAL 0.00 1 2057 \N +78750 2025-06-18 19:36:19.770327+00 2025-06-18 19:36:19.770334+00 f t DESCUENTO 0.00 2 2057 \N +71745 2025-06-15 13:44:11.322975+00 2025-06-15 13:44:11.322988+00 f t SUBTOTAL 27500.00 1 1877 \N +71746 2025-06-15 13:44:11.325061+00 2025-06-15 13:44:11.325072+00 f t DESCUENTO 0.00 2 1877 \N +71747 2025-06-15 13:44:11.326616+00 2025-06-15 13:44:11.326622+00 f t TOTAL 27500.00 3 1877 \N +71748 2025-06-15 13:44:11.328411+00 2025-06-15 13:44:11.328422+00 f t ADELANTO 27500.00 4 1877 \N +71873 2025-06-15 15:04:27.102014+00 2025-06-15 15:04:27.102023+00 f t SUBTOTAL 72000.00 1 1879 \N +71874 2025-06-15 15:04:27.103906+00 2025-06-15 15:04:27.103917+00 f t DESCUENTO 0.00 2 1879 \N +71875 2025-06-15 15:04:27.105444+00 2025-06-15 15:04:27.105451+00 f t TOTAL 72000.00 3 1879 \N +71876 2025-06-15 15:04:27.107351+00 2025-06-15 15:04:27.107363+00 f t ADELANTO 19000.00 4 1879 \N +70901 2025-06-14 23:27:35.409893+00 2025-06-14 23:27:35.409901+00 f t SUBTOTAL 27500.00 1 1851 \N +70902 2025-06-14 23:27:35.41198+00 2025-06-14 23:27:35.411989+00 f t DESCUENTO 0.00 2 1851 \N +70903 2025-06-14 23:27:35.41375+00 2025-06-14 23:27:35.41376+00 f t TOTAL 27500.00 3 1851 \N +70904 2025-06-14 23:27:35.415699+00 2025-06-14 23:27:35.415707+00 f t ADELANTO 27500.00 4 1851 \N +70913 2025-06-14 23:28:12.241213+00 2025-06-14 23:28:12.241222+00 f t SUBTOTAL 107200.00 1 1852 \N +70914 2025-06-14 23:28:12.24303+00 2025-06-14 23:28:12.243039+00 f t DESCUENTO 0.00 2 1852 \N +70915 2025-06-14 23:28:12.244443+00 2025-06-14 23:28:12.24445+00 f t TOTAL 107200.00 3 1852 \N +70916 2025-06-14 23:28:12.246939+00 2025-06-14 23:28:12.246946+00 f t ADELANTO 69200.00 4 1852 \N +73765 2025-06-16 06:57:53.758624+00 2025-06-16 06:57:53.758635+00 f t SUBTOTAL 0.00 1 1924 \N +73766 2025-06-16 06:57:53.760759+00 2025-06-16 06:57:53.760768+00 f t DESCUENTO 0.00 2 1924 \N +73767 2025-06-16 06:57:53.762401+00 2025-06-16 06:57:53.762408+00 f t TOTAL 0.00 3 1924 \N +73768 2025-06-16 06:57:53.763669+00 2025-06-16 06:57:53.763675+00 f t ADELANTO 0.00 4 1924 \N +70941 2025-06-14 23:29:23.30368+00 2025-06-14 23:29:23.303692+00 f t SUBTOTAL 107200.00 1 1853 \N +70942 2025-06-14 23:29:23.305414+00 2025-06-14 23:29:23.305421+00 f t DESCUENTO 0.00 2 1853 \N +70943 2025-06-14 23:29:23.306727+00 2025-06-14 23:29:23.306735+00 f t TOTAL 107200.00 3 1853 \N +70944 2025-06-14 23:29:23.308143+00 2025-06-14 23:29:23.308152+00 f t ADELANTO 69200.00 4 1853 \N +73853 2025-06-16 08:23:52.405678+00 2025-06-16 08:23:52.40569+00 f t SUBTOTAL 50000.00 1 1925 \N +73854 2025-06-16 08:23:52.408335+00 2025-06-16 08:23:52.408346+00 f t DESCUENTO 0.00 2 1925 \N +73855 2025-06-16 08:23:52.411225+00 2025-06-16 08:23:52.411235+00 f t TOTAL 50000.00 3 1925 \N +73856 2025-06-16 08:23:52.412967+00 2025-06-16 08:23:52.412974+00 f t ADELANTO 10000.00 4 1925 \N +73889 2025-06-16 09:56:24.555803+00 2025-06-16 09:56:24.555815+00 f t SUBTOTAL 82700.00 1 1926 \N +73890 2025-06-16 09:56:24.558137+00 2025-06-16 09:56:24.558149+00 f t DESCUENTO 0.00 2 1926 \N +73891 2025-06-16 09:56:24.560863+00 2025-06-16 09:56:24.560874+00 f t TOTAL 82700.00 3 1926 \N +73892 2025-06-16 09:56:24.562785+00 2025-06-16 09:56:24.562795+00 f t ADELANTO 44700.00 4 1926 \N +70977 2025-06-14 23:36:24.786628+00 2025-06-14 23:36:24.786638+00 f t SUBTOTAL 0.00 1 1854 \N +70978 2025-06-14 23:36:24.788856+00 2025-06-14 23:36:24.788864+00 f t DESCUENTO 0.00 2 1854 \N +70979 2025-06-14 23:36:24.790488+00 2025-06-14 23:36:24.790496+00 f t TOTAL 0.00 3 1854 \N +70980 2025-06-14 23:36:24.792132+00 2025-06-14 23:36:24.792141+00 f t ADELANTO 0.00 4 1854 \N +70985 2025-06-15 00:00:24.456293+00 2025-06-15 00:00:24.45631+00 f t SUBTOTAL 0.00 1 1855 \N +70986 2025-06-15 00:00:24.460916+00 2025-06-15 00:00:24.460933+00 f t DESCUENTO 0.00 2 1855 \N +70987 2025-06-15 00:00:24.464386+00 2025-06-15 00:00:24.464399+00 f t TOTAL 0.00 3 1855 \N +70988 2025-06-15 00:00:24.466573+00 2025-06-15 00:00:24.466584+00 f t ADELANTO 0.00 4 1855 \N +74065 2025-06-16 12:45:51.661602+00 2025-06-16 12:45:51.661616+00 f t SUBTOTAL 0.00 1 1930 \N +74066 2025-06-16 12:45:51.663671+00 2025-06-16 12:45:51.663682+00 f t DESCUENTO 0.00 2 1930 \N +74067 2025-06-16 12:45:51.66576+00 2025-06-16 12:45:51.66577+00 f t TOTAL 0.00 3 1930 \N +74068 2025-06-16 12:45:51.667442+00 2025-06-16 12:45:51.667452+00 f t ADELANTO 0.00 4 1930 \N +71013 2025-06-15 00:48:49.688281+00 2025-06-15 00:48:49.688291+00 f t SUBTOTAL 50000.00 1 1856 \N +71014 2025-06-15 00:48:49.69023+00 2025-06-15 00:48:49.690244+00 f t DESCUENTO 0.00 2 1856 \N +71015 2025-06-15 00:48:49.69208+00 2025-06-15 00:48:49.692092+00 f t TOTAL 50000.00 3 1856 \N +71016 2025-06-15 00:48:49.693604+00 2025-06-15 00:48:49.693614+00 f t ADELANTO 10000.00 4 1856 \N +72345 2025-06-15 21:29:21.542149+00 2025-06-15 21:29:21.542161+00 f t SUBTOTAL 111000.00 1 1893 \N +72346 2025-06-15 21:29:21.544358+00 2025-06-15 21:29:21.54437+00 f t DESCUENTO 0.00 2 1893 \N +72347 2025-06-15 21:29:21.546114+00 2025-06-15 21:29:21.546125+00 f t TOTAL 111000.00 3 1893 \N +72348 2025-06-15 21:29:21.547832+00 2025-06-15 21:29:21.547844+00 f t ADELANTO 23500.00 4 1893 \N +71045 2025-06-15 00:56:16.806459+00 2025-06-15 00:56:16.806473+00 f t SUBTOTAL 42000.00 1 1857 \N +71046 2025-06-15 00:56:16.808377+00 2025-06-15 00:56:16.808387+00 f t DESCUENTO 0.00 2 1857 \N +71047 2025-06-15 00:56:16.809866+00 2025-06-15 00:56:16.809875+00 f t TOTAL 42000.00 3 1857 \N +71048 2025-06-15 00:56:16.811259+00 2025-06-15 00:56:16.811268+00 f t ADELANTO 9500.00 4 1857 \N +74193 2025-06-16 14:34:06.860929+00 2025-06-16 14:34:06.860942+00 f t SUBTOTAL 70000.00 1 1934 \N +74194 2025-06-16 14:34:06.862784+00 2025-06-16 14:34:06.862792+00 f t DESCUENTO 0.00 2 1934 \N +74195 2025-06-16 14:34:06.864212+00 2025-06-16 14:34:06.864219+00 f t TOTAL 70000.00 3 1934 \N +74196 2025-06-16 14:34:06.865623+00 2025-06-16 14:34:06.86563+00 f t ADELANTO 15000.00 4 1934 \N +72429 2025-06-15 21:56:53.416605+00 2025-06-15 21:56:53.416614+00 f t SUBTOTAL 95000.00 1 1896 \N +72430 2025-06-15 21:56:53.418567+00 2025-06-15 21:56:53.418576+00 f t DESCUENTO 0.00 2 1896 \N +72431 2025-06-15 21:56:53.420853+00 2025-06-15 21:56:53.420866+00 f t TOTAL 95000.00 3 1896 \N +72432 2025-06-15 21:56:53.42304+00 2025-06-15 21:56:53.42305+00 f t ADELANTO 10000.00 4 1896 \N +72517 2025-06-15 22:31:08.863682+00 2025-06-15 22:31:08.863692+00 f t SUBTOTAL 0.00 1 1899 \N +72518 2025-06-15 22:31:08.865791+00 2025-06-15 22:31:08.865804+00 f t DESCUENTO 0.00 2 1899 \N +71413 2025-06-15 03:06:58.675977+00 2025-06-15 03:06:58.675989+00 f t SUBTOTAL 50000.00 1 1864 \N +71414 2025-06-15 03:06:58.677761+00 2025-06-15 03:06:58.677768+00 f t DESCUENTO 0.00 2 1864 \N +71415 2025-06-15 03:06:58.678959+00 2025-06-15 03:06:58.678965+00 f t TOTAL 50000.00 3 1864 \N +71416 2025-06-15 03:06:58.680482+00 2025-06-15 03:06:58.680489+00 f t ADELANTO 10000.00 4 1864 \N +80409 2025-06-19 15:40:08.531676+00 2025-06-19 15:40:08.531693+00 f t SUBTOTAL 0.00 1 2095 \N +80410 2025-06-19 15:40:08.534987+00 2025-06-19 15:40:08.535002+00 f t DESCUENTO 0.00 2 2095 \N +71477 2025-06-15 03:54:24.665017+00 2025-06-15 03:54:24.665029+00 f t SUBTOTAL 42000.00 1 1867 \N +71478 2025-06-15 03:54:24.666875+00 2025-06-15 03:54:24.666884+00 f t DESCUENTO 0.00 2 1867 \N +71479 2025-06-15 03:54:24.668376+00 2025-06-15 03:54:24.668384+00 f t TOTAL 42000.00 3 1867 \N +71480 2025-06-15 03:54:24.669874+00 2025-06-15 03:54:24.669883+00 f t ADELANTO 9500.00 4 1867 \N +71705 2025-06-15 13:24:09.165349+00 2025-06-15 13:24:09.165357+00 f t SUBTOTAL 50000.00 1 1876 \N +71706 2025-06-15 13:24:09.167213+00 2025-06-15 13:24:09.167221+00 f t DESCUENTO 0.00 2 1876 \N +71707 2025-06-15 13:24:09.168743+00 2025-06-15 13:24:09.168752+00 f t TOTAL 50000.00 3 1876 \N +71708 2025-06-15 13:24:09.170155+00 2025-06-15 13:24:09.170161+00 f t ADELANTO 10000.00 4 1876 \N +73677 2025-06-16 03:30:03.700617+00 2025-06-16 03:30:03.70063+00 f t SUBTOTAL 70000.00 1 1921 \N +73678 2025-06-16 03:30:03.720978+00 2025-06-16 03:30:03.72099+00 f t DESCUENTO 0.00 2 1921 \N +73679 2025-06-16 03:30:03.73177+00 2025-06-16 03:30:03.731786+00 f t TOTAL 70000.00 3 1921 \N +73680 2025-06-16 03:30:03.734438+00 2025-06-16 03:30:03.734451+00 f t ADELANTO 15000.00 4 1921 \N +71901 2025-06-15 15:24:49.269765+00 2025-06-15 15:24:49.269777+00 f t SUBTOTAL 50000.00 1 1880 \N +71902 2025-06-15 15:24:49.27199+00 2025-06-15 15:24:49.272001+00 f t DESCUENTO 0.00 2 1880 \N +71903 2025-06-15 15:24:49.273972+00 2025-06-15 15:24:49.27398+00 f t TOTAL 50000.00 3 1880 \N +71904 2025-06-15 15:24:49.275672+00 2025-06-15 15:24:49.275681+00 f t ADELANTO 10000.00 4 1880 \N +71945 2025-06-15 15:28:57.503987+00 2025-06-15 15:28:57.503996+00 f t SUBTOTAL 42000.00 1 1881 \N +71946 2025-06-15 15:28:57.505763+00 2025-06-15 15:28:57.505769+00 f t DESCUENTO 0.00 2 1881 \N +71947 2025-06-15 15:28:57.507049+00 2025-06-15 15:28:57.507054+00 f t TOTAL 42000.00 3 1881 \N +71948 2025-06-15 15:28:57.508479+00 2025-06-15 15:28:57.508485+00 f t ADELANTO 9500.00 4 1881 \N +71205 2025-06-15 01:08:47.76411+00 2025-06-15 01:08:47.764119+00 f t SUBTOTAL 208500.00 1 1858 \N +71206 2025-06-15 01:08:47.765682+00 2025-06-15 01:08:47.765691+00 f t DESCUENTO 0.00 2 1858 \N +71207 2025-06-15 01:08:47.767328+00 2025-06-15 01:08:47.767334+00 f t TOTAL 208500.00 3 1858 \N +71208 2025-06-15 01:08:47.768438+00 2025-06-15 01:08:47.768444+00 f t ADELANTO 55000.00 4 1858 \N +71213 2025-06-15 01:22:24.334885+00 2025-06-15 01:22:24.334894+00 f t SUBTOTAL 0.00 1 1859 \N +71214 2025-06-15 01:22:24.336574+00 2025-06-15 01:22:24.336581+00 f t DESCUENTO 0.00 2 1859 \N +71215 2025-06-15 01:22:24.33815+00 2025-06-15 01:22:24.338157+00 f t TOTAL 0.00 3 1859 \N +71216 2025-06-15 01:22:24.339476+00 2025-06-15 01:22:24.339482+00 f t ADELANTO 0.00 4 1859 \N +71221 2025-06-15 01:53:26.941717+00 2025-06-15 01:53:26.941729+00 f t SUBTOTAL 0.00 1 1860 \N +71222 2025-06-15 01:53:26.943751+00 2025-06-15 01:53:26.94376+00 f t DESCUENTO 0.00 2 1860 \N +71223 2025-06-15 01:53:26.945373+00 2025-06-15 01:53:26.94538+00 f t TOTAL 0.00 3 1860 \N +71224 2025-06-15 01:53:26.946556+00 2025-06-15 01:53:26.946563+00 f t ADELANTO 0.00 4 1860 \N +72061 2025-06-15 17:41:41.452028+00 2025-06-15 17:41:41.452041+00 f t SUBTOTAL 50000.00 1 1885 \N +72062 2025-06-15 17:41:41.454104+00 2025-06-15 17:41:41.454116+00 f t DESCUENTO 0.00 2 1885 \N +72063 2025-06-15 17:41:41.457263+00 2025-06-15 17:41:41.457275+00 f t TOTAL 50000.00 3 1885 \N +72064 2025-06-15 17:41:41.459108+00 2025-06-15 17:41:41.459116+00 f t ADELANTO 10000.00 4 1885 \N +72133 2025-06-15 18:29:06.741286+00 2025-06-15 18:29:06.741298+00 f t SUBTOTAL 50000.00 1 1887 \N +72134 2025-06-15 18:29:06.743193+00 2025-06-15 18:29:06.743201+00 f t DESCUENTO 0.00 2 1887 \N +72135 2025-06-15 18:29:06.744497+00 2025-06-15 18:29:06.744503+00 f t TOTAL 50000.00 3 1887 \N +72136 2025-06-15 18:29:06.745921+00 2025-06-15 18:29:06.745928+00 f t ADELANTO 10000.00 4 1887 \N +71249 2025-06-15 02:08:53.896059+00 2025-06-15 02:08:53.89607+00 f t SUBTOTAL 50000.00 1 1861 \N +71250 2025-06-15 02:08:53.898001+00 2025-06-15 02:08:53.898011+00 f t DESCUENTO 0.00 2 1861 \N +71251 2025-06-15 02:08:53.899453+00 2025-06-15 02:08:53.899462+00 f t TOTAL 50000.00 3 1861 \N +71252 2025-06-15 02:08:53.900668+00 2025-06-15 02:08:53.900677+00 f t ADELANTO 10000.00 4 1861 \N +71265 2025-06-15 02:46:47.958752+00 2025-06-15 02:46:47.958761+00 f t SUBTOTAL 0.00 1 1862 \N +71266 2025-06-15 02:46:47.960807+00 2025-06-15 02:46:47.960815+00 f t DESCUENTO 0.00 2 1862 \N +71267 2025-06-15 02:46:47.962131+00 2025-06-15 02:46:47.962139+00 f t TOTAL 0.00 3 1862 \N +71268 2025-06-15 02:46:47.963379+00 2025-06-15 02:46:47.963385+00 f t ADELANTO 0.00 4 1862 \N +72245 2025-06-15 21:11:27.01901+00 2025-06-15 21:11:27.019022+00 f t SUBTOTAL 0.00 1 1891 \N +72246 2025-06-15 21:11:27.02148+00 2025-06-15 21:11:27.021493+00 f t DESCUENTO 0.00 2 1891 \N +72247 2025-06-15 21:11:27.023657+00 2025-06-15 21:11:27.023665+00 f t TOTAL 0.00 3 1891 \N +72248 2025-06-15 21:11:27.026016+00 2025-06-15 21:11:27.026028+00 f t ADELANTO 0.00 4 1891 \N +71305 2025-06-15 02:54:21.797448+00 2025-06-15 02:54:21.79746+00 f t SUBTOTAL 42000.00 1 1863 \N +71306 2025-06-15 02:54:21.799396+00 2025-06-15 02:54:21.799404+00 f t DESCUENTO 0.00 2 1863 \N +71307 2025-06-15 02:54:21.800878+00 2025-06-15 02:54:21.800884+00 f t TOTAL 42000.00 3 1863 \N +71308 2025-06-15 02:54:21.802402+00 2025-06-15 02:54:21.802409+00 f t ADELANTO 9500.00 4 1863 \N +72353 2025-06-15 21:54:34.861562+00 2025-06-15 21:54:34.861585+00 f t SUBTOTAL 0.00 1 1894 \N +72354 2025-06-15 21:54:34.863153+00 2025-06-15 21:54:34.863163+00 f t DESCUENTO 0.00 2 1894 \N +72355 2025-06-15 21:54:34.864532+00 2025-06-15 21:54:34.86454+00 f t TOTAL 0.00 3 1894 \N +72356 2025-06-15 21:54:34.865725+00 2025-06-15 21:54:34.865733+00 f t ADELANTO 0.00 4 1894 \N +71321 2025-06-15 03:04:27.416201+00 2025-06-15 03:04:27.416212+00 f t SUBTOTAL 0.00 1 1865 \N +71322 2025-06-15 03:04:27.41809+00 2025-06-15 03:04:27.418099+00 f t DESCUENTO 0.00 2 1865 \N +71323 2025-06-15 03:04:27.420103+00 2025-06-15 03:04:27.420112+00 f t TOTAL 0.00 3 1865 \N +71324 2025-06-15 03:04:27.421667+00 2025-06-15 03:04:27.421678+00 f t ADELANTO 0.00 4 1865 \N +72481 2025-06-15 22:01:16.893144+00 2025-06-15 22:01:16.893153+00 f t SUBTOTAL 42000.00 1 1897 \N +72482 2025-06-15 22:01:16.898141+00 2025-06-15 22:01:16.898151+00 f t DESCUENTO 0.00 2 1897 \N +72483 2025-06-15 22:01:16.900614+00 2025-06-15 22:01:16.900635+00 f t TOTAL 42000.00 3 1897 \N +72484 2025-06-15 22:01:16.902525+00 2025-06-15 22:01:16.902534+00 f t ADELANTO 9500.00 4 1897 \N +72509 2025-06-15 22:09:48.157985+00 2025-06-15 22:09:48.157999+00 f t SUBTOTAL 50000.00 1 1898 \N +72510 2025-06-15 22:09:48.160476+00 2025-06-15 22:09:48.160488+00 f t DESCUENTO 0.00 2 1898 \N +72511 2025-06-15 22:09:48.162155+00 2025-06-15 22:09:48.162165+00 f t TOTAL 50000.00 3 1898 \N +72512 2025-06-15 22:09:48.163669+00 2025-06-15 22:09:48.163679+00 f t ADELANTO 10000.00 4 1898 \N +72519 2025-06-15 22:31:08.870353+00 2025-06-15 22:31:08.870362+00 f t TOTAL 0.00 3 1899 \N +72520 2025-06-15 22:31:08.872793+00 2025-06-15 22:31:08.872806+00 f t ADELANTO 0.00 4 1899 \N +73145 2025-06-16 00:05:28.150971+00 2025-06-16 00:05:28.150984+00 f t SUBTOTAL 50000.00 1 1911 \N +73146 2025-06-16 00:05:28.15271+00 2025-06-16 00:05:28.152717+00 f t DESCUENTO 0.00 2 1911 \N +73147 2025-06-16 00:05:28.154222+00 2025-06-16 00:05:28.154231+00 f t TOTAL 50000.00 3 1911 \N +73148 2025-06-16 00:05:28.155519+00 2025-06-16 00:05:28.155526+00 f t ADELANTO 10000.00 4 1911 \N +80411 2025-06-19 15:40:08.537439+00 2025-06-19 15:40:08.537454+00 f t TOTAL 0.00 3 2095 \N +80412 2025-06-19 15:40:08.539927+00 2025-06-19 15:40:08.539943+00 f t ADELANTO 0.00 4 2095 \N +73213 2025-06-16 00:10:22.882373+00 2025-06-16 00:10:22.882384+00 f t SUBTOTAL 0.00 1 1912 \N +73214 2025-06-16 00:10:22.887355+00 2025-06-16 00:10:22.887366+00 f t DESCUENTO 0.00 2 1912 \N +73215 2025-06-16 00:10:22.889734+00 2025-06-16 00:10:22.889743+00 f t TOTAL 0.00 3 1912 \N +73216 2025-06-16 00:10:22.891186+00 2025-06-16 00:10:22.891193+00 f t ADELANTO 0.00 4 1912 \N +78751 2025-06-18 19:36:19.771808+00 2025-06-18 19:36:19.771818+00 f t TOTAL 0.00 3 2057 \N +78752 2025-06-18 19:36:19.773352+00 2025-06-18 19:36:19.773361+00 f t ADELANTO 0.00 4 2057 \N +73521 2025-06-16 02:37:05.910698+00 2025-06-16 02:37:05.91071+00 f t SUBTOTAL 72000.00 1 1917 \N +73522 2025-06-16 02:37:05.913146+00 2025-06-16 02:37:05.913156+00 f t DESCUENTO 0.00 2 1917 \N +73523 2025-06-16 02:37:05.915323+00 2025-06-16 02:37:05.915333+00 f t TOTAL 72000.00 3 1917 \N +73524 2025-06-16 02:37:05.9176+00 2025-06-16 02:37:05.917611+00 f t ADELANTO 19000.00 4 1917 \N +72585 2025-06-15 22:36:43.155275+00 2025-06-15 22:36:43.155285+00 f t SUBTOTAL 50000.00 1 1900 \N +72586 2025-06-15 22:36:43.15719+00 2025-06-15 22:36:43.157197+00 f t DESCUENTO 0.00 2 1900 \N +72587 2025-06-15 22:36:43.158624+00 2025-06-15 22:36:43.158632+00 f t TOTAL 50000.00 3 1900 \N +72588 2025-06-15 22:36:43.160224+00 2025-06-15 22:36:43.160233+00 f t ADELANTO 10000.00 4 1900 \N +78917 2025-06-18 21:26:35.247238+00 2025-06-18 21:26:35.247247+00 f t SUBTOTAL 50000.00 1 2059 \N +78918 2025-06-18 21:26:35.249061+00 2025-06-18 21:26:35.249069+00 f t DESCUENTO 0.00 2 2059 \N +78919 2025-06-18 21:26:35.250668+00 2025-06-18 21:26:35.250674+00 f t TOTAL 50000.00 3 2059 \N +78920 2025-06-18 21:26:35.251974+00 2025-06-18 21:26:35.25198+00 f t ADELANTO 10000.00 4 2059 \N +77165 2025-06-17 17:24:53.95279+00 2025-06-17 17:24:53.9528+00 f t SUBTOTAL 0.00 1 2000 \N +77166 2025-06-17 17:24:53.954963+00 2025-06-17 17:24:53.954973+00 f t DESCUENTO 0.00 2 2000 \N +77167 2025-06-17 17:24:53.956428+00 2025-06-17 17:24:53.956435+00 f t TOTAL 0.00 3 2000 \N +77168 2025-06-17 17:24:53.957545+00 2025-06-17 17:24:53.957554+00 f t ADELANTO 0.00 4 2000 \N +78965 2025-06-18 22:23:31.564359+00 2025-06-18 22:23:31.564369+00 f t SUBTOTAL 92000.00 1 2061 \N +78966 2025-06-18 22:23:31.566578+00 2025-06-18 22:23:31.566587+00 f t DESCUENTO 0.00 2 2061 \N +78967 2025-06-18 22:23:31.568365+00 2025-06-18 22:23:31.568373+00 f t TOTAL 92000.00 3 2061 \N +78968 2025-06-18 22:23:31.570166+00 2025-06-18 22:23:31.570173+00 f t ADELANTO 19500.00 4 2061 \N +77513 2025-06-17 21:55:39.148278+00 2025-06-17 21:55:39.148291+00 f t SUBTOTAL 57000.00 1 2008 \N +77514 2025-06-17 21:55:39.151309+00 2025-06-17 21:55:39.151322+00 f t DESCUENTO 0.00 2 2008 \N +77515 2025-06-17 21:55:39.153515+00 2025-06-17 21:55:39.153528+00 f t TOTAL 57000.00 3 2008 \N +77516 2025-06-17 21:55:39.155444+00 2025-06-17 21:55:39.155454+00 f t ADELANTO 12000.00 4 2008 \N +72673 2025-06-15 22:40:16.30546+00 2025-06-15 22:40:16.305472+00 f t SUBTOTAL 94500.00 1 1901 \N +72674 2025-06-15 22:40:16.307956+00 2025-06-15 22:40:16.307967+00 f t DESCUENTO 0.00 2 1901 \N +72675 2025-06-15 22:40:16.310073+00 2025-06-15 22:40:16.310085+00 f t TOTAL 94500.00 3 1901 \N +72676 2025-06-15 22:40:16.312527+00 2025-06-15 22:40:16.312539+00 f t ADELANTO 26500.00 4 1901 \N +77573 2025-06-17 23:50:35.18338+00 2025-06-17 23:50:35.183389+00 f t SUBTOTAL 95000.00 1 2013 \N +77574 2025-06-17 23:50:35.1854+00 2025-06-17 23:50:35.185408+00 f t DESCUENTO 0.00 2 2013 \N +77575 2025-06-17 23:50:35.187101+00 2025-06-17 23:50:35.187108+00 f t TOTAL 95000.00 3 2013 \N +72681 2025-06-15 22:48:19.559243+00 2025-06-15 22:48:19.559255+00 f t SUBTOTAL 0.00 1 1902 \N +72682 2025-06-15 22:48:19.561252+00 2025-06-15 22:48:19.561263+00 f t DESCUENTO 0.00 2 1902 \N +72683 2025-06-15 22:48:19.56298+00 2025-06-15 22:48:19.562989+00 f t TOTAL 0.00 3 1902 \N +72684 2025-06-15 22:48:19.564597+00 2025-06-15 22:48:19.564605+00 f t ADELANTO 0.00 4 1902 \N +77576 2025-06-17 23:50:35.188712+00 2025-06-17 23:50:35.18872+00 f t ADELANTO 10000.00 4 2013 \N +74041 2025-06-16 11:55:25.760327+00 2025-06-16 11:55:25.760336+00 f t SUBTOTAL 95000.00 1 1927 \N +74042 2025-06-16 11:55:25.762446+00 2025-06-16 11:55:25.762453+00 f t DESCUENTO 0.00 2 1927 \N +74043 2025-06-16 11:55:25.764421+00 2025-06-16 11:55:25.764428+00 f t TOTAL 95000.00 3 1927 \N +74044 2025-06-16 11:55:25.767342+00 2025-06-16 11:55:25.767351+00 f t ADELANTO 10000.00 4 1927 \N +74073 2025-06-16 13:53:49.756736+00 2025-06-16 13:53:49.756748+00 f t SUBTOTAL 0.00 1 1931 \N +74074 2025-06-16 13:53:49.758309+00 2025-06-16 13:53:49.758315+00 f t DESCUENTO 0.00 2 1931 \N +74075 2025-06-16 13:53:49.759691+00 2025-06-16 13:53:49.759698+00 f t TOTAL 0.00 3 1931 \N +74076 2025-06-16 13:53:49.760815+00 2025-06-16 13:53:49.760824+00 f t ADELANTO 0.00 4 1931 \N +77873 2025-06-18 07:46:43.929926+00 2025-06-18 07:46:43.929938+00 f t SUBTOTAL 0.00 1 2028 \N +77874 2025-06-18 07:46:43.931984+00 2025-06-18 07:46:43.931997+00 f t DESCUENTO 0.00 2 2028 \N +77875 2025-06-18 07:46:43.934076+00 2025-06-18 07:46:43.934088+00 f t TOTAL 0.00 3 2028 \N +77876 2025-06-18 07:46:43.936224+00 2025-06-18 07:46:43.936237+00 f t ADELANTO 0.00 4 2028 \N +74281 2025-06-16 16:29:07.496039+00 2025-06-16 16:29:07.496047+00 f t SUBTOTAL 50000.00 1 1922 \N +74282 2025-06-16 16:29:07.498039+00 2025-06-16 16:29:07.498048+00 f t DESCUENTO 0.00 2 1922 \N +74283 2025-06-16 16:29:07.499549+00 2025-06-16 16:29:07.499557+00 f t TOTAL 50000.00 3 1922 \N +74284 2025-06-16 16:29:07.501011+00 2025-06-16 16:29:07.501018+00 f t ADELANTO 10000.00 4 1922 \N +77953 2025-06-18 12:28:40.83764+00 2025-06-18 12:28:40.837653+00 f t SUBTOTAL 0.00 1 2033 \N +77954 2025-06-18 12:28:40.840137+00 2025-06-18 12:28:40.840147+00 f t DESCUENTO 0.00 2 2033 \N +77955 2025-06-18 12:28:40.842486+00 2025-06-18 12:28:40.842498+00 f t TOTAL 0.00 3 2033 \N +77956 2025-06-18 12:28:40.844552+00 2025-06-18 12:28:40.844562+00 f t ADELANTO 0.00 4 2033 \N +75997 2025-06-17 03:15:19.748185+00 2025-06-17 03:15:19.748198+00 f t SUBTOTAL 50000.00 1 1971 \N +75998 2025-06-17 03:15:19.750518+00 2025-06-17 03:15:19.750527+00 f t DESCUENTO 0.00 2 1971 \N +75999 2025-06-17 03:15:19.75226+00 2025-06-17 03:15:19.752268+00 f t TOTAL 50000.00 3 1971 \N +76000 2025-06-17 03:15:19.754031+00 2025-06-17 03:15:19.754042+00 f t ADELANTO 10000.00 4 1971 \N +76081 2025-06-17 05:00:22.339382+00 2025-06-17 05:00:22.339396+00 f t SUBTOTAL 64500.00 1 1973 \N +76082 2025-06-17 05:00:22.345779+00 2025-06-17 05:00:22.345792+00 f t DESCUENTO 0.00 2 1973 \N +76083 2025-06-17 05:00:22.349075+00 2025-06-17 05:00:22.349088+00 f t TOTAL 64500.00 3 1973 \N +76084 2025-06-17 05:00:22.352531+00 2025-06-17 05:00:22.352546+00 f t ADELANTO 17000.00 4 1973 \N +76125 2025-06-17 12:47:40.852646+00 2025-06-17 12:47:40.852655+00 f t SUBTOTAL 0.00 1 1976 \N +76126 2025-06-17 12:47:40.854447+00 2025-06-17 12:47:40.854458+00 f t DESCUENTO 0.00 2 1976 \N +76127 2025-06-17 12:47:40.856176+00 2025-06-17 12:47:40.856185+00 f t TOTAL 0.00 3 1976 \N +76128 2025-06-17 12:47:40.857555+00 2025-06-17 12:47:40.857562+00 f t ADELANTO 0.00 4 1976 \N +86458 2025-06-22 06:33:21.010075+00 2025-06-22 06:33:21.010083+00 f t DESCUENTO 0.00 2 2267 \N +73441 2025-06-16 01:30:23.178352+00 2025-06-16 01:30:23.178366+00 f t SUBTOTAL 50000.00 1 1914 \N +73442 2025-06-16 01:30:23.181111+00 2025-06-16 01:30:23.181124+00 f t DESCUENTO 0.00 2 1914 \N +73443 2025-06-16 01:30:23.183329+00 2025-06-16 01:30:23.183341+00 f t TOTAL 50000.00 3 1914 \N +73444 2025-06-16 01:30:23.185446+00 2025-06-16 01:30:23.185455+00 f t ADELANTO 10000.00 4 1914 \N +77009 2025-06-17 15:51:03.329122+00 2025-06-17 15:51:03.32913+00 f t SUBTOTAL 114000.00 1 1993 \N +77010 2025-06-17 15:51:03.330816+00 2025-06-17 15:51:03.330823+00 f t DESCUENTO 0.00 2 1993 \N +77011 2025-06-17 15:51:03.332281+00 2025-06-17 15:51:03.332288+00 f t TOTAL 114000.00 3 1993 \N +77012 2025-06-17 15:51:03.333321+00 2025-06-17 15:51:03.333327+00 f t ADELANTO 27500.00 4 1993 \N +73529 2025-06-16 02:56:43.661518+00 2025-06-16 02:56:43.661527+00 f t SUBTOTAL 0.00 1 1918 \N +73530 2025-06-16 02:56:43.663079+00 2025-06-16 02:56:43.663087+00 f t DESCUENTO 0.00 2 1918 \N +73531 2025-06-16 02:56:43.664216+00 2025-06-16 02:56:43.664221+00 f t TOTAL 0.00 3 1918 \N +73532 2025-06-16 02:56:43.665362+00 2025-06-16 02:56:43.665367+00 f t ADELANTO 0.00 4 1918 \N +73633 2025-06-16 03:23:31.637548+00 2025-06-16 03:23:31.637559+00 f t SUBTOTAL 0.00 1 1920 \N +73634 2025-06-16 03:23:31.63979+00 2025-06-16 03:23:31.6398+00 f t DESCUENTO 0.00 2 1920 \N +73635 2025-06-16 03:23:31.641645+00 2025-06-16 03:23:31.641655+00 f t TOTAL 0.00 3 1920 \N +73636 2025-06-16 03:23:31.643923+00 2025-06-16 03:23:31.643933+00 f t ADELANTO 0.00 4 1920 \N +77169 2025-06-17 17:29:23.90389+00 2025-06-17 17:29:23.903902+00 f t SUBTOTAL 72000.00 1 1999 \N +77170 2025-06-17 17:29:23.906314+00 2025-06-17 17:29:23.906325+00 f t DESCUENTO 0.00 2 1999 \N +77171 2025-06-17 17:29:23.908012+00 2025-06-17 17:29:23.908022+00 f t TOTAL 72000.00 3 1999 \N +77172 2025-06-17 17:29:23.909594+00 2025-06-17 17:29:23.909602+00 f t ADELANTO 19000.00 4 1999 \N +72897 2025-06-15 22:54:14.129958+00 2025-06-15 22:54:14.129966+00 f t SUBTOTAL 57400.00 1 1903 \N +72898 2025-06-15 22:54:14.131711+00 2025-06-15 22:54:14.13172+00 f t DESCUENTO 0.00 2 1903 \N +72899 2025-06-15 22:54:14.133811+00 2025-06-15 22:54:14.133821+00 f t TOTAL 57400.00 3 1903 \N +72900 2025-06-15 22:54:14.135491+00 2025-06-15 22:54:14.135499+00 f t ADELANTO 13900.00 4 1903 \N +75293 2025-06-16 22:18:33.42544+00 2025-06-16 22:18:33.425453+00 f t SUBTOTAL 64500.00 1 1959 \N +75294 2025-06-16 22:18:33.427538+00 2025-06-16 22:18:33.427549+00 f t DESCUENTO 0.00 2 1959 \N +75295 2025-06-16 22:18:33.429556+00 2025-06-16 22:18:33.429567+00 f t TOTAL 64500.00 3 1959 \N +75296 2025-06-16 22:18:33.431213+00 2025-06-16 22:18:33.431222+00 f t ADELANTO 17000.00 4 1959 \N +72949 2025-06-15 22:59:18.432276+00 2025-06-15 22:59:18.432285+00 f t SUBTOTAL 50000.00 1 1904 \N +72950 2025-06-15 22:59:18.434201+00 2025-06-15 22:59:18.434209+00 f t DESCUENTO 0.00 2 1904 \N +72951 2025-06-15 22:59:18.435996+00 2025-06-15 22:59:18.436013+00 f t TOTAL 50000.00 3 1904 \N +72952 2025-06-15 22:59:18.437848+00 2025-06-15 22:59:18.43786+00 f t ADELANTO 10000.00 4 1904 \N +75561 2025-06-16 23:11:25.883111+00 2025-06-16 23:11:25.883124+00 f t SUBTOTAL 0.00 1 1961 \N +75562 2025-06-16 23:11:25.885498+00 2025-06-16 23:11:25.885509+00 f t DESCUENTO 0.00 2 1961 \N +75563 2025-06-16 23:11:25.886978+00 2025-06-16 23:11:25.886986+00 f t TOTAL 0.00 3 1961 \N +75564 2025-06-16 23:11:25.888821+00 2025-06-16 23:11:25.88883+00 f t ADELANTO 0.00 4 1961 \N +72973 2025-06-15 23:10:44.086954+00 2025-06-15 23:10:44.086964+00 f t SUBTOTAL 0.00 1 1905 \N +72974 2025-06-15 23:10:44.088974+00 2025-06-15 23:10:44.088982+00 f t DESCUENTO 0.00 2 1905 \N +72975 2025-06-15 23:10:44.090459+00 2025-06-15 23:10:44.090467+00 f t TOTAL 0.00 3 1905 \N +72976 2025-06-15 23:10:44.091816+00 2025-06-15 23:10:44.091823+00 f t ADELANTO 0.00 4 1905 \N +75629 2025-06-17 00:18:17.925453+00 2025-06-17 00:18:17.925465+00 f t SUBTOTAL 70000.00 1 1963 \N +75630 2025-06-17 00:18:17.928021+00 2025-06-17 00:18:17.928035+00 f t DESCUENTO 0.00 2 1963 \N +75631 2025-06-17 00:18:17.930173+00 2025-06-17 00:18:17.930184+00 f t TOTAL 70000.00 3 1963 \N +75632 2025-06-17 00:18:17.93233+00 2025-06-17 00:18:17.932343+00 f t ADELANTO 10000.00 4 1963 \N +74049 2025-06-16 12:06:25.070798+00 2025-06-16 12:06:25.070812+00 f t SUBTOTAL 0.00 1 1928 \N +74050 2025-06-16 12:06:25.0726+00 2025-06-16 12:06:25.072608+00 f t DESCUENTO 0.00 2 1928 \N +74051 2025-06-16 12:06:25.074148+00 2025-06-16 12:06:25.074155+00 f t TOTAL 0.00 3 1928 \N +74052 2025-06-16 12:06:25.075585+00 2025-06-16 12:06:25.075593+00 f t ADELANTO 0.00 4 1928 \N +74113 2025-06-16 13:59:58.795859+00 2025-06-16 13:59:58.795872+00 f t SUBTOTAL 94700.00 1 1932 \N +74114 2025-06-16 13:59:58.797863+00 2025-06-16 13:59:58.797874+00 f t DESCUENTO 0.00 2 1932 \N +74115 2025-06-16 13:59:58.799459+00 2025-06-16 13:59:58.799469+00 f t TOTAL 94700.00 3 1932 \N +74116 2025-06-16 13:59:58.800923+00 2025-06-16 13:59:58.800933+00 f t ADELANTO 56700.00 4 1932 \N +73021 2025-06-15 23:15:03.378963+00 2025-06-15 23:15:03.378977+00 f t SUBTOTAL 42000.00 1 1906 \N +73022 2025-06-15 23:15:03.383632+00 2025-06-15 23:15:03.383649+00 f t DESCUENTO 0.00 2 1906 \N +73023 2025-06-15 23:15:03.389027+00 2025-06-15 23:15:03.389041+00 f t TOTAL 42000.00 3 1906 \N +73024 2025-06-15 23:15:03.397765+00 2025-06-15 23:15:03.39778+00 f t ADELANTO 9500.00 4 1906 \N +74149 2025-06-16 14:12:12.10729+00 2025-06-16 14:12:12.107303+00 f t SUBTOTAL 50000.00 1 1933 \N +74150 2025-06-16 14:12:12.109509+00 2025-06-16 14:12:12.10952+00 f t DESCUENTO 0.00 2 1933 \N +74151 2025-06-16 14:12:12.111243+00 2025-06-16 14:12:12.111253+00 f t TOTAL 50000.00 3 1933 \N +74152 2025-06-16 14:12:12.113016+00 2025-06-16 14:12:12.113027+00 f t ADELANTO 10000.00 4 1933 \N +75845 2025-06-17 00:59:01.140014+00 2025-06-17 00:59:01.140028+00 f t SUBTOTAL 88000.00 1 1967 \N +75846 2025-06-17 00:59:01.142256+00 2025-06-17 00:59:01.142264+00 f t DESCUENTO 0.00 2 1967 \N +75847 2025-06-17 00:59:01.144832+00 2025-06-17 00:59:01.144843+00 f t TOTAL 88000.00 3 1967 \N +75848 2025-06-17 00:59:01.146667+00 2025-06-17 00:59:01.146676+00 f t ADELANTO 19000.00 4 1967 \N +73037 2025-06-15 23:24:12.714939+00 2025-06-15 23:24:12.714954+00 f t SUBTOTAL 0.00 1 1907 \N +73038 2025-06-15 23:24:12.717545+00 2025-06-15 23:24:12.717557+00 f t DESCUENTO 0.00 2 1907 \N +73039 2025-06-15 23:24:12.719882+00 2025-06-15 23:24:12.719892+00 f t TOTAL 0.00 3 1907 \N +73040 2025-06-15 23:24:12.721956+00 2025-06-15 23:24:12.721965+00 f t ADELANTO 0.00 4 1907 \N +75893 2025-06-17 01:32:35.93062+00 2025-06-17 01:32:35.930634+00 f t SUBTOTAL 57200.00 1 1969 \N +75894 2025-06-17 01:32:35.932623+00 2025-06-17 01:32:35.932634+00 f t DESCUENTO 0.00 2 1969 \N +75895 2025-06-17 01:32:35.934536+00 2025-06-17 01:32:35.934544+00 f t TOTAL 57200.00 3 1969 \N +75896 2025-06-17 01:32:35.935899+00 2025-06-17 01:32:35.935905+00 f t ADELANTO 13700.00 4 1969 \N +74273 2025-06-16 16:07:18.66281+00 2025-06-16 16:07:18.662823+00 f t SUBTOTAL 42000.00 1 1936 \N +74274 2025-06-16 16:07:18.665893+00 2025-06-16 16:07:18.665903+00 f t DESCUENTO 0.00 2 1936 \N +74275 2025-06-16 16:07:18.66809+00 2025-06-16 16:07:18.668101+00 f t TOTAL 42000.00 3 1936 \N +74276 2025-06-16 16:07:18.670034+00 2025-06-16 16:07:18.670046+00 f t ADELANTO 9500.00 4 1936 \N +73101 2025-06-15 23:25:30.140298+00 2025-06-15 23:25:30.140307+00 f t SUBTOTAL 50000.00 1 1908 \N +73102 2025-06-15 23:25:30.142363+00 2025-06-15 23:25:30.142371+00 f t DESCUENTO 0.00 2 1908 \N +73103 2025-06-15 23:25:30.143877+00 2025-06-15 23:25:30.143884+00 f t TOTAL 50000.00 3 1908 \N +73104 2025-06-15 23:25:30.145415+00 2025-06-15 23:25:30.145421+00 f t ADELANTO 10000.00 4 1908 \N +76653 2025-06-17 15:12:39.008678+00 2025-06-17 15:12:39.008691+00 f t SUBTOTAL 144000.00 1 1994 \N +76654 2025-06-17 15:12:39.010719+00 2025-06-17 15:12:39.01073+00 f t DESCUENTO 0.00 2 1994 \N +76655 2025-06-17 15:12:39.012636+00 2025-06-17 15:12:39.012647+00 f t TOTAL 144000.00 3 1994 \N +76656 2025-06-17 15:12:39.014233+00 2025-06-17 15:12:39.014243+00 f t ADELANTO 38000.00 4 1994 \N +78605 2025-06-18 18:56:11.187225+00 2025-06-18 18:56:11.187237+00 f t SUBTOTAL 42000.00 1 2054 \N +74965 2025-06-16 21:53:27.566652+00 2025-06-16 21:53:27.566666+00 f t SUBTOTAL 42000.00 1 1956 \N +74966 2025-06-16 21:53:27.569373+00 2025-06-16 21:53:27.569387+00 f t DESCUENTO 0.00 2 1956 \N +74967 2025-06-16 21:53:27.571589+00 2025-06-16 21:53:27.5716+00 f t TOTAL 42000.00 3 1956 \N +74968 2025-06-16 21:53:27.574052+00 2025-06-16 21:53:27.574064+00 f t ADELANTO 9500.00 4 1956 \N +78606 2025-06-18 18:56:11.189557+00 2025-06-18 18:56:11.189568+00 f t DESCUENTO 0.00 2 2054 \N +78607 2025-06-18 18:56:11.191221+00 2025-06-18 18:56:11.191229+00 f t TOTAL 42000.00 3 2054 \N +78608 2025-06-18 18:56:11.192905+00 2025-06-18 18:56:11.192912+00 f t ADELANTO 9500.00 4 2054 \N +73385 2025-06-16 01:00:42.254483+00 2025-06-16 01:00:42.254493+00 f t SUBTOTAL 0.00 1 1913 \N +73386 2025-06-16 01:00:42.256901+00 2025-06-16 01:00:42.25691+00 f t DESCUENTO 0.00 2 1913 \N +73387 2025-06-16 01:00:42.258559+00 2025-06-16 01:00:42.258588+00 f t TOTAL 0.00 3 1913 \N +73388 2025-06-16 01:00:42.260371+00 2025-06-16 01:00:42.260378+00 f t ADELANTO 0.00 4 1913 \N +73449 2025-06-16 02:10:31.521649+00 2025-06-16 02:10:31.521659+00 f t SUBTOTAL 0.00 1 1915 \N +73450 2025-06-16 02:10:31.52366+00 2025-06-16 02:10:31.523692+00 f t DESCUENTO 0.00 2 1915 \N +73451 2025-06-16 02:10:31.52528+00 2025-06-16 02:10:31.525288+00 f t TOTAL 0.00 3 1915 \N +73452 2025-06-16 02:10:31.526798+00 2025-06-16 02:10:31.526805+00 f t ADELANTO 0.00 4 1915 \N +75093 2025-06-16 22:14:38.990707+00 2025-06-16 22:14:38.990716+00 f t SUBTOTAL 72000.00 1 1957 \N +75094 2025-06-16 22:14:38.992509+00 2025-06-16 22:14:38.992517+00 f t DESCUENTO 0.00 2 1957 \N +75095 2025-06-16 22:14:38.993871+00 2025-06-16 22:14:38.993879+00 f t TOTAL 72000.00 3 1957 \N +75096 2025-06-16 22:14:38.995115+00 2025-06-16 22:14:38.995121+00 f t ADELANTO 19000.00 4 1957 \N +84785 2025-06-21 15:41:55.496107+00 2025-06-21 15:41:55.496119+00 f t SUBTOTAL 42000.00 1 2225 \N +84786 2025-06-21 15:41:55.498045+00 2025-06-21 15:41:55.498053+00 f t DESCUENTO 0.00 2 2225 \N +84787 2025-06-21 15:41:55.49954+00 2025-06-21 15:41:55.499548+00 f t TOTAL 42000.00 3 2225 \N +84788 2025-06-21 15:41:55.500698+00 2025-06-21 15:41:55.500705+00 f t ADELANTO 9500.00 4 2225 \N +78925 2025-06-18 21:33:44.893382+00 2025-06-18 21:33:44.893392+00 f t SUBTOTAL 0.00 1 2060 \N +78926 2025-06-18 21:33:44.895297+00 2025-06-18 21:33:44.895308+00 f t DESCUENTO 0.00 2 2060 \N +78927 2025-06-18 21:33:44.897379+00 2025-06-18 21:33:44.89739+00 f t TOTAL 0.00 3 2060 \N +78928 2025-06-18 21:33:44.899352+00 2025-06-18 21:33:44.899364+00 f t ADELANTO 0.00 4 2060 \N +77225 2025-06-17 17:55:27.579593+00 2025-06-17 17:55:27.579602+00 f t SUBTOTAL 129000.00 1 2001 \N +73757 2025-06-16 05:23:56.455065+00 2025-06-16 05:23:56.455075+00 f t SUBTOTAL 0.00 1 1923 \N +73758 2025-06-16 05:23:56.456915+00 2025-06-16 05:23:56.456923+00 f t DESCUENTO 0.00 2 1923 \N +73759 2025-06-16 05:23:56.458348+00 2025-06-16 05:23:56.458355+00 f t TOTAL 0.00 3 1923 \N +73760 2025-06-16 05:23:56.459551+00 2025-06-16 05:23:56.459558+00 f t ADELANTO 0.00 4 1923 \N +77226 2025-06-17 17:55:27.581531+00 2025-06-17 17:55:27.581538+00 f t DESCUENTO 0.00 2 2001 \N +77227 2025-06-17 17:55:27.582943+00 2025-06-17 17:55:27.582949+00 f t TOTAL 129000.00 3 2001 \N +77228 2025-06-17 17:55:27.584664+00 2025-06-17 17:55:27.584671+00 f t ADELANTO 34000.00 4 2001 \N +77521 2025-06-17 22:52:58.552401+00 2025-06-17 22:52:58.552413+00 f t SUBTOTAL 0.00 1 2009 \N +77522 2025-06-17 22:52:58.554498+00 2025-06-17 22:52:58.554505+00 f t DESCUENTO 0.00 2 2009 \N +77523 2025-06-17 22:52:58.555862+00 2025-06-17 22:52:58.555868+00 f t TOTAL 0.00 3 2009 \N +77524 2025-06-17 22:52:58.557057+00 2025-06-17 22:52:58.557063+00 f t ADELANTO 0.00 4 2009 \N +77601 2025-06-18 00:15:57.558035+00 2025-06-18 00:15:57.558049+00 f t SUBTOTAL 0.00 1 2014 \N +77602 2025-06-18 00:15:57.561554+00 2025-06-18 00:15:57.561567+00 f t DESCUENTO 0.00 2 2014 \N +77603 2025-06-18 00:15:57.564416+00 2025-06-18 00:15:57.564426+00 f t TOTAL 0.00 3 2014 \N +77604 2025-06-18 00:15:57.566376+00 2025-06-18 00:15:57.566388+00 f t ADELANTO 0.00 4 2014 \N +74057 2025-06-16 12:26:55.134401+00 2025-06-16 12:26:55.134411+00 f t SUBTOTAL 0.00 1 1929 \N +74058 2025-06-16 12:26:55.136248+00 2025-06-16 12:26:55.136257+00 f t DESCUENTO 0.00 2 1929 \N +74059 2025-06-16 12:26:55.137752+00 2025-06-16 12:26:55.137759+00 f t TOTAL 0.00 3 1929 \N +74060 2025-06-16 12:26:55.139363+00 2025-06-16 12:26:55.139372+00 f t ADELANTO 0.00 4 1929 \N +77653 2025-06-18 02:32:15.625166+00 2025-06-18 02:32:15.625179+00 f t SUBTOTAL 0.00 1 2017 \N +77654 2025-06-18 02:32:15.62795+00 2025-06-18 02:32:15.627963+00 f t DESCUENTO 0.00 2 2017 \N +77655 2025-06-18 02:32:15.62977+00 2025-06-18 02:32:15.62978+00 f t TOTAL 0.00 3 2017 \N +77656 2025-06-18 02:32:15.63149+00 2025-06-18 02:32:15.631498+00 f t ADELANTO 0.00 4 2017 \N +75761 2025-06-17 00:32:07.64727+00 2025-06-17 00:32:07.647283+00 f t SUBTOTAL 64500.00 1 1965 \N +75762 2025-06-17 00:32:07.649345+00 2025-06-17 00:32:07.649356+00 f t DESCUENTO 0.00 2 1965 \N +75763 2025-06-17 00:32:07.651159+00 2025-06-17 00:32:07.65117+00 f t TOTAL 64500.00 3 1965 \N +75764 2025-06-17 00:32:07.652858+00 2025-06-17 00:32:07.652866+00 f t ADELANTO 17000.00 4 1965 \N +75853 2025-06-17 01:12:31.831805+00 2025-06-17 01:12:31.831818+00 f t SUBTOTAL 0.00 1 1968 \N +75854 2025-06-17 01:12:31.833656+00 2025-06-17 01:12:31.833667+00 f t DESCUENTO 0.00 2 1968 \N +75855 2025-06-17 01:12:31.835454+00 2025-06-17 01:12:31.835463+00 f t TOTAL 0.00 3 1968 \N +75856 2025-06-17 01:12:31.836907+00 2025-06-17 01:12:31.836918+00 f t ADELANTO 0.00 4 1968 \N +74225 2025-06-16 14:42:49.578371+00 2025-06-16 14:42:49.57838+00 f t SUBTOTAL 27500.00 1 1935 \N +74226 2025-06-16 14:42:49.580704+00 2025-06-16 14:42:49.580716+00 f t DESCUENTO 0.00 2 1935 \N +74227 2025-06-16 14:42:49.582653+00 2025-06-16 14:42:49.582661+00 f t TOTAL 27500.00 3 1935 \N +74228 2025-06-16 14:42:49.584365+00 2025-06-16 14:42:49.584372+00 f t ADELANTO 27500.00 4 1935 \N +77881 2025-06-18 10:30:21.920752+00 2025-06-18 10:30:21.920769+00 f t SUBTOTAL 0.00 1 2029 \N +77882 2025-06-18 10:30:21.923269+00 2025-06-18 10:30:21.92328+00 f t DESCUENTO 0.00 2 2029 \N +77883 2025-06-18 10:30:21.925575+00 2025-06-18 10:30:21.925588+00 f t TOTAL 0.00 3 2029 \N +77884 2025-06-18 10:30:21.92775+00 2025-06-18 10:30:21.927763+00 f t ADELANTO 0.00 4 2029 \N +78029 2025-06-18 14:09:27.592831+00 2025-06-18 14:09:27.59284+00 f t SUBTOTAL 42000.00 1 2035 \N +78030 2025-06-18 14:09:27.59458+00 2025-06-18 14:09:27.594587+00 f t DESCUENTO 0.00 2 2035 \N +78031 2025-06-18 14:09:27.595974+00 2025-06-18 14:09:27.595982+00 f t TOTAL 42000.00 3 2035 \N +78032 2025-06-18 14:09:27.597284+00 2025-06-18 14:09:27.597291+00 f t ADELANTO 9500.00 4 2035 \N +76109 2025-06-17 05:25:55.319722+00 2025-06-17 05:25:55.319735+00 f t SUBTOTAL 49700.00 1 1974 \N +76110 2025-06-17 05:25:55.321736+00 2025-06-17 05:25:55.321745+00 f t DESCUENTO 0.00 2 1974 \N +76111 2025-06-17 05:25:55.323309+00 2025-06-17 05:25:55.323317+00 f t TOTAL 49700.00 3 1974 \N +76112 2025-06-17 05:25:55.324783+00 2025-06-17 05:25:55.324793+00 f t ADELANTO 11700.00 4 1974 \N +74425 2025-06-16 16:35:58.754207+00 2025-06-16 16:35:58.754214+00 f t SUBTOTAL 42000.00 1 1937 \N +74426 2025-06-16 16:35:58.755627+00 2025-06-16 16:35:58.755633+00 f t DESCUENTO 0.00 2 1937 \N +74427 2025-06-16 16:35:58.756623+00 2025-06-16 16:35:58.756629+00 f t TOTAL 42000.00 3 1937 \N +74428 2025-06-16 16:35:58.757592+00 2025-06-16 16:35:58.757597+00 f t ADELANTO 9500.00 4 1937 \N +82641 2025-06-20 15:40:23.012449+00 2025-06-20 15:40:23.01246+00 f t SUBTOTAL 49500.00 1 2166 \N +82642 2025-06-20 15:40:23.014228+00 2025-06-20 15:40:23.014237+00 f t DESCUENTO 0.00 2 2166 \N +82643 2025-06-20 15:40:23.015652+00 2025-06-20 15:40:23.015661+00 f t TOTAL 49500.00 3 2166 \N +82644 2025-06-20 15:40:23.017009+00 2025-06-20 15:40:23.017015+00 f t ADELANTO 11500.00 4 2166 \N +77077 2025-06-17 15:52:41.807042+00 2025-06-17 15:52:41.807056+00 f t SUBTOTAL 114000.00 1 1996 \N +77078 2025-06-17 15:52:41.809447+00 2025-06-17 15:52:41.809458+00 f t DESCUENTO 0.00 2 1996 \N +77079 2025-06-17 15:52:41.811443+00 2025-06-17 15:52:41.811454+00 f t TOTAL 114000.00 3 1996 \N +77080 2025-06-17 15:52:41.813573+00 2025-06-17 15:52:41.813584+00 f t ADELANTO 27500.00 4 1996 \N +77113 2025-06-17 16:16:44.742887+00 2025-06-17 16:16:44.742899+00 f t SUBTOTAL 49500.00 1 1998 \N +77114 2025-06-17 16:16:44.745365+00 2025-06-17 16:16:44.745376+00 f t DESCUENTO 0.00 2 1998 \N +77115 2025-06-17 16:16:44.747164+00 2025-06-17 16:16:44.747176+00 f t TOTAL 49500.00 3 1998 \N +74485 2025-06-16 16:45:12.076868+00 2025-06-16 16:45:12.076878+00 f t SUBTOTAL 27500.00 1 1938 \N +74486 2025-06-16 16:45:12.079501+00 2025-06-16 16:45:12.07951+00 f t DESCUENTO 0.00 2 1938 \N +74487 2025-06-16 16:45:12.081968+00 2025-06-16 16:45:12.081982+00 f t TOTAL 27500.00 3 1938 \N +74488 2025-06-16 16:45:12.084504+00 2025-06-16 16:45:12.084517+00 f t ADELANTO 27500.00 4 1938 \N +77116 2025-06-17 16:16:44.74866+00 2025-06-17 16:16:44.748669+00 f t ADELANTO 11500.00 4 1998 \N +77257 2025-06-17 18:03:56.965867+00 2025-06-17 18:03:56.965875+00 f t SUBTOTAL 50000.00 1 2002 \N +77258 2025-06-17 18:03:56.967606+00 2025-06-17 18:03:56.967615+00 f t DESCUENTO 0.00 2 2002 \N +77259 2025-06-17 18:03:56.968794+00 2025-06-17 18:03:56.968801+00 f t TOTAL 50000.00 3 2002 \N +77260 2025-06-17 18:03:56.969842+00 2025-06-17 18:03:56.969847+00 f t ADELANTO 10000.00 4 2002 \N +74533 2025-06-16 16:52:14.662252+00 2025-06-16 16:52:14.662266+00 f t SUBTOTAL 50000.00 1 1939 \N +74534 2025-06-16 16:52:14.664437+00 2025-06-16 16:52:14.664447+00 f t DESCUENTO 0.00 2 1939 \N +74535 2025-06-16 16:52:14.666024+00 2025-06-16 16:52:14.666033+00 f t TOTAL 50000.00 3 1939 \N +74536 2025-06-16 16:52:14.667682+00 2025-06-16 16:52:14.66769+00 f t ADELANTO 10000.00 4 1939 \N +74541 2025-06-16 16:53:01.266847+00 2025-06-16 16:53:01.26686+00 f t SUBTOTAL 0.00 1 1940 \N +74542 2025-06-16 16:53:01.269677+00 2025-06-16 16:53:01.269691+00 f t DESCUENTO 0.00 2 1940 \N +74543 2025-06-16 16:53:01.271971+00 2025-06-16 16:53:01.27198+00 f t TOTAL 0.00 3 1940 \N +74544 2025-06-16 16:53:01.274525+00 2025-06-16 16:53:01.274534+00 f t ADELANTO 0.00 4 1940 \N +75593 2025-06-16 23:46:56.079967+00 2025-06-16 23:46:56.079976+00 f t SUBTOTAL 42000.00 1 1962 \N +75594 2025-06-16 23:46:56.081697+00 2025-06-16 23:46:56.081705+00 f t DESCUENTO 0.00 2 1962 \N +75595 2025-06-16 23:46:56.083191+00 2025-06-16 23:46:56.0832+00 f t TOTAL 42000.00 3 1962 \N +75596 2025-06-16 23:46:56.084647+00 2025-06-16 23:46:56.084657+00 f t ADELANTO 9500.00 4 1962 \N +74593 2025-06-16 17:02:15.615915+00 2025-06-16 17:02:15.615924+00 f t SUBTOTAL 99000.00 1 1941 \N +74594 2025-06-16 17:02:15.61775+00 2025-06-16 17:02:15.617757+00 f t DESCUENTO 0.00 2 1941 \N +74595 2025-06-16 17:02:15.619062+00 2025-06-16 17:02:15.619069+00 f t TOTAL 99000.00 3 1941 \N +74596 2025-06-16 17:02:15.620339+00 2025-06-16 17:02:15.620345+00 f t ADELANTO 23000.00 4 1941 \N +74601 2025-06-16 17:41:16.116713+00 2025-06-16 17:41:16.116723+00 f t SUBTOTAL 0.00 1 1942 \N +74602 2025-06-16 17:41:16.118155+00 2025-06-16 17:41:16.118162+00 f t DESCUENTO 0.00 2 1942 \N +74603 2025-06-16 17:41:16.119481+00 2025-06-16 17:41:16.119487+00 f t TOTAL 0.00 3 1942 \N +74604 2025-06-16 17:41:16.120705+00 2025-06-16 17:41:16.120713+00 f t ADELANTO 0.00 4 1942 \N +74609 2025-06-16 17:45:11.940826+00 2025-06-16 17:45:11.940842+00 f t SUBTOTAL 0.00 1 1943 \N +74610 2025-06-16 17:45:11.942884+00 2025-06-16 17:45:11.942892+00 f t DESCUENTO 0.00 2 1943 \N +74611 2025-06-16 17:45:11.94482+00 2025-06-16 17:45:11.944831+00 f t TOTAL 0.00 3 1943 \N +74612 2025-06-16 17:45:11.946613+00 2025-06-16 17:45:11.946622+00 f t ADELANTO 0.00 4 1943 \N +74617 2025-06-16 17:45:23.89048+00 2025-06-16 17:45:23.890493+00 f t SUBTOTAL 0.00 1 1944 \N +74618 2025-06-16 17:45:23.892328+00 2025-06-16 17:45:23.892339+00 f t DESCUENTO 0.00 2 1944 \N +74619 2025-06-16 17:45:23.893887+00 2025-06-16 17:45:23.893895+00 f t TOTAL 0.00 3 1944 \N +74620 2025-06-16 17:45:23.895255+00 2025-06-16 17:45:23.895263+00 f t ADELANTO 0.00 4 1944 \N +74625 2025-06-16 17:47:03.14467+00 2025-06-16 17:47:03.144681+00 f t SUBTOTAL 0.00 1 1945 \N +74626 2025-06-16 17:47:03.146042+00 2025-06-16 17:47:03.14605+00 f t DESCUENTO 0.00 2 1945 \N +74627 2025-06-16 17:47:03.147443+00 2025-06-16 17:47:03.147451+00 f t TOTAL 0.00 3 1945 \N +74628 2025-06-16 17:47:03.148726+00 2025-06-16 17:47:03.148735+00 f t ADELANTO 0.00 4 1945 \N +74633 2025-06-16 18:01:06.183004+00 2025-06-16 18:01:06.183017+00 f t SUBTOTAL 0.00 1 1946 \N +74634 2025-06-16 18:01:06.185059+00 2025-06-16 18:01:06.185068+00 f t DESCUENTO 0.00 2 1946 \N +74635 2025-06-16 18:01:06.186825+00 2025-06-16 18:01:06.18684+00 f t TOTAL 0.00 3 1946 \N +74636 2025-06-16 18:01:06.188386+00 2025-06-16 18:01:06.188395+00 f t ADELANTO 0.00 4 1946 \N +75769 2025-06-17 00:47:11.048206+00 2025-06-17 00:47:11.048216+00 f t SUBTOTAL 0.00 1 1966 \N +75770 2025-06-17 00:47:11.049661+00 2025-06-17 00:47:11.049671+00 f t DESCUENTO 0.00 2 1966 \N +75771 2025-06-17 00:47:11.051634+00 2025-06-17 00:47:11.051645+00 f t TOTAL 0.00 3 1966 \N +74641 2025-06-16 18:32:06.097837+00 2025-06-16 18:32:06.097851+00 f t SUBTOTAL 0.00 1 1947 \N +74642 2025-06-16 18:32:06.099815+00 2025-06-16 18:32:06.099827+00 f t DESCUENTO 0.00 2 1947 \N +74643 2025-06-16 18:32:06.101489+00 2025-06-16 18:32:06.101498+00 f t TOTAL 0.00 3 1947 \N +74644 2025-06-16 18:32:06.103261+00 2025-06-16 18:32:06.103272+00 f t ADELANTO 0.00 4 1947 \N +75772 2025-06-17 00:47:11.053469+00 2025-06-17 00:47:11.053479+00 f t ADELANTO 0.00 4 1966 \N +74669 2025-06-16 18:44:36.348753+00 2025-06-16 18:44:36.348761+00 f t SUBTOTAL 50000.00 1 1948 \N +74670 2025-06-16 18:44:36.350503+00 2025-06-16 18:44:36.35051+00 f t DESCUENTO 0.00 2 1948 \N +74671 2025-06-16 18:44:36.352096+00 2025-06-16 18:44:36.352106+00 f t TOTAL 50000.00 3 1948 \N +74672 2025-06-16 18:44:36.35351+00 2025-06-16 18:44:36.353518+00 f t ADELANTO 10000.00 4 1948 \N +74677 2025-06-16 18:51:13.195291+00 2025-06-16 18:51:13.195301+00 f t SUBTOTAL 0.00 1 1949 \N +74678 2025-06-16 18:51:13.197015+00 2025-06-16 18:51:13.197022+00 f t DESCUENTO 0.00 2 1949 \N +74679 2025-06-16 18:51:13.198559+00 2025-06-16 18:51:13.198566+00 f t TOTAL 0.00 3 1949 \N +74680 2025-06-16 18:51:13.19983+00 2025-06-16 18:51:13.199836+00 f t ADELANTO 0.00 4 1949 \N +76053 2025-06-17 03:27:10.49078+00 2025-06-17 03:27:10.490792+00 f t SUBTOTAL 84000.00 1 1972 \N +76054 2025-06-17 03:27:10.494019+00 2025-06-17 03:27:10.494029+00 f t DESCUENTO 0.00 2 1972 \N +76055 2025-06-17 03:27:10.496953+00 2025-06-17 03:27:10.496966+00 f t TOTAL 84000.00 3 1972 \N +76056 2025-06-17 03:27:10.500837+00 2025-06-17 03:27:10.50085+00 f t ADELANTO 19000.00 4 1972 \N +78537 2025-06-18 18:20:14.785126+00 2025-06-18 18:20:14.785139+00 f t SUBTOTAL 57000.00 1 2052 \N +78538 2025-06-18 18:20:14.787499+00 2025-06-18 18:20:14.787509+00 f t DESCUENTO 0.00 2 2052 \N +78539 2025-06-18 18:20:14.789663+00 2025-06-18 18:20:14.789671+00 f t TOTAL 57000.00 3 2052 \N +78540 2025-06-18 18:20:14.791796+00 2025-06-18 18:20:14.791808+00 f t ADELANTO 12000.00 4 2052 \N +74725 2025-06-16 19:57:41.153736+00 2025-06-16 19:57:41.153744+00 f t SUBTOTAL 72000.00 1 1950 \N +74726 2025-06-16 19:57:41.1557+00 2025-06-16 19:57:41.155707+00 f t DESCUENTO 0.00 2 1950 \N +74727 2025-06-16 19:57:41.157396+00 2025-06-16 19:57:41.157404+00 f t TOTAL 72000.00 3 1950 \N +74728 2025-06-16 19:57:41.15872+00 2025-06-16 19:57:41.158727+00 f t ADELANTO 19000.00 4 1950 \N +74733 2025-06-16 20:41:52.255197+00 2025-06-16 20:41:52.25521+00 f t SUBTOTAL 0.00 1 1951 \N +74734 2025-06-16 20:41:52.257109+00 2025-06-16 20:41:52.257119+00 f t DESCUENTO 0.00 2 1951 \N +74735 2025-06-16 20:41:52.258796+00 2025-06-16 20:41:52.258807+00 f t TOTAL 0.00 3 1951 \N +74736 2025-06-16 20:41:52.260012+00 2025-06-16 20:41:52.260017+00 f t ADELANTO 0.00 4 1951 \N +76841 2025-06-17 15:47:27.833738+00 2025-06-17 15:47:27.833747+00 f t SUBTOTAL 64500.00 1 1995 \N +76842 2025-06-17 15:47:27.835573+00 2025-06-17 15:47:27.835582+00 f t DESCUENTO 0.00 2 1995 \N +76843 2025-06-17 15:47:27.838269+00 2025-06-17 15:47:27.838277+00 f t TOTAL 64500.00 3 1995 \N +76844 2025-06-17 15:47:27.84091+00 2025-06-17 15:47:27.840918+00 f t ADELANTO 17000.00 4 1995 \N +74769 2025-06-16 20:55:16.346296+00 2025-06-16 20:55:16.346307+00 f t SUBTOTAL 111000.00 1 1952 \N +74770 2025-06-16 20:55:16.349163+00 2025-06-16 20:55:16.349173+00 f t DESCUENTO 0.00 2 1952 \N +74771 2025-06-16 20:55:16.351235+00 2025-06-16 20:55:16.351245+00 f t TOTAL 111000.00 3 1952 \N +74772 2025-06-16 20:55:16.353202+00 2025-06-16 20:55:16.353209+00 f t ADELANTO 23500.00 4 1952 \N +77085 2025-06-17 16:14:07.375507+00 2025-06-17 16:14:07.375516+00 f t SUBTOTAL 0.00 1 1997 \N +77086 2025-06-17 16:14:07.377195+00 2025-06-17 16:14:07.377202+00 f t DESCUENTO 0.00 2 1997 \N +77087 2025-06-17 16:14:07.378635+00 2025-06-17 16:14:07.378645+00 f t TOTAL 0.00 3 1997 \N +77088 2025-06-17 16:14:07.379993+00 2025-06-17 16:14:07.380001+00 f t ADELANTO 0.00 4 1997 \N +74797 2025-06-16 20:57:20.07657+00 2025-06-16 20:57:20.076584+00 f t SUBTOTAL 42000.00 1 1953 \N +74798 2025-06-16 20:57:20.079158+00 2025-06-16 20:57:20.079169+00 f t DESCUENTO 0.00 2 1953 \N +74799 2025-06-16 20:57:20.081132+00 2025-06-16 20:57:20.081141+00 f t TOTAL 42000.00 3 1953 \N +74800 2025-06-16 20:57:20.083551+00 2025-06-16 20:57:20.083563+00 f t ADELANTO 9500.00 4 1953 \N +75285 2025-06-16 22:18:30.799679+00 2025-06-16 22:18:30.799696+00 f t SUBTOTAL 64500.00 1 1958 \N +75286 2025-06-16 22:18:30.80211+00 2025-06-16 22:18:30.802122+00 f t DESCUENTO 0.00 2 1958 \N +75287 2025-06-16 22:18:30.804149+00 2025-06-16 22:18:30.804161+00 f t TOTAL 64500.00 3 1958 \N +75288 2025-06-16 22:18:30.806183+00 2025-06-16 22:18:30.806194+00 f t ADELANTO 17000.00 4 1958 \N +77265 2025-06-17 18:47:30.267515+00 2025-06-17 18:47:30.267526+00 f t SUBTOTAL 0.00 1 2003 \N +77266 2025-06-17 18:47:30.269159+00 2025-06-17 18:47:30.269169+00 f t DESCUENTO 0.00 2 2003 \N +77267 2025-06-17 18:47:30.270539+00 2025-06-17 18:47:30.270545+00 f t TOTAL 0.00 3 2003 \N +77268 2025-06-17 18:47:30.271822+00 2025-06-17 18:47:30.271828+00 f t ADELANTO 0.00 4 2003 \N +75529 2025-06-16 22:39:31.137728+00 2025-06-16 22:39:31.137738+00 f t SUBTOTAL 322500.00 1 1960 \N +75530 2025-06-16 22:39:31.139943+00 2025-06-16 22:39:31.139988+00 f t DESCUENTO 0.00 2 1960 \N +75531 2025-06-16 22:39:31.142032+00 2025-06-16 22:39:31.142044+00 f t TOTAL 322500.00 3 1960 \N +75532 2025-06-16 22:39:31.144046+00 2025-06-16 22:39:31.14406+00 f t ADELANTO 82500.00 4 1960 \N +77529 2025-06-17 22:56:21.470645+00 2025-06-17 22:56:21.470655+00 f t SUBTOTAL 0.00 1 2010 \N +77530 2025-06-17 22:56:21.473095+00 2025-06-17 22:56:21.473104+00 f t DESCUENTO 0.00 2 2010 \N +77531 2025-06-17 22:56:21.475594+00 2025-06-17 22:56:21.475604+00 f t TOTAL 0.00 3 2010 \N +77532 2025-06-17 22:56:21.477475+00 2025-06-17 22:56:21.477484+00 f t ADELANTO 0.00 4 2010 \N +75665 2025-06-17 00:19:40.984065+00 2025-06-17 00:19:40.984079+00 f t SUBTOTAL 64500.00 1 1964 \N +75666 2025-06-17 00:19:40.986057+00 2025-06-17 00:19:40.986065+00 f t DESCUENTO 0.00 2 1964 \N +75667 2025-06-17 00:19:40.98775+00 2025-06-17 00:19:40.987759+00 f t TOTAL 64500.00 3 1964 \N +75668 2025-06-17 00:19:40.989513+00 2025-06-17 00:19:40.989539+00 f t ADELANTO 17000.00 4 1964 \N +77629 2025-06-18 00:44:02.950103+00 2025-06-18 00:44:02.950112+00 f t SUBTOTAL 70000.00 1 2015 \N +77630 2025-06-18 00:44:02.951946+00 2025-06-18 00:44:02.951954+00 f t DESCUENTO 0.00 2 2015 \N +77631 2025-06-18 00:44:02.953392+00 2025-06-18 00:44:02.953399+00 f t TOTAL 70000.00 3 2015 \N +77632 2025-06-18 00:44:02.954991+00 2025-06-18 00:44:02.954999+00 f t ADELANTO 15000.00 4 2015 \N +77681 2025-06-18 02:35:48.354366+00 2025-06-18 02:35:48.354375+00 f t SUBTOTAL 64500.00 1 2018 \N +77682 2025-06-18 02:35:48.356243+00 2025-06-18 02:35:48.356253+00 f t DESCUENTO 0.00 2 2018 \N +77683 2025-06-18 02:35:48.357466+00 2025-06-18 02:35:48.357472+00 f t TOTAL 64500.00 3 2018 \N +77684 2025-06-18 02:35:48.358658+00 2025-06-18 02:35:48.358668+00 f t ADELANTO 17000.00 4 2018 \N +77733 2025-06-18 02:50:57.041322+00 2025-06-18 02:50:57.041331+00 f t SUBTOTAL 42000.00 1 2021 \N +77734 2025-06-18 02:50:57.043408+00 2025-06-18 02:50:57.043415+00 f t DESCUENTO 0.00 2 2021 \N +77735 2025-06-18 02:50:57.044727+00 2025-06-18 02:50:57.044733+00 f t TOTAL 42000.00 3 2021 \N +77736 2025-06-18 02:50:57.046314+00 2025-06-18 02:50:57.046322+00 f t ADELANTO 9500.00 4 2021 \N +77829 2025-06-18 06:07:39.205266+00 2025-06-18 06:07:39.20528+00 f t SUBTOTAL 0.00 1 2025 \N +77830 2025-06-18 06:07:39.20777+00 2025-06-18 06:07:39.207778+00 f t DESCUENTO 0.00 2 2025 \N +77831 2025-06-18 06:07:39.20983+00 2025-06-18 06:07:39.209838+00 f t TOTAL 0.00 3 2025 \N +77832 2025-06-18 06:07:39.211087+00 2025-06-18 06:07:39.211094+00 f t ADELANTO 0.00 4 2025 \N +75949 2025-06-17 03:03:19.48459+00 2025-06-17 03:03:19.484603+00 f t SUBTOTAL 70000.00 1 1970 \N +75950 2025-06-17 03:03:19.486941+00 2025-06-17 03:03:19.486953+00 f t DESCUENTO 0.00 2 1970 \N +75951 2025-06-17 03:03:19.490295+00 2025-06-17 03:03:19.490308+00 f t TOTAL 70000.00 3 1970 \N +75952 2025-06-17 03:03:19.492607+00 2025-06-17 03:03:19.492621+00 f t ADELANTO 15000.00 4 1970 \N +77889 2025-06-18 10:57:33.616886+00 2025-06-18 10:57:33.616896+00 f t SUBTOTAL 0.00 1 2030 \N +77890 2025-06-18 10:57:33.618809+00 2025-06-18 10:57:33.61882+00 f t DESCUENTO 0.00 2 2030 \N +77891 2025-06-18 10:57:33.620774+00 2025-06-18 10:57:33.620782+00 f t TOTAL 0.00 3 2030 \N +77892 2025-06-18 10:57:33.622518+00 2025-06-18 10:57:33.622525+00 f t ADELANTO 0.00 4 2030 \N +76117 2025-06-17 12:05:35.465271+00 2025-06-17 12:05:35.46528+00 f t SUBTOTAL 0.00 1 1975 \N +76118 2025-06-17 12:05:35.467101+00 2025-06-17 12:05:35.467109+00 f t DESCUENTO 0.00 2 1975 \N +76119 2025-06-17 12:05:35.468512+00 2025-06-17 12:05:35.468519+00 f t TOTAL 0.00 3 1975 \N +76120 2025-06-17 12:05:35.469675+00 2025-06-17 12:05:35.469681+00 f t ADELANTO 0.00 4 1975 \N +76153 2025-06-17 12:49:39.521762+00 2025-06-17 12:49:39.521774+00 f t SUBTOTAL 70000.00 1 1977 \N +76154 2025-06-17 12:49:39.524104+00 2025-06-17 12:49:39.524117+00 f t DESCUENTO 0.00 2 1977 \N +76155 2025-06-17 12:49:39.525796+00 2025-06-17 12:49:39.525808+00 f t TOTAL 70000.00 3 1977 \N +76156 2025-06-17 12:49:39.527634+00 2025-06-17 12:49:39.527644+00 f t ADELANTO 10000.00 4 1977 \N +82481 2025-06-20 14:48:39.904988+00 2025-06-20 14:48:39.905041+00 f t SUBTOTAL 42000.00 1 2163 \N +82482 2025-06-20 14:48:39.907293+00 2025-06-20 14:48:39.907303+00 f t DESCUENTO 0.00 2 2163 \N +82483 2025-06-20 14:48:39.908691+00 2025-06-20 14:48:39.908699+00 f t TOTAL 42000.00 3 2163 \N +82484 2025-06-20 14:48:39.909885+00 2025-06-20 14:48:39.909891+00 f t ADELANTO 9500.00 4 2163 \N +76181 2025-06-17 13:20:26.607676+00 2025-06-17 13:20:26.607687+00 f t SUBTOTAL 95000.00 1 1978 \N +76182 2025-06-17 13:20:26.610119+00 2025-06-17 13:20:26.61013+00 f t DESCUENTO 0.00 2 1978 \N +76183 2025-06-17 13:20:26.612515+00 2025-06-17 13:20:26.612527+00 f t TOTAL 95000.00 3 1978 \N +76184 2025-06-17 13:20:26.614787+00 2025-06-17 13:20:26.614798+00 f t ADELANTO 10000.00 4 1978 \N +76217 2025-06-17 13:36:38.955912+00 2025-06-17 13:36:38.955922+00 f t SUBTOTAL 50000.00 1 1979 \N +76218 2025-06-17 13:36:38.958016+00 2025-06-17 13:36:38.958024+00 f t DESCUENTO 0.00 2 1979 \N +76219 2025-06-17 13:36:38.959843+00 2025-06-17 13:36:38.959851+00 f t TOTAL 50000.00 3 1979 \N +76220 2025-06-17 13:36:38.961421+00 2025-06-17 13:36:38.961429+00 f t ADELANTO 10000.00 4 1979 \N +76273 2025-06-17 13:40:28.414552+00 2025-06-17 13:40:28.414567+00 f t SUBTOTAL 64500.00 1 1980 \N +76274 2025-06-17 13:40:28.41696+00 2025-06-17 13:40:28.416971+00 f t DESCUENTO 0.00 2 1980 \N +76275 2025-06-17 13:40:28.419+00 2025-06-17 13:40:28.419011+00 f t TOTAL 64500.00 3 1980 \N +76276 2025-06-17 13:40:28.421131+00 2025-06-17 13:40:28.421143+00 f t ADELANTO 17000.00 4 1980 \N +76281 2025-06-17 14:05:22.327399+00 2025-06-17 14:05:22.327413+00 f t SUBTOTAL 0.00 1 1981 \N +76282 2025-06-17 14:05:22.330918+00 2025-06-17 14:05:22.33093+00 f t DESCUENTO 0.00 2 1981 \N +76283 2025-06-17 14:05:22.336079+00 2025-06-17 14:05:22.336092+00 f t TOTAL 0.00 3 1981 \N +76284 2025-06-17 14:05:22.338123+00 2025-06-17 14:05:22.338132+00 f t ADELANTO 0.00 4 1981 \N +77373 2025-06-17 18:58:18.024189+00 2025-06-17 18:58:18.024198+00 f t SUBTOTAL 42000.00 1 2005 \N +77374 2025-06-17 18:58:18.026427+00 2025-06-17 18:58:18.026438+00 f t DESCUENTO 0.00 2 2005 \N +77375 2025-06-17 18:58:18.028196+00 2025-06-17 18:58:18.028206+00 f t TOTAL 42000.00 3 2005 \N +77376 2025-06-17 18:58:18.029751+00 2025-06-17 18:58:18.029758+00 f t ADELANTO 9500.00 4 2005 \N +77477 2025-06-17 21:31:59.945457+00 2025-06-17 21:31:59.945469+00 f t SUBTOTAL 72000.00 1 2007 \N +77478 2025-06-17 21:31:59.947583+00 2025-06-17 21:31:59.947594+00 f t DESCUENTO 0.00 2 2007 \N +77479 2025-06-17 21:31:59.949411+00 2025-06-17 21:31:59.949423+00 f t TOTAL 72000.00 3 2007 \N +77480 2025-06-17 21:31:59.951052+00 2025-06-17 21:31:59.951062+00 f t ADELANTO 19000.00 4 2007 \N +77537 2025-06-17 23:18:47.643019+00 2025-06-17 23:18:47.643028+00 f t SUBTOTAL 0.00 1 2011 \N +77538 2025-06-17 23:18:47.644459+00 2025-06-17 23:18:47.644466+00 f t DESCUENTO 0.00 2 2011 \N +77539 2025-06-17 23:18:47.645522+00 2025-06-17 23:18:47.645528+00 f t TOTAL 0.00 3 2011 \N +77540 2025-06-17 23:18:47.64648+00 2025-06-17 23:18:47.646486+00 f t ADELANTO 0.00 4 2011 \N +76333 2025-06-17 14:30:22.755698+00 2025-06-17 14:30:22.755708+00 f t SUBTOTAL 57000.00 1 1982 \N +76334 2025-06-17 14:30:22.75807+00 2025-06-17 14:30:22.758081+00 f t DESCUENTO 0.00 2 1982 \N +76335 2025-06-17 14:30:22.759997+00 2025-06-17 14:30:22.760008+00 f t TOTAL 57000.00 3 1982 \N +76336 2025-06-17 14:30:22.761706+00 2025-06-17 14:30:22.761716+00 f t ADELANTO 12000.00 4 1982 \N +77637 2025-06-18 01:17:57.644646+00 2025-06-18 01:17:57.644656+00 f t SUBTOTAL 0.00 1 2016 \N +77638 2025-06-18 01:17:57.646116+00 2025-06-18 01:17:57.646123+00 f t DESCUENTO 0.00 2 2016 \N +77639 2025-06-18 01:17:57.647383+00 2025-06-18 01:17:57.647389+00 f t TOTAL 0.00 3 2016 \N +77640 2025-06-18 01:17:57.648602+00 2025-06-18 01:17:57.648608+00 f t ADELANTO 0.00 4 2016 \N +76345 2025-06-17 14:33:56.431404+00 2025-06-17 14:33:56.431414+00 f t SUBTOTAL 0.00 1 1983 \N +76346 2025-06-17 14:33:56.433386+00 2025-06-17 14:33:56.433395+00 f t DESCUENTO 0.00 2 1983 \N +76347 2025-06-17 14:33:56.434748+00 2025-06-17 14:33:56.434754+00 f t TOTAL 0.00 3 1983 \N +76348 2025-06-17 14:33:56.436211+00 2025-06-17 14:33:56.436225+00 f t ADELANTO 0.00 4 1983 \N +77689 2025-06-18 02:47:35.918713+00 2025-06-18 02:47:35.918724+00 f t SUBTOTAL 0.00 1 2019 \N +77690 2025-06-18 02:47:35.92064+00 2025-06-18 02:47:35.920647+00 f t DESCUENTO 0.00 2 2019 \N +77691 2025-06-18 02:47:35.922091+00 2025-06-18 02:47:35.922099+00 f t TOTAL 0.00 3 2019 \N +77692 2025-06-18 02:47:35.923647+00 2025-06-18 02:47:35.923654+00 f t ADELANTO 0.00 4 2019 \N +76365 2025-06-17 14:34:27.094345+00 2025-06-17 14:34:27.094361+00 f t SUBTOTAL 0.00 1 1984 \N +76366 2025-06-17 14:34:27.096411+00 2025-06-17 14:34:27.096422+00 f t DESCUENTO 0.00 2 1984 \N +76367 2025-06-17 14:34:27.097952+00 2025-06-17 14:34:27.097959+00 f t TOTAL 0.00 3 1984 \N +76368 2025-06-17 14:34:27.099381+00 2025-06-17 14:34:27.099391+00 f t ADELANTO 0.00 4 1984 \N +77741 2025-06-18 02:51:45.040217+00 2025-06-18 02:51:45.040225+00 f t SUBTOTAL 0.00 1 2022 \N +77742 2025-06-18 02:51:45.041588+00 2025-06-18 02:51:45.041594+00 f t DESCUENTO 0.00 2 2022 \N +77743 2025-06-18 02:51:45.04301+00 2025-06-18 02:51:45.043017+00 f t TOTAL 0.00 3 2022 \N +77744 2025-06-18 02:51:45.044168+00 2025-06-18 02:51:45.044174+00 f t ADELANTO 0.00 4 2022 \N +76385 2025-06-17 14:37:31.414787+00 2025-06-17 14:37:31.4148+00 f t SUBTOTAL 0.00 1 1985 \N +76386 2025-06-17 14:37:31.416995+00 2025-06-17 14:37:31.417006+00 f t DESCUENTO 0.00 2 1985 \N +76387 2025-06-17 14:37:31.418685+00 2025-06-17 14:37:31.418692+00 f t TOTAL 0.00 3 1985 \N +76388 2025-06-17 14:37:31.42029+00 2025-06-17 14:37:31.420297+00 f t ADELANTO 0.00 4 1985 \N +76401 2025-06-17 14:38:38.773406+00 2025-06-17 14:38:38.773419+00 f t SUBTOTAL 0.00 1 1986 \N +76402 2025-06-17 14:38:38.776171+00 2025-06-17 14:38:38.776183+00 f t DESCUENTO 0.00 2 1986 \N +76403 2025-06-17 14:38:38.778226+00 2025-06-17 14:38:38.778237+00 f t TOTAL 0.00 3 1986 \N +76404 2025-06-17 14:38:38.781059+00 2025-06-17 14:38:38.781072+00 f t ADELANTO 0.00 4 1986 \N +77857 2025-06-18 06:13:01.279715+00 2025-06-18 06:13:01.279724+00 f t SUBTOTAL 0.00 1 2026 \N +77858 2025-06-18 06:13:01.281925+00 2025-06-18 06:13:01.281934+00 f t DESCUENTO 0.00 2 2026 \N +77859 2025-06-18 06:13:01.283382+00 2025-06-18 06:13:01.283389+00 f t TOTAL 0.00 3 2026 \N +77860 2025-06-18 06:13:01.286857+00 2025-06-18 06:13:01.286868+00 f t ADELANTO 0.00 4 2026 \N +77917 2025-06-18 11:25:03.354011+00 2025-06-18 11:25:03.354025+00 f t SUBTOTAL 61000.00 1 2031 \N +77918 2025-06-18 11:25:03.358324+00 2025-06-18 11:25:03.358338+00 f t DESCUENTO 0.00 2 2031 \N +77919 2025-06-18 11:25:03.363516+00 2025-06-18 11:25:03.363532+00 f t TOTAL 61000.00 3 2031 \N +77920 2025-06-18 11:25:03.372605+00 2025-06-18 11:25:03.372619+00 f t ADELANTO 11000.00 4 2031 \N +77981 2025-06-18 13:05:17.522993+00 2025-06-18 13:05:17.523006+00 f t SUBTOTAL 57000.00 1 2034 \N +77982 2025-06-18 13:05:17.525526+00 2025-06-18 13:05:17.525539+00 f t DESCUENTO 0.00 2 2034 \N +77983 2025-06-18 13:05:17.527511+00 2025-06-18 13:05:17.527521+00 f t TOTAL 57000.00 3 2034 \N +77984 2025-06-18 13:05:17.529293+00 2025-06-18 13:05:17.529305+00 f t ADELANTO 12000.00 4 2034 \N +76433 2025-06-17 14:39:22.799076+00 2025-06-17 14:39:22.799086+00 f t SUBTOTAL 0.00 1 1988 \N +76434 2025-06-17 14:39:22.800982+00 2025-06-17 14:39:22.800989+00 f t DESCUENTO 0.00 2 1988 \N +76435 2025-06-17 14:39:22.802242+00 2025-06-17 14:39:22.802248+00 f t TOTAL 0.00 3 1988 \N +76436 2025-06-17 14:39:22.803619+00 2025-06-17 14:39:22.803625+00 f t ADELANTO 0.00 4 1988 \N +78037 2025-06-18 15:15:19.588378+00 2025-06-18 15:15:19.58839+00 f t SUBTOTAL 0.00 1 2036 \N +86459 2025-06-22 06:33:21.011564+00 2025-06-22 06:33:21.01157+00 f t TOTAL 0.00 3 2267 \N +78577 2025-06-18 18:44:05.026523+00 2025-06-18 18:44:05.026535+00 f t SUBTOTAL 102700.00 1 2053 \N +76469 2025-06-17 14:40:53.706003+00 2025-06-17 14:40:53.706013+00 f t SUBTOTAL 88000.00 1 1987 \N +76470 2025-06-17 14:40:53.707895+00 2025-06-17 14:40:53.707903+00 f t DESCUENTO 0.00 2 1987 \N +76471 2025-06-17 14:40:53.709622+00 2025-06-17 14:40:53.709633+00 f t TOTAL 88000.00 3 1987 \N +76472 2025-06-17 14:40:53.711105+00 2025-06-17 14:40:53.711112+00 f t ADELANTO 19000.00 4 1987 \N +78578 2025-06-18 18:44:05.028621+00 2025-06-18 18:44:05.02863+00 f t DESCUENTO 0.00 2 2053 \N +78579 2025-06-18 18:44:05.030364+00 2025-06-18 18:44:05.030375+00 f t TOTAL 102700.00 3 2053 \N +78580 2025-06-18 18:44:05.032228+00 2025-06-18 18:44:05.032237+00 f t ADELANTO 64700.00 4 2053 \N +78613 2025-06-18 19:21:48.627018+00 2025-06-18 19:21:48.62703+00 f t SUBTOTAL 0.00 1 2055 \N +76477 2025-06-17 14:41:01.493133+00 2025-06-17 14:41:01.493146+00 f t SUBTOTAL 0.00 1 1989 \N +76478 2025-06-17 14:41:01.495682+00 2025-06-17 14:41:01.495691+00 f t DESCUENTO 0.00 2 1989 \N +76479 2025-06-17 14:41:01.497956+00 2025-06-17 14:41:01.497966+00 f t TOTAL 0.00 3 1989 \N +76480 2025-06-17 14:41:01.500328+00 2025-06-17 14:41:01.500339+00 f t ADELANTO 0.00 4 1989 \N +78614 2025-06-18 19:21:48.629033+00 2025-06-18 19:21:48.629046+00 f t DESCUENTO 0.00 2 2055 \N +78615 2025-06-18 19:21:48.630617+00 2025-06-18 19:21:48.630627+00 f t TOTAL 0.00 3 2055 \N +78616 2025-06-18 19:21:48.632188+00 2025-06-18 19:21:48.632195+00 f t ADELANTO 0.00 4 2055 \N +76485 2025-06-17 14:44:52.836003+00 2025-06-17 14:44:52.836017+00 f t SUBTOTAL 0.00 1 1990 \N +76486 2025-06-17 14:44:52.837821+00 2025-06-17 14:44:52.837831+00 f t DESCUENTO 0.00 2 1990 \N +76487 2025-06-17 14:44:52.839563+00 2025-06-17 14:44:52.839572+00 f t TOTAL 0.00 3 1990 \N +76488 2025-06-17 14:44:52.84109+00 2025-06-17 14:44:52.841099+00 f t ADELANTO 0.00 4 1990 \N +76493 2025-06-17 14:46:57.893708+00 2025-06-17 14:46:57.893717+00 f t SUBTOTAL 0.00 1 1991 \N +76494 2025-06-17 14:46:57.895299+00 2025-06-17 14:46:57.895309+00 f t DESCUENTO 0.00 2 1991 \N +76495 2025-06-17 14:46:57.89707+00 2025-06-17 14:46:57.897077+00 f t TOTAL 0.00 3 1991 \N +76496 2025-06-17 14:46:57.898535+00 2025-06-17 14:46:57.898541+00 f t ADELANTO 0.00 4 1991 \N +84621 2025-06-21 14:11:54.571435+00 2025-06-21 14:11:54.571443+00 f t SUBTOTAL 84000.00 1 2218 \N +84622 2025-06-21 14:11:54.573161+00 2025-06-21 14:11:54.573166+00 f t DESCUENTO 0.00 2 2218 \N +84623 2025-06-21 14:11:54.574365+00 2025-06-21 14:11:54.574371+00 f t TOTAL 84000.00 3 2218 \N +84624 2025-06-21 14:11:54.575446+00 2025-06-21 14:11:54.575451+00 f t ADELANTO 19000.00 4 2218 \N +76513 2025-06-17 14:59:29.143692+00 2025-06-17 14:59:29.143701+00 f t SUBTOTAL 0.00 1 1992 \N +76514 2025-06-17 14:59:29.145703+00 2025-06-17 14:59:29.145711+00 f t DESCUENTO 0.00 2 1992 \N +76515 2025-06-17 14:59:29.147199+00 2025-06-17 14:59:29.147206+00 f t TOTAL 0.00 3 1992 \N +76516 2025-06-17 14:59:29.148781+00 2025-06-17 14:59:29.148788+00 f t ADELANTO 0.00 4 1992 \N +78801 2025-06-18 19:43:53.825927+00 2025-06-18 19:43:53.825939+00 f t SUBTOTAL 27500.00 1 2058 \N +78802 2025-06-18 19:43:53.828029+00 2025-06-18 19:43:53.828039+00 f t DESCUENTO 0.00 2 2058 \N +78803 2025-06-18 19:43:53.829629+00 2025-06-18 19:43:53.82964+00 f t TOTAL 27500.00 3 2058 \N +78804 2025-06-18 19:43:53.831176+00 2025-06-18 19:43:53.831184+00 f t ADELANTO 27500.00 4 2058 \N +77401 2025-06-17 18:58:54.423631+00 2025-06-17 18:58:54.423639+00 f t SUBTOTAL 50000.00 1 2004 \N +77402 2025-06-17 18:58:54.425385+00 2025-06-17 18:58:54.425395+00 f t DESCUENTO 0.00 2 2004 \N +77403 2025-06-17 18:58:54.427065+00 2025-06-17 18:58:54.427075+00 f t TOTAL 50000.00 3 2004 \N +77404 2025-06-17 18:58:54.428784+00 2025-06-17 18:58:54.428793+00 f t ADELANTO 10000.00 4 2004 \N +77429 2025-06-17 21:17:38.218116+00 2025-06-17 21:17:38.218132+00 f t SUBTOTAL 70000.00 1 2006 \N +77430 2025-06-17 21:17:38.220852+00 2025-06-17 21:17:38.220866+00 f t DESCUENTO 0.00 2 2006 \N +77431 2025-06-17 21:17:38.222869+00 2025-06-17 21:17:38.222879+00 f t TOTAL 70000.00 3 2006 \N +77432 2025-06-17 21:17:38.22507+00 2025-06-17 21:17:38.225082+00 f t ADELANTO 15000.00 4 2006 \N +77545 2025-06-17 23:19:58.115342+00 2025-06-17 23:19:58.115354+00 f t SUBTOTAL 0.00 1 2012 \N +77546 2025-06-17 23:19:58.116837+00 2025-06-17 23:19:58.116846+00 f t DESCUENTO 0.00 2 2012 \N +77547 2025-06-17 23:19:58.118149+00 2025-06-17 23:19:58.118158+00 f t TOTAL 0.00 3 2012 \N +77548 2025-06-17 23:19:58.119547+00 2025-06-17 23:19:58.119554+00 f t ADELANTO 0.00 4 2012 \N +79229 2025-06-18 23:21:36.00042+00 2025-06-18 23:21:36.000433+00 f t SUBTOTAL 0.00 1 2066 \N +79230 2025-06-18 23:21:36.002368+00 2025-06-18 23:21:36.00238+00 f t DESCUENTO 0.00 2 2066 \N +77697 2025-06-18 02:48:03.205679+00 2025-06-18 02:48:03.205689+00 f t SUBTOTAL 0.00 1 2020 \N +77698 2025-06-18 02:48:03.207794+00 2025-06-18 02:48:03.207809+00 f t DESCUENTO 0.00 2 2020 \N +77699 2025-06-18 02:48:03.210321+00 2025-06-18 02:48:03.210333+00 f t TOTAL 0.00 3 2020 \N +77700 2025-06-18 02:48:03.213359+00 2025-06-18 02:48:03.213368+00 f t ADELANTO 0.00 4 2020 \N +79231 2025-06-18 23:21:36.004433+00 2025-06-18 23:21:36.004446+00 f t TOTAL 0.00 3 2066 \N +79232 2025-06-18 23:21:36.006767+00 2025-06-18 23:21:36.006778+00 f t ADELANTO 0.00 4 2066 \N +77769 2025-06-18 04:55:46.740035+00 2025-06-18 04:55:46.740047+00 f t SUBTOTAL 50000.00 1 2023 \N +77770 2025-06-18 04:55:46.74217+00 2025-06-18 04:55:46.742181+00 f t DESCUENTO 0.00 2 2023 \N +77771 2025-06-18 04:55:46.743855+00 2025-06-18 04:55:46.743864+00 f t TOTAL 50000.00 3 2023 \N +77772 2025-06-18 04:55:46.745399+00 2025-06-18 04:55:46.745408+00 f t ADELANTO 10000.00 4 2023 \N +77813 2025-06-18 05:40:26.128694+00 2025-06-18 05:40:26.128705+00 f t SUBTOTAL 50000.00 1 2024 \N +77814 2025-06-18 05:40:26.13383+00 2025-06-18 05:40:26.133844+00 f t DESCUENTO 0.00 2 2024 \N +77815 2025-06-18 05:40:26.135985+00 2025-06-18 05:40:26.135994+00 f t TOTAL 50000.00 3 2024 \N +77816 2025-06-18 05:40:26.138118+00 2025-06-18 05:40:26.138129+00 f t ADELANTO 10000.00 4 2024 \N +77865 2025-06-18 06:14:11.364258+00 2025-06-18 06:14:11.364268+00 f t SUBTOTAL 0.00 1 2027 \N +77866 2025-06-18 06:14:11.366221+00 2025-06-18 06:14:11.366233+00 f t DESCUENTO 0.00 2 2027 \N +77867 2025-06-18 06:14:11.36785+00 2025-06-18 06:14:11.367858+00 f t TOTAL 0.00 3 2027 \N +77868 2025-06-18 06:14:11.369437+00 2025-06-18 06:14:11.369446+00 f t ADELANTO 0.00 4 2027 \N +77945 2025-06-18 12:26:38.892488+00 2025-06-18 12:26:38.892502+00 f t SUBTOTAL 27500.00 1 2032 \N +77946 2025-06-18 12:26:38.895006+00 2025-06-18 12:26:38.895017+00 f t DESCUENTO 0.00 2 2032 \N +77947 2025-06-18 12:26:38.897078+00 2025-06-18 12:26:38.897089+00 f t TOTAL 27500.00 3 2032 \N +77948 2025-06-18 12:26:38.899048+00 2025-06-18 12:26:38.899071+00 f t ADELANTO 27500.00 4 2032 \N +78038 2025-06-18 15:15:19.590156+00 2025-06-18 15:15:19.590164+00 f t DESCUENTO 0.00 2 2036 \N +78039 2025-06-18 15:15:19.59199+00 2025-06-18 15:15:19.591997+00 f t TOTAL 0.00 3 2036 \N +78040 2025-06-18 15:15:19.59332+00 2025-06-18 15:15:19.593325+00 f t ADELANTO 0.00 4 2036 \N +78065 2025-06-18 15:17:54.286252+00 2025-06-18 15:17:54.286263+00 f t SUBTOTAL 117000.00 1 2037 \N +78066 2025-06-18 15:17:54.288324+00 2025-06-18 15:17:54.288334+00 f t DESCUENTO 0.00 2 2037 \N +78067 2025-06-18 15:17:54.290261+00 2025-06-18 15:17:54.290272+00 f t TOTAL 117000.00 3 2037 \N +78068 2025-06-18 15:17:54.292437+00 2025-06-18 15:17:54.292447+00 f t ADELANTO 24500.00 4 2037 \N +82433 2025-06-20 14:40:30.81731+00 2025-06-20 14:40:30.817323+00 f t SUBTOTAL 111000.00 1 2162 \N +82434 2025-06-20 14:40:30.819068+00 2025-06-20 14:40:30.819078+00 f t DESCUENTO 0.00 2 2162 \N +82435 2025-06-20 14:40:30.820532+00 2025-06-20 14:40:30.820539+00 f t TOTAL 111000.00 3 2162 \N +82436 2025-06-20 14:40:30.821756+00 2025-06-20 14:40:30.821763+00 f t ADELANTO 23500.00 4 2162 \N +86460 2025-06-22 06:33:21.014504+00 2025-06-22 06:33:21.014511+00 f t ADELANTO 0.00 4 2267 \N +86501 2025-06-22 08:49:21.301191+00 2025-06-22 08:49:21.301201+00 f t SUBTOTAL 64500.00 1 2268 \N +80541 2025-06-19 16:59:11.007577+00 2025-06-19 16:59:11.00759+00 f t SUBTOTAL 94700.00 1 2100 \N +80542 2025-06-19 16:59:11.009856+00 2025-06-19 16:59:11.009867+00 f t DESCUENTO 0.00 2 2100 \N +80543 2025-06-19 16:59:11.020115+00 2025-06-19 16:59:11.020126+00 f t TOTAL 94700.00 3 2100 \N +80544 2025-06-19 16:59:11.022202+00 2025-06-19 16:59:11.022215+00 f t ADELANTO 56700.00 4 2100 \N +78113 2025-06-18 15:19:07.805632+00 2025-06-18 15:19:07.805645+00 f t SUBTOTAL 0.00 1 2039 \N +78114 2025-06-18 15:19:07.807777+00 2025-06-18 15:19:07.807788+00 f t DESCUENTO 0.00 2 2039 \N +78115 2025-06-18 15:19:07.809513+00 2025-06-18 15:19:07.809524+00 f t TOTAL 0.00 3 2039 \N +78116 2025-06-18 15:19:07.811044+00 2025-06-18 15:19:07.811052+00 f t ADELANTO 0.00 4 2039 \N +80781 2025-06-19 18:12:18.506886+00 2025-06-19 18:12:18.506896+00 f t SUBTOTAL 42000.00 1 2110 \N +80782 2025-06-19 18:12:18.508998+00 2025-06-19 18:12:18.509013+00 f t DESCUENTO 0.00 2 2110 \N +80783 2025-06-19 18:12:18.511233+00 2025-06-19 18:12:18.511246+00 f t TOTAL 42000.00 3 2110 \N +80784 2025-06-19 18:12:18.513075+00 2025-06-19 18:12:18.513084+00 f t ADELANTO 9500.00 4 2110 \N +78157 2025-06-18 15:19:32.365583+00 2025-06-18 15:19:32.365595+00 f t SUBTOTAL 64500.00 1 2038 \N +78158 2025-06-18 15:19:32.369013+00 2025-06-18 15:19:32.369023+00 f t DESCUENTO 0.00 2 2038 \N +78159 2025-06-18 15:19:32.371336+00 2025-06-18 15:19:32.371348+00 f t TOTAL 64500.00 3 2038 \N +78160 2025-06-18 15:19:32.374001+00 2025-06-18 15:19:32.374014+00 f t ADELANTO 17000.00 4 2038 \N +78165 2025-06-18 15:41:54.450195+00 2025-06-18 15:41:54.450209+00 f t SUBTOTAL 0.00 1 2040 \N +78166 2025-06-18 15:41:54.452234+00 2025-06-18 15:41:54.452246+00 f t DESCUENTO 0.00 2 2040 \N +78167 2025-06-18 15:41:54.454017+00 2025-06-18 15:41:54.454024+00 f t TOTAL 0.00 3 2040 \N +78168 2025-06-18 15:41:54.455565+00 2025-06-18 15:41:54.455571+00 f t ADELANTO 0.00 4 2040 \N +78173 2025-06-18 15:55:08.876337+00 2025-06-18 15:55:08.87635+00 f t SUBTOTAL 0.00 1 2041 \N +78174 2025-06-18 15:55:08.878729+00 2025-06-18 15:55:08.878741+00 f t DESCUENTO 0.00 2 2041 \N +78175 2025-06-18 15:55:08.880823+00 2025-06-18 15:55:08.880834+00 f t TOTAL 0.00 3 2041 \N +78176 2025-06-18 15:55:08.882552+00 2025-06-18 15:55:08.882562+00 f t ADELANTO 0.00 4 2041 \N +78181 2025-06-18 16:03:50.63971+00 2025-06-18 16:03:50.639723+00 f t SUBTOTAL 0.00 1 2042 \N +78182 2025-06-18 16:03:50.642005+00 2025-06-18 16:03:50.642013+00 f t DESCUENTO 0.00 2 2042 \N +78183 2025-06-18 16:03:50.643872+00 2025-06-18 16:03:50.643884+00 f t TOTAL 0.00 3 2042 \N +78184 2025-06-18 16:03:50.645654+00 2025-06-18 16:03:50.645663+00 f t ADELANTO 0.00 4 2042 \N +79013 2025-06-18 22:38:20.50991+00 2025-06-18 22:38:20.509924+00 f t SUBTOTAL 27500.00 1 2062 \N +79014 2025-06-18 22:38:20.51148+00 2025-06-18 22:38:20.511487+00 f t DESCUENTO 0.00 2 2062 \N +79015 2025-06-18 22:38:20.512741+00 2025-06-18 22:38:20.51275+00 f t TOTAL 27500.00 3 2062 \N +79016 2025-06-18 22:38:20.5138+00 2025-06-18 22:38:20.513805+00 f t ADELANTO 27500.00 4 2062 \N +78217 2025-06-18 16:10:26.508877+00 2025-06-18 16:10:26.508887+00 f t SUBTOTAL 0.00 1 2043 \N +78218 2025-06-18 16:10:26.512208+00 2025-06-18 16:10:26.512221+00 f t DESCUENTO 0.00 2 2043 \N +78219 2025-06-18 16:10:26.515677+00 2025-06-18 16:10:26.515686+00 f t TOTAL 0.00 3 2043 \N +78220 2025-06-18 16:10:26.517544+00 2025-06-18 16:10:26.517553+00 f t ADELANTO 0.00 4 2043 \N +79145 2025-06-18 22:55:32.359412+00 2025-06-18 22:55:32.359426+00 f t SUBTOTAL 49500.00 1 2065 \N +79146 2025-06-18 22:55:32.361135+00 2025-06-18 22:55:32.361145+00 f t DESCUENTO 0.00 2 2065 \N +79147 2025-06-18 22:55:32.362449+00 2025-06-18 22:55:32.362456+00 f t TOTAL 49500.00 3 2065 \N +79148 2025-06-18 22:55:32.36374+00 2025-06-18 22:55:32.363746+00 f t ADELANTO 11500.00 4 2065 \N +78261 2025-06-18 16:13:48.381468+00 2025-06-18 16:13:48.38148+00 f t SUBTOTAL 49500.00 1 2044 \N +78262 2025-06-18 16:13:48.383966+00 2025-06-18 16:13:48.38398+00 f t DESCUENTO 0.00 2 2044 \N +78263 2025-06-18 16:13:48.385873+00 2025-06-18 16:13:48.385884+00 f t TOTAL 49500.00 3 2044 \N +78264 2025-06-18 16:13:48.387627+00 2025-06-18 16:13:48.387638+00 f t ADELANTO 11500.00 4 2044 \N +81473 2025-06-19 23:56:49.780114+00 2025-06-19 23:56:49.780124+00 f t SUBTOTAL 0.00 1 2134 \N +81474 2025-06-19 23:56:49.781903+00 2025-06-19 23:56:49.781911+00 f t DESCUENTO 0.00 2 2134 \N +81475 2025-06-19 23:56:49.783478+00 2025-06-19 23:56:49.783488+00 f t TOTAL 0.00 3 2134 \N +81476 2025-06-19 23:56:49.784814+00 2025-06-19 23:56:49.784822+00 f t ADELANTO 0.00 4 2134 \N +81533 2025-06-20 00:51:22.980775+00 2025-06-20 00:51:22.980786+00 f t SUBTOTAL 0.00 1 2139 \N +79265 2025-06-18 23:51:22.192928+00 2025-06-18 23:51:22.192941+00 f t SUBTOTAL 0.00 1 2068 \N +79266 2025-06-18 23:51:22.195289+00 2025-06-18 23:51:22.195304+00 f t DESCUENTO 0.00 2 2068 \N +78297 2025-06-18 16:20:04.678112+00 2025-06-18 16:20:04.67813+00 f t SUBTOTAL 49500.00 1 2045 \N +78298 2025-06-18 16:20:04.681036+00 2025-06-18 16:20:04.681049+00 f t DESCUENTO 0.00 2 2045 \N +78299 2025-06-18 16:20:04.683472+00 2025-06-18 16:20:04.683485+00 f t TOTAL 49500.00 3 2045 \N +78300 2025-06-18 16:20:04.687227+00 2025-06-18 16:20:04.687236+00 f t ADELANTO 11500.00 4 2045 \N +79267 2025-06-18 23:51:22.197229+00 2025-06-18 23:51:22.197238+00 f t TOTAL 0.00 3 2068 \N +79268 2025-06-18 23:51:22.199245+00 2025-06-18 23:51:22.199256+00 f t ADELANTO 0.00 4 2068 \N +79277 2025-06-18 23:51:31.224758+00 2025-06-18 23:51:31.224767+00 f t SUBTOTAL 92000.00 1 2067 \N +79278 2025-06-18 23:51:31.226396+00 2025-06-18 23:51:31.226403+00 f t DESCUENTO 0.00 2 2067 \N +79279 2025-06-18 23:51:31.227562+00 2025-06-18 23:51:31.227568+00 f t TOTAL 92000.00 3 2067 \N +79280 2025-06-18 23:51:31.228621+00 2025-06-18 23:51:31.228627+00 f t ADELANTO 19500.00 4 2067 \N +81534 2025-06-20 00:51:22.982671+00 2025-06-20 00:51:22.982681+00 f t DESCUENTO 0.00 2 2139 \N +81535 2025-06-20 00:51:22.984316+00 2025-06-20 00:51:22.984326+00 f t TOTAL 0.00 3 2139 \N +81536 2025-06-20 00:51:22.986312+00 2025-06-20 00:51:22.986322+00 f t ADELANTO 0.00 4 2139 \N +81581 2025-06-20 01:07:51.812295+00 2025-06-20 01:07:51.812307+00 f t SUBTOTAL 0.00 1 2141 \N +81582 2025-06-20 01:07:51.814238+00 2025-06-20 01:07:51.81425+00 f t DESCUENTO 0.00 2 2141 \N +81583 2025-06-20 01:07:51.816035+00 2025-06-20 01:07:51.816044+00 f t TOTAL 0.00 3 2141 \N +81584 2025-06-20 01:07:51.817676+00 2025-06-20 01:07:51.817685+00 f t ADELANTO 0.00 4 2141 \N +79325 2025-06-19 00:07:54.432025+00 2025-06-19 00:07:54.432038+00 f t SUBTOTAL 42000.00 1 2070 \N +79326 2025-06-19 00:07:54.434342+00 2025-06-19 00:07:54.43435+00 f t DESCUENTO 0.00 2 2070 \N +79327 2025-06-19 00:07:54.436187+00 2025-06-19 00:07:54.436197+00 f t TOTAL 42000.00 3 2070 \N +78325 2025-06-18 16:29:32.531454+00 2025-06-18 16:29:32.531467+00 f t SUBTOTAL 50000.00 1 2046 \N +78326 2025-06-18 16:29:32.533644+00 2025-06-18 16:29:32.533652+00 f t DESCUENTO 0.00 2 2046 \N +78327 2025-06-18 16:29:32.535652+00 2025-06-18 16:29:32.535664+00 f t TOTAL 50000.00 3 2046 \N +78328 2025-06-18 16:29:32.537919+00 2025-06-18 16:29:32.537932+00 f t ADELANTO 10000.00 4 2046 \N +79328 2025-06-19 00:07:54.438398+00 2025-06-19 00:07:54.438451+00 f t ADELANTO 9500.00 4 2070 \N +88597 2025-06-23 17:33:02.917477+00 2025-06-23 17:33:02.91749+00 f t SUBTOTAL 0.00 1 2329 \N +88598 2025-06-23 17:33:02.91997+00 2025-06-23 17:33:02.919984+00 f t DESCUENTO 0.00 2 2329 \N +88599 2025-06-23 17:33:02.92226+00 2025-06-23 17:33:02.922275+00 f t TOTAL 0.00 3 2329 \N +88600 2025-06-23 17:33:02.924798+00 2025-06-23 17:33:02.924809+00 f t ADELANTO 0.00 4 2329 \N +78389 2025-06-18 17:24:02.95527+00 2025-06-18 17:24:02.955279+00 f t SUBTOTAL 111000.00 1 2047 \N +78390 2025-06-18 17:24:02.95731+00 2025-06-18 17:24:02.957318+00 f t DESCUENTO 0.00 2 2047 \N +78391 2025-06-18 17:24:02.960124+00 2025-06-18 17:24:02.960131+00 f t TOTAL 111000.00 3 2047 \N +78392 2025-06-18 17:24:02.962324+00 2025-06-18 17:24:02.962331+00 f t ADELANTO 23500.00 4 2047 \N +80549 2025-06-19 17:01:42.029269+00 2025-06-19 17:01:42.029281+00 f t SUBTOTAL 0.00 1 2102 \N +80550 2025-06-19 17:01:42.03118+00 2025-06-19 17:01:42.031192+00 f t DESCUENTO 0.00 2 2102 \N +80551 2025-06-19 17:01:42.032733+00 2025-06-19 17:01:42.032741+00 f t TOTAL 0.00 3 2102 \N +80552 2025-06-19 17:01:42.034005+00 2025-06-19 17:01:42.034012+00 f t ADELANTO 0.00 4 2102 \N +84629 2025-06-21 14:21:52.526496+00 2025-06-21 14:21:52.526507+00 f t SUBTOTAL 0.00 1 2221 \N +84630 2025-06-21 14:21:52.531825+00 2025-06-21 14:21:52.531835+00 f t DESCUENTO 0.00 2 2221 \N +80585 2025-06-19 17:06:57.35366+00 2025-06-19 17:06:57.353674+00 f t SUBTOTAL 0.00 1 2104 \N +80586 2025-06-19 17:06:57.355641+00 2025-06-19 17:06:57.355651+00 f t DESCUENTO 0.00 2 2104 \N +80587 2025-06-19 17:06:57.358176+00 2025-06-19 17:06:57.358191+00 f t TOTAL 0.00 3 2104 \N +80588 2025-06-19 17:06:57.360157+00 2025-06-19 17:06:57.360169+00 f t ADELANTO 0.00 4 2104 \N +84631 2025-06-21 14:21:52.53346+00 2025-06-21 14:21:52.533466+00 f t TOTAL 0.00 3 2221 \N +82649 2025-06-20 15:51:29.915181+00 2025-06-20 15:51:29.915194+00 f t SUBTOTAL 0.00 1 2167 \N +82650 2025-06-20 15:51:29.916812+00 2025-06-20 15:51:29.916819+00 f t DESCUENTO 0.00 2 2167 \N +82651 2025-06-20 15:51:29.917984+00 2025-06-20 15:51:29.917991+00 f t TOTAL 0.00 3 2167 \N +82652 2025-06-20 15:51:29.919286+00 2025-06-20 15:51:29.919293+00 f t ADELANTO 0.00 4 2167 \N +80697 2025-06-19 17:18:09.491753+00 2025-06-19 17:18:09.491763+00 f t SUBTOTAL 0.00 1 2103 \N +80698 2025-06-19 17:18:09.494119+00 2025-06-19 17:18:09.494128+00 f t DESCUENTO 0.00 2 2103 \N +80699 2025-06-19 17:18:09.495526+00 2025-06-19 17:18:09.495532+00 f t TOTAL 0.00 3 2103 \N +80700 2025-06-19 17:18:09.496881+00 2025-06-19 17:18:09.496888+00 f t ADELANTO 0.00 4 2103 \N +80789 2025-06-19 18:22:42.434993+00 2025-06-19 18:22:42.435006+00 f t SUBTOTAL 0.00 1 2111 \N +80790 2025-06-19 18:22:42.437601+00 2025-06-19 18:22:42.437613+00 f t DESCUENTO 0.00 2 2111 \N +80791 2025-06-19 18:22:42.439835+00 2025-06-19 18:22:42.439848+00 f t TOTAL 0.00 3 2111 \N +78445 2025-06-18 17:27:28.586612+00 2025-06-18 17:27:28.586625+00 f t SUBTOTAL 129500.00 1 2048 \N +78446 2025-06-18 17:27:28.589054+00 2025-06-18 17:27:28.589067+00 f t DESCUENTO 0.00 2 2048 \N +78447 2025-06-18 17:27:28.590968+00 2025-06-18 17:27:28.590979+00 f t TOTAL 129500.00 3 2048 \N +78448 2025-06-18 17:27:28.592721+00 2025-06-18 17:27:28.592731+00 f t ADELANTO 27000.00 4 2048 \N +80792 2025-06-19 18:22:42.442984+00 2025-06-19 18:22:42.442997+00 f t ADELANTO 0.00 4 2111 \N +82821 2025-06-20 17:25:31.912822+00 2025-06-20 17:25:31.912834+00 f t SUBTOTAL 50000.00 1 2170 \N +82822 2025-06-20 17:25:31.914937+00 2025-06-20 17:25:31.914948+00 f t DESCUENTO 0.00 2 2170 \N +82823 2025-06-20 17:25:31.916641+00 2025-06-20 17:25:31.916651+00 f t TOTAL 50000.00 3 2170 \N +82824 2025-06-20 17:25:31.919654+00 2025-06-20 17:25:31.919664+00 f t ADELANTO 10000.00 4 2170 \N +78473 2025-06-18 17:31:24.63798+00 2025-06-18 17:31:24.637989+00 f t SUBTOTAL 42000.00 1 2049 \N +78474 2025-06-18 17:31:24.639901+00 2025-06-18 17:31:24.639909+00 f t DESCUENTO 0.00 2 2049 \N +78475 2025-06-18 17:31:24.641529+00 2025-06-18 17:31:24.641539+00 f t TOTAL 42000.00 3 2049 \N +78476 2025-06-18 17:31:24.64337+00 2025-06-18 17:31:24.64338+00 f t ADELANTO 9500.00 4 2049 \N +79045 2025-06-18 22:43:05.496783+00 2025-06-18 22:43:05.496797+00 f t SUBTOTAL 57000.00 1 2063 \N +79046 2025-06-18 22:43:05.499023+00 2025-06-18 22:43:05.499033+00 f t DESCUENTO 0.00 2 2063 \N +79047 2025-06-18 22:43:05.501243+00 2025-06-18 22:43:05.501254+00 f t TOTAL 57000.00 3 2063 \N +79048 2025-06-18 22:43:05.503027+00 2025-06-18 22:43:05.503038+00 f t ADELANTO 12000.00 4 2063 \N +78501 2025-06-18 17:43:55.527579+00 2025-06-18 17:43:55.527587+00 f t SUBTOTAL 64500.00 1 2050 \N +78502 2025-06-18 17:43:55.529365+00 2025-06-18 17:43:55.529373+00 f t DESCUENTO 0.00 2 2050 \N +78503 2025-06-18 17:43:55.530922+00 2025-06-18 17:43:55.53093+00 f t TOTAL 64500.00 3 2050 \N +78504 2025-06-18 17:43:55.532637+00 2025-06-18 17:43:55.532644+00 f t ADELANTO 17000.00 4 2050 \N +81317 2025-06-19 23:18:29.117079+00 2025-06-19 23:18:29.117092+00 f t SUBTOTAL 73700.00 1 2129 \N +81318 2025-06-19 23:18:29.11906+00 2025-06-19 23:18:29.119072+00 f t DESCUENTO 0.00 2 2129 \N +81319 2025-06-19 23:18:29.120851+00 2025-06-19 23:18:29.120862+00 f t TOTAL 73700.00 3 2129 \N +81320 2025-06-19 23:18:29.122393+00 2025-06-19 23:18:29.122403+00 f t ADELANTO 35700.00 4 2129 \N +79221 2025-06-18 22:57:28.198207+00 2025-06-18 22:57:28.198219+00 f t SUBTOTAL 64500.00 1 2064 \N +79222 2025-06-18 22:57:28.201215+00 2025-06-18 22:57:28.201227+00 f t DESCUENTO 0.00 2 2064 \N +79223 2025-06-18 22:57:28.203459+00 2025-06-18 22:57:28.203471+00 f t TOTAL 64500.00 3 2064 \N +79224 2025-06-18 22:57:28.205542+00 2025-06-18 22:57:28.205551+00 f t ADELANTO 17000.00 4 2064 \N +81401 2025-06-19 23:29:22.775498+00 2025-06-19 23:29:22.775512+00 f t SUBTOTAL 180000.00 1 2130 \N +81402 2025-06-19 23:29:22.777463+00 2025-06-19 23:29:22.777474+00 f t DESCUENTO 0.00 2 2130 \N +81403 2025-06-19 23:29:22.779649+00 2025-06-19 23:29:22.77966+00 f t TOTAL 180000.00 3 2130 \N +81404 2025-06-19 23:29:22.781347+00 2025-06-19 23:29:22.781356+00 f t ADELANTO 39500.00 4 2130 \N +79285 2025-06-19 00:05:05.625789+00 2025-06-19 00:05:05.625804+00 f t SUBTOTAL 0.00 1 2069 \N +79286 2025-06-19 00:05:05.628421+00 2025-06-19 00:05:05.628434+00 f t DESCUENTO 0.00 2 2069 \N +79287 2025-06-19 00:05:05.630437+00 2025-06-19 00:05:05.63045+00 f t TOTAL 0.00 3 2069 \N +79288 2025-06-19 00:05:05.632614+00 2025-06-19 00:05:05.632626+00 f t ADELANTO 0.00 4 2069 \N +81501 2025-06-20 00:30:39.327996+00 2025-06-20 00:30:39.328006+00 f t SUBTOTAL 49500.00 1 2135 \N +81502 2025-06-20 00:30:39.32992+00 2025-06-20 00:30:39.32993+00 f t DESCUENTO 0.00 2 2135 \N +81503 2025-06-20 00:30:39.331413+00 2025-06-20 00:30:39.33142+00 f t TOTAL 49500.00 3 2135 \N +81504 2025-06-20 00:30:39.332622+00 2025-06-20 00:30:39.332631+00 f t ADELANTO 11500.00 4 2135 \N +79353 2025-06-19 00:38:39.010185+00 2025-06-19 00:38:39.010198+00 f t SUBTOTAL 0.00 1 2072 \N +79354 2025-06-19 00:38:39.01392+00 2025-06-19 00:38:39.013933+00 f t DESCUENTO 0.00 2 2072 \N +79355 2025-06-19 00:38:39.016025+00 2025-06-19 00:38:39.01604+00 f t TOTAL 0.00 3 2072 \N +79356 2025-06-19 00:38:39.018089+00 2025-06-19 00:38:39.018101+00 f t ADELANTO 0.00 4 2072 \N +79361 2025-06-19 00:38:45.412117+00 2025-06-19 00:38:45.412129+00 f t SUBTOTAL 49500.00 1 2071 \N +79362 2025-06-19 00:38:45.414359+00 2025-06-19 00:38:45.414371+00 f t DESCUENTO 0.00 2 2071 \N +79363 2025-06-19 00:38:45.416154+00 2025-06-19 00:38:45.416167+00 f t TOTAL 49500.00 3 2071 \N +79364 2025-06-19 00:38:45.417895+00 2025-06-19 00:38:45.417906+00 f t ADELANTO 11500.00 4 2071 \N +81589 2025-06-20 01:08:10.482624+00 2025-06-20 01:08:10.482638+00 f t SUBTOTAL 0.00 1 2142 \N +81590 2025-06-20 01:08:10.484994+00 2025-06-20 01:08:10.485008+00 f t DESCUENTO 0.00 2 2142 \N +81591 2025-06-20 01:08:10.491666+00 2025-06-20 01:08:10.491677+00 f t TOTAL 0.00 3 2142 \N +81592 2025-06-20 01:08:10.495344+00 2025-06-20 01:08:10.495358+00 f t ADELANTO 0.00 4 2142 \N +80437 2025-06-19 16:06:10.539803+00 2025-06-19 16:06:10.539816+00 f t SUBTOTAL 27500.00 1 2096 \N +80438 2025-06-19 16:06:10.542602+00 2025-06-19 16:06:10.542615+00 f t DESCUENTO 0.00 2 2096 \N +80439 2025-06-19 16:06:10.544598+00 2025-06-19 16:06:10.544611+00 f t TOTAL 27500.00 3 2096 \N +80440 2025-06-19 16:06:10.547057+00 2025-06-19 16:06:10.547069+00 f t ADELANTO 27500.00 4 2096 \N +102277 2025-06-29 15:44:35.243043+00 2025-06-29 15:44:35.243052+00 f t SUBTOTAL 0.00 1 2686 \N +79481 2025-06-19 01:00:21.015674+00 2025-06-19 01:00:21.015689+00 f t SUBTOTAL 114000.00 1 2073 \N +79482 2025-06-19 01:00:21.019866+00 2025-06-19 01:00:21.019881+00 f t DESCUENTO 0.00 2 2073 \N +79483 2025-06-19 01:00:21.022184+00 2025-06-19 01:00:21.022196+00 f t TOTAL 114000.00 3 2073 \N +79484 2025-06-19 01:00:21.024744+00 2025-06-19 01:00:21.024758+00 f t ADELANTO 27500.00 4 2073 \N +84632 2025-06-21 14:21:52.534822+00 2025-06-21 14:21:52.534828+00 f t ADELANTO 0.00 4 2221 \N +84749 2025-06-21 15:14:37.516795+00 2025-06-21 15:14:37.516804+00 f t SUBTOTAL 42000.00 1 2224 \N +84750 2025-06-21 15:14:37.51959+00 2025-06-21 15:14:37.519597+00 f t DESCUENTO 0.00 2 2224 \N +84751 2025-06-21 15:14:37.520924+00 2025-06-21 15:14:37.52093+00 f t TOTAL 42000.00 3 2224 \N +84752 2025-06-21 15:14:37.52198+00 2025-06-21 15:14:37.521986+00 f t ADELANTO 9500.00 4 2224 \N +80705 2025-06-19 17:19:35.313054+00 2025-06-19 17:19:35.313069+00 f t SUBTOTAL 0.00 1 2107 \N +79509 2025-06-19 01:07:56.48602+00 2025-06-19 01:07:56.486063+00 f t SUBTOTAL 50000.00 1 2074 \N +79510 2025-06-19 01:07:56.48842+00 2025-06-19 01:07:56.48843+00 f t DESCUENTO 0.00 2 2074 \N +79511 2025-06-19 01:07:56.490674+00 2025-06-19 01:07:56.490685+00 f t TOTAL 50000.00 3 2074 \N +79512 2025-06-19 01:07:56.492594+00 2025-06-19 01:07:56.492613+00 f t ADELANTO 10000.00 4 2074 \N +80706 2025-06-19 17:19:35.319781+00 2025-06-19 17:19:35.319796+00 f t DESCUENTO 0.00 2 2107 \N +80707 2025-06-19 17:19:35.325641+00 2025-06-19 17:19:35.325658+00 f t TOTAL 0.00 3 2107 \N +80708 2025-06-19 17:19:35.328028+00 2025-06-19 17:19:35.328043+00 f t ADELANTO 0.00 4 2107 \N +80797 2025-06-19 18:23:25.865384+00 2025-06-19 18:23:25.865398+00 f t SUBTOTAL 0.00 1 2112 \N +80798 2025-06-19 18:23:25.867016+00 2025-06-19 18:23:25.867025+00 f t DESCUENTO 0.00 2 2112 \N +80799 2025-06-19 18:23:25.868375+00 2025-06-19 18:23:25.868385+00 f t TOTAL 0.00 3 2112 \N +80800 2025-06-19 18:23:25.869636+00 2025-06-19 18:23:25.869645+00 f t ADELANTO 0.00 4 2112 \N +80857 2025-06-19 19:07:33.569151+00 2025-06-19 19:07:33.569166+00 f t SUBTOTAL 49700.00 1 2115 \N +79537 2025-06-19 01:22:05.13815+00 2025-06-19 01:22:05.138163+00 f t SUBTOTAL 95000.00 1 2075 \N +79538 2025-06-19 01:22:05.140581+00 2025-06-19 01:22:05.140596+00 f t DESCUENTO 0.00 2 2075 \N +79539 2025-06-19 01:22:05.142788+00 2025-06-19 01:22:05.142802+00 f t TOTAL 95000.00 3 2075 \N +79540 2025-06-19 01:22:05.144731+00 2025-06-19 01:22:05.144744+00 f t ADELANTO 10000.00 4 2075 \N +80858 2025-06-19 19:07:33.571452+00 2025-06-19 19:07:33.571465+00 f t DESCUENTO 0.00 2 2115 \N +80859 2025-06-19 19:07:33.573297+00 2025-06-19 19:07:33.573308+00 f t TOTAL 49700.00 3 2115 \N +80860 2025-06-19 19:07:33.574785+00 2025-06-19 19:07:33.574794+00 f t ADELANTO 11700.00 4 2115 \N +80913 2025-06-19 20:04:55.450773+00 2025-06-19 20:04:55.450786+00 f t SUBTOTAL 0.00 1 2117 \N +80914 2025-06-19 20:04:55.455482+00 2025-06-19 20:04:55.455497+00 f t DESCUENTO 0.00 2 2117 \N +80915 2025-06-19 20:04:55.457872+00 2025-06-19 20:04:55.457886+00 f t TOTAL 0.00 3 2117 \N +80916 2025-06-19 20:04:55.459831+00 2025-06-19 20:04:55.45984+00 f t ADELANTO 0.00 4 2117 \N +81045 2025-06-19 20:51:12.121849+00 2025-06-19 20:51:12.121867+00 f t SUBTOTAL 49500.00 1 2120 \N +81046 2025-06-19 20:51:12.125134+00 2025-06-19 20:51:12.125148+00 f t DESCUENTO 0.00 2 2120 \N +81047 2025-06-19 20:51:12.12727+00 2025-06-19 20:51:12.127283+00 f t TOTAL 49500.00 3 2120 \N +81048 2025-06-19 20:51:12.129457+00 2025-06-19 20:51:12.129469+00 f t ADELANTO 11500.00 4 2120 \N +81073 2025-06-19 21:12:20.83278+00 2025-06-19 21:12:20.832794+00 f t SUBTOTAL 88000.00 1 2121 \N +79573 2025-06-19 01:23:30.022724+00 2025-06-19 01:23:30.022739+00 f t SUBTOTAL 94700.00 1 2076 \N +79574 2025-06-19 01:23:30.025729+00 2025-06-19 01:23:30.025744+00 f t DESCUENTO 0.00 2 2076 \N +79575 2025-06-19 01:23:30.028288+00 2025-06-19 01:23:30.028302+00 f t TOTAL 94700.00 3 2076 \N +79576 2025-06-19 01:23:30.030485+00 2025-06-19 01:23:30.030499+00 f t ADELANTO 56700.00 4 2076 \N +81074 2025-06-19 21:12:20.835318+00 2025-06-19 21:12:20.83533+00 f t DESCUENTO 0.00 2 2121 \N +81075 2025-06-19 21:12:20.83717+00 2025-06-19 21:12:20.837182+00 f t TOTAL 88000.00 3 2121 \N +81076 2025-06-19 21:12:20.838833+00 2025-06-19 21:12:20.838845+00 f t ADELANTO 19000.00 4 2121 \N +81101 2025-06-19 21:28:50.154144+00 2025-06-19 21:28:50.154157+00 f t SUBTOTAL 49500.00 1 2122 \N +81102 2025-06-19 21:28:50.156137+00 2025-06-19 21:28:50.156148+00 f t DESCUENTO 0.00 2 2122 \N +81103 2025-06-19 21:28:50.157638+00 2025-06-19 21:28:50.157646+00 f t TOTAL 49500.00 3 2122 \N +81104 2025-06-19 21:28:50.15896+00 2025-06-19 21:28:50.158968+00 f t ADELANTO 11500.00 4 2122 \N +81185 2025-06-19 22:35:01.182435+00 2025-06-19 22:35:01.18245+00 f t SUBTOTAL 95000.00 1 2125 \N +79593 2025-06-19 01:23:53.782879+00 2025-06-19 01:23:53.782892+00 f t SUBTOTAL 42000.00 1 2077 \N +79594 2025-06-19 01:23:53.785057+00 2025-06-19 01:23:53.785068+00 f t DESCUENTO 0.00 2 2077 \N +79595 2025-06-19 01:23:53.787258+00 2025-06-19 01:23:53.787272+00 f t TOTAL 42000.00 3 2077 \N +79596 2025-06-19 01:23:53.791035+00 2025-06-19 01:23:53.791049+00 f t ADELANTO 9500.00 4 2077 \N +81186 2025-06-19 22:35:01.185572+00 2025-06-19 22:35:01.185585+00 f t DESCUENTO 0.00 2 2125 \N +81187 2025-06-19 22:35:01.18808+00 2025-06-19 22:35:01.188095+00 f t TOTAL 95000.00 3 2125 \N +81188 2025-06-19 22:35:01.190214+00 2025-06-19 22:35:01.190228+00 f t ADELANTO 10000.00 4 2125 \N +79601 2025-06-19 01:25:26.440017+00 2025-06-19 01:25:26.440031+00 f t SUBTOTAL 0.00 1 2078 \N +79602 2025-06-19 01:25:26.442109+00 2025-06-19 01:25:26.442123+00 f t DESCUENTO 0.00 2 2078 \N +79603 2025-06-19 01:25:26.44473+00 2025-06-19 01:25:26.44475+00 f t TOTAL 0.00 3 2078 \N +79604 2025-06-19 01:25:26.446371+00 2025-06-19 01:25:26.446383+00 f t ADELANTO 0.00 4 2078 \N +79609 2025-06-19 01:28:01.099094+00 2025-06-19 01:28:01.099104+00 f t SUBTOTAL 0.00 1 2079 \N +79610 2025-06-19 01:28:01.100703+00 2025-06-19 01:28:01.100712+00 f t DESCUENTO 0.00 2 2079 \N +79611 2025-06-19 01:28:01.102471+00 2025-06-19 01:28:01.102482+00 f t TOTAL 0.00 3 2079 \N +79612 2025-06-19 01:28:01.104422+00 2025-06-19 01:28:01.104432+00 f t ADELANTO 0.00 4 2079 \N +79617 2025-06-19 01:31:31.283519+00 2025-06-19 01:31:31.283533+00 f t SUBTOTAL 0.00 1 2080 \N +79618 2025-06-19 01:31:31.285307+00 2025-06-19 01:31:31.285319+00 f t DESCUENTO 0.00 2 2080 \N +79619 2025-06-19 01:31:31.286797+00 2025-06-19 01:31:31.286807+00 f t TOTAL 0.00 3 2080 \N +79620 2025-06-19 01:31:31.28878+00 2025-06-19 01:31:31.28879+00 f t ADELANTO 0.00 4 2080 \N +79649 2025-06-19 01:52:12.527555+00 2025-06-19 01:52:12.527567+00 f t SUBTOTAL 95000.00 1 2081 \N +79650 2025-06-19 01:52:12.529438+00 2025-06-19 01:52:12.529448+00 f t DESCUENTO 0.00 2 2081 \N +79651 2025-06-19 01:52:12.530805+00 2025-06-19 01:52:12.530814+00 f t TOTAL 95000.00 3 2081 \N +79652 2025-06-19 01:52:12.53252+00 2025-06-19 01:52:12.53253+00 f t ADELANTO 10000.00 4 2081 \N +79753 2025-06-19 02:42:52.72683+00 2025-06-19 02:42:52.726845+00 f t SUBTOTAL 64500.00 1 2082 \N +79754 2025-06-19 02:42:52.730117+00 2025-06-19 02:42:52.730132+00 f t DESCUENTO 0.00 2 2082 \N +79755 2025-06-19 02:42:52.733272+00 2025-06-19 02:42:52.733285+00 f t TOTAL 64500.00 3 2082 \N +79756 2025-06-19 02:42:52.735602+00 2025-06-19 02:42:52.735615+00 f t ADELANTO 17000.00 4 2082 \N +86502 2025-06-22 08:49:21.302957+00 2025-06-22 08:49:21.302965+00 f t DESCUENTO 0.00 2 2268 \N +80445 2025-06-19 16:15:23.600827+00 2025-06-19 16:15:23.600838+00 f t SUBTOTAL 0.00 1 2097 \N +80446 2025-06-19 16:15:23.604629+00 2025-06-19 16:15:23.604643+00 f t DESCUENTO 0.00 2 2097 \N +80447 2025-06-19 16:15:23.607579+00 2025-06-19 16:15:23.607593+00 f t TOTAL 0.00 3 2097 \N +80448 2025-06-19 16:15:23.609524+00 2025-06-19 16:15:23.609537+00 f t ADELANTO 0.00 4 2097 \N +86503 2025-06-22 08:49:21.304244+00 2025-06-22 08:49:21.30425+00 f t TOTAL 64500.00 3 2268 \N +86504 2025-06-22 08:49:21.305275+00 2025-06-22 08:49:21.30528+00 f t ADELANTO 17000.00 4 2268 \N +82589 2025-06-20 15:23:51.899514+00 2025-06-20 15:23:51.899524+00 f t SUBTOTAL 27500.00 1 2165 \N +82590 2025-06-20 15:23:51.901196+00 2025-06-20 15:23:51.901203+00 f t DESCUENTO 0.00 2 2165 \N +82591 2025-06-20 15:23:51.902381+00 2025-06-20 15:23:51.902419+00 f t TOTAL 27500.00 3 2165 \N +82592 2025-06-20 15:23:51.903524+00 2025-06-20 15:23:51.90353+00 f t ADELANTO 27500.00 4 2165 \N +79781 2025-06-19 02:56:20.037871+00 2025-06-19 02:56:20.037883+00 f t SUBTOTAL 95000.00 1 2083 \N +79782 2025-06-19 02:56:20.046916+00 2025-06-19 02:56:20.046931+00 f t DESCUENTO 0.00 2 2083 \N +79783 2025-06-19 02:56:20.049563+00 2025-06-19 02:56:20.049579+00 f t TOTAL 95000.00 3 2083 \N +79784 2025-06-19 02:56:20.052375+00 2025-06-19 02:56:20.052389+00 f t ADELANTO 10000.00 4 2083 \N +82657 2025-06-20 16:27:39.560321+00 2025-06-20 16:27:39.560331+00 f t SUBTOTAL 0.00 1 2168 \N +82658 2025-06-20 16:27:39.561861+00 2025-06-20 16:27:39.561868+00 f t DESCUENTO 0.00 2 2168 \N +82659 2025-06-20 16:27:39.563299+00 2025-06-20 16:27:39.563307+00 f t TOTAL 0.00 3 2168 \N +80713 2025-06-19 17:29:42.194121+00 2025-06-19 17:29:42.194153+00 f t SUBTOTAL 0.00 1 2108 \N +80714 2025-06-19 17:29:42.196483+00 2025-06-19 17:29:42.196497+00 f t DESCUENTO 0.00 2 2108 \N +80715 2025-06-19 17:29:42.198605+00 2025-06-19 17:29:42.198617+00 f t TOTAL 0.00 3 2108 \N +80716 2025-06-19 17:29:42.20041+00 2025-06-19 17:29:42.200421+00 f t ADELANTO 0.00 4 2108 \N +80741 2025-06-19 17:46:43.583287+00 2025-06-19 17:46:43.583302+00 f t SUBTOTAL 111000.00 1 2109 \N +80742 2025-06-19 17:46:43.585883+00 2025-06-19 17:46:43.585896+00 f t DESCUENTO 0.00 2 2109 \N +80743 2025-06-19 17:46:43.587864+00 2025-06-19 17:46:43.587876+00 f t TOTAL 111000.00 3 2109 \N +80744 2025-06-19 17:46:43.589869+00 2025-06-19 17:46:43.589884+00 f t ADELANTO 23500.00 4 2109 \N +79809 2025-06-19 03:32:57.225325+00 2025-06-19 03:32:57.225342+00 f t SUBTOTAL 42000.00 1 2084 \N +79810 2025-06-19 03:32:57.228333+00 2025-06-19 03:32:57.228344+00 f t DESCUENTO 0.00 2 2084 \N +79811 2025-06-19 03:32:57.230601+00 2025-06-19 03:32:57.230613+00 f t TOTAL 42000.00 3 2084 \N +79812 2025-06-19 03:32:57.232663+00 2025-06-19 03:32:57.232674+00 f t ADELANTO 9500.00 4 2084 \N +80805 2025-06-19 18:24:24.659013+00 2025-06-19 18:24:24.659027+00 f t SUBTOTAL 0.00 1 2113 \N +80806 2025-06-19 18:24:24.660725+00 2025-06-19 18:24:24.660735+00 f t DESCUENTO 0.00 2 2113 \N +80807 2025-06-19 18:24:24.662243+00 2025-06-19 18:24:24.662253+00 f t TOTAL 0.00 3 2113 \N +80808 2025-06-19 18:24:24.663608+00 2025-06-19 18:24:24.663618+00 f t ADELANTO 0.00 4 2113 \N +80865 2025-06-19 19:14:32.269696+00 2025-06-19 19:14:32.269711+00 f t SUBTOTAL 0.00 1 2116 \N +80866 2025-06-19 19:14:32.272003+00 2025-06-19 19:14:32.272016+00 f t DESCUENTO 0.00 2 2116 \N +80867 2025-06-19 19:14:32.274338+00 2025-06-19 19:14:32.274351+00 f t TOTAL 0.00 3 2116 \N +80868 2025-06-19 19:14:32.276691+00 2025-06-19 19:14:32.276707+00 f t ADELANTO 0.00 4 2116 \N +79841 2025-06-19 03:34:33.38863+00 2025-06-19 03:34:33.388642+00 f t SUBTOTAL 49500.00 1 2085 \N +79842 2025-06-19 03:34:33.392219+00 2025-06-19 03:34:33.392233+00 f t DESCUENTO 0.00 2 2085 \N +79843 2025-06-19 03:34:33.395689+00 2025-06-19 03:34:33.395738+00 f t TOTAL 49500.00 3 2085 \N +79844 2025-06-19 03:34:33.398195+00 2025-06-19 03:34:33.398206+00 f t ADELANTO 11500.00 4 2085 \N +79849 2025-06-19 04:19:14.379348+00 2025-06-19 04:19:14.379361+00 f t SUBTOTAL 0.00 1 2086 \N +79850 2025-06-19 04:19:14.38379+00 2025-06-19 04:19:14.383804+00 f t DESCUENTO 0.00 2 2086 \N +79851 2025-06-19 04:19:14.386254+00 2025-06-19 04:19:14.386273+00 f t TOTAL 0.00 3 2086 \N +79852 2025-06-19 04:19:14.388816+00 2025-06-19 04:19:14.388828+00 f t ADELANTO 0.00 4 2086 \N +81193 2025-06-19 22:47:51.353708+00 2025-06-19 22:47:51.353722+00 f t SUBTOTAL 0.00 1 2126 \N +81194 2025-06-19 22:47:51.355778+00 2025-06-19 22:47:51.355787+00 f t DESCUENTO 0.00 2 2126 \N +81195 2025-06-19 22:47:51.357344+00 2025-06-19 22:47:51.357352+00 f t TOTAL 0.00 3 2126 \N +81196 2025-06-19 22:47:51.358763+00 2025-06-19 22:47:51.35877+00 f t ADELANTO 0.00 4 2126 \N +81273 2025-06-19 23:09:08.861069+00 2025-06-19 23:09:08.86108+00 f t SUBTOTAL 102700.00 1 2128 \N +81274 2025-06-19 23:09:08.863064+00 2025-06-19 23:09:08.863075+00 f t DESCUENTO 0.00 2 2128 \N +81275 2025-06-19 23:09:08.864904+00 2025-06-19 23:09:08.864915+00 f t TOTAL 102700.00 3 2128 \N +81276 2025-06-19 23:09:08.866639+00 2025-06-19 23:09:08.86665+00 f t ADELANTO 64700.00 4 2128 \N +81409 2025-06-19 23:45:45.273628+00 2025-06-19 23:45:45.273639+00 f t SUBTOTAL 0.00 1 2131 \N +81410 2025-06-19 23:45:45.275495+00 2025-06-19 23:45:45.275504+00 f t DESCUENTO 0.00 2 2131 \N +81411 2025-06-19 23:45:45.277841+00 2025-06-19 23:45:45.277855+00 f t TOTAL 0.00 3 2131 \N +81412 2025-06-19 23:45:45.279801+00 2025-06-19 23:45:45.27981+00 f t ADELANTO 0.00 4 2131 \N +81509 2025-06-20 00:45:40.017126+00 2025-06-20 00:45:40.017136+00 f t SUBTOTAL 0.00 1 2136 \N +81510 2025-06-20 00:45:40.019007+00 2025-06-20 00:45:40.019016+00 f t DESCUENTO 0.00 2 2136 \N +81511 2025-06-20 00:45:40.020881+00 2025-06-20 00:45:40.020889+00 f t TOTAL 0.00 3 2136 \N +81512 2025-06-20 00:45:40.022626+00 2025-06-20 00:45:40.022633+00 f t ADELANTO 0.00 4 2136 \N +79977 2025-06-19 05:37:35.175932+00 2025-06-19 05:37:35.175944+00 f t SUBTOTAL 49700.00 1 2087 \N +79978 2025-06-19 05:37:35.178383+00 2025-06-19 05:37:35.178397+00 f t DESCUENTO 0.00 2 2087 \N +79979 2025-06-19 05:37:35.180545+00 2025-06-19 05:37:35.180558+00 f t TOTAL 49700.00 3 2087 \N +79980 2025-06-19 05:37:35.182526+00 2025-06-19 05:37:35.182537+00 f t ADELANTO 11700.00 4 2087 \N +81597 2025-06-20 01:08:33.095117+00 2025-06-20 01:08:33.095157+00 f t SUBTOTAL 0.00 1 2143 \N +81598 2025-06-20 01:08:33.096936+00 2025-06-20 01:08:33.096946+00 f t DESCUENTO 0.00 2 2143 \N +81599 2025-06-20 01:08:33.098374+00 2025-06-20 01:08:33.098383+00 f t TOTAL 0.00 3 2143 \N +81600 2025-06-20 01:08:33.099606+00 2025-06-20 01:08:33.099613+00 f t ADELANTO 0.00 4 2143 \N +81641 2025-06-20 01:15:49.315712+00 2025-06-20 01:15:49.315725+00 f t SUBTOTAL 42000.00 1 2146 \N +81642 2025-06-20 01:15:49.317892+00 2025-06-20 01:15:49.317905+00 f t DESCUENTO 0.00 2 2146 \N +81643 2025-06-20 01:15:49.31958+00 2025-06-20 01:15:49.319588+00 f t TOTAL 42000.00 3 2146 \N +81644 2025-06-20 01:15:49.320913+00 2025-06-20 01:15:49.320921+00 f t ADELANTO 9500.00 4 2146 \N +80029 2025-06-19 10:02:10.334154+00 2025-06-19 10:02:10.334167+00 f t SUBTOTAL 105200.00 1 2088 \N +80030 2025-06-19 10:02:10.336929+00 2025-06-19 10:02:10.336943+00 f t DESCUENTO 0.00 2 2088 \N +80031 2025-06-19 10:02:10.339658+00 2025-06-19 10:02:10.339672+00 f t TOTAL 105200.00 3 2088 \N +80032 2025-06-19 10:02:10.341927+00 2025-06-19 10:02:10.341937+00 f t ADELANTO 52200.00 4 2088 \N +102278 2025-06-29 15:44:35.24475+00 2025-06-29 15:44:35.244759+00 f t DESCUENTO 0.00 2 2686 \N +102279 2025-06-29 15:44:35.246377+00 2025-06-29 15:44:35.246387+00 f t TOTAL 0.00 3 2686 \N +102280 2025-06-29 15:44:35.248762+00 2025-06-29 15:44:35.248769+00 f t ADELANTO 0.00 4 2686 \N +80453 2025-06-19 16:42:47.832344+00 2025-06-19 16:42:47.832355+00 f t SUBTOTAL 0.00 1 2098 \N +80454 2025-06-19 16:42:47.834648+00 2025-06-19 16:42:47.834662+00 f t DESCUENTO 0.00 2 2098 \N +80455 2025-06-19 16:42:47.836692+00 2025-06-19 16:42:47.836702+00 f t TOTAL 0.00 3 2098 \N +80456 2025-06-19 16:42:47.838883+00 2025-06-19 16:42:47.838895+00 f t ADELANTO 0.00 4 2098 \N +80529 2025-06-19 16:55:59.778656+00 2025-06-19 16:55:59.778667+00 f t SUBTOTAL 70000.00 1 2101 \N +80530 2025-06-19 16:55:59.780407+00 2025-06-19 16:55:59.780417+00 f t DESCUENTO 0.00 2 2101 \N +80531 2025-06-19 16:55:59.781921+00 2025-06-19 16:55:59.78193+00 f t TOTAL 70000.00 3 2101 \N +80532 2025-06-19 16:55:59.78343+00 2025-06-19 16:55:59.783441+00 f t ADELANTO 15000.00 4 2101 \N +82660 2025-06-20 16:27:39.564578+00 2025-06-20 16:27:39.564584+00 f t ADELANTO 0.00 4 2168 \N +80813 2025-06-19 18:28:32.211585+00 2025-06-19 18:28:32.2116+00 f t SUBTOTAL 0.00 1 2114 \N +80814 2025-06-19 18:28:32.21335+00 2025-06-19 18:28:32.21336+00 f t DESCUENTO 0.00 2 2114 \N +80815 2025-06-19 18:28:32.214704+00 2025-06-19 18:28:32.214711+00 f t TOTAL 0.00 3 2114 \N +80816 2025-06-19 18:28:32.215927+00 2025-06-19 18:28:32.215934+00 f t ADELANTO 0.00 4 2114 \N +84853 2025-06-21 16:16:10.197146+00 2025-06-21 16:16:10.197157+00 f t SUBTOTAL 0.00 1 2227 \N +84854 2025-06-21 16:16:10.198545+00 2025-06-21 16:16:10.198555+00 f t DESCUENTO 0.00 2 2227 \N +84855 2025-06-21 16:16:10.199784+00 2025-06-21 16:16:10.199791+00 f t TOTAL 0.00 3 2227 \N +84856 2025-06-21 16:16:10.200955+00 2025-06-21 16:16:10.200963+00 f t ADELANTO 0.00 4 2227 \N +82829 2025-06-20 17:36:06.714985+00 2025-06-20 17:36:06.714997+00 f t SUBTOTAL 0.00 1 2171 \N +82830 2025-06-20 17:36:06.71705+00 2025-06-20 17:36:06.717064+00 f t DESCUENTO 0.00 2 2171 \N +80121 2025-06-19 10:42:20.267763+00 2025-06-19 10:42:20.267782+00 f t SUBTOTAL 129500.00 1 2089 \N +80122 2025-06-19 10:42:20.270253+00 2025-06-19 10:42:20.270263+00 f t DESCUENTO 0.00 2 2089 \N +80123 2025-06-19 10:42:20.272211+00 2025-06-19 10:42:20.272224+00 f t TOTAL 129500.00 3 2089 \N +80124 2025-06-19 10:42:20.274299+00 2025-06-19 10:42:20.27431+00 f t ADELANTO 27000.00 4 2089 \N +82831 2025-06-20 17:36:06.718967+00 2025-06-20 17:36:06.718975+00 f t TOTAL 0.00 3 2171 \N +82832 2025-06-20 17:36:06.720418+00 2025-06-20 17:36:06.720427+00 f t ADELANTO 0.00 4 2171 \N +84917 2025-06-21 17:34:21.96608+00 2025-06-21 17:34:21.966091+00 f t SUBTOTAL 42000.00 1 2229 \N +84918 2025-06-21 17:34:21.975592+00 2025-06-21 17:34:21.975605+00 f t DESCUENTO 0.00 2 2229 \N +84919 2025-06-21 17:34:21.977448+00 2025-06-21 17:34:21.977455+00 f t TOTAL 42000.00 3 2229 \N +84920 2025-06-21 17:34:21.979025+00 2025-06-21 17:34:21.979034+00 f t ADELANTO 9500.00 4 2229 \N +80973 2025-06-19 20:09:16.313585+00 2025-06-19 20:09:16.313596+00 f t SUBTOTAL 42000.00 1 2118 \N +80974 2025-06-19 20:09:16.315525+00 2025-06-19 20:09:16.315537+00 f t DESCUENTO 0.00 2 2118 \N +80975 2025-06-19 20:09:16.317143+00 2025-06-19 20:09:16.317153+00 f t TOTAL 42000.00 3 2118 \N +80976 2025-06-19 20:09:16.31869+00 2025-06-19 20:09:16.318697+00 f t ADELANTO 9500.00 4 2118 \N +82941 2025-06-20 18:08:04.957265+00 2025-06-20 18:08:04.957278+00 f t SUBTOTAL 0.00 1 2174 \N +82942 2025-06-20 18:08:04.9599+00 2025-06-20 18:08:04.959914+00 f t DESCUENTO 0.00 2 2174 \N +82943 2025-06-20 18:08:04.962407+00 2025-06-20 18:08:04.962422+00 f t TOTAL 0.00 3 2174 \N +82944 2025-06-20 18:08:04.965291+00 2025-06-20 18:08:04.965305+00 f t ADELANTO 0.00 4 2174 \N +80157 2025-06-19 10:59:20.885311+00 2025-06-19 10:59:20.885323+00 f t SUBTOTAL 50000.00 1 2090 \N +80158 2025-06-19 10:59:20.887543+00 2025-06-19 10:59:20.887553+00 f t DESCUENTO 0.00 2 2090 \N +80159 2025-06-19 10:59:20.889275+00 2025-06-19 10:59:20.889283+00 f t TOTAL 50000.00 3 2090 \N +80160 2025-06-19 10:59:20.890955+00 2025-06-19 10:59:20.890967+00 f t ADELANTO 10000.00 4 2090 \N +81113 2025-06-19 21:30:22.821409+00 2025-06-19 21:30:22.821421+00 f t SUBTOTAL 0.00 1 2123 \N +81114 2025-06-19 21:30:22.823225+00 2025-06-19 21:30:22.823233+00 f t DESCUENTO 0.00 2 2123 \N +81115 2025-06-19 21:30:22.82455+00 2025-06-19 21:30:22.824557+00 f t TOTAL 0.00 3 2123 \N +80165 2025-06-19 11:00:20.762332+00 2025-06-19 11:00:20.762346+00 f t SUBTOTAL 0.00 1 2091 \N +80166 2025-06-19 11:00:20.764536+00 2025-06-19 11:00:20.764549+00 f t DESCUENTO 0.00 2 2091 \N +80167 2025-06-19 11:00:20.766694+00 2025-06-19 11:00:20.766706+00 f t TOTAL 0.00 3 2091 \N +80168 2025-06-19 11:00:20.768624+00 2025-06-19 11:00:20.768735+00 f t ADELANTO 0.00 4 2091 \N +81116 2025-06-19 21:30:22.825667+00 2025-06-19 21:30:22.825674+00 f t ADELANTO 0.00 4 2123 \N +81141 2025-06-19 22:18:20.129347+00 2025-06-19 22:18:20.129361+00 f t SUBTOTAL 49500.00 1 2124 \N +81142 2025-06-19 22:18:20.132487+00 2025-06-19 22:18:20.1325+00 f t DESCUENTO 0.00 2 2124 \N +81143 2025-06-19 22:18:20.134778+00 2025-06-19 22:18:20.13479+00 f t TOTAL 49500.00 3 2124 \N +81144 2025-06-19 22:18:20.136859+00 2025-06-19 22:18:20.136871+00 f t ADELANTO 11500.00 4 2124 \N +81457 2025-06-19 23:48:28.898613+00 2025-06-19 23:48:28.898627+00 f t SUBTOTAL 62000.00 1 2132 \N +81458 2025-06-19 23:48:28.901191+00 2025-06-19 23:48:28.9012+00 f t DESCUENTO 0.00 2 2132 \N +81459 2025-06-19 23:48:28.902657+00 2025-06-19 23:48:28.902667+00 f t TOTAL 62000.00 3 2132 \N +81460 2025-06-19 23:48:28.904991+00 2025-06-19 23:48:28.905002+00 f t ADELANTO 12000.00 4 2132 \N +81517 2025-06-20 00:47:52.175099+00 2025-06-20 00:47:52.175112+00 f t SUBTOTAL 0.00 1 2137 \N +81518 2025-06-20 00:47:52.177338+00 2025-06-20 00:47:52.177349+00 f t DESCUENTO 0.00 2 2137 \N +81519 2025-06-20 00:47:52.179715+00 2025-06-20 00:47:52.179728+00 f t TOTAL 0.00 3 2137 \N +81520 2025-06-20 00:47:52.181862+00 2025-06-20 00:47:52.181871+00 f t ADELANTO 0.00 4 2137 \N +81605 2025-06-20 01:10:12.173433+00 2025-06-20 01:10:12.173449+00 f t SUBTOTAL 0.00 1 2144 \N +81606 2025-06-20 01:10:12.176113+00 2025-06-20 01:10:12.176129+00 f t DESCUENTO 0.00 2 2144 \N +81607 2025-06-20 01:10:12.179507+00 2025-06-20 01:10:12.179519+00 f t TOTAL 0.00 3 2144 \N +81608 2025-06-20 01:10:12.184394+00 2025-06-20 01:10:12.184407+00 f t ADELANTO 0.00 4 2144 \N +80277 2025-06-19 12:29:27.44696+00 2025-06-19 12:29:27.446973+00 f t SUBTOTAL 42000.00 1 2092 \N +80278 2025-06-19 12:29:27.449373+00 2025-06-19 12:29:27.449387+00 f t DESCUENTO 0.00 2 2092 \N +80279 2025-06-19 12:29:27.451391+00 2025-06-19 12:29:27.451403+00 f t TOTAL 42000.00 3 2092 \N +80280 2025-06-19 12:29:27.453355+00 2025-06-19 12:29:27.453366+00 f t ADELANTO 9500.00 4 2092 \N +83437 2025-06-20 20:10:19.512214+00 2025-06-20 20:10:19.512225+00 f t SUBTOTAL 111000.00 1 2186 \N +80321 2025-06-19 13:15:30.781575+00 2025-06-19 13:15:30.781588+00 f t SUBTOTAL 72000.00 1 2093 \N +80322 2025-06-19 13:15:30.783976+00 2025-06-19 13:15:30.78399+00 f t DESCUENTO 0.00 2 2093 \N +80323 2025-06-19 13:15:30.785942+00 2025-06-19 13:15:30.785976+00 f t TOTAL 72000.00 3 2093 \N +80324 2025-06-19 13:15:30.787512+00 2025-06-19 13:15:30.787523+00 f t ADELANTO 19000.00 4 2093 \N +83438 2025-06-20 20:10:19.514005+00 2025-06-20 20:10:19.514013+00 f t DESCUENTO 0.00 2 2186 \N +83439 2025-06-20 20:10:19.51538+00 2025-06-20 20:10:19.515387+00 f t TOTAL 111000.00 3 2186 \N +83440 2025-06-20 20:10:19.516818+00 2025-06-20 20:10:19.516828+00 f t ADELANTO 23500.00 4 2186 \N +95209 2025-06-26 11:21:40.896029+00 2025-06-26 11:21:40.896039+00 f t SUBTOTAL 50000.00 1 2508 \N +90693 2025-06-24 02:12:42.420775+00 2025-06-24 02:12:42.420787+00 f t SUBTOTAL 61000.00 1 2361 \N +90694 2025-06-24 02:12:42.423803+00 2025-06-24 02:12:42.423816+00 f t DESCUENTO 0.00 2 2361 \N +90695 2025-06-24 02:12:42.426441+00 2025-06-24 02:12:42.426456+00 f t TOTAL 61000.00 3 2361 \N +90696 2025-06-24 02:12:42.429335+00 2025-06-24 02:12:42.429346+00 f t ADELANTO 11000.00 4 2361 \N +80349 2025-06-19 13:20:52.906272+00 2025-06-19 13:20:52.906285+00 f t SUBTOTAL 64500.00 1 2094 \N +80350 2025-06-19 13:20:52.908378+00 2025-06-19 13:20:52.908389+00 f t DESCUENTO 0.00 2 2094 \N +80351 2025-06-19 13:20:52.910043+00 2025-06-19 13:20:52.910054+00 f t TOTAL 64500.00 3 2094 \N +80352 2025-06-19 13:20:52.911722+00 2025-06-19 13:20:52.911733+00 f t ADELANTO 17000.00 4 2094 \N +84677 2025-06-21 14:42:18.642345+00 2025-06-21 14:42:18.642359+00 f t SUBTOTAL 0.00 1 2222 \N +84678 2025-06-21 14:42:18.644957+00 2025-06-21 14:42:18.644966+00 f t DESCUENTO 0.00 2 2222 \N +84679 2025-06-21 14:42:18.646412+00 2025-06-21 14:42:18.646423+00 f t TOTAL 0.00 3 2222 \N +84680 2025-06-21 14:42:18.648288+00 2025-06-21 14:42:18.648298+00 f t ADELANTO 0.00 4 2222 \N +80661 2025-06-19 17:13:22.953068+00 2025-06-19 17:13:22.953083+00 f t SUBTOTAL 84000.00 1 2105 \N +80662 2025-06-19 17:13:22.956371+00 2025-06-19 17:13:22.956386+00 f t DESCUENTO 0.00 2 2105 \N +80663 2025-06-19 17:13:22.959099+00 2025-06-19 17:13:22.959114+00 f t TOTAL 84000.00 3 2105 \N +80664 2025-06-19 17:13:22.961553+00 2025-06-19 17:13:22.961567+00 f t ADELANTO 19000.00 4 2105 \N +80689 2025-06-19 17:16:22.834283+00 2025-06-19 17:16:22.834328+00 f t SUBTOTAL 50000.00 1 2106 \N +80690 2025-06-19 17:16:22.837873+00 2025-06-19 17:16:22.837887+00 f t DESCUENTO 0.00 2 2106 \N +80691 2025-06-19 17:16:22.839898+00 2025-06-19 17:16:22.83991+00 f t TOTAL 50000.00 3 2106 \N +80692 2025-06-19 17:16:22.841747+00 2025-06-19 17:16:22.841758+00 f t ADELANTO 10000.00 4 2106 \N +82745 2025-06-20 16:36:40.957516+00 2025-06-20 16:36:40.957527+00 f t SUBTOTAL 70000.00 1 2169 \N +82746 2025-06-20 16:36:40.959436+00 2025-06-20 16:36:40.959445+00 f t DESCUENTO 0.00 2 2169 \N +82747 2025-06-20 16:36:40.961163+00 2025-06-20 16:36:40.96117+00 f t TOTAL 70000.00 3 2169 \N +82748 2025-06-20 16:36:40.962746+00 2025-06-20 16:36:40.962753+00 f t ADELANTO 10000.00 4 2169 \N +84861 2025-06-21 17:06:57.054945+00 2025-06-21 17:06:57.054954+00 f t SUBTOTAL 0.00 1 2228 \N +84862 2025-06-21 17:06:57.05635+00 2025-06-21 17:06:57.056356+00 f t DESCUENTO 0.00 2 2228 \N +84863 2025-06-21 17:06:57.057517+00 2025-06-21 17:06:57.057522+00 f t TOTAL 0.00 3 2228 \N +84864 2025-06-21 17:06:57.058879+00 2025-06-21 17:06:57.058886+00 f t ADELANTO 0.00 4 2228 \N +80981 2025-06-19 20:26:41.915674+00 2025-06-19 20:26:41.915684+00 f t SUBTOTAL 0.00 1 2119 \N +80982 2025-06-19 20:26:41.917113+00 2025-06-19 20:26:41.917122+00 f t DESCUENTO 0.00 2 2119 \N +80983 2025-06-19 20:26:41.918314+00 2025-06-19 20:26:41.918321+00 f t TOTAL 0.00 3 2119 \N +80984 2025-06-19 20:26:41.919453+00 2025-06-19 20:26:41.919462+00 f t ADELANTO 0.00 4 2119 \N +82945 2025-06-20 18:08:30.613927+00 2025-06-20 18:08:30.613936+00 f t SUBTOTAL 42000.00 1 2172 \N +82946 2025-06-20 18:08:30.615981+00 2025-06-20 18:08:30.615988+00 f t DESCUENTO 0.00 2 2172 \N +82947 2025-06-20 18:08:30.61758+00 2025-06-20 18:08:30.617589+00 f t TOTAL 42000.00 3 2172 \N +82948 2025-06-20 18:08:30.618967+00 2025-06-20 18:08:30.618973+00 f t ADELANTO 9500.00 4 2172 \N +81229 2025-06-19 22:59:32.908413+00 2025-06-19 22:59:32.908424+00 f t SUBTOTAL 0.00 1 2127 \N +81230 2025-06-19 22:59:32.910575+00 2025-06-19 22:59:32.910584+00 f t DESCUENTO 0.00 2 2127 \N +81231 2025-06-19 22:59:32.913053+00 2025-06-19 22:59:32.913062+00 f t TOTAL 0.00 3 2127 \N +81232 2025-06-19 22:59:32.91479+00 2025-06-19 22:59:32.9148+00 f t ADELANTO 0.00 4 2127 \N +83133 2025-06-20 18:40:21.304542+00 2025-06-20 18:40:21.304555+00 f t SUBTOTAL 27500.00 1 2177 \N +83134 2025-06-20 18:40:21.306736+00 2025-06-20 18:40:21.30675+00 f t DESCUENTO 0.00 2 2177 \N +83135 2025-06-20 18:40:21.308672+00 2025-06-20 18:40:21.308681+00 f t TOTAL 27500.00 3 2177 \N +83136 2025-06-20 18:40:21.310334+00 2025-06-20 18:40:21.310343+00 f t ADELANTO 27500.00 4 2177 \N +83157 2025-06-20 18:57:11.383465+00 2025-06-20 18:57:11.383476+00 f t SUBTOTAL 0.00 1 2179 \N +83158 2025-06-20 18:57:11.385087+00 2025-06-20 18:57:11.385096+00 f t DESCUENTO 0.00 2 2179 \N +83159 2025-06-20 18:57:11.386449+00 2025-06-20 18:57:11.386457+00 f t TOTAL 0.00 3 2179 \N +83160 2025-06-20 18:57:11.387564+00 2025-06-20 18:57:11.387572+00 f t ADELANTO 0.00 4 2179 \N +85369 2025-06-21 22:02:04.01508+00 2025-06-21 22:02:04.015094+00 f t SUBTOTAL 0.00 1 2245 \N +85370 2025-06-21 22:02:04.017388+00 2025-06-21 22:02:04.017401+00 f t DESCUENTO 0.00 2 2245 \N +85371 2025-06-21 22:02:04.019687+00 2025-06-21 22:02:04.019699+00 f t TOTAL 0.00 3 2245 \N +83197 2025-06-20 19:03:08.451403+00 2025-06-20 19:03:08.451415+00 f t SUBTOTAL 0.00 1 2180 \N +83198 2025-06-20 19:03:08.4538+00 2025-06-20 19:03:08.45381+00 f t DESCUENTO 0.00 2 2180 \N +83199 2025-06-20 19:03:08.455403+00 2025-06-20 19:03:08.455411+00 f t TOTAL 0.00 3 2180 \N +83200 2025-06-20 19:03:08.45666+00 2025-06-20 19:03:08.456668+00 f t ADELANTO 0.00 4 2180 \N +85372 2025-06-21 22:02:04.021703+00 2025-06-21 22:02:04.021714+00 f t ADELANTO 0.00 4 2245 \N +81465 2025-06-19 23:52:17.188377+00 2025-06-19 23:52:17.18839+00 f t SUBTOTAL 0.00 1 2133 \N +81466 2025-06-19 23:52:17.190095+00 2025-06-19 23:52:17.190105+00 f t DESCUENTO 0.00 2 2133 \N +81467 2025-06-19 23:52:17.191797+00 2025-06-19 23:52:17.191807+00 f t TOTAL 0.00 3 2133 \N +81468 2025-06-19 23:52:17.193658+00 2025-06-19 23:52:17.193669+00 f t ADELANTO 0.00 4 2133 \N +81525 2025-06-20 00:50:41.83417+00 2025-06-20 00:50:41.834181+00 f t SUBTOTAL 0.00 1 2138 \N +81526 2025-06-20 00:50:41.83595+00 2025-06-20 00:50:41.83596+00 f t DESCUENTO 0.00 2 2138 \N +81527 2025-06-20 00:50:41.837987+00 2025-06-20 00:50:41.837998+00 f t TOTAL 0.00 3 2138 \N +81528 2025-06-20 00:50:41.839346+00 2025-06-20 00:50:41.839356+00 f t ADELANTO 0.00 4 2138 \N +81573 2025-06-20 01:05:35.225132+00 2025-06-20 01:05:35.225146+00 f t SUBTOTAL 50000.00 1 2140 \N +81574 2025-06-20 01:05:35.227456+00 2025-06-20 01:05:35.227469+00 f t DESCUENTO 0.00 2 2140 \N +81575 2025-06-20 01:05:35.230469+00 2025-06-20 01:05:35.230481+00 f t TOTAL 50000.00 3 2140 \N +81576 2025-06-20 01:05:35.23277+00 2025-06-20 01:05:35.232781+00 f t ADELANTO 10000.00 4 2140 \N +81613 2025-06-20 01:12:42.348693+00 2025-06-20 01:12:42.348705+00 f t SUBTOTAL 0.00 1 2145 \N +81614 2025-06-20 01:12:42.350508+00 2025-06-20 01:12:42.350516+00 f t DESCUENTO 0.00 2 2145 \N +81615 2025-06-20 01:12:42.352501+00 2025-06-20 01:12:42.352513+00 f t TOTAL 0.00 3 2145 \N +81616 2025-06-20 01:12:42.354245+00 2025-06-20 01:12:42.354253+00 f t ADELANTO 0.00 4 2145 \N +85601 2025-06-22 00:58:07.329928+00 2025-06-22 00:58:07.32994+00 f t SUBTOTAL 27500.00 1 2255 \N +85602 2025-06-22 00:58:07.332059+00 2025-06-22 00:58:07.33207+00 f t DESCUENTO 0.00 2 2255 \N +85603 2025-06-22 00:58:07.333566+00 2025-06-22 00:58:07.333577+00 f t TOTAL 27500.00 3 2255 \N +85604 2025-06-22 00:58:07.335039+00 2025-06-22 00:58:07.335047+00 f t ADELANTO 27500.00 4 2255 \N +81861 2025-06-20 01:18:47.404708+00 2025-06-20 01:18:47.404723+00 f t SUBTOTAL 50000.00 1 2149 \N +81862 2025-06-20 01:18:47.40676+00 2025-06-20 01:18:47.40677+00 f t DESCUENTO 0.00 2 2149 \N +81863 2025-06-20 01:18:47.408437+00 2025-06-20 01:18:47.408445+00 f t TOTAL 50000.00 3 2149 \N +81864 2025-06-20 01:18:47.409878+00 2025-06-20 01:18:47.409888+00 f t ADELANTO 10000.00 4 2149 \N +95210 2025-06-26 11:21:40.8977+00 2025-06-26 11:21:40.897707+00 f t DESCUENTO 0.00 2 2508 \N +95211 2025-06-26 11:21:40.89895+00 2025-06-26 11:21:40.898956+00 f t TOTAL 50000.00 3 2508 \N +81881 2025-06-20 01:19:29.857664+00 2025-06-20 01:19:29.857674+00 f t SUBTOTAL 42000.00 1 2147 \N +81882 2025-06-20 01:19:29.859743+00 2025-06-20 01:19:29.859756+00 f t DESCUENTO 0.00 2 2147 \N +81883 2025-06-20 01:19:29.861765+00 2025-06-20 01:19:29.861778+00 f t TOTAL 42000.00 3 2147 \N +81884 2025-06-20 01:19:29.863991+00 2025-06-20 01:19:29.864003+00 f t ADELANTO 9500.00 4 2147 \N +95212 2025-06-26 11:21:40.90018+00 2025-06-26 11:21:40.900186+00 f t ADELANTO 10000.00 4 2508 \N +97545 2025-06-27 09:34:54.010668+00 2025-06-27 09:34:54.010677+00 f t SUBTOTAL 49500.00 1 2566 \N +81889 2025-06-20 01:20:10.333348+00 2025-06-20 01:20:10.333359+00 f t SUBTOTAL 64500.00 1 2148 \N +81890 2025-06-20 01:20:10.335863+00 2025-06-20 01:20:10.335876+00 f t DESCUENTO 0.00 2 2148 \N +81891 2025-06-20 01:20:10.338414+00 2025-06-20 01:20:10.33843+00 f t TOTAL 64500.00 3 2148 \N +81892 2025-06-20 01:20:10.340616+00 2025-06-20 01:20:10.340628+00 f t ADELANTO 17000.00 4 2148 \N +81937 2025-06-20 02:18:00.843336+00 2025-06-20 02:18:00.84335+00 f t SUBTOTAL 70000.00 1 2150 \N +81938 2025-06-20 02:18:00.845886+00 2025-06-20 02:18:00.845902+00 f t DESCUENTO 0.00 2 2150 \N +81939 2025-06-20 02:18:00.848111+00 2025-06-20 02:18:00.848121+00 f t TOTAL 70000.00 3 2150 \N +81940 2025-06-20 02:18:00.850783+00 2025-06-20 02:18:00.850796+00 f t ADELANTO 10000.00 4 2150 \N +81945 2025-06-20 03:08:08.245545+00 2025-06-20 03:08:08.24556+00 f t SUBTOTAL 0.00 1 2151 \N +81946 2025-06-20 03:08:08.248918+00 2025-06-20 03:08:08.248931+00 f t DESCUENTO 0.00 2 2151 \N +81947 2025-06-20 03:08:08.253171+00 2025-06-20 03:08:08.253185+00 f t TOTAL 0.00 3 2151 \N +81948 2025-06-20 03:08:08.255691+00 2025-06-20 03:08:08.255704+00 f t ADELANTO 0.00 4 2151 \N +84981 2025-06-21 18:38:39.587434+00 2025-06-21 18:38:39.587443+00 f t SUBTOTAL 62000.00 1 2231 \N +84982 2025-06-21 18:38:39.589341+00 2025-06-21 18:38:39.589349+00 f t DESCUENTO 0.00 2 2231 \N +84983 2025-06-21 18:38:39.590677+00 2025-06-21 18:38:39.590684+00 f t TOTAL 62000.00 3 2231 \N +84984 2025-06-21 18:38:39.592036+00 2025-06-21 18:38:39.592042+00 f t ADELANTO 12000.00 4 2231 \N +81981 2025-06-20 03:09:50.754052+00 2025-06-20 03:09:50.754066+00 f t SUBTOTAL 113700.00 1 2152 \N +81982 2025-06-20 03:09:50.756514+00 2025-06-20 03:09:50.756525+00 f t DESCUENTO 0.00 2 2152 \N +81983 2025-06-20 03:09:50.75843+00 2025-06-20 03:09:50.75844+00 f t TOTAL 113700.00 3 2152 \N +81984 2025-06-20 03:09:50.760867+00 2025-06-20 03:09:50.760879+00 f t ADELANTO 75700.00 4 2152 \N +85213 2025-06-21 19:51:20.900512+00 2025-06-21 19:51:20.900524+00 f t SUBTOTAL 42000.00 1 2235 \N +85214 2025-06-21 19:51:20.902063+00 2025-06-21 19:51:20.90207+00 f t DESCUENTO 0.00 2 2235 \N +85215 2025-06-21 19:51:20.903182+00 2025-06-21 19:51:20.903188+00 f t TOTAL 42000.00 3 2235 \N +85216 2025-06-21 19:51:20.904376+00 2025-06-21 19:51:20.904384+00 f t ADELANTO 9500.00 4 2235 \N +85329 2025-06-21 21:03:58.51651+00 2025-06-21 21:03:58.516521+00 f t SUBTOTAL 49500.00 1 2240 \N +85330 2025-06-21 21:03:58.51827+00 2025-06-21 21:03:58.518279+00 f t DESCUENTO 0.00 2 2240 \N +85331 2025-06-21 21:03:58.519579+00 2025-06-21 21:03:58.519586+00 f t TOTAL 49500.00 3 2240 \N +85332 2025-06-21 21:03:58.520934+00 2025-06-21 21:03:58.520983+00 f t ADELANTO 11500.00 4 2240 \N +85377 2025-06-21 22:16:46.668795+00 2025-06-21 22:16:46.668804+00 f t SUBTOTAL 0.00 1 2246 \N +85378 2025-06-21 22:16:46.67008+00 2025-06-21 22:16:46.670086+00 f t DESCUENTO 0.00 2 2246 \N +85379 2025-06-21 22:16:46.671026+00 2025-06-21 22:16:46.671031+00 f t TOTAL 0.00 3 2246 \N +85380 2025-06-21 22:16:46.671959+00 2025-06-21 22:16:46.671965+00 f t ADELANTO 0.00 4 2246 \N +82033 2025-06-20 03:12:23.922859+00 2025-06-20 03:12:23.922874+00 f t SUBTOTAL 64500.00 1 2153 \N +82034 2025-06-20 03:12:23.926248+00 2025-06-20 03:12:23.926264+00 f t DESCUENTO 0.00 2 2153 \N +82035 2025-06-20 03:12:23.928671+00 2025-06-20 03:12:23.928684+00 f t TOTAL 64500.00 3 2153 \N +82036 2025-06-20 03:12:23.930784+00 2025-06-20 03:12:23.930794+00 f t ADELANTO 17000.00 4 2153 \N +82053 2025-06-20 03:37:01.956662+00 2025-06-20 03:37:01.956677+00 f t SUBTOTAL 0.00 1 2154 \N +82054 2025-06-20 03:37:01.959734+00 2025-06-20 03:37:01.959749+00 f t DESCUENTO 0.00 2 2154 \N +82055 2025-06-20 03:37:01.962036+00 2025-06-20 03:37:01.962046+00 f t TOTAL 0.00 3 2154 \N +82056 2025-06-20 03:37:01.964778+00 2025-06-20 03:37:01.96479+00 f t ADELANTO 0.00 4 2154 \N +83217 2025-06-20 19:04:39.03974+00 2025-06-20 19:04:39.03975+00 f t SUBTOTAL 64500.00 1 2181 \N +83218 2025-06-20 19:04:39.041776+00 2025-06-20 19:04:39.041789+00 f t DESCUENTO 0.00 2 2181 \N +83219 2025-06-20 19:04:39.043254+00 2025-06-20 19:04:39.043263+00 f t TOTAL 64500.00 3 2181 \N +83220 2025-06-20 19:04:39.044692+00 2025-06-20 19:04:39.044701+00 f t ADELANTO 17000.00 4 2181 \N +83289 2025-06-20 19:25:33.617393+00 2025-06-20 19:25:33.617406+00 f t SUBTOTAL 94700.00 1 2183 \N +83290 2025-06-20 19:25:33.619357+00 2025-06-20 19:25:33.619367+00 f t DESCUENTO 0.00 2 2183 \N +83291 2025-06-20 19:25:33.620746+00 2025-06-20 19:25:33.620752+00 f t TOTAL 94700.00 3 2183 \N +83292 2025-06-20 19:25:33.622141+00 2025-06-20 19:25:33.622147+00 f t ADELANTO 56700.00 4 2183 \N +82081 2025-06-20 03:44:35.721655+00 2025-06-20 03:44:35.721666+00 f t SUBTOTAL 49500.00 1 2155 \N +82082 2025-06-20 03:44:35.723565+00 2025-06-20 03:44:35.723574+00 f t DESCUENTO 0.00 2 2155 \N +82083 2025-06-20 03:44:35.725067+00 2025-06-20 03:44:35.725076+00 f t TOTAL 49500.00 3 2155 \N +82084 2025-06-20 03:44:35.726249+00 2025-06-20 03:44:35.726257+00 f t ADELANTO 11500.00 4 2155 \N +85609 2025-06-22 01:04:58.979421+00 2025-06-22 01:04:58.97943+00 f t SUBTOTAL 0.00 1 2256 \N +85610 2025-06-22 01:04:58.981171+00 2025-06-22 01:04:58.98118+00 f t DESCUENTO 0.00 2 2256 \N +82089 2025-06-20 06:16:22.142689+00 2025-06-20 06:16:22.142703+00 f t SUBTOTAL 0.00 1 2156 \N +82090 2025-06-20 06:16:22.145288+00 2025-06-20 06:16:22.145302+00 f t DESCUENTO 0.00 2 2156 \N +82091 2025-06-20 06:16:22.147104+00 2025-06-20 06:16:22.147117+00 f t TOTAL 0.00 3 2156 \N +82092 2025-06-20 06:16:22.148991+00 2025-06-20 06:16:22.149002+00 f t ADELANTO 0.00 4 2156 \N +85611 2025-06-22 01:04:58.982845+00 2025-06-22 01:04:58.982855+00 f t TOTAL 0.00 3 2256 \N +85612 2025-06-22 01:04:58.984638+00 2025-06-22 01:04:58.984651+00 f t ADELANTO 0.00 4 2256 \N +83377 2025-06-20 19:57:37.869477+00 2025-06-20 19:57:37.869492+00 f t SUBTOTAL 42000.00 1 2185 \N +83378 2025-06-20 19:57:37.872046+00 2025-06-20 19:57:37.87206+00 f t DESCUENTO 0.00 2 2185 \N +83379 2025-06-20 19:57:37.873927+00 2025-06-20 19:57:37.873936+00 f t TOTAL 42000.00 3 2185 \N +83380 2025-06-20 19:57:37.875608+00 2025-06-20 19:57:37.875616+00 f t ADELANTO 9500.00 4 2185 \N +83465 2025-06-20 20:22:23.450512+00 2025-06-20 20:22:23.450523+00 f t SUBTOTAL 70000.00 1 2187 \N +83466 2025-06-20 20:22:23.452306+00 2025-06-20 20:22:23.452313+00 f t DESCUENTO 0.00 2 2187 \N +83467 2025-06-20 20:22:23.4536+00 2025-06-20 20:22:23.453606+00 f t TOTAL 70000.00 3 2187 \N +83468 2025-06-20 20:22:23.454906+00 2025-06-20 20:22:23.454914+00 f t ADELANTO 10000.00 4 2187 \N +83561 2025-06-20 21:27:06.974972+00 2025-06-20 21:27:06.974981+00 f t SUBTOTAL 42000.00 1 2189 \N +83562 2025-06-20 21:27:06.976454+00 2025-06-20 21:27:06.976461+00 f t DESCUENTO 0.00 2 2189 \N +83563 2025-06-20 21:27:06.977561+00 2025-06-20 21:27:06.977566+00 f t TOTAL 42000.00 3 2189 \N +83564 2025-06-20 21:27:06.97877+00 2025-06-20 21:27:06.978777+00 f t ADELANTO 9500.00 4 2189 \N +88613 2025-06-23 17:43:48.753563+00 2025-06-23 17:43:48.753572+00 f t SUBTOTAL 0.00 1 2331 \N +88614 2025-06-23 17:43:48.755301+00 2025-06-23 17:43:48.755308+00 f t DESCUENTO 0.00 2 2331 \N +88615 2025-06-23 17:43:48.756751+00 2025-06-23 17:43:48.756761+00 f t TOTAL 0.00 3 2331 \N +88616 2025-06-23 17:43:48.758196+00 2025-06-23 17:43:48.758204+00 f t ADELANTO 0.00 4 2331 \N +82513 2025-06-20 15:20:00.230153+00 2025-06-20 15:20:00.230166+00 f t SUBTOTAL 0.00 1 2164 \N +82514 2025-06-20 15:20:00.233343+00 2025-06-20 15:20:00.233353+00 f t DESCUENTO 0.00 2 2164 \N +82515 2025-06-20 15:20:00.234829+00 2025-06-20 15:20:00.234836+00 f t TOTAL 0.00 3 2164 \N +82516 2025-06-20 15:20:00.23608+00 2025-06-20 15:20:00.236086+00 f t ADELANTO 0.00 4 2164 \N +82885 2025-06-20 18:04:20.46463+00 2025-06-20 18:04:20.464645+00 f t SUBTOTAL 0.00 1 2173 \N +82886 2025-06-20 18:04:20.466702+00 2025-06-20 18:04:20.466714+00 f t DESCUENTO 0.00 2 2173 \N +82887 2025-06-20 18:04:20.468758+00 2025-06-20 18:04:20.46877+00 f t TOTAL 0.00 3 2173 \N +82888 2025-06-20 18:04:20.470522+00 2025-06-20 18:04:20.470533+00 f t ADELANTO 0.00 4 2173 \N +82245 2025-06-20 09:21:48.372958+00 2025-06-20 09:21:48.372968+00 f t SUBTOTAL 111000.00 1 2157 \N +82246 2025-06-20 09:21:48.374957+00 2025-06-20 09:21:48.374967+00 f t DESCUENTO 0.00 2 2157 \N +82247 2025-06-20 09:21:48.376541+00 2025-06-20 09:21:48.376549+00 f t TOTAL 111000.00 3 2157 \N +82248 2025-06-20 09:21:48.378042+00 2025-06-20 09:21:48.37805+00 f t ADELANTO 23500.00 4 2157 \N +82261 2025-06-20 13:14:22.758248+00 2025-06-20 13:14:22.758258+00 f t SUBTOTAL 0.00 1 2158 \N +82262 2025-06-20 13:14:22.760595+00 2025-06-20 13:14:22.760608+00 f t DESCUENTO 0.00 2 2158 \N +82263 2025-06-20 13:14:22.763408+00 2025-06-20 13:14:22.763424+00 f t TOTAL 0.00 3 2158 \N +82264 2025-06-20 13:14:22.765429+00 2025-06-20 13:14:22.765437+00 f t ADELANTO 0.00 4 2158 \N +85137 2025-06-21 19:48:36.350239+00 2025-06-21 19:48:36.350248+00 f t SUBTOTAL 42000.00 1 2233 \N +85138 2025-06-21 19:48:36.351674+00 2025-06-21 19:48:36.351682+00 f t DESCUENTO 0.00 2 2233 \N +85139 2025-06-21 19:48:36.352688+00 2025-06-21 19:48:36.352693+00 f t TOTAL 42000.00 3 2233 \N +85140 2025-06-21 19:48:36.35385+00 2025-06-21 19:48:36.353856+00 f t ADELANTO 9500.00 4 2233 \N +85221 2025-06-21 19:54:02.490771+00 2025-06-21 19:54:02.490781+00 f t SUBTOTAL 0.00 1 2236 \N +85222 2025-06-21 19:54:02.492604+00 2025-06-21 19:54:02.492613+00 f t DESCUENTO 0.00 2 2236 \N +85223 2025-06-21 19:54:02.494328+00 2025-06-21 19:54:02.494336+00 f t TOTAL 0.00 3 2236 \N +82289 2025-06-20 13:48:22.779932+00 2025-06-20 13:48:22.779945+00 f t SUBTOTAL 42000.00 1 2159 \N +82290 2025-06-20 13:48:22.782021+00 2025-06-20 13:48:22.782031+00 f t DESCUENTO 0.00 2 2159 \N +82291 2025-06-20 13:48:22.783572+00 2025-06-20 13:48:22.783582+00 f t TOTAL 42000.00 3 2159 \N +82292 2025-06-20 13:48:22.785057+00 2025-06-20 13:48:22.785066+00 f t ADELANTO 9500.00 4 2159 \N +85224 2025-06-21 19:54:02.496057+00 2025-06-21 19:54:02.496068+00 f t ADELANTO 0.00 4 2236 \N +83085 2025-06-20 18:27:11.926364+00 2025-06-20 18:27:11.926378+00 f t SUBTOTAL 123500.00 1 2175 \N +83086 2025-06-20 18:27:11.929669+00 2025-06-20 18:27:11.929679+00 f t DESCUENTO 0.00 2 2175 \N +83087 2025-06-20 18:27:11.931853+00 2025-06-20 18:27:11.931866+00 f t TOTAL 123500.00 3 2175 \N +83088 2025-06-20 18:27:11.934261+00 2025-06-20 18:27:11.934272+00 f t ADELANTO 26000.00 4 2175 \N +83105 2025-06-20 18:38:23.003895+00 2025-06-20 18:38:23.003905+00 f t SUBTOTAL 0.00 1 2176 \N +83106 2025-06-20 18:38:23.005808+00 2025-06-20 18:38:23.005817+00 f t DESCUENTO 0.00 2 2176 \N +83107 2025-06-20 18:38:23.007397+00 2025-06-20 18:38:23.007404+00 f t TOTAL 0.00 3 2176 \N +83108 2025-06-20 18:38:23.008751+00 2025-06-20 18:38:23.008758+00 f t ADELANTO 0.00 4 2176 \N +83165 2025-06-20 18:57:12.65551+00 2025-06-20 18:57:12.655523+00 f t SUBTOTAL 0.00 1 2178 \N +83166 2025-06-20 18:57:12.657491+00 2025-06-20 18:57:12.657502+00 f t DESCUENTO 0.00 2 2178 \N +83167 2025-06-20 18:57:12.659182+00 2025-06-20 18:57:12.659194+00 f t TOTAL 0.00 3 2178 \N +83168 2025-06-20 18:57:12.660588+00 2025-06-20 18:57:12.660597+00 f t ADELANTO 0.00 4 2178 \N +85337 2025-06-21 21:36:48.053004+00 2025-06-21 21:36:48.053018+00 f t SUBTOTAL 0.00 1 2241 \N +85338 2025-06-21 21:36:48.056719+00 2025-06-21 21:36:48.056729+00 f t DESCUENTO 0.00 2 2241 \N +85339 2025-06-21 21:36:48.061041+00 2025-06-21 21:36:48.061051+00 f t TOTAL 0.00 3 2241 \N +85340 2025-06-21 21:36:48.062757+00 2025-06-21 21:36:48.062765+00 f t ADELANTO 0.00 4 2241 \N +83225 2025-06-20 19:13:38.065864+00 2025-06-20 19:13:38.065878+00 f t SUBTOTAL 0.00 1 2182 \N +83226 2025-06-20 19:13:38.067744+00 2025-06-20 19:13:38.067756+00 f t DESCUENTO 0.00 2 2182 \N +83227 2025-06-20 19:13:38.069719+00 2025-06-20 19:13:38.069729+00 f t TOTAL 0.00 3 2182 \N +83228 2025-06-20 19:13:38.071622+00 2025-06-20 19:13:38.071632+00 f t ADELANTO 0.00 4 2182 \N +85385 2025-06-21 22:21:52.381152+00 2025-06-21 22:21:52.381165+00 f t SUBTOTAL 0.00 1 2247 \N +85386 2025-06-21 22:21:52.38296+00 2025-06-21 22:21:52.382969+00 f t DESCUENTO 0.00 2 2247 \N +85387 2025-06-21 22:21:52.384708+00 2025-06-21 22:21:52.384716+00 f t TOTAL 0.00 3 2247 \N +85388 2025-06-21 22:21:52.386076+00 2025-06-21 22:21:52.386086+00 f t ADELANTO 0.00 4 2247 \N +82341 2025-06-20 14:22:20.925803+00 2025-06-20 14:22:20.925814+00 f t SUBTOTAL 27500.00 1 2160 \N +82342 2025-06-20 14:22:20.92766+00 2025-06-20 14:22:20.927668+00 f t DESCUENTO 0.00 2 2160 \N +82343 2025-06-20 14:22:20.929425+00 2025-06-20 14:22:20.929433+00 f t TOTAL 27500.00 3 2160 \N +82344 2025-06-20 14:22:20.931269+00 2025-06-20 14:22:20.931275+00 f t ADELANTO 27500.00 4 2160 \N +85453 2025-06-21 22:44:27.21726+00 2025-06-21 22:44:27.217271+00 f t SUBTOTAL 50000.00 1 2251 \N +85454 2025-06-21 22:44:27.219059+00 2025-06-21 22:44:27.219067+00 f t DESCUENTO 0.00 2 2251 \N +85455 2025-06-21 22:44:27.220503+00 2025-06-21 22:44:27.220509+00 f t TOTAL 50000.00 3 2251 \N +85456 2025-06-21 22:44:27.221626+00 2025-06-21 22:44:27.221632+00 f t ADELANTO 10000.00 4 2251 \N +85481 2025-06-21 22:49:59.528796+00 2025-06-21 22:49:59.528807+00 f t SUBTOTAL 0.00 1 2253 \N +83345 2025-06-20 19:40:05.297708+00 2025-06-20 19:40:05.297721+00 f t SUBTOTAL 50000.00 1 2184 \N +83346 2025-06-20 19:40:05.300739+00 2025-06-20 19:40:05.300754+00 f t DESCUENTO 0.00 2 2184 \N +83347 2025-06-20 19:40:05.303258+00 2025-06-20 19:40:05.30327+00 f t TOTAL 50000.00 3 2184 \N +83348 2025-06-20 19:40:05.306048+00 2025-06-20 19:40:05.306062+00 f t ADELANTO 10000.00 4 2184 \N +82385 2025-06-20 14:32:26.058609+00 2025-06-20 14:32:26.058618+00 f t SUBTOTAL 88000.00 1 2161 \N +82386 2025-06-20 14:32:26.060565+00 2025-06-20 14:32:26.060575+00 f t DESCUENTO 0.00 2 2161 \N +82387 2025-06-20 14:32:26.062+00 2025-06-20 14:32:26.062007+00 f t TOTAL 88000.00 3 2161 \N +82388 2025-06-20 14:32:26.063282+00 2025-06-20 14:32:26.063291+00 f t ADELANTO 19000.00 4 2161 \N +83525 2025-06-20 21:13:48.570192+00 2025-06-20 21:13:48.570204+00 f t SUBTOTAL 55000.00 1 2188 \N +83526 2025-06-20 21:13:48.572348+00 2025-06-20 21:13:48.572361+00 f t DESCUENTO 0.00 2 2188 \N +83527 2025-06-20 21:13:48.57418+00 2025-06-20 21:13:48.574192+00 f t TOTAL 55000.00 3 2188 \N +83528 2025-06-20 21:13:48.576247+00 2025-06-20 21:13:48.576259+00 f t ADELANTO 12500.00 4 2188 \N +83569 2025-06-20 22:21:45.510649+00 2025-06-20 22:21:45.510658+00 f t SUBTOTAL 0.00 1 2190 \N +83570 2025-06-20 22:21:45.511971+00 2025-06-20 22:21:45.511978+00 f t DESCUENTO 0.00 2 2190 \N +83571 2025-06-20 22:21:45.513141+00 2025-06-20 22:21:45.513147+00 f t TOTAL 0.00 3 2190 \N +83572 2025-06-20 22:21:45.514136+00 2025-06-20 22:21:45.514141+00 f t ADELANTO 0.00 4 2190 \N +97546 2025-06-27 09:34:54.012334+00 2025-06-27 09:34:54.012342+00 f t DESCUENTO 0.00 2 2566 \N +97547 2025-06-27 09:34:54.013544+00 2025-06-27 09:34:54.013549+00 f t TOTAL 49500.00 3 2566 \N +83609 2025-06-20 22:25:40.328672+00 2025-06-20 22:25:40.32868+00 f t SUBTOTAL 27500.00 1 2191 \N +83610 2025-06-20 22:25:40.330264+00 2025-06-20 22:25:40.330271+00 f t DESCUENTO 0.00 2 2191 \N +83611 2025-06-20 22:25:40.331386+00 2025-06-20 22:25:40.331394+00 f t TOTAL 27500.00 3 2191 \N +83612 2025-06-20 22:25:40.332351+00 2025-06-20 22:25:40.332356+00 f t ADELANTO 27500.00 4 2191 \N +84693 2025-06-21 14:45:51.360274+00 2025-06-21 14:45:51.360283+00 f t SUBTOTAL 0.00 1 2223 \N +84694 2025-06-21 14:45:51.362052+00 2025-06-21 14:45:51.362059+00 f t DESCUENTO 0.00 2 2223 \N +84695 2025-06-21 14:45:51.363186+00 2025-06-21 14:45:51.363192+00 f t TOTAL 0.00 3 2223 \N +84696 2025-06-21 14:45:51.364262+00 2025-06-21 14:45:51.36427+00 f t ADELANTO 0.00 4 2223 \N +83649 2025-06-20 22:27:39.129422+00 2025-06-20 22:27:39.129434+00 f t SUBTOTAL 95000.00 1 2192 \N +83650 2025-06-20 22:27:39.131351+00 2025-06-20 22:27:39.13136+00 f t DESCUENTO 0.00 2 2192 \N +83651 2025-06-20 22:27:39.132596+00 2025-06-20 22:27:39.132602+00 f t TOTAL 95000.00 3 2192 \N +83652 2025-06-20 22:27:39.133759+00 2025-06-20 22:27:39.133764+00 f t ADELANTO 10000.00 4 2192 \N +86721 2025-06-22 14:02:54.78412+00 2025-06-22 14:02:54.784133+00 f t SUBTOTAL 0.00 1 2274 \N +86722 2025-06-22 14:02:54.785931+00 2025-06-22 14:02:54.785941+00 f t DESCUENTO 0.00 2 2274 \N +83657 2025-06-20 22:31:12.646394+00 2025-06-20 22:31:12.646403+00 f t SUBTOTAL 0.00 1 2193 \N +83658 2025-06-20 22:31:12.649116+00 2025-06-20 22:31:12.649123+00 f t DESCUENTO 0.00 2 2193 \N +83659 2025-06-20 22:31:12.650475+00 2025-06-20 22:31:12.650482+00 f t TOTAL 0.00 3 2193 \N +83660 2025-06-20 22:31:12.652674+00 2025-06-20 22:31:12.652681+00 f t ADELANTO 0.00 4 2193 \N +86723 2025-06-22 14:02:54.787736+00 2025-06-22 14:02:54.787748+00 f t TOTAL 0.00 3 2274 \N +86724 2025-06-22 14:02:54.78937+00 2025-06-22 14:02:54.78938+00 f t ADELANTO 0.00 4 2274 \N +85065 2025-06-21 18:52:47.407557+00 2025-06-21 18:52:47.407565+00 f t SUBTOTAL 158000.00 1 2232 \N +85066 2025-06-21 18:52:47.409339+00 2025-06-21 18:52:47.409349+00 f t DESCUENTO 0.00 2 2232 \N +85067 2025-06-21 18:52:47.410636+00 2025-06-21 18:52:47.410642+00 f t TOTAL 158000.00 3 2232 \N +85068 2025-06-21 18:52:47.411869+00 2025-06-21 18:52:47.411875+00 f t ADELANTO 29000.00 4 2232 \N +83693 2025-06-20 23:23:36.1388+00 2025-06-20 23:23:36.138808+00 f t SUBTOTAL 49500.00 1 2194 \N +83694 2025-06-20 23:23:36.140866+00 2025-06-20 23:23:36.140874+00 f t DESCUENTO 0.00 2 2194 \N +83695 2025-06-20 23:23:36.142221+00 2025-06-20 23:23:36.14223+00 f t TOTAL 49500.00 3 2194 \N +83696 2025-06-20 23:23:36.143382+00 2025-06-20 23:23:36.143387+00 f t ADELANTO 11500.00 4 2194 \N +83701 2025-06-20 23:44:09.346301+00 2025-06-20 23:44:09.346314+00 f t SUBTOTAL 0.00 1 2195 \N +83702 2025-06-20 23:44:09.348412+00 2025-06-20 23:44:09.34842+00 f t DESCUENTO 0.00 2 2195 \N +83703 2025-06-20 23:44:09.350856+00 2025-06-20 23:44:09.350868+00 f t TOTAL 0.00 3 2195 \N +83704 2025-06-20 23:44:09.352703+00 2025-06-20 23:44:09.352714+00 f t ADELANTO 0.00 4 2195 \N +85229 2025-06-21 20:18:55.904146+00 2025-06-21 20:18:55.904156+00 f t SUBTOTAL 0.00 1 2237 \N +85230 2025-06-21 20:18:55.905786+00 2025-06-21 20:18:55.905796+00 f t DESCUENTO 0.00 2 2237 \N +83729 2025-06-20 23:53:05.036926+00 2025-06-20 23:53:05.03694+00 f t SUBTOTAL 50000.00 1 2196 \N +83730 2025-06-20 23:53:05.039261+00 2025-06-20 23:53:05.039271+00 f t DESCUENTO 0.00 2 2196 \N +83731 2025-06-20 23:53:05.041393+00 2025-06-20 23:53:05.041405+00 f t TOTAL 50000.00 3 2196 \N +83732 2025-06-20 23:53:05.043498+00 2025-06-20 23:53:05.04351+00 f t ADELANTO 10000.00 4 2196 \N +85231 2025-06-21 20:18:55.907249+00 2025-06-21 20:18:55.907257+00 f t TOTAL 0.00 3 2237 \N +85232 2025-06-21 20:18:55.908611+00 2025-06-21 20:18:55.908617+00 f t ADELANTO 0.00 4 2237 \N +85345 2025-06-21 21:37:00.578046+00 2025-06-21 21:37:00.578054+00 f t SUBTOTAL 0.00 1 2242 \N +85346 2025-06-21 21:37:00.57934+00 2025-06-21 21:37:00.579348+00 f t DESCUENTO 0.00 2 2242 \N +85347 2025-06-21 21:37:00.580499+00 2025-06-21 21:37:00.580506+00 f t TOTAL 0.00 3 2242 \N +85348 2025-06-21 21:37:00.581442+00 2025-06-21 21:37:00.581448+00 f t ADELANTO 0.00 4 2242 \N +83757 2025-06-21 00:06:58.286134+00 2025-06-21 00:06:58.286143+00 f t SUBTOTAL 42000.00 1 2197 \N +83758 2025-06-21 00:06:58.288196+00 2025-06-21 00:06:58.288204+00 f t DESCUENTO 0.00 2 2197 \N +83759 2025-06-21 00:06:58.289598+00 2025-06-21 00:06:58.289605+00 f t TOTAL 42000.00 3 2197 \N +83760 2025-06-21 00:06:58.291199+00 2025-06-21 00:06:58.291205+00 f t ADELANTO 9500.00 4 2197 \N +85393 2025-06-21 22:34:19.828012+00 2025-06-21 22:34:19.828024+00 f t SUBTOTAL 0.00 1 2248 \N +85394 2025-06-21 22:34:19.829681+00 2025-06-21 22:34:19.82969+00 f t DESCUENTO 0.00 2 2248 \N +85395 2025-06-21 22:34:19.830963+00 2025-06-21 22:34:19.830971+00 f t TOTAL 0.00 3 2248 \N +85396 2025-06-21 22:34:19.832456+00 2025-06-21 22:34:19.8325+00 f t ADELANTO 0.00 4 2248 \N +85482 2025-06-21 22:49:59.53011+00 2025-06-21 22:49:59.530116+00 f t DESCUENTO 0.00 2 2253 \N +85483 2025-06-21 22:49:59.5314+00 2025-06-21 22:49:59.531407+00 f t TOTAL 0.00 3 2253 \N +85484 2025-06-21 22:49:59.532619+00 2025-06-21 22:49:59.532625+00 f t ADELANTO 0.00 4 2253 \N +83785 2025-06-21 00:15:45.039157+00 2025-06-21 00:15:45.039166+00 f t SUBTOTAL 95000.00 1 2198 \N +83786 2025-06-21 00:15:45.041197+00 2025-06-21 00:15:45.041209+00 f t DESCUENTO 0.00 2 2198 \N +83787 2025-06-21 00:15:45.042732+00 2025-06-21 00:15:45.042739+00 f t TOTAL 95000.00 3 2198 \N +83788 2025-06-21 00:15:45.044297+00 2025-06-21 00:15:45.044306+00 f t ADELANTO 10000.00 4 2198 \N +83793 2025-06-21 00:21:56.719346+00 2025-06-21 00:21:56.719355+00 f t SUBTOTAL 0.00 1 2199 \N +83794 2025-06-21 00:21:56.721195+00 2025-06-21 00:21:56.721205+00 f t DESCUENTO 0.00 2 2199 \N +83795 2025-06-21 00:21:56.722555+00 2025-06-21 00:21:56.722563+00 f t TOTAL 0.00 3 2199 \N +83796 2025-06-21 00:21:56.72358+00 2025-06-21 00:21:56.723585+00 f t ADELANTO 0.00 4 2199 \N +83801 2025-06-21 00:24:33.460524+00 2025-06-21 00:24:33.460536+00 f t SUBTOTAL 0.00 1 2200 \N +83802 2025-06-21 00:24:33.462077+00 2025-06-21 00:24:33.462087+00 f t DESCUENTO 0.00 2 2200 \N +83803 2025-06-21 00:24:33.463559+00 2025-06-21 00:24:33.463565+00 f t TOTAL 0.00 3 2200 \N +83804 2025-06-21 00:24:33.464792+00 2025-06-21 00:24:33.464797+00 f t ADELANTO 0.00 4 2200 \N +83809 2025-06-21 00:45:55.220335+00 2025-06-21 00:45:55.220345+00 f t SUBTOTAL 0.00 1 2201 \N +83810 2025-06-21 00:45:55.222186+00 2025-06-21 00:45:55.222197+00 f t DESCUENTO 0.00 2 2201 \N +83811 2025-06-21 00:45:55.226279+00 2025-06-21 00:45:55.226291+00 f t TOTAL 0.00 3 2201 \N +83812 2025-06-21 00:45:55.228442+00 2025-06-21 00:45:55.228449+00 f t ADELANTO 0.00 4 2201 \N +83837 2025-06-21 00:54:18.175318+00 2025-06-21 00:54:18.175328+00 f t SUBTOTAL 64500.00 1 2202 \N +83838 2025-06-21 00:54:18.177553+00 2025-06-21 00:54:18.177564+00 f t DESCUENTO 0.00 2 2202 \N +83839 2025-06-21 00:54:18.179509+00 2025-06-21 00:54:18.17952+00 f t TOTAL 64500.00 3 2202 \N +83840 2025-06-21 00:54:18.181356+00 2025-06-21 00:54:18.181366+00 f t ADELANTO 17000.00 4 2202 \N +83865 2025-06-21 01:42:30.145448+00 2025-06-21 01:42:30.145458+00 f t SUBTOTAL 0.00 1 2203 \N +83866 2025-06-21 01:42:30.147983+00 2025-06-21 01:42:30.147992+00 f t DESCUENTO 0.00 2 2203 \N +83867 2025-06-21 01:42:30.150675+00 2025-06-21 01:42:30.150686+00 f t TOTAL 0.00 3 2203 \N +83868 2025-06-21 01:42:30.15246+00 2025-06-21 01:42:30.15247+00 f t ADELANTO 0.00 4 2203 \N +84513 2025-06-21 14:07:14.52306+00 2025-06-21 14:07:14.523069+00 f t SUBTOTAL 50000.00 1 2220 \N +84514 2025-06-21 14:07:14.525296+00 2025-06-21 14:07:14.525304+00 f t DESCUENTO 0.00 2 2220 \N +84515 2025-06-21 14:07:14.529595+00 2025-06-21 14:07:14.529607+00 f t TOTAL 50000.00 3 2220 \N +83905 2025-06-21 01:43:54.844541+00 2025-06-21 01:43:54.84455+00 f t SUBTOTAL 70000.00 1 2204 \N +83906 2025-06-21 01:43:54.846353+00 2025-06-21 01:43:54.846363+00 f t DESCUENTO 0.00 2 2204 \N +83907 2025-06-21 01:43:54.847817+00 2025-06-21 01:43:54.847826+00 f t TOTAL 70000.00 3 2204 \N +83908 2025-06-21 01:43:54.849142+00 2025-06-21 01:43:54.849149+00 f t ADELANTO 15000.00 4 2204 \N +84516 2025-06-21 14:07:14.532368+00 2025-06-21 14:07:14.53238+00 f t ADELANTO 10000.00 4 2220 \N +90745 2025-06-24 02:24:02.230336+00 2025-06-24 02:24:02.230349+00 f t SUBTOTAL 0.00 1 2363 \N +90746 2025-06-24 02:24:02.233298+00 2025-06-24 02:24:02.233312+00 f t DESCUENTO 0.00 2 2363 \N +90747 2025-06-24 02:24:02.23559+00 2025-06-24 02:24:02.235604+00 f t TOTAL 0.00 3 2363 \N +90748 2025-06-24 02:24:02.237643+00 2025-06-24 02:24:02.237656+00 f t ADELANTO 0.00 4 2363 \N +86585 2025-06-22 13:54:13.694128+00 2025-06-22 13:54:13.694138+00 f t SUBTOTAL 45000.00 1 2271 \N +86586 2025-06-22 13:54:13.696449+00 2025-06-22 13:54:13.696458+00 f t DESCUENTO 0.00 2 2271 \N +86587 2025-06-22 13:54:13.697916+00 2025-06-22 13:54:13.697926+00 f t TOTAL 45000.00 3 2271 \N +86588 2025-06-22 13:54:13.699485+00 2025-06-22 13:54:13.699492+00 f t ADELANTO 10000.00 4 2271 \N +86661 2025-06-22 14:00:46.08269+00 2025-06-22 14:00:46.0827+00 f t SUBTOTAL 0.00 1 2272 \N +86662 2025-06-22 14:00:46.084812+00 2025-06-22 14:00:46.08482+00 f t DESCUENTO 0.00 2 2272 \N +86663 2025-06-22 14:00:46.086171+00 2025-06-22 14:00:46.086181+00 f t TOTAL 0.00 3 2272 \N +83933 2025-06-21 02:03:18.714285+00 2025-06-21 02:03:18.714298+00 f t SUBTOTAL 50000.00 1 2205 \N +83934 2025-06-21 02:03:18.72377+00 2025-06-21 02:03:18.723781+00 f t DESCUENTO 0.00 2 2205 \N +83935 2025-06-21 02:03:18.72581+00 2025-06-21 02:03:18.72582+00 f t TOTAL 50000.00 3 2205 \N +83936 2025-06-21 02:03:18.727703+00 2025-06-21 02:03:18.72771+00 f t ADELANTO 10000.00 4 2205 \N +86664 2025-06-22 14:00:46.087477+00 2025-06-22 14:00:46.087483+00 f t ADELANTO 0.00 4 2272 \N +86865 2025-06-22 14:32:48.259809+00 2025-06-22 14:32:48.259819+00 f t SUBTOTAL 0.00 1 2276 \N +86866 2025-06-22 14:32:48.26187+00 2025-06-22 14:32:48.261878+00 f t DESCUENTO 0.00 2 2276 \N +86867 2025-06-22 14:32:48.262901+00 2025-06-22 14:32:48.262906+00 f t TOTAL 0.00 3 2276 \N +86868 2025-06-22 14:32:48.263849+00 2025-06-22 14:32:48.263854+00 f t ADELANTO 0.00 4 2276 \N +86889 2025-06-22 15:15:38.503261+00 2025-06-22 15:15:38.503274+00 f t SUBTOTAL 0.00 1 2279 \N +86890 2025-06-22 15:15:38.50504+00 2025-06-22 15:15:38.50505+00 f t DESCUENTO 0.00 2 2279 \N +86891 2025-06-22 15:15:38.506514+00 2025-06-22 15:15:38.506521+00 f t TOTAL 0.00 3 2279 \N +86892 2025-06-22 15:15:38.50778+00 2025-06-22 15:15:38.507786+00 f t ADELANTO 0.00 4 2279 \N +85237 2025-06-21 20:52:34.766083+00 2025-06-21 20:52:34.766091+00 f t SUBTOTAL 0.00 1 2238 \N +85238 2025-06-21 20:52:34.767286+00 2025-06-21 20:52:34.767293+00 f t DESCUENTO 0.00 2 2238 \N +85239 2025-06-21 20:52:34.768172+00 2025-06-21 20:52:34.768177+00 f t TOTAL 0.00 3 2238 \N +85240 2025-06-21 20:52:34.769153+00 2025-06-21 20:52:34.76916+00 f t ADELANTO 0.00 4 2238 \N +85353 2025-06-21 21:57:14.986297+00 2025-06-21 21:57:14.986309+00 f t SUBTOTAL 0.00 1 2243 \N +85354 2025-06-21 21:57:14.987871+00 2025-06-21 21:57:14.987879+00 f t DESCUENTO 0.00 2 2243 \N +85355 2025-06-21 21:57:14.989529+00 2025-06-21 21:57:14.989537+00 f t TOTAL 0.00 3 2243 \N +85356 2025-06-21 21:57:14.990761+00 2025-06-21 21:57:14.990767+00 f t ADELANTO 0.00 4 2243 \N +85401 2025-06-21 22:35:16.832619+00 2025-06-21 22:35:16.832629+00 f t SUBTOTAL 0.00 1 2249 \N +85402 2025-06-21 22:35:16.835071+00 2025-06-21 22:35:16.835081+00 f t DESCUENTO 0.00 2 2249 \N +85403 2025-06-21 22:35:16.836613+00 2025-06-21 22:35:16.83662+00 f t TOTAL 0.00 3 2249 \N +85404 2025-06-21 22:35:16.837696+00 2025-06-21 22:35:16.837703+00 f t ADELANTO 0.00 4 2249 \N +85489 2025-06-21 23:15:48.468366+00 2025-06-21 23:15:48.468375+00 f t SUBTOTAL 0.00 1 2254 \N +85490 2025-06-21 23:15:48.469991+00 2025-06-21 23:15:48.469999+00 f t DESCUENTO 0.00 2 2254 \N +85491 2025-06-21 23:15:48.471217+00 2025-06-21 23:15:48.471226+00 f t TOTAL 0.00 3 2254 \N +84061 2025-06-21 03:10:51.03635+00 2025-06-21 03:10:51.036358+00 f t SUBTOTAL 70000.00 1 2207 \N +84062 2025-06-21 03:10:51.038973+00 2025-06-21 03:10:51.038983+00 f t DESCUENTO 0.00 2 2207 \N +84063 2025-06-21 03:10:51.040769+00 2025-06-21 03:10:51.040777+00 f t TOTAL 70000.00 3 2207 \N +84064 2025-06-21 03:10:51.04256+00 2025-06-21 03:10:51.042569+00 f t ADELANTO 10000.00 4 2207 \N +85492 2025-06-21 23:15:48.472392+00 2025-06-21 23:15:48.472398+00 f t ADELANTO 0.00 4 2254 \N +87101 2025-06-22 18:03:20.433607+00 2025-06-22 18:03:20.433616+00 f t SUBTOTAL 94700.00 1 2287 \N +87102 2025-06-22 18:03:20.435379+00 2025-06-22 18:03:20.435388+00 f t DESCUENTO 0.00 2 2287 \N +87103 2025-06-22 18:03:20.436912+00 2025-06-22 18:03:20.436921+00 f t TOTAL 94700.00 3 2287 \N +87104 2025-06-22 18:03:20.438628+00 2025-06-22 18:03:20.438638+00 f t ADELANTO 56700.00 4 2287 \N +85701 2025-06-22 02:03:25.209573+00 2025-06-22 02:03:25.209581+00 f t SUBTOTAL 99000.00 1 2258 \N +85702 2025-06-22 02:03:25.211233+00 2025-06-22 02:03:25.211239+00 f t DESCUENTO 0.00 2 2258 \N +85703 2025-06-22 02:03:25.213831+00 2025-06-22 02:03:25.213838+00 f t TOTAL 99000.00 3 2258 \N +85704 2025-06-22 02:03:25.215532+00 2025-06-22 02:03:25.215542+00 f t ADELANTO 23000.00 4 2258 \N +85741 2025-06-22 02:59:26.83654+00 2025-06-22 02:59:26.836548+00 f t SUBTOTAL 42000.00 1 2259 \N +85742 2025-06-22 02:59:26.83839+00 2025-06-22 02:59:26.838396+00 f t DESCUENTO 0.00 2 2259 \N +85743 2025-06-22 02:59:26.839711+00 2025-06-22 02:59:26.839719+00 f t TOTAL 42000.00 3 2259 \N +85744 2025-06-22 02:59:26.84117+00 2025-06-22 02:59:26.841177+00 f t ADELANTO 9500.00 4 2259 \N +84133 2025-06-21 03:11:53.893423+00 2025-06-21 03:11:53.893432+00 f t SUBTOTAL 0.00 1 2206 \N +84134 2025-06-21 03:11:53.895322+00 2025-06-21 03:11:53.895329+00 f t DESCUENTO 0.00 2 2206 \N +84135 2025-06-21 03:11:53.896455+00 2025-06-21 03:11:53.89646+00 f t TOTAL 0.00 3 2206 \N +84136 2025-06-21 03:11:53.897777+00 2025-06-21 03:11:53.897784+00 f t ADELANTO 0.00 4 2206 \N +85829 2025-06-22 03:06:56.706177+00 2025-06-22 03:06:56.706187+00 f t SUBTOTAL 0.00 1 2260 \N +85830 2025-06-22 03:06:56.708617+00 2025-06-22 03:06:56.708627+00 f t DESCUENTO 0.00 2 2260 \N +85831 2025-06-22 03:06:56.710117+00 2025-06-22 03:06:56.710124+00 f t TOTAL 0.00 3 2260 \N +85832 2025-06-22 03:06:56.711446+00 2025-06-22 03:06:56.711452+00 f t ADELANTO 0.00 4 2260 \N +85845 2025-06-22 03:39:55.000176+00 2025-06-22 03:39:55.000189+00 f t SUBTOTAL 0.00 1 2262 \N +85846 2025-06-22 03:39:55.002339+00 2025-06-22 03:39:55.002351+00 f t DESCUENTO 0.00 2 2262 \N +85847 2025-06-22 03:39:55.00464+00 2025-06-22 03:39:55.004654+00 f t TOTAL 0.00 3 2262 \N +85848 2025-06-22 03:39:55.006633+00 2025-06-22 03:39:55.006645+00 f t ADELANTO 0.00 4 2262 \N +84185 2025-06-21 03:34:23.63517+00 2025-06-21 03:34:23.635183+00 f t SUBTOTAL 70000.00 1 2208 \N +84186 2025-06-21 03:34:23.637291+00 2025-06-21 03:34:23.6373+00 f t DESCUENTO 0.00 2 2208 \N +84187 2025-06-21 03:34:23.639211+00 2025-06-21 03:34:23.639222+00 f t TOTAL 70000.00 3 2208 \N +84188 2025-06-21 03:34:23.641049+00 2025-06-21 03:34:23.641061+00 f t ADELANTO 10000.00 4 2208 \N +97548 2025-06-27 09:34:54.014466+00 2025-06-27 09:34:54.014474+00 f t ADELANTO 11500.00 4 2566 \N +95217 2025-06-26 11:24:05.251888+00 2025-06-26 11:24:05.251902+00 f t SUBTOTAL 0.00 1 2509 \N +95218 2025-06-26 11:24:05.253924+00 2025-06-26 11:24:05.253936+00 f t DESCUENTO 0.00 2 2509 \N +95219 2025-06-26 11:24:05.255745+00 2025-06-26 11:24:05.255756+00 f t TOTAL 0.00 3 2509 \N +86557 2025-06-22 12:09:44.409956+00 2025-06-22 12:09:44.409965+00 f t SUBTOTAL 42000.00 1 2270 \N +86558 2025-06-22 12:09:44.412243+00 2025-06-22 12:09:44.412255+00 f t DESCUENTO 0.00 2 2270 \N +86559 2025-06-22 12:09:44.414227+00 2025-06-22 12:09:44.414239+00 f t TOTAL 42000.00 3 2270 \N +86560 2025-06-22 12:09:44.415884+00 2025-06-22 12:09:44.415891+00 f t ADELANTO 9500.00 4 2270 \N +84213 2025-06-21 03:45:04.688942+00 2025-06-21 03:45:04.688957+00 f t SUBTOTAL 42000.00 1 2209 \N +84214 2025-06-21 03:45:04.692844+00 2025-06-21 03:45:04.692859+00 f t DESCUENTO 0.00 2 2209 \N +84215 2025-06-21 03:45:04.703575+00 2025-06-21 03:45:04.70359+00 f t TOTAL 42000.00 3 2209 \N +84216 2025-06-21 03:45:04.70619+00 2025-06-21 03:45:04.706204+00 f t ADELANTO 9500.00 4 2209 \N +84845 2025-06-21 16:03:42.160452+00 2025-06-21 16:03:42.160462+00 f t SUBTOTAL 57400.00 1 2226 \N +84846 2025-06-21 16:03:42.162094+00 2025-06-21 16:03:42.162101+00 f t DESCUENTO 0.00 2 2226 \N +84847 2025-06-21 16:03:42.163546+00 2025-06-21 16:03:42.163556+00 f t TOTAL 57400.00 3 2226 \N +84848 2025-06-21 16:03:42.165259+00 2025-06-21 16:03:42.165269+00 f t ADELANTO 13900.00 4 2226 \N +84241 2025-06-21 05:42:01.268276+00 2025-06-21 05:42:01.268289+00 f t SUBTOTAL 75000.00 1 2210 \N +84242 2025-06-21 05:42:01.271428+00 2025-06-21 05:42:01.271441+00 f t DESCUENTO 0.00 2 2210 \N +84243 2025-06-21 05:42:01.274229+00 2025-06-21 05:42:01.274243+00 f t TOTAL 75000.00 3 2210 \N +84244 2025-06-21 05:42:01.276492+00 2025-06-21 05:42:01.276505+00 f t ADELANTO 15000.00 4 2210 \N +84945 2025-06-21 17:55:00.155902+00 2025-06-21 17:55:00.155911+00 f t SUBTOTAL 42000.00 1 2230 \N +84946 2025-06-21 17:55:00.157675+00 2025-06-21 17:55:00.157681+00 f t DESCUENTO 0.00 2 2230 \N +84947 2025-06-21 17:55:00.159535+00 2025-06-21 17:55:00.159541+00 f t TOTAL 42000.00 3 2230 \N +84948 2025-06-21 17:55:00.161105+00 2025-06-21 17:55:00.161111+00 f t ADELANTO 9500.00 4 2230 \N +84249 2025-06-21 06:06:09.341241+00 2025-06-21 06:06:09.341249+00 f t SUBTOTAL 0.00 1 2211 \N +84250 2025-06-21 06:06:09.342592+00 2025-06-21 06:06:09.342599+00 f t DESCUENTO 0.00 2 2211 \N +84251 2025-06-21 06:06:09.34381+00 2025-06-21 06:06:09.343816+00 f t TOTAL 0.00 3 2211 \N +84252 2025-06-21 06:06:09.345093+00 2025-06-21 06:06:09.345101+00 f t ADELANTO 0.00 4 2211 \N +84257 2025-06-21 06:06:59.227011+00 2025-06-21 06:06:59.227023+00 f t SUBTOTAL 0.00 1 2212 \N +84258 2025-06-21 06:06:59.228606+00 2025-06-21 06:06:59.228613+00 f t DESCUENTO 0.00 2 2212 \N +84259 2025-06-21 06:06:59.230016+00 2025-06-21 06:06:59.230026+00 f t TOTAL 0.00 3 2212 \N +84260 2025-06-21 06:06:59.232209+00 2025-06-21 06:06:59.232219+00 f t ADELANTO 0.00 4 2212 \N +85205 2025-06-21 19:49:44.633386+00 2025-06-21 19:49:44.633395+00 f t SUBTOTAL 95000.00 1 2234 \N +85206 2025-06-21 19:49:44.635039+00 2025-06-21 19:49:44.635046+00 f t DESCUENTO 0.00 2 2234 \N +85207 2025-06-21 19:49:44.636248+00 2025-06-21 19:49:44.636256+00 f t TOTAL 95000.00 3 2234 \N +85208 2025-06-21 19:49:44.637723+00 2025-06-21 19:49:44.637732+00 f t ADELANTO 10000.00 4 2234 \N +85293 2025-06-21 21:02:40.325984+00 2025-06-21 21:02:40.325993+00 f t SUBTOTAL 49500.00 1 2239 \N +85294 2025-06-21 21:02:40.327863+00 2025-06-21 21:02:40.32787+00 f t DESCUENTO 0.00 2 2239 \N +85295 2025-06-21 21:02:40.32908+00 2025-06-21 21:02:40.329086+00 f t TOTAL 49500.00 3 2239 \N +85296 2025-06-21 21:02:40.330103+00 2025-06-21 21:02:40.330109+00 f t ADELANTO 11500.00 4 2239 \N +84321 2025-06-21 07:19:31.354732+00 2025-06-21 07:19:31.354739+00 f t SUBTOTAL 42000.00 1 2214 \N +84322 2025-06-21 07:19:31.356515+00 2025-06-21 07:19:31.356526+00 f t DESCUENTO 0.00 2 2214 \N +84323 2025-06-21 07:19:31.358043+00 2025-06-21 07:19:31.358052+00 f t TOTAL 42000.00 3 2214 \N +84324 2025-06-21 07:19:31.359382+00 2025-06-21 07:19:31.35939+00 f t ADELANTO 9500.00 4 2214 \N +85361 2025-06-21 22:01:38.762671+00 2025-06-21 22:01:38.762679+00 f t SUBTOTAL 0.00 1 2244 \N +85362 2025-06-21 22:01:38.763951+00 2025-06-21 22:01:38.763958+00 f t DESCUENTO 0.00 2 2244 \N +85363 2025-06-21 22:01:38.765039+00 2025-06-21 22:01:38.765045+00 f t TOTAL 0.00 3 2244 \N +85364 2025-06-21 22:01:38.76597+00 2025-06-21 22:01:38.765975+00 f t ADELANTO 0.00 4 2244 \N +85409 2025-06-21 22:37:15.125427+00 2025-06-21 22:37:15.125437+00 f t SUBTOTAL 0.00 1 2250 \N +85410 2025-06-21 22:37:15.12725+00 2025-06-21 22:37:15.12726+00 f t DESCUENTO 0.00 2 2250 \N +85411 2025-06-21 22:37:15.130668+00 2025-06-21 22:37:15.130677+00 f t TOTAL 0.00 3 2250 \N +85412 2025-06-21 22:37:15.132295+00 2025-06-21 22:37:15.132303+00 f t ADELANTO 0.00 4 2250 \N +84341 2025-06-21 07:20:48.64521+00 2025-06-21 07:20:48.645221+00 f t SUBTOTAL 64500.00 1 2213 \N +84342 2025-06-21 07:20:48.647438+00 2025-06-21 07:20:48.647448+00 f t DESCUENTO 0.00 2 2213 \N +84343 2025-06-21 07:20:48.648906+00 2025-06-21 07:20:48.648915+00 f t TOTAL 64500.00 3 2213 \N +84344 2025-06-21 07:20:48.650354+00 2025-06-21 07:20:48.650363+00 f t ADELANTO 17000.00 4 2213 \N +84349 2025-06-21 11:08:14.934239+00 2025-06-21 11:08:14.934253+00 f t SUBTOTAL 0.00 1 2215 \N +84350 2025-06-21 11:08:14.943045+00 2025-06-21 11:08:14.943054+00 f t DESCUENTO 0.00 2 2215 \N +84351 2025-06-21 11:08:14.944778+00 2025-06-21 11:08:14.944787+00 f t TOTAL 0.00 3 2215 \N +84352 2025-06-21 11:08:14.946111+00 2025-06-21 11:08:14.946117+00 f t ADELANTO 0.00 4 2215 \N +85573 2025-06-21 23:24:31.28904+00 2025-06-21 23:24:31.289049+00 f t SUBTOTAL 95000.00 1 2252 \N +85574 2025-06-21 23:24:31.290709+00 2025-06-21 23:24:31.290715+00 f t DESCUENTO 0.00 2 2252 \N +85575 2025-06-21 23:24:31.291972+00 2025-06-21 23:24:31.291978+00 f t TOTAL 95000.00 3 2252 \N +85576 2025-06-21 23:24:31.293035+00 2025-06-21 23:24:31.29304+00 f t ADELANTO 10000.00 4 2252 \N +84385 2025-06-21 12:53:12.053631+00 2025-06-21 12:53:12.05364+00 f t SUBTOTAL 42000.00 1 2216 \N +84386 2025-06-21 12:53:12.055436+00 2025-06-21 12:53:12.055445+00 f t DESCUENTO 0.00 2 2216 \N +84387 2025-06-21 12:53:12.056883+00 2025-06-21 12:53:12.05689+00 f t TOTAL 42000.00 3 2216 \N +84388 2025-06-21 12:53:12.058274+00 2025-06-21 12:53:12.058284+00 f t ADELANTO 9500.00 4 2216 \N +85653 2025-06-22 01:30:37.156553+00 2025-06-22 01:30:37.156562+00 f t SUBTOTAL 50000.00 1 2257 \N +85654 2025-06-22 01:30:37.15802+00 2025-06-22 01:30:37.158026+00 f t DESCUENTO 0.00 2 2257 \N +85655 2025-06-22 01:30:37.158966+00 2025-06-22 01:30:37.158971+00 f t TOTAL 50000.00 3 2257 \N +85656 2025-06-22 01:30:37.159896+00 2025-06-22 01:30:37.159901+00 f t ADELANTO 10000.00 4 2257 \N +84393 2025-06-21 13:22:17.865461+00 2025-06-21 13:22:17.865475+00 f t SUBTOTAL 0.00 1 2217 \N +84394 2025-06-21 13:22:17.867382+00 2025-06-21 13:22:17.867393+00 f t DESCUENTO 0.00 2 2217 \N +84395 2025-06-21 13:22:17.869004+00 2025-06-21 13:22:17.869014+00 f t TOTAL 0.00 3 2217 \N +84396 2025-06-21 13:22:17.87058+00 2025-06-21 13:22:17.870589+00 f t ADELANTO 0.00 4 2217 \N +85837 2025-06-22 03:07:26.267743+00 2025-06-22 03:07:26.267753+00 f t SUBTOTAL 0.00 1 2261 \N +85838 2025-06-22 03:07:26.269433+00 2025-06-22 03:07:26.269441+00 f t DESCUENTO 0.00 2 2261 \N +85839 2025-06-22 03:07:26.271005+00 2025-06-22 03:07:26.271013+00 f t TOTAL 0.00 3 2261 \N +85840 2025-06-22 03:07:26.272746+00 2025-06-22 03:07:26.272754+00 f t ADELANTO 0.00 4 2261 \N +90653 2025-06-24 01:57:49.521469+00 2025-06-24 01:57:49.521481+00 f t SUBTOTAL 50000.00 1 2360 \N +90654 2025-06-24 01:57:49.523285+00 2025-06-24 01:57:49.523296+00 f t DESCUENTO 0.00 2 2360 \N +90655 2025-06-24 01:57:49.524583+00 2025-06-24 01:57:49.52459+00 f t TOTAL 50000.00 3 2360 \N +90656 2025-06-24 01:57:49.52576+00 2025-06-24 01:57:49.525766+00 f t ADELANTO 10000.00 4 2360 \N +86529 2025-06-22 11:08:55.671413+00 2025-06-22 11:08:55.671421+00 f t SUBTOTAL 50000.00 1 2269 \N +86530 2025-06-22 11:08:55.673219+00 2025-06-22 11:08:55.673227+00 f t DESCUENTO 0.00 2 2269 \N +86531 2025-06-22 11:08:55.67495+00 2025-06-22 11:08:55.674956+00 f t TOTAL 50000.00 3 2269 \N +85889 2025-06-22 03:43:25.142314+00 2025-06-22 03:43:25.142323+00 f t SUBTOTAL 49500.00 1 2263 \N +85890 2025-06-22 03:43:25.144202+00 2025-06-22 03:43:25.14421+00 f t DESCUENTO 0.00 2 2263 \N +85891 2025-06-22 03:43:25.145621+00 2025-06-22 03:43:25.145627+00 f t TOTAL 49500.00 3 2263 \N +85892 2025-06-22 03:43:25.146838+00 2025-06-22 03:43:25.146846+00 f t ADELANTO 11500.00 4 2263 \N +86532 2025-06-22 11:08:55.676759+00 2025-06-22 11:08:55.676766+00 f t ADELANTO 10000.00 4 2269 \N +88669 2025-06-23 18:02:35.716226+00 2025-06-23 18:02:35.716235+00 f t SUBTOTAL 62000.00 1 2332 \N +88670 2025-06-23 18:02:35.717864+00 2025-06-23 18:02:35.717872+00 f t DESCUENTO 0.00 2 2332 \N +88671 2025-06-23 18:02:35.719013+00 2025-06-23 18:02:35.71902+00 f t TOTAL 62000.00 3 2332 \N +85897 2025-06-22 04:52:36.674642+00 2025-06-22 04:52:36.674653+00 f t SUBTOTAL 0.00 1 2264 \N +85898 2025-06-22 04:52:36.676368+00 2025-06-22 04:52:36.676374+00 f t DESCUENTO 0.00 2 2264 \N +85899 2025-06-22 04:52:36.677592+00 2025-06-22 04:52:36.677597+00 f t TOTAL 0.00 3 2264 \N +85900 2025-06-22 04:52:36.67864+00 2025-06-22 04:52:36.678645+00 f t ADELANTO 0.00 4 2264 \N +88672 2025-06-23 18:02:35.720159+00 2025-06-23 18:02:35.720164+00 f t ADELANTO 12000.00 4 2332 \N +92885 2025-06-25 03:43:21.716069+00 2025-06-25 03:43:21.716078+00 f t SUBTOTAL 129000.00 1 2429 \N +92886 2025-06-25 03:43:21.719419+00 2025-06-25 03:43:21.719431+00 f t DESCUENTO 0.00 2 2429 \N +92887 2025-06-25 03:43:21.721385+00 2025-06-25 03:43:21.721394+00 f t TOTAL 129000.00 3 2429 \N +85905 2025-06-22 05:23:25.221886+00 2025-06-22 05:23:25.221895+00 f t SUBTOTAL 0.00 1 2265 \N +85906 2025-06-22 05:23:25.223574+00 2025-06-22 05:23:25.223585+00 f t DESCUENTO 0.00 2 2265 \N +85907 2025-06-22 05:23:25.225217+00 2025-06-22 05:23:25.225226+00 f t TOTAL 0.00 3 2265 \N +85908 2025-06-22 05:23:25.226487+00 2025-06-22 05:23:25.226494+00 f t ADELANTO 0.00 4 2265 \N +92888 2025-06-25 03:43:21.723171+00 2025-06-25 03:43:21.723182+00 f t ADELANTO 34000.00 4 2429 \N +90753 2025-06-24 03:43:22.366319+00 2025-06-24 03:43:22.366329+00 f t SUBTOTAL 0.00 1 2364 \N +90754 2025-06-24 03:43:22.368003+00 2025-06-24 03:43:22.368012+00 f t DESCUENTO 0.00 2 2364 \N +90755 2025-06-24 03:43:22.369261+00 2025-06-24 03:43:22.369268+00 f t TOTAL 0.00 3 2364 \N +90756 2025-06-24 03:43:22.370292+00 2025-06-24 03:43:22.370298+00 f t ADELANTO 0.00 4 2364 \N +90849 2025-06-24 13:18:48.580202+00 2025-06-24 13:18:48.580211+00 f t SUBTOTAL 0.00 1 2372 \N +90850 2025-06-24 13:18:48.581711+00 2025-06-24 13:18:48.581718+00 f t DESCUENTO 0.00 2 2372 \N +90851 2025-06-24 13:18:48.583078+00 2025-06-24 13:18:48.583085+00 f t TOTAL 0.00 3 2372 \N +86757 2025-06-22 14:27:56.508408+00 2025-06-22 14:27:56.508418+00 f t SUBTOTAL 49500.00 1 2275 \N +86758 2025-06-22 14:27:56.509963+00 2025-06-22 14:27:56.509969+00 f t DESCUENTO 0.00 2 2275 \N +86759 2025-06-22 14:27:56.511126+00 2025-06-22 14:27:56.511152+00 f t TOTAL 49500.00 3 2275 \N +86760 2025-06-22 14:27:56.512383+00 2025-06-22 14:27:56.512388+00 f t ADELANTO 11500.00 4 2275 \N +86873 2025-06-22 14:35:42.383093+00 2025-06-22 14:35:42.383104+00 f t SUBTOTAL 0.00 1 2277 \N +86874 2025-06-22 14:35:42.384862+00 2025-06-22 14:35:42.384873+00 f t DESCUENTO 0.00 2 2277 \N +86875 2025-06-22 14:35:42.386402+00 2025-06-22 14:35:42.386413+00 f t TOTAL 0.00 3 2277 \N +86876 2025-06-22 14:35:42.387883+00 2025-06-22 14:35:42.38789+00 f t ADELANTO 0.00 4 2277 \N +86897 2025-06-22 15:40:02.573693+00 2025-06-22 15:40:02.573706+00 f t SUBTOTAL 0.00 1 2280 \N +86898 2025-06-22 15:40:02.601878+00 2025-06-22 15:40:02.60189+00 f t DESCUENTO 0.00 2 2280 \N +86899 2025-06-22 15:40:02.641078+00 2025-06-22 15:40:02.641092+00 f t TOTAL 0.00 3 2280 \N +86900 2025-06-22 15:40:02.65244+00 2025-06-22 15:40:02.652454+00 f t ADELANTO 0.00 4 2280 \N +86925 2025-06-22 15:58:37.122593+00 2025-06-22 15:58:37.122603+00 f t SUBTOTAL 42000.00 1 2281 \N +86926 2025-06-22 15:58:37.124254+00 2025-06-22 15:58:37.124262+00 f t DESCUENTO 0.00 2 2281 \N +86927 2025-06-22 15:58:37.125675+00 2025-06-22 15:58:37.125682+00 f t TOTAL 42000.00 3 2281 \N +86928 2025-06-22 15:58:37.126942+00 2025-06-22 15:58:37.126949+00 f t ADELANTO 9500.00 4 2281 \N +86969 2025-06-22 16:16:14.773377+00 2025-06-22 16:16:14.773387+00 f t SUBTOTAL 42000.00 1 2283 \N +86970 2025-06-22 16:16:14.775101+00 2025-06-22 16:16:14.775112+00 f t DESCUENTO 0.00 2 2283 \N +86971 2025-06-22 16:16:14.776716+00 2025-06-22 16:16:14.776726+00 f t TOTAL 42000.00 3 2283 \N +86972 2025-06-22 16:16:14.777834+00 2025-06-22 16:16:14.777841+00 f t ADELANTO 9500.00 4 2283 \N +87041 2025-06-22 17:47:01.044208+00 2025-06-22 17:47:01.044221+00 f t SUBTOTAL 64500.00 1 2286 \N +87042 2025-06-22 17:47:01.046469+00 2025-06-22 17:47:01.046481+00 f t DESCUENTO 0.00 2 2286 \N +87043 2025-06-22 17:47:01.048345+00 2025-06-22 17:47:01.048357+00 f t TOTAL 64500.00 3 2286 \N +87044 2025-06-22 17:47:01.050179+00 2025-06-22 17:47:01.05019+00 f t ADELANTO 17000.00 4 2286 \N +87121 2025-06-22 20:09:35.227023+00 2025-06-22 20:09:35.227033+00 f t SUBTOTAL 0.00 1 2288 \N +87122 2025-06-22 20:09:35.229031+00 2025-06-22 20:09:35.229041+00 f t DESCUENTO 0.00 2 2288 \N +87123 2025-06-22 20:09:35.230919+00 2025-06-22 20:09:35.230927+00 f t TOTAL 0.00 3 2288 \N +87124 2025-06-22 20:09:35.234006+00 2025-06-22 20:09:35.234015+00 f t ADELANTO 0.00 4 2288 \N +87193 2025-06-22 20:41:15.750802+00 2025-06-22 20:41:15.75081+00 f t SUBTOTAL 62000.00 1 2289 \N +87194 2025-06-22 20:41:15.752739+00 2025-06-22 20:41:15.752748+00 f t DESCUENTO 0.00 2 2289 \N +87195 2025-06-22 20:41:15.75419+00 2025-06-22 20:41:15.754197+00 f t TOTAL 62000.00 3 2289 \N +87196 2025-06-22 20:41:15.75553+00 2025-06-22 20:41:15.755537+00 f t ADELANTO 12000.00 4 2289 \N +89957 2025-06-23 21:52:47.963778+00 2025-06-23 21:52:47.963786+00 f t SUBTOTAL 42000.00 1 2345 \N +89958 2025-06-23 21:52:47.965651+00 2025-06-23 21:52:47.965657+00 f t DESCUENTO 0.00 2 2345 \N +89959 2025-06-23 21:52:47.9669+00 2025-06-23 21:52:47.966905+00 f t TOTAL 42000.00 3 2345 \N +89960 2025-06-23 21:52:47.968077+00 2025-06-23 21:52:47.968082+00 f t ADELANTO 9500.00 4 2345 \N +87313 2025-06-22 21:10:38.306179+00 2025-06-22 21:10:38.306192+00 f t SUBTOTAL 50000.00 1 2291 \N +87314 2025-06-22 21:10:38.308035+00 2025-06-22 21:10:38.308043+00 f t DESCUENTO 0.00 2 2291 \N +87315 2025-06-22 21:10:38.30959+00 2025-06-22 21:10:38.309598+00 f t TOTAL 50000.00 3 2291 \N +87316 2025-06-22 21:10:38.311353+00 2025-06-22 21:10:38.311362+00 f t ADELANTO 10000.00 4 2291 \N +87329 2025-06-22 22:40:30.174597+00 2025-06-22 22:40:30.174607+00 f t SUBTOTAL 0.00 1 2293 \N +87330 2025-06-22 22:40:30.176399+00 2025-06-22 22:40:30.176408+00 f t DESCUENTO 0.00 2 2293 \N +87331 2025-06-22 22:40:30.17782+00 2025-06-22 22:40:30.177827+00 f t TOTAL 0.00 3 2293 \N +87332 2025-06-22 22:40:30.179429+00 2025-06-22 22:40:30.179438+00 f t ADELANTO 0.00 4 2293 \N +87340 2025-06-22 22:44:08.219587+00 2025-06-22 22:44:08.219597+00 f t ADELANTO 0.00 4 2294 \N +95220 2025-06-26 11:24:05.257594+00 2025-06-26 11:24:05.257605+00 f t ADELANTO 0.00 4 2509 \N +90761 2025-06-24 04:10:14.542878+00 2025-06-24 04:10:14.542892+00 f t SUBTOTAL 0.00 1 2365 \N +90762 2025-06-24 04:10:14.544983+00 2025-06-24 04:10:14.544991+00 f t DESCUENTO 0.00 2 2365 \N +90763 2025-06-24 04:10:14.546667+00 2025-06-24 04:10:14.546677+00 f t TOTAL 0.00 3 2365 \N +90764 2025-06-24 04:10:14.548408+00 2025-06-24 04:10:14.548418+00 f t ADELANTO 0.00 4 2365 \N +90852 2025-06-24 13:18:48.584405+00 2025-06-24 13:18:48.584411+00 f t ADELANTO 0.00 4 2372 \N +86713 2025-06-22 14:02:25.399337+00 2025-06-22 14:02:25.399356+00 f t SUBTOTAL 42000.00 1 2273 \N +86714 2025-06-22 14:02:25.401351+00 2025-06-22 14:02:25.401358+00 f t DESCUENTO 0.00 2 2273 \N +86715 2025-06-22 14:02:25.402755+00 2025-06-22 14:02:25.402764+00 f t TOTAL 42000.00 3 2273 \N +86716 2025-06-22 14:02:25.404149+00 2025-06-22 14:02:25.404157+00 f t ADELANTO 9500.00 4 2273 \N +88885 2025-06-23 18:18:40.462245+00 2025-06-23 18:18:40.462253+00 f t SUBTOTAL 144000.00 1 2335 \N +88886 2025-06-23 18:18:40.463837+00 2025-06-23 18:18:40.463843+00 f t DESCUENTO 0.00 2 2335 \N +88887 2025-06-23 18:18:40.464976+00 2025-06-23 18:18:40.464982+00 f t TOTAL 144000.00 3 2335 \N +88888 2025-06-23 18:18:40.465888+00 2025-06-23 18:18:40.465893+00 f t ADELANTO 38000.00 4 2335 \N +90941 2025-06-24 13:49:30.948887+00 2025-06-24 13:49:30.948897+00 f t SUBTOTAL 0.00 1 2374 \N +90942 2025-06-24 13:49:30.950539+00 2025-06-24 13:49:30.950547+00 f t DESCUENTO 0.00 2 2374 \N +90943 2025-06-24 13:49:30.954383+00 2025-06-24 13:49:30.954401+00 f t TOTAL 0.00 3 2374 \N +90944 2025-06-24 13:49:30.956263+00 2025-06-24 13:49:30.956272+00 f t ADELANTO 0.00 4 2374 \N +91033 2025-06-24 14:53:27.511711+00 2025-06-24 14:53:27.511723+00 f t SUBTOTAL 42000.00 1 2376 \N +91034 2025-06-24 14:53:27.513582+00 2025-06-24 14:53:27.51359+00 f t DESCUENTO 0.00 2 2376 \N +91035 2025-06-24 14:53:27.514821+00 2025-06-24 14:53:27.514827+00 f t TOTAL 42000.00 3 2376 \N +89053 2025-06-23 20:16:41.038605+00 2025-06-23 20:16:41.038614+00 f t SUBTOTAL 0.00 1 2342 \N +89054 2025-06-23 20:16:41.042249+00 2025-06-23 20:16:41.042261+00 f t DESCUENTO 0.00 2 2342 \N +89055 2025-06-23 20:16:41.044119+00 2025-06-23 20:16:41.04413+00 f t TOTAL 0.00 3 2342 \N +89056 2025-06-23 20:16:41.046134+00 2025-06-23 20:16:41.046142+00 f t ADELANTO 0.00 4 2342 \N +89085 2025-06-23 20:42:16.940498+00 2025-06-23 20:42:16.940509+00 f t SUBTOTAL 50000.00 1 2343 \N +89086 2025-06-23 20:42:16.942853+00 2025-06-23 20:42:16.942861+00 f t DESCUENTO 0.00 2 2343 \N +89087 2025-06-23 20:42:16.944182+00 2025-06-23 20:42:16.944188+00 f t TOTAL 50000.00 3 2343 \N +89088 2025-06-23 20:42:16.94539+00 2025-06-23 20:42:16.945395+00 f t ADELANTO 10000.00 4 2343 \N +91036 2025-06-24 14:53:27.516185+00 2025-06-24 14:53:27.51619+00 f t ADELANTO 9500.00 4 2376 \N +86881 2025-06-22 15:07:59.127515+00 2025-06-22 15:07:59.127524+00 f t SUBTOTAL 0.00 1 2278 \N +86882 2025-06-22 15:07:59.129033+00 2025-06-22 15:07:59.129043+00 f t DESCUENTO 0.00 2 2278 \N +86883 2025-06-22 15:07:59.130436+00 2025-06-22 15:07:59.130442+00 f t TOTAL 0.00 3 2278 \N +86884 2025-06-22 15:07:59.131553+00 2025-06-22 15:07:59.131559+00 f t ADELANTO 0.00 4 2278 \N +86933 2025-06-22 16:05:37.697229+00 2025-06-22 16:05:37.697241+00 f t SUBTOTAL 0.00 1 2282 \N +86934 2025-06-22 16:05:37.698617+00 2025-06-22 16:05:37.698625+00 f t DESCUENTO 0.00 2 2282 \N +86935 2025-06-22 16:05:37.699899+00 2025-06-22 16:05:37.699906+00 f t TOTAL 0.00 3 2282 \N +86936 2025-06-22 16:05:37.701078+00 2025-06-22 16:05:37.701084+00 f t ADELANTO 0.00 4 2282 \N +86977 2025-06-22 16:40:33.170486+00 2025-06-22 16:40:33.170496+00 f t SUBTOTAL 0.00 1 2284 \N +86978 2025-06-22 16:40:33.172162+00 2025-06-22 16:40:33.172173+00 f t DESCUENTO 0.00 2 2284 \N +86979 2025-06-22 16:40:33.173722+00 2025-06-22 16:40:33.173728+00 f t TOTAL 0.00 3 2284 \N +86980 2025-06-22 16:40:33.175088+00 2025-06-22 16:40:33.175095+00 f t ADELANTO 0.00 4 2284 \N +87005 2025-06-22 17:15:49.382322+00 2025-06-22 17:15:49.38233+00 f t SUBTOTAL 50000.00 1 2285 \N +87006 2025-06-22 17:15:49.384359+00 2025-06-22 17:15:49.384369+00 f t DESCUENTO 0.00 2 2285 \N +87007 2025-06-22 17:15:49.38559+00 2025-06-22 17:15:49.385597+00 f t TOTAL 50000.00 3 2285 \N +87008 2025-06-22 17:15:49.386661+00 2025-06-22 17:15:49.386667+00 f t ADELANTO 10000.00 4 2285 \N +89965 2025-06-23 22:19:28.875584+00 2025-06-23 22:19:28.875596+00 f t SUBTOTAL 0.00 1 2346 \N +89966 2025-06-23 22:19:28.877553+00 2025-06-23 22:19:28.877563+00 f t DESCUENTO 0.00 2 2346 \N +89967 2025-06-23 22:19:28.878969+00 2025-06-23 22:19:28.878976+00 f t TOTAL 0.00 3 2346 \N +89968 2025-06-23 22:19:28.88039+00 2025-06-23 22:19:28.8804+00 f t ADELANTO 0.00 4 2346 \N +90085 2025-06-23 23:04:03.720686+00 2025-06-23 23:04:03.720699+00 f t SUBTOTAL 79700.00 1 2348 \N +90086 2025-06-23 23:04:03.722917+00 2025-06-23 23:04:03.722925+00 f t DESCUENTO 0.00 2 2348 \N +90087 2025-06-23 23:04:03.724483+00 2025-06-23 23:04:03.72449+00 f t TOTAL 79700.00 3 2348 \N +90088 2025-06-23 23:04:03.725968+00 2025-06-23 23:04:03.725975+00 f t ADELANTO 21200.00 4 2348 \N +87241 2025-06-22 20:57:09.383382+00 2025-06-22 20:57:09.383392+00 f t SUBTOTAL 27500.00 1 2290 \N +87242 2025-06-22 20:57:09.386137+00 2025-06-22 20:57:09.386146+00 f t DESCUENTO 0.00 2 2290 \N +87243 2025-06-22 20:57:09.388288+00 2025-06-22 20:57:09.3883+00 f t TOTAL 27500.00 3 2290 \N +87244 2025-06-22 20:57:09.390849+00 2025-06-22 20:57:09.39086+00 f t ADELANTO 27500.00 4 2290 \N +90229 2025-06-23 23:41:13.308816+00 2025-06-23 23:41:13.308825+00 f t SUBTOTAL 88000.00 1 2349 \N +90230 2025-06-23 23:41:13.310439+00 2025-06-23 23:41:13.310446+00 f t DESCUENTO 0.00 2 2349 \N +90231 2025-06-23 23:41:13.311624+00 2025-06-23 23:41:13.311631+00 f t TOTAL 88000.00 3 2349 \N +90232 2025-06-23 23:41:13.312708+00 2025-06-23 23:41:13.312714+00 f t ADELANTO 19000.00 4 2349 \N +90301 2025-06-24 00:09:29.037363+00 2025-06-24 00:09:29.037372+00 f t SUBTOTAL 50000.00 1 2351 \N +90302 2025-06-24 00:09:29.039069+00 2025-06-24 00:09:29.039079+00 f t DESCUENTO 0.00 2 2351 \N +90303 2025-06-24 00:09:29.040492+00 2025-06-24 00:09:29.040498+00 f t TOTAL 50000.00 3 2351 \N +90304 2025-06-24 00:09:29.041528+00 2025-06-24 00:09:29.041533+00 f t ADELANTO 10000.00 4 2351 \N +86449 2025-06-22 05:40:32.171945+00 2025-06-22 05:40:32.171955+00 f t SUBTOTAL 0.00 1 2266 \N +86450 2025-06-22 05:40:32.174065+00 2025-06-22 05:40:32.174074+00 f t DESCUENTO 0.00 2 2266 \N +86451 2025-06-22 05:40:32.176114+00 2025-06-22 05:40:32.176122+00 f t TOTAL 0.00 3 2266 \N +86452 2025-06-22 05:40:32.179097+00 2025-06-22 05:40:32.179105+00 f t ADELANTO 0.00 4 2266 \N +87321 2025-06-22 21:12:18.017464+00 2025-06-22 21:12:18.017474+00 f t SUBTOTAL 0.00 1 2292 \N +87322 2025-06-22 21:12:18.019178+00 2025-06-22 21:12:18.019185+00 f t DESCUENTO 0.00 2 2292 \N +87323 2025-06-22 21:12:18.020715+00 2025-06-22 21:12:18.020721+00 f t TOTAL 0.00 3 2292 \N +87324 2025-06-22 21:12:18.021953+00 2025-06-22 21:12:18.021959+00 f t ADELANTO 0.00 4 2292 \N +90393 2025-06-24 00:38:59.716179+00 2025-06-24 00:38:59.716187+00 f t SUBTOTAL 0.00 1 2354 \N +90394 2025-06-24 00:38:59.71754+00 2025-06-24 00:38:59.717549+00 f t DESCUENTO 0.00 2 2354 \N +90395 2025-06-24 00:38:59.718785+00 2025-06-24 00:38:59.718791+00 f t TOTAL 0.00 3 2354 \N +87337 2025-06-22 22:44:08.213784+00 2025-06-22 22:44:08.213798+00 f t SUBTOTAL 0.00 1 2294 \N +87338 2025-06-22 22:44:08.215851+00 2025-06-22 22:44:08.215862+00 f t DESCUENTO 0.00 2 2294 \N +87339 2025-06-22 22:44:08.217884+00 2025-06-22 22:44:08.217895+00 f t TOTAL 0.00 3 2294 \N +90769 2025-06-24 04:22:33.864618+00 2025-06-24 04:22:33.864629+00 f t SUBTOTAL 0.00 1 2366 \N +90770 2025-06-24 04:22:33.86606+00 2025-06-24 04:22:33.866068+00 f t DESCUENTO 0.00 2 2366 \N +90771 2025-06-24 04:22:33.867384+00 2025-06-24 04:22:33.867391+00 f t TOTAL 0.00 3 2366 \N +90772 2025-06-24 04:22:33.868714+00 2025-06-24 04:22:33.868723+00 f t ADELANTO 0.00 4 2366 \N +87365 2025-06-22 23:23:35.398174+00 2025-06-22 23:23:35.398187+00 f t SUBTOTAL 49500.00 1 2295 \N +87366 2025-06-22 23:23:35.40025+00 2025-06-22 23:23:35.400258+00 f t DESCUENTO 0.00 2 2295 \N +87367 2025-06-22 23:23:35.401736+00 2025-06-22 23:23:35.401743+00 f t TOTAL 49500.00 3 2295 \N +87368 2025-06-22 23:23:35.402974+00 2025-06-22 23:23:35.402981+00 f t ADELANTO 11500.00 4 2295 \N +88805 2025-06-23 18:14:00.063918+00 2025-06-23 18:14:00.063931+00 f t SUBTOTAL 70000.00 1 2334 \N +88806 2025-06-23 18:14:00.065811+00 2025-06-23 18:14:00.065821+00 f t DESCUENTO 0.00 2 2334 \N +87373 2025-06-23 00:22:05.647047+00 2025-06-23 00:22:05.647056+00 f t SUBTOTAL 0.00 1 2296 \N +87374 2025-06-23 00:22:05.648486+00 2025-06-23 00:22:05.648495+00 f t DESCUENTO 0.00 2 2296 \N +87375 2025-06-23 00:22:05.649624+00 2025-06-23 00:22:05.64963+00 f t TOTAL 0.00 3 2296 \N +87376 2025-06-23 00:22:05.650806+00 2025-06-23 00:22:05.650812+00 f t ADELANTO 0.00 4 2296 \N +88807 2025-06-23 18:14:00.067115+00 2025-06-23 18:14:00.067122+00 f t TOTAL 70000.00 3 2334 \N +88808 2025-06-23 18:14:00.068403+00 2025-06-23 18:14:00.06841+00 f t ADELANTO 15000.00 4 2334 \N +93185 2025-06-25 12:45:51.73665+00 2025-06-25 12:45:51.73666+00 f t SUBTOTAL 125500.00 1 2438 \N +93186 2025-06-25 12:45:51.738247+00 2025-06-25 12:45:51.738254+00 f t DESCUENTO 0.00 2 2438 \N +93187 2025-06-25 12:45:51.739549+00 2025-06-25 12:45:51.739555+00 f t TOTAL 125500.00 3 2438 \N +93188 2025-06-25 12:45:51.740735+00 2025-06-25 12:45:51.740741+00 f t ADELANTO 28000.00 4 2438 \N +93229 2025-06-25 13:46:41.767+00 2025-06-25 13:46:41.767011+00 f t SUBTOTAL 95000.00 1 2441 \N +93230 2025-06-25 13:46:41.769306+00 2025-06-25 13:46:41.769316+00 f t DESCUENTO 0.00 2 2441 \N +93231 2025-06-25 13:46:41.771214+00 2025-06-25 13:46:41.771223+00 f t TOTAL 95000.00 3 2441 \N +93232 2025-06-25 13:46:41.772586+00 2025-06-25 13:46:41.772592+00 f t ADELANTO 10000.00 4 2441 \N +87405 2025-06-23 01:38:26.505395+00 2025-06-23 01:38:26.505404+00 f t SUBTOTAL 50000.00 1 2297 \N +87406 2025-06-23 01:38:26.507029+00 2025-06-23 01:38:26.507036+00 f t DESCUENTO 0.00 2 2297 \N +87407 2025-06-23 01:38:26.508189+00 2025-06-23 01:38:26.508195+00 f t TOTAL 50000.00 3 2297 \N +87408 2025-06-23 01:38:26.509413+00 2025-06-23 01:38:26.509418+00 f t ADELANTO 10000.00 4 2297 \N +89013 2025-06-23 18:36:10.749429+00 2025-06-23 18:36:10.749444+00 f t SUBTOTAL 0.00 1 2338 \N +89014 2025-06-23 18:36:10.752057+00 2025-06-23 18:36:10.752069+00 f t DESCUENTO 0.00 2 2338 \N +89015 2025-06-23 18:36:10.753834+00 2025-06-23 18:36:10.753843+00 f t TOTAL 0.00 3 2338 \N +89016 2025-06-23 18:36:10.755318+00 2025-06-23 18:36:10.755327+00 f t ADELANTO 0.00 4 2338 \N +91005 2025-06-24 14:46:51.69034+00 2025-06-24 14:46:51.690348+00 f t SUBTOTAL 111000.00 1 2375 \N +91006 2025-06-24 14:46:51.691986+00 2025-06-24 14:46:51.691993+00 f t DESCUENTO 0.00 2 2375 \N +91007 2025-06-24 14:46:51.693475+00 2025-06-24 14:46:51.693486+00 f t TOTAL 111000.00 3 2375 \N +91008 2025-06-24 14:46:51.69467+00 2025-06-24 14:46:51.694676+00 f t ADELANTO 23500.00 4 2375 \N +87445 2025-06-23 02:16:10.937414+00 2025-06-23 02:16:10.937423+00 f t SUBTOTAL 64500.00 1 2298 \N +87446 2025-06-23 02:16:10.938951+00 2025-06-23 02:16:10.938958+00 f t DESCUENTO 0.00 2 2298 \N +87447 2025-06-23 02:16:10.940089+00 2025-06-23 02:16:10.940095+00 f t TOTAL 64500.00 3 2298 \N +87448 2025-06-23 02:16:10.941066+00 2025-06-23 02:16:10.941071+00 f t ADELANTO 17000.00 4 2298 \N +87501 2025-06-23 02:33:21.56105+00 2025-06-23 02:33:21.561059+00 f t SUBTOTAL 73700.00 1 2299 \N +87502 2025-06-23 02:33:21.562859+00 2025-06-23 02:33:21.562867+00 f t DESCUENTO 0.00 2 2299 \N +87503 2025-06-23 02:33:21.564259+00 2025-06-23 02:33:21.564269+00 f t TOTAL 73700.00 3 2299 \N +87504 2025-06-23 02:33:21.566574+00 2025-06-23 02:33:21.566583+00 f t ADELANTO 35700.00 4 2299 \N +87533 2025-06-23 02:34:22.802837+00 2025-06-23 02:34:22.802849+00 f t SUBTOTAL 0.00 1 2301 \N +87534 2025-06-23 02:34:22.804553+00 2025-06-23 02:34:22.80456+00 f t DESCUENTO 0.00 2 2301 \N +87535 2025-06-23 02:34:22.805735+00 2025-06-23 02:34:22.80574+00 f t TOTAL 0.00 3 2301 \N +87536 2025-06-23 02:34:22.806776+00 2025-06-23 02:34:22.806782+00 f t ADELANTO 0.00 4 2301 \N +91717 2025-06-24 19:59:56.858264+00 2025-06-24 19:59:56.858273+00 f t SUBTOTAL 0.00 1 2396 \N +91718 2025-06-24 19:59:56.860487+00 2025-06-24 19:59:56.860495+00 f t DESCUENTO 0.00 2 2396 \N +91719 2025-06-24 19:59:56.862226+00 2025-06-24 19:59:56.862235+00 f t TOTAL 0.00 3 2396 \N +91720 2025-06-24 19:59:56.863486+00 2025-06-24 19:59:56.863493+00 f t ADELANTO 0.00 4 2396 \N +87565 2025-06-23 02:35:21.59095+00 2025-06-23 02:35:21.59096+00 f t SUBTOTAL 134900.00 1 2300 \N +87566 2025-06-23 02:35:21.592886+00 2025-06-23 02:35:21.592895+00 f t DESCUENTO 0.00 2 2300 \N +87567 2025-06-23 02:35:21.594562+00 2025-06-23 02:35:21.594572+00 f t TOTAL 134900.00 3 2300 \N +87568 2025-06-23 02:35:21.596368+00 2025-06-23 02:35:21.596375+00 f t ADELANTO 25900.00 4 2300 \N +87573 2025-06-23 02:36:40.715565+00 2025-06-23 02:36:40.715577+00 f t SUBTOTAL 0.00 1 2302 \N +87574 2025-06-23 02:36:40.717563+00 2025-06-23 02:36:40.717572+00 f t DESCUENTO 0.00 2 2302 \N +87575 2025-06-23 02:36:40.71912+00 2025-06-23 02:36:40.719155+00 f t TOTAL 0.00 3 2302 \N +87576 2025-06-23 02:36:40.720557+00 2025-06-23 02:36:40.720566+00 f t ADELANTO 0.00 4 2302 \N +90001 2025-06-23 22:42:25.787475+00 2025-06-23 22:42:25.787483+00 f t SUBTOTAL 62000.00 1 2347 \N +90002 2025-06-23 22:42:25.7893+00 2025-06-23 22:42:25.789307+00 f t DESCUENTO 0.00 2 2347 \N +87581 2025-06-23 02:37:52.542309+00 2025-06-23 02:37:52.542319+00 f t SUBTOTAL 0.00 1 2303 \N +87582 2025-06-23 02:37:52.544273+00 2025-06-23 02:37:52.544284+00 f t DESCUENTO 0.00 2 2303 \N +87583 2025-06-23 02:37:52.545699+00 2025-06-23 02:37:52.545705+00 f t TOTAL 0.00 3 2303 \N +87584 2025-06-23 02:37:52.547029+00 2025-06-23 02:37:52.547036+00 f t ADELANTO 0.00 4 2303 \N +90003 2025-06-23 22:42:25.790598+00 2025-06-23 22:42:25.790604+00 f t TOTAL 62000.00 3 2347 \N +90004 2025-06-23 22:42:25.792013+00 2025-06-23 22:42:25.792023+00 f t ADELANTO 12000.00 4 2347 \N +87589 2025-06-23 02:55:06.464536+00 2025-06-23 02:55:06.464546+00 f t SUBTOTAL 0.00 1 2304 \N +87590 2025-06-23 02:55:06.467058+00 2025-06-23 02:55:06.46707+00 f t DESCUENTO 0.00 2 2304 \N +87591 2025-06-23 02:55:06.469242+00 2025-06-23 02:55:06.469253+00 f t TOTAL 0.00 3 2304 \N +87592 2025-06-23 02:55:06.470865+00 2025-06-23 02:55:06.470875+00 f t ADELANTO 0.00 4 2304 \N +91961 2025-06-24 20:44:04.465368+00 2025-06-24 20:44:04.465377+00 f t SUBTOTAL 50000.00 1 2403 \N +91962 2025-06-24 20:44:04.467285+00 2025-06-24 20:44:04.467296+00 f t DESCUENTO 0.00 2 2403 \N +91963 2025-06-24 20:44:04.468974+00 2025-06-24 20:44:04.468982+00 f t TOTAL 50000.00 3 2403 \N +91964 2025-06-24 20:44:04.470156+00 2025-06-24 20:44:04.470164+00 f t ADELANTO 10000.00 4 2403 \N +87621 2025-06-23 03:24:14.894457+00 2025-06-23 03:24:14.894466+00 f t SUBTOTAL 62000.00 1 2305 \N +87622 2025-06-23 03:24:14.896217+00 2025-06-23 03:24:14.896224+00 f t DESCUENTO 0.00 2 2305 \N +87623 2025-06-23 03:24:14.897593+00 2025-06-23 03:24:14.8976+00 f t TOTAL 62000.00 3 2305 \N +87624 2025-06-23 03:24:14.898622+00 2025-06-23 03:24:14.898627+00 f t ADELANTO 12000.00 4 2305 \N +88637 2025-06-23 17:45:07.144311+00 2025-06-23 17:45:07.144324+00 f t SUBTOTAL 0.00 1 2330 \N +88638 2025-06-23 17:45:07.147001+00 2025-06-23 17:45:07.147011+00 f t DESCUENTO 0.00 2 2330 \N +88639 2025-06-23 17:45:07.149039+00 2025-06-23 17:45:07.149047+00 f t TOTAL 0.00 3 2330 \N +88640 2025-06-23 17:45:07.150471+00 2025-06-23 17:45:07.150479+00 f t ADELANTO 0.00 4 2330 \N +109933 2025-07-03 01:16:22.62813+00 2025-07-03 01:16:22.628138+00 f t SUBTOTAL 0.00 1 2887 \N +109934 2025-07-03 01:16:22.629527+00 2025-07-03 01:16:22.629532+00 f t DESCUENTO 0.00 2 2887 \N +109935 2025-07-03 01:16:22.630487+00 2025-07-03 01:16:22.630492+00 f t TOTAL 0.00 3 2887 \N +109936 2025-07-03 01:16:22.631367+00 2025-07-03 01:16:22.631374+00 f t ADELANTO 0.00 4 2887 \N +90777 2025-06-24 09:33:37.823198+00 2025-06-24 09:33:37.823207+00 f t SUBTOTAL 0.00 1 2367 \N +90778 2025-06-24 09:33:37.824576+00 2025-06-24 09:33:37.824585+00 f t DESCUENTO 0.00 2 2367 \N +90779 2025-06-24 09:33:37.825771+00 2025-06-24 09:33:37.825777+00 f t TOTAL 0.00 3 2367 \N +90780 2025-06-24 09:33:37.827035+00 2025-06-24 09:33:37.827044+00 f t ADELANTO 0.00 4 2367 \N +93025 2025-06-25 05:55:51.263269+00 2025-06-25 05:55:51.263278+00 f t SUBTOTAL 50000.00 1 2431 \N +93026 2025-06-25 05:55:51.265534+00 2025-06-25 05:55:51.265542+00 f t DESCUENTO 0.00 2 2431 \N +93027 2025-06-25 05:55:51.267547+00 2025-06-25 05:55:51.267555+00 f t TOTAL 50000.00 3 2431 \N +93028 2025-06-25 05:55:51.268775+00 2025-06-25 05:55:51.268781+00 f t ADELANTO 10000.00 4 2431 \N +87673 2025-06-23 03:55:03.19621+00 2025-06-23 03:55:03.196226+00 f t SUBTOTAL 88000.00 1 2306 \N +87674 2025-06-23 03:55:03.199583+00 2025-06-23 03:55:03.199597+00 f t DESCUENTO 0.00 2 2306 \N +87675 2025-06-23 03:55:03.202067+00 2025-06-23 03:55:03.20208+00 f t TOTAL 88000.00 3 2306 \N +87676 2025-06-23 03:55:03.205425+00 2025-06-23 03:55:03.205438+00 f t ADELANTO 19000.00 4 2306 \N +93193 2025-06-25 13:35:05.235066+00 2025-06-25 13:35:05.235082+00 f t SUBTOTAL 0.00 1 2439 \N +93194 2025-06-25 13:35:05.238514+00 2025-06-25 13:35:05.238527+00 f t DESCUENTO 0.00 2 2439 \N +93195 2025-06-25 13:35:05.241186+00 2025-06-25 13:35:05.2412+00 f t TOTAL 0.00 3 2439 \N +93196 2025-06-25 13:35:05.244983+00 2025-06-25 13:35:05.244997+00 f t ADELANTO 0.00 4 2439 \N +93237 2025-06-25 14:15:40.20572+00 2025-06-25 14:15:40.205732+00 f t SUBTOTAL 0.00 1 2442 \N +93238 2025-06-25 14:15:40.207346+00 2025-06-25 14:15:40.207359+00 f t DESCUENTO 0.00 2 2442 \N +93239 2025-06-25 14:15:40.208785+00 2025-06-25 14:15:40.208792+00 f t TOTAL 0.00 3 2442 \N +93240 2025-06-25 14:15:40.210064+00 2025-06-25 14:15:40.210073+00 f t ADELANTO 0.00 4 2442 \N +89021 2025-06-23 19:49:13.534221+00 2025-06-23 19:49:13.53423+00 f t SUBTOTAL 0.00 1 2339 \N +89022 2025-06-23 19:49:13.535649+00 2025-06-23 19:49:13.535656+00 f t DESCUENTO 0.00 2 2339 \N +89023 2025-06-23 19:49:13.536895+00 2025-06-23 19:49:13.536902+00 f t TOTAL 0.00 3 2339 \N +87697 2025-06-23 03:56:30.586223+00 2025-06-23 03:56:30.586232+00 f t SUBTOTAL 42000.00 1 2307 \N +87698 2025-06-23 03:56:30.587923+00 2025-06-23 03:56:30.58793+00 f t DESCUENTO 0.00 2 2307 \N +87699 2025-06-23 03:56:30.589479+00 2025-06-23 03:56:30.589486+00 f t TOTAL 42000.00 3 2307 \N +87700 2025-06-23 03:56:30.590658+00 2025-06-23 03:56:30.590665+00 f t ADELANTO 9500.00 4 2307 \N +89024 2025-06-23 19:49:13.538109+00 2025-06-23 19:49:13.538116+00 f t ADELANTO 0.00 4 2339 \N +87745 2025-06-23 04:02:55.074929+00 2025-06-23 04:02:55.074938+00 f t SUBTOTAL 49500.00 1 2308 \N +87746 2025-06-23 04:02:55.076947+00 2025-06-23 04:02:55.076955+00 f t DESCUENTO 0.00 2 2308 \N +87747 2025-06-23 04:02:55.078445+00 2025-06-23 04:02:55.078453+00 f t TOTAL 49500.00 3 2308 \N +87748 2025-06-23 04:02:55.079874+00 2025-06-23 04:02:55.079881+00 f t ADELANTO 11500.00 4 2308 \N +91497 2025-06-24 17:40:59.226798+00 2025-06-24 17:40:59.22681+00 f t SUBTOTAL 0.00 1 2388 \N +91498 2025-06-24 17:40:59.228724+00 2025-06-24 17:40:59.228734+00 f t DESCUENTO 0.00 2 2388 \N +91499 2025-06-24 17:40:59.230011+00 2025-06-24 17:40:59.230017+00 f t TOTAL 0.00 3 2388 \N +91500 2025-06-24 17:40:59.231018+00 2025-06-24 17:40:59.231024+00 f t ADELANTO 0.00 4 2388 \N +91525 2025-06-24 18:14:32.564222+00 2025-06-24 18:14:32.564232+00 f t SUBTOTAL 42000.00 1 2389 \N +91526 2025-06-24 18:14:32.566665+00 2025-06-24 18:14:32.566677+00 f t DESCUENTO 0.00 2 2389 \N +91527 2025-06-24 18:14:32.568591+00 2025-06-24 18:14:32.568642+00 f t TOTAL 42000.00 3 2389 \N +91528 2025-06-24 18:14:32.570435+00 2025-06-24 18:14:32.570444+00 f t ADELANTO 9500.00 4 2389 \N +91553 2025-06-24 18:25:04.126014+00 2025-06-24 18:25:04.126024+00 f t SUBTOTAL 88000.00 1 2390 \N +91554 2025-06-24 18:25:04.129425+00 2025-06-24 18:25:04.129439+00 f t DESCUENTO 0.00 2 2390 \N +91555 2025-06-24 18:25:04.137012+00 2025-06-24 18:25:04.137028+00 f t TOTAL 88000.00 3 2390 \N +91556 2025-06-24 18:25:04.147183+00 2025-06-24 18:25:04.147196+00 f t ADELANTO 19000.00 4 2390 \N +87801 2025-06-23 06:57:29.033988+00 2025-06-23 06:57:29.033999+00 f t SUBTOTAL 0.00 1 2309 \N +87802 2025-06-23 06:57:29.036+00 2025-06-23 06:57:29.036007+00 f t DESCUENTO 0.00 2 2309 \N +87803 2025-06-23 06:57:29.037285+00 2025-06-23 06:57:29.037292+00 f t TOTAL 0.00 3 2309 \N +87804 2025-06-23 06:57:29.038574+00 2025-06-23 06:57:29.038582+00 f t ADELANTO 0.00 4 2309 \N +91725 2025-06-24 20:08:00.311336+00 2025-06-24 20:08:00.311346+00 f t SUBTOTAL 0.00 1 2397 \N +91726 2025-06-24 20:08:00.312828+00 2025-06-24 20:08:00.312835+00 f t DESCUENTO 0.00 2 2397 \N +91727 2025-06-24 20:08:00.314238+00 2025-06-24 20:08:00.314248+00 f t TOTAL 0.00 3 2397 \N +91728 2025-06-24 20:08:00.315366+00 2025-06-24 20:08:00.315374+00 f t ADELANTO 0.00 4 2397 \N +87837 2025-06-23 07:15:09.134443+00 2025-06-23 07:15:09.134451+00 f t SUBTOTAL 50000.00 1 2310 \N +87838 2025-06-23 07:15:09.136212+00 2025-06-23 07:15:09.136218+00 f t DESCUENTO 0.00 2 2310 \N +87839 2025-06-23 07:15:09.137619+00 2025-06-23 07:15:09.137625+00 f t TOTAL 50000.00 3 2310 \N +87840 2025-06-23 07:15:09.138974+00 2025-06-23 07:15:09.138979+00 f t ADELANTO 10000.00 4 2310 \N +91965 2025-06-24 20:44:04.517574+00 2025-06-24 20:44:04.517586+00 f t SUBTOTAL 64500.00 1 2402 \N +91966 2025-06-24 20:44:04.519366+00 2025-06-24 20:44:04.519376+00 f t DESCUENTO 0.00 2 2402 \N +91967 2025-06-24 20:44:04.521008+00 2025-06-24 20:44:04.521016+00 f t TOTAL 64500.00 3 2402 \N +91968 2025-06-24 20:44:04.522586+00 2025-06-24 20:44:04.522594+00 f t ADELANTO 17000.00 4 2402 \N +91993 2025-06-24 21:12:56.716063+00 2025-06-24 21:12:56.716073+00 f t SUBTOTAL 42000.00 1 2404 \N +91994 2025-06-24 21:12:56.717995+00 2025-06-24 21:12:56.718004+00 f t DESCUENTO 0.00 2 2404 \N +91995 2025-06-24 21:12:56.719633+00 2025-06-24 21:12:56.71964+00 f t TOTAL 42000.00 3 2404 \N +91996 2025-06-24 21:12:56.720897+00 2025-06-24 21:12:56.720904+00 f t ADELANTO 9500.00 4 2404 \N +87905 2025-06-23 08:06:03.960374+00 2025-06-23 08:06:03.960387+00 f t SUBTOTAL 42000.00 1 2311 \N +87906 2025-06-23 08:06:03.962332+00 2025-06-23 08:06:03.962344+00 f t DESCUENTO 0.00 2 2311 \N +87907 2025-06-23 08:06:03.963936+00 2025-06-23 08:06:03.963945+00 f t TOTAL 42000.00 3 2311 \N +87908 2025-06-23 08:06:03.965524+00 2025-06-23 08:06:03.965533+00 f t ADELANTO 9500.00 4 2311 \N +90396 2025-06-24 00:38:59.720126+00 2025-06-24 00:38:59.720131+00 f t ADELANTO 0.00 4 2354 \N +87913 2025-06-23 10:34:55.983573+00 2025-06-23 10:34:55.983582+00 f t SUBTOTAL 0.00 1 2312 \N +87914 2025-06-23 10:34:55.985047+00 2025-06-23 10:34:55.985056+00 f t DESCUENTO 0.00 2 2312 \N +87915 2025-06-23 10:34:55.986215+00 2025-06-23 10:34:55.986221+00 f t TOTAL 0.00 3 2312 \N +87916 2025-06-23 10:34:55.987256+00 2025-06-23 10:34:55.987262+00 f t ADELANTO 0.00 4 2312 \N +466537 2025-11-07 21:55:10.962432+00 2025-11-07 21:55:10.96244+00 f t SUBTOTAL 46000.00 1 11695 \N +87941 2025-06-23 11:19:19.559114+00 2025-06-23 11:19:19.559124+00 f t SUBTOTAL 50000.00 1 2313 \N +87942 2025-06-23 11:19:19.560741+00 2025-06-23 11:19:19.560749+00 f t DESCUENTO 0.00 2 2313 \N +87943 2025-06-23 11:19:19.561972+00 2025-06-23 11:19:19.561977+00 f t TOTAL 50000.00 3 2313 \N +87944 2025-06-23 11:19:19.563068+00 2025-06-23 11:19:19.563074+00 f t ADELANTO 10000.00 4 2313 \N +90785 2025-06-24 09:51:22.100099+00 2025-06-24 09:51:22.100108+00 f t SUBTOTAL 0.00 1 2368 \N +90786 2025-06-24 09:51:22.101577+00 2025-06-24 09:51:22.101585+00 f t DESCUENTO 0.00 2 2368 \N +90787 2025-06-24 09:51:22.102947+00 2025-06-24 09:51:22.102954+00 f t TOTAL 0.00 3 2368 \N +90788 2025-06-24 09:51:22.10468+00 2025-06-24 09:51:22.10469+00 f t ADELANTO 0.00 4 2368 \N +95445 2025-06-26 12:22:53.860589+00 2025-06-26 12:22:53.8606+00 f t SUBTOTAL 72000.00 1 2512 \N +95446 2025-06-26 12:22:53.863282+00 2025-06-26 12:22:53.863296+00 f t DESCUENTO 0.00 2 2512 \N +95447 2025-06-26 12:22:53.868989+00 2025-06-26 12:22:53.869001+00 f t TOTAL 72000.00 3 2512 \N +95448 2025-06-26 12:22:53.871455+00 2025-06-26 12:22:53.87148+00 f t ADELANTO 19000.00 4 2512 \N +93201 2025-06-25 13:39:53.269387+00 2025-06-25 13:39:53.269397+00 f t SUBTOTAL 0.00 1 2440 \N +93202 2025-06-25 13:39:53.271302+00 2025-06-25 13:39:53.271313+00 f t DESCUENTO 0.00 2 2440 \N +93203 2025-06-25 13:39:53.272866+00 2025-06-25 13:39:53.272874+00 f t TOTAL 0.00 3 2440 \N +93204 2025-06-25 13:39:53.274207+00 2025-06-25 13:39:53.274214+00 f t ADELANTO 0.00 4 2440 \N +91073 2025-06-24 15:05:48.175069+00 2025-06-24 15:05:48.175083+00 f t SUBTOTAL 42000.00 1 2377 \N +91074 2025-06-24 15:05:48.176912+00 2025-06-24 15:05:48.176921+00 f t DESCUENTO 0.00 2 2377 \N +91075 2025-06-24 15:05:48.178208+00 2025-06-24 15:05:48.178215+00 f t TOTAL 42000.00 3 2377 \N +91076 2025-06-24 15:05:48.179572+00 2025-06-24 15:05:48.179582+00 f t ADELANTO 9500.00 4 2377 \N +93245 2025-06-25 14:17:11.765701+00 2025-06-25 14:17:11.765713+00 f t SUBTOTAL 0.00 1 2443 \N +93246 2025-06-25 14:17:11.76744+00 2025-06-25 14:17:11.76745+00 f t DESCUENTO 0.00 2 2443 \N +93247 2025-06-25 14:17:11.769243+00 2025-06-25 14:17:11.769253+00 f t TOTAL 0.00 3 2443 \N +93248 2025-06-25 14:17:11.770837+00 2025-06-25 14:17:11.770847+00 f t ADELANTO 0.00 4 2443 \N +89029 2025-06-23 19:59:33.963884+00 2025-06-23 19:59:33.963901+00 f t SUBTOTAL 0.00 1 2340 \N +89030 2025-06-23 19:59:33.965803+00 2025-06-23 19:59:33.965813+00 f t DESCUENTO 0.00 2 2340 \N +89031 2025-06-23 19:59:33.967523+00 2025-06-23 19:59:33.96753+00 f t TOTAL 0.00 3 2340 \N +89032 2025-06-23 19:59:33.968776+00 2025-06-23 19:59:33.968782+00 f t ADELANTO 0.00 4 2340 \N +91157 2025-06-24 15:10:38.536135+00 2025-06-24 15:10:38.536145+00 f t SUBTOTAL 61000.00 1 2380 \N +91158 2025-06-24 15:10:38.538214+00 2025-06-24 15:10:38.538222+00 f t DESCUENTO 0.00 2 2380 \N +91159 2025-06-24 15:10:38.539741+00 2025-06-24 15:10:38.539749+00 f t TOTAL 61000.00 3 2380 \N +91160 2025-06-24 15:10:38.54142+00 2025-06-24 15:10:38.541428+00 f t ADELANTO 11000.00 4 2380 \N +91289 2025-06-24 15:45:16.545348+00 2025-06-24 15:45:16.545357+00 f t SUBTOTAL 107200.00 1 2383 \N +91290 2025-06-24 15:45:16.547364+00 2025-06-24 15:45:16.547376+00 f t DESCUENTO 0.00 2 2383 \N +91291 2025-06-24 15:45:16.549357+00 2025-06-24 15:45:16.549368+00 f t TOTAL 107200.00 3 2383 \N +91292 2025-06-24 15:45:16.551312+00 2025-06-24 15:45:16.551323+00 f t ADELANTO 69200.00 4 2383 \N +88021 2025-06-23 11:34:50.593483+00 2025-06-23 11:34:50.593492+00 f t SUBTOTAL 0.00 1 2314 \N +88022 2025-06-23 11:34:50.595183+00 2025-06-23 11:34:50.595189+00 f t DESCUENTO 0.00 2 2314 \N +88023 2025-06-23 11:34:50.59635+00 2025-06-23 11:34:50.596355+00 f t TOTAL 0.00 3 2314 \N +88024 2025-06-23 11:34:50.597387+00 2025-06-23 11:34:50.597393+00 f t ADELANTO 0.00 4 2314 \N +91317 2025-06-24 16:14:15.253106+00 2025-06-24 16:14:15.253115+00 f t SUBTOTAL 42000.00 1 2384 \N +91318 2025-06-24 16:14:15.255092+00 2025-06-24 16:14:15.2551+00 f t DESCUENTO 0.00 2 2384 \N +91319 2025-06-24 16:14:15.25624+00 2025-06-24 16:14:15.256245+00 f t TOTAL 42000.00 3 2384 \N +91320 2025-06-24 16:14:15.257983+00 2025-06-24 16:14:15.257988+00 f t ADELANTO 9500.00 4 2384 \N +91345 2025-06-24 16:38:48.616865+00 2025-06-24 16:38:48.616874+00 f t SUBTOTAL 42000.00 1 2385 \N +91346 2025-06-24 16:38:48.618783+00 2025-06-24 16:38:48.61879+00 f t DESCUENTO 0.00 2 2385 \N +91347 2025-06-24 16:38:48.620066+00 2025-06-24 16:38:48.620072+00 f t TOTAL 42000.00 3 2385 \N +91348 2025-06-24 16:38:48.621101+00 2025-06-24 16:38:48.621107+00 f t ADELANTO 9500.00 4 2385 \N +88053 2025-06-23 12:06:43.038387+00 2025-06-23 12:06:43.038395+00 f t SUBTOTAL 50000.00 1 2315 \N +88054 2025-06-23 12:06:43.039827+00 2025-06-23 12:06:43.039834+00 f t DESCUENTO 0.00 2 2315 \N +88055 2025-06-23 12:06:43.040767+00 2025-06-23 12:06:43.040772+00 f t TOTAL 50000.00 3 2315 \N +88056 2025-06-23 12:06:43.041841+00 2025-06-23 12:06:43.041847+00 f t ADELANTO 10000.00 4 2315 \N +91585 2025-06-24 18:27:41.758712+00 2025-06-24 18:27:41.758725+00 f t SUBTOTAL 0.00 1 2391 \N +91586 2025-06-24 18:27:41.760697+00 2025-06-24 18:27:41.760706+00 f t DESCUENTO 0.00 2 2391 \N +91587 2025-06-24 18:27:41.762039+00 2025-06-24 18:27:41.762045+00 f t TOTAL 0.00 3 2391 \N +91588 2025-06-24 18:27:41.76342+00 2025-06-24 18:27:41.763428+00 f t ADELANTO 0.00 4 2391 \N +88105 2025-06-23 12:09:20.585983+00 2025-06-23 12:09:20.585991+00 f t SUBTOTAL 99000.00 1 2316 \N +88106 2025-06-23 12:09:20.587514+00 2025-06-23 12:09:20.58752+00 f t DESCUENTO 0.00 2 2316 \N +88107 2025-06-23 12:09:20.588987+00 2025-06-23 12:09:20.588996+00 f t TOTAL 99000.00 3 2316 \N +88108 2025-06-23 12:09:20.590409+00 2025-06-23 12:09:20.590417+00 f t ADELANTO 23000.00 4 2316 \N +91809 2025-06-24 20:13:11.353293+00 2025-06-24 20:13:11.353302+00 f t SUBTOTAL 49500.00 1 2398 \N +91810 2025-06-24 20:13:11.355164+00 2025-06-24 20:13:11.355172+00 f t DESCUENTO 0.00 2 2398 \N +91811 2025-06-24 20:13:11.35659+00 2025-06-24 20:13:11.356596+00 f t TOTAL 49500.00 3 2398 \N +91812 2025-06-24 20:13:11.357709+00 2025-06-24 20:13:11.357714+00 f t ADELANTO 11500.00 4 2398 \N +88173 2025-06-23 12:12:39.198952+00 2025-06-23 12:12:39.198964+00 f t SUBTOTAL 42000.00 1 2317 \N +88174 2025-06-23 12:12:39.201123+00 2025-06-23 12:12:39.201135+00 f t DESCUENTO 0.00 2 2317 \N +88175 2025-06-23 12:12:39.202935+00 2025-06-23 12:12:39.202945+00 f t TOTAL 42000.00 3 2317 \N +88176 2025-06-23 12:12:39.204251+00 2025-06-23 12:12:39.204259+00 f t ADELANTO 9500.00 4 2317 \N +90401 2025-06-24 00:39:22.623337+00 2025-06-24 00:39:22.623347+00 f t SUBTOTAL 0.00 1 2355 \N +90402 2025-06-24 00:39:22.624702+00 2025-06-24 00:39:22.624709+00 f t DESCUENTO 0.00 2 2355 \N +90403 2025-06-24 00:39:22.62615+00 2025-06-24 00:39:22.626159+00 f t TOTAL 0.00 3 2355 \N +90404 2025-06-24 00:39:22.627503+00 2025-06-24 00:39:22.627509+00 f t ADELANTO 0.00 4 2355 \N +88209 2025-06-23 13:06:46.250661+00 2025-06-23 13:06:46.25067+00 f t SUBTOTAL 94700.00 1 2318 \N +88210 2025-06-23 13:06:46.252282+00 2025-06-23 13:06:46.252288+00 f t DESCUENTO 0.00 2 2318 \N +88211 2025-06-23 13:06:46.253452+00 2025-06-23 13:06:46.253459+00 f t TOTAL 94700.00 3 2318 \N +88212 2025-06-23 13:06:46.254791+00 2025-06-23 13:06:46.2548+00 f t ADELANTO 56700.00 4 2318 \N +88217 2025-06-23 13:11:49.285895+00 2025-06-23 13:11:49.285903+00 f t SUBTOTAL 0.00 1 2319 \N +88218 2025-06-23 13:11:49.287355+00 2025-06-23 13:11:49.287361+00 f t DESCUENTO 0.00 2 2319 \N +88219 2025-06-23 13:11:49.288298+00 2025-06-23 13:11:49.288303+00 f t TOTAL 0.00 3 2319 \N +88220 2025-06-23 13:11:49.28913+00 2025-06-23 13:11:49.289135+00 f t ADELANTO 0.00 4 2319 \N +181633 2025-08-02 17:56:54.776637+00 2025-08-02 17:56:54.776648+00 f t SUBTOTAL 42000.00 1 4768 \N +88225 2025-06-23 13:37:49.637654+00 2025-06-23 13:37:49.637663+00 f t SUBTOTAL 0.00 1 2320 \N +88226 2025-06-23 13:37:49.639191+00 2025-06-23 13:37:49.639197+00 f t DESCUENTO 0.00 2 2320 \N +88227 2025-06-23 13:37:49.640421+00 2025-06-23 13:37:49.64043+00 f t TOTAL 0.00 3 2320 \N +88228 2025-06-23 13:37:49.64156+00 2025-06-23 13:37:49.641566+00 f t ADELANTO 0.00 4 2320 \N +181634 2025-08-02 17:56:54.778833+00 2025-08-02 17:56:54.778842+00 f t DESCUENTO 0.00 2 4768 \N +181635 2025-08-02 17:56:54.780448+00 2025-08-02 17:56:54.780455+00 f t TOTAL 42000.00 3 4768 \N +90793 2025-06-24 09:55:23.514372+00 2025-06-24 09:55:23.514384+00 f t SUBTOTAL 0.00 1 2369 \N +90794 2025-06-24 09:55:23.51628+00 2025-06-24 09:55:23.516291+00 f t DESCUENTO 0.00 2 2369 \N +90795 2025-06-24 09:55:23.517925+00 2025-06-24 09:55:23.517935+00 f t TOTAL 0.00 3 2369 \N +90796 2025-06-24 09:55:23.519441+00 2025-06-24 09:55:23.519451+00 f t ADELANTO 0.00 4 2369 \N +93253 2025-06-25 14:18:23.846481+00 2025-06-25 14:18:23.846494+00 f t SUBTOTAL 0.00 1 2444 \N +93254 2025-06-25 14:18:23.847946+00 2025-06-25 14:18:23.847954+00 f t DESCUENTO 0.00 2 2444 \N +93255 2025-06-25 14:18:23.849384+00 2025-06-25 14:18:23.849392+00 f t TOTAL 0.00 3 2444 \N +93256 2025-06-25 14:18:23.851114+00 2025-06-25 14:18:23.851121+00 f t ADELANTO 0.00 4 2444 \N +89037 2025-06-23 20:07:55.806229+00 2025-06-23 20:07:55.806258+00 f t SUBTOTAL 0.00 1 2341 \N +89038 2025-06-23 20:07:55.807886+00 2025-06-23 20:07:55.807894+00 f t DESCUENTO 0.00 2 2341 \N +89039 2025-06-23 20:07:55.809316+00 2025-06-23 20:07:55.809322+00 f t TOTAL 0.00 3 2341 \N +89040 2025-06-23 20:07:55.810333+00 2025-06-23 20:07:55.810339+00 f t ADELANTO 0.00 4 2341 \N +91081 2025-06-24 15:07:52.205236+00 2025-06-24 15:07:52.205247+00 f t SUBTOTAL 0.00 1 2378 \N +91082 2025-06-24 15:07:52.207298+00 2025-06-24 15:07:52.207307+00 f t DESCUENTO 0.00 2 2378 \N +91083 2025-06-24 15:07:52.209422+00 2025-06-24 15:07:52.209433+00 f t TOTAL 0.00 3 2378 \N +91084 2025-06-24 15:07:52.21091+00 2025-06-24 15:07:52.210917+00 f t ADELANTO 0.00 4 2378 \N +93369 2025-06-25 14:28:00.490203+00 2025-06-25 14:28:00.490214+00 f t SUBTOTAL 154000.00 1 2449 \N +93370 2025-06-25 14:28:00.492155+00 2025-06-25 14:28:00.492162+00 f t DESCUENTO 0.00 2 2449 \N +93371 2025-06-25 14:28:00.493788+00 2025-06-25 14:28:00.493796+00 f t TOTAL 154000.00 3 2449 \N +93372 2025-06-25 14:28:00.495334+00 2025-06-25 14:28:00.49534+00 f t ADELANTO 31500.00 4 2449 \N +88309 2025-06-23 14:24:16.246826+00 2025-06-23 14:24:16.246835+00 f t SUBTOTAL 56000.00 1 2322 \N +88310 2025-06-23 14:24:16.248695+00 2025-06-23 14:24:16.248702+00 f t DESCUENTO 0.00 2 2322 \N +88311 2025-06-23 14:24:16.249837+00 2025-06-23 14:24:16.249845+00 f t TOTAL 56000.00 3 2322 \N +88312 2025-06-23 14:24:16.25606+00 2025-06-23 14:24:16.256069+00 f t ADELANTO 48000.00 4 2322 \N +88325 2025-06-23 14:24:38.434094+00 2025-06-23 14:24:38.434103+00 f t SUBTOTAL 42000.00 1 2321 \N +88326 2025-06-23 14:24:38.435515+00 2025-06-23 14:24:38.435521+00 f t DESCUENTO 0.00 2 2321 \N +88327 2025-06-23 14:24:38.436695+00 2025-06-23 14:24:38.436704+00 f t TOTAL 42000.00 3 2321 \N +88328 2025-06-23 14:24:38.437817+00 2025-06-23 14:24:38.437822+00 f t ADELANTO 9500.00 4 2321 \N +88333 2025-06-23 14:40:51.002907+00 2025-06-23 14:40:51.002917+00 f t SUBTOTAL 0.00 1 2323 \N +88334 2025-06-23 14:40:51.004758+00 2025-06-23 14:40:51.004769+00 f t DESCUENTO 0.00 2 2323 \N +88335 2025-06-23 14:40:51.006373+00 2025-06-23 14:40:51.006381+00 f t TOTAL 0.00 3 2323 \N +88336 2025-06-23 14:40:51.007637+00 2025-06-23 14:40:51.007644+00 f t ADELANTO 0.00 4 2323 \N +91353 2025-06-24 16:39:12.743013+00 2025-06-24 16:39:12.743022+00 f t SUBTOTAL 0.00 1 2386 \N +91354 2025-06-24 16:39:12.744421+00 2025-06-24 16:39:12.744428+00 f t DESCUENTO 0.00 2 2386 \N +91355 2025-06-24 16:39:12.745688+00 2025-06-24 16:39:12.745694+00 f t TOTAL 0.00 3 2386 \N +91356 2025-06-24 16:39:12.746794+00 2025-06-24 16:39:12.7468+00 f t ADELANTO 0.00 4 2386 \N +91381 2025-06-24 16:42:17.568259+00 2025-06-24 16:42:17.568268+00 f t SUBTOTAL 64500.00 1 2387 \N +91382 2025-06-24 16:42:17.569975+00 2025-06-24 16:42:17.569983+00 f t DESCUENTO 0.00 2 2387 \N +91383 2025-06-24 16:42:17.57122+00 2025-06-24 16:42:17.571227+00 f t TOTAL 64500.00 3 2387 \N +91384 2025-06-24 16:42:17.572386+00 2025-06-24 16:42:17.572392+00 f t ADELANTO 17000.00 4 2387 \N +88373 2025-06-23 15:17:57.172122+00 2025-06-23 15:17:57.172135+00 f t SUBTOTAL 97500.00 1 2324 \N +88374 2025-06-23 15:17:57.174094+00 2025-06-23 15:17:57.174105+00 f t DESCUENTO 0.00 2 2324 \N +88375 2025-06-23 15:17:57.175596+00 2025-06-23 15:17:57.175607+00 f t TOTAL 97500.00 3 2324 \N +88376 2025-06-23 15:17:57.176985+00 2025-06-23 15:17:57.176993+00 f t ADELANTO 37500.00 4 2324 \N +91593 2025-06-24 18:36:41.513837+00 2025-06-24 18:36:41.513851+00 f t SUBTOTAL 0.00 1 2392 \N +91594 2025-06-24 18:36:41.515621+00 2025-06-24 18:36:41.515633+00 f t DESCUENTO 0.00 2 2392 \N +91595 2025-06-24 18:36:41.517204+00 2025-06-24 18:36:41.517213+00 f t TOTAL 0.00 3 2392 \N +91596 2025-06-24 18:36:41.518718+00 2025-06-24 18:36:41.518726+00 f t ADELANTO 0.00 4 2392 \N +88401 2025-06-23 16:13:25.750567+00 2025-06-23 16:13:25.750604+00 f t SUBTOTAL 64500.00 1 2325 \N +88402 2025-06-23 16:13:25.752349+00 2025-06-23 16:13:25.752356+00 f t DESCUENTO 0.00 2 2325 \N +88403 2025-06-23 16:13:25.753656+00 2025-06-23 16:13:25.753665+00 f t TOTAL 64500.00 3 2325 \N +88404 2025-06-23 16:13:25.755156+00 2025-06-23 16:13:25.755163+00 f t ADELANTO 17000.00 4 2325 \N +91701 2025-06-24 18:41:16.336046+00 2025-06-24 18:41:16.336058+00 f t SUBTOTAL 119500.00 1 2395 \N +91702 2025-06-24 18:41:16.33792+00 2025-06-24 18:41:16.33793+00 f t DESCUENTO 0.00 2 2395 \N +91703 2025-06-24 18:41:16.339607+00 2025-06-24 18:41:16.339617+00 f t TOTAL 119500.00 3 2395 \N +91704 2025-06-24 18:41:16.340942+00 2025-06-24 18:41:16.34095+00 f t ADELANTO 26500.00 4 2395 \N +91861 2025-06-24 20:14:25.278666+00 2025-06-24 20:14:25.278675+00 f t SUBTOTAL 102700.00 1 2399 \N +91862 2025-06-24 20:14:25.280254+00 2025-06-24 20:14:25.280263+00 f t DESCUENTO 0.00 2 2399 \N +91863 2025-06-24 20:14:25.281454+00 2025-06-24 20:14:25.28146+00 f t TOTAL 102700.00 3 2399 \N +91864 2025-06-24 20:14:25.28255+00 2025-06-24 20:14:25.282555+00 f t ADELANTO 64700.00 4 2399 \N +88449 2025-06-23 16:25:33.466024+00 2025-06-23 16:25:33.466033+00 f t SUBTOTAL 49500.00 1 2326 \N +88450 2025-06-23 16:25:33.467703+00 2025-06-23 16:25:33.46771+00 f t DESCUENTO 0.00 2 2326 \N +88451 2025-06-23 16:25:33.469007+00 2025-06-23 16:25:33.469012+00 f t TOTAL 49500.00 3 2326 \N +88452 2025-06-23 16:25:33.470089+00 2025-06-23 16:25:33.470093+00 f t ADELANTO 11500.00 4 2326 \N +90333 2025-06-24 00:13:35.507874+00 2025-06-24 00:13:35.507883+00 f t SUBTOTAL 72000.00 1 2350 \N +90334 2025-06-24 00:13:35.509775+00 2025-06-24 00:13:35.509783+00 f t DESCUENTO 0.00 2 2350 \N +90335 2025-06-24 00:13:35.511196+00 2025-06-24 00:13:35.511203+00 f t TOTAL 72000.00 3 2350 \N +90336 2025-06-24 00:13:35.512581+00 2025-06-24 00:13:35.512589+00 f t ADELANTO 19000.00 4 2350 \N +90377 2025-06-24 00:34:57.124313+00 2025-06-24 00:34:57.124321+00 f t SUBTOTAL 64500.00 1 2352 \N +90378 2025-06-24 00:34:57.126577+00 2025-06-24 00:34:57.126588+00 f t DESCUENTO 0.00 2 2352 \N +90379 2025-06-24 00:34:57.128449+00 2025-06-24 00:34:57.128456+00 f t TOTAL 64500.00 3 2352 \N +90380 2025-06-24 00:34:57.130132+00 2025-06-24 00:34:57.130139+00 f t ADELANTO 17000.00 4 2352 \N +95269 2025-06-26 11:44:33.082333+00 2025-06-26 11:44:33.082342+00 f t SUBTOTAL 72000.00 1 2510 \N +95270 2025-06-26 11:44:33.084062+00 2025-06-26 11:44:33.08407+00 f t DESCUENTO 0.00 2 2510 \N +95271 2025-06-26 11:44:33.08553+00 2025-06-26 11:44:33.085538+00 f t TOTAL 72000.00 3 2510 \N +88697 2025-06-23 18:11:18.705161+00 2025-06-23 18:11:18.705171+00 f t SUBTOTAL 64500.00 1 2333 \N +88698 2025-06-23 18:11:18.70715+00 2025-06-23 18:11:18.707159+00 f t DESCUENTO 0.00 2 2333 \N +88699 2025-06-23 18:11:18.708871+00 2025-06-23 18:11:18.708878+00 f t TOTAL 64500.00 3 2333 \N +88700 2025-06-23 18:11:18.710272+00 2025-06-23 18:11:18.710282+00 f t ADELANTO 17000.00 4 2333 \N +95272 2025-06-26 11:44:33.087034+00 2025-06-26 11:44:33.087041+00 f t ADELANTO 19000.00 4 2510 \N +88521 2025-06-23 16:42:04.802009+00 2025-06-23 16:42:04.802049+00 f t SUBTOTAL 134700.00 1 2327 \N +88522 2025-06-23 16:42:04.80376+00 2025-06-23 16:42:04.803767+00 f t DESCUENTO 0.00 2 2327 \N +88523 2025-06-23 16:42:04.805047+00 2025-06-23 16:42:04.805053+00 f t TOTAL 134700.00 3 2327 \N +88524 2025-06-23 16:42:04.80688+00 2025-06-23 16:42:04.806886+00 f t ADELANTO 96700.00 4 2327 \N +93041 2025-06-25 07:20:04.333574+00 2025-06-25 07:20:04.333589+00 f t SUBTOTAL 0.00 1 2432 \N +93042 2025-06-25 07:20:04.337779+00 2025-06-25 07:20:04.337793+00 f t DESCUENTO 0.00 2 2432 \N +93043 2025-06-25 07:20:04.340825+00 2025-06-25 07:20:04.340834+00 f t TOTAL 0.00 3 2432 \N +93044 2025-06-25 07:20:04.344019+00 2025-06-25 07:20:04.344033+00 f t ADELANTO 0.00 4 2432 \N +90833 2025-06-24 13:00:22.695621+00 2025-06-24 13:00:22.695635+00 f t SUBTOTAL 42000.00 1 2370 \N +90834 2025-06-24 13:00:22.700093+00 2025-06-24 13:00:22.700105+00 f t DESCUENTO 0.00 2 2370 \N +90835 2025-06-24 13:00:22.702653+00 2025-06-24 13:00:22.702668+00 f t TOTAL 42000.00 3 2370 \N +90836 2025-06-24 13:00:22.704848+00 2025-06-24 13:00:22.704857+00 f t ADELANTO 9500.00 4 2370 \N +88937 2025-06-23 18:20:36.049491+00 2025-06-23 18:20:36.049504+00 f t SUBTOTAL 134900.00 1 2336 \N +88938 2025-06-23 18:20:36.051448+00 2025-06-23 18:20:36.051459+00 f t DESCUENTO 0.00 2 2336 \N +88939 2025-06-23 18:20:36.053212+00 2025-06-23 18:20:36.053224+00 f t TOTAL 134900.00 3 2336 \N +88940 2025-06-23 18:20:36.054798+00 2025-06-23 18:20:36.054809+00 f t ADELANTO 28400.00 4 2336 \N +88997 2025-06-23 18:33:57.616862+00 2025-06-23 18:33:57.616871+00 f t SUBTOTAL 107200.00 1 2337 \N +88998 2025-06-23 18:33:57.618427+00 2025-06-23 18:33:57.618434+00 f t DESCUENTO 0.00 2 2337 \N +88999 2025-06-23 18:33:57.619542+00 2025-06-23 18:33:57.619547+00 f t TOTAL 107200.00 3 2337 \N +89000 2025-06-23 18:33:57.620984+00 2025-06-23 18:33:57.620991+00 f t ADELANTO 69200.00 4 2337 \N +93261 2025-06-25 14:18:42.75478+00 2025-06-25 14:18:42.754792+00 f t SUBTOTAL 0.00 1 2445 \N +93262 2025-06-25 14:18:42.756275+00 2025-06-25 14:18:42.756281+00 f t DESCUENTO 0.00 2 2445 \N +93263 2025-06-25 14:18:42.757467+00 2025-06-25 14:18:42.757473+00 f t TOTAL 0.00 3 2445 \N +93264 2025-06-25 14:18:42.758424+00 2025-06-25 14:18:42.758429+00 f t ADELANTO 0.00 4 2445 \N +91089 2025-06-24 15:08:13.637794+00 2025-06-24 15:08:13.637808+00 f t SUBTOTAL 0.00 1 2379 \N +91090 2025-06-24 15:08:13.639811+00 2025-06-24 15:08:13.639822+00 f t DESCUENTO 0.00 2 2379 \N +91091 2025-06-24 15:08:13.641683+00 2025-06-24 15:08:13.641694+00 f t TOTAL 0.00 3 2379 \N +91092 2025-06-24 15:08:13.643224+00 2025-06-24 15:08:13.643234+00 f t ADELANTO 0.00 4 2379 \N +89193 2025-06-23 20:56:56.769439+00 2025-06-23 20:56:56.769453+00 f t SUBTOTAL 156700.00 1 2344 \N +89194 2025-06-23 20:56:56.771894+00 2025-06-23 20:56:56.771902+00 f t DESCUENTO 0.00 2 2344 \N +88589 2025-06-23 16:53:13.038966+00 2025-06-23 16:53:13.038978+00 f t SUBTOTAL 49500.00 1 2328 \N +88590 2025-06-23 16:53:13.040782+00 2025-06-23 16:53:13.040792+00 f t DESCUENTO 0.00 2 2328 \N +88591 2025-06-23 16:53:13.042434+00 2025-06-23 16:53:13.042444+00 f t TOTAL 49500.00 3 2328 \N +88592 2025-06-23 16:53:13.044135+00 2025-06-23 16:53:13.044145+00 f t ADELANTO 11500.00 4 2328 \N +89195 2025-06-23 20:56:56.773633+00 2025-06-23 20:56:56.773642+00 f t TOTAL 156700.00 3 2344 \N +89196 2025-06-23 20:56:56.775238+00 2025-06-23 20:56:56.775246+00 f t ADELANTO 33700.00 4 2344 \N +93377 2025-06-25 15:05:48.951264+00 2025-06-25 15:05:48.951276+00 f t SUBTOTAL 0.00 1 2450 \N +93378 2025-06-25 15:05:48.952927+00 2025-06-25 15:05:48.952934+00 f t DESCUENTO 0.00 2 2450 \N +93379 2025-06-25 15:05:48.954431+00 2025-06-25 15:05:48.954438+00 f t TOTAL 0.00 3 2450 \N +93380 2025-06-25 15:05:48.955856+00 2025-06-25 15:05:48.955864+00 f t ADELANTO 0.00 4 2450 \N +91193 2025-06-24 15:27:31.381922+00 2025-06-24 15:27:31.381935+00 f t SUBTOTAL 49700.00 1 2381 \N +91194 2025-06-24 15:27:31.383891+00 2025-06-24 15:27:31.383899+00 f t DESCUENTO 0.00 2 2381 \N +91195 2025-06-24 15:27:31.385413+00 2025-06-24 15:27:31.38542+00 f t TOTAL 49700.00 3 2381 \N +91196 2025-06-24 15:27:31.386602+00 2025-06-24 15:27:31.386609+00 f t ADELANTO 11700.00 4 2381 \N +93497 2025-06-25 16:49:14.787154+00 2025-06-25 16:49:14.787164+00 f t SUBTOTAL 107200.00 1 2454 \N +93498 2025-06-25 16:49:14.788863+00 2025-06-25 16:49:14.78887+00 f t DESCUENTO 0.00 2 2454 \N +93499 2025-06-25 16:49:14.790083+00 2025-06-25 16:49:14.790091+00 f t TOTAL 107200.00 3 2454 \N +93500 2025-06-25 16:49:14.791305+00 2025-06-25 16:49:14.791311+00 f t ADELANTO 69200.00 4 2454 \N +93549 2025-06-25 16:53:36.110944+00 2025-06-25 16:53:36.110953+00 f t SUBTOTAL 180200.00 1 2455 \N +93550 2025-06-25 16:53:36.112805+00 2025-06-25 16:53:36.112816+00 f t DESCUENTO 0.00 2 2455 \N +93551 2025-06-25 16:53:36.114466+00 2025-06-25 16:53:36.1145+00 f t TOTAL 180200.00 3 2455 \N +93552 2025-06-25 16:53:36.115848+00 2025-06-25 16:53:36.115854+00 f t ADELANTO 142200.00 4 2455 \N +93605 2025-06-25 17:24:09.804645+00 2025-06-25 17:24:09.804654+00 f t SUBTOTAL 0.00 1 2457 \N +93606 2025-06-25 17:24:09.80633+00 2025-06-25 17:24:09.806341+00 f t DESCUENTO 0.00 2 2457 \N +93607 2025-06-25 17:24:09.807889+00 2025-06-25 17:24:09.807897+00 f t TOTAL 0.00 3 2457 \N +93608 2025-06-25 17:24:09.808945+00 2025-06-25 17:24:09.80895+00 f t ADELANTO 0.00 4 2457 \N +93701 2025-06-25 18:53:17.630534+00 2025-06-25 18:53:17.630547+00 f t SUBTOTAL 111000.00 1 2461 \N +93702 2025-06-25 18:53:17.632122+00 2025-06-25 18:53:17.632129+00 f t DESCUENTO 0.00 2 2461 \N +93703 2025-06-25 18:53:17.633459+00 2025-06-25 18:53:17.633466+00 f t TOTAL 111000.00 3 2461 \N +93704 2025-06-25 18:53:17.63462+00 2025-06-25 18:53:17.634626+00 f t ADELANTO 23500.00 4 2461 \N +91625 2025-06-24 18:38:53.150616+00 2025-06-24 18:38:53.150627+00 f t SUBTOTAL 70000.00 1 2393 \N +91626 2025-06-24 18:38:53.154305+00 2025-06-24 18:38:53.154315+00 f t DESCUENTO 0.00 2 2393 \N +91627 2025-06-24 18:38:53.156285+00 2025-06-24 18:38:53.156294+00 f t TOTAL 70000.00 3 2393 \N +91628 2025-06-24 18:38:53.157916+00 2025-06-24 18:38:53.157925+00 f t ADELANTO 15000.00 4 2393 \N +93741 2025-06-25 19:13:28.276288+00 2025-06-25 19:13:28.276298+00 f t SUBTOTAL 0.00 1 2463 \N +91869 2025-06-24 20:16:18.005579+00 2025-06-24 20:16:18.005588+00 f t SUBTOTAL 0.00 1 2400 \N +91870 2025-06-24 20:16:18.006802+00 2025-06-24 20:16:18.006809+00 f t DESCUENTO 0.00 2 2400 \N +91871 2025-06-24 20:16:18.008313+00 2025-06-24 20:16:18.008319+00 f t TOTAL 0.00 3 2400 \N +91872 2025-06-24 20:16:18.009491+00 2025-06-24 20:16:18.009497+00 f t ADELANTO 0.00 4 2400 \N +90385 2025-06-24 00:36:10.64925+00 2025-06-24 00:36:10.649265+00 f t SUBTOTAL 0.00 1 2353 \N +90386 2025-06-24 00:36:10.651633+00 2025-06-24 00:36:10.651644+00 f t DESCUENTO 0.00 2 2353 \N +90387 2025-06-24 00:36:10.654017+00 2025-06-24 00:36:10.654029+00 f t TOTAL 0.00 3 2353 \N +90388 2025-06-24 00:36:10.656213+00 2025-06-24 00:36:10.656225+00 f t ADELANTO 0.00 4 2353 \N +109941 2025-07-03 01:51:37.952254+00 2025-07-03 01:51:37.952261+00 f t SUBTOTAL 0.00 1 2888 \N +109942 2025-07-03 01:51:37.953862+00 2025-07-03 01:51:37.953868+00 f t DESCUENTO 0.00 2 2888 \N +109943 2025-07-03 01:51:37.954921+00 2025-07-03 01:51:37.954926+00 f t TOTAL 0.00 3 2888 \N +109944 2025-07-03 01:51:37.955931+00 2025-07-03 01:51:37.955936+00 f t ADELANTO 0.00 4 2888 \N +90737 2025-06-24 02:15:43.990318+00 2025-06-24 02:15:43.990331+00 f t SUBTOTAL 61000.00 1 2362 \N +90738 2025-06-24 02:15:43.992559+00 2025-06-24 02:15:43.992567+00 f t DESCUENTO 0.00 2 2362 \N +90739 2025-06-24 02:15:43.99404+00 2025-06-24 02:15:43.994049+00 f t TOTAL 61000.00 3 2362 \N +90740 2025-06-24 02:15:43.995675+00 2025-06-24 02:15:43.995683+00 f t ADELANTO 11000.00 4 2362 \N +92997 2025-06-25 03:49:33.732394+00 2025-06-25 03:49:33.732403+00 f t SUBTOTAL 107200.00 1 2430 \N +92998 2025-06-25 03:49:33.734091+00 2025-06-25 03:49:33.734098+00 f t DESCUENTO 0.00 2 2430 \N +90473 2025-06-24 01:23:22.90526+00 2025-06-24 01:23:22.905273+00 f t SUBTOTAL 169200.00 1 2356 \N +90474 2025-06-24 01:23:22.90717+00 2025-06-24 01:23:22.90718+00 f t DESCUENTO 0.00 2 2356 \N +90475 2025-06-24 01:23:22.908732+00 2025-06-24 01:23:22.908739+00 f t TOTAL 169200.00 3 2356 \N +90476 2025-06-24 01:23:22.910041+00 2025-06-24 01:23:22.910049+00 f t ADELANTO 81200.00 4 2356 \N +92999 2025-06-25 03:49:33.735435+00 2025-06-25 03:49:33.735443+00 f t TOTAL 107200.00 3 2430 \N +93000 2025-06-25 03:49:33.736839+00 2025-06-25 03:49:33.736846+00 f t ADELANTO 69200.00 4 2430 \N +90841 2025-06-24 13:16:10.461127+00 2025-06-24 13:16:10.46114+00 f t SUBTOTAL 0.00 1 2371 \N +90842 2025-06-24 13:16:10.463045+00 2025-06-24 13:16:10.463056+00 f t DESCUENTO 0.00 2 2371 \N +90843 2025-06-24 13:16:10.464745+00 2025-06-24 13:16:10.464755+00 f t TOTAL 0.00 3 2371 \N +90844 2025-06-24 13:16:10.466432+00 2025-06-24 13:16:10.466442+00 f t ADELANTO 0.00 4 2371 \N +93049 2025-06-25 08:23:15.090649+00 2025-06-25 08:23:15.090658+00 f t SUBTOTAL 0.00 1 2433 \N +93050 2025-06-25 08:23:15.092405+00 2025-06-25 08:23:15.092413+00 f t DESCUENTO 0.00 2 2433 \N +93051 2025-06-25 08:23:15.093646+00 2025-06-25 08:23:15.093652+00 f t TOTAL 0.00 3 2433 \N +93052 2025-06-25 08:23:15.094893+00 2025-06-25 08:23:15.094899+00 f t ADELANTO 0.00 4 2433 \N +90933 2025-06-24 13:41:51.504644+00 2025-06-24 13:41:51.504656+00 f t SUBTOTAL 50000.00 1 2373 \N +90934 2025-06-24 13:41:51.506215+00 2025-06-24 13:41:51.506221+00 f t DESCUENTO 0.00 2 2373 \N +90935 2025-06-24 13:41:51.507437+00 2025-06-24 13:41:51.507444+00 f t TOTAL 50000.00 3 2373 \N +90936 2025-06-24 13:41:51.508782+00 2025-06-24 13:41:51.508795+00 f t ADELANTO 10000.00 4 2373 \N +93269 2025-06-25 14:21:36.669453+00 2025-06-25 14:21:36.669462+00 f t SUBTOTAL 0.00 1 2446 \N +93270 2025-06-25 14:21:36.670782+00 2025-06-25 14:21:36.670789+00 f t DESCUENTO 0.00 2 2446 \N +93271 2025-06-25 14:21:36.672142+00 2025-06-25 14:21:36.67215+00 f t TOTAL 0.00 3 2446 \N +93272 2025-06-25 14:21:36.673443+00 2025-06-25 14:21:36.673449+00 f t ADELANTO 0.00 4 2446 \N +90521 2025-06-24 01:29:22.716283+00 2025-06-24 01:29:22.716292+00 f t SUBTOTAL 138500.00 1 2357 \N +90522 2025-06-24 01:29:22.717949+00 2025-06-24 01:29:22.717956+00 f t DESCUENTO 0.00 2 2357 \N +90523 2025-06-24 01:29:22.719056+00 2025-06-24 01:29:22.719061+00 f t TOTAL 138500.00 3 2357 \N +90524 2025-06-24 01:29:22.720245+00 2025-06-24 01:29:22.720252+00 f t ADELANTO 51000.00 4 2357 \N +93385 2025-06-25 15:38:11.611384+00 2025-06-25 15:38:11.611395+00 f t SUBTOTAL 0.00 1 2451 \N +93386 2025-06-25 15:38:11.613087+00 2025-06-25 15:38:11.613097+00 f t DESCUENTO 0.00 2 2451 \N +93387 2025-06-25 15:38:11.614856+00 2025-06-25 15:38:11.614866+00 f t TOTAL 0.00 3 2451 \N +93388 2025-06-25 15:38:11.616249+00 2025-06-25 15:38:11.616257+00 f t ADELANTO 0.00 4 2451 \N +91249 2025-06-24 15:36:43.754212+00 2025-06-24 15:36:43.754224+00 f t SUBTOTAL 157000.00 1 2382 \N +91250 2025-06-24 15:36:43.756377+00 2025-06-24 15:36:43.756388+00 f t DESCUENTO 0.00 2 2382 \N +90549 2025-06-24 01:37:20.63668+00 2025-06-24 01:37:20.636688+00 f t SUBTOTAL 79000.00 1 2358 \N +90550 2025-06-24 01:37:20.638336+00 2025-06-24 01:37:20.638343+00 f t DESCUENTO 0.00 2 2358 \N +90551 2025-06-24 01:37:20.640703+00 2025-06-24 01:37:20.640714+00 f t TOTAL 79000.00 3 2358 \N +90552 2025-06-24 01:37:20.642337+00 2025-06-24 01:37:20.642346+00 f t ADELANTO 17500.00 4 2358 \N +91251 2025-06-24 15:36:43.758153+00 2025-06-24 15:36:43.758165+00 f t TOTAL 157000.00 3 2382 \N +91252 2025-06-24 15:36:43.75987+00 2025-06-24 15:36:43.75988+00 f t ADELANTO 22000.00 4 2382 \N +90585 2025-06-24 01:45:01.235684+00 2025-06-24 01:45:01.235696+00 f t SUBTOTAL 42000.00 1 2359 \N +90586 2025-06-24 01:45:01.238836+00 2025-06-24 01:45:01.238848+00 f t DESCUENTO 0.00 2 2359 \N +90587 2025-06-24 01:45:01.243602+00 2025-06-24 01:45:01.243616+00 f t TOTAL 42000.00 3 2359 \N +90588 2025-06-24 01:45:01.247635+00 2025-06-24 01:45:01.247649+00 f t ADELANTO 9500.00 4 2359 \N +93613 2025-06-25 17:25:51.348064+00 2025-06-25 17:25:51.348072+00 f t SUBTOTAL 0.00 1 2458 \N +93614 2025-06-25 17:25:51.34959+00 2025-06-25 17:25:51.349597+00 f t DESCUENTO 0.00 2 2458 \N +93615 2025-06-25 17:25:51.350847+00 2025-06-25 17:25:51.350854+00 f t TOTAL 0.00 3 2458 \N +93616 2025-06-25 17:25:51.351922+00 2025-06-25 17:25:51.351929+00 f t ADELANTO 0.00 4 2458 \N +91633 2025-06-24 18:38:58.240893+00 2025-06-24 18:38:58.240905+00 f t SUBTOTAL 0.00 1 2394 \N +91634 2025-06-24 18:38:58.243256+00 2025-06-24 18:38:58.243268+00 f t DESCUENTO 0.00 2 2394 \N +91635 2025-06-24 18:38:58.248005+00 2025-06-24 18:38:58.248017+00 f t TOTAL 0.00 3 2394 \N +91636 2025-06-24 18:38:58.252966+00 2025-06-24 18:38:58.252981+00 f t ADELANTO 0.00 4 2394 \N +93742 2025-06-25 19:13:28.277809+00 2025-06-25 19:13:28.277817+00 f t DESCUENTO 0.00 2 2463 \N +93743 2025-06-25 19:13:28.280557+00 2025-06-25 19:13:28.280565+00 f t TOTAL 0.00 3 2463 \N +93744 2025-06-25 19:13:28.282251+00 2025-06-25 19:13:28.282261+00 f t ADELANTO 0.00 4 2463 \N +91877 2025-06-24 20:20:54.38136+00 2025-06-24 20:20:54.381372+00 f t SUBTOTAL 0.00 1 2401 \N +91878 2025-06-24 20:20:54.382989+00 2025-06-24 20:20:54.382997+00 f t DESCUENTO 0.00 2 2401 \N +91879 2025-06-24 20:20:54.384504+00 2025-06-24 20:20:54.384512+00 f t TOTAL 0.00 3 2401 \N +91880 2025-06-24 20:20:54.385711+00 2025-06-24 20:20:54.385718+00 f t ADELANTO 0.00 4 2401 \N +93825 2025-06-25 20:45:31.265742+00 2025-06-25 20:45:31.265751+00 f t SUBTOTAL 0.00 1 2466 \N +93826 2025-06-25 20:45:31.267452+00 2025-06-25 20:45:31.267462+00 f t DESCUENTO 0.00 2 2466 \N +93827 2025-06-25 20:45:31.268857+00 2025-06-25 20:45:31.268863+00 f t TOTAL 0.00 3 2466 \N +93828 2025-06-25 20:45:31.269843+00 2025-06-25 20:45:31.269849+00 f t ADELANTO 0.00 4 2466 \N +93853 2025-06-25 20:48:27.9731+00 2025-06-25 20:48:27.973112+00 f t SUBTOTAL 95000.00 1 2467 \N +93854 2025-06-25 20:48:27.975243+00 2025-06-25 20:48:27.975254+00 f t DESCUENTO 0.00 2 2467 \N +93855 2025-06-25 20:48:27.976988+00 2025-06-25 20:48:27.976997+00 f t TOTAL 95000.00 3 2467 \N +93856 2025-06-25 20:48:27.978455+00 2025-06-25 20:48:27.978464+00 f t ADELANTO 10000.00 4 2467 \N +93869 2025-06-25 22:24:56.818855+00 2025-06-25 22:24:56.818863+00 f t SUBTOTAL 0.00 1 2469 \N +93870 2025-06-25 22:24:56.82023+00 2025-06-25 22:24:56.820236+00 f t DESCUENTO 0.00 2 2469 \N +93871 2025-06-25 22:24:56.821265+00 2025-06-25 22:24:56.82127+00 f t TOTAL 0.00 3 2469 \N +92289 2025-06-24 22:40:11.276185+00 2025-06-24 22:40:11.276198+00 f t SUBTOTAL 70000.00 1 2405 \N +92290 2025-06-24 22:40:11.278381+00 2025-06-24 22:40:11.278392+00 f t DESCUENTO 0.00 2 2405 \N +92291 2025-06-24 22:40:11.2808+00 2025-06-24 22:40:11.280812+00 f t TOTAL 70000.00 3 2405 \N +92292 2025-06-24 22:40:11.283536+00 2025-06-24 22:40:11.283545+00 f t ADELANTO 10000.00 4 2405 \N +97561 2025-06-27 10:21:15.809489+00 2025-06-27 10:21:15.809497+00 f t SUBTOTAL 0.00 1 2567 \N +97562 2025-06-27 10:21:15.812013+00 2025-06-27 10:21:15.812024+00 f t DESCUENTO 0.00 2 2567 \N +97563 2025-06-27 10:21:15.813676+00 2025-06-27 10:21:15.813684+00 f t TOTAL 0.00 3 2567 \N +97564 2025-06-27 10:21:15.815378+00 2025-06-27 10:21:15.815388+00 f t ADELANTO 0.00 4 2567 \N +92297 2025-06-24 22:47:49.111845+00 2025-06-24 22:47:49.111859+00 f t SUBTOTAL 0.00 1 2406 \N +92298 2025-06-24 22:47:49.113608+00 2025-06-24 22:47:49.11362+00 f t DESCUENTO 0.00 2 2406 \N +92299 2025-06-24 22:47:49.115379+00 2025-06-24 22:47:49.11539+00 f t TOTAL 0.00 3 2406 \N +92300 2025-06-24 22:47:49.116894+00 2025-06-24 22:47:49.116904+00 f t ADELANTO 0.00 4 2406 \N +93057 2025-06-25 09:34:22.153746+00 2025-06-25 09:34:22.153755+00 f t SUBTOTAL 0.00 1 2434 \N +93058 2025-06-25 09:34:22.155227+00 2025-06-25 09:34:22.155234+00 f t DESCUENTO 0.00 2 2434 \N +93059 2025-06-25 09:34:22.156541+00 2025-06-25 09:34:22.156548+00 f t TOTAL 0.00 3 2434 \N +93060 2025-06-25 09:34:22.157735+00 2025-06-25 09:34:22.157741+00 f t ADELANTO 0.00 4 2434 \N +93101 2025-06-25 10:19:35.519858+00 2025-06-25 10:19:35.519868+00 f t SUBTOTAL 62000.00 1 2436 \N +93102 2025-06-25 10:19:35.522103+00 2025-06-25 10:19:35.522111+00 f t DESCUENTO 0.00 2 2436 \N +93103 2025-06-25 10:19:35.525114+00 2025-06-25 10:19:35.525124+00 f t TOTAL 62000.00 3 2436 \N +93104 2025-06-25 10:19:35.526446+00 2025-06-25 10:19:35.526455+00 f t ADELANTO 12000.00 4 2436 \N +92333 2025-06-24 22:50:13.465184+00 2025-06-24 22:50:13.465194+00 f t SUBTOTAL 27500.00 1 2407 \N +92334 2025-06-24 22:50:13.467557+00 2025-06-24 22:50:13.46757+00 f t DESCUENTO 0.00 2 2407 \N +92335 2025-06-24 22:50:13.471891+00 2025-06-24 22:50:13.471901+00 f t TOTAL 27500.00 3 2407 \N +92336 2025-06-24 22:50:13.474199+00 2025-06-24 22:50:13.474208+00 f t ADELANTO 27500.00 4 2407 \N +93277 2025-06-25 14:23:05.171248+00 2025-06-25 14:23:05.171257+00 f t SUBTOTAL 0.00 1 2447 \N +93278 2025-06-25 14:23:05.172768+00 2025-06-25 14:23:05.172775+00 f t DESCUENTO 0.00 2 2447 \N +93279 2025-06-25 14:23:05.174165+00 2025-06-25 14:23:05.174172+00 f t TOTAL 0.00 3 2447 \N +93280 2025-06-25 14:23:05.175507+00 2025-06-25 14:23:05.175516+00 f t ADELANTO 0.00 4 2447 \N +93469 2025-06-25 16:12:23.020149+00 2025-06-25 16:12:23.020158+00 f t SUBTOTAL 42000.00 1 2453 \N +93470 2025-06-25 16:12:23.023047+00 2025-06-25 16:12:23.023056+00 f t DESCUENTO 0.00 2 2453 \N +93471 2025-06-25 16:12:23.024508+00 2025-06-25 16:12:23.024515+00 f t TOTAL 42000.00 3 2453 \N +93472 2025-06-25 16:12:23.025926+00 2025-06-25 16:12:23.025935+00 f t ADELANTO 9500.00 4 2453 \N +92397 2025-06-24 23:21:54.157496+00 2025-06-24 23:21:54.157508+00 f t SUBTOTAL 117000.00 1 2408 \N +92398 2025-06-24 23:21:54.159393+00 2025-06-24 23:21:54.159402+00 f t DESCUENTO 0.00 2 2408 \N +92399 2025-06-24 23:21:54.160973+00 2025-06-24 23:21:54.160982+00 f t TOTAL 117000.00 3 2408 \N +92400 2025-06-24 23:21:54.162467+00 2025-06-24 23:21:54.162475+00 f t ADELANTO 24500.00 4 2408 \N +92413 2025-06-24 23:22:51.323688+00 2025-06-24 23:22:51.323702+00 f t SUBTOTAL 0.00 1 2410 \N +92414 2025-06-24 23:22:51.325748+00 2025-06-24 23:22:51.32576+00 f t DESCUENTO 0.00 2 2410 \N +92415 2025-06-24 23:22:51.327058+00 2025-06-24 23:22:51.327064+00 f t TOTAL 0.00 3 2410 \N +92416 2025-06-24 23:22:51.328399+00 2025-06-24 23:22:51.328406+00 f t ADELANTO 0.00 4 2410 \N +93621 2025-06-25 18:07:51.507689+00 2025-06-25 18:07:51.507725+00 f t SUBTOTAL 0.00 1 2459 \N +93622 2025-06-25 18:07:51.509275+00 2025-06-25 18:07:51.509282+00 f t DESCUENTO 0.00 2 2459 \N +93623 2025-06-25 18:07:51.510675+00 2025-06-25 18:07:51.510682+00 f t TOTAL 0.00 3 2459 \N +93624 2025-06-25 18:07:51.511791+00 2025-06-25 18:07:51.511797+00 f t ADELANTO 0.00 4 2459 \N +92433 2025-06-24 23:23:24.319361+00 2025-06-24 23:23:24.31937+00 f t SUBTOTAL 75000.00 1 2409 \N +92434 2025-06-24 23:23:24.320963+00 2025-06-24 23:23:24.320968+00 f t DESCUENTO 0.00 2 2409 \N +92435 2025-06-24 23:23:24.32217+00 2025-06-24 23:23:24.322176+00 f t TOTAL 75000.00 3 2409 \N +92436 2025-06-24 23:23:24.32343+00 2025-06-24 23:23:24.323438+00 f t ADELANTO 15000.00 4 2409 \N +92469 2025-06-24 23:39:48.111251+00 2025-06-24 23:39:48.111264+00 f t SUBTOTAL 50000.00 1 2411 \N +92470 2025-06-24 23:39:48.112935+00 2025-06-24 23:39:48.112944+00 f t DESCUENTO 0.00 2 2411 \N +92471 2025-06-24 23:39:48.114196+00 2025-06-24 23:39:48.114202+00 f t TOTAL 50000.00 3 2411 \N +92472 2025-06-24 23:39:48.11537+00 2025-06-24 23:39:48.115377+00 f t ADELANTO 10000.00 4 2411 \N +92477 2025-06-24 23:42:18.668861+00 2025-06-24 23:42:18.66887+00 f t SUBTOTAL 0.00 1 2412 \N +92478 2025-06-24 23:42:18.670441+00 2025-06-24 23:42:18.670448+00 f t DESCUENTO 0.00 2 2412 \N +92479 2025-06-24 23:42:18.671608+00 2025-06-24 23:42:18.671616+00 f t TOTAL 0.00 3 2412 \N +92480 2025-06-24 23:42:18.672612+00 2025-06-24 23:42:18.672617+00 f t ADELANTO 0.00 4 2412 \N +92505 2025-06-25 00:02:32.720471+00 2025-06-25 00:02:32.720479+00 f t SUBTOTAL 42000.00 1 2413 \N +92506 2025-06-25 00:02:32.722177+00 2025-06-25 00:02:32.722186+00 f t DESCUENTO 0.00 2 2413 \N +92507 2025-06-25 00:02:32.723815+00 2025-06-25 00:02:32.723825+00 f t TOTAL 42000.00 3 2413 \N +92508 2025-06-25 00:02:32.725186+00 2025-06-25 00:02:32.725193+00 f t ADELANTO 9500.00 4 2413 \N +92513 2025-06-25 00:20:53.153752+00 2025-06-25 00:20:53.153763+00 f t SUBTOTAL 0.00 1 2414 \N +92514 2025-06-25 00:20:53.155482+00 2025-06-25 00:20:53.155494+00 f t DESCUENTO 0.00 2 2414 \N +92515 2025-06-25 00:20:53.156748+00 2025-06-25 00:20:53.156755+00 f t TOTAL 0.00 3 2414 \N +92516 2025-06-25 00:20:53.157718+00 2025-06-25 00:20:53.157723+00 f t ADELANTO 0.00 4 2414 \N +93861 2025-06-25 22:09:55.511856+00 2025-06-25 22:09:55.511866+00 f t SUBTOTAL 0.00 1 2468 \N +93862 2025-06-25 22:09:55.513557+00 2025-06-25 22:09:55.513565+00 f t DESCUENTO 0.00 2 2468 \N +93863 2025-06-25 22:09:55.517268+00 2025-06-25 22:09:55.517277+00 f t TOTAL 0.00 3 2468 \N +93864 2025-06-25 22:09:55.519231+00 2025-06-25 22:09:55.519242+00 f t ADELANTO 0.00 4 2468 \N +93872 2025-06-25 22:24:56.822192+00 2025-06-25 22:24:56.822197+00 f t ADELANTO 0.00 4 2469 \N +93877 2025-06-25 22:31:34.682565+00 2025-06-25 22:31:34.682576+00 f t SUBTOTAL 0.00 1 2470 \N +92541 2025-06-25 00:25:42.128001+00 2025-06-25 00:25:42.12801+00 f t SUBTOTAL 42000.00 1 2415 \N +92542 2025-06-25 00:25:42.129585+00 2025-06-25 00:25:42.129594+00 f t DESCUENTO 0.00 2 2415 \N +92543 2025-06-25 00:25:42.131003+00 2025-06-25 00:25:42.131012+00 f t TOTAL 42000.00 3 2415 \N +92544 2025-06-25 00:25:42.13224+00 2025-06-25 00:25:42.132245+00 f t ADELANTO 9500.00 4 2415 \N +92557 2025-06-25 00:28:22.718109+00 2025-06-25 00:28:22.718118+00 f t SUBTOTAL 0.00 1 2416 \N +92558 2025-06-25 00:28:22.719973+00 2025-06-25 00:28:22.719983+00 f t DESCUENTO 0.00 2 2416 \N +92559 2025-06-25 00:28:22.721038+00 2025-06-25 00:28:22.721044+00 f t TOTAL 0.00 3 2416 \N +92560 2025-06-25 00:28:22.722001+00 2025-06-25 00:28:22.722007+00 f t ADELANTO 0.00 4 2416 \N +92573 2025-06-25 00:35:39.828159+00 2025-06-25 00:35:39.828167+00 f t SUBTOTAL 0.00 1 2417 \N +92574 2025-06-25 00:35:39.830042+00 2025-06-25 00:35:39.83005+00 f t DESCUENTO 0.00 2 2417 \N +92575 2025-06-25 00:35:39.831481+00 2025-06-25 00:35:39.831488+00 f t TOTAL 0.00 3 2417 \N +92576 2025-06-25 00:35:39.832598+00 2025-06-25 00:35:39.832603+00 f t ADELANTO 0.00 4 2417 \N +102293 2025-06-29 15:45:28.088055+00 2025-06-29 15:45:28.088064+00 f t SUBTOTAL 0.00 1 2687 \N +102294 2025-06-29 15:45:28.08999+00 2025-06-29 15:45:28.089998+00 f t DESCUENTO 0.00 2 2687 \N +92593 2025-06-25 00:39:51.518479+00 2025-06-25 00:39:51.518492+00 f t SUBTOTAL 0.00 1 2418 \N +92594 2025-06-25 00:39:51.521739+00 2025-06-25 00:39:51.521752+00 f t DESCUENTO 0.00 2 2418 \N +92595 2025-06-25 00:39:51.523574+00 2025-06-25 00:39:51.523586+00 f t TOTAL 0.00 3 2418 \N +92596 2025-06-25 00:39:51.524837+00 2025-06-25 00:39:51.524843+00 f t ADELANTO 0.00 4 2418 \N +92601 2025-06-25 00:55:14.451114+00 2025-06-25 00:55:14.45116+00 f t SUBTOTAL 0.00 1 2419 \N +92602 2025-06-25 00:55:14.453109+00 2025-06-25 00:55:14.453118+00 f t DESCUENTO 0.00 2 2419 \N +92603 2025-06-25 00:55:14.455338+00 2025-06-25 00:55:14.455348+00 f t TOTAL 0.00 3 2419 \N +92604 2025-06-25 00:55:14.457486+00 2025-06-25 00:55:14.457495+00 f t ADELANTO 0.00 4 2419 \N +93065 2025-06-25 09:37:32.059673+00 2025-06-25 09:37:32.059682+00 f t SUBTOTAL 0.00 1 2435 \N +93066 2025-06-25 09:37:32.060984+00 2025-06-25 09:37:32.060991+00 f t DESCUENTO 0.00 2 2435 \N +93067 2025-06-25 09:37:32.062051+00 2025-06-25 09:37:32.062057+00 f t TOTAL 0.00 3 2435 \N +93068 2025-06-25 09:37:32.063085+00 2025-06-25 09:37:32.063091+00 f t ADELANTO 0.00 4 2435 \N +93145 2025-06-25 10:31:31.593451+00 2025-06-25 10:31:31.593463+00 f t SUBTOTAL 50000.00 1 2437 \N +93146 2025-06-25 10:31:31.595473+00 2025-06-25 10:31:31.595482+00 f t DESCUENTO 0.00 2 2437 \N +93147 2025-06-25 10:31:31.597104+00 2025-06-25 10:31:31.597114+00 f t TOTAL 50000.00 3 2437 \N +93148 2025-06-25 10:31:31.598427+00 2025-06-25 10:31:31.598434+00 f t ADELANTO 10000.00 4 2437 \N +93285 2025-06-25 14:24:07.201786+00 2025-06-25 14:24:07.201798+00 f t SUBTOTAL 0.00 1 2448 \N +93286 2025-06-25 14:24:07.20333+00 2025-06-25 14:24:07.203339+00 f t DESCUENTO 0.00 2 2448 \N +93287 2025-06-25 14:24:07.204423+00 2025-06-25 14:24:07.20443+00 f t TOTAL 0.00 3 2448 \N +92637 2025-06-25 02:09:35.316662+00 2025-06-25 02:09:35.316674+00 f t SUBTOTAL 88000.00 1 2420 \N +92638 2025-06-25 02:09:35.318327+00 2025-06-25 02:09:35.318335+00 f t DESCUENTO 0.00 2 2420 \N +92639 2025-06-25 02:09:35.31964+00 2025-06-25 02:09:35.319646+00 f t TOTAL 88000.00 3 2420 \N +92640 2025-06-25 02:09:35.320946+00 2025-06-25 02:09:35.320953+00 f t ADELANTO 19000.00 4 2420 \N +93288 2025-06-25 14:24:07.205689+00 2025-06-25 14:24:07.205696+00 f t ADELANTO 0.00 4 2448 \N +92645 2025-06-25 02:19:19.829875+00 2025-06-25 02:19:19.829885+00 f t SUBTOTAL 0.00 1 2421 \N +92646 2025-06-25 02:19:19.831507+00 2025-06-25 02:19:19.831515+00 f t DESCUENTO 0.00 2 2421 \N +92647 2025-06-25 02:19:19.832663+00 2025-06-25 02:19:19.832669+00 f t TOTAL 0.00 3 2421 \N +92648 2025-06-25 02:19:19.833793+00 2025-06-25 02:19:19.8338+00 f t ADELANTO 0.00 4 2421 \N +93437 2025-06-25 15:48:13.410901+00 2025-06-25 15:48:13.410914+00 f t SUBTOTAL 42000.00 1 2452 \N +93438 2025-06-25 15:48:13.412975+00 2025-06-25 15:48:13.412983+00 f t DESCUENTO 0.00 2 2452 \N +93439 2025-06-25 15:48:13.4144+00 2025-06-25 15:48:13.414406+00 f t TOTAL 42000.00 3 2452 \N +93440 2025-06-25 15:48:13.415907+00 2025-06-25 15:48:13.415914+00 f t ADELANTO 9500.00 4 2452 \N +92697 2025-06-25 02:31:28.336755+00 2025-06-25 02:31:28.336768+00 f t SUBTOTAL 50000.00 1 2422 \N +92698 2025-06-25 02:31:28.338568+00 2025-06-25 02:31:28.338578+00 f t DESCUENTO 0.00 2 2422 \N +92699 2025-06-25 02:31:28.339908+00 2025-06-25 02:31:28.339917+00 f t TOTAL 50000.00 3 2422 \N +92700 2025-06-25 02:31:28.341108+00 2025-06-25 02:31:28.341117+00 f t ADELANTO 10000.00 4 2422 \N +93597 2025-06-25 17:08:41.956638+00 2025-06-25 17:08:41.956649+00 f t SUBTOTAL 0.00 1 2456 \N +93598 2025-06-25 17:08:41.958768+00 2025-06-25 17:08:41.958776+00 f t DESCUENTO 0.00 2 2456 \N +93599 2025-06-25 17:08:41.960103+00 2025-06-25 17:08:41.96011+00 f t TOTAL 0.00 3 2456 \N +93600 2025-06-25 17:08:41.961459+00 2025-06-25 17:08:41.961467+00 f t ADELANTO 0.00 4 2456 \N +93629 2025-06-25 18:30:26.716157+00 2025-06-25 18:30:26.716166+00 f t SUBTOTAL 0.00 1 2460 \N +93630 2025-06-25 18:30:26.717504+00 2025-06-25 18:30:26.717512+00 f t DESCUENTO 0.00 2 2460 \N +93631 2025-06-25 18:30:26.719119+00 2025-06-25 18:30:26.719125+00 f t TOTAL 0.00 3 2460 \N +93632 2025-06-25 18:30:26.720148+00 2025-06-25 18:30:26.720153+00 f t ADELANTO 0.00 4 2460 \N +92725 2025-06-25 02:45:04.19391+00 2025-06-25 02:45:04.193924+00 f t SUBTOTAL 49500.00 1 2423 \N +92726 2025-06-25 02:45:04.199395+00 2025-06-25 02:45:04.199412+00 f t DESCUENTO 0.00 2 2423 \N +92727 2025-06-25 02:45:04.203517+00 2025-06-25 02:45:04.20353+00 f t TOTAL 49500.00 3 2423 \N +92728 2025-06-25 02:45:04.21381+00 2025-06-25 02:45:04.213825+00 f t ADELANTO 11500.00 4 2423 \N +92733 2025-06-25 02:47:02.017544+00 2025-06-25 02:47:02.017559+00 f t SUBTOTAL 0.00 1 2424 \N +92734 2025-06-25 02:47:02.02009+00 2025-06-25 02:47:02.020103+00 f t DESCUENTO 0.00 2 2424 \N +92735 2025-06-25 02:47:02.022307+00 2025-06-25 02:47:02.022316+00 f t TOTAL 0.00 3 2424 \N +92736 2025-06-25 02:47:02.024238+00 2025-06-25 02:47:02.024248+00 f t ADELANTO 0.00 4 2424 \N +93733 2025-06-25 19:06:21.607851+00 2025-06-25 19:06:21.607861+00 f t SUBTOTAL 42000.00 1 2462 \N +93734 2025-06-25 19:06:21.60992+00 2025-06-25 19:06:21.609929+00 f t DESCUENTO 0.00 2 2462 \N +93735 2025-06-25 19:06:21.611686+00 2025-06-25 19:06:21.611695+00 f t TOTAL 42000.00 3 2462 \N +93736 2025-06-25 19:06:21.613212+00 2025-06-25 19:06:21.61322+00 f t ADELANTO 9500.00 4 2462 \N +93789 2025-06-25 19:16:15.285679+00 2025-06-25 19:16:15.285688+00 f t SUBTOTAL 75000.00 1 2464 \N +93790 2025-06-25 19:16:15.287481+00 2025-06-25 19:16:15.287491+00 f t DESCUENTO 0.00 2 2464 \N +93791 2025-06-25 19:16:15.289061+00 2025-06-25 19:16:15.289069+00 f t TOTAL 75000.00 3 2464 \N +92769 2025-06-25 02:49:23.682493+00 2025-06-25 02:49:23.682501+00 f t SUBTOTAL 42000.00 1 2425 \N +92770 2025-06-25 02:49:23.684089+00 2025-06-25 02:49:23.684097+00 f t DESCUENTO 0.00 2 2425 \N +92771 2025-06-25 02:49:23.68541+00 2025-06-25 02:49:23.685416+00 f t TOTAL 42000.00 3 2425 \N +92772 2025-06-25 02:49:23.686887+00 2025-06-25 02:49:23.686893+00 f t ADELANTO 9500.00 4 2425 \N +93792 2025-06-25 19:16:15.290281+00 2025-06-25 19:16:15.29029+00 f t ADELANTO 15000.00 4 2464 \N +92777 2025-06-25 02:51:53.257277+00 2025-06-25 02:51:53.257285+00 f t SUBTOTAL 0.00 1 2426 \N +92778 2025-06-25 02:51:53.258803+00 2025-06-25 02:51:53.258811+00 f t DESCUENTO 0.00 2 2426 \N +92779 2025-06-25 02:51:53.260175+00 2025-06-25 02:51:53.260183+00 f t TOTAL 0.00 3 2426 \N +92780 2025-06-25 02:51:53.261255+00 2025-06-25 02:51:53.261262+00 f t ADELANTO 0.00 4 2426 \N +93817 2025-06-25 19:47:10.470461+00 2025-06-25 19:47:10.470473+00 f t SUBTOTAL 27500.00 1 2465 \N +93818 2025-06-25 19:47:10.472675+00 2025-06-25 19:47:10.472686+00 f t DESCUENTO 0.00 2 2465 \N +93819 2025-06-25 19:47:10.474416+00 2025-06-25 19:47:10.474427+00 f t TOTAL 27500.00 3 2465 \N +93820 2025-06-25 19:47:10.476347+00 2025-06-25 19:47:10.476356+00 f t ADELANTO 27500.00 4 2465 \N +92809 2025-06-25 03:09:07.138311+00 2025-06-25 03:09:07.138324+00 f t SUBTOTAL 49500.00 1 2427 \N +92810 2025-06-25 03:09:07.140413+00 2025-06-25 03:09:07.140423+00 f t DESCUENTO 0.00 2 2427 \N +92811 2025-06-25 03:09:07.142238+00 2025-06-25 03:09:07.142248+00 f t TOTAL 49500.00 3 2427 \N +92812 2025-06-25 03:09:07.143827+00 2025-06-25 03:09:07.143838+00 f t ADELANTO 11500.00 4 2427 \N +92817 2025-06-25 03:13:24.948751+00 2025-06-25 03:13:24.948764+00 f t SUBTOTAL 0.00 1 2428 \N +92818 2025-06-25 03:13:24.950581+00 2025-06-25 03:13:24.95059+00 f t DESCUENTO 0.00 2 2428 \N +92819 2025-06-25 03:13:24.952047+00 2025-06-25 03:13:24.952054+00 f t TOTAL 0.00 3 2428 \N +92820 2025-06-25 03:13:24.953281+00 2025-06-25 03:13:24.953288+00 f t ADELANTO 0.00 4 2428 \N +93878 2025-06-25 22:31:34.683928+00 2025-06-25 22:31:34.683934+00 f t DESCUENTO 0.00 2 2470 \N +93879 2025-06-25 22:31:34.685293+00 2025-06-25 22:31:34.685327+00 f t TOTAL 0.00 3 2470 \N +93880 2025-06-25 22:31:34.686221+00 2025-06-25 22:31:34.686226+00 f t ADELANTO 0.00 4 2470 \N +102295 2025-06-29 15:45:28.091166+00 2025-06-29 15:45:28.091172+00 f t TOTAL 0.00 3 2687 \N +93885 2025-06-25 22:37:40.211845+00 2025-06-25 22:37:40.211858+00 f t SUBTOTAL 0.00 1 2471 \N +93886 2025-06-25 22:37:40.213595+00 2025-06-25 22:37:40.213607+00 f t DESCUENTO 0.00 2 2471 \N +93887 2025-06-25 22:37:40.215324+00 2025-06-25 22:37:40.215335+00 f t TOTAL 0.00 3 2471 \N +93888 2025-06-25 22:37:40.216828+00 2025-06-25 22:37:40.216837+00 f t ADELANTO 0.00 4 2471 \N +100037 2025-06-28 17:29:30.469469+00 2025-06-28 17:29:30.469477+00 f t SUBTOTAL 50000.00 1 2631 \N +93893 2025-06-25 22:40:57.254876+00 2025-06-25 22:40:57.254886+00 f t SUBTOTAL 0.00 1 2472 \N +93894 2025-06-25 22:40:57.256491+00 2025-06-25 22:40:57.256499+00 f t DESCUENTO 0.00 2 2472 \N +93895 2025-06-25 22:40:57.25764+00 2025-06-25 22:40:57.257648+00 f t TOTAL 0.00 3 2472 \N +93896 2025-06-25 22:40:57.258827+00 2025-06-25 22:40:57.258834+00 f t ADELANTO 0.00 4 2472 \N +100038 2025-06-28 17:29:30.471672+00 2025-06-28 17:29:30.471681+00 f t DESCUENTO 0.00 2 2631 \N +100039 2025-06-28 17:29:30.473256+00 2025-06-28 17:29:30.473264+00 f t TOTAL 50000.00 3 2631 \N +100040 2025-06-28 17:29:30.474582+00 2025-06-28 17:29:30.47459+00 f t ADELANTO 10000.00 4 2631 \N +93901 2025-06-25 22:43:48.718627+00 2025-06-25 22:43:48.718639+00 f t SUBTOTAL 0.00 1 2473 \N +93902 2025-06-25 22:43:48.72043+00 2025-06-25 22:43:48.720439+00 f t DESCUENTO 0.00 2 2473 \N +93903 2025-06-25 22:43:48.721869+00 2025-06-25 22:43:48.721877+00 f t TOTAL 0.00 3 2473 \N +93904 2025-06-25 22:43:48.723546+00 2025-06-25 22:43:48.723555+00 f t ADELANTO 0.00 4 2473 \N +95453 2025-06-26 12:27:32.367308+00 2025-06-26 12:27:32.367317+00 f t SUBTOTAL 0.00 1 2513 \N +95454 2025-06-26 12:27:32.36902+00 2025-06-26 12:27:32.369028+00 f t DESCUENTO 0.00 2 2513 \N +95455 2025-06-26 12:27:32.370351+00 2025-06-26 12:27:32.370358+00 f t TOTAL 0.00 3 2513 \N +95456 2025-06-26 12:27:32.371685+00 2025-06-26 12:27:32.371692+00 f t ADELANTO 0.00 4 2513 \N +97797 2025-06-27 12:00:58.685386+00 2025-06-27 12:00:58.685399+00 f t SUBTOTAL 64500.00 1 2573 \N +97798 2025-06-27 12:00:58.687569+00 2025-06-27 12:00:58.687579+00 f t DESCUENTO 0.00 2 2573 \N +97799 2025-06-27 12:00:58.689134+00 2025-06-27 12:00:58.689143+00 f t TOTAL 64500.00 3 2573 \N +97800 2025-06-27 12:00:58.690601+00 2025-06-27 12:00:58.69061+00 f t ADELANTO 17000.00 4 2573 \N +97869 2025-06-27 12:29:03.149732+00 2025-06-27 12:29:03.14974+00 f t SUBTOTAL 42000.00 1 2575 \N +97870 2025-06-27 12:29:03.151877+00 2025-06-27 12:29:03.151885+00 f t DESCUENTO 0.00 2 2575 \N +97871 2025-06-27 12:29:03.153601+00 2025-06-27 12:29:03.15361+00 f t TOTAL 42000.00 3 2575 \N +97872 2025-06-27 12:29:03.155569+00 2025-06-27 12:29:03.155579+00 f t ADELANTO 9500.00 4 2575 \N +95661 2025-06-26 14:31:43.18937+00 2025-06-26 14:31:43.189379+00 f t SUBTOTAL 0.00 1 2520 \N +95662 2025-06-26 14:31:43.190584+00 2025-06-26 14:31:43.190592+00 f t DESCUENTO 0.00 2 2520 \N +95663 2025-06-26 14:31:43.191724+00 2025-06-26 14:31:43.191731+00 f t TOTAL 0.00 3 2520 \N +95664 2025-06-26 14:31:43.192701+00 2025-06-26 14:31:43.192706+00 f t ADELANTO 0.00 4 2520 \N +95993 2025-06-26 17:07:39.840951+00 2025-06-26 17:07:39.84096+00 f t SUBTOTAL 64500.00 1 2527 \N +95994 2025-06-26 17:07:39.844323+00 2025-06-26 17:07:39.84433+00 f t DESCUENTO 0.00 2 2527 \N +95995 2025-06-26 17:07:39.845934+00 2025-06-26 17:07:39.84594+00 f t TOTAL 64500.00 3 2527 \N +95996 2025-06-26 17:07:39.847156+00 2025-06-26 17:07:39.847162+00 f t ADELANTO 17000.00 4 2527 \N +98489 2025-06-27 16:34:20.402981+00 2025-06-27 16:34:20.402994+00 f t SUBTOTAL 0.00 1 2589 \N +98490 2025-06-27 16:34:20.404462+00 2025-06-27 16:34:20.40447+00 f t DESCUENTO 0.00 2 2589 \N +98491 2025-06-27 16:34:20.40577+00 2025-06-27 16:34:20.405776+00 f t TOTAL 0.00 3 2589 \N +98492 2025-06-27 16:34:20.406831+00 2025-06-27 16:34:20.406836+00 f t ADELANTO 0.00 4 2589 \N +96145 2025-06-26 17:38:53.536525+00 2025-06-26 17:38:53.536537+00 f t SUBTOTAL 50000.00 1 2530 \N +96146 2025-06-26 17:38:53.538399+00 2025-06-26 17:38:53.538405+00 f t DESCUENTO 0.00 2 2530 \N +96147 2025-06-26 17:38:53.539658+00 2025-06-26 17:38:53.539664+00 f t TOTAL 50000.00 3 2530 \N +94053 2025-06-25 23:12:52.387702+00 2025-06-25 23:12:52.387711+00 f t SUBTOTAL 0.00 1 2475 \N +94054 2025-06-25 23:12:52.389271+00 2025-06-25 23:12:52.389279+00 f t DESCUENTO 0.00 2 2475 \N +94055 2025-06-25 23:12:52.390609+00 2025-06-25 23:12:52.390616+00 f t TOTAL 0.00 3 2475 \N +94056 2025-06-25 23:12:52.391731+00 2025-06-25 23:12:52.391737+00 f t ADELANTO 0.00 4 2475 \N +96148 2025-06-26 17:38:53.541077+00 2025-06-26 17:38:53.541084+00 f t ADELANTO 10000.00 4 2530 \N +96237 2025-06-26 18:29:10.257439+00 2025-06-26 18:29:10.257449+00 f t SUBTOTAL 0.00 1 2533 \N +96238 2025-06-26 18:29:10.259696+00 2025-06-26 18:29:10.259705+00 f t DESCUENTO 0.00 2 2533 \N +96239 2025-06-26 18:29:10.261246+00 2025-06-26 18:29:10.261254+00 f t TOTAL 0.00 3 2533 \N +96240 2025-06-26 18:29:10.262635+00 2025-06-26 18:29:10.262642+00 f t ADELANTO 0.00 4 2533 \N +96305 2025-06-26 18:40:17.449115+00 2025-06-26 18:40:17.449127+00 f t SUBTOTAL 27500.00 1 2535 \N +96306 2025-06-26 18:40:17.451461+00 2025-06-26 18:40:17.451473+00 f t DESCUENTO 0.00 2 2535 \N +96307 2025-06-26 18:40:17.453517+00 2025-06-26 18:40:17.453528+00 f t TOTAL 27500.00 3 2535 \N +96308 2025-06-26 18:40:17.455414+00 2025-06-26 18:40:17.455421+00 f t ADELANTO 27500.00 4 2535 \N +94101 2025-06-25 23:13:26.229839+00 2025-06-25 23:13:26.229852+00 f t SUBTOTAL 171700.00 1 2474 \N +94102 2025-06-25 23:13:26.231724+00 2025-06-25 23:13:26.231735+00 f t DESCUENTO 0.00 2 2474 \N +94103 2025-06-25 23:13:26.23324+00 2025-06-25 23:13:26.233249+00 f t TOTAL 171700.00 3 2474 \N +94104 2025-06-25 23:13:26.23472+00 2025-06-25 23:13:26.234729+00 f t ADELANTO 86200.00 4 2474 \N +94109 2025-06-25 23:37:05.251273+00 2025-06-25 23:37:05.251284+00 f t SUBTOTAL 0.00 1 2476 \N +94110 2025-06-25 23:37:05.253645+00 2025-06-25 23:37:05.253658+00 f t DESCUENTO 0.00 2 2476 \N +94111 2025-06-25 23:37:05.255986+00 2025-06-25 23:37:05.255996+00 f t TOTAL 0.00 3 2476 \N +94112 2025-06-25 23:37:05.258071+00 2025-06-25 23:37:05.258084+00 f t ADELANTO 0.00 4 2476 \N +96537 2025-06-26 21:29:06.363721+00 2025-06-26 21:29:06.363733+00 f t SUBTOTAL 0.00 1 2543 \N +96538 2025-06-26 21:29:06.365592+00 2025-06-26 21:29:06.365601+00 f t DESCUENTO 0.00 2 2543 \N +96539 2025-06-26 21:29:06.36692+00 2025-06-26 21:29:06.366927+00 f t TOTAL 0.00 3 2543 \N +96540 2025-06-26 21:29:06.368324+00 2025-06-26 21:29:06.36833+00 f t ADELANTO 0.00 4 2543 \N +94157 2025-06-25 23:39:59.11703+00 2025-06-25 23:39:59.117038+00 f t SUBTOTAL 62000.00 1 2477 \N +94158 2025-06-25 23:39:59.119638+00 2025-06-25 23:39:59.119647+00 f t DESCUENTO 0.00 2 2477 \N +94159 2025-06-25 23:39:59.120895+00 2025-06-25 23:39:59.120902+00 f t TOTAL 62000.00 3 2477 \N +94160 2025-06-25 23:39:59.122296+00 2025-06-25 23:39:59.122304+00 f t ADELANTO 12000.00 4 2477 \N +94165 2025-06-25 23:54:55.516103+00 2025-06-25 23:54:55.516111+00 f t SUBTOTAL 0.00 1 2478 \N +94166 2025-06-25 23:54:55.517546+00 2025-06-25 23:54:55.517552+00 f t DESCUENTO 0.00 2 2478 \N +94167 2025-06-25 23:54:55.518751+00 2025-06-25 23:54:55.518757+00 f t TOTAL 0.00 3 2478 \N +94168 2025-06-25 23:54:55.519744+00 2025-06-25 23:54:55.519749+00 f t ADELANTO 0.00 4 2478 \N +102296 2025-06-29 15:45:28.092459+00 2025-06-29 15:45:28.092464+00 f t ADELANTO 0.00 4 2687 \N +94173 2025-06-25 23:55:25.153217+00 2025-06-25 23:55:25.15323+00 f t SUBTOTAL 0.00 1 2479 \N +94174 2025-06-25 23:55:25.15481+00 2025-06-25 23:55:25.154818+00 f t DESCUENTO 0.00 2 2479 \N +94175 2025-06-25 23:55:25.156266+00 2025-06-25 23:55:25.156274+00 f t TOTAL 0.00 3 2479 \N +94176 2025-06-25 23:55:25.157772+00 2025-06-25 23:55:25.157782+00 f t ADELANTO 0.00 4 2479 \N +99945 2025-06-28 16:38:50.455452+00 2025-06-28 16:38:50.45546+00 f t SUBTOTAL 42000.00 1 2625 \N +99946 2025-06-28 16:38:50.457894+00 2025-06-28 16:38:50.457904+00 f t DESCUENTO 0.00 2 2625 \N +99947 2025-06-28 16:38:50.460011+00 2025-06-28 16:38:50.460022+00 f t TOTAL 42000.00 3 2625 \N +99948 2025-06-28 16:38:50.462102+00 2025-06-28 16:38:50.462114+00 f t ADELANTO 9500.00 4 2625 \N +94181 2025-06-25 23:58:44.343727+00 2025-06-25 23:58:44.343738+00 f t SUBTOTAL 0.00 1 2480 \N +94182 2025-06-25 23:58:44.345103+00 2025-06-25 23:58:44.34511+00 f t DESCUENTO 0.00 2 2480 \N +94183 2025-06-25 23:58:44.346225+00 2025-06-25 23:58:44.346231+00 f t TOTAL 0.00 3 2480 \N +94184 2025-06-25 23:58:44.347188+00 2025-06-25 23:58:44.347193+00 f t ADELANTO 0.00 4 2480 \N +94209 2025-06-26 00:11:19.269079+00 2025-06-26 00:11:19.269089+00 f t SUBTOTAL 42000.00 1 2481 \N +94210 2025-06-26 00:11:19.270837+00 2025-06-26 00:11:19.270846+00 f t DESCUENTO 0.00 2 2481 \N +94211 2025-06-26 00:11:19.2721+00 2025-06-26 00:11:19.272106+00 f t TOTAL 42000.00 3 2481 \N +94212 2025-06-26 00:11:19.273239+00 2025-06-26 00:11:19.273245+00 f t ADELANTO 9500.00 4 2481 \N +97837 2025-06-27 12:05:12.790381+00 2025-06-27 12:05:12.790393+00 f t SUBTOTAL 210750.00 1 2574 \N +97838 2025-06-27 12:05:12.79249+00 2025-06-27 12:05:12.792501+00 f t DESCUENTO 0.00 2 2574 \N +97839 2025-06-27 12:05:12.794073+00 2025-06-27 12:05:12.794082+00 f t TOTAL 210750.00 3 2574 \N +97840 2025-06-27 12:05:12.795599+00 2025-06-27 12:05:12.795607+00 f t ADELANTO 43250.00 4 2574 \N +94217 2025-06-26 00:32:21.766683+00 2025-06-26 00:32:21.766696+00 f t SUBTOTAL 0.00 1 2482 \N +94218 2025-06-26 00:32:21.769065+00 2025-06-26 00:32:21.769078+00 f t DESCUENTO 0.00 2 2482 \N +94219 2025-06-26 00:32:21.77111+00 2025-06-26 00:32:21.771121+00 f t TOTAL 0.00 3 2482 \N +94220 2025-06-26 00:32:21.773047+00 2025-06-26 00:32:21.773057+00 f t ADELANTO 0.00 4 2482 \N +94249 2025-06-26 00:38:38.848265+00 2025-06-26 00:38:38.848301+00 f t SUBTOTAL 62000.00 1 2483 \N +94250 2025-06-26 00:38:38.850364+00 2025-06-26 00:38:38.850372+00 f t DESCUENTO 0.00 2 2483 \N +94251 2025-06-26 00:38:38.85182+00 2025-06-26 00:38:38.851829+00 f t TOTAL 62000.00 3 2483 \N +94252 2025-06-26 00:38:38.853173+00 2025-06-26 00:38:38.853179+00 f t ADELANTO 12000.00 4 2483 \N +95669 2025-06-26 14:33:33.67149+00 2025-06-26 14:33:33.671501+00 f t SUBTOTAL 0.00 1 2521 \N +95670 2025-06-26 14:33:33.67329+00 2025-06-26 14:33:33.673301+00 f t DESCUENTO 0.00 2 2521 \N +95671 2025-06-26 14:33:33.674875+00 2025-06-26 14:33:33.674884+00 f t TOTAL 0.00 3 2521 \N +95672 2025-06-26 14:33:33.676251+00 2025-06-26 14:33:33.676259+00 f t ADELANTO 0.00 4 2521 \N +95837 2025-06-26 15:51:33.787576+00 2025-06-26 15:51:33.787589+00 f t SUBTOTAL 144000.00 1 2523 \N +95838 2025-06-26 15:51:33.789341+00 2025-06-26 15:51:33.78935+00 f t DESCUENTO 0.00 2 2523 \N +95839 2025-06-26 15:51:33.790731+00 2025-06-26 15:51:33.790738+00 f t TOTAL 144000.00 3 2523 \N +95840 2025-06-26 15:51:33.792089+00 2025-06-26 15:51:33.792098+00 f t ADELANTO 38000.00 4 2523 \N +94297 2025-06-26 00:50:01.133232+00 2025-06-26 00:50:01.133244+00 f t SUBTOTAL 42000.00 1 2484 \N +94298 2025-06-26 00:50:01.135639+00 2025-06-26 00:50:01.135652+00 f t DESCUENTO 0.00 2 2484 \N +94299 2025-06-26 00:50:01.137692+00 2025-06-26 00:50:01.137703+00 f t TOTAL 42000.00 3 2484 \N +94300 2025-06-26 00:50:01.139558+00 2025-06-26 00:50:01.139569+00 f t ADELANTO 9500.00 4 2484 \N +95885 2025-06-26 16:45:02.722571+00 2025-06-26 16:45:02.722584+00 f t SUBTOTAL 42000.00 1 2525 \N +95886 2025-06-26 16:45:02.731359+00 2025-06-26 16:45:02.731373+00 f t DESCUENTO 0.00 2 2525 \N +95887 2025-06-26 16:45:02.735943+00 2025-06-26 16:45:02.735957+00 f t TOTAL 42000.00 3 2525 \N +95888 2025-06-26 16:45:02.746815+00 2025-06-26 16:45:02.746831+00 f t ADELANTO 9500.00 4 2525 \N +94329 2025-06-26 00:51:32.490139+00 2025-06-26 00:51:32.490151+00 f t SUBTOTAL 49500.00 1 2485 \N +94330 2025-06-26 00:51:32.492009+00 2025-06-26 00:51:32.492019+00 f t DESCUENTO 0.00 2 2485 \N +94331 2025-06-26 00:51:32.493511+00 2025-06-26 00:51:32.49352+00 f t TOTAL 49500.00 3 2485 \N +94332 2025-06-26 00:51:32.494743+00 2025-06-26 00:51:32.494752+00 f t ADELANTO 11500.00 4 2485 \N +94337 2025-06-26 00:51:47.857626+00 2025-06-26 00:51:47.857635+00 f t SUBTOTAL 0.00 1 2486 \N +94338 2025-06-26 00:51:47.859039+00 2025-06-26 00:51:47.859046+00 f t DESCUENTO 0.00 2 2486 \N +94339 2025-06-26 00:51:47.860147+00 2025-06-26 00:51:47.860153+00 f t TOTAL 0.00 3 2486 \N +94340 2025-06-26 00:51:47.861161+00 2025-06-26 00:51:47.861167+00 f t ADELANTO 0.00 4 2486 \N +96021 2025-06-26 17:21:27.059752+00 2025-06-26 17:21:27.05976+00 f t SUBTOTAL 49500.00 1 2528 \N +96022 2025-06-26 17:21:27.061292+00 2025-06-26 17:21:27.061297+00 f t DESCUENTO 0.00 2 2528 \N +96023 2025-06-26 17:21:27.062396+00 2025-06-26 17:21:27.062402+00 f t TOTAL 49500.00 3 2528 \N +96024 2025-06-26 17:21:27.063421+00 2025-06-26 17:21:27.063426+00 f t ADELANTO 11500.00 4 2528 \N +96173 2025-06-26 17:48:26.10172+00 2025-06-26 17:48:26.10173+00 f t SUBTOTAL 42000.00 1 2531 \N +96174 2025-06-26 17:48:26.103919+00 2025-06-26 17:48:26.103927+00 f t DESCUENTO 0.00 2 2531 \N +96175 2025-06-26 17:48:26.106027+00 2025-06-26 17:48:26.106035+00 f t TOTAL 42000.00 3 2531 \N +96176 2025-06-26 17:48:26.108312+00 2025-06-26 17:48:26.108321+00 f t ADELANTO 9500.00 4 2531 \N +96333 2025-06-26 18:41:50.003898+00 2025-06-26 18:41:50.003911+00 f t SUBTOTAL 50000.00 1 2536 \N +96334 2025-06-26 18:41:50.00652+00 2025-06-26 18:41:50.00653+00 f t DESCUENTO 0.00 2 2536 \N +96335 2025-06-26 18:41:50.008675+00 2025-06-26 18:41:50.008687+00 f t TOTAL 50000.00 3 2536 \N +96336 2025-06-26 18:41:50.010756+00 2025-06-26 18:41:50.010765+00 f t ADELANTO 10000.00 4 2536 \N +96437 2025-06-26 18:55:29.829126+00 2025-06-26 18:55:29.829134+00 f t SUBTOTAL 50000.00 1 2537 \N +96438 2025-06-26 18:55:29.831079+00 2025-06-26 18:55:29.831087+00 f t DESCUENTO 0.00 2 2537 \N +96439 2025-06-26 18:55:29.832641+00 2025-06-26 18:55:29.832648+00 f t TOTAL 50000.00 3 2537 \N +96440 2025-06-26 18:55:29.834055+00 2025-06-26 18:55:29.834061+00 f t ADELANTO 10000.00 4 2537 \N +94441 2025-06-26 01:20:07.488123+00 2025-06-26 01:20:07.488138+00 f t SUBTOTAL 0.00 1 2488 \N +94442 2025-06-26 01:20:07.491069+00 2025-06-26 01:20:07.491081+00 f t DESCUENTO 0.00 2 2488 \N +94443 2025-06-26 01:20:07.493044+00 2025-06-26 01:20:07.493056+00 f t TOTAL 0.00 3 2488 \N +94444 2025-06-26 01:20:07.494862+00 2025-06-26 01:20:07.494872+00 f t ADELANTO 0.00 4 2488 \N +94453 2025-06-26 01:20:48.667232+00 2025-06-26 01:20:48.667243+00 f t SUBTOTAL 42000.00 1 2487 \N +94454 2025-06-26 01:20:48.669503+00 2025-06-26 01:20:48.669515+00 f t DESCUENTO 0.00 2 2487 \N +94455 2025-06-26 01:20:48.671299+00 2025-06-26 01:20:48.67131+00 f t TOTAL 42000.00 3 2487 \N +94456 2025-06-26 01:20:48.673067+00 2025-06-26 01:20:48.673075+00 f t ADELANTO 9500.00 4 2487 \N +96545 2025-06-26 21:29:33.098598+00 2025-06-26 21:29:33.09861+00 f t SUBTOTAL 0.00 1 2544 \N +96546 2025-06-26 21:29:33.100477+00 2025-06-26 21:29:33.100488+00 f t DESCUENTO 0.00 2 2544 \N +96547 2025-06-26 21:29:33.102089+00 2025-06-26 21:29:33.102099+00 f t TOTAL 0.00 3 2544 \N +107501 2025-07-01 20:41:01.596416+00 2025-07-01 20:41:01.59643+00 f t SUBTOTAL 0.00 1 2827 \N +107502 2025-07-01 20:41:01.599465+00 2025-07-01 20:41:01.599477+00 f t DESCUENTO 0.00 2 2827 \N +107503 2025-07-01 20:41:01.601262+00 2025-07-01 20:41:01.601274+00 f t TOTAL 0.00 3 2827 \N +107504 2025-07-01 20:41:01.60341+00 2025-07-01 20:41:01.603421+00 f t ADELANTO 0.00 4 2827 \N +100113 2025-06-28 18:05:01.922477+00 2025-06-28 18:05:01.922492+00 f t SUBTOTAL 45000.00 1 2633 \N +100114 2025-06-28 18:05:01.926174+00 2025-06-28 18:05:01.926187+00 f t DESCUENTO 0.00 2 2633 \N +100115 2025-06-28 18:05:01.929261+00 2025-06-28 18:05:01.929275+00 f t TOTAL 45000.00 3 2633 \N +100116 2025-06-28 18:05:01.946957+00 2025-06-28 18:05:01.946973+00 f t ADELANTO 10000.00 4 2633 \N +102529 2025-06-29 16:55:18.263392+00 2025-06-29 16:55:18.263404+00 f t SUBTOTAL 42000.00 1 2692 \N +102530 2025-06-29 16:55:18.265686+00 2025-06-29 16:55:18.265698+00 f t DESCUENTO 0.00 2 2692 \N +100185 2025-06-28 19:13:48.368529+00 2025-06-28 19:13:48.368538+00 f t SUBTOTAL 42000.00 1 2635 \N +100186 2025-06-28 19:13:48.370712+00 2025-06-28 19:13:48.370723+00 f t DESCUENTO 0.00 2 2635 \N +100187 2025-06-28 19:13:48.372314+00 2025-06-28 19:13:48.372321+00 f t TOTAL 42000.00 3 2635 \N +100188 2025-06-28 19:13:48.373608+00 2025-06-28 19:13:48.373613+00 f t ADELANTO 9500.00 4 2635 \N +102531 2025-06-29 16:55:18.267449+00 2025-06-29 16:55:18.267461+00 f t TOTAL 42000.00 3 2692 \N +102532 2025-06-29 16:55:18.26898+00 2025-06-29 16:55:18.268991+00 f t ADELANTO 9500.00 4 2692 \N +95617 2025-06-26 12:41:24.041901+00 2025-06-26 12:41:24.041923+00 f t SUBTOTAL 0.00 1 2517 \N +95618 2025-06-26 12:41:24.043795+00 2025-06-26 12:41:24.043804+00 f t DESCUENTO 0.00 2 2517 \N +95619 2025-06-26 12:41:24.045169+00 2025-06-26 12:41:24.045175+00 f t TOTAL 0.00 3 2517 \N +95620 2025-06-26 12:41:24.046623+00 2025-06-26 12:41:24.046641+00 f t ADELANTO 0.00 4 2517 \N +102633 2025-06-29 18:40:06.931089+00 2025-06-29 18:40:06.931104+00 f t SUBTOTAL 0.00 1 2697 \N +102634 2025-06-29 18:40:06.935355+00 2025-06-29 18:40:06.935368+00 f t DESCUENTO 0.00 2 2697 \N +102635 2025-06-29 18:40:06.938625+00 2025-06-29 18:40:06.938637+00 f t TOTAL 0.00 3 2697 \N +98149 2025-06-27 13:53:43.023803+00 2025-06-27 13:53:43.023812+00 f t SUBTOTAL 177700.00 1 2581 \N +98150 2025-06-27 13:53:43.025605+00 2025-06-27 13:53:43.025615+00 f t DESCUENTO 0.00 2 2581 \N +98151 2025-06-27 13:53:43.027011+00 2025-06-27 13:53:43.027018+00 f t TOTAL 177700.00 3 2581 \N +98152 2025-06-27 13:53:43.028134+00 2025-06-27 13:53:43.02814+00 f t ADELANTO 54700.00 4 2581 \N +95737 2025-06-26 15:39:42.115624+00 2025-06-26 15:39:42.115638+00 f t SUBTOTAL 42000.00 1 2522 \N +95738 2025-06-26 15:39:42.117518+00 2025-06-26 15:39:42.117528+00 f t DESCUENTO 0.00 2 2522 \N +95739 2025-06-26 15:39:42.119236+00 2025-06-26 15:39:42.119246+00 f t TOTAL 42000.00 3 2522 \N +95740 2025-06-26 15:39:42.120844+00 2025-06-26 15:39:42.120854+00 f t ADELANTO 9500.00 4 2522 \N +100601 2025-06-28 20:47:18.072344+00 2025-06-28 20:47:18.072352+00 f t SUBTOTAL 0.00 1 2643 \N +100602 2025-06-28 20:47:18.073857+00 2025-06-28 20:47:18.073867+00 f t DESCUENTO 0.00 2 2643 \N +100603 2025-06-28 20:47:18.075356+00 2025-06-28 20:47:18.075364+00 f t TOTAL 0.00 3 2643 \N +100604 2025-06-28 20:47:18.076628+00 2025-06-28 20:47:18.076634+00 f t ADELANTO 0.00 4 2643 \N +98497 2025-06-27 18:45:32.008649+00 2025-06-27 18:45:32.00866+00 f t SUBTOTAL 0.00 1 2590 \N +98498 2025-06-27 18:45:32.010436+00 2025-06-27 18:45:32.010446+00 f t DESCUENTO 0.00 2 2590 \N +98499 2025-06-27 18:45:32.01189+00 2025-06-27 18:45:32.011897+00 f t TOTAL 0.00 3 2590 \N +98500 2025-06-27 18:45:32.013397+00 2025-06-27 18:45:32.013403+00 f t ADELANTO 0.00 4 2590 \N +98529 2025-06-27 19:55:30.515909+00 2025-06-27 19:55:30.515922+00 f t SUBTOTAL 50000.00 1 2591 \N +98530 2025-06-27 19:55:30.517788+00 2025-06-27 19:55:30.517794+00 f t DESCUENTO 0.00 2 2591 \N +98531 2025-06-27 19:55:30.518854+00 2025-06-27 19:55:30.518859+00 f t TOTAL 50000.00 3 2591 \N +98532 2025-06-27 19:55:30.520028+00 2025-06-27 19:55:30.520034+00 f t ADELANTO 10000.00 4 2591 \N +96029 2025-06-26 17:31:02.692892+00 2025-06-26 17:31:02.692905+00 f t SUBTOTAL 0.00 1 2529 \N +96030 2025-06-26 17:31:02.695092+00 2025-06-26 17:31:02.695104+00 f t DESCUENTO 0.00 2 2529 \N +96031 2025-06-26 17:31:02.697394+00 2025-06-26 17:31:02.697409+00 f t TOTAL 0.00 3 2529 \N +96032 2025-06-26 17:31:02.699504+00 2025-06-26 17:31:02.699518+00 f t ADELANTO 0.00 4 2529 \N +100885 2025-06-28 23:30:23.672222+00 2025-06-28 23:30:23.672231+00 f t SUBTOTAL 62000.00 1 2650 \N +100886 2025-06-28 23:30:23.674+00 2025-06-28 23:30:23.674007+00 f t DESCUENTO 0.00 2 2650 \N +100887 2025-06-28 23:30:23.675406+00 2025-06-28 23:30:23.675414+00 f t TOTAL 62000.00 3 2650 \N +100888 2025-06-28 23:30:23.676765+00 2025-06-28 23:30:23.676772+00 f t ADELANTO 12000.00 4 2650 \N +98697 2025-06-27 22:02:23.466502+00 2025-06-27 22:02:23.466511+00 f t SUBTOTAL 50000.00 1 2596 \N +98698 2025-06-27 22:02:23.468272+00 2025-06-27 22:02:23.468279+00 f t DESCUENTO 0.00 2 2596 \N +98699 2025-06-27 22:02:23.46962+00 2025-06-27 22:02:23.469626+00 f t TOTAL 50000.00 3 2596 \N +98700 2025-06-27 22:02:23.470617+00 2025-06-27 22:02:23.470622+00 f t ADELANTO 10000.00 4 2596 \N +94645 2025-06-26 01:38:11.526169+00 2025-06-26 01:38:11.526181+00 f t SUBTOTAL 102200.00 1 2489 \N +94646 2025-06-26 01:38:11.527976+00 2025-06-26 01:38:11.527983+00 f t DESCUENTO 0.00 2 2489 \N +94647 2025-06-26 01:38:11.529441+00 2025-06-26 01:38:11.52945+00 f t TOTAL 102200.00 3 2489 \N +94648 2025-06-26 01:38:11.53072+00 2025-06-26 01:38:11.530728+00 f t ADELANTO 58700.00 4 2489 \N +101261 2025-06-29 01:01:50.471559+00 2025-06-29 01:01:50.471568+00 f t SUBTOTAL 0.00 1 2658 \N +101262 2025-06-29 01:01:50.472995+00 2025-06-29 01:01:50.473002+00 f t DESCUENTO 0.00 2 2658 \N +101263 2025-06-29 01:01:50.47416+00 2025-06-29 01:01:50.474167+00 f t TOTAL 0.00 3 2658 \N +101264 2025-06-29 01:01:50.475297+00 2025-06-29 01:01:50.475303+00 f t ADELANTO 0.00 4 2658 \N +96445 2025-06-26 19:03:34.595125+00 2025-06-26 19:03:34.595163+00 f t SUBTOTAL 0.00 1 2538 \N +96446 2025-06-26 19:03:34.596776+00 2025-06-26 19:03:34.596786+00 f t DESCUENTO 0.00 2 2538 \N +96447 2025-06-26 19:03:34.59858+00 2025-06-26 19:03:34.598588+00 f t TOTAL 0.00 3 2538 \N +96448 2025-06-26 19:03:34.599815+00 2025-06-26 19:03:34.599821+00 f t ADELANTO 0.00 4 2538 \N +94705 2025-06-26 01:41:26.069461+00 2025-06-26 01:41:26.069491+00 f t SUBTOTAL 42000.00 1 2490 \N +94706 2025-06-26 01:41:26.071807+00 2025-06-26 01:41:26.071819+00 f t DESCUENTO 0.00 2 2490 \N +94707 2025-06-26 01:41:26.07405+00 2025-06-26 01:41:26.074062+00 f t TOTAL 42000.00 3 2490 \N +94708 2025-06-26 01:41:26.075994+00 2025-06-26 01:41:26.076005+00 f t ADELANTO 9500.00 4 2490 \N +96548 2025-06-26 21:29:33.103673+00 2025-06-26 21:29:33.103682+00 f t ADELANTO 0.00 4 2544 \N +96581 2025-06-26 22:59:22.641195+00 2025-06-26 22:59:22.641204+00 f t SUBTOTAL 62000.00 1 2546 \N +96582 2025-06-26 22:59:22.643052+00 2025-06-26 22:59:22.643061+00 f t DESCUENTO 0.00 2 2546 \N +96583 2025-06-26 22:59:22.644587+00 2025-06-26 22:59:22.644596+00 f t TOTAL 62000.00 3 2546 \N +96584 2025-06-26 22:59:22.645962+00 2025-06-26 22:59:22.64597+00 f t ADELANTO 12000.00 4 2546 \N +94737 2025-06-26 01:42:54.787064+00 2025-06-26 01:42:54.787073+00 f t SUBTOTAL 133800.00 1 2491 \N +94738 2025-06-26 01:42:54.78878+00 2025-06-26 01:42:54.788789+00 f t DESCUENTO 0.00 2 2491 \N +94739 2025-06-26 01:42:54.790051+00 2025-06-26 01:42:54.790058+00 f t TOTAL 133800.00 3 2491 \N +94740 2025-06-26 01:42:54.791063+00 2025-06-26 01:42:54.791069+00 f t ADELANTO 29300.00 4 2491 \N +94765 2025-06-26 01:48:44.188179+00 2025-06-26 01:48:44.188191+00 f t SUBTOTAL 102700.00 1 2492 \N +94766 2025-06-26 01:48:44.19014+00 2025-06-26 01:48:44.190149+00 f t DESCUENTO 0.00 2 2492 \N +94767 2025-06-26 01:48:44.191484+00 2025-06-26 01:48:44.191492+00 f t TOTAL 102700.00 3 2492 \N +94768 2025-06-26 01:48:44.192892+00 2025-06-26 01:48:44.192899+00 f t ADELANTO 64700.00 4 2492 \N +94773 2025-06-26 01:52:01.313246+00 2025-06-26 01:52:01.313254+00 f t SUBTOTAL 0.00 1 2493 \N +94774 2025-06-26 01:52:01.315124+00 2025-06-26 01:52:01.315161+00 f t DESCUENTO 0.00 2 2493 \N +94775 2025-06-26 01:52:01.317169+00 2025-06-26 01:52:01.31718+00 f t TOTAL 0.00 3 2493 \N +94776 2025-06-26 01:52:01.31907+00 2025-06-26 01:52:01.319081+00 f t ADELANTO 0.00 4 2493 \N +95469 2025-06-26 12:34:44.422805+00 2025-06-26 12:34:44.422816+00 f t SUBTOTAL 0.00 1 2514 \N +95470 2025-06-26 12:34:44.424939+00 2025-06-26 12:34:44.424947+00 f t DESCUENTO 0.00 2 2514 \N +95471 2025-06-26 12:34:44.426094+00 2025-06-26 12:34:44.4261+00 f t TOTAL 0.00 3 2514 \N +95472 2025-06-26 12:34:44.427233+00 2025-06-26 12:34:44.427239+00 f t ADELANTO 0.00 4 2514 \N +95493 2025-06-26 12:35:47.420632+00 2025-06-26 12:35:47.420644+00 f t SUBTOTAL 0.00 1 2515 \N +95494 2025-06-26 12:35:47.423792+00 2025-06-26 12:35:47.423801+00 f t DESCUENTO 0.00 2 2515 \N +95495 2025-06-26 12:35:47.425436+00 2025-06-26 12:35:47.425444+00 f t TOTAL 0.00 3 2515 \N +95496 2025-06-26 12:35:47.426865+00 2025-06-26 12:35:47.426871+00 f t ADELANTO 0.00 4 2515 \N +94801 2025-06-26 02:00:04.51375+00 2025-06-26 02:00:04.513764+00 f t SUBTOTAL 42000.00 1 2494 \N +94802 2025-06-26 02:00:04.525423+00 2025-06-26 02:00:04.525436+00 f t DESCUENTO 0.00 2 2494 \N +94803 2025-06-26 02:00:04.527897+00 2025-06-26 02:00:04.52791+00 f t TOTAL 42000.00 3 2494 \N +94804 2025-06-26 02:00:04.530251+00 2025-06-26 02:00:04.530263+00 f t ADELANTO 9500.00 4 2494 \N +94809 2025-06-26 02:36:37.106064+00 2025-06-26 02:36:37.106077+00 f t SUBTOTAL 0.00 1 2495 \N +94810 2025-06-26 02:36:37.107982+00 2025-06-26 02:36:37.10799+00 f t DESCUENTO 0.00 2 2495 \N +94811 2025-06-26 02:36:37.109752+00 2025-06-26 02:36:37.109759+00 f t TOTAL 0.00 3 2495 \N +94812 2025-06-26 02:36:37.111125+00 2025-06-26 02:36:37.111159+00 f t ADELANTO 0.00 4 2495 \N +95597 2025-06-26 12:39:56.434899+00 2025-06-26 12:39:56.434908+00 f t SUBTOTAL 0.00 1 2516 \N +95598 2025-06-26 12:39:56.436861+00 2025-06-26 12:39:56.436872+00 f t DESCUENTO 0.00 2 2516 \N +95599 2025-06-26 12:39:56.438131+00 2025-06-26 12:39:56.438137+00 f t TOTAL 0.00 3 2516 \N +95600 2025-06-26 12:39:56.439428+00 2025-06-26 12:39:56.439433+00 f t ADELANTO 0.00 4 2516 \N +95645 2025-06-26 12:54:36.132303+00 2025-06-26 12:54:36.132326+00 f t SUBTOTAL 102700.00 1 2518 \N +95646 2025-06-26 12:54:36.134247+00 2025-06-26 12:54:36.134254+00 f t DESCUENTO 0.00 2 2518 \N +95647 2025-06-26 12:54:36.135394+00 2025-06-26 12:54:36.1354+00 f t TOTAL 102700.00 3 2518 \N +95648 2025-06-26 12:54:36.136491+00 2025-06-26 12:54:36.136497+00 f t ADELANTO 64700.00 4 2518 \N +94837 2025-06-26 03:50:19.430425+00 2025-06-26 03:50:19.430438+00 f t SUBTOTAL 50000.00 1 2496 \N +94838 2025-06-26 03:50:19.43272+00 2025-06-26 03:50:19.432732+00 f t DESCUENTO 0.00 2 2496 \N +94839 2025-06-26 03:50:19.434594+00 2025-06-26 03:50:19.434605+00 f t TOTAL 50000.00 3 2496 \N +94840 2025-06-26 03:50:19.436462+00 2025-06-26 03:50:19.436472+00 f t ADELANTO 10000.00 4 2496 \N +95849 2025-06-26 15:52:37.810971+00 2025-06-26 15:52:37.810999+00 f t SUBTOTAL 0.00 1 2524 \N +95850 2025-06-26 15:52:37.81297+00 2025-06-26 15:52:37.812979+00 f t DESCUENTO 0.00 2 2524 \N +94877 2025-06-26 03:55:53.01673+00 2025-06-26 03:55:53.016744+00 f t SUBTOTAL 0.00 1 2497 \N +94878 2025-06-26 03:55:53.018984+00 2025-06-26 03:55:53.018992+00 f t DESCUENTO 0.00 2 2497 \N +94879 2025-06-26 03:55:53.020608+00 2025-06-26 03:55:53.020618+00 f t TOTAL 0.00 3 2497 \N +94880 2025-06-26 03:55:53.022087+00 2025-06-26 03:55:53.022096+00 f t ADELANTO 0.00 4 2497 \N +95851 2025-06-26 15:52:37.814318+00 2025-06-26 15:52:37.814327+00 f t TOTAL 0.00 3 2524 \N +95852 2025-06-26 15:52:37.815407+00 2025-06-26 15:52:37.815413+00 f t ADELANTO 0.00 4 2524 \N +95937 2025-06-26 16:47:33.607376+00 2025-06-26 16:47:33.607385+00 f t SUBTOTAL 129000.00 1 2526 \N +95938 2025-06-26 16:47:33.609303+00 2025-06-26 16:47:33.60931+00 f t DESCUENTO 0.00 2 2526 \N +95939 2025-06-26 16:47:33.610723+00 2025-06-26 16:47:33.61073+00 f t TOTAL 129000.00 3 2526 \N +95940 2025-06-26 16:47:33.611881+00 2025-06-26 16:47:33.611887+00 f t ADELANTO 34000.00 4 2526 \N +94925 2025-06-26 04:24:06.230175+00 2025-06-26 04:24:06.230183+00 f t SUBTOTAL 42000.00 1 2498 \N +94926 2025-06-26 04:24:06.231872+00 2025-06-26 04:24:06.231879+00 f t DESCUENTO 0.00 2 2498 \N +94927 2025-06-26 04:24:06.233028+00 2025-06-26 04:24:06.233034+00 f t TOTAL 42000.00 3 2498 \N +94928 2025-06-26 04:24:06.234177+00 2025-06-26 04:24:06.234183+00 f t ADELANTO 9500.00 4 2498 \N +94973 2025-06-26 04:52:55.901177+00 2025-06-26 04:52:55.901188+00 f t SUBTOTAL 42000.00 1 2499 \N +94974 2025-06-26 04:52:55.903299+00 2025-06-26 04:52:55.903307+00 f t DESCUENTO 0.00 2 2499 \N +94975 2025-06-26 04:52:55.904926+00 2025-06-26 04:52:55.904935+00 f t TOTAL 42000.00 3 2499 \N +94976 2025-06-26 04:52:55.906343+00 2025-06-26 04:52:55.90635+00 f t ADELANTO 9500.00 4 2499 \N +94981 2025-06-26 04:57:14.39565+00 2025-06-26 04:57:14.39566+00 f t SUBTOTAL 0.00 1 2500 \N +94982 2025-06-26 04:57:14.397274+00 2025-06-26 04:57:14.397283+00 f t DESCUENTO 0.00 2 2500 \N +94983 2025-06-26 04:57:14.398819+00 2025-06-26 04:57:14.398826+00 f t TOTAL 0.00 3 2500 \N +94984 2025-06-26 04:57:14.400175+00 2025-06-26 04:57:14.40018+00 f t ADELANTO 0.00 4 2500 \N +95005 2025-06-26 05:00:56.129092+00 2025-06-26 05:00:56.129103+00 f t SUBTOTAL 0.00 1 2501 \N +95006 2025-06-26 05:00:56.131039+00 2025-06-26 05:00:56.131048+00 f t DESCUENTO 0.00 2 2501 \N +95007 2025-06-26 05:00:56.13239+00 2025-06-26 05:00:56.132401+00 f t TOTAL 0.00 3 2501 \N +95008 2025-06-26 05:00:56.133857+00 2025-06-26 05:00:56.133864+00 f t ADELANTO 0.00 4 2501 \N +95013 2025-06-26 05:02:13.495243+00 2025-06-26 05:02:13.495256+00 f t SUBTOTAL 0.00 1 2502 \N +95014 2025-06-26 05:02:13.497451+00 2025-06-26 05:02:13.497463+00 f t DESCUENTO 0.00 2 2502 \N +95015 2025-06-26 05:02:13.49964+00 2025-06-26 05:02:13.499653+00 f t TOTAL 0.00 3 2502 \N +95016 2025-06-26 05:02:13.501802+00 2025-06-26 05:02:13.501815+00 f t ADELANTO 0.00 4 2502 \N +96453 2025-06-26 19:44:08.626137+00 2025-06-26 19:44:08.626145+00 f t SUBTOTAL 0.00 1 2539 \N +96454 2025-06-26 19:44:08.627607+00 2025-06-26 19:44:08.627613+00 f t DESCUENTO 0.00 2 2539 \N +95021 2025-06-26 05:47:35.713689+00 2025-06-26 05:47:35.713698+00 f t SUBTOTAL 0.00 1 2503 \N +95022 2025-06-26 05:47:35.715311+00 2025-06-26 05:47:35.715319+00 f t DESCUENTO 0.00 2 2503 \N +95023 2025-06-26 05:47:35.716691+00 2025-06-26 05:47:35.716698+00 f t TOTAL 0.00 3 2503 \N +95024 2025-06-26 05:47:35.718211+00 2025-06-26 05:47:35.718218+00 f t ADELANTO 0.00 4 2503 \N +96455 2025-06-26 19:44:08.628785+00 2025-06-26 19:44:08.628843+00 f t TOTAL 0.00 3 2539 \N +96456 2025-06-26 19:44:08.629957+00 2025-06-26 19:44:08.629963+00 f t ADELANTO 0.00 4 2539 \N +96521 2025-06-26 19:52:01.111941+00 2025-06-26 19:52:01.111949+00 f t SUBTOTAL 62000.00 1 2541 \N +96522 2025-06-26 19:52:01.11367+00 2025-06-26 19:52:01.113678+00 f t DESCUENTO 0.00 2 2541 \N +96523 2025-06-26 19:52:01.115079+00 2025-06-26 19:52:01.115086+00 f t TOTAL 62000.00 3 2541 \N +96524 2025-06-26 19:52:01.116574+00 2025-06-26 19:52:01.11658+00 f t ADELANTO 12000.00 4 2541 \N +95297 2025-06-26 12:05:40.596044+00 2025-06-26 12:05:40.596053+00 f t SUBTOTAL 64500.00 1 2511 \N +95298 2025-06-26 12:05:40.598218+00 2025-06-26 12:05:40.598226+00 f t DESCUENTO 0.00 2 2511 \N +95299 2025-06-26 12:05:40.59962+00 2025-06-26 12:05:40.599627+00 f t TOTAL 64500.00 3 2511 \N +95300 2025-06-26 12:05:40.601396+00 2025-06-26 12:05:40.601403+00 f t ADELANTO 17000.00 4 2511 \N +102421 2025-06-29 16:06:24.78735+00 2025-06-29 16:06:24.787359+00 f t SUBTOTAL 50000.00 1 2689 \N +102422 2025-06-29 16:06:24.788833+00 2025-06-29 16:06:24.788839+00 f t DESCUENTO 0.00 2 2689 \N +102423 2025-06-29 16:06:24.789887+00 2025-06-29 16:06:24.789893+00 f t TOTAL 50000.00 3 2689 \N +102424 2025-06-29 16:06:24.79107+00 2025-06-29 16:06:24.791075+00 f t ADELANTO 10000.00 4 2689 \N +102461 2025-06-29 16:11:34.565969+00 2025-06-29 16:11:34.565977+00 f t SUBTOTAL 45000.00 1 2690 \N +100193 2025-06-28 20:00:33.162105+00 2025-06-28 20:00:33.162119+00 f t SUBTOTAL 0.00 1 2636 \N +100194 2025-06-28 20:00:33.164682+00 2025-06-28 20:00:33.164696+00 f t DESCUENTO 0.00 2 2636 \N +100195 2025-06-28 20:00:33.16873+00 2025-06-28 20:00:33.168744+00 f t TOTAL 0.00 3 2636 \N +100196 2025-06-28 20:00:33.172206+00 2025-06-28 20:00:33.172219+00 f t ADELANTO 0.00 4 2636 \N +95097 2025-06-26 09:37:58.470355+00 2025-06-26 09:37:58.470364+00 f t SUBTOTAL 72000.00 1 2504 \N +95098 2025-06-26 09:37:58.472117+00 2025-06-26 09:37:58.472127+00 f t DESCUENTO 0.00 2 2504 \N +95099 2025-06-26 09:37:58.473581+00 2025-06-26 09:37:58.473587+00 f t TOTAL 72000.00 3 2504 \N +95100 2025-06-26 09:37:58.47474+00 2025-06-26 09:37:58.474746+00 f t ADELANTO 19000.00 4 2504 \N +95117 2025-06-26 10:58:46.369083+00 2025-06-26 10:58:46.369095+00 f t SUBTOTAL 0.00 1 2505 \N +95118 2025-06-26 10:58:46.371308+00 2025-06-26 10:58:46.37132+00 f t DESCUENTO 0.00 2 2505 \N +95119 2025-06-26 10:58:46.373068+00 2025-06-26 10:58:46.373079+00 f t TOTAL 0.00 3 2505 \N +95120 2025-06-26 10:58:46.374814+00 2025-06-26 10:58:46.374823+00 f t ADELANTO 0.00 4 2505 \N +95653 2025-06-26 12:57:20.497271+00 2025-06-26 12:57:20.497279+00 f t SUBTOTAL 0.00 1 2519 \N +95654 2025-06-26 12:57:20.498569+00 2025-06-26 12:57:20.498575+00 f t DESCUENTO 0.00 2 2519 \N +95655 2025-06-26 12:57:20.49967+00 2025-06-26 12:57:20.499678+00 f t TOTAL 0.00 3 2519 \N +95656 2025-06-26 12:57:20.500797+00 2025-06-26 12:57:20.500803+00 f t ADELANTO 0.00 4 2519 \N +98217 2025-06-27 14:32:16.836377+00 2025-06-27 14:32:16.836386+00 f t SUBTOTAL 50000.00 1 2583 \N +98218 2025-06-27 14:32:16.838161+00 2025-06-27 14:32:16.838171+00 f t DESCUENTO 0.00 2 2583 \N +98219 2025-06-27 14:32:16.839754+00 2025-06-27 14:32:16.839763+00 f t TOTAL 50000.00 3 2583 \N +95145 2025-06-26 11:04:33.862051+00 2025-06-26 11:04:33.862063+00 f t SUBTOTAL 49500.00 1 2506 \N +95146 2025-06-26 11:04:33.864074+00 2025-06-26 11:04:33.864085+00 f t DESCUENTO 0.00 2 2506 \N +95147 2025-06-26 11:04:33.865878+00 2025-06-26 11:04:33.865889+00 f t TOTAL 49500.00 3 2506 \N +95148 2025-06-26 11:04:33.867391+00 2025-06-26 11:04:33.8674+00 f t ADELANTO 11500.00 4 2506 \N +98220 2025-06-27 14:32:16.841415+00 2025-06-27 14:32:16.841424+00 f t ADELANTO 10000.00 4 2583 \N +98253 2025-06-27 14:36:12.049379+00 2025-06-27 14:36:12.049392+00 f t SUBTOTAL 88000.00 1 2585 \N +98254 2025-06-27 14:36:12.05147+00 2025-06-27 14:36:12.05148+00 f t DESCUENTO 0.00 2 2585 \N +98255 2025-06-27 14:36:12.053541+00 2025-06-27 14:36:12.053549+00 f t TOTAL 88000.00 3 2585 \N +98256 2025-06-27 14:36:12.055119+00 2025-06-27 14:36:12.055126+00 f t ADELANTO 19000.00 4 2585 \N +95161 2025-06-26 11:13:16.432464+00 2025-06-26 11:13:16.432477+00 f t SUBTOTAL 0.00 1 2507 \N +95162 2025-06-26 11:13:16.434737+00 2025-06-26 11:13:16.434747+00 f t DESCUENTO 0.00 2 2507 \N +95163 2025-06-26 11:13:16.436411+00 2025-06-26 11:13:16.43642+00 f t TOTAL 0.00 3 2507 \N +95164 2025-06-26 11:13:16.437958+00 2025-06-26 11:13:16.437967+00 f t ADELANTO 0.00 4 2507 \N +98345 2025-06-27 14:59:38.592477+00 2025-06-27 14:59:38.59249+00 f t SUBTOTAL 27500.00 1 2586 \N +98346 2025-06-27 14:59:38.594712+00 2025-06-27 14:59:38.59472+00 f t DESCUENTO 0.00 2 2586 \N +98347 2025-06-27 14:59:38.596222+00 2025-06-27 14:59:38.596229+00 f t TOTAL 27500.00 3 2586 \N +98348 2025-06-27 14:59:38.597436+00 2025-06-27 14:59:38.597446+00 f t ADELANTO 27500.00 4 2586 \N +95853 2025-06-26 15:52:37.816597+00 2025-06-26 15:52:37.816608+00 f t SUBTOTAL 0.00 1 2524 \N +95854 2025-06-26 15:52:37.818793+00 2025-06-26 15:52:37.818802+00 f t DESCUENTO 0.00 2 2524 \N +95855 2025-06-26 15:52:37.820398+00 2025-06-26 15:52:37.820408+00 f t TOTAL 0.00 3 2524 \N +95856 2025-06-26 15:52:37.822053+00 2025-06-26 15:52:37.822061+00 f t ADELANTO 0.00 4 2524 \N +100609 2025-06-28 20:49:23.196572+00 2025-06-28 20:49:23.19658+00 f t SUBTOTAL 0.00 1 2644 \N +100610 2025-06-28 20:49:23.197852+00 2025-06-28 20:49:23.197858+00 f t DESCUENTO 0.00 2 2644 \N +100611 2025-06-28 20:49:23.199031+00 2025-06-28 20:49:23.199037+00 f t TOTAL 0.00 3 2644 \N +100612 2025-06-28 20:49:23.200307+00 2025-06-28 20:49:23.200313+00 f t ADELANTO 0.00 4 2644 \N +100853 2025-06-28 23:17:12.93942+00 2025-06-28 23:17:12.939431+00 f t SUBTOTAL 27500.00 1 2649 \N +100854 2025-06-28 23:17:12.940947+00 2025-06-28 23:17:12.940953+00 f t DESCUENTO 0.00 2 2649 \N +100855 2025-06-28 23:17:12.942135+00 2025-06-28 23:17:12.942141+00 f t TOTAL 27500.00 3 2649 \N +100856 2025-06-28 23:17:12.943259+00 2025-06-28 23:17:12.943264+00 f t ADELANTO 27500.00 4 2649 \N +96209 2025-06-26 18:06:35.921392+00 2025-06-26 18:06:35.921401+00 f t SUBTOTAL 62000.00 1 2532 \N +96210 2025-06-26 18:06:35.922949+00 2025-06-26 18:06:35.922956+00 f t DESCUENTO 0.00 2 2532 \N +96211 2025-06-26 18:06:35.924373+00 2025-06-26 18:06:35.92438+00 f t TOTAL 62000.00 3 2532 \N +96212 2025-06-26 18:06:35.92569+00 2025-06-26 18:06:35.925696+00 f t ADELANTO 12000.00 4 2532 \N +96277 2025-06-26 18:32:37.834658+00 2025-06-26 18:32:37.834667+00 f t SUBTOTAL 50000.00 1 2534 \N +96278 2025-06-26 18:32:37.836528+00 2025-06-26 18:32:37.836537+00 f t DESCUENTO 0.00 2 2534 \N +96279 2025-06-26 18:32:37.838027+00 2025-06-26 18:32:37.838033+00 f t TOTAL 50000.00 3 2534 \N +96280 2025-06-26 18:32:37.839257+00 2025-06-26 18:32:37.839263+00 f t ADELANTO 10000.00 4 2534 \N +96461 2025-06-26 19:45:27.733795+00 2025-06-26 19:45:27.733807+00 f t SUBTOTAL 0.00 1 2540 \N +96462 2025-06-26 19:45:27.735593+00 2025-06-26 19:45:27.735602+00 f t DESCUENTO 0.00 2 2540 \N +96463 2025-06-26 19:45:27.73713+00 2025-06-26 19:45:27.737138+00 f t TOTAL 0.00 3 2540 \N +96464 2025-06-26 19:45:27.738416+00 2025-06-26 19:45:27.738422+00 f t ADELANTO 0.00 4 2540 \N +99069 2025-06-28 02:39:54.08692+00 2025-06-28 02:39:54.086929+00 f t SUBTOTAL 45000.00 1 2604 \N +99070 2025-06-28 02:39:54.08879+00 2025-06-28 02:39:54.088799+00 f t DESCUENTO 0.00 2 2604 \N +99071 2025-06-28 02:39:54.091347+00 2025-06-28 02:39:54.091354+00 f t TOTAL 45000.00 3 2604 \N +99072 2025-06-28 02:39:54.093384+00 2025-06-28 02:39:54.09341+00 f t ADELANTO 10000.00 4 2604 \N +96529 2025-06-26 21:28:05.994522+00 2025-06-26 21:28:05.994534+00 f t SUBTOTAL 0.00 1 2542 \N +96530 2025-06-26 21:28:05.996209+00 2025-06-26 21:28:05.996217+00 f t DESCUENTO 0.00 2 2542 \N +96531 2025-06-26 21:28:05.997689+00 2025-06-26 21:28:05.997696+00 f t TOTAL 0.00 3 2542 \N +96532 2025-06-26 21:28:05.99932+00 2025-06-26 21:28:05.999329+00 f t ADELANTO 0.00 4 2542 \N +96553 2025-06-26 21:44:56.563086+00 2025-06-26 21:44:56.563099+00 f t SUBTOTAL 0.00 1 2545 \N +96554 2025-06-26 21:44:56.564832+00 2025-06-26 21:44:56.564843+00 f t DESCUENTO 0.00 2 2545 \N +96555 2025-06-26 21:44:56.566687+00 2025-06-26 21:44:56.566697+00 f t TOTAL 0.00 3 2545 \N +96556 2025-06-26 21:44:56.568385+00 2025-06-26 21:44:56.568396+00 f t ADELANTO 0.00 4 2545 \N +100009 2025-06-28 17:28:22.268501+00 2025-06-28 17:28:22.26851+00 f t SUBTOTAL 0.00 1 2630 \N +100010 2025-06-28 17:28:22.270582+00 2025-06-28 17:28:22.270589+00 f t DESCUENTO 0.00 2 2630 \N +100011 2025-06-28 17:28:22.272121+00 2025-06-28 17:28:22.27213+00 f t TOTAL 0.00 3 2630 \N +100012 2025-06-28 17:28:22.273346+00 2025-06-28 17:28:22.273353+00 f t ADELANTO 0.00 4 2630 \N +102462 2025-06-29 16:11:34.567767+00 2025-06-29 16:11:34.567776+00 f t DESCUENTO 0.00 2 2690 \N +102463 2025-06-29 16:11:34.569093+00 2025-06-29 16:11:34.569099+00 f t TOTAL 45000.00 3 2690 \N +102464 2025-06-29 16:11:34.570245+00 2025-06-29 16:11:34.57025+00 f t ADELANTO 10000.00 4 2690 \N +96649 2025-06-26 23:03:11.748586+00 2025-06-26 23:03:11.748599+00 f t SUBTOTAL 42000.00 1 2547 \N +96650 2025-06-26 23:03:11.750602+00 2025-06-26 23:03:11.750612+00 f t DESCUENTO 0.00 2 2547 \N +96651 2025-06-26 23:03:11.752166+00 2025-06-26 23:03:11.752174+00 f t TOTAL 42000.00 3 2547 \N +96652 2025-06-26 23:03:11.753759+00 2025-06-26 23:03:11.753768+00 f t ADELANTO 9500.00 4 2547 \N +105237 2025-06-30 22:47:40.857567+00 2025-06-30 22:47:40.857582+00 f t SUBTOTAL 62000.00 1 2775 \N +96657 2025-06-26 23:03:52.591087+00 2025-06-26 23:03:52.591096+00 f t SUBTOTAL 0.00 1 2548 \N +96658 2025-06-26 23:03:52.592411+00 2025-06-26 23:03:52.592417+00 f t DESCUENTO 0.00 2 2548 \N +96659 2025-06-26 23:03:52.593653+00 2025-06-26 23:03:52.593659+00 f t TOTAL 0.00 3 2548 \N +96660 2025-06-26 23:03:52.594659+00 2025-06-26 23:03:52.594667+00 f t ADELANTO 0.00 4 2548 \N +105238 2025-06-30 22:47:40.859762+00 2025-06-30 22:47:40.85977+00 f t DESCUENTO 0.00 2 2775 \N +105239 2025-06-30 22:47:40.861113+00 2025-06-30 22:47:40.861121+00 f t TOTAL 62000.00 3 2775 \N +105240 2025-06-30 22:47:40.86247+00 2025-06-30 22:47:40.862479+00 f t ADELANTO 12000.00 4 2775 \N +105281 2025-06-30 23:58:39.646976+00 2025-06-30 23:58:39.646985+00 f t SUBTOTAL 0.00 1 2777 \N +105282 2025-06-30 23:58:39.6491+00 2025-06-30 23:58:39.649108+00 f t DESCUENTO 0.00 2 2777 \N +98093 2025-06-27 13:31:36.561894+00 2025-06-27 13:31:36.561903+00 f t SUBTOTAL 64500.00 1 2579 \N +98094 2025-06-27 13:31:36.563319+00 2025-06-27 13:31:36.563325+00 f t DESCUENTO 0.00 2 2579 \N +98095 2025-06-27 13:31:36.564364+00 2025-06-27 13:31:36.56437+00 f t TOTAL 64500.00 3 2579 \N +98096 2025-06-27 13:31:36.565252+00 2025-06-27 13:31:36.565257+00 f t ADELANTO 17000.00 4 2579 \N +98189 2025-06-27 14:30:50.152908+00 2025-06-27 14:30:50.152918+00 f t SUBTOTAL 0.00 1 2582 \N +98190 2025-06-27 14:30:50.154869+00 2025-06-27 14:30:50.154876+00 f t DESCUENTO 0.00 2 2582 \N +98191 2025-06-27 14:30:50.156228+00 2025-06-27 14:30:50.156236+00 f t TOTAL 0.00 3 2582 \N +98192 2025-06-27 14:30:50.157624+00 2025-06-27 14:30:50.157629+00 f t ADELANTO 0.00 4 2582 \N +100537 2025-06-28 20:25:58.414262+00 2025-06-28 20:25:58.414272+00 f t SUBTOTAL 42000.00 1 2641 \N +100538 2025-06-28 20:25:58.416428+00 2025-06-28 20:25:58.416436+00 f t DESCUENTO 0.00 2 2641 \N +100539 2025-06-28 20:25:58.417788+00 2025-06-28 20:25:58.417794+00 f t TOTAL 42000.00 3 2641 \N +100540 2025-06-28 20:25:58.418926+00 2025-06-28 20:25:58.418935+00 f t ADELANTO 9500.00 4 2641 \N +98285 2025-06-27 14:37:01.45305+00 2025-06-27 14:37:01.453102+00 f t SUBTOTAL 107200.00 1 2584 \N +98286 2025-06-27 14:37:01.455411+00 2025-06-27 14:37:01.455421+00 f t DESCUENTO 0.00 2 2584 \N +98287 2025-06-27 14:37:01.457308+00 2025-06-27 14:37:01.457319+00 f t TOTAL 107200.00 3 2584 \N +98288 2025-06-27 14:37:01.459007+00 2025-06-27 14:37:01.459018+00 f t ADELANTO 69200.00 4 2584 \N +96729 2025-06-26 23:07:28.729986+00 2025-06-26 23:07:28.729994+00 f t SUBTOTAL 42000.00 1 2549 \N +96730 2025-06-26 23:07:28.731402+00 2025-06-26 23:07:28.731408+00 f t DESCUENTO 0.00 2 2549 \N +96731 2025-06-26 23:07:28.732579+00 2025-06-26 23:07:28.732584+00 f t TOTAL 42000.00 3 2549 \N +96732 2025-06-26 23:07:28.733677+00 2025-06-26 23:07:28.733682+00 f t ADELANTO 9500.00 4 2549 \N +96781 2025-06-26 23:20:10.495934+00 2025-06-26 23:20:10.495947+00 f t SUBTOTAL 50000.00 1 2550 \N +96782 2025-06-26 23:20:10.498218+00 2025-06-26 23:20:10.49823+00 f t DESCUENTO 0.00 2 2550 \N +96783 2025-06-26 23:20:10.500158+00 2025-06-26 23:20:10.500169+00 f t TOTAL 50000.00 3 2550 \N +96784 2025-06-26 23:20:10.503056+00 2025-06-26 23:20:10.503068+00 f t ADELANTO 10000.00 4 2550 \N +98865 2025-06-27 23:27:59.561179+00 2025-06-27 23:27:59.561188+00 f t SUBTOTAL 107200.00 1 2600 \N +98866 2025-06-27 23:27:59.563015+00 2025-06-27 23:27:59.563022+00 f t DESCUENTO 0.00 2 2600 \N +98867 2025-06-27 23:27:59.564593+00 2025-06-27 23:27:59.564599+00 f t TOTAL 107200.00 3 2600 \N +98868 2025-06-27 23:27:59.565946+00 2025-06-27 23:27:59.565953+00 f t ADELANTO 69200.00 4 2600 \N +101269 2025-06-29 01:04:37.790243+00 2025-06-29 01:04:37.790253+00 f t SUBTOTAL 0.00 1 2659 \N +101270 2025-06-29 01:04:37.791722+00 2025-06-29 01:04:37.791729+00 f t DESCUENTO 0.00 2 2659 \N +101271 2025-06-29 01:04:37.793045+00 2025-06-29 01:04:37.793053+00 f t TOTAL 0.00 3 2659 \N +101272 2025-06-29 01:04:37.794263+00 2025-06-29 01:04:37.794271+00 f t ADELANTO 0.00 4 2659 \N +101297 2025-06-29 01:09:30.114014+00 2025-06-29 01:09:30.114023+00 f t SUBTOTAL 50000.00 1 2660 \N +99021 2025-06-28 02:05:15.427332+00 2025-06-28 02:05:15.427341+00 f t SUBTOTAL 0.00 1 2603 \N +99022 2025-06-28 02:05:15.429876+00 2025-06-28 02:05:15.429885+00 f t DESCUENTO 0.00 2 2603 \N +99023 2025-06-28 02:05:15.431461+00 2025-06-28 02:05:15.431471+00 f t TOTAL 0.00 3 2603 \N +99024 2025-06-28 02:05:15.433+00 2025-06-28 02:05:15.433012+00 f t ADELANTO 0.00 4 2603 \N +101298 2025-06-29 01:09:30.115987+00 2025-06-29 01:09:30.115995+00 f t DESCUENTO 0.00 2 2660 \N +101299 2025-06-29 01:09:30.117287+00 2025-06-29 01:09:30.117293+00 f t TOTAL 50000.00 3 2660 \N +101300 2025-06-29 01:09:30.118515+00 2025-06-29 01:09:30.11852+00 f t ADELANTO 10000.00 4 2660 \N +96841 2025-06-27 00:55:02.397018+00 2025-06-27 00:55:02.397032+00 f t SUBTOTAL 50000.00 1 2551 \N +96842 2025-06-27 00:55:02.400307+00 2025-06-27 00:55:02.400325+00 f t DESCUENTO 0.00 2 2551 \N +96843 2025-06-27 00:55:02.415611+00 2025-06-27 00:55:02.415623+00 f t TOTAL 50000.00 3 2551 \N +96844 2025-06-27 00:55:02.422946+00 2025-06-27 00:55:02.422973+00 f t ADELANTO 10000.00 4 2551 \N +101465 2025-06-29 04:01:24.611683+00 2025-06-29 04:01:24.611692+00 f t SUBTOTAL 50000.00 1 2666 \N +101466 2025-06-29 04:01:24.613372+00 2025-06-29 04:01:24.613382+00 f t DESCUENTO 0.00 2 2666 \N +101467 2025-06-29 04:01:24.614666+00 2025-06-29 04:01:24.614672+00 f t TOTAL 50000.00 3 2666 \N +101468 2025-06-29 04:01:24.615989+00 2025-06-29 04:01:24.615995+00 f t ADELANTO 10000.00 4 2666 \N +96869 2025-06-27 00:57:29.678001+00 2025-06-27 00:57:29.678012+00 f t SUBTOTAL 49500.00 1 2552 \N +96870 2025-06-27 00:57:29.679764+00 2025-06-27 00:57:29.679772+00 f t DESCUENTO 0.00 2 2552 \N +96871 2025-06-27 00:57:29.681315+00 2025-06-27 00:57:29.681325+00 f t TOTAL 49500.00 3 2552 \N +96872 2025-06-27 00:57:29.682799+00 2025-06-27 00:57:29.682808+00 f t ADELANTO 11500.00 4 2552 \N +99333 2025-06-28 03:42:37.829162+00 2025-06-28 03:42:37.829174+00 f t SUBTOTAL 0.00 1 2607 \N +99334 2025-06-28 03:42:37.830832+00 2025-06-28 03:42:37.830841+00 f t DESCUENTO 0.00 2 2607 \N +99335 2025-06-28 03:42:37.832242+00 2025-06-28 03:42:37.832249+00 f t TOTAL 0.00 3 2607 \N +99336 2025-06-28 03:42:37.833427+00 2025-06-28 03:42:37.833434+00 f t ADELANTO 0.00 4 2607 \N +96901 2025-06-27 01:00:46.625834+00 2025-06-27 01:00:46.625844+00 f t SUBTOTAL 50000.00 1 2553 \N +96902 2025-06-27 01:00:46.627609+00 2025-06-27 01:00:46.627617+00 f t DESCUENTO 0.00 2 2553 \N +96903 2025-06-27 01:00:46.629023+00 2025-06-27 01:00:46.629032+00 f t TOTAL 50000.00 3 2553 \N +96904 2025-06-27 01:00:46.630735+00 2025-06-27 01:00:46.630742+00 f t ADELANTO 10000.00 4 2553 \N +97589 2025-06-27 11:22:43.540869+00 2025-06-27 11:22:43.540878+00 f t SUBTOTAL 42000.00 1 2568 \N +97590 2025-06-27 11:22:43.542486+00 2025-06-27 11:22:43.542494+00 f t DESCUENTO 0.00 2 2568 \N +97591 2025-06-27 11:22:43.543821+00 2025-06-27 11:22:43.543827+00 f t TOTAL 42000.00 3 2568 \N +97592 2025-06-27 11:22:43.54598+00 2025-06-27 11:22:43.545986+00 f t ADELANTO 9500.00 4 2568 \N +96909 2025-06-27 01:02:03.882621+00 2025-06-27 01:02:03.882633+00 f t SUBTOTAL 0.00 1 2554 \N +96910 2025-06-27 01:02:03.88483+00 2025-06-27 01:02:03.884841+00 f t DESCUENTO 0.00 2 2554 \N +96911 2025-06-27 01:02:03.88658+00 2025-06-27 01:02:03.886591+00 f t TOTAL 0.00 3 2554 \N +96912 2025-06-27 01:02:03.888609+00 2025-06-27 01:02:03.888619+00 f t ADELANTO 0.00 4 2554 \N +99901 2025-06-28 15:47:41.300783+00 2025-06-28 15:47:41.300794+00 f t SUBTOTAL 70000.00 1 2623 \N +99902 2025-06-28 15:47:41.30247+00 2025-06-28 15:47:41.302477+00 f t DESCUENTO 0.00 2 2623 \N +99903 2025-06-28 15:47:41.303689+00 2025-06-28 15:47:41.303695+00 f t TOTAL 70000.00 3 2623 \N +99904 2025-06-28 15:47:41.304851+00 2025-06-28 15:47:41.304856+00 f t ADELANTO 10000.00 4 2623 \N +104925 2025-06-30 21:45:40.976424+00 2025-06-30 21:45:40.976432+00 f t SUBTOTAL 42000.00 1 2770 \N +104926 2025-06-30 21:45:40.9783+00 2025-06-30 21:45:40.978308+00 f t DESCUENTO 0.00 2 2770 \N +104927 2025-06-30 21:45:40.979749+00 2025-06-30 21:45:40.979758+00 f t TOTAL 42000.00 3 2770 \N +104928 2025-06-30 21:45:40.981032+00 2025-06-30 21:45:40.98104+00 f t ADELANTO 9500.00 4 2770 \N +100057 2025-06-28 17:33:28.465109+00 2025-06-28 17:33:28.465123+00 f t SUBTOTAL 0.00 1 2632 \N +100058 2025-06-28 17:33:28.467464+00 2025-06-28 17:33:28.467475+00 f t DESCUENTO 0.00 2 2632 \N +100059 2025-06-28 17:33:28.469278+00 2025-06-28 17:33:28.469288+00 f t TOTAL 0.00 3 2632 \N +100060 2025-06-28 17:33:28.470867+00 2025-06-28 17:33:28.470876+00 f t ADELANTO 0.00 4 2632 \N +102636 2025-06-29 18:40:06.941648+00 2025-06-29 18:40:06.94166+00 f t ADELANTO 0.00 4 2697 \N +98101 2025-06-27 13:39:38.856124+00 2025-06-27 13:39:38.856132+00 f t SUBTOTAL 0.00 1 2580 \N +98102 2025-06-27 13:39:38.857481+00 2025-06-27 13:39:38.857487+00 f t DESCUENTO 0.00 2 2580 \N +98103 2025-06-27 13:39:38.858761+00 2025-06-27 13:39:38.858767+00 f t TOTAL 0.00 3 2580 \N +98104 2025-06-27 13:39:38.859843+00 2025-06-27 13:39:38.859848+00 f t ADELANTO 0.00 4 2580 \N +96981 2025-06-27 01:04:43.822193+00 2025-06-27 01:04:43.822206+00 f t SUBTOTAL 64500.00 1 2555 \N +96982 2025-06-27 01:04:43.824183+00 2025-06-27 01:04:43.824194+00 f t DESCUENTO 0.00 2 2555 \N +96983 2025-06-27 01:04:43.825892+00 2025-06-27 01:04:43.825901+00 f t TOTAL 64500.00 3 2555 \N +96984 2025-06-27 01:04:43.827487+00 2025-06-27 01:04:43.827496+00 f t ADELANTO 17000.00 4 2555 \N +102797 2025-06-29 21:20:37.11556+00 2025-06-29 21:20:37.115573+00 f t SUBTOTAL 0.00 1 2702 \N +102798 2025-06-29 21:20:37.117272+00 2025-06-29 21:20:37.11729+00 f t DESCUENTO 0.00 2 2702 \N +102799 2025-06-29 21:20:37.11875+00 2025-06-29 21:20:37.118759+00 f t TOTAL 0.00 3 2702 \N +102800 2025-06-29 21:20:37.120113+00 2025-06-29 21:20:37.120122+00 f t ADELANTO 0.00 4 2702 \N +102825 2025-06-29 21:21:51.63727+00 2025-06-29 21:21:51.637282+00 f t SUBTOTAL 50000.00 1 2703 \N +102826 2025-06-29 21:21:51.640108+00 2025-06-29 21:21:51.640119+00 f t DESCUENTO 0.00 2 2703 \N +102827 2025-06-29 21:21:51.643077+00 2025-06-29 21:21:51.64309+00 f t TOTAL 50000.00 3 2703 \N +102828 2025-06-29 21:21:51.645082+00 2025-06-29 21:21:51.645092+00 f t ADELANTO 10000.00 4 2703 \N +103009 2025-06-29 23:01:05.863273+00 2025-06-29 23:01:05.863286+00 f t SUBTOTAL 0.00 1 2709 \N +103010 2025-06-29 23:01:05.865313+00 2025-06-29 23:01:05.865324+00 f t DESCUENTO 0.00 2 2709 \N +103011 2025-06-29 23:01:05.86702+00 2025-06-29 23:01:05.867029+00 f t TOTAL 0.00 3 2709 \N +103012 2025-06-29 23:01:05.868606+00 2025-06-29 23:01:05.868615+00 f t ADELANTO 0.00 4 2709 \N +103129 2025-06-30 00:00:02.585109+00 2025-06-30 00:00:02.585123+00 f t SUBTOTAL 0.00 1 2711 \N +103130 2025-06-30 00:00:02.601357+00 2025-06-30 00:00:02.60137+00 f t DESCUENTO 0.00 2 2711 \N +101305 2025-06-29 01:22:28.136157+00 2025-06-29 01:22:28.136166+00 f t SUBTOTAL 0.00 1 2661 \N +101306 2025-06-29 01:22:28.137513+00 2025-06-29 01:22:28.13752+00 f t DESCUENTO 0.00 2 2661 \N +101307 2025-06-29 01:22:28.138817+00 2025-06-29 01:22:28.138824+00 f t TOTAL 0.00 3 2661 \N +101308 2025-06-29 01:22:28.139959+00 2025-06-29 01:22:28.139966+00 f t ADELANTO 0.00 4 2661 \N +98873 2025-06-28 01:01:22.606633+00 2025-06-28 01:01:22.606643+00 f t SUBTOTAL 0.00 1 2601 \N +98874 2025-06-28 01:01:22.608209+00 2025-06-28 01:01:22.608216+00 f t DESCUENTO 0.00 2 2601 \N +98875 2025-06-28 01:01:22.609575+00 2025-06-28 01:01:22.609581+00 f t TOTAL 0.00 3 2601 \N +98876 2025-06-28 01:01:22.61089+00 2025-06-28 01:01:22.610896+00 f t ADELANTO 0.00 4 2601 \N +97117 2025-06-27 01:23:06.766791+00 2025-06-27 01:23:06.766804+00 f t SUBTOTAL 50000.00 1 2556 \N +97118 2025-06-27 01:23:06.769101+00 2025-06-27 01:23:06.769111+00 f t DESCUENTO 0.00 2 2556 \N +97119 2025-06-27 01:23:06.770776+00 2025-06-27 01:23:06.770783+00 f t TOTAL 50000.00 3 2556 \N +97120 2025-06-27 01:23:06.772455+00 2025-06-27 01:23:06.772461+00 f t ADELANTO 10000.00 4 2556 \N +101405 2025-06-29 01:50:01.679477+00 2025-06-29 01:50:01.67949+00 f t SUBTOTAL 42000.00 1 2662 \N +101406 2025-06-29 01:50:01.682307+00 2025-06-29 01:50:01.682318+00 f t DESCUENTO 0.00 2 2662 \N +101407 2025-06-29 01:50:01.684494+00 2025-06-29 01:50:01.684507+00 f t TOTAL 42000.00 3 2662 \N +101408 2025-06-29 01:50:01.688199+00 2025-06-29 01:50:01.688213+00 f t ADELANTO 9500.00 4 2662 \N +98997 2025-06-28 01:11:07.461587+00 2025-06-28 01:11:07.461601+00 f t SUBTOTAL 50000.00 1 2602 \N +98998 2025-06-28 01:11:07.464089+00 2025-06-28 01:11:07.464103+00 f t DESCUENTO 0.00 2 2602 \N +98999 2025-06-28 01:11:07.466511+00 2025-06-28 01:11:07.466524+00 f t TOTAL 50000.00 3 2602 \N +99000 2025-06-28 01:11:07.468548+00 2025-06-28 01:11:07.468559+00 f t ADELANTO 10000.00 4 2602 \N +97145 2025-06-27 02:05:59.020559+00 2025-06-27 02:05:59.020567+00 f t SUBTOTAL 42000.00 1 2557 \N +97146 2025-06-27 02:05:59.022364+00 2025-06-27 02:05:59.022371+00 f t DESCUENTO 0.00 2 2557 \N +97147 2025-06-27 02:05:59.024179+00 2025-06-27 02:05:59.024187+00 f t TOTAL 42000.00 3 2557 \N +97148 2025-06-27 02:05:59.02578+00 2025-06-27 02:05:59.025786+00 f t ADELANTO 9500.00 4 2557 \N +97153 2025-06-27 04:22:18.797195+00 2025-06-27 04:22:18.797206+00 f t SUBTOTAL 0.00 1 2558 \N +97154 2025-06-27 04:22:18.798912+00 2025-06-27 04:22:18.79892+00 f t DESCUENTO 0.00 2 2558 \N +97155 2025-06-27 04:22:18.800392+00 2025-06-27 04:22:18.800402+00 f t TOTAL 0.00 3 2558 \N +97156 2025-06-27 04:22:18.801956+00 2025-06-27 04:22:18.801964+00 f t ADELANTO 0.00 4 2558 \N +101641 2025-06-29 10:17:12.447745+00 2025-06-29 10:17:12.447756+00 f t SUBTOTAL 56000.00 1 2670 \N +101642 2025-06-29 10:17:12.449292+00 2025-06-29 10:17:12.449298+00 f t DESCUENTO 0.00 2 2670 \N +101643 2025-06-29 10:17:12.450351+00 2025-06-29 10:17:12.450356+00 f t TOTAL 56000.00 3 2670 \N +101644 2025-06-29 10:17:12.451368+00 2025-06-29 10:17:12.451373+00 f t ADELANTO 48000.00 4 2670 \N +99281 2025-06-28 03:36:31.915039+00 2025-06-28 03:36:31.915052+00 f t SUBTOTAL 102700.00 1 2605 \N +99282 2025-06-28 03:36:31.916809+00 2025-06-28 03:36:31.916817+00 f t DESCUENTO 0.00 2 2605 \N +99283 2025-06-28 03:36:31.918239+00 2025-06-28 03:36:31.918246+00 f t TOTAL 102700.00 3 2605 \N +99284 2025-06-28 03:36:31.919734+00 2025-06-28 03:36:31.919741+00 f t ADELANTO 64700.00 4 2605 \N +112637 2025-07-04 12:18:29.956736+00 2025-07-04 12:18:29.956749+00 f t SUBTOTAL 0.00 1 2968 \N +99909 2025-06-28 16:13:26.886085+00 2025-06-28 16:13:26.886099+00 f t SUBTOTAL 0.00 1 2624 \N +99910 2025-06-28 16:13:26.888169+00 2025-06-28 16:13:26.888179+00 f t DESCUENTO 0.00 2 2624 \N +99911 2025-06-28 16:13:26.891764+00 2025-06-28 16:13:26.891776+00 f t TOTAL 0.00 3 2624 \N +99912 2025-06-28 16:13:26.893539+00 2025-06-28 16:13:26.893549+00 f t ADELANTO 0.00 4 2624 \N +97637 2025-06-27 11:31:57.156701+00 2025-06-27 11:31:57.156712+00 f t SUBTOTAL 27500.00 1 2569 \N +97638 2025-06-27 11:31:57.160153+00 2025-06-27 11:31:57.160165+00 f t DESCUENTO 0.00 2 2569 \N +97639 2025-06-27 11:31:57.162069+00 2025-06-27 11:31:57.162077+00 f t TOTAL 27500.00 3 2569 \N +97640 2025-06-27 11:31:57.16351+00 2025-06-27 11:31:57.163517+00 f t ADELANTO 27500.00 4 2569 \N +97677 2025-06-27 11:37:09.567397+00 2025-06-27 11:37:09.567406+00 f t SUBTOTAL 49500.00 1 2570 \N +97678 2025-06-27 11:37:09.569322+00 2025-06-27 11:37:09.56933+00 f t DESCUENTO 0.00 2 2570 \N +97679 2025-06-27 11:37:09.571287+00 2025-06-27 11:37:09.571294+00 f t TOTAL 49500.00 3 2570 \N +97680 2025-06-27 11:37:09.572678+00 2025-06-27 11:37:09.572686+00 f t ADELANTO 11500.00 4 2570 \N +97229 2025-06-27 04:25:34.775607+00 2025-06-27 04:25:34.776088+00 f t SUBTOTAL 0.00 1 2559 \N +97230 2025-06-27 04:25:34.779679+00 2025-06-27 04:25:34.779686+00 f t DESCUENTO 0.00 2 2559 \N +97231 2025-06-27 04:25:34.780972+00 2025-06-27 04:25:34.780977+00 f t TOTAL 0.00 3 2559 \N +97232 2025-06-27 04:25:34.7819+00 2025-06-27 04:25:34.781905+00 f t ADELANTO 0.00 4 2559 \N +97921 2025-06-27 12:45:13.490601+00 2025-06-27 12:45:13.49061+00 f t SUBTOTAL 49500.00 1 2576 \N +97922 2025-06-27 12:45:13.492226+00 2025-06-27 12:45:13.492235+00 f t DESCUENTO 0.00 2 2576 \N +97923 2025-06-27 12:45:13.493541+00 2025-06-27 12:45:13.493547+00 f t TOTAL 49500.00 3 2576 \N +97924 2025-06-27 12:45:13.494664+00 2025-06-27 12:45:13.49467+00 f t ADELANTO 11500.00 4 2576 \N +100245 2025-06-28 20:06:03.635861+00 2025-06-28 20:06:03.6359+00 f t SUBTOTAL 0.00 1 2638 \N +100246 2025-06-28 20:06:03.638561+00 2025-06-28 20:06:03.638574+00 f t DESCUENTO 0.00 2 2638 \N +100247 2025-06-28 20:06:03.641461+00 2025-06-28 20:06:03.641473+00 f t TOTAL 0.00 3 2638 \N +100248 2025-06-28 20:06:03.644207+00 2025-06-28 20:06:03.64422+00 f t ADELANTO 0.00 4 2638 \N +100469 2025-06-28 20:12:24.147707+00 2025-06-28 20:12:24.147716+00 f t SUBTOTAL 50000.00 1 2637 \N +100470 2025-06-28 20:12:24.149321+00 2025-06-28 20:12:24.149328+00 f t DESCUENTO 0.00 2 2637 \N +100471 2025-06-28 20:12:24.150706+00 2025-06-28 20:12:24.150713+00 f t TOTAL 50000.00 3 2637 \N +100472 2025-06-28 20:12:24.152169+00 2025-06-28 20:12:24.152177+00 f t ADELANTO 10000.00 4 2637 \N +97305 2025-06-27 06:02:44.484885+00 2025-06-27 06:02:44.484899+00 f t SUBTOTAL 203700.00 1 2560 \N +97306 2025-06-27 06:02:44.487121+00 2025-06-27 06:02:44.487159+00 f t DESCUENTO 0.00 2 2560 \N +97307 2025-06-27 06:02:44.489297+00 2025-06-27 06:02:44.489309+00 f t TOTAL 203700.00 3 2560 \N +97308 2025-06-27 06:02:44.491249+00 2025-06-27 06:02:44.49126+00 f t ADELANTO 50700.00 4 2560 \N +97313 2025-06-27 06:23:21.435704+00 2025-06-27 06:23:21.435713+00 f t SUBTOTAL 0.00 1 2561 \N +97314 2025-06-27 06:23:21.437128+00 2025-06-27 06:23:21.437135+00 f t DESCUENTO 0.00 2 2561 \N +97315 2025-06-27 06:23:21.438122+00 2025-06-27 06:23:21.438127+00 f t TOTAL 0.00 3 2561 \N +97316 2025-06-27 06:23:21.439192+00 2025-06-27 06:23:21.4392+00 f t ADELANTO 0.00 4 2561 \N +98445 2025-06-27 15:10:51.691966+00 2025-06-27 15:10:51.692017+00 f t SUBTOTAL 42000.00 1 2587 \N +98446 2025-06-27 15:10:51.693497+00 2025-06-27 15:10:51.693505+00 f t DESCUENTO 0.00 2 2587 \N +98447 2025-06-27 15:10:51.694815+00 2025-06-27 15:10:51.694821+00 f t TOTAL 42000.00 3 2587 \N +98448 2025-06-27 15:10:51.696203+00 2025-06-27 15:10:51.696209+00 f t ADELANTO 9500.00 4 2587 \N +100725 2025-06-28 22:42:19.064687+00 2025-06-28 22:42:19.064698+00 f t SUBTOTAL 27500.00 1 2646 \N +100726 2025-06-28 22:42:19.066935+00 2025-06-28 22:42:19.066952+00 f t DESCUENTO 0.00 2 2646 \N +100727 2025-06-28 22:42:19.069114+00 2025-06-28 22:42:19.069123+00 f t TOTAL 27500.00 3 2646 \N +100728 2025-06-28 22:42:19.070854+00 2025-06-28 22:42:19.070863+00 f t ADELANTO 27500.00 4 2646 \N +98577 2025-06-27 20:01:42.949733+00 2025-06-27 20:01:42.949742+00 f t SUBTOTAL 50000.00 1 2592 \N +98578 2025-06-27 20:01:42.951156+00 2025-06-27 20:01:42.951162+00 f t DESCUENTO 0.00 2 2592 \N +98579 2025-06-27 20:01:42.952514+00 2025-06-27 20:01:42.952524+00 f t TOTAL 50000.00 3 2592 \N +98580 2025-06-27 20:01:42.953822+00 2025-06-27 20:01:42.953827+00 f t ADELANTO 10000.00 4 2592 \N +97349 2025-06-27 06:29:12.420542+00 2025-06-27 06:29:12.420551+00 f t SUBTOTAL 42000.00 1 2562 \N +97350 2025-06-27 06:29:12.422368+00 2025-06-27 06:29:12.422376+00 f t DESCUENTO 0.00 2 2562 \N +97351 2025-06-27 06:29:12.423675+00 2025-06-27 06:29:12.423682+00 f t TOTAL 42000.00 3 2562 \N +97352 2025-06-27 06:29:12.425057+00 2025-06-27 06:29:12.425064+00 f t ADELANTO 9500.00 4 2562 \N +98765 2025-06-27 22:56:49.593609+00 2025-06-27 22:56:49.593618+00 f t SUBTOTAL 111000.00 1 2597 \N +98766 2025-06-27 22:56:49.595238+00 2025-06-27 22:56:49.595245+00 f t DESCUENTO 0.00 2 2597 \N +98767 2025-06-27 22:56:49.596644+00 2025-06-27 22:56:49.596653+00 f t TOTAL 111000.00 3 2597 \N +98768 2025-06-27 22:56:49.59776+00 2025-06-27 22:56:49.597765+00 f t ADELANTO 23500.00 4 2597 \N +98793 2025-06-27 23:10:36.007665+00 2025-06-27 23:10:36.007674+00 f t SUBTOTAL 62000.00 1 2598 \N +98794 2025-06-27 23:10:36.009701+00 2025-06-27 23:10:36.00971+00 f t DESCUENTO 0.00 2 2598 \N +98795 2025-06-27 23:10:36.011245+00 2025-06-27 23:10:36.011256+00 f t TOTAL 62000.00 3 2598 \N +98796 2025-06-27 23:10:36.012897+00 2025-06-27 23:10:36.012903+00 f t ADELANTO 12000.00 4 2598 \N +101021 2025-06-28 23:52:14.297935+00 2025-06-28 23:52:14.297944+00 f t SUBTOTAL 130200.00 1 2652 \N +101022 2025-06-28 23:52:14.299599+00 2025-06-28 23:52:14.299607+00 f t DESCUENTO 0.00 2 2652 \N +101023 2025-06-28 23:52:14.300668+00 2025-06-28 23:52:14.300674+00 f t TOTAL 130200.00 3 2652 \N +101024 2025-06-28 23:52:14.301592+00 2025-06-28 23:52:14.301597+00 f t ADELANTO 92200.00 4 2652 \N +101085 2025-06-29 00:19:36.304807+00 2025-06-29 00:19:36.304819+00 f t SUBTOTAL 42000.00 1 2654 \N +101086 2025-06-29 00:19:36.306776+00 2025-06-29 00:19:36.306787+00 f t DESCUENTO 0.00 2 2654 \N +101087 2025-06-29 00:19:36.308253+00 2025-06-29 00:19:36.308262+00 f t TOTAL 42000.00 3 2654 \N +101088 2025-06-29 00:19:36.310317+00 2025-06-29 00:19:36.310326+00 f t ADELANTO 9500.00 4 2654 \N +97397 2025-06-27 09:04:51.53902+00 2025-06-27 09:04:51.539028+00 f t SUBTOTAL 50000.00 1 2563 \N +97398 2025-06-27 09:04:51.540622+00 2025-06-27 09:04:51.540629+00 f t DESCUENTO 0.00 2 2563 \N +97399 2025-06-27 09:04:51.541678+00 2025-06-27 09:04:51.541684+00 f t TOTAL 50000.00 3 2563 \N +97400 2025-06-27 09:04:51.542616+00 2025-06-27 09:04:51.542621+00 f t ADELANTO 10000.00 4 2563 \N +97405 2025-06-27 09:05:00.955343+00 2025-06-27 09:05:00.955352+00 f t SUBTOTAL 42000.00 1 2564 \N +97406 2025-06-27 09:05:00.957502+00 2025-06-27 09:05:00.957514+00 f t DESCUENTO 0.00 2 2564 \N +97407 2025-06-27 09:05:00.959066+00 2025-06-27 09:05:00.959095+00 f t TOTAL 42000.00 3 2564 \N +97408 2025-06-27 09:05:00.960448+00 2025-06-27 09:05:00.960455+00 f t ADELANTO 9500.00 4 2564 \N +97449 2025-06-27 09:28:11.317435+00 2025-06-27 09:28:11.317445+00 f t SUBTOTAL 49500.00 1 2565 \N +97450 2025-06-27 09:28:11.319121+00 2025-06-27 09:28:11.319155+00 f t DESCUENTO 0.00 2 2565 \N +97451 2025-06-27 09:28:11.32053+00 2025-06-27 09:28:11.320536+00 f t TOTAL 49500.00 3 2565 \N +97452 2025-06-27 09:28:11.321696+00 2025-06-27 09:28:11.321702+00 f t ADELANTO 11500.00 4 2565 \N +112638 2025-07-04 12:18:29.958758+00 2025-07-04 12:18:29.958768+00 f t DESCUENTO 0.00 2 2968 \N +112639 2025-07-04 12:18:29.960565+00 2025-07-04 12:18:29.960574+00 f t TOTAL 0.00 3 2968 \N +112640 2025-07-04 12:18:29.961947+00 2025-07-04 12:18:29.961955+00 f t ADELANTO 0.00 4 2968 \N +133205 2025-07-13 12:09:27.175062+00 2025-07-13 12:09:27.175071+00 f t SUBTOTAL 0.00 1 3510 \N +99973 2025-06-28 17:20:39.901194+00 2025-06-28 17:20:39.901208+00 f t SUBTOTAL 50000.00 1 2627 \N +99974 2025-06-28 17:20:39.903783+00 2025-06-28 17:20:39.903792+00 f t DESCUENTO 0.00 2 2627 \N +99975 2025-06-28 17:20:39.905322+00 2025-06-28 17:20:39.90533+00 f t TOTAL 50000.00 3 2627 \N +99976 2025-06-28 17:20:39.90669+00 2025-06-28 17:20:39.906699+00 f t ADELANTO 10000.00 4 2627 \N +97721 2025-06-27 11:50:25.942641+00 2025-06-27 11:50:25.942649+00 f t SUBTOTAL 42000.00 1 2571 \N +97722 2025-06-27 11:50:25.945002+00 2025-06-27 11:50:25.945012+00 f t DESCUENTO 0.00 2 2571 \N +97723 2025-06-27 11:50:25.946534+00 2025-06-27 11:50:25.946542+00 f t TOTAL 42000.00 3 2571 \N +97724 2025-06-27 11:50:25.947821+00 2025-06-27 11:50:25.94783+00 f t ADELANTO 9500.00 4 2571 \N +97757 2025-06-27 11:58:35.996017+00 2025-06-27 11:58:35.996026+00 f t SUBTOTAL 50000.00 1 2572 \N +97758 2025-06-27 11:58:35.99789+00 2025-06-27 11:58:35.997899+00 f t DESCUENTO 0.00 2 2572 \N +97759 2025-06-27 11:58:35.999382+00 2025-06-27 11:58:35.999391+00 f t TOTAL 50000.00 3 2572 \N +97760 2025-06-27 11:58:36.000673+00 2025-06-27 11:58:36.000679+00 f t ADELANTO 10000.00 4 2572 \N +97985 2025-06-27 13:16:02.500505+00 2025-06-27 13:16:02.500516+00 f t SUBTOTAL 94700.00 1 2577 \N +97986 2025-06-27 13:16:02.502535+00 2025-06-27 13:16:02.502545+00 f t DESCUENTO 0.00 2 2577 \N +97987 2025-06-27 13:16:02.503989+00 2025-06-27 13:16:02.503996+00 f t TOTAL 94700.00 3 2577 \N +97988 2025-06-27 13:16:02.505267+00 2025-06-27 13:16:02.505273+00 f t ADELANTO 56700.00 4 2577 \N +100477 2025-06-28 20:14:46.621931+00 2025-06-28 20:14:46.621942+00 f t SUBTOTAL 0.00 1 2639 \N +100478 2025-06-28 20:14:46.623352+00 2025-06-28 20:14:46.623358+00 f t DESCUENTO 0.00 2 2639 \N +100479 2025-06-28 20:14:46.624719+00 2025-06-28 20:14:46.624724+00 f t TOTAL 0.00 3 2639 \N +100480 2025-06-28 20:14:46.625828+00 2025-06-28 20:14:46.625833+00 f t ADELANTO 0.00 4 2639 \N +102833 2025-06-29 22:10:15.865485+00 2025-06-29 22:10:15.865494+00 f t SUBTOTAL 0.00 1 2704 \N +102834 2025-06-29 22:10:15.8671+00 2025-06-29 22:10:15.867106+00 f t DESCUENTO 0.00 2 2704 \N +102835 2025-06-29 22:10:15.868392+00 2025-06-29 22:10:15.868398+00 f t TOTAL 0.00 3 2704 \N +102836 2025-06-29 22:10:15.869747+00 2025-06-29 22:10:15.869753+00 f t ADELANTO 0.00 4 2704 \N +100733 2025-06-28 22:53:27.666022+00 2025-06-28 22:53:27.666034+00 f t SUBTOTAL 0.00 1 2647 \N +100734 2025-06-28 22:53:27.66753+00 2025-06-28 22:53:27.667537+00 f t DESCUENTO 0.00 2 2647 \N +100735 2025-06-28 22:53:27.6687+00 2025-06-28 22:53:27.668705+00 f t TOTAL 0.00 3 2647 \N +100736 2025-06-28 22:53:27.670093+00 2025-06-28 22:53:27.670101+00 f t ADELANTO 0.00 4 2647 \N +98449 2025-06-27 15:27:39.366031+00 2025-06-27 15:27:39.366043+00 f t SUBTOTAL 0.00 1 2578 \N +98450 2025-06-27 15:27:39.368492+00 2025-06-27 15:27:39.368501+00 f t DESCUENTO 0.00 2 2578 \N +98451 2025-06-27 15:27:39.369813+00 2025-06-27 15:27:39.369821+00 f t TOTAL 0.00 3 2578 \N +98452 2025-06-27 15:27:39.371014+00 2025-06-27 15:27:39.371022+00 f t ADELANTO 0.00 4 2578 \N +98481 2025-06-27 15:59:35.118156+00 2025-06-27 15:59:35.118165+00 f t SUBTOTAL 62000.00 1 2588 \N +98482 2025-06-27 15:59:35.120136+00 2025-06-27 15:59:35.120144+00 f t DESCUENTO 0.00 2 2588 \N +98483 2025-06-27 15:59:35.12148+00 2025-06-27 15:59:35.121487+00 f t TOTAL 62000.00 3 2588 \N +98484 2025-06-27 15:59:35.122692+00 2025-06-27 15:59:35.122698+00 f t ADELANTO 12000.00 4 2588 \N +102965 2025-06-29 22:32:37.633167+00 2025-06-29 22:32:37.633175+00 f t SUBTOTAL 50000.00 1 2707 \N +102966 2025-06-29 22:32:37.634885+00 2025-06-29 22:32:37.634893+00 f t DESCUENTO 0.00 2 2707 \N +102967 2025-06-29 22:32:37.636258+00 2025-06-29 22:32:37.636265+00 f t TOTAL 50000.00 3 2707 \N +102968 2025-06-29 22:32:37.637538+00 2025-06-29 22:32:37.637544+00 f t ADELANTO 10000.00 4 2707 \N +98585 2025-06-27 20:30:39.912709+00 2025-06-27 20:30:39.912719+00 f t SUBTOTAL 0.00 1 2593 \N +98586 2025-06-27 20:30:39.914292+00 2025-06-27 20:30:39.914299+00 f t DESCUENTO 0.00 2 2593 \N +98587 2025-06-27 20:30:39.915424+00 2025-06-27 20:30:39.91543+00 f t TOTAL 0.00 3 2593 \N +98588 2025-06-27 20:30:39.916358+00 2025-06-27 20:30:39.916364+00 f t ADELANTO 0.00 4 2593 \N +98613 2025-06-27 21:27:19.528331+00 2025-06-27 21:27:19.528343+00 f t SUBTOTAL 49500.00 1 2594 \N +98614 2025-06-27 21:27:19.530611+00 2025-06-27 21:27:19.53062+00 f t DESCUENTO 0.00 2 2594 \N +98615 2025-06-27 21:27:19.532251+00 2025-06-27 21:27:19.532261+00 f t TOTAL 49500.00 3 2594 \N +98616 2025-06-27 21:27:19.533688+00 2025-06-27 21:27:19.533694+00 f t ADELANTO 11500.00 4 2594 \N +98641 2025-06-27 21:56:50.294665+00 2025-06-27 21:56:50.294676+00 f t SUBTOTAL 50000.00 1 2595 \N +98642 2025-06-27 21:56:50.296761+00 2025-06-27 21:56:50.296769+00 f t DESCUENTO 0.00 2 2595 \N +98643 2025-06-27 21:56:50.298059+00 2025-06-27 21:56:50.298064+00 f t TOTAL 50000.00 3 2595 \N +98644 2025-06-27 21:56:50.299345+00 2025-06-27 21:56:50.299351+00 f t ADELANTO 10000.00 4 2595 \N +101029 2025-06-29 00:16:38.091007+00 2025-06-29 00:16:38.091016+00 f t SUBTOTAL 0.00 1 2653 \N +101030 2025-06-29 00:16:38.0925+00 2025-06-29 00:16:38.092509+00 f t DESCUENTO 0.00 2 2653 \N +101031 2025-06-29 00:16:38.093706+00 2025-06-29 00:16:38.093711+00 f t TOTAL 0.00 3 2653 \N +101032 2025-06-29 00:16:38.094961+00 2025-06-29 00:16:38.094966+00 f t ADELANTO 0.00 4 2653 \N +98825 2025-06-27 23:16:15.805181+00 2025-06-27 23:16:15.805189+00 f t SUBTOTAL 50000.00 1 2599 \N +98826 2025-06-27 23:16:15.807026+00 2025-06-27 23:16:15.807032+00 f t DESCUENTO 0.00 2 2599 \N +98827 2025-06-27 23:16:15.808297+00 2025-06-27 23:16:15.808303+00 f t TOTAL 50000.00 3 2599 \N +98828 2025-06-27 23:16:15.809343+00 2025-06-27 23:16:15.809348+00 f t ADELANTO 10000.00 4 2599 \N +101413 2025-06-29 02:49:44.863813+00 2025-06-29 02:49:44.863823+00 f t SUBTOTAL 0.00 1 2663 \N +101414 2025-06-29 02:49:44.86571+00 2025-06-29 02:49:44.865719+00 f t DESCUENTO 0.00 2 2663 \N +101415 2025-06-29 02:49:44.867198+00 2025-06-29 02:49:44.867204+00 f t TOTAL 0.00 3 2663 \N +101416 2025-06-29 02:49:44.868566+00 2025-06-29 02:49:44.868576+00 f t ADELANTO 0.00 4 2663 \N +99325 2025-06-28 03:39:40.665843+00 2025-06-28 03:39:40.665856+00 f t SUBTOTAL 0.00 1 2606 \N +99326 2025-06-28 03:39:40.667809+00 2025-06-28 03:39:40.667817+00 f t DESCUENTO 0.00 2 2606 \N +99327 2025-06-28 03:39:40.669019+00 2025-06-28 03:39:40.669026+00 f t TOTAL 0.00 3 2606 \N +99328 2025-06-28 03:39:40.670112+00 2025-06-28 03:39:40.670119+00 f t ADELANTO 0.00 4 2606 \N +99341 2025-06-28 04:22:43.409932+00 2025-06-28 04:22:43.409947+00 f t SUBTOTAL 0.00 1 2608 \N +99342 2025-06-28 04:22:43.411898+00 2025-06-28 04:22:43.41191+00 f t DESCUENTO 0.00 2 2608 \N +99343 2025-06-28 04:22:43.413639+00 2025-06-28 04:22:43.413679+00 f t TOTAL 0.00 3 2608 \N +99344 2025-06-28 04:22:43.41527+00 2025-06-28 04:22:43.415281+00 f t ADELANTO 0.00 4 2608 \N +101577 2025-06-29 06:32:55.071413+00 2025-06-29 06:32:55.071425+00 f t SUBTOTAL 50000.00 1 2668 \N +101578 2025-06-29 06:32:55.073393+00 2025-06-29 06:32:55.073405+00 f t DESCUENTO 0.00 2 2668 \N +101579 2025-06-29 06:32:55.074978+00 2025-06-29 06:32:55.074987+00 f t TOTAL 50000.00 3 2668 \N +101580 2025-06-29 06:32:55.076567+00 2025-06-29 06:32:55.076576+00 f t ADELANTO 10000.00 4 2668 \N +99925 2025-06-28 16:35:45.681295+00 2025-06-28 16:35:45.681304+00 f t SUBTOTAL 0.00 1 2626 \N +99926 2025-06-28 16:35:45.68269+00 2025-06-28 16:35:45.682697+00 f t DESCUENTO 0.00 2 2626 \N +99927 2025-06-28 16:35:45.683978+00 2025-06-28 16:35:45.683984+00 f t TOTAL 0.00 3 2626 \N +99928 2025-06-28 16:35:45.685266+00 2025-06-28 16:35:45.685272+00 f t ADELANTO 0.00 4 2626 \N +99981 2025-06-28 17:21:00.566182+00 2025-06-28 17:21:00.566192+00 f t SUBTOTAL 0.00 1 2628 \N +99982 2025-06-28 17:21:00.568209+00 2025-06-28 17:21:00.568217+00 f t DESCUENTO 0.00 2 2628 \N +99983 2025-06-28 17:21:00.569631+00 2025-06-28 17:21:00.569636+00 f t TOTAL 0.00 3 2628 \N +99984 2025-06-28 17:21:00.570819+00 2025-06-28 17:21:00.570825+00 f t ADELANTO 0.00 4 2628 \N +99377 2025-06-28 05:39:03.357718+00 2025-06-28 05:39:03.35773+00 f t SUBTOTAL 45000.00 1 2609 \N +99378 2025-06-28 05:39:03.366409+00 2025-06-28 05:39:03.366423+00 f t DESCUENTO 0.00 2 2609 \N +99379 2025-06-28 05:39:03.37075+00 2025-06-28 05:39:03.370766+00 f t TOTAL 45000.00 3 2609 \N +99380 2025-06-28 05:39:03.375864+00 2025-06-28 05:39:03.375877+00 f t ADELANTO 10000.00 4 2609 \N +105197 2025-06-30 22:03:40.148367+00 2025-06-30 22:03:40.148376+00 f t SUBTOTAL 70000.00 1 2774 \N +105198 2025-06-30 22:03:40.149893+00 2025-06-30 22:03:40.1499+00 f t DESCUENTO 0.00 2 2774 \N +105199 2025-06-30 22:03:40.150932+00 2025-06-30 22:03:40.150937+00 f t TOTAL 70000.00 3 2774 \N +105200 2025-06-30 22:03:40.152117+00 2025-06-30 22:03:40.152123+00 f t ADELANTO 10000.00 4 2774 \N +102693 2025-06-29 19:18:19.650957+00 2025-06-29 19:18:19.650965+00 f t SUBTOTAL 42000.00 1 2698 \N +102694 2025-06-29 19:18:19.652783+00 2025-06-29 19:18:19.65282+00 f t DESCUENTO 0.00 2 2698 \N +102695 2025-06-29 19:18:19.654395+00 2025-06-29 19:18:19.654403+00 f t TOTAL 42000.00 3 2698 \N +102696 2025-06-29 19:18:19.655602+00 2025-06-29 19:18:19.655609+00 f t ADELANTO 9500.00 4 2698 \N +102721 2025-06-29 19:48:04.925519+00 2025-06-29 19:48:04.925527+00 f t SUBTOTAL 42000.00 1 2699 \N +102722 2025-06-29 19:48:04.927384+00 2025-06-29 19:48:04.927391+00 f t DESCUENTO 0.00 2 2699 \N +102723 2025-06-29 19:48:04.928672+00 2025-06-29 19:48:04.928679+00 f t TOTAL 42000.00 3 2699 \N +102724 2025-06-29 19:48:04.929785+00 2025-06-29 19:48:04.929791+00 f t ADELANTO 9500.00 4 2699 \N +99429 2025-06-28 10:44:54.408226+00 2025-06-28 10:44:54.408238+00 f t SUBTOTAL 95000.00 1 2610 \N +99430 2025-06-28 10:44:54.41009+00 2025-06-28 10:44:54.410101+00 f t DESCUENTO 0.00 2 2610 \N +99431 2025-06-28 10:44:54.411602+00 2025-06-28 10:44:54.411609+00 f t TOTAL 95000.00 3 2610 \N +99432 2025-06-28 10:44:54.412851+00 2025-06-28 10:44:54.412858+00 f t ADELANTO 10000.00 4 2610 \N +99437 2025-06-28 11:01:31.708708+00 2025-06-28 11:01:31.708718+00 f t SUBTOTAL 0.00 1 2611 \N +99438 2025-06-28 11:01:31.710358+00 2025-06-28 11:01:31.710365+00 f t DESCUENTO 0.00 2 2611 \N +99439 2025-06-28 11:01:31.711922+00 2025-06-28 11:01:31.711931+00 f t TOTAL 0.00 3 2611 \N +99440 2025-06-28 11:01:31.713585+00 2025-06-28 11:01:31.713595+00 f t ADELANTO 0.00 4 2611 \N +99445 2025-06-28 12:13:19.242634+00 2025-06-28 12:13:19.242647+00 f t SUBTOTAL 0.00 1 2612 \N +99446 2025-06-28 12:13:19.244497+00 2025-06-28 12:13:19.244505+00 f t DESCUENTO 0.00 2 2612 \N +99447 2025-06-28 12:13:19.246028+00 2025-06-28 12:13:19.246037+00 f t TOTAL 0.00 3 2612 \N +99448 2025-06-28 12:13:19.24724+00 2025-06-28 12:13:19.247246+00 f t ADELANTO 0.00 4 2612 \N +100585 2025-06-28 20:31:10.911233+00 2025-06-28 20:31:10.911245+00 f t SUBTOTAL 50000.00 1 2640 \N +100586 2025-06-28 20:31:10.913343+00 2025-06-28 20:31:10.913353+00 f t DESCUENTO 0.00 2 2640 \N +100587 2025-06-28 20:31:10.915014+00 2025-06-28 20:31:10.915023+00 f t TOTAL 50000.00 3 2640 \N +100588 2025-06-28 20:31:10.917002+00 2025-06-28 20:31:10.917013+00 f t ADELANTO 10000.00 4 2640 \N +100805 2025-06-28 23:00:01.043487+00 2025-06-28 23:00:01.0435+00 f t SUBTOTAL 27500.00 1 2648 \N +99489 2025-06-28 12:33:20.960261+00 2025-06-28 12:33:20.960273+00 f t SUBTOTAL 50000.00 1 2613 \N +99490 2025-06-28 12:33:20.962154+00 2025-06-28 12:33:20.962161+00 f t DESCUENTO 0.00 2 2613 \N +99491 2025-06-28 12:33:20.963542+00 2025-06-28 12:33:20.963548+00 f t TOTAL 50000.00 3 2613 \N +99492 2025-06-28 12:33:20.964952+00 2025-06-28 12:33:20.964959+00 f t ADELANTO 10000.00 4 2613 \N +100806 2025-06-28 23:00:01.045525+00 2025-06-28 23:00:01.045536+00 f t DESCUENTO 0.00 2 2648 \N +100807 2025-06-28 23:00:01.047382+00 2025-06-28 23:00:01.047392+00 f t TOTAL 27500.00 3 2648 \N +100808 2025-06-28 23:00:01.049419+00 2025-06-28 23:00:01.049427+00 f t ADELANTO 27500.00 4 2648 \N +100941 2025-06-28 23:37:54.34934+00 2025-06-28 23:37:54.349352+00 f t SUBTOTAL 62000.00 1 2651 \N +100942 2025-06-28 23:37:54.351338+00 2025-06-28 23:37:54.351349+00 f t DESCUENTO 0.00 2 2651 \N +100943 2025-06-28 23:37:54.352904+00 2025-06-28 23:37:54.352914+00 f t TOTAL 62000.00 3 2651 \N +100944 2025-06-28 23:37:54.35434+00 2025-06-28 23:37:54.35435+00 f t ADELANTO 12000.00 4 2651 \N +99533 2025-06-28 12:56:11.582679+00 2025-06-28 12:56:11.582692+00 f t SUBTOTAL 50000.00 1 2614 \N +99534 2025-06-28 12:56:11.584688+00 2025-06-28 12:56:11.584698+00 f t DESCUENTO 0.00 2 2614 \N +99535 2025-06-28 12:56:11.586042+00 2025-06-28 12:56:11.586051+00 f t TOTAL 50000.00 3 2614 \N +99536 2025-06-28 12:56:11.587519+00 2025-06-28 12:56:11.587548+00 f t ADELANTO 10000.00 4 2614 \N +101421 2025-06-29 03:33:52.32577+00 2025-06-29 03:33:52.325782+00 f t SUBTOTAL 0.00 1 2664 \N +101422 2025-06-29 03:33:52.327528+00 2025-06-29 03:33:52.327538+00 f t DESCUENTO 0.00 2 2664 \N +101423 2025-06-29 03:33:52.328925+00 2025-06-29 03:33:52.328933+00 f t TOTAL 0.00 3 2664 \N +101424 2025-06-29 03:33:52.330095+00 2025-06-29 03:33:52.330102+00 f t ADELANTO 0.00 4 2664 \N +99601 2025-06-28 13:02:28.660385+00 2025-06-28 13:02:28.660394+00 f t SUBTOTAL 62000.00 1 2615 \N +99602 2025-06-28 13:02:28.662183+00 2025-06-28 13:02:28.662191+00 f t DESCUENTO 0.00 2 2615 \N +99603 2025-06-28 13:02:28.663754+00 2025-06-28 13:02:28.66376+00 f t TOTAL 62000.00 3 2615 \N +99604 2025-06-28 13:02:28.665063+00 2025-06-28 13:02:28.665068+00 f t ADELANTO 12000.00 4 2615 \N +101529 2025-06-29 04:24:42.172547+00 2025-06-29 04:24:42.172556+00 f t SUBTOTAL 64500.00 1 2667 \N +101530 2025-06-29 04:24:42.17426+00 2025-06-29 04:24:42.174268+00 f t DESCUENTO 0.00 2 2667 \N +101531 2025-06-29 04:24:42.175543+00 2025-06-29 04:24:42.175549+00 f t TOTAL 64500.00 3 2667 \N +101532 2025-06-29 04:24:42.176677+00 2025-06-29 04:24:42.176685+00 f t ADELANTO 17000.00 4 2667 \N +101605 2025-06-29 07:00:33.953534+00 2025-06-29 07:00:33.953546+00 f t SUBTOTAL 64500.00 1 2669 \N +101606 2025-06-29 07:00:33.955661+00 2025-06-29 07:00:33.955669+00 f t DESCUENTO 0.00 2 2669 \N +101607 2025-06-29 07:00:33.95753+00 2025-06-29 07:00:33.957541+00 f t TOTAL 64500.00 3 2669 \N +101608 2025-06-29 07:00:33.959453+00 2025-06-29 07:00:33.959476+00 f t ADELANTO 17000.00 4 2669 \N +99637 2025-06-28 13:35:41.929604+00 2025-06-28 13:35:41.929616+00 f t SUBTOTAL 42000.00 1 2616 \N +99638 2025-06-28 13:35:41.931877+00 2025-06-28 13:35:41.931888+00 f t DESCUENTO 0.00 2 2616 \N +99639 2025-06-28 13:35:41.93359+00 2025-06-28 13:35:41.9336+00 f t TOTAL 42000.00 3 2616 \N +99640 2025-06-28 13:35:41.93534+00 2025-06-28 13:35:41.935346+00 f t ADELANTO 9500.00 4 2616 \N +101677 2025-06-29 11:23:32.641044+00 2025-06-29 11:23:32.641055+00 f t SUBTOTAL 50000.00 1 2671 \N +101678 2025-06-29 11:23:32.64264+00 2025-06-29 11:23:32.642648+00 f t DESCUENTO 0.00 2 2671 \N +101679 2025-06-29 11:23:32.643935+00 2025-06-29 11:23:32.643942+00 f t TOTAL 50000.00 3 2671 \N +133206 2025-07-13 12:09:27.17688+00 2025-07-13 12:09:27.176886+00 f t DESCUENTO 0.00 2 3510 \N +99989 2025-06-28 17:21:22.67999+00 2025-06-28 17:21:22.679999+00 f t SUBTOTAL 0.00 1 2629 \N +99990 2025-06-28 17:21:22.681599+00 2025-06-28 17:21:22.681607+00 f t DESCUENTO 0.00 2 2629 \N +99991 2025-06-28 17:21:22.68343+00 2025-06-28 17:21:22.683441+00 f t TOTAL 0.00 3 2629 \N +99992 2025-06-28 17:21:22.685027+00 2025-06-28 17:21:22.685036+00 f t ADELANTO 0.00 4 2629 \N +100145 2025-06-28 18:34:35.442047+00 2025-06-28 18:34:35.442056+00 f t SUBTOTAL 42000.00 1 2634 \N +100146 2025-06-28 18:34:35.443852+00 2025-06-28 18:34:35.44386+00 f t DESCUENTO 0.00 2 2634 \N +100147 2025-06-28 18:34:35.445069+00 2025-06-28 18:34:35.445076+00 f t TOTAL 42000.00 3 2634 \N +100148 2025-06-28 18:34:35.446153+00 2025-06-28 18:34:35.446159+00 f t ADELANTO 9500.00 4 2634 \N +99685 2025-06-28 13:57:21.568038+00 2025-06-28 13:57:21.568047+00 f t SUBTOTAL 42000.00 1 2617 \N +99686 2025-06-28 13:57:21.569982+00 2025-06-28 13:57:21.56999+00 f t DESCUENTO 0.00 2 2617 \N +99687 2025-06-28 13:57:21.571595+00 2025-06-28 13:57:21.571605+00 f t TOTAL 42000.00 3 2617 \N +99688 2025-06-28 13:57:21.5763+00 2025-06-28 13:57:21.576309+00 f t ADELANTO 9500.00 4 2617 \N +102609 2025-06-29 17:24:55.308453+00 2025-06-29 17:24:55.308461+00 f t SUBTOTAL 70000.00 1 2694 \N +102610 2025-06-29 17:24:55.310066+00 2025-06-29 17:24:55.310072+00 f t DESCUENTO 0.00 2 2694 \N +102611 2025-06-29 17:24:55.311126+00 2025-06-29 17:24:55.31115+00 f t TOTAL 70000.00 3 2694 \N +102612 2025-06-29 17:24:55.312162+00 2025-06-29 17:24:55.312167+00 f t ADELANTO 10000.00 4 2694 \N +99713 2025-06-28 14:14:47.828797+00 2025-06-28 14:14:47.828806+00 f t SUBTOTAL 49500.00 1 2618 \N +99714 2025-06-28 14:14:47.830504+00 2025-06-28 14:14:47.830512+00 f t DESCUENTO 0.00 2 2618 \N +99715 2025-06-28 14:14:47.831819+00 2025-06-28 14:14:47.831825+00 f t TOTAL 49500.00 3 2618 \N +99716 2025-06-28 14:14:47.833053+00 2025-06-28 14:14:47.833061+00 f t ADELANTO 11500.00 4 2618 \N +100593 2025-06-28 20:46:04.232109+00 2025-06-28 20:46:04.232122+00 f t SUBTOTAL 0.00 1 2642 \N +100594 2025-06-28 20:46:04.234434+00 2025-06-28 20:46:04.234446+00 f t DESCUENTO 0.00 2 2642 \N +100595 2025-06-28 20:46:04.236437+00 2025-06-28 20:46:04.23645+00 f t TOTAL 0.00 3 2642 \N +100596 2025-06-28 20:46:04.238121+00 2025-06-28 20:46:04.238129+00 f t ADELANTO 0.00 4 2642 \N +102861 2025-06-29 22:25:41.087554+00 2025-06-29 22:25:41.087563+00 f t SUBTOTAL 50000.00 1 2705 \N +100669 2025-06-28 22:23:17.872289+00 2025-06-28 22:23:17.872299+00 f t SUBTOTAL 72000.00 1 2645 \N +100670 2025-06-28 22:23:17.87394+00 2025-06-28 22:23:17.873946+00 f t DESCUENTO 0.00 2 2645 \N +100671 2025-06-28 22:23:17.875119+00 2025-06-28 22:23:17.875124+00 f t TOTAL 72000.00 3 2645 \N +100672 2025-06-28 22:23:17.876414+00 2025-06-28 22:23:17.876419+00 f t ADELANTO 19000.00 4 2645 \N +102862 2025-06-29 22:25:41.089747+00 2025-06-29 22:25:41.089758+00 f t DESCUENTO 0.00 2 2705 \N +102863 2025-06-29 22:25:41.091391+00 2025-06-29 22:25:41.091398+00 f t TOTAL 50000.00 3 2705 \N +102864 2025-06-29 22:25:41.092861+00 2025-06-29 22:25:41.092868+00 f t ADELANTO 10000.00 4 2705 \N +99757 2025-06-28 14:36:19.408155+00 2025-06-28 14:36:19.408163+00 f t SUBTOTAL 50000.00 1 2619 \N +99758 2025-06-28 14:36:19.410156+00 2025-06-28 14:36:19.410185+00 f t DESCUENTO 0.00 2 2619 \N +99759 2025-06-28 14:36:19.411911+00 2025-06-28 14:36:19.411917+00 f t TOTAL 50000.00 3 2619 \N +99760 2025-06-28 14:36:19.413134+00 2025-06-28 14:36:19.41314+00 f t ADELANTO 10000.00 4 2619 \N +99789 2025-06-28 14:42:37.495524+00 2025-06-28 14:42:37.495533+00 f t SUBTOTAL 49700.00 1 2620 \N +99790 2025-06-28 14:42:37.498811+00 2025-06-28 14:42:37.498819+00 f t DESCUENTO 0.00 2 2620 \N +99791 2025-06-28 14:42:37.500881+00 2025-06-28 14:42:37.500897+00 f t TOTAL 49700.00 3 2620 \N +99792 2025-06-28 14:42:37.502709+00 2025-06-28 14:42:37.502717+00 f t ADELANTO 11700.00 4 2620 \N +103131 2025-06-30 00:00:02.609283+00 2025-06-30 00:00:02.609299+00 f t TOTAL 0.00 3 2711 \N +101125 2025-06-29 00:35:26.069598+00 2025-06-29 00:35:26.069606+00 f t SUBTOTAL 117000.00 1 2655 \N +101126 2025-06-29 00:35:26.071223+00 2025-06-29 00:35:26.071229+00 f t DESCUENTO 0.00 2 2655 \N +99821 2025-06-28 15:33:19.298249+00 2025-06-28 15:33:19.298258+00 f t SUBTOTAL 49500.00 1 2621 \N +99822 2025-06-28 15:33:19.299998+00 2025-06-28 15:33:19.300006+00 f t DESCUENTO 0.00 2 2621 \N +99823 2025-06-28 15:33:19.301465+00 2025-06-28 15:33:19.301474+00 f t TOTAL 49500.00 3 2621 \N +99824 2025-06-28 15:33:19.302751+00 2025-06-28 15:33:19.302759+00 f t ADELANTO 11500.00 4 2621 \N +101127 2025-06-29 00:35:26.07667+00 2025-06-29 00:35:26.076682+00 f t TOTAL 117000.00 3 2655 \N +101128 2025-06-29 00:35:26.078481+00 2025-06-29 00:35:26.07849+00 f t ADELANTO 24500.00 4 2655 \N +101153 2025-06-29 00:36:43.225277+00 2025-06-29 00:36:43.225286+00 f t SUBTOTAL 50000.00 1 2656 \N +101154 2025-06-29 00:36:43.22674+00 2025-06-29 00:36:43.226748+00 f t DESCUENTO 0.00 2 2656 \N +99829 2025-06-28 15:40:22.05633+00 2025-06-28 15:40:22.05634+00 f t SUBTOTAL 0.00 1 2622 \N +99830 2025-06-28 15:40:22.05812+00 2025-06-28 15:40:22.058127+00 f t DESCUENTO 0.00 2 2622 \N +99831 2025-06-28 15:40:22.05951+00 2025-06-28 15:40:22.059517+00 f t TOTAL 0.00 3 2622 \N +99832 2025-06-28 15:40:22.060959+00 2025-06-28 15:40:22.060966+00 f t ADELANTO 0.00 4 2622 \N +101155 2025-06-29 00:36:43.227903+00 2025-06-29 00:36:43.227908+00 f t TOTAL 50000.00 3 2656 \N +101156 2025-06-29 00:36:43.228971+00 2025-06-29 00:36:43.228976+00 f t ADELANTO 10000.00 4 2656 \N +103132 2025-06-30 00:00:02.630294+00 2025-06-30 00:00:02.630308+00 f t ADELANTO 0.00 4 2711 \N +101253 2025-06-29 00:50:02.536785+00 2025-06-29 00:50:02.536799+00 f t SUBTOTAL 64500.00 1 2657 \N +101254 2025-06-29 00:50:02.539823+00 2025-06-29 00:50:02.539836+00 f t DESCUENTO 0.00 2 2657 \N +101255 2025-06-29 00:50:02.542671+00 2025-06-29 00:50:02.542684+00 f t TOTAL 64500.00 3 2657 \N +101256 2025-06-29 00:50:02.546026+00 2025-06-29 00:50:02.546041+00 f t ADELANTO 17000.00 4 2657 \N +103197 2025-06-30 00:48:51.188661+00 2025-06-30 00:48:51.18867+00 f t SUBTOTAL 27500.00 1 2713 \N +103198 2025-06-30 00:48:51.190308+00 2025-06-30 00:48:51.190315+00 f t DESCUENTO 0.00 2 2713 \N +103199 2025-06-30 00:48:51.191483+00 2025-06-30 00:48:51.191488+00 f t TOTAL 27500.00 3 2713 \N +103200 2025-06-30 00:48:51.192642+00 2025-06-30 00:48:51.192647+00 f t ADELANTO 27500.00 4 2713 \N +103253 2025-06-30 01:18:03.042038+00 2025-06-30 01:18:03.042051+00 f t SUBTOTAL 27500.00 1 2714 \N +103254 2025-06-30 01:18:03.045165+00 2025-06-30 01:18:03.045178+00 f t DESCUENTO 0.00 2 2714 \N +103255 2025-06-30 01:18:03.04856+00 2025-06-30 01:18:03.048574+00 f t TOTAL 27500.00 3 2714 \N +103256 2025-06-30 01:18:03.051187+00 2025-06-30 01:18:03.051201+00 f t ADELANTO 27500.00 4 2714 \N +101429 2025-06-29 03:36:32.002833+00 2025-06-29 03:36:32.002846+00 f t SUBTOTAL 0.00 1 2665 \N +101430 2025-06-29 03:36:32.005104+00 2025-06-29 03:36:32.005114+00 f t DESCUENTO 0.00 2 2665 \N +101431 2025-06-29 03:36:32.00668+00 2025-06-29 03:36:32.006687+00 f t TOTAL 0.00 3 2665 \N +101432 2025-06-29 03:36:32.007991+00 2025-06-29 03:36:32.007997+00 f t ADELANTO 0.00 4 2665 \N +101680 2025-06-29 11:23:32.645037+00 2025-06-29 11:23:32.645042+00 f t ADELANTO 10000.00 4 2671 \N +101693 2025-06-29 11:45:30.793406+00 2025-06-29 11:45:30.793416+00 f t SUBTOTAL 0.00 1 2672 \N +101694 2025-06-29 11:45:30.795632+00 2025-06-29 11:45:30.795641+00 f t DESCUENTO 0.00 2 2672 \N +101695 2025-06-29 11:45:30.797121+00 2025-06-29 11:45:30.797128+00 f t TOTAL 0.00 3 2672 \N +101696 2025-06-29 11:45:30.798556+00 2025-06-29 11:45:30.798581+00 f t ADELANTO 0.00 4 2672 \N +133207 2025-07-13 12:09:27.178007+00 2025-07-13 12:09:27.178013+00 f t TOTAL 0.00 3 3510 \N +101701 2025-06-29 12:11:01.447506+00 2025-06-29 12:11:01.44752+00 f t SUBTOTAL 0.00 1 2673 \N +101702 2025-06-29 12:11:01.450114+00 2025-06-29 12:11:01.450129+00 f t DESCUENTO 0.00 2 2673 \N +101703 2025-06-29 12:11:01.451677+00 2025-06-29 12:11:01.451688+00 f t TOTAL 0.00 3 2673 \N +101704 2025-06-29 12:11:01.453263+00 2025-06-29 12:11:01.453271+00 f t ADELANTO 0.00 4 2673 \N +121193 2025-07-07 23:55:31.523408+00 2025-07-07 23:55:31.52342+00 f t SUBTOTAL 0.00 1 3213 \N +121194 2025-07-07 23:55:31.52509+00 2025-07-07 23:55:31.525099+00 f t DESCUENTO 0.00 2 3213 \N +121195 2025-07-07 23:55:31.526623+00 2025-07-07 23:55:31.526631+00 f t TOTAL 0.00 3 3213 \N +121196 2025-07-07 23:55:31.527875+00 2025-07-07 23:55:31.527883+00 f t ADELANTO 0.00 4 3213 \N +105117 2025-06-30 21:59:47.752916+00 2025-06-30 21:59:47.752925+00 f t SUBTOTAL 0.00 1 2773 \N +105118 2025-06-30 21:59:47.754696+00 2025-06-30 21:59:47.754703+00 f t DESCUENTO 0.00 2 2773 \N +105119 2025-06-30 21:59:47.756022+00 2025-06-30 21:59:47.756029+00 f t TOTAL 0.00 3 2773 \N +105120 2025-06-30 21:59:47.757374+00 2025-06-30 21:59:47.757381+00 f t ADELANTO 0.00 4 2773 \N +102581 2025-06-29 17:14:09.055184+00 2025-06-29 17:14:09.055194+00 f t SUBTOTAL 42000.00 1 2693 \N +102582 2025-06-29 17:14:09.057019+00 2025-06-29 17:14:09.057025+00 f t DESCUENTO 0.00 2 2693 \N +102583 2025-06-29 17:14:09.058333+00 2025-06-29 17:14:09.058339+00 f t TOTAL 42000.00 3 2693 \N +102584 2025-06-29 17:14:09.059621+00 2025-06-29 17:14:09.059627+00 f t ADELANTO 9500.00 4 2693 \N +102617 2025-06-29 17:36:48.794304+00 2025-06-29 17:36:48.794314+00 f t SUBTOTAL 0.00 1 2695 \N +102618 2025-06-29 17:36:48.795838+00 2025-06-29 17:36:48.795846+00 f t DESCUENTO 0.00 2 2695 \N +102619 2025-06-29 17:36:48.797041+00 2025-06-29 17:36:48.797046+00 f t TOTAL 0.00 3 2695 \N +102620 2025-06-29 17:36:48.797948+00 2025-06-29 17:36:48.797953+00 f t ADELANTO 0.00 4 2695 \N +101745 2025-06-29 12:14:47.212658+00 2025-06-29 12:14:47.21267+00 f t SUBTOTAL 50000.00 1 2674 \N +101746 2025-06-29 12:14:47.214645+00 2025-06-29 12:14:47.214654+00 f t DESCUENTO 0.00 2 2674 \N +101747 2025-06-29 12:14:47.217793+00 2025-06-29 12:14:47.217801+00 f t TOTAL 50000.00 3 2674 \N +101748 2025-06-29 12:14:47.219151+00 2025-06-29 12:14:47.219157+00 f t ADELANTO 10000.00 4 2674 \N +101753 2025-06-29 12:28:59.690112+00 2025-06-29 12:28:59.69012+00 f t SUBTOTAL 0.00 1 2675 \N +101754 2025-06-29 12:28:59.691423+00 2025-06-29 12:28:59.691429+00 f t DESCUENTO 0.00 2 2675 \N +101755 2025-06-29 12:28:59.692546+00 2025-06-29 12:28:59.692551+00 f t TOTAL 0.00 3 2675 \N +101756 2025-06-29 12:28:59.693588+00 2025-06-29 12:28:59.693593+00 f t ADELANTO 0.00 4 2675 \N +105283 2025-06-30 23:58:39.650274+00 2025-06-30 23:58:39.650279+00 f t TOTAL 0.00 3 2777 \N +105284 2025-06-30 23:58:39.652121+00 2025-06-30 23:58:39.652131+00 f t ADELANTO 0.00 4 2777 \N +102757 2025-06-29 20:19:57.644963+00 2025-06-29 20:19:57.644972+00 f t SUBTOTAL 70000.00 1 2700 \N +102758 2025-06-29 20:19:57.646942+00 2025-06-29 20:19:57.64695+00 f t DESCUENTO 0.00 2 2700 \N +102759 2025-06-29 20:19:57.648503+00 2025-06-29 20:19:57.64851+00 f t TOTAL 70000.00 3 2700 \N +102760 2025-06-29 20:19:57.649833+00 2025-06-29 20:19:57.649841+00 f t ADELANTO 10000.00 4 2700 \N +105381 2025-07-01 00:02:16.578739+00 2025-07-01 00:02:16.578748+00 f t SUBTOTAL 50000.00 1 2779 \N +105382 2025-07-01 00:02:16.580382+00 2025-07-01 00:02:16.58039+00 f t DESCUENTO 0.00 2 2779 \N +105383 2025-07-01 00:02:16.58164+00 2025-07-01 00:02:16.581647+00 f t TOTAL 50000.00 3 2779 \N +105384 2025-07-01 00:02:16.58278+00 2025-07-01 00:02:16.582786+00 f t ADELANTO 10000.00 4 2779 \N +105521 2025-07-01 00:08:16.008946+00 2025-07-01 00:08:16.008955+00 f t SUBTOTAL 42000.00 1 2780 \N +105522 2025-07-01 00:08:16.010534+00 2025-07-01 00:08:16.01054+00 f t DESCUENTO 0.00 2 2780 \N +105523 2025-07-01 00:08:16.011936+00 2025-07-01 00:08:16.011944+00 f t TOTAL 42000.00 3 2780 \N +105524 2025-07-01 00:08:16.013449+00 2025-07-01 00:08:16.013456+00 f t ADELANTO 9500.00 4 2780 \N +102929 2025-06-29 22:30:31.812496+00 2025-06-29 22:30:31.812506+00 f t SUBTOTAL 50000.00 1 2706 \N +102930 2025-06-29 22:30:31.814275+00 2025-06-29 22:30:31.814282+00 f t DESCUENTO 0.00 2 2706 \N +102931 2025-06-29 22:30:31.815582+00 2025-06-29 22:30:31.815588+00 f t TOTAL 50000.00 3 2706 \N +102932 2025-06-29 22:30:31.816701+00 2025-06-29 22:30:31.816707+00 f t ADELANTO 10000.00 4 2706 \N +105617 2025-07-01 00:30:57.297596+00 2025-07-01 00:30:57.297606+00 f t SUBTOTAL 0.00 1 2783 \N +105618 2025-07-01 00:30:57.29994+00 2025-07-01 00:30:57.299953+00 f t DESCUENTO 0.00 2 2783 \N +105619 2025-07-01 00:30:57.301535+00 2025-07-01 00:30:57.301542+00 f t TOTAL 0.00 3 2783 \N +105620 2025-07-01 00:30:57.303064+00 2025-07-01 00:30:57.303072+00 f t ADELANTO 0.00 4 2783 \N +101817 2025-06-29 12:46:58.88677+00 2025-06-29 12:46:58.886779+00 f t SUBTOTAL 0.00 1 2677 \N +101818 2025-06-29 12:46:58.88869+00 2025-06-29 12:46:58.8887+00 f t DESCUENTO 0.00 2 2677 \N +101819 2025-06-29 12:46:58.890061+00 2025-06-29 12:46:58.890068+00 f t TOTAL 0.00 3 2677 \N +101820 2025-06-29 12:46:58.891086+00 2025-06-29 12:46:58.891093+00 f t ADELANTO 0.00 4 2677 \N +103137 2025-06-30 00:44:08.154694+00 2025-06-30 00:44:08.154703+00 f t SUBTOTAL 0.00 1 2712 \N +103138 2025-06-30 00:44:08.156249+00 2025-06-30 00:44:08.156257+00 f t DESCUENTO 0.00 2 2712 \N +103139 2025-06-30 00:44:08.157491+00 2025-06-30 00:44:08.1575+00 f t TOTAL 0.00 3 2712 \N +103140 2025-06-30 00:44:08.158592+00 2025-06-30 00:44:08.158598+00 f t ADELANTO 0.00 4 2712 \N +101885 2025-06-29 12:48:02.850264+00 2025-06-29 12:48:02.850276+00 f t SUBTOTAL 50000.00 1 2676 \N +101886 2025-06-29 12:48:02.853064+00 2025-06-29 12:48:02.853076+00 f t DESCUENTO 0.00 2 2676 \N +101887 2025-06-29 12:48:02.858339+00 2025-06-29 12:48:02.858349+00 f t TOTAL 50000.00 3 2676 \N +101888 2025-06-29 12:48:02.860479+00 2025-06-29 12:48:02.860491+00 f t ADELANTO 10000.00 4 2676 \N +103333 2025-06-30 01:37:26.145621+00 2025-06-30 01:37:26.14563+00 f t SUBTOTAL 27500.00 1 2716 \N +103334 2025-06-30 01:37:26.147597+00 2025-06-30 01:37:26.147605+00 f t DESCUENTO 0.00 2 2716 \N +103335 2025-06-30 01:37:26.148991+00 2025-06-30 01:37:26.148998+00 f t TOTAL 27500.00 3 2716 \N +103336 2025-06-30 01:37:26.150287+00 2025-06-30 01:37:26.150294+00 f t ADELANTO 27500.00 4 2716 \N +103349 2025-06-30 01:41:29.071702+00 2025-06-30 01:41:29.07171+00 f t SUBTOTAL 0.00 1 2718 \N +103350 2025-06-30 01:41:29.073217+00 2025-06-30 01:41:29.073223+00 f t DESCUENTO 0.00 2 2718 \N +103351 2025-06-30 01:41:29.07455+00 2025-06-30 01:41:29.074556+00 f t TOTAL 0.00 3 2718 \N +103352 2025-06-30 01:41:29.075729+00 2025-06-30 01:41:29.075737+00 f t ADELANTO 0.00 4 2718 \N +103401 2025-06-30 02:11:25.014696+00 2025-06-30 02:11:25.014706+00 f t SUBTOTAL 42000.00 1 2719 \N +103402 2025-06-30 02:11:25.016629+00 2025-06-30 02:11:25.016637+00 f t DESCUENTO 0.00 2 2719 \N +103403 2025-06-30 02:11:25.018204+00 2025-06-30 02:11:25.018211+00 f t TOTAL 42000.00 3 2719 \N +103404 2025-06-30 02:11:25.019744+00 2025-06-30 02:11:25.01975+00 f t ADELANTO 9500.00 4 2719 \N +103412 2025-06-30 03:10:12.439011+00 2025-06-30 03:10:12.439022+00 f t ADELANTO 0.00 4 2720 \N +101985 2025-06-29 12:59:15.599703+00 2025-06-29 12:59:15.599715+00 f t SUBTOTAL 50000.00 1 2678 \N +101986 2025-06-29 12:59:15.601395+00 2025-06-29 12:59:15.601402+00 f t DESCUENTO 0.00 2 2678 \N +101987 2025-06-29 12:59:15.604151+00 2025-06-29 12:59:15.604161+00 f t TOTAL 50000.00 3 2678 \N +101988 2025-06-29 12:59:15.608012+00 2025-06-29 12:59:15.60802+00 f t ADELANTO 10000.00 4 2678 \N +118185 2025-07-06 20:05:11.931067+00 2025-07-06 20:05:11.931075+00 f t SUBTOTAL 50000.00 1 3122 \N +102373 2025-06-29 15:48:24.983539+00 2025-06-29 15:48:24.983551+00 f t SUBTOTAL 42000.00 1 2688 \N +102374 2025-06-29 15:48:24.985232+00 2025-06-29 15:48:24.985239+00 f t DESCUENTO 0.00 2 2688 \N +102375 2025-06-29 15:48:24.986362+00 2025-06-29 15:48:24.986368+00 f t TOTAL 42000.00 3 2688 \N +102376 2025-06-29 15:48:24.987519+00 2025-06-29 15:48:24.987525+00 f t ADELANTO 9500.00 4 2688 \N +107445 2025-07-01 17:49:31.620735+00 2025-07-01 17:49:31.620744+00 f t SUBTOTAL 42000.00 1 2824 \N +107446 2025-07-01 17:49:31.622657+00 2025-07-01 17:49:31.622665+00 f t DESCUENTO 0.00 2 2824 \N +107447 2025-07-01 17:49:31.624036+00 2025-07-01 17:49:31.624043+00 f t TOTAL 42000.00 3 2824 \N +107448 2025-07-01 17:49:31.625241+00 2025-07-01 17:49:31.625247+00 f t ADELANTO 9500.00 4 2824 \N +102489 2025-06-29 16:47:25.848883+00 2025-06-29 16:47:25.848895+00 f t SUBTOTAL 42000.00 1 2691 \N +102490 2025-06-29 16:47:25.851286+00 2025-06-29 16:47:25.851297+00 f t DESCUENTO 0.00 2 2691 \N +102491 2025-06-29 16:47:25.852987+00 2025-06-29 16:47:25.852998+00 f t TOTAL 42000.00 3 2691 \N +102492 2025-06-29 16:47:25.854566+00 2025-06-29 16:47:25.854575+00 f t ADELANTO 9500.00 4 2691 \N +102625 2025-06-29 18:28:59.355055+00 2025-06-29 18:28:59.355066+00 f t SUBTOTAL 0.00 1 2696 \N +102626 2025-06-29 18:28:59.356524+00 2025-06-29 18:28:59.356532+00 f t DESCUENTO 0.00 2 2696 \N +102627 2025-06-29 18:28:59.358022+00 2025-06-29 18:28:59.358028+00 f t TOTAL 0.00 3 2696 \N +102628 2025-06-29 18:28:59.358978+00 2025-06-29 18:28:59.358983+00 f t ADELANTO 0.00 4 2696 \N +102789 2025-06-29 20:32:31.071518+00 2025-06-29 20:32:31.071526+00 f t SUBTOTAL 50000.00 1 2701 \N +102790 2025-06-29 20:32:31.07302+00 2025-06-29 20:32:31.073027+00 f t DESCUENTO 0.00 2 2701 \N +102791 2025-06-29 20:32:31.074083+00 2025-06-29 20:32:31.074088+00 f t TOTAL 50000.00 3 2701 \N +102792 2025-06-29 20:32:31.07525+00 2025-06-29 20:32:31.075255+00 f t ADELANTO 10000.00 4 2701 \N +102069 2025-06-29 13:04:27.350126+00 2025-06-29 13:04:27.350134+00 f t SUBTOTAL 49500.00 1 2679 \N +102070 2025-06-29 13:04:27.352132+00 2025-06-29 13:04:27.352143+00 f t DESCUENTO 0.00 2 2679 \N +102071 2025-06-29 13:04:27.353947+00 2025-06-29 13:04:27.353957+00 f t TOTAL 49500.00 3 2679 \N +102072 2025-06-29 13:04:27.355551+00 2025-06-29 13:04:27.355558+00 f t ADELANTO 11500.00 4 2679 \N +105529 2025-07-01 00:16:38.624326+00 2025-07-01 00:16:38.624336+00 f t SUBTOTAL 0.00 1 2781 \N +105530 2025-07-01 00:16:38.627202+00 2025-07-01 00:16:38.62721+00 f t DESCUENTO 0.00 2 2781 \N +105531 2025-07-01 00:16:38.63032+00 2025-07-01 00:16:38.630329+00 f t TOTAL 0.00 3 2781 \N +105532 2025-07-01 00:16:38.63366+00 2025-07-01 00:16:38.633669+00 f t ADELANTO 0.00 4 2781 \N +102097 2025-06-29 13:22:37.432378+00 2025-06-29 13:22:37.432391+00 f t SUBTOTAL 42000.00 1 2680 \N +102098 2025-06-29 13:22:37.43482+00 2025-06-29 13:22:37.43483+00 f t DESCUENTO 0.00 2 2680 \N +102099 2025-06-29 13:22:37.436534+00 2025-06-29 13:22:37.43654+00 f t TOTAL 42000.00 3 2680 \N +102100 2025-06-29 13:22:37.438296+00 2025-06-29 13:22:37.438301+00 f t ADELANTO 9500.00 4 2680 \N +103001 2025-06-29 22:49:58.848504+00 2025-06-29 22:49:58.848514+00 f t SUBTOTAL 0.00 1 2708 \N +103002 2025-06-29 22:49:58.850353+00 2025-06-29 22:49:58.850363+00 f t DESCUENTO 0.00 2 2708 \N +103003 2025-06-29 22:49:58.851601+00 2025-06-29 22:49:58.851607+00 f t TOTAL 0.00 3 2708 \N +103004 2025-06-29 22:49:58.85269+00 2025-06-29 22:49:58.852699+00 f t ADELANTO 0.00 4 2708 \N +103121 2025-06-29 23:56:49.848646+00 2025-06-29 23:56:49.848655+00 f t SUBTOTAL 50000.00 1 2710 \N +103122 2025-06-29 23:56:49.850512+00 2025-06-29 23:56:49.850522+00 f t DESCUENTO 0.00 2 2710 \N +103123 2025-06-29 23:56:49.853188+00 2025-06-29 23:56:49.853197+00 f t TOTAL 50000.00 3 2710 \N +103124 2025-06-29 23:56:49.855727+00 2025-06-29 23:56:49.855739+00 f t ADELANTO 10000.00 4 2710 \N +102137 2025-06-29 14:01:05.074301+00 2025-06-29 14:01:05.074313+00 f t SUBTOTAL 50000.00 1 2681 \N +102138 2025-06-29 14:01:05.077544+00 2025-06-29 14:01:05.077557+00 f t DESCUENTO 0.00 2 2681 \N +102139 2025-06-29 14:01:05.079995+00 2025-06-29 14:01:05.080007+00 f t TOTAL 50000.00 3 2681 \N +102140 2025-06-29 14:01:05.08218+00 2025-06-29 14:01:05.082192+00 f t ADELANTO 10000.00 4 2681 \N +105849 2025-07-01 02:43:37.526905+00 2025-07-01 02:43:37.526914+00 f t SUBTOTAL 50000.00 1 2790 \N +105850 2025-07-01 02:43:37.528381+00 2025-07-01 02:43:37.528388+00 f t DESCUENTO 0.00 2 2790 \N +105851 2025-07-01 02:43:37.529536+00 2025-07-01 02:43:37.529541+00 f t TOTAL 50000.00 3 2790 \N +105852 2025-07-01 02:43:37.530955+00 2025-07-01 02:43:37.530961+00 f t ADELANTO 10000.00 4 2790 \N +102169 2025-06-29 14:09:48.882603+00 2025-06-29 14:09:48.882615+00 f t SUBTOTAL 50000.00 1 2682 \N +102170 2025-06-29 14:09:48.884819+00 2025-06-29 14:09:48.884829+00 f t DESCUENTO 0.00 2 2682 \N +102171 2025-06-29 14:09:48.886346+00 2025-06-29 14:09:48.886353+00 f t TOTAL 50000.00 3 2682 \N +102172 2025-06-29 14:09:48.888003+00 2025-06-29 14:09:48.888012+00 f t ADELANTO 10000.00 4 2682 \N +103225 2025-06-30 01:16:41.415121+00 2025-06-30 01:16:41.415168+00 f t SUBTOTAL 0.00 1 2715 \N +103226 2025-06-30 01:16:41.41752+00 2025-06-30 01:16:41.417555+00 f t DESCUENTO 0.00 2 2715 \N +103227 2025-06-30 01:16:41.419798+00 2025-06-30 01:16:41.419847+00 f t TOTAL 0.00 3 2715 \N +103228 2025-06-30 01:16:41.421946+00 2025-06-30 01:16:41.421957+00 f t ADELANTO 0.00 4 2715 \N +102225 2025-06-29 15:03:16.563818+00 2025-06-29 15:03:16.563826+00 f t SUBTOTAL 42000.00 1 2683 \N +102226 2025-06-29 15:03:16.565357+00 2025-06-29 15:03:16.565364+00 f t DESCUENTO 0.00 2 2683 \N +102227 2025-06-29 15:03:16.566517+00 2025-06-29 15:03:16.566523+00 f t TOTAL 42000.00 3 2683 \N +102228 2025-06-29 15:03:16.567725+00 2025-06-29 15:03:16.56773+00 f t ADELANTO 9500.00 4 2683 \N +103341 2025-06-30 01:39:25.253105+00 2025-06-30 01:39:25.253115+00 f t SUBTOTAL 0.00 1 2717 \N +103342 2025-06-30 01:39:25.254533+00 2025-06-30 01:39:25.254539+00 f t DESCUENTO 0.00 2 2717 \N +103343 2025-06-30 01:39:25.255951+00 2025-06-30 01:39:25.25596+00 f t TOTAL 0.00 3 2717 \N +103344 2025-06-30 01:39:25.257097+00 2025-06-30 01:39:25.257102+00 f t ADELANTO 0.00 4 2717 \N +106277 2025-07-01 12:05:14.590661+00 2025-07-01 12:05:14.590673+00 f t SUBTOTAL 0.00 1 2795 \N +106278 2025-07-01 12:05:14.592839+00 2025-07-01 12:05:14.592847+00 f t DESCUENTO 0.00 2 2795 \N +106279 2025-07-01 12:05:14.594194+00 2025-07-01 12:05:14.594201+00 f t TOTAL 0.00 3 2795 \N +106280 2025-07-01 12:05:14.595597+00 2025-07-01 12:05:14.595605+00 f t ADELANTO 0.00 4 2795 \N +102261 2025-06-29 15:26:01.451081+00 2025-06-29 15:26:01.451093+00 f t SUBTOTAL 0.00 1 2684 \N +102262 2025-06-29 15:26:01.453679+00 2025-06-29 15:26:01.453689+00 f t DESCUENTO 0.00 2 2684 \N +102263 2025-06-29 15:26:01.455459+00 2025-06-29 15:26:01.455467+00 f t TOTAL 0.00 3 2684 \N +102264 2025-06-29 15:26:01.457069+00 2025-06-29 15:26:01.457078+00 f t ADELANTO 0.00 4 2684 \N +102269 2025-06-29 15:30:17.647514+00 2025-06-29 15:30:17.647527+00 f t SUBTOTAL 0.00 1 2685 \N +102270 2025-06-29 15:30:17.649286+00 2025-06-29 15:30:17.649296+00 f t DESCUENTO 0.00 2 2685 \N +102271 2025-06-29 15:30:17.65073+00 2025-06-29 15:30:17.650738+00 f t TOTAL 0.00 3 2685 \N +102272 2025-06-29 15:30:17.652106+00 2025-06-29 15:30:17.652115+00 f t ADELANTO 0.00 4 2685 \N +103409 2025-06-30 03:10:12.412853+00 2025-06-30 03:10:12.412866+00 f t SUBTOTAL 0.00 1 2720 \N +103410 2025-06-30 03:10:12.428514+00 2025-06-30 03:10:12.428528+00 f t DESCUENTO 0.00 2 2720 \N +103411 2025-06-30 03:10:12.436573+00 2025-06-30 03:10:12.436587+00 f t TOTAL 0.00 3 2720 \N +118186 2025-07-06 20:05:11.93252+00 2025-07-06 20:05:11.932527+00 f t DESCUENTO 0.00 2 3122 \N +118187 2025-07-06 20:05:11.933516+00 2025-07-06 20:05:11.933521+00 f t TOTAL 50000.00 3 3122 \N +104945 2025-06-30 21:47:06.678773+00 2025-06-30 21:47:06.678782+00 f t SUBTOTAL 0.00 1 2771 \N +104946 2025-06-30 21:47:06.680783+00 2025-06-30 21:47:06.680792+00 f t DESCUENTO 0.00 2 2771 \N +104947 2025-06-30 21:47:06.682246+00 2025-06-30 21:47:06.682254+00 f t TOTAL 0.00 3 2771 \N +104948 2025-06-30 21:47:06.683673+00 2025-06-30 21:47:06.683683+00 f t ADELANTO 0.00 4 2771 \N +110113 2025-07-03 11:34:57.712203+00 2025-07-03 11:34:57.712214+00 f t SUBTOTAL 0.00 1 2896 \N +110114 2025-07-03 11:34:57.714191+00 2025-07-03 11:34:57.714198+00 f t DESCUENTO 0.00 2 2896 \N +110115 2025-07-03 11:34:57.71582+00 2025-07-03 11:34:57.715827+00 f t TOTAL 0.00 3 2896 \N +110116 2025-07-03 11:34:57.716989+00 2025-07-03 11:34:57.716994+00 f t ADELANTO 0.00 4 2896 \N +103469 2025-06-30 03:49:15.125359+00 2025-06-30 03:49:15.125372+00 f t SUBTOTAL 155500.00 1 2721 \N +103470 2025-06-30 03:49:15.127316+00 2025-06-30 03:49:15.127326+00 f t DESCUENTO 0.00 2 2721 \N +103471 2025-06-30 03:49:15.129214+00 2025-06-30 03:49:15.129222+00 f t TOTAL 155500.00 3 2721 \N +103472 2025-06-30 03:49:15.130564+00 2025-06-30 03:49:15.130572+00 f t ADELANTO 117500.00 4 2721 \N +108101 2025-07-02 00:15:29.429138+00 2025-07-02 00:15:29.42915+00 f t SUBTOTAL 50000.00 1 2837 \N +108102 2025-07-02 00:15:29.431116+00 2025-07-02 00:15:29.431172+00 f t DESCUENTO 0.00 2 2837 \N +108103 2025-07-02 00:15:29.432505+00 2025-07-02 00:15:29.432513+00 f t TOTAL 50000.00 3 2837 \N +108104 2025-07-02 00:15:29.433969+00 2025-07-02 00:15:29.433977+00 f t ADELANTO 10000.00 4 2837 \N +105705 2025-07-01 00:36:07.753743+00 2025-07-01 00:36:07.753754+00 f t SUBTOTAL 42000.00 1 2784 \N +105706 2025-07-01 00:36:07.755606+00 2025-07-01 00:36:07.755617+00 f t DESCUENTO 0.00 2 2784 \N +105707 2025-07-01 00:36:07.756975+00 2025-07-01 00:36:07.756983+00 f t TOTAL 42000.00 3 2784 \N +105708 2025-07-01 00:36:07.758333+00 2025-07-01 00:36:07.75834+00 f t ADELANTO 9500.00 4 2784 \N +105857 2025-07-01 03:07:04.265817+00 2025-07-01 03:07:04.265827+00 f t SUBTOTAL 0.00 1 2791 \N +105858 2025-07-01 03:07:04.267503+00 2025-07-01 03:07:04.267512+00 f t DESCUENTO 0.00 2 2791 \N +105859 2025-07-01 03:07:04.26893+00 2025-07-01 03:07:04.268941+00 f t TOTAL 0.00 3 2791 \N +105860 2025-07-01 03:07:04.270246+00 2025-07-01 03:07:04.270255+00 f t ADELANTO 0.00 4 2791 \N +103561 2025-06-30 04:31:52.131647+00 2025-06-30 04:31:52.131655+00 f t SUBTOTAL 92000.00 1 2722 \N +103562 2025-06-30 04:31:52.133515+00 2025-06-30 04:31:52.133525+00 f t DESCUENTO 0.00 2 2722 \N +103563 2025-06-30 04:31:52.13489+00 2025-06-30 04:31:52.134897+00 f t TOTAL 92000.00 3 2722 \N +103564 2025-06-30 04:31:52.136184+00 2025-06-30 04:31:52.13619+00 f t ADELANTO 19500.00 4 2722 \N +103569 2025-06-30 04:36:58.289674+00 2025-06-30 04:36:58.289684+00 f t SUBTOTAL 0.00 1 2723 \N +103570 2025-06-30 04:36:58.291019+00 2025-06-30 04:36:58.291026+00 f t DESCUENTO 0.00 2 2723 \N +103571 2025-06-30 04:36:58.292015+00 2025-06-30 04:36:58.29202+00 f t TOTAL 0.00 3 2723 \N +103572 2025-06-30 04:36:58.293257+00 2025-06-30 04:36:58.293263+00 f t ADELANTO 0.00 4 2723 \N +103577 2025-06-30 04:45:50.888726+00 2025-06-30 04:45:50.888735+00 f t SUBTOTAL 0.00 1 2724 \N +103578 2025-06-30 04:45:50.891026+00 2025-06-30 04:45:50.891037+00 f t DESCUENTO 0.00 2 2724 \N +103579 2025-06-30 04:45:50.892916+00 2025-06-30 04:45:50.892925+00 f t TOTAL 0.00 3 2724 \N +103580 2025-06-30 04:45:50.895249+00 2025-06-30 04:45:50.895261+00 f t ADELANTO 0.00 4 2724 \N +103585 2025-06-30 05:32:43.227798+00 2025-06-30 05:32:43.227811+00 f t SUBTOTAL 0.00 1 2725 \N +103586 2025-06-30 05:32:43.229857+00 2025-06-30 05:32:43.229869+00 f t DESCUENTO 0.00 2 2725 \N +103587 2025-06-30 05:32:43.232145+00 2025-06-30 05:32:43.232156+00 f t TOTAL 0.00 3 2725 \N +103588 2025-06-30 05:32:43.233827+00 2025-06-30 05:32:43.233837+00 f t ADELANTO 0.00 4 2725 \N +103593 2025-06-30 05:49:17.380144+00 2025-06-30 05:49:17.380154+00 f t SUBTOTAL 0.00 1 2726 \N +103594 2025-06-30 05:49:17.381871+00 2025-06-30 05:49:17.381879+00 f t DESCUENTO 0.00 2 2726 \N +103595 2025-06-30 05:49:17.383263+00 2025-06-30 05:49:17.38327+00 f t TOTAL 0.00 3 2726 \N +103596 2025-06-30 05:49:17.385342+00 2025-06-30 05:49:17.385349+00 f t ADELANTO 0.00 4 2726 \N +103617 2025-06-30 05:57:36.89808+00 2025-06-30 05:57:36.898093+00 f t SUBTOTAL 0.00 1 2727 \N +103618 2025-06-30 05:57:36.900817+00 2025-06-30 05:57:36.900826+00 f t DESCUENTO 0.00 2 2727 \N +103619 2025-06-30 05:57:36.902611+00 2025-06-30 05:57:36.902619+00 f t TOTAL 0.00 3 2727 \N +103620 2025-06-30 05:57:36.904098+00 2025-06-30 05:57:36.904105+00 f t ADELANTO 0.00 4 2727 \N +103625 2025-06-30 07:31:22.620922+00 2025-06-30 07:31:22.620931+00 f t SUBTOTAL 0.00 1 2728 \N +103626 2025-06-30 07:31:22.622254+00 2025-06-30 07:31:22.622261+00 f t DESCUENTO 0.00 2 2728 \N +103627 2025-06-30 07:31:22.623431+00 2025-06-30 07:31:22.623437+00 f t TOTAL 0.00 3 2728 \N +103628 2025-06-30 07:31:22.624446+00 2025-06-30 07:31:22.624454+00 f t ADELANTO 0.00 4 2728 \N +106197 2025-07-01 09:43:15.495018+00 2025-07-01 09:43:15.495027+00 f t SUBTOTAL 73700.00 1 2792 \N +106198 2025-07-01 09:43:15.496709+00 2025-07-01 09:43:15.496717+00 f t DESCUENTO 0.00 2 2792 \N +106199 2025-07-01 09:43:15.499245+00 2025-07-01 09:43:15.499256+00 f t TOTAL 73700.00 3 2792 \N +106200 2025-07-01 09:43:15.502435+00 2025-07-01 09:43:15.502445+00 f t ADELANTO 35700.00 4 2792 \N +106225 2025-07-01 09:58:38.872691+00 2025-07-01 09:58:38.872701+00 f t SUBTOTAL 70000.00 1 2793 \N +106226 2025-07-01 09:58:38.874375+00 2025-07-01 09:58:38.874383+00 f t DESCUENTO 0.00 2 2793 \N +106227 2025-07-01 09:58:38.875579+00 2025-07-01 09:58:38.875585+00 f t TOTAL 70000.00 3 2793 \N +106228 2025-07-01 09:58:38.876645+00 2025-07-01 09:58:38.876652+00 f t ADELANTO 15000.00 4 2793 \N +103661 2025-06-30 09:19:16.010379+00 2025-06-30 09:19:16.010389+00 f t SUBTOTAL 64500.00 1 2729 \N +103662 2025-06-30 09:19:16.012577+00 2025-06-30 09:19:16.012585+00 f t DESCUENTO 0.00 2 2729 \N +103663 2025-06-30 09:19:16.014064+00 2025-06-30 09:19:16.014074+00 f t TOTAL 64500.00 3 2729 \N +103664 2025-06-30 09:19:16.0156+00 2025-06-30 09:19:16.015609+00 f t ADELANTO 17000.00 4 2729 \N +106361 2025-07-01 12:46:15.479337+00 2025-07-01 12:46:15.479352+00 f t SUBTOTAL 42000.00 1 2797 \N +106362 2025-07-01 12:46:15.481608+00 2025-07-01 12:46:15.48162+00 f t DESCUENTO 0.00 2 2797 \N +106363 2025-07-01 12:46:15.483298+00 2025-07-01 12:46:15.483309+00 f t TOTAL 42000.00 3 2797 \N +106364 2025-07-01 12:46:15.484842+00 2025-07-01 12:46:15.484853+00 f t ADELANTO 9500.00 4 2797 \N +106469 2025-07-01 13:08:08.421644+00 2025-07-01 13:08:08.421656+00 f t SUBTOTAL 0.00 1 2801 \N +106470 2025-07-01 13:08:08.423882+00 2025-07-01 13:08:08.423893+00 f t DESCUENTO 0.00 2 2801 \N +106471 2025-07-01 13:08:08.425694+00 2025-07-01 13:08:08.425702+00 f t TOTAL 0.00 3 2801 \N +106472 2025-07-01 13:08:08.427112+00 2025-07-01 13:08:08.427119+00 f t ADELANTO 0.00 4 2801 \N +103701 2025-06-30 11:10:16.976944+00 2025-06-30 11:10:16.976954+00 f t SUBTOTAL 0.00 1 2731 \N +103702 2025-06-30 11:10:16.97854+00 2025-06-30 11:10:16.978548+00 f t DESCUENTO 0.00 2 2731 \N +103703 2025-06-30 11:10:16.979987+00 2025-06-30 11:10:16.979996+00 f t TOTAL 0.00 3 2731 \N +103704 2025-06-30 11:10:16.981264+00 2025-06-30 11:10:16.981272+00 f t ADELANTO 0.00 4 2731 \N +103717 2025-06-30 11:10:49.168612+00 2025-06-30 11:10:49.168625+00 f t SUBTOTAL 62000.00 1 2730 \N +103718 2025-06-30 11:10:49.170551+00 2025-06-30 11:10:49.170559+00 f t DESCUENTO 0.00 2 2730 \N +103719 2025-06-30 11:10:49.17172+00 2025-06-30 11:10:49.171726+00 f t TOTAL 62000.00 3 2730 \N +103720 2025-06-30 11:10:49.173088+00 2025-06-30 11:10:49.173093+00 f t ADELANTO 12000.00 4 2730 \N +118188 2025-07-06 20:05:11.934414+00 2025-07-06 20:05:11.934419+00 f t ADELANTO 10000.00 4 3122 \N +133208 2025-07-13 12:09:27.179352+00 2025-07-13 12:09:27.17936+00 f t ADELANTO 0.00 4 3510 \N +146525 2025-07-18 23:17:18.561461+00 2025-07-18 23:17:18.56147+00 f t SUBTOTAL 42000.00 1 3847 \N +146526 2025-07-18 23:17:18.563312+00 2025-07-18 23:17:18.563319+00 f t DESCUENTO 0.00 2 3847 \N +103725 2025-06-30 11:58:45.627346+00 2025-06-30 11:58:45.627356+00 f t SUBTOTAL 0.00 1 2732 \N +103726 2025-06-30 11:58:45.628931+00 2025-06-30 11:58:45.628939+00 f t DESCUENTO 0.00 2 2732 \N +103727 2025-06-30 11:58:45.630393+00 2025-06-30 11:58:45.630401+00 f t TOTAL 0.00 3 2732 \N +103728 2025-06-30 11:58:45.631782+00 2025-06-30 11:58:45.631789+00 f t ADELANTO 0.00 4 2732 \N +105329 2025-07-01 00:00:22.043254+00 2025-07-01 00:00:22.043269+00 f t SUBTOTAL 42000.00 1 2778 \N +105330 2025-07-01 00:00:22.047211+00 2025-07-01 00:00:22.047226+00 f t DESCUENTO 0.00 2 2778 \N +105331 2025-07-01 00:00:22.0512+00 2025-07-01 00:00:22.051216+00 f t TOTAL 42000.00 3 2778 \N +105332 2025-07-01 00:00:22.05737+00 2025-07-01 00:00:22.057384+00 f t ADELANTO 9500.00 4 2778 \N +107893 2025-07-01 23:07:55.30413+00 2025-07-01 23:07:55.30414+00 f t SUBTOTAL 94700.00 1 2833 \N +107894 2025-07-01 23:07:55.305802+00 2025-07-01 23:07:55.305809+00 f t DESCUENTO 0.00 2 2833 \N +107895 2025-07-01 23:07:55.306941+00 2025-07-01 23:07:55.306947+00 f t TOTAL 94700.00 3 2833 \N +107896 2025-07-01 23:07:55.308028+00 2025-07-01 23:07:55.308035+00 f t ADELANTO 56700.00 4 2833 \N +108141 2025-07-02 00:21:46.184072+00 2025-07-02 00:21:46.184081+00 f t SUBTOTAL 64500.00 1 2839 \N +108142 2025-07-02 00:21:46.185899+00 2025-07-02 00:21:46.185906+00 f t DESCUENTO 0.00 2 2839 \N +108143 2025-07-02 00:21:46.187093+00 2025-07-02 00:21:46.1871+00 f t TOTAL 64500.00 3 2839 \N +108144 2025-07-02 00:21:46.188248+00 2025-07-02 00:21:46.188254+00 f t ADELANTO 17000.00 4 2839 \N +105713 2025-07-01 00:52:44.057189+00 2025-07-01 00:52:44.057201+00 f t SUBTOTAL 0.00 1 2785 \N +105714 2025-07-01 00:52:44.058885+00 2025-07-01 00:52:44.058895+00 f t DESCUENTO 0.00 2 2785 \N +105715 2025-07-01 00:52:44.060375+00 2025-07-01 00:52:44.060384+00 f t TOTAL 0.00 3 2785 \N +105716 2025-07-01 00:52:44.06164+00 2025-07-01 00:52:44.06165+00 f t ADELANTO 0.00 4 2785 \N +105769 2025-07-01 01:33:40.367683+00 2025-07-01 01:33:40.367695+00 f t SUBTOTAL 50000.00 1 2787 \N +105770 2025-07-01 01:33:40.370188+00 2025-07-01 01:33:40.370199+00 f t DESCUENTO 0.00 2 2787 \N +105771 2025-07-01 01:33:40.372616+00 2025-07-01 01:33:40.372625+00 f t TOTAL 50000.00 3 2787 \N +105772 2025-07-01 01:33:40.373937+00 2025-07-01 01:33:40.373944+00 f t ADELANTO 10000.00 4 2787 \N +108313 2025-07-02 02:12:26.362912+00 2025-07-02 02:12:26.362926+00 f t SUBTOTAL 0.00 1 2845 \N +108314 2025-07-02 02:12:26.365183+00 2025-07-02 02:12:26.365195+00 f t DESCUENTO 0.00 2 2845 \N +108315 2025-07-02 02:12:26.367086+00 2025-07-02 02:12:26.367096+00 f t TOTAL 0.00 3 2845 \N +108316 2025-07-02 02:12:26.368938+00 2025-07-02 02:12:26.368949+00 f t ADELANTO 0.00 4 2845 \N +103881 2025-06-30 12:54:39.007452+00 2025-06-30 12:54:39.007462+00 f t SUBTOTAL 42000.00 1 2733 \N +103882 2025-06-30 12:54:39.008994+00 2025-06-30 12:54:39.009002+00 f t DESCUENTO 0.00 2 2733 \N +103883 2025-06-30 12:54:39.010267+00 2025-06-30 12:54:39.010274+00 f t TOTAL 42000.00 3 2733 \N +103884 2025-06-30 12:54:39.011383+00 2025-06-30 12:54:39.011389+00 f t ADELANTO 9500.00 4 2733 \N +108541 2025-07-02 03:04:09.380106+00 2025-07-02 03:04:09.380117+00 f t SUBTOTAL 50000.00 1 2848 \N +108542 2025-07-02 03:04:09.382157+00 2025-07-02 03:04:09.382166+00 f t DESCUENTO 0.00 2 2848 \N +108543 2025-07-02 03:04:09.383623+00 2025-07-02 03:04:09.383629+00 f t TOTAL 50000.00 3 2848 \N +108544 2025-07-02 03:04:09.384818+00 2025-07-02 03:04:09.384823+00 f t ADELANTO 10000.00 4 2848 \N +108597 2025-07-02 03:46:30.635085+00 2025-07-02 03:46:30.635096+00 f t SUBTOTAL 164500.00 1 2850 \N +108598 2025-07-02 03:46:30.636902+00 2025-07-02 03:46:30.636912+00 f t DESCUENTO 0.00 2 2850 \N +108599 2025-07-02 03:46:30.638133+00 2025-07-02 03:46:30.638142+00 f t TOTAL 164500.00 3 2850 \N +108600 2025-07-02 03:46:30.639494+00 2025-07-02 03:46:30.639503+00 f t ADELANTO 76500.00 4 2850 \N +108653 2025-07-02 11:15:00.44095+00 2025-07-02 11:15:00.44096+00 f t SUBTOTAL 42000.00 1 2852 \N +108654 2025-07-02 11:15:00.443101+00 2025-07-02 11:15:00.443111+00 f t DESCUENTO 0.00 2 2852 \N +108655 2025-07-02 11:15:00.444624+00 2025-07-02 11:15:00.444634+00 f t TOTAL 42000.00 3 2852 \N +108656 2025-07-02 11:15:00.445862+00 2025-07-02 11:15:00.445868+00 f t ADELANTO 9500.00 4 2852 \N +106233 2025-07-01 11:35:30.320697+00 2025-07-01 11:35:30.320707+00 f t SUBTOTAL 0.00 1 2794 \N +106234 2025-07-01 11:35:30.321995+00 2025-07-01 11:35:30.322005+00 f t DESCUENTO 0.00 2 2794 \N +106235 2025-07-01 11:35:30.323192+00 2025-07-01 11:35:30.323197+00 f t TOTAL 0.00 3 2794 \N +106236 2025-07-01 11:35:30.324373+00 2025-07-01 11:35:30.324381+00 f t ADELANTO 0.00 4 2794 \N +106369 2025-07-01 12:48:53.615768+00 2025-07-01 12:48:53.615776+00 f t SUBTOTAL 0.00 1 2798 \N +106370 2025-07-01 12:48:53.617038+00 2025-07-01 12:48:53.617045+00 f t DESCUENTO 0.00 2 2798 \N +106371 2025-07-01 12:48:53.618178+00 2025-07-01 12:48:53.618183+00 f t TOTAL 0.00 3 2798 \N +106372 2025-07-01 12:48:53.619002+00 2025-07-01 12:48:53.619007+00 f t ADELANTO 0.00 4 2798 \N +108841 2025-07-02 12:48:54.272552+00 2025-07-02 12:48:54.272565+00 f t SUBTOTAL 0.00 1 2856 \N +108842 2025-07-02 12:48:54.27428+00 2025-07-02 12:48:54.274288+00 f t DESCUENTO 0.00 2 2856 \N +103957 2025-06-30 12:59:35.058175+00 2025-06-30 12:59:35.058185+00 f t SUBTOTAL 42000.00 1 2734 \N +103958 2025-06-30 12:59:35.059969+00 2025-06-30 12:59:35.059979+00 f t DESCUENTO 0.00 2 2734 \N +103959 2025-06-30 12:59:35.061314+00 2025-06-30 12:59:35.061323+00 f t TOTAL 42000.00 3 2734 \N +103960 2025-06-30 12:59:35.06243+00 2025-06-30 12:59:35.062436+00 f t ADELANTO 9500.00 4 2734 \N +108843 2025-07-02 12:48:54.275671+00 2025-07-02 12:48:54.275679+00 f t TOTAL 0.00 3 2856 \N +108844 2025-07-02 12:48:54.277013+00 2025-07-02 12:48:54.277021+00 f t ADELANTO 0.00 4 2856 \N +108885 2025-07-02 14:00:55.891421+00 2025-07-02 14:00:55.891431+00 f t SUBTOTAL 0.00 1 2861 \N +108886 2025-07-02 14:00:55.893074+00 2025-07-02 14:00:55.893084+00 f t DESCUENTO 0.00 2 2861 \N +106477 2025-07-01 13:30:57.721748+00 2025-07-01 13:30:57.72176+00 f t SUBTOTAL 0.00 1 2802 \N +106478 2025-07-01 13:30:57.723019+00 2025-07-01 13:30:57.723025+00 f t DESCUENTO 0.00 2 2802 \N +106479 2025-07-01 13:30:57.724209+00 2025-07-01 13:30:57.724216+00 f t TOTAL 0.00 3 2802 \N +106480 2025-07-01 13:30:57.725385+00 2025-07-01 13:30:57.725391+00 f t ADELANTO 0.00 4 2802 \N +106581 2025-07-01 13:58:43.551324+00 2025-07-01 13:58:43.551337+00 f t SUBTOTAL 0.00 1 2805 \N +106582 2025-07-01 13:58:43.552948+00 2025-07-01 13:58:43.552958+00 f t DESCUENTO 0.00 2 2805 \N +103997 2025-06-30 13:28:59.058571+00 2025-06-30 13:28:59.058584+00 f t SUBTOTAL 0.00 1 2736 \N +103998 2025-06-30 13:28:59.061682+00 2025-06-30 13:28:59.061691+00 f t DESCUENTO 0.00 2 2736 \N +103999 2025-06-30 13:28:59.062947+00 2025-06-30 13:28:59.062953+00 f t TOTAL 0.00 3 2736 \N +104000 2025-06-30 13:28:59.064191+00 2025-06-30 13:28:59.064196+00 f t ADELANTO 0.00 4 2736 \N +106583 2025-07-01 13:58:43.554431+00 2025-07-01 13:58:43.55444+00 f t TOTAL 0.00 3 2805 \N +106584 2025-07-01 13:58:43.55579+00 2025-07-01 13:58:43.555798+00 f t ADELANTO 0.00 4 2805 \N +104889 2025-06-30 21:10:43.679937+00 2025-06-30 21:10:43.679947+00 f t SUBTOTAL 99000.00 1 2768 \N +104890 2025-06-30 21:10:43.681822+00 2025-06-30 21:10:43.681831+00 f t DESCUENTO 0.00 2 2768 \N +104891 2025-06-30 21:10:43.683363+00 2025-06-30 21:10:43.683373+00 f t TOTAL 99000.00 3 2768 \N +104892 2025-06-30 21:10:43.684934+00 2025-06-30 21:10:43.68494+00 f t ADELANTO 23000.00 4 2768 \N +146527 2025-07-18 23:17:18.56473+00 2025-07-18 23:17:18.564736+00 f t TOTAL 42000.00 3 3847 \N +146528 2025-07-18 23:17:18.566358+00 2025-07-18 23:17:18.566365+00 f t ADELANTO 9500.00 4 3847 \N +110017 2025-07-03 02:44:21.972199+00 2025-07-03 02:44:21.972207+00 f t SUBTOTAL 50000.00 1 2891 \N +110018 2025-07-03 02:44:21.974212+00 2025-07-03 02:44:21.974221+00 f t DESCUENTO 0.00 2 2891 \N +110019 2025-07-03 02:44:21.975745+00 2025-07-03 02:44:21.975753+00 f t TOTAL 50000.00 3 2891 \N +104021 2025-06-30 13:37:30.602382+00 2025-06-30 13:37:30.602391+00 f t SUBTOTAL 50000.00 1 2735 \N +104022 2025-06-30 13:37:30.603962+00 2025-06-30 13:37:30.603968+00 f t DESCUENTO 0.00 2 2735 \N +104023 2025-06-30 13:37:30.6053+00 2025-06-30 13:37:30.605305+00 f t TOTAL 50000.00 3 2735 \N +104024 2025-06-30 13:37:30.606617+00 2025-06-30 13:37:30.606622+00 f t ADELANTO 10000.00 4 2735 \N +110020 2025-07-03 02:44:21.977148+00 2025-07-03 02:44:21.977154+00 f t ADELANTO 10000.00 4 2891 \N +104061 2025-06-30 13:38:37.865872+00 2025-06-30 13:38:37.865881+00 f t SUBTOTAL 42000.00 1 2738 \N +104062 2025-06-30 13:38:37.867643+00 2025-06-30 13:38:37.86765+00 f t DESCUENTO 0.00 2 2738 \N +104063 2025-06-30 13:38:37.868949+00 2025-06-30 13:38:37.868954+00 f t TOTAL 42000.00 3 2738 \N +104064 2025-06-30 13:38:37.870158+00 2025-06-30 13:38:37.870166+00 f t ADELANTO 9500.00 4 2738 \N +104089 2025-06-30 13:53:48.640167+00 2025-06-30 13:53:48.640177+00 f t SUBTOTAL 49500.00 1 2739 \N +104090 2025-06-30 13:53:48.642085+00 2025-06-30 13:53:48.642095+00 f t DESCUENTO 0.00 2 2739 \N +104091 2025-06-30 13:53:48.644302+00 2025-06-30 13:53:48.644313+00 f t TOTAL 49500.00 3 2739 \N +104092 2025-06-30 13:53:48.645944+00 2025-06-30 13:53:48.645954+00 f t ADELANTO 11500.00 4 2739 \N +105573 2025-07-01 00:19:53.889026+00 2025-07-01 00:19:53.889036+00 f t SUBTOTAL 49500.00 1 2782 \N +105574 2025-07-01 00:19:53.890695+00 2025-07-01 00:19:53.890704+00 f t DESCUENTO 0.00 2 2782 \N +105575 2025-07-01 00:19:53.892219+00 2025-07-01 00:19:53.892225+00 f t TOTAL 49500.00 3 2782 \N +105576 2025-07-01 00:19:53.89503+00 2025-07-01 00:19:53.89504+00 f t ADELANTO 11500.00 4 2782 \N +108149 2025-07-02 00:33:45.720118+00 2025-07-02 00:33:45.72013+00 f t SUBTOTAL 0.00 1 2840 \N +108150 2025-07-02 00:33:45.721677+00 2025-07-02 00:33:45.721687+00 f t DESCUENTO 0.00 2 2840 \N +108151 2025-07-02 00:33:45.722872+00 2025-07-02 00:33:45.722878+00 f t TOTAL 0.00 3 2840 \N +104117 2025-06-30 14:00:36.59384+00 2025-06-30 14:00:36.59385+00 f t SUBTOTAL 42000.00 1 2740 \N +104118 2025-06-30 14:00:36.59575+00 2025-06-30 14:00:36.595758+00 f t DESCUENTO 0.00 2 2740 \N +104119 2025-06-30 14:00:36.597122+00 2025-06-30 14:00:36.597131+00 f t TOTAL 42000.00 3 2740 \N +104120 2025-06-30 14:00:36.598568+00 2025-06-30 14:00:36.598575+00 f t ADELANTO 9500.00 4 2740 \N +108152 2025-07-02 00:33:45.72377+00 2025-07-02 00:33:45.723775+00 f t ADELANTO 0.00 4 2840 \N +105777 2025-07-01 02:10:50.711911+00 2025-07-01 02:10:50.711928+00 f t SUBTOTAL 0.00 1 2788 \N +105778 2025-07-01 02:10:50.714088+00 2025-07-01 02:10:50.7141+00 f t DESCUENTO 0.00 2 2788 \N +105779 2025-07-01 02:10:50.716053+00 2025-07-01 02:10:50.716065+00 f t TOTAL 0.00 3 2788 \N +105780 2025-07-01 02:10:50.717949+00 2025-07-01 02:10:50.717958+00 f t ADELANTO 0.00 4 2788 \N +104145 2025-06-30 14:03:16.283091+00 2025-06-30 14:03:16.283099+00 f t SUBTOTAL 42000.00 1 2737 \N +104146 2025-06-30 14:03:16.284785+00 2025-06-30 14:03:16.284795+00 f t DESCUENTO 0.00 2 2737 \N +104147 2025-06-30 14:03:16.286189+00 2025-06-30 14:03:16.286197+00 f t TOTAL 42000.00 3 2737 \N +104148 2025-06-30 14:03:16.28748+00 2025-06-30 14:03:16.287486+00 f t ADELANTO 9500.00 4 2737 \N +104153 2025-06-30 14:10:46.937624+00 2025-06-30 14:10:46.937636+00 f t SUBTOTAL 0.00 1 2741 \N +104154 2025-06-30 14:10:46.939021+00 2025-06-30 14:10:46.93903+00 f t DESCUENTO 0.00 2 2741 \N +104155 2025-06-30 14:10:46.940146+00 2025-06-30 14:10:46.940153+00 f t TOTAL 0.00 3 2741 \N +104156 2025-06-30 14:10:46.941336+00 2025-06-30 14:10:46.941344+00 f t ADELANTO 0.00 4 2741 \N +104161 2025-06-30 15:16:35.308485+00 2025-06-30 15:16:35.308494+00 f t SUBTOTAL 0.00 1 2742 \N +104162 2025-06-30 15:16:35.309712+00 2025-06-30 15:16:35.309719+00 f t DESCUENTO 0.00 2 2742 \N +104163 2025-06-30 15:16:35.310748+00 2025-06-30 15:16:35.310754+00 f t TOTAL 0.00 3 2742 \N +104164 2025-06-30 15:16:35.31192+00 2025-06-30 15:16:35.311929+00 f t ADELANTO 0.00 4 2742 \N +104197 2025-06-30 15:20:03.748614+00 2025-06-30 15:20:03.748629+00 f t SUBTOTAL 49700.00 1 2743 \N +104198 2025-06-30 15:20:03.75312+00 2025-06-30 15:20:03.753134+00 f t DESCUENTO 0.00 2 2743 \N +104199 2025-06-30 15:20:03.769643+00 2025-06-30 15:20:03.769659+00 f t TOTAL 49700.00 3 2743 \N +104200 2025-06-30 15:20:03.778365+00 2025-06-30 15:20:03.77838+00 f t ADELANTO 11700.00 4 2743 \N +108549 2025-07-02 03:26:00.968523+00 2025-07-02 03:26:00.968532+00 f t SUBTOTAL 0.00 1 2849 \N +108550 2025-07-02 03:26:00.969931+00 2025-07-02 03:26:00.96994+00 f t DESCUENTO 0.00 2 2849 \N +108551 2025-07-02 03:26:00.9712+00 2025-07-02 03:26:00.971207+00 f t TOTAL 0.00 3 2849 \N +108552 2025-07-02 03:26:00.97235+00 2025-07-02 03:26:00.972357+00 f t ADELANTO 0.00 4 2849 \N +108605 2025-07-02 04:32:58.769277+00 2025-07-02 04:32:58.769285+00 f t SUBTOTAL 0.00 1 2851 \N +108606 2025-07-02 04:32:58.770532+00 2025-07-02 04:32:58.770538+00 f t DESCUENTO 0.00 2 2851 \N +108607 2025-07-02 04:32:58.771539+00 2025-07-02 04:32:58.771544+00 f t TOTAL 0.00 3 2851 \N +108608 2025-07-02 04:32:58.772421+00 2025-07-02 04:32:58.772425+00 f t ADELANTO 0.00 4 2851 \N +106317 2025-07-01 12:37:12.519904+00 2025-07-01 12:37:12.519917+00 f t SUBTOTAL 70000.00 1 2796 \N +106318 2025-07-01 12:37:12.521866+00 2025-07-01 12:37:12.521879+00 f t DESCUENTO 0.00 2 2796 \N +106319 2025-07-01 12:37:12.523736+00 2025-07-01 12:37:12.523746+00 f t TOTAL 70000.00 3 2796 \N +106320 2025-07-01 12:37:12.526625+00 2025-07-01 12:37:12.526635+00 f t ADELANTO 10000.00 4 2796 \N +104253 2025-06-30 15:35:34.669356+00 2025-06-30 15:35:34.669369+00 f t SUBTOTAL 129500.00 1 2744 \N +104254 2025-06-30 15:35:34.671519+00 2025-06-30 15:35:34.67153+00 f t DESCUENTO 0.00 2 2744 \N +104255 2025-06-30 15:35:34.673186+00 2025-06-30 15:35:34.673196+00 f t TOTAL 129500.00 3 2744 \N +104256 2025-06-30 15:35:34.67692+00 2025-06-30 15:35:34.676933+00 f t ADELANTO 27000.00 4 2744 \N +108887 2025-07-02 14:00:55.894688+00 2025-07-02 14:00:55.894699+00 f t TOTAL 0.00 3 2861 \N +108888 2025-07-02 14:00:55.896278+00 2025-07-02 14:00:55.896284+00 f t ADELANTO 0.00 4 2861 \N +104281 2025-06-30 15:42:05.357927+00 2025-06-30 15:42:05.357936+00 f t SUBTOTAL 50000.00 1 2745 \N +104282 2025-06-30 15:42:05.36124+00 2025-06-30 15:42:05.36125+00 f t DESCUENTO 0.00 2 2745 \N +104283 2025-06-30 15:42:05.36284+00 2025-06-30 15:42:05.36285+00 f t TOTAL 50000.00 3 2745 \N +104284 2025-06-30 15:42:05.364577+00 2025-06-30 15:42:05.364586+00 f t ADELANTO 10000.00 4 2745 \N +106525 2025-07-01 13:41:05.322909+00 2025-07-01 13:41:05.322919+00 f t SUBTOTAL 42000.00 1 2803 \N +106526 2025-07-01 13:41:05.324524+00 2025-07-01 13:41:05.324532+00 f t DESCUENTO 0.00 2 2803 \N +106527 2025-07-01 13:41:05.325886+00 2025-07-01 13:41:05.325892+00 f t TOTAL 42000.00 3 2803 \N +106528 2025-07-01 13:41:05.326996+00 2025-07-01 13:41:05.327001+00 f t ADELANTO 9500.00 4 2803 \N +121129 2025-07-07 23:02:38.43086+00 2025-07-07 23:02:38.430869+00 f t SUBTOTAL 62000.00 1 3210 \N +112709 2025-07-04 12:28:34.368101+00 2025-07-04 12:28:34.368114+00 f t SUBTOTAL 0.00 1 2971 \N +104897 2025-06-30 21:24:50.904522+00 2025-06-30 21:24:50.904531+00 f t SUBTOTAL 0.00 1 2769 \N +104898 2025-06-30 21:24:50.905919+00 2025-06-30 21:24:50.905926+00 f t DESCUENTO 0.00 2 2769 \N +104899 2025-06-30 21:24:50.906994+00 2025-06-30 21:24:50.906999+00 f t TOTAL 0.00 3 2769 \N +104900 2025-06-30 21:24:50.908003+00 2025-06-30 21:24:50.908009+00 f t ADELANTO 0.00 4 2769 \N +112710 2025-07-04 12:28:34.369955+00 2025-07-04 12:28:34.369965+00 f t DESCUENTO 0.00 2 2971 \N +112711 2025-07-04 12:28:34.371797+00 2025-07-04 12:28:34.371807+00 f t TOTAL 0.00 3 2971 \N +112712 2025-07-04 12:28:34.373365+00 2025-07-04 12:28:34.373374+00 f t ADELANTO 0.00 4 2971 \N +105265 2025-06-30 22:57:27.32562+00 2025-06-30 22:57:27.325629+00 f t SUBTOTAL 42000.00 1 2776 \N +105266 2025-06-30 22:57:27.327473+00 2025-06-30 22:57:27.327481+00 f t DESCUENTO 0.00 2 2776 \N +105267 2025-06-30 22:57:27.328936+00 2025-06-30 22:57:27.328943+00 f t TOTAL 42000.00 3 2776 \N +105268 2025-06-30 22:57:27.330194+00 2025-06-30 22:57:27.330199+00 f t ADELANTO 9500.00 4 2776 \N +107865 2025-07-01 22:25:51.263182+00 2025-07-01 22:25:51.263191+00 f t SUBTOTAL 49500.00 1 2832 \N +107866 2025-07-01 22:25:51.264906+00 2025-07-01 22:25:51.264912+00 f t DESCUENTO 0.00 2 2832 \N +107867 2025-07-01 22:25:51.266163+00 2025-07-01 22:25:51.266168+00 f t TOTAL 49500.00 3 2832 \N +107868 2025-07-01 22:25:51.267481+00 2025-07-01 22:25:51.267487+00 f t ADELANTO 11500.00 4 2832 \N +104397 2025-06-30 16:34:22.412035+00 2025-06-30 16:34:22.412045+00 f t SUBTOTAL 0.00 1 2746 \N +104398 2025-06-30 16:34:22.414301+00 2025-06-30 16:34:22.41431+00 f t DESCUENTO 0.00 2 2746 \N +104399 2025-06-30 16:34:22.415634+00 2025-06-30 16:34:22.41564+00 f t TOTAL 0.00 3 2746 \N +104400 2025-06-30 16:34:22.416758+00 2025-06-30 16:34:22.416763+00 f t ADELANTO 0.00 4 2746 \N +104405 2025-06-30 16:43:09.811254+00 2025-06-30 16:43:09.811264+00 f t SUBTOTAL 0.00 1 2747 \N +104406 2025-06-30 16:43:09.812825+00 2025-06-30 16:43:09.812831+00 f t DESCUENTO 0.00 2 2747 \N +104407 2025-06-30 16:43:09.814257+00 2025-06-30 16:43:09.814263+00 f t TOTAL 0.00 3 2747 \N +104408 2025-06-30 16:43:09.815533+00 2025-06-30 16:43:09.81554+00 f t ADELANTO 0.00 4 2747 \N +105785 2025-07-01 02:13:19.819921+00 2025-07-01 02:13:19.81993+00 f t SUBTOTAL 0.00 1 2789 \N +105786 2025-07-01 02:13:19.821561+00 2025-07-01 02:13:19.821567+00 f t DESCUENTO 0.00 2 2789 \N +105787 2025-07-01 02:13:19.823109+00 2025-07-01 02:13:19.82312+00 f t TOTAL 0.00 3 2789 \N +105788 2025-07-01 02:13:19.824634+00 2025-07-01 02:13:19.824641+00 f t ADELANTO 0.00 4 2789 \N +104433 2025-06-30 16:44:12.617021+00 2025-06-30 16:44:12.617034+00 f t SUBTOTAL 42000.00 1 2748 \N +104434 2025-06-30 16:44:12.618826+00 2025-06-30 16:44:12.618834+00 f t DESCUENTO 0.00 2 2748 \N +104435 2025-06-30 16:44:12.620142+00 2025-06-30 16:44:12.620149+00 f t TOTAL 42000.00 3 2748 \N +104436 2025-06-30 16:44:12.621436+00 2025-06-30 16:44:12.621442+00 f t ADELANTO 9500.00 4 2748 \N +104461 2025-06-30 17:54:28.706438+00 2025-06-30 17:54:28.706448+00 f t SUBTOTAL 62000.00 1 2749 \N +104462 2025-06-30 17:54:28.707863+00 2025-06-30 17:54:28.707869+00 f t DESCUENTO 0.00 2 2749 \N +104463 2025-06-30 17:54:28.708927+00 2025-06-30 17:54:28.708933+00 f t TOTAL 62000.00 3 2749 \N +104464 2025-06-30 17:54:28.709842+00 2025-06-30 17:54:28.709847+00 f t ADELANTO 12000.00 4 2749 \N +104469 2025-06-30 18:01:28.135441+00 2025-06-30 18:01:28.135455+00 f t SUBTOTAL 0.00 1 2750 \N +104470 2025-06-30 18:01:28.137329+00 2025-06-30 18:01:28.137339+00 f t DESCUENTO 0.00 2 2750 \N +104471 2025-06-30 18:01:28.139489+00 2025-06-30 18:01:28.139497+00 f t TOTAL 0.00 3 2750 \N +104472 2025-06-30 18:01:28.141022+00 2025-06-30 18:01:28.141031+00 f t ADELANTO 0.00 4 2750 \N +104489 2025-06-30 18:21:45.463489+00 2025-06-30 18:21:45.463499+00 f t SUBTOTAL 0.00 1 2751 \N +104490 2025-06-30 18:21:45.465077+00 2025-06-30 18:21:45.465085+00 f t DESCUENTO 0.00 2 2751 \N +104491 2025-06-30 18:21:45.466277+00 2025-06-30 18:21:45.466284+00 f t TOTAL 0.00 3 2751 \N +104492 2025-06-30 18:21:45.467315+00 2025-06-30 18:21:45.467321+00 f t ADELANTO 0.00 4 2751 \N +104505 2025-06-30 18:22:17.901178+00 2025-06-30 18:22:17.901191+00 f t SUBTOTAL 0.00 1 2752 \N +104506 2025-06-30 18:22:17.903835+00 2025-06-30 18:22:17.903844+00 f t DESCUENTO 0.00 2 2752 \N +104507 2025-06-30 18:22:17.9053+00 2025-06-30 18:22:17.905307+00 f t TOTAL 0.00 3 2752 \N +104508 2025-06-30 18:22:17.906755+00 2025-06-30 18:22:17.906762+00 f t ADELANTO 0.00 4 2752 \N +104541 2025-06-30 18:47:09.837483+00 2025-06-30 18:47:09.837492+00 f t SUBTOTAL 62000.00 1 2753 \N +104542 2025-06-30 18:47:09.839369+00 2025-06-30 18:47:09.839376+00 f t DESCUENTO 0.00 2 2753 \N +104543 2025-06-30 18:47:09.840442+00 2025-06-30 18:47:09.840448+00 f t TOTAL 62000.00 3 2753 \N +104544 2025-06-30 18:47:09.841512+00 2025-06-30 18:47:09.841519+00 f t ADELANTO 12000.00 4 2753 \N +104549 2025-06-30 18:48:05.825903+00 2025-06-30 18:48:05.825915+00 f t SUBTOTAL 0.00 1 2754 \N +104550 2025-06-30 18:48:05.827773+00 2025-06-30 18:48:05.827784+00 f t DESCUENTO 0.00 2 2754 \N +104551 2025-06-30 18:48:05.82935+00 2025-06-30 18:48:05.829358+00 f t TOTAL 0.00 3 2754 \N +104552 2025-06-30 18:48:05.830753+00 2025-06-30 18:48:05.830761+00 f t ADELANTO 0.00 4 2754 \N +104557 2025-06-30 18:51:46.488624+00 2025-06-30 18:51:46.488633+00 f t SUBTOTAL 0.00 1 2755 \N +104558 2025-06-30 18:51:46.490136+00 2025-06-30 18:51:46.490143+00 f t DESCUENTO 0.00 2 2755 \N +104559 2025-06-30 18:51:46.491578+00 2025-06-30 18:51:46.491587+00 f t TOTAL 0.00 3 2755 \N +104560 2025-06-30 18:51:46.492869+00 2025-06-30 18:51:46.492878+00 f t ADELANTO 0.00 4 2755 \N +106453 2025-07-01 12:54:49.827019+00 2025-07-01 12:54:49.827031+00 f t SUBTOTAL 61000.00 1 2799 \N +106454 2025-07-01 12:54:49.829265+00 2025-07-01 12:54:49.829273+00 f t DESCUENTO 0.00 2 2799 \N +106455 2025-07-01 12:54:49.831083+00 2025-07-01 12:54:49.831093+00 f t TOTAL 61000.00 3 2799 \N +106456 2025-07-01 12:54:49.832776+00 2025-07-01 12:54:49.832783+00 f t ADELANTO 11000.00 4 2799 \N +104565 2025-06-30 18:52:21.260429+00 2025-06-30 18:52:21.260438+00 f t SUBTOTAL 0.00 1 2756 \N +104566 2025-06-30 18:52:21.261911+00 2025-06-30 18:52:21.26192+00 f t DESCUENTO 0.00 2 2756 \N +104567 2025-06-30 18:52:21.263155+00 2025-06-30 18:52:21.263161+00 f t TOTAL 0.00 3 2756 \N +104568 2025-06-30 18:52:21.2643+00 2025-06-30 18:52:21.264307+00 f t ADELANTO 0.00 4 2756 \N +104573 2025-06-30 19:06:05.84398+00 2025-06-30 19:06:05.843993+00 f t SUBTOTAL 0.00 1 2757 \N +104574 2025-06-30 19:06:05.845812+00 2025-06-30 19:06:05.845823+00 f t DESCUENTO 0.00 2 2757 \N +104575 2025-06-30 19:06:05.847442+00 2025-06-30 19:06:05.84745+00 f t TOTAL 0.00 3 2757 \N +104576 2025-06-30 19:06:05.848693+00 2025-06-30 19:06:05.848699+00 f t ADELANTO 0.00 4 2757 \N +104581 2025-06-30 19:18:40.616659+00 2025-06-30 19:18:40.616669+00 f t SUBTOTAL 0.00 1 2758 \N +104582 2025-06-30 19:18:40.618086+00 2025-06-30 19:18:40.618093+00 f t DESCUENTO 0.00 2 2758 \N +104583 2025-06-30 19:18:40.619324+00 2025-06-30 19:18:40.61933+00 f t TOTAL 0.00 3 2758 \N +104584 2025-06-30 19:18:40.620271+00 2025-06-30 19:18:40.620278+00 f t ADELANTO 0.00 4 2758 \N +104589 2025-06-30 19:37:40.506282+00 2025-06-30 19:37:40.506291+00 f t SUBTOTAL 0.00 1 2759 \N +104590 2025-06-30 19:37:40.507679+00 2025-06-30 19:37:40.507686+00 f t DESCUENTO 0.00 2 2759 \N +104591 2025-06-30 19:37:40.508795+00 2025-06-30 19:37:40.508801+00 f t TOTAL 0.00 3 2759 \N +104592 2025-06-30 19:37:40.509773+00 2025-06-30 19:37:40.509779+00 f t ADELANTO 0.00 4 2759 \N +121130 2025-07-07 23:02:38.433153+00 2025-07-07 23:02:38.43316+00 f t DESCUENTO 0.00 2 3210 \N +121131 2025-07-07 23:02:38.435242+00 2025-07-07 23:02:38.435249+00 f t TOTAL 62000.00 3 3210 \N +121132 2025-07-07 23:02:38.436792+00 2025-07-07 23:02:38.4368+00 f t ADELANTO 12000.00 4 3210 \N +143101 2025-07-17 11:37:27.547913+00 2025-07-17 11:37:27.547927+00 f t SUBTOTAL 82700.00 1 3762 \N +105013 2025-06-30 21:52:13.420466+00 2025-06-30 21:52:13.420476+00 f t SUBTOTAL 106500.00 1 2772 \N +105014 2025-06-30 21:52:13.422385+00 2025-06-30 21:52:13.422395+00 f t DESCUENTO 0.00 2 2772 \N +105015 2025-06-30 21:52:13.424185+00 2025-06-30 21:52:13.424196+00 f t TOTAL 106500.00 3 2772 \N +105016 2025-06-30 21:52:13.425887+00 2025-06-30 21:52:13.425896+00 f t ADELANTO 26500.00 4 2772 \N +110317 2025-07-03 13:41:20.669702+00 2025-07-03 13:41:20.669711+00 f t SUBTOTAL 0.00 1 2902 \N +110318 2025-07-03 13:41:20.6709+00 2025-07-03 13:41:20.670907+00 f t DESCUENTO 0.00 2 2902 \N +110319 2025-07-03 13:41:20.672023+00 2025-07-03 13:41:20.672028+00 f t TOTAL 0.00 3 2902 \N +110320 2025-07-03 13:41:20.672908+00 2025-07-03 13:41:20.672912+00 f t ADELANTO 0.00 4 2902 \N +110441 2025-07-03 15:09:34.690902+00 2025-07-03 15:09:34.69091+00 f t SUBTOTAL 0.00 1 2905 \N +110442 2025-07-03 15:09:34.692259+00 2025-07-03 15:09:34.692266+00 f t DESCUENTO 0.00 2 2905 \N +110443 2025-07-03 15:09:34.693384+00 2025-07-03 15:09:34.693389+00 f t TOTAL 0.00 3 2905 \N +110444 2025-07-03 15:09:34.694326+00 2025-07-03 15:09:34.694332+00 f t ADELANTO 0.00 4 2905 \N +104657 2025-06-30 19:40:47.322291+00 2025-06-30 19:40:47.322303+00 f t SUBTOTAL 72000.00 1 2761 \N +104658 2025-06-30 19:40:47.324524+00 2025-06-30 19:40:47.324535+00 f t DESCUENTO 0.00 2 2761 \N +104659 2025-06-30 19:40:47.325951+00 2025-06-30 19:40:47.325958+00 f t TOTAL 72000.00 3 2761 \N +104660 2025-06-30 19:40:47.32747+00 2025-06-30 19:40:47.327477+00 f t ADELANTO 19000.00 4 2761 \N +104661 2025-06-30 19:41:13.748433+00 2025-06-30 19:41:13.748446+00 f t SUBTOTAL 42000.00 1 2760 \N +104662 2025-06-30 19:41:13.75077+00 2025-06-30 19:41:13.750779+00 f t DESCUENTO 0.00 2 2760 \N +104663 2025-06-30 19:41:13.752671+00 2025-06-30 19:41:13.75268+00 f t TOTAL 42000.00 3 2760 \N +104664 2025-06-30 19:41:13.75453+00 2025-06-30 19:41:13.754577+00 f t ADELANTO 9500.00 4 2760 \N +110485 2025-07-03 15:57:48.326439+00 2025-07-03 15:57:48.326451+00 f t SUBTOTAL 0.00 1 2909 \N +110486 2025-07-03 15:57:48.328014+00 2025-07-03 15:57:48.328023+00 f t DESCUENTO 0.00 2 2909 \N +110487 2025-07-03 15:57:48.329315+00 2025-07-03 15:57:48.329323+00 f t TOTAL 0.00 3 2909 \N +108185 2025-07-02 01:04:59.634263+00 2025-07-02 01:04:59.634272+00 f t SUBTOTAL 42000.00 1 2841 \N +108186 2025-07-02 01:04:59.635902+00 2025-07-02 01:04:59.635908+00 f t DESCUENTO 0.00 2 2841 \N +108187 2025-07-02 01:04:59.637263+00 2025-07-02 01:04:59.63727+00 f t TOTAL 42000.00 3 2841 \N +108188 2025-07-02 01:04:59.638578+00 2025-07-02 01:04:59.638584+00 f t ADELANTO 9500.00 4 2841 \N +104693 2025-06-30 19:45:13.81626+00 2025-06-30 19:45:13.816271+00 f t SUBTOTAL 50000.00 1 2762 \N +104694 2025-06-30 19:45:13.818006+00 2025-06-30 19:45:13.818013+00 f t DESCUENTO 0.00 2 2762 \N +104695 2025-06-30 19:45:13.819538+00 2025-06-30 19:45:13.819547+00 f t TOTAL 50000.00 3 2762 \N +104696 2025-06-30 19:45:13.821089+00 2025-06-30 19:45:13.821097+00 f t ADELANTO 10000.00 4 2762 \N +108261 2025-07-02 01:26:46.692333+00 2025-07-02 01:26:46.692341+00 f t SUBTOTAL 94500.00 1 2842 \N +105729 2025-07-01 01:22:44.834144+00 2025-07-01 01:22:44.834154+00 f t SUBTOTAL 0.00 1 2786 \N +105730 2025-07-01 01:22:44.836225+00 2025-07-01 01:22:44.836233+00 f t DESCUENTO 0.00 2 2786 \N +105731 2025-07-01 01:22:44.837845+00 2025-07-01 01:22:44.837854+00 f t TOTAL 0.00 3 2786 \N +105732 2025-07-01 01:22:44.838965+00 2025-07-01 01:22:44.838971+00 f t ADELANTO 0.00 4 2786 \N +108262 2025-07-02 01:26:46.693977+00 2025-07-02 01:26:46.693984+00 f t DESCUENTO 0.00 2 2842 \N +108263 2025-07-02 01:26:46.695369+00 2025-07-02 01:26:46.695375+00 f t TOTAL 94500.00 3 2842 \N +108264 2025-07-02 01:26:46.696612+00 2025-07-02 01:26:46.696618+00 f t ADELANTO 26500.00 4 2842 \N +104713 2025-06-30 20:00:43.248352+00 2025-06-30 20:00:43.248362+00 f t SUBTOTAL 0.00 1 2763 \N +104714 2025-06-30 20:00:43.251947+00 2025-06-30 20:00:43.25196+00 f t DESCUENTO 0.00 2 2763 \N +104715 2025-06-30 20:00:43.254881+00 2025-06-30 20:00:43.254893+00 f t TOTAL 0.00 3 2763 \N +104716 2025-06-30 20:00:43.256614+00 2025-06-30 20:00:43.256621+00 f t ADELANTO 0.00 4 2763 \N +104757 2025-06-30 20:05:06.932442+00 2025-06-30 20:05:06.932457+00 f t SUBTOTAL 64500.00 1 2764 \N +104758 2025-06-30 20:05:06.934704+00 2025-06-30 20:05:06.934716+00 f t DESCUENTO 0.00 2 2764 \N +104759 2025-06-30 20:05:06.936843+00 2025-06-30 20:05:06.936853+00 f t TOTAL 64500.00 3 2764 \N +104760 2025-06-30 20:05:06.93943+00 2025-06-30 20:05:06.939442+00 f t ADELANTO 17000.00 4 2764 \N +104793 2025-06-30 20:23:58.312184+00 2025-06-30 20:23:58.312194+00 f t SUBTOTAL 0.00 1 2766 \N +104794 2025-06-30 20:23:58.313604+00 2025-06-30 20:23:58.313611+00 f t DESCUENTO 0.00 2 2766 \N +104795 2025-06-30 20:23:58.314883+00 2025-06-30 20:23:58.314889+00 f t TOTAL 0.00 3 2766 \N +104796 2025-06-30 20:23:58.31592+00 2025-06-30 20:23:58.315926+00 f t ADELANTO 0.00 4 2766 \N +104809 2025-06-30 20:24:19.202319+00 2025-06-30 20:24:19.202331+00 f t SUBTOTAL 50000.00 1 2765 \N +104810 2025-06-30 20:24:19.204049+00 2025-06-30 20:24:19.204058+00 f t DESCUENTO 0.00 2 2765 \N +104811 2025-06-30 20:24:19.20552+00 2025-06-30 20:24:19.205527+00 f t TOTAL 50000.00 3 2765 \N +104812 2025-06-30 20:24:19.206715+00 2025-06-30 20:24:19.206721+00 f t ADELANTO 10000.00 4 2765 \N +108853 2025-07-02 12:49:26.516592+00 2025-07-02 12:49:26.516604+00 f t SUBTOTAL 0.00 1 2857 \N +108854 2025-07-02 12:49:26.518665+00 2025-07-02 12:49:26.518673+00 f t DESCUENTO 0.00 2 2857 \N +108855 2025-07-02 12:49:26.519977+00 2025-07-02 12:49:26.519987+00 f t TOTAL 0.00 3 2857 \N +108856 2025-07-02 12:49:26.520964+00 2025-07-02 12:49:26.520969+00 f t ADELANTO 0.00 4 2857 \N +104833 2025-06-30 20:24:46.646431+00 2025-06-30 20:24:46.646441+00 f t SUBTOTAL 62000.00 1 2767 \N +104834 2025-06-30 20:24:46.64946+00 2025-06-30 20:24:46.649469+00 f t DESCUENTO 0.00 2 2767 \N +104835 2025-06-30 20:24:46.65076+00 2025-06-30 20:24:46.650768+00 f t TOTAL 62000.00 3 2767 \N +104836 2025-06-30 20:24:46.651901+00 2025-06-30 20:24:46.651907+00 f t ADELANTO 12000.00 4 2767 \N +108913 2025-07-02 15:46:57.2412+00 2025-07-02 15:46:57.241209+00 f t SUBTOTAL 42000.00 1 2862 \N +108914 2025-07-02 15:46:57.242893+00 2025-07-02 15:46:57.242905+00 f t DESCUENTO 0.00 2 2862 \N +108915 2025-07-02 15:46:57.244338+00 2025-07-02 15:46:57.244344+00 f t TOTAL 42000.00 3 2862 \N +108916 2025-07-02 15:46:57.245362+00 2025-07-02 15:46:57.245367+00 f t ADELANTO 9500.00 4 2862 \N +106461 2025-07-01 13:06:01.72439+00 2025-07-01 13:06:01.7244+00 f t SUBTOTAL 0.00 1 2800 \N +106462 2025-07-01 13:06:01.726296+00 2025-07-01 13:06:01.726307+00 f t DESCUENTO 0.00 2 2800 \N +106463 2025-07-01 13:06:01.728107+00 2025-07-01 13:06:01.728118+00 f t TOTAL 0.00 3 2800 \N +106464 2025-07-01 13:06:01.729605+00 2025-07-01 13:06:01.729612+00 f t ADELANTO 0.00 4 2800 \N +106573 2025-07-01 13:43:12.874024+00 2025-07-01 13:43:12.874035+00 f t SUBTOTAL 42000.00 1 2804 \N +106574 2025-07-01 13:43:12.876073+00 2025-07-01 13:43:12.876084+00 f t DESCUENTO 0.00 2 2804 \N +106575 2025-07-01 13:43:12.877494+00 2025-07-01 13:43:12.877503+00 f t TOTAL 42000.00 3 2804 \N +106576 2025-07-01 13:43:12.878792+00 2025-07-01 13:43:12.8788+00 f t ADELANTO 9500.00 4 2804 \N +109973 2025-07-03 02:20:31.345419+00 2025-07-03 02:20:31.345431+00 f t SUBTOTAL 62000.00 1 2889 \N +109974 2025-07-03 02:20:31.347517+00 2025-07-03 02:20:31.347526+00 f t DESCUENTO 0.00 2 2889 \N +109975 2025-07-03 02:20:31.348921+00 2025-07-03 02:20:31.348929+00 f t TOTAL 62000.00 3 2889 \N +109976 2025-07-03 02:20:31.350063+00 2025-07-03 02:20:31.350069+00 f t ADELANTO 12000.00 4 2889 \N +107473 2025-07-01 18:09:33.274073+00 2025-07-01 18:09:33.274082+00 f t SUBTOTAL 50000.00 1 2825 \N +107474 2025-07-01 18:09:33.275883+00 2025-07-01 18:09:33.27589+00 f t DESCUENTO 0.00 2 2825 \N +107475 2025-07-01 18:09:33.277158+00 2025-07-01 18:09:33.277165+00 f t TOTAL 50000.00 3 2825 \N +107476 2025-07-01 18:09:33.278329+00 2025-07-01 18:09:33.278335+00 f t ADELANTO 10000.00 4 2825 \N +112717 2025-07-04 13:16:52.128785+00 2025-07-04 13:16:52.128799+00 f t SUBTOTAL 0.00 1 2972 \N +112718 2025-07-04 13:16:52.130649+00 2025-07-04 13:16:52.130658+00 f t DESCUENTO 0.00 2 2972 \N +112719 2025-07-04 13:16:52.132074+00 2025-07-04 13:16:52.132082+00 f t TOTAL 0.00 3 2972 \N +112720 2025-07-04 13:16:52.133484+00 2025-07-04 13:16:52.133492+00 f t ADELANTO 0.00 4 2972 \N +107653 2025-07-01 20:53:19.471875+00 2025-07-01 20:53:19.471885+00 f t SUBTOTAL 27500.00 1 2828 \N +107654 2025-07-01 20:53:19.473558+00 2025-07-01 20:53:19.473566+00 f t DESCUENTO 0.00 2 2828 \N +107655 2025-07-01 20:53:19.474924+00 2025-07-01 20:53:19.474932+00 f t TOTAL 27500.00 3 2828 \N +107656 2025-07-01 20:53:19.476351+00 2025-07-01 20:53:19.476357+00 f t ADELANTO 27500.00 4 2828 \N +110221 2025-07-03 13:12:21.979431+00 2025-07-03 13:12:21.979441+00 f t SUBTOTAL 0.00 1 2898 \N +110222 2025-07-03 13:12:21.981546+00 2025-07-03 13:12:21.981553+00 f t DESCUENTO 0.00 2 2898 \N +110223 2025-07-03 13:12:21.982804+00 2025-07-03 13:12:21.982812+00 f t TOTAL 0.00 3 2898 \N +110224 2025-07-03 13:12:21.984063+00 2025-07-03 13:12:21.984069+00 f t ADELANTO 0.00 4 2898 \N +106637 2025-07-01 14:01:46.302489+00 2025-07-01 14:01:46.302504+00 f t SUBTOTAL 0.00 1 2807 \N +106638 2025-07-01 14:01:46.304858+00 2025-07-01 14:01:46.304871+00 f t DESCUENTO 0.00 2 2807 \N +106639 2025-07-01 14:01:46.306507+00 2025-07-01 14:01:46.306517+00 f t TOTAL 0.00 3 2807 \N +106640 2025-07-01 14:01:46.308069+00 2025-07-01 14:01:46.30808+00 f t ADELANTO 0.00 4 2807 \N +107837 2025-07-01 22:10:51.710887+00 2025-07-01 22:10:51.7109+00 f t SUBTOTAL 42000.00 1 2831 \N +107838 2025-07-01 22:10:51.713179+00 2025-07-01 22:10:51.713192+00 f t DESCUENTO 0.00 2 2831 \N +107839 2025-07-01 22:10:51.714833+00 2025-07-01 22:10:51.714844+00 f t TOTAL 42000.00 3 2831 \N +107840 2025-07-01 22:10:51.716379+00 2025-07-01 22:10:51.716388+00 f t ADELANTO 9500.00 4 2831 \N +107949 2025-07-01 23:13:44.171896+00 2025-07-01 23:13:44.171905+00 f t SUBTOTAL 82700.00 1 2835 \N +107950 2025-07-01 23:13:44.173405+00 2025-07-01 23:13:44.173412+00 f t DESCUENTO 0.00 2 2835 \N +107951 2025-07-01 23:13:44.174586+00 2025-07-01 23:13:44.174592+00 f t TOTAL 82700.00 3 2835 \N +107952 2025-07-01 23:13:44.175811+00 2025-07-01 23:13:44.175819+00 f t ADELANTO 44700.00 4 2835 \N +106661 2025-07-01 14:02:36.013127+00 2025-07-01 14:02:36.013137+00 f t SUBTOTAL 72000.00 1 2806 \N +106662 2025-07-01 14:02:36.015106+00 2025-07-01 14:02:36.015118+00 f t DESCUENTO 0.00 2 2806 \N +106663 2025-07-01 14:02:36.016661+00 2025-07-01 14:02:36.016668+00 f t TOTAL 72000.00 3 2806 \N +106664 2025-07-01 14:02:36.018109+00 2025-07-01 14:02:36.018117+00 f t ADELANTO 19000.00 4 2806 \N +107985 2025-07-01 23:51:32.541689+00 2025-07-01 23:51:32.541702+00 f t SUBTOTAL 42000.00 1 2836 \N +107986 2025-07-01 23:51:32.543976+00 2025-07-01 23:51:32.54399+00 f t DESCUENTO 0.00 2 2836 \N +107987 2025-07-01 23:51:32.546897+00 2025-07-01 23:51:32.546909+00 f t TOTAL 42000.00 3 2836 \N +107988 2025-07-01 23:51:32.54857+00 2025-07-01 23:51:32.548581+00 f t ADELANTO 9500.00 4 2836 \N +106677 2025-07-01 14:12:38.421707+00 2025-07-01 14:12:38.421721+00 f t SUBTOTAL 0.00 1 2808 \N +106678 2025-07-01 14:12:38.424384+00 2025-07-01 14:12:38.424397+00 f t DESCUENTO 0.00 2 2808 \N +106679 2025-07-01 14:12:38.426162+00 2025-07-01 14:12:38.426174+00 f t TOTAL 0.00 3 2808 \N +106680 2025-07-01 14:12:38.427618+00 2025-07-01 14:12:38.427625+00 f t ADELANTO 0.00 4 2808 \N +110449 2025-07-03 15:23:17.402639+00 2025-07-03 15:23:17.402653+00 f t SUBTOTAL 0.00 1 2906 \N +110450 2025-07-03 15:23:17.4041+00 2025-07-03 15:23:17.404106+00 f t DESCUENTO 0.00 2 2906 \N +110451 2025-07-03 15:23:17.405235+00 2025-07-03 15:23:17.405241+00 f t TOTAL 0.00 3 2906 \N +110452 2025-07-03 15:23:17.406362+00 2025-07-03 15:23:17.406369+00 f t ADELANTO 0.00 4 2906 \N +110488 2025-07-03 15:57:48.330664+00 2025-07-03 15:57:48.330672+00 f t ADELANTO 0.00 4 2909 \N +108269 2025-07-02 01:58:30.035455+00 2025-07-02 01:58:30.035463+00 f t SUBTOTAL 0.00 1 2843 \N +108270 2025-07-02 01:58:30.036863+00 2025-07-02 01:58:30.036869+00 f t DESCUENTO 0.00 2 2843 \N +108271 2025-07-02 01:58:30.037763+00 2025-07-02 01:58:30.037768+00 f t TOTAL 0.00 3 2843 \N +108272 2025-07-02 01:58:30.03868+00 2025-07-02 01:58:30.038688+00 f t ADELANTO 0.00 4 2843 \N +106757 2025-07-01 14:14:35.695537+00 2025-07-01 14:14:35.695549+00 f t SUBTOTAL 64500.00 1 2809 \N +106758 2025-07-01 14:14:35.697036+00 2025-07-01 14:14:35.697043+00 f t DESCUENTO 0.00 2 2809 \N +106759 2025-07-01 14:14:35.698174+00 2025-07-01 14:14:35.698179+00 f t TOTAL 64500.00 3 2809 \N +106760 2025-07-01 14:14:35.699029+00 2025-07-01 14:14:35.699034+00 f t ADELANTO 17000.00 4 2809 \N +106793 2025-07-01 14:37:33.100098+00 2025-07-01 14:37:33.100108+00 f t SUBTOTAL 82700.00 1 2810 \N +106794 2025-07-01 14:37:33.101568+00 2025-07-01 14:37:33.101575+00 f t DESCUENTO 0.00 2 2810 \N +106795 2025-07-01 14:37:33.10265+00 2025-07-01 14:37:33.102655+00 f t TOTAL 82700.00 3 2810 \N +106796 2025-07-01 14:37:33.103602+00 2025-07-01 14:37:33.103607+00 f t ADELANTO 44700.00 4 2810 \N +108769 2025-07-02 11:21:46.400291+00 2025-07-02 11:21:46.4003+00 f t SUBTOTAL 50000.00 1 2853 \N +108770 2025-07-02 11:21:46.401949+00 2025-07-02 11:21:46.401956+00 f t DESCUENTO 0.00 2 2853 \N +108771 2025-07-02 11:21:46.403052+00 2025-07-02 11:21:46.40306+00 f t TOTAL 50000.00 3 2853 \N +108772 2025-07-02 11:21:46.404381+00 2025-07-02 11:21:46.404388+00 f t ADELANTO 10000.00 4 2853 \N +106809 2025-07-01 15:02:46.056814+00 2025-07-01 15:02:46.056824+00 f t SUBTOTAL 0.00 1 2811 \N +106810 2025-07-01 15:02:46.058805+00 2025-07-01 15:02:46.058812+00 f t DESCUENTO 0.00 2 2811 \N +106811 2025-07-01 15:02:46.059927+00 2025-07-01 15:02:46.059933+00 f t TOTAL 0.00 3 2811 \N +106812 2025-07-01 15:02:46.061281+00 2025-07-01 15:02:46.061287+00 f t ADELANTO 0.00 4 2811 \N +108861 2025-07-02 13:09:00.024572+00 2025-07-02 13:09:00.024582+00 f t SUBTOTAL 0.00 1 2858 \N +108862 2025-07-02 13:09:00.025912+00 2025-07-02 13:09:00.02592+00 f t DESCUENTO 0.00 2 2858 \N +108863 2025-07-02 13:09:00.027018+00 2025-07-02 13:09:00.027024+00 f t TOTAL 0.00 3 2858 \N +108864 2025-07-02 13:09:00.028112+00 2025-07-02 13:09:00.028118+00 f t ADELANTO 0.00 4 2858 \N +108961 2025-07-02 16:02:38.124532+00 2025-07-02 16:02:38.12454+00 f t SUBTOTAL 42000.00 1 2863 \N +108962 2025-07-02 16:02:38.126299+00 2025-07-02 16:02:38.126306+00 f t DESCUENTO 0.00 2 2863 \N +108963 2025-07-02 16:02:38.12768+00 2025-07-02 16:02:38.127686+00 f t TOTAL 42000.00 3 2863 \N +108964 2025-07-02 16:02:38.1289+00 2025-07-02 16:02:38.128906+00 f t ADELANTO 9500.00 4 2863 \N +109081 2025-07-02 17:33:13.590833+00 2025-07-02 17:33:13.590844+00 f t SUBTOTAL 0.00 1 2866 \N +109082 2025-07-02 17:33:13.592466+00 2025-07-02 17:33:13.592475+00 f t DESCUENTO 0.00 2 2866 \N +109083 2025-07-02 17:33:13.593919+00 2025-07-02 17:33:13.593925+00 f t TOTAL 0.00 3 2866 \N +109084 2025-07-02 17:33:13.595348+00 2025-07-02 17:33:13.595354+00 f t ADELANTO 0.00 4 2866 \N +109981 2025-07-03 02:26:49.945086+00 2025-07-03 02:26:49.945095+00 f t SUBTOTAL 0.00 1 2890 \N +109982 2025-07-03 02:26:49.946358+00 2025-07-03 02:26:49.946366+00 f t DESCUENTO 0.00 2 2890 \N +109983 2025-07-03 02:26:49.947416+00 2025-07-03 02:26:49.947426+00 f t TOTAL 0.00 3 2890 \N +109984 2025-07-03 02:26:49.948425+00 2025-07-03 02:26:49.94843+00 f t ADELANTO 0.00 4 2890 \N +107481 2025-07-01 19:21:00.835406+00 2025-07-01 19:21:00.835415+00 f t SUBTOTAL 0.00 1 2826 \N +107482 2025-07-01 19:21:00.837243+00 2025-07-01 19:21:00.837251+00 f t DESCUENTO 0.00 2 2826 \N +107483 2025-07-01 19:21:00.838629+00 2025-07-01 19:21:00.838635+00 f t TOTAL 0.00 3 2826 \N +107484 2025-07-01 19:21:00.83992+00 2025-07-01 19:21:00.839926+00 f t ADELANTO 0.00 4 2826 \N +115557 2025-07-05 19:12:24.284456+00 2025-07-05 19:12:24.284464+00 f t SUBTOTAL 0.00 1 3045 \N +115558 2025-07-05 19:12:24.28628+00 2025-07-05 19:12:24.286287+00 f t DESCUENTO 0.00 2 3045 \N +115559 2025-07-05 19:12:24.287488+00 2025-07-05 19:12:24.287496+00 f t TOTAL 0.00 3 3045 \N +115560 2025-07-05 19:12:24.288806+00 2025-07-05 19:12:24.288811+00 f t ADELANTO 0.00 4 3045 \N +115609 2025-07-05 19:14:21.427+00 2025-07-05 19:14:21.427009+00 f t SUBTOTAL 0.00 1 3047 \N +106917 2025-07-01 15:07:06.446426+00 2025-07-01 15:07:06.446435+00 f t SUBTOTAL 82700.00 1 2812 \N +106918 2025-07-01 15:07:06.448528+00 2025-07-01 15:07:06.448537+00 f t DESCUENTO 0.00 2 2812 \N +106919 2025-07-01 15:07:06.450029+00 2025-07-01 15:07:06.450037+00 f t TOTAL 82700.00 3 2812 \N +106920 2025-07-01 15:07:06.452305+00 2025-07-01 15:07:06.452313+00 f t ADELANTO 44700.00 4 2812 \N +110385 2025-07-03 13:45:28.969178+00 2025-07-03 13:45:28.969187+00 f t SUBTOTAL 0.00 1 2903 \N +106953 2025-07-01 15:08:37.012045+00 2025-07-01 15:08:37.012059+00 f t SUBTOTAL 49500.00 1 2813 \N +106954 2025-07-01 15:08:37.014036+00 2025-07-01 15:08:37.014046+00 f t DESCUENTO 0.00 2 2813 \N +106955 2025-07-01 15:08:37.015484+00 2025-07-01 15:08:37.015493+00 f t TOTAL 49500.00 3 2813 \N +106956 2025-07-01 15:08:37.016836+00 2025-07-01 15:08:37.016844+00 f t ADELANTO 11500.00 4 2813 \N +110386 2025-07-03 13:45:28.971178+00 2025-07-03 13:45:28.971186+00 f t DESCUENTO 0.00 2 2903 \N +110387 2025-07-03 13:45:28.972251+00 2025-07-03 13:45:28.972257+00 f t TOTAL 0.00 3 2903 \N +110388 2025-07-03 13:45:28.973354+00 2025-07-03 13:45:28.973359+00 f t ADELANTO 0.00 4 2903 \N +106961 2025-07-01 15:14:56.192926+00 2025-07-01 15:14:56.192936+00 f t SUBTOTAL 0.00 1 2814 \N +106962 2025-07-01 15:14:56.194601+00 2025-07-01 15:14:56.194609+00 f t DESCUENTO 0.00 2 2814 \N +106963 2025-07-01 15:14:56.196068+00 2025-07-01 15:14:56.196077+00 f t TOTAL 0.00 3 2814 \N +106964 2025-07-01 15:14:56.197405+00 2025-07-01 15:14:56.197411+00 f t ADELANTO 0.00 4 2814 \N +110457 2025-07-03 15:24:06.442892+00 2025-07-03 15:24:06.442902+00 f t SUBTOTAL 0.00 1 2907 \N +110458 2025-07-03 15:24:06.444622+00 2025-07-03 15:24:06.44463+00 f t DESCUENTO 0.00 2 2907 \N +110459 2025-07-03 15:24:06.446401+00 2025-07-03 15:24:06.446411+00 f t TOTAL 0.00 3 2907 \N +110460 2025-07-03 15:24:06.448376+00 2025-07-03 15:24:06.448388+00 f t ADELANTO 0.00 4 2907 \N +110545 2025-07-03 16:00:40.865699+00 2025-07-03 16:00:40.865707+00 f t SUBTOTAL 50000.00 1 2910 \N +106989 2025-07-01 15:31:58.595062+00 2025-07-01 15:31:58.595076+00 f t SUBTOTAL 64500.00 1 2815 \N +106990 2025-07-01 15:31:58.597276+00 2025-07-01 15:31:58.597287+00 f t DESCUENTO 0.00 2 2815 \N +106991 2025-07-01 15:31:58.599297+00 2025-07-01 15:31:58.599308+00 f t TOTAL 64500.00 3 2815 \N +106992 2025-07-01 15:31:58.600888+00 2025-07-01 15:31:58.600897+00 f t ADELANTO 17000.00 4 2815 \N +110546 2025-07-03 16:00:40.867326+00 2025-07-03 16:00:40.867332+00 f t DESCUENTO 0.00 2 2910 \N +110547 2025-07-03 16:00:40.868626+00 2025-07-03 16:00:40.868634+00 f t TOTAL 50000.00 3 2910 \N +110548 2025-07-03 16:00:40.869917+00 2025-07-03 16:00:40.869922+00 f t ADELANTO 10000.00 4 2910 \N +110649 2025-07-03 16:12:27.28384+00 2025-07-03 16:12:27.283847+00 f t SUBTOTAL 0.00 1 2914 \N +110650 2025-07-03 16:12:27.285004+00 2025-07-03 16:12:27.285009+00 f t DESCUENTO 0.00 2 2914 \N +110651 2025-07-03 16:12:27.285893+00 2025-07-03 16:12:27.285898+00 f t TOTAL 0.00 3 2914 \N +110652 2025-07-03 16:12:27.286672+00 2025-07-03 16:12:27.286679+00 f t ADELANTO 0.00 4 2914 \N +107025 2025-07-01 15:35:08.602813+00 2025-07-01 15:35:08.602827+00 f t SUBTOTAL 62000.00 1 2816 \N +107026 2025-07-01 15:35:08.60513+00 2025-07-01 15:35:08.605139+00 f t DESCUENTO 0.00 2 2816 \N +107027 2025-07-01 15:35:08.607402+00 2025-07-01 15:35:08.607415+00 f t TOTAL 62000.00 3 2816 \N +107028 2025-07-01 15:35:08.609529+00 2025-07-01 15:35:08.609541+00 f t ADELANTO 12000.00 4 2816 \N +107033 2025-07-01 15:59:05.817491+00 2025-07-01 15:59:05.817502+00 f t SUBTOTAL 0.00 1 2817 \N +107034 2025-07-01 15:59:05.819454+00 2025-07-01 15:59:05.819468+00 f t DESCUENTO 0.00 2 2817 \N +107035 2025-07-01 15:59:05.821187+00 2025-07-01 15:59:05.821198+00 f t TOTAL 0.00 3 2817 \N +107036 2025-07-01 15:59:05.822933+00 2025-07-01 15:59:05.822941+00 f t ADELANTO 0.00 4 2817 \N +107069 2025-07-01 16:08:06.066091+00 2025-07-01 16:08:06.066101+00 f t SUBTOTAL 64500.00 1 2818 \N +107070 2025-07-01 16:08:06.068076+00 2025-07-01 16:08:06.068088+00 f t DESCUENTO 0.00 2 2818 \N +107071 2025-07-01 16:08:06.069633+00 2025-07-01 16:08:06.069641+00 f t TOTAL 64500.00 3 2818 \N +107072 2025-07-01 16:08:06.07108+00 2025-07-01 16:08:06.071088+00 f t ADELANTO 17000.00 4 2818 \N +111037 2025-07-03 17:50:46.938395+00 2025-07-03 17:50:46.938404+00 f t SUBTOTAL 70000.00 1 2923 \N +111038 2025-07-03 17:50:46.939984+00 2025-07-03 17:50:46.939991+00 f t DESCUENTO 0.00 2 2923 \N +111039 2025-07-03 17:50:46.941406+00 2025-07-03 17:50:46.941412+00 f t TOTAL 70000.00 3 2923 \N +111040 2025-07-03 17:50:46.942715+00 2025-07-03 17:50:46.942721+00 f t ADELANTO 15000.00 4 2923 \N +111073 2025-07-03 17:57:28.407792+00 2025-07-03 17:57:28.407813+00 f t SUBTOTAL 64500.00 1 2924 \N +111074 2025-07-03 17:57:28.409944+00 2025-07-03 17:57:28.409954+00 f t DESCUENTO 0.00 2 2924 \N +111075 2025-07-03 17:57:28.411387+00 2025-07-03 17:57:28.411395+00 f t TOTAL 64500.00 3 2924 \N +111076 2025-07-03 17:57:28.412576+00 2025-07-03 17:57:28.412581+00 f t ADELANTO 17000.00 4 2924 \N +108869 2025-07-02 13:15:17.811475+00 2025-07-02 13:15:17.811483+00 f t SUBTOTAL 0.00 1 2859 \N +107133 2025-07-01 16:39:34.421231+00 2025-07-01 16:39:34.421241+00 f t SUBTOTAL 72000.00 1 2819 \N +107134 2025-07-01 16:39:34.422791+00 2025-07-01 16:39:34.422798+00 f t DESCUENTO 0.00 2 2819 \N +107135 2025-07-01 16:39:34.424102+00 2025-07-01 16:39:34.424109+00 f t TOTAL 72000.00 3 2819 \N +107136 2025-07-01 16:39:34.425166+00 2025-07-01 16:39:34.425171+00 f t ADELANTO 19000.00 4 2819 \N +108870 2025-07-02 13:15:17.812855+00 2025-07-02 13:15:17.812865+00 f t DESCUENTO 0.00 2 2859 \N +108871 2025-07-02 13:15:17.814136+00 2025-07-02 13:15:17.814144+00 f t TOTAL 0.00 3 2859 \N +108872 2025-07-02 13:15:17.815395+00 2025-07-02 13:15:17.815403+00 f t ADELANTO 0.00 4 2859 \N +108969 2025-07-02 17:09:34.089646+00 2025-07-02 17:09:34.08966+00 f t SUBTOTAL 0.00 1 2864 \N +108970 2025-07-02 17:09:34.091463+00 2025-07-02 17:09:34.091473+00 f t DESCUENTO 0.00 2 2864 \N +108971 2025-07-02 17:09:34.092914+00 2025-07-02 17:09:34.092922+00 f t TOTAL 0.00 3 2864 \N +108972 2025-07-02 17:09:34.094225+00 2025-07-02 17:09:34.094233+00 f t ADELANTO 0.00 4 2864 \N +109073 2025-07-02 17:15:49.107837+00 2025-07-02 17:15:49.107849+00 f t SUBTOTAL 170000.00 1 2865 \N +109074 2025-07-02 17:15:49.109569+00 2025-07-02 17:15:49.109576+00 f t DESCUENTO 0.00 2 2865 \N +109075 2025-07-02 17:15:49.110988+00 2025-07-02 17:15:49.110994+00 f t TOTAL 170000.00 3 2865 \N +143102 2025-07-17 11:37:27.550283+00 2025-07-17 11:37:27.550295+00 f t DESCUENTO 0.00 2 3762 \N +143103 2025-07-17 11:37:27.552177+00 2025-07-17 11:37:27.552186+00 f t TOTAL 82700.00 3 3762 \N +143104 2025-07-17 11:37:27.55363+00 2025-07-17 11:37:27.553637+00 f t ADELANTO 44700.00 4 3762 \N +107189 2025-07-01 16:42:07.340763+00 2025-07-01 16:42:07.340772+00 f t SUBTOTAL 0.00 1 2820 \N +107190 2025-07-01 16:42:07.342546+00 2025-07-01 16:42:07.342555+00 f t DESCUENTO 0.00 2 2820 \N +107191 2025-07-01 16:42:07.343774+00 2025-07-01 16:42:07.34378+00 f t TOTAL 0.00 3 2820 \N +107192 2025-07-01 16:42:07.345095+00 2025-07-01 16:42:07.345102+00 f t ADELANTO 0.00 4 2820 \N +110081 2025-07-03 02:59:42.604783+00 2025-07-03 02:59:42.604791+00 f t SUBTOTAL 111000.00 1 2893 \N +110082 2025-07-03 02:59:42.606239+00 2025-07-03 02:59:42.606247+00 f t DESCUENTO 0.00 2 2893 \N +110083 2025-07-03 02:59:42.607303+00 2025-07-03 02:59:42.607308+00 f t TOTAL 111000.00 3 2893 \N +110084 2025-07-03 02:59:42.608354+00 2025-07-03 02:59:42.608361+00 f t ADELANTO 23500.00 4 2893 \N +112805 2025-07-04 14:40:27.491515+00 2025-07-04 14:40:27.491524+00 f t SUBTOTAL 0.00 1 2975 \N +112806 2025-07-04 14:40:27.492666+00 2025-07-04 14:40:27.492672+00 f t DESCUENTO 0.00 2 2975 \N +112807 2025-07-04 14:40:27.493584+00 2025-07-04 14:40:27.493589+00 f t TOTAL 0.00 3 2975 \N +112808 2025-07-04 14:40:27.494435+00 2025-07-04 14:40:27.494441+00 f t ADELANTO 0.00 4 2975 \N +107705 2025-07-01 21:24:22.614007+00 2025-07-01 21:24:22.61402+00 f t SUBTOTAL 42000.00 1 2829 \N +107706 2025-07-01 21:24:22.615912+00 2025-07-01 21:24:22.61592+00 f t DESCUENTO 0.00 2 2829 \N +107707 2025-07-01 21:24:22.617195+00 2025-07-01 21:24:22.617201+00 f t TOTAL 42000.00 3 2829 \N +107708 2025-07-01 21:24:22.618578+00 2025-07-01 21:24:22.618585+00 f t ADELANTO 9500.00 4 2829 \N +107745 2025-07-01 21:54:09.757844+00 2025-07-01 21:54:09.757858+00 f t SUBTOTAL 95000.00 1 2830 \N +107746 2025-07-01 21:54:09.759944+00 2025-07-01 21:54:09.759955+00 f t DESCUENTO 0.00 2 2830 \N +107747 2025-07-01 21:54:09.761359+00 2025-07-01 21:54:09.761368+00 f t TOTAL 95000.00 3 2830 \N +107748 2025-07-01 21:54:09.762727+00 2025-07-01 21:54:09.762734+00 f t ADELANTO 10000.00 4 2830 \N +107225 2025-07-01 17:05:22.451088+00 2025-07-01 17:05:22.451101+00 f t SUBTOTAL 49500.00 1 2821 \N +107226 2025-07-01 17:05:22.453195+00 2025-07-01 17:05:22.453207+00 f t DESCUENTO 0.00 2 2821 \N +107227 2025-07-01 17:05:22.454855+00 2025-07-01 17:05:22.454865+00 f t TOTAL 49500.00 3 2821 \N +107228 2025-07-01 17:05:22.456234+00 2025-07-01 17:05:22.456243+00 f t ADELANTO 11500.00 4 2821 \N +110293 2025-07-03 13:38:58.714646+00 2025-07-03 13:38:58.714656+00 f t SUBTOTAL 0.00 1 2900 \N +110294 2025-07-03 13:38:58.715998+00 2025-07-03 13:38:58.716006+00 f t DESCUENTO 0.00 2 2900 \N +110295 2025-07-03 13:38:58.717127+00 2025-07-03 13:38:58.717134+00 f t TOTAL 0.00 3 2900 \N +110296 2025-07-03 13:38:58.718138+00 2025-07-03 13:38:58.718143+00 f t ADELANTO 0.00 4 2900 \N +107921 2025-07-01 23:09:30.514511+00 2025-07-01 23:09:30.514524+00 f t SUBTOTAL 82700.00 1 2834 \N +107922 2025-07-01 23:09:30.516737+00 2025-07-01 23:09:30.516748+00 f t DESCUENTO 0.00 2 2834 \N +107923 2025-07-01 23:09:30.518263+00 2025-07-01 23:09:30.518272+00 f t TOTAL 82700.00 3 2834 \N +107924 2025-07-01 23:09:30.519774+00 2025-07-01 23:09:30.519783+00 f t ADELANTO 44700.00 4 2834 \N +107257 2025-07-01 17:07:39.869862+00 2025-07-01 17:07:39.869871+00 f t SUBTOTAL 42000.00 1 2822 \N +107258 2025-07-01 17:07:39.871607+00 2025-07-01 17:07:39.871614+00 f t DESCUENTO 0.00 2 2822 \N +107259 2025-07-01 17:07:39.8729+00 2025-07-01 17:07:39.872906+00 f t TOTAL 42000.00 3 2822 \N +107260 2025-07-01 17:07:39.873951+00 2025-07-01 17:07:39.873959+00 f t ADELANTO 9500.00 4 2822 \N +108065 2025-07-02 00:14:31.198364+00 2025-07-02 00:14:31.198373+00 f t SUBTOTAL 82700.00 1 2838 \N +108066 2025-07-02 00:14:31.199967+00 2025-07-02 00:14:31.199973+00 f t DESCUENTO 0.00 2 2838 \N +108067 2025-07-02 00:14:31.201125+00 2025-07-02 00:14:31.201131+00 f t TOTAL 82700.00 3 2838 \N +108068 2025-07-02 00:14:31.20214+00 2025-07-02 00:14:31.202145+00 f t ADELANTO 44700.00 4 2838 \N +110501 2025-07-03 15:59:22.431818+00 2025-07-03 15:59:22.431827+00 f t SUBTOTAL 0.00 1 2911 \N +110502 2025-07-03 15:59:22.433322+00 2025-07-03 15:59:22.433335+00 f t DESCUENTO 0.00 2 2911 \N +110503 2025-07-03 15:59:22.43499+00 2025-07-03 15:59:22.434997+00 f t TOTAL 0.00 3 2911 \N +110504 2025-07-03 15:59:22.436399+00 2025-07-03 15:59:22.436406+00 f t ADELANTO 0.00 4 2911 \N +108305 2025-07-02 02:10:22.801076+00 2025-07-02 02:10:22.801085+00 f t SUBTOTAL 0.00 1 2844 \N +108306 2025-07-02 02:10:22.80369+00 2025-07-02 02:10:22.803699+00 f t DESCUENTO 0.00 2 2844 \N +108307 2025-07-02 02:10:22.80509+00 2025-07-02 02:10:22.805097+00 f t TOTAL 0.00 3 2844 \N +108308 2025-07-02 02:10:22.806155+00 2025-07-02 02:10:22.806161+00 f t ADELANTO 0.00 4 2844 \N +107301 2025-07-01 17:43:27.762744+00 2025-07-01 17:43:27.762753+00 f t SUBTOTAL 42000.00 1 2823 \N +107302 2025-07-01 17:43:27.764288+00 2025-07-01 17:43:27.764295+00 f t DESCUENTO 0.00 2 2823 \N +107303 2025-07-01 17:43:27.765319+00 2025-07-01 17:43:27.765325+00 f t TOTAL 42000.00 3 2823 \N +107304 2025-07-01 17:43:27.766465+00 2025-07-01 17:43:27.76647+00 f t ADELANTO 9500.00 4 2823 \N +108385 2025-07-02 02:26:16.631315+00 2025-07-02 02:26:16.631324+00 f t SUBTOTAL 85000.00 1 2846 \N +108386 2025-07-02 02:26:16.63296+00 2025-07-02 02:26:16.632968+00 f t DESCUENTO 0.00 2 2846 \N +108387 2025-07-02 02:26:16.634349+00 2025-07-02 02:26:16.634356+00 f t TOTAL 85000.00 3 2846 \N +108388 2025-07-02 02:26:16.635603+00 2025-07-02 02:26:16.635611+00 f t ADELANTO 22000.00 4 2846 \N +108413 2025-07-02 02:55:35.112703+00 2025-07-02 02:55:35.112715+00 f t SUBTOTAL 64500.00 1 2847 \N +108414 2025-07-02 02:55:35.114554+00 2025-07-02 02:55:35.114564+00 f t DESCUENTO 0.00 2 2847 \N +108415 2025-07-02 02:55:35.11588+00 2025-07-02 02:55:35.115889+00 f t TOTAL 64500.00 3 2847 \N +108416 2025-07-02 02:55:35.117129+00 2025-07-02 02:55:35.117137+00 f t ADELANTO 17000.00 4 2847 \N +108805 2025-07-02 11:26:03.741615+00 2025-07-02 11:26:03.741624+00 f t SUBTOTAL 49500.00 1 2854 \N +108806 2025-07-02 11:26:03.74355+00 2025-07-02 11:26:03.743557+00 f t DESCUENTO 0.00 2 2854 \N +108807 2025-07-02 11:26:03.745102+00 2025-07-02 11:26:03.745109+00 f t TOTAL 49500.00 3 2854 \N +108808 2025-07-02 11:26:03.746474+00 2025-07-02 11:26:03.746481+00 f t ADELANTO 11500.00 4 2854 \N +108833 2025-07-02 12:43:39.464863+00 2025-07-02 12:43:39.464872+00 f t SUBTOTAL 42000.00 1 2855 \N +108834 2025-07-02 12:43:39.466432+00 2025-07-02 12:43:39.466437+00 f t DESCUENTO 0.00 2 2855 \N +108835 2025-07-02 12:43:39.467432+00 2025-07-02 12:43:39.467438+00 f t TOTAL 42000.00 3 2855 \N +108836 2025-07-02 12:43:39.468438+00 2025-07-02 12:43:39.468445+00 f t ADELANTO 9500.00 4 2855 \N +108877 2025-07-02 13:56:32.237397+00 2025-07-02 13:56:32.23741+00 f t SUBTOTAL 0.00 1 2860 \N +108878 2025-07-02 13:56:32.239285+00 2025-07-02 13:56:32.239296+00 f t DESCUENTO 0.00 2 2860 \N +108879 2025-07-02 13:56:32.240775+00 2025-07-02 13:56:32.240782+00 f t TOTAL 0.00 3 2860 \N +108880 2025-07-02 13:56:32.241954+00 2025-07-02 13:56:32.241962+00 f t ADELANTO 0.00 4 2860 \N +109076 2025-07-02 17:15:49.111987+00 2025-07-02 17:15:49.111992+00 f t ADELANTO 25000.00 4 2865 \N +109113 2025-07-02 18:03:18.3969+00 2025-07-02 18:03:18.396909+00 f t SUBTOTAL 27500.00 1 2867 \N +109114 2025-07-02 18:03:18.398549+00 2025-07-02 18:03:18.398557+00 f t DESCUENTO 0.00 2 2867 \N +109115 2025-07-02 18:03:18.40004+00 2025-07-02 18:03:18.400047+00 f t TOTAL 27500.00 3 2867 \N +109116 2025-07-02 18:03:18.401421+00 2025-07-02 18:03:18.401428+00 f t ADELANTO 27500.00 4 2867 \N +121137 2025-07-07 23:06:55.782101+00 2025-07-07 23:06:55.78211+00 f t SUBTOTAL 0.00 1 3211 \N +121138 2025-07-07 23:06:55.784174+00 2025-07-07 23:06:55.784181+00 f t DESCUENTO 0.00 2 3211 \N +121139 2025-07-07 23:06:55.786508+00 2025-07-07 23:06:55.786514+00 f t TOTAL 0.00 3 3211 \N +110089 2025-07-03 03:07:41.151873+00 2025-07-03 03:07:41.151884+00 f t SUBTOTAL 0.00 1 2894 \N +110090 2025-07-03 03:07:41.153179+00 2025-07-03 03:07:41.153185+00 f t DESCUENTO 0.00 2 2894 \N +110091 2025-07-03 03:07:41.154399+00 2025-07-03 03:07:41.154405+00 f t TOTAL 0.00 3 2894 \N +110092 2025-07-03 03:07:41.155545+00 2025-07-03 03:07:41.155553+00 f t ADELANTO 0.00 4 2894 \N +112813 2025-07-04 14:47:38.100905+00 2025-07-04 14:47:38.100915+00 f t SUBTOTAL 0.00 1 2976 \N +112814 2025-07-04 14:47:38.102192+00 2025-07-04 14:47:38.102198+00 f t DESCUENTO 0.00 2 2976 \N +112815 2025-07-04 14:47:38.103453+00 2025-07-04 14:47:38.103459+00 f t TOTAL 0.00 3 2976 \N +112816 2025-07-04 14:47:38.104439+00 2025-07-04 14:47:38.104444+00 f t ADELANTO 0.00 4 2976 \N +112857 2025-07-04 15:52:30.72916+00 2025-07-04 15:52:30.729169+00 f t SUBTOTAL 0.00 1 2979 \N +112858 2025-07-04 15:52:30.730563+00 2025-07-04 15:52:30.730569+00 f t DESCUENTO 0.00 2 2979 \N +112859 2025-07-04 15:52:30.731636+00 2025-07-04 15:52:30.731642+00 f t TOTAL 0.00 3 2979 \N +112860 2025-07-04 15:52:30.732669+00 2025-07-04 15:52:30.732674+00 f t ADELANTO 0.00 4 2979 \N +112893 2025-07-04 16:09:32.909869+00 2025-07-04 16:09:32.90988+00 f t SUBTOTAL 0.00 1 2980 \N +112894 2025-07-04 16:09:32.912251+00 2025-07-04 16:09:32.912263+00 f t DESCUENTO 0.00 2 2980 \N +112895 2025-07-04 16:09:32.914083+00 2025-07-04 16:09:32.91409+00 f t TOTAL 0.00 3 2980 \N +109173 2025-07-02 18:22:54.678022+00 2025-07-02 18:22:54.67803+00 f t SUBTOTAL 183700.00 1 2868 \N +109174 2025-07-02 18:22:54.679508+00 2025-07-02 18:22:54.679514+00 f t DESCUENTO 0.00 2 2868 \N +109175 2025-07-02 18:22:54.680502+00 2025-07-02 18:22:54.680507+00 f t TOTAL 183700.00 3 2868 \N +109176 2025-07-02 18:22:54.681473+00 2025-07-02 18:22:54.681477+00 f t ADELANTO 90700.00 4 2868 \N +112896 2025-07-04 16:09:32.915363+00 2025-07-04 16:09:32.915369+00 f t ADELANTO 0.00 4 2980 \N +110301 2025-07-03 13:40:24.767757+00 2025-07-03 13:40:24.767765+00 f t SUBTOTAL 0.00 1 2901 \N +110302 2025-07-03 13:40:24.769133+00 2025-07-03 13:40:24.76914+00 f t DESCUENTO 0.00 2 2901 \N +110303 2025-07-03 13:40:24.770422+00 2025-07-03 13:40:24.770428+00 f t TOTAL 0.00 3 2901 \N +110304 2025-07-03 13:40:24.771519+00 2025-07-03 13:40:24.771525+00 f t ADELANTO 0.00 4 2901 \N +113097 2025-07-04 17:01:17.142716+00 2025-07-04 17:01:17.142728+00 f t SUBTOTAL 70000.00 1 2983 \N +113098 2025-07-04 17:01:17.144778+00 2025-07-04 17:01:17.144788+00 f t DESCUENTO 0.00 2 2983 \N +113099 2025-07-04 17:01:17.146408+00 2025-07-04 17:01:17.146415+00 f t TOTAL 70000.00 3 2983 \N +113100 2025-07-04 17:01:17.147771+00 2025-07-04 17:01:17.147777+00 f t ADELANTO 15000.00 4 2983 \N +113165 2025-07-04 17:21:24.572513+00 2025-07-04 17:21:24.572523+00 f t SUBTOTAL 42000.00 1 2986 \N +113166 2025-07-04 17:21:24.574111+00 2025-07-04 17:21:24.574118+00 f t DESCUENTO 0.00 2 2986 \N +113167 2025-07-04 17:21:24.575568+00 2025-07-04 17:21:24.575578+00 f t TOTAL 42000.00 3 2986 \N +113168 2025-07-04 17:21:24.576945+00 2025-07-04 17:21:24.576951+00 f t ADELANTO 9500.00 4 2986 \N +113201 2025-07-04 18:17:26.797949+00 2025-07-04 18:17:26.797963+00 f t SUBTOTAL 0.00 1 2988 \N +113202 2025-07-04 18:17:26.799916+00 2025-07-04 18:17:26.799927+00 f t DESCUENTO 0.00 2 2988 \N +113203 2025-07-04 18:17:26.801585+00 2025-07-04 18:17:26.801595+00 f t TOTAL 0.00 3 2988 \N +109221 2025-07-02 18:49:26.473214+00 2025-07-02 18:49:26.473223+00 f t SUBTOTAL 95000.00 1 2869 \N +109222 2025-07-02 18:49:26.475207+00 2025-07-02 18:49:26.475218+00 f t DESCUENTO 0.00 2 2869 \N +109223 2025-07-02 18:49:26.476775+00 2025-07-02 18:49:26.476783+00 f t TOTAL 95000.00 3 2869 \N +109224 2025-07-02 18:49:26.478349+00 2025-07-02 18:49:26.478358+00 f t ADELANTO 10000.00 4 2869 \N +113204 2025-07-04 18:17:26.803036+00 2025-07-04 18:17:26.803044+00 f t ADELANTO 0.00 4 2988 \N +110561 2025-07-03 16:09:31.206777+00 2025-07-03 16:09:31.206788+00 f t SUBTOTAL 0.00 1 2913 \N +110562 2025-07-03 16:09:31.208528+00 2025-07-03 16:09:31.208536+00 f t DESCUENTO 0.00 2 2913 \N +110563 2025-07-03 16:09:31.209689+00 2025-07-03 16:09:31.209695+00 f t TOTAL 0.00 3 2913 \N +110564 2025-07-03 16:09:31.210576+00 2025-07-03 16:09:31.210581+00 f t ADELANTO 0.00 4 2913 \N +109241 2025-07-02 19:53:36.714597+00 2025-07-02 19:53:36.714607+00 f t SUBTOTAL 0.00 1 2870 \N +109242 2025-07-02 19:53:36.716291+00 2025-07-02 19:53:36.716297+00 f t DESCUENTO 0.00 2 2870 \N +109243 2025-07-02 19:53:36.717311+00 2025-07-02 19:53:36.717316+00 f t TOTAL 0.00 3 2870 \N +109244 2025-07-02 19:53:36.718728+00 2025-07-02 19:53:36.718733+00 f t ADELANTO 0.00 4 2870 \N +113325 2025-07-04 20:37:17.626722+00 2025-07-04 20:37:17.62673+00 f t SUBTOTAL 27500.00 1 2991 \N +113326 2025-07-04 20:37:17.628364+00 2025-07-04 20:37:17.628372+00 f t DESCUENTO 0.00 2 2991 \N +113327 2025-07-04 20:37:17.629753+00 2025-07-04 20:37:17.629759+00 f t TOTAL 27500.00 3 2991 \N +109249 2025-07-02 19:54:46.267266+00 2025-07-02 19:54:46.267278+00 f t SUBTOTAL 0.00 1 2871 \N +109250 2025-07-02 19:54:46.268911+00 2025-07-02 19:54:46.268919+00 f t DESCUENTO 0.00 2 2871 \N +109251 2025-07-02 19:54:46.270986+00 2025-07-02 19:54:46.270995+00 f t TOTAL 0.00 3 2871 \N +109252 2025-07-02 19:54:46.272416+00 2025-07-02 19:54:46.272424+00 f t ADELANTO 0.00 4 2871 \N +113328 2025-07-04 20:37:17.630897+00 2025-07-04 20:37:17.630904+00 f t ADELANTO 27500.00 4 2991 \N +110681 2025-07-03 16:21:58.560997+00 2025-07-03 16:21:58.561006+00 f t SUBTOTAL 42000.00 1 2915 \N +110682 2025-07-03 16:21:58.56263+00 2025-07-03 16:21:58.562638+00 f t DESCUENTO 0.00 2 2915 \N +110683 2025-07-03 16:21:58.563855+00 2025-07-03 16:21:58.56386+00 f t TOTAL 42000.00 3 2915 \N +110684 2025-07-03 16:21:58.564988+00 2025-07-03 16:21:58.564995+00 f t ADELANTO 9500.00 4 2915 \N +110769 2025-07-03 16:33:22.952859+00 2025-07-03 16:33:22.95287+00 f t SUBTOTAL 42000.00 1 2916 \N +110770 2025-07-03 16:33:22.954573+00 2025-07-03 16:33:22.954582+00 f t DESCUENTO 0.00 2 2916 \N +110771 2025-07-03 16:33:22.955817+00 2025-07-03 16:33:22.955823+00 f t TOTAL 42000.00 3 2916 \N +110772 2025-07-03 16:33:22.956804+00 2025-07-03 16:33:22.956809+00 f t ADELANTO 9500.00 4 2916 \N +110873 2025-07-03 16:38:50.761301+00 2025-07-03 16:38:50.761309+00 f t SUBTOTAL 27500.00 1 2918 \N +110874 2025-07-03 16:38:50.76302+00 2025-07-03 16:38:50.763027+00 f t DESCUENTO 0.00 2 2918 \N +110875 2025-07-03 16:38:50.764254+00 2025-07-03 16:38:50.764262+00 f t TOTAL 27500.00 3 2918 \N +110876 2025-07-03 16:38:50.766005+00 2025-07-03 16:38:50.76601+00 f t ADELANTO 27500.00 4 2918 \N +109309 2025-07-02 20:00:43.380326+00 2025-07-02 20:00:43.380336+00 f t SUBTOTAL 86500.00 1 2872 \N +109310 2025-07-02 20:00:43.381988+00 2025-07-02 20:00:43.381997+00 f t DESCUENTO 0.00 2 2872 \N +109311 2025-07-02 20:00:43.383274+00 2025-07-02 20:00:43.38328+00 f t TOTAL 86500.00 3 2872 \N +109312 2025-07-02 20:00:43.384328+00 2025-07-02 20:00:43.384333+00 f t ADELANTO 18500.00 4 2872 \N +109349 2025-07-02 20:12:03.720844+00 2025-07-02 20:12:03.720854+00 f t SUBTOTAL 123500.00 1 2873 \N +109350 2025-07-02 20:12:03.722899+00 2025-07-02 20:12:03.72291+00 f t DESCUENTO 0.00 2 2873 \N +109351 2025-07-02 20:12:03.724764+00 2025-07-02 20:12:03.724773+00 f t TOTAL 123500.00 3 2873 \N +109352 2025-07-02 20:12:03.726655+00 2025-07-02 20:12:03.726672+00 f t ADELANTO 26000.00 4 2873 \N +109357 2025-07-02 20:33:23.628242+00 2025-07-02 20:33:23.628253+00 f t SUBTOTAL 0.00 1 2874 \N +109358 2025-07-02 20:33:23.629614+00 2025-07-02 20:33:23.62962+00 f t DESCUENTO 0.00 2 2874 \N +109359 2025-07-02 20:33:23.630754+00 2025-07-02 20:33:23.63076+00 f t TOTAL 0.00 3 2874 \N +109360 2025-07-02 20:33:23.63183+00 2025-07-02 20:33:23.631835+00 f t ADELANTO 0.00 4 2874 \N +121140 2025-07-07 23:06:55.78769+00 2025-07-07 23:06:55.787705+00 f t ADELANTO 0.00 4 3211 \N +130053 2025-07-11 18:17:18.283244+00 2025-07-11 18:17:18.283253+00 f t SUBTOTAL 0.00 1 3425 \N +121201 2025-07-08 00:20:36.94719+00 2025-07-08 00:20:36.947203+00 f t SUBTOTAL 0.00 1 3214 \N +121202 2025-07-08 00:20:36.948949+00 2025-07-08 00:20:36.94896+00 f t DESCUENTO 0.00 2 3214 \N +110045 2025-07-03 02:58:24.736768+00 2025-07-03 02:58:24.736777+00 f t SUBTOTAL 50000.00 1 2892 \N +110046 2025-07-03 02:58:24.738355+00 2025-07-03 02:58:24.738362+00 f t DESCUENTO 0.00 2 2892 \N +110047 2025-07-03 02:58:24.739604+00 2025-07-03 02:58:24.739611+00 f t TOTAL 50000.00 3 2892 \N +110048 2025-07-03 02:58:24.74065+00 2025-07-03 02:58:24.740655+00 f t ADELANTO 10000.00 4 2892 \N +121203 2025-07-08 00:20:36.950493+00 2025-07-08 00:20:36.9505+00 f t TOTAL 0.00 3 3214 \N +121204 2025-07-08 00:20:36.951574+00 2025-07-08 00:20:36.951579+00 f t ADELANTO 0.00 4 3214 \N +118369 2025-07-06 20:44:46.087452+00 2025-07-06 20:44:46.087461+00 f t SUBTOTAL 0.00 1 3125 \N +118370 2025-07-06 20:44:46.089245+00 2025-07-06 20:44:46.089253+00 f t DESCUENTO 0.00 2 3125 \N +110097 2025-07-03 06:33:34.384965+00 2025-07-03 06:33:34.384972+00 f t SUBTOTAL 0.00 1 2895 \N +110098 2025-07-03 06:33:34.387028+00 2025-07-03 06:33:34.387035+00 f t DESCUENTO 0.00 2 2895 \N +110099 2025-07-03 06:33:34.388485+00 2025-07-03 06:33:34.388493+00 f t TOTAL 0.00 3 2895 \N +110100 2025-07-03 06:33:34.389622+00 2025-07-03 06:33:34.389629+00 f t ADELANTO 0.00 4 2895 \N +118371 2025-07-06 20:44:46.090215+00 2025-07-06 20:44:46.090221+00 f t TOTAL 0.00 3 3125 \N +118372 2025-07-06 20:44:46.091481+00 2025-07-06 20:44:46.091487+00 f t ADELANTO 0.00 4 3125 \N +115610 2025-07-05 19:14:21.428605+00 2025-07-05 19:14:21.428613+00 f t DESCUENTO 0.00 2 3047 \N +115611 2025-07-05 19:14:21.43006+00 2025-07-05 19:14:21.430066+00 f t TOTAL 0.00 3 3047 \N +115612 2025-07-05 19:14:21.431232+00 2025-07-05 19:14:21.431238+00 f t ADELANTO 0.00 4 3047 \N +115773 2025-07-05 21:56:59.177624+00 2025-07-05 21:56:59.177632+00 f t SUBTOTAL 0.00 1 3052 \N +115774 2025-07-05 21:56:59.17903+00 2025-07-05 21:56:59.179038+00 f t DESCUENTO 0.00 2 3052 \N +115775 2025-07-05 21:56:59.180253+00 2025-07-05 21:56:59.180261+00 f t TOTAL 0.00 3 3052 \N +115776 2025-07-05 21:56:59.181309+00 2025-07-05 21:56:59.181317+00 f t ADELANTO 0.00 4 3052 \N +118661 2025-07-06 22:07:52.611159+00 2025-07-06 22:07:52.611167+00 f t SUBTOTAL 42000.00 1 3132 \N +118662 2025-07-06 22:07:52.61258+00 2025-07-06 22:07:52.612585+00 f t DESCUENTO 0.00 2 3132 \N +118663 2025-07-06 22:07:52.613642+00 2025-07-06 22:07:52.613648+00 f t TOTAL 42000.00 3 3132 \N +118664 2025-07-06 22:07:52.614714+00 2025-07-06 22:07:52.614719+00 f t ADELANTO 9500.00 4 3132 \N +113105 2025-07-04 17:03:36.728837+00 2025-07-04 17:03:36.728849+00 f t SUBTOTAL 0.00 1 2984 \N +113106 2025-07-04 17:03:36.730149+00 2025-07-04 17:03:36.730157+00 f t DESCUENTO 0.00 2 2984 \N +113107 2025-07-04 17:03:36.731112+00 2025-07-04 17:03:36.731117+00 f t TOTAL 0.00 3 2984 \N +113108 2025-07-04 17:03:36.73197+00 2025-07-04 17:03:36.731975+00 f t ADELANTO 0.00 4 2984 \N +118825 2025-07-07 00:23:13.073093+00 2025-07-07 00:23:13.073103+00 f t SUBTOTAL 0.00 1 3137 \N +118826 2025-07-07 00:23:13.074813+00 2025-07-07 00:23:13.074821+00 f t DESCUENTO 0.00 2 3137 \N +118827 2025-07-07 00:23:13.076085+00 2025-07-07 00:23:13.076092+00 f t TOTAL 0.00 3 3137 \N +118828 2025-07-07 00:23:13.077218+00 2025-07-07 00:23:13.077224+00 f t ADELANTO 0.00 4 3137 \N +119169 2025-07-07 03:30:31.618464+00 2025-07-07 03:30:31.618472+00 f t SUBTOTAL 0.00 1 3151 \N +119170 2025-07-07 03:30:31.619966+00 2025-07-07 03:30:31.619974+00 f t DESCUENTO 0.00 2 3151 \N +119171 2025-07-07 03:30:31.621119+00 2025-07-07 03:30:31.621127+00 f t TOTAL 0.00 3 3151 \N +119172 2025-07-07 03:30:31.622124+00 2025-07-07 03:30:31.622131+00 f t ADELANTO 0.00 4 3151 \N +110881 2025-07-03 16:44:46.742555+00 2025-07-03 16:44:46.742564+00 f t SUBTOTAL 0.00 1 2919 \N +110882 2025-07-03 16:44:46.744061+00 2025-07-03 16:44:46.744068+00 f t DESCUENTO 0.00 2 2919 \N +110883 2025-07-03 16:44:46.745189+00 2025-07-03 16:44:46.745196+00 f t TOTAL 0.00 3 2919 \N +110884 2025-07-03 16:44:46.746212+00 2025-07-03 16:44:46.746217+00 f t ADELANTO 0.00 4 2919 \N +119377 2025-07-07 09:42:38.552964+00 2025-07-07 09:42:38.552973+00 f t SUBTOTAL 114000.00 1 3158 \N +119378 2025-07-07 09:42:38.554464+00 2025-07-07 09:42:38.55447+00 f t DESCUENTO 0.00 2 3158 \N +119379 2025-07-07 09:42:38.555537+00 2025-07-07 09:42:38.555543+00 f t TOTAL 114000.00 3 3158 \N +119380 2025-07-07 09:42:38.556705+00 2025-07-07 09:42:38.55671+00 f t ADELANTO 28500.00 4 3158 \N +113613 2025-07-04 22:54:34.102953+00 2025-07-04 22:54:34.102962+00 f t SUBTOTAL 0.00 1 2996 \N +113614 2025-07-04 22:54:34.104735+00 2025-07-04 22:54:34.104743+00 f t DESCUENTO 0.00 2 2996 \N +113615 2025-07-04 22:54:34.106135+00 2025-07-04 22:54:34.106141+00 f t TOTAL 0.00 3 2996 \N +109589 2025-07-02 20:37:02.284676+00 2025-07-02 20:37:02.284688+00 f t SUBTOTAL 0.00 1 2876 \N +109590 2025-07-02 20:37:02.287435+00 2025-07-02 20:37:02.287448+00 f t DESCUENTO 0.00 2 2876 \N +109591 2025-07-02 20:37:02.28954+00 2025-07-02 20:37:02.289551+00 f t TOTAL 0.00 3 2876 \N +109592 2025-07-02 20:37:02.292071+00 2025-07-02 20:37:02.292079+00 f t ADELANTO 0.00 4 2876 \N +110977 2025-07-03 17:45:12.052927+00 2025-07-03 17:45:12.052935+00 f t SUBTOTAL 49500.00 1 2922 \N +110978 2025-07-03 17:45:12.055036+00 2025-07-03 17:45:12.055045+00 f t DESCUENTO 0.00 2 2922 \N +110979 2025-07-03 17:45:12.056271+00 2025-07-03 17:45:12.056278+00 f t TOTAL 49500.00 3 2922 \N +110980 2025-07-03 17:45:12.057361+00 2025-07-03 17:45:12.057367+00 f t ADELANTO 11500.00 4 2922 \N +113616 2025-07-04 22:54:34.107275+00 2025-07-04 22:54:34.107281+00 f t ADELANTO 0.00 4 2996 \N +113641 2025-07-04 23:09:59.147992+00 2025-07-04 23:09:59.148001+00 f t SUBTOTAL 0.00 1 2997 \N +113642 2025-07-04 23:09:59.150272+00 2025-07-04 23:09:59.150278+00 f t DESCUENTO 0.00 2 2997 \N +113643 2025-07-04 23:09:59.151394+00 2025-07-04 23:09:59.151399+00 f t TOTAL 0.00 3 2997 \N +113644 2025-07-04 23:09:59.152371+00 2025-07-04 23:09:59.152376+00 f t ADELANTO 0.00 4 2997 \N +113749 2025-07-04 23:43:14.06511+00 2025-07-04 23:43:14.065123+00 f t SUBTOTAL 50000.00 1 3000 \N +113750 2025-07-04 23:43:14.066962+00 2025-07-04 23:43:14.06697+00 f t DESCUENTO 0.00 2 3000 \N +113751 2025-07-04 23:43:14.06815+00 2025-07-04 23:43:14.068158+00 f t TOTAL 50000.00 3 3000 \N +113752 2025-07-04 23:43:14.069335+00 2025-07-04 23:43:14.069341+00 f t ADELANTO 10000.00 4 3000 \N +109677 2025-07-02 20:41:54.487775+00 2025-07-02 20:41:54.487783+00 f t SUBTOTAL 27500.00 1 2875 \N +109678 2025-07-02 20:41:54.489512+00 2025-07-02 20:41:54.489519+00 f t DESCUENTO 0.00 2 2875 \N +109679 2025-07-02 20:41:54.490725+00 2025-07-02 20:41:54.490733+00 f t TOTAL 27500.00 3 2875 \N +109680 2025-07-02 20:41:54.49192+00 2025-07-02 20:41:54.491925+00 f t ADELANTO 27500.00 4 2875 \N +117317 2025-07-06 12:50:08.622685+00 2025-07-06 12:50:08.622696+00 f t SUBTOTAL 50000.00 1 3087 \N +117318 2025-07-06 12:50:08.624983+00 2025-07-06 12:50:08.624995+00 f t DESCUENTO 0.00 2 3087 \N +117319 2025-07-06 12:50:08.628007+00 2025-07-06 12:50:08.628019+00 f t TOTAL 50000.00 3 3087 \N +117320 2025-07-06 12:50:08.630371+00 2025-07-06 12:50:08.630383+00 f t ADELANTO 10000.00 4 3087 \N +109721 2025-07-02 20:44:10.929921+00 2025-07-02 20:44:10.92993+00 f t SUBTOTAL 64500.00 1 2877 \N +109722 2025-07-02 20:44:10.931524+00 2025-07-02 20:44:10.931531+00 f t DESCUENTO 0.00 2 2877 \N +109723 2025-07-02 20:44:10.932867+00 2025-07-02 20:44:10.932876+00 f t TOTAL 64500.00 3 2877 \N +109724 2025-07-02 20:44:10.934123+00 2025-07-02 20:44:10.93413+00 f t ADELANTO 17000.00 4 2877 \N +115381 2025-07-05 18:10:42.249808+00 2025-07-05 18:10:42.249815+00 f t SUBTOTAL 42000.00 1 3039 \N +109729 2025-07-02 20:52:45.299939+00 2025-07-02 20:52:45.299948+00 f t SUBTOTAL 0.00 1 2878 \N +109730 2025-07-02 20:52:45.30109+00 2025-07-02 20:52:45.301096+00 f t DESCUENTO 0.00 2 2878 \N +109731 2025-07-02 20:52:45.302136+00 2025-07-02 20:52:45.302141+00 f t TOTAL 0.00 3 2878 \N +109732 2025-07-02 20:52:45.303056+00 2025-07-02 20:52:45.303061+00 f t ADELANTO 0.00 4 2878 \N +109757 2025-07-02 21:06:58.246968+00 2025-07-02 21:06:58.246976+00 f t SUBTOTAL 50000.00 1 2879 \N +109758 2025-07-02 21:06:58.248356+00 2025-07-02 21:06:58.248361+00 f t DESCUENTO 0.00 2 2879 \N +109759 2025-07-02 21:06:58.249351+00 2025-07-02 21:06:58.249356+00 f t TOTAL 50000.00 3 2879 \N +109760 2025-07-02 21:06:58.250383+00 2025-07-02 21:06:58.25039+00 f t ADELANTO 10000.00 4 2879 \N +110209 2025-07-03 12:57:18.338748+00 2025-07-03 12:57:18.338756+00 f t SUBTOTAL 50000.00 1 2897 \N +110210 2025-07-03 12:57:18.340317+00 2025-07-03 12:57:18.340324+00 f t DESCUENTO 0.00 2 2897 \N +110211 2025-07-03 12:57:18.341418+00 2025-07-03 12:57:18.341423+00 f t TOTAL 50000.00 3 2897 \N +110212 2025-07-03 12:57:18.342312+00 2025-07-03 12:57:18.342317+00 f t ADELANTO 10000.00 4 2897 \N +109765 2025-07-02 21:59:01.834066+00 2025-07-02 21:59:01.834079+00 f t SUBTOTAL 0.00 1 2880 \N +109766 2025-07-02 21:59:01.835654+00 2025-07-02 21:59:01.835661+00 f t DESCUENTO 0.00 2 2880 \N +109767 2025-07-02 21:59:01.836926+00 2025-07-02 21:59:01.836932+00 f t TOTAL 0.00 3 2880 \N +109768 2025-07-02 21:59:01.838023+00 2025-07-02 21:59:01.838028+00 f t ADELANTO 0.00 4 2880 \N +109773 2025-07-02 22:08:05.750367+00 2025-07-02 22:08:05.750376+00 f t SUBTOTAL 0.00 1 2881 \N +109774 2025-07-02 22:08:05.751935+00 2025-07-02 22:08:05.751943+00 f t DESCUENTO 0.00 2 2881 \N +109775 2025-07-02 22:08:05.753082+00 2025-07-02 22:08:05.753088+00 f t TOTAL 0.00 3 2881 \N +109776 2025-07-02 22:08:05.754149+00 2025-07-02 22:08:05.754154+00 f t ADELANTO 0.00 4 2881 \N +113001 2025-07-04 16:16:10.793219+00 2025-07-04 16:16:10.793231+00 f t SUBTOTAL 50000.00 1 2981 \N +113002 2025-07-04 16:16:10.79522+00 2025-07-04 16:16:10.795231+00 f t DESCUENTO 0.00 2 2981 \N +113003 2025-07-04 16:16:10.79685+00 2025-07-04 16:16:10.796857+00 f t TOTAL 50000.00 3 2981 \N +113004 2025-07-04 16:16:10.798343+00 2025-07-04 16:16:10.79835+00 f t ADELANTO 10000.00 4 2981 \N +109781 2025-07-02 22:08:30.525351+00 2025-07-02 22:08:30.52536+00 f t SUBTOTAL 0.00 1 2882 \N +109782 2025-07-02 22:08:30.526766+00 2025-07-02 22:08:30.526773+00 f t DESCUENTO 0.00 2 2882 \N +109783 2025-07-02 22:08:30.528053+00 2025-07-02 22:08:30.52806+00 f t TOTAL 0.00 3 2882 \N +109784 2025-07-02 22:08:30.52924+00 2025-07-02 22:08:30.529246+00 f t ADELANTO 0.00 4 2882 \N +110309 2025-07-03 13:40:47.208181+00 2025-07-03 13:40:47.208189+00 f t SUBTOTAL 102700.00 1 2899 \N +110310 2025-07-03 13:40:47.209739+00 2025-07-03 13:40:47.209748+00 f t DESCUENTO 0.00 2 2899 \N +110311 2025-07-03 13:40:47.210863+00 2025-07-03 13:40:47.210869+00 f t TOTAL 102700.00 3 2899 \N +110312 2025-07-03 13:40:47.211838+00 2025-07-03 13:40:47.211844+00 f t ADELANTO 64700.00 4 2899 \N +109789 2025-07-02 23:48:42.571929+00 2025-07-02 23:48:42.571937+00 f t SUBTOTAL 0.00 1 2883 \N +109790 2025-07-02 23:48:42.573134+00 2025-07-02 23:48:42.57314+00 f t DESCUENTO 0.00 2 2883 \N +109791 2025-07-02 23:48:42.574319+00 2025-07-02 23:48:42.574324+00 f t TOTAL 0.00 3 2883 \N +109792 2025-07-02 23:48:42.575401+00 2025-07-02 23:48:42.575407+00 f t ADELANTO 0.00 4 2883 \N +109797 2025-07-03 00:50:42.255489+00 2025-07-03 00:50:42.255498+00 f t SUBTOTAL 0.00 1 2884 \N +109798 2025-07-03 00:50:42.256866+00 2025-07-03 00:50:42.256875+00 f t DESCUENTO 0.00 2 2884 \N +109799 2025-07-03 00:50:42.258135+00 2025-07-03 00:50:42.258141+00 f t TOTAL 0.00 3 2884 \N +109800 2025-07-03 00:50:42.259265+00 2025-07-03 00:50:42.25927+00 f t ADELANTO 0.00 4 2884 \N +113069 2025-07-04 16:32:42.847109+00 2025-07-04 16:32:42.847122+00 f t SUBTOTAL 50000.00 1 2982 \N +113070 2025-07-04 16:32:42.848859+00 2025-07-04 16:32:42.848867+00 f t DESCUENTO 0.00 2 2982 \N +113071 2025-07-04 16:32:42.850235+00 2025-07-04 16:32:42.850242+00 f t TOTAL 50000.00 3 2982 \N +113072 2025-07-04 16:32:42.851376+00 2025-07-04 16:32:42.851383+00 f t ADELANTO 10000.00 4 2982 \N +110433 2025-07-03 14:23:03.286984+00 2025-07-03 14:23:03.286994+00 f t SUBTOTAL 50000.00 1 2904 \N +110434 2025-07-03 14:23:03.294936+00 2025-07-03 14:23:03.294945+00 f t DESCUENTO 0.00 2 2904 \N +110435 2025-07-03 14:23:03.307631+00 2025-07-03 14:23:03.307646+00 f t TOTAL 50000.00 3 2904 \N +110436 2025-07-03 14:23:03.310147+00 2025-07-03 14:23:03.310162+00 f t ADELANTO 10000.00 4 2904 \N +110477 2025-07-03 15:30:00.716746+00 2025-07-03 15:30:00.716755+00 f t SUBTOTAL 0.00 1 2908 \N +110478 2025-07-03 15:30:00.719655+00 2025-07-03 15:30:00.719663+00 f t DESCUENTO 0.00 2 2908 \N +110479 2025-07-03 15:30:00.722197+00 2025-07-03 15:30:00.722204+00 f t TOTAL 0.00 3 2908 \N +110480 2025-07-03 15:30:00.723429+00 2025-07-03 15:30:00.723435+00 f t ADELANTO 0.00 4 2908 \N +110641 2025-07-03 16:11:06.656688+00 2025-07-03 16:11:06.656696+00 f t SUBTOTAL 42000.00 1 2912 \N +110642 2025-07-03 16:11:06.658182+00 2025-07-03 16:11:06.658189+00 f t DESCUENTO 0.00 2 2912 \N +110643 2025-07-03 16:11:06.659219+00 2025-07-03 16:11:06.659224+00 f t TOTAL 42000.00 3 2912 \N +110644 2025-07-03 16:11:06.66042+00 2025-07-03 16:11:06.660425+00 f t ADELANTO 9500.00 4 2912 \N +110697 2025-07-03 16:31:31.157668+00 2025-07-03 16:31:31.157677+00 f t SUBTOTAL 0.00 1 2917 \N +110698 2025-07-03 16:31:31.159379+00 2025-07-03 16:31:31.15939+00 f t DESCUENTO 0.00 2 2917 \N +110699 2025-07-03 16:31:31.161449+00 2025-07-03 16:31:31.161459+00 f t TOTAL 0.00 3 2917 \N +110700 2025-07-03 16:31:31.162973+00 2025-07-03 16:31:31.162982+00 f t ADELANTO 0.00 4 2917 \N +109873 2025-07-03 01:11:33.612466+00 2025-07-03 01:11:33.612478+00 f t SUBTOTAL 0.00 1 2885 \N +109874 2025-07-03 01:11:33.61424+00 2025-07-03 01:11:33.614247+00 f t DESCUENTO 0.00 2 2885 \N +109875 2025-07-03 01:11:33.615602+00 2025-07-03 01:11:33.615607+00 f t TOTAL 0.00 3 2885 \N +109876 2025-07-03 01:11:33.619798+00 2025-07-03 01:11:33.619806+00 f t ADELANTO 0.00 4 2885 \N +110889 2025-07-03 17:40:23.832965+00 2025-07-03 17:40:23.832978+00 f t SUBTOTAL 0.00 1 2920 \N +110890 2025-07-03 17:40:23.834586+00 2025-07-03 17:40:23.834597+00 f t DESCUENTO 0.00 2 2920 \N +110891 2025-07-03 17:40:23.835992+00 2025-07-03 17:40:23.836002+00 f t TOTAL 0.00 3 2920 \N +110892 2025-07-03 17:40:23.837357+00 2025-07-03 17:40:23.837366+00 f t ADELANTO 0.00 4 2920 \N +110945 2025-07-03 17:43:15.109128+00 2025-07-03 17:43:15.109141+00 f t SUBTOTAL 49500.00 1 2921 \N +110946 2025-07-03 17:43:15.111058+00 2025-07-03 17:43:15.111068+00 f t DESCUENTO 0.00 2 2921 \N +110947 2025-07-03 17:43:15.112418+00 2025-07-03 17:43:15.112426+00 f t TOTAL 49500.00 3 2921 \N +110948 2025-07-03 17:43:15.113648+00 2025-07-03 17:43:15.113654+00 f t ADELANTO 11500.00 4 2921 \N +109925 2025-07-03 01:13:30.433867+00 2025-07-03 01:13:30.433879+00 f t SUBTOTAL 75000.00 1 2886 \N +109926 2025-07-03 01:13:30.435693+00 2025-07-03 01:13:30.435703+00 f t DESCUENTO 0.00 2 2886 \N +109927 2025-07-03 01:13:30.437197+00 2025-07-03 01:13:30.437206+00 f t TOTAL 75000.00 3 2886 \N +109928 2025-07-03 01:13:30.438437+00 2025-07-03 01:13:30.438444+00 f t ADELANTO 15000.00 4 2886 \N +111137 2025-07-03 18:01:38.915033+00 2025-07-03 18:01:38.915045+00 f t SUBTOTAL 82700.00 1 2925 \N +111138 2025-07-03 18:01:38.916855+00 2025-07-03 18:01:38.916864+00 f t DESCUENTO 0.00 2 2925 \N +111139 2025-07-03 18:01:38.918322+00 2025-07-03 18:01:38.918332+00 f t TOTAL 82700.00 3 2925 \N +111140 2025-07-03 18:01:38.919654+00 2025-07-03 18:01:38.919661+00 f t ADELANTO 44700.00 4 2925 \N +115382 2025-07-05 18:10:42.251513+00 2025-07-05 18:10:42.251519+00 f t DESCUENTO 0.00 2 3039 \N +115383 2025-07-05 18:10:42.252703+00 2025-07-05 18:10:42.252708+00 f t TOTAL 42000.00 3 3039 \N +115384 2025-07-05 18:10:42.253646+00 2025-07-05 18:10:42.25365+00 f t ADELANTO 9500.00 4 3039 \N +130054 2025-07-11 18:17:18.285196+00 2025-07-11 18:17:18.285204+00 f t DESCUENTO 0.00 2 3425 \N +130055 2025-07-11 18:17:18.286356+00 2025-07-11 18:17:18.286362+00 f t TOTAL 0.00 3 3425 \N +115781 2025-07-05 22:23:20.155435+00 2025-07-05 22:23:20.155444+00 f t SUBTOTAL 0.00 1 3053 \N +115782 2025-07-05 22:23:20.156802+00 2025-07-05 22:23:20.156808+00 f t DESCUENTO 0.00 2 3053 \N +115783 2025-07-05 22:23:20.158975+00 2025-07-05 22:23:20.158982+00 f t TOTAL 0.00 3 3053 \N +115784 2025-07-05 22:23:20.160138+00 2025-07-05 22:23:20.160144+00 f t ADELANTO 0.00 4 3053 \N +111389 2025-07-03 18:09:57.464699+00 2025-07-03 18:09:57.464707+00 f t SUBTOTAL 50000.00 1 2926 \N +111390 2025-07-03 18:09:57.466232+00 2025-07-03 18:09:57.466239+00 f t DESCUENTO 0.00 2 2926 \N +111391 2025-07-03 18:09:57.467376+00 2025-07-03 18:09:57.467382+00 f t TOTAL 50000.00 3 2926 \N +111392 2025-07-03 18:09:57.468589+00 2025-07-03 18:09:57.468596+00 f t ADELANTO 10000.00 4 2926 \N +113113 2025-07-04 17:04:37.955927+00 2025-07-04 17:04:37.955937+00 f t SUBTOTAL 0.00 1 2985 \N +113114 2025-07-04 17:04:37.957553+00 2025-07-04 17:04:37.957561+00 f t DESCUENTO 0.00 2 2985 \N +113115 2025-07-04 17:04:37.958942+00 2025-07-04 17:04:37.958949+00 f t TOTAL 0.00 3 2985 \N +111409 2025-07-03 18:10:54.160108+00 2025-07-03 18:10:54.160118+00 f t SUBTOTAL 82700.00 1 2927 \N +111410 2025-07-03 18:10:54.161741+00 2025-07-03 18:10:54.16175+00 f t DESCUENTO 0.00 2 2927 \N +111411 2025-07-03 18:10:54.163011+00 2025-07-03 18:10:54.163018+00 f t TOTAL 82700.00 3 2927 \N +111412 2025-07-03 18:10:54.164077+00 2025-07-03 18:10:54.164083+00 f t ADELANTO 44700.00 4 2927 \N +113116 2025-07-04 17:04:37.960202+00 2025-07-04 17:04:37.960209+00 f t ADELANTO 0.00 4 2985 \N +111417 2025-07-03 18:28:33.117455+00 2025-07-03 18:28:33.117464+00 f t SUBTOTAL 0.00 1 2928 \N +111418 2025-07-03 18:28:33.12039+00 2025-07-03 18:28:33.120397+00 f t DESCUENTO 0.00 2 2928 \N +111419 2025-07-03 18:28:33.121891+00 2025-07-03 18:28:33.121901+00 f t TOTAL 0.00 3 2928 \N +111420 2025-07-03 18:28:33.123957+00 2025-07-03 18:28:33.123964+00 f t ADELANTO 0.00 4 2928 \N +111425 2025-07-03 18:28:56.23886+00 2025-07-03 18:28:56.238872+00 f t SUBTOTAL 0.00 1 2929 \N +111426 2025-07-03 18:28:56.240458+00 2025-07-03 18:28:56.240467+00 f t DESCUENTO 0.00 2 2929 \N +111427 2025-07-03 18:28:56.241699+00 2025-07-03 18:28:56.241704+00 f t TOTAL 0.00 3 2929 \N +111428 2025-07-03 18:28:56.242639+00 2025-07-03 18:28:56.242644+00 f t ADELANTO 0.00 4 2929 \N +111433 2025-07-03 18:29:26.157654+00 2025-07-03 18:29:26.157667+00 f t SUBTOTAL 0.00 1 2930 \N +111434 2025-07-03 18:29:26.159224+00 2025-07-03 18:29:26.159234+00 f t DESCUENTO 0.00 2 2930 \N +111435 2025-07-03 18:29:26.16062+00 2025-07-03 18:29:26.160628+00 f t TOTAL 0.00 3 2930 \N +111436 2025-07-03 18:29:26.161882+00 2025-07-03 18:29:26.16189+00 f t ADELANTO 0.00 4 2930 \N +116137 2025-07-05 23:56:31.093039+00 2025-07-05 23:56:31.093048+00 f t SUBTOTAL 189200.00 1 3061 \N +116138 2025-07-05 23:56:31.09486+00 2025-07-05 23:56:31.094866+00 f t DESCUENTO 0.00 2 3061 \N +116139 2025-07-05 23:56:31.096028+00 2025-07-05 23:56:31.096034+00 f t TOTAL 189200.00 3 3061 \N +116140 2025-07-05 23:56:31.096952+00 2025-07-05 23:56:31.096957+00 f t ADELANTO 83200.00 4 3061 \N +116181 2025-07-06 00:18:37.594663+00 2025-07-06 00:18:37.594672+00 f t SUBTOTAL 0.00 1 3063 \N +116182 2025-07-06 00:18:37.599823+00 2025-07-06 00:18:37.599831+00 f t DESCUENTO 0.00 2 3063 \N +116183 2025-07-06 00:18:37.601203+00 2025-07-06 00:18:37.60121+00 f t TOTAL 0.00 3 3063 \N +111449 2025-07-03 18:29:53.831943+00 2025-07-03 18:29:53.831952+00 f t SUBTOTAL 0.00 1 2932 \N +111450 2025-07-03 18:29:53.833407+00 2025-07-03 18:29:53.833414+00 f t DESCUENTO 0.00 2 2932 \N +111451 2025-07-03 18:29:53.835055+00 2025-07-03 18:29:53.835062+00 f t TOTAL 0.00 3 2932 \N +111452 2025-07-03 18:29:53.836349+00 2025-07-03 18:29:53.836355+00 f t ADELANTO 0.00 4 2932 \N +116184 2025-07-06 00:18:37.60234+00 2025-07-06 00:18:37.602345+00 f t ADELANTO 0.00 4 3063 \N +116337 2025-07-06 01:48:03.150472+00 2025-07-06 01:48:03.15048+00 f t SUBTOTAL 50000.00 1 3067 \N +116338 2025-07-06 01:48:03.152274+00 2025-07-06 01:48:03.152282+00 f t DESCUENTO 0.00 2 3067 \N +116339 2025-07-06 01:48:03.154264+00 2025-07-06 01:48:03.15427+00 f t TOTAL 50000.00 3 3067 \N +111469 2025-07-03 18:30:21.029404+00 2025-07-03 18:30:21.029413+00 f t SUBTOTAL 50000.00 1 2931 \N +111470 2025-07-03 18:30:21.031222+00 2025-07-03 18:30:21.031228+00 f t DESCUENTO 0.00 2 2931 \N +111471 2025-07-03 18:30:21.032425+00 2025-07-03 18:30:21.032431+00 f t TOTAL 50000.00 3 2931 \N +111472 2025-07-03 18:30:21.033548+00 2025-07-03 18:30:21.033554+00 f t ADELANTO 10000.00 4 2931 \N +116340 2025-07-06 01:48:03.15671+00 2025-07-06 01:48:03.156716+00 f t ADELANTO 10000.00 4 3067 \N +116589 2025-07-06 05:34:32.851255+00 2025-07-06 05:34:32.851266+00 f t SUBTOTAL 50000.00 1 3074 \N +116590 2025-07-06 05:34:32.85297+00 2025-07-06 05:34:32.852981+00 f t DESCUENTO 0.00 2 3074 \N +116591 2025-07-06 05:34:32.854312+00 2025-07-06 05:34:32.854317+00 f t TOTAL 50000.00 3 3074 \N +116592 2025-07-06 05:34:32.855308+00 2025-07-06 05:34:32.855313+00 f t ADELANTO 10000.00 4 3074 \N +113757 2025-07-05 00:19:51.879578+00 2025-07-05 00:19:51.879587+00 f t SUBTOTAL 0.00 1 3001 \N +113758 2025-07-05 00:19:51.880974+00 2025-07-05 00:19:51.880981+00 f t DESCUENTO 0.00 2 3001 \N +113759 2025-07-05 00:19:51.882067+00 2025-07-05 00:19:51.882073+00 f t TOTAL 0.00 3 3001 \N +111533 2025-07-03 18:33:29.213459+00 2025-07-03 18:33:29.213467+00 f t SUBTOTAL 50000.00 1 2933 \N +111534 2025-07-03 18:33:29.215202+00 2025-07-03 18:33:29.21521+00 f t DESCUENTO 0.00 2 2933 \N +111535 2025-07-03 18:33:29.216439+00 2025-07-03 18:33:29.216446+00 f t TOTAL 50000.00 3 2933 \N +111536 2025-07-03 18:33:29.217456+00 2025-07-03 18:33:29.217461+00 f t ADELANTO 10000.00 4 2933 \N +113760 2025-07-05 00:19:51.883+00 2025-07-05 00:19:51.883005+00 f t ADELANTO 0.00 4 3001 \N +113813 2025-07-05 01:05:33.774218+00 2025-07-05 01:05:33.77423+00 f t SUBTOTAL 72000.00 1 3003 \N +113814 2025-07-05 01:05:33.776352+00 2025-07-05 01:05:33.776363+00 f t DESCUENTO 0.00 2 3003 \N +113815 2025-07-05 01:05:33.777783+00 2025-07-05 01:05:33.77779+00 f t TOTAL 72000.00 3 3003 \N +113816 2025-07-05 01:05:33.779032+00 2025-07-05 01:05:33.779038+00 f t ADELANTO 19000.00 4 3003 \N +111569 2025-07-03 18:38:44.990634+00 2025-07-03 18:38:44.990643+00 f t SUBTOTAL 0.00 1 2934 \N +111570 2025-07-03 18:38:44.992588+00 2025-07-03 18:38:44.992596+00 f t DESCUENTO 0.00 2 2934 \N +111571 2025-07-03 18:38:44.993934+00 2025-07-03 18:38:44.993941+00 f t TOTAL 0.00 3 2934 \N +111572 2025-07-03 18:38:44.99497+00 2025-07-03 18:38:44.994976+00 f t ADELANTO 0.00 4 2934 \N +111577 2025-07-03 18:47:19.411219+00 2025-07-03 18:47:19.411229+00 f t SUBTOTAL 0.00 1 2935 \N +111578 2025-07-03 18:47:19.412831+00 2025-07-03 18:47:19.412839+00 f t DESCUENTO 0.00 2 2935 \N +111579 2025-07-03 18:47:19.414159+00 2025-07-03 18:47:19.414165+00 f t TOTAL 0.00 3 2935 \N +111580 2025-07-03 18:47:19.415285+00 2025-07-03 18:47:19.415291+00 f t ADELANTO 0.00 4 2935 \N +111609 2025-07-03 18:51:41.720004+00 2025-07-03 18:51:41.720012+00 f t SUBTOTAL 70000.00 1 2936 \N +111610 2025-07-03 18:51:41.721723+00 2025-07-03 18:51:41.721732+00 f t DESCUENTO 0.00 2 2936 \N +111611 2025-07-03 18:51:41.722965+00 2025-07-03 18:51:41.722974+00 f t TOTAL 70000.00 3 2936 \N +111612 2025-07-03 18:51:41.724134+00 2025-07-03 18:51:41.72414+00 f t ADELANTO 15000.00 4 2936 \N +112745 2025-07-04 13:25:38.393735+00 2025-07-04 13:25:38.393744+00 f t SUBTOTAL 50000.00 1 2973 \N +112746 2025-07-04 13:25:38.395793+00 2025-07-04 13:25:38.3958+00 f t DESCUENTO 0.00 2 2973 \N +112747 2025-07-04 13:25:38.397197+00 2025-07-04 13:25:38.397206+00 f t TOTAL 50000.00 3 2973 \N +112748 2025-07-04 13:25:38.398594+00 2025-07-04 13:25:38.398599+00 f t ADELANTO 10000.00 4 2973 \N +118513 2025-07-06 21:36:49.246381+00 2025-07-06 21:36:49.246394+00 f t SUBTOTAL 0.00 1 3130 \N +111665 2025-07-03 19:00:11.549588+00 2025-07-03 19:00:11.549602+00 f t SUBTOTAL 45000.00 1 2937 \N +111666 2025-07-03 19:00:11.552647+00 2025-07-03 19:00:11.552662+00 f t DESCUENTO 0.00 2 2937 \N +111667 2025-07-03 19:00:11.564595+00 2025-07-03 19:00:11.564608+00 f t TOTAL 45000.00 3 2937 \N +111668 2025-07-03 19:00:11.567469+00 2025-07-03 19:00:11.567483+00 f t ADELANTO 10000.00 4 2937 \N +118514 2025-07-06 21:36:49.248202+00 2025-07-06 21:36:49.248211+00 f t DESCUENTO 0.00 2 3130 \N +118515 2025-07-06 21:36:49.250457+00 2025-07-06 21:36:49.250463+00 f t TOTAL 0.00 3 3130 \N +118516 2025-07-06 21:36:49.252048+00 2025-07-06 21:36:49.252054+00 f t ADELANTO 0.00 4 3130 \N +124417 2025-07-09 00:38:00.736167+00 2025-07-09 00:38:00.736175+00 f t SUBTOTAL 50000.00 1 3285 \N +111673 2025-07-03 19:16:57.677208+00 2025-07-03 19:16:57.677221+00 f t SUBTOTAL 0.00 1 2938 \N +111674 2025-07-03 19:16:57.678964+00 2025-07-03 19:16:57.678973+00 f t DESCUENTO 0.00 2 2938 \N +111675 2025-07-03 19:16:57.680617+00 2025-07-03 19:16:57.680625+00 f t TOTAL 0.00 3 2938 \N +111676 2025-07-03 19:16:57.682096+00 2025-07-03 19:16:57.682102+00 f t ADELANTO 0.00 4 2938 \N +124418 2025-07-09 00:38:00.738179+00 2025-07-09 00:38:00.738187+00 f t DESCUENTO 0.00 2 3285 \N +124419 2025-07-09 00:38:00.739463+00 2025-07-09 00:38:00.739469+00 f t TOTAL 50000.00 3 3285 \N +124420 2025-07-09 00:38:00.740626+00 2025-07-09 00:38:00.740631+00 f t ADELANTO 10000.00 4 3285 \N +111681 2025-07-03 19:44:39.246504+00 2025-07-03 19:44:39.246514+00 f t SUBTOTAL 0.00 1 2939 \N +111682 2025-07-03 19:44:39.24845+00 2025-07-03 19:44:39.248456+00 f t DESCUENTO 0.00 2 2939 \N +111683 2025-07-03 19:44:39.249636+00 2025-07-03 19:44:39.249642+00 f t TOTAL 0.00 3 2939 \N +111684 2025-07-03 19:44:39.250959+00 2025-07-03 19:44:39.250965+00 f t ADELANTO 0.00 4 2939 \N +111689 2025-07-03 19:45:48.461005+00 2025-07-03 19:45:48.461014+00 f t SUBTOTAL 0.00 1 2940 \N +111690 2025-07-03 19:45:48.462637+00 2025-07-03 19:45:48.462647+00 f t DESCUENTO 0.00 2 2940 \N +111691 2025-07-03 19:45:48.464111+00 2025-07-03 19:45:48.464117+00 f t TOTAL 0.00 3 2940 \N +111692 2025-07-03 19:45:48.465142+00 2025-07-03 19:45:48.465147+00 f t ADELANTO 0.00 4 2940 \N +118669 2025-07-06 22:28:20.98988+00 2025-07-06 22:28:20.989888+00 f t SUBTOTAL 0.00 1 3133 \N +118670 2025-07-06 22:28:20.991306+00 2025-07-06 22:28:20.991312+00 f t DESCUENTO 0.00 2 3133 \N +118671 2025-07-06 22:28:20.992597+00 2025-07-06 22:28:20.992606+00 f t TOTAL 0.00 3 3133 \N +118672 2025-07-06 22:28:20.993689+00 2025-07-06 22:28:20.993694+00 f t ADELANTO 0.00 4 3133 \N +116305 2025-07-06 01:41:00.733484+00 2025-07-06 01:41:00.733492+00 f t SUBTOTAL 50000.00 1 3066 \N +116306 2025-07-06 01:41:00.735404+00 2025-07-06 01:41:00.735414+00 f t DESCUENTO 0.00 2 3066 \N +116307 2025-07-06 01:41:00.737047+00 2025-07-06 01:41:00.737053+00 f t TOTAL 50000.00 3 3066 \N +116308 2025-07-06 01:41:00.738613+00 2025-07-06 01:41:00.738622+00 f t ADELANTO 10000.00 4 3066 \N +111773 2025-07-03 19:49:07.183494+00 2025-07-03 19:49:07.183503+00 f t SUBTOTAL 42000.00 1 2941 \N +111774 2025-07-03 19:49:07.1851+00 2025-07-03 19:49:07.185107+00 f t DESCUENTO 0.00 2 2941 \N +111775 2025-07-03 19:49:07.186517+00 2025-07-03 19:49:07.186524+00 f t TOTAL 42000.00 3 2941 \N +111776 2025-07-03 19:49:07.187754+00 2025-07-03 19:49:07.18776+00 f t ADELANTO 9500.00 4 2941 \N +111781 2025-07-03 19:50:05.374636+00 2025-07-03 19:50:05.374649+00 f t SUBTOTAL 0.00 1 2942 \N +111782 2025-07-03 19:50:05.377642+00 2025-07-03 19:50:05.377653+00 f t DESCUENTO 0.00 2 2942 \N +111783 2025-07-03 19:50:05.380074+00 2025-07-03 19:50:05.380087+00 f t TOTAL 0.00 3 2942 \N +111784 2025-07-03 19:50:05.382607+00 2025-07-03 19:50:05.382619+00 f t ADELANTO 0.00 4 2942 \N +116717 2025-07-06 08:58:05.257803+00 2025-07-06 08:58:05.257814+00 f t SUBTOTAL 50000.00 1 3077 \N +116718 2025-07-06 08:58:05.259748+00 2025-07-06 08:58:05.259758+00 f t DESCUENTO 0.00 2 3077 \N +113845 2025-07-05 01:09:23.563361+00 2025-07-05 01:09:23.563373+00 f t SUBTOTAL 82700.00 1 3004 \N +113846 2025-07-05 01:09:23.565256+00 2025-07-05 01:09:23.565263+00 f t DESCUENTO 0.00 2 3004 \N +113847 2025-07-05 01:09:23.566498+00 2025-07-05 01:09:23.566507+00 f t TOTAL 82700.00 3 3004 \N +113848 2025-07-05 01:09:23.567743+00 2025-07-05 01:09:23.567751+00 f t ADELANTO 44700.00 4 3004 \N +116719 2025-07-06 08:58:05.261181+00 2025-07-06 08:58:05.26119+00 f t TOTAL 50000.00 3 3077 \N +116720 2025-07-06 08:58:05.262432+00 2025-07-06 08:58:05.26244+00 f t ADELANTO 10000.00 4 3077 \N +116837 2025-07-06 09:28:32.880562+00 2025-07-06 09:28:32.880571+00 f t SUBTOTAL 50000.00 1 3079 \N +116838 2025-07-06 09:28:32.882069+00 2025-07-06 09:28:32.882076+00 f t DESCUENTO 0.00 2 3079 \N +116839 2025-07-06 09:28:32.883184+00 2025-07-06 09:28:32.88319+00 f t TOTAL 50000.00 3 3079 \N +116840 2025-07-06 09:28:32.884227+00 2025-07-06 09:28:32.884232+00 f t ADELANTO 10000.00 4 3079 \N +114053 2025-07-05 03:22:12.637708+00 2025-07-05 03:22:12.637716+00 f t SUBTOTAL 50000.00 1 3008 \N +114054 2025-07-05 03:22:12.639816+00 2025-07-05 03:22:12.639823+00 f t DESCUENTO 0.00 2 3008 \N +114055 2025-07-05 03:22:12.643915+00 2025-07-05 03:22:12.643923+00 f t TOTAL 50000.00 3 3008 \N +114056 2025-07-05 03:22:12.6454+00 2025-07-05 03:22:12.645407+00 f t ADELANTO 10000.00 4 3008 \N +111869 2025-07-03 19:54:08.741218+00 2025-07-03 19:54:08.741227+00 f t SUBTOTAL 42000.00 1 2943 \N +111870 2025-07-03 19:54:08.743495+00 2025-07-03 19:54:08.743503+00 f t DESCUENTO 0.00 2 2943 \N +111871 2025-07-03 19:54:08.744701+00 2025-07-03 19:54:08.744707+00 f t TOTAL 42000.00 3 2943 \N +111872 2025-07-03 19:54:08.745736+00 2025-07-03 19:54:08.745743+00 f t ADELANTO 9500.00 4 2943 \N +114257 2025-07-05 05:24:26.561016+00 2025-07-05 05:24:26.561025+00 f t SUBTOTAL 0.00 1 3010 \N +114258 2025-07-05 05:24:26.562781+00 2025-07-05 05:24:26.562791+00 f t DESCUENTO 0.00 2 3010 \N +114259 2025-07-05 05:24:26.564005+00 2025-07-05 05:24:26.564011+00 f t TOTAL 0.00 3 3010 \N +114260 2025-07-05 05:24:26.565136+00 2025-07-05 05:24:26.565141+00 f t ADELANTO 0.00 4 3010 \N +111905 2025-07-03 20:02:58.611886+00 2025-07-03 20:02:58.611895+00 f t SUBTOTAL 42000.00 1 2944 \N +111906 2025-07-03 20:02:58.613334+00 2025-07-03 20:02:58.61334+00 f t DESCUENTO 0.00 2 2944 \N +111907 2025-07-03 20:02:58.614531+00 2025-07-03 20:02:58.614536+00 f t TOTAL 42000.00 3 2944 \N +111908 2025-07-03 20:02:58.615513+00 2025-07-03 20:02:58.615518+00 f t ADELANTO 9500.00 4 2944 \N +114377 2025-07-05 11:41:47.959402+00 2025-07-05 11:41:47.959414+00 f t SUBTOTAL 0.00 1 3014 \N +114378 2025-07-05 11:41:47.961189+00 2025-07-05 11:41:47.961199+00 f t DESCUENTO 0.00 2 3014 \N +114379 2025-07-05 11:41:47.962689+00 2025-07-05 11:41:47.962698+00 f t TOTAL 0.00 3 3014 \N +114380 2025-07-05 11:41:47.964102+00 2025-07-05 11:41:47.96411+00 f t ADELANTO 0.00 4 3014 \N +117293 2025-07-06 12:48:46.480976+00 2025-07-06 12:48:46.480983+00 f t SUBTOTAL 0.00 1 3088 \N +117294 2025-07-06 12:48:46.482156+00 2025-07-06 12:48:46.482162+00 f t DESCUENTO 0.00 2 3088 \N +117295 2025-07-06 12:48:46.483178+00 2025-07-06 12:48:46.483184+00 f t TOTAL 0.00 3 3088 \N +117296 2025-07-06 12:48:46.484092+00 2025-07-06 12:48:46.484098+00 f t ADELANTO 0.00 4 3088 \N +112693 2025-07-04 12:23:26.110144+00 2025-07-04 12:23:26.110153+00 f t SUBTOTAL 42000.00 1 2969 \N +112694 2025-07-04 12:23:26.11319+00 2025-07-04 12:23:26.113199+00 f t DESCUENTO 0.00 2 2969 \N +112695 2025-07-04 12:23:26.114538+00 2025-07-04 12:23:26.114545+00 f t TOTAL 42000.00 3 2969 \N +112696 2025-07-04 12:23:26.116181+00 2025-07-04 12:23:26.116189+00 f t ADELANTO 9500.00 4 2969 \N +130056 2025-07-11 18:17:18.287373+00 2025-07-11 18:17:18.287377+00 f t ADELANTO 0.00 4 3425 \N +111937 2025-07-03 20:38:50.895587+00 2025-07-03 20:38:50.8956+00 f t SUBTOTAL 42000.00 1 2945 \N +111938 2025-07-03 20:38:50.897467+00 2025-07-03 20:38:50.897477+00 f t DESCUENTO 0.00 2 2945 \N +111939 2025-07-03 20:38:50.899876+00 2025-07-03 20:38:50.899885+00 f t TOTAL 42000.00 3 2945 \N +111940 2025-07-03 20:38:50.901442+00 2025-07-03 20:38:50.901451+00 f t ADELANTO 9500.00 4 2945 \N +115449 2025-07-05 18:16:44.292361+00 2025-07-05 18:16:44.292369+00 f t SUBTOTAL 42000.00 1 3040 \N +115450 2025-07-05 18:16:44.293825+00 2025-07-05 18:16:44.293831+00 f t DESCUENTO 0.00 2 3040 \N +115451 2025-07-05 18:16:44.294993+00 2025-07-05 18:16:44.294998+00 f t TOTAL 42000.00 3 3040 \N +115452 2025-07-05 18:16:44.296113+00 2025-07-05 18:16:44.296118+00 f t ADELANTO 9500.00 4 3040 \N +111945 2025-07-03 21:38:18.895556+00 2025-07-03 21:38:18.895566+00 f t SUBTOTAL 0.00 1 2946 \N +111946 2025-07-03 21:38:18.897785+00 2025-07-03 21:38:18.897797+00 f t DESCUENTO 0.00 2 2946 \N +111947 2025-07-03 21:38:18.899098+00 2025-07-03 21:38:18.899105+00 f t TOTAL 0.00 3 2946 \N +111948 2025-07-03 21:38:18.900395+00 2025-07-03 21:38:18.900401+00 f t ADELANTO 0.00 4 2946 \N +111953 2025-07-03 21:44:13.932701+00 2025-07-03 21:44:13.932709+00 f t SUBTOTAL 0.00 1 2947 \N +111954 2025-07-03 21:44:13.934125+00 2025-07-03 21:44:13.934133+00 f t DESCUENTO 0.00 2 2947 \N +111955 2025-07-03 21:44:13.935365+00 2025-07-03 21:44:13.935371+00 f t TOTAL 0.00 3 2947 \N +111956 2025-07-03 21:44:13.936573+00 2025-07-03 21:44:13.936581+00 f t ADELANTO 0.00 4 2947 \N +111961 2025-07-03 21:45:23.683481+00 2025-07-03 21:45:23.683489+00 f t SUBTOTAL 0.00 1 2948 \N +111962 2025-07-03 21:45:23.684776+00 2025-07-03 21:45:23.684783+00 f t DESCUENTO 0.00 2 2948 \N +111963 2025-07-03 21:45:23.685814+00 2025-07-03 21:45:23.685819+00 f t TOTAL 0.00 3 2948 \N +111964 2025-07-03 21:45:23.686685+00 2025-07-03 21:45:23.686692+00 f t ADELANTO 0.00 4 2948 \N +115621 2025-07-05 19:15:09.506614+00 2025-07-05 19:15:09.506623+00 f t SUBTOTAL 117500.00 1 3044 \N +115622 2025-07-05 19:15:09.508484+00 2025-07-05 19:15:09.508491+00 f t DESCUENTO 0.00 2 3044 \N +115623 2025-07-05 19:15:09.509709+00 2025-07-05 19:15:09.509717+00 f t TOTAL 117500.00 3 3044 \N +115624 2025-07-05 19:15:09.510757+00 2025-07-05 19:15:09.510762+00 f t ADELANTO 28500.00 4 3044 \N +118429 2025-07-06 20:46:33.682035+00 2025-07-06 20:46:33.682044+00 f t SUBTOTAL 0.00 1 3126 \N +118430 2025-07-06 20:46:33.683891+00 2025-07-06 20:46:33.683897+00 f t DESCUENTO 0.00 2 3126 \N +118431 2025-07-06 20:46:33.685016+00 2025-07-06 20:46:33.685022+00 f t TOTAL 0.00 3 3126 \N +118432 2025-07-06 20:46:33.686532+00 2025-07-06 20:46:33.686542+00 f t ADELANTO 0.00 4 3126 \N +111993 2025-07-03 21:50:31.570974+00 2025-07-03 21:50:31.570982+00 f t SUBTOTAL 50000.00 1 2949 \N +111994 2025-07-03 21:50:31.572691+00 2025-07-03 21:50:31.572699+00 f t DESCUENTO 0.00 2 2949 \N +111995 2025-07-03 21:50:31.574617+00 2025-07-03 21:50:31.574626+00 f t TOTAL 50000.00 3 2949 \N +111996 2025-07-03 21:50:31.577764+00 2025-07-03 21:50:31.577773+00 f t ADELANTO 10000.00 4 2949 \N +113249 2025-07-04 19:37:57.58424+00 2025-07-04 19:37:57.584248+00 f t SUBTOTAL 50000.00 1 2989 \N +113250 2025-07-04 19:37:57.585645+00 2025-07-04 19:37:57.585654+00 f t DESCUENTO 0.00 2 2989 \N +113251 2025-07-04 19:37:57.586689+00 2025-07-04 19:37:57.586695+00 f t TOTAL 50000.00 3 2989 \N +113252 2025-07-04 19:37:57.587653+00 2025-07-04 19:37:57.587659+00 f t ADELANTO 10000.00 4 2989 \N +112021 2025-07-03 22:42:10.345582+00 2025-07-03 22:42:10.345594+00 f t SUBTOTAL 42000.00 1 2950 \N +112022 2025-07-03 22:42:10.347252+00 2025-07-03 22:42:10.347261+00 f t DESCUENTO 0.00 2 2950 \N +112023 2025-07-03 22:42:10.348597+00 2025-07-03 22:42:10.348603+00 f t TOTAL 42000.00 3 2950 \N +112024 2025-07-03 22:42:10.349728+00 2025-07-03 22:42:10.349734+00 f t ADELANTO 9500.00 4 2950 \N +112029 2025-07-03 22:52:22.920095+00 2025-07-03 22:52:22.920104+00 f t SUBTOTAL 0.00 1 2951 \N +112030 2025-07-03 22:52:22.92147+00 2025-07-03 22:52:22.921477+00 f t DESCUENTO 0.00 2 2951 \N +112031 2025-07-03 22:52:22.92268+00 2025-07-03 22:52:22.922686+00 f t TOTAL 0.00 3 2951 \N +112032 2025-07-03 22:52:22.923873+00 2025-07-03 22:52:22.923878+00 f t ADELANTO 0.00 4 2951 \N +113417 2025-07-04 20:42:55.009632+00 2025-07-04 20:42:55.009641+00 f t SUBTOTAL 27500.00 1 2992 \N +113418 2025-07-04 20:42:55.011326+00 2025-07-04 20:42:55.011334+00 f t DESCUENTO 0.00 2 2992 \N +113419 2025-07-04 20:42:55.012724+00 2025-07-04 20:42:55.012767+00 f t TOTAL 27500.00 3 2992 \N +113420 2025-07-04 20:42:55.013964+00 2025-07-04 20:42:55.013969+00 f t ADELANTO 27500.00 4 2992 \N +116233 2025-07-06 00:25:15.612016+00 2025-07-06 00:25:15.612026+00 f t SUBTOTAL 42000.00 1 3064 \N +116234 2025-07-06 00:25:15.613794+00 2025-07-06 00:25:15.613802+00 f t DESCUENTO 0.00 2 3064 \N +116235 2025-07-06 00:25:15.614935+00 2025-07-06 00:25:15.614941+00 f t TOTAL 42000.00 3 3064 \N +116236 2025-07-06 00:25:15.61609+00 2025-07-06 00:25:15.616097+00 f t ADELANTO 9500.00 4 3064 \N +113493 2025-07-04 21:16:31.832703+00 2025-07-04 21:16:31.832711+00 f t SUBTOTAL 64500.00 1 2993 \N +113494 2025-07-04 21:16:31.834294+00 2025-07-04 21:16:31.834302+00 f t DESCUENTO 0.00 2 2993 \N +113495 2025-07-04 21:16:31.835446+00 2025-07-04 21:16:31.835452+00 f t TOTAL 64500.00 3 2993 \N +113496 2025-07-04 21:16:31.836397+00 2025-07-04 21:16:31.836402+00 f t ADELANTO 17000.00 4 2993 \N +112085 2025-07-03 23:59:57.13668+00 2025-07-03 23:59:57.136689+00 f t SUBTOTAL 42000.00 1 2952 \N +112086 2025-07-03 23:59:57.13834+00 2025-07-03 23:59:57.138348+00 f t DESCUENTO 0.00 2 2952 \N +112087 2025-07-03 23:59:57.139737+00 2025-07-03 23:59:57.139744+00 f t TOTAL 42000.00 3 2952 \N +112088 2025-07-03 23:59:57.140913+00 2025-07-03 23:59:57.140919+00 f t ADELANTO 9500.00 4 2952 \N +112149 2025-07-04 00:23:15.167944+00 2025-07-04 00:23:15.167955+00 f t SUBTOTAL 72000.00 1 2953 \N +112150 2025-07-04 00:23:15.169485+00 2025-07-04 00:23:15.169492+00 f t DESCUENTO 0.00 2 2953 \N +112151 2025-07-04 00:23:15.170689+00 2025-07-04 00:23:15.170694+00 f t TOTAL 72000.00 3 2953 \N +112152 2025-07-04 00:23:15.17183+00 2025-07-04 00:23:15.171836+00 f t ADELANTO 19000.00 4 2953 \N +114265 2025-07-05 05:38:43.160904+00 2025-07-05 05:38:43.160912+00 f t SUBTOTAL 0.00 1 3011 \N +114266 2025-07-05 05:38:43.162039+00 2025-07-05 05:38:43.162047+00 f t DESCUENTO 0.00 2 3011 \N +114267 2025-07-05 05:38:43.163123+00 2025-07-05 05:38:43.163159+00 f t TOTAL 0.00 3 3011 \N +114268 2025-07-05 05:38:43.164302+00 2025-07-05 05:38:43.164307+00 f t ADELANTO 0.00 4 3011 \N +112213 2025-07-04 00:26:45.895165+00 2025-07-04 00:26:45.895175+00 f t SUBTOTAL 87500.00 1 2954 \N +112214 2025-07-04 00:26:45.89661+00 2025-07-04 00:26:45.896616+00 f t DESCUENTO 0.00 2 2954 \N +112215 2025-07-04 00:26:45.897696+00 2025-07-04 00:26:45.897702+00 f t TOTAL 87500.00 3 2954 \N +112216 2025-07-04 00:26:45.898694+00 2025-07-04 00:26:45.8987+00 f t ADELANTO 19000.00 4 2954 \N +114361 2025-07-05 09:59:35.708227+00 2025-07-05 09:59:35.708235+00 f t SUBTOTAL 62000.00 1 3012 \N +114362 2025-07-05 09:59:35.709881+00 2025-07-05 09:59:35.70989+00 f t DESCUENTO 0.00 2 3012 \N +114363 2025-07-05 09:59:35.711307+00 2025-07-05 09:59:35.711313+00 f t TOTAL 62000.00 3 3012 \N +153629 2025-07-21 13:48:35.54968+00 2025-07-21 13:48:35.549688+00 f t SUBTOTAL 42000.00 1 4021 \N +153630 2025-07-21 13:48:35.551392+00 2025-07-21 13:48:35.551398+00 f t DESCUENTO 0.00 2 4021 \N +153631 2025-07-21 13:48:35.552608+00 2025-07-21 13:48:35.552614+00 f t TOTAL 42000.00 3 4021 \N +115457 2025-07-05 18:25:19.380432+00 2025-07-05 18:25:19.380441+00 f t SUBTOTAL 0.00 1 3041 \N +115458 2025-07-05 18:25:19.382936+00 2025-07-05 18:25:19.382943+00 f t DESCUENTO 0.00 2 3041 \N +115459 2025-07-05 18:25:19.384103+00 2025-07-05 18:25:19.38411+00 f t TOTAL 0.00 3 3041 \N +115460 2025-07-05 18:25:19.385353+00 2025-07-05 18:25:19.385359+00 f t ADELANTO 0.00 4 3041 \N +112841 2025-07-04 15:07:54.162257+00 2025-07-04 15:07:54.162266+00 f t SUBTOTAL 102700.00 1 2977 \N +112842 2025-07-04 15:07:54.163931+00 2025-07-04 15:07:54.163937+00 f t DESCUENTO 0.00 2 2977 \N +112843 2025-07-04 15:07:54.164913+00 2025-07-04 15:07:54.164917+00 f t TOTAL 102700.00 3 2977 \N +112844 2025-07-04 15:07:54.16582+00 2025-07-04 15:07:54.165825+00 f t ADELANTO 64700.00 4 2977 \N +115521 2025-07-05 18:41:59.526388+00 2025-07-05 18:41:59.526394+00 f t SUBTOTAL 64500.00 1 3042 \N +115522 2025-07-05 18:41:59.528235+00 2025-07-05 18:41:59.528242+00 f t DESCUENTO 0.00 2 3042 \N +115523 2025-07-05 18:41:59.529428+00 2025-07-05 18:41:59.529433+00 f t TOTAL 64500.00 3 3042 \N +115524 2025-07-05 18:41:59.53056+00 2025-07-05 18:41:59.530565+00 f t ADELANTO 17000.00 4 3042 \N +127301 2025-07-10 13:39:24.187767+00 2025-07-10 13:39:24.187776+00 f t SUBTOTAL 0.00 1 3354 \N +127302 2025-07-10 13:39:24.189464+00 2025-07-10 13:39:24.189469+00 f t DESCUENTO 0.00 2 3354 \N +127303 2025-07-10 13:39:24.19034+00 2025-07-10 13:39:24.190345+00 f t TOTAL 0.00 3 3354 \N +127304 2025-07-10 13:39:24.191373+00 2025-07-10 13:39:24.191379+00 f t ADELANTO 0.00 4 3354 \N +112277 2025-07-04 00:30:38.14986+00 2025-07-04 00:30:38.149872+00 f t SUBTOTAL 42000.00 1 2955 \N +112278 2025-07-04 00:30:38.151828+00 2025-07-04 00:30:38.151837+00 f t DESCUENTO 0.00 2 2955 \N +112279 2025-07-04 00:30:38.153151+00 2025-07-04 00:30:38.153157+00 f t TOTAL 42000.00 3 2955 \N +112280 2025-07-04 00:30:38.15437+00 2025-07-04 00:30:38.154375+00 f t ADELANTO 9500.00 4 2955 \N +112285 2025-07-04 00:52:45.128516+00 2025-07-04 00:52:45.128525+00 f t SUBTOTAL 0.00 1 2956 \N +112286 2025-07-04 00:52:45.130043+00 2025-07-04 00:52:45.130051+00 f t DESCUENTO 0.00 2 2956 \N +112287 2025-07-04 00:52:45.131414+00 2025-07-04 00:52:45.131419+00 f t TOTAL 0.00 3 2956 \N +112288 2025-07-04 00:52:45.132495+00 2025-07-04 00:52:45.1325+00 f t ADELANTO 0.00 4 2956 \N +113257 2025-07-04 19:43:23.057218+00 2025-07-04 19:43:23.057231+00 f t SUBTOTAL 0.00 1 2990 \N +112293 2025-07-04 00:53:09.824233+00 2025-07-04 00:53:09.824242+00 f t SUBTOTAL 0.00 1 2957 \N +112294 2025-07-04 00:53:09.825562+00 2025-07-04 00:53:09.825568+00 f t DESCUENTO 0.00 2 2957 \N +112295 2025-07-04 00:53:09.827226+00 2025-07-04 00:53:09.827235+00 f t TOTAL 0.00 3 2957 \N +112296 2025-07-04 00:53:09.828514+00 2025-07-04 00:53:09.82852+00 f t ADELANTO 0.00 4 2957 \N +113258 2025-07-04 19:43:23.058642+00 2025-07-04 19:43:23.058648+00 f t DESCUENTO 0.00 2 2990 \N +113259 2025-07-04 19:43:23.059996+00 2025-07-04 19:43:23.060001+00 f t TOTAL 0.00 3 2990 \N +113260 2025-07-04 19:43:23.061254+00 2025-07-04 19:43:23.06126+00 f t ADELANTO 0.00 4 2990 \N +112321 2025-07-04 01:44:23.845609+00 2025-07-04 01:44:23.845618+00 f t SUBTOTAL 49500.00 1 2958 \N +112322 2025-07-04 01:44:23.847076+00 2025-07-04 01:44:23.847082+00 f t DESCUENTO 0.00 2 2958 \N +112323 2025-07-04 01:44:23.848126+00 2025-07-04 01:44:23.848131+00 f t TOTAL 49500.00 3 2958 \N +112324 2025-07-04 01:44:23.849106+00 2025-07-04 01:44:23.849112+00 f t ADELANTO 11500.00 4 2958 \N +112329 2025-07-04 03:39:28.777784+00 2025-07-04 03:39:28.777794+00 f t SUBTOTAL 0.00 1 2959 \N +112330 2025-07-04 03:39:28.779395+00 2025-07-04 03:39:28.779401+00 f t DESCUENTO 0.00 2 2959 \N +112331 2025-07-04 03:39:28.78064+00 2025-07-04 03:39:28.780646+00 f t TOTAL 0.00 3 2959 \N +112332 2025-07-04 03:39:28.785547+00 2025-07-04 03:39:28.785555+00 f t ADELANTO 0.00 4 2959 \N +112345 2025-07-04 04:08:08.302248+00 2025-07-04 04:08:08.30226+00 f t SUBTOTAL 0.00 1 2960 \N +112346 2025-07-04 04:08:08.304676+00 2025-07-04 04:08:08.304687+00 f t DESCUENTO 0.00 2 2960 \N +112347 2025-07-04 04:08:08.306864+00 2025-07-04 04:08:08.306877+00 f t TOTAL 0.00 3 2960 \N +112348 2025-07-04 04:08:08.310299+00 2025-07-04 04:08:08.31031+00 f t ADELANTO 0.00 4 2960 \N +113501 2025-07-04 21:56:46.005017+00 2025-07-04 21:56:46.005027+00 f t SUBTOTAL 0.00 1 2994 \N +112353 2025-07-04 04:23:50.160236+00 2025-07-04 04:23:50.160246+00 f t SUBTOTAL 0.00 1 2961 \N +112354 2025-07-04 04:23:50.161662+00 2025-07-04 04:23:50.161669+00 f t DESCUENTO 0.00 2 2961 \N +112355 2025-07-04 04:23:50.162979+00 2025-07-04 04:23:50.162984+00 f t TOTAL 0.00 3 2961 \N +112356 2025-07-04 04:23:50.164337+00 2025-07-04 04:23:50.164343+00 f t ADELANTO 0.00 4 2961 \N +113502 2025-07-04 21:56:46.006599+00 2025-07-04 21:56:46.006606+00 f t DESCUENTO 0.00 2 2994 \N +113503 2025-07-04 21:56:46.007785+00 2025-07-04 21:56:46.007791+00 f t TOTAL 0.00 3 2994 \N +113504 2025-07-04 21:56:46.008863+00 2025-07-04 21:56:46.008867+00 f t ADELANTO 0.00 4 2994 \N +113689 2025-07-04 23:34:57.065032+00 2025-07-04 23:34:57.065044+00 f t SUBTOTAL 50000.00 1 2998 \N +113690 2025-07-04 23:34:57.066785+00 2025-07-04 23:34:57.066795+00 f t DESCUENTO 0.00 2 2998 \N +113691 2025-07-04 23:34:57.068223+00 2025-07-04 23:34:57.068232+00 f t TOTAL 50000.00 3 2998 \N +113692 2025-07-04 23:34:57.06954+00 2025-07-04 23:34:57.069548+00 f t ADELANTO 10000.00 4 2998 \N +113773 2025-07-05 00:25:31.642246+00 2025-07-05 00:25:31.642255+00 f t SUBTOTAL 0.00 1 3002 \N +113774 2025-07-05 00:25:31.643953+00 2025-07-05 00:25:31.643958+00 f t DESCUENTO 0.00 2 3002 \N +113775 2025-07-05 00:25:31.64489+00 2025-07-05 00:25:31.644895+00 f t TOTAL 0.00 3 3002 \N +113776 2025-07-05 00:25:31.645693+00 2025-07-05 00:25:31.645698+00 f t ADELANTO 0.00 4 3002 \N +112449 2025-07-04 07:41:17.018036+00 2025-07-04 07:41:17.018045+00 f t SUBTOTAL 0.00 1 2962 \N +112450 2025-07-04 07:41:17.019732+00 2025-07-04 07:41:17.01974+00 f t DESCUENTO 0.00 2 2962 \N +112451 2025-07-04 07:41:17.020784+00 2025-07-04 07:41:17.02079+00 f t TOTAL 0.00 3 2962 \N +112452 2025-07-04 07:41:17.022041+00 2025-07-04 07:41:17.022047+00 f t ADELANTO 0.00 4 2962 \N +112457 2025-07-04 09:58:42.586074+00 2025-07-04 09:58:42.586082+00 f t SUBTOTAL 0.00 1 2963 \N +112458 2025-07-04 09:58:42.587287+00 2025-07-04 09:58:42.587294+00 f t DESCUENTO 0.00 2 2963 \N +112459 2025-07-04 09:58:42.588429+00 2025-07-04 09:58:42.588434+00 f t TOTAL 0.00 3 2963 \N +112460 2025-07-04 09:58:42.589274+00 2025-07-04 09:58:42.589279+00 f t ADELANTO 0.00 4 2963 \N +114213 2025-07-05 05:19:02.694645+00 2025-07-05 05:19:02.694661+00 f t SUBTOTAL 0.00 1 3009 \N +114214 2025-07-05 05:19:02.698343+00 2025-07-05 05:19:02.698352+00 f t DESCUENTO 0.00 2 3009 \N +114215 2025-07-05 05:19:02.700804+00 2025-07-05 05:19:02.700817+00 f t TOTAL 0.00 3 3009 \N +114216 2025-07-05 05:19:02.703208+00 2025-07-05 05:19:02.70322+00 f t ADELANTO 0.00 4 3009 \N +112489 2025-07-04 10:39:59.485078+00 2025-07-04 10:39:59.485088+00 f t SUBTOTAL 50000.00 1 2964 \N +112490 2025-07-04 10:39:59.486982+00 2025-07-04 10:39:59.48699+00 f t DESCUENTO 0.00 2 2964 \N +112491 2025-07-04 10:39:59.488238+00 2025-07-04 10:39:59.488244+00 f t TOTAL 50000.00 3 2964 \N +112492 2025-07-04 10:39:59.489342+00 2025-07-04 10:39:59.489349+00 f t ADELANTO 10000.00 4 2964 \N +114364 2025-07-05 09:59:35.712492+00 2025-07-05 09:59:35.712498+00 f t ADELANTO 12000.00 4 3012 \N +112701 2025-07-04 12:23:42.346128+00 2025-07-04 12:23:42.346139+00 f t SUBTOTAL 0.00 1 2970 \N +112702 2025-07-04 12:23:42.348374+00 2025-07-04 12:23:42.348385+00 f t DESCUENTO 0.00 2 2970 \N +112703 2025-07-04 12:23:42.349655+00 2025-07-04 12:23:42.349662+00 f t TOTAL 0.00 3 2970 \N +112704 2025-07-04 12:23:42.351239+00 2025-07-04 12:23:42.351247+00 f t ADELANTO 0.00 4 2970 \N +112517 2025-07-04 11:02:28.435757+00 2025-07-04 11:02:28.435769+00 f t SUBTOTAL 42000.00 1 2965 \N +112518 2025-07-04 11:02:28.437552+00 2025-07-04 11:02:28.437562+00 f t DESCUENTO 0.00 2 2965 \N +112519 2025-07-04 11:02:28.439407+00 2025-07-04 11:02:28.439417+00 f t TOTAL 42000.00 3 2965 \N +112520 2025-07-04 11:02:28.44094+00 2025-07-04 11:02:28.440945+00 f t ADELANTO 9500.00 4 2965 \N +112797 2025-07-04 13:36:33.714392+00 2025-07-04 13:36:33.714401+00 f t SUBTOTAL 0.00 1 2974 \N +112798 2025-07-04 13:36:33.716607+00 2025-07-04 13:36:33.716615+00 f t DESCUENTO 0.00 2 2974 \N +112799 2025-07-04 13:36:33.717916+00 2025-07-04 13:36:33.717925+00 f t TOTAL 0.00 3 2974 \N +112800 2025-07-04 13:36:33.718997+00 2025-07-04 13:36:33.719003+00 f t ADELANTO 0.00 4 2974 \N +112849 2025-07-04 15:44:58.521662+00 2025-07-04 15:44:58.521672+00 f t SUBTOTAL 0.00 1 2978 \N +112850 2025-07-04 15:44:58.52279+00 2025-07-04 15:44:58.522797+00 f t DESCUENTO 0.00 2 2978 \N +112851 2025-07-04 15:44:58.52379+00 2025-07-04 15:44:58.523795+00 f t TOTAL 0.00 3 2978 \N +112852 2025-07-04 15:44:58.524631+00 2025-07-04 15:44:58.524636+00 f t ADELANTO 0.00 4 2978 \N +118325 2025-07-06 20:23:47.600174+00 2025-07-06 20:23:47.600185+00 f t SUBTOTAL 50000.00 1 3124 \N +118326 2025-07-06 20:23:47.601862+00 2025-07-06 20:23:47.601871+00 f t DESCUENTO 0.00 2 3124 \N +118327 2025-07-06 20:23:47.60333+00 2025-07-06 20:23:47.603338+00 f t TOTAL 50000.00 3 3124 \N +118328 2025-07-06 20:23:47.604358+00 2025-07-06 20:23:47.604363+00 f t ADELANTO 10000.00 4 3124 \N +115585 2025-07-05 19:13:31.129071+00 2025-07-05 19:13:31.129083+00 f t SUBTOTAL 0.00 1 3046 \N +115586 2025-07-05 19:13:31.130781+00 2025-07-05 19:13:31.130793+00 f t DESCUENTO 0.00 2 3046 \N +115587 2025-07-05 19:13:31.13229+00 2025-07-05 19:13:31.132297+00 f t TOTAL 0.00 3 3046 \N +115588 2025-07-05 19:13:31.133485+00 2025-07-05 19:13:31.133492+00 f t ADELANTO 0.00 4 3046 \N +115701 2025-07-05 19:30:06.660137+00 2025-07-05 19:30:06.660149+00 f t SUBTOTAL 99000.00 1 3048 \N +115702 2025-07-05 19:30:06.662345+00 2025-07-05 19:30:06.662354+00 f t DESCUENTO 0.00 2 3048 \N +115703 2025-07-05 19:30:06.664287+00 2025-07-05 19:30:06.664296+00 f t TOTAL 99000.00 3 3048 \N +115704 2025-07-05 19:30:06.665956+00 2025-07-05 19:30:06.665964+00 f t ADELANTO 23000.00 4 3048 \N +113193 2025-07-04 18:14:34.670656+00 2025-07-04 18:14:34.670665+00 f t SUBTOTAL 123500.00 1 2987 \N +113194 2025-07-04 18:14:34.672469+00 2025-07-04 18:14:34.672477+00 f t DESCUENTO 0.00 2 2987 \N +113195 2025-07-04 18:14:34.673722+00 2025-07-04 18:14:34.67373+00 f t TOTAL 123500.00 3 2987 \N +113196 2025-07-04 18:14:34.674732+00 2025-07-04 18:14:34.674737+00 f t ADELANTO 26000.00 4 2987 \N +112597 2025-07-04 11:19:37.648341+00 2025-07-04 11:19:37.648351+00 f t SUBTOTAL 111000.00 1 2966 \N +112598 2025-07-04 11:19:37.650166+00 2025-07-04 11:19:37.650176+00 f t DESCUENTO 0.00 2 2966 \N +112599 2025-07-04 11:19:37.651576+00 2025-07-04 11:19:37.651585+00 f t TOTAL 111000.00 3 2966 \N +112600 2025-07-04 11:19:37.653094+00 2025-07-04 11:19:37.653102+00 f t ADELANTO 23500.00 4 2966 \N +116273 2025-07-06 00:26:28.551835+00 2025-07-06 00:26:28.551846+00 f t SUBTOTAL 27500.00 1 3065 \N +116274 2025-07-06 00:26:28.553644+00 2025-07-06 00:26:28.553654+00 f t DESCUENTO 0.00 2 3065 \N +116275 2025-07-06 00:26:28.555233+00 2025-07-06 00:26:28.555242+00 f t TOTAL 27500.00 3 3065 \N +116276 2025-07-06 00:26:28.556746+00 2025-07-06 00:26:28.556755+00 f t ADELANTO 27500.00 4 3065 \N +113633 2025-07-04 22:54:55.224526+00 2025-07-04 22:54:55.224536+00 f t SUBTOTAL 72000.00 1 2995 \N +113634 2025-07-04 22:54:55.226068+00 2025-07-04 22:54:55.226074+00 f t DESCUENTO 0.00 2 2995 \N +113635 2025-07-04 22:54:55.227226+00 2025-07-04 22:54:55.227233+00 f t TOTAL 72000.00 3 2995 \N +113636 2025-07-04 22:54:55.22818+00 2025-07-04 22:54:55.228185+00 f t ADELANTO 19000.00 4 2995 \N +113669 2025-07-04 23:34:35.697348+00 2025-07-04 23:34:35.697357+00 f t SUBTOTAL 0.00 1 2999 \N +113670 2025-07-04 23:34:35.698788+00 2025-07-04 23:34:35.698795+00 f t DESCUENTO 0.00 2 2999 \N +113671 2025-07-04 23:34:35.699987+00 2025-07-04 23:34:35.699993+00 f t TOTAL 0.00 3 2999 \N +113672 2025-07-04 23:34:35.701374+00 2025-07-04 23:34:35.701379+00 f t ADELANTO 0.00 4 2999 \N +116689 2025-07-06 08:12:53.799303+00 2025-07-06 08:12:53.799312+00 f t SUBTOTAL 0.00 1 3076 \N +116690 2025-07-06 08:12:53.801211+00 2025-07-06 08:12:53.801218+00 f t DESCUENTO 0.00 2 3076 \N +116691 2025-07-06 08:12:53.802338+00 2025-07-06 08:12:53.802343+00 f t TOTAL 0.00 3 3076 \N +116692 2025-07-06 08:12:53.803493+00 2025-07-06 08:12:53.8035+00 f t ADELANTO 0.00 4 3076 \N +113885 2025-07-05 01:23:40.38084+00 2025-07-05 01:23:40.380849+00 f t SUBTOTAL 73700.00 1 3005 \N +113886 2025-07-05 01:23:40.382534+00 2025-07-05 01:23:40.382542+00 f t DESCUENTO 0.00 2 3005 \N +113887 2025-07-05 01:23:40.383911+00 2025-07-05 01:23:40.38392+00 f t TOTAL 73700.00 3 3005 \N +113888 2025-07-05 01:23:40.385236+00 2025-07-05 01:23:40.385242+00 f t ADELANTO 35700.00 4 3005 \N +113913 2025-07-05 02:02:46.243419+00 2025-07-05 02:02:46.243428+00 f t SUBTOTAL 64500.00 1 3006 \N +113914 2025-07-05 02:02:46.245527+00 2025-07-05 02:02:46.245539+00 f t DESCUENTO 0.00 2 3006 \N +113915 2025-07-05 02:02:46.247009+00 2025-07-05 02:02:46.247016+00 f t TOTAL 64500.00 3 3006 \N +113916 2025-07-05 02:02:46.248522+00 2025-07-05 02:02:46.248529+00 f t ADELANTO 17000.00 4 3006 \N +114013 2025-07-05 03:00:22.758528+00 2025-07-05 03:00:22.758543+00 f t SUBTOTAL 70000.00 1 3007 \N +114014 2025-07-05 03:00:22.761883+00 2025-07-05 03:00:22.761901+00 f t DESCUENTO 0.00 2 3007 \N +114015 2025-07-05 03:00:22.764544+00 2025-07-05 03:00:22.764557+00 f t TOTAL 70000.00 3 3007 \N +114016 2025-07-05 03:00:22.767042+00 2025-07-05 03:00:22.767057+00 f t ADELANTO 10000.00 4 3007 \N +117137 2025-07-06 11:42:26.482289+00 2025-07-06 11:42:26.482298+00 f t SUBTOTAL 50000.00 1 3083 \N +117138 2025-07-06 11:42:26.483848+00 2025-07-06 11:42:26.483884+00 f t DESCUENTO 0.00 2 3083 \N +117139 2025-07-06 11:42:26.485026+00 2025-07-06 11:42:26.485031+00 f t TOTAL 50000.00 3 3083 \N +117140 2025-07-06 11:42:26.48612+00 2025-07-06 11:42:26.486126+00 f t ADELANTO 10000.00 4 3083 \N +117325 2025-07-06 13:28:15.719272+00 2025-07-06 13:28:15.719284+00 f t SUBTOTAL 0.00 1 3089 \N +117326 2025-07-06 13:28:15.720837+00 2025-07-06 13:28:15.720847+00 f t DESCUENTO 0.00 2 3089 \N +117327 2025-07-06 13:28:15.72215+00 2025-07-06 13:28:15.722158+00 f t TOTAL 0.00 3 3089 \N +117328 2025-07-06 13:28:15.723408+00 2025-07-06 13:28:15.723416+00 f t ADELANTO 0.00 4 3089 \N +114369 2025-07-05 11:38:56.186965+00 2025-07-05 11:38:56.186974+00 f t SUBTOTAL 0.00 1 3013 \N +114370 2025-07-05 11:38:56.188353+00 2025-07-05 11:38:56.18836+00 f t DESCUENTO 0.00 2 3013 \N +114371 2025-07-05 11:38:56.189432+00 2025-07-05 11:38:56.189437+00 f t TOTAL 0.00 3 3013 \N +114372 2025-07-05 11:38:56.19041+00 2025-07-05 11:38:56.190416+00 f t ADELANTO 0.00 4 3013 \N +114385 2025-07-05 11:45:05.133478+00 2025-07-05 11:45:05.133492+00 f t SUBTOTAL 0.00 1 3015 \N +114386 2025-07-05 11:45:05.137366+00 2025-07-05 11:45:05.13738+00 f t DESCUENTO 0.00 2 3015 \N +114387 2025-07-05 11:45:05.13981+00 2025-07-05 11:45:05.139824+00 f t TOTAL 0.00 3 3015 \N +114388 2025-07-05 11:45:05.142034+00 2025-07-05 11:45:05.142047+00 f t ADELANTO 0.00 4 3015 \N +153632 2025-07-21 13:48:35.553642+00 2025-07-21 13:48:35.553647+00 f t ADELANTO 9500.00 4 4021 \N +121425 2025-07-08 01:31:06.138999+00 2025-07-08 01:31:06.139035+00 f t SUBTOTAL 64500.00 1 3217 \N +118389 2025-07-06 20:45:33.497983+00 2025-07-06 20:45:33.497991+00 f t SUBTOTAL 0.00 1 3127 \N +118390 2025-07-06 20:45:33.499362+00 2025-07-06 20:45:33.499369+00 f t DESCUENTO 0.00 2 3127 \N +118391 2025-07-06 20:45:33.500647+00 2025-07-06 20:45:33.500653+00 f t TOTAL 0.00 3 3127 \N +118392 2025-07-06 20:45:33.501678+00 2025-07-06 20:45:33.501686+00 f t ADELANTO 0.00 4 3127 \N +121426 2025-07-08 01:31:06.140619+00 2025-07-08 01:31:06.140626+00 f t DESCUENTO 0.00 2 3217 \N +121427 2025-07-08 01:31:06.14192+00 2025-07-08 01:31:06.141925+00 f t TOTAL 64500.00 3 3217 \N +121428 2025-07-08 01:31:06.143109+00 2025-07-08 01:31:06.143114+00 f t ADELANTO 17000.00 4 3217 \N +115925 2025-07-05 23:04:09.87222+00 2025-07-05 23:04:09.872229+00 f t SUBTOTAL 72000.00 1 3058 \N +115926 2025-07-05 23:04:09.873979+00 2025-07-05 23:04:09.873988+00 f t DESCUENTO 0.00 2 3058 \N +115927 2025-07-05 23:04:09.875465+00 2025-07-05 23:04:09.875473+00 f t TOTAL 72000.00 3 3058 \N +115928 2025-07-05 23:04:09.876711+00 2025-07-05 23:04:09.87672+00 f t ADELANTO 19000.00 4 3058 \N +115965 2025-07-05 23:20:17.622605+00 2025-07-05 23:20:17.622618+00 f t SUBTOTAL 42000.00 1 3059 \N +115966 2025-07-05 23:20:17.624674+00 2025-07-05 23:20:17.624685+00 f t DESCUENTO 0.00 2 3059 \N +115967 2025-07-05 23:20:17.626455+00 2025-07-05 23:20:17.626464+00 f t TOTAL 42000.00 3 3059 \N +115968 2025-07-05 23:20:17.627945+00 2025-07-05 23:20:17.627954+00 f t ADELANTO 9500.00 4 3059 \N +116005 2025-07-05 23:34:51.965583+00 2025-07-05 23:34:51.965592+00 f t SUBTOTAL 42000.00 1 3060 \N +116006 2025-07-05 23:34:51.967395+00 2025-07-05 23:34:51.967402+00 f t DESCUENTO 0.00 2 3060 \N +116007 2025-07-05 23:34:51.969438+00 2025-07-05 23:34:51.969444+00 f t TOTAL 42000.00 3 3060 \N +116008 2025-07-05 23:34:51.970308+00 2025-07-05 23:34:51.970313+00 f t ADELANTO 9500.00 4 3060 \N +118789 2025-07-06 22:36:59.173124+00 2025-07-06 22:36:59.173134+00 f t SUBTOTAL 0.00 1 3135 \N +118790 2025-07-06 22:36:59.175406+00 2025-07-06 22:36:59.175414+00 f t DESCUENTO 0.00 2 3135 \N +118791 2025-07-06 22:36:59.176528+00 2025-07-06 22:36:59.176534+00 f t TOTAL 0.00 3 3135 \N +118792 2025-07-06 22:36:59.177524+00 2025-07-06 22:36:59.17753+00 f t ADELANTO 0.00 4 3135 \N +118833 2025-07-07 00:32:39.711672+00 2025-07-07 00:32:39.711681+00 f t SUBTOTAL 0.00 1 3138 \N +118834 2025-07-07 00:32:39.713391+00 2025-07-07 00:32:39.713397+00 f t DESCUENTO 0.00 2 3138 \N +118835 2025-07-07 00:32:39.714842+00 2025-07-07 00:32:39.714848+00 f t TOTAL 0.00 3 3138 \N +118836 2025-07-07 00:32:39.715942+00 2025-07-07 00:32:39.715947+00 f t ADELANTO 0.00 4 3138 \N +116393 2025-07-06 03:59:32.251748+00 2025-07-06 03:59:32.251757+00 f t SUBTOTAL 49500.00 1 3070 \N +116394 2025-07-06 03:59:32.254064+00 2025-07-06 03:59:32.254071+00 f t DESCUENTO 0.00 2 3070 \N +116395 2025-07-06 03:59:32.255244+00 2025-07-06 03:59:32.255249+00 f t TOTAL 49500.00 3 3070 \N +116396 2025-07-06 03:59:32.256433+00 2025-07-06 03:59:32.256439+00 f t ADELANTO 11500.00 4 3070 \N +116437 2025-07-06 04:48:05.39031+00 2025-07-06 04:48:05.390319+00 f t SUBTOTAL 42000.00 1 3073 \N +116438 2025-07-06 04:48:05.391994+00 2025-07-06 04:48:05.392001+00 f t DESCUENTO 0.00 2 3073 \N +116439 2025-07-06 04:48:05.393515+00 2025-07-06 04:48:05.393522+00 f t TOTAL 42000.00 3 3073 \N +116440 2025-07-06 04:48:05.394667+00 2025-07-06 04:48:05.394673+00 f t ADELANTO 9500.00 4 3073 \N +119093 2025-07-07 03:02:52.314536+00 2025-07-07 03:02:52.314545+00 f t SUBTOTAL 42000.00 1 3147 \N +119094 2025-07-07 03:02:52.316112+00 2025-07-07 03:02:52.316119+00 f t DESCUENTO 0.00 2 3147 \N +119095 2025-07-07 03:02:52.317168+00 2025-07-07 03:02:52.317174+00 f t TOTAL 42000.00 3 3147 \N +119096 2025-07-07 03:02:52.318149+00 2025-07-07 03:02:52.318155+00 f t ADELANTO 9500.00 4 3147 \N +119177 2025-07-07 03:30:50.646475+00 2025-07-07 03:30:50.646484+00 f t SUBTOTAL 0.00 1 3152 \N +119178 2025-07-07 03:30:50.647725+00 2025-07-07 03:30:50.647732+00 f t DESCUENTO 0.00 2 3152 \N +119179 2025-07-07 03:30:50.648747+00 2025-07-07 03:30:50.648753+00 f t TOTAL 0.00 3 3152 \N +119180 2025-07-07 03:30:50.649707+00 2025-07-07 03:30:50.649712+00 f t ADELANTO 0.00 4 3152 \N +116633 2025-07-06 05:59:29.707331+00 2025-07-06 05:59:29.707339+00 f t SUBTOTAL 56000.00 1 3075 \N +116634 2025-07-06 05:59:29.709033+00 2025-07-06 05:59:29.709041+00 f t DESCUENTO 0.00 2 3075 \N +116635 2025-07-06 05:59:29.710419+00 2025-07-06 05:59:29.710427+00 f t TOTAL 56000.00 3 3075 \N +116636 2025-07-06 05:59:29.711557+00 2025-07-06 05:59:29.711563+00 f t ADELANTO 48000.00 4 3075 \N +114537 2025-07-05 12:02:33.179782+00 2025-07-05 12:02:33.179791+00 f t SUBTOTAL 0.00 1 3016 \N +114538 2025-07-05 12:02:33.181876+00 2025-07-05 12:02:33.181883+00 f t DESCUENTO 0.00 2 3016 \N +114539 2025-07-05 12:02:33.183076+00 2025-07-05 12:02:33.183083+00 f t TOTAL 0.00 3 3016 \N +114540 2025-07-05 12:02:33.184387+00 2025-07-05 12:02:33.184393+00 f t ADELANTO 0.00 4 3016 \N +119285 2025-07-07 06:08:53.22008+00 2025-07-07 06:08:53.220089+00 f t SUBTOTAL 50000.00 1 3155 \N +114545 2025-07-05 12:04:00.839844+00 2025-07-05 12:04:00.839853+00 f t SUBTOTAL 0.00 1 3017 \N +114546 2025-07-05 12:04:00.84141+00 2025-07-05 12:04:00.841423+00 f t DESCUENTO 0.00 2 3017 \N +114547 2025-07-05 12:04:00.842886+00 2025-07-05 12:04:00.842896+00 f t TOTAL 0.00 3 3017 \N +114548 2025-07-05 12:04:00.844238+00 2025-07-05 12:04:00.844248+00 f t ADELANTO 0.00 4 3017 \N +119286 2025-07-07 06:08:53.221872+00 2025-07-07 06:08:53.22188+00 f t DESCUENTO 0.00 2 3155 \N +119287 2025-07-07 06:08:53.223184+00 2025-07-07 06:08:53.22319+00 f t TOTAL 50000.00 3 3155 \N +119288 2025-07-07 06:08:53.224566+00 2025-07-07 06:08:53.224572+00 f t ADELANTO 10000.00 4 3155 \N +114573 2025-07-05 12:06:57.825616+00 2025-07-05 12:06:57.825626+00 f t SUBTOTAL 0.00 1 3018 \N +114574 2025-07-05 12:06:57.827648+00 2025-07-05 12:06:57.827655+00 f t DESCUENTO 0.00 2 3018 \N +114575 2025-07-05 12:06:57.828973+00 2025-07-05 12:06:57.828979+00 f t TOTAL 0.00 3 3018 \N +114576 2025-07-05 12:06:57.830169+00 2025-07-05 12:06:57.830177+00 f t ADELANTO 0.00 4 3018 \N +114601 2025-07-05 12:08:12.671723+00 2025-07-05 12:08:12.671731+00 f t SUBTOTAL 49700.00 1 3019 \N +114602 2025-07-05 12:08:12.673187+00 2025-07-05 12:08:12.673192+00 f t DESCUENTO 0.00 2 3019 \N +114603 2025-07-05 12:08:12.674292+00 2025-07-05 12:08:12.674299+00 f t TOTAL 49700.00 3 3019 \N +114604 2025-07-05 12:08:12.675291+00 2025-07-05 12:08:12.675296+00 f t ADELANTO 11700.00 4 3019 \N +117433 2025-07-06 13:41:04.622407+00 2025-07-06 13:41:04.622415+00 f t SUBTOTAL 42000.00 1 3091 \N +117434 2025-07-06 13:41:04.624036+00 2025-07-06 13:41:04.624045+00 f t DESCUENTO 0.00 2 3091 \N +117435 2025-07-06 13:41:04.625164+00 2025-07-06 13:41:04.625172+00 f t TOTAL 42000.00 3 3091 \N +117436 2025-07-06 13:41:04.626268+00 2025-07-06 13:41:04.626274+00 f t ADELANTO 9500.00 4 3091 \N +117461 2025-07-06 14:00:14.460507+00 2025-07-06 14:00:14.460517+00 f t SUBTOTAL 88000.00 1 3092 \N +117462 2025-07-06 14:00:14.463497+00 2025-07-06 14:00:14.463511+00 f t DESCUENTO 0.00 2 3092 \N +117463 2025-07-06 14:00:14.466171+00 2025-07-06 14:00:14.466183+00 f t TOTAL 88000.00 3 3092 \N +117464 2025-07-06 14:00:14.468943+00 2025-07-06 14:00:14.468956+00 f t ADELANTO 19000.00 4 3092 \N +117470 2025-07-06 14:11:33.023737+00 2025-07-06 14:11:33.023743+00 f t DESCUENTO 0.00 2 3093 \N +117471 2025-07-06 14:11:33.024842+00 2025-07-06 14:11:33.024848+00 f t TOTAL 0.00 3 3093 \N +117472 2025-07-06 14:11:33.025904+00 2025-07-06 14:11:33.02591+00 f t ADELANTO 0.00 4 3093 \N +130061 2025-07-11 18:25:17.51918+00 2025-07-11 18:25:17.519189+00 f t SUBTOTAL 0.00 1 3426 \N +118277 2025-07-06 20:21:24.876584+00 2025-07-06 20:21:24.876592+00 f t SUBTOTAL 132000.00 1 3123 \N +118278 2025-07-06 20:21:24.878761+00 2025-07-06 20:21:24.878768+00 f t DESCUENTO 0.00 2 3123 \N +118279 2025-07-06 20:21:24.87983+00 2025-07-06 20:21:24.879835+00 f t TOTAL 132000.00 3 3123 \N +118280 2025-07-06 20:21:24.881001+00 2025-07-06 20:21:24.881007+00 f t ADELANTO 27000.00 4 3123 \N +114709 2025-07-05 12:13:14.698621+00 2025-07-05 12:13:14.698629+00 f t SUBTOTAL 70000.00 1 3020 \N +114710 2025-07-05 12:13:14.700153+00 2025-07-05 12:13:14.70016+00 f t DESCUENTO 0.00 2 3020 \N +114711 2025-07-05 12:13:14.701152+00 2025-07-05 12:13:14.701157+00 f t TOTAL 70000.00 3 3020 \N +114712 2025-07-05 12:13:14.702256+00 2025-07-05 12:13:14.702261+00 f t ADELANTO 10000.00 4 3020 \N +114717 2025-07-05 12:20:07.08298+00 2025-07-05 12:20:07.082993+00 f t SUBTOTAL 0.00 1 3021 \N +114718 2025-07-05 12:20:07.085417+00 2025-07-05 12:20:07.085429+00 f t DESCUENTO 0.00 2 3021 \N +114719 2025-07-05 12:20:07.087679+00 2025-07-05 12:20:07.087691+00 f t TOTAL 0.00 3 3021 \N +114720 2025-07-05 12:20:07.089871+00 2025-07-05 12:20:07.089882+00 f t ADELANTO 0.00 4 3021 \N +115749 2025-07-05 20:12:38.20268+00 2025-07-05 20:12:38.202694+00 f t SUBTOTAL 42000.00 1 3049 \N +115750 2025-07-05 20:12:38.204485+00 2025-07-05 20:12:38.204495+00 f t DESCUENTO 0.00 2 3049 \N +115751 2025-07-05 20:12:38.206139+00 2025-07-05 20:12:38.206149+00 f t TOTAL 42000.00 3 3049 \N +115752 2025-07-05 20:12:38.207505+00 2025-07-05 20:12:38.207514+00 f t ADELANTO 9500.00 4 3049 \N +115849 2025-07-05 22:46:43.709868+00 2025-07-05 22:46:43.709876+00 f t SUBTOTAL 49500.00 1 3056 \N +115850 2025-07-05 22:46:43.711914+00 2025-07-05 22:46:43.711921+00 f t DESCUENTO 0.00 2 3056 \N +115851 2025-07-05 22:46:43.713288+00 2025-07-05 22:46:43.713294+00 f t TOTAL 49500.00 3 3056 \N +115852 2025-07-05 22:46:43.714492+00 2025-07-05 22:46:43.714498+00 f t ADELANTO 11500.00 4 3056 \N +118841 2025-07-07 00:45:25.293177+00 2025-07-07 00:45:25.293185+00 f t SUBTOTAL 0.00 1 3139 \N +118842 2025-07-07 00:45:25.294509+00 2025-07-07 00:45:25.294515+00 f t DESCUENTO 0.00 2 3139 \N +118843 2025-07-07 00:45:25.295819+00 2025-07-07 00:45:25.295824+00 f t TOTAL 0.00 3 3139 \N +118844 2025-07-07 00:45:25.297076+00 2025-07-07 00:45:25.297081+00 f t ADELANTO 0.00 4 3139 \N +118961 2025-07-07 02:14:01.926166+00 2025-07-07 02:14:01.926178+00 f t SUBTOTAL 0.00 1 3145 \N +118962 2025-07-07 02:14:01.928658+00 2025-07-07 02:14:01.928667+00 f t DESCUENTO 0.00 2 3145 \N +118963 2025-07-07 02:14:01.93034+00 2025-07-07 02:14:01.930347+00 f t TOTAL 0.00 3 3145 \N +118964 2025-07-07 02:14:01.931702+00 2025-07-07 02:14:01.931708+00 f t ADELANTO 0.00 4 3145 \N +116357 2025-07-06 03:31:49.639543+00 2025-07-06 03:31:49.639552+00 f t SUBTOTAL 0.00 1 3068 \N +116358 2025-07-06 03:31:49.641366+00 2025-07-06 03:31:49.641372+00 f t DESCUENTO 0.00 2 3068 \N +116359 2025-07-06 03:31:49.642482+00 2025-07-06 03:31:49.642488+00 f t TOTAL 0.00 3 3068 \N +116360 2025-07-06 03:31:49.643564+00 2025-07-06 03:31:49.643569+00 f t ADELANTO 0.00 4 3068 \N +116401 2025-07-06 04:02:45.200618+00 2025-07-06 04:02:45.200627+00 f t SUBTOTAL 0.00 1 3071 \N +116402 2025-07-06 04:02:45.202116+00 2025-07-06 04:02:45.202123+00 f t DESCUENTO 0.00 2 3071 \N +116403 2025-07-06 04:02:45.203713+00 2025-07-06 04:02:45.20372+00 f t TOTAL 0.00 3 3071 \N +116404 2025-07-06 04:02:45.204965+00 2025-07-06 04:02:45.204971+00 f t ADELANTO 0.00 4 3071 \N +114813 2025-07-05 12:22:30.124929+00 2025-07-05 12:22:30.124941+00 f t SUBTOTAL 70000.00 1 3022 \N +114814 2025-07-05 12:22:30.127062+00 2025-07-05 12:22:30.127071+00 f t DESCUENTO 0.00 2 3022 \N +114815 2025-07-05 12:22:30.128881+00 2025-07-05 12:22:30.128892+00 f t TOTAL 70000.00 3 3022 \N +114816 2025-07-05 12:22:30.130821+00 2025-07-05 12:22:30.130832+00 f t ADELANTO 10000.00 4 3022 \N +119185 2025-07-07 04:06:08.197103+00 2025-07-07 04:06:08.197113+00 f t SUBTOTAL 0.00 1 3153 \N +119186 2025-07-07 04:06:08.199359+00 2025-07-07 04:06:08.199366+00 f t DESCUENTO 0.00 2 3153 \N +119187 2025-07-07 04:06:08.200865+00 2025-07-07 04:06:08.200872+00 f t TOTAL 0.00 3 3153 \N +119188 2025-07-07 04:06:08.203798+00 2025-07-07 04:06:08.203806+00 f t ADELANTO 0.00 4 3153 \N +119293 2025-07-07 07:18:56.986451+00 2025-07-07 07:18:56.98646+00 f t SUBTOTAL 0.00 1 3156 \N +119294 2025-07-07 07:18:56.98787+00 2025-07-07 07:18:56.987877+00 f t DESCUENTO 0.00 2 3156 \N +114845 2025-07-05 12:40:32.63026+00 2025-07-05 12:40:32.630268+00 f t SUBTOTAL 42000.00 1 3023 \N +114846 2025-07-05 12:40:32.632382+00 2025-07-05 12:40:32.632395+00 f t DESCUENTO 0.00 2 3023 \N +114847 2025-07-05 12:40:32.634116+00 2025-07-05 12:40:32.634125+00 f t TOTAL 42000.00 3 3023 \N +114848 2025-07-05 12:40:32.635691+00 2025-07-05 12:40:32.635701+00 f t ADELANTO 9500.00 4 3023 \N +119295 2025-07-07 07:18:56.989489+00 2025-07-07 07:18:56.989495+00 f t TOTAL 0.00 3 3156 \N +119296 2025-07-07 07:18:56.991042+00 2025-07-07 07:18:56.991047+00 f t ADELANTO 0.00 4 3156 \N +119549 2025-07-07 13:13:21.151533+00 2025-07-07 13:13:21.151544+00 f t SUBTOTAL 0.00 1 3164 \N +119550 2025-07-07 13:13:21.153132+00 2025-07-07 13:13:21.15314+00 f t DESCUENTO 0.00 2 3164 \N +119551 2025-07-07 13:13:21.154927+00 2025-07-07 13:13:21.154936+00 f t TOTAL 0.00 3 3164 \N +119552 2025-07-07 13:13:21.156205+00 2025-07-07 13:13:21.156212+00 f t ADELANTO 0.00 4 3164 \N +119569 2025-07-07 13:13:32.686611+00 2025-07-07 13:13:32.686621+00 f t SUBTOTAL 49500.00 1 3163 \N +119570 2025-07-07 13:13:32.694068+00 2025-07-07 13:13:32.694077+00 f t DESCUENTO 0.00 2 3163 \N +119571 2025-07-07 13:13:32.695862+00 2025-07-07 13:13:32.69587+00 f t TOTAL 49500.00 3 3163 \N +119572 2025-07-07 13:13:32.699825+00 2025-07-07 13:13:32.699916+00 f t ADELANTO 11500.00 4 3163 \N +117205 2025-07-06 12:16:37.737309+00 2025-07-06 12:16:37.737321+00 f t SUBTOTAL 42000.00 1 3084 \N +117206 2025-07-06 12:16:37.739362+00 2025-07-06 12:16:37.73937+00 f t DESCUENTO 0.00 2 3084 \N +117207 2025-07-06 12:16:37.74072+00 2025-07-06 12:16:37.740726+00 f t TOTAL 42000.00 3 3084 \N +117208 2025-07-06 12:16:37.741855+00 2025-07-06 12:16:37.74186+00 f t ADELANTO 9500.00 4 3084 \N +114933 2025-07-05 12:53:24.45727+00 2025-07-05 12:53:24.457278+00 f t SUBTOTAL 42000.00 1 3024 \N +114934 2025-07-05 12:53:24.45868+00 2025-07-05 12:53:24.458686+00 f t DESCUENTO 0.00 2 3024 \N +114935 2025-07-05 12:53:24.459804+00 2025-07-05 12:53:24.45981+00 f t TOTAL 42000.00 3 3024 \N +114936 2025-07-05 12:53:24.460819+00 2025-07-05 12:53:24.460824+00 f t ADELANTO 9500.00 4 3024 \N +117361 2025-07-06 13:31:13.470438+00 2025-07-06 13:31:13.470448+00 f t SUBTOTAL 0.00 1 3090 \N +117362 2025-07-06 13:31:13.472491+00 2025-07-06 13:31:13.472499+00 f t DESCUENTO 0.00 2 3090 \N +114949 2025-07-05 13:25:15.609747+00 2025-07-05 13:25:15.609759+00 f t SUBTOTAL 0.00 1 3025 \N +114950 2025-07-05 13:25:15.611677+00 2025-07-05 13:25:15.611689+00 f t DESCUENTO 0.00 2 3025 \N +114951 2025-07-05 13:25:15.613952+00 2025-07-05 13:25:15.613963+00 f t TOTAL 0.00 3 3025 \N +114952 2025-07-05 13:25:15.615423+00 2025-07-05 13:25:15.615431+00 f t ADELANTO 0.00 4 3025 \N +117363 2025-07-06 13:31:13.473866+00 2025-07-06 13:31:13.473874+00 f t TOTAL 0.00 3 3090 \N +117364 2025-07-06 13:31:13.475116+00 2025-07-06 13:31:13.475122+00 f t ADELANTO 0.00 4 3090 \N +114957 2025-07-05 13:32:06.997148+00 2025-07-05 13:32:06.997156+00 f t SUBTOTAL 0.00 1 3026 \N +114958 2025-07-05 13:32:06.998555+00 2025-07-05 13:32:06.998561+00 f t DESCUENTO 0.00 2 3026 \N +114959 2025-07-05 13:32:06.999959+00 2025-07-05 13:32:06.999964+00 f t TOTAL 0.00 3 3026 \N +114960 2025-07-05 13:32:07.001212+00 2025-07-05 13:32:07.00122+00 f t ADELANTO 0.00 4 3026 \N +114989 2025-07-05 14:01:55.715127+00 2025-07-05 14:01:55.715154+00 f t SUBTOTAL 64500.00 1 3027 \N +114990 2025-07-05 14:01:55.716539+00 2025-07-05 14:01:55.716545+00 f t DESCUENTO 0.00 2 3027 \N +114991 2025-07-05 14:01:55.717649+00 2025-07-05 14:01:55.717655+00 f t TOTAL 64500.00 3 3027 \N +114992 2025-07-05 14:01:55.718652+00 2025-07-05 14:01:55.718658+00 f t ADELANTO 17000.00 4 3027 \N +115757 2025-07-05 20:17:30.148019+00 2025-07-05 20:17:30.148028+00 f t SUBTOTAL 0.00 1 3050 \N +115758 2025-07-05 20:17:30.149784+00 2025-07-05 20:17:30.149792+00 f t DESCUENTO 0.00 2 3050 \N +115759 2025-07-05 20:17:30.151265+00 2025-07-05 20:17:30.151275+00 f t TOTAL 0.00 3 3050 \N +115760 2025-07-05 20:17:30.15278+00 2025-07-05 20:17:30.152789+00 f t ADELANTO 0.00 4 3050 \N +115809 2025-07-05 22:25:48.544786+00 2025-07-05 22:25:48.544794+00 f t SUBTOTAL 85000.00 1 3054 \N +115810 2025-07-05 22:25:48.546409+00 2025-07-05 22:25:48.546416+00 f t DESCUENTO 0.00 2 3054 \N +115811 2025-07-05 22:25:48.547447+00 2025-07-05 22:25:48.547452+00 f t TOTAL 85000.00 3 3054 \N +115812 2025-07-05 22:25:48.548365+00 2025-07-05 22:25:48.54837+00 f t ADELANTO 47500.00 4 3054 \N +121541 2025-07-08 01:34:05.69802+00 2025-07-08 01:34:05.69803+00 f t SUBTOTAL 0.00 1 3220 \N +121542 2025-07-08 01:34:05.700167+00 2025-07-08 01:34:05.700175+00 f t DESCUENTO 0.00 2 3220 \N +115857 2025-07-05 22:58:51.875508+00 2025-07-05 22:58:51.875515+00 f t SUBTOTAL 0.00 1 3057 \N +115858 2025-07-05 22:58:51.876628+00 2025-07-05 22:58:51.876634+00 f t DESCUENTO 0.00 2 3057 \N +115859 2025-07-05 22:58:51.877734+00 2025-07-05 22:58:51.877739+00 f t TOTAL 0.00 3 3057 \N +115860 2025-07-05 22:58:51.878588+00 2025-07-05 22:58:51.878593+00 f t ADELANTO 0.00 4 3057 \N +121543 2025-07-08 01:34:05.701614+00 2025-07-08 01:34:05.701624+00 f t TOTAL 0.00 3 3220 \N +121544 2025-07-08 01:34:05.703008+00 2025-07-08 01:34:05.703014+00 f t ADELANTO 0.00 4 3220 \N +115033 2025-07-05 14:17:38.743307+00 2025-07-05 14:17:38.743315+00 f t SUBTOTAL 50000.00 1 3028 \N +115034 2025-07-05 14:17:38.744975+00 2025-07-05 14:17:38.744981+00 f t DESCUENTO 0.00 2 3028 \N +115035 2025-07-05 14:17:38.746001+00 2025-07-05 14:17:38.746006+00 f t TOTAL 50000.00 3 3028 \N +115036 2025-07-05 14:17:38.746818+00 2025-07-05 14:17:38.746823+00 f t ADELANTO 10000.00 4 3028 \N +115041 2025-07-05 14:35:02.352214+00 2025-07-05 14:35:02.352227+00 f t SUBTOTAL 0.00 1 3029 \N +115042 2025-07-05 14:35:02.355386+00 2025-07-05 14:35:02.355398+00 f t DESCUENTO 0.00 2 3029 \N +115043 2025-07-05 14:35:02.360735+00 2025-07-05 14:35:02.36075+00 f t TOTAL 0.00 3 3029 \N +115044 2025-07-05 14:35:02.364119+00 2025-07-05 14:35:02.364136+00 f t ADELANTO 0.00 4 3029 \N +116165 2025-07-06 00:03:33.038225+00 2025-07-06 00:03:33.038233+00 f t SUBTOTAL 27500.00 1 3062 \N +116166 2025-07-06 00:03:33.039694+00 2025-07-06 00:03:33.039703+00 f t DESCUENTO 0.00 2 3062 \N +116167 2025-07-06 00:03:33.040937+00 2025-07-06 00:03:33.040942+00 f t TOTAL 27500.00 3 3062 \N +116168 2025-07-06 00:03:33.042174+00 2025-07-06 00:03:33.042179+00 f t ADELANTO 27500.00 4 3062 \N +116365 2025-07-06 03:44:47.462451+00 2025-07-06 03:44:47.46246+00 f t SUBTOTAL 0.00 1 3069 \N +116366 2025-07-06 03:44:47.463803+00 2025-07-06 03:44:47.46381+00 f t DESCUENTO 0.00 2 3069 \N +116367 2025-07-06 03:44:47.464927+00 2025-07-06 03:44:47.464933+00 f t TOTAL 0.00 3 3069 \N +116368 2025-07-06 03:44:47.466048+00 2025-07-06 03:44:47.466054+00 f t ADELANTO 0.00 4 3069 \N +115097 2025-07-05 15:35:38.389716+00 2025-07-05 15:35:38.389725+00 f t SUBTOTAL 152200.00 1 3030 \N +115098 2025-07-05 15:35:38.391357+00 2025-07-05 15:35:38.391364+00 f t DESCUENTO 0.00 2 3030 \N +115099 2025-07-05 15:35:38.392466+00 2025-07-05 15:35:38.392472+00 f t TOTAL 152200.00 3 3030 \N +115100 2025-07-05 15:35:38.393548+00 2025-07-05 15:35:38.393553+00 f t ADELANTO 84200.00 4 3030 \N +116409 2025-07-06 04:08:54.466197+00 2025-07-06 04:08:54.466205+00 f t SUBTOTAL 0.00 1 3072 \N +116410 2025-07-06 04:08:54.467474+00 2025-07-06 04:08:54.467483+00 f t DESCUENTO 0.00 2 3072 \N +116411 2025-07-06 04:08:54.468636+00 2025-07-06 04:08:54.468641+00 f t TOTAL 0.00 3 3072 \N +116412 2025-07-06 04:08:54.469701+00 2025-07-06 04:08:54.469707+00 f t ADELANTO 0.00 4 3072 \N +119257 2025-07-07 04:39:42.99562+00 2025-07-07 04:39:42.995628+00 f t SUBTOTAL 131900.00 1 3154 \N +119258 2025-07-07 04:39:42.997104+00 2025-07-07 04:39:42.997111+00 f t DESCUENTO 0.00 2 3154 \N +119259 2025-07-07 04:39:42.998153+00 2025-07-07 04:39:42.998159+00 f t TOTAL 131900.00 3 3154 \N +119260 2025-07-07 04:39:42.999229+00 2025-07-07 04:39:42.999235+00 f t ADELANTO 31400.00 4 3154 \N +119301 2025-07-07 07:51:58.263592+00 2025-07-07 07:51:58.263605+00 f t SUBTOTAL 0.00 1 3157 \N +116793 2025-07-06 09:08:06.365007+00 2025-07-06 09:08:06.365017+00 f t SUBTOTAL 50000.00 1 3078 \N +116794 2025-07-06 09:08:06.366566+00 2025-07-06 09:08:06.366573+00 f t DESCUENTO 0.00 2 3078 \N +116795 2025-07-06 09:08:06.367931+00 2025-07-06 09:08:06.367938+00 f t TOTAL 50000.00 3 3078 \N +116796 2025-07-06 09:08:06.369331+00 2025-07-06 09:08:06.369339+00 f t ADELANTO 10000.00 4 3078 \N +115157 2025-07-05 15:47:44.95378+00 2025-07-05 15:47:44.953789+00 f t SUBTOTAL 130000.00 1 3031 \N +115158 2025-07-05 15:47:44.955126+00 2025-07-05 15:47:44.955151+00 f t DESCUENTO 0.00 2 3031 \N +115159 2025-07-05 15:47:44.956252+00 2025-07-05 15:47:44.956258+00 f t TOTAL 130000.00 3 3031 \N +115160 2025-07-05 15:47:44.957222+00 2025-07-05 15:47:44.957227+00 f t ADELANTO 15000.00 4 3031 \N +116941 2025-07-06 09:40:31.395945+00 2025-07-06 09:40:31.395953+00 f t SUBTOTAL 50000.00 1 3080 \N +116942 2025-07-06 09:40:31.39771+00 2025-07-06 09:40:31.397717+00 f t DESCUENTO 0.00 2 3080 \N +116943 2025-07-06 09:40:31.399053+00 2025-07-06 09:40:31.399059+00 f t TOTAL 50000.00 3 3080 \N +116944 2025-07-06 09:40:31.401137+00 2025-07-06 09:40:31.401144+00 f t ADELANTO 10000.00 4 3080 \N +115205 2025-07-05 15:58:16.493507+00 2025-07-05 15:58:16.493515+00 f t SUBTOTAL 42000.00 1 3032 \N +115206 2025-07-05 15:58:16.494861+00 2025-07-05 15:58:16.494868+00 f t DESCUENTO 0.00 2 3032 \N +115207 2025-07-05 15:58:16.495869+00 2025-07-05 15:58:16.495875+00 f t TOTAL 42000.00 3 3032 \N +115208 2025-07-05 15:58:16.496812+00 2025-07-05 15:58:16.496818+00 f t ADELANTO 9500.00 4 3032 \N +115213 2025-07-05 16:11:05.711426+00 2025-07-05 16:11:05.711437+00 f t SUBTOTAL 0.00 1 3033 \N +115214 2025-07-05 16:11:05.712858+00 2025-07-05 16:11:05.712866+00 f t DESCUENTO 0.00 2 3033 \N +115215 2025-07-05 16:11:05.714244+00 2025-07-05 16:11:05.71425+00 f t TOTAL 0.00 3 3033 \N +115216 2025-07-05 16:11:05.715439+00 2025-07-05 16:11:05.715446+00 f t ADELANTO 0.00 4 3033 \N +115221 2025-07-05 16:28:52.999933+00 2025-07-05 16:28:52.999941+00 f t SUBTOTAL 0.00 1 3034 \N +115222 2025-07-05 16:28:53.001411+00 2025-07-05 16:28:53.00142+00 f t DESCUENTO 0.00 2 3034 \N +115223 2025-07-05 16:28:53.002655+00 2025-07-05 16:28:53.00266+00 f t TOTAL 0.00 3 3034 \N +115224 2025-07-05 16:28:53.003765+00 2025-07-05 16:28:53.003772+00 f t ADELANTO 0.00 4 3034 \N +117241 2025-07-06 12:34:56.295378+00 2025-07-06 12:34:56.295391+00 f t SUBTOTAL 70000.00 1 3085 \N +117242 2025-07-06 12:34:56.297014+00 2025-07-06 12:34:56.297022+00 f t DESCUENTO 0.00 2 3085 \N +117243 2025-07-06 12:34:56.298212+00 2025-07-06 12:34:56.29822+00 f t TOTAL 70000.00 3 3085 \N +117244 2025-07-06 12:34:56.299451+00 2025-07-06 12:34:56.29946+00 f t ADELANTO 10000.00 4 3085 \N +115245 2025-07-05 16:51:01.818492+00 2025-07-05 16:51:01.818502+00 f t SUBTOTAL 0.00 1 3036 \N +115246 2025-07-05 16:51:01.820031+00 2025-07-05 16:51:01.820038+00 f t DESCUENTO 0.00 2 3036 \N +115247 2025-07-05 16:51:01.821196+00 2025-07-05 16:51:01.821202+00 f t TOTAL 0.00 3 3036 \N +115248 2025-07-05 16:51:01.822226+00 2025-07-05 16:51:01.822232+00 f t ADELANTO 0.00 4 3036 \N +115541 2025-07-05 18:43:23.348196+00 2025-07-05 18:43:23.348207+00 f t SUBTOTAL 110500.00 1 3043 \N +115542 2025-07-05 18:43:23.349888+00 2025-07-05 18:43:23.349896+00 f t DESCUENTO 0.00 2 3043 \N +115543 2025-07-05 18:43:23.351015+00 2025-07-05 18:43:23.351021+00 f t TOTAL 110500.00 3 3043 \N +115544 2025-07-05 18:43:23.352027+00 2025-07-05 18:43:23.352032+00 f t ADELANTO 26500.00 4 3043 \N +115281 2025-07-05 16:52:12.70787+00 2025-07-05 16:52:12.707882+00 f t SUBTOTAL 50000.00 1 3035 \N +115282 2025-07-05 16:52:12.709577+00 2025-07-05 16:52:12.709588+00 f t DESCUENTO 0.00 2 3035 \N +115283 2025-07-05 16:52:12.711013+00 2025-07-05 16:52:12.711019+00 f t TOTAL 50000.00 3 3035 \N +115284 2025-07-05 16:52:12.711969+00 2025-07-05 16:52:12.711974+00 f t ADELANTO 10000.00 4 3035 \N +124261 2025-07-08 23:29:13.163596+00 2025-07-08 23:29:13.163605+00 f t SUBTOTAL 49500.00 1 3281 \N +124262 2025-07-08 23:29:13.1652+00 2025-07-08 23:29:13.165206+00 f t DESCUENTO 0.00 2 3281 \N +121349 2025-07-08 01:28:28.942207+00 2025-07-08 01:28:28.94222+00 f t SUBTOTAL 50000.00 1 3218 \N +121350 2025-07-08 01:28:28.944032+00 2025-07-08 01:28:28.944041+00 f t DESCUENTO 0.00 2 3218 \N +121351 2025-07-08 01:28:28.94548+00 2025-07-08 01:28:28.945489+00 f t TOTAL 50000.00 3 3218 \N +121352 2025-07-08 01:28:28.94688+00 2025-07-08 01:28:28.946888+00 f t ADELANTO 10000.00 4 3218 \N +124263 2025-07-08 23:29:13.166222+00 2025-07-08 23:29:13.166227+00 f t TOTAL 49500.00 3 3281 \N +124264 2025-07-08 23:29:13.167222+00 2025-07-08 23:29:13.167227+00 f t ADELANTO 11500.00 4 3281 \N +115765 2025-07-05 21:21:50.932273+00 2025-07-05 21:21:50.932286+00 f t SUBTOTAL 0.00 1 3051 \N +115766 2025-07-05 21:21:50.933961+00 2025-07-05 21:21:50.933971+00 f t DESCUENTO 0.00 2 3051 \N +115767 2025-07-05 21:21:50.935364+00 2025-07-05 21:21:50.935373+00 f t TOTAL 0.00 3 3051 \N +115768 2025-07-05 21:21:50.936488+00 2025-07-05 21:21:50.936496+00 f t ADELANTO 0.00 4 3051 \N +115817 2025-07-05 22:30:33.669083+00 2025-07-05 22:30:33.669096+00 f t SUBTOTAL 0.00 1 3055 \N +115818 2025-07-05 22:30:33.670906+00 2025-07-05 22:30:33.670916+00 f t DESCUENTO 0.00 2 3055 \N +115819 2025-07-05 22:30:33.672401+00 2025-07-05 22:30:33.67241+00 f t TOTAL 0.00 3 3055 \N +115820 2025-07-05 22:30:33.673887+00 2025-07-05 22:30:33.673896+00 f t ADELANTO 0.00 4 3055 \N +115317 2025-07-05 17:48:02.604602+00 2025-07-05 17:48:02.604614+00 f t SUBTOTAL 50000.00 1 3037 \N +115318 2025-07-05 17:48:02.606584+00 2025-07-05 17:48:02.606595+00 f t DESCUENTO 0.00 2 3037 \N +115319 2025-07-05 17:48:02.608101+00 2025-07-05 17:48:02.60811+00 f t TOTAL 50000.00 3 3037 \N +115320 2025-07-05 17:48:02.609639+00 2025-07-05 17:48:02.609648+00 f t ADELANTO 10000.00 4 3037 \N +115349 2025-07-05 17:51:24.230859+00 2025-07-05 17:51:24.230869+00 f t SUBTOTAL 50000.00 1 3038 \N +115350 2025-07-05 17:51:24.232401+00 2025-07-05 17:51:24.232406+00 f t DESCUENTO 0.00 2 3038 \N +115351 2025-07-05 17:51:24.233583+00 2025-07-05 17:51:24.233589+00 f t TOTAL 50000.00 3 3038 \N +115352 2025-07-05 17:51:24.234617+00 2025-07-05 17:51:24.234622+00 f t ADELANTO 10000.00 4 3038 \N +118885 2025-07-07 00:56:32.885972+00 2025-07-07 00:56:32.88598+00 f t SUBTOTAL 50000.00 1 3140 \N +118886 2025-07-07 00:56:32.887875+00 2025-07-07 00:56:32.887881+00 f t DESCUENTO 0.00 2 3140 \N +118887 2025-07-07 00:56:32.889121+00 2025-07-07 00:56:32.889127+00 f t TOTAL 50000.00 3 3140 \N +118888 2025-07-07 00:56:32.890299+00 2025-07-07 00:56:32.890304+00 f t ADELANTO 10000.00 4 3140 \N +118921 2025-07-07 01:02:50.446211+00 2025-07-07 01:02:50.446234+00 f t SUBTOTAL 50000.00 1 3141 \N +118922 2025-07-07 01:02:50.447915+00 2025-07-07 01:02:50.447923+00 f t DESCUENTO 0.00 2 3141 \N +118923 2025-07-07 01:02:50.44911+00 2025-07-07 01:02:50.449115+00 f t TOTAL 50000.00 3 3141 \N +118924 2025-07-07 01:02:50.450105+00 2025-07-07 01:02:50.45011+00 f t ADELANTO 10000.00 4 3141 \N +119005 2025-07-07 02:15:49.565825+00 2025-07-07 02:15:49.565834+00 f t SUBTOTAL 55000.00 1 3146 \N +119006 2025-07-07 02:15:49.567471+00 2025-07-07 02:15:49.567479+00 f t DESCUENTO 0.00 2 3146 \N +119007 2025-07-07 02:15:49.568639+00 2025-07-07 02:15:49.568645+00 f t TOTAL 55000.00 3 3146 \N +119008 2025-07-07 02:15:49.572708+00 2025-07-07 02:15:49.572719+00 f t ADELANTO 12500.00 4 3146 \N +119302 2025-07-07 07:51:58.26501+00 2025-07-07 07:51:58.265018+00 f t DESCUENTO 0.00 2 3157 \N +119303 2025-07-07 07:51:58.266456+00 2025-07-07 07:51:58.266464+00 f t TOTAL 0.00 3 3157 \N +119304 2025-07-07 07:51:58.267587+00 2025-07-07 07:51:58.267595+00 f t ADELANTO 0.00 4 3157 \N +119461 2025-07-07 12:48:50.395046+00 2025-07-07 12:48:50.395059+00 f t SUBTOTAL 62000.00 1 3161 \N +119462 2025-07-07 12:48:50.397199+00 2025-07-07 12:48:50.39721+00 f t DESCUENTO 0.00 2 3161 \N +119463 2025-07-07 12:48:50.398858+00 2025-07-07 12:48:50.398868+00 f t TOTAL 62000.00 3 3161 \N +119464 2025-07-07 12:48:50.400356+00 2025-07-07 12:48:50.400366+00 f t ADELANTO 12000.00 4 3161 \N +119701 2025-07-07 14:18:44.699345+00 2025-07-07 14:18:44.699355+00 f t SUBTOTAL 42000.00 1 3168 \N +119702 2025-07-07 14:18:44.700835+00 2025-07-07 14:18:44.700842+00 f t DESCUENTO 0.00 2 3168 \N +117033 2025-07-06 09:48:11.931424+00 2025-07-06 09:48:11.931432+00 f t SUBTOTAL 42000.00 1 3081 \N +117034 2025-07-06 09:48:11.933092+00 2025-07-06 09:48:11.933099+00 f t DESCUENTO 0.00 2 3081 \N +117035 2025-07-06 09:48:11.934414+00 2025-07-06 09:48:11.934421+00 f t TOTAL 42000.00 3 3081 \N +117036 2025-07-06 09:48:11.93553+00 2025-07-06 09:48:11.935535+00 f t ADELANTO 9500.00 4 3081 \N +117065 2025-07-06 11:20:35.020693+00 2025-07-06 11:20:35.020702+00 f t SUBTOTAL 50000.00 1 3082 \N +117066 2025-07-06 11:20:35.022649+00 2025-07-06 11:20:35.022656+00 f t DESCUENTO 0.00 2 3082 \N +117067 2025-07-06 11:20:35.024063+00 2025-07-06 11:20:35.024069+00 f t TOTAL 50000.00 3 3082 \N +117068 2025-07-06 11:20:35.025317+00 2025-07-06 11:20:35.025322+00 f t ADELANTO 10000.00 4 3082 \N +119703 2025-07-07 14:18:44.701856+00 2025-07-07 14:18:44.701862+00 f t TOTAL 42000.00 3 3168 \N +119704 2025-07-07 14:18:44.702809+00 2025-07-07 14:18:44.702815+00 f t ADELANTO 9500.00 4 3168 \N +119741 2025-07-07 14:36:31.743479+00 2025-07-07 14:36:31.743489+00 f t SUBTOTAL 0.00 1 3169 \N +119742 2025-07-07 14:36:31.745591+00 2025-07-07 14:36:31.745598+00 f t DESCUENTO 0.00 2 3169 \N +119743 2025-07-07 14:36:31.746788+00 2025-07-07 14:36:31.746796+00 f t TOTAL 0.00 3 3169 \N +119744 2025-07-07 14:36:31.747889+00 2025-07-07 14:36:31.747895+00 f t ADELANTO 0.00 4 3169 \N +119781 2025-07-07 14:43:03.633835+00 2025-07-07 14:43:03.633844+00 f t SUBTOTAL 50000.00 1 3170 \N +119782 2025-07-07 14:43:03.635913+00 2025-07-07 14:43:03.635925+00 f t DESCUENTO 0.00 2 3170 \N +119783 2025-07-07 14:43:03.637318+00 2025-07-07 14:43:03.637324+00 f t TOTAL 50000.00 3 3170 \N +119784 2025-07-07 14:43:03.638494+00 2025-07-07 14:43:03.638501+00 f t ADELANTO 10000.00 4 3170 \N +117277 2025-07-06 12:44:14.882226+00 2025-07-06 12:44:14.882235+00 f t SUBTOTAL 0.00 1 3086 \N +117278 2025-07-06 12:44:14.88395+00 2025-07-06 12:44:14.883956+00 f t DESCUENTO 0.00 2 3086 \N +117279 2025-07-06 12:44:14.88513+00 2025-07-06 12:44:14.885137+00 f t TOTAL 0.00 3 3086 \N +117280 2025-07-06 12:44:14.886136+00 2025-07-06 12:44:14.886141+00 f t ADELANTO 0.00 4 3086 \N +119849 2025-07-07 14:46:43.153692+00 2025-07-07 14:46:43.153702+00 f t SUBTOTAL 50000.00 1 3171 \N +119850 2025-07-07 14:46:43.155539+00 2025-07-07 14:46:43.155547+00 f t DESCUENTO 0.00 2 3171 \N +119851 2025-07-07 14:46:43.156705+00 2025-07-07 14:46:43.156711+00 f t TOTAL 50000.00 3 3171 \N +119852 2025-07-07 14:46:43.157609+00 2025-07-07 14:46:43.157614+00 f t ADELANTO 10000.00 4 3171 \N +117469 2025-07-06 14:11:33.022276+00 2025-07-06 14:11:33.022286+00 f t SUBTOTAL 0.00 1 3093 \N +130062 2025-07-11 18:25:17.520917+00 2025-07-11 18:25:17.520923+00 f t DESCUENTO 0.00 2 3426 \N +130063 2025-07-11 18:25:17.522565+00 2025-07-11 18:25:17.522571+00 f t TOTAL 0.00 3 3426 \N +130064 2025-07-11 18:25:17.523787+00 2025-07-11 18:25:17.523793+00 f t ADELANTO 0.00 4 3426 \N +371173 2025-10-10 21:41:24.600154+00 2025-10-10 21:41:24.600162+00 f t SUBTOTAL 0.00 1 9348 \N +371174 2025-10-10 21:41:24.602158+00 2025-10-10 21:41:24.602165+00 f t DESCUENTO 0.00 2 9348 \N +124149 2025-07-08 23:17:16.976998+00 2025-07-08 23:17:16.977008+00 f t SUBTOTAL 70000.00 1 3278 \N +124150 2025-07-08 23:17:16.97895+00 2025-07-08 23:17:16.978961+00 f t DESCUENTO 0.00 2 3278 \N +124151 2025-07-08 23:17:16.980547+00 2025-07-08 23:17:16.980556+00 f t TOTAL 70000.00 3 3278 \N +124152 2025-07-08 23:17:16.981873+00 2025-07-08 23:17:16.981881+00 f t ADELANTO 15000.00 4 3278 \N +371175 2025-10-10 21:41:24.603266+00 2025-10-10 21:41:24.603271+00 f t TOTAL 0.00 3 9348 \N +117497 2025-07-06 14:23:39.555323+00 2025-07-06 14:23:39.555332+00 f t SUBTOTAL 50000.00 1 3094 \N +117498 2025-07-06 14:23:39.556743+00 2025-07-06 14:23:39.55675+00 f t DESCUENTO 0.00 2 3094 \N +117499 2025-07-06 14:23:39.557795+00 2025-07-06 14:23:39.5578+00 f t TOTAL 50000.00 3 3094 \N +117500 2025-07-06 14:23:39.558715+00 2025-07-06 14:23:39.558722+00 f t ADELANTO 10000.00 4 3094 \N +117525 2025-07-06 14:25:14.245455+00 2025-07-06 14:25:14.245463+00 f t SUBTOTAL 50000.00 1 3095 \N +117526 2025-07-06 14:25:14.246841+00 2025-07-06 14:25:14.246847+00 f t DESCUENTO 0.00 2 3095 \N +117527 2025-07-06 14:25:14.247884+00 2025-07-06 14:25:14.247892+00 f t TOTAL 50000.00 3 3095 \N +117528 2025-07-06 14:25:14.248965+00 2025-07-06 14:25:14.248971+00 f t ADELANTO 10000.00 4 3095 \N +117533 2025-07-06 14:25:19.819365+00 2025-07-06 14:25:19.819375+00 f t SUBTOTAL 0.00 1 3096 \N +117534 2025-07-06 14:25:19.82128+00 2025-07-06 14:25:19.821287+00 f t DESCUENTO 0.00 2 3096 \N +117535 2025-07-06 14:25:19.822477+00 2025-07-06 14:25:19.822483+00 f t TOTAL 0.00 3 3096 \N +117536 2025-07-06 14:25:19.823468+00 2025-07-06 14:25:19.823474+00 f t ADELANTO 0.00 4 3096 \N +124677 2025-07-09 05:28:35.795792+00 2025-07-09 05:28:35.7958+00 f t SUBTOTAL 42000.00 1 3289 \N +124678 2025-07-09 05:28:35.797383+00 2025-07-09 05:28:35.797389+00 f t DESCUENTO 0.00 2 3289 \N +124679 2025-07-09 05:28:35.798496+00 2025-07-09 05:28:35.798502+00 f t TOTAL 42000.00 3 3289 \N +117541 2025-07-06 14:28:32.965008+00 2025-07-06 14:28:32.965019+00 f t SUBTOTAL 0.00 1 3097 \N +117542 2025-07-06 14:28:32.966484+00 2025-07-06 14:28:32.966492+00 f t DESCUENTO 0.00 2 3097 \N +117543 2025-07-06 14:28:32.967889+00 2025-07-06 14:28:32.967896+00 f t TOTAL 0.00 3 3097 \N +117544 2025-07-06 14:28:32.969068+00 2025-07-06 14:28:32.969074+00 f t ADELANTO 0.00 4 3097 \N +124680 2025-07-09 05:28:35.799584+00 2025-07-09 05:28:35.799589+00 f t ADELANTO 9500.00 4 3289 \N +124721 2025-07-09 06:02:11.923453+00 2025-07-09 06:02:11.923465+00 f t SUBTOTAL 42000.00 1 3290 \N +124722 2025-07-09 06:02:11.925903+00 2025-07-09 06:02:11.925914+00 f t DESCUENTO 0.00 2 3290 \N +124723 2025-07-09 06:02:11.927654+00 2025-07-09 06:02:11.927663+00 f t TOTAL 42000.00 3 3290 \N +124724 2025-07-09 06:02:11.929718+00 2025-07-09 06:02:11.929728+00 f t ADELANTO 9500.00 4 3290 \N +118929 2025-07-07 01:06:27.881754+00 2025-07-07 01:06:27.881763+00 f t SUBTOTAL 0.00 1 3142 \N +118930 2025-07-07 01:06:27.883396+00 2025-07-07 01:06:27.883408+00 f t DESCUENTO 0.00 2 3142 \N +118931 2025-07-07 01:06:27.884744+00 2025-07-07 01:06:27.88475+00 f t TOTAL 0.00 3 3142 \N +118932 2025-07-07 01:06:27.885979+00 2025-07-07 01:06:27.885986+00 f t ADELANTO 0.00 4 3142 \N +117581 2025-07-06 14:32:59.97321+00 2025-07-06 14:32:59.973218+00 f t SUBTOTAL 49500.00 1 3098 \N +117582 2025-07-06 14:32:59.974755+00 2025-07-06 14:32:59.974761+00 f t DESCUENTO 0.00 2 3098 \N +117583 2025-07-06 14:32:59.975945+00 2025-07-06 14:32:59.975951+00 f t TOTAL 49500.00 3 3098 \N +117584 2025-07-06 14:32:59.97724+00 2025-07-06 14:32:59.977247+00 f t ADELANTO 11500.00 4 3098 \N +117589 2025-07-06 14:38:38.473077+00 2025-07-06 14:38:38.473086+00 f t SUBTOTAL 0.00 1 3099 \N +117590 2025-07-06 14:38:38.474396+00 2025-07-06 14:38:38.474402+00 f t DESCUENTO 0.00 2 3099 \N +117591 2025-07-06 14:38:38.475443+00 2025-07-06 14:38:38.475452+00 f t TOTAL 0.00 3 3099 \N +117592 2025-07-06 14:38:38.476477+00 2025-07-06 14:38:38.476482+00 f t ADELANTO 0.00 4 3099 \N +117597 2025-07-06 15:03:10.196845+00 2025-07-06 15:03:10.196859+00 f t SUBTOTAL 0.00 1 3100 \N +117598 2025-07-06 15:03:10.198658+00 2025-07-06 15:03:10.198667+00 f t DESCUENTO 0.00 2 3100 \N +117599 2025-07-06 15:03:10.200062+00 2025-07-06 15:03:10.200071+00 f t TOTAL 0.00 3 3100 \N +117600 2025-07-06 15:03:10.201248+00 2025-07-06 15:03:10.201254+00 f t ADELANTO 0.00 4 3100 \N +119145 2025-07-07 03:10:54.667271+00 2025-07-07 03:10:54.667279+00 f t SUBTOTAL 167200.00 1 3148 \N +119146 2025-07-07 03:10:54.66884+00 2025-07-07 03:10:54.668847+00 f t DESCUENTO 0.00 2 3148 \N +119147 2025-07-07 03:10:54.669832+00 2025-07-07 03:10:54.669837+00 f t TOTAL 167200.00 3 3148 \N +119148 2025-07-07 03:10:54.670687+00 2025-07-07 03:10:54.670692+00 f t ADELANTO 64200.00 4 3148 \N +117605 2025-07-06 15:08:01.882855+00 2025-07-06 15:08:01.882864+00 f t SUBTOTAL 0.00 1 3101 \N +117606 2025-07-06 15:08:01.884618+00 2025-07-06 15:08:01.884625+00 f t DESCUENTO 0.00 2 3101 \N +117607 2025-07-06 15:08:01.88625+00 2025-07-06 15:08:01.886257+00 f t TOTAL 0.00 3 3101 \N +117608 2025-07-06 15:08:01.887427+00 2025-07-06 15:08:01.887434+00 f t ADELANTO 0.00 4 3101 \N +117613 2025-07-06 15:09:01.714042+00 2025-07-06 15:09:01.714054+00 f t SUBTOTAL 0.00 1 3102 \N +117614 2025-07-06 15:09:01.718629+00 2025-07-06 15:09:01.718643+00 f t DESCUENTO 0.00 2 3102 \N +117615 2025-07-06 15:09:01.721356+00 2025-07-06 15:09:01.721369+00 f t TOTAL 0.00 3 3102 \N +117616 2025-07-06 15:09:01.723756+00 2025-07-06 15:09:01.723768+00 f t ADELANTO 0.00 4 3102 \N +122081 2025-07-08 10:54:53.056738+00 2025-07-08 10:54:53.056746+00 f t SUBTOTAL 42000.00 1 3227 \N +122082 2025-07-08 10:54:53.058311+00 2025-07-08 10:54:53.058317+00 f t DESCUENTO 0.00 2 3227 \N +122083 2025-07-08 10:54:53.059361+00 2025-07-08 10:54:53.059366+00 f t TOTAL 42000.00 3 3227 \N +122084 2025-07-08 10:54:53.060417+00 2025-07-08 10:54:53.060423+00 f t ADELANTO 9500.00 4 3227 \N +119393 2025-07-07 11:12:15.764217+00 2025-07-07 11:12:15.764227+00 f t SUBTOTAL 0.00 1 3159 \N +119394 2025-07-07 11:12:15.76694+00 2025-07-07 11:12:15.766948+00 f t DESCUENTO 0.00 2 3159 \N +119395 2025-07-07 11:12:15.768231+00 2025-07-07 11:12:15.768237+00 f t TOTAL 0.00 3 3159 \N +119396 2025-07-07 11:12:15.769333+00 2025-07-07 11:12:15.76934+00 f t ADELANTO 0.00 4 3159 \N +117657 2025-07-06 15:10:44.539055+00 2025-07-06 15:10:44.539063+00 f t SUBTOTAL 50000.00 1 3103 \N +117658 2025-07-06 15:10:44.541007+00 2025-07-06 15:10:44.541015+00 f t DESCUENTO 0.00 2 3103 \N +117659 2025-07-06 15:10:44.542462+00 2025-07-06 15:10:44.542468+00 f t TOTAL 50000.00 3 3103 \N +117660 2025-07-06 15:10:44.543677+00 2025-07-06 15:10:44.543682+00 f t ADELANTO 10000.00 4 3103 \N +117685 2025-07-06 15:18:59.013898+00 2025-07-06 15:18:59.013906+00 f t SUBTOTAL 50000.00 1 3104 \N +117686 2025-07-06 15:18:59.015472+00 2025-07-06 15:18:59.015478+00 f t DESCUENTO 0.00 2 3104 \N +117687 2025-07-06 15:18:59.016702+00 2025-07-06 15:18:59.016708+00 f t TOTAL 50000.00 3 3104 \N +117688 2025-07-06 15:18:59.017661+00 2025-07-06 15:18:59.017666+00 f t ADELANTO 10000.00 4 3104 \N +119665 2025-07-07 13:50:09.839657+00 2025-07-07 13:50:09.839666+00 f t SUBTOTAL 42000.00 1 3167 \N +119666 2025-07-07 13:50:09.841656+00 2025-07-07 13:50:09.841663+00 f t DESCUENTO 0.00 2 3167 \N +119667 2025-07-07 13:50:09.843882+00 2025-07-07 13:50:09.843892+00 f t TOTAL 42000.00 3 3167 \N +119668 2025-07-07 13:50:09.844986+00 2025-07-07 13:50:09.844992+00 f t ADELANTO 9500.00 4 3167 \N +127009 2025-07-10 12:40:16.61499+00 2025-07-10 12:40:16.615004+00 f t SUBTOTAL 95000.00 1 3346 \N +127010 2025-07-10 12:40:16.617154+00 2025-07-10 12:40:16.617164+00 f t DESCUENTO 0.00 2 3346 \N +117769 2025-07-06 15:45:43.198248+00 2025-07-06 15:45:43.198258+00 f t SUBTOTAL 50000.00 1 3105 \N +117770 2025-07-06 15:45:43.199921+00 2025-07-06 15:45:43.199929+00 f t DESCUENTO 0.00 2 3105 \N +117771 2025-07-06 15:45:43.201242+00 2025-07-06 15:45:43.201249+00 f t TOTAL 50000.00 3 3105 \N +117772 2025-07-06 15:45:43.202484+00 2025-07-06 15:45:43.202491+00 f t ADELANTO 10000.00 4 3105 \N +117777 2025-07-06 15:46:40.767722+00 2025-07-06 15:46:40.767732+00 f t SUBTOTAL 0.00 1 3106 \N +117778 2025-07-06 15:46:40.769376+00 2025-07-06 15:46:40.769384+00 f t DESCUENTO 0.00 2 3106 \N +117779 2025-07-06 15:46:40.771004+00 2025-07-06 15:46:40.771014+00 f t TOTAL 0.00 3 3106 \N +117780 2025-07-06 15:46:40.772528+00 2025-07-06 15:46:40.772535+00 f t ADELANTO 0.00 4 3106 \N +118497 2025-07-06 20:52:19.300024+00 2025-07-06 20:52:19.300032+00 f t SUBTOTAL 0.00 1 3129 \N +118498 2025-07-06 20:52:19.301931+00 2025-07-06 20:52:19.301938+00 f t DESCUENTO 0.00 2 3129 \N +118499 2025-07-06 20:52:19.303188+00 2025-07-06 20:52:19.303194+00 f t TOTAL 0.00 3 3129 \N +118500 2025-07-06 20:52:19.304368+00 2025-07-06 20:52:19.304374+00 f t ADELANTO 0.00 4 3129 \N +118613 2025-07-06 21:58:51.976803+00 2025-07-06 21:58:51.976813+00 f t SUBTOTAL 111000.00 1 3131 \N +117805 2025-07-06 15:56:08.622432+00 2025-07-06 15:56:08.62244+00 f t SUBTOTAL 56000.00 1 3107 \N +117806 2025-07-06 15:56:08.624059+00 2025-07-06 15:56:08.624068+00 f t DESCUENTO 0.00 2 3107 \N +117807 2025-07-06 15:56:08.625487+00 2025-07-06 15:56:08.625493+00 f t TOTAL 56000.00 3 3107 \N +117808 2025-07-06 15:56:08.626616+00 2025-07-06 15:56:08.626624+00 f t ADELANTO 48000.00 4 3107 \N +118614 2025-07-06 21:58:51.978231+00 2025-07-06 21:58:51.978237+00 f t DESCUENTO 0.00 2 3131 \N +118615 2025-07-06 21:58:51.979172+00 2025-07-06 21:58:51.979177+00 f t TOTAL 111000.00 3 3131 \N +118616 2025-07-06 21:58:51.98026+00 2025-07-06 21:58:51.980268+00 f t ADELANTO 23500.00 4 3131 \N +118697 2025-07-06 22:30:48.993113+00 2025-07-06 22:30:48.993121+00 f t SUBTOTAL 42000.00 1 3134 \N +118698 2025-07-06 22:30:48.99517+00 2025-07-06 22:30:48.995179+00 f t DESCUENTO 0.00 2 3134 \N +118699 2025-07-06 22:30:48.996769+00 2025-07-06 22:30:48.996779+00 f t TOTAL 42000.00 3 3134 \N +118700 2025-07-06 22:30:48.998189+00 2025-07-06 22:30:48.998196+00 f t ADELANTO 9500.00 4 3134 \N +117833 2025-07-06 15:57:36.948737+00 2025-07-06 15:57:36.948749+00 f t SUBTOTAL 50000.00 1 3108 \N +117834 2025-07-06 15:57:36.950388+00 2025-07-06 15:57:36.950396+00 f t DESCUENTO 0.00 2 3108 \N +117835 2025-07-06 15:57:36.951659+00 2025-07-06 15:57:36.951665+00 f t TOTAL 50000.00 3 3108 \N +117836 2025-07-06 15:57:36.953304+00 2025-07-06 15:57:36.953309+00 f t ADELANTO 10000.00 4 3108 \N +117841 2025-07-06 17:27:48.542617+00 2025-07-06 17:27:48.542628+00 f t SUBTOTAL 0.00 1 3109 \N +117842 2025-07-06 17:27:48.544217+00 2025-07-06 17:27:48.544224+00 f t DESCUENTO 0.00 2 3109 \N +117843 2025-07-06 17:27:48.545646+00 2025-07-06 17:27:48.545656+00 f t TOTAL 0.00 3 3109 \N +117844 2025-07-06 17:27:48.54716+00 2025-07-06 17:27:48.54717+00 f t ADELANTO 0.00 4 3109 \N +118937 2025-07-07 01:07:43.120518+00 2025-07-07 01:07:43.12053+00 f t SUBTOTAL 0.00 1 3143 \N +118938 2025-07-07 01:07:43.122044+00 2025-07-07 01:07:43.122053+00 f t DESCUENTO 0.00 2 3143 \N +118939 2025-07-07 01:07:43.123346+00 2025-07-07 01:07:43.123353+00 f t TOTAL 0.00 3 3143 \N +118940 2025-07-07 01:07:43.124487+00 2025-07-07 01:07:43.124495+00 f t ADELANTO 0.00 4 3143 \N +117869 2025-07-06 17:34:42.211633+00 2025-07-06 17:34:42.211666+00 f t SUBTOTAL 42000.00 1 3110 \N +117870 2025-07-06 17:34:42.213282+00 2025-07-06 17:34:42.213288+00 f t DESCUENTO 0.00 2 3110 \N +117871 2025-07-06 17:34:42.214314+00 2025-07-06 17:34:42.21432+00 f t TOTAL 42000.00 3 3110 \N +117872 2025-07-06 17:34:42.215421+00 2025-07-06 17:34:42.215429+00 f t ADELANTO 9500.00 4 3110 \N +117877 2025-07-06 17:40:14.318626+00 2025-07-06 17:40:14.318636+00 f t SUBTOTAL 0.00 1 3111 \N +117878 2025-07-06 17:40:14.319867+00 2025-07-06 17:40:14.319873+00 f t DESCUENTO 0.00 2 3111 \N +117879 2025-07-06 17:40:14.320811+00 2025-07-06 17:40:14.320817+00 f t TOTAL 0.00 3 3111 \N +117880 2025-07-06 17:40:14.321691+00 2025-07-06 17:40:14.321699+00 f t ADELANTO 0.00 4 3111 \N +117885 2025-07-06 17:45:11.754455+00 2025-07-06 17:45:11.754468+00 f t SUBTOTAL 0.00 1 3112 \N +117886 2025-07-06 17:45:11.756302+00 2025-07-06 17:45:11.756311+00 f t DESCUENTO 0.00 2 3112 \N +117887 2025-07-06 17:45:11.75805+00 2025-07-06 17:45:11.758057+00 f t TOTAL 0.00 3 3112 \N +117888 2025-07-06 17:45:11.759288+00 2025-07-06 17:45:11.759294+00 f t ADELANTO 0.00 4 3112 \N +119153 2025-07-07 03:23:56.36626+00 2025-07-07 03:23:56.36627+00 f t SUBTOTAL 0.00 1 3149 \N +117893 2025-07-06 17:51:45.654399+00 2025-07-06 17:51:45.654407+00 f t SUBTOTAL 0.00 1 3113 \N +117894 2025-07-06 17:51:45.655528+00 2025-07-06 17:51:45.655535+00 f t DESCUENTO 0.00 2 3113 \N +117895 2025-07-06 17:51:45.656543+00 2025-07-06 17:51:45.656552+00 f t TOTAL 0.00 3 3113 \N +117896 2025-07-06 17:51:45.657678+00 2025-07-06 17:51:45.657684+00 f t ADELANTO 0.00 4 3113 \N +119154 2025-07-07 03:23:56.367769+00 2025-07-07 03:23:56.367778+00 f t DESCUENTO 0.00 2 3149 \N +119155 2025-07-07 03:23:56.369141+00 2025-07-07 03:23:56.369148+00 f t TOTAL 0.00 3 3149 \N +119156 2025-07-07 03:23:56.37027+00 2025-07-07 03:23:56.370278+00 f t ADELANTO 0.00 4 3149 \N +117921 2025-07-06 18:33:03.839613+00 2025-07-06 18:33:03.839621+00 f t SUBTOTAL 50000.00 1 3114 \N +117922 2025-07-06 18:33:03.841304+00 2025-07-06 18:33:03.841312+00 f t DESCUENTO 0.00 2 3114 \N +117923 2025-07-06 18:33:03.84251+00 2025-07-06 18:33:03.842517+00 f t TOTAL 50000.00 3 3114 \N +117924 2025-07-06 18:33:03.843505+00 2025-07-06 18:33:03.84351+00 f t ADELANTO 10000.00 4 3114 \N +117929 2025-07-06 18:36:42.831572+00 2025-07-06 18:36:42.831583+00 f t SUBTOTAL 0.00 1 3115 \N +117930 2025-07-06 18:36:42.833035+00 2025-07-06 18:36:42.833045+00 f t DESCUENTO 0.00 2 3115 \N +117931 2025-07-06 18:36:42.834243+00 2025-07-06 18:36:42.834252+00 f t TOTAL 0.00 3 3115 \N +117932 2025-07-06 18:36:42.835451+00 2025-07-06 18:36:42.835459+00 f t ADELANTO 0.00 4 3115 \N +117937 2025-07-06 18:40:46.881339+00 2025-07-06 18:40:46.881353+00 f t SUBTOTAL 0.00 1 3116 \N +117938 2025-07-06 18:40:46.882832+00 2025-07-06 18:40:46.882839+00 f t DESCUENTO 0.00 2 3116 \N +117939 2025-07-06 18:40:46.884053+00 2025-07-06 18:40:46.884059+00 f t TOTAL 0.00 3 3116 \N +117940 2025-07-06 18:40:46.884987+00 2025-07-06 18:40:46.884992+00 f t ADELANTO 0.00 4 3116 \N +119533 2025-07-07 13:03:33.125897+00 2025-07-07 13:03:33.125906+00 f t SUBTOTAL 70000.00 1 3162 \N +119534 2025-07-07 13:03:33.127506+00 2025-07-07 13:03:33.127513+00 f t DESCUENTO 0.00 2 3162 \N +119535 2025-07-07 13:03:33.128586+00 2025-07-07 13:03:33.128592+00 f t TOTAL 70000.00 3 3162 \N +119536 2025-07-07 13:03:33.129488+00 2025-07-07 13:03:33.129493+00 f t ADELANTO 15000.00 4 3162 \N +119637 2025-07-07 13:20:27.589964+00 2025-07-07 13:20:27.589977+00 f t SUBTOTAL 62000.00 1 3166 \N +119638 2025-07-07 13:20:27.592283+00 2025-07-07 13:20:27.592294+00 f t DESCUENTO 0.00 2 3166 \N +119639 2025-07-07 13:20:27.595573+00 2025-07-07 13:20:27.595584+00 f t TOTAL 62000.00 3 3166 \N +119640 2025-07-07 13:20:27.597383+00 2025-07-07 13:20:27.597394+00 f t ADELANTO 12000.00 4 3166 \N +117997 2025-07-06 19:01:02.016118+00 2025-07-06 19:01:02.016133+00 f t SUBTOTAL 70000.00 1 3117 \N +117998 2025-07-06 19:01:02.01862+00 2025-07-06 19:01:02.018631+00 f t DESCUENTO 0.00 2 3117 \N +117999 2025-07-06 19:01:02.020693+00 2025-07-06 19:01:02.020705+00 f t TOTAL 70000.00 3 3117 \N +118000 2025-07-06 19:01:02.02281+00 2025-07-06 19:01:02.022822+00 f t ADELANTO 10000.00 4 3117 \N +127011 2025-07-10 12:40:16.618762+00 2025-07-10 12:40:16.61877+00 f t TOTAL 95000.00 3 3346 \N +127012 2025-07-10 12:40:16.62035+00 2025-07-10 12:40:16.620358+00 f t ADELANTO 10000.00 4 3346 \N +153637 2025-07-21 13:58:20.762898+00 2025-07-21 13:58:20.762907+00 f t SUBTOTAL 0.00 1 4022 \N +181636 2025-08-02 17:56:54.781891+00 2025-08-02 17:56:54.781898+00 f t ADELANTO 9500.00 4 4768 \N +118461 2025-07-06 20:48:04.57999+00 2025-07-06 20:48:04.579999+00 f t SUBTOTAL 0.00 1 3128 \N +118462 2025-07-06 20:48:04.581822+00 2025-07-06 20:48:04.581831+00 f t DESCUENTO 0.00 2 3128 \N +118463 2025-07-06 20:48:04.583108+00 2025-07-06 20:48:04.583114+00 f t TOTAL 0.00 3 3128 \N +118464 2025-07-06 20:48:04.584184+00 2025-07-06 20:48:04.584189+00 f t ADELANTO 0.00 4 3128 \N +124377 2025-07-09 00:13:07.267218+00 2025-07-09 00:13:07.267229+00 f t SUBTOTAL 118000.00 1 3284 \N +124378 2025-07-09 00:13:07.269319+00 2025-07-09 00:13:07.269329+00 f t DESCUENTO 0.00 2 3284 \N +124379 2025-07-09 00:13:07.270845+00 2025-07-09 00:13:07.270855+00 f t TOTAL 118000.00 3 3284 \N +124380 2025-07-09 00:13:07.272357+00 2025-07-09 00:13:07.272365+00 f t ADELANTO 28500.00 4 3284 \N +118089 2025-07-06 19:08:13.823656+00 2025-07-06 19:08:13.823667+00 f t SUBTOTAL 62000.00 1 3118 \N +118090 2025-07-06 19:08:13.825363+00 2025-07-06 19:08:13.825372+00 f t DESCUENTO 0.00 2 3118 \N +118091 2025-07-06 19:08:13.826731+00 2025-07-06 19:08:13.826738+00 f t TOTAL 62000.00 3 3118 \N +118092 2025-07-06 19:08:13.828008+00 2025-07-06 19:08:13.828014+00 f t ADELANTO 12000.00 4 3118 \N +118097 2025-07-06 19:23:28.030843+00 2025-07-06 19:23:28.030851+00 f t SUBTOTAL 0.00 1 3119 \N +118098 2025-07-06 19:23:28.032418+00 2025-07-06 19:23:28.032425+00 f t DESCUENTO 0.00 2 3119 \N +118099 2025-07-06 19:23:28.033912+00 2025-07-06 19:23:28.033918+00 f t TOTAL 0.00 3 3119 \N +118100 2025-07-06 19:23:28.03571+00 2025-07-06 19:23:28.035717+00 f t ADELANTO 0.00 4 3119 \N +118105 2025-07-06 19:28:18.313102+00 2025-07-06 19:28:18.313111+00 f t SUBTOTAL 0.00 1 3120 \N +118106 2025-07-06 19:28:18.314479+00 2025-07-06 19:28:18.314486+00 f t DESCUENTO 0.00 2 3120 \N +118107 2025-07-06 19:28:18.315702+00 2025-07-06 19:28:18.315708+00 f t TOTAL 0.00 3 3120 \N +118108 2025-07-06 19:28:18.316778+00 2025-07-06 19:28:18.316784+00 f t ADELANTO 0.00 4 3120 \N +121729 2025-07-08 02:05:13.856069+00 2025-07-08 02:05:13.856081+00 f t SUBTOTAL 49500.00 1 3223 \N +121730 2025-07-08 02:05:13.857901+00 2025-07-08 02:05:13.857907+00 f t DESCUENTO 0.00 2 3223 \N +118817 2025-07-06 23:07:23.058767+00 2025-07-06 23:07:23.058777+00 f t SUBTOTAL 50000.00 1 3136 \N +118818 2025-07-06 23:07:23.060615+00 2025-07-06 23:07:23.060623+00 f t DESCUENTO 0.00 2 3136 \N +118819 2025-07-06 23:07:23.061901+00 2025-07-06 23:07:23.061907+00 f t TOTAL 50000.00 3 3136 \N +118820 2025-07-06 23:07:23.063056+00 2025-07-06 23:07:23.063062+00 f t ADELANTO 10000.00 4 3136 \N +121731 2025-07-08 02:05:13.85905+00 2025-07-08 02:05:13.859056+00 f t TOTAL 49500.00 3 3223 \N +121732 2025-07-08 02:05:13.860162+00 2025-07-08 02:05:13.860167+00 f t ADELANTO 11500.00 4 3223 \N +118945 2025-07-07 02:13:05.34651+00 2025-07-07 02:13:05.346518+00 f t SUBTOTAL 0.00 1 3144 \N +118946 2025-07-07 02:13:05.350703+00 2025-07-07 02:13:05.350712+00 f t DESCUENTO 0.00 2 3144 \N +118947 2025-07-07 02:13:05.352908+00 2025-07-07 02:13:05.352919+00 f t TOTAL 0.00 3 3144 \N +118948 2025-07-07 02:13:05.354728+00 2025-07-07 02:13:05.354736+00 f t ADELANTO 0.00 4 3144 \N +118157 2025-07-06 19:59:16.008296+00 2025-07-06 19:59:16.008305+00 f t SUBTOTAL 50000.00 1 3121 \N +118158 2025-07-06 19:59:16.010053+00 2025-07-06 19:59:16.010059+00 f t DESCUENTO 0.00 2 3121 \N +118159 2025-07-06 19:59:16.011189+00 2025-07-06 19:59:16.011194+00 f t TOTAL 50000.00 3 3121 \N +118160 2025-07-06 19:59:16.01317+00 2025-07-06 19:59:16.013176+00 f t ADELANTO 10000.00 4 3121 \N +119161 2025-07-07 03:26:02.698351+00 2025-07-07 03:26:02.69836+00 f t SUBTOTAL 0.00 1 3150 \N +119162 2025-07-07 03:26:02.699882+00 2025-07-07 03:26:02.699893+00 f t DESCUENTO 0.00 2 3150 \N +119163 2025-07-07 03:26:02.701256+00 2025-07-07 03:26:02.701262+00 f t TOTAL 0.00 3 3150 \N +119164 2025-07-07 03:26:02.702261+00 2025-07-07 03:26:02.702266+00 f t ADELANTO 0.00 4 3150 \N +119429 2025-07-07 11:13:39.476636+00 2025-07-07 11:13:39.476645+00 f t SUBTOTAL 42000.00 1 3160 \N +119430 2025-07-07 11:13:39.47828+00 2025-07-07 11:13:39.478288+00 f t DESCUENTO 0.00 2 3160 \N +119431 2025-07-07 11:13:39.479414+00 2025-07-07 11:13:39.47942+00 f t TOTAL 42000.00 3 3160 \N +119432 2025-07-07 11:13:39.480504+00 2025-07-07 11:13:39.480511+00 f t ADELANTO 9500.00 4 3160 \N +125409 2025-07-09 18:00:21.408912+00 2025-07-09 18:00:21.408924+00 f t SUBTOTAL 50000.00 1 3306 \N +125410 2025-07-09 18:00:21.412508+00 2025-07-09 18:00:21.41252+00 f t DESCUENTO 0.00 2 3306 \N +125411 2025-07-09 18:00:21.415047+00 2025-07-09 18:00:21.41506+00 f t TOTAL 50000.00 3 3306 \N +125412 2025-07-09 18:00:21.418001+00 2025-07-09 18:00:21.418012+00 f t ADELANTO 10000.00 4 3306 \N +119605 2025-07-07 13:18:28.143901+00 2025-07-07 13:18:28.143911+00 f t SUBTOTAL 62000.00 1 3165 \N +119606 2025-07-07 13:18:28.146435+00 2025-07-07 13:18:28.146443+00 f t DESCUENTO 0.00 2 3165 \N +119607 2025-07-07 13:18:28.147824+00 2025-07-07 13:18:28.14783+00 f t TOTAL 62000.00 3 3165 \N +119608 2025-07-07 13:18:28.149069+00 2025-07-07 13:18:28.149074+00 f t ADELANTO 12000.00 4 3165 \N +122505 2025-07-08 14:07:53.366645+00 2025-07-08 14:07:53.366657+00 f t SUBTOTAL 130000.00 1 3241 \N +122506 2025-07-08 14:07:53.36859+00 2025-07-08 14:07:53.368598+00 f t DESCUENTO 0.00 2 3241 \N +122507 2025-07-08 14:07:53.370226+00 2025-07-08 14:07:53.370235+00 f t TOTAL 130000.00 3 3241 \N +122508 2025-07-08 14:07:53.371833+00 2025-07-08 14:07:53.371843+00 f t ADELANTO 15000.00 4 3241 \N +122689 2025-07-08 15:23:19.656137+00 2025-07-08 15:23:19.656145+00 f t SUBTOTAL 50000.00 1 3246 \N +122690 2025-07-08 15:23:19.659282+00 2025-07-08 15:23:19.65929+00 f t DESCUENTO 0.00 2 3246 \N +122691 2025-07-08 15:23:19.660515+00 2025-07-08 15:23:19.660522+00 f t TOTAL 50000.00 3 3246 \N +122692 2025-07-08 15:23:19.661686+00 2025-07-08 15:23:19.661692+00 f t ADELANTO 10000.00 4 3246 \N +122925 2025-07-08 17:57:28.816348+00 2025-07-08 17:57:28.81636+00 f t SUBTOTAL 0.00 1 3254 \N +122926 2025-07-08 17:57:28.81808+00 2025-07-08 17:57:28.818089+00 f t DESCUENTO 0.00 2 3254 \N +122927 2025-07-08 17:57:28.81955+00 2025-07-08 17:57:28.819559+00 f t TOTAL 0.00 3 3254 \N +122928 2025-07-08 17:57:28.820985+00 2025-07-08 17:57:28.820994+00 f t ADELANTO 0.00 4 3254 \N +122949 2025-07-08 17:58:31.137339+00 2025-07-08 17:58:31.13735+00 f t SUBTOTAL 0.00 1 3255 \N +122950 2025-07-08 17:58:31.138632+00 2025-07-08 17:58:31.138639+00 f t DESCUENTO 0.00 2 3255 \N +122951 2025-07-08 17:58:31.139826+00 2025-07-08 17:58:31.139834+00 f t TOTAL 0.00 3 3255 \N +122952 2025-07-08 17:58:31.140972+00 2025-07-08 17:58:31.140978+00 f t ADELANTO 0.00 4 3255 \N +122989 2025-07-08 18:00:05.168255+00 2025-07-08 18:00:05.168269+00 f t SUBTOTAL 202200.00 1 3253 \N +122990 2025-07-08 18:00:05.171378+00 2025-07-08 18:00:05.171391+00 f t DESCUENTO 0.00 2 3253 \N +122991 2025-07-08 18:00:05.173716+00 2025-07-08 18:00:05.173728+00 f t TOTAL 202200.00 3 3253 \N +122992 2025-07-08 18:00:05.176175+00 2025-07-08 18:00:05.176188+00 f t ADELANTO 114200.00 4 3253 \N +123025 2025-07-08 18:04:28.516444+00 2025-07-08 18:04:28.516452+00 f t SUBTOTAL 64500.00 1 3256 \N +123026 2025-07-08 18:04:28.518217+00 2025-07-08 18:04:28.518224+00 f t DESCUENTO 0.00 2 3256 \N +123027 2025-07-08 18:04:28.519526+00 2025-07-08 18:04:28.519532+00 f t TOTAL 64500.00 3 3256 \N +123028 2025-07-08 18:04:28.520674+00 2025-07-08 18:04:28.52068+00 f t ADELANTO 17000.00 4 3256 \N +153638 2025-07-21 13:58:20.764383+00 2025-07-21 13:58:20.76439+00 f t DESCUENTO 0.00 2 4022 \N +119877 2025-07-07 15:07:25.642598+00 2025-07-07 15:07:25.642607+00 f t SUBTOTAL 0.00 1 3172 \N +119878 2025-07-07 15:07:25.644149+00 2025-07-07 15:07:25.644155+00 f t DESCUENTO 0.00 2 3172 \N +119879 2025-07-07 15:07:25.645139+00 2025-07-07 15:07:25.645144+00 f t TOTAL 0.00 3 3172 \N +119880 2025-07-07 15:07:25.64604+00 2025-07-07 15:07:25.646045+00 f t ADELANTO 0.00 4 3172 \N +119897 2025-07-07 15:08:28.427609+00 2025-07-07 15:08:28.42762+00 f t SUBTOTAL 0.00 1 3173 \N +119898 2025-07-07 15:08:28.429436+00 2025-07-07 15:08:28.429446+00 f t DESCUENTO 0.00 2 3173 \N +119899 2025-07-07 15:08:28.430812+00 2025-07-07 15:08:28.43082+00 f t TOTAL 0.00 3 3173 \N +119900 2025-07-07 15:08:28.432179+00 2025-07-07 15:08:28.432188+00 f t ADELANTO 0.00 4 3173 \N +119905 2025-07-07 15:14:47.705981+00 2025-07-07 15:14:47.705989+00 f t SUBTOTAL 0.00 1 3174 \N +119906 2025-07-07 15:14:47.707047+00 2025-07-07 15:14:47.707052+00 f t DESCUENTO 0.00 2 3174 \N +119907 2025-07-07 15:14:47.707967+00 2025-07-07 15:14:47.707972+00 f t TOTAL 0.00 3 3174 \N +119908 2025-07-07 15:14:47.708761+00 2025-07-07 15:14:47.708766+00 f t ADELANTO 0.00 4 3174 \N +119913 2025-07-07 15:17:01.31738+00 2025-07-07 15:17:01.317394+00 f t SUBTOTAL 0.00 1 3175 \N +119914 2025-07-07 15:17:01.319354+00 2025-07-07 15:17:01.319366+00 f t DESCUENTO 0.00 2 3175 \N +119915 2025-07-07 15:17:01.320894+00 2025-07-07 15:17:01.320903+00 f t TOTAL 0.00 3 3175 \N +119916 2025-07-07 15:17:01.32222+00 2025-07-07 15:17:01.322229+00 f t ADELANTO 0.00 4 3175 \N +121521 2025-07-08 01:33:35.704415+00 2025-07-08 01:33:35.704426+00 f t SUBTOTAL 111000.00 1 3219 \N +121522 2025-07-08 01:33:35.706469+00 2025-07-08 01:33:35.70648+00 f t DESCUENTO 0.00 2 3219 \N +121523 2025-07-08 01:33:35.708092+00 2025-07-08 01:33:35.708102+00 f t TOTAL 111000.00 3 3219 \N +121524 2025-07-08 01:33:35.70948+00 2025-07-08 01:33:35.709489+00 f t ADELANTO 23500.00 4 3219 \N +124513 2025-07-09 02:14:34.536882+00 2025-07-09 02:14:34.53689+00 f t SUBTOTAL 94500.00 1 3286 \N +124514 2025-07-09 02:14:34.538434+00 2025-07-09 02:14:34.53844+00 f t DESCUENTO 0.00 2 3286 \N +124515 2025-07-09 02:14:34.539457+00 2025-07-09 02:14:34.539462+00 f t TOTAL 94500.00 3 3286 \N +124516 2025-07-09 02:14:34.540637+00 2025-07-09 02:14:34.540642+00 f t ADELANTO 26500.00 4 3286 \N +121701 2025-07-08 02:00:31.482115+00 2025-07-08 02:00:31.482128+00 f t SUBTOTAL 42000.00 1 3222 \N +121702 2025-07-08 02:00:31.484695+00 2025-07-08 02:00:31.484704+00 f t DESCUENTO 0.00 2 3222 \N +121703 2025-07-08 02:00:31.487239+00 2025-07-08 02:00:31.487251+00 f t TOTAL 42000.00 3 3222 \N +121704 2025-07-08 02:00:31.489522+00 2025-07-08 02:00:31.489535+00 f t ADELANTO 9500.00 4 3222 \N +121765 2025-07-08 02:25:46.061759+00 2025-07-08 02:25:46.061767+00 f t SUBTOTAL 42000.00 1 3224 \N +121766 2025-07-08 02:25:46.063323+00 2025-07-08 02:25:46.06333+00 f t DESCUENTO 0.00 2 3224 \N +121767 2025-07-08 02:25:46.064609+00 2025-07-08 02:25:46.064614+00 f t TOTAL 42000.00 3 3224 \N +121768 2025-07-08 02:25:46.065689+00 2025-07-08 02:25:46.065694+00 f t ADELANTO 9500.00 4 3224 \N +119973 2025-07-07 15:23:07.284548+00 2025-07-07 15:23:07.284557+00 f t SUBTOTAL 84000.00 1 3176 \N +119974 2025-07-07 15:23:07.28618+00 2025-07-07 15:23:07.286189+00 f t DESCUENTO 0.00 2 3176 \N +119975 2025-07-07 15:23:07.287462+00 2025-07-07 15:23:07.287468+00 f t TOTAL 84000.00 3 3176 \N +119976 2025-07-07 15:23:07.288852+00 2025-07-07 15:23:07.288861+00 f t ADELANTO 18000.00 4 3176 \N +119981 2025-07-07 15:23:08.187985+00 2025-07-07 15:23:08.187998+00 f t SUBTOTAL 0.00 1 3177 \N +119982 2025-07-07 15:23:08.190149+00 2025-07-07 15:23:08.190159+00 f t DESCUENTO 0.00 2 3177 \N +119983 2025-07-07 15:23:08.19201+00 2025-07-07 15:23:08.192019+00 f t TOTAL 0.00 3 3177 \N +119984 2025-07-07 15:23:08.193318+00 2025-07-07 15:23:08.193326+00 f t ADELANTO 0.00 4 3177 \N +120001 2025-07-07 15:30:32.066179+00 2025-07-07 15:30:32.066188+00 f t SUBTOTAL 0.00 1 3178 \N +120002 2025-07-07 15:30:32.068233+00 2025-07-07 15:30:32.068241+00 f t DESCUENTO 0.00 2 3178 \N +120003 2025-07-07 15:30:32.069713+00 2025-07-07 15:30:32.069724+00 f t TOTAL 0.00 3 3178 \N +120004 2025-07-07 15:30:32.071359+00 2025-07-07 15:30:32.071366+00 f t ADELANTO 0.00 4 3178 \N +125101 2025-07-09 15:55:51.984961+00 2025-07-09 15:55:51.984969+00 f t SUBTOTAL 111000.00 1 3300 \N +125102 2025-07-09 15:55:51.987407+00 2025-07-09 15:55:51.987415+00 f t DESCUENTO 0.00 2 3300 \N +125103 2025-07-09 15:55:51.989076+00 2025-07-09 15:55:51.989083+00 f t TOTAL 111000.00 3 3300 \N +125104 2025-07-09 15:55:51.990276+00 2025-07-09 15:55:51.990281+00 f t ADELANTO 23500.00 4 3300 \N +122153 2025-07-08 11:06:03.488965+00 2025-07-08 11:06:03.488973+00 f t SUBTOTAL 102700.00 1 3230 \N +122154 2025-07-08 11:06:03.491003+00 2025-07-08 11:06:03.491011+00 f t DESCUENTO 0.00 2 3230 \N +122155 2025-07-08 11:06:03.492603+00 2025-07-08 11:06:03.492614+00 f t TOTAL 102700.00 3 3230 \N +120033 2025-07-07 15:39:00.253691+00 2025-07-07 15:39:00.253703+00 f t SUBTOTAL 50000.00 1 3179 \N +120034 2025-07-07 15:39:00.255748+00 2025-07-07 15:39:00.25576+00 f t DESCUENTO 0.00 2 3179 \N +120035 2025-07-07 15:39:00.257471+00 2025-07-07 15:39:00.257481+00 f t TOTAL 50000.00 3 3179 \N +120036 2025-07-07 15:39:00.259027+00 2025-07-07 15:39:00.259035+00 f t ADELANTO 10000.00 4 3179 \N +122156 2025-07-08 11:06:03.494629+00 2025-07-08 11:06:03.49464+00 f t ADELANTO 64700.00 4 3230 \N +125373 2025-07-09 17:50:58.090226+00 2025-07-09 17:50:58.090233+00 f t SUBTOTAL 50000.00 1 3305 \N +125374 2025-07-09 17:50:58.092076+00 2025-07-09 17:50:58.092085+00 f t DESCUENTO 0.00 2 3305 \N +125375 2025-07-09 17:50:58.09337+00 2025-07-09 17:50:58.093376+00 f t TOTAL 50000.00 3 3305 \N +125376 2025-07-09 17:50:58.094491+00 2025-07-09 17:50:58.094497+00 f t ADELANTO 10000.00 4 3305 \N +125417 2025-07-09 18:46:54.810103+00 2025-07-09 18:46:54.81011+00 f t SUBTOTAL 0.00 1 3307 \N +125418 2025-07-09 18:46:54.811459+00 2025-07-09 18:46:54.811466+00 f t DESCUENTO 0.00 2 3307 \N +125419 2025-07-09 18:46:54.812588+00 2025-07-09 18:46:54.812595+00 f t TOTAL 0.00 3 3307 \N +125420 2025-07-09 18:46:54.813901+00 2025-07-09 18:46:54.813906+00 f t ADELANTO 0.00 4 3307 \N +120061 2025-07-07 15:40:29.91505+00 2025-07-07 15:40:29.91506+00 f t SUBTOTAL 27500.00 1 3180 \N +120062 2025-07-07 15:40:29.917003+00 2025-07-07 15:40:29.917012+00 f t DESCUENTO 0.00 2 3180 \N +120063 2025-07-07 15:40:29.918602+00 2025-07-07 15:40:29.918612+00 f t TOTAL 27500.00 3 3180 \N +120064 2025-07-07 15:40:29.920199+00 2025-07-07 15:40:29.920206+00 f t ADELANTO 27500.00 4 3180 \N +125561 2025-07-09 19:17:37.102148+00 2025-07-09 19:17:37.102158+00 f t SUBTOTAL 95000.00 1 3311 \N +125562 2025-07-09 19:17:37.104024+00 2025-07-09 19:17:37.104033+00 f t DESCUENTO 0.00 2 3311 \N +125563 2025-07-09 19:17:37.10524+00 2025-07-09 19:17:37.105246+00 f t TOTAL 95000.00 3 3311 \N +125564 2025-07-09 19:17:37.106363+00 2025-07-09 19:17:37.106368+00 f t ADELANTO 10000.00 4 3311 \N +120097 2025-07-07 16:37:30.662508+00 2025-07-07 16:37:30.662517+00 f t SUBTOTAL 70000.00 1 3181 \N +120098 2025-07-07 16:37:30.664486+00 2025-07-07 16:37:30.664495+00 f t DESCUENTO 0.00 2 3181 \N +120099 2025-07-07 16:37:30.665985+00 2025-07-07 16:37:30.665992+00 f t TOTAL 70000.00 3 3181 \N +120100 2025-07-07 16:37:30.667295+00 2025-07-07 16:37:30.667301+00 f t ADELANTO 15000.00 4 3181 \N +122853 2025-07-08 16:28:25.4669+00 2025-07-08 16:28:25.466911+00 f t SUBTOTAL 85000.00 1 3251 \N +122854 2025-07-08 16:28:25.468814+00 2025-07-08 16:28:25.468823+00 f t DESCUENTO 0.00 2 3251 \N +122855 2025-07-08 16:28:25.47039+00 2025-07-08 16:28:25.470396+00 f t TOTAL 85000.00 3 3251 \N +122856 2025-07-08 16:28:25.471898+00 2025-07-08 16:28:25.471907+00 f t ADELANTO 47500.00 4 3251 \N +124045 2025-07-08 22:43:21.826514+00 2025-07-08 22:43:21.826521+00 f t SUBTOTAL 62000.00 1 3276 \N +124046 2025-07-08 22:43:21.828207+00 2025-07-08 22:43:21.828212+00 f t DESCUENTO 0.00 2 3276 \N +124047 2025-07-08 22:43:21.829368+00 2025-07-08 22:43:21.829373+00 f t TOTAL 62000.00 3 3276 \N +124048 2025-07-08 22:43:21.830412+00 2025-07-08 22:43:21.830417+00 f t ADELANTO 12000.00 4 3276 \N +124105 2025-07-08 23:08:58.564453+00 2025-07-08 23:08:58.564464+00 f t SUBTOTAL 27500.00 1 3277 \N +124106 2025-07-08 23:08:58.566494+00 2025-07-08 23:08:58.566502+00 f t DESCUENTO 0.00 2 3277 \N +124107 2025-07-08 23:08:58.568079+00 2025-07-08 23:08:58.568086+00 f t TOTAL 27500.00 3 3277 \N +124108 2025-07-08 23:08:58.56936+00 2025-07-08 23:08:58.569366+00 f t ADELANTO 27500.00 4 3277 \N +153639 2025-07-21 13:58:20.76597+00 2025-07-21 13:58:20.765976+00 f t TOTAL 0.00 3 4022 \N +120189 2025-07-07 16:47:01.423215+00 2025-07-07 16:47:01.423227+00 f t SUBTOTAL 0.00 1 3182 \N +120190 2025-07-07 16:47:01.426766+00 2025-07-07 16:47:01.426778+00 f t DESCUENTO 0.00 2 3182 \N +120191 2025-07-07 16:47:01.429358+00 2025-07-07 16:47:01.429368+00 f t TOTAL 0.00 3 3182 \N +120192 2025-07-07 16:47:01.431179+00 2025-07-07 16:47:01.431187+00 f t ADELANTO 0.00 4 3182 \N +127353 2025-07-10 15:07:44.570471+00 2025-07-10 15:07:44.57048+00 f t SUBTOTAL 0.00 1 3358 \N +127354 2025-07-10 15:07:44.571863+00 2025-07-10 15:07:44.571869+00 f t DESCUENTO 0.00 2 3358 \N +127355 2025-07-10 15:07:44.573043+00 2025-07-10 15:07:44.573048+00 f t TOTAL 0.00 3 3358 \N +127356 2025-07-10 15:07:44.574146+00 2025-07-10 15:07:44.574155+00 f t ADELANTO 0.00 4 3358 \N +127393 2025-07-10 15:13:47.509146+00 2025-07-10 15:13:47.509157+00 f t SUBTOTAL 61000.00 1 3359 \N +127394 2025-07-10 15:13:47.511055+00 2025-07-10 15:13:47.511064+00 f t DESCUENTO 0.00 2 3359 \N +127395 2025-07-10 15:13:47.512392+00 2025-07-10 15:13:47.512399+00 f t TOTAL 61000.00 3 3359 \N +127396 2025-07-10 15:13:47.513609+00 2025-07-10 15:13:47.513616+00 f t ADELANTO 11000.00 4 3359 \N +124645 2025-07-09 04:30:01.73622+00 2025-07-09 04:30:01.736233+00 f t SUBTOTAL 42000.00 1 3288 \N +124646 2025-07-09 04:30:01.739089+00 2025-07-09 04:30:01.739103+00 f t DESCUENTO 0.00 2 3288 \N +124647 2025-07-09 04:30:01.741499+00 2025-07-09 04:30:01.741512+00 f t TOTAL 42000.00 3 3288 \N +124648 2025-07-09 04:30:01.744079+00 2025-07-09 04:30:01.744091+00 f t ADELANTO 9500.00 4 3288 \N +120229 2025-07-07 17:08:30.868941+00 2025-07-07 17:08:30.868949+00 f t SUBTOTAL 0.00 1 3183 \N +120230 2025-07-07 17:08:30.870856+00 2025-07-07 17:08:30.870862+00 f t DESCUENTO 0.00 2 3183 \N +120231 2025-07-07 17:08:30.872032+00 2025-07-07 17:08:30.872038+00 f t TOTAL 0.00 3 3183 \N +120232 2025-07-07 17:08:30.87308+00 2025-07-07 17:08:30.873085+00 f t ADELANTO 0.00 4 3183 \N +120237 2025-07-07 17:53:24.055626+00 2025-07-07 17:53:24.055635+00 f t SUBTOTAL 0.00 1 3184 \N +120238 2025-07-07 17:53:24.056777+00 2025-07-07 17:53:24.056782+00 f t DESCUENTO 0.00 2 3184 \N +120239 2025-07-07 17:53:24.057785+00 2025-07-07 17:53:24.05779+00 f t TOTAL 0.00 3 3184 \N +120240 2025-07-07 17:53:24.058734+00 2025-07-07 17:53:24.058739+00 f t ADELANTO 0.00 4 3184 \N +121773 2025-07-08 02:30:20.152102+00 2025-07-08 02:30:20.152113+00 f t SUBTOTAL 0.00 1 3225 \N +121774 2025-07-08 02:30:20.153898+00 2025-07-08 02:30:20.153906+00 f t DESCUENTO 0.00 2 3225 \N +121775 2025-07-08 02:30:20.157338+00 2025-07-08 02:30:20.157346+00 f t TOTAL 0.00 3 3225 \N +121776 2025-07-08 02:30:20.158886+00 2025-07-08 02:30:20.158893+00 f t ADELANTO 0.00 4 3225 \N +120277 2025-07-07 18:11:26.544464+00 2025-07-07 18:11:26.544473+00 f t SUBTOTAL 72000.00 1 3185 \N +120278 2025-07-07 18:11:26.54594+00 2025-07-07 18:11:26.545946+00 f t DESCUENTO 0.00 2 3185 \N +120279 2025-07-07 18:11:26.546979+00 2025-07-07 18:11:26.546985+00 f t TOTAL 72000.00 3 3185 \N +120280 2025-07-07 18:11:26.547983+00 2025-07-07 18:11:26.547988+00 f t ADELANTO 19000.00 4 3185 \N +122125 2025-07-08 11:01:52.230971+00 2025-07-08 11:01:52.230984+00 f t SUBTOTAL 62000.00 1 3229 \N +122126 2025-07-08 11:01:52.232924+00 2025-07-08 11:01:52.232932+00 f t DESCUENTO 0.00 2 3229 \N +122127 2025-07-08 11:01:52.234206+00 2025-07-08 11:01:52.234211+00 f t TOTAL 62000.00 3 3229 \N +122128 2025-07-08 11:01:52.235449+00 2025-07-08 11:01:52.235456+00 f t ADELANTO 12000.00 4 3229 \N +122161 2025-07-08 11:39:55.17598+00 2025-07-08 11:39:55.175988+00 f t SUBTOTAL 0.00 1 3231 \N +122162 2025-07-08 11:39:55.177665+00 2025-07-08 11:39:55.177674+00 f t DESCUENTO 0.00 2 3231 \N +122163 2025-07-08 11:39:55.178919+00 2025-07-08 11:39:55.178924+00 f t TOTAL 0.00 3 3231 \N +122164 2025-07-08 11:39:55.180915+00 2025-07-08 11:39:55.18092+00 f t ADELANTO 0.00 4 3231 \N +122197 2025-07-08 12:38:17.091827+00 2025-07-08 12:38:17.091836+00 f t SUBTOTAL 42000.00 1 3233 \N +122198 2025-07-08 12:38:17.093822+00 2025-07-08 12:38:17.09383+00 f t DESCUENTO 0.00 2 3233 \N +122199 2025-07-08 12:38:17.095436+00 2025-07-08 12:38:17.095445+00 f t TOTAL 42000.00 3 3233 \N +122200 2025-07-08 12:38:17.09727+00 2025-07-08 12:38:17.097281+00 f t ADELANTO 9500.00 4 3233 \N +120329 2025-07-07 18:20:03.465281+00 2025-07-07 18:20:03.465295+00 f t SUBTOTAL 42000.00 1 3186 \N +120330 2025-07-07 18:20:03.483893+00 2025-07-07 18:20:03.483908+00 f t DESCUENTO 0.00 2 3186 \N +120331 2025-07-07 18:20:03.486897+00 2025-07-07 18:20:03.486911+00 f t TOTAL 42000.00 3 3186 \N +120332 2025-07-07 18:20:03.492267+00 2025-07-07 18:20:03.492282+00 f t ADELANTO 9500.00 4 3186 \N +125569 2025-07-09 19:42:02.447699+00 2025-07-09 19:42:02.447708+00 f t SUBTOTAL 0.00 1 3312 \N +125570 2025-07-09 19:42:02.449427+00 2025-07-09 19:42:02.449436+00 f t DESCUENTO 0.00 2 3312 \N +125571 2025-07-09 19:42:02.451034+00 2025-07-09 19:42:02.451043+00 f t TOTAL 0.00 3 3312 \N +125572 2025-07-09 19:42:02.452848+00 2025-07-09 19:42:02.452856+00 f t ADELANTO 0.00 4 3312 \N +120373 2025-07-07 18:27:48.354487+00 2025-07-07 18:27:48.354497+00 f t SUBTOTAL 0.00 1 3187 \N +120374 2025-07-07 18:27:48.356261+00 2025-07-07 18:27:48.356268+00 f t DESCUENTO 0.00 2 3187 \N +120375 2025-07-07 18:27:48.357293+00 2025-07-07 18:27:48.357299+00 f t TOTAL 0.00 3 3187 \N +120376 2025-07-07 18:27:48.358355+00 2025-07-07 18:27:48.358361+00 f t ADELANTO 0.00 4 3187 \N +125749 2025-07-09 21:27:11.772824+00 2025-07-09 21:27:11.772833+00 f t SUBTOTAL 0.00 1 3315 \N +125750 2025-07-09 21:27:11.774605+00 2025-07-09 21:27:11.774612+00 f t DESCUENTO 0.00 2 3315 \N +125751 2025-07-09 21:27:11.775671+00 2025-07-09 21:27:11.775676+00 f t TOTAL 0.00 3 3315 \N +125752 2025-07-09 21:27:11.776797+00 2025-07-09 21:27:11.776804+00 f t ADELANTO 0.00 4 3315 \N +122825 2025-07-08 16:04:24.392104+00 2025-07-08 16:04:24.392117+00 f t SUBTOTAL 0.00 1 3250 \N +122826 2025-07-08 16:04:24.39423+00 2025-07-08 16:04:24.39424+00 f t DESCUENTO 0.00 2 3250 \N +122827 2025-07-08 16:04:24.395546+00 2025-07-08 16:04:24.395554+00 f t TOTAL 0.00 3 3250 \N +122828 2025-07-08 16:04:24.396813+00 2025-07-08 16:04:24.396821+00 f t ADELANTO 0.00 4 3250 \N +120421 2025-07-07 18:39:39.661062+00 2025-07-07 18:39:39.661071+00 f t SUBTOTAL 135750.00 1 3188 \N +120422 2025-07-07 18:39:39.662473+00 2025-07-07 18:39:39.662478+00 f t DESCUENTO 0.00 2 3188 \N +120423 2025-07-07 18:39:39.663561+00 2025-07-07 18:39:39.663567+00 f t TOTAL 135750.00 3 3188 \N +120424 2025-07-07 18:39:39.66446+00 2025-07-07 18:39:39.664465+00 f t ADELANTO 28250.00 4 3188 \N +120453 2025-07-07 18:41:09.074686+00 2025-07-07 18:41:09.074695+00 f t SUBTOTAL 42000.00 1 3189 \N +120454 2025-07-07 18:41:09.076482+00 2025-07-07 18:41:09.07649+00 f t DESCUENTO 0.00 2 3189 \N +120455 2025-07-07 18:41:09.07771+00 2025-07-07 18:41:09.077717+00 f t TOTAL 42000.00 3 3189 \N +120456 2025-07-07 18:41:09.078854+00 2025-07-07 18:41:09.078859+00 f t ADELANTO 9500.00 4 3189 \N +130069 2025-07-11 18:26:31.740013+00 2025-07-11 18:26:31.740023+00 f t SUBTOTAL 0.00 1 3427 \N +120461 2025-07-07 19:15:08.453059+00 2025-07-07 19:15:08.453072+00 f t SUBTOTAL 0.00 1 3190 \N +120462 2025-07-07 19:15:08.454988+00 2025-07-07 19:15:08.454997+00 f t DESCUENTO 0.00 2 3190 \N +120463 2025-07-07 19:15:08.456774+00 2025-07-07 19:15:08.456782+00 f t TOTAL 0.00 3 3190 \N +120464 2025-07-07 19:15:08.458373+00 2025-07-07 19:15:08.458414+00 f t ADELANTO 0.00 4 3190 \N +121237 2025-07-08 00:27:17.024329+00 2025-07-08 00:27:17.024341+00 f t SUBTOTAL 50000.00 1 3215 \N +121238 2025-07-08 00:27:17.026427+00 2025-07-08 00:27:17.026439+00 f t DESCUENTO 0.00 2 3215 \N +121239 2025-07-08 00:27:17.027939+00 2025-07-08 00:27:17.027948+00 f t TOTAL 50000.00 3 3215 \N +121240 2025-07-08 00:27:17.029438+00 2025-07-08 00:27:17.029446+00 f t ADELANTO 10000.00 4 3215 \N +124565 2025-07-09 03:30:35.244731+00 2025-07-09 03:30:35.244742+00 f t SUBTOTAL 85000.00 1 3287 \N +124566 2025-07-09 03:30:35.246638+00 2025-07-09 03:30:35.246648+00 f t DESCUENTO 0.00 2 3287 \N +124567 2025-07-09 03:30:35.247998+00 2025-07-09 03:30:35.248007+00 f t TOTAL 85000.00 3 3287 \N +124568 2025-07-09 03:30:35.249128+00 2025-07-09 03:30:35.249134+00 f t ADELANTO 47500.00 4 3287 \N +120525 2025-07-07 19:24:06.772868+00 2025-07-07 19:24:06.772881+00 f t SUBTOTAL 64500.00 1 3191 \N +120526 2025-07-07 19:24:06.774601+00 2025-07-07 19:24:06.77461+00 f t DESCUENTO 0.00 2 3191 \N +120527 2025-07-07 19:24:06.777407+00 2025-07-07 19:24:06.777413+00 f t TOTAL 64500.00 3 3191 \N +120528 2025-07-07 19:24:06.779414+00 2025-07-07 19:24:06.779421+00 f t ADELANTO 17000.00 4 3191 \N +121781 2025-07-08 08:02:49.10491+00 2025-07-08 08:02:49.104921+00 f t SUBTOTAL 0.00 1 3226 \N +121782 2025-07-08 08:02:49.106451+00 2025-07-08 08:02:49.106458+00 f t DESCUENTO 0.00 2 3226 \N +121783 2025-07-08 08:02:49.107498+00 2025-07-08 08:02:49.107507+00 f t TOTAL 0.00 3 3226 \N +121784 2025-07-08 08:02:49.108597+00 2025-07-08 08:02:49.108602+00 f t ADELANTO 0.00 4 3226 \N +120581 2025-07-07 19:52:16.797068+00 2025-07-07 19:52:16.797077+00 f t SUBTOTAL 0.00 1 3192 \N +120582 2025-07-07 19:52:16.798939+00 2025-07-07 19:52:16.798947+00 f t DESCUENTO 0.00 2 3192 \N +120583 2025-07-07 19:52:16.800087+00 2025-07-07 19:52:16.800093+00 f t TOTAL 0.00 3 3192 \N +120584 2025-07-07 19:52:16.80125+00 2025-07-07 19:52:16.801256+00 f t ADELANTO 0.00 4 3192 \N +125149 2025-07-09 15:59:59.383811+00 2025-07-09 15:59:59.383819+00 f t SUBTOTAL 111000.00 1 3301 \N +125150 2025-07-09 15:59:59.385793+00 2025-07-09 15:59:59.385801+00 f t DESCUENTO 0.00 2 3301 \N +125151 2025-07-09 15:59:59.387392+00 2025-07-09 15:59:59.387401+00 f t TOTAL 111000.00 3 3301 \N +125152 2025-07-09 15:59:59.388813+00 2025-07-09 15:59:59.388819+00 f t ADELANTO 23500.00 4 3301 \N +122169 2025-07-08 12:01:53.394396+00 2025-07-08 12:01:53.394407+00 f t SUBTOTAL 0.00 1 3232 \N +122170 2025-07-08 12:01:53.396953+00 2025-07-08 12:01:53.396962+00 f t DESCUENTO 0.00 2 3232 \N +122171 2025-07-08 12:01:53.398613+00 2025-07-08 12:01:53.39862+00 f t TOTAL 0.00 3 3232 \N +122172 2025-07-08 12:01:53.400043+00 2025-07-08 12:01:53.400049+00 f t ADELANTO 0.00 4 3232 \N +125261 2025-07-09 16:26:37.038187+00 2025-07-09 16:26:37.038199+00 f t SUBTOTAL 42000.00 1 3302 \N +125262 2025-07-09 16:26:37.040139+00 2025-07-09 16:26:37.040148+00 f t DESCUENTO 0.00 2 3302 \N +125263 2025-07-09 16:26:37.041881+00 2025-07-09 16:26:37.041889+00 f t TOTAL 42000.00 3 3302 \N +125264 2025-07-09 16:26:37.043517+00 2025-07-09 16:26:37.043528+00 f t ADELANTO 9500.00 4 3302 \N +122205 2025-07-08 13:00:40.015157+00 2025-07-08 13:00:40.01517+00 f t SUBTOTAL 0.00 1 3234 \N +122206 2025-07-08 13:00:40.017068+00 2025-07-08 13:00:40.017079+00 f t DESCUENTO 0.00 2 3234 \N +122207 2025-07-08 13:00:40.019355+00 2025-07-08 13:00:40.019366+00 f t TOTAL 0.00 3 3234 \N +122208 2025-07-08 13:00:40.021846+00 2025-07-08 13:00:40.021856+00 f t ADELANTO 0.00 4 3234 \N +120613 2025-07-07 19:52:45.912936+00 2025-07-07 19:52:45.912945+00 f t SUBTOTAL 49500.00 1 3193 \N +120614 2025-07-07 19:52:45.91465+00 2025-07-07 19:52:45.914656+00 f t DESCUENTO 0.00 2 3193 \N +120615 2025-07-07 19:52:45.916687+00 2025-07-07 19:52:45.916693+00 f t TOTAL 49500.00 3 3193 \N +120616 2025-07-07 19:52:45.917737+00 2025-07-07 19:52:45.917742+00 f t ADELANTO 11500.00 4 3193 \N +122357 2025-07-08 13:37:17.058068+00 2025-07-08 13:37:17.05808+00 f t SUBTOTAL 130000.00 1 3237 \N +122358 2025-07-08 13:37:17.05965+00 2025-07-08 13:37:17.059657+00 f t DESCUENTO 0.00 2 3237 \N +122359 2025-07-08 13:37:17.060846+00 2025-07-08 13:37:17.060854+00 f t TOTAL 130000.00 3 3237 \N +122360 2025-07-08 13:37:17.061871+00 2025-07-08 13:37:17.061876+00 f t ADELANTO 15000.00 4 3237 \N +125533 2025-07-09 19:12:15.344929+00 2025-07-09 19:12:15.344937+00 f t SUBTOTAL 64500.00 1 3310 \N +125534 2025-07-09 19:12:15.346739+00 2025-07-09 19:12:15.346745+00 f t DESCUENTO 0.00 2 3310 \N +125535 2025-07-09 19:12:15.348319+00 2025-07-09 19:12:15.348325+00 f t TOTAL 64500.00 3 3310 \N +125536 2025-07-09 19:12:15.349759+00 2025-07-09 19:12:15.349765+00 f t ADELANTO 17000.00 4 3310 \N +122637 2025-07-08 15:08:39.205884+00 2025-07-08 15:08:39.205895+00 f t SUBTOTAL 42000.00 1 3244 \N +122638 2025-07-08 15:08:39.207696+00 2025-07-08 15:08:39.207703+00 f t DESCUENTO 0.00 2 3244 \N +122639 2025-07-08 15:08:39.208876+00 2025-07-08 15:08:39.208881+00 f t TOTAL 42000.00 3 3244 \N +122640 2025-07-08 15:08:39.209993+00 2025-07-08 15:08:39.209998+00 f t ADELANTO 9500.00 4 3244 \N +120673 2025-07-07 20:05:18.651358+00 2025-07-07 20:05:18.651369+00 f t SUBTOTAL 89500.00 1 3194 \N +120674 2025-07-07 20:05:18.653066+00 2025-07-07 20:05:18.653073+00 f t DESCUENTO 0.00 2 3194 \N +120675 2025-07-07 20:05:18.654382+00 2025-07-07 20:05:18.654388+00 f t TOTAL 89500.00 3 3194 \N +120676 2025-07-07 20:05:18.655545+00 2025-07-07 20:05:18.655551+00 f t ADELANTO 19500.00 4 3194 \N +122737 2025-07-08 15:35:56.566805+00 2025-07-08 15:35:56.566815+00 f t SUBTOTAL 0.00 1 3248 \N +122738 2025-07-08 15:35:56.568568+00 2025-07-08 15:35:56.568574+00 f t DESCUENTO 0.00 2 3248 \N +122739 2025-07-08 15:35:56.569817+00 2025-07-08 15:35:56.569823+00 f t TOTAL 0.00 3 3248 \N +122740 2025-07-08 15:35:56.570899+00 2025-07-08 15:35:56.570905+00 f t ADELANTO 0.00 4 3248 \N +126025 2025-07-09 22:31:32.140316+00 2025-07-09 22:31:32.140325+00 f t SUBTOTAL 0.00 1 3320 \N +126026 2025-07-09 22:31:32.14272+00 2025-07-09 22:31:32.142727+00 f t DESCUENTO 0.00 2 3320 \N +126027 2025-07-09 22:31:32.144095+00 2025-07-09 22:31:32.144101+00 f t TOTAL 0.00 3 3320 \N +126028 2025-07-09 22:31:32.145316+00 2025-07-09 22:31:32.145322+00 f t ADELANTO 0.00 4 3320 \N +126085 2025-07-09 22:59:52.586781+00 2025-07-09 22:59:52.58679+00 f t SUBTOTAL 50000.00 1 3321 \N +126086 2025-07-09 22:59:52.588437+00 2025-07-09 22:59:52.588445+00 f t DESCUENTO 0.00 2 3321 \N +126087 2025-07-09 22:59:52.589708+00 2025-07-09 22:59:52.589725+00 f t TOTAL 50000.00 3 3321 \N +126088 2025-07-09 22:59:52.590776+00 2025-07-09 22:59:52.590781+00 f t ADELANTO 10000.00 4 3321 \N +120737 2025-07-07 20:13:33.324232+00 2025-07-07 20:13:33.324244+00 f t SUBTOTAL 50000.00 1 3195 \N +120738 2025-07-07 20:13:33.325862+00 2025-07-07 20:13:33.325873+00 f t DESCUENTO 0.00 2 3195 \N +120739 2025-07-07 20:13:33.327694+00 2025-07-07 20:13:33.327703+00 f t TOTAL 50000.00 3 3195 \N +120740 2025-07-07 20:13:33.329006+00 2025-07-07 20:13:33.329015+00 f t ADELANTO 10000.00 4 3195 \N +120745 2025-07-07 20:54:42.304356+00 2025-07-07 20:54:42.304366+00 f t SUBTOTAL 0.00 1 3196 \N +120746 2025-07-07 20:54:42.306696+00 2025-07-07 20:54:42.306705+00 f t DESCUENTO 0.00 2 3196 \N +120747 2025-07-07 20:54:42.308123+00 2025-07-07 20:54:42.308134+00 f t TOTAL 0.00 3 3196 \N +120748 2025-07-07 20:54:42.309801+00 2025-07-07 20:54:42.309807+00 f t ADELANTO 0.00 4 3196 \N +130070 2025-07-11 18:26:31.742389+00 2025-07-11 18:26:31.742397+00 f t DESCUENTO 0.00 2 3427 \N +130071 2025-07-11 18:26:31.744157+00 2025-07-11 18:26:31.744165+00 f t TOTAL 0.00 3 3427 \N +130072 2025-07-11 18:26:31.745691+00 2025-07-11 18:26:31.745698+00 f t ADELANTO 0.00 4 3427 \N +120753 2025-07-07 21:12:29.125677+00 2025-07-07 21:12:29.125691+00 f t SUBTOTAL 0.00 1 3197 \N +120754 2025-07-07 21:12:29.130059+00 2025-07-07 21:12:29.130073+00 f t DESCUENTO 0.00 2 3197 \N +120755 2025-07-07 21:12:29.133385+00 2025-07-07 21:12:29.1334+00 f t TOTAL 0.00 3 3197 \N +120756 2025-07-07 21:12:29.135725+00 2025-07-07 21:12:29.135734+00 f t ADELANTO 0.00 4 3197 \N +120761 2025-07-07 21:17:18.928098+00 2025-07-07 21:17:18.928108+00 f t SUBTOTAL 0.00 1 3198 \N +120762 2025-07-07 21:17:18.929968+00 2025-07-07 21:17:18.929978+00 f t DESCUENTO 0.00 2 3198 \N +120763 2025-07-07 21:17:18.931504+00 2025-07-07 21:17:18.93154+00 f t TOTAL 0.00 3 3198 \N +120764 2025-07-07 21:17:18.933013+00 2025-07-07 21:17:18.933021+00 f t ADELANTO 0.00 4 3198 \N +121245 2025-07-08 01:20:37.732754+00 2025-07-08 01:20:37.732762+00 f t SUBTOTAL 0.00 1 3216 \N +121246 2025-07-08 01:20:37.734077+00 2025-07-08 01:20:37.734084+00 f t DESCUENTO 0.00 2 3216 \N +121247 2025-07-08 01:20:37.735058+00 2025-07-08 01:20:37.735063+00 f t TOTAL 0.00 3 3216 \N +121248 2025-07-08 01:20:37.736175+00 2025-07-08 01:20:37.73618+00 f t ADELANTO 0.00 4 3216 \N +120769 2025-07-07 21:23:49.934643+00 2025-07-07 21:23:49.934656+00 f t SUBTOTAL 0.00 1 3199 \N +120770 2025-07-07 21:23:49.936426+00 2025-07-07 21:23:49.936438+00 f t DESCUENTO 0.00 2 3199 \N +120771 2025-07-07 21:23:49.938012+00 2025-07-07 21:23:49.938021+00 f t TOTAL 0.00 3 3199 \N +120772 2025-07-07 21:23:49.939435+00 2025-07-07 21:23:49.939444+00 f t ADELANTO 0.00 4 3199 \N +120777 2025-07-07 21:26:05.402142+00 2025-07-07 21:26:05.402151+00 f t SUBTOTAL 0.00 1 3200 \N +120778 2025-07-07 21:26:05.403749+00 2025-07-07 21:26:05.403757+00 f t DESCUENTO 0.00 2 3200 \N +120779 2025-07-07 21:26:05.40535+00 2025-07-07 21:26:05.405357+00 f t TOTAL 0.00 3 3200 \N +120780 2025-07-07 21:26:05.407697+00 2025-07-07 21:26:05.407706+00 f t ADELANTO 0.00 4 3200 \N +120785 2025-07-07 21:26:59.621667+00 2025-07-07 21:26:59.62168+00 f t SUBTOTAL 0.00 1 3201 \N +120786 2025-07-07 21:26:59.623119+00 2025-07-07 21:26:59.623144+00 f t DESCUENTO 0.00 2 3201 \N +120787 2025-07-07 21:26:59.624504+00 2025-07-07 21:26:59.624512+00 f t TOTAL 0.00 3 3201 \N +120788 2025-07-07 21:26:59.625621+00 2025-07-07 21:26:59.625628+00 f t ADELANTO 0.00 4 3201 \N +121625 2025-07-08 01:56:59.776949+00 2025-07-08 01:56:59.776958+00 f t SUBTOTAL 27500.00 1 3221 \N +121626 2025-07-08 01:56:59.778541+00 2025-07-08 01:56:59.778548+00 f t DESCUENTO 0.00 2 3221 \N +121627 2025-07-08 01:56:59.779695+00 2025-07-08 01:56:59.7797+00 f t TOTAL 27500.00 3 3221 \N +121628 2025-07-08 01:56:59.780733+00 2025-07-08 01:56:59.780738+00 f t ADELANTO 27500.00 4 3221 \N +120841 2025-07-07 21:40:17.335191+00 2025-07-07 21:40:17.3352+00 f t SUBTOTAL 0.00 1 3202 \N +120842 2025-07-07 21:40:17.337029+00 2025-07-07 21:40:17.337037+00 f t DESCUENTO 0.00 2 3202 \N +120843 2025-07-07 21:40:17.338388+00 2025-07-07 21:40:17.338396+00 f t TOTAL 0.00 3 3202 \N +120844 2025-07-07 21:40:17.339603+00 2025-07-07 21:40:17.339609+00 f t ADELANTO 0.00 4 3202 \N +120849 2025-07-07 21:41:40.896152+00 2025-07-07 21:41:40.896161+00 f t SUBTOTAL 0.00 1 3203 \N +120850 2025-07-07 21:41:40.897984+00 2025-07-07 21:41:40.897991+00 f t DESCUENTO 0.00 2 3203 \N +120851 2025-07-07 21:41:40.899284+00 2025-07-07 21:41:40.89929+00 f t TOTAL 0.00 3 3203 \N +120852 2025-07-07 21:41:40.900396+00 2025-07-07 21:41:40.900401+00 f t ADELANTO 0.00 4 3203 \N +120865 2025-07-07 21:50:34.557752+00 2025-07-07 21:50:34.557761+00 f t SUBTOTAL 0.00 1 3204 \N +120866 2025-07-07 21:50:34.559276+00 2025-07-07 21:50:34.559282+00 f t DESCUENTO 0.00 2 3204 \N +120867 2025-07-07 21:50:34.560241+00 2025-07-07 21:50:34.560246+00 f t TOTAL 0.00 3 3204 \N +120868 2025-07-07 21:50:34.561232+00 2025-07-07 21:50:34.561237+00 f t ADELANTO 0.00 4 3204 \N +120873 2025-07-07 21:55:45.546792+00 2025-07-07 21:55:45.546804+00 f t SUBTOTAL 0.00 1 3205 \N +120874 2025-07-07 21:55:45.548376+00 2025-07-07 21:55:45.548383+00 f t DESCUENTO 0.00 2 3205 \N +120875 2025-07-07 21:55:45.549625+00 2025-07-07 21:55:45.54963+00 f t TOTAL 0.00 3 3205 \N +120876 2025-07-07 21:55:45.550686+00 2025-07-07 21:55:45.550692+00 f t ADELANTO 0.00 4 3205 \N +120905 2025-07-07 22:02:10.07495+00 2025-07-07 22:02:10.074959+00 f t SUBTOTAL 42000.00 1 3206 \N +120906 2025-07-07 22:02:10.076638+00 2025-07-07 22:02:10.076644+00 f t DESCUENTO 0.00 2 3206 \N +120907 2025-07-07 22:02:10.077841+00 2025-07-07 22:02:10.077847+00 f t TOTAL 42000.00 3 3206 \N +120908 2025-07-07 22:02:10.078852+00 2025-07-07 22:02:10.078858+00 f t ADELANTO 9500.00 4 3206 \N +122269 2025-07-08 13:31:42.334905+00 2025-07-08 13:31:42.334915+00 f t SUBTOTAL 0.00 1 3235 \N +122270 2025-07-08 13:31:42.336888+00 2025-07-08 13:31:42.336896+00 f t DESCUENTO 0.00 2 3235 \N +122271 2025-07-08 13:31:42.338141+00 2025-07-08 13:31:42.338147+00 f t TOTAL 0.00 3 3235 \N +122272 2025-07-08 13:31:42.339282+00 2025-07-08 13:31:42.339288+00 f t ADELANTO 0.00 4 3235 \N +122365 2025-07-08 13:37:45.030813+00 2025-07-08 13:37:45.030822+00 f t SUBTOTAL 0.00 1 3238 \N +122366 2025-07-08 13:37:45.032215+00 2025-07-08 13:37:45.032223+00 f t DESCUENTO 0.00 2 3238 \N +122367 2025-07-08 13:37:45.033402+00 2025-07-08 13:37:45.033408+00 f t TOTAL 0.00 3 3238 \N +122368 2025-07-08 13:37:45.034346+00 2025-07-08 13:37:45.034351+00 f t ADELANTO 0.00 4 3238 \N +122457 2025-07-08 14:06:03.309192+00 2025-07-08 14:06:03.309204+00 f t SUBTOTAL 82700.00 1 3240 \N +122458 2025-07-08 14:06:03.312894+00 2025-07-08 14:06:03.312908+00 f t DESCUENTO 0.00 2 3240 \N +122459 2025-07-08 14:06:03.314963+00 2025-07-08 14:06:03.314974+00 f t TOTAL 82700.00 3 3240 \N +122460 2025-07-08 14:06:03.316846+00 2025-07-08 14:06:03.316853+00 f t ADELANTO 44700.00 4 3240 \N +122609 2025-07-08 14:58:25.307188+00 2025-07-08 14:58:25.307197+00 f t SUBTOTAL 95000.00 1 3243 \N +122610 2025-07-08 14:58:25.308926+00 2025-07-08 14:58:25.308936+00 f t DESCUENTO 0.00 2 3243 \N +122611 2025-07-08 14:58:25.310513+00 2025-07-08 14:58:25.310519+00 f t TOTAL 95000.00 3 3243 \N +122612 2025-07-08 14:58:25.314599+00 2025-07-08 14:58:25.314606+00 f t ADELANTO 10000.00 4 3243 \N +122645 2025-07-08 15:12:13.946379+00 2025-07-08 15:12:13.946388+00 f t SUBTOTAL 0.00 1 3245 \N +122646 2025-07-08 15:12:13.947712+00 2025-07-08 15:12:13.947719+00 f t DESCUENTO 0.00 2 3245 \N +122647 2025-07-08 15:12:13.948804+00 2025-07-08 15:12:13.948809+00 f t TOTAL 0.00 3 3245 \N +122648 2025-07-08 15:12:13.94985+00 2025-07-08 15:12:13.949856+00 f t ADELANTO 0.00 4 3245 \N +121001 2025-07-07 22:23:28.932305+00 2025-07-07 22:23:28.932314+00 f t SUBTOTAL 84000.00 1 3207 \N +121002 2025-07-07 22:23:28.933987+00 2025-07-07 22:23:28.933995+00 f t DESCUENTO 0.00 2 3207 \N +121003 2025-07-07 22:23:28.935507+00 2025-07-07 22:23:28.935515+00 f t TOTAL 84000.00 3 3207 \N +121004 2025-07-07 22:23:28.936869+00 2025-07-07 22:23:28.936875+00 f t ADELANTO 19000.00 4 3207 \N +122869 2025-07-08 17:09:31.998491+00 2025-07-08 17:09:31.9985+00 f t SUBTOTAL 0.00 1 3252 \N +122870 2025-07-08 17:09:32.000597+00 2025-07-08 17:09:32.000604+00 f t DESCUENTO 0.00 2 3252 \N +122871 2025-07-08 17:09:32.001885+00 2025-07-08 17:09:32.001892+00 f t TOTAL 0.00 3 3252 \N +122872 2025-07-08 17:09:32.003318+00 2025-07-08 17:09:32.003324+00 f t ADELANTO 0.00 4 3252 \N +121185 2025-07-07 23:35:32.591726+00 2025-07-07 23:35:32.591735+00 f t SUBTOTAL 42000.00 1 3212 \N +121186 2025-07-07 23:35:32.59346+00 2025-07-07 23:35:32.593468+00 f t DESCUENTO 0.00 2 3212 \N +121187 2025-07-07 23:35:32.594677+00 2025-07-07 23:35:32.594683+00 f t TOTAL 42000.00 3 3212 \N +121188 2025-07-07 23:35:32.595891+00 2025-07-07 23:35:32.595898+00 f t ADELANTO 9500.00 4 3212 \N +130077 2025-07-11 18:27:28.505722+00 2025-07-11 18:27:28.505732+00 f t SUBTOTAL 0.00 1 3428 \N +130078 2025-07-11 18:27:28.507042+00 2025-07-11 18:27:28.507049+00 f t DESCUENTO 0.00 2 3428 \N +130079 2025-07-11 18:27:28.508172+00 2025-07-11 18:27:28.508177+00 f t TOTAL 0.00 3 3428 \N +130080 2025-07-11 18:27:28.509064+00 2025-07-11 18:27:28.50907+00 f t ADELANTO 0.00 4 3428 \N +124289 2025-07-08 23:51:50.022506+00 2025-07-08 23:51:50.022517+00 f t SUBTOTAL 64500.00 1 3282 \N +124290 2025-07-08 23:51:50.02428+00 2025-07-08 23:51:50.024287+00 f t DESCUENTO 0.00 2 3282 \N +124291 2025-07-08 23:51:50.025813+00 2025-07-08 23:51:50.025823+00 f t TOTAL 64500.00 3 3282 \N +124292 2025-07-08 23:51:50.026983+00 2025-07-08 23:51:50.026988+00 f t ADELANTO 17000.00 4 3282 \N +121069 2025-07-07 22:30:19.731924+00 2025-07-07 22:30:19.731933+00 f t SUBTOTAL 42000.00 1 3208 \N +121070 2025-07-07 22:30:19.733512+00 2025-07-07 22:30:19.733519+00 f t DESCUENTO 0.00 2 3208 \N +121071 2025-07-07 22:30:19.7348+00 2025-07-07 22:30:19.734807+00 f t TOTAL 42000.00 3 3208 \N +121072 2025-07-07 22:30:19.735846+00 2025-07-07 22:30:19.735851+00 f t ADELANTO 9500.00 4 3208 \N +146937 2025-07-19 02:14:46.039262+00 2025-07-19 02:14:46.039275+00 f t SUBTOTAL 27500.00 1 3859 \N +146938 2025-07-19 02:14:46.041946+00 2025-07-19 02:14:46.041957+00 f t DESCUENTO 0.00 2 3859 \N +146939 2025-07-19 02:14:46.043748+00 2025-07-19 02:14:46.043759+00 f t TOTAL 27500.00 3 3859 \N +146940 2025-07-19 02:14:46.045605+00 2025-07-19 02:14:46.045613+00 f t ADELANTO 27500.00 4 3859 \N +121097 2025-07-07 23:00:08.934647+00 2025-07-07 23:00:08.93466+00 f t SUBTOTAL 50000.00 1 3209 \N +121098 2025-07-07 23:00:08.945393+00 2025-07-07 23:00:08.945407+00 f t DESCUENTO 0.00 2 3209 \N +121099 2025-07-07 23:00:08.948007+00 2025-07-07 23:00:08.948022+00 f t TOTAL 50000.00 3 3209 \N +121100 2025-07-07 23:00:08.950635+00 2025-07-07 23:00:08.95065+00 f t ADELANTO 10000.00 4 3209 \N +130761 2025-07-12 01:15:55.41391+00 2025-07-12 01:15:55.41392+00 f t SUBTOTAL 0.00 1 3444 \N +130762 2025-07-12 01:15:55.415234+00 2025-07-12 01:15:55.41524+00 f t DESCUENTO 0.00 2 3444 \N +130763 2025-07-12 01:15:55.416282+00 2025-07-12 01:15:55.416287+00 f t TOTAL 0.00 3 3444 \N +130764 2025-07-12 01:15:55.417292+00 2025-07-12 01:15:55.417298+00 f t ADELANTO 0.00 4 3444 \N +130813 2025-07-12 06:04:59.650479+00 2025-07-12 06:04:59.650492+00 f t SUBTOTAL 0.00 1 3448 \N +130814 2025-07-12 06:04:59.652275+00 2025-07-12 06:04:59.652283+00 f t DESCUENTO 0.00 2 3448 \N +121881 2025-07-08 10:49:07.13658+00 2025-07-08 10:49:07.136588+00 f t SUBTOTAL 50000.00 1 3228 \N +121882 2025-07-08 10:49:07.138307+00 2025-07-08 10:49:07.138318+00 f t DESCUENTO 0.00 2 3228 \N +121883 2025-07-08 10:49:07.1397+00 2025-07-08 10:49:07.139708+00 f t TOTAL 50000.00 3 3228 \N +121884 2025-07-08 10:49:07.140912+00 2025-07-08 10:49:07.140918+00 f t ADELANTO 10000.00 4 3228 \N +130815 2025-07-12 06:04:59.653848+00 2025-07-12 06:04:59.653854+00 f t TOTAL 0.00 3 3448 \N +130816 2025-07-12 06:04:59.654907+00 2025-07-12 06:04:59.654913+00 f t ADELANTO 0.00 4 3448 \N +130969 2025-07-12 07:29:24.360542+00 2025-07-12 07:29:24.360554+00 f t SUBTOTAL 0.00 1 3451 \N +130970 2025-07-12 07:29:24.362629+00 2025-07-12 07:29:24.36264+00 f t DESCUENTO 0.00 2 3451 \N +130971 2025-07-12 07:29:24.364089+00 2025-07-12 07:29:24.364096+00 f t TOTAL 0.00 3 3451 \N +130972 2025-07-12 07:29:24.365561+00 2025-07-12 07:29:24.365569+00 f t ADELANTO 0.00 4 3451 \N +131137 2025-07-12 10:58:34.685883+00 2025-07-12 10:58:34.685897+00 f t SUBTOTAL 0.00 1 3457 \N +131138 2025-07-12 10:58:34.690295+00 2025-07-12 10:58:34.690308+00 f t DESCUENTO 0.00 2 3457 \N +131139 2025-07-12 10:58:34.692067+00 2025-07-12 10:58:34.692079+00 f t TOTAL 0.00 3 3457 \N +125305 2025-07-09 16:57:48.805467+00 2025-07-09 16:57:48.805475+00 f t SUBTOTAL 62000.00 1 3303 \N +125306 2025-07-09 16:57:48.80687+00 2025-07-09 16:57:48.806875+00 f t DESCUENTO 0.00 2 3303 \N +125307 2025-07-09 16:57:48.808097+00 2025-07-09 16:57:48.808104+00 f t TOTAL 62000.00 3 3303 \N +125308 2025-07-09 16:57:48.808995+00 2025-07-09 16:57:48.809+00 f t ADELANTO 12000.00 4 3303 \N +131140 2025-07-12 10:58:34.693954+00 2025-07-12 10:58:34.693964+00 f t ADELANTO 0.00 4 3457 \N +122277 2025-07-08 13:31:57.924092+00 2025-07-08 13:31:57.924102+00 f t SUBTOTAL 0.00 1 3236 \N +122278 2025-07-08 13:31:57.925663+00 2025-07-08 13:31:57.92567+00 f t DESCUENTO 0.00 2 3236 \N +122279 2025-07-08 13:31:57.926839+00 2025-07-08 13:31:57.926844+00 f t TOTAL 0.00 3 3236 \N +122280 2025-07-08 13:31:57.927887+00 2025-07-08 13:31:57.927892+00 f t ADELANTO 0.00 4 3236 \N +122429 2025-07-08 13:47:11.340033+00 2025-07-08 13:47:11.340042+00 f t SUBTOTAL 84000.00 1 3239 \N +122430 2025-07-08 13:47:11.341627+00 2025-07-08 13:47:11.341634+00 f t DESCUENTO 0.00 2 3239 \N +122431 2025-07-08 13:47:11.342989+00 2025-07-08 13:47:11.342996+00 f t TOTAL 84000.00 3 3239 \N +122432 2025-07-08 13:47:11.344205+00 2025-07-08 13:47:11.344213+00 f t ADELANTO 19000.00 4 3239 \N +128325 2025-07-10 22:23:58.684645+00 2025-07-10 22:23:58.684654+00 f t SUBTOTAL 0.00 1 3387 \N +128326 2025-07-10 22:23:58.685991+00 2025-07-10 22:23:58.685997+00 f t DESCUENTO 0.00 2 3387 \N +128327 2025-07-10 22:23:58.687184+00 2025-07-10 22:23:58.68719+00 f t TOTAL 0.00 3 3387 \N +128328 2025-07-10 22:23:58.688273+00 2025-07-10 22:23:58.68828+00 f t ADELANTO 0.00 4 3387 \N +122581 2025-07-08 14:09:16.362085+00 2025-07-08 14:09:16.362093+00 f t SUBTOTAL 87000.00 1 3242 \N +122582 2025-07-08 14:09:16.364073+00 2025-07-08 14:09:16.36408+00 f t DESCUENTO 0.00 2 3242 \N +122583 2025-07-08 14:09:16.365861+00 2025-07-08 14:09:16.365868+00 f t TOTAL 87000.00 3 3242 \N +122584 2025-07-08 14:09:16.367123+00 2025-07-08 14:09:16.36715+00 f t ADELANTO 24500.00 4 3242 \N +122745 2025-07-08 15:36:35.398149+00 2025-07-08 15:36:35.398161+00 f t SUBTOTAL 49500.00 1 3247 \N +122746 2025-07-08 15:36:35.400213+00 2025-07-08 15:36:35.400221+00 f t DESCUENTO 0.00 2 3247 \N +122747 2025-07-08 15:36:35.401764+00 2025-07-08 15:36:35.401771+00 f t TOTAL 49500.00 3 3247 \N +122748 2025-07-08 15:36:35.403+00 2025-07-08 15:36:35.403008+00 f t ADELANTO 11500.00 4 3247 \N +122777 2025-07-08 15:40:44.399295+00 2025-07-08 15:40:44.399308+00 f t SUBTOTAL 49500.00 1 3249 \N +122778 2025-07-08 15:40:44.401145+00 2025-07-08 15:40:44.401156+00 f t DESCUENTO 0.00 2 3249 \N +122779 2025-07-08 15:40:44.402707+00 2025-07-08 15:40:44.402715+00 f t TOTAL 49500.00 3 3249 \N +122780 2025-07-08 15:40:44.404039+00 2025-07-08 15:40:44.404047+00 f t ADELANTO 11500.00 4 3249 \N +125965 2025-07-09 22:19:38.494242+00 2025-07-09 22:19:38.49425+00 f t SUBTOTAL 0.00 1 3318 \N +125966 2025-07-09 22:19:38.496219+00 2025-07-09 22:19:38.496227+00 f t DESCUENTO 0.00 2 3318 \N +125967 2025-07-09 22:19:38.497563+00 2025-07-09 22:19:38.497576+00 f t TOTAL 0.00 3 3318 \N +125968 2025-07-09 22:19:38.498788+00 2025-07-09 22:19:38.498794+00 f t ADELANTO 0.00 4 3318 \N +126185 2025-07-09 23:21:37.776779+00 2025-07-09 23:21:37.776788+00 f t SUBTOTAL 42000.00 1 3323 \N +126186 2025-07-09 23:21:37.778732+00 2025-07-09 23:21:37.77874+00 f t DESCUENTO 0.00 2 3323 \N +126187 2025-07-09 23:21:37.780094+00 2025-07-09 23:21:37.780102+00 f t TOTAL 42000.00 3 3323 \N +126188 2025-07-09 23:21:37.781261+00 2025-07-09 23:21:37.781268+00 f t ADELANTO 9500.00 4 3323 \N +127025 2025-07-10 12:40:48.140152+00 2025-07-10 12:40:48.14016+00 f t SUBTOTAL 50000.00 1 3347 \N +127026 2025-07-10 12:40:48.14193+00 2025-07-10 12:40:48.141937+00 f t DESCUENTO 0.00 2 3347 \N +127027 2025-07-10 12:40:48.143306+00 2025-07-10 12:40:48.143312+00 f t TOTAL 50000.00 3 3347 \N +127028 2025-07-10 12:40:48.144655+00 2025-07-10 12:40:48.144663+00 f t ADELANTO 10000.00 4 3347 \N +127081 2025-07-10 13:03:10.457286+00 2025-07-10 13:03:10.457294+00 f t SUBTOTAL 95000.00 1 3349 \N +127082 2025-07-10 13:03:10.45908+00 2025-07-10 13:03:10.45909+00 f t DESCUENTO 0.00 2 3349 \N +127083 2025-07-10 13:03:10.460368+00 2025-07-10 13:03:10.460375+00 f t TOTAL 95000.00 3 3349 \N +127084 2025-07-10 13:03:10.461345+00 2025-07-10 13:03:10.461351+00 f t ADELANTO 10000.00 4 3349 \N +124177 2025-07-08 23:26:58.719356+00 2025-07-08 23:26:58.719364+00 f t SUBTOTAL 50000.00 1 3279 \N +124178 2025-07-08 23:26:58.721001+00 2025-07-08 23:26:58.72101+00 f t DESCUENTO 0.00 2 3279 \N +124179 2025-07-08 23:26:58.722118+00 2025-07-08 23:26:58.722125+00 f t TOTAL 50000.00 3 3279 \N +124180 2025-07-08 23:26:58.723148+00 2025-07-08 23:26:58.723153+00 f t ADELANTO 10000.00 4 3279 \N +153640 2025-07-21 13:58:20.767276+00 2025-07-21 13:58:20.767283+00 f t ADELANTO 0.00 4 4022 \N +123073 2025-07-08 18:43:50.034582+00 2025-07-08 18:43:50.034591+00 f t SUBTOTAL 72000.00 1 3257 \N +123074 2025-07-08 18:43:50.036256+00 2025-07-08 18:43:50.036264+00 f t DESCUENTO 0.00 2 3257 \N +123075 2025-07-08 18:43:50.037538+00 2025-07-08 18:43:50.037544+00 f t TOTAL 72000.00 3 3257 \N +123076 2025-07-08 18:43:50.038847+00 2025-07-08 18:43:50.038855+00 f t ADELANTO 19000.00 4 3257 \N +124297 2025-07-09 00:05:14.590535+00 2025-07-09 00:05:14.590543+00 f t SUBTOTAL 0.00 1 3283 \N +124298 2025-07-09 00:05:14.592193+00 2025-07-09 00:05:14.592204+00 f t DESCUENTO 0.00 2 3283 \N +124299 2025-07-09 00:05:14.593819+00 2025-07-09 00:05:14.593827+00 f t TOTAL 0.00 3 3283 \N +124300 2025-07-09 00:05:14.595209+00 2025-07-09 00:05:14.595217+00 f t ADELANTO 0.00 4 3283 \N +127225 2025-07-10 13:27:05.063412+00 2025-07-10 13:27:05.06342+00 f t SUBTOTAL 62000.00 1 3352 \N +127226 2025-07-10 13:27:05.065261+00 2025-07-10 13:27:05.065268+00 f t DESCUENTO 0.00 2 3352 \N +127227 2025-07-10 13:27:05.066647+00 2025-07-10 13:27:05.066654+00 f t TOTAL 62000.00 3 3352 \N +127228 2025-07-10 13:27:05.067824+00 2025-07-10 13:27:05.06783+00 f t ADELANTO 12000.00 4 3352 \N +123113 2025-07-08 19:08:46.552022+00 2025-07-08 19:08:46.55203+00 f t SUBTOTAL 82700.00 1 3258 \N +123114 2025-07-08 19:08:46.553562+00 2025-07-08 19:08:46.553567+00 f t DESCUENTO 0.00 2 3258 \N +123115 2025-07-08 19:08:46.554768+00 2025-07-08 19:08:46.554773+00 f t TOTAL 82700.00 3 3258 \N +123116 2025-07-08 19:08:46.556421+00 2025-07-08 19:08:46.556426+00 f t ADELANTO 44700.00 4 3258 \N +124749 2025-07-09 11:06:16.605282+00 2025-07-09 11:06:16.605291+00 f t SUBTOTAL 94700.00 1 3291 \N +124750 2025-07-09 11:06:16.607+00 2025-07-09 11:06:16.607007+00 f t DESCUENTO 0.00 2 3291 \N +124751 2025-07-09 11:06:16.6083+00 2025-07-09 11:06:16.608305+00 f t TOTAL 94700.00 3 3291 \N +124752 2025-07-09 11:06:16.609329+00 2025-07-09 11:06:16.609334+00 f t ADELANTO 56700.00 4 3291 \N +123129 2025-07-08 20:19:05.814292+00 2025-07-08 20:19:05.814302+00 f t SUBTOTAL 0.00 1 3259 \N +123130 2025-07-08 20:19:05.81634+00 2025-07-08 20:19:05.816348+00 f t DESCUENTO 0.00 2 3259 \N +123131 2025-07-08 20:19:05.81792+00 2025-07-08 20:19:05.817929+00 f t TOTAL 0.00 3 3259 \N +123132 2025-07-08 20:19:05.820328+00 2025-07-08 20:19:05.82034+00 f t ADELANTO 0.00 4 3259 \N +124837 2025-07-09 12:15:15.865904+00 2025-07-09 12:15:15.865911+00 f t SUBTOTAL 42000.00 1 3293 \N +124838 2025-07-09 12:15:15.867541+00 2025-07-09 12:15:15.867546+00 f t DESCUENTO 0.00 2 3293 \N +124839 2025-07-09 12:15:15.868579+00 2025-07-09 12:15:15.868584+00 f t TOTAL 42000.00 3 3293 \N +124840 2025-07-09 12:15:15.869486+00 2025-07-09 12:15:15.869492+00 f t ADELANTO 9500.00 4 3293 \N +124889 2025-07-09 13:32:19.111644+00 2025-07-09 13:32:19.111653+00 f t SUBTOTAL 50000.00 1 3297 \N +124890 2025-07-09 13:32:19.113594+00 2025-07-09 13:32:19.1136+00 f t DESCUENTO 0.00 2 3297 \N +124891 2025-07-09 13:32:19.114914+00 2025-07-09 13:32:19.11492+00 f t TOTAL 50000.00 3 3297 \N +124892 2025-07-09 13:32:19.1162+00 2025-07-09 13:32:19.116206+00 f t ADELANTO 10000.00 4 3297 \N +123185 2025-07-08 20:23:48.726501+00 2025-07-08 20:23:48.726509+00 f t SUBTOTAL 129500.00 1 3260 \N +123186 2025-07-08 20:23:48.728055+00 2025-07-08 20:23:48.728062+00 f t DESCUENTO 0.00 2 3260 \N +123187 2025-07-08 20:23:48.729093+00 2025-07-08 20:23:48.729098+00 f t TOTAL 129500.00 3 3260 \N +123188 2025-07-08 20:23:48.730023+00 2025-07-08 20:23:48.730029+00 f t ADELANTO 27000.00 4 3260 \N +125313 2025-07-09 17:45:51.620123+00 2025-07-09 17:45:51.620131+00 f t SUBTOTAL 0.00 1 3304 \N +125314 2025-07-09 17:45:51.621443+00 2025-07-09 17:45:51.621449+00 f t DESCUENTO 0.00 2 3304 \N +125315 2025-07-09 17:45:51.622657+00 2025-07-09 17:45:51.622664+00 f t TOTAL 0.00 3 3304 \N +125316 2025-07-09 17:45:51.62375+00 2025-07-09 17:45:51.623756+00 f t ADELANTO 0.00 4 3304 \N +125505 2025-07-09 19:08:49.564347+00 2025-07-09 19:08:49.564358+00 f t SUBTOTAL 64500.00 1 3309 \N +125506 2025-07-09 19:08:49.566142+00 2025-07-09 19:08:49.566148+00 f t DESCUENTO 0.00 2 3309 \N +125507 2025-07-09 19:08:49.567293+00 2025-07-09 19:08:49.567297+00 f t TOTAL 64500.00 3 3309 \N +125508 2025-07-09 19:08:49.568191+00 2025-07-09 19:08:49.568196+00 f t ADELANTO 17000.00 4 3309 \N +123221 2025-07-08 20:31:11.516501+00 2025-07-08 20:31:11.51651+00 f t SUBTOTAL 49500.00 1 3261 \N +123222 2025-07-08 20:31:11.518049+00 2025-07-08 20:31:11.518056+00 f t DESCUENTO 0.00 2 3261 \N +123223 2025-07-08 20:31:11.519493+00 2025-07-08 20:31:11.519499+00 f t TOTAL 49500.00 3 3261 \N +123224 2025-07-08 20:31:11.520663+00 2025-07-08 20:31:11.520671+00 f t ADELANTO 11500.00 4 3261 \N +125641 2025-07-09 20:01:50.678666+00 2025-07-09 20:01:50.678676+00 f t SUBTOTAL 50000.00 1 3313 \N +125642 2025-07-09 20:01:50.68062+00 2025-07-09 20:01:50.680629+00 f t DESCUENTO 0.00 2 3313 \N +125643 2025-07-09 20:01:50.681817+00 2025-07-09 20:01:50.681825+00 f t TOTAL 50000.00 3 3313 \N +125644 2025-07-09 20:01:50.683002+00 2025-07-09 20:01:50.683007+00 f t ADELANTO 10000.00 4 3313 \N +125729 2025-07-09 20:55:37.039904+00 2025-07-09 20:55:37.039912+00 f t SUBTOTAL 84000.00 1 3314 \N +125730 2025-07-09 20:55:37.041405+00 2025-07-09 20:55:37.041412+00 f t DESCUENTO 0.00 2 3314 \N +125731 2025-07-09 20:55:37.042567+00 2025-07-09 20:55:37.042574+00 f t TOTAL 84000.00 3 3314 \N +125732 2025-07-09 20:55:37.043701+00 2025-07-09 20:55:37.043707+00 f t ADELANTO 19000.00 4 3314 \N +123285 2025-07-08 20:38:59.299113+00 2025-07-08 20:38:59.299121+00 f t SUBTOTAL 123200.00 1 3262 \N +123286 2025-07-08 20:38:59.300854+00 2025-07-08 20:38:59.300863+00 f t DESCUENTO 0.00 2 3262 \N +123287 2025-07-08 20:38:59.302842+00 2025-07-08 20:38:59.302848+00 f t TOTAL 123200.00 3 3262 \N +123288 2025-07-08 20:38:59.304125+00 2025-07-08 20:38:59.304131+00 f t ADELANTO 47200.00 4 3262 \N +126121 2025-07-09 23:03:13.916407+00 2025-07-09 23:03:13.916416+00 f t SUBTOTAL 42000.00 1 3322 \N +126122 2025-07-09 23:03:13.917904+00 2025-07-09 23:03:13.917914+00 f t DESCUENTO 0.00 2 3322 \N +126123 2025-07-09 23:03:13.919439+00 2025-07-09 23:03:13.919444+00 f t TOTAL 42000.00 3 3322 \N +126124 2025-07-09 23:03:13.920659+00 2025-07-09 23:03:13.920665+00 f t ADELANTO 9500.00 4 3322 \N +123313 2025-07-08 20:44:03.567847+00 2025-07-08 20:44:03.567859+00 f t SUBTOTAL 70000.00 1 3263 \N +123314 2025-07-08 20:44:03.570149+00 2025-07-08 20:44:03.57016+00 f t DESCUENTO 0.00 2 3263 \N +123315 2025-07-08 20:44:03.572109+00 2025-07-08 20:44:03.572119+00 f t TOTAL 70000.00 3 3263 \N +123316 2025-07-08 20:44:03.573933+00 2025-07-08 20:44:03.573941+00 f t ADELANTO 15000.00 4 3263 \N +130085 2025-07-11 19:18:14.554081+00 2025-07-11 19:18:14.554091+00 f t SUBTOTAL 0.00 1 3429 \N +136501 2025-07-14 17:54:04.233279+00 2025-07-14 17:54:04.23329+00 f t SUBTOTAL 61700.00 1 3591 \N +136502 2025-07-14 17:54:04.235472+00 2025-07-14 17:54:04.235482+00 f t DESCUENTO 0.00 2 3591 \N +136503 2025-07-14 17:54:04.237464+00 2025-07-14 17:54:04.237471+00 f t TOTAL 61700.00 3 3591 \N +124185 2025-07-08 23:27:13.667722+00 2025-07-08 23:27:13.667733+00 f t SUBTOTAL 0.00 1 3280 \N +124186 2025-07-08 23:27:13.669291+00 2025-07-08 23:27:13.6693+00 f t DESCUENTO 0.00 2 3280 \N +124187 2025-07-08 23:27:13.670648+00 2025-07-08 23:27:13.670656+00 f t TOTAL 0.00 3 3280 \N +124188 2025-07-08 23:27:13.67185+00 2025-07-08 23:27:13.671857+00 f t ADELANTO 0.00 4 3280 \N +123361 2025-07-08 20:49:58.702227+00 2025-07-08 20:49:58.702236+00 f t SUBTOTAL 42000.00 1 3264 \N +123362 2025-07-08 20:49:58.703853+00 2025-07-08 20:49:58.703859+00 f t DESCUENTO 0.00 2 3264 \N +123363 2025-07-08 20:49:58.705163+00 2025-07-08 20:49:58.705168+00 f t TOTAL 42000.00 3 3264 \N +123364 2025-07-08 20:49:58.706376+00 2025-07-08 20:49:58.706382+00 f t ADELANTO 9500.00 4 3264 \N +127409 2025-07-10 15:18:33.770443+00 2025-07-10 15:18:33.770452+00 f t SUBTOTAL 0.00 1 3362 \N +127410 2025-07-10 15:18:33.77181+00 2025-07-10 15:18:33.771816+00 f t DESCUENTO 0.00 2 3362 \N +127411 2025-07-10 15:18:33.773171+00 2025-07-10 15:18:33.773178+00 f t TOTAL 0.00 3 3362 \N +127412 2025-07-10 15:18:33.774205+00 2025-07-10 15:18:33.774211+00 f t ADELANTO 0.00 4 3362 \N +127441 2025-07-10 15:19:52.707879+00 2025-07-10 15:19:52.707892+00 f t SUBTOTAL 0.00 1 3363 \N +127442 2025-07-10 15:19:52.709819+00 2025-07-10 15:19:52.709831+00 f t DESCUENTO 0.00 2 3363 \N +127443 2025-07-10 15:19:52.711466+00 2025-07-10 15:19:52.711476+00 f t TOTAL 0.00 3 3363 \N +127444 2025-07-10 15:19:52.713204+00 2025-07-10 15:19:52.713215+00 f t ADELANTO 0.00 4 3363 \N +127473 2025-07-10 15:25:46.649153+00 2025-07-10 15:25:46.649162+00 f t SUBTOTAL 42000.00 1 3361 \N +127474 2025-07-10 15:25:46.650832+00 2025-07-10 15:25:46.650838+00 f t DESCUENTO 0.00 2 3361 \N +127475 2025-07-10 15:25:46.652075+00 2025-07-10 15:25:46.652083+00 f t TOTAL 42000.00 3 3361 \N +127476 2025-07-10 15:25:46.653568+00 2025-07-10 15:25:46.653576+00 f t ADELANTO 9500.00 4 3361 \N +124797 2025-07-09 11:58:19.890527+00 2025-07-09 11:58:19.890536+00 f t SUBTOTAL 42000.00 1 3292 \N +124798 2025-07-09 11:58:19.892229+00 2025-07-09 11:58:19.89224+00 f t DESCUENTO 0.00 2 3292 \N +124799 2025-07-09 11:58:19.893563+00 2025-07-09 11:58:19.893571+00 f t TOTAL 42000.00 3 3292 \N +124800 2025-07-09 11:58:19.894909+00 2025-07-09 11:58:19.894917+00 f t ADELANTO 9500.00 4 3292 \N +124845 2025-07-09 12:49:19.58926+00 2025-07-09 12:49:19.589272+00 f t SUBTOTAL 0.00 1 3294 \N +124846 2025-07-09 12:49:19.590984+00 2025-07-09 12:49:19.590994+00 f t DESCUENTO 0.00 2 3294 \N +124847 2025-07-09 12:49:19.592527+00 2025-07-09 12:49:19.592537+00 f t TOTAL 0.00 3 3294 \N +124848 2025-07-09 12:49:19.593945+00 2025-07-09 12:49:19.593955+00 f t ADELANTO 0.00 4 3294 \N +124897 2025-07-09 15:21:05.479615+00 2025-07-09 15:21:05.479625+00 f t SUBTOTAL 0.00 1 3298 \N +124898 2025-07-09 15:21:05.481134+00 2025-07-09 15:21:05.481141+00 f t DESCUENTO 0.00 2 3298 \N +124899 2025-07-09 15:21:05.482503+00 2025-07-09 15:21:05.482509+00 f t TOTAL 0.00 3 3298 \N +124900 2025-07-09 15:21:05.483566+00 2025-07-09 15:21:05.483571+00 f t ADELANTO 0.00 4 3298 \N +127765 2025-07-10 18:25:07.615118+00 2025-07-10 18:25:07.615152+00 f t SUBTOTAL 111000.00 1 3374 \N +127766 2025-07-10 18:25:07.617229+00 2025-07-10 18:25:07.617238+00 f t DESCUENTO 0.00 2 3374 \N +127767 2025-07-10 18:25:07.619004+00 2025-07-10 18:25:07.619013+00 f t TOTAL 111000.00 3 3374 \N +127768 2025-07-10 18:25:07.62078+00 2025-07-10 18:25:07.62079+00 f t ADELANTO 23500.00 4 3374 \N +127949 2025-07-10 20:09:48.258452+00 2025-07-10 20:09:48.258461+00 f t SUBTOTAL 95000.00 1 3378 \N +123485 2025-07-08 21:38:44.586519+00 2025-07-08 21:38:44.586531+00 f t SUBTOTAL 42000.00 1 3266 \N +123486 2025-07-08 21:38:44.588179+00 2025-07-08 21:38:44.588188+00 f t DESCUENTO 0.00 2 3266 \N +123487 2025-07-08 21:38:44.58963+00 2025-07-08 21:38:44.589638+00 f t TOTAL 42000.00 3 3266 \N +123488 2025-07-08 21:38:44.590856+00 2025-07-08 21:38:44.590865+00 f t ADELANTO 9500.00 4 3266 \N +127950 2025-07-10 20:09:48.260238+00 2025-07-10 20:09:48.260247+00 f t DESCUENTO 0.00 2 3378 \N +127951 2025-07-10 20:09:48.261467+00 2025-07-10 20:09:48.261473+00 f t TOTAL 95000.00 3 3378 \N +127952 2025-07-10 20:09:48.262553+00 2025-07-10 20:09:48.262561+00 f t ADELANTO 10000.00 4 3378 \N +123493 2025-07-08 21:38:55.191068+00 2025-07-08 21:38:55.191077+00 f t SUBTOTAL 106500.00 1 3265 \N +123494 2025-07-08 21:38:55.192462+00 2025-07-08 21:38:55.192467+00 f t DESCUENTO 0.00 2 3265 \N +123495 2025-07-08 21:38:55.193462+00 2025-07-08 21:38:55.193467+00 f t TOTAL 106500.00 3 3265 \N +123496 2025-07-08 21:38:55.194401+00 2025-07-08 21:38:55.194406+00 f t ADELANTO 26500.00 4 3265 \N +128137 2025-07-10 21:17:45.280591+00 2025-07-10 21:17:45.280599+00 f t SUBTOTAL 42000.00 1 3382 \N +128138 2025-07-10 21:17:45.282074+00 2025-07-10 21:17:45.282081+00 f t DESCUENTO 0.00 2 3382 \N +128139 2025-07-10 21:17:45.283001+00 2025-07-10 21:17:45.283006+00 f t TOTAL 42000.00 3 3382 \N +128140 2025-07-10 21:17:45.284084+00 2025-07-10 21:17:45.284095+00 f t ADELANTO 9500.00 4 3382 \N +128333 2025-07-10 22:56:57.405286+00 2025-07-10 22:56:57.405297+00 f t SUBTOTAL 0.00 1 3388 \N +128334 2025-07-10 22:56:57.406679+00 2025-07-10 22:56:57.406686+00 f t DESCUENTO 0.00 2 3388 \N +128335 2025-07-10 22:56:57.407991+00 2025-07-10 22:56:57.407998+00 f t TOTAL 0.00 3 3388 \N +128336 2025-07-10 22:56:57.409134+00 2025-07-10 22:56:57.40914+00 f t ADELANTO 0.00 4 3388 \N +126005 2025-07-09 22:26:53.465722+00 2025-07-09 22:26:53.465733+00 f t SUBTOTAL 92000.00 1 3319 \N +126006 2025-07-09 22:26:53.467818+00 2025-07-09 22:26:53.467828+00 f t DESCUENTO 0.00 2 3319 \N +126007 2025-07-09 22:26:53.469246+00 2025-07-09 22:26:53.469252+00 f t TOTAL 92000.00 3 3319 \N +126008 2025-07-09 22:26:53.470313+00 2025-07-09 22:26:53.470317+00 f t ADELANTO 19500.00 4 3319 \N +123593 2025-07-08 21:58:11.551998+00 2025-07-08 21:58:11.55201+00 f t SUBTOTAL 42000.00 1 3267 \N +123594 2025-07-08 21:58:11.553598+00 2025-07-08 21:58:11.553606+00 f t DESCUENTO 0.00 2 3267 \N +123595 2025-07-08 21:58:11.554952+00 2025-07-08 21:58:11.55496+00 f t TOTAL 42000.00 3 3267 \N +123596 2025-07-08 21:58:11.556205+00 2025-07-08 21:58:11.556212+00 f t ADELANTO 9500.00 4 3267 \N +128745 2025-07-11 01:44:26.920923+00 2025-07-11 01:44:26.920933+00 f t SUBTOTAL 0.00 1 3393 \N +128746 2025-07-11 01:44:26.922829+00 2025-07-11 01:44:26.922839+00 f t DESCUENTO 0.00 2 3393 \N +128747 2025-07-11 01:44:26.92419+00 2025-07-11 01:44:26.924198+00 f t TOTAL 0.00 3 3393 \N +128748 2025-07-11 01:44:26.925651+00 2025-07-11 01:44:26.925656+00 f t ADELANTO 0.00 4 3393 \N +123621 2025-07-08 22:12:49.044502+00 2025-07-08 22:12:49.04451+00 f t SUBTOTAL 70000.00 1 3268 \N +123622 2025-07-08 22:12:49.046263+00 2025-07-08 22:12:49.04627+00 f t DESCUENTO 0.00 2 3268 \N +123623 2025-07-08 22:12:49.047586+00 2025-07-08 22:12:49.047592+00 f t TOTAL 70000.00 3 3268 \N +123624 2025-07-08 22:12:49.048712+00 2025-07-08 22:12:49.048718+00 f t ADELANTO 15000.00 4 3268 \N +123629 2025-07-08 22:19:17.78192+00 2025-07-08 22:19:17.781928+00 f t SUBTOTAL 0.00 1 3269 \N +123630 2025-07-08 22:19:17.783304+00 2025-07-08 22:19:17.783311+00 f t DESCUENTO 0.00 2 3269 \N +123631 2025-07-08 22:19:17.78442+00 2025-07-08 22:19:17.784426+00 f t TOTAL 0.00 3 3269 \N +123632 2025-07-08 22:19:17.785429+00 2025-07-08 22:19:17.785435+00 f t ADELANTO 0.00 4 3269 \N +130086 2025-07-11 19:18:14.555422+00 2025-07-11 19:18:14.555428+00 f t DESCUENTO 0.00 2 3429 \N +130087 2025-07-11 19:18:14.556768+00 2025-07-11 19:18:14.556774+00 f t TOTAL 0.00 3 3429 \N +130088 2025-07-11 19:18:14.557857+00 2025-07-11 19:18:14.557862+00 f t ADELANTO 0.00 4 3429 \N +190317 2025-08-06 15:29:41.553731+00 2025-08-06 15:29:41.553743+00 f t SUBTOTAL 0.00 1 4980 \N +190318 2025-08-06 15:29:41.555831+00 2025-08-06 15:29:41.555846+00 f t DESCUENTO 0.00 2 4980 \N +123669 2025-07-08 22:22:57.33225+00 2025-07-08 22:22:57.33226+00 f t SUBTOTAL 50000.00 1 3270 \N +123670 2025-07-08 22:22:57.333819+00 2025-07-08 22:22:57.333826+00 f t DESCUENTO 0.00 2 3270 \N +123671 2025-07-08 22:22:57.334889+00 2025-07-08 22:22:57.334894+00 f t TOTAL 50000.00 3 3270 \N +123672 2025-07-08 22:22:57.335892+00 2025-07-08 22:22:57.335898+00 f t ADELANTO 10000.00 4 3270 \N +127449 2025-07-10 15:20:15.888526+00 2025-07-10 15:20:15.888538+00 f t SUBTOTAL 0.00 1 3364 \N +127450 2025-07-10 15:20:15.890163+00 2025-07-10 15:20:15.890172+00 f t DESCUENTO 0.00 2 3364 \N +127451 2025-07-10 15:20:15.891514+00 2025-07-10 15:20:15.891522+00 f t TOTAL 0.00 3 3364 \N +127452 2025-07-10 15:20:15.893016+00 2025-07-10 15:20:15.893024+00 f t ADELANTO 0.00 4 3364 \N +133717 2025-07-13 15:03:13.867295+00 2025-07-13 15:03:13.867307+00 f t SUBTOTAL 42000.00 1 3521 \N +133718 2025-07-13 15:03:13.869374+00 2025-07-13 15:03:13.869385+00 f t DESCUENTO 0.00 2 3521 \N +133719 2025-07-13 15:03:13.870909+00 2025-07-13 15:03:13.870919+00 f t TOTAL 42000.00 3 3521 \N +133720 2025-07-13 15:03:13.872293+00 2025-07-13 15:03:13.872302+00 f t ADELANTO 9500.00 4 3521 \N +127553 2025-07-10 17:03:05.322726+00 2025-07-10 17:03:05.32274+00 f t SUBTOTAL 0.00 1 3369 \N +127554 2025-07-10 17:03:05.325045+00 2025-07-10 17:03:05.325057+00 f t DESCUENTO 0.00 2 3369 \N +127555 2025-07-10 17:03:05.326557+00 2025-07-10 17:03:05.326567+00 f t TOTAL 0.00 3 3369 \N +127556 2025-07-10 17:03:05.328038+00 2025-07-10 17:03:05.328046+00 f t ADELANTO 0.00 4 3369 \N +123701 2025-07-08 22:25:08.546438+00 2025-07-08 22:25:08.546451+00 f t SUBTOTAL 62000.00 1 3271 \N +123702 2025-07-08 22:25:08.548491+00 2025-07-08 22:25:08.548502+00 f t DESCUENTO 0.00 2 3271 \N +123703 2025-07-08 22:25:08.550419+00 2025-07-08 22:25:08.550429+00 f t TOTAL 62000.00 3 3271 \N +123704 2025-07-08 22:25:08.552125+00 2025-07-08 22:25:08.552134+00 f t ADELANTO 12000.00 4 3271 \N +123709 2025-07-08 22:25:59.093577+00 2025-07-08 22:25:59.093587+00 f t SUBTOTAL 0.00 1 3272 \N +123710 2025-07-08 22:25:59.095014+00 2025-07-08 22:25:59.095022+00 f t DESCUENTO 0.00 2 3272 \N +123711 2025-07-08 22:25:59.096237+00 2025-07-08 22:25:59.096242+00 f t TOTAL 0.00 3 3272 \N +123712 2025-07-08 22:25:59.097446+00 2025-07-08 22:25:59.097454+00 f t ADELANTO 0.00 4 3272 \N +124853 2025-07-09 12:51:19.175029+00 2025-07-09 12:51:19.175037+00 f t SUBTOTAL 0.00 1 3295 \N +124854 2025-07-09 12:51:19.176291+00 2025-07-09 12:51:19.176297+00 f t DESCUENTO 0.00 2 3295 \N +124855 2025-07-09 12:51:19.177288+00 2025-07-09 12:51:19.177294+00 f t TOTAL 0.00 3 3295 \N +124856 2025-07-09 12:51:19.178157+00 2025-07-09 12:51:19.178162+00 f t ADELANTO 0.00 4 3295 \N +124905 2025-07-09 15:48:59.890692+00 2025-07-09 15:48:59.890701+00 f t SUBTOTAL 0.00 1 3299 \N +124906 2025-07-09 15:48:59.892164+00 2025-07-09 15:48:59.892175+00 f t DESCUENTO 0.00 2 3299 \N +124907 2025-07-09 15:48:59.893546+00 2025-07-09 15:48:59.893555+00 f t TOTAL 0.00 3 3299 \N +124908 2025-07-09 15:48:59.894697+00 2025-07-09 15:48:59.894703+00 f t ADELANTO 0.00 4 3299 \N +127737 2025-07-10 18:10:05.017458+00 2025-07-10 18:10:05.017473+00 f t SUBTOTAL 70000.00 1 3373 \N +127738 2025-07-10 18:10:05.030578+00 2025-07-10 18:10:05.030594+00 f t DESCUENTO 0.00 2 3373 \N +127739 2025-07-10 18:10:05.033115+00 2025-07-10 18:10:05.03313+00 f t TOTAL 70000.00 3 3373 \N +127740 2025-07-10 18:10:05.03541+00 2025-07-10 18:10:05.035425+00 f t ADELANTO 15000.00 4 3373 \N +123785 2025-07-08 22:28:45.326544+00 2025-07-08 22:28:45.326552+00 f t SUBTOTAL 0.00 1 3273 \N +123786 2025-07-08 22:28:45.328173+00 2025-07-08 22:28:45.32818+00 f t DESCUENTO 0.00 2 3273 \N +123787 2025-07-08 22:28:45.329276+00 2025-07-08 22:28:45.329281+00 f t TOTAL 0.00 3 3273 \N +123788 2025-07-08 22:28:45.330366+00 2025-07-08 22:28:45.330371+00 f t ADELANTO 0.00 4 3273 \N +128145 2025-07-10 21:23:42.430628+00 2025-07-10 21:23:42.430637+00 f t SUBTOTAL 0.00 1 3383 \N +128146 2025-07-10 21:23:42.432067+00 2025-07-10 21:23:42.432075+00 f t DESCUENTO 0.00 2 3383 \N +128147 2025-07-10 21:23:42.433271+00 2025-07-10 21:23:42.433277+00 f t TOTAL 0.00 3 3383 \N +128148 2025-07-10 21:23:42.434544+00 2025-07-10 21:23:42.43455+00 f t ADELANTO 0.00 4 3383 \N +123821 2025-07-08 22:29:47.562992+00 2025-07-08 22:29:47.563002+00 f t SUBTOTAL 62000.00 1 3275 \N +123822 2025-07-08 22:29:47.56458+00 2025-07-08 22:29:47.564589+00 f t DESCUENTO 0.00 2 3275 \N +123823 2025-07-08 22:29:47.56579+00 2025-07-08 22:29:47.565798+00 f t TOTAL 62000.00 3 3275 \N +123824 2025-07-08 22:29:47.567073+00 2025-07-08 22:29:47.567081+00 f t ADELANTO 12000.00 4 3275 \N +125829 2025-07-09 21:52:43.185698+00 2025-07-09 21:52:43.185705+00 f t SUBTOTAL 62000.00 1 3316 \N +125830 2025-07-09 21:52:43.187288+00 2025-07-09 21:52:43.187297+00 f t DESCUENTO 0.00 2 3316 \N +125831 2025-07-09 21:52:43.188518+00 2025-07-09 21:52:43.188523+00 f t TOTAL 62000.00 3 3316 \N +125832 2025-07-09 21:52:43.189514+00 2025-07-09 21:52:43.18952+00 f t ADELANTO 12000.00 4 3316 \N +125945 2025-07-09 22:16:58.84717+00 2025-07-09 22:16:58.847179+00 f t SUBTOTAL 50000.00 1 3317 \N +125946 2025-07-09 22:16:58.848977+00 2025-07-09 22:16:58.848987+00 f t DESCUENTO 0.00 2 3317 \N +125947 2025-07-09 22:16:58.850264+00 2025-07-09 22:16:58.85027+00 f t TOTAL 50000.00 3 3317 \N +125948 2025-07-09 22:16:58.851343+00 2025-07-09 22:16:58.851352+00 f t ADELANTO 10000.00 4 3317 \N +128689 2025-07-11 01:32:59.648873+00 2025-07-11 01:32:59.648882+00 f t SUBTOTAL 113700.00 1 3392 \N +128690 2025-07-11 01:32:59.650488+00 2025-07-11 01:32:59.650494+00 f t DESCUENTO 0.00 2 3392 \N +128691 2025-07-11 01:32:59.651655+00 2025-07-11 01:32:59.651661+00 f t TOTAL 113700.00 3 3392 \N +128692 2025-07-11 01:32:59.652703+00 2025-07-11 01:32:59.652709+00 f t ADELANTO 75700.00 4 3392 \N +126229 2025-07-09 23:46:09.118897+00 2025-07-09 23:46:09.118909+00 f t SUBTOTAL 50000.00 1 3324 \N +126230 2025-07-09 23:46:09.122634+00 2025-07-09 23:46:09.122642+00 f t DESCUENTO 0.00 2 3324 \N +126231 2025-07-09 23:46:09.124336+00 2025-07-09 23:46:09.124345+00 f t TOTAL 50000.00 3 3324 \N +126232 2025-07-09 23:46:09.125821+00 2025-07-09 23:46:09.125827+00 f t ADELANTO 10000.00 4 3324 \N +126249 2025-07-10 01:11:54.268969+00 2025-07-10 01:11:54.268978+00 f t SUBTOTAL 0.00 1 3326 \N +126250 2025-07-10 01:11:54.270948+00 2025-07-10 01:11:54.270959+00 f t DESCUENTO 0.00 2 3326 \N +126251 2025-07-10 01:11:54.272554+00 2025-07-10 01:11:54.272561+00 f t TOTAL 0.00 3 3326 \N +126252 2025-07-10 01:11:54.273499+00 2025-07-10 01:11:54.273505+00 f t ADELANTO 0.00 4 3326 \N +126265 2025-07-10 01:52:34.130887+00 2025-07-10 01:52:34.130895+00 f t SUBTOTAL 0.00 1 3328 \N +126266 2025-07-10 01:52:34.132491+00 2025-07-10 01:52:34.132498+00 f t DESCUENTO 0.00 2 3328 \N +126267 2025-07-10 01:52:34.133938+00 2025-07-10 01:52:34.133944+00 f t TOTAL 0.00 3 3328 \N +126268 2025-07-10 01:52:34.135204+00 2025-07-10 01:52:34.135212+00 f t ADELANTO 0.00 4 3328 \N +128809 2025-07-11 02:11:04.582263+00 2025-07-11 02:11:04.582275+00 f t SUBTOTAL 42000.00 1 3394 \N +128810 2025-07-11 02:11:04.584331+00 2025-07-11 02:11:04.584339+00 f t DESCUENTO 0.00 2 3394 \N +128811 2025-07-11 02:11:04.585756+00 2025-07-11 02:11:04.585764+00 f t TOTAL 42000.00 3 3394 \N +190319 2025-08-06 15:29:41.557988+00 2025-08-06 15:29:41.558+00 f t TOTAL 0.00 3 4980 \N +190320 2025-08-06 15:29:41.560395+00 2025-08-06 15:29:41.560407+00 f t ADELANTO 0.00 4 4980 \N +136504 2025-07-14 17:54:04.239109+00 2025-07-14 17:54:04.239119+00 f t ADELANTO 23700.00 4 3591 \N +130093 2025-07-11 19:55:30.816316+00 2025-07-11 19:55:30.816328+00 f t SUBTOTAL 0.00 1 3430 \N +130094 2025-07-11 19:55:30.818277+00 2025-07-11 19:55:30.818287+00 f t DESCUENTO 0.00 2 3430 \N +130095 2025-07-11 19:55:30.820056+00 2025-07-11 19:55:30.820065+00 f t TOTAL 0.00 3 3430 \N +130096 2025-07-11 19:55:30.821481+00 2025-07-11 19:55:30.82149+00 f t ADELANTO 0.00 4 3430 \N +133353 2025-07-13 13:03:06.734884+00 2025-07-13 13:03:06.734896+00 f t SUBTOTAL 130000.00 1 3513 \N +133354 2025-07-13 13:03:06.737549+00 2025-07-13 13:03:06.737562+00 f t DESCUENTO 0.00 2 3513 \N +133355 2025-07-13 13:03:06.739316+00 2025-07-13 13:03:06.739328+00 f t TOTAL 130000.00 3 3513 \N +133356 2025-07-13 13:03:06.741018+00 2025-07-13 13:03:06.741028+00 f t ADELANTO 15000.00 4 3513 \N +133401 2025-07-13 13:28:18.492517+00 2025-07-13 13:28:18.492529+00 f t SUBTOTAL 50000.00 1 3514 \N +133402 2025-07-13 13:28:18.494261+00 2025-07-13 13:28:18.494268+00 f t DESCUENTO 0.00 2 3514 \N +133403 2025-07-13 13:28:18.495455+00 2025-07-13 13:28:18.495461+00 f t TOTAL 50000.00 3 3514 \N +133404 2025-07-13 13:28:18.496536+00 2025-07-13 13:28:18.496543+00 f t ADELANTO 10000.00 4 3514 \N +127281 2025-07-10 13:31:03.690567+00 2025-07-10 13:31:03.69058+00 f t SUBTOTAL 42000.00 1 3353 \N +127282 2025-07-10 13:31:03.692748+00 2025-07-10 13:31:03.692759+00 f t DESCUENTO 0.00 2 3353 \N +127283 2025-07-10 13:31:03.694464+00 2025-07-10 13:31:03.694474+00 f t TOTAL 42000.00 3 3353 \N +127284 2025-07-10 13:31:03.696144+00 2025-07-10 13:31:03.696153+00 f t ADELANTO 9500.00 4 3353 \N +130449 2025-07-11 22:51:02.465473+00 2025-07-11 22:51:02.465484+00 f t SUBTOTAL 62000.00 1 3437 \N +130450 2025-07-11 22:51:02.467668+00 2025-07-11 22:51:02.467686+00 f t DESCUENTO 0.00 2 3437 \N +127517 2025-07-10 16:14:41.710535+00 2025-07-10 16:14:41.710544+00 f t SUBTOTAL 111000.00 1 3366 \N +127518 2025-07-10 16:14:41.712232+00 2025-07-10 16:14:41.712239+00 f t DESCUENTO 0.00 2 3366 \N +127519 2025-07-10 16:14:41.71352+00 2025-07-10 16:14:41.713526+00 f t TOTAL 111000.00 3 3366 \N +127520 2025-07-10 16:14:41.714773+00 2025-07-10 16:14:41.714779+00 f t ADELANTO 23500.00 4 3366 \N +130451 2025-07-11 22:51:02.46963+00 2025-07-11 22:51:02.469638+00 f t TOTAL 62000.00 3 3437 \N +130452 2025-07-11 22:51:02.471631+00 2025-07-11 22:51:02.47164+00 f t ADELANTO 12000.00 4 3437 \N +124861 2025-07-09 12:52:24.122601+00 2025-07-09 12:52:24.122609+00 f t SUBTOTAL 0.00 1 3296 \N +124862 2025-07-09 12:52:24.12397+00 2025-07-09 12:52:24.123979+00 f t DESCUENTO 0.00 2 3296 \N +124863 2025-07-09 12:52:24.125359+00 2025-07-09 12:52:24.125367+00 f t TOTAL 0.00 3 3296 \N +124864 2025-07-09 12:52:24.126424+00 2025-07-09 12:52:24.126429+00 f t ADELANTO 0.00 4 3296 \N +124005 2025-07-08 22:36:15.517829+00 2025-07-08 22:36:15.51784+00 f t SUBTOTAL 0.00 1 3274 \N +124006 2025-07-08 22:36:15.519758+00 2025-07-08 22:36:15.519769+00 f t DESCUENTO 0.00 2 3274 \N +124007 2025-07-08 22:36:15.521003+00 2025-07-08 22:36:15.52101+00 f t TOTAL 0.00 3 3274 \N +124008 2025-07-08 22:36:15.523835+00 2025-07-08 22:36:15.523842+00 f t ADELANTO 0.00 4 3274 \N +130977 2025-07-12 07:31:57.827724+00 2025-07-12 07:31:57.827733+00 f t SUBTOTAL 0.00 1 3452 \N +130978 2025-07-12 07:31:57.829177+00 2025-07-12 07:31:57.829184+00 f t DESCUENTO 0.00 2 3452 \N +130979 2025-07-12 07:31:57.830526+00 2025-07-12 07:31:57.830533+00 f t TOTAL 0.00 3 3452 \N +130980 2025-07-12 07:31:57.831905+00 2025-07-12 07:31:57.831912+00 f t ADELANTO 0.00 4 3452 \N +127989 2025-07-10 20:18:42.986267+00 2025-07-10 20:18:42.986279+00 f t SUBTOTAL 50000.00 1 3379 \N +127990 2025-07-10 20:18:42.991916+00 2025-07-10 20:18:42.991925+00 f t DESCUENTO 0.00 2 3379 \N +127991 2025-07-10 20:18:42.993524+00 2025-07-10 20:18:42.993532+00 f t TOTAL 50000.00 3 3379 \N +127992 2025-07-10 20:18:42.995198+00 2025-07-10 20:18:42.995205+00 f t ADELANTO 10000.00 4 3379 \N +125449 2025-07-09 19:04:55.047819+00 2025-07-09 19:04:55.04783+00 f t SUBTOTAL 70000.00 1 3308 \N +125450 2025-07-09 19:04:55.04969+00 2025-07-09 19:04:55.049699+00 f t DESCUENTO 0.00 2 3308 \N +125451 2025-07-09 19:04:55.050967+00 2025-07-09 19:04:55.050975+00 f t TOTAL 70000.00 3 3308 \N +125452 2025-07-09 19:04:55.052167+00 2025-07-09 19:04:55.052175+00 f t ADELANTO 15000.00 4 3308 \N +131145 2025-07-12 11:20:18.26719+00 2025-07-12 11:20:18.267199+00 f t SUBTOTAL 0.00 1 3458 \N +131146 2025-07-12 11:20:18.268616+00 2025-07-12 11:20:18.268622+00 f t DESCUENTO 0.00 2 3458 \N +131147 2025-07-12 11:20:18.269536+00 2025-07-12 11:20:18.269541+00 f t TOTAL 0.00 3 3458 \N +131148 2025-07-12 11:20:18.270473+00 2025-07-12 11:20:18.270478+00 f t ADELANTO 0.00 4 3458 \N +128181 2025-07-10 21:36:24.588863+00 2025-07-10 21:36:24.588873+00 f t SUBTOTAL 42000.00 1 3384 \N +128182 2025-07-10 21:36:24.590471+00 2025-07-10 21:36:24.590479+00 f t DESCUENTO 0.00 2 3384 \N +128183 2025-07-10 21:36:24.591933+00 2025-07-10 21:36:24.591939+00 f t TOTAL 42000.00 3 3384 \N +128184 2025-07-10 21:36:24.592924+00 2025-07-10 21:36:24.592929+00 f t ADELANTO 9500.00 4 3384 \N +128489 2025-07-11 01:09:08.799046+00 2025-07-11 01:09:08.799055+00 f t SUBTOTAL 70000.00 1 3390 \N +128490 2025-07-11 01:09:08.801073+00 2025-07-11 01:09:08.801081+00 f t DESCUENTO 0.00 2 3390 \N +128491 2025-07-11 01:09:08.802737+00 2025-07-11 01:09:08.802753+00 f t TOTAL 70000.00 3 3390 \N +128492 2025-07-11 01:09:08.804453+00 2025-07-11 01:09:08.804461+00 f t ADELANTO 15000.00 4 3390 \N +128812 2025-07-11 02:11:04.587091+00 2025-07-11 02:11:04.587097+00 f t ADELANTO 9500.00 4 3394 \N +126237 2025-07-10 00:00:16.070653+00 2025-07-10 00:00:16.070669+00 f t SUBTOTAL 0.00 1 3325 \N +126238 2025-07-10 00:00:16.081013+00 2025-07-10 00:00:16.081029+00 f t DESCUENTO 0.00 2 3325 \N +126239 2025-07-10 00:00:16.095887+00 2025-07-10 00:00:16.095901+00 f t TOTAL 0.00 3 3325 \N +126240 2025-07-10 00:00:16.10052+00 2025-07-10 00:00:16.100533+00 f t ADELANTO 0.00 4 3325 \N +131893 2025-07-12 18:01:11.87503+00 2025-07-12 18:01:11.875039+00 f t SUBTOTAL 0.00 1 3475 \N +126257 2025-07-10 01:17:06.436136+00 2025-07-10 01:17:06.436151+00 f t SUBTOTAL 0.00 1 3327 \N +126258 2025-07-10 01:17:06.438323+00 2025-07-10 01:17:06.438331+00 f t DESCUENTO 0.00 2 3327 \N +126259 2025-07-10 01:17:06.439984+00 2025-07-10 01:17:06.439997+00 f t TOTAL 0.00 3 3327 \N +126260 2025-07-10 01:17:06.442146+00 2025-07-10 01:17:06.442153+00 f t ADELANTO 0.00 4 3327 \N +131894 2025-07-12 18:01:11.876661+00 2025-07-12 18:01:11.87667+00 f t DESCUENTO 0.00 2 3475 \N +131895 2025-07-12 18:01:11.878113+00 2025-07-12 18:01:11.878121+00 f t TOTAL 0.00 3 3475 \N +131896 2025-07-12 18:01:11.879468+00 2025-07-12 18:01:11.879477+00 f t ADELANTO 0.00 4 3475 \N +131917 2025-07-12 18:48:49.223336+00 2025-07-12 18:48:49.223346+00 f t SUBTOTAL 0.00 1 3476 \N +131918 2025-07-12 18:48:49.225263+00 2025-07-12 18:48:49.22527+00 f t DESCUENTO 0.00 2 3476 \N +131919 2025-07-12 18:48:49.226374+00 2025-07-12 18:48:49.22638+00 f t TOTAL 0.00 3 3476 \N +131920 2025-07-12 18:48:49.227472+00 2025-07-12 18:48:49.227477+00 f t ADELANTO 0.00 4 3476 \N +126297 2025-07-10 01:53:27.069153+00 2025-07-10 01:53:27.069164+00 f t SUBTOTAL 70000.00 1 3329 \N +126298 2025-07-10 01:53:27.07096+00 2025-07-10 01:53:27.070969+00 f t DESCUENTO 0.00 2 3329 \N +126299 2025-07-10 01:53:27.072448+00 2025-07-10 01:53:27.072456+00 f t TOTAL 70000.00 3 3329 \N +126300 2025-07-10 01:53:27.07381+00 2025-07-10 01:53:27.073817+00 f t ADELANTO 15000.00 4 3329 \N +153645 2025-07-21 14:21:49.680961+00 2025-07-21 14:21:49.680972+00 f t SUBTOTAL 0.00 1 4023 \N +127329 2025-07-10 14:16:04.447691+00 2025-07-10 14:16:04.447703+00 f t SUBTOTAL 42000.00 1 3355 \N +127330 2025-07-10 14:16:04.450153+00 2025-07-10 14:16:04.450162+00 f t DESCUENTO 0.00 2 3355 \N +127331 2025-07-10 14:16:04.452171+00 2025-07-10 14:16:04.452185+00 f t TOTAL 42000.00 3 3355 \N +127332 2025-07-10 14:16:04.453796+00 2025-07-10 14:16:04.453802+00 f t ADELANTO 9500.00 4 3355 \N +127381 2025-07-10 15:13:36.031355+00 2025-07-10 15:13:36.031364+00 f t SUBTOTAL 0.00 1 3360 \N +127382 2025-07-10 15:13:36.041295+00 2025-07-10 15:13:36.041308+00 f t DESCUENTO 0.00 2 3360 \N +127383 2025-07-10 15:13:36.045212+00 2025-07-10 15:13:36.045225+00 f t TOTAL 0.00 3 3360 \N +127384 2025-07-10 15:13:36.047442+00 2025-07-10 15:13:36.04745+00 f t ADELANTO 0.00 4 3360 \N +126345 2025-07-10 02:00:58.110077+00 2025-07-10 02:00:58.110086+00 f t SUBTOTAL 42000.00 1 3330 \N +126346 2025-07-10 02:00:58.111652+00 2025-07-10 02:00:58.11166+00 f t DESCUENTO 0.00 2 3330 \N +126347 2025-07-10 02:00:58.112922+00 2025-07-10 02:00:58.112928+00 f t TOTAL 42000.00 3 3330 \N +126348 2025-07-10 02:00:58.114074+00 2025-07-10 02:00:58.114079+00 f t ADELANTO 9500.00 4 3330 \N +127489 2025-07-10 15:39:20.029186+00 2025-07-10 15:39:20.029198+00 f t SUBTOTAL 0.00 1 3365 \N +127490 2025-07-10 15:39:20.032174+00 2025-07-10 15:39:20.032186+00 f t DESCUENTO 0.00 2 3365 \N +127491 2025-07-10 15:39:20.03401+00 2025-07-10 15:39:20.034022+00 f t TOTAL 0.00 3 3365 \N +127492 2025-07-10 15:39:20.035848+00 2025-07-10 15:39:20.035859+00 f t ADELANTO 0.00 4 3365 \N +130453 2025-07-11 22:51:15.570913+00 2025-07-11 22:51:15.570922+00 f t SUBTOTAL 42000.00 1 3436 \N +130454 2025-07-11 22:51:15.572494+00 2025-07-11 22:51:15.572503+00 f t DESCUENTO 0.00 2 3436 \N +130455 2025-07-11 22:51:15.573728+00 2025-07-11 22:51:15.573733+00 f t TOTAL 42000.00 3 3436 \N +130456 2025-07-11 22:51:15.575011+00 2025-07-11 22:51:15.575018+00 f t ADELANTO 9500.00 4 3436 \N +127525 2025-07-10 16:28:54.59662+00 2025-07-10 16:28:54.596631+00 f t SUBTOTAL 0.00 1 3367 \N +127526 2025-07-10 16:28:54.597866+00 2025-07-10 16:28:54.597872+00 f t DESCUENTO 0.00 2 3367 \N +127527 2025-07-10 16:28:54.59897+00 2025-07-10 16:28:54.598976+00 f t TOTAL 0.00 3 3367 \N +127528 2025-07-10 16:28:54.600074+00 2025-07-10 16:28:54.60008+00 f t ADELANTO 0.00 4 3367 \N +130725 2025-07-12 00:56:12.577507+00 2025-07-12 00:56:12.577516+00 f t SUBTOTAL 50000.00 1 3442 \N +130726 2025-07-12 00:56:12.579178+00 2025-07-12 00:56:12.579185+00 f t DESCUENTO 0.00 2 3442 \N +130727 2025-07-12 00:56:12.580412+00 2025-07-12 00:56:12.580418+00 f t TOTAL 50000.00 3 3442 \N +130728 2025-07-12 00:56:12.581535+00 2025-07-12 00:56:12.581541+00 f t ADELANTO 10000.00 4 3442 \N +127997 2025-07-10 20:51:53.806316+00 2025-07-10 20:51:53.806326+00 f t SUBTOTAL 0.00 1 3380 \N +127998 2025-07-10 20:51:53.807605+00 2025-07-10 20:51:53.807612+00 f t DESCUENTO 0.00 2 3380 \N +127999 2025-07-10 20:51:53.810053+00 2025-07-10 20:51:53.810059+00 f t TOTAL 0.00 3 3380 \N +128000 2025-07-10 20:51:53.810917+00 2025-07-10 20:51:53.810922+00 f t ADELANTO 0.00 4 3380 \N +131065 2025-07-12 10:29:59.026715+00 2025-07-12 10:29:59.026725+00 f t SUBTOTAL 0.00 1 3455 \N +131066 2025-07-12 10:29:59.02885+00 2025-07-12 10:29:59.028859+00 f t DESCUENTO 0.00 2 3455 \N +131067 2025-07-12 10:29:59.030323+00 2025-07-12 10:29:59.030331+00 f t TOTAL 0.00 3 3455 \N +131068 2025-07-12 10:29:59.031675+00 2025-07-12 10:29:59.031682+00 f t ADELANTO 0.00 4 3455 \N +126449 2025-07-10 02:11:35.058985+00 2025-07-10 02:11:35.058995+00 f t SUBTOTAL 70000.00 1 3331 \N +126450 2025-07-10 02:11:35.060777+00 2025-07-10 02:11:35.060785+00 f t DESCUENTO 0.00 2 3331 \N +126451 2025-07-10 02:11:35.062191+00 2025-07-10 02:11:35.062197+00 f t TOTAL 70000.00 3 3331 \N +126452 2025-07-10 02:11:35.06338+00 2025-07-10 02:11:35.063387+00 f t ADELANTO 15000.00 4 3331 \N +131269 2025-07-12 12:07:39.566595+00 2025-07-12 12:07:39.566604+00 f t SUBTOTAL 0.00 1 3460 \N +131270 2025-07-12 12:07:39.568723+00 2025-07-12 12:07:39.56873+00 f t DESCUENTO 0.00 2 3460 \N +131271 2025-07-12 12:07:39.569992+00 2025-07-12 12:07:39.569998+00 f t TOTAL 0.00 3 3460 \N +131272 2025-07-12 12:07:39.571725+00 2025-07-12 12:07:39.571731+00 f t ADELANTO 0.00 4 3460 \N +131305 2025-07-12 12:08:26.458684+00 2025-07-12 12:08:26.458693+00 f t SUBTOTAL 0.00 1 3461 \N +131306 2025-07-12 12:08:26.46074+00 2025-07-12 12:08:26.460751+00 f t DESCUENTO 0.00 2 3461 \N +131307 2025-07-12 12:08:26.462156+00 2025-07-12 12:08:26.462163+00 f t TOTAL 0.00 3 3461 \N +131308 2025-07-12 12:08:26.463493+00 2025-07-12 12:08:26.463503+00 f t ADELANTO 0.00 4 3461 \N +131417 2025-07-12 12:39:56.022332+00 2025-07-12 12:39:56.022345+00 f t SUBTOTAL 0.00 1 3462 \N +131418 2025-07-12 12:39:56.024856+00 2025-07-12 12:39:56.024866+00 f t DESCUENTO 0.00 2 3462 \N +131419 2025-07-12 12:39:56.026503+00 2025-07-12 12:39:56.026511+00 f t TOTAL 0.00 3 3462 \N +131420 2025-07-12 12:39:56.028369+00 2025-07-12 12:39:56.028377+00 f t ADELANTO 0.00 4 3462 \N +126481 2025-07-10 02:14:37.034588+00 2025-07-10 02:14:37.0346+00 f t SUBTOTAL 56000.00 1 3332 \N +126482 2025-07-10 02:14:37.036346+00 2025-07-10 02:14:37.036355+00 f t DESCUENTO 0.00 2 3332 \N +126483 2025-07-10 02:14:37.037694+00 2025-07-10 02:14:37.037702+00 f t TOTAL 56000.00 3 3332 \N +126484 2025-07-10 02:14:37.039045+00 2025-07-10 02:14:37.039052+00 f t ADELANTO 48000.00 4 3332 \N +128497 2025-07-11 01:20:27.534111+00 2025-07-11 01:20:27.534121+00 f t SUBTOTAL 0.00 1 3391 \N +128498 2025-07-11 01:20:27.535621+00 2025-07-11 01:20:27.53563+00 f t DESCUENTO 0.00 2 3391 \N +128499 2025-07-11 01:20:27.536799+00 2025-07-11 01:20:27.536806+00 f t TOTAL 0.00 3 3391 \N +128500 2025-07-11 01:20:27.538134+00 2025-07-11 01:20:27.53814+00 f t ADELANTO 0.00 4 3391 \N +126525 2025-07-10 02:16:46.59353+00 2025-07-10 02:16:46.593539+00 f t SUBTOTAL 49500.00 1 3333 \N +126526 2025-07-10 02:16:46.595324+00 2025-07-10 02:16:46.595329+00 f t DESCUENTO 0.00 2 3333 \N +126527 2025-07-10 02:16:46.596466+00 2025-07-10 02:16:46.596471+00 f t TOTAL 49500.00 3 3333 \N +126528 2025-07-10 02:16:46.59741+00 2025-07-10 02:16:46.597415+00 f t ADELANTO 11500.00 4 3333 \N +126533 2025-07-10 03:08:04.134527+00 2025-07-10 03:08:04.13454+00 f t SUBTOTAL 0.00 1 3334 \N +126534 2025-07-10 03:08:04.136471+00 2025-07-10 03:08:04.136481+00 f t DESCUENTO 0.00 2 3334 \N +126535 2025-07-10 03:08:04.138108+00 2025-07-10 03:08:04.138117+00 f t TOTAL 0.00 3 3334 \N +126536 2025-07-10 03:08:04.139602+00 2025-07-10 03:08:04.139611+00 f t ADELANTO 0.00 4 3334 \N +126553 2025-07-10 03:17:58.439589+00 2025-07-10 03:17:58.439598+00 f t SUBTOTAL 0.00 1 3335 \N +126554 2025-07-10 03:17:58.441547+00 2025-07-10 03:17:58.441554+00 f t DESCUENTO 0.00 2 3335 \N +126555 2025-07-10 03:17:58.442694+00 2025-07-10 03:17:58.4427+00 f t TOTAL 0.00 3 3335 \N +126556 2025-07-10 03:17:58.443899+00 2025-07-10 03:17:58.443904+00 f t ADELANTO 0.00 4 3335 \N +128889 2025-07-11 03:09:01.031264+00 2025-07-11 03:09:01.031277+00 f t SUBTOTAL 107200.00 1 3396 \N +128890 2025-07-11 03:09:01.033132+00 2025-07-11 03:09:01.033142+00 f t DESCUENTO 0.00 2 3396 \N +128891 2025-07-11 03:09:01.034504+00 2025-07-11 03:09:01.034517+00 f t TOTAL 107200.00 3 3396 \N +128892 2025-07-11 03:09:01.036115+00 2025-07-11 03:09:01.036124+00 f t ADELANTO 69200.00 4 3396 \N +126589 2025-07-10 04:25:47.408476+00 2025-07-10 04:25:47.408483+00 f t SUBTOTAL 64500.00 1 3336 \N +126590 2025-07-10 04:25:47.410075+00 2025-07-10 04:25:47.410081+00 f t DESCUENTO 0.00 2 3336 \N +126591 2025-07-10 04:25:47.411329+00 2025-07-10 04:25:47.411336+00 f t TOTAL 64500.00 3 3336 \N +126592 2025-07-10 04:25:47.412529+00 2025-07-10 04:25:47.412535+00 f t ADELANTO 17000.00 4 3336 \N +133301 2025-07-13 12:49:29.100238+00 2025-07-13 12:49:29.100249+00 f t SUBTOTAL 0.00 1 3512 \N +133302 2025-07-13 12:49:29.102253+00 2025-07-13 12:49:29.10226+00 f t DESCUENTO 0.00 2 3512 \N +133303 2025-07-13 12:49:29.103395+00 2025-07-13 12:49:29.1034+00 f t TOTAL 0.00 3 3512 \N +133304 2025-07-13 12:49:29.1045+00 2025-07-13 12:49:29.104507+00 f t ADELANTO 0.00 4 3512 \N +127197 2025-07-10 13:22:43.062802+00 2025-07-10 13:22:43.062811+00 f t SUBTOTAL 50000.00 1 3351 \N +127198 2025-07-10 13:22:43.064638+00 2025-07-10 13:22:43.064645+00 f t DESCUENTO 0.00 2 3351 \N +127199 2025-07-10 13:22:43.065705+00 2025-07-10 13:22:43.06571+00 f t TOTAL 50000.00 3 3351 \N +127200 2025-07-10 13:22:43.066655+00 2025-07-10 13:22:43.06666+00 f t ADELANTO 10000.00 4 3351 \N +127337 2025-07-10 14:21:54.986473+00 2025-07-10 14:21:54.986481+00 f t SUBTOTAL 0.00 1 3356 \N +127338 2025-07-10 14:21:54.987637+00 2025-07-10 14:21:54.987642+00 f t DESCUENTO 0.00 2 3356 \N +127339 2025-07-10 14:21:54.988614+00 2025-07-10 14:21:54.98862+00 f t TOTAL 0.00 3 3356 \N +127340 2025-07-10 14:21:54.989546+00 2025-07-10 14:21:54.989551+00 f t ADELANTO 0.00 4 3356 \N +126625 2025-07-10 09:06:09.204943+00 2025-07-10 09:06:09.204956+00 f t SUBTOTAL 0.00 1 3337 \N +126626 2025-07-10 09:06:09.20743+00 2025-07-10 09:06:09.207441+00 f t DESCUENTO 0.00 2 3337 \N +126627 2025-07-10 09:06:09.209307+00 2025-07-10 09:06:09.209318+00 f t TOTAL 0.00 3 3337 \N +126628 2025-07-10 09:06:09.210875+00 2025-07-10 09:06:09.210883+00 f t ADELANTO 0.00 4 3337 \N +140261 2025-07-16 00:21:58.489588+00 2025-07-16 00:21:58.489598+00 f t SUBTOTAL 50000.00 1 3684 \N +140262 2025-07-16 00:21:58.491181+00 2025-07-16 00:21:58.491196+00 f t DESCUENTO 0.00 2 3684 \N +140263 2025-07-16 00:21:58.492472+00 2025-07-16 00:21:58.492479+00 f t TOTAL 50000.00 3 3684 \N +140264 2025-07-16 00:21:58.493655+00 2025-07-16 00:21:58.493661+00 f t ADELANTO 10000.00 4 3684 \N +127533 2025-07-10 16:49:49.940947+00 2025-07-10 16:49:49.94096+00 f t SUBTOTAL 0.00 1 3368 \N +127534 2025-07-10 16:49:49.94263+00 2025-07-10 16:49:49.942641+00 f t DESCUENTO 0.00 2 3368 \N +127535 2025-07-10 16:49:49.944196+00 2025-07-10 16:49:49.944205+00 f t TOTAL 0.00 3 3368 \N +127536 2025-07-10 16:49:49.945569+00 2025-07-10 16:49:49.945578+00 f t ADELANTO 0.00 4 3368 \N +127597 2025-07-10 17:12:46.771035+00 2025-07-10 17:12:46.771048+00 f t SUBTOTAL 72000.00 1 3370 \N +127598 2025-07-10 17:12:46.77319+00 2025-07-10 17:12:46.7732+00 f t DESCUENTO 0.00 2 3370 \N +127599 2025-07-10 17:12:46.774674+00 2025-07-10 17:12:46.774683+00 f t TOTAL 72000.00 3 3370 \N +127600 2025-07-10 17:12:46.775896+00 2025-07-10 17:12:46.775903+00 f t ADELANTO 19000.00 4 3370 \N +126669 2025-07-10 10:15:22.095122+00 2025-07-10 10:15:22.095161+00 f t SUBTOTAL 129500.00 1 3338 \N +126670 2025-07-10 10:15:22.096911+00 2025-07-10 10:15:22.096919+00 f t DESCUENTO 0.00 2 3338 \N +126671 2025-07-10 10:15:22.098366+00 2025-07-10 10:15:22.098372+00 f t TOTAL 129500.00 3 3338 \N +126672 2025-07-10 10:15:22.099592+00 2025-07-10 10:15:22.099597+00 f t ADELANTO 27000.00 4 3338 \N +127661 2025-07-10 18:06:23.175934+00 2025-07-10 18:06:23.175946+00 f t SUBTOTAL 111000.00 1 3372 \N +127662 2025-07-10 18:06:23.177705+00 2025-07-10 18:06:23.177714+00 f t DESCUENTO 0.00 2 3372 \N +127663 2025-07-10 18:06:23.178924+00 2025-07-10 18:06:23.178931+00 f t TOTAL 111000.00 3 3372 \N +127664 2025-07-10 18:06:23.180037+00 2025-07-10 18:06:23.180043+00 f t ADELANTO 23500.00 4 3372 \N +126677 2025-07-10 10:19:25.547827+00 2025-07-10 10:19:25.547836+00 f t SUBTOTAL 0.00 1 3339 \N +126678 2025-07-10 10:19:25.54939+00 2025-07-10 10:19:25.549397+00 f t DESCUENTO 0.00 2 3339 \N +126679 2025-07-10 10:19:25.550605+00 2025-07-10 10:19:25.550611+00 f t TOTAL 0.00 3 3339 \N +126680 2025-07-10 10:19:25.551644+00 2025-07-10 10:19:25.551649+00 f t ADELANTO 0.00 4 3339 \N +127813 2025-07-10 19:00:25.466937+00 2025-07-10 19:00:25.466949+00 f t SUBTOTAL 0.00 1 3375 \N +127814 2025-07-10 19:00:25.469365+00 2025-07-10 19:00:25.469379+00 f t DESCUENTO 0.00 2 3375 \N +127815 2025-07-10 19:00:25.471055+00 2025-07-10 19:00:25.471064+00 f t TOTAL 0.00 3 3375 \N +127816 2025-07-10 19:00:25.472644+00 2025-07-10 19:00:25.472652+00 f t ADELANTO 0.00 4 3375 \N +128005 2025-07-10 21:15:28.781626+00 2025-07-10 21:15:28.781635+00 f t SUBTOTAL 0.00 1 3381 \N +128006 2025-07-10 21:15:28.782974+00 2025-07-10 21:15:28.782981+00 f t DESCUENTO 0.00 2 3381 \N +128007 2025-07-10 21:15:28.784086+00 2025-07-10 21:15:28.784092+00 f t TOTAL 0.00 3 3381 \N +128008 2025-07-10 21:15:28.785207+00 2025-07-10 21:15:28.785212+00 f t ADELANTO 0.00 4 3381 \N +131025 2025-07-12 09:09:57.79497+00 2025-07-12 09:09:57.794984+00 f t SUBTOTAL 0.00 1 3453 \N +131026 2025-07-12 09:09:57.797286+00 2025-07-12 09:09:57.797294+00 f t DESCUENTO 0.00 2 3453 \N +131027 2025-07-12 09:09:57.798794+00 2025-07-12 09:09:57.798803+00 f t TOTAL 0.00 3 3453 \N +131028 2025-07-12 09:09:57.800131+00 2025-07-12 09:09:57.800137+00 f t ADELANTO 0.00 4 3453 \N +128125 2025-07-10 21:17:36.146907+00 2025-07-10 21:17:36.146916+00 f t SUBTOTAL 129000.00 1 3377 \N +128126 2025-07-10 21:17:36.148598+00 2025-07-10 21:17:36.148606+00 f t DESCUENTO 0.00 2 3377 \N +128127 2025-07-10 21:17:36.149764+00 2025-07-10 21:17:36.149773+00 f t TOTAL 129000.00 3 3377 \N +128128 2025-07-10 21:17:36.150955+00 2025-07-10 21:17:36.150965+00 f t ADELANTO 34000.00 4 3377 \N +126757 2025-07-10 10:22:51.355507+00 2025-07-10 10:22:51.355518+00 f t SUBTOTAL 50000.00 1 3340 \N +126758 2025-07-10 10:22:51.357183+00 2025-07-10 10:22:51.357193+00 f t DESCUENTO 0.00 2 3340 \N +126759 2025-07-10 10:22:51.358402+00 2025-07-10 10:22:51.358409+00 f t TOTAL 50000.00 3 3340 \N +126760 2025-07-10 10:22:51.359459+00 2025-07-10 10:22:51.359467+00 f t ADELANTO 10000.00 4 3340 \N +126765 2025-07-10 10:40:25.954167+00 2025-07-10 10:40:25.95418+00 f t SUBTOTAL 0.00 1 3341 \N +126766 2025-07-10 10:40:25.956023+00 2025-07-10 10:40:25.956033+00 f t DESCUENTO 0.00 2 3341 \N +126767 2025-07-10 10:40:25.957779+00 2025-07-10 10:40:25.957789+00 f t TOTAL 0.00 3 3341 \N +126768 2025-07-10 10:40:25.959327+00 2025-07-10 10:40:25.959336+00 f t ADELANTO 0.00 4 3341 \N +126773 2025-07-10 10:54:04.098483+00 2025-07-10 10:54:04.098496+00 f t SUBTOTAL 0.00 1 3342 \N +126774 2025-07-10 10:54:04.100053+00 2025-07-10 10:54:04.100059+00 f t DESCUENTO 0.00 2 3342 \N +126775 2025-07-10 10:54:04.101445+00 2025-07-10 10:54:04.101453+00 f t TOTAL 0.00 3 3342 \N +126776 2025-07-10 10:54:04.102887+00 2025-07-10 10:54:04.102893+00 f t ADELANTO 0.00 4 3342 \N +128409 2025-07-10 23:43:54.441814+00 2025-07-10 23:43:54.441823+00 f t SUBTOTAL 64500.00 1 3389 \N +128410 2025-07-10 23:43:54.443552+00 2025-07-10 23:43:54.44356+00 f t DESCUENTO 0.00 2 3389 \N +128411 2025-07-10 23:43:54.444993+00 2025-07-10 23:43:54.445+00 f t TOTAL 64500.00 3 3389 \N +128412 2025-07-10 23:43:54.446323+00 2025-07-10 23:43:54.44633+00 f t ADELANTO 17000.00 4 3389 \N +131673 2025-07-12 14:51:48.352721+00 2025-07-12 14:51:48.352731+00 f t SUBTOTAL 50000.00 1 3466 \N +131674 2025-07-12 14:51:48.354659+00 2025-07-12 14:51:48.354666+00 f t DESCUENTO 0.00 2 3466 \N +131675 2025-07-12 14:51:48.35611+00 2025-07-12 14:51:48.356119+00 f t TOTAL 50000.00 3 3466 \N +131676 2025-07-12 14:51:48.357364+00 2025-07-12 14:51:48.357371+00 f t ADELANTO 10000.00 4 3466 \N +126861 2025-07-10 11:01:23.756746+00 2025-07-10 11:01:23.756755+00 f t SUBTOTAL 129500.00 1 3343 \N +126862 2025-07-10 11:01:23.758545+00 2025-07-10 11:01:23.758554+00 f t DESCUENTO 0.00 2 3343 \N +126863 2025-07-10 11:01:23.760047+00 2025-07-10 11:01:23.760053+00 f t TOTAL 129500.00 3 3343 \N +126864 2025-07-10 11:01:23.761359+00 2025-07-10 11:01:23.761364+00 f t ADELANTO 27000.00 4 3343 \N +127053 2025-07-10 13:01:53.463743+00 2025-07-10 13:01:53.463756+00 f t SUBTOTAL 130000.00 1 3348 \N +127054 2025-07-10 13:01:53.465335+00 2025-07-10 13:01:53.465342+00 f t DESCUENTO 0.00 2 3348 \N +127055 2025-07-10 13:01:53.466759+00 2025-07-10 13:01:53.466766+00 f t TOTAL 130000.00 3 3348 \N +127056 2025-07-10 13:01:53.468038+00 2025-07-10 13:01:53.468045+00 f t ADELANTO 15000.00 4 3348 \N +127109 2025-07-10 13:12:45.429585+00 2025-07-10 13:12:45.429593+00 f t SUBTOTAL 62000.00 1 3350 \N +127110 2025-07-10 13:12:45.431336+00 2025-07-10 13:12:45.431347+00 f t DESCUENTO 0.00 2 3350 \N +127111 2025-07-10 13:12:45.432909+00 2025-07-10 13:12:45.432919+00 f t TOTAL 62000.00 3 3350 \N +127112 2025-07-10 13:12:45.434306+00 2025-07-10 13:12:45.434314+00 f t ADELANTO 12000.00 4 3350 \N +130301 2025-07-11 22:16:38.883427+00 2025-07-11 22:16:38.883436+00 f t SUBTOTAL 84000.00 1 3434 \N +130302 2025-07-11 22:16:38.885075+00 2025-07-11 22:16:38.885081+00 f t DESCUENTO 0.00 2 3434 \N +130303 2025-07-11 22:16:38.886258+00 2025-07-11 22:16:38.886264+00 f t TOTAL 84000.00 3 3434 \N +130304 2025-07-11 22:16:38.887282+00 2025-07-11 22:16:38.887287+00 f t ADELANTO 19000.00 4 3434 \N +127345 2025-07-10 14:54:05.028554+00 2025-07-10 14:54:05.028567+00 f t SUBTOTAL 0.00 1 3357 \N +127346 2025-07-10 14:54:05.030447+00 2025-07-10 14:54:05.030458+00 f t DESCUENTO 0.00 2 3357 \N +126917 2025-07-10 12:02:02.47767+00 2025-07-10 12:02:02.477683+00 f t SUBTOTAL 0.00 1 3344 \N +126918 2025-07-10 12:02:02.481193+00 2025-07-10 12:02:02.481205+00 f t DESCUENTO 0.00 2 3344 \N +126919 2025-07-10 12:02:02.483471+00 2025-07-10 12:02:02.483482+00 f t TOTAL 0.00 3 3344 \N +126920 2025-07-10 12:02:02.485592+00 2025-07-10 12:02:02.485603+00 f t ADELANTO 0.00 4 3344 \N +127347 2025-07-10 14:54:05.032305+00 2025-07-10 14:54:05.032314+00 f t TOTAL 0.00 3 3357 \N +127348 2025-07-10 14:54:05.034151+00 2025-07-10 14:54:05.03416+00 f t ADELANTO 0.00 4 3357 \N +133525 2025-07-13 13:52:18.093893+00 2025-07-13 13:52:18.093901+00 f t SUBTOTAL 84000.00 1 3517 \N +133526 2025-07-13 13:52:18.095543+00 2025-07-13 13:52:18.095549+00 f t DESCUENTO 0.00 2 3517 \N +133527 2025-07-13 13:52:18.096919+00 2025-07-13 13:52:18.096928+00 f t TOTAL 84000.00 3 3517 \N +133528 2025-07-13 13:52:18.098055+00 2025-07-13 13:52:18.09806+00 f t ADELANTO 18000.00 4 3517 \N +140217 2025-07-16 00:20:58.1403+00 2025-07-16 00:20:58.140309+00 f t SUBTOTAL 42000.00 1 3683 \N +140218 2025-07-16 00:20:58.142035+00 2025-07-16 00:20:58.142042+00 f t DESCUENTO 0.00 2 3683 \N +140219 2025-07-16 00:20:58.143278+00 2025-07-16 00:20:58.143284+00 f t TOTAL 42000.00 3 3683 \N +140220 2025-07-16 00:20:58.144458+00 2025-07-16 00:20:58.144464+00 f t ADELANTO 9500.00 4 3683 \N +126949 2025-07-10 12:07:49.966285+00 2025-07-10 12:07:49.966296+00 f t SUBTOTAL 42000.00 1 3345 \N +126950 2025-07-10 12:07:49.968266+00 2025-07-10 12:07:49.968273+00 f t DESCUENTO 0.00 2 3345 \N +126951 2025-07-10 12:07:49.969604+00 2025-07-10 12:07:49.96961+00 f t TOTAL 42000.00 3 3345 \N +126952 2025-07-10 12:07:49.970852+00 2025-07-10 12:07:49.970862+00 f t ADELANTO 9500.00 4 3345 \N +127633 2025-07-10 17:54:46.004872+00 2025-07-10 17:54:46.004881+00 f t SUBTOTAL 85000.00 1 3371 \N +127634 2025-07-10 17:54:46.006515+00 2025-07-10 17:54:46.006522+00 f t DESCUENTO 0.00 2 3371 \N +127635 2025-07-10 17:54:46.007824+00 2025-07-10 17:54:46.007831+00 f t TOTAL 85000.00 3 3371 \N +127636 2025-07-10 17:54:46.008888+00 2025-07-10 17:54:46.008895+00 f t ADELANTO 47500.00 4 3371 \N +133865 2025-07-13 17:26:23.01603+00 2025-07-13 17:26:23.016043+00 f t SUBTOTAL 123500.00 1 3525 \N +133866 2025-07-13 17:26:23.018509+00 2025-07-13 17:26:23.018519+00 f t DESCUENTO 0.00 2 3525 \N +133867 2025-07-13 17:26:23.020206+00 2025-07-13 17:26:23.020215+00 f t TOTAL 123500.00 3 3525 \N +133868 2025-07-13 17:26:23.021926+00 2025-07-13 17:26:23.021936+00 f t ADELANTO 26000.00 4 3525 \N +127821 2025-07-10 19:23:01.117082+00 2025-07-10 19:23:01.117092+00 f t SUBTOTAL 0.00 1 3376 \N +127822 2025-07-10 19:23:01.118599+00 2025-07-10 19:23:01.118609+00 f t DESCUENTO 0.00 2 3376 \N +127823 2025-07-10 19:23:01.120186+00 2025-07-10 19:23:01.120192+00 f t TOTAL 0.00 3 3376 \N +127824 2025-07-10 19:23:01.121299+00 2025-07-10 19:23:01.121305+00 f t ADELANTO 0.00 4 3376 \N +128225 2025-07-10 21:52:37.19633+00 2025-07-10 21:52:37.196343+00 f t SUBTOTAL 0.00 1 3385 \N +128226 2025-07-10 21:52:37.198694+00 2025-07-10 21:52:37.198706+00 f t DESCUENTO 0.00 2 3385 \N +128227 2025-07-10 21:52:37.200446+00 2025-07-10 21:52:37.200459+00 f t TOTAL 0.00 3 3385 \N +128228 2025-07-10 21:52:37.201928+00 2025-07-10 21:52:37.201938+00 f t ADELANTO 0.00 4 3385 \N +128317 2025-07-10 22:09:47.118024+00 2025-07-10 22:09:47.118037+00 f t SUBTOTAL 50000.00 1 3386 \N +128318 2025-07-10 22:09:47.120254+00 2025-07-10 22:09:47.120265+00 f t DESCUENTO 0.00 2 3386 \N +128319 2025-07-10 22:09:47.122193+00 2025-07-10 22:09:47.122204+00 f t TOTAL 50000.00 3 3386 \N +128320 2025-07-10 22:09:47.124075+00 2025-07-10 22:09:47.124086+00 f t ADELANTO 10000.00 4 3386 \N +131753 2025-07-12 16:31:40.183461+00 2025-07-12 16:31:40.18347+00 f t SUBTOTAL 0.00 1 3468 \N +131754 2025-07-12 16:31:40.185267+00 2025-07-12 16:31:40.185276+00 f t DESCUENTO 0.00 2 3468 \N +131755 2025-07-12 16:31:40.186457+00 2025-07-12 16:31:40.186463+00 f t TOTAL 0.00 3 3468 \N +131756 2025-07-12 16:31:40.188084+00 2025-07-12 16:31:40.18809+00 f t ADELANTO 0.00 4 3468 \N +131925 2025-07-12 18:52:53.449216+00 2025-07-12 18:52:53.449229+00 f t SUBTOTAL 0.00 1 3477 \N +131926 2025-07-12 18:52:53.451424+00 2025-07-12 18:52:53.451436+00 f t DESCUENTO 0.00 2 3477 \N +131927 2025-07-12 18:52:53.453265+00 2025-07-12 18:52:53.453277+00 f t TOTAL 0.00 3 3477 \N +131928 2025-07-12 18:52:53.455088+00 2025-07-12 18:52:53.455099+00 f t ADELANTO 0.00 4 3477 \N +131949 2025-07-12 19:09:39.160569+00 2025-07-12 19:09:39.160581+00 f t SUBTOTAL 0.00 1 3478 \N +131950 2025-07-12 19:09:39.162589+00 2025-07-12 19:09:39.162599+00 f t DESCUENTO 0.00 2 3478 \N +131951 2025-07-12 19:09:39.163804+00 2025-07-12 19:09:39.163812+00 f t TOTAL 0.00 3 3478 \N +131952 2025-07-12 19:09:39.164967+00 2025-07-12 19:09:39.164972+00 f t ADELANTO 0.00 4 3478 \N +128845 2025-07-11 02:54:06.030575+00 2025-07-11 02:54:06.030587+00 f t SUBTOTAL 49500.00 1 3395 \N +128846 2025-07-11 02:54:06.032877+00 2025-07-11 02:54:06.03289+00 f t DESCUENTO 0.00 2 3395 \N +128847 2025-07-11 02:54:06.034645+00 2025-07-11 02:54:06.034656+00 f t TOTAL 49500.00 3 3395 \N +128848 2025-07-11 02:54:06.036427+00 2025-07-11 02:54:06.036437+00 f t ADELANTO 11500.00 4 3395 \N +131993 2025-07-12 20:01:40.903506+00 2025-07-12 20:01:40.903514+00 f t SUBTOTAL 0.00 1 3480 \N +131994 2025-07-12 20:01:40.905045+00 2025-07-12 20:01:40.905051+00 f t DESCUENTO 0.00 2 3480 \N +131995 2025-07-12 20:01:40.906005+00 2025-07-12 20:01:40.90601+00 f t TOTAL 0.00 3 3480 \N +131996 2025-07-12 20:01:40.907403+00 2025-07-12 20:01:40.907409+00 f t ADELANTO 0.00 4 3480 \N +135081 2025-07-14 02:04:47.230325+00 2025-07-14 02:04:47.230335+00 f t SUBTOTAL 0.00 1 3557 \N +135082 2025-07-14 02:04:47.231704+00 2025-07-14 02:04:47.23171+00 f t DESCUENTO 0.00 2 3557 \N +135083 2025-07-14 02:04:47.233018+00 2025-07-14 02:04:47.233024+00 f t TOTAL 0.00 3 3557 \N +135084 2025-07-14 02:04:47.234086+00 2025-07-14 02:04:47.234091+00 f t ADELANTO 0.00 4 3557 \N +132073 2025-07-12 20:27:15.07997+00 2025-07-12 20:27:15.079983+00 f t SUBTOTAL 64500.00 1 3482 \N +132074 2025-07-12 20:27:15.081909+00 2025-07-12 20:27:15.08192+00 f t DESCUENTO 0.00 2 3482 \N +132075 2025-07-12 20:27:15.083128+00 2025-07-12 20:27:15.083242+00 f t TOTAL 64500.00 3 3482 \N +132076 2025-07-12 20:27:15.084445+00 2025-07-12 20:27:15.084451+00 f t ADELANTO 17000.00 4 3482 \N +139725 2025-07-15 20:15:10.246834+00 2025-07-15 20:15:10.246846+00 f t SUBTOTAL 94500.00 1 3671 \N +139726 2025-07-15 20:15:10.248806+00 2025-07-15 20:15:10.248814+00 f t DESCUENTO 0.00 2 3671 \N +139727 2025-07-15 20:15:10.250347+00 2025-07-15 20:15:10.250354+00 f t TOTAL 94500.00 3 3671 \N +128965 2025-07-11 04:12:14.553692+00 2025-07-11 04:12:14.553704+00 f t SUBTOTAL 50000.00 1 3397 \N +128966 2025-07-11 04:12:14.555884+00 2025-07-11 04:12:14.555895+00 f t DESCUENTO 0.00 2 3397 \N +128967 2025-07-11 04:12:14.557521+00 2025-07-11 04:12:14.55753+00 f t TOTAL 50000.00 3 3397 \N +128968 2025-07-11 04:12:14.55885+00 2025-07-11 04:12:14.558858+00 f t ADELANTO 10000.00 4 3397 \N +133569 2025-07-13 14:40:39.670799+00 2025-07-13 14:40:39.670808+00 f t SUBTOTAL 62000.00 1 3518 \N +133570 2025-07-13 14:40:39.67238+00 2025-07-13 14:40:39.672388+00 f t DESCUENTO 0.00 2 3518 \N +133571 2025-07-13 14:40:39.673826+00 2025-07-13 14:40:39.673831+00 f t TOTAL 62000.00 3 3518 \N +133572 2025-07-13 14:40:39.675078+00 2025-07-13 14:40:39.675083+00 f t ADELANTO 12000.00 4 3518 \N +136869 2025-07-14 20:58:12.861079+00 2025-07-14 20:58:12.861089+00 f t SUBTOTAL 62000.00 1 3602 \N +136870 2025-07-14 20:58:12.862749+00 2025-07-14 20:58:12.862757+00 f t DESCUENTO 0.00 2 3602 \N +136871 2025-07-14 20:58:12.863818+00 2025-07-14 20:58:12.863823+00 f t TOTAL 62000.00 3 3602 \N +136872 2025-07-14 20:58:12.864752+00 2025-07-14 20:58:12.864757+00 f t ADELANTO 12000.00 4 3602 \N +130545 2025-07-11 23:42:27.137313+00 2025-07-11 23:42:27.137322+00 f t SUBTOTAL 0.00 1 3439 \N +130546 2025-07-11 23:42:27.13923+00 2025-07-11 23:42:27.139238+00 f t DESCUENTO 0.00 2 3439 \N +130547 2025-07-11 23:42:27.140435+00 2025-07-11 23:42:27.140444+00 f t TOTAL 0.00 3 3439 \N +130548 2025-07-11 23:42:27.141651+00 2025-07-11 23:42:27.141659+00 f t ADELANTO 0.00 4 3439 \N +130949 2025-07-12 07:28:00.626102+00 2025-07-12 07:28:00.626114+00 f t SUBTOTAL 42000.00 1 3450 \N +130950 2025-07-12 07:28:00.628027+00 2025-07-12 07:28:00.628036+00 f t DESCUENTO 0.00 2 3450 \N +130951 2025-07-12 07:28:00.629243+00 2025-07-12 07:28:00.629251+00 f t TOTAL 42000.00 3 3450 \N +130952 2025-07-12 07:28:00.630311+00 2025-07-12 07:28:00.630319+00 f t ADELANTO 9500.00 4 3450 \N +134129 2025-07-13 20:56:16.856709+00 2025-07-13 20:56:16.856721+00 f t SUBTOTAL 0.00 1 3534 \N +134130 2025-07-13 20:56:16.85874+00 2025-07-13 20:56:16.858747+00 f t DESCUENTO 0.00 2 3534 \N +134131 2025-07-13 20:56:16.860005+00 2025-07-13 20:56:16.860013+00 f t TOTAL 0.00 3 3534 \N +134132 2025-07-13 20:56:16.861075+00 2025-07-13 20:56:16.861081+00 f t ADELANTO 0.00 4 3534 \N +134401 2025-07-13 21:41:02.49323+00 2025-07-13 21:41:02.493243+00 f t SUBTOTAL 50000.00 1 3538 \N +134402 2025-07-13 21:41:02.495513+00 2025-07-13 21:41:02.495526+00 f t DESCUENTO 0.00 2 3538 \N +134403 2025-07-13 21:41:02.49984+00 2025-07-13 21:41:02.499852+00 f t TOTAL 50000.00 3 3538 \N +134404 2025-07-13 21:41:02.5025+00 2025-07-13 21:41:02.502512+00 f t ADELANTO 10000.00 4 3538 \N +134437 2025-07-13 21:58:02.252728+00 2025-07-13 21:58:02.252738+00 f t SUBTOTAL 27500.00 1 3539 \N +129085 2025-07-11 04:20:22.706582+00 2025-07-11 04:20:22.706592+00 f t SUBTOTAL 42000.00 1 3398 \N +129086 2025-07-11 04:20:22.708541+00 2025-07-11 04:20:22.708553+00 f t DESCUENTO 0.00 2 3398 \N +129087 2025-07-11 04:20:22.71015+00 2025-07-11 04:20:22.710157+00 f t TOTAL 42000.00 3 3398 \N +129088 2025-07-11 04:20:22.711474+00 2025-07-11 04:20:22.711483+00 f t ADELANTO 9500.00 4 3398 \N +134438 2025-07-13 21:58:02.255272+00 2025-07-13 21:58:02.255284+00 f t DESCUENTO 0.00 2 3539 \N +134439 2025-07-13 21:58:02.257103+00 2025-07-13 21:58:02.257126+00 f t TOTAL 27500.00 3 3539 \N +134440 2025-07-13 21:58:02.259282+00 2025-07-13 21:58:02.259294+00 f t ADELANTO 27500.00 4 3539 \N +134473 2025-07-13 22:02:26.935591+00 2025-07-13 22:02:26.9356+00 f t SUBTOTAL 64500.00 1 3540 \N +134474 2025-07-13 22:02:26.937132+00 2025-07-13 22:02:26.937138+00 f t DESCUENTO 0.00 2 3540 \N +134475 2025-07-13 22:02:26.938461+00 2025-07-13 22:02:26.938469+00 f t TOTAL 64500.00 3 3540 \N +134476 2025-07-13 22:02:26.939864+00 2025-07-13 22:02:26.939872+00 f t ADELANTO 17000.00 4 3540 \N +131581 2025-07-12 14:49:51.045495+00 2025-07-12 14:49:51.045503+00 f t SUBTOTAL 0.00 1 3465 \N +131582 2025-07-12 14:49:51.04736+00 2025-07-12 14:49:51.047368+00 f t DESCUENTO 0.00 2 3465 \N +131583 2025-07-12 14:49:51.048841+00 2025-07-12 14:49:51.048847+00 f t TOTAL 0.00 3 3465 \N +131584 2025-07-12 14:49:51.050607+00 2025-07-12 14:49:51.050613+00 f t ADELANTO 0.00 4 3465 \N +131761 2025-07-12 16:56:15.473797+00 2025-07-12 16:56:15.473811+00 f t SUBTOTAL 0.00 1 3469 \N +131762 2025-07-12 16:56:15.475552+00 2025-07-12 16:56:15.475563+00 f t DESCUENTO 0.00 2 3469 \N +131763 2025-07-12 16:56:15.477279+00 2025-07-12 16:56:15.47729+00 f t TOTAL 0.00 3 3469 \N +131764 2025-07-12 16:56:15.478782+00 2025-07-12 16:56:15.478793+00 f t ADELANTO 0.00 4 3469 \N +131841 2025-07-12 17:46:10.340504+00 2025-07-12 17:46:10.340519+00 f t SUBTOTAL 0.00 1 3471 \N +131842 2025-07-12 17:46:10.342546+00 2025-07-12 17:46:10.342557+00 f t DESCUENTO 0.00 2 3471 \N +131843 2025-07-12 17:46:10.344067+00 2025-07-12 17:46:10.344077+00 f t TOTAL 0.00 3 3471 \N +131844 2025-07-12 17:46:10.34541+00 2025-07-12 17:46:10.345418+00 f t ADELANTO 0.00 4 3471 \N +131869 2025-07-12 17:53:01.980526+00 2025-07-12 17:53:01.980535+00 f t SUBTOTAL 27500.00 1 3472 \N +131870 2025-07-12 17:53:01.983077+00 2025-07-12 17:53:01.983088+00 f t DESCUENTO 0.00 2 3472 \N +131871 2025-07-12 17:53:01.985265+00 2025-07-12 17:53:01.985277+00 f t TOTAL 27500.00 3 3472 \N +131872 2025-07-12 17:53:01.987195+00 2025-07-12 17:53:01.987204+00 f t ADELANTO 27500.00 4 3472 \N +129169 2025-07-11 04:33:40.242034+00 2025-07-11 04:33:40.242046+00 f t SUBTOTAL 0.00 1 3399 \N +129170 2025-07-11 04:33:40.243913+00 2025-07-11 04:33:40.243923+00 f t DESCUENTO 0.00 2 3399 \N +129171 2025-07-11 04:33:40.245191+00 2025-07-11 04:33:40.245199+00 f t TOTAL 0.00 3 3399 \N +129172 2025-07-11 04:33:40.246299+00 2025-07-11 04:33:40.246308+00 f t ADELANTO 0.00 4 3399 \N +132001 2025-07-12 20:02:53.051241+00 2025-07-12 20:02:53.051254+00 f t SUBTOTAL 0.00 1 3481 \N +132002 2025-07-12 20:02:53.05305+00 2025-07-12 20:02:53.053066+00 f t DESCUENTO 0.00 2 3481 \N +132003 2025-07-12 20:02:53.05464+00 2025-07-12 20:02:53.054649+00 f t TOTAL 0.00 3 3481 \N +132004 2025-07-12 20:02:53.056039+00 2025-07-12 20:02:53.056047+00 f t ADELANTO 0.00 4 3481 \N +129197 2025-07-11 07:47:43.901614+00 2025-07-11 07:47:43.901623+00 f t SUBTOTAL 27500.00 1 3400 \N +129198 2025-07-11 07:47:43.903476+00 2025-07-11 07:47:43.903485+00 f t DESCUENTO 0.00 2 3400 \N +129199 2025-07-11 07:47:43.905054+00 2025-07-11 07:47:43.905063+00 f t TOTAL 27500.00 3 3400 \N +129200 2025-07-11 07:47:43.906764+00 2025-07-11 07:47:43.906773+00 f t ADELANTO 27500.00 4 3400 \N +132081 2025-07-12 21:02:28.88659+00 2025-07-12 21:02:28.886603+00 f t SUBTOTAL 0.00 1 3483 \N +132082 2025-07-12 21:02:28.888468+00 2025-07-12 21:02:28.888479+00 f t DESCUENTO 0.00 2 3483 \N +132083 2025-07-12 21:02:28.890085+00 2025-07-12 21:02:28.890094+00 f t TOTAL 0.00 3 3483 \N +132084 2025-07-12 21:02:28.89154+00 2025-07-12 21:02:28.891549+00 f t ADELANTO 0.00 4 3483 \N +129225 2025-07-11 07:48:44.880698+00 2025-07-11 07:48:44.880706+00 f t SUBTOTAL 50000.00 1 3401 \N +129226 2025-07-11 07:48:44.882178+00 2025-07-11 07:48:44.882184+00 f t DESCUENTO 0.00 2 3401 \N +129227 2025-07-11 07:48:44.883177+00 2025-07-11 07:48:44.883182+00 f t TOTAL 50000.00 3 3401 \N +129228 2025-07-11 07:48:44.884054+00 2025-07-11 07:48:44.884059+00 f t ADELANTO 10000.00 4 3401 \N +132097 2025-07-12 21:19:32.699736+00 2025-07-12 21:19:32.699749+00 f t SUBTOTAL 0.00 1 3485 \N +139728 2025-07-15 20:15:10.251844+00 2025-07-15 20:15:10.25185+00 f t ADELANTO 26500.00 4 3671 \N +130353 2025-07-11 22:40:07.096065+00 2025-07-11 22:40:07.096078+00 f t SUBTOTAL 87500.00 1 3435 \N +130354 2025-07-11 22:40:07.101147+00 2025-07-11 22:40:07.101162+00 f t DESCUENTO 0.00 2 3435 \N +129253 2025-07-11 07:53:43.205019+00 2025-07-11 07:53:43.205027+00 f t SUBTOTAL 117000.00 1 3402 \N +129254 2025-07-11 07:53:43.206553+00 2025-07-11 07:53:43.206559+00 f t DESCUENTO 0.00 2 3402 \N +129255 2025-07-11 07:53:43.20788+00 2025-07-11 07:53:43.207885+00 f t TOTAL 117000.00 3 3402 \N +129256 2025-07-11 07:53:43.209199+00 2025-07-11 07:53:43.209204+00 f t ADELANTO 24500.00 4 3402 \N +130355 2025-07-11 22:40:07.103549+00 2025-07-11 22:40:07.103563+00 f t TOTAL 87500.00 3 3435 \N +130356 2025-07-11 22:40:07.106144+00 2025-07-11 22:40:07.106157+00 f t ADELANTO 19000.00 4 3435 \N +133493 2025-07-13 13:50:24.757227+00 2025-07-13 13:50:24.757237+00 f t SUBTOTAL 0.00 1 3516 \N +133494 2025-07-13 13:50:24.759428+00 2025-07-13 13:50:24.759435+00 f t DESCUENTO 0.00 2 3516 \N +133495 2025-07-13 13:50:24.760853+00 2025-07-13 13:50:24.76086+00 f t TOTAL 0.00 3 3516 \N +133496 2025-07-13 13:50:24.762078+00 2025-07-13 13:50:24.762087+00 f t ADELANTO 0.00 4 3516 \N +129269 2025-07-11 09:42:25.867955+00 2025-07-11 09:42:25.867968+00 f t SUBTOTAL 0.00 1 3403 \N +129270 2025-07-11 09:42:25.870008+00 2025-07-11 09:42:25.870019+00 f t DESCUENTO 0.00 2 3403 \N +129271 2025-07-11 09:42:25.871716+00 2025-07-11 09:42:25.871727+00 f t TOTAL 0.00 3 3403 \N +129272 2025-07-11 09:42:25.873306+00 2025-07-11 09:42:25.873315+00 f t ADELANTO 0.00 4 3403 \N +136877 2025-07-14 21:31:51.149752+00 2025-07-14 21:31:51.149761+00 f t SUBTOTAL 0.00 1 3603 \N +136878 2025-07-14 21:31:51.151229+00 2025-07-14 21:31:51.15124+00 f t DESCUENTO 0.00 2 3603 \N +136879 2025-07-14 21:31:51.152475+00 2025-07-14 21:31:51.152481+00 f t TOTAL 0.00 3 3603 \N +136880 2025-07-14 21:31:51.153432+00 2025-07-14 21:31:51.153437+00 f t ADELANTO 0.00 4 3603 \N +136925 2025-07-14 22:23:32.502373+00 2025-07-14 22:23:32.502382+00 f t SUBTOTAL 0.00 1 3606 \N +136926 2025-07-14 22:23:32.503898+00 2025-07-14 22:23:32.503907+00 f t DESCUENTO 0.00 2 3606 \N +136927 2025-07-14 22:23:32.505072+00 2025-07-14 22:23:32.50508+00 f t TOTAL 0.00 3 3606 \N +136928 2025-07-14 22:23:32.506061+00 2025-07-14 22:23:32.506067+00 f t ADELANTO 0.00 4 3606 \N +133837 2025-07-13 17:11:57.373627+00 2025-07-13 17:11:57.373636+00 f t SUBTOTAL 0.00 1 3524 \N +133838 2025-07-13 17:11:57.375781+00 2025-07-13 17:11:57.375789+00 f t DESCUENTO 0.00 2 3524 \N +133839 2025-07-13 17:11:57.377076+00 2025-07-13 17:11:57.377085+00 f t TOTAL 0.00 3 3524 \N +133840 2025-07-13 17:11:57.380208+00 2025-07-13 17:11:57.380216+00 f t ADELANTO 0.00 4 3524 \N +130789 2025-07-12 03:03:53.724168+00 2025-07-12 03:03:53.72418+00 f t SUBTOTAL 79000.00 1 3445 \N +130790 2025-07-12 03:03:53.725952+00 2025-07-12 03:03:53.725959+00 f t DESCUENTO 0.00 2 3445 \N +130791 2025-07-12 03:03:53.728165+00 2025-07-12 03:03:53.728171+00 f t TOTAL 79000.00 3 3445 \N +130792 2025-07-12 03:03:53.729356+00 2025-07-12 03:03:53.729363+00 f t ADELANTO 17500.00 4 3445 \N +131121 2025-07-12 10:33:58.701012+00 2025-07-12 10:33:58.701025+00 f t SUBTOTAL 50000.00 1 3456 \N +131122 2025-07-12 10:33:58.703197+00 2025-07-12 10:33:58.703209+00 f t DESCUENTO 0.00 2 3456 \N +131123 2025-07-12 10:33:58.704696+00 2025-07-12 10:33:58.704706+00 f t TOTAL 50000.00 3 3456 \N +131124 2025-07-12 10:33:58.706113+00 2025-07-12 10:33:58.706121+00 f t ADELANTO 10000.00 4 3456 \N +129381 2025-07-11 10:44:00.179803+00 2025-07-11 10:44:00.179816+00 f t SUBTOTAL 0.00 1 3404 \N +129382 2025-07-11 10:44:00.18191+00 2025-07-11 10:44:00.181921+00 f t DESCUENTO 0.00 2 3404 \N +129383 2025-07-11 10:44:00.183448+00 2025-07-11 10:44:00.183456+00 f t TOTAL 0.00 3 3404 \N +129384 2025-07-11 10:44:00.184888+00 2025-07-11 10:44:00.184897+00 f t ADELANTO 0.00 4 3404 \N +129389 2025-07-11 10:52:52.882274+00 2025-07-11 10:52:52.882285+00 f t SUBTOTAL 0.00 1 3405 \N +129390 2025-07-11 10:52:52.88435+00 2025-07-11 10:52:52.884359+00 f t DESCUENTO 0.00 2 3405 \N +129391 2025-07-11 10:52:52.88847+00 2025-07-11 10:52:52.88848+00 f t TOTAL 0.00 3 3405 \N +129392 2025-07-11 10:52:52.890682+00 2025-07-11 10:52:52.890691+00 f t ADELANTO 0.00 4 3405 \N +134481 2025-07-13 22:28:19.632589+00 2025-07-13 22:28:19.632598+00 f t SUBTOTAL 0.00 1 3541 \N +134482 2025-07-13 22:28:19.63384+00 2025-07-13 22:28:19.633846+00 f t DESCUENTO 0.00 2 3541 \N +134483 2025-07-13 22:28:19.635351+00 2025-07-13 22:28:19.635357+00 f t TOTAL 0.00 3 3541 \N +134484 2025-07-13 22:28:19.637261+00 2025-07-13 22:28:19.637266+00 f t ADELANTO 0.00 4 3541 \N +131821 2025-07-12 17:45:21.958193+00 2025-07-12 17:45:21.958203+00 f t SUBTOTAL 27500.00 1 3470 \N +131822 2025-07-12 17:45:21.959881+00 2025-07-12 17:45:21.959888+00 f t DESCUENTO 0.00 2 3470 \N +131823 2025-07-12 17:45:21.961024+00 2025-07-12 17:45:21.96103+00 f t TOTAL 27500.00 3 3470 \N +131824 2025-07-12 17:45:21.962179+00 2025-07-12 17:45:21.962184+00 f t ADELANTO 27500.00 4 3470 \N +134829 2025-07-13 23:21:12.165816+00 2025-07-13 23:21:12.165825+00 f t SUBTOTAL 27500.00 1 3548 \N +134830 2025-07-13 23:21:12.167561+00 2025-07-13 23:21:12.167571+00 f t DESCUENTO 0.00 2 3548 \N +134831 2025-07-13 23:21:12.169025+00 2025-07-13 23:21:12.169031+00 f t TOTAL 27500.00 3 3548 \N +134832 2025-07-13 23:21:12.170309+00 2025-07-13 23:21:12.170314+00 f t ADELANTO 27500.00 4 3548 \N +134861 2025-07-14 00:21:34.579827+00 2025-07-14 00:21:34.579836+00 f t SUBTOTAL 0.00 1 3549 \N +134862 2025-07-14 00:21:34.581971+00 2025-07-14 00:21:34.581979+00 f t DESCUENTO 0.00 2 3549 \N +134863 2025-07-14 00:21:34.583121+00 2025-07-14 00:21:34.583128+00 f t TOTAL 0.00 3 3549 \N +134864 2025-07-14 00:21:34.58417+00 2025-07-14 00:21:34.584178+00 f t ADELANTO 0.00 4 3549 \N +131877 2025-07-12 17:55:21.359179+00 2025-07-12 17:55:21.359193+00 f t SUBTOTAL 0.00 1 3473 \N +131878 2025-07-12 17:55:21.361153+00 2025-07-12 17:55:21.361163+00 f t DESCUENTO 0.00 2 3473 \N +131879 2025-07-12 17:55:21.362486+00 2025-07-12 17:55:21.362494+00 f t TOTAL 0.00 3 3473 \N +131880 2025-07-12 17:55:21.363805+00 2025-07-12 17:55:21.363813+00 f t ADELANTO 0.00 4 3473 \N +134989 2025-07-14 01:20:01.210915+00 2025-07-14 01:20:01.210928+00 f t SUBTOTAL 129700.00 1 3553 \N +134990 2025-07-14 01:20:01.213091+00 2025-07-14 01:20:01.213103+00 f t DESCUENTO 0.00 2 3553 \N +134991 2025-07-14 01:20:01.21503+00 2025-07-14 01:20:01.215041+00 f t TOTAL 129700.00 3 3553 \N +134992 2025-07-14 01:20:01.216977+00 2025-07-14 01:20:01.216987+00 f t ADELANTO 76700.00 4 3553 \N +129485 2025-07-11 11:32:44.824896+00 2025-07-11 11:32:44.824905+00 f t SUBTOTAL 0.00 1 3407 \N +129486 2025-07-11 11:32:44.826801+00 2025-07-11 11:32:44.826808+00 f t DESCUENTO 0.00 2 3407 \N +129487 2025-07-11 11:32:44.828107+00 2025-07-11 11:32:44.828113+00 f t TOTAL 0.00 3 3407 \N +129488 2025-07-11 11:32:44.82918+00 2025-07-11 11:32:44.829185+00 f t ADELANTO 0.00 4 3407 \N +132089 2025-07-12 21:10:29.021299+00 2025-07-12 21:10:29.021314+00 f t SUBTOTAL 0.00 1 3484 \N +132090 2025-07-12 21:10:29.022926+00 2025-07-12 21:10:29.022934+00 f t DESCUENTO 0.00 2 3484 \N +132091 2025-07-12 21:10:29.024418+00 2025-07-12 21:10:29.02443+00 f t TOTAL 0.00 3 3484 \N +132092 2025-07-12 21:10:29.025774+00 2025-07-12 21:10:29.025784+00 f t ADELANTO 0.00 4 3484 \N +132098 2025-07-12 21:19:32.701996+00 2025-07-12 21:19:32.702006+00 f t DESCUENTO 0.00 2 3485 \N +132099 2025-07-12 21:19:32.703733+00 2025-07-12 21:19:32.703742+00 f t TOTAL 0.00 3 3485 \N +132100 2025-07-12 21:19:32.70542+00 2025-07-12 21:19:32.705429+00 f t ADELANTO 0.00 4 3485 \N +130121 2025-07-11 20:48:02.979711+00 2025-07-11 20:48:02.979724+00 f t SUBTOTAL 85000.00 1 3431 \N +130122 2025-07-11 20:48:02.982046+00 2025-07-11 20:48:02.982057+00 f t DESCUENTO 0.00 2 3431 \N +130123 2025-07-11 20:48:02.983895+00 2025-07-11 20:48:02.983904+00 f t TOTAL 85000.00 3 3431 \N +130124 2025-07-11 20:48:02.985574+00 2025-07-11 20:48:02.985583+00 f t ADELANTO 47500.00 4 3431 \N +153646 2025-07-21 14:21:49.682632+00 2025-07-21 14:21:49.682639+00 f t DESCUENTO 0.00 2 4023 \N +130317 2025-07-11 22:18:21.214686+00 2025-07-11 22:18:21.214698+00 f t SUBTOTAL 0.00 1 3433 \N +130318 2025-07-11 22:18:21.217076+00 2025-07-11 22:18:21.217086+00 f t DESCUENTO 0.00 2 3433 \N +130319 2025-07-11 22:18:21.218475+00 2025-07-11 22:18:21.218483+00 f t TOTAL 0.00 3 3433 \N +130320 2025-07-11 22:18:21.219597+00 2025-07-11 22:18:21.219605+00 f t ADELANTO 0.00 4 3433 \N +130629 2025-07-11 23:46:00.756732+00 2025-07-11 23:46:00.756741+00 f t SUBTOTAL 0.00 1 3440 \N +130630 2025-07-11 23:46:00.759234+00 2025-07-11 23:46:00.759242+00 f t DESCUENTO 0.00 2 3440 \N +130631 2025-07-11 23:46:00.760744+00 2025-07-11 23:46:00.760751+00 f t TOTAL 0.00 3 3440 \N +130632 2025-07-11 23:46:00.761969+00 2025-07-11 23:46:00.761974+00 f t ADELANTO 0.00 4 3440 \N +130797 2025-07-12 04:38:59.076138+00 2025-07-12 04:38:59.076148+00 f t SUBTOTAL 0.00 1 3446 \N +130798 2025-07-12 04:38:59.077595+00 2025-07-12 04:38:59.077602+00 f t DESCUENTO 0.00 2 3446 \N +130799 2025-07-12 04:38:59.078836+00 2025-07-12 04:38:59.078843+00 f t TOTAL 0.00 3 3446 \N +130800 2025-07-12 04:38:59.080252+00 2025-07-12 04:38:59.080257+00 f t ADELANTO 0.00 4 3446 \N +129605 2025-07-11 11:34:07.097341+00 2025-07-11 11:34:07.097351+00 f t SUBTOTAL 198200.00 1 3406 \N +129606 2025-07-11 11:34:07.098948+00 2025-07-11 11:34:07.098956+00 f t DESCUENTO 0.00 2 3406 \N +129607 2025-07-11 11:34:07.100452+00 2025-07-11 11:34:07.100459+00 f t TOTAL 198200.00 3 3406 \N +129608 2025-07-11 11:34:07.101503+00 2025-07-11 11:34:07.101508+00 f t ADELANTO 85700.00 4 3406 \N +130917 2025-07-12 07:26:31.620292+00 2025-07-12 07:26:31.620305+00 f t SUBTOTAL 0.00 1 3449 \N +130918 2025-07-12 07:26:31.622554+00 2025-07-12 07:26:31.622566+00 f t DESCUENTO 0.00 2 3449 \N +130919 2025-07-12 07:26:31.624193+00 2025-07-12 07:26:31.624203+00 f t TOTAL 0.00 3 3449 \N +129613 2025-07-11 11:44:06.493365+00 2025-07-11 11:44:06.493377+00 f t SUBTOTAL 0.00 1 3408 \N +129614 2025-07-11 11:44:06.495043+00 2025-07-11 11:44:06.495053+00 f t DESCUENTO 0.00 2 3408 \N +129615 2025-07-11 11:44:06.496817+00 2025-07-11 11:44:06.496827+00 f t TOTAL 0.00 3 3408 \N +129616 2025-07-11 11:44:06.498139+00 2025-07-11 11:44:06.498147+00 f t ADELANTO 0.00 4 3408 \N +130920 2025-07-12 07:26:31.625618+00 2025-07-12 07:26:31.625628+00 f t ADELANTO 0.00 4 3449 \N +129621 2025-07-11 11:59:21.424114+00 2025-07-11 11:59:21.424123+00 f t SUBTOTAL 0.00 1 3409 \N +129622 2025-07-11 11:59:21.425722+00 2025-07-11 11:59:21.425731+00 f t DESCUENTO 0.00 2 3409 \N +129623 2025-07-11 11:59:21.427121+00 2025-07-11 11:59:21.427149+00 f t TOTAL 0.00 3 3409 \N +129624 2025-07-11 11:59:21.428383+00 2025-07-11 11:59:21.428388+00 f t ADELANTO 0.00 4 3409 \N +131045 2025-07-12 09:13:11.984374+00 2025-07-12 09:13:11.984387+00 f t SUBTOTAL 0.00 1 3454 \N +131046 2025-07-12 09:13:11.98691+00 2025-07-12 09:13:11.986921+00 f t DESCUENTO 0.00 2 3454 \N +131047 2025-07-12 09:13:11.989169+00 2025-07-12 09:13:11.989181+00 f t TOTAL 0.00 3 3454 \N +131048 2025-07-12 09:13:11.991117+00 2025-07-12 09:13:11.991163+00 f t ADELANTO 0.00 4 3454 \N +131209 2025-07-12 11:38:14.184165+00 2025-07-12 11:38:14.184178+00 f t SUBTOTAL 0.00 1 3459 \N +131210 2025-07-12 11:38:14.188393+00 2025-07-12 11:38:14.188406+00 f t DESCUENTO 0.00 2 3459 \N +131211 2025-07-12 11:38:14.195765+00 2025-07-12 11:38:14.195777+00 f t TOTAL 0.00 3 3459 \N +131212 2025-07-12 11:38:14.202023+00 2025-07-12 11:38:14.202031+00 f t ADELANTO 0.00 4 3459 \N +129657 2025-07-11 12:15:55.835123+00 2025-07-11 12:15:55.835165+00 f t SUBTOTAL 62000.00 1 3410 \N +129658 2025-07-11 12:15:55.83713+00 2025-07-11 12:15:55.837141+00 f t DESCUENTO 0.00 2 3410 \N +129659 2025-07-11 12:15:55.839218+00 2025-07-11 12:15:55.83923+00 f t TOTAL 62000.00 3 3410 \N +129660 2025-07-11 12:15:55.840796+00 2025-07-11 12:15:55.840805+00 f t ADELANTO 12000.00 4 3410 \N +129665 2025-07-11 12:34:48.741198+00 2025-07-11 12:34:48.741206+00 f t SUBTOTAL 0.00 1 3411 \N +129666 2025-07-11 12:34:48.74244+00 2025-07-11 12:34:48.742449+00 f t DESCUENTO 0.00 2 3411 \N +129667 2025-07-11 12:34:48.743539+00 2025-07-11 12:34:48.743546+00 f t TOTAL 0.00 3 3411 \N +129668 2025-07-11 12:34:48.744436+00 2025-07-11 12:34:48.744442+00 f t ADELANTO 0.00 4 3411 \N +131529 2025-07-12 14:24:13.341977+00 2025-07-12 14:24:13.341986+00 f t SUBTOTAL 156700.00 1 3464 \N +131530 2025-07-12 14:24:13.343783+00 2025-07-12 14:24:13.343792+00 f t DESCUENTO 0.00 2 3464 \N +131531 2025-07-12 14:24:13.345242+00 2025-07-12 14:24:13.34525+00 f t TOTAL 156700.00 3 3464 \N +131532 2025-07-12 14:24:13.351984+00 2025-07-12 14:24:13.351993+00 f t ADELANTO 68700.00 4 3464 \N +129701 2025-07-11 13:44:09.564766+00 2025-07-11 13:44:09.564774+00 f t SUBTOTAL 64500.00 1 3412 \N +129702 2025-07-11 13:44:09.56642+00 2025-07-11 13:44:09.566431+00 f t DESCUENTO 0.00 2 3412 \N +129703 2025-07-11 13:44:09.567673+00 2025-07-11 13:44:09.567682+00 f t TOTAL 64500.00 3 3412 \N +129704 2025-07-11 13:44:09.570236+00 2025-07-11 13:44:09.570246+00 f t ADELANTO 17000.00 4 3412 \N +129729 2025-07-11 14:10:40.847299+00 2025-07-11 14:10:40.847308+00 f t SUBTOTAL 42000.00 1 3413 \N +129730 2025-07-11 14:10:40.848915+00 2025-07-11 14:10:40.848924+00 f t DESCUENTO 0.00 2 3413 \N +129731 2025-07-11 14:10:40.850016+00 2025-07-11 14:10:40.850022+00 f t TOTAL 42000.00 3 3413 \N +129732 2025-07-11 14:10:40.851028+00 2025-07-11 14:10:40.851034+00 f t ADELANTO 9500.00 4 3413 \N +129737 2025-07-11 14:38:36.53394+00 2025-07-11 14:38:36.533953+00 f t SUBTOTAL 0.00 1 3414 \N +129738 2025-07-11 14:38:36.535607+00 2025-07-11 14:38:36.535617+00 f t DESCUENTO 0.00 2 3414 \N +129739 2025-07-11 14:38:36.536748+00 2025-07-11 14:38:36.536753+00 f t TOTAL 0.00 3 3414 \N +129740 2025-07-11 14:38:36.537867+00 2025-07-11 14:38:36.537872+00 f t ADELANTO 0.00 4 3414 \N +129753 2025-07-11 14:40:09.787119+00 2025-07-11 14:40:09.787155+00 f t SUBTOTAL 0.00 1 3415 \N +129754 2025-07-11 14:40:09.789462+00 2025-07-11 14:40:09.789474+00 f t DESCUENTO 0.00 2 3415 \N +129755 2025-07-11 14:40:09.791291+00 2025-07-11 14:40:09.791301+00 f t TOTAL 0.00 3 3415 \N +129756 2025-07-11 14:40:09.792856+00 2025-07-11 14:40:09.792863+00 f t ADELANTO 0.00 4 3415 \N +129769 2025-07-11 14:40:28.79844+00 2025-07-11 14:40:28.798448+00 f t SUBTOTAL 0.00 1 3416 \N +129770 2025-07-11 14:40:28.80184+00 2025-07-11 14:40:28.801849+00 f t DESCUENTO 0.00 2 3416 \N +129771 2025-07-11 14:40:28.803171+00 2025-07-11 14:40:28.803177+00 f t TOTAL 0.00 3 3416 \N +129772 2025-07-11 14:40:28.804557+00 2025-07-11 14:40:28.804566+00 f t ADELANTO 0.00 4 3416 \N +129785 2025-07-11 14:40:52.165521+00 2025-07-11 14:40:52.16553+00 f t SUBTOTAL 0.00 1 3417 \N +129786 2025-07-11 14:40:52.16754+00 2025-07-11 14:40:52.167549+00 f t DESCUENTO 0.00 2 3417 \N +129787 2025-07-11 14:40:52.168812+00 2025-07-11 14:40:52.168818+00 f t TOTAL 0.00 3 3417 \N +129788 2025-07-11 14:40:52.169799+00 2025-07-11 14:40:52.169804+00 f t ADELANTO 0.00 4 3417 \N +129793 2025-07-11 15:40:30.40395+00 2025-07-11 15:40:30.403957+00 f t SUBTOTAL 0.00 1 3418 \N +129794 2025-07-11 15:40:30.405303+00 2025-07-11 15:40:30.40531+00 f t DESCUENTO 0.00 2 3418 \N +129795 2025-07-11 15:40:30.406381+00 2025-07-11 15:40:30.406387+00 f t TOTAL 0.00 3 3418 \N +129796 2025-07-11 15:40:30.407471+00 2025-07-11 15:40:30.407477+00 f t ADELANTO 0.00 4 3418 \N +136521 2025-07-14 18:22:56.116899+00 2025-07-14 18:22:56.116909+00 f t SUBTOTAL 0.00 1 3592 \N +130129 2025-07-11 21:43:16.655182+00 2025-07-11 21:43:16.655195+00 f t SUBTOTAL 0.00 1 3432 \N +130130 2025-07-11 21:43:16.657013+00 2025-07-11 21:43:16.657022+00 f t DESCUENTO 0.00 2 3432 \N +130131 2025-07-11 21:43:16.658567+00 2025-07-11 21:43:16.658575+00 f t TOTAL 0.00 3 3432 \N +130132 2025-07-11 21:43:16.660088+00 2025-07-11 21:43:16.660095+00 f t ADELANTO 0.00 4 3432 \N +129821 2025-07-11 15:56:46.034316+00 2025-07-11 15:56:46.034325+00 f t SUBTOTAL 62000.00 1 3419 \N +129822 2025-07-11 15:56:46.036068+00 2025-07-11 15:56:46.036076+00 f t DESCUENTO 0.00 2 3419 \N +129823 2025-07-11 15:56:46.037502+00 2025-07-11 15:56:46.037508+00 f t TOTAL 62000.00 3 3419 \N +129824 2025-07-11 15:56:46.038855+00 2025-07-11 15:56:46.038862+00 f t ADELANTO 12000.00 4 3419 \N +136522 2025-07-14 18:22:56.119114+00 2025-07-14 18:22:56.119124+00 f t DESCUENTO 0.00 2 3592 \N +136523 2025-07-14 18:22:56.120441+00 2025-07-14 18:22:56.120447+00 f t TOTAL 0.00 3 3592 \N +136524 2025-07-14 18:22:56.121707+00 2025-07-14 18:22:56.121714+00 f t ADELANTO 0.00 4 3592 \N +130481 2025-07-11 23:04:11.620483+00 2025-07-11 23:04:11.620491+00 f t SUBTOTAL 42000.00 1 3438 \N +130482 2025-07-11 23:04:11.622398+00 2025-07-11 23:04:11.622407+00 f t DESCUENTO 0.00 2 3438 \N +130483 2025-07-11 23:04:11.62389+00 2025-07-11 23:04:11.623898+00 f t TOTAL 42000.00 3 3438 \N +130484 2025-07-11 23:04:11.62519+00 2025-07-11 23:04:11.625197+00 f t ADELANTO 9500.00 4 3438 \N +130637 2025-07-12 00:17:23.481946+00 2025-07-12 00:17:23.481955+00 f t SUBTOTAL 0.00 1 3441 \N +130638 2025-07-12 00:17:23.483312+00 2025-07-12 00:17:23.483318+00 f t DESCUENTO 0.00 2 3441 \N +130639 2025-07-12 00:17:23.48438+00 2025-07-12 00:17:23.484385+00 f t TOTAL 0.00 3 3441 \N +130640 2025-07-12 00:17:23.485452+00 2025-07-12 00:17:23.485459+00 f t ADELANTO 0.00 4 3441 \N +130753 2025-07-12 01:00:42.053753+00 2025-07-12 01:00:42.053766+00 f t SUBTOTAL 50000.00 1 3443 \N +130754 2025-07-12 01:00:42.05672+00 2025-07-12 01:00:42.056739+00 f t DESCUENTO 0.00 2 3443 \N +130755 2025-07-12 01:00:42.060665+00 2025-07-12 01:00:42.060679+00 f t TOTAL 50000.00 3 3443 \N +130756 2025-07-12 01:00:42.063643+00 2025-07-12 01:00:42.063652+00 f t ADELANTO 10000.00 4 3443 \N +129897 2025-07-11 16:17:18.923889+00 2025-07-11 16:17:18.9239+00 f t SUBTOTAL 64500.00 1 3420 \N +129898 2025-07-11 16:17:18.926039+00 2025-07-11 16:17:18.92605+00 f t DESCUENTO 0.00 2 3420 \N +129899 2025-07-11 16:17:18.927891+00 2025-07-11 16:17:18.9279+00 f t TOTAL 64500.00 3 3420 \N +129900 2025-07-11 16:17:18.929611+00 2025-07-11 16:17:18.929621+00 f t ADELANTO 17000.00 4 3420 \N +130805 2025-07-12 05:39:54.377831+00 2025-07-12 05:39:54.377839+00 f t SUBTOTAL 0.00 1 3447 \N +130806 2025-07-12 05:39:54.379047+00 2025-07-12 05:39:54.379053+00 f t DESCUENTO 0.00 2 3447 \N +130807 2025-07-12 05:39:54.380122+00 2025-07-12 05:39:54.380127+00 f t TOTAL 0.00 3 3447 \N +130808 2025-07-12 05:39:54.380984+00 2025-07-12 05:39:54.380989+00 f t ADELANTO 0.00 4 3447 \N +129925 2025-07-11 16:20:18.108335+00 2025-07-11 16:20:18.108344+00 f t SUBTOTAL 70000.00 1 3421 \N +129926 2025-07-11 16:20:18.109957+00 2025-07-11 16:20:18.109964+00 f t DESCUENTO 0.00 2 3421 \N +129927 2025-07-11 16:20:18.111091+00 2025-07-11 16:20:18.111097+00 f t TOTAL 70000.00 3 3421 \N +129928 2025-07-11 16:20:18.112345+00 2025-07-11 16:20:18.11235+00 f t ADELANTO 10000.00 4 3421 \N +134173 2025-07-13 21:25:35.589179+00 2025-07-13 21:25:35.589187+00 f t SUBTOTAL 50000.00 1 3535 \N +134174 2025-07-13 21:25:35.590806+00 2025-07-13 21:25:35.590812+00 f t DESCUENTO 0.00 2 3535 \N +134175 2025-07-13 21:25:35.59193+00 2025-07-13 21:25:35.591936+00 f t TOTAL 50000.00 3 3535 \N +134176 2025-07-13 21:25:35.593056+00 2025-07-13 21:25:35.593063+00 f t ADELANTO 10000.00 4 3535 \N +134209 2025-07-13 21:28:06.495879+00 2025-07-13 21:28:06.495888+00 f t SUBTOTAL 50000.00 1 3536 \N +134210 2025-07-13 21:28:06.500102+00 2025-07-13 21:28:06.500111+00 f t DESCUENTO 0.00 2 3536 \N +134211 2025-07-13 21:28:06.501527+00 2025-07-13 21:28:06.501534+00 f t TOTAL 50000.00 3 3536 \N +134212 2025-07-13 21:28:06.502989+00 2025-07-13 21:28:06.502995+00 f t ADELANTO 10000.00 4 3536 \N +129981 2025-07-11 17:34:41.919189+00 2025-07-11 17:34:41.919198+00 f t SUBTOTAL 0.00 1 3422 \N +129982 2025-07-11 17:34:41.920724+00 2025-07-11 17:34:41.92073+00 f t DESCUENTO 0.00 2 3422 \N +129983 2025-07-11 17:34:41.921714+00 2025-07-11 17:34:41.92172+00 f t TOTAL 0.00 3 3422 \N +129984 2025-07-11 17:34:41.922654+00 2025-07-11 17:34:41.92266+00 f t ADELANTO 0.00 4 3422 \N +129989 2025-07-11 18:10:59.255984+00 2025-07-11 18:10:59.255994+00 f t SUBTOTAL 0.00 1 3423 \N +129990 2025-07-11 18:10:59.258157+00 2025-07-11 18:10:59.258165+00 f t DESCUENTO 0.00 2 3423 \N +129991 2025-07-11 18:10:59.259434+00 2025-07-11 18:10:59.259439+00 f t TOTAL 0.00 3 3423 \N +129992 2025-07-11 18:10:59.260655+00 2025-07-11 18:10:59.26066+00 f t ADELANTO 0.00 4 3423 \N +131445 2025-07-12 13:58:53.18651+00 2025-07-12 13:58:53.186522+00 f t SUBTOTAL 70000.00 1 3463 \N +131446 2025-07-12 13:58:53.18857+00 2025-07-12 13:58:53.18858+00 f t DESCUENTO 0.00 2 3463 \N +131447 2025-07-12 13:58:53.190407+00 2025-07-12 13:58:53.190414+00 f t TOTAL 70000.00 3 3463 \N +131448 2025-07-12 13:58:53.192015+00 2025-07-12 13:58:53.192025+00 f t ADELANTO 15000.00 4 3463 \N +134621 2025-07-13 23:00:09.787962+00 2025-07-13 23:00:09.787977+00 f t SUBTOTAL 151500.00 1 3543 \N +134622 2025-07-13 23:00:09.795527+00 2025-07-13 23:00:09.795541+00 f t DESCUENTO 0.00 2 3543 \N +134623 2025-07-13 23:00:09.798141+00 2025-07-13 23:00:09.798158+00 f t TOTAL 151500.00 3 3543 \N +134624 2025-07-13 23:00:09.801177+00 2025-07-13 23:00:09.801193+00 f t ADELANTO 41500.00 4 3543 \N +130017 2025-07-11 18:13:24.089152+00 2025-07-11 18:13:24.089161+00 f t SUBTOTAL 49500.00 1 3424 \N +130018 2025-07-11 18:13:24.090973+00 2025-07-11 18:13:24.090981+00 f t DESCUENTO 0.00 2 3424 \N +130019 2025-07-11 18:13:24.092486+00 2025-07-11 18:13:24.092494+00 f t TOTAL 49500.00 3 3424 \N +130020 2025-07-11 18:13:24.093678+00 2025-07-11 18:13:24.093685+00 f t ADELANTO 11500.00 4 3424 \N +134797 2025-07-13 23:18:38.462082+00 2025-07-13 23:18:38.462095+00 f t SUBTOTAL 0.00 1 3547 \N +134798 2025-07-13 23:18:38.464365+00 2025-07-13 23:18:38.464377+00 f t DESCUENTO 0.00 2 3547 \N +134799 2025-07-13 23:18:38.46597+00 2025-07-13 23:18:38.465981+00 f t TOTAL 0.00 3 3547 \N +134800 2025-07-13 23:18:38.467567+00 2025-07-13 23:18:38.467574+00 f t ADELANTO 0.00 4 3547 \N +131713 2025-07-12 14:52:58.788333+00 2025-07-12 14:52:58.788346+00 f t SUBTOTAL 0.00 1 3467 \N +131714 2025-07-12 14:52:58.7907+00 2025-07-12 14:52:58.790713+00 f t DESCUENTO 0.00 2 3467 \N +131715 2025-07-12 14:52:58.792351+00 2025-07-12 14:52:58.79236+00 f t TOTAL 0.00 3 3467 \N +131716 2025-07-12 14:52:58.793655+00 2025-07-12 14:52:58.793663+00 f t ADELANTO 0.00 4 3467 \N +131885 2025-07-12 17:56:08.541208+00 2025-07-12 17:56:08.54122+00 f t SUBTOTAL 0.00 1 3474 \N +131886 2025-07-12 17:56:08.54285+00 2025-07-12 17:56:08.54286+00 f t DESCUENTO 0.00 2 3474 \N +131887 2025-07-12 17:56:08.544281+00 2025-07-12 17:56:08.544289+00 f t TOTAL 0.00 3 3474 \N +131888 2025-07-12 17:56:08.545719+00 2025-07-12 17:56:08.545727+00 f t ADELANTO 0.00 4 3474 \N +131985 2025-07-12 19:30:05.723112+00 2025-07-12 19:30:05.723165+00 f t SUBTOTAL 0.00 1 3479 \N +131986 2025-07-12 19:30:05.726922+00 2025-07-12 19:30:05.726938+00 f t DESCUENTO 0.00 2 3479 \N +131987 2025-07-12 19:30:05.730047+00 2025-07-12 19:30:05.73006+00 f t TOTAL 0.00 3 3479 \N +131988 2025-07-12 19:30:05.73371+00 2025-07-12 19:30:05.733724+00 f t ADELANTO 0.00 4 3479 \N +133261 2025-07-13 12:16:21.944288+00 2025-07-13 12:16:21.944299+00 f t SUBTOTAL 0.00 1 3511 \N +133262 2025-07-13 12:16:21.946127+00 2025-07-13 12:16:21.946133+00 f t DESCUENTO 0.00 2 3511 \N +133263 2025-07-13 12:16:21.947207+00 2025-07-13 12:16:21.947213+00 f t TOTAL 0.00 3 3511 \N +133264 2025-07-13 12:16:21.948068+00 2025-07-13 12:16:21.948074+00 f t ADELANTO 0.00 4 3511 \N +139733 2025-07-15 20:21:59.047264+00 2025-07-15 20:21:59.047277+00 f t SUBTOTAL 0.00 1 3672 \N +146705 2025-07-19 00:44:38.105543+00 2025-07-19 00:44:38.105552+00 f t SUBTOTAL 49500.00 1 3853 \N +146706 2025-07-19 00:44:38.107715+00 2025-07-19 00:44:38.107723+00 f t DESCUENTO 0.00 2 3853 \N +146707 2025-07-19 00:44:38.109229+00 2025-07-19 00:44:38.109241+00 f t TOTAL 49500.00 3 3853 \N +136633 2025-07-14 18:52:48.863009+00 2025-07-14 18:52:48.863018+00 f t SUBTOTAL 42000.00 1 3595 \N +136634 2025-07-14 18:52:48.864813+00 2025-07-14 18:52:48.864821+00 f t DESCUENTO 0.00 2 3595 \N +136635 2025-07-14 18:52:48.866136+00 2025-07-14 18:52:48.866142+00 f t TOTAL 42000.00 3 3595 \N +136636 2025-07-14 18:52:48.867385+00 2025-07-14 18:52:48.867391+00 f t ADELANTO 9500.00 4 3595 \N +136833 2025-07-14 20:56:06.679419+00 2025-07-14 20:56:06.679432+00 f t SUBTOTAL 0.00 1 3601 \N +133665 2025-07-13 14:57:01.667949+00 2025-07-13 14:57:01.667962+00 f t SUBTOTAL 0.00 1 3520 \N +133666 2025-07-13 14:57:01.670795+00 2025-07-13 14:57:01.670807+00 f t DESCUENTO 0.00 2 3520 \N +133667 2025-07-13 14:57:01.672677+00 2025-07-13 14:57:01.672688+00 f t TOTAL 0.00 3 3520 \N +133668 2025-07-13 14:57:01.674423+00 2025-07-13 14:57:01.674431+00 f t ADELANTO 0.00 4 3520 \N +136834 2025-07-14 20:56:06.681804+00 2025-07-14 20:56:06.681813+00 f t DESCUENTO 0.00 2 3601 \N +136835 2025-07-14 20:56:06.683067+00 2025-07-14 20:56:06.683075+00 f t TOTAL 0.00 3 3601 \N +136836 2025-07-14 20:56:06.684393+00 2025-07-14 20:56:06.6844+00 f t ADELANTO 0.00 4 3601 \N +132165 2025-07-12 21:23:32.814881+00 2025-07-12 21:23:32.81489+00 f t SUBTOTAL 50000.00 1 3486 \N +132166 2025-07-12 21:23:32.816581+00 2025-07-12 21:23:32.816589+00 f t DESCUENTO 0.00 2 3486 \N +132167 2025-07-12 21:23:32.81787+00 2025-07-12 21:23:32.817876+00 f t TOTAL 50000.00 3 3486 \N +132168 2025-07-12 21:23:32.819012+00 2025-07-12 21:23:32.819019+00 f t ADELANTO 10000.00 4 3486 \N +132173 2025-07-12 22:52:11.72628+00 2025-07-12 22:52:11.726289+00 f t SUBTOTAL 0.00 1 3487 \N +132174 2025-07-12 22:52:11.728063+00 2025-07-12 22:52:11.728075+00 f t DESCUENTO 0.00 2 3487 \N +132175 2025-07-12 22:52:11.730245+00 2025-07-12 22:52:11.730256+00 f t TOTAL 0.00 3 3487 \N +132176 2025-07-12 22:52:11.731955+00 2025-07-12 22:52:11.731966+00 f t ADELANTO 0.00 4 3487 \N +133953 2025-07-13 17:34:08.922221+00 2025-07-13 17:34:08.922231+00 f t SUBTOTAL 95000.00 1 3527 \N +133954 2025-07-13 17:34:08.924245+00 2025-07-13 17:34:08.924257+00 f t DESCUENTO 0.00 2 3527 \N +133955 2025-07-13 17:34:08.925807+00 2025-07-13 17:34:08.925815+00 f t TOTAL 95000.00 3 3527 \N +133956 2025-07-13 17:34:08.92749+00 2025-07-13 17:34:08.927501+00 f t ADELANTO 10000.00 4 3527 \N +132181 2025-07-12 23:23:47.485713+00 2025-07-12 23:23:47.485722+00 f t SUBTOTAL 0.00 1 3488 \N +132182 2025-07-12 23:23:47.487121+00 2025-07-12 23:23:47.487164+00 f t DESCUENTO 0.00 2 3488 \N +132183 2025-07-12 23:23:47.488307+00 2025-07-12 23:23:47.488312+00 f t TOTAL 0.00 3 3488 \N +132184 2025-07-12 23:23:47.493809+00 2025-07-12 23:23:47.49383+00 f t ADELANTO 0.00 4 3488 \N +133997 2025-07-13 18:56:00.629328+00 2025-07-13 18:56:00.629341+00 f t SUBTOTAL 50000.00 1 3530 \N +133998 2025-07-13 18:56:00.631713+00 2025-07-13 18:56:00.631725+00 f t DESCUENTO 0.00 2 3530 \N +133999 2025-07-13 18:56:00.633495+00 2025-07-13 18:56:00.633505+00 f t TOTAL 50000.00 3 3530 \N +134000 2025-07-13 18:56:00.635283+00 2025-07-13 18:56:00.635292+00 f t ADELANTO 10000.00 4 3530 \N +134033 2025-07-13 20:31:08.868821+00 2025-07-13 20:31:08.868831+00 f t SUBTOTAL 0.00 1 3531 \N +134034 2025-07-13 20:31:08.871173+00 2025-07-13 20:31:08.871186+00 f t DESCUENTO 0.00 2 3531 \N +134035 2025-07-13 20:31:08.872853+00 2025-07-13 20:31:08.87286+00 f t TOTAL 0.00 3 3531 \N +134036 2025-07-13 20:31:08.874235+00 2025-07-13 20:31:08.874245+00 f t ADELANTO 0.00 4 3531 \N +132229 2025-07-12 23:58:13.433374+00 2025-07-12 23:58:13.433383+00 f t SUBTOTAL 70000.00 1 3489 \N +132230 2025-07-12 23:58:13.435093+00 2025-07-12 23:58:13.435101+00 f t DESCUENTO 0.00 2 3489 \N +132231 2025-07-12 23:58:13.436281+00 2025-07-12 23:58:13.436288+00 f t TOTAL 70000.00 3 3489 \N +132232 2025-07-12 23:58:13.437394+00 2025-07-12 23:58:13.4374+00 f t ADELANTO 15000.00 4 3489 \N +132273 2025-07-13 00:01:29.284066+00 2025-07-13 00:01:29.284075+00 f t SUBTOTAL 49500.00 1 3490 \N +132274 2025-07-13 00:01:29.286013+00 2025-07-13 00:01:29.286022+00 f t DESCUENTO 0.00 2 3490 \N +132275 2025-07-13 00:01:29.287527+00 2025-07-13 00:01:29.287536+00 f t TOTAL 49500.00 3 3490 \N +132276 2025-07-13 00:01:29.289037+00 2025-07-13 00:01:29.289044+00 f t ADELANTO 11500.00 4 3490 \N +137661 2025-07-15 02:34:29.432684+00 2025-07-15 02:34:29.432693+00 f t SUBTOTAL 0.00 1 3621 \N +137662 2025-07-15 02:34:29.434426+00 2025-07-15 02:34:29.434434+00 f t DESCUENTO 0.00 2 3621 \N +137663 2025-07-15 02:34:29.435477+00 2025-07-15 02:34:29.435483+00 f t TOTAL 0.00 3 3621 \N +137664 2025-07-15 02:34:29.43662+00 2025-07-15 02:34:29.436626+00 f t ADELANTO 0.00 4 3621 \N +134869 2025-07-14 00:26:38.26261+00 2025-07-14 00:26:38.262619+00 f t SUBTOTAL 0.00 1 3550 \N +134870 2025-07-14 00:26:38.26422+00 2025-07-14 00:26:38.264229+00 f t DESCUENTO 0.00 2 3550 \N +134871 2025-07-14 00:26:38.265492+00 2025-07-14 00:26:38.265498+00 f t TOTAL 0.00 3 3550 \N +134872 2025-07-14 00:26:38.266598+00 2025-07-14 00:26:38.266604+00 f t ADELANTO 0.00 4 3550 \N +132317 2025-07-13 00:14:03.177126+00 2025-07-13 00:14:03.177138+00 f t SUBTOTAL 50000.00 1 3491 \N +132318 2025-07-13 00:14:03.178861+00 2025-07-13 00:14:03.178868+00 f t DESCUENTO 0.00 2 3491 \N +132319 2025-07-13 00:14:03.180036+00 2025-07-13 00:14:03.180042+00 f t TOTAL 50000.00 3 3491 \N +132320 2025-07-13 00:14:03.181009+00 2025-07-13 00:14:03.181014+00 f t ADELANTO 10000.00 4 3491 \N +134997 2025-07-14 01:24:59.866261+00 2025-07-14 01:24:59.866272+00 f t SUBTOTAL 0.00 1 3554 \N +132337 2025-07-13 00:14:35.830902+00 2025-07-13 00:14:35.830916+00 f t SUBTOTAL 50000.00 1 3492 \N +132338 2025-07-13 00:14:35.832907+00 2025-07-13 00:14:35.832916+00 f t DESCUENTO 0.00 2 3492 \N +132339 2025-07-13 00:14:35.834355+00 2025-07-13 00:14:35.834362+00 f t TOTAL 50000.00 3 3492 \N +132340 2025-07-13 00:14:35.835659+00 2025-07-13 00:14:35.835665+00 f t ADELANTO 10000.00 4 3492 \N +134998 2025-07-14 01:24:59.86835+00 2025-07-14 01:24:59.868362+00 f t DESCUENTO 0.00 2 3554 \N +134999 2025-07-14 01:24:59.870095+00 2025-07-14 01:24:59.870105+00 f t TOTAL 0.00 3 3554 \N +135000 2025-07-14 01:24:59.871508+00 2025-07-14 01:24:59.871517+00 f t ADELANTO 0.00 4 3554 \N +135229 2025-07-14 02:29:51.902086+00 2025-07-14 02:29:51.902095+00 f t SUBTOTAL 99000.00 1 3558 \N +135230 2025-07-14 02:29:51.90398+00 2025-07-14 02:29:51.903992+00 f t DESCUENTO 0.00 2 3558 \N +135231 2025-07-14 02:29:51.905585+00 2025-07-14 02:29:51.905593+00 f t TOTAL 99000.00 3 3558 \N +135232 2025-07-14 02:29:51.907207+00 2025-07-14 02:29:51.907217+00 f t ADELANTO 23000.00 4 3558 \N +132385 2025-07-13 00:19:06.002115+00 2025-07-13 00:19:06.002124+00 f t SUBTOTAL 0.00 1 3493 \N +132386 2025-07-13 00:19:06.004243+00 2025-07-13 00:19:06.00425+00 f t DESCUENTO 0.00 2 3493 \N +132387 2025-07-13 00:19:06.005711+00 2025-07-13 00:19:06.005719+00 f t TOTAL 0.00 3 3493 \N +132388 2025-07-13 00:19:06.006763+00 2025-07-13 00:19:06.006768+00 f t ADELANTO 0.00 4 3493 \N +139734 2025-07-15 20:21:59.049112+00 2025-07-15 20:21:59.049122+00 f t DESCUENTO 0.00 2 3672 \N +139735 2025-07-15 20:21:59.050994+00 2025-07-15 20:21:59.051003+00 f t TOTAL 0.00 3 3672 \N +139736 2025-07-15 20:21:59.05242+00 2025-07-15 20:21:59.052429+00 f t ADELANTO 0.00 4 3672 \N +153647 2025-07-21 14:21:49.684324+00 2025-07-21 14:21:49.684331+00 f t TOTAL 0.00 3 4023 \N +153648 2025-07-21 14:21:49.685619+00 2025-07-21 14:21:49.685625+00 f t ADELANTO 0.00 4 4023 \N +177265 2025-07-31 19:33:35.439997+00 2025-07-31 19:33:35.440011+00 f t SUBTOTAL 49500.00 1 4655 \N +136585 2025-07-14 18:29:22.344025+00 2025-07-14 18:29:22.344035+00 f t SUBTOTAL 42000.00 1 3593 \N +136586 2025-07-14 18:29:22.345656+00 2025-07-14 18:29:22.345662+00 f t DESCUENTO 0.00 2 3593 \N +136587 2025-07-14 18:29:22.346747+00 2025-07-14 18:29:22.346752+00 f t TOTAL 42000.00 3 3593 \N +136588 2025-07-14 18:29:22.347722+00 2025-07-14 18:29:22.347727+00 f t ADELANTO 9500.00 4 3593 \N +132417 2025-07-13 00:22:40.116781+00 2025-07-13 00:22:40.116792+00 f t SUBTOTAL 0.00 1 3494 \N +132418 2025-07-13 00:22:40.119488+00 2025-07-13 00:22:40.119497+00 f t DESCUENTO 0.00 2 3494 \N +132419 2025-07-13 00:22:40.120928+00 2025-07-13 00:22:40.120935+00 f t TOTAL 0.00 3 3494 \N +132420 2025-07-13 00:22:40.122347+00 2025-07-13 00:22:40.122354+00 f t ADELANTO 0.00 4 3494 \N +133625 2025-07-13 14:47:36.290091+00 2025-07-13 14:47:36.290103+00 f t SUBTOTAL 0.00 1 3519 \N +132433 2025-07-13 00:24:26.689127+00 2025-07-13 00:24:26.689136+00 f t SUBTOTAL 0.00 1 3496 \N +132434 2025-07-13 00:24:26.690674+00 2025-07-13 00:24:26.690682+00 f t DESCUENTO 0.00 2 3496 \N +132435 2025-07-13 00:24:26.691953+00 2025-07-13 00:24:26.691963+00 f t TOTAL 0.00 3 3496 \N +132436 2025-07-13 00:24:26.693119+00 2025-07-13 00:24:26.693125+00 f t ADELANTO 0.00 4 3496 \N +133626 2025-07-13 14:47:36.292143+00 2025-07-13 14:47:36.292151+00 f t DESCUENTO 0.00 2 3519 \N +133627 2025-07-13 14:47:36.294383+00 2025-07-13 14:47:36.29439+00 f t TOTAL 0.00 3 3519 \N +133628 2025-07-13 14:47:36.295816+00 2025-07-13 14:47:36.295825+00 f t ADELANTO 0.00 4 3519 \N +133745 2025-07-13 15:52:59.362234+00 2025-07-13 15:52:59.362243+00 f t SUBTOTAL 42000.00 1 3522 \N +133746 2025-07-13 15:52:59.364028+00 2025-07-13 15:52:59.364038+00 f t DESCUENTO 0.00 2 3522 \N +133747 2025-07-13 15:52:59.365628+00 2025-07-13 15:52:59.365637+00 f t TOTAL 42000.00 3 3522 \N +133748 2025-07-13 15:52:59.366929+00 2025-07-13 15:52:59.366935+00 f t ADELANTO 9500.00 4 3522 \N +136969 2025-07-14 22:49:29.509972+00 2025-07-14 22:49:29.509981+00 f t SUBTOTAL 49500.00 1 3607 \N +136970 2025-07-14 22:49:29.511445+00 2025-07-14 22:49:29.511452+00 f t DESCUENTO 0.00 2 3607 \N +136971 2025-07-14 22:49:29.512672+00 2025-07-14 22:49:29.512681+00 f t TOTAL 49500.00 3 3607 \N +136972 2025-07-14 22:49:29.513815+00 2025-07-14 22:49:29.513821+00 f t ADELANTO 11500.00 4 3607 \N +133961 2025-07-13 17:38:14.012069+00 2025-07-13 17:38:14.012078+00 f t SUBTOTAL 0.00 1 3528 \N +133962 2025-07-13 17:38:14.013519+00 2025-07-13 17:38:14.013528+00 f t DESCUENTO 0.00 2 3528 \N +133963 2025-07-13 17:38:14.01476+00 2025-07-13 17:38:14.014768+00 f t TOTAL 0.00 3 3528 \N +133964 2025-07-13 17:38:14.01603+00 2025-07-13 17:38:14.016036+00 f t ADELANTO 0.00 4 3528 \N +132489 2025-07-13 00:26:05.190532+00 2025-07-13 00:26:05.190544+00 f t SUBTOTAL 50000.00 1 3495 \N +132490 2025-07-13 00:26:05.194545+00 2025-07-13 00:26:05.194558+00 f t DESCUENTO 0.00 2 3495 \N +132491 2025-07-13 00:26:05.196596+00 2025-07-13 00:26:05.196608+00 f t TOTAL 50000.00 3 3495 \N +132492 2025-07-13 00:26:05.198505+00 2025-07-13 00:26:05.198513+00 f t ADELANTO 10000.00 4 3495 \N +132517 2025-07-13 00:36:38.590795+00 2025-07-13 00:36:38.590808+00 f t SUBTOTAL 50000.00 1 3497 \N +132518 2025-07-13 00:36:38.592716+00 2025-07-13 00:36:38.592726+00 f t DESCUENTO 0.00 2 3497 \N +132519 2025-07-13 00:36:38.594359+00 2025-07-13 00:36:38.594369+00 f t TOTAL 50000.00 3 3497 \N +132520 2025-07-13 00:36:38.595771+00 2025-07-13 00:36:38.59578+00 f t ADELANTO 10000.00 4 3497 \N +132525 2025-07-13 00:55:26.49756+00 2025-07-13 00:55:26.497569+00 f t SUBTOTAL 0.00 1 3498 \N +132526 2025-07-13 00:55:26.499054+00 2025-07-13 00:55:26.499061+00 f t DESCUENTO 0.00 2 3498 \N +132527 2025-07-13 00:55:26.500169+00 2025-07-13 00:55:26.500175+00 f t TOTAL 0.00 3 3498 \N +132528 2025-07-13 00:55:26.50114+00 2025-07-13 00:55:26.501145+00 f t ADELANTO 0.00 4 3498 \N +132533 2025-07-13 01:14:44.490894+00 2025-07-13 01:14:44.490908+00 f t SUBTOTAL 0.00 1 3499 \N +132534 2025-07-13 01:14:44.492723+00 2025-07-13 01:14:44.492734+00 f t DESCUENTO 0.00 2 3499 \N +132535 2025-07-13 01:14:44.494114+00 2025-07-13 01:14:44.494121+00 f t TOTAL 0.00 3 3499 \N +132536 2025-07-13 01:14:44.495439+00 2025-07-13 01:14:44.495448+00 f t ADELANTO 0.00 4 3499 \N +137529 2025-07-15 02:04:06.615623+00 2025-07-15 02:04:06.615637+00 f t SUBTOTAL 42000.00 1 3619 \N +137530 2025-07-15 02:04:06.618496+00 2025-07-15 02:04:06.618506+00 f t DESCUENTO 0.00 2 3619 \N +137531 2025-07-15 02:04:06.620425+00 2025-07-15 02:04:06.620437+00 f t TOTAL 42000.00 3 3619 \N +137532 2025-07-15 02:04:06.625066+00 2025-07-15 02:04:06.625079+00 f t ADELANTO 9500.00 4 3619 \N +137669 2025-07-15 02:40:46.730013+00 2025-07-15 02:40:46.730023+00 f t SUBTOTAL 0.00 1 3622 \N +137670 2025-07-15 02:40:46.731735+00 2025-07-15 02:40:46.731745+00 f t DESCUENTO 0.00 2 3622 \N +137671 2025-07-15 02:40:46.733386+00 2025-07-15 02:40:46.733396+00 f t TOTAL 0.00 3 3622 \N +137672 2025-07-15 02:40:46.734907+00 2025-07-15 02:40:46.734913+00 f t ADELANTO 0.00 4 3622 \N +137853 2025-07-15 11:26:05.571067+00 2025-07-15 11:26:05.571077+00 f t SUBTOTAL 0.00 1 3629 \N +137854 2025-07-15 11:26:05.573264+00 2025-07-15 11:26:05.573286+00 f t DESCUENTO 0.00 2 3629 \N +137855 2025-07-15 11:26:05.575967+00 2025-07-15 11:26:05.57598+00 f t TOTAL 0.00 3 3629 \N +137856 2025-07-15 11:26:05.57789+00 2025-07-15 11:26:05.577899+00 f t ADELANTO 0.00 4 3629 \N +132585 2025-07-13 02:03:49.303353+00 2025-07-13 02:03:49.303361+00 f t SUBTOTAL 64500.00 1 3500 \N +132586 2025-07-13 02:03:49.305127+00 2025-07-13 02:03:49.305135+00 f t DESCUENTO 0.00 2 3500 \N +132587 2025-07-13 02:03:49.306551+00 2025-07-13 02:03:49.306558+00 f t TOTAL 64500.00 3 3500 \N +132588 2025-07-13 02:03:49.307761+00 2025-07-13 02:03:49.307766+00 f t ADELANTO 17000.00 4 3500 \N +132601 2025-07-13 02:05:00.408625+00 2025-07-13 02:05:00.408638+00 f t SUBTOTAL 0.00 1 3501 \N +132602 2025-07-13 02:05:00.411076+00 2025-07-13 02:05:00.411089+00 f t DESCUENTO 0.00 2 3501 \N +132603 2025-07-13 02:05:00.412636+00 2025-07-13 02:05:00.412643+00 f t TOTAL 0.00 3 3501 \N +132604 2025-07-13 02:05:00.413946+00 2025-07-13 02:05:00.413954+00 f t ADELANTO 0.00 4 3501 \N +137953 2025-07-15 12:43:24.90073+00 2025-07-15 12:43:24.900742+00 f t SUBTOTAL 49500.00 1 3633 \N +137954 2025-07-15 12:43:24.902765+00 2025-07-15 12:43:24.902774+00 f t DESCUENTO 0.00 2 3633 \N +137955 2025-07-15 12:43:24.904113+00 2025-07-15 12:43:24.904121+00 f t TOTAL 49500.00 3 3633 \N +137956 2025-07-15 12:43:24.905369+00 2025-07-15 12:43:24.905377+00 f t ADELANTO 11500.00 4 3633 \N +134933 2025-07-14 00:49:17.184122+00 2025-07-14 00:49:17.184134+00 f t SUBTOTAL 62000.00 1 3551 \N +134934 2025-07-14 00:49:17.185981+00 2025-07-14 00:49:17.185988+00 f t DESCUENTO 0.00 2 3551 \N +134935 2025-07-14 00:49:17.187469+00 2025-07-14 00:49:17.187475+00 f t TOTAL 62000.00 3 3551 \N +134936 2025-07-14 00:49:17.188827+00 2025-07-14 00:49:17.188835+00 f t ADELANTO 12000.00 4 3551 \N +135005 2025-07-14 01:31:40.686568+00 2025-07-14 01:31:40.686581+00 f t SUBTOTAL 0.00 1 3555 \N +135006 2025-07-14 01:31:40.688281+00 2025-07-14 01:31:40.68829+00 f t DESCUENTO 0.00 2 3555 \N +135007 2025-07-14 01:31:40.689644+00 2025-07-14 01:31:40.689651+00 f t TOTAL 0.00 3 3555 \N +135008 2025-07-14 01:31:40.690868+00 2025-07-14 01:31:40.690874+00 f t ADELANTO 0.00 4 3555 \N +177266 2025-07-31 19:33:35.442119+00 2025-07-31 19:33:35.442131+00 f t DESCUENTO 0.00 2 4655 \N +143469 2025-07-17 14:17:09.70933+00 2025-07-17 14:17:09.709345+00 f t SUBTOTAL 0.00 1 3773 \N +143470 2025-07-17 14:17:09.711623+00 2025-07-17 14:17:09.711636+00 f t DESCUENTO 0.00 2 3773 \N +136733 2025-07-14 19:21:23.847389+00 2025-07-14 19:21:23.847399+00 f t SUBTOTAL 49700.00 1 3596 \N +136734 2025-07-14 19:21:23.849632+00 2025-07-14 19:21:23.849652+00 f t DESCUENTO 0.00 2 3596 \N +136735 2025-07-14 19:21:23.851597+00 2025-07-14 19:21:23.851607+00 f t TOTAL 49700.00 3 3596 \N +136736 2025-07-14 19:21:23.854128+00 2025-07-14 19:21:23.85414+00 f t ADELANTO 11700.00 4 3596 \N +143471 2025-07-17 14:17:09.713565+00 2025-07-17 14:17:09.713576+00 f t TOTAL 0.00 3 3773 \N +143472 2025-07-17 14:17:09.715093+00 2025-07-17 14:17:09.715103+00 f t ADELANTO 0.00 4 3773 \N +140361 2025-07-16 01:47:45.250431+00 2025-07-16 01:47:45.250442+00 f t SUBTOTAL 111000.00 1 3688 \N +140362 2025-07-16 01:47:45.252562+00 2025-07-16 01:47:45.252569+00 f t DESCUENTO 0.00 2 3688 \N +140363 2025-07-16 01:47:45.25401+00 2025-07-16 01:47:45.254017+00 f t TOTAL 111000.00 3 3688 \N +140364 2025-07-16 01:47:45.255205+00 2025-07-16 01:47:45.25521+00 f t ADELANTO 23500.00 4 3688 \N +133817 2025-07-13 16:31:15.112706+00 2025-07-13 16:31:15.112715+00 f t SUBTOTAL 124700.00 1 3523 \N +133818 2025-07-13 16:31:15.114207+00 2025-07-13 16:31:15.114213+00 f t DESCUENTO 0.00 2 3523 \N +133819 2025-07-13 16:31:15.115306+00 2025-07-13 16:31:15.115312+00 f t TOTAL 124700.00 3 3523 \N +133820 2025-07-13 16:31:15.116255+00 2025-07-13 16:31:15.116261+00 f t ADELANTO 54200.00 4 3523 \N +133893 2025-07-13 17:27:35.588081+00 2025-07-13 17:27:35.588089+00 f t SUBTOTAL 123500.00 1 3526 \N +133894 2025-07-13 17:27:35.589553+00 2025-07-13 17:27:35.58956+00 f t DESCUENTO 0.00 2 3526 \N +133895 2025-07-13 17:27:35.590747+00 2025-07-13 17:27:35.590752+00 f t TOTAL 123500.00 3 3526 \N +133896 2025-07-13 17:27:35.591736+00 2025-07-13 17:27:35.591741+00 f t ADELANTO 26000.00 4 3526 \N +133969 2025-07-13 18:19:35.571298+00 2025-07-13 18:19:35.571307+00 f t SUBTOTAL 0.00 1 3529 \N +133970 2025-07-13 18:19:35.572795+00 2025-07-13 18:19:35.572802+00 f t DESCUENTO 0.00 2 3529 \N +133971 2025-07-13 18:19:35.574174+00 2025-07-13 18:19:35.57418+00 f t TOTAL 0.00 3 3529 \N +133972 2025-07-13 18:19:35.575226+00 2025-07-13 18:19:35.575232+00 f t ADELANTO 0.00 4 3529 \N +134109 2025-07-13 20:32:42.874014+00 2025-07-13 20:32:42.874023+00 f t SUBTOTAL 27500.00 1 3532 \N +134110 2025-07-13 20:32:42.875552+00 2025-07-13 20:32:42.875559+00 f t DESCUENTO 0.00 2 3532 \N +134111 2025-07-13 20:32:42.876803+00 2025-07-13 20:32:42.876809+00 f t TOTAL 27500.00 3 3532 \N +134112 2025-07-13 20:32:42.877893+00 2025-07-13 20:32:42.877898+00 f t ADELANTO 27500.00 4 3532 \N +137397 2025-07-15 01:36:26.925631+00 2025-07-15 01:36:26.92564+00 f t SUBTOTAL 0.00 1 3617 \N +137398 2025-07-15 01:36:26.92748+00 2025-07-15 01:36:26.92749+00 f t DESCUENTO 0.00 2 3617 \N +137399 2025-07-15 01:36:26.928773+00 2025-07-15 01:36:26.928781+00 f t TOTAL 0.00 3 3617 \N +137400 2025-07-15 01:36:26.930294+00 2025-07-15 01:36:26.930304+00 f t ADELANTO 0.00 4 3617 \N +134357 2025-07-13 21:40:23.726353+00 2025-07-13 21:40:23.726362+00 f t SUBTOTAL 86500.00 1 3537 \N +134358 2025-07-13 21:40:23.728058+00 2025-07-13 21:40:23.728067+00 f t DESCUENTO 0.00 2 3537 \N +134359 2025-07-13 21:40:23.72955+00 2025-07-13 21:40:23.729559+00 f t TOTAL 86500.00 3 3537 \N +134360 2025-07-13 21:40:23.73095+00 2025-07-13 21:40:23.730958+00 f t ADELANTO 18500.00 4 3537 \N +134501 2025-07-13 22:42:09.553006+00 2025-07-13 22:42:09.55302+00 f t SUBTOTAL 0.00 1 3542 \N +134502 2025-07-13 22:42:09.555001+00 2025-07-13 22:42:09.55501+00 f t DESCUENTO 0.00 2 3542 \N +134503 2025-07-13 22:42:09.556333+00 2025-07-13 22:42:09.556342+00 f t TOTAL 0.00 3 3542 \N +134504 2025-07-13 22:42:09.557516+00 2025-07-13 22:42:09.557523+00 f t ADELANTO 0.00 4 3542 \N +137709 2025-07-15 07:03:26.088847+00 2025-07-15 07:03:26.088857+00 f t SUBTOTAL 72000.00 1 3623 \N +137710 2025-07-15 07:03:26.090804+00 2025-07-15 07:03:26.090813+00 f t DESCUENTO 0.00 2 3623 \N +132845 2025-07-13 02:22:01.170025+00 2025-07-13 02:22:01.170037+00 f t SUBTOTAL 95000.00 1 3503 \N +132846 2025-07-13 02:22:01.172089+00 2025-07-13 02:22:01.172101+00 f t DESCUENTO 0.00 2 3503 \N +132847 2025-07-13 02:22:01.173881+00 2025-07-13 02:22:01.173893+00 f t TOTAL 95000.00 3 3503 \N +132848 2025-07-13 02:22:01.175395+00 2025-07-13 02:22:01.175401+00 f t ADELANTO 10000.00 4 3503 \N +137711 2025-07-15 07:03:26.092282+00 2025-07-15 07:03:26.09229+00 f t TOTAL 72000.00 3 3623 \N +137712 2025-07-15 07:03:26.093613+00 2025-07-15 07:03:26.093622+00 f t ADELANTO 19000.00 4 3623 \N +132853 2025-07-13 02:23:21.431851+00 2025-07-13 02:23:21.431863+00 f t SUBTOTAL 0.00 1 3502 \N +132854 2025-07-13 02:23:21.43405+00 2025-07-13 02:23:21.434058+00 f t DESCUENTO 0.00 2 3502 \N +132855 2025-07-13 02:23:21.435584+00 2025-07-13 02:23:21.435592+00 f t TOTAL 0.00 3 3502 \N +132856 2025-07-13 02:23:21.437144+00 2025-07-13 02:23:21.437152+00 f t ADELANTO 0.00 4 3502 \N +134705 2025-07-13 23:03:24.825765+00 2025-07-13 23:03:24.825774+00 f t SUBTOTAL 0.00 1 3545 \N +134706 2025-07-13 23:03:24.827628+00 2025-07-13 23:03:24.827635+00 f t DESCUENTO 0.00 2 3545 \N +132861 2025-07-13 03:59:19.390538+00 2025-07-13 03:59:19.390549+00 f t SUBTOTAL 0.00 1 3504 \N +132862 2025-07-13 03:59:19.392103+00 2025-07-13 03:59:19.392111+00 f t DESCUENTO 0.00 2 3504 \N +132863 2025-07-13 03:59:19.39351+00 2025-07-13 03:59:19.393515+00 f t TOTAL 0.00 3 3504 \N +132864 2025-07-13 03:59:19.394864+00 2025-07-13 03:59:19.39487+00 f t ADELANTO 0.00 4 3504 \N +134707 2025-07-13 23:03:24.828646+00 2025-07-13 23:03:24.828652+00 f t TOTAL 0.00 3 3545 \N +134708 2025-07-13 23:03:24.829633+00 2025-07-13 23:03:24.829638+00 f t ADELANTO 0.00 4 3545 \N +137789 2025-07-15 11:01:01.458507+00 2025-07-15 11:01:01.45852+00 f t SUBTOTAL 0.00 1 3627 \N +137790 2025-07-15 11:01:01.461509+00 2025-07-15 11:01:01.461521+00 f t DESCUENTO 0.00 2 3627 \N +132869 2025-07-13 04:01:29.963204+00 2025-07-13 04:01:29.963216+00 f t SUBTOTAL 0.00 1 3505 \N +132870 2025-07-13 04:01:29.964704+00 2025-07-13 04:01:29.964712+00 f t DESCUENTO 0.00 2 3505 \N +132871 2025-07-13 04:01:29.966112+00 2025-07-13 04:01:29.966121+00 f t TOTAL 0.00 3 3505 \N +132872 2025-07-13 04:01:29.967497+00 2025-07-13 04:01:29.967503+00 f t ADELANTO 0.00 4 3505 \N +137791 2025-07-15 11:01:01.463606+00 2025-07-15 11:01:01.463616+00 f t TOTAL 0.00 3 3627 \N +137792 2025-07-15 11:01:01.465879+00 2025-07-15 11:01:01.465887+00 f t ADELANTO 0.00 4 3627 \N +132897 2025-07-13 06:33:36.092698+00 2025-07-13 06:33:36.09271+00 f t SUBTOTAL 0.00 1 3506 \N +132898 2025-07-13 06:33:36.095197+00 2025-07-13 06:33:36.095209+00 f t DESCUENTO 0.00 2 3506 \N +132899 2025-07-13 06:33:36.097046+00 2025-07-13 06:33:36.097055+00 f t TOTAL 0.00 3 3506 \N +132900 2025-07-13 06:33:36.098558+00 2025-07-13 06:33:36.098566+00 f t ADELANTO 0.00 4 3506 \N +134941 2025-07-14 01:15:32.147948+00 2025-07-14 01:15:32.147961+00 f t SUBTOTAL 0.00 1 3552 \N +134942 2025-07-14 01:15:32.149545+00 2025-07-14 01:15:32.149555+00 f t DESCUENTO 0.00 2 3552 \N +134943 2025-07-14 01:15:32.150882+00 2025-07-14 01:15:32.15089+00 f t TOTAL 0.00 3 3552 \N +134944 2025-07-14 01:15:32.152168+00 2025-07-14 01:15:32.152177+00 f t ADELANTO 0.00 4 3552 \N +135205 2025-07-14 02:29:28.394203+00 2025-07-14 02:29:28.394211+00 f t SUBTOTAL 42000.00 1 3559 \N +135206 2025-07-14 02:29:28.395768+00 2025-07-14 02:29:28.395775+00 f t DESCUENTO 0.00 2 3559 \N +135207 2025-07-14 02:29:28.397107+00 2025-07-14 02:29:28.397114+00 f t TOTAL 42000.00 3 3559 \N +135208 2025-07-14 02:29:28.398223+00 2025-07-14 02:29:28.398229+00 f t ADELANTO 9500.00 4 3559 \N +150037 2025-07-20 08:26:52.668725+00 2025-07-20 08:26:52.668734+00 f t SUBTOTAL 0.00 1 3929 \N +150038 2025-07-20 08:26:52.670789+00 2025-07-20 08:26:52.670796+00 f t DESCUENTO 0.00 2 3929 \N +150039 2025-07-20 08:26:52.671914+00 2025-07-20 08:26:52.67192+00 f t TOTAL 0.00 3 3929 \N +143197 2025-07-17 12:22:02.585227+00 2025-07-17 12:22:02.58524+00 f t SUBTOTAL 50000.00 1 3764 \N +143198 2025-07-17 12:22:02.587499+00 2025-07-17 12:22:02.587508+00 f t DESCUENTO 0.00 2 3764 \N +143199 2025-07-17 12:22:02.589217+00 2025-07-17 12:22:02.589225+00 f t TOTAL 50000.00 3 3764 \N +143200 2025-07-17 12:22:02.590577+00 2025-07-17 12:22:02.590584+00 f t ADELANTO 10000.00 4 3764 \N +146708 2025-07-19 00:44:38.110687+00 2025-07-19 00:44:38.110695+00 f t ADELANTO 11500.00 4 3853 \N +133437 2025-07-13 13:32:53.214011+00 2025-07-13 13:32:53.214019+00 f t SUBTOTAL 50000.00 1 3515 \N +133438 2025-07-13 13:32:53.215806+00 2025-07-13 13:32:53.215814+00 f t DESCUENTO 0.00 2 3515 \N +133439 2025-07-13 13:32:53.217442+00 2025-07-13 13:32:53.217451+00 f t TOTAL 50000.00 3 3515 \N +133440 2025-07-13 13:32:53.218876+00 2025-07-13 13:32:53.218883+00 f t ADELANTO 10000.00 4 3515 \N +132997 2025-07-13 09:27:33.058425+00 2025-07-13 09:27:33.05844+00 f t SUBTOTAL 0.00 1 3507 \N +132998 2025-07-13 09:27:33.060748+00 2025-07-13 09:27:33.060758+00 f t DESCUENTO 0.00 2 3507 \N +132999 2025-07-13 09:27:33.062278+00 2025-07-13 09:27:33.062284+00 f t TOTAL 0.00 3 3507 \N +133000 2025-07-13 09:27:33.063504+00 2025-07-13 09:27:33.06351+00 f t ADELANTO 0.00 4 3507 \N +136741 2025-07-14 19:24:11.698902+00 2025-07-14 19:24:11.698915+00 f t SUBTOTAL 0.00 1 3597 \N +136742 2025-07-14 19:24:11.700453+00 2025-07-14 19:24:11.700462+00 f t DESCUENTO 0.00 2 3597 \N +136743 2025-07-14 19:24:11.701716+00 2025-07-14 19:24:11.701724+00 f t TOTAL 0.00 3 3597 \N +136744 2025-07-14 19:24:11.703001+00 2025-07-14 19:24:11.703007+00 f t ADELANTO 0.00 4 3597 \N +143477 2025-07-17 14:23:30.77616+00 2025-07-17 14:23:30.776174+00 f t SUBTOTAL 0.00 1 3774 \N +137257 2025-07-15 00:35:53.238347+00 2025-07-15 00:35:53.23836+00 f t SUBTOTAL 0.00 1 3613 \N +137258 2025-07-15 00:35:53.240536+00 2025-07-15 00:35:53.240545+00 f t DESCUENTO 0.00 2 3613 \N +137259 2025-07-15 00:35:53.241953+00 2025-07-15 00:35:53.241959+00 f t TOTAL 0.00 3 3613 \N +137260 2025-07-15 00:35:53.243111+00 2025-07-15 00:35:53.243117+00 f t ADELANTO 0.00 4 3613 \N +140789 2025-07-16 05:21:37.555593+00 2025-07-16 05:21:37.555603+00 f t SUBTOTAL 94500.00 1 3694 \N +134117 2025-07-13 20:47:05.110783+00 2025-07-13 20:47:05.110794+00 f t SUBTOTAL 0.00 1 3533 \N +134118 2025-07-13 20:47:05.112249+00 2025-07-13 20:47:05.112256+00 f t DESCUENTO 0.00 2 3533 \N +134119 2025-07-13 20:47:05.113594+00 2025-07-13 20:47:05.1136+00 f t TOTAL 0.00 3 3533 \N +133085 2025-07-13 09:36:42.483543+00 2025-07-13 09:36:42.483555+00 f t SUBTOTAL 50000.00 1 3508 \N +133086 2025-07-13 09:36:42.48552+00 2025-07-13 09:36:42.485531+00 f t DESCUENTO 0.00 2 3508 \N +133087 2025-07-13 09:36:42.487073+00 2025-07-13 09:36:42.487083+00 f t TOTAL 50000.00 3 3508 \N +133088 2025-07-13 09:36:42.488417+00 2025-07-13 09:36:42.488427+00 f t ADELANTO 10000.00 4 3508 \N +134120 2025-07-13 20:47:05.114629+00 2025-07-13 20:47:05.114635+00 f t ADELANTO 0.00 4 3533 \N +140790 2025-07-16 05:21:37.55745+00 2025-07-16 05:21:37.557462+00 f t DESCUENTO 0.00 2 3694 \N +140791 2025-07-16 05:21:37.559286+00 2025-07-16 05:21:37.559294+00 f t TOTAL 94500.00 3 3694 \N +140792 2025-07-16 05:21:37.560981+00 2025-07-16 05:21:37.560988+00 f t ADELANTO 26500.00 4 3694 \N +140965 2025-07-16 10:58:35.512853+00 2025-07-16 10:58:35.512864+00 f t SUBTOTAL 0.00 1 3700 \N +140966 2025-07-16 10:58:35.514698+00 2025-07-16 10:58:35.514706+00 f t DESCUENTO 0.00 2 3700 \N +140967 2025-07-16 10:58:35.515936+00 2025-07-16 10:58:35.515942+00 f t TOTAL 0.00 3 3700 \N +140968 2025-07-16 10:58:35.517017+00 2025-07-16 10:58:35.517023+00 f t ADELANTO 0.00 4 3700 \N +141097 2025-07-16 13:05:32.332281+00 2025-07-16 13:05:32.332295+00 f t SUBTOTAL 0.00 1 3706 \N +137717 2025-07-15 07:06:07.31507+00 2025-07-15 07:06:07.315084+00 f t SUBTOTAL 0.00 1 3624 \N +137718 2025-07-15 07:06:07.31744+00 2025-07-15 07:06:07.317453+00 f t DESCUENTO 0.00 2 3624 \N +137719 2025-07-15 07:06:07.319638+00 2025-07-15 07:06:07.31965+00 f t TOTAL 0.00 3 3624 \N +137720 2025-07-15 07:06:07.321602+00 2025-07-15 07:06:07.321614+00 f t ADELANTO 0.00 4 3624 \N +141098 2025-07-16 13:05:32.334885+00 2025-07-16 13:05:32.334898+00 f t DESCUENTO 0.00 2 3706 \N +141099 2025-07-16 13:05:32.336986+00 2025-07-16 13:05:32.336998+00 f t TOTAL 0.00 3 3706 \N +141100 2025-07-16 13:05:32.338904+00 2025-07-16 13:05:32.338915+00 f t ADELANTO 0.00 4 3706 \N +134677 2025-07-13 23:02:16.322093+00 2025-07-13 23:02:16.322102+00 f t SUBTOTAL 62000.00 1 3544 \N +134678 2025-07-13 23:02:16.324189+00 2025-07-13 23:02:16.324198+00 f t DESCUENTO 0.00 2 3544 \N +134679 2025-07-13 23:02:16.325437+00 2025-07-13 23:02:16.325443+00 f t TOTAL 62000.00 3 3544 \N +134680 2025-07-13 23:02:16.326721+00 2025-07-13 23:02:16.326727+00 f t ADELANTO 12000.00 4 3544 \N +134777 2025-07-13 23:09:30.455857+00 2025-07-13 23:09:30.455865+00 f t SUBTOTAL 42000.00 1 3546 \N +134778 2025-07-13 23:09:30.457306+00 2025-07-13 23:09:30.457312+00 f t DESCUENTO 0.00 2 3546 \N +134779 2025-07-13 23:09:30.458409+00 2025-07-13 23:09:30.458418+00 f t TOTAL 42000.00 3 3546 \N +133173 2025-07-13 11:42:10.555481+00 2025-07-13 11:42:10.55549+00 f t SUBTOTAL 62000.00 1 3509 \N +133174 2025-07-13 11:42:10.557103+00 2025-07-13 11:42:10.557112+00 f t DESCUENTO 0.00 2 3509 \N +133175 2025-07-13 11:42:10.558408+00 2025-07-13 11:42:10.558414+00 f t TOTAL 62000.00 3 3509 \N +133176 2025-07-13 11:42:10.559686+00 2025-07-13 11:42:10.559694+00 f t ADELANTO 12000.00 4 3509 \N +134780 2025-07-13 23:09:30.459423+00 2025-07-13 23:09:30.45943+00 f t ADELANTO 9500.00 4 3546 \N +138049 2025-07-15 12:50:08.349067+00 2025-07-15 12:50:08.349077+00 f t SUBTOTAL 117500.00 1 3634 \N +138050 2025-07-15 12:50:08.351308+00 2025-07-15 12:50:08.351317+00 f t DESCUENTO 0.00 2 3634 \N +138051 2025-07-15 12:50:08.353141+00 2025-07-15 12:50:08.353149+00 f t TOTAL 117500.00 3 3634 \N +138052 2025-07-15 12:50:08.354836+00 2025-07-15 12:50:08.354845+00 f t ADELANTO 28500.00 4 3634 \N +141397 2025-07-16 17:32:08.643604+00 2025-07-16 17:32:08.643614+00 f t SUBTOTAL 0.00 1 3718 \N +141398 2025-07-16 17:32:08.645141+00 2025-07-16 17:32:08.645149+00 f t DESCUENTO 0.00 2 3718 \N +141399 2025-07-16 17:32:08.646606+00 2025-07-16 17:32:08.646613+00 f t TOTAL 0.00 3 3718 \N +141400 2025-07-16 17:32:08.648075+00 2025-07-16 17:32:08.648082+00 f t ADELANTO 0.00 4 3718 \N +138153 2025-07-15 13:20:29.097829+00 2025-07-15 13:20:29.09784+00 f t SUBTOTAL 101900.00 1 3636 \N +138154 2025-07-15 13:20:29.09937+00 2025-07-15 13:20:29.099378+00 f t DESCUENTO 0.00 2 3636 \N +138155 2025-07-15 13:20:29.100608+00 2025-07-15 13:20:29.100614+00 f t TOTAL 101900.00 3 3636 \N +138156 2025-07-15 13:20:29.101623+00 2025-07-15 13:20:29.101629+00 f t ADELANTO 21900.00 4 3636 \N +135073 2025-07-14 01:53:08.71907+00 2025-07-14 01:53:08.719084+00 f t SUBTOTAL 0.00 1 3556 \N +135074 2025-07-14 01:53:08.72161+00 2025-07-14 01:53:08.721623+00 f t DESCUENTO 0.00 2 3556 \N +135075 2025-07-14 01:53:08.723379+00 2025-07-14 01:53:08.723388+00 f t TOTAL 0.00 3 3556 \N +135076 2025-07-14 01:53:08.724992+00 2025-07-14 01:53:08.724999+00 f t ADELANTO 0.00 4 3556 \N +141585 2025-07-16 19:22:45.649062+00 2025-07-16 19:22:45.649073+00 f t SUBTOTAL 50000.00 1 3722 \N +141586 2025-07-16 19:22:45.650804+00 2025-07-16 19:22:45.650813+00 f t DESCUENTO 0.00 2 3722 \N +141587 2025-07-16 19:22:45.652182+00 2025-07-16 19:22:45.652188+00 f t TOTAL 50000.00 3 3722 \N +141588 2025-07-16 19:22:45.653337+00 2025-07-16 19:22:45.653343+00 f t ADELANTO 10000.00 4 3722 \N +150040 2025-07-20 08:26:52.672945+00 2025-07-20 08:26:52.672952+00 f t ADELANTO 0.00 4 3929 \N +139993 2025-07-15 21:02:58.19405+00 2025-07-15 21:02:58.194062+00 f t SUBTOTAL 0.00 1 3676 \N +139994 2025-07-15 21:02:58.199803+00 2025-07-15 21:02:58.199817+00 f t DESCUENTO 0.00 2 3676 \N +139995 2025-07-15 21:02:58.201943+00 2025-07-15 21:02:58.201955+00 f t TOTAL 0.00 3 3676 \N +139996 2025-07-15 21:02:58.203906+00 2025-07-15 21:02:58.203918+00 f t ADELANTO 0.00 4 3676 \N +136749 2025-07-14 20:24:21.628121+00 2025-07-14 20:24:21.62813+00 f t SUBTOTAL 0.00 1 3598 \N +136750 2025-07-14 20:24:21.629565+00 2025-07-14 20:24:21.62957+00 f t DESCUENTO 0.00 2 3598 \N +136751 2025-07-14 20:24:21.630692+00 2025-07-14 20:24:21.630697+00 f t TOTAL 0.00 3 3598 \N +136752 2025-07-14 20:24:21.631663+00 2025-07-14 20:24:21.631668+00 f t ADELANTO 0.00 4 3598 \N +136797 2025-07-14 20:41:08.646235+00 2025-07-14 20:41:08.646245+00 f t SUBTOTAL 0.00 1 3599 \N +136798 2025-07-14 20:41:08.648515+00 2025-07-14 20:41:08.648526+00 f t DESCUENTO 0.00 2 3599 \N +136799 2025-07-14 20:41:08.650187+00 2025-07-14 20:41:08.650195+00 f t TOTAL 0.00 3 3599 \N +136800 2025-07-14 20:41:08.651551+00 2025-07-14 20:41:08.651558+00 f t ADELANTO 0.00 4 3599 \N +137085 2025-07-14 23:21:22.547359+00 2025-07-14 23:21:22.547371+00 f t SUBTOTAL 42000.00 1 3609 \N +137086 2025-07-14 23:21:22.549601+00 2025-07-14 23:21:22.549612+00 f t DESCUENTO 0.00 2 3609 \N +137087 2025-07-14 23:21:22.551647+00 2025-07-14 23:21:22.551658+00 f t TOTAL 42000.00 3 3609 \N +137088 2025-07-14 23:21:22.553165+00 2025-07-14 23:21:22.553174+00 f t ADELANTO 9500.00 4 3609 \N +137157 2025-07-14 23:31:53.084157+00 2025-07-14 23:31:53.084167+00 f t SUBTOTAL 0.00 1 3611 \N +137158 2025-07-14 23:31:53.086604+00 2025-07-14 23:31:53.086616+00 f t DESCUENTO 0.00 2 3611 \N +137159 2025-07-14 23:31:53.087925+00 2025-07-14 23:31:53.087931+00 f t TOTAL 0.00 3 3611 \N +137160 2025-07-14 23:31:53.089265+00 2025-07-14 23:31:53.089271+00 f t ADELANTO 0.00 4 3611 \N +135345 2025-07-14 03:25:52.242759+00 2025-07-14 03:25:52.242768+00 f t SUBTOTAL 148500.00 1 3560 \N +135346 2025-07-14 03:25:52.244718+00 2025-07-14 03:25:52.244726+00 f t DESCUENTO 0.00 2 3560 \N +135347 2025-07-14 03:25:52.246008+00 2025-07-14 03:25:52.246014+00 f t TOTAL 148500.00 3 3560 \N +135348 2025-07-14 03:25:52.247259+00 2025-07-14 03:25:52.247266+00 f t ADELANTO 34500.00 4 3560 \N +137265 2025-07-15 00:38:33.68114+00 2025-07-15 00:38:33.681149+00 f t SUBTOTAL 0.00 1 3614 \N +137266 2025-07-15 00:38:33.682368+00 2025-07-15 00:38:33.682374+00 f t DESCUENTO 0.00 2 3614 \N +137267 2025-07-15 00:38:33.683355+00 2025-07-15 00:38:33.683361+00 f t TOTAL 0.00 3 3614 \N +137268 2025-07-15 00:38:33.684202+00 2025-07-15 00:38:33.684207+00 f t ADELANTO 0.00 4 3614 \N +140689 2025-07-16 04:25:28.69673+00 2025-07-16 04:25:28.696739+00 f t SUBTOTAL 70000.00 1 3692 \N +140690 2025-07-16 04:25:28.698492+00 2025-07-16 04:25:28.698499+00 f t DESCUENTO 0.00 2 3692 \N +140691 2025-07-16 04:25:28.699697+00 2025-07-16 04:25:28.699702+00 f t TOTAL 70000.00 3 3692 \N +140692 2025-07-16 04:25:28.700814+00 2025-07-16 04:25:28.700819+00 f t ADELANTO 15000.00 4 3692 \N +140797 2025-07-16 05:36:39.057136+00 2025-07-16 05:36:39.057145+00 f t SUBTOTAL 0.00 1 3695 \N +140798 2025-07-16 05:36:39.058526+00 2025-07-16 05:36:39.058534+00 f t DESCUENTO 0.00 2 3695 \N +140799 2025-07-16 05:36:39.059712+00 2025-07-16 05:36:39.059717+00 f t TOTAL 0.00 3 3695 \N +140800 2025-07-16 05:36:39.060655+00 2025-07-16 05:36:39.06066+00 f t ADELANTO 0.00 4 3695 \N +135405 2025-07-14 03:27:32.229619+00 2025-07-14 03:27:32.229629+00 f t SUBTOTAL 99000.00 1 3561 \N +135406 2025-07-14 03:27:32.231292+00 2025-07-14 03:27:32.2313+00 f t DESCUENTO 0.00 2 3561 \N +135407 2025-07-14 03:27:32.232779+00 2025-07-14 03:27:32.232788+00 f t TOTAL 99000.00 3 3561 \N +135408 2025-07-14 03:27:32.234114+00 2025-07-14 03:27:32.23412+00 f t ADELANTO 23000.00 4 3561 \N +135413 2025-07-14 04:00:36.348252+00 2025-07-14 04:00:36.348266+00 f t SUBTOTAL 0.00 1 3562 \N +135414 2025-07-14 04:00:36.350567+00 2025-07-14 04:00:36.350581+00 f t DESCUENTO 0.00 2 3562 \N +135415 2025-07-14 04:00:36.353235+00 2025-07-14 04:00:36.353248+00 f t TOTAL 0.00 3 3562 \N +135416 2025-07-14 04:00:36.355341+00 2025-07-14 04:00:36.355354+00 f t ADELANTO 0.00 4 3562 \N +137725 2025-07-15 07:08:58.502976+00 2025-07-15 07:08:58.502988+00 f t SUBTOTAL 0.00 1 3625 \N +137726 2025-07-15 07:08:58.504624+00 2025-07-15 07:08:58.504636+00 f t DESCUENTO 0.00 2 3625 \N +137727 2025-07-15 07:08:58.506224+00 2025-07-15 07:08:58.506231+00 f t TOTAL 0.00 3 3625 \N +137728 2025-07-15 07:08:58.507785+00 2025-07-15 07:08:58.507792+00 f t ADELANTO 0.00 4 3625 \N +140973 2025-07-16 11:13:19.977686+00 2025-07-16 11:13:19.977696+00 f t SUBTOTAL 0.00 1 3702 \N +140974 2025-07-16 11:13:19.979185+00 2025-07-16 11:13:19.979193+00 f t DESCUENTO 0.00 2 3702 \N +140975 2025-07-16 11:13:19.980412+00 2025-07-16 11:13:19.980418+00 f t TOTAL 0.00 3 3702 \N +140976 2025-07-16 11:13:19.981424+00 2025-07-16 11:13:19.981429+00 f t ADELANTO 0.00 4 3702 \N +141033 2025-07-16 11:47:19.889068+00 2025-07-16 11:47:19.889079+00 f t SUBTOTAL 50000.00 1 3703 \N +141034 2025-07-16 11:47:19.89104+00 2025-07-16 11:47:19.89105+00 f t DESCUENTO 0.00 2 3703 \N +141035 2025-07-16 11:47:19.892621+00 2025-07-16 11:47:19.89263+00 f t TOTAL 50000.00 3 3703 \N +141036 2025-07-16 11:47:19.893887+00 2025-07-16 11:47:19.893895+00 f t ADELANTO 10000.00 4 3703 \N +135457 2025-07-14 04:59:33.597165+00 2025-07-14 04:59:33.597175+00 f t SUBTOTAL 55000.00 1 3563 \N +135458 2025-07-14 04:59:33.598994+00 2025-07-14 04:59:33.599005+00 f t DESCUENTO 0.00 2 3563 \N +135459 2025-07-14 04:59:33.600503+00 2025-07-14 04:59:33.60051+00 f t TOTAL 55000.00 3 3563 \N +135460 2025-07-14 04:59:33.601628+00 2025-07-14 04:59:33.601633+00 f t ADELANTO 12500.00 4 3563 \N +141133 2025-07-16 13:34:48.869853+00 2025-07-16 13:34:48.869867+00 f t SUBTOTAL 0.00 1 3707 \N +141134 2025-07-16 13:34:48.87285+00 2025-07-16 13:34:48.872862+00 f t DESCUENTO 0.00 2 3707 \N +141135 2025-07-16 13:34:48.875285+00 2025-07-16 13:34:48.875294+00 f t TOTAL 0.00 3 3707 \N +141136 2025-07-16 13:34:48.876935+00 2025-07-16 13:34:48.876944+00 f t ADELANTO 0.00 4 3707 \N +138057 2025-07-15 12:54:50.502975+00 2025-07-15 12:54:50.502986+00 f t SUBTOTAL 0.00 1 3635 \N +138058 2025-07-15 12:54:50.504739+00 2025-07-15 12:54:50.504749+00 f t DESCUENTO 0.00 2 3635 \N +138059 2025-07-15 12:54:50.506319+00 2025-07-15 12:54:50.506327+00 f t TOTAL 0.00 3 3635 \N +138060 2025-07-15 12:54:50.50764+00 2025-07-15 12:54:50.507649+00 f t ADELANTO 0.00 4 3635 \N +141337 2025-07-16 17:03:58.187079+00 2025-07-16 17:03:58.187089+00 f t SUBTOTAL 0.00 1 3716 \N +141338 2025-07-16 17:03:58.189503+00 2025-07-16 17:03:58.189511+00 f t DESCUENTO 0.00 2 3716 \N +141339 2025-07-16 17:03:58.190929+00 2025-07-16 17:03:58.190936+00 f t TOTAL 0.00 3 3716 \N +141340 2025-07-16 17:03:58.192317+00 2025-07-16 17:03:58.192323+00 f t ADELANTO 0.00 4 3716 \N +141521 2025-07-16 18:51:43.598639+00 2025-07-16 18:51:43.598648+00 f t SUBTOTAL 27500.00 1 3720 \N +141522 2025-07-16 18:51:43.600142+00 2025-07-16 18:51:43.600149+00 f t DESCUENTO 0.00 2 3720 \N +141523 2025-07-16 18:51:43.601283+00 2025-07-16 18:51:43.60129+00 f t TOTAL 27500.00 3 3720 \N +141524 2025-07-16 18:51:43.602353+00 2025-07-16 18:51:43.602359+00 f t ADELANTO 27500.00 4 3720 \N +141689 2025-07-16 19:43:30.600099+00 2025-07-16 19:43:30.600108+00 f t SUBTOTAL 42000.00 1 3726 \N +141690 2025-07-16 19:43:30.60171+00 2025-07-16 19:43:30.601717+00 f t DESCUENTO 0.00 2 3726 \N +141691 2025-07-16 19:43:30.60296+00 2025-07-16 19:43:30.602967+00 f t TOTAL 42000.00 3 3726 \N +141692 2025-07-16 19:43:30.604267+00 2025-07-16 19:43:30.604272+00 f t ADELANTO 9500.00 4 3726 \N +146641 2025-07-19 00:00:02.433592+00 2025-07-19 00:00:02.433605+00 f t SUBTOTAL 49500.00 1 3851 \N +139817 2025-07-15 20:27:23.401128+00 2025-07-15 20:27:23.401141+00 f t SUBTOTAL 110200.00 1 3673 \N +139818 2025-07-15 20:27:23.403217+00 2025-07-15 20:27:23.403235+00 f t DESCUENTO 0.00 2 3673 \N +139819 2025-07-15 20:27:23.404806+00 2025-07-15 20:27:23.404815+00 f t TOTAL 110200.00 3 3673 \N +139820 2025-07-15 20:27:23.406147+00 2025-07-15 20:27:23.406159+00 f t ADELANTO 72200.00 4 3673 \N +146642 2025-07-19 00:00:02.451732+00 2025-07-19 00:00:02.451746+00 f t DESCUENTO 0.00 2 3851 \N +146643 2025-07-19 00:00:02.457489+00 2025-07-19 00:00:02.457503+00 f t TOTAL 49500.00 3 3851 \N +146644 2025-07-19 00:00:02.462514+00 2025-07-19 00:00:02.462528+00 f t ADELANTO 11500.00 4 3851 \N +135585 2025-07-14 07:15:41.642974+00 2025-07-14 07:15:41.642983+00 f t SUBTOTAL 42000.00 1 3564 \N +135586 2025-07-14 07:15:41.64465+00 2025-07-14 07:15:41.644656+00 f t DESCUENTO 0.00 2 3564 \N +135587 2025-07-14 07:15:41.646126+00 2025-07-14 07:15:41.646132+00 f t TOTAL 42000.00 3 3564 \N +135588 2025-07-14 07:15:41.647363+00 2025-07-14 07:15:41.647369+00 f t ADELANTO 9500.00 4 3564 \N +140001 2025-07-15 21:44:26.507283+00 2025-07-15 21:44:26.507293+00 f t SUBTOTAL 0.00 1 3677 \N +135593 2025-07-14 08:35:06.976764+00 2025-07-14 08:35:06.976778+00 f t SUBTOTAL 0.00 1 3565 \N +135594 2025-07-14 08:35:06.979278+00 2025-07-14 08:35:06.97929+00 f t DESCUENTO 0.00 2 3565 \N +135595 2025-07-14 08:35:06.981321+00 2025-07-14 08:35:06.981333+00 f t TOTAL 0.00 3 3565 \N +135596 2025-07-14 08:35:06.983775+00 2025-07-14 08:35:06.983787+00 f t ADELANTO 0.00 4 3565 \N +140002 2025-07-15 21:44:26.508677+00 2025-07-15 21:44:26.508684+00 f t DESCUENTO 0.00 2 3677 \N +140003 2025-07-15 21:44:26.510144+00 2025-07-15 21:44:26.510151+00 f t TOTAL 0.00 3 3677 \N +135601 2025-07-14 08:58:08.121347+00 2025-07-14 08:58:08.121362+00 f t SUBTOTAL 0.00 1 3566 \N +135602 2025-07-14 08:58:08.122713+00 2025-07-14 08:58:08.12272+00 f t DESCUENTO 0.00 2 3566 \N +135603 2025-07-14 08:58:08.123818+00 2025-07-14 08:58:08.123826+00 f t TOTAL 0.00 3 3566 \N +135604 2025-07-14 08:58:08.124865+00 2025-07-14 08:58:08.124871+00 f t ADELANTO 0.00 4 3566 \N +135609 2025-07-14 11:40:32.20079+00 2025-07-14 11:40:32.200803+00 f t SUBTOTAL 0.00 1 3567 \N +135610 2025-07-14 11:40:32.202399+00 2025-07-14 11:40:32.20241+00 f t DESCUENTO 0.00 2 3567 \N +135611 2025-07-14 11:40:32.203829+00 2025-07-14 11:40:32.203837+00 f t TOTAL 0.00 3 3567 \N +135612 2025-07-14 11:40:32.205042+00 2025-07-14 11:40:32.205051+00 f t ADELANTO 0.00 4 3567 \N +136805 2025-07-14 20:45:04.477422+00 2025-07-14 20:45:04.477438+00 f t SUBTOTAL 0.00 1 3600 \N +135617 2025-07-14 12:11:06.07781+00 2025-07-14 12:11:06.077823+00 f t SUBTOTAL 0.00 1 3568 \N +135618 2025-07-14 12:11:06.079815+00 2025-07-14 12:11:06.079828+00 f t DESCUENTO 0.00 2 3568 \N +135619 2025-07-14 12:11:06.08169+00 2025-07-14 12:11:06.0817+00 f t TOTAL 0.00 3 3568 \N +135620 2025-07-14 12:11:06.084382+00 2025-07-14 12:11:06.084395+00 f t ADELANTO 0.00 4 3568 \N +136806 2025-07-14 20:45:04.484034+00 2025-07-14 20:45:04.48405+00 f t DESCUENTO 0.00 2 3600 \N +136807 2025-07-14 20:45:04.491753+00 2025-07-14 20:45:04.491767+00 f t TOTAL 0.00 3 3600 \N +136808 2025-07-14 20:45:04.496702+00 2025-07-14 20:45:04.496718+00 f t ADELANTO 0.00 4 3600 \N +135625 2025-07-14 12:44:54.417295+00 2025-07-14 12:44:54.417304+00 f t SUBTOTAL 0.00 1 3569 \N +135626 2025-07-14 12:44:54.418603+00 2025-07-14 12:44:54.41861+00 f t DESCUENTO 0.00 2 3569 \N +135627 2025-07-14 12:44:54.419787+00 2025-07-14 12:44:54.419792+00 f t TOTAL 0.00 3 3569 \N +135628 2025-07-14 12:44:54.420771+00 2025-07-14 12:44:54.420777+00 f t ADELANTO 0.00 4 3569 \N +135633 2025-07-14 13:10:32.230322+00 2025-07-14 13:10:32.230331+00 f t SUBTOTAL 0.00 1 3570 \N +135634 2025-07-14 13:10:32.231863+00 2025-07-14 13:10:32.231871+00 f t DESCUENTO 0.00 2 3570 \N +135635 2025-07-14 13:10:32.233317+00 2025-07-14 13:10:32.233324+00 f t TOTAL 0.00 3 3570 \N +135636 2025-07-14 13:10:32.234678+00 2025-07-14 13:10:32.234685+00 f t ADELANTO 0.00 4 3570 \N +135661 2025-07-14 13:32:27.331617+00 2025-07-14 13:32:27.331627+00 f t SUBTOTAL 49500.00 1 3571 \N +135662 2025-07-14 13:32:27.334628+00 2025-07-14 13:32:27.334637+00 f t DESCUENTO 0.00 2 3571 \N +135663 2025-07-14 13:32:27.336663+00 2025-07-14 13:32:27.33667+00 f t TOTAL 49500.00 3 3571 \N +135664 2025-07-14 13:32:27.337855+00 2025-07-14 13:32:27.337861+00 f t ADELANTO 11500.00 4 3571 \N +135669 2025-07-14 13:33:03.270305+00 2025-07-14 13:33:03.270316+00 f t SUBTOTAL 0.00 1 3572 \N +135670 2025-07-14 13:33:03.272029+00 2025-07-14 13:33:03.272042+00 f t DESCUENTO 0.00 2 3572 \N +135671 2025-07-14 13:33:03.273666+00 2025-07-14 13:33:03.273677+00 f t TOTAL 0.00 3 3572 \N +135672 2025-07-14 13:33:03.275411+00 2025-07-14 13:33:03.275423+00 f t ADELANTO 0.00 4 3572 \N +137165 2025-07-15 00:23:22.108096+00 2025-07-15 00:23:22.108106+00 f t SUBTOTAL 0.00 1 3612 \N +137166 2025-07-15 00:23:22.109822+00 2025-07-15 00:23:22.10983+00 f t DESCUENTO 0.00 2 3612 \N +137167 2025-07-15 00:23:22.111236+00 2025-07-15 00:23:22.111243+00 f t TOTAL 0.00 3 3612 \N +137168 2025-07-15 00:23:22.112451+00 2025-07-15 00:23:22.112459+00 f t ADELANTO 0.00 4 3612 \N +135709 2025-07-14 13:49:08.58623+00 2025-07-14 13:49:08.586241+00 f t SUBTOTAL 42000.00 1 3573 \N +135710 2025-07-14 13:49:08.588367+00 2025-07-14 13:49:08.588379+00 f t DESCUENTO 0.00 2 3573 \N +135711 2025-07-14 13:49:08.589905+00 2025-07-14 13:49:08.589914+00 f t TOTAL 42000.00 3 3573 \N +135712 2025-07-14 13:49:08.591469+00 2025-07-14 13:49:08.59148+00 f t ADELANTO 9500.00 4 3573 \N +137445 2025-07-15 01:48:00.955379+00 2025-07-15 01:48:00.955389+00 f t SUBTOTAL 50000.00 1 3618 \N +137446 2025-07-15 01:48:00.95727+00 2025-07-15 01:48:00.95729+00 f t DESCUENTO 0.00 2 3618 \N +137447 2025-07-15 01:48:00.95886+00 2025-07-15 01:48:00.95887+00 f t TOTAL 50000.00 3 3618 \N +137448 2025-07-15 01:48:00.960351+00 2025-07-15 01:48:00.96036+00 f t ADELANTO 10000.00 4 3618 \N +135725 2025-07-14 14:03:01.375803+00 2025-07-14 14:03:01.375813+00 f t SUBTOTAL 0.00 1 3574 \N +135726 2025-07-14 14:03:01.378325+00 2025-07-14 14:03:01.378339+00 f t DESCUENTO 0.00 2 3574 \N +135727 2025-07-14 14:03:01.38022+00 2025-07-14 14:03:01.380228+00 f t TOTAL 0.00 3 3574 \N +135728 2025-07-14 14:03:01.381775+00 2025-07-14 14:03:01.381783+00 f t ADELANTO 0.00 4 3574 \N +137733 2025-07-15 09:36:19.128433+00 2025-07-15 09:36:19.128445+00 f t SUBTOTAL 0.00 1 3626 \N +137734 2025-07-15 09:36:19.130233+00 2025-07-15 09:36:19.130243+00 f t DESCUENTO 0.00 2 3626 \N +137735 2025-07-15 09:36:19.131878+00 2025-07-15 09:36:19.131888+00 f t TOTAL 0.00 3 3626 \N +137736 2025-07-15 09:36:19.133346+00 2025-07-15 09:36:19.133355+00 f t ADELANTO 0.00 4 3626 \N +135777 2025-07-14 14:20:29.813081+00 2025-07-14 14:20:29.81309+00 f t SUBTOTAL 42000.00 1 3575 \N +135778 2025-07-14 14:20:29.814655+00 2025-07-14 14:20:29.814662+00 f t DESCUENTO 0.00 2 3575 \N +135779 2025-07-14 14:20:29.816099+00 2025-07-14 14:20:29.816107+00 f t TOTAL 42000.00 3 3575 \N +135780 2025-07-14 14:20:29.817223+00 2025-07-14 14:20:29.817229+00 f t ADELANTO 9500.00 4 3575 \N +135797 2025-07-14 14:40:55.523567+00 2025-07-14 14:40:55.523582+00 f t SUBTOTAL 0.00 1 3576 \N +135798 2025-07-14 14:40:55.525684+00 2025-07-14 14:40:55.525695+00 f t DESCUENTO 0.00 2 3576 \N +135799 2025-07-14 14:40:55.526991+00 2025-07-14 14:40:55.527001+00 f t TOTAL 0.00 3 3576 \N +135800 2025-07-14 14:40:55.528327+00 2025-07-14 14:40:55.528335+00 f t ADELANTO 0.00 4 3576 \N +135805 2025-07-14 15:13:23.042517+00 2025-07-14 15:13:23.04253+00 f t SUBTOTAL 0.00 1 3577 \N +135806 2025-07-14 15:13:23.044182+00 2025-07-14 15:13:23.044191+00 f t DESCUENTO 0.00 2 3577 \N +135807 2025-07-14 15:13:23.045568+00 2025-07-14 15:13:23.045576+00 f t TOTAL 0.00 3 3577 \N +135808 2025-07-14 15:13:23.046884+00 2025-07-14 15:13:23.046892+00 f t ADELANTO 0.00 4 3577 \N +146561 2025-07-18 23:19:14.565353+00 2025-07-18 23:19:14.565366+00 f t SUBTOTAL 50000.00 1 3848 \N +146562 2025-07-18 23:19:14.567388+00 2025-07-18 23:19:14.567399+00 f t DESCUENTO 0.00 2 3848 \N +146563 2025-07-18 23:19:14.568971+00 2025-07-18 23:19:14.56898+00 f t TOTAL 50000.00 3 3848 \N +136605 2025-07-14 18:30:20.958384+00 2025-07-14 18:30:20.958435+00 f t SUBTOTAL 42000.00 1 3594 \N +136606 2025-07-14 18:30:20.960366+00 2025-07-14 18:30:20.960376+00 f t DESCUENTO 0.00 2 3594 \N +136607 2025-07-14 18:30:20.961811+00 2025-07-14 18:30:20.961821+00 f t TOTAL 42000.00 3 3594 \N +136608 2025-07-14 18:30:20.962988+00 2025-07-14 18:30:20.962995+00 f t ADELANTO 9500.00 4 3594 \N +139941 2025-07-15 20:47:55.993575+00 2025-07-15 20:47:55.993583+00 f t SUBTOTAL 42000.00 1 3675 \N +139942 2025-07-15 20:47:55.995623+00 2025-07-15 20:47:55.995631+00 f t DESCUENTO 0.00 2 3675 \N +139943 2025-07-15 20:47:55.997353+00 2025-07-15 20:47:55.99736+00 f t TOTAL 42000.00 3 3675 \N +139944 2025-07-15 20:47:55.998875+00 2025-07-15 20:47:55.998883+00 f t ADELANTO 9500.00 4 3675 \N +140004 2025-07-15 21:44:26.511537+00 2025-07-15 21:44:26.511543+00 f t ADELANTO 0.00 4 3677 \N +135885 2025-07-14 15:25:55.062298+00 2025-07-14 15:25:55.062306+00 f t SUBTOTAL 50000.00 1 3578 \N +135886 2025-07-14 15:25:55.063764+00 2025-07-14 15:25:55.063769+00 f t DESCUENTO 0.00 2 3578 \N +135887 2025-07-14 15:25:55.065241+00 2025-07-14 15:25:55.065247+00 f t TOTAL 50000.00 3 3578 \N +135888 2025-07-14 15:25:55.066181+00 2025-07-14 15:25:55.066187+00 f t ADELANTO 10000.00 4 3578 \N +140173 2025-07-16 00:04:29.421663+00 2025-07-16 00:04:29.42168+00 f t SUBTOTAL 49500.00 1 3681 \N +140174 2025-07-16 00:04:29.4237+00 2025-07-16 00:04:29.423708+00 f t DESCUENTO 0.00 2 3681 \N +140175 2025-07-16 00:04:29.425249+00 2025-07-16 00:04:29.425255+00 f t TOTAL 49500.00 3 3681 \N +136909 2025-07-14 21:42:10.978311+00 2025-07-14 21:42:10.978322+00 f t SUBTOTAL 27500.00 1 3604 \N +136910 2025-07-14 21:42:10.980534+00 2025-07-14 21:42:10.980542+00 f t DESCUENTO 0.00 2 3604 \N +136911 2025-07-14 21:42:10.982217+00 2025-07-14 21:42:10.982227+00 f t TOTAL 27500.00 3 3604 \N +136912 2025-07-14 21:42:10.983692+00 2025-07-14 21:42:10.983701+00 f t ADELANTO 27500.00 4 3604 \N +140176 2025-07-16 00:04:29.426403+00 2025-07-16 00:04:29.426408+00 f t ADELANTO 11500.00 4 3681 \N +140325 2025-07-16 01:40:57.836632+00 2025-07-16 01:40:57.836642+00 f t SUBTOTAL 62000.00 1 3686 \N +140326 2025-07-16 01:40:57.838959+00 2025-07-16 01:40:57.838967+00 f t DESCUENTO 0.00 2 3686 \N +140327 2025-07-16 01:40:57.84045+00 2025-07-16 01:40:57.840458+00 f t TOTAL 62000.00 3 3686 \N +137057 2025-07-14 23:19:24.233477+00 2025-07-14 23:19:24.233486+00 f t SUBTOTAL 123500.00 1 3608 \N +137058 2025-07-14 23:19:24.234962+00 2025-07-14 23:19:24.234972+00 f t DESCUENTO 0.00 2 3608 \N +137059 2025-07-14 23:19:24.236051+00 2025-07-14 23:19:24.236057+00 f t TOTAL 123500.00 3 3608 \N +137060 2025-07-14 23:19:24.237163+00 2025-07-14 23:19:24.237169+00 f t ADELANTO 26000.00 4 3608 \N +140328 2025-07-16 01:40:57.841849+00 2025-07-16 01:40:57.841857+00 f t ADELANTO 12000.00 4 3686 \N +135945 2025-07-14 15:28:08.245829+00 2025-07-14 15:28:08.245838+00 f t SUBTOTAL 54000.00 1 3579 \N +135946 2025-07-14 15:28:08.24775+00 2025-07-14 15:28:08.247758+00 f t DESCUENTO 0.00 2 3579 \N +135947 2025-07-14 15:28:08.249577+00 2025-07-14 15:28:08.249588+00 f t TOTAL 54000.00 3 3579 \N +135948 2025-07-14 15:28:08.251516+00 2025-07-14 15:28:08.251528+00 f t ADELANTO 21500.00 4 3579 \N +137341 2025-07-15 01:13:58.759247+00 2025-07-15 01:13:58.759255+00 f t SUBTOTAL 190000.00 1 3615 \N +137342 2025-07-15 01:13:58.761054+00 2025-07-15 01:13:58.761061+00 f t DESCUENTO 0.00 2 3615 \N +137343 2025-07-15 01:13:58.76223+00 2025-07-15 01:13:58.762236+00 f t TOTAL 190000.00 3 3615 \N +137344 2025-07-15 01:13:58.763439+00 2025-07-15 01:13:58.763444+00 f t ADELANTO 20000.00 4 3615 \N +140805 2025-07-16 05:39:00.012584+00 2025-07-16 05:39:00.012593+00 f t SUBTOTAL 0.00 1 3696 \N +140806 2025-07-16 05:39:00.013956+00 2025-07-16 05:39:00.013963+00 f t DESCUENTO 0.00 2 3696 \N +140807 2025-07-16 05:39:00.015487+00 2025-07-16 05:39:00.015495+00 f t TOTAL 0.00 3 3696 \N +140808 2025-07-16 05:39:00.016756+00 2025-07-16 05:39:00.016762+00 f t ADELANTO 0.00 4 3696 \N +140849 2025-07-16 08:46:25.897648+00 2025-07-16 08:46:25.897658+00 f t SUBTOTAL 49500.00 1 3699 \N +135985 2025-07-14 15:30:40.41793+00 2025-07-14 15:30:40.417944+00 f t SUBTOTAL 0.00 1 3580 \N +135986 2025-07-14 15:30:40.420451+00 2025-07-14 15:30:40.420461+00 f t DESCUENTO 0.00 2 3580 \N +135987 2025-07-14 15:30:40.422084+00 2025-07-14 15:30:40.422094+00 f t TOTAL 0.00 3 3580 \N +135988 2025-07-14 15:30:40.424167+00 2025-07-14 15:30:40.424175+00 f t ADELANTO 0.00 4 3580 \N +140850 2025-07-16 08:46:25.899758+00 2025-07-16 08:46:25.89977+00 f t DESCUENTO 0.00 2 3699 \N +140851 2025-07-16 08:46:25.901489+00 2025-07-16 08:46:25.901496+00 f t TOTAL 49500.00 3 3699 \N +137589 2025-07-15 02:31:51.48118+00 2025-07-15 02:31:51.481191+00 f t SUBTOTAL 0.00 1 3620 \N +137590 2025-07-15 02:31:51.483171+00 2025-07-15 02:31:51.48318+00 f t DESCUENTO 0.00 2 3620 \N +135993 2025-07-14 15:50:17.477582+00 2025-07-14 15:50:17.47759+00 f t SUBTOTAL 0.00 1 3581 \N +135994 2025-07-14 15:50:17.47916+00 2025-07-14 15:50:17.479167+00 f t DESCUENTO 0.00 2 3581 \N +135995 2025-07-14 15:50:17.480536+00 2025-07-14 15:50:17.480544+00 f t TOTAL 0.00 3 3581 \N +135996 2025-07-14 15:50:17.481662+00 2025-07-14 15:50:17.481667+00 f t ADELANTO 0.00 4 3581 \N +137591 2025-07-15 02:31:51.484414+00 2025-07-15 02:31:51.484421+00 f t TOTAL 0.00 3 3620 \N +137592 2025-07-15 02:31:51.485681+00 2025-07-15 02:31:51.485688+00 f t ADELANTO 0.00 4 3620 \N +140852 2025-07-16 08:46:25.903222+00 2025-07-16 08:46:25.903231+00 f t ADELANTO 11500.00 4 3699 \N +136021 2025-07-14 16:03:10.513731+00 2025-07-14 16:03:10.513743+00 f t SUBTOTAL 49500.00 1 3582 \N +136022 2025-07-14 16:03:10.515767+00 2025-07-14 16:03:10.51578+00 f t DESCUENTO 0.00 2 3582 \N +136023 2025-07-14 16:03:10.51802+00 2025-07-14 16:03:10.518032+00 f t TOTAL 49500.00 3 3582 \N +136024 2025-07-14 16:03:10.519562+00 2025-07-14 16:03:10.519572+00 f t ADELANTO 11500.00 4 3582 \N +137909 2025-07-15 12:31:44.974421+00 2025-07-15 12:31:44.974431+00 f t SUBTOTAL 0.00 1 3631 \N +137910 2025-07-15 12:31:44.976698+00 2025-07-15 12:31:44.976706+00 f t DESCUENTO 0.00 2 3631 \N +137911 2025-07-15 12:31:44.978023+00 2025-07-15 12:31:44.97803+00 f t TOTAL 0.00 3 3631 \N +137912 2025-07-15 12:31:44.979157+00 2025-07-15 12:31:44.979165+00 f t ADELANTO 0.00 4 3631 \N +136057 2025-07-14 16:09:17.413755+00 2025-07-14 16:09:17.413764+00 f t SUBTOTAL 42000.00 1 3583 \N +136058 2025-07-14 16:09:17.415431+00 2025-07-14 16:09:17.415439+00 f t DESCUENTO 0.00 2 3583 \N +136059 2025-07-14 16:09:17.416924+00 2025-07-14 16:09:17.416931+00 f t TOTAL 42000.00 3 3583 \N +136060 2025-07-14 16:09:17.418074+00 2025-07-14 16:09:17.41808+00 f t ADELANTO 9500.00 4 3583 \N +138289 2025-07-15 13:29:32.42936+00 2025-07-15 13:29:32.42937+00 f t SUBTOTAL 114700.00 1 3637 \N +138290 2025-07-15 13:29:32.431509+00 2025-07-15 13:29:32.431517+00 f t DESCUENTO 0.00 2 3637 \N +138291 2025-07-15 13:29:32.434187+00 2025-07-15 13:29:32.434196+00 f t TOTAL 114700.00 3 3637 \N +138292 2025-07-15 13:29:32.4357+00 2025-07-15 13:29:32.43571+00 f t ADELANTO 71200.00 4 3637 \N +138457 2025-07-15 13:57:56.651647+00 2025-07-15 13:57:56.651655+00 f t SUBTOTAL 55000.00 1 3640 \N +138458 2025-07-15 13:57:56.653226+00 2025-07-15 13:57:56.653233+00 f t DESCUENTO 0.00 2 3640 \N +138459 2025-07-15 13:57:56.654422+00 2025-07-15 13:57:56.654428+00 f t TOTAL 55000.00 3 3640 \N +138460 2025-07-15 13:57:56.655555+00 2025-07-15 13:57:56.655561+00 f t ADELANTO 12500.00 4 3640 \N +136153 2025-07-14 17:08:13.042066+00 2025-07-14 17:08:13.042078+00 f t SUBTOTAL 50000.00 1 3584 \N +136154 2025-07-14 17:08:13.043875+00 2025-07-14 17:08:13.043881+00 f t DESCUENTO 0.00 2 3584 \N +136155 2025-07-14 17:08:13.045197+00 2025-07-14 17:08:13.045203+00 f t TOTAL 50000.00 3 3584 \N +136156 2025-07-14 17:08:13.046177+00 2025-07-14 17:08:13.046182+00 f t ADELANTO 10000.00 4 3584 \N +143377 2025-07-17 13:42:48.061167+00 2025-07-17 13:42:48.061177+00 f t SUBTOTAL 117000.00 1 3770 \N +143378 2025-07-17 13:42:48.062922+00 2025-07-17 13:42:48.062929+00 f t DESCUENTO 0.00 2 3770 \N +143379 2025-07-17 13:42:48.064356+00 2025-07-17 13:42:48.064362+00 f t TOTAL 117000.00 3 3770 \N +143380 2025-07-17 13:42:48.065534+00 2025-07-17 13:42:48.065539+00 f t ADELANTO 24500.00 4 3770 \N +140069 2025-07-15 21:57:19.53623+00 2025-07-15 21:57:19.53624+00 f t SUBTOTAL 49500.00 1 3679 \N +140070 2025-07-15 21:57:19.540657+00 2025-07-15 21:57:19.540667+00 f t DESCUENTO 0.00 2 3679 \N +140071 2025-07-15 21:57:19.542321+00 2025-07-15 21:57:19.542329+00 f t TOTAL 49500.00 3 3679 \N +140072 2025-07-15 21:57:19.543865+00 2025-07-15 21:57:19.543872+00 f t ADELANTO 11500.00 4 3679 \N +136193 2025-07-14 17:16:18.387445+00 2025-07-14 17:16:18.387457+00 f t SUBTOTAL 70000.00 1 3585 \N +136194 2025-07-14 17:16:18.38957+00 2025-07-14 17:16:18.38958+00 f t DESCUENTO 0.00 2 3585 \N +136195 2025-07-14 17:16:18.391093+00 2025-07-14 17:16:18.3911+00 f t TOTAL 70000.00 3 3585 \N +136196 2025-07-14 17:16:18.392267+00 2025-07-14 17:16:18.392275+00 f t ADELANTO 15000.00 4 3585 \N +136917 2025-07-14 21:51:59.639927+00 2025-07-14 21:51:59.639937+00 f t SUBTOTAL 0.00 1 3605 \N +136918 2025-07-14 21:51:59.641335+00 2025-07-14 21:51:59.641341+00 f t DESCUENTO 0.00 2 3605 \N +136919 2025-07-14 21:51:59.642445+00 2025-07-14 21:51:59.64245+00 f t TOTAL 0.00 3 3605 \N +136920 2025-07-14 21:51:59.64352+00 2025-07-14 21:51:59.643526+00 f t ADELANTO 0.00 4 3605 \N +140181 2025-07-16 00:19:47.982724+00 2025-07-16 00:19:47.982734+00 f t SUBTOTAL 0.00 1 3682 \N +140182 2025-07-16 00:19:47.98414+00 2025-07-16 00:19:47.984147+00 f t DESCUENTO 0.00 2 3682 \N +140183 2025-07-16 00:19:47.985292+00 2025-07-16 00:19:47.985298+00 f t TOTAL 0.00 3 3682 \N +140184 2025-07-16 00:19:47.986296+00 2025-07-16 00:19:47.986302+00 f t ADELANTO 0.00 4 3682 \N +140333 2025-07-16 01:42:24.176925+00 2025-07-16 01:42:24.17694+00 f t SUBTOTAL 0.00 1 3687 \N +140334 2025-07-16 01:42:24.178623+00 2025-07-16 01:42:24.178633+00 f t DESCUENTO 0.00 2 3687 \N +140335 2025-07-16 01:42:24.180062+00 2025-07-16 01:42:24.180072+00 f t TOTAL 0.00 3 3687 \N +140336 2025-07-16 01:42:24.181591+00 2025-07-16 01:42:24.181602+00 f t ADELANTO 0.00 4 3687 \N +137133 2025-07-14 23:27:29.843271+00 2025-07-14 23:27:29.843281+00 f t SUBTOTAL 0.00 1 3610 \N +137134 2025-07-14 23:27:29.845424+00 2025-07-14 23:27:29.845434+00 f t DESCUENTO 0.00 2 3610 \N +137135 2025-07-14 23:27:29.847012+00 2025-07-14 23:27:29.84702+00 f t TOTAL 0.00 3 3610 \N +137136 2025-07-14 23:27:29.848375+00 2025-07-14 23:27:29.848383+00 f t ADELANTO 0.00 4 3610 \N +140465 2025-07-16 01:55:11.314029+00 2025-07-16 01:55:11.314042+00 f t SUBTOTAL 94500.00 1 3690 \N +140466 2025-07-16 01:55:11.315998+00 2025-07-16 01:55:11.316006+00 f t DESCUENTO 0.00 2 3690 \N +140467 2025-07-16 01:55:11.318259+00 2025-07-16 01:55:11.318267+00 f t TOTAL 94500.00 3 3690 \N +140468 2025-07-16 01:55:11.319758+00 2025-07-16 01:55:11.319768+00 f t ADELANTO 26500.00 4 3690 \N +136249 2025-07-14 17:32:32.75512+00 2025-07-14 17:32:32.755152+00 f t SUBTOTAL 0.00 1 3586 \N +136250 2025-07-14 17:32:32.756737+00 2025-07-14 17:32:32.756743+00 f t DESCUENTO 0.00 2 3586 \N +136251 2025-07-14 17:32:32.757843+00 2025-07-14 17:32:32.757849+00 f t TOTAL 0.00 3 3586 \N +136252 2025-07-14 17:32:32.758973+00 2025-07-14 17:32:32.758979+00 f t ADELANTO 0.00 4 3586 \N +136257 2025-07-14 17:37:29.979392+00 2025-07-14 17:37:29.979403+00 f t SUBTOTAL 0.00 1 3587 \N +136258 2025-07-14 17:37:29.981093+00 2025-07-14 17:37:29.981101+00 f t DESCUENTO 0.00 2 3587 \N +136259 2025-07-14 17:37:29.982685+00 2025-07-14 17:37:29.982692+00 f t TOTAL 0.00 3 3587 \N +136260 2025-07-14 17:37:29.984365+00 2025-07-14 17:37:29.984373+00 f t ADELANTO 0.00 4 3587 \N +137349 2025-07-15 01:16:15.848418+00 2025-07-15 01:16:15.848431+00 f t SUBTOTAL 0.00 1 3616 \N +137350 2025-07-15 01:16:15.850226+00 2025-07-15 01:16:15.850235+00 f t DESCUENTO 0.00 2 3616 \N +137351 2025-07-15 01:16:15.851958+00 2025-07-15 01:16:15.851969+00 f t TOTAL 0.00 3 3616 \N +137352 2025-07-15 01:16:15.853596+00 2025-07-15 01:16:15.853606+00 f t ADELANTO 0.00 4 3616 \N +136273 2025-07-14 17:39:42.383253+00 2025-07-14 17:39:42.383263+00 f t SUBTOTAL 0.00 1 3589 \N +136274 2025-07-14 17:39:42.384574+00 2025-07-14 17:39:42.384581+00 f t DESCUENTO 0.00 2 3589 \N +136275 2025-07-14 17:39:42.385606+00 2025-07-14 17:39:42.385611+00 f t TOTAL 0.00 3 3589 \N +136276 2025-07-14 17:39:42.386559+00 2025-07-14 17:39:42.386564+00 f t ADELANTO 0.00 4 3589 \N +136305 2025-07-14 17:40:39.997044+00 2025-07-14 17:40:39.997057+00 f t SUBTOTAL 27500.00 1 3588 \N +136306 2025-07-14 17:40:39.99885+00 2025-07-14 17:40:39.998859+00 f t DESCUENTO 0.00 2 3588 \N +136307 2025-07-14 17:40:40.000307+00 2025-07-14 17:40:40.000315+00 f t TOTAL 27500.00 3 3588 \N +136308 2025-07-14 17:40:40.001474+00 2025-07-14 17:40:40.001481+00 f t ADELANTO 27500.00 4 3588 \N +137845 2025-07-15 11:13:02.643574+00 2025-07-15 11:13:02.643589+00 f t SUBTOTAL 49500.00 1 3628 \N +137846 2025-07-15 11:13:02.646098+00 2025-07-15 11:13:02.64611+00 f t DESCUENTO 0.00 2 3628 \N +137847 2025-07-15 11:13:02.648863+00 2025-07-15 11:13:02.648875+00 f t TOTAL 49500.00 3 3628 \N +137848 2025-07-15 11:13:02.651082+00 2025-07-15 11:13:02.651094+00 f t ADELANTO 11500.00 4 3628 \N +137881 2025-07-15 11:57:52.220047+00 2025-07-15 11:57:52.220056+00 f t SUBTOTAL 70000.00 1 3630 \N +137882 2025-07-15 11:57:52.221962+00 2025-07-15 11:57:52.22197+00 f t DESCUENTO 0.00 2 3630 \N +137883 2025-07-15 11:57:52.223239+00 2025-07-15 11:57:52.223246+00 f t TOTAL 70000.00 3 3630 \N +137884 2025-07-15 11:57:52.2243+00 2025-07-15 11:57:52.224306+00 f t ADELANTO 15000.00 4 3630 \N +137917 2025-07-15 12:39:23.091399+00 2025-07-15 12:39:23.091409+00 f t SUBTOTAL 0.00 1 3632 \N +137918 2025-07-15 12:39:23.09334+00 2025-07-15 12:39:23.093352+00 f t DESCUENTO 0.00 2 3632 \N +137919 2025-07-15 12:39:23.094954+00 2025-07-15 12:39:23.094964+00 f t TOTAL 0.00 3 3632 \N +136341 2025-07-14 17:43:15.832691+00 2025-07-14 17:43:15.832705+00 f t SUBTOTAL 0.00 1 3590 \N +136342 2025-07-14 17:43:15.834935+00 2025-07-14 17:43:15.834945+00 f t DESCUENTO 0.00 2 3590 \N +136343 2025-07-14 17:43:15.836528+00 2025-07-14 17:43:15.836538+00 f t TOTAL 0.00 3 3590 \N +136344 2025-07-14 17:43:15.837982+00 2025-07-14 17:43:15.837991+00 f t ADELANTO 0.00 4 3590 \N +137920 2025-07-15 12:39:23.09636+00 2025-07-15 12:39:23.096369+00 f t ADELANTO 0.00 4 3632 \N +138297 2025-07-15 13:47:00.468779+00 2025-07-15 13:47:00.468793+00 f t SUBTOTAL 0.00 1 3638 \N +138298 2025-07-15 13:47:00.470638+00 2025-07-15 13:47:00.47065+00 f t DESCUENTO 0.00 2 3638 \N +138299 2025-07-15 13:47:00.472197+00 2025-07-15 13:47:00.472208+00 f t TOTAL 0.00 3 3638 \N +138300 2025-07-15 13:47:00.474004+00 2025-07-15 13:47:00.474014+00 f t ADELANTO 0.00 4 3638 \N +138405 2025-07-15 13:53:36.408857+00 2025-07-15 13:53:36.408866+00 f t SUBTOTAL 144000.00 1 3639 \N +138406 2025-07-15 13:53:36.4105+00 2025-07-15 13:53:36.410508+00 f t DESCUENTO 0.00 2 3639 \N +138407 2025-07-15 13:53:36.41171+00 2025-07-15 13:53:36.411716+00 f t TOTAL 144000.00 3 3639 \N +138408 2025-07-15 13:53:36.412753+00 2025-07-15 13:53:36.412758+00 f t ADELANTO 38000.00 4 3639 \N +146564 2025-07-18 23:19:14.57047+00 2025-07-18 23:19:14.570478+00 f t ADELANTO 10000.00 4 3848 \N +177267 2025-07-31 19:33:35.44375+00 2025-07-31 19:33:35.443761+00 f t TOTAL 49500.00 3 4655 \N +143209 2025-07-17 12:42:52.951372+00 2025-07-17 12:42:52.951801+00 f t SUBTOTAL 0.00 1 3765 \N +143210 2025-07-17 12:42:52.958071+00 2025-07-17 12:42:52.958081+00 f t DESCUENTO 0.00 2 3765 \N +143211 2025-07-17 12:42:52.959406+00 2025-07-17 12:42:52.959414+00 f t TOTAL 0.00 3 3765 \N +143212 2025-07-17 12:42:52.96057+00 2025-07-17 12:42:52.960576+00 f t ADELANTO 0.00 4 3765 \N +138501 2025-07-15 14:01:00.899284+00 2025-07-15 14:01:00.899297+00 f t SUBTOTAL 72000.00 1 3641 \N +138502 2025-07-15 14:01:00.901406+00 2025-07-15 14:01:00.901418+00 f t DESCUENTO 0.00 2 3641 \N +138503 2025-07-15 14:01:00.903168+00 2025-07-15 14:01:00.903179+00 f t TOTAL 72000.00 3 3641 \N +138504 2025-07-15 14:01:00.904754+00 2025-07-15 14:01:00.904763+00 f t ADELANTO 19000.00 4 3641 \N +143385 2025-07-17 13:57:36.410441+00 2025-07-17 13:57:36.41045+00 f t SUBTOTAL 0.00 1 3771 \N +143386 2025-07-17 13:57:36.411825+00 2025-07-17 13:57:36.411832+00 f t DESCUENTO 0.00 2 3771 \N +143387 2025-07-17 13:57:36.413155+00 2025-07-17 13:57:36.41316+00 f t TOTAL 0.00 3 3771 \N +143388 2025-07-17 13:57:36.414295+00 2025-07-17 13:57:36.414301+00 f t ADELANTO 0.00 4 3771 \N +138509 2025-07-15 14:01:09.000122+00 2025-07-15 14:01:09.000136+00 f t SUBTOTAL 0.00 1 3642 \N +138510 2025-07-15 14:01:09.002288+00 2025-07-15 14:01:09.002299+00 f t DESCUENTO 0.00 2 3642 \N +138511 2025-07-15 14:01:09.003974+00 2025-07-15 14:01:09.003983+00 f t TOTAL 0.00 3 3642 \N +138512 2025-07-15 14:01:09.00543+00 2025-07-15 14:01:09.005439+00 f t ADELANTO 0.00 4 3642 \N +143478 2025-07-17 14:23:30.777813+00 2025-07-17 14:23:30.77782+00 f t DESCUENTO 0.00 2 3774 \N +143479 2025-07-17 14:23:30.779801+00 2025-07-17 14:23:30.779811+00 f t TOTAL 0.00 3 3774 \N +143480 2025-07-17 14:23:30.781001+00 2025-07-17 14:23:30.781007+00 f t ADELANTO 0.00 4 3774 \N +143617 2025-07-17 15:45:44.398444+00 2025-07-17 15:45:44.398454+00 f t SUBTOTAL 62000.00 1 3777 \N +143618 2025-07-17 15:45:44.400175+00 2025-07-17 15:45:44.400183+00 f t DESCUENTO 0.00 2 3777 \N +143619 2025-07-17 15:45:44.401444+00 2025-07-17 15:45:44.401453+00 f t TOTAL 62000.00 3 3777 \N +143620 2025-07-17 15:45:44.402741+00 2025-07-17 15:45:44.402747+00 f t ADELANTO 12000.00 4 3777 \N +143861 2025-07-17 16:14:56.89396+00 2025-07-17 16:14:56.893969+00 f t SUBTOTAL 0.00 1 3782 \N +143862 2025-07-17 16:14:56.895867+00 2025-07-17 16:14:56.895875+00 f t DESCUENTO 0.00 2 3782 \N +143863 2025-07-17 16:14:56.896997+00 2025-07-17 16:14:56.897003+00 f t TOTAL 0.00 3 3782 \N +143864 2025-07-17 16:14:56.898058+00 2025-07-17 16:14:56.898064+00 f t ADELANTO 0.00 4 3782 \N +138585 2025-07-15 14:11:34.110546+00 2025-07-15 14:11:34.11056+00 f t SUBTOTAL 0.00 1 3643 \N +138586 2025-07-15 14:11:34.11324+00 2025-07-15 14:11:34.113252+00 f t DESCUENTO 0.00 2 3643 \N +138587 2025-07-15 14:11:34.115301+00 2025-07-15 14:11:34.11531+00 f t TOTAL 0.00 3 3643 \N +138588 2025-07-15 14:11:34.117042+00 2025-07-15 14:11:34.117053+00 f t ADELANTO 0.00 4 3643 \N +144009 2025-07-17 17:37:35.014578+00 2025-07-17 17:37:35.014588+00 f t SUBTOTAL 0.00 1 3787 \N +144010 2025-07-17 17:37:35.016261+00 2025-07-17 17:37:35.016272+00 f t DESCUENTO 0.00 2 3787 \N +144011 2025-07-17 17:37:35.017729+00 2025-07-17 17:37:35.017737+00 f t TOTAL 0.00 3 3787 \N +144012 2025-07-17 17:37:35.019055+00 2025-07-17 17:37:35.019062+00 f t ADELANTO 0.00 4 3787 \N +140813 2025-07-16 05:47:39.757394+00 2025-07-16 05:47:39.757404+00 f t SUBTOTAL 0.00 1 3697 \N +140814 2025-07-16 05:47:39.759043+00 2025-07-16 05:47:39.75905+00 f t DESCUENTO 0.00 2 3697 \N +140815 2025-07-16 05:47:39.7603+00 2025-07-16 05:47:39.760307+00 f t TOTAL 0.00 3 3697 \N +140816 2025-07-16 05:47:39.761379+00 2025-07-16 05:47:39.761384+00 f t ADELANTO 0.00 4 3697 \N +144217 2025-07-17 20:35:08.230043+00 2025-07-17 20:35:08.230057+00 f t SUBTOTAL 49500.00 1 3791 \N +144218 2025-07-17 20:35:08.233116+00 2025-07-17 20:35:08.233128+00 f t DESCUENTO 0.00 2 3791 \N +138621 2025-07-15 14:12:52.096454+00 2025-07-15 14:12:52.096465+00 f t SUBTOTAL 0.00 1 3645 \N +138622 2025-07-15 14:12:52.098367+00 2025-07-15 14:12:52.098376+00 f t DESCUENTO 0.00 2 3645 \N +138623 2025-07-15 14:12:52.099912+00 2025-07-15 14:12:52.09992+00 f t TOTAL 0.00 3 3645 \N +138624 2025-07-15 14:12:52.10123+00 2025-07-15 14:12:52.101237+00 f t ADELANTO 0.00 4 3645 \N +144219 2025-07-17 20:35:08.234839+00 2025-07-17 20:35:08.234849+00 f t TOTAL 49500.00 3 3791 \N +144220 2025-07-17 20:35:08.236454+00 2025-07-17 20:35:08.236463+00 f t ADELANTO 11500.00 4 3791 \N +138633 2025-07-15 14:15:06.816515+00 2025-07-15 14:15:06.816533+00 f t SUBTOTAL 0.00 1 3644 \N +138634 2025-07-15 14:15:06.819342+00 2025-07-15 14:15:06.819356+00 f t DESCUENTO 0.00 2 3644 \N +138635 2025-07-15 14:15:06.821233+00 2025-07-15 14:15:06.821244+00 f t TOTAL 0.00 3 3644 \N +138636 2025-07-15 14:15:06.822898+00 2025-07-15 14:15:06.822907+00 f t ADELANTO 0.00 4 3644 \N +141041 2025-07-16 12:40:38.670247+00 2025-07-16 12:40:38.670258+00 f t SUBTOTAL 0.00 1 3704 \N +141042 2025-07-16 12:40:38.672245+00 2025-07-16 12:40:38.672257+00 f t DESCUENTO 0.00 2 3704 \N +141043 2025-07-16 12:40:38.674108+00 2025-07-16 12:40:38.674118+00 f t TOTAL 0.00 3 3704 \N +141044 2025-07-16 12:40:38.6759+00 2025-07-16 12:40:38.67591+00 f t ADELANTO 0.00 4 3704 \N +138677 2025-07-15 14:16:58.900581+00 2025-07-15 14:16:58.900595+00 f t SUBTOTAL 72000.00 1 3646 \N +138678 2025-07-15 14:16:58.902737+00 2025-07-15 14:16:58.90275+00 f t DESCUENTO 0.00 2 3646 \N +138679 2025-07-15 14:16:58.904685+00 2025-07-15 14:16:58.904697+00 f t TOTAL 72000.00 3 3646 \N +138680 2025-07-15 14:16:58.906457+00 2025-07-15 14:16:58.906469+00 f t ADELANTO 19000.00 4 3646 \N +141301 2025-07-16 16:34:44.017698+00 2025-07-16 16:34:44.01771+00 f t SUBTOTAL 42000.00 1 3713 \N +141302 2025-07-16 16:34:44.019693+00 2025-07-16 16:34:44.019702+00 f t DESCUENTO 0.00 2 3713 \N +141303 2025-07-16 16:34:44.020974+00 2025-07-16 16:34:44.02098+00 f t TOTAL 42000.00 3 3713 \N +141304 2025-07-16 16:34:44.022074+00 2025-07-16 16:34:44.022082+00 f t ADELANTO 9500.00 4 3713 \N +144909 2025-07-17 23:46:15.27716+00 2025-07-17 23:46:15.277168+00 f t SUBTOTAL 86500.00 1 3804 \N +144910 2025-07-17 23:46:15.27916+00 2025-07-17 23:46:15.279171+00 f t DESCUENTO 0.00 2 3804 \N +144911 2025-07-17 23:46:15.280486+00 2025-07-17 23:46:15.280492+00 f t TOTAL 86500.00 3 3804 \N +141529 2025-07-16 18:56:01.137774+00 2025-07-16 18:56:01.137784+00 f t SUBTOTAL 0.00 1 3721 \N +141530 2025-07-16 18:56:01.139302+00 2025-07-16 18:56:01.139308+00 f t DESCUENTO 0.00 2 3721 \N +141531 2025-07-16 18:56:01.140634+00 2025-07-16 18:56:01.140642+00 f t TOTAL 0.00 3 3721 \N +141532 2025-07-16 18:56:01.141939+00 2025-07-16 18:56:01.141946+00 f t ADELANTO 0.00 4 3721 \N +144912 2025-07-17 23:46:15.281624+00 2025-07-17 23:46:15.28163+00 f t ADELANTO 18500.00 4 3804 \N +138741 2025-07-15 14:24:03.347883+00 2025-07-15 14:24:03.347945+00 f t SUBTOTAL 0.00 1 3647 \N +138742 2025-07-15 14:24:03.351663+00 2025-07-15 14:24:03.351676+00 f t DESCUENTO 0.00 2 3647 \N +138743 2025-07-15 14:24:03.354771+00 2025-07-15 14:24:03.354781+00 f t TOTAL 0.00 3 3647 \N +138744 2025-07-15 14:24:03.356794+00 2025-07-15 14:24:03.356805+00 f t ADELANTO 0.00 4 3647 \N +138749 2025-07-15 14:33:49.404364+00 2025-07-15 14:33:49.404373+00 f t SUBTOTAL 0.00 1 3648 \N +138750 2025-07-15 14:33:49.405917+00 2025-07-15 14:33:49.405928+00 f t DESCUENTO 0.00 2 3648 \N +138751 2025-07-15 14:33:49.407428+00 2025-07-15 14:33:49.407439+00 f t TOTAL 0.00 3 3648 \N +138752 2025-07-15 14:33:49.408868+00 2025-07-15 14:33:49.408878+00 f t ADELANTO 0.00 4 3648 \N +177268 2025-07-31 19:33:35.445464+00 2025-07-31 19:33:35.445473+00 f t ADELANTO 11500.00 4 4655 \N +143217 2025-07-17 13:12:37.111107+00 2025-07-17 13:12:37.111119+00 f t SUBTOTAL 0.00 1 3766 \N +143218 2025-07-17 13:12:37.112901+00 2025-07-17 13:12:37.112911+00 f t DESCUENTO 0.00 2 3766 \N +143219 2025-07-17 13:12:37.114288+00 2025-07-17 13:12:37.114295+00 f t TOTAL 0.00 3 3766 \N +143220 2025-07-17 13:12:37.115425+00 2025-07-17 13:12:37.115432+00 f t ADELANTO 0.00 4 3766 \N +143273 2025-07-17 13:35:58.822+00 2025-07-17 13:35:58.822008+00 f t SUBTOTAL 50000.00 1 3767 \N +143274 2025-07-17 13:35:58.823803+00 2025-07-17 13:35:58.82381+00 f t DESCUENTO 0.00 2 3767 \N +143275 2025-07-17 13:35:58.825185+00 2025-07-17 13:35:58.825192+00 f t TOTAL 50000.00 3 3767 \N +143276 2025-07-17 13:35:58.82646+00 2025-07-17 13:35:58.826465+00 f t ADELANTO 10000.00 4 3767 \N +140293 2025-07-16 01:21:06.613242+00 2025-07-16 01:21:06.613254+00 f t SUBTOTAL 27500.00 1 3685 \N +140294 2025-07-16 01:21:06.615706+00 2025-07-16 01:21:06.615717+00 f t DESCUENTO 0.00 2 3685 \N +140295 2025-07-16 01:21:06.617438+00 2025-07-16 01:21:06.617449+00 f t TOTAL 27500.00 3 3685 \N +140296 2025-07-16 01:21:06.619118+00 2025-07-16 01:21:06.619153+00 f t ADELANTO 27500.00 4 3685 \N +138825 2025-07-15 14:46:40.798923+00 2025-07-15 14:46:40.798931+00 f t SUBTOTAL 27500.00 1 3649 \N +138826 2025-07-15 14:46:40.800723+00 2025-07-15 14:46:40.800735+00 f t DESCUENTO 0.00 2 3649 \N +138827 2025-07-15 14:46:40.802262+00 2025-07-15 14:46:40.802271+00 f t TOTAL 27500.00 3 3649 \N +138828 2025-07-15 14:46:40.803627+00 2025-07-15 14:46:40.803635+00 f t ADELANTO 27500.00 4 3649 \N +138841 2025-07-15 15:18:31.957036+00 2025-07-15 15:18:31.957045+00 f t SUBTOTAL 0.00 1 3651 \N +138842 2025-07-15 15:18:31.958927+00 2025-07-15 15:18:31.958935+00 f t DESCUENTO 0.00 2 3651 \N +138843 2025-07-15 15:18:31.960702+00 2025-07-15 15:18:31.960711+00 f t TOTAL 0.00 3 3651 \N +138844 2025-07-15 15:18:31.962567+00 2025-07-15 15:18:31.962575+00 f t ADELANTO 0.00 4 3651 \N +140669 2025-07-16 04:24:40.80366+00 2025-07-16 04:24:40.803669+00 f t SUBTOTAL 42000.00 1 3693 \N +140670 2025-07-16 04:24:40.805199+00 2025-07-16 04:24:40.805206+00 f t DESCUENTO 0.00 2 3693 \N +140671 2025-07-16 04:24:40.806371+00 2025-07-16 04:24:40.806379+00 f t TOTAL 42000.00 3 3693 \N +140672 2025-07-16 04:24:40.807476+00 2025-07-16 04:24:40.807483+00 f t ADELANTO 9500.00 4 3693 \N +140821 2025-07-16 06:54:40.53506+00 2025-07-16 06:54:40.535068+00 f t SUBTOTAL 0.00 1 3698 \N +140822 2025-07-16 06:54:40.536406+00 2025-07-16 06:54:40.536413+00 f t DESCUENTO 0.00 2 3698 \N +140823 2025-07-16 06:54:40.537675+00 2025-07-16 06:54:40.537682+00 f t TOTAL 0.00 3 3698 \N +140824 2025-07-16 06:54:40.538748+00 2025-07-16 06:54:40.538757+00 f t ADELANTO 0.00 4 3698 \N +140865 2025-07-16 10:56:04.038162+00 2025-07-16 10:56:04.038177+00 f t SUBTOTAL 0.00 1 3701 \N +140866 2025-07-16 10:56:04.040178+00 2025-07-16 10:56:04.04019+00 f t DESCUENTO 0.00 2 3701 \N +140867 2025-07-16 10:56:04.041907+00 2025-07-16 10:56:04.04192+00 f t TOTAL 0.00 3 3701 \N +140868 2025-07-16 10:56:04.043606+00 2025-07-16 10:56:04.043617+00 f t ADELANTO 0.00 4 3701 \N +138885 2025-07-15 15:22:55.456624+00 2025-07-15 15:22:55.456637+00 f t SUBTOTAL 0.00 1 3650 \N +138886 2025-07-15 15:22:55.458914+00 2025-07-15 15:22:55.458925+00 f t DESCUENTO 0.00 2 3650 \N +138887 2025-07-15 15:22:55.460267+00 2025-07-15 15:22:55.460276+00 f t TOTAL 0.00 3 3650 \N +138888 2025-07-15 15:22:55.461548+00 2025-07-15 15:22:55.461557+00 f t ADELANTO 0.00 4 3650 \N +138909 2025-07-15 15:23:19.064331+00 2025-07-15 15:23:19.064345+00 f t SUBTOTAL 0.00 1 3652 \N +138910 2025-07-15 15:23:19.066723+00 2025-07-15 15:23:19.066736+00 f t DESCUENTO 0.00 2 3652 \N +138911 2025-07-15 15:23:19.068359+00 2025-07-15 15:23:19.068367+00 f t TOTAL 0.00 3 3652 \N +138912 2025-07-15 15:23:19.069727+00 2025-07-15 15:23:19.069734+00 f t ADELANTO 0.00 4 3652 \N +141273 2025-07-16 15:52:18.16929+00 2025-07-16 15:52:18.169301+00 f t SUBTOTAL 42000.00 1 3712 \N +138945 2025-07-15 15:23:55.238819+00 2025-07-15 15:23:55.23883+00 f t SUBTOTAL 0.00 1 3654 \N +138946 2025-07-15 15:23:55.240456+00 2025-07-15 15:23:55.240465+00 f t DESCUENTO 0.00 2 3654 \N +138947 2025-07-15 15:23:55.241773+00 2025-07-15 15:23:55.241781+00 f t TOTAL 0.00 3 3654 \N +138948 2025-07-15 15:23:55.242989+00 2025-07-15 15:23:55.242997+00 f t ADELANTO 0.00 4 3654 \N +141274 2025-07-16 15:52:18.171338+00 2025-07-16 15:52:18.171347+00 f t DESCUENTO 0.00 2 3712 \N +141275 2025-07-16 15:52:18.172914+00 2025-07-16 15:52:18.172921+00 f t TOTAL 42000.00 3 3712 \N +141276 2025-07-16 15:52:18.174169+00 2025-07-16 15:52:18.174177+00 f t ADELANTO 9500.00 4 3712 \N +141309 2025-07-16 16:47:59.986953+00 2025-07-16 16:47:59.986962+00 f t SUBTOTAL 0.00 1 3714 \N +141310 2025-07-16 16:47:59.988261+00 2025-07-16 16:47:59.988266+00 f t DESCUENTO 0.00 2 3714 \N +141311 2025-07-16 16:47:59.989341+00 2025-07-16 16:47:59.989347+00 f t TOTAL 0.00 3 3714 \N +141312 2025-07-16 16:47:59.990447+00 2025-07-16 16:47:59.990459+00 f t ADELANTO 0.00 4 3714 \N +141597 2025-07-16 19:22:54.653036+00 2025-07-16 19:22:54.653045+00 f t SUBTOTAL 42000.00 1 3723 \N +141598 2025-07-16 19:22:54.65471+00 2025-07-16 19:22:54.654717+00 f t DESCUENTO 0.00 2 3723 \N +141599 2025-07-16 19:22:54.655924+00 2025-07-16 19:22:54.655929+00 f t TOTAL 42000.00 3 3723 \N +141600 2025-07-16 19:22:54.656962+00 2025-07-16 19:22:54.656967+00 f t ADELANTO 9500.00 4 3723 \N +141633 2025-07-16 19:34:19.046333+00 2025-07-16 19:34:19.046343+00 f t SUBTOTAL 0.00 1 3724 \N +141634 2025-07-16 19:34:19.048495+00 2025-07-16 19:34:19.048502+00 f t DESCUENTO 0.00 2 3724 \N +141635 2025-07-16 19:34:19.049679+00 2025-07-16 19:34:19.049684+00 f t TOTAL 0.00 3 3724 \N +141636 2025-07-16 19:34:19.050808+00 2025-07-16 19:34:19.050813+00 f t ADELANTO 0.00 4 3724 \N +139009 2025-07-15 15:32:06.04736+00 2025-07-15 15:32:06.047369+00 f t SUBTOTAL 0.00 1 3655 \N +139010 2025-07-15 15:32:06.049403+00 2025-07-15 15:32:06.049412+00 f t DESCUENTO 0.00 2 3655 \N +139011 2025-07-15 15:32:06.051124+00 2025-07-15 15:32:06.051157+00 f t TOTAL 0.00 3 3655 \N +139012 2025-07-15 15:32:06.053016+00 2025-07-15 15:32:06.053024+00 f t ADELANTO 0.00 4 3655 \N +139017 2025-07-15 15:43:15.538451+00 2025-07-15 15:43:15.538465+00 f t SUBTOTAL 0.00 1 3656 \N +139018 2025-07-15 15:43:15.540162+00 2025-07-15 15:43:15.540171+00 f t DESCUENTO 0.00 2 3656 \N +139019 2025-07-15 15:43:15.541484+00 2025-07-15 15:43:15.541491+00 f t TOTAL 0.00 3 3656 \N +139020 2025-07-15 15:43:15.542671+00 2025-07-15 15:43:15.542677+00 f t ADELANTO 0.00 4 3656 \N +141753 2025-07-16 20:08:38.61139+00 2025-07-16 20:08:38.611399+00 f t SUBTOTAL 70000.00 1 3728 \N +139025 2025-07-15 15:43:30.068512+00 2025-07-15 15:43:30.068522+00 f t SUBTOTAL 0.00 1 3653 \N +139026 2025-07-15 15:43:30.07026+00 2025-07-15 15:43:30.070304+00 f t DESCUENTO 0.00 2 3653 \N +139027 2025-07-15 15:43:30.071687+00 2025-07-15 15:43:30.071694+00 f t TOTAL 0.00 3 3653 \N +139028 2025-07-15 15:43:30.072907+00 2025-07-15 15:43:30.072915+00 f t ADELANTO 0.00 4 3653 \N +141754 2025-07-16 20:08:38.61313+00 2025-07-16 20:08:38.613137+00 f t DESCUENTO 0.00 2 3728 \N +141755 2025-07-16 20:08:38.615693+00 2025-07-16 20:08:38.615701+00 f t TOTAL 70000.00 3 3728 \N +141756 2025-07-16 20:08:38.617247+00 2025-07-16 20:08:38.617254+00 f t ADELANTO 10000.00 4 3728 \N +139033 2025-07-15 15:47:00.056168+00 2025-07-15 15:47:00.056179+00 f t SUBTOTAL 0.00 1 3657 \N +139034 2025-07-15 15:47:00.057789+00 2025-07-15 15:47:00.057797+00 f t DESCUENTO 0.00 2 3657 \N +139035 2025-07-15 15:47:00.059312+00 2025-07-15 15:47:00.059321+00 f t TOTAL 0.00 3 3657 \N +139036 2025-07-15 15:47:00.06062+00 2025-07-15 15:47:00.060627+00 f t ADELANTO 0.00 4 3657 \N +185921 2025-08-04 20:29:04.952539+00 2025-08-04 20:29:04.952552+00 f t SUBTOTAL 27500.00 1 4880 \N +150045 2025-07-20 08:27:33.98189+00 2025-07-20 08:27:33.981898+00 f t SUBTOTAL 0.00 1 3930 \N +150046 2025-07-20 08:27:33.983262+00 2025-07-20 08:27:33.983269+00 f t DESCUENTO 0.00 2 3930 \N +150047 2025-07-20 08:27:33.984236+00 2025-07-20 08:27:33.984241+00 f t TOTAL 0.00 3 3930 \N +150048 2025-07-20 08:27:33.985072+00 2025-07-20 08:27:33.985078+00 f t ADELANTO 0.00 4 3930 \N +185922 2025-08-04 20:29:04.956052+00 2025-08-04 20:29:04.956067+00 f t DESCUENTO 0.00 2 4880 \N +146649 2025-07-19 00:28:04.669975+00 2025-07-19 00:28:04.669987+00 f t SUBTOTAL 0.00 1 3852 \N +146650 2025-07-19 00:28:04.671654+00 2025-07-19 00:28:04.671664+00 f t DESCUENTO 0.00 2 3852 \N +146651 2025-07-19 00:28:04.673421+00 2025-07-19 00:28:04.673431+00 f t TOTAL 0.00 3 3852 \N +146652 2025-07-19 00:28:04.674842+00 2025-07-19 00:28:04.67485+00 f t ADELANTO 0.00 4 3852 \N +140021 2025-07-15 21:56:02.155089+00 2025-07-15 21:56:02.1551+00 f t SUBTOTAL 0.00 1 3678 \N +140022 2025-07-15 21:56:02.157134+00 2025-07-15 21:56:02.157144+00 f t DESCUENTO 0.00 2 3678 \N +140023 2025-07-15 21:56:02.158527+00 2025-07-15 21:56:02.158534+00 f t TOTAL 0.00 3 3678 \N +140024 2025-07-15 21:56:02.159975+00 2025-07-15 21:56:02.159985+00 f t ADELANTO 0.00 4 3678 \N +146997 2025-07-19 03:34:24.882264+00 2025-07-19 03:34:24.882275+00 f t SUBTOTAL 0.00 1 3861 \N +140397 2025-07-16 01:54:01.570925+00 2025-07-16 01:54:01.570934+00 f t SUBTOTAL 111000.00 1 3689 \N +140398 2025-07-16 01:54:01.572908+00 2025-07-16 01:54:01.572916+00 f t DESCUENTO 0.00 2 3689 \N +140399 2025-07-16 01:54:01.574344+00 2025-07-16 01:54:01.574352+00 f t TOTAL 111000.00 3 3689 \N +140400 2025-07-16 01:54:01.575709+00 2025-07-16 01:54:01.575716+00 f t ADELANTO 23500.00 4 3689 \N +146998 2025-07-19 03:34:24.88417+00 2025-07-19 03:34:24.884179+00 f t DESCUENTO 0.00 2 3861 \N +146999 2025-07-19 03:34:24.885826+00 2025-07-19 03:34:24.885839+00 f t TOTAL 0.00 3 3861 \N +147000 2025-07-19 03:34:24.887612+00 2025-07-19 03:34:24.88762+00 f t ADELANTO 0.00 4 3861 \N +147053 2025-07-19 04:56:24.596085+00 2025-07-19 04:56:24.596096+00 f t SUBTOTAL 0.00 1 3863 \N +147054 2025-07-19 04:56:24.597603+00 2025-07-19 04:56:24.59761+00 f t DESCUENTO 0.00 2 3863 \N +147055 2025-07-19 04:56:24.598785+00 2025-07-19 04:56:24.598791+00 f t TOTAL 0.00 3 3863 \N +147056 2025-07-19 04:56:24.599801+00 2025-07-19 04:56:24.599807+00 f t ADELANTO 0.00 4 3863 \N +140557 2025-07-16 02:36:51.705187+00 2025-07-16 02:36:51.705197+00 f t SUBTOTAL 0.00 1 3691 \N +140558 2025-07-16 02:36:51.707314+00 2025-07-16 02:36:51.707323+00 f t DESCUENTO 0.00 2 3691 \N +140559 2025-07-16 02:36:51.708655+00 2025-07-16 02:36:51.708661+00 f t TOTAL 0.00 3 3691 \N +140560 2025-07-16 02:36:51.709827+00 2025-07-16 02:36:51.709834+00 f t ADELANTO 0.00 4 3691 \N +147269 2025-07-19 11:59:43.158005+00 2025-07-19 11:59:43.158013+00 f t SUBTOTAL 0.00 1 3869 \N +147270 2025-07-19 11:59:43.160015+00 2025-07-19 11:59:43.160021+00 f t DESCUENTO 0.00 2 3869 \N +147271 2025-07-19 11:59:43.161121+00 2025-07-19 11:59:43.161126+00 f t TOTAL 0.00 3 3869 \N +147272 2025-07-19 11:59:43.162138+00 2025-07-19 11:59:43.162143+00 f t ADELANTO 0.00 4 3869 \N +144017 2025-07-17 17:42:06.608149+00 2025-07-17 17:42:06.608162+00 f t SUBTOTAL 0.00 1 3788 \N +144018 2025-07-17 17:42:06.61026+00 2025-07-17 17:42:06.610274+00 f t DESCUENTO 0.00 2 3788 \N +144019 2025-07-17 17:42:06.612496+00 2025-07-17 17:42:06.612508+00 f t TOTAL 0.00 3 3788 \N +144020 2025-07-17 17:42:06.614219+00 2025-07-17 17:42:06.614227+00 f t ADELANTO 0.00 4 3788 \N +141081 2025-07-16 12:51:22.016161+00 2025-07-16 12:51:22.01617+00 f t SUBTOTAL 64500.00 1 3705 \N +141082 2025-07-16 12:51:22.017674+00 2025-07-16 12:51:22.017681+00 f t DESCUENTO 0.00 2 3705 \N +139193 2025-07-15 15:56:05.415566+00 2025-07-15 15:56:05.41558+00 f t SUBTOTAL 129500.00 1 3658 \N +139194 2025-07-15 15:56:05.417345+00 2025-07-15 15:56:05.417357+00 f t DESCUENTO 0.00 2 3658 \N +139195 2025-07-15 15:56:05.418696+00 2025-07-15 15:56:05.418706+00 f t TOTAL 129500.00 3 3658 \N +139196 2025-07-15 15:56:05.420066+00 2025-07-15 15:56:05.420074+00 f t ADELANTO 27000.00 4 3658 \N +141083 2025-07-16 12:51:22.018792+00 2025-07-16 12:51:22.018798+00 f t TOTAL 64500.00 3 3705 \N +141084 2025-07-16 12:51:22.019853+00 2025-07-16 12:51:22.019858+00 f t ADELANTO 17000.00 4 3705 \N +141245 2025-07-16 15:29:26.831728+00 2025-07-16 15:29:26.831741+00 f t SUBTOTAL 0.00 1 3711 \N +141246 2025-07-16 15:29:26.833942+00 2025-07-16 15:29:26.833949+00 f t DESCUENTO 0.00 2 3711 \N +141247 2025-07-16 15:29:26.835449+00 2025-07-16 15:29:26.835455+00 f t TOTAL 0.00 3 3711 \N +141248 2025-07-16 15:29:26.83687+00 2025-07-16 15:29:26.836875+00 f t ADELANTO 0.00 4 3711 \N +139221 2025-07-15 16:30:41.608885+00 2025-07-15 16:30:41.608898+00 f t SUBTOTAL 50000.00 1 3659 \N +139222 2025-07-15 16:30:41.610795+00 2025-07-15 16:30:41.610805+00 f t DESCUENTO 0.00 2 3659 \N +139223 2025-07-15 16:30:41.61222+00 2025-07-15 16:30:41.612227+00 f t TOTAL 50000.00 3 3659 \N +139224 2025-07-15 16:30:41.613543+00 2025-07-15 16:30:41.61355+00 f t ADELANTO 10000.00 4 3659 \N +139229 2025-07-15 17:01:52.44255+00 2025-07-15 17:01:52.442564+00 f t SUBTOTAL 0.00 1 3660 \N +139230 2025-07-15 17:01:52.446322+00 2025-07-15 17:01:52.446337+00 f t DESCUENTO 0.00 2 3660 \N +139231 2025-07-15 17:01:52.448828+00 2025-07-15 17:01:52.448842+00 f t TOTAL 0.00 3 3660 \N +139232 2025-07-15 17:01:52.450973+00 2025-07-15 17:01:52.450987+00 f t ADELANTO 0.00 4 3660 \N +141317 2025-07-16 16:49:30.712851+00 2025-07-16 16:49:30.712859+00 f t SUBTOTAL 0.00 1 3715 \N +141318 2025-07-16 16:49:30.714307+00 2025-07-16 16:49:30.714313+00 f t DESCUENTO 0.00 2 3715 \N +141319 2025-07-16 16:49:30.715586+00 2025-07-16 16:49:30.715592+00 f t TOTAL 0.00 3 3715 \N +141320 2025-07-16 16:49:30.716674+00 2025-07-16 16:49:30.716679+00 f t ADELANTO 0.00 4 3715 \N +144309 2025-07-17 22:02:32.856201+00 2025-07-17 22:02:32.856211+00 f t SUBTOTAL 0.00 1 3795 \N +144310 2025-07-17 22:02:32.858424+00 2025-07-17 22:02:32.858433+00 f t DESCUENTO 0.00 2 3795 \N +144311 2025-07-17 22:02:32.859742+00 2025-07-17 22:02:32.859749+00 f t TOTAL 0.00 3 3795 \N +144312 2025-07-17 22:02:32.860905+00 2025-07-17 22:02:32.86091+00 f t ADELANTO 0.00 4 3795 \N +139261 2025-07-15 17:03:25.810351+00 2025-07-15 17:03:25.810361+00 f t SUBTOTAL 0.00 1 3662 \N +139262 2025-07-15 17:03:25.812282+00 2025-07-15 17:03:25.81229+00 f t DESCUENTO 0.00 2 3662 \N +139263 2025-07-15 17:03:25.81377+00 2025-07-15 17:03:25.813777+00 f t TOTAL 0.00 3 3662 \N +139264 2025-07-15 17:03:25.815191+00 2025-07-15 17:03:25.815199+00 f t ADELANTO 0.00 4 3662 \N +144417 2025-07-17 22:27:52.506366+00 2025-07-17 22:27:52.507811+00 f t SUBTOTAL 62000.00 1 3800 \N +144418 2025-07-17 22:27:52.561933+00 2025-07-17 22:27:52.562765+00 f t DESCUENTO 0.00 2 3800 \N +144419 2025-07-17 22:27:52.62733+00 2025-07-17 22:27:52.628413+00 f t TOTAL 62000.00 3 3800 \N +144420 2025-07-17 22:27:52.686969+00 2025-07-17 22:27:52.688135+00 f t ADELANTO 12000.00 4 3800 \N +139285 2025-07-15 17:04:25.969071+00 2025-07-15 17:04:25.969079+00 f t SUBTOTAL 42000.00 1 3661 \N +139286 2025-07-15 17:04:25.970957+00 2025-07-15 17:04:25.970968+00 f t DESCUENTO 0.00 2 3661 \N +139287 2025-07-15 17:04:25.972604+00 2025-07-15 17:04:25.972612+00 f t TOTAL 42000.00 3 3661 \N +139288 2025-07-15 17:04:25.973877+00 2025-07-15 17:04:25.973884+00 f t ADELANTO 9500.00 4 3661 \N +141705 2025-07-16 19:51:55.829569+00 2025-07-16 19:51:55.829578+00 f t SUBTOTAL 0.00 1 3727 \N +141706 2025-07-16 19:51:55.832008+00 2025-07-16 19:51:55.832019+00 f t DESCUENTO 0.00 2 3727 \N +141707 2025-07-16 19:51:55.83369+00 2025-07-16 19:51:55.833697+00 f t TOTAL 0.00 3 3727 \N +141708 2025-07-16 19:51:55.834964+00 2025-07-16 19:51:55.834969+00 f t ADELANTO 0.00 4 3727 \N +185923 2025-08-04 20:29:04.959381+00 2025-08-04 20:29:04.959398+00 f t TOTAL 27500.00 3 4880 \N +139901 2025-07-15 20:30:36.566833+00 2025-07-15 20:30:36.566845+00 f t SUBTOTAL 42000.00 1 3674 \N +139902 2025-07-15 20:30:36.568853+00 2025-07-15 20:30:36.568863+00 f t DESCUENTO 0.00 2 3674 \N +139903 2025-07-15 20:30:36.570173+00 2025-07-15 20:30:36.570182+00 f t TOTAL 42000.00 3 3674 \N +139904 2025-07-15 20:30:36.571629+00 2025-07-15 20:30:36.571637+00 f t ADELANTO 9500.00 4 3674 \N +139401 2025-07-15 17:14:20.326123+00 2025-07-15 17:14:20.326136+00 f t SUBTOTAL 0.00 1 3663 \N +139402 2025-07-15 17:14:20.328641+00 2025-07-15 17:14:20.328652+00 f t DESCUENTO 0.00 2 3663 \N +139403 2025-07-15 17:14:20.330122+00 2025-07-15 17:14:20.330132+00 f t TOTAL 0.00 3 3663 \N +139404 2025-07-15 17:14:20.331505+00 2025-07-15 17:14:20.331514+00 f t ADELANTO 0.00 4 3663 \N +147061 2025-07-19 05:51:10.922176+00 2025-07-19 05:51:10.922186+00 f t SUBTOTAL 0.00 1 3864 \N +147062 2025-07-19 05:51:10.923593+00 2025-07-19 05:51:10.923602+00 f t DESCUENTO 0.00 2 3864 \N +147063 2025-07-19 05:51:10.924815+00 2025-07-19 05:51:10.924822+00 f t TOTAL 0.00 3 3864 \N +139409 2025-07-15 17:16:57.454789+00 2025-07-15 17:16:57.454804+00 f t SUBTOTAL 0.00 1 3664 \N +139410 2025-07-15 17:16:57.457385+00 2025-07-15 17:16:57.457401+00 f t DESCUENTO 0.00 2 3664 \N +139411 2025-07-15 17:16:57.459498+00 2025-07-15 17:16:57.459509+00 f t TOTAL 0.00 3 3664 \N +139412 2025-07-15 17:16:57.461261+00 2025-07-15 17:16:57.461273+00 f t ADELANTO 0.00 4 3664 \N +147064 2025-07-19 05:51:10.92583+00 2025-07-19 05:51:10.925836+00 f t ADELANTO 0.00 4 3864 \N +143697 2025-07-17 15:57:54.5443+00 2025-07-17 15:57:54.544313+00 f t SUBTOTAL 0.00 1 3779 \N +143698 2025-07-17 15:57:54.546534+00 2025-07-17 15:57:54.546545+00 f t DESCUENTO 0.00 2 3779 \N +143699 2025-07-17 15:57:54.548097+00 2025-07-17 15:57:54.548108+00 f t TOTAL 0.00 3 3779 \N +143700 2025-07-17 15:57:54.549717+00 2025-07-17 15:57:54.549727+00 f t ADELANTO 0.00 4 3779 \N +144025 2025-07-17 18:20:26.890833+00 2025-07-17 18:20:26.890843+00 f t SUBTOTAL 0.00 1 3789 \N +144026 2025-07-17 18:20:26.892492+00 2025-07-17 18:20:26.8925+00 f t DESCUENTO 0.00 2 3789 \N +144027 2025-07-17 18:20:26.894972+00 2025-07-17 18:20:26.89498+00 f t TOTAL 0.00 3 3789 \N +144028 2025-07-17 18:20:26.896497+00 2025-07-17 18:20:26.896505+00 f t ADELANTO 0.00 4 3789 \N +144189 2025-07-17 20:33:31.042622+00 2025-07-17 20:33:31.04263+00 f t SUBTOTAL 72000.00 1 3790 \N +144190 2025-07-17 20:33:31.044125+00 2025-07-17 20:33:31.044132+00 f t DESCUENTO 0.00 2 3790 \N +144191 2025-07-17 20:33:31.045245+00 2025-07-17 20:33:31.045251+00 f t TOTAL 72000.00 3 3790 \N +144192 2025-07-17 20:33:31.046326+00 2025-07-17 20:33:31.046331+00 f t ADELANTO 19000.00 4 3790 \N +144261 2025-07-17 20:37:28.732768+00 2025-07-17 20:37:28.732781+00 f t SUBTOTAL 49700.00 1 3792 \N +144262 2025-07-17 20:37:28.734794+00 2025-07-17 20:37:28.734802+00 f t DESCUENTO 0.00 2 3792 \N +144263 2025-07-17 20:37:28.736539+00 2025-07-17 20:37:28.736548+00 f t TOTAL 49700.00 3 3792 \N +144264 2025-07-17 20:37:28.738072+00 2025-07-17 20:37:28.738081+00 f t ADELANTO 11700.00 4 3792 \N +139489 2025-07-15 18:01:53.17441+00 2025-07-15 18:01:53.174421+00 f t SUBTOTAL 110500.00 1 3665 \N +139490 2025-07-15 18:01:53.176252+00 2025-07-15 18:01:53.176263+00 f t DESCUENTO 0.00 2 3665 \N +139491 2025-07-15 18:01:53.177771+00 2025-07-15 18:01:53.17778+00 f t TOTAL 110500.00 3 3665 \N +139492 2025-07-15 18:01:53.17931+00 2025-07-15 18:01:53.179317+00 f t ADELANTO 26500.00 4 3665 \N +139497 2025-07-15 18:05:20.335544+00 2025-07-15 18:05:20.335555+00 f t SUBTOTAL 0.00 1 3666 \N +139498 2025-07-15 18:05:20.337437+00 2025-07-15 18:05:20.337446+00 f t DESCUENTO 0.00 2 3666 \N +139499 2025-07-15 18:05:20.338825+00 2025-07-15 18:05:20.338833+00 f t TOTAL 0.00 3 3666 \N +139500 2025-07-15 18:05:20.340436+00 2025-07-15 18:05:20.340444+00 f t ADELANTO 0.00 4 3666 \N +147949 2025-07-19 14:14:09.861865+00 2025-07-19 14:14:09.861878+00 f t SUBTOTAL 0.00 1 3877 \N +147950 2025-07-19 14:14:09.864043+00 2025-07-19 14:14:09.864055+00 f t DESCUENTO 0.00 2 3877 \N +147951 2025-07-19 14:14:09.86569+00 2025-07-19 14:14:09.865699+00 f t TOTAL 0.00 3 3877 \N +147952 2025-07-19 14:14:09.867256+00 2025-07-19 14:14:09.867266+00 f t ADELANTO 0.00 4 3877 \N +141213 2025-07-16 13:59:02.60961+00 2025-07-16 13:59:02.609622+00 f t SUBTOTAL 107200.00 1 3709 \N +141214 2025-07-16 13:59:02.611814+00 2025-07-16 13:59:02.611824+00 f t DESCUENTO 0.00 2 3709 \N +141215 2025-07-16 13:59:02.613631+00 2025-07-16 13:59:02.613641+00 f t TOTAL 107200.00 3 3709 \N +141216 2025-07-16 13:59:02.616368+00 2025-07-16 13:59:02.616377+00 f t ADELANTO 69200.00 4 3709 \N +148137 2025-07-19 15:10:04.566044+00 2025-07-19 15:10:04.566056+00 f t SUBTOTAL 0.00 1 3880 \N +148138 2025-07-19 15:10:04.568784+00 2025-07-19 15:10:04.568793+00 f t DESCUENTO 0.00 2 3880 \N +148139 2025-07-19 15:10:04.570966+00 2025-07-19 15:10:04.570976+00 f t TOTAL 0.00 3 3880 \N +148140 2025-07-19 15:10:04.572895+00 2025-07-19 15:10:04.572903+00 f t ADELANTO 0.00 4 3880 \N +139541 2025-07-15 18:10:05.022295+00 2025-07-15 18:10:05.022308+00 f t SUBTOTAL 0.00 1 3667 \N +139542 2025-07-15 18:10:05.025899+00 2025-07-15 18:10:05.025912+00 f t DESCUENTO 0.00 2 3667 \N +139543 2025-07-15 18:10:05.028557+00 2025-07-15 18:10:05.028571+00 f t TOTAL 0.00 3 3667 \N +139544 2025-07-15 18:10:05.031628+00 2025-07-15 18:10:05.031641+00 f t ADELANTO 0.00 4 3667 \N +148233 2025-07-19 17:05:55.207826+00 2025-07-19 17:05:55.207835+00 f t SUBTOTAL 0.00 1 3883 \N +148234 2025-07-19 17:05:55.209812+00 2025-07-19 17:05:55.209826+00 f t DESCUENTO 0.00 2 3883 \N +139549 2025-07-15 18:21:48.745049+00 2025-07-15 18:21:48.745061+00 f t SUBTOTAL 0.00 1 3668 \N +139550 2025-07-15 18:21:48.746678+00 2025-07-15 18:21:48.746687+00 f t DESCUENTO 0.00 2 3668 \N +139551 2025-07-15 18:21:48.748142+00 2025-07-15 18:21:48.748151+00 f t TOTAL 0.00 3 3668 \N +139552 2025-07-15 18:21:48.749348+00 2025-07-15 18:21:48.749354+00 f t ADELANTO 0.00 4 3668 \N +148235 2025-07-19 17:05:55.211425+00 2025-07-19 17:05:55.211432+00 f t TOTAL 0.00 3 3883 \N +148236 2025-07-19 17:05:55.212751+00 2025-07-19 17:05:55.212759+00 f t ADELANTO 0.00 4 3883 \N +148373 2025-07-19 18:34:42.898927+00 2025-07-19 18:34:42.898937+00 f t SUBTOTAL 62000.00 1 3889 \N +148374 2025-07-19 18:34:42.901128+00 2025-07-19 18:34:42.901137+00 f t DESCUENTO 0.00 2 3889 \N +148375 2025-07-19 18:34:42.902643+00 2025-07-19 18:34:42.90265+00 f t TOTAL 62000.00 3 3889 \N +148376 2025-07-19 18:34:42.903937+00 2025-07-19 18:34:42.903943+00 f t ADELANTO 12000.00 4 3889 \N +141613 2025-07-16 19:31:34.840511+00 2025-07-16 19:31:34.840519+00 f t SUBTOTAL 0.00 1 3725 \N +141614 2025-07-16 19:31:34.841932+00 2025-07-16 19:31:34.84194+00 f t DESCUENTO 0.00 2 3725 \N +141615 2025-07-16 19:31:34.843447+00 2025-07-16 19:31:34.843454+00 f t TOTAL 0.00 3 3725 \N +139589 2025-07-15 18:25:47.842273+00 2025-07-15 18:25:47.842283+00 f t SUBTOTAL 0.00 1 3669 \N +139590 2025-07-15 18:25:47.844313+00 2025-07-15 18:25:47.844321+00 f t DESCUENTO 0.00 2 3669 \N +139591 2025-07-15 18:25:47.845634+00 2025-07-15 18:25:47.845643+00 f t TOTAL 0.00 3 3669 \N +139592 2025-07-15 18:25:47.846714+00 2025-07-15 18:25:47.84672+00 f t ADELANTO 0.00 4 3669 \N +141616 2025-07-16 19:31:34.844803+00 2025-07-16 19:31:34.844809+00 f t ADELANTO 0.00 4 3725 \N +139633 2025-07-15 19:41:54.412142+00 2025-07-15 19:41:54.412158+00 f t SUBTOTAL 0.00 1 3670 \N +139634 2025-07-15 19:41:54.414324+00 2025-07-15 19:41:54.414333+00 f t DESCUENTO 0.00 2 3670 \N +139635 2025-07-15 19:41:54.415849+00 2025-07-15 19:41:54.41586+00 f t TOTAL 0.00 3 3670 \N +139636 2025-07-15 19:41:54.417329+00 2025-07-15 19:41:54.417339+00 f t ADELANTO 0.00 4 3670 \N +185924 2025-08-04 20:29:04.963611+00 2025-08-04 20:29:04.963641+00 f t ADELANTO 27500.00 4 4880 \N +146721 2025-07-19 01:34:36.932918+00 2025-07-19 01:34:36.932931+00 f t SUBTOTAL 0.00 1 3854 \N +146722 2025-07-19 01:34:36.935349+00 2025-07-19 01:34:36.935359+00 f t DESCUENTO 0.00 2 3854 \N +146723 2025-07-19 01:34:36.937032+00 2025-07-19 01:34:36.937041+00 f t TOTAL 0.00 3 3854 \N +146724 2025-07-19 01:34:36.938422+00 2025-07-19 01:34:36.938431+00 f t ADELANTO 0.00 4 3854 \N +150305 2025-07-20 11:31:00.438632+00 2025-07-20 11:31:00.438641+00 f t SUBTOTAL 0.00 1 3935 \N +150306 2025-07-20 11:31:00.441052+00 2025-07-20 11:31:00.441062+00 f t DESCUENTO 0.00 2 3935 \N +150307 2025-07-20 11:31:00.44264+00 2025-07-20 11:31:00.442647+00 f t TOTAL 0.00 3 3935 \N +150308 2025-07-20 11:31:00.44388+00 2025-07-20 11:31:00.443886+00 f t ADELANTO 0.00 4 3935 \N +140145 2025-07-15 23:12:46.28217+00 2025-07-15 23:12:46.28218+00 f t SUBTOTAL 0.00 1 3680 \N +140146 2025-07-15 23:12:46.284781+00 2025-07-15 23:12:46.284791+00 f t DESCUENTO 0.00 2 3680 \N +140147 2025-07-15 23:12:46.286432+00 2025-07-15 23:12:46.286441+00 f t TOTAL 0.00 3 3680 \N +140148 2025-07-15 23:12:46.287701+00 2025-07-15 23:12:46.28771+00 f t ADELANTO 0.00 4 3680 \N +150397 2025-07-20 12:50:39.214021+00 2025-07-20 12:50:39.214032+00 f t SUBTOTAL 62000.00 1 3938 \N +150398 2025-07-20 12:50:39.216224+00 2025-07-20 12:50:39.216234+00 f t DESCUENTO 0.00 2 3938 \N +150399 2025-07-20 12:50:39.218114+00 2025-07-20 12:50:39.218124+00 f t TOTAL 62000.00 3 3938 \N +150400 2025-07-20 12:50:39.219753+00 2025-07-20 12:50:39.219762+00 f t ADELANTO 12000.00 4 3938 \N +147069 2025-07-19 10:21:50.020611+00 2025-07-19 10:21:50.020625+00 f t SUBTOTAL 0.00 1 3865 \N +147070 2025-07-19 10:21:50.022432+00 2025-07-19 10:21:50.022443+00 f t DESCUENTO 0.00 2 3865 \N +147071 2025-07-19 10:21:50.024114+00 2025-07-19 10:21:50.024124+00 f t TOTAL 0.00 3 3865 \N +147072 2025-07-19 10:21:50.025557+00 2025-07-19 10:21:50.025565+00 f t ADELANTO 0.00 4 3865 \N +150453 2025-07-20 13:09:43.783917+00 2025-07-20 13:09:43.783928+00 f t SUBTOTAL 50000.00 1 3942 \N +150454 2025-07-20 13:09:43.786029+00 2025-07-20 13:09:43.786037+00 f t DESCUENTO 0.00 2 3942 \N +150455 2025-07-20 13:09:43.787444+00 2025-07-20 13:09:43.787451+00 f t TOTAL 50000.00 3 3942 \N +150456 2025-07-20 13:09:43.788597+00 2025-07-20 13:09:43.788605+00 f t ADELANTO 10000.00 4 3942 \N +150573 2025-07-20 14:41:31.011248+00 2025-07-20 14:41:31.01126+00 f t SUBTOTAL 123500.00 1 3944 \N +150574 2025-07-20 14:41:31.012948+00 2025-07-20 14:41:31.012957+00 f t DESCUENTO 0.00 2 3944 \N +150575 2025-07-20 14:41:31.014176+00 2025-07-20 14:41:31.014184+00 f t TOTAL 123500.00 3 3944 \N +150576 2025-07-20 14:41:31.015289+00 2025-07-20 14:41:31.015296+00 f t ADELANTO 26000.00 4 3944 \N +150613 2025-07-20 14:50:30.770288+00 2025-07-20 14:50:30.770297+00 f t SUBTOTAL 50000.00 1 3945 \N +150614 2025-07-20 14:50:30.772411+00 2025-07-20 14:50:30.772421+00 f t DESCUENTO 0.00 2 3945 \N +150615 2025-07-20 14:50:30.773902+00 2025-07-20 14:50:30.773908+00 f t TOTAL 50000.00 3 3945 \N +150616 2025-07-20 14:50:30.775348+00 2025-07-20 14:50:30.775355+00 f t ADELANTO 10000.00 4 3945 \N +143909 2025-07-17 16:38:55.829338+00 2025-07-17 16:38:55.829347+00 f t SUBTOTAL 62000.00 1 3783 \N +143910 2025-07-17 16:38:55.831086+00 2025-07-17 16:38:55.831097+00 f t DESCUENTO 0.00 2 3783 \N +143911 2025-07-17 16:38:55.832803+00 2025-07-17 16:38:55.832814+00 f t TOTAL 62000.00 3 3783 \N +143912 2025-07-17 16:38:55.834763+00 2025-07-17 16:38:55.834773+00 f t ADELANTO 12000.00 4 3783 \N +150897 2025-07-20 16:14:13.189888+00 2025-07-20 16:14:13.1899+00 f t SUBTOTAL 0.00 1 3953 \N +150898 2025-07-20 16:14:13.191428+00 2025-07-20 16:14:13.191436+00 f t DESCUENTO 0.00 2 3953 \N +150899 2025-07-20 16:14:13.192894+00 2025-07-20 16:14:13.192901+00 f t TOTAL 0.00 3 3953 \N +150900 2025-07-20 16:14:13.194017+00 2025-07-20 16:14:13.194022+00 f t ADELANTO 0.00 4 3953 \N +150937 2025-07-20 16:45:10.779+00 2025-07-20 16:45:10.779009+00 f t SUBTOTAL 0.00 1 3954 \N +150938 2025-07-20 16:45:10.781224+00 2025-07-20 16:45:10.781232+00 f t DESCUENTO 0.00 2 3954 \N +150939 2025-07-20 16:45:10.78268+00 2025-07-20 16:45:10.782689+00 f t TOTAL 0.00 3 3954 \N +150940 2025-07-20 16:45:10.784256+00 2025-07-20 16:45:10.784265+00 f t ADELANTO 0.00 4 3954 \N +144269 2025-07-17 21:14:10.747842+00 2025-07-17 21:14:10.747856+00 f t SUBTOTAL 0.00 1 3793 \N +144270 2025-07-17 21:14:10.749753+00 2025-07-17 21:14:10.749766+00 f t DESCUENTO 0.00 2 3793 \N +144271 2025-07-17 21:14:10.751559+00 2025-07-17 21:14:10.751571+00 f t TOTAL 0.00 3 3793 \N +144272 2025-07-17 21:14:10.753133+00 2025-07-17 21:14:10.753141+00 f t ADELANTO 0.00 4 3793 \N +144393 2025-07-17 22:25:40.24807+00 2025-07-17 22:25:40.248935+00 f t SUBTOTAL 0.00 1 3799 \N +144394 2025-07-17 22:25:40.278882+00 2025-07-17 22:25:40.279761+00 f t DESCUENTO 0.00 2 3799 \N +144395 2025-07-17 22:25:40.282834+00 2025-07-17 22:25:40.282842+00 f t TOTAL 0.00 3 3799 \N +144396 2025-07-17 22:25:40.284139+00 2025-07-17 22:25:40.284144+00 f t ADELANTO 0.00 4 3799 \N +141185 2025-07-16 13:56:20.95158+00 2025-07-16 13:56:20.951588+00 f t SUBTOTAL 0.00 1 3708 \N +141186 2025-07-16 13:56:20.953429+00 2025-07-16 13:56:20.953438+00 f t DESCUENTO 0.00 2 3708 \N +141187 2025-07-16 13:56:20.954617+00 2025-07-16 13:56:20.954623+00 f t TOTAL 0.00 3 3708 \N +141188 2025-07-16 13:56:20.955639+00 2025-07-16 13:56:20.955644+00 f t ADELANTO 0.00 4 3708 \N +141221 2025-07-16 15:21:50.446882+00 2025-07-16 15:21:50.446894+00 f t SUBTOTAL 0.00 1 3710 \N +141222 2025-07-16 15:21:50.448687+00 2025-07-16 15:21:50.448697+00 f t DESCUENTO 0.00 2 3710 \N +141223 2025-07-16 15:21:50.450859+00 2025-07-16 15:21:50.450869+00 f t TOTAL 0.00 3 3710 \N +141224 2025-07-16 15:21:50.455178+00 2025-07-16 15:21:50.455186+00 f t ADELANTO 0.00 4 3710 \N +148333 2025-07-19 18:18:14.481792+00 2025-07-19 18:18:14.481805+00 f t SUBTOTAL 0.00 1 3888 \N +148334 2025-07-19 18:18:14.484596+00 2025-07-19 18:18:14.484608+00 f t DESCUENTO 0.00 2 3888 \N +148335 2025-07-19 18:18:14.486451+00 2025-07-19 18:18:14.48646+00 f t TOTAL 0.00 3 3888 \N +148336 2025-07-19 18:18:14.488136+00 2025-07-19 18:18:14.488146+00 f t ADELANTO 0.00 4 3888 \N +141389 2025-07-16 17:30:42.57256+00 2025-07-16 17:30:42.57257+00 f t SUBTOTAL 0.00 1 3717 \N +141390 2025-07-16 17:30:42.574495+00 2025-07-16 17:30:42.574503+00 f t DESCUENTO 0.00 2 3717 \N +141391 2025-07-16 17:30:42.575917+00 2025-07-16 17:30:42.575924+00 f t TOTAL 0.00 3 3717 \N +141392 2025-07-16 17:30:42.577026+00 2025-07-16 17:30:42.577031+00 f t ADELANTO 0.00 4 3717 \N +141425 2025-07-16 17:33:12.953137+00 2025-07-16 17:33:12.953146+00 f t SUBTOTAL 55000.00 1 3719 \N +141426 2025-07-16 17:33:12.954919+00 2025-07-16 17:33:12.954925+00 f t DESCUENTO 0.00 2 3719 \N +141427 2025-07-16 17:33:12.95622+00 2025-07-16 17:33:12.956225+00 f t TOTAL 55000.00 3 3719 \N +141428 2025-07-16 17:33:12.957213+00 2025-07-16 17:33:12.957218+00 f t ADELANTO 12500.00 4 3719 \N +141885 2025-07-16 20:31:29.765232+00 2025-07-16 20:31:29.76524+00 f t SUBTOTAL 0.00 1 3730 \N +141886 2025-07-16 20:31:29.767526+00 2025-07-16 20:31:29.767533+00 f t DESCUENTO 0.00 2 3730 \N +141887 2025-07-16 20:31:29.768763+00 2025-07-16 20:31:29.768768+00 f t TOTAL 0.00 3 3730 \N +141888 2025-07-16 20:31:29.770098+00 2025-07-16 20:31:29.770103+00 f t ADELANTO 0.00 4 3730 \N +141913 2025-07-16 20:33:17.278267+00 2025-07-16 20:33:17.278276+00 f t SUBTOTAL 0.00 1 3729 \N +141914 2025-07-16 20:33:17.280061+00 2025-07-16 20:33:17.280068+00 f t DESCUENTO 0.00 2 3729 \N +141915 2025-07-16 20:33:17.281495+00 2025-07-16 20:33:17.281501+00 f t TOTAL 0.00 3 3729 \N +141916 2025-07-16 20:33:17.282569+00 2025-07-16 20:33:17.282575+00 f t ADELANTO 0.00 4 3729 \N +165001 2025-07-26 18:51:29.582874+00 2025-07-26 18:51:29.582882+00 f t SUBTOTAL 50000.00 1 4315 \N +141941 2025-07-16 20:37:04.827768+00 2025-07-16 20:37:04.827777+00 f t SUBTOTAL 102700.00 1 3731 \N +141942 2025-07-16 20:37:04.829532+00 2025-07-16 20:37:04.829541+00 f t DESCUENTO 0.00 2 3731 \N +141943 2025-07-16 20:37:04.830997+00 2025-07-16 20:37:04.831003+00 f t TOTAL 102700.00 3 3731 \N +141944 2025-07-16 20:37:04.832098+00 2025-07-16 20:37:04.832104+00 f t ADELANTO 64700.00 4 3731 \N +141949 2025-07-16 21:06:01.258738+00 2025-07-16 21:06:01.25875+00 f t SUBTOTAL 0.00 1 3732 \N +141950 2025-07-16 21:06:01.260596+00 2025-07-16 21:06:01.260607+00 f t DESCUENTO 0.00 2 3732 \N +141951 2025-07-16 21:06:01.262729+00 2025-07-16 21:06:01.262739+00 f t TOTAL 0.00 3 3732 \N +141952 2025-07-16 21:06:01.264441+00 2025-07-16 21:06:01.264451+00 f t ADELANTO 0.00 4 3732 \N +150257 2025-07-20 09:40:33.627107+00 2025-07-20 09:40:33.627116+00 f t SUBTOTAL 0.00 1 3933 \N +150258 2025-07-20 09:40:33.629123+00 2025-07-20 09:40:33.62913+00 f t DESCUENTO 0.00 2 3933 \N +150259 2025-07-20 09:40:33.630267+00 2025-07-20 09:40:33.630273+00 f t TOTAL 0.00 3 3933 \N +150260 2025-07-20 09:40:33.631368+00 2025-07-20 09:40:33.631373+00 f t ADELANTO 0.00 4 3933 \N +141973 2025-07-16 21:11:33.383055+00 2025-07-16 21:11:33.383064+00 f t SUBTOTAL 0.00 1 3733 \N +141974 2025-07-16 21:11:33.384853+00 2025-07-16 21:11:33.38486+00 f t DESCUENTO 0.00 2 3733 \N +141975 2025-07-16 21:11:33.386021+00 2025-07-16 21:11:33.386027+00 f t TOTAL 0.00 3 3733 \N +141976 2025-07-16 21:11:33.387049+00 2025-07-16 21:11:33.387055+00 f t ADELANTO 0.00 4 3733 \N +147125 2025-07-19 10:27:31.619101+00 2025-07-19 10:27:31.619111+00 f t SUBTOTAL 42000.00 1 3866 \N +147126 2025-07-19 10:27:31.621262+00 2025-07-19 10:27:31.62127+00 f t DESCUENTO 0.00 2 3866 \N +147127 2025-07-19 10:27:31.623494+00 2025-07-19 10:27:31.623503+00 f t TOTAL 42000.00 3 3866 \N +147128 2025-07-19 10:27:31.624986+00 2025-07-19 10:27:31.624994+00 f t ADELANTO 9500.00 4 3866 \N +143741 2025-07-17 16:07:24.423167+00 2025-07-17 16:07:24.423179+00 f t SUBTOTAL 0.00 1 3780 \N +143742 2025-07-17 16:07:24.424985+00 2025-07-17 16:07:24.424993+00 f t DESCUENTO 0.00 2 3780 \N +143743 2025-07-17 16:07:24.426253+00 2025-07-17 16:07:24.42626+00 f t TOTAL 0.00 3 3780 \N +143744 2025-07-17 16:07:24.427541+00 2025-07-17 16:07:24.427551+00 f t ADELANTO 0.00 4 3780 \N +143813 2025-07-17 16:13:49.268561+00 2025-07-17 16:13:49.268571+00 f t SUBTOTAL 0.00 1 3781 \N +143814 2025-07-17 16:13:49.270655+00 2025-07-17 16:13:49.270664+00 f t DESCUENTO 0.00 2 3781 \N +143815 2025-07-17 16:13:49.271941+00 2025-07-17 16:13:49.271948+00 f t TOTAL 0.00 3 3781 \N +143816 2025-07-17 16:13:49.272975+00 2025-07-17 16:13:49.272982+00 f t ADELANTO 0.00 4 3781 \N +142017 2025-07-16 21:31:37.141515+00 2025-07-16 21:31:37.141523+00 f t SUBTOTAL 0.00 1 3734 \N +142018 2025-07-16 21:31:37.143436+00 2025-07-16 21:31:37.143446+00 f t DESCUENTO 0.00 2 3734 \N +142019 2025-07-16 21:31:37.144985+00 2025-07-16 21:31:37.144992+00 f t TOTAL 0.00 3 3734 \N +142020 2025-07-16 21:31:37.146238+00 2025-07-16 21:31:37.146245+00 f t ADELANTO 0.00 4 3734 \N +142025 2025-07-16 22:17:22.381792+00 2025-07-16 22:17:22.381806+00 f t SUBTOTAL 0.00 1 3735 \N +142026 2025-07-16 22:17:22.383854+00 2025-07-16 22:17:22.383865+00 f t DESCUENTO 0.00 2 3735 \N +142027 2025-07-16 22:17:22.385978+00 2025-07-16 22:17:22.385989+00 f t TOTAL 0.00 3 3735 \N +142028 2025-07-16 22:17:22.388066+00 2025-07-16 22:17:22.388077+00 f t ADELANTO 0.00 4 3735 \N +144277 2025-07-17 21:34:02.013299+00 2025-07-17 21:34:02.013309+00 f t SUBTOTAL 0.00 1 3794 \N +144278 2025-07-17 21:34:02.015121+00 2025-07-17 21:34:02.015169+00 f t DESCUENTO 0.00 2 3794 \N +144279 2025-07-17 21:34:02.016792+00 2025-07-17 21:34:02.016801+00 f t TOTAL 0.00 3 3794 \N +144280 2025-07-17 21:34:02.018442+00 2025-07-17 21:34:02.01845+00 f t ADELANTO 0.00 4 3794 \N +144353 2025-07-17 22:04:33.420991+00 2025-07-17 22:04:33.422016+00 f t SUBTOTAL 0.00 1 3797 \N +144354 2025-07-17 22:04:33.430367+00 2025-07-17 22:04:33.430377+00 f t DESCUENTO 0.00 2 3797 \N +144355 2025-07-17 22:04:33.43225+00 2025-07-17 22:04:33.432259+00 f t TOTAL 0.00 3 3797 \N +144356 2025-07-17 22:04:33.433727+00 2025-07-17 22:04:33.433736+00 f t ADELANTO 0.00 4 3797 \N +144497 2025-07-17 22:47:51.298677+00 2025-07-17 22:47:51.298686+00 f t SUBTOTAL 42000.00 1 3801 \N +144498 2025-07-17 22:47:51.300532+00 2025-07-17 22:47:51.300539+00 f t DESCUENTO 0.00 2 3801 \N +144499 2025-07-17 22:47:51.30175+00 2025-07-17 22:47:51.301755+00 f t TOTAL 42000.00 3 3801 \N +144500 2025-07-17 22:47:51.302981+00 2025-07-17 22:47:51.302986+00 f t ADELANTO 9500.00 4 3801 \N +148241 2025-07-19 17:05:58.551066+00 2025-07-19 17:05:58.551075+00 f t SUBTOTAL 42000.00 1 3884 \N +148242 2025-07-19 17:05:58.553174+00 2025-07-19 17:05:58.553182+00 f t DESCUENTO 0.00 2 3884 \N +148243 2025-07-19 17:05:58.554792+00 2025-07-19 17:05:58.554799+00 f t TOTAL 42000.00 3 3884 \N +148244 2025-07-19 17:05:58.556484+00 2025-07-19 17:05:58.556493+00 f t ADELANTO 9500.00 4 3884 \N +142149 2025-07-16 22:26:15.674762+00 2025-07-16 22:26:15.674775+00 f t SUBTOTAL 0.00 1 3736 \N +142150 2025-07-16 22:26:15.676911+00 2025-07-16 22:26:15.676922+00 f t DESCUENTO 0.00 2 3736 \N +142151 2025-07-16 22:26:15.678499+00 2025-07-16 22:26:15.678509+00 f t TOTAL 0.00 3 3736 \N +142152 2025-07-16 22:26:15.680092+00 2025-07-16 22:26:15.6801+00 f t ADELANTO 0.00 4 3736 \N +148665 2025-07-19 19:22:00.66727+00 2025-07-19 19:22:00.66728+00 f t SUBTOTAL 0.00 1 3894 \N +142161 2025-07-16 22:26:50.433087+00 2025-07-16 22:26:50.433098+00 f t SUBTOTAL 50000.00 1 3737 \N +142162 2025-07-16 22:26:50.434642+00 2025-07-16 22:26:50.43465+00 f t DESCUENTO 0.00 2 3737 \N +142163 2025-07-16 22:26:50.435882+00 2025-07-16 22:26:50.435889+00 f t TOTAL 50000.00 3 3737 \N +142164 2025-07-16 22:26:50.437047+00 2025-07-16 22:26:50.437055+00 f t ADELANTO 10000.00 4 3737 \N +148666 2025-07-19 19:22:00.669457+00 2025-07-19 19:22:00.669467+00 f t DESCUENTO 0.00 2 3894 \N +148667 2025-07-19 19:22:00.670965+00 2025-07-19 19:22:00.670972+00 f t TOTAL 0.00 3 3894 \N +148668 2025-07-19 19:22:00.672205+00 2025-07-19 19:22:00.672211+00 f t ADELANTO 0.00 4 3894 \N +148805 2025-07-19 19:58:17.770394+00 2025-07-19 19:58:17.770406+00 f t SUBTOTAL 0.00 1 3897 \N +148806 2025-07-19 19:58:17.772621+00 2025-07-19 19:58:17.772632+00 f t DESCUENTO 0.00 2 3897 \N +148807 2025-07-19 19:58:17.774192+00 2025-07-19 19:58:17.774202+00 f t TOTAL 0.00 3 3897 \N +148808 2025-07-19 19:58:17.775483+00 2025-07-19 19:58:17.775489+00 f t ADELANTO 0.00 4 3897 \N +145133 2025-07-18 01:08:09.568513+00 2025-07-18 01:08:09.568522+00 f t SUBTOTAL 0.00 1 3808 \N +145134 2025-07-18 01:08:09.570015+00 2025-07-18 01:08:09.570021+00 f t DESCUENTO 0.00 2 3808 \N +145135 2025-07-18 01:08:09.571235+00 2025-07-18 01:08:09.571243+00 f t TOTAL 0.00 3 3808 \N +145136 2025-07-18 01:08:09.572337+00 2025-07-18 01:08:09.572344+00 f t ADELANTO 0.00 4 3808 \N +145193 2025-07-18 01:12:30.004552+00 2025-07-18 01:12:30.004564+00 f t SUBTOTAL 27500.00 1 3807 \N +145194 2025-07-18 01:12:30.006743+00 2025-07-18 01:12:30.006752+00 f t DESCUENTO 0.00 2 3807 \N +145195 2025-07-18 01:12:30.008264+00 2025-07-18 01:12:30.00827+00 f t TOTAL 27500.00 3 3807 \N +145196 2025-07-18 01:12:30.009566+00 2025-07-18 01:12:30.009573+00 f t ADELANTO 27500.00 4 3807 \N +142209 2025-07-16 22:29:18.29827+00 2025-07-16 22:29:18.298283+00 f t SUBTOTAL 50000.00 1 3738 \N +142210 2025-07-16 22:29:18.300499+00 2025-07-16 22:29:18.30051+00 f t DESCUENTO 0.00 2 3738 \N +142211 2025-07-16 22:29:18.302205+00 2025-07-16 22:29:18.302214+00 f t TOTAL 50000.00 3 3738 \N +142212 2025-07-16 22:29:18.30481+00 2025-07-16 22:29:18.304819+00 f t ADELANTO 10000.00 4 3738 \N +143165 2025-07-17 12:03:44.393677+00 2025-07-17 12:03:44.393691+00 f t SUBTOTAL 0.00 1 3763 \N +143166 2025-07-17 12:03:44.395468+00 2025-07-17 12:03:44.395475+00 f t DESCUENTO 0.00 2 3763 \N +143167 2025-07-17 12:03:44.396494+00 2025-07-17 12:03:44.3965+00 f t TOTAL 0.00 3 3763 \N +143168 2025-07-17 12:03:44.397629+00 2025-07-17 12:03:44.397634+00 f t ADELANTO 0.00 4 3763 \N +143349 2025-07-17 13:40:47.972381+00 2025-07-17 13:40:47.97239+00 f t SUBTOTAL 0.00 1 3768 \N +143350 2025-07-17 13:40:47.974372+00 2025-07-17 13:40:47.97438+00 f t DESCUENTO 0.00 2 3768 \N +142237 2025-07-16 22:52:17.259554+00 2025-07-16 22:52:17.259565+00 f t SUBTOTAL 70000.00 1 3739 \N +142238 2025-07-16 22:52:17.261337+00 2025-07-16 22:52:17.261347+00 f t DESCUENTO 0.00 2 3739 \N +142239 2025-07-16 22:52:17.262715+00 2025-07-16 22:52:17.262723+00 f t TOTAL 70000.00 3 3739 \N +142240 2025-07-16 22:52:17.263961+00 2025-07-16 22:52:17.263969+00 f t ADELANTO 15000.00 4 3739 \N +143351 2025-07-17 13:40:47.975593+00 2025-07-17 13:40:47.975599+00 f t TOTAL 0.00 3 3768 \N +143352 2025-07-17 13:40:47.976845+00 2025-07-17 13:40:47.976851+00 f t ADELANTO 0.00 4 3768 \N +142245 2025-07-16 23:15:55.679914+00 2025-07-16 23:15:55.679925+00 f t SUBTOTAL 0.00 1 3740 \N +142246 2025-07-16 23:15:55.681648+00 2025-07-16 23:15:55.681659+00 f t DESCUENTO 0.00 2 3740 \N +142247 2025-07-16 23:15:55.682985+00 2025-07-16 23:15:55.682991+00 f t TOTAL 0.00 3 3740 \N +142248 2025-07-16 23:15:55.684154+00 2025-07-16 23:15:55.684159+00 f t ADELANTO 0.00 4 3740 \N +142261 2025-07-16 23:20:47.649369+00 2025-07-16 23:20:47.649379+00 f t SUBTOTAL 0.00 1 3741 \N +142262 2025-07-16 23:20:47.651362+00 2025-07-16 23:20:47.65137+00 f t DESCUENTO 0.00 2 3741 \N +142263 2025-07-16 23:20:47.652664+00 2025-07-16 23:20:47.652671+00 f t TOTAL 0.00 3 3741 \N +142264 2025-07-16 23:20:47.653773+00 2025-07-16 23:20:47.653778+00 f t ADELANTO 0.00 4 3741 \N +143569 2025-07-17 14:59:58.133024+00 2025-07-17 14:59:58.133032+00 f t SUBTOTAL 50000.00 1 3776 \N +143570 2025-07-17 14:59:58.135005+00 2025-07-17 14:59:58.135015+00 f t DESCUENTO 0.00 2 3776 \N +143571 2025-07-17 14:59:58.136623+00 2025-07-17 14:59:58.136629+00 f t TOTAL 50000.00 3 3776 \N +143572 2025-07-17 14:59:58.138267+00 2025-07-17 14:59:58.138272+00 f t ADELANTO 10000.00 4 3776 \N +142289 2025-07-16 23:31:18.768055+00 2025-07-16 23:31:18.768064+00 f t SUBTOTAL 107200.00 1 3742 \N +142290 2025-07-16 23:31:18.76947+00 2025-07-16 23:31:18.769477+00 f t DESCUENTO 0.00 2 3742 \N +142291 2025-07-16 23:31:18.770494+00 2025-07-16 23:31:18.7705+00 f t TOTAL 107200.00 3 3742 \N +142292 2025-07-16 23:31:18.771484+00 2025-07-16 23:31:18.771489+00 f t ADELANTO 69200.00 4 3742 \N +142297 2025-07-16 23:58:15.96332+00 2025-07-16 23:58:15.963332+00 f t SUBTOTAL 0.00 1 3743 \N +142298 2025-07-16 23:58:15.965284+00 2025-07-16 23:58:15.965296+00 f t DESCUENTO 0.00 2 3743 \N +142299 2025-07-16 23:58:15.967044+00 2025-07-16 23:58:15.967055+00 f t TOTAL 0.00 3 3743 \N +142300 2025-07-16 23:58:15.968891+00 2025-07-16 23:58:15.968902+00 f t ADELANTO 0.00 4 3743 \N +142305 2025-07-17 00:05:44.400481+00 2025-07-17 00:05:44.40049+00 f t SUBTOTAL 0.00 1 3744 \N +142306 2025-07-17 00:05:44.401924+00 2025-07-17 00:05:44.401931+00 f t DESCUENTO 0.00 2 3744 \N +142307 2025-07-17 00:05:44.403053+00 2025-07-17 00:05:44.403059+00 f t TOTAL 0.00 3 3744 \N +142308 2025-07-17 00:05:44.404154+00 2025-07-17 00:05:44.40416+00 f t ADELANTO 0.00 4 3744 \N +147721 2025-07-19 13:12:48.147444+00 2025-07-19 13:12:48.147458+00 f t SUBTOTAL 0.00 1 3871 \N +147722 2025-07-19 13:12:48.149978+00 2025-07-19 13:12:48.14999+00 f t DESCUENTO 0.00 2 3871 \N +147723 2025-07-19 13:12:48.151651+00 2025-07-19 13:12:48.151662+00 f t TOTAL 0.00 3 3871 \N +147724 2025-07-19 13:12:48.153498+00 2025-07-19 13:12:48.153507+00 f t ADELANTO 0.00 4 3871 \N +147869 2025-07-19 14:08:52.798117+00 2025-07-19 14:08:52.798126+00 f t SUBTOTAL 0.00 1 3875 \N +147870 2025-07-19 14:08:52.801243+00 2025-07-19 14:08:52.801253+00 f t DESCUENTO 0.00 2 3875 \N +147871 2025-07-19 14:08:52.803372+00 2025-07-19 14:08:52.80338+00 f t TOTAL 0.00 3 3875 \N +147872 2025-07-19 14:08:52.804836+00 2025-07-19 14:08:52.804843+00 f t ADELANTO 0.00 4 3875 \N +144361 2025-07-17 22:11:32.592291+00 2025-07-17 22:11:32.592302+00 f t SUBTOTAL 0.00 1 3798 \N +144362 2025-07-17 22:11:32.594071+00 2025-07-17 22:11:32.594079+00 f t DESCUENTO 0.00 2 3798 \N +144363 2025-07-17 22:11:32.595612+00 2025-07-17 22:11:32.595619+00 f t TOTAL 0.00 3 3798 \N +144364 2025-07-17 22:11:32.596737+00 2025-07-17 22:11:32.596743+00 f t ADELANTO 0.00 4 3798 \N +144505 2025-07-17 23:20:21.835042+00 2025-07-17 23:20:21.835058+00 f t SUBTOTAL 0.00 1 3802 \N +144506 2025-07-17 23:20:21.837113+00 2025-07-17 23:20:21.837124+00 f t DESCUENTO 0.00 2 3802 \N +144507 2025-07-17 23:20:21.839317+00 2025-07-17 23:20:21.839325+00 f t TOTAL 0.00 3 3802 \N +144508 2025-07-17 23:20:21.840656+00 2025-07-17 23:20:21.840663+00 f t ADELANTO 0.00 4 3802 \N +144573 2025-07-17 23:31:21.639861+00 2025-07-17 23:31:21.639872+00 f t SUBTOTAL 0.00 1 3803 \N +144574 2025-07-17 23:31:21.642655+00 2025-07-17 23:31:21.642664+00 f t DESCUENTO 0.00 2 3803 \N +144575 2025-07-17 23:31:21.644367+00 2025-07-17 23:31:21.644376+00 f t TOTAL 0.00 3 3803 \N +144576 2025-07-17 23:31:21.645988+00 2025-07-17 23:31:21.645996+00 f t ADELANTO 0.00 4 3803 \N +142421 2025-07-17 00:13:54.856083+00 2025-07-17 00:13:54.856091+00 f t SUBTOTAL 50000.00 1 3745 \N +142422 2025-07-17 00:13:54.857775+00 2025-07-17 00:13:54.857782+00 f t DESCUENTO 0.00 2 3745 \N +142423 2025-07-17 00:13:54.859004+00 2025-07-17 00:13:54.859009+00 f t TOTAL 50000.00 3 3745 \N +142424 2025-07-17 00:13:54.86005+00 2025-07-17 00:13:54.860056+00 f t ADELANTO 10000.00 4 3745 \N +142429 2025-07-17 00:18:59.367028+00 2025-07-17 00:18:59.367037+00 f t SUBTOTAL 0.00 1 3746 \N +142430 2025-07-17 00:18:59.36853+00 2025-07-17 00:18:59.368536+00 f t DESCUENTO 0.00 2 3746 \N +142431 2025-07-17 00:18:59.369654+00 2025-07-17 00:18:59.369659+00 f t TOTAL 0.00 3 3746 \N +142432 2025-07-17 00:18:59.370729+00 2025-07-17 00:18:59.370734+00 f t ADELANTO 0.00 4 3746 \N +142457 2025-07-17 00:21:05.570645+00 2025-07-17 00:21:05.570656+00 f t SUBTOTAL 42000.00 1 3747 \N +142458 2025-07-17 00:21:05.572835+00 2025-07-17 00:21:05.572843+00 f t DESCUENTO 0.00 2 3747 \N +142459 2025-07-17 00:21:05.574585+00 2025-07-17 00:21:05.574593+00 f t TOTAL 42000.00 3 3747 \N +142460 2025-07-17 00:21:05.57643+00 2025-07-17 00:21:05.576439+00 f t ADELANTO 9500.00 4 3747 \N +142465 2025-07-17 00:44:40.108526+00 2025-07-17 00:44:40.108538+00 f t SUBTOTAL 0.00 1 3748 \N +142466 2025-07-17 00:44:40.110337+00 2025-07-17 00:44:40.110349+00 f t DESCUENTO 0.00 2 3748 \N +142467 2025-07-17 00:44:40.111934+00 2025-07-17 00:44:40.111945+00 f t TOTAL 0.00 3 3748 \N +142468 2025-07-17 00:44:40.113366+00 2025-07-17 00:44:40.113376+00 f t ADELANTO 0.00 4 3748 \N +144965 2025-07-18 00:35:27.896278+00 2025-07-18 00:35:27.896287+00 f t SUBTOTAL 94700.00 1 3806 \N +144966 2025-07-18 00:35:27.898079+00 2025-07-18 00:35:27.898086+00 f t DESCUENTO 0.00 2 3806 \N +144967 2025-07-18 00:35:27.899237+00 2025-07-18 00:35:27.899243+00 f t TOTAL 94700.00 3 3806 \N +144968 2025-07-18 00:35:27.900213+00 2025-07-18 00:35:27.900218+00 f t ADELANTO 56700.00 4 3806 \N +145161 2025-07-18 01:10:14.348008+00 2025-07-18 01:10:14.348017+00 f t SUBTOTAL 64500.00 1 3809 \N +145162 2025-07-18 01:10:14.349593+00 2025-07-18 01:10:14.349602+00 f t DESCUENTO 0.00 2 3809 \N +145163 2025-07-18 01:10:14.350948+00 2025-07-18 01:10:14.350954+00 f t TOTAL 64500.00 3 3809 \N +145164 2025-07-18 01:10:14.352006+00 2025-07-18 01:10:14.352011+00 f t ADELANTO 17000.00 4 3809 \N +165002 2025-07-26 18:51:29.584471+00 2025-07-26 18:51:29.584477+00 f t DESCUENTO 0.00 2 4315 \N +142541 2025-07-17 00:47:26.806738+00 2025-07-17 00:47:26.806747+00 f t SUBTOTAL 50000.00 1 3749 \N +142542 2025-07-17 00:47:26.808497+00 2025-07-17 00:47:26.808503+00 f t DESCUENTO 0.00 2 3749 \N +142543 2025-07-17 00:47:26.809712+00 2025-07-17 00:47:26.809718+00 f t TOTAL 50000.00 3 3749 \N +142544 2025-07-17 00:47:26.810742+00 2025-07-17 00:47:26.810747+00 f t ADELANTO 10000.00 4 3749 \N +147237 2025-07-19 11:36:04.750278+00 2025-07-19 11:36:04.750288+00 f t SUBTOTAL 64500.00 1 3868 \N +147238 2025-07-19 11:36:04.752519+00 2025-07-19 11:36:04.752528+00 f t DESCUENTO 0.00 2 3868 \N +147239 2025-07-19 11:36:04.753842+00 2025-07-19 11:36:04.753849+00 f t TOTAL 64500.00 3 3868 \N +142565 2025-07-17 01:45:00.138254+00 2025-07-17 01:45:00.138266+00 f t SUBTOTAL 0.00 1 3750 \N +142566 2025-07-17 01:45:00.140751+00 2025-07-17 01:45:00.140761+00 f t DESCUENTO 0.00 2 3750 \N +142567 2025-07-17 01:45:00.142825+00 2025-07-17 01:45:00.142835+00 f t TOTAL 0.00 3 3750 \N +142568 2025-07-17 01:45:00.144562+00 2025-07-17 01:45:00.144572+00 f t ADELANTO 0.00 4 3750 \N +147240 2025-07-19 11:36:04.755052+00 2025-07-19 11:36:04.755058+00 f t ADELANTO 17000.00 4 3868 \N +142573 2025-07-17 02:11:03.872296+00 2025-07-17 02:11:03.872309+00 f t SUBTOTAL 0.00 1 3751 \N +142574 2025-07-17 02:11:03.874111+00 2025-07-17 02:11:03.874122+00 f t DESCUENTO 0.00 2 3751 \N +142575 2025-07-17 02:11:03.875684+00 2025-07-17 02:11:03.875694+00 f t TOTAL 0.00 3 3751 \N +142576 2025-07-17 02:11:03.877088+00 2025-07-17 02:11:03.877098+00 f t ADELANTO 0.00 4 3751 \N +143645 2025-07-17 15:51:47.82861+00 2025-07-17 15:51:47.828622+00 f t SUBTOTAL 27500.00 1 3778 \N +143646 2025-07-17 15:51:47.830736+00 2025-07-17 15:51:47.830745+00 f t DESCUENTO 0.00 2 3778 \N +143647 2025-07-17 15:51:47.832188+00 2025-07-17 15:51:47.832195+00 f t TOTAL 27500.00 3 3778 \N +143648 2025-07-17 15:51:47.833484+00 2025-07-17 15:51:47.83349+00 f t ADELANTO 27500.00 4 3778 \N +142589 2025-07-17 02:33:35.904065+00 2025-07-17 02:33:35.904079+00 f t SUBTOTAL 0.00 1 3752 \N +142590 2025-07-17 02:33:35.90615+00 2025-07-17 02:33:35.906161+00 f t DESCUENTO 0.00 2 3752 \N +142591 2025-07-17 02:33:35.907642+00 2025-07-17 02:33:35.907651+00 f t TOTAL 0.00 3 3752 \N +142592 2025-07-17 02:33:35.909059+00 2025-07-17 02:33:35.909066+00 f t ADELANTO 0.00 4 3752 \N +147729 2025-07-19 13:25:09.059875+00 2025-07-19 13:25:09.059884+00 f t SUBTOTAL 0.00 1 3872 \N +147730 2025-07-19 13:25:09.061373+00 2025-07-19 13:25:09.061381+00 f t DESCUENTO 0.00 2 3872 \N +147731 2025-07-19 13:25:09.062754+00 2025-07-19 13:25:09.062761+00 f t TOTAL 0.00 3 3872 \N +147732 2025-07-19 13:25:09.063865+00 2025-07-19 13:25:09.063871+00 f t ADELANTO 0.00 4 3872 \N +143993 2025-07-17 17:30:37.514315+00 2025-07-17 17:30:37.514327+00 f t SUBTOTAL 50000.00 1 3785 \N +143994 2025-07-17 17:30:37.516357+00 2025-07-17 17:30:37.516365+00 f t DESCUENTO 0.00 2 3785 \N +143995 2025-07-17 17:30:37.518178+00 2025-07-17 17:30:37.518186+00 f t TOTAL 50000.00 3 3785 \N +143996 2025-07-17 17:30:37.519974+00 2025-07-17 17:30:37.519984+00 f t ADELANTO 10000.00 4 3785 \N +147777 2025-07-19 13:51:31.724383+00 2025-07-19 13:51:31.724391+00 f t SUBTOTAL 50000.00 1 3873 \N +147778 2025-07-19 13:51:31.726437+00 2025-07-19 13:51:31.726445+00 f t DESCUENTO 0.00 2 3873 \N +147779 2025-07-19 13:51:31.72781+00 2025-07-19 13:51:31.727817+00 f t TOTAL 50000.00 3 3873 \N +147780 2025-07-19 13:51:31.729279+00 2025-07-19 13:51:31.729285+00 f t ADELANTO 10000.00 4 3873 \N +142649 2025-07-17 02:43:54.526139+00 2025-07-17 02:43:54.526151+00 f t SUBTOTAL 42000.00 1 3753 \N +142650 2025-07-17 02:43:54.528353+00 2025-07-17 02:43:54.528364+00 f t DESCUENTO 0.00 2 3753 \N +142651 2025-07-17 02:43:54.530108+00 2025-07-17 02:43:54.530119+00 f t TOTAL 42000.00 3 3753 \N +142652 2025-07-17 02:43:54.531557+00 2025-07-17 02:43:54.531565+00 f t ADELANTO 9500.00 4 3753 \N +142657 2025-07-17 04:53:33.16539+00 2025-07-17 04:53:33.165401+00 f t SUBTOTAL 0.00 1 3754 \N +142658 2025-07-17 04:53:33.166969+00 2025-07-17 04:53:33.166976+00 f t DESCUENTO 0.00 2 3754 \N +142659 2025-07-17 04:53:33.168194+00 2025-07-17 04:53:33.168199+00 f t TOTAL 0.00 3 3754 \N +142660 2025-07-17 04:53:33.169336+00 2025-07-17 04:53:33.169342+00 f t ADELANTO 0.00 4 3754 \N +142665 2025-07-17 04:54:52.262099+00 2025-07-17 04:54:52.262108+00 f t SUBTOTAL 0.00 1 3755 \N +142666 2025-07-17 04:54:52.263623+00 2025-07-17 04:54:52.263631+00 f t DESCUENTO 0.00 2 3755 \N +142667 2025-07-17 04:54:52.264758+00 2025-07-17 04:54:52.264763+00 f t TOTAL 0.00 3 3755 \N +142668 2025-07-17 04:54:52.266023+00 2025-07-17 04:54:52.266029+00 f t ADELANTO 0.00 4 3755 \N +142673 2025-07-17 04:54:54.965548+00 2025-07-17 04:54:54.965558+00 f t SUBTOTAL 0.00 1 3756 \N +142674 2025-07-17 04:54:54.967393+00 2025-07-17 04:54:54.967403+00 f t DESCUENTO 0.00 2 3756 \N +142675 2025-07-17 04:54:54.968796+00 2025-07-17 04:54:54.968802+00 f t TOTAL 0.00 3 3756 \N +142676 2025-07-17 04:54:54.969965+00 2025-07-17 04:54:54.96997+00 f t ADELANTO 0.00 4 3756 \N +144293 2025-07-17 22:01:46.259453+00 2025-07-17 22:01:46.259467+00 f t SUBTOTAL 0.00 1 3796 \N +144294 2025-07-17 22:01:46.261253+00 2025-07-17 22:01:46.261263+00 f t DESCUENTO 0.00 2 3796 \N +144295 2025-07-17 22:01:46.262689+00 2025-07-17 22:01:46.262698+00 f t TOTAL 0.00 3 3796 \N +142681 2025-07-17 04:55:43.753435+00 2025-07-17 04:55:43.753445+00 f t SUBTOTAL 0.00 1 3757 \N +142682 2025-07-17 04:55:43.75605+00 2025-07-17 04:55:43.756058+00 f t DESCUENTO 0.00 2 3757 \N +142683 2025-07-17 04:55:43.757642+00 2025-07-17 04:55:43.757651+00 f t TOTAL 0.00 3 3757 \N +142684 2025-07-17 04:55:43.759597+00 2025-07-17 04:55:43.759604+00 f t ADELANTO 0.00 4 3757 \N +144296 2025-07-17 22:01:46.264151+00 2025-07-17 22:01:46.264159+00 f t ADELANTO 0.00 4 3796 \N +142689 2025-07-17 05:11:19.268957+00 2025-07-17 05:11:19.268966+00 f t SUBTOTAL 0.00 1 3758 \N +142690 2025-07-17 05:11:19.270511+00 2025-07-17 05:11:19.270521+00 f t DESCUENTO 0.00 2 3758 \N +142691 2025-07-17 05:11:19.272081+00 2025-07-17 05:11:19.272089+00 f t TOTAL 0.00 3 3758 \N +142692 2025-07-17 05:11:19.274126+00 2025-07-17 05:11:19.274133+00 f t ADELANTO 0.00 4 3758 \N +148249 2025-07-19 17:08:57.949698+00 2025-07-19 17:08:57.949707+00 f t SUBTOTAL 0.00 1 3885 \N +148250 2025-07-19 17:08:57.951168+00 2025-07-19 17:08:57.951175+00 f t DESCUENTO 0.00 2 3885 \N +148251 2025-07-19 17:08:57.952419+00 2025-07-19 17:08:57.952424+00 f t TOTAL 0.00 3 3885 \N +148252 2025-07-19 17:08:57.953649+00 2025-07-19 17:08:57.953654+00 f t ADELANTO 0.00 4 3885 \N +148429 2025-07-19 19:08:54.323055+00 2025-07-19 19:08:54.323064+00 f t SUBTOTAL 50000.00 1 3891 \N +148430 2025-07-19 19:08:54.325056+00 2025-07-19 19:08:54.325066+00 f t DESCUENTO 0.00 2 3891 \N +148431 2025-07-19 19:08:54.326589+00 2025-07-19 19:08:54.326596+00 f t TOTAL 50000.00 3 3891 \N +148432 2025-07-19 19:08:54.328061+00 2025-07-19 19:08:54.328069+00 f t ADELANTO 10000.00 4 3891 \N +142745 2025-07-17 06:34:39.046966+00 2025-07-17 06:34:39.046977+00 f t SUBTOTAL 0.00 1 3759 \N +142746 2025-07-17 06:34:39.048821+00 2025-07-17 06:34:39.048829+00 f t DESCUENTO 0.00 2 3759 \N +142747 2025-07-17 06:34:39.050235+00 2025-07-17 06:34:39.050241+00 f t TOTAL 0.00 3 3759 \N +142748 2025-07-17 06:34:39.051367+00 2025-07-17 06:34:39.051373+00 f t ADELANTO 0.00 4 3759 \N +144937 2025-07-18 00:28:36.451446+00 2025-07-18 00:28:36.451455+00 f t SUBTOTAL 27500.00 1 3805 \N +144938 2025-07-18 00:28:36.453221+00 2025-07-18 00:28:36.453227+00 f t DESCUENTO 0.00 2 3805 \N +144939 2025-07-18 00:28:36.454528+00 2025-07-18 00:28:36.454536+00 f t TOTAL 27500.00 3 3805 \N +144940 2025-07-18 00:28:36.45587+00 2025-07-18 00:28:36.455879+00 f t ADELANTO 27500.00 4 3805 \N +165003 2025-07-26 18:51:29.585483+00 2025-07-26 18:51:29.585488+00 f t TOTAL 50000.00 3 4315 \N +157517 2025-07-23 08:10:40.557781+00 2025-07-23 08:10:40.557789+00 f t SUBTOTAL 0.00 1 4129 \N +157518 2025-07-23 08:10:40.559038+00 2025-07-23 08:10:40.559045+00 f t DESCUENTO 0.00 2 4129 \N +157519 2025-07-23 08:10:40.560163+00 2025-07-23 08:10:40.56017+00 f t TOTAL 0.00 3 4129 \N +143309 2025-07-17 13:39:41.483561+00 2025-07-17 13:39:41.48357+00 f t SUBTOTAL 0.00 1 3769 \N +143310 2025-07-17 13:39:41.484952+00 2025-07-17 13:39:41.484958+00 f t DESCUENTO 0.00 2 3769 \N +143311 2025-07-17 13:39:41.486129+00 2025-07-17 13:39:41.486135+00 f t TOTAL 0.00 3 3769 \N +143312 2025-07-17 13:39:41.487213+00 2025-07-17 13:39:41.487218+00 f t ADELANTO 0.00 4 3769 \N +150265 2025-07-20 11:28:14.322646+00 2025-07-20 11:28:14.322655+00 f t SUBTOTAL 0.00 1 3934 \N +143461 2025-07-17 14:14:39.249796+00 2025-07-17 14:14:39.249809+00 f t SUBTOTAL 50000.00 1 3772 \N +143462 2025-07-17 14:14:39.251758+00 2025-07-17 14:14:39.251768+00 f t DESCUENTO 0.00 2 3772 \N +143463 2025-07-17 14:14:39.25345+00 2025-07-17 14:14:39.25346+00 f t TOTAL 50000.00 3 3772 \N +143464 2025-07-17 14:14:39.254945+00 2025-07-17 14:14:39.254955+00 f t ADELANTO 10000.00 4 3772 \N +150266 2025-07-20 11:28:14.32428+00 2025-07-20 11:28:14.324289+00 f t DESCUENTO 0.00 2 3934 \N +150267 2025-07-20 11:28:14.325782+00 2025-07-20 11:28:14.325788+00 f t TOTAL 0.00 3 3934 \N +150268 2025-07-20 11:28:14.326871+00 2025-07-20 11:28:14.326877+00 f t ADELANTO 0.00 4 3934 \N +143541 2025-07-17 14:28:05.856657+00 2025-07-17 14:28:05.856672+00 f t SUBTOTAL 0.00 1 3775 \N +143542 2025-07-17 14:28:05.859331+00 2025-07-17 14:28:05.859344+00 f t DESCUENTO 0.00 2 3775 \N +143543 2025-07-17 14:28:05.861603+00 2025-07-17 14:28:05.861616+00 f t TOTAL 0.00 3 3775 \N +143544 2025-07-17 14:28:05.863494+00 2025-07-17 14:28:05.863506+00 f t ADELANTO 0.00 4 3775 \N +150313 2025-07-20 12:05:18.459126+00 2025-07-20 12:05:18.459165+00 f t SUBTOTAL 0.00 1 3936 \N +150314 2025-07-20 12:05:18.460653+00 2025-07-20 12:05:18.460661+00 f t DESCUENTO 0.00 2 3936 \N +150315 2025-07-20 12:05:18.462018+00 2025-07-20 12:05:18.462026+00 f t TOTAL 0.00 3 3936 \N +150316 2025-07-20 12:05:18.463319+00 2025-07-20 12:05:18.463327+00 f t ADELANTO 0.00 4 3936 \N +150405 2025-07-20 13:01:46.266656+00 2025-07-20 13:01:46.266665+00 f t SUBTOTAL 0.00 1 3939 \N +150406 2025-07-20 13:01:46.268404+00 2025-07-20 13:01:46.268412+00 f t DESCUENTO 0.00 2 3939 \N +150407 2025-07-20 13:01:46.269749+00 2025-07-20 13:01:46.269757+00 f t TOTAL 0.00 3 3939 \N +150408 2025-07-20 13:01:46.270945+00 2025-07-20 13:01:46.270952+00 f t ADELANTO 0.00 4 3939 \N +143929 2025-07-17 17:16:43.626435+00 2025-07-17 17:16:43.626444+00 f t SUBTOTAL 0.00 1 3784 \N +143930 2025-07-17 17:16:43.628844+00 2025-07-17 17:16:43.628855+00 f t DESCUENTO 0.00 2 3784 \N +143931 2025-07-17 17:16:43.630544+00 2025-07-17 17:16:43.630554+00 f t TOTAL 0.00 3 3784 \N +143932 2025-07-17 17:16:43.63214+00 2025-07-17 17:16:43.632149+00 f t ADELANTO 0.00 4 3784 \N +144001 2025-07-17 17:36:05.77993+00 2025-07-17 17:36:05.779945+00 f t SUBTOTAL 0.00 1 3786 \N +144002 2025-07-17 17:36:05.781869+00 2025-07-17 17:36:05.78188+00 f t DESCUENTO 0.00 2 3786 \N +144003 2025-07-17 17:36:05.783807+00 2025-07-17 17:36:05.783818+00 f t TOTAL 0.00 3 3786 \N +144004 2025-07-17 17:36:05.785469+00 2025-07-17 17:36:05.78548+00 f t ADELANTO 0.00 4 3786 \N +150697 2025-07-20 14:58:16.474266+00 2025-07-20 14:58:16.474278+00 f t SUBTOTAL 42000.00 1 3946 \N +150698 2025-07-20 14:58:16.476178+00 2025-07-20 14:58:16.476188+00 f t DESCUENTO 0.00 2 3946 \N +150699 2025-07-20 14:58:16.477535+00 2025-07-20 14:58:16.477544+00 f t TOTAL 42000.00 3 3946 \N +150700 2025-07-20 14:58:16.478923+00 2025-07-20 14:58:16.478931+00 f t ADELANTO 9500.00 4 3946 \N +150857 2025-07-20 15:58:01.695684+00 2025-07-20 15:58:01.695697+00 f t SUBTOTAL 27500.00 1 3950 \N +150858 2025-07-20 15:58:01.698024+00 2025-07-20 15:58:01.698034+00 f t DESCUENTO 0.00 2 3950 \N +150859 2025-07-20 15:58:01.699977+00 2025-07-20 15:58:01.699989+00 f t TOTAL 27500.00 3 3950 \N +150860 2025-07-20 15:58:01.702011+00 2025-07-20 15:58:01.702023+00 f t ADELANTO 27500.00 4 3950 \N +147829 2025-07-19 14:05:51.62315+00 2025-07-19 14:05:51.623159+00 f t SUBTOTAL 82700.00 1 3874 \N +147830 2025-07-19 14:05:51.624919+00 2025-07-19 14:05:51.624926+00 f t DESCUENTO 0.00 2 3874 \N +147831 2025-07-19 14:05:51.626195+00 2025-07-19 14:05:51.626204+00 f t TOTAL 82700.00 3 3874 \N +147832 2025-07-19 14:05:51.627552+00 2025-07-19 14:05:51.62756+00 f t ADELANTO 44700.00 4 3874 \N +151193 2025-07-20 18:37:18.150601+00 2025-07-20 18:37:18.150611+00 f t SUBTOTAL 0.00 1 3961 \N +151194 2025-07-20 18:37:18.152612+00 2025-07-20 18:37:18.152621+00 f t DESCUENTO 0.00 2 3961 \N +151195 2025-07-20 18:37:18.153901+00 2025-07-20 18:37:18.153907+00 f t TOTAL 0.00 3 3961 \N +148257 2025-07-19 17:59:16.630364+00 2025-07-19 17:59:16.630374+00 f t SUBTOTAL 0.00 1 3886 \N +148258 2025-07-19 17:59:16.632231+00 2025-07-19 17:59:16.632241+00 f t DESCUENTO 0.00 2 3886 \N +148259 2025-07-19 17:59:16.633898+00 2025-07-19 17:59:16.633908+00 f t TOTAL 0.00 3 3886 \N +148260 2025-07-19 17:59:16.635591+00 2025-07-19 17:59:16.635601+00 f t ADELANTO 0.00 4 3886 \N +151196 2025-07-20 18:37:18.155196+00 2025-07-20 18:37:18.155202+00 f t ADELANTO 0.00 4 3961 \N +143017 2025-07-17 07:40:42.657166+00 2025-07-17 07:40:42.657195+00 f t SUBTOTAL 42000.00 1 3760 \N +143018 2025-07-17 07:40:42.659105+00 2025-07-17 07:40:42.659115+00 f t DESCUENTO 0.00 2 3760 \N +143019 2025-07-17 07:40:42.660705+00 2025-07-17 07:40:42.660716+00 f t TOTAL 42000.00 3 3760 \N +143020 2025-07-17 07:40:42.662291+00 2025-07-17 07:40:42.662301+00 f t ADELANTO 9500.00 4 3760 \N +148737 2025-07-19 19:29:10.301151+00 2025-07-19 19:29:10.301164+00 f t SUBTOTAL 50000.00 1 3895 \N +148738 2025-07-19 19:29:10.3036+00 2025-07-19 19:29:10.303611+00 f t DESCUENTO 0.00 2 3895 \N +148739 2025-07-19 19:29:10.305352+00 2025-07-19 19:29:10.305363+00 f t TOTAL 50000.00 3 3895 \N +148740 2025-07-19 19:29:10.306998+00 2025-07-19 19:29:10.307007+00 f t ADELANTO 10000.00 4 3895 \N +151681 2025-07-20 20:43:13.578906+00 2025-07-20 20:43:13.578918+00 f t SUBTOTAL 0.00 1 3971 \N +151682 2025-07-20 20:43:13.580901+00 2025-07-20 20:43:13.580912+00 f t DESCUENTO 0.00 2 3971 \N +151683 2025-07-20 20:43:13.582265+00 2025-07-20 20:43:13.582274+00 f t TOTAL 0.00 3 3971 \N +143053 2025-07-17 10:50:12.350346+00 2025-07-17 10:50:12.350356+00 f t SUBTOTAL 0.00 1 3761 \N +143054 2025-07-17 10:50:12.352391+00 2025-07-17 10:50:12.352398+00 f t DESCUENTO 0.00 2 3761 \N +143055 2025-07-17 10:50:12.35381+00 2025-07-17 10:50:12.353817+00 f t TOTAL 0.00 3 3761 \N +143056 2025-07-17 10:50:12.355858+00 2025-07-17 10:50:12.355865+00 f t ADELANTO 0.00 4 3761 \N +151684 2025-07-20 20:43:13.583669+00 2025-07-20 20:43:13.583677+00 f t ADELANTO 0.00 4 3971 \N +151717 2025-07-20 20:45:02.757668+00 2025-07-20 20:45:02.757682+00 f t SUBTOTAL 49500.00 1 3972 \N +151718 2025-07-20 20:45:02.762627+00 2025-07-20 20:45:02.76264+00 f t DESCUENTO 0.00 2 3972 \N +151719 2025-07-20 20:45:02.766363+00 2025-07-20 20:45:02.766376+00 f t TOTAL 49500.00 3 3972 \N +151720 2025-07-20 20:45:02.770082+00 2025-07-20 20:45:02.770095+00 f t ADELANTO 11500.00 4 3972 \N +145229 2025-07-18 01:20:34.753943+00 2025-07-18 01:20:34.753953+00 f t SUBTOTAL 0.00 1 3810 \N +145230 2025-07-18 01:20:34.756641+00 2025-07-18 01:20:34.756653+00 f t DESCUENTO 0.00 2 3810 \N +145231 2025-07-18 01:20:34.758209+00 2025-07-18 01:20:34.758218+00 f t TOTAL 0.00 3 3810 \N +145232 2025-07-18 01:20:34.759587+00 2025-07-18 01:20:34.759594+00 f t ADELANTO 0.00 4 3810 \N +151897 2025-07-20 22:17:19.805774+00 2025-07-20 22:17:19.805783+00 f t SUBTOTAL 0.00 1 3977 \N +145257 2025-07-18 02:57:05.932117+00 2025-07-18 02:57:05.932127+00 f t SUBTOTAL 50000.00 1 3811 \N +145258 2025-07-18 02:57:05.934188+00 2025-07-18 02:57:05.934196+00 f t DESCUENTO 0.00 2 3811 \N +145259 2025-07-18 02:57:05.935663+00 2025-07-18 02:57:05.935671+00 f t TOTAL 50000.00 3 3811 \N +145260 2025-07-18 02:57:05.937038+00 2025-07-18 02:57:05.937045+00 f t ADELANTO 10000.00 4 3811 \N +146597 2025-07-18 23:29:57.431282+00 2025-07-18 23:29:57.431294+00 f t SUBTOTAL 50000.00 1 3849 \N +146598 2025-07-18 23:29:57.432833+00 2025-07-18 23:29:57.432839+00 f t DESCUENTO 0.00 2 3849 \N +146599 2025-07-18 23:29:57.434055+00 2025-07-18 23:29:57.434061+00 f t TOTAL 50000.00 3 3849 \N +146600 2025-07-18 23:29:57.435251+00 2025-07-18 23:29:57.435256+00 f t ADELANTO 10000.00 4 3849 \N +165004 2025-07-26 18:51:29.587054+00 2025-07-26 18:51:29.58706+00 f t ADELANTO 10000.00 4 4315 \N +257821 2025-09-01 12:09:58.403599+00 2025-09-01 12:09:58.40361+00 f t SUBTOTAL 0.00 1 6630 \N +153793 2025-07-21 15:32:09.110066+00 2025-07-21 15:32:09.110076+00 f t SUBTOTAL 0.00 1 4028 \N +153794 2025-07-21 15:32:09.112602+00 2025-07-21 15:32:09.112614+00 f t DESCUENTO 0.00 2 4028 \N +153795 2025-07-21 15:32:09.114361+00 2025-07-21 15:32:09.114368+00 f t TOTAL 0.00 3 4028 \N +153796 2025-07-21 15:32:09.115765+00 2025-07-21 15:32:09.115772+00 f t ADELANTO 0.00 4 4028 \N +147193 2025-07-19 11:00:11.876413+00 2025-07-19 11:00:11.876426+00 f t SUBTOTAL 50000.00 1 3867 \N +147194 2025-07-19 11:00:11.879318+00 2025-07-19 11:00:11.879332+00 f t DESCUENTO 0.00 2 3867 \N +147195 2025-07-19 11:00:11.881279+00 2025-07-19 11:00:11.881289+00 f t TOTAL 50000.00 3 3867 \N +147196 2025-07-19 11:00:11.883362+00 2025-07-19 11:00:11.883373+00 f t ADELANTO 10000.00 4 3867 \N +150413 2025-07-20 13:04:18.741213+00 2025-07-20 13:04:18.741223+00 f t SUBTOTAL 0.00 1 3940 \N +150414 2025-07-20 13:04:18.742856+00 2025-07-20 13:04:18.742865+00 f t DESCUENTO 0.00 2 3940 \N +150415 2025-07-20 13:04:18.744247+00 2025-07-20 13:04:18.744253+00 f t TOTAL 0.00 3 3940 \N +150416 2025-07-20 13:04:18.745502+00 2025-07-20 13:04:18.745508+00 f t ADELANTO 0.00 4 3940 \N +150505 2025-07-20 14:07:27.747617+00 2025-07-20 14:07:27.747625+00 f t SUBTOTAL 50000.00 1 3943 \N +150506 2025-07-20 14:07:27.749351+00 2025-07-20 14:07:27.749368+00 f t DESCUENTO 0.00 2 3943 \N +150507 2025-07-20 14:07:27.750696+00 2025-07-20 14:07:27.750702+00 f t TOTAL 50000.00 3 3943 \N +150508 2025-07-20 14:07:27.75192+00 2025-07-20 14:07:27.751926+00 f t ADELANTO 10000.00 4 3943 \N +145321 2025-07-18 03:24:02.090687+00 2025-07-18 03:24:02.090702+00 f t SUBTOTAL 0.00 1 3812 \N +145322 2025-07-18 03:24:02.092828+00 2025-07-18 03:24:02.092838+00 f t DESCUENTO 0.00 2 3812 \N +145323 2025-07-18 03:24:02.094232+00 2025-07-18 03:24:02.094241+00 f t TOTAL 0.00 3 3812 \N +145324 2025-07-18 03:24:02.095644+00 2025-07-18 03:24:02.095653+00 f t ADELANTO 0.00 4 3812 \N +145345 2025-07-18 05:26:58.666195+00 2025-07-18 05:26:58.666208+00 f t SUBTOTAL 0.00 1 3813 \N +145346 2025-07-18 05:26:58.668136+00 2025-07-18 05:26:58.668144+00 f t DESCUENTO 0.00 2 3813 \N +145347 2025-07-18 05:26:58.669146+00 2025-07-18 05:26:58.669151+00 f t TOTAL 0.00 3 3813 \N +145348 2025-07-18 05:26:58.670088+00 2025-07-18 05:26:58.670093+00 f t ADELANTO 0.00 4 3813 \N +145353 2025-07-18 05:39:22.924424+00 2025-07-18 05:39:22.924433+00 f t SUBTOTAL 0.00 1 3814 \N +145354 2025-07-18 05:39:22.925754+00 2025-07-18 05:39:22.92576+00 f t DESCUENTO 0.00 2 3814 \N +145355 2025-07-18 05:39:22.926892+00 2025-07-18 05:39:22.926898+00 f t TOTAL 0.00 3 3814 \N +145356 2025-07-18 05:39:22.928115+00 2025-07-18 05:39:22.928123+00 f t ADELANTO 0.00 4 3814 \N +151089 2025-07-20 17:31:32.758396+00 2025-07-20 17:31:32.758405+00 f t SUBTOTAL 77500.00 1 3958 \N +151090 2025-07-20 17:31:32.760183+00 2025-07-20 17:31:32.760193+00 f t DESCUENTO 0.00 2 3958 \N +151091 2025-07-20 17:31:32.761429+00 2025-07-20 17:31:32.761435+00 f t TOTAL 77500.00 3 3958 \N +151092 2025-07-20 17:31:32.762593+00 2025-07-20 17:31:32.762599+00 f t ADELANTO 20000.00 4 3958 \N +151129 2025-07-20 17:46:24.129535+00 2025-07-20 17:46:24.129547+00 f t SUBTOTAL 0.00 1 3960 \N +151130 2025-07-20 17:46:24.132275+00 2025-07-20 17:46:24.132283+00 f t DESCUENTO 0.00 2 3960 \N +151131 2025-07-20 17:46:24.133468+00 2025-07-20 17:46:24.133474+00 f t TOTAL 0.00 3 3960 \N +151132 2025-07-20 17:46:24.134597+00 2025-07-20 17:46:24.134604+00 f t ADELANTO 0.00 4 3960 \N +148265 2025-07-19 17:59:54.857433+00 2025-07-19 17:59:54.857447+00 f t SUBTOTAL 0.00 1 3887 \N +148266 2025-07-19 17:59:54.865605+00 2025-07-19 17:59:54.865615+00 f t DESCUENTO 0.00 2 3887 \N +148267 2025-07-19 17:59:54.868008+00 2025-07-19 17:59:54.868017+00 f t TOTAL 0.00 3 3887 \N +148268 2025-07-19 17:59:54.869401+00 2025-07-19 17:59:54.869409+00 f t ADELANTO 0.00 4 3887 \N +145437 2025-07-18 11:32:11.750346+00 2025-07-18 11:32:11.750357+00 f t SUBTOTAL 0.00 1 3815 \N +145438 2025-07-18 11:32:11.75229+00 2025-07-18 11:32:11.752299+00 f t DESCUENTO 0.00 2 3815 \N +145439 2025-07-18 11:32:11.753658+00 2025-07-18 11:32:11.753668+00 f t TOTAL 0.00 3 3815 \N +145440 2025-07-18 11:32:11.755029+00 2025-07-18 11:32:11.755035+00 f t ADELANTO 0.00 4 3815 \N +148601 2025-07-19 19:15:21.241584+00 2025-07-19 19:15:21.241593+00 f t SUBTOTAL 42000.00 1 3892 \N +148602 2025-07-19 19:15:21.243291+00 2025-07-19 19:15:21.243298+00 f t DESCUENTO 0.00 2 3892 \N +148603 2025-07-19 19:15:21.244588+00 2025-07-19 19:15:21.244596+00 f t TOTAL 42000.00 3 3892 \N +148604 2025-07-19 19:15:21.245793+00 2025-07-19 19:15:21.245799+00 f t ADELANTO 9500.00 4 3892 \N +145493 2025-07-18 12:45:03.690813+00 2025-07-18 12:45:03.690827+00 f t SUBTOTAL 152700.00 1 3816 \N +145494 2025-07-18 12:45:03.702939+00 2025-07-18 12:45:03.703304+00 f t DESCUENTO 0.00 2 3816 \N +145495 2025-07-18 12:45:03.713465+00 2025-07-18 12:45:03.71348+00 f t TOTAL 152700.00 3 3816 \N +145496 2025-07-18 12:45:03.72467+00 2025-07-18 12:45:03.724685+00 f t ADELANTO 59700.00 4 3816 \N +151725 2025-07-20 20:56:25.329421+00 2025-07-20 20:56:25.32943+00 f t SUBTOTAL 0.00 1 3973 \N +151726 2025-07-20 20:56:25.330793+00 2025-07-20 20:56:25.330801+00 f t DESCUENTO 0.00 2 3973 \N +151727 2025-07-20 20:56:25.33186+00 2025-07-20 20:56:25.331865+00 f t TOTAL 0.00 3 3973 \N +151728 2025-07-20 20:56:25.332755+00 2025-07-20 20:56:25.33276+00 f t ADELANTO 0.00 4 3973 \N +145501 2025-07-18 12:47:04.726674+00 2025-07-18 12:47:04.726688+00 f t SUBTOTAL 0.00 1 3817 \N +145502 2025-07-18 12:47:04.728532+00 2025-07-18 12:47:04.72854+00 f t DESCUENTO 0.00 2 3817 \N +145503 2025-07-18 12:47:04.729978+00 2025-07-18 12:47:04.729985+00 f t TOTAL 0.00 3 3817 \N +145504 2025-07-18 12:47:04.731611+00 2025-07-18 12:47:04.731617+00 f t ADELANTO 0.00 4 3817 \N +149109 2025-07-19 23:30:53.601765+00 2025-07-19 23:30:53.601773+00 f t SUBTOTAL 0.00 1 3905 \N +149110 2025-07-19 23:30:53.603933+00 2025-07-19 23:30:53.603944+00 f t DESCUENTO 0.00 2 3905 \N +149111 2025-07-19 23:30:53.605462+00 2025-07-19 23:30:53.60547+00 f t TOTAL 0.00 3 3905 \N +149112 2025-07-19 23:30:53.606933+00 2025-07-19 23:30:53.606943+00 f t ADELANTO 0.00 4 3905 \N +151898 2025-07-20 22:17:19.807117+00 2025-07-20 22:17:19.807124+00 f t DESCUENTO 0.00 2 3977 \N +151899 2025-07-20 22:17:19.808419+00 2025-07-20 22:17:19.808425+00 f t TOTAL 0.00 3 3977 \N +151900 2025-07-20 22:17:19.809326+00 2025-07-20 22:17:19.809331+00 f t ADELANTO 0.00 4 3977 \N +149169 2025-07-19 23:36:39.464252+00 2025-07-19 23:36:39.46426+00 f t SUBTOTAL 64500.00 1 3906 \N +149170 2025-07-19 23:36:39.465678+00 2025-07-19 23:36:39.465685+00 f t DESCUENTO 0.00 2 3906 \N +149171 2025-07-19 23:36:39.466828+00 2025-07-19 23:36:39.466834+00 f t TOTAL 64500.00 3 3906 \N +149172 2025-07-19 23:36:39.467867+00 2025-07-19 23:36:39.467872+00 f t ADELANTO 17000.00 4 3906 \N +257822 2025-09-01 12:09:58.405301+00 2025-09-01 12:09:58.40531+00 f t DESCUENTO 0.00 2 6630 \N +257823 2025-09-01 12:09:58.407127+00 2025-09-01 12:09:58.40716+00 f t TOTAL 0.00 3 6630 \N +257824 2025-09-01 12:09:58.408509+00 2025-09-01 12:09:58.408518+00 f t ADELANTO 0.00 4 6630 \N +146605 2025-07-18 23:41:22.937194+00 2025-07-18 23:41:22.937204+00 f t SUBTOTAL 0.00 1 3850 \N +146606 2025-07-18 23:41:22.938632+00 2025-07-18 23:41:22.93864+00 f t DESCUENTO 0.00 2 3850 \N +146607 2025-07-18 23:41:22.940018+00 2025-07-18 23:41:22.940024+00 f t TOTAL 0.00 3 3850 \N +146608 2025-07-18 23:41:22.941139+00 2025-07-18 23:41:22.941145+00 f t ADELANTO 0.00 4 3850 \N +150125 2025-07-20 08:29:47.272834+00 2025-07-20 08:29:47.272843+00 f t SUBTOTAL 0.00 1 3931 \N +150126 2025-07-20 08:29:47.274836+00 2025-07-20 08:29:47.274844+00 f t DESCUENTO 0.00 2 3931 \N +150127 2025-07-20 08:29:47.276294+00 2025-07-20 08:29:47.276302+00 f t TOTAL 0.00 3 3931 \N +150128 2025-07-20 08:29:47.277438+00 2025-07-20 08:29:47.277444+00 f t ADELANTO 0.00 4 3931 \N +157520 2025-07-23 08:10:40.561238+00 2025-07-23 08:10:40.561244+00 f t ADELANTO 0.00 4 4129 \N +146753 2025-07-19 01:40:51.898905+00 2025-07-19 01:40:51.898918+00 f t SUBTOTAL 0.00 1 3856 \N +146754 2025-07-19 01:40:51.900874+00 2025-07-19 01:40:51.900886+00 f t DESCUENTO 0.00 2 3856 \N +146755 2025-07-19 01:40:51.902548+00 2025-07-19 01:40:51.902559+00 f t TOTAL 0.00 3 3856 \N +146756 2025-07-19 01:40:51.904759+00 2025-07-19 01:40:51.90477+00 f t ADELANTO 0.00 4 3856 \N +146809 2025-07-19 01:42:55.76709+00 2025-07-19 01:42:55.767103+00 f t SUBTOTAL 27500.00 1 3857 \N +146810 2025-07-19 01:42:55.769352+00 2025-07-19 01:42:55.769362+00 f t DESCUENTO 0.00 2 3857 \N +146811 2025-07-19 01:42:55.771122+00 2025-07-19 01:42:55.771174+00 f t TOTAL 27500.00 3 3857 \N +146812 2025-07-19 01:42:55.773047+00 2025-07-19 01:42:55.773059+00 f t ADELANTO 27500.00 4 3857 \N +153801 2025-07-21 15:39:10.25122+00 2025-07-21 15:39:10.251232+00 f t SUBTOTAL 0.00 1 4029 \N +150421 2025-07-20 13:05:23.902202+00 2025-07-20 13:05:23.902214+00 f t SUBTOTAL 0.00 1 3941 \N +150422 2025-07-20 13:05:23.90381+00 2025-07-20 13:05:23.90382+00 f t DESCUENTO 0.00 2 3941 \N +150423 2025-07-20 13:05:23.905317+00 2025-07-20 13:05:23.905325+00 f t TOTAL 0.00 3 3941 \N +150424 2025-07-20 13:05:23.90645+00 2025-07-20 13:05:23.906458+00 f t ADELANTO 0.00 4 3941 \N +145605 2025-07-18 13:00:55.783642+00 2025-07-18 13:00:55.783653+00 f t SUBTOTAL 0.00 1 3819 \N +145606 2025-07-18 13:00:55.785473+00 2025-07-18 13:00:55.785482+00 f t DESCUENTO 0.00 2 3819 \N +145607 2025-07-18 13:00:55.787946+00 2025-07-18 13:00:55.787956+00 f t TOTAL 0.00 3 3819 \N +145608 2025-07-18 13:00:55.78933+00 2025-07-18 13:00:55.789337+00 f t ADELANTO 0.00 4 3819 \N +147977 2025-07-19 14:28:32.822469+00 2025-07-19 14:28:32.822482+00 f t SUBTOTAL 50000.00 1 3878 \N +147978 2025-07-19 14:28:32.824457+00 2025-07-19 14:28:32.824466+00 f t DESCUENTO 0.00 2 3878 \N +147979 2025-07-19 14:28:32.826151+00 2025-07-19 14:28:32.826158+00 f t TOTAL 50000.00 3 3878 \N +147980 2025-07-19 14:28:32.82737+00 2025-07-19 14:28:32.827377+00 f t ADELANTO 10000.00 4 3878 \N +148161 2025-07-19 15:10:52.34681+00 2025-07-19 15:10:52.346819+00 f t SUBTOTAL 42000.00 1 3879 \N +148162 2025-07-19 15:10:52.348495+00 2025-07-19 15:10:52.348502+00 f t DESCUENTO 0.00 2 3879 \N +148163 2025-07-19 15:10:52.34961+00 2025-07-19 15:10:52.349616+00 f t TOTAL 42000.00 3 3879 \N +148164 2025-07-19 15:10:52.350608+00 2025-07-19 15:10:52.350613+00 f t ADELANTO 9500.00 4 3879 \N +145689 2025-07-18 13:03:42.441102+00 2025-07-18 13:03:42.441115+00 f t SUBTOTAL 70000.00 1 3818 \N +145690 2025-07-18 13:03:42.44303+00 2025-07-18 13:03:42.443037+00 f t DESCUENTO 0.00 2 3818 \N +145691 2025-07-18 13:03:42.444348+00 2025-07-18 13:03:42.444353+00 f t TOTAL 70000.00 3 3818 \N +145692 2025-07-18 13:03:42.445603+00 2025-07-18 13:03:42.445609+00 f t ADELANTO 15000.00 4 3818 \N +145697 2025-07-18 13:28:37.762298+00 2025-07-18 13:28:37.762307+00 f t SUBTOTAL 0.00 1 3820 \N +145698 2025-07-18 13:28:37.763519+00 2025-07-18 13:28:37.763525+00 f t DESCUENTO 0.00 2 3820 \N +145699 2025-07-18 13:28:37.764475+00 2025-07-18 13:28:37.76448+00 f t TOTAL 0.00 3 3820 \N +145700 2025-07-18 13:28:37.765562+00 2025-07-18 13:28:37.765567+00 f t ADELANTO 0.00 4 3820 \N +145705 2025-07-18 13:53:15.628085+00 2025-07-18 13:53:15.628095+00 f t SUBTOTAL 0.00 1 3821 \N +145706 2025-07-18 13:53:15.629487+00 2025-07-18 13:53:15.629494+00 f t DESCUENTO 0.00 2 3821 \N +145707 2025-07-18 13:53:15.630689+00 2025-07-18 13:53:15.630695+00 f t TOTAL 0.00 3 3821 \N +145708 2025-07-18 13:53:15.631869+00 2025-07-18 13:53:15.631874+00 f t ADELANTO 0.00 4 3821 \N +148401 2025-07-19 18:50:42.385618+00 2025-07-19 18:50:42.385627+00 f t SUBTOTAL 49500.00 1 3890 \N +148402 2025-07-19 18:50:42.38733+00 2025-07-19 18:50:42.38734+00 f t DESCUENTO 0.00 2 3890 \N +148403 2025-07-19 18:50:42.388775+00 2025-07-19 18:50:42.388782+00 f t TOTAL 49500.00 3 3890 \N +148404 2025-07-19 18:50:42.389982+00 2025-07-19 18:50:42.389988+00 f t ADELANTO 11500.00 4 3890 \N +145757 2025-07-18 14:34:02.803178+00 2025-07-18 14:34:02.80319+00 f t SUBTOTAL 62000.00 1 3822 \N +145758 2025-07-18 14:34:02.805484+00 2025-07-18 14:34:02.805496+00 f t DESCUENTO 0.00 2 3822 \N +145759 2025-07-18 14:34:02.807877+00 2025-07-18 14:34:02.807886+00 f t TOTAL 62000.00 3 3822 \N +145760 2025-07-18 14:34:02.80962+00 2025-07-18 14:34:02.809628+00 f t ADELANTO 12000.00 4 3822 \N +145765 2025-07-18 15:54:04.042757+00 2025-07-18 15:54:04.04277+00 f t SUBTOTAL 0.00 1 3823 \N +145766 2025-07-18 15:54:04.044435+00 2025-07-18 15:54:04.044442+00 f t DESCUENTO 0.00 2 3823 \N +145767 2025-07-18 15:54:04.045763+00 2025-07-18 15:54:04.045771+00 f t TOTAL 0.00 3 3823 \N +145768 2025-07-18 15:54:04.047272+00 2025-07-18 15:54:04.047281+00 f t ADELANTO 0.00 4 3823 \N +145773 2025-07-18 16:28:26.529452+00 2025-07-18 16:28:26.529467+00 f t SUBTOTAL 0.00 1 3824 \N +145774 2025-07-18 16:28:26.531374+00 2025-07-18 16:28:26.531381+00 f t DESCUENTO 0.00 2 3824 \N +145775 2025-07-18 16:28:26.532889+00 2025-07-18 16:28:26.532895+00 f t TOTAL 0.00 3 3824 \N +145776 2025-07-18 16:28:26.534033+00 2025-07-18 16:28:26.534038+00 f t ADELANTO 0.00 4 3824 \N +145781 2025-07-18 16:31:06.619701+00 2025-07-18 16:31:06.619715+00 f t SUBTOTAL 0.00 1 3825 \N +145782 2025-07-18 16:31:06.621706+00 2025-07-18 16:31:06.621719+00 f t DESCUENTO 0.00 2 3825 \N +145783 2025-07-18 16:31:06.626555+00 2025-07-18 16:31:06.626569+00 f t TOTAL 0.00 3 3825 \N +145784 2025-07-18 16:31:06.629234+00 2025-07-18 16:31:06.629247+00 f t ADELANTO 0.00 4 3825 \N +148853 2025-07-19 20:27:11.151821+00 2025-07-19 20:27:11.15183+00 f t SUBTOTAL 70000.00 1 3898 \N +148854 2025-07-19 20:27:11.153671+00 2025-07-19 20:27:11.153682+00 f t DESCUENTO 0.00 2 3898 \N +148855 2025-07-19 20:27:11.155049+00 2025-07-19 20:27:11.155055+00 f t TOTAL 70000.00 3 3898 \N +148856 2025-07-19 20:27:11.156302+00 2025-07-19 20:27:11.156308+00 f t ADELANTO 15000.00 4 3898 \N +148933 2025-07-19 22:22:55.231118+00 2025-07-19 22:22:55.231162+00 f t SUBTOTAL 50000.00 1 3902 \N +148934 2025-07-19 22:22:55.232754+00 2025-07-19 22:22:55.232767+00 f t DESCUENTO 0.00 2 3902 \N +148935 2025-07-19 22:22:55.233917+00 2025-07-19 22:22:55.233923+00 f t TOTAL 50000.00 3 3902 \N +148936 2025-07-19 22:22:55.235094+00 2025-07-19 22:22:55.235102+00 f t ADELANTO 10000.00 4 3902 \N +145813 2025-07-18 16:54:07.922381+00 2025-07-18 16:54:07.922391+00 f t SUBTOTAL 27500.00 1 3826 \N +145814 2025-07-18 16:54:07.924101+00 2025-07-18 16:54:07.924111+00 f t DESCUENTO 0.00 2 3826 \N +145815 2025-07-18 16:54:07.92557+00 2025-07-18 16:54:07.92558+00 f t TOTAL 27500.00 3 3826 \N +145816 2025-07-18 16:54:07.927026+00 2025-07-18 16:54:07.927035+00 f t ADELANTO 27500.00 4 3826 \N +161389 2025-07-25 09:38:10.572152+00 2025-07-25 09:38:10.572161+00 f t SUBTOTAL 0.00 1 4237 \N +161390 2025-07-25 09:38:10.574614+00 2025-07-25 09:38:10.574622+00 f t DESCUENTO 0.00 2 4237 \N +161391 2025-07-25 09:38:10.576097+00 2025-07-25 09:38:10.576104+00 f t TOTAL 0.00 3 4237 \N +153802 2025-07-21 15:39:10.252892+00 2025-07-21 15:39:10.252901+00 f t DESCUENTO 0.00 2 4029 \N +153803 2025-07-21 15:39:10.254394+00 2025-07-21 15:39:10.254403+00 f t TOTAL 0.00 3 4029 \N +153804 2025-07-21 15:39:10.255546+00 2025-07-21 15:39:10.255555+00 f t ADELANTO 0.00 4 4029 \N +150181 2025-07-20 08:33:12.656985+00 2025-07-20 08:33:12.656998+00 f t SUBTOTAL 0.00 1 3932 \N +150182 2025-07-20 08:33:12.659567+00 2025-07-20 08:33:12.659577+00 f t DESCUENTO 0.00 2 3932 \N +150183 2025-07-20 08:33:12.661201+00 2025-07-20 08:33:12.66121+00 f t TOTAL 0.00 3 3932 \N +150184 2025-07-20 08:33:12.662895+00 2025-07-20 08:33:12.662904+00 f t ADELANTO 0.00 4 3932 \N +145861 2025-07-18 17:09:30.57202+00 2025-07-18 17:09:30.572029+00 f t SUBTOTAL 27500.00 1 3827 \N +145862 2025-07-18 17:09:30.574262+00 2025-07-18 17:09:30.574269+00 f t DESCUENTO 0.00 2 3827 \N +145863 2025-07-18 17:09:30.57556+00 2025-07-18 17:09:30.575566+00 f t TOTAL 27500.00 3 3827 \N +145864 2025-07-18 17:09:30.576714+00 2025-07-18 17:09:30.576721+00 f t ADELANTO 27500.00 4 3827 \N +146817 2025-07-19 01:55:40.070317+00 2025-07-19 01:55:40.07033+00 f t SUBTOTAL 0.00 1 3858 \N +146818 2025-07-19 01:55:40.071872+00 2025-07-19 01:55:40.071879+00 f t DESCUENTO 0.00 2 3858 \N +145869 2025-07-18 17:36:52.401116+00 2025-07-18 17:36:52.401126+00 f t SUBTOTAL 0.00 1 3828 \N +145870 2025-07-18 17:36:52.402827+00 2025-07-18 17:36:52.402837+00 f t DESCUENTO 0.00 2 3828 \N +145871 2025-07-18 17:36:52.404709+00 2025-07-18 17:36:52.404716+00 f t TOTAL 0.00 3 3828 \N +145872 2025-07-18 17:36:52.406173+00 2025-07-18 17:36:52.40618+00 f t ADELANTO 0.00 4 3828 \N +146819 2025-07-19 01:55:40.073246+00 2025-07-19 01:55:40.073254+00 f t TOTAL 0.00 3 3858 \N +146820 2025-07-19 01:55:40.074463+00 2025-07-19 01:55:40.074469+00 f t ADELANTO 0.00 4 3858 \N +145877 2025-07-18 17:37:27.894758+00 2025-07-18 17:37:27.894766+00 f t SUBTOTAL 0.00 1 3829 \N +145878 2025-07-18 17:37:27.896273+00 2025-07-18 17:37:27.89628+00 f t DESCUENTO 0.00 2 3829 \N +145879 2025-07-18 17:37:27.897731+00 2025-07-18 17:37:27.897737+00 f t TOTAL 0.00 3 3829 \N +145880 2025-07-18 17:37:27.898923+00 2025-07-18 17:37:27.898929+00 f t ADELANTO 0.00 4 3829 \N +154049 2025-07-21 15:44:30.165115+00 2025-07-21 15:44:30.165124+00 f t SUBTOTAL 0.00 1 4031 \N +145885 2025-07-18 17:43:16.346321+00 2025-07-18 17:43:16.346331+00 f t SUBTOTAL 0.00 1 3830 \N +145886 2025-07-18 17:43:16.34787+00 2025-07-18 17:43:16.347878+00 f t DESCUENTO 0.00 2 3830 \N +145887 2025-07-18 17:43:16.34924+00 2025-07-18 17:43:16.349247+00 f t TOTAL 0.00 3 3830 \N +145888 2025-07-18 17:43:16.350384+00 2025-07-18 17:43:16.35039+00 f t ADELANTO 0.00 4 3830 \N +154050 2025-07-21 15:44:30.166976+00 2025-07-21 15:44:30.166983+00 f t DESCUENTO 0.00 2 4031 \N +154051 2025-07-21 15:44:30.168077+00 2025-07-21 15:44:30.168083+00 f t TOTAL 0.00 3 4031 \N +154052 2025-07-21 15:44:30.169053+00 2025-07-21 15:44:30.169058+00 f t ADELANTO 0.00 4 4031 \N +145893 2025-07-18 17:51:24.039863+00 2025-07-18 17:51:24.039873+00 f t SUBTOTAL 0.00 1 3831 \N +145894 2025-07-18 17:51:24.041554+00 2025-07-18 17:51:24.041563+00 f t DESCUENTO 0.00 2 3831 \N +145895 2025-07-18 17:51:24.043158+00 2025-07-18 17:51:24.043167+00 f t TOTAL 0.00 3 3831 \N +145896 2025-07-18 17:51:24.044358+00 2025-07-18 17:51:24.044364+00 f t ADELANTO 0.00 4 3831 \N +145901 2025-07-18 17:54:09.886126+00 2025-07-18 17:54:09.886139+00 f t SUBTOTAL 0.00 1 3832 \N +145902 2025-07-18 17:54:09.888007+00 2025-07-18 17:54:09.888017+00 f t DESCUENTO 0.00 2 3832 \N +145903 2025-07-18 17:54:09.889729+00 2025-07-18 17:54:09.889738+00 f t TOTAL 0.00 3 3832 \N +145904 2025-07-18 17:54:09.891079+00 2025-07-18 17:54:09.891087+00 f t ADELANTO 0.00 4 3832 \N +154365 2025-07-21 17:34:51.575798+00 2025-07-21 17:34:51.575806+00 f t SUBTOTAL 102700.00 1 4038 \N +145921 2025-07-18 18:21:22.903202+00 2025-07-18 18:21:22.903214+00 f t SUBTOTAL 0.00 1 3833 \N +145922 2025-07-18 18:21:22.905314+00 2025-07-18 18:21:22.905325+00 f t DESCUENTO 0.00 2 3833 \N +145923 2025-07-18 18:21:22.907026+00 2025-07-18 18:21:22.907036+00 f t TOTAL 0.00 3 3833 \N +145924 2025-07-18 18:21:22.909791+00 2025-07-18 18:21:22.909799+00 f t ADELANTO 0.00 4 3833 \N +154366 2025-07-21 17:34:51.577648+00 2025-07-21 17:34:51.577657+00 f t DESCUENTO 0.00 2 4038 \N +154367 2025-07-21 17:34:51.578991+00 2025-07-21 17:34:51.578999+00 f t TOTAL 102700.00 3 4038 \N +154368 2025-07-21 17:34:51.580406+00 2025-07-21 17:34:51.580412+00 f t ADELANTO 64700.00 4 4038 \N +154425 2025-07-21 18:14:02.582791+00 2025-07-21 18:14:02.582802+00 f t SUBTOTAL 0.00 1 4042 \N +154426 2025-07-21 18:14:02.585261+00 2025-07-21 18:14:02.585273+00 f t DESCUENTO 0.00 2 4042 \N +154427 2025-07-21 18:14:02.587559+00 2025-07-21 18:14:02.587568+00 f t TOTAL 0.00 3 4042 \N +154428 2025-07-21 18:14:02.589359+00 2025-07-21 18:14:02.589368+00 f t ADELANTO 0.00 4 4042 \N +147893 2025-07-19 14:10:03.168485+00 2025-07-19 14:10:03.1685+00 f t SUBTOTAL 0.00 1 3876 \N +147894 2025-07-19 14:10:03.174774+00 2025-07-19 14:10:03.174789+00 f t DESCUENTO 0.00 2 3876 \N +147895 2025-07-19 14:10:03.179902+00 2025-07-19 14:10:03.179917+00 f t TOTAL 0.00 3 3876 \N +147896 2025-07-19 14:10:03.183551+00 2025-07-19 14:10:03.183564+00 f t ADELANTO 0.00 4 3876 \N +151097 2025-07-20 17:44:36.600103+00 2025-07-20 17:44:36.60011+00 f t SUBTOTAL 0.00 1 3959 \N +151098 2025-07-20 17:44:36.601095+00 2025-07-20 17:44:36.6011+00 f t DESCUENTO 0.00 2 3959 \N +151099 2025-07-20 17:44:36.601955+00 2025-07-20 17:44:36.60196+00 f t TOTAL 0.00 3 3959 \N +151100 2025-07-20 17:44:36.602749+00 2025-07-20 17:44:36.602754+00 f t ADELANTO 0.00 4 3959 \N +148645 2025-07-19 19:18:18.990064+00 2025-07-19 19:18:18.990075+00 f t SUBTOTAL 0.00 1 3893 \N +148646 2025-07-19 19:18:18.991684+00 2025-07-19 19:18:18.991691+00 f t DESCUENTO 0.00 2 3893 \N +148647 2025-07-19 19:18:18.992859+00 2025-07-19 19:18:18.992864+00 f t TOTAL 0.00 3 3893 \N +148648 2025-07-19 19:18:18.993785+00 2025-07-19 19:18:18.99379+00 f t ADELANTO 0.00 4 3893 \N +146073 2025-07-18 19:23:01.978752+00 2025-07-18 19:23:01.978766+00 f t SUBTOTAL 49500.00 1 3835 \N +146074 2025-07-18 19:23:01.981774+00 2025-07-18 19:23:01.981786+00 f t DESCUENTO 0.00 2 3835 \N +146075 2025-07-18 19:23:01.984019+00 2025-07-18 19:23:01.984032+00 f t TOTAL 49500.00 3 3835 \N +146076 2025-07-18 19:23:01.986379+00 2025-07-18 19:23:01.986405+00 f t ADELANTO 11500.00 4 3835 \N +151905 2025-07-20 22:34:39.953868+00 2025-07-20 22:34:39.953877+00 f t SUBTOTAL 0.00 1 3978 \N +148861 2025-07-19 20:31:05.992791+00 2025-07-19 20:31:05.992801+00 f t SUBTOTAL 0.00 1 3899 \N +148862 2025-07-19 20:31:05.994313+00 2025-07-19 20:31:05.99432+00 f t DESCUENTO 0.00 2 3899 \N +146097 2025-07-18 19:23:49.670938+00 2025-07-18 19:23:49.67095+00 f t SUBTOTAL 50000.00 1 3836 \N +146098 2025-07-18 19:23:49.672811+00 2025-07-18 19:23:49.672818+00 f t DESCUENTO 0.00 2 3836 \N +146099 2025-07-18 19:23:49.674335+00 2025-07-18 19:23:49.674344+00 f t TOTAL 50000.00 3 3836 \N +146100 2025-07-18 19:23:49.67576+00 2025-07-18 19:23:49.675766+00 f t ADELANTO 10000.00 4 3836 \N +148863 2025-07-19 20:31:05.995428+00 2025-07-19 20:31:05.995434+00 f t TOTAL 0.00 3 3899 \N +148864 2025-07-19 20:31:05.996494+00 2025-07-19 20:31:05.9965+00 f t ADELANTO 0.00 4 3899 \N +151906 2025-07-20 22:34:39.95507+00 2025-07-20 22:34:39.955076+00 f t DESCUENTO 0.00 2 3978 \N +151907 2025-07-20 22:34:39.956304+00 2025-07-20 22:34:39.95631+00 f t TOTAL 0.00 3 3978 \N +151908 2025-07-20 22:34:39.957327+00 2025-07-20 22:34:39.957333+00 f t ADELANTO 0.00 4 3978 \N +146161 2025-07-18 20:01:12.953591+00 2025-07-18 20:01:12.953602+00 f t SUBTOTAL 72000.00 1 3837 \N +146162 2025-07-18 20:01:12.95531+00 2025-07-18 20:01:12.955318+00 f t DESCUENTO 0.00 2 3837 \N +146163 2025-07-18 20:01:12.957074+00 2025-07-18 20:01:12.957081+00 f t TOTAL 72000.00 3 3837 \N +146164 2025-07-18 20:01:12.958426+00 2025-07-18 20:01:12.958435+00 f t ADELANTO 19000.00 4 3837 \N +158073 2025-07-23 12:15:13.611453+00 2025-07-23 12:15:13.611464+00 f t SUBTOTAL 103200.00 1 4137 \N +158074 2025-07-23 12:15:13.613334+00 2025-07-23 12:15:13.613343+00 f t DESCUENTO 0.00 2 4137 \N +158075 2025-07-23 12:15:13.6147+00 2025-07-23 12:15:13.614708+00 f t TOTAL 103200.00 3 4137 \N +158076 2025-07-23 12:15:13.615858+00 2025-07-23 12:15:13.615864+00 f t ADELANTO 22700.00 4 4137 \N +154373 2025-07-21 17:38:58.493526+00 2025-07-21 17:38:58.493536+00 f t SUBTOTAL 0.00 1 4039 \N +154374 2025-07-21 17:38:58.494926+00 2025-07-21 17:38:58.494933+00 f t DESCUENTO 0.00 2 4039 \N +154375 2025-07-21 17:38:58.495935+00 2025-07-21 17:38:58.49594+00 f t TOTAL 0.00 3 4039 \N +154376 2025-07-21 17:38:58.496934+00 2025-07-21 17:38:58.496941+00 f t ADELANTO 0.00 4 4039 \N +146205 2025-07-18 20:45:49.313764+00 2025-07-18 20:45:49.313774+00 f t SUBTOTAL 0.00 1 3838 \N +146206 2025-07-18 20:45:49.3158+00 2025-07-18 20:45:49.315808+00 f t DESCUENTO 0.00 2 3838 \N +146207 2025-07-18 20:45:49.317246+00 2025-07-18 20:45:49.317256+00 f t TOTAL 0.00 3 3838 \N +146208 2025-07-18 20:45:49.318863+00 2025-07-18 20:45:49.318872+00 f t ADELANTO 0.00 4 3838 \N +150993 2025-07-20 17:15:38.885612+00 2025-07-20 17:15:38.885623+00 f t SUBTOTAL 42000.00 1 3956 \N +150994 2025-07-20 17:15:38.887834+00 2025-07-20 17:15:38.887843+00 f t DESCUENTO 0.00 2 3956 \N +150995 2025-07-20 17:15:38.889301+00 2025-07-20 17:15:38.88931+00 f t TOTAL 42000.00 3 3956 \N +150996 2025-07-20 17:15:38.890598+00 2025-07-20 17:15:38.890605+00 f t ADELANTO 9500.00 4 3956 \N +146237 2025-07-18 20:48:28.012647+00 2025-07-18 20:48:28.012655+00 f t SUBTOTAL 0.00 1 3840 \N +146238 2025-07-18 20:48:28.013974+00 2025-07-18 20:48:28.013984+00 f t DESCUENTO 0.00 2 3840 \N +146239 2025-07-18 20:48:28.015109+00 2025-07-18 20:48:28.015118+00 f t TOTAL 0.00 3 3840 \N +146240 2025-07-18 20:48:28.016139+00 2025-07-18 20:48:28.016145+00 f t ADELANTO 0.00 4 3840 \N +146265 2025-07-18 20:49:31.593737+00 2025-07-18 20:49:31.593751+00 f t SUBTOTAL 0.00 1 3839 \N +146266 2025-07-18 20:49:31.596291+00 2025-07-18 20:49:31.596303+00 f t DESCUENTO 0.00 2 3839 \N +146267 2025-07-18 20:49:31.59768+00 2025-07-18 20:49:31.597689+00 f t TOTAL 0.00 3 3839 \N +146268 2025-07-18 20:49:31.598955+00 2025-07-18 20:49:31.598964+00 f t ADELANTO 0.00 4 3839 \N +146273 2025-07-18 20:50:25.285802+00 2025-07-18 20:50:25.285815+00 f t SUBTOTAL 0.00 1 3841 \N +146274 2025-07-18 20:50:25.287513+00 2025-07-18 20:50:25.287525+00 f t DESCUENTO 0.00 2 3841 \N +146275 2025-07-18 20:50:25.288799+00 2025-07-18 20:50:25.288808+00 f t TOTAL 0.00 3 3841 \N +146276 2025-07-18 20:50:25.290106+00 2025-07-18 20:50:25.290115+00 f t ADELANTO 0.00 4 3841 \N +148173 2025-07-19 15:20:59.008111+00 2025-07-19 15:20:59.00812+00 f t SUBTOTAL 0.00 1 3881 \N +148174 2025-07-19 15:20:59.01036+00 2025-07-19 15:20:59.01037+00 f t DESCUENTO 0.00 2 3881 \N +148175 2025-07-19 15:20:59.011841+00 2025-07-19 15:20:59.011848+00 f t TOTAL 0.00 3 3881 \N +148176 2025-07-19 15:20:59.013085+00 2025-07-19 15:20:59.013091+00 f t ADELANTO 0.00 4 3881 \N +154973 2025-07-22 01:30:54.615785+00 2025-07-22 01:30:54.615796+00 f t SUBTOTAL 111000.00 1 4058 \N +154974 2025-07-22 01:30:54.618+00 2025-07-22 01:30:54.618011+00 f t DESCUENTO 0.00 2 4058 \N +154975 2025-07-22 01:30:54.619557+00 2025-07-22 01:30:54.619566+00 f t TOTAL 111000.00 3 4058 \N +154976 2025-07-22 01:30:54.620936+00 2025-07-22 01:30:54.620944+00 f t ADELANTO 23500.00 4 4058 \N +146289 2025-07-18 20:52:14.897882+00 2025-07-18 20:52:14.897894+00 f t SUBTOTAL 0.00 1 3834 \N +146290 2025-07-18 20:52:14.900041+00 2025-07-18 20:52:14.900051+00 f t DESCUENTO 0.00 2 3834 \N +146291 2025-07-18 20:52:14.90159+00 2025-07-18 20:52:14.901599+00 f t TOTAL 0.00 3 3834 \N +146292 2025-07-18 20:52:14.903049+00 2025-07-18 20:52:14.903058+00 f t ADELANTO 0.00 4 3834 \N +146317 2025-07-18 21:06:04.823968+00 2025-07-18 21:06:04.82398+00 f t SUBTOTAL 64500.00 1 3842 \N +146318 2025-07-18 21:06:04.825887+00 2025-07-18 21:06:04.825894+00 f t DESCUENTO 0.00 2 3842 \N +146319 2025-07-18 21:06:04.827609+00 2025-07-18 21:06:04.82762+00 f t TOTAL 64500.00 3 3842 \N +146320 2025-07-18 21:06:04.829099+00 2025-07-18 21:06:04.829105+00 f t ADELANTO 17000.00 4 3842 \N +151589 2025-07-20 20:00:26.027165+00 2025-07-20 20:00:26.027174+00 f t SUBTOTAL 42000.00 1 3969 \N +151590 2025-07-20 20:00:26.029481+00 2025-07-20 20:00:26.029493+00 f t DESCUENTO 0.00 2 3969 \N +151591 2025-07-20 20:00:26.031527+00 2025-07-20 20:00:26.03154+00 f t TOTAL 42000.00 3 3969 \N +146325 2025-07-18 21:53:31.652424+00 2025-07-18 21:53:31.652441+00 f t SUBTOTAL 0.00 1 3843 \N +146326 2025-07-18 21:53:31.653981+00 2025-07-18 21:53:31.653989+00 f t DESCUENTO 0.00 2 3843 \N +146327 2025-07-18 21:53:31.654962+00 2025-07-18 21:53:31.654968+00 f t TOTAL 0.00 3 3843 \N +146328 2025-07-18 21:53:31.656068+00 2025-07-18 21:53:31.656078+00 f t ADELANTO 0.00 4 3843 \N +151592 2025-07-20 20:00:26.033537+00 2025-07-20 20:00:26.033549+00 f t ADELANTO 9500.00 4 3969 \N +155437 2025-07-22 08:23:49.413658+00 2025-07-22 08:23:49.413672+00 f t SUBTOTAL 0.00 1 4064 \N +155438 2025-07-22 08:23:49.415957+00 2025-07-22 08:23:49.415966+00 f t DESCUENTO 0.00 2 4064 \N +155439 2025-07-22 08:23:49.424015+00 2025-07-22 08:23:49.424028+00 f t TOTAL 0.00 3 4064 \N +155440 2025-07-22 08:23:49.426888+00 2025-07-22 08:23:49.426897+00 f t ADELANTO 0.00 4 4064 \N +146353 2025-07-18 22:28:47.593614+00 2025-07-18 22:28:47.593623+00 f t SUBTOTAL 0.00 1 3844 \N +146354 2025-07-18 22:28:47.595585+00 2025-07-18 22:28:47.595593+00 f t DESCUENTO 0.00 2 3844 \N +146355 2025-07-18 22:28:47.596928+00 2025-07-18 22:28:47.596935+00 f t TOTAL 0.00 3 3844 \N +146356 2025-07-18 22:28:47.598252+00 2025-07-18 22:28:47.598262+00 f t ADELANTO 0.00 4 3844 \N +151913 2025-07-20 22:36:52.34569+00 2025-07-20 22:36:52.345698+00 f t SUBTOTAL 0.00 1 3979 \N +151914 2025-07-20 22:36:52.347233+00 2025-07-20 22:36:52.347249+00 f t DESCUENTO 0.00 2 3979 \N +151915 2025-07-20 22:36:52.348529+00 2025-07-20 22:36:52.348535+00 f t TOTAL 0.00 3 3979 \N +151916 2025-07-20 22:36:52.349485+00 2025-07-20 22:36:52.34949+00 f t ADELANTO 0.00 4 3979 \N +148869 2025-07-19 20:33:40.368563+00 2025-07-19 20:33:40.368575+00 f t SUBTOTAL 0.00 1 3900 \N +148870 2025-07-19 20:33:40.370634+00 2025-07-19 20:33:40.370653+00 f t DESCUENTO 0.00 2 3900 \N +148871 2025-07-19 20:33:40.372315+00 2025-07-19 20:33:40.372323+00 f t TOTAL 0.00 3 3900 \N +148872 2025-07-19 20:33:40.373661+00 2025-07-19 20:33:40.373668+00 f t ADELANTO 0.00 4 3900 \N +149041 2025-07-19 23:18:28.349397+00 2025-07-19 23:18:28.349408+00 f t SUBTOTAL 27500.00 1 3903 \N +149042 2025-07-19 23:18:28.351207+00 2025-07-19 23:18:28.351217+00 f t DESCUENTO 0.00 2 3903 \N +149043 2025-07-19 23:18:28.352857+00 2025-07-19 23:18:28.352867+00 f t TOTAL 27500.00 3 3903 \N +149044 2025-07-19 23:18:28.354579+00 2025-07-19 23:18:28.354589+00 f t ADELANTO 27500.00 4 3903 \N +146413 2025-07-18 22:34:47.837154+00 2025-07-18 22:34:47.837163+00 f t SUBTOTAL 0.00 1 3845 \N +146414 2025-07-18 22:34:47.839025+00 2025-07-18 22:34:47.839034+00 f t DESCUENTO 0.00 2 3845 \N +146415 2025-07-18 22:34:47.840528+00 2025-07-18 22:34:47.840537+00 f t TOTAL 0.00 3 3845 \N +146416 2025-07-18 22:34:47.841805+00 2025-07-18 22:34:47.841811+00 f t ADELANTO 0.00 4 3845 \N +161273 2025-07-25 08:57:35.543263+00 2025-07-25 08:57:35.543272+00 f t SUBTOTAL 50000.00 1 4236 \N +161274 2025-07-25 08:57:35.545098+00 2025-07-25 08:57:35.545107+00 f t DESCUENTO 0.00 2 4236 \N +161275 2025-07-25 08:57:35.546462+00 2025-07-25 08:57:35.546469+00 f t TOTAL 50000.00 3 4236 \N +161276 2025-07-25 08:57:35.547751+00 2025-07-25 08:57:35.547757+00 f t ADELANTO 10000.00 4 4236 \N +146769 2025-07-19 01:41:17.777577+00 2025-07-19 01:41:17.777587+00 f t SUBTOTAL 0.00 1 3855 \N +146770 2025-07-19 01:41:17.779436+00 2025-07-19 01:41:17.779443+00 f t DESCUENTO 0.00 2 3855 \N +146771 2025-07-19 01:41:17.780796+00 2025-07-19 01:41:17.780802+00 f t TOTAL 0.00 3 3855 \N +146772 2025-07-19 01:41:17.781914+00 2025-07-19 01:41:17.781921+00 f t ADELANTO 0.00 4 3855 \N +146989 2025-07-19 03:02:20.608466+00 2025-07-19 03:02:20.608479+00 f t SUBTOTAL 0.00 1 3860 \N +146990 2025-07-19 03:02:20.610459+00 2025-07-19 03:02:20.610469+00 f t DESCUENTO 0.00 2 3860 \N +146991 2025-07-19 03:02:20.611967+00 2025-07-19 03:02:20.611974+00 f t TOTAL 0.00 3 3860 \N +146992 2025-07-19 03:02:20.613226+00 2025-07-19 03:02:20.613232+00 f t ADELANTO 0.00 4 3860 \N +147045 2025-07-19 04:23:57.052223+00 2025-07-19 04:23:57.052233+00 f t SUBTOTAL 72000.00 1 3862 \N +147046 2025-07-19 04:23:57.053687+00 2025-07-19 04:23:57.053695+00 f t DESCUENTO 0.00 2 3862 \N +147047 2025-07-19 04:23:57.054747+00 2025-07-19 04:23:57.054753+00 f t TOTAL 72000.00 3 3862 \N +147048 2025-07-19 04:23:57.055767+00 2025-07-19 04:23:57.055772+00 f t ADELANTO 19000.00 4 3862 \N +146477 2025-07-18 22:36:41.631691+00 2025-07-18 22:36:41.631701+00 f t SUBTOTAL 64500.00 1 3846 \N +146478 2025-07-18 22:36:41.633376+00 2025-07-18 22:36:41.633383+00 f t DESCUENTO 0.00 2 3846 \N +146479 2025-07-18 22:36:41.634581+00 2025-07-18 22:36:41.634587+00 f t TOTAL 64500.00 3 3846 \N +146480 2025-07-18 22:36:41.635643+00 2025-07-18 22:36:41.635648+00 f t ADELANTO 17000.00 4 3846 \N +154381 2025-07-21 17:56:52.633146+00 2025-07-21 17:56:52.633155+00 f t SUBTOTAL 0.00 1 4040 \N +154382 2025-07-21 17:56:52.634689+00 2025-07-21 17:56:52.634696+00 f t DESCUENTO 0.00 2 4040 \N +154383 2025-07-21 17:56:52.635995+00 2025-07-21 17:56:52.636002+00 f t TOTAL 0.00 3 4040 \N +154384 2025-07-21 17:56:52.637086+00 2025-07-21 17:56:52.637095+00 f t ADELANTO 0.00 4 4040 \N +150753 2025-07-20 15:02:49.437278+00 2025-07-20 15:02:49.437291+00 f t SUBTOTAL 0.00 1 3948 \N +150754 2025-07-20 15:02:49.439464+00 2025-07-20 15:02:49.439474+00 f t DESCUENTO 0.00 2 3948 \N +150755 2025-07-20 15:02:49.440939+00 2025-07-20 15:02:49.440948+00 f t TOTAL 0.00 3 3948 \N +150756 2025-07-20 15:02:49.442257+00 2025-07-20 15:02:49.442266+00 f t ADELANTO 0.00 4 3948 \N +147701 2025-07-19 12:25:00.330144+00 2025-07-19 12:25:00.330152+00 f t SUBTOTAL 179000.00 1 3870 \N +147702 2025-07-19 12:25:00.331609+00 2025-07-19 12:25:00.331616+00 f t DESCUENTO 0.00 2 3870 \N +147703 2025-07-19 12:25:00.332784+00 2025-07-19 12:25:00.332789+00 f t TOTAL 179000.00 3 3870 \N +147704 2025-07-19 12:25:00.333791+00 2025-07-19 12:25:00.333796+00 f t ADELANTO 36500.00 4 3870 \N +151001 2025-07-20 17:18:42.993996+00 2025-07-20 17:18:42.994005+00 f t SUBTOTAL 0.00 1 3957 \N +151002 2025-07-20 17:18:42.995361+00 2025-07-20 17:18:42.995369+00 f t DESCUENTO 0.00 2 3957 \N +151003 2025-07-20 17:18:42.996623+00 2025-07-20 17:18:42.996629+00 f t TOTAL 0.00 3 3957 \N +151004 2025-07-20 17:18:42.997644+00 2025-07-20 17:18:42.997649+00 f t ADELANTO 0.00 4 3957 \N +148181 2025-07-19 16:52:24.686691+00 2025-07-19 16:52:24.6867+00 f t SUBTOTAL 0.00 1 3882 \N +148182 2025-07-19 16:52:24.687982+00 2025-07-19 16:52:24.687988+00 f t DESCUENTO 0.00 2 3882 \N +148183 2025-07-19 16:52:24.689115+00 2025-07-19 16:52:24.689121+00 f t TOTAL 0.00 3 3882 \N +148184 2025-07-19 16:52:24.690167+00 2025-07-19 16:52:24.690172+00 f t ADELANTO 0.00 4 3882 \N +151345 2025-07-20 18:56:41.343856+00 2025-07-20 18:56:41.343868+00 f t SUBTOTAL 0.00 1 3963 \N +151346 2025-07-20 18:56:41.345943+00 2025-07-20 18:56:41.34595+00 f t DESCUENTO 0.00 2 3963 \N +151347 2025-07-20 18:56:41.347398+00 2025-07-20 18:56:41.347405+00 f t TOTAL 0.00 3 3963 \N +151348 2025-07-20 18:56:41.349635+00 2025-07-20 18:56:41.349642+00 f t ADELANTO 0.00 4 3963 \N +155349 2025-07-22 03:45:29.91298+00 2025-07-22 03:45:29.912989+00 f t SUBTOTAL 0.00 1 4061 \N +155350 2025-07-22 03:45:29.91483+00 2025-07-22 03:45:29.914837+00 f t DESCUENTO 0.00 2 4061 \N +155351 2025-07-22 03:45:29.916093+00 2025-07-22 03:45:29.916101+00 f t TOTAL 0.00 3 4061 \N +155352 2025-07-22 03:45:29.9173+00 2025-07-22 03:45:29.917305+00 f t ADELANTO 0.00 4 4061 \N +148761 2025-07-19 19:33:11.528928+00 2025-07-19 19:33:11.52894+00 f t SUBTOTAL 0.00 1 3896 \N +148762 2025-07-19 19:33:11.530871+00 2025-07-19 19:33:11.53088+00 f t DESCUENTO 0.00 2 3896 \N +148763 2025-07-19 19:33:11.532262+00 2025-07-19 19:33:11.532269+00 f t TOTAL 0.00 3 3896 \N +148764 2025-07-19 19:33:11.533659+00 2025-07-19 19:33:11.533665+00 f t ADELANTO 0.00 4 3896 \N +155537 2025-07-22 12:08:34.973856+00 2025-07-22 12:08:34.973866+00 f t SUBTOTAL 50000.00 1 4068 \N +155538 2025-07-22 12:08:34.975834+00 2025-07-22 12:08:34.975841+00 f t DESCUENTO 0.00 2 4068 \N +155539 2025-07-22 12:08:34.977276+00 2025-07-22 12:08:34.977284+00 f t TOTAL 50000.00 3 4068 \N +155540 2025-07-22 12:08:34.978653+00 2025-07-22 12:08:34.978659+00 f t ADELANTO 10000.00 4 4068 \N +148877 2025-07-19 21:23:56.572666+00 2025-07-19 21:23:56.572676+00 f t SUBTOTAL 0.00 1 3901 \N +148878 2025-07-19 21:23:56.574312+00 2025-07-19 21:23:56.574319+00 f t DESCUENTO 0.00 2 3901 \N +148879 2025-07-19 21:23:56.575697+00 2025-07-19 21:23:56.575704+00 f t TOTAL 0.00 3 3901 \N +148880 2025-07-19 21:23:56.576903+00 2025-07-19 21:23:56.576909+00 f t ADELANTO 0.00 4 3901 \N +151873 2025-07-20 21:22:33.951178+00 2025-07-20 21:22:33.951191+00 f t SUBTOTAL 72000.00 1 3975 \N +151874 2025-07-20 21:22:33.953021+00 2025-07-20 21:22:33.953031+00 f t DESCUENTO 0.00 2 3975 \N +151875 2025-07-20 21:22:33.95452+00 2025-07-20 21:22:33.95453+00 f t TOTAL 72000.00 3 3975 \N +151876 2025-07-20 21:22:33.955947+00 2025-07-20 21:22:33.955955+00 f t ADELANTO 19000.00 4 3975 \N +149049 2025-07-19 23:26:41.964899+00 2025-07-19 23:26:41.964908+00 f t SUBTOTAL 0.00 1 3904 \N +149050 2025-07-19 23:26:41.966329+00 2025-07-19 23:26:41.966339+00 f t DESCUENTO 0.00 2 3904 \N +149051 2025-07-19 23:26:41.967596+00 2025-07-19 23:26:41.967602+00 f t TOTAL 0.00 3 3904 \N +149052 2025-07-19 23:26:41.96858+00 2025-07-19 23:26:41.968585+00 f t ADELANTO 0.00 4 3904 \N +152037 2025-07-20 23:23:06.127927+00 2025-07-20 23:23:06.127936+00 f t SUBTOTAL 50000.00 1 3981 \N +152038 2025-07-20 23:23:06.130522+00 2025-07-20 23:23:06.130535+00 f t DESCUENTO 0.00 2 3981 \N +152039 2025-07-20 23:23:06.13271+00 2025-07-20 23:23:06.132721+00 f t TOTAL 50000.00 3 3981 \N +152040 2025-07-20 23:23:06.13472+00 2025-07-20 23:23:06.134731+00 f t ADELANTO 10000.00 4 3981 \N +152109 2025-07-20 23:32:16.442132+00 2025-07-20 23:32:16.44214+00 f t SUBTOTAL 64500.00 1 3982 \N +152110 2025-07-20 23:32:16.443656+00 2025-07-20 23:32:16.443663+00 f t DESCUENTO 0.00 2 3982 \N +152111 2025-07-20 23:32:16.444807+00 2025-07-20 23:32:16.444813+00 f t TOTAL 64500.00 3 3982 \N +152112 2025-07-20 23:32:16.445834+00 2025-07-20 23:32:16.44584+00 f t ADELANTO 17000.00 4 3982 \N +152177 2025-07-21 00:08:57.052953+00 2025-07-21 00:08:57.052962+00 f t SUBTOTAL 0.00 1 3986 \N +152178 2025-07-21 00:08:57.054892+00 2025-07-21 00:08:57.054897+00 f t DESCUENTO 0.00 2 3986 \N +152179 2025-07-21 00:08:57.056122+00 2025-07-21 00:08:57.056129+00 f t TOTAL 0.00 3 3986 \N +152180 2025-07-21 00:08:57.057214+00 2025-07-21 00:08:57.057219+00 f t ADELANTO 0.00 4 3986 \N +152192 2025-07-21 00:09:25.734731+00 2025-07-21 00:09:25.734739+00 f t ADELANTO 18000.00 4 3985 \N +149213 2025-07-19 23:50:37.158426+00 2025-07-19 23:50:37.158437+00 f t SUBTOTAL 50000.00 1 3907 \N +149214 2025-07-19 23:50:37.160286+00 2025-07-19 23:50:37.160297+00 f t DESCUENTO 0.00 2 3907 \N +149215 2025-07-19 23:50:37.161741+00 2025-07-19 23:50:37.16175+00 f t TOTAL 50000.00 3 3907 \N +149216 2025-07-19 23:50:37.163048+00 2025-07-19 23:50:37.163056+00 f t ADELANTO 10000.00 4 3907 \N +169173 2025-07-28 17:16:13.572458+00 2025-07-28 17:16:13.572468+00 f t SUBTOTAL 70000.00 1 4430 \N +169174 2025-07-28 17:16:13.574651+00 2025-07-28 17:16:13.574658+00 f t DESCUENTO 0.00 2 4430 \N +169175 2025-07-28 17:16:13.576193+00 2025-07-28 17:16:13.576199+00 f t TOTAL 70000.00 3 4430 \N +169176 2025-07-28 17:16:13.577552+00 2025-07-28 17:16:13.577561+00 f t ADELANTO 15000.00 4 4430 \N +149261 2025-07-19 23:54:36.57995+00 2025-07-19 23:54:36.579959+00 f t SUBTOTAL 111000.00 1 3908 \N +149262 2025-07-19 23:54:36.581489+00 2025-07-19 23:54:36.581496+00 f t DESCUENTO 0.00 2 3908 \N +149263 2025-07-19 23:54:36.582667+00 2025-07-19 23:54:36.582673+00 f t TOTAL 111000.00 3 3908 \N +149264 2025-07-19 23:54:36.583781+00 2025-07-19 23:54:36.583787+00 f t ADELANTO 23500.00 4 3908 \N +158081 2025-07-23 12:59:43.148519+00 2025-07-23 12:59:43.148528+00 f t SUBTOTAL 0.00 1 4138 \N +158082 2025-07-23 12:59:43.150034+00 2025-07-23 12:59:43.150042+00 f t DESCUENTO 0.00 2 4138 \N +158083 2025-07-23 12:59:43.151063+00 2025-07-23 12:59:43.15107+00 f t TOTAL 0.00 3 4138 \N +158084 2025-07-23 12:59:43.15229+00 2025-07-23 12:59:43.152297+00 f t ADELANTO 0.00 4 4138 \N +149277 2025-07-20 00:29:27.283905+00 2025-07-20 00:29:27.283915+00 f t SUBTOTAL 0.00 1 3909 \N +149278 2025-07-20 00:29:27.285826+00 2025-07-20 00:29:27.285832+00 f t DESCUENTO 0.00 2 3909 \N +149279 2025-07-20 00:29:27.287055+00 2025-07-20 00:29:27.287061+00 f t TOTAL 0.00 3 3909 \N +149280 2025-07-20 00:29:27.288122+00 2025-07-20 00:29:27.288128+00 f t ADELANTO 0.00 4 3909 \N +154541 2025-07-21 20:33:04.641943+00 2025-07-21 20:33:04.641951+00 f t SUBTOTAL 64500.00 1 4048 \N +154542 2025-07-21 20:33:04.643658+00 2025-07-21 20:33:04.643664+00 f t DESCUENTO 0.00 2 4048 \N +154543 2025-07-21 20:33:04.644831+00 2025-07-21 20:33:04.644836+00 f t TOTAL 64500.00 3 4048 \N +154544 2025-07-21 20:33:04.645835+00 2025-07-21 20:33:04.64584+00 f t ADELANTO 17000.00 4 4048 \N +150965 2025-07-20 17:02:17.319764+00 2025-07-20 17:02:17.319772+00 f t SUBTOTAL 42000.00 1 3955 \N +150966 2025-07-20 17:02:17.32167+00 2025-07-20 17:02:17.321678+00 f t DESCUENTO 0.00 2 3955 \N +150967 2025-07-20 17:02:17.323032+00 2025-07-20 17:02:17.323038+00 f t TOTAL 42000.00 3 3955 \N +150968 2025-07-20 17:02:17.324155+00 2025-07-20 17:02:17.32416+00 f t ADELANTO 9500.00 4 3955 \N +158493 2025-07-23 19:40:56.505589+00 2025-07-23 19:40:56.505599+00 f t SUBTOTAL 0.00 1 4153 \N +158494 2025-07-23 19:40:56.507084+00 2025-07-23 19:40:56.507093+00 f t DESCUENTO 0.00 2 4153 \N +158495 2025-07-23 19:40:56.508266+00 2025-07-23 19:40:56.508273+00 f t TOTAL 0.00 3 4153 \N +151449 2025-07-20 19:24:18.938182+00 2025-07-20 19:24:18.938192+00 f t SUBTOTAL 50000.00 1 3964 \N +151450 2025-07-20 19:24:18.939986+00 2025-07-20 19:24:18.939993+00 f t DESCUENTO 0.00 2 3964 \N +151451 2025-07-20 19:24:18.941465+00 2025-07-20 19:24:18.941473+00 f t TOTAL 50000.00 3 3964 \N +151452 2025-07-20 19:24:18.942679+00 2025-07-20 19:24:18.942685+00 f t ADELANTO 10000.00 4 3964 \N +151521 2025-07-20 19:38:17.808438+00 2025-07-20 19:38:17.80845+00 f t SUBTOTAL 0.00 1 3966 \N +151522 2025-07-20 19:38:17.810287+00 2025-07-20 19:38:17.810297+00 f t DESCUENTO 0.00 2 3966 \N +151523 2025-07-20 19:38:17.811653+00 2025-07-20 19:38:17.811659+00 f t TOTAL 0.00 3 3966 \N +151524 2025-07-20 19:38:17.812663+00 2025-07-20 19:38:17.812669+00 f t ADELANTO 0.00 4 3966 \N +151597 2025-07-20 20:00:42.376156+00 2025-07-20 20:00:42.376169+00 f t SUBTOTAL 42000.00 1 3968 \N +151598 2025-07-20 20:00:42.378135+00 2025-07-20 20:00:42.378147+00 f t DESCUENTO 0.00 2 3968 \N +149385 2025-07-20 00:52:17.66159+00 2025-07-20 00:52:17.661602+00 f t SUBTOTAL 82700.00 1 3910 \N +149386 2025-07-20 00:52:17.663597+00 2025-07-20 00:52:17.663605+00 f t DESCUENTO 0.00 2 3910 \N +149387 2025-07-20 00:52:17.665905+00 2025-07-20 00:52:17.665914+00 f t TOTAL 82700.00 3 3910 \N +149388 2025-07-20 00:52:17.66759+00 2025-07-20 00:52:17.667599+00 f t ADELANTO 44700.00 4 3910 \N +151599 2025-07-20 20:00:42.379701+00 2025-07-20 20:00:42.379711+00 f t TOTAL 42000.00 3 3968 \N +151600 2025-07-20 20:00:42.381247+00 2025-07-20 20:00:42.381256+00 f t ADELANTO 9500.00 4 3968 \N +149413 2025-07-20 01:15:29.807247+00 2025-07-20 01:15:29.807259+00 f t SUBTOTAL 49500.00 1 3911 \N +149414 2025-07-20 01:15:29.810484+00 2025-07-20 01:15:29.810495+00 f t DESCUENTO 0.00 2 3911 \N +149415 2025-07-20 01:15:29.812265+00 2025-07-20 01:15:29.812274+00 f t TOTAL 49500.00 3 3911 \N +149416 2025-07-20 01:15:29.813883+00 2025-07-20 01:15:29.813892+00 f t ADELANTO 11500.00 4 3911 \N +155545 2025-07-22 12:18:40.66347+00 2025-07-22 12:18:40.663481+00 f t SUBTOTAL 0.00 1 4069 \N +155546 2025-07-22 12:18:40.664873+00 2025-07-22 12:18:40.664879+00 f t DESCUENTO 0.00 2 4069 \N +155547 2025-07-22 12:18:40.665904+00 2025-07-22 12:18:40.66591+00 f t TOTAL 0.00 3 4069 \N +155548 2025-07-22 12:18:40.66679+00 2025-07-22 12:18:40.666796+00 f t ADELANTO 0.00 4 4069 \N +155733 2025-07-22 14:43:23.092965+00 2025-07-22 14:43:23.092976+00 f t SUBTOTAL 90400.00 1 4072 \N +155734 2025-07-22 14:43:23.094927+00 2025-07-22 14:43:23.094935+00 f t DESCUENTO 0.00 2 4072 \N +155735 2025-07-22 14:43:23.09632+00 2025-07-22 14:43:23.096326+00 f t TOTAL 90400.00 3 4072 \N +155736 2025-07-22 14:43:23.097647+00 2025-07-22 14:43:23.097654+00 f t ADELANTO 46900.00 4 4072 \N +152009 2025-07-20 23:16:41.111536+00 2025-07-20 23:16:41.111545+00 f t SUBTOTAL 0.00 1 3980 \N +152010 2025-07-20 23:16:41.11385+00 2025-07-20 23:16:41.11386+00 f t DESCUENTO 0.00 2 3980 \N +149445 2025-07-20 01:48:50.590088+00 2025-07-20 01:48:50.5901+00 f t SUBTOTAL 0.00 1 3912 \N +149446 2025-07-20 01:48:50.591956+00 2025-07-20 01:48:50.591964+00 f t DESCUENTO 0.00 2 3912 \N +149447 2025-07-20 01:48:50.593313+00 2025-07-20 01:48:50.593322+00 f t TOTAL 0.00 3 3912 \N +149448 2025-07-20 01:48:50.594543+00 2025-07-20 01:48:50.594551+00 f t ADELANTO 0.00 4 3912 \N +152011 2025-07-20 23:16:41.115357+00 2025-07-20 23:16:41.115365+00 f t TOTAL 0.00 3 3980 \N +152012 2025-07-20 23:16:41.116745+00 2025-07-20 23:16:41.116751+00 f t ADELANTO 0.00 4 3980 \N +155769 2025-07-22 14:46:08.543106+00 2025-07-22 14:46:08.54312+00 f t SUBTOTAL 50000.00 1 4073 \N +155770 2025-07-22 14:46:08.545845+00 2025-07-22 14:46:08.545856+00 f t DESCUENTO 0.00 2 4073 \N +149453 2025-07-20 01:49:59.841013+00 2025-07-20 01:49:59.841023+00 f t SUBTOTAL 0.00 1 3913 \N +149454 2025-07-20 01:49:59.842738+00 2025-07-20 01:49:59.842747+00 f t DESCUENTO 0.00 2 3913 \N +149455 2025-07-20 01:49:59.843848+00 2025-07-20 01:49:59.843854+00 f t TOTAL 0.00 3 3913 \N +149456 2025-07-20 01:49:59.844751+00 2025-07-20 01:49:59.844758+00 f t ADELANTO 0.00 4 3913 \N +155771 2025-07-22 14:46:08.547964+00 2025-07-22 14:46:08.547981+00 f t TOTAL 50000.00 3 4073 \N +155772 2025-07-22 14:46:08.55063+00 2025-07-22 14:46:08.55064+00 f t ADELANTO 10000.00 4 4073 \N +152137 2025-07-20 23:52:54.918711+00 2025-07-20 23:52:54.918722+00 f t SUBTOTAL 50000.00 1 3983 \N +152138 2025-07-20 23:52:54.920642+00 2025-07-20 23:52:54.920652+00 f t DESCUENTO 0.00 2 3983 \N +152139 2025-07-20 23:52:54.922245+00 2025-07-20 23:52:54.922255+00 f t TOTAL 50000.00 3 3983 \N +152140 2025-07-20 23:52:54.923594+00 2025-07-20 23:52:54.923602+00 f t ADELANTO 10000.00 4 3983 \N +149501 2025-07-20 01:58:57.922515+00 2025-07-20 01:58:57.922522+00 f t SUBTOTAL 50000.00 1 3914 \N +149502 2025-07-20 01:58:57.924237+00 2025-07-20 01:58:57.924246+00 f t DESCUENTO 0.00 2 3914 \N +149503 2025-07-20 01:58:57.925848+00 2025-07-20 01:58:57.925854+00 f t TOTAL 50000.00 3 3914 \N +149504 2025-07-20 01:58:57.927277+00 2025-07-20 01:58:57.927283+00 f t ADELANTO 10000.00 4 3914 \N +240525 2025-08-25 16:39:52.908647+00 2025-08-25 16:39:52.908657+00 f t SUBTOTAL 50000.00 1 6212 \N +153745 2025-07-21 14:42:18.993602+00 2025-07-21 14:42:18.99361+00 f t SUBTOTAL 84000.00 1 4024 \N +153746 2025-07-21 14:42:18.995768+00 2025-07-21 14:42:18.99578+00 f t DESCUENTO 0.00 2 4024 \N +153747 2025-07-21 14:42:18.997316+00 2025-07-21 14:42:18.997325+00 f t TOTAL 84000.00 3 4024 \N +153748 2025-07-21 14:42:18.998502+00 2025-07-21 14:42:18.998508+00 f t ADELANTO 19000.00 4 4024 \N +150345 2025-07-20 12:06:39.941617+00 2025-07-20 12:06:39.941626+00 f t SUBTOTAL 62000.00 1 3937 \N +150346 2025-07-20 12:06:39.943399+00 2025-07-20 12:06:39.943408+00 f t DESCUENTO 0.00 2 3937 \N +150347 2025-07-20 12:06:39.944902+00 2025-07-20 12:06:39.944909+00 f t TOTAL 62000.00 3 3937 \N +150348 2025-07-20 12:06:39.946116+00 2025-07-20 12:06:39.946124+00 f t ADELANTO 12000.00 4 3937 \N +149533 2025-07-20 02:27:42.343593+00 2025-07-20 02:27:42.343604+00 f t SUBTOTAL 27500.00 1 3915 \N +149534 2025-07-20 02:27:42.345342+00 2025-07-20 02:27:42.34535+00 f t DESCUENTO 0.00 2 3915 \N +149535 2025-07-20 02:27:42.346817+00 2025-07-20 02:27:42.346823+00 f t TOTAL 27500.00 3 3915 \N +149536 2025-07-20 02:27:42.348084+00 2025-07-20 02:27:42.34809+00 f t ADELANTO 27500.00 4 3915 \N +149561 2025-07-20 02:28:50.829853+00 2025-07-20 02:28:50.829861+00 f t SUBTOTAL 50000.00 1 3916 \N +149562 2025-07-20 02:28:50.831356+00 2025-07-20 02:28:50.831365+00 f t DESCUENTO 0.00 2 3916 \N +149563 2025-07-20 02:28:50.832682+00 2025-07-20 02:28:50.83269+00 f t TOTAL 50000.00 3 3916 \N +149564 2025-07-20 02:28:50.83393+00 2025-07-20 02:28:50.833937+00 f t ADELANTO 10000.00 4 3916 \N +150801 2025-07-20 15:49:16.414452+00 2025-07-20 15:49:16.41446+00 f t SUBTOTAL 27500.00 1 3949 \N +150802 2025-07-20 15:49:16.416009+00 2025-07-20 15:49:16.416015+00 f t DESCUENTO 0.00 2 3949 \N +150803 2025-07-20 15:49:16.417065+00 2025-07-20 15:49:16.417071+00 f t TOTAL 27500.00 3 3949 \N +150804 2025-07-20 15:49:16.417983+00 2025-07-20 15:49:16.417989+00 f t ADELANTO 27500.00 4 3949 \N +154813 2025-07-22 00:03:03.172364+00 2025-07-22 00:03:03.172378+00 f t SUBTOTAL 0.00 1 4055 \N +154814 2025-07-22 00:03:03.174511+00 2025-07-22 00:03:03.174519+00 f t DESCUENTO 0.00 2 4055 \N +154815 2025-07-22 00:03:03.176136+00 2025-07-22 00:03:03.176143+00 f t TOTAL 0.00 3 4055 \N +154816 2025-07-22 00:03:03.177723+00 2025-07-22 00:03:03.177733+00 f t ADELANTO 0.00 4 4055 \N +149617 2025-07-20 02:49:35.955577+00 2025-07-20 02:49:35.955586+00 f t SUBTOTAL 0.00 1 3917 \N +149618 2025-07-20 02:49:35.959023+00 2025-07-20 02:49:35.959031+00 f t DESCUENTO 0.00 2 3917 \N +149619 2025-07-20 02:49:35.960603+00 2025-07-20 02:49:35.960612+00 f t TOTAL 0.00 3 3917 \N +149620 2025-07-20 02:49:35.96228+00 2025-07-20 02:49:35.962287+00 f t ADELANTO 0.00 4 3917 \N +155029 2025-07-22 02:53:13.050773+00 2025-07-22 02:53:13.050785+00 f t SUBTOTAL 0.00 1 4059 \N +155030 2025-07-22 02:53:13.052669+00 2025-07-22 02:53:13.052677+00 f t DESCUENTO 0.00 2 4059 \N +155031 2025-07-22 02:53:13.05396+00 2025-07-22 02:53:13.053967+00 f t TOTAL 0.00 3 4059 \N +155032 2025-07-22 02:53:13.055039+00 2025-07-22 02:53:13.055046+00 f t ADELANTO 0.00 4 4059 \N +149649 2025-07-20 02:51:58.498611+00 2025-07-20 02:51:58.498621+00 f t SUBTOTAL 0.00 1 3918 \N +149650 2025-07-20 02:51:58.501042+00 2025-07-20 02:51:58.50105+00 f t DESCUENTO 0.00 2 3918 \N +149651 2025-07-20 02:51:58.502506+00 2025-07-20 02:51:58.502513+00 f t TOTAL 0.00 3 3918 \N +149652 2025-07-20 02:51:58.503903+00 2025-07-20 02:51:58.50391+00 f t ADELANTO 0.00 4 3918 \N +151457 2025-07-20 19:31:32.343326+00 2025-07-20 19:31:32.343338+00 f t SUBTOTAL 0.00 1 3965 \N +151458 2025-07-20 19:31:32.345181+00 2025-07-20 19:31:32.345201+00 f t DESCUENTO 0.00 2 3965 \N +151459 2025-07-20 19:31:32.346632+00 2025-07-20 19:31:32.34664+00 f t TOTAL 0.00 3 3965 \N +151460 2025-07-20 19:31:32.347929+00 2025-07-20 19:31:32.347937+00 f t ADELANTO 0.00 4 3965 \N +151529 2025-07-20 19:48:08.546612+00 2025-07-20 19:48:08.546621+00 f t SUBTOTAL 0.00 1 3967 \N +151530 2025-07-20 19:48:08.548043+00 2025-07-20 19:48:08.54805+00 f t DESCUENTO 0.00 2 3967 \N +151531 2025-07-20 19:48:08.549373+00 2025-07-20 19:48:08.549379+00 f t TOTAL 0.00 3 3967 \N +151532 2025-07-20 19:48:08.550713+00 2025-07-20 19:48:08.550719+00 f t ADELANTO 0.00 4 3967 \N +149685 2025-07-20 02:54:15.16468+00 2025-07-20 02:54:15.16469+00 f t SUBTOTAL 0.00 1 3919 \N +149686 2025-07-20 02:54:15.167179+00 2025-07-20 02:54:15.167194+00 f t DESCUENTO 0.00 2 3919 \N +149687 2025-07-20 02:54:15.168812+00 2025-07-20 02:54:15.16882+00 f t TOTAL 0.00 3 3919 \N +149688 2025-07-20 02:54:15.170327+00 2025-07-20 02:54:15.170338+00 f t ADELANTO 0.00 4 3919 \N +149693 2025-07-20 03:01:50.723568+00 2025-07-20 03:01:50.723576+00 f t SUBTOTAL 0.00 1 3920 \N +149694 2025-07-20 03:01:50.724912+00 2025-07-20 03:01:50.724919+00 f t DESCUENTO 0.00 2 3920 \N +149695 2025-07-20 03:01:50.726026+00 2025-07-20 03:01:50.726031+00 f t TOTAL 0.00 3 3920 \N +149696 2025-07-20 03:01:50.727088+00 2025-07-20 03:01:50.727094+00 f t ADELANTO 0.00 4 3920 \N +151813 2025-07-20 21:01:16.283952+00 2025-07-20 21:01:16.283965+00 f t SUBTOTAL 0.00 1 3974 \N +151814 2025-07-20 21:01:16.286045+00 2025-07-20 21:01:16.286055+00 f t DESCUENTO 0.00 2 3974 \N +151815 2025-07-20 21:01:16.287355+00 2025-07-20 21:01:16.287362+00 f t TOTAL 0.00 3 3974 \N +151816 2025-07-20 21:01:16.288376+00 2025-07-20 21:01:16.288382+00 f t ADELANTO 0.00 4 3974 \N +149741 2025-07-20 03:06:53.058934+00 2025-07-20 03:06:53.058941+00 f t SUBTOTAL 42000.00 1 3921 \N +149742 2025-07-20 03:06:53.060927+00 2025-07-20 03:06:53.060934+00 f t DESCUENTO 0.00 2 3921 \N +149743 2025-07-20 03:06:53.062115+00 2025-07-20 03:06:53.062122+00 f t TOTAL 42000.00 3 3921 \N +149744 2025-07-20 03:06:53.063148+00 2025-07-20 03:06:53.063165+00 f t ADELANTO 9500.00 4 3921 \N +155845 2025-07-22 15:22:29.790189+00 2025-07-22 15:22:29.7902+00 f t SUBTOTAL 49500.00 1 4074 \N +155846 2025-07-22 15:22:29.792044+00 2025-07-22 15:22:29.792054+00 f t DESCUENTO 0.00 2 4074 \N +155847 2025-07-22 15:22:29.793437+00 2025-07-22 15:22:29.793445+00 f t TOTAL 49500.00 3 4074 \N +155848 2025-07-22 15:22:29.79477+00 2025-07-22 15:22:29.794777+00 f t ADELANTO 11500.00 4 4074 \N +149769 2025-07-20 03:55:33.913888+00 2025-07-20 03:55:33.913899+00 f t SUBTOTAL 64500.00 1 3922 \N +149770 2025-07-20 03:55:33.915824+00 2025-07-20 03:55:33.915834+00 f t DESCUENTO 0.00 2 3922 \N +149771 2025-07-20 03:55:33.920054+00 2025-07-20 03:55:33.920064+00 f t TOTAL 64500.00 3 3922 \N +149772 2025-07-20 03:55:33.92175+00 2025-07-20 03:55:33.921758+00 f t ADELANTO 17000.00 4 3922 \N +155985 2025-07-22 16:10:15.260941+00 2025-07-22 16:10:15.26095+00 f t SUBTOTAL 0.00 1 4080 \N +155986 2025-07-22 16:10:15.263455+00 2025-07-22 16:10:15.263464+00 f t DESCUENTO 0.00 2 4080 \N +155987 2025-07-22 16:10:15.26515+00 2025-07-22 16:10:15.265162+00 f t TOTAL 0.00 3 4080 \N +155988 2025-07-22 16:10:15.266672+00 2025-07-22 16:10:15.266678+00 f t ADELANTO 0.00 4 4080 \N +152145 2025-07-20 23:53:52.184477+00 2025-07-20 23:53:52.184486+00 f t SUBTOTAL 0.00 1 3984 \N +152146 2025-07-20 23:53:52.185722+00 2025-07-20 23:53:52.185728+00 f t DESCUENTO 0.00 2 3984 \N +152147 2025-07-20 23:53:52.186755+00 2025-07-20 23:53:52.18676+00 f t TOTAL 0.00 3 3984 \N +152148 2025-07-20 23:53:52.187697+00 2025-07-20 23:53:52.187703+00 f t ADELANTO 0.00 4 3984 \N +153753 2025-07-21 15:14:36.132792+00 2025-07-21 15:14:36.132802+00 f t SUBTOTAL 0.00 1 4025 \N +153754 2025-07-21 15:14:36.134165+00 2025-07-21 15:14:36.134171+00 f t DESCUENTO 0.00 2 4025 \N +153755 2025-07-21 15:14:36.135246+00 2025-07-21 15:14:36.135251+00 f t TOTAL 0.00 3 4025 \N +153756 2025-07-21 15:14:36.136813+00 2025-07-21 15:14:36.136818+00 f t ADELANTO 0.00 4 4025 \N +149829 2025-07-20 04:30:58.859083+00 2025-07-20 04:30:58.859092+00 f t SUBTOTAL 0.00 1 3923 \N +149830 2025-07-20 04:30:58.861012+00 2025-07-20 04:30:58.861022+00 f t DESCUENTO 0.00 2 3923 \N +149831 2025-07-20 04:30:58.862455+00 2025-07-20 04:30:58.862462+00 f t TOTAL 0.00 3 3923 \N +149832 2025-07-20 04:30:58.863846+00 2025-07-20 04:30:58.863853+00 f t ADELANTO 0.00 4 3923 \N +154225 2025-07-21 16:40:30.522912+00 2025-07-21 16:40:30.522925+00 f t SUBTOTAL 0.00 1 4033 \N +154226 2025-07-21 16:40:30.525422+00 2025-07-21 16:40:30.525434+00 f t DESCUENTO 0.00 2 4033 \N +154227 2025-07-21 16:40:30.5272+00 2025-07-21 16:40:30.52721+00 f t TOTAL 0.00 3 4033 \N +154228 2025-07-21 16:40:30.528896+00 2025-07-21 16:40:30.528905+00 f t ADELANTO 0.00 4 4033 \N +154333 2025-07-21 17:25:00.409806+00 2025-07-21 17:25:00.409815+00 f t SUBTOTAL 62000.00 1 4037 \N +154334 2025-07-21 17:25:00.411402+00 2025-07-21 17:25:00.411409+00 f t DESCUENTO 0.00 2 4037 \N +154335 2025-07-21 17:25:00.412721+00 2025-07-21 17:25:00.412728+00 f t TOTAL 62000.00 3 4037 \N +154336 2025-07-21 17:25:00.413912+00 2025-07-21 17:25:00.413917+00 f t ADELANTO 12000.00 4 4037 \N +150653 2025-07-20 14:56:30.160047+00 2025-07-20 14:56:30.160055+00 f t SUBTOTAL 0.00 1 3947 \N +150654 2025-07-20 14:56:30.161567+00 2025-07-20 14:56:30.161575+00 f t DESCUENTO 0.00 2 3947 \N +150655 2025-07-20 14:56:30.162934+00 2025-07-20 14:56:30.16294+00 f t TOTAL 0.00 3 3947 \N +150656 2025-07-20 14:56:30.16404+00 2025-07-20 14:56:30.164046+00 f t ADELANTO 0.00 4 3947 \N +149865 2025-07-20 04:57:22.498821+00 2025-07-20 04:57:22.498829+00 f t SUBTOTAL 42000.00 1 3924 \N +149866 2025-07-20 04:57:22.500351+00 2025-07-20 04:57:22.500359+00 f t DESCUENTO 0.00 2 3924 \N +149867 2025-07-20 04:57:22.501547+00 2025-07-20 04:57:22.501553+00 f t TOTAL 42000.00 3 3924 \N +149868 2025-07-20 04:57:22.502495+00 2025-07-20 04:57:22.5025+00 f t ADELANTO 9500.00 4 3924 \N +150849 2025-07-20 15:57:33.82165+00 2025-07-20 15:57:33.82166+00 f t SUBTOTAL 0.00 1 3951 \N +150850 2025-07-20 15:57:33.823499+00 2025-07-20 15:57:33.823507+00 f t DESCUENTO 0.00 2 3951 \N +150851 2025-07-20 15:57:33.824762+00 2025-07-20 15:57:33.824771+00 f t TOTAL 0.00 3 3951 \N +150852 2025-07-20 15:57:33.825822+00 2025-07-20 15:57:33.82583+00 f t ADELANTO 0.00 4 3951 \N +150889 2025-07-20 16:08:54.358513+00 2025-07-20 16:08:54.358522+00 f t SUBTOTAL 42000.00 1 3952 \N +150890 2025-07-20 16:08:54.360277+00 2025-07-20 16:08:54.360285+00 f t DESCUENTO 0.00 2 3952 \N +150891 2025-07-20 16:08:54.361546+00 2025-07-20 16:08:54.361552+00 f t TOTAL 42000.00 3 3952 \N +150892 2025-07-20 16:08:54.36253+00 2025-07-20 16:08:54.362536+00 f t ADELANTO 9500.00 4 3952 \N +149893 2025-07-20 05:04:02.657998+00 2025-07-20 05:04:02.65801+00 f t SUBTOTAL 107200.00 1 3925 \N +149894 2025-07-20 05:04:02.661801+00 2025-07-20 05:04:02.661816+00 f t DESCUENTO 0.00 2 3925 \N +149895 2025-07-20 05:04:02.663955+00 2025-07-20 05:04:02.663968+00 f t TOTAL 107200.00 3 3925 \N +149896 2025-07-20 05:04:02.666919+00 2025-07-20 05:04:02.666931+00 f t ADELANTO 69200.00 4 3925 \N +158496 2025-07-23 19:40:56.509308+00 2025-07-23 19:40:56.509314+00 f t ADELANTO 0.00 4 4153 \N +149921 2025-07-20 05:35:44.020895+00 2025-07-20 05:35:44.020906+00 f t SUBTOTAL 64500.00 1 3926 \N +149922 2025-07-20 05:35:44.022556+00 2025-07-20 05:35:44.022564+00 f t DESCUENTO 0.00 2 3926 \N +149923 2025-07-20 05:35:44.023813+00 2025-07-20 05:35:44.02382+00 f t TOTAL 64500.00 3 3926 \N +149924 2025-07-20 05:35:44.024995+00 2025-07-20 05:35:44.025004+00 f t ADELANTO 17000.00 4 3926 \N +154945 2025-07-22 01:06:25.191959+00 2025-07-22 01:06:25.191968+00 f t SUBTOTAL 0.00 1 4057 \N +154946 2025-07-22 01:06:25.194248+00 2025-07-22 01:06:25.194255+00 f t DESCUENTO 0.00 2 4057 \N +154947 2025-07-22 01:06:25.195667+00 2025-07-22 01:06:25.195675+00 f t TOTAL 0.00 3 4057 \N +154948 2025-07-22 01:06:25.196984+00 2025-07-22 01:06:25.19699+00 f t ADELANTO 0.00 4 4057 \N +151357 2025-07-20 19:03:12.917834+00 2025-07-20 19:03:12.917842+00 f t SUBTOTAL 42000.00 1 3962 \N +151358 2025-07-20 19:03:12.919408+00 2025-07-20 19:03:12.919414+00 f t DESCUENTO 0.00 2 3962 \N +151359 2025-07-20 19:03:12.920669+00 2025-07-20 19:03:12.920675+00 f t TOTAL 42000.00 3 3962 \N +151360 2025-07-20 19:03:12.921942+00 2025-07-20 19:03:12.921948+00 f t ADELANTO 9500.00 4 3962 \N +149965 2025-07-20 08:22:38.555521+00 2025-07-20 08:22:38.555531+00 f t SUBTOTAL 0.00 1 3927 \N +149966 2025-07-20 08:22:38.557351+00 2025-07-20 08:22:38.557358+00 f t DESCUENTO 0.00 2 3927 \N +149967 2025-07-20 08:22:38.558595+00 2025-07-20 08:22:38.558602+00 f t TOTAL 0.00 3 3927 \N +149968 2025-07-20 08:22:38.559715+00 2025-07-20 08:22:38.559721+00 f t ADELANTO 0.00 4 3927 \N +155277 2025-07-22 03:13:17.534538+00 2025-07-22 03:13:17.534546+00 f t SUBTOTAL 87000.00 1 4060 \N +155278 2025-07-22 03:13:17.536166+00 2025-07-22 03:13:17.536173+00 f t DESCUENTO 0.00 2 4060 \N +155279 2025-07-22 03:13:17.537404+00 2025-07-22 03:13:17.53741+00 f t TOTAL 87000.00 3 4060 \N +155280 2025-07-22 03:13:17.538356+00 2025-07-22 03:13:17.538364+00 f t ADELANTO 24500.00 4 4060 \N +149973 2025-07-20 08:23:57.465397+00 2025-07-20 08:23:57.465406+00 f t SUBTOTAL 0.00 1 3928 \N +149974 2025-07-20 08:23:57.467256+00 2025-07-20 08:23:57.467264+00 f t DESCUENTO 0.00 2 3928 \N +149975 2025-07-20 08:23:57.468724+00 2025-07-20 08:23:57.468731+00 f t TOTAL 0.00 3 3928 \N +149976 2025-07-20 08:23:57.469957+00 2025-07-20 08:23:57.469966+00 f t ADELANTO 0.00 4 3928 \N +159033 2025-07-23 22:30:11.548836+00 2025-07-23 22:30:11.548848+00 f t SUBTOTAL 0.00 1 4168 \N +159034 2025-07-23 22:30:11.550706+00 2025-07-23 22:30:11.550715+00 f t DESCUENTO 0.00 2 4168 \N +159035 2025-07-23 22:30:11.552232+00 2025-07-23 22:30:11.55224+00 f t TOTAL 0.00 3 4168 \N +159036 2025-07-23 22:30:11.553767+00 2025-07-23 22:30:11.553774+00 f t ADELANTO 0.00 4 4168 \N +151641 2025-07-20 20:33:38.745296+00 2025-07-20 20:33:38.745304+00 f t SUBTOTAL 50000.00 1 3970 \N +151642 2025-07-20 20:33:38.747151+00 2025-07-20 20:33:38.747159+00 f t DESCUENTO 0.00 2 3970 \N +151643 2025-07-20 20:33:38.74859+00 2025-07-20 20:33:38.748597+00 f t TOTAL 50000.00 3 3970 \N +151644 2025-07-20 20:33:38.749876+00 2025-07-20 20:33:38.749882+00 f t ADELANTO 10000.00 4 3970 \N +159161 2025-07-24 00:27:25.446714+00 2025-07-24 00:27:25.446727+00 f t SUBTOTAL 27500.00 1 4170 \N +159162 2025-07-24 00:27:25.448685+00 2025-07-24 00:27:25.448696+00 f t DESCUENTO 0.00 2 4170 \N +159163 2025-07-24 00:27:25.450269+00 2025-07-24 00:27:25.450278+00 f t TOTAL 27500.00 3 4170 \N +159164 2025-07-24 00:27:25.451657+00 2025-07-24 00:27:25.451665+00 f t ADELANTO 27500.00 4 4170 \N +151889 2025-07-20 21:34:49.028277+00 2025-07-20 21:34:49.028285+00 f t SUBTOTAL 0.00 1 3976 \N +151890 2025-07-20 21:34:49.030028+00 2025-07-20 21:34:49.030035+00 f t DESCUENTO 0.00 2 3976 \N +151891 2025-07-20 21:34:49.031174+00 2025-07-20 21:34:49.031179+00 f t TOTAL 0.00 3 3976 \N +151892 2025-07-20 21:34:49.032234+00 2025-07-20 21:34:49.032239+00 f t ADELANTO 0.00 4 3976 \N +152189 2025-07-21 00:09:25.730545+00 2025-07-21 00:09:25.730556+00 f t SUBTOTAL 84000.00 1 3985 \N +152190 2025-07-21 00:09:25.732213+00 2025-07-21 00:09:25.732219+00 f t DESCUENTO 0.00 2 3985 \N +152191 2025-07-21 00:09:25.733467+00 2025-07-21 00:09:25.73348+00 f t TOTAL 84000.00 3 3985 \N +240526 2025-08-25 16:39:52.910707+00 2025-08-25 16:39:52.910715+00 f t DESCUENTO 0.00 2 6212 \N +152237 2025-07-21 00:30:16.223689+00 2025-07-21 00:30:16.223697+00 f t SUBTOTAL 62000.00 1 3987 \N +152238 2025-07-21 00:30:16.22574+00 2025-07-21 00:30:16.225748+00 f t DESCUENTO 0.00 2 3987 \N +152239 2025-07-21 00:30:16.227314+00 2025-07-21 00:30:16.227323+00 f t TOTAL 62000.00 3 3987 \N +152240 2025-07-21 00:30:16.229022+00 2025-07-21 00:30:16.229033+00 f t ADELANTO 12000.00 4 3987 \N +153925 2025-07-21 15:41:39.479845+00 2025-07-21 15:41:39.479855+00 f t SUBTOTAL 134500.00 1 4030 \N +153926 2025-07-21 15:41:39.481444+00 2025-07-21 15:41:39.481451+00 f t DESCUENTO 0.00 2 4030 \N +153927 2025-07-21 15:41:39.482751+00 2025-07-21 15:41:39.482756+00 f t TOTAL 134500.00 3 4030 \N +153928 2025-07-21 15:41:39.483855+00 2025-07-21 15:41:39.48386+00 f t ADELANTO 32000.00 4 4030 \N +154077 2025-07-21 16:26:02.168337+00 2025-07-21 16:26:02.168352+00 f t SUBTOTAL 0.00 1 4032 \N +154078 2025-07-21 16:26:02.172263+00 2025-07-21 16:26:02.172276+00 f t DESCUENTO 0.00 2 4032 \N +154079 2025-07-21 16:26:02.174774+00 2025-07-21 16:26:02.174787+00 f t TOTAL 0.00 3 4032 \N +154080 2025-07-21 16:26:02.177141+00 2025-07-21 16:26:02.177154+00 f t ADELANTO 0.00 4 4032 \N +154285 2025-07-21 17:13:46.048441+00 2025-07-21 17:13:46.048451+00 f t SUBTOTAL 42000.00 1 4036 \N +154286 2025-07-21 17:13:46.050304+00 2025-07-21 17:13:46.050311+00 f t DESCUENTO 0.00 2 4036 \N +154287 2025-07-21 17:13:46.051577+00 2025-07-21 17:13:46.051583+00 f t TOTAL 42000.00 3 4036 \N +154288 2025-07-21 17:13:46.052756+00 2025-07-21 17:13:46.052763+00 f t ADELANTO 9500.00 4 4036 \N +154453 2025-07-21 18:35:36.814511+00 2025-07-21 18:35:36.81452+00 f t SUBTOTAL 42000.00 1 4043 \N +154454 2025-07-21 18:35:36.816158+00 2025-07-21 18:35:36.816167+00 f t DESCUENTO 0.00 2 4043 \N +154455 2025-07-21 18:35:36.817405+00 2025-07-21 18:35:36.817411+00 f t TOTAL 42000.00 3 4043 \N +154456 2025-07-21 18:35:36.818457+00 2025-07-21 18:35:36.818462+00 f t ADELANTO 9500.00 4 4043 \N +154505 2025-07-21 20:00:26.455479+00 2025-07-21 20:00:26.455491+00 f t SUBTOTAL 49500.00 1 4045 \N +154506 2025-07-21 20:00:26.45871+00 2025-07-21 20:00:26.458723+00 f t DESCUENTO 0.00 2 4045 \N +154507 2025-07-21 20:00:26.461072+00 2025-07-21 20:00:26.461084+00 f t TOTAL 49500.00 3 4045 \N +154508 2025-07-21 20:00:26.463585+00 2025-07-21 20:00:26.463597+00 f t ADELANTO 11500.00 4 4045 \N +154645 2025-07-21 22:27:50.798033+00 2025-07-21 22:27:50.798042+00 f t SUBTOTAL 27500.00 1 4051 \N +152305 2025-07-21 00:36:15.769248+00 2025-07-21 00:36:15.769256+00 f t SUBTOTAL 42000.00 1 3988 \N +152306 2025-07-21 00:36:15.77086+00 2025-07-21 00:36:15.770866+00 f t DESCUENTO 0.00 2 3988 \N +152307 2025-07-21 00:36:15.77214+00 2025-07-21 00:36:15.772146+00 f t TOTAL 42000.00 3 3988 \N +152308 2025-07-21 00:36:15.773273+00 2025-07-21 00:36:15.773281+00 f t ADELANTO 9500.00 4 3988 \N +154646 2025-07-21 22:27:50.799822+00 2025-07-21 22:27:50.799829+00 f t DESCUENTO 0.00 2 4051 \N +154647 2025-07-21 22:27:50.800977+00 2025-07-21 22:27:50.800983+00 f t TOTAL 27500.00 3 4051 \N +154648 2025-07-21 22:27:50.801988+00 2025-07-21 22:27:50.801995+00 f t ADELANTO 27500.00 4 4051 \N +152333 2025-07-21 00:52:14.388151+00 2025-07-21 00:52:14.388159+00 f t SUBTOTAL 42000.00 1 3989 \N +152334 2025-07-21 00:52:14.389733+00 2025-07-21 00:52:14.38974+00 f t DESCUENTO 0.00 2 3989 \N +152335 2025-07-21 00:52:14.390889+00 2025-07-21 00:52:14.390895+00 f t TOTAL 42000.00 3 3989 \N +152336 2025-07-21 00:52:14.391858+00 2025-07-21 00:52:14.391865+00 f t ADELANTO 9500.00 4 3989 \N +152385 2025-07-21 01:13:07.660283+00 2025-07-21 01:13:07.660291+00 f t SUBTOTAL 0.00 1 3990 \N +152386 2025-07-21 01:13:07.662062+00 2025-07-21 01:13:07.662069+00 f t DESCUENTO 0.00 2 3990 \N +152387 2025-07-21 01:13:07.66323+00 2025-07-21 01:13:07.663236+00 f t TOTAL 0.00 3 3990 \N +152388 2025-07-21 01:13:07.664411+00 2025-07-21 01:13:07.664419+00 f t ADELANTO 0.00 4 3990 \N +152393 2025-07-21 01:36:01.955326+00 2025-07-21 01:36:01.95534+00 f t SUBTOTAL 0.00 1 3991 \N +152394 2025-07-21 01:36:01.959042+00 2025-07-21 01:36:01.959056+00 f t DESCUENTO 0.00 2 3991 \N +152395 2025-07-21 01:36:01.966825+00 2025-07-21 01:36:01.966838+00 f t TOTAL 0.00 3 3991 \N +152396 2025-07-21 01:36:01.970123+00 2025-07-21 01:36:01.970136+00 f t ADELANTO 0.00 4 3991 \N +155409 2025-07-22 05:48:49.994302+00 2025-07-22 05:48:49.994315+00 f t SUBTOTAL 49500.00 1 4062 \N +152401 2025-07-21 01:53:00.672951+00 2025-07-21 01:53:00.672963+00 f t SUBTOTAL 0.00 1 3992 \N +152402 2025-07-21 01:53:00.675168+00 2025-07-21 01:53:00.675179+00 f t DESCUENTO 0.00 2 3992 \N +152403 2025-07-21 01:53:00.676649+00 2025-07-21 01:53:00.676658+00 f t TOTAL 0.00 3 3992 \N +152404 2025-07-21 01:53:00.678062+00 2025-07-21 01:53:00.678071+00 f t ADELANTO 0.00 4 3992 \N +155410 2025-07-22 05:48:49.996098+00 2025-07-22 05:48:49.996105+00 f t DESCUENTO 0.00 2 4062 \N +155411 2025-07-22 05:48:49.997261+00 2025-07-22 05:48:49.997266+00 f t TOTAL 49500.00 3 4062 \N +155412 2025-07-22 05:48:49.998302+00 2025-07-22 05:48:49.998307+00 f t ADELANTO 11500.00 4 4062 \N +155461 2025-07-22 09:09:44.14989+00 2025-07-22 09:09:44.1499+00 f t SUBTOTAL 0.00 1 4065 \N +155462 2025-07-22 09:09:44.151867+00 2025-07-22 09:09:44.151876+00 f t DESCUENTO 0.00 2 4065 \N +155463 2025-07-22 09:09:44.15319+00 2025-07-22 09:09:44.153196+00 f t TOTAL 0.00 3 4065 \N +155464 2025-07-22 09:09:44.154608+00 2025-07-22 09:09:44.154614+00 f t ADELANTO 0.00 4 4065 \N +155601 2025-07-22 12:43:06.418293+00 2025-07-22 12:43:06.418304+00 f t SUBTOTAL 0.00 1 4070 \N +155602 2025-07-22 12:43:06.42068+00 2025-07-22 12:43:06.420688+00 f t DESCUENTO 0.00 2 4070 \N +155603 2025-07-22 12:43:06.422728+00 2025-07-22 12:43:06.422738+00 f t TOTAL 0.00 3 4070 \N +155604 2025-07-22 12:43:06.424311+00 2025-07-22 12:43:06.424317+00 f t ADELANTO 0.00 4 4070 \N +152429 2025-07-21 01:55:43.966018+00 2025-07-21 01:55:43.966026+00 f t SUBTOTAL 42000.00 1 3993 \N +152430 2025-07-21 01:55:43.967679+00 2025-07-21 01:55:43.967686+00 f t DESCUENTO 0.00 2 3993 \N +152431 2025-07-21 01:55:43.968983+00 2025-07-21 01:55:43.968992+00 f t TOTAL 42000.00 3 3993 \N +152432 2025-07-21 01:55:43.970239+00 2025-07-21 01:55:43.970247+00 f t ADELANTO 9500.00 4 3993 \N +152465 2025-07-21 03:15:42.028506+00 2025-07-21 03:15:42.02852+00 f t SUBTOTAL 0.00 1 3994 \N +152466 2025-07-21 03:15:42.030828+00 2025-07-21 03:15:42.030839+00 f t DESCUENTO 0.00 2 3994 \N +152467 2025-07-21 03:15:42.0324+00 2025-07-21 03:15:42.032409+00 f t TOTAL 0.00 3 3994 \N +152468 2025-07-21 03:15:42.033717+00 2025-07-21 03:15:42.033724+00 f t ADELANTO 0.00 4 3994 \N +152473 2025-07-21 03:21:38.636495+00 2025-07-21 03:21:38.636503+00 f t SUBTOTAL 0.00 1 3995 \N +152474 2025-07-21 03:21:38.638016+00 2025-07-21 03:21:38.638022+00 f t DESCUENTO 0.00 2 3995 \N +152475 2025-07-21 03:21:38.6391+00 2025-07-21 03:21:38.639105+00 f t TOTAL 0.00 3 3995 \N +152476 2025-07-21 03:21:38.640059+00 2025-07-21 03:21:38.640064+00 f t ADELANTO 0.00 4 3995 \N +152481 2025-07-21 03:24:25.536641+00 2025-07-21 03:24:25.536651+00 f t SUBTOTAL 0.00 1 3996 \N +152482 2025-07-21 03:24:25.53811+00 2025-07-21 03:24:25.538119+00 f t DESCUENTO 0.00 2 3996 \N +152483 2025-07-21 03:24:25.539333+00 2025-07-21 03:24:25.539339+00 f t TOTAL 0.00 3 3996 \N +152484 2025-07-21 03:24:25.540397+00 2025-07-21 03:24:25.540403+00 f t ADELANTO 0.00 4 3996 \N +152489 2025-07-21 03:39:07.824686+00 2025-07-21 03:39:07.824699+00 f t SUBTOTAL 0.00 1 3997 \N +152490 2025-07-21 03:39:07.826613+00 2025-07-21 03:39:07.826622+00 f t DESCUENTO 0.00 2 3997 \N +152491 2025-07-21 03:39:07.828403+00 2025-07-21 03:39:07.828413+00 f t TOTAL 0.00 3 3997 \N +152492 2025-07-21 03:39:07.829992+00 2025-07-21 03:39:07.830001+00 f t ADELANTO 0.00 4 3997 \N +161392 2025-07-25 09:38:10.57746+00 2025-07-25 09:38:10.577467+00 f t ADELANTO 0.00 4 4237 \N +157697 2025-07-23 08:56:46.796513+00 2025-07-23 08:56:46.796522+00 f t SUBTOTAL 185500.00 1 4130 \N +157698 2025-07-23 08:56:46.798365+00 2025-07-23 08:56:46.798374+00 f t DESCUENTO 0.00 2 4130 \N +157699 2025-07-23 08:56:46.799863+00 2025-07-23 08:56:46.799874+00 f t TOTAL 185500.00 3 4130 \N +157700 2025-07-23 08:56:46.801297+00 2025-07-23 08:56:46.801307+00 f t ADELANTO 43000.00 4 4130 \N +157757 2025-07-23 10:22:47.620027+00 2025-07-23 10:22:47.620036+00 f t SUBTOTAL 94500.00 1 4132 \N +157758 2025-07-23 10:22:47.622107+00 2025-07-23 10:22:47.622116+00 f t DESCUENTO 0.00 2 4132 \N +157759 2025-07-23 10:22:47.623489+00 2025-07-23 10:22:47.623496+00 f t TOTAL 94500.00 3 4132 \N +157760 2025-07-23 10:22:47.624737+00 2025-07-23 10:22:47.624747+00 f t ADELANTO 26500.00 4 4132 \N +173465 2025-07-30 10:25:31.343749+00 2025-07-30 10:25:31.343758+00 f t SUBTOTAL 50000.00 1 4544 \N +173466 2025-07-30 10:25:31.345368+00 2025-07-30 10:25:31.345374+00 f t DESCUENTO 0.00 2 4544 \N +173467 2025-07-30 10:25:31.346591+00 2025-07-30 10:25:31.346599+00 f t TOTAL 50000.00 3 4544 \N +157873 2025-07-23 11:46:33.051787+00 2025-07-23 11:46:33.051795+00 f t SUBTOTAL 50000.00 1 4135 \N +157874 2025-07-23 11:46:33.053492+00 2025-07-23 11:46:33.053498+00 f t DESCUENTO 0.00 2 4135 \N +157875 2025-07-23 11:46:33.054672+00 2025-07-23 11:46:33.054682+00 f t TOTAL 50000.00 3 4135 \N +157876 2025-07-23 11:46:33.055722+00 2025-07-23 11:46:33.055728+00 f t ADELANTO 10000.00 4 4135 \N +173468 2025-07-30 10:25:31.347896+00 2025-07-30 10:25:31.347902+00 f t ADELANTO 10000.00 4 4544 \N +161641 2025-07-25 12:42:41.785378+00 2025-07-25 12:42:41.785387+00 f t SUBTOTAL 0.00 1 4243 \N +161642 2025-07-25 12:42:41.787586+00 2025-07-25 12:42:41.787594+00 f t DESCUENTO 0.00 2 4243 \N +161643 2025-07-25 12:42:41.78906+00 2025-07-25 12:42:41.789067+00 f t TOTAL 0.00 3 4243 \N +161644 2025-07-25 12:42:41.790288+00 2025-07-25 12:42:41.790294+00 f t ADELANTO 0.00 4 4243 \N +154233 2025-07-21 16:40:31.943967+00 2025-07-21 16:40:31.943979+00 f t SUBTOTAL 42000.00 1 4034 \N +154234 2025-07-21 16:40:31.947815+00 2025-07-21 16:40:31.947825+00 f t DESCUENTO 0.00 2 4034 \N +154235 2025-07-21 16:40:31.949608+00 2025-07-21 16:40:31.949617+00 f t TOTAL 42000.00 3 4034 \N +154236 2025-07-21 16:40:31.951034+00 2025-07-21 16:40:31.951042+00 f t ADELANTO 9500.00 4 4034 \N +154461 2025-07-21 19:17:13.040567+00 2025-07-21 19:17:13.040575+00 f t SUBTOTAL 0.00 1 4044 \N +154462 2025-07-21 19:17:13.041897+00 2025-07-21 19:17:13.041903+00 f t DESCUENTO 0.00 2 4044 \N +154463 2025-07-21 19:17:13.043074+00 2025-07-21 19:17:13.04308+00 f t TOTAL 0.00 3 4044 \N +154464 2025-07-21 19:17:13.044127+00 2025-07-21 19:17:13.044133+00 f t ADELANTO 0.00 4 4044 \N +154513 2025-07-21 20:11:46.805434+00 2025-07-21 20:11:46.805445+00 f t SUBTOTAL 0.00 1 4047 \N +154514 2025-07-21 20:11:46.807039+00 2025-07-21 20:11:46.807048+00 f t DESCUENTO 0.00 2 4047 \N +154515 2025-07-21 20:11:46.808396+00 2025-07-21 20:11:46.808402+00 f t TOTAL 0.00 3 4047 \N +154516 2025-07-21 20:11:46.809385+00 2025-07-21 20:11:46.809391+00 f t ADELANTO 0.00 4 4047 \N +154653 2025-07-21 23:22:45.195915+00 2025-07-21 23:22:45.195925+00 f t SUBTOTAL 0.00 1 4052 \N +154654 2025-07-21 23:22:45.197526+00 2025-07-21 23:22:45.197533+00 f t DESCUENTO 0.00 2 4052 \N +154655 2025-07-21 23:22:45.198663+00 2025-07-21 23:22:45.198669+00 f t TOTAL 0.00 3 4052 \N +154656 2025-07-21 23:22:45.199792+00 2025-07-21 23:22:45.199798+00 f t ADELANTO 0.00 4 4052 \N +158501 2025-07-23 20:27:41.352751+00 2025-07-23 20:27:41.352761+00 f t SUBTOTAL 0.00 1 4154 \N +158502 2025-07-23 20:27:41.354392+00 2025-07-23 20:27:41.354399+00 f t DESCUENTO 0.00 2 4154 \N +158503 2025-07-23 20:27:41.355702+00 2025-07-23 20:27:41.355709+00 f t TOTAL 0.00 3 4154 \N +158504 2025-07-23 20:27:41.356791+00 2025-07-23 20:27:41.3568+00 f t ADELANTO 0.00 4 4154 \N +152641 2025-07-21 03:44:11.441898+00 2025-07-21 03:44:11.441907+00 f t SUBTOTAL 159700.00 1 3998 \N +152642 2025-07-21 03:44:11.443654+00 2025-07-21 03:44:11.443662+00 f t DESCUENTO 0.00 2 3998 \N +152643 2025-07-21 03:44:11.444842+00 2025-07-21 03:44:11.444848+00 f t TOTAL 159700.00 3 3998 \N +152644 2025-07-21 03:44:11.445871+00 2025-07-21 03:44:11.445877+00 f t ADELANTO 86200.00 4 3998 \N +166249 2025-07-27 15:32:45.716363+00 2025-07-27 15:32:45.716375+00 f t SUBTOTAL 82700.00 1 4350 \N +166250 2025-07-27 15:32:45.720461+00 2025-07-27 15:32:45.720471+00 f t DESCUENTO 0.00 2 4350 \N +166251 2025-07-27 15:32:45.7221+00 2025-07-27 15:32:45.722109+00 f t TOTAL 82700.00 3 4350 \N +166252 2025-07-27 15:32:45.723604+00 2025-07-27 15:32:45.723612+00 f t ADELANTO 44700.00 4 4350 \N +162341 2025-07-25 16:01:30.727195+00 2025-07-25 16:01:30.727207+00 f t SUBTOTAL 144000.00 1 4254 \N +162342 2025-07-25 16:01:30.731591+00 2025-07-25 16:01:30.731601+00 f t DESCUENTO 0.00 2 4254 \N +162343 2025-07-25 16:01:30.735608+00 2025-07-25 16:01:30.735619+00 f t TOTAL 144000.00 3 4254 \N +162344 2025-07-25 16:01:30.741244+00 2025-07-25 16:01:30.741255+00 f t ADELANTO 38000.00 4 4254 \N +155469 2025-07-22 11:01:29.23168+00 2025-07-22 11:01:29.231692+00 f t SUBTOTAL 0.00 1 4066 \N +155470 2025-07-22 11:01:29.233558+00 2025-07-22 11:01:29.233569+00 f t DESCUENTO 0.00 2 4066 \N +155471 2025-07-22 11:01:29.235114+00 2025-07-22 11:01:29.235123+00 f t TOTAL 0.00 3 4066 \N +155472 2025-07-22 11:01:29.236701+00 2025-07-22 11:01:29.236709+00 f t ADELANTO 0.00 4 4066 \N +162749 2025-07-25 17:23:26.333182+00 2025-07-25 17:23:26.333192+00 f t SUBTOTAL 64500.00 1 4263 \N +162750 2025-07-25 17:23:26.334887+00 2025-07-25 17:23:26.334896+00 f t DESCUENTO 0.00 2 4263 \N +162751 2025-07-25 17:23:26.336368+00 2025-07-25 17:23:26.336376+00 f t TOTAL 64500.00 3 4263 \N +162752 2025-07-25 17:23:26.337608+00 2025-07-25 17:23:26.337615+00 f t ADELANTO 17000.00 4 4263 \N +162781 2025-07-25 17:46:29.588792+00 2025-07-25 17:46:29.588801+00 f t SUBTOTAL 50000.00 1 4264 \N +162782 2025-07-25 17:46:29.590682+00 2025-07-25 17:46:29.590688+00 f t DESCUENTO 0.00 2 4264 \N +162783 2025-07-25 17:46:29.59191+00 2025-07-25 17:46:29.591915+00 f t TOTAL 50000.00 3 4264 \N +162784 2025-07-25 17:46:29.592897+00 2025-07-25 17:46:29.592902+00 f t ADELANTO 10000.00 4 4264 \N +162901 2025-07-25 20:48:47.775783+00 2025-07-25 20:48:47.775791+00 f t SUBTOTAL 49500.00 1 4266 \N +162902 2025-07-25 20:48:47.777505+00 2025-07-25 20:48:47.77751+00 f t DESCUENTO 0.00 2 4266 \N +162903 2025-07-25 20:48:47.778525+00 2025-07-25 20:48:47.77853+00 f t TOTAL 49500.00 3 4266 \N +162904 2025-07-25 20:48:47.779466+00 2025-07-25 20:48:47.77947+00 f t ADELANTO 11500.00 4 4266 \N +155853 2025-07-22 15:22:37.818772+00 2025-07-22 15:22:37.818784+00 f t SUBTOTAL 42000.00 1 4075 \N +155854 2025-07-22 15:22:37.820951+00 2025-07-22 15:22:37.820963+00 f t DESCUENTO 0.00 2 4075 \N +155855 2025-07-22 15:22:37.822766+00 2025-07-22 15:22:37.822777+00 f t TOTAL 42000.00 3 4075 \N +155856 2025-07-22 15:22:37.824378+00 2025-07-22 15:22:37.824387+00 f t ADELANTO 9500.00 4 4075 \N +155961 2025-07-22 16:00:29.193168+00 2025-07-22 16:00:29.193183+00 f t SUBTOTAL 58800.00 1 4079 \N +155962 2025-07-22 16:00:29.195913+00 2025-07-22 16:00:29.195925+00 f t DESCUENTO 0.00 2 4079 \N +155963 2025-07-22 16:00:29.199608+00 2025-07-22 16:00:29.19962+00 f t TOTAL 58800.00 3 4079 \N +155964 2025-07-22 16:00:29.203292+00 2025-07-22 16:00:29.203308+00 f t ADELANTO 14300.00 4 4079 \N +159793 2025-07-24 12:15:46.325312+00 2025-07-24 12:15:46.32532+00 f t SUBTOTAL 0.00 1 4183 \N +159794 2025-07-24 12:15:46.326965+00 2025-07-24 12:15:46.326972+00 f t DESCUENTO 0.00 2 4183 \N +159795 2025-07-24 12:15:46.328444+00 2025-07-24 12:15:46.32845+00 f t TOTAL 0.00 3 4183 \N +159796 2025-07-24 12:15:46.329738+00 2025-07-24 12:15:46.329743+00 f t ADELANTO 0.00 4 4183 \N +153769 2025-07-21 15:18:56.578145+00 2025-07-21 15:18:56.578158+00 f t SUBTOTAL 0.00 1 4026 \N +153770 2025-07-21 15:18:56.580645+00 2025-07-21 15:18:56.580655+00 f t DESCUENTO 0.00 2 4026 \N +153771 2025-07-21 15:18:56.583549+00 2025-07-21 15:18:56.583558+00 f t TOTAL 0.00 3 4026 \N +153772 2025-07-21 15:18:56.585041+00 2025-07-21 15:18:56.585049+00 f t ADELANTO 0.00 4 4026 \N +161397 2025-07-25 09:38:48.744735+00 2025-07-25 09:38:48.744743+00 f t SUBTOTAL 0.00 1 4238 \N +161398 2025-07-25 09:38:48.746566+00 2025-07-25 09:38:48.746574+00 f t DESCUENTO 0.00 2 4238 \N +161399 2025-07-25 09:38:48.748185+00 2025-07-25 09:38:48.748192+00 f t TOTAL 0.00 3 4238 \N +161400 2025-07-25 09:38:48.749448+00 2025-07-25 09:38:48.749454+00 f t ADELANTO 0.00 4 4238 \N +157705 2025-07-23 10:11:40.998667+00 2025-07-23 10:11:40.998677+00 f t SUBTOTAL 0.00 1 4131 \N +157706 2025-07-23 10:11:41.000495+00 2025-07-23 10:11:41.000503+00 f t DESCUENTO 0.00 2 4131 \N +157707 2025-07-23 10:11:41.005196+00 2025-07-23 10:11:41.005209+00 f t TOTAL 0.00 3 4131 \N +157708 2025-07-23 10:11:41.007255+00 2025-07-23 10:11:41.007263+00 f t ADELANTO 0.00 4 4131 \N +154241 2025-07-21 17:10:25.241131+00 2025-07-21 17:10:25.24114+00 f t SUBTOTAL 0.00 1 4035 \N +154242 2025-07-21 17:10:25.242422+00 2025-07-21 17:10:25.24243+00 f t DESCUENTO 0.00 2 4035 \N +154243 2025-07-21 17:10:25.243577+00 2025-07-21 17:10:25.243582+00 f t TOTAL 0.00 3 4035 \N +154244 2025-07-21 17:10:25.244609+00 2025-07-21 17:10:25.244614+00 f t ADELANTO 0.00 4 4035 \N +152885 2025-07-21 03:53:08.544748+00 2025-07-21 03:53:08.544758+00 f t SUBTOTAL 295450.00 1 3999 \N +152886 2025-07-21 03:53:08.546442+00 2025-07-21 03:53:08.54645+00 f t DESCUENTO 0.00 2 3999 \N +152887 2025-07-21 03:53:08.548001+00 2025-07-21 03:53:08.548008+00 f t TOTAL 295450.00 3 3999 \N +152888 2025-07-21 03:53:08.549183+00 2025-07-21 03:53:08.549189+00 f t ADELANTO 113450.00 4 3999 \N +152893 2025-07-21 04:07:20.715669+00 2025-07-21 04:07:20.715678+00 f t SUBTOTAL 0.00 1 4000 \N +152894 2025-07-21 04:07:20.717024+00 2025-07-21 04:07:20.717032+00 f t DESCUENTO 0.00 2 4000 \N +152895 2025-07-21 04:07:20.718406+00 2025-07-21 04:07:20.718413+00 f t TOTAL 0.00 3 4000 \N +152896 2025-07-21 04:07:20.719418+00 2025-07-21 04:07:20.719423+00 f t ADELANTO 0.00 4 4000 \N +152901 2025-07-21 04:36:08.361706+00 2025-07-21 04:36:08.361718+00 f t SUBTOTAL 0.00 1 4001 \N +152902 2025-07-21 04:36:08.363645+00 2025-07-21 04:36:08.363654+00 f t DESCUENTO 0.00 2 4001 \N +152903 2025-07-21 04:36:08.365293+00 2025-07-21 04:36:08.365303+00 f t TOTAL 0.00 3 4001 \N +152904 2025-07-21 04:36:08.366845+00 2025-07-21 04:36:08.366856+00 f t ADELANTO 0.00 4 4001 \N +154661 2025-07-21 23:52:54.171511+00 2025-07-21 23:52:54.171524+00 f t SUBTOTAL 0.00 1 4053 \N +154662 2025-07-21 23:52:54.173451+00 2025-07-21 23:52:54.173462+00 f t DESCUENTO 0.00 2 4053 \N +154663 2025-07-21 23:52:54.175031+00 2025-07-21 23:52:54.175042+00 f t TOTAL 0.00 3 4053 \N +152909 2025-07-21 05:48:42.648171+00 2025-07-21 05:48:42.648179+00 f t SUBTOTAL 0.00 1 4002 \N +152910 2025-07-21 05:48:42.649448+00 2025-07-21 05:48:42.649455+00 f t DESCUENTO 0.00 2 4002 \N +152911 2025-07-21 05:48:42.650455+00 2025-07-21 05:48:42.65046+00 f t TOTAL 0.00 3 4002 \N +152912 2025-07-21 05:48:42.651505+00 2025-07-21 05:48:42.65151+00 f t ADELANTO 0.00 4 4002 \N +154664 2025-07-21 23:52:54.176535+00 2025-07-21 23:52:54.176544+00 f t ADELANTO 0.00 4 4053 \N +152949 2025-07-21 08:27:04.293608+00 2025-07-21 08:27:04.293618+00 f t SUBTOTAL 92000.00 1 4003 \N +152950 2025-07-21 08:27:04.295865+00 2025-07-21 08:27:04.295877+00 f t DESCUENTO 0.00 2 4003 \N +152951 2025-07-21 08:27:04.297873+00 2025-07-21 08:27:04.29788+00 f t TOTAL 92000.00 3 4003 \N +152952 2025-07-21 08:27:04.299821+00 2025-07-21 08:27:04.29983+00 f t ADELANTO 19500.00 4 4003 \N +152957 2025-07-21 08:37:25.428204+00 2025-07-21 08:37:25.428213+00 f t SUBTOTAL 0.00 1 4004 \N +152958 2025-07-21 08:37:25.430432+00 2025-07-21 08:37:25.430439+00 f t DESCUENTO 0.00 2 4004 \N +152959 2025-07-21 08:37:25.431733+00 2025-07-21 08:37:25.431739+00 f t TOTAL 0.00 3 4004 \N +152960 2025-07-21 08:37:25.433023+00 2025-07-21 08:37:25.433031+00 f t ADELANTO 0.00 4 4004 \N +152965 2025-07-21 10:01:46.3127+00 2025-07-21 10:01:46.312708+00 f t SUBTOTAL 0.00 1 4005 \N +152966 2025-07-21 10:01:46.314199+00 2025-07-21 10:01:46.314206+00 f t DESCUENTO 0.00 2 4005 \N +152967 2025-07-21 10:01:46.315316+00 2025-07-21 10:01:46.315321+00 f t TOTAL 0.00 3 4005 \N +152968 2025-07-21 10:01:46.316283+00 2025-07-21 10:01:46.316288+00 f t ADELANTO 0.00 4 4005 \N +162421 2025-07-25 16:11:07.166601+00 2025-07-25 16:11:07.166614+00 f t SUBTOTAL 144000.00 1 4255 \N +162422 2025-07-25 16:11:07.168659+00 2025-07-25 16:11:07.168671+00 f t DESCUENTO 0.00 2 4255 \N +162423 2025-07-25 16:11:07.170683+00 2025-07-25 16:11:07.170696+00 f t TOTAL 144000.00 3 4255 \N +162424 2025-07-25 16:11:07.172717+00 2025-07-25 16:11:07.172728+00 f t ADELANTO 38000.00 4 4255 \N +162501 2025-07-25 16:23:08.11282+00 2025-07-25 16:23:08.112831+00 f t SUBTOTAL 49500.00 1 4256 \N +162502 2025-07-25 16:23:08.114451+00 2025-07-25 16:23:08.114459+00 f t DESCUENTO 0.00 2 4256 \N +162503 2025-07-25 16:23:08.11586+00 2025-07-25 16:23:08.115868+00 f t TOTAL 49500.00 3 4256 \N +162504 2025-07-25 16:23:08.117461+00 2025-07-25 16:23:08.117469+00 f t ADELANTO 11500.00 4 4256 \N +152989 2025-07-21 10:04:19.988435+00 2025-07-21 10:04:19.988447+00 f t SUBTOTAL 0.00 1 4006 \N +152990 2025-07-21 10:04:19.990926+00 2025-07-21 10:04:19.990933+00 f t DESCUENTO 0.00 2 4006 \N +152991 2025-07-21 10:04:19.992687+00 2025-07-21 10:04:19.992698+00 f t TOTAL 0.00 3 4006 \N +152992 2025-07-21 10:04:19.994272+00 2025-07-21 10:04:19.994278+00 f t ADELANTO 0.00 4 4006 \N +155477 2025-07-22 11:16:37.567925+00 2025-07-22 11:16:37.56794+00 f t SUBTOTAL 0.00 1 4067 \N +155478 2025-07-22 11:16:37.56931+00 2025-07-22 11:16:37.569319+00 f t DESCUENTO 0.00 2 4067 \N +155479 2025-07-22 11:16:37.570561+00 2025-07-22 11:16:37.570567+00 f t TOTAL 0.00 3 4067 \N +155480 2025-07-22 11:16:37.57177+00 2025-07-22 11:16:37.571776+00 f t ADELANTO 0.00 4 4067 \N +159513 2025-07-24 05:08:19.173848+00 2025-07-24 05:08:19.173857+00 f t SUBTOTAL 42000.00 1 4177 \N +159514 2025-07-24 05:08:19.180754+00 2025-07-24 05:08:19.180764+00 f t DESCUENTO 0.00 2 4177 \N +159515 2025-07-24 05:08:19.182351+00 2025-07-24 05:08:19.182359+00 f t TOTAL 42000.00 3 4177 \N +159516 2025-07-24 05:08:19.183909+00 2025-07-24 05:08:19.183916+00 f t ADELANTO 9500.00 4 4177 \N +155861 2025-07-22 15:33:32.956638+00 2025-07-22 15:33:32.956646+00 f t SUBTOTAL 0.00 1 4076 \N +155862 2025-07-22 15:33:32.95811+00 2025-07-22 15:33:32.958117+00 f t DESCUENTO 0.00 2 4076 \N +155863 2025-07-22 15:33:32.959427+00 2025-07-22 15:33:32.959433+00 f t TOTAL 0.00 3 4076 \N +155864 2025-07-22 15:33:32.960727+00 2025-07-22 15:33:32.960733+00 f t ADELANTO 0.00 4 4076 \N +155897 2025-07-22 15:43:57.619522+00 2025-07-22 15:43:57.619533+00 f t SUBTOTAL 62000.00 1 4077 \N +155898 2025-07-22 15:43:57.621129+00 2025-07-22 15:43:57.621139+00 f t DESCUENTO 0.00 2 4077 \N +155899 2025-07-22 15:43:57.622649+00 2025-07-22 15:43:57.622656+00 f t TOTAL 62000.00 3 4077 \N +155900 2025-07-22 15:43:57.623935+00 2025-07-22 15:43:57.623941+00 f t ADELANTO 12000.00 4 4077 \N +156049 2025-07-22 16:16:20.798467+00 2025-07-22 16:16:20.798479+00 f t SUBTOTAL 42000.00 1 4081 \N +156050 2025-07-22 16:16:20.800632+00 2025-07-22 16:16:20.800643+00 f t DESCUENTO 0.00 2 4081 \N +156051 2025-07-22 16:16:20.802281+00 2025-07-22 16:16:20.802291+00 f t TOTAL 42000.00 3 4081 \N +156052 2025-07-22 16:16:20.804052+00 2025-07-22 16:16:20.804061+00 f t ADELANTO 9500.00 4 4081 \N +153777 2025-07-21 15:28:53.925507+00 2025-07-21 15:28:53.925521+00 f t SUBTOTAL 0.00 1 4027 \N +153778 2025-07-21 15:28:53.927116+00 2025-07-21 15:28:53.927126+00 f t DESCUENTO 0.00 2 4027 \N +153779 2025-07-21 15:28:53.928746+00 2025-07-21 15:28:53.928754+00 f t TOTAL 0.00 3 4027 \N +153780 2025-07-21 15:28:53.930172+00 2025-07-21 15:28:53.93018+00 f t ADELANTO 0.00 4 4027 \N +153133 2025-07-21 10:07:11.654323+00 2025-07-21 10:07:11.654333+00 f t SUBTOTAL 0.00 1 4007 \N +153134 2025-07-21 10:07:11.656026+00 2025-07-21 10:07:11.656036+00 f t DESCUENTO 0.00 2 4007 \N +153135 2025-07-21 10:07:11.657128+00 2025-07-21 10:07:11.657133+00 f t TOTAL 0.00 3 4007 \N +153136 2025-07-21 10:07:11.658182+00 2025-07-21 10:07:11.658187+00 f t ADELANTO 0.00 4 4007 \N +153141 2025-07-21 11:56:28.948301+00 2025-07-21 11:56:28.948309+00 f t SUBTOTAL 0.00 1 4008 \N +153142 2025-07-21 11:56:28.950084+00 2025-07-21 11:56:28.950093+00 f t DESCUENTO 0.00 2 4008 \N +153143 2025-07-21 11:56:28.95142+00 2025-07-21 11:56:28.951427+00 f t TOTAL 0.00 3 4008 \N +153144 2025-07-21 11:56:28.952666+00 2025-07-21 11:56:28.952673+00 f t ADELANTO 0.00 4 4008 \N +154477 2025-07-21 19:59:40.024518+00 2025-07-21 19:59:40.024527+00 f t SUBTOTAL 0.00 1 4046 \N +154478 2025-07-21 19:59:40.027723+00 2025-07-21 19:59:40.02773+00 f t DESCUENTO 0.00 2 4046 \N +154479 2025-07-21 19:59:40.028876+00 2025-07-21 19:59:40.028881+00 f t TOTAL 0.00 3 4046 \N +154480 2025-07-21 19:59:40.030082+00 2025-07-21 19:59:40.03009+00 f t ADELANTO 0.00 4 4046 \N +158405 2025-07-23 17:56:09.418524+00 2025-07-23 17:56:09.418533+00 f t SUBTOTAL 49500.00 1 4149 \N +158406 2025-07-23 17:56:09.420567+00 2025-07-23 17:56:09.420575+00 f t DESCUENTO 0.00 2 4149 \N +158407 2025-07-23 17:56:09.422125+00 2025-07-23 17:56:09.422134+00 f t TOTAL 49500.00 3 4149 \N +158408 2025-07-23 17:56:09.423632+00 2025-07-23 17:56:09.423642+00 f t ADELANTO 11500.00 4 4149 \N +153189 2025-07-21 11:59:08.824471+00 2025-07-21 11:59:08.824484+00 f t SUBTOTAL 0.00 1 4009 \N +153190 2025-07-21 11:59:08.826664+00 2025-07-21 11:59:08.826673+00 f t DESCUENTO 0.00 2 4009 \N +153191 2025-07-21 11:59:08.828386+00 2025-07-21 11:59:08.828394+00 f t TOTAL 0.00 3 4009 \N +153192 2025-07-21 11:59:08.830248+00 2025-07-21 11:59:08.830256+00 f t ADELANTO 0.00 4 4009 \N +158593 2025-07-23 21:35:20.348901+00 2025-07-23 21:35:20.348915+00 f t SUBTOTAL 95000.00 1 4155 \N +158594 2025-07-23 21:35:20.350957+00 2025-07-23 21:35:20.350965+00 f t DESCUENTO 0.00 2 4155 \N +158595 2025-07-23 21:35:20.352561+00 2025-07-23 21:35:20.352568+00 f t TOTAL 95000.00 3 4155 \N +158596 2025-07-23 21:35:20.354016+00 2025-07-23 21:35:20.354025+00 f t ADELANTO 10000.00 4 4155 \N +154913 2025-07-22 00:08:20.712796+00 2025-07-22 00:08:20.712804+00 f t SUBTOTAL 50000.00 1 4054 \N +154914 2025-07-22 00:08:20.714458+00 2025-07-22 00:08:20.714464+00 f t DESCUENTO 0.00 2 4054 \N +154915 2025-07-22 00:08:20.715743+00 2025-07-22 00:08:20.715749+00 f t TOTAL 50000.00 3 4054 \N +154916 2025-07-22 00:08:20.717111+00 2025-07-22 00:08:20.717119+00 f t ADELANTO 10000.00 4 4054 \N +153229 2025-07-21 12:01:03.784541+00 2025-07-21 12:01:03.784571+00 f t SUBTOTAL 62000.00 1 4010 \N +153230 2025-07-21 12:01:03.787772+00 2025-07-21 12:01:03.787783+00 f t DESCUENTO 0.00 2 4010 \N +153231 2025-07-21 12:01:03.790174+00 2025-07-21 12:01:03.790186+00 f t TOTAL 62000.00 3 4010 \N +153232 2025-07-21 12:01:03.792585+00 2025-07-21 12:01:03.792597+00 f t ADELANTO 12000.00 4 4010 \N +153257 2025-07-21 12:03:42.082939+00 2025-07-21 12:03:42.082948+00 f t SUBTOTAL 42000.00 1 4011 \N +153258 2025-07-21 12:03:42.084724+00 2025-07-21 12:03:42.084731+00 f t DESCUENTO 0.00 2 4011 \N +153259 2025-07-21 12:03:42.085877+00 2025-07-21 12:03:42.085882+00 f t TOTAL 42000.00 3 4011 \N +153260 2025-07-21 12:03:42.087456+00 2025-07-21 12:03:42.087463+00 f t ADELANTO 9500.00 4 4011 \N +159085 2025-07-23 22:32:42.489478+00 2025-07-23 22:32:42.489491+00 f t SUBTOTAL 0.00 1 4167 \N +159086 2025-07-23 22:32:42.491423+00 2025-07-23 22:32:42.491433+00 f t DESCUENTO 0.00 2 4167 \N +159087 2025-07-23 22:32:42.492769+00 2025-07-23 22:32:42.492778+00 f t TOTAL 0.00 3 4167 \N +159088 2025-07-23 22:32:42.493988+00 2025-07-23 22:32:42.493996+00 f t ADELANTO 0.00 4 4167 \N +159213 2025-07-24 00:40:44.410501+00 2025-07-24 00:40:44.41051+00 f t SUBTOTAL 50000.00 1 4171 \N +159214 2025-07-24 00:40:44.412447+00 2025-07-24 00:40:44.412456+00 f t DESCUENTO 0.00 2 4171 \N +159215 2025-07-24 00:40:44.41401+00 2025-07-24 00:40:44.414018+00 f t TOTAL 50000.00 3 4171 \N +159216 2025-07-24 00:40:44.415362+00 2025-07-24 00:40:44.41537+00 f t ADELANTO 10000.00 4 4171 \N +153293 2025-07-21 12:06:54.502761+00 2025-07-21 12:06:54.50277+00 f t SUBTOTAL 113700.00 1 4012 \N +153294 2025-07-21 12:06:54.504439+00 2025-07-21 12:06:54.504446+00 f t DESCUENTO 0.00 2 4012 \N +153295 2025-07-21 12:06:54.505602+00 2025-07-21 12:06:54.505609+00 f t TOTAL 113700.00 3 4012 \N +153296 2025-07-21 12:06:54.506736+00 2025-07-21 12:06:54.506742+00 f t ADELANTO 75700.00 4 4012 \N +159409 2025-07-24 03:53:17.061204+00 2025-07-24 03:53:17.061216+00 f t SUBTOTAL 0.00 1 4175 \N +159410 2025-07-24 03:53:17.063593+00 2025-07-24 03:53:17.063601+00 f t DESCUENTO 0.00 2 4175 \N +159411 2025-07-24 03:53:17.065141+00 2025-07-24 03:53:17.065149+00 f t TOTAL 0.00 3 4175 \N +159412 2025-07-24 03:53:17.066927+00 2025-07-24 03:53:17.066935+00 f t ADELANTO 0.00 4 4175 \N +155653 2025-07-22 14:31:37.427602+00 2025-07-22 14:31:37.427614+00 f t SUBTOTAL 0.00 1 4071 \N +155654 2025-07-22 14:31:37.429674+00 2025-07-22 14:31:37.429683+00 f t DESCUENTO 0.00 2 4071 \N +155655 2025-07-22 14:31:37.431101+00 2025-07-22 14:31:37.431109+00 f t TOTAL 0.00 3 4071 \N +155656 2025-07-22 14:31:37.432404+00 2025-07-22 14:31:37.432411+00 f t ADELANTO 0.00 4 4071 \N +153321 2025-07-21 12:07:32.900273+00 2025-07-21 12:07:32.900281+00 f t SUBTOTAL 82700.00 1 4014 \N +153322 2025-07-21 12:07:32.901936+00 2025-07-21 12:07:32.901943+00 f t DESCUENTO 0.00 2 4014 \N +153323 2025-07-21 12:07:32.903424+00 2025-07-21 12:07:32.90343+00 f t TOTAL 82700.00 3 4014 \N +153324 2025-07-21 12:07:32.904698+00 2025-07-21 12:07:32.904707+00 f t ADELANTO 44700.00 4 4014 \N +153341 2025-07-21 12:09:59.325677+00 2025-07-21 12:09:59.325687+00 f t SUBTOTAL 50000.00 1 4013 \N +153342 2025-07-21 12:09:59.327589+00 2025-07-21 12:09:59.327598+00 f t DESCUENTO 0.00 2 4013 \N +153343 2025-07-21 12:09:59.329178+00 2025-07-21 12:09:59.329186+00 f t TOTAL 50000.00 3 4013 \N +153344 2025-07-21 12:09:59.33049+00 2025-07-21 12:09:59.330496+00 f t ADELANTO 10000.00 4 4013 \N +155905 2025-07-22 15:57:54.599891+00 2025-07-22 15:57:54.599902+00 f t SUBTOTAL 0.00 1 4078 \N +155906 2025-07-22 15:57:54.601511+00 2025-07-22 15:57:54.601521+00 f t DESCUENTO 0.00 2 4078 \N +155907 2025-07-22 15:57:54.603011+00 2025-07-22 15:57:54.603018+00 f t TOTAL 0.00 3 4078 \N +155908 2025-07-22 15:57:54.604221+00 2025-07-22 15:57:54.604227+00 f t ADELANTO 0.00 4 4078 \N +153349 2025-07-21 12:12:56.136506+00 2025-07-21 12:12:56.136515+00 f t SUBTOTAL 0.00 1 4015 \N +153350 2025-07-21 12:12:56.137836+00 2025-07-21 12:12:56.137842+00 f t DESCUENTO 0.00 2 4015 \N +153351 2025-07-21 12:12:56.138988+00 2025-07-21 12:12:56.138994+00 f t TOTAL 0.00 3 4015 \N +153352 2025-07-21 12:12:56.140129+00 2025-07-21 12:12:56.140137+00 f t ADELANTO 0.00 4 4015 \N +156057 2025-07-22 16:30:24.360888+00 2025-07-22 16:30:24.360899+00 f t SUBTOTAL 0.00 1 4082 \N +156058 2025-07-22 16:30:24.362448+00 2025-07-22 16:30:24.362455+00 f t DESCUENTO 0.00 2 4082 \N +156059 2025-07-22 16:30:24.363515+00 2025-07-22 16:30:24.36352+00 f t TOTAL 0.00 3 4082 \N +156060 2025-07-22 16:30:24.364649+00 2025-07-22 16:30:24.364655+00 f t ADELANTO 0.00 4 4082 \N +157481 2025-07-23 04:57:54.549948+00 2025-07-23 04:57:54.549961+00 f t SUBTOTAL 0.00 1 4126 \N +153389 2025-07-21 12:20:43.653266+00 2025-07-21 12:20:43.653276+00 f t SUBTOTAL 0.00 1 4016 \N +153390 2025-07-21 12:20:43.655326+00 2025-07-21 12:20:43.655333+00 f t DESCUENTO 0.00 2 4016 \N +153391 2025-07-21 12:20:43.656632+00 2025-07-21 12:20:43.656638+00 f t TOTAL 0.00 3 4016 \N +153392 2025-07-21 12:20:43.658026+00 2025-07-21 12:20:43.658032+00 f t ADELANTO 0.00 4 4016 \N +157482 2025-07-23 04:57:54.552322+00 2025-07-23 04:57:54.552331+00 f t DESCUENTO 0.00 2 4126 \N +157483 2025-07-23 04:57:54.55367+00 2025-07-23 04:57:54.553676+00 f t TOTAL 0.00 3 4126 \N +157484 2025-07-23 04:57:54.554953+00 2025-07-23 04:57:54.554961+00 f t ADELANTO 0.00 4 4126 \N +153425 2025-07-21 12:42:42.426601+00 2025-07-21 12:42:42.42661+00 f t SUBTOTAL 50000.00 1 4017 \N +153426 2025-07-21 12:42:42.428542+00 2025-07-21 12:42:42.428554+00 f t DESCUENTO 0.00 2 4017 \N +153427 2025-07-21 12:42:42.429862+00 2025-07-21 12:42:42.429869+00 f t TOTAL 50000.00 3 4017 \N +153428 2025-07-21 12:42:42.431014+00 2025-07-21 12:42:42.431019+00 f t ADELANTO 10000.00 4 4017 \N +158157 2025-07-23 13:50:19.555487+00 2025-07-23 13:50:19.555496+00 f t SUBTOTAL 62000.00 1 4141 \N +158158 2025-07-23 13:50:19.557439+00 2025-07-23 13:50:19.557448+00 f t DESCUENTO 0.00 2 4141 \N +158159 2025-07-23 13:50:19.558877+00 2025-07-23 13:50:19.558883+00 f t TOTAL 62000.00 3 4141 \N +158160 2025-07-23 13:50:19.55998+00 2025-07-23 13:50:19.559986+00 f t ADELANTO 12000.00 4 4141 \N +154417 2025-07-21 18:01:00.226782+00 2025-07-21 18:01:00.226791+00 f t SUBTOTAL 64500.00 1 4041 \N +154418 2025-07-21 18:01:00.228786+00 2025-07-21 18:01:00.228794+00 f t DESCUENTO 0.00 2 4041 \N +154419 2025-07-21 18:01:00.231223+00 2025-07-21 18:01:00.231236+00 f t TOTAL 64500.00 3 4041 \N +154420 2025-07-21 18:01:00.23319+00 2025-07-21 18:01:00.2332+00 f t ADELANTO 17000.00 4 4041 \N +154577 2025-07-21 22:11:00.801159+00 2025-07-21 22:11:00.801168+00 f t SUBTOTAL 70000.00 1 4049 \N +154578 2025-07-21 22:11:00.802992+00 2025-07-21 22:11:00.802999+00 f t DESCUENTO 0.00 2 4049 \N +154579 2025-07-21 22:11:00.804318+00 2025-07-21 22:11:00.804326+00 f t TOTAL 70000.00 3 4049 \N +154580 2025-07-21 22:11:00.805415+00 2025-07-21 22:11:00.80542+00 f t ADELANTO 15000.00 4 4049 \N +154617 2025-07-21 22:12:14.945908+00 2025-07-21 22:12:14.945919+00 f t SUBTOTAL 42000.00 1 4050 \N +154618 2025-07-21 22:12:14.947676+00 2025-07-21 22:12:14.947684+00 f t DESCUENTO 0.00 2 4050 \N +154619 2025-07-21 22:12:14.948989+00 2025-07-21 22:12:14.948997+00 f t TOTAL 42000.00 3 4050 \N +154620 2025-07-21 22:12:14.950187+00 2025-07-21 22:12:14.950194+00 f t ADELANTO 9500.00 4 4050 \N +158413 2025-07-23 18:01:22.828048+00 2025-07-23 18:01:22.828061+00 f t SUBTOTAL 0.00 1 4150 \N +158414 2025-07-23 18:01:22.829771+00 2025-07-23 18:01:22.82978+00 f t DESCUENTO 0.00 2 4150 \N +158415 2025-07-23 18:01:22.831091+00 2025-07-23 18:01:22.831097+00 f t TOTAL 0.00 3 4150 \N +158416 2025-07-23 18:01:22.832318+00 2025-07-23 18:01:22.832326+00 f t ADELANTO 0.00 4 4150 \N +166057 2025-07-27 14:18:42.795882+00 2025-07-27 14:18:42.795889+00 f t SUBTOTAL 129500.00 1 4343 \N +166058 2025-07-27 14:18:42.797573+00 2025-07-27 14:18:42.797581+00 f t DESCUENTO 0.00 2 4343 \N +166059 2025-07-27 14:18:42.798674+00 2025-07-27 14:18:42.79868+00 f t TOTAL 129500.00 3 4343 \N +166060 2025-07-27 14:18:42.799778+00 2025-07-27 14:18:42.799787+00 f t ADELANTO 27000.00 4 4343 \N +154921 2025-07-22 01:05:05.359742+00 2025-07-22 01:05:05.359757+00 f t SUBTOTAL 0.00 1 4056 \N +154922 2025-07-22 01:05:05.362647+00 2025-07-22 01:05:05.362661+00 f t DESCUENTO 0.00 2 4056 \N +154923 2025-07-22 01:05:05.372832+00 2025-07-22 01:05:05.372847+00 f t TOTAL 0.00 3 4056 \N +154924 2025-07-22 01:05:05.375474+00 2025-07-22 01:05:05.375487+00 f t ADELANTO 0.00 4 4056 \N +158601 2025-07-23 21:36:19.556871+00 2025-07-23 21:36:19.55688+00 f t SUBTOTAL 0.00 1 4156 \N +158602 2025-07-23 21:36:19.558262+00 2025-07-23 21:36:19.558269+00 f t DESCUENTO 0.00 2 4156 \N +158603 2025-07-23 21:36:19.559284+00 2025-07-23 21:36:19.55929+00 f t TOTAL 0.00 3 4156 \N +158604 2025-07-23 21:36:19.560181+00 2025-07-23 21:36:19.560186+00 f t ADELANTO 0.00 4 4156 \N +158649 2025-07-23 21:39:24.696335+00 2025-07-23 21:39:24.696345+00 f t SUBTOTAL 0.00 1 4158 \N +158650 2025-07-23 21:39:24.698486+00 2025-07-23 21:39:24.698494+00 f t DESCUENTO 0.00 2 4158 \N +158651 2025-07-23 21:39:24.699848+00 2025-07-23 21:39:24.699854+00 f t TOTAL 0.00 3 4158 \N +158652 2025-07-23 21:39:24.701039+00 2025-07-23 21:39:24.701046+00 f t ADELANTO 0.00 4 4158 \N +153529 2025-07-21 13:09:11.737248+00 2025-07-21 13:09:11.737256+00 f t SUBTOTAL 0.00 1 4019 \N +153530 2025-07-21 13:09:11.73904+00 2025-07-21 13:09:11.739047+00 f t DESCUENTO 0.00 2 4019 \N +153531 2025-07-21 13:09:11.740498+00 2025-07-21 13:09:11.740505+00 f t TOTAL 0.00 3 4019 \N +153532 2025-07-21 13:09:11.741669+00 2025-07-21 13:09:11.741674+00 f t ADELANTO 0.00 4 4019 \N +153541 2025-07-21 13:09:30.9169+00 2025-07-21 13:09:30.916909+00 f t SUBTOTAL 72000.00 1 4018 \N +153542 2025-07-21 13:09:30.918763+00 2025-07-21 13:09:30.91877+00 f t DESCUENTO 0.00 2 4018 \N +153543 2025-07-21 13:09:30.920234+00 2025-07-21 13:09:30.92024+00 f t TOTAL 72000.00 3 4018 \N +153544 2025-07-21 13:09:30.921387+00 2025-07-21 13:09:30.921392+00 f t ADELANTO 19000.00 4 4018 \N +155429 2025-07-22 06:59:41.818731+00 2025-07-22 06:59:41.81874+00 f t SUBTOTAL 0.00 1 4063 \N +155430 2025-07-22 06:59:41.820816+00 2025-07-22 06:59:41.820823+00 f t DESCUENTO 0.00 2 4063 \N +155431 2025-07-22 06:59:41.82227+00 2025-07-22 06:59:41.822278+00 f t TOTAL 0.00 3 4063 \N +155432 2025-07-22 06:59:41.823543+00 2025-07-22 06:59:41.82355+00 f t ADELANTO 0.00 4 4063 \N +159093 2025-07-23 23:49:06.050125+00 2025-07-23 23:49:06.050138+00 f t SUBTOTAL 0.00 1 4169 \N +159094 2025-07-23 23:49:06.054664+00 2025-07-23 23:49:06.054675+00 f t DESCUENTO 0.00 2 4169 \N +159095 2025-07-23 23:49:06.056699+00 2025-07-23 23:49:06.05671+00 f t TOTAL 0.00 3 4169 \N +159096 2025-07-23 23:49:06.058593+00 2025-07-23 23:49:06.058603+00 f t ADELANTO 0.00 4 4169 \N +153569 2025-07-21 13:41:17.666386+00 2025-07-21 13:41:17.666395+00 f t SUBTOTAL 62000.00 1 4020 \N +153570 2025-07-21 13:41:17.668079+00 2025-07-21 13:41:17.668085+00 f t DESCUENTO 0.00 2 4020 \N +153571 2025-07-21 13:41:17.669071+00 2025-07-21 13:41:17.669077+00 f t TOTAL 62000.00 3 4020 \N +153572 2025-07-21 13:41:17.670015+00 2025-07-21 13:41:17.670022+00 f t ADELANTO 12000.00 4 4020 \N +159589 2025-07-24 10:53:39.958996+00 2025-07-24 10:53:39.959005+00 f t SUBTOTAL 62000.00 1 4179 \N +159590 2025-07-24 10:53:39.960738+00 2025-07-24 10:53:39.960747+00 f t DESCUENTO 0.00 2 4179 \N +159591 2025-07-24 10:53:39.962016+00 2025-07-24 10:53:39.962022+00 f t TOTAL 62000.00 3 4179 \N +159592 2025-07-24 10:53:39.963079+00 2025-07-24 10:53:39.963084+00 f t ADELANTO 12000.00 4 4179 \N +156089 2025-07-22 16:34:03.200049+00 2025-07-22 16:34:03.20006+00 f t SUBTOTAL 42000.00 1 4083 \N +156090 2025-07-22 16:34:03.202405+00 2025-07-22 16:34:03.202415+00 f t DESCUENTO 0.00 2 4083 \N +156091 2025-07-22 16:34:03.204225+00 2025-07-22 16:34:03.204235+00 f t TOTAL 42000.00 3 4083 \N +156092 2025-07-22 16:34:03.206031+00 2025-07-22 16:34:03.206042+00 f t ADELANTO 9500.00 4 4083 \N +159801 2025-07-24 12:37:13.69553+00 2025-07-24 12:37:13.695543+00 f t SUBTOTAL 0.00 1 4184 \N +159802 2025-07-24 12:37:13.697208+00 2025-07-24 12:37:13.697217+00 f t DESCUENTO 0.00 2 4184 \N +159803 2025-07-24 12:37:13.69869+00 2025-07-24 12:37:13.698698+00 f t TOTAL 0.00 3 4184 \N +159804 2025-07-24 12:37:13.700024+00 2025-07-24 12:37:13.700031+00 f t ADELANTO 0.00 4 4184 \N +240527 2025-08-25 16:39:52.912311+00 2025-08-25 16:39:52.912318+00 f t TOTAL 50000.00 3 6212 \N +157489 2025-07-23 08:06:03.236731+00 2025-07-23 08:06:03.236745+00 f t SUBTOTAL 0.00 1 4127 \N +157490 2025-07-23 08:06:03.238594+00 2025-07-23 08:06:03.238608+00 f t DESCUENTO 0.00 2 4127 \N +157491 2025-07-23 08:06:03.240412+00 2025-07-23 08:06:03.240424+00 f t TOTAL 0.00 3 4127 \N +157492 2025-07-23 08:06:03.242201+00 2025-07-23 08:06:03.242211+00 f t ADELANTO 0.00 4 4127 \N +157605 2025-07-23 08:11:58.518146+00 2025-07-23 08:11:58.518155+00 f t SUBTOTAL 50000.00 1 4128 \N +157606 2025-07-23 08:11:58.519798+00 2025-07-23 08:11:58.519805+00 f t DESCUENTO 0.00 2 4128 \N +157607 2025-07-23 08:11:58.521187+00 2025-07-23 08:11:58.521193+00 f t TOTAL 50000.00 3 4128 \N +157608 2025-07-23 08:11:58.522594+00 2025-07-23 08:11:58.5226+00 f t ADELANTO 10000.00 4 4128 \N +156197 2025-07-22 16:41:31.334718+00 2025-07-22 16:41:31.334726+00 f t SUBTOTAL 126000.00 1 4084 \N +156198 2025-07-22 16:41:31.336221+00 2025-07-22 16:41:31.336228+00 f t DESCUENTO 0.00 2 4084 \N +156199 2025-07-22 16:41:31.337423+00 2025-07-22 16:41:31.337429+00 f t TOTAL 126000.00 3 4084 \N +156200 2025-07-22 16:41:31.338488+00 2025-07-22 16:41:31.338493+00 f t ADELANTO 28500.00 4 4084 \N +156205 2025-07-22 16:42:50.95094+00 2025-07-22 16:42:50.95095+00 f t SUBTOTAL 0.00 1 4085 \N +156206 2025-07-22 16:42:50.952476+00 2025-07-22 16:42:50.952485+00 f t DESCUENTO 0.00 2 4085 \N +156207 2025-07-22 16:42:50.953637+00 2025-07-22 16:42:50.953643+00 f t TOTAL 0.00 3 4085 \N +156208 2025-07-22 16:42:50.954811+00 2025-07-22 16:42:50.954817+00 f t ADELANTO 0.00 4 4085 \N +161693 2025-07-25 13:36:19.269532+00 2025-07-25 13:36:19.269542+00 f t SUBTOTAL 27500.00 1 4244 \N +161694 2025-07-25 13:36:19.27122+00 2025-07-25 13:36:19.271227+00 f t DESCUENTO 0.00 2 4244 \N +161695 2025-07-25 13:36:19.27232+00 2025-07-25 13:36:19.272325+00 f t TOTAL 27500.00 3 4244 \N +161696 2025-07-25 13:36:19.273353+00 2025-07-25 13:36:19.273358+00 f t ADELANTO 27500.00 4 4244 \N +158165 2025-07-23 14:19:56.243712+00 2025-07-23 14:19:56.243722+00 f t SUBTOTAL 0.00 1 4142 \N +158166 2025-07-23 14:19:56.245111+00 2025-07-23 14:19:56.245123+00 f t DESCUENTO 0.00 2 4142 \N +158167 2025-07-23 14:19:56.246273+00 2025-07-23 14:19:56.24628+00 f t TOTAL 0.00 3 4142 \N +158168 2025-07-23 14:19:56.247402+00 2025-07-23 14:19:56.247407+00 f t ADELANTO 0.00 4 4142 \N +156241 2025-07-22 16:58:20.667176+00 2025-07-22 16:58:20.667185+00 f t SUBTOTAL 49500.00 1 4086 \N +156242 2025-07-22 16:58:20.668972+00 2025-07-22 16:58:20.668979+00 f t DESCUENTO 0.00 2 4086 \N +156243 2025-07-22 16:58:20.670288+00 2025-07-22 16:58:20.670294+00 f t TOTAL 49500.00 3 4086 \N +156244 2025-07-22 16:58:20.671498+00 2025-07-22 16:58:20.671504+00 f t ADELANTO 11500.00 4 4086 \N +156249 2025-07-22 17:32:35.797143+00 2025-07-22 17:32:35.797153+00 f t SUBTOTAL 0.00 1 4087 \N +156250 2025-07-22 17:32:35.798643+00 2025-07-22 17:32:35.798655+00 f t DESCUENTO 0.00 2 4087 \N +156251 2025-07-22 17:32:35.802483+00 2025-07-22 17:32:35.802492+00 f t TOTAL 0.00 3 4087 \N +156252 2025-07-22 17:32:35.804116+00 2025-07-22 17:32:35.804123+00 f t ADELANTO 0.00 4 4087 \N +158361 2025-07-23 16:22:57.266941+00 2025-07-23 16:22:57.266953+00 f t SUBTOTAL 50000.00 1 4147 \N +158362 2025-07-23 16:22:57.272949+00 2025-07-23 16:22:57.272961+00 f t DESCUENTO 0.00 2 4147 \N +158363 2025-07-23 16:22:57.275075+00 2025-07-23 16:22:57.275086+00 f t TOTAL 50000.00 3 4147 \N +158364 2025-07-23 16:22:57.276929+00 2025-07-23 16:22:57.276939+00 f t ADELANTO 10000.00 4 4147 \N +156285 2025-07-22 17:34:13.93127+00 2025-07-22 17:34:13.931281+00 f t SUBTOTAL 0.00 1 4088 \N +156286 2025-07-22 17:34:13.933548+00 2025-07-22 17:34:13.933557+00 f t DESCUENTO 0.00 2 4088 \N +156287 2025-07-22 17:34:13.935086+00 2025-07-22 17:34:13.935093+00 f t TOTAL 0.00 3 4088 \N +156288 2025-07-22 17:34:13.936503+00 2025-07-22 17:34:13.936509+00 f t ADELANTO 0.00 4 4088 \N +156297 2025-07-22 17:34:38.73264+00 2025-07-22 17:34:38.732651+00 f t SUBTOTAL 0.00 1 4089 \N +156298 2025-07-22 17:34:38.734649+00 2025-07-22 17:34:38.734656+00 f t DESCUENTO 0.00 2 4089 \N +156299 2025-07-22 17:34:38.736085+00 2025-07-22 17:34:38.73609+00 f t TOTAL 0.00 3 4089 \N +156300 2025-07-22 17:34:38.73731+00 2025-07-22 17:34:38.737316+00 f t ADELANTO 0.00 4 4089 \N +156305 2025-07-22 17:54:30.415417+00 2025-07-22 17:54:30.415426+00 f t SUBTOTAL 0.00 1 4090 \N +156306 2025-07-22 17:54:30.416926+00 2025-07-22 17:54:30.416932+00 f t DESCUENTO 0.00 2 4090 \N +156307 2025-07-22 17:54:30.418252+00 2025-07-22 17:54:30.418259+00 f t TOTAL 0.00 3 4090 \N +156308 2025-07-22 17:54:30.419371+00 2025-07-22 17:54:30.419376+00 f t ADELANTO 0.00 4 4090 \N +158745 2025-07-23 21:59:44.236995+00 2025-07-23 21:59:44.237004+00 f t SUBTOTAL 0.00 1 4161 \N +158746 2025-07-23 21:59:44.239374+00 2025-07-23 21:59:44.239382+00 f t DESCUENTO 0.00 2 4161 \N +158747 2025-07-23 21:59:44.240679+00 2025-07-23 21:59:44.240687+00 f t TOTAL 0.00 3 4161 \N +158748 2025-07-23 21:59:44.241776+00 2025-07-23 21:59:44.241781+00 f t ADELANTO 0.00 4 4161 \N +159301 2025-07-24 02:54:53.212275+00 2025-07-24 02:54:53.212284+00 f t SUBTOTAL 0.00 1 4173 \N +159302 2025-07-24 02:54:53.214654+00 2025-07-24 02:54:53.214662+00 f t DESCUENTO 0.00 2 4173 \N +159303 2025-07-24 02:54:53.216067+00 2025-07-24 02:54:53.216074+00 f t TOTAL 0.00 3 4173 \N +159304 2025-07-24 02:54:53.217367+00 2025-07-24 02:54:53.217373+00 f t ADELANTO 0.00 4 4173 \N +156377 2025-07-22 18:10:32.943405+00 2025-07-22 18:10:32.943414+00 f t SUBTOTAL 111000.00 1 4091 \N +156378 2025-07-22 18:10:32.945224+00 2025-07-22 18:10:32.945233+00 f t DESCUENTO 0.00 2 4091 \N +156379 2025-07-22 18:10:32.946639+00 2025-07-22 18:10:32.946646+00 f t TOTAL 111000.00 3 4091 \N +156380 2025-07-22 18:10:32.94804+00 2025-07-22 18:10:32.948048+00 f t ADELANTO 23500.00 4 4091 \N +156397 2025-07-22 18:20:28.515489+00 2025-07-22 18:20:28.515497+00 f t SUBTOTAL 0.00 1 4092 \N +156398 2025-07-22 18:20:28.517325+00 2025-07-22 18:20:28.517332+00 f t DESCUENTO 0.00 2 4092 \N +156399 2025-07-22 18:20:28.518614+00 2025-07-22 18:20:28.51862+00 f t TOTAL 0.00 3 4092 \N +156400 2025-07-22 18:20:28.519708+00 2025-07-22 18:20:28.519713+00 f t ADELANTO 0.00 4 4092 \N +156405 2025-07-22 18:30:16.469877+00 2025-07-22 18:30:16.469886+00 f t SUBTOTAL 0.00 1 4093 \N +156406 2025-07-22 18:30:16.474172+00 2025-07-22 18:30:16.47418+00 f t DESCUENTO 0.00 2 4093 \N +156407 2025-07-22 18:30:16.475706+00 2025-07-22 18:30:16.475714+00 f t TOTAL 0.00 3 4093 \N +156408 2025-07-22 18:30:16.477189+00 2025-07-22 18:30:16.477256+00 f t ADELANTO 0.00 4 4093 \N +156413 2025-07-22 18:31:30.463433+00 2025-07-22 18:31:30.46345+00 f t SUBTOTAL 0.00 1 4094 \N +156414 2025-07-22 18:31:30.464786+00 2025-07-22 18:31:30.464792+00 f t DESCUENTO 0.00 2 4094 \N +156415 2025-07-22 18:31:30.466002+00 2025-07-22 18:31:30.466008+00 f t TOTAL 0.00 3 4094 \N +156416 2025-07-22 18:31:30.467075+00 2025-07-22 18:31:30.467081+00 f t ADELANTO 0.00 4 4094 \N +156421 2025-07-22 18:40:36.343842+00 2025-07-22 18:40:36.34385+00 f t SUBTOTAL 0.00 1 4095 \N +156422 2025-07-22 18:40:36.346024+00 2025-07-22 18:40:36.346032+00 f t DESCUENTO 0.00 2 4095 \N +156423 2025-07-22 18:40:36.347377+00 2025-07-22 18:40:36.347392+00 f t TOTAL 0.00 3 4095 \N +156424 2025-07-22 18:40:36.348608+00 2025-07-22 18:40:36.348614+00 f t ADELANTO 0.00 4 4095 \N +156429 2025-07-22 19:09:57.122742+00 2025-07-22 19:09:57.122754+00 f t SUBTOTAL 0.00 1 4096 \N +156430 2025-07-22 19:09:57.124893+00 2025-07-22 19:09:57.124902+00 f t DESCUENTO 0.00 2 4096 \N +156431 2025-07-22 19:09:57.126562+00 2025-07-22 19:09:57.126572+00 f t TOTAL 0.00 3 4096 \N +156432 2025-07-22 19:09:57.128236+00 2025-07-22 19:09:57.128246+00 f t ADELANTO 0.00 4 4096 \N +156477 2025-07-22 19:19:19.240893+00 2025-07-22 19:19:19.240905+00 f t SUBTOTAL 0.00 1 4097 \N +156478 2025-07-22 19:19:19.242741+00 2025-07-22 19:19:19.242747+00 f t DESCUENTO 0.00 2 4097 \N +156479 2025-07-22 19:19:19.243936+00 2025-07-22 19:19:19.243941+00 f t TOTAL 0.00 3 4097 \N +156480 2025-07-22 19:19:19.244867+00 2025-07-22 19:19:19.244873+00 f t ADELANTO 0.00 4 4097 \N +161605 2025-07-25 12:40:56.874236+00 2025-07-25 12:40:56.874247+00 f t SUBTOTAL 42000.00 1 4242 \N +161606 2025-07-25 12:40:56.876036+00 2025-07-25 12:40:56.876044+00 f t DESCUENTO 0.00 2 4242 \N +161607 2025-07-25 12:40:56.877813+00 2025-07-25 12:40:56.877824+00 f t TOTAL 42000.00 3 4242 \N +161608 2025-07-25 12:40:56.879568+00 2025-07-25 12:40:56.879575+00 f t ADELANTO 9500.00 4 4242 \N +156505 2025-07-22 19:20:38.885596+00 2025-07-22 19:20:38.885605+00 f t SUBTOTAL 70000.00 1 4098 \N +156506 2025-07-22 19:20:38.887166+00 2025-07-22 19:20:38.887172+00 f t DESCUENTO 0.00 2 4098 \N +156507 2025-07-22 19:20:38.888454+00 2025-07-22 19:20:38.888462+00 f t TOTAL 70000.00 3 4098 \N +156508 2025-07-22 19:20:38.889618+00 2025-07-22 19:20:38.889623+00 f t ADELANTO 15000.00 4 4098 \N +156513 2025-07-22 19:35:46.463403+00 2025-07-22 19:35:46.463411+00 f t SUBTOTAL 0.00 1 4099 \N +156514 2025-07-22 19:35:46.464751+00 2025-07-22 19:35:46.464757+00 f t DESCUENTO 0.00 2 4099 \N +156515 2025-07-22 19:35:46.465758+00 2025-07-22 19:35:46.465764+00 f t TOTAL 0.00 3 4099 \N +156516 2025-07-22 19:35:46.466637+00 2025-07-22 19:35:46.466642+00 f t ADELANTO 0.00 4 4099 \N +158221 2025-07-23 14:50:36.25184+00 2025-07-23 14:50:36.25185+00 f t SUBTOTAL 42000.00 1 4143 \N +158222 2025-07-23 14:50:36.253428+00 2025-07-23 14:50:36.253437+00 f t DESCUENTO 0.00 2 4143 \N +158223 2025-07-23 14:50:36.254681+00 2025-07-23 14:50:36.254688+00 f t TOTAL 42000.00 3 4143 \N +158224 2025-07-23 14:50:36.25593+00 2025-07-23 14:50:36.255938+00 f t ADELANTO 9500.00 4 4143 \N +158265 2025-07-23 14:53:16.817056+00 2025-07-23 14:53:16.817069+00 f t SUBTOTAL 0.00 1 4144 \N +158266 2025-07-23 14:53:16.819584+00 2025-07-23 14:53:16.819595+00 f t DESCUENTO 0.00 2 4144 \N +158267 2025-07-23 14:53:16.821226+00 2025-07-23 14:53:16.821237+00 f t TOTAL 0.00 3 4144 \N +158268 2025-07-23 14:53:16.822605+00 2025-07-23 14:53:16.822614+00 f t ADELANTO 0.00 4 4144 \N +156545 2025-07-22 20:04:50.849269+00 2025-07-22 20:04:50.849277+00 f t SUBTOTAL 0.00 1 4100 \N +156546 2025-07-22 20:04:50.85119+00 2025-07-22 20:04:50.8512+00 f t DESCUENTO 0.00 2 4100 \N +156547 2025-07-22 20:04:50.852531+00 2025-07-22 20:04:50.852537+00 f t TOTAL 0.00 3 4100 \N +156548 2025-07-22 20:04:50.85365+00 2025-07-22 20:04:50.853657+00 f t ADELANTO 0.00 4 4100 \N +156553 2025-07-22 21:00:44.030901+00 2025-07-22 21:00:44.03091+00 f t SUBTOTAL 0.00 1 4101 \N +156554 2025-07-22 21:00:44.032295+00 2025-07-22 21:00:44.032302+00 f t DESCUENTO 0.00 2 4101 \N +156555 2025-07-22 21:00:44.033968+00 2025-07-22 21:00:44.033974+00 f t TOTAL 0.00 3 4101 \N +156556 2025-07-22 21:00:44.035105+00 2025-07-22 21:00:44.035111+00 f t ADELANTO 0.00 4 4101 \N +158701 2025-07-23 21:45:10.098904+00 2025-07-23 21:45:10.098915+00 f t SUBTOTAL 0.00 1 4159 \N +156593 2025-07-22 21:26:16.513955+00 2025-07-22 21:26:16.513968+00 f t SUBTOTAL 0.00 1 4102 \N +156594 2025-07-22 21:26:16.516228+00 2025-07-22 21:26:16.516239+00 f t DESCUENTO 0.00 2 4102 \N +156595 2025-07-22 21:26:16.517989+00 2025-07-22 21:26:16.517999+00 f t TOTAL 0.00 3 4102 \N +156596 2025-07-22 21:26:16.519694+00 2025-07-22 21:26:16.519702+00 f t ADELANTO 0.00 4 4102 \N +158702 2025-07-23 21:45:10.101298+00 2025-07-23 21:45:10.101309+00 f t DESCUENTO 0.00 2 4159 \N +158703 2025-07-23 21:45:10.102994+00 2025-07-23 21:45:10.103005+00 f t TOTAL 0.00 3 4159 \N +158704 2025-07-23 21:45:10.104519+00 2025-07-23 21:45:10.104527+00 f t ADELANTO 0.00 4 4159 \N +156601 2025-07-22 21:42:12.556575+00 2025-07-22 21:42:12.556584+00 f t SUBTOTAL 0.00 1 4103 \N +156602 2025-07-22 21:42:12.558298+00 2025-07-22 21:42:12.558307+00 f t DESCUENTO 0.00 2 4103 \N +156603 2025-07-22 21:42:12.559683+00 2025-07-22 21:42:12.559689+00 f t TOTAL 0.00 3 4103 \N +156604 2025-07-22 21:42:12.560613+00 2025-07-22 21:42:12.560663+00 f t ADELANTO 0.00 4 4103 \N +158753 2025-07-23 22:01:40.465367+00 2025-07-23 22:01:40.465377+00 f t SUBTOTAL 0.00 1 4162 \N +158754 2025-07-23 22:01:40.466767+00 2025-07-23 22:01:40.466774+00 f t DESCUENTO 0.00 2 4162 \N +158755 2025-07-23 22:01:40.468097+00 2025-07-23 22:01:40.468104+00 f t TOTAL 0.00 3 4162 \N +158756 2025-07-23 22:01:40.469241+00 2025-07-23 22:01:40.469248+00 f t ADELANTO 0.00 4 4162 \N +156637 2025-07-22 21:50:17.103338+00 2025-07-22 21:50:17.103345+00 f t SUBTOTAL 49500.00 1 4104 \N +156638 2025-07-22 21:50:17.105054+00 2025-07-22 21:50:17.105061+00 f t DESCUENTO 0.00 2 4104 \N +156639 2025-07-22 21:50:17.106218+00 2025-07-22 21:50:17.106224+00 f t TOTAL 49500.00 3 4104 \N +156640 2025-07-22 21:50:17.107232+00 2025-07-22 21:50:17.107238+00 f t ADELANTO 11500.00 4 4104 \N +159265 2025-07-24 01:51:08.583369+00 2025-07-24 01:51:08.58338+00 f t SUBTOTAL 112000.00 1 4172 \N +159266 2025-07-24 01:51:08.585537+00 2025-07-24 01:51:08.585548+00 f t DESCUENTO 0.00 2 4172 \N +159267 2025-07-24 01:51:08.587387+00 2025-07-24 01:51:08.587399+00 f t TOTAL 112000.00 3 4172 \N +159268 2025-07-24 01:51:08.589066+00 2025-07-24 01:51:08.589075+00 f t ADELANTO 24500.00 4 4172 \N +159309 2025-07-24 03:05:33.248085+00 2025-07-24 03:05:33.248095+00 f t SUBTOTAL 0.00 1 4174 \N +159310 2025-07-24 03:05:33.249947+00 2025-07-24 03:05:33.249958+00 f t DESCUENTO 0.00 2 4174 \N +159311 2025-07-24 03:05:33.251822+00 2025-07-24 03:05:33.25183+00 f t TOTAL 0.00 3 4174 \N +159312 2025-07-24 03:05:33.253314+00 2025-07-24 03:05:33.25332+00 f t ADELANTO 0.00 4 4174 \N +159561 2025-07-24 10:30:41.077315+00 2025-07-24 10:30:41.077327+00 f t SUBTOTAL 102700.00 1 4178 \N +159562 2025-07-24 10:30:41.079678+00 2025-07-24 10:30:41.07969+00 f t DESCUENTO 0.00 2 4178 \N +159563 2025-07-24 10:30:41.08162+00 2025-07-24 10:30:41.081632+00 f t TOTAL 102700.00 3 4178 \N +159564 2025-07-24 10:30:41.083907+00 2025-07-24 10:30:41.083918+00 f t ADELANTO 64700.00 4 4178 \N +156725 2025-07-22 21:55:41.045576+00 2025-07-22 21:55:41.045585+00 f t SUBTOTAL 50000.00 1 4106 \N +156726 2025-07-22 21:55:41.047424+00 2025-07-22 21:55:41.047434+00 f t DESCUENTO 0.00 2 4106 \N +156727 2025-07-22 21:55:41.049089+00 2025-07-22 21:55:41.049098+00 f t TOTAL 50000.00 3 4106 \N +156728 2025-07-22 21:55:41.050634+00 2025-07-22 21:55:41.050642+00 f t ADELANTO 10000.00 4 4106 \N +156733 2025-07-22 21:55:45.804057+00 2025-07-22 21:55:45.804069+00 f t SUBTOTAL 94700.00 1 4105 \N +156734 2025-07-22 21:55:45.80621+00 2025-07-22 21:55:45.806218+00 f t DESCUENTO 0.00 2 4105 \N +156735 2025-07-22 21:55:45.807703+00 2025-07-22 21:55:45.80771+00 f t TOTAL 94700.00 3 4105 \N +156736 2025-07-22 21:55:45.80899+00 2025-07-22 21:55:45.808996+00 f t ADELANTO 56700.00 4 4105 \N +159809 2025-07-24 12:39:10.983816+00 2025-07-24 12:39:10.983829+00 f t SUBTOTAL 0.00 1 4185 \N +159810 2025-07-24 12:39:10.985657+00 2025-07-24 12:39:10.985668+00 f t DESCUENTO 0.00 2 4185 \N +156741 2025-07-22 23:10:05.686808+00 2025-07-22 23:10:05.686824+00 f t SUBTOTAL 0.00 1 4107 \N +156742 2025-07-22 23:10:05.706409+00 2025-07-22 23:10:05.706423+00 f t DESCUENTO 0.00 2 4107 \N +156743 2025-07-22 23:10:05.709056+00 2025-07-22 23:10:05.709068+00 f t TOTAL 0.00 3 4107 \N +156744 2025-07-22 23:10:05.711553+00 2025-07-22 23:10:05.711566+00 f t ADELANTO 0.00 4 4107 \N +159811 2025-07-24 12:39:10.988035+00 2025-07-24 12:39:10.988046+00 f t TOTAL 0.00 3 4185 \N +159812 2025-07-24 12:39:10.989633+00 2025-07-24 12:39:10.989643+00 f t ADELANTO 0.00 4 4185 \N +161225 2025-07-25 08:47:59.154435+00 2025-07-25 08:47:59.154445+00 f t SUBTOTAL 64500.00 1 4235 \N +161226 2025-07-25 08:47:59.156506+00 2025-07-25 08:47:59.156516+00 f t DESCUENTO 0.00 2 4235 \N +161227 2025-07-25 08:47:59.158064+00 2025-07-25 08:47:59.158073+00 f t TOTAL 64500.00 3 4235 \N +161228 2025-07-25 08:47:59.159485+00 2025-07-25 08:47:59.159493+00 f t ADELANTO 17000.00 4 4235 \N +169373 2025-07-28 17:51:18.828505+00 2025-07-28 17:51:18.828515+00 f t SUBTOTAL 175500.00 1 4436 \N +169374 2025-07-28 17:51:18.830153+00 2025-07-28 17:51:18.830163+00 f t DESCUENTO 0.00 2 4436 \N +169375 2025-07-28 17:51:18.831677+00 2025-07-28 17:51:18.831685+00 f t TOTAL 175500.00 3 4436 \N +169376 2025-07-28 17:51:18.833036+00 2025-07-28 17:51:18.833041+00 f t ADELANTO 39000.00 4 4436 \N +157901 2025-07-23 11:56:49.355213+00 2025-07-23 11:56:49.355222+00 f t SUBTOTAL 42000.00 1 4136 \N +157902 2025-07-23 11:56:49.356834+00 2025-07-23 11:56:49.356841+00 f t DESCUENTO 0.00 2 4136 \N +157903 2025-07-23 11:56:49.357961+00 2025-07-23 11:56:49.357969+00 f t TOTAL 42000.00 3 4136 \N +157904 2025-07-23 11:56:49.359011+00 2025-07-23 11:56:49.359017+00 f t ADELANTO 9500.00 4 4136 \N +158117 2025-07-23 13:42:57.646032+00 2025-07-23 13:42:57.64604+00 f t SUBTOTAL 42000.00 1 4139 \N +158118 2025-07-23 13:42:57.647628+00 2025-07-23 13:42:57.647634+00 f t DESCUENTO 0.00 2 4139 \N +158119 2025-07-23 13:42:57.648862+00 2025-07-23 13:42:57.648868+00 f t TOTAL 42000.00 3 4139 \N +158120 2025-07-23 13:42:57.64996+00 2025-07-23 13:42:57.649965+00 f t ADELANTO 9500.00 4 4139 \N +158317 2025-07-23 14:59:07.772749+00 2025-07-23 14:59:07.772759+00 f t SUBTOTAL 0.00 1 4145 \N +158318 2025-07-23 14:59:07.774852+00 2025-07-23 14:59:07.774861+00 f t DESCUENTO 0.00 2 4145 \N +158319 2025-07-23 14:59:07.776214+00 2025-07-23 14:59:07.776222+00 f t TOTAL 0.00 3 4145 \N +158320 2025-07-23 14:59:07.777612+00 2025-07-23 14:59:07.777622+00 f t ADELANTO 0.00 4 4145 \N +156821 2025-07-22 23:47:47.817715+00 2025-07-22 23:47:47.817723+00 f t SUBTOTAL 42000.00 1 4109 \N +156822 2025-07-22 23:47:47.819274+00 2025-07-22 23:47:47.81928+00 f t DESCUENTO 0.00 2 4109 \N +156823 2025-07-22 23:47:47.820977+00 2025-07-22 23:47:47.820983+00 f t TOTAL 42000.00 3 4109 \N +156824 2025-07-22 23:47:47.822026+00 2025-07-22 23:47:47.822032+00 f t ADELANTO 9500.00 4 4109 \N +156829 2025-07-22 23:52:05.365784+00 2025-07-22 23:52:05.365797+00 f t SUBTOTAL 0.00 1 4108 \N +156830 2025-07-22 23:52:05.367755+00 2025-07-22 23:52:05.367766+00 f t DESCUENTO 0.00 2 4108 \N +156831 2025-07-22 23:52:05.36917+00 2025-07-22 23:52:05.369176+00 f t TOTAL 0.00 3 4108 \N +156832 2025-07-22 23:52:05.370417+00 2025-07-22 23:52:05.370423+00 f t ADELANTO 0.00 4 4108 \N +156837 2025-07-23 00:01:48.541558+00 2025-07-23 00:01:48.541571+00 f t SUBTOTAL 0.00 1 4110 \N +156838 2025-07-23 00:01:48.543196+00 2025-07-23 00:01:48.543207+00 f t DESCUENTO 0.00 2 4110 \N +156839 2025-07-23 00:01:48.544595+00 2025-07-23 00:01:48.544602+00 f t TOTAL 0.00 3 4110 \N +156840 2025-07-23 00:01:48.545701+00 2025-07-23 00:01:48.54571+00 f t ADELANTO 0.00 4 4110 \N +158709 2025-07-23 21:57:38.773568+00 2025-07-23 21:57:38.773578+00 f t SUBTOTAL 0.00 1 4160 \N +158710 2025-07-23 21:57:38.775166+00 2025-07-23 21:57:38.775175+00 f t DESCUENTO 0.00 2 4160 \N +158711 2025-07-23 21:57:38.776401+00 2025-07-23 21:57:38.776408+00 f t TOTAL 0.00 3 4160 \N +158712 2025-07-23 21:57:38.777434+00 2025-07-23 21:57:38.77744+00 f t ADELANTO 0.00 4 4160 \N +158761 2025-07-23 22:02:23.181213+00 2025-07-23 22:02:23.181222+00 f t SUBTOTAL 0.00 1 4163 \N +158762 2025-07-23 22:02:23.182764+00 2025-07-23 22:02:23.182772+00 f t DESCUENTO 0.00 2 4163 \N +158763 2025-07-23 22:02:23.184195+00 2025-07-23 22:02:23.184202+00 f t TOTAL 0.00 3 4163 \N +158764 2025-07-23 22:02:23.185466+00 2025-07-23 22:02:23.185475+00 f t ADELANTO 0.00 4 4163 \N +158809 2025-07-23 22:10:09.051326+00 2025-07-23 22:10:09.051341+00 f t SUBTOTAL 0.00 1 4165 \N +158810 2025-07-23 22:10:09.055334+00 2025-07-23 22:10:09.055348+00 f t DESCUENTO 0.00 2 4165 \N +158811 2025-07-23 22:10:09.057683+00 2025-07-23 22:10:09.05771+00 f t TOTAL 0.00 3 4165 \N +158812 2025-07-23 22:10:09.060033+00 2025-07-23 22:10:09.060044+00 f t ADELANTO 0.00 4 4165 \N +156893 2025-07-23 00:05:42.935607+00 2025-07-23 00:05:42.935619+00 f t SUBTOTAL 55000.00 1 4111 \N +156894 2025-07-23 00:05:42.937629+00 2025-07-23 00:05:42.937639+00 f t DESCUENTO 0.00 2 4111 \N +156895 2025-07-23 00:05:42.939073+00 2025-07-23 00:05:42.939082+00 f t TOTAL 55000.00 3 4111 \N +156896 2025-07-23 00:05:42.940463+00 2025-07-23 00:05:42.940471+00 f t ADELANTO 12500.00 4 4111 \N +156921 2025-07-23 00:09:00.159322+00 2025-07-23 00:09:00.159334+00 f t SUBTOTAL 0.00 1 4112 \N +156922 2025-07-23 00:09:00.161404+00 2025-07-23 00:09:00.161411+00 f t DESCUENTO 0.00 2 4112 \N +156923 2025-07-23 00:09:00.162641+00 2025-07-23 00:09:00.162649+00 f t TOTAL 0.00 3 4112 \N +156924 2025-07-23 00:09:00.163812+00 2025-07-23 00:09:00.163818+00 f t ADELANTO 0.00 4 4112 \N +156929 2025-07-23 00:10:31.821677+00 2025-07-23 00:10:31.82169+00 f t SUBTOTAL 0.00 1 4113 \N +156930 2025-07-23 00:10:31.822945+00 2025-07-23 00:10:31.822951+00 f t DESCUENTO 0.00 2 4113 \N +156931 2025-07-23 00:10:31.824123+00 2025-07-23 00:10:31.824129+00 f t TOTAL 0.00 3 4113 \N +156932 2025-07-23 00:10:31.825074+00 2025-07-23 00:10:31.825079+00 f t ADELANTO 0.00 4 4113 \N +156961 2025-07-23 01:03:30.801563+00 2025-07-23 01:03:30.801572+00 f t SUBTOTAL 0.00 1 4114 \N +156962 2025-07-23 01:03:30.80351+00 2025-07-23 01:03:30.803517+00 f t DESCUENTO 0.00 2 4114 \N +156963 2025-07-23 01:03:30.804783+00 2025-07-23 01:03:30.804791+00 f t TOTAL 0.00 3 4114 \N +156964 2025-07-23 01:03:30.806519+00 2025-07-23 01:03:30.806527+00 f t ADELANTO 0.00 4 4114 \N +156969 2025-07-23 01:43:19.00013+00 2025-07-23 01:43:19.000143+00 f t SUBTOTAL 0.00 1 4115 \N +156970 2025-07-23 01:43:19.001721+00 2025-07-23 01:43:19.001729+00 f t DESCUENTO 0.00 2 4115 \N +156971 2025-07-23 01:43:19.002875+00 2025-07-23 01:43:19.002881+00 f t TOTAL 0.00 3 4115 \N +156972 2025-07-23 01:43:19.003902+00 2025-07-23 01:43:19.003907+00 f t ADELANTO 0.00 4 4115 \N +159629 2025-07-24 11:04:21.712344+00 2025-07-24 11:04:21.712353+00 f t SUBTOTAL 112000.00 1 4180 \N +159630 2025-07-24 11:04:21.713952+00 2025-07-24 11:04:21.713959+00 f t DESCUENTO 0.00 2 4180 \N +159631 2025-07-24 11:04:21.715009+00 2025-07-24 11:04:21.715015+00 f t TOTAL 112000.00 3 4180 \N +159632 2025-07-24 11:04:21.716176+00 2025-07-24 11:04:21.716183+00 f t ADELANTO 22000.00 4 4180 \N +156997 2025-07-23 02:13:36.40664+00 2025-07-23 02:13:36.406652+00 f t SUBTOTAL 42000.00 1 4116 \N +156998 2025-07-23 02:13:36.40876+00 2025-07-23 02:13:36.40877+00 f t DESCUENTO 0.00 2 4116 \N +156999 2025-07-23 02:13:36.410462+00 2025-07-23 02:13:36.41047+00 f t TOTAL 42000.00 3 4116 \N +157000 2025-07-23 02:13:36.411949+00 2025-07-23 02:13:36.411957+00 f t ADELANTO 9500.00 4 4116 \N +159817 2025-07-24 12:46:25.134643+00 2025-07-24 12:46:25.134652+00 f t SUBTOTAL 0.00 1 4186 \N +159818 2025-07-24 12:46:25.136511+00 2025-07-24 12:46:25.136519+00 f t DESCUENTO 0.00 2 4186 \N +159819 2025-07-24 12:46:25.137767+00 2025-07-24 12:46:25.137774+00 f t TOTAL 0.00 3 4186 \N +159820 2025-07-24 12:46:25.139154+00 2025-07-24 12:46:25.13916+00 f t ADELANTO 0.00 4 4186 \N +159873 2025-07-24 12:56:07.047087+00 2025-07-24 12:56:07.047175+00 f t SUBTOTAL 0.00 1 4187 \N +159874 2025-07-24 12:56:07.048874+00 2025-07-24 12:56:07.04888+00 f t DESCUENTO 0.00 2 4187 \N +159875 2025-07-24 12:56:07.049902+00 2025-07-24 12:56:07.049907+00 f t TOTAL 0.00 3 4187 \N +159876 2025-07-24 12:56:07.050876+00 2025-07-24 12:56:07.05088+00 f t ADELANTO 0.00 4 4187 \N +173353 2025-07-30 09:13:24.065368+00 2025-07-30 09:13:24.065381+00 f t SUBTOTAL 64500.00 1 4540 \N +173354 2025-07-30 09:13:24.067679+00 2025-07-30 09:13:24.06769+00 f t DESCUENTO 0.00 2 4540 \N +173355 2025-07-30 09:13:24.069602+00 2025-07-30 09:13:24.069613+00 f t TOTAL 64500.00 3 4540 \N +173356 2025-07-30 09:13:24.071517+00 2025-07-30 09:13:24.071527+00 f t ADELANTO 17000.00 4 4540 \N +157789 2025-07-23 11:37:01.338343+00 2025-07-23 11:37:01.338352+00 f t SUBTOTAL 62000.00 1 4133 \N +157790 2025-07-23 11:37:01.340337+00 2025-07-23 11:37:01.340345+00 f t DESCUENTO 0.00 2 4133 \N +157791 2025-07-23 11:37:01.341635+00 2025-07-23 11:37:01.341642+00 f t TOTAL 62000.00 3 4133 \N +157792 2025-07-23 11:37:01.342816+00 2025-07-23 11:37:01.342822+00 f t ADELANTO 12000.00 4 4133 \N +157845 2025-07-23 11:45:17.990991+00 2025-07-23 11:45:17.991+00 f t SUBTOTAL 0.00 1 4134 \N +157846 2025-07-23 11:45:17.993069+00 2025-07-23 11:45:17.993077+00 f t DESCUENTO 0.00 2 4134 \N +157847 2025-07-23 11:45:17.994127+00 2025-07-23 11:45:17.994132+00 f t TOTAL 0.00 3 4134 \N +157848 2025-07-23 11:45:17.995154+00 2025-07-23 11:45:17.995161+00 f t ADELANTO 0.00 4 4134 \N +158125 2025-07-23 13:47:06.599891+00 2025-07-23 13:47:06.599904+00 f t SUBTOTAL 0.00 1 4140 \N +158126 2025-07-23 13:47:06.601726+00 2025-07-23 13:47:06.601734+00 f t DESCUENTO 0.00 2 4140 \N +158127 2025-07-23 13:47:06.603234+00 2025-07-23 13:47:06.603242+00 f t TOTAL 0.00 3 4140 \N +158128 2025-07-23 13:47:06.604703+00 2025-07-23 13:47:06.60471+00 f t ADELANTO 0.00 4 4140 \N +161701 2025-07-25 14:10:29.759293+00 2025-07-25 14:10:29.759306+00 f t SUBTOTAL 0.00 1 4245 \N +161702 2025-07-25 14:10:29.760719+00 2025-07-25 14:10:29.760726+00 f t DESCUENTO 0.00 2 4245 \N +161703 2025-07-25 14:10:29.76182+00 2025-07-25 14:10:29.761826+00 f t TOTAL 0.00 3 4245 \N +161704 2025-07-25 14:10:29.762765+00 2025-07-25 14:10:29.76277+00 f t ADELANTO 0.00 4 4245 \N +157109 2025-07-23 02:34:33.103711+00 2025-07-23 02:34:33.10372+00 f t SUBTOTAL 42000.00 1 4117 \N +157110 2025-07-23 02:34:33.105386+00 2025-07-23 02:34:33.105393+00 f t DESCUENTO 0.00 2 4117 \N +157111 2025-07-23 02:34:33.106519+00 2025-07-23 02:34:33.106525+00 f t TOTAL 42000.00 3 4117 \N +157112 2025-07-23 02:34:33.107539+00 2025-07-23 02:34:33.107544+00 f t ADELANTO 9500.00 4 4117 \N +158325 2025-07-23 16:21:25.80695+00 2025-07-23 16:21:25.806958+00 f t SUBTOTAL 0.00 1 4146 \N +158326 2025-07-23 16:21:25.808625+00 2025-07-23 16:21:25.808635+00 f t DESCUENTO 0.00 2 4146 \N +158327 2025-07-23 16:21:25.80998+00 2025-07-23 16:21:25.809986+00 f t TOTAL 0.00 3 4146 \N +158328 2025-07-23 16:21:25.810999+00 2025-07-23 16:21:25.811005+00 f t ADELANTO 0.00 4 4146 \N +158377 2025-07-23 16:26:01.507809+00 2025-07-23 16:26:01.507818+00 f t SUBTOTAL 0.00 1 4148 \N +158378 2025-07-23 16:26:01.510329+00 2025-07-23 16:26:01.510341+00 f t DESCUENTO 0.00 2 4148 \N +158379 2025-07-23 16:26:01.514591+00 2025-07-23 16:26:01.514604+00 f t TOTAL 0.00 3 4148 \N +158380 2025-07-23 16:26:01.519836+00 2025-07-23 16:26:01.519849+00 f t ADELANTO 0.00 4 4148 \N +158477 2025-07-23 18:47:58.890794+00 2025-07-23 18:47:58.890805+00 f t SUBTOTAL 50000.00 1 4151 \N +158478 2025-07-23 18:47:58.892643+00 2025-07-23 18:47:58.892653+00 f t DESCUENTO 0.00 2 4151 \N +158479 2025-07-23 18:47:58.894003+00 2025-07-23 18:47:58.89401+00 f t TOTAL 50000.00 3 4151 \N +158480 2025-07-23 18:47:58.895082+00 2025-07-23 18:47:58.895088+00 f t ADELANTO 10000.00 4 4151 \N +157145 2025-07-23 02:40:34.900938+00 2025-07-23 02:40:34.900947+00 f t SUBTOTAL 49500.00 1 4118 \N +157146 2025-07-23 02:40:34.90272+00 2025-07-23 02:40:34.902729+00 f t DESCUENTO 0.00 2 4118 \N +157147 2025-07-23 02:40:34.904142+00 2025-07-23 02:40:34.904149+00 f t TOTAL 49500.00 3 4118 \N +157148 2025-07-23 02:40:34.905448+00 2025-07-23 02:40:34.905454+00 f t ADELANTO 11500.00 4 4118 \N +158769 2025-07-23 22:02:52.167413+00 2025-07-23 22:02:52.167421+00 f t SUBTOTAL 0.00 1 4164 \N +158770 2025-07-23 22:02:52.168672+00 2025-07-23 22:02:52.168679+00 f t DESCUENTO 0.00 2 4164 \N +158771 2025-07-23 22:02:52.169934+00 2025-07-23 22:02:52.169942+00 f t TOTAL 0.00 3 4164 \N +158772 2025-07-23 22:02:52.171064+00 2025-07-23 22:02:52.171071+00 f t ADELANTO 0.00 4 4164 \N +157181 2025-07-23 02:57:28.085492+00 2025-07-23 02:57:28.085503+00 f t SUBTOTAL 107200.00 1 4119 \N +157182 2025-07-23 02:57:28.087152+00 2025-07-23 02:57:28.087161+00 f t DESCUENTO 0.00 2 4119 \N +157183 2025-07-23 02:57:28.088466+00 2025-07-23 02:57:28.088472+00 f t TOTAL 107200.00 3 4119 \N +157184 2025-07-23 02:57:28.089507+00 2025-07-23 02:57:28.089514+00 f t ADELANTO 69200.00 4 4119 \N +157189 2025-07-23 03:28:37.654839+00 2025-07-23 03:28:37.654847+00 f t SUBTOTAL 0.00 1 4120 \N +157190 2025-07-23 03:28:37.656437+00 2025-07-23 03:28:37.656445+00 f t DESCUENTO 0.00 2 4120 \N +157191 2025-07-23 03:28:37.65801+00 2025-07-23 03:28:37.65802+00 f t TOTAL 0.00 3 4120 \N +157192 2025-07-23 03:28:37.659495+00 2025-07-23 03:28:37.659501+00 f t ADELANTO 0.00 4 4120 \N +157197 2025-07-23 03:32:43.531958+00 2025-07-23 03:32:43.53197+00 f t SUBTOTAL 0.00 1 4121 \N +157198 2025-07-23 03:32:43.533637+00 2025-07-23 03:32:43.533647+00 f t DESCUENTO 0.00 2 4121 \N +157199 2025-07-23 03:32:43.535001+00 2025-07-23 03:32:43.53501+00 f t TOTAL 0.00 3 4121 \N +157200 2025-07-23 03:32:43.53626+00 2025-07-23 03:32:43.536266+00 f t ADELANTO 0.00 4 4121 \N +159017 2025-07-23 22:15:31.26604+00 2025-07-23 22:15:31.266049+00 f t SUBTOTAL 0.00 1 4166 \N +159018 2025-07-23 22:15:31.267815+00 2025-07-23 22:15:31.267821+00 f t DESCUENTO 0.00 2 4166 \N +159019 2025-07-23 22:15:31.26896+00 2025-07-23 22:15:31.268966+00 f t TOTAL 0.00 3 4166 \N +159020 2025-07-23 22:15:31.270033+00 2025-07-23 22:15:31.270039+00 f t ADELANTO 0.00 4 4166 \N +157245 2025-07-23 03:36:01.911875+00 2025-07-23 03:36:01.911885+00 f t SUBTOTAL 49500.00 1 4122 \N +157246 2025-07-23 03:36:01.914687+00 2025-07-23 03:36:01.9147+00 f t DESCUENTO 0.00 2 4122 \N +157247 2025-07-23 03:36:01.917087+00 2025-07-23 03:36:01.917101+00 f t TOTAL 49500.00 3 4122 \N +157248 2025-07-23 03:36:01.919902+00 2025-07-23 03:36:01.919917+00 f t ADELANTO 11500.00 4 4122 \N +162677 2025-07-25 16:53:47.311751+00 2025-07-25 16:53:47.31176+00 f t SUBTOTAL 82700.00 1 4260 \N +162678 2025-07-25 16:53:47.313558+00 2025-07-25 16:53:47.313566+00 f t DESCUENTO 0.00 2 4260 \N +159465 2025-07-24 04:09:38.947576+00 2025-07-24 04:09:38.947586+00 f t SUBTOTAL 0.00 1 4176 \N +159466 2025-07-24 04:09:38.949555+00 2025-07-24 04:09:38.949563+00 f t DESCUENTO 0.00 2 4176 \N +159467 2025-07-24 04:09:38.951327+00 2025-07-24 04:09:38.951335+00 f t TOTAL 0.00 3 4176 \N +159468 2025-07-24 04:09:38.952542+00 2025-07-24 04:09:38.952551+00 f t ADELANTO 0.00 4 4176 \N +162679 2025-07-25 16:53:47.315353+00 2025-07-25 16:53:47.31536+00 f t TOTAL 82700.00 3 4260 \N +162680 2025-07-25 16:53:47.316523+00 2025-07-25 16:53:47.316529+00 f t ADELANTO 44700.00 4 4260 \N +157293 2025-07-23 03:53:53.435842+00 2025-07-23 03:53:53.43585+00 f t SUBTOTAL 50000.00 1 4123 \N +157294 2025-07-23 03:53:53.437665+00 2025-07-23 03:53:53.437675+00 f t DESCUENTO 0.00 2 4123 \N +157295 2025-07-23 03:53:53.43921+00 2025-07-23 03:53:53.439217+00 f t TOTAL 50000.00 3 4123 \N +157296 2025-07-23 03:53:53.440698+00 2025-07-23 03:53:53.440708+00 f t ADELANTO 10000.00 4 4123 \N +157321 2025-07-23 03:57:59.515718+00 2025-07-23 03:57:59.515728+00 f t SUBTOTAL 0.00 1 4124 \N +157322 2025-07-23 03:57:59.517551+00 2025-07-23 03:57:59.517559+00 f t DESCUENTO 0.00 2 4124 \N +157323 2025-07-23 03:57:59.518972+00 2025-07-23 03:57:59.51898+00 f t TOTAL 0.00 3 4124 \N +157324 2025-07-23 03:57:59.520311+00 2025-07-23 03:57:59.520318+00 f t ADELANTO 0.00 4 4124 \N +157329 2025-07-23 03:59:01.154101+00 2025-07-23 03:59:01.154114+00 f t SUBTOTAL 0.00 1 4125 \N +157330 2025-07-23 03:59:01.156503+00 2025-07-23 03:59:01.156515+00 f t DESCUENTO 0.00 2 4125 \N +157331 2025-07-23 03:59:01.158422+00 2025-07-23 03:59:01.158435+00 f t TOTAL 0.00 3 4125 \N +157332 2025-07-23 03:59:01.163823+00 2025-07-23 03:59:01.163836+00 f t ADELANTO 0.00 4 4125 \N +173069 2025-07-29 21:43:57.518913+00 2025-07-29 21:43:57.518923+00 f t SUBTOTAL 0.00 1 4531 \N +173070 2025-07-29 21:43:57.521191+00 2025-07-29 21:43:57.5212+00 f t DESCUENTO 0.00 2 4531 \N +173071 2025-07-29 21:43:57.52266+00 2025-07-29 21:43:57.522668+00 f t TOTAL 0.00 3 4531 \N +173072 2025-07-29 21:43:57.52387+00 2025-07-29 21:43:57.523878+00 f t ADELANTO 0.00 4 4531 \N +169253 2025-07-28 17:19:38.825843+00 2025-07-28 17:19:38.825856+00 f t SUBTOTAL 0.00 1 4432 \N +169254 2025-07-28 17:19:38.828309+00 2025-07-28 17:19:38.82832+00 f t DESCUENTO 0.00 2 4432 \N +169255 2025-07-28 17:19:38.829669+00 2025-07-28 17:19:38.829676+00 f t TOTAL 0.00 3 4432 \N +169256 2025-07-28 17:19:38.831059+00 2025-07-28 17:19:38.831065+00 f t ADELANTO 0.00 4 4432 \N +166157 2025-07-27 14:56:41.077369+00 2025-07-27 14:56:41.077378+00 f t SUBTOTAL 0.00 1 4346 \N +166158 2025-07-27 14:56:41.079576+00 2025-07-27 14:56:41.079588+00 f t DESCUENTO 0.00 2 4346 \N +166159 2025-07-27 14:56:41.081151+00 2025-07-27 14:56:41.081159+00 f t TOTAL 0.00 3 4346 \N +166160 2025-07-27 14:56:41.082268+00 2025-07-27 14:56:41.082274+00 f t ADELANTO 0.00 4 4346 \N +162125 2025-07-25 15:16:01.513539+00 2025-07-25 15:16:01.513551+00 f t SUBTOTAL 84000.00 1 4250 \N +162126 2025-07-25 15:16:01.515727+00 2025-07-25 15:16:01.515736+00 f t DESCUENTO 0.00 2 4250 \N +162127 2025-07-25 15:16:01.517488+00 2025-07-25 15:16:01.517497+00 f t TOTAL 84000.00 3 4250 \N +162128 2025-07-25 15:16:01.519272+00 2025-07-25 15:16:01.519279+00 f t ADELANTO 19000.00 4 4250 \N +166257 2025-07-27 15:49:25.873041+00 2025-07-27 15:49:25.873055+00 f t SUBTOTAL 0.00 1 4351 \N +166258 2025-07-27 15:49:25.874914+00 2025-07-27 15:49:25.874923+00 f t DESCUENTO 0.00 2 4351 \N +166259 2025-07-27 15:49:25.876912+00 2025-07-27 15:49:25.876922+00 f t TOTAL 0.00 3 4351 \N +166260 2025-07-27 15:49:25.87971+00 2025-07-27 15:49:25.879719+00 f t ADELANTO 0.00 4 4351 \N +158485 2025-07-23 19:24:16.138304+00 2025-07-23 19:24:16.138316+00 f t SUBTOTAL 0.00 1 4152 \N +158486 2025-07-23 19:24:16.140149+00 2025-07-23 19:24:16.140157+00 f t DESCUENTO 0.00 2 4152 \N +158487 2025-07-23 19:24:16.141564+00 2025-07-23 19:24:16.141571+00 f t TOTAL 0.00 3 4152 \N +158488 2025-07-23 19:24:16.142933+00 2025-07-23 19:24:16.142942+00 f t ADELANTO 0.00 4 4152 \N +158669 2025-07-23 21:41:48.03213+00 2025-07-23 21:41:48.032139+00 f t SUBTOTAL 0.00 1 4157 \N +158670 2025-07-23 21:41:48.03415+00 2025-07-23 21:41:48.034157+00 f t DESCUENTO 0.00 2 4157 \N +158671 2025-07-23 21:41:48.035187+00 2025-07-23 21:41:48.035193+00 f t TOTAL 0.00 3 4157 \N +158672 2025-07-23 21:41:48.036133+00 2025-07-23 21:41:48.036139+00 f t ADELANTO 0.00 4 4157 \N +166613 2025-07-27 18:12:12.211118+00 2025-07-27 18:12:12.211151+00 f t SUBTOTAL 50000.00 1 4357 \N +166614 2025-07-27 18:12:12.213271+00 2025-07-27 18:12:12.213279+00 f t DESCUENTO 0.00 2 4357 \N +166615 2025-07-27 18:12:12.21472+00 2025-07-27 18:12:12.214727+00 f t TOTAL 50000.00 3 4357 \N +166616 2025-07-27 18:12:12.215996+00 2025-07-27 18:12:12.216002+00 f t ADELANTO 10000.00 4 4357 \N +162685 2025-07-25 16:59:53.141005+00 2025-07-25 16:59:53.141014+00 f t SUBTOTAL 0.00 1 4261 \N +162686 2025-07-25 16:59:53.14244+00 2025-07-25 16:59:53.142446+00 f t DESCUENTO 0.00 2 4261 \N +162687 2025-07-25 16:59:53.143633+00 2025-07-25 16:59:53.143638+00 f t TOTAL 0.00 3 4261 \N +162688 2025-07-25 16:59:53.144762+00 2025-07-25 16:59:53.144767+00 f t ADELANTO 0.00 4 4261 \N +166773 2025-07-27 18:43:02.806281+00 2025-07-27 18:43:02.80629+00 f t SUBTOTAL 50000.00 1 4361 \N +166774 2025-07-27 18:43:02.808235+00 2025-07-27 18:43:02.808243+00 f t DESCUENTO 0.00 2 4361 \N +166775 2025-07-27 18:43:02.809988+00 2025-07-27 18:43:02.809997+00 f t TOTAL 50000.00 3 4361 \N +166776 2025-07-27 18:43:02.811425+00 2025-07-27 18:43:02.811431+00 f t ADELANTO 10000.00 4 4361 \N +171053 2025-07-29 11:36:27.742677+00 2025-07-29 11:36:27.74269+00 f t SUBTOTAL 0.00 1 4486 \N +171054 2025-07-29 11:36:27.744419+00 2025-07-29 11:36:27.744429+00 f t DESCUENTO 0.00 2 4486 \N +171055 2025-07-29 11:36:27.745796+00 2025-07-29 11:36:27.745802+00 f t TOTAL 0.00 3 4486 \N +171056 2025-07-29 11:36:27.746889+00 2025-07-29 11:36:27.746894+00 f t ADELANTO 0.00 4 4486 \N +171245 2025-07-29 14:14:10.93028+00 2025-07-29 14:14:10.930293+00 f t SUBTOTAL 0.00 1 4492 \N +171246 2025-07-29 14:14:10.932433+00 2025-07-29 14:14:10.932444+00 f t DESCUENTO 0.00 2 4492 \N +171247 2025-07-29 14:14:10.934478+00 2025-07-29 14:14:10.934489+00 f t TOTAL 0.00 3 4492 \N +171248 2025-07-29 14:14:10.936403+00 2025-07-29 14:14:10.936414+00 f t ADELANTO 0.00 4 4492 \N +163153 2025-07-25 23:29:36.281983+00 2025-07-25 23:29:36.281993+00 f t SUBTOTAL 0.00 1 4272 \N +163154 2025-07-25 23:29:36.284425+00 2025-07-25 23:29:36.284433+00 f t DESCUENTO 0.00 2 4272 \N +163155 2025-07-25 23:29:36.285863+00 2025-07-25 23:29:36.285871+00 f t TOTAL 0.00 3 4272 \N +163156 2025-07-25 23:29:36.287116+00 2025-07-25 23:29:36.287126+00 f t ADELANTO 0.00 4 4272 \N +163185 2025-07-26 00:04:40.275853+00 2025-07-26 00:04:40.275861+00 f t SUBTOTAL 42000.00 1 4273 \N +163186 2025-07-26 00:04:40.277776+00 2025-07-26 00:04:40.277786+00 f t DESCUENTO 0.00 2 4273 \N +163187 2025-07-26 00:04:40.279381+00 2025-07-26 00:04:40.27939+00 f t TOTAL 42000.00 3 4273 \N +163188 2025-07-26 00:04:40.280773+00 2025-07-26 00:04:40.280782+00 f t ADELANTO 9500.00 4 4273 \N +159697 2025-07-24 11:26:26.247776+00 2025-07-24 11:26:26.247786+00 f t SUBTOTAL 50000.00 1 4181 \N +159698 2025-07-24 11:26:26.249695+00 2025-07-24 11:26:26.249703+00 f t DESCUENTO 0.00 2 4181 \N +159699 2025-07-24 11:26:26.251257+00 2025-07-24 11:26:26.251264+00 f t TOTAL 50000.00 3 4181 \N +159700 2025-07-24 11:26:26.252644+00 2025-07-24 11:26:26.252652+00 f t ADELANTO 10000.00 4 4181 \N +159785 2025-07-24 11:29:30.064824+00 2025-07-24 11:29:30.064834+00 f t SUBTOTAL 50000.00 1 4182 \N +159786 2025-07-24 11:29:30.066497+00 2025-07-24 11:29:30.066503+00 f t DESCUENTO 0.00 2 4182 \N +159787 2025-07-24 11:29:30.067748+00 2025-07-24 11:29:30.067754+00 f t TOTAL 50000.00 3 4182 \N +159788 2025-07-24 11:29:30.069137+00 2025-07-24 11:29:30.069144+00 f t ADELANTO 10000.00 4 4182 \N +167445 2025-07-28 00:36:14.475954+00 2025-07-28 00:36:14.475963+00 f t SUBTOTAL 94700.00 1 4378 \N +167446 2025-07-28 00:36:14.477934+00 2025-07-28 00:36:14.477943+00 f t DESCUENTO 0.00 2 4378 \N +167447 2025-07-28 00:36:14.479534+00 2025-07-28 00:36:14.479542+00 f t TOTAL 94700.00 3 4378 \N +167448 2025-07-28 00:36:14.481108+00 2025-07-28 00:36:14.481116+00 f t ADELANTO 56700.00 4 4378 \N +159881 2025-07-24 13:19:58.130366+00 2025-07-24 13:19:58.130374+00 f t SUBTOTAL 0.00 1 4188 \N +159882 2025-07-24 13:19:58.131873+00 2025-07-24 13:19:58.131879+00 f t DESCUENTO 0.00 2 4188 \N +159883 2025-07-24 13:19:58.133151+00 2025-07-24 13:19:58.13316+00 f t TOTAL 0.00 3 4188 \N +159884 2025-07-24 13:19:58.134329+00 2025-07-24 13:19:58.134335+00 f t ADELANTO 0.00 4 4188 \N +163385 2025-07-26 02:00:50.194672+00 2025-07-26 02:00:50.194681+00 f t SUBTOTAL 0.00 1 4277 \N +163386 2025-07-26 02:00:50.196773+00 2025-07-26 02:00:50.196781+00 f t DESCUENTO 0.00 2 4277 \N +163387 2025-07-26 02:00:50.197972+00 2025-07-26 02:00:50.197979+00 f t TOTAL 0.00 3 4277 \N +163388 2025-07-26 02:00:50.198937+00 2025-07-26 02:00:50.198943+00 f t ADELANTO 0.00 4 4277 \N +240528 2025-08-25 16:39:52.913813+00 2025-08-25 16:39:52.913822+00 f t ADELANTO 10000.00 4 6212 \N +159917 2025-07-24 13:36:29.325236+00 2025-07-24 13:36:29.325247+00 f t SUBTOTAL 49500.00 1 4189 \N +159918 2025-07-24 13:36:29.327301+00 2025-07-24 13:36:29.327311+00 f t DESCUENTO 0.00 2 4189 \N +159919 2025-07-24 13:36:29.329117+00 2025-07-24 13:36:29.329127+00 f t TOTAL 49500.00 3 4189 \N +159920 2025-07-24 13:36:29.330833+00 2025-07-24 13:36:29.330843+00 f t ADELANTO 11500.00 4 4189 \N +159925 2025-07-24 13:47:53.710513+00 2025-07-24 13:47:53.710522+00 f t SUBTOTAL 0.00 1 4190 \N +159926 2025-07-24 13:47:53.711779+00 2025-07-24 13:47:53.711786+00 f t DESCUENTO 0.00 2 4190 \N +159927 2025-07-24 13:47:53.712837+00 2025-07-24 13:47:53.712842+00 f t TOTAL 0.00 3 4190 \N +159928 2025-07-24 13:47:53.713761+00 2025-07-24 13:47:53.713767+00 f t ADELANTO 0.00 4 4190 \N +165189 2025-07-26 21:07:11.840785+00 2025-07-26 21:07:11.840794+00 f t SUBTOTAL 0.00 1 4322 \N +159933 2025-07-24 14:21:25.330862+00 2025-07-24 14:21:25.330872+00 f t SUBTOTAL 0.00 1 4191 \N +159934 2025-07-24 14:21:25.332784+00 2025-07-24 14:21:25.332792+00 f t DESCUENTO 0.00 2 4191 \N +159935 2025-07-24 14:21:25.334766+00 2025-07-24 14:21:25.334772+00 f t TOTAL 0.00 3 4191 \N +159936 2025-07-24 14:21:25.338044+00 2025-07-24 14:21:25.338055+00 f t ADELANTO 0.00 4 4191 \N +165190 2025-07-26 21:07:11.842769+00 2025-07-26 21:07:11.842777+00 f t DESCUENTO 0.00 2 4322 \N +165191 2025-07-26 21:07:11.843994+00 2025-07-26 21:07:11.844001+00 f t TOTAL 0.00 3 4322 \N +165192 2025-07-26 21:07:11.845001+00 2025-07-26 21:07:11.845009+00 f t ADELANTO 0.00 4 4322 \N +159941 2025-07-24 14:38:07.110185+00 2025-07-24 14:38:07.110197+00 f t SUBTOTAL 0.00 1 4192 \N +159942 2025-07-24 14:38:07.111732+00 2025-07-24 14:38:07.111738+00 f t DESCUENTO 0.00 2 4192 \N +159943 2025-07-24 14:38:07.11299+00 2025-07-24 14:38:07.112996+00 f t TOTAL 0.00 3 4192 \N +159944 2025-07-24 14:38:07.114029+00 2025-07-24 14:38:07.114034+00 f t ADELANTO 0.00 4 4192 \N +159949 2025-07-24 14:48:49.0109+00 2025-07-24 14:48:49.010909+00 f t SUBTOTAL 0.00 1 4193 \N +159950 2025-07-24 14:48:49.012299+00 2025-07-24 14:48:49.012306+00 f t DESCUENTO 0.00 2 4193 \N +159951 2025-07-24 14:48:49.013344+00 2025-07-24 14:48:49.01335+00 f t TOTAL 0.00 3 4193 \N +159952 2025-07-24 14:48:49.014357+00 2025-07-24 14:48:49.014362+00 f t ADELANTO 0.00 4 4193 \N +159957 2025-07-24 15:02:20.691657+00 2025-07-24 15:02:20.691667+00 f t SUBTOTAL 0.00 1 4194 \N +159958 2025-07-24 15:02:20.693245+00 2025-07-24 15:02:20.693252+00 f t DESCUENTO 0.00 2 4194 \N +159959 2025-07-24 15:02:20.694763+00 2025-07-24 15:02:20.694771+00 f t TOTAL 0.00 3 4194 \N +159960 2025-07-24 15:02:20.695991+00 2025-07-24 15:02:20.695997+00 f t ADELANTO 0.00 4 4194 \N +165513 2025-07-27 03:55:14.30466+00 2025-07-27 03:55:14.30467+00 f t SUBTOTAL 0.00 1 4334 \N +165514 2025-07-27 03:55:14.306888+00 2025-07-27 03:55:14.306901+00 f t DESCUENTO 0.00 2 4334 \N +165515 2025-07-27 03:55:14.309153+00 2025-07-27 03:55:14.309165+00 f t TOTAL 0.00 3 4334 \N +165516 2025-07-27 03:55:14.310842+00 2025-07-27 03:55:14.310854+00 f t ADELANTO 0.00 4 4334 \N +161933 2025-07-25 14:40:50.01482+00 2025-07-25 14:40:50.014832+00 f t SUBTOTAL 0.00 1 4246 \N +161934 2025-07-25 14:40:50.017055+00 2025-07-25 14:40:50.017063+00 f t DESCUENTO 0.00 2 4246 \N +161935 2025-07-25 14:40:50.018155+00 2025-07-25 14:40:50.01816+00 f t TOTAL 0.00 3 4246 \N +161936 2025-07-25 14:40:50.019259+00 2025-07-25 14:40:50.019264+00 f t ADELANTO 0.00 4 4246 \N +161973 2025-07-25 14:43:53.60201+00 2025-07-25 14:43:53.602021+00 f t SUBTOTAL 50000.00 1 4248 \N +161974 2025-07-25 14:43:53.604392+00 2025-07-25 14:43:53.604401+00 f t DESCUENTO 0.00 2 4248 \N +161975 2025-07-25 14:43:53.605852+00 2025-07-25 14:43:53.60586+00 f t TOTAL 50000.00 3 4248 \N +161976 2025-07-25 14:43:53.615361+00 2025-07-25 14:43:53.61537+00 f t ADELANTO 10000.00 4 4248 \N +160021 2025-07-24 15:08:34.228045+00 2025-07-24 15:08:34.228059+00 f t SUBTOTAL 0.00 1 4195 \N +160022 2025-07-24 15:08:34.230343+00 2025-07-24 15:08:34.230354+00 f t DESCUENTO 0.00 2 4195 \N +160023 2025-07-24 15:08:34.232246+00 2025-07-24 15:08:34.232257+00 f t TOTAL 0.00 3 4195 \N +160024 2025-07-24 15:08:34.234012+00 2025-07-24 15:08:34.234022+00 f t ADELANTO 0.00 4 4195 \N +166165 2025-07-27 15:11:23.015779+00 2025-07-27 15:11:23.015789+00 f t SUBTOTAL 0.00 1 4347 \N +166166 2025-07-27 15:11:23.017442+00 2025-07-27 15:11:23.017448+00 f t DESCUENTO 0.00 2 4347 \N +166167 2025-07-27 15:11:23.019292+00 2025-07-27 15:11:23.019298+00 f t TOTAL 0.00 3 4347 \N +166168 2025-07-27 15:11:23.020391+00 2025-07-27 15:11:23.020397+00 f t ADELANTO 0.00 4 4347 \N +162693 2025-07-25 17:11:32.732088+00 2025-07-25 17:11:32.732097+00 f t SUBTOTAL 0.00 1 4262 \N +162694 2025-07-25 17:11:32.733549+00 2025-07-25 17:11:32.733558+00 f t DESCUENTO 0.00 2 4262 \N +162695 2025-07-25 17:11:32.734821+00 2025-07-25 17:11:32.734828+00 f t TOTAL 0.00 3 4262 \N +162696 2025-07-25 17:11:32.736021+00 2025-07-25 17:11:32.736027+00 f t ADELANTO 0.00 4 4262 \N +166781 2025-07-27 20:21:51.15065+00 2025-07-27 20:21:51.150659+00 f t SUBTOTAL 0.00 1 4362 \N +166782 2025-07-27 20:21:51.15201+00 2025-07-27 20:21:51.152016+00 f t DESCUENTO 0.00 2 4362 \N +166783 2025-07-27 20:21:51.153117+00 2025-07-27 20:21:51.153123+00 f t TOTAL 0.00 3 4362 \N +166784 2025-07-27 20:21:51.154048+00 2025-07-27 20:21:51.154054+00 f t ADELANTO 0.00 4 4362 \N +160129 2025-07-24 15:13:58.560973+00 2025-07-24 15:13:58.560986+00 f t SUBTOTAL 0.00 1 4196 \N +160130 2025-07-24 15:13:58.564257+00 2025-07-24 15:13:58.564265+00 f t DESCUENTO 0.00 2 4196 \N +160131 2025-07-24 15:13:58.56586+00 2025-07-24 15:13:58.565869+00 f t TOTAL 0.00 3 4196 \N +160132 2025-07-24 15:13:58.567283+00 2025-07-24 15:13:58.567289+00 f t ADELANTO 0.00 4 4196 \N +167037 2025-07-27 22:11:21.99428+00 2025-07-27 22:11:21.994288+00 f t SUBTOTAL 0.00 1 4372 \N +167038 2025-07-27 22:11:21.996364+00 2025-07-27 22:11:21.996372+00 f t DESCUENTO 0.00 2 4372 \N +167039 2025-07-27 22:11:21.998328+00 2025-07-27 22:11:21.998337+00 f t TOTAL 0.00 3 4372 \N +167040 2025-07-27 22:11:21.999774+00 2025-07-27 22:11:21.99978+00 f t ADELANTO 0.00 4 4372 \N +163029 2025-07-25 21:53:25.858443+00 2025-07-25 21:53:25.858451+00 f t SUBTOTAL 27500.00 1 4268 \N +163030 2025-07-25 21:53:25.859997+00 2025-07-25 21:53:25.860005+00 f t DESCUENTO 0.00 2 4268 \N +163031 2025-07-25 21:53:25.861317+00 2025-07-25 21:53:25.861323+00 f t TOTAL 27500.00 3 4268 \N +163032 2025-07-25 21:53:25.862562+00 2025-07-25 21:53:25.862568+00 f t ADELANTO 27500.00 4 4268 \N +160145 2025-07-24 15:17:22.884632+00 2025-07-24 15:17:22.884642+00 f t SUBTOTAL 0.00 1 4198 \N +160146 2025-07-24 15:17:22.88608+00 2025-07-24 15:17:22.886086+00 f t DESCUENTO 0.00 2 4198 \N +160147 2025-07-24 15:17:22.887363+00 2025-07-24 15:17:22.887371+00 f t TOTAL 0.00 3 4198 \N +160148 2025-07-24 15:17:22.888596+00 2025-07-24 15:17:22.888605+00 f t ADELANTO 0.00 4 4198 \N +160177 2025-07-24 15:18:47.946734+00 2025-07-24 15:18:47.946747+00 f t SUBTOTAL 49500.00 1 4197 \N +160178 2025-07-24 15:18:47.948393+00 2025-07-24 15:18:47.948402+00 f t DESCUENTO 0.00 2 4197 \N +160179 2025-07-24 15:18:47.949767+00 2025-07-24 15:18:47.949776+00 f t TOTAL 49500.00 3 4197 \N +160180 2025-07-24 15:18:47.950949+00 2025-07-24 15:18:47.950955+00 f t ADELANTO 11500.00 4 4197 \N +160185 2025-07-24 16:28:01.668604+00 2025-07-24 16:28:01.668619+00 f t SUBTOTAL 0.00 1 4199 \N +160186 2025-07-24 16:28:01.671265+00 2025-07-24 16:28:01.67128+00 f t DESCUENTO 0.00 2 4199 \N +160187 2025-07-24 16:28:01.675116+00 2025-07-24 16:28:01.675168+00 f t TOTAL 0.00 3 4199 \N +160188 2025-07-24 16:28:01.678176+00 2025-07-24 16:28:01.67819+00 f t ADELANTO 0.00 4 4199 \N +165037 2025-07-26 19:36:26.879094+00 2025-07-26 19:36:26.879103+00 f t SUBTOTAL 50000.00 1 4316 \N +165038 2025-07-26 19:36:26.880745+00 2025-07-26 19:36:26.880752+00 f t DESCUENTO 0.00 2 4316 \N +165039 2025-07-26 19:36:26.881947+00 2025-07-26 19:36:26.881952+00 f t TOTAL 50000.00 3 4316 \N +165040 2025-07-26 19:36:26.883047+00 2025-07-26 19:36:26.883052+00 f t ADELANTO 10000.00 4 4316 \N +181541 2025-08-02 17:28:23.041139+00 2025-08-02 17:28:23.041152+00 f t SUBTOTAL 129500.00 1 4765 \N +165197 2025-07-26 21:26:35.840648+00 2025-07-26 21:26:35.840657+00 f t SUBTOTAL 0.00 1 4323 \N +165198 2025-07-26 21:26:35.842187+00 2025-07-26 21:26:35.842193+00 f t DESCUENTO 0.00 2 4323 \N +165199 2025-07-26 21:26:35.843442+00 2025-07-26 21:26:35.843448+00 f t TOTAL 0.00 3 4323 \N +165200 2025-07-26 21:26:35.844582+00 2025-07-26 21:26:35.844591+00 f t ADELANTO 0.00 4 4323 \N +165405 2025-07-27 03:12:14.801024+00 2025-07-27 03:12:14.801032+00 f t SUBTOTAL 73700.00 1 4333 \N +165406 2025-07-27 03:12:14.802966+00 2025-07-27 03:12:14.802973+00 f t DESCUENTO 0.00 2 4333 \N +160233 2025-07-24 17:20:02.935043+00 2025-07-24 17:20:02.935057+00 f t SUBTOTAL 0.00 1 4201 \N +160234 2025-07-24 17:20:02.937796+00 2025-07-24 17:20:02.937809+00 f t DESCUENTO 0.00 2 4201 \N +160235 2025-07-24 17:20:02.940218+00 2025-07-24 17:20:02.940229+00 f t TOTAL 0.00 3 4201 \N +160236 2025-07-24 17:20:02.943109+00 2025-07-24 17:20:02.943123+00 f t ADELANTO 0.00 4 4201 \N +165407 2025-07-27 03:12:14.804397+00 2025-07-27 03:12:14.804404+00 f t TOTAL 73700.00 3 4333 \N +165408 2025-07-27 03:12:14.805755+00 2025-07-27 03:12:14.805761+00 f t ADELANTO 35700.00 4 4333 \N +160241 2025-07-24 17:20:09.575635+00 2025-07-24 17:20:09.575644+00 f t SUBTOTAL 62000.00 1 4200 \N +160242 2025-07-24 17:20:09.577458+00 2025-07-24 17:20:09.577469+00 f t DESCUENTO 0.00 2 4200 \N +160243 2025-07-24 17:20:09.57947+00 2025-07-24 17:20:09.57948+00 f t TOTAL 62000.00 3 4200 \N +160244 2025-07-24 17:20:09.581094+00 2025-07-24 17:20:09.581103+00 f t ADELANTO 12000.00 4 4200 \N +160269 2025-07-24 17:24:46.301869+00 2025-07-24 17:24:46.301881+00 f t SUBTOTAL 42000.00 1 4202 \N +160270 2025-07-24 17:24:46.303739+00 2025-07-24 17:24:46.303746+00 f t DESCUENTO 0.00 2 4202 \N +160271 2025-07-24 17:24:46.305112+00 2025-07-24 17:24:46.305122+00 f t TOTAL 42000.00 3 4202 \N +160272 2025-07-24 17:24:46.3063+00 2025-07-24 17:24:46.306305+00 f t ADELANTO 9500.00 4 4202 \N +160277 2025-07-24 18:03:14.972723+00 2025-07-24 18:03:14.972733+00 f t SUBTOTAL 0.00 1 4203 \N +160278 2025-07-24 18:03:14.974332+00 2025-07-24 18:03:14.97434+00 f t DESCUENTO 0.00 2 4203 \N +160279 2025-07-24 18:03:14.975743+00 2025-07-24 18:03:14.97575+00 f t TOTAL 0.00 3 4203 \N +160280 2025-07-24 18:03:14.977047+00 2025-07-24 18:03:14.977053+00 f t ADELANTO 0.00 4 4203 \N +160321 2025-07-24 18:33:50.273476+00 2025-07-24 18:33:50.273484+00 f t SUBTOTAL 50000.00 1 4204 \N +160322 2025-07-24 18:33:50.275018+00 2025-07-24 18:33:50.275025+00 f t DESCUENTO 0.00 2 4204 \N +160323 2025-07-24 18:33:50.276235+00 2025-07-24 18:33:50.276241+00 f t TOTAL 50000.00 3 4204 \N +160324 2025-07-24 18:33:50.277292+00 2025-07-24 18:33:50.277298+00 f t ADELANTO 10000.00 4 4204 \N +160329 2025-07-24 18:43:10.439267+00 2025-07-24 18:43:10.439279+00 f t SUBTOTAL 0.00 1 4205 \N +160330 2025-07-24 18:43:10.440685+00 2025-07-24 18:43:10.44069+00 f t DESCUENTO 0.00 2 4205 \N +160331 2025-07-24 18:43:10.441878+00 2025-07-24 18:43:10.441884+00 f t TOTAL 0.00 3 4205 \N +160332 2025-07-24 18:43:10.442875+00 2025-07-24 18:43:10.44288+00 f t ADELANTO 0.00 4 4205 \N +160337 2025-07-24 18:56:37.296309+00 2025-07-24 18:56:37.296322+00 f t SUBTOTAL 0.00 1 4206 \N +160338 2025-07-24 18:56:37.297811+00 2025-07-24 18:56:37.297819+00 f t DESCUENTO 0.00 2 4206 \N +160339 2025-07-24 18:56:37.29908+00 2025-07-24 18:56:37.299086+00 f t TOTAL 0.00 3 4206 \N +160340 2025-07-24 18:56:37.300384+00 2025-07-24 18:56:37.30039+00 f t ADELANTO 0.00 4 4206 \N +160357 2025-07-24 18:57:56.992251+00 2025-07-24 18:57:56.992263+00 f t SUBTOTAL 0.00 1 4207 \N +160358 2025-07-24 18:57:56.994312+00 2025-07-24 18:57:56.994322+00 f t DESCUENTO 0.00 2 4207 \N +160359 2025-07-24 18:57:56.995731+00 2025-07-24 18:57:56.99574+00 f t TOTAL 0.00 3 4207 \N +160360 2025-07-24 18:57:56.996937+00 2025-07-24 18:57:56.996943+00 f t ADELANTO 0.00 4 4207 \N +162481 2025-07-25 16:22:52.902634+00 2025-07-25 16:22:52.902647+00 f t SUBTOTAL 42000.00 1 4257 \N +162482 2025-07-25 16:22:52.90522+00 2025-07-25 16:22:52.905231+00 f t DESCUENTO 0.00 2 4257 \N +160365 2025-07-24 19:20:06.12572+00 2025-07-24 19:20:06.125733+00 f t SUBTOTAL 0.00 1 4208 \N +160366 2025-07-24 19:20:06.128171+00 2025-07-24 19:20:06.128183+00 f t DESCUENTO 0.00 2 4208 \N +160367 2025-07-24 19:20:06.13026+00 2025-07-24 19:20:06.130268+00 f t TOTAL 0.00 3 4208 \N +160368 2025-07-24 19:20:06.133304+00 2025-07-24 19:20:06.133318+00 f t ADELANTO 0.00 4 4208 \N +162483 2025-07-25 16:22:52.906795+00 2025-07-25 16:22:52.906805+00 f t TOTAL 42000.00 3 4257 \N +162484 2025-07-25 16:22:52.908303+00 2025-07-25 16:22:52.908312+00 f t ADELANTO 9500.00 4 4257 \N +160437 2025-07-24 19:32:18.300269+00 2025-07-24 19:32:18.300277+00 f t SUBTOTAL 113700.00 1 4209 \N +160438 2025-07-24 19:32:18.302072+00 2025-07-24 19:32:18.302079+00 f t DESCUENTO 0.00 2 4209 \N +160439 2025-07-24 19:32:18.303433+00 2025-07-24 19:32:18.303439+00 f t TOTAL 113700.00 3 4209 \N +160440 2025-07-24 19:32:18.305021+00 2025-07-24 19:32:18.305029+00 f t ADELANTO 75700.00 4 4209 \N +163037 2025-07-25 22:14:34.092899+00 2025-07-25 22:14:34.09292+00 f t SUBTOTAL 0.00 1 4269 \N +163038 2025-07-25 22:14:34.094398+00 2025-07-25 22:14:34.094406+00 f t DESCUENTO 0.00 2 4269 \N +163039 2025-07-25 22:14:34.095897+00 2025-07-25 22:14:34.095906+00 f t TOTAL 0.00 3 4269 \N +163040 2025-07-25 22:14:34.097126+00 2025-07-25 22:14:34.097131+00 f t ADELANTO 0.00 4 4269 \N +160469 2025-07-24 19:39:46.342099+00 2025-07-24 19:39:46.342108+00 f t SUBTOTAL 70000.00 1 4210 \N +160470 2025-07-24 19:39:46.344101+00 2025-07-24 19:39:46.344109+00 f t DESCUENTO 0.00 2 4210 \N +160471 2025-07-24 19:39:46.345499+00 2025-07-24 19:39:46.345506+00 f t TOTAL 70000.00 3 4210 \N +160472 2025-07-24 19:39:46.346844+00 2025-07-24 19:39:46.346851+00 f t ADELANTO 15000.00 4 4210 \N +160477 2025-07-24 19:48:37.693588+00 2025-07-24 19:48:37.6936+00 f t SUBTOTAL 0.00 1 4211 \N +160478 2025-07-24 19:48:37.695312+00 2025-07-24 19:48:37.695323+00 f t DESCUENTO 0.00 2 4211 \N +160479 2025-07-24 19:48:37.696825+00 2025-07-24 19:48:37.696835+00 f t TOTAL 0.00 3 4211 \N +160480 2025-07-24 19:48:37.698205+00 2025-07-24 19:48:37.698214+00 f t ADELANTO 0.00 4 4211 \N +160485 2025-07-24 19:53:20.773574+00 2025-07-24 19:53:20.773584+00 f t SUBTOTAL 0.00 1 4212 \N +160486 2025-07-24 19:53:20.775206+00 2025-07-24 19:53:20.775216+00 f t DESCUENTO 0.00 2 4212 \N +160487 2025-07-24 19:53:20.776723+00 2025-07-24 19:53:20.776729+00 f t TOTAL 0.00 3 4212 \N +160488 2025-07-24 19:53:20.777938+00 2025-07-24 19:53:20.777946+00 f t ADELANTO 0.00 4 4212 \N +163281 2025-07-26 00:40:28.706273+00 2025-07-26 00:40:28.706282+00 f t SUBTOTAL 0.00 1 4276 \N +163282 2025-07-26 00:40:28.708023+00 2025-07-26 00:40:28.70803+00 f t DESCUENTO 0.00 2 4276 \N +160493 2025-07-24 19:53:40.494149+00 2025-07-24 19:53:40.494162+00 f t SUBTOTAL 0.00 1 4213 \N +160494 2025-07-24 19:53:40.495692+00 2025-07-24 19:53:40.495699+00 f t DESCUENTO 0.00 2 4213 \N +160495 2025-07-24 19:53:40.49749+00 2025-07-24 19:53:40.497497+00 f t TOTAL 0.00 3 4213 \N +160496 2025-07-24 19:53:40.498743+00 2025-07-24 19:53:40.49875+00 f t ADELANTO 0.00 4 4213 \N +163283 2025-07-26 00:40:28.709283+00 2025-07-26 00:40:28.709289+00 f t TOTAL 0.00 3 4276 \N +165045 2025-07-26 19:41:47.964809+00 2025-07-26 19:41:47.964824+00 f t SUBTOTAL 0.00 1 4317 \N +165046 2025-07-26 19:41:47.966806+00 2025-07-26 19:41:47.966818+00 f t DESCUENTO 0.00 2 4317 \N +165047 2025-07-26 19:41:47.968695+00 2025-07-26 19:41:47.968703+00 f t TOTAL 0.00 3 4317 \N +165048 2025-07-26 19:41:47.97018+00 2025-07-26 19:41:47.970187+00 f t ADELANTO 0.00 4 4317 \N +161481 2025-07-25 10:15:52.162566+00 2025-07-25 10:15:52.162575+00 f t SUBTOTAL 49500.00 1 4239 \N +161482 2025-07-25 10:15:52.164286+00 2025-07-25 10:15:52.164297+00 f t DESCUENTO 0.00 2 4239 \N +161483 2025-07-25 10:15:52.165571+00 2025-07-25 10:15:52.165578+00 f t TOTAL 49500.00 3 4239 \N +161484 2025-07-25 10:15:52.166737+00 2025-07-25 10:15:52.166742+00 f t ADELANTO 11500.00 4 4239 \N +165205 2025-07-26 21:52:03.436271+00 2025-07-26 21:52:03.436284+00 f t SUBTOTAL 0.00 1 4324 \N +165206 2025-07-26 21:52:03.438526+00 2025-07-26 21:52:03.438538+00 f t DESCUENTO 0.00 2 4324 \N +165207 2025-07-26 21:52:03.441004+00 2025-07-26 21:52:03.441016+00 f t TOTAL 0.00 3 4324 \N +165208 2025-07-26 21:52:03.443255+00 2025-07-26 21:52:03.443267+00 f t ADELANTO 0.00 4 4324 \N +165345 2025-07-27 00:27:54.495265+00 2025-07-27 00:27:54.495277+00 f t SUBTOTAL 0.00 1 4331 \N +165346 2025-07-27 00:27:54.496753+00 2025-07-27 00:27:54.49676+00 f t DESCUENTO 0.00 2 4331 \N +165347 2025-07-27 00:27:54.497835+00 2025-07-27 00:27:54.497843+00 f t TOTAL 0.00 3 4331 \N +160533 2025-07-24 19:57:42.067806+00 2025-07-24 19:57:42.067815+00 f t SUBTOTAL 50000.00 1 4214 \N +160534 2025-07-24 19:57:42.069455+00 2025-07-24 19:57:42.069465+00 f t DESCUENTO 0.00 2 4214 \N +160535 2025-07-24 19:57:42.070745+00 2025-07-24 19:57:42.070752+00 f t TOTAL 50000.00 3 4214 \N +160536 2025-07-24 19:57:42.071948+00 2025-07-24 19:57:42.071955+00 f t ADELANTO 10000.00 4 4214 \N +165348 2025-07-27 00:27:54.49885+00 2025-07-27 00:27:54.498856+00 f t ADELANTO 0.00 4 4331 \N +161833 2025-07-25 14:38:27.897723+00 2025-07-25 14:38:27.897734+00 f t SUBTOTAL 64500.00 1 4247 \N +161834 2025-07-25 14:38:27.899373+00 2025-07-25 14:38:27.89938+00 f t DESCUENTO 0.00 2 4247 \N +161835 2025-07-25 14:38:27.900548+00 2025-07-25 14:38:27.900554+00 f t TOTAL 64500.00 3 4247 \N +161836 2025-07-25 14:38:27.901698+00 2025-07-25 14:38:27.901704+00 f t ADELANTO 17000.00 4 4247 \N +165805 2025-07-27 13:24:02.838603+00 2025-07-27 13:24:02.838614+00 f t SUBTOTAL 0.00 1 4341 \N +165806 2025-07-27 13:24:02.841467+00 2025-07-27 13:24:02.841478+00 f t DESCUENTO 0.00 2 4341 \N +165807 2025-07-27 13:24:02.843368+00 2025-07-27 13:24:02.84338+00 f t TOTAL 0.00 3 4341 \N +165808 2025-07-27 13:24:02.845453+00 2025-07-27 13:24:02.845462+00 f t ADELANTO 0.00 4 4341 \N +160581 2025-07-24 20:00:33.47719+00 2025-07-24 20:00:33.477203+00 f t SUBTOTAL 42000.00 1 4215 \N +160582 2025-07-24 20:00:33.479189+00 2025-07-24 20:00:33.479197+00 f t DESCUENTO 0.00 2 4215 \N +160583 2025-07-24 20:00:33.482109+00 2025-07-24 20:00:33.482121+00 f t TOTAL 42000.00 3 4215 \N +160584 2025-07-24 20:00:33.484314+00 2025-07-24 20:00:33.484323+00 f t ADELANTO 9500.00 4 4215 \N +160589 2025-07-24 21:21:27.817116+00 2025-07-24 21:21:27.817127+00 f t SUBTOTAL 0.00 1 4216 \N +160590 2025-07-24 21:21:27.818737+00 2025-07-24 21:21:27.818746+00 f t DESCUENTO 0.00 2 4216 \N +160591 2025-07-24 21:21:27.820415+00 2025-07-24 21:21:27.820424+00 f t TOTAL 0.00 3 4216 \N +160592 2025-07-24 21:21:27.822446+00 2025-07-24 21:21:27.822455+00 f t ADELANTO 0.00 4 4216 \N +166073 2025-07-27 14:52:40.55122+00 2025-07-27 14:52:40.55132+00 f t SUBTOTAL 0.00 1 4344 \N +166074 2025-07-27 14:52:40.554122+00 2025-07-27 14:52:40.554132+00 f t DESCUENTO 0.00 2 4344 \N +166075 2025-07-27 14:52:40.555976+00 2025-07-27 14:52:40.555988+00 f t TOTAL 0.00 3 4344 \N +166076 2025-07-27 14:52:40.557911+00 2025-07-27 14:52:40.557922+00 f t ADELANTO 0.00 4 4344 \N +166121 2025-07-27 14:54:33.000603+00 2025-07-27 14:54:33.000613+00 f t SUBTOTAL 0.00 1 4345 \N +166122 2025-07-27 14:54:33.00278+00 2025-07-27 14:54:33.002788+00 f t DESCUENTO 0.00 2 4345 \N +166123 2025-07-27 14:54:33.004632+00 2025-07-27 14:54:33.004642+00 f t TOTAL 0.00 3 4345 \N +160617 2025-07-24 21:30:39.561222+00 2025-07-24 21:30:39.561231+00 f t SUBTOTAL 0.00 1 4217 \N +160618 2025-07-24 21:30:39.563062+00 2025-07-24 21:30:39.563069+00 f t DESCUENTO 0.00 2 4217 \N +160619 2025-07-24 21:30:39.564194+00 2025-07-24 21:30:39.564201+00 f t TOTAL 0.00 3 4217 \N +160620 2025-07-24 21:30:39.565371+00 2025-07-24 21:30:39.565376+00 f t ADELANTO 0.00 4 4217 \N +162625 2025-07-25 16:44:39.406816+00 2025-07-25 16:44:39.406828+00 f t SUBTOTAL 0.00 1 4259 \N +162626 2025-07-25 16:44:39.408739+00 2025-07-25 16:44:39.408746+00 f t DESCUENTO 0.00 2 4259 \N +162627 2025-07-25 16:44:39.410042+00 2025-07-25 16:44:39.410049+00 f t TOTAL 0.00 3 4259 \N +162628 2025-07-25 16:44:39.411222+00 2025-07-25 16:44:39.411228+00 f t ADELANTO 0.00 4 4259 \N +160657 2025-07-24 21:44:56.610261+00 2025-07-24 21:44:56.61027+00 f t SUBTOTAL 42000.00 1 4218 \N +160658 2025-07-24 21:44:56.611678+00 2025-07-24 21:44:56.611684+00 f t DESCUENTO 0.00 2 4218 \N +160659 2025-07-24 21:44:56.61292+00 2025-07-24 21:44:56.612928+00 f t TOTAL 42000.00 3 4218 \N +160660 2025-07-24 21:44:56.614106+00 2025-07-24 21:44:56.614112+00 f t ADELANTO 9500.00 4 4218 \N +160705 2025-07-24 21:48:57.363018+00 2025-07-24 21:48:57.363026+00 f t SUBTOTAL 42000.00 1 4219 \N +160706 2025-07-24 21:48:57.364793+00 2025-07-24 21:48:57.3648+00 f t DESCUENTO 0.00 2 4219 \N +160707 2025-07-24 21:48:57.366171+00 2025-07-24 21:48:57.366177+00 f t TOTAL 42000.00 3 4219 \N +160708 2025-07-24 21:48:57.36742+00 2025-07-24 21:48:57.367427+00 f t ADELANTO 9500.00 4 4219 \N +163133 2025-07-25 23:28:31.703633+00 2025-07-25 23:28:31.703645+00 f t SUBTOTAL 0.00 1 4271 \N +163134 2025-07-25 23:28:31.705437+00 2025-07-25 23:28:31.705445+00 f t DESCUENTO 0.00 2 4271 \N +163135 2025-07-25 23:28:31.706567+00 2025-07-25 23:28:31.706572+00 f t TOTAL 0.00 3 4271 \N +163136 2025-07-25 23:28:31.707596+00 2025-07-25 23:28:31.707602+00 f t ADELANTO 0.00 4 4271 \N +163201 2025-07-26 00:06:26.755212+00 2025-07-26 00:06:26.755221+00 f t SUBTOTAL 0.00 1 4274 \N +163202 2025-07-26 00:06:26.760719+00 2025-07-26 00:06:26.76073+00 f t DESCUENTO 0.00 2 4274 \N +163203 2025-07-26 00:06:26.762474+00 2025-07-26 00:06:26.762483+00 f t TOTAL 0.00 3 4274 \N +163204 2025-07-26 00:06:26.764049+00 2025-07-26 00:06:26.764059+00 f t ADELANTO 0.00 4 4274 \N +163284 2025-07-26 00:40:28.710395+00 2025-07-26 00:40:28.710401+00 f t ADELANTO 0.00 4 4276 \N +160753 2025-07-24 21:49:32.340229+00 2025-07-24 21:49:32.340241+00 f t SUBTOTAL 0.00 1 4220 \N +160754 2025-07-24 21:49:32.341938+00 2025-07-24 21:49:32.341945+00 f t DESCUENTO 0.00 2 4220 \N +160755 2025-07-24 21:49:32.345729+00 2025-07-24 21:49:32.345738+00 f t TOTAL 0.00 3 4220 \N +160756 2025-07-24 21:49:32.346914+00 2025-07-24 21:49:32.34692+00 f t ADELANTO 0.00 4 4220 \N +163409 2025-07-26 02:05:01.26168+00 2025-07-26 02:05:01.261691+00 f t SUBTOTAL 0.00 1 4278 \N +163410 2025-07-26 02:05:01.265061+00 2025-07-26 02:05:01.265074+00 f t DESCUENTO 0.00 2 4278 \N +163411 2025-07-26 02:05:01.267258+00 2025-07-26 02:05:01.267271+00 f t TOTAL 0.00 3 4278 \N +160781 2025-07-24 21:58:51.033493+00 2025-07-24 21:58:51.033504+00 f t SUBTOTAL 42000.00 1 4221 \N +160782 2025-07-24 21:58:51.035455+00 2025-07-24 21:58:51.035465+00 f t DESCUENTO 0.00 2 4221 \N +160783 2025-07-24 21:58:51.036784+00 2025-07-24 21:58:51.036793+00 f t TOTAL 42000.00 3 4221 \N +160784 2025-07-24 21:58:51.037974+00 2025-07-24 21:58:51.037981+00 f t ADELANTO 9500.00 4 4221 \N +163412 2025-07-26 02:05:01.269323+00 2025-07-26 02:05:01.269331+00 f t ADELANTO 0.00 4 4278 \N +181542 2025-08-02 17:28:23.042936+00 2025-08-02 17:28:23.042944+00 f t DESCUENTO 0.00 2 4765 \N +181543 2025-08-02 17:28:23.044605+00 2025-08-02 17:28:23.044612+00 f t TOTAL 129500.00 3 4765 \N +173077 2025-07-29 22:08:38.762405+00 2025-07-29 22:08:38.762417+00 f t SUBTOTAL 0.00 1 4532 \N +173078 2025-07-29 22:08:38.764058+00 2025-07-29 22:08:38.764066+00 f t DESCUENTO 0.00 2 4532 \N +165053 2025-07-26 20:13:29.358264+00 2025-07-26 20:13:29.358277+00 f t SUBTOTAL 0.00 1 4318 \N +165054 2025-07-26 20:13:29.359868+00 2025-07-26 20:13:29.359877+00 f t DESCUENTO 0.00 2 4318 \N +165055 2025-07-26 20:13:29.361131+00 2025-07-26 20:13:29.361139+00 f t TOTAL 0.00 3 4318 \N +165056 2025-07-26 20:13:29.362294+00 2025-07-26 20:13:29.362301+00 f t ADELANTO 0.00 4 4318 \N +169261 2025-07-28 17:24:39.144133+00 2025-07-28 17:24:39.144141+00 f t SUBTOTAL 0.00 1 4433 \N +161489 2025-07-25 10:45:06.480575+00 2025-07-25 10:45:06.480588+00 f t SUBTOTAL 0.00 1 4240 \N +161490 2025-07-25 10:45:06.482807+00 2025-07-25 10:45:06.482818+00 f t DESCUENTO 0.00 2 4240 \N +161491 2025-07-25 10:45:06.484953+00 2025-07-25 10:45:06.484964+00 f t TOTAL 0.00 3 4240 \N +161492 2025-07-25 10:45:06.486754+00 2025-07-25 10:45:06.486764+00 f t ADELANTO 0.00 4 4240 \N +161537 2025-07-25 12:24:17.305267+00 2025-07-25 12:24:17.305275+00 f t SUBTOTAL 42000.00 1 4241 \N +161538 2025-07-25 12:24:17.307341+00 2025-07-25 12:24:17.30735+00 f t DESCUENTO 0.00 2 4241 \N +161539 2025-07-25 12:24:17.309297+00 2025-07-25 12:24:17.309305+00 f t TOTAL 42000.00 3 4241 \N +161540 2025-07-25 12:24:17.31136+00 2025-07-25 12:24:17.31137+00 f t ADELANTO 9500.00 4 4241 \N +160829 2025-07-24 22:00:58.528798+00 2025-07-24 22:00:58.52881+00 f t SUBTOTAL 0.00 1 4222 \N +160830 2025-07-24 22:00:58.532154+00 2025-07-24 22:00:58.532162+00 f t DESCUENTO 0.00 2 4222 \N +160831 2025-07-24 22:00:58.535519+00 2025-07-24 22:00:58.535536+00 f t TOTAL 0.00 3 4222 \N +160832 2025-07-24 22:00:58.537817+00 2025-07-24 22:00:58.537829+00 f t ADELANTO 0.00 4 4222 \N +160837 2025-07-24 22:40:06.879653+00 2025-07-24 22:40:06.879663+00 f t SUBTOTAL 0.00 1 4223 \N +160838 2025-07-24 22:40:06.881133+00 2025-07-24 22:40:06.881139+00 f t DESCUENTO 0.00 2 4223 \N +160839 2025-07-24 22:40:06.882594+00 2025-07-24 22:40:06.8826+00 f t TOTAL 0.00 3 4223 \N +160840 2025-07-24 22:40:06.88363+00 2025-07-24 22:40:06.883636+00 f t ADELANTO 0.00 4 4223 \N +160845 2025-07-24 22:43:23.397865+00 2025-07-24 22:43:23.397874+00 f t SUBTOTAL 0.00 1 4224 \N +160846 2025-07-24 22:43:23.399637+00 2025-07-24 22:43:23.399645+00 f t DESCUENTO 0.00 2 4224 \N +160847 2025-07-24 22:43:23.401282+00 2025-07-24 22:43:23.40129+00 f t TOTAL 0.00 3 4224 \N +160848 2025-07-24 22:43:23.402609+00 2025-07-24 22:43:23.402617+00 f t ADELANTO 0.00 4 4224 \N +160853 2025-07-24 22:50:55.460763+00 2025-07-24 22:50:55.460778+00 f t SUBTOTAL 0.00 1 4225 \N +160854 2025-07-24 22:50:55.462622+00 2025-07-24 22:50:55.462633+00 f t DESCUENTO 0.00 2 4225 \N +160855 2025-07-24 22:50:55.464401+00 2025-07-24 22:50:55.464411+00 f t TOTAL 0.00 3 4225 \N +160856 2025-07-24 22:50:55.466587+00 2025-07-24 22:50:55.466599+00 f t ADELANTO 0.00 4 4225 \N +161989 2025-07-25 14:51:08.187401+00 2025-07-25 14:51:08.187412+00 f t SUBTOTAL 0.00 1 4249 \N +161990 2025-07-25 14:51:08.190285+00 2025-07-25 14:51:08.190299+00 f t DESCUENTO 0.00 2 4249 \N +161991 2025-07-25 14:51:08.19236+00 2025-07-25 14:51:08.192374+00 f t TOTAL 0.00 3 4249 \N +161992 2025-07-25 14:51:08.194535+00 2025-07-25 14:51:08.194552+00 f t ADELANTO 0.00 4 4249 \N +160881 2025-07-24 23:09:30.110378+00 2025-07-24 23:09:30.110389+00 f t SUBTOTAL 42000.00 1 4226 \N +160882 2025-07-24 23:09:30.1124+00 2025-07-24 23:09:30.11241+00 f t DESCUENTO 0.00 2 4226 \N +160883 2025-07-24 23:09:30.11406+00 2025-07-24 23:09:30.114069+00 f t TOTAL 42000.00 3 4226 \N +160884 2025-07-24 23:09:30.11543+00 2025-07-24 23:09:30.115439+00 f t ADELANTO 9500.00 4 4226 \N +162181 2025-07-25 15:22:38.855955+00 2025-07-25 15:22:38.855968+00 f t SUBTOTAL 0.00 1 4252 \N +162182 2025-07-25 15:22:38.858378+00 2025-07-25 15:22:38.85839+00 f t DESCUENTO 0.00 2 4252 \N +162183 2025-07-25 15:22:38.859981+00 2025-07-25 15:22:38.859993+00 f t TOTAL 0.00 3 4252 \N +162184 2025-07-25 15:22:38.861549+00 2025-07-25 15:22:38.861559+00 f t ADELANTO 0.00 4 4252 \N +162221 2025-07-25 15:38:25.813832+00 2025-07-25 15:38:25.813843+00 f t SUBTOTAL 0.00 1 4253 \N +162222 2025-07-25 15:38:25.816248+00 2025-07-25 15:38:25.816256+00 f t DESCUENTO 0.00 2 4253 \N +162223 2025-07-25 15:38:25.817702+00 2025-07-25 15:38:25.817712+00 f t TOTAL 0.00 3 4253 \N +162224 2025-07-25 15:38:25.818808+00 2025-07-25 15:38:25.818814+00 f t ADELANTO 0.00 4 4253 \N +160913 2025-07-24 23:31:13.671412+00 2025-07-24 23:31:13.671424+00 f t SUBTOTAL 50000.00 1 4227 \N +160914 2025-07-24 23:31:13.67378+00 2025-07-24 23:31:13.673792+00 f t DESCUENTO 0.00 2 4227 \N +160915 2025-07-24 23:31:13.675567+00 2025-07-24 23:31:13.675578+00 f t TOTAL 50000.00 3 4227 \N +160916 2025-07-24 23:31:13.677186+00 2025-07-24 23:31:13.677193+00 f t ADELANTO 10000.00 4 4227 \N +162529 2025-07-25 16:28:33.451412+00 2025-07-25 16:28:33.451421+00 f t SUBTOTAL 0.00 1 4258 \N +162530 2025-07-25 16:28:33.453222+00 2025-07-25 16:28:33.453229+00 f t DESCUENTO 0.00 2 4258 \N +162531 2025-07-25 16:28:33.454275+00 2025-07-25 16:28:33.45428+00 f t TOTAL 0.00 3 4258 \N +162532 2025-07-25 16:28:33.455511+00 2025-07-25 16:28:33.455516+00 f t ADELANTO 0.00 4 4258 \N +160957 2025-07-25 00:24:25.391582+00 2025-07-25 00:24:25.391594+00 f t SUBTOTAL 62000.00 1 4228 \N +160958 2025-07-25 00:24:25.39377+00 2025-07-25 00:24:25.393779+00 f t DESCUENTO 0.00 2 4228 \N +160959 2025-07-25 00:24:25.395265+00 2025-07-25 00:24:25.395271+00 f t TOTAL 62000.00 3 4228 \N +160960 2025-07-25 00:24:25.396883+00 2025-07-25 00:24:25.396892+00 f t ADELANTO 12000.00 4 4228 \N +161005 2025-07-25 00:29:51.400651+00 2025-07-25 00:29:51.400664+00 f t SUBTOTAL 62000.00 1 4229 \N +161006 2025-07-25 00:29:51.402932+00 2025-07-25 00:29:51.402943+00 f t DESCUENTO 0.00 2 4229 \N +161007 2025-07-25 00:29:51.404764+00 2025-07-25 00:29:51.404772+00 f t TOTAL 62000.00 3 4229 \N +161008 2025-07-25 00:29:51.406308+00 2025-07-25 00:29:51.406317+00 f t ADELANTO 12000.00 4 4229 \N +163081 2025-07-25 23:27:25.943174+00 2025-07-25 23:27:25.943185+00 f t SUBTOTAL 42000.00 1 4270 \N +163082 2025-07-25 23:27:25.945376+00 2025-07-25 23:27:25.945387+00 f t DESCUENTO 0.00 2 4270 \N +163083 2025-07-25 23:27:25.947094+00 2025-07-25 23:27:25.947104+00 f t TOTAL 42000.00 3 4270 \N +163084 2025-07-25 23:27:25.948718+00 2025-07-25 23:27:25.948728+00 f t ADELANTO 9500.00 4 4270 \N +161061 2025-07-25 01:30:45.542852+00 2025-07-25 01:30:45.542864+00 f t SUBTOTAL 49500.00 1 4230 \N +161062 2025-07-25 01:30:45.544916+00 2025-07-25 01:30:45.544928+00 f t DESCUENTO 0.00 2 4230 \N +161063 2025-07-25 01:30:45.546717+00 2025-07-25 01:30:45.546728+00 f t TOTAL 49500.00 3 4230 \N +161064 2025-07-25 01:30:45.549822+00 2025-07-25 01:30:45.549833+00 f t ADELANTO 11500.00 4 4230 \N +161069 2025-07-25 01:46:17.704169+00 2025-07-25 01:46:17.704177+00 f t SUBTOTAL 0.00 1 4231 \N +161070 2025-07-25 01:46:17.705527+00 2025-07-25 01:46:17.705533+00 f t DESCUENTO 0.00 2 4231 \N +161071 2025-07-25 01:46:17.706743+00 2025-07-25 01:46:17.706748+00 f t TOTAL 0.00 3 4231 \N +161072 2025-07-25 01:46:17.707954+00 2025-07-25 01:46:17.707959+00 f t ADELANTO 0.00 4 4231 \N +161077 2025-07-25 03:43:04.70951+00 2025-07-25 03:43:04.709519+00 f t SUBTOTAL 0.00 1 4232 \N +161078 2025-07-25 03:43:04.711042+00 2025-07-25 03:43:04.711049+00 f t DESCUENTO 0.00 2 4232 \N +161079 2025-07-25 03:43:04.712187+00 2025-07-25 03:43:04.712193+00 f t TOTAL 0.00 3 4232 \N +161080 2025-07-25 03:43:04.713264+00 2025-07-25 03:43:04.713269+00 f t ADELANTO 0.00 4 4232 \N +173079 2025-07-29 22:08:38.765268+00 2025-07-29 22:08:38.765277+00 f t TOTAL 0.00 3 4532 \N +173080 2025-07-29 22:08:38.766524+00 2025-07-29 22:08:38.76653+00 f t ADELANTO 0.00 4 4532 \N +181544 2025-08-02 17:28:23.045965+00 2025-08-02 17:28:23.045974+00 f t ADELANTO 27000.00 4 4765 \N +169113 2025-07-28 16:50:23.733549+00 2025-07-28 16:50:23.733561+00 f t SUBTOTAL 0.00 1 4428 \N +169114 2025-07-28 16:50:23.735201+00 2025-07-28 16:50:23.735211+00 f t DESCUENTO 0.00 2 4428 \N +169115 2025-07-28 16:50:23.736529+00 2025-07-28 16:50:23.736536+00 f t TOTAL 0.00 3 4428 \N +169116 2025-07-28 16:50:23.737454+00 2025-07-28 16:50:23.737459+00 f t ADELANTO 0.00 4 4428 \N +165273 2025-07-26 22:41:32.230319+00 2025-07-26 22:41:32.230327+00 f t SUBTOTAL 111000.00 1 4326 \N +165274 2025-07-26 22:41:32.232165+00 2025-07-26 22:41:32.232171+00 f t DESCUENTO 0.00 2 4326 \N +165275 2025-07-26 22:41:32.233188+00 2025-07-26 22:41:32.233194+00 f t TOTAL 111000.00 3 4326 \N +165276 2025-07-26 22:41:32.234081+00 2025-07-26 22:41:32.234088+00 f t ADELANTO 23500.00 4 4326 \N +169262 2025-07-28 17:24:39.145489+00 2025-07-28 17:24:39.145495+00 f t DESCUENTO 0.00 2 4433 \N +169263 2025-07-28 17:24:39.147068+00 2025-07-28 17:24:39.147074+00 f t TOTAL 0.00 3 4433 \N +169264 2025-07-28 17:24:39.148249+00 2025-07-28 17:24:39.148257+00 f t ADELANTO 0.00 4 4433 \N +161129 2025-07-25 04:03:13.292463+00 2025-07-25 04:03:13.292472+00 f t SUBTOTAL 27500.00 1 4233 \N +161130 2025-07-25 04:03:13.294228+00 2025-07-25 04:03:13.294235+00 f t DESCUENTO 0.00 2 4233 \N +161131 2025-07-25 04:03:13.295538+00 2025-07-25 04:03:13.295544+00 f t TOTAL 27500.00 3 4233 \N +161132 2025-07-25 04:03:13.296692+00 2025-07-25 04:03:13.296698+00 f t ADELANTO 27500.00 4 4233 \N +161137 2025-07-25 08:43:38.308568+00 2025-07-25 08:43:38.308581+00 f t SUBTOTAL 0.00 1 4234 \N +161138 2025-07-25 08:43:38.311373+00 2025-07-25 08:43:38.311385+00 f t DESCUENTO 0.00 2 4234 \N +161139 2025-07-25 08:43:38.313242+00 2025-07-25 08:43:38.313252+00 f t TOTAL 0.00 3 4234 \N +161140 2025-07-25 08:43:38.315065+00 2025-07-25 08:43:38.315075+00 f t ADELANTO 0.00 4 4234 \N +169757 2025-07-28 20:41:25.493028+00 2025-07-28 20:41:25.493036+00 f t SUBTOTAL 0.00 1 4446 \N +169758 2025-07-28 20:41:25.495196+00 2025-07-28 20:41:25.495204+00 f t DESCUENTO 0.00 2 4446 \N +169759 2025-07-28 20:41:25.496609+00 2025-07-28 20:41:25.496617+00 f t TOTAL 0.00 3 4446 \N +169760 2025-07-28 20:41:25.497946+00 2025-07-28 20:41:25.497955+00 f t ADELANTO 0.00 4 4446 \N +166021 2025-07-27 14:16:55.456629+00 2025-07-27 14:16:55.456639+00 f t SUBTOTAL 82700.00 1 4342 \N +166022 2025-07-27 14:16:55.458496+00 2025-07-27 14:16:55.458509+00 f t DESCUENTO 0.00 2 4342 \N +166023 2025-07-27 14:16:55.460008+00 2025-07-27 14:16:55.460016+00 f t TOTAL 82700.00 3 4342 \N +166024 2025-07-27 14:16:55.461767+00 2025-07-27 14:16:55.461777+00 f t ADELANTO 44700.00 4 4342 \N +166124 2025-07-27 14:54:33.005906+00 2025-07-27 14:54:33.005912+00 f t ADELANTO 0.00 4 4345 \N +166173 2025-07-27 15:15:37.252908+00 2025-07-27 15:15:37.252916+00 f t SUBTOTAL 0.00 1 4348 \N +166174 2025-07-27 15:15:37.254256+00 2025-07-27 15:15:37.254262+00 f t DESCUENTO 0.00 2 4348 \N +166175 2025-07-27 15:15:37.255356+00 2025-07-27 15:15:37.255364+00 f t TOTAL 0.00 3 4348 \N +166176 2025-07-27 15:15:37.256393+00 2025-07-27 15:15:37.256398+00 f t ADELANTO 0.00 4 4348 \N +162145 2025-07-25 15:17:03.786288+00 2025-07-25 15:17:03.786299+00 f t SUBTOTAL 49500.00 1 4251 \N +162146 2025-07-25 15:17:03.788574+00 2025-07-25 15:17:03.788584+00 f t DESCUENTO 0.00 2 4251 \N +162147 2025-07-25 15:17:03.790415+00 2025-07-25 15:17:03.790425+00 f t TOTAL 49500.00 3 4251 \N +162148 2025-07-25 15:17:03.7925+00 2025-07-25 15:17:03.79256+00 f t ADELANTO 11500.00 4 4251 \N +166741 2025-07-27 18:40:12.866012+00 2025-07-27 18:40:12.86602+00 f t SUBTOTAL 50000.00 1 4360 \N +166742 2025-07-27 18:40:12.867994+00 2025-07-27 18:40:12.868005+00 f t DESCUENTO 0.00 2 4360 \N +166743 2025-07-27 18:40:12.869502+00 2025-07-27 18:40:12.869509+00 f t TOTAL 50000.00 3 4360 \N +166744 2025-07-27 18:40:12.870911+00 2025-07-27 18:40:12.870917+00 f t ADELANTO 10000.00 4 4360 \N +166905 2025-07-27 20:44:15.590571+00 2025-07-27 20:44:15.59058+00 f t SUBTOTAL 50000.00 1 4365 \N +166906 2025-07-27 20:44:15.592608+00 2025-07-27 20:44:15.592616+00 f t DESCUENTO 0.00 2 4365 \N +166907 2025-07-27 20:44:15.594083+00 2025-07-27 20:44:15.594096+00 f t TOTAL 50000.00 3 4365 \N +166908 2025-07-27 20:44:15.595877+00 2025-07-27 20:44:15.595889+00 f t ADELANTO 10000.00 4 4365 \N +167001 2025-07-27 22:10:44.802002+00 2025-07-27 22:10:44.802012+00 f t SUBTOTAL 0.00 1 4371 \N +167002 2025-07-27 22:10:44.804233+00 2025-07-27 22:10:44.804242+00 f t DESCUENTO 0.00 2 4371 \N +167003 2025-07-27 22:10:44.805805+00 2025-07-27 22:10:44.805813+00 f t TOTAL 0.00 3 4371 \N +167004 2025-07-27 22:10:44.807194+00 2025-07-27 22:10:44.807202+00 f t ADELANTO 0.00 4 4371 \N +171061 2025-07-29 11:38:24.869663+00 2025-07-29 11:38:24.869677+00 f t SUBTOTAL 0.00 1 4487 \N +171062 2025-07-29 11:38:24.874894+00 2025-07-29 11:38:24.874906+00 f t DESCUENTO 0.00 2 4487 \N +171063 2025-07-29 11:38:24.877348+00 2025-07-29 11:38:24.877359+00 f t TOTAL 0.00 3 4487 \N +171064 2025-07-29 11:38:24.879512+00 2025-07-29 11:38:24.879522+00 f t ADELANTO 0.00 4 4487 \N +171117 2025-07-29 12:48:17.680668+00 2025-07-29 12:48:17.680679+00 f t SUBTOTAL 50000.00 1 4490 \N +171118 2025-07-29 12:48:17.687449+00 2025-07-29 12:48:17.687464+00 f t DESCUENTO 0.00 2 4490 \N +171119 2025-07-29 12:48:17.689796+00 2025-07-29 12:48:17.68981+00 f t TOTAL 50000.00 3 4490 \N +171120 2025-07-29 12:48:17.692015+00 2025-07-29 12:48:17.692027+00 f t ADELANTO 10000.00 4 4490 \N +162865 2025-07-25 19:38:22.309574+00 2025-07-25 19:38:22.309584+00 f t SUBTOTAL 0.00 1 4265 \N +162866 2025-07-25 19:38:22.31162+00 2025-07-25 19:38:22.311628+00 f t DESCUENTO 0.00 2 4265 \N +162867 2025-07-25 19:38:22.31292+00 2025-07-25 19:38:22.312926+00 f t TOTAL 0.00 3 4265 \N +162868 2025-07-25 19:38:22.314035+00 2025-07-25 19:38:22.314042+00 f t ADELANTO 0.00 4 4265 \N +162957 2025-07-25 21:31:32.055069+00 2025-07-25 21:31:32.055079+00 f t SUBTOTAL 72000.00 1 4267 \N +162958 2025-07-25 21:31:32.056875+00 2025-07-25 21:31:32.056882+00 f t DESCUENTO 0.00 2 4267 \N +162959 2025-07-25 21:31:32.058307+00 2025-07-25 21:31:32.058316+00 f t TOTAL 72000.00 3 4267 \N +162960 2025-07-25 21:31:32.059833+00 2025-07-25 21:31:32.05984+00 f t ADELANTO 19000.00 4 4267 \N +163241 2025-07-26 00:33:16.507932+00 2025-07-26 00:33:16.507941+00 f t SUBTOTAL 49700.00 1 4275 \N +163242 2025-07-26 00:33:16.509847+00 2025-07-26 00:33:16.509854+00 f t DESCUENTO 0.00 2 4275 \N +163243 2025-07-26 00:33:16.511401+00 2025-07-26 00:33:16.511409+00 f t TOTAL 49700.00 3 4275 \N +163244 2025-07-26 00:33:16.512749+00 2025-07-26 00:33:16.512755+00 f t ADELANTO 11700.00 4 4275 \N +167557 2025-07-28 01:32:27.931377+00 2025-07-28 01:32:27.931391+00 f t SUBTOTAL 0.00 1 4381 \N +167558 2025-07-28 01:32:27.933501+00 2025-07-28 01:32:27.933508+00 f t DESCUENTO 0.00 2 4381 \N +167559 2025-07-28 01:32:27.935008+00 2025-07-28 01:32:27.935015+00 f t TOTAL 0.00 3 4381 \N +167560 2025-07-28 01:32:27.936654+00 2025-07-28 01:32:27.936662+00 f t ADELANTO 0.00 4 4381 \N +167661 2025-07-28 02:31:42.381299+00 2025-07-28 02:31:42.381308+00 f t SUBTOTAL 0.00 1 4386 \N +167662 2025-07-28 02:31:42.38304+00 2025-07-28 02:31:42.383048+00 f t DESCUENTO 0.00 2 4386 \N +167663 2025-07-28 02:31:42.384769+00 2025-07-28 02:31:42.384776+00 f t TOTAL 0.00 3 4386 \N +167664 2025-07-28 02:31:42.386301+00 2025-07-28 02:31:42.386311+00 f t ADELANTO 0.00 4 4386 \N +204269 2025-08-12 12:08:13.57877+00 2025-08-12 12:08:13.578785+00 f t SUBTOTAL 49500.00 1 5331 \N +165145 2025-07-26 20:45:53.304463+00 2025-07-26 20:45:53.304475+00 f t SUBTOTAL 0.00 1 4321 \N +165146 2025-07-26 20:45:53.306585+00 2025-07-26 20:45:53.306594+00 f t DESCUENTO 0.00 2 4321 \N +165147 2025-07-26 20:45:53.308118+00 2025-07-26 20:45:53.308125+00 f t TOTAL 0.00 3 4321 \N +165148 2025-07-26 20:45:53.309334+00 2025-07-26 20:45:53.309339+00 f t ADELANTO 0.00 4 4321 \N +169117 2025-07-28 16:50:26.626652+00 2025-07-28 16:50:26.626662+00 f t SUBTOTAL 62000.00 1 4427 \N +169118 2025-07-28 16:50:26.628609+00 2025-07-28 16:50:26.628617+00 f t DESCUENTO 0.00 2 4427 \N +169119 2025-07-28 16:50:26.629775+00 2025-07-28 16:50:26.629781+00 f t TOTAL 62000.00 3 4427 \N +169120 2025-07-28 16:50:26.630705+00 2025-07-28 16:50:26.63071+00 f t ADELANTO 12000.00 4 4427 \N +165281 2025-07-26 23:00:24.694635+00 2025-07-26 23:00:24.694651+00 f t SUBTOTAL 0.00 1 4327 \N +165282 2025-07-26 23:00:24.697118+00 2025-07-26 23:00:24.697131+00 f t DESCUENTO 0.00 2 4327 \N +165283 2025-07-26 23:00:24.699596+00 2025-07-26 23:00:24.699611+00 f t TOTAL 0.00 3 4327 \N +163437 2025-07-26 02:26:55.79188+00 2025-07-26 02:26:55.791888+00 f t SUBTOTAL 50000.00 1 4279 \N +163438 2025-07-26 02:26:55.793716+00 2025-07-26 02:26:55.793724+00 f t DESCUENTO 0.00 2 4279 \N +163439 2025-07-26 02:26:55.795101+00 2025-07-26 02:26:55.795107+00 f t TOTAL 50000.00 3 4279 \N +163440 2025-07-26 02:26:55.796463+00 2025-07-26 02:26:55.79647+00 f t ADELANTO 10000.00 4 4279 \N +165284 2025-07-26 23:00:24.701949+00 2025-07-26 23:00:24.701963+00 f t ADELANTO 0.00 4 4327 \N +163457 2025-07-26 06:08:00.09693+00 2025-07-26 06:08:00.096942+00 f t SUBTOTAL 0.00 1 4280 \N +163458 2025-07-26 06:08:00.099021+00 2025-07-26 06:08:00.099028+00 f t DESCUENTO 0.00 2 4280 \N +163459 2025-07-26 06:08:00.100438+00 2025-07-26 06:08:00.100445+00 f t TOTAL 0.00 3 4280 \N +163460 2025-07-26 06:08:00.101851+00 2025-07-26 06:08:00.101858+00 f t ADELANTO 0.00 4 4280 \N +163465 2025-07-26 07:03:23.173191+00 2025-07-26 07:03:23.173204+00 f t SUBTOTAL 0.00 1 4281 \N +163466 2025-07-26 07:03:23.174938+00 2025-07-26 07:03:23.174948+00 f t DESCUENTO 0.00 2 4281 \N +163467 2025-07-26 07:03:23.177393+00 2025-07-26 07:03:23.177403+00 f t TOTAL 0.00 3 4281 \N +163468 2025-07-26 07:03:23.17922+00 2025-07-26 07:03:23.179229+00 f t ADELANTO 0.00 4 4281 \N +163517 2025-07-26 10:03:55.346504+00 2025-07-26 10:03:55.346512+00 f t SUBTOTAL 64500.00 1 4282 \N +163518 2025-07-26 10:03:55.34806+00 2025-07-26 10:03:55.348067+00 f t DESCUENTO 0.00 2 4282 \N +163519 2025-07-26 10:03:55.349149+00 2025-07-26 10:03:55.349155+00 f t TOTAL 64500.00 3 4282 \N +163520 2025-07-26 10:03:55.350053+00 2025-07-26 10:03:55.350059+00 f t ADELANTO 17000.00 4 4282 \N +163525 2025-07-26 11:48:26.641696+00 2025-07-26 11:48:26.641705+00 f t SUBTOTAL 0.00 1 4283 \N +163526 2025-07-26 11:48:26.644459+00 2025-07-26 11:48:26.644467+00 f t DESCUENTO 0.00 2 4283 \N +163527 2025-07-26 11:48:26.646248+00 2025-07-26 11:48:26.646259+00 f t TOTAL 0.00 3 4283 \N +163528 2025-07-26 11:48:26.647715+00 2025-07-26 11:48:26.647723+00 f t ADELANTO 0.00 4 4283 \N +166181 2025-07-27 15:28:48.490201+00 2025-07-27 15:28:48.49021+00 f t SUBTOTAL 0.00 1 4349 \N +166182 2025-07-27 15:28:48.491538+00 2025-07-27 15:28:48.491544+00 f t DESCUENTO 0.00 2 4349 \N +166183 2025-07-27 15:28:48.492739+00 2025-07-27 15:28:48.492744+00 f t TOTAL 0.00 3 4349 \N +166184 2025-07-27 15:28:48.49382+00 2025-07-27 15:28:48.493826+00 f t ADELANTO 0.00 4 4349 \N +163553 2025-07-26 11:50:16.216747+00 2025-07-26 11:50:16.216756+00 f t SUBTOTAL 0.00 1 4284 \N +163554 2025-07-26 11:50:16.218891+00 2025-07-26 11:50:16.2189+00 f t DESCUENTO 0.00 2 4284 \N +163555 2025-07-26 11:50:16.220392+00 2025-07-26 11:50:16.2204+00 f t TOTAL 0.00 3 4284 \N +163556 2025-07-26 11:50:16.221801+00 2025-07-26 11:50:16.221809+00 f t ADELANTO 0.00 4 4284 \N +166465 2025-07-27 17:00:07.943852+00 2025-07-27 17:00:07.943865+00 f t SUBTOTAL 42000.00 1 4353 \N +166466 2025-07-27 17:00:07.946819+00 2025-07-27 17:00:07.946832+00 f t DESCUENTO 0.00 2 4353 \N +166467 2025-07-27 17:00:07.95012+00 2025-07-27 17:00:07.950132+00 f t TOTAL 42000.00 3 4353 \N +166468 2025-07-27 17:00:07.953327+00 2025-07-27 17:00:07.953341+00 f t ADELANTO 9500.00 4 4353 \N +163569 2025-07-26 12:20:13.639705+00 2025-07-26 12:20:13.639714+00 f t SUBTOTAL 0.00 1 4285 \N +163570 2025-07-26 12:20:13.641685+00 2025-07-26 12:20:13.641693+00 f t DESCUENTO 0.00 2 4285 \N +163571 2025-07-26 12:20:13.642828+00 2025-07-26 12:20:13.642835+00 f t TOTAL 0.00 3 4285 \N +163572 2025-07-26 12:20:13.64411+00 2025-07-26 12:20:13.644118+00 f t ADELANTO 0.00 4 4285 \N +166585 2025-07-27 17:40:27.885405+00 2025-07-27 17:40:27.885418+00 f t SUBTOTAL 50000.00 1 4356 \N +166586 2025-07-27 17:40:27.887298+00 2025-07-27 17:40:27.887308+00 f t DESCUENTO 0.00 2 4356 \N +166587 2025-07-27 17:40:27.888659+00 2025-07-27 17:40:27.888666+00 f t TOTAL 50000.00 3 4356 \N +166588 2025-07-27 17:40:27.889856+00 2025-07-27 17:40:27.889863+00 f t ADELANTO 10000.00 4 4356 \N +166913 2025-07-27 20:48:33.842648+00 2025-07-27 20:48:33.842657+00 f t SUBTOTAL 0.00 1 4366 \N +166914 2025-07-27 20:48:33.844148+00 2025-07-27 20:48:33.844155+00 f t DESCUENTO 0.00 2 4366 \N +166915 2025-07-27 20:48:33.845498+00 2025-07-27 20:48:33.845505+00 f t TOTAL 0.00 3 4366 \N +166916 2025-07-27 20:48:33.846742+00 2025-07-27 20:48:33.846748+00 f t ADELANTO 0.00 4 4366 \N +166965 2025-07-27 21:38:54.583939+00 2025-07-27 21:38:54.583947+00 f t SUBTOTAL 50000.00 1 4370 \N +166966 2025-07-27 21:38:54.585589+00 2025-07-27 21:38:54.585596+00 f t DESCUENTO 0.00 2 4370 \N +166967 2025-07-27 21:38:54.586842+00 2025-07-27 21:38:54.586847+00 f t TOTAL 50000.00 3 4370 \N +166968 2025-07-27 21:38:54.587944+00 2025-07-27 21:38:54.587949+00 f t ADELANTO 10000.00 4 4370 \N +167113 2025-07-27 22:33:43.126744+00 2025-07-27 22:33:43.126754+00 f t SUBTOTAL 114200.00 1 4373 \N +167114 2025-07-27 22:33:43.128486+00 2025-07-27 22:33:43.128493+00 f t DESCUENTO 0.00 2 4373 \N +167115 2025-07-27 22:33:43.129707+00 2025-07-27 22:33:43.129712+00 f t TOTAL 114200.00 3 4373 \N +167116 2025-07-27 22:33:43.13068+00 2025-07-27 22:33:43.130686+00 f t ADELANTO 76200.00 4 4373 \N +167249 2025-07-27 23:47:23.746835+00 2025-07-27 23:47:23.746848+00 f t SUBTOTAL 0.00 1 4352 \N +167250 2025-07-27 23:47:23.749192+00 2025-07-27 23:47:23.7492+00 f t DESCUENTO 0.00 2 4352 \N +167251 2025-07-27 23:47:23.750578+00 2025-07-27 23:47:23.750587+00 f t TOTAL 0.00 3 4352 \N +167252 2025-07-27 23:47:23.752311+00 2025-07-27 23:47:23.752318+00 f t ADELANTO 0.00 4 4352 \N +163665 2025-07-26 12:26:33.72036+00 2025-07-26 12:26:33.720369+00 f t SUBTOTAL 0.00 1 4286 \N +163666 2025-07-26 12:26:33.722134+00 2025-07-26 12:26:33.72214+00 f t DESCUENTO 0.00 2 4286 \N +163667 2025-07-26 12:26:33.723287+00 2025-07-26 12:26:33.723292+00 f t TOTAL 0.00 3 4286 \N +163668 2025-07-26 12:26:33.724372+00 2025-07-26 12:26:33.724379+00 f t ADELANTO 0.00 4 4286 \N +163673 2025-07-26 12:38:31.516084+00 2025-07-26 12:38:31.516093+00 f t SUBTOTAL 0.00 1 4287 \N +163674 2025-07-26 12:38:31.517583+00 2025-07-26 12:38:31.517591+00 f t DESCUENTO 0.00 2 4287 \N +163675 2025-07-26 12:38:31.518589+00 2025-07-26 12:38:31.518594+00 f t TOTAL 0.00 3 4287 \N +163676 2025-07-26 12:38:31.519448+00 2025-07-26 12:38:31.519453+00 f t ADELANTO 0.00 4 4287 \N +167385 2025-07-28 00:01:01.090589+00 2025-07-28 00:01:01.090603+00 f t SUBTOTAL 0.00 1 4377 \N +167386 2025-07-28 00:01:01.093005+00 2025-07-28 00:01:01.093016+00 f t DESCUENTO 0.00 2 4377 \N +167387 2025-07-28 00:01:01.09463+00 2025-07-28 00:01:01.094641+00 f t TOTAL 0.00 3 4377 \N +167388 2025-07-28 00:01:01.097145+00 2025-07-28 00:01:01.097157+00 f t ADELANTO 0.00 4 4377 \N +177613 2025-07-31 22:58:36.81388+00 2025-07-31 22:58:36.81389+00 f t SUBTOTAL 0.00 1 4664 \N +177614 2025-07-31 22:58:36.815937+00 2025-07-31 22:58:36.815945+00 f t DESCUENTO 0.00 2 4664 \N +177615 2025-07-31 22:58:36.817143+00 2025-07-31 22:58:36.817149+00 f t TOTAL 0.00 3 4664 \N +177616 2025-07-31 22:58:36.818324+00 2025-07-31 22:58:36.818333+00 f t ADELANTO 0.00 4 4664 \N +163725 2025-07-26 12:45:07.203479+00 2025-07-26 12:45:07.203491+00 f t SUBTOTAL 50000.00 1 4288 \N +163726 2025-07-26 12:45:07.205783+00 2025-07-26 12:45:07.205796+00 f t DESCUENTO 0.00 2 4288 \N +163727 2025-07-26 12:45:07.207753+00 2025-07-26 12:45:07.207761+00 f t TOTAL 50000.00 3 4288 \N +163728 2025-07-26 12:45:07.209515+00 2025-07-26 12:45:07.209524+00 f t ADELANTO 10000.00 4 4288 \N +163733 2025-07-26 12:59:41.930954+00 2025-07-26 12:59:41.930963+00 f t SUBTOTAL 0.00 1 4289 \N +163734 2025-07-26 12:59:41.932267+00 2025-07-26 12:59:41.932278+00 f t DESCUENTO 0.00 2 4289 \N +163735 2025-07-26 12:59:41.933259+00 2025-07-26 12:59:41.933264+00 f t TOTAL 0.00 3 4289 \N +163736 2025-07-26 12:59:41.934143+00 2025-07-26 12:59:41.93415+00 f t ADELANTO 0.00 4 4289 \N +165289 2025-07-26 23:21:23.461392+00 2025-07-26 23:21:23.461404+00 f t SUBTOTAL 0.00 1 4328 \N +165290 2025-07-26 23:21:23.462923+00 2025-07-26 23:21:23.462932+00 f t DESCUENTO 0.00 2 4328 \N +165291 2025-07-26 23:21:23.464328+00 2025-07-26 23:21:23.464335+00 f t TOTAL 0.00 3 4328 \N +165292 2025-07-26 23:21:23.465545+00 2025-07-26 23:21:23.465552+00 f t ADELANTO 0.00 4 4328 \N +163741 2025-07-26 13:18:17.020146+00 2025-07-26 13:18:17.020155+00 f t SUBTOTAL 0.00 1 4290 \N +163742 2025-07-26 13:18:17.021594+00 2025-07-26 13:18:17.021601+00 f t DESCUENTO 0.00 2 4290 \N +163743 2025-07-26 13:18:17.022577+00 2025-07-26 13:18:17.022582+00 f t TOTAL 0.00 3 4290 \N +163744 2025-07-26 13:18:17.023797+00 2025-07-26 13:18:17.023804+00 f t ADELANTO 0.00 4 4290 \N +173361 2025-07-30 09:40:02.99232+00 2025-07-30 09:40:02.992335+00 f t SUBTOTAL 0.00 1 4541 \N +173362 2025-07-30 09:40:02.997853+00 2025-07-30 09:40:02.997866+00 f t DESCUENTO 0.00 2 4541 \N +173363 2025-07-30 09:40:03.029779+00 2025-07-30 09:40:03.029792+00 f t TOTAL 0.00 3 4541 \N +173364 2025-07-30 09:40:03.03411+00 2025-07-30 09:40:03.034124+00 f t ADELANTO 0.00 4 4541 \N +163773 2025-07-26 13:24:41.883829+00 2025-07-26 13:24:41.883838+00 f t SUBTOTAL 42000.00 1 4291 \N +163774 2025-07-26 13:24:41.885302+00 2025-07-26 13:24:41.885308+00 f t DESCUENTO 0.00 2 4291 \N +163775 2025-07-26 13:24:41.886224+00 2025-07-26 13:24:41.886229+00 f t TOTAL 42000.00 3 4291 \N +163776 2025-07-26 13:24:41.887031+00 2025-07-26 13:24:41.887035+00 f t ADELANTO 9500.00 4 4291 \N +169765 2025-07-28 20:51:56.596449+00 2025-07-28 20:51:56.596458+00 f t SUBTOTAL 0.00 1 4447 \N +169766 2025-07-28 20:51:56.597771+00 2025-07-28 20:51:56.597777+00 f t DESCUENTO 0.00 2 4447 \N +169767 2025-07-28 20:51:56.598904+00 2025-07-28 20:51:56.598909+00 f t TOTAL 0.00 3 4447 \N +169768 2025-07-28 20:51:56.599861+00 2025-07-28 20:51:56.599866+00 f t ADELANTO 0.00 4 4447 \N +169881 2025-07-28 21:53:54.033785+00 2025-07-28 21:53:54.033793+00 f t SUBTOTAL 62000.00 1 4452 \N +169882 2025-07-28 21:53:54.035587+00 2025-07-28 21:53:54.035593+00 f t DESCUENTO 0.00 2 4452 \N +169883 2025-07-28 21:53:54.036639+00 2025-07-28 21:53:54.036644+00 f t TOTAL 62000.00 3 4452 \N +169884 2025-07-28 21:53:54.037926+00 2025-07-28 21:53:54.037934+00 f t ADELANTO 12000.00 4 4452 \N +170329 2025-07-29 00:12:34.087084+00 2025-07-29 00:12:34.087097+00 f t SUBTOTAL 50000.00 1 4465 \N +170330 2025-07-29 00:12:34.089631+00 2025-07-29 00:12:34.089642+00 f t DESCUENTO 0.00 2 4465 \N +170331 2025-07-29 00:12:34.091296+00 2025-07-29 00:12:34.091308+00 f t TOTAL 50000.00 3 4465 \N +170332 2025-07-29 00:12:34.093075+00 2025-07-29 00:12:34.093085+00 f t ADELANTO 10000.00 4 4465 \N +166509 2025-07-27 17:04:08.136597+00 2025-07-27 17:04:08.136604+00 f t SUBTOTAL 42000.00 1 4354 \N +166510 2025-07-27 17:04:08.13834+00 2025-07-27 17:04:08.138349+00 f t DESCUENTO 0.00 2 4354 \N +166511 2025-07-27 17:04:08.139691+00 2025-07-27 17:04:08.139696+00 f t TOTAL 42000.00 3 4354 \N +166512 2025-07-27 17:04:08.14085+00 2025-07-27 17:04:08.140857+00 f t ADELANTO 9500.00 4 4354 \N +163853 2025-07-26 13:36:25.858165+00 2025-07-26 13:36:25.858175+00 f t SUBTOTAL 61700.00 1 4292 \N +163854 2025-07-26 13:36:25.860097+00 2025-07-26 13:36:25.860105+00 f t DESCUENTO 0.00 2 4292 \N +163855 2025-07-26 13:36:25.861652+00 2025-07-26 13:36:25.86166+00 f t TOTAL 61700.00 3 4292 \N +163856 2025-07-26 13:36:25.863025+00 2025-07-26 13:36:25.863032+00 f t ADELANTO 23700.00 4 4292 \N +166709 2025-07-27 18:35:10.502401+00 2025-07-27 18:35:10.502415+00 f t SUBTOTAL 50000.00 1 4359 \N +166710 2025-07-27 18:35:10.50458+00 2025-07-27 18:35:10.504591+00 f t DESCUENTO 0.00 2 4359 \N +166711 2025-07-27 18:35:10.506546+00 2025-07-27 18:35:10.506554+00 f t TOTAL 50000.00 3 4359 \N +166712 2025-07-27 18:35:10.508648+00 2025-07-27 18:35:10.508655+00 f t ADELANTO 10000.00 4 4359 \N +170897 2025-07-29 03:04:17.622369+00 2025-07-29 03:04:17.622379+00 f t SUBTOTAL 0.00 1 4478 \N +170898 2025-07-29 03:04:17.624516+00 2025-07-29 03:04:17.624525+00 f t DESCUENTO 0.00 2 4478 \N +170899 2025-07-29 03:04:17.625924+00 2025-07-29 03:04:17.625932+00 f t TOTAL 0.00 3 4478 \N +170900 2025-07-29 03:04:17.627421+00 2025-07-29 03:04:17.627428+00 f t ADELANTO 0.00 4 4478 \N +171069 2025-07-29 11:38:56.239095+00 2025-07-29 11:38:56.239106+00 f t SUBTOTAL 0.00 1 4488 \N +166921 2025-07-27 20:56:10.530164+00 2025-07-27 20:56:10.530174+00 f t SUBTOTAL 0.00 1 4367 \N +166922 2025-07-27 20:56:10.531579+00 2025-07-27 20:56:10.531586+00 f t DESCUENTO 0.00 2 4367 \N +166923 2025-07-27 20:56:10.533152+00 2025-07-27 20:56:10.533161+00 f t TOTAL 0.00 3 4367 \N +166924 2025-07-27 20:56:10.535168+00 2025-07-27 20:56:10.535176+00 f t ADELANTO 0.00 4 4367 \N +171070 2025-07-29 11:38:56.240732+00 2025-07-29 11:38:56.240742+00 f t DESCUENTO 0.00 2 4488 \N +171071 2025-07-29 11:38:56.242447+00 2025-07-29 11:38:56.242458+00 f t TOTAL 0.00 3 4488 \N +171072 2025-07-29 11:38:56.243879+00 2025-07-29 11:38:56.243886+00 f t ADELANTO 0.00 4 4488 \N +163909 2025-07-26 13:38:27.343327+00 2025-07-26 13:38:27.343337+00 f t SUBTOTAL 82700.00 1 4293 \N +163910 2025-07-26 13:38:27.345498+00 2025-07-26 13:38:27.345506+00 f t DESCUENTO 0.00 2 4293 \N +163911 2025-07-26 13:38:27.347369+00 2025-07-26 13:38:27.347379+00 f t TOTAL 82700.00 3 4293 \N +163912 2025-07-26 13:38:27.349293+00 2025-07-26 13:38:27.349303+00 f t ADELANTO 44700.00 4 4293 \N +167121 2025-07-27 22:52:54.183333+00 2025-07-27 22:52:54.183342+00 f t SUBTOTAL 0.00 1 4374 \N +167122 2025-07-27 22:52:54.184826+00 2025-07-27 22:52:54.184832+00 f t DESCUENTO 0.00 2 4374 \N +167123 2025-07-27 22:52:54.186259+00 2025-07-27 22:52:54.186265+00 f t TOTAL 0.00 3 4374 \N +167124 2025-07-27 22:52:54.187653+00 2025-07-27 22:52:54.187659+00 f t ADELANTO 0.00 4 4374 \N +171409 2025-07-29 14:30:48.692835+00 2025-07-29 14:30:48.692848+00 f t SUBTOTAL 64500.00 1 4496 \N +171410 2025-07-29 14:30:48.6951+00 2025-07-29 14:30:48.695112+00 f t DESCUENTO 0.00 2 4496 \N +171411 2025-07-29 14:30:48.696882+00 2025-07-29 14:30:48.696893+00 f t TOTAL 64500.00 3 4496 \N +171412 2025-07-29 14:30:48.698471+00 2025-07-29 14:30:48.698483+00 f t ADELANTO 17000.00 4 4496 \N +167565 2025-07-28 01:34:14.791705+00 2025-07-28 01:34:14.791717+00 f t SUBTOTAL 0.00 1 4382 \N +167566 2025-07-28 01:34:14.796714+00 2025-07-28 01:34:14.796723+00 f t DESCUENTO 0.00 2 4382 \N +167567 2025-07-28 01:34:14.799455+00 2025-07-28 01:34:14.799466+00 f t TOTAL 0.00 3 4382 \N +167568 2025-07-28 01:34:14.801213+00 2025-07-28 01:34:14.801223+00 f t ADELANTO 0.00 4 4382 \N +204270 2025-08-12 12:08:13.582972+00 2025-08-12 12:08:13.582988+00 f t DESCUENTO 0.00 2 5331 \N +204271 2025-08-12 12:08:13.58859+00 2025-08-12 12:08:13.588604+00 f t TOTAL 49500.00 3 5331 \N +204272 2025-08-12 12:08:13.591323+00 2025-08-12 12:08:13.591337+00 f t ADELANTO 11500.00 4 5331 \N +185937 2025-08-04 20:29:31.703842+00 2025-08-04 20:29:31.703857+00 f t SUBTOTAL 0.00 1 4882 \N +169205 2025-07-28 17:17:36.518361+00 2025-07-28 17:17:36.51837+00 f t SUBTOTAL 0.00 1 4431 \N +169206 2025-07-28 17:17:36.520409+00 2025-07-28 17:17:36.520416+00 f t DESCUENTO 0.00 2 4431 \N +169207 2025-07-28 17:17:36.521851+00 2025-07-28 17:17:36.52186+00 f t TOTAL 0.00 3 4431 \N +169208 2025-07-28 17:17:36.523332+00 2025-07-28 17:17:36.523339+00 f t ADELANTO 0.00 4 4431 \N +164013 2025-07-26 13:54:27.693929+00 2025-07-26 13:54:27.69394+00 f t SUBTOTAL 42000.00 1 4294 \N +164014 2025-07-26 13:54:27.695869+00 2025-07-26 13:54:27.695877+00 f t DESCUENTO 0.00 2 4294 \N +164015 2025-07-26 13:54:27.697177+00 2025-07-26 13:54:27.697184+00 f t TOTAL 42000.00 3 4294 \N +164016 2025-07-26 13:54:27.69852+00 2025-07-26 13:54:27.698526+00 f t ADELANTO 9500.00 4 4294 \N +165361 2025-07-27 02:20:23.946042+00 2025-07-27 02:20:23.94605+00 f t SUBTOTAL 82700.00 1 4330 \N +165362 2025-07-27 02:20:23.948714+00 2025-07-27 02:20:23.948726+00 f t DESCUENTO 0.00 2 4330 \N +165363 2025-07-27 02:20:23.951186+00 2025-07-27 02:20:23.951197+00 f t TOTAL 82700.00 3 4330 \N +165364 2025-07-27 02:20:23.953181+00 2025-07-27 02:20:23.953194+00 f t ADELANTO 44700.00 4 4330 \N +169441 2025-07-28 17:56:47.270336+00 2025-07-28 17:56:47.270344+00 f t SUBTOTAL 82200.00 1 4437 \N +169442 2025-07-28 17:56:47.271991+00 2025-07-28 17:56:47.271997+00 f t DESCUENTO 0.00 2 4437 \N +169443 2025-07-28 17:56:47.273145+00 2025-07-28 17:56:47.27315+00 f t TOTAL 82200.00 3 4437 \N +169444 2025-07-28 17:56:47.274134+00 2025-07-28 17:56:47.274139+00 f t ADELANTO 44200.00 4 4437 \N +164045 2025-07-26 14:33:11.762771+00 2025-07-26 14:33:11.76278+00 f t SUBTOTAL 49500.00 1 4295 \N +164046 2025-07-26 14:33:11.764605+00 2025-07-26 14:33:11.764612+00 f t DESCUENTO 0.00 2 4295 \N +164047 2025-07-26 14:33:11.765947+00 2025-07-26 14:33:11.765952+00 f t TOTAL 49500.00 3 4295 \N +164048 2025-07-26 14:33:11.767178+00 2025-07-26 14:33:11.767184+00 f t ADELANTO 11500.00 4 4295 \N +169653 2025-07-28 19:17:23.094305+00 2025-07-28 19:17:23.094312+00 f t SUBTOTAL 50000.00 1 4442 \N +169654 2025-07-28 19:17:23.096328+00 2025-07-28 19:17:23.09634+00 f t DESCUENTO 0.00 2 4442 \N +169655 2025-07-28 19:17:23.097748+00 2025-07-28 19:17:23.097755+00 f t TOTAL 50000.00 3 4442 \N +169656 2025-07-28 19:17:23.099114+00 2025-07-28 19:17:23.099124+00 f t ADELANTO 10000.00 4 4442 \N +169709 2025-07-28 19:35:28.473951+00 2025-07-28 19:35:28.47396+00 f t SUBTOTAL 64500.00 1 4444 \N +169710 2025-07-28 19:35:28.47573+00 2025-07-28 19:35:28.475737+00 f t DESCUENTO 0.00 2 4444 \N +169711 2025-07-28 19:35:28.477031+00 2025-07-28 19:35:28.477036+00 f t TOTAL 64500.00 3 4444 \N +169712 2025-07-28 19:35:28.478097+00 2025-07-28 19:35:28.478103+00 f t ADELANTO 17000.00 4 4444 \N +164073 2025-07-26 14:41:19.440659+00 2025-07-26 14:41:19.440668+00 f t SUBTOTAL 0.00 1 4297 \N +164074 2025-07-26 14:41:19.442066+00 2025-07-26 14:41:19.442073+00 f t DESCUENTO 0.00 2 4297 \N +164075 2025-07-26 14:41:19.443689+00 2025-07-26 14:41:19.443699+00 f t TOTAL 0.00 3 4297 \N +164076 2025-07-26 14:41:19.445245+00 2025-07-26 14:41:19.445255+00 f t ADELANTO 0.00 4 4297 \N +164081 2025-07-26 14:41:46.664239+00 2025-07-26 14:41:46.664248+00 f t SUBTOTAL 42000.00 1 4296 \N +164082 2025-07-26 14:41:46.665741+00 2025-07-26 14:41:46.665749+00 f t DESCUENTO 0.00 2 4296 \N +164083 2025-07-26 14:41:46.666888+00 2025-07-26 14:41:46.666894+00 f t TOTAL 42000.00 3 4296 \N +164084 2025-07-26 14:41:46.667904+00 2025-07-26 14:41:46.667909+00 f t ADELANTO 9500.00 4 4296 \N +169941 2025-07-28 22:07:26.704785+00 2025-07-28 22:07:26.704796+00 f t SUBTOTAL 27500.00 1 4454 \N +164089 2025-07-26 14:49:55.809048+00 2025-07-26 14:49:55.80906+00 f t SUBTOTAL 0.00 1 4298 \N +164090 2025-07-26 14:49:55.810749+00 2025-07-26 14:49:55.810759+00 f t DESCUENTO 0.00 2 4298 \N +164091 2025-07-26 14:49:55.812308+00 2025-07-26 14:49:55.812317+00 f t TOTAL 0.00 3 4298 \N +164092 2025-07-26 14:49:55.813451+00 2025-07-26 14:49:55.813459+00 f t ADELANTO 0.00 4 4298 \N +169942 2025-07-28 22:07:26.706708+00 2025-07-28 22:07:26.706716+00 f t DESCUENTO 0.00 2 4454 \N +169943 2025-07-28 22:07:26.708174+00 2025-07-28 22:07:26.708184+00 f t TOTAL 27500.00 3 4454 \N +169944 2025-07-28 22:07:26.709347+00 2025-07-28 22:07:26.709354+00 f t ADELANTO 27500.00 4 4454 \N +164117 2025-07-26 14:57:47.41208+00 2025-07-26 14:57:47.412088+00 f t SUBTOTAL 50000.00 1 4299 \N +164118 2025-07-26 14:57:47.4135+00 2025-07-26 14:57:47.413505+00 f t DESCUENTO 0.00 2 4299 \N +164119 2025-07-26 14:57:47.414611+00 2025-07-26 14:57:47.414616+00 f t TOTAL 50000.00 3 4299 \N +164120 2025-07-26 14:57:47.415675+00 2025-07-26 14:57:47.41568+00 f t ADELANTO 10000.00 4 4299 \N +170549 2025-07-29 02:12:59.20624+00 2025-07-29 02:12:59.206254+00 f t SUBTOTAL 0.00 1 4474 \N +170550 2025-07-29 02:12:59.208203+00 2025-07-29 02:12:59.208214+00 f t DESCUENTO 0.00 2 4474 \N +170551 2025-07-29 02:12:59.210148+00 2025-07-29 02:12:59.210159+00 f t TOTAL 0.00 3 4474 \N +170552 2025-07-29 02:12:59.211679+00 2025-07-29 02:12:59.211688+00 f t ADELANTO 0.00 4 4474 \N +164185 2025-07-26 15:02:32.77323+00 2025-07-26 15:02:32.773241+00 f t SUBTOTAL 50000.00 1 4300 \N +164186 2025-07-26 15:02:32.775391+00 2025-07-26 15:02:32.775401+00 f t DESCUENTO 0.00 2 4300 \N +164187 2025-07-26 15:02:32.777278+00 2025-07-26 15:02:32.777288+00 f t TOTAL 50000.00 3 4300 \N +164188 2025-07-26 15:02:32.778918+00 2025-07-26 15:02:32.778925+00 f t ADELANTO 10000.00 4 4300 \N +166929 2025-07-27 21:30:58.150198+00 2025-07-27 21:30:58.15021+00 f t SUBTOTAL 0.00 1 4368 \N +166930 2025-07-27 21:30:58.15218+00 2025-07-27 21:30:58.152191+00 f t DESCUENTO 0.00 2 4368 \N +166931 2025-07-27 21:30:58.15409+00 2025-07-27 21:30:58.154099+00 f t TOTAL 0.00 3 4368 \N +166932 2025-07-27 21:30:58.155623+00 2025-07-27 21:30:58.155633+00 f t ADELANTO 0.00 4 4368 \N +164201 2025-07-26 15:05:25.836984+00 2025-07-26 15:05:25.836995+00 f t SUBTOTAL 0.00 1 4302 \N +164202 2025-07-26 15:05:25.838733+00 2025-07-26 15:05:25.838744+00 f t DESCUENTO 0.00 2 4302 \N +164203 2025-07-26 15:05:25.841843+00 2025-07-26 15:05:25.841856+00 f t TOTAL 0.00 3 4302 \N +164204 2025-07-26 15:05:25.843471+00 2025-07-26 15:05:25.843478+00 f t ADELANTO 0.00 4 4302 \N +167293 2025-07-27 23:57:56.935712+00 2025-07-27 23:57:56.935724+00 f t SUBTOTAL 0.00 1 4376 \N +167294 2025-07-27 23:57:56.938069+00 2025-07-27 23:57:56.93808+00 f t DESCUENTO 0.00 2 4376 \N +167295 2025-07-27 23:57:56.939503+00 2025-07-27 23:57:56.939513+00 f t TOTAL 0.00 3 4376 \N +167296 2025-07-27 23:57:56.941097+00 2025-07-27 23:57:56.941106+00 f t ADELANTO 0.00 4 4376 \N +164249 2025-07-26 15:06:49.598422+00 2025-07-26 15:06:49.598434+00 f t SUBTOTAL 50000.00 1 4301 \N +164250 2025-07-26 15:06:49.600298+00 2025-07-26 15:06:49.600305+00 f t DESCUENTO 0.00 2 4301 \N +164251 2025-07-26 15:06:49.601501+00 2025-07-26 15:06:49.601506+00 f t TOTAL 50000.00 3 4301 \N +164252 2025-07-26 15:06:49.602794+00 2025-07-26 15:06:49.602803+00 f t ADELANTO 10000.00 4 4301 \N +167573 2025-07-28 01:51:30.586257+00 2025-07-28 01:51:30.586267+00 f t SUBTOTAL 0.00 1 4383 \N +167574 2025-07-28 01:51:30.588026+00 2025-07-28 01:51:30.588033+00 f t DESCUENTO 0.00 2 4383 \N +167575 2025-07-28 01:51:30.589666+00 2025-07-28 01:51:30.589674+00 f t TOTAL 0.00 3 4383 \N +167576 2025-07-28 01:51:30.591317+00 2025-07-28 01:51:30.591325+00 f t ADELANTO 0.00 4 4383 \N +165369 2025-07-27 03:08:44.246665+00 2025-07-27 03:08:44.246675+00 f t SUBTOTAL 0.00 1 4332 \N +165370 2025-07-27 03:08:44.248569+00 2025-07-27 03:08:44.24858+00 f t DESCUENTO 0.00 2 4332 \N +165371 2025-07-27 03:08:44.250483+00 2025-07-27 03:08:44.250491+00 f t TOTAL 0.00 3 4332 \N +165372 2025-07-27 03:08:44.252186+00 2025-07-27 03:08:44.252193+00 f t ADELANTO 0.00 4 4332 \N +173417 2025-07-30 09:48:06.202637+00 2025-07-30 09:48:06.202645+00 f t SUBTOTAL 99000.00 1 4542 \N +173418 2025-07-30 09:48:06.204773+00 2025-07-30 09:48:06.204786+00 f t DESCUENTO 0.00 2 4542 \N +173419 2025-07-30 09:48:06.20682+00 2025-07-30 09:48:06.206832+00 f t TOTAL 99000.00 3 4542 \N +173420 2025-07-30 09:48:06.208923+00 2025-07-30 09:48:06.208934+00 f t ADELANTO 23000.00 4 4542 \N +165597 2025-07-27 06:03:07.885192+00 2025-07-27 06:03:07.885202+00 f t SUBTOTAL 70000.00 1 4336 \N +165598 2025-07-27 06:03:07.888281+00 2025-07-27 06:03:07.888289+00 f t DESCUENTO 0.00 2 4336 \N +165599 2025-07-27 06:03:07.890381+00 2025-07-27 06:03:07.89039+00 f t TOTAL 70000.00 3 4336 \N +165600 2025-07-27 06:03:07.89277+00 2025-07-27 06:03:07.89278+00 f t ADELANTO 15000.00 4 4336 \N +169601 2025-07-28 18:22:52.724251+00 2025-07-28 18:22:52.724259+00 f t SUBTOTAL 94200.00 1 4440 \N +169602 2025-07-28 18:22:52.725876+00 2025-07-28 18:22:52.725882+00 f t DESCUENTO 0.00 2 4440 \N +169603 2025-07-28 18:22:52.72701+00 2025-07-28 18:22:52.727016+00 f t TOTAL 94200.00 3 4440 \N +169604 2025-07-28 18:22:52.728201+00 2025-07-28 18:22:52.728206+00 f t ADELANTO 56200.00 4 4440 \N +169717 2025-07-28 19:58:18.052479+00 2025-07-28 19:58:18.052489+00 f t SUBTOTAL 0.00 1 4445 \N +169718 2025-07-28 19:58:18.053842+00 2025-07-28 19:58:18.053849+00 f t DESCUENTO 0.00 2 4445 \N +169719 2025-07-28 19:58:18.054955+00 2025-07-28 19:58:18.05496+00 f t TOTAL 0.00 3 4445 \N +169720 2025-07-28 19:58:18.055937+00 2025-07-28 19:58:18.055942+00 f t ADELANTO 0.00 4 4445 \N +173861 2025-07-30 12:33:49.414715+00 2025-07-30 12:33:49.414723+00 f t SUBTOTAL 79000.00 1 4554 \N +173862 2025-07-30 12:33:49.4166+00 2025-07-30 12:33:49.416608+00 f t DESCUENTO 0.00 2 4554 \N +164373 2025-07-26 15:39:28.849001+00 2025-07-26 15:39:28.84901+00 f t SUBTOTAL 50000.00 1 4303 \N +164374 2025-07-26 15:39:28.851147+00 2025-07-26 15:39:28.851155+00 f t DESCUENTO 0.00 2 4303 \N +164375 2025-07-26 15:39:28.852589+00 2025-07-26 15:39:28.852596+00 f t TOTAL 50000.00 3 4303 \N +164376 2025-07-26 15:39:28.853757+00 2025-07-26 15:39:28.853763+00 f t ADELANTO 10000.00 4 4303 \N +173863 2025-07-30 12:33:49.418287+00 2025-07-30 12:33:49.418293+00 f t TOTAL 79000.00 3 4554 \N +173864 2025-07-30 12:33:49.419637+00 2025-07-30 12:33:49.419645+00 f t ADELANTO 17500.00 4 4554 \N +164381 2025-07-26 15:53:03.251485+00 2025-07-26 15:53:03.251498+00 f t SUBTOTAL 0.00 1 4304 \N +164382 2025-07-26 15:53:03.253457+00 2025-07-26 15:53:03.253467+00 f t DESCUENTO 0.00 2 4304 \N +164383 2025-07-26 15:53:03.25525+00 2025-07-26 15:53:03.255261+00 f t TOTAL 0.00 3 4304 \N +164384 2025-07-26 15:53:03.256908+00 2025-07-26 15:53:03.256919+00 f t ADELANTO 0.00 4 4304 \N +169949 2025-07-28 22:28:47.822163+00 2025-07-28 22:28:47.822172+00 f t SUBTOTAL 0.00 1 4455 \N +169950 2025-07-28 22:28:47.823687+00 2025-07-28 22:28:47.823694+00 f t DESCUENTO 0.00 2 4455 \N +169951 2025-07-28 22:28:47.825388+00 2025-07-28 22:28:47.825396+00 f t TOTAL 0.00 3 4455 \N +169952 2025-07-28 22:28:47.82681+00 2025-07-28 22:28:47.826821+00 f t ADELANTO 0.00 4 4455 \N +173913 2025-07-30 13:19:00.050318+00 2025-07-30 13:19:00.050328+00 f t SUBTOTAL 0.00 1 4558 \N +173914 2025-07-30 13:19:00.052064+00 2025-07-30 13:19:00.052072+00 f t DESCUENTO 0.00 2 4558 \N +173915 2025-07-30 13:19:00.053201+00 2025-07-30 13:19:00.053206+00 f t TOTAL 0.00 3 4558 \N +173916 2025-07-30 13:19:00.054415+00 2025-07-30 13:19:00.054421+00 f t ADELANTO 0.00 4 4558 \N +164409 2025-07-26 16:10:21.829413+00 2025-07-26 16:10:21.829424+00 f t SUBTOTAL 0.00 1 4306 \N +164410 2025-07-26 16:10:21.830951+00 2025-07-26 16:10:21.830962+00 f t DESCUENTO 0.00 2 4306 \N +164411 2025-07-26 16:10:21.832345+00 2025-07-26 16:10:21.832352+00 f t TOTAL 0.00 3 4306 \N +164412 2025-07-26 16:10:21.833423+00 2025-07-26 16:10:21.833429+00 f t ADELANTO 0.00 4 4306 \N +166557 2025-07-27 17:29:18.607043+00 2025-07-27 17:29:18.607052+00 f t SUBTOTAL 114200.00 1 4355 \N +166558 2025-07-27 17:29:18.608891+00 2025-07-27 17:29:18.608899+00 f t DESCUENTO 0.00 2 4355 \N +166559 2025-07-27 17:29:18.610187+00 2025-07-27 17:29:18.610193+00 f t TOTAL 114200.00 3 4355 \N +166560 2025-07-27 17:29:18.611582+00 2025-07-27 17:29:18.611589+00 f t ADELANTO 76200.00 4 4355 \N +170337 2025-07-29 00:12:50.403252+00 2025-07-29 00:12:50.403261+00 f t SUBTOTAL 0.00 1 4468 \N +170338 2025-07-29 00:12:50.405027+00 2025-07-29 00:12:50.405033+00 f t DESCUENTO 0.00 2 4468 \N +170339 2025-07-29 00:12:50.406135+00 2025-07-29 00:12:50.406141+00 f t TOTAL 0.00 3 4468 \N +170340 2025-07-29 00:12:50.407215+00 2025-07-29 00:12:50.407225+00 f t ADELANTO 0.00 4 4468 \N +174157 2025-07-30 15:15:34.650552+00 2025-07-30 15:15:34.650561+00 f t SUBTOTAL 49500.00 1 4563 \N +174158 2025-07-30 15:15:34.652686+00 2025-07-30 15:15:34.652694+00 f t DESCUENTO 0.00 2 4563 \N +174159 2025-07-30 15:15:34.654387+00 2025-07-30 15:15:34.654394+00 f t TOTAL 49500.00 3 4563 \N +174160 2025-07-30 15:15:34.655724+00 2025-07-30 15:15:34.65573+00 f t ADELANTO 11500.00 4 4563 \N +166841 2025-07-27 20:27:06.94317+00 2025-07-27 20:27:06.943179+00 f t SUBTOTAL 114200.00 1 4363 \N +166842 2025-07-27 20:27:06.945134+00 2025-07-27 20:27:06.945141+00 f t DESCUENTO 0.00 2 4363 \N +166843 2025-07-27 20:27:06.94698+00 2025-07-27 20:27:06.947031+00 f t TOTAL 114200.00 3 4363 \N +166844 2025-07-27 20:27:06.94827+00 2025-07-27 20:27:06.948275+00 f t ADELANTO 76200.00 4 4363 \N +174349 2025-07-30 16:39:51.055866+00 2025-07-30 16:39:51.055879+00 f t SUBTOTAL 0.00 1 4570 \N +174350 2025-07-30 16:39:51.058284+00 2025-07-30 16:39:51.058297+00 f t DESCUENTO 0.00 2 4570 \N +174351 2025-07-30 16:39:51.060146+00 2025-07-30 16:39:51.060157+00 f t TOTAL 0.00 3 4570 \N +174352 2025-07-30 16:39:51.061504+00 2025-07-30 16:39:51.061513+00 f t ADELANTO 0.00 4 4570 \N +166937 2025-07-27 21:31:31.294933+00 2025-07-27 21:31:31.294943+00 f t SUBTOTAL 0.00 1 4369 \N +166938 2025-07-27 21:31:31.296725+00 2025-07-27 21:31:31.296736+00 f t DESCUENTO 0.00 2 4369 \N +166939 2025-07-27 21:31:31.298374+00 2025-07-27 21:31:31.298382+00 f t TOTAL 0.00 3 4369 \N +166940 2025-07-27 21:31:31.299806+00 2025-07-27 21:31:31.299816+00 f t ADELANTO 0.00 4 4369 \N +174409 2025-07-30 16:52:08.977238+00 2025-07-30 16:52:08.977247+00 f t SUBTOTAL 0.00 1 4571 \N +174410 2025-07-30 16:52:08.979203+00 2025-07-30 16:52:08.979211+00 f t DESCUENTO 0.00 2 4571 \N +174411 2025-07-30 16:52:08.980494+00 2025-07-30 16:52:08.9805+00 f t TOTAL 0.00 3 4571 \N +174412 2025-07-30 16:52:08.981712+00 2025-07-30 16:52:08.981718+00 f t ADELANTO 0.00 4 4571 \N +167625 2025-07-28 02:17:41.623786+00 2025-07-28 02:17:41.623856+00 f t SUBTOTAL 0.00 1 4384 \N +167626 2025-07-28 02:17:41.625925+00 2025-07-28 02:17:41.625935+00 f t DESCUENTO 0.00 2 4384 \N +167627 2025-07-28 02:17:41.627357+00 2025-07-28 02:17:41.627363+00 f t TOTAL 0.00 3 4384 \N +167628 2025-07-28 02:17:41.628774+00 2025-07-28 02:17:41.628779+00 f t ADELANTO 0.00 4 4384 \N +164573 2025-07-26 16:16:11.191319+00 2025-07-26 16:16:11.191328+00 f t SUBTOTAL 72000.00 1 4305 \N +164574 2025-07-26 16:16:11.193169+00 2025-07-26 16:16:11.193179+00 f t DESCUENTO 0.00 2 4305 \N +164575 2025-07-26 16:16:11.194695+00 2025-07-26 16:16:11.194702+00 f t TOTAL 72000.00 3 4305 \N +164576 2025-07-26 16:16:11.195922+00 2025-07-26 16:16:11.195928+00 f t ADELANTO 19000.00 4 4305 \N +165081 2025-07-26 20:15:58.475609+00 2025-07-26 20:15:58.475617+00 f t SUBTOTAL 113700.00 1 4319 \N +165082 2025-07-26 20:15:58.477399+00 2025-07-26 20:15:58.477407+00 f t DESCUENTO 0.00 2 4319 \N +165083 2025-07-26 20:15:58.478827+00 2025-07-26 20:15:58.478835+00 f t TOTAL 113700.00 3 4319 \N +165084 2025-07-26 20:15:58.480201+00 2025-07-26 20:15:58.480207+00 f t ADELANTO 75700.00 4 4319 \N +165233 2025-07-26 22:26:42.296784+00 2025-07-26 22:26:42.296796+00 f t SUBTOTAL 49500.00 1 4325 \N +165234 2025-07-26 22:26:42.298927+00 2025-07-26 22:26:42.298937+00 f t DESCUENTO 0.00 2 4325 \N +165235 2025-07-26 22:26:42.30033+00 2025-07-26 22:26:42.300339+00 f t TOTAL 49500.00 3 4325 \N +165236 2025-07-26 22:26:42.301553+00 2025-07-26 22:26:42.301562+00 f t ADELANTO 11500.00 4 4325 \N +173173 2025-07-30 00:37:43.901021+00 2025-07-30 00:37:43.901031+00 f t SUBTOTAL 0.00 1 4535 \N +173174 2025-07-30 00:37:43.903818+00 2025-07-30 00:37:43.90383+00 f t DESCUENTO 0.00 2 4535 \N +173175 2025-07-30 00:37:43.905834+00 2025-07-30 00:37:43.905845+00 f t TOTAL 0.00 3 4535 \N +173176 2025-07-30 00:37:43.907622+00 2025-07-30 00:37:43.907632+00 f t ADELANTO 0.00 4 4535 \N +164613 2025-07-26 16:22:57.893348+00 2025-07-26 16:22:57.893358+00 f t SUBTOTAL 50000.00 1 4307 \N +164614 2025-07-26 16:22:57.894924+00 2025-07-26 16:22:57.894931+00 f t DESCUENTO 0.00 2 4307 \N +164615 2025-07-26 16:22:57.896148+00 2025-07-26 16:22:57.896154+00 f t TOTAL 50000.00 3 4307 \N +164616 2025-07-26 16:22:57.897253+00 2025-07-26 16:22:57.897259+00 f t ADELANTO 10000.00 4 4307 \N +165605 2025-07-27 09:45:02.837058+00 2025-07-27 09:45:02.837073+00 f t SUBTOTAL 0.00 1 4337 \N +165606 2025-07-27 09:45:02.839678+00 2025-07-27 09:45:02.839691+00 f t DESCUENTO 0.00 2 4337 \N +165607 2025-07-27 09:45:02.84965+00 2025-07-27 09:45:02.849667+00 f t TOTAL 0.00 3 4337 \N +165608 2025-07-27 09:45:02.852255+00 2025-07-27 09:45:02.85227+00 f t ADELANTO 0.00 4 4337 \N +165661 2025-07-27 09:52:02.784367+00 2025-07-27 09:52:02.784377+00 f t SUBTOTAL 0.00 1 4338 \N +165662 2025-07-27 09:52:02.786913+00 2025-07-27 09:52:02.786923+00 f t DESCUENTO 0.00 2 4338 \N +165663 2025-07-27 09:52:02.788753+00 2025-07-27 09:52:02.788762+00 f t TOTAL 0.00 3 4338 \N +165664 2025-07-27 09:52:02.790671+00 2025-07-27 09:52:02.790683+00 f t ADELANTO 0.00 4 4338 \N +169609 2025-07-28 18:56:07.280568+00 2025-07-28 18:56:07.280579+00 f t SUBTOTAL 0.00 1 4441 \N +169610 2025-07-28 18:56:07.282258+00 2025-07-28 18:56:07.282266+00 f t DESCUENTO 0.00 2 4441 \N +169611 2025-07-28 18:56:07.283605+00 2025-07-28 18:56:07.283611+00 f t TOTAL 0.00 3 4441 \N +169612 2025-07-28 18:56:07.285303+00 2025-07-28 18:56:07.28531+00 f t ADELANTO 0.00 4 4441 \N +169957 2025-07-28 23:04:26.839915+00 2025-07-28 23:04:26.839925+00 f t SUBTOTAL 0.00 1 4456 \N +169958 2025-07-28 23:04:26.841519+00 2025-07-28 23:04:26.841532+00 f t DESCUENTO 0.00 2 4456 \N +169959 2025-07-28 23:04:26.842871+00 2025-07-28 23:04:26.84288+00 f t TOTAL 0.00 3 4456 \N +164677 2025-07-26 16:41:46.337368+00 2025-07-26 16:41:46.337377+00 f t SUBTOTAL 49500.00 1 4308 \N +164678 2025-07-26 16:41:46.339204+00 2025-07-26 16:41:46.339212+00 f t DESCUENTO 0.00 2 4308 \N +164679 2025-07-26 16:41:46.340424+00 2025-07-26 16:41:46.340431+00 f t TOTAL 49500.00 3 4308 \N +164680 2025-07-26 16:41:46.341595+00 2025-07-26 16:41:46.341602+00 f t ADELANTO 11500.00 4 4308 \N +169960 2025-07-28 23:04:26.844359+00 2025-07-28 23:04:26.844365+00 f t ADELANTO 0.00 4 4456 \N +170061 2025-07-28 23:12:55.880219+00 2025-07-28 23:12:55.88023+00 f t SUBTOTAL 50000.00 1 4458 \N +170062 2025-07-28 23:12:55.882002+00 2025-07-28 23:12:55.882011+00 f t DESCUENTO 0.00 2 4458 \N +170063 2025-07-28 23:12:55.883181+00 2025-07-28 23:12:55.883189+00 f t TOTAL 50000.00 3 4458 \N +170064 2025-07-28 23:12:55.884384+00 2025-07-28 23:12:55.884389+00 f t ADELANTO 10000.00 4 4458 \N +170117 2025-07-28 23:18:56.339063+00 2025-07-28 23:18:56.339071+00 f t SUBTOTAL 50000.00 1 4460 \N +170118 2025-07-28 23:18:56.341043+00 2025-07-28 23:18:56.341051+00 f t DESCUENTO 0.00 2 4460 \N +170119 2025-07-28 23:18:56.342403+00 2025-07-28 23:18:56.342411+00 f t TOTAL 50000.00 3 4460 \N +170120 2025-07-28 23:18:56.343846+00 2025-07-28 23:18:56.343854+00 f t ADELANTO 10000.00 4 4460 \N +170241 2025-07-29 00:11:07.286798+00 2025-07-29 00:11:07.286809+00 f t SUBTOTAL 0.00 1 4467 \N +170242 2025-07-29 00:11:07.289078+00 2025-07-29 00:11:07.289086+00 f t DESCUENTO 0.00 2 4467 \N +170243 2025-07-29 00:11:07.290678+00 2025-07-29 00:11:07.290689+00 f t TOTAL 0.00 3 4467 \N +170244 2025-07-29 00:11:07.292152+00 2025-07-29 00:11:07.292159+00 f t ADELANTO 0.00 4 4467 \N +170345 2025-07-29 00:41:02.705632+00 2025-07-29 00:41:02.705646+00 f t SUBTOTAL 0.00 1 4469 \N +170346 2025-07-29 00:41:02.709246+00 2025-07-29 00:41:02.70926+00 f t DESCUENTO 0.00 2 4469 \N +170347 2025-07-29 00:41:02.712386+00 2025-07-29 00:41:02.712395+00 f t TOTAL 0.00 3 4469 \N +170348 2025-07-29 00:41:02.714449+00 2025-07-29 00:41:02.714459+00 f t ADELANTO 0.00 4 4469 \N +164741 2025-07-26 16:45:24.42231+00 2025-07-26 16:45:24.422319+00 f t SUBTOTAL 49700.00 1 4309 \N +164742 2025-07-26 16:45:24.424203+00 2025-07-26 16:45:24.424211+00 f t DESCUENTO 0.00 2 4309 \N +164743 2025-07-26 16:45:24.426062+00 2025-07-26 16:45:24.426071+00 f t TOTAL 49700.00 3 4309 \N +164744 2025-07-26 16:45:24.427245+00 2025-07-26 16:45:24.427251+00 f t ADELANTO 11700.00 4 4309 \N +166849 2025-07-27 20:29:08.09315+00 2025-07-27 20:29:08.09316+00 f t SUBTOTAL 0.00 1 4364 \N +166850 2025-07-27 20:29:08.095266+00 2025-07-27 20:29:08.095278+00 f t DESCUENTO 0.00 2 4364 \N +166851 2025-07-27 20:29:08.097087+00 2025-07-27 20:29:08.097098+00 f t TOTAL 0.00 3 4364 \N +166852 2025-07-27 20:29:08.098573+00 2025-07-27 20:29:08.098583+00 f t ADELANTO 0.00 4 4364 \N +164797 2025-07-26 16:47:32.733071+00 2025-07-26 16:47:32.73308+00 f t SUBTOTAL 50000.00 1 4311 \N +164798 2025-07-26 16:47:32.734657+00 2025-07-26 16:47:32.734665+00 f t DESCUENTO 0.00 2 4311 \N +164799 2025-07-26 16:47:32.735883+00 2025-07-26 16:47:32.735889+00 f t TOTAL 50000.00 3 4311 \N +164800 2025-07-26 16:47:32.736974+00 2025-07-26 16:47:32.736979+00 f t ADELANTO 10000.00 4 4311 \N +171345 2025-07-29 14:27:15.695627+00 2025-07-29 14:27:15.695641+00 f t SUBTOTAL 0.00 1 4494 \N +171346 2025-07-29 14:27:15.698183+00 2025-07-29 14:27:15.698197+00 f t DESCUENTO 0.00 2 4494 \N +171347 2025-07-29 14:27:15.699924+00 2025-07-29 14:27:15.699936+00 f t TOTAL 0.00 3 4494 \N +171348 2025-07-29 14:27:15.701815+00 2025-07-29 14:27:15.701826+00 f t ADELANTO 0.00 4 4494 \N +164821 2025-07-26 16:48:12.785408+00 2025-07-26 16:48:12.785416+00 f t SUBTOTAL 95000.00 1 4310 \N +164822 2025-07-26 16:48:12.787558+00 2025-07-26 16:48:12.787566+00 f t DESCUENTO 0.00 2 4310 \N +164823 2025-07-26 16:48:12.789558+00 2025-07-26 16:48:12.789564+00 f t TOTAL 95000.00 3 4310 \N +164824 2025-07-26 16:48:12.793297+00 2025-07-26 16:48:12.793304+00 f t ADELANTO 10000.00 4 4310 \N +167505 2025-07-28 00:48:19.424313+00 2025-07-28 00:48:19.424322+00 f t SUBTOTAL 50000.00 1 4379 \N +167506 2025-07-28 00:48:19.426024+00 2025-07-28 00:48:19.426031+00 f t DESCUENTO 0.00 2 4379 \N +167507 2025-07-28 00:48:19.427334+00 2025-07-28 00:48:19.427341+00 f t TOTAL 50000.00 3 4379 \N +167508 2025-07-28 00:48:19.428847+00 2025-07-28 00:48:19.428854+00 f t ADELANTO 10000.00 4 4379 \N +164861 2025-07-26 18:06:56.620594+00 2025-07-26 18:06:56.620603+00 f t SUBTOTAL 87000.00 1 4312 \N +164862 2025-07-26 18:06:56.622589+00 2025-07-26 18:06:56.622597+00 f t DESCUENTO 0.00 2 4312 \N +164863 2025-07-26 18:06:56.62393+00 2025-07-26 18:06:56.623936+00 f t TOTAL 87000.00 3 4312 \N +164864 2025-07-26 18:06:56.625036+00 2025-07-26 18:06:56.625042+00 f t ADELANTO 24500.00 4 4312 \N +185938 2025-08-04 20:29:31.707187+00 2025-08-04 20:29:31.7072+00 f t DESCUENTO 0.00 2 4882 \N +165089 2025-07-26 20:25:55.704429+00 2025-07-26 20:25:55.704439+00 f t SUBTOTAL 0.00 1 4320 \N +165090 2025-07-26 20:25:55.705904+00 2025-07-26 20:25:55.70591+00 f t DESCUENTO 0.00 2 4320 \N +165091 2025-07-26 20:25:55.707216+00 2025-07-26 20:25:55.707224+00 f t TOTAL 0.00 3 4320 \N +165092 2025-07-26 20:25:55.708437+00 2025-07-26 20:25:55.708445+00 f t ADELANTO 0.00 4 4320 \N +165309 2025-07-27 00:19:29.877586+00 2025-07-27 00:19:29.877597+00 f t SUBTOTAL 0.00 1 4329 \N +165310 2025-07-27 00:19:29.879743+00 2025-07-27 00:19:29.879758+00 f t DESCUENTO 0.00 2 4329 \N +165311 2025-07-27 00:19:29.881677+00 2025-07-27 00:19:29.881685+00 f t TOTAL 0.00 3 4329 \N +165312 2025-07-27 00:19:29.882819+00 2025-07-27 00:19:29.882825+00 f t ADELANTO 0.00 4 4329 \N +164909 2025-07-26 18:18:05.244092+00 2025-07-26 18:18:05.244102+00 f t SUBTOTAL 112000.00 1 4313 \N +164910 2025-07-26 18:18:05.246336+00 2025-07-26 18:18:05.246345+00 f t DESCUENTO 0.00 2 4313 \N +164911 2025-07-26 18:18:05.248715+00 2025-07-26 18:18:05.248729+00 f t TOTAL 112000.00 3 4313 \N +164912 2025-07-26 18:18:05.250971+00 2025-07-26 18:18:05.250981+00 f t ADELANTO 22000.00 4 4313 \N +165549 2025-07-27 04:48:37.895455+00 2025-07-27 04:48:37.895464+00 f t SUBTOTAL 0.00 1 4335 \N +165550 2025-07-27 04:48:37.897671+00 2025-07-27 04:48:37.897683+00 f t DESCUENTO 0.00 2 4335 \N +165551 2025-07-27 04:48:37.899562+00 2025-07-27 04:48:37.899569+00 f t TOTAL 0.00 3 4335 \N +165552 2025-07-27 04:48:37.901013+00 2025-07-27 04:48:37.901023+00 f t ADELANTO 0.00 4 4335 \N +169557 2025-07-28 18:12:09.930226+00 2025-07-28 18:12:09.930235+00 f t SUBTOTAL 61700.00 1 4439 \N +169558 2025-07-28 18:12:09.932119+00 2025-07-28 18:12:09.93213+00 f t DESCUENTO 0.00 2 4439 \N +169559 2025-07-28 18:12:09.933723+00 2025-07-28 18:12:09.933733+00 f t TOTAL 61700.00 3 4439 \N +169560 2025-07-28 18:12:09.935226+00 2025-07-28 18:12:09.935233+00 f t ADELANTO 23700.00 4 4439 \N +165669 2025-07-27 12:37:51.827383+00 2025-07-27 12:37:51.827393+00 f t SUBTOTAL 0.00 1 4339 \N +165670 2025-07-27 12:37:51.828686+00 2025-07-27 12:37:51.828696+00 f t DESCUENTO 0.00 2 4339 \N +165671 2025-07-27 12:37:51.830029+00 2025-07-27 12:37:51.830035+00 f t TOTAL 0.00 3 4339 \N +165672 2025-07-27 12:37:51.831233+00 2025-07-27 12:37:51.831239+00 f t ADELANTO 0.00 4 4339 \N +165725 2025-07-27 13:07:09.376652+00 2025-07-27 13:07:09.376663+00 f t SUBTOTAL 42000.00 1 4340 \N +165726 2025-07-27 13:07:09.379184+00 2025-07-27 13:07:09.379195+00 f t DESCUENTO 0.00 2 4340 \N +165727 2025-07-27 13:07:09.381059+00 2025-07-27 13:07:09.381068+00 f t TOTAL 42000.00 3 4340 \N +165728 2025-07-27 13:07:09.382653+00 2025-07-27 13:07:09.382663+00 f t ADELANTO 9500.00 4 4340 \N +164937 2025-07-26 18:43:01.080646+00 2025-07-26 18:43:01.080657+00 f t SUBTOTAL 42000.00 1 4314 \N +164938 2025-07-26 18:43:01.082824+00 2025-07-26 18:43:01.082835+00 f t DESCUENTO 0.00 2 4314 \N +164939 2025-07-26 18:43:01.084579+00 2025-07-26 18:43:01.08459+00 f t TOTAL 42000.00 3 4314 \N +164940 2025-07-26 18:43:01.08647+00 2025-07-26 18:43:01.086482+00 f t ADELANTO 9500.00 4 4314 \N +169785 2025-07-28 21:10:40.520865+00 2025-07-28 21:10:40.520876+00 f t SUBTOTAL 0.00 1 4448 \N +169786 2025-07-28 21:10:40.523023+00 2025-07-28 21:10:40.523031+00 f t DESCUENTO 0.00 2 4448 \N +169787 2025-07-28 21:10:40.524302+00 2025-07-28 21:10:40.524308+00 f t TOTAL 0.00 3 4448 \N +169788 2025-07-28 21:10:40.525523+00 2025-07-28 21:10:40.52553+00 f t ADELANTO 0.00 4 4448 \N +169845 2025-07-28 21:36:59.835471+00 2025-07-28 21:36:59.83548+00 f t SUBTOTAL 64500.00 1 4451 \N +169846 2025-07-28 21:36:59.837449+00 2025-07-28 21:36:59.837456+00 f t DESCUENTO 0.00 2 4451 \N +169847 2025-07-28 21:36:59.838754+00 2025-07-28 21:36:59.838759+00 f t TOTAL 64500.00 3 4451 \N +169848 2025-07-28 21:36:59.83989+00 2025-07-28 21:36:59.839894+00 f t ADELANTO 17000.00 4 4451 \N +170069 2025-07-28 23:17:10.766188+00 2025-07-28 23:17:10.766196+00 f t SUBTOTAL 0.00 1 4459 \N +170070 2025-07-28 23:17:10.768218+00 2025-07-28 23:17:10.768226+00 f t DESCUENTO 0.00 2 4459 \N +170071 2025-07-28 23:17:10.76979+00 2025-07-28 23:17:10.769797+00 f t TOTAL 0.00 3 4459 \N +170072 2025-07-28 23:17:10.771091+00 2025-07-28 23:17:10.771099+00 f t ADELANTO 0.00 4 4459 \N +170125 2025-07-28 23:59:34.992576+00 2025-07-28 23:59:34.992589+00 f t SUBTOTAL 0.00 1 4461 \N +170126 2025-07-28 23:59:34.994417+00 2025-07-28 23:59:34.994429+00 f t DESCUENTO 0.00 2 4461 \N +170127 2025-07-28 23:59:34.996169+00 2025-07-28 23:59:34.996178+00 f t TOTAL 0.00 3 4461 \N +170128 2025-07-28 23:59:34.997632+00 2025-07-28 23:59:34.99764+00 f t ADELANTO 0.00 4 4461 \N +170177 2025-07-29 00:04:46.709259+00 2025-07-29 00:04:46.709271+00 f t SUBTOTAL 50000.00 1 4462 \N +170178 2025-07-29 00:04:46.711073+00 2025-07-29 00:04:46.711083+00 f t DESCUENTO 0.00 2 4462 \N +170179 2025-07-29 00:04:46.712482+00 2025-07-29 00:04:46.712491+00 f t TOTAL 50000.00 3 4462 \N +170180 2025-07-29 00:04:46.713819+00 2025-07-29 00:04:46.713825+00 f t ADELANTO 10000.00 4 4462 \N +166649 2025-07-27 18:18:50.366117+00 2025-07-27 18:18:50.366126+00 f t SUBTOTAL 0.00 1 4358 \N +166650 2025-07-27 18:18:50.368283+00 2025-07-27 18:18:50.36829+00 f t DESCUENTO 0.00 2 4358 \N +166651 2025-07-27 18:18:50.369765+00 2025-07-27 18:18:50.369771+00 f t TOTAL 0.00 3 4358 \N +166652 2025-07-27 18:18:50.371297+00 2025-07-27 18:18:50.371304+00 f t ADELANTO 0.00 4 4358 \N +170505 2025-07-29 01:52:11.17665+00 2025-07-29 01:52:11.176663+00 f t SUBTOTAL 0.00 1 4472 \N +170506 2025-07-29 01:52:11.178587+00 2025-07-29 01:52:11.178594+00 f t DESCUENTO 0.00 2 4472 \N +170507 2025-07-29 01:52:11.17977+00 2025-07-29 01:52:11.179778+00 f t TOTAL 0.00 3 4472 \N +170508 2025-07-29 01:52:11.180763+00 2025-07-29 01:52:11.180769+00 f t ADELANTO 0.00 4 4472 \N +170609 2025-07-29 02:13:42.92877+00 2025-07-29 02:13:42.928781+00 f t SUBTOTAL 27500.00 1 4471 \N +170610 2025-07-29 02:13:42.93089+00 2025-07-29 02:13:42.930912+00 f t DESCUENTO 0.00 2 4471 \N +170611 2025-07-29 02:13:42.932383+00 2025-07-29 02:13:42.932391+00 f t TOTAL 27500.00 3 4471 \N +170612 2025-07-29 02:13:42.933832+00 2025-07-29 02:13:42.93384+00 f t ADELANTO 27500.00 4 4471 \N +167237 2025-07-27 23:38:47.981807+00 2025-07-27 23:38:47.981815+00 f t SUBTOTAL 0.00 1 4375 \N +167238 2025-07-27 23:38:47.984374+00 2025-07-27 23:38:47.984384+00 f t DESCUENTO 0.00 2 4375 \N +167239 2025-07-27 23:38:47.985862+00 2025-07-27 23:38:47.985868+00 f t TOTAL 0.00 3 4375 \N +167240 2025-07-27 23:38:47.986999+00 2025-07-27 23:38:47.987005+00 f t ADELANTO 0.00 4 4375 \N +171265 2025-07-29 14:16:37.637486+00 2025-07-29 14:16:37.637496+00 f t SUBTOTAL 0.00 1 4493 \N +171266 2025-07-29 14:16:37.639841+00 2025-07-29 14:16:37.639853+00 f t DESCUENTO 0.00 2 4493 \N +171267 2025-07-29 14:16:37.64167+00 2025-07-29 14:16:37.641678+00 f t TOTAL 0.00 3 4493 \N +171268 2025-07-29 14:16:37.643163+00 2025-07-29 14:16:37.643172+00 f t ADELANTO 0.00 4 4493 \N +167513 2025-07-28 01:17:46.10581+00 2025-07-28 01:17:46.10582+00 f t SUBTOTAL 0.00 1 4380 \N +167514 2025-07-28 01:17:46.107711+00 2025-07-28 01:17:46.107722+00 f t DESCUENTO 0.00 2 4380 \N +167515 2025-07-28 01:17:46.109399+00 2025-07-28 01:17:46.109406+00 f t TOTAL 0.00 3 4380 \N +167516 2025-07-28 01:17:46.110873+00 2025-07-28 01:17:46.110882+00 f t ADELANTO 0.00 4 4380 \N +167653 2025-07-28 02:31:00.034496+00 2025-07-28 02:31:00.034508+00 f t SUBTOTAL 88000.00 1 4385 \N +167654 2025-07-28 02:31:00.036513+00 2025-07-28 02:31:00.036524+00 f t DESCUENTO 0.00 2 4385 \N +167655 2025-07-28 02:31:00.038211+00 2025-07-28 02:31:00.03822+00 f t TOTAL 88000.00 3 4385 \N +167656 2025-07-28 02:31:00.040128+00 2025-07-28 02:31:00.040136+00 f t ADELANTO 19000.00 4 4385 \N +169053 2025-07-28 16:43:34.133266+00 2025-07-28 16:43:34.133275+00 f t SUBTOTAL 0.00 1 4426 \N +169054 2025-07-28 16:43:34.135462+00 2025-07-28 16:43:34.13547+00 f t DESCUENTO 0.00 2 4426 \N +169055 2025-07-28 16:43:34.136692+00 2025-07-28 16:43:34.136698+00 f t TOTAL 0.00 3 4426 \N +169056 2025-07-28 16:43:34.138129+00 2025-07-28 16:43:34.138163+00 f t ADELANTO 0.00 4 4426 \N +169145 2025-07-28 16:55:29.029576+00 2025-07-28 16:55:29.029587+00 f t SUBTOTAL 42000.00 1 4429 \N +169146 2025-07-28 16:55:29.031436+00 2025-07-28 16:55:29.031446+00 f t DESCUENTO 0.00 2 4429 \N +169147 2025-07-28 16:55:29.03277+00 2025-07-28 16:55:29.032778+00 f t TOTAL 42000.00 3 4429 \N +167725 2025-07-28 02:35:09.793223+00 2025-07-28 02:35:09.793235+00 f t SUBTOTAL 50000.00 1 4388 \N +167726 2025-07-28 02:35:09.795261+00 2025-07-28 02:35:09.795272+00 f t DESCUENTO 0.00 2 4388 \N +167727 2025-07-28 02:35:09.796862+00 2025-07-28 02:35:09.796871+00 f t TOTAL 50000.00 3 4388 \N +167728 2025-07-28 02:35:09.798458+00 2025-07-28 02:35:09.798469+00 f t ADELANTO 10000.00 4 4388 \N +169148 2025-07-28 16:55:29.034007+00 2025-07-28 16:55:29.034015+00 f t ADELANTO 9500.00 4 4429 \N +167733 2025-07-28 02:35:12.303705+00 2025-07-28 02:35:12.303713+00 f t SUBTOTAL 49500.00 1 4387 \N +167734 2025-07-28 02:35:12.305518+00 2025-07-28 02:35:12.305526+00 f t DESCUENTO 0.00 2 4387 \N +167735 2025-07-28 02:35:12.306892+00 2025-07-28 02:35:12.306901+00 f t TOTAL 49500.00 3 4387 \N +167736 2025-07-28 02:35:12.308296+00 2025-07-28 02:35:12.308304+00 f t ADELANTO 11500.00 4 4387 \N +173245 2025-07-30 01:05:37.192726+00 2025-07-30 01:05:37.192739+00 f t SUBTOTAL 0.00 1 4537 \N +173246 2025-07-30 01:05:37.195257+00 2025-07-30 01:05:37.195269+00 f t DESCUENTO 0.00 2 4537 \N +173247 2025-07-30 01:05:37.196992+00 2025-07-30 01:05:37.197002+00 f t TOTAL 0.00 3 4537 \N +173248 2025-07-30 01:05:37.198561+00 2025-07-30 01:05:37.19857+00 f t ADELANTO 0.00 4 4537 \N +177549 2025-07-31 22:54:53.520372+00 2025-07-31 22:54:53.520382+00 f t SUBTOTAL 0.00 1 4663 \N +177550 2025-07-31 22:54:53.522186+00 2025-07-31 22:54:53.522192+00 f t DESCUENTO 0.00 2 4663 \N +177551 2025-07-31 22:54:53.523329+00 2025-07-31 22:54:53.523335+00 f t TOTAL 0.00 3 4663 \N +177552 2025-07-31 22:54:53.52442+00 2025-07-31 22:54:53.524426+00 f t ADELANTO 0.00 4 4663 \N +167753 2025-07-28 02:41:42.278158+00 2025-07-28 02:41:42.278167+00 f t SUBTOTAL 0.00 1 4389 \N +167754 2025-07-28 02:41:42.280144+00 2025-07-28 02:41:42.280154+00 f t DESCUENTO 0.00 2 4389 \N +167755 2025-07-28 02:41:42.281637+00 2025-07-28 02:41:42.281645+00 f t TOTAL 0.00 3 4389 \N +167756 2025-07-28 02:41:42.28304+00 2025-07-28 02:41:42.283049+00 f t ADELANTO 0.00 4 4389 \N +177621 2025-07-31 22:58:41.454193+00 2025-07-31 22:58:41.454203+00 f t SUBTOTAL 0.00 1 4666 \N +167761 2025-07-28 02:47:04.71416+00 2025-07-28 02:47:04.714173+00 f t SUBTOTAL 0.00 1 4390 \N +167762 2025-07-28 02:47:04.715977+00 2025-07-28 02:47:04.715986+00 f t DESCUENTO 0.00 2 4390 \N +167763 2025-07-28 02:47:04.71774+00 2025-07-28 02:47:04.717748+00 f t TOTAL 0.00 3 4390 \N +167764 2025-07-28 02:47:04.719228+00 2025-07-28 02:47:04.719236+00 f t ADELANTO 0.00 4 4390 \N +173425 2025-07-30 09:55:46.932648+00 2025-07-30 09:55:46.932661+00 f t SUBTOTAL 0.00 1 4543 \N +173426 2025-07-30 09:55:46.934633+00 2025-07-30 09:55:46.934641+00 f t DESCUENTO 0.00 2 4543 \N +173427 2025-07-30 09:55:46.936422+00 2025-07-30 09:55:46.936431+00 f t TOTAL 0.00 3 4543 \N +173428 2025-07-30 09:55:46.937953+00 2025-07-30 09:55:46.937964+00 f t ADELANTO 0.00 4 4543 \N +167777 2025-07-28 02:50:46.858547+00 2025-07-28 02:50:46.858557+00 f t SUBTOTAL 0.00 1 4391 \N +167778 2025-07-28 02:50:46.860428+00 2025-07-28 02:50:46.860435+00 f t DESCUENTO 0.00 2 4391 \N +167779 2025-07-28 02:50:46.86178+00 2025-07-28 02:50:46.861787+00 f t TOTAL 0.00 3 4391 \N +167780 2025-07-28 02:50:46.863249+00 2025-07-28 02:50:46.863256+00 f t ADELANTO 0.00 4 4391 \N +167785 2025-07-28 02:59:31.351405+00 2025-07-28 02:59:31.351413+00 f t SUBTOTAL 0.00 1 4392 \N +167786 2025-07-28 02:59:31.353149+00 2025-07-28 02:59:31.353158+00 f t DESCUENTO 0.00 2 4392 \N +167787 2025-07-28 02:59:31.354563+00 2025-07-28 02:59:31.354571+00 f t TOTAL 0.00 3 4392 \N +167788 2025-07-28 02:59:31.355795+00 2025-07-28 02:59:31.355801+00 f t ADELANTO 0.00 4 4392 \N +167793 2025-07-28 03:38:32.945285+00 2025-07-28 03:38:32.945297+00 f t SUBTOTAL 0.00 1 4393 \N +167794 2025-07-28 03:38:32.946863+00 2025-07-28 03:38:32.946869+00 f t DESCUENTO 0.00 2 4393 \N +167795 2025-07-28 03:38:32.948333+00 2025-07-28 03:38:32.94834+00 f t TOTAL 0.00 3 4393 \N +167796 2025-07-28 03:38:32.951727+00 2025-07-28 03:38:32.951738+00 f t ADELANTO 0.00 4 4393 \N +169793 2025-07-28 21:11:50.940094+00 2025-07-28 21:11:50.940102+00 f t SUBTOTAL 0.00 1 4449 \N +169794 2025-07-28 21:11:50.94138+00 2025-07-28 21:11:50.941389+00 f t DESCUENTO 0.00 2 4449 \N +169795 2025-07-28 21:11:50.942501+00 2025-07-28 21:11:50.942507+00 f t TOTAL 0.00 3 4449 \N +169796 2025-07-28 21:11:50.943493+00 2025-07-28 21:11:50.943498+00 f t ADELANTO 0.00 4 4449 \N +167837 2025-07-28 03:46:58.657341+00 2025-07-28 03:46:58.65735+00 f t SUBTOTAL 50000.00 1 4394 \N +167838 2025-07-28 03:46:58.659524+00 2025-07-28 03:46:58.659535+00 f t DESCUENTO 0.00 2 4394 \N +167839 2025-07-28 03:46:58.661279+00 2025-07-28 03:46:58.661289+00 f t TOTAL 50000.00 3 4394 \N +167840 2025-07-28 03:46:58.662871+00 2025-07-28 03:46:58.662879+00 f t ADELANTO 10000.00 4 4394 \N +170185 2025-07-29 00:08:02.535626+00 2025-07-29 00:08:02.535637+00 f t SUBTOTAL 0.00 1 4463 \N +170186 2025-07-29 00:08:02.53729+00 2025-07-29 00:08:02.537301+00 f t DESCUENTO 0.00 2 4463 \N +170187 2025-07-29 00:08:02.538702+00 2025-07-29 00:08:02.538708+00 f t TOTAL 0.00 3 4463 \N +170188 2025-07-29 00:08:02.540297+00 2025-07-29 00:08:02.540312+00 f t ADELANTO 0.00 4 4463 \N +167885 2025-07-28 03:54:08.143815+00 2025-07-28 03:54:08.143825+00 f t SUBTOTAL 42000.00 1 4395 \N +167886 2025-07-28 03:54:08.14538+00 2025-07-28 03:54:08.145386+00 f t DESCUENTO 0.00 2 4395 \N +167887 2025-07-28 03:54:08.146537+00 2025-07-28 03:54:08.146543+00 f t TOTAL 42000.00 3 4395 \N +167888 2025-07-28 03:54:08.147812+00 2025-07-28 03:54:08.14782+00 f t ADELANTO 9500.00 4 4395 \N +170713 2025-07-29 02:33:30.995953+00 2025-07-29 02:33:30.995967+00 f t SUBTOTAL 84000.00 1 4475 \N +170714 2025-07-29 02:33:30.998511+00 2025-07-29 02:33:30.998521+00 f t DESCUENTO 0.00 2 4475 \N +170715 2025-07-29 02:33:31.000706+00 2025-07-29 02:33:31.000715+00 f t TOTAL 84000.00 3 4475 \N +170716 2025-07-29 02:33:31.002895+00 2025-07-29 02:33:31.002904+00 f t ADELANTO 18000.00 4 4475 \N +171013 2025-07-29 10:00:54.439784+00 2025-07-29 10:00:54.439793+00 f t SUBTOTAL 49500.00 1 4481 \N +171014 2025-07-29 10:00:54.441379+00 2025-07-29 10:00:54.441386+00 f t DESCUENTO 0.00 2 4481 \N +171015 2025-07-29 10:00:54.442736+00 2025-07-29 10:00:54.442744+00 f t TOTAL 49500.00 3 4481 \N +171016 2025-07-29 10:00:54.44392+00 2025-07-29 10:00:54.443925+00 f t ADELANTO 11500.00 4 4481 \N +167949 2025-07-28 03:59:53.84337+00 2025-07-28 03:59:53.843379+00 f t SUBTOTAL 0.00 1 4396 \N +167950 2025-07-28 03:59:53.845276+00 2025-07-28 03:59:53.845285+00 f t DESCUENTO 0.00 2 4396 \N +167951 2025-07-28 03:59:53.846499+00 2025-07-28 03:59:53.846505+00 f t TOTAL 0.00 3 4396 \N +167952 2025-07-28 03:59:53.847602+00 2025-07-28 03:59:53.84761+00 f t ADELANTO 0.00 4 4396 \N +171565 2025-07-29 14:57:53.747303+00 2025-07-29 14:57:53.747312+00 f t SUBTOTAL 42000.00 1 4501 \N +171566 2025-07-29 14:57:53.748852+00 2025-07-29 14:57:53.748859+00 f t DESCUENTO 0.00 2 4501 \N +171567 2025-07-29 14:57:53.750228+00 2025-07-29 14:57:53.750234+00 f t TOTAL 42000.00 3 4501 \N +171568 2025-07-29 14:57:53.751509+00 2025-07-29 14:57:53.751515+00 f t ADELANTO 9500.00 4 4501 \N +173105 2025-07-29 22:37:42.719684+00 2025-07-29 22:37:42.719696+00 f t SUBTOTAL 42000.00 1 4533 \N +173106 2025-07-29 22:37:42.721835+00 2025-07-29 22:37:42.721847+00 f t DESCUENTO 0.00 2 4533 \N +173107 2025-07-29 22:37:42.723596+00 2025-07-29 22:37:42.723607+00 f t TOTAL 42000.00 3 4533 \N +173108 2025-07-29 22:37:42.725182+00 2025-07-29 22:37:42.725191+00 f t ADELANTO 9500.00 4 4533 \N +168013 2025-07-28 04:07:38.917544+00 2025-07-28 04:07:38.917553+00 f t SUBTOTAL 72000.00 1 4397 \N +168014 2025-07-28 04:07:38.91931+00 2025-07-28 04:07:38.919318+00 f t DESCUENTO 0.00 2 4397 \N +168015 2025-07-28 04:07:38.920853+00 2025-07-28 04:07:38.92086+00 f t TOTAL 72000.00 3 4397 \N +168016 2025-07-28 04:07:38.922253+00 2025-07-28 04:07:38.922259+00 f t ADELANTO 19000.00 4 4397 \N +185939 2025-08-04 20:29:31.710232+00 2025-08-04 20:29:31.710245+00 f t TOTAL 0.00 3 4882 \N +185940 2025-08-04 20:29:31.712485+00 2025-08-04 20:29:31.712498+00 f t ADELANTO 0.00 4 4882 \N +168033 2025-07-28 05:35:02.940166+00 2025-07-28 05:35:02.940181+00 f t SUBTOTAL 0.00 1 4398 \N +168034 2025-07-28 05:35:02.943558+00 2025-07-28 05:35:02.943572+00 f t DESCUENTO 0.00 2 4398 \N +168035 2025-07-28 05:35:02.947884+00 2025-07-28 05:35:02.947898+00 f t TOTAL 0.00 3 4398 \N +168036 2025-07-28 05:35:02.954241+00 2025-07-28 05:35:02.954255+00 f t ADELANTO 0.00 4 4398 \N +169293 2025-07-28 17:38:59.05846+00 2025-07-28 17:38:59.058472+00 f t SUBTOTAL 42000.00 1 4434 \N +169294 2025-07-28 17:38:59.060494+00 2025-07-28 17:38:59.060502+00 f t DESCUENTO 0.00 2 4434 \N +169295 2025-07-28 17:38:59.061948+00 2025-07-28 17:38:59.061955+00 f t TOTAL 42000.00 3 4434 \N +169296 2025-07-28 17:38:59.063309+00 2025-07-28 17:38:59.063315+00 f t ADELANTO 9500.00 4 4434 \N +168041 2025-07-28 08:21:55.829278+00 2025-07-28 08:21:55.829287+00 f t SUBTOTAL 0.00 1 4399 \N +168042 2025-07-28 08:21:55.830874+00 2025-07-28 08:21:55.830881+00 f t DESCUENTO 0.00 2 4399 \N +168043 2025-07-28 08:21:55.832222+00 2025-07-28 08:21:55.832228+00 f t TOTAL 0.00 3 4399 \N +168044 2025-07-28 08:21:55.833422+00 2025-07-28 08:21:55.83343+00 f t ADELANTO 0.00 4 4399 \N +186401 2025-08-04 23:03:38.380445+00 2025-08-04 23:03:38.380458+00 f t SUBTOTAL 42000.00 1 4894 \N +186402 2025-08-04 23:03:38.382629+00 2025-08-04 23:03:38.38264+00 f t DESCUENTO 0.00 2 4894 \N +186403 2025-08-04 23:03:38.38419+00 2025-08-04 23:03:38.384202+00 f t TOTAL 42000.00 3 4894 \N +186404 2025-08-04 23:03:38.385669+00 2025-08-04 23:03:38.385677+00 f t ADELANTO 9500.00 4 4894 \N +169513 2025-07-28 18:03:48.005372+00 2025-07-28 18:03:48.005384+00 f t SUBTOTAL 50000.00 1 4438 \N +169514 2025-07-28 18:03:48.007413+00 2025-07-28 18:03:48.007423+00 f t DESCUENTO 0.00 2 4438 \N +169515 2025-07-28 18:03:48.009219+00 2025-07-28 18:03:48.009229+00 f t TOTAL 50000.00 3 4438 \N +169516 2025-07-28 18:03:48.010765+00 2025-07-28 18:03:48.010774+00 f t ADELANTO 10000.00 4 4438 \N +168081 2025-07-28 09:15:17.794348+00 2025-07-28 09:15:17.794357+00 f t SUBTOTAL 0.00 1 4400 \N +168082 2025-07-28 09:15:17.796544+00 2025-07-28 09:15:17.796552+00 f t DESCUENTO 0.00 2 4400 \N +168083 2025-07-28 09:15:17.797901+00 2025-07-28 09:15:17.797907+00 f t TOTAL 0.00 3 4400 \N +168084 2025-07-28 09:15:17.79919+00 2025-07-28 09:15:17.799198+00 f t ADELANTO 0.00 4 4400 \N +168089 2025-07-28 11:55:55.229017+00 2025-07-28 11:55:55.22903+00 f t SUBTOTAL 0.00 1 4401 \N +168090 2025-07-28 11:55:55.23089+00 2025-07-28 11:55:55.2309+00 f t DESCUENTO 0.00 2 4401 \N +168091 2025-07-28 11:55:55.232511+00 2025-07-28 11:55:55.232521+00 f t TOTAL 0.00 3 4401 \N +168092 2025-07-28 11:55:55.234004+00 2025-07-28 11:55:55.234014+00 f t ADELANTO 0.00 4 4401 \N +169909 2025-07-28 22:02:52.509721+00 2025-07-28 22:02:52.509732+00 f t SUBTOTAL 27500.00 1 4453 \N +169910 2025-07-28 22:02:52.511784+00 2025-07-28 22:02:52.511793+00 f t DESCUENTO 0.00 2 4453 \N +169911 2025-07-28 22:02:52.513515+00 2025-07-28 22:02:52.513525+00 f t TOTAL 27500.00 3 4453 \N +169912 2025-07-28 22:02:52.514962+00 2025-07-28 22:02:52.51497+00 f t ADELANTO 27500.00 4 4453 \N +173869 2025-07-30 12:33:51.833902+00 2025-07-30 12:33:51.833914+00 f t SUBTOTAL 0.00 1 4555 \N +173870 2025-07-30 12:33:51.835399+00 2025-07-30 12:33:51.835407+00 f t DESCUENTO 0.00 2 4555 \N +173871 2025-07-30 12:33:51.836788+00 2025-07-30 12:33:51.836795+00 f t TOTAL 0.00 3 4555 \N +173872 2025-07-30 12:33:51.837862+00 2025-07-30 12:33:51.837869+00 f t ADELANTO 0.00 4 4555 \N +170193 2025-07-29 00:09:06.129844+00 2025-07-29 00:09:06.129857+00 f t SUBTOTAL 0.00 1 4464 \N +170194 2025-07-29 00:09:06.131909+00 2025-07-29 00:09:06.131918+00 f t DESCUENTO 0.00 2 4464 \N +170195 2025-07-29 00:09:06.133748+00 2025-07-29 00:09:06.133757+00 f t TOTAL 0.00 3 4464 \N +170196 2025-07-29 00:09:06.135453+00 2025-07-29 00:09:06.135465+00 f t ADELANTO 0.00 4 4464 \N +173957 2025-07-30 13:20:40.9645+00 2025-07-30 13:20:40.964509+00 f t SUBTOTAL 62000.00 1 4556 \N +168129 2025-07-28 11:59:28.774198+00 2025-07-28 11:59:28.774208+00 f t SUBTOTAL 0.00 1 4402 \N +168130 2025-07-28 11:59:28.775939+00 2025-07-28 11:59:28.775945+00 f t DESCUENTO 0.00 2 4402 \N +168131 2025-07-28 11:59:28.777402+00 2025-07-28 11:59:28.77741+00 f t TOTAL 0.00 3 4402 \N +168132 2025-07-28 11:59:28.778359+00 2025-07-28 11:59:28.778365+00 f t ADELANTO 0.00 4 4402 \N +173958 2025-07-30 13:20:40.966513+00 2025-07-30 13:20:40.966524+00 f t DESCUENTO 0.00 2 4556 \N +173959 2025-07-30 13:20:40.968282+00 2025-07-30 13:20:40.96829+00 f t TOTAL 62000.00 3 4556 \N +173960 2025-07-30 13:20:40.969795+00 2025-07-30 13:20:40.969802+00 f t ADELANTO 12000.00 4 4556 \N +174165 2025-07-30 15:18:22.204744+00 2025-07-30 15:18:22.204754+00 f t SUBTOTAL 0.00 1 4564 \N +174166 2025-07-30 15:18:22.206514+00 2025-07-30 15:18:22.206522+00 f t DESCUENTO 0.00 2 4564 \N +174167 2025-07-30 15:18:22.208306+00 2025-07-30 15:18:22.208313+00 f t TOTAL 0.00 3 4564 \N +174168 2025-07-30 15:18:22.209766+00 2025-07-30 15:18:22.209774+00 f t ADELANTO 0.00 4 4564 \N +170869 2025-07-29 02:59:16.650279+00 2025-07-29 02:59:16.650289+00 f t SUBTOTAL 0.00 1 4477 \N +170870 2025-07-29 02:59:16.652406+00 2025-07-29 02:59:16.652413+00 f t DESCUENTO 0.00 2 4477 \N +170871 2025-07-29 02:59:16.653714+00 2025-07-29 02:59:16.653722+00 f t TOTAL 0.00 3 4477 \N +170872 2025-07-29 02:59:16.655027+00 2025-07-29 02:59:16.655033+00 f t ADELANTO 0.00 4 4477 \N +171021 2025-07-29 10:13:07.362361+00 2025-07-29 10:13:07.362372+00 f t SUBTOTAL 0.00 1 4482 \N +171022 2025-07-29 10:13:07.363915+00 2025-07-29 10:13:07.363927+00 f t DESCUENTO 0.00 2 4482 \N +171023 2025-07-29 10:13:07.365332+00 2025-07-29 10:13:07.365339+00 f t TOTAL 0.00 3 4482 \N +171024 2025-07-29 10:13:07.366521+00 2025-07-29 10:13:07.366529+00 f t ADELANTO 0.00 4 4482 \N +168241 2025-07-28 12:03:24.629116+00 2025-07-28 12:03:24.629128+00 f t SUBTOTAL 42000.00 1 4403 \N +168242 2025-07-28 12:03:24.631123+00 2025-07-28 12:03:24.631151+00 f t DESCUENTO 0.00 2 4403 \N +168243 2025-07-28 12:03:24.632244+00 2025-07-28 12:03:24.63225+00 f t TOTAL 42000.00 3 4403 \N +168244 2025-07-28 12:03:24.633383+00 2025-07-28 12:03:24.633389+00 f t ADELANTO 9500.00 4 4403 \N +171461 2025-07-29 14:50:17.781824+00 2025-07-29 14:50:17.781832+00 f t SUBTOTAL 42000.00 1 4498 \N +171462 2025-07-29 14:50:17.783645+00 2025-07-29 14:50:17.783657+00 f t DESCUENTO 0.00 2 4498 \N +171463 2025-07-29 14:50:17.785199+00 2025-07-29 14:50:17.785208+00 f t TOTAL 42000.00 3 4498 \N +171464 2025-07-29 14:50:17.786575+00 2025-07-29 14:50:17.786585+00 f t ADELANTO 9500.00 4 4498 \N +171573 2025-07-29 15:22:08.073344+00 2025-07-29 15:22:08.073357+00 f t SUBTOTAL 0.00 1 4502 \N +171574 2025-07-29 15:22:08.075869+00 2025-07-29 15:22:08.07588+00 f t DESCUENTO 0.00 2 4502 \N +171575 2025-07-29 15:22:08.077968+00 2025-07-29 15:22:08.077982+00 f t TOTAL 0.00 3 4502 \N +171576 2025-07-29 15:22:08.07976+00 2025-07-29 15:22:08.079771+00 f t ADELANTO 0.00 4 4502 \N +194873 2025-08-08 08:15:34.573012+00 2025-08-08 08:15:34.573024+00 f t SUBTOTAL 42000.00 1 5094 \N +168301 2025-07-28 12:38:06.923782+00 2025-07-28 12:38:06.923793+00 f t SUBTOTAL 114200.00 1 4404 \N +168302 2025-07-28 12:38:06.926214+00 2025-07-28 12:38:06.926225+00 f t DESCUENTO 0.00 2 4404 \N +168303 2025-07-28 12:38:06.928226+00 2025-07-28 12:38:06.928238+00 f t TOTAL 114200.00 3 4404 \N +168304 2025-07-28 12:38:06.930002+00 2025-07-28 12:38:06.930012+00 f t ADELANTO 76200.00 4 4404 \N +194874 2025-08-08 08:15:34.575571+00 2025-08-08 08:15:34.575579+00 f t DESCUENTO 0.00 2 5094 \N +168309 2025-07-28 13:29:42.181322+00 2025-07-28 13:29:42.181331+00 f t SUBTOTAL 0.00 1 4405 \N +168310 2025-07-28 13:29:42.182789+00 2025-07-28 13:29:42.182796+00 f t DESCUENTO 0.00 2 4405 \N +168311 2025-07-28 13:29:42.184159+00 2025-07-28 13:29:42.184167+00 f t TOTAL 0.00 3 4405 \N +168312 2025-07-28 13:29:42.18546+00 2025-07-28 13:29:42.185469+00 f t ADELANTO 0.00 4 4405 \N +168317 2025-07-28 13:51:17.244387+00 2025-07-28 13:51:17.244402+00 f t SUBTOTAL 0.00 1 4406 \N +168318 2025-07-28 13:51:17.246242+00 2025-07-28 13:51:17.246252+00 f t DESCUENTO 0.00 2 4406 \N +168319 2025-07-28 13:51:17.247912+00 2025-07-28 13:51:17.247922+00 f t TOTAL 0.00 3 4406 \N +168320 2025-07-28 13:51:17.249584+00 2025-07-28 13:51:17.249593+00 f t ADELANTO 0.00 4 4406 \N +177622 2025-07-31 22:58:41.455893+00 2025-07-31 22:58:41.455905+00 f t DESCUENTO 0.00 2 4666 \N +177623 2025-07-31 22:58:41.457488+00 2025-07-31 22:58:41.457497+00 f t TOTAL 0.00 3 4666 \N +169301 2025-07-28 17:47:23.753929+00 2025-07-28 17:47:23.753938+00 f t SUBTOTAL 0.00 1 4435 \N +169302 2025-07-28 17:47:23.755286+00 2025-07-28 17:47:23.755292+00 f t DESCUENTO 0.00 2 4435 \N +169303 2025-07-28 17:47:23.756268+00 2025-07-28 17:47:23.756273+00 f t TOTAL 0.00 3 4435 \N +169304 2025-07-28 17:47:23.75724+00 2025-07-28 17:47:23.757248+00 f t ADELANTO 0.00 4 4435 \N +177624 2025-07-31 22:58:41.45894+00 2025-07-31 22:58:41.458948+00 f t ADELANTO 0.00 4 4666 \N +168345 2025-07-28 13:54:37.908727+00 2025-07-28 13:54:37.908735+00 f t SUBTOTAL 49500.00 1 4407 \N +168346 2025-07-28 13:54:37.91062+00 2025-07-28 13:54:37.910626+00 f t DESCUENTO 0.00 2 4407 \N +168347 2025-07-28 13:54:37.91171+00 2025-07-28 13:54:37.911715+00 f t TOTAL 49500.00 3 4407 \N +168348 2025-07-28 13:54:37.912765+00 2025-07-28 13:54:37.912771+00 f t ADELANTO 11500.00 4 4407 \N +168361 2025-07-28 14:28:57.900905+00 2025-07-28 14:28:57.900913+00 f t SUBTOTAL 0.00 1 4409 \N +168362 2025-07-28 14:28:57.902379+00 2025-07-28 14:28:57.902389+00 f t DESCUENTO 0.00 2 4409 \N +168363 2025-07-28 14:28:57.903868+00 2025-07-28 14:28:57.903874+00 f t TOTAL 0.00 3 4409 \N +168364 2025-07-28 14:28:57.904886+00 2025-07-28 14:28:57.904893+00 f t ADELANTO 0.00 4 4409 \N +169681 2025-07-28 19:27:01.704388+00 2025-07-28 19:27:01.704397+00 f t SUBTOTAL 64500.00 1 4443 \N +169682 2025-07-28 19:27:01.706599+00 2025-07-28 19:27:01.70661+00 f t DESCUENTO 0.00 2 4443 \N +169683 2025-07-28 19:27:01.714466+00 2025-07-28 19:27:01.71448+00 f t TOTAL 64500.00 3 4443 \N +169684 2025-07-28 19:27:01.717797+00 2025-07-28 19:27:01.71781+00 f t ADELANTO 17000.00 4 4443 \N +168381 2025-07-28 14:29:40.202425+00 2025-07-28 14:29:40.202434+00 f t SUBTOTAL 64500.00 1 4408 \N +168382 2025-07-28 14:29:40.204298+00 2025-07-28 14:29:40.204305+00 f t DESCUENTO 0.00 2 4408 \N +168383 2025-07-28 14:29:40.205577+00 2025-07-28 14:29:40.205582+00 f t TOTAL 64500.00 3 4408 \N +168384 2025-07-28 14:29:40.206808+00 2025-07-28 14:29:40.206814+00 f t ADELANTO 17000.00 4 4408 \N +168433 2025-07-28 14:53:01.495838+00 2025-07-28 14:53:01.49585+00 f t SUBTOTAL 0.00 1 4411 \N +168434 2025-07-28 14:53:01.498204+00 2025-07-28 14:53:01.498215+00 f t DESCUENTO 0.00 2 4411 \N +168435 2025-07-28 14:53:01.507435+00 2025-07-28 14:53:01.507448+00 f t TOTAL 0.00 3 4411 \N +168436 2025-07-28 14:53:01.50985+00 2025-07-28 14:53:01.509863+00 f t ADELANTO 0.00 4 4411 \N +168453 2025-07-28 14:53:22.54338+00 2025-07-28 14:53:22.543394+00 f t SUBTOTAL 0.00 1 4412 \N +168454 2025-07-28 14:53:22.545717+00 2025-07-28 14:53:22.545728+00 f t DESCUENTO 0.00 2 4412 \N +168455 2025-07-28 14:53:22.547428+00 2025-07-28 14:53:22.547437+00 f t TOTAL 0.00 3 4412 \N +168456 2025-07-28 14:53:22.548897+00 2025-07-28 14:53:22.548906+00 f t ADELANTO 0.00 4 4412 \N +170773 2025-07-29 02:52:00.957522+00 2025-07-29 02:52:00.957536+00 f t SUBTOTAL 0.00 1 4476 \N +170774 2025-07-29 02:52:00.96012+00 2025-07-29 02:52:00.960131+00 f t DESCUENTO 0.00 2 4476 \N +170775 2025-07-29 02:52:00.962021+00 2025-07-29 02:52:00.962031+00 f t TOTAL 0.00 3 4476 \N +170776 2025-07-29 02:52:00.963828+00 2025-07-29 02:52:00.963837+00 f t ADELANTO 0.00 4 4476 \N +170925 2025-07-29 07:53:46.024431+00 2025-07-29 07:53:46.024444+00 f t SUBTOTAL 70000.00 1 4479 \N +170926 2025-07-29 07:53:46.026959+00 2025-07-29 07:53:46.026968+00 f t DESCUENTO 0.00 2 4479 \N +170927 2025-07-29 07:53:46.028957+00 2025-07-29 07:53:46.028968+00 f t TOTAL 70000.00 3 4479 \N +170928 2025-07-29 07:53:46.030902+00 2025-07-29 07:53:46.030913+00 f t ADELANTO 10000.00 4 4479 \N +171029 2025-07-29 10:21:06.151615+00 2025-07-29 10:21:06.151628+00 f t SUBTOTAL 0.00 1 4483 \N +168501 2025-07-28 14:57:09.155357+00 2025-07-28 14:57:09.155367+00 f t SUBTOTAL 0.00 1 4413 \N +168502 2025-07-28 14:57:09.157321+00 2025-07-28 14:57:09.157332+00 f t DESCUENTO 0.00 2 4413 \N +168503 2025-07-28 14:57:09.158832+00 2025-07-28 14:57:09.158843+00 f t TOTAL 0.00 3 4413 \N +168504 2025-07-28 14:57:09.161082+00 2025-07-28 14:57:09.161092+00 f t ADELANTO 0.00 4 4413 \N +171030 2025-07-29 10:21:06.15386+00 2025-07-29 10:21:06.153873+00 f t DESCUENTO 0.00 2 4483 \N +171031 2025-07-29 10:21:06.155877+00 2025-07-29 10:21:06.155887+00 f t TOTAL 0.00 3 4483 \N +171032 2025-07-29 10:21:06.157969+00 2025-07-29 10:21:06.157985+00 f t ADELANTO 0.00 4 4483 \N +168537 2025-07-28 14:57:36.219968+00 2025-07-28 14:57:36.219978+00 f t SUBTOTAL 0.00 1 4414 \N +168538 2025-07-28 14:57:36.222367+00 2025-07-28 14:57:36.222377+00 f t DESCUENTO 0.00 2 4414 \N +168539 2025-07-28 14:57:36.223927+00 2025-07-28 14:57:36.223936+00 f t TOTAL 0.00 3 4414 \N +168540 2025-07-28 14:57:36.225217+00 2025-07-28 14:57:36.225223+00 f t ADELANTO 0.00 4 4414 \N +171425 2025-07-29 14:34:07.611279+00 2025-07-29 14:34:07.611292+00 f t SUBTOTAL 94200.00 1 4495 \N +168545 2025-07-28 14:57:53.462625+00 2025-07-28 14:57:53.462635+00 f t SUBTOTAL 0.00 1 4415 \N +168546 2025-07-28 14:57:53.46563+00 2025-07-28 14:57:53.465637+00 f t DESCUENTO 0.00 2 4415 \N +168547 2025-07-28 14:57:53.467005+00 2025-07-28 14:57:53.46701+00 f t TOTAL 0.00 3 4415 \N +168548 2025-07-28 14:57:53.468235+00 2025-07-28 14:57:53.468243+00 f t ADELANTO 0.00 4 4415 \N +171426 2025-07-29 14:34:07.613345+00 2025-07-29 14:34:07.613355+00 f t DESCUENTO 0.00 2 4495 \N +171427 2025-07-29 14:34:07.614865+00 2025-07-29 14:34:07.614875+00 f t TOTAL 94200.00 3 4495 \N +171428 2025-07-29 14:34:07.616365+00 2025-07-29 14:34:07.616375+00 f t ADELANTO 56200.00 4 4495 \N +171469 2025-07-29 14:54:40.702062+00 2025-07-29 14:54:40.702071+00 f t SUBTOTAL 0.00 1 4499 \N +171470 2025-07-29 14:54:40.703595+00 2025-07-29 14:54:40.703603+00 f t DESCUENTO 0.00 2 4499 \N +171471 2025-07-29 14:54:40.705074+00 2025-07-29 14:54:40.705084+00 f t TOTAL 0.00 3 4499 \N +171472 2025-07-29 14:54:40.706262+00 2025-07-29 14:54:40.70627+00 f t ADELANTO 0.00 4 4499 \N +168565 2025-07-28 14:58:14.657389+00 2025-07-28 14:58:14.657398+00 f t SUBTOTAL 0.00 1 4416 \N +168566 2025-07-28 14:58:14.659408+00 2025-07-28 14:58:14.659416+00 f t DESCUENTO 0.00 2 4416 \N +168567 2025-07-28 14:58:14.660718+00 2025-07-28 14:58:14.660724+00 f t TOTAL 0.00 3 4416 \N +168568 2025-07-28 14:58:14.661843+00 2025-07-28 14:58:14.661849+00 f t ADELANTO 0.00 4 4416 \N +168609 2025-07-28 14:58:44.69745+00 2025-07-28 14:58:44.697461+00 f t SUBTOTAL 0.00 1 4417 \N +168610 2025-07-28 14:58:44.699844+00 2025-07-28 14:58:44.699855+00 f t DESCUENTO 0.00 2 4417 \N +168611 2025-07-28 14:58:44.701524+00 2025-07-28 14:58:44.701534+00 f t TOTAL 0.00 3 4417 \N +168612 2025-07-28 14:58:44.703169+00 2025-07-28 14:58:44.703178+00 f t ADELANTO 0.00 4 4417 \N +173529 2025-07-30 11:44:38.913669+00 2025-07-30 11:44:38.91368+00 f t SUBTOTAL 42000.00 1 4546 \N +173530 2025-07-30 11:44:38.915866+00 2025-07-30 11:44:38.915874+00 f t DESCUENTO 0.00 2 4546 \N +173531 2025-07-30 11:44:38.917146+00 2025-07-30 11:44:38.917152+00 f t TOTAL 42000.00 3 4546 \N +173532 2025-07-30 11:44:38.918527+00 2025-07-30 11:44:38.918533+00 f t ADELANTO 9500.00 4 4546 \N +173789 2025-07-30 12:29:53.73309+00 2025-07-30 12:29:53.733102+00 f t SUBTOTAL 62000.00 1 4552 \N +173790 2025-07-30 12:29:53.735244+00 2025-07-30 12:29:53.735255+00 f t DESCUENTO 0.00 2 4552 \N +173791 2025-07-30 12:29:53.736748+00 2025-07-30 12:29:53.736758+00 f t TOTAL 62000.00 3 4552 \N +173792 2025-07-30 12:29:53.738007+00 2025-07-30 12:29:53.738012+00 f t ADELANTO 12000.00 4 4552 \N +169809 2025-07-28 21:21:37.074281+00 2025-07-28 21:21:37.074291+00 f t SUBTOTAL 0.00 1 4450 \N +169810 2025-07-28 21:21:37.076428+00 2025-07-28 21:21:37.076436+00 f t DESCUENTO 0.00 2 4450 \N +169811 2025-07-28 21:21:37.077778+00 2025-07-28 21:21:37.077784+00 f t TOTAL 0.00 3 4450 \N +169812 2025-07-28 21:21:37.079213+00 2025-07-28 21:21:37.079219+00 f t ADELANTO 0.00 4 4450 \N +168665 2025-07-28 15:05:08.250559+00 2025-07-28 15:05:08.250572+00 f t SUBTOTAL 50000.00 1 4410 \N +168666 2025-07-28 15:05:08.252708+00 2025-07-28 15:05:08.252718+00 f t DESCUENTO 0.00 2 4410 \N +168667 2025-07-28 15:05:08.254448+00 2025-07-28 15:05:08.254458+00 f t TOTAL 50000.00 3 4410 \N +168668 2025-07-28 15:05:08.256296+00 2025-07-28 15:05:08.256307+00 f t ADELANTO 10000.00 4 4410 \N +173921 2025-07-30 13:19:05.434301+00 2025-07-30 13:19:05.434314+00 f t SUBTOTAL 50000.00 1 4557 \N +173922 2025-07-30 13:19:05.436842+00 2025-07-30 13:19:05.436851+00 f t DESCUENTO 0.00 2 4557 \N +173923 2025-07-30 13:19:05.438438+00 2025-07-30 13:19:05.438445+00 f t TOTAL 50000.00 3 4557 \N +173924 2025-07-30 13:19:05.439879+00 2025-07-30 13:19:05.439886+00 f t ADELANTO 10000.00 4 4557 \N +182753 2025-08-03 14:39:23.674926+00 2025-08-03 14:39:23.674936+00 f t SUBTOTAL 0.00 1 4799 \N +182754 2025-08-03 14:39:23.677332+00 2025-08-03 14:39:23.67735+00 f t DESCUENTO 0.00 2 4799 \N +182755 2025-08-03 14:39:23.679431+00 2025-08-03 14:39:23.679442+00 f t TOTAL 0.00 3 4799 \N +182756 2025-08-03 14:39:23.681307+00 2025-08-03 14:39:23.681317+00 f t ADELANTO 0.00 4 4799 \N +170209 2025-07-29 00:10:07.465115+00 2025-07-29 00:10:07.465128+00 f t SUBTOTAL 0.00 1 4466 \N +170210 2025-07-29 00:10:07.467712+00 2025-07-29 00:10:07.467727+00 f t DESCUENTO 0.00 2 4466 \N +170211 2025-07-29 00:10:07.470025+00 2025-07-29 00:10:07.470037+00 f t TOTAL 0.00 3 4466 \N +170212 2025-07-29 00:10:07.471936+00 2025-07-29 00:10:07.471948+00 f t ADELANTO 0.00 4 4466 \N +168693 2025-07-28 15:19:24.060478+00 2025-07-28 15:19:24.060491+00 f t SUBTOTAL 42000.00 1 4418 \N +168694 2025-07-28 15:19:24.062683+00 2025-07-28 15:19:24.062693+00 f t DESCUENTO 0.00 2 4418 \N +168695 2025-07-28 15:19:24.06436+00 2025-07-28 15:19:24.064369+00 f t TOTAL 42000.00 3 4418 \N +168696 2025-07-28 15:19:24.065695+00 2025-07-28 15:19:24.065701+00 f t ADELANTO 9500.00 4 4418 \N +174173 2025-07-30 15:27:29.132617+00 2025-07-30 15:27:29.132632+00 f t SUBTOTAL 0.00 1 4565 \N +174174 2025-07-30 15:27:29.139046+00 2025-07-30 15:27:29.139061+00 f t DESCUENTO 0.00 2 4565 \N +174175 2025-07-30 15:27:29.141764+00 2025-07-30 15:27:29.141777+00 f t TOTAL 0.00 3 4565 \N +174176 2025-07-30 15:27:29.144256+00 2025-07-30 15:27:29.144268+00 f t ADELANTO 0.00 4 4565 \N +170625 2025-07-29 02:14:04.777379+00 2025-07-29 02:14:04.777388+00 f t SUBTOTAL 0.00 1 4473 \N +170626 2025-07-29 02:14:04.779769+00 2025-07-29 02:14:04.779778+00 f t DESCUENTO 0.00 2 4473 \N +170627 2025-07-29 02:14:04.781348+00 2025-07-29 02:14:04.781358+00 f t TOTAL 0.00 3 4473 \N +170628 2025-07-29 02:14:04.782846+00 2025-07-29 02:14:04.782852+00 f t ADELANTO 0.00 4 4473 \N +170933 2025-07-29 09:38:44.639428+00 2025-07-29 09:38:44.639442+00 f t SUBTOTAL 0.00 1 4480 \N +170934 2025-07-29 09:38:44.641226+00 2025-07-29 09:38:44.641236+00 f t DESCUENTO 0.00 2 4480 \N +170935 2025-07-29 09:38:44.642903+00 2025-07-29 09:38:44.642912+00 f t TOTAL 0.00 3 4480 \N +170936 2025-07-29 09:38:44.644648+00 2025-07-29 09:38:44.644658+00 f t ADELANTO 0.00 4 4480 \N +171037 2025-07-29 10:33:58.257139+00 2025-07-29 10:33:58.25715+00 f t SUBTOTAL 0.00 1 4484 \N +171038 2025-07-29 10:33:58.258629+00 2025-07-29 10:33:58.258636+00 f t DESCUENTO 0.00 2 4484 \N +171039 2025-07-29 10:33:58.259884+00 2025-07-29 10:33:58.259893+00 f t TOTAL 0.00 3 4484 \N +171040 2025-07-29 10:33:58.261189+00 2025-07-29 10:33:58.261196+00 f t ADELANTO 0.00 4 4484 \N +171233 2025-07-29 13:04:17.986123+00 2025-07-29 13:04:17.986136+00 f t SUBTOTAL 50000.00 1 4491 \N +171234 2025-07-29 13:04:17.988838+00 2025-07-29 13:04:17.988849+00 f t DESCUENTO 0.00 2 4491 \N +168785 2025-07-28 15:30:43.230125+00 2025-07-28 15:30:43.230136+00 f t SUBTOTAL 42000.00 1 4419 \N +168786 2025-07-28 15:30:43.23234+00 2025-07-28 15:30:43.232351+00 f t DESCUENTO 0.00 2 4419 \N +168787 2025-07-28 15:30:43.234243+00 2025-07-28 15:30:43.234253+00 f t TOTAL 42000.00 3 4419 \N +168788 2025-07-28 15:30:43.235941+00 2025-07-28 15:30:43.235952+00 f t ADELANTO 9500.00 4 4419 \N +171235 2025-07-29 13:04:17.990892+00 2025-07-29 13:04:17.990906+00 f t TOTAL 50000.00 3 4491 \N +171236 2025-07-29 13:04:17.993114+00 2025-07-29 13:04:17.993126+00 f t ADELANTO 10000.00 4 4491 \N +171433 2025-07-29 14:48:34.367119+00 2025-07-29 14:48:34.367159+00 f t SUBTOTAL 0.00 1 4497 \N +171434 2025-07-29 14:48:34.369099+00 2025-07-29 14:48:34.369117+00 f t DESCUENTO 0.00 2 4497 \N +171435 2025-07-29 14:48:34.37071+00 2025-07-29 14:48:34.370718+00 f t TOTAL 0.00 3 4497 \N +171436 2025-07-29 14:48:34.372144+00 2025-07-29 14:48:34.372152+00 f t ADELANTO 0.00 4 4497 \N +168819 2025-07-28 15:31:56.389412+00 2025-07-28 15:31:56.38942+00 f t TOTAL 95000.00 3 4420 \N +168820 2025-07-28 15:31:56.390623+00 2025-07-28 15:31:56.390629+00 f t ADELANTO 10000.00 4 4420 \N +168821 2025-07-28 15:31:56.397339+00 2025-07-28 15:31:56.397351+00 f t SUBTOTAL 0.00 1 4420 \N +168822 2025-07-28 15:31:56.399005+00 2025-07-28 15:31:56.399015+00 f t DESCUENTO 0.00 2 4420 \N +168823 2025-07-28 15:31:56.400622+00 2025-07-28 15:31:56.40063+00 f t TOTAL 0.00 3 4420 \N +168824 2025-07-28 15:31:56.402021+00 2025-07-28 15:31:56.40203+00 f t ADELANTO 0.00 4 4420 \N +171477 2025-07-29 14:55:14.698691+00 2025-07-29 14:55:14.698703+00 f t SUBTOTAL 0.00 1 4500 \N +171478 2025-07-29 14:55:14.700589+00 2025-07-29 14:55:14.7006+00 f t DESCUENTO 0.00 2 4500 \N +171479 2025-07-29 14:55:14.702453+00 2025-07-29 14:55:14.702464+00 f t TOTAL 0.00 3 4500 \N +171480 2025-07-29 14:55:14.704103+00 2025-07-29 14:55:14.704111+00 f t ADELANTO 0.00 4 4500 \N +168829 2025-07-28 15:32:15.958078+00 2025-07-28 15:32:15.958087+00 f t SUBTOTAL 0.00 1 4421 \N +168830 2025-07-28 15:32:15.959394+00 2025-07-28 15:32:15.959401+00 f t DESCUENTO 0.00 2 4421 \N +168831 2025-07-28 15:32:15.960612+00 2025-07-28 15:32:15.960618+00 f t TOTAL 0.00 3 4421 \N +168832 2025-07-28 15:32:15.961514+00 2025-07-28 15:32:15.96152+00 f t ADELANTO 0.00 4 4421 \N +171641 2025-07-29 15:39:00.781562+00 2025-07-29 15:39:00.781577+00 f t SUBTOTAL 27500.00 1 4503 \N +171642 2025-07-29 15:39:00.792879+00 2025-07-29 15:39:00.792891+00 f t DESCUENTO 0.00 2 4503 \N +171643 2025-07-29 15:39:00.79622+00 2025-07-29 15:39:00.796232+00 f t TOTAL 27500.00 3 4503 \N +171644 2025-07-29 15:39:00.798577+00 2025-07-29 15:39:00.798587+00 f t ADELANTO 27500.00 4 4503 \N +177309 2025-07-31 20:08:32.446925+00 2025-07-31 20:08:32.446934+00 f t SUBTOTAL 0.00 1 4656 \N +177310 2025-07-31 20:08:32.449128+00 2025-07-31 20:08:32.449138+00 f t DESCUENTO 0.00 2 4656 \N +177311 2025-07-31 20:08:32.450422+00 2025-07-31 20:08:32.450429+00 f t TOTAL 0.00 3 4656 \N +177312 2025-07-31 20:08:32.451596+00 2025-07-31 20:08:32.451602+00 f t ADELANTO 0.00 4 4656 \N +173317 2025-07-30 03:15:21.822615+00 2025-07-30 03:15:21.822624+00 f t SUBTOTAL 0.00 1 4538 \N +173318 2025-07-30 03:15:21.824812+00 2025-07-30 03:15:21.824823+00 f t DESCUENTO 0.00 2 4538 \N +173319 2025-07-30 03:15:21.826435+00 2025-07-30 03:15:21.826443+00 f t TOTAL 0.00 3 4538 \N +173320 2025-07-30 03:15:21.828089+00 2025-07-30 03:15:21.828097+00 f t ADELANTO 0.00 4 4538 \N +168905 2025-07-28 15:39:35.14487+00 2025-07-28 15:39:35.14488+00 f t SUBTOTAL 49500.00 1 4423 \N +168906 2025-07-28 15:39:35.146752+00 2025-07-28 15:39:35.146762+00 f t DESCUENTO 0.00 2 4423 \N +168907 2025-07-28 15:39:35.148525+00 2025-07-28 15:39:35.148535+00 f t TOTAL 49500.00 3 4423 \N +168908 2025-07-28 15:39:35.150132+00 2025-07-28 15:39:35.150141+00 f t ADELANTO 11500.00 4 4423 \N +181897 2025-08-02 19:31:15.425166+00 2025-08-02 19:31:15.425175+00 f t SUBTOTAL 0.00 1 4774 \N +181898 2025-08-02 19:31:15.426943+00 2025-08-02 19:31:15.42695+00 f t DESCUENTO 0.00 2 4774 \N +181899 2025-08-02 19:31:15.428281+00 2025-08-02 19:31:15.428287+00 f t TOTAL 0.00 3 4774 \N +181900 2025-08-02 19:31:15.429658+00 2025-08-02 19:31:15.429665+00 f t ADELANTO 0.00 4 4774 \N +168941 2025-07-28 15:45:49.447913+00 2025-07-28 15:45:49.447921+00 f t SUBTOTAL 95000.00 1 4422 \N +168942 2025-07-28 15:45:49.449744+00 2025-07-28 15:45:49.449753+00 f t DESCUENTO 0.00 2 4422 \N +168943 2025-07-28 15:45:49.451195+00 2025-07-28 15:45:49.451202+00 f t TOTAL 95000.00 3 4422 \N +168944 2025-07-28 15:45:49.452518+00 2025-07-28 15:45:49.452524+00 f t ADELANTO 10000.00 4 4422 \N +168949 2025-07-28 15:57:59.533242+00 2025-07-28 15:57:59.533251+00 f t SUBTOTAL 0.00 1 4424 \N +168950 2025-07-28 15:57:59.534856+00 2025-07-28 15:57:59.534865+00 f t DESCUENTO 0.00 2 4424 \N +168951 2025-07-28 15:57:59.536135+00 2025-07-28 15:57:59.536141+00 f t TOTAL 0.00 3 4424 \N +168952 2025-07-28 15:57:59.537186+00 2025-07-28 15:57:59.537191+00 f t ADELANTO 0.00 4 4424 \N +173833 2025-07-30 12:33:10.652908+00 2025-07-30 12:33:10.652917+00 f t SUBTOTAL 119200.00 1 4553 \N +173834 2025-07-30 12:33:10.654748+00 2025-07-30 12:33:10.654755+00 f t DESCUENTO 0.00 2 4553 \N +173835 2025-07-30 12:33:10.656335+00 2025-07-30 12:33:10.656343+00 f t TOTAL 119200.00 3 4553 \N +173836 2025-07-30 12:33:10.658388+00 2025-07-30 12:33:10.658398+00 f t ADELANTO 52200.00 4 4553 \N +168973 2025-07-28 16:11:45.542486+00 2025-07-28 16:11:45.542495+00 f t SUBTOTAL 0.00 1 4425 \N +168974 2025-07-28 16:11:45.544532+00 2025-07-28 16:11:45.54454+00 f t DESCUENTO 0.00 2 4425 \N +168975 2025-07-28 16:11:45.545892+00 2025-07-28 16:11:45.545897+00 f t TOTAL 0.00 3 4425 \N +168976 2025-07-28 16:11:45.546921+00 2025-07-28 16:11:45.546926+00 f t ADELANTO 0.00 4 4425 \N +173965 2025-07-30 13:20:52.796601+00 2025-07-30 13:20:52.79661+00 f t SUBTOTAL 95700.00 1 4551 \N +173966 2025-07-30 13:20:52.798422+00 2025-07-30 13:20:52.79843+00 f t DESCUENTO 0.00 2 4551 \N +173967 2025-07-30 13:20:52.799797+00 2025-07-30 13:20:52.799803+00 f t TOTAL 95700.00 3 4551 \N +173968 2025-07-30 13:20:52.800883+00 2025-07-30 13:20:52.800888+00 f t ADELANTO 57700.00 4 4551 \N +170373 2025-07-29 01:41:33.81745+00 2025-07-29 01:41:33.817458+00 f t SUBTOTAL 49500.00 1 4470 \N +170374 2025-07-29 01:41:33.819208+00 2025-07-29 01:41:33.819215+00 f t DESCUENTO 0.00 2 4470 \N +170375 2025-07-29 01:41:33.820439+00 2025-07-29 01:41:33.820445+00 f t TOTAL 49500.00 3 4470 \N +170376 2025-07-29 01:41:33.823065+00 2025-07-29 01:41:33.823076+00 f t ADELANTO 11500.00 4 4470 \N +174129 2025-07-30 14:39:23.604909+00 2025-07-30 14:39:23.604917+00 f t SUBTOTAL 146700.00 1 4561 \N +174130 2025-07-30 14:39:23.606679+00 2025-07-30 14:39:23.606686+00 f t DESCUENTO 0.00 2 4561 \N +174131 2025-07-30 14:39:23.608122+00 2025-07-30 14:39:23.608129+00 f t TOTAL 146700.00 3 4561 \N +174132 2025-07-30 14:39:23.609572+00 2025-07-30 14:39:23.609578+00 f t ADELANTO 108700.00 4 4561 \N +174181 2025-07-30 15:28:53.180744+00 2025-07-30 15:28:53.180757+00 f t SUBTOTAL 0.00 1 4566 \N +174182 2025-07-30 15:28:53.182382+00 2025-07-30 15:28:53.182391+00 f t DESCUENTO 0.00 2 4566 \N +174183 2025-07-30 15:28:53.184034+00 2025-07-30 15:28:53.184043+00 f t TOTAL 0.00 3 4566 \N +174184 2025-07-30 15:28:53.185522+00 2025-07-30 15:28:53.185531+00 f t ADELANTO 0.00 4 4566 \N +171045 2025-07-29 10:37:13.382261+00 2025-07-29 10:37:13.382274+00 f t SUBTOTAL 0.00 1 4485 \N +171046 2025-07-29 10:37:13.383884+00 2025-07-29 10:37:13.383893+00 f t DESCUENTO 0.00 2 4485 \N +171047 2025-07-29 10:37:13.3851+00 2025-07-29 10:37:13.385106+00 f t TOTAL 0.00 3 4485 \N +171048 2025-07-29 10:37:13.386145+00 2025-07-29 10:37:13.38615+00 f t ADELANTO 0.00 4 4485 \N +174553 2025-07-30 18:03:03.613142+00 2025-07-30 18:03:03.613151+00 f t SUBTOTAL 49500.00 1 4575 \N +171197 2025-07-29 13:03:16.183293+00 2025-07-29 13:03:16.183306+00 f t SUBTOTAL 62000.00 1 4489 \N +171198 2025-07-29 13:03:16.185851+00 2025-07-29 13:03:16.185862+00 f t DESCUENTO 0.00 2 4489 \N +171199 2025-07-29 13:03:16.187768+00 2025-07-29 13:03:16.187779+00 f t TOTAL 62000.00 3 4489 \N +171200 2025-07-29 13:03:16.189713+00 2025-07-29 13:03:16.189724+00 f t ADELANTO 12000.00 4 4489 \N +171237 2025-07-29 13:48:11.737759+00 2025-07-29 13:48:11.737773+00 f t SUBTOTAL 0.00 1 4457 \N +171238 2025-07-29 13:48:11.740915+00 2025-07-29 13:48:11.740925+00 f t DESCUENTO 0.00 2 4457 \N +171239 2025-07-29 13:48:11.742908+00 2025-07-29 13:48:11.742919+00 f t TOTAL 0.00 3 4457 \N +171240 2025-07-29 13:48:11.744835+00 2025-07-29 13:48:11.744845+00 f t ADELANTO 0.00 4 4457 \N +174554 2025-07-30 18:03:03.614684+00 2025-07-30 18:03:03.614691+00 f t DESCUENTO 0.00 2 4575 \N +174555 2025-07-30 18:03:03.616031+00 2025-07-30 18:03:03.616037+00 f t TOTAL 49500.00 3 4575 \N +174556 2025-07-30 18:03:03.617475+00 2025-07-30 18:03:03.617481+00 f t ADELANTO 11500.00 4 4575 \N +174741 2025-07-30 18:57:43.001577+00 2025-07-30 18:57:43.001586+00 f t SUBTOTAL 45000.00 1 4580 \N +174742 2025-07-30 18:57:43.003029+00 2025-07-30 18:57:43.003036+00 f t DESCUENTO 0.00 2 4580 \N +174743 2025-07-30 18:57:43.004272+00 2025-07-30 18:57:43.00428+00 f t TOTAL 45000.00 3 4580 \N +174744 2025-07-30 18:57:43.005462+00 2025-07-30 18:57:43.00547+00 f t ADELANTO 10000.00 4 4580 \N +171617 2025-07-29 15:38:15.262034+00 2025-07-29 15:38:15.262044+00 f t SUBTOTAL 0.00 1 4504 \N +171618 2025-07-29 15:38:15.263727+00 2025-07-29 15:38:15.263735+00 f t DESCUENTO 0.00 2 4504 \N +171619 2025-07-29 15:38:15.265168+00 2025-07-29 15:38:15.265175+00 f t TOTAL 0.00 3 4504 \N +171620 2025-07-29 15:38:15.266748+00 2025-07-29 15:38:15.266756+00 f t ADELANTO 0.00 4 4504 \N +175009 2025-07-30 21:58:45.11601+00 2025-07-30 21:58:45.116019+00 f t SUBTOTAL 42000.00 1 4589 \N +175010 2025-07-30 21:58:45.117541+00 2025-07-30 21:58:45.117548+00 f t DESCUENTO 0.00 2 4589 \N +175011 2025-07-30 21:58:45.11864+00 2025-07-30 21:58:45.118646+00 f t TOTAL 42000.00 3 4589 \N +175012 2025-07-30 21:58:45.119768+00 2025-07-30 21:58:45.119775+00 f t ADELANTO 9500.00 4 4589 \N +175065 2025-07-30 23:52:44.495253+00 2025-07-30 23:52:44.495262+00 f t SUBTOTAL 0.00 1 4593 \N +175066 2025-07-30 23:52:44.496565+00 2025-07-30 23:52:44.496572+00 f t DESCUENTO 0.00 2 4593 \N +175067 2025-07-30 23:52:44.497725+00 2025-07-30 23:52:44.497731+00 f t TOTAL 0.00 3 4593 \N +175068 2025-07-30 23:52:44.498724+00 2025-07-30 23:52:44.49873+00 f t ADELANTO 0.00 4 4593 \N +194875 2025-08-08 08:15:34.577647+00 2025-08-08 08:15:34.57766+00 f t TOTAL 42000.00 3 5094 \N +177317 2025-07-31 20:25:00.529903+00 2025-07-31 20:25:00.529915+00 f t SUBTOTAL 0.00 1 4657 \N +177318 2025-07-31 20:25:00.536696+00 2025-07-31 20:25:00.536706+00 f t DESCUENTO 0.00 2 4657 \N +177319 2025-07-31 20:25:00.539407+00 2025-07-31 20:25:00.53942+00 f t TOTAL 0.00 3 4657 \N +171813 2025-07-29 15:51:02.706823+00 2025-07-29 15:51:02.706834+00 f t SUBTOTAL 50000.00 1 4506 \N +171814 2025-07-29 15:51:02.709471+00 2025-07-29 15:51:02.709483+00 f t DESCUENTO 0.00 2 4506 \N +171815 2025-07-29 15:51:02.711792+00 2025-07-29 15:51:02.711803+00 f t TOTAL 50000.00 3 4506 \N +171816 2025-07-29 15:51:02.71398+00 2025-07-29 15:51:02.713993+00 f t ADELANTO 10000.00 4 4506 \N +177320 2025-07-31 20:25:00.541306+00 2025-07-31 20:25:00.541318+00 f t ADELANTO 0.00 4 4657 \N +177405 2025-07-31 21:10:35.703656+00 2025-07-31 21:10:35.703667+00 f t SUBTOTAL 72000.00 1 4659 \N +177406 2025-07-31 21:10:35.705874+00 2025-07-31 21:10:35.705886+00 f t DESCUENTO 0.00 2 4659 \N +177407 2025-07-31 21:10:35.707859+00 2025-07-31 21:10:35.707872+00 f t TOTAL 72000.00 3 4659 \N +177408 2025-07-31 21:10:35.709929+00 2025-07-31 21:10:35.709941+00 f t ADELANTO 19000.00 4 4659 \N +173325 2025-07-30 05:46:51.587498+00 2025-07-30 05:46:51.587508+00 f t SUBTOTAL 0.00 1 4539 \N +173326 2025-07-30 05:46:51.589111+00 2025-07-30 05:46:51.58912+00 f t DESCUENTO 0.00 2 4539 \N +173327 2025-07-30 05:46:51.590568+00 2025-07-30 05:46:51.590575+00 f t TOTAL 0.00 3 4539 \N +173328 2025-07-30 05:46:51.591596+00 2025-07-30 05:46:51.591601+00 f t ADELANTO 0.00 4 4539 \N +190669 2025-08-06 17:17:06.459537+00 2025-08-06 17:17:06.459547+00 f t SUBTOTAL 42000.00 1 4987 \N +190670 2025-08-06 17:17:06.462159+00 2025-08-06 17:17:06.462171+00 f t DESCUENTO 0.00 2 4987 \N +190671 2025-08-06 17:17:06.464367+00 2025-08-06 17:17:06.464379+00 f t TOTAL 42000.00 3 4987 \N +190672 2025-08-06 17:17:06.466303+00 2025-08-06 17:17:06.466316+00 f t ADELANTO 9500.00 4 4987 \N +173585 2025-07-30 11:56:07.643012+00 2025-07-30 11:56:07.643021+00 f t SUBTOTAL 49500.00 1 4548 \N +173586 2025-07-30 11:56:07.644882+00 2025-07-30 11:56:07.644889+00 f t DESCUENTO 0.00 2 4548 \N +173587 2025-07-30 11:56:07.646117+00 2025-07-30 11:56:07.646122+00 f t TOTAL 49500.00 3 4548 \N +173588 2025-07-30 11:56:07.647253+00 2025-07-30 11:56:07.647258+00 f t ADELANTO 11500.00 4 4548 \N +173673 2025-07-30 12:12:26.405191+00 2025-07-30 12:12:26.4052+00 f t SUBTOTAL 50000.00 1 4550 \N +173674 2025-07-30 12:12:26.40723+00 2025-07-30 12:12:26.407237+00 f t DESCUENTO 0.00 2 4550 \N +173675 2025-07-30 12:12:26.408921+00 2025-07-30 12:12:26.408929+00 f t TOTAL 50000.00 3 4550 \N +173676 2025-07-30 12:12:26.410473+00 2025-07-30 12:12:26.41048+00 f t ADELANTO 10000.00 4 4550 \N +171861 2025-07-29 15:51:53.186908+00 2025-07-29 15:51:53.186916+00 f t SUBTOTAL 50000.00 1 4505 \N +171862 2025-07-29 15:51:53.188775+00 2025-07-29 15:51:53.188783+00 f t DESCUENTO 0.00 2 4505 \N +171863 2025-07-29 15:51:53.190387+00 2025-07-29 15:51:53.190393+00 f t TOTAL 50000.00 3 4505 \N +171864 2025-07-29 15:51:53.191811+00 2025-07-29 15:51:53.191818+00 f t ADELANTO 10000.00 4 4505 \N +171889 2025-07-29 15:56:52.659021+00 2025-07-29 15:56:52.659032+00 f t SUBTOTAL 42000.00 1 4507 \N +171890 2025-07-29 15:56:52.661224+00 2025-07-29 15:56:52.661232+00 f t DESCUENTO 0.00 2 4507 \N +171891 2025-07-29 15:56:52.66286+00 2025-07-29 15:56:52.662868+00 f t TOTAL 42000.00 3 4507 \N +171892 2025-07-29 15:56:52.664399+00 2025-07-29 15:56:52.664407+00 f t ADELANTO 9500.00 4 4507 \N +173973 2025-07-30 13:58:06.338684+00 2025-07-30 13:58:06.338694+00 f t SUBTOTAL 0.00 1 4559 \N +173974 2025-07-30 13:58:06.340437+00 2025-07-30 13:58:06.340444+00 f t DESCUENTO 0.00 2 4559 \N +173975 2025-07-30 13:58:06.342259+00 2025-07-30 13:58:06.342268+00 f t TOTAL 0.00 3 4559 \N +173976 2025-07-30 13:58:06.343958+00 2025-07-30 13:58:06.343965+00 f t ADELANTO 0.00 4 4559 \N +171905 2025-07-29 15:58:21.203666+00 2025-07-29 15:58:21.203676+00 f t SUBTOTAL 0.00 1 4508 \N +171906 2025-07-29 15:58:21.206004+00 2025-07-29 15:58:21.206013+00 f t DESCUENTO 0.00 2 4508 \N +171907 2025-07-29 15:58:21.207679+00 2025-07-29 15:58:21.207689+00 f t TOTAL 0.00 3 4508 \N +171908 2025-07-29 15:58:21.209339+00 2025-07-29 15:58:21.209346+00 f t ADELANTO 0.00 4 4508 \N +174189 2025-07-30 15:38:14.912087+00 2025-07-30 15:38:14.912097+00 f t SUBTOTAL 0.00 1 4567 \N +174190 2025-07-30 15:38:14.913545+00 2025-07-30 15:38:14.913553+00 f t DESCUENTO 0.00 2 4567 \N +174191 2025-07-30 15:38:14.914955+00 2025-07-30 15:38:14.914961+00 f t TOTAL 0.00 3 4567 \N +174192 2025-07-30 15:38:14.916427+00 2025-07-30 15:38:14.916434+00 f t ADELANTO 0.00 4 4567 \N +174257 2025-07-30 15:43:01.155732+00 2025-07-30 15:43:01.155744+00 f t SUBTOTAL 42000.00 1 4568 \N +174258 2025-07-30 15:43:01.15775+00 2025-07-30 15:43:01.157762+00 f t DESCUENTO 0.00 2 4568 \N +174259 2025-07-30 15:43:01.159597+00 2025-07-30 15:43:01.159608+00 f t TOTAL 42000.00 3 4568 \N +174260 2025-07-30 15:43:01.161827+00 2025-07-30 15:43:01.161837+00 f t ADELANTO 9500.00 4 4568 \N +174589 2025-07-30 18:28:00.781247+00 2025-07-30 18:28:00.781261+00 f t SUBTOTAL 0.00 1 4577 \N +174590 2025-07-30 18:28:00.783391+00 2025-07-30 18:28:00.783402+00 f t DESCUENTO 0.00 2 4577 \N +174591 2025-07-30 18:28:00.784909+00 2025-07-30 18:28:00.784919+00 f t TOTAL 0.00 3 4577 \N +174592 2025-07-30 18:28:00.786471+00 2025-07-30 18:28:00.78648+00 f t ADELANTO 0.00 4 4577 \N +174613 2025-07-30 18:28:20.713521+00 2025-07-30 18:28:20.713529+00 f t SUBTOTAL 49500.00 1 4576 \N +174614 2025-07-30 18:28:20.715446+00 2025-07-30 18:28:20.715453+00 f t DESCUENTO 0.00 2 4576 \N +174615 2025-07-30 18:28:20.716557+00 2025-07-30 18:28:20.716563+00 f t TOTAL 49500.00 3 4576 \N +174616 2025-07-30 18:28:20.717621+00 2025-07-30 18:28:20.717629+00 f t ADELANTO 11500.00 4 4576 \N +174773 2025-07-30 19:49:21.868387+00 2025-07-30 19:49:21.868396+00 f t SUBTOTAL 49500.00 1 4581 \N +174774 2025-07-30 19:49:21.870127+00 2025-07-30 19:49:21.870135+00 f t DESCUENTO 0.00 2 4581 \N +174775 2025-07-30 19:49:21.871334+00 2025-07-30 19:49:21.871341+00 f t TOTAL 49500.00 3 4581 \N +174776 2025-07-30 19:49:21.872463+00 2025-07-30 19:49:21.872471+00 f t ADELANTO 11500.00 4 4581 \N +174829 2025-07-30 20:19:54.431757+00 2025-07-30 20:19:54.431769+00 f t SUBTOTAL 70000.00 1 4583 \N +174830 2025-07-30 20:19:54.433726+00 2025-07-30 20:19:54.433736+00 f t DESCUENTO 0.00 2 4583 \N +174831 2025-07-30 20:19:54.435287+00 2025-07-30 20:19:54.435296+00 f t TOTAL 70000.00 3 4583 \N +174832 2025-07-30 20:19:54.436931+00 2025-07-30 20:19:54.43694+00 f t ADELANTO 10000.00 4 4583 \N +172037 2025-07-29 16:01:18.397229+00 2025-07-29 16:01:18.397239+00 f t SUBTOTAL 50000.00 1 4509 \N +172038 2025-07-29 16:01:18.399325+00 2025-07-29 16:01:18.399334+00 f t DESCUENTO 0.00 2 4509 \N +172039 2025-07-29 16:01:18.400747+00 2025-07-29 16:01:18.400755+00 f t TOTAL 50000.00 3 4509 \N +172040 2025-07-29 16:01:18.402073+00 2025-07-29 16:01:18.402079+00 f t ADELANTO 10000.00 4 4509 \N +172045 2025-07-29 16:05:40.323501+00 2025-07-29 16:05:40.323513+00 f t SUBTOTAL 0.00 1 4510 \N +172046 2025-07-29 16:05:40.325196+00 2025-07-29 16:05:40.325205+00 f t DESCUENTO 0.00 2 4510 \N +172047 2025-07-29 16:05:40.326831+00 2025-07-29 16:05:40.326841+00 f t TOTAL 0.00 3 4510 \N +172048 2025-07-29 16:05:40.328331+00 2025-07-29 16:05:40.32834+00 f t ADELANTO 0.00 4 4510 \N +175017 2025-07-30 22:36:55.881675+00 2025-07-30 22:36:55.881689+00 f t SUBTOTAL 0.00 1 4590 \N +175018 2025-07-30 22:36:55.88337+00 2025-07-30 22:36:55.88338+00 f t DESCUENTO 0.00 2 4590 \N +175019 2025-07-30 22:36:55.884797+00 2025-07-30 22:36:55.884806+00 f t TOTAL 0.00 3 4590 \N +175020 2025-07-30 22:36:55.885982+00 2025-07-30 22:36:55.885989+00 f t ADELANTO 0.00 4 4590 \N +172097 2025-07-29 16:25:08.655097+00 2025-07-29 16:25:08.655108+00 f t SUBTOTAL 62000.00 1 4511 \N +172098 2025-07-29 16:25:08.65706+00 2025-07-29 16:25:08.65707+00 f t DESCUENTO 0.00 2 4511 \N +172099 2025-07-29 16:25:08.658797+00 2025-07-29 16:25:08.658805+00 f t TOTAL 62000.00 3 4511 \N +172100 2025-07-29 16:25:08.660031+00 2025-07-29 16:25:08.660038+00 f t ADELANTO 12000.00 4 4511 \N +173125 2025-07-29 23:22:10.936111+00 2025-07-29 23:22:10.936121+00 f t SUBTOTAL 0.00 1 4534 \N +173126 2025-07-29 23:22:10.938113+00 2025-07-29 23:22:10.938121+00 f t DESCUENTO 0.00 2 4534 \N +173127 2025-07-29 23:22:10.939538+00 2025-07-29 23:22:10.939545+00 f t TOTAL 0.00 3 4534 \N +173128 2025-07-29 23:22:10.940835+00 2025-07-29 23:22:10.940841+00 f t ADELANTO 0.00 4 4534 \N +172105 2025-07-29 16:43:44.442376+00 2025-07-29 16:43:44.442389+00 f t SUBTOTAL 0.00 1 4512 \N +172106 2025-07-29 16:43:44.444541+00 2025-07-29 16:43:44.444553+00 f t DESCUENTO 0.00 2 4512 \N +172107 2025-07-29 16:43:44.446402+00 2025-07-29 16:43:44.44641+00 f t TOTAL 0.00 3 4512 \N +172108 2025-07-29 16:43:44.447969+00 2025-07-29 16:43:44.447977+00 f t ADELANTO 0.00 4 4512 \N +173497 2025-07-30 11:09:57.756246+00 2025-07-30 11:09:57.756254+00 f t SUBTOTAL 42000.00 1 4545 \N +173498 2025-07-30 11:09:57.758167+00 2025-07-30 11:09:57.758175+00 f t DESCUENTO 0.00 2 4545 \N +173499 2025-07-30 11:09:57.759504+00 2025-07-30 11:09:57.75951+00 f t TOTAL 42000.00 3 4545 \N +173500 2025-07-30 11:09:57.760684+00 2025-07-30 11:09:57.760689+00 f t ADELANTO 9500.00 4 4545 \N +182069 2025-08-02 22:08:28.885707+00 2025-08-02 22:08:28.885719+00 f t SUBTOTAL 42000.00 1 4782 \N +182070 2025-08-02 22:08:28.887882+00 2025-08-02 22:08:28.887894+00 f t DESCUENTO 0.00 2 4782 \N +182071 2025-08-02 22:08:28.889463+00 2025-08-02 22:08:28.889474+00 f t TOTAL 42000.00 3 4782 \N +182072 2025-08-02 22:08:28.891474+00 2025-08-02 22:08:28.891484+00 f t ADELANTO 9500.00 4 4782 \N +172145 2025-07-29 16:53:08.379353+00 2025-07-29 16:53:08.379367+00 f t SUBTOTAL 0.00 1 4513 \N +172146 2025-07-29 16:53:08.38199+00 2025-07-29 16:53:08.382001+00 f t DESCUENTO 0.00 2 4513 \N +172147 2025-07-29 16:53:08.383771+00 2025-07-29 16:53:08.383779+00 f t TOTAL 0.00 3 4513 \N +172148 2025-07-29 16:53:08.385434+00 2025-07-29 16:53:08.385441+00 f t ADELANTO 0.00 4 4513 \N +172153 2025-07-29 17:03:20.907596+00 2025-07-29 17:03:20.907615+00 f t SUBTOTAL 0.00 1 4514 \N +172154 2025-07-29 17:03:20.910081+00 2025-07-29 17:03:20.910089+00 f t DESCUENTO 0.00 2 4514 \N +172155 2025-07-29 17:03:20.91256+00 2025-07-29 17:03:20.912572+00 f t TOTAL 0.00 3 4514 \N +172156 2025-07-29 17:03:20.915001+00 2025-07-29 17:03:20.915012+00 f t ADELANTO 0.00 4 4514 \N +173633 2025-07-30 12:03:28.951417+00 2025-07-30 12:03:28.951426+00 f t SUBTOTAL 49700.00 1 4549 \N +173634 2025-07-30 12:03:28.952966+00 2025-07-30 12:03:28.952972+00 f t DESCUENTO 0.00 2 4549 \N +173635 2025-07-30 12:03:28.95406+00 2025-07-30 12:03:28.954065+00 f t TOTAL 49700.00 3 4549 \N +173636 2025-07-30 12:03:28.955308+00 2025-07-30 12:03:28.955315+00 f t ADELANTO 11700.00 4 4549 \N +172161 2025-07-29 17:16:42.396065+00 2025-07-29 17:16:42.396077+00 f t SUBTOTAL 0.00 1 4515 \N +172162 2025-07-29 17:16:42.397862+00 2025-07-29 17:16:42.397872+00 f t DESCUENTO 0.00 2 4515 \N +172163 2025-07-29 17:16:42.399859+00 2025-07-29 17:16:42.399869+00 f t TOTAL 0.00 3 4515 \N +172164 2025-07-29 17:16:42.401575+00 2025-07-29 17:16:42.401585+00 f t ADELANTO 0.00 4 4515 \N +172169 2025-07-29 17:17:49.716651+00 2025-07-29 17:17:49.716661+00 f t SUBTOTAL 0.00 1 4516 \N +172170 2025-07-29 17:17:49.718582+00 2025-07-29 17:17:49.71859+00 f t DESCUENTO 0.00 2 4516 \N +172171 2025-07-29 17:17:49.720201+00 2025-07-29 17:17:49.720208+00 f t TOTAL 0.00 3 4516 \N +172172 2025-07-29 17:17:49.721576+00 2025-07-29 17:17:49.721586+00 f t ADELANTO 0.00 4 4516 \N +172177 2025-07-29 17:18:02.440618+00 2025-07-29 17:18:02.440633+00 f t SUBTOTAL 0.00 1 4517 \N +172178 2025-07-29 17:18:02.443298+00 2025-07-29 17:18:02.44331+00 f t DESCUENTO 0.00 2 4517 \N +172179 2025-07-29 17:18:02.446017+00 2025-07-29 17:18:02.446028+00 f t TOTAL 0.00 3 4517 \N +172180 2025-07-29 17:18:02.448554+00 2025-07-29 17:18:02.448567+00 f t ADELANTO 0.00 4 4517 \N +172225 2025-07-29 17:57:37.072119+00 2025-07-29 17:57:37.072131+00 f t SUBTOTAL 0.00 1 4519 \N +172226 2025-07-29 17:57:37.076676+00 2025-07-29 17:57:37.076689+00 f t DESCUENTO 0.00 2 4519 \N +172227 2025-07-29 17:57:37.078916+00 2025-07-29 17:57:37.078926+00 f t TOTAL 0.00 3 4519 \N +172228 2025-07-29 17:57:37.081754+00 2025-07-29 17:57:37.081767+00 f t ADELANTO 0.00 4 4519 \N +172229 2025-07-29 17:57:38.56998+00 2025-07-29 17:57:38.569991+00 f t SUBTOTAL 0.00 1 4518 \N +172230 2025-07-29 17:57:38.5726+00 2025-07-29 17:57:38.572618+00 f t DESCUENTO 0.00 2 4518 \N +172231 2025-07-29 17:57:38.574628+00 2025-07-29 17:57:38.574639+00 f t TOTAL 0.00 3 4518 \N +172232 2025-07-29 17:57:38.581534+00 2025-07-29 17:57:38.581546+00 f t ADELANTO 0.00 4 4518 \N +172257 2025-07-29 18:36:47.171839+00 2025-07-29 18:36:47.171852+00 f t SUBTOTAL 135750.00 1 4520 \N +172258 2025-07-29 18:36:47.173855+00 2025-07-29 18:36:47.173863+00 f t DESCUENTO 0.00 2 4520 \N +172259 2025-07-29 18:36:47.175549+00 2025-07-29 18:36:47.175559+00 f t TOTAL 135750.00 3 4520 \N +172260 2025-07-29 18:36:47.177249+00 2025-07-29 18:36:47.177257+00 f t ADELANTO 28250.00 4 4520 \N +174265 2025-07-30 16:05:54.335194+00 2025-07-30 16:05:54.335207+00 f t SUBTOTAL 0.00 1 4569 \N +174266 2025-07-30 16:05:54.336667+00 2025-07-30 16:05:54.336673+00 f t DESCUENTO 0.00 2 4569 \N +174267 2025-07-30 16:05:54.337933+00 2025-07-30 16:05:54.337938+00 f t TOTAL 0.00 3 4569 \N +174268 2025-07-30 16:05:54.338868+00 2025-07-30 16:05:54.338873+00 f t ADELANTO 0.00 4 4569 \N +174621 2025-07-30 18:31:23.020995+00 2025-07-30 18:31:23.021008+00 f t SUBTOTAL 0.00 1 4578 \N +174622 2025-07-30 18:31:23.022888+00 2025-07-30 18:31:23.022898+00 f t DESCUENTO 0.00 2 4578 \N +174623 2025-07-30 18:31:23.024356+00 2025-07-30 18:31:23.024366+00 f t TOTAL 0.00 3 4578 \N +174624 2025-07-30 18:31:23.025659+00 2025-07-30 18:31:23.025668+00 f t ADELANTO 0.00 4 4578 \N +174781 2025-07-30 20:02:24.033967+00 2025-07-30 20:02:24.033977+00 f t SUBTOTAL 0.00 1 4582 \N +174782 2025-07-30 20:02:24.035383+00 2025-07-30 20:02:24.035389+00 f t DESCUENTO 0.00 2 4582 \N +174783 2025-07-30 20:02:24.036567+00 2025-07-30 20:02:24.036573+00 f t TOTAL 0.00 3 4582 \N +174784 2025-07-30 20:02:24.037537+00 2025-07-30 20:02:24.037542+00 f t ADELANTO 0.00 4 4582 \N +172357 2025-07-29 19:07:16.108806+00 2025-07-29 19:07:16.108816+00 f t SUBTOTAL 70000.00 1 4521 \N +172358 2025-07-29 19:07:16.111085+00 2025-07-29 19:07:16.111097+00 f t DESCUENTO 0.00 2 4521 \N +172359 2025-07-29 19:07:16.112979+00 2025-07-29 19:07:16.112988+00 f t TOTAL 70000.00 3 4521 \N +172360 2025-07-29 19:07:16.114748+00 2025-07-29 19:07:16.114759+00 f t ADELANTO 10000.00 4 4521 \N +172373 2025-07-29 19:13:13.648882+00 2025-07-29 19:13:13.648892+00 f t SUBTOTAL 0.00 1 4522 \N +172374 2025-07-29 19:13:13.650941+00 2025-07-29 19:13:13.650953+00 f t DESCUENTO 0.00 2 4522 \N +172375 2025-07-29 19:13:13.652274+00 2025-07-29 19:13:13.652281+00 f t TOTAL 0.00 3 4522 \N +172376 2025-07-29 19:13:13.653391+00 2025-07-29 19:13:13.653398+00 f t ADELANTO 0.00 4 4522 \N +172381 2025-07-29 19:19:02.799083+00 2025-07-29 19:19:02.799098+00 f t SUBTOTAL 0.00 1 4523 \N +172382 2025-07-29 19:19:02.802642+00 2025-07-29 19:19:02.802655+00 f t DESCUENTO 0.00 2 4523 \N +172383 2025-07-29 19:19:02.805681+00 2025-07-29 19:19:02.805697+00 f t TOTAL 0.00 3 4523 \N +172384 2025-07-29 19:19:02.809983+00 2025-07-29 19:19:02.809996+00 f t ADELANTO 0.00 4 4523 \N +181569 2025-08-02 17:40:28.398847+00 2025-08-02 17:40:28.398857+00 f t SUBTOTAL 0.00 1 4766 \N +181570 2025-08-02 17:40:28.400833+00 2025-08-02 17:40:28.400841+00 f t DESCUENTO 0.00 2 4766 \N +181571 2025-08-02 17:40:28.402247+00 2025-08-02 17:40:28.402254+00 f t TOTAL 0.00 3 4766 \N +181572 2025-08-02 17:40:28.403388+00 2025-08-02 17:40:28.403394+00 f t ADELANTO 0.00 4 4766 \N +181661 2025-08-02 18:10:17.317605+00 2025-08-02 18:10:17.317615+00 f t SUBTOTAL 50000.00 1 4769 \N +181662 2025-08-02 18:10:17.319383+00 2025-08-02 18:10:17.319392+00 f t DESCUENTO 0.00 2 4769 \N +181663 2025-08-02 18:10:17.320727+00 2025-08-02 18:10:17.320735+00 f t TOTAL 50000.00 3 4769 \N +177413 2025-07-31 22:44:44.813903+00 2025-07-31 22:44:44.813913+00 f t SUBTOTAL 0.00 1 4660 \N +177414 2025-07-31 22:44:44.81549+00 2025-07-31 22:44:44.815497+00 f t DESCUENTO 0.00 2 4660 \N +177415 2025-07-31 22:44:44.816731+00 2025-07-31 22:44:44.816736+00 f t TOTAL 0.00 3 4660 \N +177416 2025-07-31 22:44:44.817764+00 2025-07-31 22:44:44.817769+00 f t ADELANTO 0.00 4 4660 \N +181664 2025-08-02 18:10:17.321953+00 2025-08-02 18:10:17.321958+00 f t ADELANTO 10000.00 4 4769 \N +194876 2025-08-08 08:15:34.579843+00 2025-08-08 08:15:34.579856+00 f t ADELANTO 9500.00 4 5094 \N +282585 2025-09-09 18:29:42.78443+00 2025-09-09 18:29:42.784443+00 f t SUBTOTAL 0.00 1 7212 \N +282586 2025-09-09 18:29:42.786321+00 2025-09-09 18:29:42.786328+00 f t DESCUENTO 0.00 2 7212 \N +282587 2025-09-09 18:29:42.787672+00 2025-09-09 18:29:42.787677+00 f t TOTAL 0.00 3 7212 \N +181981 2025-08-02 19:34:32.569822+00 2025-08-02 19:34:32.569836+00 f t SUBTOTAL 0.00 1 4776 \N +181982 2025-08-02 19:34:32.572098+00 2025-08-02 19:34:32.57211+00 f t DESCUENTO 0.00 2 4776 \N +181983 2025-08-02 19:34:32.573493+00 2025-08-02 19:34:32.573503+00 f t TOTAL 0.00 3 4776 \N +181984 2025-08-02 19:34:32.574641+00 2025-08-02 19:34:32.574649+00 f t ADELANTO 0.00 4 4776 \N +177917 2025-08-01 01:08:23.560298+00 2025-08-01 01:08:23.560308+00 f t SUBTOTAL 0.00 1 4673 \N +177918 2025-08-01 01:08:23.56183+00 2025-08-01 01:08:23.561836+00 f t DESCUENTO 0.00 2 4673 \N +177919 2025-08-01 01:08:23.562989+00 2025-08-01 01:08:23.562994+00 f t TOTAL 0.00 3 4673 \N +177920 2025-08-01 01:08:23.564128+00 2025-08-01 01:08:23.564134+00 f t ADELANTO 0.00 4 4673 \N +172445 2025-07-29 19:24:59.054951+00 2025-07-29 19:24:59.054964+00 f t SUBTOTAL 49500.00 1 4525 \N +172446 2025-07-29 19:24:59.056843+00 2025-07-29 19:24:59.05685+00 f t DESCUENTO 0.00 2 4525 \N +172447 2025-07-29 19:24:59.058212+00 2025-07-29 19:24:59.058232+00 f t TOTAL 49500.00 3 4525 \N +172448 2025-07-29 19:24:59.059642+00 2025-07-29 19:24:59.059649+00 f t ADELANTO 11500.00 4 4525 \N +174021 2025-07-30 14:10:02.582032+00 2025-07-30 14:10:02.582048+00 f t SUBTOTAL 0.00 1 4560 \N +174022 2025-07-30 14:10:02.597141+00 2025-07-30 14:10:02.597156+00 f t DESCUENTO 0.00 2 4560 \N +174023 2025-07-30 14:10:02.60139+00 2025-07-30 14:10:02.601403+00 f t TOTAL 0.00 3 4560 \N +174024 2025-07-30 14:10:02.604931+00 2025-07-30 14:10:02.604946+00 f t ADELANTO 0.00 4 4560 \N +178673 2025-08-01 11:56:22.195778+00 2025-08-01 11:56:22.195788+00 f t SUBTOTAL 0.00 1 4697 \N +178674 2025-08-01 11:56:22.197661+00 2025-08-01 11:56:22.197672+00 f t DESCUENTO 0.00 2 4697 \N +178675 2025-08-01 11:56:22.199217+00 2025-08-01 11:56:22.199227+00 f t TOTAL 0.00 3 4697 \N +178676 2025-08-01 11:56:22.201327+00 2025-08-01 11:56:22.201339+00 f t ADELANTO 0.00 4 4697 \N +174457 2025-07-30 17:48:04.13855+00 2025-07-30 17:48:04.138562+00 f t SUBTOTAL 0.00 1 4573 \N +174458 2025-07-30 17:48:04.140887+00 2025-07-30 17:48:04.140895+00 f t DESCUENTO 0.00 2 4573 \N +174459 2025-07-30 17:48:04.142291+00 2025-07-30 17:48:04.142298+00 f t TOTAL 0.00 3 4573 \N +174460 2025-07-30 17:48:04.143639+00 2025-07-30 17:48:04.143646+00 f t ADELANTO 0.00 4 4573 \N +178925 2025-08-01 13:51:37.458354+00 2025-08-01 13:51:37.458363+00 f t SUBTOTAL 0.00 1 4705 \N +178926 2025-08-01 13:51:37.459886+00 2025-08-01 13:51:37.459893+00 f t DESCUENTO 0.00 2 4705 \N +178927 2025-08-01 13:51:37.461321+00 2025-08-01 13:51:37.461328+00 f t TOTAL 0.00 3 4705 \N +178928 2025-08-01 13:51:37.462539+00 2025-08-01 13:51:37.462548+00 f t ADELANTO 0.00 4 4705 \N +179121 2025-08-01 14:23:53.738857+00 2025-08-01 14:23:53.738868+00 f t SUBTOTAL 27500.00 1 4710 \N +179122 2025-08-01 14:23:53.740824+00 2025-08-01 14:23:53.740832+00 f t DESCUENTO 0.00 2 4710 \N +179123 2025-08-01 14:23:53.742367+00 2025-08-01 14:23:53.742373+00 f t TOTAL 27500.00 3 4710 \N +179124 2025-08-01 14:23:53.743916+00 2025-08-01 14:23:53.743923+00 f t ADELANTO 27500.00 4 4710 \N +179361 2025-08-01 16:07:07.313283+00 2025-08-01 16:07:07.313297+00 f t SUBTOTAL 0.00 1 4715 \N +179362 2025-08-01 16:07:07.315451+00 2025-08-01 16:07:07.315463+00 f t DESCUENTO 0.00 2 4715 \N +179363 2025-08-01 16:07:07.31719+00 2025-08-01 16:07:07.317201+00 f t TOTAL 0.00 3 4715 \N +179364 2025-08-01 16:07:07.318906+00 2025-08-01 16:07:07.318916+00 f t ADELANTO 0.00 4 4715 \N +174857 2025-07-30 20:47:03.0076+00 2025-07-30 20:47:03.00761+00 f t SUBTOTAL 94200.00 1 4584 \N +174858 2025-07-30 20:47:03.009682+00 2025-07-30 20:47:03.009693+00 f t DESCUENTO 0.00 2 4584 \N +174859 2025-07-30 20:47:03.011224+00 2025-07-30 20:47:03.011235+00 f t TOTAL 94200.00 3 4584 \N +174860 2025-07-30 20:47:03.012763+00 2025-07-30 20:47:03.012771+00 f t ADELANTO 56200.00 4 4584 \N +179513 2025-08-01 17:07:36.073519+00 2025-08-01 17:07:36.073528+00 f t SUBTOTAL 64500.00 1 4720 \N +179514 2025-08-01 17:07:36.075255+00 2025-08-01 17:07:36.075263+00 f t DESCUENTO 0.00 2 4720 \N +179515 2025-08-01 17:07:36.076491+00 2025-08-01 17:07:36.076498+00 f t TOTAL 64500.00 3 4720 \N +174905 2025-07-30 21:29:04.394044+00 2025-07-30 21:29:04.394053+00 f t SUBTOTAL 42000.00 1 4586 \N +174906 2025-07-30 21:29:04.396282+00 2025-07-30 21:29:04.396296+00 f t DESCUENTO 0.00 2 4586 \N +174907 2025-07-30 21:29:04.400609+00 2025-07-30 21:29:04.400627+00 f t TOTAL 42000.00 3 4586 \N +174908 2025-07-30 21:29:04.402845+00 2025-07-30 21:29:04.402855+00 f t ADELANTO 9500.00 4 4586 \N +179516 2025-08-01 17:07:36.077603+00 2025-08-01 17:07:36.077608+00 f t ADELANTO 17000.00 4 4720 \N +175025 2025-07-30 23:28:24.24346+00 2025-07-30 23:28:24.243469+00 f t SUBTOTAL 0.00 1 4591 \N +175026 2025-07-30 23:28:24.244634+00 2025-07-30 23:28:24.24464+00 f t DESCUENTO 0.00 2 4591 \N +175027 2025-07-30 23:28:24.245762+00 2025-07-30 23:28:24.245771+00 f t TOTAL 0.00 3 4591 \N +175028 2025-07-30 23:28:24.246783+00 2025-07-30 23:28:24.246789+00 f t ADELANTO 0.00 4 4591 \N +179973 2025-08-01 21:15:21.107644+00 2025-08-01 21:15:21.107656+00 f t SUBTOTAL 0.00 1 4730 \N +179974 2025-08-01 21:15:21.109994+00 2025-08-01 21:15:21.110005+00 f t DESCUENTO 0.00 2 4730 \N +179975 2025-08-01 21:15:21.111435+00 2025-08-01 21:15:21.111444+00 f t TOTAL 0.00 3 4730 \N +179976 2025-08-01 21:15:21.112856+00 2025-08-01 21:15:21.112865+00 f t ADELANTO 0.00 4 4730 \N +175185 2025-07-31 00:13:48.245132+00 2025-07-31 00:13:48.245141+00 f t SUBTOTAL 95000.00 1 4595 \N +175186 2025-07-31 00:13:48.247071+00 2025-07-31 00:13:48.247079+00 f t DESCUENTO 0.00 2 4595 \N +175187 2025-07-31 00:13:48.248442+00 2025-07-31 00:13:48.248448+00 f t TOTAL 95000.00 3 4595 \N +175188 2025-07-31 00:13:48.249565+00 2025-07-31 00:13:48.24957+00 f t ADELANTO 10000.00 4 4595 \N +180097 2025-08-01 22:24:46.734267+00 2025-08-01 22:24:46.734275+00 f t SUBTOTAL 64500.00 1 4734 \N +180098 2025-08-01 22:24:46.73624+00 2025-08-01 22:24:46.736247+00 f t DESCUENTO 0.00 2 4734 \N +180099 2025-08-01 22:24:46.737545+00 2025-08-01 22:24:46.737552+00 f t TOTAL 64500.00 3 4734 \N +180100 2025-08-01 22:24:46.7387+00 2025-08-01 22:24:46.738706+00 f t ADELANTO 17000.00 4 4734 \N +173209 2025-07-30 00:55:10.837103+00 2025-07-30 00:55:10.837116+00 f t SUBTOTAL 82200.00 1 4536 \N +173210 2025-07-30 00:55:10.839408+00 2025-07-30 00:55:10.839417+00 f t DESCUENTO 0.00 2 4536 \N +173211 2025-07-30 00:55:10.841158+00 2025-07-30 00:55:10.841167+00 f t TOTAL 82200.00 3 4536 \N +173212 2025-07-30 00:55:10.84291+00 2025-07-30 00:55:10.842921+00 f t ADELANTO 44200.00 4 4536 \N +181669 2025-08-02 18:57:59.171654+00 2025-08-02 18:57:59.171665+00 f t SUBTOTAL 0.00 1 4770 \N +181670 2025-08-02 18:57:59.173461+00 2025-08-02 18:57:59.173472+00 f t DESCUENTO 0.00 2 4770 \N +181671 2025-08-02 18:57:59.174966+00 2025-08-02 18:57:59.174975+00 f t TOTAL 0.00 3 4770 \N +181672 2025-08-02 18:57:59.176251+00 2025-08-02 18:57:59.176257+00 f t ADELANTO 0.00 4 4770 \N +186345 2025-08-04 22:57:05.560314+00 2025-08-04 22:57:05.560326+00 f t SUBTOTAL 42000.00 1 4893 \N +186346 2025-08-04 22:57:05.562778+00 2025-08-04 22:57:05.562787+00 f t DESCUENTO 0.00 2 4893 \N +186347 2025-08-04 22:57:05.5647+00 2025-08-04 22:57:05.56471+00 f t TOTAL 42000.00 3 4893 \N +186348 2025-08-04 22:57:05.566237+00 2025-08-04 22:57:05.566245+00 f t ADELANTO 9500.00 4 4893 \N +181989 2025-08-02 20:42:53.459452+00 2025-08-02 20:42:53.459463+00 f t SUBTOTAL 0.00 1 4777 \N +181990 2025-08-02 20:42:53.460931+00 2025-08-02 20:42:53.460941+00 f t DESCUENTO 0.00 2 4777 \N +181991 2025-08-02 20:42:53.462295+00 2025-08-02 20:42:53.462305+00 f t TOTAL 0.00 3 4777 \N +181992 2025-08-02 20:42:53.463579+00 2025-08-02 20:42:53.463586+00 f t ADELANTO 0.00 4 4777 \N +182077 2025-08-02 22:20:19.845977+00 2025-08-02 22:20:19.84599+00 f t SUBTOTAL 0.00 1 4783 \N +182078 2025-08-02 22:20:19.848415+00 2025-08-02 22:20:19.848426+00 f t DESCUENTO 0.00 2 4783 \N +182079 2025-08-02 22:20:19.850356+00 2025-08-02 22:20:19.850367+00 f t TOTAL 0.00 3 4783 \N +182080 2025-08-02 22:20:19.852111+00 2025-08-02 22:20:19.852122+00 f t ADELANTO 0.00 4 4783 \N +177925 2025-08-01 01:08:47.095338+00 2025-08-01 01:08:47.095351+00 f t SUBTOTAL 0.00 1 4674 \N +177926 2025-08-01 01:08:47.097178+00 2025-08-01 01:08:47.097187+00 f t DESCUENTO 0.00 2 4674 \N +177927 2025-08-01 01:08:47.098734+00 2025-08-01 01:08:47.098741+00 f t TOTAL 0.00 3 4674 \N +177928 2025-08-01 01:08:47.100224+00 2025-08-01 01:08:47.100231+00 f t ADELANTO 0.00 4 4674 \N +182761 2025-08-03 14:46:09.73948+00 2025-08-03 14:46:09.739493+00 f t SUBTOTAL 0.00 1 4800 \N +182762 2025-08-03 14:46:09.741321+00 2025-08-03 14:46:09.741332+00 f t DESCUENTO 0.00 2 4800 \N +182763 2025-08-03 14:46:09.743167+00 2025-08-03 14:46:09.743178+00 f t TOTAL 0.00 3 4800 \N +182764 2025-08-03 14:46:09.744921+00 2025-08-03 14:46:09.744931+00 f t ADELANTO 0.00 4 4800 \N +178529 2025-08-01 11:17:54.97843+00 2025-08-01 11:17:54.97844+00 f t SUBTOTAL 64500.00 1 4693 \N +178530 2025-08-01 11:17:54.98049+00 2025-08-01 11:17:54.980497+00 f t DESCUENTO 0.00 2 4693 \N +178531 2025-08-01 11:17:54.982028+00 2025-08-01 11:17:54.982035+00 f t TOTAL 64500.00 3 4693 \N +178532 2025-08-01 11:17:54.983843+00 2025-08-01 11:17:54.983851+00 f t ADELANTO 17000.00 4 4693 \N +178681 2025-08-01 12:50:03.746567+00 2025-08-01 12:50:03.746585+00 f t SUBTOTAL 0.00 1 4698 \N +178682 2025-08-01 12:50:03.750614+00 2025-08-01 12:50:03.750628+00 f t DESCUENTO 0.00 2 4698 \N +172797 2025-07-29 19:50:06.949263+00 2025-07-29 19:50:06.949277+00 f t SUBTOTAL 50000.00 1 4524 \N +172798 2025-07-29 19:50:06.954158+00 2025-07-29 19:50:06.954171+00 f t DESCUENTO 0.00 2 4524 \N +172799 2025-07-29 19:50:06.956907+00 2025-07-29 19:50:06.956921+00 f t TOTAL 50000.00 3 4524 \N +172800 2025-07-29 19:50:06.959931+00 2025-07-29 19:50:06.959946+00 f t ADELANTO 10000.00 4 4524 \N +178683 2025-08-01 12:50:03.754099+00 2025-08-01 12:50:03.754112+00 f t TOTAL 0.00 3 4698 \N +178684 2025-08-01 12:50:03.756321+00 2025-08-01 12:50:03.756333+00 f t ADELANTO 0.00 4 4698 \N +174517 2025-07-30 17:58:26.035586+00 2025-07-30 17:58:26.035595+00 f t SUBTOTAL 62000.00 1 4574 \N +174518 2025-07-30 17:58:26.037219+00 2025-07-30 17:58:26.037229+00 f t DESCUENTO 0.00 2 4574 \N +174519 2025-07-30 17:58:26.038488+00 2025-07-30 17:58:26.038497+00 f t TOTAL 62000.00 3 4574 \N +174520 2025-07-30 17:58:26.03984+00 2025-07-30 17:58:26.039846+00 f t ADELANTO 12000.00 4 4574 \N +178977 2025-08-01 13:53:33.76324+00 2025-08-01 13:53:33.763249+00 f t SUBTOTAL 0.00 1 4706 \N +178978 2025-08-01 13:53:33.765296+00 2025-08-01 13:53:33.765307+00 f t DESCUENTO 0.00 2 4706 \N +178979 2025-08-01 13:53:33.766874+00 2025-08-01 13:53:33.76688+00 f t TOTAL 0.00 3 4706 \N +178980 2025-08-01 13:53:33.768088+00 2025-08-01 13:53:33.768095+00 f t ADELANTO 0.00 4 4706 \N +183765 2025-08-04 00:09:51.185868+00 2025-08-04 00:09:51.18588+00 f t SUBTOTAL 49500.00 1 4824 \N +183766 2025-08-04 00:09:51.188187+00 2025-08-04 00:09:51.188198+00 f t DESCUENTO 0.00 2 4824 \N +183767 2025-08-04 00:09:51.189948+00 2025-08-04 00:09:51.189957+00 f t TOTAL 49500.00 3 4824 \N +183768 2025-08-04 00:09:51.191446+00 2025-08-04 00:09:51.191457+00 f t ADELANTO 11500.00 4 4824 \N +174865 2025-07-30 20:49:50.359445+00 2025-07-30 20:49:50.359459+00 f t SUBTOTAL 0.00 1 4585 \N +174866 2025-07-30 20:49:50.36119+00 2025-07-30 20:49:50.361198+00 f t DESCUENTO 0.00 2 4585 \N +174867 2025-07-30 20:49:50.362516+00 2025-07-30 20:49:50.362523+00 f t TOTAL 0.00 3 4585 \N +174868 2025-07-30 20:49:50.363709+00 2025-07-30 20:49:50.363716+00 f t ADELANTO 0.00 4 4585 \N +179465 2025-08-01 16:18:05.086774+00 2025-08-01 16:18:05.086789+00 f t SUBTOTAL 95700.00 1 4718 \N +179466 2025-08-01 16:18:05.090112+00 2025-08-01 16:18:05.090126+00 f t DESCUENTO 0.00 2 4718 \N +179467 2025-08-01 16:18:05.092483+00 2025-08-01 16:18:05.092496+00 f t TOTAL 95700.00 3 4718 \N +179468 2025-08-01 16:18:05.095087+00 2025-08-01 16:18:05.095096+00 f t ADELANTO 57700.00 4 4718 \N +184069 2025-08-04 08:56:42.650133+00 2025-08-04 08:56:42.650143+00 f t SUBTOTAL 68000.00 1 4834 \N +184070 2025-08-04 08:56:42.652069+00 2025-08-04 08:56:42.652077+00 f t DESCUENTO 0.00 2 4834 \N +184071 2025-08-04 08:56:42.65337+00 2025-08-04 08:56:42.653376+00 f t TOTAL 68000.00 3 4834 \N +184072 2025-08-04 08:56:42.655042+00 2025-08-04 08:56:42.655048+00 f t ADELANTO 13000.00 4 4834 \N +172921 2025-07-29 19:59:29.989442+00 2025-07-29 19:59:29.989452+00 f t SUBTOTAL 322500.00 1 4526 \N +172922 2025-07-29 19:59:29.991468+00 2025-07-29 19:59:29.991479+00 f t DESCUENTO 0.00 2 4526 \N +172923 2025-07-29 19:59:29.993191+00 2025-07-29 19:59:29.9932+00 f t TOTAL 322500.00 3 4526 \N +172924 2025-07-29 19:59:29.994692+00 2025-07-29 19:59:29.994702+00 f t ADELANTO 85000.00 4 4526 \N +184265 2025-08-04 13:09:12.273897+00 2025-08-04 13:09:12.27391+00 f t SUBTOTAL 42000.00 1 4839 \N +184266 2025-08-04 13:09:12.276489+00 2025-08-04 13:09:12.276501+00 f t DESCUENTO 0.00 2 4839 \N +184267 2025-08-04 13:09:12.278743+00 2025-08-04 13:09:12.278754+00 f t TOTAL 42000.00 3 4839 \N +184268 2025-08-04 13:09:12.280807+00 2025-08-04 13:09:12.280817+00 f t ADELANTO 9500.00 4 4839 \N +172949 2025-07-29 20:23:01.532537+00 2025-07-29 20:23:01.532548+00 f t SUBTOTAL 64500.00 1 4527 \N +172950 2025-07-29 20:23:01.534955+00 2025-07-29 20:23:01.534968+00 f t DESCUENTO 0.00 2 4527 \N +172951 2025-07-29 20:23:01.537241+00 2025-07-29 20:23:01.537252+00 f t TOTAL 64500.00 3 4527 \N +172952 2025-07-29 20:23:01.539474+00 2025-07-29 20:23:01.539489+00 f t ADELANTO 17000.00 4 4527 \N +180105 2025-08-01 22:36:53.464795+00 2025-08-01 22:36:53.464808+00 f t SUBTOTAL 0.00 1 4736 \N +180106 2025-08-01 22:36:53.466791+00 2025-08-01 22:36:53.466801+00 f t DESCUENTO 0.00 2 4736 \N +180107 2025-08-01 22:36:53.468757+00 2025-08-01 22:36:53.468768+00 f t TOTAL 0.00 3 4736 \N +180108 2025-08-01 22:36:53.470413+00 2025-08-01 22:36:53.470422+00 f t ADELANTO 0.00 4 4736 \N +282588 2025-09-09 18:29:42.788799+00 2025-09-09 18:29:42.788804+00 f t ADELANTO 0.00 4 7212 \N +172985 2025-07-29 20:23:47.238778+00 2025-07-29 20:23:47.23879+00 f t SUBTOTAL 42000.00 1 4528 \N +172986 2025-07-29 20:23:47.245088+00 2025-07-29 20:23:47.245102+00 f t DESCUENTO 0.00 2 4528 \N +172987 2025-07-29 20:23:47.247615+00 2025-07-29 20:23:47.247627+00 f t TOTAL 42000.00 3 4528 \N +172988 2025-07-29 20:23:47.249791+00 2025-07-29 20:23:47.249803+00 f t ADELANTO 9500.00 4 4528 \N +177577 2025-07-31 22:56:20.93462+00 2025-07-31 22:56:20.934633+00 f t SUBTOTAL 0.00 1 4665 \N +177578 2025-07-31 22:56:20.936583+00 2025-07-31 22:56:20.936596+00 f t DESCUENTO 0.00 2 4665 \N +177579 2025-07-31 22:56:20.938349+00 2025-07-31 22:56:20.938361+00 f t TOTAL 0.00 3 4665 \N +177580 2025-07-31 22:56:20.940315+00 2025-07-31 22:56:20.940326+00 f t ADELANTO 0.00 4 4665 \N +177733 2025-08-01 00:07:40.38414+00 2025-08-01 00:07:40.38415+00 f t SUBTOTAL 0.00 1 4669 \N +177734 2025-08-01 00:07:40.386405+00 2025-08-01 00:07:40.386416+00 f t DESCUENTO 0.00 2 4669 \N +177735 2025-08-01 00:07:40.388131+00 2025-08-01 00:07:40.38814+00 f t TOTAL 0.00 3 4669 \N +173005 2025-07-29 20:32:32.96484+00 2025-07-29 20:32:32.96485+00 f t SUBTOTAL 0.00 1 4529 \N +173006 2025-07-29 20:32:32.966873+00 2025-07-29 20:32:32.966881+00 f t DESCUENTO 0.00 2 4529 \N +173007 2025-07-29 20:32:32.969042+00 2025-07-29 20:32:32.96905+00 f t TOTAL 0.00 3 4529 \N +173008 2025-07-29 20:32:32.970504+00 2025-07-29 20:32:32.970511+00 f t ADELANTO 0.00 4 4529 \N +177736 2025-08-01 00:07:40.389494+00 2025-08-01 00:07:40.389501+00 f t ADELANTO 0.00 4 4669 \N +173557 2025-07-30 11:51:47.742996+00 2025-07-30 11:51:47.743004+00 f t SUBTOTAL 42000.00 1 4547 \N +173558 2025-07-30 11:51:47.745396+00 2025-07-30 11:51:47.745405+00 f t DESCUENTO 0.00 2 4547 \N +173559 2025-07-30 11:51:47.74769+00 2025-07-30 11:51:47.747698+00 f t TOTAL 42000.00 3 4547 \N +173560 2025-07-30 11:51:47.750039+00 2025-07-30 11:51:47.75005+00 f t ADELANTO 9500.00 4 4547 \N +173033 2025-07-29 21:15:41.652747+00 2025-07-29 21:15:41.652761+00 f t SUBTOTAL 0.00 1 4530 \N +173034 2025-07-29 21:15:41.655032+00 2025-07-29 21:15:41.655041+00 f t DESCUENTO 0.00 2 4530 \N +173035 2025-07-29 21:15:41.656825+00 2025-07-29 21:15:41.656835+00 f t TOTAL 0.00 3 4530 \N +173036 2025-07-29 21:15:41.658649+00 2025-07-29 21:15:41.658659+00 f t ADELANTO 0.00 4 4530 \N +178229 2025-08-01 06:17:39.678676+00 2025-08-01 06:17:39.678686+00 f t SUBTOTAL 42000.00 1 4683 \N +178230 2025-08-01 06:17:39.68072+00 2025-08-01 06:17:39.680729+00 f t DESCUENTO 0.00 2 4683 \N +178231 2025-08-01 06:17:39.682085+00 2025-08-01 06:17:39.682092+00 f t TOTAL 42000.00 3 4683 \N +178232 2025-08-01 06:17:39.68339+00 2025-08-01 06:17:39.683395+00 f t ADELANTO 9500.00 4 4683 \N +178277 2025-08-01 06:43:48.144334+00 2025-08-01 06:43:48.144345+00 f t SUBTOTAL 64500.00 1 4684 \N +178278 2025-08-01 06:43:48.147257+00 2025-08-01 06:43:48.147266+00 f t DESCUENTO 0.00 2 4684 \N +178279 2025-08-01 06:43:48.149694+00 2025-08-01 06:43:48.149706+00 f t TOTAL 64500.00 3 4684 \N +178280 2025-08-01 06:43:48.15188+00 2025-08-01 06:43:48.15189+00 f t ADELANTO 17000.00 4 4684 \N +174113 2025-07-30 14:38:48.643525+00 2025-07-30 14:38:48.643535+00 f t SUBTOTAL 0.00 1 4562 \N +174114 2025-07-30 14:38:48.645482+00 2025-07-30 14:38:48.64549+00 f t DESCUENTO 0.00 2 4562 \N +174115 2025-07-30 14:38:48.647251+00 2025-07-30 14:38:48.64726+00 f t TOTAL 0.00 3 4562 \N +174116 2025-07-30 14:38:48.64848+00 2025-07-30 14:38:48.648485+00 f t ADELANTO 0.00 4 4562 \N +178429 2025-08-01 09:49:56.707277+00 2025-08-01 09:49:56.707287+00 f t SUBTOTAL 0.00 1 4689 \N +178430 2025-08-01 09:49:56.709519+00 2025-08-01 09:49:56.709527+00 f t DESCUENTO 0.00 2 4689 \N +178431 2025-08-01 09:49:56.711012+00 2025-08-01 09:49:56.711022+00 f t TOTAL 0.00 3 4689 \N +178432 2025-08-01 09:49:56.712764+00 2025-08-01 09:49:56.712776+00 f t ADELANTO 0.00 4 4689 \N +178581 2025-08-01 11:26:58.506404+00 2025-08-01 11:26:58.506417+00 f t SUBTOTAL 0.00 1 4694 \N +178582 2025-08-01 11:26:58.508976+00 2025-08-01 11:26:58.508987+00 f t DESCUENTO 0.00 2 4694 \N +178583 2025-08-01 11:26:58.5107+00 2025-08-01 11:26:58.510712+00 f t TOTAL 0.00 3 4694 \N +178584 2025-08-01 11:26:58.512863+00 2025-08-01 11:26:58.512874+00 f t ADELANTO 0.00 4 4694 \N +174437 2025-07-30 17:30:03.941435+00 2025-07-30 17:30:03.941449+00 f t SUBTOTAL 95000.00 1 4572 \N +174438 2025-07-30 17:30:03.952614+00 2025-07-30 17:30:03.95263+00 f t DESCUENTO 0.00 2 4572 \N +174439 2025-07-30 17:30:03.959887+00 2025-07-30 17:30:03.959903+00 f t TOTAL 95000.00 3 4572 \N +174440 2025-07-30 17:30:03.965571+00 2025-07-30 17:30:03.965585+00 f t ADELANTO 10000.00 4 4572 \N +178689 2025-08-01 13:02:35.513377+00 2025-08-01 13:02:35.51339+00 f t SUBTOTAL 0.00 1 4699 \N +178690 2025-08-01 13:02:35.515077+00 2025-08-01 13:02:35.515087+00 f t DESCUENTO 0.00 2 4699 \N +178691 2025-08-01 13:02:35.516671+00 2025-08-01 13:02:35.51668+00 f t TOTAL 0.00 3 4699 \N +178692 2025-08-01 13:02:35.518075+00 2025-08-01 13:02:35.518082+00 f t ADELANTO 0.00 4 4699 \N +174661 2025-07-30 18:33:49.273597+00 2025-07-30 18:33:49.273605+00 f t SUBTOTAL 64500.00 1 4579 \N +174662 2025-07-30 18:33:49.275666+00 2025-07-30 18:33:49.275672+00 f t DESCUENTO 0.00 2 4579 \N +174663 2025-07-30 18:33:49.276765+00 2025-07-30 18:33:49.276771+00 f t TOTAL 64500.00 3 4579 \N +174664 2025-07-30 18:33:49.277824+00 2025-07-30 18:33:49.27783+00 f t ADELANTO 17000.00 4 4579 \N +174921 2025-07-30 21:55:42.029916+00 2025-07-30 21:55:42.029928+00 f t SUBTOTAL 0.00 1 4588 \N +174922 2025-07-30 21:55:42.031729+00 2025-07-30 21:55:42.03174+00 f t DESCUENTO 0.00 2 4588 \N +174923 2025-07-30 21:55:42.033272+00 2025-07-30 21:55:42.033281+00 f t TOTAL 0.00 3 4588 \N +174924 2025-07-30 21:55:42.03481+00 2025-07-30 21:55:42.034819+00 f t ADELANTO 0.00 4 4588 \N +174961 2025-07-30 21:56:19.241311+00 2025-07-30 21:56:19.241323+00 f t SUBTOTAL 49500.00 1 4587 \N +174962 2025-07-30 21:56:19.2435+00 2025-07-30 21:56:19.243511+00 f t DESCUENTO 0.00 2 4587 \N +174963 2025-07-30 21:56:19.245107+00 2025-07-30 21:56:19.245116+00 f t TOTAL 49500.00 3 4587 \N +174964 2025-07-30 21:56:19.24701+00 2025-07-30 21:56:19.247019+00 f t ADELANTO 11500.00 4 4587 \N +179521 2025-08-01 17:07:39.219974+00 2025-08-01 17:07:39.219982+00 f t SUBTOTAL 42000.00 1 4719 \N +179522 2025-08-01 17:07:39.221516+00 2025-08-01 17:07:39.221524+00 f t DESCUENTO 0.00 2 4719 \N +179523 2025-08-01 17:07:39.22307+00 2025-08-01 17:07:39.223079+00 f t TOTAL 42000.00 3 4719 \N +179524 2025-08-01 17:07:39.224566+00 2025-08-01 17:07:39.224574+00 f t ADELANTO 9500.00 4 4719 \N +175057 2025-07-30 23:45:27.025268+00 2025-07-30 23:45:27.02528+00 f t SUBTOTAL 42000.00 1 4592 \N +175058 2025-07-30 23:45:27.027322+00 2025-07-30 23:45:27.027331+00 f t DESCUENTO 0.00 2 4592 \N +175059 2025-07-30 23:45:27.029009+00 2025-07-30 23:45:27.02902+00 f t TOTAL 42000.00 3 4592 \N +175060 2025-07-30 23:45:27.030591+00 2025-07-30 23:45:27.030602+00 f t ADELANTO 9500.00 4 4592 \N +179753 2025-08-01 18:42:46.417003+00 2025-08-01 18:42:46.417014+00 f t SUBTOTAL 50000.00 1 4723 \N +179754 2025-08-01 18:42:46.418933+00 2025-08-01 18:42:46.41894+00 f t DESCUENTO 0.00 2 4723 \N +179755 2025-08-01 18:42:46.420985+00 2025-08-01 18:42:46.420994+00 f t TOTAL 50000.00 3 4723 \N +179756 2025-08-01 18:42:46.422448+00 2025-08-01 18:42:46.422454+00 f t ADELANTO 10000.00 4 4723 \N +175153 2025-07-30 23:59:29.006197+00 2025-07-30 23:59:29.006207+00 f t SUBTOTAL 0.00 1 4594 \N +175154 2025-07-30 23:59:29.008575+00 2025-07-30 23:59:29.008586+00 f t DESCUENTO 0.00 2 4594 \N +175155 2025-07-30 23:59:29.010043+00 2025-07-30 23:59:29.01005+00 f t TOTAL 0.00 3 4594 \N +175156 2025-07-30 23:59:29.011357+00 2025-07-30 23:59:29.011363+00 f t ADELANTO 0.00 4 4594 \N +186125 2025-08-04 21:23:00.834294+00 2025-08-04 21:23:00.834303+00 f t SUBTOTAL 50000.00 1 4886 \N +177509 2025-07-31 22:52:27.914586+00 2025-07-31 22:52:27.914598+00 f t SUBTOTAL 62000.00 1 4662 \N +177510 2025-07-31 22:52:27.916944+00 2025-07-31 22:52:27.916957+00 f t DESCUENTO 0.00 2 4662 \N +177511 2025-07-31 22:52:27.918607+00 2025-07-31 22:52:27.918618+00 f t TOTAL 62000.00 3 4662 \N +177512 2025-07-31 22:52:27.9203+00 2025-07-31 22:52:27.920311+00 f t ADELANTO 12000.00 4 4662 \N +186126 2025-08-04 21:23:00.836668+00 2025-08-04 21:23:00.836676+00 f t DESCUENTO 0.00 2 4886 \N +186127 2025-08-04 21:23:00.838222+00 2025-08-04 21:23:00.838233+00 f t TOTAL 50000.00 3 4886 \N +186128 2025-08-04 21:23:00.840718+00 2025-08-04 21:23:00.84073+00 f t ADELANTO 10000.00 4 4886 \N +177641 2025-07-31 22:59:03.433746+00 2025-07-31 22:59:03.433762+00 f t SUBTOTAL 0.00 1 4667 \N +177642 2025-07-31 22:59:03.437222+00 2025-07-31 22:59:03.437236+00 f t DESCUENTO 0.00 2 4667 \N +177643 2025-07-31 22:59:03.439942+00 2025-07-31 22:59:03.439956+00 f t TOTAL 0.00 3 4667 \N +177644 2025-07-31 22:59:03.442198+00 2025-07-31 22:59:03.442211+00 f t ADELANTO 0.00 4 4667 \N +181997 2025-08-02 20:44:02.687379+00 2025-08-02 20:44:02.687392+00 f t SUBTOTAL 0.00 1 4778 \N +181998 2025-08-02 20:44:02.69005+00 2025-08-02 20:44:02.690064+00 f t DESCUENTO 0.00 2 4778 \N +181999 2025-08-02 20:44:02.691881+00 2025-08-02 20:44:02.691894+00 f t TOTAL 0.00 3 4778 \N +182000 2025-08-02 20:44:02.694021+00 2025-08-02 20:44:02.694031+00 f t ADELANTO 0.00 4 4778 \N +175253 2025-07-31 00:40:17.932822+00 2025-07-31 00:40:17.932831+00 f t SUBTOTAL 64500.00 1 4596 \N +175254 2025-07-31 00:40:17.934688+00 2025-07-31 00:40:17.934698+00 f t DESCUENTO 0.00 2 4596 \N +175255 2025-07-31 00:40:17.93616+00 2025-07-31 00:40:17.936169+00 f t TOTAL 64500.00 3 4596 \N +175256 2025-07-31 00:40:17.937693+00 2025-07-31 00:40:17.9377+00 f t ADELANTO 17000.00 4 4596 \N +178049 2025-08-01 04:36:55.056437+00 2025-08-01 04:36:55.056449+00 f t SUBTOTAL 0.00 1 4681 \N +178050 2025-08-01 04:36:55.059512+00 2025-08-01 04:36:55.059521+00 f t DESCUENTO 0.00 2 4681 \N +178051 2025-08-01 04:36:55.061211+00 2025-08-01 04:36:55.061221+00 f t TOTAL 0.00 3 4681 \N +178052 2025-08-01 04:36:55.062829+00 2025-08-01 04:36:55.062837+00 f t ADELANTO 0.00 4 4681 \N +178137 2025-08-01 04:38:27.085389+00 2025-08-01 04:38:27.085401+00 f t SUBTOTAL 0.00 1 4680 \N +178138 2025-08-01 04:38:27.087472+00 2025-08-01 04:38:27.087481+00 f t DESCUENTO 0.00 2 4680 \N +178139 2025-08-01 04:38:27.089165+00 2025-08-01 04:38:27.089174+00 f t TOTAL 0.00 3 4680 \N +178140 2025-08-01 04:38:27.093977+00 2025-08-01 04:38:27.093988+00 f t ADELANTO 0.00 4 4680 \N +187041 2025-08-05 11:39:49.489325+00 2025-08-05 11:39:49.489334+00 f t SUBTOTAL 0.00 1 4913 \N +187042 2025-08-05 11:39:49.491011+00 2025-08-05 11:39:49.491021+00 f t DESCUENTO 0.00 2 4913 \N +187043 2025-08-05 11:39:49.49252+00 2025-08-05 11:39:49.492528+00 f t TOTAL 0.00 3 4913 \N +187044 2025-08-05 11:39:49.493977+00 2025-08-05 11:39:49.493983+00 f t ADELANTO 0.00 4 4913 \N +175333 2025-07-31 00:45:06.852577+00 2025-07-31 00:45:06.852587+00 f t SUBTOTAL 0.00 1 4597 \N +175334 2025-07-31 00:45:06.854705+00 2025-07-31 00:45:06.854714+00 f t DESCUENTO 0.00 2 4597 \N +175335 2025-07-31 00:45:06.857973+00 2025-07-31 00:45:06.857983+00 f t TOTAL 0.00 3 4597 \N +175336 2025-07-31 00:45:06.85983+00 2025-07-31 00:45:06.859839+00 f t ADELANTO 0.00 4 4597 \N +187349 2025-08-05 14:19:05.736035+00 2025-08-05 14:19:05.736048+00 f t SUBTOTAL 0.00 1 4923 \N +187350 2025-08-05 14:19:05.738987+00 2025-08-05 14:19:05.739002+00 f t DESCUENTO 0.00 2 4923 \N +187351 2025-08-05 14:19:05.741685+00 2025-08-05 14:19:05.741696+00 f t TOTAL 0.00 3 4923 \N +187352 2025-08-05 14:19:05.748044+00 2025-08-05 14:19:05.748056+00 f t ADELANTO 0.00 4 4923 \N +175369 2025-07-31 00:50:02.14529+00 2025-07-31 00:50:02.145308+00 f t SUBTOTAL 0.00 1 4598 \N +175370 2025-07-31 00:50:02.148975+00 2025-07-31 00:50:02.14899+00 f t DESCUENTO 0.00 2 4598 \N +175371 2025-07-31 00:50:02.152263+00 2025-07-31 00:50:02.152279+00 f t TOTAL 0.00 3 4598 \N +175372 2025-07-31 00:50:02.156336+00 2025-07-31 00:50:02.156351+00 f t ADELANTO 0.00 4 4598 \N +175377 2025-07-31 00:53:46.85181+00 2025-07-31 00:53:46.851824+00 f t SUBTOTAL 0.00 1 4599 \N +175378 2025-07-31 00:53:46.853517+00 2025-07-31 00:53:46.853525+00 f t DESCUENTO 0.00 2 4599 \N +175379 2025-07-31 00:53:46.854669+00 2025-07-31 00:53:46.854676+00 f t TOTAL 0.00 3 4599 \N +175380 2025-07-31 00:53:46.856029+00 2025-07-31 00:53:46.856036+00 f t ADELANTO 0.00 4 4599 \N +187533 2025-08-05 15:55:57.909581+00 2025-08-05 15:55:57.909593+00 f t SUBTOTAL 0.00 1 4929 \N +187534 2025-08-05 15:55:57.911804+00 2025-08-05 15:55:57.911811+00 f t DESCUENTO 0.00 2 4929 \N +187535 2025-08-05 15:55:57.913322+00 2025-08-05 15:55:57.913333+00 f t TOTAL 0.00 3 4929 \N +187536 2025-08-05 15:55:57.914889+00 2025-08-05 15:55:57.914899+00 f t ADELANTO 0.00 4 4929 \N +175409 2025-07-31 01:38:08.026762+00 2025-07-31 01:38:08.026771+00 f t SUBTOTAL 123500.00 1 4600 \N +175410 2025-07-31 01:38:08.028783+00 2025-07-31 01:38:08.028792+00 f t DESCUENTO 0.00 2 4600 \N +175411 2025-07-31 01:38:08.030568+00 2025-07-31 01:38:08.030576+00 f t TOTAL 123500.00 3 4600 \N +175412 2025-07-31 01:38:08.03219+00 2025-07-31 01:38:08.032197+00 f t ADELANTO 26000.00 4 4600 \N +183821 2025-08-04 00:53:10.392936+00 2025-08-04 00:53:10.392945+00 f t SUBTOTAL 50000.00 1 4826 \N +183822 2025-08-04 00:53:10.394903+00 2025-08-04 00:53:10.394912+00 f t DESCUENTO 0.00 2 4826 \N +183823 2025-08-04 00:53:10.396699+00 2025-08-04 00:53:10.39671+00 f t TOTAL 50000.00 3 4826 \N +183824 2025-08-04 00:53:10.398088+00 2025-08-04 00:53:10.398097+00 f t ADELANTO 10000.00 4 4826 \N +175461 2025-07-31 01:47:31.280583+00 2025-07-31 01:47:31.280591+00 f t SUBTOTAL 123500.00 1 4601 \N +175462 2025-07-31 01:47:31.282399+00 2025-07-31 01:47:31.282408+00 f t DESCUENTO 0.00 2 4601 \N +175463 2025-07-31 01:47:31.284046+00 2025-07-31 01:47:31.284056+00 f t TOTAL 123500.00 3 4601 \N +175464 2025-07-31 01:47:31.285383+00 2025-07-31 01:47:31.28539+00 f t ADELANTO 26000.00 4 4601 \N +175469 2025-07-31 02:15:10.736965+00 2025-07-31 02:15:10.736975+00 f t SUBTOTAL 0.00 1 4602 \N +175470 2025-07-31 02:15:10.73878+00 2025-07-31 02:15:10.738791+00 f t DESCUENTO 0.00 2 4602 \N +175471 2025-07-31 02:15:10.740583+00 2025-07-31 02:15:10.740594+00 f t TOTAL 0.00 3 4602 \N +175472 2025-07-31 02:15:10.742421+00 2025-07-31 02:15:10.742433+00 f t ADELANTO 0.00 4 4602 \N +179985 2025-08-01 21:31:22.7423+00 2025-08-01 21:31:22.742314+00 f t SUBTOTAL 0.00 1 4731 \N +179986 2025-08-01 21:31:22.745166+00 2025-08-01 21:31:22.745177+00 f t DESCUENTO 0.00 2 4731 \N +179987 2025-08-01 21:31:22.746737+00 2025-08-01 21:31:22.746747+00 f t TOTAL 0.00 3 4731 \N +179988 2025-08-01 21:31:22.748301+00 2025-08-01 21:31:22.74831+00 f t ADELANTO 0.00 4 4731 \N +184541 2025-08-04 14:56:35.057735+00 2025-08-04 14:56:35.057744+00 f t SUBTOTAL 0.00 1 4849 \N +184542 2025-08-04 14:56:35.059962+00 2025-08-04 14:56:35.059973+00 f t DESCUENTO 0.00 2 4849 \N +184543 2025-08-04 14:56:35.061441+00 2025-08-04 14:56:35.061448+00 f t TOTAL 0.00 3 4849 \N +184544 2025-08-04 14:56:35.062637+00 2025-08-04 14:56:35.062643+00 f t ADELANTO 0.00 4 4849 \N +175501 2025-07-31 02:28:37.168467+00 2025-07-31 02:28:37.168478+00 f t SUBTOTAL 0.00 1 4603 \N +175502 2025-07-31 02:28:37.170466+00 2025-07-31 02:28:37.170474+00 f t DESCUENTO 0.00 2 4603 \N +175503 2025-07-31 02:28:37.171894+00 2025-07-31 02:28:37.1719+00 f t TOTAL 0.00 3 4603 \N +175504 2025-07-31 02:28:37.172918+00 2025-07-31 02:28:37.172923+00 f t ADELANTO 0.00 4 4603 \N +224309 2025-08-19 06:56:57.993927+00 2025-08-19 06:56:57.993936+00 f t SUBTOTAL 0.00 1 5808 \N +181761 2025-08-02 19:26:39.378696+00 2025-08-02 19:26:39.378706+00 f t SUBTOTAL 0.00 1 4772 \N +181762 2025-08-02 19:26:39.38048+00 2025-08-02 19:26:39.380487+00 f t DESCUENTO 0.00 2 4772 \N +181763 2025-08-02 19:26:39.381536+00 2025-08-02 19:26:39.381543+00 f t TOTAL 0.00 3 4772 \N +181764 2025-08-02 19:26:39.382653+00 2025-08-02 19:26:39.382658+00 f t ADELANTO 0.00 4 4772 \N +186469 2025-08-04 23:30:37.438755+00 2025-08-04 23:30:37.438765+00 f t SUBTOTAL 0.00 1 4897 \N +186470 2025-08-04 23:30:37.441491+00 2025-08-04 23:30:37.441501+00 f t DESCUENTO 0.00 2 4897 \N +186471 2025-08-04 23:30:37.443253+00 2025-08-04 23:30:37.443263+00 f t TOTAL 0.00 3 4897 \N +186472 2025-08-04 23:30:37.444788+00 2025-08-04 23:30:37.444798+00 f t ADELANTO 0.00 4 4897 \N +182349 2025-08-03 08:28:22.758853+00 2025-08-03 08:28:22.758861+00 f t SUBTOTAL 27500.00 1 4793 \N +182350 2025-08-03 08:28:22.760545+00 2025-08-03 08:28:22.760553+00 f t DESCUENTO 0.00 2 4793 \N +182351 2025-08-03 08:28:22.761777+00 2025-08-03 08:28:22.761783+00 f t TOTAL 27500.00 3 4793 \N +182352 2025-08-03 08:28:22.763045+00 2025-08-03 08:28:22.76305+00 f t ADELANTO 27500.00 4 4793 \N +175561 2025-07-31 02:30:12.18956+00 2025-07-31 02:30:12.189572+00 f t SUBTOTAL 42000.00 1 4604 \N +175562 2025-07-31 02:30:12.191831+00 2025-07-31 02:30:12.191843+00 f t DESCUENTO 0.00 2 4604 \N +175563 2025-07-31 02:30:12.193554+00 2025-07-31 02:30:12.193564+00 f t TOTAL 42000.00 3 4604 \N +175564 2025-07-31 02:30:12.195339+00 2025-07-31 02:30:12.195349+00 f t ADELANTO 9500.00 4 4604 \N +186893 2025-08-05 02:00:30.480588+00 2025-08-05 02:00:30.480601+00 f t SUBTOTAL 50000.00 1 4904 \N +186894 2025-08-05 02:00:30.484051+00 2025-08-05 02:00:30.484066+00 f t DESCUENTO 0.00 2 4904 \N +186895 2025-08-05 02:00:30.491315+00 2025-08-05 02:00:30.491327+00 f t TOTAL 50000.00 3 4904 \N +186896 2025-08-05 02:00:30.495002+00 2025-08-05 02:00:30.495016+00 f t ADELANTO 10000.00 4 4904 \N +178489 2025-08-01 10:52:09.160632+00 2025-08-01 10:52:09.160642+00 f t SUBTOTAL 0.00 1 4691 \N +178490 2025-08-01 10:52:09.163089+00 2025-08-01 10:52:09.163097+00 f t DESCUENTO 0.00 2 4691 \N +178491 2025-08-01 10:52:09.164902+00 2025-08-01 10:52:09.164915+00 f t TOTAL 0.00 3 4691 \N +178492 2025-08-01 10:52:09.166438+00 2025-08-01 10:52:09.166447+00 f t ADELANTO 0.00 4 4691 \N +187049 2025-08-05 11:41:48.127606+00 2025-08-05 11:41:48.127615+00 f t SUBTOTAL 0.00 1 4914 \N +187050 2025-08-05 11:41:48.129113+00 2025-08-05 11:41:48.129121+00 f t DESCUENTO 0.00 2 4914 \N +187051 2025-08-05 11:41:48.130446+00 2025-08-05 11:41:48.130453+00 f t TOTAL 0.00 3 4914 \N +187052 2025-08-05 11:41:48.131878+00 2025-08-05 11:41:48.131886+00 f t ADELANTO 0.00 4 4914 \N +178637 2025-08-01 11:29:50.035221+00 2025-08-01 11:29:50.035232+00 f t SUBTOTAL 0.00 1 4695 \N +178638 2025-08-01 11:29:50.037908+00 2025-08-01 11:29:50.037917+00 f t DESCUENTO 0.00 2 4695 \N +178639 2025-08-01 11:29:50.03986+00 2025-08-01 11:29:50.039869+00 f t TOTAL 0.00 3 4695 \N +178640 2025-08-01 11:29:50.041593+00 2025-08-01 11:29:50.041604+00 f t ADELANTO 0.00 4 4695 \N +187129 2025-08-05 11:56:36.97569+00 2025-08-05 11:56:36.975701+00 f t SUBTOTAL 42000.00 1 4916 \N +187130 2025-08-05 11:56:36.977915+00 2025-08-05 11:56:36.977923+00 f t DESCUENTO 0.00 2 4916 \N +187131 2025-08-05 11:56:36.979368+00 2025-08-05 11:56:36.979375+00 f t TOTAL 42000.00 3 4916 \N +187132 2025-08-05 11:56:36.980986+00 2025-08-05 11:56:36.980994+00 f t ADELANTO 9500.00 4 4916 \N +175633 2025-07-31 03:14:07.374447+00 2025-07-31 03:14:07.374456+00 f t SUBTOTAL 62000.00 1 4605 \N +175634 2025-07-31 03:14:07.376143+00 2025-07-31 03:14:07.376151+00 f t DESCUENTO 0.00 2 4605 \N +175635 2025-07-31 03:14:07.377487+00 2025-07-31 03:14:07.377495+00 f t TOTAL 62000.00 3 4605 \N +175636 2025-07-31 03:14:07.378706+00 2025-07-31 03:14:07.378712+00 f t ADELANTO 12000.00 4 4605 \N +183537 2025-08-03 23:31:36.146127+00 2025-08-03 23:31:36.146137+00 f t SUBTOTAL 42000.00 1 4820 \N +183538 2025-08-03 23:31:36.148277+00 2025-08-03 23:31:36.148291+00 f t DESCUENTO 0.00 2 4820 \N +183539 2025-08-03 23:31:36.150161+00 2025-08-03 23:31:36.150169+00 f t TOTAL 42000.00 3 4820 \N +183540 2025-08-03 23:31:36.151776+00 2025-08-03 23:31:36.151788+00 f t ADELANTO 9500.00 4 4820 \N +179325 2025-08-01 15:50:09.71998+00 2025-08-01 15:50:09.719996+00 f t SUBTOTAL 42000.00 1 4713 \N +179326 2025-08-01 15:50:09.722719+00 2025-08-01 15:50:09.722731+00 f t DESCUENTO 0.00 2 4713 \N +179327 2025-08-01 15:50:09.725125+00 2025-08-01 15:50:09.725148+00 f t TOTAL 42000.00 3 4713 \N +179328 2025-08-01 15:50:09.727585+00 2025-08-01 15:50:09.727597+00 f t ADELANTO 9500.00 4 4713 \N +179425 2025-08-01 16:09:19.526601+00 2025-08-01 16:09:19.526613+00 f t SUBTOTAL 49500.00 1 4716 \N +179426 2025-08-01 16:09:19.528388+00 2025-08-01 16:09:19.528395+00 f t DESCUENTO 0.00 2 4716 \N +179427 2025-08-01 16:09:19.52981+00 2025-08-01 16:09:19.529819+00 f t TOTAL 49500.00 3 4716 \N +179428 2025-08-01 16:09:19.531327+00 2025-08-01 16:09:19.531337+00 f t ADELANTO 11500.00 4 4716 \N +175709 2025-07-31 04:48:10.601128+00 2025-07-31 04:48:10.60114+00 f t SUBTOTAL 0.00 1 4606 \N +175710 2025-07-31 04:48:10.603289+00 2025-07-31 04:48:10.603298+00 f t DESCUENTO 0.00 2 4606 \N +175711 2025-07-31 04:48:10.604722+00 2025-07-31 04:48:10.604729+00 f t TOTAL 0.00 3 4606 \N +175712 2025-07-31 04:48:10.605962+00 2025-07-31 04:48:10.605969+00 f t ADELANTO 0.00 4 4606 \N +175717 2025-07-31 06:22:38.257806+00 2025-07-31 06:22:38.257822+00 f t SUBTOTAL 0.00 1 4607 \N +175718 2025-07-31 06:22:38.259741+00 2025-07-31 06:22:38.259751+00 f t DESCUENTO 0.00 2 4607 \N +175719 2025-07-31 06:22:38.261388+00 2025-07-31 06:22:38.261399+00 f t TOTAL 0.00 3 4607 \N +175720 2025-07-31 06:22:38.262759+00 2025-07-31 06:22:38.262769+00 f t ADELANTO 0.00 4 4607 \N +175725 2025-07-31 06:26:46.418519+00 2025-07-31 06:26:46.418527+00 f t SUBTOTAL 0.00 1 4608 \N +175726 2025-07-31 06:26:46.419897+00 2025-07-31 06:26:46.419906+00 f t DESCUENTO 0.00 2 4608 \N +175727 2025-07-31 06:26:46.421107+00 2025-07-31 06:26:46.421114+00 f t TOTAL 0.00 3 4608 \N +175728 2025-07-31 06:26:46.422319+00 2025-07-31 06:26:46.422328+00 f t ADELANTO 0.00 4 4608 \N +175733 2025-07-31 07:13:12.760966+00 2025-07-31 07:13:12.760977+00 f t SUBTOTAL 0.00 1 4609 \N +175734 2025-07-31 07:13:12.762403+00 2025-07-31 07:13:12.762412+00 f t DESCUENTO 0.00 2 4609 \N +175735 2025-07-31 07:13:12.763895+00 2025-07-31 07:13:12.763902+00 f t TOTAL 0.00 3 4609 \N +175736 2025-07-31 07:13:12.765074+00 2025-07-31 07:13:12.765082+00 f t ADELANTO 0.00 4 4609 \N +175741 2025-07-31 09:52:41.29961+00 2025-07-31 09:52:41.29966+00 f t SUBTOTAL 0.00 1 4610 \N +175742 2025-07-31 09:52:41.30106+00 2025-07-31 09:52:41.301069+00 f t DESCUENTO 0.00 2 4610 \N +175743 2025-07-31 09:52:41.302226+00 2025-07-31 09:52:41.302234+00 f t TOTAL 0.00 3 4610 \N +175744 2025-07-31 09:52:41.303303+00 2025-07-31 09:52:41.303311+00 f t ADELANTO 0.00 4 4610 \N +184469 2025-08-04 14:30:05.979669+00 2025-08-04 14:30:05.979686+00 f t SUBTOTAL 42000.00 1 4847 \N +184470 2025-08-04 14:30:06.008652+00 2025-08-04 14:30:06.008668+00 f t DESCUENTO 0.00 2 4847 \N +184471 2025-08-04 14:30:06.012707+00 2025-08-04 14:30:06.012721+00 f t TOTAL 42000.00 3 4847 \N +184472 2025-08-04 14:30:06.015578+00 2025-08-04 14:30:06.015613+00 f t ADELANTO 9500.00 4 4847 \N +175769 2025-07-31 09:57:04.222833+00 2025-07-31 09:57:04.222843+00 f t SUBTOTAL 111000.00 1 4611 \N +175770 2025-07-31 09:57:04.224765+00 2025-07-31 09:57:04.224775+00 f t DESCUENTO 0.00 2 4611 \N +175771 2025-07-31 09:57:04.226228+00 2025-07-31 09:57:04.226234+00 f t TOTAL 111000.00 3 4611 \N +175772 2025-07-31 09:57:04.227367+00 2025-07-31 09:57:04.227373+00 f t ADELANTO 23500.00 4 4611 \N +177345 2025-07-31 20:27:29.317157+00 2025-07-31 20:27:29.317166+00 f t SUBTOTAL 42000.00 1 4658 \N +177346 2025-07-31 20:27:29.319173+00 2025-07-31 20:27:29.319183+00 f t DESCUENTO 0.00 2 4658 \N +177347 2025-07-31 20:27:29.320547+00 2025-07-31 20:27:29.320555+00 f t TOTAL 42000.00 3 4658 \N +177348 2025-07-31 20:27:29.321909+00 2025-07-31 20:27:29.321915+00 f t ADELANTO 9500.00 4 4658 \N +224310 2025-08-19 06:56:57.996209+00 2025-08-19 06:56:57.996217+00 f t DESCUENTO 0.00 2 5808 \N +224311 2025-08-19 06:56:57.997684+00 2025-08-19 06:56:57.997693+00 f t TOTAL 0.00 3 5808 \N +175829 2025-07-31 10:56:23.307369+00 2025-07-31 10:56:23.307379+00 f t SUBTOTAL 0.00 1 4612 \N +175830 2025-07-31 10:56:23.309329+00 2025-07-31 10:56:23.309337+00 f t DESCUENTO 0.00 2 4612 \N +175831 2025-07-31 10:56:23.310492+00 2025-07-31 10:56:23.310498+00 f t TOTAL 0.00 3 4612 \N +175832 2025-07-31 10:56:23.311628+00 2025-07-31 10:56:23.311633+00 f t ADELANTO 0.00 4 4612 \N +175837 2025-07-31 11:22:26.832396+00 2025-07-31 11:22:26.832405+00 f t SUBTOTAL 0.00 1 4613 \N +175838 2025-07-31 11:22:26.833975+00 2025-07-31 11:22:26.833983+00 f t DESCUENTO 0.00 2 4613 \N +175839 2025-07-31 11:22:26.835392+00 2025-07-31 11:22:26.835399+00 f t TOTAL 0.00 3 4613 \N +175840 2025-07-31 11:22:26.838829+00 2025-07-31 11:22:26.838839+00 f t ADELANTO 0.00 4 4613 \N +182229 2025-08-03 08:13:25.328689+00 2025-08-03 08:13:25.328702+00 f t SUBTOTAL 42000.00 1 4790 \N +182230 2025-08-03 08:13:25.330938+00 2025-08-03 08:13:25.33095+00 f t DESCUENTO 0.00 2 4790 \N +182231 2025-08-03 08:13:25.332499+00 2025-08-03 08:13:25.332509+00 f t TOTAL 42000.00 3 4790 \N +182232 2025-08-03 08:13:25.333944+00 2025-08-03 08:13:25.333953+00 f t ADELANTO 9500.00 4 4790 \N +177993 2025-08-01 01:51:09.866223+00 2025-08-01 01:51:09.866234+00 f t SUBTOTAL 0.00 1 4676 \N +177994 2025-08-01 01:51:09.868385+00 2025-08-01 01:51:09.868397+00 f t DESCUENTO 0.00 2 4676 \N +177995 2025-08-01 01:51:09.869564+00 2025-08-01 01:51:09.869572+00 f t TOTAL 0.00 3 4676 \N +177996 2025-08-01 01:51:09.870582+00 2025-08-01 01:51:09.870588+00 f t ADELANTO 0.00 4 4676 \N +178193 2025-08-01 04:52:47.982145+00 2025-08-01 04:52:47.982155+00 f t SUBTOTAL 84000.00 1 4682 \N +178194 2025-08-01 04:52:47.983572+00 2025-08-01 04:52:47.98358+00 f t DESCUENTO 0.00 2 4682 \N +178195 2025-08-01 04:52:47.984733+00 2025-08-01 04:52:47.98474+00 f t TOTAL 84000.00 3 4682 \N +178196 2025-08-01 04:52:47.986099+00 2025-08-01 04:52:47.986107+00 f t ADELANTO 19000.00 4 4682 \N +178497 2025-08-01 11:00:19.00361+00 2025-08-01 11:00:19.00362+00 f t SUBTOTAL 0.00 1 4692 \N +178498 2025-08-01 11:00:19.005216+00 2025-08-01 11:00:19.005225+00 f t DESCUENTO 0.00 2 4692 \N +178499 2025-08-01 11:00:19.006769+00 2025-08-01 11:00:19.006776+00 f t TOTAL 0.00 3 4692 \N +178500 2025-08-01 11:00:19.008147+00 2025-08-01 11:00:19.008154+00 f t ADELANTO 0.00 4 4692 \N +175909 2025-07-31 11:26:26.670121+00 2025-07-31 11:26:26.670131+00 f t SUBTOTAL 0.00 1 4614 \N +175910 2025-07-31 11:26:26.672082+00 2025-07-31 11:26:26.672091+00 f t DESCUENTO 0.00 2 4614 \N +175911 2025-07-31 11:26:26.673528+00 2025-07-31 11:26:26.673537+00 f t TOTAL 0.00 3 4614 \N +175912 2025-07-31 11:26:26.675027+00 2025-07-31 11:26:26.675036+00 f t ADELANTO 0.00 4 4614 \N +183121 2025-08-03 20:16:07.972962+00 2025-08-03 20:16:07.972974+00 f t SUBTOTAL 95700.00 1 4809 \N +183122 2025-08-03 20:16:07.975497+00 2025-08-03 20:16:07.975509+00 f t DESCUENTO 0.00 2 4809 \N +183123 2025-08-03 20:16:07.977652+00 2025-08-03 20:16:07.97766+00 f t TOTAL 95700.00 3 4809 \N +183124 2025-08-03 20:16:07.979405+00 2025-08-03 20:16:07.979414+00 f t ADELANTO 57700.00 4 4809 \N +183441 2025-08-03 23:02:18.085599+00 2025-08-03 23:02:18.085608+00 f t SUBTOTAL 111000.00 1 4817 \N +183442 2025-08-03 23:02:18.087358+00 2025-08-03 23:02:18.087368+00 f t DESCUENTO 0.00 2 4817 \N +183443 2025-08-03 23:02:18.088472+00 2025-08-03 23:02:18.088478+00 f t TOTAL 111000.00 3 4817 \N +183444 2025-08-03 23:02:18.089537+00 2025-08-03 23:02:18.089544+00 f t ADELANTO 23500.00 4 4817 \N +175957 2025-07-31 11:32:38.685915+00 2025-07-31 11:32:38.685924+00 f t SUBTOTAL 0.00 1 4615 \N +175958 2025-07-31 11:32:38.687644+00 2025-07-31 11:32:38.687651+00 f t DESCUENTO 0.00 2 4615 \N +175959 2025-07-31 11:32:38.688827+00 2025-07-31 11:32:38.688832+00 f t TOTAL 0.00 3 4615 \N +175960 2025-07-31 11:32:38.690046+00 2025-07-31 11:32:38.690051+00 f t ADELANTO 0.00 4 4615 \N +183545 2025-08-03 23:32:34.094409+00 2025-08-03 23:32:34.094418+00 f t SUBTOTAL 0.00 1 4821 \N +183546 2025-08-03 23:32:34.096501+00 2025-08-03 23:32:34.096513+00 f t DESCUENTO 0.00 2 4821 \N +183547 2025-08-03 23:32:34.098135+00 2025-08-03 23:32:34.098146+00 f t TOTAL 0.00 3 4821 \N +183548 2025-08-03 23:32:34.099601+00 2025-08-03 23:32:34.099611+00 f t ADELANTO 0.00 4 4821 \N +179433 2025-08-01 16:11:56.87231+00 2025-08-01 16:11:56.872324+00 f t SUBTOTAL 0.00 1 4717 \N +179434 2025-08-01 16:11:56.874131+00 2025-08-01 16:11:56.874139+00 f t DESCUENTO 0.00 2 4717 \N +179435 2025-08-01 16:11:56.875442+00 2025-08-01 16:11:56.875451+00 f t TOTAL 0.00 3 4717 \N +179436 2025-08-01 16:11:56.876667+00 2025-08-01 16:11:56.876673+00 f t ADELANTO 0.00 4 4717 \N +183985 2025-08-04 07:58:38.793775+00 2025-08-04 07:58:38.793786+00 f t SUBTOTAL 0.00 1 4832 \N +183986 2025-08-04 07:58:38.796594+00 2025-08-04 07:58:38.796607+00 f t DESCUENTO 0.00 2 4832 \N +183987 2025-08-04 07:58:38.799098+00 2025-08-04 07:58:38.799224+00 f t TOTAL 0.00 3 4832 \N +183988 2025-08-04 07:58:38.801243+00 2025-08-04 07:58:38.801253+00 f t ADELANTO 0.00 4 4832 \N +176009 2025-07-31 11:36:24.287491+00 2025-07-31 11:36:24.287501+00 f t SUBTOTAL 0.00 1 4616 \N +176010 2025-07-31 11:36:24.289246+00 2025-07-31 11:36:24.289252+00 f t DESCUENTO 0.00 2 4616 \N +176011 2025-07-31 11:36:24.290437+00 2025-07-31 11:36:24.290446+00 f t TOTAL 0.00 3 4616 \N +176012 2025-07-31 11:36:24.29176+00 2025-07-31 11:36:24.291769+00 f t ADELANTO 0.00 4 4616 \N +176017 2025-07-31 11:50:37.220637+00 2025-07-31 11:50:37.220649+00 f t SUBTOTAL 0.00 1 4617 \N +176018 2025-07-31 11:50:37.22213+00 2025-07-31 11:50:37.222139+00 f t DESCUENTO 0.00 2 4617 \N +176019 2025-07-31 11:50:37.22406+00 2025-07-31 11:50:37.224068+00 f t TOTAL 0.00 3 4617 \N +176020 2025-07-31 11:50:37.225493+00 2025-07-31 11:50:37.225501+00 f t ADELANTO 0.00 4 4617 \N +179769 2025-08-01 18:43:02.675798+00 2025-08-01 18:43:02.67581+00 f t SUBTOTAL 70000.00 1 4722 \N +176025 2025-07-31 11:51:51.133388+00 2025-07-31 11:51:51.133398+00 f t SUBTOTAL 0.00 1 4618 \N +176026 2025-07-31 11:51:51.134676+00 2025-07-31 11:51:51.134683+00 f t DESCUENTO 0.00 2 4618 \N +176027 2025-07-31 11:51:51.135811+00 2025-07-31 11:51:51.135817+00 f t TOTAL 0.00 3 4618 \N +176028 2025-07-31 11:51:51.136716+00 2025-07-31 11:51:51.136721+00 f t ADELANTO 0.00 4 4618 \N +179770 2025-08-01 18:43:02.678382+00 2025-08-01 18:43:02.678393+00 f t DESCUENTO 0.00 2 4722 \N +179771 2025-08-01 18:43:02.680258+00 2025-08-01 18:43:02.680267+00 f t TOTAL 70000.00 3 4722 \N +179772 2025-08-01 18:43:02.682077+00 2025-08-01 18:43:02.682085+00 f t ADELANTO 15000.00 4 4722 \N +184281 2025-08-04 13:09:50.741573+00 2025-08-04 13:09:50.741585+00 f t SUBTOTAL 0.00 1 4840 \N +184282 2025-08-04 13:09:50.744636+00 2025-08-04 13:09:50.744647+00 f t DESCUENTO 0.00 2 4840 \N +184283 2025-08-04 13:09:50.746305+00 2025-08-04 13:09:50.746313+00 f t TOTAL 0.00 3 4840 \N +184284 2025-08-04 13:09:50.747596+00 2025-08-04 13:09:50.747604+00 f t ADELANTO 0.00 4 4840 \N +176053 2025-07-31 12:24:00.980039+00 2025-07-31 12:24:00.980048+00 f t SUBTOTAL 42000.00 1 4619 \N +176054 2025-07-31 12:24:00.981672+00 2025-07-31 12:24:00.98168+00 f t DESCUENTO 0.00 2 4619 \N +176055 2025-07-31 12:24:00.982827+00 2025-07-31 12:24:00.982833+00 f t TOTAL 42000.00 3 4619 \N +176056 2025-07-31 12:24:00.98427+00 2025-07-31 12:24:00.984275+00 f t ADELANTO 9500.00 4 4619 \N +186053 2025-08-04 20:57:21.091668+00 2025-08-04 20:57:21.091678+00 f t SUBTOTAL 0.00 1 4884 \N +186054 2025-08-04 20:57:21.093875+00 2025-08-04 20:57:21.093883+00 f t DESCUENTO 0.00 2 4884 \N +181689 2025-08-02 19:22:41.645524+00 2025-08-02 19:22:41.645533+00 f t SUBTOTAL 0.00 1 4771 \N +181690 2025-08-02 19:22:41.647536+00 2025-08-02 19:22:41.647544+00 f t DESCUENTO 0.00 2 4771 \N +176093 2025-07-31 12:36:09.109052+00 2025-07-31 12:36:09.109081+00 f t SUBTOTAL 0.00 1 4620 \N +176094 2025-07-31 12:36:09.11158+00 2025-07-31 12:36:09.11159+00 f t DESCUENTO 0.00 2 4620 \N +176095 2025-07-31 12:36:09.113502+00 2025-07-31 12:36:09.113516+00 f t TOTAL 0.00 3 4620 \N +176096 2025-07-31 12:36:09.115365+00 2025-07-31 12:36:09.115378+00 f t ADELANTO 0.00 4 4620 \N +181691 2025-08-02 19:22:41.648824+00 2025-08-02 19:22:41.648832+00 f t TOTAL 0.00 3 4771 \N +181692 2025-08-02 19:22:41.64986+00 2025-08-02 19:22:41.649865+00 f t ADELANTO 0.00 4 4771 \N +186055 2025-08-04 20:57:21.095398+00 2025-08-04 20:57:21.095405+00 f t TOTAL 0.00 3 4884 \N +186056 2025-08-04 20:57:21.09666+00 2025-08-04 20:57:21.096668+00 f t ADELANTO 0.00 4 4884 \N +182169 2025-08-03 04:21:48.558784+00 2025-08-03 04:21:48.558793+00 f t SUBTOTAL 49500.00 1 4788 \N +182170 2025-08-03 04:21:48.560712+00 2025-08-03 04:21:48.56072+00 f t DESCUENTO 0.00 2 4788 \N +182171 2025-08-03 04:21:48.561886+00 2025-08-03 04:21:48.561893+00 f t TOTAL 49500.00 3 4788 \N +182172 2025-08-03 04:21:48.562941+00 2025-08-03 04:21:48.562947+00 f t ADELANTO 11500.00 4 4788 \N +178001 2025-08-01 02:24:40.682664+00 2025-08-01 02:24:40.682677+00 f t SUBTOTAL 0.00 1 4677 \N +178002 2025-08-01 02:24:40.684355+00 2025-08-01 02:24:40.684365+00 f t DESCUENTO 0.00 2 4677 \N +176145 2025-07-31 13:04:06.323037+00 2025-07-31 13:04:06.323046+00 f t SUBTOTAL 0.00 1 4621 \N +176146 2025-07-31 13:04:06.325957+00 2025-07-31 13:04:06.32597+00 f t DESCUENTO 0.00 2 4621 \N +176147 2025-07-31 13:04:06.328134+00 2025-07-31 13:04:06.328148+00 f t TOTAL 0.00 3 4621 \N +176148 2025-07-31 13:04:06.33013+00 2025-07-31 13:04:06.330139+00 f t ADELANTO 0.00 4 4621 \N +178003 2025-08-01 02:24:40.685787+00 2025-08-01 02:24:40.685795+00 f t TOTAL 0.00 3 4677 \N +178004 2025-08-01 02:24:40.687171+00 2025-08-01 02:24:40.68718+00 f t ADELANTO 0.00 4 4677 \N +182597 2025-08-03 12:38:42.621429+00 2025-08-03 12:38:42.621439+00 f t SUBTOTAL 42000.00 1 4797 \N +182598 2025-08-03 12:38:42.623277+00 2025-08-03 12:38:42.623284+00 f t DESCUENTO 0.00 2 4797 \N +182599 2025-08-03 12:38:42.624942+00 2025-08-03 12:38:42.624953+00 f t TOTAL 42000.00 3 4797 \N +182600 2025-08-03 12:38:42.626298+00 2025-08-03 12:38:42.626305+00 f t ADELANTO 9500.00 4 4797 \N +176173 2025-07-31 13:15:38.2333+00 2025-07-31 13:15:38.233311+00 f t SUBTOTAL 50000.00 1 4622 \N +176174 2025-07-31 13:15:38.235511+00 2025-07-31 13:15:38.235521+00 f t DESCUENTO 0.00 2 4622 \N +176175 2025-07-31 13:15:38.237348+00 2025-07-31 13:15:38.237357+00 f t TOTAL 50000.00 3 4622 \N +176176 2025-07-31 13:15:38.238921+00 2025-07-31 13:15:38.23893+00 f t ADELANTO 10000.00 4 4622 \N +182953 2025-08-03 19:25:02.830042+00 2025-08-03 19:25:02.83006+00 f t SUBTOTAL 76000.00 1 4805 \N +182954 2025-08-03 19:25:02.840695+00 2025-08-03 19:25:02.840712+00 f t DESCUENTO 0.00 2 4805 \N +182955 2025-08-03 19:25:02.843951+00 2025-08-03 19:25:02.843966+00 f t TOTAL 76000.00 3 4805 \N +182956 2025-08-03 19:25:02.846577+00 2025-08-03 19:25:02.84659+00 f t ADELANTO 11000.00 4 4805 \N +183129 2025-08-03 20:53:03.163578+00 2025-08-03 20:53:03.163589+00 f t SUBTOTAL 0.00 1 4810 \N +183130 2025-08-03 20:53:03.165602+00 2025-08-03 20:53:03.165611+00 f t DESCUENTO 0.00 2 4810 \N +183131 2025-08-03 20:53:03.167516+00 2025-08-03 20:53:03.167528+00 f t TOTAL 0.00 3 4810 \N +183132 2025-08-03 20:53:03.169357+00 2025-08-03 20:53:03.169369+00 f t ADELANTO 0.00 4 4810 \N +178845 2025-08-01 13:13:01.416043+00 2025-08-01 13:13:01.416056+00 f t SUBTOTAL 42000.00 1 4701 \N +178846 2025-08-01 13:13:01.419314+00 2025-08-01 13:13:01.419328+00 f t DESCUENTO 0.00 2 4701 \N +178847 2025-08-01 13:13:01.438946+00 2025-08-01 13:13:01.43896+00 f t TOTAL 42000.00 3 4701 \N +178848 2025-08-01 13:13:01.441664+00 2025-08-01 13:13:01.441676+00 f t ADELANTO 9500.00 4 4701 \N +178897 2025-08-01 13:28:17.682943+00 2025-08-01 13:28:17.682953+00 f t SUBTOTAL 68000.00 1 4703 \N +178898 2025-08-01 13:28:17.685516+00 2025-08-01 13:28:17.685528+00 f t DESCUENTO 0.00 2 4703 \N +176233 2025-07-31 13:32:54.628808+00 2025-07-31 13:32:54.62882+00 f t SUBTOTAL 0.00 1 4624 \N +176234 2025-07-31 13:32:54.63024+00 2025-07-31 13:32:54.630248+00 f t DESCUENTO 0.00 2 4624 \N +176235 2025-07-31 13:32:54.63142+00 2025-07-31 13:32:54.63143+00 f t TOTAL 0.00 3 4624 \N +176236 2025-07-31 13:32:54.632619+00 2025-07-31 13:32:54.632627+00 f t ADELANTO 0.00 4 4624 \N +178899 2025-08-01 13:28:17.687417+00 2025-08-01 13:28:17.687425+00 f t TOTAL 68000.00 3 4703 \N +178900 2025-08-01 13:28:17.689214+00 2025-08-01 13:28:17.689222+00 f t ADELANTO 13000.00 4 4703 \N +179053 2025-08-01 14:18:49.127077+00 2025-08-01 14:18:49.127087+00 f t SUBTOTAL 0.00 1 4709 \N +179054 2025-08-01 14:18:49.128624+00 2025-08-01 14:18:49.128632+00 f t DESCUENTO 0.00 2 4709 \N +176253 2025-07-31 13:33:28.530643+00 2025-07-31 13:33:28.530651+00 f t SUBTOTAL 95000.00 1 4623 \N +176254 2025-07-31 13:33:28.532222+00 2025-07-31 13:33:28.53223+00 f t DESCUENTO 0.00 2 4623 \N +176255 2025-07-31 13:33:28.533617+00 2025-07-31 13:33:28.533627+00 f t TOTAL 95000.00 3 4623 \N +176256 2025-07-31 13:33:28.534959+00 2025-07-31 13:33:28.534966+00 f t ADELANTO 10000.00 4 4623 \N +179055 2025-08-01 14:18:49.130096+00 2025-08-01 14:18:49.130104+00 f t TOTAL 0.00 3 4709 \N +179056 2025-08-01 14:18:49.131531+00 2025-08-01 14:18:49.131538+00 f t ADELANTO 0.00 4 4709 \N +179285 2025-08-01 15:32:59.813356+00 2025-08-01 15:32:59.813369+00 f t SUBTOTAL 42000.00 1 4712 \N +179286 2025-08-01 15:32:59.815674+00 2025-08-01 15:32:59.815686+00 f t DESCUENTO 0.00 2 4712 \N +179287 2025-08-01 15:32:59.817318+00 2025-08-01 15:32:59.817328+00 f t TOTAL 42000.00 3 4712 \N +179288 2025-08-01 15:32:59.819054+00 2025-08-01 15:32:59.819063+00 f t ADELANTO 9500.00 4 4712 \N +176309 2025-07-31 13:56:23.973188+00 2025-07-31 13:56:23.973202+00 f t SUBTOTAL 42000.00 1 4625 \N +176310 2025-07-31 13:56:23.974897+00 2025-07-31 13:56:23.974906+00 f t DESCUENTO 0.00 2 4625 \N +176311 2025-07-31 13:56:23.97625+00 2025-07-31 13:56:23.976257+00 f t TOTAL 42000.00 3 4625 \N +176312 2025-07-31 13:56:23.977625+00 2025-07-31 13:56:23.977632+00 f t ADELANTO 9500.00 4 4625 \N +176337 2025-07-31 14:05:56.034414+00 2025-07-31 14:05:56.034426+00 f t SUBTOTAL 50000.00 1 4626 \N +176338 2025-07-31 14:05:56.036352+00 2025-07-31 14:05:56.036365+00 f t DESCUENTO 0.00 2 4626 \N +176339 2025-07-31 14:05:56.03799+00 2025-07-31 14:05:56.037997+00 f t TOTAL 50000.00 3 4626 \N +176340 2025-07-31 14:05:56.039177+00 2025-07-31 14:05:56.039183+00 f t ADELANTO 10000.00 4 4626 \N +180085 2025-08-01 22:23:35.00018+00 2025-08-01 22:23:35.000193+00 f t SUBTOTAL 0.00 1 4735 \N +180086 2025-08-01 22:23:35.001968+00 2025-08-01 22:23:35.001978+00 f t DESCUENTO 0.00 2 4735 \N +180087 2025-08-01 22:23:35.00363+00 2025-08-01 22:23:35.003639+00 f t TOTAL 0.00 3 4735 \N +180088 2025-08-01 22:23:35.005113+00 2025-08-01 22:23:35.005122+00 f t ADELANTO 0.00 4 4735 \N +180173 2025-08-01 22:59:21.596646+00 2025-08-01 22:59:21.596655+00 f t SUBTOTAL 0.00 1 4738 \N +180174 2025-08-01 22:59:21.598919+00 2025-08-01 22:59:21.598926+00 f t DESCUENTO 0.00 2 4738 \N +180175 2025-08-01 22:59:21.600271+00 2025-08-01 22:59:21.600277+00 f t TOTAL 0.00 3 4738 \N +180176 2025-08-01 22:59:21.601354+00 2025-08-01 22:59:21.60136+00 f t ADELANTO 0.00 4 4738 \N +194881 2025-08-08 08:45:15.743376+00 2025-08-08 08:45:15.743392+00 f t SUBTOTAL 0.00 1 5095 \N +194882 2025-08-08 08:45:15.746823+00 2025-08-08 08:45:15.746836+00 f t DESCUENTO 0.00 2 5095 \N +194883 2025-08-08 08:45:15.749074+00 2025-08-08 08:45:15.749084+00 f t TOTAL 0.00 3 5095 \N +194884 2025-08-08 08:45:15.751901+00 2025-08-08 08:45:15.75191+00 f t ADELANTO 0.00 4 5095 \N +177445 2025-07-31 22:47:36.084656+00 2025-07-31 22:47:36.084669+00 f t SUBTOTAL 50000.00 1 4661 \N +177446 2025-07-31 22:47:36.086712+00 2025-07-31 22:47:36.086722+00 f t DESCUENTO 0.00 2 4661 \N +177447 2025-07-31 22:47:36.088542+00 2025-07-31 22:47:36.088552+00 f t TOTAL 50000.00 3 4661 \N +177448 2025-07-31 22:47:36.090184+00 2025-07-31 22:47:36.090193+00 f t ADELANTO 10000.00 4 4661 \N +176401 2025-07-31 14:31:16.817966+00 2025-07-31 14:31:16.817976+00 f t SUBTOTAL 94500.00 1 4627 \N +176402 2025-07-31 14:31:16.819692+00 2025-07-31 14:31:16.8197+00 f t DESCUENTO 0.00 2 4627 \N +176403 2025-07-31 14:31:16.820876+00 2025-07-31 14:31:16.820882+00 f t TOTAL 94500.00 3 4627 \N +176404 2025-07-31 14:31:16.821914+00 2025-07-31 14:31:16.82192+00 f t ADELANTO 26500.00 4 4627 \N +182177 2025-08-03 05:18:56.151437+00 2025-08-03 05:18:56.151449+00 f t SUBTOTAL 0.00 1 4789 \N +182178 2025-08-03 05:18:56.153259+00 2025-08-03 05:18:56.15327+00 f t DESCUENTO 0.00 2 4789 \N +182179 2025-08-03 05:18:56.154836+00 2025-08-03 05:18:56.154846+00 f t TOTAL 0.00 3 4789 \N +182180 2025-08-03 05:18:56.156457+00 2025-08-03 05:18:56.156466+00 f t ADELANTO 0.00 4 4789 \N +178009 2025-08-01 03:19:45.935591+00 2025-08-01 03:19:45.9356+00 f t SUBTOTAL 0.00 1 4678 \N +178010 2025-08-01 03:19:45.937155+00 2025-08-01 03:19:45.937165+00 f t DESCUENTO 0.00 2 4678 \N +178011 2025-08-01 03:19:45.938629+00 2025-08-01 03:19:45.938636+00 f t TOTAL 0.00 3 4678 \N +178012 2025-08-01 03:19:45.939928+00 2025-08-01 03:19:45.939938+00 f t ADELANTO 0.00 4 4678 \N +191101 2025-08-06 18:33:38.339485+00 2025-08-06 18:33:38.339497+00 f t SUBTOTAL 0.00 1 4995 \N +178453 2025-08-01 10:42:48.937749+00 2025-08-01 10:42:48.937759+00 f t SUBTOTAL 0.00 1 4690 \N +178454 2025-08-01 10:42:48.940335+00 2025-08-01 10:42:48.940343+00 f t DESCUENTO 0.00 2 4690 \N +178455 2025-08-01 10:42:48.942141+00 2025-08-01 10:42:48.942152+00 f t TOTAL 0.00 3 4690 \N +178456 2025-08-01 10:42:48.944229+00 2025-08-01 10:42:48.944241+00 f t ADELANTO 0.00 4 4690 \N +176473 2025-07-31 14:49:05.719638+00 2025-07-31 14:49:05.719666+00 f t SUBTOTAL 50000.00 1 4628 \N +176474 2025-07-31 14:49:05.72198+00 2025-07-31 14:49:05.721993+00 f t DESCUENTO 0.00 2 4628 \N +176475 2025-07-31 14:49:05.723992+00 2025-07-31 14:49:05.724001+00 f t TOTAL 50000.00 3 4628 \N +176476 2025-07-31 14:49:05.725734+00 2025-07-31 14:49:05.725742+00 f t ADELANTO 10000.00 4 4628 \N +183245 2025-08-03 21:46:05.458865+00 2025-08-03 21:46:05.458879+00 f t SUBTOTAL 0.00 1 4814 \N +183246 2025-08-03 21:46:05.461926+00 2025-08-03 21:46:05.461936+00 f t DESCUENTO 0.00 2 4814 \N +183247 2025-08-03 21:46:05.464022+00 2025-08-03 21:46:05.464035+00 f t TOTAL 0.00 3 4814 \N +176521 2025-07-31 15:06:50.430035+00 2025-07-31 15:06:50.430044+00 f t SUBTOTAL 70000.00 1 4629 \N +176522 2025-07-31 15:06:50.431645+00 2025-07-31 15:06:50.431651+00 f t DESCUENTO 0.00 2 4629 \N +176523 2025-07-31 15:06:50.432769+00 2025-07-31 15:06:50.432775+00 f t TOTAL 70000.00 3 4629 \N +176524 2025-07-31 15:06:50.433882+00 2025-07-31 15:06:50.433888+00 f t ADELANTO 10000.00 4 4629 \N +183248 2025-08-03 21:46:05.466232+00 2025-08-03 21:46:05.466244+00 f t ADELANTO 0.00 4 4814 \N +176549 2025-07-31 15:44:59.832209+00 2025-07-31 15:44:59.832217+00 f t SUBTOTAL 42000.00 1 4630 \N +176550 2025-07-31 15:44:59.833685+00 2025-07-31 15:44:59.833691+00 f t DESCUENTO 0.00 2 4630 \N +176551 2025-07-31 15:44:59.83485+00 2025-07-31 15:44:59.834855+00 f t TOTAL 42000.00 3 4630 \N +176552 2025-07-31 15:44:59.835974+00 2025-07-31 15:44:59.835979+00 f t ADELANTO 9500.00 4 4630 \N +176557 2025-07-31 16:08:12.721465+00 2025-07-31 16:08:12.721475+00 f t SUBTOTAL 0.00 1 4631 \N +176558 2025-07-31 16:08:12.723123+00 2025-07-31 16:08:12.72316+00 f t DESCUENTO 0.00 2 4631 \N +176559 2025-07-31 16:08:12.724755+00 2025-07-31 16:08:12.724764+00 f t TOTAL 0.00 3 4631 \N +176560 2025-07-31 16:08:12.725877+00 2025-07-31 16:08:12.725885+00 f t ADELANTO 0.00 4 4631 \N +176577 2025-07-31 16:27:36.466147+00 2025-07-31 16:27:36.466157+00 f t SUBTOTAL 0.00 1 4632 \N +176578 2025-07-31 16:27:36.468095+00 2025-07-31 16:27:36.468104+00 f t DESCUENTO 0.00 2 4632 \N +176579 2025-07-31 16:27:36.469346+00 2025-07-31 16:27:36.469354+00 f t TOTAL 0.00 3 4632 \N +176580 2025-07-31 16:27:36.470608+00 2025-07-31 16:27:36.470615+00 f t ADELANTO 0.00 4 4632 \N +179821 2025-08-01 19:45:20.411733+00 2025-08-01 19:45:20.411746+00 f t SUBTOTAL 0.00 1 4725 \N +179822 2025-08-01 19:45:20.41401+00 2025-08-01 19:45:20.414019+00 f t DESCUENTO 0.00 2 4725 \N +179823 2025-08-01 19:45:20.415902+00 2025-08-01 19:45:20.415909+00 f t TOTAL 0.00 3 4725 \N +179824 2025-08-01 19:45:20.417184+00 2025-08-01 19:45:20.417192+00 f t ADELANTO 0.00 4 4725 \N +179913 2025-08-01 20:16:09.353082+00 2025-08-01 20:16:09.353096+00 f t SUBTOTAL 0.00 1 4707 \N +179914 2025-08-01 20:16:09.355331+00 2025-08-01 20:16:09.355342+00 f t DESCUENTO 0.00 2 4707 \N +179915 2025-08-01 20:16:09.357143+00 2025-08-01 20:16:09.357168+00 f t TOTAL 0.00 3 4707 \N +179916 2025-08-01 20:16:09.359015+00 2025-08-01 20:16:09.359025+00 f t ADELANTO 0.00 4 4707 \N +179961 2025-08-01 21:14:18.481537+00 2025-08-01 21:14:18.481549+00 f t SUBTOTAL 95000.00 1 4729 \N +179962 2025-08-01 21:14:18.483183+00 2025-08-01 21:14:18.48319+00 f t DESCUENTO 0.00 2 4729 \N +179963 2025-08-01 21:14:18.484663+00 2025-08-01 21:14:18.484669+00 f t TOTAL 95000.00 3 4729 \N +179964 2025-08-01 21:14:18.485768+00 2025-08-01 21:14:18.485774+00 f t ADELANTO 10000.00 4 4729 \N +180041 2025-08-01 21:43:46.872618+00 2025-08-01 21:43:46.87263+00 f t SUBTOTAL 82200.00 1 4732 \N +180042 2025-08-01 21:43:46.874971+00 2025-08-01 21:43:46.874982+00 f t DESCUENTO 0.00 2 4732 \N +180043 2025-08-01 21:43:46.87678+00 2025-08-01 21:43:46.876789+00 f t TOTAL 82200.00 3 4732 \N +180044 2025-08-01 21:43:46.878272+00 2025-08-01 21:43:46.878279+00 f t ADELANTO 44200.00 4 4732 \N +184185 2025-08-04 09:39:34.678872+00 2025-08-04 09:39:34.678882+00 f t SUBTOTAL 0.00 1 4837 \N +184186 2025-08-04 09:39:34.681535+00 2025-08-04 09:39:34.681545+00 f t DESCUENTO 0.00 2 4837 \N +184187 2025-08-04 09:39:34.68288+00 2025-08-04 09:39:34.68289+00 f t TOTAL 0.00 3 4837 \N +184188 2025-08-04 09:39:34.684099+00 2025-08-04 09:39:34.684106+00 f t ADELANTO 0.00 4 4837 \N +184233 2025-08-04 11:54:37.159506+00 2025-08-04 11:54:37.159515+00 f t SUBTOTAL 68000.00 1 4838 \N +184234 2025-08-04 11:54:37.161345+00 2025-08-04 11:54:37.161353+00 f t DESCUENTO 0.00 2 4838 \N +184235 2025-08-04 11:54:37.162609+00 2025-08-04 11:54:37.162618+00 f t TOTAL 68000.00 3 4838 \N +184236 2025-08-04 11:54:37.163961+00 2025-08-04 11:54:37.163967+00 f t ADELANTO 13000.00 4 4838 \N +176645 2025-07-31 16:47:22.239618+00 2025-07-31 16:47:22.239627+00 f t SUBTOTAL 0.00 1 4634 \N +176646 2025-07-31 16:47:22.241015+00 2025-07-31 16:47:22.241022+00 f t DESCUENTO 0.00 2 4634 \N +176647 2025-07-31 16:47:22.242201+00 2025-07-31 16:47:22.242208+00 f t TOTAL 0.00 3 4634 \N +176648 2025-07-31 16:47:22.243335+00 2025-07-31 16:47:22.243341+00 f t ADELANTO 0.00 4 4634 \N +184289 2025-08-04 13:16:35.044362+00 2025-08-04 13:16:35.044372+00 f t SUBTOTAL 0.00 1 4841 \N +184290 2025-08-04 13:16:35.046053+00 2025-08-04 13:16:35.046064+00 f t DESCUENTO 0.00 2 4841 \N +184291 2025-08-04 13:16:35.047468+00 2025-08-04 13:16:35.047476+00 f t TOTAL 0.00 3 4841 \N +184292 2025-08-04 13:16:35.048573+00 2025-08-04 13:16:35.04858+00 f t ADELANTO 0.00 4 4841 \N +181601 2025-08-02 17:55:28.984373+00 2025-08-02 17:55:28.984386+00 f t SUBTOTAL 0.00 1 4767 \N +181602 2025-08-02 17:55:28.986869+00 2025-08-02 17:55:28.986881+00 f t DESCUENTO 0.00 2 4767 \N +181603 2025-08-02 17:55:28.988629+00 2025-08-02 17:55:28.988639+00 f t TOTAL 0.00 3 4767 \N +181604 2025-08-02 17:55:28.990351+00 2025-08-02 17:55:28.99036+00 f t ADELANTO 0.00 4 4767 \N +186221 2025-08-04 22:38:45.912321+00 2025-08-04 22:38:45.912334+00 f t SUBTOTAL 93200.00 1 4890 \N +186222 2025-08-04 22:38:45.914877+00 2025-08-04 22:38:45.914889+00 f t DESCUENTO 0.00 2 4890 \N +186223 2025-08-04 22:38:45.918404+00 2025-08-04 22:38:45.918416+00 f t TOTAL 93200.00 3 4890 \N +186224 2025-08-04 22:38:45.921433+00 2025-08-04 22:38:45.921445+00 f t ADELANTO 55200.00 4 4890 \N +177893 2025-08-01 00:57:35.918198+00 2025-08-01 00:57:35.918212+00 f t SUBTOTAL 125500.00 1 4670 \N +177894 2025-08-01 00:57:35.920485+00 2025-08-01 00:57:35.920497+00 f t DESCUENTO 0.00 2 4670 \N +177895 2025-08-01 00:57:35.922261+00 2025-08-01 00:57:35.922269+00 f t TOTAL 125500.00 3 4670 \N +177896 2025-08-01 00:57:35.924375+00 2025-08-01 00:57:35.924386+00 f t ADELANTO 30000.00 4 4670 \N +176721 2025-07-31 16:48:34.13662+00 2025-07-31 16:48:34.136632+00 f t SUBTOTAL 64500.00 1 4635 \N +176722 2025-07-31 16:48:34.138536+00 2025-07-31 16:48:34.138545+00 f t DESCUENTO 0.00 2 4635 \N +176723 2025-07-31 16:48:34.140003+00 2025-07-31 16:48:34.140012+00 f t TOTAL 64500.00 3 4635 \N +176724 2025-07-31 16:48:34.141459+00 2025-07-31 16:48:34.141467+00 f t ADELANTO 17000.00 4 4635 \N +178017 2025-08-01 03:21:19.262103+00 2025-08-01 03:21:19.262112+00 f t SUBTOTAL 0.00 1 4679 \N +178018 2025-08-01 03:21:19.263729+00 2025-08-01 03:21:19.263736+00 f t DESCUENTO 0.00 2 4679 \N +178019 2025-08-01 03:21:19.265314+00 2025-08-01 03:21:19.265321+00 f t TOTAL 0.00 3 4679 \N +178020 2025-08-01 03:21:19.266553+00 2025-08-01 03:21:19.266559+00 f t ADELANTO 0.00 4 4679 \N +176733 2025-07-31 16:48:41.331377+00 2025-07-31 16:48:41.331387+00 f t SUBTOTAL 189000.00 1 4633 \N +176734 2025-07-31 16:48:41.333922+00 2025-07-31 16:48:41.333932+00 f t DESCUENTO 0.00 2 4633 \N +176735 2025-07-31 16:48:41.335482+00 2025-07-31 16:48:41.335491+00 f t TOTAL 189000.00 3 4633 \N +176736 2025-07-31 16:48:41.337071+00 2025-07-31 16:48:41.337081+00 f t ADELANTO 53000.00 4 4633 \N +178349 2025-08-01 07:23:11.059871+00 2025-08-01 07:23:11.059885+00 f t SUBTOTAL 27500.00 1 4685 \N +178350 2025-08-01 07:23:11.062135+00 2025-08-01 07:23:11.062147+00 f t DESCUENTO 0.00 2 4685 \N +178351 2025-08-01 07:23:11.064039+00 2025-08-01 07:23:11.064051+00 f t TOTAL 27500.00 3 4685 \N +178352 2025-08-01 07:23:11.065838+00 2025-08-01 07:23:11.065847+00 f t ADELANTO 27500.00 4 4685 \N +178397 2025-08-01 07:27:46.591322+00 2025-08-01 07:27:46.591332+00 f t SUBTOTAL 42000.00 1 4686 \N +178398 2025-08-01 07:27:46.593344+00 2025-08-01 07:27:46.593352+00 f t DESCUENTO 0.00 2 4686 \N +178399 2025-08-01 07:27:46.594912+00 2025-08-01 07:27:46.594922+00 f t TOTAL 42000.00 3 4686 \N +178400 2025-08-01 07:27:46.596395+00 2025-08-01 07:27:46.596404+00 f t ADELANTO 9500.00 4 4686 \N +182853 2025-08-03 19:13:32.265424+00 2025-08-03 19:13:32.265435+00 f t SUBTOTAL 95700.00 1 4804 \N +182854 2025-08-03 19:13:32.267319+00 2025-08-03 19:13:32.267327+00 f t DESCUENTO 0.00 2 4804 \N +182855 2025-08-03 19:13:32.26856+00 2025-08-03 19:13:32.268566+00 f t TOTAL 95700.00 3 4804 \N +182856 2025-08-03 19:13:32.269743+00 2025-08-03 19:13:32.269749+00 f t ADELANTO 57700.00 4 4804 \N +176773 2025-07-31 16:49:47.408737+00 2025-07-31 16:49:47.408747+00 f t SUBTOTAL 72000.00 1 4636 \N +176774 2025-07-31 16:49:47.410373+00 2025-07-31 16:49:47.41038+00 f t DESCUENTO 0.00 2 4636 \N +176775 2025-07-31 16:49:47.411579+00 2025-07-31 16:49:47.411585+00 f t TOTAL 72000.00 3 4636 \N +176776 2025-07-31 16:49:47.412594+00 2025-07-31 16:49:47.412598+00 f t ADELANTO 19000.00 4 4636 \N +176825 2025-07-31 16:50:35.116444+00 2025-07-31 16:50:35.116453+00 f t SUBTOTAL 0.00 1 4638 \N +176826 2025-07-31 16:50:35.11769+00 2025-07-31 16:50:35.117695+00 f t DESCUENTO 0.00 2 4638 \N +176827 2025-07-31 16:50:35.119495+00 2025-07-31 16:50:35.119502+00 f t TOTAL 0.00 3 4638 \N +176828 2025-07-31 16:50:35.120696+00 2025-07-31 16:50:35.120704+00 f t ADELANTO 0.00 4 4638 \N +176869 2025-07-31 16:51:24.132765+00 2025-07-31 16:51:24.132774+00 f t SUBTOTAL 189000.00 1 4637 \N +176870 2025-07-31 16:51:24.134981+00 2025-07-31 16:51:24.134989+00 f t DESCUENTO 0.00 2 4637 \N +176871 2025-07-31 16:51:24.13708+00 2025-07-31 16:51:24.13709+00 f t TOTAL 189000.00 3 4637 \N +176872 2025-07-31 16:51:24.138813+00 2025-07-31 16:51:24.138822+00 f t ADELANTO 53000.00 4 4637 \N +176901 2025-07-31 17:00:56.458857+00 2025-07-31 17:00:56.458871+00 f t SUBTOTAL 50000.00 1 4639 \N +176902 2025-07-31 17:00:56.461521+00 2025-07-31 17:00:56.461532+00 f t DESCUENTO 0.00 2 4639 \N +176903 2025-07-31 17:00:56.463609+00 2025-07-31 17:00:56.46362+00 f t TOTAL 50000.00 3 4639 \N +176904 2025-07-31 17:00:56.465517+00 2025-07-31 17:00:56.465528+00 f t ADELANTO 10000.00 4 4639 \N +176909 2025-07-31 17:51:09.649435+00 2025-07-31 17:51:09.64945+00 f t SUBTOTAL 0.00 1 4640 \N +176910 2025-07-31 17:51:09.653473+00 2025-07-31 17:51:09.653488+00 f t DESCUENTO 0.00 2 4640 \N +176911 2025-07-31 17:51:09.655912+00 2025-07-31 17:51:09.655927+00 f t TOTAL 0.00 3 4640 \N +176912 2025-07-31 17:51:09.658241+00 2025-07-31 17:51:09.658254+00 f t ADELANTO 0.00 4 4640 \N +179829 2025-08-01 19:45:31.765554+00 2025-08-01 19:45:31.765563+00 f t SUBTOTAL 0.00 1 4726 \N +179830 2025-08-01 19:45:31.766952+00 2025-08-01 19:45:31.766959+00 f t DESCUENTO 0.00 2 4726 \N +179831 2025-08-01 19:45:31.768022+00 2025-08-01 19:45:31.76803+00 f t TOTAL 0.00 3 4726 \N +179832 2025-08-01 19:45:31.768959+00 2025-08-01 19:45:31.768964+00 f t ADELANTO 0.00 4 4726 \N +176917 2025-07-31 17:52:11.545672+00 2025-07-31 17:52:11.545687+00 f t SUBTOTAL 0.00 1 4641 \N +176918 2025-07-31 17:52:11.54744+00 2025-07-31 17:52:11.547451+00 f t DESCUENTO 0.00 2 4641 \N +176919 2025-07-31 17:52:11.549137+00 2025-07-31 17:52:11.549146+00 f t TOTAL 0.00 3 4641 \N +176920 2025-07-31 17:52:11.550605+00 2025-07-31 17:52:11.550614+00 f t ADELANTO 0.00 4 4641 \N +176925 2025-07-31 18:04:15.195762+00 2025-07-31 18:04:15.195772+00 f t SUBTOTAL 0.00 1 4642 \N +176926 2025-07-31 18:04:15.197112+00 2025-07-31 18:04:15.197119+00 f t DESCUENTO 0.00 2 4642 \N +176927 2025-07-31 18:04:15.19819+00 2025-07-31 18:04:15.198196+00 f t TOTAL 0.00 3 4642 \N +176928 2025-07-31 18:04:15.199224+00 2025-07-31 18:04:15.19923+00 f t ADELANTO 0.00 4 4642 \N +176933 2025-07-31 18:05:11.376158+00 2025-07-31 18:05:11.37617+00 f t SUBTOTAL 0.00 1 4643 \N +176934 2025-07-31 18:05:11.378564+00 2025-07-31 18:05:11.37858+00 f t DESCUENTO 0.00 2 4643 \N +176935 2025-07-31 18:05:11.38124+00 2025-07-31 18:05:11.381254+00 f t TOTAL 0.00 3 4643 \N +176936 2025-07-31 18:05:11.383561+00 2025-07-31 18:05:11.383573+00 f t ADELANTO 0.00 4 4643 \N +179921 2025-08-01 21:10:18.033605+00 2025-08-01 21:10:18.033614+00 f t SUBTOTAL 0.00 1 4728 \N +179922 2025-08-01 21:10:18.035169+00 2025-08-01 21:10:18.035177+00 f t DESCUENTO 0.00 2 4728 \N +179923 2025-08-01 21:10:18.036741+00 2025-08-01 21:10:18.036753+00 f t TOTAL 0.00 3 4728 \N +179924 2025-08-01 21:10:18.038095+00 2025-08-01 21:10:18.038101+00 f t ADELANTO 0.00 4 4728 \N +180049 2025-08-01 22:22:00.683407+00 2025-08-01 22:22:00.683415+00 f t SUBTOTAL 0.00 1 4733 \N +180050 2025-08-01 22:22:00.685074+00 2025-08-01 22:22:00.685082+00 f t DESCUENTO 0.00 2 4733 \N +180051 2025-08-01 22:22:00.68639+00 2025-08-01 22:22:00.686399+00 f t TOTAL 0.00 3 4733 \N +180052 2025-08-01 22:22:00.687696+00 2025-08-01 22:22:00.687702+00 f t ADELANTO 0.00 4 4733 \N +185973 2025-08-04 20:31:57.077705+00 2025-08-04 20:31:57.077718+00 f t SUBTOTAL 50000.00 1 4881 \N +185974 2025-08-04 20:31:57.080413+00 2025-08-04 20:31:57.080426+00 f t DESCUENTO 0.00 2 4881 \N +185975 2025-08-04 20:31:57.082497+00 2025-08-04 20:31:57.08251+00 f t TOTAL 50000.00 3 4881 \N +185976 2025-08-04 20:31:57.084599+00 2025-08-04 20:31:57.084612+00 f t ADELANTO 10000.00 4 4881 \N +224312 2025-08-19 06:56:57.998915+00 2025-08-19 06:56:57.998934+00 f t ADELANTO 0.00 4 5808 \N +177669 2025-07-31 23:03:32.551535+00 2025-07-31 23:03:32.551545+00 f t SUBTOTAL 95700.00 1 4668 \N +176977 2025-07-31 18:11:31.963327+00 2025-07-31 18:11:31.963336+00 f t SUBTOTAL 0.00 1 4644 \N +176978 2025-07-31 18:11:31.965358+00 2025-07-31 18:11:31.965367+00 f t DESCUENTO 0.00 2 4644 \N +176979 2025-07-31 18:11:31.966935+00 2025-07-31 18:11:31.966947+00 f t TOTAL 0.00 3 4644 \N +176980 2025-07-31 18:11:31.968366+00 2025-07-31 18:11:31.968373+00 f t ADELANTO 0.00 4 4644 \N +177670 2025-07-31 23:03:32.55377+00 2025-07-31 23:03:32.553778+00 f t DESCUENTO 0.00 2 4668 \N +177671 2025-07-31 23:03:32.554942+00 2025-07-31 23:03:32.554949+00 f t TOTAL 95700.00 3 4668 \N +177672 2025-07-31 23:03:32.556473+00 2025-07-31 23:03:32.556479+00 f t ADELANTO 57700.00 4 4668 \N +177901 2025-08-01 00:57:46.873975+00 2025-08-01 00:57:46.873989+00 f t SUBTOTAL 0.00 1 4671 \N +177902 2025-08-01 00:57:46.876115+00 2025-08-01 00:57:46.876127+00 f t DESCUENTO 0.00 2 4671 \N +177903 2025-08-01 00:57:46.87782+00 2025-08-01 00:57:46.877831+00 f t TOTAL 0.00 3 4671 \N +177904 2025-08-01 00:57:46.879249+00 2025-08-01 00:57:46.87926+00 f t ADELANTO 0.00 4 4671 \N +177013 2025-07-31 18:17:32.61588+00 2025-07-31 18:17:32.615892+00 f t SUBTOTAL 64500.00 1 4645 \N +177014 2025-07-31 18:17:32.617602+00 2025-07-31 18:17:32.617611+00 f t DESCUENTO 0.00 2 4645 \N +177015 2025-07-31 18:17:32.619283+00 2025-07-31 18:17:32.61929+00 f t TOTAL 64500.00 3 4645 \N +177016 2025-07-31 18:17:32.620707+00 2025-07-31 18:17:32.620714+00 f t ADELANTO 17000.00 4 4645 \N +177041 2025-07-31 18:18:51.033016+00 2025-07-31 18:18:51.033029+00 f t SUBTOTAL 64500.00 1 4646 \N +177042 2025-07-31 18:18:51.037412+00 2025-07-31 18:18:51.037422+00 f t DESCUENTO 0.00 2 4646 \N +177043 2025-07-31 18:18:51.03919+00 2025-07-31 18:18:51.039201+00 f t TOTAL 64500.00 3 4646 \N +177044 2025-07-31 18:18:51.040886+00 2025-07-31 18:18:51.040896+00 f t ADELANTO 17000.00 4 4646 \N +177049 2025-07-31 18:26:59.955233+00 2025-07-31 18:26:59.955244+00 f t SUBTOTAL 0.00 1 4647 \N +177050 2025-07-31 18:26:59.958624+00 2025-07-31 18:26:59.958637+00 f t DESCUENTO 0.00 2 4647 \N +177051 2025-07-31 18:26:59.960379+00 2025-07-31 18:26:59.960386+00 f t TOTAL 0.00 3 4647 \N +177052 2025-07-31 18:26:59.961559+00 2025-07-31 18:26:59.961565+00 f t ADELANTO 0.00 4 4647 \N +178405 2025-08-01 09:40:09.8574+00 2025-08-01 09:40:09.857417+00 f t SUBTOTAL 0.00 1 4687 \N +178406 2025-08-01 09:40:09.860026+00 2025-08-01 09:40:09.860039+00 f t DESCUENTO 0.00 2 4687 \N +178407 2025-08-01 09:40:09.862704+00 2025-08-01 09:40:09.862714+00 f t TOTAL 0.00 3 4687 \N +178408 2025-08-01 09:40:09.86512+00 2025-08-01 09:40:09.86513+00 f t ADELANTO 0.00 4 4687 \N +177105 2025-07-31 18:39:27.54083+00 2025-07-31 18:39:27.540839+00 f t SUBTOTAL 42000.00 1 4648 \N +177106 2025-07-31 18:39:27.542684+00 2025-07-31 18:39:27.542693+00 f t DESCUENTO 0.00 2 4648 \N +177107 2025-07-31 18:39:27.54406+00 2025-07-31 18:39:27.544074+00 f t TOTAL 42000.00 3 4648 \N +177108 2025-07-31 18:39:27.545215+00 2025-07-31 18:39:27.545222+00 f t ADELANTO 9500.00 4 4648 \N +178909 2025-08-01 13:28:44.416317+00 2025-08-01 13:28:44.416327+00 f t SUBTOTAL 42000.00 1 4702 \N +178910 2025-08-01 13:28:44.418189+00 2025-08-01 13:28:44.418198+00 f t DESCUENTO 0.00 2 4702 \N +178911 2025-08-01 13:28:44.419621+00 2025-08-01 13:28:44.419629+00 f t TOTAL 42000.00 3 4702 \N +178912 2025-08-01 13:28:44.420954+00 2025-08-01 13:28:44.420961+00 f t ADELANTO 9500.00 4 4702 \N +179017 2025-08-01 14:08:31.193098+00 2025-08-01 14:08:31.193107+00 f t SUBTOTAL 0.00 1 4708 \N +179018 2025-08-01 14:08:31.194427+00 2025-08-01 14:08:31.194434+00 f t DESCUENTO 0.00 2 4708 \N +179019 2025-08-01 14:08:31.196035+00 2025-08-01 14:08:31.19604+00 f t TOTAL 0.00 3 4708 \N +179020 2025-08-01 14:08:31.197015+00 2025-08-01 14:08:31.19702+00 f t ADELANTO 0.00 4 4708 \N +177129 2025-07-31 18:46:43.459948+00 2025-07-31 18:46:43.459961+00 f t SUBTOTAL 0.00 1 4649 \N +177130 2025-07-31 18:46:43.462427+00 2025-07-31 18:46:43.462435+00 f t DESCUENTO 0.00 2 4649 \N +177131 2025-07-31 18:46:43.466155+00 2025-07-31 18:46:43.466164+00 f t TOTAL 0.00 3 4649 \N +177132 2025-07-31 18:46:43.46848+00 2025-07-31 18:46:43.468488+00 f t ADELANTO 0.00 4 4649 \N +179249 2025-08-01 14:48:44.462525+00 2025-08-01 14:48:44.462534+00 f t SUBTOTAL 0.00 1 4711 \N +179250 2025-08-01 14:48:44.464699+00 2025-08-01 14:48:44.464707+00 f t DESCUENTO 0.00 2 4711 \N +179251 2025-08-01 14:48:44.4662+00 2025-08-01 14:48:44.466208+00 f t TOTAL 0.00 3 4711 \N +179252 2025-08-01 14:48:44.46752+00 2025-08-01 14:48:44.467526+00 f t ADELANTO 0.00 4 4711 \N +177161 2025-07-31 18:47:49.525421+00 2025-07-31 18:47:49.525435+00 f t SUBTOTAL 0.00 1 4650 \N +177162 2025-07-31 18:47:49.527611+00 2025-07-31 18:47:49.52762+00 f t DESCUENTO 0.00 2 4650 \N +177163 2025-07-31 18:47:49.529201+00 2025-07-31 18:47:49.52921+00 f t TOTAL 0.00 3 4650 \N +177164 2025-07-31 18:47:49.53067+00 2025-07-31 18:47:49.53068+00 f t ADELANTO 0.00 4 4650 \N +177181 2025-07-31 18:48:19.182277+00 2025-07-31 18:48:19.182286+00 f t SUBTOTAL 64500.00 1 4651 \N +177182 2025-07-31 18:48:19.18427+00 2025-07-31 18:48:19.184283+00 f t DESCUENTO 0.00 2 4651 \N +177183 2025-07-31 18:48:19.185858+00 2025-07-31 18:48:19.185867+00 f t TOTAL 64500.00 3 4651 \N +177184 2025-07-31 18:48:19.187253+00 2025-07-31 18:48:19.187264+00 f t ADELANTO 17000.00 4 4651 \N +177189 2025-07-31 18:52:00.87857+00 2025-07-31 18:52:00.87858+00 f t SUBTOTAL 0.00 1 4652 \N +177190 2025-07-31 18:52:00.880809+00 2025-07-31 18:52:00.880819+00 f t DESCUENTO 0.00 2 4652 \N +177191 2025-07-31 18:52:00.882961+00 2025-07-31 18:52:00.882972+00 f t TOTAL 0.00 3 4652 \N +177192 2025-07-31 18:52:00.885192+00 2025-07-31 18:52:00.885201+00 f t ADELANTO 0.00 4 4652 \N +179689 2025-08-01 18:41:13.233402+00 2025-08-01 18:41:13.233414+00 f t SUBTOTAL 50000.00 1 4721 \N +177197 2025-07-31 18:52:29.490997+00 2025-07-31 18:52:29.49101+00 f t SUBTOTAL 0.00 1 4653 \N +177198 2025-07-31 18:52:29.492652+00 2025-07-31 18:52:29.492659+00 f t DESCUENTO 0.00 2 4653 \N +177199 2025-07-31 18:52:29.493955+00 2025-07-31 18:52:29.493961+00 f t TOTAL 0.00 3 4653 \N +177200 2025-07-31 18:52:29.495027+00 2025-07-31 18:52:29.495036+00 f t ADELANTO 0.00 4 4653 \N +179690 2025-08-01 18:41:13.235324+00 2025-08-01 18:41:13.235332+00 f t DESCUENTO 0.00 2 4721 \N +179691 2025-08-01 18:41:13.236679+00 2025-08-01 18:41:13.236686+00 f t TOTAL 50000.00 3 4721 \N +179692 2025-08-01 18:41:13.238642+00 2025-08-01 18:41:13.238648+00 f t ADELANTO 10000.00 4 4721 \N +179877 2025-08-01 20:07:10.912591+00 2025-08-01 20:07:10.912605+00 f t SUBTOTAL 42000.00 1 4727 \N +179878 2025-08-01 20:07:10.914945+00 2025-08-01 20:07:10.914957+00 f t DESCUENTO 0.00 2 4727 \N +179879 2025-08-01 20:07:10.917041+00 2025-08-01 20:07:10.91705+00 f t TOTAL 42000.00 3 4727 \N +179880 2025-08-01 20:07:10.91898+00 2025-08-01 20:07:10.918993+00 f t ADELANTO 9500.00 4 4727 \N +177229 2025-07-31 19:13:16.748211+00 2025-07-31 19:13:16.748223+00 f t SUBTOTAL 42000.00 1 4654 \N +177230 2025-07-31 19:13:16.749938+00 2025-07-31 19:13:16.749947+00 f t DESCUENTO 0.00 2 4654 \N +177231 2025-07-31 19:13:16.751414+00 2025-07-31 19:13:16.751422+00 f t TOTAL 42000.00 3 4654 \N +177232 2025-07-31 19:13:16.752702+00 2025-07-31 19:13:16.752709+00 f t ADELANTO 9500.00 4 4654 \N +295793 2025-09-14 13:47:31.408735+00 2025-09-14 13:47:31.408743+00 f t SUBTOTAL 78000.00 1 7526 \N +182025 2025-08-02 20:45:18.570916+00 2025-08-02 20:45:18.570925+00 f t SUBTOTAL 68000.00 1 4779 \N +182026 2025-08-02 20:45:18.57277+00 2025-08-02 20:45:18.57278+00 f t DESCUENTO 0.00 2 4779 \N +182027 2025-08-02 20:45:18.574303+00 2025-08-02 20:45:18.574311+00 f t TOTAL 68000.00 3 4779 \N +182028 2025-08-02 20:45:18.57541+00 2025-08-02 20:45:18.575416+00 f t ADELANTO 13000.00 4 4779 \N +182109 2025-08-02 22:32:17.421249+00 2025-08-02 22:32:17.421259+00 f t SUBTOTAL 0.00 1 4784 \N +182110 2025-08-02 22:32:17.423908+00 2025-08-02 22:32:17.423917+00 f t DESCUENTO 0.00 2 4784 \N +182111 2025-08-02 22:32:17.425388+00 2025-08-02 22:32:17.425398+00 f t TOTAL 0.00 3 4784 \N +182112 2025-08-02 22:32:17.42686+00 2025-08-02 22:32:17.42687+00 f t ADELANTO 0.00 4 4784 \N +186293 2025-08-04 22:41:17.289062+00 2025-08-04 22:41:17.289071+00 f t SUBTOTAL 27500.00 1 4892 \N +186294 2025-08-04 22:41:17.291189+00 2025-08-04 22:41:17.2912+00 f t DESCUENTO 0.00 2 4892 \N +186295 2025-08-04 22:41:17.292854+00 2025-08-04 22:41:17.29286+00 f t TOTAL 27500.00 3 4892 \N +186296 2025-08-04 22:41:17.294072+00 2025-08-04 22:41:17.294078+00 f t ADELANTO 27500.00 4 4892 \N +186477 2025-08-04 23:52:11.901645+00 2025-08-04 23:52:11.901656+00 f t SUBTOTAL 0.00 1 4898 \N +177909 2025-08-01 00:58:21.863883+00 2025-08-01 00:58:21.863894+00 f t SUBTOTAL 0.00 1 4672 \N +177910 2025-08-01 00:58:21.865459+00 2025-08-01 00:58:21.865467+00 f t DESCUENTO 0.00 2 4672 \N +177911 2025-08-01 00:58:21.866871+00 2025-08-01 00:58:21.866878+00 f t TOTAL 0.00 3 4672 \N +177912 2025-08-01 00:58:21.868285+00 2025-08-01 00:58:21.868291+00 f t ADELANTO 0.00 4 4672 \N +177965 2025-08-01 01:23:23.352614+00 2025-08-01 01:23:23.352623+00 f t SUBTOTAL 0.00 1 4675 \N +177966 2025-08-01 01:23:23.354564+00 2025-08-01 01:23:23.354574+00 f t DESCUENTO 0.00 2 4675 \N +177967 2025-08-01 01:23:23.356228+00 2025-08-01 01:23:23.356239+00 f t TOTAL 0.00 3 4675 \N +177968 2025-08-01 01:23:23.357632+00 2025-08-01 01:23:23.357639+00 f t ADELANTO 0.00 4 4675 \N +191102 2025-08-06 18:33:38.341342+00 2025-08-06 18:33:38.34135+00 f t DESCUENTO 0.00 2 4995 \N +191103 2025-08-06 18:33:38.342894+00 2025-08-06 18:33:38.3429+00 f t TOTAL 0.00 3 4995 \N +191104 2025-08-06 18:33:38.344308+00 2025-08-06 18:33:38.344314+00 f t ADELANTO 0.00 4 4995 \N +178413 2025-08-01 09:41:35.239151+00 2025-08-01 09:41:35.239231+00 f t SUBTOTAL 0.00 1 4688 \N +178414 2025-08-01 09:41:35.240756+00 2025-08-01 09:41:35.240764+00 f t DESCUENTO 0.00 2 4688 \N +178415 2025-08-01 09:41:35.242301+00 2025-08-01 09:41:35.242307+00 f t TOTAL 0.00 3 4688 \N +178416 2025-08-01 09:41:35.243541+00 2025-08-01 09:41:35.243547+00 f t ADELANTO 0.00 4 4688 \N +178665 2025-08-01 11:31:36.086958+00 2025-08-01 11:31:36.086967+00 f t SUBTOTAL 60000.00 1 4696 \N +178666 2025-08-01 11:31:36.089123+00 2025-08-01 11:31:36.089135+00 f t DESCUENTO 0.00 2 4696 \N +178667 2025-08-01 11:31:36.090598+00 2025-08-01 11:31:36.090605+00 f t TOTAL 60000.00 3 4696 \N +178668 2025-08-01 11:31:36.092378+00 2025-08-01 11:31:36.092386+00 f t ADELANTO 10000.00 4 4696 \N +183197 2025-08-03 21:17:12.974554+00 2025-08-03 21:17:12.974565+00 f t SUBTOTAL 42000.00 1 4812 \N +183198 2025-08-03 21:17:12.976407+00 2025-08-03 21:17:12.976418+00 f t DESCUENTO 0.00 2 4812 \N +183199 2025-08-03 21:17:12.97836+00 2025-08-03 21:17:12.978371+00 f t TOTAL 42000.00 3 4812 \N +183200 2025-08-03 21:17:12.980062+00 2025-08-03 21:17:12.980069+00 f t ADELANTO 9500.00 4 4812 \N +178813 2025-08-01 13:10:24.998004+00 2025-08-01 13:10:24.998013+00 f t SUBTOTAL 129700.00 1 4700 \N +178814 2025-08-01 13:10:25.000174+00 2025-08-01 13:10:25.000186+00 f t DESCUENTO 0.00 2 4700 \N +178815 2025-08-01 13:10:25.002071+00 2025-08-01 13:10:25.002078+00 f t TOTAL 129700.00 3 4700 \N +178816 2025-08-01 13:10:25.003849+00 2025-08-01 13:10:25.003858+00 f t ADELANTO 36700.00 4 4700 \N +183253 2025-08-03 22:32:50.925442+00 2025-08-03 22:32:50.925452+00 f t SUBTOTAL 0.00 1 4815 \N +183254 2025-08-03 22:32:50.927701+00 2025-08-03 22:32:50.92771+00 f t DESCUENTO 0.00 2 4815 \N +183255 2025-08-03 22:32:50.929308+00 2025-08-03 22:32:50.929318+00 f t TOTAL 0.00 3 4815 \N +183256 2025-08-03 22:32:50.930951+00 2025-08-03 22:32:50.93096+00 f t ADELANTO 0.00 4 4815 \N +178917 2025-08-01 13:47:47.276088+00 2025-08-01 13:47:47.276098+00 f t SUBTOTAL 0.00 1 4704 \N +178918 2025-08-01 13:47:47.277991+00 2025-08-01 13:47:47.277999+00 f t DESCUENTO 0.00 2 4704 \N +178919 2025-08-01 13:47:47.279521+00 2025-08-01 13:47:47.279529+00 f t TOTAL 0.00 3 4704 \N +178920 2025-08-01 13:47:47.280715+00 2025-08-01 13:47:47.280721+00 f t ADELANTO 0.00 4 4704 \N +183737 2025-08-04 00:04:30.353612+00 2025-08-04 00:04:30.353623+00 f t SUBTOTAL 64500.00 1 4823 \N +183738 2025-08-04 00:04:30.355685+00 2025-08-04 00:04:30.355694+00 f t DESCUENTO 0.00 2 4823 \N +183739 2025-08-04 00:04:30.357216+00 2025-08-04 00:04:30.357224+00 f t TOTAL 64500.00 3 4823 \N +179353 2025-08-01 16:06:23.877505+00 2025-08-01 16:06:23.877517+00 f t SUBTOTAL 70000.00 1 4714 \N +179354 2025-08-01 16:06:23.88012+00 2025-08-01 16:06:23.880132+00 f t DESCUENTO 0.00 2 4714 \N +179355 2025-08-01 16:06:23.882566+00 2025-08-01 16:06:23.882576+00 f t TOTAL 70000.00 3 4714 \N +179356 2025-08-01 16:06:23.884501+00 2025-08-01 16:06:23.884512+00 f t ADELANTO 15000.00 4 4714 \N +183740 2025-08-04 00:04:30.358603+00 2025-08-04 00:04:30.35861+00 f t ADELANTO 17000.00 4 4823 \N +183901 2025-08-04 03:58:44.845458+00 2025-08-04 03:58:44.845469+00 f t SUBTOTAL 50000.00 1 4831 \N +183902 2025-08-04 03:58:44.848143+00 2025-08-04 03:58:44.848152+00 f t DESCUENTO 0.00 2 4831 \N +183903 2025-08-04 03:58:44.850068+00 2025-08-04 03:58:44.850075+00 f t TOTAL 50000.00 3 4831 \N +183904 2025-08-04 03:58:44.85173+00 2025-08-04 03:58:44.851736+00 f t ADELANTO 10000.00 4 4831 \N +179789 2025-08-01 18:43:33.200354+00 2025-08-01 18:43:33.200362+00 f t SUBTOTAL 42000.00 1 4724 \N +179790 2025-08-01 18:43:33.202294+00 2025-08-01 18:43:33.202301+00 f t DESCUENTO 0.00 2 4724 \N +179791 2025-08-01 18:43:33.203682+00 2025-08-01 18:43:33.203687+00 f t TOTAL 42000.00 3 4724 \N +179792 2025-08-01 18:43:33.205132+00 2025-08-01 18:43:33.205141+00 f t ADELANTO 9500.00 4 4724 \N +184297 2025-08-04 13:18:16.74823+00 2025-08-04 13:18:16.748244+00 f t SUBTOTAL 0.00 1 4842 \N +184298 2025-08-04 13:18:16.750028+00 2025-08-04 13:18:16.750038+00 f t DESCUENTO 0.00 2 4842 \N +184299 2025-08-04 13:18:16.751538+00 2025-08-04 13:18:16.751547+00 f t TOTAL 0.00 3 4842 \N +184300 2025-08-04 13:18:16.752934+00 2025-08-04 13:18:16.752943+00 f t ADELANTO 0.00 4 4842 \N +184381 2025-08-04 13:30:06.554558+00 2025-08-04 13:30:06.554573+00 f t SUBTOTAL 50000.00 1 4843 \N +184382 2025-08-04 13:30:06.562714+00 2025-08-04 13:30:06.562728+00 f t DESCUENTO 0.00 2 4843 \N +184383 2025-08-04 13:30:06.570489+00 2025-08-04 13:30:06.570504+00 f t TOTAL 50000.00 3 4843 \N +184384 2025-08-04 13:30:06.578469+00 2025-08-04 13:30:06.578486+00 f t ADELANTO 10000.00 4 4843 \N +180153 2025-08-01 22:53:48.098683+00 2025-08-01 22:53:48.098695+00 f t SUBTOTAL 0.00 1 4737 \N +180154 2025-08-01 22:53:48.100886+00 2025-08-01 22:53:48.100896+00 f t DESCUENTO 0.00 2 4737 \N +180155 2025-08-01 22:53:48.10224+00 2025-08-01 22:53:48.102248+00 f t TOTAL 0.00 3 4737 \N +180156 2025-08-01 22:53:48.104089+00 2025-08-01 22:53:48.104097+00 f t ADELANTO 0.00 4 4737 \N +184513 2025-08-04 14:42:02.679235+00 2025-08-04 14:42:02.679248+00 f t SUBTOTAL 0.00 1 4848 \N +184514 2025-08-04 14:42:02.681497+00 2025-08-04 14:42:02.681506+00 f t DESCUENTO 0.00 2 4848 \N +184515 2025-08-04 14:42:02.682874+00 2025-08-04 14:42:02.682881+00 f t TOTAL 0.00 3 4848 \N +184516 2025-08-04 14:42:02.68469+00 2025-08-04 14:42:02.684703+00 f t ADELANTO 0.00 4 4848 \N +295794 2025-09-14 13:47:31.410326+00 2025-09-14 13:47:31.410332+00 f t DESCUENTO 0.00 2 7526 \N +180265 2025-08-01 23:12:52.481327+00 2025-08-01 23:12:52.48134+00 f t SUBTOTAL 64500.00 1 4740 \N +180266 2025-08-01 23:12:52.483248+00 2025-08-01 23:12:52.483258+00 f t DESCUENTO 0.00 2 4740 \N +180267 2025-08-01 23:12:52.484625+00 2025-08-01 23:12:52.484632+00 f t TOTAL 64500.00 3 4740 \N +180268 2025-08-01 23:12:52.485664+00 2025-08-01 23:12:52.48567+00 f t ADELANTO 17000.00 4 4740 \N +199713 2025-08-10 16:33:12.621762+00 2025-08-10 16:33:12.621776+00 f t SUBTOTAL 0.00 1 5215 \N +199714 2025-08-10 16:33:12.623688+00 2025-08-10 16:33:12.623699+00 f t DESCUENTO 0.00 2 5215 \N +199715 2025-08-10 16:33:12.625466+00 2025-08-10 16:33:12.625476+00 f t TOTAL 0.00 3 5215 \N +182033 2025-08-02 21:02:53.31369+00 2025-08-02 21:02:53.313703+00 f t SUBTOTAL 0.00 1 4780 \N +182034 2025-08-02 21:02:53.31556+00 2025-08-02 21:02:53.315572+00 f t DESCUENTO 0.00 2 4780 \N +182035 2025-08-02 21:02:53.317188+00 2025-08-02 21:02:53.317198+00 f t TOTAL 0.00 3 4780 \N +182036 2025-08-02 21:02:53.318837+00 2025-08-02 21:02:53.318847+00 f t ADELANTO 0.00 4 4780 \N +182117 2025-08-02 22:38:52.179913+00 2025-08-02 22:38:52.179926+00 f t SUBTOTAL 0.00 1 4785 \N +182118 2025-08-02 22:38:52.181476+00 2025-08-02 22:38:52.181484+00 f t DESCUENTO 0.00 2 4785 \N +182119 2025-08-02 22:38:52.183237+00 2025-08-02 22:38:52.183246+00 f t TOTAL 0.00 3 4785 \N +182120 2025-08-02 22:38:52.185008+00 2025-08-02 22:38:52.185018+00 f t ADELANTO 0.00 4 4785 \N +186478 2025-08-04 23:52:11.903635+00 2025-08-04 23:52:11.903646+00 f t DESCUENTO 0.00 2 4898 \N +186479 2025-08-04 23:52:11.905603+00 2025-08-04 23:52:11.905613+00 f t TOTAL 0.00 3 4898 \N +186480 2025-08-04 23:52:11.907221+00 2025-08-04 23:52:11.907229+00 f t ADELANTO 0.00 4 4898 \N +182797 2025-08-03 15:42:59.689518+00 2025-08-03 15:42:59.68953+00 f t SUBTOTAL 88000.00 1 4801 \N +182798 2025-08-03 15:42:59.691402+00 2025-08-03 15:42:59.691412+00 f t DESCUENTO 0.00 2 4801 \N +180341 2025-08-01 23:16:07.243422+00 2025-08-01 23:16:07.243432+00 f t SUBTOTAL 144000.00 1 4739 \N +180342 2025-08-01 23:16:07.245797+00 2025-08-01 23:16:07.245808+00 f t DESCUENTO 0.00 2 4739 \N +180343 2025-08-01 23:16:07.24764+00 2025-08-01 23:16:07.247651+00 f t TOTAL 144000.00 3 4739 \N +180344 2025-08-01 23:16:07.249555+00 2025-08-01 23:16:07.249564+00 f t ADELANTO 38000.00 4 4739 \N +182799 2025-08-03 15:42:59.693217+00 2025-08-03 15:42:59.693226+00 f t TOTAL 88000.00 3 4801 \N +182800 2025-08-03 15:42:59.695292+00 2025-08-03 15:42:59.695301+00 f t ADELANTO 19000.00 4 4801 \N +186901 2025-08-05 02:21:04.672226+00 2025-08-05 02:21:04.672241+00 f t SUBTOTAL 0.00 1 4905 \N +186902 2025-08-05 02:21:04.674999+00 2025-08-05 02:21:04.675012+00 f t DESCUENTO 0.00 2 4905 \N +183029 2025-08-03 19:45:04.963655+00 2025-08-03 19:45:04.963669+00 f t SUBTOTAL 0.00 1 4807 \N +183030 2025-08-03 19:45:04.966865+00 2025-08-03 19:45:04.966877+00 f t DESCUENTO 0.00 2 4807 \N +183031 2025-08-03 19:45:04.969273+00 2025-08-03 19:45:04.969287+00 f t TOTAL 0.00 3 4807 \N +183032 2025-08-03 19:45:04.971661+00 2025-08-03 19:45:04.971673+00 f t ADELANTO 0.00 4 4807 \N +183153 2025-08-03 21:16:21.774193+00 2025-08-03 21:16:21.774206+00 f t SUBTOTAL 0.00 1 4813 \N +183154 2025-08-03 21:16:21.776713+00 2025-08-03 21:16:21.776724+00 f t DESCUENTO 0.00 2 4813 \N +183155 2025-08-03 21:16:21.778473+00 2025-08-03 21:16:21.778483+00 f t TOTAL 0.00 3 4813 \N +183156 2025-08-03 21:16:21.780139+00 2025-08-03 21:16:21.780148+00 f t ADELANTO 0.00 4 4813 \N +180385 2025-08-02 01:56:57.9931+00 2025-08-02 01:56:57.993111+00 f t SUBTOTAL 49500.00 1 4741 \N +180386 2025-08-02 01:56:57.994995+00 2025-08-02 01:56:57.995005+00 f t DESCUENTO 0.00 2 4741 \N +180387 2025-08-02 01:56:57.996484+00 2025-08-02 01:56:57.996492+00 f t TOTAL 49500.00 3 4741 \N +180388 2025-08-02 01:56:57.997754+00 2025-08-02 01:56:57.997762+00 f t ADELANTO 11500.00 4 4741 \N +183501 2025-08-03 23:15:32.091935+00 2025-08-03 23:15:32.091944+00 f t SUBTOTAL 0.00 1 4818 \N +183502 2025-08-03 23:15:32.094077+00 2025-08-03 23:15:32.094086+00 f t DESCUENTO 0.00 2 4818 \N +183503 2025-08-03 23:15:32.09566+00 2025-08-03 23:15:32.095668+00 f t TOTAL 0.00 3 4818 \N +183504 2025-08-03 23:15:32.097068+00 2025-08-03 23:15:32.097077+00 f t ADELANTO 0.00 4 4818 \N +180425 2025-08-02 02:29:03.920429+00 2025-08-02 02:29:03.920443+00 f t SUBTOTAL 42000.00 1 4742 \N +180426 2025-08-02 02:29:03.923231+00 2025-08-02 02:29:03.923244+00 f t DESCUENTO 0.00 2 4742 \N +180427 2025-08-02 02:29:03.925568+00 2025-08-02 02:29:03.92558+00 f t TOTAL 42000.00 3 4742 \N +180428 2025-08-02 02:29:03.928586+00 2025-08-02 02:29:03.9286+00 f t ADELANTO 9500.00 4 4742 \N +183793 2025-08-04 00:23:53.974837+00 2025-08-04 00:23:53.974846+00 f t SUBTOTAL 68000.00 1 4825 \N +183794 2025-08-04 00:23:53.977336+00 2025-08-04 00:23:53.977392+00 f t DESCUENTO 0.00 2 4825 \N +183795 2025-08-04 00:23:53.979791+00 2025-08-04 00:23:53.979802+00 f t TOTAL 68000.00 3 4825 \N +183796 2025-08-04 00:23:53.982026+00 2025-08-04 00:23:53.982036+00 f t ADELANTO 13000.00 4 4825 \N +184097 2025-08-04 09:21:03.194119+00 2025-08-04 09:21:03.194133+00 f t SUBTOTAL 42000.00 1 4835 \N +184098 2025-08-04 09:21:03.19836+00 2025-08-04 09:21:03.198374+00 f t DESCUENTO 0.00 2 4835 \N +180469 2025-08-02 02:30:07.125673+00 2025-08-02 02:30:07.125685+00 f t SUBTOTAL 0.00 1 4743 \N +180470 2025-08-02 02:30:07.133082+00 2025-08-02 02:30:07.133096+00 f t DESCUENTO 0.00 2 4743 \N +180471 2025-08-02 02:30:07.137549+00 2025-08-02 02:30:07.137565+00 f t TOTAL 0.00 3 4743 \N +180472 2025-08-02 02:30:07.14306+00 2025-08-02 02:30:07.143074+00 f t ADELANTO 0.00 4 4743 \N +184099 2025-08-04 09:21:03.203679+00 2025-08-04 09:21:03.203694+00 f t TOTAL 42000.00 3 4835 \N +184100 2025-08-04 09:21:03.207933+00 2025-08-04 09:21:03.207948+00 f t ADELANTO 9500.00 4 4835 \N +180477 2025-08-02 02:34:52.857724+00 2025-08-02 02:34:52.857734+00 f t SUBTOTAL 0.00 1 4744 \N +180478 2025-08-02 02:34:52.859195+00 2025-08-02 02:34:52.859203+00 f t DESCUENTO 0.00 2 4744 \N +180479 2025-08-02 02:34:52.860389+00 2025-08-02 02:34:52.860395+00 f t TOTAL 0.00 3 4744 \N +180480 2025-08-02 02:34:52.861542+00 2025-08-02 02:34:52.86155+00 f t ADELANTO 0.00 4 4744 \N +180505 2025-08-02 02:39:14.30016+00 2025-08-02 02:39:14.300173+00 f t SUBTOTAL 135750.00 1 4745 \N +180506 2025-08-02 02:39:14.302508+00 2025-08-02 02:39:14.30252+00 f t DESCUENTO 0.00 2 4745 \N +180507 2025-08-02 02:39:14.30456+00 2025-08-02 02:39:14.304572+00 f t TOTAL 135750.00 3 4745 \N +180508 2025-08-02 02:39:14.306438+00 2025-08-02 02:39:14.306449+00 f t ADELANTO 28250.00 4 4745 \N +184389 2025-08-04 13:50:26.704618+00 2025-08-04 13:50:26.704628+00 f t SUBTOTAL 0.00 1 4844 \N +184390 2025-08-04 13:50:26.70636+00 2025-08-04 13:50:26.706368+00 f t DESCUENTO 0.00 2 4844 \N +184391 2025-08-04 13:50:26.707596+00 2025-08-04 13:50:26.707602+00 f t TOTAL 0.00 3 4844 \N +184392 2025-08-04 13:50:26.708726+00 2025-08-04 13:50:26.708732+00 f t ADELANTO 0.00 4 4844 \N +184433 2025-08-04 14:04:57.808959+00 2025-08-04 14:04:57.808972+00 f t SUBTOTAL 0.00 1 4845 \N +184434 2025-08-04 14:04:57.811409+00 2025-08-04 14:04:57.81142+00 f t DESCUENTO 0.00 2 4845 \N +184435 2025-08-04 14:04:57.812975+00 2025-08-04 14:04:57.812984+00 f t TOTAL 0.00 3 4845 \N +184436 2025-08-04 14:04:57.814547+00 2025-08-04 14:04:57.814562+00 f t ADELANTO 0.00 4 4845 \N +180533 2025-08-02 02:40:19.612574+00 2025-08-02 02:40:19.612585+00 f t SUBTOTAL 60000.00 1 4746 \N +180534 2025-08-02 02:40:19.614227+00 2025-08-02 02:40:19.614236+00 f t DESCUENTO 0.00 2 4746 \N +180535 2025-08-02 02:40:19.615484+00 2025-08-02 02:40:19.615491+00 f t TOTAL 60000.00 3 4746 \N +180536 2025-08-02 02:40:19.616684+00 2025-08-02 02:40:19.616691+00 f t ADELANTO 10000.00 4 4746 \N +204285 2025-08-12 12:21:11.569372+00 2025-08-12 12:21:11.569388+00 f t SUBTOTAL 0.00 1 5333 \N +246273 2025-08-28 06:01:29.644041+00 2025-08-28 06:01:29.644053+00 f t SUBTOTAL 0.00 1 6345 \N +246274 2025-08-28 06:01:29.646706+00 2025-08-28 06:01:29.646716+00 f t DESCUENTO 0.00 2 6345 \N +199716 2025-08-10 16:33:12.627186+00 2025-08-10 16:33:12.627196+00 f t ADELANTO 0.00 4 5215 \N +180565 2025-08-02 03:11:36.633534+00 2025-08-02 03:11:36.633544+00 f t SUBTOTAL 50000.00 1 4747 \N +180566 2025-08-02 03:11:36.635258+00 2025-08-02 03:11:36.63527+00 f t DESCUENTO 0.00 2 4747 \N +180567 2025-08-02 03:11:36.636728+00 2025-08-02 03:11:36.636738+00 f t TOTAL 50000.00 3 4747 \N +180568 2025-08-02 03:11:36.638083+00 2025-08-02 03:11:36.638093+00 f t ADELANTO 10000.00 4 4747 \N +182041 2025-08-02 21:32:22.425442+00 2025-08-02 21:32:22.425456+00 f t SUBTOTAL 0.00 1 4781 \N +182042 2025-08-02 21:32:22.430292+00 2025-08-02 21:32:22.430304+00 f t DESCUENTO 0.00 2 4781 \N +182043 2025-08-02 21:32:22.432649+00 2025-08-02 21:32:22.432661+00 f t TOTAL 0.00 3 4781 \N +182044 2025-08-02 21:32:22.434502+00 2025-08-02 21:32:22.434511+00 f t ADELANTO 0.00 4 4781 \N +186425 2025-08-04 23:11:40.934863+00 2025-08-04 23:11:40.934874+00 f t SUBTOTAL 0.00 1 4895 \N +186426 2025-08-04 23:11:40.937028+00 2025-08-04 23:11:40.937036+00 f t DESCUENTO 0.00 2 4895 \N +186427 2025-08-04 23:11:40.938349+00 2025-08-04 23:11:40.938359+00 f t TOTAL 0.00 3 4895 \N +186428 2025-08-04 23:11:40.939692+00 2025-08-04 23:11:40.939698+00 f t ADELANTO 0.00 4 4895 \N +182125 2025-08-02 22:58:56.85645+00 2025-08-02 22:58:56.856462+00 f t SUBTOTAL 0.00 1 4786 \N +182126 2025-08-02 22:58:56.858053+00 2025-08-02 22:58:56.858064+00 f t DESCUENTO 0.00 2 4786 \N +182127 2025-08-02 22:58:56.859531+00 2025-08-02 22:58:56.859542+00 f t TOTAL 0.00 3 4786 \N +182128 2025-08-02 22:58:56.861046+00 2025-08-02 22:58:56.861055+00 f t ADELANTO 0.00 4 4786 \N +180605 2025-08-02 04:44:01.192429+00 2025-08-02 04:44:01.192443+00 f t SUBTOTAL 0.00 1 4748 \N +180606 2025-08-02 04:44:01.194846+00 2025-08-02 04:44:01.194858+00 f t DESCUENTO 0.00 2 4748 \N +180607 2025-08-02 04:44:01.196524+00 2025-08-02 04:44:01.196534+00 f t TOTAL 0.00 3 4748 \N +180608 2025-08-02 04:44:01.19821+00 2025-08-02 04:44:01.19822+00 f t ADELANTO 0.00 4 4748 \N +186617 2025-08-05 00:50:49.879838+00 2025-08-05 00:50:49.879852+00 f t SUBTOTAL 27500.00 1 4899 \N +186618 2025-08-05 00:50:49.883721+00 2025-08-05 00:50:49.883734+00 f t DESCUENTO 0.00 2 4899 \N +186619 2025-08-05 00:50:49.889645+00 2025-08-05 00:50:49.889659+00 f t TOTAL 27500.00 3 4899 \N +186620 2025-08-05 00:50:49.893294+00 2025-08-05 00:50:49.893306+00 f t ADELANTO 27500.00 4 4899 \N +186903 2025-08-05 02:21:04.677614+00 2025-08-05 02:21:04.677627+00 f t TOTAL 0.00 3 4905 \N +186904 2025-08-05 02:21:04.680015+00 2025-08-05 02:21:04.680029+00 f t ADELANTO 0.00 4 4905 \N +180641 2025-08-02 04:54:05.15582+00 2025-08-02 04:54:05.155833+00 f t SUBTOTAL 0.00 1 4749 \N +180642 2025-08-02 04:54:05.158554+00 2025-08-02 04:54:05.158566+00 f t DESCUENTO 0.00 2 4749 \N +180643 2025-08-02 04:54:05.160426+00 2025-08-02 04:54:05.160436+00 f t TOTAL 0.00 3 4749 \N +180644 2025-08-02 04:54:05.162468+00 2025-08-02 04:54:05.162477+00 f t ADELANTO 0.00 4 4749 \N +187057 2025-08-05 11:47:56.75109+00 2025-08-05 11:47:56.751106+00 f t SUBTOTAL 0.00 1 4915 \N +187058 2025-08-05 11:47:56.753012+00 2025-08-05 11:47:56.753023+00 f t DESCUENTO 0.00 2 4915 \N +187059 2025-08-05 11:47:56.754631+00 2025-08-05 11:47:56.75464+00 f t TOTAL 0.00 3 4915 \N +187060 2025-08-05 11:47:56.75618+00 2025-08-05 11:47:56.75619+00 f t ADELANTO 0.00 4 4915 \N +183037 2025-08-03 19:58:49.248311+00 2025-08-03 19:58:49.248323+00 f t SUBTOTAL 0.00 1 4808 \N +183038 2025-08-03 19:58:49.250115+00 2025-08-03 19:58:49.250126+00 f t DESCUENTO 0.00 2 4808 \N +183039 2025-08-03 19:58:49.252276+00 2025-08-03 19:58:49.252287+00 f t TOTAL 0.00 3 4808 \N +183040 2025-08-03 19:58:49.254306+00 2025-08-03 19:58:49.254317+00 f t ADELANTO 0.00 4 4808 \N +187281 2025-08-05 13:33:26.200973+00 2025-08-05 13:33:26.200983+00 f t SUBTOTAL 50000.00 1 4921 \N +187282 2025-08-05 13:33:26.202878+00 2025-08-05 13:33:26.202886+00 f t DESCUENTO 0.00 2 4921 \N +187283 2025-08-05 13:33:26.20449+00 2025-08-05 13:33:26.2045+00 f t TOTAL 50000.00 3 4921 \N +187284 2025-08-05 13:33:26.205971+00 2025-08-05 13:33:26.205978+00 f t ADELANTO 10000.00 4 4921 \N +183509 2025-08-03 23:27:54.255055+00 2025-08-03 23:27:54.255069+00 f t SUBTOTAL 0.00 1 4819 \N +183510 2025-08-03 23:27:54.256745+00 2025-08-03 23:27:54.256755+00 f t DESCUENTO 0.00 2 4819 \N +183511 2025-08-03 23:27:54.258018+00 2025-08-03 23:27:54.258025+00 f t TOTAL 0.00 3 4819 \N +183512 2025-08-03 23:27:54.259217+00 2025-08-03 23:27:54.259223+00 f t ADELANTO 0.00 4 4819 \N +183849 2025-08-04 01:51:57.355695+00 2025-08-04 01:51:57.355708+00 f t SUBTOTAL 82200.00 1 4827 \N +183850 2025-08-04 01:51:57.357712+00 2025-08-04 01:51:57.357724+00 f t DESCUENTO 0.00 2 4827 \N +183851 2025-08-04 01:51:57.359463+00 2025-08-04 01:51:57.359474+00 f t TOTAL 82200.00 3 4827 \N +183852 2025-08-04 01:51:57.361008+00 2025-08-04 01:51:57.361017+00 f t ADELANTO 44200.00 4 4827 \N +187689 2025-08-05 18:43:20.402131+00 2025-08-05 18:43:20.402143+00 f t SUBTOTAL 136000.00 1 4932 \N +187690 2025-08-05 18:43:20.404327+00 2025-08-05 18:43:20.404337+00 f t DESCUENTO 0.00 2 4932 \N +180753 2025-08-02 05:48:27.314584+00 2025-08-02 05:48:27.314593+00 f t SUBTOTAL 50000.00 1 4750 \N +180754 2025-08-02 05:48:27.318492+00 2025-08-02 05:48:27.318501+00 f t DESCUENTO 0.00 2 4750 \N +180755 2025-08-02 05:48:27.320313+00 2025-08-02 05:48:27.320321+00 f t TOTAL 50000.00 3 4750 \N +180756 2025-08-02 05:48:27.321908+00 2025-08-02 05:48:27.321916+00 f t ADELANTO 10000.00 4 4750 \N +187691 2025-08-05 18:43:20.406363+00 2025-08-05 18:43:20.406373+00 f t TOTAL 136000.00 3 4932 \N +187692 2025-08-05 18:43:20.408237+00 2025-08-05 18:43:20.408245+00 f t ADELANTO 26000.00 4 4932 \N +180793 2025-08-02 06:53:33.254805+00 2025-08-02 06:53:33.254817+00 f t SUBTOTAL 42000.00 1 4751 \N +180794 2025-08-02 06:53:33.25701+00 2025-08-02 06:53:33.257021+00 f t DESCUENTO 0.00 2 4751 \N +180795 2025-08-02 06:53:33.258884+00 2025-08-02 06:53:33.258895+00 f t TOTAL 42000.00 3 4751 \N +180796 2025-08-02 06:53:33.260382+00 2025-08-02 06:53:33.260389+00 f t ADELANTO 9500.00 4 4751 \N +184441 2025-08-04 14:17:21.524583+00 2025-08-04 14:17:21.524596+00 f t SUBTOTAL 0.00 1 4846 \N +184442 2025-08-04 14:17:21.526745+00 2025-08-04 14:17:21.526757+00 f t DESCUENTO 0.00 2 4846 \N +184443 2025-08-04 14:17:21.528912+00 2025-08-04 14:17:21.528923+00 f t TOTAL 0.00 3 4846 \N +184444 2025-08-04 14:17:21.530653+00 2025-08-04 14:17:21.530662+00 f t ADELANTO 0.00 4 4846 \N +180829 2025-08-02 10:46:33.10837+00 2025-08-02 10:46:33.108383+00 f t SUBTOTAL 50000.00 1 4752 \N +180830 2025-08-02 10:46:33.11045+00 2025-08-02 10:46:33.110459+00 f t DESCUENTO 0.00 2 4752 \N +180831 2025-08-02 10:46:33.112229+00 2025-08-02 10:46:33.112272+00 f t TOTAL 50000.00 3 4752 \N +180832 2025-08-02 10:46:33.11408+00 2025-08-02 10:46:33.114093+00 f t ADELANTO 10000.00 4 4752 \N +188177 2025-08-05 19:19:16.904741+00 2025-08-05 19:19:16.904753+00 f t SUBTOTAL 27500.00 1 4934 \N +188178 2025-08-05 19:19:16.907025+00 2025-08-05 19:19:16.907035+00 f t DESCUENTO 0.00 2 4934 \N +180837 2025-08-02 12:03:45.165788+00 2025-08-02 12:03:45.165801+00 f t SUBTOTAL 0.00 1 4753 \N +180838 2025-08-02 12:03:45.167812+00 2025-08-02 12:03:45.167821+00 f t DESCUENTO 0.00 2 4753 \N +180839 2025-08-02 12:03:45.169523+00 2025-08-02 12:03:45.169531+00 f t TOTAL 0.00 3 4753 \N +180840 2025-08-02 12:03:45.171111+00 2025-08-02 12:03:45.171118+00 f t ADELANTO 0.00 4 4753 \N +186153 2025-08-04 21:32:50.936131+00 2025-08-04 21:32:50.936141+00 f t SUBTOTAL 42000.00 1 4887 \N +186154 2025-08-04 21:32:50.938384+00 2025-08-04 21:32:50.938393+00 f t DESCUENTO 0.00 2 4887 \N +186155 2025-08-04 21:32:50.940198+00 2025-08-04 21:32:50.940206+00 f t TOTAL 42000.00 3 4887 \N +186156 2025-08-04 21:32:50.94186+00 2025-08-04 21:32:50.94187+00 f t ADELANTO 9500.00 4 4887 \N +181953 2025-08-02 19:33:20.069938+00 2025-08-02 19:33:20.069948+00 f t SUBTOTAL 0.00 1 4775 \N +181954 2025-08-02 19:33:20.071801+00 2025-08-02 19:33:20.071809+00 f t DESCUENTO 0.00 2 4775 \N +181955 2025-08-02 19:33:20.073048+00 2025-08-02 19:33:20.073054+00 f t TOTAL 0.00 3 4775 \N +181956 2025-08-02 19:33:20.074121+00 2025-08-02 19:33:20.074127+00 f t ADELANTO 0.00 4 4775 \N +180865 2025-08-02 12:30:10.174306+00 2025-08-02 12:30:10.174322+00 f t SUBTOTAL 68000.00 1 4754 \N +180866 2025-08-02 12:30:10.176989+00 2025-08-02 12:30:10.177004+00 f t DESCUENTO 0.00 2 4754 \N +180867 2025-08-02 12:30:10.179547+00 2025-08-02 12:30:10.179562+00 f t TOTAL 68000.00 3 4754 \N +180868 2025-08-02 12:30:10.182003+00 2025-08-02 12:30:10.182017+00 f t ADELANTO 13000.00 4 4754 \N +182133 2025-08-03 03:06:42.762411+00 2025-08-03 03:06:42.76242+00 f t SUBTOTAL 0.00 1 4787 \N +182134 2025-08-03 03:06:42.764072+00 2025-08-03 03:06:42.76408+00 f t DESCUENTO 0.00 2 4787 \N +182135 2025-08-03 03:06:42.765454+00 2025-08-03 03:06:42.765461+00 f t TOTAL 0.00 3 4787 \N +182136 2025-08-03 03:06:42.76662+00 2025-08-03 03:06:42.766626+00 f t ADELANTO 0.00 4 4787 \N +186433 2025-08-04 23:27:14.745777+00 2025-08-04 23:27:14.745789+00 f t SUBTOTAL 0.00 1 4896 \N +186434 2025-08-04 23:27:14.747436+00 2025-08-04 23:27:14.747443+00 f t DESCUENTO 0.00 2 4896 \N +186435 2025-08-04 23:27:14.748946+00 2025-08-04 23:27:14.748953+00 f t TOTAL 0.00 3 4896 \N +186436 2025-08-04 23:27:14.750222+00 2025-08-04 23:27:14.750229+00 f t ADELANTO 0.00 4 4896 \N +182261 2025-08-03 08:14:53.551218+00 2025-08-03 08:14:53.551228+00 f t SUBTOTAL 42000.00 1 4791 \N +182262 2025-08-03 08:14:53.553807+00 2025-08-03 08:14:53.55382+00 f t DESCUENTO 0.00 2 4791 \N +182263 2025-08-03 08:14:53.555908+00 2025-08-03 08:14:53.555921+00 f t TOTAL 42000.00 3 4791 \N +182264 2025-08-03 08:14:53.557833+00 2025-08-03 08:14:53.557845+00 f t ADELANTO 9500.00 4 4791 \N +182321 2025-08-03 08:26:54.394488+00 2025-08-03 08:26:54.394498+00 f t SUBTOTAL 0.00 1 4792 \N +182322 2025-08-03 08:26:54.397252+00 2025-08-03 08:26:54.397266+00 f t DESCUENTO 0.00 2 4792 \N +182323 2025-08-03 08:26:54.399002+00 2025-08-03 08:26:54.399012+00 f t TOTAL 0.00 3 4792 \N +182324 2025-08-03 08:26:54.400518+00 2025-08-03 08:26:54.400527+00 f t ADELANTO 0.00 4 4792 \N +182385 2025-08-03 08:38:00.976428+00 2025-08-03 08:38:00.976437+00 f t SUBTOTAL 50000.00 1 4794 \N +182386 2025-08-03 08:38:00.978533+00 2025-08-03 08:38:00.978543+00 f t DESCUENTO 0.00 2 4794 \N +182387 2025-08-03 08:38:00.980418+00 2025-08-03 08:38:00.980429+00 f t TOTAL 50000.00 3 4794 \N +182388 2025-08-03 08:38:00.98208+00 2025-08-03 08:38:00.982087+00 f t ADELANTO 10000.00 4 4794 \N +182737 2025-08-03 14:13:37.33335+00 2025-08-03 14:13:37.333359+00 f t SUBTOTAL 0.00 1 4798 \N +182738 2025-08-03 14:13:37.335114+00 2025-08-03 14:13:37.335121+00 f t DESCUENTO 0.00 2 4798 \N +182739 2025-08-03 14:13:37.33633+00 2025-08-03 14:13:37.336336+00 f t TOTAL 0.00 3 4798 \N +182740 2025-08-03 14:13:37.337575+00 2025-08-03 14:13:37.337581+00 f t ADELANTO 0.00 4 4798 \N +180925 2025-08-02 12:57:12.642152+00 2025-08-02 12:57:12.642164+00 f t SUBTOTAL 49000.00 1 4755 \N +180926 2025-08-02 12:57:12.644282+00 2025-08-02 12:57:12.644293+00 f t DESCUENTO 0.00 2 4755 \N +180927 2025-08-02 12:57:12.646203+00 2025-08-02 12:57:12.646211+00 f t TOTAL 49000.00 3 4755 \N +180928 2025-08-02 12:57:12.647956+00 2025-08-02 12:57:12.647967+00 f t ADELANTO 49000.00 4 4755 \N +182981 2025-08-03 19:33:52.212093+00 2025-08-03 19:33:52.212103+00 f t SUBTOTAL 0.00 1 4806 \N +182982 2025-08-03 19:33:52.214383+00 2025-08-03 19:33:52.214391+00 f t DESCUENTO 0.00 2 4806 \N +182983 2025-08-03 19:33:52.215692+00 2025-08-03 19:33:52.215699+00 f t TOTAL 0.00 3 4806 \N +182984 2025-08-03 19:33:52.216959+00 2025-08-03 19:33:52.216965+00 f t ADELANTO 0.00 4 4806 \N +186909 2025-08-05 02:22:25.79911+00 2025-08-05 02:22:25.799124+00 f t SUBTOTAL 0.00 1 4906 \N +186910 2025-08-05 02:22:25.801076+00 2025-08-05 02:22:25.801088+00 f t DESCUENTO 0.00 2 4906 \N +186911 2025-08-05 02:22:25.80256+00 2025-08-05 02:22:25.802569+00 f t TOTAL 0.00 3 4906 \N +186912 2025-08-05 02:22:25.804089+00 2025-08-05 02:22:25.8041+00 f t ADELANTO 0.00 4 4906 \N +183209 2025-08-03 21:17:34.40053+00 2025-08-03 21:17:34.400538+00 f t SUBTOTAL 42000.00 1 4811 \N +183210 2025-08-03 21:17:34.402234+00 2025-08-03 21:17:34.402243+00 f t DESCUENTO 0.00 2 4811 \N +183211 2025-08-03 21:17:34.40377+00 2025-08-03 21:17:34.403778+00 f t TOTAL 42000.00 3 4811 \N +183212 2025-08-03 21:17:34.405221+00 2025-08-03 21:17:34.405229+00 f t ADELANTO 9500.00 4 4811 \N +186969 2025-08-05 10:57:04.693062+00 2025-08-05 10:57:04.693075+00 f t SUBTOTAL 95000.00 1 4911 \N +186970 2025-08-05 10:57:04.695999+00 2025-08-05 10:57:04.696008+00 f t DESCUENTO 0.00 2 4911 \N +186971 2025-08-05 10:57:04.697568+00 2025-08-05 10:57:04.697576+00 f t TOTAL 95000.00 3 4911 \N +186972 2025-08-05 10:57:04.699242+00 2025-08-05 10:57:04.699249+00 f t ADELANTO 10000.00 4 4911 \N +183413 2025-08-03 22:44:09.353094+00 2025-08-03 22:44:09.353105+00 f t SUBTOTAL 42000.00 1 4816 \N +183414 2025-08-03 22:44:09.355784+00 2025-08-03 22:44:09.355793+00 f t DESCUENTO 0.00 2 4816 \N +183415 2025-08-03 22:44:09.357585+00 2025-08-03 22:44:09.357597+00 f t TOTAL 42000.00 3 4816 \N +183416 2025-08-03 22:44:09.359358+00 2025-08-03 22:44:09.359367+00 f t ADELANTO 9500.00 4 4816 \N +180997 2025-08-02 13:25:27.022339+00 2025-08-02 13:25:27.022351+00 f t SUBTOTAL 68000.00 1 4756 \N +180998 2025-08-02 13:25:27.024335+00 2025-08-02 13:25:27.024342+00 f t DESCUENTO 0.00 2 4756 \N +180999 2025-08-02 13:25:27.025869+00 2025-08-02 13:25:27.025876+00 f t TOTAL 68000.00 3 4756 \N +181000 2025-08-02 13:25:27.027236+00 2025-08-02 13:25:27.027242+00 f t ADELANTO 13000.00 4 4756 \N +181013 2025-08-02 13:33:57.006776+00 2025-08-02 13:33:57.00679+00 f t SUBTOTAL 0.00 1 4757 \N +181014 2025-08-02 13:33:57.010043+00 2025-08-02 13:33:57.010057+00 f t DESCUENTO 0.00 2 4757 \N +181015 2025-08-02 13:33:57.012197+00 2025-08-02 13:33:57.012208+00 f t TOTAL 0.00 3 4757 \N +181016 2025-08-02 13:33:57.014641+00 2025-08-02 13:33:57.01465+00 f t ADELANTO 0.00 4 4757 \N +183857 2025-08-04 01:58:32.87207+00 2025-08-04 01:58:32.872079+00 f t SUBTOTAL 0.00 1 4828 \N +183858 2025-08-04 01:58:32.873559+00 2025-08-04 01:58:32.873568+00 f t DESCUENTO 0.00 2 4828 \N +183859 2025-08-04 01:58:32.874841+00 2025-08-04 01:58:32.874848+00 f t TOTAL 0.00 3 4828 \N +183860 2025-08-04 01:58:32.876018+00 2025-08-04 01:58:32.876024+00 f t ADELANTO 0.00 4 4828 \N +181101 2025-08-02 14:05:52.724945+00 2025-08-02 14:05:52.724954+00 f t SUBTOTAL 191400.00 1 4758 \N +181102 2025-08-02 14:05:52.726432+00 2025-08-02 14:05:52.726439+00 f t DESCUENTO 0.00 2 4758 \N +181103 2025-08-02 14:05:52.727612+00 2025-08-02 14:05:52.72762+00 f t TOTAL 191400.00 3 4758 \N +181104 2025-08-02 14:05:52.729096+00 2025-08-02 14:05:52.729102+00 f t ADELANTO 115400.00 4 4758 \N +181121 2025-08-02 15:02:38.327822+00 2025-08-02 15:02:38.327833+00 f t SUBTOTAL 0.00 1 4759 \N +181122 2025-08-02 15:02:38.330231+00 2025-08-02 15:02:38.330242+00 f t DESCUENTO 0.00 2 4759 \N +181123 2025-08-02 15:02:38.332117+00 2025-08-02 15:02:38.332125+00 f t TOTAL 0.00 3 4759 \N +181124 2025-08-02 15:02:38.333812+00 2025-08-02 15:02:38.333821+00 f t ADELANTO 0.00 4 4759 \N +204286 2025-08-12 12:21:11.572286+00 2025-08-12 12:21:11.5723+00 f t DESCUENTO 0.00 2 5333 \N +204287 2025-08-12 12:21:11.575333+00 2025-08-12 12:21:11.575347+00 f t TOTAL 0.00 3 5333 \N +181137 2025-08-02 15:05:04.018222+00 2025-08-02 15:05:04.018236+00 f t SUBTOTAL 0.00 1 4760 \N +181138 2025-08-02 15:05:04.027625+00 2025-08-02 15:05:04.027639+00 f t DESCUENTO 0.00 2 4760 \N +181139 2025-08-02 15:05:04.030357+00 2025-08-02 15:05:04.030393+00 f t TOTAL 0.00 3 4760 \N +181140 2025-08-02 15:05:04.032934+00 2025-08-02 15:05:04.032947+00 f t ADELANTO 0.00 4 4760 \N +181805 2025-08-02 19:28:42.646054+00 2025-08-02 19:28:42.646066+00 f t SUBTOTAL 0.00 1 4773 \N +181806 2025-08-02 19:28:42.64817+00 2025-08-02 19:28:42.648181+00 f t DESCUENTO 0.00 2 4773 \N +181807 2025-08-02 19:28:42.649849+00 2025-08-02 19:28:42.649859+00 f t TOTAL 0.00 3 4773 \N +181808 2025-08-02 19:28:42.651767+00 2025-08-02 19:28:42.651775+00 f t ADELANTO 0.00 4 4773 \N +190521 2025-08-06 16:10:00.375445+00 2025-08-06 16:10:00.375458+00 f t SUBTOTAL 42000.00 1 4982 \N +190522 2025-08-06 16:10:00.377672+00 2025-08-06 16:10:00.377684+00 f t DESCUENTO 0.00 2 4982 \N +190523 2025-08-06 16:10:00.379164+00 2025-08-06 16:10:00.379173+00 f t TOTAL 42000.00 3 4982 \N +190524 2025-08-06 16:10:00.380747+00 2025-08-06 16:10:00.380754+00 f t ADELANTO 9500.00 4 4982 \N +186161 2025-08-04 22:33:41.030263+00 2025-08-04 22:33:41.030278+00 f t SUBTOTAL 0.00 1 4888 \N +186162 2025-08-04 22:33:41.036577+00 2025-08-04 22:33:41.03659+00 f t DESCUENTO 0.00 2 4888 \N +186163 2025-08-04 22:33:41.038557+00 2025-08-04 22:33:41.038568+00 f t TOTAL 0.00 3 4888 \N +186164 2025-08-04 22:33:41.040344+00 2025-08-04 22:33:41.040354+00 f t ADELANTO 0.00 4 4888 \N +191109 2025-08-06 18:35:11.943983+00 2025-08-06 18:35:11.943994+00 f t SUBTOTAL 0.00 1 4996 \N +191110 2025-08-06 18:35:11.946689+00 2025-08-06 18:35:11.946698+00 f t DESCUENTO 0.00 2 4996 \N +191111 2025-08-06 18:35:11.948814+00 2025-08-06 18:35:11.948824+00 f t TOTAL 0.00 3 4996 \N +191112 2025-08-06 18:35:11.950888+00 2025-08-06 18:35:11.950899+00 f t ADELANTO 0.00 4 4996 \N +191393 2025-08-06 19:36:52.384382+00 2025-08-06 19:36:52.384392+00 f t SUBTOTAL 0.00 1 5002 \N +182505 2025-08-03 11:43:20.289432+00 2025-08-03 11:43:20.289442+00 f t SUBTOTAL 0.00 1 4795 \N +182506 2025-08-03 11:43:20.291575+00 2025-08-03 11:43:20.291584+00 f t DESCUENTO 0.00 2 4795 \N +182507 2025-08-03 11:43:20.292937+00 2025-08-03 11:43:20.292944+00 f t TOTAL 0.00 3 4795 \N +182508 2025-08-03 11:43:20.294167+00 2025-08-03 11:43:20.294174+00 f t ADELANTO 0.00 4 4795 \N +182565 2025-08-03 12:27:14.560487+00 2025-08-03 12:27:14.560496+00 f t SUBTOTAL 42000.00 1 4796 \N +182566 2025-08-03 12:27:14.56205+00 2025-08-03 12:27:14.562057+00 f t DESCUENTO 0.00 2 4796 \N +182567 2025-08-03 12:27:14.563258+00 2025-08-03 12:27:14.563266+00 f t TOTAL 42000.00 3 4796 \N +182568 2025-08-03 12:27:14.566106+00 2025-08-03 12:27:14.566114+00 f t ADELANTO 9500.00 4 4796 \N +191394 2025-08-06 19:36:52.387174+00 2025-08-06 19:36:52.387182+00 f t DESCUENTO 0.00 2 5002 \N +191395 2025-08-06 19:36:52.388901+00 2025-08-06 19:36:52.388913+00 f t TOTAL 0.00 3 5002 \N +191396 2025-08-06 19:36:52.392855+00 2025-08-06 19:36:52.392869+00 f t ADELANTO 0.00 4 5002 \N +191513 2025-08-06 19:51:12.743063+00 2025-08-06 19:51:12.743087+00 f t SUBTOTAL 0.00 1 5000 \N +191514 2025-08-06 19:51:12.746092+00 2025-08-06 19:51:12.746106+00 f t DESCUENTO 0.00 2 5000 \N +191515 2025-08-06 19:51:12.748307+00 2025-08-06 19:51:12.748317+00 f t TOTAL 0.00 3 5000 \N +191516 2025-08-06 19:51:12.750614+00 2025-08-06 19:51:12.750627+00 f t ADELANTO 0.00 4 5000 \N +191585 2025-08-06 20:44:57.260685+00 2025-08-06 20:44:57.2607+00 f t SUBTOTAL 0.00 1 5011 \N +186917 2025-08-05 04:19:15.860174+00 2025-08-05 04:19:15.860183+00 f t SUBTOTAL 0.00 1 4907 \N +186918 2025-08-05 04:19:15.862236+00 2025-08-05 04:19:15.862244+00 f t DESCUENTO 0.00 2 4907 \N +186919 2025-08-05 04:19:15.863804+00 2025-08-05 04:19:15.863813+00 f t TOTAL 0.00 3 4907 \N +186920 2025-08-05 04:19:15.865386+00 2025-08-05 04:19:15.865393+00 f t ADELANTO 0.00 4 4907 \N +182813 2025-08-03 16:13:38.770799+00 2025-08-03 16:13:38.770811+00 f t SUBTOTAL 0.00 1 4802 \N +182814 2025-08-03 16:13:38.773191+00 2025-08-03 16:13:38.773199+00 f t DESCUENTO 0.00 2 4802 \N +182815 2025-08-03 16:13:38.77446+00 2025-08-03 16:13:38.774468+00 f t TOTAL 0.00 3 4802 \N +182816 2025-08-03 16:13:38.775778+00 2025-08-03 16:13:38.775784+00 f t ADELANTO 0.00 4 4802 \N +191586 2025-08-06 20:44:57.264248+00 2025-08-06 20:44:57.264262+00 f t DESCUENTO 0.00 2 5011 \N +191587 2025-08-06 20:44:57.266355+00 2025-08-06 20:44:57.266367+00 f t TOTAL 0.00 3 5011 \N +191588 2025-08-06 20:44:57.268556+00 2025-08-06 20:44:57.268566+00 f t ADELANTO 0.00 4 5011 \N +195893 2025-08-08 16:09:52.411513+00 2025-08-08 16:09:52.411526+00 f t SUBTOTAL 50000.00 1 5125 \N +195894 2025-08-08 16:09:52.413675+00 2025-08-08 16:09:52.413687+00 f t DESCUENTO 0.00 2 5125 \N +195895 2025-08-08 16:09:52.415677+00 2025-08-08 16:09:52.415688+00 f t TOTAL 50000.00 3 5125 \N +195896 2025-08-08 16:09:52.417276+00 2025-08-08 16:09:52.417286+00 f t ADELANTO 10000.00 4 5125 \N +187209 2025-08-05 12:13:22.182234+00 2025-08-05 12:13:22.182245+00 f t SUBTOTAL 93200.00 1 4918 \N +187210 2025-08-05 12:13:22.183838+00 2025-08-05 12:13:22.183845+00 f t DESCUENTO 0.00 2 4918 \N +187211 2025-08-05 12:13:22.185135+00 2025-08-05 12:13:22.18514+00 f t TOTAL 93200.00 3 4918 \N +187212 2025-08-05 12:13:22.186155+00 2025-08-05 12:13:22.186161+00 f t ADELANTO 55200.00 4 4918 \N +187245 2025-08-05 13:04:56.024384+00 2025-08-05 13:04:56.024394+00 f t SUBTOTAL 42000.00 1 4919 \N +187246 2025-08-05 13:04:56.026513+00 2025-08-05 13:04:56.026521+00 f t DESCUENTO 0.00 2 4919 \N +187247 2025-08-05 13:04:56.028309+00 2025-08-05 13:04:56.02832+00 f t TOTAL 42000.00 3 4919 \N +187248 2025-08-05 13:04:56.029985+00 2025-08-05 13:04:56.029994+00 f t ADELANTO 9500.00 4 4919 \N +181285 2025-08-02 15:14:15.242973+00 2025-08-02 15:14:15.242986+00 f t SUBTOTAL 0.00 1 4762 \N +181286 2025-08-02 15:14:15.24495+00 2025-08-02 15:14:15.244961+00 f t DESCUENTO 0.00 2 4762 \N +181287 2025-08-02 15:14:15.246818+00 2025-08-02 15:14:15.246827+00 f t TOTAL 0.00 3 4762 \N +181288 2025-08-02 15:14:15.248433+00 2025-08-02 15:14:15.248442+00 f t ADELANTO 0.00 4 4762 \N +183865 2025-08-04 03:23:41.088441+00 2025-08-04 03:23:41.088451+00 f t SUBTOTAL 0.00 1 4829 \N +183866 2025-08-04 03:23:41.090029+00 2025-08-04 03:23:41.090037+00 f t DESCUENTO 0.00 2 4829 \N +183867 2025-08-04 03:23:41.091608+00 2025-08-04 03:23:41.091618+00 f t TOTAL 0.00 3 4829 \N +183868 2025-08-04 03:23:41.093195+00 2025-08-04 03:23:41.093204+00 f t ADELANTO 0.00 4 4829 \N +184673 2025-08-04 15:08:13.087363+00 2025-08-04 15:08:13.087378+00 f t SUBTOTAL 42000.00 1 4851 \N +184674 2025-08-04 15:08:13.089256+00 2025-08-04 15:08:13.089264+00 f t DESCUENTO 0.00 2 4851 \N +184675 2025-08-04 15:08:13.090945+00 2025-08-04 15:08:13.090953+00 f t TOTAL 42000.00 3 4851 \N +184676 2025-08-04 15:08:13.092672+00 2025-08-04 15:08:13.092683+00 f t ADELANTO 9500.00 4 4851 \N +188179 2025-08-05 19:19:16.908941+00 2025-08-05 19:19:16.908952+00 f t TOTAL 27500.00 3 4934 \N +181413 2025-08-02 15:18:29.381346+00 2025-08-02 15:18:29.381356+00 f t SUBTOTAL 42000.00 1 4761 \N +181414 2025-08-02 15:18:29.383169+00 2025-08-02 15:18:29.383177+00 f t DESCUENTO 0.00 2 4761 \N +181415 2025-08-02 15:18:29.384605+00 2025-08-02 15:18:29.384613+00 f t TOTAL 42000.00 3 4761 \N +181416 2025-08-02 15:18:29.386179+00 2025-08-02 15:18:29.386191+00 f t ADELANTO 9500.00 4 4761 \N +188180 2025-08-05 19:19:16.910743+00 2025-08-05 19:19:16.910754+00 f t ADELANTO 27500.00 4 4934 \N +204288 2025-08-12 12:21:11.577989+00 2025-08-12 12:21:11.578003+00 f t ADELANTO 0.00 4 5333 \N +209165 2025-08-14 02:44:37.126473+00 2025-08-14 02:44:37.126481+00 f t SUBTOTAL 64500.00 1 5454 \N +209166 2025-08-14 02:44:37.129857+00 2025-08-14 02:44:37.129869+00 f t DESCUENTO 0.00 2 5454 \N +186085 2025-08-04 21:00:45.80729+00 2025-08-04 21:00:45.8073+00 f t SUBTOTAL 0.00 1 4885 \N +186086 2025-08-04 21:00:45.810096+00 2025-08-04 21:00:45.810109+00 f t DESCUENTO 0.00 2 4885 \N +186087 2025-08-04 21:00:45.812294+00 2025-08-04 21:00:45.812302+00 f t TOTAL 0.00 3 4885 \N +186088 2025-08-04 21:00:45.816464+00 2025-08-04 21:00:45.816475+00 f t ADELANTO 0.00 4 4885 \N +186169 2025-08-04 22:35:17.439971+00 2025-08-04 22:35:17.439984+00 f t SUBTOTAL 0.00 1 4889 \N +186170 2025-08-04 22:35:17.44304+00 2025-08-04 22:35:17.443053+00 f t DESCUENTO 0.00 2 4889 \N +186171 2025-08-04 22:35:17.44506+00 2025-08-04 22:35:17.445071+00 f t TOTAL 0.00 3 4889 \N +186172 2025-08-04 22:35:17.446564+00 2025-08-04 22:35:17.446574+00 f t ADELANTO 0.00 4 4889 \N +195153 2025-08-08 12:14:59.337968+00 2025-08-08 12:14:59.337978+00 f t SUBTOTAL 68000.00 1 5100 \N +195154 2025-08-08 12:14:59.340844+00 2025-08-08 12:14:59.340856+00 f t DESCUENTO 0.00 2 5100 \N +195155 2025-08-08 12:14:59.342513+00 2025-08-08 12:14:59.342522+00 f t TOTAL 68000.00 3 5100 \N +195156 2025-08-08 12:14:59.344057+00 2025-08-08 12:14:59.344066+00 f t ADELANTO 13000.00 4 5100 \N +195237 2025-08-08 13:04:59.925088+00 2025-08-08 13:04:59.925102+00 f t SUBTOTAL 0.00 1 5104 \N +195238 2025-08-08 13:04:59.927743+00 2025-08-08 13:04:59.927754+00 f t DESCUENTO 0.00 2 5104 \N +195239 2025-08-08 13:04:59.929658+00 2025-08-08 13:04:59.92967+00 f t TOTAL 0.00 3 5104 \N +195240 2025-08-08 13:04:59.931441+00 2025-08-08 13:04:59.931458+00 f t ADELANTO 0.00 4 5104 \N +181457 2025-08-02 16:08:35.189954+00 2025-08-02 16:08:35.189967+00 f t SUBTOTAL 64500.00 1 4763 \N +181458 2025-08-02 16:08:35.193388+00 2025-08-02 16:08:35.1934+00 f t DESCUENTO 0.00 2 4763 \N +181459 2025-08-02 16:08:35.195474+00 2025-08-02 16:08:35.195485+00 f t TOTAL 64500.00 3 4763 \N +181460 2025-08-02 16:08:35.197284+00 2025-08-02 16:08:35.197294+00 f t ADELANTO 17000.00 4 4763 \N +191045 2025-08-06 18:26:45.351246+00 2025-08-06 18:26:45.351259+00 f t SUBTOTAL 50000.00 1 4993 \N +191046 2025-08-06 18:26:45.353894+00 2025-08-06 18:26:45.353906+00 f t DESCUENTO 0.00 2 4993 \N +191047 2025-08-06 18:26:45.355799+00 2025-08-06 18:26:45.35581+00 f t TOTAL 50000.00 3 4993 \N +191048 2025-08-06 18:26:45.357765+00 2025-08-06 18:26:45.357775+00 f t ADELANTO 10000.00 4 4993 \N +186865 2025-08-05 01:48:39.406146+00 2025-08-05 01:48:39.406159+00 f t SUBTOTAL 27500.00 1 4903 \N +186866 2025-08-05 01:48:39.408338+00 2025-08-05 01:48:39.408349+00 f t DESCUENTO 0.00 2 4903 \N +181493 2025-08-02 17:15:32.392131+00 2025-08-02 17:15:32.392141+00 f t SUBTOTAL 68000.00 1 4764 \N +181494 2025-08-02 17:15:32.393954+00 2025-08-02 17:15:32.393963+00 f t DESCUENTO 0.00 2 4764 \N +181495 2025-08-02 17:15:32.395539+00 2025-08-02 17:15:32.395549+00 f t TOTAL 68000.00 3 4764 \N +181496 2025-08-02 17:15:32.397231+00 2025-08-02 17:15:32.397239+00 f t ADELANTO 13000.00 4 4764 \N +186867 2025-08-05 01:48:39.410055+00 2025-08-05 01:48:39.410065+00 f t TOTAL 27500.00 3 4903 \N +186868 2025-08-05 01:48:39.411749+00 2025-08-05 01:48:39.41176+00 f t ADELANTO 27500.00 4 4903 \N +186925 2025-08-05 07:21:56.743621+00 2025-08-05 07:21:56.743631+00 f t SUBTOTAL 0.00 1 4908 \N +186926 2025-08-05 07:21:56.746302+00 2025-08-05 07:21:56.746312+00 f t DESCUENTO 0.00 2 4908 \N +186927 2025-08-05 07:21:56.74837+00 2025-08-05 07:21:56.748379+00 f t TOTAL 0.00 3 4908 \N +186928 2025-08-05 07:21:56.750273+00 2025-08-05 07:21:56.750284+00 f t ADELANTO 0.00 4 4908 \N +182821 2025-08-03 18:16:35.966114+00 2025-08-03 18:16:35.966125+00 f t SUBTOTAL 0.00 1 4803 \N +182822 2025-08-03 18:16:35.967589+00 2025-08-03 18:16:35.967597+00 f t DESCUENTO 0.00 2 4803 \N +182823 2025-08-03 18:16:35.969093+00 2025-08-03 18:16:35.969101+00 f t TOTAL 0.00 3 4803 \N +182824 2025-08-03 18:16:35.970544+00 2025-08-03 18:16:35.970552+00 f t ADELANTO 0.00 4 4803 \N +187253 2025-08-05 13:16:54.765882+00 2025-08-05 13:16:54.765895+00 f t SUBTOTAL 0.00 1 4920 \N +187254 2025-08-05 13:16:54.767633+00 2025-08-05 13:16:54.767643+00 f t DESCUENTO 0.00 2 4920 \N +187255 2025-08-05 13:16:54.769272+00 2025-08-05 13:16:54.769281+00 f t TOTAL 0.00 3 4920 \N +187256 2025-08-05 13:16:54.770654+00 2025-08-05 13:16:54.77066+00 f t ADELANTO 0.00 4 4920 \N +191813 2025-08-06 22:42:36.560929+00 2025-08-06 22:42:36.560937+00 f t SUBTOTAL 86000.00 1 5016 \N +191814 2025-08-06 22:42:36.562599+00 2025-08-06 22:42:36.562606+00 f t DESCUENTO 0.00 2 5016 \N +191815 2025-08-06 22:42:36.56382+00 2025-08-06 22:42:36.563825+00 f t TOTAL 86000.00 3 5016 \N +187397 2025-08-05 14:25:27.48803+00 2025-08-05 14:25:27.488041+00 f t SUBTOTAL 0.00 1 4924 \N +187398 2025-08-05 14:25:27.490385+00 2025-08-05 14:25:27.490394+00 f t DESCUENTO 0.00 2 4924 \N +187399 2025-08-05 14:25:27.49187+00 2025-08-05 14:25:27.491877+00 f t TOTAL 0.00 3 4924 \N +187400 2025-08-05 14:25:27.49341+00 2025-08-05 14:25:27.493418+00 f t ADELANTO 0.00 4 4924 \N +191816 2025-08-06 22:42:36.564759+00 2025-08-06 22:42:36.564764+00 f t ADELANTO 18500.00 4 5016 \N +191929 2025-08-07 00:09:22.215885+00 2025-08-07 00:09:22.215899+00 f t SUBTOTAL 0.00 1 5022 \N +191930 2025-08-07 00:09:22.218474+00 2025-08-07 00:09:22.218486+00 f t DESCUENTO 0.00 2 5022 \N +191931 2025-08-07 00:09:22.223213+00 2025-08-07 00:09:22.223222+00 f t TOTAL 0.00 3 5022 \N +183621 2025-08-03 23:40:46.351951+00 2025-08-03 23:40:46.351962+00 f t SUBTOTAL 50000.00 1 4822 \N +183622 2025-08-03 23:40:46.353978+00 2025-08-03 23:40:46.353987+00 f t DESCUENTO 0.00 2 4822 \N +183623 2025-08-03 23:40:46.355618+00 2025-08-03 23:40:46.355629+00 f t TOTAL 50000.00 3 4822 \N +183624 2025-08-03 23:40:46.357084+00 2025-08-03 23:40:46.357091+00 f t ADELANTO 10000.00 4 4822 \N +191932 2025-08-07 00:09:22.224764+00 2025-08-07 00:09:22.224773+00 f t ADELANTO 0.00 4 5022 \N +183873 2025-08-04 03:24:53.585975+00 2025-08-04 03:24:53.585986+00 f t SUBTOTAL 0.00 1 4830 \N +183874 2025-08-04 03:24:53.588394+00 2025-08-04 03:24:53.588407+00 f t DESCUENTO 0.00 2 4830 \N +183875 2025-08-04 03:24:53.590286+00 2025-08-04 03:24:53.590294+00 f t TOTAL 0.00 3 4830 \N +183876 2025-08-04 03:24:53.592455+00 2025-08-04 03:24:53.592467+00 f t ADELANTO 0.00 4 4830 \N +184017 2025-08-04 08:00:28.578928+00 2025-08-04 08:00:28.578944+00 f t SUBTOTAL 0.00 1 4833 \N +184018 2025-08-04 08:00:28.582384+00 2025-08-04 08:00:28.582398+00 f t DESCUENTO 0.00 2 4833 \N +184019 2025-08-04 08:00:28.5848+00 2025-08-04 08:00:28.584817+00 f t TOTAL 0.00 3 4833 \N +184020 2025-08-04 08:00:28.586807+00 2025-08-04 08:00:28.586815+00 f t ADELANTO 0.00 4 4833 \N +184161 2025-08-04 09:35:45.275248+00 2025-08-04 09:35:45.275258+00 f t SUBTOTAL 0.00 1 4836 \N +184162 2025-08-04 09:35:45.277742+00 2025-08-04 09:35:45.277754+00 f t DESCUENTO 0.00 2 4836 \N +184163 2025-08-04 09:35:45.279519+00 2025-08-04 09:35:45.27953+00 f t TOTAL 0.00 3 4836 \N +184164 2025-08-04 09:35:45.280993+00 2025-08-04 09:35:45.280999+00 f t ADELANTO 0.00 4 4836 \N +192441 2025-08-07 11:56:35.79177+00 2025-08-07 11:56:35.791779+00 f t SUBTOTAL 70000.00 1 5038 \N +192442 2025-08-07 11:56:35.794035+00 2025-08-07 11:56:35.794049+00 f t DESCUENTO 0.00 2 5038 \N +192443 2025-08-07 11:56:35.795796+00 2025-08-07 11:56:35.795807+00 f t TOTAL 70000.00 3 5038 \N +192444 2025-08-07 11:56:35.797534+00 2025-08-07 11:56:35.797545+00 f t ADELANTO 15000.00 4 5038 \N +192673 2025-08-07 12:54:16.703963+00 2025-08-07 12:54:16.703973+00 f t SUBTOTAL 42000.00 1 5045 \N +192674 2025-08-07 12:54:16.706171+00 2025-08-07 12:54:16.706185+00 f t DESCUENTO 0.00 2 5045 \N +192675 2025-08-07 12:54:16.716325+00 2025-08-07 12:54:16.71634+00 f t TOTAL 42000.00 3 5045 \N +192676 2025-08-07 12:54:16.718387+00 2025-08-07 12:54:16.718397+00 f t ADELANTO 9500.00 4 5045 \N +209167 2025-08-14 02:44:37.132077+00 2025-08-14 02:44:37.132087+00 f t TOTAL 64500.00 3 5454 \N +209168 2025-08-14 02:44:37.134864+00 2025-08-14 02:44:37.134872+00 f t ADELANTO 17000.00 4 5454 \N +224317 2025-08-19 08:27:28.688688+00 2025-08-19 08:27:28.688697+00 f t SUBTOTAL 0.00 1 5809 \N +190621 2025-08-06 16:42:29.534439+00 2025-08-06 16:42:29.534448+00 f t SUBTOTAL 42000.00 1 4986 \N +190622 2025-08-06 16:42:29.537142+00 2025-08-06 16:42:29.537155+00 f t DESCUENTO 0.00 2 4986 \N +190623 2025-08-06 16:42:29.538972+00 2025-08-06 16:42:29.538981+00 f t TOTAL 42000.00 3 4986 \N +190624 2025-08-06 16:42:29.540846+00 2025-08-06 16:42:29.540853+00 f t ADELANTO 9500.00 4 4986 \N +195161 2025-08-08 12:43:37.572585+00 2025-08-08 12:43:37.572596+00 f t SUBTOTAL 0.00 1 5101 \N +184789 2025-08-04 15:10:14.92003+00 2025-08-04 15:10:14.920044+00 f t SUBTOTAL 86500.00 1 4850 \N +184790 2025-08-04 15:10:14.923971+00 2025-08-04 15:10:14.923986+00 f t DESCUENTO 0.00 2 4850 \N +184791 2025-08-04 15:10:14.928061+00 2025-08-04 15:10:14.928078+00 f t TOTAL 86500.00 3 4850 \N +184792 2025-08-04 15:10:14.931726+00 2025-08-04 15:10:14.931743+00 f t ADELANTO 18500.00 4 4850 \N +184797 2025-08-04 15:10:28.727658+00 2025-08-04 15:10:28.727672+00 f t SUBTOTAL 0.00 1 4852 \N +184798 2025-08-04 15:10:28.731091+00 2025-08-04 15:10:28.731104+00 f t DESCUENTO 0.00 2 4852 \N +184799 2025-08-04 15:10:28.733378+00 2025-08-04 15:10:28.733392+00 f t TOTAL 0.00 3 4852 \N +184800 2025-08-04 15:10:28.736995+00 2025-08-04 15:10:28.737009+00 f t ADELANTO 0.00 4 4852 \N +184829 2025-08-04 15:10:58.331789+00 2025-08-04 15:10:58.331803+00 f t SUBTOTAL 68000.00 1 4853 \N +184830 2025-08-04 15:10:58.33396+00 2025-08-04 15:10:58.333969+00 f t DESCUENTO 0.00 2 4853 \N +184831 2025-08-04 15:10:58.335582+00 2025-08-04 15:10:58.335589+00 f t TOTAL 68000.00 3 4853 \N +184832 2025-08-04 15:10:58.33708+00 2025-08-04 15:10:58.337087+00 f t ADELANTO 13000.00 4 4853 \N +186933 2025-08-05 10:35:34.164965+00 2025-08-05 10:35:34.164979+00 f t SUBTOTAL 0.00 1 4909 \N +186934 2025-08-05 10:35:34.166476+00 2025-08-05 10:35:34.166484+00 f t DESCUENTO 0.00 2 4909 \N +186935 2025-08-05 10:35:34.168015+00 2025-08-05 10:35:34.168023+00 f t TOTAL 0.00 3 4909 \N +186936 2025-08-05 10:35:34.169435+00 2025-08-05 10:35:34.169444+00 f t ADELANTO 0.00 4 4909 \N +184857 2025-08-04 15:21:16.991952+00 2025-08-04 15:21:16.991962+00 f t SUBTOTAL 50000.00 1 4854 \N +184858 2025-08-04 15:21:16.993926+00 2025-08-04 15:21:16.993935+00 f t DESCUENTO 0.00 2 4854 \N +184859 2025-08-04 15:21:16.995405+00 2025-08-04 15:21:16.995416+00 f t TOTAL 50000.00 3 4854 \N +184860 2025-08-04 15:21:16.996736+00 2025-08-04 15:21:16.996826+00 f t ADELANTO 10000.00 4 4854 \N +191873 2025-08-06 23:00:16.694153+00 2025-08-06 23:00:16.694171+00 f t SUBTOTAL 68000.00 1 5019 \N +191874 2025-08-06 23:00:16.697564+00 2025-08-06 23:00:16.697575+00 f t DESCUENTO 0.00 2 5019 \N +191875 2025-08-06 23:00:16.700271+00 2025-08-06 23:00:16.700283+00 f t TOTAL 68000.00 3 5019 \N +191876 2025-08-06 23:00:16.703612+00 2025-08-06 23:00:16.703628+00 f t ADELANTO 13000.00 4 5019 \N +187185 2025-08-05 12:13:04.849314+00 2025-08-05 12:13:04.849333+00 f t SUBTOTAL 49500.00 1 4917 \N +187186 2025-08-05 12:13:04.851824+00 2025-08-05 12:13:04.851836+00 f t DESCUENTO 0.00 2 4917 \N +187187 2025-08-05 12:13:04.854249+00 2025-08-05 12:13:04.854262+00 f t TOTAL 49500.00 3 4917 \N +187188 2025-08-05 12:13:04.856402+00 2025-08-05 12:13:04.856412+00 f t ADELANTO 11500.00 4 4917 \N +191937 2025-08-07 00:44:55.878807+00 2025-08-07 00:44:55.878821+00 f t SUBTOTAL 0.00 1 5023 \N +191938 2025-08-07 00:44:55.886158+00 2025-08-07 00:44:55.886172+00 f t DESCUENTO 0.00 2 5023 \N +184885 2025-08-04 15:23:32.452121+00 2025-08-04 15:23:32.45213+00 f t SUBTOTAL 64500.00 1 4855 \N +184886 2025-08-04 15:23:32.453948+00 2025-08-04 15:23:32.453956+00 f t DESCUENTO 0.00 2 4855 \N +184887 2025-08-04 15:23:32.455454+00 2025-08-04 15:23:32.455463+00 f t TOTAL 64500.00 3 4855 \N +184888 2025-08-04 15:23:32.45699+00 2025-08-04 15:23:32.456998+00 f t ADELANTO 17000.00 4 4855 \N +191939 2025-08-07 00:44:55.888567+00 2025-08-07 00:44:55.888576+00 f t TOTAL 0.00 3 5023 \N +191940 2025-08-07 00:44:55.890348+00 2025-08-07 00:44:55.890359+00 f t ADELANTO 0.00 4 5023 \N +192153 2025-08-07 03:30:20.550317+00 2025-08-07 03:30:20.550327+00 f t SUBTOTAL 0.00 1 5029 \N +192154 2025-08-07 03:30:20.552985+00 2025-08-07 03:30:20.552995+00 f t DESCUENTO 0.00 2 5029 \N +192155 2025-08-07 03:30:20.554583+00 2025-08-07 03:30:20.554592+00 f t TOTAL 0.00 3 5029 \N +192156 2025-08-07 03:30:20.556094+00 2025-08-07 03:30:20.556101+00 f t ADELANTO 0.00 4 5029 \N +187405 2025-08-05 14:45:23.438501+00 2025-08-05 14:45:23.438515+00 f t SUBTOTAL 0.00 1 4925 \N +187406 2025-08-05 14:45:23.440637+00 2025-08-05 14:45:23.440649+00 f t DESCUENTO 0.00 2 4925 \N +187407 2025-08-05 14:45:23.442774+00 2025-08-05 14:45:23.442785+00 f t TOTAL 0.00 3 4925 \N +187408 2025-08-05 14:45:23.444751+00 2025-08-05 14:45:23.444763+00 f t ADELANTO 0.00 4 4925 \N +187473 2025-08-05 15:08:34.218128+00 2025-08-05 15:08:34.218141+00 f t SUBTOTAL 0.00 1 4926 \N +187474 2025-08-05 15:08:34.220551+00 2025-08-05 15:08:34.220561+00 f t DESCUENTO 0.00 2 4926 \N +187475 2025-08-05 15:08:34.222143+00 2025-08-05 15:08:34.222155+00 f t TOTAL 0.00 3 4926 \N +187476 2025-08-05 15:08:34.226419+00 2025-08-05 15:08:34.226433+00 f t ADELANTO 0.00 4 4926 \N +187509 2025-08-05 15:14:22.154569+00 2025-08-05 15:14:22.154578+00 f t SUBTOTAL 64500.00 1 4927 \N +187510 2025-08-05 15:14:22.156767+00 2025-08-05 15:14:22.156774+00 f t DESCUENTO 0.00 2 4927 \N +187511 2025-08-05 15:14:22.158567+00 2025-08-05 15:14:22.158575+00 f t TOTAL 64500.00 3 4927 \N +187512 2025-08-05 15:14:22.160443+00 2025-08-05 15:14:22.160451+00 f t ADELANTO 17000.00 4 4927 \N +187553 2025-08-05 16:04:58.8521+00 2025-08-05 16:04:58.852112+00 f t SUBTOTAL 0.00 1 4930 \N +187554 2025-08-05 16:04:58.855206+00 2025-08-05 16:04:58.855216+00 f t DESCUENTO 0.00 2 4930 \N +187555 2025-08-05 16:04:58.85753+00 2025-08-05 16:04:58.85754+00 f t TOTAL 0.00 3 4930 \N +187556 2025-08-05 16:04:58.859184+00 2025-08-05 16:04:58.859193+00 f t ADELANTO 0.00 4 4930 \N +184941 2025-08-04 15:27:39.440302+00 2025-08-04 15:27:39.440312+00 f t SUBTOTAL 129500.00 1 4856 \N +184942 2025-08-04 15:27:39.442104+00 2025-08-04 15:27:39.442114+00 f t DESCUENTO 0.00 2 4856 \N +184943 2025-08-04 15:27:39.444164+00 2025-08-04 15:27:39.444193+00 f t TOTAL 129500.00 3 4856 \N +184944 2025-08-04 15:27:39.449049+00 2025-08-04 15:27:39.449059+00 f t ADELANTO 27000.00 4 4856 \N +184997 2025-08-04 15:29:39.1509+00 2025-08-04 15:29:39.15091+00 f t SUBTOTAL 50000.00 1 4857 \N +184998 2025-08-04 15:29:39.152711+00 2025-08-04 15:29:39.152719+00 f t DESCUENTO 0.00 2 4857 \N +184999 2025-08-04 15:29:39.154344+00 2025-08-04 15:29:39.154352+00 f t TOTAL 50000.00 3 4857 \N +185000 2025-08-04 15:29:39.155929+00 2025-08-04 15:29:39.155938+00 f t ADELANTO 10000.00 4 4857 \N +188045 2025-08-05 19:08:46.743028+00 2025-08-05 19:08:46.74304+00 f t SUBTOTAL 82200.00 1 4933 \N +188046 2025-08-05 19:08:46.744856+00 2025-08-05 19:08:46.744866+00 f t DESCUENTO 0.00 2 4933 \N +188047 2025-08-05 19:08:46.746251+00 2025-08-05 19:08:46.746258+00 f t TOTAL 82200.00 3 4933 \N +188048 2025-08-05 19:08:46.747432+00 2025-08-05 19:08:46.747439+00 f t ADELANTO 44200.00 4 4933 \N +185025 2025-08-04 15:32:23.74235+00 2025-08-04 15:32:23.74236+00 f t SUBTOTAL 42000.00 1 4858 \N +185026 2025-08-04 15:32:23.744204+00 2025-08-04 15:32:23.744213+00 f t DESCUENTO 0.00 2 4858 \N +185027 2025-08-04 15:32:23.745852+00 2025-08-04 15:32:23.745859+00 f t TOTAL 42000.00 3 4858 \N +185028 2025-08-04 15:32:23.747386+00 2025-08-04 15:32:23.747393+00 f t ADELANTO 9500.00 4 4858 \N +224318 2025-08-19 08:27:28.690624+00 2025-08-19 08:27:28.690631+00 f t DESCUENTO 0.00 2 5809 \N +195162 2025-08-08 12:43:37.574228+00 2025-08-08 12:43:37.574236+00 f t DESCUENTO 0.00 2 5101 \N +195163 2025-08-08 12:43:37.575693+00 2025-08-08 12:43:37.5757+00 f t TOTAL 0.00 3 5101 \N +195164 2025-08-08 12:43:37.577113+00 2025-08-08 12:43:37.577119+00 f t ADELANTO 0.00 4 5101 \N +185069 2025-08-04 15:35:11.331013+00 2025-08-04 15:35:11.331028+00 f t SUBTOTAL 129500.00 1 4859 \N +185070 2025-08-04 15:35:11.335406+00 2025-08-04 15:35:11.335423+00 f t DESCUENTO 0.00 2 4859 \N +185071 2025-08-04 15:35:11.338577+00 2025-08-04 15:35:11.338592+00 f t TOTAL 129500.00 3 4859 \N +185072 2025-08-04 15:35:11.342263+00 2025-08-04 15:35:11.342277+00 f t ADELANTO 27000.00 4 4859 \N +190925 2025-08-06 18:19:09.885455+00 2025-08-06 18:19:09.885465+00 f t SUBTOTAL 42000.00 1 4992 \N +190926 2025-08-06 18:19:09.897088+00 2025-08-06 18:19:09.897101+00 f t DESCUENTO 0.00 2 4992 \N +190927 2025-08-06 18:19:09.899503+00 2025-08-06 18:19:09.899516+00 f t TOTAL 42000.00 3 4992 \N +190928 2025-08-06 18:19:09.902+00 2025-08-06 18:19:09.902013+00 f t ADELANTO 9500.00 4 4992 \N +191289 2025-08-06 18:44:38.208652+00 2025-08-06 18:44:38.208664+00 f t SUBTOTAL 42000.00 1 4999 \N +191290 2025-08-06 18:44:38.210936+00 2025-08-06 18:44:38.210945+00 f t DESCUENTO 0.00 2 4999 \N +191291 2025-08-06 18:44:38.21282+00 2025-08-06 18:44:38.212831+00 f t TOTAL 42000.00 3 4999 \N +191292 2025-08-06 18:44:38.214619+00 2025-08-06 18:44:38.214629+00 f t ADELANTO 9500.00 4 4999 \N +191341 2025-08-06 18:45:28.375751+00 2025-08-06 18:45:28.375764+00 f t SUBTOTAL 49700.00 1 4998 \N +191342 2025-08-06 18:45:28.378211+00 2025-08-06 18:45:28.378223+00 f t DESCUENTO 0.00 2 4998 \N +191343 2025-08-06 18:45:28.379953+00 2025-08-06 18:45:28.379961+00 f t TOTAL 49700.00 3 4998 \N +191344 2025-08-06 18:45:28.381784+00 2025-08-06 18:45:28.381794+00 f t ADELANTO 11700.00 4 4998 \N +191469 2025-08-06 19:46:36.043923+00 2025-08-06 19:46:36.043932+00 f t SUBTOTAL 72000.00 1 5005 \N +191470 2025-08-06 19:46:36.045749+00 2025-08-06 19:46:36.045757+00 f t DESCUENTO 0.00 2 5005 \N +191471 2025-08-06 19:46:36.052376+00 2025-08-06 19:46:36.052384+00 f t TOTAL 72000.00 3 5005 \N +185121 2025-08-04 15:44:35.069605+00 2025-08-04 15:44:35.069613+00 f t SUBTOTAL 64500.00 1 4860 \N +185122 2025-08-04 15:44:35.071484+00 2025-08-04 15:44:35.071492+00 f t DESCUENTO 0.00 2 4860 \N +185123 2025-08-04 15:44:35.072921+00 2025-08-04 15:44:35.072928+00 f t TOTAL 64500.00 3 4860 \N +185124 2025-08-04 15:44:35.074405+00 2025-08-04 15:44:35.074413+00 f t ADELANTO 17000.00 4 4860 \N +191472 2025-08-06 19:46:36.054048+00 2025-08-06 19:46:36.054056+00 f t ADELANTO 19000.00 4 5005 \N +186941 2025-08-05 10:54:01.022597+00 2025-08-05 10:54:01.022611+00 f t SUBTOTAL 0.00 1 4910 \N +186942 2025-08-05 10:54:01.024602+00 2025-08-05 10:54:01.024616+00 f t DESCUENTO 0.00 2 4910 \N +186943 2025-08-05 10:54:01.026457+00 2025-08-05 10:54:01.026469+00 f t TOTAL 0.00 3 4910 \N +186944 2025-08-05 10:54:01.028434+00 2025-08-05 10:54:01.028445+00 f t ADELANTO 0.00 4 4910 \N +191821 2025-08-06 22:44:21.070765+00 2025-08-06 22:44:21.070775+00 f t SUBTOTAL 0.00 1 5017 \N +191822 2025-08-06 22:44:21.072847+00 2025-08-06 22:44:21.072855+00 f t DESCUENTO 0.00 2 5017 \N +191823 2025-08-06 22:44:21.07439+00 2025-08-06 22:44:21.074404+00 f t TOTAL 0.00 3 5017 \N +191824 2025-08-06 22:44:21.075989+00 2025-08-06 22:44:21.075999+00 f t ADELANTO 0.00 4 5017 \N +191881 2025-08-06 23:29:24.354834+00 2025-08-06 23:29:24.35485+00 f t SUBTOTAL 0.00 1 5020 \N +191882 2025-08-06 23:29:24.3573+00 2025-08-06 23:29:24.357309+00 f t DESCUENTO 0.00 2 5020 \N +191883 2025-08-06 23:29:24.359053+00 2025-08-06 23:29:24.359063+00 f t TOTAL 0.00 3 5020 \N +191884 2025-08-06 23:29:24.361009+00 2025-08-06 23:29:24.36102+00 f t ADELANTO 0.00 4 5020 \N +185169 2025-08-04 15:53:52.963055+00 2025-08-04 15:53:52.963067+00 f t SUBTOTAL 72000.00 1 4861 \N +185170 2025-08-04 15:53:52.965032+00 2025-08-04 15:53:52.965043+00 f t DESCUENTO 0.00 2 4861 \N +185171 2025-08-04 15:53:52.966687+00 2025-08-04 15:53:52.966697+00 f t TOTAL 72000.00 3 4861 \N +185172 2025-08-04 15:53:52.967902+00 2025-08-04 15:53:52.96791+00 f t ADELANTO 19000.00 4 4861 \N +185177 2025-08-04 16:21:30.240979+00 2025-08-04 16:21:30.24099+00 f t SUBTOTAL 0.00 1 4862 \N +185178 2025-08-04 16:21:30.242825+00 2025-08-04 16:21:30.24284+00 f t DESCUENTO 0.00 2 4862 \N +185179 2025-08-04 16:21:30.244657+00 2025-08-04 16:21:30.244666+00 f t TOTAL 0.00 3 4862 \N +185180 2025-08-04 16:21:30.246168+00 2025-08-04 16:21:30.246175+00 f t ADELANTO 0.00 4 4862 \N +192093 2025-08-07 02:33:27.56254+00 2025-08-07 02:33:27.562554+00 f t SUBTOTAL 0.00 1 5026 \N +192094 2025-08-07 02:33:27.565239+00 2025-08-07 02:33:27.565249+00 f t DESCUENTO 0.00 2 5026 \N +192095 2025-08-07 02:33:27.566902+00 2025-08-07 02:33:27.56691+00 f t TOTAL 0.00 3 5026 \N +192096 2025-08-07 02:33:27.568496+00 2025-08-07 02:33:27.568503+00 f t ADELANTO 0.00 4 5026 \N +192201 2025-08-07 03:31:29.52121+00 2025-08-07 03:31:29.521223+00 f t SUBTOTAL 50000.00 1 5030 \N +192202 2025-08-07 03:31:29.523813+00 2025-08-07 03:31:29.523825+00 f t DESCUENTO 0.00 2 5030 \N +192203 2025-08-07 03:31:29.525551+00 2025-08-07 03:31:29.525562+00 f t TOTAL 50000.00 3 5030 \N +192204 2025-08-07 03:31:29.527778+00 2025-08-07 03:31:29.527788+00 f t ADELANTO 10000.00 4 5030 \N +185205 2025-08-04 16:54:12.432543+00 2025-08-04 16:54:12.432552+00 f t SUBTOTAL 50000.00 1 4863 \N +185206 2025-08-04 16:54:12.434606+00 2025-08-04 16:54:12.434614+00 f t DESCUENTO 0.00 2 4863 \N +185207 2025-08-04 16:54:12.436464+00 2025-08-04 16:54:12.436473+00 f t TOTAL 50000.00 3 4863 \N +185208 2025-08-04 16:54:12.438187+00 2025-08-04 16:54:12.438194+00 f t ADELANTO 10000.00 4 4863 \N +187517 2025-08-05 15:20:11.882975+00 2025-08-05 15:20:11.882989+00 f t SUBTOTAL 0.00 1 4928 \N +187518 2025-08-05 15:20:11.887811+00 2025-08-05 15:20:11.887832+00 f t DESCUENTO 0.00 2 4928 \N +187519 2025-08-05 15:20:11.891155+00 2025-08-05 15:20:11.891166+00 f t TOTAL 0.00 3 4928 \N +187520 2025-08-05 15:20:11.89392+00 2025-08-05 15:20:11.893932+00 f t ADELANTO 0.00 4 4928 \N +185233 2025-08-04 17:04:04.517147+00 2025-08-04 17:04:04.517161+00 f t SUBTOTAL 68000.00 1 4864 \N +185234 2025-08-04 17:04:04.51975+00 2025-08-04 17:04:04.51976+00 f t DESCUENTO 0.00 2 4864 \N +185235 2025-08-04 17:04:04.521647+00 2025-08-04 17:04:04.521656+00 f t TOTAL 68000.00 3 4864 \N +185236 2025-08-04 17:04:04.523653+00 2025-08-04 17:04:04.523665+00 f t ADELANTO 13000.00 4 4864 \N +192941 2025-08-07 13:20:20.412107+00 2025-08-07 13:20:20.412121+00 f t SUBTOTAL 0.00 1 5051 \N +192942 2025-08-07 13:20:20.414918+00 2025-08-07 13:20:20.414931+00 f t DESCUENTO 0.00 2 5051 \N +192943 2025-08-07 13:20:20.416821+00 2025-08-07 13:20:20.416832+00 f t TOTAL 0.00 3 5051 \N +192944 2025-08-07 13:20:20.418569+00 2025-08-07 13:20:20.418579+00 f t ADELANTO 0.00 4 5051 \N +185285 2025-08-04 17:11:05.409943+00 2025-08-04 17:11:05.409953+00 f t SUBTOTAL 64500.00 1 4865 \N +185286 2025-08-04 17:11:05.41227+00 2025-08-04 17:11:05.412283+00 f t DESCUENTO 0.00 2 4865 \N +185287 2025-08-04 17:11:05.414403+00 2025-08-04 17:11:05.414412+00 f t TOTAL 64500.00 3 4865 \N +185288 2025-08-04 17:11:05.416345+00 2025-08-04 17:11:05.416353+00 f t ADELANTO 17000.00 4 4865 \N +185329 2025-08-04 17:13:19.001665+00 2025-08-04 17:13:19.00168+00 f t SUBTOTAL 64500.00 1 4866 \N +185330 2025-08-04 17:13:19.003843+00 2025-08-04 17:13:19.003856+00 f t DESCUENTO 0.00 2 4866 \N +185331 2025-08-04 17:13:19.005716+00 2025-08-04 17:13:19.005728+00 f t TOTAL 64500.00 3 4866 \N +185332 2025-08-04 17:13:19.007722+00 2025-08-04 17:13:19.007733+00 f t ADELANTO 17000.00 4 4866 \N +186013 2025-08-04 20:35:34.928009+00 2025-08-04 20:35:34.928023+00 f t SUBTOTAL 50000.00 1 4883 \N +186014 2025-08-04 20:35:34.929952+00 2025-08-04 20:35:34.92996+00 f t DESCUENTO 0.00 2 4883 \N +186015 2025-08-04 20:35:34.931545+00 2025-08-04 20:35:34.931555+00 f t TOTAL 50000.00 3 4883 \N +186016 2025-08-04 20:35:34.932897+00 2025-08-04 20:35:34.932904+00 f t ADELANTO 10000.00 4 4883 \N +224319 2025-08-19 08:27:28.692203+00 2025-08-19 08:27:28.692209+00 f t TOTAL 0.00 3 5809 \N +224320 2025-08-19 08:27:28.693648+00 2025-08-19 08:27:28.693655+00 f t ADELANTO 0.00 4 5809 \N +224621 2025-08-19 12:16:08.639508+00 2025-08-19 12:16:08.639519+00 f t SUBTOTAL 0.00 1 5817 \N +224622 2025-08-19 12:16:08.642509+00 2025-08-19 12:16:08.642518+00 f t DESCUENTO 0.00 2 5817 \N +186257 2025-08-04 22:39:42.88139+00 2025-08-04 22:39:42.8814+00 f t SUBTOTAL 0.00 1 4891 \N +186258 2025-08-04 22:39:42.883397+00 2025-08-04 22:39:42.883406+00 f t DESCUENTO 0.00 2 4891 \N +186259 2025-08-04 22:39:42.884701+00 2025-08-04 22:39:42.884707+00 f t TOTAL 0.00 3 4891 \N +186260 2025-08-04 22:39:42.885791+00 2025-08-04 22:39:42.885797+00 f t ADELANTO 0.00 4 4891 \N +185357 2025-08-04 17:20:21.705982+00 2025-08-04 17:20:21.705993+00 f t SUBTOTAL 64500.00 1 4867 \N +185358 2025-08-04 17:20:21.707635+00 2025-08-04 17:20:21.707642+00 f t DESCUENTO 0.00 2 4867 \N +185359 2025-08-04 17:20:21.708902+00 2025-08-04 17:20:21.708908+00 f t TOTAL 64500.00 3 4867 \N +185360 2025-08-04 17:20:21.710249+00 2025-08-04 17:20:21.710255+00 f t ADELANTO 17000.00 4 4867 \N +185365 2025-08-04 17:38:43.447897+00 2025-08-04 17:38:43.447907+00 f t SUBTOTAL 0.00 1 4868 \N +185366 2025-08-04 17:38:43.449303+00 2025-08-04 17:38:43.449311+00 f t DESCUENTO 0.00 2 4868 \N +185367 2025-08-04 17:38:43.450441+00 2025-08-04 17:38:43.450447+00 f t TOTAL 0.00 3 4868 \N +185368 2025-08-04 17:38:43.451592+00 2025-08-04 17:38:43.451598+00 f t ADELANTO 0.00 4 4868 \N +185373 2025-08-04 17:39:23.076854+00 2025-08-04 17:39:23.076867+00 f t SUBTOTAL 0.00 1 4869 \N +185374 2025-08-04 17:39:23.078861+00 2025-08-04 17:39:23.078872+00 f t DESCUENTO 0.00 2 4869 \N +185375 2025-08-04 17:39:23.080715+00 2025-08-04 17:39:23.080764+00 f t TOTAL 0.00 3 4869 \N +185376 2025-08-04 17:39:23.082511+00 2025-08-04 17:39:23.082521+00 f t ADELANTO 0.00 4 4869 \N +186645 2025-08-05 00:51:43.376915+00 2025-08-05 00:51:43.376925+00 f t SUBTOTAL 42000.00 1 4900 \N +186646 2025-08-05 00:51:43.382768+00 2025-08-05 00:51:43.382781+00 f t DESCUENTO 0.00 2 4900 \N +186647 2025-08-05 00:51:43.385189+00 2025-08-05 00:51:43.385198+00 f t TOTAL 42000.00 3 4900 \N +186648 2025-08-05 00:51:43.386852+00 2025-08-05 00:51:43.386859+00 f t ADELANTO 9500.00 4 4900 \N +186693 2025-08-05 01:22:33.740603+00 2025-08-05 01:22:33.740616+00 f t SUBTOTAL 42000.00 1 4901 \N +186694 2025-08-05 01:22:33.742681+00 2025-08-05 01:22:33.742692+00 f t DESCUENTO 0.00 2 4901 \N +186695 2025-08-05 01:22:33.74439+00 2025-08-05 01:22:33.744399+00 f t TOTAL 42000.00 3 4901 \N +186696 2025-08-05 01:22:33.745925+00 2025-08-05 01:22:33.745931+00 f t ADELANTO 9500.00 4 4901 \N +186741 2025-08-05 01:31:54.071926+00 2025-08-05 01:31:54.071983+00 f t SUBTOTAL 42000.00 1 4902 \N +186742 2025-08-05 01:31:54.074043+00 2025-08-05 01:31:54.074051+00 f t DESCUENTO 0.00 2 4902 \N +186743 2025-08-05 01:31:54.075565+00 2025-08-05 01:31:54.075572+00 f t TOTAL 42000.00 3 4902 \N +186744 2025-08-05 01:31:54.076953+00 2025-08-05 01:31:54.076959+00 f t ADELANTO 9500.00 4 4902 \N +191477 2025-08-06 19:47:02.515113+00 2025-08-06 19:47:02.515221+00 f t SUBTOTAL 0.00 1 5006 \N +191478 2025-08-06 19:47:02.520208+00 2025-08-06 19:47:02.520222+00 f t DESCUENTO 0.00 2 5006 \N +191479 2025-08-06 19:47:02.523983+00 2025-08-06 19:47:02.523998+00 f t TOTAL 0.00 3 5006 \N +191480 2025-08-06 19:47:02.527327+00 2025-08-06 19:47:02.527339+00 f t ADELANTO 0.00 4 5006 \N +191717 2025-08-06 21:26:16.183732+00 2025-08-06 21:26:16.183776+00 f t SUBTOTAL 70000.00 1 5014 \N +191718 2025-08-06 21:26:16.186947+00 2025-08-06 21:26:16.186959+00 f t DESCUENTO 0.00 2 5014 \N +191719 2025-08-06 21:26:16.189204+00 2025-08-06 21:26:16.189216+00 f t TOTAL 70000.00 3 5014 \N +191720 2025-08-06 21:26:16.193005+00 2025-08-06 21:26:16.193019+00 f t ADELANTO 15000.00 4 5014 \N +191769 2025-08-06 22:13:08.710932+00 2025-08-06 22:13:08.710948+00 f t SUBTOTAL 42000.00 1 5015 \N +191770 2025-08-06 22:13:08.714016+00 2025-08-06 22:13:08.714027+00 f t DESCUENTO 0.00 2 5015 \N +191771 2025-08-06 22:13:08.716157+00 2025-08-06 22:13:08.716168+00 f t TOTAL 42000.00 3 5015 \N +191772 2025-08-06 22:13:08.719017+00 2025-08-06 22:13:08.719029+00 f t ADELANTO 9500.00 4 5015 \N +192101 2025-08-07 03:06:01.471773+00 2025-08-07 03:06:01.471786+00 f t SUBTOTAL 0.00 1 5027 \N +192102 2025-08-07 03:06:01.473733+00 2025-08-07 03:06:01.473742+00 f t DESCUENTO 0.00 2 5027 \N +192103 2025-08-07 03:06:01.476572+00 2025-08-07 03:06:01.476585+00 f t TOTAL 0.00 3 5027 \N +192104 2025-08-07 03:06:01.478801+00 2025-08-07 03:06:01.478813+00 f t ADELANTO 0.00 4 5027 \N +185505 2025-08-04 17:54:43.970152+00 2025-08-04 17:54:43.970164+00 f t SUBTOTAL 82200.00 1 4870 \N +185506 2025-08-04 17:54:43.972317+00 2025-08-04 17:54:43.972329+00 f t DESCUENTO 0.00 2 4870 \N +185507 2025-08-04 17:54:43.97396+00 2025-08-04 17:54:43.973972+00 f t TOTAL 82200.00 3 4870 \N +185508 2025-08-04 17:54:43.975724+00 2025-08-04 17:54:43.975737+00 f t ADELANTO 44200.00 4 4870 \N +192305 2025-08-07 03:50:39.552384+00 2025-08-07 03:50:39.552393+00 f t SUBTOTAL 42000.00 1 5034 \N +192306 2025-08-07 03:50:39.554258+00 2025-08-07 03:50:39.554267+00 f t DESCUENTO 0.00 2 5034 \N +192307 2025-08-07 03:50:39.555731+00 2025-08-07 03:50:39.555739+00 f t TOTAL 42000.00 3 5034 \N +192308 2025-08-07 03:50:39.557062+00 2025-08-07 03:50:39.557069+00 f t ADELANTO 9500.00 4 5034 \N +192545 2025-08-07 12:41:09.32623+00 2025-08-07 12:41:09.326244+00 f t SUBTOTAL 50000.00 1 5041 \N +192546 2025-08-07 12:41:09.328411+00 2025-08-07 12:41:09.328422+00 f t DESCUENTO 0.00 2 5041 \N +192547 2025-08-07 12:41:09.33022+00 2025-08-07 12:41:09.330229+00 f t TOTAL 50000.00 3 5041 \N +192548 2025-08-07 12:41:09.331782+00 2025-08-07 12:41:09.331792+00 f t ADELANTO 10000.00 4 5041 \N +185553 2025-08-04 17:57:07.166995+00 2025-08-04 17:57:07.167008+00 f t SUBTOTAL 42000.00 1 4871 \N +185554 2025-08-04 17:57:07.168976+00 2025-08-04 17:57:07.168986+00 f t DESCUENTO 0.00 2 4871 \N +185555 2025-08-04 17:57:07.170669+00 2025-08-04 17:57:07.170679+00 f t TOTAL 42000.00 3 4871 \N +185556 2025-08-04 17:57:07.172234+00 2025-08-04 17:57:07.172243+00 f t ADELANTO 9500.00 4 4871 \N +185609 2025-08-04 17:58:07.238143+00 2025-08-04 17:58:07.238156+00 f t SUBTOTAL 0.00 1 4872 \N +185610 2025-08-04 17:58:07.240587+00 2025-08-04 17:58:07.240601+00 f t DESCUENTO 0.00 2 4872 \N +185611 2025-08-04 17:58:07.242249+00 2025-08-04 17:58:07.242257+00 f t TOTAL 0.00 3 4872 \N +185612 2025-08-04 17:58:07.243912+00 2025-08-04 17:58:07.243919+00 f t ADELANTO 0.00 4 4872 \N +188305 2025-08-05 20:57:23.255559+00 2025-08-05 20:57:23.255568+00 f t SUBTOTAL 0.00 1 4936 \N +185617 2025-08-04 18:20:23.449622+00 2025-08-04 18:20:23.44964+00 f t SUBTOTAL 0.00 1 4873 \N +185618 2025-08-04 18:20:23.451941+00 2025-08-04 18:20:23.451949+00 f t DESCUENTO 0.00 2 4873 \N +185619 2025-08-04 18:20:23.453762+00 2025-08-04 18:20:23.453774+00 f t TOTAL 0.00 3 4873 \N +185620 2025-08-04 18:20:23.455586+00 2025-08-04 18:20:23.455594+00 f t ADELANTO 0.00 4 4873 \N +188306 2025-08-05 20:57:23.257492+00 2025-08-05 20:57:23.257499+00 f t DESCUENTO 0.00 2 4936 \N +188307 2025-08-05 20:57:23.258557+00 2025-08-05 20:57:23.258562+00 f t TOTAL 0.00 3 4936 \N +188308 2025-08-05 20:57:23.259722+00 2025-08-05 20:57:23.259729+00 f t ADELANTO 0.00 4 4936 \N +190857 2025-08-06 18:05:08.865101+00 2025-08-06 18:05:08.865115+00 f t SUBTOTAL 50000.00 1 4990 \N +190858 2025-08-06 18:05:08.868677+00 2025-08-06 18:05:08.868692+00 f t DESCUENTO 0.00 2 4990 \N +190859 2025-08-06 18:05:08.874125+00 2025-08-06 18:05:08.874135+00 f t TOTAL 50000.00 3 4990 \N +190860 2025-08-06 18:05:08.876204+00 2025-08-06 18:05:08.876213+00 f t ADELANTO 10000.00 4 4990 \N +195433 2025-08-08 14:16:44.458654+00 2025-08-08 14:16:44.458663+00 f t SUBTOTAL 70000.00 1 5110 \N +195434 2025-08-08 14:16:44.460786+00 2025-08-08 14:16:44.460793+00 f t DESCUENTO 0.00 2 5110 \N +195435 2025-08-08 14:16:44.462164+00 2025-08-08 14:16:44.462171+00 f t TOTAL 70000.00 3 5110 \N +195436 2025-08-08 14:16:44.463421+00 2025-08-08 14:16:44.463429+00 f t ADELANTO 15000.00 4 5110 \N +195497 2025-08-08 14:26:56.626493+00 2025-08-08 14:26:56.626508+00 f t SUBTOTAL 50000.00 1 5111 \N +195498 2025-08-08 14:26:56.629375+00 2025-08-08 14:26:56.629386+00 f t DESCUENTO 0.00 2 5111 \N +195499 2025-08-08 14:26:56.631326+00 2025-08-08 14:26:56.631338+00 f t TOTAL 50000.00 3 5111 \N +195500 2025-08-08 14:26:56.633283+00 2025-08-08 14:26:56.633294+00 f t ADELANTO 10000.00 4 5111 \N +185677 2025-08-04 18:36:18.998103+00 2025-08-04 18:36:18.998113+00 f t SUBTOTAL 0.00 1 4874 \N +185678 2025-08-04 18:36:19.000526+00 2025-08-04 18:36:19.000534+00 f t DESCUENTO 0.00 2 4874 \N +185679 2025-08-04 18:36:19.002141+00 2025-08-04 18:36:19.002148+00 f t TOTAL 0.00 3 4874 \N +185680 2025-08-04 18:36:19.003637+00 2025-08-04 18:36:19.003648+00 f t ADELANTO 0.00 4 4874 \N +185685 2025-08-04 18:51:28.640215+00 2025-08-04 18:51:28.640231+00 f t SUBTOTAL 0.00 1 4875 \N +185686 2025-08-04 18:51:28.642839+00 2025-08-04 18:51:28.642853+00 f t DESCUENTO 0.00 2 4875 \N +185687 2025-08-04 18:51:28.646047+00 2025-08-04 18:51:28.64606+00 f t TOTAL 0.00 3 4875 \N +185688 2025-08-04 18:51:28.648822+00 2025-08-04 18:51:28.648833+00 f t ADELANTO 0.00 4 4875 \N +185693 2025-08-04 19:47:55.90041+00 2025-08-04 19:47:55.90042+00 f t SUBTOTAL 0.00 1 4876 \N +185694 2025-08-04 19:47:55.902139+00 2025-08-04 19:47:55.902151+00 f t DESCUENTO 0.00 2 4876 \N +185695 2025-08-04 19:47:55.903711+00 2025-08-04 19:47:55.903719+00 f t TOTAL 0.00 3 4876 \N +185696 2025-08-04 19:47:55.905462+00 2025-08-04 19:47:55.905471+00 f t ADELANTO 0.00 4 4876 \N +187033 2025-08-05 11:02:42.128124+00 2025-08-05 11:02:42.128136+00 f t SUBTOTAL 0.00 1 4912 \N +187034 2025-08-05 11:02:42.130041+00 2025-08-05 11:02:42.130049+00 f t DESCUENTO 0.00 2 4912 \N +187035 2025-08-05 11:02:42.131475+00 2025-08-05 11:02:42.131483+00 f t TOTAL 0.00 3 4912 \N +187036 2025-08-05 11:02:42.132803+00 2025-08-05 11:02:42.132809+00 f t ADELANTO 0.00 4 4912 \N +187309 2025-08-05 14:14:11.777238+00 2025-08-05 14:14:11.77725+00 f t SUBTOTAL 79000.00 1 4922 \N +187310 2025-08-05 14:14:11.779306+00 2025-08-05 14:14:11.779315+00 f t DESCUENTO 0.00 2 4922 \N +187311 2025-08-05 14:14:11.780771+00 2025-08-05 14:14:11.780782+00 f t TOTAL 79000.00 3 4922 \N +187312 2025-08-05 14:14:11.782082+00 2025-08-05 14:14:11.782089+00 f t ADELANTO 17500.00 4 4922 \N +185765 2025-08-04 20:08:10.364718+00 2025-08-04 20:08:10.364731+00 f t SUBTOTAL 42000.00 1 4877 \N +185766 2025-08-04 20:08:10.367083+00 2025-08-04 20:08:10.367095+00 f t DESCUENTO 0.00 2 4877 \N +185767 2025-08-04 20:08:10.368784+00 2025-08-04 20:08:10.368794+00 f t TOTAL 42000.00 3 4877 \N +185768 2025-08-04 20:08:10.370468+00 2025-08-04 20:08:10.370476+00 f t ADELANTO 9500.00 4 4877 \N +185773 2025-08-04 20:16:01.727418+00 2025-08-04 20:16:01.727436+00 f t SUBTOTAL 0.00 1 4878 \N +185774 2025-08-04 20:16:01.730582+00 2025-08-04 20:16:01.730604+00 f t DESCUENTO 0.00 2 4878 \N +185775 2025-08-04 20:16:01.73552+00 2025-08-04 20:16:01.735536+00 f t TOTAL 0.00 3 4878 \N +185776 2025-08-04 20:16:01.740691+00 2025-08-04 20:16:01.740704+00 f t ADELANTO 0.00 4 4878 \N +192109 2025-08-07 03:08:03.057853+00 2025-08-07 03:08:03.057866+00 f t SUBTOTAL 0.00 1 5028 \N +185781 2025-08-04 20:17:58.956619+00 2025-08-04 20:17:58.956634+00 f t SUBTOTAL 0.00 1 4879 \N +185782 2025-08-04 20:17:58.95867+00 2025-08-04 20:17:58.95868+00 f t DESCUENTO 0.00 2 4879 \N +185783 2025-08-04 20:17:58.960491+00 2025-08-04 20:17:58.960499+00 f t TOTAL 0.00 3 4879 \N +185784 2025-08-04 20:17:58.961923+00 2025-08-04 20:17:58.961933+00 f t ADELANTO 0.00 4 4879 \N +192110 2025-08-07 03:08:03.067483+00 2025-08-07 03:08:03.067493+00 f t DESCUENTO 0.00 2 5028 \N +192111 2025-08-07 03:08:03.07324+00 2025-08-07 03:08:03.073251+00 f t TOTAL 0.00 3 5028 \N +192112 2025-08-07 03:08:03.075591+00 2025-08-07 03:08:03.075602+00 f t ADELANTO 0.00 4 5028 \N +187597 2025-08-05 16:21:16.779375+00 2025-08-05 16:21:16.779383+00 f t SUBTOTAL 49500.00 1 4931 \N +187598 2025-08-05 16:21:16.781249+00 2025-08-05 16:21:16.781256+00 f t DESCUENTO 0.00 2 4931 \N +187599 2025-08-05 16:21:16.782647+00 2025-08-05 16:21:16.782656+00 f t TOTAL 49500.00 3 4931 \N +187600 2025-08-05 16:21:16.78414+00 2025-08-05 16:21:16.784148+00 f t ADELANTO 11500.00 4 4931 \N +192313 2025-08-07 05:46:40.818168+00 2025-08-07 05:46:40.818182+00 f t SUBTOTAL 0.00 1 5035 \N +192314 2025-08-07 05:46:40.819945+00 2025-08-07 05:46:40.819953+00 f t DESCUENTO 0.00 2 5035 \N +192315 2025-08-07 05:46:40.821742+00 2025-08-07 05:46:40.821751+00 f t TOTAL 0.00 3 5035 \N +192316 2025-08-07 05:46:40.823301+00 2025-08-07 05:46:40.823311+00 f t ADELANTO 0.00 4 5035 \N +192409 2025-08-07 10:37:12.09112+00 2025-08-07 10:37:12.091166+00 f t SUBTOTAL 68000.00 1 5037 \N +192410 2025-08-07 10:37:12.09345+00 2025-08-07 10:37:12.09346+00 f t DESCUENTO 0.00 2 5037 \N +192411 2025-08-07 10:37:12.094978+00 2025-08-07 10:37:12.094988+00 f t TOTAL 68000.00 3 5037 \N +192412 2025-08-07 10:37:12.096377+00 2025-08-07 10:37:12.096385+00 f t ADELANTO 13000.00 4 5037 \N +192501 2025-08-07 12:38:40.409071+00 2025-08-07 12:38:40.409085+00 f t SUBTOTAL 0.00 1 5040 \N +192502 2025-08-07 12:38:40.411474+00 2025-08-07 12:38:40.411484+00 f t DESCUENTO 0.00 2 5040 \N +192503 2025-08-07 12:38:40.413052+00 2025-08-07 12:38:40.41306+00 f t TOTAL 0.00 3 5040 \N +192504 2025-08-07 12:38:40.414442+00 2025-08-07 12:38:40.414448+00 f t ADELANTO 0.00 4 5040 \N +192641 2025-08-07 12:52:45.757502+00 2025-08-07 12:52:45.757511+00 f t SUBTOTAL 42000.00 1 5043 \N +192642 2025-08-07 12:52:45.75938+00 2025-08-07 12:52:45.759388+00 f t DESCUENTO 0.00 2 5043 \N +192643 2025-08-07 12:52:45.763475+00 2025-08-07 12:52:45.763483+00 f t TOTAL 42000.00 3 5043 \N +192644 2025-08-07 12:52:45.764894+00 2025-08-07 12:52:45.764901+00 f t ADELANTO 9500.00 4 5043 \N +193205 2025-08-07 13:40:45.858822+00 2025-08-07 13:40:45.858835+00 f t SUBTOTAL 0.00 1 5054 \N +193206 2025-08-07 13:40:45.861621+00 2025-08-07 13:40:45.861631+00 f t DESCUENTO 0.00 2 5054 \N +193207 2025-08-07 13:40:45.863115+00 2025-08-07 13:40:45.863124+00 f t TOTAL 0.00 3 5054 \N +193208 2025-08-07 13:40:45.864521+00 2025-08-07 13:40:45.86453+00 f t ADELANTO 0.00 4 5054 \N +188273 2025-08-05 19:37:43.681819+00 2025-08-05 19:37:43.681832+00 f t SUBTOTAL 0.00 1 4935 \N +193285 2025-08-07 16:13:50.566119+00 2025-08-07 16:13:50.566132+00 f t SUBTOTAL 0.00 1 5058 \N +193286 2025-08-07 16:13:50.567962+00 2025-08-07 16:13:50.567972+00 f t DESCUENTO 0.00 2 5058 \N +193287 2025-08-07 16:13:50.569653+00 2025-08-07 16:13:50.569664+00 f t TOTAL 0.00 3 5058 \N +193288 2025-08-07 16:13:50.57154+00 2025-08-07 16:13:50.571551+00 f t ADELANTO 0.00 4 5058 \N +188274 2025-08-05 19:37:43.684601+00 2025-08-05 19:37:43.68462+00 f t DESCUENTO 0.00 2 4935 \N +188275 2025-08-05 19:37:43.6866+00 2025-08-05 19:37:43.686612+00 f t TOTAL 0.00 3 4935 \N +188276 2025-08-05 19:37:43.688597+00 2025-08-05 19:37:43.688608+00 f t ADELANTO 0.00 4 4935 \N +188313 2025-08-05 20:58:45.17388+00 2025-08-05 20:58:45.173892+00 f t SUBTOTAL 0.00 1 4937 \N +188314 2025-08-05 20:58:45.176244+00 2025-08-05 20:58:45.176256+00 f t DESCUENTO 0.00 2 4937 \N +188315 2025-08-05 20:58:45.177971+00 2025-08-05 20:58:45.177982+00 f t TOTAL 0.00 3 4937 \N +188316 2025-08-05 20:58:45.179604+00 2025-08-05 20:58:45.179615+00 f t ADELANTO 0.00 4 4937 \N +190549 2025-08-06 16:26:04.048191+00 2025-08-06 16:26:04.048203+00 f t SUBTOTAL 50000.00 1 4983 \N +190550 2025-08-06 16:26:04.050806+00 2025-08-06 16:26:04.05082+00 f t DESCUENTO 0.00 2 4983 \N +190551 2025-08-06 16:26:04.053069+00 2025-08-06 16:26:04.053083+00 f t TOTAL 50000.00 3 4983 \N +190552 2025-08-06 16:26:04.05519+00 2025-08-06 16:26:04.055202+00 f t ADELANTO 10000.00 4 4983 \N +195085 2025-08-08 10:23:10.747053+00 2025-08-08 10:23:10.747068+00 f t SUBTOTAL 0.00 1 5097 \N +195086 2025-08-08 10:23:10.749947+00 2025-08-08 10:23:10.749967+00 f t DESCUENTO 0.00 2 5097 \N +195087 2025-08-08 10:23:10.752107+00 2025-08-08 10:23:10.752121+00 f t TOTAL 0.00 3 5097 \N +195088 2025-08-08 10:23:10.754149+00 2025-08-08 10:23:10.754161+00 f t ADELANTO 0.00 4 5097 \N +199861 2025-08-10 17:56:13.445526+00 2025-08-10 17:56:13.44554+00 f t SUBTOTAL 0.00 1 5219 \N +199862 2025-08-10 17:56:13.447449+00 2025-08-10 17:56:13.447457+00 f t DESCUENTO 0.00 2 5219 \N +199863 2025-08-10 17:56:13.448841+00 2025-08-10 17:56:13.448849+00 f t TOTAL 0.00 3 5219 \N +199864 2025-08-10 17:56:13.45028+00 2025-08-10 17:56:13.450286+00 f t ADELANTO 0.00 4 5219 \N +195373 2025-08-08 14:11:49.995966+00 2025-08-08 14:11:49.995978+00 f t SUBTOTAL 64500.00 1 5108 \N +195374 2025-08-08 14:11:49.998209+00 2025-08-08 14:11:49.998219+00 f t DESCUENTO 0.00 2 5108 \N +195375 2025-08-08 14:11:49.999719+00 2025-08-08 14:11:49.999729+00 f t TOTAL 64500.00 3 5108 \N +195376 2025-08-08 14:11:50.001167+00 2025-08-08 14:11:50.001175+00 f t ADELANTO 17000.00 4 5108 \N +188373 2025-08-05 21:04:23.53541+00 2025-08-05 21:04:23.535424+00 f t SUBTOTAL 42000.00 1 4938 \N +188374 2025-08-05 21:04:23.537855+00 2025-08-05 21:04:23.537867+00 f t DESCUENTO 0.00 2 4938 \N +188375 2025-08-05 21:04:23.539572+00 2025-08-05 21:04:23.53958+00 f t TOTAL 42000.00 3 4938 \N +188376 2025-08-05 21:04:23.541472+00 2025-08-05 21:04:23.54148+00 f t ADELANTO 9500.00 4 4938 \N +191421 2025-08-06 19:40:11.119743+00 2025-08-06 19:40:11.119756+00 f t SUBTOTAL 50000.00 1 5003 \N +191422 2025-08-06 19:40:11.122602+00 2025-08-06 19:40:11.122616+00 f t DESCUENTO 0.00 2 5003 \N +191423 2025-08-06 19:40:11.126399+00 2025-08-06 19:40:11.126413+00 f t TOTAL 50000.00 3 5003 \N +191424 2025-08-06 19:40:11.129499+00 2025-08-06 19:40:11.129512+00 f t ADELANTO 10000.00 4 5003 \N +205201 2025-08-12 18:36:55.967589+00 2025-08-12 18:36:55.967604+00 f t SUBTOTAL 0.00 1 5356 \N +205202 2025-08-12 18:36:55.970747+00 2025-08-12 18:36:55.970761+00 f t DESCUENTO 0.00 2 5356 \N +205203 2025-08-12 18:36:55.973109+00 2025-08-12 18:36:55.973119+00 f t TOTAL 0.00 3 5356 \N +205204 2025-08-12 18:36:55.97559+00 2025-08-12 18:36:55.975601+00 f t ADELANTO 0.00 4 5356 \N +191541 2025-08-06 19:56:38.996998+00 2025-08-06 19:56:38.99701+00 f t SUBTOTAL 95000.00 1 5007 \N +191542 2025-08-06 19:56:38.999589+00 2025-08-06 19:56:38.9996+00 f t DESCUENTO 0.00 2 5007 \N +191543 2025-08-06 19:56:39.001463+00 2025-08-06 19:56:39.001472+00 f t TOTAL 95000.00 3 5007 \N +191544 2025-08-06 19:56:39.003301+00 2025-08-06 19:56:39.003311+00 f t ADELANTO 10000.00 4 5007 \N +200553 2025-08-10 22:56:50.307492+00 2025-08-10 22:56:50.307506+00 f t SUBTOTAL 104000.00 1 5235 \N +200554 2025-08-10 22:56:50.310737+00 2025-08-10 22:56:50.310749+00 f t DESCUENTO 0.00 2 5235 \N +200555 2025-08-10 22:56:50.312728+00 2025-08-10 22:56:50.312741+00 f t TOTAL 104000.00 3 5235 \N +200556 2025-08-10 22:56:50.314601+00 2025-08-10 22:56:50.314611+00 f t ADELANTO 31500.00 4 5235 \N +195901 2025-08-08 16:12:32.769682+00 2025-08-08 16:12:32.769696+00 f t SUBTOTAL 0.00 1 5126 \N +195902 2025-08-08 16:12:32.771834+00 2025-08-08 16:12:32.771845+00 f t DESCUENTO 0.00 2 5126 \N +195903 2025-08-08 16:12:32.773774+00 2025-08-08 16:12:32.773785+00 f t TOTAL 0.00 3 5126 \N +195904 2025-08-08 16:12:32.775914+00 2025-08-08 16:12:32.775925+00 f t ADELANTO 0.00 4 5126 \N +188413 2025-08-05 21:12:19.18711+00 2025-08-05 21:12:19.187123+00 f t SUBTOTAL 0.00 1 4939 \N +188414 2025-08-05 21:12:19.189465+00 2025-08-05 21:12:19.189473+00 f t DESCUENTO 0.00 2 4939 \N +188415 2025-08-05 21:12:19.191119+00 2025-08-05 21:12:19.191158+00 f t TOTAL 0.00 3 4939 \N +188416 2025-08-05 21:12:19.192633+00 2025-08-05 21:12:19.192639+00 f t ADELANTO 0.00 4 4939 \N +196113 2025-08-08 19:06:07.000365+00 2025-08-08 19:06:07.000378+00 f t SUBTOTAL 0.00 1 5135 \N +196114 2025-08-08 19:06:07.002628+00 2025-08-08 19:06:07.002641+00 f t DESCUENTO 0.00 2 5135 \N +196115 2025-08-08 19:06:07.004616+00 2025-08-08 19:06:07.004627+00 f t TOTAL 0.00 3 5135 \N +196116 2025-08-08 19:06:07.006652+00 2025-08-08 19:06:07.006664+00 f t ADELANTO 0.00 4 5135 \N +192005 2025-08-07 00:57:42.031521+00 2025-08-07 00:57:42.03153+00 f t SUBTOTAL 0.00 1 5024 \N +192006 2025-08-07 00:57:42.033782+00 2025-08-07 00:57:42.033794+00 f t DESCUENTO 0.00 2 5024 \N +192007 2025-08-07 00:57:42.035703+00 2025-08-07 00:57:42.035714+00 f t TOTAL 0.00 3 5024 \N +192008 2025-08-07 00:57:42.037206+00 2025-08-07 00:57:42.037213+00 f t ADELANTO 0.00 4 5024 \N +188473 2025-08-05 21:37:24.057146+00 2025-08-05 21:37:24.057159+00 f t SUBTOTAL 76000.00 1 4940 \N +188474 2025-08-05 21:37:24.05939+00 2025-08-05 21:37:24.059402+00 f t DESCUENTO 0.00 2 4940 \N +188475 2025-08-05 21:37:24.061106+00 2025-08-05 21:37:24.061119+00 f t TOTAL 76000.00 3 4940 \N +188476 2025-08-05 21:37:24.062848+00 2025-08-05 21:37:24.062859+00 f t ADELANTO 11000.00 4 4940 \N +192645 2025-08-07 12:53:13.787406+00 2025-08-07 12:53:13.787415+00 f t SUBTOTAL 50000.00 1 5044 \N +192646 2025-08-07 12:53:13.789168+00 2025-08-07 12:53:13.789175+00 f t DESCUENTO 0.00 2 5044 \N +192647 2025-08-07 12:53:13.790552+00 2025-08-07 12:53:13.79056+00 f t TOTAL 50000.00 3 5044 \N +192648 2025-08-07 12:53:13.791873+00 2025-08-07 12:53:13.791879+00 f t ADELANTO 10000.00 4 5044 \N +188529 2025-08-05 21:39:28.044758+00 2025-08-05 21:39:28.044768+00 f t SUBTOTAL 0.00 1 4941 \N +188530 2025-08-05 21:39:28.046561+00 2025-08-05 21:39:28.046572+00 f t DESCUENTO 0.00 2 4941 \N +188531 2025-08-05 21:39:28.047787+00 2025-08-05 21:39:28.047793+00 f t TOTAL 0.00 3 4941 \N +188532 2025-08-05 21:39:28.048916+00 2025-08-05 21:39:28.048924+00 f t ADELANTO 0.00 4 4941 \N +197513 2025-08-09 08:07:35.015991+00 2025-08-09 08:07:35.016003+00 f t SUBTOTAL 0.00 1 5163 \N +197514 2025-08-09 08:07:35.017994+00 2025-08-09 08:07:35.018002+00 f t DESCUENTO 0.00 2 5163 \N +188569 2025-08-05 21:50:11.824867+00 2025-08-05 21:50:11.824881+00 f t SUBTOTAL 64500.00 1 4942 \N +188570 2025-08-05 21:50:11.828385+00 2025-08-05 21:50:11.828401+00 f t DESCUENTO 0.00 2 4942 \N +188571 2025-08-05 21:50:11.831917+00 2025-08-05 21:50:11.831931+00 f t TOTAL 64500.00 3 4942 \N +188572 2025-08-05 21:50:11.838581+00 2025-08-05 21:50:11.838597+00 f t ADELANTO 17000.00 4 4942 \N +197515 2025-08-09 08:07:35.019378+00 2025-08-09 08:07:35.019386+00 f t TOTAL 0.00 3 5163 \N +197516 2025-08-09 08:07:35.020766+00 2025-08-09 08:07:35.020773+00 f t ADELANTO 0.00 4 5163 \N +188597 2025-08-05 22:02:00.812658+00 2025-08-05 22:02:00.812671+00 f t SUBTOTAL 50000.00 1 4943 \N +188598 2025-08-05 22:02:00.815365+00 2025-08-05 22:02:00.815378+00 f t DESCUENTO 0.00 2 4943 \N +188599 2025-08-05 22:02:00.81737+00 2025-08-05 22:02:00.817379+00 f t TOTAL 50000.00 3 4943 \N +188600 2025-08-05 22:02:00.824105+00 2025-08-05 22:02:00.824119+00 f t ADELANTO 10000.00 4 4943 \N +204301 2025-08-12 12:28:49.288805+00 2025-08-12 12:28:49.28882+00 f t SUBTOTAL 0.00 1 5334 \N +204302 2025-08-12 12:28:49.293306+00 2025-08-12 12:28:49.29332+00 f t DESCUENTO 0.00 2 5334 \N +204303 2025-08-12 12:28:49.298445+00 2025-08-12 12:28:49.29846+00 f t TOTAL 0.00 3 5334 \N +204304 2025-08-12 12:28:49.301329+00 2025-08-12 12:28:49.301342+00 f t ADELANTO 0.00 4 5334 \N +190557 2025-08-06 16:34:12.450713+00 2025-08-06 16:34:12.450726+00 f t SUBTOTAL 0.00 1 4984 \N +190558 2025-08-06 16:34:12.452731+00 2025-08-06 16:34:12.452741+00 f t DESCUENTO 0.00 2 4984 \N +190559 2025-08-06 16:34:12.454357+00 2025-08-06 16:34:12.454367+00 f t TOTAL 0.00 3 4984 \N +190560 2025-08-06 16:34:12.455993+00 2025-08-06 16:34:12.456002+00 f t ADELANTO 0.00 4 4984 \N +188625 2025-08-05 22:24:17.944771+00 2025-08-05 22:24:17.94478+00 f t SUBTOTAL 76000.00 1 4944 \N +188626 2025-08-05 22:24:17.94663+00 2025-08-05 22:24:17.946639+00 f t DESCUENTO 0.00 2 4944 \N +188627 2025-08-05 22:24:17.948343+00 2025-08-05 22:24:17.94835+00 f t TOTAL 76000.00 3 4944 \N +188628 2025-08-05 22:24:17.949704+00 2025-08-05 22:24:17.949711+00 f t ADELANTO 11000.00 4 4944 \N +195253 2025-08-08 13:57:17.97017+00 2025-08-08 13:57:17.970181+00 f t SUBTOTAL 0.00 1 5105 \N +195254 2025-08-08 13:57:17.97254+00 2025-08-08 13:57:17.97255+00 f t DESCUENTO 0.00 2 5105 \N +195255 2025-08-08 13:57:17.974149+00 2025-08-08 13:57:17.974158+00 f t TOTAL 0.00 3 5105 \N +195256 2025-08-08 13:57:17.975718+00 2025-08-08 13:57:17.975727+00 f t ADELANTO 0.00 4 5105 \N +195313 2025-08-08 14:01:21.6283+00 2025-08-08 14:01:21.628312+00 f t SUBTOTAL 0.00 1 5106 \N +195314 2025-08-08 14:01:21.631784+00 2025-08-08 14:01:21.631796+00 f t DESCUENTO 0.00 2 5106 \N +195315 2025-08-08 14:01:21.633571+00 2025-08-08 14:01:21.633581+00 f t TOTAL 0.00 3 5106 \N +195316 2025-08-08 14:01:21.635096+00 2025-08-08 14:01:21.635105+00 f t ADELANTO 0.00 4 5106 \N +200009 2025-08-10 19:33:56.663452+00 2025-08-10 19:33:56.663466+00 f t SUBTOTAL 91500.00 1 5223 \N +200010 2025-08-10 19:33:56.666019+00 2025-08-10 19:33:56.666032+00 f t DESCUENTO 0.00 2 5223 \N +200011 2025-08-10 19:33:56.668035+00 2025-08-10 19:33:56.668049+00 f t TOTAL 91500.00 3 5223 \N +200012 2025-08-10 19:33:56.66997+00 2025-08-10 19:33:56.669981+00 f t ADELANTO 20000.00 4 5223 \N +191141 2025-08-06 18:36:31.758669+00 2025-08-06 18:36:31.758685+00 f t SUBTOTAL 42000.00 1 4997 \N +191142 2025-08-06 18:36:31.761953+00 2025-08-06 18:36:31.761965+00 f t DESCUENTO 0.00 2 4997 \N +191143 2025-08-06 18:36:31.764273+00 2025-08-06 18:36:31.764286+00 f t TOTAL 42000.00 3 4997 \N +191144 2025-08-06 18:36:31.769747+00 2025-08-06 18:36:31.769762+00 f t ADELANTO 9500.00 4 4997 \N +195613 2025-08-08 14:41:44.010131+00 2025-08-08 14:41:44.01014+00 f t SUBTOTAL 50000.00 1 5113 \N +195614 2025-08-08 14:41:44.012242+00 2025-08-08 14:41:44.01225+00 f t DESCUENTO 0.00 2 5113 \N +195615 2025-08-08 14:41:44.013655+00 2025-08-08 14:41:44.013661+00 f t TOTAL 50000.00 3 5113 \N +195616 2025-08-08 14:41:44.015341+00 2025-08-08 14:41:44.015351+00 f t ADELANTO 10000.00 4 5113 \N +191429 2025-08-06 19:41:57.292084+00 2025-08-06 19:41:57.292098+00 f t SUBTOTAL 0.00 1 5004 \N +191430 2025-08-06 19:41:57.293859+00 2025-08-06 19:41:57.29387+00 f t DESCUENTO 0.00 2 5004 \N +191431 2025-08-06 19:41:57.295636+00 2025-08-06 19:41:57.295643+00 f t TOTAL 0.00 3 5004 \N +191432 2025-08-06 19:41:57.297111+00 2025-08-06 19:41:57.297121+00 f t ADELANTO 0.00 4 5004 \N +200361 2025-08-10 22:26:23.894078+00 2025-08-10 22:26:23.89409+00 f t SUBTOTAL 27500.00 1 5231 \N +200362 2025-08-10 22:26:23.896707+00 2025-08-10 22:26:23.89672+00 f t DESCUENTO 0.00 2 5231 \N +200363 2025-08-10 22:26:23.898689+00 2025-08-10 22:26:23.898702+00 f t TOTAL 27500.00 3 5231 \N +200364 2025-08-10 22:26:23.900707+00 2025-08-10 22:26:23.900717+00 f t ADELANTO 27500.00 4 5231 \N +195833 2025-08-08 15:33:34.66427+00 2025-08-08 15:33:34.664279+00 f t SUBTOTAL 0.00 1 5120 \N +195834 2025-08-08 15:33:34.670407+00 2025-08-08 15:33:34.670416+00 f t DESCUENTO 0.00 2 5120 \N +195835 2025-08-08 15:33:34.672427+00 2025-08-08 15:33:34.672435+00 f t TOTAL 0.00 3 5120 \N +195836 2025-08-08 15:33:34.673999+00 2025-08-08 15:33:34.674005+00 f t ADELANTO 0.00 4 5120 \N +191549 2025-08-06 20:14:38.574176+00 2025-08-06 20:14:38.574185+00 f t SUBTOTAL 0.00 1 5008 \N +191550 2025-08-06 20:14:38.57562+00 2025-08-06 20:14:38.575629+00 f t DESCUENTO 0.00 2 5008 \N +191551 2025-08-06 20:14:38.576931+00 2025-08-06 20:14:38.576938+00 f t TOTAL 0.00 3 5008 \N +191552 2025-08-06 20:14:38.578164+00 2025-08-06 20:14:38.578171+00 f t ADELANTO 0.00 4 5008 \N +196121 2025-08-08 19:13:56.868327+00 2025-08-08 19:13:56.868335+00 f t SUBTOTAL 0.00 1 5136 \N +196122 2025-08-08 19:13:56.869746+00 2025-08-08 19:13:56.869753+00 f t DESCUENTO 0.00 2 5136 \N +196123 2025-08-08 19:13:56.871031+00 2025-08-08 19:13:56.871037+00 f t TOTAL 0.00 3 5136 \N +196124 2025-08-08 19:13:56.873684+00 2025-08-08 19:13:56.873692+00 f t ADELANTO 0.00 4 5136 \N +192061 2025-08-07 01:18:46.993877+00 2025-08-07 01:18:46.993888+00 f t SUBTOTAL 42000.00 1 5025 \N +192062 2025-08-07 01:18:46.995663+00 2025-08-07 01:18:46.99567+00 f t DESCUENTO 0.00 2 5025 \N +192063 2025-08-07 01:18:46.996989+00 2025-08-07 01:18:46.996996+00 f t TOTAL 42000.00 3 5025 \N +192064 2025-08-07 01:18:46.998378+00 2025-08-07 01:18:46.998388+00 f t ADELANTO 9500.00 4 5025 \N +201201 2025-08-11 13:08:18.603042+00 2025-08-11 13:08:18.603052+00 f t SUBTOTAL 0.00 1 5250 \N +201202 2025-08-11 13:08:18.606019+00 2025-08-11 13:08:18.606029+00 f t DESCUENTO 0.00 2 5250 \N +201203 2025-08-11 13:08:18.607607+00 2025-08-11 13:08:18.607617+00 f t TOTAL 0.00 3 5250 \N +201204 2025-08-11 13:08:18.609754+00 2025-08-11 13:08:18.609765+00 f t ADELANTO 0.00 4 5250 \N +192785 2025-08-07 13:15:32.127261+00 2025-08-07 13:15:32.127277+00 f t SUBTOTAL 76000.00 1 5048 \N +192786 2025-08-07 13:15:32.129615+00 2025-08-07 13:15:32.129628+00 f t DESCUENTO 0.00 2 5048 \N +192787 2025-08-07 13:15:32.131492+00 2025-08-07 13:15:32.131504+00 f t TOTAL 76000.00 3 5048 \N +192788 2025-08-07 13:15:32.133317+00 2025-08-07 13:15:32.133325+00 f t ADELANTO 11000.00 4 5048 \N +201669 2025-08-11 15:39:14.078805+00 2025-08-11 15:39:14.078819+00 f t SUBTOTAL 68000.00 1 5260 \N +201670 2025-08-11 15:39:14.087843+00 2025-08-11 15:39:14.087852+00 f t DESCUENTO 0.00 2 5260 \N +201671 2025-08-11 15:39:14.090303+00 2025-08-11 15:39:14.090315+00 f t TOTAL 68000.00 3 5260 \N +201672 2025-08-11 15:39:14.093063+00 2025-08-11 15:39:14.093076+00 f t ADELANTO 13000.00 4 5260 \N +192873 2025-08-07 13:18:29.862532+00 2025-08-07 13:18:29.862544+00 f t SUBTOTAL 0.00 1 5050 \N +192874 2025-08-07 13:18:29.864568+00 2025-08-07 13:18:29.864577+00 f t DESCUENTO 0.00 2 5050 \N +192875 2025-08-07 13:18:29.865995+00 2025-08-07 13:18:29.866002+00 f t TOTAL 0.00 3 5050 \N +192876 2025-08-07 13:18:29.867096+00 2025-08-07 13:18:29.867102+00 f t ADELANTO 0.00 4 5050 \N +201769 2025-08-11 16:18:14.180195+00 2025-08-11 16:18:14.180205+00 f t SUBTOTAL 68000.00 1 5262 \N +193253 2025-08-07 14:19:16.602723+00 2025-08-07 14:19:16.602733+00 f t SUBTOTAL 0.00 1 5056 \N +193254 2025-08-07 14:19:16.604536+00 2025-08-07 14:19:16.604547+00 f t DESCUENTO 0.00 2 5056 \N +193255 2025-08-07 14:19:16.606503+00 2025-08-07 14:19:16.606515+00 f t TOTAL 0.00 3 5056 \N +193256 2025-08-07 14:19:16.608494+00 2025-08-07 14:19:16.608506+00 f t ADELANTO 0.00 4 5056 \N +188877 2025-08-05 22:33:34.551609+00 2025-08-05 22:33:34.551619+00 f t SUBTOTAL 49700.00 1 4945 \N +188878 2025-08-05 22:33:34.553524+00 2025-08-05 22:33:34.553534+00 f t DESCUENTO 0.00 2 4945 \N +188879 2025-08-05 22:33:34.555186+00 2025-08-05 22:33:34.555196+00 f t TOTAL 49700.00 3 4945 \N +188880 2025-08-05 22:33:34.556741+00 2025-08-05 22:33:34.55675+00 f t ADELANTO 11700.00 4 4945 \N +199549 2025-08-10 15:39:00.969105+00 2025-08-10 15:39:00.969118+00 f t SUBTOTAL 49500.00 1 5210 \N +199550 2025-08-10 15:39:00.971681+00 2025-08-10 15:39:00.971693+00 f t DESCUENTO 0.00 2 5210 \N +199551 2025-08-10 15:39:00.973826+00 2025-08-10 15:39:00.973834+00 f t TOTAL 49500.00 3 5210 \N +199552 2025-08-10 15:39:00.976097+00 2025-08-10 15:39:00.976108+00 f t ADELANTO 11500.00 4 5210 \N +190473 2025-08-06 15:55:45.572486+00 2025-08-06 15:55:45.572494+00 f t SUBTOTAL 144000.00 1 4981 \N +190474 2025-08-06 15:55:45.574344+00 2025-08-06 15:55:45.574352+00 f t DESCUENTO 0.00 2 4981 \N +190475 2025-08-06 15:55:45.575571+00 2025-08-06 15:55:45.575579+00 f t TOTAL 144000.00 3 4981 \N +190476 2025-08-06 15:55:45.576731+00 2025-08-06 15:55:45.576736+00 f t ADELANTO 38000.00 4 4981 \N +295795 2025-09-14 13:47:31.411374+00 2025-09-14 13:47:31.411379+00 f t TOTAL 78000.00 3 7526 \N +190565 2025-08-06 16:35:16.281678+00 2025-08-06 16:35:16.281691+00 f t SUBTOTAL 0.00 1 4985 \N +190566 2025-08-06 16:35:16.283735+00 2025-08-06 16:35:16.283747+00 f t DESCUENTO 0.00 2 4985 \N +190567 2025-08-06 16:35:16.285586+00 2025-08-06 16:35:16.285597+00 f t TOTAL 0.00 3 4985 \N +190568 2025-08-06 16:35:16.287525+00 2025-08-06 16:35:16.287535+00 f t ADELANTO 0.00 4 4985 \N +188913 2025-08-05 22:35:16.659063+00 2025-08-05 22:35:16.659076+00 f t SUBTOTAL 49700.00 1 4946 \N +188914 2025-08-05 22:35:16.661292+00 2025-08-05 22:35:16.661305+00 f t DESCUENTO 0.00 2 4946 \N +188915 2025-08-05 22:35:16.66341+00 2025-08-05 22:35:16.663421+00 f t TOTAL 49700.00 3 4946 \N +188916 2025-08-05 22:35:16.665181+00 2025-08-05 22:35:16.665192+00 f t ADELANTO 11700.00 4 4946 \N +188921 2025-08-05 22:43:37.873477+00 2025-08-05 22:43:37.873488+00 f t SUBTOTAL 0.00 1 4947 \N +188922 2025-08-05 22:43:37.87522+00 2025-08-05 22:43:37.875229+00 f t DESCUENTO 0.00 2 4947 \N +188923 2025-08-05 22:43:37.876691+00 2025-08-05 22:43:37.876697+00 f t TOTAL 0.00 3 4947 \N +188924 2025-08-05 22:43:37.877969+00 2025-08-05 22:43:37.877977+00 f t ADELANTO 0.00 4 4947 \N +188937 2025-08-05 22:46:17.671796+00 2025-08-05 22:46:17.671806+00 f t SUBTOTAL 0.00 1 4948 \N +188938 2025-08-05 22:46:17.673903+00 2025-08-05 22:46:17.673914+00 f t DESCUENTO 0.00 2 4948 \N +188939 2025-08-05 22:46:17.675504+00 2025-08-05 22:46:17.675511+00 f t TOTAL 0.00 3 4948 \N +188940 2025-08-05 22:46:17.676817+00 2025-08-05 22:46:17.676824+00 f t ADELANTO 0.00 4 4948 \N +188945 2025-08-05 23:13:41.928542+00 2025-08-05 23:13:41.928555+00 f t SUBTOTAL 0.00 1 4949 \N +188946 2025-08-05 23:13:41.930291+00 2025-08-05 23:13:41.930303+00 f t DESCUENTO 0.00 2 4949 \N +188947 2025-08-05 23:13:41.932214+00 2025-08-05 23:13:41.932225+00 f t TOTAL 0.00 3 4949 \N +188948 2025-08-05 23:13:41.934041+00 2025-08-05 23:13:41.934052+00 f t ADELANTO 0.00 4 4949 \N +188953 2025-08-05 23:14:03.914575+00 2025-08-05 23:14:03.914588+00 f t SUBTOTAL 0.00 1 4950 \N +188954 2025-08-05 23:14:03.9177+00 2025-08-05 23:14:03.917713+00 f t DESCUENTO 0.00 2 4950 \N +188955 2025-08-05 23:14:03.920193+00 2025-08-05 23:14:03.920202+00 f t TOTAL 0.00 3 4950 \N +188956 2025-08-05 23:14:03.922277+00 2025-08-05 23:14:03.922289+00 f t ADELANTO 0.00 4 4950 \N +188961 2025-08-05 23:25:17.831323+00 2025-08-05 23:25:17.831336+00 f t SUBTOTAL 0.00 1 4951 \N +188962 2025-08-05 23:25:17.833135+00 2025-08-05 23:25:17.833146+00 f t DESCUENTO 0.00 2 4951 \N +188963 2025-08-05 23:25:17.835032+00 2025-08-05 23:25:17.835042+00 f t TOTAL 0.00 3 4951 \N +188964 2025-08-05 23:25:17.836898+00 2025-08-05 23:25:17.836908+00 f t ADELANTO 0.00 4 4951 \N +188989 2025-08-05 23:27:58.431841+00 2025-08-05 23:27:58.431854+00 f t SUBTOTAL 42000.00 1 4952 \N +188990 2025-08-05 23:27:58.433927+00 2025-08-05 23:27:58.433939+00 f t DESCUENTO 0.00 2 4952 \N +188991 2025-08-05 23:27:58.435486+00 2025-08-05 23:27:58.435495+00 f t TOTAL 42000.00 3 4952 \N +188992 2025-08-05 23:27:58.436865+00 2025-08-05 23:27:58.436873+00 f t ADELANTO 9500.00 4 4952 \N +188997 2025-08-05 23:28:18.307903+00 2025-08-05 23:28:18.307912+00 f t SUBTOTAL 0.00 1 4953 \N +188998 2025-08-05 23:28:18.309583+00 2025-08-05 23:28:18.309592+00 f t DESCUENTO 0.00 2 4953 \N +188999 2025-08-05 23:28:18.311226+00 2025-08-05 23:28:18.311234+00 f t TOTAL 0.00 3 4953 \N +189000 2025-08-05 23:28:18.31273+00 2025-08-05 23:28:18.312738+00 f t ADELANTO 0.00 4 4953 \N +191557 2025-08-06 20:15:37.473643+00 2025-08-06 20:15:37.473652+00 f t SUBTOTAL 0.00 1 5009 \N +191558 2025-08-06 20:15:37.474918+00 2025-08-06 20:15:37.474925+00 f t DESCUENTO 0.00 2 5009 \N +191559 2025-08-06 20:15:37.476067+00 2025-08-06 20:15:37.476073+00 f t TOTAL 0.00 3 5009 \N +191560 2025-08-06 20:15:37.477089+00 2025-08-06 20:15:37.477095+00 f t ADELANTO 0.00 4 5009 \N +191621 2025-08-06 21:02:45.722688+00 2025-08-06 21:02:45.722697+00 f t SUBTOTAL 49500.00 1 5012 \N +191622 2025-08-06 21:02:45.72483+00 2025-08-06 21:02:45.724838+00 f t DESCUENTO 0.00 2 5012 \N +191623 2025-08-06 21:02:45.726583+00 2025-08-06 21:02:45.726591+00 f t TOTAL 49500.00 3 5012 \N +191624 2025-08-06 21:02:45.728304+00 2025-08-06 21:02:45.728314+00 f t ADELANTO 11500.00 4 5012 \N +189025 2025-08-05 23:29:56.429162+00 2025-08-05 23:29:56.429174+00 f t SUBTOTAL 64500.00 1 4954 \N +189026 2025-08-05 23:29:56.431225+00 2025-08-05 23:29:56.431236+00 f t DESCUENTO 0.00 2 4954 \N +189027 2025-08-05 23:29:56.432888+00 2025-08-05 23:29:56.432898+00 f t TOTAL 64500.00 3 4954 \N +189028 2025-08-05 23:29:56.434381+00 2025-08-05 23:29:56.43439+00 f t ADELANTO 17000.00 4 4954 \N +189033 2025-08-05 23:42:46.40581+00 2025-08-05 23:42:46.405819+00 f t SUBTOTAL 0.00 1 4955 \N +189034 2025-08-05 23:42:46.407489+00 2025-08-05 23:42:46.407497+00 f t DESCUENTO 0.00 2 4955 \N +189035 2025-08-05 23:42:46.408835+00 2025-08-05 23:42:46.408843+00 f t TOTAL 0.00 3 4955 \N +189036 2025-08-05 23:42:46.410108+00 2025-08-05 23:42:46.410114+00 f t ADELANTO 0.00 4 4955 \N +191845 2025-08-06 22:55:08.583123+00 2025-08-06 22:55:08.583169+00 f t SUBTOTAL 0.00 1 5018 \N +191846 2025-08-06 22:55:08.585959+00 2025-08-06 22:55:08.585973+00 f t DESCUENTO 0.00 2 5018 \N +191847 2025-08-06 22:55:08.588003+00 2025-08-06 22:55:08.588015+00 f t TOTAL 0.00 3 5018 \N +191848 2025-08-06 22:55:08.589947+00 2025-08-06 22:55:08.589959+00 f t ADELANTO 0.00 4 5018 \N +189061 2025-08-06 00:18:33.298824+00 2025-08-06 00:18:33.298833+00 f t SUBTOTAL 93200.00 1 4956 \N +189062 2025-08-06 00:18:33.300677+00 2025-08-06 00:18:33.300687+00 f t DESCUENTO 0.00 2 4956 \N +189063 2025-08-06 00:18:33.302175+00 2025-08-06 00:18:33.302182+00 f t TOTAL 93200.00 3 4956 \N +189064 2025-08-06 00:18:33.303534+00 2025-08-06 00:18:33.303541+00 f t ADELANTO 55200.00 4 4956 \N +189093 2025-08-06 00:30:39.792303+00 2025-08-06 00:30:39.792317+00 f t SUBTOTAL 0.00 1 4957 \N +189094 2025-08-06 00:30:39.794919+00 2025-08-06 00:30:39.794931+00 f t DESCUENTO 0.00 2 4957 \N +189095 2025-08-06 00:30:39.797061+00 2025-08-06 00:30:39.797073+00 f t TOTAL 0.00 3 4957 \N +189096 2025-08-06 00:30:39.799121+00 2025-08-06 00:30:39.799167+00 f t ADELANTO 0.00 4 4957 \N +189149 2025-08-06 00:35:45.927232+00 2025-08-06 00:35:45.927241+00 f t SUBTOTAL 42000.00 1 4958 \N +189150 2025-08-06 00:35:45.929714+00 2025-08-06 00:35:45.929725+00 f t DESCUENTO 0.00 2 4958 \N +189151 2025-08-06 00:35:45.931781+00 2025-08-06 00:35:45.931793+00 f t TOTAL 42000.00 3 4958 \N +189152 2025-08-06 00:35:45.933749+00 2025-08-06 00:35:45.933761+00 f t ADELANTO 9500.00 4 4958 \N +189157 2025-08-06 02:04:31.919046+00 2025-08-06 02:04:31.919055+00 f t SUBTOTAL 0.00 1 4959 \N +189158 2025-08-06 02:04:31.920539+00 2025-08-06 02:04:31.920549+00 f t DESCUENTO 0.00 2 4959 \N +189159 2025-08-06 02:04:31.921826+00 2025-08-06 02:04:31.921833+00 f t TOTAL 0.00 3 4959 \N +189160 2025-08-06 02:04:31.922985+00 2025-08-06 02:04:31.922991+00 f t ADELANTO 0.00 4 4959 \N +199557 2025-08-10 16:21:28.447057+00 2025-08-10 16:21:28.447067+00 f t SUBTOTAL 0.00 1 5211 \N +199558 2025-08-10 16:21:28.448783+00 2025-08-10 16:21:28.44879+00 f t DESCUENTO 0.00 2 5211 \N +199559 2025-08-10 16:21:28.450176+00 2025-08-10 16:21:28.450184+00 f t TOTAL 0.00 3 5211 \N +199560 2025-08-10 16:21:28.451745+00 2025-08-10 16:21:28.451753+00 f t ADELANTO 0.00 4 5211 \N +214373 2025-08-15 19:11:50.746857+00 2025-08-15 19:11:50.74687+00 f t SUBTOTAL 42000.00 1 5585 \N +214374 2025-08-15 19:11:50.749546+00 2025-08-15 19:11:50.749555+00 f t DESCUENTO 0.00 2 5585 \N +214375 2025-08-15 19:11:50.751291+00 2025-08-15 19:11:50.751298+00 f t TOTAL 42000.00 3 5585 \N +190729 2025-08-06 17:32:24.758369+00 2025-08-06 17:32:24.75838+00 f t SUBTOTAL 42000.00 1 4988 \N +190730 2025-08-06 17:32:24.760596+00 2025-08-06 17:32:24.760604+00 f t DESCUENTO 0.00 2 4988 \N +190731 2025-08-06 17:32:24.7622+00 2025-08-06 17:32:24.762208+00 f t TOTAL 42000.00 3 4988 \N +190732 2025-08-06 17:32:24.764014+00 2025-08-06 17:32:24.76402+00 f t ADELANTO 9500.00 4 4988 \N +200017 2025-08-10 19:41:09.615032+00 2025-08-10 19:41:09.615044+00 f t SUBTOTAL 0.00 1 5224 \N +200018 2025-08-10 19:41:09.617224+00 2025-08-10 19:41:09.617236+00 f t DESCUENTO 0.00 2 5224 \N +200019 2025-08-10 19:41:09.625039+00 2025-08-10 19:41:09.625053+00 f t TOTAL 0.00 3 5224 \N +200020 2025-08-10 19:41:09.628222+00 2025-08-10 19:41:09.628236+00 f t ADELANTO 0.00 4 5224 \N +189237 2025-08-06 03:43:46.682781+00 2025-08-06 03:43:46.68279+00 f t SUBTOTAL 42000.00 1 4960 \N +189238 2025-08-06 03:43:46.684819+00 2025-08-06 03:43:46.684827+00 f t DESCUENTO 0.00 2 4960 \N +189239 2025-08-06 03:43:46.686356+00 2025-08-06 03:43:46.686365+00 f t TOTAL 42000.00 3 4960 \N +189240 2025-08-06 03:43:46.6879+00 2025-08-06 03:43:46.687907+00 f t ADELANTO 9500.00 4 4960 \N +189245 2025-08-06 03:49:03.207535+00 2025-08-06 03:49:03.20755+00 f t SUBTOTAL 0.00 1 4961 \N +189246 2025-08-06 03:49:03.213331+00 2025-08-06 03:49:03.213342+00 f t DESCUENTO 0.00 2 4961 \N +189247 2025-08-06 03:49:03.224866+00 2025-08-06 03:49:03.224876+00 f t TOTAL 0.00 3 4961 \N +189248 2025-08-06 03:49:03.22744+00 2025-08-06 03:49:03.227457+00 f t ADELANTO 0.00 4 4961 \N +200369 2025-08-10 22:27:01.060149+00 2025-08-10 22:27:01.060162+00 f t SUBTOTAL 0.00 1 5232 \N +195841 2025-08-08 15:44:24.721396+00 2025-08-08 15:44:24.721408+00 f t SUBTOTAL 0.00 1 5121 \N +195842 2025-08-08 15:44:24.723327+00 2025-08-08 15:44:24.723338+00 f t DESCUENTO 0.00 2 5121 \N +195843 2025-08-08 15:44:24.725172+00 2025-08-08 15:44:24.725183+00 f t TOTAL 0.00 3 5121 \N +195844 2025-08-08 15:44:24.72682+00 2025-08-08 15:44:24.726831+00 f t ADELANTO 0.00 4 5121 \N +196005 2025-08-08 17:04:41.336763+00 2025-08-08 17:04:41.336773+00 f t SUBTOTAL 42000.00 1 5128 \N +191565 2025-08-06 20:31:08.417147+00 2025-08-06 20:31:08.417161+00 f t SUBTOTAL 0.00 1 5010 \N +191566 2025-08-06 20:31:08.4196+00 2025-08-06 20:31:08.419608+00 f t DESCUENTO 0.00 2 5010 \N +191567 2025-08-06 20:31:08.421776+00 2025-08-06 20:31:08.421787+00 f t TOTAL 0.00 3 5010 \N +191568 2025-08-06 20:31:08.423946+00 2025-08-06 20:31:08.423958+00 f t ADELANTO 0.00 4 5010 \N +196006 2025-08-08 17:04:41.338836+00 2025-08-08 17:04:41.338848+00 f t DESCUENTO 0.00 2 5128 \N +196007 2025-08-08 17:04:41.340669+00 2025-08-08 17:04:41.340694+00 f t TOTAL 42000.00 3 5128 \N +196008 2025-08-08 17:04:41.3424+00 2025-08-08 17:04:41.34241+00 f t ADELANTO 9500.00 4 5128 \N +191681 2025-08-06 21:08:21.724539+00 2025-08-06 21:08:21.724551+00 f t SUBTOTAL 42000.00 1 5013 \N +191682 2025-08-06 21:08:21.726622+00 2025-08-06 21:08:21.726632+00 f t DESCUENTO 0.00 2 5013 \N +191683 2025-08-06 21:08:21.728388+00 2025-08-06 21:08:21.728397+00 f t TOTAL 42000.00 3 5013 \N +191684 2025-08-06 21:08:21.729998+00 2025-08-06 21:08:21.730007+00 f t ADELANTO 9500.00 4 5013 \N +189297 2025-08-06 03:55:57.449645+00 2025-08-06 03:55:57.449658+00 f t SUBTOTAL 42000.00 1 4962 \N +189298 2025-08-06 03:55:57.452055+00 2025-08-06 03:55:57.452067+00 f t DESCUENTO 0.00 2 4962 \N +189299 2025-08-06 03:55:57.453897+00 2025-08-06 03:55:57.453908+00 f t TOTAL 42000.00 3 4962 \N +189300 2025-08-06 03:55:57.455611+00 2025-08-06 03:55:57.45562+00 f t ADELANTO 9500.00 4 4962 \N +196129 2025-08-08 20:45:08.288947+00 2025-08-08 20:45:08.288961+00 f t SUBTOTAL 0.00 1 5137 \N +196130 2025-08-08 20:45:08.291689+00 2025-08-08 20:45:08.291703+00 f t DESCUENTO 0.00 2 5137 \N +196131 2025-08-08 20:45:08.293904+00 2025-08-08 20:45:08.293916+00 f t TOTAL 0.00 3 5137 \N +196132 2025-08-08 20:45:08.296002+00 2025-08-08 20:45:08.296013+00 f t ADELANTO 0.00 4 5137 \N +189305 2025-08-06 03:58:45.528211+00 2025-08-06 03:58:45.528225+00 f t SUBTOTAL 0.00 1 4963 \N +189306 2025-08-06 03:58:45.530878+00 2025-08-06 03:58:45.53089+00 f t DESCUENTO 0.00 2 4963 \N +189307 2025-08-06 03:58:45.533067+00 2025-08-06 03:58:45.533137+00 f t TOTAL 0.00 3 4963 \N +189308 2025-08-06 03:58:45.535248+00 2025-08-06 03:58:45.53526+00 f t ADELANTO 0.00 4 4963 \N +196417 2025-08-08 21:35:50.684498+00 2025-08-08 21:35:50.68451+00 f t SUBTOTAL 64500.00 1 5143 \N +196418 2025-08-08 21:35:50.686702+00 2025-08-08 21:35:50.686711+00 f t DESCUENTO 0.00 2 5143 \N +196419 2025-08-08 21:35:50.688395+00 2025-08-08 21:35:50.688402+00 f t TOTAL 64500.00 3 5143 \N +196420 2025-08-08 21:35:50.690054+00 2025-08-08 21:35:50.690064+00 f t ADELANTO 17000.00 4 5143 \N +189393 2025-08-06 04:53:25.280593+00 2025-08-06 04:53:25.280606+00 f t SUBTOTAL 174700.00 1 4964 \N +189394 2025-08-06 04:53:25.282673+00 2025-08-06 04:53:25.282683+00 f t DESCUENTO 0.00 2 4964 \N +189395 2025-08-06 04:53:25.284347+00 2025-08-06 04:53:25.284356+00 f t TOTAL 174700.00 3 4964 \N +189396 2025-08-06 04:53:25.285997+00 2025-08-06 04:53:25.286003+00 f t ADELANTO 81700.00 4 4964 \N +192793 2025-08-07 13:16:42.77197+00 2025-08-07 13:16:42.771982+00 f t SUBTOTAL 0.00 1 5049 \N +192794 2025-08-07 13:16:42.773666+00 2025-08-07 13:16:42.773676+00 f t DESCUENTO 0.00 2 5049 \N +192795 2025-08-07 13:16:42.775337+00 2025-08-07 13:16:42.775344+00 f t TOTAL 0.00 3 5049 \N +192796 2025-08-07 13:16:42.776774+00 2025-08-07 13:16:42.776781+00 f t ADELANTO 0.00 4 5049 \N +197305 2025-08-09 03:26:11.00251+00 2025-08-09 03:26:11.002521+00 f t SUBTOTAL 42000.00 1 5158 \N +197306 2025-08-09 03:26:11.004805+00 2025-08-09 03:26:11.004817+00 f t DESCUENTO 0.00 2 5158 \N +197307 2025-08-09 03:26:11.006742+00 2025-08-09 03:26:11.006753+00 f t TOTAL 42000.00 3 5158 \N +197308 2025-08-09 03:26:11.008497+00 2025-08-09 03:26:11.008508+00 f t ADELANTO 9500.00 4 5158 \N +189437 2025-08-06 10:38:14.568705+00 2025-08-06 10:38:14.568716+00 f t SUBTOTAL 50000.00 1 4965 \N +189438 2025-08-06 10:38:14.570925+00 2025-08-06 10:38:14.570934+00 f t DESCUENTO 0.00 2 4965 \N +189439 2025-08-06 10:38:14.573041+00 2025-08-06 10:38:14.573052+00 f t TOTAL 50000.00 3 4965 \N +189440 2025-08-06 10:38:14.574892+00 2025-08-06 10:38:14.5749+00 f t ADELANTO 10000.00 4 4965 \N +193181 2025-08-07 13:27:32.875948+00 2025-08-07 13:27:32.875963+00 f t SUBTOTAL 0.00 1 5053 \N +193182 2025-08-07 13:27:32.878556+00 2025-08-07 13:27:32.878568+00 f t DESCUENTO 0.00 2 5053 \N +193183 2025-08-07 13:27:32.880286+00 2025-08-07 13:27:32.880298+00 f t TOTAL 0.00 3 5053 \N +193184 2025-08-07 13:27:32.881855+00 2025-08-07 13:27:32.881864+00 f t ADELANTO 0.00 4 5053 \N +197701 2025-08-09 11:47:58.142114+00 2025-08-09 11:47:58.142126+00 f t SUBTOTAL 42000.00 1 5167 \N +197702 2025-08-09 11:47:58.144497+00 2025-08-09 11:47:58.144508+00 f t DESCUENTO 0.00 2 5167 \N +197703 2025-08-09 11:47:58.146745+00 2025-08-09 11:47:58.146757+00 f t TOTAL 42000.00 3 5167 \N +197704 2025-08-09 11:47:58.148476+00 2025-08-09 11:47:58.148484+00 f t ADELANTO 9500.00 4 5167 \N +194933 2025-08-08 09:03:43.650256+00 2025-08-08 09:03:43.650269+00 f t SUBTOTAL 42000.00 1 5096 \N +194934 2025-08-08 09:03:43.652813+00 2025-08-08 09:03:43.652827+00 f t DESCUENTO 0.00 2 5096 \N +194935 2025-08-08 09:03:43.654537+00 2025-08-08 09:03:43.654548+00 f t TOTAL 42000.00 3 5096 \N +194936 2025-08-08 09:03:43.656145+00 2025-08-08 09:03:43.656156+00 f t ADELANTO 9500.00 4 5096 \N +295796 2025-09-14 13:47:31.412424+00 2025-09-14 13:47:31.41243+00 f t ADELANTO 13000.00 4 7526 \N +204469 2025-08-12 12:38:58.299755+00 2025-08-12 12:38:58.299765+00 f t SUBTOTAL 64500.00 1 5332 \N +204470 2025-08-12 12:38:58.301863+00 2025-08-12 12:38:58.301872+00 f t DESCUENTO 0.00 2 5332 \N +204471 2025-08-12 12:38:58.303414+00 2025-08-12 12:38:58.303426+00 f t TOTAL 64500.00 3 5332 \N +204472 2025-08-12 12:38:58.30521+00 2025-08-12 12:38:58.305221+00 f t ADELANTO 17000.00 4 5332 \N +190737 2025-08-06 17:56:10.687239+00 2025-08-06 17:56:10.687248+00 f t SUBTOTAL 0.00 1 4989 \N +190738 2025-08-06 17:56:10.689304+00 2025-08-06 17:56:10.689315+00 f t DESCUENTO 0.00 2 4989 \N +190739 2025-08-06 17:56:10.691011+00 2025-08-06 17:56:10.691019+00 f t TOTAL 0.00 3 4989 \N +190740 2025-08-06 17:56:10.69293+00 2025-08-06 17:56:10.692944+00 f t ADELANTO 0.00 4 4989 \N +195565 2025-08-08 14:28:59.532577+00 2025-08-08 14:28:59.532588+00 f t SUBTOTAL 42000.00 1 5112 \N +195566 2025-08-08 14:28:59.534146+00 2025-08-08 14:28:59.534154+00 f t DESCUENTO 0.00 2 5112 \N +195567 2025-08-08 14:28:59.535367+00 2025-08-08 14:28:59.535375+00 f t TOTAL 42000.00 3 5112 \N +195568 2025-08-08 14:28:59.536802+00 2025-08-08 14:28:59.53681+00 f t ADELANTO 9500.00 4 5112 \N +195785 2025-08-08 15:06:22.243579+00 2025-08-08 15:06:22.243587+00 f t SUBTOTAL 95000.00 1 5118 \N +195786 2025-08-08 15:06:22.24568+00 2025-08-08 15:06:22.245689+00 f t DESCUENTO 0.00 2 5118 \N +195787 2025-08-08 15:06:22.247267+00 2025-08-08 15:06:22.247274+00 f t TOTAL 95000.00 3 5118 \N +195788 2025-08-08 15:06:22.248588+00 2025-08-08 15:06:22.248593+00 f t ADELANTO 10000.00 4 5118 \N +191377 2025-08-06 19:20:32.079598+00 2025-08-06 19:20:32.079607+00 f t SUBTOTAL 42000.00 1 5001 \N +191378 2025-08-06 19:20:32.081416+00 2025-08-06 19:20:32.081424+00 f t DESCUENTO 0.00 2 5001 \N +191379 2025-08-06 19:20:32.082617+00 2025-08-06 19:20:32.082623+00 f t TOTAL 42000.00 3 5001 \N +191380 2025-08-06 19:20:32.083752+00 2025-08-06 19:20:32.083758+00 f t ADELANTO 9500.00 4 5001 \N +195849 2025-08-08 15:55:10.413283+00 2025-08-08 15:55:10.413295+00 f t SUBTOTAL 0.00 1 5122 \N +195850 2025-08-08 15:55:10.415393+00 2025-08-08 15:55:10.415406+00 f t DESCUENTO 0.00 2 5122 \N +195851 2025-08-08 15:55:10.417331+00 2025-08-08 15:55:10.417342+00 f t TOTAL 0.00 3 5122 \N +195852 2025-08-08 15:55:10.419391+00 2025-08-08 15:55:10.419403+00 f t ADELANTO 0.00 4 5122 \N +200370 2025-08-10 22:27:01.062531+00 2025-08-10 22:27:01.062542+00 f t DESCUENTO 0.00 2 5232 \N +200371 2025-08-10 22:27:01.064859+00 2025-08-10 22:27:01.06487+00 f t TOTAL 0.00 3 5232 \N +200372 2025-08-10 22:27:01.066892+00 2025-08-10 22:27:01.066904+00 f t ADELANTO 0.00 4 5232 \N +189573 2025-08-06 11:39:44.071338+00 2025-08-06 11:39:44.071352+00 f t SUBTOTAL 50000.00 1 4966 \N +189574 2025-08-06 11:39:44.073412+00 2025-08-06 11:39:44.07342+00 f t DESCUENTO 0.00 2 4966 \N +189575 2025-08-06 11:39:44.075669+00 2025-08-06 11:39:44.075677+00 f t TOTAL 50000.00 3 4966 \N +189576 2025-08-06 11:39:44.077324+00 2025-08-06 11:39:44.077332+00 f t ADELANTO 10000.00 4 4966 \N +191913 2025-08-06 23:35:07.286704+00 2025-08-06 23:35:07.286718+00 f t SUBTOTAL 42000.00 1 5021 \N +191914 2025-08-06 23:35:07.28985+00 2025-08-06 23:35:07.289864+00 f t DESCUENTO 0.00 2 5021 \N +191915 2025-08-06 23:35:07.292316+00 2025-08-06 23:35:07.292329+00 f t TOTAL 42000.00 3 5021 \N +191916 2025-08-06 23:35:07.295214+00 2025-08-06 23:35:07.295228+00 f t ADELANTO 9500.00 4 5021 \N +196373 2025-08-08 21:26:54.205514+00 2025-08-08 21:26:54.205523+00 f t SUBTOTAL 64500.00 1 5142 \N +196374 2025-08-08 21:26:54.207559+00 2025-08-08 21:26:54.207568+00 f t DESCUENTO 0.00 2 5142 \N +196375 2025-08-08 21:26:54.209115+00 2025-08-08 21:26:54.209125+00 f t TOTAL 64500.00 3 5142 \N +196376 2025-08-08 21:26:54.210501+00 2025-08-08 21:26:54.21051+00 f t ADELANTO 17000.00 4 5142 \N +192277 2025-08-07 03:43:39.07151+00 2025-08-07 03:43:39.071522+00 f t SUBTOTAL 50000.00 1 5033 \N +192278 2025-08-07 03:43:39.073896+00 2025-08-07 03:43:39.073909+00 f t DESCUENTO 0.00 2 5033 \N +192279 2025-08-07 03:43:39.075835+00 2025-08-07 03:43:39.075847+00 f t TOTAL 50000.00 3 5033 \N +192280 2025-08-07 03:43:39.077559+00 2025-08-07 03:43:39.077583+00 f t ADELANTO 10000.00 4 5033 \N +192565 2025-08-07 12:41:49.193028+00 2025-08-07 12:41:49.193041+00 f t SUBTOTAL 42000.00 1 5042 \N +192566 2025-08-07 12:41:49.195404+00 2025-08-07 12:41:49.195412+00 f t DESCUENTO 0.00 2 5042 \N +192567 2025-08-07 12:41:49.197029+00 2025-08-07 12:41:49.197036+00 f t TOTAL 42000.00 3 5042 \N +192568 2025-08-07 12:41:49.198516+00 2025-08-07 12:41:49.198523+00 f t ADELANTO 9500.00 4 5042 \N +189673 2025-08-06 11:47:46.134666+00 2025-08-06 11:47:46.134676+00 f t SUBTOTAL 50000.00 1 4967 \N +189674 2025-08-06 11:47:46.136862+00 2025-08-06 11:47:46.136873+00 f t DESCUENTO 0.00 2 4967 \N +189675 2025-08-06 11:47:46.139225+00 2025-08-06 11:47:46.139235+00 f t TOTAL 50000.00 3 4967 \N +189676 2025-08-06 11:47:46.141345+00 2025-08-06 11:47:46.141353+00 f t ADELANTO 10000.00 4 4967 \N +193149 2025-08-07 13:27:17.535803+00 2025-08-07 13:27:17.535815+00 f t SUBTOTAL 93200.00 1 5052 \N +193150 2025-08-07 13:27:17.538007+00 2025-08-07 13:27:17.538018+00 f t DESCUENTO 0.00 2 5052 \N +193151 2025-08-07 13:27:17.539879+00 2025-08-07 13:27:17.539889+00 f t TOTAL 93200.00 3 5052 \N +193152 2025-08-07 13:27:17.542037+00 2025-08-07 13:27:17.542047+00 f t ADELANTO 55200.00 4 5052 \N +197393 2025-08-09 03:49:46.328497+00 2025-08-09 03:49:46.32851+00 f t SUBTOTAL 0.00 1 5160 \N +197394 2025-08-09 03:49:46.330864+00 2025-08-09 03:49:46.330872+00 f t DESCUENTO 0.00 2 5160 \N +197395 2025-08-09 03:49:46.332352+00 2025-08-09 03:49:46.332361+00 f t TOTAL 0.00 3 5160 \N +197396 2025-08-09 03:49:46.333571+00 2025-08-09 03:49:46.333578+00 f t ADELANTO 0.00 4 5160 \N +193261 2025-08-07 14:19:26.556724+00 2025-08-07 14:19:26.556736+00 f t SUBTOTAL 118000.00 1 5055 \N +193262 2025-08-07 14:19:26.558549+00 2025-08-07 14:19:26.558559+00 f t DESCUENTO 0.00 2 5055 \N +193263 2025-08-07 14:19:26.559949+00 2025-08-07 14:19:26.559957+00 f t TOTAL 118000.00 3 5055 \N +193264 2025-08-07 14:19:26.561188+00 2025-08-07 14:19:26.561196+00 f t ADELANTO 20500.00 4 5055 \N +197613 2025-08-09 11:16:00.1255+00 2025-08-09 11:16:00.125513+00 f t SUBTOTAL 42000.00 1 5165 \N +197614 2025-08-09 11:16:00.128288+00 2025-08-09 11:16:00.128297+00 f t DESCUENTO 0.00 2 5165 \N +197615 2025-08-09 11:16:00.130386+00 2025-08-09 11:16:00.130398+00 f t TOTAL 42000.00 3 5165 \N +197616 2025-08-09 11:16:00.132437+00 2025-08-09 11:16:00.132464+00 f t ADELANTO 9500.00 4 5165 \N +189741 2025-08-06 11:54:19.817129+00 2025-08-06 11:54:19.817137+00 f t SUBTOTAL 99700.00 1 4968 \N +189742 2025-08-06 11:54:19.818952+00 2025-08-06 11:54:19.818962+00 f t DESCUENTO 0.00 2 4968 \N +189743 2025-08-06 11:54:19.820476+00 2025-08-06 11:54:19.820483+00 f t TOTAL 99700.00 3 4968 \N +189744 2025-08-06 11:54:19.821896+00 2025-08-06 11:54:19.821904+00 f t ADELANTO 21700.00 4 4968 \N +193461 2025-08-07 17:28:21.068525+00 2025-08-07 17:28:21.068538+00 f t SUBTOTAL 72000.00 1 5061 \N +193462 2025-08-07 17:28:21.070803+00 2025-08-07 17:28:21.070815+00 f t DESCUENTO 0.00 2 5061 \N +193463 2025-08-07 17:28:21.072629+00 2025-08-07 17:28:21.072637+00 f t TOTAL 72000.00 3 5061 \N +193464 2025-08-07 17:28:21.073855+00 2025-08-07 17:28:21.073861+00 f t ADELANTO 19000.00 4 5061 \N +199801 2025-08-10 16:42:47.71959+00 2025-08-10 16:42:47.719604+00 f t SUBTOTAL 0.00 1 5216 \N +199802 2025-08-10 16:42:47.724035+00 2025-08-10 16:42:47.724047+00 f t DESCUENTO 0.00 2 5216 \N +199803 2025-08-10 16:42:47.726703+00 2025-08-10 16:42:47.726716+00 f t TOTAL 0.00 3 5216 \N +199804 2025-08-10 16:42:47.728583+00 2025-08-10 16:42:47.728596+00 f t ADELANTO 0.00 4 5216 \N +189789 2025-08-06 11:56:26.123348+00 2025-08-06 11:56:26.123358+00 f t SUBTOTAL 0.00 1 4970 \N +189790 2025-08-06 11:56:26.129814+00 2025-08-06 11:56:26.129825+00 f t DESCUENTO 0.00 2 4970 \N +189791 2025-08-06 11:56:26.132023+00 2025-08-06 11:56:26.132037+00 f t TOTAL 0.00 3 4970 \N +189792 2025-08-06 11:56:26.137804+00 2025-08-06 11:56:26.137813+00 f t ADELANTO 0.00 4 4970 \N +190885 2025-08-06 18:13:25.080883+00 2025-08-06 18:13:25.080893+00 f t SUBTOTAL 42000.00 1 4991 \N +190886 2025-08-06 18:13:25.083053+00 2025-08-06 18:13:25.083062+00 f t DESCUENTO 0.00 2 4991 \N +190887 2025-08-06 18:13:25.084787+00 2025-08-06 18:13:25.084797+00 f t TOTAL 42000.00 3 4991 \N +190888 2025-08-06 18:13:25.086337+00 2025-08-06 18:13:25.086344+00 f t ADELANTO 9500.00 4 4991 \N +189805 2025-08-06 11:57:29.090162+00 2025-08-06 11:57:29.090175+00 f t SUBTOTAL 111700.00 1 4969 \N +189806 2025-08-06 11:57:29.094247+00 2025-08-06 11:57:29.09426+00 f t DESCUENTO 0.00 2 4969 \N +189807 2025-08-06 11:57:29.099996+00 2025-08-06 11:57:29.100008+00 f t TOTAL 111700.00 3 4969 \N +189808 2025-08-06 11:57:29.102987+00 2025-08-06 11:57:29.103+00 f t ADELANTO 33700.00 4 4969 \N +200701 2025-08-11 02:05:31.165846+00 2025-08-11 02:05:31.165861+00 f t SUBTOTAL 0.00 1 5240 \N +200702 2025-08-11 02:05:31.168291+00 2025-08-11 02:05:31.168303+00 f t DESCUENTO 0.00 2 5240 \N +200703 2025-08-11 02:05:31.170108+00 2025-08-11 02:05:31.170119+00 f t TOTAL 0.00 3 5240 \N +200704 2025-08-11 02:05:31.171893+00 2025-08-11 02:05:31.171902+00 f t ADELANTO 0.00 4 5240 \N +195857 2025-08-08 15:55:22.287433+00 2025-08-08 15:55:22.287447+00 f t SUBTOTAL 0.00 1 5123 \N +195858 2025-08-08 15:55:22.289816+00 2025-08-08 15:55:22.289829+00 f t DESCUENTO 0.00 2 5123 \N +195859 2025-08-08 15:55:22.291858+00 2025-08-08 15:55:22.29187+00 f t TOTAL 0.00 3 5123 \N +195860 2025-08-08 15:55:22.29375+00 2025-08-08 15:55:22.293763+00 f t ADELANTO 0.00 4 5123 \N +196065 2025-08-08 17:51:51.045283+00 2025-08-08 17:51:51.045292+00 f t SUBTOTAL 0.00 1 5130 \N +196066 2025-08-08 17:51:51.047945+00 2025-08-08 17:51:51.04796+00 f t DESCUENTO 0.00 2 5130 \N +196067 2025-08-08 17:51:51.049703+00 2025-08-08 17:51:51.04971+00 f t TOTAL 0.00 3 5130 \N +196068 2025-08-08 17:51:51.05126+00 2025-08-08 17:51:51.051266+00 f t ADELANTO 0.00 4 5130 \N +189881 2025-08-06 12:15:54.345174+00 2025-08-06 12:15:54.345186+00 f t SUBTOTAL 95700.00 1 4971 \N +189882 2025-08-06 12:15:54.347349+00 2025-08-06 12:15:54.347361+00 f t DESCUENTO 0.00 2 4971 \N +189883 2025-08-06 12:15:54.349287+00 2025-08-06 12:15:54.349295+00 f t TOTAL 95700.00 3 4971 \N +189884 2025-08-06 12:15:54.350868+00 2025-08-06 12:15:54.350877+00 f t ADELANTO 57700.00 4 4971 \N +189913 2025-08-06 12:33:56.992217+00 2025-08-06 12:33:56.992229+00 f t SUBTOTAL 49700.00 1 4972 \N +189914 2025-08-06 12:33:56.994042+00 2025-08-06 12:33:56.994052+00 f t DESCUENTO 0.00 2 4972 \N +189915 2025-08-06 12:33:56.995416+00 2025-08-06 12:33:56.995423+00 f t TOTAL 49700.00 3 4972 \N +189916 2025-08-06 12:33:56.996719+00 2025-08-06 12:33:56.996728+00 f t ADELANTO 11700.00 4 4972 \N +189921 2025-08-06 12:35:25.734705+00 2025-08-06 12:35:25.734719+00 f t SUBTOTAL 0.00 1 4973 \N +189922 2025-08-06 12:35:25.73633+00 2025-08-06 12:35:25.736337+00 f t DESCUENTO 0.00 2 4973 \N +189923 2025-08-06 12:35:25.7376+00 2025-08-06 12:35:25.737606+00 f t TOTAL 0.00 3 4973 \N +189924 2025-08-06 12:35:25.73868+00 2025-08-06 12:35:25.738686+00 f t ADELANTO 0.00 4 4973 \N +192381 2025-08-07 05:54:31.785288+00 2025-08-07 05:54:31.785302+00 f t SUBTOTAL 72000.00 1 5036 \N +192382 2025-08-07 05:54:31.78725+00 2025-08-07 05:54:31.78726+00 f t DESCUENTO 0.00 2 5036 \N +192383 2025-08-07 05:54:31.788941+00 2025-08-07 05:54:31.78895+00 f t TOTAL 72000.00 3 5036 \N +192384 2025-08-07 05:54:31.790442+00 2025-08-07 05:54:31.79045+00 f t ADELANTO 19000.00 4 5036 \N +201573 2025-08-11 14:31:35.915051+00 2025-08-11 14:31:35.915067+00 f t SUBTOTAL 0.00 1 5258 \N +201574 2025-08-11 14:31:35.918443+00 2025-08-11 14:31:35.918457+00 f t DESCUENTO 0.00 2 5258 \N +201575 2025-08-11 14:31:35.921078+00 2025-08-11 14:31:35.92109+00 f t TOTAL 0.00 3 5258 \N +201576 2025-08-11 14:31:35.924577+00 2025-08-11 14:31:35.92459+00 f t ADELANTO 0.00 4 5258 \N +196697 2025-08-08 22:30:19.531271+00 2025-08-08 22:30:19.531282+00 f t SUBTOTAL 42000.00 1 5144 \N +196698 2025-08-08 22:30:19.53371+00 2025-08-08 22:30:19.533718+00 f t DESCUENTO 0.00 2 5144 \N +196699 2025-08-08 22:30:19.535974+00 2025-08-08 22:30:19.535983+00 f t TOTAL 42000.00 3 5144 \N +196700 2025-08-08 22:30:19.537787+00 2025-08-08 22:30:19.537795+00 f t ADELANTO 9500.00 4 5144 \N +196901 2025-08-09 00:46:49.363881+00 2025-08-09 00:46:49.363894+00 f t SUBTOTAL 42000.00 1 5151 \N +196902 2025-08-09 00:46:49.366957+00 2025-08-09 00:46:49.36697+00 f t DESCUENTO 0.00 2 5151 \N +196903 2025-08-09 00:46:49.369019+00 2025-08-09 00:46:49.369032+00 f t TOTAL 42000.00 3 5151 \N +196904 2025-08-09 00:46:49.371053+00 2025-08-09 00:46:49.371066+00 f t ADELANTO 9500.00 4 5151 \N +192709 2025-08-07 13:00:58.527316+00 2025-08-07 13:00:58.527343+00 f t SUBTOTAL 0.00 1 5046 \N +192710 2025-08-07 13:00:58.530188+00 2025-08-07 13:00:58.530202+00 f t DESCUENTO 0.00 2 5046 \N +192711 2025-08-07 13:00:58.532909+00 2025-08-07 13:00:58.532922+00 f t TOTAL 0.00 3 5046 \N +192712 2025-08-07 13:00:58.534821+00 2025-08-07 13:00:58.534831+00 f t ADELANTO 0.00 4 5046 \N +189973 2025-08-06 13:14:37.951046+00 2025-08-06 13:14:37.951059+00 f t SUBTOTAL 72000.00 1 4974 \N +189974 2025-08-06 13:14:37.95415+00 2025-08-06 13:14:37.954165+00 f t DESCUENTO 0.00 2 4974 \N +189975 2025-08-06 13:14:37.957115+00 2025-08-06 13:14:37.957129+00 f t TOTAL 72000.00 3 4974 \N +189976 2025-08-06 13:14:37.959518+00 2025-08-06 13:14:37.95953+00 f t ADELANTO 19000.00 4 4974 \N +197353 2025-08-09 03:28:09.251608+00 2025-08-09 03:28:09.251623+00 f t SUBTOTAL 0.00 1 5159 \N +197354 2025-08-09 03:28:09.254237+00 2025-08-09 03:28:09.254249+00 f t DESCUENTO 0.00 2 5159 \N +197355 2025-08-09 03:28:09.256049+00 2025-08-09 03:28:09.256058+00 f t TOTAL 0.00 3 5159 \N +197356 2025-08-09 03:28:09.257855+00 2025-08-09 03:28:09.257865+00 f t ADELANTO 0.00 4 5159 \N +197485 2025-08-09 07:54:16.161414+00 2025-08-09 07:54:16.161425+00 f t SUBTOTAL 50000.00 1 5162 \N +197486 2025-08-09 07:54:16.163605+00 2025-08-09 07:54:16.163614+00 f t DESCUENTO 0.00 2 5162 \N +197487 2025-08-09 07:54:16.165143+00 2025-08-09 07:54:16.165149+00 f t TOTAL 50000.00 3 5162 \N +197488 2025-08-09 07:54:16.166528+00 2025-08-09 07:54:16.166534+00 f t ADELANTO 10000.00 4 5162 \N +193305 2025-08-07 16:14:56.537761+00 2025-08-07 16:14:56.537773+00 f t SUBTOTAL 42000.00 1 5057 \N +193306 2025-08-07 16:14:56.539947+00 2025-08-07 16:14:56.539958+00 f t DESCUENTO 0.00 2 5057 \N +193307 2025-08-07 16:14:56.5414+00 2025-08-07 16:14:56.541408+00 f t TOTAL 42000.00 3 5057 \N +193308 2025-08-07 16:14:56.543175+00 2025-08-07 16:14:56.543185+00 f t ADELANTO 9500.00 4 5057 \N +193421 2025-08-07 17:21:14.685565+00 2025-08-07 17:21:14.685578+00 f t SUBTOTAL 84000.00 1 5060 \N +193422 2025-08-07 17:21:14.68748+00 2025-08-07 17:21:14.687491+00 f t DESCUENTO 0.00 2 5060 \N +193423 2025-08-07 17:21:14.689027+00 2025-08-07 17:21:14.689036+00 f t TOTAL 84000.00 3 5060 \N +193424 2025-08-07 17:21:14.690471+00 2025-08-07 17:21:14.690481+00 f t ADELANTO 19000.00 4 5060 \N +195113 2025-08-08 10:50:48.429833+00 2025-08-08 10:50:48.429846+00 f t SUBTOTAL 0.00 1 5098 \N +195114 2025-08-08 10:50:48.431783+00 2025-08-08 10:50:48.431792+00 f t DESCUENTO 0.00 2 5098 \N +195115 2025-08-08 10:50:48.433077+00 2025-08-08 10:50:48.433085+00 f t TOTAL 0.00 3 5098 \N +195116 2025-08-08 10:50:48.434404+00 2025-08-08 10:50:48.434411+00 f t ADELANTO 0.00 4 5098 \N +191093 2025-08-06 18:30:44.959329+00 2025-08-06 18:30:44.95934+00 f t SUBTOTAL 42000.00 1 4994 \N +191094 2025-08-06 18:30:44.961336+00 2025-08-06 18:30:44.961348+00 f t DESCUENTO 0.00 2 4994 \N +191095 2025-08-06 18:30:44.963056+00 2025-08-06 18:30:44.963065+00 f t TOTAL 42000.00 3 4994 \N +191096 2025-08-06 18:30:44.964792+00 2025-08-06 18:30:44.964799+00 f t ADELANTO 9500.00 4 4994 \N +195741 2025-08-08 14:59:06.129075+00 2025-08-08 14:59:06.12909+00 f t SUBTOTAL 0.00 1 5117 \N +195742 2025-08-08 14:59:06.131837+00 2025-08-08 14:59:06.13185+00 f t DESCUENTO 0.00 2 5117 \N +195743 2025-08-08 14:59:06.133904+00 2025-08-08 14:59:06.133917+00 f t TOTAL 0.00 3 5117 \N +195744 2025-08-08 14:59:06.135765+00 2025-08-08 14:59:06.135777+00 f t ADELANTO 0.00 4 5117 \N +190117 2025-08-06 13:45:26.977058+00 2025-08-06 13:45:26.977071+00 f t SUBTOTAL 64500.00 1 4976 \N +190118 2025-08-06 13:45:26.979105+00 2025-08-06 13:45:26.979115+00 f t DESCUENTO 0.00 2 4976 \N +190119 2025-08-06 13:45:26.980816+00 2025-08-06 13:45:26.980825+00 f t TOTAL 64500.00 3 4976 \N +190120 2025-08-06 13:45:26.982307+00 2025-08-06 13:45:26.982317+00 f t ADELANTO 17000.00 4 4976 \N +195865 2025-08-08 15:56:58.880463+00 2025-08-08 15:56:58.880472+00 f t SUBTOTAL 0.00 1 5124 \N +195866 2025-08-08 15:56:58.882413+00 2025-08-08 15:56:58.882421+00 f t DESCUENTO 0.00 2 5124 \N +195867 2025-08-08 15:56:58.884589+00 2025-08-08 15:56:58.884598+00 f t TOTAL 0.00 3 5124 \N +195868 2025-08-08 15:56:58.886354+00 2025-08-08 15:56:58.886363+00 f t ADELANTO 0.00 4 5124 \N +196073 2025-08-08 18:27:33.079069+00 2025-08-08 18:27:33.079082+00 f t SUBTOTAL 0.00 1 5131 \N +196074 2025-08-08 18:27:33.081029+00 2025-08-08 18:27:33.081041+00 f t DESCUENTO 0.00 2 5131 \N +196075 2025-08-08 18:27:33.08294+00 2025-08-08 18:27:33.08295+00 f t TOTAL 0.00 3 5131 \N +196076 2025-08-08 18:27:33.084571+00 2025-08-08 18:27:33.084581+00 f t ADELANTO 0.00 4 5131 \N +196189 2025-08-08 21:04:35.816259+00 2025-08-08 21:04:35.816273+00 f t SUBTOTAL 0.00 1 5138 \N +196190 2025-08-08 21:04:35.818786+00 2025-08-08 21:04:35.818796+00 f t DESCUENTO 0.00 2 5138 \N +196191 2025-08-08 21:04:35.820881+00 2025-08-08 21:04:35.820893+00 f t TOTAL 0.00 3 5138 \N +196192 2025-08-08 21:04:35.822631+00 2025-08-08 21:04:35.822643+00 f t ADELANTO 0.00 4 5138 \N +190173 2025-08-06 14:08:20.682279+00 2025-08-06 14:08:20.682288+00 f t SUBTOTAL 117000.00 1 4977 \N +190174 2025-08-06 14:08:20.684167+00 2025-08-06 14:08:20.684175+00 f t DESCUENTO 0.00 2 4977 \N +190175 2025-08-06 14:08:20.685605+00 2025-08-06 14:08:20.685614+00 f t TOTAL 117000.00 3 4977 \N +190176 2025-08-06 14:08:20.686991+00 2025-08-06 14:08:20.686999+00 f t ADELANTO 24500.00 4 4977 \N +192189 2025-08-07 03:30:57.116085+00 2025-08-07 03:30:57.116097+00 f t SUBTOTAL 42000.00 1 5031 \N +192190 2025-08-07 03:30:57.11827+00 2025-08-07 03:30:57.11828+00 f t DESCUENTO 0.00 2 5031 \N +192191 2025-08-07 03:30:57.120104+00 2025-08-07 03:30:57.12012+00 f t TOTAL 42000.00 3 5031 \N +192192 2025-08-07 03:30:57.12234+00 2025-08-07 03:30:57.122353+00 f t ADELANTO 9500.00 4 5031 \N +192237 2025-08-07 03:35:09.063415+00 2025-08-07 03:35:09.063428+00 f t SUBTOTAL 50000.00 1 5032 \N +192238 2025-08-07 03:35:09.067323+00 2025-08-07 03:35:09.067336+00 f t DESCUENTO 0.00 2 5032 \N +192239 2025-08-07 03:35:09.071447+00 2025-08-07 03:35:09.071461+00 f t TOTAL 50000.00 3 5032 \N +192240 2025-08-07 03:35:09.074105+00 2025-08-07 03:35:09.074119+00 f t ADELANTO 10000.00 4 5032 \N +192481 2025-08-07 12:25:56.673211+00 2025-08-07 12:25:56.673221+00 f t SUBTOTAL 0.00 1 5039 \N +192482 2025-08-07 12:25:56.675779+00 2025-08-07 12:25:56.675788+00 f t DESCUENTO 0.00 2 5039 \N +192483 2025-08-07 12:25:56.677379+00 2025-08-07 12:25:56.677386+00 f t TOTAL 0.00 3 5039 \N +192484 2025-08-07 12:25:56.678662+00 2025-08-07 12:25:56.678669+00 f t ADELANTO 0.00 4 5039 \N +196705 2025-08-08 23:10:15.574735+00 2025-08-08 23:10:15.57475+00 f t SUBTOTAL 0.00 1 5145 \N +196706 2025-08-08 23:10:15.577192+00 2025-08-08 23:10:15.577207+00 f t DESCUENTO 0.00 2 5145 \N +196707 2025-08-08 23:10:15.579299+00 2025-08-08 23:10:15.579312+00 f t TOTAL 0.00 3 5145 \N +196708 2025-08-08 23:10:15.582008+00 2025-08-08 23:10:15.582022+00 f t ADELANTO 0.00 4 5145 \N +192717 2025-08-07 13:12:26.95323+00 2025-08-07 13:12:26.953239+00 f t SUBTOTAL 0.00 1 5047 \N +192718 2025-08-07 13:12:26.955024+00 2025-08-07 13:12:26.955036+00 f t DESCUENTO 0.00 2 5047 \N +190237 2025-08-06 14:31:42.881426+00 2025-08-06 14:31:42.881436+00 f t SUBTOTAL 0.00 1 4975 \N +190238 2025-08-06 14:31:42.883626+00 2025-08-06 14:31:42.883637+00 f t DESCUENTO 0.00 2 4975 \N +190239 2025-08-06 14:31:42.885009+00 2025-08-06 14:31:42.885016+00 f t TOTAL 0.00 3 4975 \N +190240 2025-08-06 14:31:42.886317+00 2025-08-06 14:31:42.886326+00 f t ADELANTO 0.00 4 4975 \N +192719 2025-08-07 13:12:26.956755+00 2025-08-07 13:12:26.956765+00 f t TOTAL 0.00 3 5047 \N +192720 2025-08-07 13:12:26.958376+00 2025-08-07 13:12:26.958387+00 f t ADELANTO 0.00 4 5047 \N +196909 2025-08-09 00:46:56.370161+00 2025-08-09 00:46:56.370171+00 f t SUBTOTAL 0.00 1 5152 \N +196910 2025-08-09 00:46:56.371796+00 2025-08-09 00:46:56.371806+00 f t DESCUENTO 0.00 2 5152 \N +196911 2025-08-09 00:46:56.373402+00 2025-08-09 00:46:56.373411+00 f t TOTAL 0.00 3 5152 \N +196912 2025-08-09 00:46:56.375046+00 2025-08-09 00:46:56.375053+00 f t ADELANTO 0.00 4 5152 \N +197053 2025-08-09 01:25:57.160862+00 2025-08-09 01:25:57.160873+00 f t SUBTOTAL 0.00 1 5155 \N +197054 2025-08-09 01:25:57.163281+00 2025-08-09 01:25:57.16329+00 f t DESCUENTO 0.00 2 5155 \N +197055 2025-08-09 01:25:57.165207+00 2025-08-09 01:25:57.165215+00 f t TOTAL 0.00 3 5155 \N +197056 2025-08-09 01:25:57.16692+00 2025-08-09 01:25:57.166928+00 f t ADELANTO 0.00 4 5155 \N +197101 2025-08-09 01:27:39.839043+00 2025-08-09 01:27:39.839053+00 f t SUBTOTAL 50000.00 1 5156 \N +197102 2025-08-09 01:27:39.841965+00 2025-08-09 01:27:39.841976+00 f t DESCUENTO 0.00 2 5156 \N +197103 2025-08-09 01:27:39.843966+00 2025-08-09 01:27:39.843977+00 f t TOTAL 50000.00 3 5156 \N +197104 2025-08-09 01:27:39.845845+00 2025-08-09 01:27:39.845856+00 f t ADELANTO 10000.00 4 5156 \N +197149 2025-08-09 01:32:18.591092+00 2025-08-09 01:32:18.591104+00 f t SUBTOTAL 72000.00 1 5157 \N +197150 2025-08-09 01:32:18.593103+00 2025-08-09 01:32:18.593115+00 f t DESCUENTO 0.00 2 5157 \N +190269 2025-08-06 14:33:07.720762+00 2025-08-06 14:33:07.720773+00 f t SUBTOTAL 42000.00 1 4978 \N +190270 2025-08-06 14:33:07.723404+00 2025-08-06 14:33:07.723416+00 f t DESCUENTO 0.00 2 4978 \N +190271 2025-08-06 14:33:07.725547+00 2025-08-06 14:33:07.725558+00 f t TOTAL 42000.00 3 4978 \N +190272 2025-08-06 14:33:07.727115+00 2025-08-06 14:33:07.727124+00 f t ADELANTO 9500.00 4 4978 \N +193313 2025-08-07 16:57:28.882301+00 2025-08-07 16:57:28.882311+00 f t SUBTOTAL 0.00 1 5059 \N +193314 2025-08-07 16:57:28.883896+00 2025-08-07 16:57:28.883908+00 f t DESCUENTO 0.00 2 5059 \N +190309 2025-08-06 15:17:15.379767+00 2025-08-06 15:17:15.379778+00 f t SUBTOTAL 64500.00 1 4979 \N +190310 2025-08-06 15:17:15.382177+00 2025-08-06 15:17:15.38219+00 f t DESCUENTO 0.00 2 4979 \N +190311 2025-08-06 15:17:15.384201+00 2025-08-06 15:17:15.384212+00 f t TOTAL 64500.00 3 4979 \N +190312 2025-08-06 15:17:15.385945+00 2025-08-06 15:17:15.385954+00 f t ADELANTO 17000.00 4 4979 \N +193315 2025-08-07 16:57:28.885343+00 2025-08-07 16:57:28.885351+00 f t TOTAL 0.00 3 5059 \N +193316 2025-08-07 16:57:28.886614+00 2025-08-07 16:57:28.886621+00 f t ADELANTO 0.00 4 5059 \N +219317 2025-08-17 18:16:41.029974+00 2025-08-17 18:16:41.029983+00 f t SUBTOTAL 50000.00 1 5700 \N +219318 2025-08-17 18:16:41.032197+00 2025-08-17 18:16:41.032207+00 f t DESCUENTO 0.00 2 5700 \N +193489 2025-08-07 17:39:02.846331+00 2025-08-07 17:39:02.846346+00 f t SUBTOTAL 49500.00 1 5062 \N +193490 2025-08-07 17:39:02.856291+00 2025-08-07 17:39:02.856305+00 f t DESCUENTO 0.00 2 5062 \N +193491 2025-08-07 17:39:02.85945+00 2025-08-07 17:39:02.859464+00 f t TOTAL 49500.00 3 5062 \N +193492 2025-08-07 17:39:02.86225+00 2025-08-07 17:39:02.862263+00 f t ADELANTO 11500.00 4 5062 \N +195121 2025-08-08 12:02:07.234108+00 2025-08-08 12:02:07.234121+00 f t SUBTOTAL 0.00 1 5099 \N +195122 2025-08-08 12:02:07.236278+00 2025-08-08 12:02:07.23629+00 f t DESCUENTO 0.00 2 5099 \N +193497 2025-08-07 17:42:25.191956+00 2025-08-07 17:42:25.191968+00 f t SUBTOTAL 0.00 1 5063 \N +193498 2025-08-07 17:42:25.193546+00 2025-08-07 17:42:25.193553+00 f t DESCUENTO 0.00 2 5063 \N +193499 2025-08-07 17:42:25.194761+00 2025-08-07 17:42:25.194766+00 f t TOTAL 0.00 3 5063 \N +193500 2025-08-07 17:42:25.195875+00 2025-08-07 17:42:25.195881+00 f t ADELANTO 0.00 4 5063 \N +195123 2025-08-08 12:02:07.238071+00 2025-08-08 12:02:07.23808+00 f t TOTAL 0.00 3 5099 \N +195124 2025-08-08 12:02:07.239768+00 2025-08-08 12:02:07.23978+00 f t ADELANTO 0.00 4 5099 \N +195201 2025-08-08 12:50:01.495975+00 2025-08-08 12:50:01.495986+00 f t SUBTOTAL 50000.00 1 5102 \N +195202 2025-08-08 12:50:01.499033+00 2025-08-08 12:50:01.499046+00 f t DESCUENTO 0.00 2 5102 \N +195203 2025-08-08 12:50:01.501754+00 2025-08-08 12:50:01.501766+00 f t TOTAL 50000.00 3 5102 \N +195204 2025-08-08 12:50:01.508512+00 2025-08-08 12:50:01.508526+00 f t ADELANTO 10000.00 4 5102 \N +199809 2025-08-10 16:52:21.663594+00 2025-08-10 16:52:21.663608+00 f t SUBTOTAL 0.00 1 5217 \N +199810 2025-08-10 16:52:21.665571+00 2025-08-10 16:52:21.665582+00 f t DESCUENTO 0.00 2 5217 \N +199811 2025-08-10 16:52:21.66841+00 2025-08-10 16:52:21.668421+00 f t TOTAL 0.00 3 5217 \N +199812 2025-08-10 16:52:21.670256+00 2025-08-10 16:52:21.670265+00 f t ADELANTO 0.00 4 5217 \N +193529 2025-08-07 17:44:18.559855+00 2025-08-07 17:44:18.559869+00 f t SUBTOTAL 42000.00 1 5064 \N +193530 2025-08-07 17:44:18.562051+00 2025-08-07 17:44:18.562061+00 f t DESCUENTO 0.00 2 5064 \N +193531 2025-08-07 17:44:18.563608+00 2025-08-07 17:44:18.563617+00 f t TOTAL 42000.00 3 5064 \N +193532 2025-08-07 17:44:18.566+00 2025-08-07 17:44:18.566009+00 f t ADELANTO 9500.00 4 5064 \N +193537 2025-08-07 17:44:57.848445+00 2025-08-07 17:44:57.848455+00 f t SUBTOTAL 0.00 1 5065 \N +193538 2025-08-07 17:44:57.850099+00 2025-08-07 17:44:57.85011+00 f t DESCUENTO 0.00 2 5065 \N +193539 2025-08-07 17:44:57.851804+00 2025-08-07 17:44:57.851814+00 f t TOTAL 0.00 3 5065 \N +193540 2025-08-07 17:44:57.853492+00 2025-08-07 17:44:57.853501+00 f t ADELANTO 0.00 4 5065 \N +195689 2025-08-08 14:50:52.875428+00 2025-08-08 14:50:52.875437+00 f t SUBTOTAL 50000.00 1 5115 \N +195690 2025-08-08 14:50:52.877527+00 2025-08-08 14:50:52.877536+00 f t DESCUENTO 0.00 2 5115 \N +195691 2025-08-08 14:50:52.879232+00 2025-08-08 14:50:52.87924+00 f t TOTAL 50000.00 3 5115 \N +195692 2025-08-08 14:50:52.880849+00 2025-08-08 14:50:52.880859+00 f t ADELANTO 10000.00 4 5115 \N +200305 2025-08-10 21:10:20.572768+00 2025-08-10 21:10:20.572781+00 f t SUBTOTAL 49500.00 1 5229 \N +200306 2025-08-10 21:10:20.580141+00 2025-08-10 21:10:20.58015+00 f t DESCUENTO 0.00 2 5229 \N +200307 2025-08-10 21:10:20.582102+00 2025-08-10 21:10:20.582113+00 f t TOTAL 49500.00 3 5229 \N +200308 2025-08-10 21:10:20.583619+00 2025-08-10 21:10:20.583627+00 f t ADELANTO 11500.00 4 5229 \N +193569 2025-08-07 18:02:17.525533+00 2025-08-07 18:02:17.525543+00 f t SUBTOTAL 42000.00 1 5066 \N +193570 2025-08-07 18:02:17.527846+00 2025-08-07 18:02:17.527854+00 f t DESCUENTO 0.00 2 5066 \N +193571 2025-08-07 18:02:17.529817+00 2025-08-07 18:02:17.529828+00 f t TOTAL 42000.00 3 5066 \N +193572 2025-08-07 18:02:17.531757+00 2025-08-07 18:02:17.531767+00 f t ADELANTO 9500.00 4 5066 \N +195973 2025-08-08 16:22:01.513818+00 2025-08-08 16:22:01.51383+00 f t SUBTOTAL 64500.00 1 5127 \N +195974 2025-08-08 16:22:01.520546+00 2025-08-08 16:22:01.520557+00 f t DESCUENTO 0.00 2 5127 \N +195975 2025-08-08 16:22:01.522896+00 2025-08-08 16:22:01.522908+00 f t TOTAL 64500.00 3 5127 \N +195976 2025-08-08 16:22:01.525415+00 2025-08-08 16:22:01.525428+00 f t ADELANTO 17000.00 4 5127 \N +200637 2025-08-10 23:17:37.710958+00 2025-08-10 23:17:37.710972+00 f t SUBTOTAL 0.00 1 5237 \N +200638 2025-08-10 23:17:37.714174+00 2025-08-10 23:17:37.714188+00 f t DESCUENTO 0.00 2 5237 \N +200639 2025-08-10 23:17:37.716476+00 2025-08-10 23:17:37.716488+00 f t TOTAL 0.00 3 5237 \N +200640 2025-08-10 23:17:37.718518+00 2025-08-10 23:17:37.718531+00 f t ADELANTO 0.00 4 5237 \N +196081 2025-08-08 18:33:59.369143+00 2025-08-08 18:33:59.36925+00 f t SUBTOTAL 0.00 1 5132 \N +196082 2025-08-08 18:33:59.370893+00 2025-08-08 18:33:59.370903+00 f t DESCUENTO 0.00 2 5132 \N +196083 2025-08-08 18:33:59.372325+00 2025-08-08 18:33:59.372332+00 f t TOTAL 0.00 3 5132 \N +196084 2025-08-08 18:33:59.373728+00 2025-08-08 18:33:59.373735+00 f t ADELANTO 0.00 4 5132 \N +193597 2025-08-07 18:05:53.289606+00 2025-08-07 18:05:53.289618+00 f t SUBTOTAL 50000.00 1 5067 \N +193598 2025-08-07 18:05:53.292554+00 2025-08-07 18:05:53.292567+00 f t DESCUENTO 0.00 2 5067 \N +193599 2025-08-07 18:05:53.297448+00 2025-08-07 18:05:53.297459+00 f t TOTAL 50000.00 3 5067 \N +193600 2025-08-07 18:05:53.300104+00 2025-08-07 18:05:53.300115+00 f t ADELANTO 10000.00 4 5067 \N +196289 2025-08-08 21:10:37.540556+00 2025-08-08 21:10:37.540565+00 f t SUBTOTAL 42000.00 1 5140 \N +196290 2025-08-08 21:10:37.542214+00 2025-08-08 21:10:37.542223+00 f t DESCUENTO 0.00 2 5140 \N +196291 2025-08-08 21:10:37.543522+00 2025-08-08 21:10:37.54353+00 f t TOTAL 42000.00 3 5140 \N +196292 2025-08-08 21:10:37.545033+00 2025-08-08 21:10:37.54504+00 f t ADELANTO 9500.00 4 5140 \N +193641 2025-08-07 18:53:39.481458+00 2025-08-07 18:53:39.48147+00 f t SUBTOTAL 42000.00 1 5068 \N +193642 2025-08-07 18:53:39.48326+00 2025-08-07 18:53:39.483267+00 f t DESCUENTO 0.00 2 5068 \N +193643 2025-08-07 18:53:39.484531+00 2025-08-07 18:53:39.48454+00 f t TOTAL 42000.00 3 5068 \N +193644 2025-08-07 18:53:39.485643+00 2025-08-07 18:53:39.485649+00 f t ADELANTO 9500.00 4 5068 \N +196917 2025-08-09 01:00:16.227597+00 2025-08-09 01:00:16.227608+00 f t SUBTOTAL 0.00 1 5153 \N +196918 2025-08-09 01:00:16.230605+00 2025-08-09 01:00:16.23062+00 f t DESCUENTO 0.00 2 5153 \N +196919 2025-08-09 01:00:16.233657+00 2025-08-09 01:00:16.233669+00 f t TOTAL 0.00 3 5153 \N +196920 2025-08-09 01:00:16.235821+00 2025-08-09 01:00:16.235835+00 f t ADELANTO 0.00 4 5153 \N +193681 2025-08-07 19:57:18.411411+00 2025-08-07 19:57:18.411423+00 f t SUBTOTAL 50000.00 1 5069 \N +193682 2025-08-07 19:57:18.413354+00 2025-08-07 19:57:18.413364+00 f t DESCUENTO 0.00 2 5069 \N +193683 2025-08-07 19:57:18.414873+00 2025-08-07 19:57:18.414881+00 f t TOTAL 50000.00 3 5069 \N +193684 2025-08-07 19:57:18.416256+00 2025-08-07 19:57:18.416263+00 f t ADELANTO 10000.00 4 5069 \N +197151 2025-08-09 01:32:18.594869+00 2025-08-09 01:32:18.594881+00 f t TOTAL 72000.00 3 5157 \N +197152 2025-08-09 01:32:18.597207+00 2025-08-09 01:32:18.597218+00 f t ADELANTO 19000.00 4 5157 \N +197577 2025-08-09 10:14:14.143815+00 2025-08-09 10:14:14.143824+00 f t SUBTOTAL 50000.00 1 5164 \N +197578 2025-08-09 10:14:14.145767+00 2025-08-09 10:14:14.145775+00 f t DESCUENTO 0.00 2 5164 \N +197579 2025-08-09 10:14:14.147307+00 2025-08-09 10:14:14.147315+00 f t TOTAL 50000.00 3 5164 \N +197580 2025-08-09 10:14:14.148782+00 2025-08-09 10:14:14.148789+00 f t ADELANTO 10000.00 4 5164 \N +219209 2025-08-17 17:57:36.813324+00 2025-08-17 17:57:36.813334+00 f t SUBTOTAL 42000.00 1 5698 \N +204477 2025-08-12 13:15:33.027031+00 2025-08-12 13:15:33.027045+00 f t SUBTOTAL 0.00 1 5337 \N +204478 2025-08-12 13:15:33.035222+00 2025-08-12 13:15:33.035234+00 f t DESCUENTO 0.00 2 5337 \N +204479 2025-08-12 13:15:33.039369+00 2025-08-12 13:15:33.039382+00 f t TOTAL 0.00 3 5337 \N +204480 2025-08-12 13:15:33.04338+00 2025-08-12 13:15:33.043393+00 f t ADELANTO 0.00 4 5337 \N +195209 2025-08-08 13:02:39.571492+00 2025-08-08 13:02:39.571505+00 f t SUBTOTAL 0.00 1 5103 \N +195210 2025-08-08 13:02:39.573564+00 2025-08-08 13:02:39.573575+00 f t DESCUENTO 0.00 2 5103 \N +195211 2025-08-08 13:02:39.575295+00 2025-08-08 13:02:39.575305+00 f t TOTAL 0.00 3 5103 \N +195212 2025-08-08 13:02:39.577105+00 2025-08-08 13:02:39.577117+00 f t ADELANTO 0.00 4 5103 \N +195341 2025-08-08 14:06:59.487305+00 2025-08-08 14:06:59.487317+00 f t SUBTOTAL 50000.00 1 5107 \N +195342 2025-08-08 14:06:59.489603+00 2025-08-08 14:06:59.489615+00 f t DESCUENTO 0.00 2 5107 \N +195343 2025-08-08 14:06:59.491395+00 2025-08-08 14:06:59.491405+00 f t TOTAL 50000.00 3 5107 \N +195344 2025-08-08 14:06:59.493555+00 2025-08-08 14:06:59.493564+00 f t ADELANTO 10000.00 4 5107 \N +195405 2025-08-08 14:14:36.095786+00 2025-08-08 14:14:36.095795+00 f t SUBTOTAL 50000.00 1 5109 \N +195406 2025-08-08 14:14:36.098323+00 2025-08-08 14:14:36.098335+00 f t DESCUENTO 0.00 2 5109 \N +195407 2025-08-08 14:14:36.099896+00 2025-08-08 14:14:36.099903+00 f t TOTAL 50000.00 3 5109 \N +195408 2025-08-08 14:14:36.101268+00 2025-08-08 14:14:36.101274+00 f t ADELANTO 10000.00 4 5109 \N +205053 2025-08-12 17:15:53.97838+00 2025-08-12 17:15:53.97839+00 f t SUBTOTAL 49500.00 1 5350 \N +205054 2025-08-12 17:15:53.98229+00 2025-08-12 17:15:53.9823+00 f t DESCUENTO 0.00 2 5350 \N +205055 2025-08-12 17:15:53.984972+00 2025-08-12 17:15:53.984986+00 f t TOTAL 49500.00 3 5350 \N +195697 2025-08-08 14:54:31.392337+00 2025-08-08 14:54:31.392347+00 f t SUBTOTAL 0.00 1 5116 \N +195698 2025-08-08 14:54:31.393867+00 2025-08-08 14:54:31.393876+00 f t DESCUENTO 0.00 2 5116 \N +195699 2025-08-08 14:54:31.39521+00 2025-08-08 14:54:31.395217+00 f t TOTAL 0.00 3 5116 \N +195700 2025-08-08 14:54:31.396308+00 2025-08-08 14:54:31.396314+00 f t ADELANTO 0.00 4 5116 \N +205056 2025-08-12 17:15:53.987557+00 2025-08-12 17:15:53.987572+00 f t ADELANTO 11500.00 4 5350 \N +205129 2025-08-12 18:20:06.945873+00 2025-08-12 18:20:06.945887+00 f t SUBTOTAL 50000.00 1 5353 \N +205130 2025-08-12 18:20:06.957304+00 2025-08-12 18:20:06.957318+00 f t DESCUENTO 0.00 2 5353 \N +205131 2025-08-12 18:20:06.96027+00 2025-08-12 18:20:06.960297+00 f t TOTAL 50000.00 3 5353 \N +205132 2025-08-12 18:20:06.963098+00 2025-08-12 18:20:06.963114+00 f t ADELANTO 10000.00 4 5353 \N +201041 2025-08-11 12:02:58.323279+00 2025-08-11 12:02:58.323294+00 f t SUBTOTAL 27500.00 1 5246 \N +201042 2025-08-11 12:02:58.327054+00 2025-08-11 12:02:58.327068+00 f t DESCUENTO 0.00 2 5246 \N +201043 2025-08-11 12:02:58.329842+00 2025-08-11 12:02:58.329854+00 f t TOTAL 27500.00 3 5246 \N +201044 2025-08-11 12:02:58.332072+00 2025-08-11 12:02:58.332084+00 f t ADELANTO 27500.00 4 5246 \N +193909 2025-08-07 20:23:58.85091+00 2025-08-07 20:23:58.850918+00 f t SUBTOTAL 189700.00 1 5070 \N +193910 2025-08-07 20:23:58.852634+00 2025-08-07 20:23:58.852641+00 f t DESCUENTO 0.00 2 5070 \N +193911 2025-08-07 20:23:58.855117+00 2025-08-07 20:23:58.855125+00 f t TOTAL 189700.00 3 5070 \N +193912 2025-08-07 20:23:58.856728+00 2025-08-07 20:23:58.856736+00 f t ADELANTO 46700.00 4 5070 \N +196769 2025-08-09 00:22:53.856661+00 2025-08-09 00:22:53.856672+00 f t SUBTOTAL 0.00 1 5148 \N +196770 2025-08-09 00:22:53.858937+00 2025-08-09 00:22:53.858952+00 f t DESCUENTO 0.00 2 5148 \N +196771 2025-08-09 00:22:53.860514+00 2025-08-09 00:22:53.860521+00 f t TOTAL 0.00 3 5148 \N +196772 2025-08-09 00:22:53.862096+00 2025-08-09 00:22:53.862103+00 f t ADELANTO 0.00 4 5148 \N +193937 2025-08-07 21:01:28.516626+00 2025-08-07 21:01:28.516639+00 f t SUBTOTAL 42000.00 1 5071 \N +193938 2025-08-07 21:01:28.518847+00 2025-08-07 21:01:28.518858+00 f t DESCUENTO 0.00 2 5071 \N +193939 2025-08-07 21:01:28.52066+00 2025-08-07 21:01:28.52067+00 f t TOTAL 42000.00 3 5071 \N +193940 2025-08-07 21:01:28.522459+00 2025-08-07 21:01:28.522468+00 f t ADELANTO 9500.00 4 5071 \N +201770 2025-08-11 16:18:14.18312+00 2025-08-11 16:18:14.183151+00 f t DESCUENTO 0.00 2 5262 \N +201771 2025-08-11 16:18:14.185474+00 2025-08-11 16:18:14.185483+00 f t TOTAL 68000.00 3 5262 \N +201772 2025-08-11 16:18:14.18747+00 2025-08-11 16:18:14.18748+00 f t ADELANTO 13000.00 4 5262 \N +201809 2025-08-11 16:20:10.182624+00 2025-08-11 16:20:10.18264+00 f t SUBTOTAL 50000.00 1 5263 \N +201810 2025-08-11 16:20:10.186505+00 2025-08-11 16:20:10.18652+00 f t DESCUENTO 0.00 2 5263 \N +193973 2025-08-07 21:13:54.067548+00 2025-08-07 21:13:54.067568+00 f t SUBTOTAL 0.00 1 5072 \N +193974 2025-08-07 21:13:54.070091+00 2025-08-07 21:13:54.070105+00 f t DESCUENTO 0.00 2 5072 \N +193975 2025-08-07 21:13:54.07201+00 2025-08-07 21:13:54.072021+00 f t TOTAL 0.00 3 5072 \N +193976 2025-08-07 21:13:54.073629+00 2025-08-07 21:13:54.073639+00 f t ADELANTO 0.00 4 5072 \N +201811 2025-08-11 16:20:10.196508+00 2025-08-11 16:20:10.196524+00 f t TOTAL 50000.00 3 5263 \N +201812 2025-08-11 16:20:10.20019+00 2025-08-11 16:20:10.200205+00 f t ADELANTO 10000.00 4 5263 \N +193981 2025-08-07 22:36:16.470625+00 2025-08-07 22:36:16.470635+00 f t SUBTOTAL 0.00 1 5073 \N +193982 2025-08-07 22:36:16.472458+00 2025-08-07 22:36:16.472468+00 f t DESCUENTO 0.00 2 5073 \N +193983 2025-08-07 22:36:16.47404+00 2025-08-07 22:36:16.474048+00 f t TOTAL 0.00 3 5073 \N +193984 2025-08-07 22:36:16.475477+00 2025-08-07 22:36:16.475487+00 f t ADELANTO 0.00 4 5073 \N +202001 2025-08-11 18:22:31.652007+00 2025-08-11 18:22:31.652037+00 f t SUBTOTAL 0.00 1 5271 \N +202002 2025-08-11 18:22:31.654377+00 2025-08-11 18:22:31.654389+00 f t DESCUENTO 0.00 2 5271 \N +202003 2025-08-11 18:22:31.658715+00 2025-08-11 18:22:31.658727+00 f t TOTAL 0.00 3 5271 \N +202004 2025-08-11 18:22:31.663016+00 2025-08-11 18:22:31.66303+00 f t ADELANTO 0.00 4 5271 \N +194025 2025-08-07 23:16:48.696313+00 2025-08-07 23:16:48.696321+00 f t SUBTOTAL 42000.00 1 5074 \N +194026 2025-08-07 23:16:48.698283+00 2025-08-07 23:16:48.698292+00 f t DESCUENTO 0.00 2 5074 \N +194027 2025-08-07 23:16:48.70054+00 2025-08-07 23:16:48.700551+00 f t TOTAL 42000.00 3 5074 \N +194028 2025-08-07 23:16:48.702403+00 2025-08-07 23:16:48.702415+00 f t ADELANTO 9500.00 4 5074 \N +202329 2025-08-11 20:43:50.885035+00 2025-08-11 20:43:50.885048+00 f t SUBTOTAL 0.00 1 5283 \N +202330 2025-08-11 20:43:50.887308+00 2025-08-11 20:43:50.887316+00 f t DESCUENTO 0.00 2 5283 \N +202331 2025-08-11 20:43:50.889567+00 2025-08-11 20:43:50.889579+00 f t TOTAL 0.00 3 5283 \N +202332 2025-08-11 20:43:50.891643+00 2025-08-11 20:43:50.891655+00 f t ADELANTO 0.00 4 5283 \N +202385 2025-08-11 20:58:20.139239+00 2025-08-11 20:58:20.13925+00 f t SUBTOTAL 0.00 1 5288 \N +202386 2025-08-11 20:58:20.15147+00 2025-08-11 20:58:20.15148+00 f t DESCUENTO 0.00 2 5288 \N +202387 2025-08-11 20:58:20.157833+00 2025-08-11 20:58:20.157843+00 f t TOTAL 0.00 3 5288 \N +202388 2025-08-11 20:58:20.16057+00 2025-08-11 20:58:20.160581+00 f t ADELANTO 0.00 4 5288 \N +202517 2025-08-11 22:20:28.799639+00 2025-08-11 22:20:28.799653+00 f t SUBTOTAL 0.00 1 5294 \N +202518 2025-08-11 22:20:28.80201+00 2025-08-11 22:20:28.802024+00 f t DESCUENTO 0.00 2 5294 \N +202519 2025-08-11 22:20:28.804559+00 2025-08-11 22:20:28.804575+00 f t TOTAL 0.00 3 5294 \N +202520 2025-08-11 22:20:28.807077+00 2025-08-11 22:20:28.807086+00 f t ADELANTO 0.00 4 5294 \N +194081 2025-08-08 00:15:28.636929+00 2025-08-08 00:15:28.63694+00 f t SUBTOTAL 64500.00 1 5075 \N +194082 2025-08-08 00:15:28.639103+00 2025-08-08 00:15:28.639118+00 f t DESCUENTO 0.00 2 5075 \N +194083 2025-08-08 00:15:28.641161+00 2025-08-08 00:15:28.641171+00 f t TOTAL 64500.00 3 5075 \N +194084 2025-08-08 00:15:28.642838+00 2025-08-08 00:15:28.642847+00 f t ADELANTO 17000.00 4 5075 \N +194089 2025-08-08 00:24:18.694633+00 2025-08-08 00:24:18.694647+00 f t SUBTOTAL 0.00 1 5076 \N +194090 2025-08-08 00:24:18.696686+00 2025-08-08 00:24:18.696698+00 f t DESCUENTO 0.00 2 5076 \N +194091 2025-08-08 00:24:18.698175+00 2025-08-08 00:24:18.698184+00 f t TOTAL 0.00 3 5076 \N +194092 2025-08-08 00:24:18.699811+00 2025-08-08 00:24:18.699821+00 f t ADELANTO 0.00 4 5076 \N +205061 2025-08-12 18:09:57.825757+00 2025-08-12 18:09:57.82577+00 f t SUBTOTAL 0.00 1 5351 \N +205062 2025-08-12 18:09:57.828264+00 2025-08-12 18:09:57.828276+00 f t DESCUENTO 0.00 2 5351 \N +205063 2025-08-12 18:09:57.83286+00 2025-08-12 18:09:57.83287+00 f t TOTAL 0.00 3 5351 \N +205064 2025-08-12 18:09:57.839721+00 2025-08-12 18:09:57.839735+00 f t ADELANTO 0.00 4 5351 \N +194125 2025-08-08 00:28:55.461176+00 2025-08-08 00:28:55.461185+00 f t SUBTOTAL 64500.00 1 5077 \N +194126 2025-08-08 00:28:55.462709+00 2025-08-08 00:28:55.462715+00 f t DESCUENTO 0.00 2 5077 \N +194127 2025-08-08 00:28:55.463896+00 2025-08-08 00:28:55.463901+00 f t TOTAL 64500.00 3 5077 \N +194128 2025-08-08 00:28:55.464801+00 2025-08-08 00:28:55.464806+00 f t ADELANTO 17000.00 4 5077 \N +205137 2025-08-12 18:22:16.854737+00 2025-08-12 18:22:16.854751+00 f t SUBTOTAL 0.00 1 5354 \N +205138 2025-08-12 18:22:16.857361+00 2025-08-12 18:22:16.857382+00 f t DESCUENTO 0.00 2 5354 \N +205139 2025-08-12 18:22:16.859424+00 2025-08-12 18:22:16.859436+00 f t TOTAL 0.00 3 5354 \N +205140 2025-08-12 18:22:16.861422+00 2025-08-12 18:22:16.861435+00 f t ADELANTO 0.00 4 5354 \N +196033 2025-08-08 17:11:45.800184+00 2025-08-08 17:11:45.800194+00 f t SUBTOTAL 49500.00 1 5129 \N +196034 2025-08-08 17:11:45.802448+00 2025-08-08 17:11:45.802459+00 f t DESCUENTO 0.00 2 5129 \N +196035 2025-08-08 17:11:45.810862+00 2025-08-08 17:11:45.810874+00 f t TOTAL 49500.00 3 5129 \N +196036 2025-08-08 17:11:45.81518+00 2025-08-08 17:11:45.815193+00 f t ADELANTO 11500.00 4 5129 \N +196345 2025-08-08 21:15:34.32013+00 2025-08-08 21:15:34.320139+00 f t SUBTOTAL 0.00 1 5141 \N +196346 2025-08-08 21:15:34.322115+00 2025-08-08 21:15:34.322124+00 f t DESCUENTO 0.00 2 5141 \N +196347 2025-08-08 21:15:34.323517+00 2025-08-08 21:15:34.323525+00 f t TOTAL 0.00 3 5141 \N +196348 2025-08-08 21:15:34.324645+00 2025-08-08 21:15:34.324651+00 f t ADELANTO 0.00 4 5141 \N +194185 2025-08-08 00:46:54.195204+00 2025-08-08 00:46:54.195215+00 f t SUBTOTAL 42000.00 1 5078 \N +194186 2025-08-08 00:46:54.19702+00 2025-08-08 00:46:54.197029+00 f t DESCUENTO 0.00 2 5078 \N +194187 2025-08-08 00:46:54.198398+00 2025-08-08 00:46:54.198405+00 f t TOTAL 42000.00 3 5078 \N +194188 2025-08-08 00:46:54.199785+00 2025-08-08 00:46:54.199793+00 f t ADELANTO 9500.00 4 5078 \N +205809 2025-08-13 00:16:20.022829+00 2025-08-13 00:16:20.022842+00 f t SUBTOTAL 64500.00 1 5374 \N +205810 2025-08-13 00:16:20.025916+00 2025-08-13 00:16:20.025926+00 f t DESCUENTO 0.00 2 5374 \N +205811 2025-08-13 00:16:20.028205+00 2025-08-13 00:16:20.028217+00 f t TOTAL 64500.00 3 5374 \N +205812 2025-08-13 00:16:20.030351+00 2025-08-13 00:16:20.030361+00 f t ADELANTO 17000.00 4 5374 \N +205921 2025-08-13 00:32:50.551386+00 2025-08-13 00:32:50.551396+00 f t SUBTOTAL 0.00 1 5376 \N +205922 2025-08-13 00:32:50.554466+00 2025-08-13 00:32:50.554475+00 f t DESCUENTO 0.00 2 5376 \N +205923 2025-08-13 00:32:50.556634+00 2025-08-13 00:32:50.556649+00 f t TOTAL 0.00 3 5376 \N +205924 2025-08-13 00:32:50.561093+00 2025-08-13 00:32:50.561104+00 f t ADELANTO 0.00 4 5376 \N +194213 2025-08-08 00:52:17.193048+00 2025-08-08 00:52:17.193057+00 f t SUBTOTAL 50000.00 1 5079 \N +194214 2025-08-08 00:52:17.195118+00 2025-08-08 00:52:17.195127+00 f t DESCUENTO 0.00 2 5079 \N +194215 2025-08-08 00:52:17.196918+00 2025-08-08 00:52:17.196925+00 f t TOTAL 50000.00 3 5079 \N +194216 2025-08-08 00:52:17.198252+00 2025-08-08 00:52:17.198258+00 f t ADELANTO 10000.00 4 5079 \N +194221 2025-08-08 01:15:12.024257+00 2025-08-08 01:15:12.024266+00 f t SUBTOTAL 0.00 1 5080 \N +194222 2025-08-08 01:15:12.026311+00 2025-08-08 01:15:12.026321+00 f t DESCUENTO 0.00 2 5080 \N +194223 2025-08-08 01:15:12.028445+00 2025-08-08 01:15:12.028457+00 f t TOTAL 0.00 3 5080 \N +194224 2025-08-08 01:15:12.030702+00 2025-08-08 01:15:12.030715+00 f t ADELANTO 0.00 4 5080 \N +194229 2025-08-08 01:18:38.815382+00 2025-08-08 01:18:38.815391+00 f t SUBTOTAL 0.00 1 5081 \N +194230 2025-08-08 01:18:38.816755+00 2025-08-08 01:18:38.816761+00 f t DESCUENTO 0.00 2 5081 \N +194231 2025-08-08 01:18:38.818043+00 2025-08-08 01:18:38.818052+00 f t TOTAL 0.00 3 5081 \N +194232 2025-08-08 01:18:38.819397+00 2025-08-08 01:18:38.819405+00 f t ADELANTO 0.00 4 5081 \N +196973 2025-08-09 01:03:42.473165+00 2025-08-09 01:03:42.473177+00 f t SUBTOTAL 0.00 1 5154 \N +196974 2025-08-09 01:03:42.475976+00 2025-08-09 01:03:42.475987+00 f t DESCUENTO 0.00 2 5154 \N +196975 2025-08-09 01:03:42.477804+00 2025-08-09 01:03:42.477815+00 f t TOTAL 0.00 3 5154 \N +196976 2025-08-09 01:03:42.479415+00 2025-08-09 01:03:42.479423+00 f t ADELANTO 0.00 4 5154 \N +194293 2025-08-08 01:26:49.378349+00 2025-08-08 01:26:49.378358+00 f t SUBTOTAL 72700.00 1 5082 \N +194294 2025-08-08 01:26:49.380003+00 2025-08-08 01:26:49.38001+00 f t DESCUENTO 0.00 2 5082 \N +194295 2025-08-08 01:26:49.381342+00 2025-08-08 01:26:49.381348+00 f t TOTAL 72700.00 3 5082 \N +194296 2025-08-08 01:26:49.382898+00 2025-08-08 01:26:49.382904+00 f t ADELANTO 34700.00 4 5082 \N +194301 2025-08-08 02:10:05.144303+00 2025-08-08 02:10:05.144317+00 f t SUBTOTAL 0.00 1 5083 \N +194302 2025-08-08 02:10:05.147166+00 2025-08-08 02:10:05.147179+00 f t DESCUENTO 0.00 2 5083 \N +194303 2025-08-08 02:10:05.149847+00 2025-08-08 02:10:05.149861+00 f t TOTAL 0.00 3 5083 \N +194304 2025-08-08 02:10:05.161101+00 2025-08-08 02:10:05.161116+00 f t ADELANTO 0.00 4 5083 \N +202337 2025-08-11 20:46:30.364758+00 2025-08-11 20:46:30.364775+00 f t SUBTOTAL 0.00 1 5284 \N +202338 2025-08-11 20:46:30.367914+00 2025-08-11 20:46:30.367947+00 f t DESCUENTO 0.00 2 5284 \N +202339 2025-08-11 20:46:30.370714+00 2025-08-11 20:46:30.370727+00 f t TOTAL 0.00 3 5284 \N +202340 2025-08-11 20:46:30.376294+00 2025-08-11 20:46:30.376308+00 f t ADELANTO 0.00 4 5284 \N +202393 2025-08-11 21:16:25.126547+00 2025-08-11 21:16:25.126562+00 f t SUBTOTAL 0.00 1 5289 \N +202394 2025-08-11 21:16:25.129552+00 2025-08-11 21:16:25.129566+00 f t DESCUENTO 0.00 2 5289 \N +202395 2025-08-11 21:16:25.1325+00 2025-08-11 21:16:25.132514+00 f t TOTAL 0.00 3 5289 \N +202396 2025-08-11 21:16:25.135268+00 2025-08-11 21:16:25.135283+00 f t ADELANTO 0.00 4 5289 \N +194329 2025-08-08 02:35:44.737095+00 2025-08-08 02:35:44.737109+00 f t SUBTOTAL 82200.00 1 5084 \N +194330 2025-08-08 02:35:44.739193+00 2025-08-08 02:35:44.739204+00 f t DESCUENTO 0.00 2 5084 \N +194331 2025-08-08 02:35:44.740814+00 2025-08-08 02:35:44.740825+00 f t TOTAL 82200.00 3 5084 \N +194332 2025-08-08 02:35:44.74231+00 2025-08-08 02:35:44.742319+00 f t ADELANTO 44200.00 4 5084 \N +197725 2025-08-09 12:23:42.233419+00 2025-08-09 12:23:42.233435+00 f t SUBTOTAL 0.00 1 5169 \N +197726 2025-08-09 12:23:42.235391+00 2025-08-09 12:23:42.235402+00 f t DESCUENTO 0.00 2 5169 \N +197727 2025-08-09 12:23:42.237275+00 2025-08-09 12:23:42.237284+00 f t TOTAL 0.00 3 5169 \N +197728 2025-08-09 12:23:42.239116+00 2025-08-09 12:23:42.239125+00 f t ADELANTO 0.00 4 5169 \N +194353 2025-08-08 02:42:53.955517+00 2025-08-08 02:42:53.955529+00 f t SUBTOTAL 0.00 1 5085 \N +194354 2025-08-08 02:42:53.957567+00 2025-08-08 02:42:53.957576+00 f t DESCUENTO 0.00 2 5085 \N +194355 2025-08-08 02:42:53.958725+00 2025-08-08 02:42:53.958732+00 f t TOTAL 0.00 3 5085 \N +194356 2025-08-08 02:42:53.960011+00 2025-08-08 02:42:53.960018+00 f t ADELANTO 0.00 4 5085 \N +199969 2025-08-10 19:13:48.33654+00 2025-08-10 19:13:48.336555+00 f t SUBTOTAL 42000.00 1 5222 \N +199970 2025-08-10 19:13:48.339777+00 2025-08-10 19:13:48.33979+00 f t DESCUENTO 0.00 2 5222 \N +199971 2025-08-10 19:13:48.342336+00 2025-08-10 19:13:48.342348+00 f t TOTAL 42000.00 3 5222 \N +199972 2025-08-10 19:13:48.344731+00 2025-08-10 19:13:48.34474+00 f t ADELANTO 9500.00 4 5222 \N +194381 2025-08-08 02:55:31.442662+00 2025-08-08 02:55:31.442671+00 f t SUBTOTAL 50000.00 1 5086 \N +194382 2025-08-08 02:55:31.444679+00 2025-08-08 02:55:31.444687+00 f t DESCUENTO 0.00 2 5086 \N +194383 2025-08-08 02:55:31.446021+00 2025-08-08 02:55:31.446028+00 f t TOTAL 50000.00 3 5086 \N +194384 2025-08-08 02:55:31.447109+00 2025-08-08 02:55:31.447114+00 f t ADELANTO 10000.00 4 5086 \N +205069 2025-08-12 18:10:02.14941+00 2025-08-12 18:10:02.149425+00 f t SUBTOTAL 0.00 1 5352 \N +205070 2025-08-12 18:10:02.151916+00 2025-08-12 18:10:02.151928+00 f t DESCUENTO 0.00 2 5352 \N +205071 2025-08-12 18:10:02.156054+00 2025-08-12 18:10:02.156067+00 f t TOTAL 0.00 3 5352 \N +205072 2025-08-12 18:10:02.15994+00 2025-08-12 18:10:02.159953+00 f t ADELANTO 0.00 4 5352 \N +195813 2025-08-08 15:25:52.785617+00 2025-08-08 15:25:52.785629+00 f t SUBTOTAL 42000.00 1 5119 \N +195814 2025-08-08 15:25:52.788125+00 2025-08-08 15:25:52.788137+00 f t DESCUENTO 0.00 2 5119 \N +195815 2025-08-08 15:25:52.789934+00 2025-08-08 15:25:52.789944+00 f t TOTAL 42000.00 3 5119 \N +195816 2025-08-08 15:25:52.791584+00 2025-08-08 15:25:52.791592+00 f t ADELANTO 9500.00 4 5119 \N +205273 2025-08-12 19:21:14.675427+00 2025-08-12 19:21:14.675442+00 f t SUBTOTAL 0.00 1 5358 \N +205274 2025-08-12 19:21:14.679745+00 2025-08-12 19:21:14.679756+00 f t DESCUENTO 0.00 2 5358 \N +205275 2025-08-12 19:21:14.682398+00 2025-08-12 19:21:14.682414+00 f t TOTAL 0.00 3 5358 \N +205276 2025-08-12 19:21:14.691551+00 2025-08-12 19:21:14.691562+00 f t ADELANTO 0.00 4 5358 \N +205337 2025-08-12 20:00:39.962131+00 2025-08-12 20:00:39.962147+00 f t SUBTOTAL 0.00 1 5360 \N +205338 2025-08-12 20:00:39.976708+00 2025-08-12 20:00:39.976723+00 f t DESCUENTO 0.00 2 5360 \N +205339 2025-08-12 20:00:39.980638+00 2025-08-12 20:00:39.980655+00 f t TOTAL 0.00 3 5360 \N +205340 2025-08-12 20:00:39.98322+00 2025-08-12 20:00:39.983235+00 f t ADELANTO 0.00 4 5360 \N +196097 2025-08-08 18:41:37.764763+00 2025-08-08 18:41:37.764773+00 f t SUBTOTAL 0.00 1 5133 \N +194437 2025-08-08 03:01:02.944497+00 2025-08-08 03:01:02.94451+00 f t SUBTOTAL 50000.00 1 5087 \N +194438 2025-08-08 03:01:02.94739+00 2025-08-08 03:01:02.947404+00 f t DESCUENTO 0.00 2 5087 \N +194439 2025-08-08 03:01:02.949905+00 2025-08-08 03:01:02.949919+00 f t TOTAL 50000.00 3 5087 \N +194440 2025-08-08 03:01:02.95225+00 2025-08-08 03:01:02.952262+00 f t ADELANTO 10000.00 4 5087 \N +196098 2025-08-08 18:41:37.768086+00 2025-08-08 18:41:37.768096+00 f t DESCUENTO 0.00 2 5133 \N +196099 2025-08-08 18:41:37.770113+00 2025-08-08 18:41:37.770127+00 f t TOTAL 0.00 3 5133 \N +196100 2025-08-08 18:41:37.77191+00 2025-08-08 18:41:37.771917+00 f t ADELANTO 0.00 4 5133 \N +200833 2025-08-11 10:08:58.086496+00 2025-08-11 10:08:58.086511+00 f t SUBTOTAL 0.00 1 5244 \N +200834 2025-08-11 10:08:58.127619+00 2025-08-11 10:08:58.127634+00 f t DESCUENTO 0.00 2 5244 \N +200835 2025-08-11 10:08:58.130088+00 2025-08-11 10:08:58.1301+00 f t TOTAL 0.00 3 5244 \N +200836 2025-08-11 10:08:58.132414+00 2025-08-11 10:08:58.132426+00 f t ADELANTO 0.00 4 5244 \N +194477 2025-08-08 03:18:48.13058+00 2025-08-08 03:18:48.130589+00 f t SUBTOTAL 50000.00 1 5088 \N +194478 2025-08-08 03:18:48.133056+00 2025-08-08 03:18:48.133068+00 f t DESCUENTO 0.00 2 5088 \N +194479 2025-08-08 03:18:48.134922+00 2025-08-08 03:18:48.134932+00 f t TOTAL 50000.00 3 5088 \N +194480 2025-08-08 03:18:48.136488+00 2025-08-08 03:18:48.136497+00 f t ADELANTO 10000.00 4 5088 \N +196725 2025-08-08 23:41:14.013591+00 2025-08-08 23:41:14.013602+00 f t SUBTOTAL 0.00 1 5146 \N +196726 2025-08-08 23:41:14.021657+00 2025-08-08 23:41:14.021671+00 f t DESCUENTO 0.00 2 5146 \N +196727 2025-08-08 23:41:14.023765+00 2025-08-08 23:41:14.023779+00 f t TOTAL 0.00 3 5146 \N +196728 2025-08-08 23:41:14.025992+00 2025-08-08 23:41:14.026001+00 f t ADELANTO 0.00 4 5146 \N +196825 2025-08-09 00:34:37.612349+00 2025-08-09 00:34:37.612362+00 f t SUBTOTAL 64500.00 1 5149 \N +196826 2025-08-09 00:34:37.614197+00 2025-08-09 00:34:37.614206+00 f t DESCUENTO 0.00 2 5149 \N +196827 2025-08-09 00:34:37.615553+00 2025-08-09 00:34:37.615563+00 f t TOTAL 64500.00 3 5149 \N +196828 2025-08-09 00:34:37.616884+00 2025-08-09 00:34:37.616891+00 f t ADELANTO 17000.00 4 5149 \N +196873 2025-08-09 00:43:08.91479+00 2025-08-09 00:43:08.914799+00 f t SUBTOTAL 50000.00 1 5150 \N +196874 2025-08-09 00:43:08.917049+00 2025-08-09 00:43:08.917063+00 f t DESCUENTO 0.00 2 5150 \N +196875 2025-08-09 00:43:08.918852+00 2025-08-09 00:43:08.918861+00 f t TOTAL 50000.00 3 5150 \N +196876 2025-08-09 00:43:08.92055+00 2025-08-09 00:43:08.920559+00 f t ADELANTO 10000.00 4 5150 \N +194581 2025-08-08 03:52:25.710412+00 2025-08-08 03:52:25.710423+00 f t SUBTOTAL 93200.00 1 5089 \N +194582 2025-08-08 03:52:25.712267+00 2025-08-08 03:52:25.712277+00 f t DESCUENTO 0.00 2 5089 \N +194583 2025-08-08 03:52:25.713826+00 2025-08-08 03:52:25.713833+00 f t TOTAL 93200.00 3 5089 \N +194584 2025-08-08 03:52:25.715119+00 2025-08-08 03:52:25.715127+00 f t ADELANTO 55200.00 4 5089 \N +202345 2025-08-11 20:47:37.022134+00 2025-08-11 20:47:37.022149+00 f t SUBTOTAL 0.00 1 5285 \N +202346 2025-08-11 20:47:37.04248+00 2025-08-11 20:47:37.04249+00 f t DESCUENTO 0.00 2 5285 \N +202347 2025-08-11 20:47:37.053582+00 2025-08-11 20:47:37.053595+00 f t TOTAL 0.00 3 5285 \N +202348 2025-08-11 20:47:37.057389+00 2025-08-11 20:47:37.057439+00 f t ADELANTO 0.00 4 5285 \N +202437 2025-08-11 21:19:20.492971+00 2025-08-11 21:19:20.492983+00 f t SUBTOTAL 95500.00 1 5290 \N +202438 2025-08-11 21:19:20.495482+00 2025-08-11 21:19:20.495491+00 f t DESCUENTO 0.00 2 5290 \N +202439 2025-08-11 21:19:20.49767+00 2025-08-11 21:19:20.49768+00 f t TOTAL 95500.00 3 5290 \N +202440 2025-08-11 21:19:20.499444+00 2025-08-11 21:19:20.499453+00 f t ADELANTO 21000.00 4 5290 \N +194609 2025-08-08 05:27:39.761302+00 2025-08-08 05:27:39.761311+00 f t SUBTOTAL 42000.00 1 5090 \N +194610 2025-08-08 05:27:39.763211+00 2025-08-08 05:27:39.763222+00 f t DESCUENTO 0.00 2 5090 \N +194611 2025-08-08 05:27:39.764982+00 2025-08-08 05:27:39.76499+00 f t TOTAL 42000.00 3 5090 \N +194612 2025-08-08 05:27:39.766369+00 2025-08-08 05:27:39.766376+00 f t ADELANTO 9500.00 4 5090 \N +197805 2025-08-09 12:25:09.637276+00 2025-08-09 12:25:09.637287+00 f t SUBTOTAL 0.00 1 5170 \N +197806 2025-08-09 12:25:09.63879+00 2025-08-09 12:25:09.638797+00 f t DESCUENTO 0.00 2 5170 \N +197808 2025-08-09 12:25:09.640291+00 2025-08-09 12:25:09.640299+00 f t TOTAL 0.00 3 5170 \N +197810 2025-08-09 12:25:09.641894+00 2025-08-09 12:25:09.641902+00 f t ADELANTO 0.00 4 5170 \N +197865 2025-08-09 12:27:09.025703+00 2025-08-09 12:27:09.025717+00 f t SUBTOTAL 0.00 1 5168 \N +197866 2025-08-09 12:27:09.028378+00 2025-08-09 12:27:09.02839+00 f t DESCUENTO 0.00 2 5168 \N +197867 2025-08-09 12:27:09.030255+00 2025-08-09 12:27:09.030265+00 f t TOTAL 0.00 3 5168 \N +197868 2025-08-09 12:27:09.031934+00 2025-08-09 12:27:09.031943+00 f t ADELANTO 0.00 4 5168 \N +204561 2025-08-12 13:19:48.146533+00 2025-08-12 13:19:48.146542+00 f t SUBTOTAL 49500.00 1 5338 \N +204562 2025-08-12 13:19:48.152291+00 2025-08-12 13:19:48.152307+00 f t DESCUENTO 0.00 2 5338 \N +204563 2025-08-12 13:19:48.15459+00 2025-08-12 13:19:48.154601+00 f t TOTAL 49500.00 3 5338 \N +204564 2025-08-12 13:19:48.156628+00 2025-08-12 13:19:48.156637+00 f t ADELANTO 11500.00 4 5338 \N +204637 2025-08-12 13:24:55.162003+00 2025-08-12 13:24:55.162016+00 f t SUBTOTAL 42000.00 1 5340 \N +204638 2025-08-12 13:24:55.164152+00 2025-08-12 13:24:55.164189+00 f t DESCUENTO 0.00 2 5340 \N +204639 2025-08-12 13:24:55.165942+00 2025-08-12 13:24:55.165952+00 f t TOTAL 42000.00 3 5340 \N +204640 2025-08-12 13:24:55.167927+00 2025-08-12 13:24:55.167936+00 f t ADELANTO 9500.00 4 5340 \N +194673 2025-08-08 05:54:20.457487+00 2025-08-08 05:54:20.4575+00 f t SUBTOTAL 0.00 1 5091 \N +194674 2025-08-08 05:54:20.459438+00 2025-08-08 05:54:20.459446+00 f t DESCUENTO 0.00 2 5091 \N +194675 2025-08-08 05:54:20.460837+00 2025-08-08 05:54:20.460843+00 f t TOTAL 0.00 3 5091 \N +194676 2025-08-08 05:54:20.462014+00 2025-08-08 05:54:20.462022+00 f t ADELANTO 0.00 4 5091 \N +195653 2025-08-08 14:44:14.880869+00 2025-08-08 14:44:14.880881+00 f t SUBTOTAL 50000.00 1 5114 \N +195654 2025-08-08 14:44:14.885202+00 2025-08-08 14:44:14.885213+00 f t DESCUENTO 0.00 2 5114 \N +195655 2025-08-08 14:44:14.888023+00 2025-08-08 14:44:14.888033+00 f t TOTAL 50000.00 3 5114 \N +195656 2025-08-08 14:44:14.889991+00 2025-08-08 14:44:14.89+00 f t ADELANTO 10000.00 4 5114 \N +200397 2025-08-10 22:28:09.269124+00 2025-08-10 22:28:09.269133+00 f t SUBTOTAL 64500.00 1 5233 \N +200398 2025-08-10 22:28:09.271726+00 2025-08-10 22:28:09.271735+00 f t DESCUENTO 0.00 2 5233 \N +200399 2025-08-10 22:28:09.274199+00 2025-08-10 22:28:09.27421+00 f t TOTAL 64500.00 3 5233 \N +200400 2025-08-10 22:28:09.276184+00 2025-08-10 22:28:09.276195+00 f t ADELANTO 17000.00 4 5233 \N +196105 2025-08-08 19:03:02.997232+00 2025-08-08 19:03:02.997246+00 f t SUBTOTAL 0.00 1 5134 \N +196106 2025-08-08 19:03:02.999428+00 2025-08-08 19:03:02.999438+00 f t DESCUENTO 0.00 2 5134 \N +196107 2025-08-08 19:03:03.001465+00 2025-08-08 19:03:03.001474+00 f t TOTAL 0.00 3 5134 \N +196108 2025-08-08 19:03:03.003358+00 2025-08-08 19:03:03.003371+00 f t ADELANTO 0.00 4 5134 \N +196213 2025-08-08 21:07:40.063367+00 2025-08-08 21:07:40.063379+00 f t SUBTOTAL 0.00 1 5139 \N +196214 2025-08-08 21:07:40.065497+00 2025-08-08 21:07:40.065504+00 f t DESCUENTO 0.00 2 5139 \N +196215 2025-08-08 21:07:40.066723+00 2025-08-08 21:07:40.066729+00 f t TOTAL 0.00 3 5139 \N +196216 2025-08-08 21:07:40.06794+00 2025-08-08 21:07:40.067946+00 f t ADELANTO 0.00 4 5139 \N +201057 2025-08-11 12:06:31.80418+00 2025-08-11 12:06:31.804193+00 f t SUBTOTAL 0.00 1 5247 \N +201058 2025-08-11 12:06:31.807088+00 2025-08-11 12:06:31.807098+00 f t DESCUENTO 0.00 2 5247 \N +201059 2025-08-11 12:06:31.809341+00 2025-08-11 12:06:31.809352+00 f t TOTAL 0.00 3 5247 \N +201060 2025-08-11 12:06:31.811165+00 2025-08-11 12:06:31.811174+00 f t ADELANTO 0.00 4 5247 \N +201165 2025-08-11 12:45:53.302731+00 2025-08-11 12:45:53.302746+00 f t SUBTOTAL 0.00 1 5248 \N +201166 2025-08-11 12:45:53.306042+00 2025-08-11 12:45:53.306056+00 f t DESCUENTO 0.00 2 5248 \N +201167 2025-08-11 12:45:53.308851+00 2025-08-11 12:45:53.308867+00 f t TOTAL 0.00 3 5248 \N +201168 2025-08-11 12:45:53.313553+00 2025-08-11 12:45:53.313567+00 f t ADELANTO 0.00 4 5248 \N +196733 2025-08-09 00:04:56.799922+00 2025-08-09 00:04:56.799931+00 f t SUBTOTAL 0.00 1 5147 \N +196734 2025-08-09 00:04:56.801798+00 2025-08-09 00:04:56.801805+00 f t DESCUENTO 0.00 2 5147 \N +196735 2025-08-09 00:04:56.803643+00 2025-08-09 00:04:56.803654+00 f t TOTAL 0.00 3 5147 \N +196736 2025-08-09 00:04:56.805376+00 2025-08-09 00:04:56.805385+00 f t ADELANTO 0.00 4 5147 \N +201637 2025-08-11 15:37:50.388925+00 2025-08-11 15:37:50.388935+00 f t SUBTOTAL 0.00 1 5259 \N +201638 2025-08-11 15:37:50.391283+00 2025-08-11 15:37:50.391292+00 f t DESCUENTO 0.00 2 5259 \N +194805 2025-08-08 07:50:34.912591+00 2025-08-08 07:50:34.912603+00 f t SUBTOTAL 0.00 1 5092 \N +194806 2025-08-08 07:50:34.915699+00 2025-08-08 07:50:34.915709+00 f t DESCUENTO 0.00 2 5092 \N +194807 2025-08-08 07:50:34.917395+00 2025-08-08 07:50:34.917403+00 f t TOTAL 0.00 3 5092 \N +194808 2025-08-08 07:50:34.918827+00 2025-08-08 07:50:34.918833+00 f t ADELANTO 0.00 4 5092 \N +201639 2025-08-11 15:37:50.392679+00 2025-08-11 15:37:50.392687+00 f t TOTAL 0.00 3 5259 \N +201640 2025-08-11 15:37:50.393962+00 2025-08-11 15:37:50.393968+00 f t ADELANTO 0.00 4 5259 \N +194841 2025-08-08 07:59:59.569945+00 2025-08-08 07:59:59.569955+00 f t SUBTOTAL 64500.00 1 5093 \N +194842 2025-08-08 07:59:59.571784+00 2025-08-08 07:59:59.571791+00 f t DESCUENTO 0.00 2 5093 \N +194843 2025-08-08 07:59:59.573326+00 2025-08-08 07:59:59.573333+00 f t TOTAL 64500.00 3 5093 \N +194844 2025-08-08 07:59:59.57481+00 2025-08-08 07:59:59.574817+00 f t ADELANTO 17000.00 4 5093 \N +202289 2025-08-11 20:23:14.296749+00 2025-08-11 20:23:14.296762+00 f t SUBTOTAL 42000.00 1 5280 \N +202290 2025-08-11 20:23:14.301957+00 2025-08-11 20:23:14.301973+00 f t DESCUENTO 0.00 2 5280 \N +202291 2025-08-11 20:23:14.309612+00 2025-08-11 20:23:14.309628+00 f t TOTAL 42000.00 3 5280 \N +202292 2025-08-11 20:23:14.313495+00 2025-08-11 20:23:14.31351+00 f t ADELANTO 9500.00 4 5280 \N +206481 2025-08-13 07:22:32.060391+00 2025-08-13 07:22:32.060401+00 f t SUBTOTAL 0.00 1 5389 \N +206482 2025-08-13 07:22:32.063542+00 2025-08-13 07:22:32.063556+00 f t DESCUENTO 0.00 2 5389 \N +206483 2025-08-13 07:22:32.065534+00 2025-08-13 07:22:32.065543+00 f t TOTAL 0.00 3 5389 \N +206484 2025-08-13 07:22:32.067475+00 2025-08-13 07:22:32.067483+00 f t ADELANTO 0.00 4 5389 \N +202353 2025-08-11 20:47:38.644291+00 2025-08-11 20:47:38.644306+00 f t SUBTOTAL 0.00 1 5286 \N +202354 2025-08-11 20:47:38.646951+00 2025-08-11 20:47:38.646966+00 f t DESCUENTO 0.00 2 5286 \N +202355 2025-08-11 20:47:38.649922+00 2025-08-11 20:47:38.649936+00 f t TOTAL 0.00 3 5286 \N +202356 2025-08-11 20:47:38.65275+00 2025-08-11 20:47:38.652763+00 f t ADELANTO 0.00 4 5286 \N +197641 2025-08-09 11:21:28.816+00 2025-08-09 11:21:28.816012+00 f t SUBTOTAL 64500.00 1 5166 \N +197642 2025-08-09 11:21:28.818601+00 2025-08-09 11:21:28.818611+00 f t DESCUENTO 0.00 2 5166 \N +197643 2025-08-09 11:21:28.820788+00 2025-08-09 11:21:28.8208+00 f t TOTAL 64500.00 3 5166 \N +197644 2025-08-09 11:21:28.823024+00 2025-08-09 11:21:28.823036+00 f t ADELANTO 17000.00 4 5166 \N +202445 2025-08-11 21:31:03.423268+00 2025-08-11 21:31:03.423278+00 f t SUBTOTAL 0.00 1 5291 \N +202446 2025-08-11 21:31:03.425164+00 2025-08-11 21:31:03.425176+00 f t DESCUENTO 0.00 2 5291 \N +202447 2025-08-11 21:31:03.428503+00 2025-08-11 21:31:03.428517+00 f t TOTAL 0.00 3 5291 \N +202448 2025-08-11 21:31:03.437356+00 2025-08-11 21:31:03.437371+00 f t ADELANTO 0.00 4 5291 \N +206833 2025-08-13 12:21:13.314191+00 2025-08-13 12:21:13.314203+00 f t SUBTOTAL 49500.00 1 5397 \N +206834 2025-08-13 12:21:13.317748+00 2025-08-13 12:21:13.317762+00 f t DESCUENTO 0.00 2 5397 \N +206835 2025-08-13 12:21:13.320504+00 2025-08-13 12:21:13.32096+00 f t TOTAL 49500.00 3 5397 \N +206836 2025-08-13 12:21:13.323298+00 2025-08-13 12:21:13.323309+00 f t ADELANTO 11500.00 4 5397 \N +202677 2025-08-11 22:32:28.316149+00 2025-08-11 22:32:28.316164+00 f t SUBTOTAL 0.00 1 5298 \N +202678 2025-08-11 22:32:28.318476+00 2025-08-11 22:32:28.31849+00 f t DESCUENTO 0.00 2 5298 \N +202679 2025-08-11 22:32:28.321669+00 2025-08-11 22:32:28.321682+00 f t TOTAL 0.00 3 5298 \N +202680 2025-08-11 22:32:28.32527+00 2025-08-11 22:32:28.325284+00 f t ADELANTO 0.00 4 5298 \N +200125 2025-08-10 21:00:00.263972+00 2025-08-10 21:00:00.263989+00 f t SUBTOTAL 64500.00 1 5227 \N +200126 2025-08-10 21:00:00.266567+00 2025-08-10 21:00:00.266577+00 f t DESCUENTO 0.00 2 5227 \N +200127 2025-08-10 21:00:00.268618+00 2025-08-10 21:00:00.268631+00 f t TOTAL 64500.00 3 5227 \N +200128 2025-08-10 21:00:00.270527+00 2025-08-10 21:00:00.270539+00 f t ADELANTO 17000.00 4 5227 \N +204785 2025-08-12 15:18:13.630691+00 2025-08-12 15:18:13.630708+00 f t SUBTOTAL 0.00 1 5343 \N +204786 2025-08-12 15:18:13.636089+00 2025-08-12 15:18:13.636104+00 f t DESCUENTO 0.00 2 5343 \N +204787 2025-08-12 15:18:13.638718+00 2025-08-12 15:18:13.638731+00 f t TOTAL 0.00 3 5343 \N +204788 2025-08-12 15:18:13.641276+00 2025-08-12 15:18:13.641289+00 f t ADELANTO 0.00 4 5343 \N +200257 2025-08-10 21:04:28.06928+00 2025-08-10 21:04:28.069293+00 f t SUBTOTAL 0.00 1 5228 \N +200258 2025-08-10 21:04:28.071876+00 2025-08-10 21:04:28.071886+00 f t DESCUENTO 0.00 2 5228 \N +200259 2025-08-10 21:04:28.073499+00 2025-08-10 21:04:28.073511+00 f t TOTAL 0.00 3 5228 \N +200260 2025-08-10 21:04:28.075324+00 2025-08-10 21:04:28.075333+00 f t ADELANTO 0.00 4 5228 \N +200405 2025-08-10 22:50:12.297018+00 2025-08-10 22:50:12.297031+00 f t SUBTOTAL 0.00 1 5234 \N +200406 2025-08-10 22:50:12.300613+00 2025-08-10 22:50:12.300627+00 f t DESCUENTO 0.00 2 5234 \N +200407 2025-08-10 22:50:12.305174+00 2025-08-10 22:50:12.305186+00 f t TOTAL 0.00 3 5234 \N +200408 2025-08-10 22:50:12.307813+00 2025-08-10 22:50:12.307826+00 f t ADELANTO 0.00 4 5234 \N +200785 2025-08-11 05:48:08.652589+00 2025-08-11 05:48:08.652598+00 f t SUBTOTAL 27500.00 1 5243 \N +200786 2025-08-11 05:48:08.654884+00 2025-08-11 05:48:08.654897+00 f t DESCUENTO 0.00 2 5243 \N +200787 2025-08-11 05:48:08.65832+00 2025-08-11 05:48:08.658334+00 f t TOTAL 27500.00 3 5243 \N +200788 2025-08-11 05:48:08.660531+00 2025-08-11 05:48:08.660544+00 f t ADELANTO 27500.00 4 5243 \N +197977 2025-08-09 12:34:00.61194+00 2025-08-09 12:34:00.611954+00 f t SUBTOTAL 0.00 1 5171 \N +197978 2025-08-09 12:34:00.614766+00 2025-08-09 12:34:00.614777+00 f t DESCUENTO 0.00 2 5171 \N +197979 2025-08-09 12:34:00.616515+00 2025-08-09 12:34:00.616524+00 f t TOTAL 0.00 3 5171 \N +197980 2025-08-09 12:34:00.618048+00 2025-08-09 12:34:00.618056+00 f t ADELANTO 0.00 4 5171 \N +197985 2025-08-09 12:35:05.686187+00 2025-08-09 12:35:05.686201+00 f t SUBTOTAL 0.00 1 5172 \N +197986 2025-08-09 12:35:05.691839+00 2025-08-09 12:35:05.691852+00 f t DESCUENTO 0.00 2 5172 \N +197987 2025-08-09 12:35:05.694465+00 2025-08-09 12:35:05.69448+00 f t TOTAL 0.00 3 5172 \N +197988 2025-08-09 12:35:05.697256+00 2025-08-09 12:35:05.697268+00 f t ADELANTO 0.00 4 5172 \N +206133 2025-08-13 01:18:06.647983+00 2025-08-13 01:18:06.647997+00 f t SUBTOTAL 64500.00 1 5382 \N +206134 2025-08-13 01:18:06.651793+00 2025-08-13 01:18:06.651806+00 f t DESCUENTO 0.00 2 5382 \N +206135 2025-08-13 01:18:06.654459+00 2025-08-13 01:18:06.654474+00 f t TOTAL 64500.00 3 5382 \N +206136 2025-08-13 01:18:06.656652+00 2025-08-13 01:18:06.656664+00 f t ADELANTO 17000.00 4 5382 \N +198053 2025-08-09 14:17:17.899491+00 2025-08-09 14:17:17.899501+00 f t SUBTOTAL 129000.00 1 5173 \N +198054 2025-08-09 14:17:17.901427+00 2025-08-09 14:17:17.901435+00 f t DESCUENTO 0.00 2 5173 \N +198055 2025-08-09 14:17:17.902787+00 2025-08-09 14:17:17.902793+00 f t TOTAL 129000.00 3 5173 \N +198056 2025-08-09 14:17:17.903967+00 2025-08-09 14:17:17.903973+00 f t ADELANTO 34000.00 4 5173 \N +198073 2025-08-09 15:32:01.160036+00 2025-08-09 15:32:01.160046+00 f t SUBTOTAL 0.00 1 5174 \N +198074 2025-08-09 15:32:01.16287+00 2025-08-09 15:32:01.162878+00 f t DESCUENTO 0.00 2 5174 \N +198075 2025-08-09 15:32:01.164775+00 2025-08-09 15:32:01.164782+00 f t TOTAL 0.00 3 5174 \N +198076 2025-08-09 15:32:01.166526+00 2025-08-09 15:32:01.166535+00 f t ADELANTO 0.00 4 5174 \N +198081 2025-08-09 15:45:13.272105+00 2025-08-09 15:45:13.272121+00 f t SUBTOTAL 0.00 1 5175 \N +198082 2025-08-09 15:45:13.274818+00 2025-08-09 15:45:13.274831+00 f t DESCUENTO 0.00 2 5175 \N +198083 2025-08-09 15:45:13.279114+00 2025-08-09 15:45:13.279174+00 f t TOTAL 0.00 3 5175 \N +198084 2025-08-09 15:45:13.281677+00 2025-08-09 15:45:13.28169+00 f t ADELANTO 0.00 4 5175 \N +198093 2025-08-09 16:28:24.94957+00 2025-08-09 16:28:24.949584+00 f t SUBTOTAL 0.00 1 5176 \N +198094 2025-08-09 16:28:24.952285+00 2025-08-09 16:28:24.952296+00 f t DESCUENTO 0.00 2 5176 \N +198095 2025-08-09 16:28:24.954236+00 2025-08-09 16:28:24.954248+00 f t TOTAL 0.00 3 5176 \N +198096 2025-08-09 16:28:24.956085+00 2025-08-09 16:28:24.956096+00 f t ADELANTO 0.00 4 5176 \N +202157 2025-08-11 19:45:07.099349+00 2025-08-11 19:45:07.099363+00 f t SUBTOTAL 64500.00 1 5276 \N +202158 2025-08-11 19:45:07.102404+00 2025-08-11 19:45:07.102417+00 f t DESCUENTO 0.00 2 5276 \N +202159 2025-08-11 19:45:07.105784+00 2025-08-11 19:45:07.105798+00 f t TOTAL 64500.00 3 5276 \N +202160 2025-08-11 19:45:07.108738+00 2025-08-11 19:45:07.108753+00 f t ADELANTO 17000.00 4 5276 \N +202245 2025-08-11 20:14:28.262121+00 2025-08-11 20:14:28.262133+00 f t SUBTOTAL 49500.00 1 5278 \N +202246 2025-08-11 20:14:28.266128+00 2025-08-11 20:14:28.266142+00 f t DESCUENTO 0.00 2 5278 \N +202247 2025-08-11 20:14:28.269059+00 2025-08-11 20:14:28.269073+00 f t TOTAL 49500.00 3 5278 \N +202248 2025-08-11 20:14:28.272481+00 2025-08-11 20:14:28.272493+00 f t ADELANTO 11500.00 4 5278 \N +202361 2025-08-11 20:48:00.753776+00 2025-08-11 20:48:00.753791+00 f t SUBTOTAL 0.00 1 5287 \N +202362 2025-08-11 20:48:00.756936+00 2025-08-11 20:48:00.756945+00 f t DESCUENTO 0.00 2 5287 \N +202363 2025-08-11 20:48:00.759805+00 2025-08-11 20:48:00.759819+00 f t TOTAL 0.00 3 5287 \N +202364 2025-08-11 20:48:00.764521+00 2025-08-11 20:48:00.764537+00 f t ADELANTO 0.00 4 5287 \N +202453 2025-08-11 21:46:27.093955+00 2025-08-11 21:46:27.093968+00 f t SUBTOTAL 0.00 1 5292 \N +202454 2025-08-11 21:46:27.098663+00 2025-08-11 21:46:27.098675+00 f t DESCUENTO 0.00 2 5292 \N +202455 2025-08-11 21:46:27.10177+00 2025-08-11 21:46:27.101781+00 f t TOTAL 0.00 3 5292 \N +202456 2025-08-11 21:46:27.106851+00 2025-08-11 21:46:27.106864+00 f t ADELANTO 0.00 4 5292 \N +198141 2025-08-09 16:32:25.267464+00 2025-08-09 16:32:25.267474+00 f t SUBTOTAL 42000.00 1 5177 \N +198142 2025-08-09 16:32:25.269055+00 2025-08-09 16:32:25.269062+00 f t DESCUENTO 0.00 2 5177 \N +198143 2025-08-09 16:32:25.270382+00 2025-08-09 16:32:25.270389+00 f t TOTAL 42000.00 3 5177 \N +198144 2025-08-09 16:32:25.271821+00 2025-08-09 16:32:25.271827+00 f t ADELANTO 9500.00 4 5177 \N +198149 2025-08-09 16:55:02.892737+00 2025-08-09 16:55:02.892751+00 f t SUBTOTAL 0.00 1 5178 \N +198150 2025-08-09 16:55:02.906537+00 2025-08-09 16:55:02.90655+00 f t DESCUENTO 0.00 2 5178 \N +198151 2025-08-09 16:55:02.910284+00 2025-08-09 16:55:02.910298+00 f t TOTAL 0.00 3 5178 \N +198152 2025-08-09 16:55:02.913405+00 2025-08-09 16:55:02.913428+00 f t ADELANTO 0.00 4 5178 \N +198157 2025-08-09 18:42:38.571767+00 2025-08-09 18:42:38.571778+00 f t SUBTOTAL 0.00 1 5179 \N +198158 2025-08-09 18:42:38.574476+00 2025-08-09 18:42:38.574487+00 f t DESCUENTO 0.00 2 5179 \N +198159 2025-08-09 18:42:38.576115+00 2025-08-09 18:42:38.576123+00 f t TOTAL 0.00 3 5179 \N +198160 2025-08-09 18:42:38.577335+00 2025-08-09 18:42:38.577341+00 f t ADELANTO 0.00 4 5179 \N +198165 2025-08-09 19:08:08.092912+00 2025-08-09 19:08:08.092925+00 f t SUBTOTAL 0.00 1 5180 \N +198166 2025-08-09 19:08:08.09629+00 2025-08-09 19:08:08.096302+00 f t DESCUENTO 0.00 2 5180 \N +198167 2025-08-09 19:08:08.099103+00 2025-08-09 19:08:08.099116+00 f t TOTAL 0.00 3 5180 \N +198168 2025-08-09 19:08:08.101548+00 2025-08-09 19:08:08.101561+00 f t ADELANTO 0.00 4 5180 \N +204417 2025-08-12 12:38:03.332875+00 2025-08-12 12:38:03.340481+00 f t SUBTOTAL 42000.00 1 5336 \N +204418 2025-08-12 12:38:03.347425+00 2025-08-12 12:38:03.34744+00 f t DESCUENTO 0.00 2 5336 \N +204419 2025-08-12 12:38:03.351012+00 2025-08-12 12:38:03.351027+00 f t TOTAL 42000.00 3 5336 \N +204420 2025-08-12 12:38:03.355653+00 2025-08-12 12:38:03.355668+00 f t ADELANTO 9500.00 4 5336 \N +200057 2025-08-10 20:11:02.096584+00 2025-08-10 20:11:02.096597+00 f t SUBTOTAL 50000.00 1 5225 \N +200058 2025-08-10 20:11:02.099894+00 2025-08-10 20:11:02.099908+00 f t DESCUENTO 0.00 2 5225 \N +198197 2025-08-09 20:34:19.797692+00 2025-08-09 20:34:19.797704+00 f t SUBTOTAL 50000.00 1 5181 \N +198198 2025-08-09 20:34:19.802686+00 2025-08-09 20:34:19.802699+00 f t DESCUENTO 0.00 2 5181 \N +198199 2025-08-09 20:34:19.806832+00 2025-08-09 20:34:19.806842+00 f t TOTAL 50000.00 3 5181 \N +198200 2025-08-09 20:34:19.80902+00 2025-08-09 20:34:19.80903+00 f t ADELANTO 10000.00 4 5181 \N +200059 2025-08-10 20:11:02.105782+00 2025-08-10 20:11:02.105796+00 f t TOTAL 50000.00 3 5225 \N +200060 2025-08-10 20:11:02.109813+00 2025-08-10 20:11:02.10983+00 f t ADELANTO 10000.00 4 5225 \N +200333 2025-08-10 21:58:30.003254+00 2025-08-10 21:58:30.003268+00 f t SUBTOTAL 111000.00 1 5230 \N +200334 2025-08-10 21:58:30.017275+00 2025-08-10 21:58:30.017289+00 f t DESCUENTO 0.00 2 5230 \N +200335 2025-08-10 21:58:30.019634+00 2025-08-10 21:58:30.019647+00 f t TOTAL 111000.00 3 5230 \N +200336 2025-08-10 21:58:30.021724+00 2025-08-10 21:58:30.021745+00 f t ADELANTO 23500.00 4 5230 \N +200665 2025-08-11 00:08:51.951941+00 2025-08-11 00:08:51.951951+00 f t SUBTOTAL 49500.00 1 5238 \N +200666 2025-08-11 00:08:51.954464+00 2025-08-11 00:08:51.954478+00 f t DESCUENTO 0.00 2 5238 \N +200667 2025-08-11 00:08:51.957078+00 2025-08-11 00:08:51.957091+00 f t TOTAL 49500.00 3 5238 \N +200668 2025-08-11 00:08:51.960036+00 2025-08-11 00:08:51.960049+00 f t ADELANTO 11500.00 4 5238 \N +200729 2025-08-11 03:30:55.926034+00 2025-08-11 03:30:55.926046+00 f t SUBTOTAL 12000.00 1 5241 \N +200730 2025-08-11 03:30:55.92893+00 2025-08-11 03:30:55.928942+00 f t DESCUENTO 0.00 2 5241 \N +200731 2025-08-11 03:30:55.934751+00 2025-08-11 03:30:55.934762+00 f t TOTAL 12000.00 3 5241 \N +200732 2025-08-11 03:30:55.937458+00 2025-08-11 03:30:55.937474+00 f t ADELANTO 12000.00 4 5241 \N +198277 2025-08-09 21:13:11.890591+00 2025-08-09 21:13:11.890601+00 f t SUBTOTAL 68000.00 1 5182 \N +198278 2025-08-09 21:13:11.895296+00 2025-08-09 21:13:11.895306+00 f t DESCUENTO 0.00 2 5182 \N +198279 2025-08-09 21:13:11.89949+00 2025-08-09 21:13:11.899504+00 f t TOTAL 68000.00 3 5182 \N +198280 2025-08-09 21:13:11.903193+00 2025-08-09 21:13:11.903207+00 f t ADELANTO 13000.00 4 5182 \N +198285 2025-08-09 22:13:25.483966+00 2025-08-09 22:13:25.48398+00 f t SUBTOTAL 0.00 1 5183 \N +198286 2025-08-09 22:13:25.486069+00 2025-08-09 22:13:25.486081+00 f t DESCUENTO 0.00 2 5183 \N +198287 2025-08-09 22:13:25.487822+00 2025-08-09 22:13:25.487833+00 f t TOTAL 0.00 3 5183 \N +198288 2025-08-09 22:13:25.489771+00 2025-08-09 22:13:25.489783+00 f t ADELANTO 0.00 4 5183 \N +198293 2025-08-09 22:16:26.672126+00 2025-08-09 22:16:26.672138+00 f t SUBTOTAL 0.00 1 5184 \N +198294 2025-08-09 22:16:26.674389+00 2025-08-09 22:16:26.674401+00 f t DESCUENTO 0.00 2 5184 \N +198295 2025-08-09 22:16:26.68087+00 2025-08-09 22:16:26.680884+00 f t TOTAL 0.00 3 5184 \N +198296 2025-08-09 22:16:26.683908+00 2025-08-09 22:16:26.683922+00 f t ADELANTO 0.00 4 5184 \N +198301 2025-08-09 22:31:44.723975+00 2025-08-09 22:31:44.723988+00 f t SUBTOTAL 0.00 1 5185 \N +198302 2025-08-09 22:31:44.725984+00 2025-08-09 22:31:44.725995+00 f t DESCUENTO 0.00 2 5185 \N +198303 2025-08-09 22:31:44.729168+00 2025-08-09 22:31:44.72918+00 f t TOTAL 0.00 3 5185 \N +198304 2025-08-09 22:31:44.731123+00 2025-08-09 22:31:44.731167+00 f t ADELANTO 0.00 4 5185 \N +198357 2025-08-09 22:39:32.830194+00 2025-08-09 22:39:32.830207+00 f t SUBTOTAL 68000.00 1 5161 \N +198358 2025-08-09 22:39:32.832393+00 2025-08-09 22:39:32.832404+00 f t DESCUENTO 0.00 2 5161 \N +198359 2025-08-09 22:39:32.834479+00 2025-08-09 22:39:32.834488+00 f t TOTAL 68000.00 3 5161 \N +198360 2025-08-09 22:39:32.836488+00 2025-08-09 22:39:32.836496+00 f t ADELANTO 13000.00 4 5161 \N +201917 2025-08-11 16:36:14.36344+00 2025-08-11 16:36:14.363449+00 f t SUBTOTAL 70000.00 1 5265 \N +201918 2025-08-11 16:36:14.365356+00 2025-08-11 16:36:14.365364+00 f t DESCUENTO 0.00 2 5265 \N +198365 2025-08-09 22:42:30.598249+00 2025-08-09 22:42:30.598261+00 f t SUBTOTAL 0.00 1 5186 \N +198366 2025-08-09 22:42:30.601176+00 2025-08-09 22:42:30.60119+00 f t DESCUENTO 0.00 2 5186 \N +198367 2025-08-09 22:42:30.603408+00 2025-08-09 22:42:30.60342+00 f t TOTAL 0.00 3 5186 \N +198368 2025-08-09 22:42:30.607504+00 2025-08-09 22:42:30.607517+00 f t ADELANTO 0.00 4 5186 \N +201919 2025-08-11 16:36:14.366732+00 2025-08-11 16:36:14.366739+00 f t TOTAL 70000.00 3 5265 \N +201920 2025-08-11 16:36:14.368175+00 2025-08-11 16:36:14.368182+00 f t ADELANTO 15000.00 4 5265 \N +201969 2025-08-11 17:27:56.419765+00 2025-08-11 17:27:56.419778+00 f t SUBTOTAL 146700.00 1 5268 \N +201970 2025-08-11 17:27:56.42356+00 2025-08-11 17:27:56.423574+00 f t DESCUENTO 0.00 2 5268 \N +201971 2025-08-11 17:27:56.426682+00 2025-08-11 17:27:56.426703+00 f t TOTAL 146700.00 3 5268 \N +201972 2025-08-11 17:27:56.429942+00 2025-08-11 17:27:56.429956+00 f t ADELANTO 108700.00 4 5268 \N +202069 2025-08-11 18:37:10.922289+00 2025-08-11 18:37:10.922302+00 f t SUBTOTAL 42000.00 1 5273 \N +202070 2025-08-11 18:37:10.929028+00 2025-08-11 18:37:10.929041+00 f t DESCUENTO 0.00 2 5273 \N +202071 2025-08-11 18:37:10.932143+00 2025-08-11 18:37:10.932158+00 f t TOTAL 42000.00 3 5273 \N +202072 2025-08-11 18:37:10.935681+00 2025-08-11 18:37:10.935694+00 f t ADELANTO 9500.00 4 5273 \N +202113 2025-08-11 19:06:04.755693+00 2025-08-11 19:06:04.755706+00 f t SUBTOTAL 0.00 1 5274 \N +202114 2025-08-11 19:06:04.759541+00 2025-08-11 19:06:04.759558+00 f t DESCUENTO 0.00 2 5274 \N +202115 2025-08-11 19:06:04.762529+00 2025-08-11 19:06:04.762543+00 f t TOTAL 0.00 3 5274 \N +202116 2025-08-11 19:06:04.765912+00 2025-08-11 19:06:04.765925+00 f t ADELANTO 0.00 4 5274 \N +202253 2025-08-11 20:19:17.59977+00 2025-08-11 20:19:17.599786+00 f t SUBTOTAL 0.00 1 5279 \N +202254 2025-08-11 20:19:17.603292+00 2025-08-11 20:19:17.603305+00 f t DESCUENTO 0.00 2 5279 \N +202255 2025-08-11 20:19:17.606239+00 2025-08-11 20:19:17.606252+00 f t TOTAL 0.00 3 5279 \N +202256 2025-08-11 20:19:17.608889+00 2025-08-11 20:19:17.608902+00 f t ADELANTO 0.00 4 5279 \N +198421 2025-08-09 23:10:07.144934+00 2025-08-09 23:10:07.14495+00 f t SUBTOTAL 0.00 1 5187 \N +198422 2025-08-09 23:10:07.149466+00 2025-08-09 23:10:07.14948+00 f t DESCUENTO 0.00 2 5187 \N +198423 2025-08-09 23:10:07.152131+00 2025-08-09 23:10:07.152144+00 f t TOTAL 0.00 3 5187 \N +198424 2025-08-09 23:10:07.154717+00 2025-08-09 23:10:07.15473+00 f t ADELANTO 0.00 4 5187 \N +198429 2025-08-09 23:33:12.784405+00 2025-08-09 23:33:12.784419+00 f t SUBTOTAL 0.00 1 5188 \N +198430 2025-08-09 23:33:12.786782+00 2025-08-09 23:33:12.786795+00 f t DESCUENTO 0.00 2 5188 \N +198431 2025-08-09 23:33:12.78899+00 2025-08-09 23:33:12.789002+00 f t TOTAL 0.00 3 5188 \N +198432 2025-08-09 23:33:12.791248+00 2025-08-09 23:33:12.791259+00 f t ADELANTO 0.00 4 5188 \N +198457 2025-08-10 00:13:11.464975+00 2025-08-10 00:13:11.464988+00 f t SUBTOTAL 50000.00 1 5189 \N +198458 2025-08-10 00:13:11.46853+00 2025-08-10 00:13:11.468541+00 f t DESCUENTO 0.00 2 5189 \N +198459 2025-08-10 00:13:11.470626+00 2025-08-10 00:13:11.470639+00 f t TOTAL 50000.00 3 5189 \N +198460 2025-08-10 00:13:11.472539+00 2025-08-10 00:13:11.472547+00 f t ADELANTO 10000.00 4 5189 \N +209181 2025-08-14 02:46:53.174082+00 2025-08-14 02:46:53.174091+00 f t SUBTOTAL 0.00 1 5456 \N +209182 2025-08-14 02:46:53.176145+00 2025-08-14 02:46:53.176154+00 f t DESCUENTO 0.00 2 5456 \N +209183 2025-08-14 02:46:53.178825+00 2025-08-14 02:46:53.178833+00 f t TOTAL 0.00 3 5456 \N +209184 2025-08-14 02:46:53.182455+00 2025-08-14 02:46:53.182464+00 f t ADELANTO 0.00 4 5456 \N +219210 2025-08-17 17:57:36.815409+00 2025-08-17 17:57:36.81542+00 f t DESCUENTO 0.00 2 5698 \N +219211 2025-08-17 17:57:36.818551+00 2025-08-17 17:57:36.81856+00 f t TOTAL 42000.00 3 5698 \N +209377 2025-08-14 03:49:08.08028+00 2025-08-14 03:49:08.080295+00 f t SUBTOTAL 0.00 1 5460 \N +209378 2025-08-14 03:49:08.082671+00 2025-08-14 03:49:08.082684+00 f t DESCUENTO 0.00 2 5460 \N +198477 2025-08-10 00:22:59.147116+00 2025-08-10 00:22:59.147194+00 f t SUBTOTAL 0.00 1 5190 \N +198478 2025-08-10 00:22:59.150201+00 2025-08-10 00:22:59.150213+00 f t DESCUENTO 0.00 2 5190 \N +198479 2025-08-10 00:22:59.152166+00 2025-08-10 00:22:59.152177+00 f t TOTAL 0.00 3 5190 \N +198480 2025-08-10 00:22:59.15392+00 2025-08-10 00:22:59.15393+00 f t ADELANTO 0.00 4 5190 \N +209379 2025-08-14 03:49:08.087939+00 2025-08-14 03:49:08.087951+00 f t TOTAL 0.00 3 5460 \N +199913 2025-08-10 18:07:09.999025+00 2025-08-10 18:07:09.999039+00 f t SUBTOTAL 64500.00 1 5220 \N +199914 2025-08-10 18:07:10.00143+00 2025-08-10 18:07:10.001484+00 f t DESCUENTO 0.00 2 5220 \N +199915 2025-08-10 18:07:10.003437+00 2025-08-10 18:07:10.003448+00 f t TOTAL 64500.00 3 5220 \N +199916 2025-08-10 18:07:10.005512+00 2025-08-10 18:07:10.005524+00 f t ADELANTO 17000.00 4 5220 \N +209380 2025-08-14 03:49:08.090284+00 2025-08-14 03:49:08.090296+00 f t ADELANTO 0.00 4 5460 \N +209433 2025-08-14 03:51:34.124448+00 2025-08-14 03:51:34.124462+00 f t SUBTOTAL 0.00 1 5459 \N +209434 2025-08-14 03:51:34.127266+00 2025-08-14 03:51:34.127278+00 f t DESCUENTO 0.00 2 5459 \N +209435 2025-08-14 03:51:34.129186+00 2025-08-14 03:51:34.129198+00 f t TOTAL 0.00 3 5459 \N +209436 2025-08-14 03:51:34.130994+00 2025-08-14 03:51:34.131007+00 f t ADELANTO 0.00 4 5459 \N +204717 2025-08-12 13:46:32.522034+00 2025-08-12 13:46:32.522045+00 f t SUBTOTAL 100000.00 1 5341 \N +204718 2025-08-12 13:46:32.524515+00 2025-08-12 13:46:32.524528+00 f t DESCUENTO 0.00 2 5341 \N +204719 2025-08-12 13:46:32.526527+00 2025-08-12 13:46:32.526539+00 f t TOTAL 100000.00 3 5341 \N +204720 2025-08-12 13:46:32.528766+00 2025-08-12 13:46:32.528775+00 f t ADELANTO 20000.00 4 5341 \N +205289 2025-08-12 19:34:03.143411+00 2025-08-12 19:34:03.143425+00 f t SUBTOTAL 0.00 1 5359 \N +205290 2025-08-12 19:34:03.14734+00 2025-08-12 19:34:03.147355+00 f t DESCUENTO 0.00 2 5359 \N +205291 2025-08-12 19:34:03.153643+00 2025-08-12 19:34:03.153657+00 f t TOTAL 0.00 3 5359 \N +205292 2025-08-12 19:34:03.156182+00 2025-08-12 19:34:03.156193+00 f t ADELANTO 0.00 4 5359 \N +205405 2025-08-12 20:18:52.538575+00 2025-08-12 20:18:52.538584+00 f t SUBTOTAL 95000.00 1 5361 \N +205406 2025-08-12 20:18:52.541309+00 2025-08-12 20:18:52.541323+00 f t DESCUENTO 0.00 2 5361 \N +205407 2025-08-12 20:18:52.543834+00 2025-08-12 20:18:52.543862+00 f t TOTAL 95000.00 3 5361 \N +205408 2025-08-12 20:18:52.546128+00 2025-08-12 20:18:52.546139+00 f t ADELANTO 10000.00 4 5361 \N +200737 2025-08-11 04:12:48.638555+00 2025-08-11 04:12:48.638565+00 f t SUBTOTAL 0.00 1 5242 \N +200738 2025-08-11 04:12:48.642705+00 2025-08-11 04:12:48.642715+00 f t DESCUENTO 0.00 2 5242 \N +200739 2025-08-11 04:12:48.644883+00 2025-08-11 04:12:48.644896+00 f t TOTAL 0.00 3 5242 \N +200740 2025-08-11 04:12:48.6468+00 2025-08-11 04:12:48.646809+00 f t ADELANTO 0.00 4 5242 \N +198553 2025-08-10 00:30:20.634289+00 2025-08-10 00:30:20.634303+00 f t SUBTOTAL 42000.00 1 5191 \N +198554 2025-08-10 00:30:20.64155+00 2025-08-10 00:30:20.641565+00 f t DESCUENTO 0.00 2 5191 \N +198555 2025-08-10 00:30:20.659321+00 2025-08-10 00:30:20.659333+00 f t TOTAL 42000.00 3 5191 \N +198556 2025-08-10 00:30:20.662242+00 2025-08-10 00:30:20.662256+00 f t ADELANTO 9500.00 4 5191 \N +198585 2025-08-10 00:38:52.804996+00 2025-08-10 00:38:52.805008+00 f t SUBTOTAL 50000.00 1 5192 \N +198586 2025-08-10 00:38:52.807516+00 2025-08-10 00:38:52.807528+00 f t DESCUENTO 0.00 2 5192 \N +198587 2025-08-10 00:38:52.809627+00 2025-08-10 00:38:52.809635+00 f t TOTAL 50000.00 3 5192 \N +198588 2025-08-10 00:38:52.81131+00 2025-08-10 00:38:52.811317+00 f t ADELANTO 10000.00 4 5192 \N +198601 2025-08-10 00:42:32.18909+00 2025-08-10 00:42:32.1891+00 f t SUBTOTAL 0.00 1 5193 \N +198602 2025-08-10 00:42:32.191027+00 2025-08-10 00:42:32.191038+00 f t DESCUENTO 0.00 2 5193 \N +198603 2025-08-10 00:42:32.192768+00 2025-08-10 00:42:32.192776+00 f t TOTAL 0.00 3 5193 \N +198604 2025-08-10 00:42:32.194462+00 2025-08-10 00:42:32.194469+00 f t ADELANTO 0.00 4 5193 \N +201393 2025-08-11 14:06:19.083605+00 2025-08-11 14:06:19.083615+00 f t SUBTOTAL 0.00 1 5254 \N +201394 2025-08-11 14:06:19.08603+00 2025-08-11 14:06:19.086039+00 f t DESCUENTO 0.00 2 5254 \N +201395 2025-08-11 14:06:19.087957+00 2025-08-11 14:06:19.087966+00 f t TOTAL 0.00 3 5254 \N +201396 2025-08-11 14:06:19.089908+00 2025-08-11 14:06:19.089918+00 f t ADELANTO 0.00 4 5254 \N +198633 2025-08-10 01:00:13.041355+00 2025-08-10 01:00:13.041369+00 f t SUBTOTAL 50000.00 1 5194 \N +198634 2025-08-10 01:00:13.04798+00 2025-08-10 01:00:13.047994+00 f t DESCUENTO 0.00 2 5194 \N +198635 2025-08-10 01:00:13.052806+00 2025-08-10 01:00:13.052819+00 f t TOTAL 50000.00 3 5194 \N +198636 2025-08-10 01:00:13.05631+00 2025-08-10 01:00:13.056324+00 f t ADELANTO 10000.00 4 5194 \N +201925 2025-08-11 16:54:01.024247+00 2025-08-11 16:54:01.024261+00 f t SUBTOTAL 0.00 1 5266 \N +201926 2025-08-11 16:54:01.027368+00 2025-08-11 16:54:01.02738+00 f t DESCUENTO 0.00 2 5266 \N +201927 2025-08-11 16:54:01.030175+00 2025-08-11 16:54:01.03019+00 f t TOTAL 0.00 3 5266 \N +201928 2025-08-11 16:54:01.032959+00 2025-08-11 16:54:01.032973+00 f t ADELANTO 0.00 4 5266 \N +198685 2025-08-10 01:05:14.077919+00 2025-08-10 01:05:14.077932+00 f t SUBTOTAL 42000.00 1 5195 \N +198686 2025-08-10 01:05:14.080619+00 2025-08-10 01:05:14.080632+00 f t DESCUENTO 0.00 2 5195 \N +198687 2025-08-10 01:05:14.089216+00 2025-08-10 01:05:14.089225+00 f t TOTAL 42000.00 3 5195 \N +198688 2025-08-10 01:05:14.09258+00 2025-08-10 01:05:14.092593+00 f t ADELANTO 9500.00 4 5195 \N +202121 2025-08-11 19:17:36.766629+00 2025-08-11 19:17:36.766642+00 f t SUBTOTAL 0.00 1 5275 \N +202122 2025-08-11 19:17:36.768854+00 2025-08-11 19:17:36.768864+00 f t DESCUENTO 0.00 2 5275 \N +202123 2025-08-11 19:17:36.771179+00 2025-08-11 19:17:36.771191+00 f t TOTAL 0.00 3 5275 \N +202124 2025-08-11 19:17:36.774485+00 2025-08-11 19:17:36.774498+00 f t ADELANTO 0.00 4 5275 \N +202209 2025-08-11 19:57:04.531898+00 2025-08-11 19:57:04.531912+00 f t SUBTOTAL 0.00 1 5277 \N +202210 2025-08-11 19:57:04.534216+00 2025-08-11 19:57:04.534224+00 f t DESCUENTO 0.00 2 5277 \N +202211 2025-08-11 19:57:04.536395+00 2025-08-11 19:57:04.536407+00 f t TOTAL 0.00 3 5277 \N +202212 2025-08-11 19:57:04.538348+00 2025-08-11 19:57:04.538358+00 f t ADELANTO 0.00 4 5277 \N +198725 2025-08-10 01:50:49.088725+00 2025-08-10 01:50:49.08874+00 f t SUBTOTAL 50000.00 1 5196 \N +198726 2025-08-10 01:50:49.091099+00 2025-08-10 01:50:49.091111+00 f t DESCUENTO 0.00 2 5196 \N +198727 2025-08-10 01:50:49.093018+00 2025-08-10 01:50:49.093028+00 f t TOTAL 50000.00 3 5196 \N +198728 2025-08-10 01:50:49.094672+00 2025-08-10 01:50:49.094682+00 f t ADELANTO 10000.00 4 5196 \N +202641 2025-08-11 22:31:03.14837+00 2025-08-11 22:31:03.148385+00 f t SUBTOTAL 0.00 1 5296 \N +202642 2025-08-11 22:31:03.152733+00 2025-08-11 22:31:03.152748+00 f t DESCUENTO 0.00 2 5296 \N +199609 2025-08-10 16:25:39.793508+00 2025-08-10 16:25:39.79352+00 f t SUBTOTAL 64500.00 1 5213 \N +199610 2025-08-10 16:25:39.800191+00 2025-08-10 16:25:39.800205+00 f t DESCUENTO 0.00 2 5213 \N +199611 2025-08-10 16:25:39.804768+00 2025-08-10 16:25:39.804782+00 f t TOTAL 64500.00 3 5213 \N +199612 2025-08-10 16:25:39.806915+00 2025-08-10 16:25:39.806926+00 f t ADELANTO 17000.00 4 5213 \N +219212 2025-08-17 17:57:36.820325+00 2025-08-17 17:57:36.820337+00 f t ADELANTO 9500.00 4 5698 \N +219319 2025-08-17 18:16:41.034153+00 2025-08-17 18:16:41.034161+00 f t TOTAL 50000.00 3 5700 \N +214376 2025-08-15 19:11:50.752896+00 2025-08-15 19:11:50.752905+00 f t ADELANTO 9500.00 4 5585 \N +199921 2025-08-10 18:59:28.353837+00 2025-08-10 18:59:28.353852+00 f t SUBTOTAL 0.00 1 5221 \N +199922 2025-08-10 18:59:28.356418+00 2025-08-10 18:59:28.356436+00 f t DESCUENTO 0.00 2 5221 \N +199923 2025-08-10 18:59:28.358561+00 2025-08-10 18:59:28.358574+00 f t TOTAL 0.00 3 5221 \N +199924 2025-08-10 18:59:28.360927+00 2025-08-10 18:59:28.360939+00 f t ADELANTO 0.00 4 5221 \N +205001 2025-08-12 16:40:31.219348+00 2025-08-12 16:40:31.219361+00 f t SUBTOTAL 72000.00 1 5346 \N +205002 2025-08-12 16:40:31.226888+00 2025-08-12 16:40:31.226903+00 f t DESCUENTO 0.00 2 5346 \N +205003 2025-08-12 16:40:31.235503+00 2025-08-12 16:40:31.235516+00 f t TOTAL 72000.00 3 5346 \N +205004 2025-08-12 16:40:31.238258+00 2025-08-12 16:40:31.238272+00 f t ADELANTO 19000.00 4 5346 \N +200605 2025-08-10 22:58:07.385169+00 2025-08-10 22:58:07.385179+00 f t SUBTOTAL 50000.00 1 5236 \N +200606 2025-08-10 22:58:07.387961+00 2025-08-10 22:58:07.387974+00 f t DESCUENTO 0.00 2 5236 \N +200607 2025-08-10 22:58:07.391603+00 2025-08-10 22:58:07.391616+00 f t TOTAL 50000.00 3 5236 \N +200608 2025-08-10 22:58:07.39407+00 2025-08-10 22:58:07.394083+00 f t ADELANTO 10000.00 4 5236 \N +200857 2025-08-11 10:43:17.166755+00 2025-08-11 10:43:17.16677+00 f t SUBTOTAL 0.00 1 5245 \N +200858 2025-08-11 10:43:17.169922+00 2025-08-11 10:43:17.169936+00 f t DESCUENTO 0.00 2 5245 \N +200859 2025-08-11 10:43:17.172306+00 2025-08-11 10:43:17.172315+00 f t TOTAL 0.00 3 5245 \N +200860 2025-08-11 10:43:17.17425+00 2025-08-11 10:43:17.174264+00 f t ADELANTO 0.00 4 5245 \N +201245 2025-08-11 13:41:00.898531+00 2025-08-11 13:41:00.898541+00 f t SUBTOTAL 0.00 1 5251 \N +201246 2025-08-11 13:41:00.902644+00 2025-08-11 13:41:00.902655+00 f t DESCUENTO 0.00 2 5251 \N +201247 2025-08-11 13:41:00.904822+00 2025-08-11 13:41:00.904833+00 f t TOTAL 0.00 3 5251 \N +201248 2025-08-11 13:41:00.906804+00 2025-08-11 13:41:00.906813+00 f t ADELANTO 0.00 4 5251 \N +201401 2025-08-11 14:06:22.488793+00 2025-08-11 14:06:22.488807+00 f t SUBTOTAL 0.00 1 5255 \N +201402 2025-08-11 14:06:22.491291+00 2025-08-11 14:06:22.491305+00 f t DESCUENTO 0.00 2 5255 \N +201403 2025-08-11 14:06:22.495249+00 2025-08-11 14:06:22.495261+00 f t TOTAL 0.00 3 5255 \N +201404 2025-08-11 14:06:22.49894+00 2025-08-11 14:06:22.498954+00 f t ADELANTO 0.00 4 5255 \N +205997 2025-08-13 00:58:42.930314+00 2025-08-13 00:58:42.930327+00 f t SUBTOTAL 0.00 1 5379 \N +205998 2025-08-13 00:58:42.932762+00 2025-08-13 00:58:42.932773+00 f t DESCUENTO 0.00 2 5379 \N +205999 2025-08-13 00:58:42.934529+00 2025-08-13 00:58:42.934539+00 f t TOTAL 0.00 3 5379 \N +206000 2025-08-13 00:58:42.93599+00 2025-08-13 00:58:42.935999+00 f t ADELANTO 0.00 4 5379 \N +201549 2025-08-11 14:14:47.811809+00 2025-08-11 14:14:47.811821+00 f t SUBTOTAL 42000.00 1 5256 \N +201550 2025-08-11 14:14:47.814287+00 2025-08-11 14:14:47.814296+00 f t DESCUENTO 0.00 2 5256 \N +201551 2025-08-11 14:14:47.815906+00 2025-08-11 14:14:47.815915+00 f t TOTAL 42000.00 3 5256 \N +201552 2025-08-11 14:14:47.817438+00 2025-08-11 14:14:47.817445+00 f t ADELANTO 9500.00 4 5256 \N +198905 2025-08-10 02:14:36.841893+00 2025-08-10 02:14:36.841917+00 f t SUBTOTAL 49700.00 1 5197 \N +198906 2025-08-10 02:14:36.844542+00 2025-08-10 02:14:36.844555+00 f t DESCUENTO 0.00 2 5197 \N +198907 2025-08-10 02:14:36.846806+00 2025-08-10 02:14:36.846817+00 f t TOTAL 49700.00 3 5197 \N +198908 2025-08-10 02:14:36.850169+00 2025-08-10 02:14:36.850181+00 f t ADELANTO 11700.00 4 5197 \N +201705 2025-08-11 16:03:38.121882+00 2025-08-11 16:03:38.121896+00 f t SUBTOTAL 64500.00 1 5261 \N +201706 2025-08-11 16:03:38.127196+00 2025-08-11 16:03:38.12721+00 f t DESCUENTO 0.00 2 5261 \N +201707 2025-08-11 16:03:38.129507+00 2025-08-11 16:03:38.129516+00 f t TOTAL 64500.00 3 5261 \N +201708 2025-08-11 16:03:38.131771+00 2025-08-11 16:03:38.131784+00 f t ADELANTO 17000.00 4 5261 \N +201845 2025-08-11 16:34:04.903972+00 2025-08-11 16:34:04.903987+00 f t SUBTOTAL 0.00 1 5264 \N +201846 2025-08-11 16:34:04.913413+00 2025-08-11 16:34:04.913428+00 f t DESCUENTO 0.00 2 5264 \N +201847 2025-08-11 16:34:04.917886+00 2025-08-11 16:34:04.9179+00 f t TOTAL 0.00 3 5264 \N +201848 2025-08-11 16:34:04.921039+00 2025-08-11 16:34:04.921052+00 f t ADELANTO 0.00 4 5264 \N +201933 2025-08-11 16:54:31.556507+00 2025-08-11 16:54:31.556521+00 f t SUBTOTAL 0.00 1 5267 \N +201934 2025-08-11 16:54:31.558654+00 2025-08-11 16:54:31.558667+00 f t DESCUENTO 0.00 2 5267 \N +201935 2025-08-11 16:54:31.560729+00 2025-08-11 16:54:31.56074+00 f t TOTAL 0.00 3 5267 \N +201936 2025-08-11 16:54:31.562496+00 2025-08-11 16:54:31.562504+00 f t ADELANTO 0.00 4 5267 \N +206317 2025-08-13 02:46:19.405694+00 2025-08-13 02:46:19.405708+00 f t SUBTOTAL 42000.00 1 5386 \N +206318 2025-08-13 02:46:19.408577+00 2025-08-13 02:46:19.408591+00 f t DESCUENTO 0.00 2 5386 \N +206319 2025-08-13 02:46:19.410908+00 2025-08-13 02:46:19.41092+00 f t TOTAL 42000.00 3 5386 \N +206320 2025-08-13 02:46:19.413121+00 2025-08-13 02:46:19.413134+00 f t ADELANTO 9500.00 4 5386 \N +198953 2025-08-10 03:51:34.917703+00 2025-08-10 03:51:34.917714+00 f t SUBTOTAL 42000.00 1 5198 \N +198954 2025-08-10 03:51:34.920423+00 2025-08-10 03:51:34.920437+00 f t DESCUENTO 0.00 2 5198 \N +198955 2025-08-10 03:51:34.922987+00 2025-08-10 03:51:34.923001+00 f t TOTAL 42000.00 3 5198 \N +198956 2025-08-10 03:51:34.925455+00 2025-08-10 03:51:34.925465+00 f t ADELANTO 9500.00 4 5198 \N +198981 2025-08-10 03:54:30.638859+00 2025-08-10 03:54:30.638871+00 f t SUBTOTAL 27500.00 1 5199 \N +198982 2025-08-10 03:54:30.641373+00 2025-08-10 03:54:30.641382+00 f t DESCUENTO 0.00 2 5199 \N +198983 2025-08-10 03:54:30.643414+00 2025-08-10 03:54:30.643428+00 f t TOTAL 27500.00 3 5199 \N +198984 2025-08-10 03:54:30.645393+00 2025-08-10 03:54:30.645405+00 f t ADELANTO 27500.00 4 5199 \N +206793 2025-08-13 11:22:06.553533+00 2025-08-13 11:22:06.553545+00 f t SUBTOTAL 68000.00 1 5395 \N +206794 2025-08-13 11:22:06.556134+00 2025-08-13 11:22:06.556148+00 f t DESCUENTO 0.00 2 5395 \N +206795 2025-08-13 11:22:06.558636+00 2025-08-13 11:22:06.558645+00 f t TOTAL 68000.00 3 5395 \N +206796 2025-08-13 11:22:06.561175+00 2025-08-13 11:22:06.561185+00 f t ADELANTO 13000.00 4 5395 \N +207001 2025-08-13 12:50:55.856534+00 2025-08-13 12:50:55.856547+00 f t SUBTOTAL 0.00 1 5401 \N +207002 2025-08-13 12:50:55.860333+00 2025-08-13 12:50:55.860343+00 f t DESCUENTO 0.00 2 5401 \N +207003 2025-08-13 12:50:55.862211+00 2025-08-13 12:50:55.862219+00 f t TOTAL 0.00 3 5401 \N +207004 2025-08-13 12:50:55.864053+00 2025-08-13 12:50:55.864061+00 f t ADELANTO 0.00 4 5401 \N +202643 2025-08-11 22:31:03.156944+00 2025-08-11 22:31:03.157122+00 f t TOTAL 0.00 3 5296 \N +202644 2025-08-11 22:31:03.161131+00 2025-08-11 22:31:03.161147+00 f t ADELANTO 0.00 4 5296 \N +199025 2025-08-10 05:48:30.153832+00 2025-08-10 05:48:30.153847+00 f t SUBTOTAL 0.00 1 5200 \N +199026 2025-08-10 05:48:30.156479+00 2025-08-10 05:48:30.156491+00 f t DESCUENTO 0.00 2 5200 \N +199027 2025-08-10 05:48:30.158535+00 2025-08-10 05:48:30.158546+00 f t TOTAL 0.00 3 5200 \N +199028 2025-08-10 05:48:30.160465+00 2025-08-10 05:48:30.160475+00 f t ADELANTO 0.00 4 5200 \N +199053 2025-08-10 06:15:34.353992+00 2025-08-10 06:15:34.354007+00 f t SUBTOTAL 42000.00 1 5201 \N +199054 2025-08-10 06:15:34.357311+00 2025-08-10 06:15:34.357321+00 f t DESCUENTO 0.00 2 5201 \N +199055 2025-08-10 06:15:34.359573+00 2025-08-10 06:15:34.359585+00 f t TOTAL 42000.00 3 5201 \N +199056 2025-08-10 06:15:34.361809+00 2025-08-10 06:15:34.361819+00 f t ADELANTO 9500.00 4 5201 \N +199061 2025-08-10 06:28:03.683221+00 2025-08-10 06:28:03.683234+00 f t SUBTOTAL 0.00 1 5202 \N +199062 2025-08-10 06:28:03.685687+00 2025-08-10 06:28:03.685697+00 f t DESCUENTO 0.00 2 5202 \N +199063 2025-08-10 06:28:03.687778+00 2025-08-10 06:28:03.68779+00 f t TOTAL 0.00 3 5202 \N +199064 2025-08-10 06:28:03.690144+00 2025-08-10 06:28:03.690154+00 f t ADELANTO 0.00 4 5202 \N +235769 2025-08-23 20:38:48.794413+00 2025-08-23 20:38:48.794421+00 f t SUBTOTAL 50000.00 1 6098 \N +235770 2025-08-23 20:38:48.796409+00 2025-08-23 20:38:48.796416+00 f t DESCUENTO 0.00 2 6098 \N +235771 2025-08-23 20:38:48.797899+00 2025-08-23 20:38:48.797909+00 f t TOTAL 50000.00 3 6098 \N +235772 2025-08-23 20:38:48.799381+00 2025-08-23 20:38:48.79939+00 f t ADELANTO 10000.00 4 6098 \N +200205 2025-08-10 21:02:47.489801+00 2025-08-10 21:02:47.489814+00 f t SUBTOTAL 0.00 1 5226 \N +200206 2025-08-10 21:02:47.495049+00 2025-08-10 21:02:47.495063+00 f t DESCUENTO 0.00 2 5226 \N +200207 2025-08-10 21:02:47.497027+00 2025-08-10 21:02:47.497037+00 f t TOTAL 0.00 3 5226 \N +200208 2025-08-10 21:02:47.498748+00 2025-08-10 21:02:47.498756+00 f t ADELANTO 0.00 4 5226 \N +209881 2025-08-14 05:22:21.363632+00 2025-08-14 05:22:21.363642+00 f t SUBTOTAL 95700.00 1 5467 \N +209882 2025-08-14 05:22:21.365649+00 2025-08-14 05:22:21.36566+00 f t DESCUENTO 0.00 2 5467 \N +209883 2025-08-14 05:22:21.367699+00 2025-08-14 05:22:21.36771+00 f t TOTAL 95700.00 3 5467 \N +209884 2025-08-14 05:22:21.369329+00 2025-08-14 05:22:21.369339+00 f t ADELANTO 57700.00 4 5467 \N +205421 2025-08-12 20:47:11.802689+00 2025-08-12 20:47:11.802763+00 f t SUBTOTAL 0.00 1 5363 \N +205422 2025-08-12 20:47:11.806381+00 2025-08-12 20:47:11.806393+00 f t DESCUENTO 0.00 2 5363 \N +205423 2025-08-12 20:47:11.811943+00 2025-08-12 20:47:11.811958+00 f t TOTAL 0.00 3 5363 \N +205424 2025-08-12 20:47:11.817684+00 2025-08-12 20:47:11.817698+00 f t ADELANTO 0.00 4 5363 \N +205473 2025-08-12 20:48:00.006519+00 2025-08-12 20:48:00.006533+00 f t SUBTOTAL 0.00 1 5362 \N +205474 2025-08-12 20:48:00.010354+00 2025-08-12 20:48:00.010368+00 f t DESCUENTO 0.00 2 5362 \N +205475 2025-08-12 20:48:00.014279+00 2025-08-12 20:48:00.014292+00 f t TOTAL 0.00 3 5362 \N +205476 2025-08-12 20:48:00.017487+00 2025-08-12 20:48:00.017495+00 f t ADELANTO 0.00 4 5362 \N +205541 2025-08-12 22:31:00.776588+00 2025-08-12 22:31:00.776598+00 f t SUBTOTAL 49500.00 1 5367 \N +205542 2025-08-12 22:31:00.780647+00 2025-08-12 22:31:00.780661+00 f t DESCUENTO 0.00 2 5367 \N +205543 2025-08-12 22:31:00.785295+00 2025-08-12 22:31:00.785311+00 f t TOTAL 49500.00 3 5367 \N +205544 2025-08-12 22:31:00.792832+00 2025-08-12 22:31:00.792848+00 f t ADELANTO 11500.00 4 5367 \N +210185 2025-08-14 13:22:41.773069+00 2025-08-14 13:22:41.773079+00 f t SUBTOTAL 0.00 1 5478 \N +205713 2025-08-12 23:16:09.721072+00 2025-08-12 23:16:09.721084+00 f t SUBTOTAL 0.00 1 5371 \N +205714 2025-08-12 23:16:09.724218+00 2025-08-12 23:16:09.72423+00 f t DESCUENTO 0.00 2 5371 \N +205715 2025-08-12 23:16:09.727545+00 2025-08-12 23:16:09.727557+00 f t TOTAL 0.00 3 5371 \N +205716 2025-08-12 23:16:09.732292+00 2025-08-12 23:16:09.732306+00 f t ADELANTO 0.00 4 5371 \N +199149 2025-08-10 07:21:55.224605+00 2025-08-10 07:21:55.22462+00 f t SUBTOTAL 50000.00 1 5203 \N +199150 2025-08-10 07:21:55.226716+00 2025-08-10 07:21:55.226727+00 f t DESCUENTO 0.00 2 5203 \N +199151 2025-08-10 07:21:55.228775+00 2025-08-10 07:21:55.228784+00 f t TOTAL 50000.00 3 5203 \N +199152 2025-08-10 07:21:55.230595+00 2025-08-10 07:21:55.230606+00 f t ADELANTO 10000.00 4 5203 \N +199157 2025-08-10 11:51:14.564211+00 2025-08-10 11:51:14.564226+00 f t SUBTOTAL 0.00 1 5204 \N +199158 2025-08-10 11:51:14.566746+00 2025-08-10 11:51:14.566767+00 f t DESCUENTO 0.00 2 5204 \N +199159 2025-08-10 11:51:14.569271+00 2025-08-10 11:51:14.569284+00 f t TOTAL 0.00 3 5204 \N +199160 2025-08-10 11:51:14.571174+00 2025-08-10 11:51:14.571187+00 f t ADELANTO 0.00 4 5204 \N +199165 2025-08-10 13:17:07.196442+00 2025-08-10 13:17:07.196453+00 f t SUBTOTAL 0.00 1 5205 \N +199166 2025-08-10 13:17:07.202349+00 2025-08-10 13:17:07.202365+00 f t DESCUENTO 0.00 2 5205 \N +199167 2025-08-10 13:17:07.204795+00 2025-08-10 13:17:07.204808+00 f t TOTAL 0.00 3 5205 \N +199168 2025-08-10 13:17:07.206862+00 2025-08-10 13:17:07.206874+00 f t ADELANTO 0.00 4 5205 \N +201345 2025-08-11 13:43:58.660309+00 2025-08-11 13:43:58.660324+00 f t SUBTOTAL 42000.00 1 5252 \N +201346 2025-08-11 13:43:58.662895+00 2025-08-11 13:43:58.662908+00 f t DESCUENTO 0.00 2 5252 \N +201347 2025-08-11 13:43:58.665437+00 2025-08-11 13:43:58.665451+00 f t TOTAL 42000.00 3 5252 \N +201348 2025-08-11 13:43:58.667446+00 2025-08-11 13:43:58.667458+00 f t ADELANTO 9500.00 4 5252 \N +201557 2025-08-11 14:26:20.700059+00 2025-08-11 14:26:20.700073+00 f t SUBTOTAL 0.00 1 5257 \N +201558 2025-08-11 14:26:20.702377+00 2025-08-11 14:26:20.702389+00 f t DESCUENTO 0.00 2 5257 \N +201559 2025-08-11 14:26:20.704752+00 2025-08-11 14:26:20.704764+00 f t TOTAL 0.00 3 5257 \N +201560 2025-08-11 14:26:20.711281+00 2025-08-11 14:26:20.711296+00 f t ADELANTO 0.00 4 5257 \N +201985 2025-08-11 17:59:41.428435+00 2025-08-11 17:59:41.428448+00 f t SUBTOTAL 0.00 1 5269 \N +201986 2025-08-11 17:59:41.431943+00 2025-08-11 17:59:41.431957+00 f t DESCUENTO 0.00 2 5269 \N +201987 2025-08-11 17:59:41.43438+00 2025-08-11 17:59:41.434392+00 f t TOTAL 0.00 3 5269 \N +201988 2025-08-11 17:59:41.436674+00 2025-08-11 17:59:41.436686+00 f t ADELANTO 0.00 4 5269 \N +202037 2025-08-11 18:25:29.745036+00 2025-08-11 18:25:29.745053+00 f t SUBTOTAL 0.00 1 5272 \N +202038 2025-08-11 18:25:29.749954+00 2025-08-11 18:25:29.749965+00 f t DESCUENTO 0.00 2 5272 \N +202039 2025-08-11 18:25:29.752548+00 2025-08-11 18:25:29.752558+00 f t TOTAL 0.00 3 5272 \N +202040 2025-08-11 18:25:29.755221+00 2025-08-11 18:25:29.755235+00 f t ADELANTO 0.00 4 5272 \N +206801 2025-08-13 11:45:49.142108+00 2025-08-13 11:45:49.142121+00 f t SUBTOTAL 0.00 1 5396 \N +206802 2025-08-13 11:45:49.145074+00 2025-08-13 11:45:49.145088+00 f t DESCUENTO 0.00 2 5396 \N +206803 2025-08-13 11:45:49.147664+00 2025-08-13 11:45:49.147674+00 f t TOTAL 0.00 3 5396 \N +206804 2025-08-13 11:45:49.149906+00 2025-08-13 11:45:49.149916+00 f t ADELANTO 0.00 4 5396 \N +202313 2025-08-11 20:25:58.913542+00 2025-08-11 20:25:58.913555+00 f t SUBTOTAL 0.00 1 5281 \N +202314 2025-08-11 20:25:58.917159+00 2025-08-11 20:25:58.917174+00 f t DESCUENTO 0.00 2 5281 \N +202315 2025-08-11 20:25:58.919208+00 2025-08-11 20:25:58.91922+00 f t TOTAL 0.00 3 5281 \N +202316 2025-08-11 20:25:58.921343+00 2025-08-11 20:25:58.921353+00 f t ADELANTO 0.00 4 5281 \N +199293 2025-08-10 14:00:49.682357+00 2025-08-10 14:00:49.682369+00 f t SUBTOTAL 42000.00 1 5206 \N +199294 2025-08-10 14:00:49.685277+00 2025-08-10 14:00:49.685287+00 f t DESCUENTO 0.00 2 5206 \N +199295 2025-08-10 14:00:49.687726+00 2025-08-10 14:00:49.687736+00 f t TOTAL 42000.00 3 5206 \N +199296 2025-08-10 14:00:49.692034+00 2025-08-10 14:00:49.692047+00 f t ADELANTO 9500.00 4 5206 \N +207085 2025-08-13 12:56:00.168353+00 2025-08-13 12:56:00.168365+00 f t SUBTOTAL 0.00 1 5405 \N +207086 2025-08-13 12:56:00.171037+00 2025-08-13 12:56:00.171045+00 f t DESCUENTO 0.00 2 5405 \N +207087 2025-08-13 12:56:00.172993+00 2025-08-13 12:56:00.173001+00 f t TOTAL 0.00 3 5405 \N +207088 2025-08-13 12:56:00.175284+00 2025-08-13 12:56:00.175293+00 f t ADELANTO 0.00 4 5405 \N +199617 2025-08-10 16:25:49.660967+00 2025-08-10 16:25:49.660976+00 f t SUBTOTAL 0.00 1 5212 \N +199618 2025-08-10 16:25:49.662766+00 2025-08-10 16:25:49.662774+00 f t DESCUENTO 0.00 2 5212 \N +199337 2025-08-10 14:10:30.364077+00 2025-08-10 14:10:30.364087+00 f t SUBTOTAL 49500.00 1 5207 \N +199338 2025-08-10 14:10:30.366202+00 2025-08-10 14:10:30.366212+00 f t DESCUENTO 0.00 2 5207 \N +199339 2025-08-10 14:10:30.368274+00 2025-08-10 14:10:30.368286+00 f t TOTAL 49500.00 3 5207 \N +199340 2025-08-10 14:10:30.370136+00 2025-08-10 14:10:30.370145+00 f t ADELANTO 11500.00 4 5207 \N +199619 2025-08-10 16:25:49.663976+00 2025-08-10 16:25:49.663984+00 f t TOTAL 0.00 3 5212 \N +199620 2025-08-10 16:25:49.665317+00 2025-08-10 16:25:49.665325+00 f t ADELANTO 0.00 4 5212 \N +199705 2025-08-10 16:32:13.40506+00 2025-08-10 16:32:13.405074+00 f t SUBTOTAL 64500.00 1 5214 \N +199706 2025-08-10 16:32:13.407578+00 2025-08-10 16:32:13.407587+00 f t DESCUENTO 0.00 2 5214 \N +199707 2025-08-10 16:32:13.409504+00 2025-08-10 16:32:13.409515+00 f t TOTAL 64500.00 3 5214 \N +199708 2025-08-10 16:32:13.411468+00 2025-08-10 16:32:13.41149+00 f t ADELANTO 17000.00 4 5214 \N +199853 2025-08-10 17:04:36.960982+00 2025-08-10 17:04:36.960991+00 f t SUBTOTAL 50000.00 1 5218 \N +199854 2025-08-10 17:04:36.963048+00 2025-08-10 17:04:36.963057+00 f t DESCUENTO 0.00 2 5218 \N +199855 2025-08-10 17:04:36.964572+00 2025-08-10 17:04:36.964579+00 f t TOTAL 50000.00 3 5218 \N +199856 2025-08-10 17:04:36.965958+00 2025-08-10 17:04:36.965964+00 f t ADELANTO 10000.00 4 5218 \N +204869 2025-08-12 16:00:58.257867+00 2025-08-12 16:00:58.257882+00 f t SUBTOTAL 94200.00 1 5344 \N +204870 2025-08-12 16:00:58.263559+00 2025-08-12 16:00:58.263572+00 f t DESCUENTO 0.00 2 5344 \N +204871 2025-08-12 16:00:58.266889+00 2025-08-12 16:00:58.266904+00 f t TOTAL 94200.00 3 5344 \N +204872 2025-08-12 16:00:58.271755+00 2025-08-12 16:00:58.271768+00 f t ADELANTO 56200.00 4 5344 \N +205009 2025-08-12 16:40:53.255574+00 2025-08-12 16:40:53.255585+00 f t SUBTOTAL 0.00 1 5347 \N +205010 2025-08-12 16:40:53.258191+00 2025-08-12 16:40:53.258204+00 f t DESCUENTO 0.00 2 5347 \N +205011 2025-08-12 16:40:53.260454+00 2025-08-12 16:40:53.260464+00 f t TOTAL 0.00 3 5347 \N +205012 2025-08-12 16:40:53.262642+00 2025-08-12 16:40:53.262654+00 f t ADELANTO 0.00 4 5347 \N +205237 2025-08-12 19:13:31.216638+00 2025-08-12 19:13:31.216653+00 f t SUBTOTAL 50000.00 1 5357 \N +205238 2025-08-12 19:13:31.219876+00 2025-08-12 19:13:31.219889+00 f t DESCUENTO 0.00 2 5357 \N +205239 2025-08-12 19:13:31.222128+00 2025-08-12 19:13:31.222139+00 f t TOTAL 50000.00 3 5357 \N +205240 2025-08-12 19:13:31.224442+00 2025-08-12 19:13:31.224453+00 f t ADELANTO 10000.00 4 5357 \N +200685 2025-08-11 00:19:52.539252+00 2025-08-11 00:19:52.539262+00 f t SUBTOTAL 0.00 1 5239 \N +200686 2025-08-11 00:19:52.542898+00 2025-08-11 00:19:52.542908+00 f t DESCUENTO 0.00 2 5239 \N +200687 2025-08-11 00:19:52.545364+00 2025-08-11 00:19:52.545376+00 f t TOTAL 0.00 3 5239 \N +200688 2025-08-11 00:19:52.548136+00 2025-08-11 00:19:52.548149+00 f t ADELANTO 0.00 4 5239 \N +205481 2025-08-12 21:01:51.679881+00 2025-08-12 21:01:51.679894+00 f t SUBTOTAL 0.00 1 5364 \N +205482 2025-08-12 21:01:51.681859+00 2025-08-12 21:01:51.681867+00 f t DESCUENTO 0.00 2 5364 \N +205483 2025-08-12 21:01:51.685702+00 2025-08-12 21:01:51.685715+00 f t TOTAL 0.00 3 5364 \N +205484 2025-08-12 21:01:51.68774+00 2025-08-12 21:01:51.687749+00 f t ADELANTO 0.00 4 5364 \N +205609 2025-08-12 22:57:37.292049+00 2025-08-12 22:57:37.292062+00 f t SUBTOTAL 0.00 1 5370 \N +205610 2025-08-12 22:57:37.295222+00 2025-08-12 22:57:37.29523+00 f t DESCUENTO 0.00 2 5370 \N +205611 2025-08-12 22:57:37.297421+00 2025-08-12 22:57:37.297432+00 f t TOTAL 0.00 3 5370 \N +205612 2025-08-12 22:57:37.299464+00 2025-08-12 22:57:37.299475+00 f t ADELANTO 0.00 4 5370 \N +201193 2025-08-11 13:06:09.760398+00 2025-08-11 13:06:09.760411+00 f t SUBTOTAL 50000.00 1 5249 \N +201194 2025-08-11 13:06:09.763017+00 2025-08-11 13:06:09.763026+00 f t DESCUENTO 0.00 2 5249 \N +201195 2025-08-11 13:06:09.77022+00 2025-08-11 13:06:09.77023+00 f t TOTAL 50000.00 3 5249 \N +201196 2025-08-11 13:06:09.7724+00 2025-08-11 13:06:09.772413+00 f t ADELANTO 10000.00 4 5249 \N +199445 2025-08-10 14:55:09.708253+00 2025-08-10 14:55:09.708266+00 f t SUBTOTAL 50000.00 1 5208 \N +199446 2025-08-10 14:55:09.71072+00 2025-08-10 14:55:09.710731+00 f t DESCUENTO 0.00 2 5208 \N +199447 2025-08-10 14:55:09.712891+00 2025-08-10 14:55:09.712904+00 f t TOTAL 50000.00 3 5208 \N +199448 2025-08-10 14:55:09.714893+00 2025-08-10 14:55:09.714904+00 f t ADELANTO 10000.00 4 5208 \N +201353 2025-08-11 13:48:25.325875+00 2025-08-11 13:48:25.325891+00 f t SUBTOTAL 0.00 1 5253 \N +201354 2025-08-11 13:48:25.329339+00 2025-08-11 13:48:25.329351+00 f t DESCUENTO 0.00 2 5253 \N +201355 2025-08-11 13:48:25.332337+00 2025-08-11 13:48:25.332349+00 f t TOTAL 0.00 3 5253 \N +201356 2025-08-11 13:48:25.334651+00 2025-08-11 13:48:25.334687+00 f t ADELANTO 0.00 4 5253 \N +205889 2025-08-13 00:21:48.894657+00 2025-08-13 00:21:48.894668+00 f t SUBTOTAL 158250.00 1 5375 \N +205890 2025-08-13 00:21:48.897005+00 2025-08-13 00:21:48.897015+00 f t DESCUENTO 0.00 2 5375 \N +199473 2025-08-10 15:24:58.843344+00 2025-08-10 15:24:58.843354+00 f t SUBTOTAL 42000.00 1 5209 \N +199474 2025-08-10 15:24:58.846186+00 2025-08-10 15:24:58.846199+00 f t DESCUENTO 0.00 2 5209 \N +199475 2025-08-10 15:24:58.848457+00 2025-08-10 15:24:58.84847+00 f t TOTAL 42000.00 3 5209 \N +199476 2025-08-10 15:24:58.850269+00 2025-08-10 15:24:58.850277+00 f t ADELANTO 9500.00 4 5209 \N +205891 2025-08-13 00:21:48.898991+00 2025-08-13 00:21:48.898999+00 f t TOTAL 158250.00 3 5375 \N +205892 2025-08-13 00:21:48.900756+00 2025-08-13 00:21:48.900768+00 f t ADELANTO 35750.00 4 5375 \N +205949 2025-08-13 00:55:48.799959+00 2025-08-13 00:55:48.799968+00 f t SUBTOTAL 64500.00 1 5377 \N +205950 2025-08-13 00:55:48.801925+00 2025-08-13 00:55:48.801932+00 f t DESCUENTO 0.00 2 5377 \N +205951 2025-08-13 00:55:48.80385+00 2025-08-13 00:55:48.803857+00 f t TOTAL 64500.00 3 5377 \N +205952 2025-08-13 00:55:48.805185+00 2025-08-13 00:55:48.805193+00 f t ADELANTO 17000.00 4 5377 \N +206005 2025-08-13 00:58:51.364234+00 2025-08-13 00:58:51.364248+00 f t SUBTOTAL 42000.00 1 5378 \N +201993 2025-08-11 18:16:08.52997+00 2025-08-11 18:16:08.529987+00 f t SUBTOTAL 0.00 1 5270 \N +201994 2025-08-11 18:16:08.532495+00 2025-08-11 18:16:08.532505+00 f t DESCUENTO 0.00 2 5270 \N +201995 2025-08-11 18:16:08.536786+00 2025-08-11 18:16:08.5368+00 f t TOTAL 0.00 3 5270 \N +201996 2025-08-11 18:16:08.563788+00 2025-08-11 18:16:08.563802+00 f t ADELANTO 0.00 4 5270 \N +202321 2025-08-11 20:34:36.480997+00 2025-08-11 20:34:36.481008+00 f t SUBTOTAL 0.00 1 5282 \N +202322 2025-08-11 20:34:36.484094+00 2025-08-11 20:34:36.484108+00 f t DESCUENTO 0.00 2 5282 \N +202323 2025-08-11 20:34:36.488721+00 2025-08-11 20:34:36.488737+00 f t TOTAL 0.00 3 5282 \N +202324 2025-08-11 20:34:36.494514+00 2025-08-11 20:34:36.494526+00 f t ADELANTO 0.00 4 5282 \N +202509 2025-08-11 22:04:22.427025+00 2025-08-11 22:04:22.427039+00 f t SUBTOTAL 49500.00 1 5293 \N +202510 2025-08-11 22:04:22.43047+00 2025-08-11 22:04:22.430483+00 f t DESCUENTO 0.00 2 5293 \N +202511 2025-08-11 22:04:22.438948+00 2025-08-11 22:04:22.438962+00 f t TOTAL 49500.00 3 5293 \N +202512 2025-08-11 22:04:22.454134+00 2025-08-11 22:04:22.454145+00 f t ADELANTO 11500.00 4 5293 \N +202649 2025-08-11 22:31:12.98964+00 2025-08-11 22:31:12.989654+00 f t SUBTOTAL 0.00 1 5295 \N +202650 2025-08-11 22:31:12.993328+00 2025-08-11 22:31:12.993342+00 f t DESCUENTO 0.00 2 5295 \N +202651 2025-08-11 22:31:12.995826+00 2025-08-11 22:31:12.995839+00 f t TOTAL 0.00 3 5295 \N +202652 2025-08-11 22:31:13.000093+00 2025-08-11 22:31:13.000108+00 f t ADELANTO 0.00 4 5295 \N +235029 2025-08-23 14:12:38.279769+00 2025-08-23 14:12:38.279781+00 f t SUBTOTAL 42000.00 1 6083 \N +235030 2025-08-23 14:12:38.28211+00 2025-08-23 14:12:38.282123+00 f t DESCUENTO 0.00 2 6083 \N +235031 2025-08-23 14:12:38.28385+00 2025-08-23 14:12:38.28386+00 f t TOTAL 42000.00 3 6083 \N +202729 2025-08-11 22:33:15.265924+00 2025-08-11 22:33:15.26594+00 f t SUBTOTAL 0.00 1 5297 \N +202730 2025-08-11 22:33:15.269722+00 2025-08-11 22:33:15.269738+00 f t DESCUENTO 0.00 2 5297 \N +202731 2025-08-11 22:33:15.273238+00 2025-08-11 22:33:15.273252+00 f t TOTAL 0.00 3 5297 \N +202732 2025-08-11 22:33:15.276668+00 2025-08-11 22:33:15.276679+00 f t ADELANTO 0.00 4 5297 \N +214713 2025-08-15 22:12:56.788285+00 2025-08-15 22:12:56.788297+00 f t SUBTOTAL 0.00 1 5596 \N +214714 2025-08-15 22:12:56.794698+00 2025-08-15 22:12:56.794708+00 f t DESCUENTO 0.00 2 5596 \N +214715 2025-08-15 22:12:56.796657+00 2025-08-15 22:12:56.796667+00 f t TOTAL 0.00 3 5596 \N +214716 2025-08-15 22:12:56.798597+00 2025-08-15 22:12:56.798603+00 f t ADELANTO 0.00 4 5596 \N +202757 2025-08-11 22:50:38.378631+00 2025-08-11 22:50:38.37864+00 f t SUBTOTAL 50000.00 1 5299 \N +202758 2025-08-11 22:50:38.380752+00 2025-08-11 22:50:38.380763+00 f t DESCUENTO 0.00 2 5299 \N +202759 2025-08-11 22:50:38.383373+00 2025-08-11 22:50:38.383385+00 f t TOTAL 50000.00 3 5299 \N +202760 2025-08-11 22:50:38.385521+00 2025-08-11 22:50:38.385532+00 f t ADELANTO 10000.00 4 5299 \N +209669 2025-08-14 04:41:24.425857+00 2025-08-14 04:41:24.42587+00 f t SUBTOTAL 42000.00 1 5465 \N +209670 2025-08-14 04:41:24.428943+00 2025-08-14 04:41:24.428952+00 f t DESCUENTO 0.00 2 5465 \N +202765 2025-08-11 22:54:28.93299+00 2025-08-11 22:54:28.933006+00 f t SUBTOTAL 0.00 1 5300 \N +202766 2025-08-11 22:54:28.936003+00 2025-08-11 22:54:28.936017+00 f t DESCUENTO 0.00 2 5300 \N +202767 2025-08-11 22:54:28.939285+00 2025-08-11 22:54:28.939296+00 f t TOTAL 0.00 3 5300 \N +202768 2025-08-11 22:54:28.941502+00 2025-08-11 22:54:28.941516+00 f t ADELANTO 0.00 4 5300 \N +209671 2025-08-14 04:41:24.432257+00 2025-08-14 04:41:24.432269+00 f t TOTAL 42000.00 3 5465 \N +209672 2025-08-14 04:41:24.436046+00 2025-08-14 04:41:24.43608+00 f t ADELANTO 9500.00 4 5465 \N +205017 2025-08-12 17:03:53.265536+00 2025-08-12 17:03:53.265546+00 f t SUBTOTAL 0.00 1 5348 \N +205018 2025-08-12 17:03:53.268331+00 2025-08-12 17:03:53.268343+00 f t DESCUENTO 0.00 2 5348 \N +205019 2025-08-12 17:03:53.270546+00 2025-08-12 17:03:53.270558+00 f t TOTAL 0.00 3 5348 \N +205020 2025-08-12 17:03:53.272726+00 2025-08-12 17:03:53.272736+00 f t ADELANTO 0.00 4 5348 \N +209889 2025-08-14 05:33:47.16532+00 2025-08-14 05:33:47.165333+00 f t SUBTOTAL 0.00 1 5468 \N +209890 2025-08-14 05:33:47.167388+00 2025-08-14 05:33:47.1674+00 f t DESCUENTO 0.00 2 5468 \N +209891 2025-08-14 05:33:47.16909+00 2025-08-14 05:33:47.1691+00 f t TOTAL 0.00 3 5468 \N +209892 2025-08-14 05:33:47.171462+00 2025-08-14 05:33:47.171473+00 f t ADELANTO 0.00 4 5468 \N +210186 2025-08-14 13:22:41.775033+00 2025-08-14 13:22:41.775043+00 f t DESCUENTO 0.00 2 5478 \N +210187 2025-08-14 13:22:41.777139+00 2025-08-14 13:22:41.777149+00 f t TOTAL 0.00 3 5478 \N +210188 2025-08-14 13:22:41.77907+00 2025-08-14 13:22:41.779082+00 f t ADELANTO 0.00 4 5478 \N +205489 2025-08-12 21:04:53.179075+00 2025-08-12 21:04:53.179084+00 f t SUBTOTAL 0.00 1 5365 \N +205490 2025-08-12 21:04:53.180648+00 2025-08-12 21:04:53.180656+00 f t DESCUENTO 0.00 2 5365 \N +205491 2025-08-12 21:04:53.181949+00 2025-08-12 21:04:53.181956+00 f t TOTAL 0.00 3 5365 \N +205492 2025-08-12 21:04:53.183297+00 2025-08-12 21:04:53.183306+00 f t ADELANTO 0.00 4 5365 \N +202821 2025-08-11 22:59:31.079397+00 2025-08-11 22:59:31.079407+00 f t SUBTOTAL 76000.00 1 5301 \N +202822 2025-08-11 22:59:31.082172+00 2025-08-11 22:59:31.082186+00 f t DESCUENTO 0.00 2 5301 \N +202823 2025-08-11 22:59:31.084382+00 2025-08-11 22:59:31.084392+00 f t TOTAL 76000.00 3 5301 \N +202824 2025-08-11 22:59:31.086364+00 2025-08-11 22:59:31.086376+00 f t ADELANTO 11000.00 4 5301 \N +205557 2025-08-12 22:32:10.255888+00 2025-08-12 22:32:10.255901+00 f t SUBTOTAL 0.00 1 5369 \N +205558 2025-08-12 22:32:10.258538+00 2025-08-12 22:32:10.258549+00 f t DESCUENTO 0.00 2 5369 \N +205559 2025-08-12 22:32:10.260873+00 2025-08-12 22:32:10.260883+00 f t TOTAL 0.00 3 5369 \N +205560 2025-08-12 22:32:10.263281+00 2025-08-12 22:32:10.263291+00 f t ADELANTO 0.00 4 5369 \N +210409 2025-08-14 14:42:33.04158+00 2025-08-14 14:42:33.041592+00 f t SUBTOTAL 0.00 1 5486 \N +205781 2025-08-12 23:54:44.642404+00 2025-08-12 23:54:44.642417+00 f t SUBTOTAL 64500.00 1 5373 \N +205782 2025-08-12 23:54:44.650853+00 2025-08-12 23:54:44.650866+00 f t DESCUENTO 0.00 2 5373 \N +205783 2025-08-12 23:54:44.653207+00 2025-08-12 23:54:44.653219+00 f t TOTAL 64500.00 3 5373 \N +205784 2025-08-12 23:54:44.656018+00 2025-08-12 23:54:44.65603+00 f t ADELANTO 17000.00 4 5373 \N +210410 2025-08-14 14:42:33.044062+00 2025-08-14 14:42:33.044072+00 f t DESCUENTO 0.00 2 5486 \N +210411 2025-08-14 14:42:33.052169+00 2025-08-14 14:42:33.052183+00 f t TOTAL 0.00 3 5486 \N +210412 2025-08-14 14:42:33.054216+00 2025-08-14 14:42:33.054227+00 f t ADELANTO 0.00 4 5486 \N +202861 2025-08-11 23:00:49.34399+00 2025-08-11 23:00:49.344001+00 f t SUBTOTAL 0.00 1 5302 \N +202862 2025-08-11 23:00:49.349074+00 2025-08-11 23:00:49.349089+00 f t DESCUENTO 0.00 2 5302 \N +202863 2025-08-11 23:00:49.35176+00 2025-08-11 23:00:49.351771+00 f t TOTAL 0.00 3 5302 \N +202864 2025-08-11 23:00:49.3562+00 2025-08-11 23:00:49.356213+00 f t ADELANTO 0.00 4 5302 \N +202869 2025-08-11 23:26:45.397218+00 2025-08-11 23:26:45.397228+00 f t SUBTOTAL 0.00 1 5303 \N +202870 2025-08-11 23:26:45.399299+00 2025-08-11 23:26:45.399308+00 f t DESCUENTO 0.00 2 5303 \N +202871 2025-08-11 23:26:45.401215+00 2025-08-11 23:26:45.401226+00 f t TOTAL 0.00 3 5303 \N +202872 2025-08-11 23:26:45.403269+00 2025-08-11 23:26:45.403279+00 f t ADELANTO 0.00 4 5303 \N +206006 2025-08-13 00:58:51.366935+00 2025-08-13 00:58:51.366947+00 f t DESCUENTO 0.00 2 5378 \N +206007 2025-08-13 00:58:51.368974+00 2025-08-13 00:58:51.368984+00 f t TOTAL 42000.00 3 5378 \N +206008 2025-08-13 00:58:51.370723+00 2025-08-13 00:58:51.370733+00 f t ADELANTO 9500.00 4 5378 \N +202905 2025-08-11 23:34:47.624677+00 2025-08-11 23:34:47.62469+00 f t SUBTOTAL 50000.00 1 5304 \N +202906 2025-08-11 23:34:47.628985+00 2025-08-11 23:34:47.628997+00 f t DESCUENTO 0.00 2 5304 \N +202907 2025-08-11 23:34:47.633034+00 2025-08-11 23:34:47.633048+00 f t TOTAL 50000.00 3 5304 \N +202908 2025-08-11 23:34:47.638215+00 2025-08-11 23:34:47.63823+00 f t ADELANTO 10000.00 4 5304 \N +202933 2025-08-11 23:50:28.56361+00 2025-08-11 23:50:28.563623+00 f t SUBTOTAL 42000.00 1 5305 \N +202934 2025-08-11 23:50:28.565986+00 2025-08-11 23:50:28.565995+00 f t DESCUENTO 0.00 2 5305 \N +202935 2025-08-11 23:50:28.568599+00 2025-08-11 23:50:28.56861+00 f t TOTAL 42000.00 3 5305 \N +202936 2025-08-11 23:50:28.570588+00 2025-08-11 23:50:28.570601+00 f t ADELANTO 9500.00 4 5305 \N +206709 2025-08-13 10:16:46.283587+00 2025-08-13 10:16:46.283596+00 f t SUBTOTAL 64500.00 1 5392 \N +206710 2025-08-13 10:16:46.286773+00 2025-08-13 10:16:46.286786+00 f t DESCUENTO 0.00 2 5392 \N +206711 2025-08-13 10:16:46.289507+00 2025-08-13 10:16:46.289516+00 f t TOTAL 64500.00 3 5392 \N +206712 2025-08-13 10:16:46.291848+00 2025-08-13 10:16:46.29186+00 f t ADELANTO 17000.00 4 5392 \N +207129 2025-08-13 12:59:53.961153+00 2025-08-13 12:59:53.961167+00 f t SUBTOTAL 0.00 1 5407 \N +207130 2025-08-13 12:59:53.963257+00 2025-08-13 12:59:53.963269+00 f t DESCUENTO 0.00 2 5407 \N +207131 2025-08-13 12:59:53.965239+00 2025-08-13 12:59:53.96525+00 f t TOTAL 0.00 3 5407 \N +207132 2025-08-13 12:59:53.967455+00 2025-08-13 12:59:53.967468+00 f t ADELANTO 0.00 4 5407 \N +204357 2025-08-12 12:32:21.393428+00 2025-08-12 12:32:21.393441+00 f t SUBTOTAL 50000.00 1 5335 \N +204358 2025-08-12 12:32:21.397596+00 2025-08-12 12:32:21.39761+00 f t DESCUENTO 0.00 2 5335 \N +204359 2025-08-12 12:32:21.400561+00 2025-08-12 12:32:21.400574+00 f t TOTAL 50000.00 3 5335 \N +204360 2025-08-12 12:32:21.403092+00 2025-08-12 12:32:21.403107+00 f t ADELANTO 10000.00 4 5335 \N +235032 2025-08-23 14:12:38.285332+00 2025-08-23 14:12:38.285341+00 f t ADELANTO 9500.00 4 6083 \N +219320 2025-08-17 18:16:41.035804+00 2025-08-17 18:16:41.035811+00 f t ADELANTO 10000.00 4 5700 \N +246275 2025-08-28 06:01:29.648516+00 2025-08-28 06:01:29.648528+00 f t TOTAL 0.00 3 6345 \N +246276 2025-08-28 06:01:29.650747+00 2025-08-28 06:01:29.650755+00 f t ADELANTO 0.00 4 6345 \N +204665 2025-08-12 13:31:13.182075+00 2025-08-12 13:31:13.182089+00 f t SUBTOTAL 49000.00 1 5339 \N +204666 2025-08-12 13:31:13.185732+00 2025-08-12 13:31:13.185742+00 f t DESCUENTO 0.00 2 5339 \N +204667 2025-08-12 13:31:13.188085+00 2025-08-12 13:31:13.188098+00 f t TOTAL 49000.00 3 5339 \N +204668 2025-08-12 13:31:13.190498+00 2025-08-12 13:31:13.190524+00 f t ADELANTO 49000.00 4 5339 \N +203037 2025-08-11 23:53:59.023859+00 2025-08-11 23:53:59.023875+00 f t SUBTOTAL 0.00 1 5306 \N +203038 2025-08-11 23:53:59.027397+00 2025-08-11 23:53:59.027409+00 f t DESCUENTO 0.00 2 5306 \N +203039 2025-08-11 23:53:59.029813+00 2025-08-11 23:53:59.029827+00 f t TOTAL 0.00 3 5306 \N +203040 2025-08-11 23:53:59.032137+00 2025-08-11 23:53:59.03215+00 f t ADELANTO 0.00 4 5306 \N +214637 2025-08-15 20:42:14.629539+00 2025-08-15 20:42:14.629548+00 f t SUBTOTAL 68000.00 1 5594 \N +214638 2025-08-15 20:42:14.631498+00 2025-08-15 20:42:14.631505+00 f t DESCUENTO 0.00 2 5594 \N +214639 2025-08-15 20:42:14.632846+00 2025-08-15 20:42:14.632851+00 f t TOTAL 68000.00 3 5594 \N +214640 2025-08-15 20:42:14.634131+00 2025-08-15 20:42:14.634137+00 f t ADELANTO 13000.00 4 5594 \N +205025 2025-08-12 17:08:18.770555+00 2025-08-12 17:08:18.770567+00 f t SUBTOTAL 0.00 1 5349 \N +205026 2025-08-12 17:08:18.774164+00 2025-08-12 17:08:18.774173+00 f t DESCUENTO 0.00 2 5349 \N +205027 2025-08-12 17:08:18.776557+00 2025-08-12 17:08:18.776572+00 f t TOTAL 0.00 3 5349 \N +205028 2025-08-12 17:08:18.778676+00 2025-08-12 17:08:18.778685+00 f t ADELANTO 0.00 4 5349 \N +203065 2025-08-12 00:06:22.613811+00 2025-08-12 00:06:22.613822+00 f t SUBTOTAL 42000.00 1 5307 \N +203066 2025-08-12 00:06:22.616256+00 2025-08-12 00:06:22.616268+00 f t DESCUENTO 0.00 2 5307 \N +203067 2025-08-12 00:06:22.61802+00 2025-08-12 00:06:22.618028+00 f t TOTAL 42000.00 3 5307 \N +203068 2025-08-12 00:06:22.620122+00 2025-08-12 00:06:22.620134+00 f t ADELANTO 9500.00 4 5307 \N +205177 2025-08-12 18:31:32.7737+00 2025-08-12 18:31:32.773714+00 f t SUBTOTAL 82200.00 1 5355 \N +205178 2025-08-12 18:31:32.780619+00 2025-08-12 18:31:32.780669+00 f t DESCUENTO 0.00 2 5355 \N +205179 2025-08-12 18:31:32.783363+00 2025-08-12 18:31:32.783378+00 f t TOTAL 82200.00 3 5355 \N +205180 2025-08-12 18:31:32.78594+00 2025-08-12 18:31:32.785953+00 f t ADELANTO 44200.00 4 5355 \N +214933 2025-08-15 22:53:30.308949+00 2025-08-15 22:53:30.308972+00 f t SUBTOTAL 0.00 1 5601 \N +214934 2025-08-15 22:53:30.31149+00 2025-08-15 22:53:30.311498+00 f t DESCUENTO 0.00 2 5601 \N +214935 2025-08-15 22:53:30.313042+00 2025-08-15 22:53:30.31305+00 f t TOTAL 0.00 3 5601 \N +214936 2025-08-15 22:53:30.314532+00 2025-08-15 22:53:30.314542+00 f t ADELANTO 0.00 4 5601 \N +215005 2025-08-15 23:39:37.243548+00 2025-08-15 23:39:37.24356+00 f t SUBTOTAL 64500.00 1 5603 \N +215006 2025-08-15 23:39:37.247485+00 2025-08-15 23:39:37.247498+00 f t DESCUENTO 0.00 2 5603 \N +215007 2025-08-15 23:39:37.249632+00 2025-08-15 23:39:37.249643+00 f t TOTAL 64500.00 3 5603 \N +215008 2025-08-15 23:39:37.251436+00 2025-08-15 23:39:37.251446+00 f t ADELANTO 17000.00 4 5603 \N +205497 2025-08-12 22:28:37.134793+00 2025-08-12 22:28:37.134806+00 f t SUBTOTAL 0.00 1 5366 \N +205498 2025-08-12 22:28:37.136808+00 2025-08-12 22:28:37.136816+00 f t DESCUENTO 0.00 2 5366 \N +205499 2025-08-12 22:28:37.138724+00 2025-08-12 22:28:37.138734+00 f t TOTAL 0.00 3 5366 \N +205500 2025-08-12 22:28:37.141727+00 2025-08-12 22:28:37.141736+00 f t ADELANTO 0.00 4 5366 \N +215821 2025-08-16 13:26:44.501811+00 2025-08-16 13:26:44.501821+00 f t SUBTOTAL 0.00 1 5624 \N +206105 2025-08-13 01:17:04.71594+00 2025-08-13 01:17:04.715948+00 f t SUBTOTAL 185700.00 1 5380 \N +206106 2025-08-13 01:17:04.718281+00 2025-08-13 01:17:04.718289+00 f t DESCUENTO 0.00 2 5380 \N +206107 2025-08-13 01:17:04.719864+00 2025-08-13 01:17:04.719872+00 f t TOTAL 185700.00 3 5380 \N +206108 2025-08-13 01:17:04.721291+00 2025-08-13 01:17:04.721298+00 f t ADELANTO 142200.00 4 5380 \N +203157 2025-08-12 00:20:15.604229+00 2025-08-12 00:20:15.604243+00 f t SUBTOTAL 72000.00 1 5308 \N +203158 2025-08-12 00:20:15.614386+00 2025-08-12 00:20:15.614402+00 f t DESCUENTO 0.00 2 5308 \N +203159 2025-08-12 00:20:15.617489+00 2025-08-12 00:20:15.617504+00 f t TOTAL 72000.00 3 5308 \N +203160 2025-08-12 00:20:15.620482+00 2025-08-12 00:20:15.620492+00 f t ADELANTO 19000.00 4 5308 \N +210617 2025-08-14 15:43:28.086829+00 2025-08-14 15:43:28.086841+00 f t SUBTOTAL 42000.00 1 5492 \N +210618 2025-08-14 15:43:28.089498+00 2025-08-14 15:43:28.08951+00 f t DESCUENTO 0.00 2 5492 \N +210619 2025-08-14 15:43:28.091483+00 2025-08-14 15:43:28.091491+00 f t TOTAL 42000.00 3 5492 \N +210620 2025-08-14 15:43:28.093129+00 2025-08-14 15:43:28.093137+00 f t ADELANTO 9500.00 4 5492 \N +203197 2025-08-12 00:24:37.046858+00 2025-08-12 00:24:37.046867+00 f t SUBTOTAL 95000.00 1 5309 \N +203198 2025-08-12 00:24:37.049784+00 2025-08-12 00:24:37.049798+00 f t DESCUENTO 0.00 2 5309 \N +203199 2025-08-12 00:24:37.052321+00 2025-08-12 00:24:37.052334+00 f t TOTAL 95000.00 3 5309 \N +203200 2025-08-12 00:24:37.054723+00 2025-08-12 00:24:37.054732+00 f t ADELANTO 10000.00 4 5309 \N +203205 2025-08-12 00:49:35.107093+00 2025-08-12 00:49:35.107105+00 f t SUBTOTAL 0.00 1 5310 \N +203206 2025-08-12 00:49:35.1101+00 2025-08-12 00:49:35.110112+00 f t DESCUENTO 0.00 2 5310 \N +203207 2025-08-12 00:49:35.112396+00 2025-08-12 00:49:35.112408+00 f t TOTAL 0.00 3 5310 \N +203208 2025-08-12 00:49:35.114574+00 2025-08-12 00:49:35.114587+00 f t ADELANTO 0.00 4 5310 \N +206717 2025-08-13 11:11:18.086373+00 2025-08-13 11:11:18.086384+00 f t SUBTOTAL 0.00 1 5393 \N +206718 2025-08-13 11:11:18.090565+00 2025-08-13 11:11:18.090575+00 f t DESCUENTO 0.00 2 5393 \N +206719 2025-08-13 11:11:18.095192+00 2025-08-13 11:11:18.095206+00 f t TOTAL 0.00 3 5393 \N +206720 2025-08-13 11:11:18.097784+00 2025-08-13 11:11:18.097794+00 f t ADELANTO 0.00 4 5393 \N +206893 2025-08-13 12:24:34.328844+00 2025-08-13 12:24:34.328857+00 f t SUBTOTAL 95500.00 1 5398 \N +206894 2025-08-13 12:24:34.332126+00 2025-08-13 12:24:34.332137+00 f t DESCUENTO 0.00 2 5398 \N +206895 2025-08-13 12:24:34.335695+00 2025-08-13 12:24:34.335706+00 f t TOTAL 95500.00 3 5398 \N +206896 2025-08-13 12:24:34.340326+00 2025-08-13 12:24:34.340336+00 f t ADELANTO 21000.00 4 5398 \N +207093 2025-08-13 12:56:01.657707+00 2025-08-13 12:56:01.657721+00 f t SUBTOTAL 0.00 1 5403 \N +207094 2025-08-13 12:56:01.661598+00 2025-08-13 12:56:01.661611+00 f t DESCUENTO 0.00 2 5403 \N +207095 2025-08-13 12:56:01.664367+00 2025-08-13 12:56:01.66438+00 f t TOTAL 0.00 3 5403 \N +207096 2025-08-13 12:56:01.66761+00 2025-08-13 12:56:01.667622+00 f t ADELANTO 0.00 4 5403 \N +211733 2025-08-14 19:53:14.422455+00 2025-08-14 19:53:14.422465+00 f t SUBTOTAL 0.00 1 5514 \N +211734 2025-08-14 19:53:14.425181+00 2025-08-14 19:53:14.425193+00 f t DESCUENTO 0.00 2 5514 \N +211735 2025-08-14 19:53:14.427039+00 2025-08-14 19:53:14.427047+00 f t TOTAL 0.00 3 5514 \N +211736 2025-08-14 19:53:14.428924+00 2025-08-14 19:53:14.428934+00 f t ADELANTO 0.00 4 5514 \N +209197 2025-08-14 02:48:12.966612+00 2025-08-14 02:48:12.966627+00 f t SUBTOTAL 0.00 1 5455 \N +209198 2025-08-14 02:48:12.970689+00 2025-08-14 02:48:12.970704+00 f t DESCUENTO 0.00 2 5455 \N +209199 2025-08-14 02:48:12.974742+00 2025-08-14 02:48:12.974757+00 f t TOTAL 0.00 3 5455 \N +209200 2025-08-14 02:48:12.977437+00 2025-08-14 02:48:12.977451+00 f t ADELANTO 0.00 4 5455 \N +203321 2025-08-12 00:52:36.247089+00 2025-08-12 00:52:36.247101+00 f t SUBTOTAL 42000.00 1 5311 \N +203322 2025-08-12 00:52:36.250225+00 2025-08-12 00:52:36.250236+00 f t DESCUENTO 0.00 2 5311 \N +203323 2025-08-12 00:52:36.254111+00 2025-08-12 00:52:36.254125+00 f t TOTAL 42000.00 3 5311 \N +203324 2025-08-12 00:52:36.256698+00 2025-08-12 00:52:36.256712+00 f t ADELANTO 9500.00 4 5311 \N +230089 2025-08-21 01:27:55.480466+00 2025-08-21 01:27:55.480475+00 f t SUBTOTAL 0.00 1 5957 \N +230090 2025-08-21 01:27:55.482042+00 2025-08-21 01:27:55.482049+00 f t DESCUENTO 0.00 2 5957 \N +230091 2025-08-21 01:27:55.483226+00 2025-08-21 01:27:55.483232+00 f t TOTAL 0.00 3 5957 \N +230092 2025-08-21 01:27:55.484392+00 2025-08-21 01:27:55.484398+00 f t ADELANTO 0.00 4 5957 \N +214797 2025-08-15 22:17:41.357325+00 2025-08-15 22:17:41.357335+00 f t SUBTOTAL 0.00 1 5598 \N +214798 2025-08-15 22:17:41.359349+00 2025-08-15 22:17:41.359357+00 f t DESCUENTO 0.00 2 5598 \N +214799 2025-08-15 22:17:41.361166+00 2025-08-15 22:17:41.361174+00 f t TOTAL 0.00 3 5598 \N +214800 2025-08-15 22:17:41.362498+00 2025-08-15 22:17:41.362503+00 f t ADELANTO 0.00 4 5598 \N +214941 2025-08-15 23:03:24.068788+00 2025-08-15 23:03:24.068801+00 f t SUBTOTAL 0.00 1 5602 \N +214942 2025-08-15 23:03:24.070743+00 2025-08-15 23:03:24.070754+00 f t DESCUENTO 0.00 2 5602 \N +214943 2025-08-15 23:03:24.072698+00 2025-08-15 23:03:24.072706+00 f t TOTAL 0.00 3 5602 \N +214944 2025-08-15 23:03:24.074331+00 2025-08-15 23:03:24.074339+00 f t ADELANTO 0.00 4 5602 \N +215213 2025-08-16 00:51:56.597466+00 2025-08-16 00:51:56.597478+00 f t SUBTOTAL 72000.00 1 5607 \N +215214 2025-08-16 00:51:56.599467+00 2025-08-16 00:51:56.599477+00 f t DESCUENTO 0.00 2 5607 \N +215215 2025-08-16 00:51:56.601407+00 2025-08-16 00:51:56.601417+00 f t TOTAL 72000.00 3 5607 \N +215216 2025-08-16 00:51:56.603074+00 2025-08-16 00:51:56.603085+00 f t ADELANTO 19000.00 4 5607 \N +203385 2025-08-12 01:19:43.241743+00 2025-08-12 01:19:43.241758+00 f t SUBTOTAL 42000.00 1 5312 \N +203386 2025-08-12 01:19:43.246624+00 2025-08-12 01:19:43.246663+00 f t DESCUENTO 0.00 2 5312 \N +203387 2025-08-12 01:19:43.249251+00 2025-08-12 01:19:43.249265+00 f t TOTAL 42000.00 3 5312 \N +203388 2025-08-12 01:19:43.251568+00 2025-08-12 01:19:43.25158+00 f t ADELANTO 9500.00 4 5312 \N +215822 2025-08-16 13:26:44.503524+00 2025-08-16 13:26:44.503532+00 f t DESCUENTO 0.00 2 5624 \N +215823 2025-08-16 13:26:44.50521+00 2025-08-16 13:26:44.505217+00 f t TOTAL 0.00 3 5624 \N +215824 2025-08-16 13:26:44.506575+00 2025-08-16 13:26:44.506581+00 f t ADELANTO 0.00 4 5624 \N +203433 2025-08-12 01:24:27.773224+00 2025-08-12 01:24:27.773234+00 f t SUBTOTAL 49500.00 1 5313 \N +203434 2025-08-12 01:24:27.775666+00 2025-08-12 01:24:27.775679+00 f t DESCUENTO 0.00 2 5313 \N +203435 2025-08-12 01:24:27.784225+00 2025-08-12 01:24:27.784236+00 f t TOTAL 49500.00 3 5313 \N +203436 2025-08-12 01:24:27.796242+00 2025-08-12 01:24:27.796251+00 f t ADELANTO 11500.00 4 5313 \N +216013 2025-08-16 13:57:45.173708+00 2025-08-16 13:57:45.173721+00 f t SUBTOTAL 0.00 1 5629 \N +203441 2025-08-12 01:39:23.138488+00 2025-08-12 01:39:23.138499+00 f t SUBTOTAL 0.00 1 5314 \N +203442 2025-08-12 01:39:23.140576+00 2025-08-12 01:39:23.140587+00 f t DESCUENTO 0.00 2 5314 \N +203443 2025-08-12 01:39:23.142385+00 2025-08-12 01:39:23.142393+00 f t TOTAL 0.00 3 5314 \N +203444 2025-08-12 01:39:23.144161+00 2025-08-12 01:39:23.14417+00 f t ADELANTO 0.00 4 5314 \N +216014 2025-08-16 13:57:45.175452+00 2025-08-16 13:57:45.175461+00 f t DESCUENTO 0.00 2 5629 \N +206289 2025-08-13 02:37:07.721635+00 2025-08-13 02:37:07.721649+00 f t SUBTOTAL 0.00 1 5385 \N +206290 2025-08-13 02:37:07.725407+00 2025-08-13 02:37:07.72542+00 f t DESCUENTO 0.00 2 5385 \N +206291 2025-08-13 02:37:07.731455+00 2025-08-13 02:37:07.731467+00 f t TOTAL 0.00 3 5385 \N +206292 2025-08-13 02:37:07.734848+00 2025-08-13 02:37:07.734861+00 f t ADELANTO 0.00 4 5385 \N +203481 2025-08-12 01:58:33.034105+00 2025-08-12 01:58:33.034113+00 f t SUBTOTAL 64500.00 1 5315 \N +203482 2025-08-12 01:58:33.035984+00 2025-08-12 01:58:33.035992+00 f t DESCUENTO 0.00 2 5315 \N +203483 2025-08-12 01:58:33.037515+00 2025-08-12 01:58:33.037525+00 f t TOTAL 64500.00 3 5315 \N +203484 2025-08-12 01:58:33.038985+00 2025-08-12 01:58:33.038992+00 f t ADELANTO 17000.00 4 5315 \N +206461 2025-08-13 04:46:41.795687+00 2025-08-13 04:46:41.795701+00 f t SUBTOTAL 61700.00 1 5388 \N +206462 2025-08-13 04:46:41.800134+00 2025-08-13 04:46:41.800151+00 f t DESCUENTO 0.00 2 5388 \N +206463 2025-08-13 04:46:41.804704+00 2025-08-13 04:46:41.804724+00 f t TOTAL 61700.00 3 5388 \N +206464 2025-08-13 04:46:41.81377+00 2025-08-13 04:46:41.813785+00 f t ADELANTO 23700.00 4 5388 \N +206629 2025-08-13 07:30:18.881961+00 2025-08-13 07:30:18.881976+00 f t SUBTOTAL 0.00 1 5390 \N +206630 2025-08-13 07:30:18.888893+00 2025-08-13 07:30:18.888927+00 f t DESCUENTO 0.00 2 5390 \N +206631 2025-08-13 07:30:18.89856+00 2025-08-13 07:30:18.898575+00 f t TOTAL 0.00 3 5390 \N +206632 2025-08-13 07:30:18.902503+00 2025-08-13 07:30:18.902516+00 f t ADELANTO 0.00 4 5390 \N +211741 2025-08-14 20:12:01.395098+00 2025-08-14 20:12:01.395112+00 f t SUBTOTAL 0.00 1 5515 \N +211742 2025-08-14 20:12:01.399906+00 2025-08-14 20:12:01.399921+00 f t DESCUENTO 0.00 2 5515 \N +211743 2025-08-14 20:12:01.402275+00 2025-08-14 20:12:01.402287+00 f t TOTAL 0.00 3 5515 \N +211744 2025-08-14 20:12:01.404684+00 2025-08-14 20:12:01.404695+00 f t ADELANTO 0.00 4 5515 \N +207061 2025-08-13 12:55:37.485076+00 2025-08-13 12:55:37.485086+00 f t SUBTOTAL 0.00 1 5404 \N +207062 2025-08-13 12:55:37.48739+00 2025-08-13 12:55:37.487398+00 f t DESCUENTO 0.00 2 5404 \N +207063 2025-08-13 12:55:37.4896+00 2025-08-13 12:55:37.489614+00 f t TOTAL 0.00 3 5404 \N +207064 2025-08-13 12:55:37.493025+00 2025-08-13 12:55:37.493038+00 f t ADELANTO 0.00 4 5404 \N +203577 2025-08-12 02:25:35.799909+00 2025-08-12 02:25:35.799924+00 f t SUBTOTAL 0.00 1 5317 \N +203578 2025-08-12 02:25:35.802665+00 2025-08-12 02:25:35.802677+00 f t DESCUENTO 0.00 2 5317 \N +203579 2025-08-12 02:25:35.80536+00 2025-08-12 02:25:35.805373+00 f t TOTAL 0.00 3 5317 \N +203580 2025-08-12 02:25:35.808658+00 2025-08-12 02:25:35.808671+00 f t ADELANTO 0.00 4 5317 \N +212009 2025-08-14 22:38:26.381079+00 2025-08-14 22:38:26.381091+00 f t SUBTOTAL 0.00 1 5526 \N +212010 2025-08-14 22:38:26.389413+00 2025-08-14 22:38:26.389423+00 f t DESCUENTO 0.00 2 5526 \N +203585 2025-08-12 02:25:46.950502+00 2025-08-12 02:25:46.950516+00 f t SUBTOTAL 76000.00 1 5316 \N +203586 2025-08-12 02:25:46.957749+00 2025-08-12 02:25:46.957763+00 f t DESCUENTO 0.00 2 5316 \N +203587 2025-08-12 02:25:46.960414+00 2025-08-12 02:25:46.960424+00 f t TOTAL 76000.00 3 5316 \N +203588 2025-08-12 02:25:46.962762+00 2025-08-12 02:25:46.962775+00 f t ADELANTO 11000.00 4 5316 \N +212011 2025-08-14 22:38:26.391453+00 2025-08-14 22:38:26.391462+00 f t TOTAL 0.00 3 5526 \N +212012 2025-08-14 22:38:26.393321+00 2025-08-14 22:38:26.393331+00 f t ADELANTO 0.00 4 5526 \N +207249 2025-08-13 13:14:48.071521+00 2025-08-13 13:14:48.071534+00 f t SUBTOTAL 50000.00 1 5409 \N +207250 2025-08-13 13:14:48.074557+00 2025-08-13 13:14:48.07457+00 f t DESCUENTO 0.00 2 5409 \N +207251 2025-08-13 13:14:48.077252+00 2025-08-13 13:14:48.077268+00 f t TOTAL 50000.00 3 5409 \N +214197 2025-08-15 18:07:41.715668+00 2025-08-15 18:07:41.715678+00 f t SUBTOTAL 0.00 1 5582 \N +214198 2025-08-15 18:07:41.717966+00 2025-08-15 18:07:41.717976+00 f t DESCUENTO 0.00 2 5582 \N +214199 2025-08-15 18:07:41.719691+00 2025-08-15 18:07:41.7197+00 f t TOTAL 0.00 3 5582 \N +214200 2025-08-15 18:07:41.721242+00 2025-08-15 18:07:41.72125+00 f t ADELANTO 0.00 4 5582 \N +209205 2025-08-14 02:50:56.969781+00 2025-08-14 02:50:56.969795+00 f t SUBTOTAL 0.00 1 5457 \N +209206 2025-08-14 02:50:56.97208+00 2025-08-14 02:50:56.972089+00 f t DESCUENTO 0.00 2 5457 \N +209207 2025-08-14 02:50:56.974218+00 2025-08-14 02:50:56.974229+00 f t TOTAL 0.00 3 5457 \N +209208 2025-08-14 02:50:56.976562+00 2025-08-14 02:50:56.976573+00 f t ADELANTO 0.00 4 5457 \N +203617 2025-08-12 02:43:40.228272+00 2025-08-12 02:43:40.228282+00 f t SUBTOTAL 0.00 1 5318 \N +203618 2025-08-12 02:43:40.230795+00 2025-08-12 02:43:40.230808+00 f t DESCUENTO 0.00 2 5318 \N +203619 2025-08-12 02:43:40.233106+00 2025-08-12 02:43:40.233118+00 f t TOTAL 0.00 3 5318 \N +203620 2025-08-12 02:43:40.235456+00 2025-08-12 02:43:40.235469+00 f t ADELANTO 0.00 4 5318 \N +219633 2025-08-17 21:56:58.186666+00 2025-08-17 21:56:58.186675+00 f t SUBTOTAL 0.00 1 5708 \N +209513 2025-08-14 04:36:52.246956+00 2025-08-14 04:36:52.246969+00 f t SUBTOTAL 42000.00 1 5462 \N +209514 2025-08-14 04:36:52.250045+00 2025-08-14 04:36:52.250058+00 f t DESCUENTO 0.00 2 5462 \N +209515 2025-08-14 04:36:52.252867+00 2025-08-14 04:36:52.25288+00 f t TOTAL 42000.00 3 5462 \N +209516 2025-08-14 04:36:52.255325+00 2025-08-14 04:36:52.255337+00 f t ADELANTO 9500.00 4 5462 \N +219634 2025-08-17 21:56:58.189242+00 2025-08-17 21:56:58.189254+00 f t DESCUENTO 0.00 2 5708 \N +219635 2025-08-17 21:56:58.190785+00 2025-08-17 21:56:58.190792+00 f t TOTAL 0.00 3 5708 \N +219636 2025-08-17 21:56:58.191952+00 2025-08-17 21:56:58.191959+00 f t ADELANTO 0.00 4 5708 \N +204953 2025-08-12 16:39:00.504617+00 2025-08-12 16:39:00.504642+00 f t SUBTOTAL 50000.00 1 5345 \N +204954 2025-08-12 16:39:00.509543+00 2025-08-12 16:39:00.509557+00 f t DESCUENTO 0.00 2 5345 \N +204955 2025-08-12 16:39:00.51208+00 2025-08-12 16:39:00.512095+00 f t TOTAL 50000.00 3 5345 \N +204956 2025-08-12 16:39:00.519738+00 2025-08-12 16:39:00.519761+00 f t ADELANTO 10000.00 4 5345 \N +210085 2025-08-14 12:54:32.369889+00 2025-08-14 12:54:32.369898+00 f t SUBTOTAL 64500.00 1 5475 \N +210086 2025-08-14 12:54:32.372437+00 2025-08-14 12:54:32.372447+00 f t DESCUENTO 0.00 2 5475 \N +210087 2025-08-14 12:54:32.37409+00 2025-08-14 12:54:32.374099+00 f t TOTAL 64500.00 3 5475 \N +210088 2025-08-14 12:54:32.37595+00 2025-08-14 12:54:32.375962+00 f t ADELANTO 17000.00 4 5475 \N +203697 2025-08-12 02:48:57.286128+00 2025-08-12 02:48:57.286143+00 f t SUBTOTAL 64500.00 1 5319 \N +203698 2025-08-12 02:48:57.292646+00 2025-08-12 02:48:57.292659+00 f t DESCUENTO 0.00 2 5319 \N +203699 2025-08-12 02:48:57.30817+00 2025-08-12 02:48:57.308185+00 f t TOTAL 64500.00 3 5319 \N +203700 2025-08-12 02:48:57.310832+00 2025-08-12 02:48:57.310845+00 f t ADELANTO 17000.00 4 5319 \N +210573 2025-08-14 15:26:18.324451+00 2025-08-14 15:26:18.32446+00 f t SUBTOTAL 42000.00 1 5490 \N +210574 2025-08-14 15:26:18.326621+00 2025-08-14 15:26:18.326628+00 f t DESCUENTO 0.00 2 5490 \N +210575 2025-08-14 15:26:18.328159+00 2025-08-14 15:26:18.328166+00 f t TOTAL 42000.00 3 5490 \N +210576 2025-08-14 15:26:18.329748+00 2025-08-14 15:26:18.329756+00 f t ADELANTO 9500.00 4 5490 \N +210677 2025-08-14 15:51:08.293625+00 2025-08-14 15:51:08.293641+00 f t SUBTOTAL 0.00 1 5494 \N +210678 2025-08-14 15:51:08.298166+00 2025-08-14 15:51:08.29818+00 f t DESCUENTO 0.00 2 5494 \N +210679 2025-08-14 15:51:08.301731+00 2025-08-14 15:51:08.301744+00 f t TOTAL 0.00 3 5494 \N +210680 2025-08-14 15:51:08.304543+00 2025-08-14 15:51:08.304556+00 f t ADELANTO 0.00 4 5494 \N +203725 2025-08-12 04:28:24.66493+00 2025-08-12 04:28:24.664939+00 f t SUBTOTAL 64500.00 1 5320 \N +203726 2025-08-12 04:28:24.666926+00 2025-08-12 04:28:24.666935+00 f t DESCUENTO 0.00 2 5320 \N +203727 2025-08-12 04:28:24.668852+00 2025-08-12 04:28:24.66886+00 f t TOTAL 64500.00 3 5320 \N +203728 2025-08-12 04:28:24.670274+00 2025-08-12 04:28:24.670282+00 f t ADELANTO 17000.00 4 5320 \N +203745 2025-08-12 07:48:19.292064+00 2025-08-12 07:48:19.292079+00 f t SUBTOTAL 0.00 1 5321 \N +203746 2025-08-12 07:48:19.295105+00 2025-08-12 07:48:19.295119+00 f t DESCUENTO 0.00 2 5321 \N +203747 2025-08-12 07:48:19.302106+00 2025-08-12 07:48:19.302118+00 f t TOTAL 0.00 3 5321 \N +203748 2025-08-12 07:48:19.304597+00 2025-08-12 07:48:19.304606+00 f t ADELANTO 0.00 4 5321 \N +203773 2025-08-12 08:41:29.026711+00 2025-08-12 08:41:29.026726+00 f t SUBTOTAL 64500.00 1 5322 \N +203774 2025-08-12 08:41:29.029204+00 2025-08-12 08:41:29.029214+00 f t DESCUENTO 0.00 2 5322 \N +203775 2025-08-12 08:41:29.031036+00 2025-08-12 08:41:29.031044+00 f t TOTAL 64500.00 3 5322 \N +203776 2025-08-12 08:41:29.032862+00 2025-08-12 08:41:29.032871+00 f t ADELANTO 17000.00 4 5322 \N +203781 2025-08-12 08:42:15.849765+00 2025-08-12 08:42:15.849779+00 f t SUBTOTAL 0.00 1 5323 \N +203782 2025-08-12 08:42:15.852013+00 2025-08-12 08:42:15.85203+00 f t DESCUENTO 0.00 2 5323 \N +203783 2025-08-12 08:42:15.854593+00 2025-08-12 08:42:15.854605+00 f t TOTAL 0.00 3 5323 \N +203784 2025-08-12 08:42:15.858566+00 2025-08-12 08:42:15.858579+00 f t ADELANTO 0.00 4 5323 \N +206677 2025-08-13 09:13:17.146324+00 2025-08-13 09:13:17.146336+00 f t SUBTOTAL 42000.00 1 5391 \N +206678 2025-08-13 09:13:17.152906+00 2025-08-13 09:13:17.152923+00 f t DESCUENTO 0.00 2 5391 \N +206679 2025-08-13 09:13:17.156041+00 2025-08-13 09:13:17.156051+00 f t TOTAL 42000.00 3 5391 \N +206680 2025-08-13 09:13:17.158849+00 2025-08-13 09:13:17.158861+00 f t ADELANTO 9500.00 4 5391 \N +203825 2025-08-12 09:17:17.955921+00 2025-08-12 09:17:17.955971+00 f t SUBTOTAL 0.00 1 5324 \N +203826 2025-08-12 09:17:17.959185+00 2025-08-12 09:17:17.9592+00 f t DESCUENTO 0.00 2 5324 \N +203827 2025-08-12 09:17:17.961395+00 2025-08-12 09:17:17.961411+00 f t TOTAL 0.00 3 5324 \N +203828 2025-08-12 09:17:17.963568+00 2025-08-12 09:17:17.963582+00 f t ADELANTO 0.00 4 5324 \N +211749 2025-08-14 20:14:49.081525+00 2025-08-14 20:14:49.081534+00 f t SUBTOTAL 0.00 1 5516 \N +211750 2025-08-14 20:14:49.083192+00 2025-08-14 20:14:49.083199+00 f t DESCUENTO 0.00 2 5516 \N +211751 2025-08-14 20:14:49.084533+00 2025-08-14 20:14:49.084539+00 f t TOTAL 0.00 3 5516 \N +211752 2025-08-14 20:14:49.085789+00 2025-08-14 20:14:49.085795+00 f t ADELANTO 0.00 4 5516 \N +211849 2025-08-14 20:29:50.280374+00 2025-08-14 20:29:50.280385+00 f t SUBTOTAL 88000.00 1 5521 \N +211850 2025-08-14 20:29:50.283024+00 2025-08-14 20:29:50.283035+00 f t DESCUENTO 0.00 2 5521 \N +211851 2025-08-14 20:29:50.284942+00 2025-08-14 20:29:50.28495+00 f t TOTAL 88000.00 3 5521 \N +211852 2025-08-14 20:29:50.286535+00 2025-08-14 20:29:50.286544+00 f t ADELANTO 19000.00 4 5521 \N +207252 2025-08-13 13:14:48.079778+00 2025-08-13 13:14:48.079792+00 f t ADELANTO 10000.00 4 5409 \N +211973 2025-08-14 22:07:06.77611+00 2025-08-14 22:07:06.77612+00 f t SUBTOTAL 68000.00 1 5524 \N +211974 2025-08-14 22:07:06.778342+00 2025-08-14 22:07:06.77835+00 f t DESCUENTO 0.00 2 5524 \N +211975 2025-08-14 22:07:06.780222+00 2025-08-14 22:07:06.780229+00 f t TOTAL 68000.00 3 5524 \N +211976 2025-08-14 22:07:06.783035+00 2025-08-14 22:07:06.783045+00 f t ADELANTO 13000.00 4 5524 \N +207301 2025-08-13 13:28:09.128229+00 2025-08-13 13:28:09.128245+00 f t SUBTOTAL 0.00 1 5410 \N +207302 2025-08-13 13:28:09.131797+00 2025-08-13 13:28:09.13181+00 f t DESCUENTO 0.00 2 5410 \N +207303 2025-08-13 13:28:09.13438+00 2025-08-13 13:28:09.134395+00 f t TOTAL 0.00 3 5410 \N +207304 2025-08-13 13:28:09.13687+00 2025-08-13 13:28:09.136883+00 f t ADELANTO 0.00 4 5410 \N +229633 2025-08-20 22:05:48.003051+00 2025-08-20 22:05:48.003064+00 f t SUBTOTAL 50000.00 1 5945 \N +229634 2025-08-20 22:05:48.005837+00 2025-08-20 22:05:48.005849+00 f t DESCUENTO 0.00 2 5945 \N +229635 2025-08-20 22:05:48.007622+00 2025-08-20 22:05:48.007632+00 f t TOTAL 50000.00 3 5945 \N +214205 2025-08-15 18:50:13.493625+00 2025-08-15 18:50:13.493641+00 f t SUBTOTAL 0.00 1 5583 \N +214206 2025-08-15 18:50:13.498556+00 2025-08-15 18:50:13.498571+00 f t DESCUENTO 0.00 2 5583 \N +214207 2025-08-15 18:50:13.501512+00 2025-08-15 18:50:13.501525+00 f t TOTAL 0.00 3 5583 \N +214208 2025-08-15 18:50:13.504091+00 2025-08-15 18:50:13.504104+00 f t ADELANTO 0.00 4 5583 \N +214397 2025-08-15 19:34:31.169799+00 2025-08-15 19:34:31.169813+00 f t SUBTOTAL 0.00 1 5586 \N +214398 2025-08-15 19:34:31.172947+00 2025-08-15 19:34:31.172958+00 f t DESCUENTO 0.00 2 5586 \N +214399 2025-08-15 19:34:31.175675+00 2025-08-15 19:34:31.175689+00 f t TOTAL 0.00 3 5586 \N +214400 2025-08-15 19:34:31.179642+00 2025-08-15 19:34:31.179651+00 f t ADELANTO 0.00 4 5586 \N +209965 2025-08-14 05:38:34.221769+00 2025-08-14 05:38:34.221778+00 f t SUBTOTAL 27500.00 1 5470 \N +209966 2025-08-14 05:38:34.223761+00 2025-08-14 05:38:34.223772+00 f t DESCUENTO 0.00 2 5470 \N +203949 2025-08-12 09:45:36.863932+00 2025-08-12 09:45:36.863948+00 f t SUBTOTAL 94200.00 1 5325 \N +203950 2025-08-12 09:45:36.870193+00 2025-08-12 09:45:36.870208+00 f t DESCUENTO 0.00 2 5325 \N +203951 2025-08-12 09:45:36.873643+00 2025-08-12 09:45:36.873657+00 f t TOTAL 94200.00 3 5325 \N +203952 2025-08-12 09:45:36.884468+00 2025-08-12 09:45:36.884483+00 f t ADELANTO 56200.00 4 5325 \N +209967 2025-08-14 05:38:34.225232+00 2025-08-14 05:38:34.225242+00 f t TOTAL 27500.00 3 5470 \N +209968 2025-08-14 05:38:34.226518+00 2025-08-14 05:38:34.226525+00 f t ADELANTO 27500.00 4 5470 \N +205741 2025-08-12 23:36:05.35004+00 2025-08-12 23:36:05.350055+00 f t SUBTOTAL 50000.00 1 5372 \N +205742 2025-08-12 23:36:05.353738+00 2025-08-12 23:36:05.353752+00 f t DESCUENTO 0.00 2 5372 \N +205743 2025-08-12 23:36:05.35635+00 2025-08-12 23:36:05.356363+00 f t TOTAL 50000.00 3 5372 \N +205744 2025-08-12 23:36:05.360225+00 2025-08-12 23:36:05.360237+00 f t ADELANTO 10000.00 4 5372 \N +206073 2025-08-13 01:16:18.310907+00 2025-08-13 01:16:18.310919+00 f t SUBTOTAL 0.00 1 5381 \N +206074 2025-08-13 01:16:18.313392+00 2025-08-13 01:16:18.313399+00 f t DESCUENTO 0.00 2 5381 \N +206075 2025-08-13 01:16:18.3161+00 2025-08-13 01:16:18.316112+00 f t TOTAL 0.00 3 5381 \N +206076 2025-08-13 01:16:18.318248+00 2025-08-13 01:16:18.31826+00 f t ADELANTO 0.00 4 5381 \N +210581 2025-08-14 15:29:04.745533+00 2025-08-14 15:29:04.745548+00 f t SUBTOTAL 0.00 1 5491 \N +210582 2025-08-14 15:29:04.748107+00 2025-08-14 15:29:04.74812+00 f t DESCUENTO 0.00 2 5491 \N +210583 2025-08-14 15:29:04.751251+00 2025-08-14 15:29:04.751264+00 f t TOTAL 0.00 3 5491 \N +210584 2025-08-14 15:29:04.764816+00 2025-08-14 15:29:04.76483+00 f t ADELANTO 0.00 4 5491 \N +216015 2025-08-16 13:57:45.176966+00 2025-08-16 13:57:45.176973+00 f t TOTAL 0.00 3 5629 \N +216016 2025-08-16 13:57:45.178565+00 2025-08-16 13:57:45.178574+00 f t ADELANTO 0.00 4 5629 \N +210685 2025-08-14 16:00:18.703853+00 2025-08-14 16:00:18.703867+00 f t SUBTOTAL 0.00 1 5495 \N +210686 2025-08-14 16:00:18.711373+00 2025-08-14 16:00:18.711389+00 f t DESCUENTO 0.00 2 5495 \N +210687 2025-08-14 16:00:18.714349+00 2025-08-14 16:00:18.714364+00 f t TOTAL 0.00 3 5495 \N +210688 2025-08-14 16:00:18.717119+00 2025-08-14 16:00:18.717134+00 f t ADELANTO 0.00 4 5495 \N +216185 2025-08-16 14:55:10.011311+00 2025-08-16 14:55:10.011321+00 f t SUBTOTAL 0.00 1 5631 \N +216186 2025-08-16 14:55:10.013814+00 2025-08-16 14:55:10.013823+00 f t DESCUENTO 0.00 2 5631 \N +216187 2025-08-16 14:55:10.016068+00 2025-08-16 14:55:10.01608+00 f t TOTAL 0.00 3 5631 \N +216188 2025-08-16 14:55:10.018215+00 2025-08-16 14:55:10.018227+00 f t ADELANTO 0.00 4 5631 \N +204053 2025-08-12 10:27:39.375496+00 2025-08-12 10:27:39.375509+00 f t SUBTOTAL 50000.00 1 5326 \N +204054 2025-08-12 10:27:39.383091+00 2025-08-12 10:27:39.383106+00 f t DESCUENTO 0.00 2 5326 \N +204055 2025-08-12 10:27:39.386022+00 2025-08-12 10:27:39.386035+00 f t TOTAL 50000.00 3 5326 \N +204056 2025-08-12 10:27:39.388964+00 2025-08-12 10:27:39.388975+00 f t ADELANTO 10000.00 4 5326 \N +204061 2025-08-12 10:49:38.498927+00 2025-08-12 10:49:38.498938+00 f t SUBTOTAL 0.00 1 5327 \N +204062 2025-08-12 10:49:38.501461+00 2025-08-12 10:49:38.501473+00 f t DESCUENTO 0.00 2 5327 \N +204063 2025-08-12 10:49:38.503063+00 2025-08-12 10:49:38.503073+00 f t TOTAL 0.00 3 5327 \N +204064 2025-08-12 10:49:38.504856+00 2025-08-12 10:49:38.504867+00 f t ADELANTO 0.00 4 5327 \N +216793 2025-08-16 18:28:42.213111+00 2025-08-16 18:28:42.213123+00 f t SUBTOTAL 49500.00 1 5644 \N +216794 2025-08-16 18:28:42.215066+00 2025-08-16 18:28:42.215074+00 f t DESCUENTO 0.00 2 5644 \N +206945 2025-08-13 12:43:56.860292+00 2025-08-13 12:43:56.860306+00 f t SUBTOTAL 0.00 1 5399 \N +206946 2025-08-13 12:43:56.86493+00 2025-08-13 12:43:56.864942+00 f t DESCUENTO 0.00 2 5399 \N +206947 2025-08-13 12:43:56.870119+00 2025-08-13 12:43:56.870128+00 f t TOTAL 0.00 3 5399 \N +206948 2025-08-13 12:43:56.87275+00 2025-08-13 12:43:56.872763+00 f t ADELANTO 0.00 4 5399 \N +216795 2025-08-16 18:28:42.216577+00 2025-08-16 18:28:42.216586+00 f t TOTAL 49500.00 3 5644 \N +216796 2025-08-16 18:28:42.218064+00 2025-08-16 18:28:42.218072+00 f t ADELANTO 11500.00 4 5644 \N +207029 2025-08-13 12:54:24.249124+00 2025-08-13 12:54:24.249139+00 f t SUBTOTAL 0.00 1 5402 \N +207030 2025-08-13 12:54:24.255283+00 2025-08-13 12:54:24.255296+00 f t DESCUENTO 0.00 2 5402 \N +207031 2025-08-13 12:54:24.258164+00 2025-08-13 12:54:24.258177+00 f t TOTAL 0.00 3 5402 \N +207032 2025-08-13 12:54:24.260744+00 2025-08-13 12:54:24.260758+00 f t ADELANTO 0.00 4 5402 \N +211577 2025-08-14 19:11:20.169309+00 2025-08-14 19:11:20.169318+00 f t SUBTOTAL 0.00 1 5512 \N +211578 2025-08-14 19:11:20.171525+00 2025-08-14 19:11:20.171534+00 f t DESCUENTO 0.00 2 5512 \N +211579 2025-08-14 19:11:20.173184+00 2025-08-14 19:11:20.173193+00 f t TOTAL 0.00 3 5512 \N +211580 2025-08-14 19:11:20.174984+00 2025-08-14 19:11:20.174992+00 f t ADELANTO 0.00 4 5512 \N +204133 2025-08-12 10:53:07.718687+00 2025-08-12 10:53:07.718699+00 f t SUBTOTAL 0.00 1 5328 \N +204134 2025-08-12 10:53:07.722106+00 2025-08-12 10:53:07.722117+00 f t DESCUENTO 0.00 2 5328 \N +204135 2025-08-12 10:53:07.724191+00 2025-08-12 10:53:07.724202+00 f t TOTAL 0.00 3 5328 \N +204136 2025-08-12 10:53:07.727773+00 2025-08-12 10:53:07.727784+00 f t ADELANTO 0.00 4 5328 \N +207321 2025-08-13 13:34:08.721034+00 2025-08-13 13:34:08.721045+00 f t SUBTOTAL 50000.00 1 5406 \N +207322 2025-08-13 13:34:08.727894+00 2025-08-13 13:34:08.727908+00 f t DESCUENTO 0.00 2 5406 \N +207323 2025-08-13 13:34:08.732299+00 2025-08-13 13:34:08.732313+00 f t TOTAL 50000.00 3 5406 \N +207324 2025-08-13 13:34:08.735373+00 2025-08-13 13:34:08.735387+00 f t ADELANTO 10000.00 4 5406 \N +207369 2025-08-13 13:37:36.218407+00 2025-08-13 13:37:36.218421+00 f t SUBTOTAL 42000.00 1 5411 \N +207370 2025-08-13 13:37:36.221504+00 2025-08-13 13:37:36.221517+00 f t DESCUENTO 0.00 2 5411 \N +207371 2025-08-13 13:37:36.223944+00 2025-08-13 13:37:36.223958+00 f t TOTAL 42000.00 3 5411 \N +207372 2025-08-13 13:37:36.226204+00 2025-08-13 13:37:36.226217+00 f t ADELANTO 9500.00 4 5411 \N +211857 2025-08-14 21:04:33.173746+00 2025-08-14 21:04:33.173755+00 f t SUBTOTAL 0.00 1 5522 \N +211858 2025-08-14 21:04:33.175386+00 2025-08-14 21:04:33.175393+00 f t DESCUENTO 0.00 2 5522 \N +211859 2025-08-14 21:04:33.17684+00 2025-08-14 21:04:33.176848+00 f t TOTAL 0.00 3 5522 \N +211860 2025-08-14 21:04:33.178196+00 2025-08-14 21:04:33.178203+00 f t ADELANTO 0.00 4 5522 \N +229636 2025-08-20 22:05:48.010326+00 2025-08-20 22:05:48.010337+00 f t ADELANTO 10000.00 4 5945 \N +331373 2025-09-27 04:32:07.823803+00 2025-09-27 04:32:07.823813+00 f t SUBTOTAL 0.00 1 8379 \N +331374 2025-09-27 04:32:07.82562+00 2025-09-27 04:32:07.825628+00 f t DESCUENTO 0.00 2 8379 \N +204757 2025-08-12 15:00:57.368876+00 2025-08-12 15:00:57.36889+00 f t SUBTOTAL 0.00 1 5342 \N +204758 2025-08-12 15:00:57.372703+00 2025-08-12 15:00:57.372717+00 f t DESCUENTO 0.00 2 5342 \N +204759 2025-08-12 15:00:57.376772+00 2025-08-12 15:00:57.376785+00 f t TOTAL 0.00 3 5342 \N +204201 2025-08-12 11:47:52.620152+00 2025-08-12 11:47:52.620164+00 f t SUBTOTAL 0.00 1 5329 \N +204202 2025-08-12 11:47:52.62304+00 2025-08-12 11:47:52.623049+00 f t DESCUENTO 0.00 2 5329 \N +204203 2025-08-12 11:47:52.624868+00 2025-08-12 11:47:52.62488+00 f t TOTAL 0.00 3 5329 \N +204204 2025-08-12 11:47:52.627042+00 2025-08-12 11:47:52.627054+00 f t ADELANTO 0.00 4 5329 \N +204760 2025-08-12 15:00:57.380151+00 2025-08-12 15:00:57.380166+00 f t ADELANTO 0.00 4 5342 \N +209577 2025-08-14 04:38:45.054481+00 2025-08-14 04:38:45.054491+00 f t SUBTOTAL 0.00 1 5463 \N +209578 2025-08-14 04:38:45.05881+00 2025-08-14 04:38:45.058818+00 f t DESCUENTO 0.00 2 5463 \N +209579 2025-08-14 04:38:45.060493+00 2025-08-14 04:38:45.060501+00 f t TOTAL 0.00 3 5463 \N +209580 2025-08-14 04:38:45.061843+00 2025-08-14 04:38:45.061852+00 f t ADELANTO 0.00 4 5463 \N +204233 2025-08-12 11:50:43.19989+00 2025-08-12 11:50:43.199902+00 f t SUBTOTAL 0.00 1 5330 \N +204234 2025-08-12 11:50:43.202612+00 2025-08-12 11:50:43.202626+00 f t DESCUENTO 0.00 2 5330 \N +204235 2025-08-12 11:50:43.204835+00 2025-08-12 11:50:43.204844+00 f t TOTAL 0.00 3 5330 \N +204236 2025-08-12 11:50:43.206606+00 2025-08-12 11:50:43.206616+00 f t ADELANTO 0.00 4 5330 \N +209973 2025-08-14 09:25:36.099481+00 2025-08-14 09:25:36.099496+00 f t SUBTOTAL 0.00 1 5471 \N +209974 2025-08-14 09:25:36.101845+00 2025-08-14 09:25:36.101856+00 f t DESCUENTO 0.00 2 5471 \N +209975 2025-08-14 09:25:36.104053+00 2025-08-14 09:25:36.104065+00 f t TOTAL 0.00 3 5471 \N +209976 2025-08-14 09:25:36.106229+00 2025-08-14 09:25:36.106241+00 f t ADELANTO 0.00 4 5471 \N +205577 2025-08-12 22:32:55.32591+00 2025-08-12 22:32:55.32592+00 f t SUBTOTAL 64500.00 1 5368 \N +205578 2025-08-12 22:32:55.328606+00 2025-08-12 22:32:55.328616+00 f t DESCUENTO 0.00 2 5368 \N +205579 2025-08-12 22:32:55.330487+00 2025-08-12 22:32:55.330496+00 f t TOTAL 64500.00 3 5368 \N +205580 2025-08-12 22:32:55.332255+00 2025-08-12 22:32:55.332265+00 f t ADELANTO 17000.00 4 5368 \N +210265 2025-08-14 14:12:28.108059+00 2025-08-14 14:12:28.10807+00 f t SUBTOTAL 111000.00 1 5481 \N +210266 2025-08-14 14:12:28.110274+00 2025-08-14 14:12:28.110282+00 f t DESCUENTO 0.00 2 5481 \N +210267 2025-08-14 14:12:28.112184+00 2025-08-14 14:12:28.112196+00 f t TOTAL 111000.00 3 5481 \N +210268 2025-08-14 14:12:28.113789+00 2025-08-14 14:12:28.113797+00 f t ADELANTO 23500.00 4 5481 \N +210317 2025-08-14 14:16:46.186014+00 2025-08-14 14:16:46.186028+00 f t SUBTOTAL 0.00 1 5482 \N +210318 2025-08-14 14:16:46.188763+00 2025-08-14 14:16:46.188771+00 f t DESCUENTO 0.00 2 5482 \N +210319 2025-08-14 14:16:46.19054+00 2025-08-14 14:16:46.190553+00 f t TOTAL 0.00 3 5482 \N +210320 2025-08-14 14:16:46.192685+00 2025-08-14 14:16:46.192697+00 f t ADELANTO 0.00 4 5482 \N +210373 2025-08-14 14:32:41.227287+00 2025-08-14 14:32:41.227297+00 f t SUBTOTAL 42000.00 1 5484 \N +210374 2025-08-14 14:32:41.230457+00 2025-08-14 14:32:41.230465+00 f t DESCUENTO 0.00 2 5484 \N +210375 2025-08-14 14:32:41.232178+00 2025-08-14 14:32:41.232186+00 f t TOTAL 42000.00 3 5484 \N +210376 2025-08-14 14:32:41.236661+00 2025-08-14 14:32:41.236671+00 f t ADELANTO 9500.00 4 5484 \N +210481 2025-08-14 14:52:10.165244+00 2025-08-14 14:52:10.165257+00 f t SUBTOTAL 293400.00 1 5487 \N +210482 2025-08-14 14:52:10.168837+00 2025-08-14 14:52:10.16885+00 f t DESCUENTO 0.00 2 5487 \N +210483 2025-08-14 14:52:10.171435+00 2025-08-14 14:52:10.171447+00 f t TOTAL 293400.00 3 5487 \N +210484 2025-08-14 14:52:10.175448+00 2025-08-14 14:52:10.175467+00 f t ADELANTO 217400.00 4 5487 \N +206173 2025-08-13 01:39:32.828819+00 2025-08-13 01:39:32.828828+00 f t SUBTOTAL 0.00 1 5383 \N +206174 2025-08-13 01:39:32.83166+00 2025-08-13 01:39:32.831672+00 f t DESCUENTO 0.00 2 5383 \N +206175 2025-08-13 01:39:32.833347+00 2025-08-13 01:39:32.833357+00 f t TOTAL 0.00 3 5383 \N +206176 2025-08-13 01:39:32.835272+00 2025-08-13 01:39:32.835282+00 f t ADELANTO 0.00 4 5383 \N +206217 2025-08-13 02:12:23.199355+00 2025-08-13 02:12:23.199368+00 f t SUBTOTAL 50000.00 1 5384 \N +206218 2025-08-13 02:12:23.202217+00 2025-08-13 02:12:23.202228+00 f t DESCUENTO 0.00 2 5384 \N +206219 2025-08-13 02:12:23.204878+00 2025-08-13 02:12:23.204892+00 f t TOTAL 50000.00 3 5384 \N +206220 2025-08-13 02:12:23.207219+00 2025-08-13 02:12:23.207229+00 f t ADELANTO 10000.00 4 5384 \N +210693 2025-08-14 16:01:33.917679+00 2025-08-14 16:01:33.917693+00 f t SUBTOTAL 0.00 1 5496 \N +210694 2025-08-14 16:01:33.934135+00 2025-08-14 16:01:33.934149+00 f t DESCUENTO 0.00 2 5496 \N +210695 2025-08-14 16:01:33.938616+00 2025-08-14 16:01:33.938627+00 f t TOTAL 0.00 3 5496 \N +210696 2025-08-14 16:01:33.941284+00 2025-08-14 16:01:33.941297+00 f t ADELANTO 0.00 4 5496 \N +206389 2025-08-13 03:02:41.910441+00 2025-08-13 03:02:41.910454+00 f t SUBTOTAL 42000.00 1 5387 \N +206390 2025-08-13 03:02:41.913451+00 2025-08-13 03:02:41.913465+00 f t DESCUENTO 0.00 2 5387 \N +206391 2025-08-13 03:02:41.916036+00 2025-08-13 03:02:41.916049+00 f t TOTAL 42000.00 3 5387 \N +206392 2025-08-13 03:02:41.918531+00 2025-08-13 03:02:41.918544+00 f t ADELANTO 9500.00 4 5387 \N +211025 2025-08-14 18:03:15.230664+00 2025-08-14 18:03:15.230674+00 f t SUBTOTAL 131700.00 1 5502 \N +211026 2025-08-14 18:03:15.233097+00 2025-08-14 18:03:15.233106+00 f t DESCUENTO 0.00 2 5502 \N +211027 2025-08-14 18:03:15.239829+00 2025-08-14 18:03:15.239843+00 f t TOTAL 131700.00 3 5502 \N +211028 2025-08-14 18:03:15.242349+00 2025-08-14 18:03:15.242361+00 f t ADELANTO 55700.00 4 5502 \N +206781 2025-08-13 11:21:45.012001+00 2025-08-13 11:21:45.012012+00 f t SUBTOTAL 0.00 1 5394 \N +206782 2025-08-13 11:21:45.01659+00 2025-08-13 11:21:45.016606+00 f t DESCUENTO 0.00 2 5394 \N +206783 2025-08-13 11:21:45.019292+00 2025-08-13 11:21:45.019305+00 f t TOTAL 0.00 3 5394 \N +206784 2025-08-13 11:21:45.021727+00 2025-08-13 11:21:45.021739+00 f t ADELANTO 0.00 4 5394 \N +211257 2025-08-14 18:56:29.18447+00 2025-08-14 18:56:29.18448+00 f t SUBTOTAL 0.00 1 5505 \N +211258 2025-08-14 18:56:29.186376+00 2025-08-14 18:56:29.186384+00 f t DESCUENTO 0.00 2 5505 \N +211259 2025-08-14 18:56:29.187723+00 2025-08-14 18:56:29.187735+00 f t TOTAL 0.00 3 5505 \N +211260 2025-08-14 18:56:29.189544+00 2025-08-14 18:56:29.189552+00 f t ADELANTO 0.00 4 5505 \N +206953 2025-08-13 12:46:57.602506+00 2025-08-13 12:46:57.602517+00 f t SUBTOTAL 0.00 1 5400 \N +206954 2025-08-13 12:46:57.607961+00 2025-08-13 12:46:57.607977+00 f t DESCUENTO 0.00 2 5400 \N +206955 2025-08-13 12:46:57.610654+00 2025-08-13 12:46:57.610667+00 f t TOTAL 0.00 3 5400 \N +206956 2025-08-13 12:46:57.613334+00 2025-08-13 12:46:57.613347+00 f t ADELANTO 0.00 4 5400 \N +211405 2025-08-14 19:00:04.476799+00 2025-08-14 19:00:04.476816+00 f t SUBTOTAL 0.00 1 5508 \N +211406 2025-08-14 19:00:04.484158+00 2025-08-14 19:00:04.484172+00 f t DESCUENTO 0.00 2 5508 \N +211407 2025-08-14 19:00:04.490155+00 2025-08-14 19:00:04.490168+00 f t TOTAL 0.00 3 5508 \N +211408 2025-08-14 19:00:04.493229+00 2025-08-14 19:00:04.493242+00 f t ADELANTO 0.00 4 5508 \N +207181 2025-08-13 13:08:26.614652+00 2025-08-13 13:08:26.614666+00 f t SUBTOTAL 0.00 1 5408 \N +207182 2025-08-13 13:08:26.619242+00 2025-08-13 13:08:26.619255+00 f t DESCUENTO 0.00 2 5408 \N +207183 2025-08-13 13:08:26.622601+00 2025-08-13 13:08:26.622612+00 f t TOTAL 0.00 3 5408 \N +207184 2025-08-13 13:08:26.62507+00 2025-08-13 13:08:26.625082+00 f t ADELANTO 0.00 4 5408 \N +331375 2025-09-27 04:32:07.826949+00 2025-09-27 04:32:07.826955+00 f t TOTAL 0.00 3 8379 \N +331376 2025-09-27 04:32:07.828506+00 2025-09-27 04:32:07.828513+00 f t ADELANTO 0.00 4 8379 \N +207405 2025-08-13 13:41:55.98181+00 2025-08-13 13:41:55.981823+00 f t SUBTOTAL 0.00 1 5412 \N +207406 2025-08-13 13:41:55.98483+00 2025-08-13 13:41:55.984841+00 f t DESCUENTO 0.00 2 5412 \N +207407 2025-08-13 13:41:55.986942+00 2025-08-13 13:41:55.986952+00 f t TOTAL 0.00 3 5412 \N +207408 2025-08-13 13:41:55.989508+00 2025-08-13 13:41:55.989517+00 f t ADELANTO 0.00 4 5412 \N +214569 2025-08-15 20:29:36.211312+00 2025-08-15 20:29:36.211325+00 f t SUBTOTAL 42000.00 1 5591 \N +214570 2025-08-15 20:29:36.214318+00 2025-08-15 20:29:36.214332+00 f t DESCUENTO 0.00 2 5591 \N +214571 2025-08-15 20:29:36.21677+00 2025-08-15 20:29:36.216782+00 f t TOTAL 42000.00 3 5591 \N +214572 2025-08-15 20:29:36.218837+00 2025-08-15 20:29:36.218849+00 f t ADELANTO 9500.00 4 5591 \N +209637 2025-08-14 04:40:25.255631+00 2025-08-14 04:40:25.255645+00 f t SUBTOTAL 0.00 1 5464 \N +209638 2025-08-14 04:40:25.258767+00 2025-08-14 04:40:25.258781+00 f t DESCUENTO 0.00 2 5464 \N +209639 2025-08-14 04:40:25.264208+00 2025-08-14 04:40:25.264221+00 f t TOTAL 0.00 3 5464 \N +209640 2025-08-14 04:40:25.266907+00 2025-08-14 04:40:25.266921+00 f t ADELANTO 0.00 4 5464 \N +207437 2025-08-13 13:51:53.813277+00 2025-08-13 13:51:53.813291+00 f t SUBTOTAL 0.00 1 5413 \N +207438 2025-08-13 13:51:53.81597+00 2025-08-13 13:51:53.81598+00 f t DESCUENTO 0.00 2 5413 \N +207439 2025-08-13 13:51:53.8178+00 2025-08-13 13:51:53.817808+00 f t TOTAL 0.00 3 5413 \N +207440 2025-08-13 13:51:53.819649+00 2025-08-13 13:51:53.819657+00 f t ADELANTO 0.00 4 5413 \N +214873 2025-08-15 22:34:25.761945+00 2025-08-15 22:34:25.761958+00 f t SUBTOTAL 0.00 1 5599 \N +214874 2025-08-15 22:34:25.764846+00 2025-08-15 22:34:25.764854+00 f t DESCUENTO 0.00 2 5599 \N +214875 2025-08-15 22:34:25.767711+00 2025-08-15 22:34:25.76772+00 f t TOTAL 0.00 3 5599 \N +214876 2025-08-15 22:34:25.769544+00 2025-08-15 22:34:25.769554+00 f t ADELANTO 0.00 4 5599 \N +209981 2025-08-14 09:54:13.396728+00 2025-08-14 09:54:13.39674+00 f t SUBTOTAL 0.00 1 5472 \N +209982 2025-08-14 09:54:13.399044+00 2025-08-14 09:54:13.399056+00 f t DESCUENTO 0.00 2 5472 \N +209983 2025-08-14 09:54:13.402011+00 2025-08-14 09:54:13.40202+00 f t TOTAL 0.00 3 5472 \N +209984 2025-08-14 09:54:13.403773+00 2025-08-14 09:54:13.403782+00 f t ADELANTO 0.00 4 5472 \N +210157 2025-08-14 12:55:51.956479+00 2025-08-14 12:55:51.956489+00 f t SUBTOTAL 42000.00 1 5476 \N +210158 2025-08-14 12:55:51.95866+00 2025-08-14 12:55:51.958668+00 f t DESCUENTO 0.00 2 5476 \N +210159 2025-08-14 12:55:51.960368+00 2025-08-14 12:55:51.960376+00 f t TOTAL 42000.00 3 5476 \N +210160 2025-08-14 12:55:51.961717+00 2025-08-14 12:55:51.961724+00 f t ADELANTO 9500.00 4 5476 \N +215569 2025-08-16 07:42:42.0483+00 2025-08-16 07:42:42.048312+00 f t SUBTOTAL 50000.00 1 5618 \N +215570 2025-08-16 07:42:42.051476+00 2025-08-16 07:42:42.051489+00 f t DESCUENTO 0.00 2 5618 \N +215571 2025-08-16 07:42:42.05565+00 2025-08-16 07:42:42.055663+00 f t TOTAL 50000.00 3 5618 \N +215572 2025-08-16 07:42:42.058034+00 2025-08-16 07:42:42.058047+00 f t ADELANTO 10000.00 4 5618 \N +215829 2025-08-16 13:27:04.575965+00 2025-08-16 13:27:04.575973+00 f t SUBTOTAL 0.00 1 5623 \N +215830 2025-08-16 13:27:04.57833+00 2025-08-16 13:27:04.578338+00 f t DESCUENTO 0.00 2 5623 \N +215831 2025-08-16 13:27:04.579688+00 2025-08-16 13:27:04.579695+00 f t TOTAL 0.00 3 5623 \N +215832 2025-08-16 13:27:04.58088+00 2025-08-16 13:27:04.580888+00 f t ADELANTO 0.00 4 5623 \N +207513 2025-08-13 14:20:25.326521+00 2025-08-13 14:20:25.326531+00 f t SUBTOTAL 0.00 1 5414 \N +207514 2025-08-13 14:20:25.329298+00 2025-08-13 14:20:25.32931+00 f t DESCUENTO 0.00 2 5414 \N +207515 2025-08-13 14:20:25.331612+00 2025-08-13 14:20:25.331621+00 f t TOTAL 0.00 3 5414 \N +207516 2025-08-13 14:20:25.333571+00 2025-08-13 14:20:25.33358+00 f t ADELANTO 0.00 4 5414 \N +207521 2025-08-13 14:35:46.360042+00 2025-08-13 14:35:46.360056+00 f t SUBTOTAL 0.00 1 5415 \N +207522 2025-08-13 14:35:46.36242+00 2025-08-13 14:35:46.362432+00 f t DESCUENTO 0.00 2 5415 \N +207523 2025-08-13 14:35:46.365365+00 2025-08-13 14:35:46.365378+00 f t TOTAL 0.00 3 5415 \N +207524 2025-08-13 14:35:46.367646+00 2025-08-13 14:35:46.367661+00 f t ADELANTO 0.00 4 5415 \N +216133 2025-08-16 14:08:39.074911+00 2025-08-16 14:08:39.074922+00 f t SUBTOTAL 50000.00 1 5630 \N +216134 2025-08-16 14:08:39.077021+00 2025-08-16 14:08:39.077031+00 f t DESCUENTO 0.00 2 5630 \N +216135 2025-08-16 14:08:39.078521+00 2025-08-16 14:08:39.078528+00 f t TOTAL 50000.00 3 5630 \N +216136 2025-08-16 14:08:39.079804+00 2025-08-16 14:08:39.079811+00 f t ADELANTO 10000.00 4 5630 \N +210745 2025-08-14 16:19:47.948068+00 2025-08-14 16:19:47.948076+00 f t SUBTOTAL 50000.00 1 5497 \N +210746 2025-08-14 16:19:47.950138+00 2025-08-14 16:19:47.950146+00 f t DESCUENTO 0.00 2 5497 \N +207549 2025-08-13 14:44:27.475038+00 2025-08-13 14:44:27.475047+00 f t SUBTOTAL 49500.00 1 5416 \N +207550 2025-08-13 14:44:27.477419+00 2025-08-13 14:44:27.477428+00 f t DESCUENTO 0.00 2 5416 \N +207551 2025-08-13 14:44:27.484843+00 2025-08-13 14:44:27.484853+00 f t TOTAL 49500.00 3 5416 \N +207552 2025-08-13 14:44:27.487726+00 2025-08-13 14:44:27.48774+00 f t ADELANTO 11500.00 4 5416 \N +210747 2025-08-14 16:19:47.951512+00 2025-08-14 16:19:47.951521+00 f t TOTAL 50000.00 3 5497 \N +210748 2025-08-14 16:19:47.952856+00 2025-08-14 16:19:47.952862+00 f t ADELANTO 10000.00 4 5497 \N +216193 2025-08-16 14:55:46.385095+00 2025-08-16 14:55:46.385103+00 f t SUBTOTAL 0.00 1 5632 \N +207557 2025-08-13 14:52:20.674542+00 2025-08-13 14:52:20.674551+00 f t SUBTOTAL 0.00 1 5417 \N +207558 2025-08-13 14:52:20.676322+00 2025-08-13 14:52:20.67633+00 f t DESCUENTO 0.00 2 5417 \N +207559 2025-08-13 14:52:20.67795+00 2025-08-13 14:52:20.677957+00 f t TOTAL 0.00 3 5417 \N +207560 2025-08-13 14:52:20.679292+00 2025-08-13 14:52:20.679299+00 f t ADELANTO 0.00 4 5417 \N +216194 2025-08-16 14:55:46.386813+00 2025-08-16 14:55:46.386822+00 f t DESCUENTO 0.00 2 5632 \N +216195 2025-08-16 14:55:46.38857+00 2025-08-16 14:55:46.388577+00 f t TOTAL 0.00 3 5632 \N +216196 2025-08-16 14:55:46.389826+00 2025-08-16 14:55:46.389834+00 f t ADELANTO 0.00 4 5632 \N +216249 2025-08-16 14:58:55.282469+00 2025-08-16 14:58:55.282478+00 f t SUBTOTAL 27500.00 1 5633 \N +216250 2025-08-16 14:58:55.284323+00 2025-08-16 14:58:55.28433+00 f t DESCUENTO 0.00 2 5633 \N +216251 2025-08-16 14:58:55.285607+00 2025-08-16 14:58:55.285614+00 f t TOTAL 27500.00 3 5633 \N +216252 2025-08-16 14:58:55.286868+00 2025-08-16 14:58:55.286874+00 f t ADELANTO 27500.00 4 5633 \N +216473 2025-08-16 17:27:37.6244+00 2025-08-16 17:27:37.62441+00 f t SUBTOTAL 0.00 1 5637 \N +216474 2025-08-16 17:27:37.626549+00 2025-08-16 17:27:37.626557+00 f t DESCUENTO 0.00 2 5637 \N +216475 2025-08-16 17:27:37.627869+00 2025-08-16 17:27:37.627876+00 f t TOTAL 0.00 3 5637 \N +216476 2025-08-16 17:27:37.629251+00 2025-08-16 17:27:37.629258+00 f t ADELANTO 0.00 4 5637 \N +211497 2025-08-14 19:10:07.735469+00 2025-08-14 19:10:07.735481+00 f t SUBTOTAL 0.00 1 5511 \N +211498 2025-08-14 19:10:07.74204+00 2025-08-14 19:10:07.742052+00 f t DESCUENTO 0.00 2 5511 \N +211499 2025-08-14 19:10:07.744651+00 2025-08-14 19:10:07.744664+00 f t TOTAL 0.00 3 5511 \N +211500 2025-08-14 19:10:07.747214+00 2025-08-14 19:10:07.747226+00 f t ADELANTO 0.00 4 5511 \N +211765 2025-08-14 20:16:01.633945+00 2025-08-14 20:16:01.63396+00 f t SUBTOTAL 0.00 1 5518 \N +211766 2025-08-14 20:16:01.636214+00 2025-08-14 20:16:01.636226+00 f t DESCUENTO 0.00 2 5518 \N +211767 2025-08-14 20:16:01.638089+00 2025-08-14 20:16:01.6381+00 f t TOTAL 0.00 3 5518 \N +211768 2025-08-14 20:16:01.63972+00 2025-08-14 20:16:01.639767+00 f t ADELANTO 0.00 4 5518 \N +362549 2025-10-07 20:57:56.597244+00 2025-10-07 20:57:56.597254+00 f t SUBTOTAL 0.00 1 9103 \N +362550 2025-10-07 20:57:56.59891+00 2025-10-07 20:57:56.598921+00 f t DESCUENTO 0.00 2 9103 \N +362551 2025-10-07 20:57:56.600297+00 2025-10-07 20:57:56.600305+00 f t TOTAL 0.00 3 9103 \N +219409 2025-08-17 20:42:34.232928+00 2025-08-17 20:42:34.232941+00 f t SUBTOTAL 0.00 1 5702 \N +219410 2025-08-17 20:42:34.235915+00 2025-08-17 20:42:34.235927+00 f t DESCUENTO 0.00 2 5702 \N +219411 2025-08-17 20:42:34.23816+00 2025-08-17 20:42:34.238171+00 f t TOTAL 0.00 3 5702 \N +219412 2025-08-17 20:42:34.23995+00 2025-08-17 20:42:34.239962+00 f t ADELANTO 0.00 4 5702 \N +224623 2025-08-19 12:16:08.644736+00 2025-08-19 12:16:08.644748+00 f t TOTAL 0.00 3 5817 \N +224624 2025-08-19 12:16:08.647677+00 2025-08-19 12:16:08.647689+00 f t ADELANTO 0.00 4 5817 \N +207705 2025-08-13 15:01:39.028968+00 2025-08-13 15:01:39.028982+00 f t SUBTOTAL 49500.00 1 5419 \N +207706 2025-08-13 15:01:39.031199+00 2025-08-13 15:01:39.031209+00 f t DESCUENTO 0.00 2 5419 \N +207707 2025-08-13 15:01:39.033437+00 2025-08-13 15:01:39.033448+00 f t TOTAL 49500.00 3 5419 \N +207708 2025-08-13 15:01:39.03628+00 2025-08-13 15:01:39.036294+00 f t ADELANTO 11500.00 4 5419 \N +214577 2025-08-15 20:32:06.755955+00 2025-08-15 20:32:06.755968+00 f t SUBTOTAL 0.00 1 5592 \N +214578 2025-08-15 20:32:06.765596+00 2025-08-15 20:32:06.765609+00 f t DESCUENTO 0.00 2 5592 \N +214579 2025-08-15 20:32:06.768554+00 2025-08-15 20:32:06.768564+00 f t TOTAL 0.00 3 5592 \N +214580 2025-08-15 20:32:06.771077+00 2025-08-15 20:32:06.77109+00 f t ADELANTO 0.00 4 5592 \N +207737 2025-08-13 15:10:08.892222+00 2025-08-13 15:10:08.892237+00 f t SUBTOTAL 68000.00 1 5420 \N +207738 2025-08-13 15:10:08.89554+00 2025-08-13 15:10:08.895556+00 f t DESCUENTO 0.00 2 5420 \N +207739 2025-08-13 15:10:08.89833+00 2025-08-13 15:10:08.898344+00 f t TOTAL 68000.00 3 5420 \N +207740 2025-08-13 15:10:08.900914+00 2025-08-13 15:10:08.900927+00 f t ADELANTO 13000.00 4 5420 \N +215021 2025-08-15 23:58:47.280668+00 2025-08-15 23:58:47.28068+00 f t SUBTOTAL 50000.00 1 5590 \N +215022 2025-08-15 23:58:47.29042+00 2025-08-15 23:58:47.290432+00 f t DESCUENTO 0.00 2 5590 \N +215023 2025-08-15 23:58:47.292655+00 2025-08-15 23:58:47.292667+00 f t TOTAL 50000.00 3 5590 \N +215024 2025-08-15 23:58:47.294691+00 2025-08-15 23:58:47.294703+00 f t ADELANTO 10000.00 4 5590 \N +209989 2025-08-14 09:59:54.193633+00 2025-08-14 09:59:54.193646+00 f t SUBTOTAL 0.00 1 5473 \N +209990 2025-08-14 09:59:54.195946+00 2025-08-14 09:59:54.195959+00 f t DESCUENTO 0.00 2 5473 \N +209991 2025-08-14 09:59:54.198189+00 2025-08-14 09:59:54.198202+00 f t TOTAL 0.00 3 5473 \N +209992 2025-08-14 09:59:54.200194+00 2025-08-14 09:59:54.200206+00 f t ADELANTO 0.00 4 5473 \N +215437 2025-08-16 04:53:41.886488+00 2025-08-16 04:53:41.886498+00 f t SUBTOTAL 0.00 1 5615 \N +215438 2025-08-16 04:53:41.889133+00 2025-08-16 04:53:41.889145+00 f t DESCUENTO 0.00 2 5615 \N +215439 2025-08-16 04:53:41.891379+00 2025-08-16 04:53:41.89139+00 f t TOTAL 0.00 3 5615 \N +215440 2025-08-16 04:53:41.893623+00 2025-08-16 04:53:41.893637+00 f t ADELANTO 0.00 4 5615 \N +215505 2025-08-16 07:04:28.343201+00 2025-08-16 07:04:28.343215+00 f t SUBTOTAL 0.00 1 5617 \N +215506 2025-08-16 07:04:28.346283+00 2025-08-16 07:04:28.346293+00 f t DESCUENTO 0.00 2 5617 \N +215507 2025-08-16 07:04:28.348341+00 2025-08-16 07:04:28.34835+00 f t TOTAL 0.00 3 5617 \N +215508 2025-08-16 07:04:28.350194+00 2025-08-16 07:04:28.350205+00 f t ADELANTO 0.00 4 5617 \N +207785 2025-08-13 15:18:35.673746+00 2025-08-13 15:18:35.67376+00 f t SUBTOTAL 0.00 1 5421 \N +207786 2025-08-13 15:18:35.676745+00 2025-08-13 15:18:35.676754+00 f t DESCUENTO 0.00 2 5421 \N +207787 2025-08-13 15:18:35.678344+00 2025-08-13 15:18:35.678353+00 f t TOTAL 0.00 3 5421 \N +207788 2025-08-13 15:18:35.680113+00 2025-08-13 15:18:35.680123+00 f t ADELANTO 0.00 4 5421 \N +207793 2025-08-13 15:19:56.942092+00 2025-08-13 15:19:56.942102+00 f t SUBTOTAL 0.00 1 5422 \N +207794 2025-08-13 15:19:56.944203+00 2025-08-13 15:19:56.944212+00 f t DESCUENTO 0.00 2 5422 \N +207795 2025-08-13 15:19:56.946567+00 2025-08-13 15:19:56.946577+00 f t TOTAL 0.00 3 5422 \N +207796 2025-08-13 15:19:56.948384+00 2025-08-13 15:19:56.948393+00 f t ADELANTO 0.00 4 5422 \N +207801 2025-08-13 15:21:12.545752+00 2025-08-13 15:21:12.545777+00 f t SUBTOTAL 0.00 1 5423 \N +207802 2025-08-13 15:21:12.547853+00 2025-08-13 15:21:12.547864+00 f t DESCUENTO 0.00 2 5423 \N +207803 2025-08-13 15:21:12.549696+00 2025-08-13 15:21:12.549706+00 f t TOTAL 0.00 3 5423 \N +207804 2025-08-13 15:21:12.551517+00 2025-08-13 15:21:12.551525+00 f t ADELANTO 0.00 4 5423 \N +210753 2025-08-14 16:21:42.917288+00 2025-08-14 16:21:42.9173+00 f t SUBTOTAL 0.00 1 5498 \N +210754 2025-08-14 16:21:42.919243+00 2025-08-14 16:21:42.919253+00 f t DESCUENTO 0.00 2 5498 \N +210755 2025-08-14 16:21:42.921011+00 2025-08-14 16:21:42.921022+00 f t TOTAL 0.00 3 5498 \N +210756 2025-08-14 16:21:42.922565+00 2025-08-14 16:21:42.922576+00 f t ADELANTO 0.00 4 5498 \N +210849 2025-08-14 16:25:03.403406+00 2025-08-14 16:25:03.40342+00 f t SUBTOTAL 50000.00 1 5500 \N +210850 2025-08-14 16:25:03.40669+00 2025-08-14 16:25:03.406703+00 f t DESCUENTO 0.00 2 5500 \N +210851 2025-08-14 16:25:03.409475+00 2025-08-14 16:25:03.409488+00 f t TOTAL 50000.00 3 5500 \N +210852 2025-08-14 16:25:03.412084+00 2025-08-14 16:25:03.412096+00 f t ADELANTO 10000.00 4 5500 \N +221021 2025-08-18 12:16:45.519189+00 2025-08-18 12:16:45.519198+00 f t SUBTOTAL 50000.00 1 5739 \N +221022 2025-08-18 12:16:45.521264+00 2025-08-18 12:16:45.521274+00 f t DESCUENTO 0.00 2 5739 \N +221023 2025-08-18 12:16:45.522816+00 2025-08-18 12:16:45.522823+00 f t TOTAL 50000.00 3 5739 \N +221024 2025-08-18 12:16:45.524408+00 2025-08-18 12:16:45.524414+00 f t ADELANTO 10000.00 4 5739 \N +216581 2025-08-16 17:37:03.767577+00 2025-08-16 17:37:03.76759+00 f t SUBTOTAL 114500.00 1 5639 \N +216582 2025-08-16 17:37:03.769718+00 2025-08-16 17:37:03.76973+00 f t DESCUENTO 0.00 2 5639 \N +216583 2025-08-16 17:37:03.771681+00 2025-08-16 17:37:03.771689+00 f t TOTAL 114500.00 3 5639 \N +216584 2025-08-16 17:37:03.773474+00 2025-08-16 17:37:03.773483+00 f t ADELANTO 27000.00 4 5639 \N +207909 2025-08-13 15:42:42.149362+00 2025-08-13 15:42:42.149375+00 f t SUBTOTAL 118200.00 1 5424 \N +207910 2025-08-13 15:42:42.151712+00 2025-08-13 15:42:42.151725+00 f t DESCUENTO 0.00 2 5424 \N +207911 2025-08-13 15:42:42.155891+00 2025-08-13 15:42:42.155905+00 f t TOTAL 118200.00 3 5424 \N +207912 2025-08-13 15:42:42.158478+00 2025-08-13 15:42:42.158491+00 f t ADELANTO 65200.00 4 5424 \N +216985 2025-08-16 20:10:13.207509+00 2025-08-16 20:10:13.207523+00 f t SUBTOTAL 42000.00 1 5650 \N +216986 2025-08-16 20:10:13.212099+00 2025-08-16 20:10:13.212113+00 f t DESCUENTO 0.00 2 5650 \N +216987 2025-08-16 20:10:13.22325+00 2025-08-16 20:10:13.223263+00 f t TOTAL 42000.00 3 5650 \N +216988 2025-08-16 20:10:13.229979+00 2025-08-16 20:10:13.229993+00 f t ADELANTO 9500.00 4 5650 \N +207937 2025-08-13 15:43:19.615661+00 2025-08-13 15:43:19.61567+00 f t SUBTOTAL 64500.00 1 5425 \N +207938 2025-08-13 15:43:19.618086+00 2025-08-13 15:43:19.618098+00 f t DESCUENTO 0.00 2 5425 \N +207939 2025-08-13 15:43:19.620313+00 2025-08-13 15:43:19.620328+00 f t TOTAL 64500.00 3 5425 \N +207940 2025-08-13 15:43:19.622857+00 2025-08-13 15:43:19.622867+00 f t ADELANTO 17000.00 4 5425 \N +212109 2025-08-14 22:50:38.319915+00 2025-08-14 22:50:38.319928+00 f t SUBTOTAL 49500.00 1 5529 \N +212110 2025-08-14 22:50:38.322156+00 2025-08-14 22:50:38.322168+00 f t DESCUENTO 0.00 2 5529 \N +212111 2025-08-14 22:50:38.323709+00 2025-08-14 22:50:38.323719+00 f t TOTAL 49500.00 3 5529 \N +212112 2025-08-14 22:50:38.325191+00 2025-08-14 22:50:38.325201+00 f t ADELANTO 11500.00 4 5529 \N +207985 2025-08-13 15:45:20.176827+00 2025-08-13 15:45:20.176839+00 f t SUBTOTAL 199200.00 1 5426 \N +207986 2025-08-13 15:45:20.17952+00 2025-08-13 15:45:20.17953+00 f t DESCUENTO 0.00 2 5426 \N +207987 2025-08-13 15:45:20.181824+00 2025-08-13 15:45:20.181836+00 f t TOTAL 199200.00 3 5426 \N +207988 2025-08-13 15:45:20.183824+00 2025-08-13 15:45:20.183835+00 f t ADELANTO 161200.00 4 5426 \N +207993 2025-08-13 16:25:19.718001+00 2025-08-13 16:25:19.718015+00 f t SUBTOTAL 0.00 1 5427 \N +207994 2025-08-13 16:25:19.720153+00 2025-08-13 16:25:19.720165+00 f t DESCUENTO 0.00 2 5427 \N +207995 2025-08-13 16:25:19.722063+00 2025-08-13 16:25:19.722074+00 f t TOTAL 0.00 3 5427 \N +207996 2025-08-13 16:25:19.724329+00 2025-08-13 16:25:19.724341+00 f t ADELANTO 0.00 4 5427 \N +209481 2025-08-14 04:34:55.746058+00 2025-08-14 04:34:55.746096+00 f t SUBTOTAL 42000.00 1 5461 \N +209482 2025-08-14 04:34:55.748646+00 2025-08-14 04:34:55.748663+00 f t DESCUENTO 0.00 2 5461 \N +209483 2025-08-14 04:34:55.750924+00 2025-08-14 04:34:55.750936+00 f t TOTAL 42000.00 3 5461 \N +209484 2025-08-14 04:34:55.752842+00 2025-08-14 04:34:55.752851+00 f t ADELANTO 9500.00 4 5461 \N +224869 2025-08-19 13:37:14.426244+00 2025-08-19 13:37:14.426253+00 f t SUBTOTAL 27500.00 1 5825 \N +224870 2025-08-19 13:37:14.42809+00 2025-08-19 13:37:14.428098+00 f t DESCUENTO 0.00 2 5825 \N +224871 2025-08-19 13:37:14.42944+00 2025-08-19 13:37:14.429445+00 f t TOTAL 27500.00 3 5825 \N +224872 2025-08-19 13:37:14.430576+00 2025-08-19 13:37:14.430585+00 f t ADELANTO 27500.00 4 5825 \N +209705 2025-08-14 05:12:17.936361+00 2025-08-14 05:12:17.936373+00 f t SUBTOTAL 49500.00 1 5466 \N +209706 2025-08-14 05:12:17.940139+00 2025-08-14 05:12:17.940154+00 f t DESCUENTO 0.00 2 5466 \N +209707 2025-08-14 05:12:17.942463+00 2025-08-14 05:12:17.942477+00 f t TOTAL 49500.00 3 5466 \N +209708 2025-08-14 05:12:17.944817+00 2025-08-14 05:12:17.944828+00 f t ADELANTO 11500.00 4 5466 \N +208025 2025-08-13 16:42:52.963713+00 2025-08-13 16:42:52.963728+00 f t SUBTOTAL 42000.00 1 5428 \N +208026 2025-08-13 16:42:52.966295+00 2025-08-13 16:42:52.96631+00 f t DESCUENTO 0.00 2 5428 \N +208027 2025-08-13 16:42:52.968344+00 2025-08-13 16:42:52.968357+00 f t TOTAL 42000.00 3 5428 \N +208028 2025-08-13 16:42:52.97031+00 2025-08-13 16:42:52.970323+00 f t ADELANTO 9500.00 4 5428 \N +219841 2025-08-17 22:32:09.937133+00 2025-08-17 22:32:09.937146+00 f t SUBTOTAL 93200.00 1 5713 \N +219842 2025-08-17 22:32:09.93933+00 2025-08-17 22:32:09.939339+00 f t DESCUENTO 0.00 2 5713 \N +219843 2025-08-17 22:32:09.941109+00 2025-08-17 22:32:09.941118+00 f t TOTAL 93200.00 3 5713 \N +219844 2025-08-17 22:32:09.943188+00 2025-08-17 22:32:09.943198+00 f t ADELANTO 55200.00 4 5713 \N +208045 2025-08-13 16:51:56.13495+00 2025-08-13 16:51:56.134963+00 f t SUBTOTAL 0.00 1 5429 \N +208046 2025-08-13 16:51:56.138483+00 2025-08-13 16:51:56.138496+00 f t DESCUENTO 0.00 2 5429 \N +208047 2025-08-13 16:51:56.140781+00 2025-08-13 16:51:56.140791+00 f t TOTAL 0.00 3 5429 \N +208048 2025-08-13 16:51:56.143192+00 2025-08-13 16:51:56.143203+00 f t ADELANTO 0.00 4 5429 \N +220101 2025-08-18 00:48:32.157766+00 2025-08-18 00:48:32.157778+00 f t SUBTOTAL 50000.00 1 5722 \N +220102 2025-08-18 00:48:32.16025+00 2025-08-18 00:48:32.160262+00 f t DESCUENTO 0.00 2 5722 \N +220103 2025-08-18 00:48:32.162193+00 2025-08-18 00:48:32.162203+00 f t TOTAL 50000.00 3 5722 \N +220104 2025-08-18 00:48:32.164094+00 2025-08-18 00:48:32.164105+00 f t ADELANTO 10000.00 4 5722 \N +208073 2025-08-13 16:58:43.250636+00 2025-08-13 16:58:43.250649+00 f t SUBTOTAL 27500.00 1 5430 \N +208074 2025-08-13 16:58:43.253644+00 2025-08-13 16:58:43.25366+00 f t DESCUENTO 0.00 2 5430 \N +208075 2025-08-13 16:58:43.256192+00 2025-08-13 16:58:43.256206+00 f t TOTAL 27500.00 3 5430 \N +208076 2025-08-13 16:58:43.258482+00 2025-08-13 16:58:43.258495+00 f t ADELANTO 27500.00 4 5430 \N +210389 2025-08-14 14:33:31.63609+00 2025-08-14 14:33:31.636104+00 f t SUBTOTAL 0.00 1 5485 \N +210390 2025-08-14 14:33:31.639441+00 2025-08-14 14:33:31.639453+00 f t DESCUENTO 0.00 2 5485 \N +210391 2025-08-14 14:33:31.641535+00 2025-08-14 14:33:31.641546+00 f t TOTAL 0.00 3 5485 \N +210392 2025-08-14 14:33:31.643432+00 2025-08-14 14:33:31.643443+00 f t ADELANTO 0.00 4 5485 \N +210545 2025-08-14 15:19:15.833602+00 2025-08-14 15:19:15.833611+00 f t SUBTOTAL 42000.00 1 5489 \N +210546 2025-08-14 15:19:15.836239+00 2025-08-14 15:19:15.836252+00 f t DESCUENTO 0.00 2 5489 \N +210547 2025-08-14 15:19:15.838761+00 2025-08-14 15:19:15.838774+00 f t TOTAL 42000.00 3 5489 \N +210548 2025-08-14 15:19:15.841364+00 2025-08-14 15:19:15.841377+00 f t ADELANTO 9500.00 4 5489 \N +215709 2025-08-16 12:36:30.555513+00 2025-08-16 12:36:30.555526+00 f t SUBTOTAL 0.00 1 5621 \N +215710 2025-08-16 12:36:30.559318+00 2025-08-16 12:36:30.559327+00 f t DESCUENTO 0.00 2 5621 \N +215711 2025-08-16 12:36:30.560836+00 2025-08-16 12:36:30.560844+00 f t TOTAL 0.00 3 5621 \N +215712 2025-08-16 12:36:30.562289+00 2025-08-16 12:36:30.562296+00 f t ADELANTO 0.00 4 5621 \N +208145 2025-08-13 17:19:18.961186+00 2025-08-13 17:19:18.961197+00 f t SUBTOTAL 49500.00 1 5431 \N +208146 2025-08-13 17:19:18.963905+00 2025-08-13 17:19:18.963918+00 f t DESCUENTO 0.00 2 5431 \N +208147 2025-08-13 17:19:18.966122+00 2025-08-13 17:19:18.966134+00 f t TOTAL 49500.00 3 5431 \N +208148 2025-08-13 17:19:18.96835+00 2025-08-13 17:19:18.968367+00 f t ADELANTO 11500.00 4 5431 \N +216365 2025-08-16 15:10:42.376456+00 2025-08-16 15:10:42.376469+00 f t SUBTOTAL 27500.00 1 5634 \N +216366 2025-08-16 15:10:42.378765+00 2025-08-16 15:10:42.378775+00 f t DESCUENTO 0.00 2 5634 \N +216367 2025-08-16 15:10:42.380659+00 2025-08-16 15:10:42.38067+00 f t TOTAL 27500.00 3 5634 \N +216368 2025-08-16 15:10:42.382373+00 2025-08-16 15:10:42.38238+00 f t ADELANTO 27500.00 4 5634 \N +211317 2025-08-14 18:57:33.2809+00 2025-08-14 18:57:33.280912+00 f t SUBTOTAL 0.00 1 5506 \N +211318 2025-08-14 18:57:33.28289+00 2025-08-14 18:57:33.282898+00 f t DESCUENTO 0.00 2 5506 \N +211319 2025-08-14 18:57:33.284274+00 2025-08-14 18:57:33.284282+00 f t TOTAL 0.00 3 5506 \N +211320 2025-08-14 18:57:33.285659+00 2025-08-14 18:57:33.285665+00 f t ADELANTO 0.00 4 5506 \N +211369 2025-08-14 18:58:39.581237+00 2025-08-14 18:58:39.581252+00 f t SUBTOTAL 0.00 1 5507 \N +211370 2025-08-14 18:58:39.58612+00 2025-08-14 18:58:39.586133+00 f t DESCUENTO 0.00 2 5507 \N +211371 2025-08-14 18:58:39.589903+00 2025-08-14 18:58:39.589917+00 f t TOTAL 0.00 3 5507 \N +211372 2025-08-14 18:58:39.592141+00 2025-08-14 18:58:39.592153+00 f t ADELANTO 0.00 4 5507 \N +216741 2025-08-16 18:02:23.947544+00 2025-08-16 18:02:23.947554+00 f t SUBTOTAL 0.00 1 5642 \N +216742 2025-08-16 18:02:23.950242+00 2025-08-16 18:02:23.950252+00 f t DESCUENTO 0.00 2 5642 \N +216743 2025-08-16 18:02:23.952232+00 2025-08-16 18:02:23.952241+00 f t TOTAL 0.00 3 5642 \N +216744 2025-08-16 18:02:23.954178+00 2025-08-16 18:02:23.954186+00 f t ADELANTO 0.00 4 5642 \N +217229 2025-08-16 23:23:14.110941+00 2025-08-16 23:23:14.110954+00 f t SUBTOTAL 0.00 1 5656 \N +217230 2025-08-16 23:23:14.119125+00 2025-08-16 23:23:14.119171+00 f t DESCUENTO 0.00 2 5656 \N +217231 2025-08-16 23:23:14.121108+00 2025-08-16 23:23:14.121118+00 f t TOTAL 0.00 3 5656 \N +217232 2025-08-16 23:23:14.122712+00 2025-08-16 23:23:14.122722+00 f t ADELANTO 0.00 4 5656 \N +208253 2025-08-13 17:48:47.742261+00 2025-08-13 17:48:47.742276+00 f t SUBTOTAL 95700.00 1 5432 \N +208254 2025-08-13 17:48:47.746403+00 2025-08-13 17:48:47.746413+00 f t DESCUENTO 0.00 2 5432 \N +208255 2025-08-13 17:48:47.749029+00 2025-08-13 17:48:47.749043+00 f t TOTAL 95700.00 3 5432 \N +208256 2025-08-13 17:48:47.751763+00 2025-08-13 17:48:47.751778+00 f t ADELANTO 57700.00 4 5432 \N +208281 2025-08-13 17:54:36.163899+00 2025-08-13 17:54:36.16391+00 f t SUBTOTAL 0.00 1 5433 \N +208282 2025-08-13 17:54:36.166864+00 2025-08-13 17:54:36.166879+00 f t DESCUENTO 0.00 2 5433 \N +208283 2025-08-13 17:54:36.169433+00 2025-08-13 17:54:36.169446+00 f t TOTAL 0.00 3 5433 \N +208284 2025-08-13 17:54:36.171706+00 2025-08-13 17:54:36.171716+00 f t ADELANTO 0.00 4 5433 \N +215169 2025-08-16 00:26:44.879956+00 2025-08-16 00:26:44.879966+00 f t SUBTOTAL 0.00 1 5606 \N +215170 2025-08-16 00:26:44.882838+00 2025-08-16 00:26:44.88285+00 f t DESCUENTO 0.00 2 5606 \N +215171 2025-08-16 00:26:44.884888+00 2025-08-16 00:26:44.884899+00 f t TOTAL 0.00 3 5606 \N +215172 2025-08-16 00:26:44.886731+00 2025-08-16 00:26:44.886743+00 f t ADELANTO 0.00 4 5606 \N +210053 2025-08-14 12:20:56.915388+00 2025-08-14 12:20:56.915401+00 f t SUBTOTAL 218200.00 1 5474 \N +210054 2025-08-14 12:20:56.917916+00 2025-08-14 12:20:56.917928+00 f t DESCUENTO 0.00 2 5474 \N +210055 2025-08-14 12:20:56.919844+00 2025-08-14 12:20:56.919855+00 f t TOTAL 218200.00 3 5474 \N +210056 2025-08-14 12:20:56.921633+00 2025-08-14 12:20:56.921644+00 f t ADELANTO 174700.00 4 5474 \N +215381 2025-08-16 04:49:19.631766+00 2025-08-16 04:49:19.631782+00 f t SUBTOTAL 93200.00 1 5613 \N +215382 2025-08-16 04:49:19.634518+00 2025-08-16 04:49:19.634531+00 f t DESCUENTO 0.00 2 5613 \N +215383 2025-08-16 04:49:19.636808+00 2025-08-16 04:49:19.636821+00 f t TOTAL 93200.00 3 5613 \N +215384 2025-08-16 04:49:19.643498+00 2025-08-16 04:49:19.643511+00 f t ADELANTO 55200.00 4 5613 \N +208341 2025-08-13 18:11:36.038102+00 2025-08-13 18:11:36.038119+00 f t SUBTOTAL 0.00 1 5435 \N +208342 2025-08-13 18:11:36.043938+00 2025-08-13 18:11:36.043954+00 f t DESCUENTO 0.00 2 5435 \N +208343 2025-08-13 18:11:36.047123+00 2025-08-13 18:11:36.047179+00 f t TOTAL 0.00 3 5435 \N +208344 2025-08-13 18:11:36.049669+00 2025-08-13 18:11:36.049682+00 f t ADELANTO 0.00 4 5435 \N +208349 2025-08-13 18:11:41.805102+00 2025-08-13 18:11:41.805112+00 f t SUBTOTAL 42000.00 1 5434 \N +208350 2025-08-13 18:11:41.807468+00 2025-08-13 18:11:41.807478+00 f t DESCUENTO 0.00 2 5434 \N +208351 2025-08-13 18:11:41.80952+00 2025-08-13 18:11:41.809531+00 f t TOTAL 42000.00 3 5434 \N +208352 2025-08-13 18:11:41.81142+00 2025-08-13 18:11:41.811429+00 f t ADELANTO 9500.00 4 5434 \N +215717 2025-08-16 13:21:21.845554+00 2025-08-16 13:21:21.845566+00 f t SUBTOTAL 0.00 1 5622 \N +215718 2025-08-16 13:21:21.847342+00 2025-08-16 13:21:21.847352+00 f t DESCUENTO 0.00 2 5622 \N +215719 2025-08-16 13:21:21.848864+00 2025-08-16 13:21:21.848872+00 f t TOTAL 0.00 3 5622 \N +215720 2025-08-16 13:21:21.850225+00 2025-08-16 13:21:21.850232+00 f t ADELANTO 0.00 4 5622 \N +208401 2025-08-13 18:14:42.683241+00 2025-08-13 18:14:42.683252+00 f t SUBTOTAL 49500.00 1 5436 \N +208402 2025-08-13 18:14:42.685482+00 2025-08-13 18:14:42.685495+00 f t DESCUENTO 0.00 2 5436 \N +208403 2025-08-13 18:14:42.690418+00 2025-08-13 18:14:42.690432+00 f t TOTAL 49500.00 3 5436 \N +208404 2025-08-13 18:14:42.692776+00 2025-08-13 18:14:42.692789+00 f t ADELANTO 11500.00 4 5436 \N +208405 2025-08-13 18:20:22.243635+00 2025-08-13 18:20:22.24365+00 f t SUBTOTAL 84000.00 1 5418 \N +208406 2025-08-13 18:20:22.246756+00 2025-08-13 18:20:22.246771+00 f t DESCUENTO 0.00 2 5418 \N +208407 2025-08-13 18:20:22.249423+00 2025-08-13 18:20:22.249436+00 f t TOTAL 84000.00 3 5418 \N +208408 2025-08-13 18:20:22.251822+00 2025-08-13 18:20:22.251836+00 f t ADELANTO 19000.00 4 5418 \N +210905 2025-08-14 17:19:59.54733+00 2025-08-14 17:19:59.547339+00 f t SUBTOTAL 50000.00 1 5501 \N +210906 2025-08-14 17:19:59.550904+00 2025-08-14 17:19:59.550914+00 f t DESCUENTO 0.00 2 5501 \N +210907 2025-08-14 17:19:59.55321+00 2025-08-14 17:19:59.553219+00 f t TOTAL 50000.00 3 5501 \N +210908 2025-08-14 17:19:59.555461+00 2025-08-14 17:19:59.555472+00 f t ADELANTO 10000.00 4 5501 \N +216373 2025-08-16 16:17:29.323089+00 2025-08-16 16:17:29.323101+00 f t SUBTOTAL 0.00 1 5635 \N +216374 2025-08-16 16:17:29.324797+00 2025-08-16 16:17:29.324807+00 f t DESCUENTO 0.00 2 5635 \N +216375 2025-08-16 16:17:29.326445+00 2025-08-16 16:17:29.326454+00 f t TOTAL 0.00 3 5635 \N +216376 2025-08-16 16:17:29.327889+00 2025-08-16 16:17:29.327898+00 f t ADELANTO 0.00 4 5635 \N +211045 2025-08-14 18:07:20.32351+00 2025-08-14 18:07:20.323521+00 f t SUBTOTAL 0.00 1 5503 \N +211046 2025-08-14 18:07:20.32616+00 2025-08-14 18:07:20.326169+00 f t DESCUENTO 0.00 2 5503 \N +211047 2025-08-14 18:07:20.327732+00 2025-08-14 18:07:20.32774+00 f t TOTAL 0.00 3 5503 \N +211048 2025-08-14 18:07:20.32948+00 2025-08-14 18:07:20.329487+00 f t ADELANTO 0.00 4 5503 \N +216749 2025-08-16 18:27:04.174365+00 2025-08-16 18:27:04.174376+00 f t SUBTOTAL 0.00 1 5643 \N +216750 2025-08-16 18:27:04.176478+00 2025-08-16 18:27:04.176491+00 f t DESCUENTO 0.00 2 5643 \N +216751 2025-08-16 18:27:04.178993+00 2025-08-16 18:27:04.179005+00 f t TOTAL 0.00 3 5643 \N +216752 2025-08-16 18:27:04.180925+00 2025-08-16 18:27:04.180934+00 f t ADELANTO 0.00 4 5643 \N +208473 2025-08-13 18:54:19.754664+00 2025-08-13 18:54:19.754675+00 f t SUBTOTAL 95000.00 1 5437 \N +208474 2025-08-13 18:54:19.75689+00 2025-08-13 18:54:19.756902+00 f t DESCUENTO 0.00 2 5437 \N +208475 2025-08-13 18:54:19.758919+00 2025-08-13 18:54:19.758931+00 f t TOTAL 95000.00 3 5437 \N +208476 2025-08-13 18:54:19.761098+00 2025-08-13 18:54:19.76111+00 f t ADELANTO 10000.00 4 5437 \N +216897 2025-08-16 18:37:53.808974+00 2025-08-16 18:37:53.808986+00 f t SUBTOTAL 0.00 1 5646 \N +216898 2025-08-16 18:37:53.811246+00 2025-08-16 18:37:53.811254+00 f t DESCUENTO 0.00 2 5646 \N +216899 2025-08-16 18:37:53.812652+00 2025-08-16 18:37:53.812659+00 f t TOTAL 0.00 3 5646 \N +216900 2025-08-16 18:37:53.814402+00 2025-08-16 18:37:53.81441+00 f t ADELANTO 0.00 4 5646 \N +216949 2025-08-16 19:53:26.074108+00 2025-08-16 19:53:26.074121+00 f t SUBTOTAL 0.00 1 5649 \N +216950 2025-08-16 19:53:26.076896+00 2025-08-16 19:53:26.076908+00 f t DESCUENTO 0.00 2 5649 \N +216951 2025-08-16 19:53:26.078626+00 2025-08-16 19:53:26.078633+00 f t TOTAL 0.00 3 5649 \N +216952 2025-08-16 19:53:26.080305+00 2025-08-16 19:53:26.080315+00 f t ADELANTO 0.00 4 5649 \N +211829 2025-08-14 20:28:35.863363+00 2025-08-14 20:28:35.863372+00 f t SUBTOTAL 68000.00 1 5520 \N +211830 2025-08-14 20:28:35.865614+00 2025-08-14 20:28:35.865625+00 f t DESCUENTO 0.00 2 5520 \N +211831 2025-08-14 20:28:35.86717+00 2025-08-14 20:28:35.867177+00 f t TOTAL 68000.00 3 5520 \N +211832 2025-08-14 20:28:35.869998+00 2025-08-14 20:28:35.870009+00 f t ADELANTO 13000.00 4 5520 \N +208521 2025-08-13 19:04:58.842936+00 2025-08-13 19:04:58.842948+00 f t SUBTOTAL 99000.00 1 5438 \N +208522 2025-08-13 19:04:58.844812+00 2025-08-13 19:04:58.844821+00 f t DESCUENTO 0.00 2 5438 \N +208523 2025-08-13 19:04:58.846335+00 2025-08-13 19:04:58.846343+00 f t TOTAL 99000.00 3 5438 \N +208524 2025-08-13 19:04:58.847691+00 2025-08-13 19:04:58.8477+00 f t ADELANTO 23000.00 4 5438 \N +212049 2025-08-14 22:40:20.598991+00 2025-08-14 22:40:20.599+00 f t SUBTOTAL 82200.00 1 5527 \N +212050 2025-08-14 22:40:20.601356+00 2025-08-14 22:40:20.601365+00 f t DESCUENTO 0.00 2 5527 \N +212051 2025-08-14 22:40:20.603226+00 2025-08-14 22:40:20.60324+00 f t TOTAL 82200.00 3 5527 \N +212052 2025-08-14 22:40:20.607601+00 2025-08-14 22:40:20.607617+00 f t ADELANTO 44200.00 4 5527 \N +208549 2025-08-13 19:55:46.680132+00 2025-08-13 19:55:46.680145+00 f t SUBTOTAL 42000.00 1 5439 \N +208550 2025-08-13 19:55:46.682406+00 2025-08-13 19:55:46.682417+00 f t DESCUENTO 0.00 2 5439 \N +208551 2025-08-13 19:55:46.684465+00 2025-08-13 19:55:46.684475+00 f t TOTAL 42000.00 3 5439 \N +208552 2025-08-13 19:55:46.686146+00 2025-08-13 19:55:46.686154+00 f t ADELANTO 9500.00 4 5439 \N +208565 2025-08-13 20:42:45.704966+00 2025-08-13 20:42:45.70498+00 f t SUBTOTAL 0.00 1 5440 \N +208566 2025-08-13 20:42:45.707503+00 2025-08-13 20:42:45.707512+00 f t DESCUENTO 0.00 2 5440 \N +208567 2025-08-13 20:42:45.7091+00 2025-08-13 20:42:45.709112+00 f t TOTAL 0.00 3 5440 \N +208568 2025-08-13 20:42:45.710719+00 2025-08-13 20:42:45.710726+00 f t ADELANTO 0.00 4 5440 \N +219573 2025-08-17 21:52:29.56552+00 2025-08-17 21:52:29.565532+00 f t SUBTOTAL 68000.00 1 5707 \N +219574 2025-08-17 21:52:29.568621+00 2025-08-17 21:52:29.568634+00 f t DESCUENTO 0.00 2 5707 \N +219575 2025-08-17 21:52:29.571005+00 2025-08-17 21:52:29.571016+00 f t TOTAL 68000.00 3 5707 \N +219576 2025-08-17 21:52:29.57633+00 2025-08-17 21:52:29.576343+00 f t ADELANTO 13000.00 4 5707 \N +214673 2025-08-15 22:09:07.063487+00 2025-08-15 22:09:07.063499+00 f t SUBTOTAL 50000.00 1 5595 \N +214674 2025-08-15 22:09:07.06628+00 2025-08-15 22:09:07.06629+00 f t DESCUENTO 0.00 2 5595 \N +214675 2025-08-15 22:09:07.068549+00 2025-08-15 22:09:07.068562+00 f t TOTAL 50000.00 3 5595 \N +214676 2025-08-15 22:09:07.071701+00 2025-08-15 22:09:07.071715+00 f t ADELANTO 10000.00 4 5595 \N +208593 2025-08-13 21:33:20.976019+00 2025-08-13 21:33:20.976032+00 f t SUBTOTAL 64500.00 1 5441 \N +208594 2025-08-13 21:33:20.978145+00 2025-08-13 21:33:20.978156+00 f t DESCUENTO 0.00 2 5441 \N +208595 2025-08-13 21:33:20.980093+00 2025-08-13 21:33:20.980102+00 f t TOTAL 64500.00 3 5441 \N +208596 2025-08-13 21:33:20.981799+00 2025-08-13 21:33:20.981807+00 f t ADELANTO 17000.00 4 5441 \N +209933 2025-08-14 05:37:10.567067+00 2025-08-14 05:37:10.567081+00 f t SUBTOTAL 0.00 1 5469 \N +209934 2025-08-14 05:37:10.576359+00 2025-08-14 05:37:10.576376+00 f t DESCUENTO 0.00 2 5469 \N +209935 2025-08-14 05:37:10.579354+00 2025-08-14 05:37:10.579367+00 f t TOTAL 0.00 3 5469 \N +209936 2025-08-14 05:37:10.582279+00 2025-08-14 05:37:10.582292+00 f t ADELANTO 0.00 4 5469 \N +208637 2025-08-13 21:44:36.964892+00 2025-08-13 21:44:36.964904+00 f t SUBTOTAL 49500.00 1 5442 \N +208638 2025-08-13 21:44:36.966699+00 2025-08-13 21:44:36.966708+00 f t DESCUENTO 0.00 2 5442 \N +208639 2025-08-13 21:44:36.968364+00 2025-08-13 21:44:36.968373+00 f t TOTAL 49500.00 3 5442 \N +208640 2025-08-13 21:44:36.969669+00 2025-08-13 21:44:36.969679+00 f t ADELANTO 11500.00 4 5442 \N +210229 2025-08-14 13:28:08.317629+00 2025-08-14 13:28:08.317643+00 f t SUBTOTAL 49500.00 1 5479 \N +210230 2025-08-14 13:28:08.32049+00 2025-08-14 13:28:08.320502+00 f t DESCUENTO 0.00 2 5479 \N +210231 2025-08-14 13:28:08.322708+00 2025-08-14 13:28:08.322718+00 f t TOTAL 49500.00 3 5479 \N +210232 2025-08-14 13:28:08.324879+00 2025-08-14 13:28:08.324893+00 f t ADELANTO 11500.00 4 5479 \N +208657 2025-08-13 21:54:06.603584+00 2025-08-13 21:54:06.603599+00 f t SUBTOTAL 0.00 1 5443 \N +208658 2025-08-13 21:54:06.607768+00 2025-08-13 21:54:06.607782+00 f t DESCUENTO 0.00 2 5443 \N +208659 2025-08-13 21:54:06.611256+00 2025-08-13 21:54:06.61127+00 f t TOTAL 0.00 3 5443 \N +208660 2025-08-13 21:54:06.615769+00 2025-08-13 21:54:06.615783+00 f t ADELANTO 0.00 4 5443 \N +210657 2025-08-14 15:46:44.995715+00 2025-08-14 15:46:44.995725+00 f t SUBTOTAL 0.00 1 5493 \N +210658 2025-08-14 15:46:45.000693+00 2025-08-14 15:46:45.000702+00 f t DESCUENTO 0.00 2 5493 \N +210659 2025-08-14 15:46:45.002745+00 2025-08-14 15:46:45.002758+00 f t TOTAL 0.00 3 5493 \N +210660 2025-08-14 15:46:45.005012+00 2025-08-14 15:46:45.005026+00 f t ADELANTO 0.00 4 5493 \N +210861 2025-08-14 16:25:14.062826+00 2025-08-14 16:25:14.06284+00 f t SUBTOTAL 0.00 1 5499 \N +210862 2025-08-14 16:25:14.069774+00 2025-08-14 16:25:14.069792+00 f t DESCUENTO 0.00 2 5499 \N +208701 2025-08-13 22:04:16.546884+00 2025-08-13 22:04:16.546894+00 f t SUBTOTAL 27500.00 1 5444 \N +208702 2025-08-13 22:04:16.548699+00 2025-08-13 22:04:16.548707+00 f t DESCUENTO 0.00 2 5444 \N +208703 2025-08-13 22:04:16.550119+00 2025-08-13 22:04:16.550129+00 f t TOTAL 27500.00 3 5444 \N +208704 2025-08-13 22:04:16.551583+00 2025-08-13 22:04:16.551591+00 f t ADELANTO 27500.00 4 5444 \N +210863 2025-08-14 16:25:14.082065+00 2025-08-14 16:25:14.082082+00 f t TOTAL 0.00 3 5499 \N +210864 2025-08-14 16:25:14.084716+00 2025-08-14 16:25:14.08473+00 f t ADELANTO 0.00 4 5499 \N +211053 2025-08-14 18:13:49.939271+00 2025-08-14 18:13:49.939284+00 f t SUBTOTAL 0.00 1 5504 \N +211054 2025-08-14 18:13:49.94216+00 2025-08-14 18:13:49.942174+00 f t DESCUENTO 0.00 2 5504 \N +211055 2025-08-14 18:13:49.944923+00 2025-08-14 18:13:49.944935+00 f t TOTAL 0.00 3 5504 \N +211056 2025-08-14 18:13:49.947182+00 2025-08-14 18:13:49.947192+00 f t ADELANTO 0.00 4 5504 \N +208765 2025-08-13 22:57:15.203858+00 2025-08-13 22:57:15.203873+00 f t SUBTOTAL 50000.00 1 5445 \N +208766 2025-08-13 22:57:15.206672+00 2025-08-13 22:57:15.206685+00 f t DESCUENTO 0.00 2 5445 \N +208767 2025-08-13 22:57:15.209087+00 2025-08-13 22:57:15.2091+00 f t TOTAL 50000.00 3 5445 \N +208768 2025-08-13 22:57:15.21107+00 2025-08-13 22:57:15.211082+00 f t ADELANTO 10000.00 4 5445 \N +211517 2025-08-14 19:10:37.718852+00 2025-08-14 19:10:37.718864+00 f t SUBTOTAL 0.00 1 5510 \N +211518 2025-08-14 19:10:37.721748+00 2025-08-14 19:10:37.721757+00 f t DESCUENTO 0.00 2 5510 \N +211519 2025-08-14 19:10:37.723587+00 2025-08-14 19:10:37.723599+00 f t TOTAL 0.00 3 5510 \N +211520 2025-08-14 19:10:37.72577+00 2025-08-14 19:10:37.725779+00 f t ADELANTO 0.00 4 5510 \N +211601 2025-08-14 19:11:49.491553+00 2025-08-14 19:11:49.491566+00 f t SUBTOTAL 0.00 1 5513 \N +211602 2025-08-14 19:11:49.494487+00 2025-08-14 19:11:49.494498+00 f t DESCUENTO 0.00 2 5513 \N +211603 2025-08-14 19:11:49.496068+00 2025-08-14 19:11:49.496078+00 f t TOTAL 0.00 3 5513 \N +211604 2025-08-14 19:11:49.497534+00 2025-08-14 19:11:49.49754+00 f t ADELANTO 0.00 4 5513 \N +211781 2025-08-14 20:16:39.637001+00 2025-08-14 20:16:39.637011+00 f t SUBTOTAL 0.00 1 5517 \N +211782 2025-08-14 20:16:39.64036+00 2025-08-14 20:16:39.640369+00 f t DESCUENTO 0.00 2 5517 \N +208797 2025-08-13 23:18:39.963436+00 2025-08-13 23:18:39.963449+00 f t SUBTOTAL 42000.00 1 5446 \N +208798 2025-08-13 23:18:39.965845+00 2025-08-13 23:18:39.965857+00 f t DESCUENTO 0.00 2 5446 \N +208799 2025-08-13 23:18:39.969598+00 2025-08-13 23:18:39.969611+00 f t TOTAL 42000.00 3 5446 \N +208800 2025-08-13 23:18:39.971772+00 2025-08-13 23:18:39.971784+00 f t ADELANTO 9500.00 4 5446 \N +211783 2025-08-14 20:16:39.642044+00 2025-08-14 20:16:39.642052+00 f t TOTAL 0.00 3 5517 \N +211784 2025-08-14 20:16:39.64499+00 2025-08-14 20:16:39.644999+00 f t ADELANTO 0.00 4 5517 \N +211921 2025-08-14 21:43:16.453103+00 2025-08-14 21:43:16.453111+00 f t SUBTOTAL 42000.00 1 5523 \N +211922 2025-08-14 21:43:16.454792+00 2025-08-14 21:43:16.454799+00 f t DESCUENTO 0.00 2 5523 \N +211923 2025-08-14 21:43:16.45738+00 2025-08-14 21:43:16.457388+00 f t TOTAL 42000.00 3 5523 \N +211924 2025-08-14 21:43:16.46246+00 2025-08-14 21:43:16.462469+00 f t ADELANTO 9500.00 4 5523 \N +208825 2025-08-14 00:07:38.176766+00 2025-08-14 00:07:38.176775+00 f t SUBTOTAL 111000.00 1 5447 \N +208826 2025-08-14 00:07:38.178842+00 2025-08-14 00:07:38.178855+00 f t DESCUENTO 0.00 2 5447 \N +208827 2025-08-14 00:07:38.180649+00 2025-08-14 00:07:38.180659+00 f t TOTAL 111000.00 3 5447 \N +208828 2025-08-14 00:07:38.182288+00 2025-08-14 00:07:38.182297+00 f t ADELANTO 23500.00 4 5447 \N +212057 2025-08-14 22:45:40.482459+00 2025-08-14 22:45:40.48247+00 f t SUBTOTAL 0.00 1 5528 \N +212058 2025-08-14 22:45:40.484504+00 2025-08-14 22:45:40.484515+00 f t DESCUENTO 0.00 2 5528 \N +212059 2025-08-14 22:45:40.486132+00 2025-08-14 22:45:40.486142+00 f t TOTAL 0.00 3 5528 \N +212060 2025-08-14 22:45:40.487516+00 2025-08-14 22:45:40.487525+00 f t ADELANTO 0.00 4 5528 \N +229641 2025-08-20 22:12:29.764497+00 2025-08-20 22:12:29.764506+00 f t SUBTOTAL 0.00 1 5946 \N +229642 2025-08-20 22:12:29.766527+00 2025-08-20 22:12:29.766535+00 f t DESCUENTO 0.00 2 5946 \N +229643 2025-08-20 22:12:29.768491+00 2025-08-20 22:12:29.768502+00 f t TOTAL 0.00 3 5946 \N +229644 2025-08-20 22:12:29.770426+00 2025-08-20 22:12:29.770436+00 f t ADELANTO 0.00 4 5946 \N +209309 2025-08-14 02:59:58.160366+00 2025-08-14 02:59:58.160375+00 f t SUBTOTAL 68000.00 1 5458 \N +209310 2025-08-14 02:59:58.162462+00 2025-08-14 02:59:58.162471+00 f t DESCUENTO 0.00 2 5458 \N +209311 2025-08-14 02:59:58.164574+00 2025-08-14 02:59:58.164591+00 f t TOTAL 68000.00 3 5458 \N +209312 2025-08-14 02:59:58.167552+00 2025-08-14 02:59:58.167561+00 f t ADELANTO 13000.00 4 5458 \N +208877 2025-08-14 00:15:45.688946+00 2025-08-14 00:15:45.688959+00 f t SUBTOTAL 50000.00 1 5448 \N +208878 2025-08-14 00:15:45.690882+00 2025-08-14 00:15:45.690893+00 f t DESCUENTO 0.00 2 5448 \N +208879 2025-08-14 00:15:45.692769+00 2025-08-14 00:15:45.692778+00 f t TOTAL 50000.00 3 5448 \N +208880 2025-08-14 00:15:45.694472+00 2025-08-14 00:15:45.694482+00 f t ADELANTO 10000.00 4 5448 \N +208885 2025-08-14 01:09:10.524655+00 2025-08-14 01:09:10.524669+00 f t SUBTOTAL 0.00 1 5449 \N +208886 2025-08-14 01:09:10.535356+00 2025-08-14 01:09:10.535366+00 f t DESCUENTO 0.00 2 5449 \N +208887 2025-08-14 01:09:10.537756+00 2025-08-14 01:09:10.537769+00 f t TOTAL 0.00 3 5449 \N +208888 2025-08-14 01:09:10.540153+00 2025-08-14 01:09:10.540165+00 f t ADELANTO 0.00 4 5449 \N +219717 2025-08-17 22:02:17.646402+00 2025-08-17 22:02:17.646411+00 f t SUBTOTAL 68000.00 1 5711 \N +219718 2025-08-17 22:02:17.648634+00 2025-08-17 22:02:17.648646+00 f t DESCUENTO 0.00 2 5711 \N +219719 2025-08-17 22:02:17.652123+00 2025-08-17 22:02:17.652135+00 f t TOTAL 68000.00 3 5711 \N +208893 2025-08-14 01:21:42.632192+00 2025-08-14 01:21:42.632206+00 f t SUBTOTAL 0.00 1 5450 \N +208894 2025-08-14 01:21:42.640264+00 2025-08-14 01:21:42.640277+00 f t DESCUENTO 0.00 2 5450 \N +208895 2025-08-14 01:21:42.642505+00 2025-08-14 01:21:42.642519+00 f t TOTAL 0.00 3 5450 \N +208896 2025-08-14 01:21:42.64499+00 2025-08-14 01:21:42.645001+00 f t ADELANTO 0.00 4 5450 \N +219720 2025-08-17 22:02:17.655661+00 2025-08-17 22:02:17.655674+00 f t ADELANTO 13000.00 4 5711 \N +208901 2025-08-14 02:19:24.978547+00 2025-08-14 02:19:24.978562+00 f t SUBTOTAL 0.00 1 5451 \N +208902 2025-08-14 02:19:24.981322+00 2025-08-14 02:19:24.981331+00 f t DESCUENTO 0.00 2 5451 \N +208903 2025-08-14 02:19:24.983517+00 2025-08-14 02:19:24.983528+00 f t TOTAL 0.00 3 5451 \N +208904 2025-08-14 02:19:24.985365+00 2025-08-14 02:19:24.985377+00 f t ADELANTO 0.00 4 5451 \N +208929 2025-08-14 02:26:27.410342+00 2025-08-14 02:26:27.410354+00 f t SUBTOTAL 42000.00 1 5452 \N +208930 2025-08-14 02:26:27.413354+00 2025-08-14 02:26:27.413367+00 f t DESCUENTO 0.00 2 5452 \N +208931 2025-08-14 02:26:27.417038+00 2025-08-14 02:26:27.417049+00 f t TOTAL 42000.00 3 5452 \N +208932 2025-08-14 02:26:27.419239+00 2025-08-14 02:26:27.419248+00 f t ADELANTO 9500.00 4 5452 \N +215317 2025-08-16 02:30:58.387963+00 2025-08-16 02:30:58.387973+00 f t SUBTOTAL 0.00 1 5612 \N +215318 2025-08-16 02:30:58.39033+00 2025-08-16 02:30:58.390339+00 f t DESCUENTO 0.00 2 5612 \N +215319 2025-08-16 02:30:58.392163+00 2025-08-16 02:30:58.392174+00 f t TOTAL 0.00 3 5612 \N +215320 2025-08-16 02:30:58.393674+00 2025-08-16 02:30:58.393681+00 f t ADELANTO 0.00 4 5612 \N +210177 2025-08-14 12:56:30.428475+00 2025-08-14 12:56:30.428485+00 f t SUBTOTAL 88000.00 1 5477 \N +210178 2025-08-14 12:56:30.430973+00 2025-08-14 12:56:30.430982+00 f t DESCUENTO 0.00 2 5477 \N +210179 2025-08-14 12:56:30.433582+00 2025-08-14 12:56:30.433592+00 f t TOTAL 88000.00 3 5477 \N +210180 2025-08-14 12:56:30.435721+00 2025-08-14 12:56:30.435732+00 f t ADELANTO 19000.00 4 5477 \N +210237 2025-08-14 13:55:46.097526+00 2025-08-14 13:55:46.097536+00 f t SUBTOTAL 0.00 1 5480 \N +210238 2025-08-14 13:55:46.099833+00 2025-08-14 13:55:46.099846+00 f t DESCUENTO 0.00 2 5480 \N +210239 2025-08-14 13:55:46.101885+00 2025-08-14 13:55:46.101897+00 f t TOTAL 0.00 3 5480 \N +210240 2025-08-14 13:55:46.104492+00 2025-08-14 13:55:46.104504+00 f t ADELANTO 0.00 4 5480 \N +210345 2025-08-14 14:20:32.68026+00 2025-08-14 14:20:32.680272+00 f t SUBTOTAL 146700.00 1 5483 \N +210346 2025-08-14 14:20:32.683227+00 2025-08-14 14:20:32.68324+00 f t DESCUENTO 0.00 2 5483 \N +210347 2025-08-14 14:20:32.685342+00 2025-08-14 14:20:32.685355+00 f t TOTAL 146700.00 3 5483 \N +210348 2025-08-14 14:20:32.687213+00 2025-08-14 14:20:32.687224+00 f t ADELANTO 108700.00 4 5483 \N +210509 2025-08-14 15:14:29.182987+00 2025-08-14 15:14:29.182997+00 f t SUBTOTAL 0.00 1 5488 \N +210510 2025-08-14 15:14:29.186074+00 2025-08-14 15:14:29.186083+00 f t DESCUENTO 0.00 2 5488 \N +210511 2025-08-14 15:14:29.189416+00 2025-08-14 15:14:29.189425+00 f t TOTAL 0.00 3 5488 \N +210512 2025-08-14 15:14:29.191182+00 2025-08-14 15:14:29.19119+00 f t ADELANTO 0.00 4 5488 \N +216433 2025-08-16 16:35:21.040253+00 2025-08-16 16:35:21.040263+00 f t SUBTOTAL 0.00 1 5636 \N +216434 2025-08-16 16:35:21.042783+00 2025-08-16 16:35:21.042791+00 f t DESCUENTO 0.00 2 5636 \N +216435 2025-08-16 16:35:21.044262+00 2025-08-16 16:35:21.044269+00 f t TOTAL 0.00 3 5636 \N +216436 2025-08-16 16:35:21.045775+00 2025-08-16 16:35:21.045782+00 f t ADELANTO 0.00 4 5636 \N +216545 2025-08-16 17:36:14.419686+00 2025-08-16 17:36:14.419698+00 f t SUBTOTAL 0.00 1 5638 \N +216546 2025-08-16 17:36:14.421867+00 2025-08-16 17:36:14.421878+00 f t DESCUENTO 0.00 2 5638 \N +216547 2025-08-16 17:36:14.423563+00 2025-08-16 17:36:14.423571+00 f t TOTAL 0.00 3 5638 \N +216548 2025-08-16 17:36:14.424981+00 2025-08-16 17:36:14.424988+00 f t ADELANTO 0.00 4 5638 \N +211429 2025-08-14 19:02:05.711604+00 2025-08-14 19:02:05.711614+00 f t SUBTOTAL 0.00 1 5509 \N +211430 2025-08-14 19:02:05.714519+00 2025-08-14 19:02:05.71453+00 f t DESCUENTO 0.00 2 5509 \N +211431 2025-08-14 19:02:05.716527+00 2025-08-14 19:02:05.716537+00 f t TOTAL 0.00 3 5509 \N +211432 2025-08-14 19:02:05.718504+00 2025-08-14 19:02:05.718517+00 f t ADELANTO 0.00 4 5509 \N +216905 2025-08-16 19:20:16.293267+00 2025-08-16 19:20:16.293279+00 f t SUBTOTAL 0.00 1 5647 \N +216906 2025-08-16 19:20:16.29516+00 2025-08-16 19:20:16.295174+00 f t DESCUENTO 0.00 2 5647 \N +216907 2025-08-16 19:20:16.296781+00 2025-08-16 19:20:16.296791+00 f t TOTAL 0.00 3 5647 \N +216908 2025-08-16 19:20:16.298231+00 2025-08-16 19:20:16.29824+00 f t ADELANTO 0.00 4 5647 \N +211789 2025-08-14 20:27:06.990597+00 2025-08-14 20:27:06.99061+00 f t SUBTOTAL 0.00 1 5519 \N +211790 2025-08-14 20:27:06.993123+00 2025-08-14 20:27:06.993136+00 f t DESCUENTO 0.00 2 5519 \N +211791 2025-08-14 20:27:06.997421+00 2025-08-14 20:27:06.997435+00 f t TOTAL 0.00 3 5519 \N +211792 2025-08-14 20:27:06.999648+00 2025-08-14 20:27:06.999662+00 f t ADELANTO 0.00 4 5519 \N +212001 2025-08-14 22:34:18.163264+00 2025-08-14 22:34:18.163275+00 f t SUBTOTAL 64500.00 1 5525 \N +212002 2025-08-14 22:34:18.166156+00 2025-08-14 22:34:18.166168+00 f t DESCUENTO 0.00 2 5525 \N +212003 2025-08-14 22:34:18.167714+00 2025-08-14 22:34:18.167722+00 f t TOTAL 64500.00 3 5525 \N +212004 2025-08-14 22:34:18.169066+00 2025-08-14 22:34:18.169075+00 f t ADELANTO 17000.00 4 5525 \N +209137 2025-08-14 02:33:05.611499+00 2025-08-14 02:33:05.611512+00 f t SUBTOTAL 82200.00 1 5453 \N +209138 2025-08-14 02:33:05.614513+00 2025-08-14 02:33:05.614527+00 f t DESCUENTO 0.00 2 5453 \N +209139 2025-08-14 02:33:05.618026+00 2025-08-14 02:33:05.61804+00 f t TOTAL 82200.00 3 5453 \N +209140 2025-08-14 02:33:05.620403+00 2025-08-14 02:33:05.620415+00 f t ADELANTO 44200.00 4 5453 \N +219345 2025-08-17 19:40:21.37234+00 2025-08-17 19:40:21.372354+00 f t SUBTOTAL 0.00 1 5701 \N +219346 2025-08-17 19:40:21.374994+00 2025-08-17 19:40:21.375004+00 f t DESCUENTO 0.00 2 5701 \N +219347 2025-08-17 19:40:21.376467+00 2025-08-17 19:40:21.376474+00 f t TOTAL 0.00 3 5701 \N +219348 2025-08-17 19:40:21.377857+00 2025-08-17 19:40:21.377867+00 f t ADELANTO 0.00 4 5701 \N +220169 2025-08-18 01:46:39.030318+00 2025-08-18 01:46:39.030328+00 f t SUBTOTAL 42000.00 1 5723 \N +220170 2025-08-18 01:46:39.032339+00 2025-08-18 01:46:39.032346+00 f t DESCUENTO 0.00 2 5723 \N +220171 2025-08-18 01:46:39.033757+00 2025-08-18 01:46:39.033763+00 f t TOTAL 42000.00 3 5723 \N +220172 2025-08-18 01:46:39.03489+00 2025-08-18 01:46:39.034896+00 f t ADELANTO 9500.00 4 5723 \N +215653 2025-08-16 11:13:51.839728+00 2025-08-16 11:13:51.839742+00 f t SUBTOTAL 0.00 1 5619 \N +215654 2025-08-16 11:13:51.842945+00 2025-08-16 11:13:51.842956+00 f t DESCUENTO 0.00 2 5619 \N +215655 2025-08-16 11:13:51.845196+00 2025-08-16 11:13:51.845208+00 f t TOTAL 0.00 3 5619 \N +215656 2025-08-16 11:13:51.84717+00 2025-08-16 11:13:51.84718+00 f t ADELANTO 0.00 4 5619 \N +220457 2025-08-18 03:59:18.354495+00 2025-08-18 03:59:18.354505+00 f t SUBTOTAL 0.00 1 5728 \N +220458 2025-08-18 03:59:18.357082+00 2025-08-18 03:59:18.357092+00 f t DESCUENTO 0.00 2 5728 \N +220459 2025-08-18 03:59:18.358825+00 2025-08-18 03:59:18.358836+00 f t TOTAL 0.00 3 5728 \N +220460 2025-08-18 03:59:18.360835+00 2025-08-18 03:59:18.360843+00 f t ADELANTO 0.00 4 5728 \N +212241 2025-08-14 23:28:22.487503+00 2025-08-14 23:28:22.487515+00 f t SUBTOTAL 126000.00 1 5530 \N +212242 2025-08-14 23:28:22.489941+00 2025-08-14 23:28:22.489951+00 f t DESCUENTO 0.00 2 5530 \N +212243 2025-08-14 23:28:22.49305+00 2025-08-14 23:28:22.493063+00 f t TOTAL 126000.00 3 5530 \N +212244 2025-08-14 23:28:22.494876+00 2025-08-14 23:28:22.494885+00 f t ADELANTO 28500.00 4 5530 \N +212273 2025-08-14 23:32:44.343529+00 2025-08-14 23:32:44.343541+00 f t SUBTOTAL 0.00 1 5531 \N +212274 2025-08-14 23:32:44.346371+00 2025-08-14 23:32:44.346382+00 f t DESCUENTO 0.00 2 5531 \N +212275 2025-08-14 23:32:44.348308+00 2025-08-14 23:32:44.348317+00 f t TOTAL 0.00 3 5531 \N +212276 2025-08-14 23:32:44.350405+00 2025-08-14 23:32:44.350417+00 f t ADELANTO 0.00 4 5531 \N +212301 2025-08-15 00:07:22.493503+00 2025-08-15 00:07:22.493517+00 f t SUBTOTAL 50000.00 1 5532 \N +212302 2025-08-15 00:07:22.495754+00 2025-08-15 00:07:22.495766+00 f t DESCUENTO 0.00 2 5532 \N +212303 2025-08-15 00:07:22.497576+00 2025-08-15 00:07:22.497587+00 f t TOTAL 50000.00 3 5532 \N +212304 2025-08-15 00:07:22.499187+00 2025-08-15 00:07:22.499198+00 f t ADELANTO 10000.00 4 5532 \N +221369 2025-08-18 15:22:42.75015+00 2025-08-18 15:22:42.750166+00 f t SUBTOTAL 0.00 1 5752 \N +221370 2025-08-18 15:22:42.753443+00 2025-08-18 15:22:42.753453+00 f t DESCUENTO 0.00 2 5752 \N +221371 2025-08-18 15:22:42.755564+00 2025-08-18 15:22:42.755576+00 f t TOTAL 0.00 3 5752 \N +221372 2025-08-18 15:22:42.757514+00 2025-08-18 15:22:42.757523+00 f t ADELANTO 0.00 4 5752 \N +216913 2025-08-16 19:23:44.822376+00 2025-08-16 19:23:44.822385+00 f t SUBTOTAL 0.00 1 5648 \N +216914 2025-08-16 19:23:44.824075+00 2025-08-16 19:23:44.824088+00 f t DESCUENTO 0.00 2 5648 \N +216915 2025-08-16 19:23:44.825687+00 2025-08-16 19:23:44.825695+00 f t TOTAL 0.00 3 5648 \N +216916 2025-08-16 19:23:44.82701+00 2025-08-16 19:23:44.827019+00 f t ADELANTO 0.00 4 5648 \N +221745 2025-08-18 17:35:41.758849+00 2025-08-18 17:35:41.758861+00 f t SUBTOTAL 0.00 1 5762 \N +217081 2025-08-16 23:06:20.908981+00 2025-08-16 23:06:20.908991+00 f t SUBTOTAL 49500.00 1 5653 \N +217082 2025-08-16 23:06:20.911405+00 2025-08-16 23:06:20.911413+00 f t DESCUENTO 0.00 2 5653 \N +217083 2025-08-16 23:06:20.913225+00 2025-08-16 23:06:20.913233+00 f t TOTAL 49500.00 3 5653 \N +217084 2025-08-16 23:06:20.914774+00 2025-08-16 23:06:20.914783+00 f t ADELANTO 11500.00 4 5653 \N +221746 2025-08-18 17:35:41.760689+00 2025-08-18 17:35:41.760699+00 f t DESCUENTO 0.00 2 5762 \N +221747 2025-08-18 17:35:41.76233+00 2025-08-18 17:35:41.762339+00 f t TOTAL 0.00 3 5762 \N +221748 2025-08-18 17:35:41.763763+00 2025-08-18 17:35:41.763773+00 f t ADELANTO 0.00 4 5762 \N +226869 2025-08-20 00:43:36.779569+00 2025-08-20 00:43:36.779581+00 f t SUBTOTAL 0.00 1 5878 \N +226870 2025-08-20 00:43:36.781162+00 2025-08-20 00:43:36.781174+00 f t DESCUENTO 0.00 2 5878 \N +226871 2025-08-20 00:43:36.782639+00 2025-08-20 00:43:36.782648+00 f t TOTAL 0.00 3 5878 \N +221849 2025-08-18 18:05:26.573981+00 2025-08-18 18:05:26.573993+00 f t SUBTOTAL 0.00 1 5766 \N +217197 2025-08-16 23:15:27.70012+00 2025-08-16 23:15:27.700129+00 f t SUBTOTAL 42000.00 1 5655 \N +217198 2025-08-16 23:15:27.702532+00 2025-08-16 23:15:27.702544+00 f t DESCUENTO 0.00 2 5655 \N +217199 2025-08-16 23:15:27.704568+00 2025-08-16 23:15:27.704579+00 f t TOTAL 42000.00 3 5655 \N +217200 2025-08-16 23:15:27.707427+00 2025-08-16 23:15:27.707437+00 f t ADELANTO 9500.00 4 5655 \N +221850 2025-08-18 18:05:26.57676+00 2025-08-18 18:05:26.576769+00 f t DESCUENTO 0.00 2 5766 \N +221851 2025-08-18 18:05:26.578593+00 2025-08-18 18:05:26.578603+00 f t TOTAL 0.00 3 5766 \N +221852 2025-08-18 18:05:26.580441+00 2025-08-18 18:05:26.580449+00 f t ADELANTO 0.00 4 5766 \N +226872 2025-08-20 00:43:36.784142+00 2025-08-20 00:43:36.784151+00 f t ADELANTO 0.00 4 5878 \N +226921 2025-08-20 01:27:12.406546+00 2025-08-20 01:27:12.406555+00 f t SUBTOTAL 95700.00 1 5879 \N +226922 2025-08-20 01:27:12.408474+00 2025-08-20 01:27:12.408482+00 f t DESCUENTO 0.00 2 5879 \N +226923 2025-08-20 01:27:12.41014+00 2025-08-20 01:27:12.410147+00 f t TOTAL 95700.00 3 5879 \N +212373 2025-08-15 00:10:20.689654+00 2025-08-15 00:10:20.689667+00 f t SUBTOTAL 50000.00 1 5533 \N +212374 2025-08-15 00:10:20.692662+00 2025-08-15 00:10:20.692674+00 f t DESCUENTO 0.00 2 5533 \N +212375 2025-08-15 00:10:20.69618+00 2025-08-15 00:10:20.696192+00 f t TOTAL 50000.00 3 5533 \N +212376 2025-08-15 00:10:20.698583+00 2025-08-15 00:10:20.698597+00 f t ADELANTO 10000.00 4 5533 \N +226924 2025-08-20 01:27:12.411971+00 2025-08-20 01:27:12.411979+00 f t ADELANTO 57700.00 4 5879 \N +212381 2025-08-15 00:53:32.77931+00 2025-08-15 00:53:32.779324+00 f t SUBTOTAL 0.00 1 5534 \N +212382 2025-08-15 00:53:32.788867+00 2025-08-15 00:53:32.788881+00 f t DESCUENTO 0.00 2 5534 \N +212383 2025-08-15 00:53:32.791242+00 2025-08-15 00:53:32.791255+00 f t TOTAL 0.00 3 5534 \N +212384 2025-08-15 00:53:32.793296+00 2025-08-15 00:53:32.793308+00 f t ADELANTO 0.00 4 5534 \N +222185 2025-08-18 20:28:54.76443+00 2025-08-18 20:28:54.764442+00 f t SUBTOTAL 0.00 1 5773 \N +222186 2025-08-18 20:28:54.766608+00 2025-08-18 20:28:54.766617+00 f t DESCUENTO 0.00 2 5773 \N +222187 2025-08-18 20:28:54.768125+00 2025-08-18 20:28:54.768135+00 f t TOTAL 0.00 3 5773 \N +222188 2025-08-18 20:28:54.769839+00 2025-08-18 20:28:54.76985+00 f t ADELANTO 0.00 4 5773 \N +212417 2025-08-15 01:11:26.176764+00 2025-08-15 01:11:26.176775+00 f t SUBTOTAL 64500.00 1 5535 \N +212418 2025-08-15 01:11:26.178996+00 2025-08-15 01:11:26.179006+00 f t DESCUENTO 0.00 2 5535 \N +212419 2025-08-15 01:11:26.180967+00 2025-08-15 01:11:26.180977+00 f t TOTAL 64500.00 3 5535 \N +212420 2025-08-15 01:11:26.182693+00 2025-08-15 01:11:26.182703+00 f t ADELANTO 17000.00 4 5535 \N +217533 2025-08-17 00:28:38.159697+00 2025-08-17 00:28:38.159706+00 f t SUBTOTAL 50000.00 1 5658 \N +217534 2025-08-17 00:28:38.161548+00 2025-08-17 00:28:38.161555+00 f t DESCUENTO 0.00 2 5658 \N +217535 2025-08-17 00:28:38.162993+00 2025-08-17 00:28:38.162999+00 f t TOTAL 50000.00 3 5658 \N +217536 2025-08-17 00:28:38.164351+00 2025-08-17 00:28:38.164357+00 f t ADELANTO 10000.00 4 5658 \N +219253 2025-08-17 18:11:48.48525+00 2025-08-17 18:11:48.485258+00 f t SUBTOTAL 50000.00 1 5699 \N +219254 2025-08-17 18:11:48.487091+00 2025-08-17 18:11:48.487099+00 f t DESCUENTO 0.00 2 5699 \N +219255 2025-08-17 18:11:48.488361+00 2025-08-17 18:11:48.488368+00 f t TOTAL 50000.00 3 5699 \N +219256 2025-08-17 18:11:48.489549+00 2025-08-17 18:11:48.489555+00 f t ADELANTO 10000.00 4 5699 \N +309589 2025-09-19 22:16:26.334253+00 2025-09-19 22:16:26.334261+00 f t SUBTOTAL 46000.00 1 7852 \N +214433 2025-08-15 20:12:28.271236+00 2025-08-15 20:12:28.271249+00 f t SUBTOTAL 50000.00 1 5587 \N +214434 2025-08-15 20:12:28.274123+00 2025-08-15 20:12:28.274133+00 f t DESCUENTO 0.00 2 5587 \N +214435 2025-08-15 20:12:28.27614+00 2025-08-15 20:12:28.27615+00 f t TOTAL 50000.00 3 5587 \N +214436 2025-08-15 20:12:28.278229+00 2025-08-15 20:12:28.278242+00 f t ADELANTO 10000.00 4 5587 \N +212445 2025-08-15 01:26:44.407291+00 2025-08-15 01:26:44.407302+00 f t SUBTOTAL 27500.00 1 5536 \N +212446 2025-08-15 01:26:44.409588+00 2025-08-15 01:26:44.409599+00 f t DESCUENTO 0.00 2 5536 \N +212447 2025-08-15 01:26:44.41142+00 2025-08-15 01:26:44.411431+00 f t TOTAL 27500.00 3 5536 \N +212448 2025-08-15 01:26:44.413092+00 2025-08-15 01:26:44.413101+00 f t ADELANTO 27500.00 4 5536 \N +214905 2025-08-15 22:42:31.938676+00 2025-08-15 22:42:31.938685+00 f t SUBTOTAL 0.00 1 5600 \N +214906 2025-08-15 22:42:31.941722+00 2025-08-15 22:42:31.941735+00 f t DESCUENTO 0.00 2 5600 \N +214907 2025-08-15 22:42:31.943471+00 2025-08-15 22:42:31.943479+00 f t TOTAL 0.00 3 5600 \N +214908 2025-08-15 22:42:31.94498+00 2025-08-15 22:42:31.94499+00 f t ADELANTO 0.00 4 5600 \N +215049 2025-08-16 00:06:28.355015+00 2025-08-16 00:06:28.355027+00 f t SUBTOTAL 42000.00 1 5604 \N +215050 2025-08-16 00:06:28.357635+00 2025-08-16 00:06:28.357645+00 f t DESCUENTO 0.00 2 5604 \N +215051 2025-08-16 00:06:28.359229+00 2025-08-16 00:06:28.359236+00 f t TOTAL 42000.00 3 5604 \N +215052 2025-08-16 00:06:28.360774+00 2025-08-16 00:06:28.360782+00 f t ADELANTO 9500.00 4 5604 \N +215121 2025-08-16 00:25:08.985653+00 2025-08-16 00:25:08.985667+00 f t SUBTOTAL 0.00 1 5605 \N +215122 2025-08-16 00:25:08.989717+00 2025-08-16 00:25:08.989732+00 f t DESCUENTO 0.00 2 5605 \N +215123 2025-08-16 00:25:08.992792+00 2025-08-16 00:25:08.992806+00 f t TOTAL 0.00 3 5605 \N +215124 2025-08-16 00:25:09.00068+00 2025-08-16 00:25:09.000696+00 f t ADELANTO 0.00 4 5605 \N +215249 2025-08-16 01:24:22.728127+00 2025-08-16 01:24:22.728137+00 f t SUBTOTAL 0.00 1 5608 \N +215250 2025-08-16 01:24:22.730327+00 2025-08-16 01:24:22.730385+00 f t DESCUENTO 0.00 2 5608 \N +215251 2025-08-16 01:24:22.732423+00 2025-08-16 01:24:22.732433+00 f t TOTAL 0.00 3 5608 \N +215252 2025-08-16 01:24:22.734642+00 2025-08-16 01:24:22.734651+00 f t ADELANTO 0.00 4 5608 \N +215333 2025-08-16 04:47:34.411075+00 2025-08-16 04:47:34.411088+00 f t SUBTOTAL 0.00 1 5614 \N +215334 2025-08-16 04:47:34.417376+00 2025-08-16 04:47:34.417388+00 f t DESCUENTO 0.00 2 5614 \N +215335 2025-08-16 04:47:34.419332+00 2025-08-16 04:47:34.41934+00 f t TOTAL 0.00 3 5614 \N +215336 2025-08-16 04:47:34.421007+00 2025-08-16 04:47:34.421016+00 f t ADELANTO 0.00 4 5614 \N +212517 2025-08-15 01:30:18.543602+00 2025-08-15 01:30:18.543616+00 f t SUBTOTAL 146700.00 1 5537 \N +212518 2025-08-15 01:30:18.545778+00 2025-08-15 01:30:18.54579+00 f t DESCUENTO 0.00 2 5537 \N +212519 2025-08-15 01:30:18.547705+00 2025-08-15 01:30:18.547715+00 f t TOTAL 146700.00 3 5537 \N +212520 2025-08-15 01:30:18.549525+00 2025-08-15 01:30:18.549535+00 f t ADELANTO 108700.00 4 5537 \N +215661 2025-08-16 12:24:59.663309+00 2025-08-16 12:24:59.663322+00 f t SUBTOTAL 0.00 1 5620 \N +215662 2025-08-16 12:24:59.667713+00 2025-08-16 12:24:59.667727+00 f t DESCUENTO 0.00 2 5620 \N +215663 2025-08-16 12:24:59.669938+00 2025-08-16 12:24:59.669949+00 f t TOTAL 0.00 3 5620 \N +215664 2025-08-16 12:24:59.672738+00 2025-08-16 12:24:59.67275+00 f t ADELANTO 0.00 4 5620 \N +212545 2025-08-15 01:45:59.635022+00 2025-08-15 01:45:59.635034+00 f t SUBTOTAL 27500.00 1 5538 \N +212546 2025-08-15 01:45:59.63917+00 2025-08-15 01:45:59.639184+00 f t DESCUENTO 0.00 2 5538 \N +212547 2025-08-15 01:45:59.641581+00 2025-08-15 01:45:59.641592+00 f t TOTAL 27500.00 3 5538 \N +212548 2025-08-15 01:45:59.645908+00 2025-08-15 01:45:59.645917+00 f t ADELANTO 27500.00 4 5538 \N +212553 2025-08-15 01:51:31.927206+00 2025-08-15 01:51:31.927216+00 f t SUBTOTAL 0.00 1 5539 \N +212554 2025-08-15 01:51:31.92893+00 2025-08-15 01:51:31.928937+00 f t DESCUENTO 0.00 2 5539 \N +212555 2025-08-15 01:51:31.930327+00 2025-08-15 01:51:31.930334+00 f t TOTAL 0.00 3 5539 \N +212556 2025-08-15 01:51:31.931563+00 2025-08-15 01:51:31.931569+00 f t ADELANTO 0.00 4 5539 \N +216605 2025-08-16 17:39:40.077381+00 2025-08-16 17:39:40.07739+00 f t SUBTOTAL 0.00 1 5640 \N +216606 2025-08-16 17:39:40.079684+00 2025-08-16 17:39:40.079692+00 f t DESCUENTO 0.00 2 5640 \N +216607 2025-08-16 17:39:40.081402+00 2025-08-16 17:39:40.081409+00 f t TOTAL 0.00 3 5640 \N +216608 2025-08-16 17:39:40.082623+00 2025-08-16 17:39:40.08263+00 f t ADELANTO 0.00 4 5640 \N +212601 2025-08-15 02:12:56.071419+00 2025-08-15 02:12:56.071432+00 f t SUBTOTAL 42000.00 1 5540 \N +212602 2025-08-15 02:12:56.074821+00 2025-08-15 02:12:56.075023+00 f t DESCUENTO 0.00 2 5540 \N +212603 2025-08-15 02:12:56.077511+00 2025-08-15 02:12:56.077521+00 f t TOTAL 42000.00 3 5540 \N +212604 2025-08-15 02:12:56.081403+00 2025-08-15 02:12:56.081415+00 f t ADELANTO 9500.00 4 5540 \N +212609 2025-08-15 02:42:04.644152+00 2025-08-15 02:42:04.644167+00 f t SUBTOTAL 0.00 1 5541 \N +212610 2025-08-15 02:42:04.646927+00 2025-08-15 02:42:04.646937+00 f t DESCUENTO 0.00 2 5541 \N +212611 2025-08-15 02:42:04.649342+00 2025-08-15 02:42:04.64937+00 f t TOTAL 0.00 3 5541 \N +212612 2025-08-15 02:42:04.652351+00 2025-08-15 02:42:04.652365+00 f t ADELANTO 0.00 4 5541 \N +212617 2025-08-15 03:19:03.820387+00 2025-08-15 03:19:03.820398+00 f t SUBTOTAL 0.00 1 5542 \N +212618 2025-08-15 03:19:03.822283+00 2025-08-15 03:19:03.822292+00 f t DESCUENTO 0.00 2 5542 \N +212619 2025-08-15 03:19:03.824558+00 2025-08-15 03:19:03.824569+00 f t TOTAL 0.00 3 5542 \N +212620 2025-08-15 03:19:03.832063+00 2025-08-15 03:19:03.832079+00 f t ADELANTO 0.00 4 5542 \N +212625 2025-08-15 03:44:45.463889+00 2025-08-15 03:44:45.463902+00 f t SUBTOTAL 0.00 1 5543 \N +212626 2025-08-15 03:44:45.466028+00 2025-08-15 03:44:45.466041+00 f t DESCUENTO 0.00 2 5543 \N +212627 2025-08-15 03:44:45.47178+00 2025-08-15 03:44:45.471793+00 f t TOTAL 0.00 3 5543 \N +212628 2025-08-15 03:44:45.474125+00 2025-08-15 03:44:45.474143+00 f t ADELANTO 0.00 4 5543 \N +212689 2025-08-15 03:48:58.777383+00 2025-08-15 03:48:58.777392+00 f t SUBTOTAL 49500.00 1 5544 \N +212690 2025-08-15 03:48:58.779409+00 2025-08-15 03:48:58.779419+00 f t DESCUENTO 0.00 2 5544 \N +212691 2025-08-15 03:48:58.781051+00 2025-08-15 03:48:58.781058+00 f t TOTAL 49500.00 3 5544 \N +212692 2025-08-15 03:48:58.782263+00 2025-08-15 03:48:58.78227+00 f t ADELANTO 11500.00 4 5544 \N +212697 2025-08-15 03:49:26.999633+00 2025-08-15 03:49:26.999647+00 f t SUBTOTAL 42000.00 1 5545 \N +212698 2025-08-15 03:49:27.00403+00 2025-08-15 03:49:27.004044+00 f t DESCUENTO 0.00 2 5545 \N +212699 2025-08-15 03:49:27.006428+00 2025-08-15 03:49:27.006443+00 f t TOTAL 42000.00 3 5545 \N +212700 2025-08-15 03:49:27.00951+00 2025-08-15 03:49:27.009522+00 f t ADELANTO 9500.00 4 5545 \N +212705 2025-08-15 04:38:14.513313+00 2025-08-15 04:38:14.513323+00 f t SUBTOTAL 0.00 1 5546 \N +212706 2025-08-15 04:38:14.516157+00 2025-08-15 04:38:14.51617+00 f t DESCUENTO 0.00 2 5546 \N +212707 2025-08-15 04:38:14.518302+00 2025-08-15 04:38:14.518313+00 f t TOTAL 0.00 3 5546 \N +212708 2025-08-15 04:38:14.519979+00 2025-08-15 04:38:14.519988+00 f t ADELANTO 0.00 4 5546 \N +309590 2025-09-19 22:16:26.336215+00 2025-09-19 22:16:26.336222+00 f t DESCUENTO 0.00 2 7852 \N +309591 2025-09-19 22:16:26.337601+00 2025-09-19 22:16:26.337607+00 f t TOTAL 46000.00 3 7852 \N +309592 2025-09-19 22:16:26.338806+00 2025-09-19 22:16:26.338812+00 f t ADELANTO 11000.00 4 7852 \N +229649 2025-08-20 22:13:17.254191+00 2025-08-20 22:13:17.254203+00 f t SUBTOTAL 0.00 1 5947 \N +224545 2025-08-19 11:57:27.921114+00 2025-08-19 11:57:27.921127+00 f t SUBTOTAL 0.00 1 5814 \N +224546 2025-08-19 11:57:27.923381+00 2025-08-19 11:57:27.923392+00 f t DESCUENTO 0.00 2 5814 \N +224547 2025-08-19 11:57:27.925164+00 2025-08-19 11:57:27.925174+00 f t TOTAL 0.00 3 5814 \N +224548 2025-08-19 11:57:27.926673+00 2025-08-19 11:57:27.926682+00 f t ADELANTO 0.00 4 5814 \N +214441 2025-08-15 20:18:08.053774+00 2025-08-15 20:18:08.053785+00 f t SUBTOTAL 0.00 1 5588 \N +214442 2025-08-15 20:18:08.056383+00 2025-08-15 20:18:08.056392+00 f t DESCUENTO 0.00 2 5588 \N +214443 2025-08-15 20:18:08.058768+00 2025-08-15 20:18:08.058778+00 f t TOTAL 0.00 3 5588 \N +214444 2025-08-15 20:18:08.061917+00 2025-08-15 20:18:08.06193+00 f t ADELANTO 0.00 4 5588 \N +214609 2025-08-15 20:38:37.314441+00 2025-08-15 20:38:37.314455+00 f t SUBTOTAL 0.00 1 5593 \N +214610 2025-08-15 20:38:37.316887+00 2025-08-15 20:38:37.316894+00 f t DESCUENTO 0.00 2 5593 \N +214611 2025-08-15 20:38:37.318728+00 2025-08-15 20:38:37.318735+00 f t TOTAL 0.00 3 5593 \N +214612 2025-08-15 20:38:37.320407+00 2025-08-15 20:38:37.320415+00 f t ADELANTO 0.00 4 5593 \N +214769 2025-08-15 22:16:11.162546+00 2025-08-15 22:16:11.162559+00 f t SUBTOTAL 50000.00 1 5597 \N +214770 2025-08-15 22:16:11.167994+00 2025-08-15 22:16:11.168006+00 f t DESCUENTO 0.00 2 5597 \N +214771 2025-08-15 22:16:11.170279+00 2025-08-15 22:16:11.17029+00 f t TOTAL 50000.00 3 5597 \N +214772 2025-08-15 22:16:11.172096+00 2025-08-15 22:16:11.172106+00 f t ADELANTO 10000.00 4 5597 \N +212785 2025-08-15 05:08:56.680489+00 2025-08-15 05:08:56.680502+00 f t SUBTOTAL 64500.00 1 5547 \N +212786 2025-08-15 05:08:56.683611+00 2025-08-15 05:08:56.683622+00 f t DESCUENTO 0.00 2 5547 \N +212787 2025-08-15 05:08:56.686158+00 2025-08-15 05:08:56.686171+00 f t TOTAL 64500.00 3 5547 \N +212788 2025-08-15 05:08:56.688555+00 2025-08-15 05:08:56.688568+00 f t ADELANTO 17000.00 4 5547 \N +219973 2025-08-17 23:29:51.745108+00 2025-08-17 23:29:51.74512+00 f t SUBTOTAL 27500.00 1 5716 \N +219974 2025-08-17 23:29:51.747385+00 2025-08-17 23:29:51.747395+00 f t DESCUENTO 0.00 2 5716 \N +219975 2025-08-17 23:29:51.749027+00 2025-08-17 23:29:51.749036+00 f t TOTAL 27500.00 3 5716 \N +219976 2025-08-17 23:29:51.750476+00 2025-08-17 23:29:51.750485+00 f t ADELANTO 27500.00 4 5716 \N +215257 2025-08-16 01:36:18.144906+00 2025-08-16 01:36:18.144918+00 f t SUBTOTAL 0.00 1 5609 \N +215258 2025-08-16 01:36:18.146769+00 2025-08-16 01:36:18.146782+00 f t DESCUENTO 0.00 2 5609 \N +215259 2025-08-16 01:36:18.14889+00 2025-08-16 01:36:18.148899+00 f t TOTAL 0.00 3 5609 \N +215260 2025-08-16 01:36:18.15049+00 2025-08-16 01:36:18.150498+00 f t ADELANTO 0.00 4 5609 \N +212837 2025-08-15 07:08:23.452007+00 2025-08-15 07:08:23.45202+00 f t SUBTOTAL 0.00 1 5548 \N +212838 2025-08-15 07:08:23.454556+00 2025-08-15 07:08:23.454565+00 f t DESCUENTO 0.00 2 5548 \N +212839 2025-08-15 07:08:23.457115+00 2025-08-15 07:08:23.457124+00 f t TOTAL 0.00 3 5548 \N +212840 2025-08-15 07:08:23.459085+00 2025-08-15 07:08:23.459093+00 f t ADELANTO 0.00 4 5548 \N +215917 2025-08-16 13:30:08.800471+00 2025-08-16 13:30:08.800486+00 f t SUBTOTAL 50000.00 1 5625 \N +215918 2025-08-16 13:30:08.80428+00 2025-08-16 13:30:08.804294+00 f t DESCUENTO 0.00 2 5625 \N +215919 2025-08-16 13:30:08.806846+00 2025-08-16 13:30:08.806855+00 f t TOTAL 50000.00 3 5625 \N +215920 2025-08-16 13:30:08.809294+00 2025-08-16 13:30:08.809307+00 f t ADELANTO 10000.00 4 5625 \N +215981 2025-08-16 13:38:11.378983+00 2025-08-16 13:38:11.378994+00 f t SUBTOTAL 50000.00 1 5626 \N +215982 2025-08-16 13:38:11.383093+00 2025-08-16 13:38:11.383106+00 f t DESCUENTO 0.00 2 5626 \N +215983 2025-08-16 13:38:11.385077+00 2025-08-16 13:38:11.385088+00 f t TOTAL 50000.00 3 5626 \N +215984 2025-08-16 13:38:11.38676+00 2025-08-16 13:38:11.38677+00 f t ADELANTO 10000.00 4 5626 \N +212893 2025-08-15 07:14:54.779585+00 2025-08-15 07:14:54.779598+00 f t SUBTOTAL 0.00 1 5549 \N +212894 2025-08-15 07:14:54.783559+00 2025-08-15 07:14:54.783572+00 f t DESCUENTO 0.00 2 5549 \N +212895 2025-08-15 07:14:54.78675+00 2025-08-15 07:14:54.786764+00 f t TOTAL 0.00 3 5549 \N +212896 2025-08-15 07:14:54.789271+00 2025-08-15 07:14:54.789279+00 f t ADELANTO 0.00 4 5549 \N +212901 2025-08-15 08:16:23.610571+00 2025-08-15 08:16:23.610581+00 f t SUBTOTAL 0.00 1 5550 \N +212902 2025-08-15 08:16:23.612414+00 2025-08-15 08:16:23.612429+00 f t DESCUENTO 0.00 2 5550 \N +212903 2025-08-15 08:16:23.621389+00 2025-08-15 08:16:23.6214+00 f t TOTAL 0.00 3 5550 \N +212904 2025-08-15 08:16:23.623582+00 2025-08-15 08:16:23.623596+00 f t ADELANTO 0.00 4 5550 \N +221261 2025-08-18 14:39:32.469621+00 2025-08-18 14:39:32.469631+00 f t SUBTOTAL 0.00 1 5748 \N +221262 2025-08-18 14:39:32.471878+00 2025-08-18 14:39:32.471885+00 f t DESCUENTO 0.00 2 5748 \N +221263 2025-08-18 14:39:32.473207+00 2025-08-18 14:39:32.473213+00 f t TOTAL 0.00 3 5748 \N +221264 2025-08-18 14:39:32.47809+00 2025-08-18 14:39:32.4781+00 f t ADELANTO 0.00 4 5748 \N +217005 2025-08-16 20:57:17.658291+00 2025-08-16 20:57:17.658301+00 f t SUBTOTAL 0.00 1 5651 \N +217006 2025-08-16 20:57:17.660613+00 2025-08-16 20:57:17.660621+00 f t DESCUENTO 0.00 2 5651 \N +217007 2025-08-16 20:57:17.662371+00 2025-08-16 20:57:17.662379+00 f t TOTAL 0.00 3 5651 \N +217008 2025-08-16 20:57:17.66374+00 2025-08-16 20:57:17.663746+00 f t ADELANTO 0.00 4 5651 \N +212953 2025-08-15 08:20:28.553289+00 2025-08-15 08:20:28.553301+00 f t SUBTOTAL 50000.00 1 5551 \N +212954 2025-08-15 08:20:28.557955+00 2025-08-15 08:20:28.557969+00 f t DESCUENTO 0.00 2 5551 \N +212955 2025-08-15 08:20:28.56026+00 2025-08-15 08:20:28.56027+00 f t TOTAL 50000.00 3 5551 \N +212956 2025-08-15 08:20:28.565274+00 2025-08-15 08:20:28.565288+00 f t ADELANTO 10000.00 4 5551 \N +221753 2025-08-18 17:44:59.231899+00 2025-08-18 17:44:59.231912+00 f t SUBTOTAL 0.00 1 5763 \N +221754 2025-08-18 17:44:59.233743+00 2025-08-18 17:44:59.233753+00 f t DESCUENTO 0.00 2 5763 \N +212961 2025-08-15 09:48:44.046015+00 2025-08-15 09:48:44.046029+00 f t SUBTOTAL 0.00 1 5552 \N +212962 2025-08-15 09:48:44.047958+00 2025-08-15 09:48:44.047968+00 f t DESCUENTO 0.00 2 5552 \N +212963 2025-08-15 09:48:44.049534+00 2025-08-15 09:48:44.049542+00 f t TOTAL 0.00 3 5552 \N +212964 2025-08-15 09:48:44.050964+00 2025-08-15 09:48:44.05097+00 f t ADELANTO 0.00 4 5552 \N +221755 2025-08-18 17:44:59.235488+00 2025-08-18 17:44:59.235495+00 f t TOTAL 0.00 3 5763 \N +221756 2025-08-18 17:44:59.236835+00 2025-08-18 17:44:59.236844+00 f t ADELANTO 0.00 4 5763 \N +227493 2025-08-20 11:11:37.27128+00 2025-08-20 11:11:37.271294+00 f t SUBTOTAL 0.00 1 5888 \N +227494 2025-08-20 11:11:37.274394+00 2025-08-20 11:11:37.274403+00 f t DESCUENTO 0.00 2 5888 \N +227495 2025-08-20 11:11:37.276264+00 2025-08-20 11:11:37.276275+00 f t TOTAL 0.00 3 5888 \N +227496 2025-08-20 11:11:37.278042+00 2025-08-20 11:11:37.278049+00 f t ADELANTO 0.00 4 5888 \N +217465 2025-08-16 23:51:15.533422+00 2025-08-16 23:51:15.533433+00 f t SUBTOTAL 50000.00 1 5657 \N +217466 2025-08-16 23:51:15.535277+00 2025-08-16 23:51:15.535285+00 f t DESCUENTO 0.00 2 5657 \N +217467 2025-08-16 23:51:15.536666+00 2025-08-16 23:51:15.536674+00 f t TOTAL 50000.00 3 5657 \N +217468 2025-08-16 23:51:15.537927+00 2025-08-16 23:51:15.537934+00 f t ADELANTO 10000.00 4 5657 \N +229650 2025-08-20 22:13:17.255646+00 2025-08-20 22:13:17.255652+00 f t DESCUENTO 0.00 2 5947 \N +229651 2025-08-20 22:13:17.257028+00 2025-08-20 22:13:17.257036+00 f t TOTAL 0.00 3 5947 \N +229652 2025-08-20 22:13:17.259081+00 2025-08-20 22:13:17.259089+00 f t ADELANTO 0.00 4 5947 \N +214449 2025-08-15 20:19:55.218746+00 2025-08-15 20:19:55.218762+00 f t SUBTOTAL 0.00 1 5589 \N +214450 2025-08-15 20:19:55.220921+00 2025-08-15 20:19:55.220931+00 f t DESCUENTO 0.00 2 5589 \N +214451 2025-08-15 20:19:55.222947+00 2025-08-15 20:19:55.222955+00 f t TOTAL 0.00 3 5589 \N +214452 2025-08-15 20:19:55.224643+00 2025-08-15 20:19:55.22465+00 f t ADELANTO 0.00 4 5589 \N +213061 2025-08-15 09:56:17.146194+00 2025-08-15 09:56:17.146206+00 f t SUBTOTAL 50000.00 1 5553 \N +213062 2025-08-15 09:56:17.148671+00 2025-08-15 09:56:17.148682+00 f t DESCUENTO 0.00 2 5553 \N +213063 2025-08-15 09:56:17.150756+00 2025-08-15 09:56:17.150764+00 f t TOTAL 50000.00 3 5553 \N +213064 2025-08-15 09:56:17.154066+00 2025-08-15 09:56:17.154076+00 f t ADELANTO 10000.00 4 5553 \N +219981 2025-08-17 23:30:44.394984+00 2025-08-17 23:30:44.394996+00 f t SUBTOTAL 0.00 1 5717 \N +219982 2025-08-17 23:30:44.39697+00 2025-08-17 23:30:44.396982+00 f t DESCUENTO 0.00 2 5717 \N +219983 2025-08-17 23:30:44.398793+00 2025-08-17 23:30:44.3988+00 f t TOTAL 0.00 3 5717 \N +219984 2025-08-17 23:30:44.400309+00 2025-08-17 23:30:44.400316+00 f t ADELANTO 0.00 4 5717 \N +215265 2025-08-16 01:39:18.170497+00 2025-08-16 01:39:18.170508+00 f t SUBTOTAL 0.00 1 5610 \N +215266 2025-08-16 01:39:18.172305+00 2025-08-16 01:39:18.172314+00 f t DESCUENTO 0.00 2 5610 \N +215267 2025-08-16 01:39:18.173715+00 2025-08-16 01:39:18.173722+00 f t TOTAL 0.00 3 5610 \N +215268 2025-08-16 01:39:18.174966+00 2025-08-16 01:39:18.174972+00 f t ADELANTO 0.00 4 5610 \N +220301 2025-08-18 02:33:19.748347+00 2025-08-18 02:33:19.748357+00 f t SUBTOTAL 42000.00 1 5727 \N +220302 2025-08-18 02:33:19.751022+00 2025-08-18 02:33:19.751031+00 f t DESCUENTO 0.00 2 5727 \N +220303 2025-08-18 02:33:19.752659+00 2025-08-18 02:33:19.752668+00 f t TOTAL 42000.00 3 5727 \N +220304 2025-08-18 02:33:19.754323+00 2025-08-18 02:33:19.754333+00 f t ADELANTO 9500.00 4 5727 \N +213105 2025-08-15 12:05:47.18392+00 2025-08-15 12:05:47.183933+00 f t SUBTOTAL 95000.00 1 5554 \N +213106 2025-08-15 12:05:47.186651+00 2025-08-15 12:05:47.186663+00 f t DESCUENTO 0.00 2 5554 \N +213107 2025-08-15 12:05:47.18873+00 2025-08-15 12:05:47.188739+00 f t TOTAL 95000.00 3 5554 \N +213108 2025-08-15 12:05:47.190627+00 2025-08-15 12:05:47.190635+00 f t ADELANTO 10000.00 4 5554 \N +213113 2025-08-15 12:40:21.179282+00 2025-08-15 12:40:21.179295+00 f t SUBTOTAL 0.00 1 5555 \N +213114 2025-08-15 12:40:21.182083+00 2025-08-15 12:40:21.182097+00 f t DESCUENTO 0.00 2 5555 \N +213115 2025-08-15 12:40:21.184443+00 2025-08-15 12:40:21.184456+00 f t TOTAL 0.00 3 5555 \N +213116 2025-08-15 12:40:21.188595+00 2025-08-15 12:40:21.188608+00 f t ADELANTO 0.00 4 5555 \N +220581 2025-08-18 04:29:02.807023+00 2025-08-18 04:29:02.807035+00 f t SUBTOTAL 27500.00 1 5731 \N +220582 2025-08-18 04:29:02.809896+00 2025-08-18 04:29:02.809905+00 f t DESCUENTO 0.00 2 5731 \N +213121 2025-08-15 12:42:20.876039+00 2025-08-15 12:42:20.876052+00 f t SUBTOTAL 0.00 1 5556 \N +213122 2025-08-15 12:42:20.878222+00 2025-08-15 12:42:20.878232+00 f t DESCUENTO 0.00 2 5556 \N +213123 2025-08-15 12:42:20.880063+00 2025-08-15 12:42:20.880075+00 f t TOTAL 0.00 3 5556 \N +213124 2025-08-15 12:42:20.881944+00 2025-08-15 12:42:20.881954+00 f t ADELANTO 0.00 4 5556 \N +220583 2025-08-18 04:29:02.811676+00 2025-08-18 04:29:02.811688+00 f t TOTAL 27500.00 3 5731 \N +220584 2025-08-18 04:29:02.813618+00 2025-08-18 04:29:02.813627+00 f t ADELANTO 27500.00 4 5731 \N +213129 2025-08-15 12:43:19.493435+00 2025-08-15 12:43:19.493447+00 f t SUBTOTAL 0.00 1 5557 \N +213130 2025-08-15 12:43:19.495607+00 2025-08-15 12:43:19.495618+00 f t DESCUENTO 0.00 2 5557 \N +213131 2025-08-15 12:43:19.498162+00 2025-08-15 12:43:19.498175+00 f t TOTAL 0.00 3 5557 \N +213132 2025-08-15 12:43:19.500298+00 2025-08-15 12:43:19.500376+00 f t ADELANTO 0.00 4 5557 \N +213137 2025-08-15 12:51:14.208966+00 2025-08-15 12:51:14.208977+00 f t SUBTOTAL 0.00 1 5558 \N +213138 2025-08-15 12:51:14.210945+00 2025-08-15 12:51:14.210953+00 f t DESCUENTO 0.00 2 5558 \N +213139 2025-08-15 12:51:14.212668+00 2025-08-15 12:51:14.212678+00 f t TOTAL 0.00 3 5558 \N +213140 2025-08-15 12:51:14.214227+00 2025-08-15 12:51:14.214235+00 f t ADELANTO 0.00 4 5558 \N +220869 2025-08-18 12:11:16.158844+00 2025-08-18 12:11:16.158853+00 f t SUBTOTAL 50000.00 1 5737 \N +220870 2025-08-18 12:11:16.160755+00 2025-08-18 12:11:16.160763+00 f t DESCUENTO 0.00 2 5737 \N +220871 2025-08-18 12:11:16.162331+00 2025-08-18 12:11:16.162342+00 f t TOTAL 50000.00 3 5737 \N +220872 2025-08-18 12:11:16.163754+00 2025-08-18 12:11:16.163761+00 f t ADELANTO 10000.00 4 5737 \N +215989 2025-08-16 13:54:04.077407+00 2025-08-16 13:54:04.077416+00 f t SUBTOTAL 0.00 1 5627 \N +215990 2025-08-16 13:54:04.080281+00 2025-08-16 13:54:04.080293+00 f t DESCUENTO 0.00 2 5627 \N +215991 2025-08-16 13:54:04.082969+00 2025-08-16 13:54:04.082983+00 f t TOTAL 0.00 3 5627 \N +215992 2025-08-16 13:54:04.084646+00 2025-08-16 13:54:04.084654+00 f t ADELANTO 0.00 4 5627 \N +213169 2025-08-15 13:28:54.736448+00 2025-08-15 13:28:54.736462+00 f t SUBTOTAL 146700.00 1 5559 \N +213170 2025-08-15 13:28:54.740168+00 2025-08-15 13:28:54.740181+00 f t DESCUENTO 0.00 2 5559 \N +213171 2025-08-15 13:28:54.742453+00 2025-08-15 13:28:54.742465+00 f t TOTAL 146700.00 3 5559 \N +213172 2025-08-15 13:28:54.7447+00 2025-08-15 13:28:54.744713+00 f t ADELANTO 108700.00 4 5559 \N +221093 2025-08-18 13:11:04.045615+00 2025-08-18 13:11:04.045625+00 f t SUBTOTAL 42000.00 1 5741 \N +221094 2025-08-18 13:11:04.047955+00 2025-08-18 13:11:04.047966+00 f t DESCUENTO 0.00 2 5741 \N +221095 2025-08-18 13:11:04.049974+00 2025-08-18 13:11:04.049986+00 f t TOTAL 42000.00 3 5741 \N +221096 2025-08-18 13:11:04.052176+00 2025-08-18 13:11:04.052187+00 f t ADELANTO 9500.00 4 5741 \N +221269 2025-08-18 15:08:08.896006+00 2025-08-18 15:08:08.896015+00 f t SUBTOTAL 0.00 1 5749 \N +221270 2025-08-18 15:08:08.898043+00 2025-08-18 15:08:08.898057+00 f t DESCUENTO 0.00 2 5749 \N +221271 2025-08-18 15:08:08.899922+00 2025-08-18 15:08:08.899932+00 f t TOTAL 0.00 3 5749 \N +221272 2025-08-18 15:08:08.901627+00 2025-08-18 15:08:08.901638+00 f t ADELANTO 0.00 4 5749 \N +216665 2025-08-16 17:48:42.734391+00 2025-08-16 17:48:42.7344+00 f t SUBTOTAL 88000.00 1 5641 \N +216666 2025-08-16 17:48:42.73634+00 2025-08-16 17:48:42.736348+00 f t DESCUENTO 0.00 2 5641 \N +216667 2025-08-16 17:48:42.737756+00 2025-08-16 17:48:42.737762+00 f t TOTAL 88000.00 3 5641 \N +216668 2025-08-16 17:48:42.73905+00 2025-08-16 17:48:42.739057+00 f t ADELANTO 19000.00 4 5641 \N +216869 2025-08-16 18:31:03.107274+00 2025-08-16 18:31:03.107283+00 f t SUBTOTAL 0.00 1 5645 \N +216870 2025-08-16 18:31:03.109635+00 2025-08-16 18:31:03.109643+00 f t DESCUENTO 0.00 2 5645 \N +216871 2025-08-16 18:31:03.111235+00 2025-08-16 18:31:03.111244+00 f t TOTAL 0.00 3 5645 \N +216872 2025-08-16 18:31:03.113295+00 2025-08-16 18:31:03.113304+00 f t ADELANTO 0.00 4 5645 \N +221693 2025-08-18 17:25:29.845843+00 2025-08-18 17:25:29.845856+00 f t SUBTOTAL 82200.00 1 5759 \N +221694 2025-08-18 17:25:29.848502+00 2025-08-18 17:25:29.848514+00 f t DESCUENTO 0.00 2 5759 \N +221695 2025-08-18 17:25:29.850654+00 2025-08-18 17:25:29.850663+00 f t TOTAL 82200.00 3 5759 \N +221696 2025-08-18 17:25:29.852239+00 2025-08-18 17:25:29.852246+00 f t ADELANTO 44200.00 4 5759 \N +217049 2025-08-16 22:39:25.75826+00 2025-08-16 22:39:25.758273+00 f t SUBTOTAL 0.00 1 5652 \N +217050 2025-08-16 22:39:25.761339+00 2025-08-16 22:39:25.761347+00 f t DESCUENTO 0.00 2 5652 \N +217051 2025-08-16 22:39:25.763401+00 2025-08-16 22:39:25.76341+00 f t TOTAL 0.00 3 5652 \N +217052 2025-08-16 22:39:25.765312+00 2025-08-16 22:39:25.765321+00 f t ADELANTO 0.00 4 5652 \N +214253 2025-08-15 19:04:20.373633+00 2025-08-15 19:04:20.373641+00 f t SUBTOTAL 50000.00 1 5584 \N +214254 2025-08-15 19:04:20.375603+00 2025-08-15 19:04:20.375611+00 f t DESCUENTO 0.00 2 5584 \N +214255 2025-08-15 19:04:20.377218+00 2025-08-15 19:04:20.377225+00 f t TOTAL 50000.00 3 5584 \N +214256 2025-08-15 19:04:20.378767+00 2025-08-15 19:04:20.378776+00 f t ADELANTO 10000.00 4 5584 \N +224453 2025-08-19 11:06:53.330403+00 2025-08-19 11:06:53.330412+00 f t SUBTOTAL 95700.00 1 5811 \N +224454 2025-08-19 11:06:53.332131+00 2025-08-19 11:06:53.33214+00 f t DESCUENTO 0.00 2 5811 \N +213313 2025-08-15 13:31:53.884916+00 2025-08-15 13:31:53.884929+00 f t SUBTOTAL 143000.00 1 5560 \N +213314 2025-08-15 13:31:53.887166+00 2025-08-15 13:31:53.887177+00 f t DESCUENTO 0.00 2 5560 \N +213315 2025-08-15 13:31:53.889137+00 2025-08-15 13:31:53.889147+00 f t TOTAL 143000.00 3 5560 \N +213316 2025-08-15 13:31:53.891083+00 2025-08-15 13:31:53.891094+00 f t ADELANTO 28000.00 4 5560 \N +224455 2025-08-19 11:06:53.333767+00 2025-08-19 11:06:53.333776+00 f t TOTAL 95700.00 3 5811 \N +224456 2025-08-19 11:06:53.335097+00 2025-08-19 11:06:53.335106+00 f t ADELANTO 57700.00 4 5811 \N +270221 2025-09-05 11:27:19.727766+00 2025-09-05 11:27:19.727776+00 f t SUBTOTAL 0.00 1 6944 \N +270222 2025-09-05 11:27:19.729875+00 2025-09-05 11:27:19.729884+00 f t DESCUENTO 0.00 2 6944 \N +219445 2025-08-17 21:01:59.015186+00 2025-08-17 21:01:59.0152+00 f t SUBTOTAL 27500.00 1 5703 \N +219446 2025-08-17 21:01:59.018222+00 2025-08-17 21:01:59.018232+00 f t DESCUENTO 0.00 2 5703 \N +219447 2025-08-17 21:01:59.020283+00 2025-08-17 21:01:59.020293+00 f t TOTAL 27500.00 3 5703 \N +219448 2025-08-17 21:01:59.022562+00 2025-08-17 21:01:59.022575+00 f t ADELANTO 27500.00 4 5703 \N +213329 2025-08-15 13:48:09.276805+00 2025-08-15 13:48:09.276822+00 f t SUBTOTAL 0.00 1 5561 \N +213330 2025-08-15 13:48:09.280625+00 2025-08-15 13:48:09.280639+00 f t DESCUENTO 0.00 2 5561 \N +213331 2025-08-15 13:48:09.283103+00 2025-08-15 13:48:09.283116+00 f t TOTAL 0.00 3 5561 \N +213332 2025-08-15 13:48:09.285615+00 2025-08-15 13:48:09.285628+00 f t ADELANTO 0.00 4 5561 \N +213337 2025-08-15 14:01:24.300501+00 2025-08-15 14:01:24.30051+00 f t SUBTOTAL 0.00 1 5562 \N +213338 2025-08-15 14:01:24.30221+00 2025-08-15 14:01:24.302219+00 f t DESCUENTO 0.00 2 5562 \N +213339 2025-08-15 14:01:24.304411+00 2025-08-15 14:01:24.304438+00 f t TOTAL 0.00 3 5562 \N +213340 2025-08-15 14:01:24.306021+00 2025-08-15 14:01:24.306032+00 f t ADELANTO 0.00 4 5562 \N +213345 2025-08-15 14:43:35.247429+00 2025-08-15 14:43:35.247441+00 f t SUBTOTAL 0.00 1 5563 \N +213346 2025-08-15 14:43:35.249108+00 2025-08-15 14:43:35.249119+00 f t DESCUENTO 0.00 2 5563 \N +213347 2025-08-15 14:43:35.250672+00 2025-08-15 14:43:35.25068+00 f t TOTAL 0.00 3 5563 \N +213348 2025-08-15 14:43:35.252395+00 2025-08-15 14:43:35.252406+00 f t ADELANTO 0.00 4 5563 \N +224801 2025-08-19 12:55:55.481377+00 2025-08-19 12:55:55.481389+00 f t SUBTOTAL 42000.00 1 5821 \N +224802 2025-08-19 12:55:55.48838+00 2025-08-19 12:55:55.488393+00 f t DESCUENTO 0.00 2 5821 \N +224803 2025-08-19 12:55:55.490311+00 2025-08-19 12:55:55.49032+00 f t TOTAL 42000.00 3 5821 \N +224804 2025-08-19 12:55:55.492103+00 2025-08-19 12:55:55.492113+00 f t ADELANTO 9500.00 4 5821 \N +215273 2025-08-16 01:58:59.153902+00 2025-08-16 01:58:59.153916+00 f t SUBTOTAL 0.00 1 5611 \N +215274 2025-08-16 01:58:59.156201+00 2025-08-16 01:58:59.156212+00 f t DESCUENTO 0.00 2 5611 \N +215275 2025-08-16 01:58:59.157857+00 2025-08-16 01:58:59.157867+00 f t TOTAL 0.00 3 5611 \N +213385 2025-08-15 14:45:02.005991+00 2025-08-15 14:45:02.006006+00 f t SUBTOTAL 50000.00 1 5564 \N +213386 2025-08-15 14:45:02.009122+00 2025-08-15 14:45:02.009137+00 f t DESCUENTO 0.00 2 5564 \N +213387 2025-08-15 14:45:02.011841+00 2025-08-15 14:45:02.011854+00 f t TOTAL 50000.00 3 5564 \N +213388 2025-08-15 14:45:02.014417+00 2025-08-15 14:45:02.014431+00 f t ADELANTO 10000.00 4 5564 \N +215276 2025-08-16 01:58:59.159399+00 2025-08-16 01:58:59.159408+00 f t ADELANTO 0.00 4 5611 \N +220241 2025-08-18 02:09:01.867206+00 2025-08-18 02:09:01.867218+00 f t SUBTOTAL 42000.00 1 5725 \N +220242 2025-08-18 02:09:01.872094+00 2025-08-18 02:09:01.872107+00 f t DESCUENTO 0.00 2 5725 \N +220243 2025-08-18 02:09:01.874927+00 2025-08-18 02:09:01.874941+00 f t TOTAL 42000.00 3 5725 \N +220244 2025-08-18 02:09:01.878318+00 2025-08-18 02:09:01.878332+00 f t ADELANTO 9500.00 4 5725 \N +225417 2025-08-19 16:41:05.327444+00 2025-08-19 16:41:05.327458+00 f t SUBTOTAL 0.00 1 5839 \N +225418 2025-08-19 16:41:05.331204+00 2025-08-19 16:41:05.331218+00 f t DESCUENTO 0.00 2 5839 \N +225419 2025-08-19 16:41:05.333765+00 2025-08-19 16:41:05.333778+00 f t TOTAL 0.00 3 5839 \N +225420 2025-08-19 16:41:05.337186+00 2025-08-19 16:41:05.337198+00 f t ADELANTO 0.00 4 5839 \N +225485 2025-08-19 17:24:13.385807+00 2025-08-19 17:24:13.385821+00 f t SUBTOTAL 0.00 1 5841 \N +225486 2025-08-19 17:24:13.388751+00 2025-08-19 17:24:13.388762+00 f t DESCUENTO 0.00 2 5841 \N +225487 2025-08-19 17:24:13.390496+00 2025-08-19 17:24:13.390506+00 f t TOTAL 0.00 3 5841 \N +225488 2025-08-19 17:24:13.392148+00 2025-08-19 17:24:13.392157+00 f t ADELANTO 0.00 4 5841 \N +213413 2025-08-15 14:46:47.278059+00 2025-08-15 14:46:47.278071+00 f t SUBTOTAL 75000.00 1 5565 \N +213414 2025-08-15 14:46:47.280224+00 2025-08-15 14:46:47.280233+00 f t DESCUENTO 0.00 2 5565 \N +213415 2025-08-15 14:46:47.282082+00 2025-08-15 14:46:47.28209+00 f t TOTAL 75000.00 3 5565 \N +213416 2025-08-15 14:46:47.283543+00 2025-08-15 14:46:47.283552+00 f t ADELANTO 15000.00 4 5565 \N +225821 2025-08-19 19:28:23.897849+00 2025-08-19 19:28:23.897859+00 f t SUBTOTAL 0.00 1 5850 \N +225822 2025-08-19 19:28:23.901345+00 2025-08-19 19:28:23.901358+00 f t DESCUENTO 0.00 2 5850 \N +225823 2025-08-19 19:28:23.904203+00 2025-08-19 19:28:23.904216+00 f t TOTAL 0.00 3 5850 \N +225824 2025-08-19 19:28:23.906539+00 2025-08-19 19:28:23.906553+00 f t ADELANTO 0.00 4 5850 \N +213441 2025-08-15 14:50:09.937225+00 2025-08-15 14:50:09.937239+00 f t SUBTOTAL 27500.00 1 5566 \N +213442 2025-08-15 14:50:09.93979+00 2025-08-15 14:50:09.939802+00 f t DESCUENTO 0.00 2 5566 \N +213443 2025-08-15 14:50:09.942698+00 2025-08-15 14:50:09.942711+00 f t TOTAL 27500.00 3 5566 \N +213444 2025-08-15 14:50:09.944831+00 2025-08-15 14:50:09.944842+00 f t ADELANTO 27500.00 4 5566 \N +221101 2025-08-18 13:25:00.228317+00 2025-08-18 13:25:00.228331+00 f t SUBTOTAL 0.00 1 5742 \N +221102 2025-08-18 13:25:00.230438+00 2025-08-18 13:25:00.230447+00 f t DESCUENTO 0.00 2 5742 \N +221103 2025-08-18 13:25:00.232541+00 2025-08-18 13:25:00.232551+00 f t TOTAL 0.00 3 5742 \N +221104 2025-08-18 13:25:00.234222+00 2025-08-18 13:25:00.234235+00 f t ADELANTO 0.00 4 5742 \N +221209 2025-08-18 13:41:00.270198+00 2025-08-18 13:41:00.270207+00 f t SUBTOTAL 50000.00 1 5745 \N +221210 2025-08-18 13:41:00.272582+00 2025-08-18 13:41:00.27259+00 f t DESCUENTO 0.00 2 5745 \N +221211 2025-08-18 13:41:00.275295+00 2025-08-18 13:41:00.275308+00 f t TOTAL 50000.00 3 5745 \N +221212 2025-08-18 13:41:00.277267+00 2025-08-18 13:41:00.277276+00 f t ADELANTO 10000.00 4 5745 \N +217169 2025-08-16 23:12:57.309645+00 2025-08-16 23:12:57.309658+00 f t SUBTOTAL 89700.00 1 5654 \N +217170 2025-08-16 23:12:57.31334+00 2025-08-16 23:12:57.313353+00 f t DESCUENTO 0.00 2 5654 \N +217171 2025-08-16 23:12:57.315718+00 2025-08-16 23:12:57.315731+00 f t TOTAL 89700.00 3 5654 \N +217172 2025-08-16 23:12:57.317817+00 2025-08-16 23:12:57.317829+00 f t ADELANTO 46200.00 4 5654 \N +221865 2025-08-18 18:23:31.718244+00 2025-08-18 18:23:31.718253+00 f t SUBTOTAL 0.00 1 5768 \N +221866 2025-08-18 18:23:31.727001+00 2025-08-18 18:23:31.727013+00 f t DESCUENTO 0.00 2 5768 \N +221867 2025-08-18 18:23:31.73005+00 2025-08-18 18:23:31.730062+00 f t TOTAL 0.00 3 5768 \N +221868 2025-08-18 18:23:31.731589+00 2025-08-18 18:23:31.731596+00 f t ADELANTO 0.00 4 5768 \N +257845 2025-09-01 12:14:41.770121+00 2025-09-01 12:14:41.770133+00 f t SUBTOTAL 0.00 1 6631 \N +257846 2025-09-01 12:14:41.772477+00 2025-09-01 12:14:41.772487+00 f t DESCUENTO 0.00 2 6631 \N +257847 2025-09-01 12:14:41.773951+00 2025-09-01 12:14:41.773961+00 f t TOTAL 0.00 3 6631 \N +213605 2025-08-15 15:17:11.76849+00 2025-08-15 15:17:11.768503+00 f t SUBTOTAL 49500.00 1 5568 \N +213606 2025-08-15 15:17:11.770748+00 2025-08-15 15:17:11.770756+00 f t DESCUENTO 0.00 2 5568 \N +213607 2025-08-15 15:17:11.772483+00 2025-08-15 15:17:11.772494+00 f t TOTAL 49500.00 3 5568 \N +213608 2025-08-15 15:17:11.774415+00 2025-08-15 15:17:11.774424+00 f t ADELANTO 11500.00 4 5568 \N +213613 2025-08-15 15:17:16.543069+00 2025-08-15 15:17:16.543087+00 f t SUBTOTAL 0.00 1 5567 \N +213614 2025-08-15 15:17:16.546705+00 2025-08-15 15:17:16.546719+00 f t DESCUENTO 0.00 2 5567 \N +213615 2025-08-15 15:17:16.552144+00 2025-08-15 15:17:16.552158+00 f t TOTAL 0.00 3 5567 \N +213616 2025-08-15 15:17:16.554793+00 2025-08-15 15:17:16.554807+00 f t ADELANTO 0.00 4 5567 \N +213633 2025-08-15 15:35:37.679513+00 2025-08-15 15:35:37.679523+00 f t SUBTOTAL 0.00 1 5569 \N +213634 2025-08-15 15:35:37.682255+00 2025-08-15 15:35:37.682268+00 f t DESCUENTO 0.00 2 5569 \N +213635 2025-08-15 15:35:37.684571+00 2025-08-15 15:35:37.68458+00 f t TOTAL 0.00 3 5569 \N +213636 2025-08-15 15:35:37.687987+00 2025-08-15 15:35:37.687997+00 f t ADELANTO 0.00 4 5569 \N +224809 2025-08-19 13:12:23.891014+00 2025-08-19 13:12:23.891027+00 f t SUBTOTAL 0.00 1 5822 \N +224810 2025-08-19 13:12:23.892951+00 2025-08-19 13:12:23.892963+00 f t DESCUENTO 0.00 2 5822 \N +224811 2025-08-19 13:12:23.894505+00 2025-08-19 13:12:23.894513+00 f t TOTAL 0.00 3 5822 \N +224812 2025-08-19 13:12:23.895863+00 2025-08-19 13:12:23.895873+00 f t ADELANTO 0.00 4 5822 \N +213649 2025-08-15 15:36:52.972233+00 2025-08-15 15:36:52.972242+00 f t SUBTOTAL 0.00 1 5571 \N +213650 2025-08-15 15:36:52.980931+00 2025-08-15 15:36:52.980944+00 f t DESCUENTO 0.00 2 5571 \N +213651 2025-08-15 15:36:52.983497+00 2025-08-15 15:36:52.98351+00 f t TOTAL 0.00 3 5571 \N +213652 2025-08-15 15:36:52.985753+00 2025-08-15 15:36:52.985764+00 f t ADELANTO 0.00 4 5571 \N +213661 2025-08-15 15:37:36.251121+00 2025-08-15 15:37:36.251154+00 f t SUBTOTAL 0.00 1 5570 \N +213662 2025-08-15 15:37:36.253556+00 2025-08-15 15:37:36.253566+00 f t DESCUENTO 0.00 2 5570 \N +213663 2025-08-15 15:37:36.255367+00 2025-08-15 15:37:36.255379+00 f t TOTAL 0.00 3 5570 \N +213664 2025-08-15 15:37:36.258006+00 2025-08-15 15:37:36.258016+00 f t ADELANTO 0.00 4 5570 \N +213669 2025-08-15 15:38:47.858267+00 2025-08-15 15:38:47.85828+00 f t SUBTOTAL 0.00 1 5572 \N +213670 2025-08-15 15:38:47.860574+00 2025-08-15 15:38:47.860585+00 f t DESCUENTO 0.00 2 5572 \N +213671 2025-08-15 15:38:47.862406+00 2025-08-15 15:38:47.862418+00 f t TOTAL 0.00 3 5572 \N +213672 2025-08-15 15:38:47.864222+00 2025-08-15 15:38:47.864233+00 f t ADELANTO 0.00 4 5572 \N +213677 2025-08-15 15:49:38.64675+00 2025-08-15 15:49:38.646762+00 f t SUBTOTAL 0.00 1 5573 \N +213678 2025-08-15 15:49:38.648987+00 2025-08-15 15:49:38.648999+00 f t DESCUENTO 0.00 2 5573 \N +213679 2025-08-15 15:49:38.651193+00 2025-08-15 15:49:38.651205+00 f t TOTAL 0.00 3 5573 \N +213680 2025-08-15 15:49:38.653322+00 2025-08-15 15:49:38.653333+00 f t ADELANTO 0.00 4 5573 \N +213685 2025-08-15 15:55:25.081735+00 2025-08-15 15:55:25.081745+00 f t SUBTOTAL 0.00 1 5574 \N +213686 2025-08-15 15:55:25.083793+00 2025-08-15 15:55:25.083801+00 f t DESCUENTO 0.00 2 5574 \N +213687 2025-08-15 15:55:25.085767+00 2025-08-15 15:55:25.085778+00 f t TOTAL 0.00 3 5574 \N +213688 2025-08-15 15:55:25.087379+00 2025-08-15 15:55:25.087386+00 f t ADELANTO 0.00 4 5574 \N +215477 2025-08-16 05:05:37.380574+00 2025-08-16 05:05:37.380587+00 f t SUBTOTAL 68000.00 1 5616 \N +215478 2025-08-16 05:05:37.384659+00 2025-08-16 05:05:37.384674+00 f t DESCUENTO 0.00 2 5616 \N +215479 2025-08-16 05:05:37.388174+00 2025-08-16 05:05:37.388189+00 f t TOTAL 68000.00 3 5616 \N +215480 2025-08-16 05:05:37.394433+00 2025-08-16 05:05:37.394444+00 f t ADELANTO 13000.00 4 5616 \N +213729 2025-08-15 16:12:32.724433+00 2025-08-15 16:12:32.724445+00 f t SUBTOTAL 79000.00 1 5575 \N +213730 2025-08-15 16:12:32.726352+00 2025-08-15 16:12:32.726362+00 f t DESCUENTO 0.00 2 5575 \N +213731 2025-08-15 16:12:32.727871+00 2025-08-15 16:12:32.72788+00 f t TOTAL 79000.00 3 5575 \N +213732 2025-08-15 16:12:32.730584+00 2025-08-15 16:12:32.730594+00 f t ADELANTO 17500.00 4 5575 \N +226141 2025-08-19 21:43:14.602867+00 2025-08-19 21:43:14.60288+00 f t SUBTOTAL 0.00 1 5858 \N +226142 2025-08-19 21:43:14.606656+00 2025-08-19 21:43:14.606668+00 f t DESCUENTO 0.00 2 5858 \N +226143 2025-08-19 21:43:14.60854+00 2025-08-19 21:43:14.60855+00 f t TOTAL 0.00 3 5858 \N +226144 2025-08-19 21:43:14.610313+00 2025-08-19 21:43:14.610321+00 f t ADELANTO 0.00 4 5858 \N +226273 2025-08-19 23:20:16.580806+00 2025-08-19 23:20:16.580816+00 f t SUBTOTAL 0.00 1 5863 \N +226274 2025-08-19 23:20:16.583897+00 2025-08-19 23:20:16.583905+00 f t DESCUENTO 0.00 2 5863 \N +226275 2025-08-19 23:20:16.585504+00 2025-08-19 23:20:16.585511+00 f t TOTAL 0.00 3 5863 \N +226276 2025-08-19 23:20:16.586825+00 2025-08-19 23:20:16.58683+00 f t ADELANTO 0.00 4 5863 \N +226393 2025-08-19 23:24:43.888751+00 2025-08-19 23:24:43.88876+00 f t SUBTOTAL 0.00 1 5865 \N +226394 2025-08-19 23:24:43.890836+00 2025-08-19 23:24:43.890846+00 f t DESCUENTO 0.00 2 5865 \N +226395 2025-08-19 23:24:43.892486+00 2025-08-19 23:24:43.892494+00 f t TOTAL 0.00 3 5865 \N +226396 2025-08-19 23:24:43.893796+00 2025-08-19 23:24:43.893802+00 f t ADELANTO 0.00 4 5865 \N +226641 2025-08-20 00:12:31.747343+00 2025-08-20 00:12:31.747352+00 f t SUBTOTAL 0.00 1 5871 \N +226642 2025-08-20 00:12:31.749594+00 2025-08-20 00:12:31.749601+00 f t DESCUENTO 0.00 2 5871 \N +226643 2025-08-20 00:12:31.754346+00 2025-08-20 00:12:31.754354+00 f t TOTAL 0.00 3 5871 \N +226644 2025-08-20 00:12:31.755677+00 2025-08-20 00:12:31.755683+00 f t ADELANTO 0.00 4 5871 \N +226761 2025-08-20 00:23:24.575813+00 2025-08-20 00:23:24.575826+00 f t SUBTOTAL 169200.00 1 5874 \N +226762 2025-08-20 00:23:24.577784+00 2025-08-20 00:23:24.577794+00 f t DESCUENTO 0.00 2 5874 \N +226763 2025-08-20 00:23:24.579302+00 2025-08-20 00:23:24.579311+00 f t TOTAL 169200.00 3 5874 \N +226764 2025-08-20 00:23:24.580649+00 2025-08-20 00:23:24.580657+00 f t ADELANTO 116200.00 4 5874 \N +221645 2025-08-18 17:23:10.386029+00 2025-08-18 17:23:10.386043+00 f t SUBTOTAL 49500.00 1 5757 \N +221646 2025-08-18 17:23:10.388522+00 2025-08-18 17:23:10.388534+00 f t DESCUENTO 0.00 2 5757 \N +221647 2025-08-18 17:23:10.390496+00 2025-08-18 17:23:10.39051+00 f t TOTAL 49500.00 3 5757 \N +221648 2025-08-18 17:23:10.39244+00 2025-08-18 17:23:10.392449+00 f t ADELANTO 11500.00 4 5757 \N +213841 2025-08-15 16:24:27.916944+00 2025-08-15 16:24:27.916952+00 f t SUBTOTAL 114200.00 1 5576 \N +213842 2025-08-15 16:24:27.918977+00 2025-08-15 16:24:27.918985+00 f t DESCUENTO 0.00 2 5576 \N +213843 2025-08-15 16:24:27.920696+00 2025-08-15 16:24:27.920706+00 f t TOTAL 114200.00 3 5576 \N +213844 2025-08-15 16:24:27.922629+00 2025-08-15 16:24:27.922637+00 f t ADELANTO 76200.00 4 5576 \N +222381 2025-08-18 21:22:09.018972+00 2025-08-18 21:22:09.018983+00 f t SUBTOTAL 0.00 1 5779 \N +222382 2025-08-18 21:22:09.02153+00 2025-08-18 21:22:09.021542+00 f t DESCUENTO 0.00 2 5779 \N +222383 2025-08-18 21:22:09.023316+00 2025-08-18 21:22:09.023325+00 f t TOTAL 0.00 3 5779 \N +222384 2025-08-18 21:22:09.024976+00 2025-08-18 21:22:09.024985+00 f t ADELANTO 0.00 4 5779 \N +222488 2025-08-18 21:23:28.210732+00 2025-08-18 21:23:28.21074+00 f t ADELANTO 9500.00 4 5777 \N +213889 2025-08-15 16:39:34.748807+00 2025-08-15 16:39:34.748819+00 f t SUBTOTAL 42000.00 1 5577 \N +213890 2025-08-15 16:39:34.751028+00 2025-08-15 16:39:34.751036+00 f t DESCUENTO 0.00 2 5577 \N +213891 2025-08-15 16:39:34.75255+00 2025-08-15 16:39:34.752558+00 f t TOTAL 42000.00 3 5577 \N +213892 2025-08-15 16:39:34.753805+00 2025-08-15 16:39:34.753811+00 f t ADELANTO 9500.00 4 5577 \N +213897 2025-08-15 17:25:34.919261+00 2025-08-15 17:25:34.919276+00 f t SUBTOTAL 0.00 1 5578 \N +213898 2025-08-15 17:25:34.921208+00 2025-08-15 17:25:34.921221+00 f t DESCUENTO 0.00 2 5578 \N +213899 2025-08-15 17:25:34.922796+00 2025-08-15 17:25:34.922807+00 f t TOTAL 0.00 3 5578 \N +213900 2025-08-15 17:25:34.924441+00 2025-08-15 17:25:34.92445+00 f t ADELANTO 0.00 4 5578 \N +229845 2025-08-21 00:27:47.020559+00 2025-08-21 00:27:47.020568+00 f t SUBTOTAL 50000.00 1 5952 \N +229846 2025-08-21 00:27:47.023025+00 2025-08-21 00:27:47.023037+00 f t DESCUENTO 0.00 2 5952 \N +229847 2025-08-21 00:27:47.024717+00 2025-08-21 00:27:47.024728+00 f t TOTAL 50000.00 3 5952 \N +229848 2025-08-21 00:27:47.026328+00 2025-08-21 00:27:47.026335+00 f t ADELANTO 10000.00 4 5952 \N +219529 2025-08-17 21:47:23.358385+00 2025-08-17 21:47:23.358396+00 f t SUBTOTAL 0.00 1 5706 \N +219530 2025-08-17 21:47:23.360644+00 2025-08-17 21:47:23.360652+00 f t DESCUENTO 0.00 2 5706 \N +219531 2025-08-17 21:47:23.36212+00 2025-08-17 21:47:23.362129+00 f t TOTAL 0.00 3 5706 \N +219532 2025-08-17 21:47:23.363715+00 2025-08-17 21:47:23.363724+00 f t ADELANTO 0.00 4 5706 \N +219673 2025-08-17 22:00:28.749155+00 2025-08-17 22:00:28.74917+00 f t SUBTOTAL 0.00 1 5709 \N +219674 2025-08-17 22:00:28.754427+00 2025-08-17 22:00:28.754442+00 f t DESCUENTO 0.00 2 5709 \N +219675 2025-08-17 22:00:28.75788+00 2025-08-17 22:00:28.757893+00 f t TOTAL 0.00 3 5709 \N +219676 2025-08-17 22:00:28.762876+00 2025-08-17 22:00:28.76289+00 f t ADELANTO 0.00 4 5709 \N +219745 2025-08-17 22:21:41.06772+00 2025-08-17 22:21:41.067732+00 f t SUBTOTAL 84000.00 1 5712 \N +219746 2025-08-17 22:21:41.069999+00 2025-08-17 22:21:41.070007+00 f t DESCUENTO 0.00 2 5712 \N +219747 2025-08-17 22:21:41.071609+00 2025-08-17 22:21:41.071622+00 f t TOTAL 84000.00 3 5712 \N +219748 2025-08-17 22:21:41.073166+00 2025-08-17 22:21:41.073177+00 f t ADELANTO 18000.00 4 5712 \N +219869 2025-08-17 23:01:14.036775+00 2025-08-17 23:01:14.036787+00 f t SUBTOTAL 42000.00 1 5714 \N +219870 2025-08-17 23:01:14.039599+00 2025-08-17 23:01:14.039608+00 f t DESCUENTO 0.00 2 5714 \N +219871 2025-08-17 23:01:14.04123+00 2025-08-17 23:01:14.041239+00 f t TOTAL 42000.00 3 5714 \N +219872 2025-08-17 23:01:14.042756+00 2025-08-17 23:01:14.042763+00 f t ADELANTO 9500.00 4 5714 \N +220065 2025-08-18 00:41:27.943289+00 2025-08-18 00:41:27.943301+00 f t SUBTOTAL 75000.00 1 5721 \N +220066 2025-08-18 00:41:27.945555+00 2025-08-18 00:41:27.945565+00 f t DESCUENTO 0.00 2 5721 \N +220067 2025-08-18 00:41:27.947223+00 2025-08-18 00:41:27.947233+00 f t TOTAL 75000.00 3 5721 \N +220068 2025-08-18 00:41:27.948878+00 2025-08-18 00:41:27.948887+00 f t ADELANTO 15000.00 4 5721 \N +220769 2025-08-18 11:47:33.125974+00 2025-08-18 11:47:33.125983+00 f t SUBTOTAL 136500.00 1 5736 \N +213989 2025-08-15 17:29:22.484706+00 2025-08-15 17:29:22.484717+00 f t SUBTOTAL 27500.00 1 5579 \N +213990 2025-08-15 17:29:22.486499+00 2025-08-15 17:29:22.48651+00 f t DESCUENTO 0.00 2 5579 \N +213991 2025-08-15 17:29:22.488229+00 2025-08-15 17:29:22.48824+00 f t TOTAL 27500.00 3 5579 \N +213992 2025-08-15 17:29:22.489581+00 2025-08-15 17:29:22.489589+00 f t ADELANTO 27500.00 4 5579 \N +220770 2025-08-18 11:47:33.12768+00 2025-08-18 11:47:33.127687+00 f t DESCUENTO 0.00 2 5736 \N +220771 2025-08-18 11:47:33.128901+00 2025-08-18 11:47:33.128907+00 f t TOTAL 136500.00 3 5736 \N +220772 2025-08-18 11:47:33.130165+00 2025-08-18 11:47:33.130173+00 f t ADELANTO 35000.00 4 5736 \N +216005 2025-08-16 13:55:51.772199+00 2025-08-16 13:55:51.772212+00 f t SUBTOTAL 0.00 1 5628 \N +216006 2025-08-16 13:55:51.775049+00 2025-08-16 13:55:51.775061+00 f t DESCUENTO 0.00 2 5628 \N +216007 2025-08-16 13:55:51.776898+00 2025-08-16 13:55:51.776906+00 f t TOTAL 0.00 3 5628 \N +216008 2025-08-16 13:55:51.778561+00 2025-08-16 13:55:51.778571+00 f t ADELANTO 0.00 4 5628 \N +221333 2025-08-18 15:11:31.014914+00 2025-08-18 15:11:31.014922+00 f t SUBTOTAL 72000.00 1 5750 \N +221334 2025-08-18 15:11:31.01726+00 2025-08-18 15:11:31.017271+00 f t DESCUENTO 0.00 2 5750 \N +221335 2025-08-18 15:11:31.019598+00 2025-08-18 15:11:31.01961+00 f t TOTAL 72000.00 3 5750 \N +221336 2025-08-18 15:11:31.021574+00 2025-08-18 15:11:31.021584+00 f t ADELANTO 19000.00 4 5750 \N +214053 2025-08-15 17:35:07.01795+00 2025-08-15 17:35:07.017965+00 f t SUBTOTAL 145700.00 1 5580 \N +214054 2025-08-15 17:35:07.023242+00 2025-08-15 17:35:07.023257+00 f t DESCUENTO 0.00 2 5580 \N +214055 2025-08-15 17:35:07.032061+00 2025-08-15 17:35:07.032075+00 f t TOTAL 145700.00 3 5580 \N +214056 2025-08-15 17:35:07.036241+00 2025-08-15 17:35:07.036254+00 f t ADELANTO 67700.00 4 5580 \N +221593 2025-08-18 16:37:12.499234+00 2025-08-18 16:37:12.499244+00 f t SUBTOTAL 42000.00 1 5754 \N +221594 2025-08-18 16:37:12.501319+00 2025-08-18 16:37:12.501327+00 f t DESCUENTO 0.00 2 5754 \N +221595 2025-08-18 16:37:12.50447+00 2025-08-18 16:37:12.504479+00 f t TOTAL 42000.00 3 5754 \N +221596 2025-08-18 16:37:12.505983+00 2025-08-18 16:37:12.50599+00 f t ADELANTO 9500.00 4 5754 \N +221653 2025-08-18 17:23:52.256588+00 2025-08-18 17:23:52.2566+00 f t SUBTOTAL 0.00 1 5758 \N +221654 2025-08-18 17:23:52.258565+00 2025-08-18 17:23:52.258575+00 f t DESCUENTO 0.00 2 5758 \N +221655 2025-08-18 17:23:52.260449+00 2025-08-18 17:23:52.260459+00 f t TOTAL 0.00 3 5758 \N +221656 2025-08-18 17:23:52.262235+00 2025-08-18 17:23:52.262247+00 f t ADELANTO 0.00 4 5758 \N +221769 2025-08-18 17:55:31.500443+00 2025-08-18 17:55:31.500456+00 f t SUBTOTAL 0.00 1 5764 \N +221770 2025-08-18 17:55:31.503297+00 2025-08-18 17:55:31.503307+00 f t DESCUENTO 0.00 2 5764 \N +221771 2025-08-18 17:55:31.504946+00 2025-08-18 17:55:31.504955+00 f t TOTAL 0.00 3 5764 \N +221772 2025-08-18 17:55:31.506395+00 2025-08-18 17:55:31.506403+00 f t ADELANTO 0.00 4 5764 \N +222101 2025-08-18 19:31:26.283161+00 2025-08-18 19:31:26.283175+00 f t SUBTOTAL 49500.00 1 5770 \N +222102 2025-08-18 19:31:26.285474+00 2025-08-18 19:31:26.285486+00 f t DESCUENTO 0.00 2 5770 \N +222103 2025-08-18 19:31:26.287276+00 2025-08-18 19:31:26.287286+00 f t TOTAL 49500.00 3 5770 \N +222104 2025-08-18 19:31:26.288947+00 2025-08-18 19:31:26.288957+00 f t ADELANTO 11500.00 4 5770 \N +214117 2025-08-15 17:46:11.532415+00 2025-08-15 17:46:11.532425+00 f t SUBTOTAL 0.00 1 5581 \N +214118 2025-08-15 17:46:11.534926+00 2025-08-15 17:46:11.534938+00 f t DESCUENTO 0.00 2 5581 \N +214119 2025-08-15 17:46:11.536735+00 2025-08-15 17:46:11.536746+00 f t TOTAL 0.00 3 5581 \N +214120 2025-08-15 17:46:11.540483+00 2025-08-15 17:46:11.540493+00 f t ADELANTO 0.00 4 5581 \N +222493 2025-08-18 21:48:22.250751+00 2025-08-18 21:48:22.25076+00 f t SUBTOTAL 0.00 1 5780 \N +222494 2025-08-18 21:48:22.252103+00 2025-08-18 21:48:22.252109+00 f t DESCUENTO 0.00 2 5780 \N +222495 2025-08-18 21:48:22.253134+00 2025-08-18 21:48:22.253142+00 f t TOTAL 0.00 3 5780 \N +222496 2025-08-18 21:48:22.254279+00 2025-08-18 21:48:22.254285+00 f t ADELANTO 0.00 4 5780 \N +217541 2025-08-17 00:32:24.460801+00 2025-08-17 00:32:24.46081+00 f t SUBTOTAL 0.00 1 5659 \N +217542 2025-08-17 00:32:24.462741+00 2025-08-17 00:32:24.462749+00 f t DESCUENTO 0.00 2 5659 \N +217543 2025-08-17 00:32:24.464142+00 2025-08-17 00:32:24.464149+00 f t TOTAL 0.00 3 5659 \N +217544 2025-08-17 00:32:24.465271+00 2025-08-17 00:32:24.465277+00 f t ADELANTO 0.00 4 5659 \N +235333 2025-08-23 16:11:57.695501+00 2025-08-23 16:11:57.695513+00 f t SUBTOTAL 0.00 1 6087 \N +235334 2025-08-23 16:11:57.698243+00 2025-08-23 16:11:57.698254+00 f t DESCUENTO 0.00 2 6087 \N +235335 2025-08-23 16:11:57.699947+00 2025-08-23 16:11:57.699959+00 f t TOTAL 0.00 3 6087 \N +235336 2025-08-23 16:11:57.701565+00 2025-08-23 16:11:57.701576+00 f t ADELANTO 0.00 4 6087 \N +224725 2025-08-19 12:38:59.810914+00 2025-08-19 12:38:59.810925+00 f t SUBTOTAL 42000.00 1 5818 \N +224726 2025-08-19 12:38:59.813209+00 2025-08-19 12:38:59.81322+00 f t DESCUENTO 0.00 2 5818 \N +224727 2025-08-19 12:38:59.814674+00 2025-08-19 12:38:59.814684+00 f t TOTAL 42000.00 3 5818 \N +224728 2025-08-19 12:38:59.81668+00 2025-08-19 12:38:59.81669+00 f t ADELANTO 9500.00 4 5818 \N +217589 2025-08-17 00:33:58.003696+00 2025-08-17 00:33:58.003707+00 f t SUBTOTAL 68000.00 1 5660 \N +217590 2025-08-17 00:33:58.005783+00 2025-08-17 00:33:58.005791+00 f t DESCUENTO 0.00 2 5660 \N +217591 2025-08-17 00:33:58.007192+00 2025-08-17 00:33:58.0072+00 f t TOTAL 68000.00 3 5660 \N +217592 2025-08-17 00:33:58.008738+00 2025-08-17 00:33:58.008746+00 f t ADELANTO 13000.00 4 5660 \N +225229 2025-08-19 16:08:06.405905+00 2025-08-19 16:08:06.405916+00 f t SUBTOTAL 0.00 1 5835 \N +225230 2025-08-19 16:08:06.408801+00 2025-08-19 16:08:06.408812+00 f t DESCUENTO 0.00 2 5835 \N +225231 2025-08-19 16:08:06.410811+00 2025-08-19 16:08:06.410822+00 f t TOTAL 0.00 3 5835 \N +225232 2025-08-19 16:08:06.412428+00 2025-08-19 16:08:06.412438+00 f t ADELANTO 0.00 4 5835 \N +217625 2025-08-17 00:58:00.413324+00 2025-08-17 00:58:00.413337+00 f t SUBTOTAL 0.00 1 5661 \N +217626 2025-08-17 00:58:00.416141+00 2025-08-17 00:58:00.416153+00 f t DESCUENTO 0.00 2 5661 \N +217627 2025-08-17 00:58:00.418239+00 2025-08-17 00:58:00.418251+00 f t TOTAL 0.00 3 5661 \N +217628 2025-08-17 00:58:00.420447+00 2025-08-17 00:58:00.420459+00 f t ADELANTO 0.00 4 5661 \N +225697 2025-08-19 18:46:30.919318+00 2025-08-19 18:46:30.919328+00 f t SUBTOTAL 42000.00 1 5847 \N +225698 2025-08-19 18:46:30.921557+00 2025-08-19 18:46:30.921566+00 f t DESCUENTO 0.00 2 5847 \N +225699 2025-08-19 18:46:30.923195+00 2025-08-19 18:46:30.923207+00 f t TOTAL 42000.00 3 5847 \N +225700 2025-08-19 18:46:30.924659+00 2025-08-19 18:46:30.924666+00 f t ADELANTO 9500.00 4 5847 \N +226149 2025-08-19 21:49:47.259846+00 2025-08-19 21:49:47.259854+00 f t SUBTOTAL 0.00 1 5859 \N +226150 2025-08-19 21:49:47.26124+00 2025-08-19 21:49:47.261246+00 f t DESCUENTO 0.00 2 5859 \N +226151 2025-08-19 21:49:47.262511+00 2025-08-19 21:49:47.262518+00 f t TOTAL 0.00 3 5859 \N +217673 2025-08-17 01:04:17.005628+00 2025-08-17 01:04:17.00564+00 f t SUBTOTAL 0.00 1 5662 \N +217674 2025-08-17 01:04:17.008499+00 2025-08-17 01:04:17.008511+00 f t DESCUENTO 0.00 2 5662 \N +217675 2025-08-17 01:04:17.010481+00 2025-08-17 01:04:17.010491+00 f t TOTAL 0.00 3 5662 \N +217676 2025-08-17 01:04:17.012268+00 2025-08-17 01:04:17.012276+00 f t ADELANTO 0.00 4 5662 \N +226152 2025-08-19 21:49:47.263509+00 2025-08-19 21:49:47.263515+00 f t ADELANTO 0.00 4 5859 \N +226213 2025-08-19 22:07:35.767874+00 2025-08-19 22:07:35.767888+00 f t SUBTOTAL 0.00 1 5861 \N +226214 2025-08-19 22:07:35.770481+00 2025-08-19 22:07:35.77049+00 f t DESCUENTO 0.00 2 5861 \N +226215 2025-08-19 22:07:35.772029+00 2025-08-19 22:07:35.772037+00 f t TOTAL 0.00 3 5861 \N +217681 2025-08-17 01:04:39.615604+00 2025-08-17 01:04:39.615614+00 f t SUBTOTAL 42000.00 1 5663 \N +217682 2025-08-17 01:04:39.617524+00 2025-08-17 01:04:39.617535+00 f t DESCUENTO 0.00 2 5663 \N +217683 2025-08-17 01:04:39.618987+00 2025-08-17 01:04:39.618996+00 f t TOTAL 42000.00 3 5663 \N +217684 2025-08-17 01:04:39.620351+00 2025-08-17 01:04:39.620369+00 f t ADELANTO 9500.00 4 5663 \N +226216 2025-08-19 22:07:35.773487+00 2025-08-19 22:07:35.773497+00 f t ADELANTO 0.00 4 5861 \N +226281 2025-08-19 23:20:23.603717+00 2025-08-19 23:20:23.603726+00 f t SUBTOTAL 0.00 1 5864 \N +226282 2025-08-19 23:20:23.605366+00 2025-08-19 23:20:23.605374+00 f t DESCUENTO 0.00 2 5864 \N +226283 2025-08-19 23:20:23.606841+00 2025-08-19 23:20:23.606848+00 f t TOTAL 0.00 3 5864 \N +226284 2025-08-19 23:20:23.607938+00 2025-08-19 23:20:23.607944+00 f t ADELANTO 0.00 4 5864 \N +217717 2025-08-17 01:06:37.500926+00 2025-08-17 01:06:37.500934+00 f t SUBTOTAL 64500.00 1 5664 \N +217718 2025-08-17 01:06:37.502646+00 2025-08-17 01:06:37.502653+00 f t DESCUENTO 0.00 2 5664 \N +217719 2025-08-17 01:06:37.503962+00 2025-08-17 01:06:37.503968+00 f t TOTAL 64500.00 3 5664 \N +217720 2025-08-17 01:06:37.505313+00 2025-08-17 01:06:37.505319+00 f t ADELANTO 17000.00 4 5664 \N +217741 2025-08-17 01:44:49.656453+00 2025-08-17 01:44:49.656465+00 f t SUBTOTAL 0.00 1 5665 \N +217742 2025-08-17 01:44:49.658376+00 2025-08-17 01:44:49.658384+00 f t DESCUENTO 0.00 2 5665 \N +217743 2025-08-17 01:44:49.659644+00 2025-08-17 01:44:49.659651+00 f t TOTAL 0.00 3 5665 \N +217744 2025-08-17 01:44:49.660819+00 2025-08-17 01:44:49.660825+00 f t ADELANTO 0.00 4 5665 \N +226877 2025-08-20 00:48:01.956309+00 2025-08-20 00:48:01.956324+00 f t SUBTOTAL 50000.00 1 5877 \N +226878 2025-08-20 00:48:01.960662+00 2025-08-20 00:48:01.960675+00 f t DESCUENTO 0.00 2 5877 \N +226879 2025-08-20 00:48:01.963693+00 2025-08-20 00:48:01.963706+00 f t TOTAL 50000.00 3 5877 \N +226880 2025-08-20 00:48:01.967634+00 2025-08-20 00:48:01.967648+00 f t ADELANTO 10000.00 4 5877 \N +221601 2025-08-18 16:51:59.790779+00 2025-08-18 16:51:59.790793+00 f t SUBTOTAL 0.00 1 5756 \N +221602 2025-08-18 16:51:59.792532+00 2025-08-18 16:51:59.792541+00 f t DESCUENTO 0.00 2 5756 \N +221603 2025-08-18 16:51:59.794011+00 2025-08-18 16:51:59.794019+00 f t TOTAL 0.00 3 5756 \N +221604 2025-08-18 16:51:59.795399+00 2025-08-18 16:51:59.795407+00 f t ADELANTO 0.00 4 5756 \N +227165 2025-08-20 04:03:17.334204+00 2025-08-20 04:03:17.334212+00 f t SUBTOTAL 50000.00 1 5883 \N +227166 2025-08-20 04:03:17.336314+00 2025-08-20 04:03:17.336321+00 f t DESCUENTO 0.00 2 5883 \N +227167 2025-08-20 04:03:17.337966+00 2025-08-20 04:03:17.337976+00 f t TOTAL 50000.00 3 5883 \N +227168 2025-08-20 04:03:17.340563+00 2025-08-20 04:03:17.340573+00 f t ADELANTO 10000.00 4 5883 \N +217785 2025-08-17 02:00:58.836103+00 2025-08-17 02:00:58.836112+00 f t SUBTOTAL 49700.00 1 5666 \N +217786 2025-08-17 02:00:58.8383+00 2025-08-17 02:00:58.838308+00 f t DESCUENTO 0.00 2 5666 \N +217787 2025-08-17 02:00:58.840012+00 2025-08-17 02:00:58.840019+00 f t TOTAL 49700.00 3 5666 \N +217788 2025-08-17 02:00:58.841527+00 2025-08-17 02:00:58.841537+00 f t ADELANTO 11700.00 4 5666 \N +217793 2025-08-17 02:25:21.971344+00 2025-08-17 02:25:21.971353+00 f t SUBTOTAL 0.00 1 5667 \N +217794 2025-08-17 02:25:21.972962+00 2025-08-17 02:25:21.97297+00 f t DESCUENTO 0.00 2 5667 \N +217795 2025-08-17 02:25:21.974333+00 2025-08-17 02:25:21.97434+00 f t TOTAL 0.00 3 5667 \N +217796 2025-08-17 02:25:21.975599+00 2025-08-17 02:25:21.975605+00 f t ADELANTO 0.00 4 5667 \N +221777 2025-08-18 17:58:12.894866+00 2025-08-18 17:58:12.894881+00 f t SUBTOTAL 0.00 1 5765 \N +221778 2025-08-18 17:58:12.896783+00 2025-08-18 17:58:12.896795+00 f t DESCUENTO 0.00 2 5765 \N +221779 2025-08-18 17:58:12.89869+00 2025-08-18 17:58:12.898703+00 f t TOTAL 0.00 3 5765 \N +221780 2025-08-18 17:58:12.900333+00 2025-08-18 17:58:12.900344+00 f t ADELANTO 0.00 4 5765 \N +217813 2025-08-17 03:16:11.505335+00 2025-08-17 03:16:11.505349+00 f t SUBTOTAL 0.00 1 5668 \N +217814 2025-08-17 03:16:11.512383+00 2025-08-17 03:16:11.512397+00 f t DESCUENTO 0.00 2 5668 \N +217815 2025-08-17 03:16:11.515324+00 2025-08-17 03:16:11.515337+00 f t TOTAL 0.00 3 5668 \N +217816 2025-08-17 03:16:11.517798+00 2025-08-17 03:16:11.517807+00 f t ADELANTO 0.00 4 5668 \N +227501 2025-08-20 11:53:59.628489+00 2025-08-20 11:53:59.628502+00 f t SUBTOTAL 0.00 1 5889 \N +252117 2025-08-30 15:48:49.200292+00 2025-08-30 15:48:49.200301+00 f t SUBTOTAL 27500.00 1 6502 \N +252118 2025-08-30 15:48:49.202249+00 2025-08-30 15:48:49.202257+00 f t DESCUENTO 0.00 2 6502 \N +252119 2025-08-30 15:48:49.203632+00 2025-08-30 15:48:49.203639+00 f t TOTAL 27500.00 3 6502 \N +252120 2025-08-30 15:48:49.205183+00 2025-08-30 15:48:49.20519+00 f t ADELANTO 27500.00 4 6502 \N +217857 2025-08-17 03:26:52.988305+00 2025-08-17 03:26:52.988315+00 f t SUBTOTAL 0.00 1 5669 \N +217858 2025-08-17 03:26:52.991505+00 2025-08-17 03:26:52.991516+00 f t DESCUENTO 0.00 2 5669 \N +217859 2025-08-17 03:26:52.993205+00 2025-08-17 03:26:52.993214+00 f t TOTAL 0.00 3 5669 \N +217860 2025-08-17 03:26:52.994836+00 2025-08-17 03:26:52.994844+00 f t ADELANTO 0.00 4 5669 \N +241105 2025-08-25 23:56:17.735165+00 2025-08-25 23:56:17.735179+00 f t SUBTOTAL 0.00 1 6226 \N +241106 2025-08-25 23:56:17.739527+00 2025-08-25 23:56:17.73954+00 f t DESCUENTO 0.00 2 6226 \N +224897 2025-08-19 13:59:26.443111+00 2025-08-19 13:59:26.443124+00 f t SUBTOTAL 95700.00 1 5826 \N +224898 2025-08-19 13:59:26.445491+00 2025-08-19 13:59:26.4455+00 f t DESCUENTO 0.00 2 5826 \N +224899 2025-08-19 13:59:26.447343+00 2025-08-19 13:59:26.447353+00 f t TOTAL 95700.00 3 5826 \N +224900 2025-08-19 13:59:26.448786+00 2025-08-19 13:59:26.448794+00 f t ADELANTO 57700.00 4 5826 \N +225033 2025-08-19 14:18:42.931558+00 2025-08-19 14:18:42.931567+00 f t SUBTOTAL 50000.00 1 5830 \N +225034 2025-08-19 14:18:42.93367+00 2025-08-19 14:18:42.933684+00 f t DESCUENTO 0.00 2 5830 \N +225035 2025-08-19 14:18:42.935209+00 2025-08-19 14:18:42.935216+00 f t TOTAL 50000.00 3 5830 \N +225036 2025-08-19 14:18:42.936461+00 2025-08-19 14:18:42.936468+00 f t ADELANTO 10000.00 4 5830 \N +225101 2025-08-19 15:02:24.090842+00 2025-08-19 15:02:24.090856+00 f t SUBTOTAL 0.00 1 5832 \N +225102 2025-08-19 15:02:24.093787+00 2025-08-19 15:02:24.093798+00 f t DESCUENTO 0.00 2 5832 \N +225103 2025-08-19 15:02:24.095543+00 2025-08-19 15:02:24.095554+00 f t TOTAL 0.00 3 5832 \N +225104 2025-08-19 15:02:24.097278+00 2025-08-19 15:02:24.097289+00 f t ADELANTO 0.00 4 5832 \N +225165 2025-08-19 15:15:19.426922+00 2025-08-19 15:15:19.426931+00 f t SUBTOTAL 64500.00 1 5833 \N +225166 2025-08-19 15:15:19.428747+00 2025-08-19 15:15:19.428755+00 f t DESCUENTO 0.00 2 5833 \N +225167 2025-08-19 15:15:19.430099+00 2025-08-19 15:15:19.430107+00 f t TOTAL 64500.00 3 5833 \N +225168 2025-08-19 15:15:19.431414+00 2025-08-19 15:15:19.431421+00 f t ADELANTO 17000.00 4 5833 \N +217897 2025-08-17 03:30:10.798307+00 2025-08-17 03:30:10.798321+00 f t SUBTOTAL 50000.00 1 5670 \N +217898 2025-08-17 03:30:10.801819+00 2025-08-17 03:30:10.80183+00 f t DESCUENTO 0.00 2 5670 \N +217899 2025-08-17 03:30:10.807+00 2025-08-17 03:30:10.807014+00 f t TOTAL 50000.00 3 5670 \N +217900 2025-08-17 03:30:10.81169+00 2025-08-17 03:30:10.811704+00 f t ADELANTO 10000.00 4 5670 \N +217925 2025-08-17 04:10:46.724973+00 2025-08-17 04:10:46.724988+00 f t SUBTOTAL 50000.00 1 5671 \N +217926 2025-08-17 04:10:46.727513+00 2025-08-17 04:10:46.727525+00 f t DESCUENTO 0.00 2 5671 \N +217927 2025-08-17 04:10:46.733725+00 2025-08-17 04:10:46.733738+00 f t TOTAL 50000.00 3 5671 \N +217928 2025-08-17 04:10:46.736144+00 2025-08-17 04:10:46.736157+00 f t ADELANTO 10000.00 4 5671 \N +225565 2025-08-19 18:19:03.53708+00 2025-08-19 18:19:03.537095+00 f t SUBTOTAL 50000.00 1 5843 \N +225566 2025-08-19 18:19:03.540642+00 2025-08-19 18:19:03.540656+00 f t DESCUENTO 0.00 2 5843 \N +225567 2025-08-19 18:19:03.54902+00 2025-08-19 18:19:03.549034+00 f t TOTAL 50000.00 3 5843 \N +225568 2025-08-19 18:19:03.55221+00 2025-08-19 18:19:03.552223+00 f t ADELANTO 10000.00 4 5843 \N +225897 2025-08-19 20:14:50.863092+00 2025-08-19 20:14:50.8631+00 f t SUBTOTAL 42000.00 1 5852 \N +225898 2025-08-19 20:14:50.864897+00 2025-08-19 20:14:50.864904+00 f t DESCUENTO 0.00 2 5852 \N +225899 2025-08-19 20:14:50.866271+00 2025-08-19 20:14:50.866277+00 f t TOTAL 42000.00 3 5852 \N +225900 2025-08-19 20:14:50.867607+00 2025-08-19 20:14:50.867617+00 f t ADELANTO 9500.00 4 5852 \N +217973 2025-08-17 04:59:17.896708+00 2025-08-17 04:59:17.896717+00 f t SUBTOTAL 72000.00 1 5672 \N +217974 2025-08-17 04:59:17.898588+00 2025-08-17 04:59:17.898599+00 f t DESCUENTO 0.00 2 5672 \N +217975 2025-08-17 04:59:17.900044+00 2025-08-17 04:59:17.900051+00 f t TOTAL 72000.00 3 5672 \N +217976 2025-08-17 04:59:17.901448+00 2025-08-17 04:59:17.901456+00 f t ADELANTO 19000.00 4 5672 \N +226157 2025-08-19 21:56:35.010786+00 2025-08-19 21:56:35.010799+00 f t SUBTOTAL 0.00 1 5860 \N +226158 2025-08-19 21:56:35.012706+00 2025-08-19 21:56:35.012716+00 f t DESCUENTO 0.00 2 5860 \N +226159 2025-08-19 21:56:35.014133+00 2025-08-19 21:56:35.014143+00 f t TOTAL 0.00 3 5860 \N +226160 2025-08-19 21:56:35.015371+00 2025-08-19 21:56:35.015379+00 f t ADELANTO 0.00 4 5860 \N +226221 2025-08-19 22:28:23.013273+00 2025-08-19 22:28:23.013283+00 f t SUBTOTAL 0.00 1 5862 \N +226222 2025-08-19 22:28:23.014911+00 2025-08-19 22:28:23.014922+00 f t DESCUENTO 0.00 2 5862 \N +226223 2025-08-19 22:28:23.016609+00 2025-08-19 22:28:23.016619+00 f t TOTAL 0.00 3 5862 \N +226224 2025-08-19 22:28:23.0183+00 2025-08-19 22:28:23.018306+00 f t ADELANTO 0.00 4 5862 \N +231481 2025-08-21 17:41:46.316631+00 2025-08-21 17:41:46.31664+00 f t SUBTOTAL 0.00 1 5989 \N +231482 2025-08-21 17:41:46.319212+00 2025-08-21 17:41:46.31922+00 f t DESCUENTO 0.00 2 5989 \N +231483 2025-08-21 17:41:46.320928+00 2025-08-21 17:41:46.320937+00 f t TOTAL 0.00 3 5989 \N +231484 2025-08-21 17:41:46.322521+00 2025-08-21 17:41:46.32253+00 f t ADELANTO 0.00 4 5989 \N +218049 2025-08-17 05:09:07.822324+00 2025-08-17 05:09:07.822337+00 f t SUBTOTAL 76000.00 1 5673 \N +218050 2025-08-17 05:09:07.826579+00 2025-08-17 05:09:07.826592+00 f t DESCUENTO 0.00 2 5673 \N +218051 2025-08-17 05:09:07.831881+00 2025-08-17 05:09:07.831892+00 f t TOTAL 76000.00 3 5673 \N +218052 2025-08-17 05:09:07.834463+00 2025-08-17 05:09:07.834477+00 f t ADELANTO 11000.00 4 5673 \N +218057 2025-08-17 05:09:39.953519+00 2025-08-17 05:09:39.953531+00 f t SUBTOTAL 0.00 1 5674 \N +218058 2025-08-17 05:09:39.955959+00 2025-08-17 05:09:39.955968+00 f t DESCUENTO 0.00 2 5674 \N +218059 2025-08-17 05:09:39.957632+00 2025-08-17 05:09:39.957642+00 f t TOTAL 0.00 3 5674 \N +218060 2025-08-17 05:09:39.959408+00 2025-08-17 05:09:39.959417+00 f t ADELANTO 0.00 4 5674 \N +232193 2025-08-21 21:14:46.836638+00 2025-08-21 21:14:46.836646+00 f t SUBTOTAL 50000.00 1 5998 \N +232194 2025-08-21 21:14:46.83835+00 2025-08-21 21:14:46.838357+00 f t DESCUENTO 0.00 2 5998 \N +232195 2025-08-21 21:14:46.839741+00 2025-08-21 21:14:46.839747+00 f t TOTAL 50000.00 3 5998 \N +232196 2025-08-21 21:14:46.840894+00 2025-08-21 21:14:46.8409+00 f t ADELANTO 10000.00 4 5998 \N +218085 2025-08-17 05:34:30.045934+00 2025-08-17 05:34:30.045944+00 f t SUBTOTAL 50000.00 1 5675 \N +218086 2025-08-17 05:34:30.048381+00 2025-08-17 05:34:30.04839+00 f t DESCUENTO 0.00 2 5675 \N +218087 2025-08-17 05:34:30.050131+00 2025-08-17 05:34:30.050141+00 f t TOTAL 50000.00 3 5675 \N +218088 2025-08-17 05:34:30.051749+00 2025-08-17 05:34:30.051757+00 f t ADELANTO 10000.00 4 5675 \N +227502 2025-08-20 11:53:59.630208+00 2025-08-20 11:53:59.630218+00 f t DESCUENTO 0.00 2 5889 \N +227503 2025-08-20 11:53:59.631986+00 2025-08-20 11:53:59.631997+00 f t TOTAL 0.00 3 5889 \N +227504 2025-08-20 11:53:59.633551+00 2025-08-20 11:53:59.633561+00 f t ADELANTO 0.00 4 5889 \N +218113 2025-08-17 06:01:55.831821+00 2025-08-17 06:01:55.831835+00 f t SUBTOTAL 64500.00 1 5676 \N +218114 2025-08-17 06:01:55.83529+00 2025-08-17 06:01:55.835303+00 f t DESCUENTO 0.00 2 5676 \N +218115 2025-08-17 06:01:55.837629+00 2025-08-17 06:01:55.837642+00 f t TOTAL 64500.00 3 5676 \N +218116 2025-08-17 06:01:55.83991+00 2025-08-17 06:01:55.839924+00 f t ADELANTO 17000.00 4 5676 \N +235053 2025-08-23 14:23:05.190746+00 2025-08-23 14:23:05.190759+00 f t SUBTOTAL 0.00 1 6084 \N +235054 2025-08-23 14:23:05.196543+00 2025-08-23 14:23:05.196556+00 f t DESCUENTO 0.00 2 6084 \N +218141 2025-08-17 06:36:24.410153+00 2025-08-17 06:36:24.410164+00 f t SUBTOTAL 27500.00 1 5677 \N +218142 2025-08-17 06:36:24.412488+00 2025-08-17 06:36:24.412499+00 f t DESCUENTO 0.00 2 5677 \N +218143 2025-08-17 06:36:24.414201+00 2025-08-17 06:36:24.414209+00 f t TOTAL 27500.00 3 5677 \N +218144 2025-08-17 06:36:24.415747+00 2025-08-17 06:36:24.415754+00 f t ADELANTO 27500.00 4 5677 \N +219465 2025-08-17 21:02:45.344745+00 2025-08-17 21:02:45.344754+00 f t SUBTOTAL 95700.00 1 5704 \N +219466 2025-08-17 21:02:45.346918+00 2025-08-17 21:02:45.346926+00 f t DESCUENTO 0.00 2 5704 \N +219467 2025-08-17 21:02:45.348658+00 2025-08-17 21:02:45.348667+00 f t TOTAL 95700.00 3 5704 \N +219468 2025-08-17 21:02:45.351166+00 2025-08-17 21:02:45.351175+00 f t ADELANTO 57700.00 4 5704 \N +229937 2025-08-21 01:00:28.754264+00 2025-08-21 01:00:28.754278+00 f t SUBTOTAL 0.00 1 5954 \N +229938 2025-08-21 01:00:28.757448+00 2025-08-21 01:00:28.757461+00 f t DESCUENTO 0.00 2 5954 \N +229939 2025-08-21 01:00:28.759675+00 2025-08-21 01:00:28.759688+00 f t TOTAL 0.00 3 5954 \N +229940 2025-08-21 01:00:28.761881+00 2025-08-21 01:00:28.761889+00 f t ADELANTO 0.00 4 5954 \N +224825 2025-08-19 13:21:29.138447+00 2025-08-19 13:21:29.138462+00 f t SUBTOTAL 0.00 1 5823 \N +224826 2025-08-19 13:21:29.141257+00 2025-08-19 13:21:29.141268+00 f t DESCUENTO 0.00 2 5823 \N +224827 2025-08-19 13:21:29.143468+00 2025-08-19 13:21:29.143479+00 f t TOTAL 0.00 3 5823 \N +224828 2025-08-19 13:21:29.148503+00 2025-08-19 13:21:29.148517+00 f t ADELANTO 0.00 4 5823 \N +218169 2025-08-17 06:49:23.692928+00 2025-08-17 06:49:23.692937+00 f t SUBTOTAL 50000.00 1 5678 \N +218170 2025-08-17 06:49:23.694955+00 2025-08-17 06:49:23.694965+00 f t DESCUENTO 0.00 2 5678 \N +218171 2025-08-17 06:49:23.69686+00 2025-08-17 06:49:23.696867+00 f t TOTAL 50000.00 3 5678 \N +218172 2025-08-17 06:49:23.699002+00 2025-08-17 06:49:23.699014+00 f t ADELANTO 10000.00 4 5678 \N +224905 2025-08-19 14:00:50.148425+00 2025-08-19 14:00:50.148438+00 f t SUBTOTAL 0.00 1 5827 \N +224906 2025-08-19 14:00:50.150523+00 2025-08-19 14:00:50.150534+00 f t DESCUENTO 0.00 2 5827 \N +224907 2025-08-19 14:00:50.152295+00 2025-08-19 14:00:50.152306+00 f t TOTAL 0.00 3 5827 \N +224908 2025-08-19 14:00:50.153778+00 2025-08-19 14:00:50.153789+00 f t ADELANTO 0.00 4 5827 \N +220009 2025-08-17 23:45:57.76007+00 2025-08-17 23:45:57.76008+00 f t SUBTOTAL 27500.00 1 5718 \N +220010 2025-08-17 23:45:57.761832+00 2025-08-17 23:45:57.761838+00 f t DESCUENTO 0.00 2 5718 \N +220011 2025-08-17 23:45:57.763115+00 2025-08-17 23:45:57.763122+00 f t TOTAL 27500.00 3 5718 \N +220012 2025-08-17 23:45:57.764388+00 2025-08-17 23:45:57.764394+00 f t ADELANTO 27500.00 4 5718 \N +230313 2025-08-21 01:56:51.30876+00 2025-08-21 01:56:51.308771+00 f t SUBTOTAL 0.00 1 5960 \N +230314 2025-08-21 01:56:51.311267+00 2025-08-21 01:56:51.311286+00 f t DESCUENTO 0.00 2 5960 \N +230315 2025-08-21 01:56:51.312763+00 2025-08-21 01:56:51.31277+00 f t TOTAL 0.00 3 5960 \N +230316 2025-08-21 01:56:51.314029+00 2025-08-21 01:56:51.314034+00 f t ADELANTO 0.00 4 5960 \N +220549 2025-08-18 04:19:08.293802+00 2025-08-18 04:19:08.293812+00 f t SUBTOTAL 42000.00 1 5730 \N +220550 2025-08-18 04:19:08.296084+00 2025-08-18 04:19:08.296096+00 f t DESCUENTO 0.00 2 5730 \N +220551 2025-08-18 04:19:08.297953+00 2025-08-18 04:19:08.297963+00 f t TOTAL 42000.00 3 5730 \N +220552 2025-08-18 04:19:08.299733+00 2025-08-18 04:19:08.299741+00 f t ADELANTO 9500.00 4 5730 \N +230805 2025-08-21 13:43:28.042206+00 2025-08-21 13:43:28.042214+00 f t SUBTOTAL 42000.00 1 5974 \N +230806 2025-08-21 13:43:28.044115+00 2025-08-21 13:43:28.044126+00 f t DESCUENTO 0.00 2 5974 \N +230807 2025-08-21 13:43:28.045485+00 2025-08-21 13:43:28.045491+00 f t TOTAL 42000.00 3 5974 \N +230808 2025-08-21 13:43:28.046706+00 2025-08-21 13:43:28.046711+00 f t ADELANTO 9500.00 4 5974 \N +220669 2025-08-18 11:36:52.485772+00 2025-08-18 11:36:52.485783+00 f t SUBTOTAL 42000.00 1 5734 \N +220670 2025-08-18 11:36:52.487408+00 2025-08-18 11:36:52.487417+00 f t DESCUENTO 0.00 2 5734 \N +220671 2025-08-18 11:36:52.488727+00 2025-08-18 11:36:52.488736+00 f t TOTAL 42000.00 3 5734 \N +220672 2025-08-18 11:36:52.489832+00 2025-08-18 11:36:52.489838+00 f t ADELANTO 9500.00 4 5734 \N +225573 2025-08-19 18:19:06.059091+00 2025-08-19 18:19:06.059106+00 f t SUBTOTAL 0.00 1 5844 \N +225574 2025-08-19 18:19:06.06187+00 2025-08-19 18:19:06.061883+00 f t DESCUENTO 0.00 2 5844 \N +225575 2025-08-19 18:19:06.064305+00 2025-08-19 18:19:06.06432+00 f t TOTAL 0.00 3 5844 \N +225576 2025-08-19 18:19:06.066554+00 2025-08-19 18:19:06.066567+00 f t ADELANTO 0.00 4 5844 \N +221349 2025-08-18 15:19:18.881105+00 2025-08-18 15:19:18.881116+00 f t SUBTOTAL 0.00 1 5751 \N +221350 2025-08-18 15:19:18.883401+00 2025-08-18 15:19:18.883408+00 f t DESCUENTO 0.00 2 5751 \N +221351 2025-08-18 15:19:18.884999+00 2025-08-18 15:19:18.885006+00 f t TOTAL 0.00 3 5751 \N +221352 2025-08-18 15:19:18.886439+00 2025-08-18 15:19:18.886449+00 f t ADELANTO 0.00 4 5751 \N +226029 2025-08-19 21:24:48.441109+00 2025-08-19 21:24:48.441119+00 f t SUBTOTAL 0.00 1 5854 \N +226030 2025-08-19 21:24:48.443155+00 2025-08-19 21:24:48.443163+00 f t DESCUENTO 0.00 2 5854 \N +226031 2025-08-19 21:24:48.444452+00 2025-08-19 21:24:48.444458+00 f t TOTAL 0.00 3 5854 \N +226032 2025-08-19 21:24:48.445564+00 2025-08-19 21:24:48.44557+00 f t ADELANTO 0.00 4 5854 \N +221885 2025-08-18 18:24:25.048434+00 2025-08-18 18:24:25.048446+00 f t SUBTOTAL 95000.00 1 5767 \N +221886 2025-08-18 18:24:25.050884+00 2025-08-18 18:24:25.050895+00 f t DESCUENTO 0.00 2 5767 \N +221887 2025-08-18 18:24:25.05263+00 2025-08-18 18:24:25.052642+00 f t TOTAL 95000.00 3 5767 \N +221888 2025-08-18 18:24:25.054505+00 2025-08-18 18:24:25.054518+00 f t ADELANTO 10000.00 4 5767 \N +222213 2025-08-18 20:32:00.597098+00 2025-08-18 20:32:00.597111+00 f t SUBTOTAL 49500.00 1 5774 \N +222214 2025-08-18 20:32:00.599414+00 2025-08-18 20:32:00.599426+00 f t DESCUENTO 0.00 2 5774 \N +222215 2025-08-18 20:32:00.601199+00 2025-08-18 20:32:00.601209+00 f t TOTAL 49500.00 3 5774 \N +222216 2025-08-18 20:32:00.602788+00 2025-08-18 20:32:00.602798+00 f t ADELANTO 11500.00 4 5774 \N +222477 2025-08-18 21:23:14.938668+00 2025-08-18 21:23:14.938678+00 f t SUBTOTAL 0.00 1 5778 \N +222478 2025-08-18 21:23:14.9409+00 2025-08-18 21:23:14.940909+00 f t DESCUENTO 0.00 2 5778 \N +222479 2025-08-18 21:23:14.942172+00 2025-08-18 21:23:14.942178+00 f t TOTAL 0.00 3 5778 \N +222480 2025-08-18 21:23:14.943432+00 2025-08-18 21:23:14.943437+00 f t ADELANTO 0.00 4 5778 \N +218389 2025-08-17 07:04:09.229164+00 2025-08-17 07:04:09.229178+00 f t SUBTOTAL 0.00 1 5679 \N +218390 2025-08-17 07:04:09.232587+00 2025-08-17 07:04:09.2326+00 f t DESCUENTO 0.00 2 5679 \N +218391 2025-08-17 07:04:09.235602+00 2025-08-17 07:04:09.235613+00 f t TOTAL 0.00 3 5679 \N +218392 2025-08-17 07:04:09.238513+00 2025-08-17 07:04:09.238524+00 f t ADELANTO 0.00 4 5679 \N +227457 2025-08-20 08:51:37.507611+00 2025-08-20 08:51:37.50762+00 f t SUBTOTAL 0.00 1 5887 \N +227458 2025-08-20 08:51:37.509791+00 2025-08-20 08:51:37.509797+00 f t DESCUENTO 0.00 2 5887 \N +227459 2025-08-20 08:51:37.510983+00 2025-08-20 08:51:37.510989+00 f t TOTAL 0.00 3 5887 \N +227460 2025-08-20 08:51:37.512079+00 2025-08-20 08:51:37.512084+00 f t ADELANTO 0.00 4 5887 \N +222565 2025-08-18 22:01:32.816304+00 2025-08-18 22:01:32.816318+00 f t SUBTOTAL 92000.00 1 5781 \N +222566 2025-08-18 22:01:32.818653+00 2025-08-18 22:01:32.818665+00 f t DESCUENTO 0.00 2 5781 \N +224833 2025-08-19 13:22:56.744097+00 2025-08-19 13:22:56.744107+00 f t SUBTOTAL 0.00 1 5824 \N +224834 2025-08-19 13:22:56.745494+00 2025-08-19 13:22:56.7455+00 f t DESCUENTO 0.00 2 5824 \N +224835 2025-08-19 13:22:56.746604+00 2025-08-19 13:22:56.746611+00 f t TOTAL 0.00 3 5824 \N +224836 2025-08-19 13:22:56.748147+00 2025-08-19 13:22:56.748154+00 f t ADELANTO 0.00 4 5824 \N +220017 2025-08-17 23:47:27.280801+00 2025-08-17 23:47:27.280815+00 f t SUBTOTAL 0.00 1 5719 \N +220018 2025-08-17 23:47:27.286578+00 2025-08-17 23:47:27.28659+00 f t DESCUENTO 0.00 2 5719 \N +220019 2025-08-17 23:47:27.288931+00 2025-08-17 23:47:27.288943+00 f t TOTAL 0.00 3 5719 \N +220020 2025-08-17 23:47:27.290646+00 2025-08-17 23:47:27.290656+00 f t ADELANTO 0.00 4 5719 \N +230473 2025-08-21 04:21:15.503734+00 2025-08-21 04:21:15.503743+00 f t SUBTOTAL 0.00 1 5965 \N +230474 2025-08-21 04:21:15.507866+00 2025-08-21 04:21:15.507878+00 f t DESCUENTO 0.00 2 5965 \N +230475 2025-08-21 04:21:15.510221+00 2025-08-21 04:21:15.51023+00 f t TOTAL 0.00 3 5965 \N +230476 2025-08-21 04:21:15.511864+00 2025-08-21 04:21:15.511873+00 f t ADELANTO 0.00 4 5965 \N +230625 2025-08-21 12:45:38.702635+00 2025-08-21 12:45:38.702646+00 f t SUBTOTAL 50000.00 1 5971 \N +230626 2025-08-21 12:45:38.704882+00 2025-08-21 12:45:38.70489+00 f t DESCUENTO 0.00 2 5971 \N +230627 2025-08-21 12:45:38.706488+00 2025-08-21 12:45:38.706494+00 f t TOTAL 50000.00 3 5971 \N +230628 2025-08-21 12:45:38.707759+00 2025-08-21 12:45:38.707767+00 f t ADELANTO 10000.00 4 5971 \N +220497 2025-08-18 04:12:07.399422+00 2025-08-18 04:12:07.399435+00 f t SUBTOTAL 137000.00 1 5729 \N +220498 2025-08-18 04:12:07.403638+00 2025-08-18 04:12:07.403652+00 f t DESCUENTO 0.00 2 5729 \N +220499 2025-08-18 04:12:07.405946+00 2025-08-18 04:12:07.405959+00 f t TOTAL 137000.00 3 5729 \N +220500 2025-08-18 04:12:07.410352+00 2025-08-18 04:12:07.410366+00 f t ADELANTO 19500.00 4 5729 \N +220613 2025-08-18 04:50:27.761319+00 2025-08-18 04:50:27.761329+00 f t SUBTOTAL 42000.00 1 5732 \N +220614 2025-08-18 04:50:27.763928+00 2025-08-18 04:50:27.763942+00 f t DESCUENTO 0.00 2 5732 \N +220615 2025-08-18 04:50:27.766105+00 2025-08-18 04:50:27.766115+00 f t TOTAL 42000.00 3 5732 \N +220616 2025-08-18 04:50:27.767902+00 2025-08-18 04:50:27.76791+00 f t ADELANTO 9500.00 4 5732 \N +220677 2025-08-18 11:43:47.467263+00 2025-08-18 11:43:47.467274+00 f t SUBTOTAL 0.00 1 5735 \N +220678 2025-08-18 11:43:47.46929+00 2025-08-18 11:43:47.469299+00 f t DESCUENTO 0.00 2 5735 \N +220679 2025-08-18 11:43:47.471014+00 2025-08-18 11:43:47.471022+00 f t TOTAL 0.00 3 5735 \N +220680 2025-08-18 11:43:47.472812+00 2025-08-18 11:43:47.472825+00 f t ADELANTO 0.00 4 5735 \N +218537 2025-08-17 11:12:29.294628+00 2025-08-17 11:12:29.294642+00 f t SUBTOTAL 161200.00 1 5681 \N +218538 2025-08-17 11:12:29.300941+00 2025-08-17 11:12:29.300953+00 f t DESCUENTO 0.00 2 5681 \N +218539 2025-08-17 11:12:29.303365+00 2025-08-17 11:12:29.303377+00 f t TOTAL 161200.00 3 5681 \N +218540 2025-08-17 11:12:29.305849+00 2025-08-17 11:12:29.305861+00 f t ADELANTO 68200.00 4 5681 \N +220901 2025-08-18 12:12:35.918674+00 2025-08-18 12:12:35.918688+00 f t SUBTOTAL 50000.00 1 5738 \N +220902 2025-08-18 12:12:35.92133+00 2025-08-18 12:12:35.921342+00 f t DESCUENTO 0.00 2 5738 \N +220903 2025-08-18 12:12:35.923332+00 2025-08-18 12:12:35.923341+00 f t TOTAL 50000.00 3 5738 \N +220904 2025-08-18 12:12:35.9253+00 2025-08-18 12:12:35.925312+00 f t ADELANTO 10000.00 4 5738 \N +221065 2025-08-18 12:54:24.243208+00 2025-08-18 12:54:24.243217+00 f t SUBTOTAL 42000.00 1 5740 \N +221066 2025-08-18 12:54:24.245361+00 2025-08-18 12:54:24.245369+00 f t DESCUENTO 0.00 2 5740 \N +221067 2025-08-18 12:54:24.246804+00 2025-08-18 12:54:24.246811+00 f t TOTAL 42000.00 3 5740 \N +221068 2025-08-18 12:54:24.248205+00 2025-08-18 12:54:24.248213+00 f t ADELANTO 9500.00 4 5740 \N +221237 2025-08-18 14:02:33.59007+00 2025-08-18 14:02:33.590083+00 f t SUBTOTAL 49500.00 1 5746 \N +221238 2025-08-18 14:02:33.596025+00 2025-08-18 14:02:33.596038+00 f t DESCUENTO 0.00 2 5746 \N +221239 2025-08-18 14:02:33.598548+00 2025-08-18 14:02:33.598563+00 f t TOTAL 49500.00 3 5746 \N +221240 2025-08-18 14:02:33.601293+00 2025-08-18 14:02:33.601305+00 f t ADELANTO 11500.00 4 5746 \N +218581 2025-08-17 11:15:38.16783+00 2025-08-17 11:15:38.167843+00 f t SUBTOTAL 42000.00 1 5682 \N +218582 2025-08-17 11:15:38.170348+00 2025-08-17 11:15:38.17036+00 f t DESCUENTO 0.00 2 5682 \N +218583 2025-08-17 11:15:38.172445+00 2025-08-17 11:15:38.172457+00 f t TOTAL 42000.00 3 5682 \N +218584 2025-08-17 11:15:38.174312+00 2025-08-17 11:15:38.174322+00 f t ADELANTO 9500.00 4 5682 \N +226721 2025-08-20 00:22:17.649168+00 2025-08-20 00:22:17.649178+00 f t SUBTOTAL 0.00 1 5873 \N +226722 2025-08-20 00:22:17.65152+00 2025-08-20 00:22:17.65153+00 f t DESCUENTO 0.00 2 5873 \N +226723 2025-08-20 00:22:17.653104+00 2025-08-20 00:22:17.653112+00 f t TOTAL 0.00 3 5873 \N +226724 2025-08-20 00:22:17.654495+00 2025-08-20 00:22:17.654504+00 f t ADELANTO 0.00 4 5873 \N +226833 2025-08-20 00:37:47.44427+00 2025-08-20 00:37:47.444278+00 f t SUBTOTAL 0.00 1 5876 \N +226834 2025-08-20 00:37:47.446484+00 2025-08-20 00:37:47.446493+00 f t DESCUENTO 0.00 2 5876 \N +226835 2025-08-20 00:37:47.447771+00 2025-08-20 00:37:47.447777+00 f t TOTAL 0.00 3 5876 \N +226836 2025-08-20 00:37:47.448976+00 2025-08-20 00:37:47.448984+00 f t ADELANTO 0.00 4 5876 \N +218661 2025-08-17 11:59:38.416964+00 2025-08-17 11:59:38.41698+00 f t SUBTOTAL 161200.00 1 5683 \N +218662 2025-08-17 11:59:38.418683+00 2025-08-17 11:59:38.41869+00 f t DESCUENTO 0.00 2 5683 \N +218663 2025-08-17 11:59:38.420154+00 2025-08-17 11:59:38.420163+00 f t TOTAL 161200.00 3 5683 \N +218664 2025-08-17 11:59:38.421687+00 2025-08-17 11:59:38.421696+00 f t ADELANTO 68200.00 4 5683 \N +218669 2025-08-17 12:32:19.57268+00 2025-08-17 12:32:19.57269+00 f t SUBTOTAL 0.00 1 5684 \N +218670 2025-08-17 12:32:19.574375+00 2025-08-17 12:32:19.574384+00 f t DESCUENTO 0.00 2 5684 \N +218671 2025-08-17 12:32:19.575666+00 2025-08-17 12:32:19.575673+00 f t TOTAL 0.00 3 5684 \N +218672 2025-08-17 12:32:19.577229+00 2025-08-17 12:32:19.577234+00 f t ADELANTO 0.00 4 5684 \N +227413 2025-08-20 06:31:50.442601+00 2025-08-20 06:31:50.442614+00 f t SUBTOTAL 117000.00 1 5886 \N +227414 2025-08-20 06:31:50.444942+00 2025-08-20 06:31:50.44495+00 f t DESCUENTO 0.00 2 5886 \N +218677 2025-08-17 12:34:13.885435+00 2025-08-17 12:34:13.885448+00 f t SUBTOTAL 0.00 1 5685 \N +218678 2025-08-17 12:34:13.887235+00 2025-08-17 12:34:13.887245+00 f t DESCUENTO 0.00 2 5685 \N +218679 2025-08-17 12:34:13.888807+00 2025-08-17 12:34:13.888814+00 f t TOTAL 0.00 3 5685 \N +218680 2025-08-17 12:34:13.890117+00 2025-08-17 12:34:13.890157+00 f t ADELANTO 0.00 4 5685 \N +227415 2025-08-20 06:31:50.446478+00 2025-08-20 06:31:50.446486+00 f t TOTAL 117000.00 3 5886 \N +227416 2025-08-20 06:31:50.447853+00 2025-08-20 06:31:50.44786+00 f t ADELANTO 24500.00 4 5886 \N +218705 2025-08-17 12:59:28.192266+00 2025-08-17 12:59:28.192274+00 f t SUBTOTAL 42000.00 1 5686 \N +218706 2025-08-17 12:59:28.194085+00 2025-08-17 12:59:28.194093+00 f t DESCUENTO 0.00 2 5686 \N +218707 2025-08-17 12:59:28.195474+00 2025-08-17 12:59:28.195481+00 f t TOTAL 42000.00 3 5686 \N +218708 2025-08-17 12:59:28.197112+00 2025-08-17 12:59:28.197119+00 f t ADELANTO 9500.00 4 5686 \N +227689 2025-08-20 12:29:14.540557+00 2025-08-20 12:29:14.540569+00 f t SUBTOTAL 0.00 1 5893 \N +227690 2025-08-20 12:29:14.542113+00 2025-08-20 12:29:14.542123+00 f t DESCUENTO 0.00 2 5893 \N +227691 2025-08-20 12:29:14.543348+00 2025-08-20 12:29:14.543356+00 f t TOTAL 0.00 3 5893 \N +227692 2025-08-20 12:29:14.544557+00 2025-08-20 12:29:14.544565+00 f t ADELANTO 0.00 4 5893 \N +224385 2025-08-19 10:58:52.505911+00 2025-08-19 10:58:52.50592+00 f t SUBTOTAL 163000.00 1 5810 \N +224386 2025-08-19 10:58:52.507899+00 2025-08-19 10:58:52.507906+00 f t DESCUENTO 0.00 2 5810 \N +224387 2025-08-19 10:58:52.509199+00 2025-08-19 10:58:52.509205+00 f t TOTAL 163000.00 3 5810 \N +224388 2025-08-19 10:58:52.510627+00 2025-08-19 10:58:52.510634+00 f t ADELANTO 23000.00 4 5810 \N +224485 2025-08-19 11:16:34.104749+00 2025-08-19 11:16:34.104761+00 f t SUBTOTAL 42000.00 1 5812 \N +224486 2025-08-19 11:16:34.106715+00 2025-08-19 11:16:34.106723+00 f t DESCUENTO 0.00 2 5812 \N +224487 2025-08-19 11:16:34.107922+00 2025-08-19 11:16:34.107928+00 f t TOTAL 42000.00 3 5812 \N +224488 2025-08-19 11:16:34.108928+00 2025-08-19 11:16:34.108934+00 f t ADELANTO 9500.00 4 5812 \N +235055 2025-08-23 14:23:05.199122+00 2025-08-23 14:23:05.199177+00 f t TOTAL 0.00 3 6084 \N +235056 2025-08-23 14:23:05.201935+00 2025-08-23 14:23:05.201947+00 f t ADELANTO 0.00 4 6084 \N +252001 2025-08-30 15:18:54.463895+00 2025-08-30 15:18:54.463903+00 f t SUBTOTAL 64500.00 1 6499 \N +252002 2025-08-30 15:18:54.46564+00 2025-08-30 15:18:54.465649+00 f t DESCUENTO 0.00 2 6499 \N +252003 2025-08-30 15:18:54.466721+00 2025-08-30 15:18:54.466727+00 f t TOTAL 64500.00 3 6499 \N +220025 2025-08-18 00:39:19.95857+00 2025-08-18 00:39:19.958584+00 f t SUBTOTAL 0.00 1 5720 \N +220026 2025-08-18 00:39:19.961527+00 2025-08-18 00:39:19.96154+00 f t DESCUENTO 0.00 2 5720 \N +220027 2025-08-18 00:39:19.963494+00 2025-08-18 00:39:19.963505+00 f t TOTAL 0.00 3 5720 \N +220028 2025-08-18 00:39:19.965243+00 2025-08-18 00:39:19.965253+00 f t ADELANTO 0.00 4 5720 \N +220273 2025-08-18 02:12:02.963268+00 2025-08-18 02:12:02.963281+00 f t SUBTOTAL 49500.00 1 5726 \N +220274 2025-08-18 02:12:02.967585+00 2025-08-18 02:12:02.967598+00 f t DESCUENTO 0.00 2 5726 \N +220275 2025-08-18 02:12:02.970934+00 2025-08-18 02:12:02.970947+00 f t TOTAL 49500.00 3 5726 \N +220276 2025-08-18 02:12:02.974773+00 2025-08-18 02:12:02.974787+00 f t ADELANTO 11500.00 4 5726 \N +218785 2025-08-17 13:18:45.317064+00 2025-08-17 13:18:45.317076+00 f t SUBTOTAL 50000.00 1 5687 \N +218786 2025-08-17 13:18:45.319277+00 2025-08-17 13:18:45.319286+00 f t DESCUENTO 0.00 2 5687 \N +218787 2025-08-17 13:18:45.321098+00 2025-08-17 13:18:45.32111+00 f t TOTAL 50000.00 3 5687 \N +218788 2025-08-17 13:18:45.332245+00 2025-08-17 13:18:45.332257+00 f t ADELANTO 10000.00 4 5687 \N +218813 2025-08-17 13:47:29.368601+00 2025-08-17 13:47:29.368614+00 f t SUBTOTAL 111000.00 1 5680 \N +218814 2025-08-17 13:47:29.370766+00 2025-08-17 13:47:29.370776+00 f t DESCUENTO 0.00 2 5680 \N +218815 2025-08-17 13:47:29.372504+00 2025-08-17 13:47:29.372515+00 f t TOTAL 111000.00 3 5680 \N +218816 2025-08-17 13:47:29.373933+00 2025-08-17 13:47:29.373939+00 f t ADELANTO 23500.00 4 5680 \N +220621 2025-08-18 08:11:51.664692+00 2025-08-18 08:11:51.664705+00 f t SUBTOTAL 0.00 1 5733 \N +220622 2025-08-18 08:11:51.666609+00 2025-08-18 08:11:51.666617+00 f t DESCUENTO 0.00 2 5733 \N +220623 2025-08-18 08:11:51.668161+00 2025-08-18 08:11:51.668169+00 f t TOTAL 0.00 3 5733 \N +220624 2025-08-18 08:11:51.669728+00 2025-08-18 08:11:51.669735+00 f t ADELANTO 0.00 4 5733 \N +218861 2025-08-17 14:08:46.381528+00 2025-08-17 14:08:46.381541+00 f t SUBTOTAL 0.00 1 5688 \N +218862 2025-08-17 14:08:46.384688+00 2025-08-17 14:08:46.3847+00 f t DESCUENTO 0.00 2 5688 \N +218863 2025-08-17 14:08:46.386486+00 2025-08-17 14:08:46.386494+00 f t TOTAL 0.00 3 5688 \N +218864 2025-08-17 14:08:46.387837+00 2025-08-17 14:08:46.387844+00 f t ADELANTO 0.00 4 5688 \N +221189 2025-08-18 13:40:24.092839+00 2025-08-18 13:40:24.092849+00 f t SUBTOTAL 0.00 1 5744 \N +221190 2025-08-18 13:40:24.09497+00 2025-08-18 13:40:24.094979+00 f t DESCUENTO 0.00 2 5744 \N +221191 2025-08-18 13:40:24.096736+00 2025-08-18 13:40:24.096744+00 f t TOTAL 0.00 3 5744 \N +221192 2025-08-18 13:40:24.098418+00 2025-08-18 13:40:24.098426+00 f t ADELANTO 0.00 4 5744 \N +221245 2025-08-18 14:27:23.092871+00 2025-08-18 14:27:23.092883+00 f t SUBTOTAL 0.00 1 5747 \N +221246 2025-08-18 14:27:23.094351+00 2025-08-18 14:27:23.094358+00 f t DESCUENTO 0.00 2 5747 \N +221247 2025-08-18 14:27:23.095336+00 2025-08-18 14:27:23.095341+00 f t TOTAL 0.00 3 5747 \N +221248 2025-08-18 14:27:23.096233+00 2025-08-18 14:27:23.096238+00 f t ADELANTO 0.00 4 5747 \N +218905 2025-08-17 14:19:34.103642+00 2025-08-17 14:19:34.103652+00 f t SUBTOTAL 0.00 1 5689 \N +218906 2025-08-17 14:19:34.106002+00 2025-08-17 14:19:34.106013+00 f t DESCUENTO 0.00 2 5689 \N +218907 2025-08-17 14:19:34.107973+00 2025-08-17 14:19:34.107981+00 f t TOTAL 0.00 3 5689 \N +218908 2025-08-17 14:19:34.115826+00 2025-08-17 14:19:34.115839+00 f t ADELANTO 0.00 4 5689 \N +221565 2025-08-18 16:36:46.57206+00 2025-08-18 16:36:46.572073+00 f t SUBTOTAL 64500.00 1 5755 \N +221566 2025-08-18 16:36:46.574801+00 2025-08-18 16:36:46.574815+00 f t DESCUENTO 0.00 2 5755 \N +221567 2025-08-18 16:36:46.576791+00 2025-08-18 16:36:46.576802+00 f t TOTAL 64500.00 3 5755 \N +221568 2025-08-18 16:36:46.578873+00 2025-08-18 16:36:46.578883+00 f t ADELANTO 17000.00 4 5755 \N +221729 2025-08-18 17:26:44.204135+00 2025-08-18 17:26:44.204144+00 f t SUBTOTAL 82200.00 1 5760 \N +221730 2025-08-18 17:26:44.205916+00 2025-08-18 17:26:44.205923+00 f t DESCUENTO 0.00 2 5760 \N +221731 2025-08-18 17:26:44.207362+00 2025-08-18 17:26:44.207369+00 f t TOTAL 82200.00 3 5760 \N +221732 2025-08-18 17:26:44.208798+00 2025-08-18 17:26:44.208807+00 f t ADELANTO 44200.00 4 5760 \N +218937 2025-08-17 14:32:59.573752+00 2025-08-17 14:32:59.57376+00 f t SUBTOTAL 42000.00 1 5690 \N +218938 2025-08-17 14:32:59.57602+00 2025-08-17 14:32:59.576028+00 f t DESCUENTO 0.00 2 5690 \N +218939 2025-08-17 14:32:59.577776+00 2025-08-17 14:32:59.577794+00 f t TOTAL 42000.00 3 5690 \N +218940 2025-08-17 14:32:59.579475+00 2025-08-17 14:32:59.579485+00 f t ADELANTO 9500.00 4 5690 \N +221941 2025-08-18 19:15:32.143551+00 2025-08-18 19:15:32.143562+00 f t SUBTOTAL 64500.00 1 5769 \N +221942 2025-08-18 19:15:32.145819+00 2025-08-18 19:15:32.145831+00 f t DESCUENTO 0.00 2 5769 \N +221943 2025-08-18 19:15:32.14749+00 2025-08-18 19:15:32.1475+00 f t TOTAL 64500.00 3 5769 \N +221944 2025-08-18 19:15:32.148939+00 2025-08-18 19:15:32.148951+00 f t ADELANTO 17000.00 4 5769 \N +222169 2025-08-18 20:02:48.495022+00 2025-08-18 20:02:48.495035+00 f t SUBTOTAL 42000.00 1 5771 \N +222170 2025-08-18 20:02:48.496731+00 2025-08-18 20:02:48.496738+00 f t DESCUENTO 0.00 2 5771 \N +222171 2025-08-18 20:02:48.498042+00 2025-08-18 20:02:48.49805+00 f t TOTAL 42000.00 3 5771 \N +222172 2025-08-18 20:02:48.49938+00 2025-08-18 20:02:48.499388+00 f t ADELANTO 9500.00 4 5771 \N +218969 2025-08-17 15:02:52.138459+00 2025-08-17 15:02:52.138472+00 f t SUBTOTAL 42000.00 1 5691 \N +218970 2025-08-17 15:02:52.140681+00 2025-08-17 15:02:52.140693+00 f t DESCUENTO 0.00 2 5691 \N +218971 2025-08-17 15:02:52.142457+00 2025-08-17 15:02:52.142466+00 f t TOTAL 42000.00 3 5691 \N +218972 2025-08-17 15:02:52.144347+00 2025-08-17 15:02:52.144356+00 f t ADELANTO 9500.00 4 5691 \N +222297 2025-08-18 20:57:04.687442+00 2025-08-18 20:57:04.687454+00 f t SUBTOTAL 94500.00 1 5775 \N +222298 2025-08-18 20:57:04.689384+00 2025-08-18 20:57:04.689392+00 f t DESCUENTO 0.00 2 5775 \N +222299 2025-08-18 20:57:04.690869+00 2025-08-18 20:57:04.690879+00 f t TOTAL 94500.00 3 5775 \N +222300 2025-08-18 20:57:04.692504+00 2025-08-18 20:57:04.692513+00 f t ADELANTO 26500.00 4 5775 \N +218989 2025-08-17 15:06:42.488986+00 2025-08-17 15:06:42.488995+00 f t SUBTOTAL 0.00 1 5692 \N +218990 2025-08-17 15:06:42.491416+00 2025-08-17 15:06:42.491426+00 f t DESCUENTO 0.00 2 5692 \N +218991 2025-08-17 15:06:42.493454+00 2025-08-17 15:06:42.493463+00 f t TOTAL 0.00 3 5692 \N +218992 2025-08-17 15:06:42.495092+00 2025-08-17 15:06:42.495103+00 f t ADELANTO 0.00 4 5692 \N +252004 2025-08-30 15:18:54.467978+00 2025-08-30 15:18:54.467985+00 f t ADELANTO 17000.00 4 6499 \N +240765 2025-08-25 18:21:11.823889+00 2025-08-25 18:21:11.823901+00 f t SUBTOTAL 95000.00 1 6216 \N +240766 2025-08-25 18:21:11.826883+00 2025-08-25 18:21:11.826892+00 f t DESCUENTO 0.00 2 6216 \N +240767 2025-08-25 18:21:11.828958+00 2025-08-25 18:21:11.82897+00 f t TOTAL 95000.00 3 6216 \N +219481 2025-08-17 21:22:59.981346+00 2025-08-17 21:22:59.98136+00 f t SUBTOTAL 0.00 1 5705 \N +219482 2025-08-17 21:22:59.98367+00 2025-08-17 21:22:59.983681+00 f t DESCUENTO 0.00 2 5705 \N +219483 2025-08-17 21:22:59.985199+00 2025-08-17 21:22:59.985206+00 f t TOTAL 0.00 3 5705 \N +219484 2025-08-17 21:22:59.986597+00 2025-08-17 21:22:59.986605+00 f t ADELANTO 0.00 4 5705 \N +240768 2025-08-25 18:21:11.830913+00 2025-08-25 18:21:11.830925+00 f t ADELANTO 10000.00 4 6216 \N +219705 2025-08-17 22:02:08.491977+00 2025-08-17 22:02:08.491986+00 f t SUBTOTAL 0.00 1 5710 \N +219706 2025-08-17 22:02:08.494408+00 2025-08-17 22:02:08.494417+00 f t DESCUENTO 0.00 2 5710 \N +219707 2025-08-17 22:02:08.496222+00 2025-08-17 22:02:08.496231+00 f t TOTAL 0.00 3 5710 \N +219708 2025-08-17 22:02:08.497839+00 2025-08-17 22:02:08.49785+00 f t ADELANTO 0.00 4 5710 \N +219033 2025-08-17 16:17:10.171977+00 2025-08-17 16:17:10.17199+00 f t SUBTOTAL 0.00 1 5693 \N +219034 2025-08-17 16:17:10.175054+00 2025-08-17 16:17:10.175067+00 f t DESCUENTO 0.00 2 5693 \N +219035 2025-08-17 16:17:10.177304+00 2025-08-17 16:17:10.177315+00 f t TOTAL 0.00 3 5693 \N +219036 2025-08-17 16:17:10.17939+00 2025-08-17 16:17:10.179402+00 f t ADELANTO 0.00 4 5693 \N +224585 2025-08-19 12:12:41.829692+00 2025-08-19 12:12:41.829703+00 f t SUBTOTAL 27500.00 1 5815 \N +224586 2025-08-19 12:12:41.831686+00 2025-08-19 12:12:41.831695+00 f t DESCUENTO 0.00 2 5815 \N +224587 2025-08-19 12:12:41.833149+00 2025-08-19 12:12:41.833158+00 f t TOTAL 27500.00 3 5815 \N +224588 2025-08-19 12:12:41.834539+00 2025-08-19 12:12:41.834546+00 f t ADELANTO 27500.00 4 5815 \N +219041 2025-08-17 16:18:29.025083+00 2025-08-17 16:18:29.025097+00 f t SUBTOTAL 0.00 1 5694 \N +219042 2025-08-17 16:18:29.02711+00 2025-08-17 16:18:29.027118+00 f t DESCUENTO 0.00 2 5694 \N +219043 2025-08-17 16:18:29.028806+00 2025-08-17 16:18:29.028815+00 f t TOTAL 0.00 3 5694 \N +219044 2025-08-17 16:18:29.030237+00 2025-08-17 16:18:29.030249+00 f t ADELANTO 0.00 4 5694 \N +219897 2025-08-17 23:14:32.901362+00 2025-08-17 23:14:32.901374+00 f t SUBTOTAL 68000.00 1 5715 \N +219898 2025-08-17 23:14:32.903287+00 2025-08-17 23:14:32.903294+00 f t DESCUENTO 0.00 2 5715 \N +219899 2025-08-17 23:14:32.90469+00 2025-08-17 23:14:32.904697+00 f t TOTAL 68000.00 3 5715 \N +219900 2025-08-17 23:14:32.905978+00 2025-08-17 23:14:32.905988+00 f t ADELANTO 13000.00 4 5715 \N +219069 2025-08-17 16:20:35.416268+00 2025-08-17 16:20:35.416281+00 f t SUBTOTAL 0.00 1 5695 \N +219070 2025-08-17 16:20:35.418974+00 2025-08-17 16:20:35.418986+00 f t DESCUENTO 0.00 2 5695 \N +219071 2025-08-17 16:20:35.422283+00 2025-08-17 16:20:35.422295+00 f t TOTAL 0.00 3 5695 \N +219072 2025-08-17 16:20:35.424374+00 2025-08-17 16:20:35.424386+00 f t ADELANTO 0.00 4 5695 \N +220213 2025-08-18 01:47:45.409591+00 2025-08-18 01:47:45.409602+00 f t SUBTOTAL 42000.00 1 5724 \N +220214 2025-08-18 01:47:45.411987+00 2025-08-18 01:47:45.412+00 f t DESCUENTO 0.00 2 5724 \N +220215 2025-08-18 01:47:45.413993+00 2025-08-18 01:47:45.414005+00 f t TOTAL 42000.00 3 5724 \N +220216 2025-08-18 01:47:45.415934+00 2025-08-18 01:47:45.415946+00 f t ADELANTO 9500.00 4 5724 \N +219101 2025-08-17 16:23:49.241003+00 2025-08-17 16:23:49.241015+00 f t SUBTOTAL 27500.00 1 5696 \N +219102 2025-08-17 16:23:49.243037+00 2025-08-17 16:23:49.243046+00 f t DESCUENTO 0.00 2 5696 \N +219103 2025-08-17 16:23:49.245821+00 2025-08-17 16:23:49.245833+00 f t TOTAL 27500.00 3 5696 \N +219104 2025-08-17 16:23:49.24778+00 2025-08-17 16:23:49.24779+00 f t ADELANTO 27500.00 4 5696 \N +219109 2025-08-17 16:51:38.448657+00 2025-08-17 16:51:38.448666+00 f t SUBTOTAL 0.00 1 5697 \N +219110 2025-08-17 16:51:38.450862+00 2025-08-17 16:51:38.450874+00 f t DESCUENTO 0.00 2 5697 \N +219111 2025-08-17 16:51:38.453004+00 2025-08-17 16:51:38.453017+00 f t TOTAL 0.00 3 5697 \N +219112 2025-08-17 16:51:38.454772+00 2025-08-17 16:51:38.45478+00 f t ADELANTO 0.00 4 5697 \N +225645 2025-08-19 18:28:59.349443+00 2025-08-19 18:28:59.349455+00 f t SUBTOTAL 95500.00 1 5845 \N +225646 2025-08-19 18:28:59.35337+00 2025-08-19 18:28:59.353381+00 f t DESCUENTO 0.00 2 5845 \N +225647 2025-08-19 18:28:59.355151+00 2025-08-19 18:28:59.355161+00 f t TOTAL 95500.00 3 5845 \N +225648 2025-08-19 18:28:59.356672+00 2025-08-19 18:28:59.35668+00 f t ADELANTO 20500.00 4 5845 \N +221137 2025-08-18 13:37:46.506888+00 2025-08-18 13:37:46.506902+00 f t SUBTOTAL 64500.00 1 5743 \N +221138 2025-08-18 13:37:46.509537+00 2025-08-18 13:37:46.50955+00 f t DESCUENTO 0.00 2 5743 \N +221139 2025-08-18 13:37:46.513451+00 2025-08-18 13:37:46.51346+00 f t TOTAL 64500.00 3 5743 \N +221140 2025-08-18 13:37:46.515714+00 2025-08-18 13:37:46.515727+00 f t ADELANTO 17000.00 4 5743 \N +226417 2025-08-19 23:25:46.306162+00 2025-08-19 23:25:46.306172+00 f t SUBTOTAL 0.00 1 5866 \N +226418 2025-08-19 23:25:46.308698+00 2025-08-19 23:25:46.308706+00 f t DESCUENTO 0.00 2 5866 \N +226419 2025-08-19 23:25:46.310419+00 2025-08-19 23:25:46.310425+00 f t TOTAL 0.00 3 5866 \N +226420 2025-08-19 23:25:46.311684+00 2025-08-19 23:25:46.31169+00 f t ADELANTO 0.00 4 5866 \N +226477 2025-08-19 23:30:44.179323+00 2025-08-19 23:30:44.179331+00 f t SUBTOTAL 146700.00 1 5867 \N +226478 2025-08-19 23:30:44.181422+00 2025-08-19 23:30:44.18143+00 f t DESCUENTO 0.00 2 5867 \N +226479 2025-08-19 23:30:44.183067+00 2025-08-19 23:30:44.183075+00 f t TOTAL 146700.00 3 5867 \N +226480 2025-08-19 23:30:44.184669+00 2025-08-19 23:30:44.184675+00 f t ADELANTO 108700.00 4 5867 \N +221417 2025-08-18 16:18:52.586428+00 2025-08-18 16:18:52.586441+00 f t SUBTOTAL 99000.00 1 5753 \N +221418 2025-08-18 16:18:52.588737+00 2025-08-18 16:18:52.588746+00 f t DESCUENTO 0.00 2 5753 \N +221419 2025-08-18 16:18:52.590168+00 2025-08-18 16:18:52.590176+00 f t TOTAL 99000.00 3 5753 \N +221420 2025-08-18 16:18:52.591529+00 2025-08-18 16:18:52.591537+00 f t ADELANTO 23000.00 4 5753 \N +221737 2025-08-18 17:34:47.519565+00 2025-08-18 17:34:47.519576+00 f t SUBTOTAL 0.00 1 5761 \N +221738 2025-08-18 17:34:47.521114+00 2025-08-18 17:34:47.521122+00 f t DESCUENTO 0.00 2 5761 \N +221739 2025-08-18 17:34:47.522592+00 2025-08-18 17:34:47.522599+00 f t TOTAL 0.00 3 5761 \N +221740 2025-08-18 17:34:47.523951+00 2025-08-18 17:34:47.523956+00 f t ADELANTO 0.00 4 5761 \N +222177 2025-08-18 20:10:06.41098+00 2025-08-18 20:10:06.410995+00 f t SUBTOTAL 0.00 1 5772 \N +222178 2025-08-18 20:10:06.415562+00 2025-08-18 20:10:06.415577+00 f t DESCUENTO 0.00 2 5772 \N +222179 2025-08-18 20:10:06.418521+00 2025-08-18 20:10:06.418536+00 f t TOTAL 0.00 3 5772 \N +222180 2025-08-18 20:10:06.42077+00 2025-08-18 20:10:06.420784+00 f t ADELANTO 0.00 4 5772 \N +222305 2025-08-18 21:11:14.827882+00 2025-08-18 21:11:14.827894+00 f t SUBTOTAL 0.00 1 5776 \N +222306 2025-08-18 21:11:14.829743+00 2025-08-18 21:11:14.829753+00 f t DESCUENTO 0.00 2 5776 \N +222307 2025-08-18 21:11:14.831229+00 2025-08-18 21:11:14.83124+00 f t TOTAL 0.00 3 5776 \N +222308 2025-08-18 21:11:14.832598+00 2025-08-18 21:11:14.832605+00 f t ADELANTO 0.00 4 5776 \N +222485 2025-08-18 21:23:28.205542+00 2025-08-18 21:23:28.205551+00 f t SUBTOTAL 42000.00 1 5777 \N +222486 2025-08-18 21:23:28.207595+00 2025-08-18 21:23:28.207606+00 f t DESCUENTO 0.00 2 5777 \N +222487 2025-08-18 21:23:28.209342+00 2025-08-18 21:23:28.20935+00 f t TOTAL 42000.00 3 5777 \N +222567 2025-08-18 22:01:32.82055+00 2025-08-18 22:01:32.820561+00 f t TOTAL 92000.00 3 5781 \N +222568 2025-08-18 22:01:32.822749+00 2025-08-18 22:01:32.82276+00 f t ADELANTO 19500.00 4 5781 \N +229685 2025-08-20 22:25:11.891219+00 2025-08-20 22:25:11.891229+00 f t SUBTOTAL 64500.00 1 5948 \N +229686 2025-08-20 22:25:11.894257+00 2025-08-20 22:25:11.89427+00 f t DESCUENTO 0.00 2 5948 \N +229687 2025-08-20 22:25:11.896119+00 2025-08-20 22:25:11.896128+00 f t TOTAL 64500.00 3 5948 \N +229688 2025-08-20 22:25:11.898181+00 2025-08-20 22:25:11.898193+00 f t ADELANTO 17000.00 4 5948 \N +257848 2025-09-01 12:14:41.775176+00 2025-09-01 12:14:41.775184+00 f t ADELANTO 0.00 4 6631 \N +289473 2025-09-12 02:36:47.016004+00 2025-09-12 02:36:47.016014+00 f t SUBTOTAL 0.00 1 7386 \N +224673 2025-08-19 12:18:22.237519+00 2025-08-19 12:18:22.237531+00 f t SUBTOTAL 0.00 1 5816 \N +224674 2025-08-19 12:18:22.240144+00 2025-08-19 12:18:22.240151+00 f t DESCUENTO 0.00 2 5816 \N +224675 2025-08-19 12:18:22.241525+00 2025-08-19 12:18:22.241533+00 f t TOTAL 0.00 3 5816 \N +224676 2025-08-19 12:18:22.242768+00 2025-08-19 12:18:22.242777+00 f t ADELANTO 0.00 4 5816 \N +222605 2025-08-18 22:07:39.595777+00 2025-08-18 22:07:39.595789+00 f t SUBTOTAL 68000.00 1 5782 \N +222606 2025-08-18 22:07:39.597655+00 2025-08-18 22:07:39.597662+00 f t DESCUENTO 0.00 2 5782 \N +222607 2025-08-18 22:07:39.598934+00 2025-08-18 22:07:39.598943+00 f t TOTAL 68000.00 3 5782 \N +222608 2025-08-18 22:07:39.600272+00 2025-08-18 22:07:39.600279+00 f t ADELANTO 13000.00 4 5782 \N +230749 2025-08-21 13:23:04.934885+00 2025-08-21 13:23:04.934895+00 f t SUBTOTAL 0.00 1 5973 \N +225449 2025-08-19 17:04:11.816888+00 2025-08-19 17:04:11.816899+00 f t SUBTOTAL 42000.00 1 5840 \N +225450 2025-08-19 17:04:11.819631+00 2025-08-19 17:04:11.819642+00 f t DESCUENTO 0.00 2 5840 \N +225451 2025-08-19 17:04:11.821696+00 2025-08-19 17:04:11.821707+00 f t TOTAL 42000.00 3 5840 \N +225452 2025-08-19 17:04:11.824009+00 2025-08-19 17:04:11.82402+00 f t ADELANTO 9500.00 4 5840 \N +230750 2025-08-21 13:23:04.937848+00 2025-08-21 13:23:04.937857+00 f t DESCUENTO 0.00 2 5973 \N +230751 2025-08-21 13:23:04.939668+00 2025-08-21 13:23:04.939676+00 f t TOTAL 0.00 3 5973 \N +230752 2025-08-21 13:23:04.94214+00 2025-08-21 13:23:04.942155+00 f t ADELANTO 0.00 4 5973 \N +236309 2025-08-24 00:58:53.91727+00 2025-08-24 00:58:53.917281+00 f t SUBTOTAL 0.00 1 6110 \N +236310 2025-08-24 00:58:53.920176+00 2025-08-24 00:58:53.920188+00 f t DESCUENTO 0.00 2 6110 \N +236311 2025-08-24 00:58:53.922188+00 2025-08-24 00:58:53.922198+00 f t TOTAL 0.00 3 6110 \N +236312 2025-08-24 00:58:53.924344+00 2025-08-24 00:58:53.924355+00 f t ADELANTO 0.00 4 6110 \N +222653 2025-08-18 22:12:35.43256+00 2025-08-18 22:12:35.432568+00 f t SUBTOTAL 68000.00 1 5783 \N +222654 2025-08-18 22:12:35.434234+00 2025-08-18 22:12:35.434246+00 f t DESCUENTO 0.00 2 5783 \N +222655 2025-08-18 22:12:35.435543+00 2025-08-18 22:12:35.43555+00 f t TOTAL 68000.00 3 5783 \N +222656 2025-08-18 22:12:35.436581+00 2025-08-18 22:12:35.436587+00 f t ADELANTO 13000.00 4 5783 \N +225785 2025-08-19 19:19:16.024446+00 2025-08-19 19:19:16.024456+00 f t SUBTOTAL 88000.00 1 5849 \N +225786 2025-08-19 19:19:16.02683+00 2025-08-19 19:19:16.026842+00 f t DESCUENTO 0.00 2 5849 \N +225787 2025-08-19 19:19:16.028744+00 2025-08-19 19:19:16.028753+00 f t TOTAL 88000.00 3 5849 \N +225788 2025-08-19 19:19:16.030495+00 2025-08-19 19:19:16.030504+00 f t ADELANTO 19000.00 4 5849 \N +231033 2025-08-21 15:50:43.249655+00 2025-08-21 15:50:43.249666+00 f t SUBTOTAL 50000.00 1 5978 \N +231034 2025-08-21 15:50:43.252108+00 2025-08-21 15:50:43.25212+00 f t DESCUENTO 0.00 2 5978 \N +231035 2025-08-21 15:50:43.253851+00 2025-08-21 15:50:43.25386+00 f t TOTAL 50000.00 3 5978 \N +231036 2025-08-21 15:50:43.255324+00 2025-08-21 15:50:43.255337+00 f t ADELANTO 10000.00 4 5978 \N +222681 2025-08-18 22:36:19.627098+00 2025-08-18 22:36:19.627109+00 f t SUBTOTAL 50000.00 1 5784 \N +222682 2025-08-18 22:36:19.629337+00 2025-08-18 22:36:19.629352+00 f t DESCUENTO 0.00 2 5784 \N +222683 2025-08-18 22:36:19.631538+00 2025-08-18 22:36:19.631551+00 f t TOTAL 50000.00 3 5784 \N +222684 2025-08-18 22:36:19.633697+00 2025-08-18 22:36:19.633706+00 f t ADELANTO 10000.00 4 5784 \N +222689 2025-08-18 22:38:02.848874+00 2025-08-18 22:38:02.848884+00 f t SUBTOTAL 0.00 1 5785 \N +222690 2025-08-18 22:38:02.850922+00 2025-08-18 22:38:02.850934+00 f t DESCUENTO 0.00 2 5785 \N +222691 2025-08-18 22:38:02.853045+00 2025-08-18 22:38:02.853054+00 f t TOTAL 0.00 3 5785 \N +222692 2025-08-18 22:38:02.854383+00 2025-08-18 22:38:02.85439+00 f t ADELANTO 0.00 4 5785 \N +222721 2025-08-18 22:42:32.542607+00 2025-08-18 22:42:32.542617+00 f t SUBTOTAL 95000.00 1 5786 \N +222722 2025-08-18 22:42:32.544511+00 2025-08-18 22:42:32.544521+00 f t DESCUENTO 0.00 2 5786 \N +222723 2025-08-18 22:42:32.545673+00 2025-08-18 22:42:32.545679+00 f t TOTAL 95000.00 3 5786 \N +222724 2025-08-18 22:42:32.546719+00 2025-08-18 22:42:32.546727+00 f t ADELANTO 10000.00 4 5786 \N +226545 2025-08-19 23:43:23.825257+00 2025-08-19 23:43:23.825266+00 f t SUBTOTAL 0.00 1 5869 \N +226546 2025-08-19 23:43:23.827523+00 2025-08-19 23:43:23.827533+00 f t DESCUENTO 0.00 2 5869 \N +226547 2025-08-19 23:43:23.829135+00 2025-08-19 23:43:23.829143+00 f t TOTAL 0.00 3 5869 \N +226548 2025-08-19 23:43:23.830275+00 2025-08-19 23:43:23.830281+00 f t ADELANTO 0.00 4 5869 \N +222749 2025-08-18 22:47:11.124017+00 2025-08-18 22:47:11.124026+00 f t SUBTOTAL 49500.00 1 5787 \N +222750 2025-08-18 22:47:11.125846+00 2025-08-18 22:47:11.125857+00 f t DESCUENTO 0.00 2 5787 \N +222751 2025-08-18 22:47:11.127243+00 2025-08-18 22:47:11.12725+00 f t TOTAL 49500.00 3 5787 \N +222752 2025-08-18 22:47:11.128357+00 2025-08-18 22:47:11.128363+00 f t ADELANTO 11500.00 4 5787 \N +222777 2025-08-18 23:15:36.567874+00 2025-08-18 23:15:36.567882+00 f t SUBTOTAL 50000.00 1 5788 \N +222778 2025-08-18 23:15:36.569491+00 2025-08-18 23:15:36.569497+00 f t DESCUENTO 0.00 2 5788 \N +222779 2025-08-18 23:15:36.570906+00 2025-08-18 23:15:36.570913+00 f t TOTAL 50000.00 3 5788 \N +222780 2025-08-18 23:15:36.572491+00 2025-08-18 23:15:36.572496+00 f t ADELANTO 10000.00 4 5788 \N +222809 2025-08-18 23:17:47.400171+00 2025-08-18 23:17:47.400183+00 f t SUBTOTAL 42000.00 1 5789 \N +222810 2025-08-18 23:17:47.402209+00 2025-08-18 23:17:47.402219+00 f t DESCUENTO 0.00 2 5789 \N +222811 2025-08-18 23:17:47.403661+00 2025-08-18 23:17:47.403668+00 f t TOTAL 42000.00 3 5789 \N +222812 2025-08-18 23:17:47.404927+00 2025-08-18 23:17:47.404933+00 f t ADELANTO 9500.00 4 5789 \N +232717 2025-08-22 08:07:27.309036+00 2025-08-22 08:07:27.309049+00 f t SUBTOTAL 138000.00 1 6017 \N +232718 2025-08-22 08:07:27.311525+00 2025-08-22 08:07:27.311538+00 f t DESCUENTO 0.00 2 6017 \N +232719 2025-08-22 08:07:27.314994+00 2025-08-22 08:07:27.315004+00 f t TOTAL 138000.00 3 6017 \N +232720 2025-08-22 08:07:27.31749+00 2025-08-22 08:07:27.317499+00 f t ADELANTO 29000.00 4 6017 \N +227625 2025-08-20 12:17:32.308725+00 2025-08-20 12:17:32.308736+00 f t SUBTOTAL 49500.00 1 5891 \N +227626 2025-08-20 12:17:32.31051+00 2025-08-20 12:17:32.31052+00 f t DESCUENTO 0.00 2 5891 \N +227627 2025-08-20 12:17:32.311874+00 2025-08-20 12:17:32.311882+00 f t TOTAL 49500.00 3 5891 \N +227628 2025-08-20 12:17:32.313393+00 2025-08-20 12:17:32.313402+00 f t ADELANTO 11500.00 4 5891 \N +227741 2025-08-20 12:30:17.138744+00 2025-08-20 12:30:17.138752+00 f t SUBTOTAL 42000.00 1 5892 \N +227742 2025-08-20 12:30:17.14088+00 2025-08-20 12:30:17.140888+00 f t DESCUENTO 0.00 2 5892 \N +227743 2025-08-20 12:30:17.142275+00 2025-08-20 12:30:17.142281+00 f t TOTAL 42000.00 3 5892 \N +227744 2025-08-20 12:30:17.143646+00 2025-08-20 12:30:17.143654+00 f t ADELANTO 9500.00 4 5892 \N +229693 2025-08-20 22:35:39.827502+00 2025-08-20 22:35:39.827513+00 f t SUBTOTAL 0.00 1 5949 \N +229694 2025-08-20 22:35:39.829167+00 2025-08-20 22:35:39.829177+00 f t DESCUENTO 0.00 2 5949 \N +229695 2025-08-20 22:35:39.830556+00 2025-08-20 22:35:39.830564+00 f t TOTAL 0.00 3 5949 \N +229696 2025-08-20 22:35:39.831971+00 2025-08-20 22:35:39.831977+00 f t ADELANTO 0.00 4 5949 \N +229785 2025-08-20 22:49:21.663587+00 2025-08-20 22:49:21.663595+00 f t SUBTOTAL 0.00 1 5950 \N +229786 2025-08-20 22:49:21.665955+00 2025-08-20 22:49:21.665963+00 f t DESCUENTO 0.00 2 5950 \N +229787 2025-08-20 22:49:21.667407+00 2025-08-20 22:49:21.667415+00 f t TOTAL 0.00 3 5950 \N +229788 2025-08-20 22:49:21.668827+00 2025-08-20 22:49:21.668837+00 f t ADELANTO 0.00 4 5950 \N +230185 2025-08-21 01:32:30.245992+00 2025-08-21 01:32:30.246004+00 f t SUBTOTAL 50000.00 1 5956 \N +230186 2025-08-21 01:32:30.248923+00 2025-08-21 01:32:30.248936+00 f t DESCUENTO 0.00 2 5956 \N +230187 2025-08-21 01:32:30.250921+00 2025-08-21 01:32:30.250933+00 f t TOTAL 50000.00 3 5956 \N +230188 2025-08-21 01:32:30.252678+00 2025-08-21 01:32:30.252686+00 f t ADELANTO 10000.00 4 5956 \N +246941 2025-08-28 15:37:18.712782+00 2025-08-28 15:37:18.712792+00 f t SUBTOTAL 82200.00 1 6364 \N +246942 2025-08-28 15:37:18.714739+00 2025-08-28 15:37:18.714746+00 f t DESCUENTO 0.00 2 6364 \N +246943 2025-08-28 15:37:18.716032+00 2025-08-28 15:37:18.716041+00 f t TOTAL 82200.00 3 6364 \N +246944 2025-08-28 15:37:18.717323+00 2025-08-28 15:37:18.71733+00 f t ADELANTO 44200.00 4 6364 \N +222917 2025-08-18 23:55:29.167661+00 2025-08-18 23:55:29.167673+00 f t SUBTOTAL 129500.00 1 5790 \N +222918 2025-08-18 23:55:29.169598+00 2025-08-18 23:55:29.169608+00 f t DESCUENTO 0.00 2 5790 \N +222919 2025-08-18 23:55:29.171097+00 2025-08-18 23:55:29.171106+00 f t TOTAL 129500.00 3 5790 \N +222920 2025-08-18 23:55:29.172431+00 2025-08-18 23:55:29.172439+00 f t ADELANTO 27000.00 4 5790 \N +222925 2025-08-18 23:55:45.120662+00 2025-08-18 23:55:45.120672+00 f t SUBTOTAL 0.00 1 5791 \N +222926 2025-08-18 23:55:45.122665+00 2025-08-18 23:55:45.122674+00 f t DESCUENTO 0.00 2 5791 \N +222927 2025-08-18 23:55:45.124547+00 2025-08-18 23:55:45.124559+00 f t TOTAL 0.00 3 5791 \N +222928 2025-08-18 23:55:45.126728+00 2025-08-18 23:55:45.126738+00 f t ADELANTO 0.00 4 5791 \N +230869 2025-08-21 13:57:36.803123+00 2025-08-21 13:57:36.803154+00 f t SUBTOTAL 146700.00 1 5975 \N +230870 2025-08-21 13:57:36.80522+00 2025-08-21 13:57:36.805227+00 f t DESCUENTO 0.00 2 5975 \N +230871 2025-08-21 13:57:36.80635+00 2025-08-21 13:57:36.806355+00 f t TOTAL 146700.00 3 5975 \N +230872 2025-08-21 13:57:36.807433+00 2025-08-21 13:57:36.807439+00 f t ADELANTO 108700.00 4 5975 \N +230977 2025-08-21 14:42:12.822093+00 2025-08-21 14:42:12.822102+00 f t SUBTOTAL 49700.00 1 5976 \N +230978 2025-08-21 14:42:12.824194+00 2025-08-21 14:42:12.824202+00 f t DESCUENTO 0.00 2 5976 \N +230979 2025-08-21 14:42:12.825642+00 2025-08-21 14:42:12.825649+00 f t TOTAL 49700.00 3 5976 \N +230980 2025-08-21 14:42:12.827152+00 2025-08-21 14:42:12.82716+00 f t ADELANTO 11700.00 4 5976 \N +225725 2025-08-19 18:56:26.53441+00 2025-08-19 18:56:26.534421+00 f t SUBTOTAL 50000.00 1 5848 \N +225726 2025-08-19 18:56:26.536291+00 2025-08-19 18:56:26.536298+00 f t DESCUENTO 0.00 2 5848 \N +225727 2025-08-19 18:56:26.537881+00 2025-08-19 18:56:26.537888+00 f t TOTAL 50000.00 3 5848 \N +225728 2025-08-19 18:56:26.539185+00 2025-08-19 18:56:26.539191+00 f t ADELANTO 10000.00 4 5848 \N +231041 2025-08-21 15:58:29.775063+00 2025-08-21 15:58:29.775071+00 f t SUBTOTAL 0.00 1 5979 \N +231042 2025-08-21 15:58:29.776518+00 2025-08-21 15:58:29.776524+00 f t DESCUENTO 0.00 2 5979 \N +231043 2025-08-21 15:58:29.77772+00 2025-08-21 15:58:29.777725+00 f t TOTAL 0.00 3 5979 \N +231044 2025-08-21 15:58:29.77893+00 2025-08-21 15:58:29.778936+00 f t ADELANTO 0.00 4 5979 \N +225989 2025-08-19 21:24:09.237789+00 2025-08-19 21:24:09.237802+00 f t SUBTOTAL 42000.00 1 5855 \N +225990 2025-08-19 21:24:09.24094+00 2025-08-19 21:24:09.240954+00 f t DESCUENTO 0.00 2 5855 \N +225991 2025-08-19 21:24:09.243363+00 2025-08-19 21:24:09.243376+00 f t TOTAL 42000.00 3 5855 \N +225992 2025-08-19 21:24:09.245615+00 2025-08-19 21:24:09.245629+00 f t ADELANTO 9500.00 4 5855 \N +226109 2025-08-19 21:31:28.483089+00 2025-08-19 21:31:28.4831+00 f t SUBTOTAL 42000.00 1 5857 \N +226110 2025-08-19 21:31:28.485233+00 2025-08-19 21:31:28.485243+00 f t DESCUENTO 0.00 2 5857 \N +226111 2025-08-19 21:31:28.486885+00 2025-08-19 21:31:28.486895+00 f t TOTAL 42000.00 3 5857 \N +226112 2025-08-19 21:31:28.48859+00 2025-08-19 21:31:28.488599+00 f t ADELANTO 9500.00 4 5857 \N +231385 2025-08-21 17:32:29.518039+00 2025-08-21 17:32:29.518048+00 f t SUBTOTAL 42000.00 1 5986 \N +231386 2025-08-21 17:32:29.520409+00 2025-08-21 17:32:29.520418+00 f t DESCUENTO 0.00 2 5986 \N +231387 2025-08-21 17:32:29.522644+00 2025-08-21 17:32:29.522652+00 f t TOTAL 42000.00 3 5986 \N +231388 2025-08-21 17:32:29.524818+00 2025-08-21 17:32:29.52483+00 f t ADELANTO 9500.00 4 5986 \N +231649 2025-08-21 19:11:34.996745+00 2025-08-21 19:11:34.996754+00 f t SUBTOTAL 0.00 1 5993 \N +231650 2025-08-21 19:11:34.999124+00 2025-08-21 19:11:34.999164+00 f t DESCUENTO 0.00 2 5993 \N +231651 2025-08-21 19:11:35.000568+00 2025-08-21 19:11:35.000574+00 f t TOTAL 0.00 3 5993 \N +231652 2025-08-21 19:11:35.001849+00 2025-08-21 19:11:35.001869+00 f t ADELANTO 0.00 4 5993 \N +227045 2025-08-20 01:48:10.265527+00 2025-08-20 01:48:10.265536+00 f t SUBTOTAL 0.00 1 5881 \N +227046 2025-08-20 01:48:10.26904+00 2025-08-20 01:48:10.269055+00 f t DESCUENTO 0.00 2 5881 \N +227047 2025-08-20 01:48:10.270636+00 2025-08-20 01:48:10.270644+00 f t TOTAL 0.00 3 5881 \N +227048 2025-08-20 01:48:10.272153+00 2025-08-20 01:48:10.27216+00 f t ADELANTO 0.00 4 5881 \N +227137 2025-08-20 02:04:37.499518+00 2025-08-20 02:04:37.499529+00 f t SUBTOTAL 50000.00 1 5882 \N +227138 2025-08-20 02:04:37.501408+00 2025-08-20 02:04:37.501417+00 f t DESCUENTO 0.00 2 5882 \N +227139 2025-08-20 02:04:37.502825+00 2025-08-20 02:04:37.502833+00 f t TOTAL 50000.00 3 5882 \N +227140 2025-08-20 02:04:37.504364+00 2025-08-20 02:04:37.504373+00 f t ADELANTO 10000.00 4 5882 \N +232413 2025-08-22 00:19:37.726913+00 2025-08-22 00:19:37.726923+00 f t SUBTOTAL 0.00 1 6006 \N +232414 2025-08-22 00:19:37.729145+00 2025-08-22 00:19:37.729168+00 f t DESCUENTO 0.00 2 6006 \N +232415 2025-08-22 00:19:37.730452+00 2025-08-22 00:19:37.730459+00 f t TOTAL 0.00 3 6006 \N +232416 2025-08-22 00:19:37.731798+00 2025-08-22 00:19:37.731806+00 f t ADELANTO 0.00 4 6006 \N +223089 2025-08-19 00:00:08.329548+00 2025-08-19 00:00:08.329563+00 f t SUBTOTAL 0.00 1 5793 \N +223090 2025-08-19 00:00:08.336471+00 2025-08-19 00:00:08.336486+00 f t DESCUENTO 0.00 2 5793 \N +223091 2025-08-19 00:00:08.339076+00 2025-08-19 00:00:08.339091+00 f t TOTAL 0.00 3 5793 \N +223092 2025-08-19 00:00:08.341659+00 2025-08-19 00:00:08.341673+00 f t ADELANTO 0.00 4 5793 \N +223101 2025-08-19 00:00:51.506587+00 2025-08-19 00:00:51.506601+00 f t SUBTOTAL 42000.00 1 5792 \N +223102 2025-08-19 00:00:51.509646+00 2025-08-19 00:00:51.509658+00 f t DESCUENTO 0.00 2 5792 \N +223103 2025-08-19 00:00:51.511953+00 2025-08-19 00:00:51.511965+00 f t TOTAL 42000.00 3 5792 \N +223104 2025-08-19 00:00:51.51429+00 2025-08-19 00:00:51.514302+00 f t ADELANTO 9500.00 4 5792 \N +227789 2025-08-20 13:02:22.620958+00 2025-08-20 13:02:22.62097+00 f t SUBTOTAL 50000.00 1 5894 \N +227790 2025-08-20 13:02:22.623788+00 2025-08-20 13:02:22.623801+00 f t DESCUENTO 0.00 2 5894 \N +227791 2025-08-20 13:02:22.625863+00 2025-08-20 13:02:22.625874+00 f t TOTAL 50000.00 3 5894 \N +227792 2025-08-20 13:02:22.627939+00 2025-08-20 13:02:22.627953+00 f t ADELANTO 10000.00 4 5894 \N +223149 2025-08-19 00:34:07.818888+00 2025-08-19 00:34:07.818898+00 f t SUBTOTAL 0.00 1 5794 \N +223150 2025-08-19 00:34:07.833683+00 2025-08-19 00:34:07.833696+00 f t DESCUENTO 0.00 2 5794 \N +223151 2025-08-19 00:34:07.835637+00 2025-08-19 00:34:07.835644+00 f t TOTAL 0.00 3 5794 \N +223152 2025-08-19 00:34:07.837183+00 2025-08-19 00:34:07.837191+00 f t ADELANTO 0.00 4 5794 \N +224761 2025-08-19 12:44:18.913096+00 2025-08-19 12:44:18.913105+00 f t SUBTOTAL 0.00 1 5819 \N +224762 2025-08-19 12:44:18.918024+00 2025-08-19 12:44:18.918033+00 f t DESCUENTO 0.00 2 5819 \N +224763 2025-08-19 12:44:18.919877+00 2025-08-19 12:44:18.919889+00 f t TOTAL 0.00 3 5819 \N +224764 2025-08-19 12:44:18.921739+00 2025-08-19 12:44:18.92175+00 f t ADELANTO 0.00 4 5819 \N +235525 2025-08-23 18:56:19.276189+00 2025-08-23 18:56:19.276202+00 f t SUBTOTAL 64500.00 1 6092 \N +235526 2025-08-23 18:56:19.278644+00 2025-08-23 18:56:19.278656+00 f t DESCUENTO 0.00 2 6092 \N +235527 2025-08-23 18:56:19.280394+00 2025-08-23 18:56:19.280404+00 f t TOTAL 64500.00 3 6092 \N +235528 2025-08-23 18:56:19.28203+00 2025-08-23 18:56:19.282041+00 f t ADELANTO 17000.00 4 6092 \N +223181 2025-08-19 00:38:18.259309+00 2025-08-19 00:38:18.259319+00 f t SUBTOTAL 42000.00 1 5795 \N +223182 2025-08-19 00:38:18.261221+00 2025-08-19 00:38:18.261227+00 f t DESCUENTO 0.00 2 5795 \N +223183 2025-08-19 00:38:18.262553+00 2025-08-19 00:38:18.262558+00 f t TOTAL 42000.00 3 5795 \N +223184 2025-08-19 00:38:18.263897+00 2025-08-19 00:38:18.263902+00 f t ADELANTO 9500.00 4 5795 \N +225193 2025-08-19 16:07:20.385138+00 2025-08-19 16:07:20.385147+00 f t SUBTOTAL 68000.00 1 5834 \N +225194 2025-08-19 16:07:20.387224+00 2025-08-19 16:07:20.387233+00 f t DESCUENTO 0.00 2 5834 \N +225195 2025-08-19 16:07:20.388846+00 2025-08-19 16:07:20.388855+00 f t TOTAL 68000.00 3 5834 \N +225196 2025-08-19 16:07:20.390576+00 2025-08-19 16:07:20.390584+00 f t ADELANTO 13000.00 4 5834 \N +225261 2025-08-19 16:13:01.39+00 2025-08-19 16:13:01.390011+00 f t SUBTOTAL 42000.00 1 5836 \N +225262 2025-08-19 16:13:01.39243+00 2025-08-19 16:13:01.39244+00 f t DESCUENTO 0.00 2 5836 \N +225263 2025-08-19 16:13:01.394449+00 2025-08-19 16:13:01.394463+00 f t TOTAL 42000.00 3 5836 \N +225264 2025-08-19 16:13:01.396525+00 2025-08-19 16:13:01.396533+00 f t ADELANTO 9500.00 4 5836 \N +230565 2025-08-21 09:49:51.376263+00 2025-08-21 09:49:51.376272+00 f t SUBTOTAL 50000.00 1 5968 \N +230566 2025-08-21 09:49:51.378435+00 2025-08-21 09:49:51.378442+00 f t DESCUENTO 0.00 2 5968 \N +230567 2025-08-21 09:49:51.380069+00 2025-08-21 09:49:51.380076+00 f t TOTAL 50000.00 3 5968 \N +230568 2025-08-21 09:49:51.381693+00 2025-08-21 09:49:51.381699+00 f t ADELANTO 10000.00 4 5968 \N +230697 2025-08-21 13:17:28.146503+00 2025-08-21 13:17:28.146513+00 f t SUBTOTAL 0.00 1 5972 \N +230698 2025-08-21 13:17:28.148862+00 2025-08-21 13:17:28.148872+00 f t DESCUENTO 0.00 2 5972 \N +230699 2025-08-21 13:17:28.150111+00 2025-08-21 13:17:28.150118+00 f t TOTAL 0.00 3 5972 \N +230700 2025-08-21 13:17:28.151365+00 2025-08-21 13:17:28.151373+00 f t ADELANTO 0.00 4 5972 \N +225925 2025-08-19 20:21:30.251716+00 2025-08-19 20:21:30.251728+00 f t SUBTOTAL 42000.00 1 5853 \N +225926 2025-08-19 20:21:30.254508+00 2025-08-19 20:21:30.25452+00 f t DESCUENTO 0.00 2 5853 \N +225927 2025-08-19 20:21:30.256832+00 2025-08-19 20:21:30.256843+00 f t TOTAL 42000.00 3 5853 \N +225928 2025-08-19 20:21:30.259065+00 2025-08-19 20:21:30.259077+00 f t ADELANTO 9500.00 4 5853 \N +223261 2025-08-19 01:21:51.998106+00 2025-08-19 01:21:51.998114+00 f t SUBTOTAL 50000.00 1 5796 \N +223262 2025-08-19 01:21:52.004859+00 2025-08-19 01:21:52.004869+00 f t DESCUENTO 0.00 2 5796 \N +223263 2025-08-19 01:21:52.006913+00 2025-08-19 01:21:52.00692+00 f t TOTAL 50000.00 3 5796 \N +223264 2025-08-19 01:21:52.008689+00 2025-08-19 01:21:52.008701+00 f t ADELANTO 10000.00 4 5796 \N +230985 2025-08-21 15:48:08.847373+00 2025-08-21 15:48:08.847386+00 f t SUBTOTAL 0.00 1 5977 \N +230986 2025-08-21 15:48:08.84966+00 2025-08-21 15:48:08.849672+00 f t DESCUENTO 0.00 2 5977 \N +230987 2025-08-21 15:48:08.852112+00 2025-08-21 15:48:08.852124+00 f t TOTAL 0.00 3 5977 \N +230988 2025-08-21 15:48:08.856468+00 2025-08-21 15:48:08.856482+00 f t ADELANTO 0.00 4 5977 \N +231049 2025-08-21 16:14:49.605927+00 2025-08-21 16:14:49.605939+00 f t SUBTOTAL 0.00 1 5980 \N +231050 2025-08-21 16:14:49.60737+00 2025-08-21 16:14:49.607377+00 f t DESCUENTO 0.00 2 5980 \N +231051 2025-08-21 16:14:49.608616+00 2025-08-21 16:14:49.608621+00 f t TOTAL 0.00 3 5980 \N +231052 2025-08-21 16:14:49.609729+00 2025-08-21 16:14:49.609735+00 f t ADELANTO 0.00 4 5980 \N +231165 2025-08-21 16:20:08.709501+00 2025-08-21 16:20:08.709516+00 f t SUBTOTAL 0.00 1 5983 \N +231166 2025-08-21 16:20:08.712959+00 2025-08-21 16:20:08.712971+00 f t DESCUENTO 0.00 2 5983 \N +231167 2025-08-21 16:20:08.715456+00 2025-08-21 16:20:08.715468+00 f t TOTAL 0.00 3 5983 \N +231168 2025-08-21 16:20:08.717992+00 2025-08-21 16:20:08.718005+00 f t ADELANTO 0.00 4 5983 \N +223289 2025-08-19 01:22:50.931455+00 2025-08-19 01:22:50.931463+00 f t SUBTOTAL 64500.00 1 5797 \N +223290 2025-08-19 01:22:50.933122+00 2025-08-19 01:22:50.933129+00 f t DESCUENTO 0.00 2 5797 \N +223291 2025-08-19 01:22:50.934211+00 2025-08-19 01:22:50.934217+00 f t TOTAL 64500.00 3 5797 \N +223292 2025-08-19 01:22:50.935484+00 2025-08-19 01:22:50.935534+00 f t ADELANTO 17000.00 4 5797 \N +226613 2025-08-20 00:10:16.272843+00 2025-08-20 00:10:16.272855+00 f t SUBTOTAL 0.00 1 5870 \N +226614 2025-08-20 00:10:16.275375+00 2025-08-20 00:10:16.275385+00 f t DESCUENTO 0.00 2 5870 \N +226615 2025-08-20 00:10:16.277255+00 2025-08-20 00:10:16.277266+00 f t TOTAL 0.00 3 5870 \N +226616 2025-08-20 00:10:16.278828+00 2025-08-20 00:10:16.278836+00 f t ADELANTO 0.00 4 5870 \N +223317 2025-08-19 01:25:02.79852+00 2025-08-19 01:25:02.798533+00 f t SUBTOTAL 27500.00 1 5798 \N +223318 2025-08-19 01:25:02.804475+00 2025-08-19 01:25:02.804489+00 f t DESCUENTO 0.00 2 5798 \N +223319 2025-08-19 01:25:02.80775+00 2025-08-19 01:25:02.807763+00 f t TOTAL 27500.00 3 5798 \N +223320 2025-08-19 01:25:02.812783+00 2025-08-19 01:25:02.812795+00 f t ADELANTO 27500.00 4 5798 \N +223333 2025-08-19 01:45:39.896258+00 2025-08-19 01:45:39.896267+00 f t SUBTOTAL 0.00 1 5799 \N +223334 2025-08-19 01:45:39.898708+00 2025-08-19 01:45:39.898719+00 f t DESCUENTO 0.00 2 5799 \N +223335 2025-08-19 01:45:39.900462+00 2025-08-19 01:45:39.900469+00 f t TOTAL 0.00 3 5799 \N +223336 2025-08-19 01:45:39.901794+00 2025-08-19 01:45:39.9018+00 f t ADELANTO 0.00 4 5799 \N +223361 2025-08-19 02:18:00.40929+00 2025-08-19 02:18:00.409299+00 f t SUBTOTAL 42000.00 1 5800 \N +223362 2025-08-19 02:18:00.411932+00 2025-08-19 02:18:00.41194+00 f t DESCUENTO 0.00 2 5800 \N +223363 2025-08-19 02:18:00.413115+00 2025-08-19 02:18:00.413121+00 f t TOTAL 42000.00 3 5800 \N +223364 2025-08-19 02:18:00.414392+00 2025-08-19 02:18:00.4144+00 f t ADELANTO 9500.00 4 5800 \N +227237 2025-08-20 04:13:24.125583+00 2025-08-20 04:13:24.125592+00 f t SUBTOTAL 58800.00 1 5884 \N +227238 2025-08-20 04:13:24.127325+00 2025-08-20 04:13:24.127332+00 f t DESCUENTO 0.00 2 5884 \N +227239 2025-08-20 04:13:24.128364+00 2025-08-20 04:13:24.128369+00 f t TOTAL 58800.00 3 5884 \N +227240 2025-08-20 04:13:24.129265+00 2025-08-20 04:13:24.12927+00 f t ADELANTO 14300.00 4 5884 \N +223429 2025-08-19 02:35:06.647032+00 2025-08-19 02:35:06.647044+00 f t SUBTOTAL 27500.00 1 5801 \N +223430 2025-08-19 02:35:06.64917+00 2025-08-19 02:35:06.64919+00 f t DESCUENTO 0.00 2 5801 \N +223431 2025-08-19 02:35:06.65104+00 2025-08-19 02:35:06.651051+00 f t TOTAL 27500.00 3 5801 \N +223432 2025-08-19 02:35:06.653576+00 2025-08-19 02:35:06.653588+00 f t ADELANTO 27500.00 4 5801 \N +235437 2025-08-23 16:26:22.616388+00 2025-08-23 16:26:22.616397+00 f t SUBTOTAL 49500.00 1 6089 \N +235438 2025-08-23 16:26:22.618613+00 2025-08-23 16:26:22.618625+00 f t DESCUENTO 0.00 2 6089 \N +235439 2025-08-23 16:26:22.620625+00 2025-08-23 16:26:22.620637+00 f t TOTAL 49500.00 3 6089 \N +235440 2025-08-23 16:26:22.622411+00 2025-08-23 16:26:22.622422+00 f t ADELANTO 11500.00 4 6089 \N +224769 2025-08-19 12:44:22.636153+00 2025-08-19 12:44:22.636168+00 f t SUBTOTAL 0.00 1 5820 \N +224770 2025-08-19 12:44:22.639453+00 2025-08-19 12:44:22.639461+00 f t DESCUENTO 0.00 2 5820 \N +224771 2025-08-19 12:44:22.641814+00 2025-08-19 12:44:22.641821+00 f t TOTAL 0.00 3 5820 \N +224772 2025-08-19 12:44:22.643496+00 2025-08-19 12:44:22.643503+00 f t ADELANTO 0.00 4 5820 \N +223477 2025-08-19 02:49:01.493231+00 2025-08-19 02:49:01.493245+00 f t SUBTOTAL 49700.00 1 5802 \N +223478 2025-08-19 02:49:01.497118+00 2025-08-19 02:49:01.497131+00 f t DESCUENTO 0.00 2 5802 \N +223479 2025-08-19 02:49:01.499915+00 2025-08-19 02:49:01.499928+00 f t TOTAL 49700.00 3 5802 \N +223480 2025-08-19 02:49:01.506253+00 2025-08-19 02:49:01.506268+00 f t ADELANTO 11700.00 4 5802 \N +230349 2025-08-21 02:11:14.665593+00 2025-08-21 02:11:14.665604+00 f t SUBTOTAL 0.00 1 5962 \N +230350 2025-08-21 02:11:14.667077+00 2025-08-21 02:11:14.667084+00 f t DESCUENTO 0.00 2 5962 \N +230351 2025-08-21 02:11:14.66849+00 2025-08-21 02:11:14.668498+00 f t TOTAL 0.00 3 5962 \N +230352 2025-08-21 02:11:14.669744+00 2025-08-21 02:11:14.66975+00 f t ADELANTO 0.00 4 5962 \N +235781 2025-08-23 20:39:57.895095+00 2025-08-23 20:39:57.895107+00 f t SUBTOTAL 50000.00 1 6091 \N +235782 2025-08-23 20:39:57.897346+00 2025-08-23 20:39:57.897354+00 f t DESCUENTO 0.00 2 6091 \N +235783 2025-08-23 20:39:57.898752+00 2025-08-23 20:39:57.898758+00 f t TOTAL 50000.00 3 6091 \N +235784 2025-08-23 20:39:57.900014+00 2025-08-23 20:39:57.90002+00 f t ADELANTO 10000.00 4 6091 \N +225269 2025-08-19 16:33:26.268327+00 2025-08-19 16:33:26.268339+00 f t SUBTOTAL 0.00 1 5837 \N +225270 2025-08-19 16:33:26.270078+00 2025-08-19 16:33:26.270087+00 f t DESCUENTO 0.00 2 5837 \N +225271 2025-08-19 16:33:26.271751+00 2025-08-19 16:33:26.271758+00 f t TOTAL 0.00 3 5837 \N +225272 2025-08-19 16:33:26.273006+00 2025-08-19 16:33:26.273015+00 f t ADELANTO 0.00 4 5837 \N +236165 2025-08-23 23:48:31.683574+00 2025-08-23 23:48:31.683586+00 f t SUBTOTAL 0.00 1 6106 \N +236166 2025-08-23 23:48:31.68685+00 2025-08-23 23:48:31.686859+00 f t DESCUENTO 0.00 2 6106 \N +236167 2025-08-23 23:48:31.688821+00 2025-08-23 23:48:31.688833+00 f t TOTAL 0.00 3 6106 \N +236168 2025-08-23 23:48:31.690565+00 2025-08-23 23:48:31.690575+00 f t ADELANTO 0.00 4 6106 \N +236241 2025-08-23 23:51:11.122289+00 2025-08-23 23:51:11.1223+00 f t SUBTOTAL 50000.00 1 6108 \N +223517 2025-08-19 02:54:40.486698+00 2025-08-19 02:54:40.486706+00 f t SUBTOTAL 0.00 1 5803 \N +223518 2025-08-19 02:54:40.488702+00 2025-08-19 02:54:40.488709+00 f t DESCUENTO 0.00 2 5803 \N +223519 2025-08-19 02:54:40.490696+00 2025-08-19 02:54:40.490703+00 f t TOTAL 0.00 3 5803 \N +223520 2025-08-19 02:54:40.491955+00 2025-08-19 02:54:40.491961+00 f t ADELANTO 0.00 4 5803 \N +223525 2025-08-19 03:31:51.781105+00 2025-08-19 03:31:51.781118+00 f t SUBTOTAL 0.00 1 5804 \N +223526 2025-08-19 03:31:51.782973+00 2025-08-19 03:31:51.782984+00 f t DESCUENTO 0.00 2 5804 \N +223527 2025-08-19 03:31:51.784762+00 2025-08-19 03:31:51.784772+00 f t TOTAL 0.00 3 5804 \N +223528 2025-08-19 03:31:51.786696+00 2025-08-19 03:31:51.786707+00 f t ADELANTO 0.00 4 5804 \N +225665 2025-08-19 18:39:36.272816+00 2025-08-19 18:39:36.272828+00 f t SUBTOTAL 0.00 1 5846 \N +225666 2025-08-19 18:39:36.274925+00 2025-08-19 18:39:36.274933+00 f t DESCUENTO 0.00 2 5846 \N +225667 2025-08-19 18:39:36.276187+00 2025-08-19 18:39:36.276193+00 f t TOTAL 0.00 3 5846 \N +225668 2025-08-19 18:39:36.277434+00 2025-08-19 18:39:36.277439+00 f t ADELANTO 0.00 4 5846 \N +231441 2025-08-21 17:35:37.973642+00 2025-08-21 17:35:37.973651+00 f t SUBTOTAL 99000.00 1 5988 \N +231442 2025-08-21 17:35:37.975406+00 2025-08-21 17:35:37.975413+00 f t DESCUENTO 0.00 2 5988 \N +231443 2025-08-21 17:35:37.97686+00 2025-08-21 17:35:37.976867+00 f t TOTAL 99000.00 3 5988 \N +231444 2025-08-21 17:35:37.977992+00 2025-08-21 17:35:37.977998+00 f t ADELANTO 23000.00 4 5988 \N +226681 2025-08-20 00:16:30.05438+00 2025-08-20 00:16:30.05439+00 f t SUBTOTAL 92000.00 1 5872 \N +226682 2025-08-20 00:16:30.056298+00 2025-08-20 00:16:30.056308+00 f t DESCUENTO 0.00 2 5872 \N +226683 2025-08-20 00:16:30.057546+00 2025-08-20 00:16:30.057553+00 f t TOTAL 92000.00 3 5872 \N +226684 2025-08-20 00:16:30.058759+00 2025-08-20 00:16:30.058765+00 f t ADELANTO 19500.00 4 5872 \N +226797 2025-08-20 00:32:09.353325+00 2025-08-20 00:32:09.353334+00 f t SUBTOTAL 0.00 1 5875 \N +226798 2025-08-20 00:32:09.355682+00 2025-08-20 00:32:09.355691+00 f t DESCUENTO 0.00 2 5875 \N +226799 2025-08-20 00:32:09.356911+00 2025-08-20 00:32:09.356917+00 f t TOTAL 0.00 3 5875 \N +226800 2025-08-20 00:32:09.357949+00 2025-08-20 00:32:09.357957+00 f t ADELANTO 0.00 4 5875 \N +231753 2025-08-21 19:32:46.216232+00 2025-08-21 19:32:46.216243+00 f t SUBTOTAL 0.00 1 5994 \N +231754 2025-08-21 19:32:46.218812+00 2025-08-21 19:32:46.218825+00 f t DESCUENTO 0.00 2 5994 \N +231755 2025-08-21 19:32:46.220945+00 2025-08-21 19:32:46.220957+00 f t TOTAL 0.00 3 5994 \N +231756 2025-08-21 19:32:46.222826+00 2025-08-21 19:32:46.222838+00 f t ADELANTO 0.00 4 5994 \N +231865 2025-08-21 20:44:19.120258+00 2025-08-21 20:44:19.120268+00 f t SUBTOTAL 42000.00 1 5997 \N +231866 2025-08-21 20:44:19.122435+00 2025-08-21 20:44:19.122446+00 f t DESCUENTO 0.00 2 5997 \N +231867 2025-08-21 20:44:19.123963+00 2025-08-21 20:44:19.123973+00 f t TOTAL 42000.00 3 5997 \N +231868 2025-08-21 20:44:19.125597+00 2025-08-21 20:44:19.125604+00 f t ADELANTO 9500.00 4 5997 \N +227245 2025-08-20 05:18:41.676927+00 2025-08-20 05:18:41.676935+00 f t SUBTOTAL 0.00 1 5885 \N +227246 2025-08-20 05:18:41.678256+00 2025-08-20 05:18:41.678263+00 f t DESCUENTO 0.00 2 5885 \N +227247 2025-08-20 05:18:41.679851+00 2025-08-20 05:18:41.679857+00 f t TOTAL 0.00 3 5885 \N +227248 2025-08-20 05:18:41.680911+00 2025-08-20 05:18:41.680916+00 f t ADELANTO 0.00 4 5885 \N +232317 2025-08-21 21:52:44.528586+00 2025-08-21 21:52:44.5286+00 f t SUBTOTAL 0.00 1 6003 \N +232318 2025-08-21 21:52:44.531968+00 2025-08-21 21:52:44.531979+00 f t DESCUENTO 0.00 2 6003 \N +232319 2025-08-21 21:52:44.53371+00 2025-08-21 21:52:44.533717+00 f t TOTAL 0.00 3 6003 \N +232320 2025-08-21 21:52:44.535221+00 2025-08-21 21:52:44.53523+00 f t ADELANTO 0.00 4 6003 \N +232469 2025-08-22 01:00:27.440107+00 2025-08-22 01:00:27.440121+00 f t SUBTOTAL 0.00 1 6008 \N +232470 2025-08-22 01:00:27.445315+00 2025-08-22 01:00:27.445329+00 f t DESCUENTO 0.00 2 6008 \N +232471 2025-08-22 01:00:27.447723+00 2025-08-22 01:00:27.447736+00 f t TOTAL 0.00 3 6008 \N +232472 2025-08-22 01:00:27.450047+00 2025-08-22 01:00:27.45006+00 f t ADELANTO 0.00 4 6008 \N +232633 2025-08-22 04:55:33.531025+00 2025-08-22 04:55:33.531037+00 f t SUBTOTAL 0.00 1 6016 \N +232634 2025-08-22 04:55:33.53347+00 2025-08-22 04:55:33.533479+00 f t DESCUENTO 0.00 2 6016 \N +232635 2025-08-22 04:55:33.534955+00 2025-08-22 04:55:33.534961+00 f t TOTAL 0.00 3 6016 \N +232636 2025-08-22 04:55:33.536194+00 2025-08-22 04:55:33.5362+00 f t ADELANTO 0.00 4 6016 \N +232769 2025-08-22 11:29:12.322024+00 2025-08-22 11:29:12.322035+00 f t SUBTOTAL 42000.00 1 6019 \N +232770 2025-08-22 11:29:12.324207+00 2025-08-22 11:29:12.324219+00 f t DESCUENTO 0.00 2 6019 \N +232771 2025-08-22 11:29:12.326104+00 2025-08-22 11:29:12.326115+00 f t TOTAL 42000.00 3 6019 \N +232772 2025-08-22 11:29:12.328134+00 2025-08-22 11:29:12.328143+00 f t ADELANTO 9500.00 4 6019 \N +362552 2025-10-07 20:57:56.601443+00 2025-10-07 20:57:56.601451+00 f t ADELANTO 0.00 4 9103 \N +224513 2025-08-19 11:39:06.515474+00 2025-08-19 11:39:06.515486+00 f t SUBTOTAL 42000.00 1 5813 \N +224514 2025-08-19 11:39:06.518273+00 2025-08-19 11:39:06.518287+00 f t DESCUENTO 0.00 2 5813 \N +224515 2025-08-19 11:39:06.520759+00 2025-08-19 11:39:06.520771+00 f t TOTAL 42000.00 3 5813 \N +224516 2025-08-19 11:39:06.522768+00 2025-08-19 11:39:06.52278+00 f t ADELANTO 9500.00 4 5813 \N +240773 2025-08-25 18:40:17.432415+00 2025-08-25 18:40:17.432428+00 f t SUBTOTAL 0.00 1 6217 \N +240774 2025-08-25 18:40:17.438427+00 2025-08-25 18:40:17.438441+00 f t DESCUENTO 0.00 2 6217 \N +240775 2025-08-25 18:40:17.440838+00 2025-08-25 18:40:17.44085+00 f t TOTAL 0.00 3 6217 \N +240776 2025-08-25 18:40:17.442653+00 2025-08-25 18:40:17.442664+00 f t ADELANTO 0.00 4 6217 \N +224997 2025-08-19 14:06:22.908074+00 2025-08-19 14:06:22.908087+00 f t SUBTOTAL 0.00 1 5828 \N +224998 2025-08-19 14:06:22.911078+00 2025-08-19 14:06:22.911088+00 f t DESCUENTO 0.00 2 5828 \N +224999 2025-08-19 14:06:22.91427+00 2025-08-19 14:06:22.91428+00 f t TOTAL 0.00 3 5828 \N +225000 2025-08-19 14:06:22.916248+00 2025-08-19 14:06:22.916257+00 f t ADELANTO 0.00 4 5828 \N +235701 2025-08-23 20:07:12.337303+00 2025-08-23 20:07:12.337315+00 f t SUBTOTAL 50000.00 1 6096 \N +235702 2025-08-23 20:07:12.339861+00 2025-08-23 20:07:12.33987+00 f t DESCUENTO 0.00 2 6096 \N +235703 2025-08-23 20:07:12.341979+00 2025-08-23 20:07:12.341987+00 f t TOTAL 50000.00 3 6096 \N +235704 2025-08-23 20:07:12.34395+00 2025-08-23 20:07:12.343963+00 f t ADELANTO 10000.00 4 6096 \N +236242 2025-08-23 23:51:11.124578+00 2025-08-23 23:51:11.124589+00 f t DESCUENTO 0.00 2 6108 \N +236243 2025-08-23 23:51:11.126399+00 2025-08-23 23:51:11.126408+00 f t TOTAL 50000.00 3 6108 \N +236244 2025-08-23 23:51:11.128128+00 2025-08-23 23:51:11.128138+00 f t ADELANTO 10000.00 4 6108 \N +225869 2025-08-19 19:45:36.793223+00 2025-08-19 19:45:36.793233+00 f t SUBTOTAL 50000.00 1 5851 \N +225870 2025-08-19 19:45:36.795035+00 2025-08-19 19:45:36.795042+00 f t DESCUENTO 0.00 2 5851 \N +225871 2025-08-19 19:45:36.796472+00 2025-08-19 19:45:36.796479+00 f t TOTAL 50000.00 3 5851 \N +225872 2025-08-19 19:45:36.797814+00 2025-08-19 19:45:36.797822+00 f t ADELANTO 10000.00 4 5851 \N +231285 2025-08-21 17:20:53.42663+00 2025-08-21 17:20:53.426642+00 f t SUBTOTAL 95000.00 1 5985 \N +231286 2025-08-21 17:20:53.428464+00 2025-08-21 17:20:53.428472+00 f t DESCUENTO 0.00 2 5985 \N +231287 2025-08-21 17:20:53.430463+00 2025-08-21 17:20:53.43047+00 f t TOTAL 95000.00 3 5985 \N +231288 2025-08-21 17:20:53.432291+00 2025-08-21 17:20:53.432298+00 f t ADELANTO 10000.00 4 5985 \N +226064 2025-08-19 21:26:06.04725+00 2025-08-19 21:26:06.047258+00 f t SUBTOTAL 0.00 1 5856 \N +226065 2025-08-19 21:26:06.049241+00 2025-08-19 21:26:06.04925+00 f t DESCUENTO 0.00 2 5856 \N +226067 2025-08-19 21:26:06.051937+00 2025-08-19 21:26:06.051945+00 f t TOTAL 0.00 3 5856 \N +226068 2025-08-19 21:26:06.053766+00 2025-08-19 21:26:06.053775+00 f t ADELANTO 0.00 4 5856 \N +236825 2025-08-24 11:52:37.264351+00 2025-08-24 11:52:37.264364+00 f t SUBTOTAL 0.00 1 6121 \N +236826 2025-08-24 11:52:37.26608+00 2025-08-24 11:52:37.266091+00 f t DESCUENTO 0.00 2 6121 \N +236827 2025-08-24 11:52:37.267549+00 2025-08-24 11:52:37.267557+00 f t TOTAL 0.00 3 6121 \N +236828 2025-08-24 11:52:37.269192+00 2025-08-24 11:52:37.2692+00 f t ADELANTO 0.00 4 6121 \N +237077 2025-08-24 14:05:11.619419+00 2025-08-24 14:05:11.619429+00 f t SUBTOTAL 50000.00 1 6128 \N +237078 2025-08-24 14:05:11.621846+00 2025-08-24 14:05:11.621856+00 f t DESCUENTO 0.00 2 6128 \N +237079 2025-08-24 14:05:11.623966+00 2025-08-24 14:05:11.623976+00 f t TOTAL 50000.00 3 6128 \N +237080 2025-08-24 14:05:11.625837+00 2025-08-24 14:05:11.625847+00 f t ADELANTO 10000.00 4 6128 \N +237141 2025-08-24 15:44:16.710706+00 2025-08-24 15:44:16.710716+00 f t SUBTOTAL 50000.00 1 6130 \N +237142 2025-08-24 15:44:16.712433+00 2025-08-24 15:44:16.71244+00 f t DESCUENTO 0.00 2 6130 \N +237143 2025-08-24 15:44:16.713617+00 2025-08-24 15:44:16.713622+00 f t TOTAL 50000.00 3 6130 \N +231761 2025-08-21 19:38:20.95417+00 2025-08-21 19:38:20.95418+00 f t SUBTOTAL 0.00 1 5995 \N +231762 2025-08-21 19:38:20.955708+00 2025-08-21 19:38:20.955716+00 f t DESCUENTO 0.00 2 5995 \N +231763 2025-08-21 19:38:20.957186+00 2025-08-21 19:38:20.957192+00 f t TOTAL 0.00 3 5995 \N +231764 2025-08-21 19:38:20.958851+00 2025-08-21 19:38:20.958858+00 f t ADELANTO 0.00 4 5995 \N +237144 2025-08-24 15:44:16.714515+00 2025-08-24 15:44:16.71452+00 f t ADELANTO 10000.00 4 6130 \N +232265 2025-08-21 21:24:04.387652+00 2025-08-21 21:24:04.387664+00 f t SUBTOTAL 49500.00 1 6000 \N +232266 2025-08-21 21:24:04.38989+00 2025-08-21 21:24:04.389902+00 f t DESCUENTO 0.00 2 6000 \N +232267 2025-08-21 21:24:04.391711+00 2025-08-21 21:24:04.39172+00 f t TOTAL 49500.00 3 6000 \N +232268 2025-08-21 21:24:04.393564+00 2025-08-21 21:24:04.393574+00 f t ADELANTO 11500.00 4 6000 \N +232325 2025-08-21 22:58:18.626664+00 2025-08-21 22:58:18.626673+00 f t SUBTOTAL 0.00 1 6004 \N +232326 2025-08-21 22:58:18.627993+00 2025-08-21 22:58:18.627999+00 f t DESCUENTO 0.00 2 6004 \N +232327 2025-08-21 22:58:18.630358+00 2025-08-21 22:58:18.630364+00 f t TOTAL 0.00 3 6004 \N +232328 2025-08-21 22:58:18.631896+00 2025-08-21 22:58:18.631902+00 f t ADELANTO 0.00 4 6004 \N +237913 2025-08-24 21:44:06.430987+00 2025-08-24 21:44:06.430997+00 f t SUBTOTAL 0.00 1 6148 \N +237914 2025-08-24 21:44:06.433054+00 2025-08-24 21:44:06.433062+00 f t DESCUENTO 0.00 2 6148 \N +237915 2025-08-24 21:44:06.434588+00 2025-08-24 21:44:06.434596+00 f t TOTAL 0.00 3 6148 \N +237916 2025-08-24 21:44:06.435668+00 2025-08-24 21:44:06.435676+00 f t ADELANTO 0.00 4 6148 \N +232477 2025-08-22 02:20:15.834406+00 2025-08-22 02:20:15.834418+00 f t SUBTOTAL 0.00 1 6009 \N +232478 2025-08-22 02:20:15.836316+00 2025-08-22 02:20:15.836327+00 f t DESCUENTO 0.00 2 6009 \N +232479 2025-08-22 02:20:15.838114+00 2025-08-22 02:20:15.838125+00 f t TOTAL 0.00 3 6009 \N +232480 2025-08-22 02:20:15.839709+00 2025-08-22 02:20:15.83972+00 f t ADELANTO 0.00 4 6009 \N +238265 2025-08-24 23:46:35.928592+00 2025-08-24 23:46:35.928607+00 f t SUBTOTAL 0.00 1 6159 \N +238266 2025-08-24 23:46:35.930001+00 2025-08-24 23:46:35.930008+00 f t DESCUENTO 0.00 2 6159 \N +238267 2025-08-24 23:46:35.931409+00 2025-08-24 23:46:35.931416+00 f t TOTAL 0.00 3 6159 \N +238268 2025-08-24 23:46:35.932815+00 2025-08-24 23:46:35.93282+00 f t ADELANTO 0.00 4 6159 \N +223997 2025-08-19 05:42:20.13313+00 2025-08-19 05:42:20.133139+00 f t SUBTOTAL 76000.00 1 5805 \N +223998 2025-08-19 05:42:20.135036+00 2025-08-19 05:42:20.135043+00 f t DESCUENTO 0.00 2 5805 \N +223999 2025-08-19 05:42:20.136587+00 2025-08-19 05:42:20.136593+00 f t TOTAL 76000.00 3 5805 \N +224000 2025-08-19 05:42:20.138099+00 2025-08-19 05:42:20.138107+00 f t ADELANTO 11000.00 4 5805 \N +227817 2025-08-20 13:13:59.483702+00 2025-08-20 13:13:59.483714+00 f t SUBTOTAL 123500.00 1 5895 \N +227818 2025-08-20 13:13:59.48555+00 2025-08-20 13:13:59.48556+00 f t DESCUENTO 0.00 2 5895 \N +227819 2025-08-20 13:13:59.486933+00 2025-08-20 13:13:59.486942+00 f t TOTAL 123500.00 3 5895 \N +227820 2025-08-20 13:13:59.48839+00 2025-08-20 13:13:59.488399+00 f t ADELANTO 26000.00 4 5895 \N +232977 2025-08-22 13:40:35.96898+00 2025-08-22 13:40:35.968992+00 f t SUBTOTAL 95700.00 1 6024 \N +232978 2025-08-22 13:40:35.972153+00 2025-08-22 13:40:35.972165+00 f t DESCUENTO 0.00 2 6024 \N +232979 2025-08-22 13:40:35.97427+00 2025-08-22 13:40:35.974281+00 f t TOTAL 95700.00 3 6024 \N +232980 2025-08-22 13:40:35.978657+00 2025-08-22 13:40:35.978672+00 f t ADELANTO 57700.00 4 6024 \N +229893 2025-08-21 00:35:15.512554+00 2025-08-21 00:35:15.512567+00 f t SUBTOTAL 76000.00 1 5953 \N +229894 2025-08-21 00:35:15.514929+00 2025-08-21 00:35:15.51494+00 f t DESCUENTO 0.00 2 5953 \N +229895 2025-08-21 00:35:15.516531+00 2025-08-21 00:35:15.516541+00 f t TOTAL 76000.00 3 5953 \N +229896 2025-08-21 00:35:15.51819+00 2025-08-21 00:35:15.518199+00 f t ADELANTO 11000.00 4 5953 \N +230053 2025-08-21 01:25:26.98822+00 2025-08-21 01:25:26.988231+00 f t SUBTOTAL 27500.00 1 5955 \N +230054 2025-08-21 01:25:26.989995+00 2025-08-21 01:25:26.990003+00 f t DESCUENTO 0.00 2 5955 \N +230055 2025-08-21 01:25:26.99116+00 2025-08-21 01:25:26.991167+00 f t TOTAL 27500.00 3 5955 \N +230056 2025-08-21 01:25:26.992228+00 2025-08-21 01:25:26.992234+00 f t ADELANTO 27500.00 4 5955 \N +230273 2025-08-21 01:34:15.088438+00 2025-08-21 01:34:15.088451+00 f t SUBTOTAL 27500.00 1 5958 \N +230274 2025-08-21 01:34:15.090376+00 2025-08-21 01:34:15.090386+00 f t DESCUENTO 0.00 2 5958 \N +230275 2025-08-21 01:34:15.092253+00 2025-08-21 01:34:15.092262+00 f t TOTAL 27500.00 3 5958 \N +230276 2025-08-21 01:34:15.093964+00 2025-08-21 01:34:15.093973+00 f t ADELANTO 27500.00 4 5958 \N +230357 2025-08-21 02:12:12.700186+00 2025-08-21 02:12:12.700196+00 f t SUBTOTAL 0.00 1 5961 \N +230358 2025-08-21 02:12:12.702909+00 2025-08-21 02:12:12.702918+00 f t DESCUENTO 0.00 2 5961 \N +230359 2025-08-21 02:12:12.705094+00 2025-08-21 02:12:12.705103+00 f t TOTAL 0.00 3 5961 \N +230360 2025-08-21 02:12:12.706647+00 2025-08-21 02:12:12.706655+00 f t ADELANTO 0.00 4 5961 \N +225005 2025-08-19 14:16:43.593632+00 2025-08-19 14:16:43.593646+00 f t SUBTOTAL 0.00 1 5829 \N +225006 2025-08-19 14:16:43.596448+00 2025-08-19 14:16:43.596462+00 f t DESCUENTO 0.00 2 5829 \N +225007 2025-08-19 14:16:43.598426+00 2025-08-19 14:16:43.598437+00 f t TOTAL 0.00 3 5829 \N +225008 2025-08-19 14:16:43.601189+00 2025-08-19 14:16:43.601201+00 f t ADELANTO 0.00 4 5829 \N +225073 2025-08-19 14:44:10.547064+00 2025-08-19 14:44:10.547076+00 f t SUBTOTAL 50000.00 1 5831 \N +225074 2025-08-19 14:44:10.549404+00 2025-08-19 14:44:10.549413+00 f t DESCUENTO 0.00 2 5831 \N +225075 2025-08-19 14:44:10.551094+00 2025-08-19 14:44:10.551103+00 f t TOTAL 50000.00 3 5831 \N +225076 2025-08-19 14:44:10.554732+00 2025-08-19 14:44:10.554741+00 f t ADELANTO 10000.00 4 5831 \N +230581 2025-08-21 10:14:25.645701+00 2025-08-21 10:14:25.64571+00 f t SUBTOTAL 0.00 1 5969 \N +230582 2025-08-21 10:14:25.648486+00 2025-08-21 10:14:25.648498+00 f t DESCUENTO 0.00 2 5969 \N +230583 2025-08-21 10:14:25.650355+00 2025-08-21 10:14:25.650363+00 f t TOTAL 0.00 3 5969 \N +230584 2025-08-21 10:14:25.651866+00 2025-08-21 10:14:25.651874+00 f t ADELANTO 0.00 4 5969 \N +225405 2025-08-19 16:40:34.04732+00 2025-08-19 16:40:34.047334+00 f t SUBTOTAL 0.00 1 5838 \N +225406 2025-08-19 16:40:34.052645+00 2025-08-19 16:40:34.052659+00 f t DESCUENTO 0.00 2 5838 \N +225407 2025-08-19 16:40:34.059531+00 2025-08-19 16:40:34.059544+00 f t TOTAL 0.00 3 5838 \N +225408 2025-08-19 16:40:34.062016+00 2025-08-19 16:40:34.062029+00 f t ADELANTO 0.00 4 5838 \N +225537 2025-08-19 17:41:47.244941+00 2025-08-19 17:41:47.244953+00 f t SUBTOTAL 129000.00 1 5842 \N +225538 2025-08-19 17:41:47.247755+00 2025-08-19 17:41:47.247767+00 f t DESCUENTO 0.00 2 5842 \N +225539 2025-08-19 17:41:47.250256+00 2025-08-19 17:41:47.250267+00 f t TOTAL 129000.00 3 5842 \N +225540 2025-08-19 17:41:47.251874+00 2025-08-19 17:41:47.251885+00 f t ADELANTO 34000.00 4 5842 \N +236249 2025-08-24 00:45:43.478394+00 2025-08-24 00:45:43.478406+00 f t SUBTOTAL 0.00 1 6109 \N +236250 2025-08-24 00:45:43.480144+00 2025-08-24 00:45:43.480155+00 f t DESCUENTO 0.00 2 6109 \N +236251 2025-08-24 00:45:43.481862+00 2025-08-24 00:45:43.481872+00 f t TOTAL 0.00 3 6109 \N +236252 2025-08-24 00:45:43.483264+00 2025-08-24 00:45:43.483272+00 f t ADELANTO 0.00 4 6109 \N +226061 2025-08-19 21:26:06.042612+00 2025-08-19 21:26:06.042621+00 f t SUBTOTAL 42000.00 1 5856 \N +226062 2025-08-19 21:26:06.045236+00 2025-08-19 21:26:06.045249+00 f t DESCUENTO 0.00 2 5856 \N +226063 2025-08-19 21:26:06.047187+00 2025-08-19 21:26:06.047196+00 f t TOTAL 42000.00 3 5856 \N +226066 2025-08-19 21:26:06.050625+00 2025-08-19 21:26:06.050634+00 f t ADELANTO 0.00 4 5856 \N +236513 2025-08-24 02:29:40.644991+00 2025-08-24 02:29:40.645004+00 f t SUBTOTAL 88000.00 1 6113 \N +236514 2025-08-24 02:29:40.64708+00 2025-08-24 02:29:40.647088+00 f t DESCUENTO 0.00 2 6113 \N +236515 2025-08-24 02:29:40.648549+00 2025-08-24 02:29:40.648557+00 f t TOTAL 88000.00 3 6113 \N +236516 2025-08-24 02:29:40.649933+00 2025-08-24 02:29:40.649941+00 f t ADELANTO 19000.00 4 6113 \N +226505 2025-08-19 23:35:15.668948+00 2025-08-19 23:35:15.66896+00 f t SUBTOTAL 42000.00 1 5868 \N +226506 2025-08-19 23:35:15.671442+00 2025-08-19 23:35:15.671453+00 f t DESCUENTO 0.00 2 5868 \N +226507 2025-08-19 23:35:15.673314+00 2025-08-19 23:35:15.673323+00 f t TOTAL 42000.00 3 5868 \N +226508 2025-08-19 23:35:15.674859+00 2025-08-19 23:35:15.674868+00 f t ADELANTO 9500.00 4 5868 \N +231557 2025-08-21 18:52:14.015417+00 2025-08-21 18:52:14.015425+00 f t SUBTOTAL 0.00 1 5991 \N +231558 2025-08-21 18:52:14.01745+00 2025-08-21 18:52:14.01746+00 f t DESCUENTO 0.00 2 5991 \N +231559 2025-08-21 18:52:14.019025+00 2025-08-21 18:52:14.019031+00 f t TOTAL 0.00 3 5991 \N +231560 2025-08-21 18:52:14.020899+00 2025-08-21 18:52:14.020906+00 f t ADELANTO 0.00 4 5991 \N +226969 2025-08-20 01:42:15.638222+00 2025-08-20 01:42:15.638231+00 f t SUBTOTAL 64500.00 1 5880 \N +226970 2025-08-20 01:42:15.654195+00 2025-08-20 01:42:15.654204+00 f t DESCUENTO 0.00 2 5880 \N +226971 2025-08-20 01:42:15.656381+00 2025-08-20 01:42:15.656393+00 f t TOTAL 64500.00 3 5880 \N +226972 2025-08-20 01:42:15.658233+00 2025-08-20 01:42:15.65824+00 f t ADELANTO 17000.00 4 5880 \N +224201 2025-08-19 06:40:01.520409+00 2025-08-19 06:40:01.520424+00 f t SUBTOTAL 0.00 1 5806 \N +224202 2025-08-19 06:40:01.526102+00 2025-08-19 06:40:01.526115+00 f t DESCUENTO 0.00 2 5806 \N +224203 2025-08-19 06:40:01.529969+00 2025-08-19 06:40:01.529983+00 f t TOTAL 0.00 3 5806 \N +224204 2025-08-19 06:40:01.532899+00 2025-08-19 06:40:01.532915+00 f t ADELANTO 0.00 4 5806 \N +224209 2025-08-19 06:45:26.984779+00 2025-08-19 06:45:26.984791+00 f t SUBTOTAL 0.00 1 5807 \N +224210 2025-08-19 06:45:26.986743+00 2025-08-19 06:45:26.986751+00 f t DESCUENTO 0.00 2 5807 \N +224211 2025-08-19 06:45:26.988456+00 2025-08-19 06:45:26.988464+00 f t TOTAL 0.00 3 5807 \N +224212 2025-08-19 06:45:26.989932+00 2025-08-19 06:45:26.98994+00 f t ADELANTO 0.00 4 5807 \N +227577 2025-08-20 12:05:30.816672+00 2025-08-20 12:05:30.816681+00 f t SUBTOTAL 0.00 1 5890 \N +227578 2025-08-20 12:05:30.818944+00 2025-08-20 12:05:30.818952+00 f t DESCUENTO 0.00 2 5890 \N +227579 2025-08-20 12:05:30.822349+00 2025-08-20 12:05:30.822358+00 f t TOTAL 0.00 3 5890 \N +227580 2025-08-20 12:05:30.823856+00 2025-08-20 12:05:30.823863+00 f t ADELANTO 0.00 4 5890 \N +232581 2025-08-22 03:24:22.997095+00 2025-08-22 03:24:22.997104+00 f t SUBTOTAL 0.00 1 6012 \N +232582 2025-08-22 03:24:22.999321+00 2025-08-22 03:24:22.999331+00 f t DESCUENTO 0.00 2 6012 \N +232583 2025-08-22 03:24:23.000782+00 2025-08-22 03:24:23.000792+00 f t TOTAL 0.00 3 6012 \N +232584 2025-08-22 03:24:23.002948+00 2025-08-22 03:24:23.002959+00 f t ADELANTO 0.00 4 6012 \N +232857 2025-08-22 11:53:20.803667+00 2025-08-22 11:53:20.803677+00 f t SUBTOTAL 0.00 1 6021 \N +232858 2025-08-22 11:53:20.805807+00 2025-08-22 11:53:20.805815+00 f t DESCUENTO 0.00 2 6021 \N +232859 2025-08-22 11:53:20.807323+00 2025-08-22 11:53:20.807334+00 f t TOTAL 0.00 3 6021 \N +232860 2025-08-22 11:53:20.80918+00 2025-08-22 11:53:20.809189+00 f t ADELANTO 0.00 4 6021 \N +227901 2025-08-20 13:31:46.213776+00 2025-08-20 13:31:46.213786+00 f t SUBTOTAL 27500.00 1 5896 \N +227902 2025-08-20 13:31:46.215769+00 2025-08-20 13:31:46.215778+00 f t DESCUENTO 0.00 2 5896 \N +227903 2025-08-20 13:31:46.218137+00 2025-08-20 13:31:46.218145+00 f t TOTAL 27500.00 3 5896 \N +227904 2025-08-20 13:31:46.219788+00 2025-08-20 13:31:46.219796+00 f t ADELANTO 27500.00 4 5896 \N +246681 2025-08-28 12:56:36.241437+00 2025-08-28 12:56:36.24145+00 f t SUBTOTAL 0.00 1 6356 \N +246682 2025-08-28 12:56:36.244679+00 2025-08-28 12:56:36.24469+00 f t DESCUENTO 0.00 2 6356 \N +246683 2025-08-28 12:56:36.246407+00 2025-08-28 12:56:36.246419+00 f t TOTAL 0.00 3 6356 \N +246684 2025-08-28 12:56:36.250161+00 2025-08-28 12:56:36.250173+00 f t ADELANTO 0.00 4 6356 \N +227909 2025-08-20 13:39:27.034269+00 2025-08-20 13:39:27.034284+00 f t SUBTOTAL 0.00 1 5897 \N +227910 2025-08-20 13:39:27.036312+00 2025-08-20 13:39:27.03632+00 f t DESCUENTO 0.00 2 5897 \N +227911 2025-08-20 13:39:27.037826+00 2025-08-20 13:39:27.037833+00 f t TOTAL 0.00 3 5897 \N +227912 2025-08-20 13:39:27.038975+00 2025-08-20 13:39:27.03898+00 f t ADELANTO 0.00 4 5897 \N +235625 2025-08-23 19:34:18.454016+00 2025-08-23 19:34:18.454031+00 f t SUBTOTAL 42000.00 1 6094 \N +235626 2025-08-23 19:34:18.456233+00 2025-08-23 19:34:18.456244+00 f t DESCUENTO 0.00 2 6094 \N +235627 2025-08-23 19:34:18.457889+00 2025-08-23 19:34:18.457896+00 f t TOTAL 42000.00 3 6094 \N +235628 2025-08-23 19:34:18.459817+00 2025-08-23 19:34:18.459825+00 f t ADELANTO 9500.00 4 6094 \N +235869 2025-08-23 21:30:34.855424+00 2025-08-23 21:30:34.855435+00 f t SUBTOTAL 72000.00 1 6099 \N +235870 2025-08-23 21:30:34.859539+00 2025-08-23 21:30:34.85955+00 f t DESCUENTO 0.00 2 6099 \N +235871 2025-08-23 21:30:34.861389+00 2025-08-23 21:30:34.8614+00 f t TOTAL 72000.00 3 6099 \N +235872 2025-08-23 21:30:34.862929+00 2025-08-23 21:30:34.862938+00 f t ADELANTO 19000.00 4 6099 \N +230281 2025-08-21 01:42:34.247342+00 2025-08-21 01:42:34.247351+00 f t SUBTOTAL 0.00 1 5959 \N +230282 2025-08-21 01:42:34.249027+00 2025-08-21 01:42:34.249037+00 f t DESCUENTO 0.00 2 5959 \N +230283 2025-08-21 01:42:34.250552+00 2025-08-21 01:42:34.250559+00 f t TOTAL 0.00 3 5959 \N +230284 2025-08-21 01:42:34.251853+00 2025-08-21 01:42:34.251859+00 f t ADELANTO 0.00 4 5959 \N +227937 2025-08-20 13:42:11.840355+00 2025-08-20 13:42:11.840364+00 f t SUBTOTAL 82200.00 1 5898 \N +227938 2025-08-20 13:42:11.842343+00 2025-08-20 13:42:11.842355+00 f t DESCUENTO 0.00 2 5898 \N +227939 2025-08-20 13:42:11.844209+00 2025-08-20 13:42:11.844217+00 f t TOTAL 82200.00 3 5898 \N +227940 2025-08-20 13:42:11.845744+00 2025-08-20 13:42:11.845755+00 f t ADELANTO 44200.00 4 5898 \N +230365 2025-08-21 03:09:37.296604+00 2025-08-21 03:09:37.296612+00 f t SUBTOTAL 0.00 1 5963 \N +230366 2025-08-21 03:09:37.298518+00 2025-08-21 03:09:37.298526+00 f t DESCUENTO 0.00 2 5963 \N +230367 2025-08-21 03:09:37.300038+00 2025-08-21 03:09:37.300047+00 f t TOTAL 0.00 3 5963 \N +230368 2025-08-21 03:09:37.301485+00 2025-08-21 03:09:37.301491+00 f t ADELANTO 0.00 4 5963 \N +230589 2025-08-21 12:21:11.806008+00 2025-08-21 12:21:11.806019+00 f t SUBTOTAL 0.00 1 5970 \N +230590 2025-08-21 12:21:11.808246+00 2025-08-21 12:21:11.808254+00 f t DESCUENTO 0.00 2 5970 \N +230591 2025-08-21 12:21:11.809663+00 2025-08-21 12:21:11.809673+00 f t TOTAL 0.00 3 5970 \N +230592 2025-08-21 12:21:11.811199+00 2025-08-21 12:21:11.811207+00 f t ADELANTO 0.00 4 5970 \N +227981 2025-08-20 14:19:31.030913+00 2025-08-20 14:19:31.030927+00 f t SUBTOTAL 0.00 1 5899 \N +227982 2025-08-20 14:19:31.033677+00 2025-08-20 14:19:31.033688+00 f t DESCUENTO 0.00 2 5899 \N +227983 2025-08-20 14:19:31.035338+00 2025-08-20 14:19:31.035348+00 f t TOTAL 0.00 3 5899 \N +227984 2025-08-20 14:19:31.036879+00 2025-08-20 14:19:31.036888+00 f t ADELANTO 0.00 4 5899 \N +236521 2025-08-24 04:03:32.372709+00 2025-08-24 04:03:32.37272+00 f t SUBTOTAL 0.00 1 6114 \N +236522 2025-08-24 04:03:32.374273+00 2025-08-24 04:03:32.374281+00 f t DESCUENTO 0.00 2 6114 \N +236523 2025-08-24 04:03:32.37588+00 2025-08-24 04:03:32.375892+00 f t TOTAL 0.00 3 6114 \N +236524 2025-08-24 04:03:32.378395+00 2025-08-24 04:03:32.378407+00 f t ADELANTO 0.00 4 6114 \N +236637 2025-08-24 04:08:37.44463+00 2025-08-24 04:08:37.444642+00 f t SUBTOTAL 42000.00 1 6115 \N +236638 2025-08-24 04:08:37.447046+00 2025-08-24 04:08:37.447057+00 f t DESCUENTO 0.00 2 6115 \N +236639 2025-08-24 04:08:37.44941+00 2025-08-24 04:08:37.44942+00 f t TOTAL 42000.00 3 6115 \N +236640 2025-08-24 04:08:37.451635+00 2025-08-24 04:08:37.451645+00 f t ADELANTO 9500.00 4 6115 \N +237085 2025-08-24 14:31:15.217479+00 2025-08-24 14:31:15.217492+00 f t SUBTOTAL 0.00 1 6129 \N +237086 2025-08-24 14:31:15.219416+00 2025-08-24 14:31:15.219425+00 f t DESCUENTO 0.00 2 6129 \N +237087 2025-08-24 14:31:15.220702+00 2025-08-24 14:31:15.220709+00 f t TOTAL 0.00 3 6129 \N +237088 2025-08-24 14:31:15.221752+00 2025-08-24 14:31:15.221758+00 f t ADELANTO 0.00 4 6129 \N +228053 2025-08-20 14:34:04.718564+00 2025-08-20 14:34:04.718574+00 f t SUBTOTAL 64500.00 1 5900 \N +228054 2025-08-20 14:34:04.720655+00 2025-08-20 14:34:04.720662+00 f t DESCUENTO 0.00 2 5900 \N +228055 2025-08-20 14:34:04.722234+00 2025-08-20 14:34:04.722244+00 f t TOTAL 64500.00 3 5900 \N +228056 2025-08-20 14:34:04.72388+00 2025-08-20 14:34:04.723887+00 f t ADELANTO 17000.00 4 5900 \N +228093 2025-08-20 14:37:24.693873+00 2025-08-20 14:37:24.693882+00 f t SUBTOTAL 0.00 1 5901 \N +228094 2025-08-20 14:37:24.696103+00 2025-08-20 14:37:24.696111+00 f t DESCUENTO 0.00 2 5901 \N +228095 2025-08-20 14:37:24.697602+00 2025-08-20 14:37:24.697609+00 f t TOTAL 0.00 3 5901 \N +228096 2025-08-20 14:37:24.699215+00 2025-08-20 14:37:24.699223+00 f t ADELANTO 0.00 4 5901 \N +232381 2025-08-21 23:32:31.941962+00 2025-08-21 23:32:31.941973+00 f t SUBTOTAL 42000.00 1 6005 \N +232382 2025-08-21 23:32:31.944013+00 2025-08-21 23:32:31.944023+00 f t DESCUENTO 0.00 2 6005 \N +232383 2025-08-21 23:32:31.945366+00 2025-08-21 23:32:31.945372+00 f t TOTAL 42000.00 3 6005 \N +232384 2025-08-21 23:32:31.94657+00 2025-08-21 23:32:31.946576+00 f t ADELANTO 9500.00 4 6005 \N +237977 2025-08-24 21:49:22.699276+00 2025-08-24 21:49:22.699286+00 f t SUBTOTAL 50000.00 1 6150 \N +237978 2025-08-24 21:49:22.708899+00 2025-08-24 21:49:22.708909+00 f t DESCUENTO 0.00 2 6150 \N +237979 2025-08-24 21:49:22.710863+00 2025-08-24 21:49:22.710873+00 f t TOTAL 50000.00 3 6150 \N +237980 2025-08-24 21:49:22.712533+00 2025-08-24 21:49:22.712543+00 f t ADELANTO 10000.00 4 6150 \N +228129 2025-08-20 14:48:47.869633+00 2025-08-20 14:48:47.869644+00 f t SUBTOTAL 64500.00 1 5902 \N +228130 2025-08-20 14:48:47.87158+00 2025-08-20 14:48:47.871586+00 f t DESCUENTO 0.00 2 5902 \N +228131 2025-08-20 14:48:47.872923+00 2025-08-20 14:48:47.872929+00 f t TOTAL 64500.00 3 5902 \N +228132 2025-08-20 14:48:47.874129+00 2025-08-20 14:48:47.874138+00 f t ADELANTO 17000.00 4 5902 \N +232589 2025-08-22 04:10:29.790766+00 2025-08-22 04:10:29.790779+00 f t SUBTOTAL 0.00 1 6013 \N +232590 2025-08-22 04:10:29.792529+00 2025-08-22 04:10:29.792538+00 f t DESCUENTO 0.00 2 6013 \N +232591 2025-08-22 04:10:29.79403+00 2025-08-22 04:10:29.794055+00 f t TOTAL 0.00 3 6013 \N +232592 2025-08-22 04:10:29.795562+00 2025-08-22 04:10:29.79557+00 f t ADELANTO 0.00 4 6013 \N +228165 2025-08-20 14:52:25.422497+00 2025-08-20 14:52:25.422507+00 f t SUBTOTAL 0.00 1 5903 \N +228166 2025-08-20 14:52:25.424613+00 2025-08-20 14:52:25.42462+00 f t DESCUENTO 0.00 2 5903 \N +228167 2025-08-20 14:52:25.426319+00 2025-08-20 14:52:25.42633+00 f t TOTAL 0.00 3 5903 \N +228168 2025-08-20 14:52:25.428023+00 2025-08-20 14:52:25.428033+00 f t ADELANTO 0.00 4 5903 \N +235089 2025-08-23 14:37:29.966078+00 2025-08-23 14:37:29.966091+00 f t SUBTOTAL 49500.00 1 6085 \N +235090 2025-08-23 14:37:29.969903+00 2025-08-23 14:37:29.969912+00 f t DESCUENTO 0.00 2 6085 \N +235091 2025-08-23 14:37:29.971578+00 2025-08-23 14:37:29.971586+00 f t TOTAL 49500.00 3 6085 \N +235092 2025-08-23 14:37:29.973388+00 2025-08-23 14:37:29.973398+00 f t ADELANTO 11500.00 4 6085 \N +229813 2025-08-21 00:21:02.240038+00 2025-08-21 00:21:02.240047+00 f t SUBTOTAL 95000.00 1 5951 \N +229814 2025-08-21 00:21:02.242138+00 2025-08-21 00:21:02.24218+00 f t DESCUENTO 0.00 2 5951 \N +229815 2025-08-21 00:21:02.24368+00 2025-08-21 00:21:02.243688+00 f t TOTAL 95000.00 3 5951 \N +229816 2025-08-21 00:21:02.245427+00 2025-08-21 00:21:02.245435+00 f t ADELANTO 10000.00 4 5951 \N +466538 2025-11-07 21:55:10.964555+00 2025-11-07 21:55:10.964563+00 f t COSTO_SERVICIO 0.00 2 11695 \N +228197 2025-08-20 14:53:07.721256+00 2025-08-20 14:53:07.721265+00 f t SUBTOTAL 42000.00 1 5904 \N +228198 2025-08-20 14:53:07.723464+00 2025-08-20 14:53:07.723474+00 f t DESCUENTO 0.00 2 5904 \N +228199 2025-08-20 14:53:07.725338+00 2025-08-20 14:53:07.725349+00 f t TOTAL 42000.00 3 5904 \N +228200 2025-08-20 14:53:07.72684+00 2025-08-20 14:53:07.726847+00 f t ADELANTO 9500.00 4 5904 \N +228241 2025-08-20 15:05:44.272272+00 2025-08-20 15:05:44.272312+00 f t SUBTOTAL 0.00 1 5905 \N +228242 2025-08-20 15:05:44.274681+00 2025-08-20 15:05:44.27469+00 f t DESCUENTO 0.00 2 5905 \N +228243 2025-08-20 15:05:44.276519+00 2025-08-20 15:05:44.276528+00 f t TOTAL 0.00 3 5905 \N +228244 2025-08-20 15:05:44.278218+00 2025-08-20 15:05:44.278229+00 f t ADELANTO 0.00 4 5905 \N +228269 2025-08-20 15:06:09.074371+00 2025-08-20 15:06:09.07438+00 f t SUBTOTAL 50000.00 1 5906 \N +228270 2025-08-20 15:06:09.076378+00 2025-08-20 15:06:09.076386+00 f t DESCUENTO 0.00 2 5906 \N +228271 2025-08-20 15:06:09.077959+00 2025-08-20 15:06:09.077968+00 f t TOTAL 50000.00 3 5906 \N +228272 2025-08-20 15:06:09.079678+00 2025-08-20 15:06:09.079687+00 f t ADELANTO 10000.00 4 5906 \N +231357 2025-08-21 17:31:22.290679+00 2025-08-21 17:31:22.290692+00 f t SUBTOTAL 0.00 1 5987 \N +231358 2025-08-21 17:31:22.29362+00 2025-08-21 17:31:22.293632+00 f t DESCUENTO 0.00 2 5987 \N +231359 2025-08-21 17:31:22.295441+00 2025-08-21 17:31:22.295452+00 f t TOTAL 0.00 3 5987 \N +231360 2025-08-21 17:31:22.297708+00 2025-08-21 17:31:22.297718+00 f t ADELANTO 0.00 4 5987 \N +236645 2025-08-24 04:26:05.045643+00 2025-08-24 04:26:05.045652+00 f t SUBTOTAL 0.00 1 6116 \N +236646 2025-08-24 04:26:05.047408+00 2025-08-24 04:26:05.047418+00 f t DESCUENTO 0.00 2 6116 \N +236647 2025-08-24 04:26:05.049127+00 2025-08-24 04:26:05.049137+00 f t TOTAL 0.00 3 6116 \N +236648 2025-08-24 04:26:05.05152+00 2025-08-24 04:26:05.051541+00 f t ADELANTO 0.00 4 6116 \N +236961 2025-08-24 12:46:19.223059+00 2025-08-24 12:46:19.223072+00 f t SUBTOTAL 0.00 1 6125 \N +236962 2025-08-24 12:46:19.225927+00 2025-08-24 12:46:19.225939+00 f t DESCUENTO 0.00 2 6125 \N +236963 2025-08-24 12:46:19.227789+00 2025-08-24 12:46:19.227798+00 f t TOTAL 0.00 3 6125 \N +236964 2025-08-24 12:46:19.229601+00 2025-08-24 12:46:19.229611+00 f t ADELANTO 0.00 4 6125 \N +231829 2025-08-21 20:31:59.250751+00 2025-08-21 20:31:59.25076+00 f t SUBTOTAL 42000.00 1 5996 \N +231830 2025-08-21 20:31:59.252593+00 2025-08-21 20:31:59.2526+00 f t DESCUENTO 0.00 2 5996 \N +231831 2025-08-21 20:31:59.254307+00 2025-08-21 20:31:59.254314+00 f t TOTAL 42000.00 3 5996 \N +231832 2025-08-21 20:31:59.255679+00 2025-08-21 20:31:59.255684+00 f t ADELANTO 9500.00 4 5996 \N +228345 2025-08-20 15:08:22.070342+00 2025-08-20 15:08:22.070355+00 f t SUBTOTAL 0.00 1 5907 \N +228346 2025-08-20 15:08:22.072796+00 2025-08-20 15:08:22.072808+00 f t DESCUENTO 0.00 2 5907 \N +228347 2025-08-20 15:08:22.07451+00 2025-08-20 15:08:22.07452+00 f t TOTAL 0.00 3 5907 \N +228348 2025-08-20 15:08:22.076116+00 2025-08-20 15:08:22.076126+00 f t ADELANTO 0.00 4 5907 \N +228353 2025-08-20 15:08:40.014156+00 2025-08-20 15:08:40.014166+00 f t SUBTOTAL 0.00 1 5909 \N +228354 2025-08-20 15:08:40.01559+00 2025-08-20 15:08:40.015596+00 f t DESCUENTO 0.00 2 5909 \N +228355 2025-08-20 15:08:40.016724+00 2025-08-20 15:08:40.016728+00 f t TOTAL 0.00 3 5909 \N +228356 2025-08-20 15:08:40.017712+00 2025-08-20 15:08:40.017716+00 f t ADELANTO 0.00 4 5909 \N +237393 2025-08-24 18:55:50.979688+00 2025-08-24 18:55:50.979715+00 f t SUBTOTAL 0.00 1 6135 \N +237394 2025-08-24 18:55:50.986369+00 2025-08-24 18:55:50.98638+00 f t DESCUENTO 0.00 2 6135 \N +237395 2025-08-24 18:55:50.988621+00 2025-08-24 18:55:50.988633+00 f t TOTAL 0.00 3 6135 \N +237396 2025-08-24 18:55:50.992031+00 2025-08-24 18:55:50.992041+00 f t ADELANTO 0.00 4 6135 \N +237457 2025-08-24 19:26:32.314131+00 2025-08-24 19:26:32.31414+00 f t SUBTOTAL 42000.00 1 6137 \N +237458 2025-08-24 19:26:32.315907+00 2025-08-24 19:26:32.315918+00 f t DESCUENTO 0.00 2 6137 \N +237459 2025-08-24 19:26:32.317253+00 2025-08-24 19:26:32.31726+00 f t TOTAL 42000.00 3 6137 \N +237460 2025-08-24 19:26:32.318486+00 2025-08-24 19:26:32.318492+00 f t ADELANTO 9500.00 4 6137 \N +228369 2025-08-20 15:11:21.821023+00 2025-08-20 15:11:21.821032+00 f t SUBTOTAL 0.00 1 5908 \N +228370 2025-08-20 15:11:21.822937+00 2025-08-20 15:11:21.822946+00 f t DESCUENTO 0.00 2 5908 \N +228371 2025-08-20 15:11:21.824348+00 2025-08-20 15:11:21.824353+00 f t TOTAL 0.00 3 5908 \N +228372 2025-08-20 15:11:21.825652+00 2025-08-20 15:11:21.825659+00 f t ADELANTO 0.00 4 5908 \N +232537 2025-08-22 03:02:24.124369+00 2025-08-22 03:02:24.124378+00 f t SUBTOTAL 0.00 1 6010 \N +232538 2025-08-22 03:02:24.126839+00 2025-08-22 03:02:24.126847+00 f t DESCUENTO 0.00 2 6010 \N +232539 2025-08-22 03:02:24.128514+00 2025-08-22 03:02:24.128522+00 f t TOTAL 0.00 3 6010 \N +232540 2025-08-22 03:02:24.129945+00 2025-08-22 03:02:24.129954+00 f t ADELANTO 0.00 4 6010 \N +232741 2025-08-22 08:15:33.535789+00 2025-08-22 08:15:33.535802+00 f t SUBTOTAL 0.00 1 6018 \N +232742 2025-08-22 08:15:33.538391+00 2025-08-22 08:15:33.538404+00 f t DESCUENTO 0.00 2 6018 \N +232743 2025-08-22 08:15:33.540372+00 2025-08-22 08:15:33.540383+00 f t TOTAL 0.00 3 6018 \N +232744 2025-08-22 08:15:33.542023+00 2025-08-22 08:15:33.542033+00 f t ADELANTO 0.00 4 6018 \N +228425 2025-08-20 15:23:17.010435+00 2025-08-20 15:23:17.010444+00 f t SUBTOTAL 150700.00 1 5910 \N +228426 2025-08-20 15:23:17.012533+00 2025-08-20 15:23:17.012543+00 f t DESCUENTO 0.00 2 5910 \N +228427 2025-08-20 15:23:17.014159+00 2025-08-20 15:23:17.014167+00 f t TOTAL 150700.00 3 5910 \N +228428 2025-08-20 15:23:17.015399+00 2025-08-20 15:23:17.015405+00 f t ADELANTO 72700.00 4 5910 \N +232985 2025-08-22 13:56:45.617234+00 2025-08-22 13:56:45.617242+00 f t SUBTOTAL 0.00 1 6025 \N +232986 2025-08-22 13:56:45.619063+00 2025-08-22 13:56:45.619073+00 f t DESCUENTO 0.00 2 6025 \N +228453 2025-08-20 15:41:17.888252+00 2025-08-20 15:41:17.888261+00 f t SUBTOTAL 49500.00 1 5911 \N +228454 2025-08-20 15:41:17.890089+00 2025-08-20 15:41:17.890097+00 f t DESCUENTO 0.00 2 5911 \N +228455 2025-08-20 15:41:17.891477+00 2025-08-20 15:41:17.891483+00 f t TOTAL 49500.00 3 5911 \N +228456 2025-08-20 15:41:17.892662+00 2025-08-20 15:41:17.892668+00 f t ADELANTO 11500.00 4 5911 \N +232987 2025-08-22 13:56:45.620752+00 2025-08-22 13:56:45.620763+00 f t TOTAL 0.00 3 6025 \N +232988 2025-08-22 13:56:45.622246+00 2025-08-22 13:56:45.622253+00 f t ADELANTO 0.00 4 6025 \N +228461 2025-08-20 15:44:19.467315+00 2025-08-20 15:44:19.467327+00 f t SUBTOTAL 0.00 1 5912 \N +228462 2025-08-20 15:44:19.468937+00 2025-08-20 15:44:19.468947+00 f t DESCUENTO 0.00 2 5912 \N +228463 2025-08-20 15:44:19.470209+00 2025-08-20 15:44:19.470217+00 f t TOTAL 0.00 3 5912 \N +228464 2025-08-20 15:44:19.47152+00 2025-08-20 15:44:19.471527+00 f t ADELANTO 0.00 4 5912 \N +270223 2025-09-05 11:27:19.732204+00 2025-09-05 11:27:19.732211+00 f t TOTAL 0.00 3 6944 \N +270224 2025-09-05 11:27:19.734022+00 2025-09-05 11:27:19.734033+00 f t ADELANTO 0.00 4 6944 \N +241107 2025-08-25 23:56:17.742273+00 2025-08-25 23:56:17.742298+00 f t TOTAL 0.00 3 6226 \N +241108 2025-08-25 23:56:17.744348+00 2025-08-25 23:56:17.744359+00 f t ADELANTO 0.00 4 6226 \N +235553 2025-08-23 19:17:02.669692+00 2025-08-23 19:17:02.669709+00 f t SUBTOTAL 42000.00 1 6093 \N +235554 2025-08-23 19:17:02.672802+00 2025-08-23 19:17:02.672813+00 f t DESCUENTO 0.00 2 6093 \N +235555 2025-08-23 19:17:02.676284+00 2025-08-23 19:17:02.676298+00 f t TOTAL 42000.00 3 6093 \N +235556 2025-08-23 19:17:02.680475+00 2025-08-23 19:17:02.68049+00 f t ADELANTO 9500.00 4 6093 \N +230517 2025-08-21 04:57:11.889186+00 2025-08-21 04:57:11.889202+00 f t SUBTOTAL 27500.00 1 5966 \N +230518 2025-08-21 04:57:11.891304+00 2025-08-21 04:57:11.891313+00 f t DESCUENTO 0.00 2 5966 \N +230519 2025-08-21 04:57:11.892878+00 2025-08-21 04:57:11.892887+00 f t TOTAL 27500.00 3 5966 \N +230520 2025-08-21 04:57:11.894444+00 2025-08-21 04:57:11.894452+00 f t ADELANTO 27500.00 4 5966 \N +228537 2025-08-20 15:46:49.857563+00 2025-08-20 15:46:49.857571+00 f t SUBTOTAL 42000.00 1 5913 \N +228538 2025-08-20 15:46:49.859463+00 2025-08-20 15:46:49.859471+00 f t DESCUENTO 0.00 2 5913 \N +228539 2025-08-20 15:46:49.8611+00 2025-08-20 15:46:49.861108+00 f t TOTAL 42000.00 3 5913 \N +228540 2025-08-20 15:46:49.86246+00 2025-08-20 15:46:49.862467+00 f t ADELANTO 9500.00 4 5913 \N +236401 2025-08-24 01:07:38.627055+00 2025-08-24 01:07:38.627067+00 f t SUBTOTAL 42000.00 1 6112 \N +236402 2025-08-24 01:07:38.629603+00 2025-08-24 01:07:38.629634+00 f t DESCUENTO 0.00 2 6112 \N +236403 2025-08-24 01:07:38.631755+00 2025-08-24 01:07:38.631785+00 f t TOTAL 42000.00 3 6112 \N +236404 2025-08-24 01:07:38.633665+00 2025-08-24 01:07:38.633674+00 f t ADELANTO 9500.00 4 6112 \N +228545 2025-08-20 16:02:31.85555+00 2025-08-20 16:02:31.855564+00 f t SUBTOTAL 0.00 1 5914 \N +228546 2025-08-20 16:02:31.85726+00 2025-08-20 16:02:31.85727+00 f t DESCUENTO 0.00 2 5914 \N +228547 2025-08-20 16:02:31.858685+00 2025-08-20 16:02:31.858694+00 f t TOTAL 0.00 3 5914 \N +228548 2025-08-20 16:02:31.859916+00 2025-08-20 16:02:31.859922+00 f t ADELANTO 0.00 4 5914 \N +228553 2025-08-20 16:03:19.280771+00 2025-08-20 16:03:19.280784+00 f t SUBTOTAL 0.00 1 5915 \N +228554 2025-08-20 16:03:19.282885+00 2025-08-20 16:03:19.282896+00 f t DESCUENTO 0.00 2 5915 \N +228555 2025-08-20 16:03:19.285352+00 2025-08-20 16:03:19.285365+00 f t TOTAL 0.00 3 5915 \N +228556 2025-08-20 16:03:19.287517+00 2025-08-20 16:03:19.287529+00 f t ADELANTO 0.00 4 5915 \N +231129 2025-08-21 16:18:10.372913+00 2025-08-21 16:18:10.372922+00 f t SUBTOTAL 12000.00 1 5981 \N +231130 2025-08-21 16:18:10.375121+00 2025-08-21 16:18:10.375163+00 f t DESCUENTO 0.00 2 5981 \N +231131 2025-08-21 16:18:10.377176+00 2025-08-21 16:18:10.377184+00 f t TOTAL 12000.00 3 5981 \N +231132 2025-08-21 16:18:10.378935+00 2025-08-21 16:18:10.378943+00 f t ADELANTO 12000.00 4 5981 \N +228569 2025-08-20 16:15:14.394174+00 2025-08-20 16:15:14.394183+00 f t SUBTOTAL 0.00 1 5916 \N +228570 2025-08-20 16:15:14.396455+00 2025-08-20 16:15:14.396465+00 f t DESCUENTO 0.00 2 5916 \N +228571 2025-08-20 16:15:14.397929+00 2025-08-20 16:15:14.39794+00 f t TOTAL 0.00 3 5916 \N +228572 2025-08-20 16:15:14.399301+00 2025-08-20 16:15:14.39931+00 f t ADELANTO 0.00 4 5916 \N +228577 2025-08-20 16:15:43.487505+00 2025-08-20 16:15:43.487512+00 f t SUBTOTAL 0.00 1 5917 \N +228578 2025-08-20 16:15:43.488831+00 2025-08-20 16:15:43.488838+00 f t DESCUENTO 0.00 2 5917 \N +228579 2025-08-20 16:15:43.489967+00 2025-08-20 16:15:43.489973+00 f t TOTAL 0.00 3 5917 \N +228580 2025-08-20 16:15:43.491011+00 2025-08-20 16:15:43.491016+00 f t ADELANTO 0.00 4 5917 \N +228613 2025-08-20 16:22:21.739549+00 2025-08-20 16:22:21.73956+00 f t SUBTOTAL 0.00 1 5919 \N +228614 2025-08-20 16:22:21.740922+00 2025-08-20 16:22:21.740929+00 f t DESCUENTO 0.00 2 5919 \N +228615 2025-08-20 16:22:21.742154+00 2025-08-20 16:22:21.742162+00 f t TOTAL 0.00 3 5919 \N +228616 2025-08-20 16:22:21.743428+00 2025-08-20 16:22:21.743435+00 f t ADELANTO 0.00 4 5919 \N +228621 2025-08-20 16:22:24.323275+00 2025-08-20 16:22:24.323284+00 f t SUBTOTAL 49500.00 1 5918 \N +228622 2025-08-20 16:22:24.324893+00 2025-08-20 16:22:24.324899+00 f t DESCUENTO 0.00 2 5918 \N +228623 2025-08-20 16:22:24.32611+00 2025-08-20 16:22:24.326116+00 f t TOTAL 49500.00 3 5918 \N +228624 2025-08-20 16:22:24.327123+00 2025-08-20 16:22:24.327149+00 f t ADELANTO 11500.00 4 5918 \N +237217 2025-08-24 17:05:38.758322+00 2025-08-24 17:05:38.758336+00 f t SUBTOTAL 0.00 1 6132 \N +237218 2025-08-24 17:05:38.760993+00 2025-08-24 17:05:38.761002+00 f t DESCUENTO 0.00 2 6132 \N +237219 2025-08-24 17:05:38.762327+00 2025-08-24 17:05:38.762335+00 f t TOTAL 0.00 3 6132 \N +237220 2025-08-24 17:05:38.763497+00 2025-08-24 17:05:38.763502+00 f t ADELANTO 0.00 4 6132 \N +237697 2025-08-24 21:20:37.283492+00 2025-08-24 21:20:37.283502+00 f t SUBTOTAL 84200.00 1 6143 \N +237698 2025-08-24 21:20:37.285488+00 2025-08-24 21:20:37.285497+00 f t DESCUENTO 0.00 2 6143 \N +237699 2025-08-24 21:20:37.286899+00 2025-08-24 21:20:37.286906+00 f t TOTAL 84200.00 3 6143 \N +237700 2025-08-24 21:20:37.288262+00 2025-08-24 21:20:37.288268+00 f t ADELANTO 31200.00 4 6143 \N +237985 2025-08-24 21:56:40.124851+00 2025-08-24 21:56:40.124861+00 f t SUBTOTAL 0.00 1 6151 \N +232545 2025-08-22 03:15:17.138717+00 2025-08-22 03:15:17.138728+00 f t SUBTOTAL 0.00 1 6011 \N +232546 2025-08-22 03:15:17.140674+00 2025-08-22 03:15:17.140686+00 f t DESCUENTO 0.00 2 6011 \N +232547 2025-08-22 03:15:17.142486+00 2025-08-22 03:15:17.142496+00 f t TOTAL 0.00 3 6011 \N +232548 2025-08-22 03:15:17.144218+00 2025-08-22 03:15:17.144228+00 f t ADELANTO 0.00 4 6011 \N +237986 2025-08-24 21:56:40.126109+00 2025-08-24 21:56:40.126115+00 f t DESCUENTO 0.00 2 6151 \N +237987 2025-08-24 21:56:40.127279+00 2025-08-24 21:56:40.127284+00 f t TOTAL 0.00 3 6151 \N +237988 2025-08-24 21:56:40.128206+00 2025-08-24 21:56:40.128211+00 f t ADELANTO 0.00 4 6151 \N +238161 2025-08-24 23:37:41.599866+00 2025-08-24 23:37:41.599878+00 f t SUBTOTAL 72500.00 1 6156 \N +238162 2025-08-24 23:37:41.602254+00 2025-08-24 23:37:41.602263+00 f t DESCUENTO 0.00 2 6156 \N +238163 2025-08-24 23:37:41.603823+00 2025-08-24 23:37:41.603831+00 f t TOTAL 72500.00 3 6156 \N +238164 2025-08-24 23:37:41.605111+00 2025-08-24 23:37:41.605116+00 f t ADELANTO 72500.00 4 6156 \N +228717 2025-08-20 16:43:21.059927+00 2025-08-20 16:43:21.059936+00 f t SUBTOTAL 88000.00 1 5920 \N +228718 2025-08-20 16:43:21.061779+00 2025-08-20 16:43:21.061787+00 f t DESCUENTO 0.00 2 5920 \N +228719 2025-08-20 16:43:21.063471+00 2025-08-20 16:43:21.063478+00 f t TOTAL 88000.00 3 5920 \N +228720 2025-08-20 16:43:21.064963+00 2025-08-20 16:43:21.06497+00 f t ADELANTO 19000.00 4 5920 \N +238373 2025-08-25 00:20:39.702573+00 2025-08-25 00:20:39.702582+00 f t SUBTOTAL 49500.00 1 6163 \N +228745 2025-08-20 16:49:08.734676+00 2025-08-20 16:49:08.734688+00 f t SUBTOTAL 42000.00 1 5921 \N +228746 2025-08-20 16:49:08.73665+00 2025-08-20 16:49:08.736657+00 f t DESCUENTO 0.00 2 5921 \N +228747 2025-08-20 16:49:08.738444+00 2025-08-20 16:49:08.738451+00 f t TOTAL 42000.00 3 5921 \N +228748 2025-08-20 16:49:08.740043+00 2025-08-20 16:49:08.74005+00 f t ADELANTO 9500.00 4 5921 \N +228753 2025-08-20 16:58:52.08517+00 2025-08-20 16:58:52.085179+00 f t SUBTOTAL 0.00 1 5922 \N +228754 2025-08-20 16:58:52.087209+00 2025-08-20 16:58:52.087217+00 f t DESCUENTO 0.00 2 5922 \N +228755 2025-08-20 16:58:52.089288+00 2025-08-20 16:58:52.089299+00 f t TOTAL 0.00 3 5922 \N +228756 2025-08-20 16:58:52.091639+00 2025-08-20 16:58:52.091647+00 f t ADELANTO 0.00 4 5922 \N +240577 2025-08-25 17:08:52.445617+00 2025-08-25 17:08:52.445632+00 f t SUBTOTAL 42000.00 1 6213 \N +240578 2025-08-25 17:08:52.447832+00 2025-08-25 17:08:52.44784+00 f t DESCUENTO 0.00 2 6213 \N +240579 2025-08-25 17:08:52.449326+00 2025-08-25 17:08:52.449334+00 f t TOTAL 42000.00 3 6213 \N +240580 2025-08-25 17:08:52.450591+00 2025-08-25 17:08:52.450598+00 f t ADELANTO 9500.00 4 6213 \N +228761 2025-08-20 17:08:33.159509+00 2025-08-20 17:08:33.159523+00 f t SUBTOTAL 0.00 1 5923 \N +228762 2025-08-20 17:08:33.161086+00 2025-08-20 17:08:33.161093+00 f t DESCUENTO 0.00 2 5923 \N +228763 2025-08-20 17:08:33.16237+00 2025-08-20 17:08:33.162377+00 f t TOTAL 0.00 3 5923 \N +228764 2025-08-20 17:08:33.163909+00 2025-08-20 17:08:33.163918+00 f t ADELANTO 0.00 4 5923 \N +240685 2025-08-25 17:59:37.909327+00 2025-08-25 17:59:37.909341+00 f t SUBTOTAL 0.00 1 6214 \N +240686 2025-08-25 17:59:37.912381+00 2025-08-25 17:59:37.912393+00 f t DESCUENTO 0.00 2 6214 \N +240687 2025-08-25 17:59:37.914472+00 2025-08-25 17:59:37.914485+00 f t TOTAL 0.00 3 6214 \N +228769 2025-08-20 17:17:48.636581+00 2025-08-20 17:17:48.636589+00 f t SUBTOTAL 0.00 1 5924 \N +228770 2025-08-20 17:17:48.638153+00 2025-08-20 17:17:48.638162+00 f t DESCUENTO 0.00 2 5924 \N +228771 2025-08-20 17:17:48.639621+00 2025-08-20 17:17:48.639629+00 f t TOTAL 0.00 3 5924 \N +228772 2025-08-20 17:17:48.64099+00 2025-08-20 17:17:48.640997+00 f t ADELANTO 0.00 4 5924 \N +228777 2025-08-20 17:24:04.37474+00 2025-08-20 17:24:04.374752+00 f t SUBTOTAL 0.00 1 5925 \N +228778 2025-08-20 17:24:04.376889+00 2025-08-20 17:24:04.376899+00 f t DESCUENTO 0.00 2 5925 \N +228779 2025-08-20 17:24:04.378611+00 2025-08-20 17:24:04.378622+00 f t TOTAL 0.00 3 5925 \N +228780 2025-08-20 17:24:04.380246+00 2025-08-20 17:24:04.380254+00 f t ADELANTO 0.00 4 5925 \N +235641 2025-08-23 19:56:36.825165+00 2025-08-23 19:56:36.825176+00 f t SUBTOTAL 0.00 1 6095 \N +235642 2025-08-23 19:56:36.827531+00 2025-08-23 19:56:36.827539+00 f t DESCUENTO 0.00 2 6095 \N +235643 2025-08-23 19:56:36.8288+00 2025-08-23 19:56:36.828806+00 f t TOTAL 0.00 3 6095 \N +235644 2025-08-23 19:56:36.829982+00 2025-08-23 19:56:36.829988+00 f t ADELANTO 0.00 4 6095 \N +236193 2025-08-23 23:49:54.557464+00 2025-08-23 23:49:54.557474+00 f t SUBTOTAL 0.00 1 6107 \N +236194 2025-08-23 23:49:54.559903+00 2025-08-23 23:49:54.55991+00 f t DESCUENTO 0.00 2 6107 \N +236195 2025-08-23 23:49:54.561483+00 2025-08-23 23:49:54.56149+00 f t TOTAL 0.00 3 6107 \N +236196 2025-08-23 23:49:54.562943+00 2025-08-23 23:49:54.562949+00 f t ADELANTO 0.00 4 6107 \N +228829 2025-08-20 17:25:19.473291+00 2025-08-20 17:25:19.473301+00 f t SUBTOTAL 82200.00 1 5926 \N +228830 2025-08-20 17:25:19.474859+00 2025-08-20 17:25:19.474866+00 f t DESCUENTO 0.00 2 5926 \N +228831 2025-08-20 17:25:19.476181+00 2025-08-20 17:25:19.476187+00 f t TOTAL 82200.00 3 5926 \N +228832 2025-08-20 17:25:19.4773+00 2025-08-20 17:25:19.477305+00 f t ADELANTO 44200.00 4 5926 \N +228837 2025-08-20 17:42:08.115874+00 2025-08-20 17:42:08.115886+00 f t SUBTOTAL 0.00 1 5927 \N +228838 2025-08-20 17:42:08.11746+00 2025-08-20 17:42:08.117466+00 f t DESCUENTO 0.00 2 5927 \N +228839 2025-08-20 17:42:08.118864+00 2025-08-20 17:42:08.118872+00 f t TOTAL 0.00 3 5927 \N +228840 2025-08-20 17:42:08.120422+00 2025-08-20 17:42:08.12043+00 f t ADELANTO 0.00 4 5927 \N +228865 2025-08-20 17:45:11.705032+00 2025-08-20 17:45:11.705041+00 f t SUBTOTAL 0.00 1 5929 \N +228866 2025-08-20 17:45:11.706541+00 2025-08-20 17:45:11.706548+00 f t DESCUENTO 0.00 2 5929 \N +228867 2025-08-20 17:45:11.708338+00 2025-08-20 17:45:11.708346+00 f t TOTAL 0.00 3 5929 \N +228868 2025-08-20 17:45:11.70957+00 2025-08-20 17:45:11.709576+00 f t ADELANTO 0.00 4 5929 \N +231137 2025-08-21 16:18:23.023207+00 2025-08-21 16:18:23.023216+00 f t SUBTOTAL 0.00 1 5982 \N +231138 2025-08-21 16:18:23.024719+00 2025-08-21 16:18:23.024726+00 f t DESCUENTO 0.00 2 5982 \N +231139 2025-08-21 16:18:23.026859+00 2025-08-21 16:18:23.026865+00 f t TOTAL 0.00 3 5982 \N +231140 2025-08-21 16:18:23.028008+00 2025-08-21 16:18:23.028014+00 f t ADELANTO 0.00 4 5982 \N +236717 2025-08-24 08:15:12.547403+00 2025-08-24 08:15:12.547415+00 f t SUBTOTAL 50000.00 1 6118 \N +236718 2025-08-24 08:15:12.54997+00 2025-08-24 08:15:12.549979+00 f t DESCUENTO 0.00 2 6118 \N +236719 2025-08-24 08:15:12.551935+00 2025-08-24 08:15:12.551946+00 f t TOTAL 50000.00 3 6118 \N +236720 2025-08-24 08:15:12.55377+00 2025-08-24 08:15:12.553778+00 f t ADELANTO 10000.00 4 6118 \N +231521 2025-08-21 17:58:33.443636+00 2025-08-21 17:58:33.443645+00 f t SUBTOTAL 88000.00 1 5990 \N +231522 2025-08-21 17:58:33.445434+00 2025-08-21 17:58:33.445441+00 f t DESCUENTO 0.00 2 5990 \N +231523 2025-08-21 17:58:33.446981+00 2025-08-21 17:58:33.446988+00 f t TOTAL 88000.00 3 5990 \N +231524 2025-08-21 17:58:33.448179+00 2025-08-21 17:58:33.448185+00 f t ADELANTO 19000.00 4 5990 \N +237033 2025-08-24 13:59:24.644735+00 2025-08-24 13:59:24.644745+00 f t SUBTOTAL 64500.00 1 6127 \N +237034 2025-08-24 13:59:24.646617+00 2025-08-24 13:59:24.646626+00 f t DESCUENTO 0.00 2 6127 \N +237035 2025-08-24 13:59:24.64793+00 2025-08-24 13:59:24.647937+00 f t TOTAL 64500.00 3 6127 \N +237036 2025-08-24 13:59:24.648824+00 2025-08-24 13:59:24.648829+00 f t ADELANTO 17000.00 4 6127 \N +237225 2025-08-24 17:35:43.420896+00 2025-08-24 17:35:43.420906+00 f t SUBTOTAL 0.00 1 6133 \N +237226 2025-08-24 17:35:43.422354+00 2025-08-24 17:35:43.422361+00 f t DESCUENTO 0.00 2 6133 \N +237227 2025-08-24 17:35:43.423852+00 2025-08-24 17:35:43.423858+00 f t TOTAL 0.00 3 6133 \N +237228 2025-08-24 17:35:43.424887+00 2025-08-24 17:35:43.424892+00 f t ADELANTO 0.00 4 6133 \N +228937 2025-08-20 17:48:46.257306+00 2025-08-20 17:48:46.257315+00 f t SUBTOTAL 0.00 1 5928 \N +228938 2025-08-20 17:48:46.260317+00 2025-08-20 17:48:46.260328+00 f t DESCUENTO 0.00 2 5928 \N +228939 2025-08-20 17:48:46.262361+00 2025-08-20 17:48:46.262372+00 f t TOTAL 0.00 3 5928 \N +228940 2025-08-20 17:48:46.263979+00 2025-08-20 17:48:46.263989+00 f t ADELANTO 0.00 4 5928 \N +232233 2025-08-21 21:21:06.309033+00 2025-08-21 21:21:06.309042+00 f t SUBTOTAL 50000.00 1 5999 \N +232234 2025-08-21 21:21:06.311989+00 2025-08-21 21:21:06.311998+00 f t DESCUENTO 0.00 2 5999 \N +232235 2025-08-21 21:21:06.314344+00 2025-08-21 21:21:06.314354+00 f t TOTAL 50000.00 3 5999 \N +232236 2025-08-21 21:21:06.316694+00 2025-08-21 21:21:06.316703+00 f t ADELANTO 10000.00 4 5999 \N +237993 2025-08-24 22:19:20.001415+00 2025-08-24 22:19:20.00143+00 f t SUBTOTAL 0.00 1 6152 \N +237994 2025-08-24 22:19:20.003102+00 2025-08-24 22:19:20.003114+00 f t DESCUENTO 0.00 2 6152 \N +237995 2025-08-24 22:19:20.00463+00 2025-08-24 22:19:20.004639+00 f t TOTAL 0.00 3 6152 \N +237996 2025-08-24 22:19:20.006101+00 2025-08-24 22:19:20.006111+00 f t ADELANTO 0.00 4 6152 \N +229005 2025-08-20 18:09:54.143856+00 2025-08-20 18:09:54.143866+00 f t SUBTOTAL 72000.00 1 5930 \N +229006 2025-08-20 18:09:54.145786+00 2025-08-20 18:09:54.145796+00 f t DESCUENTO 0.00 2 5930 \N +229007 2025-08-20 18:09:54.147482+00 2025-08-20 18:09:54.147491+00 f t TOTAL 72000.00 3 5930 \N +229008 2025-08-20 18:09:54.14894+00 2025-08-20 18:09:54.14895+00 f t ADELANTO 19000.00 4 5930 \N +229025 2025-08-20 18:10:14.370499+00 2025-08-20 18:10:14.37051+00 f t SUBTOTAL 49500.00 1 5931 \N +229026 2025-08-20 18:10:14.372561+00 2025-08-20 18:10:14.372571+00 f t DESCUENTO 0.00 2 5931 \N +229027 2025-08-20 18:10:14.373979+00 2025-08-20 18:10:14.373986+00 f t TOTAL 49500.00 3 5931 \N +229028 2025-08-20 18:10:14.375439+00 2025-08-20 18:10:14.37545+00 f t ADELANTO 11500.00 4 5931 \N +229053 2025-08-20 18:41:43.456925+00 2025-08-20 18:41:43.456934+00 f t SUBTOTAL 0.00 1 5932 \N +229054 2025-08-20 18:41:43.458908+00 2025-08-20 18:41:43.458917+00 f t DESCUENTO 0.00 2 5932 \N +229055 2025-08-20 18:41:43.461495+00 2025-08-20 18:41:43.461501+00 f t TOTAL 0.00 3 5932 \N +229056 2025-08-20 18:41:43.463507+00 2025-08-20 18:41:43.463514+00 f t ADELANTO 0.00 4 5932 \N +240688 2025-08-25 17:59:37.916463+00 2025-08-25 17:59:37.916472+00 f t ADELANTO 0.00 4 6214 \N +229061 2025-08-20 18:56:09.803595+00 2025-08-20 18:56:09.803603+00 f t SUBTOTAL 0.00 1 5933 \N +229062 2025-08-20 18:56:09.80561+00 2025-08-20 18:56:09.805621+00 f t DESCUENTO 0.00 2 5933 \N +229063 2025-08-20 18:56:09.807635+00 2025-08-20 18:56:09.807648+00 f t TOTAL 0.00 3 5933 \N +229064 2025-08-20 18:56:09.809406+00 2025-08-20 18:56:09.809415+00 f t ADELANTO 0.00 4 5933 \N +264417 2025-09-03 12:26:53.731125+00 2025-09-03 12:26:53.731176+00 f t SUBTOTAL 0.00 1 6796 \N +264418 2025-09-03 12:26:53.733724+00 2025-09-03 12:26:53.733736+00 f t DESCUENTO 0.00 2 6796 \N +264419 2025-09-03 12:26:53.735253+00 2025-09-03 12:26:53.735269+00 f t TOTAL 0.00 3 6796 \N +264420 2025-09-03 12:26:53.736395+00 2025-09-03 12:26:53.736401+00 f t ADELANTO 0.00 4 6796 \N +229093 2025-08-20 19:39:08.59263+00 2025-08-20 19:39:08.592642+00 f t SUBTOTAL 68000.00 1 5934 \N +229094 2025-08-20 19:39:08.595099+00 2025-08-20 19:39:08.595112+00 f t DESCUENTO 0.00 2 5934 \N +229095 2025-08-20 19:39:08.597165+00 2025-08-20 19:39:08.597176+00 f t TOTAL 68000.00 3 5934 \N +229096 2025-08-20 19:39:08.599023+00 2025-08-20 19:39:08.599032+00 f t ADELANTO 13000.00 4 5934 \N +235969 2025-08-23 21:49:50.630796+00 2025-08-23 21:49:50.630818+00 f t SUBTOTAL 0.00 1 6101 \N +235970 2025-08-23 21:49:50.634391+00 2025-08-23 21:49:50.634404+00 f t DESCUENTO 0.00 2 6101 \N +235971 2025-08-23 21:49:50.63798+00 2025-08-23 21:49:50.637995+00 f t TOTAL 0.00 3 6101 \N +235972 2025-08-23 21:49:50.642113+00 2025-08-23 21:49:50.642126+00 f t ADELANTO 0.00 4 6101 \N +236117 2025-08-23 23:14:23.406609+00 2025-08-23 23:14:23.406619+00 f t SUBTOTAL 0.00 1 6104 \N +236118 2025-08-23 23:14:23.408828+00 2025-08-23 23:14:23.408836+00 f t DESCUENTO 0.00 2 6104 \N +236119 2025-08-23 23:14:23.410202+00 2025-08-23 23:14:23.410212+00 f t TOTAL 0.00 3 6104 \N +236120 2025-08-23 23:14:23.411476+00 2025-08-23 23:14:23.411483+00 f t ADELANTO 0.00 4 6104 \N +229145 2025-08-20 20:14:41.252968+00 2025-08-20 20:14:41.252981+00 f t SUBTOTAL 42000.00 1 5935 \N +229146 2025-08-20 20:14:41.25522+00 2025-08-20 20:14:41.255227+00 f t DESCUENTO 0.00 2 5935 \N +229147 2025-08-20 20:14:41.256596+00 2025-08-20 20:14:41.256603+00 f t TOTAL 42000.00 3 5935 \N +229148 2025-08-20 20:14:41.257888+00 2025-08-20 20:14:41.257893+00 f t ADELANTO 9500.00 4 5935 \N +231253 2025-08-21 17:09:55.630221+00 2025-08-21 17:09:55.63023+00 f t SUBTOTAL 64500.00 1 5984 \N +231254 2025-08-21 17:09:55.632113+00 2025-08-21 17:09:55.632122+00 f t DESCUENTO 0.00 2 5984 \N +231255 2025-08-21 17:09:55.633604+00 2025-08-21 17:09:55.633611+00 f t TOTAL 64500.00 3 5984 \N +231256 2025-08-21 17:09:55.635018+00 2025-08-21 17:09:55.635024+00 f t ADELANTO 17000.00 4 5984 \N +229185 2025-08-20 20:54:03.147693+00 2025-08-20 20:54:03.147707+00 f t SUBTOTAL 95000.00 1 5936 \N +229186 2025-08-20 20:54:03.150227+00 2025-08-20 20:54:03.150239+00 f t DESCUENTO 0.00 2 5936 \N +229187 2025-08-20 20:54:03.152453+00 2025-08-20 20:54:03.152465+00 f t TOTAL 95000.00 3 5936 \N +229188 2025-08-20 20:54:03.154486+00 2025-08-20 20:54:03.154498+00 f t ADELANTO 10000.00 4 5936 \N +242437 2025-08-26 16:56:02.473192+00 2025-08-26 16:56:02.473204+00 f t SUBTOTAL 42000.00 1 6257 \N +242438 2025-08-26 16:56:02.476171+00 2025-08-26 16:56:02.476183+00 f t DESCUENTO 0.00 2 6257 \N +242439 2025-08-26 16:56:02.478874+00 2025-08-26 16:56:02.478885+00 f t TOTAL 42000.00 3 6257 \N +242440 2025-08-26 16:56:02.481128+00 2025-08-26 16:56:02.481141+00 f t ADELANTO 9500.00 4 6257 \N +237533 2025-08-24 20:22:53.708274+00 2025-08-24 20:22:53.708283+00 f t SUBTOTAL 50000.00 1 6140 \N +237534 2025-08-24 20:22:53.710073+00 2025-08-24 20:22:53.710081+00 f t DESCUENTO 0.00 2 6140 \N +237535 2025-08-24 20:22:53.711416+00 2025-08-24 20:22:53.711422+00 f t TOTAL 50000.00 3 6140 \N +237536 2025-08-24 20:22:53.712484+00 2025-08-24 20:22:53.71249+00 f t ADELANTO 10000.00 4 6140 \N +229237 2025-08-20 21:20:23.030957+00 2025-08-20 21:20:23.030968+00 f t SUBTOTAL 0.00 1 5937 \N +229238 2025-08-20 21:20:23.032983+00 2025-08-20 21:20:23.032993+00 f t DESCUENTO 0.00 2 5937 \N +229239 2025-08-20 21:20:23.034379+00 2025-08-20 21:20:23.034387+00 f t TOTAL 0.00 3 5937 \N +229240 2025-08-20 21:20:23.035544+00 2025-08-20 21:20:23.035552+00 f t ADELANTO 0.00 4 5937 \N +232293 2025-08-21 21:30:04.577168+00 2025-08-21 21:30:04.577177+00 f t SUBTOTAL 64500.00 1 6001 \N +232294 2025-08-21 21:30:04.583876+00 2025-08-21 21:30:04.583889+00 f t DESCUENTO 0.00 2 6001 \N +232295 2025-08-21 21:30:04.595763+00 2025-08-21 21:30:04.595779+00 f t TOTAL 64500.00 3 6001 \N +232296 2025-08-21 21:30:04.598442+00 2025-08-21 21:30:04.598455+00 f t ADELANTO 17000.00 4 6001 \N +232449 2025-08-22 00:38:17.172872+00 2025-08-22 00:38:17.172882+00 f t SUBTOTAL 64500.00 1 6007 \N +232450 2025-08-22 00:38:17.175065+00 2025-08-22 00:38:17.175073+00 f t DESCUENTO 0.00 2 6007 \N +232451 2025-08-22 00:38:17.176745+00 2025-08-22 00:38:17.176753+00 f t TOTAL 64500.00 3 6007 \N +232452 2025-08-22 00:38:17.178193+00 2025-08-22 00:38:17.1782+00 f t ADELANTO 17000.00 4 6007 \N +232609 2025-08-22 04:14:04.581746+00 2025-08-22 04:14:04.581755+00 f t SUBTOTAL 0.00 1 6014 \N +232610 2025-08-22 04:14:04.584235+00 2025-08-22 04:14:04.584249+00 f t DESCUENTO 0.00 2 6014 \N +232611 2025-08-22 04:14:04.586201+00 2025-08-22 04:14:04.586212+00 f t TOTAL 0.00 3 6014 \N +232612 2025-08-22 04:14:04.588142+00 2025-08-22 04:14:04.588152+00 f t ADELANTO 0.00 4 6014 \N +238001 2025-08-24 22:22:29.96527+00 2025-08-24 22:22:29.96528+00 f t SUBTOTAL 0.00 1 6153 \N +238002 2025-08-24 22:22:29.966876+00 2025-08-24 22:22:29.966883+00 f t DESCUENTO 0.00 2 6153 \N +238003 2025-08-24 22:22:29.970087+00 2025-08-24 22:22:29.970093+00 f t TOTAL 0.00 3 6153 \N +238004 2025-08-24 22:22:29.971313+00 2025-08-24 22:22:29.97132+00 f t ADELANTO 0.00 4 6153 \N +229285 2025-08-20 21:25:01.753045+00 2025-08-20 21:25:01.753057+00 f t SUBTOTAL 64500.00 1 5938 \N +229286 2025-08-20 21:25:01.758187+00 2025-08-20 21:25:01.758201+00 f t DESCUENTO 0.00 2 5938 \N +229287 2025-08-20 21:25:01.761129+00 2025-08-20 21:25:01.761143+00 f t TOTAL 64500.00 3 5938 \N +229288 2025-08-20 21:25:01.769564+00 2025-08-20 21:25:01.769576+00 f t ADELANTO 17000.00 4 5938 \N +232881 2025-08-22 12:35:49.373333+00 2025-08-22 12:35:49.373343+00 f t SUBTOTAL 0.00 1 6022 \N +232882 2025-08-22 12:35:49.375658+00 2025-08-22 12:35:49.375669+00 f t DESCUENTO 0.00 2 6022 \N +232883 2025-08-22 12:35:49.377089+00 2025-08-22 12:35:49.377096+00 f t TOTAL 0.00 3 6022 \N +232884 2025-08-22 12:35:49.378356+00 2025-08-22 12:35:49.378362+00 f t ADELANTO 0.00 4 6022 \N +238374 2025-08-25 00:20:39.70432+00 2025-08-25 00:20:39.704326+00 f t DESCUENTO 0.00 2 6163 \N +238375 2025-08-25 00:20:39.705729+00 2025-08-25 00:20:39.705737+00 f t TOTAL 49500.00 3 6163 \N +238376 2025-08-25 00:20:39.706798+00 2025-08-25 00:20:39.706803+00 f t ADELANTO 11500.00 4 6163 \N +229325 2025-08-20 21:34:54.854486+00 2025-08-20 21:34:54.854499+00 f t SUBTOTAL 64500.00 1 5939 \N +229326 2025-08-20 21:34:54.856366+00 2025-08-20 21:34:54.856374+00 f t DESCUENTO 0.00 2 5939 \N +229327 2025-08-20 21:34:54.857624+00 2025-08-20 21:34:54.85763+00 f t TOTAL 64500.00 3 5939 \N +229328 2025-08-20 21:34:54.858901+00 2025-08-20 21:34:54.858909+00 f t ADELANTO 17000.00 4 5939 \N +466539 2025-11-07 21:55:10.966028+00 2025-11-07 21:55:10.966034+00 f t DESCUENTO 0.00 3 11695 \N +229353 2025-08-20 21:39:40.707257+00 2025-08-20 21:39:40.707267+00 f t SUBTOTAL 50000.00 1 5940 \N +229354 2025-08-20 21:39:40.709275+00 2025-08-20 21:39:40.709286+00 f t DESCUENTO 0.00 2 5940 \N +229355 2025-08-20 21:39:40.710892+00 2025-08-20 21:39:40.710899+00 f t TOTAL 50000.00 3 5940 \N +229356 2025-08-20 21:39:40.712426+00 2025-08-20 21:39:40.712433+00 f t ADELANTO 10000.00 4 5940 \N +241033 2025-08-25 22:07:38.277486+00 2025-08-25 22:07:38.277497+00 f t SUBTOTAL 0.00 1 6223 \N +241034 2025-08-25 22:07:38.279628+00 2025-08-25 22:07:38.279636+00 f t DESCUENTO 0.00 2 6223 \N +241035 2025-08-25 22:07:38.280835+00 2025-08-25 22:07:38.280843+00 f t TOTAL 0.00 3 6223 \N +241036 2025-08-25 22:07:38.282234+00 2025-08-25 22:07:38.282241+00 f t ADELANTO 0.00 4 6223 \N +241181 2025-08-26 00:12:00.299582+00 2025-08-26 00:12:00.299595+00 f t SUBTOTAL 50000.00 1 6227 \N +241182 2025-08-26 00:12:00.301822+00 2025-08-26 00:12:00.301833+00 f t DESCUENTO 0.00 2 6227 \N +241183 2025-08-26 00:12:00.3074+00 2025-08-26 00:12:00.307412+00 f t TOTAL 50000.00 3 6227 \N +241184 2025-08-26 00:12:00.311471+00 2025-08-26 00:12:00.311483+00 f t ADELANTO 10000.00 4 6227 \N +230457 2025-08-21 03:11:30.611542+00 2025-08-21 03:11:30.611553+00 f t SUBTOTAL 94200.00 1 5964 \N +230458 2025-08-21 03:11:30.613657+00 2025-08-21 03:11:30.613668+00 f t DESCUENTO 0.00 2 5964 \N +230459 2025-08-21 03:11:30.616358+00 2025-08-21 03:11:30.616368+00 f t TOTAL 94200.00 3 5964 \N +230460 2025-08-21 03:11:30.619501+00 2025-08-21 03:11:30.619513+00 f t ADELANTO 56200.00 4 5964 \N +230533 2025-08-21 05:37:26.334638+00 2025-08-21 05:37:26.334647+00 f t SUBTOTAL 0.00 1 5967 \N +230534 2025-08-21 05:37:26.336746+00 2025-08-21 05:37:26.336754+00 f t DESCUENTO 0.00 2 5967 \N +230535 2025-08-21 05:37:26.338048+00 2025-08-21 05:37:26.338054+00 f t TOTAL 0.00 3 5967 \N +230536 2025-08-21 05:37:26.339365+00 2025-08-21 05:37:26.339371+00 f t ADELANTO 0.00 4 5967 \N +229433 2025-08-20 21:43:33.284663+00 2025-08-20 21:43:33.284674+00 f t SUBTOTAL 42000.00 1 5941 \N +229434 2025-08-20 21:43:33.2865+00 2025-08-20 21:43:33.286508+00 f t DESCUENTO 0.00 2 5941 \N +229435 2025-08-20 21:43:33.287823+00 2025-08-20 21:43:33.28783+00 f t TOTAL 42000.00 3 5941 \N +229436 2025-08-20 21:43:33.289108+00 2025-08-20 21:43:33.289115+00 f t ADELANTO 9500.00 4 5941 \N +236853 2025-08-24 12:03:29.162072+00 2025-08-24 12:03:29.162084+00 f t SUBTOTAL 76000.00 1 6122 \N +236854 2025-08-24 12:03:29.164717+00 2025-08-24 12:03:29.164727+00 f t DESCUENTO 0.00 2 6122 \N +236855 2025-08-24 12:03:29.167435+00 2025-08-24 12:03:29.167446+00 f t TOTAL 76000.00 3 6122 \N +236856 2025-08-24 12:03:29.169017+00 2025-08-24 12:03:29.169024+00 f t ADELANTO 11000.00 4 6122 \N +236917 2025-08-24 12:37:23.224621+00 2025-08-24 12:37:23.224632+00 f t SUBTOTAL 42000.00 1 6124 \N +236918 2025-08-24 12:37:23.227496+00 2025-08-24 12:37:23.227506+00 f t DESCUENTO 0.00 2 6124 \N +236919 2025-08-24 12:37:23.229162+00 2025-08-24 12:37:23.22917+00 f t TOTAL 42000.00 3 6124 \N +236920 2025-08-24 12:37:23.230675+00 2025-08-24 12:37:23.230682+00 f t ADELANTO 9500.00 4 6124 \N +231633 2025-08-21 19:03:02.181244+00 2025-08-21 19:03:02.181258+00 f t SUBTOTAL 64500.00 1 5992 \N +231634 2025-08-21 19:03:02.185149+00 2025-08-21 19:03:02.185159+00 f t DESCUENTO 0.00 2 5992 \N +231635 2025-08-21 19:03:02.188672+00 2025-08-21 19:03:02.188684+00 f t TOTAL 64500.00 3 5992 \N +231636 2025-08-21 19:03:02.192271+00 2025-08-21 19:03:02.192283+00 f t ADELANTO 17000.00 4 5992 \N +237169 2025-08-24 16:38:27.394851+00 2025-08-24 16:38:27.394867+00 f t SUBTOTAL 27500.00 1 6131 \N +237170 2025-08-24 16:38:27.39691+00 2025-08-24 16:38:27.396917+00 f t DESCUENTO 0.00 2 6131 \N +237171 2025-08-24 16:38:27.397933+00 2025-08-24 16:38:27.397937+00 f t TOTAL 27500.00 3 6131 \N +237172 2025-08-24 16:38:27.398823+00 2025-08-24 16:38:27.398829+00 f t ADELANTO 27500.00 4 6131 \N +229509 2025-08-20 21:45:15.75591+00 2025-08-20 21:45:15.755919+00 f t SUBTOTAL 49500.00 1 5942 \N +229510 2025-08-20 21:45:15.757602+00 2025-08-20 21:45:15.757608+00 f t DESCUENTO 0.00 2 5942 \N +229511 2025-08-20 21:45:15.759083+00 2025-08-20 21:45:15.75909+00 f t TOTAL 49500.00 3 5942 \N +229512 2025-08-20 21:45:15.760653+00 2025-08-20 21:45:15.760659+00 f t ADELANTO 11500.00 4 5942 \N +232301 2025-08-21 21:38:13.760735+00 2025-08-21 21:38:13.760744+00 f t SUBTOTAL 0.00 1 6002 \N +232302 2025-08-21 21:38:13.762066+00 2025-08-21 21:38:13.762072+00 f t DESCUENTO 0.00 2 6002 \N +232303 2025-08-21 21:38:13.763306+00 2025-08-21 21:38:13.763316+00 f t TOTAL 0.00 3 6002 \N +232304 2025-08-21 21:38:13.764354+00 2025-08-21 21:38:13.764362+00 f t ADELANTO 0.00 4 6002 \N +237765 2025-08-24 21:21:28.703+00 2025-08-24 21:21:28.703009+00 f t SUBTOTAL 42000.00 1 6144 \N +237766 2025-08-24 21:21:28.704846+00 2025-08-24 21:21:28.704854+00 f t DESCUENTO 0.00 2 6144 \N +237767 2025-08-24 21:21:28.706135+00 2025-08-24 21:21:28.706141+00 f t TOTAL 42000.00 3 6144 \N +237768 2025-08-24 21:21:28.707717+00 2025-08-24 21:21:28.707725+00 f t ADELANTO 9500.00 4 6144 \N +229541 2025-08-20 21:51:22.888946+00 2025-08-20 21:51:22.888958+00 f t SUBTOTAL 68000.00 1 5943 \N +229542 2025-08-20 21:51:22.89097+00 2025-08-20 21:51:22.890981+00 f t DESCUENTO 0.00 2 5943 \N +229543 2025-08-20 21:51:22.892491+00 2025-08-20 21:51:22.892501+00 f t TOTAL 68000.00 3 5943 \N +229544 2025-08-20 21:51:22.894151+00 2025-08-20 21:51:22.89416+00 f t ADELANTO 13000.00 4 5943 \N +232617 2025-08-22 04:52:07.371995+00 2025-08-22 04:52:07.372006+00 f t SUBTOTAL 0.00 1 6015 \N +232618 2025-08-22 04:52:07.373947+00 2025-08-22 04:52:07.373959+00 f t DESCUENTO 0.00 2 6015 \N +232619 2025-08-22 04:52:07.375804+00 2025-08-22 04:52:07.375812+00 f t TOTAL 0.00 3 6015 \N +232620 2025-08-22 04:52:07.379725+00 2025-08-22 04:52:07.379736+00 f t ADELANTO 0.00 4 6015 \N +232805 2025-08-22 11:35:48.371357+00 2025-08-22 11:35:48.371367+00 f t SUBTOTAL 0.00 1 6020 \N +232806 2025-08-22 11:35:48.373447+00 2025-08-22 11:35:48.373455+00 f t DESCUENTO 0.00 2 6020 \N +232807 2025-08-22 11:35:48.374559+00 2025-08-22 11:35:48.374566+00 f t TOTAL 0.00 3 6020 \N +232808 2025-08-22 11:35:48.375598+00 2025-08-22 11:35:48.375605+00 f t ADELANTO 0.00 4 6020 \N +229597 2025-08-20 21:58:47.463166+00 2025-08-20 21:58:47.463174+00 f t SUBTOTAL 42000.00 1 5944 \N +229598 2025-08-20 21:58:47.465002+00 2025-08-20 21:58:47.465011+00 f t DESCUENTO 0.00 2 5944 \N +229599 2025-08-20 21:58:47.466334+00 2025-08-20 21:58:47.46634+00 f t TOTAL 42000.00 3 5944 \N +229600 2025-08-20 21:58:47.467448+00 2025-08-20 21:58:47.467454+00 f t ADELANTO 9500.00 4 5944 \N +232945 2025-08-22 13:00:55.528972+00 2025-08-22 13:00:55.528985+00 f t SUBTOTAL 0.00 1 6023 \N +232946 2025-08-22 13:00:55.531715+00 2025-08-22 13:00:55.531726+00 f t DESCUENTO 0.00 2 6023 \N +232947 2025-08-22 13:00:55.533864+00 2025-08-22 13:00:55.533877+00 f t TOTAL 0.00 3 6023 \N +232948 2025-08-22 13:00:55.535914+00 2025-08-22 13:00:55.535927+00 f t ADELANTO 0.00 4 6023 \N +233029 2025-08-22 14:00:24.616908+00 2025-08-22 14:00:24.61692+00 f t SUBTOTAL 72000.00 1 6026 \N +233030 2025-08-22 14:00:24.619371+00 2025-08-22 14:00:24.619382+00 f t DESCUENTO 0.00 2 6026 \N +233031 2025-08-22 14:00:24.621435+00 2025-08-22 14:00:24.621448+00 f t TOTAL 72000.00 3 6026 \N +233032 2025-08-22 14:00:24.623458+00 2025-08-22 14:00:24.623469+00 f t ADELANTO 19000.00 4 6026 \N +238537 2025-08-25 01:13:38.461055+00 2025-08-25 01:13:38.461064+00 f t SUBTOTAL 0.00 1 6168 \N +238538 2025-08-25 01:13:38.462585+00 2025-08-25 01:13:38.462593+00 f t DESCUENTO 0.00 2 6168 \N +238539 2025-08-25 01:13:38.463905+00 2025-08-25 01:13:38.463912+00 f t TOTAL 0.00 3 6168 \N +246301 2025-08-28 08:19:50.112381+00 2025-08-28 08:19:50.112392+00 f t SUBTOTAL 0.00 1 6346 \N +246302 2025-08-28 08:19:50.114522+00 2025-08-28 08:19:50.11453+00 f t DESCUENTO 0.00 2 6346 \N +246303 2025-08-28 08:19:50.115887+00 2025-08-28 08:19:50.115892+00 f t TOTAL 0.00 3 6346 \N +246304 2025-08-28 08:19:50.117102+00 2025-08-28 08:19:50.11711+00 f t ADELANTO 0.00 4 6346 \N +235477 2025-08-23 16:33:50.746892+00 2025-08-23 16:33:50.746901+00 f t SUBTOTAL 42000.00 1 6090 \N +235478 2025-08-23 16:33:50.748949+00 2025-08-23 16:33:50.748957+00 f t DESCUENTO 0.00 2 6090 \N +235479 2025-08-23 16:33:50.750486+00 2025-08-23 16:33:50.750493+00 f t TOTAL 42000.00 3 6090 \N +233057 2025-08-22 14:08:43.067473+00 2025-08-22 14:08:43.067481+00 f t SUBTOTAL 49500.00 1 6027 \N +233058 2025-08-22 14:08:43.070081+00 2025-08-22 14:08:43.070092+00 f t DESCUENTO 0.00 2 6027 \N +233059 2025-08-22 14:08:43.07314+00 2025-08-22 14:08:43.073193+00 f t TOTAL 49500.00 3 6027 \N +233060 2025-08-22 14:08:43.077786+00 2025-08-22 14:08:43.077797+00 f t ADELANTO 11500.00 4 6027 \N +235480 2025-08-23 16:33:50.751813+00 2025-08-23 16:33:50.75182+00 f t ADELANTO 9500.00 4 6090 \N +235737 2025-08-23 20:27:47.775044+00 2025-08-23 20:27:47.775053+00 f t SUBTOTAL 93200.00 1 6097 \N +235738 2025-08-23 20:27:47.776843+00 2025-08-23 20:27:47.77685+00 f t DESCUENTO 0.00 2 6097 \N +235739 2025-08-23 20:27:47.778111+00 2025-08-23 20:27:47.77812+00 f t TOTAL 93200.00 3 6097 \N +235740 2025-08-23 20:27:47.77971+00 2025-08-23 20:27:47.779716+00 f t ADELANTO 55200.00 4 6097 \N +235897 2025-08-23 21:41:37.335018+00 2025-08-23 21:41:37.335027+00 f t SUBTOTAL 42000.00 1 6100 \N +235898 2025-08-23 21:41:37.337143+00 2025-08-23 21:41:37.337149+00 f t DESCUENTO 0.00 2 6100 \N +235899 2025-08-23 21:41:37.339428+00 2025-08-23 21:41:37.339434+00 f t TOTAL 42000.00 3 6100 \N +235900 2025-08-23 21:41:37.341447+00 2025-08-23 21:41:37.341455+00 f t ADELANTO 9500.00 4 6100 \N +233085 2025-08-22 15:12:53.130056+00 2025-08-22 15:12:53.130065+00 f t SUBTOTAL 0.00 1 6028 \N +233086 2025-08-22 15:12:53.132513+00 2025-08-22 15:12:53.132522+00 f t DESCUENTO 0.00 2 6028 \N +233087 2025-08-22 15:12:53.133859+00 2025-08-22 15:12:53.133866+00 f t TOTAL 0.00 3 6028 \N +233088 2025-08-22 15:12:53.135112+00 2025-08-22 15:12:53.135118+00 f t ADELANTO 0.00 4 6028 \N +241189 2025-08-26 00:26:02.53921+00 2025-08-26 00:26:02.539226+00 f t SUBTOTAL 0.00 1 6228 \N +241190 2025-08-26 00:26:02.541007+00 2025-08-26 00:26:02.541018+00 f t DESCUENTO 0.00 2 6228 \N +241191 2025-08-26 00:26:02.542369+00 2025-08-26 00:26:02.542378+00 f t TOTAL 0.00 3 6228 \N +241192 2025-08-26 00:26:02.543841+00 2025-08-26 00:26:02.543849+00 f t ADELANTO 0.00 4 6228 \N +241389 2025-08-26 02:10:29.067936+00 2025-08-26 02:10:29.067947+00 f t SUBTOTAL 64500.00 1 6232 \N +241390 2025-08-26 02:10:29.071336+00 2025-08-26 02:10:29.071345+00 f t DESCUENTO 0.00 2 6232 \N +241391 2025-08-26 02:10:29.073314+00 2025-08-26 02:10:29.073323+00 f t TOTAL 64500.00 3 6232 \N +241392 2025-08-26 02:10:29.075196+00 2025-08-26 02:10:29.075204+00 f t ADELANTO 17000.00 4 6232 \N +233121 2025-08-22 15:50:55.058407+00 2025-08-22 15:50:55.058419+00 f t SUBTOTAL 42000.00 1 6029 \N +233122 2025-08-22 15:50:55.060483+00 2025-08-22 15:50:55.060493+00 f t DESCUENTO 0.00 2 6029 \N +233123 2025-08-22 15:50:55.062858+00 2025-08-22 15:50:55.062868+00 f t TOTAL 42000.00 3 6029 \N +233124 2025-08-22 15:50:55.064542+00 2025-08-22 15:50:55.064549+00 f t ADELANTO 9500.00 4 6029 \N +242057 2025-08-26 09:57:23.037732+00 2025-08-26 09:57:23.037746+00 f t SUBTOTAL 0.00 1 6245 \N +242058 2025-08-26 09:57:23.040741+00 2025-08-26 09:57:23.040753+00 f t DESCUENTO 0.00 2 6245 \N +242059 2025-08-26 09:57:23.042675+00 2025-08-26 09:57:23.042686+00 f t TOTAL 0.00 3 6245 \N +242060 2025-08-26 09:57:23.044483+00 2025-08-26 09:57:23.044494+00 f t ADELANTO 0.00 4 6245 \N +242317 2025-08-26 14:25:47.061792+00 2025-08-26 14:25:47.061808+00 f t SUBTOTAL 0.00 1 6254 \N +242318 2025-08-26 14:25:47.064318+00 2025-08-26 14:25:47.06433+00 f t DESCUENTO 0.00 2 6254 \N +242319 2025-08-26 14:25:47.066065+00 2025-08-26 14:25:47.066077+00 f t TOTAL 0.00 3 6254 \N +242320 2025-08-26 14:25:47.067643+00 2025-08-26 14:25:47.067652+00 f t ADELANTO 0.00 4 6254 \N +233189 2025-08-22 16:07:54.808944+00 2025-08-22 16:07:54.808957+00 f t SUBTOTAL 0.00 1 6030 \N +233190 2025-08-22 16:07:54.816294+00 2025-08-22 16:07:54.816307+00 f t DESCUENTO 0.00 2 6030 \N +233191 2025-08-22 16:07:54.82491+00 2025-08-22 16:07:54.824921+00 f t TOTAL 0.00 3 6030 \N +233192 2025-08-22 16:07:54.826906+00 2025-08-22 16:07:54.826916+00 f t ADELANTO 0.00 4 6030 \N +233233 2025-08-22 16:16:32.63878+00 2025-08-22 16:16:32.638791+00 f t SUBTOTAL 0.00 1 6032 \N +233234 2025-08-22 16:16:32.640905+00 2025-08-22 16:16:32.640913+00 f t DESCUENTO 0.00 2 6032 \N +233235 2025-08-22 16:16:32.642398+00 2025-08-22 16:16:32.642405+00 f t TOTAL 0.00 3 6032 \N +233236 2025-08-22 16:16:32.643752+00 2025-08-22 16:16:32.643758+00 f t ADELANTO 0.00 4 6032 \N +238229 2025-08-24 23:39:49.549743+00 2025-08-24 23:39:49.549753+00 f t SUBTOTAL 0.00 1 6158 \N +238230 2025-08-24 23:39:49.551704+00 2025-08-24 23:39:49.551711+00 f t DESCUENTO 0.00 2 6158 \N +238231 2025-08-24 23:39:49.553591+00 2025-08-24 23:39:49.553598+00 f t TOTAL 0.00 3 6158 \N +238232 2025-08-24 23:39:49.554806+00 2025-08-24 23:39:49.554813+00 f t ADELANTO 0.00 4 6158 \N +238333 2025-08-25 00:00:02.335627+00 2025-08-25 00:00:02.335644+00 f t SUBTOTAL 49500.00 1 6161 \N +238334 2025-08-25 00:00:02.354395+00 2025-08-25 00:00:02.354409+00 f t DESCUENTO 0.00 2 6161 \N +238335 2025-08-25 00:00:02.365153+00 2025-08-25 00:00:02.365168+00 f t TOTAL 49500.00 3 6161 \N +238336 2025-08-25 00:00:02.368155+00 2025-08-25 00:00:02.368171+00 f t ADELANTO 11500.00 4 6161 \N +233273 2025-08-22 16:18:51.806296+00 2025-08-22 16:18:51.806307+00 f t SUBTOTAL 95700.00 1 6031 \N +233274 2025-08-22 16:18:51.808193+00 2025-08-22 16:18:51.8082+00 f t DESCUENTO 0.00 2 6031 \N +233275 2025-08-22 16:18:51.811445+00 2025-08-22 16:18:51.811453+00 f t TOTAL 95700.00 3 6031 \N +233276 2025-08-22 16:18:51.812709+00 2025-08-22 16:18:51.812715+00 f t ADELANTO 57700.00 4 6031 \N +238540 2025-08-25 01:13:38.465957+00 2025-08-25 01:13:38.465963+00 f t ADELANTO 0.00 4 6168 \N +233289 2025-08-22 16:23:04.285214+00 2025-08-22 16:23:04.285227+00 f t SUBTOTAL 0.00 1 6033 \N +233290 2025-08-22 16:23:04.288209+00 2025-08-22 16:23:04.28822+00 f t DESCUENTO 0.00 2 6033 \N +233291 2025-08-22 16:23:04.290568+00 2025-08-22 16:23:04.290579+00 f t TOTAL 0.00 3 6033 \N +233292 2025-08-22 16:23:04.29283+00 2025-08-22 16:23:04.292838+00 f t ADELANTO 0.00 4 6033 \N +233297 2025-08-22 16:28:12.213891+00 2025-08-22 16:28:12.2139+00 f t SUBTOTAL 0.00 1 6034 \N +233298 2025-08-22 16:28:12.215759+00 2025-08-22 16:28:12.215766+00 f t DESCUENTO 0.00 2 6034 \N +233299 2025-08-22 16:28:12.217333+00 2025-08-22 16:28:12.217343+00 f t TOTAL 0.00 3 6034 \N +233300 2025-08-22 16:28:12.218896+00 2025-08-22 16:28:12.218905+00 f t ADELANTO 0.00 4 6034 \N +243509 2025-08-27 03:26:06.041479+00 2025-08-27 03:26:06.041492+00 f t SUBTOTAL 27500.00 1 6284 \N +243510 2025-08-27 03:26:06.04453+00 2025-08-27 03:26:06.04454+00 f t DESCUENTO 0.00 2 6284 \N +243511 2025-08-27 03:26:06.046278+00 2025-08-27 03:26:06.04629+00 f t TOTAL 27500.00 3 6284 \N +243512 2025-08-27 03:26:06.048438+00 2025-08-27 03:26:06.04845+00 f t ADELANTO 27500.00 4 6284 \N +238685 2025-08-25 01:30:26.699912+00 2025-08-25 01:30:26.699935+00 f t SUBTOTAL 0.00 1 6170 \N +238686 2025-08-25 01:30:26.704801+00 2025-08-25 01:30:26.704813+00 f t DESCUENTO 0.00 2 6170 \N +238687 2025-08-25 01:30:26.706884+00 2025-08-25 01:30:26.706892+00 f t TOTAL 0.00 3 6170 \N +238688 2025-08-25 01:30:26.708423+00 2025-08-25 01:30:26.70843+00 f t ADELANTO 0.00 4 6170 \N +264125 2025-09-03 10:54:53.816301+00 2025-09-03 10:54:53.816315+00 f t SUBTOTAL 0.00 1 6789 \N +264126 2025-09-03 10:54:53.819554+00 2025-09-03 10:54:53.819564+00 f t DESCUENTO 0.00 2 6789 \N +264127 2025-09-03 10:54:53.821313+00 2025-09-03 10:54:53.821322+00 f t TOTAL 0.00 3 6789 \N +264128 2025-09-03 10:54:53.822623+00 2025-09-03 10:54:53.822629+00 f t ADELANTO 0.00 4 6789 \N +233341 2025-08-22 16:52:16.814123+00 2025-08-22 16:52:16.814134+00 f t SUBTOTAL 50000.00 1 6035 \N +233342 2025-08-22 16:52:16.816271+00 2025-08-22 16:52:16.816283+00 f t DESCUENTO 0.00 2 6035 \N +233343 2025-08-22 16:52:16.817824+00 2025-08-22 16:52:16.817833+00 f t TOTAL 50000.00 3 6035 \N +233344 2025-08-22 16:52:16.819437+00 2025-08-22 16:52:16.819444+00 f t ADELANTO 10000.00 4 6035 \N +233349 2025-08-22 17:10:20.649875+00 2025-08-22 17:10:20.649888+00 f t SUBTOTAL 0.00 1 6036 \N +233350 2025-08-22 17:10:20.652454+00 2025-08-22 17:10:20.652467+00 f t DESCUENTO 0.00 2 6036 \N +233351 2025-08-22 17:10:20.655233+00 2025-08-22 17:10:20.655246+00 f t TOTAL 0.00 3 6036 \N +233352 2025-08-22 17:10:20.657031+00 2025-08-22 17:10:20.657041+00 f t ADELANTO 0.00 4 6036 \N +240953 2025-08-25 20:23:39.342366+00 2025-08-25 20:23:39.342379+00 f t SUBTOTAL 42000.00 1 6219 \N +240954 2025-08-25 20:23:39.344946+00 2025-08-25 20:23:39.344958+00 f t DESCUENTO 0.00 2 6219 \N +240955 2025-08-25 20:23:39.34685+00 2025-08-25 20:23:39.346859+00 f t TOTAL 42000.00 3 6219 \N +240956 2025-08-25 20:23:39.348837+00 2025-08-25 20:23:39.348846+00 f t ADELANTO 9500.00 4 6219 \N +233369 2025-08-22 17:21:18.600999+00 2025-08-22 17:21:18.601008+00 f t SUBTOTAL 0.00 1 6037 \N +233370 2025-08-22 17:21:18.603572+00 2025-08-22 17:21:18.603582+00 f t DESCUENTO 0.00 2 6037 \N +233371 2025-08-22 17:21:18.604976+00 2025-08-22 17:21:18.604983+00 f t TOTAL 0.00 3 6037 \N +233372 2025-08-22 17:21:18.606221+00 2025-08-22 17:21:18.60623+00 f t ADELANTO 0.00 4 6037 \N +241325 2025-08-26 01:03:49.727748+00 2025-08-26 01:03:49.727757+00 f t SUBTOTAL 50000.00 1 6231 \N +241326 2025-08-26 01:03:49.729928+00 2025-08-26 01:03:49.729937+00 f t DESCUENTO 0.00 2 6231 \N +241327 2025-08-26 01:03:49.731275+00 2025-08-26 01:03:49.73128+00 f t TOTAL 50000.00 3 6231 \N +241328 2025-08-26 01:03:49.732576+00 2025-08-26 01:03:49.732582+00 f t ADELANTO 10000.00 4 6231 \N +241397 2025-08-26 02:13:09.801287+00 2025-08-26 02:13:09.801302+00 f t SUBTOTAL 0.00 1 6233 \N +233397 2025-08-22 17:29:15.691199+00 2025-08-22 17:29:15.691212+00 f t SUBTOTAL 50000.00 1 6038 \N +233398 2025-08-22 17:29:15.693208+00 2025-08-22 17:29:15.693219+00 f t DESCUENTO 0.00 2 6038 \N +233399 2025-08-22 17:29:15.694865+00 2025-08-22 17:29:15.694876+00 f t TOTAL 50000.00 3 6038 \N +233400 2025-08-22 17:29:15.696319+00 2025-08-22 17:29:15.69633+00 f t ADELANTO 10000.00 4 6038 \N +236057 2025-08-23 22:50:45.534772+00 2025-08-23 22:50:45.53478+00 f t SUBTOTAL 82200.00 1 6103 \N +236058 2025-08-23 22:50:45.536532+00 2025-08-23 22:50:45.53654+00 f t DESCUENTO 0.00 2 6103 \N +236059 2025-08-23 22:50:45.537884+00 2025-08-23 22:50:45.537891+00 f t TOTAL 82200.00 3 6103 \N +236060 2025-08-23 22:50:45.539287+00 2025-08-23 22:50:45.539293+00 f t ADELANTO 44200.00 4 6103 \N +236357 2025-08-24 01:04:57.169681+00 2025-08-24 01:04:57.16969+00 f t SUBTOTAL 50000.00 1 6111 \N +236358 2025-08-24 01:04:57.171703+00 2025-08-24 01:04:57.171712+00 f t DESCUENTO 0.00 2 6111 \N +236359 2025-08-24 01:04:57.173169+00 2025-08-24 01:04:57.173177+00 f t TOTAL 50000.00 3 6111 \N +236360 2025-08-24 01:04:57.174419+00 2025-08-24 01:04:57.174427+00 f t ADELANTO 10000.00 4 6111 \N +233441 2025-08-22 17:52:06.804646+00 2025-08-22 17:52:06.804658+00 f t SUBTOTAL 68000.00 1 6039 \N +233442 2025-08-22 17:52:06.807069+00 2025-08-22 17:52:06.807078+00 f t DESCUENTO 0.00 2 6039 \N +233443 2025-08-22 17:52:06.809035+00 2025-08-22 17:52:06.809042+00 f t TOTAL 68000.00 3 6039 \N +233444 2025-08-22 17:52:06.811883+00 2025-08-22 17:52:06.811899+00 f t ADELANTO 13000.00 4 6039 \N +233481 2025-08-22 18:44:47.802812+00 2025-08-22 18:44:47.802821+00 f t SUBTOTAL 50000.00 1 6040 \N +233482 2025-08-22 18:44:47.804626+00 2025-08-22 18:44:47.804637+00 f t DESCUENTO 0.00 2 6040 \N +233483 2025-08-22 18:44:47.805827+00 2025-08-22 18:44:47.805833+00 f t TOTAL 50000.00 3 6040 \N +233484 2025-08-22 18:44:47.80688+00 2025-08-22 18:44:47.806886+00 f t ADELANTO 10000.00 4 6040 \N +237301 2025-08-24 18:35:51.474436+00 2025-08-24 18:35:51.474449+00 f t SUBTOTAL 0.00 1 6134 \N +237302 2025-08-24 18:35:51.476897+00 2025-08-24 18:35:51.476909+00 f t DESCUENTO 0.00 2 6134 \N +237303 2025-08-24 18:35:51.478719+00 2025-08-24 18:35:51.478729+00 f t TOTAL 0.00 3 6134 \N +237304 2025-08-24 18:35:51.480327+00 2025-08-24 18:35:51.480336+00 f t ADELANTO 0.00 4 6134 \N +237485 2025-08-24 19:39:43.164602+00 2025-08-24 19:39:43.164615+00 f t SUBTOTAL 0.00 1 6138 \N +237486 2025-08-24 19:39:43.166665+00 2025-08-24 19:39:43.166673+00 f t DESCUENTO 0.00 2 6138 \N +237487 2025-08-24 19:39:43.167955+00 2025-08-24 19:39:43.167962+00 f t TOTAL 0.00 3 6138 \N +237488 2025-08-24 19:39:43.16927+00 2025-08-24 19:39:43.169275+00 f t ADELANTO 0.00 4 6138 \N +233517 2025-08-22 18:47:35.836944+00 2025-08-22 18:47:35.836953+00 f t SUBTOTAL 49500.00 1 6041 \N +233518 2025-08-22 18:47:35.838854+00 2025-08-22 18:47:35.838861+00 f t DESCUENTO 0.00 2 6041 \N +233519 2025-08-22 18:47:35.843896+00 2025-08-22 18:47:35.843908+00 f t TOTAL 49500.00 3 6041 \N +233520 2025-08-22 18:47:35.846055+00 2025-08-22 18:47:35.846063+00 f t ADELANTO 11500.00 4 6041 \N +237945 2025-08-24 21:47:34.479073+00 2025-08-24 21:47:34.479085+00 f t SUBTOTAL 50000.00 1 6149 \N +237946 2025-08-24 21:47:34.480945+00 2025-08-24 21:47:34.480953+00 f t DESCUENTO 0.00 2 6149 \N +237947 2025-08-24 21:47:34.482392+00 2025-08-24 21:47:34.4824+00 f t TOTAL 50000.00 3 6149 \N +237948 2025-08-24 21:47:34.483589+00 2025-08-24 21:47:34.483597+00 f t ADELANTO 10000.00 4 6149 \N +233561 2025-08-22 19:27:32.05857+00 2025-08-22 19:27:32.058581+00 f t SUBTOTAL 64500.00 1 6042 \N +233562 2025-08-22 19:27:32.060873+00 2025-08-22 19:27:32.060882+00 f t DESCUENTO 0.00 2 6042 \N +233563 2025-08-22 19:27:32.062521+00 2025-08-22 19:27:32.062532+00 f t TOTAL 64500.00 3 6042 \N +233564 2025-08-22 19:27:32.064055+00 2025-08-22 19:27:32.064063+00 f t ADELANTO 17000.00 4 6042 \N +238289 2025-08-24 23:55:02.326098+00 2025-08-24 23:55:02.326118+00 f t SUBTOTAL 0.00 1 6160 \N +238290 2025-08-24 23:55:02.340867+00 2025-08-24 23:55:02.340882+00 f t DESCUENTO 0.00 2 6160 \N +238291 2025-08-24 23:55:02.345907+00 2025-08-24 23:55:02.345921+00 f t TOTAL 0.00 3 6160 \N +238292 2025-08-24 23:55:02.355449+00 2025-08-24 23:55:02.355465+00 f t ADELANTO 0.00 4 6160 \N +238341 2025-08-25 00:18:25.188335+00 2025-08-25 00:18:25.188344+00 f t SUBTOTAL 0.00 1 6162 \N +238342 2025-08-25 00:18:25.189842+00 2025-08-25 00:18:25.189848+00 f t DESCUENTO 0.00 2 6162 \N +238343 2025-08-25 00:18:25.190899+00 2025-08-25 00:18:25.190904+00 f t TOTAL 0.00 3 6162 \N +238344 2025-08-25 00:18:25.191768+00 2025-08-25 00:18:25.191773+00 f t ADELANTO 0.00 4 6162 \N +233589 2025-08-22 19:31:44.770536+00 2025-08-22 19:31:44.770548+00 f t SUBTOTAL 49500.00 1 6043 \N +233590 2025-08-22 19:31:44.772651+00 2025-08-22 19:31:44.772662+00 f t DESCUENTO 0.00 2 6043 \N +233591 2025-08-22 19:31:44.774362+00 2025-08-22 19:31:44.774372+00 f t TOTAL 49500.00 3 6043 \N +233592 2025-08-22 19:31:44.775901+00 2025-08-22 19:31:44.77591+00 f t ADELANTO 11500.00 4 6043 \N +233597 2025-08-22 19:36:37.337535+00 2025-08-22 19:36:37.337546+00 f t SUBTOTAL 0.00 1 6044 \N +233598 2025-08-22 19:36:37.33941+00 2025-08-22 19:36:37.33942+00 f t DESCUENTO 0.00 2 6044 \N +233599 2025-08-22 19:36:37.341021+00 2025-08-22 19:36:37.34103+00 f t TOTAL 0.00 3 6044 \N +233600 2025-08-22 19:36:37.342419+00 2025-08-22 19:36:37.342427+00 f t ADELANTO 0.00 4 6044 \N +466540 2025-11-07 21:55:10.967497+00 2025-11-07 21:55:10.967504+00 f t TOTAL 46000.00 4 11695 \N +233629 2025-08-22 19:45:11.532341+00 2025-08-22 19:45:11.532352+00 f t SUBTOTAL 0.00 1 6045 \N +233630 2025-08-22 19:45:11.535775+00 2025-08-22 19:45:11.535788+00 f t DESCUENTO 0.00 2 6045 \N +233631 2025-08-22 19:45:11.538743+00 2025-08-22 19:45:11.538755+00 f t TOTAL 0.00 3 6045 \N +233632 2025-08-22 19:45:11.542365+00 2025-08-22 19:45:11.542377+00 f t ADELANTO 0.00 4 6045 \N +240961 2025-08-25 20:54:23.516425+00 2025-08-25 20:54:23.516437+00 f t SUBTOTAL 0.00 1 6220 \N +240962 2025-08-25 20:54:23.518475+00 2025-08-25 20:54:23.518483+00 f t DESCUENTO 0.00 2 6220 \N +240963 2025-08-25 20:54:23.521368+00 2025-08-25 20:54:23.521377+00 f t TOTAL 0.00 3 6220 \N +240964 2025-08-25 20:54:23.522824+00 2025-08-25 20:54:23.52283+00 f t ADELANTO 0.00 4 6220 \N +233661 2025-08-22 19:46:27.920091+00 2025-08-22 19:46:27.920099+00 f t SUBTOTAL 64500.00 1 6046 \N +233662 2025-08-22 19:46:27.921943+00 2025-08-22 19:46:27.921951+00 f t DESCUENTO 0.00 2 6046 \N +233663 2025-08-22 19:46:27.923296+00 2025-08-22 19:46:27.923302+00 f t TOTAL 64500.00 3 6046 \N +233664 2025-08-22 19:46:27.924445+00 2025-08-22 19:46:27.924451+00 f t ADELANTO 17000.00 4 6046 \N +235985 2025-08-23 21:50:41.497949+00 2025-08-23 21:50:41.497962+00 f t SUBTOTAL 0.00 1 6102 \N +235986 2025-08-23 21:50:41.500623+00 2025-08-23 21:50:41.500634+00 f t DESCUENTO 0.00 2 6102 \N +235987 2025-08-23 21:50:41.502461+00 2025-08-23 21:50:41.502472+00 f t TOTAL 0.00 3 6102 \N +235988 2025-08-23 21:50:41.504136+00 2025-08-23 21:50:41.504146+00 f t ADELANTO 0.00 4 6102 \N +241398 2025-08-26 02:13:09.803353+00 2025-08-26 02:13:09.803363+00 f t DESCUENTO 0.00 2 6233 \N +241399 2025-08-26 02:13:09.807285+00 2025-08-26 02:13:09.807295+00 f t TOTAL 0.00 3 6233 \N +241400 2025-08-26 02:13:09.80952+00 2025-08-26 02:13:09.809529+00 f t ADELANTO 0.00 4 6233 \N +233717 2025-08-22 19:54:06.548441+00 2025-08-22 19:54:06.548454+00 f t SUBTOTAL 0.00 1 6047 \N +233718 2025-08-22 19:54:06.5507+00 2025-08-22 19:54:06.550709+00 f t DESCUENTO 0.00 2 6047 \N +233719 2025-08-22 19:54:06.552304+00 2025-08-22 19:54:06.552314+00 f t TOTAL 0.00 3 6047 \N +233720 2025-08-22 19:54:06.554024+00 2025-08-22 19:54:06.554031+00 f t ADELANTO 0.00 4 6047 \N +248061 2025-08-29 01:54:11.894293+00 2025-08-29 01:54:11.894304+00 f t SUBTOTAL 50000.00 1 6400 \N +248062 2025-08-29 01:54:11.896724+00 2025-08-29 01:54:11.896736+00 f t DESCUENTO 0.00 2 6400 \N +248063 2025-08-29 01:54:11.899279+00 2025-08-29 01:54:11.899292+00 f t TOTAL 50000.00 3 6400 \N +248064 2025-08-29 01:54:11.901492+00 2025-08-29 01:54:11.901504+00 f t ADELANTO 10000.00 4 6400 \N +233753 2025-08-22 20:04:37.870055+00 2025-08-22 20:04:37.870065+00 f t SUBTOTAL 0.00 1 6048 \N +233754 2025-08-22 20:04:37.873115+00 2025-08-22 20:04:37.873124+00 f t DESCUENTO 0.00 2 6048 \N +233755 2025-08-22 20:04:37.874997+00 2025-08-22 20:04:37.875008+00 f t TOTAL 0.00 3 6048 \N +233756 2025-08-22 20:04:37.877185+00 2025-08-22 20:04:37.877195+00 f t ADELANTO 0.00 4 6048 \N +248357 2025-08-29 10:47:34.225218+00 2025-08-29 10:47:34.225232+00 f t SUBTOTAL 50000.00 1 6409 \N +248358 2025-08-29 10:47:34.227982+00 2025-08-29 10:47:34.227995+00 f t DESCUENTO 0.00 2 6409 \N +248359 2025-08-29 10:47:34.230148+00 2025-08-29 10:47:34.230159+00 f t TOTAL 50000.00 3 6409 \N +248360 2025-08-29 10:47:34.232362+00 2025-08-29 10:47:34.232373+00 f t ADELANTO 10000.00 4 6409 \N +237425 2025-08-24 19:23:28.461057+00 2025-08-24 19:23:28.461065+00 f t SUBTOTAL 42000.00 1 6136 \N +237426 2025-08-24 19:23:28.462967+00 2025-08-24 19:23:28.462974+00 f t DESCUENTO 0.00 2 6136 \N +237427 2025-08-24 19:23:28.46429+00 2025-08-24 19:23:28.464296+00 f t TOTAL 42000.00 3 6136 \N +237428 2025-08-24 19:23:28.465526+00 2025-08-24 19:23:28.465531+00 f t ADELANTO 9500.00 4 6136 \N +233781 2025-08-22 20:15:21.023838+00 2025-08-22 20:15:21.023851+00 f t SUBTOTAL 146700.00 1 6049 \N +233782 2025-08-22 20:15:21.026117+00 2025-08-22 20:15:21.026129+00 f t DESCUENTO 0.00 2 6049 \N +233783 2025-08-22 20:15:21.028196+00 2025-08-22 20:15:21.028208+00 f t TOTAL 146700.00 3 6049 \N +233784 2025-08-22 20:15:21.03006+00 2025-08-22 20:15:21.030072+00 f t ADELANTO 108700.00 4 6049 \N +248529 2025-08-29 11:37:40.426671+00 2025-08-29 11:37:40.426681+00 f t SUBTOTAL 49000.00 1 6414 \N +248530 2025-08-29 11:37:40.429051+00 2025-08-29 11:37:40.429064+00 f t DESCUENTO 0.00 2 6414 \N +233789 2025-08-22 20:43:08.765936+00 2025-08-22 20:43:08.765948+00 f t SUBTOTAL 0.00 1 6050 \N +233790 2025-08-22 20:43:08.767848+00 2025-08-22 20:43:08.767858+00 f t DESCUENTO 0.00 2 6050 \N +233791 2025-08-22 20:43:08.769632+00 2025-08-22 20:43:08.769643+00 f t TOTAL 0.00 3 6050 \N +233792 2025-08-22 20:43:08.771107+00 2025-08-22 20:43:08.771113+00 f t ADELANTO 0.00 4 6050 \N +248531 2025-08-29 11:37:40.430697+00 2025-08-29 11:37:40.430707+00 f t TOTAL 49000.00 3 6414 \N +248532 2025-08-29 11:37:40.432149+00 2025-08-29 11:37:40.432158+00 f t ADELANTO 49000.00 4 6414 \N +249041 2025-08-29 12:51:42.791549+00 2025-08-29 12:51:42.791558+00 f t SUBTOTAL 27500.00 1 6422 \N +249042 2025-08-29 12:51:42.793515+00 2025-08-29 12:51:42.793525+00 f t DESCUENTO 0.00 2 6422 \N +249043 2025-08-29 12:51:42.795268+00 2025-08-29 12:51:42.795275+00 f t TOTAL 27500.00 3 6422 \N +249044 2025-08-29 12:51:42.796485+00 2025-08-29 12:51:42.796492+00 f t ADELANTO 27500.00 4 6422 \N +233837 2025-08-22 21:16:52.55425+00 2025-08-22 21:16:52.554259+00 f t SUBTOTAL 42000.00 1 6051 \N +233838 2025-08-22 21:16:52.556036+00 2025-08-22 21:16:52.556043+00 f t DESCUENTO 0.00 2 6051 \N +233839 2025-08-22 21:16:52.557266+00 2025-08-22 21:16:52.557271+00 f t TOTAL 42000.00 3 6051 \N +233840 2025-08-22 21:16:52.558575+00 2025-08-22 21:16:52.55858+00 f t ADELANTO 9500.00 4 6051 \N +233881 2025-08-22 21:19:05.533126+00 2025-08-22 21:19:05.533135+00 f t SUBTOTAL 42000.00 1 6052 \N +233882 2025-08-22 21:19:05.535525+00 2025-08-22 21:19:05.535533+00 f t DESCUENTO 0.00 2 6052 \N +233883 2025-08-22 21:19:05.536805+00 2025-08-22 21:19:05.536812+00 f t TOTAL 42000.00 3 6052 \N +233884 2025-08-22 21:19:05.537952+00 2025-08-22 21:19:05.537958+00 f t ADELANTO 9500.00 4 6052 \N +233889 2025-08-22 21:30:57.016881+00 2025-08-22 21:30:57.016891+00 f t SUBTOTAL 0.00 1 6053 \N +233890 2025-08-22 21:30:57.018518+00 2025-08-22 21:30:57.018524+00 f t DESCUENTO 0.00 2 6053 \N +233891 2025-08-22 21:30:57.019928+00 2025-08-22 21:30:57.019934+00 f t TOTAL 0.00 3 6053 \N +233892 2025-08-22 21:30:57.021206+00 2025-08-22 21:30:57.021211+00 f t ADELANTO 0.00 4 6053 \N +243749 2025-08-27 13:05:17.203526+00 2025-08-27 13:05:17.20354+00 f t SUBTOTAL 42000.00 1 6289 \N +243750 2025-08-27 13:05:17.205831+00 2025-08-27 13:05:17.205844+00 f t DESCUENTO 0.00 2 6289 \N +243751 2025-08-27 13:05:17.207796+00 2025-08-27 13:05:17.207809+00 f t TOTAL 42000.00 3 6289 \N +243752 2025-08-27 13:05:17.209379+00 2025-08-27 13:05:17.209387+00 f t ADELANTO 9500.00 4 6289 \N +249749 2025-08-29 15:45:49.205677+00 2025-08-29 15:45:49.205686+00 f t SUBTOTAL 129500.00 1 6439 \N +249750 2025-08-29 15:45:49.207315+00 2025-08-29 15:45:49.207322+00 f t DESCUENTO 0.00 2 6439 \N +249751 2025-08-29 15:45:49.208478+00 2025-08-29 15:45:49.208484+00 f t TOTAL 129500.00 3 6439 \N +249752 2025-08-29 15:45:49.209581+00 2025-08-29 15:45:49.209587+00 f t ADELANTO 27000.00 4 6439 \N +249785 2025-08-29 15:46:56.088855+00 2025-08-29 15:46:56.088867+00 f t SUBTOTAL 123500.00 1 6440 \N +249786 2025-08-29 15:46:56.090913+00 2025-08-29 15:46:56.090924+00 f t DESCUENTO 0.00 2 6440 \N +249787 2025-08-29 15:46:56.092621+00 2025-08-29 15:46:56.092629+00 f t TOTAL 123500.00 3 6440 \N +249788 2025-08-29 15:46:56.09426+00 2025-08-29 15:46:56.094269+00 f t ADELANTO 26000.00 4 6440 \N +240969 2025-08-25 20:56:29.900466+00 2025-08-25 20:56:29.900475+00 f t SUBTOTAL 0.00 1 6221 \N +240970 2025-08-25 20:56:29.902266+00 2025-08-25 20:56:29.902274+00 f t DESCUENTO 0.00 2 6221 \N +240971 2025-08-25 20:56:29.904288+00 2025-08-25 20:56:29.904299+00 f t TOTAL 0.00 3 6221 \N +240972 2025-08-25 20:56:29.906344+00 2025-08-25 20:56:29.906355+00 f t ADELANTO 0.00 4 6221 \N +246781 2025-08-28 13:26:42.960806+00 2025-08-28 13:26:42.960815+00 f t SUBTOTAL 42000.00 1 6342 \N +246782 2025-08-28 13:26:42.96307+00 2025-08-28 13:26:42.963079+00 f t DESCUENTO 0.00 2 6342 \N +246783 2025-08-28 13:26:42.964596+00 2025-08-28 13:26:42.964606+00 f t TOTAL 42000.00 3 6342 \N +246784 2025-08-28 13:26:42.965952+00 2025-08-28 13:26:42.96596+00 f t ADELANTO 9500.00 4 6342 \N +233957 2025-08-22 21:36:35.98717+00 2025-08-22 21:36:35.987181+00 f t SUBTOTAL 68000.00 1 6054 \N +233958 2025-08-22 21:36:35.98898+00 2025-08-22 21:36:35.988988+00 f t DESCUENTO 0.00 2 6054 \N +233959 2025-08-22 21:36:35.990398+00 2025-08-22 21:36:35.990405+00 f t TOTAL 68000.00 3 6054 \N +233960 2025-08-22 21:36:35.991856+00 2025-08-22 21:36:35.991867+00 f t ADELANTO 13000.00 4 6054 \N +233985 2025-08-22 21:43:21.340967+00 2025-08-22 21:43:21.340976+00 f t SUBTOTAL 42000.00 1 6055 \N +233986 2025-08-22 21:43:21.342706+00 2025-08-22 21:43:21.342714+00 f t DESCUENTO 0.00 2 6055 \N +233987 2025-08-22 21:43:21.344066+00 2025-08-22 21:43:21.344072+00 f t TOTAL 42000.00 3 6055 \N +233988 2025-08-22 21:43:21.345112+00 2025-08-22 21:43:21.345117+00 f t ADELANTO 9500.00 4 6055 \N +241885 2025-08-26 07:02:38.112279+00 2025-08-26 07:02:38.112291+00 f t SUBTOTAL 0.00 1 6241 \N +241886 2025-08-26 07:02:38.114949+00 2025-08-26 07:02:38.114957+00 f t DESCUENTO 0.00 2 6241 \N +241887 2025-08-26 07:02:38.116806+00 2025-08-26 07:02:38.116818+00 f t TOTAL 0.00 3 6241 \N +241888 2025-08-26 07:02:38.118441+00 2025-08-26 07:02:38.11845+00 f t ADELANTO 0.00 4 6241 \N +236681 2025-08-24 05:09:33.064315+00 2025-08-24 05:09:33.064325+00 f t SUBTOTAL 50000.00 1 6117 \N +236682 2025-08-24 05:09:33.066699+00 2025-08-24 05:09:33.066709+00 f t DESCUENTO 0.00 2 6117 \N +236683 2025-08-24 05:09:33.069841+00 2025-08-24 05:09:33.069854+00 f t TOTAL 50000.00 3 6117 \N +236684 2025-08-24 05:09:33.072494+00 2025-08-24 05:09:33.072506+00 f t ADELANTO 10000.00 4 6117 \N +242005 2025-08-26 08:20:48.039343+00 2025-08-26 08:20:48.039358+00 f t SUBTOTAL 0.00 1 6244 \N +242006 2025-08-26 08:20:48.042327+00 2025-08-26 08:20:48.042339+00 f t DESCUENTO 0.00 2 6244 \N +242007 2025-08-26 08:20:48.044225+00 2025-08-26 08:20:48.044236+00 f t TOTAL 0.00 3 6244 \N +242008 2025-08-26 08:20:48.0462+00 2025-08-26 08:20:48.046211+00 f t ADELANTO 0.00 4 6244 \N +234021 2025-08-22 21:55:54.772414+00 2025-08-22 21:55:54.772425+00 f t SUBTOTAL 50000.00 1 6056 \N +234022 2025-08-22 21:55:54.774303+00 2025-08-22 21:55:54.774312+00 f t DESCUENTO 0.00 2 6056 \N +234023 2025-08-22 21:55:54.775895+00 2025-08-22 21:55:54.775905+00 f t TOTAL 50000.00 3 6056 \N +234024 2025-08-22 21:55:54.777179+00 2025-08-22 21:55:54.777186+00 f t ADELANTO 10000.00 4 6056 \N +234037 2025-08-22 22:03:58.663867+00 2025-08-22 22:03:58.663881+00 f t SUBTOTAL 0.00 1 6057 \N +234038 2025-08-22 22:03:58.666172+00 2025-08-22 22:03:58.666183+00 f t DESCUENTO 0.00 2 6057 \N +234039 2025-08-22 22:03:58.668014+00 2025-08-22 22:03:58.668024+00 f t TOTAL 0.00 3 6057 \N +234040 2025-08-22 22:03:58.669585+00 2025-08-22 22:03:58.669594+00 f t ADELANTO 0.00 4 6057 \N +234069 2025-08-22 22:24:44.827641+00 2025-08-22 22:24:44.82765+00 f t SUBTOTAL 42000.00 1 6058 \N +234070 2025-08-22 22:24:44.82964+00 2025-08-22 22:24:44.829648+00 f t DESCUENTO 0.00 2 6058 \N +234071 2025-08-22 22:24:44.831235+00 2025-08-22 22:24:44.831244+00 f t TOTAL 42000.00 3 6058 \N +234072 2025-08-22 22:24:44.832686+00 2025-08-22 22:24:44.832692+00 f t ADELANTO 9500.00 4 6058 \N +234077 2025-08-22 22:29:21.415909+00 2025-08-22 22:29:21.415922+00 f t SUBTOTAL 0.00 1 6059 \N +234078 2025-08-22 22:29:21.417723+00 2025-08-22 22:29:21.417734+00 f t DESCUENTO 0.00 2 6059 \N +234079 2025-08-22 22:29:21.419364+00 2025-08-22 22:29:21.419374+00 f t TOTAL 0.00 3 6059 \N +234080 2025-08-22 22:29:21.420781+00 2025-08-22 22:29:21.42079+00 f t ADELANTO 0.00 4 6059 \N +234085 2025-08-22 22:31:30.262198+00 2025-08-22 22:31:30.262207+00 f t SUBTOTAL 0.00 1 6060 \N +234086 2025-08-22 22:31:30.264178+00 2025-08-22 22:31:30.264186+00 f t DESCUENTO 0.00 2 6060 \N +234087 2025-08-22 22:31:30.265341+00 2025-08-22 22:31:30.265349+00 f t TOTAL 0.00 3 6060 \N +234088 2025-08-22 22:31:30.267109+00 2025-08-22 22:31:30.267116+00 f t ADELANTO 0.00 4 6060 \N +237781 2025-08-24 21:21:40.210491+00 2025-08-24 21:21:40.2105+00 f t SUBTOTAL 64500.00 1 6145 \N +237782 2025-08-24 21:21:40.212606+00 2025-08-24 21:21:40.212615+00 f t DESCUENTO 0.00 2 6145 \N +237783 2025-08-24 21:21:40.214211+00 2025-08-24 21:21:40.214218+00 f t TOTAL 64500.00 3 6145 \N +237784 2025-08-24 21:21:40.215663+00 2025-08-24 21:21:40.215669+00 f t ADELANTO 17000.00 4 6145 \N +237893 2025-08-24 21:36:37.923532+00 2025-08-24 21:36:37.923544+00 f t SUBTOTAL 50000.00 1 6147 \N +237894 2025-08-24 21:36:37.925457+00 2025-08-24 21:36:37.925466+00 f t DESCUENTO 0.00 2 6147 \N +237895 2025-08-24 21:36:37.926848+00 2025-08-24 21:36:37.926855+00 f t TOTAL 50000.00 3 6147 \N +237896 2025-08-24 21:36:37.928376+00 2025-08-24 21:36:37.928384+00 f t ADELANTO 10000.00 4 6147 \N +234113 2025-08-22 23:21:20.892311+00 2025-08-22 23:21:20.892324+00 f t SUBTOTAL 64500.00 1 6061 \N +234114 2025-08-22 23:21:20.894821+00 2025-08-22 23:21:20.89483+00 f t DESCUENTO 0.00 2 6061 \N +234115 2025-08-22 23:21:20.896515+00 2025-08-22 23:21:20.896522+00 f t TOTAL 64500.00 3 6061 \N +234116 2025-08-22 23:21:20.89812+00 2025-08-22 23:21:20.898127+00 f t ADELANTO 17000.00 4 6061 \N +238133 2025-08-24 23:08:48.420879+00 2025-08-24 23:08:48.420888+00 f t SUBTOTAL 101500.00 1 6155 \N +238134 2025-08-24 23:08:48.422512+00 2025-08-24 23:08:48.422518+00 f t DESCUENTO 0.00 2 6155 \N +238135 2025-08-24 23:08:48.423735+00 2025-08-24 23:08:48.423741+00 f t TOTAL 101500.00 3 6155 \N +238136 2025-08-24 23:08:48.425141+00 2025-08-24 23:08:48.425148+00 f t ADELANTO 25000.00 4 6155 \N +238477 2025-08-25 00:34:47.071484+00 2025-08-25 00:34:47.071493+00 f t SUBTOTAL 50000.00 1 6165 \N +238478 2025-08-25 00:34:47.073043+00 2025-08-25 00:34:47.073052+00 f t DESCUENTO 0.00 2 6165 \N +238479 2025-08-25 00:34:47.074272+00 2025-08-25 00:34:47.074278+00 f t TOTAL 50000.00 3 6165 \N +238480 2025-08-25 00:34:47.075335+00 2025-08-25 00:34:47.075346+00 f t ADELANTO 10000.00 4 6165 \N +234161 2025-08-22 23:25:56.500004+00 2025-08-22 23:25:56.500016+00 f t SUBTOTAL 42000.00 1 6062 \N +234162 2025-08-22 23:25:56.502123+00 2025-08-22 23:25:56.502133+00 f t DESCUENTO 0.00 2 6062 \N +234163 2025-08-22 23:25:56.503756+00 2025-08-22 23:25:56.503764+00 f t TOTAL 42000.00 3 6062 \N +234164 2025-08-22 23:25:56.50531+00 2025-08-22 23:25:56.505319+00 f t ADELANTO 9500.00 4 6062 \N +234177 2025-08-22 23:59:03.196533+00 2025-08-22 23:59:03.196544+00 f t SUBTOTAL 0.00 1 6063 \N +234178 2025-08-22 23:59:03.199021+00 2025-08-22 23:59:03.199032+00 f t DESCUENTO 0.00 2 6063 \N +234179 2025-08-22 23:59:03.200906+00 2025-08-22 23:59:03.200915+00 f t TOTAL 0.00 3 6063 \N +234180 2025-08-22 23:59:03.202443+00 2025-08-22 23:59:03.202452+00 f t ADELANTO 0.00 4 6063 \N +234185 2025-08-23 00:15:50.828084+00 2025-08-23 00:15:50.828097+00 f t SUBTOTAL 0.00 1 6064 \N +234186 2025-08-23 00:15:50.830158+00 2025-08-23 00:15:50.830172+00 f t DESCUENTO 0.00 2 6064 \N +234187 2025-08-23 00:15:50.835424+00 2025-08-23 00:15:50.835438+00 f t TOTAL 0.00 3 6064 \N +234188 2025-08-23 00:15:50.838308+00 2025-08-23 00:15:50.838319+00 f t ADELANTO 0.00 4 6064 \N +235129 2025-08-23 14:42:57.025739+00 2025-08-23 14:42:57.025748+00 f t SUBTOTAL 50000.00 1 6086 \N +235130 2025-08-23 14:42:57.027994+00 2025-08-23 14:42:57.028003+00 f t DESCUENTO 0.00 2 6086 \N +235131 2025-08-23 14:42:57.029852+00 2025-08-23 14:42:57.029861+00 f t TOTAL 50000.00 3 6086 \N +235132 2025-08-23 14:42:57.031634+00 2025-08-23 14:42:57.031644+00 f t ADELANTO 10000.00 4 6086 \N +240977 2025-08-25 21:57:32.414487+00 2025-08-25 21:57:32.414502+00 f t SUBTOTAL 0.00 1 6222 \N +240978 2025-08-25 21:57:32.41638+00 2025-08-25 21:57:32.416392+00 f t DESCUENTO 0.00 2 6222 \N +240979 2025-08-25 21:57:32.418083+00 2025-08-25 21:57:32.418093+00 f t TOTAL 0.00 3 6222 \N +240980 2025-08-25 21:57:32.419532+00 2025-08-25 21:57:32.419541+00 f t ADELANTO 0.00 4 6222 \N +252717 2025-08-30 16:45:49.960158+00 2025-08-30 16:45:49.960166+00 f t SUBTOTAL 95000.00 1 6513 \N +252718 2025-08-30 16:45:49.962092+00 2025-08-30 16:45:49.962101+00 f t DESCUENTO 0.00 2 6513 \N +252719 2025-08-30 16:45:49.963238+00 2025-08-30 16:45:49.963244+00 f t TOTAL 95000.00 3 6513 \N +252720 2025-08-30 16:45:49.964363+00 2025-08-30 16:45:49.964369+00 f t ADELANTO 10000.00 4 6513 \N +236145 2025-08-23 23:18:53.626351+00 2025-08-23 23:18:53.626361+00 f t SUBTOTAL 42000.00 1 6105 \N +236146 2025-08-23 23:18:53.628606+00 2025-08-23 23:18:53.628615+00 f t DESCUENTO 0.00 2 6105 \N +236147 2025-08-23 23:18:53.630173+00 2025-08-23 23:18:53.630183+00 f t TOTAL 42000.00 3 6105 \N +236148 2025-08-23 23:18:53.631588+00 2025-08-23 23:18:53.631593+00 f t ADELANTO 9500.00 4 6105 \N +247129 2025-08-28 17:56:44.261364+00 2025-08-28 17:56:44.261376+00 f t SUBTOTAL 42000.00 1 6370 \N +247130 2025-08-28 17:56:44.263977+00 2025-08-28 17:56:44.263988+00 f t DESCUENTO 0.00 2 6370 \N +247131 2025-08-28 17:56:44.265396+00 2025-08-28 17:56:44.265403+00 f t TOTAL 42000.00 3 6370 \N +247132 2025-08-28 17:56:44.266676+00 2025-08-28 17:56:44.266683+00 f t ADELANTO 9500.00 4 6370 \N +241893 2025-08-26 08:17:56.719697+00 2025-08-26 08:17:56.719707+00 f t SUBTOTAL 0.00 1 6243 \N +241894 2025-08-26 08:17:56.721298+00 2025-08-26 08:17:56.721306+00 f t DESCUENTO 0.00 2 6243 \N +241895 2025-08-26 08:17:56.72274+00 2025-08-26 08:17:56.722746+00 f t TOTAL 0.00 3 6243 \N +241896 2025-08-26 08:17:56.724102+00 2025-08-26 08:17:56.724108+00 f t ADELANTO 0.00 4 6243 \N +242261 2025-08-26 13:04:51.748193+00 2025-08-26 13:04:51.748203+00 f t SUBTOTAL 50000.00 1 6251 \N +242262 2025-08-26 13:04:51.750401+00 2025-08-26 13:04:51.750411+00 f t DESCUENTO 0.00 2 6251 \N +242263 2025-08-26 13:04:51.752647+00 2025-08-26 13:04:51.752656+00 f t TOTAL 50000.00 3 6251 \N +242264 2025-08-26 13:04:51.754209+00 2025-08-26 13:04:51.754218+00 f t ADELANTO 10000.00 4 6251 \N +242389 2025-08-26 15:17:29.199446+00 2025-08-26 15:17:29.199459+00 f t SUBTOTAL 49500.00 1 6255 \N +242390 2025-08-26 15:17:29.202912+00 2025-08-26 15:17:29.202925+00 f t DESCUENTO 0.00 2 6255 \N +242391 2025-08-26 15:17:29.205516+00 2025-08-26 15:17:29.205528+00 f t TOTAL 49500.00 3 6255 \N +242392 2025-08-26 15:17:29.208226+00 2025-08-26 15:17:29.208239+00 f t ADELANTO 11500.00 4 6255 \N +237565 2025-08-24 21:07:33.37853+00 2025-08-24 21:07:33.378539+00 f t SUBTOTAL 0.00 1 6142 \N +237566 2025-08-24 21:07:33.380878+00 2025-08-24 21:07:33.380888+00 f t DESCUENTO 0.00 2 6142 \N +237567 2025-08-24 21:07:33.382332+00 2025-08-24 21:07:33.382339+00 f t TOTAL 0.00 3 6142 \N +237568 2025-08-24 21:07:33.383572+00 2025-08-24 21:07:33.383578+00 f t ADELANTO 0.00 4 6142 \N +242845 2025-08-26 21:58:42.568945+00 2025-08-26 21:58:42.568954+00 f t SUBTOTAL 0.00 1 6266 \N +242846 2025-08-26 21:58:42.571441+00 2025-08-26 21:58:42.571448+00 f t DESCUENTO 0.00 2 6266 \N +242847 2025-08-26 21:58:42.57285+00 2025-08-26 21:58:42.572856+00 f t TOTAL 0.00 3 6266 \N +242848 2025-08-26 21:58:42.574226+00 2025-08-26 21:58:42.574232+00 f t ADELANTO 0.00 4 6266 \N +237841 2025-08-24 21:22:41.748067+00 2025-08-24 21:22:41.748081+00 f t SUBTOTAL 72000.00 1 6146 \N +237842 2025-08-24 21:22:41.750547+00 2025-08-24 21:22:41.75056+00 f t DESCUENTO 0.00 2 6146 \N +237843 2025-08-24 21:22:41.752583+00 2025-08-24 21:22:41.752596+00 f t TOTAL 72000.00 3 6146 \N +237844 2025-08-24 21:22:41.754429+00 2025-08-24 21:22:41.754441+00 f t ADELANTO 19000.00 4 6146 \N +238029 2025-08-24 22:40:37.360458+00 2025-08-24 22:40:37.360472+00 f t SUBTOTAL 42000.00 1 6154 \N +238030 2025-08-24 22:40:37.367214+00 2025-08-24 22:40:37.367224+00 f t DESCUENTO 0.00 2 6154 \N +238031 2025-08-24 22:40:37.369493+00 2025-08-24 22:40:37.369503+00 f t TOTAL 42000.00 3 6154 \N +238032 2025-08-24 22:40:37.371504+00 2025-08-24 22:40:37.371511+00 f t ADELANTO 9500.00 4 6154 \N +243109 2025-08-27 00:34:07.282555+00 2025-08-27 00:34:07.282565+00 f t SUBTOTAL 0.00 1 6272 \N +243110 2025-08-27 00:34:07.285401+00 2025-08-27 00:34:07.28542+00 f t DESCUENTO 0.00 2 6272 \N +243111 2025-08-27 00:34:07.287218+00 2025-08-27 00:34:07.287227+00 f t TOTAL 0.00 3 6272 \N +234393 2025-08-23 00:28:30.709944+00 2025-08-23 00:28:30.709956+00 f t SUBTOTAL 144000.00 1 6065 \N +234394 2025-08-23 00:28:30.712246+00 2025-08-23 00:28:30.712262+00 f t DESCUENTO 0.00 2 6065 \N +234395 2025-08-23 00:28:30.714172+00 2025-08-23 00:28:30.714181+00 f t TOTAL 144000.00 3 6065 \N +234396 2025-08-23 00:28:30.715814+00 2025-08-23 00:28:30.715824+00 f t ADELANTO 38000.00 4 6065 \N +243112 2025-08-27 00:34:07.288944+00 2025-08-27 00:34:07.288955+00 f t ADELANTO 0.00 4 6272 \N +243421 2025-08-27 02:50:26.151381+00 2025-08-27 02:50:26.151394+00 f t SUBTOTAL 72000.00 1 6281 \N +243422 2025-08-27 02:50:26.153669+00 2025-08-27 02:50:26.15368+00 f t DESCUENTO 0.00 2 6281 \N +243423 2025-08-27 02:50:26.155335+00 2025-08-27 02:50:26.155345+00 f t TOTAL 72000.00 3 6281 \N +243424 2025-08-27 02:50:26.158568+00 2025-08-27 02:50:26.158577+00 f t ADELANTO 19000.00 4 6281 \N +234429 2025-08-23 01:31:31.682529+00 2025-08-23 01:31:31.682542+00 f t SUBTOTAL 68000.00 1 6066 \N +234430 2025-08-23 01:31:31.684826+00 2025-08-23 01:31:31.684837+00 f t DESCUENTO 0.00 2 6066 \N +234431 2025-08-23 01:31:31.686681+00 2025-08-23 01:31:31.686691+00 f t TOTAL 68000.00 3 6066 \N +234432 2025-08-23 01:31:31.688449+00 2025-08-23 01:31:31.688459+00 f t ADELANTO 13000.00 4 6066 \N +234437 2025-08-23 01:32:05.316225+00 2025-08-23 01:32:05.31624+00 f t SUBTOTAL 0.00 1 6067 \N +234438 2025-08-23 01:32:05.318449+00 2025-08-23 01:32:05.318461+00 f t DESCUENTO 0.00 2 6067 \N +234439 2025-08-23 01:32:05.32159+00 2025-08-23 01:32:05.321602+00 f t TOTAL 0.00 3 6067 \N +234440 2025-08-23 01:32:05.323955+00 2025-08-23 01:32:05.323967+00 f t ADELANTO 0.00 4 6067 \N +238585 2025-08-25 01:18:58.182044+00 2025-08-25 01:18:58.182053+00 f t SUBTOTAL 49500.00 1 6169 \N +238586 2025-08-25 01:18:58.184205+00 2025-08-25 01:18:58.184214+00 f t DESCUENTO 0.00 2 6169 \N +238587 2025-08-25 01:18:58.185668+00 2025-08-25 01:18:58.185675+00 f t TOTAL 49500.00 3 6169 \N +238588 2025-08-25 01:18:58.187054+00 2025-08-25 01:18:58.187064+00 f t ADELANTO 11500.00 4 6169 \N +243797 2025-08-27 13:56:01.800438+00 2025-08-27 13:56:01.800449+00 f t SUBTOTAL 0.00 1 6291 \N +243798 2025-08-27 13:56:01.803608+00 2025-08-27 13:56:01.803621+00 f t DESCUENTO 0.00 2 6291 \N +243799 2025-08-27 13:56:01.806368+00 2025-08-27 13:56:01.80638+00 f t TOTAL 0.00 3 6291 \N +243800 2025-08-27 13:56:01.808567+00 2025-08-27 13:56:01.80858+00 f t ADELANTO 0.00 4 6291 \N +234481 2025-08-23 02:17:02.172026+00 2025-08-23 02:17:02.17204+00 f t SUBTOTAL 93200.00 1 6068 \N +234482 2025-08-23 02:17:02.174872+00 2025-08-23 02:17:02.174886+00 f t DESCUENTO 0.00 2 6068 \N +234483 2025-08-23 02:17:02.177417+00 2025-08-23 02:17:02.177429+00 f t TOTAL 93200.00 3 6068 \N +234484 2025-08-23 02:17:02.179647+00 2025-08-23 02:17:02.179659+00 f t ADELANTO 55200.00 4 6068 \N +234529 2025-08-23 02:23:08.78136+00 2025-08-23 02:23:08.781369+00 f t SUBTOTAL 0.00 1 6069 \N +234530 2025-08-23 02:23:08.783531+00 2025-08-23 02:23:08.783539+00 f t DESCUENTO 0.00 2 6069 \N +234531 2025-08-23 02:23:08.785228+00 2025-08-23 02:23:08.785235+00 f t TOTAL 0.00 3 6069 \N +234532 2025-08-23 02:23:08.786506+00 2025-08-23 02:23:08.786512+00 f t ADELANTO 0.00 4 6069 \N +241769 2025-08-26 04:01:50.953277+00 2025-08-26 04:01:50.953287+00 f t SUBTOTAL 42000.00 1 6239 \N +241770 2025-08-26 04:01:50.955883+00 2025-08-26 04:01:50.955897+00 f t DESCUENTO 0.00 2 6239 \N +241771 2025-08-26 04:01:50.958346+00 2025-08-26 04:01:50.958358+00 f t TOTAL 42000.00 3 6239 \N +241772 2025-08-26 04:01:50.961225+00 2025-08-26 04:01:50.961238+00 f t ADELANTO 9500.00 4 6239 \N +234569 2025-08-23 02:49:02.396209+00 2025-08-23 02:49:02.396222+00 f t SUBTOTAL 93200.00 1 6070 \N +234570 2025-08-23 02:49:02.399049+00 2025-08-23 02:49:02.399065+00 f t DESCUENTO 0.00 2 6070 \N +234571 2025-08-23 02:49:02.401546+00 2025-08-23 02:49:02.40156+00 f t TOTAL 93200.00 3 6070 \N +234572 2025-08-23 02:49:02.404943+00 2025-08-23 02:49:02.404959+00 f t ADELANTO 55200.00 4 6070 \N +241829 2025-08-26 04:08:11.055378+00 2025-08-26 04:08:11.05539+00 f t SUBTOTAL 42000.00 1 6240 \N +241830 2025-08-26 04:08:11.058295+00 2025-08-26 04:08:11.058305+00 f t DESCUENTO 0.00 2 6240 \N +241831 2025-08-26 04:08:11.060841+00 2025-08-26 04:08:11.060852+00 f t TOTAL 42000.00 3 6240 \N +241832 2025-08-26 04:08:11.06322+00 2025-08-26 04:08:11.063232+00 f t ADELANTO 9500.00 4 6240 \N +234597 2025-08-23 02:53:37.011316+00 2025-08-23 02:53:37.011326+00 f t SUBTOTAL 95700.00 1 6071 \N +234598 2025-08-23 02:53:37.013486+00 2025-08-23 02:53:37.013497+00 f t DESCUENTO 0.00 2 6071 \N +234599 2025-08-23 02:53:37.015217+00 2025-08-23 02:53:37.015224+00 f t TOTAL 95700.00 3 6071 \N +234600 2025-08-23 02:53:37.016502+00 2025-08-23 02:53:37.016508+00 f t ADELANTO 57700.00 4 6071 \N +236753 2025-08-24 10:06:06.191785+00 2025-08-24 10:06:06.191798+00 f t SUBTOTAL 50000.00 1 6119 \N +236754 2025-08-24 10:06:06.19437+00 2025-08-24 10:06:06.19438+00 f t DESCUENTO 0.00 2 6119 \N +236755 2025-08-24 10:06:06.196521+00 2025-08-24 10:06:06.196532+00 f t TOTAL 50000.00 3 6119 \N +236756 2025-08-24 10:06:06.198048+00 2025-08-24 10:06:06.198058+00 f t ADELANTO 10000.00 4 6119 \N +242137 2025-08-26 11:42:27.126255+00 2025-08-26 11:42:27.126265+00 f t SUBTOTAL 94200.00 1 6247 \N +242138 2025-08-26 11:42:27.128498+00 2025-08-26 11:42:27.128506+00 f t DESCUENTO 0.00 2 6247 \N +242139 2025-08-26 11:42:27.130047+00 2025-08-26 11:42:27.130053+00 f t TOTAL 94200.00 3 6247 \N +242140 2025-08-26 11:42:27.131594+00 2025-08-26 11:42:27.131602+00 f t ADELANTO 56200.00 4 6247 \N +236881 2025-08-24 12:27:52.251866+00 2025-08-24 12:27:52.251879+00 f t SUBTOTAL 42000.00 1 6123 \N +236882 2025-08-24 12:27:52.254971+00 2025-08-24 12:27:52.25498+00 f t DESCUENTO 0.00 2 6123 \N +236883 2025-08-24 12:27:52.257072+00 2025-08-24 12:27:52.257084+00 f t TOTAL 42000.00 3 6123 \N +236884 2025-08-24 12:27:52.261664+00 2025-08-24 12:27:52.261675+00 f t ADELANTO 9500.00 4 6123 \N +237005 2025-08-24 13:53:52.851557+00 2025-08-24 13:53:52.851571+00 f t SUBTOTAL 0.00 1 6126 \N +237006 2025-08-24 13:53:52.854663+00 2025-08-24 13:53:52.854673+00 f t DESCUENTO 0.00 2 6126 \N +237007 2025-08-24 13:53:52.861442+00 2025-08-24 13:53:52.861452+00 f t TOTAL 0.00 3 6126 \N +237008 2025-08-24 13:53:52.864396+00 2025-08-24 13:53:52.864406+00 f t ADELANTO 0.00 4 6126 \N +234633 2025-08-23 03:00:17.608113+00 2025-08-23 03:00:17.608123+00 f t SUBTOTAL 93200.00 1 6072 \N +234634 2025-08-23 03:00:17.617011+00 2025-08-23 03:00:17.61702+00 f t DESCUENTO 0.00 2 6072 \N +234635 2025-08-23 03:00:17.618865+00 2025-08-23 03:00:17.618873+00 f t TOTAL 93200.00 3 6072 \N +234636 2025-08-23 03:00:17.620498+00 2025-08-23 03:00:17.620506+00 f t ADELANTO 55200.00 4 6072 \N +242521 2025-08-26 17:33:21.874452+00 2025-08-26 17:33:21.874464+00 f t SUBTOTAL 0.00 1 6259 \N +242522 2025-08-26 17:33:21.877141+00 2025-08-26 17:33:21.877151+00 f t DESCUENTO 0.00 2 6259 \N +242523 2025-08-26 17:33:21.878892+00 2025-08-26 17:33:21.878901+00 f t TOTAL 0.00 3 6259 \N +242524 2025-08-26 17:33:21.881215+00 2025-08-26 17:33:21.881226+00 f t ADELANTO 0.00 4 6259 \N +237505 2025-08-24 20:14:47.281185+00 2025-08-24 20:14:47.281194+00 f t SUBTOTAL 0.00 1 6139 \N +237506 2025-08-24 20:14:47.283183+00 2025-08-24 20:14:47.28319+00 f t DESCUENTO 0.00 2 6139 \N +237507 2025-08-24 20:14:47.284278+00 2025-08-24 20:14:47.284283+00 f t TOTAL 0.00 3 6139 \N +237508 2025-08-24 20:14:47.285262+00 2025-08-24 20:14:47.285266+00 f t ADELANTO 0.00 4 6139 \N +242741 2025-08-26 20:50:36.81341+00 2025-08-26 20:50:36.813424+00 f t SUBTOTAL 0.00 1 6263 \N +242742 2025-08-26 20:50:36.816037+00 2025-08-26 20:50:36.816047+00 f t DESCUENTO 0.00 2 6263 \N +242743 2025-08-26 20:50:36.818143+00 2025-08-26 20:50:36.818154+00 f t TOTAL 0.00 3 6263 \N +242744 2025-08-26 20:50:36.82029+00 2025-08-26 20:50:36.8203+00 f t ADELANTO 0.00 4 6263 \N +234677 2025-08-23 04:48:00.480203+00 2025-08-23 04:48:00.480212+00 f t SUBTOTAL 0.00 1 6073 \N +234678 2025-08-23 04:48:00.482334+00 2025-08-23 04:48:00.482345+00 f t DESCUENTO 0.00 2 6073 \N +234679 2025-08-23 04:48:00.483984+00 2025-08-23 04:48:00.483996+00 f t TOTAL 0.00 3 6073 \N +234680 2025-08-23 04:48:00.485581+00 2025-08-23 04:48:00.48559+00 f t ADELANTO 0.00 4 6073 \N +234705 2025-08-23 06:39:17.350795+00 2025-08-23 06:39:17.350805+00 f t SUBTOTAL 49500.00 1 6074 \N +234706 2025-08-23 06:39:17.353102+00 2025-08-23 06:39:17.353114+00 f t DESCUENTO 0.00 2 6074 \N +234707 2025-08-23 06:39:17.354897+00 2025-08-23 06:39:17.354905+00 f t TOTAL 49500.00 3 6074 \N +234708 2025-08-23 06:39:17.356353+00 2025-08-23 06:39:17.356361+00 f t ADELANTO 11500.00 4 6074 \N +243117 2025-08-27 00:38:27.943083+00 2025-08-27 00:38:27.943093+00 f t SUBTOTAL 0.00 1 6273 \N +243118 2025-08-27 00:38:27.944573+00 2025-08-27 00:38:27.944581+00 f t DESCUENTO 0.00 2 6273 \N +243119 2025-08-27 00:38:27.945814+00 2025-08-27 00:38:27.94582+00 f t TOTAL 0.00 3 6273 \N +243120 2025-08-27 00:38:27.946805+00 2025-08-27 00:38:27.946811+00 f t ADELANTO 0.00 4 6273 \N +243173 2025-08-27 01:05:07.088275+00 2025-08-27 01:05:07.088293+00 f t SUBTOTAL 68000.00 1 6275 \N +243174 2025-08-27 01:05:07.097524+00 2025-08-27 01:05:07.097537+00 f t DESCUENTO 0.00 2 6275 \N +243175 2025-08-27 01:05:07.100009+00 2025-08-27 01:05:07.100024+00 f t TOTAL 68000.00 3 6275 \N +243176 2025-08-27 01:05:07.102387+00 2025-08-27 01:05:07.1024+00 f t ADELANTO 13000.00 4 6275 \N +238405 2025-08-25 00:28:30.220808+00 2025-08-25 00:28:30.220817+00 f t SUBTOTAL 49500.00 1 6164 \N +238406 2025-08-25 00:28:30.222527+00 2025-08-25 00:28:30.222534+00 f t DESCUENTO 0.00 2 6164 \N +238407 2025-08-25 00:28:30.223656+00 2025-08-25 00:28:30.223662+00 f t TOTAL 49500.00 3 6164 \N +238408 2025-08-25 00:28:30.224629+00 2025-08-25 00:28:30.224634+00 f t ADELANTO 11500.00 4 6164 \N +238449 2025-08-25 00:33:39.815991+00 2025-08-25 00:33:39.816+00 f t SUBTOTAL 50000.00 1 6166 \N +238450 2025-08-25 00:33:39.817826+00 2025-08-25 00:33:39.817836+00 f t DESCUENTO 0.00 2 6166 \N +238451 2025-08-25 00:33:39.819049+00 2025-08-25 00:33:39.819057+00 f t TOTAL 50000.00 3 6166 \N +238452 2025-08-25 00:33:39.820217+00 2025-08-25 00:33:39.820225+00 f t ADELANTO 10000.00 4 6166 \N +234777 2025-08-23 11:36:12.574466+00 2025-08-23 11:36:12.574478+00 f t SUBTOTAL 0.00 1 6075 \N +234778 2025-08-23 11:36:12.577189+00 2025-08-23 11:36:12.5772+00 f t DESCUENTO 0.00 2 6075 \N +234779 2025-08-23 11:36:12.579325+00 2025-08-23 11:36:12.579337+00 f t TOTAL 0.00 3 6075 \N +234780 2025-08-23 11:36:12.581096+00 2025-08-23 11:36:12.581106+00 f t ADELANTO 0.00 4 6075 \N +309597 2025-09-19 22:17:41.418571+00 2025-09-19 22:17:41.41858+00 f t SUBTOTAL 46000.00 1 7853 \N +234785 2025-08-23 11:53:00.301046+00 2025-08-23 11:53:00.301059+00 f t SUBTOTAL 0.00 1 6076 \N +234786 2025-08-23 11:53:00.303323+00 2025-08-23 11:53:00.303336+00 f t DESCUENTO 0.00 2 6076 \N +234787 2025-08-23 11:53:00.305668+00 2025-08-23 11:53:00.305682+00 f t TOTAL 0.00 3 6076 \N +234788 2025-08-23 11:53:00.308672+00 2025-08-23 11:53:00.308682+00 f t ADELANTO 0.00 4 6076 \N +240817 2025-08-25 18:59:13.585218+00 2025-08-25 18:59:13.585228+00 f t SUBTOTAL 61700.00 1 6218 \N +240818 2025-08-25 18:59:13.587532+00 2025-08-25 18:59:13.587544+00 f t DESCUENTO 0.00 2 6218 \N +240819 2025-08-25 18:59:13.590739+00 2025-08-25 18:59:13.590749+00 f t TOTAL 61700.00 3 6218 \N +240820 2025-08-25 18:59:13.592564+00 2025-08-25 18:59:13.592572+00 f t ADELANTO 23700.00 4 6218 \N +235417 2025-08-23 16:25:50.252024+00 2025-08-23 16:25:50.252034+00 f t SUBTOTAL 42000.00 1 6088 \N +235418 2025-08-23 16:25:50.254062+00 2025-08-23 16:25:50.254072+00 f t DESCUENTO 0.00 2 6088 \N +235419 2025-08-23 16:25:50.255609+00 2025-08-23 16:25:50.255616+00 f t TOTAL 42000.00 3 6088 \N +235420 2025-08-23 16:25:50.258969+00 2025-08-23 16:25:50.258976+00 f t ADELANTO 9500.00 4 6088 \N +240897 2025-08-25 20:08:12.52493+00 2025-08-25 20:08:12.52494+00 f t SUBTOTAL 68000.00 1 6141 \N +234805 2025-08-23 12:43:22.537055+00 2025-08-23 12:43:22.537065+00 f t SUBTOTAL 0.00 1 6077 \N +234806 2025-08-23 12:43:22.539059+00 2025-08-23 12:43:22.53907+00 f t DESCUENTO 0.00 2 6077 \N +234807 2025-08-23 12:43:22.540581+00 2025-08-23 12:43:22.540588+00 f t TOTAL 0.00 3 6077 \N +234808 2025-08-23 12:43:22.542172+00 2025-08-23 12:43:22.542178+00 f t ADELANTO 0.00 4 6077 \N +240898 2025-08-25 20:08:12.527472+00 2025-08-25 20:08:12.527485+00 f t DESCUENTO 0.00 2 6141 \N +240899 2025-08-25 20:08:12.529446+00 2025-08-25 20:08:12.529459+00 f t TOTAL 68000.00 3 6141 \N +240900 2025-08-25 20:08:12.531364+00 2025-08-25 20:08:12.531374+00 f t ADELANTO 13000.00 4 6141 \N +241141 2025-08-25 23:57:18.935305+00 2025-08-25 23:57:18.935318+00 f t SUBTOTAL 100000.00 1 6225 \N +241142 2025-08-25 23:57:18.937474+00 2025-08-25 23:57:18.937483+00 f t DESCUENTO 0.00 2 6225 \N +241143 2025-08-25 23:57:18.938929+00 2025-08-25 23:57:18.938936+00 f t TOTAL 100000.00 3 6225 \N +241144 2025-08-25 23:57:18.940476+00 2025-08-25 23:57:18.940483+00 f t ADELANTO 20000.00 4 6225 \N +241217 2025-08-26 00:40:42.975395+00 2025-08-26 00:40:42.975408+00 f t SUBTOTAL 87500.00 1 6229 \N +241218 2025-08-26 00:40:42.978828+00 2025-08-26 00:40:42.978843+00 f t DESCUENTO 0.00 2 6229 \N +241219 2025-08-26 00:40:42.98097+00 2025-08-26 00:40:42.980983+00 f t TOTAL 87500.00 3 6229 \N +241220 2025-08-26 00:40:42.982898+00 2025-08-26 00:40:42.982912+00 f t ADELANTO 19000.00 4 6229 \N +241421 2025-08-26 02:16:03.501088+00 2025-08-26 02:16:03.501099+00 f t SUBTOTAL 0.00 1 6235 \N +241422 2025-08-26 02:16:03.503635+00 2025-08-26 02:16:03.503647+00 f t DESCUENTO 0.00 2 6235 \N +241423 2025-08-26 02:16:03.505396+00 2025-08-26 02:16:03.505407+00 f t TOTAL 0.00 3 6235 \N +241424 2025-08-26 02:16:03.507449+00 2025-08-26 02:16:03.507462+00 f t ADELANTO 0.00 4 6235 \N +241541 2025-08-26 02:56:17.84211+00 2025-08-26 02:56:17.842122+00 f t SUBTOTAL 50000.00 1 6237 \N +234849 2025-08-23 13:14:26.932568+00 2025-08-23 13:14:26.93258+00 f t SUBTOTAL 42000.00 1 6078 \N +234850 2025-08-23 13:14:26.934598+00 2025-08-23 13:14:26.934607+00 f t DESCUENTO 0.00 2 6078 \N +234851 2025-08-23 13:14:26.936303+00 2025-08-23 13:14:26.93631+00 f t TOTAL 42000.00 3 6078 \N +234852 2025-08-23 13:14:26.937747+00 2025-08-23 13:14:26.937757+00 f t ADELANTO 9500.00 4 6078 \N +241542 2025-08-26 02:56:17.845382+00 2025-08-26 02:56:17.845391+00 f t DESCUENTO 0.00 2 6237 \N +241543 2025-08-26 02:56:17.847361+00 2025-08-26 02:56:17.84737+00 f t TOTAL 50000.00 3 6237 \N +241544 2025-08-26 02:56:17.848996+00 2025-08-26 02:56:17.849005+00 f t ADELANTO 10000.00 4 6237 \N +234873 2025-08-23 13:33:10.910046+00 2025-08-23 13:33:10.91006+00 f t SUBTOTAL 0.00 1 6079 \N +234874 2025-08-23 13:33:10.912959+00 2025-08-23 13:33:10.912972+00 f t DESCUENTO 0.00 2 6079 \N +234875 2025-08-23 13:33:10.915187+00 2025-08-23 13:33:10.915198+00 f t TOTAL 0.00 3 6079 \N +234876 2025-08-23 13:33:10.91705+00 2025-08-23 13:33:10.91708+00 f t ADELANTO 0.00 4 6079 \N +236817 2025-08-24 11:25:25.910987+00 2025-08-24 11:25:25.911+00 f t SUBTOTAL 50000.00 1 6120 \N +236818 2025-08-24 11:25:25.913729+00 2025-08-24 11:25:25.913741+00 f t DESCUENTO 0.00 2 6120 \N +236819 2025-08-24 11:25:25.915823+00 2025-08-24 11:25:25.915834+00 f t TOTAL 50000.00 3 6120 \N +236820 2025-08-24 11:25:25.917746+00 2025-08-24 11:25:25.917756+00 f t ADELANTO 10000.00 4 6120 \N +242145 2025-08-26 11:43:24.686805+00 2025-08-26 11:43:24.68682+00 f t SUBTOTAL 0.00 1 6248 \N +242146 2025-08-26 11:43:24.68866+00 2025-08-26 11:43:24.688669+00 f t DESCUENTO 0.00 2 6248 \N +242147 2025-08-26 11:43:24.690089+00 2025-08-26 11:43:24.690096+00 f t TOTAL 0.00 3 6248 \N +242148 2025-08-26 11:43:24.691351+00 2025-08-26 11:43:24.691358+00 f t ADELANTO 0.00 4 6248 \N +234921 2025-08-23 13:51:57.043164+00 2025-08-23 13:51:57.043177+00 f t SUBTOTAL 93200.00 1 6080 \N +234922 2025-08-23 13:51:57.045436+00 2025-08-23 13:51:57.045447+00 f t DESCUENTO 0.00 2 6080 \N +234923 2025-08-23 13:51:57.047237+00 2025-08-23 13:51:57.047247+00 f t TOTAL 93200.00 3 6080 \N +234924 2025-08-23 13:51:57.049043+00 2025-08-23 13:51:57.049052+00 f t ADELANTO 55200.00 4 6080 \N +234965 2025-08-23 14:02:50.824226+00 2025-08-23 14:02:50.824238+00 f t SUBTOTAL 75000.00 1 6081 \N +234966 2025-08-23 14:02:50.826468+00 2025-08-23 14:02:50.826479+00 f t DESCUENTO 0.00 2 6081 \N +234967 2025-08-23 14:02:50.828415+00 2025-08-23 14:02:50.828425+00 f t TOTAL 75000.00 3 6081 \N +234968 2025-08-23 14:02:50.830141+00 2025-08-23 14:02:50.830152+00 f t ADELANTO 15000.00 4 6081 \N +235001 2025-08-23 14:08:23.910837+00 2025-08-23 14:08:23.91085+00 f t SUBTOTAL 50000.00 1 6082 \N +235002 2025-08-23 14:08:23.913247+00 2025-08-23 14:08:23.913258+00 f t DESCUENTO 0.00 2 6082 \N +235003 2025-08-23 14:08:23.91507+00 2025-08-23 14:08:23.915081+00 f t TOTAL 50000.00 3 6082 \N +235004 2025-08-23 14:08:23.917209+00 2025-08-23 14:08:23.917221+00 f t ADELANTO 10000.00 4 6082 \N +238257 2025-08-24 23:40:37.625806+00 2025-08-24 23:40:37.625815+00 f t SUBTOTAL 42000.00 1 6157 \N +238258 2025-08-24 23:40:37.627336+00 2025-08-24 23:40:37.627343+00 f t DESCUENTO 0.00 2 6157 \N +238259 2025-08-24 23:40:37.628745+00 2025-08-24 23:40:37.628752+00 f t TOTAL 42000.00 3 6157 \N +238260 2025-08-24 23:40:37.629837+00 2025-08-24 23:40:37.629843+00 f t ADELANTO 9500.00 4 6157 \N +243281 2025-08-27 02:36:13.047091+00 2025-08-27 02:36:13.047111+00 f t SUBTOTAL 42000.00 1 6279 \N +243282 2025-08-27 02:36:13.049182+00 2025-08-27 02:36:13.049193+00 f t DESCUENTO 0.00 2 6279 \N +243283 2025-08-27 02:36:13.050787+00 2025-08-27 02:36:13.050797+00 f t TOTAL 42000.00 3 6279 \N +243284 2025-08-27 02:36:13.052483+00 2025-08-27 02:36:13.052492+00 f t ADELANTO 9500.00 4 6279 \N +243473 2025-08-27 03:01:45.788571+00 2025-08-27 03:01:45.788585+00 f t SUBTOTAL 0.00 1 6283 \N +243474 2025-08-27 03:01:45.791587+00 2025-08-27 03:01:45.791601+00 f t DESCUENTO 0.00 2 6283 \N +243475 2025-08-27 03:01:45.793972+00 2025-08-27 03:01:45.793986+00 f t TOTAL 0.00 3 6283 \N +243476 2025-08-27 03:01:45.795881+00 2025-08-27 03:01:45.795892+00 f t ADELANTO 0.00 4 6283 \N +238529 2025-08-25 00:40:31.668562+00 2025-08-25 00:40:31.668575+00 f t SUBTOTAL 0.00 1 6167 \N +238530 2025-08-25 00:40:31.670317+00 2025-08-25 00:40:31.670324+00 f t DESCUENTO 0.00 2 6167 \N +238531 2025-08-25 00:40:31.671441+00 2025-08-25 00:40:31.671447+00 f t TOTAL 0.00 3 6167 \N +238532 2025-08-25 00:40:31.672435+00 2025-08-25 00:40:31.672441+00 f t ADELANTO 0.00 4 6167 \N +309598 2025-09-19 22:17:41.42025+00 2025-09-19 22:17:41.420257+00 f t DESCUENTO 0.00 2 7853 \N +309599 2025-09-19 22:17:41.422248+00 2025-09-19 22:17:41.422254+00 f t TOTAL 46000.00 3 7853 \N +240725 2025-08-25 18:01:34.629806+00 2025-08-25 18:01:34.62982+00 f t SUBTOTAL 0.00 1 6215 \N +240726 2025-08-25 18:01:34.632407+00 2025-08-25 18:01:34.632418+00 f t DESCUENTO 0.00 2 6215 \N +240727 2025-08-25 18:01:34.634534+00 2025-08-25 18:01:34.634543+00 f t TOTAL 0.00 3 6215 \N +240728 2025-08-25 18:01:34.636333+00 2025-08-25 18:01:34.636342+00 f t ADELANTO 0.00 4 6215 \N +246605 2025-08-28 12:02:58.61653+00 2025-08-28 12:02:58.61654+00 f t SUBTOTAL 0.00 1 6353 \N +246606 2025-08-28 12:02:58.618844+00 2025-08-28 12:02:58.618852+00 f t DESCUENTO 0.00 2 6353 \N +246607 2025-08-28 12:02:58.620287+00 2025-08-28 12:02:58.620294+00 f t TOTAL 0.00 3 6353 \N +246608 2025-08-28 12:02:58.621365+00 2025-08-28 12:02:58.621372+00 f t ADELANTO 0.00 4 6353 \N +241145 2025-08-25 23:57:18.940936+00 2025-08-25 23:57:18.940948+00 f t SUBTOTAL 100000.00 1 6225 \N +241146 2025-08-25 23:57:18.943802+00 2025-08-25 23:57:18.943813+00 f t DESCUENTO 0.00 2 6225 \N +241147 2025-08-25 23:57:18.945653+00 2025-08-25 23:57:18.945663+00 f t TOTAL 100000.00 3 6225 \N +241148 2025-08-25 23:57:18.947657+00 2025-08-25 23:57:18.947668+00 f t ADELANTO 20000.00 4 6225 \N +246957 2025-08-28 15:44:13.425459+00 2025-08-28 15:44:13.425471+00 f t SUBTOTAL 50000.00 1 6365 \N +246958 2025-08-28 15:44:13.427797+00 2025-08-28 15:44:13.427806+00 f t DESCUENTO 0.00 2 6365 \N +246959 2025-08-28 15:44:13.429136+00 2025-08-28 15:44:13.429143+00 f t TOTAL 50000.00 3 6365 \N +246960 2025-08-28 15:44:13.430285+00 2025-08-28 15:44:13.430293+00 f t ADELANTO 10000.00 4 6365 \N +238769 2025-08-25 01:58:37.582921+00 2025-08-25 01:58:37.582931+00 f t SUBTOTAL 0.00 1 6171 \N +238770 2025-08-25 01:58:37.584887+00 2025-08-25 01:58:37.584893+00 f t DESCUENTO 0.00 2 6171 \N +238771 2025-08-25 01:58:37.586288+00 2025-08-25 01:58:37.586295+00 f t TOTAL 0.00 3 6171 \N +238772 2025-08-25 01:58:37.58744+00 2025-08-25 01:58:37.587445+00 f t ADELANTO 0.00 4 6171 \N +238777 2025-08-25 02:01:35.380964+00 2025-08-25 02:01:35.380977+00 f t SUBTOTAL 0.00 1 6172 \N +238778 2025-08-25 02:01:35.382985+00 2025-08-25 02:01:35.382996+00 f t DESCUENTO 0.00 2 6172 \N +238779 2025-08-25 02:01:35.384347+00 2025-08-25 02:01:35.384353+00 f t TOTAL 0.00 3 6172 \N +238780 2025-08-25 02:01:35.387987+00 2025-08-25 02:01:35.387996+00 f t ADELANTO 0.00 4 6172 \N +247813 2025-08-28 22:49:51.946119+00 2025-08-28 22:49:51.946129+00 f t SUBTOTAL 42000.00 1 6392 \N +247814 2025-08-28 22:49:51.948498+00 2025-08-28 22:49:51.948506+00 f t DESCUENTO 0.00 2 6392 \N +247815 2025-08-28 22:49:51.95004+00 2025-08-28 22:49:51.950048+00 f t TOTAL 42000.00 3 6392 \N +247816 2025-08-28 22:49:51.951487+00 2025-08-28 22:49:51.951493+00 f t ADELANTO 9500.00 4 6392 \N +238821 2025-08-25 02:22:14.517457+00 2025-08-25 02:22:14.51747+00 f t SUBTOTAL 0.00 1 6173 \N +238822 2025-08-25 02:22:14.519423+00 2025-08-25 02:22:14.51943+00 f t DESCUENTO 0.00 2 6173 \N +238823 2025-08-25 02:22:14.520611+00 2025-08-25 02:22:14.520617+00 f t TOTAL 0.00 3 6173 \N +238824 2025-08-25 02:22:14.521639+00 2025-08-25 02:22:14.521645+00 f t ADELANTO 0.00 4 6173 \N +241845 2025-08-26 07:01:05.606009+00 2025-08-26 07:01:05.606111+00 f t SUBTOTAL 0.00 1 6242 \N +241846 2025-08-26 07:01:05.608308+00 2025-08-26 07:01:05.608319+00 f t DESCUENTO 0.00 2 6242 \N +241847 2025-08-26 07:01:05.61037+00 2025-08-26 07:01:05.61038+00 f t TOTAL 0.00 3 6242 \N +241848 2025-08-26 07:01:05.612115+00 2025-08-26 07:01:05.612125+00 f t ADELANTO 0.00 4 6242 \N +248181 2025-08-29 02:40:09.945196+00 2025-08-29 02:40:09.945209+00 f t SUBTOTAL 101900.00 1 6402 \N +248182 2025-08-29 02:40:09.947927+00 2025-08-29 02:40:09.947938+00 f t DESCUENTO 0.00 2 6402 \N +248183 2025-08-29 02:40:09.950085+00 2025-08-29 02:40:09.950096+00 f t TOTAL 101900.00 3 6402 \N +248184 2025-08-29 02:40:09.95187+00 2025-08-29 02:40:09.951881+00 f t ADELANTO 21900.00 4 6402 \N +238865 2025-08-25 02:36:25.514226+00 2025-08-25 02:36:25.514235+00 f t SUBTOTAL 50000.00 1 6174 \N +238866 2025-08-25 02:36:25.516611+00 2025-08-25 02:36:25.516619+00 f t DESCUENTO 0.00 2 6174 \N +238867 2025-08-25 02:36:25.518156+00 2025-08-25 02:36:25.518163+00 f t TOTAL 50000.00 3 6174 \N +238868 2025-08-25 02:36:25.519736+00 2025-08-25 02:36:25.519741+00 f t ADELANTO 10000.00 4 6174 \N +248481 2025-08-29 11:35:22.34236+00 2025-08-29 11:35:22.342369+00 f t SUBTOTAL 0.00 1 6413 \N +248482 2025-08-29 11:35:22.344932+00 2025-08-29 11:35:22.34494+00 f t DESCUENTO 0.00 2 6413 \N +248483 2025-08-29 11:35:22.346461+00 2025-08-29 11:35:22.346469+00 f t TOTAL 0.00 3 6413 \N +248484 2025-08-29 11:35:22.348169+00 2025-08-29 11:35:22.348175+00 f t ADELANTO 0.00 4 6413 \N +248589 2025-08-29 12:11:55.939093+00 2025-08-29 12:11:55.939106+00 f t SUBTOTAL 68000.00 1 6415 \N +248590 2025-08-29 12:11:55.941286+00 2025-08-29 12:11:55.941296+00 f t DESCUENTO 0.00 2 6415 \N +248591 2025-08-29 12:11:55.942876+00 2025-08-29 12:11:55.942886+00 f t TOTAL 68000.00 3 6415 \N +248592 2025-08-29 12:11:55.94431+00 2025-08-29 12:11:55.944319+00 f t ADELANTO 13000.00 4 6415 \N +242861 2025-08-26 22:47:12.932017+00 2025-08-26 22:47:12.932027+00 f t SUBTOTAL 0.00 1 6267 \N +242862 2025-08-26 22:47:12.934514+00 2025-08-26 22:47:12.934525+00 f t DESCUENTO 0.00 2 6267 \N +242863 2025-08-26 22:47:12.936306+00 2025-08-26 22:47:12.936314+00 f t TOTAL 0.00 3 6267 \N +242864 2025-08-26 22:47:12.937702+00 2025-08-26 22:47:12.93771+00 f t ADELANTO 0.00 4 6267 \N +242917 2025-08-26 23:05:28.563491+00 2025-08-26 23:05:28.5635+00 f t SUBTOTAL 50000.00 1 6269 \N +242918 2025-08-26 23:05:28.565751+00 2025-08-26 23:05:28.565759+00 f t DESCUENTO 0.00 2 6269 \N +242919 2025-08-26 23:05:28.567199+00 2025-08-26 23:05:28.567205+00 f t TOTAL 50000.00 3 6269 \N +242920 2025-08-26 23:05:28.568881+00 2025-08-26 23:05:28.568887+00 f t ADELANTO 10000.00 4 6269 \N +248993 2025-08-29 12:46:53.297963+00 2025-08-29 12:46:53.297977+00 f t SUBTOTAL 50000.00 1 6421 \N +248994 2025-08-29 12:46:53.300088+00 2025-08-29 12:46:53.3001+00 f t DESCUENTO 0.00 2 6421 \N +248995 2025-08-29 12:46:53.301792+00 2025-08-29 12:46:53.301802+00 f t TOTAL 50000.00 3 6421 \N +248996 2025-08-29 12:46:53.303265+00 2025-08-29 12:46:53.303275+00 f t ADELANTO 10000.00 4 6421 \N +238929 2025-08-25 02:47:17.022279+00 2025-08-25 02:47:17.022288+00 f t SUBTOTAL 0.00 1 6175 \N +238930 2025-08-25 02:47:17.024308+00 2025-08-25 02:47:17.024316+00 f t DESCUENTO 0.00 2 6175 \N +238931 2025-08-25 02:47:17.025467+00 2025-08-25 02:47:17.025473+00 f t TOTAL 0.00 3 6175 \N +238932 2025-08-25 02:47:17.026567+00 2025-08-25 02:47:17.026572+00 f t ADELANTO 0.00 4 6175 \N +249049 2025-08-29 12:56:03.54427+00 2025-08-29 12:56:03.54428+00 f t SUBTOTAL 0.00 1 6423 \N +249050 2025-08-29 12:56:03.546387+00 2025-08-29 12:56:03.546398+00 f t DESCUENTO 0.00 2 6423 \N +249051 2025-08-29 12:56:03.548185+00 2025-08-29 12:56:03.548195+00 f t TOTAL 0.00 3 6423 \N +249052 2025-08-29 12:56:03.549717+00 2025-08-29 12:56:03.549725+00 f t ADELANTO 0.00 4 6423 \N +249101 2025-08-29 13:22:09.734586+00 2025-08-29 13:22:09.734598+00 f t SUBTOTAL 42000.00 1 6424 \N +249102 2025-08-29 13:22:09.736668+00 2025-08-29 13:22:09.736677+00 f t DESCUENTO 0.00 2 6424 \N +249103 2025-08-29 13:22:09.738047+00 2025-08-29 13:22:09.738055+00 f t TOTAL 42000.00 3 6424 \N +249104 2025-08-29 13:22:09.739391+00 2025-08-29 13:22:09.739398+00 f t ADELANTO 9500.00 4 6424 \N +249353 2025-08-29 13:38:36.112447+00 2025-08-29 13:38:36.112457+00 f t SUBTOTAL 185000.00 1 6427 \N +249354 2025-08-29 13:38:36.11568+00 2025-08-29 13:38:36.115689+00 f t DESCUENTO 0.00 2 6427 \N +249355 2025-08-29 13:38:36.118083+00 2025-08-29 13:38:36.118095+00 f t TOTAL 185000.00 3 6427 \N +249356 2025-08-29 13:38:36.120086+00 2025-08-29 13:38:36.120097+00 f t ADELANTO 38000.00 4 6427 \N +239041 2025-08-25 02:50:07.630628+00 2025-08-25 02:50:07.630643+00 f t SUBTOTAL 0.00 1 6176 \N +239042 2025-08-25 02:50:07.634684+00 2025-08-25 02:50:07.6347+00 f t DESCUENTO 0.00 2 6176 \N +239043 2025-08-25 02:50:07.63737+00 2025-08-25 02:50:07.637386+00 f t TOTAL 0.00 3 6176 \N +239044 2025-08-25 02:50:07.639847+00 2025-08-25 02:50:07.639861+00 f t ADELANTO 0.00 4 6176 \N +258569 2025-09-01 16:20:26.467996+00 2025-09-01 16:20:26.468004+00 f t SUBTOTAL 70000.00 1 6649 \N +258570 2025-09-01 16:20:26.469705+00 2025-09-01 16:20:26.469712+00 f t DESCUENTO 0.00 2 6649 \N +258571 2025-09-01 16:20:26.47072+00 2025-09-01 16:20:26.470726+00 f t TOTAL 70000.00 3 6649 \N +239049 2025-08-25 02:50:44.167814+00 2025-08-25 02:50:44.167827+00 f t SUBTOTAL 49500.00 1 6177 \N +239050 2025-08-25 02:50:44.169967+00 2025-08-25 02:50:44.169978+00 f t DESCUENTO 0.00 2 6177 \N +239051 2025-08-25 02:50:44.171586+00 2025-08-25 02:50:44.171595+00 f t TOTAL 49500.00 3 6177 \N +239052 2025-08-25 02:50:44.173221+00 2025-08-25 02:50:44.17323+00 f t ADELANTO 11500.00 4 6177 \N +258572 2025-09-01 16:20:26.471618+00 2025-09-01 16:20:26.471623+00 f t ADELANTO 19000.00 4 6649 \N +241289 2025-08-26 00:42:50.804543+00 2025-08-26 00:42:50.804555+00 f t SUBTOTAL 88000.00 1 6230 \N +241290 2025-08-26 00:42:50.808229+00 2025-08-26 00:42:50.808241+00 f t DESCUENTO 0.00 2 6230 \N +241291 2025-08-26 00:42:50.810193+00 2025-08-26 00:42:50.810204+00 f t TOTAL 88000.00 3 6230 \N +241292 2025-08-26 00:42:50.81195+00 2025-08-26 00:42:50.811959+00 f t ADELANTO 19000.00 4 6230 \N +247041 2025-08-28 16:48:07.107958+00 2025-08-28 16:48:07.107968+00 f t SUBTOTAL 0.00 1 6368 \N +247042 2025-08-28 16:48:07.110241+00 2025-08-28 16:48:07.110254+00 f t DESCUENTO 0.00 2 6368 \N +247043 2025-08-28 16:48:07.112021+00 2025-08-28 16:48:07.112032+00 f t TOTAL 0.00 3 6368 \N +247044 2025-08-28 16:48:07.113729+00 2025-08-28 16:48:07.11374+00 f t ADELANTO 0.00 4 6368 \N +247137 2025-08-28 17:57:55.676097+00 2025-08-28 17:57:55.676113+00 f t SUBTOTAL 72000.00 1 6375 \N +247138 2025-08-28 17:57:55.678431+00 2025-08-28 17:57:55.678443+00 f t DESCUENTO 0.00 2 6375 \N +247139 2025-08-28 17:57:55.680508+00 2025-08-28 17:57:55.680517+00 f t TOTAL 72000.00 3 6375 \N +247140 2025-08-28 17:57:55.682234+00 2025-08-28 17:57:55.682245+00 f t ADELANTO 19000.00 4 6375 \N +239105 2025-08-25 02:52:54.035879+00 2025-08-25 02:52:54.03589+00 f t SUBTOTAL 42000.00 1 6178 \N +239106 2025-08-25 02:52:54.03765+00 2025-08-25 02:52:54.037657+00 f t DESCUENTO 0.00 2 6178 \N +239107 2025-08-25 02:52:54.038949+00 2025-08-25 02:52:54.038955+00 f t TOTAL 42000.00 3 6178 \N +239108 2025-08-25 02:52:54.040106+00 2025-08-25 02:52:54.040112+00 f t ADELANTO 9500.00 4 6178 \N +247737 2025-08-28 21:42:51.135115+00 2025-08-28 21:42:51.135153+00 f t SUBTOTAL 106500.00 1 6388 \N +247738 2025-08-28 21:42:51.137032+00 2025-08-28 21:42:51.137042+00 f t DESCUENTO 0.00 2 6388 \N +247739 2025-08-28 21:42:51.138558+00 2025-08-28 21:42:51.138566+00 f t TOTAL 106500.00 3 6388 \N +247740 2025-08-28 21:42:51.139865+00 2025-08-28 21:42:51.139871+00 f t ADELANTO 26500.00 4 6388 \N +242217 2025-08-26 12:31:10.696288+00 2025-08-26 12:31:10.696303+00 f t SUBTOTAL 42000.00 1 6250 \N +242218 2025-08-26 12:31:10.699753+00 2025-08-26 12:31:10.699762+00 f t DESCUENTO 0.00 2 6250 \N +242219 2025-08-26 12:31:10.702084+00 2025-08-26 12:31:10.702097+00 f t TOTAL 42000.00 3 6250 \N +242220 2025-08-26 12:31:10.705327+00 2025-08-26 12:31:10.70534+00 f t ADELANTO 9500.00 4 6250 \N +242409 2025-08-26 15:45:00.999339+00 2025-08-26 15:45:00.999357+00 f t SUBTOTAL 0.00 1 6256 \N +242410 2025-08-26 15:45:01.006144+00 2025-08-26 15:45:01.006158+00 f t DESCUENTO 0.00 2 6256 \N +242411 2025-08-26 15:45:01.019473+00 2025-08-26 15:45:01.019486+00 f t TOTAL 0.00 3 6256 \N +242412 2025-08-26 15:45:01.022281+00 2025-08-26 15:45:01.022298+00 f t ADELANTO 0.00 4 6256 \N +239149 2025-08-25 03:11:47.539669+00 2025-08-25 03:11:47.53969+00 f t SUBTOTAL 50000.00 1 6179 \N +239150 2025-08-25 03:11:47.541141+00 2025-08-25 03:11:47.541147+00 f t DESCUENTO 0.00 2 6179 \N +239151 2025-08-25 03:11:47.542266+00 2025-08-25 03:11:47.542271+00 f t TOTAL 50000.00 3 6179 \N +239152 2025-08-25 03:11:47.543266+00 2025-08-25 03:11:47.543271+00 f t ADELANTO 10000.00 4 6179 \N +239157 2025-08-25 04:33:06.031613+00 2025-08-25 04:33:06.031624+00 f t SUBTOTAL 0.00 1 6180 \N +239158 2025-08-25 04:33:06.033582+00 2025-08-25 04:33:06.033591+00 f t DESCUENTO 0.00 2 6180 \N +239159 2025-08-25 04:33:06.035233+00 2025-08-25 04:33:06.035242+00 f t TOTAL 0.00 3 6180 \N +239160 2025-08-25 04:33:06.036893+00 2025-08-25 04:33:06.036902+00 f t ADELANTO 0.00 4 6180 \N +242925 2025-08-26 23:42:47.427325+00 2025-08-26 23:42:47.427335+00 f t SUBTOTAL 0.00 1 6270 \N +242926 2025-08-26 23:42:47.428775+00 2025-08-26 23:42:47.428782+00 f t DESCUENTO 0.00 2 6270 \N +242927 2025-08-26 23:42:47.429976+00 2025-08-26 23:42:47.429984+00 f t TOTAL 0.00 3 6270 \N +242928 2025-08-26 23:42:47.431197+00 2025-08-26 23:42:47.431243+00 f t ADELANTO 0.00 4 6270 \N +239197 2025-08-25 04:39:16.507441+00 2025-08-25 04:39:16.507453+00 f t SUBTOTAL 95000.00 1 6181 \N +239198 2025-08-25 04:39:16.50918+00 2025-08-25 04:39:16.509189+00 f t DESCUENTO 0.00 2 6181 \N +239199 2025-08-25 04:39:16.510532+00 2025-08-25 04:39:16.51054+00 f t TOTAL 95000.00 3 6181 \N +239200 2025-08-25 04:39:16.511693+00 2025-08-25 04:39:16.511699+00 f t ADELANTO 10000.00 4 6181 \N +239205 2025-08-25 06:59:35.077367+00 2025-08-25 06:59:35.077376+00 f t SUBTOTAL 0.00 1 6182 \N +239206 2025-08-25 06:59:35.078977+00 2025-08-25 06:59:35.078986+00 f t DESCUENTO 0.00 2 6182 \N +239207 2025-08-25 06:59:35.080353+00 2025-08-25 06:59:35.080359+00 f t TOTAL 0.00 3 6182 \N +239208 2025-08-25 06:59:35.081911+00 2025-08-25 06:59:35.081921+00 f t ADELANTO 0.00 4 6182 \N +243073 2025-08-27 00:02:28.709179+00 2025-08-27 00:02:28.709191+00 f t SUBTOTAL 0.00 1 6271 \N +243074 2025-08-27 00:02:28.711638+00 2025-08-27 00:02:28.71165+00 f t DESCUENTO 0.00 2 6271 \N +243075 2025-08-27 00:02:28.713274+00 2025-08-27 00:02:28.713284+00 f t TOTAL 0.00 3 6271 \N +243076 2025-08-27 00:02:28.71501+00 2025-08-27 00:02:28.715018+00 f t ADELANTO 0.00 4 6271 \N +239233 2025-08-25 09:58:50.308874+00 2025-08-25 09:58:50.308883+00 f t SUBTOTAL 27500.00 1 6183 \N +239234 2025-08-25 09:58:50.31058+00 2025-08-25 09:58:50.310587+00 f t DESCUENTO 0.00 2 6183 \N +239235 2025-08-25 09:58:50.31191+00 2025-08-25 09:58:50.311917+00 f t TOTAL 27500.00 3 6183 \N +239236 2025-08-25 09:58:50.313073+00 2025-08-25 09:58:50.313081+00 f t ADELANTO 27500.00 4 6183 \N +239253 2025-08-25 10:19:38.511495+00 2025-08-25 10:19:38.511507+00 f t SUBTOTAL 0.00 1 6184 \N +239254 2025-08-25 10:19:38.513822+00 2025-08-25 10:19:38.513833+00 f t DESCUENTO 0.00 2 6184 \N +239255 2025-08-25 10:19:38.515291+00 2025-08-25 10:19:38.5153+00 f t TOTAL 0.00 3 6184 \N +239256 2025-08-25 10:19:38.516879+00 2025-08-25 10:19:38.516888+00 f t ADELANTO 0.00 4 6184 \N +243685 2025-08-27 12:42:52.225604+00 2025-08-27 12:42:52.225614+00 f t SUBTOTAL 0.00 1 6288 \N +243686 2025-08-27 12:42:52.227759+00 2025-08-27 12:42:52.227771+00 f t DESCUENTO 0.00 2 6288 \N +243687 2025-08-27 12:42:52.229463+00 2025-08-27 12:42:52.229472+00 f t TOTAL 0.00 3 6288 \N +243688 2025-08-27 12:42:52.230964+00 2025-08-27 12:42:52.230972+00 f t ADELANTO 0.00 4 6288 \N +239301 2025-08-25 11:14:03.143536+00 2025-08-25 11:14:03.143546+00 f t SUBTOTAL 49500.00 1 6185 \N +239302 2025-08-25 11:14:03.146026+00 2025-08-25 11:14:03.146036+00 f t DESCUENTO 0.00 2 6185 \N +239303 2025-08-25 11:14:03.147831+00 2025-08-25 11:14:03.147842+00 f t TOTAL 49500.00 3 6185 \N +239304 2025-08-25 11:14:03.150308+00 2025-08-25 11:14:03.150317+00 f t ADELANTO 11500.00 4 6185 \N +309600 2025-09-19 22:17:41.423253+00 2025-09-19 22:17:41.423259+00 f t ADELANTO 11000.00 4 7853 \N +252233 2025-08-30 16:08:37.795983+00 2025-08-30 16:08:37.795992+00 f t SUBTOTAL 82200.00 1 6505 \N +252234 2025-08-30 16:08:37.797786+00 2025-08-30 16:08:37.797795+00 f t DESCUENTO 0.00 2 6505 \N +252235 2025-08-30 16:08:37.798932+00 2025-08-30 16:08:37.798938+00 f t TOTAL 82200.00 3 6505 \N +252236 2025-08-30 16:08:37.800071+00 2025-08-30 16:08:37.800077+00 f t ADELANTO 44200.00 4 6505 \N +246885 2025-08-28 15:14:55.894896+00 2025-08-28 15:14:55.894908+00 f t SUBTOTAL 64500.00 1 6362 \N +246886 2025-08-28 15:14:55.896957+00 2025-08-28 15:14:55.896965+00 f t DESCUENTO 0.00 2 6362 \N +246887 2025-08-28 15:14:55.898633+00 2025-08-28 15:14:55.898651+00 f t TOTAL 64500.00 3 6362 \N +246888 2025-08-28 15:14:55.899988+00 2025-08-28 15:14:55.899994+00 f t ADELANTO 17000.00 4 6362 \N +241361 2025-08-26 01:31:33.913282+00 2025-08-26 01:31:33.913295+00 f t SUBTOTAL 75000.00 1 6189 \N +241362 2025-08-26 01:31:33.915615+00 2025-08-26 01:31:33.915626+00 f t DESCUENTO 0.00 2 6189 \N +241363 2025-08-26 01:31:33.917324+00 2025-08-26 01:31:33.917331+00 f t TOTAL 75000.00 3 6189 \N +241364 2025-08-26 01:31:33.918627+00 2025-08-26 01:31:33.918632+00 f t ADELANTO 15000.00 4 6189 \N +247049 2025-08-28 17:02:03.814233+00 2025-08-28 17:02:03.814247+00 f t SUBTOTAL 0.00 1 6369 \N +247050 2025-08-28 17:02:03.817563+00 2025-08-28 17:02:03.817576+00 f t DESCUENTO 0.00 2 6369 \N +247051 2025-08-28 17:02:03.819821+00 2025-08-28 17:02:03.819834+00 f t TOTAL 0.00 3 6369 \N +247052 2025-08-28 17:02:03.821672+00 2025-08-28 17:02:03.821681+00 f t ADELANTO 0.00 4 6369 \N +247145 2025-08-28 18:58:25.488811+00 2025-08-28 18:58:25.488823+00 f t SUBTOTAL 0.00 1 6376 \N +247146 2025-08-28 18:58:25.496463+00 2025-08-28 18:58:25.496477+00 f t DESCUENTO 0.00 2 6376 \N +247147 2025-08-28 18:58:25.498586+00 2025-08-28 18:58:25.498597+00 f t TOTAL 0.00 3 6376 \N +247148 2025-08-28 18:58:25.504031+00 2025-08-28 18:58:25.50404+00 f t ADELANTO 0.00 4 6376 \N +241613 2025-08-26 03:36:51.99562+00 2025-08-26 03:36:51.995634+00 f t SUBTOTAL 72000.00 1 6238 \N +241614 2025-08-26 03:36:51.998282+00 2025-08-26 03:36:51.998294+00 f t DESCUENTO 0.00 2 6238 \N +241615 2025-08-26 03:36:52.001584+00 2025-08-26 03:36:52.001595+00 f t TOTAL 72000.00 3 6238 \N +241616 2025-08-26 03:36:52.003664+00 2025-08-26 03:36:52.003676+00 f t ADELANTO 19000.00 4 6238 \N +247505 2025-08-28 20:08:45.539177+00 2025-08-28 20:08:45.539187+00 f t SUBTOTAL 42000.00 1 6381 \N +247506 2025-08-28 20:08:45.541386+00 2025-08-28 20:08:45.541395+00 f t DESCUENTO 0.00 2 6381 \N +247507 2025-08-28 20:08:45.543102+00 2025-08-28 20:08:45.543114+00 f t TOTAL 42000.00 3 6381 \N +247508 2025-08-28 20:08:45.544903+00 2025-08-28 20:08:45.544911+00 f t ADELANTO 9500.00 4 6381 \N +239389 2025-08-25 11:27:22.095964+00 2025-08-25 11:27:22.095978+00 f t SUBTOTAL 0.00 1 6186 \N +239390 2025-08-25 11:27:22.098757+00 2025-08-25 11:27:22.098766+00 f t DESCUENTO 0.00 2 6186 \N +239391 2025-08-25 11:27:22.100876+00 2025-08-25 11:27:22.100889+00 f t TOTAL 0.00 3 6186 \N +239392 2025-08-25 11:27:22.104967+00 2025-08-25 11:27:22.10498+00 f t ADELANTO 0.00 4 6186 \N +239397 2025-08-25 11:34:51.432886+00 2025-08-25 11:34:51.432897+00 f t SUBTOTAL 0.00 1 6187 \N +239398 2025-08-25 11:34:51.434907+00 2025-08-25 11:34:51.434916+00 f t DESCUENTO 0.00 2 6187 \N +239399 2025-08-25 11:34:51.436488+00 2025-08-25 11:34:51.436497+00 f t TOTAL 0.00 3 6187 \N +239400 2025-08-25 11:34:51.437811+00 2025-08-25 11:34:51.437819+00 f t ADELANTO 0.00 4 6187 \N +239405 2025-08-25 12:11:17.994145+00 2025-08-25 12:11:17.994156+00 f t SUBTOTAL 0.00 1 6188 \N +239406 2025-08-25 12:11:17.996129+00 2025-08-25 12:11:17.996139+00 f t DESCUENTO 0.00 2 6188 \N +239407 2025-08-25 12:11:17.998307+00 2025-08-25 12:11:17.998318+00 f t TOTAL 0.00 3 6188 \N +239408 2025-08-25 12:11:17.999945+00 2025-08-25 12:11:17.999955+00 f t ADELANTO 0.00 4 6188 \N +247821 2025-08-28 23:57:20.563814+00 2025-08-28 23:57:20.563827+00 f t SUBTOTAL 0.00 1 6393 \N +247822 2025-08-28 23:57:20.565605+00 2025-08-28 23:57:20.565616+00 f t DESCUENTO 0.00 2 6393 \N +247823 2025-08-28 23:57:20.567329+00 2025-08-28 23:57:20.567341+00 f t TOTAL 0.00 3 6393 \N +247824 2025-08-28 23:57:20.569071+00 2025-08-28 23:57:20.56908+00 f t ADELANTO 0.00 4 6393 \N +247945 2025-08-29 00:26:23.71653+00 2025-08-29 00:26:23.716539+00 f t SUBTOTAL 64500.00 1 6396 \N +247946 2025-08-29 00:26:23.718535+00 2025-08-29 00:26:23.718545+00 f t DESCUENTO 0.00 2 6396 \N +247947 2025-08-29 00:26:23.720069+00 2025-08-29 00:26:23.720077+00 f t TOTAL 64500.00 3 6396 \N +247948 2025-08-29 00:26:23.721609+00 2025-08-29 00:26:23.721617+00 f t ADELANTO 17000.00 4 6396 \N +239437 2025-08-25 12:24:15.069929+00 2025-08-25 12:24:15.069942+00 f t SUBTOTAL 0.00 1 6190 \N +239438 2025-08-25 12:24:15.071836+00 2025-08-25 12:24:15.071847+00 f t DESCUENTO 0.00 2 6190 \N +239439 2025-08-25 12:24:15.073411+00 2025-08-25 12:24:15.073423+00 f t TOTAL 0.00 3 6190 \N +239440 2025-08-25 12:24:15.074882+00 2025-08-25 12:24:15.074892+00 f t ADELANTO 0.00 4 6190 \N +248189 2025-08-29 02:40:40.606864+00 2025-08-29 02:40:40.606875+00 f t SUBTOTAL 0.00 1 6404 \N +248190 2025-08-29 02:40:40.61404+00 2025-08-29 02:40:40.614053+00 f t DESCUENTO 0.00 2 6404 \N +248191 2025-08-29 02:40:40.620883+00 2025-08-29 02:40:40.620893+00 f t TOTAL 0.00 3 6404 \N +248192 2025-08-29 02:40:40.633861+00 2025-08-29 02:40:40.633875+00 f t ADELANTO 0.00 4 6404 \N +248249 2025-08-29 05:00:27.604769+00 2025-08-29 05:00:27.604783+00 f t SUBTOTAL 0.00 1 6406 \N +248250 2025-08-29 05:00:27.607571+00 2025-08-29 05:00:27.607584+00 f t DESCUENTO 0.00 2 6406 \N +248251 2025-08-29 05:00:27.609847+00 2025-08-29 05:00:27.60986+00 f t TOTAL 0.00 3 6406 \N +248252 2025-08-29 05:00:27.611903+00 2025-08-29 05:00:27.611915+00 f t ADELANTO 0.00 4 6406 \N +242597 2025-08-26 18:01:27.459319+00 2025-08-26 18:01:27.459333+00 f t SUBTOTAL 0.00 1 6260 \N +242598 2025-08-26 18:01:27.461829+00 2025-08-26 18:01:27.461841+00 f t DESCUENTO 0.00 2 6260 \N +242599 2025-08-26 18:01:27.463503+00 2025-08-26 18:01:27.463515+00 f t TOTAL 0.00 3 6260 \N +242600 2025-08-26 18:01:27.465113+00 2025-08-26 18:01:27.465123+00 f t ADELANTO 0.00 4 6260 \N +248305 2025-08-29 10:03:53.774182+00 2025-08-29 10:03:53.774192+00 f t SUBTOTAL 42000.00 1 6407 \N +248306 2025-08-29 10:03:53.776221+00 2025-08-29 10:03:53.77623+00 f t DESCUENTO 0.00 2 6407 \N +248307 2025-08-29 10:03:53.779032+00 2025-08-29 10:03:53.77904+00 f t TOTAL 42000.00 3 6407 \N +248308 2025-08-29 10:03:53.780336+00 2025-08-29 10:03:53.780342+00 f t ADELANTO 9500.00 4 6407 \N +239493 2025-08-25 12:28:22.618303+00 2025-08-25 12:28:22.618316+00 f t SUBTOTAL 42000.00 1 6193 \N +239494 2025-08-25 12:28:22.62048+00 2025-08-25 12:28:22.620489+00 f t DESCUENTO 0.00 2 6193 \N +239495 2025-08-25 12:28:22.622062+00 2025-08-25 12:28:22.622072+00 f t TOTAL 42000.00 3 6193 \N +239496 2025-08-25 12:28:22.623494+00 2025-08-25 12:28:22.6235+00 f t ADELANTO 9500.00 4 6193 \N +239529 2025-08-25 12:30:03.169643+00 2025-08-25 12:30:03.169658+00 f t SUBTOTAL 0.00 1 6192 \N +239530 2025-08-25 12:30:03.179205+00 2025-08-25 12:30:03.179218+00 f t DESCUENTO 0.00 2 6192 \N +239531 2025-08-25 12:30:03.183651+00 2025-08-25 12:30:03.183666+00 f t TOTAL 0.00 3 6192 \N +239532 2025-08-25 12:30:03.185981+00 2025-08-25 12:30:03.185995+00 f t ADELANTO 0.00 4 6192 \N +243769 2025-08-27 13:18:49.013632+00 2025-08-27 13:18:49.013644+00 f t SUBTOTAL 0.00 1 6290 \N +243770 2025-08-27 13:18:49.016316+00 2025-08-27 13:18:49.016327+00 f t DESCUENTO 0.00 2 6290 \N +243771 2025-08-27 13:18:49.018098+00 2025-08-27 13:18:49.018108+00 f t TOTAL 0.00 3 6290 \N +243772 2025-08-27 13:18:49.019721+00 2025-08-27 13:18:49.019731+00 f t ADELANTO 0.00 4 6290 \N +246429 2025-08-28 11:12:50.267775+00 2025-08-28 11:12:50.267785+00 f t SUBTOTAL 0.00 1 6348 \N +246430 2025-08-28 11:12:50.270419+00 2025-08-28 11:12:50.270432+00 f t DESCUENTO 0.00 2 6348 \N +246431 2025-08-28 11:12:50.272307+00 2025-08-28 11:12:50.272317+00 f t TOTAL 0.00 3 6348 \N +239609 2025-08-25 12:31:51.888719+00 2025-08-25 12:31:51.888731+00 f t SUBTOTAL 0.00 1 6191 \N +239610 2025-08-25 12:31:51.891167+00 2025-08-25 12:31:51.891179+00 f t DESCUENTO 0.00 2 6191 \N +239611 2025-08-25 12:31:51.893054+00 2025-08-25 12:31:51.893066+00 f t TOTAL 0.00 3 6191 \N +239612 2025-08-25 12:31:51.89484+00 2025-08-25 12:31:51.89485+00 f t ADELANTO 0.00 4 6191 \N +246432 2025-08-28 11:12:50.27403+00 2025-08-28 11:12:50.274042+00 f t ADELANTO 0.00 4 6348 \N +246525 2025-08-28 11:34:36.535305+00 2025-08-28 11:34:36.535315+00 f t SUBTOTAL 99000.00 1 6350 \N +246526 2025-08-28 11:34:36.5371+00 2025-08-28 11:34:36.53711+00 f t DESCUENTO 0.00 2 6350 \N +246527 2025-08-28 11:34:36.538376+00 2025-08-28 11:34:36.538384+00 f t TOTAL 99000.00 3 6350 \N +246528 2025-08-28 11:34:36.540732+00 2025-08-28 11:34:36.540738+00 f t ADELANTO 23000.00 4 6350 \N +239621 2025-08-25 12:32:02.824617+00 2025-08-25 12:32:02.824634+00 f t SUBTOTAL 0.00 1 6194 \N +239622 2025-08-25 12:32:02.828001+00 2025-08-25 12:32:02.828012+00 f t DESCUENTO 0.00 2 6194 \N +239623 2025-08-25 12:32:02.831307+00 2025-08-25 12:32:02.831322+00 f t TOTAL 0.00 3 6194 \N +239624 2025-08-25 12:32:02.834093+00 2025-08-25 12:32:02.834103+00 f t ADELANTO 0.00 4 6194 \N +241081 2025-08-25 22:08:57.8229+00 2025-08-25 22:08:57.822913+00 f t SUBTOTAL 0.00 1 6224 \N +241082 2025-08-25 22:08:57.825706+00 2025-08-25 22:08:57.825715+00 f t DESCUENTO 0.00 2 6224 \N +241083 2025-08-25 22:08:57.827443+00 2025-08-25 22:08:57.827451+00 f t TOTAL 0.00 3 6224 \N +241084 2025-08-25 22:08:57.829158+00 2025-08-25 22:08:57.829167+00 f t ADELANTO 0.00 4 6224 \N +258289 2025-09-01 15:11:39.663284+00 2025-09-01 15:11:39.663292+00 f t SUBTOTAL 0.00 1 6640 \N +258290 2025-09-01 15:11:39.666664+00 2025-09-01 15:11:39.666672+00 f t DESCUENTO 0.00 2 6640 \N +258291 2025-09-01 15:11:39.668006+00 2025-09-01 15:11:39.668012+00 f t TOTAL 0.00 3 6640 \N +258292 2025-09-01 15:11:39.6691+00 2025-09-01 15:11:39.669106+00 f t ADELANTO 0.00 4 6640 \N +239645 2025-08-25 12:34:14.6325+00 2025-08-25 12:34:14.63251+00 f t SUBTOTAL 0.00 1 6195 \N +239646 2025-08-25 12:34:14.63476+00 2025-08-25 12:34:14.634768+00 f t DESCUENTO 0.00 2 6195 \N +239647 2025-08-25 12:34:14.636105+00 2025-08-25 12:34:14.636112+00 f t TOTAL 0.00 3 6195 \N +239648 2025-08-25 12:34:14.637302+00 2025-08-25 12:34:14.637308+00 f t ADELANTO 0.00 4 6195 \N +241497 2025-08-26 02:34:07.362566+00 2025-08-26 02:34:07.362577+00 f t SUBTOTAL 50000.00 1 6236 \N +241498 2025-08-26 02:34:07.3651+00 2025-08-26 02:34:07.365109+00 f t DESCUENTO 0.00 2 6236 \N +241499 2025-08-26 02:34:07.367773+00 2025-08-26 02:34:07.367785+00 f t TOTAL 50000.00 3 6236 \N +241500 2025-08-26 02:34:07.369599+00 2025-08-26 02:34:07.369608+00 f t ADELANTO 10000.00 4 6236 \N +247513 2025-08-28 20:19:01.588589+00 2025-08-28 20:19:01.588603+00 f t SUBTOTAL 0.00 1 6382 \N +247514 2025-08-28 20:19:01.590732+00 2025-08-28 20:19:01.590742+00 f t DESCUENTO 0.00 2 6382 \N +247515 2025-08-28 20:19:01.593161+00 2025-08-28 20:19:01.593173+00 f t TOTAL 0.00 3 6382 \N +247516 2025-08-28 20:19:01.595382+00 2025-08-28 20:19:01.595395+00 f t ADELANTO 0.00 4 6382 \N +239709 2025-08-25 13:28:22.64282+00 2025-08-25 13:28:22.642833+00 f t SUBTOTAL 42000.00 1 6196 \N +239710 2025-08-25 13:28:22.64529+00 2025-08-25 13:28:22.645301+00 f t DESCUENTO 0.00 2 6196 \N +239711 2025-08-25 13:28:22.646998+00 2025-08-25 13:28:22.647008+00 f t TOTAL 42000.00 3 6196 \N +239712 2025-08-25 13:28:22.648631+00 2025-08-25 13:28:22.64864+00 f t ADELANTO 9500.00 4 6196 \N +239725 2025-08-25 13:43:47.397538+00 2025-08-25 13:43:47.397557+00 f t SUBTOTAL 0.00 1 6197 \N +239726 2025-08-25 13:43:47.400194+00 2025-08-25 13:43:47.400201+00 f t DESCUENTO 0.00 2 6197 \N +239727 2025-08-25 13:43:47.401806+00 2025-08-25 13:43:47.401812+00 f t TOTAL 0.00 3 6197 \N +239728 2025-08-25 13:43:47.403103+00 2025-08-25 13:43:47.403109+00 f t ADELANTO 0.00 4 6197 \N +239733 2025-08-25 13:44:35.776149+00 2025-08-25 13:44:35.776162+00 f t SUBTOTAL 0.00 1 6198 \N +239734 2025-08-25 13:44:35.777803+00 2025-08-25 13:44:35.777811+00 f t DESCUENTO 0.00 2 6198 \N +239735 2025-08-25 13:44:35.779229+00 2025-08-25 13:44:35.779235+00 f t TOTAL 0.00 3 6198 \N +239736 2025-08-25 13:44:35.780361+00 2025-08-25 13:44:35.780368+00 f t ADELANTO 0.00 4 6198 \N +242481 2025-08-26 17:01:14.797715+00 2025-08-26 17:01:14.797727+00 f t SUBTOTAL 0.00 1 6258 \N +242482 2025-08-26 17:01:14.800572+00 2025-08-26 17:01:14.800584+00 f t DESCUENTO 0.00 2 6258 \N +242483 2025-08-26 17:01:14.802695+00 2025-08-26 17:01:14.802708+00 f t TOTAL 0.00 3 6258 \N +242484 2025-08-26 17:01:14.804819+00 2025-08-26 17:01:14.804831+00 f t ADELANTO 0.00 4 6258 \N +239761 2025-08-25 14:04:12.272764+00 2025-08-25 14:04:12.272776+00 f t SUBTOTAL 68000.00 1 6199 \N +239762 2025-08-25 14:04:12.274885+00 2025-08-25 14:04:12.274895+00 f t DESCUENTO 0.00 2 6199 \N +239763 2025-08-25 14:04:12.276693+00 2025-08-25 14:04:12.276704+00 f t TOTAL 68000.00 3 6199 \N +239764 2025-08-25 14:04:12.278883+00 2025-08-25 14:04:12.278891+00 f t ADELANTO 13000.00 4 6199 \N +242877 2025-08-26 22:55:35.290367+00 2025-08-26 22:55:35.290382+00 f t SUBTOTAL 0.00 1 6268 \N +242878 2025-08-26 22:55:35.293156+00 2025-08-26 22:55:35.293169+00 f t DESCUENTO 0.00 2 6268 \N +242879 2025-08-26 22:55:35.29507+00 2025-08-26 22:55:35.295083+00 f t TOTAL 0.00 3 6268 \N +242880 2025-08-26 22:55:35.297317+00 2025-08-26 22:55:35.29733+00 f t ADELANTO 0.00 4 6268 \N +243245 2025-08-27 02:16:20.586195+00 2025-08-27 02:16:20.586209+00 f t SUBTOTAL 42000.00 1 6277 \N +243246 2025-08-27 02:16:20.589185+00 2025-08-27 02:16:20.589198+00 f t DESCUENTO 0.00 2 6277 \N +243247 2025-08-27 02:16:20.591472+00 2025-08-27 02:16:20.591485+00 f t TOTAL 42000.00 3 6277 \N +243248 2025-08-27 02:16:20.59395+00 2025-08-27 02:16:20.593963+00 f t ADELANTO 9500.00 4 6277 \N +239809 2025-08-25 14:37:50.391959+00 2025-08-25 14:37:50.391972+00 f t SUBTOTAL 0.00 1 6200 \N +239810 2025-08-25 14:37:50.394681+00 2025-08-25 14:37:50.394694+00 f t DESCUENTO 0.00 2 6200 \N +239811 2025-08-25 14:37:50.396609+00 2025-08-25 14:37:50.396622+00 f t TOTAL 0.00 3 6200 \N +239812 2025-08-25 14:37:50.398564+00 2025-08-25 14:37:50.398575+00 f t ADELANTO 0.00 4 6200 \N +243573 2025-08-27 07:21:47.282644+00 2025-08-27 07:21:47.28266+00 f t SUBTOTAL 42000.00 1 6285 \N +243574 2025-08-27 07:21:47.285922+00 2025-08-27 07:21:47.285935+00 f t DESCUENTO 0.00 2 6285 \N +243575 2025-08-27 07:21:47.288533+00 2025-08-27 07:21:47.288542+00 f t TOTAL 42000.00 3 6285 \N +239837 2025-08-25 14:44:10.461958+00 2025-08-25 14:44:10.46197+00 f t SUBTOTAL 0.00 1 6202 \N +239838 2025-08-25 14:44:10.464246+00 2025-08-25 14:44:10.464256+00 f t DESCUENTO 0.00 2 6202 \N +239839 2025-08-25 14:44:10.46578+00 2025-08-25 14:44:10.465789+00 f t TOTAL 0.00 3 6202 \N +239840 2025-08-25 14:44:10.467121+00 2025-08-25 14:44:10.467127+00 f t ADELANTO 0.00 4 6202 \N +243576 2025-08-27 07:21:47.290236+00 2025-08-27 07:21:47.290245+00 f t ADELANTO 9500.00 4 6285 \N +243917 2025-08-27 15:06:33.407427+00 2025-08-27 15:06:33.407439+00 f t SUBTOTAL 42000.00 1 6292 \N +243918 2025-08-27 15:06:33.409608+00 2025-08-27 15:06:33.40962+00 f t DESCUENTO 0.00 2 6292 \N +243919 2025-08-27 15:06:33.411386+00 2025-08-27 15:06:33.411397+00 f t TOTAL 42000.00 3 6292 \N +243920 2025-08-27 15:06:33.412976+00 2025-08-27 15:06:33.412986+00 f t ADELANTO 9500.00 4 6292 \N +289209 2025-09-12 00:15:54.94302+00 2025-09-12 00:15:54.943032+00 f t SUBTOTAL 46000.00 1 7381 \N +246437 2025-08-28 11:32:09.09191+00 2025-08-28 11:32:09.091924+00 f t SUBTOTAL 0.00 1 6349 \N +246438 2025-08-28 11:32:09.094502+00 2025-08-28 11:32:09.094514+00 f t DESCUENTO 0.00 2 6349 \N +246439 2025-08-28 11:32:09.096979+00 2025-08-28 11:32:09.096991+00 f t TOTAL 0.00 3 6349 \N +246440 2025-08-28 11:32:09.09898+00 2025-08-28 11:32:09.098991+00 f t ADELANTO 0.00 4 6349 \N +246717 2025-08-28 12:59:52.646332+00 2025-08-28 12:59:52.646345+00 f t SUBTOTAL 42000.00 1 6357 \N +246718 2025-08-28 12:59:52.64855+00 2025-08-28 12:59:52.648558+00 f t DESCUENTO 0.00 2 6357 \N +246719 2025-08-28 12:59:52.650056+00 2025-08-28 12:59:52.650064+00 f t TOTAL 42000.00 3 6357 \N +246720 2025-08-28 12:59:52.651511+00 2025-08-28 12:59:52.651518+00 f t ADELANTO 9500.00 4 6357 \N +246893 2025-08-28 15:15:01.752636+00 2025-08-28 15:15:01.752651+00 f t SUBTOTAL 0.00 1 6363 \N +246894 2025-08-28 15:15:01.75747+00 2025-08-28 15:15:01.757483+00 f t DESCUENTO 0.00 2 6363 \N +246895 2025-08-28 15:15:01.760481+00 2025-08-28 15:15:01.760496+00 f t TOTAL 0.00 3 6363 \N +246896 2025-08-28 15:15:01.763762+00 2025-08-28 15:15:01.763777+00 f t ADELANTO 0.00 4 6363 \N +241441 2025-08-26 02:16:43.396507+00 2025-08-26 02:16:43.39652+00 f t SUBTOTAL 64500.00 1 6234 \N +241442 2025-08-26 02:16:43.398947+00 2025-08-26 02:16:43.398959+00 f t DESCUENTO 0.00 2 6234 \N +241443 2025-08-26 02:16:43.400819+00 2025-08-26 02:16:43.400829+00 f t TOTAL 64500.00 3 6234 \N +241444 2025-08-26 02:16:43.402557+00 2025-08-26 02:16:43.402568+00 f t ADELANTO 17000.00 4 6234 \N +239957 2025-08-25 14:49:37.759732+00 2025-08-25 14:49:37.759742+00 f t SUBTOTAL 50000.00 1 6201 \N +239958 2025-08-25 14:49:37.761776+00 2025-08-25 14:49:37.761784+00 f t DESCUENTO 0.00 2 6201 \N +239959 2025-08-25 14:49:37.763433+00 2025-08-25 14:49:37.76344+00 f t TOTAL 50000.00 3 6201 \N +239960 2025-08-25 14:49:37.764707+00 2025-08-25 14:49:37.764713+00 f t ADELANTO 10000.00 4 6201 \N +239965 2025-08-25 15:00:39.128116+00 2025-08-25 15:00:39.128128+00 f t SUBTOTAL 0.00 1 6203 \N +239966 2025-08-25 15:00:39.130242+00 2025-08-25 15:00:39.130253+00 f t DESCUENTO 0.00 2 6203 \N +239967 2025-08-25 15:00:39.133548+00 2025-08-25 15:00:39.13356+00 f t TOTAL 0.00 3 6203 \N +239968 2025-08-25 15:00:39.135728+00 2025-08-25 15:00:39.135739+00 f t ADELANTO 0.00 4 6203 \N +247589 2025-08-28 20:22:42.601248+00 2025-08-28 20:22:42.601262+00 f t SUBTOTAL 88000.00 1 6383 \N +247590 2025-08-28 20:22:42.603372+00 2025-08-28 20:22:42.603387+00 f t DESCUENTO 0.00 2 6383 \N +247591 2025-08-28 20:22:42.605229+00 2025-08-28 20:22:42.605242+00 f t TOTAL 88000.00 3 6383 \N +247592 2025-08-28 20:22:42.60675+00 2025-08-28 20:22:42.606783+00 f t ADELANTO 19000.00 4 6383 \N +247681 2025-08-28 21:40:43.556814+00 2025-08-28 21:40:43.556827+00 f t SUBTOTAL 42000.00 1 6389 \N +247682 2025-08-28 21:40:43.559502+00 2025-08-28 21:40:43.559513+00 f t DESCUENTO 0.00 2 6389 \N +247683 2025-08-28 21:40:43.561363+00 2025-08-28 21:40:43.561376+00 f t TOTAL 42000.00 3 6389 \N +247684 2025-08-28 21:40:43.563311+00 2025-08-28 21:40:43.563321+00 f t ADELANTO 9500.00 4 6389 \N +247753 2025-08-28 22:01:48.346297+00 2025-08-28 22:01:48.346307+00 f t SUBTOTAL 0.00 1 6390 \N +247754 2025-08-28 22:01:48.349116+00 2025-08-28 22:01:48.349127+00 f t DESCUENTO 0.00 2 6390 \N +247755 2025-08-28 22:01:48.350962+00 2025-08-28 22:01:48.350972+00 f t TOTAL 0.00 3 6390 \N +247756 2025-08-28 22:01:48.352879+00 2025-08-28 22:01:48.35289+00 f t ADELANTO 0.00 4 6390 \N +242101 2025-08-26 10:01:24.106407+00 2025-08-26 10:01:24.106422+00 f t SUBTOTAL 0.00 1 6246 \N +242102 2025-08-26 10:01:24.109579+00 2025-08-26 10:01:24.109593+00 f t DESCUENTO 0.00 2 6246 \N +242103 2025-08-26 10:01:24.111735+00 2025-08-26 10:01:24.111744+00 f t TOTAL 0.00 3 6246 \N +242104 2025-08-26 10:01:24.113423+00 2025-08-26 10:01:24.11343+00 f t ADELANTO 0.00 4 6246 \N +240005 2025-08-25 15:18:38.590947+00 2025-08-25 15:18:38.59096+00 f t SUBTOTAL 27500.00 1 6204 \N +240006 2025-08-25 15:18:38.593094+00 2025-08-25 15:18:38.593104+00 f t DESCUENTO 0.00 2 6204 \N +240007 2025-08-25 15:18:38.594868+00 2025-08-25 15:18:38.594878+00 f t TOTAL 27500.00 3 6204 \N +240008 2025-08-25 15:18:38.596444+00 2025-08-25 15:18:38.59645+00 f t ADELANTO 27500.00 4 6204 \N +242293 2025-08-26 13:31:01.078809+00 2025-08-26 13:31:01.078822+00 f t SUBTOTAL 42000.00 1 6252 \N +242294 2025-08-26 13:31:01.081674+00 2025-08-26 13:31:01.081683+00 f t DESCUENTO 0.00 2 6252 \N +242295 2025-08-26 13:31:01.083814+00 2025-08-26 13:31:01.083823+00 f t TOTAL 42000.00 3 6252 \N +242296 2025-08-26 13:31:01.085727+00 2025-08-26 13:31:01.085736+00 f t ADELANTO 9500.00 4 6252 \N +240013 2025-08-25 15:20:28.632319+00 2025-08-25 15:20:28.632332+00 f t SUBTOTAL 0.00 1 6205 \N +240014 2025-08-25 15:20:28.634342+00 2025-08-25 15:20:28.634352+00 f t DESCUENTO 0.00 2 6205 \N +240015 2025-08-25 15:20:28.63606+00 2025-08-25 15:20:28.63607+00 f t TOTAL 0.00 3 6205 \N +240016 2025-08-25 15:20:28.637816+00 2025-08-25 15:20:28.637826+00 f t ADELANTO 0.00 4 6205 \N +240021 2025-08-25 15:21:13.116015+00 2025-08-25 15:21:13.116026+00 f t SUBTOTAL 0.00 1 6206 \N +240022 2025-08-25 15:21:13.117709+00 2025-08-25 15:21:13.117718+00 f t DESCUENTO 0.00 2 6206 \N +240023 2025-08-25 15:21:13.119333+00 2025-08-25 15:21:13.119345+00 f t TOTAL 0.00 3 6206 \N +240024 2025-08-25 15:21:13.120914+00 2025-08-25 15:21:13.120922+00 f t ADELANTO 0.00 4 6206 \N +243145 2025-08-27 01:02:10.675284+00 2025-08-27 01:02:10.675297+00 f t SUBTOTAL 50000.00 1 6274 \N +243146 2025-08-27 01:02:10.680964+00 2025-08-27 01:02:10.680975+00 f t DESCUENTO 0.00 2 6274 \N +243147 2025-08-27 01:02:10.683345+00 2025-08-27 01:02:10.683357+00 f t TOTAL 50000.00 3 6274 \N +243148 2025-08-27 01:02:10.685485+00 2025-08-27 01:02:10.685498+00 f t ADELANTO 10000.00 4 6274 \N +243201 2025-08-27 01:38:21.961338+00 2025-08-27 01:38:21.961348+00 f t SUBTOTAL 0.00 1 6276 \N +243202 2025-08-27 01:38:21.963779+00 2025-08-27 01:38:21.963788+00 f t DESCUENTO 0.00 2 6276 \N +243203 2025-08-27 01:38:21.965132+00 2025-08-27 01:38:21.965143+00 f t TOTAL 0.00 3 6276 \N +243204 2025-08-27 01:38:21.96642+00 2025-08-27 01:38:21.966426+00 f t ADELANTO 0.00 4 6276 \N +243253 2025-08-27 02:23:05.841244+00 2025-08-27 02:23:05.841255+00 f t SUBTOTAL 0.00 1 6278 \N +243254 2025-08-27 02:23:05.842994+00 2025-08-27 02:23:05.843006+00 f t DESCUENTO 0.00 2 6278 \N +243255 2025-08-27 02:23:05.845227+00 2025-08-27 02:23:05.845239+00 f t TOTAL 0.00 3 6278 \N +243256 2025-08-27 02:23:05.847097+00 2025-08-27 02:23:05.847108+00 f t ADELANTO 0.00 4 6278 \N +243581 2025-08-27 10:22:40.042592+00 2025-08-27 10:22:40.042606+00 f t SUBTOTAL 0.00 1 6286 \N +243582 2025-08-27 10:22:40.044229+00 2025-08-27 10:22:40.044239+00 f t DESCUENTO 0.00 2 6286 \N +243583 2025-08-27 10:22:40.045828+00 2025-08-27 10:22:40.045836+00 f t TOTAL 0.00 3 6286 \N +243584 2025-08-27 10:22:40.047248+00 2025-08-27 10:22:40.047256+00 f t ADELANTO 0.00 4 6286 \N +240161 2025-08-25 15:27:24.979968+00 2025-08-25 15:27:24.979982+00 f t SUBTOTAL 0.00 1 6207 \N +240162 2025-08-25 15:27:24.982681+00 2025-08-25 15:27:24.982694+00 f t DESCUENTO 0.00 2 6207 \N +240163 2025-08-25 15:27:24.98473+00 2025-08-25 15:27:24.98474+00 f t TOTAL 0.00 3 6207 \N +240164 2025-08-25 15:27:24.986692+00 2025-08-25 15:27:24.986702+00 f t ADELANTO 0.00 4 6207 \N +243953 2025-08-27 15:17:34.71668+00 2025-08-27 15:17:34.716692+00 f t SUBTOTAL 64500.00 1 6294 \N +243954 2025-08-27 15:17:34.719187+00 2025-08-27 15:17:34.7192+00 f t DESCUENTO 0.00 2 6294 \N +243955 2025-08-27 15:17:34.721426+00 2025-08-27 15:17:34.721436+00 f t TOTAL 64500.00 3 6294 \N +276933 2025-09-08 13:35:49.453918+00 2025-09-08 13:35:49.453931+00 f t SUBTOTAL 54000.00 1 7100 \N +276934 2025-09-08 13:35:49.45579+00 2025-09-08 13:35:49.455797+00 f t DESCUENTO 0.00 2 7100 \N +258297 2025-09-01 15:15:35.829188+00 2025-09-01 15:15:35.829197+00 f t SUBTOTAL 0.00 1 6641 \N +258298 2025-09-01 15:15:35.830475+00 2025-09-01 15:15:35.830482+00 f t DESCUENTO 0.00 2 6641 \N +258299 2025-09-01 15:15:35.831635+00 2025-09-01 15:15:35.83164+00 f t TOTAL 0.00 3 6641 \N +276935 2025-09-08 13:35:49.457072+00 2025-09-08 13:35:49.457078+00 f t TOTAL 54000.00 3 7100 \N +276936 2025-09-08 13:35:49.45806+00 2025-09-08 13:35:49.458065+00 f t ADELANTO 13500.00 4 7100 \N +246725 2025-08-28 13:00:57.039243+00 2025-08-28 13:00:57.039254+00 f t SUBTOTAL 0.00 1 6358 \N +246726 2025-08-28 13:00:57.04103+00 2025-08-28 13:00:57.041038+00 f t DESCUENTO 0.00 2 6358 \N +246727 2025-08-28 13:00:57.042816+00 2025-08-28 13:00:57.042825+00 f t TOTAL 0.00 3 6358 \N +246728 2025-08-28 13:00:57.044602+00 2025-08-28 13:00:57.04461+00 f t ADELANTO 0.00 4 6358 \N +246813 2025-08-28 14:03:09.822742+00 2025-08-28 14:03:09.822755+00 f t SUBTOTAL 50000.00 1 6360 \N +246814 2025-08-28 14:03:09.826822+00 2025-08-28 14:03:09.826834+00 f t DESCUENTO 0.00 2 6360 \N +246815 2025-08-28 14:03:09.829876+00 2025-08-28 14:03:09.829886+00 f t TOTAL 50000.00 3 6360 \N +246816 2025-08-28 14:03:09.831907+00 2025-08-28 14:03:09.831916+00 f t ADELANTO 10000.00 4 6360 \N +240237 2025-08-25 15:53:33.980749+00 2025-08-25 15:53:33.980758+00 f t SUBTOTAL 0.00 1 6208 \N +240238 2025-08-25 15:53:33.982709+00 2025-08-25 15:53:33.98272+00 f t DESCUENTO 0.00 2 6208 \N +240239 2025-08-25 15:53:33.984164+00 2025-08-25 15:53:33.98417+00 f t TOTAL 0.00 3 6208 \N +240240 2025-08-25 15:53:33.985381+00 2025-08-25 15:53:33.985387+00 f t ADELANTO 0.00 4 6208 \N +253105 2025-08-30 18:03:50.079644+00 2025-08-30 18:03:50.079655+00 f t SUBTOTAL 0.00 1 6522 \N +253106 2025-08-30 18:03:50.081444+00 2025-08-30 18:03:50.081452+00 f t DESCUENTO 0.00 2 6522 \N +253107 2025-08-30 18:03:50.082897+00 2025-08-30 18:03:50.082905+00 f t TOTAL 0.00 3 6522 \N +253108 2025-08-30 18:03:50.084269+00 2025-08-30 18:03:50.084277+00 f t ADELANTO 0.00 4 6522 \N +247597 2025-08-28 20:27:21.793664+00 2025-08-28 20:27:21.793675+00 f t SUBTOTAL 0.00 1 6384 \N +247598 2025-08-28 20:27:21.79548+00 2025-08-28 20:27:21.795491+00 f t DESCUENTO 0.00 2 6384 \N +247599 2025-08-28 20:27:21.796658+00 2025-08-28 20:27:21.796665+00 f t TOTAL 0.00 3 6384 \N +247600 2025-08-28 20:27:21.797664+00 2025-08-28 20:27:21.79767+00 f t ADELANTO 0.00 4 6384 \N +247761 2025-08-28 22:22:24.070667+00 2025-08-28 22:22:24.07068+00 f t SUBTOTAL 0.00 1 6391 \N +247762 2025-08-28 22:22:24.072558+00 2025-08-28 22:22:24.072566+00 f t DESCUENTO 0.00 2 6391 \N +247763 2025-08-28 22:22:24.074193+00 2025-08-28 22:22:24.074201+00 f t TOTAL 0.00 3 6391 \N +247764 2025-08-28 22:22:24.075915+00 2025-08-28 22:22:24.075928+00 f t ADELANTO 0.00 4 6391 \N +240281 2025-08-25 15:54:47.989167+00 2025-08-25 15:54:47.989179+00 f t SUBTOTAL 94200.00 1 6209 \N +240282 2025-08-25 15:54:47.991542+00 2025-08-25 15:54:47.99155+00 f t DESCUENTO 0.00 2 6209 \N +240283 2025-08-25 15:54:47.993345+00 2025-08-25 15:54:47.993353+00 f t TOTAL 94200.00 3 6209 \N +240284 2025-08-25 15:54:47.99488+00 2025-08-25 15:54:47.994886+00 f t ADELANTO 56200.00 4 6209 \N +247889 2025-08-29 00:14:39.128094+00 2025-08-29 00:14:39.128108+00 f t SUBTOTAL 50000.00 1 6395 \N +247890 2025-08-29 00:14:39.131292+00 2025-08-29 00:14:39.131304+00 f t DESCUENTO 0.00 2 6395 \N +247891 2025-08-29 00:14:39.133305+00 2025-08-29 00:14:39.133317+00 f t TOTAL 50000.00 3 6395 \N +247892 2025-08-29 00:14:39.135374+00 2025-08-29 00:14:39.135385+00 f t ADELANTO 10000.00 4 6395 \N +247953 2025-08-29 01:23:44.329544+00 2025-08-29 01:23:44.329557+00 f t SUBTOTAL 0.00 1 6397 \N +247954 2025-08-29 01:23:44.331684+00 2025-08-29 01:23:44.331696+00 f t DESCUENTO 0.00 2 6397 \N +242301 2025-08-26 14:16:25.077987+00 2025-08-26 14:16:25.077997+00 f t SUBTOTAL 0.00 1 6253 \N +242302 2025-08-26 14:16:25.079441+00 2025-08-26 14:16:25.079448+00 f t DESCUENTO 0.00 2 6253 \N +242303 2025-08-26 14:16:25.081463+00 2025-08-26 14:16:25.081469+00 f t TOTAL 0.00 3 6253 \N +242304 2025-08-26 14:16:25.082912+00 2025-08-26 14:16:25.082921+00 f t ADELANTO 0.00 4 6253 \N +247955 2025-08-29 01:23:44.333601+00 2025-08-29 01:23:44.33361+00 f t TOTAL 0.00 3 6397 \N +247956 2025-08-29 01:23:44.335072+00 2025-08-29 01:23:44.335081+00 f t ADELANTO 0.00 4 6397 \N +240313 2025-08-25 16:15:47.293032+00 2025-08-25 16:15:47.293042+00 f t SUBTOTAL 50000.00 1 6210 \N +240314 2025-08-25 16:15:47.29504+00 2025-08-25 16:15:47.295049+00 f t DESCUENTO 0.00 2 6210 \N +240315 2025-08-25 16:15:47.296679+00 2025-08-25 16:15:47.296688+00 f t TOTAL 50000.00 3 6210 \N +240316 2025-08-25 16:15:47.298282+00 2025-08-25 16:15:47.29829+00 f t ADELANTO 10000.00 4 6210 \N +248197 2025-08-29 03:09:51.750745+00 2025-08-29 03:09:51.750757+00 f t SUBTOTAL 0.00 1 6405 \N +248198 2025-08-29 03:09:51.752677+00 2025-08-29 03:09:51.752688+00 f t DESCUENTO 0.00 2 6405 \N +248199 2025-08-29 03:09:51.754444+00 2025-08-29 03:09:51.754451+00 f t TOTAL 0.00 3 6405 \N +248200 2025-08-29 03:09:51.75584+00 2025-08-29 03:09:51.755847+00 f t ADELANTO 0.00 4 6405 \N +248537 2025-08-29 11:48:26.770299+00 2025-08-29 11:48:26.770309+00 f t SUBTOTAL 49500.00 1 6410 \N +248538 2025-08-29 11:48:26.77277+00 2025-08-29 11:48:26.772782+00 f t DESCUENTO 0.00 2 6410 \N +248539 2025-08-29 11:48:26.776219+00 2025-08-29 11:48:26.77623+00 f t TOTAL 49500.00 3 6410 \N +248540 2025-08-29 11:48:26.778231+00 2025-08-29 11:48:26.778244+00 f t ADELANTO 11500.00 4 6410 \N +254305 2025-08-31 03:41:21.394968+00 2025-08-31 03:41:21.394981+00 f t SUBTOTAL 0.00 1 6549 \N +254306 2025-08-31 03:41:21.397617+00 2025-08-31 03:41:21.397628+00 f t DESCUENTO 0.00 2 6549 \N +254307 2025-08-31 03:41:21.399283+00 2025-08-31 03:41:21.399292+00 f t TOTAL 0.00 3 6549 \N +254308 2025-08-31 03:41:21.400879+00 2025-08-31 03:41:21.400886+00 f t ADELANTO 0.00 4 6549 \N +248645 2025-08-29 12:14:00.145537+00 2025-08-29 12:14:00.145551+00 f t SUBTOTAL 0.00 1 6417 \N +248646 2025-08-29 12:14:00.149854+00 2025-08-29 12:14:00.149863+00 f t DESCUENTO 0.00 2 6417 \N +248647 2025-08-29 12:14:00.152141+00 2025-08-29 12:14:00.152152+00 f t TOTAL 0.00 3 6417 \N +248648 2025-08-29 12:14:00.154789+00 2025-08-29 12:14:00.154802+00 f t ADELANTO 0.00 4 6417 \N +243449 2025-08-27 02:50:45.752724+00 2025-08-27 02:50:45.752733+00 f t SUBTOTAL 27500.00 1 6282 \N +243450 2025-08-27 02:50:45.755597+00 2025-08-27 02:50:45.755609+00 f t DESCUENTO 0.00 2 6282 \N +243451 2025-08-27 02:50:45.757546+00 2025-08-27 02:50:45.757557+00 f t TOTAL 27500.00 3 6282 \N +243452 2025-08-27 02:50:45.759246+00 2025-08-27 02:50:45.759254+00 f t ADELANTO 27500.00 4 6282 \N +240413 2025-08-25 16:35:54.586223+00 2025-08-25 16:35:54.586741+00 f t SUBTOTAL 0.00 1 6211 \N +240414 2025-08-25 16:35:54.591835+00 2025-08-25 16:35:54.591847+00 f t DESCUENTO 0.00 2 6211 \N +240415 2025-08-25 16:35:54.593894+00 2025-08-25 16:35:54.593906+00 f t TOTAL 0.00 3 6211 \N +240416 2025-08-25 16:35:54.595634+00 2025-08-25 16:35:54.595644+00 f t ADELANTO 0.00 4 6211 \N +243956 2025-08-27 15:17:34.723051+00 2025-08-27 15:17:34.723062+00 f t ADELANTO 17000.00 4 6294 \N +243989 2025-08-27 16:08:22.54805+00 2025-08-27 16:08:22.548063+00 f t SUBTOTAL 0.00 1 6296 \N +243990 2025-08-27 16:08:22.54986+00 2025-08-27 16:08:22.549873+00 f t DESCUENTO 0.00 2 6296 \N +243991 2025-08-27 16:08:22.551434+00 2025-08-27 16:08:22.551442+00 f t TOTAL 0.00 3 6296 \N +243992 2025-08-27 16:08:22.552883+00 2025-08-27 16:08:22.552892+00 f t ADELANTO 0.00 4 6296 \N +270093 2025-09-05 10:44:09.559329+00 2025-09-05 10:44:09.559338+00 f t SUBTOTAL 66500.00 1 6942 \N +270094 2025-09-05 10:44:09.56084+00 2025-09-05 10:44:09.560847+00 f t DESCUENTO 0.00 2 6942 \N +270095 2025-09-05 10:44:09.561898+00 2025-09-05 10:44:09.561904+00 f t TOTAL 66500.00 3 6942 \N +270096 2025-09-05 10:44:09.562835+00 2025-09-05 10:44:09.562841+00 f t ADELANTO 31500.00 4 6942 \N +289210 2025-09-12 00:15:54.945042+00 2025-09-12 00:15:54.945051+00 f t DESCUENTO 0.00 2 7381 \N +289211 2025-09-12 00:15:54.946644+00 2025-09-12 00:15:54.946651+00 f t TOTAL 46000.00 3 7381 \N +289212 2025-09-12 00:15:54.94793+00 2025-09-12 00:15:54.947937+00 f t ADELANTO 11000.00 4 7381 \N +246633 2025-08-28 12:20:11.956558+00 2025-08-28 12:20:11.956568+00 f t SUBTOTAL 42000.00 1 6354 \N +246634 2025-08-28 12:20:11.966933+00 2025-08-28 12:20:11.966949+00 f t DESCUENTO 0.00 2 6354 \N +246635 2025-08-28 12:20:11.969867+00 2025-08-28 12:20:11.969881+00 f t TOTAL 42000.00 3 6354 \N +246636 2025-08-28 12:20:11.973367+00 2025-08-28 12:20:11.973381+00 f t ADELANTO 9500.00 4 6354 \N +258300 2025-09-01 15:15:35.832549+00 2025-09-01 15:15:35.832554+00 f t ADELANTO 0.00 4 6641 \N +252645 2025-08-30 16:40:26.318406+00 2025-08-30 16:40:26.318416+00 f t SUBTOTAL 50000.00 1 6511 \N +252646 2025-08-30 16:40:26.320086+00 2025-08-30 16:40:26.320093+00 f t DESCUENTO 0.00 2 6511 \N +252647 2025-08-30 16:40:26.321147+00 2025-08-30 16:40:26.321152+00 f t TOTAL 50000.00 3 6511 \N +252648 2025-08-30 16:40:26.322196+00 2025-08-30 16:40:26.322203+00 f t ADELANTO 10000.00 4 6511 \N +258993 2025-09-01 18:42:23.585382+00 2025-09-01 18:42:23.585392+00 f t SUBTOTAL 93900.00 1 6659 \N +258994 2025-09-01 18:42:23.587311+00 2025-09-01 18:42:23.587319+00 f t DESCUENTO 0.00 2 6659 \N +258995 2025-09-01 18:42:23.588597+00 2025-09-01 18:42:23.588607+00 f t TOTAL 93900.00 3 6659 \N +258996 2025-09-01 18:42:23.590078+00 2025-09-01 18:42:23.590084+00 f t ADELANTO 47900.00 4 6659 \N +247373 2025-08-28 19:14:39.10261+00 2025-08-28 19:14:39.102619+00 f t SUBTOTAL 64500.00 1 6378 \N +247374 2025-08-28 19:14:39.104583+00 2025-08-28 19:14:39.104591+00 f t DESCUENTO 0.00 2 6378 \N +247375 2025-08-28 19:14:39.105722+00 2025-08-28 19:14:39.105728+00 f t TOTAL 64500.00 3 6378 \N +247376 2025-08-28 19:14:39.106659+00 2025-08-28 19:14:39.106665+00 f t ADELANTO 17000.00 4 6378 \N +253185 2025-08-30 18:52:32.071034+00 2025-08-30 18:52:32.071045+00 f t SUBTOTAL 0.00 1 6524 \N +253186 2025-08-30 18:52:32.073733+00 2025-08-30 18:52:32.073744+00 f t DESCUENTO 0.00 2 6524 \N +253187 2025-08-30 18:52:32.075192+00 2025-08-30 18:52:32.075199+00 f t TOTAL 0.00 3 6524 \N +253188 2025-08-30 18:52:32.076862+00 2025-08-30 18:52:32.07687+00 f t ADELANTO 0.00 4 6524 \N +253277 2025-08-30 19:46:30.192634+00 2025-08-30 19:46:30.192644+00 f t SUBTOTAL 72000.00 1 6528 \N +253278 2025-08-30 19:46:30.194452+00 2025-08-30 19:46:30.194459+00 f t DESCUENTO 0.00 2 6528 \N +253279 2025-08-30 19:46:30.195724+00 2025-08-30 19:46:30.19573+00 f t TOTAL 72000.00 3 6528 \N +253280 2025-08-30 19:46:30.196715+00 2025-08-30 19:46:30.19672+00 f t ADELANTO 19000.00 4 6528 \N +247605 2025-08-28 21:15:16.064821+00 2025-08-28 21:15:16.064835+00 f t SUBTOTAL 0.00 1 6385 \N +247606 2025-08-28 21:15:16.066484+00 2025-08-28 21:15:16.066495+00 f t DESCUENTO 0.00 2 6385 \N +247607 2025-08-28 21:15:16.068022+00 2025-08-28 21:15:16.068029+00 f t TOTAL 0.00 3 6385 \N +247608 2025-08-28 21:15:16.069135+00 2025-08-28 21:15:16.069141+00 f t ADELANTO 0.00 4 6385 \N +242177 2025-08-26 12:03:51.663771+00 2025-08-26 12:03:51.663784+00 f t SUBTOTAL 68000.00 1 6249 \N +242178 2025-08-26 12:03:51.665925+00 2025-08-26 12:03:51.665937+00 f t DESCUENTO 0.00 2 6249 \N +242179 2025-08-26 12:03:51.667624+00 2025-08-26 12:03:51.667636+00 f t TOTAL 68000.00 3 6249 \N +242180 2025-08-26 12:03:51.669205+00 2025-08-26 12:03:51.669213+00 f t ADELANTO 13000.00 4 6249 \N +242721 2025-08-26 19:20:50.61591+00 2025-08-26 19:20:50.61592+00 f t SUBTOTAL 27500.00 1 6262 \N +242722 2025-08-26 19:20:50.61761+00 2025-08-26 19:20:50.617619+00 f t DESCUENTO 0.00 2 6262 \N +242723 2025-08-26 19:20:50.619223+00 2025-08-26 19:20:50.619231+00 f t TOTAL 27500.00 3 6262 \N +242724 2025-08-26 19:20:50.620642+00 2025-08-26 19:20:50.620648+00 f t ADELANTO 27500.00 4 6262 \N +242777 2025-08-26 21:42:07.736131+00 2025-08-26 21:42:07.736145+00 f t SUBTOTAL 49500.00 1 6264 \N +242778 2025-08-26 21:42:07.740239+00 2025-08-26 21:42:07.740254+00 f t DESCUENTO 0.00 2 6264 \N +242779 2025-08-26 21:42:07.742393+00 2025-08-26 21:42:07.742407+00 f t TOTAL 49500.00 3 6264 \N +242780 2025-08-26 21:42:07.744485+00 2025-08-26 21:42:07.744497+00 f t ADELANTO 11500.00 4 6264 \N +242829 2025-08-26 21:50:21.008875+00 2025-08-26 21:50:21.008887+00 f t SUBTOTAL 49500.00 1 6265 \N +242830 2025-08-26 21:50:21.011319+00 2025-08-26 21:50:21.011331+00 f t DESCUENTO 0.00 2 6265 \N +242831 2025-08-26 21:50:21.013228+00 2025-08-26 21:50:21.013238+00 f t TOTAL 49500.00 3 6265 \N +242832 2025-08-26 21:50:21.015095+00 2025-08-26 21:50:21.015105+00 f t ADELANTO 11500.00 4 6265 \N +243313 2025-08-27 02:40:15.568857+00 2025-08-27 02:40:15.568869+00 f t SUBTOTAL 49500.00 1 6280 \N +243314 2025-08-27 02:40:15.571052+00 2025-08-27 02:40:15.571063+00 f t DESCUENTO 0.00 2 6280 \N +243315 2025-08-27 02:40:15.572956+00 2025-08-27 02:40:15.572965+00 f t TOTAL 49500.00 3 6280 \N +243316 2025-08-27 02:40:15.574655+00 2025-08-27 02:40:15.574668+00 f t ADELANTO 11500.00 4 6280 \N +260549 2025-09-02 02:15:57.975093+00 2025-09-02 02:15:57.975105+00 f t SUBTOTAL 100000.00 1 6690 \N +260550 2025-09-02 02:15:57.980059+00 2025-09-02 02:15:57.980069+00 f t DESCUENTO 0.00 2 6690 \N +260551 2025-09-02 02:15:57.982845+00 2025-09-02 02:15:57.982859+00 f t TOTAL 100000.00 3 6690 \N +260552 2025-09-02 02:15:57.985164+00 2025-09-02 02:15:57.985177+00 f t ADELANTO 22000.00 4 6690 \N +255069 2025-08-31 15:11:28.24615+00 2025-08-31 15:11:28.24616+00 f t SUBTOTAL 0.00 1 6569 \N +255070 2025-08-31 15:11:28.247538+00 2025-08-31 15:11:28.247546+00 f t DESCUENTO 0.00 2 6569 \N +255071 2025-08-31 15:11:28.24887+00 2025-08-31 15:11:28.248877+00 f t TOTAL 0.00 3 6569 \N +255072 2025-08-31 15:11:28.249996+00 2025-08-31 15:11:28.250002+00 f t ADELANTO 0.00 4 6569 \N +243629 2025-08-27 11:50:37.463082+00 2025-08-27 11:50:37.463095+00 f t SUBTOTAL 64500.00 1 6287 \N +243630 2025-08-27 11:50:37.46519+00 2025-08-27 11:50:37.465202+00 f t DESCUENTO 0.00 2 6287 \N +243631 2025-08-27 11:50:37.467225+00 2025-08-27 11:50:37.467237+00 f t TOTAL 64500.00 3 6287 \N +243632 2025-08-27 11:50:37.468895+00 2025-08-27 11:50:37.468906+00 f t ADELANTO 17000.00 4 6287 \N +243869 2025-08-27 14:55:30.073502+00 2025-08-27 14:55:30.073511+00 f t SUBTOTAL 93200.00 1 6293 \N +243870 2025-08-27 14:55:30.075862+00 2025-08-27 14:55:30.075874+00 f t DESCUENTO 0.00 2 6293 \N +243871 2025-08-27 14:55:30.077645+00 2025-08-27 14:55:30.077655+00 f t TOTAL 93200.00 3 6293 \N +243872 2025-08-27 14:55:30.079388+00 2025-08-27 14:55:30.079397+00 f t ADELANTO 55200.00 4 6293 \N +243981 2025-08-27 15:23:32.353111+00 2025-08-27 15:23:32.35312+00 f t SUBTOTAL 135750.00 1 6295 \N +243982 2025-08-27 15:23:32.355315+00 2025-08-27 15:23:32.355325+00 f t DESCUENTO 0.00 2 6295 \N +243983 2025-08-27 15:23:32.356908+00 2025-08-27 15:23:32.356918+00 f t TOTAL 135750.00 3 6295 \N +243984 2025-08-27 15:23:32.35836+00 2025-08-27 15:23:32.358368+00 f t ADELANTO 28250.00 4 6295 \N +249645 2025-08-29 15:17:51.041932+00 2025-08-29 15:17:51.041944+00 f t SUBTOTAL 91500.00 1 6432 \N +249646 2025-08-29 15:17:51.047816+00 2025-08-29 15:17:51.047827+00 f t DESCUENTO 0.00 2 6432 \N +249647 2025-08-29 15:17:51.05089+00 2025-08-29 15:17:51.050899+00 f t TOTAL 91500.00 3 6432 \N +249648 2025-08-29 15:17:51.052695+00 2025-08-29 15:17:51.052704+00 f t ADELANTO 21000.00 4 6432 \N +246229 2025-08-28 03:11:19.38128+00 2025-08-28 03:11:19.381292+00 f t SUBTOTAL 27500.00 1 6343 \N +246230 2025-08-28 03:11:19.384095+00 2025-08-28 03:11:19.384107+00 f t DESCUENTO 0.00 2 6343 \N +246231 2025-08-28 03:11:19.385911+00 2025-08-28 03:11:19.385921+00 f t TOTAL 27500.00 3 6343 \N +246232 2025-08-28 03:11:19.387634+00 2025-08-28 03:11:19.387643+00 f t ADELANTO 27500.00 4 6343 \N +252153 2025-08-30 15:55:25.987465+00 2025-08-30 15:55:25.987479+00 f t SUBTOTAL 68000.00 1 6503 \N +252154 2025-08-30 15:55:25.99612+00 2025-08-30 15:55:25.99613+00 f t DESCUENTO 0.00 2 6503 \N +252155 2025-08-30 15:55:25.998484+00 2025-08-30 15:55:25.998492+00 f t TOTAL 68000.00 3 6503 \N +252156 2025-08-30 15:55:26.00093+00 2025-08-30 15:55:26.000939+00 f t ADELANTO 13000.00 4 6503 \N +244049 2025-08-27 16:11:34.007265+00 2025-08-27 16:11:34.007279+00 f t SUBTOTAL 42000.00 1 6297 \N +244050 2025-08-27 16:11:34.010317+00 2025-08-27 16:11:34.010326+00 f t DESCUENTO 0.00 2 6297 \N +244051 2025-08-27 16:11:34.012585+00 2025-08-27 16:11:34.012597+00 f t TOTAL 42000.00 3 6297 \N +244052 2025-08-27 16:11:34.014851+00 2025-08-27 16:11:34.014865+00 f t ADELANTO 9500.00 4 6297 \N +244057 2025-08-27 16:13:52.901358+00 2025-08-27 16:13:52.901369+00 f t SUBTOTAL 0.00 1 6298 \N +244058 2025-08-27 16:13:52.902915+00 2025-08-27 16:13:52.902922+00 f t DESCUENTO 0.00 2 6298 \N +244059 2025-08-27 16:13:52.904177+00 2025-08-27 16:13:52.904184+00 f t TOTAL 0.00 3 6298 \N +244060 2025-08-27 16:13:52.905202+00 2025-08-27 16:13:52.905208+00 f t ADELANTO 0.00 4 6298 \N +246989 2025-08-28 15:47:53.110558+00 2025-08-28 15:47:53.110572+00 f t SUBTOTAL 0.00 1 6366 \N +246990 2025-08-28 15:47:53.113652+00 2025-08-28 15:47:53.113664+00 f t DESCUENTO 0.00 2 6366 \N +246991 2025-08-28 15:47:53.116209+00 2025-08-28 15:47:53.116219+00 f t TOTAL 0.00 3 6366 \N +246992 2025-08-28 15:47:53.118271+00 2025-08-28 15:47:53.118284+00 f t ADELANTO 0.00 4 6366 \N +252889 2025-08-30 17:03:19.207492+00 2025-08-30 17:03:19.207505+00 f t SUBTOTAL 0.00 1 6518 \N +252890 2025-08-30 17:03:19.210353+00 2025-08-30 17:03:19.210365+00 f t DESCUENTO 0.00 2 6518 \N +252891 2025-08-30 17:03:19.212328+00 2025-08-30 17:03:19.21234+00 f t TOTAL 0.00 3 6518 \N +252892 2025-08-30 17:03:19.214257+00 2025-08-30 17:03:19.214268+00 f t ADELANTO 0.00 4 6518 \N +244093 2025-08-27 16:24:59.077389+00 2025-08-27 16:24:59.077406+00 f t SUBTOTAL 0.00 1 6299 \N +244094 2025-08-27 16:24:59.084207+00 2025-08-27 16:24:59.084218+00 f t DESCUENTO 0.00 2 6299 \N +244095 2025-08-27 16:24:59.086504+00 2025-08-27 16:24:59.086515+00 f t TOTAL 0.00 3 6299 \N +244096 2025-08-27 16:24:59.08885+00 2025-08-27 16:24:59.088863+00 f t ADELANTO 0.00 4 6299 \N +247381 2025-08-28 19:33:36.778278+00 2025-08-28 19:33:36.778292+00 f t SUBTOTAL 0.00 1 6379 \N +247382 2025-08-28 19:33:36.78012+00 2025-08-28 19:33:36.78013+00 f t DESCUENTO 0.00 2 6379 \N +247383 2025-08-28 19:33:36.78179+00 2025-08-28 19:33:36.7818+00 f t TOTAL 0.00 3 6379 \N +247384 2025-08-28 19:33:36.783005+00 2025-08-28 19:33:36.783013+00 f t ADELANTO 0.00 4 6379 \N +247613 2025-08-28 21:31:10.567313+00 2025-08-28 21:31:10.567327+00 f t SUBTOTAL 0.00 1 6386 \N +247614 2025-08-28 21:31:10.569956+00 2025-08-28 21:31:10.569969+00 f t DESCUENTO 0.00 2 6386 \N +247615 2025-08-28 21:31:10.571749+00 2025-08-28 21:31:10.57176+00 f t TOTAL 0.00 3 6386 \N +247616 2025-08-28 21:31:10.573484+00 2025-08-28 21:31:10.573494+00 f t ADELANTO 0.00 4 6386 \N +253953 2025-08-31 00:49:34.200495+00 2025-08-31 00:49:34.200504+00 f t SUBTOTAL 49500.00 1 6544 \N +253954 2025-08-31 00:49:34.202604+00 2025-08-31 00:49:34.202614+00 f t DESCUENTO 0.00 2 6544 \N +253955 2025-08-31 00:49:34.203987+00 2025-08-31 00:49:34.203994+00 f t TOTAL 49500.00 3 6544 \N +253956 2025-08-31 00:49:34.205077+00 2025-08-31 00:49:34.205082+00 f t ADELANTO 11500.00 4 6544 \N +248385 2025-08-29 11:11:46.999556+00 2025-08-29 11:11:46.999566+00 f t SUBTOTAL 0.00 1 6411 \N +248386 2025-08-29 11:11:47.003697+00 2025-08-29 11:11:47.00371+00 f t DESCUENTO 0.00 2 6411 \N +248387 2025-08-29 11:11:47.005795+00 2025-08-29 11:11:47.005806+00 f t TOTAL 0.00 3 6411 \N +248388 2025-08-29 11:11:47.007418+00 2025-08-29 11:11:47.007426+00 f t ADELANTO 0.00 4 6411 \N +248661 2025-08-29 12:24:07.995074+00 2025-08-29 12:24:07.995089+00 f t SUBTOTAL 0.00 1 6419 \N +248662 2025-08-29 12:24:07.997629+00 2025-08-29 12:24:07.99765+00 f t DESCUENTO 0.00 2 6419 \N +248663 2025-08-29 12:24:08.008799+00 2025-08-29 12:24:08.008812+00 f t TOTAL 0.00 3 6419 \N +248664 2025-08-29 12:24:08.011558+00 2025-08-29 12:24:08.011572+00 f t ADELANTO 0.00 4 6419 \N +254533 2025-08-31 11:48:33.674687+00 2025-08-31 11:48:33.674698+00 f t SUBTOTAL 50000.00 1 6555 \N +254534 2025-08-31 11:48:33.676841+00 2025-08-31 11:48:33.676854+00 f t DESCUENTO 0.00 2 6555 \N +254535 2025-08-31 11:48:33.678783+00 2025-08-31 11:48:33.678793+00 f t TOTAL 50000.00 3 6555 \N +254536 2025-08-31 11:48:33.680494+00 2025-08-31 11:48:33.680503+00 f t ADELANTO 10000.00 4 6555 \N +255077 2025-08-31 15:17:43.538101+00 2025-08-31 15:17:43.538109+00 f t SUBTOTAL 0.00 1 6570 \N +255078 2025-08-31 15:17:43.539344+00 2025-08-31 15:17:43.539351+00 f t DESCUENTO 0.00 2 6570 \N +255079 2025-08-31 15:17:43.54128+00 2025-08-31 15:17:43.541286+00 f t TOTAL 0.00 3 6570 \N +255080 2025-08-31 15:17:43.54233+00 2025-08-31 15:17:43.542336+00 f t ADELANTO 0.00 4 6570 \N +244237 2025-08-27 17:10:28.267321+00 2025-08-27 17:10:28.267334+00 f t SUBTOTAL 158250.00 1 6300 \N +244238 2025-08-27 17:10:28.269231+00 2025-08-27 17:10:28.269239+00 f t DESCUENTO 0.00 2 6300 \N +244239 2025-08-27 17:10:28.270904+00 2025-08-27 17:10:28.270914+00 f t TOTAL 158250.00 3 6300 \N +244240 2025-08-27 17:10:28.272481+00 2025-08-27 17:10:28.272491+00 f t ADELANTO 35750.00 4 6300 \N +255457 2025-08-31 15:43:33.918391+00 2025-08-31 15:43:33.918401+00 f t SUBTOTAL 0.00 1 6573 \N +255458 2025-08-31 15:43:33.920446+00 2025-08-31 15:43:33.920453+00 f t DESCUENTO 0.00 2 6573 \N +255459 2025-08-31 15:43:33.921689+00 2025-08-31 15:43:33.921695+00 f t TOTAL 0.00 3 6573 \N +255460 2025-08-31 15:43:33.922596+00 2025-08-31 15:43:33.922601+00 f t ADELANTO 0.00 4 6573 \N +244265 2025-08-27 17:21:44.638166+00 2025-08-27 17:21:44.638176+00 f t SUBTOTAL 42000.00 1 6301 \N +244266 2025-08-27 17:21:44.640255+00 2025-08-27 17:21:44.640263+00 f t DESCUENTO 0.00 2 6301 \N +244267 2025-08-27 17:21:44.641663+00 2025-08-27 17:21:44.641669+00 f t TOTAL 42000.00 3 6301 \N +244268 2025-08-27 17:21:44.643001+00 2025-08-27 17:21:44.64301+00 f t ADELANTO 9500.00 4 6301 \N +249653 2025-08-29 15:19:34.094325+00 2025-08-29 15:19:34.094335+00 f t SUBTOTAL 0.00 1 6433 \N +249654 2025-08-29 15:19:34.096077+00 2025-08-29 15:19:34.096089+00 f t DESCUENTO 0.00 2 6433 \N +249655 2025-08-29 15:19:34.097785+00 2025-08-29 15:19:34.097794+00 f t TOTAL 0.00 3 6433 \N +249656 2025-08-29 15:19:34.099238+00 2025-08-29 15:19:34.099246+00 f t ADELANTO 0.00 4 6433 \N +244301 2025-08-27 17:28:58.709908+00 2025-08-27 17:28:58.709917+00 f t SUBTOTAL 42000.00 1 6302 \N +244302 2025-08-27 17:28:58.711724+00 2025-08-27 17:28:58.711733+00 f t DESCUENTO 0.00 2 6302 \N +244303 2025-08-27 17:28:58.713241+00 2025-08-27 17:28:58.713249+00 f t TOTAL 42000.00 3 6302 \N +244304 2025-08-27 17:28:58.714773+00 2025-08-27 17:28:58.71478+00 f t ADELANTO 9500.00 4 6302 \N +244309 2025-08-27 17:33:34.825079+00 2025-08-27 17:33:34.825089+00 f t SUBTOTAL 0.00 1 6303 \N +244310 2025-08-27 17:33:34.826617+00 2025-08-27 17:33:34.826627+00 f t DESCUENTO 0.00 2 6303 \N +244311 2025-08-27 17:33:34.828139+00 2025-08-27 17:33:34.828148+00 f t TOTAL 0.00 3 6303 \N +244312 2025-08-27 17:33:34.829494+00 2025-08-27 17:33:34.829502+00 f t ADELANTO 0.00 4 6303 \N +282617 2025-09-09 18:32:47.52682+00 2025-09-09 18:32:47.526831+00 f t SUBTOTAL 0.00 1 7213 \N +282618 2025-09-09 18:32:47.52873+00 2025-09-09 18:32:47.528737+00 f t DESCUENTO 0.00 2 7213 \N +282619 2025-09-09 18:32:47.529735+00 2025-09-09 18:32:47.52974+00 f t TOTAL 0.00 3 7213 \N +282620 2025-09-09 18:32:47.530607+00 2025-09-09 18:32:47.530612+00 f t ADELANTO 0.00 4 7213 \N +252653 2025-08-30 16:40:44.172212+00 2025-08-30 16:40:44.172224+00 f t SUBTOTAL 0.00 1 6509 \N +252654 2025-08-30 16:40:44.175149+00 2025-08-30 16:40:44.175162+00 f t DESCUENTO 0.00 2 6509 \N +252655 2025-08-30 16:40:44.17679+00 2025-08-30 16:40:44.176798+00 f t TOTAL 0.00 3 6509 \N +252656 2025-08-30 16:40:44.178374+00 2025-08-30 16:40:44.178383+00 f t ADELANTO 0.00 4 6509 \N +252897 2025-08-30 17:05:44.919659+00 2025-08-30 17:05:44.919672+00 f t SUBTOTAL 0.00 1 6519 \N +244365 2025-08-27 17:40:18.37343+00 2025-08-27 17:40:18.37344+00 f t SUBTOTAL 100700.00 1 6304 \N +244366 2025-08-27 17:40:18.375583+00 2025-08-27 17:40:18.375593+00 f t DESCUENTO 0.00 2 6304 \N +244367 2025-08-27 17:40:18.377107+00 2025-08-27 17:40:18.377118+00 f t TOTAL 100700.00 3 6304 \N +244368 2025-08-27 17:40:18.378594+00 2025-08-27 17:40:18.378602+00 f t ADELANTO 57200.00 4 6304 \N +252898 2025-08-30 17:05:44.921534+00 2025-08-30 17:05:44.921542+00 f t DESCUENTO 0.00 2 6519 \N +252899 2025-08-30 17:05:44.922968+00 2025-08-30 17:05:44.922976+00 f t TOTAL 0.00 3 6519 \N +252900 2025-08-30 17:05:44.924946+00 2025-08-30 17:05:44.924954+00 f t ADELANTO 0.00 4 6519 \N +259001 2025-09-01 18:44:00.336428+00 2025-09-01 18:44:00.336438+00 f t SUBTOTAL 0.00 1 6660 \N +259002 2025-09-01 18:44:00.337998+00 2025-09-01 18:44:00.338006+00 f t DESCUENTO 0.00 2 6660 \N +259003 2025-09-01 18:44:00.339462+00 2025-09-01 18:44:00.339469+00 f t TOTAL 0.00 3 6660 \N +259004 2025-09-01 18:44:00.340883+00 2025-09-01 18:44:00.34089+00 f t ADELANTO 0.00 4 6660 \N +247457 2025-08-28 19:41:21.538687+00 2025-08-28 19:41:21.538702+00 f t SUBTOTAL 0.00 1 6380 \N +247458 2025-08-28 19:41:21.541601+00 2025-08-28 19:41:21.541614+00 f t DESCUENTO 0.00 2 6380 \N +247459 2025-08-28 19:41:21.543941+00 2025-08-28 19:41:21.543955+00 f t TOTAL 0.00 3 6380 \N +247460 2025-08-28 19:41:21.545934+00 2025-08-28 19:41:21.545944+00 f t ADELANTO 0.00 4 6380 \N +247621 2025-08-28 21:37:19.734077+00 2025-08-28 21:37:19.734089+00 f t SUBTOTAL 0.00 1 6387 \N +247622 2025-08-28 21:37:19.735712+00 2025-08-28 21:37:19.73572+00 f t DESCUENTO 0.00 2 6387 \N +247623 2025-08-28 21:37:19.73736+00 2025-08-28 21:37:19.737367+00 f t TOTAL 0.00 3 6387 \N +247624 2025-08-28 21:37:19.738585+00 2025-08-28 21:37:19.738592+00 f t ADELANTO 0.00 4 6387 \N +247969 2025-08-29 01:27:43.998536+00 2025-08-29 01:27:43.998546+00 f t SUBTOTAL 0.00 1 6398 \N +244421 2025-08-27 17:47:04.81627+00 2025-08-27 17:47:04.816283+00 f t SUBTOTAL 42000.00 1 6305 \N +244422 2025-08-27 17:47:04.818369+00 2025-08-27 17:47:04.81838+00 f t DESCUENTO 0.00 2 6305 \N +244423 2025-08-27 17:47:04.820074+00 2025-08-27 17:47:04.820084+00 f t TOTAL 42000.00 3 6305 \N +244424 2025-08-27 17:47:04.821524+00 2025-08-27 17:47:04.821532+00 f t ADELANTO 9500.00 4 6305 \N +247970 2025-08-29 01:27:44.001217+00 2025-08-29 01:27:44.001226+00 f t DESCUENTO 0.00 2 6398 \N +247971 2025-08-29 01:27:44.00319+00 2025-08-29 01:27:44.0032+00 f t TOTAL 0.00 3 6398 \N +247972 2025-08-29 01:27:44.005055+00 2025-08-29 01:27:44.005067+00 f t ADELANTO 0.00 4 6398 \N +248089 2025-08-29 02:17:40.098846+00 2025-08-29 02:17:40.098859+00 f t SUBTOTAL 50000.00 1 6401 \N +248090 2025-08-29 02:17:40.107049+00 2025-08-29 02:17:40.107062+00 f t DESCUENTO 0.00 2 6401 \N +248091 2025-08-29 02:17:40.109363+00 2025-08-29 02:17:40.109374+00 f t TOTAL 50000.00 3 6401 \N +248092 2025-08-29 02:17:40.111424+00 2025-08-29 02:17:40.111433+00 f t ADELANTO 10000.00 4 6401 \N +244441 2025-08-27 17:56:05.639357+00 2025-08-27 17:56:05.639369+00 f t SUBTOTAL 94200.00 1 6261 \N +244442 2025-08-27 17:56:05.641887+00 2025-08-27 17:56:05.641896+00 f t DESCUENTO 0.00 2 6261 \N +244443 2025-08-27 17:56:05.64428+00 2025-08-27 17:56:05.64429+00 f t TOTAL 94200.00 3 6261 \N +244444 2025-08-27 17:56:05.647422+00 2025-08-27 17:56:05.647434+00 f t ADELANTO 56200.00 4 6261 \N +248325 2025-08-29 10:23:52.063301+00 2025-08-29 10:23:52.063311+00 f t SUBTOTAL 0.00 1 6408 \N +248326 2025-08-29 10:23:52.065151+00 2025-08-29 10:23:52.065158+00 f t DESCUENTO 0.00 2 6408 \N +248327 2025-08-29 10:23:52.07184+00 2025-08-29 10:23:52.071853+00 f t TOTAL 0.00 3 6408 \N +248328 2025-08-29 10:23:52.075588+00 2025-08-29 10:23:52.0756+00 f t ADELANTO 0.00 4 6408 \N +260093 2025-09-01 23:17:58.33176+00 2025-09-01 23:17:58.331771+00 f t SUBTOTAL 46000.00 1 6681 \N +260094 2025-09-01 23:17:58.333487+00 2025-09-01 23:17:58.333496+00 f t DESCUENTO 0.00 2 6681 \N +260095 2025-09-01 23:17:58.334772+00 2025-09-01 23:17:58.33478+00 f t TOTAL 46000.00 3 6681 \N +260096 2025-09-01 23:17:58.336022+00 2025-09-01 23:17:58.33603+00 f t ADELANTO 11000.00 4 6681 \N +244485 2025-08-27 18:23:51.438094+00 2025-08-27 18:23:51.438103+00 f t SUBTOTAL 49500.00 1 6306 \N +244486 2025-08-27 18:23:51.439659+00 2025-08-27 18:23:51.439665+00 f t DESCUENTO 0.00 2 6306 \N +244487 2025-08-27 18:23:51.440979+00 2025-08-27 18:23:51.440986+00 f t TOTAL 49500.00 3 6306 \N +244488 2025-08-27 18:23:51.442055+00 2025-08-27 18:23:51.442063+00 f t ADELANTO 11500.00 4 6306 \N +254937 2025-08-31 13:42:02.386604+00 2025-08-31 13:42:02.386614+00 f t SUBTOTAL 27500.00 1 6564 \N +254938 2025-08-31 13:42:02.389073+00 2025-08-31 13:42:02.389082+00 f t DESCUENTO 0.00 2 6564 \N +254939 2025-08-31 13:42:02.390425+00 2025-08-31 13:42:02.390431+00 f t TOTAL 27500.00 3 6564 \N +254940 2025-08-31 13:42:02.391802+00 2025-08-31 13:42:02.391811+00 f t ADELANTO 27500.00 4 6564 \N +244565 2025-08-27 18:32:26.93554+00 2025-08-27 18:32:26.935553+00 f t SUBTOTAL 64500.00 1 6307 \N +244566 2025-08-27 18:32:26.937649+00 2025-08-27 18:32:26.937657+00 f t DESCUENTO 0.00 2 6307 \N +244567 2025-08-27 18:32:26.939506+00 2025-08-27 18:32:26.939514+00 f t TOTAL 64500.00 3 6307 \N +244568 2025-08-27 18:32:26.94106+00 2025-08-27 18:32:26.941068+00 f t ADELANTO 17000.00 4 6307 \N +249661 2025-08-29 15:34:49.498395+00 2025-08-29 15:34:49.498409+00 f t SUBTOTAL 0.00 1 6434 \N +249662 2025-08-29 15:34:49.500507+00 2025-08-29 15:34:49.500515+00 f t DESCUENTO 0.00 2 6434 \N +249663 2025-08-29 15:34:49.50162+00 2025-08-29 15:34:49.501625+00 f t TOTAL 0.00 3 6434 \N +249664 2025-08-29 15:34:49.502615+00 2025-08-29 15:34:49.502621+00 f t ADELANTO 0.00 4 6434 \N +244585 2025-08-27 18:52:33.444859+00 2025-08-27 18:52:33.444869+00 f t SUBTOTAL 0.00 1 6308 \N +244586 2025-08-27 18:52:33.446791+00 2025-08-27 18:52:33.446798+00 f t DESCUENTO 0.00 2 6308 \N +244587 2025-08-27 18:52:33.44822+00 2025-08-27 18:52:33.448226+00 f t TOTAL 0.00 3 6308 \N +244588 2025-08-27 18:52:33.449197+00 2025-08-27 18:52:33.449205+00 f t ADELANTO 0.00 4 6308 \N +244593 2025-08-27 18:58:58.298554+00 2025-08-27 18:58:58.298564+00 f t SUBTOTAL 0.00 1 6309 \N +244594 2025-08-27 18:58:58.300458+00 2025-08-27 18:58:58.300467+00 f t DESCUENTO 0.00 2 6309 \N +244595 2025-08-27 18:58:58.302014+00 2025-08-27 18:58:58.302022+00 f t TOTAL 0.00 3 6309 \N +244596 2025-08-27 18:58:58.303513+00 2025-08-27 18:58:58.303521+00 f t ADELANTO 0.00 4 6309 \N +249861 2025-08-29 15:49:17.193725+00 2025-08-29 15:49:17.193738+00 f t SUBTOTAL 64500.00 1 6442 \N +249862 2025-08-29 15:49:17.196024+00 2025-08-29 15:49:17.196035+00 f t DESCUENTO 0.00 2 6442 \N +249863 2025-08-29 15:49:17.199832+00 2025-08-29 15:49:17.199843+00 f t TOTAL 64500.00 3 6442 \N +249864 2025-08-29 15:49:17.202454+00 2025-08-29 15:49:17.202463+00 f t ADELANTO 17000.00 4 6442 \N +258397 2025-09-01 15:26:32.583661+00 2025-09-01 15:26:32.583671+00 f t SUBTOTAL 70000.00 1 6643 \N +258398 2025-09-01 15:26:32.585441+00 2025-09-01 15:26:32.585448+00 f t DESCUENTO 0.00 2 6643 \N +244629 2025-08-27 19:03:30.471048+00 2025-08-27 19:03:30.471059+00 f t SUBTOTAL 0.00 1 6310 \N +244630 2025-08-27 19:03:30.473571+00 2025-08-27 19:03:30.473584+00 f t DESCUENTO 0.00 2 6310 \N +244631 2025-08-27 19:03:30.475315+00 2025-08-27 19:03:30.475323+00 f t TOTAL 0.00 3 6310 \N +244632 2025-08-27 19:03:30.476665+00 2025-08-27 19:03:30.476673+00 f t ADELANTO 0.00 4 6310 \N +258399 2025-09-01 15:26:32.586579+00 2025-09-01 15:26:32.586585+00 f t TOTAL 70000.00 3 6643 \N +258400 2025-09-01 15:26:32.587836+00 2025-09-01 15:26:32.587842+00 f t ADELANTO 19000.00 4 6643 \N +246833 2025-08-28 14:16:10.15866+00 2025-08-28 14:16:10.158674+00 f t SUBTOTAL 0.00 1 6361 \N +246834 2025-08-28 14:16:10.161468+00 2025-08-28 14:16:10.161481+00 f t DESCUENTO 0.00 2 6361 \N +244637 2025-08-27 19:14:57.46798+00 2025-08-27 19:14:57.46799+00 f t SUBTOTAL 0.00 1 6311 \N +244638 2025-08-27 19:14:57.470593+00 2025-08-27 19:14:57.470602+00 f t DESCUENTO 0.00 2 6311 \N +244639 2025-08-27 19:14:57.472119+00 2025-08-27 19:14:57.472126+00 f t TOTAL 0.00 3 6311 \N +244640 2025-08-27 19:14:57.473279+00 2025-08-27 19:14:57.473285+00 f t ADELANTO 0.00 4 6311 \N +246835 2025-08-28 14:16:10.163559+00 2025-08-28 14:16:10.163569+00 f t TOTAL 0.00 3 6361 \N +246836 2025-08-28 14:16:10.165354+00 2025-08-28 14:16:10.165366+00 f t ADELANTO 0.00 4 6361 \N +264581 2025-09-03 13:17:34.18095+00 2025-09-03 13:17:34.180963+00 f t SUBTOTAL 0.00 1 6799 \N +264582 2025-09-03 13:17:34.182884+00 2025-09-03 13:17:34.182895+00 f t DESCUENTO 0.00 2 6799 \N +264583 2025-09-03 13:17:34.184452+00 2025-09-03 13:17:34.184463+00 f t TOTAL 0.00 3 6799 \N +264584 2025-09-03 13:17:34.18599+00 2025-09-03 13:17:34.186+00 f t ADELANTO 0.00 4 6799 \N +247085 2025-08-28 17:42:18.829517+00 2025-08-28 17:42:18.82953+00 f t SUBTOTAL 0.00 1 6371 \N +247086 2025-08-28 17:42:18.831271+00 2025-08-28 17:42:18.831287+00 f t DESCUENTO 0.00 2 6371 \N +247087 2025-08-28 17:42:18.832619+00 2025-08-28 17:42:18.832627+00 f t TOTAL 0.00 3 6371 \N +247088 2025-08-28 17:42:18.833901+00 2025-08-28 17:42:18.833906+00 f t ADELANTO 0.00 4 6371 \N +244681 2025-08-27 19:57:14.608736+00 2025-08-27 19:57:14.608746+00 f t SUBTOTAL 49500.00 1 6312 \N +244682 2025-08-27 19:57:14.610958+00 2025-08-27 19:57:14.610967+00 f t DESCUENTO 0.00 2 6312 \N +244683 2025-08-27 19:57:14.612796+00 2025-08-27 19:57:14.612804+00 f t TOTAL 49500.00 3 6312 \N +244684 2025-08-27 19:57:14.614569+00 2025-08-27 19:57:14.614577+00 f t ADELANTO 11500.00 4 6312 \N +244689 2025-08-27 19:59:41.886354+00 2025-08-27 19:59:41.88637+00 f t SUBTOTAL 0.00 1 6313 \N +244690 2025-08-27 19:59:41.887983+00 2025-08-27 19:59:41.887991+00 f t DESCUENTO 0.00 2 6313 \N +244691 2025-08-27 19:59:41.889172+00 2025-08-27 19:59:41.889178+00 f t TOTAL 0.00 3 6313 \N +244692 2025-08-27 19:59:41.890212+00 2025-08-27 19:59:41.890218+00 f t ADELANTO 0.00 4 6313 \N +253509 2025-08-30 21:14:15.516138+00 2025-08-30 21:14:15.516147+00 f t SUBTOTAL 42000.00 1 6533 \N +253510 2025-08-30 21:14:15.518548+00 2025-08-30 21:14:15.518556+00 f t DESCUENTO 0.00 2 6533 \N +253511 2025-08-30 21:14:15.519926+00 2025-08-30 21:14:15.519933+00 f t TOTAL 42000.00 3 6533 \N +253512 2025-08-30 21:14:15.521223+00 2025-08-30 21:14:15.521229+00 f t ADELANTO 9500.00 4 6533 \N +244717 2025-08-27 20:04:16.149207+00 2025-08-27 20:04:16.149216+00 f t SUBTOTAL 42000.00 1 6314 \N +244718 2025-08-27 20:04:16.154409+00 2025-08-27 20:04:16.154419+00 f t DESCUENTO 0.00 2 6314 \N +244719 2025-08-27 20:04:16.156104+00 2025-08-27 20:04:16.156115+00 f t TOTAL 42000.00 3 6314 \N +244720 2025-08-27 20:04:16.157504+00 2025-08-27 20:04:16.157512+00 f t ADELANTO 9500.00 4 6314 \N +244725 2025-08-27 20:11:44.501084+00 2025-08-27 20:11:44.501098+00 f t SUBTOTAL 0.00 1 6315 \N +244726 2025-08-27 20:11:44.503404+00 2025-08-27 20:11:44.503417+00 f t DESCUENTO 0.00 2 6315 \N +244727 2025-08-27 20:11:44.505165+00 2025-08-27 20:11:44.505174+00 f t TOTAL 0.00 3 6315 \N +244728 2025-08-27 20:11:44.506764+00 2025-08-27 20:11:44.506771+00 f t ADELANTO 0.00 4 6315 \N +248033 2025-08-29 01:38:39.237326+00 2025-08-29 01:38:39.237334+00 f t SUBTOTAL 129500.00 1 6399 \N +248034 2025-08-29 01:38:39.239495+00 2025-08-29 01:38:39.239506+00 f t DESCUENTO 0.00 2 6399 \N +248035 2025-08-29 01:38:39.241061+00 2025-08-29 01:38:39.24107+00 f t TOTAL 129500.00 3 6399 \N +248036 2025-08-29 01:38:39.242541+00 2025-08-29 01:38:39.242549+00 f t ADELANTO 27000.00 4 6399 \N +244745 2025-08-27 20:50:11.930456+00 2025-08-27 20:50:11.930468+00 f t SUBTOTAL 0.00 1 6316 \N +244746 2025-08-27 20:50:11.933708+00 2025-08-27 20:50:11.933722+00 f t DESCUENTO 0.00 2 6316 \N +244747 2025-08-27 20:50:11.936097+00 2025-08-27 20:50:11.936112+00 f t TOTAL 0.00 3 6316 \N +244748 2025-08-27 20:50:11.938346+00 2025-08-27 20:50:11.938354+00 f t ADELANTO 0.00 4 6316 \N +244769 2025-08-27 21:09:35.648726+00 2025-08-27 21:09:35.648737+00 f t SUBTOTAL 0.00 1 6317 \N +244770 2025-08-27 21:09:35.650675+00 2025-08-27 21:09:35.650682+00 f t DESCUENTO 0.00 2 6317 \N +244771 2025-08-27 21:09:35.651864+00 2025-08-27 21:09:35.651871+00 f t TOTAL 0.00 3 6317 \N +244772 2025-08-27 21:09:35.652845+00 2025-08-27 21:09:35.652851+00 f t ADELANTO 0.00 4 6317 \N +244797 2025-08-27 22:06:03.60229+00 2025-08-27 22:06:03.602303+00 f t SUBTOTAL 42000.00 1 6318 \N +244798 2025-08-27 22:06:03.604832+00 2025-08-27 22:06:03.604845+00 f t DESCUENTO 0.00 2 6318 \N +244799 2025-08-27 22:06:03.606868+00 2025-08-27 22:06:03.60688+00 f t TOTAL 42000.00 3 6318 \N +244800 2025-08-27 22:06:03.609064+00 2025-08-27 22:06:03.609075+00 f t ADELANTO 9500.00 4 6318 \N +248721 2025-08-29 12:26:05.911685+00 2025-08-29 12:26:05.911699+00 f t SUBTOTAL 27500.00 1 6418 \N +248722 2025-08-29 12:26:05.914141+00 2025-08-29 12:26:05.914155+00 f t DESCUENTO 0.00 2 6418 \N +248723 2025-08-29 12:26:05.916271+00 2025-08-29 12:26:05.916282+00 f t TOTAL 27500.00 3 6418 \N +248724 2025-08-29 12:26:05.918292+00 2025-08-29 12:26:05.918306+00 f t ADELANTO 27500.00 4 6418 \N +254873 2025-08-31 13:19:56.623036+00 2025-08-31 13:19:56.623044+00 f t SUBTOTAL 50000.00 1 6562 \N +254874 2025-08-31 13:19:56.625235+00 2025-08-31 13:19:56.625241+00 f t DESCUENTO 0.00 2 6562 \N +254875 2025-08-31 13:19:56.627158+00 2025-08-31 13:19:56.627165+00 f t TOTAL 50000.00 3 6562 \N +254876 2025-08-31 13:19:56.628334+00 2025-08-31 13:19:56.62834+00 f t ADELANTO 10000.00 4 6562 \N +244873 2025-08-27 22:12:25.29008+00 2025-08-27 22:12:25.290089+00 f t SUBTOTAL 27500.00 1 6319 \N +244874 2025-08-27 22:12:25.291718+00 2025-08-27 22:12:25.291727+00 f t DESCUENTO 0.00 2 6319 \N +244875 2025-08-27 22:12:25.292841+00 2025-08-27 22:12:25.292847+00 f t TOTAL 27500.00 3 6319 \N +244876 2025-08-27 22:12:25.293836+00 2025-08-27 22:12:25.293842+00 f t ADELANTO 27500.00 4 6319 \N +249669 2025-08-29 15:39:19.277481+00 2025-08-29 15:39:19.277494+00 f t SUBTOTAL 0.00 1 6435 \N +249670 2025-08-29 15:39:19.279281+00 2025-08-29 15:39:19.279292+00 f t DESCUENTO 0.00 2 6435 \N +249671 2025-08-29 15:39:19.280736+00 2025-08-29 15:39:19.280746+00 f t TOTAL 0.00 3 6435 \N +249672 2025-08-29 15:39:19.282065+00 2025-08-29 15:39:19.282075+00 f t ADELANTO 0.00 4 6435 \N +249721 2025-08-29 15:44:35.302101+00 2025-08-29 15:44:35.302111+00 f t SUBTOTAL 111000.00 1 6438 \N +249722 2025-08-29 15:44:35.303969+00 2025-08-29 15:44:35.303977+00 f t DESCUENTO 0.00 2 6438 \N +249723 2025-08-29 15:44:35.305338+00 2025-08-29 15:44:35.305345+00 f t TOTAL 111000.00 3 6438 \N +249724 2025-08-29 15:44:35.30752+00 2025-08-29 15:44:35.307527+00 f t ADELANTO 23500.00 4 6438 \N +246553 2025-08-28 11:35:19.753365+00 2025-08-28 11:35:19.753374+00 f t SUBTOTAL 49500.00 1 6351 \N +246554 2025-08-28 11:35:19.755001+00 2025-08-28 11:35:19.755008+00 f t DESCUENTO 0.00 2 6351 \N +246555 2025-08-28 11:35:19.756216+00 2025-08-28 11:35:19.756222+00 f t TOTAL 49500.00 3 6351 \N +246556 2025-08-28 11:35:19.757366+00 2025-08-28 11:35:19.757373+00 f t ADELANTO 11500.00 4 6351 \N +246653 2025-08-28 12:45:03.552914+00 2025-08-28 12:45:03.552929+00 f t SUBTOTAL 0.00 1 6355 \N +246654 2025-08-28 12:45:03.557197+00 2025-08-28 12:45:03.557208+00 f t DESCUENTO 0.00 2 6355 \N +246655 2025-08-28 12:45:03.561585+00 2025-08-28 12:45:03.561599+00 f t TOTAL 0.00 3 6355 \N +246656 2025-08-28 12:45:03.570274+00 2025-08-28 12:45:03.57029+00 f t ADELANTO 0.00 4 6355 \N +264237 2025-09-03 10:57:18.413543+00 2025-09-03 10:57:18.413553+00 f t SUBTOTAL 55000.00 1 6792 \N +264238 2025-09-03 10:57:18.41561+00 2025-09-03 10:57:18.415622+00 f t DESCUENTO 0.00 2 6792 \N +264239 2025-09-03 10:57:18.417401+00 2025-09-03 10:57:18.41741+00 f t TOTAL 55000.00 3 6792 \N +264240 2025-09-03 10:57:18.418776+00 2025-09-03 10:57:18.418785+00 f t ADELANTO 11000.00 4 6792 \N +247093 2025-08-28 17:44:02.705319+00 2025-08-28 17:44:02.705334+00 f t SUBTOTAL 0.00 1 6372 \N +247094 2025-08-28 17:44:02.707847+00 2025-08-28 17:44:02.707858+00 f t DESCUENTO 0.00 2 6372 \N +247095 2025-08-28 17:44:02.709701+00 2025-08-28 17:44:02.70971+00 f t TOTAL 0.00 3 6372 \N +247096 2025-08-28 17:44:02.711815+00 2025-08-28 17:44:02.711827+00 f t ADELANTO 0.00 4 6372 \N +252821 2025-08-30 16:49:12.936096+00 2025-08-30 16:49:12.936106+00 f t SUBTOTAL 50000.00 1 6516 \N +252822 2025-08-30 16:49:12.937982+00 2025-08-30 16:49:12.937988+00 f t DESCUENTO 0.00 2 6516 \N +252823 2025-08-30 16:49:12.939119+00 2025-08-30 16:49:12.939125+00 f t TOTAL 50000.00 3 6516 \N +252824 2025-08-30 16:49:12.94025+00 2025-08-30 16:49:12.940257+00 f t ADELANTO 10000.00 4 6516 \N +247249 2025-08-28 19:11:05.580254+00 2025-08-28 19:11:05.580268+00 f t SUBTOTAL 0.00 1 6377 \N +247250 2025-08-28 19:11:05.582793+00 2025-08-28 19:11:05.582804+00 f t DESCUENTO 0.00 2 6377 \N +247251 2025-08-28 19:11:05.584513+00 2025-08-28 19:11:05.584524+00 f t TOTAL 0.00 3 6377 \N +244953 2025-08-27 22:40:03.758858+00 2025-08-27 22:40:03.758875+00 f t SUBTOTAL 50000.00 1 6321 \N +244954 2025-08-27 22:40:03.763623+00 2025-08-27 22:40:03.763639+00 f t DESCUENTO 0.00 2 6321 \N +244955 2025-08-27 22:40:03.778708+00 2025-08-27 22:40:03.778724+00 f t TOTAL 50000.00 3 6321 \N +244956 2025-08-27 22:40:03.781452+00 2025-08-27 22:40:03.781466+00 f t ADELANTO 10000.00 4 6321 \N +247252 2025-08-28 19:11:05.586091+00 2025-08-28 19:11:05.586099+00 f t ADELANTO 0.00 4 6377 \N +244965 2025-08-27 22:40:54.691944+00 2025-08-27 22:40:54.691953+00 f t SUBTOTAL 106500.00 1 6320 \N +244966 2025-08-27 22:40:54.693613+00 2025-08-27 22:40:54.693621+00 f t DESCUENTO 0.00 2 6320 \N +244967 2025-08-27 22:40:54.694724+00 2025-08-27 22:40:54.69473+00 f t TOTAL 106500.00 3 6320 \N +244968 2025-08-27 22:40:54.695789+00 2025-08-27 22:40:54.695795+00 f t ADELANTO 26500.00 4 6320 \N +244973 2025-08-27 22:45:14.827239+00 2025-08-27 22:45:14.827249+00 f t SUBTOTAL 0.00 1 6322 \N +244974 2025-08-27 22:45:14.828784+00 2025-08-27 22:45:14.828795+00 f t DESCUENTO 0.00 2 6322 \N +244975 2025-08-27 22:45:14.830101+00 2025-08-27 22:45:14.83011+00 f t TOTAL 0.00 3 6322 \N +244976 2025-08-27 22:45:14.831411+00 2025-08-27 22:45:14.831417+00 f t ADELANTO 0.00 4 6322 \N +253125 2025-08-30 18:04:03.709245+00 2025-08-30 18:04:03.709258+00 f t SUBTOTAL 50000.00 1 6521 \N +253126 2025-08-30 18:04:03.711893+00 2025-08-30 18:04:03.711908+00 f t DESCUENTO 0.00 2 6521 \N +253127 2025-08-30 18:04:03.714174+00 2025-08-30 18:04:03.714186+00 f t TOTAL 50000.00 3 6521 \N +253128 2025-08-30 18:04:03.716314+00 2025-08-30 18:04:03.716327+00 f t ADELANTO 10000.00 4 6521 \N +253969 2025-08-31 00:54:13.974074+00 2025-08-31 00:54:13.974086+00 f t SUBTOTAL 0.00 1 6545 \N +253970 2025-08-31 00:54:13.976581+00 2025-08-31 00:54:13.976589+00 f t DESCUENTO 0.00 2 6545 \N +253971 2025-08-31 00:54:13.978087+00 2025-08-31 00:54:13.978095+00 f t TOTAL 0.00 3 6545 \N +253972 2025-08-31 00:54:13.97947+00 2025-08-31 00:54:13.979478+00 f t ADELANTO 0.00 4 6545 \N +254405 2025-08-31 08:35:17.834625+00 2025-08-31 08:35:17.834634+00 f t SUBTOTAL 42000.00 1 6552 \N +254406 2025-08-31 08:35:17.836453+00 2025-08-31 08:35:17.83646+00 f t DESCUENTO 0.00 2 6552 \N +254407 2025-08-31 08:35:17.837599+00 2025-08-31 08:35:17.837607+00 f t TOTAL 42000.00 3 6552 \N +254408 2025-08-31 08:35:17.838627+00 2025-08-31 08:35:17.838633+00 f t ADELANTO 9500.00 4 6552 \N +254477 2025-08-31 11:27:23.401609+00 2025-08-31 11:27:23.401618+00 f t SUBTOTAL 50000.00 1 6554 \N +254478 2025-08-31 11:27:23.403507+00 2025-08-31 11:27:23.403514+00 f t DESCUENTO 0.00 2 6554 \N +254479 2025-08-31 11:27:23.404633+00 2025-08-31 11:27:23.404639+00 f t TOTAL 50000.00 3 6554 \N +254480 2025-08-31 11:27:23.405802+00 2025-08-31 11:27:23.405808+00 f t ADELANTO 10000.00 4 6554 \N +254677 2025-08-31 12:23:53.911184+00 2025-08-31 12:23:53.911196+00 f t SUBTOTAL 27500.00 1 6558 \N +254678 2025-08-31 12:23:53.913338+00 2025-08-31 12:23:53.913349+00 f t DESCUENTO 0.00 2 6558 \N +254679 2025-08-31 12:23:53.914641+00 2025-08-31 12:23:53.914649+00 f t TOTAL 27500.00 3 6558 \N +254680 2025-08-31 12:23:53.915988+00 2025-08-31 12:23:53.915996+00 f t ADELANTO 27500.00 4 6558 \N +255281 2025-08-31 15:37:05.98566+00 2025-08-31 15:37:05.98567+00 f t SUBTOTAL 68000.00 1 6565 \N +255282 2025-08-31 15:37:05.997471+00 2025-08-31 15:37:05.997481+00 f t DESCUENTO 0.00 2 6565 \N +255283 2025-08-31 15:37:05.999528+00 2025-08-31 15:37:05.999543+00 f t TOTAL 68000.00 3 6565 \N +255284 2025-08-31 15:37:06.002942+00 2025-08-31 15:37:06.002952+00 f t ADELANTO 13000.00 4 6565 \N +249377 2025-08-29 13:38:50.30433+00 2025-08-29 13:38:50.304344+00 f t SUBTOTAL 0.00 1 6426 \N +249378 2025-08-29 13:38:50.310015+00 2025-08-29 13:38:50.310026+00 f t DESCUENTO 0.00 2 6426 \N +249379 2025-08-29 13:38:50.312245+00 2025-08-29 13:38:50.312256+00 f t TOTAL 0.00 3 6426 \N +249380 2025-08-29 13:38:50.314186+00 2025-08-29 13:38:50.314198+00 f t ADELANTO 0.00 4 6426 \N +255657 2025-08-31 16:41:26.05367+00 2025-08-31 16:41:26.053679+00 f t SUBTOTAL 64500.00 1 6579 \N +255658 2025-08-31 16:41:26.0555+00 2025-08-31 16:41:26.055507+00 f t DESCUENTO 0.00 2 6579 \N +255659 2025-08-31 16:41:26.05676+00 2025-08-31 16:41:26.056775+00 f t TOTAL 64500.00 3 6579 \N +255660 2025-08-31 16:41:26.058101+00 2025-08-31 16:41:26.058107+00 f t ADELANTO 17000.00 4 6579 \N +249677 2025-08-29 15:39:57.972599+00 2025-08-29 15:39:57.972608+00 f t SUBTOTAL 0.00 1 6436 \N +249678 2025-08-29 15:39:57.974331+00 2025-08-29 15:39:57.974339+00 f t DESCUENTO 0.00 2 6436 \N +249679 2025-08-29 15:39:57.975618+00 2025-08-29 15:39:57.975625+00 f t TOTAL 0.00 3 6436 \N +249680 2025-08-29 15:39:57.976786+00 2025-08-29 15:39:57.976792+00 f t ADELANTO 0.00 4 6436 \N +256049 2025-08-31 19:57:22.346653+00 2025-08-31 19:57:22.346662+00 f t SUBTOTAL 0.00 1 6587 \N +256050 2025-08-31 19:57:22.348215+00 2025-08-31 19:57:22.348221+00 f t DESCUENTO 0.00 2 6587 \N +256051 2025-08-31 19:57:22.349441+00 2025-08-31 19:57:22.349448+00 f t TOTAL 0.00 3 6587 \N +256052 2025-08-31 19:57:22.350737+00 2025-08-31 19:57:22.350742+00 f t ADELANTO 0.00 4 6587 \N +245185 2025-08-27 22:52:02.794425+00 2025-08-27 22:52:02.794434+00 f t SUBTOTAL 336600.00 1 6323 \N +245186 2025-08-27 22:52:02.79636+00 2025-08-27 22:52:02.796368+00 f t DESCUENTO 0.00 2 6323 \N +245187 2025-08-27 22:52:02.798049+00 2025-08-27 22:52:02.798059+00 f t TOTAL 336600.00 3 6323 \N +245188 2025-08-27 22:52:02.800151+00 2025-08-27 22:52:02.800159+00 f t ADELANTO 161100.00 4 6323 \N +257893 2025-09-01 12:58:02.579164+00 2025-09-01 12:58:02.579174+00 f t SUBTOTAL 68000.00 1 6632 \N +257894 2025-09-01 12:58:02.581355+00 2025-09-01 12:58:02.581365+00 f t DESCUENTO 0.00 2 6632 \N +257895 2025-09-01 12:58:02.582825+00 2025-09-01 12:58:02.582833+00 f t TOTAL 68000.00 3 6632 \N +257896 2025-09-01 12:58:02.584125+00 2025-09-01 12:58:02.584132+00 f t ADELANTO 13000.00 4 6632 \N +245193 2025-08-27 23:13:07.953592+00 2025-08-27 23:13:07.953605+00 f t SUBTOTAL 0.00 1 6324 \N +245194 2025-08-27 23:13:07.955559+00 2025-08-27 23:13:07.955568+00 f t DESCUENTO 0.00 2 6324 \N +245195 2025-08-27 23:13:07.957187+00 2025-08-27 23:13:07.957196+00 f t TOTAL 0.00 3 6324 \N +245196 2025-08-27 23:13:07.958742+00 2025-08-27 23:13:07.958748+00 f t ADELANTO 0.00 4 6324 \N +246365 2025-08-28 08:27:01.848536+00 2025-08-28 08:27:01.848546+00 f t SUBTOTAL 42000.00 1 6347 \N +246366 2025-08-28 08:27:01.853001+00 2025-08-28 08:27:01.853014+00 f t DESCUENTO 0.00 2 6347 \N +246367 2025-08-28 08:27:01.855502+00 2025-08-28 08:27:01.855515+00 f t TOTAL 42000.00 3 6347 \N +246368 2025-08-28 08:27:01.857545+00 2025-08-28 08:27:01.857557+00 f t ADELANTO 9500.00 4 6347 \N +246561 2025-08-28 11:52:17.620561+00 2025-08-28 11:52:17.620574+00 f t SUBTOTAL 0.00 1 6352 \N +246562 2025-08-28 11:52:17.622025+00 2025-08-28 11:52:17.622035+00 f t DESCUENTO 0.00 2 6352 \N +246563 2025-08-28 11:52:17.623401+00 2025-08-28 11:52:17.623407+00 f t TOTAL 0.00 3 6352 \N +246564 2025-08-28 11:52:17.624676+00 2025-08-28 11:52:17.624683+00 f t ADELANTO 0.00 4 6352 \N +252429 2025-08-30 16:28:00.395726+00 2025-08-30 16:28:00.395735+00 f t SUBTOTAL 82200.00 1 6508 \N +252430 2025-08-30 16:28:00.403536+00 2025-08-30 16:28:00.403546+00 f t DESCUENTO 0.00 2 6508 \N +252431 2025-08-30 16:28:00.407926+00 2025-08-30 16:28:00.407935+00 f t TOTAL 82200.00 3 6508 \N +252432 2025-08-30 16:28:00.410424+00 2025-08-30 16:28:00.410433+00 f t ADELANTO 44200.00 4 6508 \N +245221 2025-08-27 23:23:56.617561+00 2025-08-27 23:23:56.61757+00 f t SUBTOTAL 64500.00 1 6325 \N +245222 2025-08-27 23:23:56.62001+00 2025-08-27 23:23:56.620021+00 f t DESCUENTO 0.00 2 6325 \N +245223 2025-08-27 23:23:56.621622+00 2025-08-27 23:23:56.621634+00 f t TOTAL 64500.00 3 6325 \N +245224 2025-08-27 23:23:56.623449+00 2025-08-27 23:23:56.623458+00 f t ADELANTO 17000.00 4 6325 \N +246753 2025-08-28 13:02:55.707054+00 2025-08-28 13:02:55.707065+00 f t SUBTOTAL 0.00 1 6359 \N +246754 2025-08-28 13:02:55.709381+00 2025-08-28 13:02:55.709389+00 f t DESCUENTO 0.00 2 6359 \N +246755 2025-08-28 13:02:55.710524+00 2025-08-28 13:02:55.710531+00 f t TOTAL 0.00 3 6359 \N +246756 2025-08-28 13:02:55.711595+00 2025-08-28 13:02:55.711601+00 f t ADELANTO 0.00 4 6359 \N +245229 2025-08-27 23:33:24.974277+00 2025-08-27 23:33:24.974291+00 f t SUBTOTAL 0.00 1 6326 \N +245230 2025-08-27 23:33:24.975941+00 2025-08-27 23:33:24.975951+00 f t DESCUENTO 0.00 2 6326 \N +245231 2025-08-27 23:33:24.977567+00 2025-08-27 23:33:24.977575+00 f t TOTAL 0.00 3 6326 \N +245232 2025-08-27 23:33:24.978888+00 2025-08-27 23:33:24.978896+00 f t ADELANTO 0.00 4 6326 \N +247101 2025-08-28 17:44:19.492536+00 2025-08-28 17:44:19.492548+00 f t SUBTOTAL 0.00 1 6373 \N +247102 2025-08-28 17:44:19.49449+00 2025-08-28 17:44:19.4945+00 f t DESCUENTO 0.00 2 6373 \N +247103 2025-08-28 17:44:19.496828+00 2025-08-28 17:44:19.496837+00 f t TOTAL 0.00 3 6373 \N +247104 2025-08-28 17:44:19.50049+00 2025-08-28 17:44:19.5005+00 f t ADELANTO 0.00 4 6373 \N +245265 2025-08-27 23:40:01.931493+00 2025-08-27 23:40:01.931508+00 f t SUBTOTAL 0.00 1 6327 \N +245266 2025-08-27 23:40:01.935329+00 2025-08-27 23:40:01.935344+00 f t DESCUENTO 0.00 2 6327 \N +245267 2025-08-27 23:40:01.938874+00 2025-08-27 23:40:01.938887+00 f t TOTAL 0.00 3 6327 \N +245268 2025-08-27 23:40:01.941566+00 2025-08-27 23:40:01.941578+00 f t ADELANTO 0.00 4 6327 \N +253297 2025-08-30 19:47:11.247571+00 2025-08-30 19:47:11.247583+00 f t SUBTOTAL 64500.00 1 6529 \N +253298 2025-08-30 19:47:11.250024+00 2025-08-30 19:47:11.250033+00 f t DESCUENTO 0.00 2 6529 \N +253299 2025-08-30 19:47:11.251503+00 2025-08-30 19:47:11.251512+00 f t TOTAL 64500.00 3 6529 \N +253300 2025-08-30 19:47:11.253801+00 2025-08-30 19:47:11.253811+00 f t ADELANTO 17000.00 4 6529 \N +253893 2025-08-30 23:46:23.607649+00 2025-08-30 23:46:23.607658+00 f t SUBTOTAL 42000.00 1 6542 \N +253894 2025-08-30 23:46:23.609639+00 2025-08-30 23:46:23.609646+00 f t DESCUENTO 0.00 2 6542 \N +253895 2025-08-30 23:46:23.611059+00 2025-08-30 23:46:23.611065+00 f t TOTAL 42000.00 3 6542 \N +253896 2025-08-30 23:46:23.612232+00 2025-08-30 23:46:23.612239+00 f t ADELANTO 9500.00 4 6542 \N +245349 2025-08-28 00:00:00.099528+00 2025-08-28 00:00:00.099538+00 f t SUBTOTAL 0.00 1 6328 \N +245350 2025-08-28 00:00:00.101708+00 2025-08-28 00:00:00.101717+00 f t DESCUENTO 0.00 2 6328 \N +245351 2025-08-28 00:00:00.108887+00 2025-08-28 00:00:00.108896+00 f t TOTAL 0.00 3 6328 \N +245352 2025-08-28 00:00:00.110946+00 2025-08-28 00:00:00.110954+00 f t ADELANTO 0.00 4 6328 \N +254333 2025-08-31 03:46:10.521915+00 2025-08-31 03:46:10.52198+00 f t SUBTOTAL 50000.00 1 6550 \N +254334 2025-08-31 03:46:10.52443+00 2025-08-31 03:46:10.52444+00 f t DESCUENTO 0.00 2 6550 \N +254335 2025-08-31 03:46:10.526178+00 2025-08-31 03:46:10.52619+00 f t TOTAL 50000.00 3 6550 \N +254336 2025-08-31 03:46:10.527754+00 2025-08-31 03:46:10.527759+00 f t ADELANTO 10000.00 4 6550 \N +245365 2025-08-28 00:00:23.12082+00 2025-08-28 00:00:23.120833+00 f t SUBTOTAL 0.00 1 6330 \N +245366 2025-08-28 00:00:23.134677+00 2025-08-28 00:00:23.134691+00 f t DESCUENTO 0.00 2 6330 \N +245367 2025-08-28 00:00:23.137591+00 2025-08-28 00:00:23.137604+00 f t TOTAL 0.00 3 6330 \N +245368 2025-08-28 00:00:23.140163+00 2025-08-28 00:00:23.140176+00 f t ADELANTO 0.00 4 6330 \N +249385 2025-08-29 14:01:14.930082+00 2025-08-29 14:01:14.930096+00 f t SUBTOTAL 0.00 1 6428 \N +249386 2025-08-29 14:01:14.932149+00 2025-08-29 14:01:14.932161+00 f t DESCUENTO 0.00 2 6428 \N +249387 2025-08-29 14:01:14.933957+00 2025-08-29 14:01:14.933969+00 f t TOTAL 0.00 3 6428 \N +249388 2025-08-29 14:01:14.935921+00 2025-08-29 14:01:14.935933+00 f t ADELANTO 0.00 4 6428 \N +249441 2025-08-29 15:10:21.663105+00 2025-08-29 15:10:21.663118+00 f t SUBTOTAL 49700.00 1 6431 \N +249442 2025-08-29 15:10:21.66532+00 2025-08-29 15:10:21.66533+00 f t DESCUENTO 0.00 2 6431 \N +249443 2025-08-29 15:10:21.667073+00 2025-08-29 15:10:21.667085+00 f t TOTAL 49700.00 3 6431 \N +249444 2025-08-29 15:10:21.668649+00 2025-08-29 15:10:21.66866+00 f t ADELANTO 11700.00 4 6431 \N +245449 2025-08-28 00:03:16.528722+00 2025-08-28 00:03:16.528732+00 f t SUBTOTAL 0.00 1 6331 \N +245450 2025-08-28 00:03:16.530684+00 2025-08-28 00:03:16.530691+00 f t DESCUENTO 0.00 2 6331 \N +245451 2025-08-28 00:03:16.532022+00 2025-08-28 00:03:16.532029+00 f t TOTAL 0.00 3 6331 \N +245452 2025-08-28 00:03:16.533205+00 2025-08-28 00:03:16.533211+00 f t ADELANTO 0.00 4 6331 \N +249685 2025-08-29 15:42:38.284565+00 2025-08-29 15:42:38.284575+00 f t SUBTOTAL 0.00 1 6437 \N +249686 2025-08-29 15:42:38.289792+00 2025-08-29 15:42:38.289802+00 f t DESCUENTO 0.00 2 6437 \N +249687 2025-08-29 15:42:38.291948+00 2025-08-29 15:42:38.291956+00 f t TOTAL 0.00 3 6437 \N +249688 2025-08-29 15:42:38.293565+00 2025-08-29 15:42:38.293573+00 f t ADELANTO 0.00 4 6437 \N +245469 2025-08-28 00:04:15.324806+00 2025-08-28 00:04:15.324815+00 f t SUBTOTAL 68000.00 1 6329 \N +245470 2025-08-28 00:04:15.326582+00 2025-08-28 00:04:15.32659+00 f t DESCUENTO 0.00 2 6329 \N +245471 2025-08-28 00:04:15.330987+00 2025-08-28 00:04:15.330998+00 f t TOTAL 68000.00 3 6329 \N +245472 2025-08-28 00:04:15.332616+00 2025-08-28 00:04:15.332624+00 f t ADELANTO 13000.00 4 6329 \N +252061 2025-08-30 15:47:05.708026+00 2025-08-30 15:47:05.708038+00 f t SUBTOTAL 129500.00 1 6500 \N +252062 2025-08-30 15:47:05.710859+00 2025-08-30 15:47:05.710872+00 f t DESCUENTO 0.00 2 6500 \N +252063 2025-08-30 15:47:05.713459+00 2025-08-30 15:47:05.713471+00 f t TOTAL 129500.00 3 6500 \N +252064 2025-08-30 15:47:05.715698+00 2025-08-30 15:47:05.71571+00 f t ADELANTO 27000.00 4 6500 \N +252269 2025-08-30 16:23:41.962867+00 2025-08-30 16:23:41.962879+00 f t SUBTOTAL 68000.00 1 6506 \N +252270 2025-08-30 16:23:41.969335+00 2025-08-30 16:23:41.969345+00 f t DESCUENTO 0.00 2 6506 \N +252271 2025-08-30 16:23:41.971191+00 2025-08-30 16:23:41.971199+00 f t TOTAL 68000.00 3 6506 \N +252272 2025-08-30 16:23:41.972917+00 2025-08-30 16:23:41.972923+00 f t ADELANTO 13000.00 4 6506 \N +276489 2025-09-08 10:28:26.962616+00 2025-09-08 10:28:26.962626+00 f t SUBTOTAL 46000.00 1 7090 \N +276490 2025-09-08 10:28:26.964596+00 2025-09-08 10:28:26.964603+00 f t DESCUENTO 0.00 2 7090 \N +276491 2025-09-08 10:28:26.965638+00 2025-09-08 10:28:26.965643+00 f t TOTAL 46000.00 3 7090 \N +276492 2025-09-08 10:28:26.966971+00 2025-09-08 10:28:26.966977+00 f t ADELANTO 11000.00 4 7090 \N +258217 2025-09-01 15:07:40.627196+00 2025-09-01 15:07:40.62721+00 f t SUBTOTAL 70000.00 1 6639 \N +258218 2025-09-01 15:07:40.629423+00 2025-09-01 15:07:40.629435+00 f t DESCUENTO 0.00 2 6639 \N +258219 2025-09-01 15:07:40.630943+00 2025-09-01 15:07:40.630953+00 f t TOTAL 70000.00 3 6639 \N +258220 2025-09-01 15:07:40.632425+00 2025-09-01 15:07:40.632434+00 f t ADELANTO 19000.00 4 6639 \N +247109 2025-08-28 17:46:03.562235+00 2025-08-28 17:46:03.56225+00 f t SUBTOTAL 0.00 1 6374 \N +247110 2025-08-28 17:46:03.569853+00 2025-08-28 17:46:03.569863+00 f t DESCUENTO 0.00 2 6374 \N +247111 2025-08-28 17:46:03.573541+00 2025-08-28 17:46:03.573551+00 f t TOTAL 0.00 3 6374 \N +247112 2025-08-28 17:46:03.575593+00 2025-08-28 17:46:03.575604+00 f t ADELANTO 0.00 4 6374 \N +253213 2025-08-30 18:57:15.889286+00 2025-08-30 18:57:15.889296+00 f t SUBTOTAL 42000.00 1 6525 \N +253214 2025-08-30 18:57:15.891099+00 2025-08-30 18:57:15.891109+00 f t DESCUENTO 0.00 2 6525 \N +253215 2025-08-30 18:57:15.892712+00 2025-08-30 18:57:15.892722+00 f t TOTAL 42000.00 3 6525 \N +253216 2025-08-30 18:57:15.894205+00 2025-08-30 18:57:15.894215+00 f t ADELANTO 9500.00 4 6525 \N +253825 2025-08-30 23:34:30.959742+00 2025-08-30 23:34:30.959755+00 f t SUBTOTAL 50000.00 1 6541 \N +253826 2025-08-30 23:34:30.961706+00 2025-08-30 23:34:30.961717+00 f t DESCUENTO 0.00 2 6541 \N +253827 2025-08-30 23:34:30.96319+00 2025-08-30 23:34:30.9632+00 f t TOTAL 50000.00 3 6541 \N +253828 2025-08-30 23:34:30.964551+00 2025-08-30 23:34:30.96456+00 f t ADELANTO 10000.00 4 6541 \N +253901 2025-08-30 23:53:13.825403+00 2025-08-30 23:53:13.825412+00 f t SUBTOTAL 0.00 1 6543 \N +253902 2025-08-30 23:53:13.826888+00 2025-08-30 23:53:13.826896+00 f t DESCUENTO 0.00 2 6543 \N +253903 2025-08-30 23:53:13.828194+00 2025-08-30 23:53:13.828201+00 f t TOTAL 0.00 3 6543 \N +253904 2025-08-30 23:53:13.829407+00 2025-08-30 23:53:13.829415+00 f t ADELANTO 0.00 4 6543 \N +259629 2025-09-01 21:27:25.414115+00 2025-09-01 21:27:25.414125+00 f t SUBTOTAL 75000.00 1 6672 \N +259630 2025-09-01 21:27:25.416521+00 2025-09-01 21:27:25.416529+00 f t DESCUENTO 0.00 2 6672 \N +259631 2025-09-01 21:27:25.417899+00 2025-09-01 21:27:25.417906+00 f t TOTAL 75000.00 3 6672 \N +259632 2025-09-01 21:27:25.419852+00 2025-09-01 21:27:25.419859+00 f t ADELANTO 15000.00 4 6672 \N +248461 2025-08-29 11:29:39.031383+00 2025-08-29 11:29:39.031393+00 f t SUBTOTAL 82200.00 1 6412 \N +248462 2025-08-29 11:29:39.033081+00 2025-08-29 11:29:39.033088+00 f t DESCUENTO 0.00 2 6412 \N +248463 2025-08-29 11:29:39.034406+00 2025-08-29 11:29:39.034413+00 f t TOTAL 82200.00 3 6412 \N +248464 2025-08-29 11:29:39.035556+00 2025-08-29 11:29:39.035562+00 f t ADELANTO 44200.00 4 6412 \N +245621 2025-08-28 00:09:50.049579+00 2025-08-28 00:09:50.049588+00 f t SUBTOTAL 216000.00 1 6332 \N +245622 2025-08-28 00:09:50.051334+00 2025-08-28 00:09:50.051342+00 f t DESCUENTO 0.00 2 6332 \N +245623 2025-08-28 00:09:50.053005+00 2025-08-28 00:09:50.053014+00 f t TOTAL 216000.00 3 6332 \N +245624 2025-08-28 00:09:50.05453+00 2025-08-28 00:09:50.054537+00 f t ADELANTO 57000.00 4 6332 \N +248733 2025-08-29 12:26:32.075423+00 2025-08-29 12:26:32.075433+00 f t SUBTOTAL 0.00 1 6420 \N +248734 2025-08-29 12:26:32.078024+00 2025-08-29 12:26:32.078034+00 f t DESCUENTO 0.00 2 6420 \N +248735 2025-08-29 12:26:32.079815+00 2025-08-29 12:26:32.079826+00 f t TOTAL 0.00 3 6420 \N +248736 2025-08-29 12:26:32.081627+00 2025-08-29 12:26:32.081638+00 f t ADELANTO 0.00 4 6420 \N +254685 2025-08-31 12:27:39.715741+00 2025-08-31 12:27:39.71575+00 f t SUBTOTAL 0.00 1 6559 \N +254686 2025-08-31 12:27:39.716915+00 2025-08-31 12:27:39.716921+00 f t DESCUENTO 0.00 2 6559 \N +254687 2025-08-31 12:27:39.717925+00 2025-08-31 12:27:39.71793+00 f t TOTAL 0.00 3 6559 \N +254688 2025-08-31 12:27:39.718866+00 2025-08-31 12:27:39.718873+00 f t ADELANTO 0.00 4 6559 \N +260557 2025-09-02 02:24:11.807863+00 2025-09-02 02:24:11.807874+00 f t SUBTOTAL 0.00 1 6691 \N +260558 2025-09-02 02:24:11.809734+00 2025-09-02 02:24:11.809742+00 f t DESCUENTO 0.00 2 6691 \N +260559 2025-09-02 02:24:11.810976+00 2025-09-02 02:24:11.810984+00 f t TOTAL 0.00 3 6691 \N +260560 2025-09-02 02:24:11.812049+00 2025-09-02 02:24:11.812054+00 f t ADELANTO 0.00 4 6691 \N +245661 2025-08-28 00:56:43.90791+00 2025-08-28 00:56:43.907923+00 f t SUBTOTAL 50000.00 1 6333 \N +245662 2025-08-28 00:56:43.910542+00 2025-08-28 00:56:43.910553+00 f t DESCUENTO 0.00 2 6333 \N +245663 2025-08-28 00:56:43.91227+00 2025-08-28 00:56:43.912281+00 f t TOTAL 50000.00 3 6333 \N +245664 2025-08-28 00:56:43.913739+00 2025-08-28 00:56:43.913748+00 f t ADELANTO 10000.00 4 6333 \N +245689 2025-08-28 01:02:10.321701+00 2025-08-28 01:02:10.321712+00 f t SUBTOTAL 0.00 1 6334 \N +245690 2025-08-28 01:02:10.32466+00 2025-08-28 01:02:10.324671+00 f t DESCUENTO 0.00 2 6334 \N +245691 2025-08-28 01:02:10.326807+00 2025-08-28 01:02:10.326816+00 f t TOTAL 0.00 3 6334 \N +245692 2025-08-28 01:02:10.329+00 2025-08-28 01:02:10.329011+00 f t ADELANTO 0.00 4 6334 \N +261181 2025-09-02 13:13:20.018745+00 2025-09-02 13:13:20.018753+00 f t SUBTOTAL 46000.00 1 6711 \N +261182 2025-09-02 13:13:20.020431+00 2025-09-02 13:13:20.020437+00 f t DESCUENTO 0.00 2 6711 \N +261183 2025-09-02 13:13:20.021669+00 2025-09-02 13:13:20.021675+00 f t TOTAL 46000.00 3 6711 \N +249393 2025-08-29 14:07:39.268797+00 2025-08-29 14:07:39.268807+00 f t SUBTOTAL 0.00 1 6429 \N +249394 2025-08-29 14:07:39.270806+00 2025-08-29 14:07:39.270814+00 f t DESCUENTO 0.00 2 6429 \N +249395 2025-08-29 14:07:39.272482+00 2025-08-29 14:07:39.27249+00 f t TOTAL 0.00 3 6429 \N +249396 2025-08-29 14:07:39.27394+00 2025-08-29 14:07:39.273952+00 f t ADELANTO 0.00 4 6429 \N +261184 2025-09-02 13:13:20.023272+00 2025-09-02 13:13:20.023282+00 f t ADELANTO 11000.00 4 6711 \N +245733 2025-08-28 01:13:33.740421+00 2025-08-28 01:13:33.74043+00 f t SUBTOTAL 42000.00 1 6335 \N +245734 2025-08-28 01:13:33.742088+00 2025-08-28 01:13:33.742094+00 f t DESCUENTO 0.00 2 6335 \N +245735 2025-08-28 01:13:33.743508+00 2025-08-28 01:13:33.743515+00 f t TOTAL 42000.00 3 6335 \N +245736 2025-08-28 01:13:33.744667+00 2025-08-28 01:13:33.744672+00 f t ADELANTO 9500.00 4 6335 \N +245761 2025-08-28 01:43:20.440406+00 2025-08-28 01:43:20.440415+00 f t SUBTOTAL 42000.00 1 6336 \N +245762 2025-08-28 01:43:20.442419+00 2025-08-28 01:43:20.44243+00 f t DESCUENTO 0.00 2 6336 \N +245763 2025-08-28 01:43:20.44412+00 2025-08-28 01:43:20.444126+00 f t TOTAL 42000.00 3 6336 \N +245764 2025-08-28 01:43:20.445267+00 2025-08-28 01:43:20.445275+00 f t ADELANTO 9500.00 4 6336 \N +246257 2025-08-28 03:29:07.670523+00 2025-08-28 03:29:07.670533+00 f t SUBTOTAL 49500.00 1 6344 \N +246258 2025-08-28 03:29:07.672529+00 2025-08-28 03:29:07.672537+00 f t DESCUENTO 0.00 2 6344 \N +246259 2025-08-28 03:29:07.674114+00 2025-08-28 03:29:07.674121+00 f t TOTAL 49500.00 3 6344 \N +246260 2025-08-28 03:29:07.675522+00 2025-08-28 03:29:07.675528+00 f t ADELANTO 11500.00 4 6344 \N +346821 2025-10-02 19:25:41.658539+00 2025-10-02 19:25:41.658548+00 f t SUBTOTAL 0.00 1 8736 \N +245785 2025-08-28 02:01:36.246806+00 2025-08-28 02:01:36.246815+00 f t SUBTOTAL 0.00 1 6338 \N +245786 2025-08-28 02:01:36.248475+00 2025-08-28 02:01:36.248484+00 f t DESCUENTO 0.00 2 6338 \N +245787 2025-08-28 02:01:36.25012+00 2025-08-28 02:01:36.250127+00 f t TOTAL 0.00 3 6338 \N +245788 2025-08-28 02:01:36.251379+00 2025-08-28 02:01:36.251385+00 f t ADELANTO 0.00 4 6338 \N +258321 2025-09-01 15:21:57.23973+00 2025-09-01 15:21:57.239739+00 f t SUBTOTAL 68000.00 1 6642 \N +258322 2025-09-01 15:21:57.241689+00 2025-09-01 15:21:57.241697+00 f t DESCUENTO 0.00 2 6642 \N +258323 2025-09-01 15:21:57.242921+00 2025-09-01 15:21:57.242926+00 f t TOTAL 68000.00 3 6642 \N +258324 2025-09-01 15:21:57.244139+00 2025-09-01 15:21:57.244144+00 f t ADELANTO 13000.00 4 6642 \N +247017 2025-08-28 16:35:23.88495+00 2025-08-28 16:35:23.884962+00 f t SUBTOTAL 64500.00 1 6367 \N +247018 2025-08-28 16:35:23.887018+00 2025-08-28 16:35:23.887025+00 f t DESCUENTO 0.00 2 6367 \N +247019 2025-08-28 16:35:23.888499+00 2025-08-28 16:35:23.888506+00 f t TOTAL 64500.00 3 6367 \N +247020 2025-08-28 16:35:23.889646+00 2025-08-28 16:35:23.889652+00 f t ADELANTO 17000.00 4 6367 \N +245829 2025-08-28 02:02:52.282154+00 2025-08-28 02:02:52.282165+00 f t SUBTOTAL 0.00 1 6337 \N +245830 2025-08-28 02:02:52.284552+00 2025-08-28 02:02:52.284566+00 f t DESCUENTO 0.00 2 6337 \N +245831 2025-08-28 02:02:52.286666+00 2025-08-28 02:02:52.286678+00 f t TOTAL 0.00 3 6337 \N +245832 2025-08-28 02:02:52.288625+00 2025-08-28 02:02:52.288634+00 f t ADELANTO 0.00 4 6337 \N +247861 2025-08-29 00:03:05.816489+00 2025-08-29 00:03:05.816503+00 f t SUBTOTAL 0.00 1 6394 \N +247862 2025-08-29 00:03:05.819492+00 2025-08-29 00:03:05.819506+00 f t DESCUENTO 0.00 2 6394 \N +247863 2025-08-29 00:03:05.821535+00 2025-08-29 00:03:05.821547+00 f t TOTAL 0.00 3 6394 \N +247864 2025-08-29 00:03:05.823542+00 2025-08-29 00:03:05.823554+00 f t ADELANTO 0.00 4 6394 \N +253381 2025-08-30 20:21:17.788844+00 2025-08-30 20:21:17.788855+00 f t SUBTOTAL 50000.00 1 6531 \N +253382 2025-08-30 20:21:17.791109+00 2025-08-30 20:21:17.791117+00 f t DESCUENTO 0.00 2 6531 \N +253383 2025-08-30 20:21:17.7924+00 2025-08-30 20:21:17.792406+00 f t TOTAL 50000.00 3 6531 \N +253384 2025-08-30 20:21:17.79332+00 2025-08-30 20:21:17.793326+00 f t ADELANTO 10000.00 4 6531 \N +260193 2025-09-01 23:52:11.685976+00 2025-09-01 23:52:11.685985+00 f t SUBTOTAL 46000.00 1 6685 \N +260194 2025-09-01 23:52:11.687708+00 2025-09-01 23:52:11.687716+00 f t DESCUENTO 0.00 2 6685 \N +260195 2025-09-01 23:52:11.689104+00 2025-09-01 23:52:11.689111+00 f t TOTAL 46000.00 3 6685 \N +260196 2025-09-01 23:52:11.690162+00 2025-09-01 23:52:11.690168+00 f t ADELANTO 11000.00 4 6685 \N +245917 2025-08-28 02:33:53.29142+00 2025-08-28 02:33:53.29143+00 f t SUBTOTAL 42000.00 1 6339 \N +245918 2025-08-28 02:33:53.29332+00 2025-08-28 02:33:53.29333+00 f t DESCUENTO 0.00 2 6339 \N +245919 2025-08-28 02:33:53.294689+00 2025-08-28 02:33:53.294696+00 f t TOTAL 42000.00 3 6339 \N +245920 2025-08-28 02:33:53.296147+00 2025-08-28 02:33:53.296157+00 f t ADELANTO 9500.00 4 6339 \N +248625 2025-08-29 12:12:55.478425+00 2025-08-29 12:12:55.478436+00 f t SUBTOTAL 111000.00 1 6416 \N +248626 2025-08-29 12:12:55.480434+00 2025-08-29 12:12:55.480444+00 f t DESCUENTO 0.00 2 6416 \N +248627 2025-08-29 12:12:55.481971+00 2025-08-29 12:12:55.481981+00 f t TOTAL 111000.00 3 6416 \N +248628 2025-08-29 12:12:55.483536+00 2025-08-29 12:12:55.483543+00 f t ADELANTO 23500.00 4 6416 \N +260421 2025-09-02 01:57:25.878587+00 2025-09-02 01:57:25.878598+00 f t SUBTOTAL 0.00 1 6689 \N +260422 2025-09-02 01:57:25.880837+00 2025-09-02 01:57:25.880845+00 f t DESCUENTO 0.00 2 6689 \N +260423 2025-09-02 01:57:25.882105+00 2025-09-02 01:57:25.882112+00 f t TOTAL 0.00 3 6689 \N +260424 2025-09-02 01:57:25.88331+00 2025-09-02 01:57:25.883316+00 f t ADELANTO 0.00 4 6689 \N +260565 2025-09-02 02:27:39.093935+00 2025-09-02 02:27:39.093945+00 f t SUBTOTAL 0.00 1 6692 \N +260566 2025-09-02 02:27:39.095302+00 2025-09-02 02:27:39.095309+00 f t DESCUENTO 0.00 2 6692 \N +260567 2025-09-02 02:27:39.096236+00 2025-09-02 02:27:39.096242+00 f t TOTAL 0.00 3 6692 \N +260568 2025-09-02 02:27:39.097374+00 2025-09-02 02:27:39.097379+00 f t ADELANTO 0.00 4 6692 \N +249189 2025-08-29 13:35:26.672039+00 2025-08-29 13:35:26.67205+00 f t SUBTOTAL 148000.00 1 6425 \N +249190 2025-08-29 13:35:26.673986+00 2025-08-29 13:35:26.673994+00 f t DESCUENTO 0.00 2 6425 \N +249191 2025-08-29 13:35:26.67544+00 2025-08-29 13:35:26.675448+00 f t TOTAL 148000.00 3 6425 \N +249192 2025-08-29 13:35:26.676746+00 2025-08-29 13:35:26.676752+00 f t ADELANTO 30000.00 4 6425 \N +249401 2025-08-29 14:47:27.418929+00 2025-08-29 14:47:27.418944+00 f t SUBTOTAL 0.00 1 6430 \N +249402 2025-08-29 14:47:27.421136+00 2025-08-29 14:47:27.421148+00 f t DESCUENTO 0.00 2 6430 \N +249403 2025-08-29 14:47:27.42294+00 2025-08-29 14:47:27.422952+00 f t TOTAL 0.00 3 6430 \N +249404 2025-08-29 14:47:27.424677+00 2025-08-29 14:47:27.424688+00 f t ADELANTO 0.00 4 6430 \N +261189 2025-09-02 13:48:21.821754+00 2025-09-02 13:48:21.821764+00 f t SUBTOTAL 0.00 1 6712 \N +261190 2025-09-02 13:48:21.824039+00 2025-09-02 13:48:21.82405+00 f t DESCUENTO 0.00 2 6712 \N +261191 2025-09-02 13:48:21.82535+00 2025-09-02 13:48:21.825355+00 f t TOTAL 0.00 3 6712 \N +261192 2025-09-02 13:48:21.826531+00 2025-09-02 13:48:21.826538+00 f t ADELANTO 0.00 4 6712 \N +255225 2025-08-31 15:33:01.598166+00 2025-08-31 15:33:01.598175+00 f t SUBTOTAL 50000.00 1 6571 \N +255226 2025-08-31 15:33:01.600203+00 2025-08-31 15:33:01.600211+00 f t DESCUENTO 0.00 2 6571 \N +255227 2025-08-31 15:33:01.601604+00 2025-08-31 15:33:01.601611+00 f t TOTAL 50000.00 3 6571 \N +255228 2025-08-31 15:33:01.602727+00 2025-08-31 15:33:01.602735+00 f t ADELANTO 10000.00 4 6571 \N +261285 2025-09-02 15:00:18.202363+00 2025-09-02 15:00:18.202377+00 f t SUBTOTAL 95000.00 1 6716 \N +261286 2025-09-02 15:00:18.208836+00 2025-09-02 15:00:18.208851+00 f t DESCUENTO 0.00 2 6716 \N +261287 2025-09-02 15:00:18.217467+00 2025-09-02 15:00:18.217482+00 f t TOTAL 95000.00 3 6716 \N +261288 2025-09-02 15:00:18.220892+00 2025-09-02 15:00:18.220905+00 f t ADELANTO 10000.00 4 6716 \N +255601 2025-08-31 16:09:59.216315+00 2025-08-31 16:09:59.216324+00 f t SUBTOTAL 68000.00 1 6577 \N +255602 2025-08-31 16:09:59.217997+00 2025-08-31 16:09:59.218006+00 f t DESCUENTO 0.00 2 6577 \N +246029 2025-08-28 02:36:10.561189+00 2025-08-28 02:36:10.561203+00 f t SUBTOTAL 0.00 1 6340 \N +246030 2025-08-28 02:36:10.564208+00 2025-08-28 02:36:10.564217+00 f t DESCUENTO 0.00 2 6340 \N +246031 2025-08-28 02:36:10.566327+00 2025-08-28 02:36:10.56634+00 f t TOTAL 0.00 3 6340 \N +246032 2025-08-28 02:36:10.570022+00 2025-08-28 02:36:10.570036+00 f t ADELANTO 0.00 4 6340 \N +255603 2025-08-31 16:09:59.219569+00 2025-08-31 16:09:59.219577+00 f t TOTAL 68000.00 3 6577 \N +255604 2025-08-31 16:09:59.220692+00 2025-08-31 16:09:59.220701+00 f t ADELANTO 13000.00 4 6577 \N +246037 2025-08-28 02:45:56.343645+00 2025-08-28 02:45:56.343655+00 f t SUBTOTAL 0.00 1 6341 \N +246038 2025-08-28 02:45:56.345532+00 2025-08-28 02:45:56.345545+00 f t DESCUENTO 0.00 2 6341 \N +246039 2025-08-28 02:45:56.347261+00 2025-08-28 02:45:56.347268+00 f t TOTAL 0.00 3 6341 \N +246040 2025-08-28 02:45:56.348626+00 2025-08-28 02:45:56.348636+00 f t ADELANTO 0.00 4 6341 \N +338861 2025-09-29 20:06:47.729879+00 2025-09-29 20:06:47.729889+00 f t SUBTOTAL 54000.00 1 8543 \N +289217 2025-09-12 00:17:38.785252+00 2025-09-12 00:17:38.785264+00 f t SUBTOTAL 0.00 1 7382 \N +302857 2025-09-17 20:30:36.657402+00 2025-09-17 20:30:36.657414+00 f t SUBTOTAL 0.00 1 7691 \N +302858 2025-09-17 20:30:36.659423+00 2025-09-17 20:30:36.659433+00 f t DESCUENTO 0.00 2 7691 \N +264589 2025-09-03 13:22:11.870959+00 2025-09-03 13:22:11.870968+00 f t SUBTOTAL 0.00 1 6800 \N +258681 2025-09-01 17:36:43.391486+00 2025-09-01 17:36:43.391498+00 f t SUBTOTAL 99700.00 1 6652 \N +258682 2025-09-01 17:36:43.393555+00 2025-09-01 17:36:43.393567+00 f t DESCUENTO 0.00 2 6652 \N +258683 2025-09-01 17:36:43.395066+00 2025-09-01 17:36:43.395077+00 f t TOTAL 99700.00 3 6652 \N +258684 2025-09-01 17:36:43.396578+00 2025-09-01 17:36:43.396586+00 f t ADELANTO 59200.00 4 6652 \N +258769 2025-09-01 18:12:20.20457+00 2025-09-01 18:12:20.204582+00 f t SUBTOTAL 99700.00 1 6655 \N +258770 2025-09-01 18:12:20.206989+00 2025-09-01 18:12:20.206997+00 f t DESCUENTO 0.00 2 6655 \N +258771 2025-09-01 18:12:20.208749+00 2025-09-01 18:12:20.20876+00 f t TOTAL 99700.00 3 6655 \N +258772 2025-09-01 18:12:20.212592+00 2025-09-01 18:12:20.212604+00 f t ADELANTO 59200.00 4 6655 \N +264590 2025-09-03 13:22:11.872978+00 2025-09-03 13:22:11.872986+00 f t DESCUENTO 0.00 2 6800 \N +264591 2025-09-03 13:22:11.874293+00 2025-09-03 13:22:11.8743+00 f t TOTAL 0.00 3 6800 \N +264592 2025-09-03 13:22:11.875599+00 2025-09-03 13:22:11.875605+00 f t ADELANTO 0.00 4 6800 \N +264657 2025-09-03 13:40:23.937881+00 2025-09-03 13:40:23.937894+00 f t SUBTOTAL 68000.00 1 6802 \N +264658 2025-09-03 13:40:23.940895+00 2025-09-03 13:40:23.940907+00 f t DESCUENTO 0.00 2 6802 \N +264659 2025-09-03 13:40:23.942814+00 2025-09-03 13:40:23.942826+00 f t TOTAL 68000.00 3 6802 \N +264660 2025-09-03 13:40:23.946113+00 2025-09-03 13:40:23.946126+00 f t ADELANTO 13000.00 4 6802 \N +253313 2025-08-30 20:18:38.833065+00 2025-08-30 20:18:38.833509+00 f t SUBTOTAL 0.00 1 6530 \N +253314 2025-08-30 20:18:38.83717+00 2025-08-30 20:18:38.837179+00 f t DESCUENTO 0.00 2 6530 \N +253315 2025-08-30 20:18:38.838281+00 2025-08-30 20:18:38.838288+00 f t TOTAL 0.00 3 6530 \N +253316 2025-08-30 20:18:38.839265+00 2025-08-30 20:18:38.839272+00 f t ADELANTO 0.00 4 6530 \N +253689 2025-08-30 22:26:50.815714+00 2025-08-30 22:26:50.815722+00 f t SUBTOTAL 42000.00 1 6538 \N +253690 2025-08-30 22:26:50.81775+00 2025-08-30 22:26:50.817759+00 f t DESCUENTO 0.00 2 6538 \N +253691 2025-08-30 22:26:50.819108+00 2025-08-30 22:26:50.819118+00 f t TOTAL 42000.00 3 6538 \N +253692 2025-08-30 22:26:50.820593+00 2025-08-30 22:26:50.820601+00 f t ADELANTO 9500.00 4 6538 \N +248173 2025-08-29 02:39:09.374357+00 2025-08-29 02:39:09.37437+00 f t SUBTOTAL 0.00 1 6403 \N +248174 2025-08-29 02:39:09.376961+00 2025-08-29 02:39:09.376969+00 f t DESCUENTO 0.00 2 6403 \N +248175 2025-08-29 02:39:09.378566+00 2025-08-29 02:39:09.378576+00 f t TOTAL 0.00 3 6403 \N +248176 2025-08-29 02:39:09.380091+00 2025-08-29 02:39:09.3801+00 f t ADELANTO 0.00 4 6403 \N +265609 2025-09-03 19:53:40.365737+00 2025-09-03 19:53:40.365749+00 f t SUBTOTAL 0.00 1 6829 \N +265610 2025-09-03 19:53:40.368221+00 2025-09-03 19:53:40.368231+00 f t DESCUENTO 0.00 2 6829 \N +265611 2025-09-03 19:53:40.369856+00 2025-09-03 19:53:40.369863+00 f t TOTAL 0.00 3 6829 \N +265612 2025-09-03 19:53:40.371183+00 2025-09-03 19:53:40.37119+00 f t ADELANTO 0.00 4 6829 \N +265677 2025-09-03 20:01:30.909143+00 2025-09-03 20:01:30.909155+00 f t SUBTOTAL 0.00 1 6831 \N +265678 2025-09-03 20:01:30.911483+00 2025-09-03 20:01:30.911496+00 f t DESCUENTO 0.00 2 6831 \N +265679 2025-09-03 20:01:30.913474+00 2025-09-03 20:01:30.913485+00 f t TOTAL 0.00 3 6831 \N +265680 2025-09-03 20:01:30.915356+00 2025-09-03 20:01:30.915367+00 f t ADELANTO 0.00 4 6831 \N +260645 2025-09-02 02:53:32.929811+00 2025-09-02 02:53:32.929824+00 f t SUBTOTAL 0.00 1 6695 \N +260646 2025-09-02 02:53:32.935665+00 2025-09-02 02:53:32.935675+00 f t DESCUENTO 0.00 2 6695 \N +260647 2025-09-02 02:53:32.938655+00 2025-09-02 02:53:32.938663+00 f t TOTAL 0.00 3 6695 \N +260648 2025-09-02 02:53:32.940335+00 2025-09-02 02:53:32.940342+00 f t ADELANTO 0.00 4 6695 \N +255025 2025-08-31 13:53:04.07002+00 2025-08-31 13:53:04.070032+00 f t SUBTOTAL 84000.00 1 6566 \N +255026 2025-08-31 13:53:04.071751+00 2025-08-31 13:53:04.07176+00 f t DESCUENTO 0.00 2 6566 \N +255027 2025-08-31 13:53:04.073943+00 2025-08-31 13:53:04.073951+00 f t TOTAL 84000.00 3 6566 \N +255028 2025-08-31 13:53:04.075419+00 2025-08-31 13:53:04.075432+00 f t ADELANTO 19000.00 4 6566 \N +261197 2025-09-02 14:09:08.165699+00 2025-09-02 14:09:08.165714+00 f t SUBTOTAL 0.00 1 6713 \N +261198 2025-09-02 14:09:08.168265+00 2025-09-02 14:09:08.168279+00 f t DESCUENTO 0.00 2 6713 \N +261199 2025-09-02 14:09:08.17062+00 2025-09-02 14:09:08.170632+00 f t TOTAL 0.00 3 6713 \N +261200 2025-09-02 14:09:08.172762+00 2025-09-02 14:09:08.172775+00 f t ADELANTO 0.00 4 6713 \N +261241 2025-09-02 14:39:08.832214+00 2025-09-02 14:39:08.832227+00 f t SUBTOTAL 46000.00 1 6714 \N +261242 2025-09-02 14:39:08.834943+00 2025-09-02 14:39:08.834957+00 f t DESCUENTO 0.00 2 6714 \N +261243 2025-09-02 14:39:08.837267+00 2025-09-02 14:39:08.837276+00 f t TOTAL 46000.00 3 6714 \N +261244 2025-09-02 14:39:08.839036+00 2025-09-02 14:39:08.839045+00 f t ADELANTO 11000.00 4 6714 \N +261293 2025-09-02 15:09:33.534887+00 2025-09-02 15:09:33.534899+00 f t SUBTOTAL 0.00 1 6717 \N +261294 2025-09-02 15:09:33.536493+00 2025-09-02 15:09:33.536501+00 f t DESCUENTO 0.00 2 6717 \N +261295 2025-09-02 15:09:33.537883+00 2025-09-02 15:09:33.537892+00 f t TOTAL 0.00 3 6717 \N +261296 2025-09-02 15:09:33.539155+00 2025-09-02 15:09:33.539164+00 f t ADELANTO 0.00 4 6717 \N +261365 2025-09-02 15:30:32.802413+00 2025-09-02 15:30:32.802423+00 f t SUBTOTAL 0.00 1 6720 \N +261366 2025-09-02 15:30:32.804183+00 2025-09-02 15:30:32.804192+00 f t DESCUENTO 0.00 2 6720 \N +261367 2025-09-02 15:30:32.805483+00 2025-09-02 15:30:32.805489+00 f t TOTAL 0.00 3 6720 \N +261368 2025-09-02 15:30:32.806554+00 2025-09-02 15:30:32.80656+00 f t ADELANTO 0.00 4 6720 \N +266809 2025-09-04 00:43:55.372131+00 2025-09-04 00:43:55.372141+00 f t SUBTOTAL 0.00 1 6859 \N +266810 2025-09-04 00:43:55.373512+00 2025-09-04 00:43:55.373517+00 f t DESCUENTO 0.00 2 6859 \N +266811 2025-09-04 00:43:55.374656+00 2025-09-04 00:43:55.374661+00 f t TOTAL 0.00 3 6859 \N +266812 2025-09-04 00:43:55.375905+00 2025-09-04 00:43:55.37591+00 f t ADELANTO 0.00 4 6859 \N +249813 2025-08-29 15:47:42.167619+00 2025-08-29 15:47:42.167631+00 f t SUBTOTAL 111000.00 1 6441 \N +249814 2025-08-29 15:47:42.170497+00 2025-08-29 15:47:42.170507+00 f t DESCUENTO 0.00 2 6441 \N +249815 2025-08-29 15:47:42.172186+00 2025-08-29 15:47:42.172195+00 f t TOTAL 111000.00 3 6441 \N +249816 2025-08-29 15:47:42.173856+00 2025-08-29 15:47:42.173863+00 f t ADELANTO 23500.00 4 6441 \N +256143 2025-08-31 20:14:22.891216+00 2025-08-31 20:14:22.89122+00 f t TOTAL 72000.00 3 6588 \N +256144 2025-08-31 20:14:22.892349+00 2025-08-31 20:14:22.892355+00 f t ADELANTO 19000.00 4 6588 \N +267057 2025-09-04 03:50:08.897333+00 2025-09-04 03:50:08.897343+00 f t SUBTOTAL 0.00 1 6869 \N +261697 2025-09-02 16:22:10.590671+00 2025-09-02 16:22:10.590681+00 f t SUBTOTAL 46000.00 1 6729 \N +261698 2025-09-02 16:22:10.593709+00 2025-09-02 16:22:10.593722+00 f t DESCUENTO 0.00 2 6729 \N +261699 2025-09-02 16:22:10.595816+00 2025-09-02 16:22:10.595826+00 f t TOTAL 46000.00 3 6729 \N +261700 2025-09-02 16:22:10.597942+00 2025-09-02 16:22:10.597952+00 f t ADELANTO 11000.00 4 6729 \N +261756 2025-09-02 17:04:40.685852+00 2025-09-02 17:04:40.685864+00 f t ADELANTO 0.00 4 6734 \N +289218 2025-09-12 00:17:38.786936+00 2025-09-12 00:17:38.786946+00 f t DESCUENTO 0.00 2 7382 \N +289219 2025-09-12 00:17:38.788862+00 2025-09-12 00:17:38.788871+00 f t TOTAL 0.00 3 7382 \N +289220 2025-09-12 00:17:38.790267+00 2025-09-12 00:17:38.790275+00 f t ADELANTO 0.00 4 7382 \N +249977 2025-08-29 16:06:39.286987+00 2025-08-29 16:06:39.286995+00 f t SUBTOTAL 75000.00 1 6443 \N +249978 2025-08-29 16:06:39.288734+00 2025-08-29 16:06:39.288741+00 f t DESCUENTO 0.00 2 6443 \N +249979 2025-08-29 16:06:39.290221+00 2025-08-29 16:06:39.290228+00 f t TOTAL 75000.00 3 6443 \N +249980 2025-08-29 16:06:39.291524+00 2025-08-29 16:06:39.291531+00 f t ADELANTO 15000.00 4 6443 \N +258853 2025-09-01 18:18:11.837294+00 2025-09-01 18:18:11.837306+00 f t SUBTOTAL 0.00 1 6656 \N +258854 2025-09-01 18:18:11.839915+00 2025-09-01 18:18:11.839926+00 f t DESCUENTO 0.00 2 6656 \N +258855 2025-09-01 18:18:11.841925+00 2025-09-01 18:18:11.841936+00 f t TOTAL 0.00 3 6656 \N +258856 2025-09-01 18:18:11.843566+00 2025-09-01 18:18:11.843572+00 f t ADELANTO 0.00 4 6656 \N +258937 2025-09-01 18:37:45.001327+00 2025-09-01 18:37:45.001339+00 f t SUBTOTAL 46000.00 1 6658 \N +258938 2025-09-01 18:37:45.003391+00 2025-09-01 18:37:45.0034+00 f t DESCUENTO 0.00 2 6658 \N +258939 2025-09-01 18:37:45.004981+00 2025-09-01 18:37:45.004989+00 f t TOTAL 46000.00 3 6658 \N +258940 2025-09-01 18:37:45.006305+00 2025-09-01 18:37:45.006314+00 f t ADELANTO 11000.00 4 6658 \N +253233 2025-08-30 19:19:17.714497+00 2025-08-30 19:19:17.714506+00 f t SUBTOTAL 0.00 1 6527 \N +253234 2025-08-30 19:19:17.715873+00 2025-08-30 19:19:17.715879+00 f t DESCUENTO 0.00 2 6527 \N +253235 2025-08-30 19:19:17.717021+00 2025-08-30 19:19:17.717026+00 f t TOTAL 0.00 3 6527 \N +253236 2025-08-30 19:19:17.717967+00 2025-08-30 19:19:17.717972+00 f t ADELANTO 0.00 4 6527 \N +253461 2025-08-30 20:33:44.248879+00 2025-08-30 20:33:44.248889+00 f t SUBTOTAL 118000.00 1 6532 \N +253462 2025-08-30 20:33:44.250521+00 2025-08-30 20:33:44.250529+00 f t DESCUENTO 0.00 2 6532 \N +253463 2025-08-30 20:33:44.251976+00 2025-08-30 20:33:44.251983+00 f t TOTAL 118000.00 3 6532 \N +253464 2025-08-30 20:33:44.253042+00 2025-08-30 20:33:44.253049+00 f t ADELANTO 23000.00 4 6532 \N +271657 2025-09-05 18:12:16.626473+00 2025-09-05 18:12:16.626486+00 f t SUBTOTAL 55000.00 1 6971 \N +271658 2025-09-05 18:12:16.62892+00 2025-09-05 18:12:16.628928+00 f t DESCUENTO 0.00 2 6971 \N +271659 2025-09-05 18:12:16.630557+00 2025-09-05 18:12:16.630566+00 f t TOTAL 55000.00 3 6971 \N +271660 2025-09-05 18:12:16.632128+00 2025-09-05 18:12:16.632137+00 f t ADELANTO 11000.00 4 6971 \N +259561 2025-09-01 20:47:19.180456+00 2025-09-01 20:47:19.180472+00 f t SUBTOTAL 55000.00 1 6670 \N +259562 2025-09-01 20:47:19.183194+00 2025-09-01 20:47:19.183207+00 f t DESCUENTO 0.00 2 6670 \N +259563 2025-09-01 20:47:19.185383+00 2025-09-01 20:47:19.185394+00 f t TOTAL 55000.00 3 6670 \N +259564 2025-09-01 20:47:19.18768+00 2025-09-01 20:47:19.187692+00 f t ADELANTO 11000.00 4 6670 \N +250041 2025-08-29 16:16:26.900223+00 2025-08-29 16:16:26.900234+00 f t SUBTOTAL 42000.00 1 6444 \N +250042 2025-08-29 16:16:26.902567+00 2025-08-29 16:16:26.902578+00 f t DESCUENTO 0.00 2 6444 \N +250043 2025-08-29 16:16:26.904049+00 2025-08-29 16:16:26.904057+00 f t TOTAL 42000.00 3 6444 \N +250044 2025-08-29 16:16:26.907997+00 2025-08-29 16:16:26.908007+00 f t ADELANTO 9500.00 4 6444 \N +259869 2025-09-01 22:23:34.476189+00 2025-09-01 22:23:34.4762+00 f t SUBTOTAL 78000.00 1 6675 \N +259870 2025-09-01 22:23:34.47832+00 2025-09-01 22:23:34.478329+00 f t DESCUENTO 0.00 2 6675 \N +259871 2025-09-01 22:23:34.480354+00 2025-09-01 22:23:34.480362+00 f t TOTAL 78000.00 3 6675 \N +259872 2025-09-01 22:23:34.481715+00 2025-09-01 22:23:34.481723+00 f t ADELANTO 21500.00 4 6675 \N +259953 2025-09-01 23:07:46.641539+00 2025-09-01 23:07:46.641552+00 f t SUBTOTAL 30000.00 1 6678 \N +259954 2025-09-01 23:07:46.643689+00 2025-09-01 23:07:46.643699+00 f t DESCUENTO 0.00 2 6678 \N +259955 2025-09-01 23:07:46.645076+00 2025-09-01 23:07:46.645084+00 f t TOTAL 30000.00 3 6678 \N +259956 2025-09-01 23:07:46.646303+00 2025-09-01 23:07:46.646309+00 f t ADELANTO 30000.00 4 6678 \N +250069 2025-08-29 17:27:00.827178+00 2025-08-29 17:27:00.827187+00 f t SUBTOTAL 42000.00 1 6445 \N +250070 2025-08-29 17:27:00.829183+00 2025-08-29 17:27:00.829191+00 f t DESCUENTO 0.00 2 6445 \N +250071 2025-08-29 17:27:00.830647+00 2025-08-29 17:27:00.830655+00 f t TOTAL 42000.00 3 6445 \N +250072 2025-08-29 17:27:00.831944+00 2025-08-29 17:27:00.831953+00 f t ADELANTO 9500.00 4 6445 \N +250077 2025-08-29 17:51:01.888565+00 2025-08-29 17:51:01.88858+00 f t SUBTOTAL 0.00 1 6446 \N +250078 2025-08-29 17:51:01.890963+00 2025-08-29 17:51:01.890976+00 f t DESCUENTO 0.00 2 6446 \N +250079 2025-08-29 17:51:01.89344+00 2025-08-29 17:51:01.893455+00 f t TOTAL 0.00 3 6446 \N +250080 2025-08-29 17:51:01.895637+00 2025-08-29 17:51:01.895651+00 f t ADELANTO 0.00 4 6446 \N +254629 2025-08-31 12:19:35.894489+00 2025-08-31 12:19:35.894498+00 f t SUBTOTAL 64500.00 1 6557 \N +254630 2025-08-31 12:19:35.896545+00 2025-08-31 12:19:35.896552+00 f t DESCUENTO 0.00 2 6557 \N +254631 2025-08-31 12:19:35.897707+00 2025-08-31 12:19:35.897714+00 f t TOTAL 64500.00 3 6557 \N +254632 2025-08-31 12:19:35.898776+00 2025-08-31 12:19:35.898782+00 f t ADELANTO 17000.00 4 6557 \N +254829 2025-08-31 13:18:57.347359+00 2025-08-31 13:18:57.347371+00 f t SUBTOTAL 50000.00 1 6561 \N +254830 2025-08-31 13:18:57.349865+00 2025-08-31 13:18:57.349874+00 f t DESCUENTO 0.00 2 6561 \N +254831 2025-08-31 13:18:57.351478+00 2025-08-31 13:18:57.351486+00 f t TOTAL 50000.00 3 6561 \N +254832 2025-08-31 13:18:57.352752+00 2025-08-31 13:18:57.352758+00 f t ADELANTO 10000.00 4 6561 \N +250109 2025-08-29 18:06:35.147054+00 2025-08-29 18:06:35.147063+00 f t SUBTOTAL 95700.00 1 6447 \N +250110 2025-08-29 18:06:35.14885+00 2025-08-29 18:06:35.14886+00 f t DESCUENTO 0.00 2 6447 \N +250111 2025-08-29 18:06:35.15038+00 2025-08-29 18:06:35.15039+00 f t TOTAL 95700.00 3 6447 \N +250112 2025-08-29 18:06:35.151961+00 2025-08-29 18:06:35.15197+00 f t ADELANTO 57700.00 4 6447 \N +260861 2025-09-02 11:46:46.617664+00 2025-09-02 11:46:46.617674+00 f t SUBTOTAL 0.00 1 6703 \N +260862 2025-09-02 11:46:46.620842+00 2025-09-02 11:46:46.620851+00 f t DESCUENTO 0.00 2 6703 \N +260863 2025-09-02 11:46:46.622255+00 2025-09-02 11:46:46.622261+00 f t TOTAL 0.00 3 6703 \N +260864 2025-09-02 11:46:46.62336+00 2025-09-02 11:46:46.623366+00 f t ADELANTO 0.00 4 6703 \N +250145 2025-08-29 18:09:28.909968+00 2025-08-29 18:09:28.909981+00 f t SUBTOTAL 64500.00 1 6448 \N +250146 2025-08-29 18:09:28.912205+00 2025-08-29 18:09:28.912216+00 f t DESCUENTO 0.00 2 6448 \N +250147 2025-08-29 18:09:28.914086+00 2025-08-29 18:09:28.914096+00 f t TOTAL 64500.00 3 6448 \N +250148 2025-08-29 18:09:28.915745+00 2025-08-29 18:09:28.915756+00 f t ADELANTO 17000.00 4 6448 \N +250173 2025-08-29 18:32:53.373782+00 2025-08-29 18:32:53.373791+00 f t SUBTOTAL 42000.00 1 6449 \N +250174 2025-08-29 18:32:53.375797+00 2025-08-29 18:32:53.375804+00 f t DESCUENTO 0.00 2 6449 \N +250175 2025-08-29 18:32:53.377161+00 2025-08-29 18:32:53.377168+00 f t TOTAL 42000.00 3 6449 \N +250176 2025-08-29 18:32:53.378587+00 2025-08-29 18:32:53.378593+00 f t ADELANTO 9500.00 4 6449 \N +250209 2025-08-29 18:53:41.665436+00 2025-08-29 18:53:41.665453+00 f t SUBTOTAL 42000.00 1 6450 \N +250210 2025-08-29 18:53:41.667594+00 2025-08-29 18:53:41.667608+00 f t DESCUENTO 0.00 2 6450 \N +250211 2025-08-29 18:53:41.669382+00 2025-08-29 18:53:41.669392+00 f t TOTAL 42000.00 3 6450 \N +250212 2025-08-29 18:53:41.671117+00 2025-08-29 18:53:41.671126+00 f t ADELANTO 9500.00 4 6450 \N +250225 2025-08-29 18:58:34.846255+00 2025-08-29 18:58:34.846268+00 f t SUBTOTAL 0.00 1 6451 \N +250226 2025-08-29 18:58:34.848362+00 2025-08-29 18:58:34.848372+00 f t DESCUENTO 0.00 2 6451 \N +250227 2025-08-29 18:58:34.850834+00 2025-08-29 18:58:34.850846+00 f t TOTAL 0.00 3 6451 \N +250228 2025-08-29 18:58:34.852187+00 2025-08-29 18:58:34.852195+00 f t ADELANTO 0.00 4 6451 \N +276497 2025-09-08 10:33:36.125624+00 2025-09-08 10:33:36.125632+00 f t SUBTOTAL 0.00 1 7091 \N +276498 2025-09-08 10:33:36.126727+00 2025-09-08 10:33:36.126733+00 f t DESCUENTO 0.00 2 7091 \N +276499 2025-09-08 10:33:36.127565+00 2025-09-08 10:33:36.127571+00 f t TOTAL 0.00 3 7091 \N +276500 2025-09-08 10:33:36.128312+00 2025-09-08 10:33:36.128316+00 f t ADELANTO 0.00 4 7091 \N +252689 2025-08-30 16:41:46.144671+00 2025-08-30 16:41:46.144683+00 f t SUBTOTAL 42000.00 1 6512 \N +252690 2025-08-30 16:41:46.14647+00 2025-08-30 16:41:46.146481+00 f t DESCUENTO 0.00 2 6512 \N +252691 2025-08-30 16:41:46.14783+00 2025-08-30 16:41:46.147839+00 f t TOTAL 42000.00 3 6512 \N +252692 2025-08-30 16:41:46.148894+00 2025-08-30 16:41:46.148902+00 f t ADELANTO 9500.00 4 6512 \N +252773 2025-08-30 16:46:54.999381+00 2025-08-30 16:46:54.99939+00 f t SUBTOTAL 88000.00 1 6515 \N +252774 2025-08-30 16:46:55.001784+00 2025-08-30 16:46:55.001793+00 f t DESCUENTO 0.00 2 6515 \N +252775 2025-08-30 16:46:55.003352+00 2025-08-30 16:46:55.00336+00 f t TOTAL 88000.00 3 6515 \N +252776 2025-08-30 16:46:55.004956+00 2025-08-30 16:46:55.004964+00 f t ADELANTO 19000.00 4 6515 \N +250273 2025-08-29 18:59:26.226849+00 2025-08-29 18:59:26.226861+00 f t SUBTOTAL 42000.00 1 6452 \N +250274 2025-08-29 18:59:26.22887+00 2025-08-29 18:59:26.228878+00 f t DESCUENTO 0.00 2 6452 \N +250275 2025-08-29 18:59:26.230217+00 2025-08-29 18:59:26.230223+00 f t TOTAL 42000.00 3 6452 \N +250276 2025-08-29 18:59:26.231537+00 2025-08-29 18:59:26.231543+00 f t ADELANTO 9500.00 4 6452 \N +259025 2025-09-01 18:54:44.534374+00 2025-09-01 18:54:44.534439+00 f t SUBTOTAL 0.00 1 6661 \N +259026 2025-09-01 18:54:44.536958+00 2025-09-01 18:54:44.536967+00 f t DESCUENTO 0.00 2 6661 \N +259027 2025-09-01 18:54:44.538535+00 2025-09-01 18:54:44.538546+00 f t TOTAL 0.00 3 6661 \N +259028 2025-09-01 18:54:44.539997+00 2025-09-01 18:54:44.54001+00 f t ADELANTO 0.00 4 6661 \N +259181 2025-09-01 19:49:58.218738+00 2025-09-01 19:49:58.218751+00 f t SUBTOTAL 46000.00 1 6664 \N +259182 2025-09-01 19:49:58.220833+00 2025-09-01 19:49:58.220844+00 f t DESCUENTO 0.00 2 6664 \N +259183 2025-09-01 19:49:58.222316+00 2025-09-01 19:49:58.222325+00 f t TOTAL 46000.00 3 6664 \N +259184 2025-09-01 19:49:58.225448+00 2025-09-01 19:49:58.225457+00 f t ADELANTO 11000.00 4 6664 \N +250313 2025-08-29 19:55:58.29853+00 2025-08-29 19:55:58.298542+00 f t SUBTOTAL 72000.00 1 6453 \N +250314 2025-08-29 19:55:58.300685+00 2025-08-29 19:55:58.300697+00 f t DESCUENTO 0.00 2 6453 \N +250315 2025-08-29 19:55:58.302071+00 2025-08-29 19:55:58.302079+00 f t TOTAL 72000.00 3 6453 \N +250316 2025-08-29 19:55:58.30342+00 2025-08-29 19:55:58.303428+00 f t ADELANTO 19000.00 4 6453 \N +250321 2025-08-29 19:56:44.634798+00 2025-08-29 19:56:44.634811+00 f t SUBTOTAL 0.00 1 6454 \N +250322 2025-08-29 19:56:44.636688+00 2025-08-29 19:56:44.636697+00 f t DESCUENTO 0.00 2 6454 \N +250323 2025-08-29 19:56:44.638023+00 2025-08-29 19:56:44.638031+00 f t TOTAL 0.00 3 6454 \N +250324 2025-08-29 19:56:44.639534+00 2025-08-29 19:56:44.639546+00 f t ADELANTO 0.00 4 6454 \N +250329 2025-08-29 20:46:02.672561+00 2025-08-29 20:46:02.672573+00 f t SUBTOTAL 0.00 1 6455 \N +250330 2025-08-29 20:46:02.674643+00 2025-08-29 20:46:02.674655+00 f t DESCUENTO 0.00 2 6455 \N +250331 2025-08-29 20:46:02.676527+00 2025-08-29 20:46:02.676536+00 f t TOTAL 0.00 3 6455 \N +250332 2025-08-29 20:46:02.678413+00 2025-08-29 20:46:02.678423+00 f t ADELANTO 0.00 4 6455 \N +271665 2025-09-05 18:12:50.423335+00 2025-09-05 18:12:50.423346+00 f t SUBTOTAL 0.00 1 6972 \N +250337 2025-08-29 20:54:20.097712+00 2025-08-29 20:54:20.097721+00 f t SUBTOTAL 0.00 1 6456 \N +250338 2025-08-29 20:54:20.099123+00 2025-08-29 20:54:20.099154+00 f t DESCUENTO 0.00 2 6456 \N +250339 2025-08-29 20:54:20.100311+00 2025-08-29 20:54:20.100316+00 f t TOTAL 0.00 3 6456 \N +250340 2025-08-29 20:54:20.101366+00 2025-08-29 20:54:20.101372+00 f t ADELANTO 0.00 4 6456 \N +253697 2025-08-30 22:27:54.77727+00 2025-08-30 22:27:54.777279+00 f t SUBTOTAL 64500.00 1 6539 \N +253698 2025-08-30 22:27:54.783708+00 2025-08-30 22:27:54.783718+00 f t DESCUENTO 0.00 2 6539 \N +253699 2025-08-30 22:27:54.785426+00 2025-08-30 22:27:54.785433+00 f t TOTAL 64500.00 3 6539 \N +253700 2025-08-30 22:27:54.786686+00 2025-08-30 22:27:54.786695+00 f t ADELANTO 17000.00 4 6539 \N +250345 2025-08-29 21:14:12.824823+00 2025-08-29 21:14:12.824834+00 f t SUBTOTAL 0.00 1 6457 \N +250346 2025-08-29 21:14:12.826674+00 2025-08-29 21:14:12.826683+00 f t DESCUENTO 0.00 2 6457 \N +250347 2025-08-29 21:14:12.82818+00 2025-08-29 21:14:12.828187+00 f t TOTAL 0.00 3 6457 \N +250348 2025-08-29 21:14:12.829449+00 2025-08-29 21:14:12.829455+00 f t ADELANTO 0.00 4 6457 \N +250401 2025-08-29 21:56:33.452416+00 2025-08-29 21:56:33.452425+00 f t SUBTOTAL 72000.00 1 6458 \N +250402 2025-08-29 21:56:33.454143+00 2025-08-29 21:56:33.454151+00 f t DESCUENTO 0.00 2 6458 \N +250403 2025-08-29 21:56:33.455317+00 2025-08-29 21:56:33.455323+00 f t TOTAL 72000.00 3 6458 \N +250404 2025-08-29 21:56:33.456625+00 2025-08-29 21:56:33.456633+00 f t ADELANTO 19000.00 4 6458 \N +260801 2025-09-02 11:10:39.488599+00 2025-09-02 11:10:39.488612+00 f t SUBTOTAL 46000.00 1 6701 \N +260802 2025-09-02 11:10:39.492049+00 2025-09-02 11:10:39.49206+00 f t DESCUENTO 0.00 2 6701 \N +260803 2025-09-02 11:10:39.494035+00 2025-09-02 11:10:39.494046+00 f t TOTAL 46000.00 3 6701 \N +260804 2025-09-02 11:10:39.495444+00 2025-09-02 11:10:39.495453+00 f t ADELANTO 11000.00 4 6701 \N +250433 2025-08-29 22:17:31.129269+00 2025-08-29 22:17:31.129282+00 f t SUBTOTAL 42000.00 1 6459 \N +250434 2025-08-29 22:17:31.132666+00 2025-08-29 22:17:31.13268+00 f t DESCUENTO 0.00 2 6459 \N +250435 2025-08-29 22:17:31.134662+00 2025-08-29 22:17:31.134671+00 f t TOTAL 42000.00 3 6459 \N +250436 2025-08-29 22:17:31.138845+00 2025-08-29 22:17:31.138855+00 f t ADELANTO 9500.00 4 6459 \N +250469 2025-08-29 22:33:41.469057+00 2025-08-29 22:33:41.46907+00 f t SUBTOTAL 49500.00 1 6461 \N +250470 2025-08-29 22:33:41.470778+00 2025-08-29 22:33:41.470789+00 f t DESCUENTO 0.00 2 6461 \N +250471 2025-08-29 22:33:41.472328+00 2025-08-29 22:33:41.472335+00 f t TOTAL 49500.00 3 6461 \N +250472 2025-08-29 22:33:41.473438+00 2025-08-29 22:33:41.473446+00 f t ADELANTO 11500.00 4 6461 \N +261249 2025-09-02 14:48:24.408618+00 2025-09-02 14:48:24.408628+00 f t SUBTOTAL 0.00 1 6715 \N +261250 2025-09-02 14:48:24.410206+00 2025-09-02 14:48:24.410215+00 f t DESCUENTO 0.00 2 6715 \N +261251 2025-09-02 14:48:24.411721+00 2025-09-02 14:48:24.411731+00 f t TOTAL 0.00 3 6715 \N +261252 2025-09-02 14:48:24.413172+00 2025-09-02 14:48:24.413179+00 f t ADELANTO 0.00 4 6715 \N +250497 2025-08-29 22:34:08.86536+00 2025-08-29 22:34:08.865373+00 f t SUBTOTAL 49500.00 1 6460 \N +250498 2025-08-29 22:34:08.868085+00 2025-08-29 22:34:08.868094+00 f t DESCUENTO 0.00 2 6460 \N +250499 2025-08-29 22:34:08.869962+00 2025-08-29 22:34:08.869973+00 f t TOTAL 49500.00 3 6460 \N +250500 2025-08-29 22:34:08.87182+00 2025-08-29 22:34:08.871828+00 f t ADELANTO 11500.00 4 6460 \N +255897 2025-08-31 18:18:45.69658+00 2025-08-31 18:18:45.696593+00 f t SUBTOTAL 42000.00 1 6582 \N +255898 2025-08-31 18:18:45.698393+00 2025-08-31 18:18:45.698404+00 f t DESCUENTO 0.00 2 6582 \N +255899 2025-08-31 18:18:45.699691+00 2025-08-31 18:18:45.6997+00 f t TOTAL 42000.00 3 6582 \N +255900 2025-08-31 18:18:45.700977+00 2025-08-31 18:18:45.700985+00 f t ADELANTO 9500.00 4 6582 \N +257921 2025-09-01 13:09:34.786409+00 2025-09-01 13:09:34.786423+00 f t SUBTOTAL 121000.00 1 6633 \N +257922 2025-09-01 13:09:34.789116+00 2025-09-01 13:09:34.789125+00 f t DESCUENTO 0.00 2 6633 \N +257923 2025-09-01 13:09:34.79062+00 2025-09-01 13:09:34.79063+00 f t TOTAL 121000.00 3 6633 \N +257924 2025-09-01 13:09:34.791993+00 2025-09-01 13:09:34.792+00 f t ADELANTO 26000.00 4 6633 \N +252197 2025-08-30 16:03:53.777647+00 2025-08-30 16:03:53.777659+00 f t SUBTOTAL 50000.00 1 6504 \N +252198 2025-08-30 16:03:53.779769+00 2025-08-30 16:03:53.779778+00 f t DESCUENTO 0.00 2 6504 \N +252199 2025-08-30 16:03:53.781424+00 2025-08-30 16:03:53.781435+00 f t TOTAL 50000.00 3 6504 \N +252200 2025-08-30 16:03:53.783169+00 2025-08-30 16:03:53.783179+00 f t ADELANTO 10000.00 4 6504 \N +250525 2025-08-29 22:51:13.857124+00 2025-08-29 22:51:13.857133+00 f t SUBTOTAL 0.00 1 6462 \N +250526 2025-08-29 22:51:13.859001+00 2025-08-29 22:51:13.859011+00 f t DESCUENTO 0.00 2 6462 \N +250527 2025-08-29 22:51:13.860438+00 2025-08-29 22:51:13.860444+00 f t TOTAL 0.00 3 6462 \N +250528 2025-08-29 22:51:13.86402+00 2025-08-29 22:51:13.864031+00 f t ADELANTO 0.00 4 6462 \N +263945 2025-09-03 10:44:54.035061+00 2025-09-03 10:44:54.035074+00 f t SUBTOTAL 46000.00 1 6788 \N +263946 2025-09-03 10:44:54.037568+00 2025-09-03 10:44:54.037581+00 f t DESCUENTO 0.00 2 6788 \N +263947 2025-09-03 10:44:54.039567+00 2025-09-03 10:44:54.039577+00 f t TOTAL 46000.00 3 6788 \N +258609 2025-09-01 16:58:51.913073+00 2025-09-01 16:58:51.913115+00 f t SUBTOTAL 95000.00 1 6650 \N +258610 2025-09-01 16:58:51.915422+00 2025-09-01 16:58:51.915432+00 f t DESCUENTO 0.00 2 6650 \N +258611 2025-09-01 16:58:51.916993+00 2025-09-01 16:58:51.917001+00 f t TOTAL 95000.00 3 6650 \N +258612 2025-09-01 16:58:51.925449+00 2025-09-01 16:58:51.925463+00 f t ADELANTO 10000.00 4 6650 \N +252857 2025-08-30 16:57:29.969324+00 2025-08-30 16:57:29.969334+00 f t SUBTOTAL 0.00 1 6517 \N +252858 2025-08-30 16:57:29.971321+00 2025-08-30 16:57:29.971332+00 f t DESCUENTO 0.00 2 6517 \N +252859 2025-08-30 16:57:29.97271+00 2025-08-30 16:57:29.972718+00 f t TOTAL 0.00 3 6517 \N +252860 2025-08-30 16:57:29.973916+00 2025-08-30 16:57:29.973925+00 f t ADELANTO 0.00 4 6517 \N +250565 2025-08-29 22:55:08.333813+00 2025-08-29 22:55:08.33383+00 f t SUBTOTAL 0.00 1 6463 \N +250566 2025-08-29 22:55:08.350935+00 2025-08-29 22:55:08.350946+00 f t DESCUENTO 0.00 2 6463 \N +250567 2025-08-29 22:55:08.355077+00 2025-08-29 22:55:08.355087+00 f t TOTAL 0.00 3 6463 \N +250568 2025-08-29 22:55:08.357311+00 2025-08-29 22:55:08.35732+00 f t ADELANTO 0.00 4 6463 \N +253245 2025-08-30 19:22:32.252848+00 2025-08-30 19:22:32.252856+00 f t SUBTOTAL 68000.00 1 6526 \N +253246 2025-08-30 19:22:32.254441+00 2025-08-30 19:22:32.254447+00 f t DESCUENTO 0.00 2 6526 \N +253247 2025-08-30 19:22:32.255435+00 2025-08-30 19:22:32.255442+00 f t TOTAL 68000.00 3 6526 \N +253248 2025-08-30 19:22:32.256421+00 2025-08-30 19:22:32.256427+00 f t ADELANTO 13000.00 4 6526 \N +259409 2025-09-01 19:58:37.040348+00 2025-09-01 19:58:37.040358+00 f t SUBTOTAL 86200.00 1 6665 \N +259410 2025-09-01 19:58:37.042157+00 2025-09-01 19:58:37.042166+00 f t DESCUENTO 0.00 2 6665 \N +259411 2025-09-01 19:58:37.043623+00 2025-09-01 19:58:37.043631+00 f t TOTAL 86200.00 3 6665 \N +259412 2025-09-01 19:58:37.045351+00 2025-09-01 19:58:37.045361+00 f t ADELANTO 45700.00 4 6665 \N +250617 2025-08-29 23:14:01.000886+00 2025-08-29 23:14:01.0009+00 f t SUBTOTAL 0.00 1 6464 \N +250618 2025-08-29 23:14:01.003665+00 2025-08-29 23:14:01.003677+00 f t DESCUENTO 0.00 2 6464 \N +250619 2025-08-29 23:14:01.005323+00 2025-08-29 23:14:01.005334+00 f t TOTAL 0.00 3 6464 \N +250620 2025-08-29 23:14:01.006972+00 2025-08-29 23:14:01.006982+00 f t ADELANTO 0.00 4 6464 \N +250649 2025-08-29 23:15:11.349523+00 2025-08-29 23:15:11.349538+00 f t SUBTOTAL 50000.00 1 6465 \N +250650 2025-08-29 23:15:11.356381+00 2025-08-29 23:15:11.35639+00 f t DESCUENTO 0.00 2 6465 \N +250651 2025-08-29 23:15:11.36121+00 2025-08-29 23:15:11.36122+00 f t TOTAL 50000.00 3 6465 \N +250652 2025-08-29 23:15:11.363993+00 2025-08-29 23:15:11.364007+00 f t ADELANTO 10000.00 4 6465 \N +254277 2025-08-31 02:29:19.426971+00 2025-08-31 02:29:19.42698+00 f t SUBTOTAL 72200.00 1 6547 \N +254278 2025-08-31 02:29:19.428874+00 2025-08-31 02:29:19.428881+00 f t DESCUENTO 0.00 2 6547 \N +254279 2025-08-31 02:29:19.430002+00 2025-08-31 02:29:19.430007+00 f t TOTAL 72200.00 3 6547 \N +254280 2025-08-31 02:29:19.431189+00 2025-08-31 02:29:19.431196+00 f t ADELANTO 19200.00 4 6547 \N +260041 2025-09-01 23:15:28.833464+00 2025-09-01 23:15:28.833475+00 f t SUBTOTAL 46000.00 1 6680 \N +260042 2025-09-01 23:15:28.835214+00 2025-09-01 23:15:28.835221+00 f t DESCUENTO 0.00 2 6680 \N +260043 2025-09-01 23:15:28.836426+00 2025-09-01 23:15:28.836432+00 f t TOTAL 46000.00 3 6680 \N +260044 2025-09-01 23:15:28.837537+00 2025-09-01 23:15:28.837543+00 f t ADELANTO 11000.00 4 6680 \N +260285 2025-09-01 23:56:34.266926+00 2025-09-01 23:56:34.266936+00 f t SUBTOTAL 95000.00 1 6686 \N +260286 2025-09-01 23:56:34.268897+00 2025-09-01 23:56:34.268906+00 f t DESCUENTO 0.00 2 6686 \N +260287 2025-09-01 23:56:34.270324+00 2025-09-01 23:56:34.27033+00 f t TOTAL 95000.00 3 6686 \N +260288 2025-09-01 23:56:34.271535+00 2025-09-01 23:56:34.271542+00 f t ADELANTO 10000.00 4 6686 \N +250693 2025-08-29 23:33:58.456917+00 2025-08-29 23:33:58.456925+00 f t SUBTOTAL 95000.00 1 6466 \N +250694 2025-08-29 23:33:58.458939+00 2025-08-29 23:33:58.458947+00 f t DESCUENTO 0.00 2 6466 \N +250695 2025-08-29 23:33:58.460618+00 2025-08-29 23:33:58.460629+00 f t TOTAL 95000.00 3 6466 \N +250696 2025-08-29 23:33:58.462209+00 2025-08-29 23:33:58.462215+00 f t ADELANTO 10000.00 4 6466 \N +250729 2025-08-29 23:37:58.379833+00 2025-08-29 23:37:58.379847+00 f t SUBTOTAL 0.00 1 6467 \N +250730 2025-08-29 23:37:58.382242+00 2025-08-29 23:37:58.382251+00 f t DESCUENTO 0.00 2 6467 \N +250731 2025-08-29 23:37:58.383572+00 2025-08-29 23:37:58.383579+00 f t TOTAL 0.00 3 6467 \N +250732 2025-08-29 23:37:58.384719+00 2025-08-29 23:37:58.384726+00 f t ADELANTO 0.00 4 6467 \N +255685 2025-08-31 17:42:41.095828+00 2025-08-31 17:42:41.095841+00 f t SUBTOTAL 0.00 1 6580 \N +255686 2025-08-31 17:42:41.097914+00 2025-08-31 17:42:41.097924+00 f t DESCUENTO 0.00 2 6580 \N +255687 2025-08-31 17:42:41.099264+00 2025-08-31 17:42:41.099269+00 f t TOTAL 0.00 3 6580 \N +255688 2025-08-31 17:42:41.100243+00 2025-08-31 17:42:41.100249+00 f t ADELANTO 0.00 4 6580 \N +250761 2025-08-30 00:01:57.912864+00 2025-08-30 00:01:57.912879+00 f t SUBTOTAL 50000.00 1 6468 \N +250762 2025-08-30 00:01:57.918567+00 2025-08-30 00:01:57.918582+00 f t DESCUENTO 0.00 2 6468 \N +250763 2025-08-30 00:01:57.92167+00 2025-08-30 00:01:57.921681+00 f t TOTAL 50000.00 3 6468 \N +250764 2025-08-30 00:01:57.92385+00 2025-08-30 00:01:57.92386+00 f t ADELANTO 10000.00 4 6468 \N +250769 2025-08-30 00:02:23.625291+00 2025-08-30 00:02:23.625304+00 f t SUBTOTAL 0.00 1 6469 \N +250770 2025-08-30 00:02:23.627114+00 2025-08-30 00:02:23.627146+00 f t DESCUENTO 0.00 2 6469 \N +250771 2025-08-30 00:02:23.628823+00 2025-08-30 00:02:23.628834+00 f t TOTAL 0.00 3 6469 \N +250772 2025-08-30 00:02:23.630481+00 2025-08-30 00:02:23.630492+00 f t ADELANTO 0.00 4 6469 \N +255953 2025-08-31 19:00:28.586966+00 2025-08-31 19:00:28.586976+00 f t SUBTOTAL 50000.00 1 6584 \N +255954 2025-08-31 19:00:28.589147+00 2025-08-31 19:00:28.589156+00 f t DESCUENTO 0.00 2 6584 \N +255955 2025-08-31 19:00:28.591727+00 2025-08-31 19:00:28.591736+00 f t TOTAL 50000.00 3 6584 \N +255956 2025-08-31 19:00:28.593753+00 2025-08-31 19:00:28.593764+00 f t ADELANTO 10000.00 4 6584 \N +256149 2025-08-31 20:21:03.67966+00 2025-08-31 20:21:03.679674+00 f t SUBTOTAL 0.00 1 6589 \N +252089 2025-08-30 15:47:37.940444+00 2025-08-30 15:47:37.940453+00 f t SUBTOTAL 129500.00 1 6501 \N +252090 2025-08-30 15:47:37.942522+00 2025-08-30 15:47:37.94253+00 f t DESCUENTO 0.00 2 6501 \N +252091 2025-08-30 15:47:37.944262+00 2025-08-30 15:47:37.944271+00 f t TOTAL 129500.00 3 6501 \N +252092 2025-08-30 15:47:37.945761+00 2025-08-30 15:47:37.945769+00 f t ADELANTO 27000.00 4 6501 \N +263948 2025-09-03 10:44:54.041535+00 2025-09-03 10:44:54.041545+00 f t ADELANTO 11000.00 4 6788 \N +338862 2025-09-29 20:06:47.731923+00 2025-09-29 20:06:47.731931+00 f t DESCUENTO 0.00 2 8543 \N +338863 2025-09-29 20:06:47.733677+00 2025-09-29 20:06:47.733688+00 f t TOTAL 54000.00 3 8543 \N +338864 2025-09-29 20:06:47.735247+00 2025-09-29 20:06:47.735257+00 f t ADELANTO 13500.00 4 8543 \N +258137 2025-09-01 13:55:50.788174+00 2025-09-01 13:55:50.788184+00 f t SUBTOTAL 46000.00 1 6636 \N +258138 2025-09-01 13:55:50.789826+00 2025-09-01 13:55:50.789834+00 f t DESCUENTO 0.00 2 6636 \N +258139 2025-09-01 13:55:50.791127+00 2025-09-01 13:55:50.791157+00 f t TOTAL 46000.00 3 6636 \N +258140 2025-09-01 13:55:50.792353+00 2025-09-01 13:55:50.792359+00 f t ADELANTO 11000.00 4 6636 \N +250837 2025-08-30 01:03:03.297641+00 2025-08-30 01:03:03.297651+00 f t SUBTOTAL 0.00 1 6471 \N +250838 2025-08-30 01:03:03.299842+00 2025-08-30 01:03:03.299852+00 f t DESCUENTO 0.00 2 6471 \N +250839 2025-08-30 01:03:03.301193+00 2025-08-30 01:03:03.301201+00 f t TOTAL 0.00 3 6471 \N +250840 2025-08-30 01:03:03.30233+00 2025-08-30 01:03:03.302336+00 f t ADELANTO 0.00 4 6471 \N +258525 2025-09-01 15:57:04.855488+00 2025-09-01 15:57:04.855501+00 f t SUBTOTAL 78000.00 1 6648 \N +258526 2025-09-01 15:57:04.857542+00 2025-09-01 15:57:04.857553+00 f t DESCUENTO 0.00 2 6648 \N +258527 2025-09-01 15:57:04.858957+00 2025-09-01 15:57:04.858965+00 f t TOTAL 78000.00 3 6648 \N +258528 2025-09-01 15:57:04.860396+00 2025-09-01 15:57:04.860404+00 f t ADELANTO 21500.00 4 6648 \N +258705 2025-09-01 17:38:42.873566+00 2025-09-01 17:38:42.873578+00 f t SUBTOTAL 0.00 1 6654 \N +258706 2025-09-01 17:38:42.875323+00 2025-09-01 17:38:42.875332+00 f t DESCUENTO 0.00 2 6654 \N +258707 2025-09-01 17:38:42.876714+00 2025-09-01 17:38:42.876722+00 f t TOTAL 0.00 3 6654 \N +258708 2025-09-01 17:38:42.877877+00 2025-09-01 17:38:42.877884+00 f t ADELANTO 0.00 4 6654 \N +259413 2025-09-01 19:59:21.983238+00 2025-09-01 19:59:21.98325+00 f t SUBTOTAL 76000.00 1 6666 \N +259414 2025-09-01 19:59:21.985408+00 2025-09-01 19:59:21.985417+00 f t DESCUENTO 0.00 2 6666 \N +259415 2025-09-01 19:59:21.987048+00 2025-09-01 19:59:21.987058+00 f t TOTAL 76000.00 3 6666 \N +259416 2025-09-01 19:59:21.988825+00 2025-09-01 19:59:21.988836+00 f t ADELANTO 11000.00 4 6666 \N +253617 2025-08-30 21:47:48.474525+00 2025-08-30 21:47:48.474539+00 f t SUBTOTAL 0.00 1 6534 \N +253618 2025-08-30 21:47:48.476938+00 2025-08-30 21:47:48.476949+00 f t DESCUENTO 0.00 2 6534 \N +253619 2025-08-30 21:47:48.47888+00 2025-08-30 21:47:48.478892+00 f t TOTAL 0.00 3 6534 \N +253620 2025-08-30 21:47:48.480689+00 2025-08-30 21:47:48.4807+00 f t ADELANTO 0.00 4 6534 \N +250909 2025-08-30 01:03:59.236591+00 2025-08-30 01:03:59.236601+00 f t SUBTOTAL 0.00 1 6470 \N +250910 2025-08-30 01:03:59.23919+00 2025-08-30 01:03:59.239198+00 f t DESCUENTO 0.00 2 6470 \N +250911 2025-08-30 01:03:59.240835+00 2025-08-30 01:03:59.240845+00 f t TOTAL 0.00 3 6470 \N +250912 2025-08-30 01:03:59.24335+00 2025-08-30 01:03:59.24336+00 f t ADELANTO 0.00 4 6470 \N +259657 2025-09-01 21:28:41.10302+00 2025-09-01 21:28:41.103032+00 f t SUBTOTAL 97200.00 1 6673 \N +259658 2025-09-01 21:28:41.105599+00 2025-09-01 21:28:41.105609+00 f t DESCUENTO 0.00 2 6673 \N +259659 2025-09-01 21:28:41.107387+00 2025-09-01 21:28:41.107395+00 f t TOTAL 97200.00 3 6673 \N +259660 2025-09-01 21:28:41.111385+00 2025-09-01 21:28:41.111394+00 f t ADELANTO 56700.00 4 6673 \N +254285 2025-08-31 02:42:10.85728+00 2025-08-31 02:42:10.85729+00 f t SUBTOTAL 0.00 1 6548 \N +254286 2025-08-31 02:42:10.864278+00 2025-08-31 02:42:10.864289+00 f t DESCUENTO 0.00 2 6548 \N +254287 2025-08-31 02:42:10.866443+00 2025-08-31 02:42:10.866452+00 f t TOTAL 0.00 3 6548 \N +254288 2025-08-31 02:42:10.868391+00 2025-08-31 02:42:10.868402+00 f t ADELANTO 0.00 4 6548 \N +250953 2025-08-30 01:07:48.417446+00 2025-08-30 01:07:48.417455+00 f t SUBTOTAL 0.00 1 6472 \N +250954 2025-08-30 01:07:48.419765+00 2025-08-30 01:07:48.419774+00 f t DESCUENTO 0.00 2 6472 \N +250955 2025-08-30 01:07:48.421018+00 2025-08-30 01:07:48.421028+00 f t TOTAL 0.00 3 6472 \N +250956 2025-08-30 01:07:48.422042+00 2025-08-30 01:07:48.422047+00 f t ADELANTO 0.00 4 6472 \N +250961 2025-08-30 01:43:50.312746+00 2025-08-30 01:43:50.312758+00 f t SUBTOTAL 0.00 1 6473 \N +250962 2025-08-30 01:43:50.314503+00 2025-08-30 01:43:50.314512+00 f t DESCUENTO 0.00 2 6473 \N +250963 2025-08-30 01:43:50.316027+00 2025-08-30 01:43:50.316033+00 f t TOTAL 0.00 3 6473 \N +250964 2025-08-30 01:43:50.317018+00 2025-08-30 01:43:50.317024+00 f t ADELANTO 0.00 4 6473 \N +254773 2025-08-31 12:32:55.870861+00 2025-08-31 12:32:55.870873+00 f t SUBTOTAL 57400.00 1 6560 \N +254774 2025-08-31 12:32:55.872677+00 2025-08-31 12:32:55.872685+00 f t DESCUENTO 0.00 2 6560 \N +254775 2025-08-31 12:32:55.87374+00 2025-08-31 12:32:55.873746+00 f t TOTAL 57400.00 3 6560 \N +254776 2025-08-31 12:32:55.874734+00 2025-08-31 12:32:55.874739+00 f t ADELANTO 13900.00 4 6560 \N +254909 2025-08-31 13:32:09.841053+00 2025-08-31 13:32:09.841064+00 f t SUBTOTAL 50000.00 1 6563 \N +254910 2025-08-31 13:32:09.843096+00 2025-08-31 13:32:09.843108+00 f t DESCUENTO 0.00 2 6563 \N +254911 2025-08-31 13:32:09.844933+00 2025-08-31 13:32:09.844943+00 f t TOTAL 50000.00 3 6563 \N +254912 2025-08-31 13:32:09.846222+00 2025-08-31 13:32:09.846231+00 f t ADELANTO 10000.00 4 6563 \N +260745 2025-09-02 10:57:50.56445+00 2025-09-02 10:57:50.56446+00 f t SUBTOTAL 61400.00 1 6700 \N +260746 2025-09-02 10:57:50.566468+00 2025-09-02 10:57:50.566475+00 f t DESCUENTO 0.00 2 6700 \N +260747 2025-09-02 10:57:50.567632+00 2025-09-02 10:57:50.567639+00 f t TOTAL 61400.00 3 6700 \N +260748 2025-09-02 10:57:50.569016+00 2025-09-02 10:57:50.569022+00 f t ADELANTO 15400.00 4 6700 \N +251013 2025-08-30 01:56:12.833803+00 2025-08-30 01:56:12.833815+00 f t SUBTOTAL 50000.00 1 6474 \N +251014 2025-08-30 01:56:12.83575+00 2025-08-30 01:56:12.835761+00 f t DESCUENTO 0.00 2 6474 \N +251015 2025-08-30 01:56:12.837374+00 2025-08-30 01:56:12.837383+00 f t TOTAL 50000.00 3 6474 \N +251016 2025-08-30 01:56:12.838879+00 2025-08-30 01:56:12.838887+00 f t ADELANTO 10000.00 4 6474 \N +251053 2025-08-30 02:01:17.777983+00 2025-08-30 02:01:17.777996+00 f t SUBTOTAL 0.00 1 6475 \N +251054 2025-08-30 02:01:17.780472+00 2025-08-30 02:01:17.780483+00 f t DESCUENTO 0.00 2 6475 \N +251055 2025-08-30 02:01:17.782258+00 2025-08-30 02:01:17.782269+00 f t TOTAL 0.00 3 6475 \N +251056 2025-08-30 02:01:17.783765+00 2025-08-30 02:01:17.783773+00 f t ADELANTO 0.00 4 6475 \N +251061 2025-08-30 02:01:40.843064+00 2025-08-30 02:01:40.843077+00 f t SUBTOTAL 0.00 1 6476 \N +251062 2025-08-30 02:01:40.84479+00 2025-08-30 02:01:40.844801+00 f t DESCUENTO 0.00 2 6476 \N +251063 2025-08-30 02:01:40.846342+00 2025-08-30 02:01:40.84635+00 f t TOTAL 0.00 3 6476 \N +251064 2025-08-30 02:01:40.847762+00 2025-08-30 02:01:40.847771+00 f t ADELANTO 0.00 4 6476 \N +251093 2025-08-30 03:11:41.019289+00 2025-08-30 03:11:41.019298+00 f t SUBTOTAL 0.00 1 6477 \N +251094 2025-08-30 03:11:41.021393+00 2025-08-30 03:11:41.021403+00 f t DESCUENTO 0.00 2 6477 \N +251095 2025-08-30 03:11:41.022696+00 2025-08-30 03:11:41.022704+00 f t TOTAL 0.00 3 6477 \N +251096 2025-08-30 03:11:41.023854+00 2025-08-30 03:11:41.02386+00 f t ADELANTO 0.00 4 6477 \N +270249 2025-09-05 11:35:15.534552+00 2025-09-05 11:35:15.534561+00 f t SUBTOTAL 46000.00 1 6945 \N +251121 2025-08-30 06:23:03.284262+00 2025-08-30 06:23:03.284272+00 f t SUBTOTAL 42000.00 1 6478 \N +251122 2025-08-30 06:23:03.286007+00 2025-08-30 06:23:03.286015+00 f t DESCUENTO 0.00 2 6478 \N +251123 2025-08-30 06:23:03.287327+00 2025-08-30 06:23:03.287334+00 f t TOTAL 42000.00 3 6478 \N +251124 2025-08-30 06:23:03.295082+00 2025-08-30 06:23:03.295093+00 f t ADELANTO 9500.00 4 6478 \N +258433 2025-09-01 15:32:32.478633+00 2025-09-01 15:32:32.478643+00 f t SUBTOTAL 0.00 1 6644 \N +258434 2025-09-01 15:32:32.48328+00 2025-09-01 15:32:32.48329+00 f t DESCUENTO 0.00 2 6644 \N +258435 2025-09-01 15:32:32.491256+00 2025-09-01 15:32:32.491265+00 f t TOTAL 0.00 3 6644 \N +258436 2025-09-01 15:32:32.506407+00 2025-09-01 15:32:32.50642+00 f t ADELANTO 0.00 4 6644 \N +252617 2025-08-30 16:39:10.465107+00 2025-08-30 16:39:10.465117+00 f t SUBTOTAL 0.00 1 6510 \N +252618 2025-08-30 16:39:10.467318+00 2025-08-30 16:39:10.467354+00 f t DESCUENTO 0.00 2 6510 \N +252619 2025-08-30 16:39:10.468931+00 2025-08-30 16:39:10.468938+00 f t TOTAL 0.00 3 6510 \N +252620 2025-08-30 16:39:10.470361+00 2025-08-30 16:39:10.470368+00 f t ADELANTO 0.00 4 6510 \N +252945 2025-08-30 17:37:30.47477+00 2025-08-30 17:37:30.47478+00 f t SUBTOTAL 50000.00 1 6520 \N +252946 2025-08-30 17:37:30.476614+00 2025-08-30 17:37:30.476623+00 f t DESCUENTO 0.00 2 6520 \N +252947 2025-08-30 17:37:30.477683+00 2025-08-30 17:37:30.477689+00 f t TOTAL 50000.00 3 6520 \N +252948 2025-08-30 17:37:30.479002+00 2025-08-30 17:37:30.479008+00 f t ADELANTO 10000.00 4 6520 \N +251153 2025-08-30 08:11:00.082688+00 2025-08-30 08:11:00.082698+00 f t SUBTOTAL 50000.00 1 6479 \N +251154 2025-08-30 08:11:00.084804+00 2025-08-30 08:11:00.084814+00 f t DESCUENTO 0.00 2 6479 \N +251155 2025-08-30 08:11:00.086958+00 2025-08-30 08:11:00.086967+00 f t TOTAL 50000.00 3 6479 \N +251156 2025-08-30 08:11:00.088901+00 2025-08-30 08:11:00.088909+00 f t ADELANTO 10000.00 4 6479 \N +253165 2025-08-30 18:37:32.785927+00 2025-08-30 18:37:32.78594+00 f t SUBTOTAL 72000.00 1 6523 \N +253166 2025-08-30 18:37:32.788171+00 2025-08-30 18:37:32.78818+00 f t DESCUENTO 0.00 2 6523 \N +253167 2025-08-30 18:37:32.789486+00 2025-08-30 18:37:32.789493+00 f t TOTAL 72000.00 3 6523 \N +253168 2025-08-30 18:37:32.790635+00 2025-08-30 18:37:32.790641+00 f t ADELANTO 19000.00 4 6523 \N +251189 2025-08-30 09:20:37.219422+00 2025-08-30 09:20:37.219435+00 f t SUBTOTAL 50000.00 1 6480 \N +251190 2025-08-30 09:20:37.221259+00 2025-08-30 09:20:37.221268+00 f t DESCUENTO 0.00 2 6480 \N +251191 2025-08-30 09:20:37.222503+00 2025-08-30 09:20:37.222509+00 f t TOTAL 50000.00 3 6480 \N +251192 2025-08-30 09:20:37.223788+00 2025-08-30 09:20:37.223795+00 f t ADELANTO 10000.00 4 6480 \N +253625 2025-08-30 21:57:36.631224+00 2025-08-30 21:57:36.631234+00 f t SUBTOTAL 0.00 1 6535 \N +253626 2025-08-30 21:57:36.632724+00 2025-08-30 21:57:36.632733+00 f t DESCUENTO 0.00 2 6535 \N +253627 2025-08-30 21:57:36.63429+00 2025-08-30 21:57:36.634298+00 f t TOTAL 0.00 3 6535 \N +253628 2025-08-30 21:57:36.635412+00 2025-08-30 21:57:36.635422+00 f t ADELANTO 0.00 4 6535 \N +259497 2025-09-01 20:10:16.561363+00 2025-09-01 20:10:16.561376+00 f t SUBTOTAL 102000.00 1 6668 \N +259498 2025-09-01 20:10:16.564733+00 2025-09-01 20:10:16.564745+00 f t DESCUENTO 0.00 2 6668 \N +259499 2025-09-01 20:10:16.566889+00 2025-09-01 20:10:16.566899+00 f t TOTAL 102000.00 3 6668 \N +259500 2025-09-01 20:10:16.568703+00 2025-09-01 20:10:16.568713+00 f t ADELANTO 29500.00 4 6668 \N +254009 2025-08-31 01:24:41.619503+00 2025-08-31 01:24:41.619513+00 f t SUBTOTAL 42000.00 1 6546 \N +254010 2025-08-31 01:24:41.622514+00 2025-08-31 01:24:41.622524+00 f t DESCUENTO 0.00 2 6546 \N +254011 2025-08-31 01:24:41.624043+00 2025-08-31 01:24:41.624049+00 f t TOTAL 42000.00 3 6546 \N +254012 2025-08-31 01:24:41.625137+00 2025-08-31 01:24:41.625144+00 f t ADELANTO 9500.00 4 6546 \N +251237 2025-08-30 10:03:49.238714+00 2025-08-30 10:03:49.238723+00 f t SUBTOTAL 50000.00 1 6481 \N +251238 2025-08-30 10:03:49.240472+00 2025-08-30 10:03:49.240479+00 f t DESCUENTO 0.00 2 6481 \N +251239 2025-08-30 10:03:49.241722+00 2025-08-30 10:03:49.241728+00 f t TOTAL 50000.00 3 6481 \N +251240 2025-08-30 10:03:49.242844+00 2025-08-30 10:03:49.242849+00 f t ADELANTO 10000.00 4 6481 \N +254369 2025-08-31 04:38:17.965378+00 2025-08-31 04:38:17.965386+00 f t SUBTOTAL 95700.00 1 6551 \N +254370 2025-08-31 04:38:17.967623+00 2025-08-31 04:38:17.96763+00 f t DESCUENTO 0.00 2 6551 \N +254371 2025-08-31 04:38:17.96908+00 2025-08-31 04:38:17.969086+00 f t TOTAL 95700.00 3 6551 \N +254372 2025-08-31 04:38:17.970392+00 2025-08-31 04:38:17.970397+00 f t ADELANTO 57700.00 4 6551 \N +260129 2025-09-01 23:23:58.337133+00 2025-09-01 23:23:58.337148+00 f t SUBTOTAL 54000.00 1 6682 \N +260130 2025-09-01 23:23:58.339358+00 2025-09-01 23:23:58.339367+00 f t DESCUENTO 0.00 2 6682 \N +260131 2025-09-01 23:23:58.340584+00 2025-09-01 23:23:58.34059+00 f t TOTAL 54000.00 3 6682 \N +260132 2025-09-01 23:23:58.344011+00 2025-09-01 23:23:58.344017+00 f t ADELANTO 13500.00 4 6682 \N +260293 2025-09-01 23:57:07.789075+00 2025-09-01 23:57:07.789085+00 f t SUBTOTAL 0.00 1 6679 \N +260294 2025-09-01 23:57:07.791676+00 2025-09-01 23:57:07.791684+00 f t DESCUENTO 0.00 2 6679 \N +260295 2025-09-01 23:57:07.793214+00 2025-09-01 23:57:07.793222+00 f t TOTAL 0.00 3 6679 \N +260296 2025-09-01 23:57:07.794548+00 2025-09-01 23:57:07.794554+00 f t ADELANTO 0.00 4 6679 \N +260809 2025-09-02 11:42:53.243966+00 2025-09-02 11:42:53.24398+00 f t SUBTOTAL 0.00 1 6702 \N +260810 2025-09-02 11:42:53.246009+00 2025-09-02 11:42:53.24602+00 f t DESCUENTO 0.00 2 6702 \N +260811 2025-09-02 11:42:53.247423+00 2025-09-02 11:42:53.247432+00 f t TOTAL 0.00 3 6702 \N +260812 2025-09-02 11:42:53.248846+00 2025-09-02 11:42:53.248855+00 f t ADELANTO 0.00 4 6702 \N +255253 2025-08-31 15:35:35.700943+00 2025-08-31 15:35:35.700956+00 f t SUBTOTAL 0.00 1 6572 \N +255254 2025-08-31 15:35:35.702771+00 2025-08-31 15:35:35.702783+00 f t DESCUENTO 0.00 2 6572 \N +255255 2025-08-31 15:35:35.705893+00 2025-08-31 15:35:35.705906+00 f t TOTAL 0.00 3 6572 \N +255256 2025-08-31 15:35:35.707763+00 2025-08-31 15:35:35.707773+00 f t ADELANTO 0.00 4 6572 \N +255629 2025-08-31 16:39:16.802042+00 2025-08-31 16:39:16.802051+00 f t SUBTOTAL 64500.00 1 6578 \N +255630 2025-08-31 16:39:16.803798+00 2025-08-31 16:39:16.803805+00 f t DESCUENTO 0.00 2 6578 \N +255631 2025-08-31 16:39:16.80496+00 2025-08-31 16:39:16.804968+00 f t TOTAL 64500.00 3 6578 \N +255632 2025-08-31 16:39:16.80598+00 2025-08-31 16:39:16.805987+00 f t ADELANTO 17000.00 4 6578 \N +255753 2025-08-31 17:44:53.5541+00 2025-08-31 17:44:53.554109+00 f t SUBTOTAL 64500.00 1 6581 \N +255754 2025-08-31 17:44:53.55592+00 2025-08-31 17:44:53.555928+00 f t DESCUENTO 0.00 2 6581 \N +251341 2025-08-30 10:43:40.637474+00 2025-08-30 10:43:40.637483+00 f t SUBTOTAL 50000.00 1 6482 \N +251342 2025-08-30 10:43:40.639237+00 2025-08-30 10:43:40.639245+00 f t DESCUENTO 0.00 2 6482 \N +251343 2025-08-30 10:43:40.640491+00 2025-08-30 10:43:40.640497+00 f t TOTAL 50000.00 3 6482 \N +251344 2025-08-30 10:43:40.641548+00 2025-08-30 10:43:40.641555+00 f t ADELANTO 10000.00 4 6482 \N +255755 2025-08-31 17:44:53.557163+00 2025-08-31 17:44:53.557169+00 f t TOTAL 64500.00 3 6581 \N +255756 2025-08-31 17:44:53.558298+00 2025-08-31 17:44:53.558304+00 f t ADELANTO 17000.00 4 6581 \N +256150 2025-08-31 20:21:03.681319+00 2025-08-31 20:21:03.681329+00 f t DESCUENTO 0.00 2 6589 \N +256151 2025-08-31 20:21:03.683273+00 2025-08-31 20:21:03.683283+00 f t TOTAL 0.00 3 6589 \N +256152 2025-08-31 20:21:03.684583+00 2025-08-31 20:21:03.684591+00 f t ADELANTO 0.00 4 6589 \N +252305 2025-08-30 16:24:49.677519+00 2025-08-30 16:24:49.677529+00 f t SUBTOTAL 64500.00 1 6507 \N +252306 2025-08-30 16:24:49.679318+00 2025-08-30 16:24:49.679326+00 f t DESCUENTO 0.00 2 6507 \N +252307 2025-08-30 16:24:49.680686+00 2025-08-30 16:24:49.680693+00 f t TOTAL 64500.00 3 6507 \N +252308 2025-08-30 16:24:49.681929+00 2025-08-30 16:24:49.681936+00 f t ADELANTO 17000.00 4 6507 \N +258441 2025-09-01 15:45:39.674121+00 2025-09-01 15:45:39.674135+00 f t SUBTOTAL 0.00 1 6645 \N +258442 2025-09-01 15:45:39.676873+00 2025-09-01 15:45:39.676886+00 f t DESCUENTO 0.00 2 6645 \N +258443 2025-09-01 15:45:39.678355+00 2025-09-01 15:45:39.678365+00 f t TOTAL 0.00 3 6645 \N +258444 2025-09-01 15:45:39.67972+00 2025-09-01 15:45:39.679729+00 f t ADELANTO 0.00 4 6645 \N +251433 2025-08-30 11:34:18.058977+00 2025-08-30 11:34:18.058985+00 f t SUBTOTAL 0.00 1 6483 \N +251434 2025-08-30 11:34:18.060697+00 2025-08-30 11:34:18.060703+00 f t DESCUENTO 0.00 2 6483 \N +251435 2025-08-30 11:34:18.062124+00 2025-08-30 11:34:18.062131+00 f t TOTAL 0.00 3 6483 \N +251436 2025-08-30 11:34:18.06343+00 2025-08-30 11:34:18.063436+00 f t ADELANTO 0.00 4 6483 \N +251441 2025-08-30 11:34:23.280751+00 2025-08-30 11:34:23.280764+00 f t SUBTOTAL 0.00 1 6484 \N +251442 2025-08-30 11:34:23.283099+00 2025-08-30 11:34:23.28311+00 f t DESCUENTO 0.00 2 6484 \N +251443 2025-08-30 11:34:23.284739+00 2025-08-30 11:34:23.28475+00 f t TOTAL 0.00 3 6484 \N +251444 2025-08-30 11:34:23.286525+00 2025-08-30 11:34:23.286535+00 f t ADELANTO 0.00 4 6484 \N +251469 2025-08-30 12:08:56.592486+00 2025-08-30 12:08:56.592495+00 f t SUBTOTAL 42000.00 1 6485 \N +251470 2025-08-30 12:08:56.594323+00 2025-08-30 12:08:56.594331+00 f t DESCUENTO 0.00 2 6485 \N +251471 2025-08-30 12:08:56.595602+00 2025-08-30 12:08:56.595611+00 f t TOTAL 42000.00 3 6485 \N +251472 2025-08-30 12:08:56.596708+00 2025-08-30 12:08:56.596714+00 f t ADELANTO 9500.00 4 6485 \N +251477 2025-08-30 13:20:05.268965+00 2025-08-30 13:20:05.26898+00 f t SUBTOTAL 0.00 1 6486 \N +251478 2025-08-30 13:20:05.272074+00 2025-08-30 13:20:05.272084+00 f t DESCUENTO 0.00 2 6486 \N +251479 2025-08-30 13:20:05.274311+00 2025-08-30 13:20:05.27432+00 f t TOTAL 0.00 3 6486 \N +251480 2025-08-30 13:20:05.277054+00 2025-08-30 13:20:05.277067+00 f t ADELANTO 0.00 4 6486 \N +251485 2025-08-30 13:29:40.831296+00 2025-08-30 13:29:40.831308+00 f t SUBTOTAL 0.00 1 6487 \N +251486 2025-08-30 13:29:40.83301+00 2025-08-30 13:29:40.833018+00 f t DESCUENTO 0.00 2 6487 \N +251487 2025-08-30 13:29:40.834242+00 2025-08-30 13:29:40.834248+00 f t TOTAL 0.00 3 6487 \N +251488 2025-08-30 13:29:40.835527+00 2025-08-30 13:29:40.835532+00 f t ADELANTO 0.00 4 6487 \N +253633 2025-08-30 22:11:32.363272+00 2025-08-30 22:11:32.363281+00 f t SUBTOTAL 0.00 1 6536 \N +253634 2025-08-30 22:11:32.364679+00 2025-08-30 22:11:32.364688+00 f t DESCUENTO 0.00 2 6536 \N +253635 2025-08-30 22:11:32.365841+00 2025-08-30 22:11:32.365849+00 f t TOTAL 0.00 3 6536 \N +253636 2025-08-30 22:11:32.366897+00 2025-08-30 22:11:32.366904+00 f t ADELANTO 0.00 4 6536 \N +253717 2025-08-30 22:39:52.861742+00 2025-08-30 22:39:52.861752+00 f t SUBTOTAL 0.00 1 6540 \N +253718 2025-08-30 22:39:52.863611+00 2025-08-30 22:39:52.863618+00 f t DESCUENTO 0.00 2 6540 \N +253719 2025-08-30 22:39:52.864755+00 2025-08-30 22:39:52.864761+00 f t TOTAL 0.00 3 6540 \N +253720 2025-08-30 22:39:52.865676+00 2025-08-30 22:39:52.865681+00 f t ADELANTO 0.00 4 6540 \N +251525 2025-08-30 13:51:03.885835+00 2025-08-30 13:51:03.885849+00 f t SUBTOTAL 95500.00 1 6488 \N +251526 2025-08-30 13:51:03.888449+00 2025-08-30 13:51:03.888461+00 f t DESCUENTO 0.00 2 6488 \N +251527 2025-08-30 13:51:03.890271+00 2025-08-30 13:51:03.890282+00 f t TOTAL 95500.00 3 6488 \N +251528 2025-08-30 13:51:03.89203+00 2025-08-30 13:51:03.89204+00 f t ADELANTO 21000.00 4 6488 \N +251533 2025-08-30 13:53:46.561717+00 2025-08-30 13:53:46.561731+00 f t SUBTOTAL 0.00 1 6489 \N +251534 2025-08-30 13:53:46.563501+00 2025-08-30 13:53:46.563511+00 f t DESCUENTO 0.00 2 6489 \N +251535 2025-08-30 13:53:46.565086+00 2025-08-30 13:53:46.565096+00 f t TOTAL 0.00 3 6489 \N +251536 2025-08-30 13:53:46.56694+00 2025-08-30 13:53:46.56695+00 f t ADELANTO 0.00 4 6489 \N +260137 2025-09-01 23:27:14.070211+00 2025-09-01 23:27:14.070222+00 f t SUBTOTAL 0.00 1 6683 \N +260138 2025-09-01 23:27:14.071996+00 2025-09-01 23:27:14.072007+00 f t DESCUENTO 0.00 2 6683 \N +260139 2025-09-01 23:27:14.073738+00 2025-09-01 23:27:14.073748+00 f t TOTAL 0.00 3 6683 \N +260140 2025-09-01 23:27:14.075347+00 2025-09-01 23:27:14.075356+00 f t ADELANTO 0.00 4 6683 \N +254445 2025-08-31 09:46:13.776699+00 2025-08-31 09:46:13.776712+00 f t SUBTOTAL 0.00 1 6553 \N +254446 2025-08-31 09:46:13.779648+00 2025-08-31 09:46:13.779658+00 f t DESCUENTO 0.00 2 6553 \N +254447 2025-08-31 09:46:13.782102+00 2025-08-31 09:46:13.782111+00 f t TOTAL 0.00 3 6553 \N +254448 2025-08-31 09:46:13.783869+00 2025-08-31 09:46:13.783881+00 f t ADELANTO 0.00 4 6553 \N +251597 2025-08-30 13:57:30.438849+00 2025-08-30 13:57:30.438861+00 f t SUBTOTAL 42000.00 1 6490 \N +251598 2025-08-30 13:57:30.440845+00 2025-08-30 13:57:30.440855+00 f t DESCUENTO 0.00 2 6490 \N +251599 2025-08-30 13:57:30.44247+00 2025-08-30 13:57:30.44248+00 f t TOTAL 42000.00 3 6490 \N +251600 2025-08-30 13:57:30.443993+00 2025-08-30 13:57:30.444002+00 f t ADELANTO 9500.00 4 6490 \N +255053 2025-08-31 14:47:21.364086+00 2025-08-31 14:47:21.364095+00 f t SUBTOTAL 42000.00 1 6567 \N +255054 2025-08-31 14:47:21.365753+00 2025-08-31 14:47:21.365762+00 f t DESCUENTO 0.00 2 6567 \N +255055 2025-08-31 14:47:21.366727+00 2025-08-31 14:47:21.366733+00 f t TOTAL 42000.00 3 6567 \N +255056 2025-08-31 14:47:21.367778+00 2025-08-31 14:47:21.367784+00 f t ADELANTO 9500.00 4 6567 \N +260989 2025-09-02 12:03:09.76822+00 2025-09-02 12:03:09.768233+00 f t SUBTOTAL 46000.00 1 6707 \N +260990 2025-09-02 12:03:09.770326+00 2025-09-02 12:03:09.770338+00 f t DESCUENTO 0.00 2 6707 \N +260991 2025-09-02 12:03:09.772025+00 2025-09-02 12:03:09.772036+00 f t TOTAL 46000.00 3 6707 \N +260992 2025-09-02 12:03:09.773545+00 2025-09-02 12:03:09.773553+00 f t ADELANTO 11000.00 4 6707 \N +261101 2025-09-02 12:52:05.974691+00 2025-09-02 12:52:05.974699+00 f t SUBTOTAL 76000.00 1 6709 \N +261102 2025-09-02 12:52:05.981592+00 2025-09-02 12:52:05.981603+00 f t DESCUENTO 0.00 2 6709 \N +261103 2025-09-02 12:52:05.983711+00 2025-09-02 12:52:05.98372+00 f t TOTAL 76000.00 3 6709 \N +261104 2025-09-02 12:52:05.985501+00 2025-09-02 12:52:05.985509+00 f t ADELANTO 11000.00 4 6709 \N +261153 2025-09-02 13:08:04.923118+00 2025-09-02 13:08:04.92316+00 f t SUBTOTAL 0.00 1 6710 \N +251653 2025-08-30 14:08:20.449356+00 2025-08-30 14:08:20.449366+00 f t SUBTOTAL 50000.00 1 6491 \N +251654 2025-08-30 14:08:20.451122+00 2025-08-30 14:08:20.451152+00 f t DESCUENTO 0.00 2 6491 \N +251655 2025-08-30 14:08:20.452516+00 2025-08-30 14:08:20.452522+00 f t TOTAL 50000.00 3 6491 \N +251656 2025-08-30 14:08:20.453754+00 2025-08-30 14:08:20.453759+00 f t ADELANTO 10000.00 4 6491 \N +255917 2025-08-31 18:44:38.065621+00 2025-08-31 18:44:38.065631+00 f t SUBTOTAL 0.00 1 6583 \N +255918 2025-08-31 18:44:38.067983+00 2025-08-31 18:44:38.067991+00 f t DESCUENTO 0.00 2 6583 \N +255919 2025-08-31 18:44:38.069249+00 2025-08-31 18:44:38.069257+00 f t TOTAL 0.00 3 6583 \N +255920 2025-08-31 18:44:38.070544+00 2025-08-31 18:44:38.070549+00 f t ADELANTO 0.00 4 6583 \N +255969 2025-08-31 19:50:17.119636+00 2025-08-31 19:50:17.119645+00 f t SUBTOTAL 0.00 1 6585 \N +255970 2025-08-31 19:50:17.121757+00 2025-08-31 19:50:17.121764+00 f t DESCUENTO 0.00 2 6585 \N +255971 2025-08-31 19:50:17.122904+00 2025-08-31 19:50:17.12291+00 f t TOTAL 0.00 3 6585 \N +270121 2025-09-05 11:12:07.587991+00 2025-09-05 11:12:07.588001+00 f t SUBTOTAL 70000.00 1 6943 \N +258449 2025-09-01 15:46:29.750088+00 2025-09-01 15:46:29.750097+00 f t SUBTOTAL 0.00 1 6646 \N +258450 2025-09-01 15:46:29.751324+00 2025-09-01 15:46:29.751331+00 f t DESCUENTO 0.00 2 6646 \N +258451 2025-09-01 15:46:29.75249+00 2025-09-01 15:46:29.752496+00 f t TOTAL 0.00 3 6646 \N +258452 2025-09-01 15:46:29.753863+00 2025-09-01 15:46:29.753869+00 f t ADELANTO 0.00 4 6646 \N +252793 2025-08-30 16:47:39.063705+00 2025-08-30 16:47:39.063718+00 f t SUBTOTAL 42000.00 1 6514 \N +252794 2025-08-30 16:47:39.065338+00 2025-08-30 16:47:39.065345+00 f t DESCUENTO 0.00 2 6514 \N +252795 2025-08-30 16:47:39.06654+00 2025-08-30 16:47:39.066546+00 f t TOTAL 42000.00 3 6514 \N +252796 2025-08-30 16:47:39.06768+00 2025-08-30 16:47:39.067685+00 f t ADELANTO 9500.00 4 6514 \N +251725 2025-08-30 14:24:22.339509+00 2025-08-30 14:24:22.339522+00 f t SUBTOTAL 50000.00 1 6492 \N +251726 2025-08-30 14:24:22.341413+00 2025-08-30 14:24:22.341422+00 f t DESCUENTO 0.00 2 6492 \N +251727 2025-08-30 14:24:22.343296+00 2025-08-30 14:24:22.343306+00 f t TOTAL 50000.00 3 6492 \N +251728 2025-08-30 14:24:22.344901+00 2025-08-30 14:24:22.34491+00 f t ADELANTO 10000.00 4 6492 \N +251741 2025-08-30 14:24:46.902465+00 2025-08-30 14:24:46.902477+00 f t SUBTOTAL 50000.00 1 6493 \N +251742 2025-08-30 14:24:46.904813+00 2025-08-30 14:24:46.904824+00 f t DESCUENTO 0.00 2 6493 \N +251743 2025-08-30 14:24:46.906579+00 2025-08-30 14:24:46.906587+00 f t TOTAL 50000.00 3 6493 \N +251744 2025-08-30 14:24:46.908168+00 2025-08-30 14:24:46.908174+00 f t ADELANTO 10000.00 4 6493 \N +253641 2025-08-30 22:12:46.720978+00 2025-08-30 22:12:46.720987+00 f t SUBTOTAL 0.00 1 6537 \N +253642 2025-08-30 22:12:46.72558+00 2025-08-30 22:12:46.725591+00 f t DESCUENTO 0.00 2 6537 \N +253643 2025-08-30 22:12:46.729707+00 2025-08-30 22:12:46.729717+00 f t TOTAL 0.00 3 6537 \N +253644 2025-08-30 22:12:46.732592+00 2025-08-30 22:12:46.732605+00 f t ADELANTO 0.00 4 6537 \N +259745 2025-09-01 21:48:53.891093+00 2025-09-01 21:48:53.891104+00 f t SUBTOTAL 78000.00 1 6674 \N +259746 2025-09-01 21:48:53.893759+00 2025-09-01 21:48:53.893769+00 f t DESCUENTO 0.00 2 6674 \N +259747 2025-09-01 21:48:53.895664+00 2025-09-01 21:48:53.895674+00 f t TOTAL 78000.00 3 6674 \N +259748 2025-09-01 21:48:53.89734+00 2025-09-01 21:48:53.897349+00 f t ADELANTO 21500.00 4 6674 \N +259897 2025-09-01 22:29:23.88491+00 2025-09-01 22:29:23.88492+00 f t SUBTOTAL 46000.00 1 6676 \N +259898 2025-09-01 22:29:23.88704+00 2025-09-01 22:29:23.887049+00 f t DESCUENTO 0.00 2 6676 \N +259899 2025-09-01 22:29:23.88841+00 2025-09-01 22:29:23.888416+00 f t TOTAL 46000.00 3 6676 \N +259900 2025-09-01 22:29:23.889897+00 2025-09-01 22:29:23.889903+00 f t ADELANTO 11000.00 4 6676 \N +260145 2025-09-01 23:46:52.333929+00 2025-09-01 23:46:52.333937+00 f t SUBTOTAL 0.00 1 6684 \N +260146 2025-09-01 23:46:52.335267+00 2025-09-01 23:46:52.335274+00 f t DESCUENTO 0.00 2 6684 \N +260147 2025-09-01 23:46:52.336345+00 2025-09-01 23:46:52.336351+00 f t TOTAL 0.00 3 6684 \N +260148 2025-09-01 23:46:52.337525+00 2025-09-01 23:46:52.33753+00 f t ADELANTO 0.00 4 6684 \N +251825 2025-08-30 14:45:43.240184+00 2025-08-30 14:45:43.240193+00 f t SUBTOTAL 0.00 1 6495 \N +251826 2025-08-30 14:45:43.242428+00 2025-08-30 14:45:43.242435+00 f t DESCUENTO 0.00 2 6495 \N +251827 2025-08-30 14:45:43.243722+00 2025-08-30 14:45:43.243727+00 f t TOTAL 0.00 3 6495 \N +251828 2025-08-30 14:45:43.244937+00 2025-08-30 14:45:43.244944+00 f t ADELANTO 0.00 4 6495 \N +254589 2025-08-31 11:54:15.060433+00 2025-08-31 11:54:15.060444+00 f t SUBTOTAL 50000.00 1 6556 \N +254590 2025-08-31 11:54:15.062665+00 2025-08-31 11:54:15.062674+00 f t DESCUENTO 0.00 2 6556 \N +254591 2025-08-31 11:54:15.069188+00 2025-08-31 11:54:15.069198+00 f t TOTAL 50000.00 3 6556 \N +254592 2025-08-31 11:54:15.070993+00 2025-08-31 11:54:15.071002+00 f t ADELANTO 10000.00 4 6556 \N +260673 2025-09-02 04:19:02.256169+00 2025-09-02 04:19:02.256182+00 f t SUBTOTAL 97200.00 1 6696 \N +260674 2025-09-02 04:19:02.260788+00 2025-09-02 04:19:02.260803+00 f t DESCUENTO 0.00 2 6696 \N +260675 2025-09-02 04:19:02.267598+00 2025-09-02 04:19:02.267615+00 f t TOTAL 97200.00 3 6696 \N +260676 2025-09-02 04:19:02.27614+00 2025-09-02 04:19:02.276155+00 f t ADELANTO 56700.00 4 6696 \N +255061 2025-08-31 14:59:48.022038+00 2025-08-31 14:59:48.022045+00 f t SUBTOTAL 0.00 1 6568 \N +255062 2025-08-31 14:59:48.023322+00 2025-08-31 14:59:48.02333+00 f t DESCUENTO 0.00 2 6568 \N +255063 2025-08-31 14:59:48.024308+00 2025-08-31 14:59:48.024313+00 f t TOTAL 0.00 3 6568 \N +255064 2025-08-31 14:59:48.025171+00 2025-08-31 14:59:48.025177+00 f t ADELANTO 0.00 4 6568 \N +251885 2025-08-30 14:46:24.051249+00 2025-08-30 14:46:24.051259+00 f t SUBTOTAL 27500.00 1 6496 \N +251886 2025-08-30 14:46:24.053127+00 2025-08-30 14:46:24.053135+00 f t DESCUENTO 0.00 2 6496 \N +251887 2025-08-30 14:46:24.054481+00 2025-08-30 14:46:24.054487+00 f t TOTAL 27500.00 3 6496 \N +251888 2025-08-30 14:46:24.055733+00 2025-08-30 14:46:24.055739+00 f t ADELANTO 27500.00 4 6496 \N +255449 2025-08-31 15:43:25.543764+00 2025-08-31 15:43:25.543774+00 f t SUBTOTAL 0.00 1 6574 \N +255450 2025-08-31 15:43:25.545585+00 2025-08-31 15:43:25.545593+00 f t DESCUENTO 0.00 2 6574 \N +255451 2025-08-31 15:43:25.54664+00 2025-08-31 15:43:25.546646+00 f t TOTAL 0.00 3 6574 \N +255452 2025-08-31 15:43:25.547657+00 2025-08-31 15:43:25.547663+00 f t ADELANTO 0.00 4 6574 \N +255517 2025-08-31 15:45:24.4609+00 2025-08-31 15:45:24.460912+00 f t SUBTOTAL 0.00 1 6575 \N +255518 2025-08-31 15:45:24.46342+00 2025-08-31 15:45:24.463431+00 f t DESCUENTO 0.00 2 6575 \N +255519 2025-08-31 15:45:24.465081+00 2025-08-31 15:45:24.46509+00 f t TOTAL 0.00 3 6575 \N +255520 2025-08-31 15:45:24.466344+00 2025-08-31 15:45:24.466353+00 f t ADELANTO 0.00 4 6575 \N +251917 2025-08-30 14:46:56.489954+00 2025-08-30 14:46:56.489965+00 f t SUBTOTAL 0.00 1 6497 \N +251918 2025-08-30 14:46:56.492358+00 2025-08-30 14:46:56.492367+00 f t DESCUENTO 0.00 2 6497 \N +251919 2025-08-30 14:46:56.493804+00 2025-08-30 14:46:56.493811+00 f t TOTAL 0.00 3 6497 \N +251920 2025-08-30 14:46:56.497608+00 2025-08-30 14:46:56.497618+00 f t ADELANTO 0.00 4 6497 \N +255972 2025-08-31 19:50:17.124057+00 2025-08-31 19:50:17.124063+00 f t ADELANTO 0.00 4 6585 \N +256041 2025-08-31 19:56:52.653228+00 2025-08-31 19:56:52.653238+00 f t SUBTOTAL 0.00 1 6586 \N +256042 2025-08-31 19:56:52.65535+00 2025-08-31 19:56:52.655357+00 f t DESCUENTO 0.00 2 6586 \N +256043 2025-08-31 19:56:52.656477+00 2025-08-31 19:56:52.656484+00 f t TOTAL 0.00 3 6586 \N +251949 2025-08-30 14:50:58.436905+00 2025-08-30 14:50:58.436916+00 f t SUBTOTAL 0.00 1 6498 \N +251950 2025-08-30 14:50:58.438356+00 2025-08-30 14:50:58.438364+00 f t DESCUENTO 0.00 2 6498 \N +251951 2025-08-30 14:50:58.439489+00 2025-08-30 14:50:58.439495+00 f t TOTAL 0.00 3 6498 \N +251952 2025-08-30 14:50:58.440411+00 2025-08-30 14:50:58.440416+00 f t ADELANTO 0.00 4 6498 \N +256044 2025-08-31 19:56:52.657592+00 2025-08-31 19:56:52.657598+00 f t ADELANTO 0.00 4 6586 \N +251965 2025-08-30 14:51:40.653942+00 2025-08-30 14:51:40.653951+00 f t SUBTOTAL 269200.00 1 6494 \N +251966 2025-08-30 14:51:40.655615+00 2025-08-30 14:51:40.655622+00 f t DESCUENTO 0.00 2 6494 \N +251967 2025-08-30 14:51:40.657189+00 2025-08-30 14:51:40.657197+00 f t TOTAL 269200.00 3 6494 \N +251968 2025-08-30 14:51:40.658534+00 2025-08-30 14:51:40.65854+00 f t ADELANTO 192200.00 4 6494 \N +256141 2025-08-31 20:14:22.888384+00 2025-08-31 20:14:22.888393+00 f t SUBTOTAL 72000.00 1 6588 \N +256142 2025-08-31 20:14:22.890114+00 2025-08-31 20:14:22.89012+00 f t DESCUENTO 0.00 2 6588 \N +270122 2025-09-05 11:12:07.590433+00 2025-09-05 11:12:07.590444+00 f t DESCUENTO 0.00 2 6943 \N +270123 2025-09-05 11:12:07.59284+00 2025-09-05 11:12:07.592853+00 f t TOTAL 70000.00 3 6943 \N +270124 2025-09-05 11:12:07.594923+00 2025-09-05 11:12:07.594935+00 f t ADELANTO 19000.00 4 6943 \N +270250 2025-09-05 11:35:15.536162+00 2025-09-05 11:35:15.536168+00 f t DESCUENTO 0.00 2 6945 \N +270251 2025-09-05 11:35:15.53754+00 2025-09-05 11:35:15.537546+00 f t TOTAL 46000.00 3 6945 \N +270252 2025-09-05 11:35:15.538537+00 2025-09-05 11:35:15.538546+00 f t ADELANTO 11000.00 4 6945 \N +256193 2025-08-31 20:26:11.108708+00 2025-08-31 20:26:11.108721+00 f t SUBTOTAL 75000.00 1 6590 \N +256194 2025-08-31 20:26:11.110726+00 2025-08-31 20:26:11.110734+00 f t DESCUENTO 0.00 2 6590 \N +256195 2025-08-31 20:26:11.112167+00 2025-08-31 20:26:11.112178+00 f t TOTAL 75000.00 3 6590 \N +256196 2025-08-31 20:26:11.115645+00 2025-08-31 20:26:11.115654+00 f t ADELANTO 15000.00 4 6590 \N +256201 2025-08-31 20:29:48.107412+00 2025-08-31 20:29:48.107429+00 f t SUBTOTAL 0.00 1 6591 \N +256202 2025-08-31 20:29:48.109021+00 2025-08-31 20:29:48.109029+00 f t DESCUENTO 0.00 2 6591 \N +256203 2025-08-31 20:29:48.110335+00 2025-08-31 20:29:48.110341+00 f t TOTAL 0.00 3 6591 \N +256204 2025-08-31 20:29:48.111441+00 2025-08-31 20:29:48.111447+00 f t ADELANTO 0.00 4 6591 \N +258457 2025-09-01 15:51:55.218957+00 2025-09-01 15:51:55.21897+00 f t SUBTOTAL 0.00 1 6647 \N +258458 2025-09-01 15:51:55.224632+00 2025-09-01 15:51:55.224642+00 f t DESCUENTO 0.00 2 6647 \N +258459 2025-09-01 15:51:55.226643+00 2025-09-01 15:51:55.226652+00 f t TOTAL 0.00 3 6647 \N +258460 2025-09-01 15:51:55.228423+00 2025-09-01 15:51:55.228432+00 f t ADELANTO 0.00 4 6647 \N +259053 2025-09-01 19:17:54.127402+00 2025-09-01 19:17:54.127415+00 f t SUBTOTAL 115000.00 1 6662 \N +259054 2025-09-01 19:17:54.129335+00 2025-09-01 19:17:54.129344+00 f t DESCUENTO 0.00 2 6662 \N +259055 2025-09-01 19:17:54.130759+00 2025-09-01 19:17:54.130768+00 f t TOTAL 115000.00 3 6662 \N +256249 2025-08-31 20:36:21.815823+00 2025-08-31 20:36:21.815834+00 f t SUBTOTAL 75000.00 1 6576 \N +256250 2025-08-31 20:36:21.817896+00 2025-08-31 20:36:21.817906+00 f t DESCUENTO 0.00 2 6576 \N +256251 2025-08-31 20:36:21.819441+00 2025-08-31 20:36:21.81945+00 f t TOTAL 75000.00 3 6576 \N +256252 2025-08-31 20:36:21.820867+00 2025-08-31 20:36:21.820874+00 f t ADELANTO 15000.00 4 6576 \N +259056 2025-09-01 19:17:54.132162+00 2025-09-01 19:17:54.132171+00 f t ADELANTO 25000.00 4 6662 \N +256257 2025-08-31 20:49:37.596517+00 2025-08-31 20:49:37.596539+00 f t SUBTOTAL 0.00 1 6592 \N +256258 2025-08-31 20:49:37.59867+00 2025-08-31 20:49:37.598683+00 f t DESCUENTO 0.00 2 6592 \N +256259 2025-08-31 20:49:37.600354+00 2025-08-31 20:49:37.600364+00 f t TOTAL 0.00 3 6592 \N +256260 2025-08-31 20:49:37.602092+00 2025-08-31 20:49:37.602102+00 f t ADELANTO 0.00 4 6592 \N +259593 2025-09-01 20:49:12.479415+00 2025-09-01 20:49:12.479426+00 f t SUBTOTAL 55000.00 1 6671 \N +259594 2025-09-01 20:49:12.481666+00 2025-09-01 20:49:12.481678+00 f t DESCUENTO 0.00 2 6671 \N +259595 2025-09-01 20:49:12.483264+00 2025-09-01 20:49:12.483271+00 f t TOTAL 55000.00 3 6671 \N +259596 2025-09-01 20:49:12.484828+00 2025-09-01 20:49:12.484838+00 f t ADELANTO 11000.00 4 6671 \N +256301 2025-08-31 20:57:57.548963+00 2025-08-31 20:57:57.548974+00 f t SUBTOTAL 50000.00 1 6593 \N +256302 2025-08-31 20:57:57.551333+00 2025-08-31 20:57:57.551347+00 f t DESCUENTO 0.00 2 6593 \N +256303 2025-08-31 20:57:57.553107+00 2025-08-31 20:57:57.553118+00 f t TOTAL 50000.00 3 6593 \N +256304 2025-08-31 20:57:57.55454+00 2025-08-31 20:57:57.554547+00 f t ADELANTO 10000.00 4 6593 \N +265537 2025-09-03 18:04:35.509741+00 2025-09-03 18:04:35.509753+00 f t SUBTOTAL 30000.00 1 6824 \N +265538 2025-09-03 18:04:35.511783+00 2025-09-03 18:04:35.511793+00 f t DESCUENTO 0.00 2 6824 \N +265539 2025-09-03 18:04:35.51334+00 2025-09-03 18:04:35.51335+00 f t TOTAL 30000.00 3 6824 \N +265540 2025-09-03 18:04:35.514815+00 2025-09-03 18:04:35.514823+00 f t ADELANTO 30000.00 4 6824 \N +256309 2025-08-31 20:59:21.680246+00 2025-08-31 20:59:21.680258+00 f t SUBTOTAL 0.00 1 6594 \N +256310 2025-08-31 20:59:21.682167+00 2025-08-31 20:59:21.682178+00 f t DESCUENTO 0.00 2 6594 \N +256311 2025-08-31 20:59:21.683582+00 2025-08-31 20:59:21.68359+00 f t TOTAL 0.00 3 6594 \N +256312 2025-08-31 20:59:21.68501+00 2025-08-31 20:59:21.685017+00 f t ADELANTO 0.00 4 6594 \N +265881 2025-09-03 20:40:24.426192+00 2025-09-03 20:40:24.426202+00 f t SUBTOTAL 0.00 1 6837 \N +265882 2025-09-03 20:40:24.429202+00 2025-09-03 20:40:24.42921+00 f t DESCUENTO 0.00 2 6837 \N +265883 2025-09-03 20:40:24.430474+00 2025-09-03 20:40:24.430479+00 f t TOTAL 0.00 3 6837 \N +265884 2025-09-03 20:40:24.432117+00 2025-09-03 20:40:24.432124+00 f t ADELANTO 0.00 4 6837 \N +260377 2025-09-02 00:42:02.944734+00 2025-09-02 00:42:02.944747+00 f t SUBTOTAL 55000.00 1 6687 \N +260378 2025-09-02 00:42:02.950477+00 2025-09-02 00:42:02.95049+00 f t DESCUENTO 0.00 2 6687 \N +260379 2025-09-02 00:42:02.952687+00 2025-09-02 00:42:02.952698+00 f t TOTAL 55000.00 3 6687 \N +260380 2025-09-02 00:42:02.95465+00 2025-09-02 00:42:02.954659+00 f t ADELANTO 11000.00 4 6687 \N +260601 2025-09-02 02:52:13.679293+00 2025-09-02 02:52:13.679305+00 f t SUBTOTAL 0.00 1 6693 \N +260602 2025-09-02 02:52:13.682088+00 2025-09-02 02:52:13.682101+00 f t DESCUENTO 0.00 2 6693 \N +260603 2025-09-02 02:52:13.684442+00 2025-09-02 02:52:13.684452+00 f t TOTAL 0.00 3 6693 \N +260604 2025-09-02 02:52:13.685907+00 2025-09-02 02:52:13.685914+00 f t ADELANTO 0.00 4 6693 \N +260681 2025-09-02 04:34:33.418591+00 2025-09-02 04:34:33.4186+00 f t SUBTOTAL 0.00 1 6697 \N +260682 2025-09-02 04:34:33.42027+00 2025-09-02 04:34:33.420277+00 f t DESCUENTO 0.00 2 6697 \N +260683 2025-09-02 04:34:33.421519+00 2025-09-02 04:34:33.421526+00 f t TOTAL 0.00 3 6697 \N +256365 2025-08-31 21:02:20.579795+00 2025-08-31 21:02:20.579805+00 f t SUBTOTAL 0.00 1 6595 \N +256366 2025-08-31 21:02:20.582679+00 2025-08-31 21:02:20.582687+00 f t DESCUENTO 0.00 2 6595 \N +256367 2025-08-31 21:02:20.583936+00 2025-08-31 21:02:20.583943+00 f t TOTAL 0.00 3 6595 \N +256368 2025-08-31 21:02:20.585288+00 2025-08-31 21:02:20.585296+00 f t ADELANTO 0.00 4 6595 \N +260684 2025-09-02 04:34:33.422682+00 2025-09-02 04:34:33.42269+00 f t ADELANTO 0.00 4 6697 \N +261154 2025-09-02 13:08:04.926254+00 2025-09-02 13:08:04.926263+00 f t DESCUENTO 0.00 2 6710 \N +261155 2025-09-02 13:08:04.928647+00 2025-09-02 13:08:04.928655+00 f t TOTAL 0.00 3 6710 \N +261156 2025-09-02 13:08:04.932772+00 2025-09-02 13:08:04.932783+00 f t ADELANTO 0.00 4 6710 \N +256421 2025-08-31 21:12:52.724731+00 2025-08-31 21:12:52.724744+00 f t SUBTOTAL 0.00 1 6596 \N +256422 2025-08-31 21:12:52.728483+00 2025-08-31 21:12:52.728491+00 f t DESCUENTO 0.00 2 6596 \N +256423 2025-08-31 21:12:52.729669+00 2025-08-31 21:12:52.729706+00 f t TOTAL 0.00 3 6596 \N +256424 2025-08-31 21:12:52.730787+00 2025-08-31 21:12:52.730793+00 f t ADELANTO 0.00 4 6596 \N +261517 2025-09-02 15:36:28.382402+00 2025-09-02 15:36:28.382417+00 f t SUBTOTAL 46000.00 1 6722 \N +261518 2025-09-02 15:36:28.384988+00 2025-09-02 15:36:28.384998+00 f t DESCUENTO 0.00 2 6722 \N +256457 2025-08-31 21:14:02.064774+00 2025-08-31 21:14:02.064786+00 f t SUBTOTAL 50000.00 1 6597 \N +256458 2025-08-31 21:14:02.067107+00 2025-08-31 21:14:02.067118+00 f t DESCUENTO 0.00 2 6597 \N +256459 2025-08-31 21:14:02.068832+00 2025-08-31 21:14:02.068843+00 f t TOTAL 50000.00 3 6597 \N +256460 2025-08-31 21:14:02.070404+00 2025-08-31 21:14:02.070413+00 f t ADELANTO 10000.00 4 6597 \N +261519 2025-09-02 15:36:28.38706+00 2025-09-02 15:36:28.387072+00 f t TOTAL 46000.00 3 6722 \N +261520 2025-09-02 15:36:28.389154+00 2025-09-02 15:36:28.389165+00 f t ADELANTO 11000.00 4 6722 \N +257949 2025-09-01 13:20:45.729926+00 2025-09-01 13:20:45.729938+00 f t SUBTOTAL 46000.00 1 6634 \N +257950 2025-09-01 13:20:45.732182+00 2025-09-01 13:20:45.732193+00 f t DESCUENTO 0.00 2 6634 \N +257951 2025-09-01 13:20:45.733764+00 2025-09-01 13:20:45.733774+00 f t TOTAL 46000.00 3 6634 \N +257952 2025-09-01 13:20:45.735271+00 2025-09-01 13:20:45.73528+00 f t ADELANTO 11000.00 4 6634 \N +371176 2025-10-10 21:41:24.604297+00 2025-10-10 21:41:24.604304+00 f t ADELANTO 0.00 4 9348 \N +264361 2025-09-03 12:21:07.174497+00 2025-09-03 12:21:07.17451+00 f t SUBTOTAL 78000.00 1 6795 \N +264362 2025-09-03 12:21:07.176845+00 2025-09-03 12:21:07.176857+00 f t DESCUENTO 0.00 2 6795 \N +264363 2025-09-03 12:21:07.178443+00 2025-09-03 12:21:07.178451+00 f t TOTAL 78000.00 3 6795 \N +264364 2025-09-03 12:21:07.180014+00 2025-09-03 12:21:07.180026+00 f t ADELANTO 21500.00 4 6795 \N +256505 2025-08-31 21:20:31.333913+00 2025-08-31 21:20:31.333922+00 f t SUBTOTAL 50000.00 1 6598 \N +256506 2025-08-31 21:20:31.335581+00 2025-08-31 21:20:31.335589+00 f t DESCUENTO 0.00 2 6598 \N +256507 2025-08-31 21:20:31.337032+00 2025-08-31 21:20:31.337041+00 f t TOTAL 50000.00 3 6598 \N +256508 2025-08-31 21:20:31.338361+00 2025-08-31 21:20:31.338369+00 f t ADELANTO 10000.00 4 6598 \N +258637 2025-09-01 17:35:27.651325+00 2025-09-01 17:35:27.651338+00 f t SUBTOTAL 99700.00 1 6651 \N +258638 2025-09-01 17:35:27.653905+00 2025-09-01 17:35:27.653914+00 f t DESCUENTO 0.00 2 6651 \N +258639 2025-09-01 17:35:27.655796+00 2025-09-01 17:35:27.655803+00 f t TOTAL 99700.00 3 6651 \N +258640 2025-09-01 17:35:27.656902+00 2025-09-01 17:35:27.656908+00 f t ADELANTO 59200.00 4 6651 \N +258889 2025-09-01 18:20:12.113251+00 2025-09-01 18:20:12.113262+00 f t SUBTOTAL 68000.00 1 6657 \N +258890 2025-09-01 18:20:12.115621+00 2025-09-01 18:20:12.115631+00 f t DESCUENTO 0.00 2 6657 \N +258891 2025-09-01 18:20:12.117436+00 2025-09-01 18:20:12.117446+00 f t TOTAL 68000.00 3 6657 \N +258892 2025-09-01 18:20:12.119096+00 2025-09-01 18:20:12.119104+00 f t ADELANTO 13000.00 4 6657 \N +265149 2025-09-03 16:57:38.070621+00 2025-09-03 16:57:38.070631+00 f t SUBTOTAL 75000.00 1 6817 \N +265150 2025-09-03 16:57:38.072654+00 2025-09-03 16:57:38.072662+00 f t DESCUENTO 0.00 2 6817 \N +265151 2025-09-03 16:57:38.074053+00 2025-09-03 16:57:38.07406+00 f t TOTAL 75000.00 3 6817 \N +265152 2025-09-03 16:57:38.075383+00 2025-09-03 16:57:38.075389+00 f t ADELANTO 15000.00 4 6817 \N +259517 2025-09-01 20:41:05.481385+00 2025-09-01 20:41:05.481395+00 f t SUBTOTAL 0.00 1 6669 \N +259518 2025-09-01 20:41:05.484142+00 2025-09-01 20:41:05.484152+00 f t DESCUENTO 0.00 2 6669 \N +259519 2025-09-01 20:41:05.486157+00 2025-09-01 20:41:05.486166+00 f t TOTAL 0.00 3 6669 \N +259520 2025-09-01 20:41:05.487714+00 2025-09-01 20:41:05.487722+00 f t ADELANTO 0.00 4 6669 \N +256565 2025-08-31 21:34:25.0795+00 2025-08-31 21:34:25.079511+00 f t SUBTOTAL 50000.00 1 6599 \N +256566 2025-08-31 21:34:25.081081+00 2025-08-31 21:34:25.081088+00 f t DESCUENTO 0.00 2 6599 \N +256567 2025-08-31 21:34:25.082121+00 2025-08-31 21:34:25.082127+00 f t TOTAL 50000.00 3 6599 \N +256568 2025-08-31 21:34:25.083092+00 2025-08-31 21:34:25.083097+00 f t ADELANTO 10000.00 4 6599 \N +256573 2025-08-31 21:55:37.64018+00 2025-08-31 21:55:37.640188+00 f t SUBTOTAL 0.00 1 6600 \N +256574 2025-08-31 21:55:37.641649+00 2025-08-31 21:55:37.641655+00 f t DESCUENTO 0.00 2 6600 \N +256575 2025-08-31 21:55:37.642931+00 2025-08-31 21:55:37.642936+00 f t TOTAL 0.00 3 6600 \N +256576 2025-08-31 21:55:37.64411+00 2025-08-31 21:55:37.644115+00 f t ADELANTO 0.00 4 6600 \N +256617 2025-08-31 21:58:00.49746+00 2025-08-31 21:58:00.49747+00 f t SUBTOTAL 50000.00 1 6601 \N +256618 2025-08-31 21:58:00.499226+00 2025-08-31 21:58:00.499233+00 f t DESCUENTO 0.00 2 6601 \N +256619 2025-08-31 21:58:00.500279+00 2025-08-31 21:58:00.500285+00 f t TOTAL 50000.00 3 6601 \N +256620 2025-08-31 21:58:00.501293+00 2025-08-31 21:58:00.5013+00 f t ADELANTO 10000.00 4 6601 \N +256625 2025-08-31 22:28:42.061085+00 2025-08-31 22:28:42.061095+00 f t SUBTOTAL 0.00 1 6602 \N +256626 2025-08-31 22:28:42.062463+00 2025-08-31 22:28:42.06247+00 f t DESCUENTO 0.00 2 6602 \N +256627 2025-08-31 22:28:42.063602+00 2025-08-31 22:28:42.063607+00 f t TOTAL 0.00 3 6602 \N +256628 2025-08-31 22:28:42.064584+00 2025-08-31 22:28:42.064589+00 f t ADELANTO 0.00 4 6602 \N +260385 2025-09-02 00:52:26.320301+00 2025-09-02 00:52:26.320315+00 f t SUBTOTAL 0.00 1 6688 \N +260386 2025-09-02 00:52:26.329244+00 2025-09-02 00:52:26.329253+00 f t DESCUENTO 0.00 2 6688 \N +260387 2025-09-02 00:52:26.330932+00 2025-09-02 00:52:26.33094+00 f t TOTAL 0.00 3 6688 \N +260388 2025-09-02 00:52:26.332144+00 2025-09-02 00:52:26.332149+00 f t ADELANTO 0.00 4 6688 \N +260609 2025-09-02 02:52:32.744027+00 2025-09-02 02:52:32.744041+00 f t SUBTOTAL 0.00 1 6694 \N +260610 2025-09-02 02:52:32.745759+00 2025-09-02 02:52:32.745769+00 f t DESCUENTO 0.00 2 6694 \N +260611 2025-09-02 02:52:32.747168+00 2025-09-02 02:52:32.747176+00 f t TOTAL 0.00 3 6694 \N +260612 2025-09-02 02:52:32.74845+00 2025-09-02 02:52:32.748459+00 f t ADELANTO 0.00 4 6694 \N +260689 2025-09-02 06:05:23.976233+00 2025-09-02 06:05:23.976247+00 f t SUBTOTAL 0.00 1 6698 \N +260690 2025-09-02 06:05:23.978193+00 2025-09-02 06:05:23.978204+00 f t DESCUENTO 0.00 2 6698 \N +260691 2025-09-02 06:05:23.982342+00 2025-09-02 06:05:23.982357+00 f t TOTAL 0.00 3 6698 \N +260692 2025-09-02 06:05:23.984183+00 2025-09-02 06:05:23.984193+00 f t ADELANTO 0.00 4 6698 \N +266637 2025-09-03 23:04:36.80021+00 2025-09-03 23:04:36.800223+00 f t SUBTOTAL 46000.00 1 6854 \N +266638 2025-09-03 23:04:36.804821+00 2025-09-03 23:04:36.804835+00 f t DESCUENTO 0.00 2 6854 \N +266639 2025-09-03 23:04:36.810511+00 2025-09-03 23:04:36.810526+00 f t TOTAL 46000.00 3 6854 \N +266640 2025-09-03 23:04:36.813191+00 2025-09-03 23:04:36.813206+00 f t ADELANTO 11000.00 4 6854 \N +256697 2025-08-31 22:57:22.791865+00 2025-08-31 22:57:22.791877+00 f t SUBTOTAL 77000.00 1 6604 \N +256698 2025-08-31 22:57:22.793711+00 2025-08-31 22:57:22.793722+00 f t DESCUENTO 0.00 2 6604 \N +256699 2025-08-31 22:57:22.795126+00 2025-08-31 22:57:22.795153+00 f t TOTAL 77000.00 3 6604 \N +256700 2025-08-31 22:57:22.796237+00 2025-08-31 22:57:22.796242+00 f t ADELANTO 20500.00 4 6604 \N +261305 2025-09-02 15:14:29.000192+00 2025-09-02 15:14:29.000205+00 f t SUBTOTAL 95000.00 1 6718 \N +261306 2025-09-02 15:14:29.002947+00 2025-09-02 15:14:29.002958+00 f t DESCUENTO 0.00 2 6718 \N +261307 2025-09-02 15:14:29.005105+00 2025-09-02 15:14:29.005118+00 f t TOTAL 95000.00 3 6718 \N +261308 2025-09-02 15:14:29.00674+00 2025-09-02 15:14:29.006748+00 f t ADELANTO 10000.00 4 6718 \N +266817 2025-09-04 00:50:49.354224+00 2025-09-04 00:50:49.354237+00 f t SUBTOTAL 0.00 1 6860 \N +266818 2025-09-04 00:50:49.355917+00 2025-09-04 00:50:49.355926+00 f t DESCUENTO 0.00 2 6860 \N +266819 2025-09-04 00:50:49.357409+00 2025-09-04 00:50:49.357418+00 f t TOTAL 0.00 3 6860 \N +266820 2025-09-04 00:50:49.358636+00 2025-09-04 00:50:49.358644+00 f t ADELANTO 0.00 4 6860 \N +267058 2025-09-04 03:50:08.899987+00 2025-09-04 03:50:08.899996+00 f t DESCUENTO 0.00 2 6869 \N +267059 2025-09-04 03:50:08.902139+00 2025-09-04 03:50:08.902147+00 f t TOTAL 0.00 3 6869 \N +267060 2025-09-04 03:50:08.904141+00 2025-09-04 03:50:08.904153+00 f t ADELANTO 0.00 4 6869 \N +261705 2025-09-02 16:32:06.533474+00 2025-09-02 16:32:06.533489+00 f t SUBTOTAL 0.00 1 6730 \N +261706 2025-09-02 16:32:06.535616+00 2025-09-02 16:32:06.535629+00 f t DESCUENTO 0.00 2 6730 \N +261707 2025-09-02 16:32:06.537341+00 2025-09-02 16:32:06.537352+00 f t TOTAL 0.00 3 6730 \N +261708 2025-09-02 16:32:06.538913+00 2025-09-02 16:32:06.538921+00 f t ADELANTO 0.00 4 6730 \N +302601 2025-09-17 19:07:37.889833+00 2025-09-17 19:07:37.889841+00 f t SUBTOTAL 0.00 1 7683 \N +302602 2025-09-17 19:07:37.891685+00 2025-09-17 19:07:37.891692+00 f t DESCUENTO 0.00 2 7683 \N +302603 2025-09-17 19:07:37.892945+00 2025-09-17 19:07:37.892952+00 f t TOTAL 0.00 3 7683 \N +256777 2025-08-31 23:01:30.435635+00 2025-08-31 23:01:30.435646+00 f t SUBTOTAL 0.00 1 6603 \N +256778 2025-08-31 23:01:30.43788+00 2025-08-31 23:01:30.437887+00 f t DESCUENTO 0.00 2 6603 \N +256779 2025-08-31 23:01:30.439302+00 2025-08-31 23:01:30.439308+00 f t TOTAL 0.00 3 6603 \N +256780 2025-08-31 23:01:30.441419+00 2025-08-31 23:01:30.441425+00 f t ADELANTO 0.00 4 6603 \N +264269 2025-09-03 10:59:28.873904+00 2025-09-03 10:59:28.873915+00 f t SUBTOTAL 46000.00 1 6791 \N +264270 2025-09-03 10:59:28.876846+00 2025-09-03 10:59:28.87686+00 f t DESCUENTO 0.00 2 6791 \N +264271 2025-09-03 10:59:28.878594+00 2025-09-03 10:59:28.878603+00 f t TOTAL 46000.00 3 6791 \N +264272 2025-09-03 10:59:28.880328+00 2025-09-03 10:59:28.880336+00 f t ADELANTO 11000.00 4 6791 \N +270765 2025-09-05 14:06:53.413305+00 2025-09-05 14:06:53.413317+00 f t SUBTOTAL 20500.00 1 6954 \N +264673 2025-09-03 13:43:58.067357+00 2025-09-03 13:43:58.067371+00 f t SUBTOTAL 0.00 1 6803 \N +264674 2025-09-03 13:43:58.069852+00 2025-09-03 13:43:58.069865+00 f t DESCUENTO 0.00 2 6803 \N +264675 2025-09-03 13:43:58.07151+00 2025-09-03 13:43:58.071564+00 f t TOTAL 0.00 3 6803 \N +264676 2025-09-03 13:43:58.073085+00 2025-09-03 13:43:58.073094+00 f t ADELANTO 0.00 4 6803 \N +270766 2025-09-05 14:06:53.415812+00 2025-09-05 14:06:53.415822+00 f t DESCUENTO 0.00 2 6954 \N +270767 2025-09-05 14:06:53.417905+00 2025-09-05 14:06:53.417917+00 f t TOTAL 20500.00 3 6954 \N +270768 2025-09-05 14:06:53.420042+00 2025-09-05 14:06:53.420055+00 f t ADELANTO 20500.00 4 6954 \N +271666 2025-09-05 18:12:50.427067+00 2025-09-05 18:12:50.427075+00 f t DESCUENTO 0.00 2 6972 \N +259441 2025-09-01 20:04:28.65618+00 2025-09-01 20:04:28.656193+00 f t SUBTOTAL 70000.00 1 6667 \N +259442 2025-09-01 20:04:28.658438+00 2025-09-01 20:04:28.658449+00 f t DESCUENTO 0.00 2 6667 \N +259443 2025-09-01 20:04:28.660206+00 2025-09-01 20:04:28.660218+00 f t TOTAL 70000.00 3 6667 \N +259444 2025-09-01 20:04:28.661797+00 2025-09-01 20:04:28.661808+00 f t ADELANTO 19000.00 4 6667 \N +271667 2025-09-05 18:12:50.428636+00 2025-09-05 18:12:50.428643+00 f t TOTAL 0.00 3 6972 \N +271668 2025-09-05 18:12:50.429626+00 2025-09-05 18:12:50.429631+00 f t ADELANTO 0.00 4 6972 \N +265545 2025-09-03 18:05:00.081237+00 2025-09-03 18:05:00.081251+00 f t SUBTOTAL 0.00 1 6825 \N +265546 2025-09-03 18:05:00.084633+00 2025-09-03 18:05:00.084645+00 f t DESCUENTO 0.00 2 6825 \N +265547 2025-09-03 18:05:00.087125+00 2025-09-03 18:05:00.087167+00 f t TOTAL 0.00 3 6825 \N +265548 2025-09-03 18:05:00.090368+00 2025-09-03 18:05:00.090381+00 f t ADELANTO 0.00 4 6825 \N +265821 2025-09-03 20:28:02.835407+00 2025-09-03 20:28:02.835417+00 f t SUBTOTAL 30000.00 1 6834 \N +265822 2025-09-03 20:28:02.837432+00 2025-09-03 20:28:02.837443+00 f t DESCUENTO 0.00 2 6834 \N +265823 2025-09-03 20:28:02.83884+00 2025-09-03 20:28:02.838849+00 f t TOTAL 30000.00 3 6834 \N +265824 2025-09-03 20:28:02.840067+00 2025-09-03 20:28:02.840075+00 f t ADELANTO 30000.00 4 6834 \N +256901 2025-08-31 23:24:11.339047+00 2025-08-31 23:24:11.339056+00 f t SUBTOTAL 0.00 1 6605 \N +256902 2025-08-31 23:24:11.341991+00 2025-08-31 23:24:11.342002+00 f t DESCUENTO 0.00 2 6605 \N +256903 2025-08-31 23:24:11.343544+00 2025-08-31 23:24:11.343551+00 f t TOTAL 0.00 3 6605 \N +256904 2025-08-31 23:24:11.344776+00 2025-08-31 23:24:11.344784+00 f t ADELANTO 0.00 4 6605 \N +266417 2025-09-03 22:06:13.384679+00 2025-09-03 22:06:13.38469+00 f t SUBTOTAL 216000.00 1 6850 \N +266418 2025-09-03 22:06:13.387645+00 2025-09-03 22:06:13.387655+00 f t DESCUENTO 0.00 2 6850 \N +266419 2025-09-03 22:06:13.389909+00 2025-09-03 22:06:13.389922+00 f t TOTAL 216000.00 3 6850 \N +266420 2025-09-03 22:06:13.392311+00 2025-09-03 22:06:13.392325+00 f t ADELANTO 54000.00 4 6850 \N +260697 2025-09-02 09:18:51.765302+00 2025-09-02 09:18:51.765312+00 f t SUBTOTAL 0.00 1 6699 \N +260698 2025-09-02 09:18:51.766749+00 2025-09-02 09:18:51.766759+00 f t DESCUENTO 0.00 2 6699 \N +260699 2025-09-02 09:18:51.76819+00 2025-09-02 09:18:51.768202+00 f t TOTAL 0.00 3 6699 \N +260700 2025-09-02 09:18:51.770075+00 2025-09-02 09:18:51.770083+00 f t ADELANTO 0.00 4 6699 \N +260885 2025-09-02 11:48:38.982166+00 2025-09-02 11:48:38.982176+00 f t SUBTOTAL 0.00 1 6704 \N +260886 2025-09-02 11:48:38.984345+00 2025-09-02 11:48:38.984353+00 f t DESCUENTO 0.00 2 6704 \N +260887 2025-09-02 11:48:38.985646+00 2025-09-02 11:48:38.985653+00 f t TOTAL 0.00 3 6704 \N +260888 2025-09-02 11:48:38.986804+00 2025-09-02 11:48:38.98681+00 f t ADELANTO 0.00 4 6704 \N +260941 2025-09-02 11:56:02.605769+00 2025-09-02 11:56:02.605782+00 f t SUBTOTAL 46000.00 1 6705 \N +260942 2025-09-02 11:56:02.60838+00 2025-09-02 11:56:02.608391+00 f t DESCUENTO 0.00 2 6705 \N +260943 2025-09-02 11:56:02.610627+00 2025-09-02 11:56:02.610637+00 f t TOTAL 46000.00 3 6705 \N +260944 2025-09-02 11:56:02.612256+00 2025-09-02 11:56:02.612266+00 f t ADELANTO 11000.00 4 6705 \N +256961 2025-08-31 23:26:17.396298+00 2025-08-31 23:26:17.396307+00 f t SUBTOTAL 0.00 1 6606 \N +256962 2025-08-31 23:26:17.398612+00 2025-08-31 23:26:17.398619+00 f t DESCUENTO 0.00 2 6606 \N +256963 2025-08-31 23:26:17.400065+00 2025-08-31 23:26:17.40007+00 f t TOTAL 0.00 3 6606 \N +256964 2025-08-31 23:26:17.401374+00 2025-08-31 23:26:17.401379+00 f t ADELANTO 0.00 4 6606 \N +256977 2025-09-01 01:05:19.012752+00 2025-09-01 01:05:19.012765+00 f t SUBTOTAL 0.00 1 6607 \N +256978 2025-09-01 01:05:19.015092+00 2025-09-01 01:05:19.015101+00 f t DESCUENTO 0.00 2 6607 \N +256979 2025-09-01 01:05:19.017578+00 2025-09-01 01:05:19.017607+00 f t TOTAL 0.00 3 6607 \N +256980 2025-09-01 01:05:19.020281+00 2025-09-01 01:05:19.020288+00 f t ADELANTO 0.00 4 6607 \N +256985 2025-09-01 01:14:25.333413+00 2025-09-01 01:14:25.333425+00 f t SUBTOTAL 0.00 1 6608 \N +256986 2025-09-01 01:14:25.33542+00 2025-09-01 01:14:25.335428+00 f t DESCUENTO 0.00 2 6608 \N +256987 2025-09-01 01:14:25.336825+00 2025-09-01 01:14:25.336831+00 f t TOTAL 0.00 3 6608 \N +256988 2025-09-01 01:14:25.339824+00 2025-09-01 01:14:25.339831+00 f t ADELANTO 0.00 4 6608 \N +257005 2025-09-01 01:35:52.334847+00 2025-09-01 01:35:52.334856+00 f t SUBTOTAL 0.00 1 6609 \N +257006 2025-09-01 01:35:52.3368+00 2025-09-01 01:35:52.336807+00 f t DESCUENTO 0.00 2 6609 \N +257007 2025-09-01 01:35:52.337816+00 2025-09-01 01:35:52.337821+00 f t TOTAL 0.00 3 6609 \N +257008 2025-09-01 01:35:52.338762+00 2025-09-01 01:35:52.338768+00 f t ADELANTO 0.00 4 6609 \N +267065 2025-09-04 08:28:36.032585+00 2025-09-04 08:28:36.032597+00 f t SUBTOTAL 0.00 1 6870 \N +267066 2025-09-04 08:28:36.036087+00 2025-09-04 08:28:36.036096+00 f t DESCUENTO 0.00 2 6870 \N +267067 2025-09-04 08:28:36.037332+00 2025-09-04 08:28:36.037343+00 f t TOTAL 0.00 3 6870 \N +267068 2025-09-04 08:28:36.03874+00 2025-09-04 08:28:36.038746+00 f t ADELANTO 0.00 4 6870 \N +257021 2025-09-01 02:40:23.22928+00 2025-09-01 02:40:23.229292+00 f t SUBTOTAL 0.00 1 6610 \N +257022 2025-09-01 02:40:23.231591+00 2025-09-01 02:40:23.231599+00 f t DESCUENTO 0.00 2 6610 \N +257023 2025-09-01 02:40:23.232608+00 2025-09-01 02:40:23.232614+00 f t TOTAL 0.00 3 6610 \N +257024 2025-09-01 02:40:23.233638+00 2025-09-01 02:40:23.233642+00 f t ADELANTO 0.00 4 6610 \N +267197 2025-09-04 08:44:47.977353+00 2025-09-04 08:44:47.977367+00 f t SUBTOTAL 0.00 1 6873 \N +267198 2025-09-04 08:44:47.97943+00 2025-09-04 08:44:47.97944+00 f t DESCUENTO 0.00 2 6873 \N +267199 2025-09-04 08:44:47.980731+00 2025-09-04 08:44:47.980741+00 f t TOTAL 0.00 3 6873 \N +267200 2025-09-04 08:44:47.982264+00 2025-09-04 08:44:47.982273+00 f t ADELANTO 0.00 4 6873 \N +289474 2025-09-12 02:36:47.018162+00 2025-09-12 02:36:47.018171+00 f t DESCUENTO 0.00 2 7386 \N +289475 2025-09-12 02:36:47.019628+00 2025-09-12 02:36:47.019634+00 f t TOTAL 0.00 3 7386 \N +289476 2025-09-12 02:36:47.020716+00 2025-09-12 02:36:47.020721+00 f t ADELANTO 0.00 4 7386 \N +257065 2025-09-01 03:04:55.583276+00 2025-09-01 03:04:55.583285+00 f t SUBTOTAL 0.00 1 6611 \N +257066 2025-09-01 03:04:55.585256+00 2025-09-01 03:04:55.585265+00 f t DESCUENTO 0.00 2 6611 \N +257067 2025-09-01 03:04:55.586684+00 2025-09-01 03:04:55.586691+00 f t TOTAL 0.00 3 6611 \N +257068 2025-09-01 03:04:55.587975+00 2025-09-01 03:04:55.587981+00 f t ADELANTO 0.00 4 6611 \N +257073 2025-09-01 03:07:53.818824+00 2025-09-01 03:07:53.818834+00 f t SUBTOTAL 0.00 1 6612 \N +257074 2025-09-01 03:07:53.820556+00 2025-09-01 03:07:53.820564+00 f t DESCUENTO 0.00 2 6612 \N +257075 2025-09-01 03:07:53.822103+00 2025-09-01 03:07:53.822109+00 f t TOTAL 0.00 3 6612 \N +257076 2025-09-01 03:07:53.823288+00 2025-09-01 03:07:53.823293+00 f t ADELANTO 0.00 4 6612 \N +270573 2025-09-05 12:38:12.164704+00 2025-09-05 12:38:12.164717+00 f t SUBTOTAL 31500.00 1 6948 \N +270574 2025-09-05 12:38:12.166889+00 2025-09-05 12:38:12.166901+00 f t DESCUENTO 0.00 2 6948 \N +270575 2025-09-05 12:38:12.16863+00 2025-09-05 12:38:12.16864+00 f t TOTAL 31500.00 3 6948 \N +270576 2025-09-05 12:38:12.170174+00 2025-09-05 12:38:12.170184+00 f t ADELANTO 31500.00 4 6948 \N +264681 2025-09-03 13:45:05.849084+00 2025-09-03 13:45:05.849097+00 f t SUBTOTAL 0.00 1 6804 \N +264682 2025-09-03 13:45:05.856067+00 2025-09-03 13:45:05.85608+00 f t DESCUENTO 0.00 2 6804 \N +264683 2025-09-03 13:45:05.859673+00 2025-09-03 13:45:05.859687+00 f t TOTAL 0.00 3 6804 \N +264684 2025-09-03 13:45:05.862148+00 2025-09-03 13:45:05.862158+00 f t ADELANTO 0.00 4 6804 \N +257169 2025-09-01 03:22:05.374889+00 2025-09-01 03:22:05.374901+00 f t SUBTOTAL 140000.00 1 6613 \N +257170 2025-09-01 03:22:05.377733+00 2025-09-01 03:22:05.377745+00 f t DESCUENTO 0.00 2 6613 \N +257171 2025-09-01 03:22:05.380092+00 2025-09-01 03:22:05.380104+00 f t TOTAL 140000.00 3 6613 \N +257172 2025-09-01 03:22:05.382104+00 2025-09-01 03:22:05.382115+00 f t ADELANTO 38000.00 4 6613 \N +257177 2025-09-01 03:27:10.677426+00 2025-09-01 03:27:10.677435+00 f t SUBTOTAL 0.00 1 6614 \N +257178 2025-09-01 03:27:10.678931+00 2025-09-01 03:27:10.678941+00 f t DESCUENTO 0.00 2 6614 \N +257179 2025-09-01 03:27:10.680333+00 2025-09-01 03:27:10.680339+00 f t TOTAL 0.00 3 6614 \N +257180 2025-09-01 03:27:10.681611+00 2025-09-01 03:27:10.681616+00 f t ADELANTO 0.00 4 6614 \N +265829 2025-09-03 20:29:47.800594+00 2025-09-03 20:29:47.800603+00 f t SUBTOTAL 0.00 1 6835 \N +265830 2025-09-03 20:29:47.801882+00 2025-09-03 20:29:47.801888+00 f t DESCUENTO 0.00 2 6835 \N +265831 2025-09-03 20:29:47.80281+00 2025-09-03 20:29:47.802816+00 f t TOTAL 0.00 3 6835 \N +265832 2025-09-03 20:29:47.803749+00 2025-09-03 20:29:47.803755+00 f t ADELANTO 0.00 4 6835 \N +265957 2025-09-03 20:42:58.77764+00 2025-09-03 20:42:58.777651+00 f t SUBTOTAL 0.00 1 6836 \N +265958 2025-09-03 20:42:58.779651+00 2025-09-03 20:42:58.779662+00 f t DESCUENTO 0.00 2 6836 \N +257205 2025-09-01 03:33:13.992623+00 2025-09-01 03:33:13.992634+00 f t SUBTOTAL 54000.00 1 6615 \N +257206 2025-09-01 03:33:13.994645+00 2025-09-01 03:33:13.994655+00 f t DESCUENTO 0.00 2 6615 \N +257207 2025-09-01 03:33:13.996387+00 2025-09-01 03:33:13.996397+00 f t TOTAL 54000.00 3 6615 \N +257208 2025-09-01 03:33:13.99849+00 2025-09-01 03:33:13.9985+00 f t ADELANTO 13500.00 4 6615 \N +265959 2025-09-03 20:42:58.780905+00 2025-09-03 20:42:58.780912+00 f t TOTAL 0.00 3 6836 \N +265960 2025-09-03 20:42:58.782036+00 2025-09-03 20:42:58.782041+00 f t ADELANTO 0.00 4 6836 \N +266021 2025-09-03 20:44:18.02722+00 2025-09-03 20:44:18.027229+00 f t SUBTOTAL 0.00 1 6841 \N +266022 2025-09-03 20:44:18.029019+00 2025-09-03 20:44:18.029026+00 f t DESCUENTO 0.00 2 6841 \N +266023 2025-09-03 20:44:18.030123+00 2025-09-03 20:44:18.030128+00 f t TOTAL 0.00 3 6841 \N +266024 2025-09-03 20:44:18.031105+00 2025-09-03 20:44:18.03111+00 f t ADELANTO 0.00 4 6841 \N +266081 2025-09-03 21:09:45.71105+00 2025-09-03 21:09:45.711059+00 f t SUBTOTAL 0.00 1 6843 \N +266082 2025-09-03 21:09:45.713517+00 2025-09-03 21:09:45.713525+00 f t DESCUENTO 0.00 2 6843 \N +266083 2025-09-03 21:09:45.715157+00 2025-09-03 21:09:45.715164+00 f t TOTAL 0.00 3 6843 \N +266084 2025-09-03 21:09:45.716832+00 2025-09-03 21:09:45.716839+00 f t ADELANTO 0.00 4 6843 \N +260949 2025-09-02 12:01:17.842007+00 2025-09-02 12:01:17.842021+00 f t SUBTOTAL 0.00 1 6706 \N +260950 2025-09-02 12:01:17.843828+00 2025-09-02 12:01:17.843838+00 f t DESCUENTO 0.00 2 6706 \N +260951 2025-09-02 12:01:17.845515+00 2025-09-02 12:01:17.845522+00 f t TOTAL 0.00 3 6706 \N +260952 2025-09-02 12:01:17.846709+00 2025-09-02 12:01:17.846716+00 f t ADELANTO 0.00 4 6706 \N +257281 2025-09-01 03:58:57.398823+00 2025-09-01 03:58:57.398832+00 f t SUBTOTAL 0.00 1 6616 \N +257282 2025-09-01 03:58:57.400885+00 2025-09-01 03:58:57.400893+00 f t DESCUENTO 0.00 2 6616 \N +257283 2025-09-01 03:58:57.402244+00 2025-09-01 03:58:57.402253+00 f t TOTAL 0.00 3 6616 \N +257284 2025-09-01 03:58:57.403634+00 2025-09-01 03:58:57.403645+00 f t ADELANTO 0.00 4 6616 \N +261529 2025-09-02 15:36:47.34541+00 2025-09-02 15:36:47.345467+00 f t SUBTOTAL 98200.00 1 6721 \N +261530 2025-09-02 15:36:47.347738+00 2025-09-02 15:36:47.347749+00 f t DESCUENTO 0.00 2 6721 \N +261531 2025-09-02 15:36:47.349815+00 2025-09-02 15:36:47.349826+00 f t TOTAL 98200.00 3 6721 \N +261532 2025-09-02 15:36:47.351562+00 2025-09-02 15:36:47.351571+00 f t ADELANTO 57700.00 4 6721 \N +261565 2025-09-02 15:53:08.71357+00 2025-09-02 15:53:08.713579+00 f t SUBTOTAL 46000.00 1 6724 \N +261566 2025-09-02 15:53:08.715536+00 2025-09-02 15:53:08.715544+00 f t DESCUENTO 0.00 2 6724 \N +261567 2025-09-02 15:53:08.716789+00 2025-09-02 15:53:08.716798+00 f t TOTAL 46000.00 3 6724 \N +261568 2025-09-02 15:53:08.718119+00 2025-09-02 15:53:08.718125+00 f t ADELANTO 11000.00 4 6724 \N +261597 2025-09-02 16:07:24.211299+00 2025-09-02 16:07:24.211309+00 f t SUBTOTAL 95000.00 1 6725 \N +261598 2025-09-02 16:07:24.213308+00 2025-09-02 16:07:24.213317+00 f t DESCUENTO 0.00 2 6725 \N +261599 2025-09-02 16:07:24.214878+00 2025-09-02 16:07:24.214886+00 f t TOTAL 95000.00 3 6725 \N +261600 2025-09-02 16:07:24.216257+00 2025-09-02 16:07:24.216264+00 f t ADELANTO 10000.00 4 6725 \N +261713 2025-09-02 16:36:45.398451+00 2025-09-02 16:36:45.39846+00 f t SUBTOTAL 0.00 1 6731 \N +261714 2025-09-02 16:36:45.400086+00 2025-09-02 16:36:45.400094+00 f t DESCUENTO 0.00 2 6731 \N +261715 2025-09-02 16:36:45.401462+00 2025-09-02 16:36:45.401468+00 f t TOTAL 0.00 3 6731 \N +261716 2025-09-02 16:36:45.402713+00 2025-09-02 16:36:45.402719+00 f t ADELANTO 0.00 4 6731 \N +267245 2025-09-04 08:47:37.159756+00 2025-09-04 08:47:37.159766+00 f t SUBTOTAL 46000.00 1 6874 \N +267246 2025-09-04 08:47:37.16129+00 2025-09-04 08:47:37.161297+00 f t DESCUENTO 0.00 2 6874 \N +267247 2025-09-04 08:47:37.162598+00 2025-09-04 08:47:37.162606+00 f t TOTAL 46000.00 3 6874 \N +267248 2025-09-04 08:47:37.163905+00 2025-09-04 08:47:37.163911+00 f t ADELANTO 11000.00 4 6874 \N +261761 2025-09-02 17:30:27.82707+00 2025-09-02 17:30:27.827083+00 f t SUBTOTAL 0.00 1 6735 \N +261762 2025-09-02 17:30:27.828996+00 2025-09-02 17:30:27.829007+00 f t DESCUENTO 0.00 2 6735 \N +261763 2025-09-02 17:30:27.830514+00 2025-09-02 17:30:27.830524+00 f t TOTAL 0.00 3 6735 \N +261764 2025-09-02 17:30:27.832004+00 2025-09-02 17:30:27.832013+00 f t ADELANTO 0.00 4 6735 \N +257349 2025-09-01 05:05:33.352941+00 2025-09-01 05:05:33.35295+00 f t SUBTOTAL 78000.00 1 6617 \N +257350 2025-09-01 05:05:33.354627+00 2025-09-01 05:05:33.354634+00 f t DESCUENTO 0.00 2 6617 \N +257351 2025-09-01 05:05:33.356008+00 2025-09-01 05:05:33.356014+00 f t TOTAL 78000.00 3 6617 \N +257352 2025-09-01 05:05:33.357134+00 2025-09-01 05:05:33.35714+00 f t ADELANTO 21500.00 4 6617 \N +302604 2025-09-17 19:07:37.89405+00 2025-09-17 19:07:37.894056+00 f t ADELANTO 0.00 4 7683 \N +258069 2025-09-01 13:32:16.91567+00 2025-09-01 13:32:16.915681+00 f t SUBTOTAL 0.00 1 6635 \N +258070 2025-09-01 13:32:16.917954+00 2025-09-01 13:32:16.917962+00 f t DESCUENTO 0.00 2 6635 \N +258071 2025-09-01 13:32:16.919372+00 2025-09-01 13:32:16.919379+00 f t TOTAL 0.00 3 6635 \N +258072 2025-09-01 13:32:16.920784+00 2025-09-01 13:32:16.920792+00 f t ADELANTO 0.00 4 6635 \N +258173 2025-09-01 14:08:17.463688+00 2025-09-01 14:08:17.463699+00 f t SUBTOTAL 95000.00 1 6637 \N +258174 2025-09-01 14:08:17.465776+00 2025-09-01 14:08:17.465786+00 f t DESCUENTO 0.00 2 6637 \N +258175 2025-09-01 14:08:17.4674+00 2025-09-01 14:08:17.467409+00 f t TOTAL 95000.00 3 6637 \N +258176 2025-09-01 14:08:17.468698+00 2025-09-01 14:08:17.468708+00 f t ADELANTO 10000.00 4 6637 \N +258737 2025-09-01 17:39:28.887445+00 2025-09-01 17:39:28.887455+00 f t SUBTOTAL 193200.00 1 6653 \N +258738 2025-09-01 17:39:28.889421+00 2025-09-01 17:39:28.889428+00 f t DESCUENTO 0.00 2 6653 \N +258739 2025-09-01 17:39:28.890735+00 2025-09-01 17:39:28.890741+00 f t TOTAL 193200.00 3 6653 \N +258740 2025-09-01 17:39:28.89189+00 2025-09-01 17:39:28.891896+00 f t ADELANTO 67700.00 4 6653 \N +283761 2025-09-10 02:43:57.629128+00 2025-09-10 02:43:57.629137+00 f t SUBTOTAL 68000.00 1 7241 \N +283762 2025-09-10 02:43:57.632292+00 2025-09-10 02:43:57.632299+00 f t DESCUENTO 0.00 2 7241 \N +283763 2025-09-10 02:43:57.63387+00 2025-09-10 02:43:57.633877+00 f t TOTAL 68000.00 3 7241 \N +283764 2025-09-10 02:43:57.635216+00 2025-09-10 02:43:57.635224+00 f t ADELANTO 13000.00 4 7241 \N +265021 2025-09-03 15:23:17.13144+00 2025-09-03 15:23:17.131454+00 f t SUBTOTAL 100000.00 1 6809 \N +265022 2025-09-03 15:23:17.134351+00 2025-09-03 15:23:17.134364+00 f t DESCUENTO 0.00 2 6809 \N +265023 2025-09-03 15:23:17.136125+00 2025-09-03 15:23:17.136136+00 f t TOTAL 100000.00 3 6809 \N +265024 2025-09-03 15:23:17.137569+00 2025-09-03 15:23:17.137579+00 f t ADELANTO 24500.00 4 6809 \N +257425 2025-09-01 07:31:32.214458+00 2025-09-01 07:31:32.214472+00 f t SUBTOTAL 187500.00 1 6619 \N +257426 2025-09-01 07:31:32.219348+00 2025-09-01 07:31:32.21936+00 f t DESCUENTO 0.00 2 6619 \N +257427 2025-09-01 07:31:32.221622+00 2025-09-01 07:31:32.221632+00 f t TOTAL 187500.00 3 6619 \N +257428 2025-09-01 07:31:32.226311+00 2025-09-01 07:31:32.226323+00 f t ADELANTO 97500.00 4 6619 \N +265357 2025-09-03 17:38:48.79928+00 2025-09-03 17:38:48.799289+00 f t SUBTOTAL 88000.00 1 6821 \N +265358 2025-09-03 17:38:48.801563+00 2025-09-03 17:38:48.801572+00 f t DESCUENTO 0.00 2 6821 \N +265359 2025-09-03 17:38:48.805239+00 2025-09-03 17:38:48.805248+00 f t TOTAL 88000.00 3 6821 \N +265360 2025-09-03 17:38:48.807714+00 2025-09-03 17:38:48.807724+00 f t ADELANTO 19500.00 4 6821 \N +257449 2025-09-01 07:32:47.505167+00 2025-09-01 07:32:47.50518+00 f t SUBTOTAL 0.00 1 6618 \N +257450 2025-09-01 07:32:47.507641+00 2025-09-01 07:32:47.507649+00 f t DESCUENTO 0.00 2 6618 \N +257451 2025-09-01 07:32:47.509066+00 2025-09-01 07:32:47.509074+00 f t TOTAL 0.00 3 6618 \N +257452 2025-09-01 07:32:47.512177+00 2025-09-01 07:32:47.512185+00 f t ADELANTO 0.00 4 6618 \N +257489 2025-09-01 07:36:04.28859+00 2025-09-01 07:36:04.2886+00 f t SUBTOTAL 0.00 1 6620 \N +257490 2025-09-01 07:36:04.290969+00 2025-09-01 07:36:04.290978+00 f t DESCUENTO 0.00 2 6620 \N +257491 2025-09-01 07:36:04.292795+00 2025-09-01 07:36:04.292803+00 f t TOTAL 0.00 3 6620 \N +257492 2025-09-01 07:36:04.294217+00 2025-09-01 07:36:04.294225+00 f t ADELANTO 0.00 4 6620 \N +257497 2025-09-01 10:08:51.254149+00 2025-09-01 10:08:51.254159+00 f t SUBTOTAL 0.00 1 6621 \N +257498 2025-09-01 10:08:51.255804+00 2025-09-01 10:08:51.255812+00 f t DESCUENTO 0.00 2 6621 \N +257499 2025-09-01 10:08:51.256986+00 2025-09-01 10:08:51.256991+00 f t TOTAL 0.00 3 6621 \N +257500 2025-09-01 10:08:51.257914+00 2025-09-01 10:08:51.257919+00 f t ADELANTO 0.00 4 6621 \N +257561 2025-09-01 10:19:18.619654+00 2025-09-01 10:19:18.619663+00 f t SUBTOTAL 46000.00 1 6622 \N +257562 2025-09-01 10:19:18.621515+00 2025-09-01 10:19:18.621523+00 f t DESCUENTO 0.00 2 6622 \N +257563 2025-09-01 10:19:18.622948+00 2025-09-01 10:19:18.622956+00 f t TOTAL 46000.00 3 6622 \N +257564 2025-09-01 10:19:18.624164+00 2025-09-01 10:19:18.624171+00 f t ADELANTO 11000.00 4 6622 \N +261537 2025-09-02 15:47:42.251357+00 2025-09-02 15:47:42.251369+00 f t SUBTOTAL 0.00 1 6723 \N +261538 2025-09-02 15:47:42.253481+00 2025-09-02 15:47:42.253494+00 f t DESCUENTO 0.00 2 6723 \N +261539 2025-09-02 15:47:42.255718+00 2025-09-02 15:47:42.255733+00 f t TOTAL 0.00 3 6723 \N +261540 2025-09-02 15:47:42.257832+00 2025-09-02 15:47:42.257844+00 f t ADELANTO 0.00 4 6723 \N +261605 2025-09-02 16:13:20.995331+00 2025-09-02 16:13:20.995344+00 f t SUBTOTAL 0.00 1 6726 \N +261606 2025-09-02 16:13:20.998275+00 2025-09-02 16:13:20.998285+00 f t DESCUENTO 0.00 2 6726 \N +261607 2025-09-02 16:13:21.000117+00 2025-09-02 16:13:21.000126+00 f t TOTAL 0.00 3 6726 \N +261608 2025-09-02 16:13:21.001928+00 2025-09-02 16:13:21.001937+00 f t ADELANTO 0.00 4 6726 \N +261665 2025-09-02 16:17:47.275222+00 2025-09-02 16:17:47.275233+00 f t SUBTOTAL 0.00 1 6727 \N +261666 2025-09-02 16:17:47.277235+00 2025-09-02 16:17:47.277243+00 f t DESCUENTO 0.00 2 6727 \N +261667 2025-09-02 16:17:47.278505+00 2025-09-02 16:17:47.278512+00 f t TOTAL 0.00 3 6727 \N +261668 2025-09-02 16:17:47.279575+00 2025-09-02 16:17:47.279581+00 f t ADELANTO 0.00 4 6727 \N +261685 2025-09-02 16:19:32.543409+00 2025-09-02 16:19:32.543422+00 f t SUBTOTAL 0.00 1 6728 \N +261686 2025-09-02 16:19:32.54603+00 2025-09-02 16:19:32.546042+00 f t DESCUENTO 0.00 2 6728 \N +261687 2025-09-02 16:19:32.54762+00 2025-09-02 16:19:32.547629+00 f t TOTAL 0.00 3 6728 \N +261688 2025-09-02 16:19:32.548921+00 2025-09-02 16:19:32.54893+00 f t ADELANTO 0.00 4 6728 \N +257617 2025-09-01 10:26:05.45494+00 2025-09-01 10:26:05.454953+00 f t SUBTOTAL 53700.00 1 6623 \N +257618 2025-09-01 10:26:05.457049+00 2025-09-01 10:26:05.457061+00 f t DESCUENTO 0.00 2 6623 \N +257619 2025-09-01 10:26:05.458851+00 2025-09-01 10:26:05.458862+00 f t TOTAL 53700.00 3 6623 \N +257620 2025-09-01 10:26:05.460471+00 2025-09-01 10:26:05.460481+00 f t ADELANTO 13200.00 4 6623 \N +257625 2025-09-01 11:26:38.484162+00 2025-09-01 11:26:38.48417+00 f t SUBTOTAL 0.00 1 6624 \N +257626 2025-09-01 11:26:38.485445+00 2025-09-01 11:26:38.485451+00 f t DESCUENTO 0.00 2 6624 \N +257627 2025-09-01 11:26:38.486881+00 2025-09-01 11:26:38.486887+00 f t TOTAL 0.00 3 6624 \N +257628 2025-09-01 11:26:38.487963+00 2025-09-01 11:26:38.487969+00 f t ADELANTO 0.00 4 6624 \N +261721 2025-09-02 16:42:23.61935+00 2025-09-02 16:42:23.61936+00 f t SUBTOTAL 0.00 1 6732 \N +261722 2025-09-02 16:42:23.62142+00 2025-09-02 16:42:23.621427+00 f t DESCUENTO 0.00 2 6732 \N +261723 2025-09-02 16:42:23.622982+00 2025-09-02 16:42:23.622989+00 f t TOTAL 0.00 3 6732 \N +261724 2025-09-02 16:42:23.624192+00 2025-09-02 16:42:23.624198+00 f t ADELANTO 0.00 4 6732 \N +261745 2025-09-02 16:49:53.826652+00 2025-09-02 16:49:53.826667+00 f t SUBTOTAL 0.00 1 6733 \N +261746 2025-09-02 16:49:53.829607+00 2025-09-02 16:49:53.829619+00 f t DESCUENTO 0.00 2 6733 \N +261747 2025-09-02 16:49:53.831682+00 2025-09-02 16:49:53.831692+00 f t TOTAL 0.00 3 6733 \N +261748 2025-09-02 16:49:53.833368+00 2025-09-02 16:49:53.833378+00 f t ADELANTO 0.00 4 6733 \N +295825 2025-09-14 13:58:00.998575+00 2025-09-14 13:58:00.998587+00 f t SUBTOTAL 68000.00 1 7527 \N +270373 2025-09-05 12:09:17.405791+00 2025-09-05 12:09:17.405803+00 f t SUBTOTAL 54000.00 1 6946 \N +270374 2025-09-05 12:09:17.407701+00 2025-09-05 12:09:17.40771+00 f t DESCUENTO 0.00 2 6946 \N +270375 2025-09-05 12:09:17.408972+00 2025-09-05 12:09:17.408978+00 f t TOTAL 54000.00 3 6946 \N +270376 2025-09-05 12:09:17.410179+00 2025-09-05 12:09:17.410186+00 f t ADELANTO 13500.00 4 6946 \N +258181 2025-09-01 14:34:03.812982+00 2025-09-01 14:34:03.812992+00 f t SUBTOTAL 0.00 1 6638 \N +258182 2025-09-01 14:34:03.814678+00 2025-09-01 14:34:03.814687+00 f t DESCUENTO 0.00 2 6638 \N +258183 2025-09-01 14:34:03.816322+00 2025-09-01 14:34:03.816332+00 f t TOTAL 0.00 3 6638 \N +258184 2025-09-01 14:34:03.817589+00 2025-09-01 14:34:03.817598+00 f t ADELANTO 0.00 4 6638 \N +264697 2025-09-03 14:02:26.898725+00 2025-09-03 14:02:26.898734+00 f t SUBTOTAL 0.00 1 6806 \N +264698 2025-09-03 14:02:26.900338+00 2025-09-03 14:02:26.900347+00 f t DESCUENTO 0.00 2 6806 \N +264699 2025-09-03 14:02:26.901646+00 2025-09-03 14:02:26.901653+00 f t TOTAL 0.00 3 6806 \N +264700 2025-09-03 14:02:26.902899+00 2025-09-03 14:02:26.902906+00 f t ADELANTO 0.00 4 6806 \N +264773 2025-09-03 14:26:53.643464+00 2025-09-03 14:26:53.643477+00 f t SUBTOTAL 70000.00 1 6810 \N +264774 2025-09-03 14:26:53.645574+00 2025-09-03 14:26:53.645585+00 f t DESCUENTO 0.00 2 6810 \N +264775 2025-09-03 14:26:53.647121+00 2025-09-03 14:26:53.647162+00 f t TOTAL 70000.00 3 6810 \N +264776 2025-09-03 14:26:53.648644+00 2025-09-03 14:26:53.648652+00 f t ADELANTO 19000.00 4 6810 \N +259149 2025-09-01 19:35:29.275363+00 2025-09-01 19:35:29.275376+00 f t SUBTOTAL 46000.00 1 6663 \N +259150 2025-09-01 19:35:29.277369+00 2025-09-01 19:35:29.27738+00 f t DESCUENTO 0.00 2 6663 \N +259151 2025-09-01 19:35:29.278819+00 2025-09-01 19:35:29.278828+00 f t TOTAL 46000.00 3 6663 \N +259152 2025-09-01 19:35:29.28018+00 2025-09-01 19:35:29.280187+00 f t ADELANTO 11000.00 4 6663 \N +257709 2025-09-01 11:52:43.239359+00 2025-09-01 11:52:43.239369+00 f t SUBTOTAL 0.00 1 6626 \N +257710 2025-09-01 11:52:43.240813+00 2025-09-01 11:52:43.240821+00 f t DESCUENTO 0.00 2 6626 \N +257711 2025-09-01 11:52:43.242144+00 2025-09-01 11:52:43.242151+00 f t TOTAL 0.00 3 6626 \N +257712 2025-09-01 11:52:43.243313+00 2025-09-01 11:52:43.243321+00 f t ADELANTO 0.00 4 6626 \N +265093 2025-09-03 16:26:20.387602+00 2025-09-03 16:26:20.387614+00 f t SUBTOTAL 0.00 1 6814 \N +265094 2025-09-03 16:26:20.396246+00 2025-09-03 16:26:20.396257+00 f t DESCUENTO 0.00 2 6814 \N +265095 2025-09-03 16:26:20.398569+00 2025-09-03 16:26:20.398579+00 f t TOTAL 0.00 3 6814 \N +265096 2025-09-03 16:26:20.400638+00 2025-09-03 16:26:20.400648+00 f t ADELANTO 0.00 4 6814 \N +257737 2025-09-01 11:53:08.005767+00 2025-09-01 11:53:08.005777+00 f t SUBTOTAL 0.00 1 6625 \N +257738 2025-09-01 11:53:08.007726+00 2025-09-01 11:53:08.007734+00 f t DESCUENTO 0.00 2 6625 \N +257739 2025-09-01 11:53:08.008829+00 2025-09-01 11:53:08.008834+00 f t TOTAL 0.00 3 6625 \N +257740 2025-09-01 11:53:08.00999+00 2025-09-01 11:53:08.009996+00 f t ADELANTO 0.00 4 6625 \N +259925 2025-09-01 22:38:53.201242+00 2025-09-01 22:38:53.201252+00 f t SUBTOTAL 115000.00 1 6677 \N +259926 2025-09-01 22:38:53.203677+00 2025-09-01 22:38:53.203687+00 f t DESCUENTO 0.00 2 6677 \N +259927 2025-09-01 22:38:53.205339+00 2025-09-01 22:38:53.20535+00 f t TOTAL 115000.00 3 6677 \N +259928 2025-09-01 22:38:53.20789+00 2025-09-01 22:38:53.207899+00 f t ADELANTO 25000.00 4 6677 \N +257765 2025-09-01 12:02:06.034491+00 2025-09-01 12:02:06.034503+00 f t SUBTOTAL 70000.00 1 6627 \N +257766 2025-09-01 12:02:06.036787+00 2025-09-01 12:02:06.036796+00 f t DESCUENTO 0.00 2 6627 \N +257767 2025-09-01 12:02:06.038876+00 2025-09-01 12:02:06.038886+00 f t TOTAL 70000.00 3 6627 \N +257768 2025-09-01 12:02:06.040386+00 2025-09-01 12:02:06.040393+00 f t ADELANTO 19000.00 4 6627 \N +257785 2025-09-01 12:05:07.75904+00 2025-09-01 12:05:07.759053+00 f t SUBTOTAL 0.00 1 6628 \N +257786 2025-09-01 12:05:07.761721+00 2025-09-01 12:05:07.761733+00 f t DESCUENTO 0.00 2 6628 \N +257787 2025-09-01 12:05:07.763532+00 2025-09-01 12:05:07.763541+00 f t TOTAL 0.00 3 6628 \N +257788 2025-09-01 12:05:07.765086+00 2025-09-01 12:05:07.765095+00 f t ADELANTO 0.00 4 6628 \N +257813 2025-09-01 12:05:31.346669+00 2025-09-01 12:05:31.346677+00 f t SUBTOTAL 30000.00 1 6629 \N +257814 2025-09-01 12:05:31.34847+00 2025-09-01 12:05:31.348479+00 f t DESCUENTO 0.00 2 6629 \N +257815 2025-09-01 12:05:31.349881+00 2025-09-01 12:05:31.349888+00 f t TOTAL 30000.00 3 6629 \N +257816 2025-09-01 12:05:31.351309+00 2025-09-01 12:05:31.351315+00 f t ADELANTO 30000.00 4 6629 \N +266265 2025-09-03 21:52:04.992693+00 2025-09-03 21:52:04.992706+00 f t SUBTOTAL 156000.00 1 6848 \N +261073 2025-09-02 12:19:59.712111+00 2025-09-02 12:19:59.712122+00 f t SUBTOTAL 78000.00 1 6708 \N +261074 2025-09-02 12:19:59.714089+00 2025-09-02 12:19:59.7141+00 f t DESCUENTO 0.00 2 6708 \N +261075 2025-09-02 12:19:59.715731+00 2025-09-02 12:19:59.71574+00 f t TOTAL 78000.00 3 6708 \N +261076 2025-09-02 12:19:59.717082+00 2025-09-02 12:19:59.717089+00 f t ADELANTO 21500.00 4 6708 \N +266266 2025-09-03 21:52:04.995156+00 2025-09-03 21:52:04.99517+00 f t DESCUENTO 0.00 2 6848 \N +266267 2025-09-03 21:52:04.997761+00 2025-09-03 21:52:04.997772+00 f t TOTAL 156000.00 3 6848 \N +266268 2025-09-03 21:52:04.999743+00 2025-09-03 21:52:04.999754+00 f t ADELANTO 43000.00 4 6848 \N +261357 2025-09-02 15:21:23.356218+00 2025-09-02 15:21:23.356231+00 f t SUBTOTAL 98200.00 1 6719 \N +261358 2025-09-02 15:21:23.357801+00 2025-09-02 15:21:23.357809+00 f t DESCUENTO 0.00 2 6719 \N +261359 2025-09-02 15:21:23.358974+00 2025-09-02 15:21:23.35898+00 f t TOTAL 98200.00 3 6719 \N +261360 2025-09-02 15:21:23.360043+00 2025-09-02 15:21:23.360049+00 f t ADELANTO 57700.00 4 6719 \N +266765 2025-09-04 00:28:33.111493+00 2025-09-04 00:28:33.111501+00 f t SUBTOTAL 99400.00 1 6857 \N +266766 2025-09-04 00:28:33.113269+00 2025-09-04 00:28:33.113278+00 f t DESCUENTO 0.00 2 6857 \N +266767 2025-09-04 00:28:33.114975+00 2025-09-04 00:28:33.114982+00 f t TOTAL 99400.00 3 6857 \N +266768 2025-09-04 00:28:33.116157+00 2025-09-04 00:28:33.116164+00 f t ADELANTO 58900.00 4 6857 \N +266889 2025-09-04 00:56:53.985073+00 2025-09-04 00:56:53.985085+00 f t SUBTOTAL 55000.00 1 6862 \N +266890 2025-09-04 00:56:53.986985+00 2025-09-04 00:56:53.986992+00 f t DESCUENTO 0.00 2 6862 \N +266891 2025-09-04 00:56:53.988367+00 2025-09-04 00:56:53.988374+00 f t TOTAL 55000.00 3 6862 \N +266892 2025-09-04 00:56:53.989589+00 2025-09-04 00:56:53.989595+00 f t ADELANTO 11000.00 4 6862 \N +267005 2025-09-04 02:04:10.515274+00 2025-09-04 02:04:10.515295+00 f t SUBTOTAL 70000.00 1 6865 \N +267006 2025-09-04 02:04:10.517621+00 2025-09-04 02:04:10.517632+00 f t DESCUENTO 0.00 2 6865 \N +267007 2025-09-04 02:04:10.519441+00 2025-09-04 02:04:10.519451+00 f t TOTAL 70000.00 3 6865 \N +267008 2025-09-04 02:04:10.521389+00 2025-09-04 02:04:10.521399+00 f t ADELANTO 19000.00 4 6865 \N +267253 2025-09-04 09:08:02.976957+00 2025-09-04 09:08:02.976967+00 f t SUBTOTAL 0.00 1 6875 \N +267254 2025-09-04 09:08:02.978351+00 2025-09-04 09:08:02.978358+00 f t DESCUENTO 0.00 2 6875 \N +267255 2025-09-04 09:08:02.979692+00 2025-09-04 09:08:02.979699+00 f t TOTAL 0.00 3 6875 \N +267256 2025-09-04 09:08:02.980706+00 2025-09-04 09:08:02.980712+00 f t ADELANTO 0.00 4 6875 \N +261753 2025-09-02 17:04:40.680302+00 2025-09-02 17:04:40.680317+00 f t SUBTOTAL 0.00 1 6734 \N +261754 2025-09-02 17:04:40.682096+00 2025-09-02 17:04:40.682108+00 f t DESCUENTO 0.00 2 6734 \N +261755 2025-09-02 17:04:40.683795+00 2025-09-02 17:04:40.683803+00 f t TOTAL 0.00 3 6734 \N +295826 2025-09-14 13:58:01.000958+00 2025-09-14 13:58:01.000967+00 f t DESCUENTO 0.00 2 7527 \N +261781 2025-09-02 17:42:28.986526+00 2025-09-02 17:42:28.986534+00 f t SUBTOTAL 78000.00 1 6736 \N +261782 2025-09-02 17:42:28.988688+00 2025-09-02 17:42:28.988696+00 f t DESCUENTO 0.00 2 6736 \N +261783 2025-09-02 17:42:28.990049+00 2025-09-02 17:42:28.990056+00 f t TOTAL 78000.00 3 6736 \N +261784 2025-09-02 17:42:28.991207+00 2025-09-02 17:42:28.991212+00 f t ADELANTO 21500.00 4 6736 \N +295827 2025-09-14 13:58:01.002988+00 2025-09-14 13:58:01.002999+00 f t TOTAL 68000.00 3 7527 \N +282873 2025-09-09 19:44:15.468971+00 2025-09-09 19:44:15.46898+00 f t SUBTOTAL 144000.00 1 7219 \N +282874 2025-09-09 19:44:15.470809+00 2025-09-09 19:44:15.470817+00 f t DESCUENTO 0.00 2 7219 \N +282875 2025-09-09 19:44:15.472296+00 2025-09-09 19:44:15.472305+00 f t TOTAL 144000.00 3 7219 \N +282876 2025-09-09 19:44:15.473562+00 2025-09-09 19:44:15.473568+00 f t ADELANTO 38000.00 4 7219 \N +264701 2025-09-03 14:02:33.555822+00 2025-09-03 14:02:33.555835+00 f t SUBTOTAL 55000.00 1 6805 \N +264702 2025-09-03 14:02:33.558025+00 2025-09-03 14:02:33.558035+00 f t DESCUENTO 0.00 2 6805 \N +264703 2025-09-03 14:02:33.559908+00 2025-09-03 14:02:33.559917+00 f t TOTAL 55000.00 3 6805 \N +264704 2025-09-03 14:02:33.561374+00 2025-09-03 14:02:33.561383+00 f t ADELANTO 11000.00 4 6805 \N +271129 2025-09-05 15:12:04.3828+00 2025-09-05 15:12:04.382813+00 f t SUBTOTAL 55000.00 1 6960 \N +271130 2025-09-05 15:12:04.384997+00 2025-09-05 15:12:04.385008+00 f t DESCUENTO 0.00 2 6960 \N +271131 2025-09-05 15:12:04.386622+00 2025-09-05 15:12:04.386631+00 f t TOTAL 55000.00 3 6960 \N +271132 2025-09-05 15:12:04.394394+00 2025-09-05 15:12:04.394407+00 f t ADELANTO 11000.00 4 6960 \N +265101 2025-09-03 16:28:57.725749+00 2025-09-03 16:28:57.725762+00 f t SUBTOTAL 0.00 1 6816 \N +265102 2025-09-03 16:28:57.727438+00 2025-09-03 16:28:57.727449+00 f t DESCUENTO 0.00 2 6816 \N +265103 2025-09-03 16:28:57.728808+00 2025-09-03 16:28:57.728816+00 f t TOTAL 0.00 3 6816 \N +265104 2025-09-03 16:28:57.730023+00 2025-09-03 16:28:57.730031+00 f t ADELANTO 0.00 4 6816 \N +271673 2025-09-05 18:20:34.345743+00 2025-09-05 18:20:34.345753+00 f t SUBTOTAL 0.00 1 6973 \N +271674 2025-09-05 18:20:34.347363+00 2025-09-05 18:20:34.347371+00 f t DESCUENTO 0.00 2 6973 \N +271675 2025-09-05 18:20:34.350275+00 2025-09-05 18:20:34.350286+00 f t TOTAL 0.00 3 6973 \N +271676 2025-09-05 18:20:34.35135+00 2025-09-05 18:20:34.351356+00 f t ADELANTO 0.00 4 6973 \N +261877 2025-09-02 18:19:58.060932+00 2025-09-02 18:19:58.060949+00 f t SUBTOTAL 0.00 1 6738 \N +261878 2025-09-02 18:19:58.06521+00 2025-09-02 18:19:58.065221+00 f t DESCUENTO 0.00 2 6738 \N +261879 2025-09-02 18:19:58.067032+00 2025-09-02 18:19:58.067041+00 f t TOTAL 0.00 3 6738 \N +261880 2025-09-02 18:19:58.0685+00 2025-09-02 18:19:58.068507+00 f t ADELANTO 0.00 4 6738 \N +261885 2025-09-02 18:37:41.952503+00 2025-09-02 18:37:41.952512+00 f t SUBTOTAL 0.00 1 6739 \N +261886 2025-09-02 18:37:41.957426+00 2025-09-02 18:37:41.957435+00 f t DESCUENTO 0.00 2 6739 \N +261887 2025-09-02 18:37:41.959326+00 2025-09-02 18:37:41.959335+00 f t TOTAL 0.00 3 6739 \N +261888 2025-09-02 18:37:41.960997+00 2025-09-02 18:37:41.961004+00 f t ADELANTO 0.00 4 6739 \N +265905 2025-09-03 20:41:19.712609+00 2025-09-03 20:41:19.712619+00 f t SUBTOTAL 0.00 1 6838 \N +265906 2025-09-03 20:41:19.715851+00 2025-09-03 20:41:19.715858+00 f t DESCUENTO 0.00 2 6838 \N +265907 2025-09-03 20:41:19.72635+00 2025-09-03 20:41:19.726361+00 f t TOTAL 0.00 3 6838 \N +265908 2025-09-03 20:41:19.727982+00 2025-09-03 20:41:19.727989+00 f t ADELANTO 0.00 4 6838 \N +261917 2025-09-02 18:39:32.722729+00 2025-09-02 18:39:32.722737+00 f t SUBTOTAL 55000.00 1 6740 \N +261918 2025-09-02 18:39:32.724374+00 2025-09-02 18:39:32.72438+00 f t DESCUENTO 0.00 2 6740 \N +261919 2025-09-02 18:39:32.725463+00 2025-09-02 18:39:32.725468+00 f t TOTAL 55000.00 3 6740 \N +261920 2025-09-02 18:39:32.72636+00 2025-09-02 18:39:32.726366+00 f t ADELANTO 11000.00 4 6740 \N +272485 2025-09-06 01:17:53.761519+00 2025-09-06 01:17:53.761528+00 f t SUBTOTAL 68000.00 1 6999 \N +272486 2025-09-06 01:17:53.763597+00 2025-09-06 01:17:53.763604+00 f t DESCUENTO 0.00 2 6999 \N +272487 2025-09-06 01:17:53.765506+00 2025-09-06 01:17:53.765513+00 f t TOTAL 68000.00 3 6999 \N +272488 2025-09-06 01:17:53.766707+00 2025-09-06 01:17:53.766713+00 f t ADELANTO 13000.00 4 6999 \N +261937 2025-09-02 18:51:33.800612+00 2025-09-02 18:51:33.800623+00 f t SUBTOTAL 0.00 1 6741 \N +261938 2025-09-02 18:51:33.802623+00 2025-09-02 18:51:33.802634+00 f t DESCUENTO 0.00 2 6741 \N +261939 2025-09-02 18:51:33.803806+00 2025-09-02 18:51:33.803813+00 f t TOTAL 0.00 3 6741 \N +261940 2025-09-02 18:51:33.804759+00 2025-09-02 18:51:33.804764+00 f t ADELANTO 0.00 4 6741 \N +272985 2025-09-06 13:10:16.027061+00 2025-09-06 13:10:16.027075+00 f t SUBTOTAL 0.00 1 7009 \N +272986 2025-09-06 13:10:16.029042+00 2025-09-06 13:10:16.029051+00 f t DESCUENTO 0.00 2 7009 \N +272987 2025-09-06 13:10:16.0305+00 2025-09-06 13:10:16.030509+00 f t TOTAL 0.00 3 7009 \N +272988 2025-09-06 13:10:16.031962+00 2025-09-06 13:10:16.031969+00 f t ADELANTO 0.00 4 7009 \N +266597 2025-09-03 22:49:05.222993+00 2025-09-03 22:49:05.223003+00 f t SUBTOTAL 76000.00 1 6853 \N +261969 2025-09-02 19:26:30.339653+00 2025-09-02 19:26:30.339666+00 f t SUBTOTAL 70000.00 1 6742 \N +261970 2025-09-02 19:26:30.341528+00 2025-09-02 19:26:30.341538+00 f t DESCUENTO 0.00 2 6742 \N +261971 2025-09-02 19:26:30.350572+00 2025-09-02 19:26:30.350585+00 f t TOTAL 70000.00 3 6742 \N +261972 2025-09-02 19:26:30.352609+00 2025-09-02 19:26:30.352618+00 f t ADELANTO 19000.00 4 6742 \N +266598 2025-09-03 22:49:05.225285+00 2025-09-03 22:49:05.225294+00 f t DESCUENTO 0.00 2 6853 \N +266599 2025-09-03 22:49:05.226699+00 2025-09-03 22:49:05.226706+00 f t TOTAL 76000.00 3 6853 \N +266600 2025-09-03 22:49:05.228156+00 2025-09-03 22:49:05.228162+00 f t ADELANTO 41000.00 4 6853 \N +273113 2025-09-06 13:58:50.315419+00 2025-09-06 13:58:50.315429+00 f t SUBTOTAL 55000.00 1 7011 \N +273114 2025-09-06 13:58:50.31733+00 2025-09-06 13:58:50.317338+00 f t DESCUENTO 0.00 2 7011 \N +273115 2025-09-06 13:58:50.318813+00 2025-09-06 13:58:50.318821+00 f t TOTAL 55000.00 3 7011 \N +273116 2025-09-06 13:58:50.320036+00 2025-09-06 13:58:50.320042+00 f t ADELANTO 11000.00 4 7011 \N +273377 2025-09-06 14:27:48.757161+00 2025-09-06 14:27:48.757169+00 f t SUBTOTAL 46000.00 1 7017 \N +273378 2025-09-06 14:27:48.758746+00 2025-09-06 14:27:48.758752+00 f t DESCUENTO 0.00 2 7017 \N +273379 2025-09-06 14:27:48.75975+00 2025-09-06 14:27:48.759756+00 f t TOTAL 46000.00 3 7017 \N +273380 2025-09-06 14:27:48.760614+00 2025-09-06 14:27:48.760619+00 f t ADELANTO 11000.00 4 7017 \N +266897 2025-09-04 01:57:46.130914+00 2025-09-04 01:57:46.130923+00 f t SUBTOTAL 0.00 1 6863 \N +266898 2025-09-04 01:57:46.132582+00 2025-09-04 01:57:46.132592+00 f t DESCUENTO 0.00 2 6863 \N +266899 2025-09-04 01:57:46.134371+00 2025-09-04 01:57:46.134379+00 f t TOTAL 0.00 3 6863 \N +266900 2025-09-04 01:57:46.135781+00 2025-09-04 01:57:46.13579+00 f t ADELANTO 0.00 4 6863 \N +273653 2025-09-06 16:57:40.765354+00 2025-09-06 16:57:40.765365+00 f t SUBTOTAL 0.00 1 7027 \N +273654 2025-09-06 16:57:40.766983+00 2025-09-06 16:57:40.76699+00 f t DESCUENTO 0.00 2 7027 \N +273655 2025-09-06 16:57:40.768712+00 2025-09-06 16:57:40.76872+00 f t TOTAL 0.00 3 7027 \N +273656 2025-09-06 16:57:40.770139+00 2025-09-06 16:57:40.770147+00 f t ADELANTO 0.00 4 7027 \N +262029 2025-09-02 19:41:58.878836+00 2025-09-02 19:41:58.878845+00 f t SUBTOTAL 0.00 1 6743 \N +262030 2025-09-02 19:41:58.880721+00 2025-09-02 19:41:58.880729+00 f t DESCUENTO 0.00 2 6743 \N +262031 2025-09-02 19:41:58.882777+00 2025-09-02 19:41:58.882784+00 f t TOTAL 0.00 3 6743 \N +262032 2025-09-02 19:41:58.883996+00 2025-09-02 19:41:58.884002+00 f t ADELANTO 0.00 4 6743 \N +295828 2025-09-14 13:58:01.004544+00 2025-09-14 13:58:01.004552+00 f t ADELANTO 13000.00 4 7527 \N +397333 2025-10-20 00:01:09.335455+00 2025-10-20 00:01:09.335468+00 f t SUBTOTAL 0.00 1 10056 \N +397334 2025-10-20 00:01:09.337701+00 2025-10-20 00:01:09.337712+00 f t DESCUENTO 0.00 2 10056 \N +276841 2025-09-08 12:32:51.345275+00 2025-09-08 12:32:51.345284+00 f t SUBTOTAL 46000.00 1 7098 \N +276842 2025-09-08 12:32:51.347054+00 2025-09-08 12:32:51.347061+00 f t DESCUENTO 0.00 2 7098 \N +276843 2025-09-08 12:32:51.34822+00 2025-09-08 12:32:51.348226+00 f t TOTAL 46000.00 3 7098 \N +276844 2025-09-08 12:32:51.349186+00 2025-09-08 12:32:51.349191+00 f t ADELANTO 11000.00 4 7098 \N +270681 2025-09-05 13:06:11.731622+00 2025-09-05 13:06:11.731632+00 f t SUBTOTAL 78000.00 1 6952 \N +270682 2025-09-05 13:06:11.733346+00 2025-09-05 13:06:11.733353+00 f t DESCUENTO 0.00 2 6952 \N +270683 2025-09-05 13:06:11.734853+00 2025-09-05 13:06:11.734861+00 f t TOTAL 78000.00 3 6952 \N +270684 2025-09-05 13:06:11.73626+00 2025-09-05 13:06:11.736266+00 f t ADELANTO 13000.00 4 6952 \N +270945 2025-09-05 14:22:05.40511+00 2025-09-05 14:22:05.405123+00 f t SUBTOTAL 70000.00 1 6955 \N +270946 2025-09-05 14:22:05.40719+00 2025-09-05 14:22:05.407197+00 f t DESCUENTO 0.00 2 6955 \N +270947 2025-09-05 14:22:05.408604+00 2025-09-05 14:22:05.408611+00 f t TOTAL 70000.00 3 6955 \N +270948 2025-09-05 14:22:05.409779+00 2025-09-05 14:22:05.409785+00 f t ADELANTO 19000.00 4 6955 \N +262109 2025-09-02 19:46:01.093281+00 2025-09-02 19:46:01.093291+00 f t SUBTOTAL 70000.00 1 6744 \N +262110 2025-09-02 19:46:01.094956+00 2025-09-02 19:46:01.094963+00 f t DESCUENTO 0.00 2 6744 \N +262111 2025-09-02 19:46:01.096509+00 2025-09-02 19:46:01.096515+00 f t TOTAL 70000.00 3 6744 \N +262112 2025-09-02 19:46:01.097857+00 2025-09-02 19:46:01.097862+00 f t ADELANTO 19000.00 4 6744 \N +264709 2025-09-03 14:03:41.73536+00 2025-09-03 14:03:41.735372+00 f t SUBTOTAL 0.00 1 6807 \N +264710 2025-09-03 14:03:41.737104+00 2025-09-03 14:03:41.737114+00 f t DESCUENTO 0.00 2 6807 \N +264711 2025-09-03 14:03:41.739568+00 2025-09-03 14:03:41.73958+00 f t TOTAL 0.00 3 6807 \N +264712 2025-09-03 14:03:41.741196+00 2025-09-03 14:03:41.741205+00 f t ADELANTO 0.00 4 6807 \N +264849 2025-09-03 14:32:29.805642+00 2025-09-03 14:32:29.805653+00 f t SUBTOTAL 119400.00 1 6812 \N +264850 2025-09-03 14:32:29.807626+00 2025-09-03 14:32:29.807636+00 f t DESCUENTO 0.00 2 6812 \N +262125 2025-09-02 19:57:38.352105+00 2025-09-02 19:57:38.352118+00 f t SUBTOTAL 55000.00 1 6745 \N +262126 2025-09-02 19:57:38.35528+00 2025-09-02 19:57:38.355291+00 f t DESCUENTO 0.00 2 6745 \N +262127 2025-09-02 19:57:38.356834+00 2025-09-02 19:57:38.356842+00 f t TOTAL 55000.00 3 6745 \N +262128 2025-09-02 19:57:38.358166+00 2025-09-02 19:57:38.358174+00 f t ADELANTO 11000.00 4 6745 \N +264851 2025-09-03 14:32:29.809194+00 2025-09-03 14:32:29.809204+00 f t TOTAL 119400.00 3 6812 \N +264852 2025-09-03 14:32:29.810598+00 2025-09-03 14:32:29.810605+00 f t ADELANTO 78900.00 4 6812 \N +271309 2025-09-05 15:26:23.968018+00 2025-09-05 15:26:23.968027+00 f t SUBTOTAL 68000.00 1 6962 \N +271310 2025-09-05 15:26:23.969571+00 2025-09-05 15:26:23.969577+00 f t DESCUENTO 0.00 2 6962 \N +271311 2025-09-05 15:26:23.970505+00 2025-09-05 15:26:23.97051+00 f t TOTAL 68000.00 3 6962 \N +271312 2025-09-05 15:26:23.971431+00 2025-09-05 15:26:23.971463+00 f t ADELANTO 13000.00 4 6962 \N +262165 2025-09-02 20:37:30.555948+00 2025-09-02 20:37:30.555963+00 f t SUBTOTAL 0.00 1 6746 \N +262166 2025-09-02 20:37:30.558732+00 2025-09-02 20:37:30.558744+00 f t DESCUENTO 0.00 2 6746 \N +262167 2025-09-02 20:37:30.560704+00 2025-09-02 20:37:30.560715+00 f t TOTAL 0.00 3 6746 \N +262168 2025-09-02 20:37:30.562441+00 2025-09-02 20:37:30.562452+00 f t ADELANTO 0.00 4 6746 \N +272249 2025-09-05 23:18:31.131535+00 2025-09-05 23:18:31.131545+00 f t SUBTOTAL 0.00 1 6987 \N +272250 2025-09-05 23:18:31.133487+00 2025-09-05 23:18:31.133493+00 f t DESCUENTO 0.00 2 6987 \N +272251 2025-09-05 23:18:31.134687+00 2025-09-05 23:18:31.134693+00 f t TOTAL 0.00 3 6987 \N +272252 2025-09-05 23:18:31.135867+00 2025-09-05 23:18:31.135873+00 f t ADELANTO 0.00 4 6987 \N +272341 2025-09-06 00:05:27.323694+00 2025-09-06 00:05:27.323703+00 f t SUBTOTAL 70000.00 1 6994 \N +272342 2025-09-06 00:05:27.325554+00 2025-09-06 00:05:27.325562+00 f t DESCUENTO 0.00 2 6994 \N +272343 2025-09-06 00:05:27.326951+00 2025-09-06 00:05:27.326958+00 f t TOTAL 70000.00 3 6994 \N +272344 2025-09-06 00:05:27.32834+00 2025-09-06 00:05:27.328347+00 f t ADELANTO 19000.00 4 6994 \N +265969 2025-09-03 20:43:02.553982+00 2025-09-03 20:43:02.55399+00 f t SUBTOTAL 0.00 1 6839 \N +265970 2025-09-03 20:43:02.556039+00 2025-09-03 20:43:02.556047+00 f t DESCUENTO 0.00 2 6839 \N +262209 2025-09-02 20:58:00.801322+00 2025-09-02 20:58:00.801333+00 f t SUBTOTAL 75000.00 1 6747 \N +262210 2025-09-02 20:58:00.803776+00 2025-09-02 20:58:00.803789+00 f t DESCUENTO 0.00 2 6747 \N +262211 2025-09-02 20:58:00.805863+00 2025-09-02 20:58:00.805874+00 f t TOTAL 75000.00 3 6747 \N +262212 2025-09-02 20:58:00.807776+00 2025-09-02 20:58:00.807786+00 f t ADELANTO 15000.00 4 6747 \N +265971 2025-09-03 20:43:02.557301+00 2025-09-03 20:43:02.557308+00 f t TOTAL 0.00 3 6839 \N +265972 2025-09-03 20:43:02.558726+00 2025-09-03 20:43:02.558735+00 f t ADELANTO 0.00 4 6839 \N +272493 2025-09-06 01:20:25.607943+00 2025-09-06 01:20:25.607953+00 f t SUBTOTAL 0.00 1 7000 \N +272494 2025-09-06 01:20:25.60979+00 2025-09-06 01:20:25.609797+00 f t DESCUENTO 0.00 2 7000 \N +272495 2025-09-06 01:20:25.611283+00 2025-09-06 01:20:25.61129+00 f t TOTAL 0.00 3 7000 \N +272496 2025-09-06 01:20:25.612542+00 2025-09-06 01:20:25.612548+00 f t ADELANTO 0.00 4 7000 \N +262273 2025-09-02 21:17:49.679231+00 2025-09-02 21:17:49.679257+00 f t SUBTOTAL 0.00 1 6748 \N +262274 2025-09-02 21:17:49.681494+00 2025-09-02 21:17:49.681506+00 f t DESCUENTO 0.00 2 6748 \N +262275 2025-09-02 21:17:49.683447+00 2025-09-02 21:17:49.683462+00 f t TOTAL 0.00 3 6748 \N +262276 2025-09-02 21:17:49.685731+00 2025-09-02 21:17:49.685744+00 f t ADELANTO 0.00 4 6748 \N +262309 2025-09-02 21:49:57.260989+00 2025-09-02 21:49:57.261+00 f t SUBTOTAL 0.00 1 6749 \N +262310 2025-09-02 21:49:57.264146+00 2025-09-02 21:49:57.264158+00 f t DESCUENTO 0.00 2 6749 \N +262311 2025-09-02 21:49:57.26578+00 2025-09-02 21:49:57.26579+00 f t TOTAL 0.00 3 6749 \N +262312 2025-09-02 21:49:57.267257+00 2025-09-02 21:49:57.267264+00 f t ADELANTO 0.00 4 6749 \N +262329 2025-09-02 22:03:33.099087+00 2025-09-02 22:03:33.099096+00 f t SUBTOTAL 0.00 1 6750 \N +262330 2025-09-02 22:03:33.101313+00 2025-09-02 22:03:33.101324+00 f t DESCUENTO 0.00 2 6750 \N +262331 2025-09-02 22:03:33.102898+00 2025-09-02 22:03:33.102907+00 f t TOTAL 0.00 3 6750 \N +262332 2025-09-02 22:03:33.107201+00 2025-09-02 22:03:33.107209+00 f t ADELANTO 0.00 4 6750 \N +267389 2025-09-04 11:35:44.561789+00 2025-09-04 11:35:44.561798+00 f t SUBTOTAL 78000.00 1 6879 \N +267390 2025-09-04 11:35:44.568465+00 2025-09-04 11:35:44.568475+00 f t DESCUENTO 0.00 2 6879 \N +267391 2025-09-04 11:35:44.571432+00 2025-09-04 11:35:44.571441+00 f t TOTAL 78000.00 3 6879 \N +267392 2025-09-04 11:35:44.573456+00 2025-09-04 11:35:44.573469+00 f t ADELANTO 13000.00 4 6879 \N +267481 2025-09-04 13:04:26.378709+00 2025-09-04 13:04:26.378722+00 f t SUBTOTAL 156000.00 1 6880 \N +267482 2025-09-04 13:04:26.380872+00 2025-09-04 13:04:26.380882+00 f t DESCUENTO 0.00 2 6880 \N +267483 2025-09-04 13:04:26.382529+00 2025-09-04 13:04:26.382538+00 f t TOTAL 156000.00 3 6880 \N +267484 2025-09-04 13:04:26.383948+00 2025-09-04 13:04:26.383957+00 f t ADELANTO 43000.00 4 6880 \N +262361 2025-09-02 22:24:59.469951+00 2025-09-02 22:24:59.46996+00 f t SUBTOTAL 46000.00 1 6751 \N +262362 2025-09-02 22:24:59.471769+00 2025-09-02 22:24:59.471778+00 f t DESCUENTO 0.00 2 6751 \N +262363 2025-09-02 22:24:59.473687+00 2025-09-02 22:24:59.473697+00 f t TOTAL 46000.00 3 6751 \N +262364 2025-09-02 22:24:59.475051+00 2025-09-02 22:24:59.475057+00 f t ADELANTO 11000.00 4 6751 \N +331569 2025-09-27 13:13:11.836956+00 2025-09-27 13:13:11.83697+00 f t SUBTOTAL 55000.00 1 8383 \N +331570 2025-09-27 13:13:11.839275+00 2025-09-27 13:13:11.839289+00 f t DESCUENTO 0.00 2 8383 \N +264297 2025-09-03 11:19:38.229524+00 2025-09-03 11:19:38.229537+00 f t SUBTOTAL 0.00 1 6793 \N +264298 2025-09-03 11:19:38.231899+00 2025-09-03 11:19:38.231912+00 f t DESCUENTO 0.00 2 6793 \N +264299 2025-09-03 11:19:38.233939+00 2025-09-03 11:19:38.233949+00 f t TOTAL 0.00 3 6793 \N +264300 2025-09-03 11:19:38.235372+00 2025-09-03 11:19:38.235381+00 f t ADELANTO 0.00 4 6793 \N +262389 2025-09-02 22:35:33.685362+00 2025-09-02 22:35:33.685371+00 f t SUBTOTAL 30000.00 1 6752 \N +262390 2025-09-02 22:35:33.687696+00 2025-09-02 22:35:33.687708+00 f t DESCUENTO 0.00 2 6752 \N +262391 2025-09-02 22:35:33.689552+00 2025-09-02 22:35:33.68956+00 f t TOTAL 30000.00 3 6752 \N +262392 2025-09-02 22:35:33.691029+00 2025-09-02 22:35:33.691037+00 f t ADELANTO 30000.00 4 6752 \N +264629 2025-09-03 13:24:31.909314+00 2025-09-03 13:24:31.909326+00 f t SUBTOTAL 55000.00 1 6801 \N +264630 2025-09-03 13:24:31.91168+00 2025-09-03 13:24:31.911692+00 f t DESCUENTO 0.00 2 6801 \N +264631 2025-09-03 13:24:31.917472+00 2025-09-03 13:24:31.917482+00 f t TOTAL 55000.00 3 6801 \N +264632 2025-09-03 13:24:31.9196+00 2025-09-03 13:24:31.919612+00 f t ADELANTO 11000.00 4 6801 \N +262417 2025-09-02 22:48:35.027953+00 2025-09-02 22:48:35.027965+00 f t SUBTOTAL 46000.00 1 6753 \N +262418 2025-09-02 22:48:35.030293+00 2025-09-02 22:48:35.030302+00 f t DESCUENTO 0.00 2 6753 \N +262419 2025-09-02 22:48:35.032037+00 2025-09-02 22:48:35.032045+00 f t TOTAL 46000.00 3 6753 \N +262420 2025-09-02 22:48:35.033389+00 2025-09-02 22:48:35.033396+00 f t ADELANTO 11000.00 4 6753 \N +277369 2025-09-08 16:18:14.215002+00 2025-09-08 16:18:14.215011+00 f t SUBTOTAL 0.00 1 7110 \N +277370 2025-09-08 16:18:14.216508+00 2025-09-08 16:18:14.216515+00 f t DESCUENTO 0.00 2 7110 \N +277371 2025-09-08 16:18:14.217686+00 2025-09-08 16:18:14.217691+00 f t TOTAL 0.00 3 7110 \N +277372 2025-09-08 16:18:14.218663+00 2025-09-08 16:18:14.218668+00 f t ADELANTO 0.00 4 7110 \N +277545 2025-09-08 17:03:24.09952+00 2025-09-08 17:03:24.099529+00 f t SUBTOTAL 46000.00 1 7115 \N +277546 2025-09-08 17:03:24.101602+00 2025-09-08 17:03:24.101612+00 f t DESCUENTO 0.00 2 7115 \N +277547 2025-09-08 17:03:24.103032+00 2025-09-08 17:03:24.10304+00 f t TOTAL 46000.00 3 7115 \N +277548 2025-09-08 17:03:24.10436+00 2025-09-08 17:03:24.104368+00 f t ADELANTO 11000.00 4 7115 \N +271317 2025-09-05 16:17:45.734196+00 2025-09-05 16:17:45.734238+00 f t SUBTOTAL 0.00 1 6963 \N +271318 2025-09-05 16:17:45.736019+00 2025-09-05 16:17:45.736027+00 f t DESCUENTO 0.00 2 6963 \N +271319 2025-09-05 16:17:45.737259+00 2025-09-05 16:17:45.737268+00 f t TOTAL 0.00 3 6963 \N +271320 2025-09-05 16:17:45.742682+00 2025-09-05 16:17:45.742695+00 f t ADELANTO 0.00 4 6963 \N +271413 2025-09-05 16:54:30.682969+00 2025-09-05 16:54:30.682982+00 f t SUBTOTAL 0.00 1 6881 \N +271414 2025-09-05 16:54:30.689945+00 2025-09-05 16:54:30.689956+00 f t DESCUENTO 0.00 2 6881 \N +271415 2025-09-05 16:54:30.692229+00 2025-09-05 16:54:30.692241+00 f t TOTAL 0.00 3 6881 \N +271416 2025-09-05 16:54:30.694429+00 2025-09-05 16:54:30.694442+00 f t ADELANTO 0.00 4 6881 \N +265441 2025-09-03 17:52:38.079746+00 2025-09-03 17:52:38.07976+00 f t SUBTOTAL 54000.00 1 6823 \N +265442 2025-09-03 17:52:38.082206+00 2025-09-03 17:52:38.082217+00 f t DESCUENTO 0.00 2 6823 \N +265443 2025-09-03 17:52:38.084107+00 2025-09-03 17:52:38.084118+00 f t TOTAL 54000.00 3 6823 \N +265444 2025-09-03 17:52:38.085906+00 2025-09-03 17:52:38.085916+00 f t ADELANTO 13500.00 4 6823 \N +262473 2025-09-02 22:50:34.035643+00 2025-09-02 22:50:34.035656+00 f t SUBTOTAL 46000.00 1 6754 \N +262474 2025-09-02 22:50:34.037802+00 2025-09-02 22:50:34.037813+00 f t DESCUENTO 0.00 2 6754 \N +262475 2025-09-02 22:50:34.039363+00 2025-09-02 22:50:34.039394+00 f t TOTAL 46000.00 3 6754 \N +262476 2025-09-02 22:50:34.040987+00 2025-09-02 22:50:34.040996+00 f t ADELANTO 11000.00 4 6754 \N +278041 2025-09-08 19:24:19.546954+00 2025-09-08 19:24:19.546962+00 f t SUBTOTAL 78000.00 1 7126 \N +278042 2025-09-08 19:24:19.549221+00 2025-09-08 19:24:19.549232+00 f t DESCUENTO 0.00 2 7126 \N +278043 2025-09-08 19:24:19.550959+00 2025-09-08 19:24:19.550968+00 f t TOTAL 78000.00 3 7126 \N +278044 2025-09-08 19:24:19.55266+00 2025-09-08 19:24:19.552668+00 f t ADELANTO 13000.00 4 7126 \N +278117 2025-09-08 19:48:24.76573+00 2025-09-08 19:48:24.765742+00 f t SUBTOTAL 110000.00 1 7128 \N +278118 2025-09-08 19:48:24.767516+00 2025-09-08 19:48:24.767526+00 f t DESCUENTO 0.00 2 7128 \N +278119 2025-09-08 19:48:24.768704+00 2025-09-08 19:48:24.768713+00 f t TOTAL 110000.00 3 7128 \N +278120 2025-09-08 19:48:24.769885+00 2025-09-08 19:48:24.769894+00 f t ADELANTO 22000.00 4 7128 \N +266041 2025-09-03 20:44:39.755464+00 2025-09-03 20:44:39.755473+00 f t SUBTOTAL 0.00 1 6842 \N +266042 2025-09-03 20:44:39.757333+00 2025-09-03 20:44:39.757341+00 f t DESCUENTO 0.00 2 6842 \N +266043 2025-09-03 20:44:39.758436+00 2025-09-03 20:44:39.758442+00 f t TOTAL 0.00 3 6842 \N +266044 2025-09-03 20:44:39.759392+00 2025-09-03 20:44:39.759398+00 f t ADELANTO 0.00 4 6842 \N +266101 2025-09-03 21:14:27.502426+00 2025-09-03 21:14:27.50244+00 f t SUBTOTAL 0.00 1 6844 \N +266102 2025-09-03 21:14:27.50476+00 2025-09-03 21:14:27.50477+00 f t DESCUENTO 0.00 2 6844 \N +266103 2025-09-03 21:14:27.506125+00 2025-09-03 21:14:27.506132+00 f t TOTAL 0.00 3 6844 \N +266104 2025-09-03 21:14:27.507689+00 2025-09-03 21:14:27.507697+00 f t ADELANTO 0.00 4 6844 \N +262509 2025-09-02 23:02:18.862612+00 2025-09-02 23:02:18.862622+00 f t SUBTOTAL 46000.00 1 6755 \N +262510 2025-09-02 23:02:18.864382+00 2025-09-02 23:02:18.86439+00 f t DESCUENTO 0.00 2 6755 \N +262511 2025-09-02 23:02:18.866024+00 2025-09-02 23:02:18.866033+00 f t TOTAL 46000.00 3 6755 \N +262512 2025-09-02 23:02:18.867618+00 2025-09-02 23:02:18.867625+00 f t ADELANTO 11000.00 4 6755 \N +272257 2025-09-05 23:23:54.493349+00 2025-09-05 23:23:54.493357+00 f t SUBTOTAL 0.00 1 6988 \N +272258 2025-09-05 23:23:54.49712+00 2025-09-05 23:23:54.497126+00 f t DESCUENTO 0.00 2 6988 \N +272259 2025-09-05 23:23:54.499098+00 2025-09-05 23:23:54.499111+00 f t TOTAL 0.00 3 6988 \N +272260 2025-09-05 23:23:54.500317+00 2025-09-05 23:23:54.500322+00 f t ADELANTO 0.00 4 6988 \N +272349 2025-09-06 00:06:15.117048+00 2025-09-06 00:06:15.117062+00 f t SUBTOTAL 0.00 1 6995 \N +272350 2025-09-06 00:06:15.118987+00 2025-09-06 00:06:15.119002+00 f t DESCUENTO 0.00 2 6995 \N +272351 2025-09-06 00:06:15.122232+00 2025-09-06 00:06:15.122244+00 f t TOTAL 0.00 3 6995 \N +272352 2025-09-06 00:06:15.123856+00 2025-09-06 00:06:15.123866+00 f t ADELANTO 0.00 4 6995 \N +266665 2025-09-03 23:56:17.729153+00 2025-09-03 23:56:17.729165+00 f t SUBTOTAL 30000.00 1 6855 \N +266666 2025-09-03 23:56:17.731071+00 2025-09-03 23:56:17.731078+00 f t DESCUENTO 0.00 2 6855 \N +266667 2025-09-03 23:56:17.732324+00 2025-09-03 23:56:17.732331+00 f t TOTAL 30000.00 3 6855 \N +266668 2025-09-03 23:56:17.733686+00 2025-09-03 23:56:17.733692+00 f t ADELANTO 30000.00 4 6855 \N +262625 2025-09-02 23:16:31.634886+00 2025-09-02 23:16:31.634898+00 f t SUBTOTAL 46000.00 1 6757 \N +262626 2025-09-02 23:16:31.638787+00 2025-09-02 23:16:31.638799+00 f t DESCUENTO 0.00 2 6757 \N +262627 2025-09-02 23:16:31.640813+00 2025-09-02 23:16:31.640826+00 f t TOTAL 46000.00 3 6757 \N +262628 2025-09-02 23:16:31.642645+00 2025-09-02 23:16:31.642657+00 f t ADELANTO 11000.00 4 6757 \N +346822 2025-10-02 19:25:41.660611+00 2025-10-02 19:25:41.66062+00 f t DESCUENTO 0.00 2 8736 \N +346823 2025-10-02 19:25:41.662255+00 2025-10-02 19:25:41.662262+00 f t TOTAL 0.00 3 8736 \N +331571 2025-09-27 13:13:11.840982+00 2025-09-27 13:13:11.841002+00 f t TOTAL 55000.00 3 8383 \N +331572 2025-09-27 13:13:11.842807+00 2025-09-27 13:13:11.842817+00 f t ADELANTO 11000.00 4 8383 \N +302859 2025-09-17 20:30:36.660844+00 2025-09-17 20:30:36.660852+00 f t TOTAL 0.00 3 7691 \N +302860 2025-09-17 20:30:36.662323+00 2025-09-17 20:30:36.66233+00 f t ADELANTO 0.00 4 7691 \N +276737 2025-09-08 12:02:12.1375+00 2025-09-08 12:02:12.137514+00 f t SUBTOTAL 0.00 1 7095 \N +276738 2025-09-08 12:02:12.140921+00 2025-09-08 12:02:12.140934+00 f t DESCUENTO 0.00 2 7095 \N +276739 2025-09-08 12:02:12.142826+00 2025-09-08 12:02:12.142839+00 f t TOTAL 0.00 3 7095 \N +276740 2025-09-08 12:02:12.145588+00 2025-09-08 12:02:12.145606+00 f t ADELANTO 0.00 4 7095 \N +264305 2025-09-03 11:20:13.248217+00 2025-09-03 11:20:13.248227+00 f t SUBTOTAL 0.00 1 6794 \N +264306 2025-09-03 11:20:13.250153+00 2025-09-03 11:20:13.250161+00 f t DESCUENTO 0.00 2 6794 \N +264307 2025-09-03 11:20:13.251681+00 2025-09-03 11:20:13.251687+00 f t TOTAL 0.00 3 6794 \N +264308 2025-09-03 11:20:13.252889+00 2025-09-03 11:20:13.252895+00 f t ADELANTO 0.00 4 6794 \N +262673 2025-09-02 23:25:18.914296+00 2025-09-02 23:25:18.914308+00 f t SUBTOTAL 46000.00 1 6756 \N +262674 2025-09-02 23:25:18.916822+00 2025-09-02 23:25:18.916833+00 f t DESCUENTO 0.00 2 6756 \N +262675 2025-09-02 23:25:18.918743+00 2025-09-02 23:25:18.918755+00 f t TOTAL 46000.00 3 6756 \N +262676 2025-09-02 23:25:18.920603+00 2025-09-02 23:25:18.920613+00 f t ADELANTO 11000.00 4 6756 \N +265117 2025-09-03 16:52:37.963408+00 2025-09-03 16:52:37.963418+00 f t SUBTOTAL 0.00 1 6737 \N +265118 2025-09-03 16:52:37.967562+00 2025-09-03 16:52:37.967573+00 f t DESCUENTO 0.00 2 6737 \N +265119 2025-09-03 16:52:37.96969+00 2025-09-03 16:52:37.969701+00 f t TOTAL 0.00 3 6737 \N +265120 2025-09-03 16:52:37.971375+00 2025-09-03 16:52:37.971383+00 f t ADELANTO 0.00 4 6737 \N +271689 2025-09-05 18:21:19.525832+00 2025-09-05 18:21:19.525847+00 f t SUBTOTAL 0.00 1 6974 \N +271690 2025-09-05 18:21:19.531251+00 2025-09-05 18:21:19.531265+00 f t DESCUENTO 0.00 2 6974 \N +271691 2025-09-05 18:21:19.533061+00 2025-09-05 18:21:19.533071+00 f t TOTAL 0.00 3 6974 \N +271692 2025-09-05 18:21:19.534676+00 2025-09-05 18:21:19.534685+00 f t ADELANTO 0.00 4 6974 \N +271845 2025-09-05 20:23:59.274838+00 2025-09-05 20:23:59.274848+00 f t SUBTOTAL 0.00 1 6980 \N +271846 2025-09-05 20:23:59.277162+00 2025-09-05 20:23:59.277172+00 f t DESCUENTO 0.00 2 6980 \N +271847 2025-09-05 20:23:59.278398+00 2025-09-05 20:23:59.278405+00 f t TOTAL 0.00 3 6980 \N +271848 2025-09-05 20:23:59.279951+00 2025-09-05 20:23:59.279957+00 f t ADELANTO 0.00 4 6980 \N +277881 2025-09-08 18:52:41.759237+00 2025-09-08 18:52:41.759244+00 f t SUBTOTAL 0.00 1 7123 \N +277882 2025-09-08 18:52:41.760292+00 2025-09-08 18:52:41.760297+00 f t DESCUENTO 0.00 2 7123 \N +277883 2025-09-08 18:52:41.762038+00 2025-09-08 18:52:41.762044+00 f t TOTAL 0.00 3 7123 \N +277884 2025-09-08 18:52:41.764288+00 2025-09-08 18:52:41.764294+00 f t ADELANTO 0.00 4 7123 \N +265577 2025-09-03 18:15:08.879227+00 2025-09-03 18:15:08.879237+00 f t SUBTOTAL 62800.00 1 6826 \N +265578 2025-09-03 18:15:08.881475+00 2025-09-03 18:15:08.881487+00 f t DESCUENTO 0.00 2 6826 \N +265579 2025-09-03 18:15:08.883437+00 2025-09-03 18:15:08.883449+00 f t TOTAL 62800.00 3 6826 \N +265580 2025-09-03 18:15:08.885584+00 2025-09-03 18:15:08.885593+00 f t ADELANTO 15800.00 4 6826 \N +277961 2025-09-08 18:57:19.707206+00 2025-09-08 18:57:19.707215+00 f t SUBTOTAL 70000.00 1 7122 \N +277962 2025-09-08 18:57:19.708753+00 2025-09-08 18:57:19.708758+00 f t DESCUENTO 0.00 2 7122 \N +277963 2025-09-08 18:57:19.709853+00 2025-09-08 18:57:19.709859+00 f t TOTAL 70000.00 3 7122 \N +277964 2025-09-08 18:57:19.710819+00 2025-09-08 18:57:19.710824+00 f t ADELANTO 19000.00 4 7122 \N +272265 2025-09-05 23:25:45.161546+00 2025-09-05 23:25:45.161555+00 f t SUBTOTAL 0.00 1 6989 \N +272266 2025-09-05 23:25:45.162625+00 2025-09-05 23:25:45.16263+00 f t DESCUENTO 0.00 2 6989 \N +272267 2025-09-05 23:25:45.163645+00 2025-09-05 23:25:45.163652+00 f t TOTAL 0.00 3 6989 \N +272268 2025-09-05 23:25:45.164578+00 2025-09-05 23:25:45.164583+00 f t ADELANTO 0.00 4 6989 \N +262785 2025-09-02 23:39:40.338149+00 2025-09-02 23:39:40.338158+00 f t SUBTOTAL 46000.00 1 6758 \N +262786 2025-09-02 23:39:40.344263+00 2025-09-02 23:39:40.344275+00 f t DESCUENTO 0.00 2 6758 \N +262787 2025-09-02 23:39:40.34654+00 2025-09-02 23:39:40.346548+00 f t TOTAL 46000.00 3 6758 \N +262788 2025-09-02 23:39:40.348629+00 2025-09-02 23:39:40.34864+00 f t ADELANTO 11000.00 4 6758 \N +266109 2025-09-03 21:23:41.991705+00 2025-09-03 21:23:41.991714+00 f t SUBTOTAL 0.00 1 6845 \N +266110 2025-09-03 21:23:41.99324+00 2025-09-03 21:23:41.993247+00 f t DESCUENTO 0.00 2 6845 \N +266111 2025-09-03 21:23:41.994537+00 2025-09-03 21:23:41.994544+00 f t TOTAL 0.00 3 6845 \N +266112 2025-09-03 21:23:41.995703+00 2025-09-03 21:23:41.995711+00 f t ADELANTO 0.00 4 6845 \N +262813 2025-09-02 23:55:19.810448+00 2025-09-02 23:55:19.810458+00 f t SUBTOTAL 98400.00 1 6759 \N +262814 2025-09-02 23:55:19.812839+00 2025-09-02 23:55:19.812848+00 f t DESCUENTO 0.00 2 6759 \N +262815 2025-09-02 23:55:19.814632+00 2025-09-02 23:55:19.814644+00 f t TOTAL 98400.00 3 6759 \N +262816 2025-09-02 23:55:19.816852+00 2025-09-02 23:55:19.816863+00 f t ADELANTO 57900.00 4 6759 \N +262821 2025-09-03 00:02:57.536079+00 2025-09-03 00:02:57.536088+00 f t SUBTOTAL 0.00 1 6760 \N +262822 2025-09-03 00:02:57.53852+00 2025-09-03 00:02:57.538531+00 f t DESCUENTO 0.00 2 6760 \N +262823 2025-09-03 00:02:57.540423+00 2025-09-03 00:02:57.540434+00 f t TOTAL 0.00 3 6760 \N +262824 2025-09-03 00:02:57.542027+00 2025-09-03 00:02:57.542037+00 f t ADELANTO 0.00 4 6760 \N +266445 2025-09-03 22:19:12.823397+00 2025-09-03 22:19:12.82341+00 f t SUBTOTAL 98400.00 1 6851 \N +266446 2025-09-03 22:19:12.82566+00 2025-09-03 22:19:12.825671+00 f t DESCUENTO 0.00 2 6851 \N +266447 2025-09-03 22:19:12.827529+00 2025-09-03 22:19:12.82754+00 f t TOTAL 98400.00 3 6851 \N +266448 2025-09-03 22:19:12.829226+00 2025-09-03 22:19:12.829234+00 f t ADELANTO 57900.00 4 6851 \N +262877 2025-09-03 00:07:41.900247+00 2025-09-03 00:07:41.900261+00 f t SUBTOTAL 78000.00 1 6761 \N +262878 2025-09-03 00:07:41.902585+00 2025-09-03 00:07:41.902598+00 f t DESCUENTO 0.00 2 6761 \N +262879 2025-09-03 00:07:41.904857+00 2025-09-03 00:07:41.904868+00 f t TOTAL 78000.00 3 6761 \N +262880 2025-09-03 00:07:41.906815+00 2025-09-03 00:07:41.906824+00 f t ADELANTO 21500.00 4 6761 \N +262885 2025-09-03 00:10:27.320973+00 2025-09-03 00:10:27.320986+00 f t SUBTOTAL 0.00 1 6762 \N +262886 2025-09-03 00:10:27.32276+00 2025-09-03 00:10:27.322768+00 f t DESCUENTO 0.00 2 6762 \N +262887 2025-09-03 00:10:27.324398+00 2025-09-03 00:10:27.324406+00 f t TOTAL 0.00 3 6762 \N +262888 2025-09-03 00:10:27.325725+00 2025-09-03 00:10:27.325731+00 f t ADELANTO 0.00 4 6762 \N +273661 2025-09-06 17:01:20.663844+00 2025-09-06 17:01:20.663856+00 f t SUBTOTAL 78000.00 1 7022 \N +273662 2025-09-06 17:01:20.665714+00 2025-09-06 17:01:20.665757+00 f t DESCUENTO 0.00 2 7022 \N +273663 2025-09-06 17:01:20.66735+00 2025-09-06 17:01:20.66736+00 f t TOTAL 78000.00 3 7022 \N +273664 2025-09-06 17:01:20.668642+00 2025-09-06 17:01:20.66865+00 f t ADELANTO 13000.00 4 7022 \N +262893 2025-09-03 00:11:22.687704+00 2025-09-03 00:11:22.687713+00 f t SUBTOTAL 0.00 1 6763 \N +262894 2025-09-03 00:11:22.689499+00 2025-09-03 00:11:22.689509+00 f t DESCUENTO 0.00 2 6763 \N +262895 2025-09-03 00:11:22.691014+00 2025-09-03 00:11:22.691021+00 f t TOTAL 0.00 3 6763 \N +262896 2025-09-03 00:11:22.692472+00 2025-09-03 00:11:22.692478+00 f t ADELANTO 0.00 4 6763 \N +276393 2025-09-08 04:10:02.882172+00 2025-09-08 04:10:02.882187+00 f t SUBTOTAL 55000.00 1 7088 \N +276394 2025-09-08 04:10:02.888391+00 2025-09-08 04:10:02.888434+00 f t DESCUENTO 0.00 2 7088 \N +276395 2025-09-08 04:10:02.892354+00 2025-09-08 04:10:02.892369+00 f t TOTAL 55000.00 3 7088 \N +276396 2025-09-08 04:10:02.895624+00 2025-09-08 04:10:02.895636+00 f t ADELANTO 15000.00 4 7088 \N +264561 2025-09-03 13:09:39.027626+00 2025-09-03 13:09:39.027639+00 f t SUBTOTAL 46000.00 1 6798 \N +264562 2025-09-03 13:09:39.029697+00 2025-09-03 13:09:39.029709+00 f t DESCUENTO 0.00 2 6798 \N +264563 2025-09-03 13:09:39.031264+00 2025-09-03 13:09:39.031275+00 f t TOTAL 46000.00 3 6798 \N +264564 2025-09-03 13:09:39.032929+00 2025-09-03 13:09:39.032938+00 f t ADELANTO 11000.00 4 6798 \N +264725 2025-09-03 14:04:21.528412+00 2025-09-03 14:04:21.528421+00 f t SUBTOTAL 0.00 1 6808 \N +264726 2025-09-03 14:04:21.530953+00 2025-09-03 14:04:21.530961+00 f t DESCUENTO 0.00 2 6808 \N +264727 2025-09-03 14:04:21.53247+00 2025-09-03 14:04:21.532478+00 f t TOTAL 0.00 3 6808 \N +264728 2025-09-03 14:04:21.534283+00 2025-09-03 14:04:21.534293+00 f t ADELANTO 0.00 4 6808 \N +262985 2025-09-03 00:23:55.233076+00 2025-09-03 00:23:55.233085+00 f t SUBTOTAL 46000.00 1 6765 \N +262986 2025-09-03 00:23:55.235184+00 2025-09-03 00:23:55.235196+00 f t DESCUENTO 0.00 2 6765 \N +262987 2025-09-03 00:23:55.236732+00 2025-09-03 00:23:55.236739+00 f t TOTAL 46000.00 3 6765 \N +262988 2025-09-03 00:23:55.237868+00 2025-09-03 00:23:55.237874+00 f t ADELANTO 11000.00 4 6765 \N +262997 2025-09-03 00:24:28.621227+00 2025-09-03 00:24:28.62124+00 f t SUBTOTAL 0.00 1 6764 \N +262998 2025-09-03 00:24:28.623772+00 2025-09-03 00:24:28.623786+00 f t DESCUENTO 0.00 2 6764 \N +262999 2025-09-03 00:24:28.625745+00 2025-09-03 00:24:28.625757+00 f t TOTAL 0.00 3 6764 \N +263000 2025-09-03 00:24:28.627621+00 2025-09-03 00:24:28.627632+00 f t ADELANTO 0.00 4 6764 \N +263005 2025-09-03 00:29:20.948882+00 2025-09-03 00:29:20.948895+00 f t SUBTOTAL 0.00 1 6766 \N +263006 2025-09-03 00:29:20.951446+00 2025-09-03 00:29:20.951459+00 f t DESCUENTO 0.00 2 6766 \N +263007 2025-09-03 00:29:20.953365+00 2025-09-03 00:29:20.953375+00 f t TOTAL 0.00 3 6766 \N +263008 2025-09-03 00:29:20.954846+00 2025-09-03 00:29:20.954854+00 f t ADELANTO 0.00 4 6766 \N +263021 2025-09-03 00:30:23.41666+00 2025-09-03 00:30:23.416671+00 f t SUBTOTAL 0.00 1 6767 \N +263022 2025-09-03 00:30:23.418737+00 2025-09-03 00:30:23.418747+00 f t DESCUENTO 0.00 2 6767 \N +263023 2025-09-03 00:30:23.42024+00 2025-09-03 00:30:23.420247+00 f t TOTAL 0.00 3 6767 \N +263024 2025-09-03 00:30:23.421556+00 2025-09-03 00:30:23.421563+00 f t ADELANTO 0.00 4 6767 \N +265189 2025-09-03 17:04:21.396566+00 2025-09-03 17:04:21.396576+00 f t SUBTOTAL 0.00 1 6818 \N +265190 2025-09-03 17:04:21.39888+00 2025-09-03 17:04:21.398888+00 f t DESCUENTO 0.00 2 6818 \N +265191 2025-09-03 17:04:21.400369+00 2025-09-03 17:04:21.400379+00 f t TOTAL 0.00 3 6818 \N +265192 2025-09-03 17:04:21.402271+00 2025-09-03 17:04:21.402281+00 f t ADELANTO 0.00 4 6818 \N +265385 2025-09-03 17:40:07.939381+00 2025-09-03 17:40:07.939396+00 f t SUBTOTAL 46000.00 1 6822 \N +265386 2025-09-03 17:40:07.943479+00 2025-09-03 17:40:07.943494+00 f t DESCUENTO 0.00 2 6822 \N +265387 2025-09-03 17:40:07.948545+00 2025-09-03 17:40:07.948561+00 f t TOTAL 46000.00 3 6822 \N +265388 2025-09-03 17:40:07.954661+00 2025-09-03 17:40:07.954676+00 f t ADELANTO 11000.00 4 6822 \N +265585 2025-09-03 18:26:33.149073+00 2025-09-03 18:26:33.149086+00 f t SUBTOTAL 0.00 1 6827 \N +265586 2025-09-03 18:26:33.150822+00 2025-09-03 18:26:33.150833+00 f t DESCUENTO 0.00 2 6827 \N +265587 2025-09-03 18:26:33.152415+00 2025-09-03 18:26:33.152425+00 f t TOTAL 0.00 3 6827 \N +265588 2025-09-03 18:26:33.153926+00 2025-09-03 18:26:33.153936+00 f t ADELANTO 0.00 4 6827 \N +263061 2025-09-03 00:31:37.185803+00 2025-09-03 00:31:37.185815+00 f t SUBTOTAL 95000.00 1 6768 \N +263062 2025-09-03 00:31:37.187458+00 2025-09-03 00:31:37.187466+00 f t DESCUENTO 0.00 2 6768 \N +263063 2025-09-03 00:31:37.188965+00 2025-09-03 00:31:37.188972+00 f t TOTAL 95000.00 3 6768 \N +263064 2025-09-03 00:31:37.190697+00 2025-09-03 00:31:37.190707+00 f t ADELANTO 10000.00 4 6768 \N +263089 2025-09-03 00:48:11.814167+00 2025-09-03 00:48:11.814177+00 f t SUBTOTAL 70000.00 1 6769 \N +263090 2025-09-03 00:48:11.816239+00 2025-09-03 00:48:11.816247+00 f t DESCUENTO 0.00 2 6769 \N +263091 2025-09-03 00:48:11.818127+00 2025-09-03 00:48:11.818136+00 f t TOTAL 70000.00 3 6769 \N +263092 2025-09-03 00:48:11.823558+00 2025-09-03 00:48:11.82357+00 f t ADELANTO 19000.00 4 6769 \N +266117 2025-09-03 21:42:54.497224+00 2025-09-03 21:42:54.497235+00 f t SUBTOTAL 0.00 1 6846 \N +266118 2025-09-03 21:42:54.498799+00 2025-09-03 21:42:54.498809+00 f t DESCUENTO 0.00 2 6846 \N +266119 2025-09-03 21:42:54.500058+00 2025-09-03 21:42:54.500064+00 f t TOTAL 0.00 3 6846 \N +266120 2025-09-03 21:42:54.501073+00 2025-09-03 21:42:54.501078+00 f t ADELANTO 0.00 4 6846 \N +266233 2025-09-03 21:51:28.536979+00 2025-09-03 21:51:28.536988+00 f t SUBTOTAL 0.00 1 6849 \N +266234 2025-09-03 21:51:28.53955+00 2025-09-03 21:51:28.539559+00 f t DESCUENTO 0.00 2 6849 \N +266235 2025-09-03 21:51:28.540874+00 2025-09-03 21:51:28.540881+00 f t TOTAL 0.00 3 6849 \N +266236 2025-09-03 21:51:28.542033+00 2025-09-03 21:51:28.54204+00 f t ADELANTO 0.00 4 6849 \N +266505 2025-09-03 22:44:20.890842+00 2025-09-03 22:44:20.890856+00 f t SUBTOTAL 46000.00 1 6852 \N +266506 2025-09-03 22:44:20.893369+00 2025-09-03 22:44:20.893382+00 f t DESCUENTO 0.00 2 6852 \N +266507 2025-09-03 22:44:20.895408+00 2025-09-03 22:44:20.89542+00 f t TOTAL 46000.00 3 6852 \N +266508 2025-09-03 22:44:20.897358+00 2025-09-03 22:44:20.89737+00 f t ADELANTO 11000.00 4 6852 \N +266729 2025-09-04 00:02:04.96439+00 2025-09-04 00:02:04.9644+00 f t SUBTOTAL 54000.00 1 6856 \N +266730 2025-09-04 00:02:04.966786+00 2025-09-04 00:02:04.9668+00 f t DESCUENTO 0.00 2 6856 \N +266731 2025-09-04 00:02:04.969503+00 2025-09-04 00:02:04.969515+00 f t TOTAL 54000.00 3 6856 \N +266732 2025-09-04 00:02:04.971336+00 2025-09-04 00:02:04.971347+00 f t ADELANTO 13500.00 4 6856 \N +266853 2025-09-04 00:53:10.062593+00 2025-09-04 00:53:10.062602+00 f t SUBTOTAL 54000.00 1 6861 \N +266854 2025-09-04 00:53:10.06462+00 2025-09-04 00:53:10.064626+00 f t DESCUENTO 0.00 2 6861 \N +266855 2025-09-04 00:53:10.065645+00 2025-09-04 00:53:10.06565+00 f t TOTAL 54000.00 3 6861 \N +266856 2025-09-04 00:53:10.066463+00 2025-09-04 00:53:10.066468+00 f t ADELANTO 13500.00 4 6861 \N +267033 2025-09-04 02:06:27.408898+00 2025-09-04 02:06:27.408912+00 f t SUBTOTAL 0.00 1 6867 \N +267034 2025-09-04 02:06:27.410718+00 2025-09-04 02:06:27.410727+00 f t DESCUENTO 0.00 2 6867 \N +267035 2025-09-04 02:06:27.412868+00 2025-09-04 02:06:27.412877+00 f t TOTAL 0.00 3 6867 \N +267036 2025-09-04 02:06:27.420367+00 2025-09-04 02:06:27.42038+00 f t ADELANTO 0.00 4 6867 \N +267101 2025-09-04 08:30:16.158208+00 2025-09-04 08:30:16.158219+00 f t SUBTOTAL 0.00 1 6872 \N +263185 2025-09-03 00:59:15.471248+00 2025-09-03 00:59:15.471263+00 f t SUBTOTAL 0.00 1 6770 \N +263186 2025-09-03 00:59:15.473663+00 2025-09-03 00:59:15.473676+00 f t DESCUENTO 0.00 2 6770 \N +263187 2025-09-03 00:59:15.475377+00 2025-09-03 00:59:15.475389+00 f t TOTAL 0.00 3 6770 \N +263188 2025-09-03 00:59:15.477106+00 2025-09-03 00:59:15.477117+00 f t ADELANTO 0.00 4 6770 \N +263221 2025-09-03 01:00:52.838347+00 2025-09-03 01:00:52.838358+00 f t SUBTOTAL 0.00 1 6771 \N +263222 2025-09-03 01:00:52.841114+00 2025-09-03 01:00:52.841125+00 f t DESCUENTO 0.00 2 6771 \N +263223 2025-09-03 01:00:52.842968+00 2025-09-03 01:00:52.842981+00 f t TOTAL 0.00 3 6771 \N +263224 2025-09-03 01:00:52.845342+00 2025-09-03 01:00:52.845354+00 f t ADELANTO 0.00 4 6771 \N +397335 2025-10-20 00:01:09.339518+00 2025-10-20 00:01:09.339526+00 f t TOTAL 0.00 3 10056 \N +397336 2025-10-20 00:01:09.341505+00 2025-10-20 00:01:09.341514+00 f t ADELANTO 0.00 4 10056 \N +289361 2025-09-12 00:39:19.959983+00 2025-09-12 00:39:19.959992+00 f t SUBTOTAL 55000.00 1 7384 \N +289362 2025-09-12 00:39:19.961783+00 2025-09-12 00:39:19.961789+00 f t DESCUENTO 0.00 2 7384 \N +264109 2025-09-03 10:54:08.577212+00 2025-09-03 10:54:08.577222+00 f t SUBTOTAL 55000.00 1 6790 \N +264110 2025-09-03 10:54:08.579568+00 2025-09-03 10:54:08.579581+00 f t DESCUENTO 0.00 2 6790 \N +264111 2025-09-03 10:54:08.581772+00 2025-09-03 10:54:08.581785+00 f t TOTAL 55000.00 3 6790 \N +264112 2025-09-03 10:54:08.583676+00 2025-09-03 10:54:08.583688+00 f t ADELANTO 11000.00 4 6790 \N +289363 2025-09-12 00:39:19.96289+00 2025-09-12 00:39:19.962898+00 f t TOTAL 55000.00 3 7384 \N +289364 2025-09-12 00:39:19.964338+00 2025-09-12 00:39:19.964346+00 f t ADELANTO 11000.00 4 7384 \N +456292 2025-11-05 13:05:00.910756+00 2025-11-05 13:05:00.910764+00 f t SUBTOTAL 46000.00 1 11456 \N +263265 2025-09-03 01:05:34.922967+00 2025-09-03 01:05:34.922983+00 f t SUBTOTAL 0.00 1 6772 \N +263266 2025-09-03 01:05:34.925167+00 2025-09-03 01:05:34.92518+00 f t DESCUENTO 0.00 2 6772 \N +263267 2025-09-03 01:05:34.9271+00 2025-09-03 01:05:34.927111+00 f t TOTAL 0.00 3 6772 \N +263268 2025-09-03 01:05:34.928703+00 2025-09-03 01:05:34.928711+00 f t ADELANTO 0.00 4 6772 \N +271053 2025-09-05 14:46:03.109092+00 2025-09-05 14:46:03.109105+00 f t SUBTOTAL 30000.00 1 6957 \N +271054 2025-09-05 14:46:03.111529+00 2025-09-05 14:46:03.11154+00 f t DESCUENTO 0.00 2 6957 \N +271055 2025-09-05 14:46:03.113316+00 2025-09-05 14:46:03.113329+00 f t TOTAL 30000.00 3 6957 \N +271056 2025-09-05 14:46:03.115058+00 2025-09-05 14:46:03.115069+00 f t ADELANTO 30000.00 4 6957 \N +264929 2025-09-03 15:17:59.551711+00 2025-09-03 15:17:59.551724+00 f t SUBTOTAL 55000.00 1 6813 \N +264930 2025-09-03 15:17:59.5536+00 2025-09-03 15:17:59.553607+00 f t DESCUENTO 0.00 2 6813 \N +264931 2025-09-03 15:17:59.555043+00 2025-09-03 15:17:59.555051+00 f t TOTAL 55000.00 3 6813 \N +264932 2025-09-03 15:17:59.55638+00 2025-09-03 15:17:59.556386+00 f t ADELANTO 11000.00 4 6813 \N +263293 2025-09-03 01:07:11.817657+00 2025-09-03 01:07:11.817671+00 f t SUBTOTAL 54000.00 1 6773 \N +263294 2025-09-03 01:07:11.819835+00 2025-09-03 01:07:11.819845+00 f t DESCUENTO 0.00 2 6773 \N +263295 2025-09-03 01:07:11.821582+00 2025-09-03 01:07:11.821593+00 f t TOTAL 54000.00 3 6773 \N +263296 2025-09-03 01:07:11.823168+00 2025-09-03 01:07:11.823176+00 f t ADELANTO 13500.00 4 6773 \N +271853 2025-09-05 20:25:34.147293+00 2025-09-05 20:25:34.147303+00 f t SUBTOTAL 0.00 1 6981 \N +271854 2025-09-05 20:25:34.149188+00 2025-09-05 20:25:34.149199+00 f t DESCUENTO 0.00 2 6981 \N +271855 2025-09-05 20:25:34.150874+00 2025-09-05 20:25:34.150885+00 f t TOTAL 0.00 3 6981 \N +271856 2025-09-05 20:25:34.153369+00 2025-09-05 20:25:34.153379+00 f t ADELANTO 0.00 4 6981 \N +265593 2025-09-03 19:42:18.766896+00 2025-09-03 19:42:18.766909+00 f t SUBTOTAL 0.00 1 6828 \N +265594 2025-09-03 19:42:18.770046+00 2025-09-03 19:42:18.77006+00 f t DESCUENTO 0.00 2 6828 \N +265595 2025-09-03 19:42:18.772012+00 2025-09-03 19:42:18.772022+00 f t TOTAL 0.00 3 6828 \N +265596 2025-09-03 19:42:18.775365+00 2025-09-03 19:42:18.775375+00 f t ADELANTO 0.00 4 6828 \N +263349 2025-09-03 01:19:07.290526+00 2025-09-03 01:19:07.290536+00 f t SUBTOTAL 150900.00 1 6774 \N +263350 2025-09-03 01:19:07.29307+00 2025-09-03 01:19:07.293085+00 f t DESCUENTO 0.00 2 6774 \N +263351 2025-09-03 01:19:07.29496+00 2025-09-03 01:19:07.29497+00 f t TOTAL 150900.00 3 6774 \N +263352 2025-09-03 01:19:07.296833+00 2025-09-03 01:19:07.296844+00 f t ADELANTO 110400.00 4 6774 \N +265793 2025-09-03 20:18:40.891745+00 2025-09-03 20:18:40.891758+00 f t SUBTOTAL 226400.00 1 6833 \N +265794 2025-09-03 20:18:40.893864+00 2025-09-03 20:18:40.893875+00 f t DESCUENTO 0.00 2 6833 \N +265795 2025-09-03 20:18:40.895652+00 2025-09-03 20:18:40.895661+00 f t TOTAL 226400.00 3 6833 \N +265796 2025-09-03 20:18:40.897068+00 2025-09-03 20:18:40.897076+00 f t ADELANTO 185900.00 4 6833 \N +265989 2025-09-03 20:43:14.66923+00 2025-09-03 20:43:14.669242+00 f t SUBTOTAL 0.00 1 6840 \N +265990 2025-09-03 20:43:14.677969+00 2025-09-03 20:43:14.677979+00 f t DESCUENTO 0.00 2 6840 \N +265991 2025-09-03 20:43:14.680513+00 2025-09-03 20:43:14.680523+00 f t TOTAL 0.00 3 6840 \N +265992 2025-09-03 20:43:14.684509+00 2025-09-03 20:43:14.684521+00 f t ADELANTO 0.00 4 6840 \N +272273 2025-09-05 23:27:21.935497+00 2025-09-05 23:27:21.935507+00 f t SUBTOTAL 0.00 1 6990 \N +272274 2025-09-05 23:27:21.936664+00 2025-09-05 23:27:21.936669+00 f t DESCUENTO 0.00 2 6990 \N +272275 2025-09-05 23:27:21.93764+00 2025-09-05 23:27:21.937646+00 f t TOTAL 0.00 3 6990 \N +272276 2025-09-05 23:27:21.938802+00 2025-09-05 23:27:21.938809+00 f t ADELANTO 0.00 4 6990 \N +266177 2025-09-03 21:49:40.818685+00 2025-09-03 21:49:40.818695+00 f t SUBTOTAL 46000.00 1 6847 \N +266178 2025-09-03 21:49:40.821043+00 2025-09-03 21:49:40.821052+00 f t DESCUENTO 0.00 2 6847 \N +263385 2025-09-03 01:53:23.528823+00 2025-09-03 01:53:23.528835+00 f t SUBTOTAL 55000.00 1 6775 \N +263386 2025-09-03 01:53:23.531595+00 2025-09-03 01:53:23.531608+00 f t DESCUENTO 0.00 2 6775 \N +263387 2025-09-03 01:53:23.533438+00 2025-09-03 01:53:23.533447+00 f t TOTAL 55000.00 3 6775 \N +263388 2025-09-03 01:53:23.53733+00 2025-09-03 01:53:23.537344+00 f t ADELANTO 11000.00 4 6775 \N +266179 2025-09-03 21:49:40.822635+00 2025-09-03 21:49:40.822643+00 f t TOTAL 46000.00 3 6847 \N +266180 2025-09-03 21:49:40.824107+00 2025-09-03 21:49:40.824115+00 f t ADELANTO 11000.00 4 6847 \N +263401 2025-09-03 01:57:20.447395+00 2025-09-03 01:57:20.447405+00 f t SUBTOTAL 0.00 1 6776 \N +263402 2025-09-03 01:57:20.449368+00 2025-09-03 01:57:20.449376+00 f t DESCUENTO 0.00 2 6776 \N +263403 2025-09-03 01:57:20.450507+00 2025-09-03 01:57:20.450514+00 f t TOTAL 0.00 3 6776 \N +263404 2025-09-03 01:57:20.451794+00 2025-09-03 01:57:20.451801+00 f t ADELANTO 0.00 4 6776 \N +263409 2025-09-03 01:57:51.694801+00 2025-09-03 01:57:51.694811+00 f t SUBTOTAL 0.00 1 6777 \N +263410 2025-09-03 01:57:51.697451+00 2025-09-03 01:57:51.69746+00 f t DESCUENTO 0.00 2 6777 \N +263411 2025-09-03 01:57:51.700128+00 2025-09-03 01:57:51.700139+00 f t TOTAL 0.00 3 6777 \N +263412 2025-09-03 01:57:51.701566+00 2025-09-03 01:57:51.701577+00 f t ADELANTO 0.00 4 6777 \N +263417 2025-09-03 02:06:15.067841+00 2025-09-03 02:06:15.067851+00 f t SUBTOTAL 0.00 1 6778 \N +263418 2025-09-03 02:06:15.069312+00 2025-09-03 02:06:15.069322+00 f t DESCUENTO 0.00 2 6778 \N +263419 2025-09-03 02:06:15.07054+00 2025-09-03 02:06:15.070546+00 f t TOTAL 0.00 3 6778 \N +263420 2025-09-03 02:06:15.071751+00 2025-09-03 02:06:15.071757+00 f t ADELANTO 0.00 4 6778 \N +273061 2025-09-06 13:18:56.648081+00 2025-09-06 13:18:56.648088+00 f t SUBTOTAL 55000.00 1 7010 \N +273062 2025-09-06 13:18:56.649813+00 2025-09-06 13:18:56.64982+00 f t DESCUENTO 0.00 2 7010 \N +273063 2025-09-06 13:18:56.651033+00 2025-09-06 13:18:56.65104+00 f t TOTAL 55000.00 3 7010 \N +273064 2025-09-06 13:18:56.652421+00 2025-09-06 13:18:56.652427+00 f t ADELANTO 11000.00 4 7010 \N +273465 2025-09-06 15:43:25.438718+00 2025-09-06 15:43:25.438726+00 f t SUBTOTAL 55000.00 1 7021 \N +273466 2025-09-06 15:43:25.440754+00 2025-09-06 15:43:25.440762+00 f t DESCUENTO 0.00 2 7021 \N +273467 2025-09-06 15:43:25.442193+00 2025-09-06 15:43:25.4422+00 f t TOTAL 55000.00 3 7021 \N +273468 2025-09-06 15:43:25.443503+00 2025-09-06 15:43:25.443511+00 f t ADELANTO 11000.00 4 7021 \N +267102 2025-09-04 08:30:16.159839+00 2025-09-04 08:30:16.159847+00 f t DESCUENTO 0.00 2 6872 \N +267103 2025-09-04 08:30:16.161253+00 2025-09-04 08:30:16.161261+00 f t TOTAL 0.00 3 6872 \N +267104 2025-09-04 08:30:16.162555+00 2025-09-04 08:30:16.162562+00 f t ADELANTO 0.00 4 6872 \N +324133 2025-09-24 22:46:44.612701+00 2025-09-24 22:46:44.612719+00 f t SUBTOTAL 46000.00 1 8200 \N +276745 2025-09-08 12:10:18.609868+00 2025-09-08 12:10:18.609879+00 f t SUBTOTAL 0.00 1 7096 \N +276746 2025-09-08 12:10:18.611768+00 2025-09-08 12:10:18.611814+00 f t DESCUENTO 0.00 2 7096 \N +276747 2025-09-08 12:10:18.613719+00 2025-09-08 12:10:18.61373+00 f t TOTAL 0.00 3 7096 \N +276748 2025-09-08 12:10:18.615566+00 2025-09-08 12:10:18.615575+00 f t ADELANTO 0.00 4 7096 \N +265061 2025-09-03 16:03:15.346876+00 2025-09-03 16:03:15.346887+00 f t SUBTOTAL 70000.00 1 6815 \N +265062 2025-09-03 16:03:15.349179+00 2025-09-03 16:03:15.34919+00 f t DESCUENTO 0.00 2 6815 \N +265063 2025-09-03 16:03:15.350662+00 2025-09-03 16:03:15.35067+00 f t TOTAL 70000.00 3 6815 \N +265064 2025-09-03 16:03:15.352333+00 2025-09-03 16:03:15.352342+00 f t ADELANTO 19000.00 4 6815 \N +277965 2025-09-08 18:57:37.140178+00 2025-09-08 18:57:37.140187+00 f t SUBTOTAL 54000.00 1 7124 \N +277966 2025-09-08 18:57:37.142023+00 2025-09-08 18:57:37.14203+00 f t DESCUENTO 0.00 2 7124 \N +277967 2025-09-08 18:57:37.143033+00 2025-09-08 18:57:37.143038+00 f t TOTAL 54000.00 3 7124 \N +277968 2025-09-08 18:57:37.14392+00 2025-09-08 18:57:37.143925+00 f t ADELANTO 13500.00 4 7124 \N +263621 2025-09-03 02:18:41.160954+00 2025-09-03 02:18:41.160963+00 f t SUBTOTAL 92000.00 1 6779 \N +263622 2025-09-03 02:18:41.162753+00 2025-09-03 02:18:41.162761+00 f t DESCUENTO 0.00 2 6779 \N +263623 2025-09-03 02:18:41.164198+00 2025-09-03 02:18:41.164206+00 f t TOTAL 92000.00 3 6779 \N +263624 2025-09-03 02:18:41.165481+00 2025-09-03 02:18:41.165487+00 f t ADELANTO 20500.00 4 6779 \N +265733 2025-09-03 20:05:58.732171+00 2025-09-03 20:05:58.732181+00 f t SUBTOTAL 70000.00 1 6832 \N +265734 2025-09-03 20:05:58.734215+00 2025-09-03 20:05:58.734225+00 f t DESCUENTO 0.00 2 6832 \N +265735 2025-09-03 20:05:58.735632+00 2025-09-03 20:05:58.735643+00 f t TOTAL 70000.00 3 6832 \N +265736 2025-09-03 20:05:58.73711+00 2025-09-03 20:05:58.737117+00 f t ADELANTO 19000.00 4 6832 \N +278461 2025-09-08 20:06:15.400912+00 2025-09-08 20:06:15.400921+00 f t SUBTOTAL 0.00 1 7133 \N +278462 2025-09-08 20:06:15.402747+00 2025-09-08 20:06:15.402755+00 f t DESCUENTO 0.00 2 7133 \N +278463 2025-09-08 20:06:15.411716+00 2025-09-08 20:06:15.411725+00 f t TOTAL 0.00 3 7133 \N +278464 2025-09-08 20:06:15.413198+00 2025-09-08 20:06:15.413204+00 f t ADELANTO 0.00 4 7133 \N +278533 2025-09-08 20:21:49.858289+00 2025-09-08 20:21:49.858301+00 f t SUBTOTAL 54000.00 1 7135 \N +278534 2025-09-08 20:21:49.860631+00 2025-09-08 20:21:49.860642+00 f t DESCUENTO 0.00 2 7135 \N +278535 2025-09-08 20:21:49.862372+00 2025-09-08 20:21:49.862383+00 f t TOTAL 54000.00 3 7135 \N +278536 2025-09-08 20:21:49.863885+00 2025-09-08 20:21:49.863895+00 f t ADELANTO 13500.00 4 7135 \N +272281 2025-09-05 23:27:41.547173+00 2025-09-05 23:27:41.547182+00 f t SUBTOTAL 0.00 1 6991 \N +272282 2025-09-05 23:27:41.550366+00 2025-09-05 23:27:41.550376+00 f t DESCUENTO 0.00 2 6991 \N +272283 2025-09-05 23:27:41.55192+00 2025-09-05 23:27:41.551929+00 f t TOTAL 0.00 3 6991 \N +263653 2025-09-03 02:24:12.312245+00 2025-09-03 02:24:12.312254+00 f t SUBTOTAL 0.00 1 6781 \N +263654 2025-09-03 02:24:12.314059+00 2025-09-03 02:24:12.31407+00 f t DESCUENTO 0.00 2 6781 \N +263655 2025-09-03 02:24:12.31567+00 2025-09-03 02:24:12.31568+00 f t TOTAL 0.00 3 6781 \N +263656 2025-09-03 02:24:12.317267+00 2025-09-03 02:24:12.317275+00 f t ADELANTO 0.00 4 6781 \N +272284 2025-09-05 23:27:41.553176+00 2025-09-05 23:27:41.553183+00 f t ADELANTO 0.00 4 6991 \N +263661 2025-09-03 02:24:12.906081+00 2025-09-03 02:24:12.906094+00 f t SUBTOTAL 54000.00 1 6780 \N +263662 2025-09-03 02:24:12.90784+00 2025-09-03 02:24:12.907848+00 f t DESCUENTO 0.00 2 6780 \N +263663 2025-09-03 02:24:12.909209+00 2025-09-03 02:24:12.909216+00 f t TOTAL 54000.00 3 6780 \N +263664 2025-09-03 02:24:12.910564+00 2025-09-03 02:24:12.91057+00 f t ADELANTO 13500.00 4 6780 \N +273397 2025-09-06 14:41:01.754297+00 2025-09-06 14:41:01.75431+00 f t SUBTOTAL 0.00 1 7018 \N +273398 2025-09-06 14:41:01.756886+00 2025-09-06 14:41:01.756895+00 f t DESCUENTO 0.00 2 7018 \N +273399 2025-09-06 14:41:01.758147+00 2025-09-06 14:41:01.758154+00 f t TOTAL 0.00 3 7018 \N +273400 2025-09-06 14:41:01.75978+00 2025-09-06 14:41:01.759788+00 f t ADELANTO 0.00 4 7018 \N +263733 2025-09-03 02:53:46.576047+00 2025-09-03 02:53:46.576058+00 f t SUBTOTAL 0.00 1 6782 \N +263734 2025-09-03 02:53:46.579689+00 2025-09-03 02:53:46.579697+00 f t DESCUENTO 0.00 2 6782 \N +263735 2025-09-03 02:53:46.581348+00 2025-09-03 02:53:46.581354+00 f t TOTAL 0.00 3 6782 \N +263736 2025-09-03 02:53:46.583366+00 2025-09-03 02:53:46.583373+00 f t ADELANTO 0.00 4 6782 \N +266977 2025-09-04 02:01:13.572583+00 2025-09-04 02:01:13.572592+00 f t SUBTOTAL 102000.00 1 6864 \N +266978 2025-09-04 02:01:13.574526+00 2025-09-04 02:01:13.574534+00 f t DESCUENTO 0.00 2 6864 \N +266979 2025-09-04 02:01:13.57613+00 2025-09-04 02:01:13.576137+00 f t TOTAL 102000.00 3 6864 \N +266980 2025-09-04 02:01:13.577498+00 2025-09-04 02:01:13.577508+00 f t ADELANTO 29500.00 4 6864 \N +267041 2025-09-04 02:06:34.72791+00 2025-09-04 02:06:34.727919+00 f t SUBTOTAL 54000.00 1 6866 \N +267042 2025-09-04 02:06:34.729664+00 2025-09-04 02:06:34.729672+00 f t DESCUENTO 0.00 2 6866 \N +267043 2025-09-04 02:06:34.730972+00 2025-09-04 02:06:34.730978+00 f t TOTAL 54000.00 3 6866 \N +267044 2025-09-04 02:06:34.732353+00 2025-09-04 02:06:34.73236+00 f t ADELANTO 13500.00 4 6866 \N +267281 2025-09-04 10:24:38.23035+00 2025-09-04 10:24:38.230358+00 f t SUBTOTAL 55000.00 1 6876 \N +267282 2025-09-04 10:24:38.232004+00 2025-09-04 10:24:38.23201+00 f t DESCUENTO 0.00 2 6876 \N +267283 2025-09-04 10:24:38.233215+00 2025-09-04 10:24:38.23322+00 f t TOTAL 55000.00 3 6876 \N +267284 2025-09-04 10:24:38.234058+00 2025-09-04 10:24:38.234063+00 f t ADELANTO 11000.00 4 6876 \N +267329 2025-09-04 11:30:07.083458+00 2025-09-04 11:30:07.083475+00 f t SUBTOTAL 78000.00 1 6878 \N +267330 2025-09-04 11:30:07.087482+00 2025-09-04 11:30:07.087497+00 f t DESCUENTO 0.00 2 6878 \N +267331 2025-09-04 11:30:07.090674+00 2025-09-04 11:30:07.090687+00 f t TOTAL 78000.00 3 6878 \N +263773 2025-09-03 03:00:35.777129+00 2025-09-03 03:00:35.77714+00 f t SUBTOTAL 0.00 1 6783 \N +263774 2025-09-03 03:00:35.779799+00 2025-09-03 03:00:35.779809+00 f t DESCUENTO 0.00 2 6783 \N +263775 2025-09-03 03:00:35.78163+00 2025-09-03 03:00:35.781644+00 f t TOTAL 0.00 3 6783 \N +263776 2025-09-03 03:00:35.783492+00 2025-09-03 03:00:35.783502+00 f t ADELANTO 0.00 4 6783 \N +267332 2025-09-04 11:30:07.093948+00 2025-09-04 11:30:07.093961+00 f t ADELANTO 13000.00 4 6878 \N +263781 2025-09-03 05:08:44.865606+00 2025-09-03 05:08:44.86562+00 f t SUBTOTAL 0.00 1 6784 \N +263782 2025-09-03 05:08:44.869278+00 2025-09-03 05:08:44.869292+00 f t DESCUENTO 0.00 2 6784 \N +263783 2025-09-03 05:08:44.897558+00 2025-09-03 05:08:44.897573+00 f t TOTAL 0.00 3 6784 \N +263784 2025-09-03 05:08:44.909353+00 2025-09-03 05:08:44.909367+00 f t ADELANTO 0.00 4 6784 \N +263789 2025-09-03 05:37:56.187337+00 2025-09-03 05:37:56.187347+00 f t SUBTOTAL 0.00 1 6785 \N +263790 2025-09-03 05:37:56.188793+00 2025-09-03 05:37:56.1888+00 f t DESCUENTO 0.00 2 6785 \N +263791 2025-09-03 05:37:56.189848+00 2025-09-03 05:37:56.189854+00 f t TOTAL 0.00 3 6785 \N +263792 2025-09-03 05:37:56.190904+00 2025-09-03 05:37:56.19091+00 f t ADELANTO 0.00 4 6785 \N +263797 2025-09-03 07:58:00.465901+00 2025-09-03 07:58:00.46591+00 f t SUBTOTAL 0.00 1 6786 \N +263798 2025-09-03 07:58:00.467221+00 2025-09-03 07:58:00.467228+00 f t DESCUENTO 0.00 2 6786 \N +263799 2025-09-03 07:58:00.468345+00 2025-09-03 07:58:00.46835+00 f t TOTAL 0.00 3 6786 \N +263800 2025-09-03 07:58:00.469264+00 2025-09-03 07:58:00.46927+00 f t ADELANTO 0.00 4 6786 \N +346824 2025-10-02 19:25:41.66368+00 2025-10-02 19:25:41.663687+00 f t ADELANTO 0.00 4 8736 \N +282781 2025-09-09 19:22:46.390701+00 2025-09-09 19:22:46.39071+00 f t SUBTOTAL 70000.00 1 7218 \N +282782 2025-09-09 19:22:46.392579+00 2025-09-09 19:22:46.39259+00 f t DESCUENTO 0.00 2 7218 \N +282783 2025-09-09 19:22:46.393741+00 2025-09-09 19:22:46.393746+00 f t TOTAL 70000.00 3 7218 \N +282784 2025-09-09 19:22:46.394735+00 2025-09-09 19:22:46.39474+00 f t ADELANTO 19000.00 4 7218 \N +270709 2025-09-05 13:54:27.589399+00 2025-09-05 13:54:27.589408+00 f t SUBTOTAL 55000.00 1 6953 \N +270710 2025-09-05 13:54:27.591208+00 2025-09-05 13:54:27.591215+00 f t DESCUENTO 0.00 2 6953 \N +270711 2025-09-05 13:54:27.592333+00 2025-09-05 13:54:27.592338+00 f t TOTAL 55000.00 3 6953 \N +270712 2025-09-05 13:54:27.593492+00 2025-09-05 13:54:27.593497+00 f t ADELANTO 11000.00 4 6953 \N +264573 2025-09-03 13:09:42.77287+00 2025-09-03 13:09:42.772883+00 f t SUBTOTAL 0.00 1 6797 \N +264574 2025-09-03 13:09:42.775888+00 2025-09-03 13:09:42.775898+00 f t DESCUENTO 0.00 2 6797 \N +264575 2025-09-03 13:09:42.77759+00 2025-09-03 13:09:42.7776+00 f t TOTAL 0.00 3 6797 \N +264576 2025-09-03 13:09:42.779317+00 2025-09-03 13:09:42.779328+00 f t ADELANTO 0.00 4 6797 \N +264809 2025-09-03 14:28:50.20904+00 2025-09-03 14:28:50.209051+00 f t SUBTOTAL 153900.00 1 6811 \N +264810 2025-09-03 14:28:50.211163+00 2025-09-03 14:28:50.211173+00 f t DESCUENTO 0.00 2 6811 \N +264811 2025-09-03 14:28:50.212696+00 2025-09-03 14:28:50.212705+00 f t TOTAL 153900.00 3 6811 \N +264812 2025-09-03 14:28:50.21405+00 2025-09-03 14:28:50.214059+00 f t ADELANTO 113400.00 4 6811 \N +263865 2025-09-03 10:35:49.42283+00 2025-09-03 10:35:49.422839+00 f t SUBTOTAL 92000.00 1 6787 \N +263866 2025-09-03 10:35:49.4245+00 2025-09-03 10:35:49.424508+00 f t DESCUENTO 0.00 2 6787 \N +263867 2025-09-03 10:35:49.425561+00 2025-09-03 10:35:49.425568+00 f t TOTAL 92000.00 3 6787 \N +263868 2025-09-03 10:35:49.426509+00 2025-09-03 10:35:49.426516+00 f t ADELANTO 22000.00 4 6787 \N +265265 2025-09-03 17:15:01.06392+00 2025-09-03 17:15:01.063934+00 f t SUBTOTAL 55000.00 1 6819 \N +265266 2025-09-03 17:15:01.066772+00 2025-09-03 17:15:01.066783+00 f t DESCUENTO 0.00 2 6819 \N +265267 2025-09-03 17:15:01.069183+00 2025-09-03 17:15:01.069196+00 f t TOTAL 55000.00 3 6819 \N +265268 2025-09-03 17:15:01.071291+00 2025-09-03 17:15:01.071301+00 f t ADELANTO 11000.00 4 6819 \N +271533 2025-09-05 17:21:02.327158+00 2025-09-05 17:21:02.327171+00 f t SUBTOTAL 54000.00 1 6970 \N +271534 2025-09-05 17:21:02.329193+00 2025-09-05 17:21:02.329204+00 f t DESCUENTO 0.00 2 6970 \N +271535 2025-09-05 17:21:02.330762+00 2025-09-05 17:21:02.330771+00 f t TOTAL 54000.00 3 6970 \N +271536 2025-09-05 17:21:02.332207+00 2025-09-05 17:21:02.332214+00 f t ADELANTO 13500.00 4 6970 \N +265397 2025-09-03 17:41:00.326282+00 2025-09-03 17:41:00.326295+00 f t SUBTOTAL 170000.00 1 6820 \N +265398 2025-09-03 17:41:00.328515+00 2025-09-03 17:41:00.328526+00 f t DESCUENTO 0.00 2 6820 \N +265399 2025-09-03 17:41:00.330546+00 2025-09-03 17:41:00.330556+00 f t TOTAL 170000.00 3 6820 \N +265400 2025-09-03 17:41:00.332172+00 2025-09-03 17:41:00.332179+00 f t ADELANTO 36000.00 4 6820 \N +265669 2025-09-03 20:00:57.509453+00 2025-09-03 20:00:57.509467+00 f t SUBTOTAL 0.00 1 6830 \N +265670 2025-09-03 20:00:57.512594+00 2025-09-03 20:00:57.512608+00 f t DESCUENTO 0.00 2 6830 \N +265671 2025-09-03 20:00:57.514584+00 2025-09-03 20:00:57.514597+00 f t TOTAL 0.00 3 6830 \N +265672 2025-09-03 20:00:57.516698+00 2025-09-03 20:00:57.516711+00 f t ADELANTO 0.00 4 6830 \N +284289 2025-09-10 12:30:25.579676+00 2025-09-10 12:30:25.579688+00 f t SUBTOTAL 0.00 1 7253 \N +284290 2025-09-10 12:30:25.581388+00 2025-09-10 12:30:25.581398+00 f t DESCUENTO 0.00 2 7253 \N +284291 2025-09-10 12:30:25.582793+00 2025-09-10 12:30:25.582802+00 f t TOTAL 0.00 3 7253 \N +284292 2025-09-10 12:30:25.584437+00 2025-09-10 12:30:25.584445+00 f t ADELANTO 0.00 4 7253 \N +284445 2025-09-10 14:32:42.930016+00 2025-09-10 14:32:42.930029+00 f t SUBTOTAL 46000.00 1 7258 \N +272289 2025-09-05 23:29:23.177763+00 2025-09-05 23:29:23.177772+00 f t SUBTOTAL 0.00 1 6992 \N +272290 2025-09-05 23:29:23.178892+00 2025-09-05 23:29:23.178898+00 f t DESCUENTO 0.00 2 6992 \N +272291 2025-09-05 23:29:23.183363+00 2025-09-05 23:29:23.183371+00 f t TOTAL 0.00 3 6992 \N +272292 2025-09-05 23:29:23.184601+00 2025-09-05 23:29:23.184608+00 f t ADELANTO 0.00 4 6992 \N +284446 2025-09-10 14:32:42.932148+00 2025-09-10 14:32:42.932158+00 f t DESCUENTO 0.00 2 7258 \N +284447 2025-09-10 14:32:42.933622+00 2025-09-10 14:32:42.933631+00 f t TOTAL 46000.00 3 7258 \N +284448 2025-09-10 14:32:42.934966+00 2025-09-10 14:32:42.934974+00 f t ADELANTO 11000.00 4 7258 \N +272433 2025-09-06 00:35:40.300037+00 2025-09-06 00:35:40.300046+00 f t SUBTOTAL 54000.00 1 6996 \N +272434 2025-09-06 00:35:40.30215+00 2025-09-06 00:35:40.302156+00 f t DESCUENTO 0.00 2 6996 \N +272435 2025-09-06 00:35:40.30334+00 2025-09-06 00:35:40.303345+00 f t TOTAL 54000.00 3 6996 \N +272436 2025-09-06 00:35:40.30436+00 2025-09-06 00:35:40.304365+00 f t ADELANTO 13500.00 4 6996 \N +278669 2025-09-08 21:14:02.178148+00 2025-09-08 21:14:02.178162+00 f t SUBTOTAL 153000.00 1 7137 \N +278670 2025-09-08 21:14:02.180501+00 2025-09-08 21:14:02.180512+00 f t DESCUENTO 0.00 2 7137 \N +278671 2025-09-08 21:14:02.182154+00 2025-09-08 21:14:02.182163+00 f t TOTAL 153000.00 3 7137 \N +278672 2025-09-08 21:14:02.183638+00 2025-09-08 21:14:02.183646+00 f t ADELANTO 38000.00 4 7137 \N +266801 2025-09-04 00:31:45.54321+00 2025-09-04 00:31:45.543222+00 f t SUBTOTAL 55000.00 1 6858 \N +266802 2025-09-04 00:31:45.545375+00 2025-09-04 00:31:45.545383+00 f t DESCUENTO 0.00 2 6858 \N +266803 2025-09-04 00:31:45.54687+00 2025-09-04 00:31:45.546876+00 f t TOTAL 55000.00 3 6858 \N +266804 2025-09-04 00:31:45.54822+00 2025-09-04 00:31:45.548226+00 f t ADELANTO 11000.00 4 6858 \N +273333 2025-09-06 14:20:02.891484+00 2025-09-06 14:20:02.891498+00 f t SUBTOTAL 55000.00 1 7016 \N +273334 2025-09-06 14:20:02.896732+00 2025-09-06 14:20:02.896746+00 f t DESCUENTO 0.00 2 7016 \N +273335 2025-09-06 14:20:02.900347+00 2025-09-06 14:20:02.900361+00 f t TOTAL 55000.00 3 7016 \N +273336 2025-09-06 14:20:02.903412+00 2025-09-06 14:20:02.903425+00 f t ADELANTO 11000.00 4 7016 \N +267049 2025-09-04 02:15:47.983554+00 2025-09-04 02:15:47.983564+00 f t SUBTOTAL 0.00 1 6868 \N +267050 2025-09-04 02:15:47.985219+00 2025-09-04 02:15:47.98523+00 f t DESCUENTO 0.00 2 6868 \N +267051 2025-09-04 02:15:47.986821+00 2025-09-04 02:15:47.98683+00 f t TOTAL 0.00 3 6868 \N +267052 2025-09-04 02:15:47.989259+00 2025-09-04 02:15:47.989269+00 f t ADELANTO 0.00 4 6868 \N +267149 2025-09-04 08:31:25.761659+00 2025-09-04 08:31:25.761668+00 f t SUBTOTAL 55000.00 1 6871 \N +267150 2025-09-04 08:31:25.763447+00 2025-09-04 08:31:25.763456+00 f t DESCUENTO 0.00 2 6871 \N +267151 2025-09-04 08:31:25.765009+00 2025-09-04 08:31:25.765017+00 f t TOTAL 55000.00 3 6871 \N +267152 2025-09-04 08:31:25.766331+00 2025-09-04 08:31:25.766337+00 f t ADELANTO 11000.00 4 6871 \N +267289 2025-09-04 11:12:26.593901+00 2025-09-04 11:12:26.593911+00 f t SUBTOTAL 0.00 1 6877 \N +267290 2025-09-04 11:12:26.595623+00 2025-09-04 11:12:26.59563+00 f t DESCUENTO 0.00 2 6877 \N +267291 2025-09-04 11:12:26.597299+00 2025-09-04 11:12:26.597305+00 f t TOTAL 0.00 3 6877 \N +267292 2025-09-04 11:12:26.598688+00 2025-09-04 11:12:26.598694+00 f t ADELANTO 0.00 4 6877 \N +279653 2025-09-09 00:25:16.69691+00 2025-09-09 00:25:16.696921+00 f t SUBTOTAL 0.00 1 7151 \N +279654 2025-09-09 00:25:16.699102+00 2025-09-09 00:25:16.699108+00 f t DESCUENTO 0.00 2 7151 \N +279655 2025-09-09 00:25:16.700349+00 2025-09-09 00:25:16.700355+00 f t TOTAL 0.00 3 7151 \N +279656 2025-09-09 00:25:16.701384+00 2025-09-09 00:25:16.701392+00 f t ADELANTO 0.00 4 7151 \N +296093 2025-09-14 16:56:50.135114+00 2025-09-14 16:56:50.135124+00 f t SUBTOTAL 98400.00 1 7534 \N +296094 2025-09-14 16:56:50.140709+00 2025-09-14 16:56:50.140716+00 f t DESCUENTO 0.00 2 7534 \N +296095 2025-09-14 16:56:50.142289+00 2025-09-14 16:56:50.142295+00 f t TOTAL 98400.00 3 7534 \N +296096 2025-09-14 16:56:50.14351+00 2025-09-14 16:56:50.143515+00 f t ADELANTO 57900.00 4 7534 \N +283265 2025-09-09 23:22:19.316995+00 2025-09-09 23:22:19.317004+00 f t SUBTOTAL 46000.00 1 7229 \N +283266 2025-09-09 23:22:19.318983+00 2025-09-09 23:22:19.318992+00 f t DESCUENTO 0.00 2 7229 \N +283267 2025-09-09 23:22:19.320886+00 2025-09-09 23:22:19.320892+00 f t TOTAL 46000.00 3 7229 \N +283268 2025-09-09 23:22:19.322261+00 2025-09-09 23:22:19.322267+00 f t ADELANTO 11000.00 4 7229 \N +271345 2025-09-05 16:30:10.148125+00 2025-09-05 16:30:10.148135+00 f t SUBTOTAL 20500.00 1 6964 \N +271346 2025-09-05 16:30:10.1506+00 2025-09-05 16:30:10.150608+00 f t DESCUENTO 0.00 2 6964 \N +271347 2025-09-05 16:30:10.152191+00 2025-09-05 16:30:10.152198+00 f t TOTAL 20500.00 3 6964 \N +271348 2025-09-05 16:30:10.153504+00 2025-09-05 16:30:10.15351+00 f t ADELANTO 20500.00 4 6964 \N +271441 2025-09-05 17:02:11.946928+00 2025-09-05 17:02:11.946941+00 f t SUBTOTAL 54000.00 1 6967 \N +271442 2025-09-05 17:02:11.948986+00 2025-09-05 17:02:11.948997+00 f t DESCUENTO 0.00 2 6967 \N +271443 2025-09-05 17:02:11.950345+00 2025-09-05 17:02:11.950354+00 f t TOTAL 54000.00 3 6967 \N +271444 2025-09-05 17:02:11.951563+00 2025-09-05 17:02:11.951572+00 f t ADELANTO 13500.00 4 6967 \N +271793 2025-09-05 20:05:29.313051+00 2025-09-05 20:05:29.313065+00 f t SUBTOTAL 70000.00 1 6979 \N +271794 2025-09-05 20:05:29.315188+00 2025-09-05 20:05:29.3152+00 f t DESCUENTO 0.00 2 6979 \N +271795 2025-09-05 20:05:29.316683+00 2025-09-05 20:05:29.316692+00 f t TOTAL 70000.00 3 6979 \N +271796 2025-09-05 20:05:29.318132+00 2025-09-05 20:05:29.318143+00 f t ADELANTO 19000.00 4 6979 \N +278337 2025-09-08 20:01:33.126301+00 2025-09-08 20:01:33.12631+00 f t SUBTOTAL 55000.00 1 7132 \N +278338 2025-09-08 20:01:33.128081+00 2025-09-08 20:01:33.128091+00 f t DESCUENTO 0.00 2 7132 \N +278339 2025-09-08 20:01:33.129551+00 2025-09-08 20:01:33.12956+00 f t TOTAL 55000.00 3 7132 \N +278340 2025-09-08 20:01:33.130817+00 2025-09-08 20:01:33.130826+00 f t ADELANTO 11000.00 4 7132 \N +284453 2025-09-10 14:52:40.588534+00 2025-09-10 14:52:40.588548+00 f t SUBTOTAL 0.00 1 7259 \N +284454 2025-09-10 14:52:40.590416+00 2025-09-10 14:52:40.590428+00 f t DESCUENTO 0.00 2 7259 \N +284455 2025-09-10 14:52:40.591992+00 2025-09-10 14:52:40.592001+00 f t TOTAL 0.00 3 7259 \N +284456 2025-09-10 14:52:40.593381+00 2025-09-10 14:52:40.59339+00 f t ADELANTO 0.00 4 7259 \N +272441 2025-09-06 00:38:35.180988+00 2025-09-06 00:38:35.180999+00 f t SUBTOTAL 0.00 1 6997 \N +272442 2025-09-06 00:38:35.182407+00 2025-09-06 00:38:35.182414+00 f t DESCUENTO 0.00 2 6997 \N +272443 2025-09-06 00:38:35.183594+00 2025-09-06 00:38:35.183601+00 f t TOTAL 0.00 3 6997 \N +272444 2025-09-06 00:38:35.184789+00 2025-09-06 00:38:35.184795+00 f t ADELANTO 0.00 4 6997 \N +272521 2025-09-06 01:42:34.794158+00 2025-09-06 01:42:34.794166+00 f t SUBTOTAL 68000.00 1 7001 \N +272522 2025-09-06 01:42:34.796139+00 2025-09-06 01:42:34.79615+00 f t DESCUENTO 0.00 2 7001 \N +272523 2025-09-06 01:42:34.797746+00 2025-09-06 01:42:34.797753+00 f t TOTAL 68000.00 3 7001 \N +272524 2025-09-06 01:42:34.799041+00 2025-09-06 01:42:34.79905+00 f t ADELANTO 13000.00 4 7001 \N +284901 2025-09-10 17:40:52.541173+00 2025-09-10 17:40:52.541182+00 f t SUBTOTAL 0.00 1 7275 \N +284902 2025-09-10 17:40:52.542423+00 2025-09-10 17:40:52.542429+00 f t DESCUENTO 0.00 2 7275 \N +284903 2025-09-10 17:40:52.543403+00 2025-09-10 17:40:52.543408+00 f t TOTAL 0.00 3 7275 \N +284904 2025-09-10 17:40:52.544287+00 2025-09-10 17:40:52.544327+00 f t ADELANTO 0.00 4 7275 \N +285673 2025-09-10 19:56:46.097632+00 2025-09-10 19:56:46.097643+00 f t SUBTOTAL 155900.00 1 7292 \N +285674 2025-09-10 19:56:46.099685+00 2025-09-10 19:56:46.099695+00 f t DESCUENTO 0.00 2 7292 \N +285675 2025-09-10 19:56:46.101273+00 2025-09-10 19:56:46.101282+00 f t TOTAL 155900.00 3 7292 \N +285676 2025-09-10 19:56:46.102629+00 2025-09-10 19:56:46.102638+00 f t ADELANTO 71400.00 4 7292 \N +279661 2025-09-09 00:26:44.126953+00 2025-09-09 00:26:44.126966+00 f t SUBTOTAL 0.00 1 7152 \N +279662 2025-09-09 00:26:44.128677+00 2025-09-09 00:26:44.128688+00 f t DESCUENTO 0.00 2 7152 \N +279663 2025-09-09 00:26:44.130173+00 2025-09-09 00:26:44.130185+00 f t TOTAL 0.00 3 7152 \N +279664 2025-09-09 00:26:44.131621+00 2025-09-09 00:26:44.13163+00 f t ADELANTO 0.00 4 7152 \N +279825 2025-09-09 01:00:09.621594+00 2025-09-09 01:00:09.621607+00 f t SUBTOTAL 225000.00 1 7156 \N +279826 2025-09-09 01:00:09.624243+00 2025-09-09 01:00:09.624253+00 f t DESCUENTO 0.00 2 7156 \N +279827 2025-09-09 01:00:09.62604+00 2025-09-09 01:00:09.62605+00 f t TOTAL 225000.00 3 7156 \N +279828 2025-09-09 01:00:09.628053+00 2025-09-09 01:00:09.628062+00 f t ADELANTO 25000.00 4 7156 \N +274129 2025-09-06 18:59:13.55247+00 2025-09-06 18:59:13.552479+00 f t SUBTOTAL 269500.00 1 7030 \N +274130 2025-09-06 18:59:13.55404+00 2025-09-06 18:59:13.554045+00 f t DESCUENTO 0.00 2 7030 \N +274131 2025-09-06 18:59:13.554985+00 2025-09-06 18:59:13.554989+00 f t TOTAL 269500.00 3 7030 \N +274132 2025-09-06 18:59:13.555875+00 2025-09-06 18:59:13.55588+00 f t ADELANTO 195500.00 4 7030 \N +280193 2025-09-09 02:30:14.04548+00 2025-09-09 02:30:14.045489+00 f t SUBTOTAL 30000.00 1 7164 \N +280194 2025-09-09 02:30:14.047267+00 2025-09-09 02:30:14.047278+00 f t DESCUENTO 0.00 2 7164 \N +280195 2025-09-09 02:30:14.049435+00 2025-09-09 02:30:14.049443+00 f t TOTAL 30000.00 3 7164 \N +280196 2025-09-09 02:30:14.050998+00 2025-09-09 02:30:14.051007+00 f t ADELANTO 30000.00 4 7164 \N +267865 2025-09-04 13:29:43.949709+00 2025-09-04 13:29:43.94972+00 f t SUBTOTAL 0.00 1 6882 \N +267866 2025-09-04 13:29:43.951521+00 2025-09-04 13:29:43.951529+00 f t DESCUENTO 0.00 2 6882 \N +267867 2025-09-04 13:29:43.952663+00 2025-09-04 13:29:43.952669+00 f t TOTAL 0.00 3 6882 \N +267868 2025-09-04 13:29:43.953884+00 2025-09-04 13:29:43.953889+00 f t ADELANTO 0.00 4 6882 \N +274429 2025-09-06 23:17:33.369341+00 2025-09-06 23:17:33.36935+00 f t SUBTOTAL 55000.00 1 7043 \N +274430 2025-09-06 23:17:33.371039+00 2025-09-06 23:17:33.371046+00 f t DESCUENTO 0.00 2 7043 \N +274431 2025-09-06 23:17:33.372558+00 2025-09-06 23:17:33.372565+00 f t TOTAL 55000.00 3 7043 \N +267873 2025-09-04 13:40:16.550668+00 2025-09-04 13:40:16.550679+00 f t SUBTOTAL 0.00 1 6883 \N +267874 2025-09-04 13:40:16.552352+00 2025-09-04 13:40:16.552364+00 f t DESCUENTO 0.00 2 6883 \N +267875 2025-09-04 13:40:16.55371+00 2025-09-04 13:40:16.553717+00 f t TOTAL 0.00 3 6883 \N +267876 2025-09-04 13:40:16.554879+00 2025-09-04 13:40:16.554885+00 f t ADELANTO 0.00 4 6883 \N +274432 2025-09-06 23:17:33.37376+00 2025-09-06 23:17:33.373765+00 f t ADELANTO 11000.00 4 7043 \N +267881 2025-09-04 13:48:56.018177+00 2025-09-04 13:48:56.01819+00 f t SUBTOTAL 0.00 1 6884 \N +267882 2025-09-04 13:48:56.020094+00 2025-09-04 13:48:56.020105+00 f t DESCUENTO 0.00 2 6884 \N +267883 2025-09-04 13:48:56.021807+00 2025-09-04 13:48:56.021817+00 f t TOTAL 0.00 3 6884 \N +267884 2025-09-04 13:48:56.023408+00 2025-09-04 13:48:56.023418+00 f t ADELANTO 0.00 4 6884 \N +280433 2025-09-09 02:58:46.433371+00 2025-09-09 02:58:46.433381+00 f t SUBTOTAL 46000.00 1 7165 \N +280434 2025-09-09 02:58:46.435476+00 2025-09-09 02:58:46.435484+00 f t DESCUENTO 0.00 2 7165 \N +280435 2025-09-09 02:58:46.437+00 2025-09-09 02:58:46.437006+00 f t TOTAL 46000.00 3 7165 \N +280436 2025-09-09 02:58:46.438357+00 2025-09-09 02:58:46.438363+00 f t ADELANTO 11000.00 4 7165 \N +282665 2025-09-09 18:42:24.114739+00 2025-09-09 18:42:24.114754+00 f t SUBTOTAL 55000.00 1 7214 \N +282666 2025-09-09 18:42:24.117149+00 2025-09-09 18:42:24.117159+00 f t DESCUENTO 0.00 2 7214 \N +282667 2025-09-09 18:42:24.11874+00 2025-09-09 18:42:24.11875+00 f t TOTAL 55000.00 3 7214 \N +282668 2025-09-09 18:42:24.120246+00 2025-09-09 18:42:24.120255+00 f t ADELANTO 11000.00 4 7214 \N +270617 2025-09-05 12:40:27.277591+00 2025-09-05 12:40:27.277599+00 f t SUBTOTAL 54000.00 1 6949 \N +270618 2025-09-05 12:40:27.279445+00 2025-09-05 12:40:27.279452+00 f t DESCUENTO 0.00 2 6949 \N +270619 2025-09-05 12:40:27.280877+00 2025-09-05 12:40:27.280884+00 f t TOTAL 54000.00 3 6949 \N +270620 2025-09-05 12:40:27.282152+00 2025-09-05 12:40:27.282159+00 f t ADELANTO 13500.00 4 6949 \N +283077 2025-09-09 20:06:22.307599+00 2025-09-09 20:06:22.30761+00 f t SUBTOTAL 0.00 1 7222 \N +283078 2025-09-09 20:06:22.309852+00 2025-09-09 20:06:22.30986+00 f t DESCUENTO 0.00 2 7222 \N +283079 2025-09-09 20:06:22.311303+00 2025-09-09 20:06:22.311311+00 f t TOTAL 0.00 3 7222 \N +283080 2025-09-09 20:06:22.312593+00 2025-09-09 20:06:22.312599+00 f t ADELANTO 0.00 4 7222 \N +271353 2025-09-05 16:46:26.053653+00 2025-09-05 16:46:26.053664+00 f t SUBTOTAL 0.00 1 6965 \N +271354 2025-09-05 16:46:26.05509+00 2025-09-05 16:46:26.055098+00 f t DESCUENTO 0.00 2 6965 \N +271355 2025-09-05 16:46:26.056277+00 2025-09-05 16:46:26.056284+00 f t TOTAL 0.00 3 6965 \N +271356 2025-09-05 16:46:26.057418+00 2025-09-05 16:46:26.057424+00 f t ADELANTO 0.00 4 6965 \N +267961 2025-09-04 13:55:18.605036+00 2025-09-04 13:55:18.605048+00 f t SUBTOTAL 68000.00 1 6886 \N +267962 2025-09-04 13:55:18.607095+00 2025-09-04 13:55:18.607103+00 f t DESCUENTO 0.00 2 6886 \N +267963 2025-09-04 13:55:18.608734+00 2025-09-04 13:55:18.608742+00 f t TOTAL 68000.00 3 6886 \N +267964 2025-09-04 13:55:18.610294+00 2025-09-04 13:55:18.610302+00 f t ADELANTO 13000.00 4 6886 \N +271621 2025-09-05 17:23:14.376082+00 2025-09-05 17:23:14.376091+00 f t SUBTOTAL 92000.00 1 6969 \N +271622 2025-09-05 17:23:14.377981+00 2025-09-05 17:23:14.377989+00 f t DESCUENTO 0.00 2 6969 \N +271623 2025-09-05 17:23:14.379245+00 2025-09-05 17:23:14.379252+00 f t TOTAL 92000.00 3 6969 \N +271624 2025-09-05 17:23:14.380425+00 2025-09-05 17:23:14.380431+00 f t ADELANTO 20500.00 4 6969 \N +267989 2025-09-04 13:58:08.670061+00 2025-09-04 13:58:08.670072+00 f t SUBTOTAL 0.00 1 6885 \N +267990 2025-09-04 13:58:08.67355+00 2025-09-04 13:58:08.673563+00 f t DESCUENTO 0.00 2 6885 \N +267991 2025-09-04 13:58:08.675754+00 2025-09-04 13:58:08.675767+00 f t TOTAL 0.00 3 6885 \N +267992 2025-09-04 13:58:08.678018+00 2025-09-04 13:58:08.67803+00 f t ADELANTO 0.00 4 6885 \N +267997 2025-09-04 14:05:49.843337+00 2025-09-04 14:05:49.84335+00 f t SUBTOTAL 0.00 1 6887 \N +267998 2025-09-04 14:05:49.847412+00 2025-09-04 14:05:49.847424+00 f t DESCUENTO 0.00 2 6887 \N +267999 2025-09-04 14:05:49.848978+00 2025-09-04 14:05:49.848985+00 f t TOTAL 0.00 3 6887 \N +268000 2025-09-04 14:05:49.850271+00 2025-09-04 14:05:49.850277+00 f t ADELANTO 0.00 4 6887 \N +272449 2025-09-06 00:39:43.267753+00 2025-09-06 00:39:43.26776+00 f t SUBTOTAL 0.00 1 6998 \N +272450 2025-09-06 00:39:43.268793+00 2025-09-06 00:39:43.268798+00 f t DESCUENTO 0.00 2 6998 \N +272451 2025-09-06 00:39:43.269866+00 2025-09-06 00:39:43.269872+00 f t TOTAL 0.00 3 6998 \N +272452 2025-09-06 00:39:43.270696+00 2025-09-06 00:39:43.270701+00 f t ADELANTO 0.00 4 6998 \N +268053 2025-09-04 14:16:24.698831+00 2025-09-04 14:16:24.69884+00 f t SUBTOTAL 54000.00 1 6889 \N +268054 2025-09-04 14:16:24.701373+00 2025-09-04 14:16:24.701381+00 f t DESCUENTO 0.00 2 6889 \N +268055 2025-09-04 14:16:24.70286+00 2025-09-04 14:16:24.70287+00 f t TOTAL 54000.00 3 6889 \N +268056 2025-09-04 14:16:24.704329+00 2025-09-04 14:16:24.704336+00 f t ADELANTO 13500.00 4 6889 \N +273617 2025-09-06 16:35:21.116743+00 2025-09-06 16:35:21.116751+00 f t SUBTOTAL 55000.00 1 7026 \N +273618 2025-09-06 16:35:21.118344+00 2025-09-06 16:35:21.118351+00 f t DESCUENTO 0.00 2 7026 \N +273619 2025-09-06 16:35:21.119418+00 2025-09-06 16:35:21.119424+00 f t TOTAL 55000.00 3 7026 \N +273620 2025-09-06 16:35:21.120518+00 2025-09-06 16:35:21.120524+00 f t ADELANTO 11000.00 4 7026 \N +273741 2025-09-06 17:45:20.317958+00 2025-09-06 17:45:20.317966+00 f t SUBTOTAL 46000.00 1 7029 \N +273742 2025-09-06 17:45:20.319481+00 2025-09-06 17:45:20.319486+00 f t DESCUENTO 0.00 2 7029 \N +273743 2025-09-06 17:45:20.320438+00 2025-09-06 17:45:20.320443+00 f t TOTAL 46000.00 3 7029 \N +273744 2025-09-06 17:45:20.321369+00 2025-09-06 17:45:20.321374+00 f t ADELANTO 11000.00 4 7029 \N +268125 2025-09-04 14:53:36.970695+00 2025-09-04 14:53:36.970706+00 f t SUBTOTAL 32500.00 1 6890 \N +268126 2025-09-04 14:53:36.972982+00 2025-09-04 14:53:36.972993+00 f t DESCUENTO 0.00 2 6890 \N +268127 2025-09-04 14:53:36.974641+00 2025-09-04 14:53:36.97465+00 f t TOTAL 32500.00 3 6890 \N +268128 2025-09-04 14:53:36.976857+00 2025-09-04 14:53:36.976866+00 f t ADELANTO 32500.00 4 6890 \N +279721 2025-09-09 00:33:29.866183+00 2025-09-09 00:33:29.866192+00 f t SUBTOTAL 55000.00 1 7153 \N +279722 2025-09-09 00:33:29.868096+00 2025-09-09 00:33:29.868103+00 f t DESCUENTO 0.00 2 7153 \N +279723 2025-09-09 00:33:29.869328+00 2025-09-09 00:33:29.869334+00 f t TOTAL 55000.00 3 7153 \N +279724 2025-09-09 00:33:29.870397+00 2025-09-09 00:33:29.870403+00 f t ADELANTO 11000.00 4 7153 \N +279777 2025-09-09 00:49:39.681718+00 2025-09-09 00:49:39.681729+00 f t SUBTOTAL 55000.00 1 7155 \N +279778 2025-09-09 00:49:39.683517+00 2025-09-09 00:49:39.683524+00 f t DESCUENTO 0.00 2 7155 \N +279779 2025-09-09 00:49:39.684612+00 2025-09-09 00:49:39.684617+00 f t TOTAL 55000.00 3 7155 \N +279780 2025-09-09 00:49:39.685498+00 2025-09-09 00:49:39.685503+00 f t ADELANTO 11000.00 4 7155 \N +268145 2025-09-04 15:09:39.136082+00 2025-09-04 15:09:39.136092+00 f t SUBTOTAL 24200.00 1 6888 \N +268146 2025-09-04 15:09:39.137934+00 2025-09-04 15:09:39.137941+00 f t DESCUENTO 0.00 2 6888 \N +268147 2025-09-04 15:09:39.139416+00 2025-09-04 15:09:39.139423+00 f t TOTAL 24200.00 3 6888 \N +268148 2025-09-04 15:09:39.14055+00 2025-09-04 15:09:39.140555+00 f t ADELANTO 24200.00 4 6888 \N +279885 2025-09-09 01:05:58.335337+00 2025-09-09 01:05:58.335347+00 f t SUBTOTAL 0.00 1 7158 \N +279886 2025-09-09 01:05:58.337135+00 2025-09-09 01:05:58.337141+00 f t DESCUENTO 0.00 2 7158 \N +279887 2025-09-09 01:05:58.338298+00 2025-09-09 01:05:58.338306+00 f t TOTAL 0.00 3 7158 \N +279888 2025-09-09 01:05:58.339514+00 2025-09-09 01:05:58.339519+00 f t ADELANTO 0.00 4 7158 \N +274229 2025-09-06 19:11:14.411089+00 2025-09-06 19:11:14.411097+00 f t SUBTOTAL 46000.00 1 7033 \N +274230 2025-09-06 19:11:14.413819+00 2025-09-06 19:11:14.413827+00 f t DESCUENTO 0.00 2 7033 \N +274231 2025-09-06 19:11:14.415372+00 2025-09-06 19:11:14.41538+00 f t TOTAL 46000.00 3 7033 \N +274232 2025-09-06 19:11:14.416768+00 2025-09-06 19:11:14.416774+00 f t ADELANTO 11000.00 4 7033 \N +280041 2025-09-09 01:47:37.665743+00 2025-09-09 01:47:37.665751+00 f t SUBTOTAL 126500.00 1 7161 \N +280042 2025-09-09 01:47:37.667388+00 2025-09-09 01:47:37.667396+00 f t DESCUENTO 0.00 2 7161 \N +280043 2025-09-09 01:47:37.668625+00 2025-09-09 01:47:37.668632+00 f t TOTAL 126500.00 3 7161 \N +280044 2025-09-09 01:47:37.669681+00 2025-09-09 01:47:37.669687+00 f t ADELANTO 86000.00 4 7161 \N +268177 2025-09-04 15:18:05.447934+00 2025-09-04 15:18:05.447943+00 f t SUBTOTAL 68000.00 1 6891 \N +268178 2025-09-04 15:18:05.449952+00 2025-09-04 15:18:05.449961+00 f t DESCUENTO 0.00 2 6891 \N +268179 2025-09-04 15:18:05.451468+00 2025-09-04 15:18:05.451478+00 f t TOTAL 68000.00 3 6891 \N +268180 2025-09-04 15:18:05.453086+00 2025-09-04 15:18:05.453093+00 f t ADELANTO 13000.00 4 6891 \N +270625 2025-09-05 12:49:04.43636+00 2025-09-05 12:49:04.43637+00 f t SUBTOTAL 0.00 1 6950 \N +270626 2025-09-05 12:49:04.437816+00 2025-09-05 12:49:04.437824+00 f t DESCUENTO 0.00 2 6950 \N +270627 2025-09-05 12:49:04.438879+00 2025-09-05 12:49:04.438884+00 f t TOTAL 0.00 3 6950 \N +270628 2025-09-05 12:49:04.439874+00 2025-09-05 12:49:04.439879+00 f t ADELANTO 0.00 4 6950 \N +277141 2025-09-08 14:42:27.710556+00 2025-09-08 14:42:27.710569+00 f t SUBTOTAL 70000.00 1 7103 \N +277142 2025-09-08 14:42:27.712768+00 2025-09-08 14:42:27.712779+00 f t DESCUENTO 0.00 2 7103 \N +277143 2025-09-08 14:42:27.714437+00 2025-09-08 14:42:27.714448+00 f t TOTAL 70000.00 3 7103 \N +277144 2025-09-08 14:42:27.71597+00 2025-09-08 14:42:27.715978+00 f t ADELANTO 19000.00 4 7103 \N +270985 2025-09-05 14:27:58.642976+00 2025-09-05 14:27:58.642986+00 f t SUBTOTAL 68000.00 1 6956 \N +270986 2025-09-05 14:27:58.644982+00 2025-09-05 14:27:58.64499+00 f t DESCUENTO 0.00 2 6956 \N +270987 2025-09-05 14:27:58.646763+00 2025-09-05 14:27:58.646773+00 f t TOTAL 68000.00 3 6956 \N +270988 2025-09-05 14:27:58.648503+00 2025-09-05 14:27:58.648512+00 f t ADELANTO 13000.00 4 6956 \N +290189 2025-09-12 12:40:17.090026+00 2025-09-12 12:40:17.090036+00 f t SUBTOTAL 78000.00 1 7405 \N +290190 2025-09-12 12:40:17.091952+00 2025-09-12 12:40:17.091958+00 f t DESCUENTO 0.00 2 7405 \N +290191 2025-09-12 12:40:17.093159+00 2025-09-12 12:40:17.093164+00 f t TOTAL 78000.00 3 7405 \N +290192 2025-09-12 12:40:17.094207+00 2025-09-12 12:40:17.094212+00 f t ADELANTO 13000.00 4 7405 \N +271361 2025-09-05 16:48:57.9522+00 2025-09-05 16:48:57.952214+00 f t SUBTOTAL 0.00 1 6966 \N +271362 2025-09-05 16:48:57.954043+00 2025-09-05 16:48:57.954055+00 f t DESCUENTO 0.00 2 6966 \N +271363 2025-09-05 16:48:57.95582+00 2025-09-05 16:48:57.955831+00 f t TOTAL 0.00 3 6966 \N +271364 2025-09-05 16:48:57.958925+00 2025-09-05 16:48:57.958938+00 f t ADELANTO 0.00 4 6966 \N +268273 2025-09-04 15:26:24.438038+00 2025-09-04 15:26:24.438048+00 f t SUBTOTAL 70000.00 1 6893 \N +268274 2025-09-04 15:26:24.439713+00 2025-09-04 15:26:24.439719+00 f t DESCUENTO 0.00 2 6893 \N +268275 2025-09-04 15:26:24.441233+00 2025-09-04 15:26:24.441238+00 f t TOTAL 70000.00 3 6893 \N +268276 2025-09-04 15:26:24.442277+00 2025-09-04 15:26:24.442282+00 f t ADELANTO 19000.00 4 6893 \N +268289 2025-09-04 15:26:32.157947+00 2025-09-04 15:26:32.157957+00 f t SUBTOTAL 0.00 1 6892 \N +268290 2025-09-04 15:26:32.160155+00 2025-09-04 15:26:32.160164+00 f t DESCUENTO 0.00 2 6892 \N +268291 2025-09-04 15:26:32.161579+00 2025-09-04 15:26:32.161585+00 f t TOTAL 0.00 3 6892 \N +268292 2025-09-04 15:26:32.16263+00 2025-09-04 15:26:32.162634+00 f t ADELANTO 0.00 4 6892 \N +272073 2025-09-05 20:38:06.664169+00 2025-09-05 20:38:06.664181+00 f t SUBTOTAL 30000.00 1 6983 \N +268297 2025-09-04 15:49:01.296216+00 2025-09-04 15:49:01.296226+00 f t SUBTOTAL 0.00 1 6894 \N +268298 2025-09-04 15:49:01.298541+00 2025-09-04 15:49:01.298553+00 f t DESCUENTO 0.00 2 6894 \N +268299 2025-09-04 15:49:01.300459+00 2025-09-04 15:49:01.30047+00 f t TOTAL 0.00 3 6894 \N +268300 2025-09-04 15:49:01.302484+00 2025-09-04 15:49:01.302496+00 f t ADELANTO 0.00 4 6894 \N +272074 2025-09-05 20:38:06.665765+00 2025-09-05 20:38:06.665771+00 f t DESCUENTO 0.00 2 6983 \N +272075 2025-09-05 20:38:06.666858+00 2025-09-05 20:38:06.666864+00 f t TOTAL 30000.00 3 6983 \N +272076 2025-09-05 20:38:06.667893+00 2025-09-05 20:38:06.667898+00 f t ADELANTO 30000.00 4 6983 \N +268325 2025-09-04 15:59:04.990087+00 2025-09-04 15:59:04.9901+00 f t SUBTOTAL 70000.00 1 6895 \N +268326 2025-09-04 15:59:04.992684+00 2025-09-04 15:59:04.992695+00 f t DESCUENTO 0.00 2 6895 \N +268327 2025-09-04 15:59:04.994464+00 2025-09-04 15:59:04.994471+00 f t TOTAL 70000.00 3 6895 \N +268328 2025-09-04 15:59:04.996273+00 2025-09-04 15:59:04.996281+00 f t ADELANTO 19000.00 4 6895 \N +272881 2025-09-06 04:27:58.309146+00 2025-09-06 04:27:58.309159+00 f t SUBTOTAL 46000.00 1 7006 \N +272882 2025-09-06 04:27:58.311816+00 2025-09-06 04:27:58.311827+00 f t DESCUENTO 0.00 2 7006 \N +272883 2025-09-06 04:27:58.313633+00 2025-09-06 04:27:58.313643+00 f t TOTAL 46000.00 3 7006 \N +272884 2025-09-06 04:27:58.320691+00 2025-09-06 04:27:58.320704+00 f t ADELANTO 11000.00 4 7006 \N +268357 2025-09-04 16:08:49.379415+00 2025-09-04 16:08:49.379424+00 f t SUBTOTAL 54000.00 1 6896 \N +268358 2025-09-04 16:08:49.381638+00 2025-09-04 16:08:49.381645+00 f t DESCUENTO 0.00 2 6896 \N +268359 2025-09-04 16:08:49.383279+00 2025-09-04 16:08:49.383287+00 f t TOTAL 54000.00 3 6896 \N +268360 2025-09-04 16:08:49.384767+00 2025-09-04 16:08:49.384773+00 f t ADELANTO 13500.00 4 6896 \N +268365 2025-09-04 16:41:48.442745+00 2025-09-04 16:41:48.442755+00 f t SUBTOTAL 0.00 1 6897 \N +268366 2025-09-04 16:41:48.444241+00 2025-09-04 16:41:48.444248+00 f t DESCUENTO 0.00 2 6897 \N +268367 2025-09-04 16:41:48.445392+00 2025-09-04 16:41:48.445399+00 f t TOTAL 0.00 3 6897 \N +268368 2025-09-04 16:41:48.446656+00 2025-09-04 16:41:48.446662+00 f t ADELANTO 0.00 4 6897 \N +273217 2025-09-06 14:11:54.25102+00 2025-09-06 14:11:54.251029+00 f t SUBTOTAL 55000.00 1 7014 \N +273218 2025-09-06 14:11:54.252612+00 2025-09-06 14:11:54.252619+00 f t DESCUENTO 0.00 2 7014 \N +273219 2025-09-06 14:11:54.253699+00 2025-09-06 14:11:54.253707+00 f t TOTAL 55000.00 3 7014 \N +273220 2025-09-06 14:11:54.254672+00 2025-09-06 14:11:54.254679+00 f t ADELANTO 11000.00 4 7014 \N +273553 2025-09-06 15:58:37.030972+00 2025-09-06 15:58:37.030981+00 f t SUBTOTAL 70000.00 1 7023 \N +273554 2025-09-06 15:58:37.032708+00 2025-09-06 15:58:37.032714+00 f t DESCUENTO 0.00 2 7023 \N +273555 2025-09-06 15:58:37.033718+00 2025-09-06 15:58:37.033723+00 f t TOTAL 70000.00 3 7023 \N +273556 2025-09-06 15:58:37.034581+00 2025-09-06 15:58:37.034586+00 f t ADELANTO 19000.00 4 7023 \N +279601 2025-09-08 23:55:59.420935+00 2025-09-08 23:55:59.420944+00 f t SUBTOTAL 54000.00 1 7148 \N +279602 2025-09-08 23:55:59.422981+00 2025-09-08 23:55:59.422987+00 f t DESCUENTO 0.00 2 7148 \N +279603 2025-09-08 23:55:59.424103+00 2025-09-08 23:55:59.424107+00 f t TOTAL 54000.00 3 7148 \N +279604 2025-09-08 23:55:59.425044+00 2025-09-08 23:55:59.425049+00 f t ADELANTO 13500.00 4 7148 \N +268437 2025-09-04 16:56:36.442007+00 2025-09-04 16:56:36.442022+00 f t SUBTOTAL 0.00 1 6898 \N +268438 2025-09-04 16:56:36.444794+00 2025-09-04 16:56:36.444807+00 f t DESCUENTO 0.00 2 6898 \N +268439 2025-09-04 16:56:36.446794+00 2025-09-04 16:56:36.446807+00 f t TOTAL 0.00 3 6898 \N +268440 2025-09-04 16:56:36.448594+00 2025-09-04 16:56:36.448605+00 f t ADELANTO 0.00 4 6898 \N +268445 2025-09-04 16:57:49.122087+00 2025-09-04 16:57:49.122102+00 f t SUBTOTAL 0.00 1 6899 \N +268446 2025-09-04 16:57:49.123671+00 2025-09-04 16:57:49.123681+00 f t DESCUENTO 0.00 2 6899 \N +268447 2025-09-04 16:57:49.125049+00 2025-09-04 16:57:49.125057+00 f t TOTAL 0.00 3 6899 \N +268448 2025-09-04 16:57:49.12623+00 2025-09-04 16:57:49.126237+00 f t ADELANTO 0.00 4 6899 \N +274237 2025-09-06 19:15:17.300556+00 2025-09-06 19:15:17.300566+00 f t SUBTOTAL 0.00 1 7034 \N +274238 2025-09-06 19:15:17.303074+00 2025-09-06 19:15:17.303087+00 f t DESCUENTO 0.00 2 7034 \N +274239 2025-09-06 19:15:17.304969+00 2025-09-06 19:15:17.304981+00 f t TOTAL 0.00 3 7034 \N +274240 2025-09-06 19:15:17.306356+00 2025-09-06 19:15:17.306367+00 f t ADELANTO 0.00 4 7034 \N +268477 2025-09-04 17:00:41.867516+00 2025-09-04 17:00:41.867529+00 f t SUBTOTAL 46000.00 1 6900 \N +268478 2025-09-04 17:00:41.869209+00 2025-09-04 17:00:41.869215+00 f t DESCUENTO 0.00 2 6900 \N +268479 2025-09-04 17:00:41.870568+00 2025-09-04 17:00:41.870573+00 f t TOTAL 46000.00 3 6900 \N +268480 2025-09-04 17:00:41.871798+00 2025-09-04 17:00:41.871807+00 f t ADELANTO 11000.00 4 6900 \N +276421 2025-09-08 07:55:09.485024+00 2025-09-08 07:55:09.485033+00 f t SUBTOTAL 55000.00 1 7089 \N +276422 2025-09-08 07:55:09.486833+00 2025-09-08 07:55:09.48684+00 f t DESCUENTO 0.00 2 7089 \N +268485 2025-09-04 17:13:07.532499+00 2025-09-04 17:13:07.532509+00 f t SUBTOTAL 0.00 1 6901 \N +268486 2025-09-04 17:13:07.533819+00 2025-09-04 17:13:07.533826+00 f t DESCUENTO 0.00 2 6901 \N +268487 2025-09-04 17:13:07.535123+00 2025-09-04 17:13:07.535145+00 f t TOTAL 0.00 3 6901 \N +268488 2025-09-04 17:13:07.536223+00 2025-09-04 17:13:07.536229+00 f t ADELANTO 0.00 4 6901 \N +276423 2025-09-08 07:55:09.488068+00 2025-09-08 07:55:09.488074+00 f t TOTAL 55000.00 3 7089 \N +276424 2025-09-08 07:55:09.489202+00 2025-09-08 07:55:09.489208+00 f t ADELANTO 11000.00 4 7089 \N +276877 2025-09-08 12:49:16.148086+00 2025-09-08 12:49:16.148096+00 f t SUBTOTAL 54000.00 1 7099 \N +276878 2025-09-08 12:49:16.149747+00 2025-09-08 12:49:16.149753+00 f t DESCUENTO 0.00 2 7099 \N +276879 2025-09-08 12:49:16.150924+00 2025-09-08 12:49:16.15093+00 f t TOTAL 54000.00 3 7099 \N +276880 2025-09-08 12:49:16.152053+00 2025-09-08 12:49:16.152059+00 f t ADELANTO 13500.00 4 7099 \N +271457 2025-09-05 17:12:38.61399+00 2025-09-05 17:12:38.614003+00 f t SUBTOTAL 0.00 1 6968 \N +271458 2025-09-05 17:12:38.617138+00 2025-09-05 17:12:38.617147+00 f t DESCUENTO 0.00 2 6968 \N +268549 2025-09-04 17:20:16.755873+00 2025-09-04 17:20:16.755882+00 f t SUBTOTAL 140000.00 1 6902 \N +268550 2025-09-04 17:20:16.757286+00 2025-09-04 17:20:16.757315+00 f t DESCUENTO 0.00 2 6902 \N +268551 2025-09-04 17:20:16.758433+00 2025-09-04 17:20:16.75844+00 f t TOTAL 140000.00 3 6902 \N +268552 2025-09-04 17:20:16.75941+00 2025-09-04 17:20:16.759416+00 f t ADELANTO 38000.00 4 6902 \N +271459 2025-09-05 17:12:38.618643+00 2025-09-05 17:12:38.618653+00 f t TOTAL 0.00 3 6968 \N +271460 2025-09-05 17:12:38.620108+00 2025-09-05 17:12:38.620117+00 f t ADELANTO 0.00 4 6968 \N +268557 2025-09-04 17:30:09.910468+00 2025-09-04 17:30:09.910483+00 f t SUBTOTAL 0.00 1 6903 \N +268558 2025-09-04 17:30:09.912255+00 2025-09-04 17:30:09.912268+00 f t DESCUENTO 0.00 2 6903 \N +268559 2025-09-04 17:30:09.91394+00 2025-09-04 17:30:09.91395+00 f t TOTAL 0.00 3 6903 \N +268560 2025-09-04 17:30:09.916483+00 2025-09-04 17:30:09.916491+00 f t ADELANTO 0.00 4 6903 \N +272081 2025-09-05 20:44:18.87996+00 2025-09-05 20:44:18.87997+00 f t SUBTOTAL 0.00 1 6984 \N +272082 2025-09-05 20:44:18.8815+00 2025-09-05 20:44:18.881507+00 f t DESCUENTO 0.00 2 6984 \N +272083 2025-09-05 20:44:18.883307+00 2025-09-05 20:44:18.883313+00 f t TOTAL 0.00 3 6984 \N +272084 2025-09-05 20:44:18.884413+00 2025-09-05 20:44:18.884418+00 f t ADELANTO 0.00 4 6984 \N +268621 2025-09-04 17:33:35.98627+00 2025-09-04 17:33:35.986278+00 f t SUBTOTAL 139750.00 1 6904 \N +268622 2025-09-04 17:33:35.987759+00 2025-09-04 17:33:35.987764+00 f t DESCUENTO 0.00 2 6904 \N +268623 2025-09-04 17:33:35.988739+00 2025-09-04 17:33:35.988744+00 f t TOTAL 139750.00 3 6904 \N +268624 2025-09-04 17:33:35.989573+00 2025-09-04 17:33:35.989578+00 f t ADELANTO 29750.00 4 6904 \N +272741 2025-09-06 02:36:46.786351+00 2025-09-06 02:36:46.786362+00 f t SUBTOTAL 75000.00 1 7002 \N +272742 2025-09-06 02:36:46.788513+00 2025-09-06 02:36:46.788523+00 f t DESCUENTO 0.00 2 7002 \N +272743 2025-09-06 02:36:46.789767+00 2025-09-06 02:36:46.789774+00 f t TOTAL 75000.00 3 7002 \N +272744 2025-09-06 02:36:46.790918+00 2025-09-06 02:36:46.790929+00 f t ADELANTO 15000.00 4 7002 \N +268657 2025-09-04 17:58:09.190498+00 2025-09-04 17:58:09.190508+00 f t SUBTOTAL 0.00 1 6905 \N +268658 2025-09-04 17:58:09.192407+00 2025-09-04 17:58:09.192419+00 f t DESCUENTO 0.00 2 6905 \N +268659 2025-09-04 17:58:09.193816+00 2025-09-04 17:58:09.193826+00 f t TOTAL 0.00 3 6905 \N +268660 2025-09-04 17:58:09.195054+00 2025-09-04 17:58:09.195062+00 f t ADELANTO 0.00 4 6905 \N +273285 2025-09-06 14:15:47.318905+00 2025-09-06 14:15:47.318918+00 f t SUBTOTAL 0.00 1 7015 \N +273286 2025-09-06 14:15:47.321421+00 2025-09-06 14:15:47.32143+00 f t DESCUENTO 0.00 2 7015 \N +273287 2025-09-06 14:15:47.322774+00 2025-09-06 14:15:47.322781+00 f t TOTAL 0.00 3 7015 \N +273288 2025-09-06 14:15:47.324119+00 2025-09-06 14:15:47.324126+00 f t ADELANTO 0.00 4 7015 \N +268685 2025-09-04 18:00:35.86683+00 2025-09-04 18:00:35.866838+00 f t SUBTOTAL 34000.00 1 6906 \N +268686 2025-09-04 18:00:35.868678+00 2025-09-04 18:00:35.868686+00 f t DESCUENTO 0.00 2 6906 \N +268687 2025-09-04 18:00:35.870097+00 2025-09-04 18:00:35.870103+00 f t TOTAL 34000.00 3 6906 \N +268688 2025-09-04 18:00:35.871417+00 2025-09-04 18:00:35.871421+00 f t ADELANTO 34000.00 4 6906 \N +268693 2025-09-04 18:02:30.297434+00 2025-09-04 18:02:30.297444+00 f t SUBTOTAL 0.00 1 6907 \N +268694 2025-09-04 18:02:30.298793+00 2025-09-04 18:02:30.2988+00 f t DESCUENTO 0.00 2 6907 \N +268695 2025-09-04 18:02:30.299889+00 2025-09-04 18:02:30.299894+00 f t TOTAL 0.00 3 6907 \N +268696 2025-09-04 18:02:30.300782+00 2025-09-04 18:02:30.300787+00 f t ADELANTO 0.00 4 6907 \N +268701 2025-09-04 18:02:56.940916+00 2025-09-04 18:02:56.940925+00 f t SUBTOTAL 0.00 1 6908 \N +268702 2025-09-04 18:02:56.942154+00 2025-09-04 18:02:56.94216+00 f t DESCUENTO 0.00 2 6908 \N +268703 2025-09-04 18:02:56.943165+00 2025-09-04 18:02:56.943171+00 f t TOTAL 0.00 3 6908 \N +268704 2025-09-04 18:02:56.94408+00 2025-09-04 18:02:56.944085+00 f t ADELANTO 0.00 4 6908 \N +273561 2025-09-06 16:17:55.962825+00 2025-09-06 16:17:55.962835+00 f t SUBTOTAL 0.00 1 7024 \N +273562 2025-09-06 16:17:55.96395+00 2025-09-06 16:17:55.963955+00 f t DESCUENTO 0.00 2 7024 \N +273563 2025-09-06 16:17:55.965019+00 2025-09-06 16:17:55.965023+00 f t TOTAL 0.00 3 7024 \N +273564 2025-09-06 16:17:55.965807+00 2025-09-06 16:17:55.965811+00 f t ADELANTO 0.00 4 7024 \N +273689 2025-09-06 17:31:47.653598+00 2025-09-06 17:31:47.653611+00 f t SUBTOTAL 46000.00 1 7028 \N +273690 2025-09-06 17:31:47.655254+00 2025-09-06 17:31:47.65526+00 f t DESCUENTO 0.00 2 7028 \N +273691 2025-09-06 17:31:47.656391+00 2025-09-06 17:31:47.656396+00 f t TOTAL 46000.00 3 7028 \N +273692 2025-09-06 17:31:47.657274+00 2025-09-06 17:31:47.657279+00 f t ADELANTO 11000.00 4 7028 \N +268729 2025-09-04 18:04:24.769047+00 2025-09-04 18:04:24.769057+00 f t SUBTOTAL 34000.00 1 6909 \N +268730 2025-09-04 18:04:24.770748+00 2025-09-04 18:04:24.770755+00 f t DESCUENTO 0.00 2 6909 \N +268731 2025-09-04 18:04:24.771969+00 2025-09-04 18:04:24.771976+00 f t TOTAL 34000.00 3 6909 \N +268732 2025-09-04 18:04:24.773126+00 2025-09-04 18:04:24.773133+00 f t ADELANTO 34000.00 4 6909 \N +274145 2025-09-06 19:05:39.27373+00 2025-09-06 19:05:39.273739+00 f t SUBTOTAL 53700.00 1 7005 \N +274146 2025-09-06 19:05:39.275766+00 2025-09-06 19:05:39.275772+00 f t DESCUENTO 0.00 2 7005 \N +274147 2025-09-06 19:05:39.277069+00 2025-09-06 19:05:39.277074+00 f t TOTAL 53700.00 3 7005 \N +274148 2025-09-06 19:05:39.278475+00 2025-09-06 19:05:39.278485+00 f t ADELANTO 13200.00 4 7005 \N +274245 2025-09-06 19:49:04.605337+00 2025-09-06 19:49:04.605351+00 f t SUBTOTAL 0.00 1 7035 \N +274246 2025-09-06 19:49:04.607442+00 2025-09-06 19:49:04.607455+00 f t DESCUENTO 0.00 2 7035 \N +274247 2025-09-06 19:49:04.609316+00 2025-09-06 19:49:04.609327+00 f t TOTAL 0.00 3 7035 \N +274248 2025-09-06 19:49:04.611105+00 2025-09-06 19:49:04.611115+00 f t ADELANTO 0.00 4 7035 \N +274341 2025-09-06 22:31:09.549603+00 2025-09-06 22:31:09.549611+00 f t SUBTOTAL 55000.00 1 7040 \N +274342 2025-09-06 22:31:09.551223+00 2025-09-06 22:31:09.551229+00 f t DESCUENTO 0.00 2 7040 \N +274343 2025-09-06 22:31:09.552345+00 2025-09-06 22:31:09.552351+00 f t TOTAL 55000.00 3 7040 \N +274344 2025-09-06 22:31:09.553406+00 2025-09-06 22:31:09.553413+00 f t ADELANTO 11000.00 4 7040 \N +282673 2025-09-09 18:52:48.299915+00 2025-09-09 18:52:48.299924+00 f t SUBTOTAL 0.00 1 7215 \N +282674 2025-09-09 18:52:48.301933+00 2025-09-09 18:52:48.301942+00 f t DESCUENTO 0.00 2 7215 \N +282675 2025-09-09 18:52:48.303401+00 2025-09-09 18:52:48.303408+00 f t TOTAL 0.00 3 7215 \N +268777 2025-09-04 18:11:22.865527+00 2025-09-04 18:11:22.865539+00 f t SUBTOTAL 46000.00 1 6910 \N +268778 2025-09-04 18:11:22.86757+00 2025-09-04 18:11:22.867581+00 f t DESCUENTO 0.00 2 6910 \N +268779 2025-09-04 18:11:22.868939+00 2025-09-04 18:11:22.868945+00 f t TOTAL 46000.00 3 6910 \N +268780 2025-09-04 18:11:22.870223+00 2025-09-04 18:11:22.870229+00 f t ADELANTO 11000.00 4 6910 \N +282676 2025-09-09 18:52:48.304619+00 2025-09-09 18:52:48.304626+00 f t ADELANTO 0.00 4 7215 \N +276657 2025-09-08 10:50:22.17358+00 2025-09-08 10:50:22.173589+00 f t SUBTOTAL 55000.00 1 7093 \N +276658 2025-09-08 10:50:22.175244+00 2025-09-08 10:50:22.175252+00 f t DESCUENTO 0.00 2 7093 \N +276659 2025-09-08 10:50:22.176533+00 2025-09-08 10:50:22.176542+00 f t TOTAL 55000.00 3 7093 \N +276660 2025-09-08 10:50:22.178181+00 2025-09-08 10:50:22.178189+00 f t ADELANTO 11000.00 4 7093 \N +283085 2025-09-09 20:52:15.679988+00 2025-09-09 20:52:15.679999+00 f t SUBTOTAL 0.00 1 7223 \N +283086 2025-09-09 20:52:15.681628+00 2025-09-09 20:52:15.681637+00 f t DESCUENTO 0.00 2 7223 \N +283087 2025-09-09 20:52:15.683071+00 2025-09-09 20:52:15.683078+00 f t TOTAL 0.00 3 7223 \N +283088 2025-09-09 20:52:15.684464+00 2025-09-09 20:52:15.684471+00 f t ADELANTO 0.00 4 7223 \N +289813 2025-09-12 08:42:44.879703+00 2025-09-12 08:42:44.879712+00 f t SUBTOTAL 55000.00 1 7396 \N +289814 2025-09-12 08:42:44.881582+00 2025-09-12 08:42:44.88159+00 f t DESCUENTO 0.00 2 7396 \N +289815 2025-09-12 08:42:44.882781+00 2025-09-12 08:42:44.882787+00 f t TOTAL 55000.00 3 7396 \N +289816 2025-09-12 08:42:44.883911+00 2025-09-12 08:42:44.883917+00 f t ADELANTO 11000.00 4 7396 \N +268821 2025-09-04 18:24:21.324309+00 2025-09-04 18:24:21.324318+00 f t SUBTOTAL 70000.00 1 6911 \N +268822 2025-09-04 18:24:21.325956+00 2025-09-04 18:24:21.325962+00 f t DESCUENTO 0.00 2 6911 \N +268823 2025-09-04 18:24:21.327081+00 2025-09-04 18:24:21.327086+00 f t TOTAL 70000.00 3 6911 \N +268824 2025-09-04 18:24:21.328026+00 2025-09-04 18:24:21.32803+00 f t ADELANTO 19000.00 4 6911 \N +277301 2025-09-08 15:05:29.422265+00 2025-09-08 15:05:29.422277+00 f t SUBTOTAL 46000.00 1 7105 \N +277302 2025-09-08 15:05:29.424455+00 2025-09-08 15:05:29.424465+00 f t DESCUENTO 0.00 2 7105 \N +277303 2025-09-08 15:05:29.426047+00 2025-09-08 15:05:29.426054+00 f t TOTAL 46000.00 3 7105 \N +277304 2025-09-08 15:05:29.427437+00 2025-09-08 15:05:29.427445+00 f t ADELANTO 11000.00 4 7105 \N +271725 2025-09-05 18:42:50.765181+00 2025-09-05 18:42:50.765193+00 f t SUBTOTAL 70000.00 1 6975 \N +271726 2025-09-05 18:42:50.767073+00 2025-09-05 18:42:50.767081+00 f t DESCUENTO 0.00 2 6975 \N +271727 2025-09-05 18:42:50.768393+00 2025-09-05 18:42:50.768401+00 f t TOTAL 70000.00 3 6975 \N +268853 2025-09-04 18:38:37.466083+00 2025-09-04 18:38:37.466096+00 f t SUBTOTAL 55000.00 1 6912 \N +268854 2025-09-04 18:38:37.467949+00 2025-09-04 18:38:37.46796+00 f t DESCUENTO 0.00 2 6912 \N +268855 2025-09-04 18:38:37.469792+00 2025-09-04 18:38:37.469801+00 f t TOTAL 55000.00 3 6912 \N +268856 2025-09-04 18:38:37.471768+00 2025-09-04 18:38:37.471777+00 f t ADELANTO 11000.00 4 6912 \N +271728 2025-09-05 18:42:50.770476+00 2025-09-05 18:42:50.770485+00 f t ADELANTO 19000.00 4 6975 \N +278069 2025-09-08 19:37:39.289881+00 2025-09-08 19:37:39.28989+00 f t SUBTOTAL 99500.00 1 7127 \N +278070 2025-09-08 19:37:39.291298+00 2025-09-08 19:37:39.291303+00 f t DESCUENTO 0.00 2 7127 \N +278071 2025-09-08 19:37:39.292406+00 2025-09-08 19:37:39.292417+00 f t TOTAL 99500.00 3 7127 \N +278072 2025-09-08 19:37:39.293521+00 2025-09-08 19:37:39.293526+00 f t ADELANTO 22000.00 4 7127 \N +278213 2025-09-08 19:52:46.564598+00 2025-09-08 19:52:46.564607+00 f t SUBTOTAL 140000.00 1 7130 \N +278214 2025-09-08 19:52:46.566185+00 2025-09-08 19:52:46.566191+00 f t DESCUENTO 0.00 2 7130 \N +278215 2025-09-08 19:52:46.567293+00 2025-09-08 19:52:46.567298+00 f t TOTAL 140000.00 3 7130 \N +278216 2025-09-08 19:52:46.568232+00 2025-09-08 19:52:46.568237+00 f t ADELANTO 38000.00 4 7130 \N +272313 2025-09-05 23:45:29.321903+00 2025-09-05 23:45:29.321911+00 f t SUBTOTAL 0.00 1 6993 \N +272314 2025-09-05 23:45:29.324391+00 2025-09-05 23:45:29.324403+00 f t DESCUENTO 0.00 2 6993 \N +272315 2025-09-05 23:45:29.326052+00 2025-09-05 23:45:29.32606+00 f t TOTAL 0.00 3 6993 \N +272316 2025-09-05 23:45:29.327715+00 2025-09-05 23:45:29.327725+00 f t ADELANTO 0.00 4 6993 \N +268897 2025-09-04 18:52:25.661648+00 2025-09-04 18:52:25.661662+00 f t SUBTOTAL 0.00 1 6913 \N +268898 2025-09-04 18:52:25.663789+00 2025-09-04 18:52:25.663799+00 f t DESCUENTO 0.00 2 6913 \N +268899 2025-09-04 18:52:25.665201+00 2025-09-04 18:52:25.66521+00 f t TOTAL 0.00 3 6913 \N +268900 2025-09-04 18:52:25.666618+00 2025-09-04 18:52:25.666625+00 f t ADELANTO 0.00 4 6913 \N +272749 2025-09-06 03:46:47.427917+00 2025-09-06 03:46:47.427926+00 f t SUBTOTAL 0.00 1 7003 \N +272750 2025-09-06 03:46:47.429233+00 2025-09-06 03:46:47.429239+00 f t DESCUENTO 0.00 2 7003 \N +272751 2025-09-06 03:46:47.430386+00 2025-09-06 03:46:47.430391+00 f t TOTAL 0.00 3 7003 \N +272752 2025-09-06 03:46:47.43138+00 2025-09-06 03:46:47.431387+00 f t ADELANTO 0.00 4 7003 \N +273425 2025-09-06 14:58:37.971963+00 2025-09-06 14:58:37.971971+00 f t SUBTOTAL 55000.00 1 7019 \N +273426 2025-09-06 14:58:37.973759+00 2025-09-06 14:58:37.973769+00 f t DESCUENTO 0.00 2 7019 \N +273427 2025-09-06 14:58:37.975251+00 2025-09-06 14:58:37.975259+00 f t TOTAL 55000.00 3 7019 \N +273428 2025-09-06 14:58:37.976601+00 2025-09-06 14:58:37.976608+00 f t ADELANTO 11000.00 4 7019 \N +268973 2025-09-04 19:09:31.055247+00 2025-09-04 19:09:31.05526+00 f t SUBTOTAL 70000.00 1 6915 \N +268974 2025-09-04 19:09:31.057462+00 2025-09-04 19:09:31.057474+00 f t DESCUENTO 0.00 2 6915 \N +268975 2025-09-04 19:09:31.05906+00 2025-09-04 19:09:31.059071+00 f t TOTAL 70000.00 3 6915 \N +268976 2025-09-04 19:09:31.060448+00 2025-09-04 19:09:31.060456+00 f t ADELANTO 19000.00 4 6915 \N +279609 2025-09-09 00:20:03.518577+00 2025-09-09 00:20:03.518589+00 f t SUBTOTAL 0.00 1 7149 \N +279610 2025-09-09 00:20:03.520469+00 2025-09-09 00:20:03.520478+00 f t DESCUENTO 0.00 2 7149 \N +279611 2025-09-09 00:20:03.52288+00 2025-09-09 00:20:03.52289+00 f t TOTAL 0.00 3 7149 \N +279612 2025-09-09 00:20:03.524692+00 2025-09-09 00:20:03.524702+00 f t ADELANTO 0.00 4 7149 \N +274253 2025-09-06 21:29:41.790061+00 2025-09-06 21:29:41.790071+00 f t SUBTOTAL 0.00 1 7036 \N +274254 2025-09-06 21:29:41.791622+00 2025-09-06 21:29:41.791633+00 f t DESCUENTO 0.00 2 7036 \N +274255 2025-09-06 21:29:41.793204+00 2025-09-06 21:29:41.793212+00 f t TOTAL 0.00 3 7036 \N +274256 2025-09-06 21:29:41.794375+00 2025-09-06 21:29:41.794381+00 f t ADELANTO 0.00 4 7036 \N +274297 2025-09-06 22:04:49.018733+00 2025-09-06 22:04:49.018741+00 f t SUBTOTAL 0.00 1 7037 \N +274298 2025-09-06 22:04:49.020847+00 2025-09-06 22:04:49.020858+00 f t DESCUENTO 0.00 2 7037 \N +274299 2025-09-06 22:04:49.022359+00 2025-09-06 22:04:49.022366+00 f t TOTAL 0.00 3 7037 \N +274300 2025-09-06 22:04:49.023563+00 2025-09-06 22:04:49.023568+00 f t ADELANTO 0.00 4 7037 \N +274349 2025-09-06 22:37:41.368671+00 2025-09-06 22:37:41.368681+00 f t SUBTOTAL 0.00 1 7041 \N +274350 2025-09-06 22:37:41.370077+00 2025-09-06 22:37:41.370085+00 f t DESCUENTO 0.00 2 7041 \N +274351 2025-09-06 22:37:41.371385+00 2025-09-06 22:37:41.371391+00 f t TOTAL 0.00 3 7041 \N +274352 2025-09-06 22:37:41.372469+00 2025-09-06 22:37:41.372475+00 f t ADELANTO 0.00 4 7041 \N +331401 2025-09-27 07:34:40.313917+00 2025-09-27 07:34:40.313925+00 f t SUBTOTAL 55000.00 1 8380 \N +276553 2025-09-08 10:36:09.372553+00 2025-09-08 10:36:09.372562+00 f t SUBTOTAL 54000.00 1 7092 \N +276554 2025-09-08 10:36:09.37438+00 2025-09-08 10:36:09.374387+00 f t DESCUENTO 0.00 2 7092 \N +276555 2025-09-08 10:36:09.375456+00 2025-09-08 10:36:09.375462+00 f t TOTAL 54000.00 3 7092 \N +276556 2025-09-08 10:36:09.37637+00 2025-09-08 10:36:09.376375+00 f t ADELANTO 13500.00 4 7092 \N +270433 2025-09-05 12:32:25.039473+00 2025-09-05 12:32:25.039481+00 f t SUBTOTAL 55000.00 1 6947 \N +270434 2025-09-05 12:32:25.041119+00 2025-09-05 12:32:25.041126+00 f t DESCUENTO 0.00 2 6947 \N +270435 2025-09-05 12:32:25.042527+00 2025-09-05 12:32:25.042535+00 f t TOTAL 55000.00 3 6947 \N +270436 2025-09-05 12:32:25.04365+00 2025-09-05 12:32:25.043657+00 f t ADELANTO 11000.00 4 6947 \N +269093 2025-09-04 19:19:13.101077+00 2025-09-04 19:19:13.101086+00 f t SUBTOTAL 116000.00 1 6916 \N +269094 2025-09-04 19:19:13.102819+00 2025-09-04 19:19:13.102825+00 f t DESCUENTO 0.00 2 6916 \N +269095 2025-09-04 19:19:13.104258+00 2025-09-04 19:19:13.104265+00 f t TOTAL 116000.00 3 6916 \N +269096 2025-09-04 19:19:13.105453+00 2025-09-04 19:19:13.105459+00 f t ADELANTO 30000.00 4 6916 \N +269101 2025-09-04 20:00:11.109211+00 2025-09-04 20:00:11.109226+00 f t SUBTOTAL 0.00 1 6917 \N +269102 2025-09-04 20:00:11.113934+00 2025-09-04 20:00:11.113949+00 f t DESCUENTO 0.00 2 6917 \N +269103 2025-09-04 20:00:11.116909+00 2025-09-04 20:00:11.116923+00 f t TOTAL 0.00 3 6917 \N +269104 2025-09-04 20:00:11.119952+00 2025-09-04 20:00:11.119964+00 f t ADELANTO 0.00 4 6917 \N +269105 2025-09-04 20:00:19.864956+00 2025-09-04 20:00:19.864967+00 f t SUBTOTAL 92000.00 1 6914 \N +269106 2025-09-04 20:00:19.867751+00 2025-09-04 20:00:19.86776+00 f t DESCUENTO 0.00 2 6914 \N +269107 2025-09-04 20:00:19.869758+00 2025-09-04 20:00:19.869766+00 f t TOTAL 92000.00 3 6914 \N +269108 2025-09-04 20:00:19.871626+00 2025-09-04 20:00:19.871638+00 f t ADELANTO 22000.00 4 6914 \N +269113 2025-09-04 20:37:36.8472+00 2025-09-04 20:37:36.84721+00 f t SUBTOTAL 0.00 1 6918 \N +269114 2025-09-04 20:37:36.848902+00 2025-09-04 20:37:36.848908+00 f t DESCUENTO 0.00 2 6918 \N +269115 2025-09-04 20:37:36.849924+00 2025-09-04 20:37:36.849929+00 f t TOTAL 0.00 3 6918 \N +269116 2025-09-04 20:37:36.850799+00 2025-09-04 20:37:36.850804+00 f t ADELANTO 0.00 4 6918 \N +271089 2025-09-05 15:06:00.597308+00 2025-09-05 15:06:00.597321+00 f t SUBTOTAL 68000.00 1 6958 \N +271090 2025-09-05 15:06:00.603642+00 2025-09-05 15:06:00.603654+00 f t DESCUENTO 0.00 2 6958 \N +271091 2025-09-05 15:06:00.605899+00 2025-09-05 15:06:00.605911+00 f t TOTAL 68000.00 3 6958 \N +271092 2025-09-05 15:06:00.607988+00 2025-09-05 15:06:00.607997+00 f t ADELANTO 13000.00 4 6958 \N +277405 2025-09-08 16:46:18.075624+00 2025-09-08 16:46:18.075633+00 f t SUBTOTAL 68000.00 1 7111 \N +277406 2025-09-08 16:46:18.077065+00 2025-09-08 16:46:18.077071+00 f t DESCUENTO 0.00 2 7111 \N +277407 2025-09-08 16:46:18.078091+00 2025-09-08 16:46:18.078097+00 f t TOTAL 68000.00 3 7111 \N +277408 2025-09-08 16:46:18.079198+00 2025-09-08 16:46:18.079203+00 f t ADELANTO 13000.00 4 7111 \N +269149 2025-09-04 20:38:24.29678+00 2025-09-04 20:38:24.296789+00 f t SUBTOTAL 0.00 1 6920 \N +269150 2025-09-04 20:38:24.298098+00 2025-09-04 20:38:24.298104+00 f t DESCUENTO 0.00 2 6920 \N +269151 2025-09-04 20:38:24.299262+00 2025-09-04 20:38:24.299268+00 f t TOTAL 0.00 3 6920 \N +269152 2025-09-04 20:38:24.300329+00 2025-09-04 20:38:24.300336+00 f t ADELANTO 0.00 4 6920 \N +271733 2025-09-05 18:49:19.215815+00 2025-09-05 18:49:19.215829+00 f t SUBTOTAL 0.00 1 6976 \N +271734 2025-09-05 18:49:19.217678+00 2025-09-05 18:49:19.217689+00 f t DESCUENTO 0.00 2 6976 \N +271735 2025-09-05 18:49:19.219892+00 2025-09-05 18:49:19.219903+00 f t TOTAL 0.00 3 6976 \N +271736 2025-09-05 18:49:19.221412+00 2025-09-05 18:49:19.221422+00 f t ADELANTO 0.00 4 6976 \N +277821 2025-09-08 18:10:29.087327+00 2025-09-08 18:10:29.087335+00 f t SUBTOTAL 54000.00 1 7120 \N +277822 2025-09-08 18:10:29.089316+00 2025-09-08 18:10:29.089323+00 f t DESCUENTO 0.00 2 7120 \N +277823 2025-09-08 18:10:29.094034+00 2025-09-08 18:10:29.094043+00 f t TOTAL 54000.00 3 7120 \N +277824 2025-09-08 18:10:29.095953+00 2025-09-08 18:10:29.095961+00 f t ADELANTO 13500.00 4 7120 \N +277993 2025-09-08 18:59:15.161885+00 2025-09-08 18:59:15.161893+00 f t SUBTOTAL 46000.00 1 7125 \N +277994 2025-09-08 18:59:15.16354+00 2025-09-08 18:59:15.163547+00 f t DESCUENTO 0.00 2 7125 \N +277995 2025-09-08 18:59:15.164757+00 2025-09-08 18:59:15.164762+00 f t TOTAL 46000.00 3 7125 \N +277996 2025-09-08 18:59:15.166781+00 2025-09-08 18:59:15.166787+00 f t ADELANTO 11000.00 4 7125 \N +272157 2025-09-05 21:32:46.19523+00 2025-09-05 21:32:46.195242+00 f t SUBTOTAL 75000.00 1 6985 \N +272158 2025-09-05 21:32:46.197005+00 2025-09-05 21:32:46.197013+00 f t DESCUENTO 0.00 2 6985 \N +272159 2025-09-05 21:32:46.198182+00 2025-09-05 21:32:46.19819+00 f t TOTAL 75000.00 3 6985 \N +272160 2025-09-05 21:32:46.199248+00 2025-09-05 21:32:46.199254+00 f t ADELANTO 15000.00 4 6985 \N +269193 2025-09-04 20:39:31.521751+00 2025-09-04 20:39:31.521763+00 f t SUBTOTAL 30000.00 1 6919 \N +269194 2025-09-04 20:39:31.523561+00 2025-09-04 20:39:31.523572+00 f t DESCUENTO 0.00 2 6919 \N +269195 2025-09-04 20:39:31.524908+00 2025-09-04 20:39:31.524915+00 f t TOTAL 30000.00 3 6919 \N +269196 2025-09-04 20:39:31.526337+00 2025-09-04 20:39:31.526344+00 f t ADELANTO 30000.00 4 6919 \N +269221 2025-09-04 22:39:46.19195+00 2025-09-04 22:39:46.191959+00 f t SUBTOTAL 55000.00 1 6921 \N +269222 2025-09-04 22:39:46.193665+00 2025-09-04 22:39:46.193672+00 f t DESCUENTO 0.00 2 6921 \N +269223 2025-09-04 22:39:46.194735+00 2025-09-04 22:39:46.194741+00 f t TOTAL 55000.00 3 6921 \N +269224 2025-09-04 22:39:46.195707+00 2025-09-04 22:39:46.195712+00 f t ADELANTO 11000.00 4 6921 \N +273433 2025-09-06 15:32:37.094686+00 2025-09-06 15:32:37.094698+00 f t SUBTOTAL 0.00 1 7020 \N +273434 2025-09-06 15:32:37.096499+00 2025-09-06 15:32:37.096509+00 f t DESCUENTO 0.00 2 7020 \N +273435 2025-09-06 15:32:37.098117+00 2025-09-06 15:32:37.098127+00 f t TOTAL 0.00 3 7020 \N +273436 2025-09-06 15:32:37.099471+00 2025-09-06 15:32:37.099478+00 f t ADELANTO 0.00 4 7020 \N +269289 2025-09-04 22:50:10.841342+00 2025-09-04 22:50:10.841353+00 f t SUBTOTAL 197000.00 1 6922 \N +269290 2025-09-04 22:50:10.843718+00 2025-09-04 22:50:10.84373+00 f t DESCUENTO 0.00 2 6922 \N +269291 2025-09-04 22:50:10.845587+00 2025-09-04 22:50:10.845596+00 f t TOTAL 197000.00 3 6922 \N +269292 2025-09-04 22:50:10.847293+00 2025-09-04 22:50:10.847301+00 f t ADELANTO 57000.00 4 6922 \N +269341 2025-09-04 23:08:08.448366+00 2025-09-04 23:08:08.448375+00 f t SUBTOTAL 78000.00 1 6923 \N +269342 2025-09-04 23:08:08.449795+00 2025-09-04 23:08:08.449802+00 f t DESCUENTO 0.00 2 6923 \N +269343 2025-09-04 23:08:08.450793+00 2025-09-04 23:08:08.450799+00 f t TOTAL 78000.00 3 6923 \N +269344 2025-09-04 23:08:08.451741+00 2025-09-04 23:08:08.451747+00 f t ADELANTO 21500.00 4 6923 \N +269349 2025-09-04 23:24:33.465123+00 2025-09-04 23:24:33.465133+00 f t SUBTOTAL 0.00 1 6924 \N +269350 2025-09-04 23:24:33.466645+00 2025-09-04 23:24:33.466653+00 f t DESCUENTO 0.00 2 6924 \N +269351 2025-09-04 23:24:33.467995+00 2025-09-04 23:24:33.468003+00 f t TOTAL 0.00 3 6924 \N +269352 2025-09-04 23:24:33.46924+00 2025-09-04 23:24:33.469247+00 f t ADELANTO 0.00 4 6924 \N +274305 2025-09-06 22:19:13.949354+00 2025-09-06 22:19:13.949369+00 f t SUBTOTAL 0.00 1 7038 \N +274306 2025-09-06 22:19:13.950988+00 2025-09-06 22:19:13.950999+00 f t DESCUENTO 0.00 2 7038 \N +274307 2025-09-06 22:19:13.952513+00 2025-09-06 22:19:13.952522+00 f t TOTAL 0.00 3 7038 \N +295977 2025-09-14 14:45:08.475871+00 2025-09-14 14:45:08.47588+00 f t SUBTOTAL 70000.00 1 7531 \N +295978 2025-09-14 14:45:08.479939+00 2025-09-14 14:45:08.479949+00 f t DESCUENTO 0.00 2 7531 \N +295979 2025-09-14 14:45:08.481667+00 2025-09-14 14:45:08.481674+00 f t TOTAL 70000.00 3 7531 \N +295980 2025-09-14 14:45:08.482706+00 2025-09-14 14:45:08.482712+00 f t ADELANTO 19000.00 4 7531 \N +276985 2025-09-08 14:34:13.133396+00 2025-09-08 14:34:13.133406+00 f t SUBTOTAL 0.00 1 7101 \N +276986 2025-09-08 14:34:13.135585+00 2025-09-08 14:34:13.135592+00 f t DESCUENTO 0.00 2 7101 \N +276987 2025-09-08 14:34:13.136638+00 2025-09-08 14:34:13.136643+00 f t TOTAL 0.00 3 7101 \N +276988 2025-09-08 14:34:13.137495+00 2025-09-08 14:34:13.1375+00 f t ADELANTO 0.00 4 7101 \N +269385 2025-09-04 23:53:40.673764+00 2025-09-04 23:53:40.673774+00 f t SUBTOTAL 55000.00 1 6925 \N +269386 2025-09-04 23:53:40.67556+00 2025-09-04 23:53:40.675568+00 f t DESCUENTO 0.00 2 6925 \N +269387 2025-09-04 23:53:40.677069+00 2025-09-04 23:53:40.677078+00 f t TOTAL 55000.00 3 6925 \N +269388 2025-09-04 23:53:40.678283+00 2025-09-04 23:53:40.678289+00 f t ADELANTO 11000.00 4 6925 \N +269393 2025-09-05 00:02:34.927425+00 2025-09-05 00:02:34.927435+00 f t SUBTOTAL 0.00 1 6926 \N +269394 2025-09-05 00:02:34.928883+00 2025-09-05 00:02:34.928891+00 f t DESCUENTO 0.00 2 6926 \N +269395 2025-09-05 00:02:34.930684+00 2025-09-05 00:02:34.930692+00 f t TOTAL 0.00 3 6926 \N +269396 2025-09-05 00:02:34.93187+00 2025-09-05 00:02:34.931876+00 f t ADELANTO 0.00 4 6926 \N +269401 2025-09-05 00:43:50.35965+00 2025-09-05 00:43:50.359659+00 f t SUBTOTAL 0.00 1 6927 \N +269402 2025-09-05 00:43:50.360707+00 2025-09-05 00:43:50.360713+00 f t DESCUENTO 0.00 2 6927 \N +269403 2025-09-05 00:43:50.361545+00 2025-09-05 00:43:50.36155+00 f t TOTAL 0.00 3 6927 \N +269404 2025-09-05 00:43:50.362554+00 2025-09-05 00:43:50.36256+00 f t ADELANTO 0.00 4 6927 \N +271097 2025-09-05 15:06:21.263219+00 2025-09-05 15:06:21.263228+00 f t SUBTOTAL 0.00 1 6959 \N +271098 2025-09-05 15:06:21.264719+00 2025-09-05 15:06:21.264726+00 f t DESCUENTO 0.00 2 6959 \N +271099 2025-09-05 15:06:21.266217+00 2025-09-05 15:06:21.266224+00 f t TOTAL 0.00 3 6959 \N +271100 2025-09-05 15:06:21.267422+00 2025-09-05 15:06:21.267428+00 f t ADELANTO 0.00 4 6959 \N +277413 2025-09-08 16:57:52.737309+00 2025-09-08 16:57:52.737319+00 f t SUBTOTAL 0.00 1 7112 \N +277414 2025-09-08 16:57:52.738517+00 2025-09-08 16:57:52.738524+00 f t DESCUENTO 0.00 2 7112 \N +277415 2025-09-08 16:57:52.739624+00 2025-09-08 16:57:52.739629+00 f t TOTAL 0.00 3 7112 \N +277416 2025-09-08 16:57:52.740503+00 2025-09-08 16:57:52.740508+00 f t ADELANTO 0.00 4 7112 \N +269441 2025-09-05 00:52:47.080407+00 2025-09-05 00:52:47.080416+00 f t SUBTOTAL 70000.00 1 6928 \N +269442 2025-09-05 00:52:47.081892+00 2025-09-05 00:52:47.081898+00 f t DESCUENTO 0.00 2 6928 \N +269443 2025-09-05 00:52:47.082913+00 2025-09-05 00:52:47.082918+00 f t TOTAL 70000.00 3 6928 \N +269444 2025-09-05 00:52:47.083833+00 2025-09-05 00:52:47.083838+00 f t ADELANTO 19000.00 4 6928 \N +271741 2025-09-05 18:53:44.713717+00 2025-09-05 18:53:44.713726+00 f t SUBTOTAL 0.00 1 6977 \N +271742 2025-09-05 18:53:44.71523+00 2025-09-05 18:53:44.715238+00 f t DESCUENTO 0.00 2 6977 \N +271743 2025-09-05 18:53:44.71657+00 2025-09-05 18:53:44.716578+00 f t TOTAL 0.00 3 6977 \N +271744 2025-09-05 18:53:44.717641+00 2025-09-05 18:53:44.717647+00 f t ADELANTO 0.00 4 6977 \N +277829 2025-09-08 18:48:23.643716+00 2025-09-08 18:48:23.643724+00 f t SUBTOTAL 0.00 1 7121 \N +277830 2025-09-08 18:48:23.644979+00 2025-09-08 18:48:23.644986+00 f t DESCUENTO 0.00 2 7121 \N +277831 2025-09-08 18:48:23.646101+00 2025-09-08 18:48:23.646107+00 f t TOTAL 0.00 3 7121 \N +277832 2025-09-08 18:48:23.647052+00 2025-09-08 18:48:23.647057+00 f t ADELANTO 0.00 4 7121 \N +269469 2025-09-05 01:21:16.793154+00 2025-09-05 01:21:16.793165+00 f t SUBTOTAL 0.00 1 6929 \N +269470 2025-09-05 01:21:16.795345+00 2025-09-05 01:21:16.795353+00 f t DESCUENTO 0.00 2 6929 \N +269471 2025-09-05 01:21:16.796773+00 2025-09-05 01:21:16.79678+00 f t TOTAL 0.00 3 6929 \N +269472 2025-09-05 01:21:16.798165+00 2025-09-05 01:21:16.798171+00 f t ADELANTO 0.00 4 6929 \N +272165 2025-09-05 22:23:31.109515+00 2025-09-05 22:23:31.109525+00 f t SUBTOTAL 0.00 1 6986 \N +272166 2025-09-05 22:23:31.110954+00 2025-09-05 22:23:31.110961+00 f t DESCUENTO 0.00 2 6986 \N +272167 2025-09-05 22:23:31.112186+00 2025-09-05 22:23:31.112193+00 f t TOTAL 0.00 3 6986 \N +272168 2025-09-05 22:23:31.113235+00 2025-09-05 22:23:31.113241+00 f t ADELANTO 0.00 4 6986 \N +269497 2025-09-05 01:37:21.662214+00 2025-09-05 01:37:21.662223+00 f t SUBTOTAL 54000.00 1 6930 \N +269498 2025-09-05 01:37:21.665578+00 2025-09-05 01:37:21.665586+00 f t DESCUENTO 0.00 2 6930 \N +269499 2025-09-05 01:37:21.667206+00 2025-09-05 01:37:21.667217+00 f t TOTAL 54000.00 3 6930 \N +269500 2025-09-05 01:37:21.6688+00 2025-09-05 01:37:21.668808+00 f t ADELANTO 13500.00 4 6930 \N +269505 2025-09-05 02:04:41.052252+00 2025-09-05 02:04:41.052261+00 f t SUBTOTAL 0.00 1 6931 \N +269506 2025-09-05 02:04:41.053454+00 2025-09-05 02:04:41.053461+00 f t DESCUENTO 0.00 2 6931 \N +269507 2025-09-05 02:04:41.054564+00 2025-09-05 02:04:41.05457+00 f t TOTAL 0.00 3 6931 \N +269508 2025-09-05 02:04:41.055456+00 2025-09-05 02:04:41.055462+00 f t ADELANTO 0.00 4 6931 \N +278489 2025-09-08 20:15:47.696141+00 2025-09-08 20:15:47.69615+00 f t SUBTOTAL 54000.00 1 7134 \N +278490 2025-09-08 20:15:47.698606+00 2025-09-08 20:15:47.698617+00 f t DESCUENTO 0.00 2 7134 \N +278491 2025-09-08 20:15:47.700838+00 2025-09-08 20:15:47.700848+00 f t TOTAL 54000.00 3 7134 \N +278492 2025-09-08 20:15:47.702532+00 2025-09-08 20:15:47.70254+00 f t ADELANTO 13500.00 4 7134 \N +273165 2025-09-06 14:09:10.374697+00 2025-09-06 14:09:10.374707+00 f t SUBTOTAL 55000.00 1 7012 \N +273166 2025-09-06 14:09:10.376517+00 2025-09-06 14:09:10.376524+00 f t DESCUENTO 0.00 2 7012 \N +273167 2025-09-06 14:09:10.377595+00 2025-09-06 14:09:10.3776+00 f t TOTAL 55000.00 3 7012 \N +273168 2025-09-06 14:09:10.378891+00 2025-09-06 14:09:10.3789+00 f t ADELANTO 11000.00 4 7012 \N +269553 2025-09-05 02:24:11.7107+00 2025-09-05 02:24:11.71071+00 f t SUBTOTAL 55000.00 1 6932 \N +269554 2025-09-05 02:24:11.712557+00 2025-09-05 02:24:11.712564+00 f t DESCUENTO 0.00 2 6932 \N +269555 2025-09-05 02:24:11.713794+00 2025-09-05 02:24:11.713803+00 f t TOTAL 55000.00 3 6932 \N +269556 2025-09-05 02:24:11.715124+00 2025-09-05 02:24:11.71515+00 f t ADELANTO 11000.00 4 6932 \N +269569 2025-09-05 02:35:22.076857+00 2025-09-05 02:35:22.076868+00 f t SUBTOTAL 0.00 1 6933 \N +269570 2025-09-05 02:35:22.079173+00 2025-09-05 02:35:22.079185+00 f t DESCUENTO 0.00 2 6933 \N +269571 2025-09-05 02:35:22.080496+00 2025-09-05 02:35:22.080504+00 f t TOTAL 0.00 3 6933 \N +269572 2025-09-05 02:35:22.081593+00 2025-09-05 02:35:22.081598+00 f t ADELANTO 0.00 4 6933 \N +279317 2025-09-08 23:35:25.393412+00 2025-09-08 23:35:25.393426+00 f t SUBTOTAL 55000.00 1 7145 \N +279318 2025-09-08 23:35:25.395599+00 2025-09-08 23:35:25.39561+00 f t DESCUENTO 0.00 2 7145 \N +279319 2025-09-08 23:35:25.397424+00 2025-09-08 23:35:25.397434+00 f t TOTAL 55000.00 3 7145 \N +279320 2025-09-08 23:35:25.399006+00 2025-09-08 23:35:25.399013+00 f t ADELANTO 11000.00 4 7145 \N +279549 2025-09-08 23:48:02.261217+00 2025-09-08 23:48:02.261229+00 f t SUBTOTAL 46000.00 1 7146 \N +279550 2025-09-08 23:48:02.26377+00 2025-09-08 23:48:02.263782+00 f t DESCUENTO 0.00 2 7146 \N +279551 2025-09-08 23:48:02.265681+00 2025-09-08 23:48:02.265692+00 f t TOTAL 46000.00 3 7146 \N +279552 2025-09-08 23:48:02.267497+00 2025-09-08 23:48:02.267507+00 f t ADELANTO 11000.00 4 7146 \N +274308 2025-09-06 22:19:13.953746+00 2025-09-06 22:19:13.953754+00 f t ADELANTO 0.00 4 7038 \N +269669 2025-09-05 03:18:29.561732+00 2025-09-05 03:18:29.561743+00 f t SUBTOTAL 0.00 1 6934 \N +269670 2025-09-05 03:18:29.563645+00 2025-09-05 03:18:29.563652+00 f t DESCUENTO 0.00 2 6934 \N +269671 2025-09-05 03:18:29.564903+00 2025-09-05 03:18:29.564914+00 f t TOTAL 0.00 3 6934 \N +269672 2025-09-05 03:18:29.566319+00 2025-09-05 03:18:29.566328+00 f t ADELANTO 0.00 4 6934 \N +290193 2025-09-12 12:42:36.894272+00 2025-09-12 12:42:36.894283+00 f t SUBTOTAL 70000.00 1 7404 \N +290194 2025-09-12 12:42:36.896477+00 2025-09-12 12:42:36.896484+00 f t DESCUENTO 0.00 2 7404 \N +290195 2025-09-12 12:42:36.897889+00 2025-09-12 12:42:36.897896+00 f t TOTAL 70000.00 3 7404 \N +290196 2025-09-12 12:42:36.899495+00 2025-09-12 12:42:36.899506+00 f t ADELANTO 19000.00 4 7404 \N +271281 2025-09-05 15:25:51.306561+00 2025-09-05 15:25:51.30657+00 f t SUBTOTAL 49000.00 1 6961 \N +271282 2025-09-05 15:25:51.308755+00 2025-09-05 15:25:51.308764+00 f t DESCUENTO 0.00 2 6961 \N +271283 2025-09-05 15:25:51.310136+00 2025-09-05 15:25:51.310145+00 f t TOTAL 49000.00 3 6961 \N +271284 2025-09-05 15:25:51.31149+00 2025-09-05 15:25:51.311496+00 f t ADELANTO 49000.00 4 6961 \N +277421 2025-09-08 16:58:42.729864+00 2025-09-08 16:58:42.729876+00 f t SUBTOTAL 0.00 1 7113 \N +277422 2025-09-08 16:58:42.731395+00 2025-09-08 16:58:42.731401+00 f t DESCUENTO 0.00 2 7113 \N +277423 2025-09-08 16:58:42.733038+00 2025-09-08 16:58:42.733047+00 f t TOTAL 0.00 3 7113 \N +277424 2025-09-08 16:58:42.734274+00 2025-09-08 16:58:42.73428+00 f t ADELANTO 0.00 4 7113 \N +277509 2025-09-08 17:02:41.299188+00 2025-09-08 17:02:41.299197+00 f t SUBTOTAL 0.00 1 7116 \N +277510 2025-09-08 17:02:41.3006+00 2025-09-08 17:02:41.300607+00 f t DESCUENTO 0.00 2 7116 \N +277511 2025-09-08 17:02:41.301792+00 2025-09-08 17:02:41.301797+00 f t TOTAL 0.00 3 7116 \N +277512 2025-09-08 17:02:41.302807+00 2025-09-08 17:02:41.302812+00 f t ADELANTO 0.00 4 7116 \N +277665 2025-09-08 17:21:23.120975+00 2025-09-08 17:21:23.120986+00 f t SUBTOTAL 55000.00 1 7117 \N +277666 2025-09-08 17:21:23.123113+00 2025-09-08 17:21:23.123124+00 f t DESCUENTO 0.00 2 7117 \N +277667 2025-09-08 17:21:23.124684+00 2025-09-08 17:21:23.124692+00 f t TOTAL 55000.00 3 7117 \N +277668 2025-09-08 17:21:23.126252+00 2025-09-08 17:21:23.12626+00 f t ADELANTO 11000.00 4 7117 \N +271749 2025-09-05 19:04:49.60445+00 2025-09-05 19:04:49.604463+00 f t SUBTOTAL 0.00 1 6978 \N +271750 2025-09-05 19:04:49.60593+00 2025-09-05 19:04:49.605939+00 f t DESCUENTO 0.00 2 6978 \N +271751 2025-09-05 19:04:49.607256+00 2025-09-05 19:04:49.607263+00 f t TOTAL 0.00 3 6978 \N +271752 2025-09-05 19:04:49.608364+00 2025-09-05 19:04:49.608371+00 f t ADELANTO 0.00 4 6978 \N +271897 2025-09-05 20:29:34.043841+00 2025-09-05 20:29:34.043854+00 f t SUBTOTAL 0.00 1 6982 \N +271898 2025-09-05 20:29:34.04577+00 2025-09-05 20:29:34.045779+00 f t DESCUENTO 0.00 2 6982 \N +271899 2025-09-05 20:29:34.048409+00 2025-09-05 20:29:34.048418+00 f t TOTAL 0.00 3 6982 \N +271900 2025-09-05 20:29:34.049689+00 2025-09-05 20:29:34.049695+00 f t ADELANTO 0.00 4 6982 \N +269737 2025-09-05 03:23:13.368821+00 2025-09-05 03:23:13.36883+00 f t SUBTOTAL 54000.00 1 6935 \N +269738 2025-09-05 03:23:13.370333+00 2025-09-05 03:23:13.370338+00 f t DESCUENTO 0.00 2 6935 \N +269739 2025-09-05 03:23:13.371374+00 2025-09-05 03:23:13.37138+00 f t TOTAL 54000.00 3 6935 \N +269740 2025-09-05 03:23:13.372307+00 2025-09-05 03:23:13.372312+00 f t ADELANTO 13500.00 4 6935 \N +272765 2025-09-06 03:47:40.213639+00 2025-09-06 03:47:40.213649+00 f t SUBTOTAL 0.00 1 7004 \N +272766 2025-09-06 03:47:40.215901+00 2025-09-06 03:47:40.215909+00 f t DESCUENTO 0.00 2 7004 \N +272767 2025-09-06 03:47:40.217232+00 2025-09-06 03:47:40.217239+00 f t TOTAL 0.00 3 7004 \N +272768 2025-09-06 03:47:40.218427+00 2025-09-06 03:47:40.218434+00 f t ADELANTO 0.00 4 7004 \N +269797 2025-09-05 03:25:12.747396+00 2025-09-05 03:25:12.747406+00 f t SUBTOTAL 30000.00 1 6936 \N +269798 2025-09-05 03:25:12.74908+00 2025-09-05 03:25:12.749088+00 f t DESCUENTO 0.00 2 6936 \N +269799 2025-09-05 03:25:12.75026+00 2025-09-05 03:25:12.750266+00 f t TOTAL 30000.00 3 6936 \N +269800 2025-09-05 03:25:12.751328+00 2025-09-05 03:25:12.751334+00 f t ADELANTO 30000.00 4 6936 \N +278697 2025-09-08 21:32:21.132759+00 2025-09-08 21:32:21.132768+00 f t SUBTOTAL 68000.00 1 7139 \N +278698 2025-09-08 21:32:21.134745+00 2025-09-08 21:32:21.134754+00 f t DESCUENTO 0.00 2 7139 \N +269805 2025-09-05 04:02:01.428513+00 2025-09-05 04:02:01.428523+00 f t SUBTOTAL 0.00 1 6937 \N +269806 2025-09-05 04:02:01.429701+00 2025-09-05 04:02:01.429708+00 f t DESCUENTO 0.00 2 6937 \N +269807 2025-09-05 04:02:01.430712+00 2025-09-05 04:02:01.430717+00 f t TOTAL 0.00 3 6937 \N +269808 2025-09-05 04:02:01.431608+00 2025-09-05 04:02:01.431613+00 f t ADELANTO 0.00 4 6937 \N +278699 2025-09-08 21:32:21.136237+00 2025-09-08 21:32:21.136246+00 f t TOTAL 68000.00 3 7139 \N +278700 2025-09-08 21:32:21.13747+00 2025-09-08 21:32:21.137476+00 f t ADELANTO 13000.00 4 7139 \N +272969 2025-09-06 06:18:06.227345+00 2025-09-06 06:18:06.227358+00 f t SUBTOTAL 55000.00 1 7007 \N +272970 2025-09-06 06:18:06.229405+00 2025-09-06 06:18:06.229415+00 f t DESCUENTO 0.00 2 7007 \N +272971 2025-09-06 06:18:06.231056+00 2025-09-06 06:18:06.231063+00 f t TOTAL 55000.00 3 7007 \N +272972 2025-09-06 06:18:06.232558+00 2025-09-06 06:18:06.232565+00 f t ADELANTO 11000.00 4 7007 \N +273173 2025-09-06 14:10:47.260408+00 2025-09-06 14:10:47.260423+00 f t SUBTOTAL 0.00 1 7013 \N +273174 2025-09-06 14:10:47.26206+00 2025-09-06 14:10:47.262067+00 f t DESCUENTO 0.00 2 7013 \N +273175 2025-09-06 14:10:47.263659+00 2025-09-06 14:10:47.263665+00 f t TOTAL 0.00 3 7013 \N +273176 2025-09-06 14:10:47.265128+00 2025-09-06 14:10:47.265136+00 f t ADELANTO 0.00 4 7013 \N +269841 2025-09-05 04:04:27.740648+00 2025-09-05 04:04:27.740657+00 f t SUBTOTAL 0.00 1 6938 \N +269842 2025-09-05 04:04:27.742543+00 2025-09-05 04:04:27.74255+00 f t DESCUENTO 0.00 2 6938 \N +269843 2025-09-05 04:04:27.743805+00 2025-09-05 04:04:27.743812+00 f t TOTAL 0.00 3 6938 \N +269844 2025-09-05 04:04:27.745031+00 2025-09-05 04:04:27.745036+00 f t ADELANTO 0.00 4 6938 \N +269869 2025-09-05 05:31:55.453677+00 2025-09-05 05:31:55.453685+00 f t SUBTOTAL 133500.00 1 6939 \N +269870 2025-09-05 05:31:55.455346+00 2025-09-05 05:31:55.455353+00 f t DESCUENTO 0.00 2 6939 \N +269871 2025-09-05 05:31:55.456618+00 2025-09-05 05:31:55.456624+00 f t TOTAL 133500.00 3 6939 \N +269872 2025-09-05 05:31:55.457636+00 2025-09-05 05:31:55.457641+00 f t ADELANTO 28500.00 4 6939 \N +274313 2025-09-06 22:19:58.536797+00 2025-09-06 22:19:58.536807+00 f t SUBTOTAL 0.00 1 7039 \N +274314 2025-09-06 22:19:58.538304+00 2025-09-06 22:19:58.53831+00 f t DESCUENTO 0.00 2 7039 \N +274315 2025-09-06 22:19:58.53932+00 2025-09-06 22:19:58.539326+00 f t TOTAL 0.00 3 7039 \N +274316 2025-09-06 22:19:58.540422+00 2025-09-06 22:19:58.540428+00 f t ADELANTO 0.00 4 7039 \N +274389 2025-09-06 22:50:28.348175+00 2025-09-06 22:50:28.348185+00 f t SUBTOTAL 55000.00 1 7042 \N +274390 2025-09-06 22:50:28.349778+00 2025-09-06 22:50:28.349785+00 f t DESCUENTO 0.00 2 7042 \N +274391 2025-09-06 22:50:28.351077+00 2025-09-06 22:50:28.351084+00 f t TOTAL 55000.00 3 7042 \N +274392 2025-09-06 22:50:28.35206+00 2025-09-06 22:50:28.352065+00 f t ADELANTO 11000.00 4 7042 \N +274457 2025-09-06 23:38:31.939166+00 2025-09-06 23:38:31.939175+00 f t SUBTOTAL 46000.00 1 7044 \N +274458 2025-09-06 23:38:31.940871+00 2025-09-06 23:38:31.940879+00 f t DESCUENTO 0.00 2 7044 \N +274459 2025-09-06 23:38:31.942583+00 2025-09-06 23:38:31.94259+00 f t TOTAL 46000.00 3 7044 \N +274460 2025-09-06 23:38:31.943764+00 2025-09-06 23:38:31.94377+00 f t ADELANTO 11000.00 4 7044 \N +270653 2025-09-05 13:00:40.260263+00 2025-09-05 13:00:40.260278+00 f t SUBTOTAL 0.00 1 6951 \N +270654 2025-09-05 13:00:40.262713+00 2025-09-05 13:00:40.262722+00 f t DESCUENTO 0.00 2 6951 \N +270655 2025-09-05 13:00:40.264088+00 2025-09-05 13:00:40.264097+00 f t TOTAL 0.00 3 6951 \N +270656 2025-09-05 13:00:40.265691+00 2025-09-05 13:00:40.265698+00 f t ADELANTO 0.00 4 6951 \N +269961 2025-09-05 09:04:58.866861+00 2025-09-05 09:04:58.866871+00 f t SUBTOTAL 100000.00 1 6940 \N +269962 2025-09-05 09:04:58.868599+00 2025-09-05 09:04:58.868606+00 f t DESCUENTO 0.00 2 6940 \N +269963 2025-09-05 09:04:58.869782+00 2025-09-05 09:04:58.869788+00 f t TOTAL 100000.00 3 6940 \N +269964 2025-09-05 09:04:58.870791+00 2025-09-05 09:04:58.870798+00 f t ADELANTO 24500.00 4 6940 \N +283273 2025-09-09 23:36:08.953115+00 2025-09-09 23:36:08.953124+00 f t SUBTOTAL 0.00 1 7230 \N +283274 2025-09-09 23:36:08.954889+00 2025-09-09 23:36:08.954896+00 f t DESCUENTO 0.00 2 7230 \N +283275 2025-09-09 23:36:08.956287+00 2025-09-09 23:36:08.956294+00 f t TOTAL 0.00 3 7230 \N +283276 2025-09-09 23:36:08.957535+00 2025-09-09 23:36:08.957541+00 f t ADELANTO 0.00 4 7230 \N +289913 2025-09-12 11:07:20.375036+00 2025-09-12 11:07:20.375045+00 f t SUBTOTAL 91500.00 1 7398 \N +289914 2025-09-12 11:07:20.376627+00 2025-09-12 11:07:20.376634+00 f t DESCUENTO 0.00 2 7398 \N +289915 2025-09-12 11:07:20.377875+00 2025-09-12 11:07:20.377881+00 f t TOTAL 91500.00 3 7398 \N +289916 2025-09-12 11:07:20.378889+00 2025-09-12 11:07:20.378895+00 f t ADELANTO 20500.00 4 7398 \N +290285 2025-09-12 13:04:59.213918+00 2025-09-12 13:04:59.213927+00 f t SUBTOTAL 0.00 1 7408 \N +290286 2025-09-12 13:04:59.215269+00 2025-09-12 13:04:59.215275+00 f t DESCUENTO 0.00 2 7408 \N +290287 2025-09-12 13:04:59.216607+00 2025-09-12 13:04:59.216613+00 f t TOTAL 0.00 3 7408 \N +290288 2025-09-12 13:04:59.217653+00 2025-09-12 13:04:59.217659+00 f t ADELANTO 0.00 4 7408 \N +283997 2025-09-10 08:54:31.750913+00 2025-09-10 08:54:31.750923+00 f t SUBTOTAL 0.00 1 7246 \N +283998 2025-09-10 08:54:31.752756+00 2025-09-10 08:54:31.752762+00 f t DESCUENTO 0.00 2 7246 \N +283999 2025-09-10 08:54:31.753791+00 2025-09-10 08:54:31.753797+00 f t TOTAL 0.00 3 7246 \N +284000 2025-09-10 08:54:31.754762+00 2025-09-10 08:54:31.754767+00 f t ADELANTO 0.00 4 7246 \N +270045 2025-09-05 10:15:24.532746+00 2025-09-05 10:15:24.532755+00 f t SUBTOTAL 156000.00 1 6941 \N +270046 2025-09-05 10:15:24.534449+00 2025-09-05 10:15:24.534456+00 f t DESCUENTO 0.00 2 6941 \N +270047 2025-09-05 10:15:24.535673+00 2025-09-05 10:15:24.535679+00 f t TOTAL 156000.00 3 6941 \N +270048 2025-09-05 10:15:24.536604+00 2025-09-05 10:15:24.536609+00 f t ADELANTO 43000.00 4 6941 \N +284753 2025-09-10 16:44:00.715737+00 2025-09-10 16:44:00.715745+00 f t SUBTOTAL 133500.00 1 7269 \N +284754 2025-09-10 16:44:00.717451+00 2025-09-10 16:44:00.717457+00 f t DESCUENTO 0.00 2 7269 \N +284755 2025-09-10 16:44:00.718571+00 2025-09-10 16:44:00.718576+00 f t TOTAL 133500.00 3 7269 \N +284756 2025-09-10 16:44:00.719653+00 2025-09-10 16:44:00.719658+00 f t ADELANTO 28500.00 4 7269 \N +284909 2025-09-10 18:00:35.973999+00 2025-09-10 18:00:35.974014+00 f t SUBTOTAL 0.00 1 7276 \N +284910 2025-09-10 18:00:35.976655+00 2025-09-10 18:00:35.976666+00 f t DESCUENTO 0.00 2 7276 \N +284911 2025-09-10 18:00:35.97957+00 2025-09-10 18:00:35.979581+00 f t TOTAL 0.00 3 7276 \N +284912 2025-09-10 18:00:35.982883+00 2025-09-10 18:00:35.982896+00 f t ADELANTO 0.00 4 7276 \N +278765 2025-09-08 21:48:24.911765+00 2025-09-08 21:48:24.911774+00 f t SUBTOTAL 30000.00 1 7140 \N +278766 2025-09-08 21:48:24.913602+00 2025-09-08 21:48:24.913609+00 f t DESCUENTO 0.00 2 7140 \N +278767 2025-09-08 21:48:24.914831+00 2025-09-08 21:48:24.914837+00 f t TOTAL 30000.00 3 7140 \N +278768 2025-09-08 21:48:24.91603+00 2025-09-08 21:48:24.916035+00 f t ADELANTO 30000.00 4 7140 \N +272977 2025-09-06 07:39:44.012343+00 2025-09-06 07:39:44.012354+00 f t SUBTOTAL 0.00 1 7008 \N +272978 2025-09-06 07:39:44.013763+00 2025-09-06 07:39:44.01377+00 f t DESCUENTO 0.00 2 7008 \N +272979 2025-09-06 07:39:44.014985+00 2025-09-06 07:39:44.014992+00 f t TOTAL 0.00 3 7008 \N +272980 2025-09-06 07:39:44.01606+00 2025-09-06 07:39:44.016068+00 f t ADELANTO 0.00 4 7008 \N +291753 2025-09-13 00:02:36.348555+00 2025-09-13 00:02:36.348565+00 f t SUBTOTAL 0.00 1 7451 \N +291754 2025-09-13 00:02:36.350404+00 2025-09-13 00:02:36.350413+00 f t DESCUENTO 0.00 2 7451 \N +291755 2025-09-13 00:02:36.352615+00 2025-09-13 00:02:36.352624+00 f t TOTAL 0.00 3 7451 \N +291756 2025-09-13 00:02:36.3546+00 2025-09-13 00:02:36.354609+00 f t ADELANTO 0.00 4 7451 \N +292089 2025-09-13 01:41:09.697667+00 2025-09-13 01:41:09.697678+00 f t SUBTOTAL 101000.00 1 7462 \N +292090 2025-09-13 01:41:09.699901+00 2025-09-13 01:41:09.699912+00 f t DESCUENTO 0.00 2 7462 \N +292091 2025-09-13 01:41:09.70168+00 2025-09-13 01:41:09.701688+00 f t TOTAL 101000.00 3 7462 \N +292092 2025-09-13 01:41:09.703017+00 2025-09-13 01:41:09.703024+00 f t ADELANTO 22000.00 4 7462 \N +292169 2025-09-13 02:25:24.321448+00 2025-09-13 02:25:24.321455+00 f t SUBTOTAL 95000.00 1 7464 \N +292170 2025-09-13 02:25:24.3233+00 2025-09-13 02:25:24.323306+00 f t DESCUENTO 0.00 2 7464 \N +292171 2025-09-13 02:25:24.324581+00 2025-09-13 02:25:24.324588+00 f t TOTAL 95000.00 3 7464 \N +292172 2025-09-13 02:25:24.32575+00 2025-09-13 02:25:24.325755+00 f t ADELANTO 60000.00 4 7464 \N +273645 2025-09-06 16:36:11.894267+00 2025-09-06 16:36:11.894275+00 f t SUBTOTAL 75000.00 1 7025 \N +273646 2025-09-06 16:36:11.895969+00 2025-09-06 16:36:11.895976+00 f t DESCUENTO 0.00 2 7025 \N +273647 2025-09-06 16:36:11.897036+00 2025-09-06 16:36:11.897042+00 f t TOTAL 75000.00 3 7025 \N +273648 2025-09-06 16:36:11.898045+00 2025-09-06 16:36:11.898052+00 f t ADELANTO 15000.00 4 7025 \N +279617 2025-09-09 00:21:59.957322+00 2025-09-09 00:21:59.957331+00 f t SUBTOTAL 0.00 1 7150 \N +279618 2025-09-09 00:21:59.958729+00 2025-09-09 00:21:59.958735+00 f t DESCUENTO 0.00 2 7150 \N +279619 2025-09-09 00:21:59.959901+00 2025-09-09 00:21:59.959906+00 f t TOTAL 0.00 3 7150 \N +279620 2025-09-09 00:21:59.96099+00 2025-09-09 00:21:59.960995+00 f t ADELANTO 0.00 4 7150 \N +273889 2025-09-06 18:39:55.964974+00 2025-09-06 18:39:55.964983+00 f t SUBTOTAL 55000.00 1 7031 \N +273890 2025-09-06 18:39:55.96718+00 2025-09-06 18:39:55.967189+00 f t DESCUENTO 0.00 2 7031 \N +273891 2025-09-06 18:39:55.968638+00 2025-09-06 18:39:55.968645+00 f t TOTAL 55000.00 3 7031 \N +273892 2025-09-06 18:39:55.970064+00 2025-09-06 18:39:55.970072+00 f t ADELANTO 11000.00 4 7031 \N +274165 2025-09-06 19:06:12.957015+00 2025-09-06 19:06:12.957025+00 f t SUBTOTAL 30000.00 1 7032 \N +274166 2025-09-06 19:06:12.958792+00 2025-09-06 19:06:12.958799+00 f t DESCUENTO 0.00 2 7032 \N +274167 2025-09-06 19:06:12.960098+00 2025-09-06 19:06:12.960105+00 f t TOTAL 30000.00 3 7032 \N +274168 2025-09-06 19:06:12.961186+00 2025-09-06 19:06:12.961192+00 f t ADELANTO 30000.00 4 7032 \N +280401 2025-09-09 02:50:18.08082+00 2025-09-09 02:50:18.080829+00 f t SUBTOTAL 46000.00 1 7168 \N +280402 2025-09-09 02:50:18.082725+00 2025-09-09 02:50:18.082733+00 f t DESCUENTO 0.00 2 7168 \N +280403 2025-09-09 02:50:18.092951+00 2025-09-09 02:50:18.092961+00 f t TOTAL 46000.00 3 7168 \N +280404 2025-09-09 02:50:18.095027+00 2025-09-09 02:50:18.095039+00 f t ADELANTO 11000.00 4 7168 \N +274465 2025-09-07 00:05:31.040284+00 2025-09-07 00:05:31.040293+00 f t SUBTOTAL 0.00 1 7045 \N +274466 2025-09-07 00:05:31.041856+00 2025-09-07 00:05:31.041863+00 f t DESCUENTO 0.00 2 7045 \N +274467 2025-09-07 00:05:31.043082+00 2025-09-07 00:05:31.043089+00 f t TOTAL 0.00 3 7045 \N +274468 2025-09-07 00:05:31.044231+00 2025-09-07 00:05:31.044238+00 f t ADELANTO 0.00 4 7045 \N +324134 2025-09-24 22:46:44.615104+00 2025-09-24 22:46:44.615113+00 f t DESCUENTO 0.00 2 8200 \N +277165 2025-09-08 14:43:30.950214+00 2025-09-08 14:43:30.950225+00 f t SUBTOTAL 46000.00 1 7104 \N +277166 2025-09-08 14:43:30.952337+00 2025-09-08 14:43:30.952348+00 f t DESCUENTO 0.00 2 7104 \N +277167 2025-09-08 14:43:30.953782+00 2025-09-08 14:43:30.953789+00 f t TOTAL 46000.00 3 7104 \N +277168 2025-09-08 14:43:30.955068+00 2025-09-08 14:43:30.955074+00 f t ADELANTO 11000.00 4 7104 \N +274537 2025-09-07 00:13:19.167266+00 2025-09-07 00:13:19.167276+00 f t SUBTOTAL 92000.00 1 7046 \N +274538 2025-09-07 00:13:19.169383+00 2025-09-07 00:13:19.169393+00 f t DESCUENTO 0.00 2 7046 \N +274539 2025-09-07 00:13:19.178799+00 2025-09-07 00:13:19.178809+00 f t TOTAL 92000.00 3 7046 \N +274540 2025-09-07 00:13:19.180811+00 2025-09-07 00:13:19.180823+00 f t ADELANTO 20500.00 4 7046 \N +283849 2025-09-10 06:11:14.632822+00 2025-09-10 06:11:14.632831+00 f t SUBTOTAL 0.00 1 7242 \N +283850 2025-09-10 06:11:14.634611+00 2025-09-10 06:11:14.634618+00 f t DESCUENTO 0.00 2 7242 \N +283851 2025-09-10 06:11:14.635777+00 2025-09-10 06:11:14.635783+00 f t TOTAL 0.00 3 7242 \N +283852 2025-09-10 06:11:14.636793+00 2025-09-10 06:11:14.636799+00 f t ADELANTO 0.00 4 7242 \N +284381 2025-09-10 13:19:13.319779+00 2025-09-10 13:19:13.319787+00 f t SUBTOTAL 95000.00 1 7256 \N +284382 2025-09-10 13:19:13.321492+00 2025-09-10 13:19:13.3215+00 f t DESCUENTO 0.00 2 7256 \N +284383 2025-09-10 13:19:13.322529+00 2025-09-10 13:19:13.322534+00 f t TOTAL 95000.00 3 7256 \N +284384 2025-09-10 13:19:13.323484+00 2025-09-10 13:19:13.323488+00 f t ADELANTO 10000.00 4 7256 \N +278573 2025-09-08 20:43:42.563651+00 2025-09-08 20:43:42.563661+00 f t SUBTOTAL 78000.00 1 7136 \N +278574 2025-09-08 20:43:42.565147+00 2025-09-08 20:43:42.565154+00 f t DESCUENTO 0.00 2 7136 \N +274597 2025-09-07 00:26:10.464573+00 2025-09-07 00:26:10.464583+00 f t SUBTOTAL 123000.00 1 7047 \N +274598 2025-09-07 00:26:10.466125+00 2025-09-07 00:26:10.466133+00 f t DESCUENTO 0.00 2 7047 \N +274599 2025-09-07 00:26:10.467258+00 2025-09-07 00:26:10.467264+00 f t TOTAL 123000.00 3 7047 \N +274600 2025-09-07 00:26:10.468285+00 2025-09-07 00:26:10.468291+00 f t ADELANTO 24000.00 4 7047 \N +278575 2025-09-08 20:43:42.566393+00 2025-09-08 20:43:42.566404+00 f t TOTAL 78000.00 3 7136 \N +278576 2025-09-08 20:43:42.568099+00 2025-09-08 20:43:42.568108+00 f t ADELANTO 13000.00 4 7136 \N +278773 2025-09-08 22:21:58.058102+00 2025-09-08 22:21:58.058112+00 f t SUBTOTAL 0.00 1 7141 \N +278774 2025-09-08 22:21:58.059749+00 2025-09-08 22:21:58.059756+00 f t DESCUENTO 0.00 2 7141 \N +278775 2025-09-08 22:21:58.060995+00 2025-09-08 22:21:58.061+00 f t TOTAL 0.00 3 7141 \N +278776 2025-09-08 22:21:58.062577+00 2025-09-08 22:21:58.062583+00 f t ADELANTO 0.00 4 7141 \N +278897 2025-09-08 23:11:06.049121+00 2025-09-08 23:11:06.049133+00 f t SUBTOTAL 70000.00 1 7142 \N +278898 2025-09-08 23:11:06.05075+00 2025-09-08 23:11:06.050756+00 f t DESCUENTO 0.00 2 7142 \N +278899 2025-09-08 23:11:06.052359+00 2025-09-08 23:11:06.052365+00 f t TOTAL 70000.00 3 7142 \N +278900 2025-09-08 23:11:06.053504+00 2025-09-08 23:11:06.05351+00 f t ADELANTO 19000.00 4 7142 \N +274637 2025-09-07 00:30:06.25139+00 2025-09-07 00:30:06.251399+00 f t SUBTOTAL 114000.00 1 7048 \N +274638 2025-09-07 00:30:06.254519+00 2025-09-07 00:30:06.254531+00 f t DESCUENTO 0.00 2 7048 \N +274639 2025-09-07 00:30:06.256202+00 2025-09-07 00:30:06.256209+00 f t TOTAL 114000.00 3 7048 \N +274640 2025-09-07 00:30:06.257848+00 2025-09-07 00:30:06.257856+00 f t ADELANTO 24000.00 4 7048 \N +284917 2025-09-10 18:04:16.61897+00 2025-09-10 18:04:16.618983+00 f t SUBTOTAL 0.00 1 7277 \N +284918 2025-09-10 18:04:16.620684+00 2025-09-10 18:04:16.620691+00 f t DESCUENTO 0.00 2 7277 \N +284919 2025-09-10 18:04:16.621999+00 2025-09-10 18:04:16.622005+00 f t TOTAL 0.00 3 7277 \N +284920 2025-09-10 18:04:16.623265+00 2025-09-10 18:04:16.623271+00 f t ADELANTO 0.00 4 7277 \N +274677 2025-09-07 03:21:59.684987+00 2025-09-07 03:21:59.684996+00 f t SUBTOTAL 0.00 1 7049 \N +274678 2025-09-07 03:21:59.686729+00 2025-09-07 03:21:59.686736+00 f t DESCUENTO 0.00 2 7049 \N +274679 2025-09-07 03:21:59.687872+00 2025-09-07 03:21:59.68788+00 f t TOTAL 0.00 3 7049 \N +274680 2025-09-07 03:21:59.688985+00 2025-09-07 03:21:59.688991+00 f t ADELANTO 0.00 4 7049 \N +279953 2025-09-09 01:21:22.353602+00 2025-09-09 01:21:22.35361+00 f t SUBTOTAL 30000.00 1 7160 \N +279954 2025-09-09 01:21:22.355186+00 2025-09-09 01:21:22.355192+00 f t DESCUENTO 0.00 2 7160 \N +274713 2025-09-07 03:23:55.619079+00 2025-09-07 03:23:55.619088+00 f t SUBTOTAL 0.00 1 7050 \N +274714 2025-09-07 03:23:55.620787+00 2025-09-07 03:23:55.620793+00 f t DESCUENTO 0.00 2 7050 \N +274715 2025-09-07 03:23:55.621718+00 2025-09-07 03:23:55.621723+00 f t TOTAL 0.00 3 7050 \N +274716 2025-09-07 03:23:55.622586+00 2025-09-07 03:23:55.622591+00 f t ADELANTO 0.00 4 7050 \N +279955 2025-09-09 01:21:22.356299+00 2025-09-09 01:21:22.356304+00 f t TOTAL 30000.00 3 7160 \N +279956 2025-09-09 01:21:22.357181+00 2025-09-09 01:21:22.357186+00 f t ADELANTO 30000.00 4 7160 \N +286273 2025-09-10 22:23:29.473174+00 2025-09-10 22:23:29.473182+00 f t SUBTOTAL 46000.00 1 7305 \N +286274 2025-09-10 22:23:29.475222+00 2025-09-10 22:23:29.47523+00 f t DESCUENTO 0.00 2 7305 \N +286275 2025-09-10 22:23:29.476434+00 2025-09-10 22:23:29.47644+00 f t TOTAL 46000.00 3 7305 \N +286276 2025-09-10 22:23:29.477491+00 2025-09-10 22:23:29.477496+00 f t ADELANTO 11000.00 4 7305 \N +286333 2025-09-10 22:44:26.958372+00 2025-09-10 22:44:26.958382+00 f t SUBTOTAL 55000.00 1 7307 \N +286334 2025-09-10 22:44:26.96039+00 2025-09-10 22:44:26.960398+00 f t DESCUENTO 0.00 2 7307 \N +286335 2025-09-10 22:44:26.96175+00 2025-09-10 22:44:26.961756+00 f t TOTAL 55000.00 3 7307 \N +286336 2025-09-10 22:44:26.96319+00 2025-09-10 22:44:26.963199+00 f t ADELANTO 11000.00 4 7307 \N +286389 2025-09-10 23:07:21.324069+00 2025-09-10 23:07:21.324078+00 f t SUBTOTAL 78000.00 1 7308 \N +286390 2025-09-10 23:07:21.326245+00 2025-09-10 23:07:21.326254+00 f t DESCUENTO 0.00 2 7308 \N +286391 2025-09-10 23:07:21.327785+00 2025-09-10 23:07:21.327793+00 f t TOTAL 78000.00 3 7308 \N +286392 2025-09-10 23:07:21.329178+00 2025-09-10 23:07:21.329186+00 f t ADELANTO 21500.00 4 7308 \N +286449 2025-09-11 00:39:44.787588+00 2025-09-11 00:39:44.787598+00 f t SUBTOTAL 0.00 1 7310 \N +286450 2025-09-11 00:39:44.790022+00 2025-09-11 00:39:44.790029+00 f t DESCUENTO 0.00 2 7310 \N +286451 2025-09-11 00:39:44.791558+00 2025-09-11 00:39:44.791565+00 f t TOTAL 0.00 3 7310 \N +286452 2025-09-11 00:39:44.793122+00 2025-09-11 00:39:44.793129+00 f t ADELANTO 0.00 4 7310 \N +274757 2025-09-07 03:30:52.85968+00 2025-09-07 03:30:52.859689+00 f t SUBTOTAL 0.00 1 7051 \N +274758 2025-09-07 03:30:52.861363+00 2025-09-07 03:30:52.861369+00 f t DESCUENTO 0.00 2 7051 \N +274759 2025-09-07 03:30:52.862718+00 2025-09-07 03:30:52.862724+00 f t TOTAL 0.00 3 7051 \N +274760 2025-09-07 03:30:52.863812+00 2025-09-07 03:30:52.863819+00 f t ADELANTO 0.00 4 7051 \N +274765 2025-09-07 04:17:42.111558+00 2025-09-07 04:17:42.111571+00 f t SUBTOTAL 0.00 1 7052 \N +274766 2025-09-07 04:17:42.113794+00 2025-09-07 04:17:42.113807+00 f t DESCUENTO 0.00 2 7052 \N +274767 2025-09-07 04:17:42.115772+00 2025-09-07 04:17:42.115784+00 f t TOTAL 0.00 3 7052 \N +274768 2025-09-07 04:17:42.117619+00 2025-09-07 04:17:42.117631+00 f t ADELANTO 0.00 4 7052 \N +280521 2025-09-09 03:19:50.148654+00 2025-09-09 03:19:50.148663+00 f t SUBTOTAL 0.00 1 7173 \N +280522 2025-09-09 03:19:50.150582+00 2025-09-09 03:19:50.15059+00 f t DESCUENTO 0.00 2 7173 \N +280523 2025-09-09 03:19:50.151761+00 2025-09-09 03:19:50.151767+00 f t TOTAL 0.00 3 7173 \N +276685 2025-09-08 11:23:44.314752+00 2025-09-08 11:23:44.31476+00 f t SUBTOTAL 31500.00 1 7094 \N +276686 2025-09-08 11:23:44.316573+00 2025-09-08 11:23:44.316581+00 f t DESCUENTO 0.00 2 7094 \N +276687 2025-09-08 11:23:44.3177+00 2025-09-08 11:23:44.317706+00 f t TOTAL 31500.00 3 7094 \N +276688 2025-09-08 11:23:44.318676+00 2025-09-08 11:23:44.318681+00 f t ADELANTO 31500.00 4 7094 \N +283365 2025-09-10 00:03:17.545362+00 2025-09-10 00:03:17.54537+00 f t SUBTOTAL 76000.00 1 7232 \N +283366 2025-09-10 00:03:17.54723+00 2025-09-10 00:03:17.547238+00 f t DESCUENTO 0.00 2 7232 \N +283367 2025-09-10 00:03:17.548561+00 2025-09-10 00:03:17.548567+00 f t TOTAL 76000.00 3 7232 \N +283368 2025-09-10 00:03:17.549686+00 2025-09-10 00:03:17.549691+00 f t ADELANTO 41000.00 4 7232 \N +277329 2025-09-08 15:08:05.544722+00 2025-09-08 15:08:05.544731+00 f t SUBTOTAL 70000.00 1 7106 \N +277330 2025-09-08 15:08:05.547258+00 2025-09-08 15:08:05.547271+00 f t DESCUENTO 0.00 2 7106 \N +277331 2025-09-08 15:08:05.54902+00 2025-09-08 15:08:05.54903+00 f t TOTAL 70000.00 3 7106 \N +277332 2025-09-08 15:08:05.550641+00 2025-09-08 15:08:05.55065+00 f t ADELANTO 19000.00 4 7106 \N +283625 2025-09-10 01:36:48.473308+00 2025-09-10 01:36:48.473318+00 f t SUBTOTAL 0.00 1 7239 \N +283626 2025-09-10 01:36:48.475088+00 2025-09-10 01:36:48.475095+00 f t DESCUENTO 0.00 2 7239 \N +283627 2025-09-10 01:36:48.476131+00 2025-09-10 01:36:48.476137+00 f t TOTAL 0.00 3 7239 \N +283628 2025-09-10 01:36:48.477009+00 2025-09-10 01:36:48.477014+00 f t ADELANTO 0.00 4 7239 \N +274849 2025-09-07 04:30:20.516503+00 2025-09-07 04:30:20.516515+00 f t SUBTOTAL 75000.00 1 7053 \N +274850 2025-09-07 04:30:20.518357+00 2025-09-07 04:30:20.518366+00 f t DESCUENTO 0.00 2 7053 \N +274851 2025-09-07 04:30:20.519586+00 2025-09-07 04:30:20.519594+00 f t TOTAL 75000.00 3 7053 \N +274852 2025-09-07 04:30:20.520712+00 2025-09-07 04:30:20.520719+00 f t ADELANTO 15000.00 4 7053 \N +274865 2025-09-07 04:43:16.114341+00 2025-09-07 04:43:16.114351+00 f t SUBTOTAL 0.00 1 7054 \N +274866 2025-09-07 04:43:16.116841+00 2025-09-07 04:43:16.11685+00 f t DESCUENTO 0.00 2 7054 \N +274867 2025-09-07 04:43:16.118388+00 2025-09-07 04:43:16.118394+00 f t TOTAL 0.00 3 7054 \N +274868 2025-09-07 04:43:16.119743+00 2025-09-07 04:43:16.119749+00 f t ADELANTO 0.00 4 7054 \N +278165 2025-09-08 19:50:58.446067+00 2025-09-08 19:50:58.446075+00 f t SUBTOTAL 55000.00 1 7129 \N +278166 2025-09-08 19:50:58.447667+00 2025-09-08 19:50:58.447674+00 f t DESCUENTO 0.00 2 7129 \N +278167 2025-09-08 19:50:58.448937+00 2025-09-08 19:50:58.448944+00 f t TOTAL 55000.00 3 7129 \N +274873 2025-09-07 06:15:25.278523+00 2025-09-07 06:15:25.278532+00 f t SUBTOTAL 0.00 1 7055 \N +274874 2025-09-07 06:15:25.280031+00 2025-09-07 06:15:25.280039+00 f t DESCUENTO 0.00 2 7055 \N +274875 2025-09-07 06:15:25.281234+00 2025-09-07 06:15:25.281242+00 f t TOTAL 0.00 3 7055 \N +274876 2025-09-07 06:15:25.282461+00 2025-09-07 06:15:25.282466+00 f t ADELANTO 0.00 4 7055 \N +278168 2025-09-08 19:50:58.450197+00 2025-09-08 19:50:58.450202+00 f t ADELANTO 11000.00 4 7129 \N +284149 2025-09-10 11:37:27.208638+00 2025-09-10 11:37:27.208647+00 f t SUBTOTAL 30000.00 1 7248 \N +284150 2025-09-10 11:37:27.210447+00 2025-09-10 11:37:27.210454+00 f t DESCUENTO 0.00 2 7248 \N +284151 2025-09-10 11:37:27.211942+00 2025-09-10 11:37:27.211953+00 f t TOTAL 30000.00 3 7248 \N +284152 2025-09-10 11:37:27.213546+00 2025-09-10 11:37:27.213553+00 f t ADELANTO 30000.00 4 7248 \N +284389 2025-09-10 13:58:22.354909+00 2025-09-10 13:58:22.354922+00 f t SUBTOTAL 0.00 1 7257 \N +284390 2025-09-10 13:58:22.356789+00 2025-09-10 13:58:22.3568+00 f t DESCUENTO 0.00 2 7257 \N +284391 2025-09-10 13:58:22.358287+00 2025-09-10 13:58:22.358296+00 f t TOTAL 0.00 3 7257 \N +284392 2025-09-10 13:58:22.35953+00 2025-09-10 13:58:22.359538+00 f t ADELANTO 0.00 4 7257 \N +284537 2025-09-10 15:28:58.641264+00 2025-09-10 15:28:58.641273+00 f t SUBTOTAL 70000.00 1 7261 \N +284538 2025-09-10 15:28:58.642985+00 2025-09-10 15:28:58.642993+00 f t DESCUENTO 0.00 2 7261 \N +284539 2025-09-10 15:28:58.644168+00 2025-09-10 15:28:58.644173+00 f t TOTAL 70000.00 3 7261 \N +284540 2025-09-10 15:28:58.645194+00 2025-09-10 15:28:58.645199+00 f t ADELANTO 19000.00 4 7261 \N +284837 2025-09-10 17:09:55.597804+00 2025-09-10 17:09:55.597817+00 f t SUBTOTAL 77500.00 1 7271 \N +284838 2025-09-10 17:09:55.600064+00 2025-09-10 17:09:55.600074+00 f t DESCUENTO 0.00 2 7271 \N +284839 2025-09-10 17:09:55.60176+00 2025-09-10 17:09:55.601772+00 f t TOTAL 77500.00 3 7271 \N +284840 2025-09-10 17:09:55.603422+00 2025-09-10 17:09:55.603431+00 f t ADELANTO 42500.00 4 7271 \N +284925 2025-09-10 18:07:26.773886+00 2025-09-10 18:07:26.773896+00 f t SUBTOTAL 0.00 1 7278 \N +284926 2025-09-10 18:07:26.775336+00 2025-09-10 18:07:26.775345+00 f t DESCUENTO 0.00 2 7278 \N +284927 2025-09-10 18:07:26.777215+00 2025-09-10 18:07:26.777222+00 f t TOTAL 0.00 3 7278 \N +284928 2025-09-10 18:07:26.778928+00 2025-09-10 18:07:26.778935+00 f t ADELANTO 0.00 4 7278 \N +279273 2025-09-08 23:33:24.170826+00 2025-09-08 23:33:24.170836+00 f t SUBTOTAL 80000.00 1 7144 \N +279274 2025-09-08 23:33:24.172519+00 2025-09-08 23:33:24.172526+00 f t DESCUENTO 0.00 2 7144 \N +279275 2025-09-08 23:33:24.1739+00 2025-09-08 23:33:24.173906+00 f t TOTAL 80000.00 3 7144 \N +274957 2025-09-07 11:03:07.684451+00 2025-09-07 11:03:07.684465+00 f t SUBTOTAL 46000.00 1 7056 \N +274958 2025-09-07 11:03:07.687376+00 2025-09-07 11:03:07.687386+00 f t DESCUENTO 0.00 2 7056 \N +274959 2025-09-07 11:03:07.689288+00 2025-09-07 11:03:07.689298+00 f t TOTAL 46000.00 3 7056 \N +274960 2025-09-07 11:03:07.690917+00 2025-09-07 11:03:07.690926+00 f t ADELANTO 11000.00 4 7056 \N +279276 2025-09-08 23:33:24.174987+00 2025-09-08 23:33:24.174993+00 f t ADELANTO 45000.00 4 7144 \N +274989 2025-09-07 12:55:24.368228+00 2025-09-07 12:55:24.368237+00 f t SUBTOTAL 70000.00 1 7057 \N +274990 2025-09-07 12:55:24.369814+00 2025-09-07 12:55:24.369822+00 f t DESCUENTO 0.00 2 7057 \N +274991 2025-09-07 12:55:24.371163+00 2025-09-07 12:55:24.371171+00 f t TOTAL 70000.00 3 7057 \N +274992 2025-09-07 12:55:24.37231+00 2025-09-07 12:55:24.372316+00 f t ADELANTO 19000.00 4 7057 \N +285897 2025-09-10 20:14:56.007413+00 2025-09-10 20:14:56.007422+00 f t SUBTOTAL 75000.00 1 7296 \N +285898 2025-09-10 20:14:56.008969+00 2025-09-10 20:14:56.008976+00 f t DESCUENTO 0.00 2 7296 \N +285899 2025-09-10 20:14:56.009933+00 2025-09-10 20:14:56.009938+00 f t TOTAL 75000.00 3 7296 \N +285900 2025-09-10 20:14:56.010834+00 2025-09-10 20:14:56.010841+00 f t ADELANTO 15000.00 4 7296 \N +275033 2025-09-07 13:50:36.57633+00 2025-09-07 13:50:36.57634+00 f t SUBTOTAL 0.00 1 7058 \N +275034 2025-09-07 13:50:36.578122+00 2025-09-07 13:50:36.578129+00 f t DESCUENTO 0.00 2 7058 \N +275035 2025-09-07 13:50:36.579203+00 2025-09-07 13:50:36.579212+00 f t TOTAL 0.00 3 7058 \N +275036 2025-09-07 13:50:36.580618+00 2025-09-07 13:50:36.580628+00 f t ADELANTO 0.00 4 7058 \N +275053 2025-09-07 13:54:29.645506+00 2025-09-07 13:54:29.645516+00 f t SUBTOTAL 0.00 1 7059 \N +275054 2025-09-07 13:54:29.647639+00 2025-09-07 13:54:29.647648+00 f t DESCUENTO 0.00 2 7059 \N +275055 2025-09-07 13:54:29.649126+00 2025-09-07 13:54:29.649133+00 f t TOTAL 0.00 3 7059 \N +275056 2025-09-07 13:54:29.650534+00 2025-09-07 13:54:29.650541+00 f t ADELANTO 0.00 4 7059 \N +275061 2025-09-07 13:58:01.930098+00 2025-09-07 13:58:01.930113+00 f t SUBTOTAL 0.00 1 7060 \N +275062 2025-09-07 13:58:01.93199+00 2025-09-07 13:58:01.932001+00 f t DESCUENTO 0.00 2 7060 \N +275063 2025-09-07 13:58:01.939838+00 2025-09-07 13:58:01.939848+00 f t TOTAL 0.00 3 7060 \N +275064 2025-09-07 13:58:01.943121+00 2025-09-07 13:58:01.943158+00 f t ADELANTO 0.00 4 7060 \N +331402 2025-09-27 07:34:40.3156+00 2025-09-27 07:34:40.315607+00 f t DESCUENTO 0.00 2 8380 \N +331403 2025-09-27 07:34:40.316685+00 2025-09-27 07:34:40.31669+00 f t TOTAL 55000.00 3 8380 \N +331404 2025-09-27 07:34:40.31783+00 2025-09-27 07:34:40.317835+00 f t ADELANTO 11000.00 4 8380 \N +289705 2025-09-12 03:36:44.061794+00 2025-09-12 03:36:44.061805+00 f t SUBTOTAL 30000.00 1 7389 \N +283105 2025-09-09 21:31:43.555493+00 2025-09-09 21:31:43.555502+00 f t SUBTOTAL 0.00 1 7224 \N +283106 2025-09-09 21:31:43.558451+00 2025-09-09 21:31:43.55846+00 f t DESCUENTO 0.00 2 7224 \N +283107 2025-09-09 21:31:43.560062+00 2025-09-09 21:31:43.560072+00 f t TOTAL 0.00 3 7224 \N +283108 2025-09-09 21:31:43.564184+00 2025-09-09 21:31:43.564196+00 f t ADELANTO 0.00 4 7224 \N +283193 2025-09-09 21:36:33.18332+00 2025-09-09 21:36:33.183333+00 f t SUBTOTAL 0.00 1 7226 \N +283194 2025-09-09 21:36:33.186217+00 2025-09-09 21:36:33.186229+00 f t DESCUENTO 0.00 2 7226 \N +283195 2025-09-09 21:36:33.188174+00 2025-09-09 21:36:33.188185+00 f t TOTAL 0.00 3 7226 \N +283196 2025-09-09 21:36:33.189862+00 2025-09-09 21:36:33.189873+00 f t ADELANTO 0.00 4 7226 \N +289706 2025-09-12 03:36:44.063605+00 2025-09-12 03:36:44.063614+00 f t DESCUENTO 0.00 2 7389 \N +289707 2025-09-12 03:36:44.064966+00 2025-09-12 03:36:44.064975+00 f t TOTAL 30000.00 3 7389 \N +289708 2025-09-12 03:36:44.066514+00 2025-09-12 03:36:44.066521+00 f t ADELANTO 30000.00 4 7389 \N +278241 2025-09-08 19:55:16.70882+00 2025-09-08 19:55:16.708829+00 f t SUBTOTAL 0.00 1 7131 \N +278242 2025-09-08 19:55:16.710925+00 2025-09-08 19:55:16.710936+00 f t DESCUENTO 0.00 2 7131 \N +278243 2025-09-08 19:55:16.712182+00 2025-09-08 19:55:16.712187+00 f t TOTAL 0.00 3 7131 \N +278244 2025-09-08 19:55:16.713145+00 2025-09-08 19:55:16.713151+00 f t ADELANTO 0.00 4 7131 \N +284545 2025-09-10 15:30:15.325129+00 2025-09-10 15:30:15.325145+00 f t SUBTOTAL 0.00 1 7262 \N +284546 2025-09-10 15:30:15.326806+00 2025-09-10 15:30:15.326813+00 f t DESCUENTO 0.00 2 7262 \N +284547 2025-09-10 15:30:15.328484+00 2025-09-10 15:30:15.328491+00 f t TOTAL 0.00 3 7262 \N +284548 2025-09-10 15:30:15.329884+00 2025-09-10 15:30:15.32989+00 f t ADELANTO 0.00 4 7262 \N +278649 2025-09-08 21:12:56.216496+00 2025-09-08 21:12:56.21651+00 f t SUBTOTAL 70000.00 1 7138 \N +278650 2025-09-08 21:12:56.218606+00 2025-09-08 21:12:56.218617+00 f t DESCUENTO 0.00 2 7138 \N +278651 2025-09-08 21:12:56.220351+00 2025-09-08 21:12:56.220363+00 f t TOTAL 70000.00 3 7138 \N +278652 2025-09-08 21:12:56.221817+00 2025-09-08 21:12:56.221826+00 f t ADELANTO 19000.00 4 7138 \N +284845 2025-09-10 17:22:25.136207+00 2025-09-10 17:22:25.13622+00 f t SUBTOTAL 0.00 1 7273 \N +284846 2025-09-10 17:22:25.137998+00 2025-09-10 17:22:25.138009+00 f t DESCUENTO 0.00 2 7273 \N +284847 2025-09-10 17:22:25.139683+00 2025-09-10 17:22:25.139694+00 f t TOTAL 0.00 3 7273 \N +284848 2025-09-10 17:22:25.141242+00 2025-09-10 17:22:25.141252+00 f t ADELANTO 0.00 4 7273 \N +275213 2025-09-07 15:17:51.027967+00 2025-09-07 15:17:51.027976+00 f t SUBTOTAL 0.00 1 7061 \N +275214 2025-09-07 15:17:51.030466+00 2025-09-07 15:17:51.030474+00 f t DESCUENTO 0.00 2 7061 \N +275215 2025-09-07 15:17:51.032861+00 2025-09-07 15:17:51.03287+00 f t TOTAL 0.00 3 7061 \N +275216 2025-09-07 15:17:51.034542+00 2025-09-07 15:17:51.034556+00 f t ADELANTO 0.00 4 7061 \N +275221 2025-09-07 15:32:53.129768+00 2025-09-07 15:32:53.129774+00 f t SUBTOTAL 0.00 1 7062 \N +275222 2025-09-07 15:32:53.13079+00 2025-09-07 15:32:53.130796+00 f t DESCUENTO 0.00 2 7062 \N +275223 2025-09-07 15:32:53.131793+00 2025-09-07 15:32:53.131798+00 f t TOTAL 0.00 3 7062 \N +275224 2025-09-07 15:32:53.132596+00 2025-09-07 15:32:53.132601+00 f t ADELANTO 0.00 4 7062 \N +279149 2025-09-08 23:26:46.32015+00 2025-09-08 23:26:46.320161+00 f t SUBTOTAL 70000.00 1 7143 \N +279150 2025-09-08 23:26:46.322385+00 2025-09-08 23:26:46.322393+00 f t DESCUENTO 0.00 2 7143 \N +279151 2025-09-08 23:26:46.323891+00 2025-09-08 23:26:46.323898+00 f t TOTAL 70000.00 3 7143 \N +279152 2025-09-08 23:26:46.325176+00 2025-09-08 23:26:46.325184+00 f t ADELANTO 19000.00 4 7143 \N +285069 2025-09-10 19:08:11.791301+00 2025-09-10 19:08:11.791314+00 f t SUBTOTAL 102000.00 1 7281 \N +285070 2025-09-10 19:08:11.793293+00 2025-09-10 19:08:11.793304+00 f t DESCUENTO 0.00 2 7281 \N +285071 2025-09-10 19:08:11.794669+00 2025-09-10 19:08:11.794677+00 f t TOTAL 102000.00 3 7281 \N +285072 2025-09-10 19:08:11.79594+00 2025-09-10 19:08:11.795949+00 f t ADELANTO 47000.00 4 7281 \N +275261 2025-09-07 15:48:42.558597+00 2025-09-07 15:48:42.558607+00 f t SUBTOTAL 54000.00 1 7063 \N +275262 2025-09-07 15:48:42.560451+00 2025-09-07 15:48:42.560458+00 f t DESCUENTO 0.00 2 7063 \N +275263 2025-09-07 15:48:42.561745+00 2025-09-07 15:48:42.56175+00 f t TOTAL 54000.00 3 7063 \N +275264 2025-09-07 15:48:42.562935+00 2025-09-07 15:48:42.562941+00 f t ADELANTO 13500.00 4 7063 \N +285485 2025-09-10 19:46:33.754671+00 2025-09-10 19:46:33.75468+00 f t SUBTOTAL 0.00 1 7285 \N +285486 2025-09-10 19:46:33.756418+00 2025-09-10 19:46:33.756426+00 f t DESCUENTO 0.00 2 7285 \N +285487 2025-09-10 19:46:33.757501+00 2025-09-10 19:46:33.757507+00 f t TOTAL 0.00 3 7285 \N +285488 2025-09-10 19:46:33.758514+00 2025-09-10 19:46:33.75852+00 f t ADELANTO 0.00 4 7285 \N +285965 2025-09-10 20:17:10.146794+00 2025-09-10 20:17:10.146802+00 f t SUBTOTAL 70000.00 1 7298 \N +285966 2025-09-10 20:17:10.14839+00 2025-09-10 20:17:10.148397+00 f t DESCUENTO 0.00 2 7298 \N +285967 2025-09-10 20:17:10.149513+00 2025-09-10 20:17:10.149519+00 f t TOTAL 70000.00 3 7298 \N +285968 2025-09-10 20:17:10.150461+00 2025-09-10 20:17:10.150466+00 f t ADELANTO 19000.00 4 7298 \N +275301 2025-09-07 15:53:10.697562+00 2025-09-07 15:53:10.697573+00 f t SUBTOTAL 55000.00 1 7064 \N +275302 2025-09-07 15:53:10.699769+00 2025-09-07 15:53:10.699786+00 f t DESCUENTO 0.00 2 7064 \N +275303 2025-09-07 15:53:10.701602+00 2025-09-07 15:53:10.70161+00 f t TOTAL 55000.00 3 7064 \N +275304 2025-09-07 15:53:10.703252+00 2025-09-07 15:53:10.703261+00 f t ADELANTO 11000.00 4 7064 \N +275309 2025-09-07 15:53:22.138639+00 2025-09-07 15:53:22.138653+00 f t SUBTOTAL 0.00 1 7065 \N +275310 2025-09-07 15:53:22.14111+00 2025-09-07 15:53:22.141123+00 f t DESCUENTO 0.00 2 7065 \N +275311 2025-09-07 15:53:22.142517+00 2025-09-07 15:53:22.142527+00 f t TOTAL 0.00 3 7065 \N +275312 2025-09-07 15:53:22.143818+00 2025-09-07 15:53:22.143827+00 f t ADELANTO 0.00 4 7065 \N +286153 2025-09-10 21:27:47.051521+00 2025-09-10 21:27:47.05153+00 f t SUBTOTAL 0.00 1 7301 \N +286154 2025-09-10 21:27:47.053508+00 2025-09-10 21:27:47.053516+00 f t DESCUENTO 0.00 2 7301 \N +286155 2025-09-10 21:27:47.054959+00 2025-09-10 21:27:47.054969+00 f t TOTAL 0.00 3 7301 \N +286156 2025-09-10 21:27:47.056148+00 2025-09-10 21:27:47.056153+00 f t ADELANTO 0.00 4 7301 \N +275337 2025-09-07 15:54:26.662769+00 2025-09-07 15:54:26.662778+00 f t SUBTOTAL 70000.00 1 7066 \N +275338 2025-09-07 15:54:26.664488+00 2025-09-07 15:54:26.664496+00 f t DESCUENTO 0.00 2 7066 \N +275339 2025-09-07 15:54:26.665945+00 2025-09-07 15:54:26.665952+00 f t TOTAL 70000.00 3 7066 \N +275340 2025-09-07 15:54:26.667169+00 2025-09-07 15:54:26.667176+00 f t ADELANTO 19000.00 4 7066 \N +280469 2025-09-09 03:08:45.230327+00 2025-09-09 03:08:45.230335+00 f t SUBTOTAL 55000.00 1 7169 \N +280470 2025-09-09 03:08:45.232205+00 2025-09-09 03:08:45.232216+00 f t DESCUENTO 0.00 2 7169 \N +280471 2025-09-09 03:08:45.233864+00 2025-09-09 03:08:45.233874+00 f t TOTAL 55000.00 3 7169 \N +280472 2025-09-09 03:08:45.235462+00 2025-09-09 03:08:45.235474+00 f t ADELANTO 15000.00 4 7169 \N +280524 2025-09-09 03:19:50.152793+00 2025-09-09 03:19:50.152798+00 f t ADELANTO 0.00 4 7173 \N +290553 2025-09-12 14:50:06.002188+00 2025-09-12 14:50:06.0022+00 f t SUBTOTAL 72500.00 1 7417 \N +290554 2025-09-12 14:50:06.005122+00 2025-09-12 14:50:06.005134+00 f t DESCUENTO 0.00 2 7417 \N +290555 2025-09-12 14:50:06.007638+00 2025-09-12 14:50:06.007649+00 f t TOTAL 72500.00 3 7417 \N +290556 2025-09-12 14:50:06.009791+00 2025-09-12 14:50:06.009802+00 f t ADELANTO 72500.00 4 7417 \N +290909 2025-09-12 18:10:31.907314+00 2025-09-12 18:10:31.907322+00 f t SUBTOTAL 70000.00 1 7430 \N +290910 2025-09-12 18:10:31.909124+00 2025-09-12 18:10:31.90913+00 f t DESCUENTO 0.00 2 7430 \N +290911 2025-09-12 18:10:31.91024+00 2025-09-12 18:10:31.910245+00 f t TOTAL 70000.00 3 7430 \N +290912 2025-09-12 18:10:31.911359+00 2025-09-12 18:10:31.911364+00 f t ADELANTO 19000.00 4 7430 \N +291241 2025-09-12 19:22:48.149175+00 2025-09-12 19:22:48.149184+00 f t SUBTOTAL 78000.00 1 7437 \N +291242 2025-09-12 19:22:48.150689+00 2025-09-12 19:22:48.150696+00 f t DESCUENTO 0.00 2 7437 \N +291243 2025-09-12 19:22:48.151753+00 2025-09-12 19:22:48.15176+00 f t TOTAL 78000.00 3 7437 \N +291244 2025-09-12 19:22:48.152634+00 2025-09-12 19:22:48.152639+00 f t ADELANTO 21500.00 4 7437 \N +284553 2025-09-10 15:30:31.852741+00 2025-09-10 15:30:31.85275+00 f t SUBTOTAL 0.00 1 7263 \N +284554 2025-09-10 15:30:31.853944+00 2025-09-10 15:30:31.85395+00 f t DESCUENTO 0.00 2 7263 \N +284555 2025-09-10 15:30:31.854964+00 2025-09-10 15:30:31.85497+00 f t TOTAL 0.00 3 7263 \N +284556 2025-09-10 15:30:31.855918+00 2025-09-10 15:30:31.855923+00 f t ADELANTO 0.00 4 7263 \N +297917 2025-09-15 16:07:25.700055+00 2025-09-15 16:07:25.700067+00 f t SUBTOTAL 0.00 1 7556 \N +297918 2025-09-15 16:07:25.703983+00 2025-09-15 16:07:25.703992+00 f t DESCUENTO 0.00 2 7556 \N +297919 2025-09-15 16:07:25.705613+00 2025-09-15 16:07:25.705621+00 f t TOTAL 0.00 3 7556 \N +297920 2025-09-15 16:07:25.707409+00 2025-09-15 16:07:25.707416+00 f t ADELANTO 0.00 4 7556 \N +275493 2025-09-07 17:05:59.625479+00 2025-09-07 17:05:59.625491+00 f t SUBTOTAL 55000.00 1 7067 \N +275494 2025-09-07 17:05:59.627295+00 2025-09-07 17:05:59.627306+00 f t DESCUENTO 0.00 2 7067 \N +275495 2025-09-07 17:05:59.62877+00 2025-09-07 17:05:59.628779+00 f t TOTAL 55000.00 3 7067 \N +275496 2025-09-07 17:05:59.629895+00 2025-09-07 17:05:59.629902+00 f t ADELANTO 11000.00 4 7067 \N +298361 2025-09-15 19:23:46.506691+00 2025-09-15 19:23:46.506705+00 f t SUBTOTAL 54000.00 1 7567 \N +298362 2025-09-15 19:23:46.508968+00 2025-09-15 19:23:46.508979+00 f t DESCUENTO 0.00 2 7567 \N +292097 2025-09-13 02:19:53.142906+00 2025-09-13 02:19:53.142913+00 f t SUBTOTAL 0.00 1 7463 \N +292098 2025-09-13 02:19:53.144123+00 2025-09-13 02:19:53.14413+00 f t DESCUENTO 0.00 2 7463 \N +292099 2025-09-13 02:19:53.145434+00 2025-09-13 02:19:53.145439+00 f t TOTAL 0.00 3 7463 \N +292100 2025-09-13 02:19:53.146314+00 2025-09-13 02:19:53.146319+00 f t ADELANTO 0.00 4 7463 \N +298363 2025-09-15 19:23:46.510447+00 2025-09-15 19:23:46.510456+00 f t TOTAL 54000.00 3 7567 \N +298364 2025-09-15 19:23:46.513686+00 2025-09-15 19:23:46.513695+00 f t ADELANTO 13500.00 4 7567 \N +292317 2025-09-13 11:57:39.848055+00 2025-09-13 11:57:39.848063+00 f t SUBTOTAL 68000.00 1 7469 \N +292318 2025-09-13 11:57:39.849905+00 2025-09-13 11:57:39.849913+00 f t DESCUENTO 0.00 2 7469 \N +292319 2025-09-13 11:57:39.850998+00 2025-09-13 11:57:39.851003+00 f t TOTAL 68000.00 3 7469 \N +292320 2025-09-13 11:57:39.852394+00 2025-09-13 11:57:39.852401+00 f t ADELANTO 13000.00 4 7469 \N +275533 2025-09-07 17:59:30.08491+00 2025-09-07 17:59:30.084919+00 f t SUBTOTAL 78000.00 1 7068 \N +275534 2025-09-07 17:59:30.086522+00 2025-09-07 17:59:30.08653+00 f t DESCUENTO 0.00 2 7068 \N +275535 2025-09-07 17:59:30.087953+00 2025-09-07 17:59:30.08796+00 f t TOTAL 78000.00 3 7068 \N +275536 2025-09-07 17:59:30.089097+00 2025-09-07 17:59:30.089102+00 f t ADELANTO 21500.00 4 7068 \N +279749 2025-09-09 00:39:19.441649+00 2025-09-09 00:39:19.44166+00 f t SUBTOTAL 70000.00 1 7154 \N +279750 2025-09-09 00:39:19.443698+00 2025-09-09 00:39:19.443705+00 f t DESCUENTO 0.00 2 7154 \N +279751 2025-09-09 00:39:19.444888+00 2025-09-09 00:39:19.444894+00 f t TOTAL 70000.00 3 7154 \N +279752 2025-09-09 00:39:19.445832+00 2025-09-09 00:39:19.445837+00 f t ADELANTO 19000.00 4 7154 \N +292761 2025-09-13 14:48:23.843596+00 2025-09-13 14:48:23.843605+00 f t SUBTOTAL 115000.00 1 7479 \N +292762 2025-09-13 14:48:23.845651+00 2025-09-13 14:48:23.84566+00 f t DESCUENTO 0.00 2 7479 \N +292763 2025-09-13 14:48:23.847051+00 2025-09-13 14:48:23.847061+00 f t TOTAL 115000.00 3 7479 \N +292764 2025-09-13 14:48:23.848502+00 2025-09-13 14:48:23.848508+00 f t ADELANTO 25000.00 4 7479 \N +286033 2025-09-10 21:02:41.485788+00 2025-09-10 21:02:41.4858+00 f t SUBTOTAL 210000.00 1 7299 \N +286034 2025-09-10 21:02:41.487595+00 2025-09-10 21:02:41.487603+00 f t DESCUENTO 0.00 2 7299 \N +286035 2025-09-10 21:02:41.489056+00 2025-09-10 21:02:41.489062+00 f t TOTAL 210000.00 3 7299 \N +286036 2025-09-10 21:02:41.490537+00 2025-09-10 21:02:41.490544+00 f t ADELANTO 57000.00 4 7299 \N +280069 2025-09-09 01:59:11.563352+00 2025-09-09 01:59:11.563363+00 f t SUBTOTAL 55000.00 1 7162 \N +280070 2025-09-09 01:59:11.565517+00 2025-09-09 01:59:11.565526+00 f t DESCUENTO 0.00 2 7162 \N +280071 2025-09-09 01:59:11.567195+00 2025-09-09 01:59:11.567207+00 f t TOTAL 55000.00 3 7162 \N +280072 2025-09-09 01:59:11.568748+00 2025-09-09 01:59:11.568758+00 f t ADELANTO 11000.00 4 7162 \N +292857 2025-09-13 16:35:29.083664+00 2025-09-13 16:35:29.083673+00 f t SUBTOTAL 0.00 1 7481 \N +292858 2025-09-13 16:35:29.08589+00 2025-09-13 16:35:29.085897+00 f t DESCUENTO 0.00 2 7481 \N +292859 2025-09-13 16:35:29.087125+00 2025-09-13 16:35:29.087146+00 f t TOTAL 0.00 3 7481 \N +292860 2025-09-13 16:35:29.088262+00 2025-09-13 16:35:29.088268+00 f t ADELANTO 0.00 4 7481 \N +292905 2025-09-13 16:59:00.854471+00 2025-09-13 16:59:00.854482+00 f t SUBTOTAL 55000.00 1 7482 \N +292906 2025-09-13 16:59:00.856687+00 2025-09-13 16:59:00.856697+00 f t DESCUENTO 0.00 2 7482 \N +292907 2025-09-13 16:59:00.858131+00 2025-09-13 16:59:00.85814+00 f t TOTAL 55000.00 3 7482 \N +292908 2025-09-13 16:59:00.85946+00 2025-09-13 16:59:00.859468+00 f t ADELANTO 11000.00 4 7482 \N +275593 2025-09-07 18:15:55.476365+00 2025-09-07 18:15:55.476376+00 f t SUBTOTAL 99500.00 1 7069 \N +275594 2025-09-07 18:15:55.478197+00 2025-09-07 18:15:55.478205+00 f t DESCUENTO 0.00 2 7069 \N +275595 2025-09-07 18:15:55.479761+00 2025-09-07 18:15:55.479771+00 f t TOTAL 99500.00 3 7069 \N +275596 2025-09-07 18:15:55.4813+00 2025-09-07 18:15:55.481308+00 f t ADELANTO 23000.00 4 7069 \N +280477 2025-09-09 03:13:21.037358+00 2025-09-09 03:13:21.037368+00 f t SUBTOTAL 0.00 1 7170 \N +280478 2025-09-09 03:13:21.03902+00 2025-09-09 03:13:21.039027+00 f t DESCUENTO 0.00 2 7170 \N +280479 2025-09-09 03:13:21.040242+00 2025-09-09 03:13:21.040248+00 f t TOTAL 0.00 3 7170 \N +280480 2025-09-09 03:13:21.04134+00 2025-09-09 03:13:21.041345+00 f t ADELANTO 0.00 4 7170 \N +293445 2025-09-13 20:10:26.621075+00 2025-09-13 20:10:26.621087+00 f t SUBTOTAL 0.00 1 7497 \N +293446 2025-09-13 20:10:26.623537+00 2025-09-13 20:10:26.623548+00 f t DESCUENTO 0.00 2 7497 \N +293447 2025-09-13 20:10:26.625114+00 2025-09-13 20:10:26.625123+00 f t TOTAL 0.00 3 7497 \N +293448 2025-09-13 20:10:26.62665+00 2025-09-13 20:10:26.62666+00 f t ADELANTO 0.00 4 7497 \N +275645 2025-09-07 18:20:32.575314+00 2025-09-07 18:20:32.575323+00 f t SUBTOTAL 46000.00 1 7070 \N +275646 2025-09-07 18:20:32.576893+00 2025-09-07 18:20:32.576902+00 f t DESCUENTO 0.00 2 7070 \N +275647 2025-09-07 18:20:32.578219+00 2025-09-07 18:20:32.578226+00 f t TOTAL 46000.00 3 7070 \N +275648 2025-09-07 18:20:32.579376+00 2025-09-07 18:20:32.579382+00 f t ADELANTO 11000.00 4 7070 \N +282705 2025-09-09 19:02:32.74999+00 2025-09-09 19:02:32.750003+00 f t SUBTOTAL 0.00 1 7216 \N +282706 2025-09-09 19:02:32.752287+00 2025-09-09 19:02:32.752297+00 f t DESCUENTO 0.00 2 7216 \N +282707 2025-09-09 19:02:32.75375+00 2025-09-09 19:02:32.753789+00 f t TOTAL 0.00 3 7216 \N +282708 2025-09-09 19:02:32.755074+00 2025-09-09 19:02:32.755081+00 f t ADELANTO 0.00 4 7216 \N +289509 2025-09-12 02:47:06.835236+00 2025-09-12 02:47:06.835247+00 f t SUBTOTAL 46000.00 1 7387 \N +289510 2025-09-12 02:47:06.837393+00 2025-09-12 02:47:06.837403+00 f t DESCUENTO 0.00 2 7387 \N +289511 2025-09-12 02:47:06.838823+00 2025-09-12 02:47:06.838832+00 f t TOTAL 46000.00 3 7387 \N +289512 2025-09-12 02:47:06.840649+00 2025-09-12 02:47:06.840658+00 f t ADELANTO 11000.00 4 7387 \N +277345 2025-09-08 15:20:46.964561+00 2025-09-08 15:20:46.964574+00 f t SUBTOTAL 0.00 1 7107 \N +277346 2025-09-08 15:20:46.966999+00 2025-09-08 15:20:46.967008+00 f t DESCUENTO 0.00 2 7107 \N +275693 2025-09-07 19:03:41.201225+00 2025-09-07 19:03:41.201238+00 f t SUBTOTAL 95000.00 1 7071 \N +275694 2025-09-07 19:03:41.203054+00 2025-09-07 19:03:41.203065+00 f t DESCUENTO 0.00 2 7071 \N +275695 2025-09-07 19:03:41.20436+00 2025-09-07 19:03:41.204366+00 f t TOTAL 95000.00 3 7071 \N +275696 2025-09-07 19:03:41.205392+00 2025-09-07 19:03:41.205397+00 f t ADELANTO 10000.00 4 7071 \N +277347 2025-09-08 15:20:46.968537+00 2025-09-08 15:20:46.968546+00 f t TOTAL 0.00 3 7107 \N +277348 2025-09-08 15:20:46.969919+00 2025-09-08 15:20:46.969928+00 f t ADELANTO 0.00 4 7107 \N +275701 2025-09-07 19:03:43.454169+00 2025-09-07 19:03:43.454183+00 f t SUBTOTAL 55000.00 1 7072 \N +275702 2025-09-07 19:03:43.456022+00 2025-09-07 19:03:43.456032+00 f t DESCUENTO 0.00 2 7072 \N +275703 2025-09-07 19:03:43.457164+00 2025-09-07 19:03:43.457172+00 f t TOTAL 55000.00 3 7072 \N +275704 2025-09-07 19:03:43.458205+00 2025-09-07 19:03:43.458213+00 f t ADELANTO 11000.00 4 7072 \N +277609 2025-09-08 17:08:11.777883+00 2025-09-08 17:08:11.777892+00 f t SUBTOTAL 141200.00 1 7114 \N +277610 2025-09-08 17:08:11.779646+00 2025-09-08 17:08:11.779653+00 f t DESCUENTO 0.00 2 7114 \N +277611 2025-09-08 17:08:11.780772+00 2025-09-08 17:08:11.780778+00 f t TOTAL 141200.00 3 7114 \N +277612 2025-09-08 17:08:11.781916+00 2025-09-08 17:08:11.781921+00 f t ADELANTO 58200.00 4 7114 \N +283869 2025-09-10 06:23:57.755727+00 2025-09-10 06:23:57.755741+00 f t SUBTOTAL 0.00 1 7243 \N +283870 2025-09-10 06:23:57.757987+00 2025-09-10 06:23:57.757997+00 f t DESCUENTO 0.00 2 7243 \N +283871 2025-09-10 06:23:57.759333+00 2025-09-10 06:23:57.759342+00 f t TOTAL 0.00 3 7243 \N +283872 2025-09-10 06:23:57.760643+00 2025-09-10 06:23:57.76065+00 f t ADELANTO 0.00 4 7243 \N +275765 2025-09-07 19:06:15.55357+00 2025-09-07 19:06:15.553578+00 f t SUBTOTAL 55000.00 1 7073 \N +275766 2025-09-07 19:06:15.555301+00 2025-09-07 19:06:15.55531+00 f t DESCUENTO 0.00 2 7073 \N +275767 2025-09-07 19:06:15.556643+00 2025-09-07 19:06:15.556649+00 f t TOTAL 55000.00 3 7073 \N +275768 2025-09-07 19:06:15.55769+00 2025-09-07 19:06:15.557695+00 f t ADELANTO 11000.00 4 7073 \N +284629 2025-09-10 16:07:50.336687+00 2025-09-10 16:07:50.336702+00 f t SUBTOTAL 55000.00 1 7265 \N +284630 2025-09-10 16:07:50.339183+00 2025-09-10 16:07:50.339194+00 f t DESCUENTO 0.00 2 7265 \N +284631 2025-09-10 16:07:50.340721+00 2025-09-10 16:07:50.340731+00 f t TOTAL 55000.00 3 7265 \N +284632 2025-09-10 16:07:50.34214+00 2025-09-10 16:07:50.342148+00 f t ADELANTO 11000.00 4 7265 \N +284941 2025-09-10 18:34:51.380933+00 2025-09-10 18:34:51.380942+00 f t SUBTOTAL 0.00 1 7279 \N +284942 2025-09-10 18:34:51.383163+00 2025-09-10 18:34:51.383176+00 f t DESCUENTO 0.00 2 7279 \N +284943 2025-09-10 18:34:51.384438+00 2025-09-10 18:34:51.384444+00 f t TOTAL 0.00 3 7279 \N +284944 2025-09-10 18:34:51.385529+00 2025-09-10 18:34:51.385535+00 f t ADELANTO 0.00 4 7279 \N +275833 2025-09-07 19:32:16.054249+00 2025-09-07 19:32:16.054261+00 f t SUBTOTAL 55000.00 1 7074 \N +275834 2025-09-07 19:32:16.056216+00 2025-09-07 19:32:16.056225+00 f t DESCUENTO 0.00 2 7074 \N +275835 2025-09-07 19:32:16.057682+00 2025-09-07 19:32:16.057689+00 f t TOTAL 55000.00 3 7074 \N +275836 2025-09-07 19:32:16.05912+00 2025-09-07 19:32:16.059128+00 f t ADELANTO 11000.00 4 7074 \N +275841 2025-09-07 19:50:18.151929+00 2025-09-07 19:50:18.151938+00 f t SUBTOTAL 0.00 1 7075 \N +275842 2025-09-07 19:50:18.153368+00 2025-09-07 19:50:18.153377+00 f t DESCUENTO 0.00 2 7075 \N +275843 2025-09-07 19:50:18.15453+00 2025-09-07 19:50:18.154536+00 f t TOTAL 0.00 3 7075 \N +275844 2025-09-07 19:50:18.155463+00 2025-09-07 19:50:18.155468+00 f t ADELANTO 0.00 4 7075 \N +279917 2025-09-09 01:07:07.795752+00 2025-09-09 01:07:07.795766+00 f t SUBTOTAL 75000.00 1 7159 \N +279918 2025-09-09 01:07:07.79812+00 2025-09-09 01:07:07.798132+00 f t DESCUENTO 0.00 2 7159 \N +279919 2025-09-09 01:07:07.800027+00 2025-09-09 01:07:07.800037+00 f t TOTAL 75000.00 3 7159 \N +279920 2025-09-09 01:07:07.801905+00 2025-09-09 01:07:07.801916+00 f t ADELANTO 15000.00 4 7159 \N +286161 2025-09-10 21:28:49.712057+00 2025-09-10 21:28:49.712066+00 f t SUBTOTAL 55000.00 1 7302 \N +286162 2025-09-10 21:28:49.714138+00 2025-09-10 21:28:49.714146+00 f t DESCUENTO 0.00 2 7302 \N +286163 2025-09-10 21:28:49.715511+00 2025-09-10 21:28:49.715518+00 f t TOTAL 55000.00 3 7302 \N +286164 2025-09-10 21:28:49.716598+00 2025-09-10 21:28:49.716603+00 f t ADELANTO 11000.00 4 7302 \N +280125 2025-09-09 02:20:50.161958+00 2025-09-09 02:20:50.161968+00 f t SUBTOTAL 78000.00 1 7163 \N +280126 2025-09-09 02:20:50.163647+00 2025-09-09 02:20:50.163655+00 f t DESCUENTO 0.00 2 7163 \N +280127 2025-09-09 02:20:50.165077+00 2025-09-09 02:20:50.165084+00 f t TOTAL 78000.00 3 7163 \N +280128 2025-09-09 02:20:50.166337+00 2025-09-09 02:20:50.166345+00 f t ADELANTO 21500.00 4 7163 \N +286397 2025-09-10 23:38:53.360105+00 2025-09-10 23:38:53.360117+00 f t SUBTOTAL 46000.00 1 7303 \N +286398 2025-09-10 23:38:53.362434+00 2025-09-10 23:38:53.362447+00 f t DESCUENTO 0.00 2 7303 \N +286399 2025-09-10 23:38:53.364126+00 2025-09-10 23:38:53.364135+00 f t TOTAL 46000.00 3 7303 \N +286400 2025-09-10 23:38:53.365684+00 2025-09-10 23:38:53.365692+00 f t ADELANTO 11000.00 4 7303 \N +280341 2025-09-09 02:41:26.807634+00 2025-09-09 02:41:26.807642+00 f t SUBTOTAL 46000.00 1 7166 \N +280342 2025-09-09 02:41:26.809019+00 2025-09-09 02:41:26.809025+00 f t DESCUENTO 0.00 2 7166 \N +280343 2025-09-09 02:41:26.810066+00 2025-09-09 02:41:26.81007+00 f t TOTAL 46000.00 3 7166 \N +280344 2025-09-09 02:41:26.810914+00 2025-09-09 02:41:26.810919+00 f t ADELANTO 11000.00 4 7166 \N +275917 2025-09-07 19:56:24.083042+00 2025-09-07 19:56:24.08305+00 f t SUBTOTAL 46000.00 1 7076 \N +275918 2025-09-07 19:56:24.084605+00 2025-09-07 19:56:24.084611+00 f t DESCUENTO 0.00 2 7076 \N +275919 2025-09-07 19:56:24.085634+00 2025-09-07 19:56:24.085639+00 f t TOTAL 46000.00 3 7076 \N +275920 2025-09-07 19:56:24.086526+00 2025-09-07 19:56:24.086531+00 f t ADELANTO 11000.00 4 7076 \N +275925 2025-09-07 20:00:05.106085+00 2025-09-07 20:00:05.106099+00 f t SUBTOTAL 0.00 1 7077 \N +275926 2025-09-07 20:00:05.110787+00 2025-09-07 20:00:05.110802+00 f t DESCUENTO 0.00 2 7077 \N +275927 2025-09-07 20:00:05.12858+00 2025-09-07 20:00:05.128595+00 f t TOTAL 0.00 3 7077 \N +275928 2025-09-07 20:00:05.133732+00 2025-09-07 20:00:05.133746+00 f t ADELANTO 0.00 4 7077 \N +280485 2025-09-09 03:14:33.572736+00 2025-09-09 03:14:33.572745+00 f t SUBTOTAL 0.00 1 7171 \N +280486 2025-09-09 03:14:33.574242+00 2025-09-09 03:14:33.574247+00 f t DESCUENTO 0.00 2 7171 \N +280487 2025-09-09 03:14:33.5754+00 2025-09-09 03:14:33.575405+00 f t TOTAL 0.00 3 7171 \N +280488 2025-09-09 03:14:33.576583+00 2025-09-09 03:14:33.576591+00 f t ADELANTO 0.00 4 7171 \N +276813 2025-09-08 12:23:05.263617+00 2025-09-08 12:23:05.26363+00 f t SUBTOTAL 70000.00 1 7097 \N +276814 2025-09-08 12:23:05.265717+00 2025-09-08 12:23:05.265728+00 f t DESCUENTO 0.00 2 7097 \N +276815 2025-09-08 12:23:05.268669+00 2025-09-08 12:23:05.26868+00 f t TOTAL 70000.00 3 7097 \N +276816 2025-09-08 12:23:05.270299+00 2025-09-08 12:23:05.270309+00 f t ADELANTO 19000.00 4 7097 \N +282933 2025-09-09 19:55:55.240466+00 2025-09-09 19:55:55.240479+00 f t SUBTOTAL 0.00 1 7221 \N +282934 2025-09-09 19:55:55.242527+00 2025-09-09 19:55:55.242535+00 f t DESCUENTO 0.00 2 7221 \N +282935 2025-09-09 19:55:55.244943+00 2025-09-09 19:55:55.244949+00 f t TOTAL 0.00 3 7221 \N +282936 2025-09-09 19:55:55.246608+00 2025-09-09 19:55:55.246613+00 f t ADELANTO 0.00 4 7221 \N +296297 2025-09-14 21:09:13.910237+00 2025-09-14 21:09:13.910246+00 f t SUBTOTAL 55000.00 1 7537 \N +296298 2025-09-14 21:09:13.912447+00 2025-09-14 21:09:13.912461+00 f t DESCUENTO 0.00 2 7537 \N +296299 2025-09-14 21:09:13.914423+00 2025-09-14 21:09:13.914434+00 f t TOTAL 55000.00 3 7537 \N +296300 2025-09-14 21:09:13.916398+00 2025-09-14 21:09:13.916409+00 f t ADELANTO 11000.00 4 7537 \N +277353 2025-09-08 15:37:00.662549+00 2025-09-08 15:37:00.662563+00 f t SUBTOTAL 0.00 1 7108 \N +277354 2025-09-08 15:37:00.666746+00 2025-09-08 15:37:00.666762+00 f t DESCUENTO 0.00 2 7108 \N +277355 2025-09-08 15:37:00.668947+00 2025-09-08 15:37:00.668963+00 f t TOTAL 0.00 3 7108 \N +277356 2025-09-08 15:37:00.670835+00 2025-09-08 15:37:00.670848+00 f t ADELANTO 0.00 4 7108 \N +277697 2025-09-08 17:37:00.498351+00 2025-09-08 17:37:00.498363+00 f t SUBTOTAL 46000.00 1 7118 \N +277698 2025-09-08 17:37:00.500327+00 2025-09-08 17:37:00.500337+00 f t DESCUENTO 0.00 2 7118 \N +277699 2025-09-08 17:37:00.501894+00 2025-09-08 17:37:00.501905+00 f t TOTAL 46000.00 3 7118 \N +277700 2025-09-08 17:37:00.503261+00 2025-09-08 17:37:00.503269+00 f t ADELANTO 11000.00 4 7118 \N +276013 2025-09-07 20:17:46.551322+00 2025-09-07 20:17:46.551334+00 f t SUBTOTAL 0.00 1 7078 \N +276014 2025-09-07 20:17:46.553087+00 2025-09-07 20:17:46.553095+00 f t DESCUENTO 0.00 2 7078 \N +276015 2025-09-07 20:17:46.554188+00 2025-09-07 20:17:46.554194+00 f t TOTAL 0.00 3 7078 \N +276016 2025-09-07 20:17:46.555184+00 2025-09-07 20:17:46.555189+00 f t ADELANTO 0.00 4 7078 \N +276021 2025-09-07 20:25:59.485253+00 2025-09-07 20:25:59.485265+00 f t SUBTOTAL 0.00 1 7079 \N +276022 2025-09-07 20:25:59.486716+00 2025-09-07 20:25:59.48673+00 f t DESCUENTO 0.00 2 7079 \N +276023 2025-09-07 20:25:59.487858+00 2025-09-07 20:25:59.487863+00 f t TOTAL 0.00 3 7079 \N +276024 2025-09-07 20:25:59.489247+00 2025-09-07 20:25:59.489256+00 f t ADELANTO 0.00 4 7079 \N +290645 2025-09-12 16:07:23.968272+00 2025-09-12 16:07:23.968282+00 f t SUBTOTAL 115000.00 1 7420 \N +290646 2025-09-12 16:07:23.970068+00 2025-09-12 16:07:23.970075+00 f t DESCUENTO 0.00 2 7420 \N +290647 2025-09-12 16:07:23.971527+00 2025-09-12 16:07:23.971533+00 f t TOTAL 115000.00 3 7420 \N +290648 2025-09-12 16:07:23.972612+00 2025-09-12 16:07:23.972618+00 f t ADELANTO 25000.00 4 7420 \N +284169 2025-09-10 11:53:19.661955+00 2025-09-10 11:53:19.661965+00 f t SUBTOTAL 0.00 1 7249 \N +284170 2025-09-10 11:53:19.664098+00 2025-09-10 11:53:19.664105+00 f t DESCUENTO 0.00 2 7249 \N +284171 2025-09-10 11:53:19.665222+00 2025-09-10 11:53:19.665228+00 f t TOTAL 0.00 3 7249 \N +284172 2025-09-10 11:53:19.666212+00 2025-09-10 11:53:19.666217+00 f t ADELANTO 0.00 4 7249 \N +284709 2025-09-10 16:40:14.08416+00 2025-09-10 16:40:14.084168+00 f t SUBTOTAL 30000.00 1 7268 \N +284710 2025-09-10 16:40:14.086144+00 2025-09-10 16:40:14.08615+00 f t DESCUENTO 0.00 2 7268 \N +284711 2025-09-10 16:40:14.087418+00 2025-09-10 16:40:14.087423+00 f t TOTAL 30000.00 3 7268 \N +276081 2025-09-07 22:19:12.324208+00 2025-09-07 22:19:12.324217+00 f t SUBTOTAL 46000.00 1 7080 \N +276082 2025-09-07 22:19:12.326095+00 2025-09-07 22:19:12.326103+00 f t DESCUENTO 0.00 2 7080 \N +276083 2025-09-07 22:19:12.327691+00 2025-09-07 22:19:12.327698+00 f t TOTAL 46000.00 3 7080 \N +276084 2025-09-07 22:19:12.329113+00 2025-09-07 22:19:12.329119+00 f t ADELANTO 11000.00 4 7080 \N +284712 2025-09-10 16:40:14.088486+00 2025-09-10 16:40:14.088491+00 f t ADELANTO 30000.00 4 7268 \N +284781 2025-09-10 16:46:46.652038+00 2025-09-10 16:46:46.652046+00 f t SUBTOTAL 30000.00 1 7270 \N +284782 2025-09-10 16:46:46.653797+00 2025-09-10 16:46:46.653805+00 f t DESCUENTO 0.00 2 7270 \N +284783 2025-09-10 16:46:46.654862+00 2025-09-10 16:46:46.65487+00 f t TOTAL 30000.00 3 7270 \N +276089 2025-09-07 22:42:57.402466+00 2025-09-07 22:42:57.402479+00 f t SUBTOTAL 0.00 1 7081 \N +276090 2025-09-07 22:42:57.404196+00 2025-09-07 22:42:57.404206+00 f t DESCUENTO 0.00 2 7081 \N +276091 2025-09-07 22:42:57.405722+00 2025-09-07 22:42:57.405733+00 f t TOTAL 0.00 3 7081 \N +276092 2025-09-07 22:42:57.407584+00 2025-09-07 22:42:57.407594+00 f t ADELANTO 0.00 4 7081 \N +284784 2025-09-10 16:46:46.656109+00 2025-09-10 16:46:46.656118+00 f t ADELANTO 30000.00 4 7270 \N +276129 2025-09-07 23:18:39.159852+00 2025-09-07 23:18:39.15986+00 f t SUBTOTAL 70000.00 1 7082 \N +276130 2025-09-07 23:18:39.161562+00 2025-09-07 23:18:39.161569+00 f t DESCUENTO 0.00 2 7082 \N +276131 2025-09-07 23:18:39.16286+00 2025-09-07 23:18:39.162866+00 f t TOTAL 70000.00 3 7082 \N +276132 2025-09-07 23:18:39.164+00 2025-09-07 23:18:39.164005+00 f t ADELANTO 19000.00 4 7082 \N +292253 2025-09-13 08:39:06.211814+00 2025-09-13 08:39:06.211827+00 f t SUBTOTAL 88000.00 1 7467 \N +292254 2025-09-13 08:39:06.214221+00 2025-09-13 08:39:06.214231+00 f t DESCUENTO 0.00 2 7467 \N +292255 2025-09-13 08:39:06.216148+00 2025-09-13 08:39:06.216158+00 f t TOTAL 88000.00 3 7467 \N +292256 2025-09-13 08:39:06.217684+00 2025-09-13 08:39:06.217694+00 f t ADELANTO 19500.00 4 7467 \N +292449 2025-09-13 12:31:13.721154+00 2025-09-13 12:31:13.721163+00 f t SUBTOTAL 78000.00 1 7472 \N +292450 2025-09-13 12:31:13.726994+00 2025-09-13 12:31:13.727004+00 f t DESCUENTO 0.00 2 7472 \N +292451 2025-09-13 12:31:13.729172+00 2025-09-13 12:31:13.729183+00 f t TOTAL 78000.00 3 7472 \N +276169 2025-09-08 00:42:03.63201+00 2025-09-08 00:42:03.632018+00 f t SUBTOTAL 78000.00 1 7083 \N +276170 2025-09-08 00:42:03.634208+00 2025-09-08 00:42:03.63422+00 f t DESCUENTO 0.00 2 7083 \N +276171 2025-09-08 00:42:03.635813+00 2025-09-08 00:42:03.635824+00 f t TOTAL 78000.00 3 7083 \N +276172 2025-09-08 00:42:03.637328+00 2025-09-08 00:42:03.637337+00 f t ADELANTO 21500.00 4 7083 \N +292452 2025-09-13 12:31:13.733978+00 2025-09-13 12:31:13.73399+00 f t ADELANTO 21500.00 4 7472 \N +292713 2025-09-13 13:49:50.927879+00 2025-09-13 13:49:50.927891+00 f t SUBTOTAL 68000.00 1 7478 \N +292714 2025-09-13 13:49:50.93003+00 2025-09-13 13:49:50.930039+00 f t DESCUENTO 0.00 2 7478 \N +292715 2025-09-13 13:49:50.931516+00 2025-09-13 13:49:50.931525+00 f t TOTAL 68000.00 3 7478 \N +292716 2025-09-13 13:49:50.932991+00 2025-09-13 13:49:50.933+00 f t ADELANTO 13000.00 4 7478 \N +276197 2025-09-08 00:52:32.756207+00 2025-09-08 00:52:32.756223+00 f t SUBTOTAL 55000.00 1 7084 \N +276198 2025-09-08 00:52:32.758033+00 2025-09-08 00:52:32.758043+00 f t DESCUENTO 0.00 2 7084 \N +276199 2025-09-08 00:52:32.759418+00 2025-09-08 00:52:32.759426+00 f t TOTAL 55000.00 3 7084 \N +276200 2025-09-08 00:52:32.760653+00 2025-09-08 00:52:32.760661+00 f t ADELANTO 11000.00 4 7084 \N +280349 2025-09-09 02:46:53.644968+00 2025-09-09 02:46:53.644978+00 f t SUBTOTAL 0.00 1 7167 \N +280350 2025-09-09 02:46:53.646447+00 2025-09-09 02:46:53.646455+00 f t DESCUENTO 0.00 2 7167 \N +280351 2025-09-09 02:46:53.647737+00 2025-09-09 02:46:53.647743+00 f t TOTAL 0.00 3 7167 \N +280352 2025-09-09 02:46:53.648835+00 2025-09-09 02:46:53.64884+00 f t ADELANTO 0.00 4 7167 \N +276241 2025-09-08 01:26:53.862264+00 2025-09-08 01:26:53.862276+00 f t SUBTOTAL 54000.00 1 7085 \N +276242 2025-09-08 01:26:53.864036+00 2025-09-08 01:26:53.864045+00 f t DESCUENTO 0.00 2 7085 \N +276243 2025-09-08 01:26:53.865228+00 2025-09-08 01:26:53.865234+00 f t TOTAL 54000.00 3 7085 \N +276244 2025-09-08 01:26:53.866271+00 2025-09-08 01:26:53.866276+00 f t ADELANTO 13500.00 4 7085 \N +317185 2025-09-22 16:40:12.179713+00 2025-09-22 16:40:12.179722+00 f t SUBTOTAL 46000.00 1 8017 \N +317186 2025-09-22 16:40:12.181822+00 2025-09-22 16:40:12.181831+00 f t DESCUENTO 0.00 2 8017 \N +317187 2025-09-22 16:40:12.183898+00 2025-09-22 16:40:12.183908+00 f t TOTAL 46000.00 3 8017 \N +317188 2025-09-22 16:40:12.185862+00 2025-09-22 16:40:12.185869+00 f t ADELANTO 11000.00 4 8017 \N +277025 2025-09-08 14:39:41.274442+00 2025-09-08 14:39:41.274451+00 f t SUBTOTAL 78000.00 1 7102 \N +277026 2025-09-08 14:39:41.279835+00 2025-09-08 14:39:41.279844+00 f t DESCUENTO 0.00 2 7102 \N +277027 2025-09-08 14:39:41.281393+00 2025-09-08 14:39:41.281399+00 f t TOTAL 78000.00 3 7102 \N +277028 2025-09-08 14:39:41.282588+00 2025-09-08 14:39:41.282594+00 f t ADELANTO 21500.00 4 7102 \N +276269 2025-09-08 01:38:25.827307+00 2025-09-08 01:38:25.82732+00 f t SUBTOTAL 46000.00 1 7086 \N +276270 2025-09-08 01:38:25.829251+00 2025-09-08 01:38:25.829263+00 f t DESCUENTO 0.00 2 7086 \N +276271 2025-09-08 01:38:25.830755+00 2025-09-08 01:38:25.830764+00 f t TOTAL 46000.00 3 7086 \N +276272 2025-09-08 01:38:25.832176+00 2025-09-08 01:38:25.832184+00 f t ADELANTO 11000.00 4 7086 \N +290117 2025-09-12 12:24:27.781282+00 2025-09-12 12:24:27.78129+00 f t SUBTOTAL 54000.00 1 7403 \N +290118 2025-09-12 12:24:27.782925+00 2025-09-12 12:24:27.782931+00 f t DESCUENTO 0.00 2 7403 \N +290119 2025-09-12 12:24:27.784029+00 2025-09-12 12:24:27.784034+00 f t TOTAL 54000.00 3 7403 \N +290120 2025-09-12 12:24:27.785035+00 2025-09-12 12:24:27.78504+00 f t ADELANTO 13500.00 4 7403 \N +277361 2025-09-08 15:54:26.216348+00 2025-09-08 15:54:26.21636+00 f t SUBTOTAL 0.00 1 7109 \N +277362 2025-09-08 15:54:26.217964+00 2025-09-08 15:54:26.217973+00 f t DESCUENTO 0.00 2 7109 \N +277363 2025-09-08 15:54:26.219123+00 2025-09-08 15:54:26.219148+00 f t TOTAL 0.00 3 7109 \N +277364 2025-09-08 15:54:26.220113+00 2025-09-08 15:54:26.220118+00 f t ADELANTO 0.00 4 7109 \N +276309 2025-09-08 03:33:21.345203+00 2025-09-08 03:33:21.345212+00 f t SUBTOTAL 78000.00 1 7087 \N +276310 2025-09-08 03:33:21.346789+00 2025-09-08 03:33:21.346795+00 f t DESCUENTO 0.00 2 7087 \N +276311 2025-09-08 03:33:21.347933+00 2025-09-08 03:33:21.347941+00 f t TOTAL 78000.00 3 7087 \N +276312 2025-09-08 03:33:21.349968+00 2025-09-08 03:33:21.349975+00 f t ADELANTO 21500.00 4 7087 \N +277705 2025-09-08 17:55:00.518279+00 2025-09-08 17:55:00.518289+00 f t SUBTOTAL 0.00 1 7119 \N +277706 2025-09-08 17:55:00.519774+00 2025-09-08 17:55:00.51978+00 f t DESCUENTO 0.00 2 7119 \N +277707 2025-09-08 17:55:00.521068+00 2025-09-08 17:55:00.521076+00 f t TOTAL 0.00 3 7119 \N +277708 2025-09-08 17:55:00.522517+00 2025-09-08 17:55:00.522522+00 f t ADELANTO 0.00 4 7119 \N +290653 2025-09-12 16:22:01.921408+00 2025-09-12 16:22:01.921417+00 f t SUBTOTAL 0.00 1 7421 \N +290654 2025-09-12 16:22:01.924152+00 2025-09-12 16:22:01.92416+00 f t DESCUENTO 0.00 2 7421 \N +290655 2025-09-12 16:22:01.925771+00 2025-09-12 16:22:01.925777+00 f t TOTAL 0.00 3 7421 \N +290656 2025-09-12 16:22:01.926984+00 2025-09-12 16:22:01.92699+00 f t ADELANTO 0.00 4 7421 \N +290745 2025-09-12 16:46:31.883553+00 2025-09-12 16:46:31.883566+00 f t SUBTOTAL 0.00 1 7425 \N +290746 2025-09-12 16:46:31.885096+00 2025-09-12 16:46:31.885105+00 f t DESCUENTO 0.00 2 7425 \N +290747 2025-09-12 16:46:31.88634+00 2025-09-12 16:46:31.886348+00 f t TOTAL 0.00 3 7425 \N +290748 2025-09-12 16:46:31.887506+00 2025-09-12 16:46:31.887514+00 f t ADELANTO 0.00 4 7425 \N +291333 2025-09-12 19:54:35.795524+00 2025-09-12 19:54:35.795537+00 f t SUBTOTAL 46000.00 1 7439 \N +291334 2025-09-12 19:54:35.797842+00 2025-09-12 19:54:35.797853+00 f t DESCUENTO 0.00 2 7439 \N +291335 2025-09-12 19:54:35.799748+00 2025-09-12 19:54:35.799758+00 f t TOTAL 46000.00 3 7439 \N +291336 2025-09-12 19:54:35.801484+00 2025-09-12 19:54:35.801495+00 f t ADELANTO 11000.00 4 7439 \N +291669 2025-09-12 22:49:19.788132+00 2025-09-12 22:49:19.788139+00 f t SUBTOTAL 30000.00 1 7446 \N +291670 2025-09-12 22:49:19.790073+00 2025-09-12 22:49:19.790079+00 f t DESCUENTO 0.00 2 7446 \N +291671 2025-09-12 22:49:19.791496+00 2025-09-12 22:49:19.791503+00 f t TOTAL 30000.00 3 7446 \N +291672 2025-09-12 22:49:19.793094+00 2025-09-12 22:49:19.7931+00 f t ADELANTO 30000.00 4 7446 \N +285237 2025-09-10 19:38:00.040053+00 2025-09-10 19:38:00.040065+00 f t SUBTOTAL 0.00 1 7287 \N +285238 2025-09-10 19:38:00.042117+00 2025-09-10 19:38:00.042124+00 f t DESCUENTO 0.00 2 7287 \N +285239 2025-09-10 19:38:00.043484+00 2025-09-10 19:38:00.043492+00 f t TOTAL 0.00 3 7287 \N +285240 2025-09-10 19:38:00.044708+00 2025-09-10 19:38:00.044716+00 f t ADELANTO 0.00 4 7287 \N +292021 2025-09-13 01:00:24.362005+00 2025-09-13 01:00:24.362018+00 f t SUBTOTAL 55000.00 1 7460 \N +292022 2025-09-13 01:00:24.364924+00 2025-09-13 01:00:24.364936+00 f t DESCUENTO 0.00 2 7460 \N +292023 2025-09-13 01:00:24.367565+00 2025-09-13 01:00:24.367577+00 f t TOTAL 55000.00 3 7460 \N +292024 2025-09-13 01:00:24.369763+00 2025-09-13 01:00:24.369774+00 f t ADELANTO 11000.00 4 7460 \N +279413 2025-09-08 23:41:46.910346+00 2025-09-08 23:41:46.910356+00 f t SUBTOTAL 0.00 1 7147 \N +279414 2025-09-08 23:41:46.912489+00 2025-09-08 23:41:46.912498+00 f t DESCUENTO 0.00 2 7147 \N +279415 2025-09-08 23:41:46.913865+00 2025-09-08 23:41:46.913873+00 f t TOTAL 0.00 3 7147 \N +279416 2025-09-08 23:41:46.915257+00 2025-09-08 23:41:46.915263+00 f t ADELANTO 0.00 4 7147 \N +285573 2025-09-10 19:49:16.005259+00 2025-09-10 19:49:16.005268+00 f t SUBTOTAL 114000.00 1 7290 \N +285574 2025-09-10 19:49:16.007+00 2025-09-10 19:49:16.007007+00 f t DESCUENTO 0.00 2 7290 \N +285575 2025-09-10 19:49:16.008231+00 2025-09-10 19:49:16.008237+00 f t TOTAL 114000.00 3 7290 \N +285576 2025-09-10 19:49:16.009306+00 2025-09-10 19:49:16.009315+00 f t ADELANTO 24000.00 4 7290 \N +279873 2025-09-09 01:04:32.291209+00 2025-09-09 01:04:32.291218+00 f t SUBTOTAL 32500.00 1 7157 \N +279874 2025-09-09 01:04:32.293692+00 2025-09-09 01:04:32.2937+00 f t DESCUENTO 0.00 2 7157 \N +279875 2025-09-09 01:04:32.295528+00 2025-09-09 01:04:32.295537+00 f t TOTAL 32500.00 3 7157 \N +279876 2025-09-09 01:04:32.2969+00 2025-09-09 01:04:32.296907+00 f t ADELANTO 32500.00 4 7157 \N +286469 2025-09-11 00:45:31.588296+00 2025-09-11 00:45:31.588306+00 f t SUBTOTAL 0.00 1 7311 \N +286470 2025-09-11 00:45:31.590844+00 2025-09-11 00:45:31.590852+00 f t DESCUENTO 0.00 2 7311 \N +286471 2025-09-11 00:45:31.592599+00 2025-09-11 00:45:31.592606+00 f t TOTAL 0.00 3 7311 \N +286472 2025-09-11 00:45:31.593832+00 2025-09-11 00:45:31.593837+00 f t ADELANTO 0.00 4 7311 \N +280493 2025-09-09 03:15:12.318687+00 2025-09-09 03:15:12.3187+00 f t SUBTOTAL 0.00 1 7172 \N +280494 2025-09-09 03:15:12.32077+00 2025-09-09 03:15:12.320784+00 f t DESCUENTO 0.00 2 7172 \N +280495 2025-09-09 03:15:12.322696+00 2025-09-09 03:15:12.322704+00 f t TOTAL 0.00 3 7172 \N +280496 2025-09-09 03:15:12.324565+00 2025-09-09 03:15:12.324577+00 f t ADELANTO 0.00 4 7172 \N +286877 2025-09-11 01:26:27.483976+00 2025-09-11 01:26:27.483985+00 f t SUBTOTAL 87400.00 1 7318 \N +286878 2025-09-11 01:26:27.48563+00 2025-09-11 01:26:27.485637+00 f t DESCUENTO 0.00 2 7318 \N +286879 2025-09-11 01:26:27.486769+00 2025-09-11 01:26:27.486774+00 f t TOTAL 87400.00 3 7318 \N +286880 2025-09-11 01:26:27.487931+00 2025-09-11 01:26:27.487937+00 f t ADELANTO 46900.00 4 7318 \N +289841 2025-09-12 08:51:13.170023+00 2025-09-12 08:51:13.170032+00 f t SUBTOTAL 46000.00 1 7397 \N +289842 2025-09-12 08:51:13.172189+00 2025-09-12 08:51:13.172198+00 f t DESCUENTO 0.00 2 7397 \N +289843 2025-09-12 08:51:13.173502+00 2025-09-12 08:51:13.173509+00 f t TOTAL 46000.00 3 7397 \N +289844 2025-09-12 08:51:13.174672+00 2025-09-12 08:51:13.174678+00 f t ADELANTO 11000.00 4 7397 \N +283477 2025-09-10 00:43:58.146471+00 2025-09-10 00:43:58.146484+00 f t SUBTOTAL 30000.00 1 7234 \N +283478 2025-09-10 00:43:58.14851+00 2025-09-10 00:43:58.148521+00 f t DESCUENTO 0.00 2 7234 \N +283479 2025-09-10 00:43:58.150058+00 2025-09-10 00:43:58.150067+00 f t TOTAL 30000.00 3 7234 \N +283480 2025-09-10 00:43:58.15136+00 2025-09-10 00:43:58.151368+00 f t ADELANTO 30000.00 4 7234 \N +283557 2025-09-10 01:00:15.904273+00 2025-09-10 01:00:15.904287+00 f t SUBTOTAL 116000.00 1 7235 \N +283558 2025-09-10 01:00:15.907167+00 2025-09-10 01:00:15.907178+00 f t DESCUENTO 0.00 2 7235 \N +283559 2025-09-10 01:00:15.90912+00 2025-09-10 01:00:15.909133+00 f t TOTAL 116000.00 3 7235 \N +280601 2025-09-09 03:25:47.559738+00 2025-09-09 03:25:47.559747+00 f t SUBTOTAL 68000.00 1 7174 \N +280602 2025-09-09 03:25:47.56115+00 2025-09-09 03:25:47.561156+00 f t DESCUENTO 0.00 2 7174 \N +280603 2025-09-09 03:25:47.562136+00 2025-09-09 03:25:47.562141+00 f t TOTAL 68000.00 3 7174 \N +280604 2025-09-09 03:25:47.563228+00 2025-09-09 03:25:47.563234+00 f t ADELANTO 13000.00 4 7174 \N +283560 2025-09-10 01:00:15.910966+00 2025-09-10 01:00:15.910973+00 f t ADELANTO 30000.00 4 7235 \N +283653 2025-09-10 01:42:51.619484+00 2025-09-10 01:42:51.619493+00 f t SUBTOTAL 121000.00 1 7240 \N +283654 2025-09-10 01:42:51.621271+00 2025-09-10 01:42:51.621277+00 f t DESCUENTO 0.00 2 7240 \N +283655 2025-09-10 01:42:51.622564+00 2025-09-10 01:42:51.62257+00 f t TOTAL 121000.00 3 7240 \N +283656 2025-09-10 01:42:51.623644+00 2025-09-10 01:42:51.623649+00 f t ADELANTO 26000.00 4 7240 \N +280617 2025-09-09 03:27:23.511059+00 2025-09-09 03:27:23.511068+00 f t SUBTOTAL 0.00 1 7175 \N +280618 2025-09-09 03:27:23.51326+00 2025-09-09 03:27:23.513267+00 f t DESCUENTO 0.00 2 7175 \N +280619 2025-09-09 03:27:23.514449+00 2025-09-09 03:27:23.514455+00 f t TOTAL 0.00 3 7175 \N +280620 2025-09-09 03:27:23.51556+00 2025-09-09 03:27:23.515565+00 f t ADELANTO 0.00 4 7175 \N +280625 2025-09-09 03:29:25.64547+00 2025-09-09 03:29:25.645478+00 f t SUBTOTAL 0.00 1 7176 \N +280626 2025-09-09 03:29:25.64667+00 2025-09-09 03:29:25.646676+00 f t DESCUENTO 0.00 2 7176 \N +280627 2025-09-09 03:29:25.64761+00 2025-09-09 03:29:25.647615+00 f t TOTAL 0.00 3 7176 \N +280628 2025-09-09 03:29:25.648476+00 2025-09-09 03:29:25.648481+00 f t ADELANTO 0.00 4 7176 \N +290309 2025-09-12 13:21:58.180105+00 2025-09-12 13:21:58.180116+00 f t SUBTOTAL 0.00 1 7410 \N +290310 2025-09-12 13:21:58.181965+00 2025-09-12 13:21:58.181972+00 f t DESCUENTO 0.00 2 7410 \N +290311 2025-09-12 13:21:58.183109+00 2025-09-12 13:21:58.183115+00 f t TOTAL 0.00 3 7410 \N +280633 2025-09-09 03:29:25.925256+00 2025-09-09 03:29:25.925266+00 f t SUBTOTAL 0.00 1 7177 \N +280634 2025-09-09 03:29:25.926795+00 2025-09-09 03:29:25.926804+00 f t DESCUENTO 0.00 2 7177 \N +280635 2025-09-09 03:29:25.928105+00 2025-09-09 03:29:25.92811+00 f t TOTAL 0.00 3 7177 \N +280636 2025-09-09 03:29:25.929161+00 2025-09-09 03:29:25.929166+00 f t ADELANTO 0.00 4 7177 \N +290312 2025-09-12 13:21:58.184057+00 2025-09-12 13:21:58.184062+00 f t ADELANTO 0.00 4 7410 \N +290481 2025-09-12 13:42:02.212672+00 2025-09-12 13:42:02.212684+00 f t SUBTOTAL 46000.00 1 7415 \N +290482 2025-09-12 13:42:02.21445+00 2025-09-12 13:42:02.214459+00 f t DESCUENTO 0.00 2 7415 \N +290483 2025-09-12 13:42:02.215907+00 2025-09-12 13:42:02.215914+00 f t TOTAL 46000.00 3 7415 \N +290484 2025-09-12 13:42:02.217112+00 2025-09-12 13:42:02.217118+00 f t ADELANTO 11000.00 4 7415 \N +290661 2025-09-12 16:25:16.528979+00 2025-09-12 16:25:16.528988+00 f t SUBTOTAL 0.00 1 7422 \N +290662 2025-09-12 16:25:16.530476+00 2025-09-12 16:25:16.530484+00 f t DESCUENTO 0.00 2 7422 \N +290663 2025-09-12 16:25:16.532277+00 2025-09-12 16:25:16.532284+00 f t TOTAL 0.00 3 7422 \N +290664 2025-09-12 16:25:16.533324+00 2025-09-12 16:25:16.533329+00 f t ADELANTO 0.00 4 7422 \N +280661 2025-09-09 03:32:50.810864+00 2025-09-09 03:32:50.810875+00 f t SUBTOTAL 46000.00 1 7178 \N +280662 2025-09-09 03:32:50.812678+00 2025-09-09 03:32:50.812685+00 f t DESCUENTO 0.00 2 7178 \N +280663 2025-09-09 03:32:50.813829+00 2025-09-09 03:32:50.813835+00 f t TOTAL 46000.00 3 7178 \N +280664 2025-09-09 03:32:50.814804+00 2025-09-09 03:32:50.81481+00 f t ADELANTO 11000.00 4 7178 \N +285377 2025-09-10 19:42:15.978824+00 2025-09-10 19:42:15.978836+00 f t SUBTOTAL 46000.00 1 7288 \N +285378 2025-09-10 19:42:15.980694+00 2025-09-10 19:42:15.980702+00 f t DESCUENTO 0.00 2 7288 \N +285379 2025-09-10 19:42:15.981955+00 2025-09-10 19:42:15.981964+00 f t TOTAL 46000.00 3 7288 \N +285380 2025-09-10 19:42:15.983106+00 2025-09-10 19:42:15.983112+00 f t ADELANTO 11000.00 4 7288 \N +291677 2025-09-12 23:03:02.315774+00 2025-09-12 23:03:02.315788+00 f t SUBTOTAL 0.00 1 7447 \N +291678 2025-09-12 23:03:02.317785+00 2025-09-12 23:03:02.317797+00 f t DESCUENTO 0.00 2 7447 \N +291679 2025-09-12 23:03:02.319642+00 2025-09-12 23:03:02.319653+00 f t TOTAL 0.00 3 7447 \N +291680 2025-09-12 23:03:02.321239+00 2025-09-12 23:03:02.321249+00 f t ADELANTO 0.00 4 7447 \N +291769 2025-09-13 00:03:33.351913+00 2025-09-13 00:03:33.351921+00 f t SUBTOTAL 55000.00 1 7450 \N +291770 2025-09-13 00:03:33.354076+00 2025-09-13 00:03:33.354083+00 f t DESCUENTO 0.00 2 7450 \N +291771 2025-09-13 00:03:33.355594+00 2025-09-13 00:03:33.355602+00 f t TOTAL 55000.00 3 7450 \N +291772 2025-09-13 00:03:33.357119+00 2025-09-13 00:03:33.357126+00 f t ADELANTO 11000.00 4 7450 \N +286237 2025-09-10 22:03:12.449899+00 2025-09-10 22:03:12.449912+00 f t SUBTOTAL 30000.00 1 7304 \N +286238 2025-09-10 22:03:12.451794+00 2025-09-10 22:03:12.451803+00 f t DESCUENTO 0.00 2 7304 \N +286239 2025-09-10 22:03:12.453218+00 2025-09-10 22:03:12.453227+00 f t TOTAL 30000.00 3 7304 \N +280777 2025-09-09 05:06:48.781001+00 2025-09-09 05:06:48.781013+00 f t SUBTOTAL 140000.00 1 7179 \N +280778 2025-09-09 05:06:48.782771+00 2025-09-09 05:06:48.782779+00 f t DESCUENTO 0.00 2 7179 \N +280779 2025-09-09 05:06:48.784284+00 2025-09-09 05:06:48.784292+00 f t TOTAL 140000.00 3 7179 \N +280780 2025-09-09 05:06:48.785599+00 2025-09-09 05:06:48.785609+00 f t ADELANTO 38000.00 4 7179 \N +286240 2025-09-10 22:03:12.454493+00 2025-09-10 22:03:12.4545+00 f t ADELANTO 30000.00 4 7304 \N +280805 2025-09-09 05:18:06.638388+00 2025-09-09 05:18:06.638402+00 f t SUBTOTAL 68000.00 1 7180 \N +280806 2025-09-09 05:18:06.640834+00 2025-09-09 05:18:06.640847+00 f t DESCUENTO 0.00 2 7180 \N +280807 2025-09-09 05:18:06.643006+00 2025-09-09 05:18:06.643021+00 f t TOTAL 68000.00 3 7180 \N +280808 2025-09-09 05:18:06.645522+00 2025-09-09 05:18:06.645535+00 f t ADELANTO 13000.00 4 7180 \N +286629 2025-09-11 01:07:59.308451+00 2025-09-11 01:07:59.308459+00 f t SUBTOTAL 99400.00 1 7314 \N +286630 2025-09-11 01:07:59.310171+00 2025-09-11 01:07:59.310178+00 f t DESCUENTO 0.00 2 7314 \N +286631 2025-09-11 01:07:59.311315+00 2025-09-11 01:07:59.31132+00 f t TOTAL 99400.00 3 7314 \N +286632 2025-09-11 01:07:59.312424+00 2025-09-11 01:07:59.312429+00 f t ADELANTO 58900.00 4 7314 \N +280833 2025-09-09 07:08:09.716+00 2025-09-09 07:08:09.716013+00 f t SUBTOTAL 92000.00 1 7181 \N +280834 2025-09-09 07:08:09.718267+00 2025-09-09 07:08:09.718279+00 f t DESCUENTO 0.00 2 7181 \N +280835 2025-09-09 07:08:09.720068+00 2025-09-09 07:08:09.72008+00 f t TOTAL 92000.00 3 7181 \N +280836 2025-09-09 07:08:09.721557+00 2025-09-09 07:08:09.721566+00 f t ADELANTO 20500.00 4 7181 \N +283033 2025-09-09 19:58:08.990127+00 2025-09-09 19:58:08.99014+00 f t SUBTOTAL 92000.00 1 7220 \N +283034 2025-09-09 19:58:08.992457+00 2025-09-09 19:58:08.992469+00 f t DESCUENTO 0.00 2 7220 \N +283035 2025-09-09 19:58:08.994999+00 2025-09-09 19:58:08.995012+00 f t TOTAL 92000.00 3 7220 \N +283036 2025-09-09 19:58:08.996885+00 2025-09-09 19:58:08.996897+00 f t ADELANTO 22000.00 4 7220 \N +283133 2025-09-09 21:34:15.818708+00 2025-09-09 21:34:15.818717+00 f t SUBTOTAL 70000.00 1 7225 \N +283134 2025-09-09 21:34:15.820495+00 2025-09-09 21:34:15.820502+00 f t DESCUENTO 0.00 2 7225 \N +283135 2025-09-09 21:34:15.82192+00 2025-09-09 21:34:15.821927+00 f t TOTAL 70000.00 3 7225 \N +283136 2025-09-09 21:34:15.823052+00 2025-09-09 21:34:15.823058+00 f t ADELANTO 19000.00 4 7225 \N +283221 2025-09-09 22:08:24.400715+00 2025-09-09 22:08:24.400727+00 f t SUBTOTAL 70000.00 1 7227 \N +283222 2025-09-09 22:08:24.402673+00 2025-09-09 22:08:24.402683+00 f t DESCUENTO 0.00 2 7227 \N +283223 2025-09-09 22:08:24.404148+00 2025-09-09 22:08:24.404157+00 f t TOTAL 70000.00 3 7227 \N +283224 2025-09-09 22:08:24.405398+00 2025-09-09 22:08:24.405406+00 f t ADELANTO 19000.00 4 7227 \N +283397 2025-09-10 00:18:09.433943+00 2025-09-10 00:18:09.433953+00 f t SUBTOTAL 0.00 1 7233 \N +283398 2025-09-10 00:18:09.435829+00 2025-09-10 00:18:09.435839+00 f t DESCUENTO 0.00 2 7233 \N +283399 2025-09-10 00:18:09.437155+00 2025-09-10 00:18:09.437162+00 f t TOTAL 0.00 3 7233 \N +283400 2025-09-10 00:18:09.438162+00 2025-09-10 00:18:09.438168+00 f t ADELANTO 0.00 4 7233 \N +283565 2025-09-10 01:19:24.133746+00 2025-09-10 01:19:24.133755+00 f t SUBTOTAL 0.00 1 7236 \N +283566 2025-09-10 01:19:24.135325+00 2025-09-10 01:19:24.135331+00 f t DESCUENTO 0.00 2 7236 \N +283567 2025-09-10 01:19:24.136463+00 2025-09-10 01:19:24.136468+00 f t TOTAL 0.00 3 7236 \N +283568 2025-09-10 01:19:24.137489+00 2025-09-10 01:19:24.137495+00 f t ADELANTO 0.00 4 7236 \N +290029 2025-09-12 11:51:04.610361+00 2025-09-12 11:51:04.610369+00 f t SUBTOTAL 88000.00 1 7401 \N +290030 2025-09-12 11:51:04.612597+00 2025-09-12 11:51:04.612605+00 f t DESCUENTO 0.00 2 7401 \N +290031 2025-09-12 11:51:04.614071+00 2025-09-12 11:51:04.614078+00 f t TOTAL 88000.00 3 7401 \N +290032 2025-09-12 11:51:04.615321+00 2025-09-12 11:51:04.615327+00 f t ADELANTO 19500.00 4 7401 \N +290393 2025-09-12 13:25:41.156828+00 2025-09-12 13:25:41.156836+00 f t SUBTOTAL 55000.00 1 7411 \N +290394 2025-09-12 13:25:41.158572+00 2025-09-12 13:25:41.158579+00 f t DESCUENTO 0.00 2 7411 \N +290395 2025-09-12 13:25:41.159835+00 2025-09-12 13:25:41.15984+00 f t TOTAL 55000.00 3 7411 \N +290396 2025-09-12 13:25:41.160783+00 2025-09-12 13:25:41.160788+00 f t ADELANTO 11000.00 4 7411 \N +283961 2025-09-10 08:47:35.913924+00 2025-09-10 08:47:35.913933+00 f t SUBTOTAL 55000.00 1 7245 \N +283962 2025-09-10 08:47:35.915807+00 2025-09-10 08:47:35.915814+00 f t DESCUENTO 0.00 2 7245 \N +283963 2025-09-10 08:47:35.916897+00 2025-09-10 08:47:35.916903+00 f t TOTAL 55000.00 3 7245 \N +283964 2025-09-10 08:47:35.917984+00 2025-09-10 08:47:35.917993+00 f t ADELANTO 11000.00 4 7245 \N +303661 2025-09-18 03:43:30.043074+00 2025-09-18 03:43:30.043083+00 f t SUBTOTAL 46000.00 1 7711 \N +303662 2025-09-18 03:43:30.044969+00 2025-09-18 03:43:30.044976+00 f t DESCUENTO 0.00 2 7711 \N +303663 2025-09-18 03:43:30.046335+00 2025-09-18 03:43:30.046341+00 f t TOTAL 46000.00 3 7711 \N +303664 2025-09-18 03:43:30.047499+00 2025-09-18 03:43:30.047504+00 f t ADELANTO 11000.00 4 7711 \N +284105 2025-09-10 11:29:39.47016+00 2025-09-10 11:29:39.470168+00 f t SUBTOTAL 78000.00 1 7247 \N +284106 2025-09-10 11:29:39.471957+00 2025-09-10 11:29:39.471964+00 f t DESCUENTO 0.00 2 7247 \N +284107 2025-09-10 11:29:39.4734+00 2025-09-10 11:29:39.473406+00 f t TOTAL 78000.00 3 7247 \N +284108 2025-09-10 11:29:39.474372+00 2025-09-10 11:29:39.474377+00 f t ADELANTO 13000.00 4 7247 \N +284257 2025-09-10 11:54:59.439496+00 2025-09-10 11:54:59.439504+00 f t SUBTOTAL 55000.00 1 7250 \N +284258 2025-09-10 11:54:59.444328+00 2025-09-10 11:54:59.444337+00 f t DESCUENTO 0.00 2 7250 \N +284259 2025-09-10 11:54:59.445898+00 2025-09-10 11:54:59.445905+00 f t TOTAL 55000.00 3 7250 \N +284260 2025-09-10 11:54:59.447093+00 2025-09-10 11:54:59.447098+00 f t ADELANTO 11000.00 4 7250 \N +284337 2025-09-10 12:53:41.847769+00 2025-09-10 12:53:41.847779+00 f t SUBTOTAL 55000.00 1 7254 \N +284338 2025-09-10 12:53:41.849459+00 2025-09-10 12:53:41.849465+00 f t DESCUENTO 0.00 2 7254 \N +284339 2025-09-10 12:53:41.850595+00 2025-09-10 12:53:41.850602+00 f t TOTAL 55000.00 3 7254 \N +284340 2025-09-10 12:53:41.851809+00 2025-09-10 12:53:41.851815+00 f t ADELANTO 11000.00 4 7254 \N +284721 2025-09-10 16:41:13.788502+00 2025-09-10 16:41:13.78851+00 f t SUBTOTAL 46000.00 1 7267 \N +284722 2025-09-10 16:41:13.7901+00 2025-09-10 16:41:13.790105+00 f t DESCUENTO 0.00 2 7267 \N +284723 2025-09-10 16:41:13.791072+00 2025-09-10 16:41:13.791077+00 f t TOTAL 46000.00 3 7267 \N +284724 2025-09-10 16:41:13.792158+00 2025-09-10 16:41:13.792162+00 f t ADELANTO 11000.00 4 7267 \N +297429 2025-09-15 04:10:05.861326+00 2025-09-15 04:10:05.861341+00 f t SUBTOTAL 49000.00 1 7549 \N +297430 2025-09-15 04:10:05.865619+00 2025-09-15 04:10:05.865632+00 f t DESCUENTO 0.00 2 7549 \N +297431 2025-09-15 04:10:05.868166+00 2025-09-15 04:10:05.86818+00 f t TOTAL 49000.00 3 7549 \N +297432 2025-09-15 04:10:05.870493+00 2025-09-15 04:10:05.870506+00 f t ADELANTO 49000.00 4 7549 \N +285097 2025-09-10 19:17:06.49494+00 2025-09-10 19:17:06.494948+00 f t SUBTOTAL 100900.00 1 7282 \N +285098 2025-09-10 19:17:06.49667+00 2025-09-10 19:17:06.496678+00 f t DESCUENTO 0.00 2 7282 \N +285099 2025-09-10 19:17:06.498528+00 2025-09-10 19:17:06.498536+00 f t TOTAL 100900.00 3 7282 \N +285100 2025-09-10 19:17:06.499927+00 2025-09-10 19:17:06.499934+00 f t ADELANTO 60400.00 4 7282 \N +280993 2025-09-09 09:39:11.190483+00 2025-09-09 09:39:11.190492+00 f t SUBTOTAL 0.00 1 7182 \N +280994 2025-09-09 09:39:11.192659+00 2025-09-09 09:39:11.192669+00 f t DESCUENTO 0.00 2 7182 \N +280995 2025-09-09 09:39:11.194113+00 2025-09-09 09:39:11.194122+00 f t TOTAL 0.00 3 7182 \N +280996 2025-09-09 09:39:11.195558+00 2025-09-09 09:39:11.195564+00 f t ADELANTO 0.00 4 7182 \N +281001 2025-09-09 09:53:11.959773+00 2025-09-09 09:53:11.959786+00 f t SUBTOTAL 0.00 1 7183 \N +281002 2025-09-09 09:53:11.961293+00 2025-09-09 09:53:11.961302+00 f t DESCUENTO 0.00 2 7183 \N +281003 2025-09-09 09:53:11.962579+00 2025-09-09 09:53:11.962587+00 f t TOTAL 0.00 3 7183 \N +281004 2025-09-09 09:53:11.963919+00 2025-09-09 09:53:11.963927+00 f t ADELANTO 0.00 4 7183 \N +291685 2025-09-12 23:08:55.167262+00 2025-09-12 23:08:55.167271+00 f t SUBTOTAL 0.00 1 7448 \N +291686 2025-09-12 23:08:55.168595+00 2025-09-12 23:08:55.168601+00 f t DESCUENTO 0.00 2 7448 \N +291687 2025-09-12 23:08:55.169634+00 2025-09-12 23:08:55.169639+00 f t TOTAL 0.00 3 7448 \N +291688 2025-09-12 23:08:55.17064+00 2025-09-12 23:08:55.170645+00 f t ADELANTO 0.00 4 7448 \N +285785 2025-09-10 20:02:20.117609+00 2025-09-10 20:02:20.117619+00 f t SUBTOTAL 99400.00 1 7294 \N +285786 2025-09-10 20:02:20.119074+00 2025-09-10 20:02:20.119081+00 f t DESCUENTO 0.00 2 7294 \N +285787 2025-09-10 20:02:20.120209+00 2025-09-10 20:02:20.120214+00 f t TOTAL 99400.00 3 7294 \N +285788 2025-09-10 20:02:20.121291+00 2025-09-10 20:02:20.121297+00 f t ADELANTO 58900.00 4 7294 \N +285853 2025-09-10 20:06:30.956374+00 2025-09-10 20:06:30.956383+00 f t SUBTOTAL 46000.00 1 7295 \N +285854 2025-09-10 20:06:30.958307+00 2025-09-10 20:06:30.958316+00 f t DESCUENTO 0.00 2 7295 \N +285855 2025-09-10 20:06:30.959503+00 2025-09-10 20:06:30.959509+00 f t TOTAL 46000.00 3 7295 \N +285856 2025-09-10 20:06:30.960584+00 2025-09-10 20:06:30.960589+00 f t ADELANTO 11000.00 4 7295 \N +291777 2025-09-13 00:06:21.818001+00 2025-09-13 00:06:21.818009+00 f t SUBTOTAL 0.00 1 7452 \N +291778 2025-09-13 00:06:21.81947+00 2025-09-13 00:06:21.819478+00 f t DESCUENTO 0.00 2 7452 \N +291779 2025-09-13 00:06:21.820856+00 2025-09-13 00:06:21.820863+00 f t TOTAL 0.00 3 7452 \N +291780 2025-09-13 00:06:21.821979+00 2025-09-13 00:06:21.821985+00 f t ADELANTO 0.00 4 7452 \N +302629 2025-09-17 19:16:14.856596+00 2025-09-17 19:16:14.856604+00 f t SUBTOTAL 55000.00 1 7684 \N +302630 2025-09-17 19:16:14.858579+00 2025-09-17 19:16:14.858587+00 f t DESCUENTO 0.00 2 7684 \N +302631 2025-09-17 19:16:14.860169+00 2025-09-17 19:16:14.860176+00 f t TOTAL 55000.00 3 7684 \N +302632 2025-09-17 19:16:14.861553+00 2025-09-17 19:16:14.861559+00 f t ADELANTO 11000.00 4 7684 \N +302761 2025-09-17 19:52:18.484515+00 2025-09-17 19:52:18.484527+00 f t SUBTOTAL 70000.00 1 7689 \N +302762 2025-09-17 19:52:18.48693+00 2025-09-17 19:52:18.486943+00 f t DESCUENTO 0.00 2 7689 \N +302763 2025-09-17 19:52:18.488485+00 2025-09-17 19:52:18.488495+00 f t TOTAL 70000.00 3 7689 \N +302764 2025-09-17 19:52:18.48971+00 2025-09-17 19:52:18.489718+00 f t ADELANTO 19000.00 4 7689 \N +309625 2025-09-19 22:28:18.078468+00 2025-09-19 22:28:18.078476+00 f t SUBTOTAL 55000.00 1 7854 \N +309626 2025-09-19 22:28:18.080266+00 2025-09-19 22:28:18.080274+00 f t DESCUENTO 0.00 2 7854 \N +309627 2025-09-19 22:28:18.081458+00 2025-09-19 22:28:18.081464+00 f t TOTAL 55000.00 3 7854 \N +309628 2025-09-19 22:28:18.082429+00 2025-09-19 22:28:18.082434+00 f t ADELANTO 11000.00 4 7854 \N +289733 2025-09-12 03:55:27.646558+00 2025-09-12 03:55:27.646565+00 f t SUBTOTAL 70000.00 1 7390 \N +289734 2025-09-12 03:55:27.648263+00 2025-09-12 03:55:27.648269+00 f t DESCUENTO 0.00 2 7390 \N +289735 2025-09-12 03:55:27.649363+00 2025-09-12 03:55:27.649368+00 f t TOTAL 70000.00 3 7390 \N +289736 2025-09-12 03:55:27.650391+00 2025-09-12 03:55:27.650396+00 f t ADELANTO 19000.00 4 7390 \N +290037 2025-09-12 12:02:34.903456+00 2025-09-12 12:02:34.903469+00 f t SUBTOTAL 0.00 1 7402 \N +290038 2025-09-12 12:02:34.905069+00 2025-09-12 12:02:34.905076+00 f t DESCUENTO 0.00 2 7402 \N +290039 2025-09-12 12:02:34.90623+00 2025-09-12 12:02:34.906238+00 f t TOTAL 0.00 3 7402 \N +290040 2025-09-12 12:02:34.907484+00 2025-09-12 12:02:34.907489+00 f t ADELANTO 0.00 4 7402 \N +283573 2025-09-10 01:23:31.333164+00 2025-09-10 01:23:31.333172+00 f t SUBTOTAL 0.00 1 7237 \N +283574 2025-09-10 01:23:31.334466+00 2025-09-10 01:23:31.334472+00 f t DESCUENTO 0.00 2 7237 \N +283575 2025-09-10 01:23:31.335369+00 2025-09-10 01:23:31.335374+00 f t TOTAL 0.00 3 7237 \N +283576 2025-09-10 01:23:31.336233+00 2025-09-10 01:23:31.336238+00 f t ADELANTO 0.00 4 7237 \N +297085 2025-09-15 00:00:10.479412+00 2025-09-15 00:00:10.479427+00 f t SUBTOTAL 140000.00 1 7543 \N +297086 2025-09-15 00:00:10.497728+00 2025-09-15 00:00:10.497741+00 f t DESCUENTO 0.00 2 7543 \N +297087 2025-09-15 00:00:10.523993+00 2025-09-15 00:00:10.524006+00 f t TOTAL 140000.00 3 7543 \N +297088 2025-09-15 00:00:10.526732+00 2025-09-15 00:00:10.526759+00 f t ADELANTO 38000.00 4 7543 \N +297437 2025-09-15 04:27:05.867965+00 2025-09-15 04:27:05.867974+00 f t SUBTOTAL 0.00 1 7550 \N +297438 2025-09-15 04:27:05.869426+00 2025-09-15 04:27:05.869434+00 f t DESCUENTO 0.00 2 7550 \N +297439 2025-09-15 04:27:05.870481+00 2025-09-15 04:27:05.870487+00 f t TOTAL 0.00 3 7550 \N +297440 2025-09-15 04:27:05.871393+00 2025-09-15 04:27:05.871398+00 f t ADELANTO 0.00 4 7550 \N +284501 2025-09-10 15:24:19.353614+00 2025-09-10 15:24:19.353624+00 f t SUBTOTAL 88000.00 1 7260 \N +284502 2025-09-10 15:24:19.35554+00 2025-09-10 15:24:19.355548+00 f t DESCUENTO 0.00 2 7260 \N +284503 2025-09-10 15:24:19.357096+00 2025-09-10 15:24:19.357102+00 f t TOTAL 88000.00 3 7260 \N +284504 2025-09-10 15:24:19.35821+00 2025-09-10 15:24:19.358215+00 f t ADELANTO 19500.00 4 7260 \N +291693 2025-09-12 23:41:47.453231+00 2025-09-12 23:41:47.453239+00 f t SUBTOTAL 0.00 1 7449 \N +291694 2025-09-12 23:41:47.454394+00 2025-09-12 23:41:47.454402+00 f t DESCUENTO 0.00 2 7449 \N +291695 2025-09-12 23:41:47.455352+00 2025-09-12 23:41:47.455357+00 f t TOTAL 0.00 3 7449 \N +291696 2025-09-12 23:41:47.456358+00 2025-09-12 23:41:47.456363+00 f t ADELANTO 0.00 4 7449 \N +298369 2025-09-15 20:45:19.078022+00 2025-09-15 20:45:19.078034+00 f t SUBTOTAL 0.00 1 7568 \N +298370 2025-09-15 20:45:19.079728+00 2025-09-15 20:45:19.079737+00 f t DESCUENTO 0.00 2 7568 \N +298371 2025-09-15 20:45:19.081257+00 2025-09-15 20:45:19.081266+00 f t TOTAL 0.00 3 7568 \N +298372 2025-09-15 20:45:19.08254+00 2025-09-15 20:45:19.082547+00 f t ADELANTO 0.00 4 7568 \N +281325 2025-09-09 10:08:05.045206+00 2025-09-09 10:08:05.045215+00 f t SUBTOTAL 32500.00 1 7184 \N +281326 2025-09-09 10:08:05.04768+00 2025-09-09 10:08:05.047689+00 f t DESCUENTO 0.00 2 7184 \N +281327 2025-09-09 10:08:05.049151+00 2025-09-09 10:08:05.049157+00 f t TOTAL 32500.00 3 7184 \N +281328 2025-09-09 10:08:05.050307+00 2025-09-09 10:08:05.050314+00 f t ADELANTO 32500.00 4 7184 \N +281349 2025-09-09 11:20:38.931094+00 2025-09-09 11:20:38.931107+00 f t SUBTOTAL 0.00 1 7186 \N +281350 2025-09-09 11:20:38.932769+00 2025-09-09 11:20:38.932779+00 f t DESCUENTO 0.00 2 7186 \N +281351 2025-09-09 11:20:38.934352+00 2025-09-09 11:20:38.934361+00 f t TOTAL 0.00 3 7186 \N +281352 2025-09-09 11:20:38.935791+00 2025-09-09 11:20:38.935801+00 f t ADELANTO 0.00 4 7186 \N +299321 2025-09-16 06:10:03.616112+00 2025-09-16 06:10:03.616126+00 f t SUBTOTAL 0.00 1 7598 \N +299322 2025-09-16 06:10:03.623422+00 2025-09-16 06:10:03.623437+00 f t DESCUENTO 0.00 2 7598 \N +299323 2025-09-16 06:10:03.62708+00 2025-09-16 06:10:03.627094+00 f t TOTAL 0.00 3 7598 \N +299324 2025-09-16 06:10:03.634511+00 2025-09-16 06:10:03.634524+00 f t ADELANTO 0.00 4 7598 \N +293113 2025-09-13 18:07:28.943975+00 2025-09-13 18:07:28.943984+00 f t SUBTOTAL 55000.00 1 7489 \N +293114 2025-09-13 18:07:28.9461+00 2025-09-13 18:07:28.946111+00 f t DESCUENTO 0.00 2 7489 \N +293115 2025-09-13 18:07:28.947583+00 2025-09-13 18:07:28.94759+00 f t TOTAL 55000.00 3 7489 \N +293116 2025-09-13 18:07:28.949045+00 2025-09-13 18:07:28.949052+00 f t ADELANTO 11000.00 4 7489 \N +286305 2025-09-10 22:42:05.679664+00 2025-09-10 22:42:05.679672+00 f t SUBTOTAL 55000.00 1 7306 \N +286306 2025-09-10 22:42:05.681551+00 2025-09-10 22:42:05.681563+00 f t DESCUENTO 0.00 2 7306 \N +286307 2025-09-10 22:42:05.682891+00 2025-09-10 22:42:05.682897+00 f t TOTAL 55000.00 3 7306 \N +286308 2025-09-10 22:42:05.683937+00 2025-09-10 22:42:05.683943+00 f t ADELANTO 11000.00 4 7306 \N +299773 2025-09-16 13:43:38.370182+00 2025-09-16 13:43:38.370191+00 f t SUBTOTAL 55000.00 1 7613 \N +299774 2025-09-16 13:43:38.372075+00 2025-09-16 13:43:38.372083+00 f t DESCUENTO 0.00 2 7613 \N +299775 2025-09-16 13:43:38.37351+00 2025-09-16 13:43:38.373517+00 f t TOTAL 55000.00 3 7613 \N +299776 2025-09-16 13:43:38.374948+00 2025-09-16 13:43:38.374957+00 f t ADELANTO 11000.00 4 7613 \N +299825 2025-09-16 14:56:50.963251+00 2025-09-16 14:56:50.96326+00 f t SUBTOTAL 92000.00 1 7614 \N +299826 2025-09-16 14:56:50.965397+00 2025-09-16 14:56:50.965405+00 f t DESCUENTO 0.00 2 7614 \N +299827 2025-09-16 14:56:50.966971+00 2025-09-16 14:56:50.966981+00 f t TOTAL 92000.00 3 7614 \N +299828 2025-09-16 14:56:50.968416+00 2025-09-16 14:56:50.968426+00 f t ADELANTO 20500.00 4 7614 \N +286685 2025-09-11 01:09:58.494841+00 2025-09-11 01:09:58.494851+00 f t SUBTOTAL 46000.00 1 7315 \N +286686 2025-09-11 01:09:58.496878+00 2025-09-11 01:09:58.496886+00 f t DESCUENTO 0.00 2 7315 \N +286687 2025-09-11 01:09:58.498508+00 2025-09-11 01:09:58.498514+00 f t TOTAL 46000.00 3 7315 \N +286688 2025-09-11 01:09:58.499677+00 2025-09-11 01:09:58.499682+00 f t ADELANTO 11000.00 4 7315 \N +286725 2025-09-11 01:12:27.034653+00 2025-09-11 01:12:27.034662+00 f t SUBTOTAL 99400.00 1 7316 \N +286726 2025-09-11 01:12:27.036565+00 2025-09-11 01:12:27.036574+00 f t DESCUENTO 0.00 2 7316 \N +286727 2025-09-11 01:12:27.037817+00 2025-09-11 01:12:27.037822+00 f t TOTAL 99400.00 3 7316 \N +286728 2025-09-11 01:12:27.03898+00 2025-09-11 01:12:27.038986+00 f t ADELANTO 58900.00 4 7316 \N +295873 2025-09-14 14:20:32.262686+00 2025-09-14 14:20:32.262699+00 f t SUBTOTAL 78000.00 1 7528 \N +295874 2025-09-14 14:20:32.265073+00 2025-09-14 14:20:32.265083+00 f t DESCUENTO 0.00 2 7528 \N +295875 2025-09-14 14:20:32.266716+00 2025-09-14 14:20:32.266725+00 f t TOTAL 78000.00 3 7528 \N +295876 2025-09-14 14:20:32.268261+00 2025-09-14 14:20:32.268268+00 f t ADELANTO 21500.00 4 7528 \N +316933 2025-09-22 15:24:52.115654+00 2025-09-22 15:24:52.115663+00 f t SUBTOTAL 0.00 1 8009 \N +316934 2025-09-22 15:24:52.117515+00 2025-09-22 15:24:52.117522+00 f t DESCUENTO 0.00 2 8009 \N +316935 2025-09-22 15:24:52.118603+00 2025-09-22 15:24:52.118608+00 f t TOTAL 0.00 3 8009 \N +316936 2025-09-22 15:24:52.119643+00 2025-09-22 15:24:52.119649+00 f t ADELANTO 0.00 4 8009 \N +289741 2025-09-12 04:04:24.195595+00 2025-09-12 04:04:24.195604+00 f t SUBTOTAL 0.00 1 7391 \N +289742 2025-09-12 04:04:24.197128+00 2025-09-12 04:04:24.197135+00 f t DESCUENTO 0.00 2 7391 \N +289743 2025-09-12 04:04:24.198543+00 2025-09-12 04:04:24.198549+00 f t TOTAL 0.00 3 7391 \N +289744 2025-09-12 04:04:24.199716+00 2025-09-12 04:04:24.199721+00 f t ADELANTO 0.00 4 7391 \N +281465 2025-09-09 12:59:14.933361+00 2025-09-09 12:59:14.933375+00 f t SUBTOTAL 55000.00 1 7188 \N +281466 2025-09-09 12:59:14.935303+00 2025-09-09 12:59:14.935312+00 f t DESCUENTO 0.00 2 7188 \N +281467 2025-09-09 12:59:14.936917+00 2025-09-09 12:59:14.936925+00 f t TOTAL 55000.00 3 7188 \N +281468 2025-09-09 12:59:14.938258+00 2025-09-09 12:59:14.938267+00 f t ADELANTO 11000.00 4 7188 \N +283581 2025-09-10 01:26:15.547266+00 2025-09-10 01:26:15.547275+00 f t SUBTOTAL 0.00 1 7238 \N +283582 2025-09-10 01:26:15.548525+00 2025-09-10 01:26:15.548532+00 f t DESCUENTO 0.00 2 7238 \N +283583 2025-09-10 01:26:15.549619+00 2025-09-10 01:26:15.549625+00 f t TOTAL 0.00 3 7238 \N +283584 2025-09-10 01:26:15.550567+00 2025-09-10 01:26:15.550572+00 f t ADELANTO 0.00 4 7238 \N +281493 2025-09-09 13:06:23.135617+00 2025-09-09 13:06:23.13563+00 f t SUBTOTAL 46000.00 1 7189 \N +281494 2025-09-09 13:06:23.137446+00 2025-09-09 13:06:23.137458+00 f t DESCUENTO 0.00 2 7189 \N +281495 2025-09-09 13:06:23.138775+00 2025-09-09 13:06:23.138784+00 f t TOTAL 46000.00 3 7189 \N +281496 2025-09-09 13:06:23.140124+00 2025-09-09 13:06:23.140132+00 f t ADELANTO 11000.00 4 7189 \N +290581 2025-09-12 14:51:15.458793+00 2025-09-12 14:51:15.458802+00 f t SUBTOTAL 55000.00 1 7418 \N +290582 2025-09-12 14:51:15.46077+00 2025-09-12 14:51:15.460778+00 f t DESCUENTO 0.00 2 7418 \N +290583 2025-09-12 14:51:15.461979+00 2025-09-12 14:51:15.461986+00 f t TOTAL 55000.00 3 7418 \N +290584 2025-09-12 14:51:15.463127+00 2025-09-12 14:51:15.463152+00 f t ADELANTO 11000.00 4 7418 \N +290845 2025-09-12 17:27:10.267783+00 2025-09-12 17:27:10.267795+00 f t SUBTOTAL 70000.00 1 7427 \N +290846 2025-09-12 17:27:10.26951+00 2025-09-12 17:27:10.269517+00 f t DESCUENTO 0.00 2 7427 \N +290847 2025-09-12 17:27:10.270742+00 2025-09-12 17:27:10.270748+00 f t TOTAL 70000.00 3 7427 \N +290848 2025-09-12 17:27:10.27176+00 2025-09-12 17:27:10.271766+00 f t ADELANTO 19000.00 4 7427 \N +297445 2025-09-15 11:54:30.495875+00 2025-09-15 11:54:30.495885+00 f t SUBTOTAL 0.00 1 7551 \N +297446 2025-09-15 11:54:30.497454+00 2025-09-15 11:54:30.497462+00 f t DESCUENTO 0.00 2 7551 \N +297447 2025-09-15 11:54:30.499624+00 2025-09-15 11:54:30.499632+00 f t TOTAL 0.00 3 7551 \N +297448 2025-09-15 11:54:30.500951+00 2025-09-15 11:54:30.500959+00 f t ADELANTO 0.00 4 7551 \N +281545 2025-09-09 13:11:09.032359+00 2025-09-09 13:11:09.03237+00 f t SUBTOTAL 70000.00 1 7190 \N +281546 2025-09-09 13:11:09.034178+00 2025-09-09 13:11:09.034186+00 f t DESCUENTO 0.00 2 7190 \N +281547 2025-09-09 13:11:09.035493+00 2025-09-09 13:11:09.0355+00 f t TOTAL 70000.00 3 7190 \N +281548 2025-09-09 13:11:09.03674+00 2025-09-09 13:11:09.036745+00 f t ADELANTO 19000.00 4 7190 \N +284809 2025-09-10 17:08:44.966333+00 2025-09-10 17:08:44.966342+00 f t SUBTOTAL 0.00 1 7272 \N +284810 2025-09-10 17:08:44.969244+00 2025-09-10 17:08:44.969254+00 f t DESCUENTO 0.00 2 7272 \N +284811 2025-09-10 17:08:44.970909+00 2025-09-10 17:08:44.970919+00 f t TOTAL 0.00 3 7272 \N +284812 2025-09-10 17:08:44.972481+00 2025-09-10 17:08:44.972488+00 f t ADELANTO 0.00 4 7272 \N +284969 2025-09-10 19:05:14.962936+00 2025-09-10 19:05:14.962948+00 f t SUBTOTAL 70000.00 1 7280 \N +284970 2025-09-10 19:05:14.964568+00 2025-09-10 19:05:14.964577+00 f t DESCUENTO 0.00 2 7280 \N +284971 2025-09-10 19:05:14.965712+00 2025-09-10 19:05:14.965718+00 f t TOTAL 70000.00 3 7280 \N +284972 2025-09-10 19:05:14.966774+00 2025-09-10 19:05:14.966779+00 f t ADELANTO 19000.00 4 7280 \N +281573 2025-09-09 13:13:59.491979+00 2025-09-09 13:13:59.491988+00 f t SUBTOTAL 54000.00 1 7191 \N +281574 2025-09-09 13:13:59.494182+00 2025-09-09 13:13:59.494191+00 f t DESCUENTO 0.00 2 7191 \N +281575 2025-09-09 13:13:59.495905+00 2025-09-09 13:13:59.495912+00 f t TOTAL 54000.00 3 7191 \N +281576 2025-09-09 13:13:59.497114+00 2025-09-09 13:13:59.497121+00 f t ADELANTO 13500.00 4 7191 \N +281581 2025-09-09 13:48:10.315348+00 2025-09-09 13:48:10.315363+00 f t SUBTOTAL 0.00 1 7192 \N +281582 2025-09-09 13:48:10.317179+00 2025-09-09 13:48:10.317189+00 f t DESCUENTO 0.00 2 7192 \N +281583 2025-09-09 13:48:10.318757+00 2025-09-09 13:48:10.318766+00 f t TOTAL 0.00 3 7192 \N +281584 2025-09-09 13:48:10.320212+00 2025-09-09 13:48:10.320219+00 f t ADELANTO 0.00 4 7192 \N +285173 2025-09-10 19:21:40.857765+00 2025-09-10 19:21:40.857774+00 f t SUBTOTAL 108000.00 1 7283 \N +285174 2025-09-10 19:21:40.859744+00 2025-09-10 19:21:40.859752+00 f t DESCUENTO 0.00 2 7283 \N +281589 2025-09-09 13:49:43.412176+00 2025-09-09 13:49:43.412186+00 f t SUBTOTAL 0.00 1 7193 \N +281590 2025-09-09 13:49:43.413703+00 2025-09-09 13:49:43.41371+00 f t DESCUENTO 0.00 2 7193 \N +281591 2025-09-09 13:49:43.415115+00 2025-09-09 13:49:43.415121+00 f t TOTAL 0.00 3 7193 \N +281592 2025-09-09 13:49:43.416253+00 2025-09-09 13:49:43.416259+00 f t ADELANTO 0.00 4 7193 \N +285175 2025-09-10 19:21:40.861003+00 2025-09-10 19:21:40.861009+00 f t TOTAL 108000.00 3 7283 \N +285176 2025-09-10 19:21:40.862177+00 2025-09-10 19:21:40.862185+00 f t ADELANTO 27000.00 4 7283 \N +291881 2025-09-13 00:52:49.726799+00 2025-09-13 00:52:49.726806+00 f t SUBTOTAL 0.00 1 7458 \N +291882 2025-09-13 00:52:49.728995+00 2025-09-13 00:52:49.729002+00 f t DESCUENTO 0.00 2 7458 \N +291883 2025-09-13 00:52:49.730504+00 2025-09-13 00:52:49.730512+00 f t TOTAL 0.00 3 7458 \N +291884 2025-09-13 00:52:49.732171+00 2025-09-13 00:52:49.73218+00 f t ADELANTO 0.00 4 7458 \N +291957 2025-09-13 00:55:58.971085+00 2025-09-13 00:55:58.971094+00 f t SUBTOTAL 0.00 1 7459 \N +291958 2025-09-13 00:55:58.973404+00 2025-09-13 00:55:58.973415+00 f t DESCUENTO 0.00 2 7459 \N +291959 2025-09-13 00:55:58.975052+00 2025-09-13 00:55:58.975062+00 f t TOTAL 0.00 3 7459 \N +291960 2025-09-13 00:55:58.976731+00 2025-09-13 00:55:58.97674+00 f t ADELANTO 0.00 4 7459 \N +281621 2025-09-09 13:56:14.729237+00 2025-09-09 13:56:14.729246+00 f t SUBTOTAL 55000.00 1 7187 \N +281622 2025-09-09 13:56:14.730918+00 2025-09-09 13:56:14.730925+00 f t DESCUENTO 0.00 2 7187 \N +281623 2025-09-09 13:56:14.732111+00 2025-09-09 13:56:14.732118+00 f t TOTAL 55000.00 3 7187 \N +281624 2025-09-09 13:56:14.733152+00 2025-09-09 13:56:14.733158+00 f t ADELANTO 11000.00 4 7187 \N +286733 2025-09-11 01:23:50.195337+00 2025-09-11 01:23:50.195347+00 f t SUBTOTAL 0.00 1 7317 \N +286734 2025-09-11 01:23:50.197053+00 2025-09-11 01:23:50.197062+00 f t DESCUENTO 0.00 2 7317 \N +286735 2025-09-11 01:23:50.198885+00 2025-09-11 01:23:50.198892+00 f t TOTAL 0.00 3 7317 \N +286736 2025-09-11 01:23:50.200003+00 2025-09-11 01:23:50.200008+00 f t ADELANTO 0.00 4 7317 \N +324135 2025-09-24 22:46:44.617184+00 2025-09-24 22:46:44.617195+00 f t TOTAL 46000.00 3 8200 \N +289637 2025-09-12 03:21:54.878176+00 2025-09-12 03:21:54.878185+00 f t SUBTOTAL 0.00 1 7388 \N +289638 2025-09-12 03:21:54.879852+00 2025-09-12 03:21:54.879859+00 f t DESCUENTO 0.00 2 7388 \N +289639 2025-09-12 03:21:54.880877+00 2025-09-12 03:21:54.880882+00 f t TOTAL 0.00 3 7388 \N +289640 2025-09-12 03:21:54.881953+00 2025-09-12 03:21:54.881958+00 f t ADELANTO 0.00 4 7388 \N +283237 2025-09-09 22:49:51.011802+00 2025-09-09 22:49:51.011813+00 f t SUBTOTAL 0.00 1 7228 \N +283238 2025-09-09 22:49:51.014656+00 2025-09-09 22:49:51.01467+00 f t DESCUENTO 0.00 2 7228 \N +283239 2025-09-09 22:49:51.016559+00 2025-09-09 22:49:51.016569+00 f t TOTAL 0.00 3 7228 \N +283240 2025-09-09 22:49:51.018481+00 2025-09-09 22:49:51.018491+00 f t ADELANTO 0.00 4 7228 \N +283325 2025-09-09 23:53:01.739085+00 2025-09-09 23:53:01.739096+00 f t SUBTOTAL 30000.00 1 7231 \N +283326 2025-09-09 23:53:01.741489+00 2025-09-09 23:53:01.741499+00 f t DESCUENTO 0.00 2 7231 \N +283327 2025-09-09 23:53:01.74356+00 2025-09-09 23:53:01.743568+00 f t TOTAL 30000.00 3 7231 \N +281753 2025-09-09 14:15:50.599236+00 2025-09-09 14:15:50.599246+00 f t SUBTOTAL 215750.00 1 7194 \N +281754 2025-09-09 14:15:50.601562+00 2025-09-09 14:15:50.601571+00 f t DESCUENTO 0.00 2 7194 \N +281755 2025-09-09 14:15:50.603332+00 2025-09-09 14:15:50.603343+00 f t TOTAL 215750.00 3 7194 \N +281756 2025-09-09 14:15:50.605162+00 2025-09-09 14:15:50.605172+00 f t ADELANTO 40750.00 4 7194 \N +283328 2025-09-09 23:53:01.744849+00 2025-09-09 23:53:01.744855+00 f t ADELANTO 30000.00 4 7231 \N +289749 2025-09-12 04:30:19.413176+00 2025-09-12 04:30:19.413186+00 f t SUBTOTAL 0.00 1 7392 \N +289750 2025-09-12 04:30:19.414708+00 2025-09-12 04:30:19.414715+00 f t DESCUENTO 0.00 2 7392 \N +289751 2025-09-12 04:30:19.415933+00 2025-09-12 04:30:19.415938+00 f t TOTAL 0.00 3 7392 \N +289752 2025-09-12 04:30:19.416896+00 2025-09-12 04:30:19.416902+00 f t ADELANTO 0.00 4 7392 \N +281789 2025-09-09 14:25:39.420491+00 2025-09-09 14:25:39.420503+00 f t SUBTOTAL 55000.00 1 7195 \N +281790 2025-09-09 14:25:39.42249+00 2025-09-09 14:25:39.422501+00 f t DESCUENTO 0.00 2 7195 \N +281791 2025-09-09 14:25:39.424159+00 2025-09-09 14:25:39.424169+00 f t TOTAL 55000.00 3 7195 \N +281792 2025-09-09 14:25:39.425683+00 2025-09-09 14:25:39.42569+00 f t ADELANTO 11000.00 4 7195 \N +310825 2025-09-20 13:08:18.742344+00 2025-09-20 13:08:18.742356+00 f t SUBTOTAL 0.00 1 7881 \N +310826 2025-09-20 13:08:18.744729+00 2025-09-20 13:08:18.744737+00 f t DESCUENTO 0.00 2 7881 \N +310827 2025-09-20 13:08:18.745987+00 2025-09-20 13:08:18.745996+00 f t TOTAL 0.00 3 7881 \N +310828 2025-09-20 13:08:18.747427+00 2025-09-20 13:08:18.747433+00 f t ADELANTO 0.00 4 7881 \N +290681 2025-09-12 16:27:35.054513+00 2025-09-12 16:27:35.054523+00 f t SUBTOTAL 0.00 1 7423 \N +290682 2025-09-12 16:27:35.056619+00 2025-09-12 16:27:35.056625+00 f t DESCUENTO 0.00 2 7423 \N +290683 2025-09-12 16:27:35.057867+00 2025-09-12 16:27:35.057872+00 f t TOTAL 0.00 3 7423 \N +290684 2025-09-12 16:27:35.059068+00 2025-09-12 16:27:35.059074+00 f t ADELANTO 0.00 4 7423 \N +284353 2025-09-10 13:18:14.011257+00 2025-09-10 13:18:14.011267+00 f t SUBTOTAL 0.00 1 7255 \N +284354 2025-09-10 13:18:14.012964+00 2025-09-10 13:18:14.012972+00 f t DESCUENTO 0.00 2 7255 \N +284355 2025-09-10 13:18:14.013978+00 2025-09-10 13:18:14.013984+00 f t TOTAL 0.00 3 7255 \N +284356 2025-09-10 13:18:14.014891+00 2025-09-10 13:18:14.014897+00 f t ADELANTO 0.00 4 7255 \N +290849 2025-09-12 17:27:32.443288+00 2025-09-12 17:27:32.443296+00 f t SUBTOTAL 55000.00 1 7424 \N +290850 2025-09-12 17:27:32.445248+00 2025-09-12 17:27:32.445253+00 f t DESCUENTO 0.00 2 7424 \N +290851 2025-09-12 17:27:32.446302+00 2025-09-12 17:27:32.446306+00 f t TOTAL 55000.00 3 7424 \N +290852 2025-09-12 17:27:32.447253+00 2025-09-12 17:27:32.447257+00 f t ADELANTO 11000.00 4 7424 \N +297181 2025-09-15 00:24:43.151247+00 2025-09-15 00:24:43.151256+00 f t SUBTOTAL 92000.00 1 7544 \N +297182 2025-09-15 00:24:43.154024+00 2025-09-15 00:24:43.15403+00 f t DESCUENTO 0.00 2 7544 \N +297183 2025-09-15 00:24:43.155221+00 2025-09-15 00:24:43.155229+00 f t TOTAL 92000.00 3 7544 \N +297184 2025-09-15 00:24:43.156564+00 2025-09-15 00:24:43.156569+00 f t ADELANTO 20500.00 4 7544 \N +284589 2025-09-10 15:37:18.229891+00 2025-09-10 15:37:18.2299+00 f t SUBTOTAL 0.00 1 7264 \N +284590 2025-09-10 15:37:18.231712+00 2025-09-10 15:37:18.231719+00 f t DESCUENTO 0.00 2 7264 \N +284591 2025-09-10 15:37:18.232864+00 2025-09-10 15:37:18.232871+00 f t TOTAL 0.00 3 7264 \N +284592 2025-09-10 15:37:18.234086+00 2025-09-10 15:37:18.234092+00 f t ADELANTO 0.00 4 7264 \N +285181 2025-09-10 19:34:36.020126+00 2025-09-10 19:34:36.02014+00 f t SUBTOTAL 0.00 1 7284 \N +285182 2025-09-10 19:34:36.022099+00 2025-09-10 19:34:36.022111+00 f t DESCUENTO 0.00 2 7284 \N +285183 2025-09-10 19:34:36.023973+00 2025-09-10 19:34:36.023983+00 f t TOTAL 0.00 3 7284 \N +285184 2025-09-10 19:34:36.025576+00 2025-09-10 19:34:36.025585+00 f t ADELANTO 0.00 4 7284 \N +298001 2025-09-15 17:05:46.093551+00 2025-09-15 17:05:46.093559+00 f t SUBTOTAL 87400.00 1 7560 \N +298002 2025-09-15 17:05:46.095839+00 2025-09-15 17:05:46.095848+00 f t DESCUENTO 0.00 2 7560 \N +298003 2025-09-15 17:05:46.097152+00 2025-09-15 17:05:46.097159+00 f t TOTAL 87400.00 3 7560 \N +298004 2025-09-15 17:05:46.098675+00 2025-09-15 17:05:46.098681+00 f t ADELANTO 46900.00 4 7560 \N +293069 2025-09-13 17:54:31.331565+00 2025-09-13 17:54:31.331573+00 f t SUBTOTAL 55000.00 1 7487 \N +293070 2025-09-13 17:54:31.333348+00 2025-09-13 17:54:31.333354+00 f t DESCUENTO 0.00 2 7487 \N +293071 2025-09-13 17:54:31.334482+00 2025-09-13 17:54:31.334487+00 f t TOTAL 55000.00 3 7487 \N +293072 2025-09-13 17:54:31.335487+00 2025-09-13 17:54:31.335492+00 f t ADELANTO 11000.00 4 7487 \N +293173 2025-09-13 18:20:06.678234+00 2025-09-13 18:20:06.678247+00 f t SUBTOTAL 0.00 1 7490 \N +293174 2025-09-13 18:20:06.681208+00 2025-09-13 18:20:06.681221+00 f t DESCUENTO 0.00 2 7490 \N +293175 2025-09-13 18:20:06.683+00 2025-09-13 18:20:06.683011+00 f t TOTAL 0.00 3 7490 \N +293176 2025-09-13 18:20:06.685074+00 2025-09-13 18:20:06.685085+00 f t ADELANTO 0.00 4 7490 \N +299329 2025-09-16 06:11:33.355702+00 2025-09-16 06:11:33.355711+00 f t SUBTOTAL 0.00 1 7599 \N +299330 2025-09-16 06:11:33.360991+00 2025-09-16 06:11:33.360999+00 f t DESCUENTO 0.00 2 7599 \N +299331 2025-09-16 06:11:33.362735+00 2025-09-16 06:11:33.362743+00 f t TOTAL 0.00 3 7599 \N +299332 2025-09-16 06:11:33.364049+00 2025-09-16 06:11:33.364056+00 f t ADELANTO 0.00 4 7599 \N +299409 2025-09-16 10:41:59.169097+00 2025-09-16 10:41:59.169106+00 f t SUBTOTAL 55000.00 1 7603 \N +299410 2025-09-16 10:41:59.171306+00 2025-09-16 10:41:59.171317+00 f t DESCUENTO 0.00 2 7603 \N +299411 2025-09-16 10:41:59.17274+00 2025-09-16 10:41:59.172747+00 f t TOTAL 55000.00 3 7603 \N +299412 2025-09-16 10:41:59.174024+00 2025-09-16 10:41:59.174033+00 f t ADELANTO 11000.00 4 7603 \N +281981 2025-09-09 14:30:59.013518+00 2025-09-09 14:30:59.013527+00 f t SUBTOTAL 124000.00 1 7197 \N +281982 2025-09-09 14:30:59.015278+00 2025-09-09 14:30:59.015284+00 f t DESCUENTO 0.00 2 7197 \N +281983 2025-09-09 14:30:59.016742+00 2025-09-09 14:30:59.01675+00 f t TOTAL 124000.00 3 7197 \N +281984 2025-09-09 14:30:59.018215+00 2025-09-09 14:30:59.018222+00 f t ADELANTO 31000.00 4 7197 \N +281989 2025-09-09 14:31:26.859522+00 2025-09-09 14:31:26.859532+00 f t SUBTOTAL 55000.00 1 7196 \N +281990 2025-09-09 14:31:26.861259+00 2025-09-09 14:31:26.861267+00 f t DESCUENTO 0.00 2 7196 \N +281991 2025-09-09 14:31:26.862626+00 2025-09-09 14:31:26.862633+00 f t TOTAL 55000.00 3 7196 \N +281992 2025-09-09 14:31:26.863765+00 2025-09-09 14:31:26.86377+00 f t ADELANTO 11000.00 4 7196 \N +282017 2025-09-09 14:44:18.531566+00 2025-09-09 14:44:18.531574+00 f t SUBTOTAL 54000.00 1 7198 \N +282018 2025-09-09 14:44:18.533064+00 2025-09-09 14:44:18.53307+00 f t DESCUENTO 0.00 2 7198 \N +282019 2025-09-09 14:44:18.533991+00 2025-09-09 14:44:18.533996+00 f t TOTAL 54000.00 3 7198 \N +282020 2025-09-09 14:44:18.535019+00 2025-09-09 14:44:18.535024+00 f t ADELANTO 13500.00 4 7198 \N +282741 2025-09-09 19:05:51.226773+00 2025-09-09 19:05:51.226782+00 f t SUBTOTAL 70000.00 1 7217 \N +282742 2025-09-09 19:05:51.228448+00 2025-09-09 19:05:51.228454+00 f t DESCUENTO 0.00 2 7217 \N +282743 2025-09-09 19:05:51.2296+00 2025-09-09 19:05:51.229606+00 f t TOTAL 70000.00 3 7217 \N +282744 2025-09-09 19:05:51.230678+00 2025-09-09 19:05:51.230684+00 f t ADELANTO 19000.00 4 7217 \N +282025 2025-09-09 14:51:35.896006+00 2025-09-09 14:51:35.896014+00 f t SUBTOTAL 0.00 1 7199 \N +282026 2025-09-09 14:51:35.897088+00 2025-09-09 14:51:35.897094+00 f t DESCUENTO 0.00 2 7199 \N +282027 2025-09-09 14:51:35.898134+00 2025-09-09 14:51:35.898139+00 f t TOTAL 0.00 3 7199 \N +282028 2025-09-09 14:51:35.899092+00 2025-09-09 14:51:35.899098+00 f t ADELANTO 0.00 4 7199 \N +296013 2025-09-14 15:59:08.247772+00 2025-09-14 15:59:08.247785+00 f t SUBTOTAL 54000.00 1 7532 \N +296014 2025-09-14 15:59:08.250557+00 2025-09-14 15:59:08.250565+00 f t DESCUENTO 0.00 2 7532 \N +296015 2025-09-14 15:59:08.252596+00 2025-09-14 15:59:08.252605+00 f t TOTAL 54000.00 3 7532 \N +296016 2025-09-14 15:59:08.255204+00 2025-09-14 15:59:08.255213+00 f t ADELANTO 13500.00 4 7532 \N +289757 2025-09-12 05:37:18.551567+00 2025-09-12 05:37:18.551575+00 f t SUBTOTAL 0.00 1 7393 \N +289758 2025-09-12 05:37:18.552802+00 2025-09-12 05:37:18.552809+00 f t DESCUENTO 0.00 2 7393 \N +289759 2025-09-12 05:37:18.553817+00 2025-09-12 05:37:18.553824+00 f t TOTAL 0.00 3 7393 \N +289760 2025-09-12 05:37:18.554773+00 2025-09-12 05:37:18.554779+00 f t ADELANTO 0.00 4 7393 \N +282061 2025-09-09 14:58:54.792195+00 2025-09-09 14:58:54.792211+00 f t SUBTOTAL 55000.00 1 7185 \N +282062 2025-09-09 14:58:54.793584+00 2025-09-09 14:58:54.79359+00 f t DESCUENTO 0.00 2 7185 \N +282063 2025-09-09 14:58:54.794652+00 2025-09-09 14:58:54.794657+00 f t TOTAL 55000.00 3 7185 \N +282064 2025-09-09 14:58:54.795578+00 2025-09-09 14:58:54.795583+00 f t ADELANTO 11000.00 4 7185 \N +290329 2025-09-12 13:22:24.262019+00 2025-09-12 13:22:24.262028+00 f t SUBTOTAL 55000.00 1 7409 \N +290330 2025-09-12 13:22:24.263652+00 2025-09-12 13:22:24.263658+00 f t DESCUENTO 0.00 2 7409 \N +290331 2025-09-12 13:22:24.264988+00 2025-09-12 13:22:24.264994+00 f t TOTAL 55000.00 3 7409 \N +290332 2025-09-12 13:22:24.266099+00 2025-09-12 13:22:24.266107+00 f t ADELANTO 11000.00 4 7409 \N +284273 2025-09-10 11:55:13.54237+00 2025-09-10 11:55:13.54238+00 f t SUBTOTAL 0.00 1 7251 \N +284274 2025-09-10 11:55:13.544147+00 2025-09-10 11:55:13.544155+00 f t DESCUENTO 0.00 2 7251 \N +284275 2025-09-10 11:55:13.545374+00 2025-09-10 11:55:13.545379+00 f t TOTAL 0.00 3 7251 \N +284276 2025-09-10 11:55:13.546476+00 2025-09-10 11:55:13.546482+00 f t ADELANTO 0.00 4 7251 \N +282137 2025-09-09 15:18:03.663902+00 2025-09-09 15:18:03.663915+00 f t SUBTOTAL 55000.00 1 7200 \N +282138 2025-09-09 15:18:03.66583+00 2025-09-09 15:18:03.665841+00 f t DESCUENTO 0.00 2 7200 \N +282139 2025-09-09 15:18:03.66744+00 2025-09-09 15:18:03.667449+00 f t TOTAL 55000.00 3 7200 \N +282140 2025-09-09 15:18:03.668925+00 2025-09-09 15:18:03.668934+00 f t ADELANTO 11000.00 4 7200 \N +284665 2025-09-10 16:25:41.358805+00 2025-09-10 16:25:41.358814+00 f t SUBTOTAL 54000.00 1 7266 \N +284666 2025-09-10 16:25:41.360691+00 2025-09-10 16:25:41.360698+00 f t DESCUENTO 0.00 2 7266 \N +284667 2025-09-10 16:25:41.361879+00 2025-09-10 16:25:41.361885+00 f t TOTAL 54000.00 3 7266 \N +284668 2025-09-10 16:25:41.362944+00 2025-09-10 16:25:41.36295+00 f t ADELANTO 13500.00 4 7266 \N +291441 2025-09-12 21:48:50.328855+00 2025-09-12 21:48:50.328864+00 f t SUBTOTAL 140000.00 1 7441 \N +291442 2025-09-12 21:48:50.330721+00 2025-09-12 21:48:50.330728+00 f t DESCUENTO 0.00 2 7441 \N +291443 2025-09-12 21:48:50.332076+00 2025-09-12 21:48:50.332083+00 f t TOTAL 140000.00 3 7441 \N +291444 2025-09-12 21:48:50.333211+00 2025-09-12 21:48:50.333217+00 f t ADELANTO 38000.00 4 7441 \N +285269 2025-09-10 19:38:53.493844+00 2025-09-10 19:38:53.493853+00 f t SUBTOTAL 0.00 1 7289 \N +285270 2025-09-10 19:38:53.495942+00 2025-09-10 19:38:53.495948+00 f t DESCUENTO 0.00 2 7289 \N +285271 2025-09-10 19:38:53.498091+00 2025-09-10 19:38:53.498097+00 f t TOTAL 0.00 3 7289 \N +285272 2025-09-10 19:38:53.499498+00 2025-09-10 19:38:53.499504+00 f t ADELANTO 0.00 4 7289 \N +282197 2025-09-09 15:39:07.648271+00 2025-09-09 15:39:07.648286+00 f t SUBTOTAL 55000.00 1 7201 \N +282198 2025-09-09 15:39:07.650322+00 2025-09-09 15:39:07.650345+00 f t DESCUENTO 0.00 2 7201 \N +282199 2025-09-09 15:39:07.651735+00 2025-09-09 15:39:07.651742+00 f t TOTAL 55000.00 3 7201 \N +282200 2025-09-09 15:39:07.652957+00 2025-09-09 15:39:07.652963+00 f t ADELANTO 11000.00 4 7201 \N +285533 2025-09-10 19:48:21.357196+00 2025-09-10 19:48:21.357208+00 f t SUBTOTAL 0.00 1 7291 \N +285534 2025-09-10 19:48:21.358829+00 2025-09-10 19:48:21.358841+00 f t DESCUENTO 0.00 2 7291 \N +285535 2025-09-10 19:48:21.360135+00 2025-09-10 19:48:21.360143+00 f t TOTAL 0.00 3 7291 \N +285536 2025-09-10 19:48:21.361802+00 2025-09-10 19:48:21.361811+00 f t ADELANTO 0.00 4 7291 \N +285733 2025-09-10 19:59:40.466035+00 2025-09-10 19:59:40.466046+00 f t SUBTOTAL 90700.00 1 7293 \N +285734 2025-09-10 19:59:40.468649+00 2025-09-10 19:59:40.468661+00 f t DESCUENTO 0.00 2 7293 \N +285735 2025-09-10 19:59:40.47026+00 2025-09-10 19:59:40.470269+00 f t TOTAL 90700.00 3 7293 \N +285736 2025-09-10 19:59:40.471672+00 2025-09-10 19:59:40.471681+00 f t ADELANTO 21200.00 4 7293 \N +282225 2025-09-09 15:41:03.194683+00 2025-09-09 15:41:03.194696+00 f t SUBTOTAL 0.00 1 7202 \N +282226 2025-09-09 15:41:03.197543+00 2025-09-09 15:41:03.197556+00 f t DESCUENTO 0.00 2 7202 \N +282227 2025-09-09 15:41:03.19941+00 2025-09-09 15:41:03.19942+00 f t TOTAL 0.00 3 7202 \N +282228 2025-09-09 15:41:03.201328+00 2025-09-09 15:41:03.201339+00 f t ADELANTO 0.00 4 7202 \N +285945 2025-09-10 20:16:49.24835+00 2025-09-10 20:16:49.24836+00 f t SUBTOTAL 54000.00 1 7297 \N +285946 2025-09-10 20:16:49.250001+00 2025-09-10 20:16:49.250008+00 f t DESCUENTO 0.00 2 7297 \N +285947 2025-09-10 20:16:49.251104+00 2025-09-10 20:16:49.251113+00 f t TOTAL 54000.00 3 7297 \N +285948 2025-09-10 20:16:49.252148+00 2025-09-10 20:16:49.252153+00 f t ADELANTO 13500.00 4 7297 \N +282261 2025-09-09 16:11:32.222177+00 2025-09-09 16:11:32.222191+00 f t SUBTOTAL 70000.00 1 7203 \N +282262 2025-09-09 16:11:32.224156+00 2025-09-09 16:11:32.224164+00 f t DESCUENTO 0.00 2 7203 \N +282263 2025-09-09 16:11:32.225474+00 2025-09-09 16:11:32.225481+00 f t TOTAL 70000.00 3 7203 \N +282264 2025-09-09 16:11:32.226822+00 2025-09-09 16:11:32.226832+00 f t ADELANTO 19000.00 4 7203 \N +286433 2025-09-10 23:43:56.337241+00 2025-09-10 23:43:56.337252+00 f t SUBTOTAL 70000.00 1 7309 \N +286434 2025-09-10 23:43:56.339085+00 2025-09-10 23:43:56.339093+00 f t DESCUENTO 0.00 2 7309 \N +286435 2025-09-10 23:43:56.340501+00 2025-09-10 23:43:56.34051+00 f t TOTAL 70000.00 3 7309 \N +286436 2025-09-10 23:43:56.341658+00 2025-09-10 23:43:56.341664+00 f t ADELANTO 19000.00 4 7309 \N +286749 2025-09-11 01:24:33.950175+00 2025-09-11 01:24:33.950185+00 f t SUBTOTAL 0.00 1 7319 \N +286750 2025-09-11 01:24:33.951663+00 2025-09-11 01:24:33.95167+00 f t DESCUENTO 0.00 2 7319 \N +286751 2025-09-11 01:24:33.952887+00 2025-09-11 01:24:33.952893+00 f t TOTAL 0.00 3 7319 \N +286752 2025-09-11 01:24:33.953845+00 2025-09-11 01:24:33.95385+00 f t ADELANTO 0.00 4 7319 \N +309637 2025-09-19 22:45:46.197267+00 2025-09-19 22:45:46.197278+00 f t SUBTOTAL 55000.00 1 7855 \N +282321 2025-09-09 16:36:12.424169+00 2025-09-09 16:36:12.424179+00 f t SUBTOTAL 0.00 1 7204 \N +282322 2025-09-09 16:36:12.425862+00 2025-09-09 16:36:12.425874+00 f t DESCUENTO 0.00 2 7204 \N +282323 2025-09-09 16:36:12.426989+00 2025-09-09 16:36:12.426995+00 f t TOTAL 0.00 3 7204 \N +282324 2025-09-09 16:36:12.427926+00 2025-09-09 16:36:12.427931+00 f t ADELANTO 0.00 4 7204 \N +289765 2025-09-12 08:29:03.672665+00 2025-09-12 08:29:03.672674+00 f t SUBTOTAL 0.00 1 7394 \N +289766 2025-09-12 08:29:03.674064+00 2025-09-12 08:29:03.67407+00 f t DESCUENTO 0.00 2 7394 \N +289767 2025-09-12 08:29:03.675036+00 2025-09-12 08:29:03.675041+00 f t TOTAL 0.00 3 7394 \N +289768 2025-09-12 08:29:03.676053+00 2025-09-12 08:29:03.67606+00 f t ADELANTO 0.00 4 7394 \N +283909 2025-09-10 07:34:53.290614+00 2025-09-10 07:34:53.290626+00 f t SUBTOTAL 92000.00 1 7244 \N +283910 2025-09-10 07:34:53.292678+00 2025-09-10 07:34:53.292685+00 f t DESCUENTO 0.00 2 7244 \N +283911 2025-09-10 07:34:53.293944+00 2025-09-10 07:34:53.29395+00 f t TOTAL 92000.00 3 7244 \N +283912 2025-09-10 07:34:53.295114+00 2025-09-10 07:34:53.295119+00 f t ADELANTO 20500.00 4 7244 \N +282389 2025-09-09 16:45:35.912075+00 2025-09-09 16:45:35.912088+00 f t SUBTOTAL 92000.00 1 7205 \N +282390 2025-09-09 16:45:35.913825+00 2025-09-09 16:45:35.913836+00 f t DESCUENTO 0.00 2 7205 \N +282391 2025-09-09 16:45:35.915202+00 2025-09-09 16:45:35.915211+00 f t TOTAL 92000.00 3 7205 \N +282392 2025-09-09 16:45:35.916299+00 2025-09-09 16:45:35.916304+00 f t ADELANTO 22000.00 4 7205 \N +284281 2025-09-10 12:19:59.893863+00 2025-09-10 12:19:59.893871+00 f t SUBTOTAL 0.00 1 7252 \N +284282 2025-09-10 12:19:59.895207+00 2025-09-10 12:19:59.895214+00 f t DESCUENTO 0.00 2 7252 \N +284283 2025-09-10 12:19:59.896226+00 2025-09-10 12:19:59.896232+00 f t TOTAL 0.00 3 7252 \N +284284 2025-09-10 12:19:59.897113+00 2025-09-10 12:19:59.897119+00 f t ADELANTO 0.00 4 7252 \N +290949 2025-09-12 18:19:31.756705+00 2025-09-12 18:19:31.756717+00 f t SUBTOTAL 0.00 1 7431 \N +290950 2025-09-12 18:19:31.758979+00 2025-09-12 18:19:31.758988+00 f t DESCUENTO 0.00 2 7431 \N +290951 2025-09-12 18:19:31.760676+00 2025-09-12 18:19:31.760683+00 f t TOTAL 0.00 3 7431 \N +290952 2025-09-12 18:19:31.761957+00 2025-09-12 18:19:31.761963+00 f t ADELANTO 0.00 4 7431 \N +291029 2025-09-12 18:28:26.581428+00 2025-09-12 18:28:26.581436+00 f t SUBTOTAL 133500.00 1 7432 \N +291030 2025-09-12 18:28:26.583149+00 2025-09-12 18:28:26.583157+00 f t DESCUENTO 0.00 2 7432 \N +291031 2025-09-12 18:28:26.584381+00 2025-09-12 18:28:26.584387+00 f t TOTAL 133500.00 3 7432 \N +291032 2025-09-12 18:28:26.585409+00 2025-09-12 18:28:26.585415+00 f t ADELANTO 28500.00 4 7432 \N +282417 2025-09-09 17:04:51.093975+00 2025-09-09 17:04:51.093985+00 f t SUBTOTAL 54000.00 1 7206 \N +282418 2025-09-09 17:04:51.095761+00 2025-09-09 17:04:51.095768+00 f t DESCUENTO 0.00 2 7206 \N +282419 2025-09-09 17:04:51.096962+00 2025-09-09 17:04:51.096968+00 f t TOTAL 54000.00 3 7206 \N +282420 2025-09-09 17:04:51.098435+00 2025-09-09 17:04:51.098442+00 f t ADELANTO 13500.00 4 7206 \N +282425 2025-09-09 17:06:59.988055+00 2025-09-09 17:06:59.988066+00 f t SUBTOTAL 0.00 1 7207 \N +282426 2025-09-09 17:06:59.99093+00 2025-09-09 17:06:59.990942+00 f t DESCUENTO 0.00 2 7207 \N +282427 2025-09-09 17:06:59.993251+00 2025-09-09 17:06:59.993261+00 f t TOTAL 0.00 3 7207 \N +282428 2025-09-09 17:06:59.994996+00 2025-09-09 17:06:59.995004+00 f t ADELANTO 0.00 4 7207 \N +282433 2025-09-09 17:39:01.425681+00 2025-09-09 17:39:01.425691+00 f t SUBTOTAL 0.00 1 7208 \N +282434 2025-09-09 17:39:01.427615+00 2025-09-09 17:39:01.427625+00 f t DESCUENTO 0.00 2 7208 \N +282435 2025-09-09 17:39:01.42954+00 2025-09-09 17:39:01.429552+00 f t TOTAL 0.00 3 7208 \N +282436 2025-09-09 17:39:01.431251+00 2025-09-09 17:39:01.431259+00 f t ADELANTO 0.00 4 7208 \N +282441 2025-09-09 17:41:08.268575+00 2025-09-09 17:41:08.268584+00 f t SUBTOTAL 0.00 1 7209 \N +282442 2025-09-09 17:41:08.269932+00 2025-09-09 17:41:08.269939+00 f t DESCUENTO 0.00 2 7209 \N +282443 2025-09-09 17:41:08.270973+00 2025-09-09 17:41:08.270979+00 f t TOTAL 0.00 3 7209 \N +282444 2025-09-09 17:41:08.272093+00 2025-09-09 17:41:08.272098+00 f t ADELANTO 0.00 4 7209 \N +284893 2025-09-10 17:39:51.659734+00 2025-09-10 17:39:51.659743+00 f t SUBTOTAL 55000.00 1 7274 \N +284894 2025-09-10 17:39:51.66307+00 2025-09-10 17:39:51.663079+00 f t DESCUENTO 0.00 2 7274 \N +284895 2025-09-10 17:39:51.664981+00 2025-09-10 17:39:51.664989+00 f t TOTAL 55000.00 3 7274 \N +284896 2025-09-10 17:39:51.66652+00 2025-09-10 17:39:51.666527+00 f t ADELANTO 11000.00 4 7274 \N +285197 2025-09-10 19:36:54.113755+00 2025-09-10 19:36:54.113765+00 f t SUBTOTAL 0.00 1 7286 \N +285198 2025-09-10 19:36:54.115926+00 2025-09-10 19:36:54.115935+00 f t DESCUENTO 0.00 2 7286 \N +285199 2025-09-10 19:36:54.117338+00 2025-09-10 19:36:54.117345+00 f t TOTAL 0.00 3 7286 \N +285200 2025-09-10 19:36:54.118443+00 2025-09-10 19:36:54.118449+00 f t ADELANTO 0.00 4 7286 \N +292049 2025-09-13 01:21:20.551281+00 2025-09-13 01:21:20.55129+00 f t SUBTOTAL 78000.00 1 7461 \N +292050 2025-09-13 01:21:20.553072+00 2025-09-13 01:21:20.55308+00 f t DESCUENTO 0.00 2 7461 \N +292051 2025-09-13 01:21:20.554309+00 2025-09-13 01:21:20.554315+00 f t TOTAL 78000.00 3 7461 \N +292052 2025-09-13 01:21:20.555577+00 2025-09-13 01:21:20.555582+00 f t ADELANTO 13000.00 4 7461 \N +282497 2025-09-09 18:19:45.261517+00 2025-09-09 18:19:45.26153+00 f t SUBTOTAL 70000.00 1 7210 \N +282498 2025-09-09 18:19:45.263684+00 2025-09-09 18:19:45.263694+00 f t DESCUENTO 0.00 2 7210 \N +282499 2025-09-09 18:19:45.26544+00 2025-09-09 18:19:45.265448+00 f t TOTAL 70000.00 3 7210 \N +282500 2025-09-09 18:19:45.267237+00 2025-09-09 18:19:45.267248+00 f t ADELANTO 19000.00 4 7210 \N +292409 2025-09-13 12:22:10.167443+00 2025-09-13 12:22:10.167452+00 f t SUBTOTAL 55000.00 1 7471 \N +292410 2025-09-13 12:22:10.169389+00 2025-09-13 12:22:10.169395+00 f t DESCUENTO 0.00 2 7471 \N +292411 2025-09-13 12:22:10.170515+00 2025-09-13 12:22:10.17052+00 f t TOTAL 55000.00 3 7471 \N +292412 2025-09-13 12:22:10.171419+00 2025-09-13 12:22:10.171423+00 f t ADELANTO 11000.00 4 7471 \N +286201 2025-09-10 21:53:59.760713+00 2025-09-10 21:53:59.760724+00 f t SUBTOTAL 30000.00 1 7300 \N +286202 2025-09-10 21:53:59.762753+00 2025-09-10 21:53:59.762764+00 f t DESCUENTO 0.00 2 7300 \N +286203 2025-09-10 21:53:59.764014+00 2025-09-10 21:53:59.76402+00 f t TOTAL 30000.00 3 7300 \N +286204 2025-09-10 21:53:59.765001+00 2025-09-10 21:53:59.765006+00 f t ADELANTO 30000.00 4 7300 \N +286501 2025-09-11 00:50:04.869276+00 2025-09-11 00:50:04.869292+00 f t SUBTOTAL 0.00 1 7312 \N +286502 2025-09-11 00:50:04.874928+00 2025-09-11 00:50:04.874943+00 f t DESCUENTO 0.00 2 7312 \N +286503 2025-09-11 00:50:04.878334+00 2025-09-11 00:50:04.878348+00 f t TOTAL 0.00 3 7312 \N +286504 2025-09-11 00:50:04.882945+00 2025-09-11 00:50:04.882958+00 f t ADELANTO 0.00 4 7312 \N +286601 2025-09-11 01:06:25.270265+00 2025-09-11 01:06:25.270273+00 f t SUBTOTAL 0.00 1 7313 \N +286602 2025-09-11 01:06:25.272331+00 2025-09-11 01:06:25.272339+00 f t DESCUENTO 0.00 2 7313 \N +286603 2025-09-11 01:06:25.273807+00 2025-09-11 01:06:25.273815+00 f t TOTAL 0.00 3 7313 \N +286604 2025-09-11 01:06:25.274974+00 2025-09-11 01:06:25.274979+00 f t ADELANTO 0.00 4 7313 \N +282577 2025-09-09 18:27:43.804412+00 2025-09-09 18:27:43.804421+00 f t SUBTOTAL 55000.00 1 7211 \N +282578 2025-09-09 18:27:43.806176+00 2025-09-09 18:27:43.806184+00 f t DESCUENTO 0.00 2 7211 \N +282579 2025-09-09 18:27:43.807448+00 2025-09-09 18:27:43.807454+00 f t TOTAL 55000.00 3 7211 \N +282580 2025-09-09 18:27:43.80874+00 2025-09-09 18:27:43.808748+00 f t ADELANTO 11000.00 4 7211 \N +309638 2025-09-19 22:45:46.199379+00 2025-09-19 22:45:46.199388+00 f t DESCUENTO 0.00 2 7855 \N +286933 2025-09-11 02:05:39.688717+00 2025-09-11 02:05:39.688725+00 f t SUBTOTAL 46000.00 1 7320 \N +286934 2025-09-11 02:05:39.691218+00 2025-09-11 02:05:39.691225+00 f t DESCUENTO 0.00 2 7320 \N +286935 2025-09-11 02:05:39.692593+00 2025-09-11 02:05:39.692599+00 f t TOTAL 46000.00 3 7320 \N +286936 2025-09-11 02:05:39.693867+00 2025-09-11 02:05:39.693873+00 f t ADELANTO 11000.00 4 7320 \N +302977 2025-09-17 21:06:29.89854+00 2025-09-17 21:06:29.89855+00 f t SUBTOTAL 119400.00 1 7694 \N +302978 2025-09-17 21:06:29.900845+00 2025-09-17 21:06:29.900853+00 f t DESCUENTO 0.00 2 7694 \N +302979 2025-09-17 21:06:29.902593+00 2025-09-17 21:06:29.902601+00 f t TOTAL 119400.00 3 7694 \N +302980 2025-09-17 21:06:29.903924+00 2025-09-17 21:06:29.903931+00 f t ADELANTO 78900.00 4 7694 \N +286969 2025-09-11 02:08:31.667436+00 2025-09-11 02:08:31.667445+00 f t SUBTOTAL 46000.00 1 7321 \N +286970 2025-09-11 02:08:31.669604+00 2025-09-11 02:08:31.66961+00 f t DESCUENTO 0.00 2 7321 \N +286971 2025-09-11 02:08:31.67071+00 2025-09-11 02:08:31.670716+00 f t TOTAL 46000.00 3 7321 \N +286972 2025-09-11 02:08:31.671746+00 2025-09-11 02:08:31.671754+00 f t ADELANTO 11000.00 4 7321 \N +286977 2025-09-11 02:28:22.610102+00 2025-09-11 02:28:22.610111+00 f t SUBTOTAL 0.00 1 7322 \N +286978 2025-09-11 02:28:22.611615+00 2025-09-11 02:28:22.611621+00 f t DESCUENTO 0.00 2 7322 \N +286979 2025-09-11 02:28:22.612822+00 2025-09-11 02:28:22.612829+00 f t TOTAL 0.00 3 7322 \N +286980 2025-09-11 02:28:22.613902+00 2025-09-11 02:28:22.613907+00 f t ADELANTO 0.00 4 7322 \N +286985 2025-09-11 02:49:54.350608+00 2025-09-11 02:49:54.350617+00 f t SUBTOTAL 0.00 1 7323 \N +286986 2025-09-11 02:49:54.352327+00 2025-09-11 02:49:54.352338+00 f t DESCUENTO 0.00 2 7323 \N +286987 2025-09-11 02:49:54.353731+00 2025-09-11 02:49:54.353737+00 f t TOTAL 0.00 3 7323 \N +286988 2025-09-11 02:49:54.354763+00 2025-09-11 02:49:54.354769+00 f t ADELANTO 0.00 4 7323 \N +286993 2025-09-11 03:03:09.869164+00 2025-09-11 03:03:09.869173+00 f t SUBTOTAL 0.00 1 7324 \N +286994 2025-09-11 03:03:09.870632+00 2025-09-11 03:03:09.87064+00 f t DESCUENTO 0.00 2 7324 \N +286995 2025-09-11 03:03:09.871979+00 2025-09-11 03:03:09.871985+00 f t TOTAL 0.00 3 7324 \N +286996 2025-09-11 03:03:09.872988+00 2025-09-11 03:03:09.872993+00 f t ADELANTO 0.00 4 7324 \N +290421 2025-09-12 13:27:24.902943+00 2025-09-12 13:27:24.902955+00 f t SUBTOTAL 54000.00 1 7412 \N +290422 2025-09-12 13:27:24.904812+00 2025-09-12 13:27:24.904823+00 f t DESCUENTO 0.00 2 7412 \N +290423 2025-09-12 13:27:24.906117+00 2025-09-12 13:27:24.906127+00 f t TOTAL 54000.00 3 7412 \N +290424 2025-09-12 13:27:24.907295+00 2025-09-12 13:27:24.907303+00 f t ADELANTO 13500.00 4 7412 \N +290601 2025-09-12 16:02:16.181381+00 2025-09-12 16:02:16.181393+00 f t SUBTOTAL 0.00 1 7419 \N +290602 2025-09-12 16:02:16.183759+00 2025-09-12 16:02:16.183768+00 f t DESCUENTO 0.00 2 7419 \N +290603 2025-09-12 16:02:16.185228+00 2025-09-12 16:02:16.185237+00 f t TOTAL 0.00 3 7419 \N +290604 2025-09-12 16:02:16.18654+00 2025-09-12 16:02:16.186549+00 f t ADELANTO 0.00 4 7419 \N +287013 2025-09-11 03:05:39.765878+00 2025-09-11 03:05:39.765887+00 f t SUBTOTAL 0.00 1 7325 \N +287014 2025-09-11 03:05:39.767776+00 2025-09-11 03:05:39.767785+00 f t DESCUENTO 0.00 2 7325 \N +287015 2025-09-11 03:05:39.768933+00 2025-09-11 03:05:39.76894+00 f t TOTAL 0.00 3 7325 \N +287016 2025-09-11 03:05:39.76994+00 2025-09-11 03:05:39.769946+00 f t ADELANTO 0.00 4 7325 \N +287021 2025-09-11 03:29:00.545641+00 2025-09-11 03:29:00.545655+00 f t SUBTOTAL 0.00 1 7326 \N +287022 2025-09-11 03:29:00.547236+00 2025-09-11 03:29:00.547247+00 f t DESCUENTO 0.00 2 7326 \N +287023 2025-09-11 03:29:00.548632+00 2025-09-11 03:29:00.54864+00 f t TOTAL 0.00 3 7326 \N +287024 2025-09-11 03:29:00.549881+00 2025-09-11 03:29:00.54989+00 f t ADELANTO 0.00 4 7326 \N +290865 2025-09-12 18:03:47.052311+00 2025-09-12 18:03:47.05232+00 f t SUBTOTAL 0.00 1 7428 \N +290866 2025-09-12 18:03:47.054474+00 2025-09-12 18:03:47.054481+00 f t DESCUENTO 0.00 2 7428 \N +290867 2025-09-12 18:03:47.055649+00 2025-09-12 18:03:47.055655+00 f t TOTAL 0.00 3 7428 \N +290868 2025-09-12 18:03:47.056752+00 2025-09-12 18:03:47.056757+00 f t ADELANTO 0.00 4 7428 \N +287029 2025-09-11 03:32:53.435664+00 2025-09-11 03:32:53.435675+00 f t SUBTOTAL 0.00 1 7327 \N +287030 2025-09-11 03:32:53.437357+00 2025-09-11 03:32:53.437368+00 f t DESCUENTO 0.00 2 7327 \N +287031 2025-09-11 03:32:53.438858+00 2025-09-11 03:32:53.438867+00 f t TOTAL 0.00 3 7327 \N +287032 2025-09-11 03:32:53.440354+00 2025-09-11 03:32:53.440362+00 f t ADELANTO 0.00 4 7327 \N +291037 2025-09-12 18:29:57.829847+00 2025-09-12 18:29:57.829856+00 f t SUBTOTAL 0.00 1 7433 \N +291038 2025-09-12 18:29:57.831209+00 2025-09-12 18:29:57.831216+00 f t DESCUENTO 0.00 2 7433 \N +291039 2025-09-12 18:29:57.832164+00 2025-09-12 18:29:57.832168+00 f t TOTAL 0.00 3 7433 \N +291040 2025-09-12 18:29:57.833184+00 2025-09-12 18:29:57.83319+00 f t ADELANTO 0.00 4 7433 \N +291285 2025-09-12 19:50:36.185188+00 2025-09-12 19:50:36.1852+00 f t SUBTOTAL 0.00 1 7438 \N +291286 2025-09-12 19:50:36.187703+00 2025-09-12 19:50:36.187715+00 f t DESCUENTO 0.00 2 7438 \N +291287 2025-09-12 19:50:36.189317+00 2025-09-12 19:50:36.189325+00 f t TOTAL 0.00 3 7438 \N +291288 2025-09-12 19:50:36.190654+00 2025-09-12 19:50:36.190661+00 f t ADELANTO 0.00 4 7438 \N +287077 2025-09-11 03:38:59.049079+00 2025-09-11 03:38:59.049091+00 f t SUBTOTAL 70000.00 1 7328 \N +287078 2025-09-11 03:38:59.05103+00 2025-09-11 03:38:59.051037+00 f t DESCUENTO 0.00 2 7328 \N +287079 2025-09-11 03:38:59.052605+00 2025-09-11 03:38:59.052614+00 f t TOTAL 70000.00 3 7328 \N +287080 2025-09-11 03:38:59.053926+00 2025-09-11 03:38:59.053934+00 f t ADELANTO 19000.00 4 7328 \N +287085 2025-09-11 03:48:29.457968+00 2025-09-11 03:48:29.457977+00 f t SUBTOTAL 0.00 1 7329 \N +287086 2025-09-11 03:48:29.459425+00 2025-09-11 03:48:29.459432+00 f t DESCUENTO 0.00 2 7329 \N +287087 2025-09-11 03:48:29.460719+00 2025-09-11 03:48:29.460748+00 f t TOTAL 0.00 3 7329 \N +287088 2025-09-11 03:48:29.461819+00 2025-09-11 03:48:29.461824+00 f t ADELANTO 0.00 4 7329 \N +292281 2025-09-13 11:43:52.617844+00 2025-09-13 11:43:52.617852+00 f t SUBTOTAL 54000.00 1 7468 \N +292282 2025-09-13 11:43:52.619758+00 2025-09-13 11:43:52.619763+00 f t DESCUENTO 0.00 2 7468 \N +292283 2025-09-13 11:43:52.620837+00 2025-09-13 11:43:52.620843+00 f t TOTAL 54000.00 3 7468 \N +292284 2025-09-13 11:43:52.62178+00 2025-09-13 11:43:52.621785+00 f t ADELANTO 13500.00 4 7468 \N +292349 2025-09-13 12:02:46.187638+00 2025-09-13 12:02:46.187647+00 f t SUBTOTAL 68000.00 1 7470 \N +292350 2025-09-13 12:02:46.189349+00 2025-09-13 12:02:46.189355+00 f t DESCUENTO 0.00 2 7470 \N +292351 2025-09-13 12:02:46.190336+00 2025-09-13 12:02:46.190342+00 f t TOTAL 68000.00 3 7470 \N +292352 2025-09-13 12:02:46.191315+00 2025-09-13 12:02:46.19132+00 f t ADELANTO 13000.00 4 7470 \N +287157 2025-09-11 04:26:51.050623+00 2025-09-11 04:26:51.050631+00 f t SUBTOTAL 70000.00 1 7330 \N +287158 2025-09-11 04:26:51.053035+00 2025-09-11 04:26:51.053041+00 f t DESCUENTO 0.00 2 7330 \N +287159 2025-09-11 04:26:51.054445+00 2025-09-11 04:26:51.054451+00 f t TOTAL 70000.00 3 7330 \N +287160 2025-09-11 04:26:51.055427+00 2025-09-11 04:26:51.055432+00 f t ADELANTO 19000.00 4 7330 \N +287197 2025-09-11 04:48:47.839956+00 2025-09-11 04:48:47.839964+00 f t SUBTOTAL 146000.00 1 7331 \N +287198 2025-09-11 04:48:47.841723+00 2025-09-11 04:48:47.84173+00 f t DESCUENTO 0.00 2 7331 \N +287199 2025-09-11 04:48:47.842987+00 2025-09-11 04:48:47.842993+00 f t TOTAL 146000.00 3 7331 \N +287200 2025-09-11 04:48:47.844018+00 2025-09-11 04:48:47.844023+00 f t ADELANTO 26000.00 4 7331 \N +309639 2025-09-19 22:45:46.201411+00 2025-09-19 22:45:46.201421+00 f t TOTAL 55000.00 3 7855 \N +309640 2025-09-19 22:45:46.203198+00 2025-09-19 22:45:46.203206+00 f t ADELANTO 11000.00 4 7855 \N +362561 2025-10-07 20:59:29.366662+00 2025-10-07 20:59:29.366673+00 f t SUBTOTAL 68000.00 1 9104 \N +296129 2025-09-14 18:06:35.148716+00 2025-09-14 18:06:35.148724+00 f t SUBTOTAL 46000.00 1 7535 \N +296130 2025-09-14 18:06:35.150542+00 2025-09-14 18:06:35.15055+00 f t DESCUENTO 0.00 2 7535 \N +296131 2025-09-14 18:06:35.151787+00 2025-09-14 18:06:35.151794+00 f t TOTAL 46000.00 3 7535 \N +296132 2025-09-14 18:06:35.152878+00 2025-09-14 18:06:35.152884+00 f t ADELANTO 11000.00 4 7535 \N +287237 2025-09-11 05:23:47.902883+00 2025-09-11 05:23:47.902891+00 f t SUBTOTAL 55000.00 1 7332 \N +287238 2025-09-11 05:23:47.904539+00 2025-09-11 05:23:47.904548+00 f t DESCUENTO 0.00 2 7332 \N +287239 2025-09-11 05:23:47.906078+00 2025-09-11 05:23:47.906084+00 f t TOTAL 55000.00 3 7332 \N +287240 2025-09-11 05:23:47.907366+00 2025-09-11 05:23:47.907374+00 f t ADELANTO 11000.00 4 7332 \N +289873 2025-09-12 10:09:23.54322+00 2025-09-12 10:09:23.543231+00 f t SUBTOTAL 78000.00 1 7395 \N +289874 2025-09-12 10:09:23.54494+00 2025-09-12 10:09:23.544947+00 f t DESCUENTO 0.00 2 7395 \N +289875 2025-09-12 10:09:23.546164+00 2025-09-12 10:09:23.54617+00 f t TOTAL 78000.00 3 7395 \N +289876 2025-09-12 10:09:23.547324+00 2025-09-12 10:09:23.54733+00 f t ADELANTO 13000.00 4 7395 \N +290429 2025-09-12 13:29:46.054497+00 2025-09-12 13:29:46.054507+00 f t SUBTOTAL 0.00 1 7413 \N +290430 2025-09-12 13:29:46.056171+00 2025-09-12 13:29:46.056179+00 f t DESCUENTO 0.00 2 7413 \N +290431 2025-09-12 13:29:46.060597+00 2025-09-12 13:29:46.060606+00 f t TOTAL 0.00 3 7413 \N +290432 2025-09-12 13:29:46.062245+00 2025-09-12 13:29:46.062252+00 f t ADELANTO 0.00 4 7413 \N +310829 2025-09-20 13:13:22.473541+00 2025-09-20 13:13:22.473549+00 f t SUBTOTAL 46000.00 1 7880 \N +310830 2025-09-20 13:13:22.476506+00 2025-09-20 13:13:22.476516+00 f t DESCUENTO 0.00 2 7880 \N +310831 2025-09-20 13:13:22.478605+00 2025-09-20 13:13:22.478611+00 f t TOTAL 46000.00 3 7880 \N +287281 2025-09-11 08:13:30.81565+00 2025-09-11 08:13:30.815662+00 f t SUBTOTAL 55000.00 1 7333 \N +287282 2025-09-11 08:13:30.817556+00 2025-09-11 08:13:30.817566+00 f t DESCUENTO 0.00 2 7333 \N +287283 2025-09-11 08:13:30.819168+00 2025-09-11 08:13:30.819176+00 f t TOTAL 55000.00 3 7333 \N +287284 2025-09-11 08:13:30.820754+00 2025-09-11 08:13:30.820764+00 f t ADELANTO 11000.00 4 7333 \N +310832 2025-09-20 13:13:22.479806+00 2025-09-20 13:13:22.479815+00 f t ADELANTO 11000.00 4 7880 \N +287289 2025-09-11 10:25:15.138689+00 2025-09-11 10:25:15.138701+00 f t SUBTOTAL 0.00 1 7334 \N +287290 2025-09-11 10:25:15.140301+00 2025-09-11 10:25:15.14031+00 f t DESCUENTO 0.00 2 7334 \N +287291 2025-09-11 10:25:15.141844+00 2025-09-11 10:25:15.141854+00 f t TOTAL 0.00 3 7334 \N +287292 2025-09-11 10:25:15.14311+00 2025-09-11 10:25:15.143118+00 f t ADELANTO 0.00 4 7334 \N +290873 2025-09-12 18:06:45.071214+00 2025-09-12 18:06:45.071223+00 f t SUBTOTAL 0.00 1 7429 \N +290874 2025-09-12 18:06:45.072817+00 2025-09-12 18:06:45.072824+00 f t DESCUENTO 0.00 2 7429 \N +290875 2025-09-12 18:06:45.074105+00 2025-09-12 18:06:45.074111+00 f t TOTAL 0.00 3 7429 \N +290876 2025-09-12 18:06:45.075173+00 2025-09-12 18:06:45.075179+00 f t ADELANTO 0.00 4 7429 \N +291045 2025-09-12 18:45:34.216709+00 2025-09-12 18:45:34.216719+00 f t SUBTOTAL 0.00 1 7434 \N +291046 2025-09-12 18:45:34.218039+00 2025-09-12 18:45:34.218045+00 f t DESCUENTO 0.00 2 7434 \N +291047 2025-09-12 18:45:34.219211+00 2025-09-12 18:45:34.219218+00 f t TOTAL 0.00 3 7434 \N +291048 2025-09-12 18:45:34.220413+00 2025-09-12 18:45:34.22042+00 f t ADELANTO 0.00 4 7434 \N +287325 2025-09-11 11:17:27.615231+00 2025-09-11 11:17:27.615243+00 f t SUBTOTAL 70000.00 1 7335 \N +287326 2025-09-11 11:17:27.616846+00 2025-09-11 11:17:27.616855+00 f t DESCUENTO 0.00 2 7335 \N +287327 2025-09-11 11:17:27.61821+00 2025-09-11 11:17:27.618217+00 f t TOTAL 70000.00 3 7335 \N +287328 2025-09-11 11:17:27.619377+00 2025-09-11 11:17:27.619385+00 f t ADELANTO 19000.00 4 7335 \N +287353 2025-09-11 12:12:23.123243+00 2025-09-11 12:12:23.123252+00 f t SUBTOTAL 0.00 1 7336 \N +287354 2025-09-11 12:12:23.126505+00 2025-09-11 12:12:23.126513+00 f t DESCUENTO 0.00 2 7336 \N +287355 2025-09-11 12:12:23.128028+00 2025-09-11 12:12:23.128035+00 f t TOTAL 0.00 3 7336 \N +287356 2025-09-11 12:12:23.129245+00 2025-09-11 12:12:23.12925+00 f t ADELANTO 0.00 4 7336 \N +291621 2025-09-12 21:59:44.647898+00 2025-09-12 21:59:44.647907+00 f t SUBTOTAL 0.00 1 7444 \N +291622 2025-09-12 21:59:44.650042+00 2025-09-12 21:59:44.650049+00 f t DESCUENTO 0.00 2 7444 \N +291623 2025-09-12 21:59:44.651349+00 2025-09-12 21:59:44.651356+00 f t TOTAL 0.00 3 7444 \N +291624 2025-09-12 21:59:44.652851+00 2025-09-12 21:59:44.652857+00 f t ADELANTO 0.00 4 7444 \N +298081 2025-09-15 17:57:44.018+00 2025-09-15 17:57:44.018012+00 f t SUBTOTAL 46000.00 1 7562 \N +298082 2025-09-15 17:57:44.020053+00 2025-09-15 17:57:44.020064+00 f t DESCUENTO 0.00 2 7562 \N +298083 2025-09-15 17:57:44.02191+00 2025-09-15 17:57:44.02192+00 f t TOTAL 46000.00 3 7562 \N +298084 2025-09-15 17:57:44.023528+00 2025-09-15 17:57:44.023537+00 f t ADELANTO 11000.00 4 7562 \N +291901 2025-09-13 00:53:44.183457+00 2025-09-13 00:53:44.183467+00 f t SUBTOTAL 55000.00 1 7457 \N +291902 2025-09-13 00:53:44.185752+00 2025-09-13 00:53:44.185764+00 f t DESCUENTO 0.00 2 7457 \N +291903 2025-09-13 00:53:44.187382+00 2025-09-13 00:53:44.187391+00 f t TOTAL 55000.00 3 7457 \N +291904 2025-09-13 00:53:44.18895+00 2025-09-13 00:53:44.188956+00 f t ADELANTO 11000.00 4 7457 \N +287425 2025-09-11 13:33:27.316287+00 2025-09-11 13:33:27.316295+00 f t SUBTOTAL 175900.00 1 7337 \N +287426 2025-09-11 13:33:27.318043+00 2025-09-11 13:33:27.318051+00 f t DESCUENTO 0.00 2 7337 \N +287427 2025-09-11 13:33:27.319491+00 2025-09-11 13:33:27.319497+00 f t TOTAL 175900.00 3 7337 \N +287428 2025-09-11 13:33:27.32064+00 2025-09-11 13:33:27.320646+00 f t ADELANTO 75400.00 4 7337 \N +299337 2025-09-16 06:12:03.169332+00 2025-09-16 06:12:03.169344+00 f t SUBTOTAL 0.00 1 7600 \N +299338 2025-09-16 06:12:03.171156+00 2025-09-16 06:12:03.171166+00 f t DESCUENTO 0.00 2 7600 \N +299339 2025-09-16 06:12:03.172794+00 2025-09-16 06:12:03.172804+00 f t TOTAL 0.00 3 7600 \N +299340 2025-09-16 06:12:03.174813+00 2025-09-16 06:12:03.174822+00 f t ADELANTO 0.00 4 7600 \N +287461 2025-09-11 13:46:32.015322+00 2025-09-11 13:46:32.015332+00 f t SUBTOTAL 54000.00 1 7338 \N +287462 2025-09-11 13:46:32.017054+00 2025-09-11 13:46:32.017063+00 f t DESCUENTO 0.00 2 7338 \N +287463 2025-09-11 13:46:32.018409+00 2025-09-11 13:46:32.018417+00 f t TOTAL 54000.00 3 7338 \N +287464 2025-09-11 13:46:32.019601+00 2025-09-11 13:46:32.019609+00 f t ADELANTO 13500.00 4 7338 \N +287469 2025-09-11 14:05:58.889342+00 2025-09-11 14:05:58.88935+00 f t SUBTOTAL 0.00 1 7339 \N +287470 2025-09-11 14:05:58.891335+00 2025-09-11 14:05:58.891343+00 f t DESCUENTO 0.00 2 7339 \N +287471 2025-09-11 14:05:58.892929+00 2025-09-11 14:05:58.89294+00 f t TOTAL 0.00 3 7339 \N +287472 2025-09-11 14:05:58.89424+00 2025-09-11 14:05:58.894247+00 f t ADELANTO 0.00 4 7339 \N +293077 2025-09-13 18:04:14.871512+00 2025-09-13 18:04:14.871526+00 f t SUBTOTAL 0.00 1 7488 \N +293078 2025-09-13 18:04:14.87335+00 2025-09-13 18:04:14.873359+00 f t DESCUENTO 0.00 2 7488 \N +293079 2025-09-13 18:04:14.874803+00 2025-09-13 18:04:14.874812+00 f t TOTAL 0.00 3 7488 \N +293080 2025-09-13 18:04:14.876188+00 2025-09-13 18:04:14.876198+00 f t ADELANTO 0.00 4 7488 \N +293497 2025-09-13 20:19:27.116402+00 2025-09-13 20:19:27.11641+00 f t SUBTOTAL 0.00 1 7498 \N +362562 2025-10-07 20:59:29.368335+00 2025-10-07 20:59:29.368346+00 f t DESCUENTO 0.00 2 9104 \N +362563 2025-10-07 20:59:29.369618+00 2025-10-07 20:59:29.369625+00 f t TOTAL 68000.00 3 9104 \N +296229 2025-09-14 21:05:16.417867+00 2025-09-14 21:05:16.417875+00 f t SUBTOTAL 0.00 1 7536 \N +296230 2025-09-14 21:05:16.420943+00 2025-09-14 21:05:16.420953+00 f t DESCUENTO 0.00 2 7536 \N +296231 2025-09-14 21:05:16.422405+00 2025-09-14 21:05:16.422415+00 f t TOTAL 0.00 3 7536 \N +296232 2025-09-14 21:05:16.423852+00 2025-09-14 21:05:16.423859+00 f t ADELANTO 0.00 4 7536 \N +303573 2025-09-18 02:51:19.426091+00 2025-09-18 02:51:19.426103+00 f t SUBTOTAL 92000.00 1 7709 \N +303574 2025-09-18 02:51:19.428308+00 2025-09-18 02:51:19.428319+00 f t DESCUENTO 0.00 2 7709 \N +303575 2025-09-18 02:51:19.429981+00 2025-09-18 02:51:19.429989+00 f t TOTAL 92000.00 3 7709 \N +303576 2025-09-18 02:51:19.431308+00 2025-09-18 02:51:19.431318+00 f t ADELANTO 20500.00 4 7709 \N +303941 2025-09-18 07:18:59.107634+00 2025-09-18 07:18:59.107643+00 f t SUBTOTAL 46000.00 1 7720 \N +303942 2025-09-18 07:18:59.109379+00 2025-09-18 07:18:59.109387+00 f t DESCUENTO 0.00 2 7720 \N +303943 2025-09-18 07:18:59.110703+00 2025-09-18 07:18:59.110711+00 f t TOTAL 46000.00 3 7720 \N +303944 2025-09-18 07:18:59.111795+00 2025-09-18 07:18:59.111801+00 f t ADELANTO 11000.00 4 7720 \N +287593 2025-09-11 14:11:59.633362+00 2025-09-11 14:11:59.633371+00 f t SUBTOTAL 123500.00 1 7340 \N +287594 2025-09-11 14:11:59.635123+00 2025-09-11 14:11:59.635151+00 f t DESCUENTO 0.00 2 7340 \N +287595 2025-09-11 14:11:59.636455+00 2025-09-11 14:11:59.636464+00 f t TOTAL 123500.00 3 7340 \N +287596 2025-09-11 14:11:59.637647+00 2025-09-11 14:11:59.637653+00 f t ADELANTO 31000.00 4 7340 \N +291213 2025-09-12 19:21:55.313607+00 2025-09-12 19:21:55.313618+00 f t SUBTOTAL 0.00 1 7436 \N +291214 2025-09-12 19:21:55.315792+00 2025-09-12 19:21:55.315799+00 f t DESCUENTO 0.00 2 7436 \N +291215 2025-09-12 19:21:55.316936+00 2025-09-12 19:21:55.316942+00 f t TOTAL 0.00 3 7436 \N +291216 2025-09-12 19:21:55.317881+00 2025-09-12 19:21:55.317886+00 f t ADELANTO 0.00 4 7436 \N +287621 2025-09-11 14:14:19.310292+00 2025-09-11 14:14:19.310301+00 f t SUBTOTAL 46000.00 1 7341 \N +287622 2025-09-11 14:14:19.312159+00 2025-09-11 14:14:19.312167+00 f t DESCUENTO 0.00 2 7341 \N +287623 2025-09-11 14:14:19.313436+00 2025-09-11 14:14:19.313442+00 f t TOTAL 46000.00 3 7341 \N +287624 2025-09-11 14:14:19.314645+00 2025-09-11 14:14:19.314651+00 f t ADELANTO 11000.00 4 7341 \N +291813 2025-09-13 00:12:38.996782+00 2025-09-13 00:12:38.996791+00 f t SUBTOTAL 0.00 1 7453 \N +291814 2025-09-13 00:12:38.998514+00 2025-09-13 00:12:38.99852+00 f t DESCUENTO 0.00 2 7453 \N +291815 2025-09-13 00:12:38.999645+00 2025-09-13 00:12:38.99965+00 f t TOTAL 0.00 3 7453 \N +291816 2025-09-13 00:12:39.000589+00 2025-09-13 00:12:39.000594+00 f t ADELANTO 0.00 4 7453 \N +298453 2025-09-15 21:18:13.233102+00 2025-09-15 21:18:13.233114+00 f t SUBTOTAL 54000.00 1 7570 \N +298454 2025-09-15 21:18:13.235226+00 2025-09-15 21:18:13.235236+00 f t DESCUENTO 0.00 2 7570 \N +298455 2025-09-15 21:18:13.241241+00 2025-09-15 21:18:13.241251+00 f t TOTAL 54000.00 3 7570 \N +298456 2025-09-15 21:18:13.244506+00 2025-09-15 21:18:13.244518+00 f t ADELANTO 13500.00 4 7570 \N +292217 2025-09-13 04:13:51.127984+00 2025-09-13 04:13:51.127995+00 f t SUBTOTAL 101000.00 1 7465 \N +292218 2025-09-13 04:13:51.130025+00 2025-09-13 04:13:51.130032+00 f t DESCUENTO 0.00 2 7465 \N +292219 2025-09-13 04:13:51.131373+00 2025-09-13 04:13:51.131379+00 f t TOTAL 101000.00 3 7465 \N +292220 2025-09-13 04:13:51.132577+00 2025-09-13 04:13:51.132582+00 f t ADELANTO 22000.00 4 7465 \N +305581 2025-09-18 21:03:03.366708+00 2025-09-18 21:03:03.36672+00 f t SUBTOTAL 87400.00 1 7766 \N +305582 2025-09-18 21:03:03.368809+00 2025-09-18 21:03:03.368817+00 f t DESCUENTO 0.00 2 7766 \N +305583 2025-09-18 21:03:03.370026+00 2025-09-18 21:03:03.370034+00 f t TOTAL 87400.00 3 7766 \N +305584 2025-09-18 21:03:03.3713+00 2025-09-18 21:03:03.371307+00 f t ADELANTO 46900.00 4 7766 \N +287685 2025-09-11 14:18:01.926861+00 2025-09-11 14:18:01.926873+00 f t SUBTOTAL 100900.00 1 7342 \N +287686 2025-09-11 14:18:01.929054+00 2025-09-11 14:18:01.929064+00 f t DESCUENTO 0.00 2 7342 \N +287687 2025-09-11 14:18:01.930923+00 2025-09-11 14:18:01.930934+00 f t TOTAL 100900.00 3 7342 \N +287688 2025-09-11 14:18:01.932716+00 2025-09-11 14:18:01.932726+00 f t ADELANTO 60400.00 4 7342 \N +292577 2025-09-13 12:46:27.967973+00 2025-09-13 12:46:27.967983+00 f t SUBTOTAL 55000.00 1 7475 \N +292578 2025-09-13 12:46:27.969687+00 2025-09-13 12:46:27.969694+00 f t DESCUENTO 0.00 2 7475 \N +292579 2025-09-13 12:46:27.97107+00 2025-09-13 12:46:27.971076+00 f t TOTAL 55000.00 3 7475 \N +292580 2025-09-13 12:46:27.972321+00 2025-09-13 12:46:27.972326+00 f t ADELANTO 11000.00 4 7475 \N +292681 2025-09-13 13:29:34.599847+00 2025-09-13 13:29:34.599856+00 f t SUBTOTAL 0.00 1 7477 \N +292682 2025-09-13 13:29:34.60166+00 2025-09-13 13:29:34.601667+00 f t DESCUENTO 0.00 2 7477 \N +292683 2025-09-13 13:29:34.602804+00 2025-09-13 13:29:34.60281+00 f t TOTAL 0.00 3 7477 \N +292684 2025-09-13 13:29:34.603926+00 2025-09-13 13:29:34.603931+00 f t ADELANTO 0.00 4 7477 \N +299249 2025-09-16 02:30:27.236573+00 2025-09-16 02:30:27.236586+00 f t SUBTOTAL 54000.00 1 7592 \N +299250 2025-09-16 02:30:27.238458+00 2025-09-16 02:30:27.238466+00 f t DESCUENTO 0.00 2 7592 \N +299251 2025-09-16 02:30:27.239844+00 2025-09-16 02:30:27.23985+00 f t TOTAL 54000.00 3 7592 \N +299252 2025-09-16 02:30:27.241008+00 2025-09-16 02:30:27.241013+00 f t ADELANTO 13500.00 4 7592 \N +306309 2025-09-18 23:14:56.766565+00 2025-09-18 23:14:56.766573+00 f t SUBTOTAL 68000.00 1 7781 \N +306310 2025-09-18 23:14:56.768558+00 2025-09-18 23:14:56.768567+00 f t DESCUENTO 0.00 2 7781 \N +306311 2025-09-18 23:14:56.769997+00 2025-09-18 23:14:56.770007+00 f t TOTAL 68000.00 3 7781 \N +306312 2025-09-18 23:14:56.771192+00 2025-09-18 23:14:56.771198+00 f t ADELANTO 13000.00 4 7781 \N +293029 2025-09-13 17:35:12.996557+00 2025-09-13 17:35:12.996567+00 f t SUBTOTAL 75000.00 1 7486 \N +293030 2025-09-13 17:35:12.999095+00 2025-09-13 17:35:12.999105+00 f t DESCUENTO 0.00 2 7486 \N +293031 2025-09-13 17:35:13.000879+00 2025-09-13 17:35:13.000887+00 f t TOTAL 75000.00 3 7486 \N +293032 2025-09-13 17:35:13.002824+00 2025-09-13 17:35:13.002831+00 f t ADELANTO 15000.00 4 7486 \N +287737 2025-09-11 14:19:42.19249+00 2025-09-11 14:19:42.192498+00 f t SUBTOTAL 0.00 1 7344 \N +287738 2025-09-11 14:19:42.194079+00 2025-09-11 14:19:42.194087+00 f t DESCUENTO 0.00 2 7344 \N +287739 2025-09-11 14:19:42.195345+00 2025-09-11 14:19:42.19535+00 f t TOTAL 0.00 3 7344 \N +287740 2025-09-11 14:19:42.196353+00 2025-09-11 14:19:42.196357+00 f t ADELANTO 0.00 4 7344 \N +293181 2025-09-13 18:20:38.285051+00 2025-09-13 18:20:38.28506+00 f t SUBTOTAL 46000.00 1 7491 \N +293182 2025-09-13 18:20:38.287192+00 2025-09-13 18:20:38.287201+00 f t DESCUENTO 0.00 2 7491 \N +293183 2025-09-13 18:20:38.289091+00 2025-09-13 18:20:38.289101+00 f t TOTAL 46000.00 3 7491 \N +293184 2025-09-13 18:20:38.290846+00 2025-09-13 18:20:38.290853+00 f t ADELANTO 11000.00 4 7491 \N +293233 2025-09-13 19:23:43.081578+00 2025-09-13 19:23:43.081591+00 f t SUBTOTAL 70000.00 1 7493 \N +293234 2025-09-13 19:23:43.083658+00 2025-09-13 19:23:43.083669+00 f t DESCUENTO 0.00 2 7493 \N +293235 2025-09-13 19:23:43.085087+00 2025-09-13 19:23:43.085097+00 f t TOTAL 70000.00 3 7493 \N +293236 2025-09-13 19:23:43.086739+00 2025-09-13 19:23:43.086746+00 f t ADELANTO 19000.00 4 7493 \N +293498 2025-09-13 20:19:27.118849+00 2025-09-13 20:19:27.118859+00 f t DESCUENTO 0.00 2 7498 \N +293499 2025-09-13 20:19:27.120275+00 2025-09-13 20:19:27.120281+00 f t TOTAL 0.00 3 7498 \N +293500 2025-09-13 20:19:27.121278+00 2025-09-13 20:19:27.121284+00 f t ADELANTO 0.00 4 7498 \N +296581 2025-09-14 22:33:39.124665+00 2025-09-14 22:33:39.124673+00 f t SUBTOTAL 0.00 1 7538 \N +296582 2025-09-14 22:33:39.126639+00 2025-09-14 22:33:39.126649+00 f t DESCUENTO 0.00 2 7538 \N +296583 2025-09-14 22:33:39.128006+00 2025-09-14 22:33:39.128012+00 f t TOTAL 0.00 3 7538 \N +296584 2025-09-14 22:33:39.129231+00 2025-09-14 22:33:39.12924+00 f t ADELANTO 0.00 4 7538 \N +290525 2025-09-12 14:08:12.135458+00 2025-09-12 14:08:12.135467+00 f t SUBTOTAL 54000.00 1 7416 \N +290526 2025-09-12 14:08:12.137567+00 2025-09-12 14:08:12.137576+00 f t DESCUENTO 0.00 2 7416 \N +290527 2025-09-12 14:08:12.139001+00 2025-09-12 14:08:12.139008+00 f t TOTAL 54000.00 3 7416 \N +290528 2025-09-12 14:08:12.140243+00 2025-09-12 14:08:12.140248+00 f t ADELANTO 13500.00 4 7416 \N +297625 2025-09-15 13:09:15.219172+00 2025-09-15 13:09:15.219181+00 f t SUBTOTAL 70000.00 1 7553 \N +297626 2025-09-15 13:09:15.220911+00 2025-09-15 13:09:15.220919+00 f t DESCUENTO 0.00 2 7553 \N +297627 2025-09-15 13:09:15.222039+00 2025-09-15 13:09:15.222045+00 f t TOTAL 70000.00 3 7553 \N +297628 2025-09-15 13:09:15.223041+00 2025-09-15 13:09:15.223048+00 f t ADELANTO 19000.00 4 7553 \N +291381 2025-09-12 21:00:23.817941+00 2025-09-12 21:00:23.817953+00 f t SUBTOTAL 124900.00 1 7440 \N +291382 2025-09-12 21:00:23.821147+00 2025-09-12 21:00:23.82116+00 f t DESCUENTO 0.00 2 7440 \N +291383 2025-09-12 21:00:23.823371+00 2025-09-12 21:00:23.823383+00 f t TOTAL 124900.00 3 7440 \N +291384 2025-09-12 21:00:23.825799+00 2025-09-12 21:00:23.825811+00 f t ADELANTO 68400.00 4 7440 \N +291629 2025-09-12 22:00:54.226867+00 2025-09-12 22:00:54.226876+00 f t SUBTOTAL 92000.00 1 7442 \N +291630 2025-09-12 22:00:54.228731+00 2025-09-12 22:00:54.228738+00 f t DESCUENTO 0.00 2 7442 \N +291631 2025-09-12 22:00:54.230345+00 2025-09-12 22:00:54.230352+00 f t TOTAL 92000.00 3 7442 \N +291632 2025-09-12 22:00:54.231832+00 2025-09-12 22:00:54.231839+00 f t ADELANTO 22000.00 4 7442 \N +291821 2025-09-13 00:19:49.666291+00 2025-09-13 00:19:49.666299+00 f t SUBTOTAL 0.00 1 7454 \N +291822 2025-09-13 00:19:49.667821+00 2025-09-13 00:19:49.667828+00 f t DESCUENTO 0.00 2 7454 \N +291823 2025-09-13 00:19:49.668854+00 2025-09-13 00:19:49.668859+00 f t TOTAL 0.00 3 7454 \N +291824 2025-09-13 00:19:49.669861+00 2025-09-13 00:19:49.669868+00 f t ADELANTO 0.00 4 7454 \N +287921 2025-09-11 14:23:23.616109+00 2025-09-11 14:23:23.616117+00 f t SUBTOTAL 54000.00 1 7345 \N +287922 2025-09-11 14:23:23.617717+00 2025-09-11 14:23:23.617723+00 f t DESCUENTO 0.00 2 7345 \N +287923 2025-09-11 14:23:23.618921+00 2025-09-11 14:23:23.618927+00 f t TOTAL 54000.00 3 7345 \N +287924 2025-09-11 14:23:23.619876+00 2025-09-11 14:23:23.619881+00 f t ADELANTO 13500.00 4 7345 \N +287929 2025-09-11 14:43:06.290424+00 2025-09-11 14:43:06.290433+00 f t SUBTOTAL 0.00 1 7346 \N +287930 2025-09-11 14:43:06.291614+00 2025-09-11 14:43:06.29162+00 f t DESCUENTO 0.00 2 7346 \N +287931 2025-09-11 14:43:06.292672+00 2025-09-11 14:43:06.292678+00 f t TOTAL 0.00 3 7346 \N +287932 2025-09-11 14:43:06.293507+00 2025-09-11 14:43:06.293512+00 f t ADELANTO 0.00 4 7346 \N +287937 2025-09-11 14:47:53.643314+00 2025-09-11 14:47:53.643325+00 f t SUBTOTAL 155400.00 1 7343 \N +287938 2025-09-11 14:47:53.645206+00 2025-09-11 14:47:53.645216+00 f t DESCUENTO 0.00 2 7343 \N +287939 2025-09-11 14:47:53.646704+00 2025-09-11 14:47:53.646712+00 f t TOTAL 155400.00 3 7343 \N +287940 2025-09-11 14:47:53.648065+00 2025-09-11 14:47:53.648073+00 f t ADELANTO 57400.00 4 7343 \N +298229 2025-09-15 18:06:57.37454+00 2025-09-15 18:06:57.374548+00 f t SUBTOTAL 260900.00 1 7563 \N +298230 2025-09-15 18:06:57.376253+00 2025-09-15 18:06:57.37626+00 f t DESCUENTO 0.00 2 7563 \N +298231 2025-09-15 18:06:57.377321+00 2025-09-15 18:06:57.377327+00 f t TOTAL 260900.00 3 7563 \N +298232 2025-09-15 18:06:57.378258+00 2025-09-15 18:06:57.378263+00 f t ADELANTO 138900.00 4 7563 \N +292225 2025-09-13 07:30:38.711452+00 2025-09-13 07:30:38.711462+00 f t SUBTOTAL 0.00 1 7466 \N +292226 2025-09-13 07:30:38.712707+00 2025-09-13 07:30:38.712713+00 f t DESCUENTO 0.00 2 7466 \N +292227 2025-09-13 07:30:38.713742+00 2025-09-13 07:30:38.713747+00 f t TOTAL 0.00 3 7466 \N +292228 2025-09-13 07:30:38.714713+00 2025-09-13 07:30:38.714718+00 f t ADELANTO 0.00 4 7466 \N +298461 2025-09-15 21:49:13.850552+00 2025-09-15 21:49:13.850564+00 f t SUBTOTAL 0.00 1 7571 \N +298462 2025-09-15 21:49:13.852065+00 2025-09-15 21:49:13.852074+00 f t DESCUENTO 0.00 2 7571 \N +298463 2025-09-15 21:49:13.853142+00 2025-09-15 21:49:13.853147+00 f t TOTAL 0.00 3 7571 \N +298464 2025-09-15 21:49:13.854187+00 2025-09-15 21:49:13.854193+00 f t ADELANTO 0.00 4 7571 \N +287981 2025-09-11 15:10:15.652923+00 2025-09-11 15:10:15.652931+00 f t SUBTOTAL 54000.00 1 7347 \N +287982 2025-09-11 15:10:15.654694+00 2025-09-11 15:10:15.654704+00 f t DESCUENTO 0.00 2 7347 \N +287983 2025-09-11 15:10:15.655911+00 2025-09-11 15:10:15.655918+00 f t TOTAL 54000.00 3 7347 \N +287984 2025-09-11 15:10:15.656947+00 2025-09-11 15:10:15.656952+00 f t ADELANTO 13500.00 4 7347 \N +287989 2025-09-11 15:29:44.250153+00 2025-09-11 15:29:44.250165+00 f t SUBTOTAL 0.00 1 7348 \N +287990 2025-09-11 15:29:44.252008+00 2025-09-11 15:29:44.252017+00 f t DESCUENTO 0.00 2 7348 \N +287991 2025-09-11 15:29:44.254082+00 2025-09-11 15:29:44.254091+00 f t TOTAL 0.00 3 7348 \N +287992 2025-09-11 15:29:44.255621+00 2025-09-11 15:29:44.25563+00 f t ADELANTO 0.00 4 7348 \N +299033 2025-09-16 01:20:28.636892+00 2025-09-16 01:20:28.636905+00 f t SUBTOTAL 99400.00 1 7585 \N +299034 2025-09-16 01:20:28.639801+00 2025-09-16 01:20:28.639814+00 f t DESCUENTO 0.00 2 7585 \N +299035 2025-09-16 01:20:28.641763+00 2025-09-16 01:20:28.641772+00 f t TOTAL 99400.00 3 7585 \N +299036 2025-09-16 01:20:28.644392+00 2025-09-16 01:20:28.644401+00 f t ADELANTO 58900.00 4 7585 \N +292789 2025-09-13 15:03:22.152133+00 2025-09-13 15:03:22.152142+00 f t SUBTOTAL 30000.00 1 7480 \N +292790 2025-09-13 15:03:22.153869+00 2025-09-13 15:03:22.153877+00 f t DESCUENTO 0.00 2 7480 \N +292791 2025-09-13 15:03:22.154977+00 2025-09-13 15:03:22.154983+00 f t TOTAL 30000.00 3 7480 \N +292792 2025-09-13 15:03:22.156067+00 2025-09-13 15:03:22.156072+00 f t ADELANTO 30000.00 4 7480 \N +288025 2025-09-11 15:36:03.980547+00 2025-09-11 15:36:03.980555+00 f t SUBTOTAL 70000.00 1 7349 \N +288026 2025-09-11 15:36:03.982397+00 2025-09-11 15:36:03.982405+00 f t DESCUENTO 0.00 2 7349 \N +288027 2025-09-11 15:36:03.983711+00 2025-09-11 15:36:03.983718+00 f t TOTAL 70000.00 3 7349 \N +288028 2025-09-11 15:36:03.984904+00 2025-09-11 15:36:03.98491+00 f t ADELANTO 19000.00 4 7349 \N +299545 2025-09-16 11:20:10.639445+00 2025-09-16 11:20:10.639454+00 f t SUBTOTAL 46000.00 1 7606 \N +299546 2025-09-16 11:20:10.641659+00 2025-09-16 11:20:10.641667+00 f t DESCUENTO 0.00 2 7606 \N +299547 2025-09-16 11:20:10.643292+00 2025-09-16 11:20:10.643301+00 f t TOTAL 46000.00 3 7606 \N +299548 2025-09-16 11:20:10.644864+00 2025-09-16 11:20:10.644876+00 f t ADELANTO 11000.00 4 7606 \N +288053 2025-09-11 15:47:54.215998+00 2025-09-11 15:47:54.216008+00 f t SUBTOTAL 0.00 1 7350 \N +288054 2025-09-11 15:47:54.218047+00 2025-09-11 15:47:54.218058+00 f t DESCUENTO 0.00 2 7350 \N +288055 2025-09-11 15:47:54.219449+00 2025-09-11 15:47:54.219459+00 f t TOTAL 0.00 3 7350 \N +288056 2025-09-11 15:47:54.220739+00 2025-09-11 15:47:54.220745+00 f t ADELANTO 0.00 4 7350 \N +288081 2025-09-11 16:16:07.822295+00 2025-09-11 16:16:07.822304+00 f t SUBTOTAL 46000.00 1 7351 \N +288082 2025-09-11 16:16:07.823942+00 2025-09-11 16:16:07.823951+00 f t DESCUENTO 0.00 2 7351 \N +288083 2025-09-11 16:16:07.82572+00 2025-09-11 16:16:07.825728+00 f t TOTAL 46000.00 3 7351 \N +288084 2025-09-11 16:16:07.827044+00 2025-09-11 16:16:07.827049+00 f t ADELANTO 11000.00 4 7351 \N +290261 2025-09-12 13:01:25.630687+00 2025-09-12 13:01:25.630695+00 f t SUBTOTAL 55000.00 1 7406 \N +290262 2025-09-12 13:01:25.632494+00 2025-09-12 13:01:25.632503+00 f t DESCUENTO 0.00 2 7406 \N +290263 2025-09-12 13:01:25.633671+00 2025-09-12 13:01:25.633678+00 f t TOTAL 55000.00 3 7406 \N +290264 2025-09-12 13:01:25.634722+00 2025-09-12 13:01:25.634728+00 f t ADELANTO 11000.00 4 7406 \N +288141 2025-09-11 16:42:16.884739+00 2025-09-11 16:42:16.884748+00 f t SUBTOTAL 46000.00 1 7353 \N +288142 2025-09-11 16:42:16.886195+00 2025-09-11 16:42:16.886201+00 f t DESCUENTO 0.00 2 7353 \N +288143 2025-09-11 16:42:16.887318+00 2025-09-11 16:42:16.887325+00 f t TOTAL 46000.00 3 7353 \N +288144 2025-09-11 16:42:16.8884+00 2025-09-11 16:42:16.888405+00 f t ADELANTO 11000.00 4 7353 \N +288157 2025-09-11 16:42:38.650416+00 2025-09-11 16:42:38.650426+00 f t SUBTOTAL 46000.00 1 7352 \N +288158 2025-09-11 16:42:38.652033+00 2025-09-11 16:42:38.652041+00 f t DESCUENTO 0.00 2 7352 \N +288159 2025-09-11 16:42:38.653253+00 2025-09-11 16:42:38.653258+00 f t TOTAL 46000.00 3 7352 \N +288160 2025-09-11 16:42:38.65425+00 2025-09-11 16:42:38.654255+00 f t ADELANTO 11000.00 4 7352 \N +290797 2025-09-12 16:54:28.519452+00 2025-09-12 16:54:28.519465+00 f t SUBTOTAL 55000.00 1 7426 \N +290798 2025-09-12 16:54:28.521594+00 2025-09-12 16:54:28.521607+00 f t DESCUENTO 0.00 2 7426 \N +290799 2025-09-12 16:54:28.523196+00 2025-09-12 16:54:28.523204+00 f t TOTAL 55000.00 3 7426 \N +290800 2025-09-12 16:54:28.524546+00 2025-09-12 16:54:28.524555+00 f t ADELANTO 11000.00 4 7426 \N +288201 2025-09-11 16:59:28.004994+00 2025-09-11 16:59:28.005003+00 f t SUBTOTAL 0.00 1 7355 \N +288202 2025-09-11 16:59:28.006608+00 2025-09-11 16:59:28.006616+00 f t DESCUENTO 0.00 2 7355 \N +288203 2025-09-11 16:59:28.008041+00 2025-09-11 16:59:28.008047+00 f t TOTAL 0.00 3 7355 \N +288204 2025-09-11 16:59:28.009268+00 2025-09-11 16:59:28.009275+00 f t ADELANTO 0.00 4 7355 \N +291637 2025-09-12 22:16:56.156068+00 2025-09-12 22:16:56.156076+00 f t SUBTOTAL 0.00 1 7445 \N +291638 2025-09-12 22:16:56.157489+00 2025-09-12 22:16:56.157496+00 f t DESCUENTO 0.00 2 7445 \N +291639 2025-09-12 22:16:56.158468+00 2025-09-12 22:16:56.158473+00 f t TOTAL 0.00 3 7445 \N +291640 2025-09-12 22:16:56.159293+00 2025-09-12 22:16:56.159298+00 f t ADELANTO 0.00 4 7445 \N +288225 2025-09-11 17:00:06.977496+00 2025-09-11 17:00:06.977509+00 f t SUBTOTAL 0.00 1 7354 \N +288226 2025-09-11 17:00:06.983053+00 2025-09-11 17:00:06.983065+00 f t DESCUENTO 0.00 2 7354 \N +288227 2025-09-11 17:00:06.987775+00 2025-09-11 17:00:06.987789+00 f t TOTAL 0.00 3 7354 \N +288228 2025-09-11 17:00:06.990624+00 2025-09-11 17:00:06.990639+00 f t ADELANTO 0.00 4 7354 \N +291829 2025-09-13 00:22:16.26238+00 2025-09-13 00:22:16.262388+00 f t SUBTOTAL 0.00 1 7455 \N +291830 2025-09-13 00:22:16.264124+00 2025-09-13 00:22:16.264131+00 f t DESCUENTO 0.00 2 7455 \N +291831 2025-09-13 00:22:16.265362+00 2025-09-13 00:22:16.265368+00 f t TOTAL 0.00 3 7455 \N +291832 2025-09-13 00:22:16.266568+00 2025-09-13 00:22:16.266574+00 f t ADELANTO 0.00 4 7455 \N +298237 2025-09-15 18:13:22.170289+00 2025-09-15 18:13:22.170297+00 f t SUBTOTAL 0.00 1 7564 \N +298238 2025-09-15 18:13:22.172113+00 2025-09-15 18:13:22.172124+00 f t DESCUENTO 0.00 2 7564 \N +298239 2025-09-15 18:13:22.173679+00 2025-09-15 18:13:22.173687+00 f t TOTAL 0.00 3 7564 \N +298240 2025-09-15 18:13:22.175024+00 2025-09-15 18:13:22.175032+00 f t ADELANTO 0.00 4 7564 \N +288273 2025-09-11 17:41:42.092037+00 2025-09-11 17:41:42.09205+00 f t SUBTOTAL 0.00 1 7356 \N +288274 2025-09-11 17:41:42.094159+00 2025-09-11 17:41:42.094167+00 f t DESCUENTO 0.00 2 7356 \N +288275 2025-09-11 17:41:42.096294+00 2025-09-11 17:41:42.096302+00 f t TOTAL 0.00 3 7356 \N +288276 2025-09-11 17:41:42.097885+00 2025-09-11 17:41:42.097892+00 f t ADELANTO 0.00 4 7356 \N +298897 2025-09-16 01:04:48.919412+00 2025-09-16 01:04:48.91942+00 f t SUBTOTAL 99400.00 1 7583 \N +298898 2025-09-16 01:04:48.921421+00 2025-09-16 01:04:48.921427+00 f t DESCUENTO 0.00 2 7583 \N +298899 2025-09-16 01:04:48.922925+00 2025-09-16 01:04:48.922931+00 f t TOTAL 99400.00 3 7583 \N +298900 2025-09-16 01:04:48.924299+00 2025-09-16 01:04:48.924305+00 f t ADELANTO 58900.00 4 7583 \N +288293 2025-09-11 18:02:44.418381+00 2025-09-11 18:02:44.418389+00 f t SUBTOTAL 0.00 1 7357 \N +288294 2025-09-11 18:02:44.420264+00 2025-09-11 18:02:44.420272+00 f t DESCUENTO 0.00 2 7357 \N +288295 2025-09-11 18:02:44.421479+00 2025-09-11 18:02:44.421486+00 f t TOTAL 0.00 3 7357 \N +288296 2025-09-11 18:02:44.422569+00 2025-09-11 18:02:44.422575+00 f t ADELANTO 0.00 4 7357 \N +299257 2025-09-16 02:30:34.919479+00 2025-09-16 02:30:34.919488+00 f t SUBTOTAL 54000.00 1 7593 \N +299258 2025-09-16 02:30:34.921802+00 2025-09-16 02:30:34.921809+00 f t DESCUENTO 0.00 2 7593 \N +299259 2025-09-16 02:30:34.92333+00 2025-09-16 02:30:34.923338+00 f t TOTAL 54000.00 3 7593 \N +299260 2025-09-16 02:30:34.924755+00 2025-09-16 02:30:34.924762+00 f t ADELANTO 13500.00 4 7593 \N +299425 2025-09-16 10:52:54.955014+00 2025-09-16 10:52:54.955022+00 f t SUBTOTAL 0.00 1 7604 \N +299426 2025-09-16 10:52:54.957019+00 2025-09-16 10:52:54.95703+00 f t DESCUENTO 0.00 2 7604 \N +299427 2025-09-16 10:52:54.958294+00 2025-09-16 10:52:54.958302+00 f t TOTAL 0.00 3 7604 \N +299428 2025-09-16 10:52:54.960183+00 2025-09-16 10:52:54.960193+00 f t ADELANTO 0.00 4 7604 \N +288325 2025-09-11 18:17:59.000789+00 2025-09-11 18:17:59.0008+00 f t SUBTOTAL 68000.00 1 7358 \N +288326 2025-09-11 18:17:59.002518+00 2025-09-11 18:17:59.002526+00 f t DESCUENTO 0.00 2 7358 \N +288327 2025-09-11 18:17:59.004622+00 2025-09-11 18:17:59.004634+00 f t TOTAL 68000.00 3 7358 \N +288328 2025-09-11 18:17:59.00596+00 2025-09-11 18:17:59.005968+00 f t ADELANTO 13000.00 4 7358 \N +288333 2025-09-11 18:33:31.52381+00 2025-09-11 18:33:31.523819+00 f t SUBTOTAL 0.00 1 7359 \N +288334 2025-09-11 18:33:31.525242+00 2025-09-11 18:33:31.525249+00 f t DESCUENTO 0.00 2 7359 \N +288335 2025-09-11 18:33:31.526349+00 2025-09-11 18:33:31.526358+00 f t TOTAL 0.00 3 7359 \N +288336 2025-09-11 18:33:31.527308+00 2025-09-11 18:33:31.527313+00 f t ADELANTO 0.00 4 7359 \N +292985 2025-09-13 17:27:33.612439+00 2025-09-13 17:27:33.612448+00 f t SUBTOTAL 72500.00 1 7484 \N +292986 2025-09-13 17:27:33.614435+00 2025-09-13 17:27:33.614444+00 f t DESCUENTO 0.00 2 7484 \N +292987 2025-09-13 17:27:33.616056+00 2025-09-13 17:27:33.616062+00 f t TOTAL 72500.00 3 7484 \N +292988 2025-09-13 17:27:33.617298+00 2025-09-13 17:27:33.617304+00 f t ADELANTO 72500.00 4 7484 \N +288341 2025-09-11 18:40:20.356723+00 2025-09-11 18:40:20.356732+00 f t SUBTOTAL 0.00 1 7360 \N +288342 2025-09-11 18:40:20.357932+00 2025-09-11 18:40:20.357938+00 f t DESCUENTO 0.00 2 7360 \N +288343 2025-09-11 18:40:20.358978+00 2025-09-11 18:40:20.358983+00 f t TOTAL 0.00 3 7360 \N +288344 2025-09-11 18:40:20.359958+00 2025-09-11 18:40:20.359963+00 f t ADELANTO 0.00 4 7360 \N +293289 2025-09-13 19:41:28.3554+00 2025-09-13 19:41:28.355414+00 f t SUBTOTAL 94000.00 1 7494 \N +293290 2025-09-13 19:41:28.357363+00 2025-09-13 19:41:28.357374+00 f t DESCUENTO 0.00 2 7494 \N +293291 2025-09-13 19:41:28.358718+00 2025-09-13 19:41:28.358726+00 f t TOTAL 94000.00 3 7494 \N +293292 2025-09-13 19:41:28.360116+00 2025-09-13 19:41:28.360123+00 f t ADELANTO 27000.00 4 7494 \N +293341 2025-09-13 20:04:42.073245+00 2025-09-13 20:04:42.073256+00 f t SUBTOTAL 0.00 1 7496 \N +293342 2025-09-13 20:04:42.075111+00 2025-09-13 20:04:42.075118+00 f t DESCUENTO 0.00 2 7496 \N +293343 2025-09-13 20:04:42.076259+00 2025-09-13 20:04:42.076265+00 f t TOTAL 0.00 3 7496 \N +293344 2025-09-13 20:04:42.077603+00 2025-09-13 20:04:42.077608+00 f t ADELANTO 0.00 4 7496 \N +288385 2025-09-11 18:55:14.409197+00 2025-09-11 18:55:14.409205+00 f t SUBTOTAL 72500.00 1 7361 \N +288386 2025-09-11 18:55:14.410753+00 2025-09-11 18:55:14.410761+00 f t DESCUENTO 0.00 2 7361 \N +288387 2025-09-11 18:55:14.411935+00 2025-09-11 18:55:14.411941+00 f t TOTAL 72500.00 3 7361 \N +288388 2025-09-11 18:55:14.413037+00 2025-09-11 18:55:14.413043+00 f t ADELANTO 72500.00 4 7361 \N +289981 2025-09-12 11:31:35.516199+00 2025-09-12 11:31:35.516209+00 f t SUBTOTAL 76000.00 1 7399 \N +289982 2025-09-12 11:31:35.518173+00 2025-09-12 11:31:35.51818+00 f t DESCUENTO 0.00 2 7399 \N +289983 2025-09-12 11:31:35.520259+00 2025-09-12 11:31:35.520265+00 f t TOTAL 76000.00 3 7399 \N +289984 2025-09-12 11:31:35.521501+00 2025-09-12 11:31:35.521507+00 f t ADELANTO 11000.00 4 7399 \N +290081 2025-09-12 12:04:44.7373+00 2025-09-12 12:04:44.737312+00 f t SUBTOTAL 0.00 1 7400 \N +288417 2025-09-11 19:07:56.889912+00 2025-09-11 19:07:56.88992+00 f t SUBTOTAL 46000.00 1 7362 \N +288418 2025-09-11 19:07:56.891436+00 2025-09-11 19:07:56.891443+00 f t DESCUENTO 0.00 2 7362 \N +288419 2025-09-11 19:07:56.89259+00 2025-09-11 19:07:56.892596+00 f t TOTAL 46000.00 3 7362 \N +288420 2025-09-11 19:07:56.893792+00 2025-09-11 19:07:56.893797+00 f t ADELANTO 11000.00 4 7362 \N +290082 2025-09-12 12:04:44.739324+00 2025-09-12 12:04:44.739332+00 f t DESCUENTO 0.00 2 7400 \N +290083 2025-09-12 12:04:44.74074+00 2025-09-12 12:04:44.740746+00 f t TOTAL 0.00 3 7400 \N +290084 2025-09-12 12:04:44.741828+00 2025-09-12 12:04:44.741833+00 f t ADELANTO 0.00 4 7400 \N +288445 2025-09-11 19:09:39.786044+00 2025-09-11 19:09:39.786053+00 f t SUBTOTAL 153900.00 1 7363 \N +288446 2025-09-11 19:09:39.787982+00 2025-09-11 19:09:39.787991+00 f t DESCUENTO 0.00 2 7363 \N +288447 2025-09-11 19:09:39.789684+00 2025-09-11 19:09:39.789695+00 f t TOTAL 153900.00 3 7363 \N +288448 2025-09-11 19:09:39.791109+00 2025-09-11 19:09:39.791116+00 f t ADELANTO 113400.00 4 7363 \N +297377 2025-09-15 01:29:05.583657+00 2025-09-15 01:29:05.583667+00 f t SUBTOTAL 87400.00 1 7548 \N +297378 2025-09-15 01:29:05.586432+00 2025-09-15 01:29:05.586445+00 f t DESCUENTO 0.00 2 7548 \N +297379 2025-09-15 01:29:05.58855+00 2025-09-15 01:29:05.588561+00 f t TOTAL 87400.00 3 7548 \N +297380 2025-09-15 01:29:05.590544+00 2025-09-15 01:29:05.590555+00 f t ADELANTO 46900.00 4 7548 \N +297473 2025-09-15 12:57:49.835541+00 2025-09-15 12:57:49.835551+00 f t SUBTOTAL 54000.00 1 7552 \N +288473 2025-09-11 19:21:43.451943+00 2025-09-11 19:21:43.451955+00 f t SUBTOTAL 68000.00 1 7364 \N +288474 2025-09-11 19:21:43.453887+00 2025-09-11 19:21:43.453897+00 f t DESCUENTO 0.00 2 7364 \N +288475 2025-09-11 19:21:43.455862+00 2025-09-11 19:21:43.455871+00 f t TOTAL 68000.00 3 7364 \N +288476 2025-09-11 19:21:43.457426+00 2025-09-11 19:21:43.457434+00 f t ADELANTO 13000.00 4 7364 \N +297474 2025-09-15 12:57:49.837394+00 2025-09-15 12:57:49.837401+00 f t DESCUENTO 0.00 2 7552 \N +297475 2025-09-15 12:57:49.838514+00 2025-09-15 12:57:49.838519+00 f t TOTAL 54000.00 3 7552 \N +297476 2025-09-15 12:57:49.840242+00 2025-09-15 12:57:49.840247+00 f t ADELANTO 13500.00 4 7552 \N +288481 2025-09-11 19:46:40.136436+00 2025-09-11 19:46:40.136447+00 f t SUBTOTAL 0.00 1 7365 \N +288482 2025-09-11 19:46:40.13812+00 2025-09-11 19:46:40.13813+00 f t DESCUENTO 0.00 2 7365 \N +288483 2025-09-11 19:46:40.139459+00 2025-09-11 19:46:40.139467+00 f t TOTAL 0.00 3 7365 \N +288484 2025-09-11 19:46:40.140737+00 2025-09-11 19:46:40.140744+00 f t ADELANTO 0.00 4 7365 \N +288517 2025-09-11 20:11:40.094546+00 2025-09-11 20:11:40.094556+00 f t SUBTOTAL 54000.00 1 7366 \N +288518 2025-09-11 20:11:40.096166+00 2025-09-11 20:11:40.096173+00 f t DESCUENTO 0.00 2 7366 \N +288519 2025-09-11 20:11:40.097671+00 2025-09-11 20:11:40.097678+00 f t TOTAL 54000.00 3 7366 \N +288520 2025-09-11 20:11:40.098942+00 2025-09-11 20:11:40.098947+00 f t ADELANTO 13500.00 4 7366 \N +291837 2025-09-13 00:51:26.398424+00 2025-09-13 00:51:26.398432+00 f t SUBTOTAL 0.00 1 7456 \N +291838 2025-09-13 00:51:26.399923+00 2025-09-13 00:51:26.399931+00 f t DESCUENTO 0.00 2 7456 \N +291839 2025-09-13 00:51:26.401176+00 2025-09-13 00:51:26.401182+00 f t TOTAL 0.00 3 7456 \N +291840 2025-09-13 00:51:26.402272+00 2025-09-13 00:51:26.402278+00 f t ADELANTO 0.00 4 7456 \N +288565 2025-09-11 20:34:45.2338+00 2025-09-11 20:34:45.233808+00 f t SUBTOTAL 54000.00 1 7367 \N +288566 2025-09-11 20:34:45.235406+00 2025-09-11 20:34:45.235414+00 f t DESCUENTO 0.00 2 7367 \N +288567 2025-09-11 20:34:45.236631+00 2025-09-11 20:34:45.236637+00 f t TOTAL 54000.00 3 7367 \N +288568 2025-09-11 20:34:45.237643+00 2025-09-11 20:34:45.237649+00 f t ADELANTO 13500.00 4 7367 \N +288573 2025-09-11 20:48:22.614211+00 2025-09-11 20:48:22.61422+00 f t SUBTOTAL 0.00 1 7368 \N +288574 2025-09-11 20:48:22.615823+00 2025-09-11 20:48:22.615831+00 f t DESCUENTO 0.00 2 7368 \N +288575 2025-09-11 20:48:22.617389+00 2025-09-11 20:48:22.617398+00 f t TOTAL 0.00 3 7368 \N +288576 2025-09-11 20:48:22.618713+00 2025-09-11 20:48:22.618721+00 f t ADELANTO 0.00 4 7368 \N +288581 2025-09-11 20:54:00.996854+00 2025-09-11 20:54:00.996862+00 f t SUBTOTAL 0.00 1 7369 \N +288582 2025-09-11 20:54:00.998192+00 2025-09-11 20:54:00.998201+00 f t DESCUENTO 0.00 2 7369 \N +288583 2025-09-11 20:54:00.999306+00 2025-09-11 20:54:00.999312+00 f t TOTAL 0.00 3 7369 \N +288584 2025-09-11 20:54:01.000794+00 2025-09-11 20:54:01.000803+00 f t ADELANTO 0.00 4 7369 \N +292641 2025-09-13 13:15:37.207761+00 2025-09-13 13:15:37.207769+00 f t SUBTOTAL 55000.00 1 7476 \N +292642 2025-09-13 13:15:37.209124+00 2025-09-13 13:15:37.20913+00 f t DESCUENTO 0.00 2 7476 \N +292643 2025-09-13 13:15:37.21017+00 2025-09-13 13:15:37.210175+00 f t TOTAL 55000.00 3 7476 \N +292644 2025-09-13 13:15:37.2114+00 2025-09-13 13:15:37.211406+00 f t ADELANTO 11000.00 4 7476 \N +288601 2025-09-11 21:10:29.353951+00 2025-09-11 21:10:29.35396+00 f t SUBTOTAL 0.00 1 7370 \N +288602 2025-09-11 21:10:29.355865+00 2025-09-11 21:10:29.355873+00 f t DESCUENTO 0.00 2 7370 \N +288603 2025-09-11 21:10:29.357137+00 2025-09-11 21:10:29.357145+00 f t TOTAL 0.00 3 7370 \N +288604 2025-09-11 21:10:29.358536+00 2025-09-11 21:10:29.358543+00 f t ADELANTO 0.00 4 7370 \N +292941 2025-09-13 17:11:40.036466+00 2025-09-13 17:11:40.036474+00 f t SUBTOTAL 46000.00 1 7483 \N +292942 2025-09-13 17:11:40.038425+00 2025-09-13 17:11:40.038433+00 f t DESCUENTO 0.00 2 7483 \N +292943 2025-09-13 17:11:40.039906+00 2025-09-13 17:11:40.039913+00 f t TOTAL 46000.00 3 7483 \N +292944 2025-09-13 17:11:40.040923+00 2025-09-13 17:11:40.040928+00 f t ADELANTO 11000.00 4 7483 \N +292993 2025-09-13 17:28:51.102393+00 2025-09-13 17:28:51.102407+00 f t SUBTOTAL 0.00 1 7485 \N +292994 2025-09-13 17:28:51.104337+00 2025-09-13 17:28:51.10435+00 f t DESCUENTO 0.00 2 7485 \N +292995 2025-09-13 17:28:51.105973+00 2025-09-13 17:28:51.105984+00 f t TOTAL 0.00 3 7485 \N +292996 2025-09-13 17:28:51.107422+00 2025-09-13 17:28:51.107431+00 f t ADELANTO 0.00 4 7485 \N +293197 2025-09-13 19:10:54.919734+00 2025-09-13 19:10:54.919745+00 f t SUBTOTAL 0.00 1 7492 \N +293198 2025-09-13 19:10:54.922379+00 2025-09-13 19:10:54.922388+00 f t DESCUENTO 0.00 2 7492 \N +293199 2025-09-13 19:10:54.927419+00 2025-09-13 19:10:54.927427+00 f t TOTAL 0.00 3 7492 \N +293200 2025-09-13 19:10:54.92899+00 2025-09-13 19:10:54.928996+00 f t ADELANTO 0.00 4 7492 \N +293345 2025-09-13 20:04:43.897857+00 2025-09-13 20:04:43.897865+00 f t SUBTOTAL 112000.00 1 7495 \N +293346 2025-09-13 20:04:43.899851+00 2025-09-13 20:04:43.899858+00 f t DESCUENTO 0.00 2 7495 \N +293347 2025-09-13 20:04:43.902055+00 2025-09-13 20:04:43.902065+00 f t TOTAL 112000.00 3 7495 \N +293348 2025-09-13 20:04:43.903675+00 2025-09-13 20:04:43.903684+00 f t ADELANTO 27500.00 4 7495 \N +362564 2025-10-07 20:59:29.370661+00 2025-10-07 20:59:29.370667+00 f t ADELANTO 13000.00 4 9104 \N +324136 2025-09-24 22:46:44.619781+00 2025-09-24 22:46:44.61979+00 f t ADELANTO 11000.00 4 8200 \N +309645 2025-09-19 22:49:56.175293+00 2025-09-19 22:49:56.175301+00 f t SUBTOTAL 0.00 1 7856 \N +309646 2025-09-19 22:49:56.177169+00 2025-09-19 22:49:56.177178+00 f t DESCUENTO 0.00 2 7856 \N +309647 2025-09-19 22:49:56.17848+00 2025-09-19 22:49:56.178486+00 f t TOTAL 0.00 3 7856 \N +309648 2025-09-19 22:49:56.179834+00 2025-09-19 22:49:56.17984+00 f t ADELANTO 0.00 4 7856 \N +354749 2025-10-05 19:53:21.215166+00 2025-10-05 19:53:21.215179+00 f t SUBTOTAL 55000.00 1 8893 \N +354750 2025-10-05 19:53:21.217391+00 2025-10-05 19:53:21.217398+00 f t DESCUENTO 0.00 2 8893 \N +354751 2025-10-05 19:53:21.218778+00 2025-10-05 19:53:21.218787+00 f t TOTAL 55000.00 3 8893 \N +354752 2025-10-05 19:53:21.219926+00 2025-10-05 19:53:21.219931+00 f t ADELANTO 11000.00 4 8893 \N +288713 2025-09-11 22:16:10.588622+00 2025-09-11 22:16:10.588633+00 f t SUBTOTAL 30000.00 1 7371 \N +288714 2025-09-11 22:16:10.590527+00 2025-09-11 22:16:10.590536+00 f t DESCUENTO 0.00 2 7371 \N +288715 2025-09-11 22:16:10.59186+00 2025-09-11 22:16:10.591866+00 f t TOTAL 30000.00 3 7371 \N +288716 2025-09-11 22:16:10.593122+00 2025-09-11 22:16:10.59313+00 f t ADELANTO 30000.00 4 7371 \N +303581 2025-09-18 02:54:50.12559+00 2025-09-18 02:54:50.1256+00 f t SUBTOTAL 0.00 1 7710 \N +303582 2025-09-18 02:54:50.127442+00 2025-09-18 02:54:50.127451+00 f t DESCUENTO 0.00 2 7710 \N +303583 2025-09-18 02:54:50.129107+00 2025-09-18 02:54:50.129115+00 f t TOTAL 0.00 3 7710 \N +303584 2025-09-18 02:54:50.130758+00 2025-09-18 02:54:50.130768+00 f t ADELANTO 0.00 4 7710 \N +290269 2025-09-12 13:02:00.320313+00 2025-09-12 13:02:00.320322+00 f t SUBTOTAL 55000.00 1 7385 \N +290270 2025-09-12 13:02:00.322484+00 2025-09-12 13:02:00.322491+00 f t DESCUENTO 0.00 2 7385 \N +290271 2025-09-12 13:02:00.323972+00 2025-09-12 13:02:00.323992+00 f t TOTAL 55000.00 3 7385 \N +290272 2025-09-12 13:02:00.325505+00 2025-09-12 13:02:00.325514+00 f t ADELANTO 11000.00 4 7385 \N +288729 2025-09-11 22:24:20.495093+00 2025-09-11 22:24:20.495102+00 f t SUBTOTAL 0.00 1 7372 \N +288730 2025-09-11 22:24:20.497036+00 2025-09-11 22:24:20.497044+00 f t DESCUENTO 0.00 2 7372 \N +288731 2025-09-11 22:24:20.498329+00 2025-09-11 22:24:20.498335+00 f t TOTAL 0.00 3 7372 \N +288732 2025-09-11 22:24:20.499737+00 2025-09-11 22:24:20.499742+00 f t ADELANTO 0.00 4 7372 \N +290453 2025-09-12 13:39:32.521182+00 2025-09-12 13:39:32.521194+00 f t SUBTOTAL 0.00 1 7414 \N +290454 2025-09-12 13:39:32.523222+00 2025-09-12 13:39:32.523229+00 f t DESCUENTO 0.00 2 7414 \N +290455 2025-09-12 13:39:32.524516+00 2025-09-12 13:39:32.524522+00 f t TOTAL 0.00 3 7414 \N +290456 2025-09-12 13:39:32.52595+00 2025-09-12 13:39:32.525958+00 f t ADELANTO 0.00 4 7414 \N +297029 2025-09-14 23:55:37.887272+00 2025-09-14 23:55:37.887284+00 f t SUBTOTAL 138000.00 1 7541 \N +297030 2025-09-14 23:55:37.889614+00 2025-09-14 23:55:37.889623+00 f t DESCUENTO 0.00 2 7541 \N +297031 2025-09-14 23:55:37.891217+00 2025-09-14 23:55:37.891223+00 f t TOTAL 138000.00 3 7541 \N +297032 2025-09-14 23:55:37.892516+00 2025-09-14 23:55:37.892522+00 f t ADELANTO 33000.00 4 7541 \N +297297 2025-09-15 00:46:35.080849+00 2025-09-15 00:46:35.080857+00 f t SUBTOTAL 87400.00 1 7546 \N +297298 2025-09-15 00:46:35.082824+00 2025-09-15 00:46:35.082832+00 f t DESCUENTO 0.00 2 7546 \N +288753 2025-09-11 22:31:35.623824+00 2025-09-11 22:31:35.623834+00 f t SUBTOTAL 0.00 1 7373 \N +288754 2025-09-11 22:31:35.625681+00 2025-09-11 22:31:35.62569+00 f t DESCUENTO 0.00 2 7373 \N +288755 2025-09-11 22:31:35.626734+00 2025-09-11 22:31:35.62674+00 f t TOTAL 0.00 3 7373 \N +288756 2025-09-11 22:31:35.627702+00 2025-09-11 22:31:35.627707+00 f t ADELANTO 0.00 4 7373 \N +297299 2025-09-15 00:46:35.084381+00 2025-09-15 00:46:35.08439+00 f t TOTAL 87400.00 3 7546 \N +297300 2025-09-15 00:46:35.085584+00 2025-09-15 00:46:35.08559+00 f t ADELANTO 46900.00 4 7546 \N +288785 2025-09-11 22:57:07.111175+00 2025-09-11 22:57:07.111187+00 f t SUBTOTAL 55000.00 1 7374 \N +288786 2025-09-11 22:57:07.113004+00 2025-09-11 22:57:07.113014+00 f t DESCUENTO 0.00 2 7374 \N +288787 2025-09-11 22:57:07.114439+00 2025-09-11 22:57:07.114449+00 f t TOTAL 55000.00 3 7374 \N +288788 2025-09-11 22:57:07.115804+00 2025-09-11 22:57:07.115813+00 f t ADELANTO 11000.00 4 7374 \N +297801 2025-09-15 15:29:19.427839+00 2025-09-15 15:29:19.427849+00 f t SUBTOTAL 98400.00 1 7557 \N +297802 2025-09-15 15:29:19.429604+00 2025-09-15 15:29:19.42961+00 f t DESCUENTO 0.00 2 7557 \N +297803 2025-09-15 15:29:19.430892+00 2025-09-15 15:29:19.430898+00 f t TOTAL 98400.00 3 7557 \N +297804 2025-09-15 15:29:19.43194+00 2025-09-15 15:29:19.431945+00 f t ADELANTO 57900.00 4 7557 \N +291561 2025-09-12 21:58:31.822093+00 2025-09-12 21:58:31.822101+00 f t SUBTOTAL 0.00 1 7443 \N +291562 2025-09-12 21:58:31.823857+00 2025-09-12 21:58:31.823864+00 f t DESCUENTO 0.00 2 7443 \N +291563 2025-09-12 21:58:31.82482+00 2025-09-12 21:58:31.824825+00 f t TOTAL 0.00 3 7443 \N +291564 2025-09-12 21:58:31.825667+00 2025-09-12 21:58:31.825674+00 f t ADELANTO 0.00 4 7443 \N +304629 2025-09-18 12:38:37.715761+00 2025-09-18 12:38:37.71577+00 f t SUBTOTAL 46000.00 1 7736 \N +304630 2025-09-18 12:38:37.717686+00 2025-09-18 12:38:37.717694+00 f t DESCUENTO 0.00 2 7736 \N +304631 2025-09-18 12:38:37.719342+00 2025-09-18 12:38:37.719348+00 f t TOTAL 46000.00 3 7736 \N +304632 2025-09-18 12:38:37.72058+00 2025-09-18 12:38:37.720587+00 f t ADELANTO 11000.00 4 7736 \N +288825 2025-09-11 23:03:20.210665+00 2025-09-11 23:03:20.210674+00 f t SUBTOTAL 78000.00 1 7375 \N +288826 2025-09-11 23:03:20.212506+00 2025-09-11 23:03:20.212514+00 f t DESCUENTO 0.00 2 7375 \N +288827 2025-09-11 23:03:20.213948+00 2025-09-11 23:03:20.213955+00 f t TOTAL 78000.00 3 7375 \N +288828 2025-09-11 23:03:20.215546+00 2025-09-11 23:03:20.215553+00 f t ADELANTO 21500.00 4 7375 \N +298317 2025-09-15 19:08:36.213938+00 2025-09-15 19:08:36.213946+00 f t SUBTOTAL 92000.00 1 7565 \N +298318 2025-09-15 19:08:36.215366+00 2025-09-15 19:08:36.215372+00 f t DESCUENTO 0.00 2 7565 \N +298319 2025-09-15 19:08:36.216313+00 2025-09-15 19:08:36.216319+00 f t TOTAL 92000.00 3 7565 \N +298320 2025-09-15 19:08:36.217154+00 2025-09-15 19:08:36.217159+00 f t ADELANTO 22000.00 4 7565 \N +292489 2025-09-13 12:36:13.551045+00 2025-09-13 12:36:13.551053+00 f t SUBTOTAL 98400.00 1 7473 \N +292490 2025-09-13 12:36:13.552867+00 2025-09-13 12:36:13.552873+00 f t DESCUENTO 0.00 2 7473 \N +292491 2025-09-13 12:36:13.554018+00 2025-09-13 12:36:13.554026+00 f t TOTAL 98400.00 3 7473 \N +292492 2025-09-13 12:36:13.55515+00 2025-09-13 12:36:13.555158+00 f t ADELANTO 57900.00 4 7473 \N +298829 2025-09-15 23:41:08.072359+00 2025-09-15 23:41:08.072371+00 f t SUBTOTAL 0.00 1 7580 \N +298830 2025-09-15 23:41:08.074442+00 2025-09-15 23:41:08.074451+00 f t DESCUENTO 0.00 2 7580 \N +298831 2025-09-15 23:41:08.076089+00 2025-09-15 23:41:08.076094+00 f t TOTAL 0.00 3 7580 \N +298832 2025-09-15 23:41:08.077188+00 2025-09-15 23:41:08.077193+00 f t ADELANTO 0.00 4 7580 \N +288881 2025-09-11 23:18:05.611636+00 2025-09-11 23:18:05.61165+00 f t SUBTOTAL 94000.00 1 7376 \N +288882 2025-09-11 23:18:05.613721+00 2025-09-11 23:18:05.613732+00 f t DESCUENTO 0.00 2 7376 \N +288883 2025-09-11 23:18:05.615365+00 2025-09-11 23:18:05.615375+00 f t TOTAL 94000.00 3 7376 \N +288884 2025-09-11 23:18:05.616878+00 2025-09-11 23:18:05.616888+00 f t ADELANTO 27000.00 4 7376 \N +288917 2025-09-11 23:30:34.549773+00 2025-09-11 23:30:34.549783+00 f t SUBTOTAL 46000.00 1 7377 \N +288918 2025-09-11 23:30:34.55124+00 2025-09-11 23:30:34.551246+00 f t DESCUENTO 0.00 2 7377 \N +288919 2025-09-11 23:30:34.552541+00 2025-09-11 23:30:34.552547+00 f t TOTAL 46000.00 3 7377 \N +288920 2025-09-11 23:30:34.553576+00 2025-09-11 23:30:34.553582+00 f t ADELANTO 11000.00 4 7377 \N +289345 2025-09-12 00:39:07.723726+00 2025-09-12 00:39:07.723737+00 f t SUBTOTAL 70000.00 1 7383 \N +289346 2025-09-12 00:39:07.725603+00 2025-09-12 00:39:07.725613+00 f t DESCUENTO 0.00 2 7383 \N +289347 2025-09-12 00:39:07.726971+00 2025-09-12 00:39:07.72698+00 f t TOTAL 70000.00 3 7383 \N +289348 2025-09-12 00:39:07.728273+00 2025-09-12 00:39:07.728279+00 f t ADELANTO 19000.00 4 7383 \N +316641 2025-09-22 14:52:28.595088+00 2025-09-22 14:52:28.595097+00 f t SUBTOTAL 55000.00 1 8003 \N +316642 2025-09-22 14:52:28.597023+00 2025-09-22 14:52:28.597031+00 f t DESCUENTO 0.00 2 8003 \N +316643 2025-09-22 14:52:28.598489+00 2025-09-22 14:52:28.598497+00 f t TOTAL 55000.00 3 8003 \N +310017 2025-09-20 01:48:43.56648+00 2025-09-20 01:48:43.566488+00 f t SUBTOTAL 55000.00 1 7868 \N +310018 2025-09-20 01:48:43.568098+00 2025-09-20 01:48:43.568104+00 f t DESCUENTO 0.00 2 7868 \N +310019 2025-09-20 01:48:43.569136+00 2025-09-20 01:48:43.569142+00 f t TOTAL 55000.00 3 7868 \N +310020 2025-09-20 01:48:43.570113+00 2025-09-20 01:48:43.570118+00 f t ADELANTO 11000.00 4 7868 \N +290277 2025-09-12 13:04:14.445522+00 2025-09-12 13:04:14.44553+00 f t SUBTOTAL 0.00 1 7407 \N +290278 2025-09-12 13:04:14.446812+00 2025-09-12 13:04:14.446818+00 f t DESCUENTO 0.00 2 7407 \N +290279 2025-09-12 13:04:14.447815+00 2025-09-12 13:04:14.447821+00 f t TOTAL 0.00 3 7407 \N +290280 2025-09-12 13:04:14.448903+00 2025-09-12 13:04:14.448908+00 f t ADELANTO 0.00 4 7407 \N +296857 2025-09-14 23:45:32.129741+00 2025-09-14 23:45:32.129749+00 f t SUBTOTAL 30000.00 1 7540 \N +296858 2025-09-14 23:45:32.131589+00 2025-09-14 23:45:32.131602+00 f t DESCUENTO 0.00 2 7540 \N +296859 2025-09-14 23:45:32.133191+00 2025-09-14 23:45:32.1332+00 f t TOTAL 30000.00 3 7540 \N +296860 2025-09-14 23:45:32.134543+00 2025-09-14 23:45:32.13455+00 f t ADELANTO 30000.00 4 7540 \N +303761 2025-09-18 05:09:16.323122+00 2025-09-18 05:09:16.32315+00 f t SUBTOTAL 99400.00 1 7713 \N +303762 2025-09-18 05:09:16.324895+00 2025-09-18 05:09:16.324901+00 f t DESCUENTO 0.00 2 7713 \N +303763 2025-09-18 05:09:16.326077+00 2025-09-18 05:09:16.326083+00 f t TOTAL 99400.00 3 7713 \N +303764 2025-09-18 05:09:16.327044+00 2025-09-18 05:09:16.327049+00 f t ADELANTO 58900.00 4 7713 \N +311285 2025-09-20 16:34:29.733574+00 2025-09-20 16:34:29.733583+00 f t SUBTOTAL 0.00 1 7894 \N +311286 2025-09-20 16:34:29.736017+00 2025-09-20 16:34:29.736027+00 f t DESCUENTO 0.00 2 7894 \N +311287 2025-09-20 16:34:29.738001+00 2025-09-20 16:34:29.738014+00 f t TOTAL 0.00 3 7894 \N +311288 2025-09-20 16:34:29.739818+00 2025-09-20 16:34:29.739829+00 f t ADELANTO 0.00 4 7894 \N +291073 2025-09-12 18:57:42.001115+00 2025-09-12 18:57:42.001125+00 f t SUBTOTAL 54000.00 1 7435 \N +291074 2025-09-12 18:57:42.003063+00 2025-09-12 18:57:42.00307+00 f t DESCUENTO 0.00 2 7435 \N +291075 2025-09-12 18:57:42.004424+00 2025-09-12 18:57:42.00443+00 f t TOTAL 54000.00 3 7435 \N +291076 2025-09-12 18:57:42.005563+00 2025-09-12 18:57:42.005569+00 f t ADELANTO 13500.00 4 7435 \N +304453 2025-09-18 11:27:47.221222+00 2025-09-18 11:27:47.221232+00 f t SUBTOTAL 99400.00 1 7729 \N +304454 2025-09-18 11:27:47.222974+00 2025-09-18 11:27:47.222981+00 f t DESCUENTO 0.00 2 7729 \N +304455 2025-09-18 11:27:47.224076+00 2025-09-18 11:27:47.224082+00 f t TOTAL 99400.00 3 7729 \N +304456 2025-09-18 11:27:47.225264+00 2025-09-18 11:27:47.22527+00 f t ADELANTO 58900.00 4 7729 \N +304541 2025-09-18 12:11:04.4612+00 2025-09-18 12:11:04.461213+00 f t SUBTOTAL 0.00 1 7732 \N +304542 2025-09-18 12:11:04.463755+00 2025-09-18 12:11:04.463766+00 f t DESCUENTO 0.00 2 7732 \N +304543 2025-09-18 12:11:04.465459+00 2025-09-18 12:11:04.465469+00 f t TOTAL 0.00 3 7732 \N +304544 2025-09-18 12:11:04.466953+00 2025-09-18 12:11:04.466962+00 f t ADELANTO 0.00 4 7732 \N +297953 2025-09-15 16:46:05.235074+00 2025-09-15 16:46:05.235085+00 f t SUBTOTAL 70000.00 1 7559 \N +297954 2025-09-15 16:46:05.236882+00 2025-09-15 16:46:05.236888+00 f t DESCUENTO 0.00 2 7559 \N +297955 2025-09-15 16:46:05.238039+00 2025-09-15 16:46:05.238047+00 f t TOTAL 70000.00 3 7559 \N +297956 2025-09-15 16:46:05.239155+00 2025-09-15 16:46:05.239161+00 f t ADELANTO 19000.00 4 7559 \N +289097 2025-09-11 23:54:04.950873+00 2025-09-11 23:54:04.950882+00 f t SUBTOTAL 307200.00 1 7378 \N +289098 2025-09-11 23:54:04.952401+00 2025-09-11 23:54:04.952407+00 f t DESCUENTO 0.00 2 7378 \N +289099 2025-09-11 23:54:04.95353+00 2025-09-11 23:54:04.953535+00 f t TOTAL 307200.00 3 7378 \N +289100 2025-09-11 23:54:04.954484+00 2025-09-11 23:54:04.954493+00 f t ADELANTO 61700.00 4 7378 \N +305417 2025-09-18 19:08:05.477798+00 2025-09-18 19:08:05.47781+00 f t SUBTOTAL 54000.00 1 7761 \N +305418 2025-09-18 19:08:05.479642+00 2025-09-18 19:08:05.479652+00 f t DESCUENTO 0.00 2 7761 \N +305419 2025-09-18 19:08:05.481179+00 2025-09-18 19:08:05.481187+00 f t TOTAL 54000.00 3 7761 \N +305420 2025-09-18 19:08:05.482356+00 2025-09-18 19:08:05.482361+00 f t ADELANTO 13500.00 4 7761 \N +292497 2025-09-13 12:37:22.994121+00 2025-09-13 12:37:22.994129+00 f t SUBTOTAL 0.00 1 7474 \N +292498 2025-09-13 12:37:22.995417+00 2025-09-13 12:37:22.995423+00 f t DESCUENTO 0.00 2 7474 \N +292499 2025-09-13 12:37:22.996555+00 2025-09-13 12:37:22.996565+00 f t TOTAL 0.00 3 7474 \N +292500 2025-09-13 12:37:22.997505+00 2025-09-13 12:37:22.99751+00 f t ADELANTO 0.00 4 7474 \N +289141 2025-09-12 00:11:54.984596+00 2025-09-12 00:11:54.984605+00 f t SUBTOTAL 0.00 1 7380 \N +289142 2025-09-12 00:11:54.985869+00 2025-09-12 00:11:54.985876+00 f t DESCUENTO 0.00 2 7380 \N +289143 2025-09-12 00:11:54.986988+00 2025-09-12 00:11:54.986994+00 f t TOTAL 0.00 3 7380 \N +289144 2025-09-12 00:11:54.988069+00 2025-09-12 00:11:54.988074+00 f t ADELANTO 0.00 4 7380 \N +298973 2025-09-16 01:14:24.523671+00 2025-09-16 01:14:24.523679+00 f t SUBTOTAL 92000.00 1 7584 \N +298974 2025-09-16 01:14:24.525492+00 2025-09-16 01:14:24.525499+00 f t DESCUENTO 0.00 2 7584 \N +298975 2025-09-16 01:14:24.52686+00 2025-09-16 01:14:24.526866+00 f t TOTAL 92000.00 3 7584 \N +298976 2025-09-16 01:14:24.528362+00 2025-09-16 01:14:24.528367+00 f t ADELANTO 22000.00 4 7584 \N +289177 2025-09-12 00:12:54.567784+00 2025-09-12 00:12:54.567793+00 f t SUBTOTAL 55000.00 1 7379 \N +289178 2025-09-12 00:12:54.569258+00 2025-09-12 00:12:54.569265+00 f t DESCUENTO 0.00 2 7379 \N +289179 2025-09-12 00:12:54.570338+00 2025-09-12 00:12:54.570344+00 f t TOTAL 55000.00 3 7379 \N +289180 2025-09-12 00:12:54.571376+00 2025-09-12 00:12:54.571381+00 f t ADELANTO 11000.00 4 7379 \N +306317 2025-09-18 23:27:58.797147+00 2025-09-18 23:27:58.797156+00 f t SUBTOTAL 68000.00 1 7777 \N +306318 2025-09-18 23:27:58.799044+00 2025-09-18 23:27:58.799051+00 f t DESCUENTO 0.00 2 7777 \N +306319 2025-09-18 23:27:58.800137+00 2025-09-18 23:27:58.800143+00 f t TOTAL 68000.00 3 7777 \N +306320 2025-09-18 23:27:58.80116+00 2025-09-18 23:27:58.801165+00 f t ADELANTO 13000.00 4 7777 \N +307189 2025-09-19 10:48:38.192426+00 2025-09-19 10:48:38.192434+00 f t SUBTOTAL 55000.00 1 7799 \N +307190 2025-09-19 10:48:38.194352+00 2025-09-19 10:48:38.19436+00 f t DESCUENTO 0.00 2 7799 \N +307191 2025-09-19 10:48:38.195814+00 2025-09-19 10:48:38.19582+00 f t TOTAL 55000.00 3 7799 \N +307192 2025-09-19 10:48:38.19702+00 2025-09-19 10:48:38.197027+00 f t ADELANTO 11000.00 4 7799 \N +300353 2025-09-16 15:28:36.750492+00 2025-09-16 15:28:36.750501+00 f t SUBTOTAL 70000.00 1 7620 \N +300354 2025-09-16 15:28:36.752135+00 2025-09-16 15:28:36.752146+00 f t DESCUENTO 0.00 2 7620 \N +300355 2025-09-16 15:28:36.764884+00 2025-09-16 15:28:36.764894+00 f t TOTAL 70000.00 3 7620 \N +300356 2025-09-16 15:28:36.768109+00 2025-09-16 15:28:36.768116+00 f t ADELANTO 19000.00 4 7620 \N +293577 2025-09-13 20:53:43.824167+00 2025-09-13 20:53:43.824175+00 f t SUBTOTAL 90000.00 1 7499 \N +293578 2025-09-13 20:53:43.825727+00 2025-09-13 20:53:43.825734+00 f t DESCUENTO 0.00 2 7499 \N +293579 2025-09-13 20:53:43.82753+00 2025-09-13 20:53:43.827539+00 f t TOTAL 90000.00 3 7499 \N +293580 2025-09-13 20:53:43.828916+00 2025-09-13 20:53:43.828926+00 f t ADELANTO 20000.00 4 7499 \N +295921 2025-09-14 14:23:29.205791+00 2025-09-14 14:23:29.2058+00 f t SUBTOTAL 46000.00 1 7529 \N +295922 2025-09-14 14:23:29.207817+00 2025-09-14 14:23:29.207824+00 f t DESCUENTO 0.00 2 7529 \N +295923 2025-09-14 14:23:29.209295+00 2025-09-14 14:23:29.209302+00 f t TOTAL 46000.00 3 7529 \N +295924 2025-09-14 14:23:29.210691+00 2025-09-14 14:23:29.210697+00 f t ADELANTO 11000.00 4 7529 \N +302661 2025-09-17 19:18:47.153649+00 2025-09-17 19:18:47.15366+00 f t SUBTOTAL 46000.00 1 7685 \N +302662 2025-09-17 19:18:47.155682+00 2025-09-17 19:18:47.155691+00 f t DESCUENTO 0.00 2 7685 \N +302663 2025-09-17 19:18:47.15718+00 2025-09-17 19:18:47.157189+00 f t TOTAL 46000.00 3 7685 \N +302664 2025-09-17 19:18:47.158864+00 2025-09-17 19:18:47.158872+00 f t ADELANTO 11000.00 4 7685 \N +316644 2025-09-22 14:52:28.599745+00 2025-09-22 14:52:28.599751+00 f t ADELANTO 11000.00 4 8003 \N +309781 2025-09-19 23:15:33.594885+00 2025-09-19 23:15:33.594893+00 f t SUBTOTAL 55000.00 1 7859 \N +309782 2025-09-19 23:15:33.597155+00 2025-09-19 23:15:33.597163+00 f t DESCUENTO 0.00 2 7859 \N +309783 2025-09-19 23:15:33.598434+00 2025-09-19 23:15:33.598441+00 f t TOTAL 55000.00 3 7859 \N +309784 2025-09-19 23:15:33.599541+00 2025-09-19 23:15:33.599549+00 f t ADELANTO 11000.00 4 7859 \N +303285 2025-09-17 23:04:49.406375+00 2025-09-17 23:04:49.406386+00 f t SUBTOTAL 87400.00 1 7700 \N +303286 2025-09-17 23:04:49.408328+00 2025-09-17 23:04:49.408335+00 f t DESCUENTO 0.00 2 7700 \N +303287 2025-09-17 23:04:49.409301+00 2025-09-17 23:04:49.409306+00 f t TOTAL 87400.00 3 7700 \N +303288 2025-09-17 23:04:49.410409+00 2025-09-17 23:04:49.410416+00 f t ADELANTO 46900.00 4 7700 \N +303389 2025-09-18 00:53:06.333657+00 2025-09-18 00:53:06.333666+00 f t SUBTOTAL 30000.00 1 7704 \N +303390 2025-09-18 00:53:06.335571+00 2025-09-18 00:53:06.33558+00 f t DESCUENTO 0.00 2 7704 \N +303391 2025-09-18 00:53:06.337023+00 2025-09-18 00:53:06.337036+00 f t TOTAL 30000.00 3 7704 \N +303392 2025-09-18 00:53:06.338223+00 2025-09-18 00:53:06.33823+00 f t ADELANTO 30000.00 4 7704 \N +293629 2025-09-13 21:12:05.104476+00 2025-09-13 21:12:05.104485+00 f t SUBTOTAL 46000.00 1 7500 \N +293630 2025-09-13 21:12:05.106168+00 2025-09-13 21:12:05.106176+00 f t DESCUENTO 0.00 2 7500 \N +293631 2025-09-13 21:12:05.107571+00 2025-09-13 21:12:05.107581+00 f t TOTAL 46000.00 3 7500 \N +293632 2025-09-13 21:12:05.109248+00 2025-09-13 21:12:05.109255+00 f t ADELANTO 11000.00 4 7500 \N +303865 2025-09-18 06:26:55.949888+00 2025-09-18 06:26:55.949896+00 f t SUBTOTAL 55000.00 1 7717 \N +303866 2025-09-18 06:26:55.951733+00 2025-09-18 06:26:55.951742+00 f t DESCUENTO 0.00 2 7717 \N +303867 2025-09-18 06:26:55.952841+00 2025-09-18 06:26:55.952846+00 f t TOTAL 55000.00 3 7717 \N +303868 2025-09-18 06:26:55.953843+00 2025-09-18 06:26:55.953848+00 f t ADELANTO 11000.00 4 7717 \N +293705 2025-09-13 21:25:53.828884+00 2025-09-13 21:25:53.828892+00 f t SUBTOTAL 46000.00 1 7501 \N +293706 2025-09-13 21:25:53.830381+00 2025-09-13 21:25:53.830388+00 f t DESCUENTO 0.00 2 7501 \N +293707 2025-09-13 21:25:53.831458+00 2025-09-13 21:25:53.831464+00 f t TOTAL 46000.00 3 7501 \N +293708 2025-09-13 21:25:53.832531+00 2025-09-13 21:25:53.832537+00 f t ADELANTO 11000.00 4 7501 \N +305093 2025-09-18 18:13:33.956603+00 2025-09-18 18:13:33.956613+00 f t SUBTOTAL 70000.00 1 7754 \N +305094 2025-09-18 18:13:33.958116+00 2025-09-18 18:13:33.958122+00 f t DESCUENTO 0.00 2 7754 \N +305095 2025-09-18 18:13:33.959207+00 2025-09-18 18:13:33.959213+00 f t TOTAL 70000.00 3 7754 \N +305096 2025-09-18 18:13:33.960293+00 2025-09-18 18:13:33.960299+00 f t ADELANTO 19000.00 4 7754 \N +298689 2025-09-15 22:51:46.94177+00 2025-09-15 22:51:46.941778+00 f t SUBTOTAL 70000.00 1 7576 \N +298690 2025-09-15 22:51:46.944035+00 2025-09-15 22:51:46.944046+00 f t DESCUENTO 0.00 2 7576 \N +298691 2025-09-15 22:51:46.945671+00 2025-09-15 22:51:46.94568+00 f t TOTAL 70000.00 3 7576 \N +298692 2025-09-15 22:51:46.947035+00 2025-09-15 22:51:46.947041+00 f t ADELANTO 19000.00 4 7576 \N +305505 2025-09-18 20:25:29.542373+00 2025-09-18 20:25:29.542382+00 f t SUBTOTAL 99400.00 1 7763 \N +305506 2025-09-18 20:25:29.544724+00 2025-09-18 20:25:29.544735+00 f t DESCUENTO 0.00 2 7763 \N +305507 2025-09-18 20:25:29.546404+00 2025-09-18 20:25:29.546414+00 f t TOTAL 99400.00 3 7763 \N +305508 2025-09-18 20:25:29.547796+00 2025-09-18 20:25:29.547804+00 f t ADELANTO 58900.00 4 7763 \N +299365 2025-09-16 06:24:52.353159+00 2025-09-16 06:24:52.353171+00 f t SUBTOTAL 46000.00 1 7601 \N +299366 2025-09-16 06:24:52.355197+00 2025-09-16 06:24:52.355208+00 f t DESCUENTO 0.00 2 7601 \N +299367 2025-09-16 06:24:52.356833+00 2025-09-16 06:24:52.35684+00 f t TOTAL 46000.00 3 7601 \N +299368 2025-09-16 06:24:52.358346+00 2025-09-16 06:24:52.358353+00 f t ADELANTO 11000.00 4 7601 \N +293781 2025-09-13 21:43:50.593977+00 2025-09-13 21:43:50.593987+00 f t SUBTOTAL 0.00 1 7502 \N +293782 2025-09-13 21:43:50.595693+00 2025-09-13 21:43:50.5957+00 f t DESCUENTO 0.00 2 7502 \N +293783 2025-09-13 21:43:50.596779+00 2025-09-13 21:43:50.596785+00 f t TOTAL 0.00 3 7502 \N +293784 2025-09-13 21:43:50.597789+00 2025-09-13 21:43:50.597794+00 f t ADELANTO 0.00 4 7502 \N +299669 2025-09-16 12:16:15.769606+00 2025-09-16 12:16:15.769615+00 f t SUBTOTAL 46000.00 1 7608 \N +299670 2025-09-16 12:16:15.772044+00 2025-09-16 12:16:15.772053+00 f t DESCUENTO 0.00 2 7608 \N +299671 2025-09-16 12:16:15.773903+00 2025-09-16 12:16:15.77391+00 f t TOTAL 46000.00 3 7608 \N +299672 2025-09-16 12:16:15.775472+00 2025-09-16 12:16:15.775478+00 f t ADELANTO 11000.00 4 7608 \N +299733 2025-09-16 13:04:46.148116+00 2025-09-16 13:04:46.148126+00 f t SUBTOTAL 0.00 1 7611 \N +299734 2025-09-16 13:04:46.15139+00 2025-09-16 13:04:46.151402+00 f t DESCUENTO 0.00 2 7611 \N +299735 2025-09-16 13:04:46.1537+00 2025-09-16 13:04:46.153708+00 f t TOTAL 0.00 3 7611 \N +299736 2025-09-16 13:04:46.155381+00 2025-09-16 13:04:46.155388+00 f t ADELANTO 0.00 4 7611 \N +293805 2025-09-13 21:54:49.838783+00 2025-09-13 21:54:49.838795+00 f t SUBTOTAL 0.00 1 7503 \N +293806 2025-09-13 21:54:49.84072+00 2025-09-13 21:54:49.840727+00 f t DESCUENTO 0.00 2 7503 \N +293807 2025-09-13 21:54:49.841889+00 2025-09-13 21:54:49.841898+00 f t TOTAL 0.00 3 7503 \N +293808 2025-09-13 21:54:49.843106+00 2025-09-13 21:54:49.843113+00 f t ADELANTO 0.00 4 7503 \N +306909 2025-09-19 03:14:30.859083+00 2025-09-19 03:14:30.859092+00 f t SUBTOTAL 30000.00 1 7792 \N +306910 2025-09-19 03:14:30.861079+00 2025-09-19 03:14:30.861086+00 f t DESCUENTO 0.00 2 7792 \N +306911 2025-09-19 03:14:30.862486+00 2025-09-19 03:14:30.862495+00 f t TOTAL 30000.00 3 7792 \N +306912 2025-09-19 03:14:30.863641+00 2025-09-19 03:14:30.863647+00 f t ADELANTO 30000.00 4 7792 \N +293849 2025-09-13 22:02:15.534027+00 2025-09-13 22:02:15.534035+00 f t SUBTOTAL 54000.00 1 7504 \N +293850 2025-09-13 22:02:15.535899+00 2025-09-13 22:02:15.535907+00 f t DESCUENTO 0.00 2 7504 \N +293851 2025-09-13 22:02:15.537391+00 2025-09-13 22:02:15.5374+00 f t TOTAL 54000.00 3 7504 \N +293852 2025-09-13 22:02:15.538778+00 2025-09-13 22:02:15.538785+00 f t ADELANTO 13500.00 4 7504 \N +293857 2025-09-13 22:05:14.542627+00 2025-09-13 22:05:14.542638+00 f t SUBTOTAL 0.00 1 7505 \N +293858 2025-09-13 22:05:14.544169+00 2025-09-13 22:05:14.544178+00 f t DESCUENTO 0.00 2 7505 \N +293859 2025-09-13 22:05:14.545641+00 2025-09-13 22:05:14.54565+00 f t TOTAL 0.00 3 7505 \N +293860 2025-09-13 22:05:14.54682+00 2025-09-13 22:05:14.546826+00 f t ADELANTO 0.00 4 7505 \N +323973 2025-09-24 22:20:08.193789+00 2025-09-24 22:20:08.193803+00 f t SUBTOTAL 78000.00 1 8196 \N +323974 2025-09-24 22:20:08.196969+00 2025-09-24 22:20:08.196983+00 f t DESCUENTO 0.00 2 8196 \N +323975 2025-09-24 22:20:08.19965+00 2025-09-24 22:20:08.199662+00 f t TOTAL 78000.00 3 8196 \N +323976 2025-09-24 22:20:08.20324+00 2025-09-24 22:20:08.203263+00 f t ADELANTO 21500.00 4 8196 \N +296609 2025-09-14 23:24:32.324752+00 2025-09-14 23:24:32.32476+00 f t SUBTOTAL 46000.00 1 7539 \N +296610 2025-09-14 23:24:32.326297+00 2025-09-14 23:24:32.326304+00 f t DESCUENTO 0.00 2 7539 \N +296611 2025-09-14 23:24:32.327572+00 2025-09-14 23:24:32.327578+00 f t TOTAL 46000.00 3 7539 \N +296612 2025-09-14 23:24:32.328633+00 2025-09-14 23:24:32.328643+00 f t ADELANTO 11000.00 4 7539 \N +317501 2025-09-22 18:52:41.1119+00 2025-09-22 18:52:41.111913+00 f t SUBTOTAL 55000.00 1 8027 \N +317502 2025-09-22 18:52:41.114022+00 2025-09-22 18:52:41.114033+00 f t DESCUENTO 0.00 2 8027 \N +317503 2025-09-22 18:52:41.115427+00 2025-09-22 18:52:41.115437+00 f t TOTAL 55000.00 3 8027 \N +317504 2025-09-22 18:52:41.116923+00 2025-09-22 18:52:41.116932+00 f t ADELANTO 11000.00 4 8027 \N +317877 2025-09-22 21:45:55.749749+00 2025-09-22 21:45:55.749759+00 f t SUBTOTAL 0.00 1 8039 \N +317878 2025-09-22 21:45:55.751388+00 2025-09-22 21:45:55.751399+00 f t DESCUENTO 0.00 2 8039 \N +317879 2025-09-22 21:45:55.752908+00 2025-09-22 21:45:55.75292+00 f t TOTAL 0.00 3 8039 \N +317880 2025-09-22 21:45:55.754508+00 2025-09-22 21:45:55.754515+00 f t ADELANTO 0.00 4 8039 \N +304125 2025-09-18 09:56:39.764255+00 2025-09-18 09:56:39.764264+00 f t SUBTOTAL 54000.00 1 7722 \N +304126 2025-09-18 09:56:39.765824+00 2025-09-18 09:56:39.765832+00 f t DESCUENTO 0.00 2 7722 \N +304127 2025-09-18 09:56:39.766876+00 2025-09-18 09:56:39.766881+00 f t TOTAL 54000.00 3 7722 \N +304128 2025-09-18 09:56:39.769282+00 2025-09-18 09:56:39.769293+00 f t ADELANTO 13500.00 4 7722 \N +297889 2025-09-15 15:51:53.713928+00 2025-09-15 15:51:53.713938+00 f t SUBTOTAL 102000.00 1 7558 \N +297890 2025-09-15 15:51:53.715632+00 2025-09-15 15:51:53.715641+00 f t DESCUENTO 0.00 2 7558 \N +297891 2025-09-15 15:51:53.716943+00 2025-09-15 15:51:53.71695+00 f t TOTAL 102000.00 3 7558 \N +297892 2025-09-15 15:51:53.718286+00 2025-09-15 15:51:53.718295+00 f t ADELANTO 29500.00 4 7558 \N +304733 2025-09-18 13:51:26.229232+00 2025-09-18 13:51:26.229241+00 f t SUBTOTAL 46000.00 1 7739 \N +304734 2025-09-18 13:51:26.231196+00 2025-09-18 13:51:26.231205+00 f t DESCUENTO 0.00 2 7739 \N +304735 2025-09-18 13:51:26.233104+00 2025-09-18 13:51:26.233112+00 f t TOTAL 46000.00 3 7739 \N +304736 2025-09-18 13:51:26.234457+00 2025-09-18 13:51:26.234464+00 f t ADELANTO 11000.00 4 7739 \N +298485 2025-09-15 21:54:54.737191+00 2025-09-15 21:54:54.737199+00 f t SUBTOTAL 30000.00 1 7572 \N +298486 2025-09-15 21:54:54.738897+00 2025-09-15 21:54:54.738905+00 f t DESCUENTO 0.00 2 7572 \N +298487 2025-09-15 21:54:54.74008+00 2025-09-15 21:54:54.740086+00 f t TOTAL 30000.00 3 7572 \N +298488 2025-09-15 21:54:54.743055+00 2025-09-15 21:54:54.74306+00 f t ADELANTO 30000.00 4 7572 \N +305097 2025-09-18 18:13:36.324521+00 2025-09-18 18:13:36.324533+00 f t SUBTOTAL 70000.00 1 7755 \N +305098 2025-09-18 18:13:36.330505+00 2025-09-18 18:13:36.330514+00 f t DESCUENTO 0.00 2 7755 \N +305099 2025-09-18 18:13:36.332201+00 2025-09-18 18:13:36.332211+00 f t TOTAL 70000.00 3 7755 \N +305100 2025-09-18 18:13:36.333583+00 2025-09-18 18:13:36.333591+00 f t ADELANTO 19000.00 4 7755 \N +319005 2025-09-23 10:18:46.708643+00 2025-09-23 10:18:46.708653+00 f t SUBTOTAL 46000.00 1 8063 \N +319006 2025-09-23 10:18:46.711355+00 2025-09-23 10:18:46.711363+00 f t DESCUENTO 0.00 2 8063 \N +298697 2025-09-15 22:54:49.614976+00 2025-09-15 22:54:49.614984+00 f t SUBTOTAL 0.00 1 7577 \N +298698 2025-09-15 22:54:49.616419+00 2025-09-15 22:54:49.616425+00 f t DESCUENTO 0.00 2 7577 \N +298699 2025-09-15 22:54:49.617526+00 2025-09-15 22:54:49.617531+00 f t TOTAL 0.00 3 7577 \N +298700 2025-09-15 22:54:49.618456+00 2025-09-15 22:54:49.618461+00 f t ADELANTO 0.00 4 7577 \N +319007 2025-09-23 10:18:46.712932+00 2025-09-23 10:18:46.712939+00 f t TOTAL 46000.00 3 8063 \N +319008 2025-09-23 10:18:46.714299+00 2025-09-23 10:18:46.714308+00 f t ADELANTO 11000.00 4 8063 \N +299053 2025-09-16 01:21:40.520394+00 2025-09-16 01:21:40.520405+00 f t SUBTOTAL 46000.00 1 7586 \N +299054 2025-09-16 01:21:40.522407+00 2025-09-16 01:21:40.522416+00 f t DESCUENTO 0.00 2 7586 \N +299055 2025-09-16 01:21:40.523815+00 2025-09-16 01:21:40.523824+00 f t TOTAL 46000.00 3 7586 \N +299056 2025-09-16 01:21:40.524976+00 2025-09-16 01:21:40.524984+00 f t ADELANTO 11000.00 4 7586 \N +319481 2025-09-23 12:13:03.802177+00 2025-09-23 12:13:03.80219+00 f t SUBTOTAL 0.00 1 8073 \N +299373 2025-09-16 10:05:21.276256+00 2025-09-16 10:05:21.276265+00 f t SUBTOTAL 0.00 1 7602 \N +299374 2025-09-16 10:05:21.27745+00 2025-09-16 10:05:21.277456+00 f t DESCUENTO 0.00 2 7602 \N +299375 2025-09-16 10:05:21.278954+00 2025-09-16 10:05:21.278961+00 f t TOTAL 0.00 3 7602 \N +299376 2025-09-16 10:05:21.280125+00 2025-09-16 10:05:21.28013+00 f t ADELANTO 0.00 4 7602 \N +305929 2025-09-18 22:19:31.476963+00 2025-09-18 22:19:31.476972+00 f t SUBTOTAL 132900.00 1 7773 \N +305930 2025-09-18 22:19:31.4787+00 2025-09-18 22:19:31.478707+00 f t DESCUENTO 0.00 2 7773 \N +305931 2025-09-18 22:19:31.479969+00 2025-09-18 22:19:31.479975+00 f t TOTAL 132900.00 3 7773 \N +305932 2025-09-18 22:19:31.480978+00 2025-09-18 22:19:31.480984+00 f t ADELANTO 70900.00 4 7773 \N +312845 2025-09-21 13:00:38.738929+00 2025-09-21 13:00:38.738942+00 f t SUBTOTAL 55000.00 1 7928 \N +312846 2025-09-21 13:00:38.743169+00 2025-09-21 13:00:38.743184+00 f t DESCUENTO 0.00 2 7928 \N +312847 2025-09-21 13:00:38.745692+00 2025-09-21 13:00:38.745705+00 f t TOTAL 55000.00 3 7928 \N +312848 2025-09-21 13:00:38.74904+00 2025-09-21 13:00:38.749053+00 f t ADELANTO 11000.00 4 7928 \N +299741 2025-09-16 13:25:46.485916+00 2025-09-16 13:25:46.485926+00 f t SUBTOTAL 0.00 1 7612 \N +299742 2025-09-16 13:25:46.487519+00 2025-09-16 13:25:46.487526+00 f t DESCUENTO 0.00 2 7612 \N +299743 2025-09-16 13:25:46.488921+00 2025-09-16 13:25:46.488931+00 f t TOTAL 0.00 3 7612 \N +299744 2025-09-16 13:25:46.490643+00 2025-09-16 13:25:46.490654+00 f t ADELANTO 0.00 4 7612 \N +313413 2025-09-21 16:05:22.646788+00 2025-09-21 16:05:22.646797+00 f t SUBTOTAL 0.00 1 7938 \N +313414 2025-09-21 16:05:22.648942+00 2025-09-21 16:05:22.648953+00 f t DESCUENTO 0.00 2 7938 \N +313415 2025-09-21 16:05:22.650402+00 2025-09-21 16:05:22.650411+00 f t TOTAL 0.00 3 7938 \N +313416 2025-09-21 16:05:22.651691+00 2025-09-21 16:05:22.651698+00 f t ADELANTO 0.00 4 7938 \N +300117 2025-09-16 15:10:22.265348+00 2025-09-16 15:10:22.265358+00 f t SUBTOTAL 55000.00 1 7615 \N +300118 2025-09-16 15:10:22.267397+00 2025-09-16 15:10:22.267407+00 f t DESCUENTO 0.00 2 7615 \N +300119 2025-09-16 15:10:22.269019+00 2025-09-16 15:10:22.269029+00 f t TOTAL 55000.00 3 7615 \N +300120 2025-09-16 15:10:22.270397+00 2025-09-16 15:10:22.270403+00 f t ADELANTO 11000.00 4 7615 \N +313473 2025-09-21 16:07:50.99189+00 2025-09-21 16:07:50.991901+00 f t SUBTOTAL 55000.00 1 7940 \N +313474 2025-09-21 16:07:50.993883+00 2025-09-21 16:07:50.993893+00 f t DESCUENTO 0.00 2 7940 \N +313475 2025-09-21 16:07:50.99528+00 2025-09-21 16:07:50.995286+00 f t TOTAL 55000.00 3 7940 \N +313476 2025-09-21 16:07:50.996358+00 2025-09-21 16:07:50.996364+00 f t ADELANTO 11000.00 4 7940 \N +313537 2025-09-21 16:46:36.139622+00 2025-09-21 16:46:36.139631+00 f t SUBTOTAL 46000.00 1 7942 \N +313538 2025-09-21 16:46:36.14165+00 2025-09-21 16:46:36.14166+00 f t DESCUENTO 0.00 2 7942 \N +313539 2025-09-21 16:46:36.143187+00 2025-09-21 16:46:36.143195+00 f t TOTAL 46000.00 3 7942 \N +313540 2025-09-21 16:46:36.144465+00 2025-09-21 16:46:36.144473+00 f t ADELANTO 11000.00 4 7942 \N +309793 2025-09-19 23:25:17.330412+00 2025-09-19 23:25:17.330421+00 f t SUBTOTAL 46000.00 1 7860 \N +309794 2025-09-19 23:25:17.332293+00 2025-09-19 23:25:17.3323+00 f t DESCUENTO 0.00 2 7860 \N +309795 2025-09-19 23:25:17.333618+00 2025-09-19 23:25:17.333625+00 f t TOTAL 46000.00 3 7860 \N +309796 2025-09-19 23:25:17.334787+00 2025-09-19 23:25:17.334792+00 f t ADELANTO 11000.00 4 7860 \N +302901 2025-09-17 20:39:28.339979+00 2025-09-17 20:39:28.339988+00 f t SUBTOTAL 70000.00 1 7692 \N +302902 2025-09-17 20:39:28.341933+00 2025-09-17 20:39:28.341942+00 f t DESCUENTO 0.00 2 7692 \N +302903 2025-09-17 20:39:28.343216+00 2025-09-17 20:39:28.343222+00 f t TOTAL 70000.00 3 7692 \N +302904 2025-09-17 20:39:28.344313+00 2025-09-17 20:39:28.344319+00 f t ADELANTO 19000.00 4 7692 \N +303005 2025-09-17 21:59:04.515105+00 2025-09-17 21:59:04.515112+00 f t SUBTOTAL 54000.00 1 7695 \N +303006 2025-09-17 21:59:04.517621+00 2025-09-17 21:59:04.517628+00 f t DESCUENTO 0.00 2 7695 \N +303007 2025-09-17 21:59:04.519543+00 2025-09-17 21:59:04.519552+00 f t TOTAL 54000.00 3 7695 \N +303008 2025-09-17 21:59:04.520939+00 2025-09-17 21:59:04.520945+00 f t ADELANTO 13500.00 4 7695 \N +294201 2025-09-13 22:19:01.264898+00 2025-09-13 22:19:01.264908+00 f t SUBTOTAL 0.00 1 7506 \N +294202 2025-09-13 22:19:01.267352+00 2025-09-13 22:19:01.267359+00 f t DESCUENTO 0.00 2 7506 \N +294203 2025-09-13 22:19:01.269014+00 2025-09-13 22:19:01.269022+00 f t TOTAL 0.00 3 7506 \N +294204 2025-09-13 22:19:01.270431+00 2025-09-13 22:19:01.270439+00 f t ADELANTO 0.00 4 7506 \N +311033 2025-09-20 15:20:44.767543+00 2025-09-20 15:20:44.767551+00 f t SUBTOTAL 54000.00 1 7889 \N +311034 2025-09-20 15:20:44.76969+00 2025-09-20 15:20:44.769703+00 f t DESCUENTO 0.00 2 7889 \N +311035 2025-09-20 15:20:44.771549+00 2025-09-20 15:20:44.771561+00 f t TOTAL 54000.00 3 7889 \N +311036 2025-09-20 15:20:44.773281+00 2025-09-20 15:20:44.773293+00 f t ADELANTO 13500.00 4 7889 \N +304557 2025-09-18 12:15:19.08329+00 2025-09-18 12:15:19.083299+00 f t SUBTOTAL 0.00 1 7733 \N +304558 2025-09-18 12:15:19.085722+00 2025-09-18 12:15:19.085731+00 f t DESCUENTO 0.00 2 7733 \N +304559 2025-09-18 12:15:19.087361+00 2025-09-18 12:15:19.087368+00 f t TOTAL 0.00 3 7733 \N +304560 2025-09-18 12:15:19.088592+00 2025-09-18 12:15:19.0886+00 f t ADELANTO 0.00 4 7733 \N +304741 2025-09-18 13:51:38.065299+00 2025-09-18 13:51:38.065311+00 f t SUBTOTAL 0.00 1 7741 \N +304742 2025-09-18 13:51:38.066685+00 2025-09-18 13:51:38.066691+00 f t DESCUENTO 0.00 2 7741 \N +304743 2025-09-18 13:51:38.067734+00 2025-09-18 13:51:38.067741+00 f t TOTAL 0.00 3 7741 \N +304744 2025-09-18 13:51:38.068787+00 2025-09-18 13:51:38.068795+00 f t ADELANTO 0.00 4 7741 \N +304825 2025-09-18 15:25:03.840344+00 2025-09-18 15:25:03.840359+00 f t SUBTOTAL 46000.00 1 7743 \N +304826 2025-09-18 15:25:03.844332+00 2025-09-18 15:25:03.844348+00 f t DESCUENTO 0.00 2 7743 \N +304827 2025-09-18 15:25:03.852861+00 2025-09-18 15:25:03.852876+00 f t TOTAL 46000.00 3 7743 \N +304828 2025-09-18 15:25:03.855886+00 2025-09-18 15:25:03.855901+00 f t ADELANTO 11000.00 4 7743 \N +311721 2025-09-20 22:05:30.050184+00 2025-09-20 22:05:30.050192+00 f t SUBTOTAL 55000.00 1 7906 \N +311722 2025-09-20 22:05:30.052256+00 2025-09-20 22:05:30.052263+00 f t DESCUENTO 0.00 2 7906 \N +311723 2025-09-20 22:05:30.05369+00 2025-09-20 22:05:30.053696+00 f t TOTAL 55000.00 3 7906 \N +311724 2025-09-20 22:05:30.055165+00 2025-09-20 22:05:30.055172+00 f t ADELANTO 11000.00 4 7906 \N +294273 2025-09-13 22:19:21.714039+00 2025-09-13 22:19:21.714047+00 f t SUBTOTAL 55000.00 1 7507 \N +294274 2025-09-13 22:19:21.715524+00 2025-09-13 22:19:21.71553+00 f t DESCUENTO 0.00 2 7507 \N +294275 2025-09-13 22:19:21.71672+00 2025-09-13 22:19:21.716725+00 f t TOTAL 55000.00 3 7507 \N +294276 2025-09-13 22:19:21.717697+00 2025-09-13 22:19:21.717702+00 f t ADELANTO 11000.00 4 7507 \N +298333 2025-09-15 19:09:31.561423+00 2025-09-15 19:09:31.561432+00 f t SUBTOTAL 0.00 1 7566 \N +298334 2025-09-15 19:09:31.563459+00 2025-09-15 19:09:31.563465+00 f t DESCUENTO 0.00 2 7566 \N +298335 2025-09-15 19:09:31.564425+00 2025-09-15 19:09:31.564431+00 f t TOTAL 0.00 3 7566 \N +298336 2025-09-15 19:09:31.565469+00 2025-09-15 19:09:31.565476+00 f t ADELANTO 0.00 4 7566 \N +298413 2025-09-15 20:53:40.168024+00 2025-09-15 20:53:40.168036+00 f t SUBTOTAL 70000.00 1 7569 \N +298414 2025-09-15 20:53:40.170063+00 2025-09-15 20:53:40.170074+00 f t DESCUENTO 0.00 2 7569 \N +298415 2025-09-15 20:53:40.171824+00 2025-09-15 20:53:40.171835+00 f t TOTAL 70000.00 3 7569 \N +298416 2025-09-15 20:53:40.173393+00 2025-09-15 20:53:40.173402+00 f t ADELANTO 19000.00 4 7569 \N +305105 2025-09-18 18:25:31.647275+00 2025-09-18 18:25:31.647285+00 f t SUBTOTAL 0.00 1 7756 \N +305106 2025-09-18 18:25:31.648731+00 2025-09-18 18:25:31.648739+00 f t DESCUENTO 0.00 2 7756 \N +305107 2025-09-18 18:25:31.649997+00 2025-09-18 18:25:31.650005+00 f t TOTAL 0.00 3 7756 \N +305108 2025-09-18 18:25:31.651114+00 2025-09-18 18:25:31.651121+00 f t ADELANTO 0.00 4 7756 \N +298705 2025-09-15 22:58:23.246954+00 2025-09-15 22:58:23.246962+00 f t SUBTOTAL 0.00 1 7578 \N +298706 2025-09-15 22:58:23.248719+00 2025-09-15 22:58:23.248726+00 f t DESCUENTO 0.00 2 7578 \N +298707 2025-09-15 22:58:23.249998+00 2025-09-15 22:58:23.250004+00 f t TOTAL 0.00 3 7578 \N +298708 2025-09-15 22:58:23.251013+00 2025-09-15 22:58:23.25102+00 f t ADELANTO 0.00 4 7578 \N +294329 2025-09-13 22:46:17.433156+00 2025-09-13 22:46:17.433164+00 f t SUBTOTAL 55000.00 1 7508 \N +294330 2025-09-13 22:46:17.435009+00 2025-09-13 22:46:17.435016+00 f t DESCUENTO 0.00 2 7508 \N +294331 2025-09-13 22:46:17.436394+00 2025-09-13 22:46:17.436399+00 f t TOTAL 55000.00 3 7508 \N +294332 2025-09-13 22:46:17.437455+00 2025-09-13 22:46:17.437461+00 f t ADELANTO 11000.00 4 7508 \N +299129 2025-09-16 01:44:50.680402+00 2025-09-16 01:44:50.68041+00 f t SUBTOTAL 46000.00 1 7588 \N +299130 2025-09-16 01:44:50.681988+00 2025-09-16 01:44:50.681994+00 f t DESCUENTO 0.00 2 7588 \N +299131 2025-09-16 01:44:50.683056+00 2025-09-16 01:44:50.683061+00 f t TOTAL 46000.00 3 7588 \N +299132 2025-09-16 01:44:50.684048+00 2025-09-16 01:44:50.684053+00 f t ADELANTO 11000.00 4 7588 \N +306697 2025-09-19 02:06:17.004823+00 2025-09-19 02:06:17.004834+00 f t SUBTOTAL 70000.00 1 7788 \N +306698 2025-09-19 02:06:17.006929+00 2025-09-19 02:06:17.006938+00 f t DESCUENTO 0.00 2 7788 \N +306699 2025-09-19 02:06:17.008408+00 2025-09-19 02:06:17.008415+00 f t TOTAL 70000.00 3 7788 \N +306700 2025-09-19 02:06:17.010504+00 2025-09-19 02:06:17.010513+00 f t ADELANTO 19000.00 4 7788 \N +306993 2025-09-19 05:27:24.122566+00 2025-09-19 05:27:24.122574+00 f t SUBTOTAL 46000.00 1 7794 \N +306994 2025-09-19 05:27:24.124506+00 2025-09-19 05:27:24.124515+00 f t DESCUENTO 0.00 2 7794 \N +306995 2025-09-19 05:27:24.125795+00 2025-09-19 05:27:24.125801+00 f t TOTAL 46000.00 3 7794 \N +306996 2025-09-19 05:27:24.126896+00 2025-09-19 05:27:24.126902+00 f t ADELANTO 11000.00 4 7794 \N +307261 2025-09-19 11:56:25.32939+00 2025-09-19 11:56:25.329402+00 f t SUBTOTAL 55000.00 1 7802 \N +307262 2025-09-19 11:56:25.331531+00 2025-09-19 11:56:25.331543+00 f t DESCUENTO 0.00 2 7802 \N +307263 2025-09-19 11:56:25.332998+00 2025-09-19 11:56:25.333007+00 f t TOTAL 55000.00 3 7802 \N +307264 2025-09-19 11:56:25.334393+00 2025-09-19 11:56:25.3344+00 f t ADELANTO 11000.00 4 7802 \N +307389 2025-09-19 14:16:31.500527+00 2025-09-19 14:16:31.500537+00 f t SUBTOTAL 0.00 1 7805 \N +307390 2025-09-19 14:16:31.502591+00 2025-09-19 14:16:31.502601+00 f t DESCUENTO 0.00 2 7805 \N +307391 2025-09-19 14:16:31.503906+00 2025-09-19 14:16:31.503915+00 f t TOTAL 0.00 3 7805 \N +307392 2025-09-19 14:16:31.505011+00 2025-09-19 14:16:31.505016+00 f t ADELANTO 0.00 4 7805 \N +316945 2025-09-22 15:28:42.726191+00 2025-09-22 15:28:42.7262+00 f t SUBTOTAL 65000.00 1 8010 \N +316946 2025-09-22 15:28:42.728499+00 2025-09-22 15:28:42.728507+00 f t DESCUENTO 0.00 2 8010 \N +316947 2025-09-22 15:28:42.730057+00 2025-09-22 15:28:42.730067+00 f t TOTAL 65000.00 3 8010 \N +316948 2025-09-22 15:28:42.731567+00 2025-09-22 15:28:42.731575+00 f t ADELANTO 15000.00 4 8010 \N +309917 2025-09-20 00:02:28.462957+00 2025-09-20 00:02:28.462969+00 f t SUBTOTAL 0.00 1 7864 \N +309918 2025-09-20 00:02:28.464981+00 2025-09-20 00:02:28.464989+00 f t DESCUENTO 0.00 2 7864 \N +309919 2025-09-20 00:02:28.466204+00 2025-09-20 00:02:28.466212+00 f t TOTAL 0.00 3 7864 \N +309920 2025-09-20 00:02:28.467533+00 2025-09-20 00:02:28.467539+00 f t ADELANTO 0.00 4 7864 \N +303205 2025-09-17 22:56:20.385753+00 2025-09-17 22:56:20.385764+00 f t SUBTOTAL 54000.00 1 7699 \N +303206 2025-09-17 22:56:20.387979+00 2025-09-17 22:56:20.387988+00 f t DESCUENTO 0.00 2 7699 \N +303207 2025-09-17 22:56:20.389857+00 2025-09-17 22:56:20.389865+00 f t TOTAL 54000.00 3 7699 \N +303208 2025-09-17 22:56:20.391322+00 2025-09-17 22:56:20.391329+00 f t ADELANTO 13500.00 4 7699 \N +297229 2025-09-15 00:28:09.420604+00 2025-09-15 00:28:09.420613+00 f t SUBTOTAL 99400.00 1 7545 \N +297230 2025-09-15 00:28:09.422657+00 2025-09-15 00:28:09.422665+00 f t DESCUENTO 0.00 2 7545 \N +297231 2025-09-15 00:28:09.424061+00 2025-09-15 00:28:09.424067+00 f t TOTAL 99400.00 3 7545 \N +297232 2025-09-15 00:28:09.425211+00 2025-09-15 00:28:09.425216+00 f t ADELANTO 58900.00 4 7545 \N +297317 2025-09-15 00:47:09.278815+00 2025-09-15 00:47:09.278824+00 f t SUBTOTAL 54000.00 1 7547 \N +297318 2025-09-15 00:47:09.280706+00 2025-09-15 00:47:09.280714+00 f t DESCUENTO 0.00 2 7547 \N +297319 2025-09-15 00:47:09.281936+00 2025-09-15 00:47:09.281943+00 f t TOTAL 54000.00 3 7547 \N +297320 2025-09-15 00:47:09.283399+00 2025-09-15 00:47:09.283407+00 f t ADELANTO 13500.00 4 7547 \N +304305 2025-09-18 10:39:55.70957+00 2025-09-18 10:39:55.709578+00 f t SUBTOTAL 68000.00 1 7726 \N +304306 2025-09-18 10:39:55.711323+00 2025-09-18 10:39:55.711331+00 f t DESCUENTO 0.00 2 7726 \N +304307 2025-09-18 10:39:55.712524+00 2025-09-18 10:39:55.71253+00 f t TOTAL 68000.00 3 7726 \N +304308 2025-09-18 10:39:55.713446+00 2025-09-18 10:39:55.713452+00 f t ADELANTO 13000.00 4 7726 \N +304565 2025-09-18 12:19:51.112462+00 2025-09-18 12:19:51.112472+00 f t SUBTOTAL 0.00 1 7734 \N +304566 2025-09-18 12:19:51.113748+00 2025-09-18 12:19:51.113754+00 f t DESCUENTO 0.00 2 7734 \N +304567 2025-09-18 12:19:51.114753+00 2025-09-18 12:19:51.114759+00 f t TOTAL 0.00 3 7734 \N +304568 2025-09-18 12:19:51.115758+00 2025-09-18 12:19:51.115765+00 f t ADELANTO 0.00 4 7734 \N +311729 2025-09-20 22:16:46.639928+00 2025-09-20 22:16:46.639937+00 f t SUBTOTAL 0.00 1 7907 \N +311730 2025-09-20 22:16:46.641421+00 2025-09-20 22:16:46.641431+00 f t DESCUENTO 0.00 2 7907 \N +311731 2025-09-20 22:16:46.642667+00 2025-09-20 22:16:46.642673+00 f t TOTAL 0.00 3 7907 \N +311732 2025-09-20 22:16:46.64386+00 2025-09-20 22:16:46.643868+00 f t ADELANTO 0.00 4 7907 \N +298561 2025-09-15 22:00:42.39258+00 2025-09-15 22:00:42.392593+00 f t SUBTOTAL 46000.00 1 7573 \N +298562 2025-09-15 22:00:42.394982+00 2025-09-15 22:00:42.394995+00 f t DESCUENTO 0.00 2 7573 \N +298563 2025-09-15 22:00:42.397295+00 2025-09-15 22:00:42.397308+00 f t TOTAL 46000.00 3 7573 \N +298564 2025-09-15 22:00:42.399868+00 2025-09-15 22:00:42.39988+00 f t ADELANTO 11000.00 4 7573 \N +298629 2025-09-15 22:19:12.252509+00 2025-09-15 22:19:12.252522+00 f t SUBTOTAL 55000.00 1 7574 \N +298630 2025-09-15 22:19:12.25457+00 2025-09-15 22:19:12.254577+00 f t DESCUENTO 0.00 2 7574 \N +298631 2025-09-15 22:19:12.255877+00 2025-09-15 22:19:12.255883+00 f t TOTAL 55000.00 3 7574 \N +298632 2025-09-15 22:19:12.256974+00 2025-09-15 22:19:12.256979+00 f t ADELANTO 11000.00 4 7574 \N +298713 2025-09-15 23:26:40.899759+00 2025-09-15 23:26:40.899771+00 f t SUBTOTAL 0.00 1 7579 \N +298714 2025-09-15 23:26:40.90134+00 2025-09-15 23:26:40.901349+00 f t DESCUENTO 0.00 2 7579 \N +298715 2025-09-15 23:26:40.902691+00 2025-09-15 23:26:40.902699+00 f t TOTAL 0.00 3 7579 \N +298716 2025-09-15 23:26:40.903896+00 2025-09-15 23:26:40.903904+00 f t ADELANTO 0.00 4 7579 \N +298849 2025-09-15 23:41:27.130555+00 2025-09-15 23:41:27.130564+00 f t SUBTOTAL 78000.00 1 7581 \N +298850 2025-09-15 23:41:27.133664+00 2025-09-15 23:41:27.133674+00 f t DESCUENTO 0.00 2 7581 \N +298851 2025-09-15 23:41:27.135998+00 2025-09-15 23:41:27.136005+00 f t TOTAL 78000.00 3 7581 \N +298852 2025-09-15 23:41:27.137531+00 2025-09-15 23:41:27.137542+00 f t ADELANTO 21500.00 4 7581 \N +312357 2025-09-21 03:27:09.835516+00 2025-09-21 03:27:09.835529+00 f t SUBTOTAL 0.00 1 7918 \N +312358 2025-09-21 03:27:09.838729+00 2025-09-21 03:27:09.838742+00 f t DESCUENTO 0.00 2 7918 \N +312359 2025-09-21 03:27:09.840695+00 2025-09-21 03:27:09.840706+00 f t TOTAL 0.00 3 7918 \N +312360 2025-09-21 03:27:09.842421+00 2025-09-21 03:27:09.842431+00 f t ADELANTO 0.00 4 7918 \N +299137 2025-09-16 01:53:14.582369+00 2025-09-16 01:53:14.582379+00 f t SUBTOTAL 0.00 1 7589 \N +299138 2025-09-16 01:53:14.584035+00 2025-09-16 01:53:14.584044+00 f t DESCUENTO 0.00 2 7589 \N +299139 2025-09-16 01:53:14.585379+00 2025-09-16 01:53:14.585385+00 f t TOTAL 0.00 3 7589 \N +299140 2025-09-16 01:53:14.586551+00 2025-09-16 01:53:14.586557+00 f t ADELANTO 0.00 4 7589 \N +305777 2025-09-18 21:54:01.017782+00 2025-09-18 21:54:01.017794+00 f t SUBTOTAL 70000.00 1 7771 \N +305778 2025-09-18 21:54:01.020189+00 2025-09-18 21:54:01.020201+00 f t DESCUENTO 0.00 2 7771 \N +305779 2025-09-18 21:54:01.022067+00 2025-09-18 21:54:01.022076+00 f t TOTAL 70000.00 3 7771 \N +305780 2025-09-18 21:54:01.024247+00 2025-09-18 21:54:01.024257+00 f t ADELANTO 19000.00 4 7771 \N +312641 2025-09-21 11:26:34.960457+00 2025-09-21 11:26:34.960468+00 f t SUBTOTAL 54000.00 1 7924 \N +312642 2025-09-21 11:26:34.962355+00 2025-09-21 11:26:34.962363+00 f t DESCUENTO 0.00 2 7924 \N +312643 2025-09-21 11:26:34.963656+00 2025-09-21 11:26:34.963664+00 f t TOTAL 54000.00 3 7924 \N +312644 2025-09-21 11:26:34.964818+00 2025-09-21 11:26:34.964824+00 f t ADELANTO 13500.00 4 7924 \N +306021 2025-09-18 22:45:38.914381+00 2025-09-18 22:45:38.914392+00 f t SUBTOTAL 0.00 1 7775 \N +306022 2025-09-18 22:45:38.916931+00 2025-09-18 22:45:38.91694+00 f t DESCUENTO 0.00 2 7775 \N +306023 2025-09-18 22:45:38.918279+00 2025-09-18 22:45:38.918285+00 f t TOTAL 0.00 3 7775 \N +306024 2025-09-18 22:45:38.919534+00 2025-09-18 22:45:38.919541+00 f t ADELANTO 0.00 4 7775 \N +300241 2025-09-16 15:26:17.918158+00 2025-09-16 15:26:17.918168+00 f t SUBTOTAL 0.00 1 7618 \N +300242 2025-09-16 15:26:17.922188+00 2025-09-16 15:26:17.922199+00 f t DESCUENTO 0.00 2 7618 \N +300243 2025-09-16 15:26:17.923877+00 2025-09-16 15:26:17.923885+00 f t TOTAL 0.00 3 7618 \N +300244 2025-09-16 15:26:17.925285+00 2025-09-16 15:26:17.925293+00 f t ADELANTO 0.00 4 7618 \N +307133 2025-09-19 09:46:34.069283+00 2025-09-19 09:46:34.069295+00 f t SUBTOTAL 55000.00 1 7797 \N +307134 2025-09-19 09:46:34.072556+00 2025-09-19 09:46:34.072567+00 f t DESCUENTO 0.00 2 7797 \N +307135 2025-09-19 09:46:34.074119+00 2025-09-19 09:46:34.074126+00 f t TOTAL 55000.00 3 7797 \N +307136 2025-09-19 09:46:34.075504+00 2025-09-19 09:46:34.07551+00 f t ADELANTO 11000.00 4 7797 \N +300345 2025-09-16 15:28:36.200528+00 2025-09-16 15:28:36.200538+00 f t SUBTOTAL 0.00 1 7619 \N +300346 2025-09-16 15:28:36.203591+00 2025-09-16 15:28:36.203602+00 f t DESCUENTO 0.00 2 7619 \N +300347 2025-09-16 15:28:36.20517+00 2025-09-16 15:28:36.205178+00 f t TOTAL 0.00 3 7619 \N +300348 2025-09-16 15:28:36.206536+00 2025-09-16 15:28:36.206542+00 f t ADELANTO 0.00 4 7619 \N +309673 2025-09-19 22:53:00.269558+00 2025-09-19 22:53:00.269567+00 f t SUBTOTAL 46000.00 1 7857 \N +309674 2025-09-19 22:53:00.271634+00 2025-09-19 22:53:00.271643+00 f t DESCUENTO 0.00 2 7857 \N +309675 2025-09-19 22:53:00.273178+00 2025-09-19 22:53:00.273185+00 f t TOTAL 46000.00 3 7857 \N +309676 2025-09-19 22:53:00.274338+00 2025-09-19 22:53:00.274345+00 f t ADELANTO 11000.00 4 7857 \N +296065 2025-09-14 16:52:26.152031+00 2025-09-14 16:52:26.152044+00 f t SUBTOTAL 95000.00 1 7533 \N +296066 2025-09-14 16:52:26.15428+00 2025-09-14 16:52:26.154291+00 f t DESCUENTO 0.00 2 7533 \N +296067 2025-09-14 16:52:26.155899+00 2025-09-14 16:52:26.155908+00 f t TOTAL 95000.00 3 7533 \N +296068 2025-09-14 16:52:26.15737+00 2025-09-14 16:52:26.157378+00 f t ADELANTO 10000.00 4 7533 \N +294761 2025-09-13 23:29:32.054846+00 2025-09-13 23:29:32.054855+00 f t SUBTOTAL 0.00 1 7509 \N +294762 2025-09-13 23:29:32.056597+00 2025-09-13 23:29:32.056604+00 f t DESCUENTO 0.00 2 7509 \N +294763 2025-09-13 23:29:32.057684+00 2025-09-13 23:29:32.057689+00 f t TOTAL 0.00 3 7509 \N +294764 2025-09-13 23:29:32.058738+00 2025-09-13 23:29:32.058744+00 f t ADELANTO 0.00 4 7509 \N +303505 2025-09-18 01:28:16.608759+00 2025-09-18 01:28:16.608769+00 f t SUBTOTAL 68000.00 1 7707 \N +303506 2025-09-18 01:28:16.610674+00 2025-09-18 01:28:16.610682+00 f t DESCUENTO 0.00 2 7707 \N +303507 2025-09-18 01:28:16.611997+00 2025-09-18 01:28:16.612004+00 f t TOTAL 68000.00 3 7707 \N +303508 2025-09-18 01:28:16.6132+00 2025-09-18 01:28:16.613207+00 f t ADELANTO 13000.00 4 7707 \N +332917 2025-09-27 16:03:50.182281+00 2025-09-27 16:03:50.18229+00 f t SUBTOTAL 78000.00 1 8404 \N +332918 2025-09-27 16:03:50.184197+00 2025-09-27 16:03:50.184205+00 f t DESCUENTO 0.00 2 8404 \N +332919 2025-09-27 16:03:50.185446+00 2025-09-27 16:03:50.185454+00 f t TOTAL 78000.00 3 8404 \N +332920 2025-09-27 16:03:50.186589+00 2025-09-27 16:03:50.186595+00 f t ADELANTO 21500.00 4 8404 \N +303881 2025-09-18 06:29:03.538923+00 2025-09-18 06:29:03.538939+00 f t SUBTOTAL 0.00 1 7718 \N +303882 2025-09-18 06:29:03.541839+00 2025-09-18 06:29:03.541851+00 f t DESCUENTO 0.00 2 7718 \N +303883 2025-09-18 06:29:03.54396+00 2025-09-18 06:29:03.54397+00 f t TOTAL 0.00 3 7718 \N +303884 2025-09-18 06:29:03.545617+00 2025-09-18 06:29:03.545625+00 f t ADELANTO 0.00 4 7718 \N +294817 2025-09-13 23:33:45.895789+00 2025-09-13 23:33:45.895798+00 f t SUBTOTAL 102000.00 1 7510 \N +294818 2025-09-13 23:33:45.89746+00 2025-09-13 23:33:45.897467+00 f t DESCUENTO 0.00 2 7510 \N +294819 2025-09-13 23:33:45.898762+00 2025-09-13 23:33:45.898769+00 f t TOTAL 102000.00 3 7510 \N +294820 2025-09-13 23:33:45.899859+00 2025-09-13 23:33:45.899865+00 f t ADELANTO 29500.00 4 7510 \N +304313 2025-09-18 11:22:35.233181+00 2025-09-18 11:22:35.233191+00 f t SUBTOTAL 0.00 1 7727 \N +304314 2025-09-18 11:22:35.23463+00 2025-09-18 11:22:35.234637+00 f t DESCUENTO 0.00 2 7727 \N +304315 2025-09-18 11:22:35.235811+00 2025-09-18 11:22:35.235818+00 f t TOTAL 0.00 3 7727 \N +304316 2025-09-18 11:22:35.236813+00 2025-09-18 11:22:35.236819+00 f t ADELANTO 0.00 4 7727 \N +294857 2025-09-14 00:11:17.211255+00 2025-09-14 00:11:17.211264+00 f t SUBTOTAL 0.00 1 7511 \N +294858 2025-09-14 00:11:17.213084+00 2025-09-14 00:11:17.213091+00 f t DESCUENTO 0.00 2 7511 \N +294859 2025-09-14 00:11:17.21431+00 2025-09-14 00:11:17.214316+00 f t TOTAL 0.00 3 7511 \N +294860 2025-09-14 00:11:17.215232+00 2025-09-14 00:11:17.215236+00 f t ADELANTO 0.00 4 7511 \N +298857 2025-09-16 00:29:24.515071+00 2025-09-16 00:29:24.515086+00 f t SUBTOTAL 0.00 1 7582 \N +298858 2025-09-16 00:29:24.517414+00 2025-09-16 00:29:24.517426+00 f t DESCUENTO 0.00 2 7582 \N +298859 2025-09-16 00:29:24.519868+00 2025-09-16 00:29:24.519876+00 f t TOTAL 0.00 3 7582 \N +298860 2025-09-16 00:29:24.521527+00 2025-09-16 00:29:24.521534+00 f t ADELANTO 0.00 4 7582 \N +294925 2025-09-14 02:42:24.016551+00 2025-09-14 02:42:24.01656+00 f t SUBTOTAL 0.00 1 7512 \N +294926 2025-09-14 02:42:24.018079+00 2025-09-14 02:42:24.018085+00 f t DESCUENTO 0.00 2 7512 \N +294927 2025-09-14 02:42:24.01901+00 2025-09-14 02:42:24.019015+00 f t TOTAL 0.00 3 7512 \N +294928 2025-09-14 02:42:24.01988+00 2025-09-14 02:42:24.019885+00 f t ADELANTO 0.00 4 7512 \N +299145 2025-09-16 01:55:49.86853+00 2025-09-16 01:55:49.86854+00 f t SUBTOTAL 0.00 1 7590 \N +299146 2025-09-16 01:55:49.870242+00 2025-09-16 01:55:49.870248+00 f t DESCUENTO 0.00 2 7590 \N +299147 2025-09-16 01:55:49.8715+00 2025-09-16 01:55:49.871505+00 f t TOTAL 0.00 3 7590 \N +299148 2025-09-16 01:55:49.87271+00 2025-09-16 01:55:49.872718+00 f t ADELANTO 0.00 4 7590 \N +299289 2025-09-16 02:32:11.221831+00 2025-09-16 02:32:11.221842+00 f t SUBTOTAL 70000.00 1 7594 \N +299290 2025-09-16 02:32:11.223703+00 2025-09-16 02:32:11.223712+00 f t DESCUENTO 0.00 2 7594 \N +299291 2025-09-16 02:32:11.225141+00 2025-09-16 02:32:11.22515+00 f t TOTAL 70000.00 3 7594 \N +299292 2025-09-16 02:32:11.226792+00 2025-09-16 02:32:11.2268+00 f t ADELANTO 19000.00 4 7594 \N +299629 2025-09-16 11:42:19.48478+00 2025-09-16 11:42:19.484791+00 f t SUBTOTAL 55000.00 1 7607 \N +299630 2025-09-16 11:42:19.494807+00 2025-09-16 11:42:19.494818+00 f t DESCUENTO 0.00 2 7607 \N +299631 2025-09-16 11:42:19.496725+00 2025-09-16 11:42:19.496732+00 f t TOTAL 55000.00 3 7607 \N +299632 2025-09-16 11:42:19.498138+00 2025-09-16 11:42:19.498144+00 f t ADELANTO 11000.00 4 7607 \N +294981 2025-09-14 03:59:57.043349+00 2025-09-14 03:59:57.043358+00 f t SUBTOTAL 0.00 1 7513 \N +294982 2025-09-14 03:59:57.045331+00 2025-09-14 03:59:57.045338+00 f t DESCUENTO 0.00 2 7513 \N +294983 2025-09-14 03:59:57.046458+00 2025-09-14 03:59:57.046464+00 f t TOTAL 0.00 3 7513 \N +294984 2025-09-14 03:59:57.04755+00 2025-09-14 03:59:57.047556+00 f t ADELANTO 0.00 4 7513 \N +306633 2025-09-19 01:34:08.931561+00 2025-09-19 01:34:08.93157+00 f t SUBTOTAL 55000.00 1 7787 \N +306634 2025-09-19 01:34:08.933148+00 2025-09-19 01:34:08.933155+00 f t DESCUENTO 0.00 2 7787 \N +306635 2025-09-19 01:34:08.934375+00 2025-09-19 01:34:08.934381+00 f t TOTAL 55000.00 3 7787 \N +306636 2025-09-19 01:34:08.935471+00 2025-09-19 01:34:08.935476+00 f t ADELANTO 11000.00 4 7787 \N +306777 2025-09-19 02:16:45.994063+00 2025-09-19 02:16:45.994072+00 f t SUBTOTAL 87400.00 1 7789 \N +306778 2025-09-19 02:16:45.997756+00 2025-09-19 02:16:45.997765+00 f t DESCUENTO 0.00 2 7789 \N +306779 2025-09-19 02:16:45.999109+00 2025-09-19 02:16:45.999116+00 f t TOTAL 87400.00 3 7789 \N +306780 2025-09-19 02:16:46.000218+00 2025-09-19 02:16:46.000224+00 f t ADELANTO 46900.00 4 7789 \N +307069 2025-09-19 07:11:18.996699+00 2025-09-19 07:11:18.996708+00 f t SUBTOTAL 55000.00 1 7796 \N +307070 2025-09-19 07:11:18.99851+00 2025-09-19 07:11:18.998518+00 f t DESCUENTO 0.00 2 7796 \N +307071 2025-09-19 07:11:19.000826+00 2025-09-19 07:11:19.000835+00 f t TOTAL 55000.00 3 7796 \N +307072 2025-09-19 07:11:19.002211+00 2025-09-19 07:11:19.002219+00 f t ADELANTO 11000.00 4 7796 \N +307141 2025-09-19 09:58:57.304536+00 2025-09-19 09:58:57.304545+00 f t SUBTOTAL 0.00 1 7798 \N +307142 2025-09-19 09:58:57.307375+00 2025-09-19 09:58:57.307382+00 f t DESCUENTO 0.00 2 7798 \N +307143 2025-09-19 09:58:57.308937+00 2025-09-19 09:58:57.308945+00 f t TOTAL 0.00 3 7798 \N +307144 2025-09-19 09:58:57.310251+00 2025-09-19 09:58:57.310258+00 f t ADELANTO 0.00 4 7798 \N +295025 2025-09-14 04:01:52.036081+00 2025-09-14 04:01:52.036093+00 f t SUBTOTAL 0.00 1 7514 \N +295026 2025-09-14 04:01:52.037934+00 2025-09-14 04:01:52.037942+00 f t DESCUENTO 0.00 2 7514 \N +295027 2025-09-14 04:01:52.03926+00 2025-09-14 04:01:52.039267+00 f t TOTAL 0.00 3 7514 \N +295028 2025-09-14 04:01:52.040284+00 2025-09-14 04:01:52.04029+00 f t ADELANTO 0.00 4 7514 \N +370973 2025-10-10 20:04:57.922318+00 2025-10-10 20:04:57.922327+00 f t SUBTOTAL 0.00 1 9342 \N +370974 2025-10-10 20:04:57.92443+00 2025-10-10 20:04:57.924441+00 f t DESCUENTO 0.00 2 9342 \N +370975 2025-10-10 20:04:57.925957+00 2025-10-10 20:04:57.925968+00 f t TOTAL 0.00 3 9342 \N +370976 2025-10-10 20:04:57.927278+00 2025-10-10 20:04:57.927289+00 f t ADELANTO 0.00 4 9342 \N +303021 2025-09-17 22:41:21.71167+00 2025-09-17 22:41:21.711693+00 f t SUBTOTAL 0.00 1 7696 \N +303022 2025-09-17 22:41:21.715597+00 2025-09-17 22:41:21.71561+00 f t DESCUENTO 0.00 2 7696 \N +303023 2025-09-17 22:41:21.717747+00 2025-09-17 22:41:21.717754+00 f t TOTAL 0.00 3 7696 \N +303024 2025-09-17 22:41:21.719596+00 2025-09-17 22:41:21.719605+00 f t ADELANTO 0.00 4 7696 \N +309925 2025-09-20 00:16:40.784717+00 2025-09-20 00:16:40.78473+00 f t SUBTOTAL 0.00 1 7865 \N +309926 2025-09-20 00:16:40.786785+00 2025-09-20 00:16:40.786796+00 f t DESCUENTO 0.00 2 7865 \N +309927 2025-09-20 00:16:40.788711+00 2025-09-20 00:16:40.788721+00 f t TOTAL 0.00 3 7865 \N +309928 2025-09-20 00:16:40.79075+00 2025-09-20 00:16:40.790761+00 f t ADELANTO 0.00 4 7865 \N +339229 2025-09-29 23:19:07.752477+00 2025-09-29 23:19:07.752487+00 f t SUBTOTAL 0.00 1 8558 \N +310145 2025-09-20 04:27:46.983384+00 2025-09-20 04:27:46.983393+00 f t SUBTOTAL 55000.00 1 7872 \N +310146 2025-09-20 04:27:46.985544+00 2025-09-20 04:27:46.985551+00 f t DESCUENTO 0.00 2 7872 \N +310147 2025-09-20 04:27:46.986774+00 2025-09-20 04:27:46.986791+00 f t TOTAL 55000.00 3 7872 \N +310148 2025-09-20 04:27:46.988328+00 2025-09-20 04:27:46.988335+00 f t ADELANTO 11000.00 4 7872 \N +295061 2025-09-14 04:17:21.407056+00 2025-09-14 04:17:21.407065+00 f t SUBTOTAL 55000.00 1 7515 \N +295062 2025-09-14 04:17:21.408738+00 2025-09-14 04:17:21.408745+00 f t DESCUENTO 0.00 2 7515 \N +295063 2025-09-14 04:17:21.410128+00 2025-09-14 04:17:21.410136+00 f t TOTAL 55000.00 3 7515 \N +295064 2025-09-14 04:17:21.411608+00 2025-09-14 04:17:21.411615+00 f t ADELANTO 11000.00 4 7515 \N +303789 2025-09-18 05:39:33.041362+00 2025-09-18 05:39:33.041372+00 f t SUBTOTAL 99400.00 1 7714 \N +303790 2025-09-18 05:39:33.043244+00 2025-09-18 05:39:33.043254+00 f t DESCUENTO 0.00 2 7714 \N +303791 2025-09-18 05:39:33.044761+00 2025-09-18 05:39:33.044768+00 f t TOTAL 99400.00 3 7714 \N +303792 2025-09-18 05:39:33.045891+00 2025-09-18 05:39:33.045896+00 f t ADELANTO 58900.00 4 7714 \N +303889 2025-09-18 06:32:44.419576+00 2025-09-18 06:32:44.419585+00 f t SUBTOTAL 0.00 1 7719 \N +303890 2025-09-18 06:32:44.421013+00 2025-09-18 06:32:44.421021+00 f t DESCUENTO 0.00 2 7719 \N +303891 2025-09-18 06:32:44.422501+00 2025-09-18 06:32:44.42251+00 f t TOTAL 0.00 3 7719 \N +303892 2025-09-18 06:32:44.423597+00 2025-09-18 06:32:44.423602+00 f t ADELANTO 0.00 4 7719 \N +295097 2025-09-14 05:09:47.841368+00 2025-09-14 05:09:47.84138+00 f t SUBTOTAL 46000.00 1 7516 \N +295098 2025-09-14 05:09:47.843291+00 2025-09-14 05:09:47.843301+00 f t DESCUENTO 0.00 2 7516 \N +295099 2025-09-14 05:09:47.844689+00 2025-09-14 05:09:47.844698+00 f t TOTAL 46000.00 3 7516 \N +295100 2025-09-14 05:09:47.846028+00 2025-09-14 05:09:47.846036+00 f t ADELANTO 11000.00 4 7516 \N +295133 2025-09-14 05:55:19.06762+00 2025-09-14 05:55:19.067629+00 f t SUBTOTAL 88000.00 1 7517 \N +295134 2025-09-14 05:55:19.069903+00 2025-09-14 05:55:19.069912+00 f t DESCUENTO 0.00 2 7517 \N +295135 2025-09-14 05:55:19.071709+00 2025-09-14 05:55:19.071718+00 f t TOTAL 88000.00 3 7517 \N +295136 2025-09-14 05:55:19.073519+00 2025-09-14 05:55:19.073528+00 f t ADELANTO 19500.00 4 7517 \N +298053 2025-09-15 17:54:51.669241+00 2025-09-15 17:54:51.66925+00 f t SUBTOTAL 0.00 1 7561 \N +298054 2025-09-15 17:54:51.672718+00 2025-09-15 17:54:51.67273+00 f t DESCUENTO 0.00 2 7561 \N +298055 2025-09-15 17:54:51.674187+00 2025-09-15 17:54:51.674195+00 f t TOTAL 0.00 3 7561 \N +298056 2025-09-15 17:54:51.6769+00 2025-09-15 17:54:51.676909+00 f t ADELANTO 0.00 4 7561 \N +304937 2025-09-18 17:08:14.512906+00 2025-09-18 17:08:14.512918+00 f t SUBTOTAL 55000.00 1 7749 \N +304938 2025-09-18 17:08:14.514766+00 2025-09-18 17:08:14.514774+00 f t DESCUENTO 0.00 2 7749 \N +304939 2025-09-18 17:08:14.516076+00 2025-09-18 17:08:14.516085+00 f t TOTAL 55000.00 3 7749 \N +304940 2025-09-18 17:08:14.517195+00 2025-09-18 17:08:14.5172+00 f t ADELANTO 11000.00 4 7749 \N +295165 2025-09-14 06:41:54.637723+00 2025-09-14 06:41:54.637731+00 f t SUBTOTAL 55000.00 1 7518 \N +295166 2025-09-14 06:41:54.639777+00 2025-09-14 06:41:54.639784+00 f t DESCUENTO 0.00 2 7518 \N +295167 2025-09-14 06:41:54.6411+00 2025-09-14 06:41:54.641109+00 f t TOTAL 55000.00 3 7518 \N +295168 2025-09-14 06:41:54.642251+00 2025-09-14 06:41:54.642257+00 f t ADELANTO 11000.00 4 7518 \N +312201 2025-09-21 01:13:08.591458+00 2025-09-21 01:13:08.591466+00 f t SUBTOTAL 55000.00 1 7914 \N +312202 2025-09-21 01:13:08.593673+00 2025-09-21 01:13:08.593682+00 f t DESCUENTO 0.00 2 7914 \N +312203 2025-09-21 01:13:08.595077+00 2025-09-21 01:13:08.595084+00 f t TOTAL 55000.00 3 7914 \N +312204 2025-09-21 01:13:08.596263+00 2025-09-21 01:13:08.59627+00 f t ADELANTO 11000.00 4 7914 \N +312365 2025-09-21 05:41:52.313173+00 2025-09-21 05:41:52.313182+00 f t SUBTOTAL 0.00 1 7919 \N +312366 2025-09-21 05:41:52.314589+00 2025-09-21 05:41:52.314599+00 f t DESCUENTO 0.00 2 7919 \N +312367 2025-09-21 05:41:52.316238+00 2025-09-21 05:41:52.316247+00 f t TOTAL 0.00 3 7919 \N +312368 2025-09-21 05:41:52.317499+00 2025-09-21 05:41:52.317507+00 f t ADELANTO 0.00 4 7919 \N +295213 2025-09-14 09:10:59.4511+00 2025-09-14 09:10:59.451112+00 f t SUBTOTAL 78000.00 1 7519 \N +295214 2025-09-14 09:10:59.452842+00 2025-09-14 09:10:59.45285+00 f t DESCUENTO 0.00 2 7519 \N +295215 2025-09-14 09:10:59.454198+00 2025-09-14 09:10:59.454206+00 f t TOTAL 78000.00 3 7519 \N +295216 2025-09-14 09:10:59.455592+00 2025-09-14 09:10:59.455599+00 f t ADELANTO 13000.00 4 7519 \N +306105 2025-09-18 22:50:03.333603+00 2025-09-18 22:50:03.333619+00 f t SUBTOTAL 0.00 1 7776 \N +306106 2025-09-18 22:50:03.369247+00 2025-09-18 22:50:03.369263+00 f t DESCUENTO 0.00 2 7776 \N +306107 2025-09-18 22:50:03.382676+00 2025-09-18 22:50:03.382691+00 f t TOTAL 0.00 3 7776 \N +306108 2025-09-18 22:50:03.387657+00 2025-09-18 22:50:03.38767+00 f t ADELANTO 0.00 4 7776 \N +299297 2025-09-16 03:43:35.409199+00 2025-09-16 03:43:35.409207+00 f t SUBTOTAL 0.00 1 7595 \N +299298 2025-09-16 03:43:35.410534+00 2025-09-16 03:43:35.41054+00 f t DESCUENTO 0.00 2 7595 \N +299299 2025-09-16 03:43:35.41157+00 2025-09-16 03:43:35.411575+00 f t TOTAL 0.00 3 7595 \N +299300 2025-09-16 03:43:35.412702+00 2025-09-16 03:43:35.412709+00 f t ADELANTO 0.00 4 7595 \N +299693 2025-09-16 12:44:35.008725+00 2025-09-16 12:44:35.008738+00 f t SUBTOTAL 0.00 1 7609 \N +299694 2025-09-16 12:44:35.011161+00 2025-09-16 12:44:35.011169+00 f t DESCUENTO 0.00 2 7609 \N +299695 2025-09-16 12:44:35.012661+00 2025-09-16 12:44:35.012668+00 f t TOTAL 0.00 3 7609 \N +299696 2025-09-16 12:44:35.013995+00 2025-09-16 12:44:35.014001+00 f t ADELANTO 0.00 4 7609 \N +299965 2025-09-16 15:06:17.961799+00 2025-09-16 15:06:17.961809+00 f t SUBTOTAL 0.00 1 7616 \N +299966 2025-09-16 15:06:17.964258+00 2025-09-16 15:06:17.964267+00 f t DESCUENTO 0.00 2 7616 \N +299967 2025-09-16 15:06:17.965813+00 2025-09-16 15:06:17.965822+00 f t TOTAL 0.00 3 7616 \N +299968 2025-09-16 15:06:17.969344+00 2025-09-16 15:06:17.969357+00 f t ADELANTO 0.00 4 7616 \N +313545 2025-09-21 18:19:57.914798+00 2025-09-21 18:19:57.914807+00 f t SUBTOTAL 0.00 1 7943 \N +313546 2025-09-21 18:19:57.916885+00 2025-09-21 18:19:57.916897+00 f t DESCUENTO 0.00 2 7943 \N +313547 2025-09-21 18:19:57.918542+00 2025-09-21 18:19:57.918552+00 f t TOTAL 0.00 3 7943 \N +313548 2025-09-21 18:19:57.920187+00 2025-09-21 18:19:57.920196+00 f t ADELANTO 0.00 4 7943 \N +295949 2025-09-14 14:27:28.33483+00 2025-09-14 14:27:28.334839+00 f t SUBTOTAL 46000.00 1 7530 \N +295950 2025-09-14 14:27:28.336927+00 2025-09-14 14:27:28.336935+00 f t DESCUENTO 0.00 2 7530 \N +295951 2025-09-14 14:27:28.338323+00 2025-09-14 14:27:28.33833+00 f t TOTAL 46000.00 3 7530 \N +295952 2025-09-14 14:27:28.339441+00 2025-09-14 14:27:28.339448+00 f t ADELANTO 11000.00 4 7530 \N +302689 2025-09-17 19:34:40.668455+00 2025-09-17 19:34:40.668466+00 f t SUBTOTAL 55000.00 1 7686 \N +302690 2025-09-17 19:34:40.670608+00 2025-09-17 19:34:40.670616+00 f t DESCUENTO 0.00 2 7686 \N +302691 2025-09-17 19:34:40.672289+00 2025-09-17 19:34:40.672299+00 f t TOTAL 55000.00 3 7686 \N +302692 2025-09-17 19:34:40.673923+00 2025-09-17 19:34:40.673934+00 f t ADELANTO 11000.00 4 7686 \N +324413 2025-09-24 23:53:50.689201+00 2025-09-24 23:53:50.689213+00 f t SUBTOTAL 46000.00 1 8205 \N +324414 2025-09-24 23:53:50.691354+00 2025-09-24 23:53:50.691366+00 f t DESCUENTO 0.00 2 8205 \N +324415 2025-09-24 23:53:50.692586+00 2025-09-24 23:53:50.692595+00 f t TOTAL 46000.00 3 8205 \N +324416 2025-09-24 23:53:50.69374+00 2025-09-24 23:53:50.693748+00 f t ADELANTO 11000.00 4 8205 \N +303797 2025-09-18 06:22:02.369023+00 2025-09-18 06:22:02.369039+00 f t SUBTOTAL 0.00 1 7715 \N +303798 2025-09-18 06:22:02.370498+00 2025-09-18 06:22:02.370506+00 f t DESCUENTO 0.00 2 7715 \N +303799 2025-09-18 06:22:02.371697+00 2025-09-18 06:22:02.371703+00 f t TOTAL 0.00 3 7715 \N +303800 2025-09-18 06:22:02.3728+00 2025-09-18 06:22:02.372806+00 f t ADELANTO 0.00 4 7715 \N +297749 2025-09-15 14:05:28.510384+00 2025-09-15 14:05:28.510393+00 f t SUBTOTAL 156000.00 1 7555 \N +297750 2025-09-15 14:05:28.512158+00 2025-09-15 14:05:28.512165+00 f t DESCUENTO 0.00 2 7555 \N +297751 2025-09-15 14:05:28.513268+00 2025-09-15 14:05:28.513275+00 f t TOTAL 156000.00 3 7555 \N +297752 2025-09-15 14:05:28.514275+00 2025-09-15 14:05:28.514281+00 f t ADELANTO 43000.00 4 7555 \N +304845 2025-09-18 16:02:02.746633+00 2025-09-18 16:02:02.746645+00 f t SUBTOTAL 0.00 1 7744 \N +304846 2025-09-18 16:02:02.749025+00 2025-09-18 16:02:02.749036+00 f t DESCUENTO 0.00 2 7744 \N +304847 2025-09-18 16:02:02.750573+00 2025-09-18 16:02:02.75058+00 f t TOTAL 0.00 3 7744 \N +304848 2025-09-18 16:02:02.752021+00 2025-09-18 16:02:02.752031+00 f t ADELANTO 0.00 4 7744 \N +304945 2025-09-18 17:13:39.875782+00 2025-09-18 17:13:39.875793+00 f t SUBTOTAL 0.00 1 7750 \N +304946 2025-09-18 17:13:39.877349+00 2025-09-18 17:13:39.877356+00 f t DESCUENTO 0.00 2 7750 \N +304947 2025-09-18 17:13:39.87841+00 2025-09-18 17:13:39.878416+00 f t TOTAL 0.00 3 7750 \N +304948 2025-09-18 17:13:39.879361+00 2025-09-18 17:13:39.879368+00 f t ADELANTO 0.00 4 7750 \N +305285 2025-09-18 18:32:48.275337+00 2025-09-18 18:32:48.275346+00 f t SUBTOTAL 55000.00 1 7759 \N +305286 2025-09-18 18:32:48.277183+00 2025-09-18 18:32:48.27719+00 f t DESCUENTO 0.00 2 7759 \N +305287 2025-09-18 18:32:48.278392+00 2025-09-18 18:32:48.278398+00 f t TOTAL 55000.00 3 7759 \N +305288 2025-09-18 18:32:48.279371+00 2025-09-18 18:32:48.279376+00 f t ADELANTO 11000.00 4 7759 \N +295465 2025-09-14 10:51:55.706472+00 2025-09-14 10:51:55.70648+00 f t SUBTOTAL 55000.00 1 7520 \N +295466 2025-09-14 10:51:55.708267+00 2025-09-14 10:51:55.708274+00 f t DESCUENTO 0.00 2 7520 \N +295467 2025-09-14 10:51:55.709392+00 2025-09-14 10:51:55.709397+00 f t TOTAL 55000.00 3 7520 \N +295468 2025-09-14 10:51:55.71042+00 2025-09-14 10:51:55.710426+00 f t ADELANTO 11000.00 4 7520 \N +305533 2025-09-18 20:43:34.861106+00 2025-09-18 20:43:34.86112+00 f t SUBTOTAL 100900.00 1 7764 \N +305534 2025-09-18 20:43:34.863171+00 2025-09-18 20:43:34.86318+00 f t DESCUENTO 0.00 2 7764 \N +305535 2025-09-18 20:43:34.864544+00 2025-09-18 20:43:34.86455+00 f t TOTAL 100900.00 3 7764 \N +305536 2025-09-18 20:43:34.865709+00 2025-09-18 20:43:34.865715+00 f t ADELANTO 60400.00 4 7764 \N +305705 2025-09-18 21:42:05.064505+00 2025-09-18 21:42:05.064514+00 f t SUBTOTAL 78000.00 1 7769 \N +305706 2025-09-18 21:42:05.066375+00 2025-09-18 21:42:05.066382+00 f t DESCUENTO 0.00 2 7769 \N +305707 2025-09-18 21:42:05.068063+00 2025-09-18 21:42:05.06807+00 f t TOTAL 78000.00 3 7769 \N +305708 2025-09-18 21:42:05.069194+00 2025-09-18 21:42:05.069199+00 f t ADELANTO 21500.00 4 7769 \N +299305 2025-09-16 05:55:25.994942+00 2025-09-16 05:55:25.994956+00 f t SUBTOTAL 0.00 1 7596 \N +299306 2025-09-16 05:55:25.996324+00 2025-09-16 05:55:25.996331+00 f t DESCUENTO 0.00 2 7596 \N +299307 2025-09-16 05:55:25.997502+00 2025-09-16 05:55:25.997508+00 f t TOTAL 0.00 3 7596 \N +299308 2025-09-16 05:55:25.99862+00 2025-09-16 05:55:25.998625+00 f t ADELANTO 0.00 4 7596 \N +299465 2025-09-16 10:57:14.037134+00 2025-09-16 10:57:14.037145+00 f t SUBTOTAL 55000.00 1 7605 \N +299466 2025-09-16 10:57:14.038984+00 2025-09-16 10:57:14.038992+00 f t DESCUENTO 0.00 2 7605 \N +299467 2025-09-16 10:57:14.040481+00 2025-09-16 10:57:14.040487+00 f t TOTAL 55000.00 3 7605 \N +299468 2025-09-16 10:57:14.041724+00 2025-09-16 10:57:14.04173+00 f t ADELANTO 11000.00 4 7605 \N +299701 2025-09-16 12:49:17.305677+00 2025-09-16 12:49:17.305686+00 f t SUBTOTAL 0.00 1 7610 \N +299702 2025-09-16 12:49:17.307155+00 2025-09-16 12:49:17.307162+00 f t DESCUENTO 0.00 2 7610 \N +299703 2025-09-16 12:49:17.30861+00 2025-09-16 12:49:17.308616+00 f t TOTAL 0.00 3 7610 \N +299704 2025-09-16 12:49:17.309618+00 2025-09-16 12:49:17.309623+00 f t ADELANTO 0.00 4 7610 \N +306425 2025-09-19 01:15:43.196652+00 2025-09-19 01:15:43.196664+00 f t SUBTOTAL 87400.00 1 7784 \N +306426 2025-09-19 01:15:43.198881+00 2025-09-19 01:15:43.198891+00 f t DESCUENTO 0.00 2 7784 \N +306427 2025-09-19 01:15:43.200403+00 2025-09-19 01:15:43.200412+00 f t TOTAL 87400.00 3 7784 \N +306428 2025-09-19 01:15:43.20155+00 2025-09-19 01:15:43.201558+00 f t ADELANTO 46900.00 4 7784 \N +306569 2025-09-19 01:31:20.809844+00 2025-09-19 01:31:20.809853+00 f t SUBTOTAL 0.00 1 7786 \N +306570 2025-09-19 01:31:20.81163+00 2025-09-19 01:31:20.811637+00 f t DESCUENTO 0.00 2 7786 \N +306571 2025-09-19 01:31:20.812819+00 2025-09-19 01:31:20.812825+00 f t TOTAL 0.00 3 7786 \N +306572 2025-09-19 01:31:20.813879+00 2025-09-19 01:31:20.813885+00 f t ADELANTO 0.00 4 7786 \N +306861 2025-09-19 03:09:36.545799+00 2025-09-19 03:09:36.54581+00 f t SUBTOTAL 55000.00 1 7791 \N +295561 2025-09-14 11:21:08.071623+00 2025-09-14 11:21:08.071631+00 f t SUBTOTAL 68000.00 1 7521 \N +295562 2025-09-14 11:21:08.073302+00 2025-09-14 11:21:08.07331+00 f t DESCUENTO 0.00 2 7521 \N +295563 2025-09-14 11:21:08.074529+00 2025-09-14 11:21:08.074535+00 f t TOTAL 68000.00 3 7521 \N +295564 2025-09-14 11:21:08.075709+00 2025-09-14 11:21:08.075714+00 f t ADELANTO 13000.00 4 7521 \N +306862 2025-09-19 03:09:36.547882+00 2025-09-19 03:09:36.54789+00 f t DESCUENTO 0.00 2 7791 \N +306863 2025-09-19 03:09:36.549222+00 2025-09-19 03:09:36.54923+00 f t TOTAL 55000.00 3 7791 \N +306864 2025-09-19 03:09:36.55071+00 2025-09-19 03:09:36.550717+00 f t ADELANTO 11000.00 4 7791 \N +306937 2025-09-19 04:10:54.502316+00 2025-09-19 04:10:54.502325+00 f t SUBTOTAL 54000.00 1 7793 \N +300181 2025-09-16 15:23:59.026574+00 2025-09-16 15:23:59.026583+00 f t SUBTOTAL 46000.00 1 7617 \N +300182 2025-09-16 15:23:59.028173+00 2025-09-16 15:23:59.028179+00 f t DESCUENTO 0.00 2 7617 \N +300183 2025-09-16 15:23:59.029572+00 2025-09-16 15:23:59.029578+00 f t TOTAL 46000.00 3 7617 \N +300184 2025-09-16 15:23:59.030515+00 2025-09-16 15:23:59.03052+00 f t ADELANTO 11000.00 4 7617 \N +295585 2025-09-14 11:22:16.430875+00 2025-09-14 11:22:16.430884+00 f t SUBTOTAL 0.00 1 7522 \N +295586 2025-09-14 11:22:16.432784+00 2025-09-14 11:22:16.432793+00 f t DESCUENTO 0.00 2 7522 \N +295587 2025-09-14 11:22:16.433897+00 2025-09-14 11:22:16.433902+00 f t TOTAL 0.00 3 7522 \N +295588 2025-09-14 11:22:16.434783+00 2025-09-14 11:22:16.434787+00 f t ADELANTO 0.00 4 7522 \N +455962 2025-11-05 11:33:39.522679+00 2025-11-05 11:33:39.522688+00 f t SUBTOTAL 0.00 1 11450 \N +455963 2025-11-05 11:33:39.524439+00 2025-11-05 11:33:39.524446+00 f t COSTO_SERVICIO 0.00 2 11450 \N +316957 2025-09-22 15:35:39.343737+00 2025-09-22 15:35:39.343749+00 f t SUBTOTAL 55000.00 1 8006 \N +316958 2025-09-22 15:35:39.345741+00 2025-09-22 15:35:39.34575+00 f t DESCUENTO 0.00 2 8006 \N +316959 2025-09-22 15:35:39.347211+00 2025-09-22 15:35:39.347219+00 f t TOTAL 55000.00 3 8006 \N +316960 2025-09-22 15:35:39.349469+00 2025-09-22 15:35:39.349477+00 f t ADELANTO 11000.00 4 8006 \N +295629 2025-09-14 12:07:52.171111+00 2025-09-14 12:07:52.17112+00 f t SUBTOTAL 0.00 1 7523 \N +295630 2025-09-14 12:07:52.173144+00 2025-09-14 12:07:52.173151+00 f t DESCUENTO 0.00 2 7523 \N +295631 2025-09-14 12:07:52.174328+00 2025-09-14 12:07:52.174333+00 f t TOTAL 0.00 3 7523 \N +295632 2025-09-14 12:07:52.175393+00 2025-09-14 12:07:52.175398+00 f t ADELANTO 0.00 4 7523 \N +303317 2025-09-17 23:12:44.33768+00 2025-09-17 23:12:44.337693+00 f t SUBTOTAL 0.00 1 7701 \N +303318 2025-09-17 23:12:44.340554+00 2025-09-17 23:12:44.340567+00 f t DESCUENTO 0.00 2 7701 \N +303319 2025-09-17 23:12:44.342087+00 2025-09-17 23:12:44.342097+00 f t TOTAL 0.00 3 7701 \N +303320 2025-09-17 23:12:44.344143+00 2025-09-17 23:12:44.344152+00 f t ADELANTO 0.00 4 7701 \N +310645 2025-09-20 10:32:36.261634+00 2025-09-20 10:32:36.261643+00 f t SUBTOTAL 70000.00 1 7876 \N +310646 2025-09-20 10:32:36.263418+00 2025-09-20 10:32:36.263425+00 f t DESCUENTO 0.00 2 7876 \N +310647 2025-09-20 10:32:36.264514+00 2025-09-20 10:32:36.264519+00 f t TOTAL 70000.00 3 7876 \N +310648 2025-09-20 10:32:36.265539+00 2025-09-20 10:32:36.265548+00 f t ADELANTO 19000.00 4 7876 \N +296981 2025-09-14 23:55:06.55532+00 2025-09-14 23:55:06.555333+00 f t SUBTOTAL 0.00 1 7542 \N +296982 2025-09-14 23:55:06.557629+00 2025-09-14 23:55:06.557642+00 f t DESCUENTO 0.00 2 7542 \N +296983 2025-09-14 23:55:06.559496+00 2025-09-14 23:55:06.559508+00 f t TOTAL 0.00 3 7542 \N +296984 2025-09-14 23:55:06.561377+00 2025-09-14 23:55:06.561389+00 f t ADELANTO 0.00 4 7542 \N +295689 2025-09-14 12:55:46.435041+00 2025-09-14 12:55:46.435051+00 f t SUBTOTAL 75000.00 1 7524 \N +295690 2025-09-14 12:55:46.437012+00 2025-09-14 12:55:46.437022+00 f t DESCUENTO 0.00 2 7524 \N +295691 2025-09-14 12:55:46.438338+00 2025-09-14 12:55:46.438345+00 f t TOTAL 75000.00 3 7524 \N +295692 2025-09-14 12:55:46.439635+00 2025-09-14 12:55:46.439643+00 f t ADELANTO 15000.00 4 7524 \N +304065 2025-09-18 08:17:34.175247+00 2025-09-18 08:17:34.175256+00 f t SUBTOTAL 256900.00 1 7721 \N +304066 2025-09-18 08:17:34.177076+00 2025-09-18 08:17:34.177082+00 f t DESCUENTO 0.00 2 7721 \N +304067 2025-09-18 08:17:34.178151+00 2025-09-18 08:17:34.178156+00 f t TOTAL 256900.00 3 7721 \N +304068 2025-09-18 08:17:34.179102+00 2025-09-18 08:17:34.179107+00 f t ADELANTO 165900.00 4 7721 \N +297673 2025-09-15 13:56:41.821885+00 2025-09-15 13:56:41.821897+00 f t SUBTOTAL 54000.00 1 7554 \N +297674 2025-09-15 13:56:41.823831+00 2025-09-15 13:56:41.823842+00 f t DESCUENTO 0.00 2 7554 \N +297675 2025-09-15 13:56:41.825348+00 2025-09-15 13:56:41.825358+00 f t TOTAL 54000.00 3 7554 \N +297676 2025-09-15 13:56:41.826749+00 2025-09-15 13:56:41.826757+00 f t ADELANTO 13500.00 4 7554 \N +304489 2025-09-18 11:32:43.560493+00 2025-09-18 11:32:43.560503+00 f t SUBTOTAL 30000.00 1 7730 \N +304490 2025-09-18 11:32:43.562235+00 2025-09-18 11:32:43.562243+00 f t DESCUENTO 0.00 2 7730 \N +304491 2025-09-18 11:32:43.563412+00 2025-09-18 11:32:43.563419+00 f t TOTAL 30000.00 3 7730 \N +304492 2025-09-18 11:32:43.564564+00 2025-09-18 11:32:43.564569+00 f t ADELANTO 30000.00 4 7730 \N +304761 2025-09-18 13:54:11.418242+00 2025-09-18 13:54:11.418256+00 f t SUBTOTAL 0.00 1 7740 \N +304762 2025-09-18 13:54:11.424382+00 2025-09-18 13:54:11.424393+00 f t DESCUENTO 0.00 2 7740 \N +304763 2025-09-18 13:54:11.42672+00 2025-09-18 13:54:11.42673+00 f t TOTAL 0.00 3 7740 \N +304764 2025-09-18 13:54:11.429556+00 2025-09-18 13:54:11.429565+00 f t ADELANTO 0.00 4 7740 \N +304853 2025-09-18 16:08:27.005467+00 2025-09-18 16:08:27.005477+00 f t SUBTOTAL 0.00 1 7745 \N +304854 2025-09-18 16:08:27.007127+00 2025-09-18 16:08:27.007158+00 f t DESCUENTO 0.00 2 7745 \N +304855 2025-09-18 16:08:27.008456+00 2025-09-18 16:08:27.008462+00 f t TOTAL 0.00 3 7745 \N +304856 2025-09-18 16:08:27.00955+00 2025-09-18 16:08:27.009558+00 f t ADELANTO 0.00 4 7745 \N +304953 2025-09-18 17:32:05.170369+00 2025-09-18 17:32:05.170384+00 f t SUBTOTAL 0.00 1 7751 \N +304954 2025-09-18 17:32:05.173147+00 2025-09-18 17:32:05.173162+00 f t DESCUENTO 0.00 2 7751 \N +304955 2025-09-18 17:32:05.176724+00 2025-09-18 17:32:05.176735+00 f t TOTAL 0.00 3 7751 \N +304956 2025-09-18 17:32:05.178575+00 2025-09-18 17:32:05.178584+00 f t ADELANTO 0.00 4 7751 \N +295757 2025-09-14 12:59:55.78705+00 2025-09-14 12:59:55.787058+00 f t SUBTOTAL 78000.00 1 7525 \N +295758 2025-09-14 12:59:55.789269+00 2025-09-14 12:59:55.789275+00 f t DESCUENTO 0.00 2 7525 \N +295759 2025-09-14 12:59:55.790586+00 2025-09-14 12:59:55.790592+00 f t TOTAL 78000.00 3 7525 \N +295760 2025-09-14 12:59:55.791843+00 2025-09-14 12:59:55.791848+00 f t ADELANTO 13000.00 4 7525 \N +298649 2025-09-15 22:24:15.382885+00 2025-09-15 22:24:15.382898+00 f t SUBTOTAL 0.00 1 7575 \N +298650 2025-09-15 22:24:15.385064+00 2025-09-15 22:24:15.385073+00 f t DESCUENTO 0.00 2 7575 \N +298651 2025-09-15 22:24:15.386301+00 2025-09-15 22:24:15.386308+00 f t TOTAL 0.00 3 7575 \N +298652 2025-09-15 22:24:15.387544+00 2025-09-15 22:24:15.387549+00 f t ADELANTO 0.00 4 7575 \N +312209 2025-09-21 01:13:21.442756+00 2025-09-21 01:13:21.442764+00 f t SUBTOTAL 0.00 1 7915 \N +312210 2025-09-21 01:13:21.444181+00 2025-09-21 01:13:21.444189+00 f t DESCUENTO 0.00 2 7915 \N +312211 2025-09-21 01:13:21.445419+00 2025-09-21 01:13:21.445425+00 f t TOTAL 0.00 3 7915 \N +312212 2025-09-21 01:13:21.446654+00 2025-09-21 01:13:21.446659+00 f t ADELANTO 0.00 4 7915 \N +305541 2025-09-18 20:46:24.927361+00 2025-09-18 20:46:24.927369+00 f t SUBTOTAL 0.00 1 7765 \N +305542 2025-09-18 20:46:24.928748+00 2025-09-18 20:46:24.928755+00 f t DESCUENTO 0.00 2 7765 \N +305543 2025-09-18 20:46:24.92989+00 2025-09-18 20:46:24.929895+00 f t TOTAL 0.00 3 7765 \N +305544 2025-09-18 20:46:24.930902+00 2025-09-18 20:46:24.930907+00 f t ADELANTO 0.00 4 7765 \N +299081 2025-09-16 01:27:55.014911+00 2025-09-16 01:27:55.014919+00 f t SUBTOTAL 87400.00 1 7587 \N +299082 2025-09-16 01:27:55.016716+00 2025-09-16 01:27:55.016723+00 f t DESCUENTO 0.00 2 7587 \N +299083 2025-09-16 01:27:55.017734+00 2025-09-16 01:27:55.017739+00 f t TOTAL 87400.00 3 7587 \N +299084 2025-09-16 01:27:55.018583+00 2025-09-16 01:27:55.018588+00 f t ADELANTO 46900.00 4 7587 \N +299161 2025-09-16 02:23:54.574367+00 2025-09-16 02:23:54.574379+00 f t SUBTOTAL 0.00 1 7591 \N +299162 2025-09-16 02:23:54.577854+00 2025-09-16 02:23:54.577865+00 f t DESCUENTO 0.00 2 7591 \N +299163 2025-09-16 02:23:54.579875+00 2025-09-16 02:23:54.579884+00 f t TOTAL 0.00 3 7591 \N +299164 2025-09-16 02:23:54.584008+00 2025-09-16 02:23:54.584017+00 f t ADELANTO 0.00 4 7591 \N +299313 2025-09-16 06:08:30.265137+00 2025-09-16 06:08:30.265145+00 f t SUBTOTAL 0.00 1 7597 \N +299314 2025-09-16 06:08:30.266376+00 2025-09-16 06:08:30.266384+00 f t DESCUENTO 0.00 2 7597 \N +299315 2025-09-16 06:08:30.26746+00 2025-09-16 06:08:30.267465+00 f t TOTAL 0.00 3 7597 \N +299316 2025-09-16 06:08:30.268481+00 2025-09-16 06:08:30.268486+00 f t ADELANTO 0.00 4 7597 \N +306938 2025-09-19 04:10:54.503997+00 2025-09-19 04:10:54.504003+00 f t DESCUENTO 0.00 2 7793 \N +306939 2025-09-19 04:10:54.505181+00 2025-09-19 04:10:54.505186+00 f t TOTAL 54000.00 3 7793 \N +306940 2025-09-19 04:10:54.506048+00 2025-09-19 04:10:54.506053+00 f t ADELANTO 13500.00 4 7793 \N +339061 2025-09-29 21:13:13.692365+00 2025-09-29 21:13:13.692374+00 f t SUBTOTAL 68000.00 1 8549 \N +339062 2025-09-29 21:13:13.694287+00 2025-09-29 21:13:13.694295+00 f t DESCUENTO 0.00 2 8549 \N +339063 2025-09-29 21:13:13.700053+00 2025-09-29 21:13:13.700062+00 f t TOTAL 68000.00 3 8549 \N +339064 2025-09-29 21:13:13.70179+00 2025-09-29 21:13:13.701798+00 f t ADELANTO 13000.00 4 8549 \N +310753 2025-09-20 11:58:50.857523+00 2025-09-20 11:58:50.857534+00 f t SUBTOTAL 46000.00 1 7878 \N +310754 2025-09-20 11:58:50.859793+00 2025-09-20 11:58:50.859805+00 f t DESCUENTO 0.00 2 7878 \N +310755 2025-09-20 11:58:50.861511+00 2025-09-20 11:58:50.861521+00 f t TOTAL 46000.00 3 7878 \N +310756 2025-09-20 11:58:50.863259+00 2025-09-20 11:58:50.863268+00 f t ADELANTO 11000.00 4 7878 \N +300449 2025-09-16 15:33:36.895546+00 2025-09-16 15:33:36.895555+00 f t SUBTOTAL 102000.00 1 7621 \N +300450 2025-09-16 15:33:36.897256+00 2025-09-16 15:33:36.897262+00 f t DESCUENTO 0.00 2 7621 \N +300451 2025-09-16 15:33:36.898453+00 2025-09-16 15:33:36.898459+00 f t TOTAL 102000.00 3 7621 \N +300452 2025-09-16 15:33:36.899783+00 2025-09-16 15:33:36.899787+00 f t ADELANTO 29500.00 4 7621 \N +300457 2025-09-16 15:41:05.040857+00 2025-09-16 15:41:05.040866+00 f t SUBTOTAL 0.00 1 7622 \N +300458 2025-09-16 15:41:05.043645+00 2025-09-16 15:41:05.043657+00 f t DESCUENTO 0.00 2 7622 \N +300459 2025-09-16 15:41:05.046284+00 2025-09-16 15:41:05.046292+00 f t TOTAL 0.00 3 7622 \N +300460 2025-09-16 15:41:05.048417+00 2025-09-16 15:41:05.048427+00 f t ADELANTO 0.00 4 7622 \N +300473 2025-09-16 15:51:51.289285+00 2025-09-16 15:51:51.289295+00 f t SUBTOTAL 0.00 1 7623 \N +300474 2025-09-16 15:51:51.291623+00 2025-09-16 15:51:51.29163+00 f t DESCUENTO 0.00 2 7623 \N +300475 2025-09-16 15:51:51.293062+00 2025-09-16 15:51:51.293069+00 f t TOTAL 0.00 3 7623 \N +300476 2025-09-16 15:51:51.294629+00 2025-09-16 15:51:51.294635+00 f t ADELANTO 0.00 4 7623 \N +304241 2025-09-18 10:32:42.873765+00 2025-09-18 10:32:42.873778+00 f t SUBTOTAL 55000.00 1 7724 \N +304242 2025-09-18 10:32:42.875616+00 2025-09-18 10:32:42.875624+00 f t DESCUENTO 0.00 2 7724 \N +304243 2025-09-18 10:32:42.876952+00 2025-09-18 10:32:42.876959+00 f t TOTAL 55000.00 3 7724 \N +304244 2025-09-18 10:32:42.878172+00 2025-09-18 10:32:42.878178+00 f t ADELANTO 11000.00 4 7724 \N +311477 2025-09-20 18:38:36.716759+00 2025-09-20 18:38:36.716768+00 f t SUBTOTAL 98000.00 1 7898 \N +311478 2025-09-20 18:38:36.718378+00 2025-09-20 18:38:36.718384+00 f t DESCUENTO 0.00 2 7898 \N +311479 2025-09-20 18:38:36.719689+00 2025-09-20 18:38:36.719696+00 f t TOTAL 98000.00 3 7898 \N +311480 2025-09-20 18:38:36.721714+00 2025-09-20 18:38:36.721719+00 f t ADELANTO 43000.00 4 7898 \N +304497 2025-09-18 11:51:24.462355+00 2025-09-18 11:51:24.462365+00 f t SUBTOTAL 0.00 1 7731 \N +304498 2025-09-18 11:51:24.463755+00 2025-09-18 11:51:24.463762+00 f t DESCUENTO 0.00 2 7731 \N +304499 2025-09-18 11:51:24.465002+00 2025-09-18 11:51:24.465008+00 f t TOTAL 0.00 3 7731 \N +304500 2025-09-18 11:51:24.466031+00 2025-09-18 11:51:24.466036+00 f t ADELANTO 0.00 4 7731 \N +304677 2025-09-18 13:27:11.09232+00 2025-09-18 13:27:11.092332+00 f t SUBTOTAL 46000.00 1 7737 \N +304678 2025-09-18 13:27:11.100805+00 2025-09-18 13:27:11.100819+00 f t DESCUENTO 0.00 2 7737 \N +304679 2025-09-18 13:27:11.103001+00 2025-09-18 13:27:11.103014+00 f t TOTAL 46000.00 3 7737 \N +304680 2025-09-18 13:27:11.104824+00 2025-09-18 13:27:11.104832+00 f t ADELANTO 11000.00 4 7737 \N +304861 2025-09-18 16:32:58.336927+00 2025-09-18 16:32:58.33694+00 f t SUBTOTAL 0.00 1 7746 \N +304862 2025-09-18 16:32:58.338649+00 2025-09-18 16:32:58.338658+00 f t DESCUENTO 0.00 2 7746 \N +304863 2025-09-18 16:32:58.340118+00 2025-09-18 16:32:58.340125+00 f t TOTAL 0.00 3 7746 \N +304864 2025-09-18 16:32:58.341273+00 2025-09-18 16:32:58.341279+00 f t ADELANTO 0.00 4 7746 \N +300541 2025-09-16 16:07:54.259482+00 2025-09-16 16:07:54.259494+00 f t SUBTOTAL 46000.00 1 7624 \N +300542 2025-09-16 16:07:54.261316+00 2025-09-16 16:07:54.261325+00 f t DESCUENTO 0.00 2 7624 \N +300543 2025-09-16 16:07:54.263498+00 2025-09-16 16:07:54.263505+00 f t TOTAL 46000.00 3 7624 \N +300544 2025-09-16 16:07:54.264652+00 2025-09-16 16:07:54.264658+00 f t ADELANTO 11000.00 4 7624 \N +305293 2025-09-18 18:32:52.362423+00 2025-09-18 18:32:52.362433+00 f t SUBTOTAL 68000.00 1 7758 \N +305294 2025-09-18 18:32:52.364236+00 2025-09-18 18:32:52.364243+00 f t DESCUENTO 0.00 2 7758 \N +305295 2025-09-18 18:32:52.36531+00 2025-09-18 18:32:52.365316+00 f t TOTAL 68000.00 3 7758 \N +305296 2025-09-18 18:32:52.366448+00 2025-09-18 18:32:52.366454+00 f t ADELANTO 13000.00 4 7758 \N +312577 2025-09-21 07:43:35.491371+00 2025-09-21 07:43:35.491384+00 f t SUBTOTAL 156000.00 1 7922 \N +312578 2025-09-21 07:43:35.493524+00 2025-09-21 07:43:35.493534+00 f t DESCUENTO 0.00 2 7922 \N +312579 2025-09-21 07:43:35.495723+00 2025-09-21 07:43:35.495734+00 f t TOTAL 156000.00 3 7922 \N +312580 2025-09-21 07:43:35.497665+00 2025-09-21 07:43:35.497679+00 f t ADELANTO 26000.00 4 7922 \N +300601 2025-09-16 16:12:17.917365+00 2025-09-16 16:12:17.917373+00 f t SUBTOTAL 54000.00 1 7625 \N +300602 2025-09-16 16:12:17.91903+00 2025-09-16 16:12:17.919036+00 f t DESCUENTO 0.00 2 7625 \N +300603 2025-09-16 16:12:17.920408+00 2025-09-16 16:12:17.920417+00 f t TOTAL 54000.00 3 7625 \N +300604 2025-09-16 16:12:17.921666+00 2025-09-16 16:12:17.921678+00 f t ADELANTO 13500.00 4 7625 \N +306277 2025-09-18 23:03:43.497653+00 2025-09-18 23:03:43.497662+00 f t SUBTOTAL 55000.00 1 7780 \N +306278 2025-09-18 23:03:43.500927+00 2025-09-18 23:03:43.500937+00 f t DESCUENTO 0.00 2 7780 \N +306279 2025-09-18 23:03:43.50275+00 2025-09-18 23:03:43.502759+00 f t TOTAL 55000.00 3 7780 \N +306280 2025-09-18 23:03:43.504366+00 2025-09-18 23:03:43.504374+00 f t ADELANTO 11000.00 4 7780 \N +306505 2025-09-19 01:21:55.655903+00 2025-09-19 01:21:55.655916+00 f t SUBTOTAL 46000.00 1 7785 \N +306506 2025-09-19 01:21:55.658503+00 2025-09-19 01:21:55.658515+00 f t DESCUENTO 0.00 2 7785 \N +306507 2025-09-19 01:21:55.66016+00 2025-09-19 01:21:55.660172+00 f t TOTAL 46000.00 3 7785 \N +306508 2025-09-19 01:21:55.661882+00 2025-09-19 01:21:55.661891+00 f t ADELANTO 11000.00 4 7785 \N +313361 2025-09-21 16:04:47.921543+00 2025-09-21 16:04:47.921554+00 f t SUBTOTAL 133500.00 1 7935 \N +313362 2025-09-21 16:04:47.923088+00 2025-09-21 16:04:47.923094+00 f t DESCUENTO 0.00 2 7935 \N +313363 2025-09-21 16:04:47.924365+00 2025-09-21 16:04:47.924371+00 f t TOTAL 133500.00 3 7935 \N +313364 2025-09-21 16:04:47.925507+00 2025-09-21 16:04:47.925513+00 f t ADELANTO 28500.00 4 7935 \N +307013 2025-09-19 05:27:55.163566+00 2025-09-19 05:27:55.163577+00 f t SUBTOTAL 54000.00 1 7795 \N +307014 2025-09-19 05:27:55.165425+00 2025-09-19 05:27:55.165434+00 f t DESCUENTO 0.00 2 7795 \N +307015 2025-09-19 05:27:55.16696+00 2025-09-19 05:27:55.166966+00 f t TOTAL 54000.00 3 7795 \N +307016 2025-09-19 05:27:55.168854+00 2025-09-19 05:27:55.16886+00 f t ADELANTO 13500.00 4 7795 \N +307217 2025-09-19 11:09:05.8561+00 2025-09-19 11:09:05.856114+00 f t SUBTOTAL 46000.00 1 7800 \N +307218 2025-09-19 11:09:05.866843+00 2025-09-19 11:09:05.866858+00 f t DESCUENTO 0.00 2 7800 \N +307219 2025-09-19 11:09:05.869637+00 2025-09-19 11:09:05.869652+00 f t TOTAL 46000.00 3 7800 \N +307220 2025-09-19 11:09:05.872216+00 2025-09-19 11:09:05.872227+00 f t ADELANTO 11000.00 4 7800 \N +300669 2025-09-16 16:31:39.324923+00 2025-09-16 16:31:39.324933+00 f t SUBTOTAL 116000.00 1 7626 \N +300670 2025-09-16 16:31:39.329684+00 2025-09-16 16:31:39.329694+00 f t DESCUENTO 0.00 2 7626 \N +300671 2025-09-16 16:31:39.33161+00 2025-09-16 16:31:39.331619+00 f t TOTAL 116000.00 3 7626 \N +300672 2025-09-16 16:31:39.333552+00 2025-09-16 16:31:39.333562+00 f t ADELANTO 28500.00 4 7626 \N +455964 2025-11-05 11:33:39.525426+00 2025-11-05 11:33:39.525432+00 f t DESCUENTO 0.00 3 11450 \N +300701 2025-09-16 16:38:08.100182+00 2025-09-16 16:38:08.100194+00 f t SUBTOTAL 46000.00 1 7627 \N +300702 2025-09-16 16:38:08.102709+00 2025-09-16 16:38:08.102718+00 f t DESCUENTO 0.00 2 7627 \N +300703 2025-09-16 16:38:08.104066+00 2025-09-16 16:38:08.104071+00 f t TOTAL 46000.00 3 7627 \N +300704 2025-09-16 16:38:08.105235+00 2025-09-16 16:38:08.105241+00 f t ADELANTO 11000.00 4 7627 \N +300709 2025-09-16 16:49:16.274578+00 2025-09-16 16:49:16.27459+00 f t SUBTOTAL 0.00 1 7628 \N +300710 2025-09-16 16:49:16.276371+00 2025-09-16 16:49:16.276381+00 f t DESCUENTO 0.00 2 7628 \N +300711 2025-09-16 16:49:16.277933+00 2025-09-16 16:49:16.277942+00 f t TOTAL 0.00 3 7628 \N +300712 2025-09-16 16:49:16.279349+00 2025-09-16 16:49:16.279358+00 f t ADELANTO 0.00 4 7628 \N +300717 2025-09-16 17:02:58.939548+00 2025-09-16 17:02:58.939563+00 f t SUBTOTAL 0.00 1 7629 \N +300718 2025-09-16 17:02:58.941841+00 2025-09-16 17:02:58.94185+00 f t DESCUENTO 0.00 2 7629 \N +300719 2025-09-16 17:02:58.94356+00 2025-09-16 17:02:58.943571+00 f t TOTAL 0.00 3 7629 \N +300720 2025-09-16 17:02:58.945261+00 2025-09-16 17:02:58.94527+00 f t ADELANTO 0.00 4 7629 \N +300745 2025-09-16 18:08:45.866596+00 2025-09-16 18:08:45.866604+00 f t SUBTOTAL 70000.00 1 7630 \N +300746 2025-09-16 18:08:45.871792+00 2025-09-16 18:08:45.871802+00 f t DESCUENTO 0.00 2 7630 \N +300747 2025-09-16 18:08:45.874272+00 2025-09-16 18:08:45.874281+00 f t TOTAL 70000.00 3 7630 \N +300748 2025-09-16 18:08:45.877065+00 2025-09-16 18:08:45.877074+00 f t ADELANTO 19000.00 4 7630 \N +304593 2025-09-18 12:25:02.978311+00 2025-09-18 12:25:02.978325+00 f t SUBTOTAL 46000.00 1 7735 \N +304594 2025-09-18 12:25:03.00003+00 2025-09-18 12:25:03.000044+00 f t DESCUENTO 0.00 2 7735 \N +304595 2025-09-18 12:25:03.002772+00 2025-09-18 12:25:03.002788+00 f t TOTAL 46000.00 3 7735 \N +304596 2025-09-18 12:25:03.012101+00 2025-09-18 12:25:03.012116+00 f t ADELANTO 11000.00 4 7735 \N +300801 2025-09-16 19:04:21.842665+00 2025-09-16 19:04:21.842674+00 f t SUBTOTAL 0.00 1 7631 \N +300802 2025-09-16 19:04:21.844687+00 2025-09-16 19:04:21.844694+00 f t DESCUENTO 0.00 2 7631 \N +300803 2025-09-16 19:04:21.846108+00 2025-09-16 19:04:21.846116+00 f t TOTAL 0.00 3 7631 \N +300804 2025-09-16 19:04:21.847356+00 2025-09-16 19:04:21.847362+00 f t ADELANTO 0.00 4 7631 \N +304869 2025-09-18 16:34:11.456986+00 2025-09-18 16:34:11.456998+00 f t SUBTOTAL 0.00 1 7747 \N +304870 2025-09-18 16:34:11.458311+00 2025-09-18 16:34:11.458317+00 f t DESCUENTO 0.00 2 7747 \N +304871 2025-09-18 16:34:11.459334+00 2025-09-18 16:34:11.459339+00 f t TOTAL 0.00 3 7747 \N +304872 2025-09-18 16:34:11.46031+00 2025-09-18 16:34:11.460317+00 f t ADELANTO 0.00 4 7747 \N +300829 2025-09-16 19:17:59.976898+00 2025-09-16 19:17:59.976907+00 f t SUBTOTAL 46000.00 1 7632 \N +300830 2025-09-16 19:17:59.982018+00 2025-09-16 19:17:59.982027+00 f t DESCUENTO 0.00 2 7632 \N +300831 2025-09-16 19:17:59.983696+00 2025-09-16 19:17:59.983706+00 f t TOTAL 46000.00 3 7632 \N +300832 2025-09-16 19:17:59.985027+00 2025-09-16 19:17:59.985035+00 f t ADELANTO 11000.00 4 7632 \N +300837 2025-09-16 19:29:16.039122+00 2025-09-16 19:29:16.039162+00 f t SUBTOTAL 0.00 1 7633 \N +300838 2025-09-16 19:29:16.040824+00 2025-09-16 19:29:16.040832+00 f t DESCUENTO 0.00 2 7633 \N +300839 2025-09-16 19:29:16.042076+00 2025-09-16 19:29:16.042083+00 f t TOTAL 0.00 3 7633 \N +300840 2025-09-16 19:29:16.043227+00 2025-09-16 19:29:16.043233+00 f t ADELANTO 0.00 4 7633 \N +300845 2025-09-16 19:36:08.929401+00 2025-09-16 19:36:08.929411+00 f t SUBTOTAL 0.00 1 7634 \N +300846 2025-09-16 19:36:08.931033+00 2025-09-16 19:36:08.931041+00 f t DESCUENTO 0.00 2 7634 \N +300847 2025-09-16 19:36:08.932621+00 2025-09-16 19:36:08.93263+00 f t TOTAL 0.00 3 7634 \N +300848 2025-09-16 19:36:08.934216+00 2025-09-16 19:36:08.934222+00 f t ADELANTO 0.00 4 7634 \N +300853 2025-09-16 19:38:29.156973+00 2025-09-16 19:38:29.156985+00 f t SUBTOTAL 0.00 1 7635 \N +300854 2025-09-16 19:38:29.158437+00 2025-09-16 19:38:29.158445+00 f t DESCUENTO 0.00 2 7635 \N +300855 2025-09-16 19:38:29.159563+00 2025-09-16 19:38:29.159568+00 f t TOTAL 0.00 3 7635 \N +300856 2025-09-16 19:38:29.160618+00 2025-09-16 19:38:29.160626+00 f t ADELANTO 0.00 4 7635 \N +305377 2025-09-18 18:50:47.69368+00 2025-09-18 18:50:47.693689+00 f t SUBTOTAL 156000.00 1 7760 \N +305378 2025-09-18 18:50:47.695714+00 2025-09-18 18:50:47.695722+00 f t DESCUENTO 0.00 2 7760 \N +305379 2025-09-18 18:50:47.696986+00 2025-09-18 18:50:47.696993+00 f t TOTAL 156000.00 3 7760 \N +305380 2025-09-18 18:50:47.698167+00 2025-09-18 18:50:47.698174+00 f t ADELANTO 43000.00 4 7760 \N +305633 2025-09-18 21:13:00.238363+00 2025-09-18 21:13:00.238372+00 f t SUBTOTAL 66900.00 1 7767 \N +305634 2025-09-18 21:13:00.240206+00 2025-09-18 21:13:00.240214+00 f t DESCUENTO 0.00 2 7767 \N +305635 2025-09-18 21:13:00.241479+00 2025-09-18 21:13:00.241486+00 f t TOTAL 66900.00 3 7767 \N +305636 2025-09-18 21:13:00.242555+00 2025-09-18 21:13:00.242561+00 f t ADELANTO 26400.00 4 7767 \N +305805 2025-09-18 22:11:32.628306+00 2025-09-18 22:11:32.628318+00 f t SUBTOTAL 55000.00 1 7772 \N +305806 2025-09-18 22:11:32.630033+00 2025-09-18 22:11:32.630041+00 f t DESCUENTO 0.00 2 7772 \N +305807 2025-09-18 22:11:32.631434+00 2025-09-18 22:11:32.631442+00 f t TOTAL 55000.00 3 7772 \N +305808 2025-09-18 22:11:32.632509+00 2025-09-18 22:11:32.632514+00 f t ADELANTO 11000.00 4 7772 \N +300885 2025-09-16 19:52:42.993461+00 2025-09-16 19:52:42.993473+00 f t SUBTOTAL 54000.00 1 7636 \N +300886 2025-09-16 19:52:42.995525+00 2025-09-16 19:52:42.995537+00 f t DESCUENTO 0.00 2 7636 \N +300887 2025-09-16 19:52:42.997219+00 2025-09-16 19:52:42.997229+00 f t TOTAL 54000.00 3 7636 \N +300888 2025-09-16 19:52:42.998769+00 2025-09-16 19:52:42.998778+00 f t ADELANTO 13500.00 4 7636 \N +305965 2025-09-18 22:22:37.731777+00 2025-09-18 22:22:37.731786+00 f t SUBTOTAL 0.00 1 7774 \N +300893 2025-09-16 19:55:55.513945+00 2025-09-16 19:55:55.513954+00 f t SUBTOTAL 0.00 1 7637 \N +300894 2025-09-16 19:55:55.51582+00 2025-09-16 19:55:55.515829+00 f t DESCUENTO 0.00 2 7637 \N +300895 2025-09-16 19:55:55.517324+00 2025-09-16 19:55:55.51733+00 f t TOTAL 0.00 3 7637 \N +300896 2025-09-16 19:55:55.518597+00 2025-09-16 19:55:55.518604+00 f t ADELANTO 0.00 4 7637 \N +305966 2025-09-18 22:22:37.73361+00 2025-09-18 22:22:37.733624+00 f t DESCUENTO 0.00 2 7774 \N +305967 2025-09-18 22:22:37.734613+00 2025-09-18 22:22:37.734619+00 f t TOTAL 0.00 3 7774 \N +305968 2025-09-18 22:22:37.735564+00 2025-09-18 22:22:37.735569+00 f t ADELANTO 0.00 4 7774 \N +300901 2025-09-16 19:57:22.873685+00 2025-09-16 19:57:22.873696+00 f t SUBTOTAL 0.00 1 7638 \N +300902 2025-09-16 19:57:22.875397+00 2025-09-16 19:57:22.875405+00 f t DESCUENTO 0.00 2 7638 \N +300903 2025-09-16 19:57:22.876883+00 2025-09-16 19:57:22.876892+00 f t TOTAL 0.00 3 7638 \N +300904 2025-09-16 19:57:22.878258+00 2025-09-16 19:57:22.878266+00 f t ADELANTO 0.00 4 7638 \N +300909 2025-09-16 20:12:30.1335+00 2025-09-16 20:12:30.133509+00 f t SUBTOTAL 0.00 1 7639 \N +300910 2025-09-16 20:12:30.135356+00 2025-09-16 20:12:30.135364+00 f t DESCUENTO 0.00 2 7639 \N +300911 2025-09-16 20:12:30.136614+00 2025-09-16 20:12:30.13662+00 f t TOTAL 0.00 3 7639 \N +300912 2025-09-16 20:12:30.137678+00 2025-09-16 20:12:30.137684+00 f t ADELANTO 0.00 4 7639 \N +300965 2025-09-16 20:25:34.417317+00 2025-09-16 20:25:34.417329+00 f t SUBTOTAL 78000.00 1 7640 \N +300966 2025-09-16 20:25:34.421154+00 2025-09-16 20:25:34.421162+00 f t DESCUENTO 0.00 2 7640 \N +300967 2025-09-16 20:25:34.422436+00 2025-09-16 20:25:34.422443+00 f t TOTAL 78000.00 3 7640 \N +300968 2025-09-16 20:25:34.423458+00 2025-09-16 20:25:34.423464+00 f t ADELANTO 13000.00 4 7640 \N +455965 2025-11-05 11:33:39.526363+00 2025-11-05 11:33:39.526368+00 f t TOTAL 0.00 4 11450 \N +355489 2025-10-06 00:58:42.533716+00 2025-10-06 00:58:42.533725+00 f t SUBTOTAL 98400.00 1 8944 \N +355490 2025-10-06 00:58:42.535334+00 2025-10-06 00:58:42.53534+00 f t DESCUENTO 0.00 2 8944 \N +355491 2025-10-06 00:58:42.536387+00 2025-10-06 00:58:42.536392+00 f t TOTAL 98400.00 3 8944 \N +355492 2025-10-06 00:58:42.537401+00 2025-10-06 00:58:42.537406+00 f t ADELANTO 57900.00 4 8944 \N +301013 2025-09-16 20:27:10.247879+00 2025-09-16 20:27:10.247891+00 f t SUBTOTAL 70000.00 1 7641 \N +301014 2025-09-16 20:27:10.259012+00 2025-09-16 20:27:10.259028+00 f t DESCUENTO 0.00 2 7641 \N +301015 2025-09-16 20:27:10.26814+00 2025-09-16 20:27:10.268155+00 f t TOTAL 70000.00 3 7641 \N +301016 2025-09-16 20:27:10.270871+00 2025-09-16 20:27:10.270885+00 f t ADELANTO 19000.00 4 7641 \N +310553 2025-09-20 10:29:25.901543+00 2025-09-20 10:29:25.901551+00 f t SUBTOTAL 46000.00 1 7875 \N +303533 2025-09-18 02:07:08.160188+00 2025-09-18 02:07:08.160196+00 f t SUBTOTAL 46000.00 1 7708 \N +303534 2025-09-18 02:07:08.161824+00 2025-09-18 02:07:08.161835+00 f t DESCUENTO 0.00 2 7708 \N +303535 2025-09-18 02:07:08.163078+00 2025-09-18 02:07:08.163084+00 f t TOTAL 46000.00 3 7708 \N +303536 2025-09-18 02:07:08.164165+00 2025-09-18 02:07:08.16417+00 f t ADELANTO 11000.00 4 7708 \N +310554 2025-09-20 10:29:25.903084+00 2025-09-20 10:29:25.903091+00 f t DESCUENTO 0.00 2 7875 \N +310555 2025-09-20 10:29:25.904897+00 2025-09-20 10:29:25.904906+00 f t TOTAL 46000.00 3 7875 \N +310556 2025-09-20 10:29:25.906863+00 2025-09-20 10:29:25.906872+00 f t ADELANTO 11000.00 4 7875 \N +303721 2025-09-18 04:07:00.090491+00 2025-09-18 04:07:00.0905+00 f t SUBTOTAL 78000.00 1 7712 \N +303722 2025-09-18 04:07:00.09256+00 2025-09-18 04:07:00.09257+00 f t DESCUENTO 0.00 2 7712 \N +303723 2025-09-18 04:07:00.094493+00 2025-09-18 04:07:00.094502+00 f t TOTAL 78000.00 3 7712 \N +303724 2025-09-18 04:07:00.096333+00 2025-09-18 04:07:00.096341+00 f t ADELANTO 21500.00 4 7712 \N +317693 2025-09-22 19:55:24.540873+00 2025-09-22 19:55:24.540884+00 f t SUBTOTAL 46000.00 1 8031 \N +317694 2025-09-22 19:55:24.543057+00 2025-09-22 19:55:24.543068+00 f t DESCUENTO 0.00 2 8031 \N +317695 2025-09-22 19:55:24.544747+00 2025-09-22 19:55:24.544757+00 f t TOTAL 46000.00 3 8031 \N +317696 2025-09-22 19:55:24.546257+00 2025-09-22 19:55:24.546266+00 f t ADELANTO 11000.00 4 8031 \N +301053 2025-09-16 20:42:23.790544+00 2025-09-16 20:42:23.790555+00 f t SUBTOTAL 78000.00 1 7642 \N +301054 2025-09-16 20:42:23.79226+00 2025-09-16 20:42:23.792266+00 f t DESCUENTO 0.00 2 7642 \N +301055 2025-09-16 20:42:23.793631+00 2025-09-16 20:42:23.793636+00 f t TOTAL 78000.00 3 7642 \N +301056 2025-09-16 20:42:23.79487+00 2025-09-16 20:42:23.794874+00 f t ADELANTO 21500.00 4 7642 \N +301061 2025-09-16 20:52:36.11409+00 2025-09-16 20:52:36.114099+00 f t SUBTOTAL 0.00 1 7643 \N +301062 2025-09-16 20:52:36.115793+00 2025-09-16 20:52:36.115801+00 f t DESCUENTO 0.00 2 7643 \N +301063 2025-09-16 20:52:36.117242+00 2025-09-16 20:52:36.117249+00 f t TOTAL 0.00 3 7643 \N +301064 2025-09-16 20:52:36.118534+00 2025-09-16 20:52:36.11854+00 f t ADELANTO 0.00 4 7643 \N +318577 2025-09-23 00:27:51.779707+00 2025-09-23 00:27:51.779717+00 f t SUBTOTAL 68000.00 1 8053 \N +318578 2025-09-23 00:27:51.781489+00 2025-09-23 00:27:51.781495+00 f t DESCUENTO 0.00 2 8053 \N +318579 2025-09-23 00:27:51.782514+00 2025-09-23 00:27:51.78252+00 f t TOTAL 68000.00 3 8053 \N +318580 2025-09-23 00:27:51.783471+00 2025-09-23 00:27:51.783476+00 f t ADELANTO 13000.00 4 8053 \N +304969 2025-09-18 17:46:03.020935+00 2025-09-18 17:46:03.020948+00 f t SUBTOTAL 0.00 1 7752 \N +304970 2025-09-18 17:46:03.02325+00 2025-09-18 17:46:03.02326+00 f t DESCUENTO 0.00 2 7752 \N +304971 2025-09-18 17:46:03.02477+00 2025-09-18 17:46:03.024779+00 f t TOTAL 0.00 3 7752 \N +304972 2025-09-18 17:46:03.026123+00 2025-09-18 17:46:03.02613+00 f t ADELANTO 0.00 4 7752 \N +319173 2025-09-23 11:18:31.833668+00 2025-09-23 11:18:31.833676+00 f t SUBTOTAL 46000.00 1 8067 \N +301121 2025-09-16 20:55:23.569608+00 2025-09-16 20:55:23.569616+00 f t SUBTOTAL 121000.00 1 7644 \N +301122 2025-09-16 20:55:23.571943+00 2025-09-16 20:55:23.571954+00 f t DESCUENTO 0.00 2 7644 \N +301123 2025-09-16 20:55:23.573628+00 2025-09-16 20:55:23.573636+00 f t TOTAL 121000.00 3 7644 \N +301124 2025-09-16 20:55:23.574939+00 2025-09-16 20:55:23.574949+00 f t ADELANTO 26000.00 4 7644 \N +319174 2025-09-23 11:18:31.835333+00 2025-09-23 11:18:31.835339+00 f t DESCUENTO 0.00 2 8067 \N +319175 2025-09-23 11:18:31.836356+00 2025-09-23 11:18:31.836361+00 f t TOTAL 46000.00 3 8067 \N +319176 2025-09-23 11:18:31.837236+00 2025-09-23 11:18:31.837241+00 f t ADELANTO 11000.00 4 8067 \N +301129 2025-09-16 20:59:19.03233+00 2025-09-16 20:59:19.03234+00 f t SUBTOTAL 0.00 1 7645 \N +301130 2025-09-16 20:59:19.03389+00 2025-09-16 20:59:19.0339+00 f t DESCUENTO 0.00 2 7645 \N +301131 2025-09-16 20:59:19.035221+00 2025-09-16 20:59:19.03523+00 f t TOTAL 0.00 3 7645 \N +301132 2025-09-16 20:59:19.036607+00 2025-09-16 20:59:19.036614+00 f t ADELANTO 0.00 4 7645 \N +319482 2025-09-23 12:13:03.805169+00 2025-09-23 12:13:03.805177+00 f t DESCUENTO 0.00 2 8073 \N +319483 2025-09-23 12:13:03.806841+00 2025-09-23 12:13:03.806848+00 f t TOTAL 0.00 3 8073 \N +319484 2025-09-23 12:13:03.80797+00 2025-09-23 12:13:03.807976+00 f t ADELANTO 0.00 4 8073 \N +305641 2025-09-18 21:38:47.056544+00 2025-09-18 21:38:47.056555+00 f t SUBTOTAL 0.00 1 7768 \N +305642 2025-09-18 21:38:47.05832+00 2025-09-18 21:38:47.058328+00 f t DESCUENTO 0.00 2 7768 \N +305643 2025-09-18 21:38:47.060006+00 2025-09-18 21:38:47.060017+00 f t TOTAL 0.00 3 7768 \N +305644 2025-09-18 21:38:47.061365+00 2025-09-18 21:38:47.061372+00 f t ADELANTO 0.00 4 7768 \N +319557 2025-09-23 13:04:09.926813+00 2025-09-23 13:04:09.926828+00 f t SUBTOTAL 0.00 1 8075 \N +319558 2025-09-23 13:04:09.928409+00 2025-09-23 13:04:09.928415+00 f t DESCUENTO 0.00 2 8075 \N +319559 2025-09-23 13:04:09.929728+00 2025-09-23 13:04:09.929733+00 f t TOTAL 0.00 3 8075 \N +319560 2025-09-23 13:04:09.930836+00 2025-09-23 13:04:09.930844+00 f t ADELANTO 0.00 4 8075 \N +301173 2025-09-16 21:13:41.877949+00 2025-09-16 21:13:41.877957+00 f t SUBTOTAL 75000.00 1 7646 \N +301174 2025-09-16 21:13:41.879547+00 2025-09-16 21:13:41.879557+00 f t DESCUENTO 0.00 2 7646 \N +301175 2025-09-16 21:13:41.880797+00 2025-09-16 21:13:41.880803+00 f t TOTAL 75000.00 3 7646 \N +301176 2025-09-16 21:13:41.881975+00 2025-09-16 21:13:41.881981+00 f t ADELANTO 15000.00 4 7646 \N +301201 2025-09-16 21:18:54.625065+00 2025-09-16 21:18:54.625077+00 f t SUBTOTAL 65000.00 1 7647 \N +301202 2025-09-16 21:18:54.626667+00 2025-09-16 21:18:54.626674+00 f t DESCUENTO 0.00 2 7647 \N +301203 2025-09-16 21:18:54.627774+00 2025-09-16 21:18:54.62778+00 f t TOTAL 65000.00 3 7647 \N +301204 2025-09-16 21:18:54.628987+00 2025-09-16 21:18:54.628992+00 f t ADELANTO 15000.00 4 7647 \N +301241 2025-09-16 22:10:02.408948+00 2025-09-16 22:10:02.408962+00 f t SUBTOTAL 0.00 1 7648 \N +301242 2025-09-16 22:10:02.419672+00 2025-09-16 22:10:02.419688+00 f t DESCUENTO 0.00 2 7648 \N +301243 2025-09-16 22:10:02.422469+00 2025-09-16 22:10:02.422483+00 f t TOTAL 0.00 3 7648 \N +301244 2025-09-16 22:10:02.425353+00 2025-09-16 22:10:02.425367+00 f t ADELANTO 0.00 4 7648 \N +314005 2025-09-21 19:42:33.034211+00 2025-09-21 19:42:33.034219+00 f t SUBTOTAL 46000.00 1 7954 \N +314006 2025-09-21 19:42:33.036127+00 2025-09-21 19:42:33.036135+00 f t DESCUENTO 0.00 2 7954 \N +314007 2025-09-21 19:42:33.038868+00 2025-09-21 19:42:33.038875+00 f t TOTAL 46000.00 3 7954 \N +314008 2025-09-21 19:42:33.040077+00 2025-09-21 19:42:33.040082+00 f t ADELANTO 11000.00 4 7954 \N +309701 2025-09-19 23:09:08.937129+00 2025-09-19 23:09:08.937143+00 f t SUBTOTAL 55000.00 1 7858 \N +309702 2025-09-19 23:09:08.940079+00 2025-09-19 23:09:08.940091+00 f t DESCUENTO 0.00 2 7858 \N +309703 2025-09-19 23:09:08.942211+00 2025-09-19 23:09:08.942223+00 f t TOTAL 55000.00 3 7858 \N +309704 2025-09-19 23:09:08.944188+00 2025-09-19 23:09:08.9442+00 f t ADELANTO 11000.00 4 7858 \N +397341 2025-10-20 00:25:47.3067+00 2025-10-20 00:25:47.30671+00 f t SUBTOTAL 0.00 1 10057 \N +397342 2025-10-20 00:25:47.308477+00 2025-10-20 00:25:47.308485+00 f t DESCUENTO 0.00 2 10057 \N +397343 2025-10-20 00:25:47.309586+00 2025-10-20 00:25:47.309594+00 f t TOTAL 0.00 3 10057 \N +302941 2025-09-17 20:57:14.356586+00 2025-09-17 20:57:14.356594+00 f t SUBTOTAL 143000.00 1 7693 \N +302942 2025-09-17 20:57:14.358302+00 2025-09-17 20:57:14.35831+00 f t DESCUENTO 0.00 2 7693 \N +302943 2025-09-17 20:57:14.359649+00 2025-09-17 20:57:14.359656+00 f t TOTAL 143000.00 3 7693 \N +302944 2025-09-17 20:57:14.360824+00 2025-09-17 20:57:14.36083+00 f t ADELANTO 28000.00 4 7693 \N +301289 2025-09-16 22:13:51.703108+00 2025-09-16 22:13:51.703121+00 f t SUBTOTAL 30000.00 1 7649 \N +301290 2025-09-16 22:13:51.705008+00 2025-09-16 22:13:51.705016+00 f t DESCUENTO 0.00 2 7649 \N +301291 2025-09-16 22:13:51.706608+00 2025-09-16 22:13:51.706618+00 f t TOTAL 30000.00 3 7649 \N +301292 2025-09-16 22:13:51.708158+00 2025-09-16 22:13:51.708166+00 f t ADELANTO 30000.00 4 7649 \N +303141 2025-09-17 22:49:04.365948+00 2025-09-17 22:49:04.365962+00 f t SUBTOTAL 204000.00 1 7697 \N +303142 2025-09-17 22:49:04.369233+00 2025-09-17 22:49:04.369262+00 f t DESCUENTO 0.00 2 7697 \N +303143 2025-09-17 22:49:04.371679+00 2025-09-17 22:49:04.371689+00 f t TOTAL 204000.00 3 7697 \N +303144 2025-09-17 22:49:04.379504+00 2025-09-17 22:49:04.379519+00 f t ADELANTO 59000.00 4 7697 \N +316969 2025-09-22 15:52:02.215598+00 2025-09-22 15:52:02.215608+00 f t SUBTOTAL 46000.00 1 7984 \N +316970 2025-09-22 15:52:02.219527+00 2025-09-22 15:52:02.219536+00 f t DESCUENTO 0.00 2 7984 \N +316971 2025-09-22 15:52:02.221374+00 2025-09-22 15:52:02.221384+00 f t TOTAL 46000.00 3 7984 \N +316972 2025-09-22 15:52:02.222892+00 2025-09-22 15:52:02.2229+00 f t ADELANTO 11000.00 4 7984 \N +301325 2025-09-16 22:34:21.327244+00 2025-09-16 22:34:21.327253+00 f t SUBTOTAL 70000.00 1 7650 \N +301326 2025-09-16 22:34:21.328746+00 2025-09-16 22:34:21.328752+00 f t DESCUENTO 0.00 2 7650 \N +301327 2025-09-16 22:34:21.329989+00 2025-09-16 22:34:21.329996+00 f t TOTAL 70000.00 3 7650 \N +301328 2025-09-16 22:34:21.331168+00 2025-09-16 22:34:21.331173+00 f t ADELANTO 19000.00 4 7650 \N +310965 2025-09-20 14:49:45.213694+00 2025-09-20 14:49:45.213706+00 f t SUBTOTAL 55000.00 1 7886 \N +310966 2025-09-20 14:49:45.216552+00 2025-09-20 14:49:45.216561+00 f t DESCUENTO 0.00 2 7886 \N +310967 2025-09-20 14:49:45.218656+00 2025-09-20 14:49:45.218669+00 f t TOTAL 55000.00 3 7886 \N +310968 2025-09-20 14:49:45.220734+00 2025-09-20 14:49:45.220743+00 f t ADELANTO 11000.00 4 7886 \N +304689 2025-09-18 13:27:38.932561+00 2025-09-18 13:27:38.932574+00 f t SUBTOTAL 55000.00 1 7738 \N +304690 2025-09-18 13:27:38.934585+00 2025-09-18 13:27:38.934596+00 f t DESCUENTO 0.00 2 7738 \N +304691 2025-09-18 13:27:38.93617+00 2025-09-18 13:27:38.936177+00 f t TOTAL 55000.00 3 7738 \N +304692 2025-09-18 13:27:38.937591+00 2025-09-18 13:27:38.937597+00 f t ADELANTO 11000.00 4 7738 \N +301389 2025-09-16 23:20:00.798283+00 2025-09-16 23:20:00.79829+00 f t SUBTOTAL 92000.00 1 7651 \N +301390 2025-09-16 23:20:00.800158+00 2025-09-16 23:20:00.800168+00 f t DESCUENTO 0.00 2 7651 \N +301391 2025-09-16 23:20:00.801908+00 2025-09-16 23:20:00.801916+00 f t TOTAL 92000.00 3 7651 \N +301392 2025-09-16 23:20:00.803185+00 2025-09-16 23:20:00.803191+00 f t ADELANTO 22000.00 4 7651 \N +304977 2025-09-18 18:10:37.024935+00 2025-09-18 18:10:37.024945+00 f t SUBTOTAL 0.00 1 7753 \N +304978 2025-09-18 18:10:37.026664+00 2025-09-18 18:10:37.026675+00 f t DESCUENTO 0.00 2 7753 \N +304979 2025-09-18 18:10:37.028366+00 2025-09-18 18:10:37.028377+00 f t TOTAL 0.00 3 7753 \N +304980 2025-09-18 18:10:37.03006+00 2025-09-18 18:10:37.030068+00 f t ADELANTO 0.00 4 7753 \N +305145 2025-09-18 18:28:27.219376+00 2025-09-18 18:28:27.219385+00 f t SUBTOTAL 166400.00 1 7757 \N +305146 2025-09-18 18:28:27.221231+00 2025-09-18 18:28:27.221239+00 f t DESCUENTO 0.00 2 7757 \N +305147 2025-09-18 18:28:27.222389+00 2025-09-18 18:28:27.222405+00 f t TOTAL 166400.00 3 7757 \N +305148 2025-09-18 18:28:27.223412+00 2025-09-18 18:28:27.223417+00 f t ADELANTO 70900.00 4 7757 \N +301453 2025-09-16 23:41:15.896297+00 2025-09-16 23:41:15.89631+00 f t SUBTOTAL 92000.00 1 7652 \N +301454 2025-09-16 23:41:15.898352+00 2025-09-16 23:41:15.898363+00 f t DESCUENTO 0.00 2 7652 \N +301455 2025-09-16 23:41:15.900191+00 2025-09-16 23:41:15.900202+00 f t TOTAL 92000.00 3 7652 \N +301456 2025-09-16 23:41:15.901606+00 2025-09-16 23:41:15.901615+00 f t ADELANTO 22000.00 4 7652 \N +306365 2025-09-18 23:52:59.423605+00 2025-09-18 23:52:59.423614+00 f t SUBTOTAL 46000.00 1 7782 \N +306366 2025-09-18 23:52:59.425672+00 2025-09-18 23:52:59.425681+00 f t DESCUENTO 0.00 2 7782 \N +306367 2025-09-18 23:52:59.426942+00 2025-09-18 23:52:59.42695+00 f t TOTAL 46000.00 3 7782 \N +306368 2025-09-18 23:52:59.428075+00 2025-09-18 23:52:59.428081+00 f t ADELANTO 11000.00 4 7782 \N +301493 2025-09-17 00:11:32.387057+00 2025-09-17 00:11:32.387065+00 f t SUBTOTAL 46000.00 1 7653 \N +301494 2025-09-17 00:11:32.38869+00 2025-09-17 00:11:32.388697+00 f t DESCUENTO 0.00 2 7653 \N +301495 2025-09-17 00:11:32.389797+00 2025-09-17 00:11:32.389805+00 f t TOTAL 46000.00 3 7653 \N +301496 2025-09-17 00:11:32.390746+00 2025-09-17 00:11:32.390751+00 f t ADELANTO 11000.00 4 7653 \N +301501 2025-09-17 00:24:52.617097+00 2025-09-17 00:24:52.617105+00 f t SUBTOTAL 0.00 1 7654 \N +301502 2025-09-17 00:24:52.618373+00 2025-09-17 00:24:52.618379+00 f t DESCUENTO 0.00 2 7654 \N +301503 2025-09-17 00:24:52.619392+00 2025-09-17 00:24:52.619398+00 f t TOTAL 0.00 3 7654 \N +301504 2025-09-17 00:24:52.62025+00 2025-09-17 00:24:52.620255+00 f t ADELANTO 0.00 4 7654 \N +301529 2025-09-17 00:45:17.616937+00 2025-09-17 00:45:17.616949+00 f t SUBTOTAL 153900.00 1 7655 \N +301530 2025-09-17 00:45:17.619211+00 2025-09-17 00:45:17.619223+00 f t DESCUENTO 0.00 2 7655 \N +301531 2025-09-17 00:45:17.620899+00 2025-09-17 00:45:17.620909+00 f t TOTAL 153900.00 3 7655 \N +301532 2025-09-17 00:45:17.622468+00 2025-09-17 00:45:17.622478+00 f t ADELANTO 113400.00 4 7655 \N +307365 2025-09-19 13:24:18.116445+00 2025-09-19 13:24:18.116458+00 f t SUBTOTAL 0.00 1 7804 \N +307366 2025-09-19 13:24:18.118612+00 2025-09-19 13:24:18.11862+00 f t DESCUENTO 0.00 2 7804 \N +307367 2025-09-19 13:24:18.120692+00 2025-09-19 13:24:18.120703+00 f t TOTAL 0.00 3 7804 \N +307368 2025-09-19 13:24:18.121993+00 2025-09-19 13:24:18.122+00 f t ADELANTO 0.00 4 7804 \N +307421 2025-09-19 14:18:45.637392+00 2025-09-19 14:18:45.637401+00 f t SUBTOTAL 55000.00 1 7806 \N +307422 2025-09-19 14:18:45.639075+00 2025-09-19 14:18:45.639083+00 f t DESCUENTO 0.00 2 7806 \N +307423 2025-09-19 14:18:45.640548+00 2025-09-19 14:18:45.640555+00 f t TOTAL 55000.00 3 7806 \N +307424 2025-09-19 14:18:45.641727+00 2025-09-19 14:18:45.641733+00 f t ADELANTO 11000.00 4 7806 \N +301561 2025-09-17 01:34:50.838236+00 2025-09-17 01:34:50.838245+00 f t SUBTOTAL 54000.00 1 7656 \N +301562 2025-09-17 01:34:50.840132+00 2025-09-17 01:34:50.840139+00 f t DESCUENTO 0.00 2 7656 \N +301563 2025-09-17 01:34:50.841313+00 2025-09-17 01:34:50.841318+00 f t TOTAL 54000.00 3 7656 \N +301564 2025-09-17 01:34:50.842849+00 2025-09-17 01:34:50.842856+00 f t ADELANTO 13500.00 4 7656 \N +379785 2025-10-13 23:27:36.148374+00 2025-10-13 23:27:36.148383+00 f t SUBTOTAL 70000.00 1 9579 \N +339230 2025-09-29 23:19:07.754251+00 2025-09-29 23:19:07.754265+00 f t DESCUENTO 0.00 2 8558 \N +339231 2025-09-29 23:19:07.756387+00 2025-09-29 23:19:07.756597+00 f t TOTAL 0.00 3 8558 \N +339232 2025-09-29 23:19:07.758096+00 2025-09-29 23:19:07.758103+00 f t ADELANTO 0.00 4 8558 \N +303149 2025-09-17 22:54:27.493001+00 2025-09-17 22:54:27.493013+00 f t SUBTOTAL 0.00 1 7698 \N +303150 2025-09-17 22:54:27.49478+00 2025-09-17 22:54:27.494791+00 f t DESCUENTO 0.00 2 7698 \N +303151 2025-09-17 22:54:27.4966+00 2025-09-17 22:54:27.496609+00 f t TOTAL 0.00 3 7698 \N +303152 2025-09-17 22:54:27.498078+00 2025-09-17 22:54:27.498087+00 f t ADELANTO 0.00 4 7698 \N +301597 2025-09-17 02:17:51.003562+00 2025-09-17 02:17:51.003573+00 f t SUBTOTAL 0.00 1 7657 \N +301598 2025-09-17 02:17:51.005666+00 2025-09-17 02:17:51.005673+00 f t DESCUENTO 0.00 2 7657 \N +301599 2025-09-17 02:17:51.006895+00 2025-09-17 02:17:51.006901+00 f t TOTAL 0.00 3 7657 \N +301600 2025-09-17 02:17:51.008078+00 2025-09-17 02:17:51.008084+00 f t ADELANTO 0.00 4 7657 \N +303441 2025-09-18 01:18:19.513412+00 2025-09-18 01:18:19.513424+00 f t SUBTOTAL 87400.00 1 7705 \N +303442 2025-09-18 01:18:19.515904+00 2025-09-18 01:18:19.515916+00 f t DESCUENTO 0.00 2 7705 \N +303443 2025-09-18 01:18:19.517483+00 2025-09-18 01:18:19.517493+00 f t TOTAL 87400.00 3 7705 \N +303444 2025-09-18 01:18:19.518864+00 2025-09-18 01:18:19.518876+00 f t ADELANTO 46900.00 4 7705 \N +303825 2025-09-18 06:25:38.893206+00 2025-09-18 06:25:38.893215+00 f t SUBTOTAL 0.00 1 7716 \N +303826 2025-09-18 06:25:38.899724+00 2025-09-18 06:25:38.899733+00 f t DESCUENTO 0.00 2 7716 \N +303827 2025-09-18 06:25:38.901295+00 2025-09-18 06:25:38.901302+00 f t TOTAL 0.00 3 7716 \N +303828 2025-09-18 06:25:38.9025+00 2025-09-18 06:25:38.902506+00 f t ADELANTO 0.00 4 7716 \N +301633 2025-09-17 07:35:01.498645+00 2025-09-17 07:35:01.49866+00 f t SUBTOTAL 46000.00 1 7658 \N +301634 2025-09-17 07:35:01.502047+00 2025-09-17 07:35:01.502058+00 f t DESCUENTO 0.00 2 7658 \N +301635 2025-09-17 07:35:01.505283+00 2025-09-17 07:35:01.505298+00 f t TOTAL 46000.00 3 7658 \N +301636 2025-09-17 07:35:01.507717+00 2025-09-17 07:35:01.507729+00 f t ADELANTO 11000.00 4 7658 \N +301641 2025-09-17 10:22:24.153391+00 2025-09-17 10:22:24.1534+00 f t SUBTOTAL 0.00 1 7659 \N +301642 2025-09-17 10:22:24.155678+00 2025-09-17 10:22:24.155687+00 f t DESCUENTO 0.00 2 7659 \N +301643 2025-09-17 10:22:24.157265+00 2025-09-17 10:22:24.157272+00 f t TOTAL 0.00 3 7659 \N +301644 2025-09-17 10:22:24.158458+00 2025-09-17 10:22:24.158465+00 f t ADELANTO 0.00 4 7659 \N +301649 2025-09-17 10:22:57.979486+00 2025-09-17 10:22:57.979495+00 f t SUBTOTAL 0.00 1 7660 \N +301650 2025-09-17 10:22:57.980889+00 2025-09-17 10:22:57.980898+00 f t DESCUENTO 0.00 2 7660 \N +301651 2025-09-17 10:22:57.982117+00 2025-09-17 10:22:57.982125+00 f t TOTAL 0.00 3 7660 \N +301652 2025-09-17 10:22:57.983174+00 2025-09-17 10:22:57.98318+00 f t ADELANTO 0.00 4 7660 \N +304425 2025-09-18 11:25:56.545433+00 2025-09-18 11:25:56.545446+00 f t SUBTOTAL 46000.00 1 7728 \N +304426 2025-09-18 11:25:56.548842+00 2025-09-18 11:25:56.54885+00 f t DESCUENTO 0.00 2 7728 \N +304427 2025-09-18 11:25:56.550077+00 2025-09-18 11:25:56.550083+00 f t TOTAL 46000.00 3 7728 \N +304428 2025-09-18 11:25:56.551407+00 2025-09-18 11:25:56.551413+00 f t ADELANTO 11000.00 4 7728 \N +301677 2025-09-17 10:36:17.956221+00 2025-09-17 10:36:17.956237+00 f t SUBTOTAL 54000.00 1 7661 \N +301678 2025-09-17 10:36:17.959266+00 2025-09-17 10:36:17.959277+00 f t DESCUENTO 0.00 2 7661 \N +301679 2025-09-17 10:36:17.961502+00 2025-09-17 10:36:17.961515+00 f t TOTAL 54000.00 3 7661 \N +301680 2025-09-17 10:36:17.963403+00 2025-09-17 10:36:17.963413+00 f t ADELANTO 13500.00 4 7661 \N +301705 2025-09-17 11:28:37.668048+00 2025-09-17 11:28:37.668056+00 f t SUBTOTAL 54000.00 1 7662 \N +301706 2025-09-17 11:28:37.670494+00 2025-09-17 11:28:37.670502+00 f t DESCUENTO 0.00 2 7662 \N +301707 2025-09-17 11:28:37.671923+00 2025-09-17 11:28:37.67193+00 f t TOTAL 54000.00 3 7662 \N +301708 2025-09-17 11:28:37.67303+00 2025-09-17 11:28:37.673038+00 f t ADELANTO 13500.00 4 7662 \N +301713 2025-09-17 11:59:27.355239+00 2025-09-17 11:59:27.355249+00 f t SUBTOTAL 0.00 1 7663 \N +301714 2025-09-17 11:59:27.356771+00 2025-09-17 11:59:27.356778+00 f t DESCUENTO 0.00 2 7663 \N +301715 2025-09-17 11:59:27.358188+00 2025-09-17 11:59:27.358195+00 f t TOTAL 0.00 3 7663 \N +301716 2025-09-17 11:59:27.361113+00 2025-09-17 11:59:27.361123+00 f t ADELANTO 0.00 4 7663 \N +301733 2025-09-17 12:08:30.793306+00 2025-09-17 12:08:30.793317+00 f t SUBTOTAL 0.00 1 7664 \N +301734 2025-09-17 12:08:30.796318+00 2025-09-17 12:08:30.796327+00 f t DESCUENTO 0.00 2 7664 \N +301735 2025-09-17 12:08:30.79782+00 2025-09-17 12:08:30.797827+00 f t TOTAL 0.00 3 7664 \N +301736 2025-09-17 12:08:30.799306+00 2025-09-17 12:08:30.799314+00 f t ADELANTO 0.00 4 7664 \N +305733 2025-09-18 21:48:50.641708+00 2025-09-18 21:48:50.641718+00 f t SUBTOTAL 46000.00 1 7770 \N +305734 2025-09-18 21:48:50.643455+00 2025-09-18 21:48:50.643462+00 f t DESCUENTO 0.00 2 7770 \N +305735 2025-09-18 21:48:50.644588+00 2025-09-18 21:48:50.644624+00 f t TOTAL 46000.00 3 7770 \N +305736 2025-09-18 21:48:50.645597+00 2025-09-18 21:48:50.645603+00 f t ADELANTO 11000.00 4 7770 \N +301761 2025-09-17 12:44:51.296431+00 2025-09-17 12:44:51.296444+00 f t SUBTOTAL 68000.00 1 7665 \N +301762 2025-09-17 12:44:51.298218+00 2025-09-17 12:44:51.298231+00 f t DESCUENTO 0.00 2 7665 \N +301763 2025-09-17 12:44:51.299682+00 2025-09-17 12:44:51.299692+00 f t TOTAL 68000.00 3 7665 \N +301764 2025-09-17 12:44:51.30139+00 2025-09-17 12:44:51.301399+00 f t ADELANTO 13000.00 4 7665 \N +306213 2025-09-18 23:00:04.093701+00 2025-09-18 23:00:04.093716+00 f t SUBTOTAL 46000.00 1 7779 \N +306214 2025-09-18 23:00:04.104795+00 2025-09-18 23:00:04.10481+00 f t DESCUENTO 0.00 2 7779 \N +306215 2025-09-18 23:00:04.113475+00 2025-09-18 23:00:04.113489+00 f t TOTAL 46000.00 3 7779 \N +306216 2025-09-18 23:00:04.124625+00 2025-09-18 23:00:04.12464+00 f t ADELANTO 11000.00 4 7779 \N +301789 2025-09-17 13:17:58.379366+00 2025-09-17 13:17:58.379376+00 f t SUBTOTAL 70000.00 1 7666 \N +301790 2025-09-17 13:17:58.381592+00 2025-09-17 13:17:58.381603+00 f t DESCUENTO 0.00 2 7666 \N +301791 2025-09-17 13:17:58.383376+00 2025-09-17 13:17:58.383384+00 f t TOTAL 70000.00 3 7666 \N +301792 2025-09-17 13:17:58.385024+00 2025-09-17 13:17:58.385031+00 f t ADELANTO 19000.00 4 7666 \N +306373 2025-09-19 00:35:27.809602+00 2025-09-19 00:35:27.809614+00 f t SUBTOTAL 0.00 1 7783 \N +306374 2025-09-19 00:35:27.811419+00 2025-09-19 00:35:27.811428+00 f t DESCUENTO 0.00 2 7783 \N +306375 2025-09-19 00:35:27.812646+00 2025-09-19 00:35:27.812653+00 f t TOTAL 0.00 3 7783 \N +306376 2025-09-19 00:35:27.814218+00 2025-09-19 00:35:27.814228+00 f t ADELANTO 0.00 4 7783 \N +307233 2025-09-19 11:13:18.459656+00 2025-09-19 11:13:18.459665+00 f t SUBTOTAL 0.00 1 7801 \N +307234 2025-09-19 11:13:18.461782+00 2025-09-19 11:13:18.46179+00 f t DESCUENTO 0.00 2 7801 \N +307235 2025-09-19 11:13:18.463238+00 2025-09-19 11:13:18.463247+00 f t TOTAL 0.00 3 7801 \N +307236 2025-09-19 11:13:18.464392+00 2025-09-19 11:13:18.4644+00 f t ADELANTO 0.00 4 7801 \N +307329 2025-09-19 12:05:54.003712+00 2025-09-19 12:05:54.003723+00 f t SUBTOTAL 0.00 1 7803 \N +307330 2025-09-19 12:05:54.006019+00 2025-09-19 12:05:54.006027+00 f t DESCUENTO 0.00 2 7803 \N +307331 2025-09-19 12:05:54.007497+00 2025-09-19 12:05:54.007504+00 f t TOTAL 0.00 3 7803 \N +307332 2025-09-19 12:05:54.009006+00 2025-09-19 12:05:54.009018+00 f t ADELANTO 0.00 4 7803 \N +309833 2025-09-19 23:35:03.98266+00 2025-09-19 23:35:03.982676+00 f t SUBTOTAL 0.00 1 7861 \N +309834 2025-09-19 23:35:03.987015+00 2025-09-19 23:35:03.98703+00 f t DESCUENTO 0.00 2 7861 \N +309835 2025-09-19 23:35:03.996498+00 2025-09-19 23:35:03.996514+00 f t TOTAL 0.00 3 7861 \N +309836 2025-09-19 23:35:03.999572+00 2025-09-19 23:35:03.999588+00 f t ADELANTO 0.00 4 7861 \N +331897 2025-09-27 13:55:29.852308+00 2025-09-27 13:55:29.852322+00 f t SUBTOTAL 0.00 1 8389 \N +317201 2025-09-22 16:40:25.394651+00 2025-09-22 16:40:25.394659+00 f t SUBTOTAL 107000.00 1 8016 \N +317202 2025-09-22 16:40:25.396437+00 2025-09-22 16:40:25.396445+00 f t DESCUENTO 0.00 2 8016 \N +317203 2025-09-22 16:40:25.398028+00 2025-09-22 16:40:25.398035+00 f t TOTAL 107000.00 3 8016 \N +317204 2025-09-22 16:40:25.399204+00 2025-09-22 16:40:25.39921+00 f t ADELANTO 12000.00 4 8016 \N +331898 2025-09-27 13:55:29.854376+00 2025-09-27 13:55:29.854389+00 f t DESCUENTO 0.00 2 8389 \N +331899 2025-09-27 13:55:29.855953+00 2025-09-27 13:55:29.85596+00 f t TOTAL 0.00 3 8389 \N +331900 2025-09-27 13:55:29.857217+00 2025-09-27 13:55:29.857223+00 f t ADELANTO 0.00 4 8389 \N +303345 2025-09-17 23:31:57.211525+00 2025-09-17 23:31:57.211534+00 f t SUBTOTAL 55000.00 1 7702 \N +303346 2025-09-17 23:31:57.21326+00 2025-09-17 23:31:57.213267+00 f t DESCUENTO 0.00 2 7702 \N +303347 2025-09-17 23:31:57.214453+00 2025-09-17 23:31:57.214459+00 f t TOTAL 55000.00 3 7702 \N +303348 2025-09-17 23:31:57.215505+00 2025-09-17 23:31:57.21551+00 f t ADELANTO 11000.00 4 7702 \N +303449 2025-09-18 01:20:20.676126+00 2025-09-18 01:20:20.676136+00 f t SUBTOTAL 0.00 1 7706 \N +303450 2025-09-18 01:20:20.677569+00 2025-09-18 01:20:20.677577+00 f t DESCUENTO 0.00 2 7706 \N +303451 2025-09-18 01:20:20.679313+00 2025-09-18 01:20:20.679321+00 f t TOTAL 0.00 3 7706 \N +303452 2025-09-18 01:20:20.680717+00 2025-09-18 01:20:20.680723+00 f t ADELANTO 0.00 4 7706 \N +310973 2025-09-20 14:58:20.146228+00 2025-09-20 14:58:20.146238+00 f t SUBTOTAL 0.00 1 7887 \N +310974 2025-09-20 14:58:20.15097+00 2025-09-20 14:58:20.150979+00 f t DESCUENTO 0.00 2 7887 \N +310975 2025-09-20 14:58:20.152211+00 2025-09-20 14:58:20.152219+00 f t TOTAL 0.00 3 7887 \N +310976 2025-09-20 14:58:20.153191+00 2025-09-20 14:58:20.153196+00 f t ADELANTO 0.00 4 7887 \N +311065 2025-09-20 15:30:27.974564+00 2025-09-20 15:30:27.974572+00 f t SUBTOTAL 68000.00 1 7890 \N +311066 2025-09-20 15:30:27.97638+00 2025-09-20 15:30:27.976388+00 f t DESCUENTO 0.00 2 7890 \N +311067 2025-09-20 15:30:27.979252+00 2025-09-20 15:30:27.979261+00 f t TOTAL 68000.00 3 7890 \N +311068 2025-09-20 15:30:27.98067+00 2025-09-20 15:30:27.980676+00 f t ADELANTO 13000.00 4 7890 \N +304177 2025-09-18 10:28:59.008832+00 2025-09-18 10:28:59.008845+00 f t SUBTOTAL 55000.00 1 7723 \N +301929 2025-09-17 13:35:56.59709+00 2025-09-17 13:35:56.597099+00 f t SUBTOTAL 124000.00 1 7667 \N +301930 2025-09-17 13:35:56.59896+00 2025-09-17 13:35:56.598967+00 f t DESCUENTO 0.00 2 7667 \N +301931 2025-09-17 13:35:56.600395+00 2025-09-17 13:35:56.600403+00 f t TOTAL 124000.00 3 7667 \N +301932 2025-09-17 13:35:56.601781+00 2025-09-17 13:35:56.601788+00 f t ADELANTO 32500.00 4 7667 \N +304178 2025-09-18 10:28:59.010885+00 2025-09-18 10:28:59.010893+00 f t DESCUENTO 0.00 2 7723 \N +304179 2025-09-18 10:28:59.012266+00 2025-09-18 10:28:59.012277+00 f t TOTAL 55000.00 3 7723 \N +304180 2025-09-18 10:28:59.014008+00 2025-09-18 10:28:59.014015+00 f t ADELANTO 11000.00 4 7723 \N +301937 2025-09-17 13:48:03.722344+00 2025-09-17 13:48:03.722354+00 f t SUBTOTAL 0.00 1 7668 \N +301938 2025-09-17 13:48:03.72497+00 2025-09-17 13:48:03.724978+00 f t DESCUENTO 0.00 2 7668 \N +301939 2025-09-17 13:48:03.726394+00 2025-09-17 13:48:03.726402+00 f t TOTAL 0.00 3 7668 \N +301940 2025-09-17 13:48:03.728286+00 2025-09-17 13:48:03.728293+00 f t ADELANTO 0.00 4 7668 \N +311325 2025-09-20 18:03:06.182545+00 2025-09-20 18:03:06.182554+00 f t SUBTOTAL 55000.00 1 7895 \N +311326 2025-09-20 18:03:06.184956+00 2025-09-20 18:03:06.184966+00 f t DESCUENTO 0.00 2 7895 \N +311327 2025-09-20 18:03:06.186929+00 2025-09-20 18:03:06.186939+00 f t TOTAL 55000.00 3 7895 \N +311328 2025-09-20 18:03:06.188977+00 2025-09-20 18:03:06.188985+00 f t ADELANTO 11000.00 4 7895 \N +304789 2025-09-18 14:05:12.473485+00 2025-09-18 14:05:12.473498+00 f t SUBTOTAL 70000.00 1 7742 \N +304790 2025-09-18 14:05:12.476306+00 2025-09-18 14:05:12.476318+00 f t DESCUENTO 0.00 2 7742 \N +304791 2025-09-18 14:05:12.478052+00 2025-09-18 14:05:12.47806+00 f t TOTAL 70000.00 3 7742 \N +304792 2025-09-18 14:05:12.479773+00 2025-09-18 14:05:12.479781+00 f t ADELANTO 19000.00 4 7742 \N +301985 2025-09-17 13:52:04.215577+00 2025-09-17 13:52:04.21559+00 f t SUBTOTAL 55000.00 1 7669 \N +301986 2025-09-17 13:52:04.217809+00 2025-09-17 13:52:04.217819+00 f t DESCUENTO 0.00 2 7669 \N +301987 2025-09-17 13:52:04.219573+00 2025-09-17 13:52:04.219584+00 f t TOTAL 55000.00 3 7669 \N +301988 2025-09-17 13:52:04.221195+00 2025-09-17 13:52:04.221205+00 f t ADELANTO 11000.00 4 7669 \N +312453 2025-09-21 07:06:52.481641+00 2025-09-21 07:06:52.481652+00 f t SUBTOTAL 30000.00 1 7920 \N +312454 2025-09-21 07:06:52.483869+00 2025-09-21 07:06:52.483924+00 f t DESCUENTO 0.00 2 7920 \N +312455 2025-09-21 07:06:52.485568+00 2025-09-21 07:06:52.485577+00 f t TOTAL 30000.00 3 7920 \N +312456 2025-09-21 07:06:52.486938+00 2025-09-21 07:06:52.486945+00 f t ADELANTO 30000.00 4 7920 \N +312665 2025-09-21 11:52:11.864657+00 2025-09-21 11:52:11.864667+00 f t SUBTOTAL 0.00 1 7925 \N +312666 2025-09-21 11:52:11.866839+00 2025-09-21 11:52:11.866847+00 f t DESCUENTO 0.00 2 7925 \N +312667 2025-09-21 11:52:11.868368+00 2025-09-21 11:52:11.868374+00 f t TOTAL 0.00 3 7925 \N +312668 2025-09-21 11:52:11.869535+00 2025-09-21 11:52:11.869541+00 f t ADELANTO 0.00 4 7925 \N +313369 2025-09-21 16:04:52.34441+00 2025-09-21 16:04:52.344421+00 f t SUBTOTAL 55000.00 1 7937 \N +313370 2025-09-21 16:04:52.346334+00 2025-09-21 16:04:52.34634+00 f t DESCUENTO 0.00 2 7937 \N +313371 2025-09-21 16:04:52.347504+00 2025-09-21 16:04:52.34751+00 f t TOTAL 55000.00 3 7937 \N +313372 2025-09-21 16:04:52.348713+00 2025-09-21 16:04:52.348719+00 f t ADELANTO 11000.00 4 7937 \N +313613 2025-09-21 19:18:31.605256+00 2025-09-21 19:18:31.605268+00 f t SUBTOTAL 46000.00 1 7945 \N +313614 2025-09-21 19:18:31.607475+00 2025-09-21 19:18:31.607484+00 f t DESCUENTO 0.00 2 7945 \N +313615 2025-09-21 19:18:31.60908+00 2025-09-21 19:18:31.60909+00 f t TOTAL 46000.00 3 7945 \N +313616 2025-09-21 19:18:31.610513+00 2025-09-21 19:18:31.610522+00 f t ADELANTO 11000.00 4 7945 \N +306813 2025-09-19 02:28:41.182348+00 2025-09-19 02:28:41.182356+00 f t SUBTOTAL 46000.00 1 7790 \N +306814 2025-09-19 02:28:41.184569+00 2025-09-19 02:28:41.184576+00 f t DESCUENTO 0.00 2 7790 \N +306815 2025-09-19 02:28:41.186065+00 2025-09-19 02:28:41.186071+00 f t TOTAL 46000.00 3 7790 \N +306816 2025-09-19 02:28:41.187339+00 2025-09-19 02:28:41.187345+00 f t ADELANTO 11000.00 4 7790 \N +313769 2025-09-21 19:23:14.282183+00 2025-09-21 19:23:14.282195+00 f t SUBTOTAL 55000.00 1 7946 \N +313770 2025-09-21 19:23:14.284195+00 2025-09-21 19:23:14.284203+00 f t DESCUENTO 0.00 2 7946 \N +313771 2025-09-21 19:23:14.285539+00 2025-09-21 19:23:14.285546+00 f t TOTAL 55000.00 3 7946 \N +313772 2025-09-21 19:23:14.286763+00 2025-09-21 19:23:14.286771+00 f t ADELANTO 11000.00 4 7946 \N +302125 2025-09-17 14:49:31.155611+00 2025-09-17 14:49:31.155621+00 f t SUBTOTAL 595500.00 1 7670 \N +302126 2025-09-17 14:49:31.157497+00 2025-09-17 14:49:31.157508+00 f t DESCUENTO 0.00 2 7670 \N +302127 2025-09-17 14:49:31.159161+00 2025-09-17 14:49:31.159168+00 f t TOTAL 595500.00 3 7670 \N +302128 2025-09-17 14:49:31.160618+00 2025-09-17 14:49:31.160624+00 f t ADELANTO 155500.00 4 7670 \N +302729 2025-09-17 19:37:21.532718+00 2025-09-17 19:37:21.532726+00 f t SUBTOTAL 0.00 1 7688 \N +302730 2025-09-17 19:37:21.534178+00 2025-09-17 19:37:21.534184+00 f t DESCUENTO 0.00 2 7688 \N +302731 2025-09-17 19:37:21.535544+00 2025-09-17 19:37:21.53555+00 f t TOTAL 0.00 3 7688 \N +302732 2025-09-17 19:37:21.53686+00 2025-09-17 19:37:21.536865+00 f t ADELANTO 0.00 4 7688 \N +309953 2025-09-20 00:19:15.822377+00 2025-09-20 00:19:15.822386+00 f t SUBTOTAL 46000.00 1 7866 \N +309954 2025-09-20 00:19:15.82432+00 2025-09-20 00:19:15.824327+00 f t DESCUENTO 0.00 2 7866 \N +309955 2025-09-20 00:19:15.825674+00 2025-09-20 00:19:15.825682+00 f t TOTAL 46000.00 3 7866 \N +309956 2025-09-20 00:19:15.826987+00 2025-09-20 00:19:15.826995+00 f t ADELANTO 11000.00 4 7866 \N +302169 2025-09-17 15:54:00.04561+00 2025-09-17 15:54:00.045619+00 f t SUBTOTAL 54000.00 1 7671 \N +302170 2025-09-17 15:54:00.047808+00 2025-09-17 15:54:00.047818+00 f t DESCUENTO 0.00 2 7671 \N +302171 2025-09-17 15:54:00.054102+00 2025-09-17 15:54:00.054115+00 f t TOTAL 54000.00 3 7671 \N +302172 2025-09-17 15:54:00.05631+00 2025-09-17 15:54:00.056321+00 f t ADELANTO 13500.00 4 7671 \N +310173 2025-09-20 04:46:23.240668+00 2025-09-20 04:46:23.24068+00 f t SUBTOTAL 46000.00 1 7873 \N +310174 2025-09-20 04:46:23.243026+00 2025-09-20 04:46:23.243039+00 f t DESCUENTO 0.00 2 7873 \N +310175 2025-09-20 04:46:23.244877+00 2025-09-20 04:46:23.244887+00 f t TOTAL 46000.00 3 7873 \N +310176 2025-09-20 04:46:23.246613+00 2025-09-20 04:46:23.246623+00 f t ADELANTO 11000.00 4 7873 \N +303353 2025-09-17 23:55:24.635616+00 2025-09-17 23:55:24.635625+00 f t SUBTOTAL 0.00 1 7703 \N +303354 2025-09-17 23:55:24.636955+00 2025-09-17 23:55:24.636961+00 f t DESCUENTO 0.00 2 7703 \N +303355 2025-09-17 23:55:24.637954+00 2025-09-17 23:55:24.637959+00 f t TOTAL 0.00 3 7703 \N +303356 2025-09-17 23:55:24.638904+00 2025-09-17 23:55:24.63891+00 f t ADELANTO 0.00 4 7703 \N +332585 2025-09-27 15:17:09.873718+00 2025-09-27 15:17:09.873728+00 f t SUBTOTAL 54000.00 1 8399 \N +332586 2025-09-27 15:17:09.876191+00 2025-09-27 15:17:09.8762+00 f t DESCUENTO 0.00 2 8399 \N +332587 2025-09-27 15:17:09.878617+00 2025-09-27 15:17:09.878625+00 f t TOTAL 54000.00 3 8399 \N +332588 2025-09-27 15:17:09.880172+00 2025-09-27 15:17:09.880181+00 f t ADELANTO 13500.00 4 8399 \N +302209 2025-09-17 16:04:53.925399+00 2025-09-17 16:04:53.925408+00 f t SUBTOTAL 46000.00 1 7672 \N +302210 2025-09-17 16:04:53.92695+00 2025-09-17 16:04:53.926956+00 f t DESCUENTO 0.00 2 7672 \N +302211 2025-09-17 16:04:53.928453+00 2025-09-17 16:04:53.928459+00 f t TOTAL 46000.00 3 7672 \N +302212 2025-09-17 16:04:53.929579+00 2025-09-17 16:04:53.929588+00 f t ADELANTO 11000.00 4 7672 \N +310981 2025-09-20 15:14:51.106712+00 2025-09-20 15:14:51.106721+00 f t SUBTOTAL 0.00 1 7888 \N +310982 2025-09-20 15:14:51.108188+00 2025-09-20 15:14:51.108195+00 f t DESCUENTO 0.00 2 7888 \N +310983 2025-09-20 15:14:51.109638+00 2025-09-20 15:14:51.109645+00 f t TOTAL 0.00 3 7888 \N +310984 2025-09-20 15:14:51.110692+00 2025-09-20 15:14:51.110697+00 f t ADELANTO 0.00 4 7888 \N +311333 2025-09-20 18:07:18.535097+00 2025-09-20 18:07:18.535108+00 f t SUBTOTAL 0.00 1 7896 \N +311334 2025-09-20 18:07:18.53654+00 2025-09-20 18:07:18.536548+00 f t DESCUENTO 0.00 2 7896 \N +311335 2025-09-20 18:07:18.537889+00 2025-09-20 18:07:18.537898+00 f t TOTAL 0.00 3 7896 \N +311336 2025-09-20 18:07:18.539295+00 2025-09-20 18:07:18.539301+00 f t ADELANTO 0.00 4 7896 \N +302249 2025-09-17 17:27:44.57382+00 2025-09-17 17:27:44.573829+00 f t SUBTOTAL 78000.00 1 7673 \N +302250 2025-09-17 17:27:44.575722+00 2025-09-17 17:27:44.57573+00 f t DESCUENTO 0.00 2 7673 \N +302251 2025-09-17 17:27:44.577111+00 2025-09-17 17:27:44.577118+00 f t TOTAL 78000.00 3 7673 \N +302252 2025-09-17 17:27:44.578261+00 2025-09-17 17:27:44.578314+00 f t ADELANTO 21500.00 4 7673 \N +311497 2025-09-20 18:51:07.030384+00 2025-09-20 18:51:07.030394+00 f t SUBTOTAL 0.00 1 7899 \N +311498 2025-09-20 18:51:07.032532+00 2025-09-20 18:51:07.032539+00 f t DESCUENTO 0.00 2 7899 \N +311499 2025-09-20 18:51:07.034019+00 2025-09-20 18:51:07.034026+00 f t TOTAL 0.00 3 7899 \N +311500 2025-09-20 18:51:07.035582+00 2025-09-20 18:51:07.035589+00 f t ADELANTO 0.00 4 7899 \N +302265 2025-09-17 17:37:46.66341+00 2025-09-17 17:37:46.663421+00 f t SUBTOTAL 0.00 1 7674 \N +302266 2025-09-17 17:37:46.665589+00 2025-09-17 17:37:46.665599+00 f t DESCUENTO 0.00 2 7674 \N +302267 2025-09-17 17:37:46.666902+00 2025-09-17 17:37:46.666911+00 f t TOTAL 0.00 3 7674 \N +302268 2025-09-17 17:37:46.668473+00 2025-09-17 17:37:46.668481+00 f t ADELANTO 0.00 4 7674 \N +311993 2025-09-20 22:50:16.279347+00 2025-09-20 22:50:16.27936+00 f t SUBTOTAL 78000.00 1 7910 \N +311994 2025-09-20 22:50:16.28226+00 2025-09-20 22:50:16.282272+00 f t DESCUENTO 0.00 2 7910 \N +311995 2025-09-20 22:50:16.284239+00 2025-09-20 22:50:16.28425+00 f t TOTAL 78000.00 3 7910 \N +311996 2025-09-20 22:50:16.286092+00 2025-09-20 22:50:16.286104+00 f t ADELANTO 13000.00 4 7910 \N +302309 2025-09-17 18:03:18.959447+00 2025-09-17 18:03:18.959456+00 f t SUBTOTAL 54000.00 1 7675 \N +302310 2025-09-17 18:03:18.960909+00 2025-09-17 18:03:18.960915+00 f t DESCUENTO 0.00 2 7675 \N +302311 2025-09-17 18:03:18.962284+00 2025-09-17 18:03:18.96229+00 f t TOTAL 54000.00 3 7675 \N +302312 2025-09-17 18:03:18.963455+00 2025-09-17 18:03:18.963461+00 f t ADELANTO 13500.00 4 7675 \N +302337 2025-09-17 18:27:53.556244+00 2025-09-17 18:27:53.556257+00 f t SUBTOTAL 55000.00 1 7676 \N +302338 2025-09-17 18:27:53.558292+00 2025-09-17 18:27:53.558304+00 f t DESCUENTO 0.00 2 7676 \N +302339 2025-09-17 18:27:53.559958+00 2025-09-17 18:27:53.559969+00 f t TOTAL 55000.00 3 7676 \N +302340 2025-09-17 18:27:53.561438+00 2025-09-17 18:27:53.561447+00 f t ADELANTO 11000.00 4 7676 \N +306145 2025-09-18 22:58:05.723339+00 2025-09-18 22:58:05.723353+00 f t SUBTOTAL 0.00 1 7778 \N +306146 2025-09-18 22:58:05.724941+00 2025-09-18 22:58:05.724951+00 f t DESCUENTO 0.00 2 7778 \N +306147 2025-09-18 22:58:05.726252+00 2025-09-18 22:58:05.72626+00 f t TOTAL 0.00 3 7778 \N +306148 2025-09-18 22:58:05.727836+00 2025-09-18 22:58:05.727842+00 f t ADELANTO 0.00 4 7778 \N +302353 2025-09-17 18:28:12.277495+00 2025-09-17 18:28:12.277503+00 f t SUBTOTAL 0.00 1 7678 \N +302354 2025-09-17 18:28:12.279316+00 2025-09-17 18:28:12.279328+00 f t DESCUENTO 0.00 2 7678 \N +302355 2025-09-17 18:28:12.280756+00 2025-09-17 18:28:12.280765+00 f t TOTAL 0.00 3 7678 \N +302356 2025-09-17 18:28:12.281924+00 2025-09-17 18:28:12.28193+00 f t ADELANTO 0.00 4 7678 \N +302385 2025-09-17 18:30:35.338789+00 2025-09-17 18:30:35.338799+00 f t SUBTOTAL 147500.00 1 7677 \N +302386 2025-09-17 18:30:35.340685+00 2025-09-17 18:30:35.340692+00 f t DESCUENTO 0.00 2 7677 \N +302387 2025-09-17 18:30:35.342149+00 2025-09-17 18:30:35.342156+00 f t TOTAL 147500.00 3 7677 \N +302388 2025-09-17 18:30:35.343967+00 2025-09-17 18:30:35.343974+00 f t ADELANTO 87500.00 4 7677 \N +302409 2025-09-17 18:33:17.526092+00 2025-09-17 18:33:17.526102+00 f t SUBTOTAL 0.00 1 7680 \N +302410 2025-09-17 18:33:17.527774+00 2025-09-17 18:33:17.527781+00 f t DESCUENTO 0.00 2 7680 \N +302411 2025-09-17 18:33:17.529669+00 2025-09-17 18:33:17.529675+00 f t TOTAL 0.00 3 7680 \N +302412 2025-09-17 18:33:17.531067+00 2025-09-17 18:33:17.531076+00 f t ADELANTO 0.00 4 7680 \N +302425 2025-09-17 18:34:34.791084+00 2025-09-17 18:34:34.791098+00 f t SUBTOTAL 55000.00 1 7679 \N +302426 2025-09-17 18:34:34.793313+00 2025-09-17 18:34:34.793325+00 f t DESCUENTO 0.00 2 7679 \N +302427 2025-09-17 18:34:34.794987+00 2025-09-17 18:34:34.794998+00 f t TOTAL 55000.00 3 7679 \N +302428 2025-09-17 18:34:34.796499+00 2025-09-17 18:34:34.796508+00 f t ADELANTO 11000.00 4 7679 \N +302733 2025-09-17 19:37:53.539518+00 2025-09-17 19:37:53.539528+00 f t SUBTOTAL 0.00 1 7687 \N +302734 2025-09-17 19:37:53.541676+00 2025-09-17 19:37:53.541684+00 f t DESCUENTO 0.00 2 7687 \N +302735 2025-09-17 19:37:53.543044+00 2025-09-17 19:37:53.543051+00 f t TOTAL 0.00 3 7687 \N +302736 2025-09-17 19:37:53.544538+00 2025-09-17 19:37:53.544545+00 f t ADELANTO 0.00 4 7687 \N +302849 2025-09-17 20:18:50.086045+00 2025-09-17 20:18:50.086053+00 f t SUBTOTAL 46000.00 1 7690 \N +302850 2025-09-17 20:18:50.087717+00 2025-09-17 20:18:50.087724+00 f t DESCUENTO 0.00 2 7690 \N +302851 2025-09-17 20:18:50.089023+00 2025-09-17 20:18:50.089029+00 f t TOTAL 46000.00 3 7690 \N +302852 2025-09-17 20:18:50.09011+00 2025-09-17 20:18:50.090115+00 f t ADELANTO 11000.00 4 7690 \N +309961 2025-09-20 00:29:19.386855+00 2025-09-20 00:29:19.386868+00 f t SUBTOTAL 0.00 1 7867 \N +309962 2025-09-20 00:29:19.388547+00 2025-09-20 00:29:19.388553+00 f t DESCUENTO 0.00 2 7867 \N +309963 2025-09-20 00:29:19.390025+00 2025-09-20 00:29:19.390032+00 f t TOTAL 0.00 3 7867 \N +309964 2025-09-20 00:29:19.391346+00 2025-09-20 00:29:19.391351+00 f t ADELANTO 0.00 4 7867 \N +310277 2025-09-20 10:22:23.601201+00 2025-09-20 10:22:23.601209+00 f t SUBTOTAL 46000.00 1 7874 \N +310278 2025-09-20 10:22:23.603217+00 2025-09-20 10:22:23.603227+00 f t DESCUENTO 0.00 2 7874 \N +310279 2025-09-20 10:22:23.604669+00 2025-09-20 10:22:23.604678+00 f t TOTAL 46000.00 3 7874 \N +302477 2025-09-17 18:36:01.62033+00 2025-09-17 18:36:01.620343+00 f t SUBTOTAL 0.00 1 7681 \N +302478 2025-09-17 18:36:01.623031+00 2025-09-17 18:36:01.623044+00 f t DESCUENTO 0.00 2 7681 \N +302479 2025-09-17 18:36:01.625342+00 2025-09-17 18:36:01.625354+00 f t TOTAL 0.00 3 7681 \N +302480 2025-09-17 18:36:01.62746+00 2025-09-17 18:36:01.627473+00 f t ADELANTO 0.00 4 7681 \N +310280 2025-09-20 10:22:23.605854+00 2025-09-20 10:22:23.605862+00 f t ADELANTO 11000.00 4 7874 \N +302493 2025-09-17 18:40:06.332114+00 2025-09-17 18:40:06.332126+00 f t SUBTOTAL 70000.00 1 7682 \N +302494 2025-09-17 18:40:06.346584+00 2025-09-17 18:40:06.346596+00 f t DESCUENTO 0.00 2 7682 \N +302495 2025-09-17 18:40:06.350655+00 2025-09-17 18:40:06.350667+00 f t TOTAL 70000.00 3 7682 \N +302496 2025-09-17 18:40:06.371361+00 2025-09-17 18:40:06.371388+00 f t ADELANTO 19000.00 4 7682 \N +310881 2025-09-20 13:26:44.066379+00 2025-09-20 13:26:44.066388+00 f t SUBTOTAL 55000.00 1 7882 \N +310882 2025-09-20 13:26:44.068404+00 2025-09-20 13:26:44.068415+00 f t DESCUENTO 0.00 2 7882 \N +310883 2025-09-20 13:26:44.070035+00 2025-09-20 13:26:44.070042+00 f t TOTAL 55000.00 3 7882 \N +310884 2025-09-20 13:26:44.071558+00 2025-09-20 13:26:44.071567+00 f t ADELANTO 11000.00 4 7882 \N +304273 2025-09-18 10:39:04.075379+00 2025-09-18 10:39:04.075394+00 f t SUBTOTAL 68000.00 1 7725 \N +304274 2025-09-18 10:39:04.078783+00 2025-09-18 10:39:04.078797+00 f t DESCUENTO 0.00 2 7725 \N +304275 2025-09-18 10:39:04.083171+00 2025-09-18 10:39:04.083185+00 f t TOTAL 68000.00 3 7725 \N +304276 2025-09-18 10:39:04.090764+00 2025-09-18 10:39:04.09078+00 f t ADELANTO 13000.00 4 7725 \N +311341 2025-09-20 18:19:16.182084+00 2025-09-20 18:19:16.182094+00 f t SUBTOTAL 0.00 1 7897 \N +311342 2025-09-20 18:19:16.183697+00 2025-09-20 18:19:16.183705+00 f t DESCUENTO 0.00 2 7897 \N +311343 2025-09-20 18:19:16.185204+00 2025-09-20 18:19:16.185213+00 f t TOTAL 0.00 3 7897 \N +311344 2025-09-20 18:19:16.186604+00 2025-09-20 18:19:16.186611+00 f t ADELANTO 0.00 4 7897 \N +304897 2025-09-18 16:35:26.941898+00 2025-09-18 16:35:26.94191+00 f t SUBTOTAL 76000.00 1 7748 \N +304898 2025-09-18 16:35:26.943673+00 2025-09-18 16:35:26.94368+00 f t DESCUENTO 0.00 2 7748 \N +304899 2025-09-18 16:35:26.944863+00 2025-09-18 16:35:26.944869+00 f t TOTAL 76000.00 3 7748 \N +304900 2025-09-18 16:35:26.946104+00 2025-09-18 16:35:26.946111+00 f t ADELANTO 11000.00 4 7748 \N +318389 2025-09-22 23:29:06.755211+00 2025-09-22 23:29:06.755217+00 f t SUBTOTAL 54000.00 1 8045 \N +318390 2025-09-22 23:29:06.756893+00 2025-09-22 23:29:06.756901+00 f t DESCUENTO 0.00 2 8045 \N +318391 2025-09-22 23:29:06.75805+00 2025-09-22 23:29:06.758055+00 f t TOTAL 54000.00 3 8045 \N +318392 2025-09-22 23:29:06.759163+00 2025-09-22 23:29:06.75917+00 f t ADELANTO 13500.00 4 8045 \N +311505 2025-09-20 18:55:52.604361+00 2025-09-20 18:55:52.60437+00 f t SUBTOTAL 0.00 1 7900 \N +311506 2025-09-20 18:55:52.605808+00 2025-09-20 18:55:52.605816+00 f t DESCUENTO 0.00 2 7900 \N +311507 2025-09-20 18:55:52.607119+00 2025-09-20 18:55:52.607126+00 f t TOTAL 0.00 3 7900 \N +311508 2025-09-20 18:55:52.608492+00 2025-09-20 18:55:52.608502+00 f t ADELANTO 0.00 4 7900 \N +318761 2025-09-23 01:50:12.935322+00 2025-09-23 01:50:12.935335+00 f t SUBTOTAL 0.00 1 8058 \N +318762 2025-09-23 01:50:12.938623+00 2025-09-23 01:50:12.938635+00 f t DESCUENTO 0.00 2 8058 \N +318763 2025-09-23 01:50:12.940793+00 2025-09-23 01:50:12.940804+00 f t TOTAL 0.00 3 8058 \N +318764 2025-09-23 01:50:12.943003+00 2025-09-23 01:50:12.943015+00 f t ADELANTO 0.00 4 8058 \N +318849 2025-09-23 05:48:59.552803+00 2025-09-23 05:48:59.552811+00 f t SUBTOTAL 68000.00 1 8060 \N +318850 2025-09-23 05:48:59.554797+00 2025-09-23 05:48:59.554805+00 f t DESCUENTO 0.00 2 8060 \N +318851 2025-09-23 05:48:59.55622+00 2025-09-23 05:48:59.556226+00 f t TOTAL 68000.00 3 8060 \N +318852 2025-09-23 05:48:59.557345+00 2025-09-23 05:48:59.557351+00 f t ADELANTO 13000.00 4 8060 \N +312873 2025-09-21 14:26:35.193517+00 2025-09-21 14:26:35.193526+00 f t SUBTOTAL 54000.00 1 7929 \N +312874 2025-09-21 14:26:35.195265+00 2025-09-21 14:26:35.195271+00 f t DESCUENTO 0.00 2 7929 \N +312875 2025-09-21 14:26:35.196296+00 2025-09-21 14:26:35.196301+00 f t TOTAL 54000.00 3 7929 \N +312876 2025-09-21 14:26:35.197252+00 2025-09-21 14:26:35.197258+00 f t ADELANTO 13500.00 4 7929 \N +313433 2025-09-21 16:05:42.695497+00 2025-09-21 16:05:42.695504+00 f t SUBTOTAL 55000.00 1 7939 \N +313434 2025-09-21 16:05:42.697149+00 2025-09-21 16:05:42.697155+00 f t DESCUENTO 0.00 2 7939 \N +313435 2025-09-21 16:05:42.698279+00 2025-09-21 16:05:42.698284+00 f t TOTAL 55000.00 3 7939 \N +313436 2025-09-21 16:05:42.699266+00 2025-09-21 16:05:42.699272+00 f t ADELANTO 11000.00 4 7939 \N +313881 2025-09-21 19:33:41.652435+00 2025-09-21 19:33:41.652444+00 f t SUBTOTAL 88000.00 1 7927 \N +313882 2025-09-21 19:33:41.654424+00 2025-09-21 19:33:41.65443+00 f t DESCUENTO 0.00 2 7927 \N +313883 2025-09-21 19:33:41.655717+00 2025-09-21 19:33:41.655723+00 f t TOTAL 88000.00 3 7927 \N +313884 2025-09-21 19:33:41.657204+00 2025-09-21 19:33:41.657211+00 f t ADELANTO 19500.00 4 7927 \N +307477 2025-09-19 14:20:51.465987+00 2025-09-19 14:20:51.466+00 f t SUBTOTAL 46000.00 1 7808 \N +307478 2025-09-19 14:20:51.468504+00 2025-09-19 14:20:51.468517+00 f t DESCUENTO 0.00 2 7808 \N +307479 2025-09-19 14:20:51.470615+00 2025-09-19 14:20:51.470626+00 f t TOTAL 46000.00 3 7808 \N +307480 2025-09-19 14:20:51.472586+00 2025-09-19 14:20:51.472597+00 f t ADELANTO 11000.00 4 7808 \N +307481 2025-09-19 14:20:55.549052+00 2025-09-19 14:20:55.54906+00 f t SUBTOTAL 75000.00 1 7807 \N +307482 2025-09-19 14:20:55.550668+00 2025-09-19 14:20:55.550675+00 f t DESCUENTO 0.00 2 7807 \N +307483 2025-09-19 14:20:55.552054+00 2025-09-19 14:20:55.552061+00 f t TOTAL 75000.00 3 7807 \N +307484 2025-09-19 14:20:55.553592+00 2025-09-19 14:20:55.553599+00 f t ADELANTO 15000.00 4 7807 \N +307489 2025-09-19 14:21:01.073603+00 2025-09-19 14:21:01.073617+00 f t SUBTOTAL 0.00 1 7809 \N +307490 2025-09-19 14:21:01.075987+00 2025-09-19 14:21:01.075999+00 f t DESCUENTO 0.00 2 7809 \N +307491 2025-09-19 14:21:01.078746+00 2025-09-19 14:21:01.078756+00 f t TOTAL 0.00 3 7809 \N +307492 2025-09-19 14:21:01.080996+00 2025-09-19 14:21:01.081005+00 f t ADELANTO 0.00 4 7809 \N +309849 2025-09-19 23:36:59.052634+00 2025-09-19 23:36:59.052645+00 f t SUBTOTAL 0.00 1 7862 \N +309850 2025-09-19 23:36:59.054691+00 2025-09-19 23:36:59.054699+00 f t DESCUENTO 0.00 2 7862 \N +309851 2025-09-19 23:36:59.055928+00 2025-09-19 23:36:59.055934+00 f t TOTAL 0.00 3 7862 \N +309852 2025-09-19 23:36:59.057201+00 2025-09-19 23:36:59.057209+00 f t ADELANTO 0.00 4 7862 \N +316993 2025-09-22 15:57:20.553218+00 2025-09-22 15:57:20.553228+00 f t SUBTOTAL 0.00 1 8012 \N +316994 2025-09-22 15:57:20.554776+00 2025-09-22 15:57:20.554783+00 f t DESCUENTO 0.00 2 8012 \N +316995 2025-09-22 15:57:20.556362+00 2025-09-22 15:57:20.556372+00 f t TOTAL 0.00 3 8012 \N +316996 2025-09-22 15:57:20.557883+00 2025-09-22 15:57:20.557892+00 f t ADELANTO 0.00 4 8012 \N +347397 2025-10-02 22:11:10.158506+00 2025-10-02 22:11:10.158515+00 f t SUBTOTAL 78000.00 1 8749 \N +347398 2025-10-02 22:11:10.160416+00 2025-10-02 22:11:10.160425+00 f t DESCUENTO 0.00 2 8749 \N +347399 2025-10-02 22:11:10.161568+00 2025-10-02 22:11:10.161573+00 f t TOTAL 78000.00 3 8749 \N +347400 2025-10-02 22:11:10.162466+00 2025-10-02 22:11:10.162471+00 f t ADELANTO 21500.00 4 8749 \N +332325 2025-09-27 14:22:58.50334+00 2025-09-27 14:22:58.503354+00 f t SUBTOTAL 130400.00 1 8395 \N +332326 2025-09-27 14:22:58.505523+00 2025-09-27 14:22:58.505536+00 f t DESCUENTO 0.00 2 8395 \N +332327 2025-09-27 14:22:58.507218+00 2025-09-27 14:22:58.50723+00 f t TOTAL 130400.00 3 8395 \N +332328 2025-09-27 14:22:58.509027+00 2025-09-27 14:22:58.509037+00 f t ADELANTO 68400.00 4 8395 \N +317705 2025-09-22 20:03:36.954137+00 2025-09-22 20:03:36.954146+00 f t SUBTOTAL 30000.00 1 8033 \N +317706 2025-09-22 20:03:36.955861+00 2025-09-22 20:03:36.95587+00 f t DESCUENTO 0.00 2 8033 \N +317707 2025-09-22 20:03:36.956946+00 2025-09-22 20:03:36.956951+00 f t TOTAL 30000.00 3 8033 \N +317708 2025-09-22 20:03:36.95793+00 2025-09-22 20:03:36.957935+00 f t ADELANTO 30000.00 4 8033 \N +310781 2025-09-20 12:20:16.105389+00 2025-09-20 12:20:16.105399+00 f t SUBTOTAL 54000.00 1 7879 \N +310782 2025-09-20 12:20:16.107543+00 2025-09-20 12:20:16.107552+00 f t DESCUENTO 0.00 2 7879 \N +310783 2025-09-20 12:20:16.109216+00 2025-09-20 12:20:16.109226+00 f t TOTAL 54000.00 3 7879 \N +310784 2025-09-20 12:20:16.110819+00 2025-09-20 12:20:16.110826+00 f t ADELANTO 13500.00 4 7879 \N +310889 2025-09-20 13:33:49.202876+00 2025-09-20 13:33:49.202885+00 f t SUBTOTAL 0.00 1 7883 \N +310890 2025-09-20 13:33:49.204266+00 2025-09-20 13:33:49.204274+00 f t DESCUENTO 0.00 2 7883 \N +310891 2025-09-20 13:33:49.205586+00 2025-09-20 13:33:49.205593+00 f t TOTAL 0.00 3 7883 \N +307553 2025-09-19 14:43:47.203318+00 2025-09-19 14:43:47.203329+00 f t SUBTOTAL 68000.00 1 7810 \N +307554 2025-09-19 14:43:47.205167+00 2025-09-19 14:43:47.205178+00 f t DESCUENTO 0.00 2 7810 \N +307555 2025-09-19 14:43:47.206866+00 2025-09-19 14:43:47.206875+00 f t TOTAL 68000.00 3 7810 \N +307556 2025-09-19 14:43:47.20866+00 2025-09-19 14:43:47.208667+00 f t ADELANTO 13000.00 4 7810 \N +310892 2025-09-20 13:33:49.206644+00 2025-09-20 13:33:49.20665+00 f t ADELANTO 0.00 4 7883 \N +307569 2025-09-19 14:50:59.54671+00 2025-09-19 14:50:59.546722+00 f t SUBTOTAL 0.00 1 7811 \N +307570 2025-09-19 14:50:59.549219+00 2025-09-19 14:50:59.549229+00 f t DESCUENTO 0.00 2 7811 \N +307571 2025-09-19 14:50:59.551239+00 2025-09-19 14:50:59.551249+00 f t TOTAL 0.00 3 7811 \N +307572 2025-09-19 14:50:59.553032+00 2025-09-19 14:50:59.553044+00 f t ADELANTO 0.00 4 7811 \N +307577 2025-09-19 15:08:29.151648+00 2025-09-19 15:08:29.151658+00 f t SUBTOTAL 0.00 1 7812 \N +307578 2025-09-19 15:08:29.153159+00 2025-09-19 15:08:29.153167+00 f t DESCUENTO 0.00 2 7812 \N +307579 2025-09-19 15:08:29.154247+00 2025-09-19 15:08:29.154253+00 f t TOTAL 0.00 3 7812 \N +307580 2025-09-19 15:08:29.155279+00 2025-09-19 15:08:29.155285+00 f t ADELANTO 0.00 4 7812 \N +311513 2025-09-20 19:06:41.808611+00 2025-09-20 19:06:41.808619+00 f t SUBTOTAL 0.00 1 7901 \N +311514 2025-09-20 19:06:41.810059+00 2025-09-20 19:06:41.810067+00 f t DESCUENTO 0.00 2 7901 \N +311515 2025-09-20 19:06:41.811323+00 2025-09-20 19:06:41.81133+00 f t TOTAL 0.00 3 7901 \N +311516 2025-09-20 19:06:41.812342+00 2025-09-20 19:06:41.812348+00 f t ADELANTO 0.00 4 7901 \N +311597 2025-09-20 19:49:26.622309+00 2025-09-20 19:49:26.622318+00 f t SUBTOTAL 119400.00 1 7903 \N +311598 2025-09-20 19:49:26.624858+00 2025-09-20 19:49:26.624866+00 f t DESCUENTO 0.00 2 7903 \N +311599 2025-09-20 19:49:26.62613+00 2025-09-20 19:49:26.626136+00 f t TOTAL 119400.00 3 7903 \N +311600 2025-09-20 19:49:26.627243+00 2025-09-20 19:49:26.627248+00 f t ADELANTO 57400.00 4 7903 \N +307621 2025-09-19 15:14:18.609688+00 2025-09-19 15:14:18.609699+00 f t SUBTOTAL 54000.00 1 7813 \N +307622 2025-09-19 15:14:18.611483+00 2025-09-19 15:14:18.611491+00 f t DESCUENTO 0.00 2 7813 \N +307623 2025-09-19 15:14:18.613003+00 2025-09-19 15:14:18.613009+00 f t TOTAL 54000.00 3 7813 \N +307624 2025-09-19 15:14:18.614196+00 2025-09-19 15:14:18.614201+00 f t ADELANTO 13500.00 4 7813 \N +318933 2025-09-23 06:47:01.891061+00 2025-09-23 06:47:01.891072+00 f t SUBTOTAL 55000.00 1 8061 \N +318934 2025-09-23 06:47:01.89338+00 2025-09-23 06:47:01.893389+00 f t DESCUENTO 0.00 2 8061 \N +318935 2025-09-23 06:47:01.895482+00 2025-09-23 06:47:01.89549+00 f t TOTAL 55000.00 3 8061 \N +318936 2025-09-23 06:47:01.897009+00 2025-09-23 06:47:01.897016+00 f t ADELANTO 11000.00 4 8061 \N +312881 2025-09-21 14:38:40.895567+00 2025-09-21 14:38:40.89558+00 f t SUBTOTAL 0.00 1 7930 \N +312882 2025-09-21 14:38:40.897303+00 2025-09-21 14:38:40.897314+00 f t DESCUENTO 0.00 2 7930 \N +312883 2025-09-21 14:38:40.898916+00 2025-09-21 14:38:40.898925+00 f t TOTAL 0.00 3 7930 \N +307681 2025-09-19 15:27:04.269938+00 2025-09-19 15:27:04.26995+00 f t SUBTOTAL 87400.00 1 7814 \N +307682 2025-09-19 15:27:04.27218+00 2025-09-19 15:27:04.272195+00 f t DESCUENTO 0.00 2 7814 \N +307683 2025-09-19 15:27:04.274165+00 2025-09-19 15:27:04.274175+00 f t TOTAL 87400.00 3 7814 \N +307684 2025-09-19 15:27:04.275789+00 2025-09-19 15:27:04.275799+00 f t ADELANTO 46900.00 4 7814 \N +312884 2025-09-21 14:38:40.900348+00 2025-09-21 14:38:40.900356+00 f t ADELANTO 0.00 4 7930 \N +313677 2025-09-21 19:21:29.206353+00 2025-09-21 19:21:29.206361+00 f t SUBTOTAL 0.00 1 7948 \N +313678 2025-09-21 19:21:29.208443+00 2025-09-21 19:21:29.208451+00 f t DESCUENTO 0.00 2 7948 \N +313679 2025-09-21 19:21:29.209678+00 2025-09-21 19:21:29.209688+00 f t TOTAL 0.00 3 7948 \N +313680 2025-09-21 19:21:29.210761+00 2025-09-21 19:21:29.210767+00 f t ADELANTO 0.00 4 7948 \N +313781 2025-09-21 19:24:35.239458+00 2025-09-21 19:24:35.239467+00 f t SUBTOTAL 46000.00 1 7950 \N +313782 2025-09-21 19:24:35.241116+00 2025-09-21 19:24:35.241122+00 f t DESCUENTO 0.00 2 7950 \N +313783 2025-09-21 19:24:35.242226+00 2025-09-21 19:24:35.242232+00 f t TOTAL 46000.00 3 7950 \N +313784 2025-09-21 19:24:35.243278+00 2025-09-21 19:24:35.243283+00 f t ADELANTO 11000.00 4 7950 \N +313837 2025-09-21 19:31:14.831225+00 2025-09-21 19:31:14.831234+00 f t SUBTOTAL 46000.00 1 7951 \N +313838 2025-09-21 19:31:14.833101+00 2025-09-21 19:31:14.833111+00 f t DESCUENTO 0.00 2 7951 \N +313839 2025-09-21 19:31:14.834611+00 2025-09-21 19:31:14.834619+00 f t TOTAL 46000.00 3 7951 \N +313840 2025-09-21 19:31:14.83702+00 2025-09-21 19:31:14.83703+00 f t ADELANTO 11000.00 4 7951 \N +307777 2025-09-19 15:38:56.445603+00 2025-09-19 15:38:56.445617+00 f t SUBTOTAL 171000.00 1 7815 \N +307778 2025-09-19 15:38:56.447741+00 2025-09-19 15:38:56.447751+00 f t DESCUENTO 0.00 2 7815 \N +307779 2025-09-19 15:38:56.449664+00 2025-09-19 15:38:56.449675+00 f t TOTAL 171000.00 3 7815 \N +307780 2025-09-19 15:38:56.451441+00 2025-09-19 15:38:56.45145+00 f t ADELANTO 71000.00 4 7815 \N +316853 2025-09-22 15:20:30.571305+00 2025-09-22 15:20:30.571313+00 f t SUBTOTAL 46000.00 1 8001 \N +316854 2025-09-22 15:20:30.573071+00 2025-09-22 15:20:30.573078+00 f t DESCUENTO 0.00 2 8001 \N +316855 2025-09-22 15:20:30.575281+00 2025-09-22 15:20:30.575287+00 f t TOTAL 46000.00 3 8001 \N +316856 2025-09-22 15:20:30.576386+00 2025-09-22 15:20:30.576393+00 f t ADELANTO 11000.00 4 8001 \N +317217 2025-09-22 16:42:41.573029+00 2025-09-22 16:42:41.573038+00 f t SUBTOTAL 0.00 1 8018 \N +317218 2025-09-22 16:42:41.57538+00 2025-09-22 16:42:41.575388+00 f t DESCUENTO 0.00 2 8018 \N +317219 2025-09-22 16:42:41.576894+00 2025-09-22 16:42:41.5769+00 f t TOTAL 0.00 3 8018 \N +317220 2025-09-22 16:42:41.57806+00 2025-09-22 16:42:41.578066+00 f t ADELANTO 0.00 4 8018 \N +307805 2025-09-19 15:57:12.434735+00 2025-09-19 15:57:12.434744+00 f t SUBTOTAL 55000.00 1 7816 \N +307806 2025-09-19 15:57:12.436553+00 2025-09-19 15:57:12.43656+00 f t DESCUENTO 0.00 2 7816 \N +307807 2025-09-19 15:57:12.437818+00 2025-09-19 15:57:12.437827+00 f t TOTAL 55000.00 3 7816 \N +307808 2025-09-19 15:57:12.439009+00 2025-09-19 15:57:12.439014+00 f t ADELANTO 11000.00 4 7816 \N +307813 2025-09-19 16:12:38.047406+00 2025-09-19 16:12:38.047415+00 f t SUBTOTAL 0.00 1 7817 \N +307814 2025-09-19 16:12:38.048627+00 2025-09-19 16:12:38.048634+00 f t DESCUENTO 0.00 2 7817 \N +307815 2025-09-19 16:12:38.049665+00 2025-09-19 16:12:38.049671+00 f t TOTAL 0.00 3 7817 \N +307816 2025-09-19 16:12:38.050544+00 2025-09-19 16:12:38.050549+00 f t ADELANTO 0.00 4 7817 \N +307841 2025-09-19 16:19:04.470146+00 2025-09-19 16:19:04.470154+00 f t SUBTOTAL 75000.00 1 7818 \N +307842 2025-09-19 16:19:04.471908+00 2025-09-19 16:19:04.471916+00 f t DESCUENTO 0.00 2 7818 \N +307843 2025-09-19 16:19:04.4732+00 2025-09-19 16:19:04.473206+00 f t TOTAL 75000.00 3 7818 \N +307844 2025-09-19 16:19:04.474598+00 2025-09-19 16:19:04.474605+00 f t ADELANTO 15000.00 4 7818 \N +325613 2025-09-25 11:43:49.403699+00 2025-09-25 11:43:49.403711+00 f t SUBTOTAL 46000.00 1 8223 \N +325614 2025-09-25 11:43:49.405994+00 2025-09-25 11:43:49.406006+00 f t DESCUENTO 0.00 2 8223 \N +325615 2025-09-25 11:43:49.407511+00 2025-09-25 11:43:49.407518+00 f t TOTAL 46000.00 3 8223 \N +325616 2025-09-25 11:43:49.409254+00 2025-09-25 11:43:49.409261+00 f t ADELANTO 11000.00 4 8223 \N +311257 2025-09-20 16:32:28.604681+00 2025-09-20 16:32:28.60469+00 f t SUBTOTAL 55000.00 1 7893 \N +311258 2025-09-20 16:32:28.606782+00 2025-09-20 16:32:28.606794+00 f t DESCUENTO 0.00 2 7893 \N +311259 2025-09-20 16:32:28.608516+00 2025-09-20 16:32:28.60853+00 f t TOTAL 55000.00 3 7893 \N +311260 2025-09-20 16:32:28.610203+00 2025-09-20 16:32:28.610211+00 f t ADELANTO 11000.00 4 7893 \N +311521 2025-09-20 19:07:44.441756+00 2025-09-20 19:07:44.44177+00 f t SUBTOTAL 0.00 1 7902 \N +311522 2025-09-20 19:07:44.44353+00 2025-09-20 19:07:44.44354+00 f t DESCUENTO 0.00 2 7902 \N +311523 2025-09-20 19:07:44.445172+00 2025-09-20 19:07:44.44518+00 f t TOTAL 0.00 3 7902 \N +311524 2025-09-20 19:07:44.446401+00 2025-09-20 19:07:44.446407+00 f t ADELANTO 0.00 4 7902 \N +318941 2025-09-23 07:42:18.499046+00 2025-09-23 07:42:18.499054+00 f t SUBTOTAL 0.00 1 8062 \N +311853 2025-09-20 22:26:48.498637+00 2025-09-20 22:26:48.498644+00 f t SUBTOTAL 46000.00 1 7908 \N +311854 2025-09-20 22:26:48.500402+00 2025-09-20 22:26:48.500412+00 f t DESCUENTO 0.00 2 7908 \N +311855 2025-09-20 22:26:48.502709+00 2025-09-20 22:26:48.502718+00 f t TOTAL 46000.00 3 7908 \N +311856 2025-09-20 22:26:48.504127+00 2025-09-20 22:26:48.504135+00 f t ADELANTO 11000.00 4 7908 \N +312161 2025-09-21 00:41:20.726152+00 2025-09-21 00:41:20.726161+00 f t SUBTOTAL 55000.00 1 7913 \N +312162 2025-09-21 00:41:20.728449+00 2025-09-21 00:41:20.728457+00 f t DESCUENTO 0.00 2 7913 \N +312163 2025-09-21 00:41:20.729877+00 2025-09-21 00:41:20.729886+00 f t TOTAL 55000.00 3 7913 \N +312164 2025-09-21 00:41:20.731231+00 2025-09-21 00:41:20.731236+00 f t ADELANTO 11000.00 4 7913 \N +307961 2025-09-19 16:33:02.818108+00 2025-09-19 16:33:02.818118+00 f t SUBTOTAL 78000.00 1 7819 \N +307962 2025-09-19 16:33:02.820968+00 2025-09-19 16:33:02.820981+00 f t DESCUENTO 0.00 2 7819 \N +307963 2025-09-19 16:33:02.822344+00 2025-09-19 16:33:02.82236+00 f t TOTAL 78000.00 3 7819 \N +307964 2025-09-19 16:33:02.824057+00 2025-09-19 16:33:02.824066+00 f t ADELANTO 21500.00 4 7819 \N +307969 2025-09-19 16:36:37.552677+00 2025-09-19 16:36:37.552686+00 f t SUBTOTAL 0.00 1 7820 \N +307970 2025-09-19 16:36:37.553957+00 2025-09-19 16:36:37.553964+00 f t DESCUENTO 0.00 2 7820 \N +307971 2025-09-19 16:36:37.555199+00 2025-09-19 16:36:37.555205+00 f t TOTAL 0.00 3 7820 \N +307972 2025-09-19 16:36:37.556344+00 2025-09-19 16:36:37.556349+00 f t ADELANTO 0.00 4 7820 \N +307977 2025-09-19 16:37:20.484761+00 2025-09-19 16:37:20.484771+00 f t SUBTOTAL 78000.00 1 7762 \N +307978 2025-09-19 16:37:20.487241+00 2025-09-19 16:37:20.487248+00 f t DESCUENTO 0.00 2 7762 \N +307979 2025-09-19 16:37:20.488408+00 2025-09-19 16:37:20.488414+00 f t TOTAL 78000.00 3 7762 \N +307980 2025-09-19 16:37:20.489327+00 2025-09-19 16:37:20.489332+00 f t ADELANTO 21500.00 4 7762 \N +313013 2025-09-21 15:26:12.712924+00 2025-09-21 15:26:12.712935+00 f t SUBTOTAL 55000.00 1 7932 \N +313014 2025-09-21 15:26:12.714971+00 2025-09-21 15:26:12.714979+00 f t DESCUENTO 0.00 2 7932 \N +313015 2025-09-21 15:26:12.716478+00 2025-09-21 15:26:12.716487+00 f t TOTAL 55000.00 3 7932 \N +313016 2025-09-21 15:26:12.717804+00 2025-09-21 15:26:12.717811+00 f t ADELANTO 11000.00 4 7932 \N +308005 2025-09-19 16:46:40.620008+00 2025-09-19 16:46:40.62002+00 f t SUBTOTAL 65000.00 1 7821 \N +308006 2025-09-19 16:46:40.622077+00 2025-09-19 16:46:40.622084+00 f t DESCUENTO 0.00 2 7821 \N +308007 2025-09-19 16:46:40.623763+00 2025-09-19 16:46:40.623773+00 f t TOTAL 65000.00 3 7821 \N +308008 2025-09-19 16:46:40.625314+00 2025-09-19 16:46:40.62532+00 f t ADELANTO 15000.00 4 7821 \N +308029 2025-09-19 16:58:01.125298+00 2025-09-19 16:58:01.125307+00 f t SUBTOTAL 0.00 1 7822 \N +308030 2025-09-19 16:58:01.127554+00 2025-09-19 16:58:01.127561+00 f t DESCUENTO 0.00 2 7822 \N +308031 2025-09-19 16:58:01.129223+00 2025-09-19 16:58:01.129233+00 f t TOTAL 0.00 3 7822 \N +308032 2025-09-19 16:58:01.130806+00 2025-09-19 16:58:01.130816+00 f t ADELANTO 0.00 4 7822 \N +313629 2025-09-21 19:19:34.720043+00 2025-09-21 19:19:34.720052+00 f t SUBTOTAL 0.00 1 7947 \N +313630 2025-09-21 19:19:34.721457+00 2025-09-21 19:19:34.721463+00 f t DESCUENTO 0.00 2 7947 \N +313631 2025-09-21 19:19:34.722559+00 2025-09-21 19:19:34.722567+00 f t TOTAL 0.00 3 7947 \N +313632 2025-09-21 19:19:34.72381+00 2025-09-21 19:19:34.723815+00 f t ADELANTO 0.00 4 7947 \N +308057 2025-09-19 17:00:02.068298+00 2025-09-19 17:00:02.068312+00 f t SUBTOTAL 68000.00 1 7823 \N +308058 2025-09-19 17:00:02.072852+00 2025-09-19 17:00:02.072869+00 f t DESCUENTO 0.00 2 7823 \N +308059 2025-09-19 17:00:02.08482+00 2025-09-19 17:00:02.084835+00 f t TOTAL 68000.00 3 7823 \N +308060 2025-09-19 17:00:02.087655+00 2025-09-19 17:00:02.08767+00 f t ADELANTO 13000.00 4 7823 \N +308065 2025-09-19 17:15:00.834395+00 2025-09-19 17:15:00.834408+00 f t SUBTOTAL 0.00 1 7824 \N +308066 2025-09-19 17:15:00.836631+00 2025-09-19 17:15:00.83664+00 f t DESCUENTO 0.00 2 7824 \N +308067 2025-09-19 17:15:00.838679+00 2025-09-19 17:15:00.838691+00 f t TOTAL 0.00 3 7824 \N +308068 2025-09-19 17:15:00.8405+00 2025-09-19 17:15:00.840512+00 f t ADELANTO 0.00 4 7824 \N +308073 2025-09-19 17:16:22.266567+00 2025-09-19 17:16:22.266577+00 f t SUBTOTAL 0.00 1 7825 \N +308074 2025-09-19 17:16:22.268469+00 2025-09-19 17:16:22.268476+00 f t DESCUENTO 0.00 2 7825 \N +308075 2025-09-19 17:16:22.270107+00 2025-09-19 17:16:22.270115+00 f t TOTAL 0.00 3 7825 \N +308076 2025-09-19 17:16:22.27129+00 2025-09-19 17:16:22.271296+00 f t ADELANTO 0.00 4 7825 \N +308081 2025-09-19 17:29:01.612631+00 2025-09-19 17:29:01.612642+00 f t SUBTOTAL 0.00 1 7826 \N +308082 2025-09-19 17:29:01.614687+00 2025-09-19 17:29:01.614697+00 f t DESCUENTO 0.00 2 7826 \N +308083 2025-09-19 17:29:01.616613+00 2025-09-19 17:29:01.616624+00 f t TOTAL 0.00 3 7826 \N +308084 2025-09-19 17:29:01.618415+00 2025-09-19 17:29:01.618425+00 f t ADELANTO 0.00 4 7826 \N +317321 2025-09-22 16:58:28.550193+00 2025-09-22 16:58:28.550203+00 f t SUBTOTAL 114000.00 1 8020 \N +317322 2025-09-22 16:58:28.552017+00 2025-09-22 16:58:28.552025+00 f t DESCUENTO 0.00 2 8020 \N +317323 2025-09-22 16:58:28.553424+00 2025-09-22 16:58:28.553429+00 f t TOTAL 114000.00 3 8020 \N +317324 2025-09-22 16:58:28.554619+00 2025-09-22 16:58:28.554624+00 f t ADELANTO 24000.00 4 8020 \N +324805 2025-09-25 03:33:41.974684+00 2025-09-25 03:33:41.974697+00 f t SUBTOTAL 0.00 1 8213 \N +324806 2025-09-25 03:33:41.977191+00 2025-09-25 03:33:41.977201+00 f t DESCUENTO 0.00 2 8213 \N +324807 2025-09-25 03:33:41.978577+00 2025-09-25 03:33:41.978584+00 f t TOTAL 0.00 3 8213 \N +324808 2025-09-25 03:33:41.979988+00 2025-09-25 03:33:41.979996+00 f t ADELANTO 0.00 4 8213 \N +318501 2025-09-22 23:39:47.26725+00 2025-09-22 23:39:47.267259+00 f t SUBTOTAL 0.00 1 8048 \N +318502 2025-09-22 23:39:47.271442+00 2025-09-22 23:39:47.271449+00 f t DESCUENTO 0.00 2 8048 \N +318503 2025-09-22 23:39:47.272722+00 2025-09-22 23:39:47.272727+00 f t TOTAL 0.00 3 8048 \N +318504 2025-09-22 23:39:47.274106+00 2025-09-22 23:39:47.274112+00 f t ADELANTO 0.00 4 8048 \N +326189 2025-09-25 15:57:50.20695+00 2025-09-25 15:57:50.206959+00 f t SUBTOTAL 78000.00 1 8243 \N +326190 2025-09-25 15:57:50.208839+00 2025-09-25 15:57:50.208845+00 f t DESCUENTO 0.00 2 8243 \N +326191 2025-09-25 15:57:50.209882+00 2025-09-25 15:57:50.209889+00 f t TOTAL 78000.00 3 8243 \N +326192 2025-09-25 15:57:50.211005+00 2025-09-25 15:57:50.21101+00 f t ADELANTO 13000.00 4 8243 \N +311685 2025-09-20 20:29:15.068429+00 2025-09-20 20:29:15.068437+00 f t SUBTOTAL 46000.00 1 7904 \N +311686 2025-09-20 20:29:15.070578+00 2025-09-20 20:29:15.070587+00 f t DESCUENTO 0.00 2 7904 \N +311687 2025-09-20 20:29:15.072146+00 2025-09-20 20:29:15.072157+00 f t TOTAL 46000.00 3 7904 \N +311688 2025-09-20 20:29:15.07378+00 2025-09-20 20:29:15.07379+00 f t ADELANTO 11000.00 4 7904 \N +318942 2025-09-23 07:42:18.500609+00 2025-09-23 07:42:18.500615+00 f t DESCUENTO 0.00 2 8062 \N +318943 2025-09-23 07:42:18.502041+00 2025-09-23 07:42:18.502048+00 f t TOTAL 0.00 3 8062 \N +318944 2025-09-23 07:42:18.503112+00 2025-09-23 07:42:18.503119+00 f t ADELANTO 0.00 4 8062 \N +326489 2025-09-25 16:45:41.955658+00 2025-09-25 16:45:41.955667+00 f t SUBTOTAL 0.00 1 8251 \N +326490 2025-09-25 16:45:41.957391+00 2025-09-25 16:45:41.957397+00 f t DESCUENTO 0.00 2 8251 \N +326491 2025-09-25 16:45:41.958893+00 2025-09-25 16:45:41.958898+00 f t TOTAL 0.00 3 8251 \N +326492 2025-09-25 16:45:41.960025+00 2025-09-25 16:45:41.96003+00 f t ADELANTO 0.00 4 8251 \N +326869 2025-09-25 19:41:40.739704+00 2025-09-25 19:41:40.739716+00 f t SUBTOTAL 46000.00 1 8263 \N +326870 2025-09-25 19:41:40.741951+00 2025-09-25 19:41:40.741962+00 f t DESCUENTO 0.00 2 8263 \N +326871 2025-09-25 19:41:40.74383+00 2025-09-25 19:41:40.743839+00 f t TOTAL 46000.00 3 8263 \N +326872 2025-09-25 19:41:40.745388+00 2025-09-25 19:41:40.745396+00 f t ADELANTO 11000.00 4 8263 \N +327117 2025-09-25 20:57:22.729074+00 2025-09-25 20:57:22.729085+00 f t SUBTOTAL 139750.00 1 8268 \N +327118 2025-09-25 20:57:22.730982+00 2025-09-25 20:57:22.730989+00 f t DESCUENTO 0.00 2 8268 \N +327119 2025-09-25 20:57:22.73242+00 2025-09-25 20:57:22.732427+00 f t TOTAL 139750.00 3 8268 \N +327120 2025-09-25 20:57:22.733721+00 2025-09-25 20:57:22.733726+00 f t ADELANTO 29750.00 4 8268 \N +319889 2025-09-23 17:10:37.475192+00 2025-09-23 17:10:37.475205+00 f t SUBTOTAL 0.00 1 8087 \N +319890 2025-09-23 17:10:37.477832+00 2025-09-23 17:10:37.477844+00 f t DESCUENTO 0.00 2 8087 \N +319891 2025-09-23 17:10:37.479589+00 2025-09-23 17:10:37.479601+00 f t TOTAL 0.00 3 8087 \N +319892 2025-09-23 17:10:37.481309+00 2025-09-23 17:10:37.48132+00 f t ADELANTO 0.00 4 8087 \N +320345 2025-09-23 18:20:47.226984+00 2025-09-23 18:20:47.226995+00 f t SUBTOTAL 55000.00 1 8089 \N +320346 2025-09-23 18:20:47.229168+00 2025-09-23 18:20:47.229178+00 f t DESCUENTO 0.00 2 8089 \N +320347 2025-09-23 18:20:47.230802+00 2025-09-23 18:20:47.230812+00 f t TOTAL 55000.00 3 8089 \N +320348 2025-09-23 18:20:47.232547+00 2025-09-23 18:20:47.232557+00 f t ADELANTO 11000.00 4 8089 \N +320669 2025-09-23 19:04:45.047121+00 2025-09-23 19:04:45.047168+00 f t SUBTOTAL 153900.00 1 8095 \N +320670 2025-09-23 19:04:45.049195+00 2025-09-23 19:04:45.049206+00 f t DESCUENTO 0.00 2 8095 \N +320671 2025-09-23 19:04:45.050919+00 2025-09-23 19:04:45.050927+00 f t TOTAL 153900.00 3 8095 \N +320672 2025-09-23 19:04:45.052433+00 2025-09-23 19:04:45.052442+00 f t ADELANTO 113400.00 4 8095 \N +320729 2025-09-23 19:17:56.942752+00 2025-09-23 19:17:56.942764+00 f t SUBTOTAL 171750.00 1 8096 \N +313509 2025-09-21 16:19:21.732104+00 2025-09-21 16:19:21.732115+00 f t SUBTOTAL 46000.00 1 7941 \N +313510 2025-09-21 16:19:21.734251+00 2025-09-21 16:19:21.734262+00 f t DESCUENTO 0.00 2 7941 \N +313511 2025-09-21 16:19:21.736087+00 2025-09-21 16:19:21.736095+00 f t TOTAL 46000.00 3 7941 \N +313512 2025-09-21 16:19:21.737636+00 2025-09-21 16:19:21.737644+00 f t ADELANTO 11000.00 4 7941 \N +320730 2025-09-23 19:17:56.944811+00 2025-09-23 19:17:56.944819+00 f t DESCUENTO 0.00 2 8096 \N +320731 2025-09-23 19:17:56.946292+00 2025-09-23 19:17:56.946299+00 f t TOTAL 171750.00 3 8096 \N +320732 2025-09-23 19:17:56.947485+00 2025-09-23 19:17:56.947492+00 f t ADELANTO 40250.00 4 8096 \N +327969 2025-09-26 01:55:33.326109+00 2025-09-26 01:55:33.326119+00 f t SUBTOTAL 0.00 1 8290 \N +327970 2025-09-26 01:55:33.328107+00 2025-09-26 01:55:33.32812+00 f t DESCUENTO 0.00 2 8290 \N +327971 2025-09-26 01:55:33.329853+00 2025-09-26 01:55:33.329861+00 f t TOTAL 0.00 3 8290 \N +327972 2025-09-26 01:55:33.331332+00 2025-09-26 01:55:33.33134+00 f t ADELANTO 0.00 4 8290 \N +321001 2025-09-23 22:34:12.330011+00 2025-09-23 22:34:12.330019+00 f t SUBTOTAL 46000.00 1 8106 \N +321002 2025-09-23 22:34:12.331958+00 2025-09-23 22:34:12.331968+00 f t DESCUENTO 0.00 2 8106 \N +321003 2025-09-23 22:34:12.333368+00 2025-09-23 22:34:12.333377+00 f t TOTAL 46000.00 3 8106 \N +321004 2025-09-23 22:34:12.334906+00 2025-09-23 22:34:12.334915+00 f t ADELANTO 11000.00 4 8106 \N +328541 2025-09-26 06:44:47.084843+00 2025-09-26 06:44:47.084855+00 f t SUBTOTAL 0.00 1 8302 \N +328542 2025-09-26 06:44:47.087759+00 2025-09-26 06:44:47.08777+00 f t DESCUENTO 0.00 2 8302 \N +328543 2025-09-26 06:44:47.089386+00 2025-09-26 06:44:47.089395+00 f t TOTAL 0.00 3 8302 \N +328544 2025-09-26 06:44:47.09097+00 2025-09-26 06:44:47.090979+00 f t ADELANTO 0.00 4 8302 \N +321401 2025-09-23 23:27:50.079904+00 2025-09-23 23:27:50.079913+00 f t SUBTOTAL 0.00 1 8115 \N +321402 2025-09-23 23:27:50.082184+00 2025-09-23 23:27:50.082192+00 f t DESCUENTO 0.00 2 8115 \N +321403 2025-09-23 23:27:50.083426+00 2025-09-23 23:27:50.083432+00 f t TOTAL 0.00 3 8115 \N +321404 2025-09-23 23:27:50.084608+00 2025-09-23 23:27:50.084614+00 f t ADELANTO 0.00 4 8115 \N +314181 2025-09-21 20:44:58.971766+00 2025-09-21 20:44:58.971774+00 f t SUBTOTAL 46000.00 1 7959 \N +314182 2025-09-21 20:44:58.974063+00 2025-09-21 20:44:58.97407+00 f t DESCUENTO 0.00 2 7959 \N +314183 2025-09-21 20:44:58.975432+00 2025-09-21 20:44:58.975437+00 f t TOTAL 46000.00 3 7959 \N +314184 2025-09-21 20:44:58.976542+00 2025-09-21 20:44:58.976547+00 f t ADELANTO 11000.00 4 7959 \N +316713 2025-09-22 14:53:58.896697+00 2025-09-22 14:53:58.896706+00 f t SUBTOTAL 78000.00 1 8004 \N +316714 2025-09-22 14:53:58.898842+00 2025-09-22 14:53:58.898851+00 f t DESCUENTO 0.00 2 8004 \N +316715 2025-09-22 14:53:58.900315+00 2025-09-22 14:53:58.900321+00 f t TOTAL 78000.00 3 8004 \N +316716 2025-09-22 14:53:58.901521+00 2025-09-22 14:53:58.90153+00 f t ADELANTO 21500.00 4 8004 \N +317117 2025-09-22 16:33:38.601015+00 2025-09-22 16:33:38.601023+00 f t SUBTOTAL 161000.00 1 8015 \N +317118 2025-09-22 16:33:38.602849+00 2025-09-22 16:33:38.602855+00 f t DESCUENTO 0.00 2 8015 \N +317119 2025-09-22 16:33:38.604004+00 2025-09-22 16:33:38.60401+00 f t TOTAL 161000.00 3 8015 \N +317120 2025-09-22 16:33:38.60502+00 2025-09-22 16:33:38.605025+00 f t ADELANTO 25500.00 4 8015 \N +339233 2025-09-29 23:20:05.361389+00 2025-09-29 23:20:05.3614+00 f t SUBTOTAL 78000.00 1 8557 \N +339234 2025-09-29 23:20:05.364654+00 2025-09-29 23:20:05.364668+00 f t DESCUENTO 0.00 2 8557 \N +339235 2025-09-29 23:20:05.367364+00 2025-09-29 23:20:05.367378+00 f t TOTAL 78000.00 3 8557 \N +339236 2025-09-29 23:20:05.370003+00 2025-09-29 23:20:05.370017+00 f t ADELANTO 13000.00 4 8557 \N +317329 2025-09-22 17:05:23.096489+00 2025-09-22 17:05:23.096498+00 f t SUBTOTAL 0.00 1 8021 \N +317330 2025-09-22 17:05:23.098005+00 2025-09-22 17:05:23.098012+00 f t DESCUENTO 0.00 2 8021 \N +317331 2025-09-22 17:05:23.0994+00 2025-09-22 17:05:23.099406+00 f t TOTAL 0.00 3 8021 \N +317332 2025-09-22 17:05:23.100644+00 2025-09-22 17:05:23.10065+00 f t ADELANTO 0.00 4 8021 \N +317717 2025-09-22 20:08:57.607885+00 2025-09-22 20:08:57.607893+00 f t SUBTOTAL 140000.00 1 8028 \N +317718 2025-09-22 20:08:57.609563+00 2025-09-22 20:08:57.609569+00 f t DESCUENTO 0.00 2 8028 \N +317719 2025-09-22 20:08:57.610935+00 2025-09-22 20:08:57.61094+00 f t TOTAL 140000.00 3 8028 \N +317720 2025-09-22 20:08:57.611938+00 2025-09-22 20:08:57.611943+00 f t ADELANTO 38000.00 4 8028 \N +308417 2025-09-19 17:44:10.605467+00 2025-09-19 17:44:10.605476+00 f t SUBTOTAL 132900.00 1 7827 \N +308418 2025-09-19 17:44:10.607073+00 2025-09-19 17:44:10.607081+00 f t DESCUENTO 0.00 2 7827 \N +308419 2025-09-19 17:44:10.608545+00 2025-09-19 17:44:10.608555+00 f t TOTAL 132900.00 3 7827 \N +308420 2025-09-19 17:44:10.610034+00 2025-09-19 17:44:10.610043+00 f t ADELANTO 70900.00 4 7827 \N +318505 2025-09-22 23:39:54.70604+00 2025-09-22 23:39:54.706049+00 f t SUBTOTAL 46000.00 1 8050 \N +318506 2025-09-22 23:39:54.707729+00 2025-09-22 23:39:54.707737+00 f t DESCUENTO 0.00 2 8050 \N +318507 2025-09-22 23:39:54.708939+00 2025-09-22 23:39:54.708945+00 f t TOTAL 46000.00 3 8050 \N +318508 2025-09-22 23:39:54.710121+00 2025-09-22 23:39:54.710128+00 f t ADELANTO 11000.00 4 8050 \N +311693 2025-09-20 20:39:19.042425+00 2025-09-20 20:39:19.042434+00 f t SUBTOTAL 0.00 1 7905 \N +311694 2025-09-20 20:39:19.044179+00 2025-09-20 20:39:19.044187+00 f t DESCUENTO 0.00 2 7905 \N +311695 2025-09-20 20:39:19.045415+00 2025-09-20 20:39:19.045421+00 f t TOTAL 0.00 3 7905 \N +311696 2025-09-20 20:39:19.046705+00 2025-09-20 20:39:19.046712+00 f t ADELANTO 0.00 4 7905 \N +311937 2025-09-20 22:36:24.431102+00 2025-09-20 22:36:24.431113+00 f t SUBTOTAL 0.00 1 7909 \N +311938 2025-09-20 22:36:24.433555+00 2025-09-20 22:36:24.433565+00 f t DESCUENTO 0.00 2 7909 \N +311939 2025-09-20 22:36:24.434929+00 2025-09-20 22:36:24.434937+00 f t TOTAL 0.00 3 7909 \N +311940 2025-09-20 22:36:24.446371+00 2025-09-20 22:36:24.44638+00 f t ADELANTO 0.00 4 7909 \N +312017 2025-09-20 23:30:46.506838+00 2025-09-20 23:30:46.506848+00 f t SUBTOTAL 0.00 1 7911 \N +312018 2025-09-20 23:30:46.509117+00 2025-09-20 23:30:46.509125+00 f t DESCUENTO 0.00 2 7911 \N +312019 2025-09-20 23:30:46.510646+00 2025-09-20 23:30:46.510656+00 f t TOTAL 0.00 3 7911 \N +312020 2025-09-20 23:30:46.512272+00 2025-09-20 23:30:46.512278+00 f t ADELANTO 0.00 4 7911 \N +326393 2025-09-25 16:21:20.724936+00 2025-09-25 16:21:20.724946+00 f t SUBTOTAL 78000.00 1 8186 \N +326394 2025-09-25 16:21:20.72696+00 2025-09-25 16:21:20.726968+00 f t DESCUENTO 0.00 2 8186 \N +326395 2025-09-25 16:21:20.728322+00 2025-09-25 16:21:20.728329+00 f t TOTAL 78000.00 3 8186 \N +326396 2025-09-25 16:21:20.729635+00 2025-09-25 16:21:20.729641+00 f t ADELANTO 13000.00 4 8186 \N +312613 2025-09-21 08:53:19.534316+00 2025-09-21 08:53:19.534324+00 f t SUBTOTAL 46000.00 1 7923 \N +312614 2025-09-21 08:53:19.536318+00 2025-09-21 08:53:19.536329+00 f t DESCUENTO 0.00 2 7923 \N +312615 2025-09-21 08:53:19.537701+00 2025-09-21 08:53:19.537707+00 f t TOTAL 46000.00 3 7923 \N +312616 2025-09-21 08:53:19.538941+00 2025-09-21 08:53:19.538947+00 f t ADELANTO 11000.00 4 7923 \N +326781 2025-09-25 18:44:51.016601+00 2025-09-25 18:44:51.01661+00 f t SUBTOTAL 0.00 1 8260 \N +326782 2025-09-25 18:44:51.018773+00 2025-09-25 18:44:51.01878+00 f t DESCUENTO 0.00 2 8260 \N +308517 2025-09-19 17:49:41.777396+00 2025-09-19 17:49:41.777404+00 f t SUBTOTAL 98900.00 1 7828 \N +308518 2025-09-19 17:49:41.779371+00 2025-09-19 17:49:41.779379+00 f t DESCUENTO 0.00 2 7828 \N +308519 2025-09-19 17:49:41.781009+00 2025-09-19 17:49:41.781016+00 f t TOTAL 98900.00 3 7828 \N +308520 2025-09-19 17:49:41.782432+00 2025-09-19 17:49:41.782439+00 f t ADELANTO 36900.00 4 7828 \N +326783 2025-09-25 18:44:51.02028+00 2025-09-25 18:44:51.020287+00 f t TOTAL 0.00 3 8260 \N +326784 2025-09-25 18:44:51.021502+00 2025-09-25 18:44:51.021508+00 f t ADELANTO 0.00 4 8260 \N +319573 2025-09-23 13:15:11.691333+00 2025-09-23 13:15:11.691343+00 f t SUBTOTAL 0.00 1 8076 \N +319574 2025-09-23 13:15:11.696763+00 2025-09-23 13:15:11.696774+00 f t DESCUENTO 0.00 2 8076 \N +319575 2025-09-23 13:15:11.698591+00 2025-09-23 13:15:11.6986+00 f t TOTAL 0.00 3 8076 \N +319576 2025-09-23 13:15:11.70025+00 2025-09-23 13:15:11.700258+00 f t ADELANTO 0.00 4 8076 \N +308561 2025-09-19 17:52:03.279437+00 2025-09-19 17:52:03.27945+00 f t SUBTOTAL 70000.00 1 7830 \N +308562 2025-09-19 17:52:03.281805+00 2025-09-19 17:52:03.281817+00 f t DESCUENTO 0.00 2 7830 \N +308563 2025-09-19 17:52:03.283902+00 2025-09-19 17:52:03.283911+00 f t TOTAL 70000.00 3 7830 \N +308564 2025-09-19 17:52:03.28584+00 2025-09-19 17:52:03.285852+00 f t ADELANTO 19000.00 4 7830 \N +308625 2025-09-19 18:00:55.935623+00 2025-09-19 18:00:55.935636+00 f t SUBTOTAL 0.00 1 7831 \N +308626 2025-09-19 18:00:55.937799+00 2025-09-19 18:00:55.937808+00 f t DESCUENTO 0.00 2 7831 \N +308627 2025-09-19 18:00:55.939063+00 2025-09-19 18:00:55.939072+00 f t TOTAL 0.00 3 7831 \N +308628 2025-09-19 18:00:55.940406+00 2025-09-19 18:00:55.940412+00 f t ADELANTO 0.00 4 7831 \N +314101 2025-09-21 20:01:47.104645+00 2025-09-21 20:01:47.104653+00 f t SUBTOTAL 46000.00 1 7956 \N +314102 2025-09-21 20:01:47.106518+00 2025-09-21 20:01:47.106525+00 f t DESCUENTO 0.00 2 7956 \N +314103 2025-09-21 20:01:47.107795+00 2025-09-21 20:01:47.107801+00 f t TOTAL 46000.00 3 7956 \N +314104 2025-09-21 20:01:47.109154+00 2025-09-21 20:01:47.10916+00 f t ADELANTO 11000.00 4 7956 \N +320869 2025-09-23 20:36:51.790843+00 2025-09-23 20:36:51.790855+00 f t SUBTOTAL 54000.00 1 8100 \N +320870 2025-09-23 20:36:51.793209+00 2025-09-23 20:36:51.793222+00 f t DESCUENTO 0.00 2 8100 \N +320871 2025-09-23 20:36:51.794676+00 2025-09-23 20:36:51.794685+00 f t TOTAL 54000.00 3 8100 \N +320872 2025-09-23 20:36:51.796068+00 2025-09-23 20:36:51.796074+00 f t ADELANTO 13500.00 4 8100 \N +314169 2025-09-21 20:38:37.53334+00 2025-09-21 20:38:37.533351+00 f t SUBTOTAL 46000.00 1 7958 \N +314170 2025-09-21 20:38:37.535457+00 2025-09-21 20:38:37.535466+00 f t DESCUENTO 0.00 2 7958 \N +314171 2025-09-21 20:38:37.536929+00 2025-09-21 20:38:37.536936+00 f t TOTAL 46000.00 3 7958 \N +314172 2025-09-21 20:38:37.53821+00 2025-09-21 20:38:37.538217+00 f t ADELANTO 11000.00 4 7958 \N +308669 2025-09-19 18:02:38.129625+00 2025-09-19 18:02:38.129639+00 f t SUBTOTAL 102000.00 1 7832 \N +308670 2025-09-19 18:02:38.131726+00 2025-09-19 18:02:38.131734+00 f t DESCUENTO 0.00 2 7832 \N +308671 2025-09-19 18:02:38.132929+00 2025-09-19 18:02:38.132934+00 f t TOTAL 102000.00 3 7832 \N +308672 2025-09-19 18:02:38.134113+00 2025-09-19 18:02:38.134119+00 f t ADELANTO 29500.00 4 7832 \N +310085 2025-09-20 03:09:42.781155+00 2025-09-20 03:09:42.781164+00 f t SUBTOTAL 0.00 1 7869 \N +310086 2025-09-20 03:09:42.784119+00 2025-09-20 03:09:42.784128+00 f t DESCUENTO 0.00 2 7869 \N +310087 2025-09-20 03:09:42.785544+00 2025-09-20 03:09:42.78555+00 f t TOTAL 0.00 3 7869 \N +310088 2025-09-20 03:09:42.786649+00 2025-09-20 03:09:42.786655+00 f t ADELANTO 0.00 4 7869 \N +316869 2025-09-22 15:20:54.095319+00 2025-09-22 15:20:54.095327+00 f t SUBTOTAL 0.00 1 8008 \N +316870 2025-09-22 15:20:54.096528+00 2025-09-22 15:20:54.096533+00 f t DESCUENTO 0.00 2 8008 \N +316871 2025-09-22 15:20:54.097499+00 2025-09-22 15:20:54.097505+00 f t TOTAL 0.00 3 8008 \N +316872 2025-09-22 15:20:54.098461+00 2025-09-22 15:20:54.098468+00 f t ADELANTO 0.00 4 8008 \N +317009 2025-09-22 15:57:54.310878+00 2025-09-22 15:57:54.310886+00 f t SUBTOTAL 76000.00 1 8011 \N +317010 2025-09-22 15:57:54.312907+00 2025-09-22 15:57:54.312915+00 f t DESCUENTO 0.00 2 8011 \N +317011 2025-09-22 15:57:54.314246+00 2025-09-22 15:57:54.314254+00 f t TOTAL 76000.00 3 8011 \N +317012 2025-09-22 15:57:54.315529+00 2025-09-22 15:57:54.315535+00 f t ADELANTO 11000.00 4 8011 \N +317997 2025-09-22 22:15:52.851743+00 2025-09-22 22:15:52.851753+00 f t SUBTOTAL 55000.00 1 8042 \N +317998 2025-09-22 22:15:52.853446+00 2025-09-22 22:15:52.853452+00 f t DESCUENTO 0.00 2 8042 \N +317999 2025-09-22 22:15:52.85479+00 2025-09-22 22:15:52.854796+00 f t TOTAL 55000.00 3 8042 \N +318000 2025-09-22 22:15:52.855933+00 2025-09-22 22:15:52.855938+00 f t ADELANTO 11000.00 4 8042 \N +318513 2025-09-23 00:16:55.668044+00 2025-09-23 00:16:55.668054+00 f t SUBTOTAL 0.00 1 8051 \N +318514 2025-09-23 00:16:55.669571+00 2025-09-23 00:16:55.669578+00 f t DESCUENTO 0.00 2 8051 \N +318515 2025-09-23 00:16:55.670881+00 2025-09-23 00:16:55.670888+00 f t TOTAL 0.00 3 8051 \N +318516 2025-09-23 00:16:55.672345+00 2025-09-23 00:16:55.67235+00 f t ADELANTO 0.00 4 8051 \N +312257 2025-09-21 01:18:07.018307+00 2025-09-21 01:18:07.018318+00 f t SUBTOTAL 0.00 1 7916 \N +312258 2025-09-21 01:18:07.020295+00 2025-09-21 01:18:07.020302+00 f t DESCUENTO 0.00 2 7916 \N +312259 2025-09-21 01:18:07.021565+00 2025-09-21 01:18:07.021576+00 f t TOTAL 0.00 3 7916 \N +312260 2025-09-21 01:18:07.022799+00 2025-09-21 01:18:07.022807+00 f t ADELANTO 0.00 4 7916 \N +312481 2025-09-21 07:26:23.62623+00 2025-09-21 07:26:23.62624+00 f t SUBTOTAL 46000.00 1 7921 \N +312482 2025-09-21 07:26:23.628209+00 2025-09-21 07:26:23.628216+00 f t DESCUENTO 0.00 2 7921 \N +312483 2025-09-21 07:26:23.62929+00 2025-09-21 07:26:23.629296+00 f t TOTAL 46000.00 3 7921 \N +312484 2025-09-21 07:26:23.630579+00 2025-09-21 07:26:23.630589+00 f t ADELANTO 11000.00 4 7921 \N +308809 2025-09-19 18:34:44.784411+00 2025-09-19 18:34:44.784422+00 f t SUBTOTAL 46000.00 1 7833 \N +308810 2025-09-19 18:34:44.78647+00 2025-09-19 18:34:44.786481+00 f t DESCUENTO 0.00 2 7833 \N +308811 2025-09-19 18:34:44.787994+00 2025-09-19 18:34:44.788001+00 f t TOTAL 46000.00 3 7833 \N +308812 2025-09-19 18:34:44.789372+00 2025-09-19 18:34:44.789379+00 f t ADELANTO 11000.00 4 7833 \N +312693 2025-09-21 12:03:40.151162+00 2025-09-21 12:03:40.151183+00 f t SUBTOTAL 0.00 1 7926 \N +312694 2025-09-21 12:03:40.153596+00 2025-09-21 12:03:40.153604+00 f t DESCUENTO 0.00 2 7926 \N +312695 2025-09-21 12:03:40.154895+00 2025-09-21 12:03:40.154902+00 f t TOTAL 0.00 3 7926 \N +312696 2025-09-21 12:03:40.156283+00 2025-09-21 12:03:40.156289+00 f t ADELANTO 0.00 4 7926 \N +308845 2025-09-19 18:40:50.524441+00 2025-09-19 18:40:50.524454+00 f t SUBTOTAL 46000.00 1 7834 \N +308846 2025-09-19 18:40:50.526606+00 2025-09-19 18:40:50.526617+00 f t DESCUENTO 0.00 2 7834 \N +308847 2025-09-19 18:40:50.528399+00 2025-09-19 18:40:50.528411+00 f t TOTAL 46000.00 3 7834 \N +308848 2025-09-19 18:40:50.529978+00 2025-09-19 18:40:50.529988+00 f t ADELANTO 11000.00 4 7834 \N +313277 2025-09-21 16:04:13.63661+00 2025-09-21 16:04:13.636622+00 f t SUBTOTAL 0.00 1 7936 \N +313278 2025-09-21 16:04:13.638504+00 2025-09-21 16:04:13.638511+00 f t DESCUENTO 0.00 2 7936 \N +313279 2025-09-21 16:04:13.639708+00 2025-09-21 16:04:13.639714+00 f t TOTAL 0.00 3 7936 \N +313280 2025-09-21 16:04:13.640807+00 2025-09-21 16:04:13.640813+00 f t ADELANTO 0.00 4 7936 \N +308861 2025-09-19 18:50:53.225404+00 2025-09-19 18:50:53.225414+00 f t SUBTOTAL 312000.00 1 7829 \N +308862 2025-09-19 18:50:53.227758+00 2025-09-19 18:50:53.227768+00 f t DESCUENTO 0.00 2 7829 \N +308863 2025-09-19 18:50:53.229885+00 2025-09-19 18:50:53.229895+00 f t TOTAL 312000.00 3 7829 \N +308864 2025-09-19 18:50:53.231656+00 2025-09-19 18:50:53.231666+00 f t ADELANTO 86000.00 4 7829 \N +308869 2025-09-19 18:57:45.259822+00 2025-09-19 18:57:45.259832+00 f t SUBTOTAL 0.00 1 7835 \N +308870 2025-09-19 18:57:45.261372+00 2025-09-19 18:57:45.261379+00 f t DESCUENTO 0.00 2 7835 \N +308871 2025-09-19 18:57:45.262442+00 2025-09-19 18:57:45.262447+00 f t TOTAL 0.00 3 7835 \N +308872 2025-09-19 18:57:45.263434+00 2025-09-19 18:57:45.26344+00 f t ADELANTO 0.00 4 7835 \N +308877 2025-09-19 19:12:09.033573+00 2025-09-19 19:12:09.033586+00 f t SUBTOTAL 0.00 1 7836 \N +308878 2025-09-19 19:12:09.035385+00 2025-09-19 19:12:09.035394+00 f t DESCUENTO 0.00 2 7836 \N +308879 2025-09-19 19:12:09.036861+00 2025-09-19 19:12:09.036867+00 f t TOTAL 0.00 3 7836 \N +308880 2025-09-19 19:12:09.038159+00 2025-09-19 19:12:09.038166+00 f t ADELANTO 0.00 4 7836 \N +313805 2025-09-21 19:30:07.25414+00 2025-09-21 19:30:07.254149+00 f t SUBTOTAL 0.00 1 7952 \N +313806 2025-09-21 19:30:07.255994+00 2025-09-21 19:30:07.256004+00 f t DESCUENTO 0.00 2 7952 \N +313807 2025-09-21 19:30:07.258169+00 2025-09-21 19:30:07.25818+00 f t TOTAL 0.00 3 7952 \N +313808 2025-09-21 19:30:07.259868+00 2025-09-21 19:30:07.259877+00 f t ADELANTO 0.00 4 7952 \N +320425 2025-09-23 18:40:47.696239+00 2025-09-23 18:40:47.696249+00 f t SUBTOTAL 0.00 1 8091 \N +320426 2025-09-23 18:40:47.698387+00 2025-09-23 18:40:47.698394+00 f t DESCUENTO 0.00 2 8091 \N +320427 2025-09-23 18:40:47.699745+00 2025-09-23 18:40:47.699751+00 f t TOTAL 0.00 3 8091 \N +320428 2025-09-23 18:40:47.701244+00 2025-09-23 18:40:47.701251+00 f t ADELANTO 0.00 4 8091 \N +320557 2025-09-23 18:53:36.913152+00 2025-09-23 18:53:36.91316+00 f t SUBTOTAL 46000.00 1 8094 \N +320558 2025-09-23 18:53:36.915065+00 2025-09-23 18:53:36.915072+00 f t DESCUENTO 0.00 2 8094 \N +320559 2025-09-23 18:53:36.916287+00 2025-09-23 18:53:36.916293+00 f t TOTAL 46000.00 3 8094 \N +320560 2025-09-23 18:53:36.917513+00 2025-09-23 18:53:36.917519+00 f t ADELANTO 11000.00 4 8094 \N +308933 2025-09-19 19:15:42.640403+00 2025-09-19 19:15:42.640412+00 f t SUBTOTAL 46000.00 1 7837 \N +308934 2025-09-19 19:15:42.642505+00 2025-09-19 19:15:42.642514+00 f t DESCUENTO 0.00 2 7837 \N +308935 2025-09-19 19:15:42.644017+00 2025-09-19 19:15:42.644024+00 f t TOTAL 46000.00 3 7837 \N +308936 2025-09-19 19:15:42.645221+00 2025-09-19 19:15:42.645227+00 f t ADELANTO 11000.00 4 7837 \N +308945 2025-09-19 19:25:22.003875+00 2025-09-19 19:25:22.003885+00 f t SUBTOTAL 55000.00 1 7838 \N +308946 2025-09-19 19:25:22.005558+00 2025-09-19 19:25:22.005565+00 f t DESCUENTO 0.00 2 7838 \N +308947 2025-09-19 19:25:22.007166+00 2025-09-19 19:25:22.007176+00 f t TOTAL 55000.00 3 7838 \N +308948 2025-09-19 19:25:22.008805+00 2025-09-19 19:25:22.008814+00 f t ADELANTO 11000.00 4 7838 \N +324445 2025-09-25 00:03:09.46814+00 2025-09-25 00:03:09.468153+00 f t SUBTOTAL 55000.00 1 8206 \N +324446 2025-09-25 00:03:09.470721+00 2025-09-25 00:03:09.470732+00 f t DESCUENTO 0.00 2 8206 \N +324447 2025-09-25 00:03:09.47259+00 2025-09-25 00:03:09.4726+00 f t TOTAL 55000.00 3 8206 \N +324448 2025-09-25 00:03:09.47432+00 2025-09-25 00:03:09.47433+00 f t ADELANTO 11000.00 4 8206 \N +310093 2025-09-20 03:38:07.59336+00 2025-09-20 03:38:07.593374+00 f t SUBTOTAL 0.00 1 7870 \N +310094 2025-09-20 03:38:07.595415+00 2025-09-20 03:38:07.595427+00 f t DESCUENTO 0.00 2 7870 \N +310095 2025-09-20 03:38:07.597293+00 2025-09-20 03:38:07.597304+00 f t TOTAL 0.00 3 7870 \N +310096 2025-09-20 03:38:07.598878+00 2025-09-20 03:38:07.598888+00 f t ADELANTO 0.00 4 7870 \N +317445 2025-09-22 18:19:32.644113+00 2025-09-22 18:19:32.644122+00 f t SUBTOTAL 30000.00 1 8025 \N +317446 2025-09-22 18:19:32.64618+00 2025-09-22 18:19:32.646187+00 f t DESCUENTO 0.00 2 8025 \N +317447 2025-09-22 18:19:32.647624+00 2025-09-22 18:19:32.647631+00 f t TOTAL 30000.00 3 8025 \N +317448 2025-09-22 18:19:32.648886+00 2025-09-22 18:19:32.648893+00 f t ADELANTO 30000.00 4 8025 \N +308985 2025-09-19 19:56:30.128314+00 2025-09-19 19:56:30.128323+00 f t SUBTOTAL 70000.00 1 7839 \N +308986 2025-09-19 19:56:30.129705+00 2025-09-19 19:56:30.129711+00 f t DESCUENTO 0.00 2 7839 \N +308987 2025-09-19 19:56:30.130795+00 2025-09-19 19:56:30.130801+00 f t TOTAL 70000.00 3 7839 \N +308988 2025-09-19 19:56:30.131869+00 2025-09-19 19:56:30.131876+00 f t ADELANTO 19000.00 4 7839 \N +308993 2025-09-19 20:08:28.187334+00 2025-09-19 20:08:28.187343+00 f t SUBTOTAL 0.00 1 7840 \N +308994 2025-09-19 20:08:28.188691+00 2025-09-19 20:08:28.188697+00 f t DESCUENTO 0.00 2 7840 \N +308995 2025-09-19 20:08:28.189936+00 2025-09-19 20:08:28.189945+00 f t TOTAL 0.00 3 7840 \N +308996 2025-09-19 20:08:28.191115+00 2025-09-19 20:08:28.191121+00 f t ADELANTO 0.00 4 7840 \N +310697 2025-09-20 11:07:17.396069+00 2025-09-20 11:07:17.396081+00 f t SUBTOTAL 0.00 1 7877 \N +310698 2025-09-20 11:07:17.398581+00 2025-09-20 11:07:17.39859+00 f t DESCUENTO 0.00 2 7877 \N +310699 2025-09-20 11:07:17.400007+00 2025-09-20 11:07:17.400014+00 f t TOTAL 0.00 3 7877 \N +310700 2025-09-20 11:07:17.401253+00 2025-09-20 11:07:17.401259+00 f t ADELANTO 0.00 4 7877 \N +317813 2025-09-22 21:01:16.22983+00 2025-09-22 21:01:16.229841+00 f t SUBTOTAL 167400.00 1 8035 \N +317814 2025-09-22 21:01:16.231895+00 2025-09-22 21:01:16.231905+00 f t DESCUENTO 0.00 2 8035 \N +317815 2025-09-22 21:01:16.233191+00 2025-09-22 21:01:16.233198+00 f t TOTAL 167400.00 3 8035 \N +317816 2025-09-22 21:01:16.234325+00 2025-09-22 21:01:16.234332+00 f t ADELANTO 71900.00 4 8035 \N +311101 2025-09-20 15:55:47.313723+00 2025-09-20 15:55:47.313733+00 f t SUBTOTAL 0.00 1 7891 \N +311102 2025-09-20 15:55:47.315829+00 2025-09-20 15:55:47.315837+00 f t DESCUENTO 0.00 2 7891 \N +311103 2025-09-20 15:55:47.317515+00 2025-09-20 15:55:47.317523+00 f t TOTAL 0.00 3 7891 \N +311104 2025-09-20 15:55:47.319083+00 2025-09-20 15:55:47.319091+00 f t ADELANTO 0.00 4 7891 \N +311185 2025-09-20 16:07:57.876614+00 2025-09-20 16:07:57.876626+00 f t SUBTOTAL 156000.00 1 7892 \N +311186 2025-09-20 16:07:57.878648+00 2025-09-20 16:07:57.878658+00 f t DESCUENTO 0.00 2 7892 \N +311187 2025-09-20 16:07:57.880052+00 2025-09-20 16:07:57.88006+00 f t TOTAL 156000.00 3 7892 \N +311188 2025-09-20 16:07:57.881321+00 2025-09-20 16:07:57.881329+00 f t ADELANTO 43000.00 4 7892 \N +318005 2025-09-22 22:28:50.227451+00 2025-09-22 22:28:50.227463+00 f t SUBTOTAL 0.00 1 8043 \N +318006 2025-09-22 22:28:50.229191+00 2025-09-22 22:28:50.229199+00 f t DESCUENTO 0.00 2 8043 \N +318007 2025-09-22 22:28:50.2307+00 2025-09-22 22:28:50.230707+00 f t TOTAL 0.00 3 8043 \N +318008 2025-09-22 22:28:50.232284+00 2025-09-22 22:28:50.232291+00 f t ADELANTO 0.00 4 8043 \N +309033 2025-09-19 20:10:17.262076+00 2025-09-19 20:10:17.262085+00 f t SUBTOTAL 0.00 1 7842 \N +309034 2025-09-19 20:10:17.264269+00 2025-09-19 20:10:17.264278+00 f t DESCUENTO 0.00 2 7842 \N +309035 2025-09-19 20:10:17.265718+00 2025-09-19 20:10:17.265725+00 f t TOTAL 0.00 3 7842 \N +309036 2025-09-19 20:10:17.267029+00 2025-09-19 20:10:17.267036+00 f t ADELANTO 0.00 4 7842 \N +325965 2025-09-25 14:27:32.755679+00 2025-09-25 14:27:32.75569+00 f t SUBTOTAL 0.00 1 8234 \N +325966 2025-09-25 14:27:32.75789+00 2025-09-25 14:27:32.757896+00 f t DESCUENTO 0.00 2 8234 \N +325967 2025-09-25 14:27:32.759063+00 2025-09-25 14:27:32.759069+00 f t TOTAL 0.00 3 8234 \N +325968 2025-09-25 14:27:32.760169+00 2025-09-25 14:27:32.760174+00 f t ADELANTO 0.00 4 8234 \N +309073 2025-09-19 20:26:22.031401+00 2025-09-19 20:26:22.03141+00 f t SUBTOTAL 68000.00 1 7843 \N +309074 2025-09-19 20:26:22.033286+00 2025-09-19 20:26:22.033295+00 f t DESCUENTO 0.00 2 7843 \N +309075 2025-09-19 20:26:22.035193+00 2025-09-19 20:26:22.035205+00 f t TOTAL 68000.00 3 7843 \N +309076 2025-09-19 20:26:22.037032+00 2025-09-19 20:26:22.037042+00 f t ADELANTO 13000.00 4 7843 \N +318789 2025-09-23 04:03:46.835962+00 2025-09-23 04:03:46.835971+00 f t SUBTOTAL 0.00 1 8059 \N +318790 2025-09-23 04:03:46.837999+00 2025-09-23 04:03:46.838007+00 f t DESCUENTO 0.00 2 8059 \N +318791 2025-09-23 04:03:46.839159+00 2025-09-23 04:03:46.839165+00 f t TOTAL 0.00 3 8059 \N +318792 2025-09-23 04:03:46.840234+00 2025-09-23 04:03:46.840239+00 f t ADELANTO 0.00 4 8059 \N +309081 2025-09-19 20:30:00.890759+00 2025-09-19 20:30:00.890772+00 f t SUBTOTAL 0.00 1 7844 \N +309082 2025-09-19 20:30:00.892166+00 2025-09-19 20:30:00.892173+00 f t DESCUENTO 0.00 2 7844 \N +309083 2025-09-19 20:30:00.893192+00 2025-09-19 20:30:00.893198+00 f t TOTAL 0.00 3 7844 \N +309084 2025-09-19 20:30:00.894098+00 2025-09-19 20:30:00.894103+00 f t ADELANTO 0.00 4 7844 \N +309085 2025-09-19 20:37:41.410188+00 2025-09-19 20:37:41.410198+00 f t SUBTOTAL 55000.00 1 7841 \N +309086 2025-09-19 20:37:41.412386+00 2025-09-19 20:37:41.412395+00 f t DESCUENTO 0.00 2 7841 \N +309087 2025-09-19 20:37:41.413722+00 2025-09-19 20:37:41.413728+00 f t TOTAL 55000.00 3 7841 \N +309088 2025-09-19 20:37:41.415006+00 2025-09-19 20:37:41.415012+00 f t ADELANTO 11000.00 4 7841 \N +312265 2025-09-21 02:29:56.214983+00 2025-09-21 02:29:56.214991+00 f t SUBTOTAL 0.00 1 7917 \N +312266 2025-09-21 02:29:56.216597+00 2025-09-21 02:29:56.216605+00 f t DESCUENTO 0.00 2 7917 \N +312267 2025-09-21 02:29:56.217989+00 2025-09-21 02:29:56.217995+00 f t TOTAL 0.00 3 7917 \N +312268 2025-09-21 02:29:56.21901+00 2025-09-21 02:29:56.219015+00 f t ADELANTO 0.00 4 7917 \N +309093 2025-09-19 20:46:05.922163+00 2025-09-19 20:46:05.922174+00 f t SUBTOTAL 0.00 1 7845 \N +309094 2025-09-19 20:46:05.923697+00 2025-09-19 20:46:05.923705+00 f t DESCUENTO 0.00 2 7845 \N +309095 2025-09-19 20:46:05.924969+00 2025-09-19 20:46:05.924974+00 f t TOTAL 0.00 3 7845 \N +309096 2025-09-19 20:46:05.926169+00 2025-09-19 20:46:05.926175+00 f t ADELANTO 0.00 4 7845 \N +312965 2025-09-21 15:22:42.332082+00 2025-09-21 15:22:42.332095+00 f t SUBTOTAL 55000.00 1 7931 \N +309142 2025-09-19 20:58:06.70219+00 2025-09-19 20:58:06.702203+00 f t SUBTOTAL 46000.00 1 7846 \N +312966 2025-09-21 15:22:42.33382+00 2025-09-21 15:22:42.333827+00 f t DESCUENTO 0.00 2 7931 \N +309144 2025-09-19 20:58:06.709369+00 2025-09-19 20:58:06.709381+00 f t DESCUENTO 0.00 2 7846 \N +312967 2025-09-21 15:22:42.334986+00 2025-09-21 15:22:42.334994+00 f t TOTAL 55000.00 3 7931 \N +309146 2025-09-19 20:58:06.71181+00 2025-09-19 20:58:06.711818+00 f t TOTAL 46000.00 3 7846 \N +312968 2025-09-21 15:22:42.336195+00 2025-09-21 15:22:42.3362+00 f t ADELANTO 11000.00 4 7931 \N +309148 2025-09-19 20:58:06.715014+00 2025-09-19 20:58:06.715032+00 f t ADELANTO 11000.00 4 7846 \N +313097 2025-09-21 15:41:02.394204+00 2025-09-21 15:41:02.394216+00 f t SUBTOTAL 55000.00 1 7933 \N +313098 2025-09-21 15:41:02.39619+00 2025-09-21 15:41:02.396199+00 f t DESCUENTO 0.00 2 7933 \N +313099 2025-09-21 15:41:02.397636+00 2025-09-21 15:41:02.397644+00 f t TOTAL 55000.00 3 7933 \N +313100 2025-09-21 15:41:02.398804+00 2025-09-21 15:41:02.398811+00 f t ADELANTO 11000.00 4 7933 \N +316877 2025-09-22 15:21:19.481082+00 2025-09-22 15:21:19.48109+00 f t SUBTOTAL 55000.00 1 8007 \N +316878 2025-09-22 15:21:19.483064+00 2025-09-22 15:21:19.483075+00 f t DESCUENTO 0.00 2 8007 \N +316879 2025-09-22 15:21:19.484411+00 2025-09-22 15:21:19.484417+00 f t TOTAL 55000.00 3 8007 \N +316880 2025-09-22 15:21:19.485346+00 2025-09-22 15:21:19.485351+00 f t ADELANTO 11000.00 4 8007 \N +310101 2025-09-20 04:21:51.778015+00 2025-09-20 04:21:51.778024+00 f t SUBTOTAL 0.00 1 7871 \N +310102 2025-09-20 04:21:51.781979+00 2025-09-20 04:21:51.781992+00 f t DESCUENTO 0.00 2 7871 \N +310103 2025-09-20 04:21:51.784013+00 2025-09-20 04:21:51.78402+00 f t TOTAL 0.00 3 7871 \N +310104 2025-09-20 04:21:51.785338+00 2025-09-20 04:21:51.785344+00 f t ADELANTO 0.00 4 7871 \N +324581 2025-09-25 01:24:28.503886+00 2025-09-25 01:24:28.503894+00 f t SUBTOTAL 78000.00 1 8210 \N +324582 2025-09-25 01:24:28.505705+00 2025-09-25 01:24:28.505712+00 f t DESCUENTO 0.00 2 8210 \N +324583 2025-09-25 01:24:28.506815+00 2025-09-25 01:24:28.506821+00 f t TOTAL 78000.00 3 8210 \N +324584 2025-09-25 01:24:28.507872+00 2025-09-25 01:24:28.507878+00 f t ADELANTO 21500.00 4 8210 \N +317453 2025-09-22 18:20:58.495772+00 2025-09-22 18:20:58.495784+00 f t SUBTOTAL 0.00 1 8026 \N +317454 2025-09-22 18:20:58.497327+00 2025-09-22 18:20:58.497334+00 f t DESCUENTO 0.00 2 8026 \N +317455 2025-09-22 18:20:58.498566+00 2025-09-22 18:20:58.498573+00 f t TOTAL 0.00 3 8026 \N +317456 2025-09-22 18:20:58.500052+00 2025-09-22 18:20:58.500059+00 f t ADELANTO 0.00 4 8026 \N +309277 2025-09-19 21:31:23.815768+00 2025-09-19 21:31:23.815777+00 f t SUBTOTAL 0.00 1 7848 \N +309278 2025-09-19 21:31:23.81838+00 2025-09-19 21:31:23.818392+00 f t DESCUENTO 0.00 2 7848 \N +309279 2025-09-19 21:31:23.820427+00 2025-09-19 21:31:23.820442+00 f t TOTAL 0.00 3 7848 \N +309280 2025-09-19 21:31:23.822255+00 2025-09-19 21:31:23.822266+00 f t ADELANTO 0.00 4 7848 \N +332333 2025-09-27 14:24:38.702022+00 2025-09-27 14:24:38.702036+00 f t SUBTOTAL 0.00 1 8396 \N +332334 2025-09-27 14:24:38.703953+00 2025-09-27 14:24:38.703964+00 f t DESCUENTO 0.00 2 8396 \N +332335 2025-09-27 14:24:38.705434+00 2025-09-27 14:24:38.705443+00 f t TOTAL 0.00 3 8396 \N +332336 2025-09-27 14:24:38.706914+00 2025-09-27 14:24:38.706922+00 f t ADELANTO 0.00 4 8396 \N +310917 2025-09-20 13:55:15.014899+00 2025-09-20 13:55:15.014912+00 f t SUBTOTAL 55000.00 1 7884 \N +310918 2025-09-20 13:55:15.017371+00 2025-09-20 13:55:15.017383+00 f t DESCUENTO 0.00 2 7884 \N +310919 2025-09-20 13:55:15.019178+00 2025-09-20 13:55:15.019188+00 f t TOTAL 55000.00 3 7884 \N +310920 2025-09-20 13:55:15.020883+00 2025-09-20 13:55:15.020893+00 f t ADELANTO 11000.00 4 7884 \N +325505 2025-09-25 09:06:37.385467+00 2025-09-25 09:06:37.38548+00 f t SUBTOTAL 0.00 1 8219 \N +325506 2025-09-25 09:06:37.387522+00 2025-09-25 09:06:37.387529+00 f t DESCUENTO 0.00 2 8219 \N +325507 2025-09-25 09:06:37.38858+00 2025-09-25 09:06:37.388586+00 f t TOTAL 0.00 3 8219 \N +325508 2025-09-25 09:06:37.389768+00 2025-09-25 09:06:37.389777+00 f t ADELANTO 0.00 4 8219 \N +318093 2025-09-22 22:54:04.939795+00 2025-09-22 22:54:04.939804+00 f t SUBTOTAL 70000.00 1 8044 \N +318094 2025-09-22 22:54:04.943452+00 2025-09-22 22:54:04.94346+00 f t DESCUENTO 0.00 2 8044 \N +318095 2025-09-22 22:54:04.944844+00 2025-09-22 22:54:04.944851+00 f t TOTAL 70000.00 3 8044 \N +318096 2025-09-22 22:54:04.946061+00 2025-09-22 22:54:04.946066+00 f t ADELANTO 19000.00 4 8044 \N +309329 2025-09-19 21:43:03.847389+00 2025-09-19 21:43:03.847399+00 f t SUBTOTAL 55000.00 1 7849 \N +309330 2025-09-19 21:43:03.849038+00 2025-09-19 21:43:03.849046+00 f t DESCUENTO 0.00 2 7849 \N +309331 2025-09-19 21:43:03.850441+00 2025-09-19 21:43:03.850448+00 f t TOTAL 55000.00 3 7849 \N +309332 2025-09-19 21:43:03.851755+00 2025-09-19 21:43:03.851762+00 f t ADELANTO 11000.00 4 7849 \N +325973 2025-09-25 14:28:03.376122+00 2025-09-25 14:28:03.376131+00 f t SUBTOTAL 0.00 1 8235 \N +325974 2025-09-25 14:28:03.377645+00 2025-09-25 14:28:03.377653+00 f t DESCUENTO 0.00 2 8235 \N +325975 2025-09-25 14:28:03.379045+00 2025-09-25 14:28:03.37905+00 f t TOTAL 0.00 3 8235 \N +325976 2025-09-25 14:28:03.380675+00 2025-09-25 14:28:03.380681+00 f t ADELANTO 0.00 4 8235 \N +318613 2025-09-23 00:30:40.276728+00 2025-09-23 00:30:40.27674+00 f t SUBTOTAL 55000.00 1 8054 \N +318614 2025-09-23 00:30:40.278328+00 2025-09-23 00:30:40.278335+00 f t DESCUENTO 0.00 2 8054 \N +318615 2025-09-23 00:30:40.279375+00 2025-09-23 00:30:40.279381+00 f t TOTAL 55000.00 3 8054 \N +318616 2025-09-23 00:30:40.280302+00 2025-09-23 00:30:40.280307+00 f t ADELANTO 11000.00 4 8054 \N +326093 2025-09-25 15:35:39.709031+00 2025-09-25 15:35:39.709043+00 f t SUBTOTAL 70000.00 1 8241 \N +326094 2025-09-25 15:35:39.711118+00 2025-09-25 15:35:39.711158+00 f t DESCUENTO 0.00 2 8241 \N +326095 2025-09-25 15:35:39.712874+00 2025-09-25 15:35:39.712883+00 f t TOTAL 70000.00 3 8241 \N +326096 2025-09-25 15:35:39.714264+00 2025-09-25 15:35:39.714272+00 f t ADELANTO 19000.00 4 8241 \N +309381 2025-09-19 21:45:47.095194+00 2025-09-19 21:45:47.095204+00 f t SUBTOTAL 0.00 1 7850 \N +309382 2025-09-19 21:45:47.097314+00 2025-09-19 21:45:47.097323+00 f t DESCUENTO 0.00 2 7850 \N +309383 2025-09-19 21:45:47.098515+00 2025-09-19 21:45:47.098523+00 f t TOTAL 0.00 3 7850 \N +309384 2025-09-19 21:45:47.099997+00 2025-09-19 21:45:47.100006+00 f t ADELANTO 0.00 4 7850 \N +309397 2025-09-19 22:04:46.697934+00 2025-09-19 22:04:46.697947+00 f t SUBTOTAL 66900.00 1 7847 \N +309398 2025-09-19 22:04:46.70042+00 2025-09-19 22:04:46.700431+00 f t DESCUENTO 0.00 2 7847 \N +309399 2025-09-19 22:04:46.703515+00 2025-09-19 22:04:46.703525+00 f t TOTAL 66900.00 3 7847 \N +309400 2025-09-19 22:04:46.705286+00 2025-09-19 22:04:46.705295+00 f t ADELANTO 26400.00 4 7847 \N +319825 2025-09-23 16:18:02.893653+00 2025-09-23 16:18:02.893662+00 f t SUBTOTAL 55000.00 1 8083 \N +319826 2025-09-23 16:18:02.895773+00 2025-09-23 16:18:02.895781+00 f t DESCUENTO 0.00 2 8083 \N +319827 2025-09-23 16:18:02.897268+00 2025-09-23 16:18:02.897275+00 f t TOTAL 55000.00 3 8083 \N +319828 2025-09-23 16:18:02.898615+00 2025-09-23 16:18:02.898622+00 f t ADELANTO 11000.00 4 8083 \N +320293 2025-09-23 17:31:08.838256+00 2025-09-23 17:31:08.838268+00 f t SUBTOTAL 61400.00 1 8088 \N +320294 2025-09-23 17:31:08.840691+00 2025-09-23 17:31:08.8407+00 f t DESCUENTO 0.00 2 8088 \N +320295 2025-09-23 17:31:08.84213+00 2025-09-23 17:31:08.84214+00 f t TOTAL 61400.00 3 8088 \N +320296 2025-09-23 17:31:08.84383+00 2025-09-23 17:31:08.843836+00 f t ADELANTO 15400.00 4 8088 \N +309461 2025-09-19 22:11:52.96947+00 2025-09-19 22:11:52.969479+00 f t SUBTOTAL 0.00 1 7851 \N +309462 2025-09-19 22:11:52.971467+00 2025-09-19 22:11:52.971474+00 f t DESCUENTO 0.00 2 7851 \N +309463 2025-09-19 22:11:52.972657+00 2025-09-19 22:11:52.972665+00 f t TOTAL 0.00 3 7851 \N +309464 2025-09-19 22:11:52.973652+00 2025-09-19 22:11:52.973657+00 f t ADELANTO 0.00 4 7851 \N +313997 2025-09-21 19:42:23.364722+00 2025-09-21 19:42:23.364734+00 f t SUBTOTAL 46000.00 1 7934 \N +313998 2025-09-21 19:42:23.366415+00 2025-09-21 19:42:23.366423+00 f t DESCUENTO 0.00 2 7934 \N +313999 2025-09-21 19:42:23.367509+00 2025-09-21 19:42:23.367515+00 f t TOTAL 46000.00 3 7934 \N +314000 2025-09-21 19:42:23.368701+00 2025-09-21 19:42:23.368707+00 f t ADELANTO 11000.00 4 7934 \N +321217 2025-09-23 23:08:08.617486+00 2025-09-23 23:08:08.617494+00 f t SUBTOTAL 153900.00 1 8111 \N +321218 2025-09-23 23:08:08.619651+00 2025-09-23 23:08:08.619659+00 f t DESCUENTO 0.00 2 8111 \N +321219 2025-09-23 23:08:08.621443+00 2025-09-23 23:08:08.621452+00 f t TOTAL 153900.00 3 8111 \N +321220 2025-09-23 23:08:08.62318+00 2025-09-23 23:08:08.623188+00 f t ADELANTO 113400.00 4 8111 \N +397344 2025-10-20 00:25:47.310528+00 2025-10-20 00:25:47.310534+00 f t ADELANTO 0.00 4 10057 \N +309881 2025-09-19 23:46:43.262672+00 2025-09-19 23:46:43.262683+00 f t SUBTOTAL 55000.00 1 7863 \N +309882 2025-09-19 23:46:43.264423+00 2025-09-19 23:46:43.264432+00 f t DESCUENTO 0.00 2 7863 \N +309883 2025-09-19 23:46:43.265706+00 2025-09-19 23:46:43.265713+00 f t TOTAL 55000.00 3 7863 \N +309884 2025-09-19 23:46:43.266868+00 2025-09-19 23:46:43.266875+00 f t ADELANTO 11000.00 4 7863 \N +310925 2025-09-20 14:33:31.219202+00 2025-09-20 14:33:31.21921+00 f t SUBTOTAL 0.00 1 7885 \N +310926 2025-09-20 14:33:31.220653+00 2025-09-20 14:33:31.220659+00 f t DESCUENTO 0.00 2 7885 \N +310927 2025-09-20 14:33:31.222074+00 2025-09-20 14:33:31.222081+00 f t TOTAL 0.00 3 7885 \N +310928 2025-09-20 14:33:31.223325+00 2025-09-20 14:33:31.22333+00 f t ADELANTO 0.00 4 7885 \N +317921 2025-09-22 21:58:42.580607+00 2025-09-22 21:58:42.580616+00 f t SUBTOTAL 0.00 1 8040 \N +317922 2025-09-22 21:58:42.582546+00 2025-09-22 21:58:42.582553+00 f t DESCUENTO 0.00 2 8040 \N +317923 2025-09-22 21:58:42.58369+00 2025-09-22 21:58:42.583697+00 f t TOTAL 0.00 3 8040 \N +317924 2025-09-22 21:58:42.584625+00 2025-09-22 21:58:42.58463+00 f t ADELANTO 0.00 4 8040 \N +325981 2025-09-25 14:45:43.200731+00 2025-09-25 14:45:43.20074+00 f t SUBTOTAL 0.00 1 8236 \N +325982 2025-09-25 14:45:43.202588+00 2025-09-25 14:45:43.202597+00 f t DESCUENTO 0.00 2 8236 \N +325983 2025-09-25 14:45:43.204504+00 2025-09-25 14:45:43.204515+00 f t TOTAL 0.00 3 8236 \N +325984 2025-09-25 14:45:43.206578+00 2025-09-25 14:45:43.206589+00 f t ADELANTO 0.00 4 8236 \N +318621 2025-09-23 00:32:33.775846+00 2025-09-23 00:32:33.775858+00 f t SUBTOTAL 0.00 1 8055 \N +318622 2025-09-23 00:32:33.777345+00 2025-09-23 00:32:33.777352+00 f t DESCUENTO 0.00 2 8055 \N +318623 2025-09-23 00:32:33.778419+00 2025-09-23 00:32:33.778424+00 f t TOTAL 0.00 3 8055 \N +318624 2025-09-23 00:32:33.779298+00 2025-09-23 00:32:33.779303+00 f t ADELANTO 0.00 4 8055 \N +333845 2025-09-28 00:44:14.537394+00 2025-09-28 00:44:14.537403+00 f t SUBTOTAL 100900.00 1 8421 \N +333846 2025-09-28 00:44:14.540047+00 2025-09-28 00:44:14.540059+00 f t DESCUENTO 0.00 2 8421 \N +333847 2025-09-28 00:44:14.54181+00 2025-09-28 00:44:14.541819+00 f t TOTAL 100900.00 3 8421 \N +333848 2025-09-28 00:44:14.543275+00 2025-09-28 00:44:14.543284+00 f t ADELANTO 60400.00 4 8421 \N +333925 2025-09-28 02:17:24.279397+00 2025-09-28 02:17:24.279407+00 f t SUBTOTAL 0.00 1 8423 \N +333926 2025-09-28 02:17:24.281801+00 2025-09-28 02:17:24.281809+00 f t DESCUENTO 0.00 2 8423 \N +333927 2025-09-28 02:17:24.283173+00 2025-09-28 02:17:24.28318+00 f t TOTAL 0.00 3 8423 \N +333928 2025-09-28 02:17:24.284545+00 2025-09-28 02:17:24.284552+00 f t ADELANTO 0.00 4 8423 \N +312109 2025-09-21 00:28:56.439658+00 2025-09-21 00:28:56.439667+00 f t SUBTOTAL 78000.00 1 7912 \N +312110 2025-09-21 00:28:56.449376+00 2025-09-21 00:28:56.449385+00 f t DESCUENTO 0.00 2 7912 \N +312111 2025-09-21 00:28:56.451862+00 2025-09-21 00:28:56.451871+00 f t TOTAL 78000.00 3 7912 \N +312112 2025-09-21 00:28:56.453621+00 2025-09-21 00:28:56.45363+00 f t ADELANTO 13000.00 4 7912 \N +334081 2025-09-28 03:46:30.931394+00 2025-09-28 03:46:30.931408+00 f t SUBTOTAL 0.00 1 8426 \N +334082 2025-09-28 03:46:30.934327+00 2025-09-28 03:46:30.934337+00 f t DESCUENTO 0.00 2 8426 \N +334083 2025-09-28 03:46:30.935962+00 2025-09-28 03:46:30.935972+00 f t TOTAL 0.00 3 8426 \N +334084 2025-09-28 03:46:30.937289+00 2025-09-28 03:46:30.937297+00 f t ADELANTO 0.00 4 8426 \N +319277 2025-09-23 11:23:12.143466+00 2025-09-23 11:23:12.143478+00 f t SUBTOTAL 55000.00 1 8068 \N +319278 2025-09-23 11:23:12.145347+00 2025-09-23 11:23:12.145358+00 f t DESCUENTO 0.00 2 8068 \N +319279 2025-09-23 11:23:12.146554+00 2025-09-23 11:23:12.146561+00 f t TOTAL 55000.00 3 8068 \N +319280 2025-09-23 11:23:12.14775+00 2025-09-23 11:23:12.147756+00 f t ADELANTO 11000.00 4 8068 \N +326789 2025-09-25 18:50:38.512848+00 2025-09-25 18:50:38.512859+00 f t SUBTOTAL 0.00 1 8261 \N +326790 2025-09-25 18:50:38.514545+00 2025-09-25 18:50:38.514556+00 f t DESCUENTO 0.00 2 8261 \N +326791 2025-09-25 18:50:38.51601+00 2025-09-25 18:50:38.516018+00 f t TOTAL 0.00 3 8261 \N +326792 2025-09-25 18:50:38.517313+00 2025-09-25 18:50:38.517321+00 f t ADELANTO 0.00 4 8261 \N +326877 2025-09-25 19:41:43.324041+00 2025-09-25 19:41:43.324049+00 f t SUBTOTAL 0.00 1 8264 \N +326878 2025-09-25 19:41:43.32584+00 2025-09-25 19:41:43.325848+00 f t DESCUENTO 0.00 2 8264 \N +326879 2025-09-25 19:41:43.32961+00 2025-09-25 19:41:43.329618+00 f t TOTAL 0.00 3 8264 \N +326880 2025-09-25 19:41:43.33094+00 2025-09-25 19:41:43.330946+00 f t ADELANTO 0.00 4 8264 \N +327533 2025-09-25 22:26:50.515542+00 2025-09-25 22:26:50.515551+00 f t SUBTOTAL 46000.00 1 8275 \N +327534 2025-09-25 22:26:50.517876+00 2025-09-25 22:26:50.517889+00 f t DESCUENTO 0.00 2 8275 \N +327535 2025-09-25 22:26:50.519606+00 2025-09-25 22:26:50.519614+00 f t TOTAL 46000.00 3 8275 \N +327536 2025-09-25 22:26:50.52158+00 2025-09-25 22:26:50.521587+00 f t ADELANTO 11000.00 4 8275 \N +313593 2025-09-21 18:26:36.854852+00 2025-09-21 18:26:36.854864+00 f t SUBTOTAL 46000.00 1 7944 \N +313594 2025-09-21 18:26:36.856924+00 2025-09-21 18:26:36.856935+00 f t DESCUENTO 0.00 2 7944 \N +313595 2025-09-21 18:26:36.858353+00 2025-09-21 18:26:36.858363+00 f t TOTAL 46000.00 3 7944 \N +313596 2025-09-21 18:26:36.859627+00 2025-09-21 18:26:36.859635+00 f t ADELANTO 11000.00 4 7944 \N +313757 2025-09-21 19:22:48.723291+00 2025-09-21 19:22:48.7233+00 f t SUBTOTAL 46000.00 1 7949 \N +313758 2025-09-21 19:22:48.725131+00 2025-09-21 19:22:48.725138+00 f t DESCUENTO 0.00 2 7949 \N +313759 2025-09-21 19:22:48.726376+00 2025-09-21 19:22:48.726383+00 f t TOTAL 46000.00 3 7949 \N +313760 2025-09-21 19:22:48.727947+00 2025-09-21 19:22:48.727956+00 f t ADELANTO 11000.00 4 7949 \N +313917 2025-09-21 19:37:36.780068+00 2025-09-21 19:37:36.780076+00 f t SUBTOTAL 76000.00 1 7953 \N +313918 2025-09-21 19:37:36.78209+00 2025-09-21 19:37:36.7821+00 f t DESCUENTO 0.00 2 7953 \N +313919 2025-09-21 19:37:36.783661+00 2025-09-21 19:37:36.7837+00 f t TOTAL 76000.00 3 7953 \N +313920 2025-09-21 19:37:36.785224+00 2025-09-21 19:37:36.785234+00 f t ADELANTO 11000.00 4 7953 \N +328385 2025-09-26 03:38:13.492607+00 2025-09-26 03:38:13.492616+00 f t SUBTOTAL 78000.00 1 8298 \N +328386 2025-09-26 03:38:13.494765+00 2025-09-26 03:38:13.494774+00 f t DESCUENTO 0.00 2 8298 \N +328387 2025-09-26 03:38:13.496413+00 2025-09-26 03:38:13.496422+00 f t TOTAL 78000.00 3 8298 \N +328388 2025-09-26 03:38:13.49799+00 2025-09-26 03:38:13.498+00 f t ADELANTO 13000.00 4 8298 \N +328549 2025-09-26 07:28:47.49465+00 2025-09-26 07:28:47.494664+00 f t SUBTOTAL 0.00 1 8303 \N +328550 2025-09-26 07:28:47.496583+00 2025-09-26 07:28:47.496596+00 f t DESCUENTO 0.00 2 8303 \N +328551 2025-09-26 07:28:47.49835+00 2025-09-26 07:28:47.498362+00 f t TOTAL 0.00 3 8303 \N +328552 2025-09-26 07:28:47.500198+00 2025-09-26 07:28:47.500209+00 f t ADELANTO 0.00 4 8303 \N +314157 2025-09-21 20:16:27.499094+00 2025-09-21 20:16:27.499107+00 f t SUBTOTAL 0.00 1 7957 \N +314158 2025-09-21 20:16:27.50128+00 2025-09-21 20:16:27.501291+00 f t DESCUENTO 0.00 2 7957 \N +314159 2025-09-21 20:16:27.502792+00 2025-09-21 20:16:27.502801+00 f t TOTAL 0.00 3 7957 \N +314160 2025-09-21 20:16:27.504429+00 2025-09-21 20:16:27.504438+00 f t ADELANTO 0.00 4 7957 \N +320949 2025-09-23 21:45:54.726613+00 2025-09-23 21:45:54.726621+00 f t SUBTOTAL 70000.00 1 8103 \N +320950 2025-09-23 21:45:54.728991+00 2025-09-23 21:45:54.729+00 f t DESCUENTO 0.00 2 8103 \N +320951 2025-09-23 21:45:54.730991+00 2025-09-23 21:45:54.731002+00 f t TOTAL 70000.00 3 8103 \N +320952 2025-09-23 21:45:54.732423+00 2025-09-23 21:45:54.732429+00 f t ADELANTO 19000.00 4 8103 \N +455966 2025-11-05 11:33:39.527293+00 2025-11-05 11:33:39.527298+00 f t ADELANTO 0.00 5 11450 \N +324461 2025-09-25 00:12:17.368547+00 2025-09-25 00:12:17.368556+00 f t SUBTOTAL 0.00 1 8207 \N +324462 2025-09-25 00:12:17.371447+00 2025-09-25 00:12:17.371462+00 f t DESCUENTO 0.00 2 8207 \N +324463 2025-09-25 00:12:17.3733+00 2025-09-25 00:12:17.373308+00 f t TOTAL 0.00 3 8207 \N +324464 2025-09-25 00:12:17.374809+00 2025-09-25 00:12:17.374815+00 f t ADELANTO 0.00 4 8207 \N +317249 2025-09-22 16:55:20.393141+00 2025-09-22 16:55:20.39315+00 f t SUBTOTAL 55000.00 1 8019 \N +317250 2025-09-22 16:55:20.395312+00 2025-09-22 16:55:20.395319+00 f t DESCUENTO 0.00 2 8019 \N +317251 2025-09-22 16:55:20.396818+00 2025-09-22 16:55:20.396825+00 f t TOTAL 55000.00 3 8019 \N +317252 2025-09-22 16:55:20.398392+00 2025-09-22 16:55:20.398399+00 f t ADELANTO 11000.00 4 8019 \N +363149 2025-10-08 01:05:27.15274+00 2025-10-08 01:05:27.152749+00 f t SUBTOTAL 70000.00 1 9126 \N +363150 2025-10-08 01:05:27.15477+00 2025-10-08 01:05:27.15478+00 f t DESCUENTO 0.00 2 9126 \N +363151 2025-10-08 01:05:27.156555+00 2025-10-08 01:05:27.156564+00 f t TOTAL 70000.00 3 9126 \N +363152 2025-10-08 01:05:27.158162+00 2025-10-08 01:05:27.158171+00 f t ADELANTO 19000.00 4 9126 \N +317637 2025-09-22 19:37:33.921466+00 2025-09-22 19:37:33.921475+00 f t SUBTOTAL 46000.00 1 8029 \N +317638 2025-09-22 19:37:33.923212+00 2025-09-22 19:37:33.923221+00 f t DESCUENTO 0.00 2 8029 \N +317639 2025-09-22 19:37:33.924483+00 2025-09-22 19:37:33.924491+00 f t TOTAL 46000.00 3 8029 \N +317640 2025-09-22 19:37:33.925605+00 2025-09-22 19:37:33.92561+00 f t ADELANTO 11000.00 4 8029 \N +318433 2025-09-22 23:37:01.855763+00 2025-09-22 23:37:01.855775+00 f t SUBTOTAL 30000.00 1 8047 \N +318434 2025-09-22 23:37:01.858162+00 2025-09-22 23:37:01.85817+00 f t DESCUENTO 0.00 2 8047 \N +318435 2025-09-22 23:37:01.859724+00 2025-09-22 23:37:01.859732+00 f t TOTAL 30000.00 3 8047 \N +318436 2025-09-22 23:37:01.861413+00 2025-09-22 23:37:01.861425+00 f t ADELANTO 30000.00 4 8047 \N +318533 2025-09-23 00:23:44.000652+00 2025-09-23 00:23:44.000665+00 f t SUBTOTAL 70000.00 1 8052 \N +318534 2025-09-23 00:23:44.00246+00 2025-09-23 00:23:44.002467+00 f t DESCUENTO 0.00 2 8052 \N +318535 2025-09-23 00:23:44.003783+00 2025-09-23 00:23:44.003788+00 f t TOTAL 70000.00 3 8052 \N +318536 2025-09-23 00:23:44.005245+00 2025-09-23 00:23:44.005251+00 f t ADELANTO 19000.00 4 8052 \N +326209 2025-09-25 16:00:57.749052+00 2025-09-25 16:00:57.749063+00 f t SUBTOTAL 13200.00 1 8174 \N +326210 2025-09-25 16:00:57.752151+00 2025-09-25 16:00:57.75216+00 f t DESCUENTO 0.00 2 8174 \N +326211 2025-09-25 16:00:57.754498+00 2025-09-25 16:00:57.754507+00 f t TOTAL 13200.00 3 8174 \N +326212 2025-09-25 16:00:57.756582+00 2025-09-25 16:00:57.756595+00 f t ADELANTO 13200.00 4 8174 \N +326305 2025-09-25 16:06:21.664662+00 2025-09-25 16:06:21.664674+00 f t SUBTOTAL 68000.00 1 8246 \N +326306 2025-09-25 16:06:21.667077+00 2025-09-25 16:06:21.667089+00 f t DESCUENTO 0.00 2 8246 \N +326307 2025-09-25 16:06:21.668943+00 2025-09-25 16:06:21.668954+00 f t TOTAL 68000.00 3 8246 \N +326308 2025-09-25 16:06:21.670588+00 2025-09-25 16:06:21.670598+00 f t ADELANTO 13000.00 4 8246 \N +326405 2025-09-25 16:27:33.418939+00 2025-09-25 16:27:33.418951+00 f t SUBTOTAL 39000.00 1 8248 \N +326406 2025-09-25 16:27:33.421032+00 2025-09-25 16:27:33.421042+00 f t DESCUENTO 0.00 2 8248 \N +326407 2025-09-25 16:27:33.422634+00 2025-09-25 16:27:33.422642+00 f t TOTAL 39000.00 3 8248 \N +326408 2025-09-25 16:27:33.424338+00 2025-09-25 16:27:33.424347+00 f t ADELANTO 39000.00 4 8248 \N +319285 2025-09-23 11:38:54.987739+00 2025-09-23 11:38:54.987748+00 f t SUBTOTAL 0.00 1 8069 \N +319286 2025-09-23 11:38:54.989315+00 2025-09-23 11:38:54.989323+00 f t DESCUENTO 0.00 2 8069 \N +319287 2025-09-23 11:38:54.99059+00 2025-09-23 11:38:54.990596+00 f t TOTAL 0.00 3 8069 \N +319288 2025-09-23 11:38:54.991533+00 2025-09-23 11:38:54.991539+00 f t ADELANTO 0.00 4 8069 \N +319365 2025-09-23 12:06:36.759292+00 2025-09-23 12:06:36.7593+00 f t SUBTOTAL 55000.00 1 8071 \N +319366 2025-09-23 12:06:36.761125+00 2025-09-23 12:06:36.761133+00 f t DESCUENTO 0.00 2 8071 \N +319367 2025-09-23 12:06:36.76252+00 2025-09-23 12:06:36.762527+00 f t TOTAL 55000.00 3 8071 \N +319368 2025-09-23 12:06:36.763807+00 2025-09-23 12:06:36.763813+00 f t ADELANTO 11000.00 4 8071 \N +326881 2025-09-25 19:45:17.485264+00 2025-09-25 19:45:17.485276+00 f t SUBTOTAL 55000.00 1 8254 \N +326882 2025-09-25 19:45:17.487228+00 2025-09-25 19:45:17.487235+00 f t DESCUENTO 0.00 2 8254 \N +326883 2025-09-25 19:45:17.488408+00 2025-09-25 19:45:17.488414+00 f t TOTAL 55000.00 3 8254 \N +326884 2025-09-25 19:45:17.489544+00 2025-09-25 19:45:17.48955+00 f t ADELANTO 11000.00 4 8254 \N +327453 2025-09-25 21:58:43.397374+00 2025-09-25 21:58:43.397383+00 f t SUBTOTAL 0.00 1 8273 \N +327454 2025-09-25 21:58:43.399856+00 2025-09-25 21:58:43.399865+00 f t DESCUENTO 0.00 2 8273 \N +327455 2025-09-25 21:58:43.401387+00 2025-09-25 21:58:43.401397+00 f t TOTAL 0.00 3 8273 \N +327456 2025-09-25 21:58:43.402809+00 2025-09-25 21:58:43.402816+00 f t ADELANTO 0.00 4 8273 \N +328141 2025-09-26 02:36:35.718084+00 2025-09-26 02:36:35.718097+00 f t SUBTOTAL 0.00 1 8292 \N +328142 2025-09-26 02:36:35.720299+00 2025-09-26 02:36:35.720308+00 f t DESCUENTO 0.00 2 8292 \N +328143 2025-09-26 02:36:35.721486+00 2025-09-26 02:36:35.721493+00 f t TOTAL 0.00 3 8292 \N +328144 2025-09-26 02:36:35.722696+00 2025-09-26 02:36:35.722702+00 f t ADELANTO 0.00 4 8292 \N +320889 2025-09-23 20:41:41.302188+00 2025-09-23 20:41:41.302197+00 f t SUBTOTAL 107000.00 1 8098 \N +320890 2025-09-23 20:41:41.304481+00 2025-09-23 20:41:41.304492+00 f t DESCUENTO 0.00 2 8098 \N +320891 2025-09-23 20:41:41.306362+00 2025-09-23 20:41:41.306372+00 f t TOTAL 107000.00 3 8098 \N +320892 2025-09-23 20:41:41.307848+00 2025-09-23 20:41:41.307857+00 f t ADELANTO 12000.00 4 8098 \N +320957 2025-09-23 21:53:19.17206+00 2025-09-23 21:53:19.172072+00 f t SUBTOTAL 0.00 1 8104 \N +320958 2025-09-23 21:53:19.173903+00 2025-09-23 21:53:19.173913+00 f t DESCUENTO 0.00 2 8104 \N +320959 2025-09-23 21:53:19.175762+00 2025-09-23 21:53:19.175773+00 f t TOTAL 0.00 3 8104 \N +320960 2025-09-23 21:53:19.177128+00 2025-09-23 21:53:19.177137+00 f t ADELANTO 0.00 4 8104 \N +321021 2025-09-23 22:38:25.118258+00 2025-09-23 22:38:25.118266+00 f t SUBTOTAL 0.00 1 8107 \N +321022 2025-09-23 22:38:25.120364+00 2025-09-23 22:38:25.12037+00 f t DESCUENTO 0.00 2 8107 \N +321023 2025-09-23 22:38:25.121357+00 2025-09-23 22:38:25.121362+00 f t TOTAL 0.00 3 8107 \N +321024 2025-09-23 22:38:25.122475+00 2025-09-23 22:38:25.122482+00 f t ADELANTO 0.00 4 8107 \N +321177 2025-09-23 23:01:22.839088+00 2025-09-23 23:01:22.839101+00 f t SUBTOTAL 99400.00 1 8110 \N +321178 2025-09-23 23:01:22.844266+00 2025-09-23 23:01:22.84428+00 f t DESCUENTO 0.00 2 8110 \N +321179 2025-09-23 23:01:22.846799+00 2025-09-23 23:01:22.846808+00 f t TOTAL 99400.00 3 8110 \N +321180 2025-09-23 23:01:22.84888+00 2025-09-23 23:01:22.848899+00 f t ADELANTO 58900.00 4 8110 \N +321297 2025-09-23 23:10:51.280159+00 2025-09-23 23:10:51.280168+00 f t SUBTOTAL 99400.00 1 8112 \N +321298 2025-09-23 23:10:51.282128+00 2025-09-23 23:10:51.282135+00 f t DESCUENTO 0.00 2 8112 \N +321299 2025-09-23 23:10:51.283718+00 2025-09-23 23:10:51.283725+00 f t TOTAL 99400.00 3 8112 \N +321300 2025-09-23 23:10:51.285222+00 2025-09-23 23:10:51.285231+00 f t ADELANTO 58900.00 4 8112 \N +321357 2025-09-23 23:24:47.687955+00 2025-09-23 23:24:47.687963+00 f t SUBTOTAL 115000.00 1 8114 \N +321358 2025-09-23 23:24:47.689682+00 2025-09-23 23:24:47.689688+00 f t DESCUENTO 0.00 2 8114 \N +321359 2025-09-23 23:24:47.690765+00 2025-09-23 23:24:47.69077+00 f t TOTAL 115000.00 3 8114 \N +321360 2025-09-23 23:24:47.692442+00 2025-09-23 23:24:47.692447+00 f t ADELANTO 25000.00 4 8114 \N +316741 2025-09-22 14:55:31.26491+00 2025-09-22 14:55:31.26492+00 f t SUBTOTAL 70000.00 1 8005 \N +316742 2025-09-22 14:55:31.266735+00 2025-09-22 14:55:31.266742+00 f t DESCUENTO 0.00 2 8005 \N +316743 2025-09-22 14:55:31.269679+00 2025-09-22 14:55:31.269686+00 f t TOTAL 70000.00 3 8005 \N +316744 2025-09-22 14:55:31.271086+00 2025-09-22 14:55:31.271092+00 f t ADELANTO 19000.00 4 8005 \N +338909 2025-09-29 20:09:49.065161+00 2025-09-29 20:09:49.065171+00 f t SUBTOTAL 46000.00 1 8544 \N +338910 2025-09-29 20:09:49.067285+00 2025-09-29 20:09:49.067294+00 f t DESCUENTO 0.00 2 8544 \N +338911 2025-09-29 20:09:49.068918+00 2025-09-29 20:09:49.068926+00 f t TOTAL 46000.00 3 8544 \N +338912 2025-09-29 20:09:49.070367+00 2025-09-29 20:09:49.070374+00 f t ADELANTO 11000.00 4 8544 \N +324197 2025-09-24 22:57:29.408363+00 2025-09-24 22:57:29.408372+00 f t SUBTOTAL 46000.00 1 8202 \N +324198 2025-09-24 22:57:29.410559+00 2025-09-24 22:57:29.410568+00 f t DESCUENTO 0.00 2 8202 \N +324199 2025-09-24 22:57:29.412309+00 2025-09-24 22:57:29.412318+00 f t TOTAL 46000.00 3 8202 \N +324200 2025-09-24 22:57:29.414066+00 2025-09-24 22:57:29.414075+00 f t ADELANTO 11000.00 4 8202 \N +314521 2025-09-21 21:07:29.468598+00 2025-09-21 21:07:29.468606+00 f t SUBTOTAL 76000.00 1 7960 \N +314522 2025-09-21 21:07:29.470308+00 2025-09-21 21:07:29.470314+00 f t DESCUENTO 0.00 2 7960 \N +314523 2025-09-21 21:07:29.471614+00 2025-09-21 21:07:29.471619+00 f t TOTAL 76000.00 3 7960 \N +314524 2025-09-21 21:07:29.472708+00 2025-09-21 21:07:29.472713+00 f t ADELANTO 11000.00 4 7960 \N +339085 2025-09-29 21:55:29.398058+00 2025-09-29 21:55:29.39807+00 f t SUBTOTAL 0.00 1 8551 \N +314537 2025-09-21 21:14:32.509414+00 2025-09-21 21:14:32.509425+00 f t SUBTOTAL 107400.00 1 7955 \N +314538 2025-09-21 21:14:32.511539+00 2025-09-21 21:14:32.511551+00 f t DESCUENTO 0.00 2 7955 \N +314539 2025-09-21 21:14:32.513014+00 2025-09-21 21:14:32.513023+00 f t TOTAL 107400.00 3 7955 \N +314540 2025-09-21 21:14:32.514468+00 2025-09-21 21:14:32.514476+00 f t ADELANTO 26400.00 4 7955 \N +317745 2025-09-22 20:52:43.476483+00 2025-09-22 20:52:43.476492+00 f t SUBTOTAL 55000.00 1 8034 \N +317746 2025-09-22 20:52:43.478474+00 2025-09-22 20:52:43.478482+00 f t DESCUENTO 0.00 2 8034 \N +317747 2025-09-22 20:52:43.479743+00 2025-09-22 20:52:43.479749+00 f t TOTAL 55000.00 3 8034 \N +317748 2025-09-22 20:52:43.48079+00 2025-09-22 20:52:43.480796+00 f t ADELANTO 11000.00 4 8034 \N +314565 2025-09-21 21:30:24.238829+00 2025-09-21 21:30:24.238842+00 f t SUBTOTAL 46000.00 1 7961 \N +314566 2025-09-21 21:30:24.242845+00 2025-09-21 21:30:24.242859+00 f t DESCUENTO 0.00 2 7961 \N +314567 2025-09-21 21:30:24.245472+00 2025-09-21 21:30:24.245484+00 f t TOTAL 46000.00 3 7961 \N +314568 2025-09-21 21:30:24.247376+00 2025-09-21 21:30:24.247475+00 f t ADELANTO 11000.00 4 7961 \N +317833 2025-09-22 21:15:59.345687+00 2025-09-22 21:15:59.345697+00 f t SUBTOTAL 0.00 1 8036 \N +317834 2025-09-22 21:15:59.347742+00 2025-09-22 21:15:59.34775+00 f t DESCUENTO 0.00 2 8036 \N +317835 2025-09-22 21:15:59.34892+00 2025-09-22 21:15:59.348929+00 f t TOTAL 0.00 3 8036 \N +317836 2025-09-22 21:15:59.350083+00 2025-09-22 21:15:59.35009+00 f t ADELANTO 0.00 4 8036 \N +314597 2025-09-21 21:38:08.45043+00 2025-09-21 21:38:08.450442+00 f t SUBTOTAL 55000.00 1 7962 \N +314598 2025-09-21 21:38:08.452672+00 2025-09-21 21:38:08.452683+00 f t DESCUENTO 0.00 2 7962 \N +314599 2025-09-21 21:38:08.454457+00 2025-09-21 21:38:08.454467+00 f t TOTAL 55000.00 3 7962 \N +314600 2025-09-21 21:38:08.460116+00 2025-09-21 21:38:08.460129+00 f t ADELANTO 11000.00 4 7962 \N +325993 2025-09-25 14:56:41.142955+00 2025-09-25 14:56:41.142967+00 f t SUBTOTAL 13200.00 1 8237 \N +325994 2025-09-25 14:56:41.145243+00 2025-09-25 14:56:41.145253+00 f t DESCUENTO 0.00 2 8237 \N +325995 2025-09-25 14:56:41.14694+00 2025-09-25 14:56:41.14695+00 f t TOTAL 13200.00 3 8237 \N +325996 2025-09-25 14:56:41.14857+00 2025-09-25 14:56:41.14858+00 f t ADELANTO 13200.00 4 8237 \N +333597 2025-09-28 00:29:35.255779+00 2025-09-28 00:29:35.255787+00 f t SUBTOTAL 55000.00 1 8418 \N +333598 2025-09-28 00:29:35.257614+00 2025-09-28 00:29:35.257621+00 f t DESCUENTO 0.00 2 8418 \N +333599 2025-09-28 00:29:35.259049+00 2025-09-28 00:29:35.259056+00 f t TOTAL 55000.00 3 8418 \N +333600 2025-09-28 00:29:35.260563+00 2025-09-28 00:29:35.260572+00 f t ADELANTO 11000.00 4 8418 \N +314625 2025-09-21 21:58:35.407842+00 2025-09-21 21:58:35.40785+00 f t SUBTOTAL 70000.00 1 7963 \N +314626 2025-09-21 21:58:35.409478+00 2025-09-21 21:58:35.409484+00 f t DESCUENTO 0.00 2 7963 \N +314627 2025-09-21 21:58:35.411444+00 2025-09-21 21:58:35.41145+00 f t TOTAL 70000.00 3 7963 \N +314628 2025-09-21 21:58:35.412476+00 2025-09-21 21:58:35.412483+00 f t ADELANTO 19000.00 4 7963 \N +326889 2025-09-25 19:52:27.556406+00 2025-09-25 19:52:27.556416+00 f t SUBTOTAL 0.00 1 8265 \N +326890 2025-09-25 19:52:27.557962+00 2025-09-25 19:52:27.557972+00 f t DESCUENTO 0.00 2 8265 \N +326891 2025-09-25 19:52:27.559367+00 2025-09-25 19:52:27.559373+00 f t TOTAL 0.00 3 8265 \N +326892 2025-09-25 19:52:27.560558+00 2025-09-25 19:52:27.560565+00 f t ADELANTO 0.00 4 8265 \N +319757 2025-09-23 15:46:24.22086+00 2025-09-23 15:46:24.22087+00 f t SUBTOTAL 13200.00 1 8024 \N +319758 2025-09-23 15:46:24.222715+00 2025-09-23 15:46:24.222724+00 f t DESCUENTO 0.00 2 8024 \N +319759 2025-09-23 15:46:24.224122+00 2025-09-23 15:46:24.224131+00 f t TOTAL 13200.00 3 8024 \N +319760 2025-09-23 15:46:24.225769+00 2025-09-23 15:46:24.225778+00 f t ADELANTO 13200.00 4 8024 \N +314697 2025-09-21 22:30:53.877924+00 2025-09-21 22:30:53.877932+00 f t SUBTOTAL 55000.00 1 7964 \N +314698 2025-09-21 22:30:53.879396+00 2025-09-21 22:30:53.879402+00 f t DESCUENTO 0.00 2 7964 \N +314699 2025-09-21 22:30:53.880468+00 2025-09-21 22:30:53.880474+00 f t TOTAL 55000.00 3 7964 \N +314700 2025-09-21 22:30:53.881535+00 2025-09-21 22:30:53.881541+00 f t ADELANTO 11000.00 4 7964 \N +327633 2025-09-25 23:15:42.328469+00 2025-09-25 23:15:42.32848+00 f t SUBTOTAL 0.00 1 8279 \N +327634 2025-09-25 23:15:42.331059+00 2025-09-25 23:15:42.33107+00 f t DESCUENTO 0.00 2 8279 \N +327635 2025-09-25 23:15:42.332908+00 2025-09-25 23:15:42.332919+00 f t TOTAL 0.00 3 8279 \N +327636 2025-09-25 23:15:42.334284+00 2025-09-25 23:15:42.334291+00 f t ADELANTO 0.00 4 8279 \N +314729 2025-09-21 22:33:01.234794+00 2025-09-21 22:33:01.234806+00 f t SUBTOTAL 78000.00 1 7965 \N +314730 2025-09-21 22:33:01.236829+00 2025-09-21 22:33:01.236838+00 f t DESCUENTO 0.00 2 7965 \N +314731 2025-09-21 22:33:01.238388+00 2025-09-21 22:33:01.238396+00 f t TOTAL 78000.00 3 7965 \N +314732 2025-09-21 22:33:01.239932+00 2025-09-21 22:33:01.239939+00 f t ADELANTO 21500.00 4 7965 \N +320897 2025-09-23 20:57:49.857133+00 2025-09-23 20:57:49.857143+00 f t SUBTOTAL 0.00 1 8101 \N +320898 2025-09-23 20:57:49.858556+00 2025-09-23 20:57:49.858562+00 f t DESCUENTO 0.00 2 8101 \N +320899 2025-09-23 20:57:49.859797+00 2025-09-23 20:57:49.859803+00 f t TOTAL 0.00 3 8101 \N +320900 2025-09-23 20:57:49.860859+00 2025-09-23 20:57:49.860864+00 f t ADELANTO 0.00 4 8101 \N +314765 2025-09-21 23:48:06.194314+00 2025-09-21 23:48:06.194327+00 f t SUBTOTAL 54000.00 1 7966 \N +314766 2025-09-21 23:48:06.196599+00 2025-09-21 23:48:06.19661+00 f t DESCUENTO 0.00 2 7966 \N +314767 2025-09-21 23:48:06.198561+00 2025-09-21 23:48:06.198573+00 f t TOTAL 54000.00 3 7966 \N +314768 2025-09-21 23:48:06.200446+00 2025-09-21 23:48:06.200457+00 f t ADELANTO 13500.00 4 7966 \N +320965 2025-09-23 22:24:04.375392+00 2025-09-23 22:24:04.375404+00 f t SUBTOTAL 0.00 1 8105 \N +320966 2025-09-23 22:24:04.377097+00 2025-09-23 22:24:04.377107+00 f t DESCUENTO 0.00 2 8105 \N +320967 2025-09-23 22:24:04.378728+00 2025-09-23 22:24:04.378738+00 f t TOTAL 0.00 3 8105 \N +320968 2025-09-23 22:24:04.380053+00 2025-09-23 22:24:04.380061+00 f t ADELANTO 0.00 4 8105 \N +317037 2025-09-22 16:05:16.101348+00 2025-09-22 16:05:16.101356+00 f t SUBTOTAL 70000.00 1 8013 \N +317038 2025-09-22 16:05:16.102994+00 2025-09-22 16:05:16.103001+00 f t DESCUENTO 0.00 2 8013 \N +317039 2025-09-22 16:05:16.104216+00 2025-09-22 16:05:16.104222+00 f t TOTAL 70000.00 3 8013 \N +317040 2025-09-22 16:05:16.105314+00 2025-09-22 16:05:16.105321+00 f t ADELANTO 19000.00 4 8013 \N +314825 2025-09-21 23:54:33.978445+00 2025-09-21 23:54:33.978457+00 f t SUBTOTAL 0.00 1 7967 \N +314826 2025-09-21 23:54:33.980663+00 2025-09-21 23:54:33.980673+00 f t DESCUENTO 0.00 2 7967 \N +314827 2025-09-21 23:54:33.984704+00 2025-09-21 23:54:33.984715+00 f t TOTAL 0.00 3 7967 \N +314828 2025-09-21 23:54:33.986405+00 2025-09-21 23:54:33.986414+00 f t ADELANTO 0.00 4 7967 \N +332481 2025-09-27 14:54:31.274457+00 2025-09-27 14:54:31.274468+00 f t SUBTOTAL 132900.00 1 8398 \N +332482 2025-09-27 14:54:31.276565+00 2025-09-27 14:54:31.276575+00 f t DESCUENTO 0.00 2 8398 \N +332483 2025-09-27 14:54:31.278035+00 2025-09-27 14:54:31.278044+00 f t TOTAL 132900.00 3 8398 \N +332484 2025-09-27 14:54:31.279442+00 2025-09-27 14:54:31.279451+00 f t ADELANTO 70900.00 4 8398 \N +325297 2025-09-25 06:42:14.462373+00 2025-09-25 06:42:14.462385+00 f t SUBTOTAL 55000.00 1 8217 \N +325298 2025-09-25 06:42:14.464893+00 2025-09-25 06:42:14.464902+00 f t DESCUENTO 0.00 2 8217 \N +325299 2025-09-25 06:42:14.466804+00 2025-09-25 06:42:14.466813+00 f t TOTAL 55000.00 3 8217 \N +325300 2025-09-25 06:42:14.468431+00 2025-09-25 06:42:14.468438+00 f t ADELANTO 11000.00 4 8217 \N +317841 2025-09-22 21:20:15.869363+00 2025-09-22 21:20:15.869372+00 f t SUBTOTAL 0.00 1 8037 \N +317842 2025-09-22 21:20:15.871615+00 2025-09-22 21:20:15.871623+00 f t DESCUENTO 0.00 2 8037 \N +317843 2025-09-22 21:20:15.87312+00 2025-09-22 21:20:15.873126+00 f t TOTAL 0.00 3 8037 \N +317844 2025-09-22 21:20:15.874593+00 2025-09-22 21:20:15.8746+00 f t ADELANTO 0.00 4 8037 \N +325649 2025-09-25 11:51:47.774267+00 2025-09-25 11:51:47.774279+00 f t SUBTOTAL 55000.00 1 8224 \N +325650 2025-09-25 11:51:47.776106+00 2025-09-25 11:51:47.776114+00 f t DESCUENTO 0.00 2 8224 \N +325651 2025-09-25 11:51:47.777957+00 2025-09-25 11:51:47.777966+00 f t TOTAL 55000.00 3 8224 \N +325652 2025-09-25 11:51:47.779449+00 2025-09-25 11:51:47.779455+00 f t ADELANTO 11000.00 4 8224 \N +325769 2025-09-25 13:17:38.960299+00 2025-09-25 13:17:38.960308+00 f t SUBTOTAL 55000.00 1 8229 \N +325770 2025-09-25 13:17:38.963767+00 2025-09-25 13:17:38.963775+00 f t DESCUENTO 0.00 2 8229 \N +325771 2025-09-25 13:17:38.966726+00 2025-09-25 13:17:38.966733+00 f t TOTAL 55000.00 3 8229 \N +325772 2025-09-25 13:17:38.968133+00 2025-09-25 13:17:38.968142+00 f t ADELANTO 11000.00 4 8229 \N +318441 2025-09-22 23:37:04.281226+00 2025-09-22 23:37:04.281235+00 f t SUBTOTAL 46000.00 1 8046 \N +318442 2025-09-22 23:37:04.288262+00 2025-09-22 23:37:04.288274+00 f t DESCUENTO 0.00 2 8046 \N +318443 2025-09-22 23:37:04.289756+00 2025-09-22 23:37:04.289762+00 f t TOTAL 46000.00 3 8046 \N +318444 2025-09-22 23:37:04.290978+00 2025-09-22 23:37:04.290986+00 f t ADELANTO 11000.00 4 8046 \N +326313 2025-09-25 16:06:29.703895+00 2025-09-25 16:06:29.703904+00 f t SUBTOTAL 0.00 1 8244 \N +326314 2025-09-25 16:06:29.705906+00 2025-09-25 16:06:29.705914+00 f t DESCUENTO 0.00 2 8244 \N +326315 2025-09-25 16:06:29.707097+00 2025-09-25 16:06:29.707103+00 f t TOTAL 0.00 3 8244 \N +326316 2025-09-25 16:06:29.708315+00 2025-09-25 16:06:29.70832+00 f t ADELANTO 0.00 4 8244 \N +326417 2025-09-25 16:35:52.902799+00 2025-09-25 16:35:52.902811+00 f t SUBTOTAL 115000.00 1 8249 \N +326418 2025-09-25 16:35:52.924913+00 2025-09-25 16:35:52.924926+00 f t DESCUENTO 0.00 2 8249 \N +326419 2025-09-25 16:35:52.927316+00 2025-09-25 16:35:52.92733+00 f t TOTAL 115000.00 3 8249 \N +326420 2025-09-25 16:35:52.929339+00 2025-09-25 16:35:52.929352+00 f t ADELANTO 25000.00 4 8249 \N +326609 2025-09-25 17:40:07.406024+00 2025-09-25 17:40:07.406039+00 f t SUBTOTAL 70000.00 1 8255 \N +326610 2025-09-25 17:40:07.411409+00 2025-09-25 17:40:07.411423+00 f t DESCUENTO 0.00 2 8255 \N +326611 2025-09-25 17:40:07.415098+00 2025-09-25 17:40:07.415111+00 f t TOTAL 70000.00 3 8255 \N +326612 2025-09-25 17:40:07.418508+00 2025-09-25 17:40:07.418522+00 f t ADELANTO 19000.00 4 8255 \N +314945 2025-09-21 23:59:25.136297+00 2025-09-21 23:59:25.136307+00 f t SUBTOTAL 46000.00 1 7968 \N +314946 2025-09-21 23:59:25.144109+00 2025-09-21 23:59:25.144117+00 f t DESCUENTO 0.00 2 7968 \N +314947 2025-09-21 23:59:25.145774+00 2025-09-21 23:59:25.145781+00 f t TOTAL 46000.00 3 7968 \N +314948 2025-09-21 23:59:25.147371+00 2025-09-21 23:59:25.147378+00 f t ADELANTO 11000.00 4 7968 \N +319845 2025-09-23 16:19:54.022125+00 2025-09-23 16:19:54.022134+00 f t SUBTOTAL 0.00 1 8084 \N +319846 2025-09-23 16:19:54.024633+00 2025-09-23 16:19:54.02464+00 f t DESCUENTO 0.00 2 8084 \N +319847 2025-09-23 16:19:54.025796+00 2025-09-23 16:19:54.025805+00 f t TOTAL 0.00 3 8084 \N +319848 2025-09-23 16:19:54.026999+00 2025-09-23 16:19:54.027005+00 f t ADELANTO 0.00 4 8084 \N +314973 2025-09-22 00:01:08.131457+00 2025-09-22 00:01:08.131466+00 f t SUBTOTAL 55000.00 1 7969 \N +314974 2025-09-22 00:01:08.133499+00 2025-09-22 00:01:08.133509+00 f t DESCUENTO 0.00 2 7969 \N +314975 2025-09-22 00:01:08.135396+00 2025-09-22 00:01:08.13541+00 f t TOTAL 55000.00 3 7969 \N +314976 2025-09-22 00:01:08.137244+00 2025-09-22 00:01:08.137255+00 f t ADELANTO 11000.00 4 7969 \N +320757 2025-09-23 19:36:54.926382+00 2025-09-23 19:36:54.926394+00 f t SUBTOTAL 68000.00 1 8097 \N +320758 2025-09-23 19:36:54.928687+00 2025-09-23 19:36:54.928697+00 f t DESCUENTO 0.00 2 8097 \N +320759 2025-09-23 19:36:54.930246+00 2025-09-23 19:36:54.930253+00 f t TOTAL 68000.00 3 8097 \N +320760 2025-09-23 19:36:54.931696+00 2025-09-23 19:36:54.931703+00 f t ADELANTO 13000.00 4 8097 \N +320905 2025-09-23 21:08:48.941394+00 2025-09-23 21:08:48.941403+00 f t SUBTOTAL 0.00 1 8102 \N +320906 2025-09-23 21:08:48.942834+00 2025-09-23 21:08:48.94284+00 f t DESCUENTO 0.00 2 8102 \N +320907 2025-09-23 21:08:48.943967+00 2025-09-23 21:08:48.943973+00 f t TOTAL 0.00 3 8102 \N +320908 2025-09-23 21:08:48.944896+00 2025-09-23 21:08:48.944901+00 f t ADELANTO 0.00 4 8102 \N +315045 2025-09-22 00:29:25.102254+00 2025-09-22 00:29:25.102263+00 f t SUBTOTAL 46000.00 1 7970 \N +315046 2025-09-22 00:29:25.104509+00 2025-09-22 00:29:25.104516+00 f t DESCUENTO 0.00 2 7970 \N +315047 2025-09-22 00:29:25.105727+00 2025-09-22 00:29:25.105733+00 f t TOTAL 46000.00 3 7970 \N +315048 2025-09-22 00:29:25.10921+00 2025-09-22 00:29:25.109217+00 f t ADELANTO 11000.00 4 7970 \N +315053 2025-09-22 01:12:57.187613+00 2025-09-22 01:12:57.187626+00 f t SUBTOTAL 0.00 1 7971 \N +315054 2025-09-22 01:12:57.189454+00 2025-09-22 01:12:57.189464+00 f t DESCUENTO 0.00 2 7971 \N +315055 2025-09-22 01:12:57.198754+00 2025-09-22 01:12:57.198768+00 f t TOTAL 0.00 3 7971 \N +315056 2025-09-22 01:12:57.200715+00 2025-09-22 01:12:57.200725+00 f t ADELANTO 0.00 4 7971 \N +321133 2025-09-23 22:55:31.40033+00 2025-09-23 22:55:31.400338+00 f t SUBTOTAL 46000.00 1 8109 \N +321134 2025-09-23 22:55:31.402382+00 2025-09-23 22:55:31.402392+00 f t DESCUENTO 0.00 2 8109 \N +321135 2025-09-23 22:55:31.403776+00 2025-09-23 22:55:31.403782+00 f t TOTAL 46000.00 3 8109 \N +321136 2025-09-23 22:55:31.40505+00 2025-09-23 22:55:31.405056+00 f t ADELANTO 11000.00 4 8109 \N +315085 2025-09-22 01:15:31.383813+00 2025-09-22 01:15:31.383825+00 f t SUBTOTAL 46000.00 1 7972 \N +315086 2025-09-22 01:15:31.390336+00 2025-09-22 01:15:31.390345+00 f t DESCUENTO 0.00 2 7972 \N +315087 2025-09-22 01:15:31.392347+00 2025-09-22 01:15:31.392355+00 f t TOTAL 46000.00 3 7972 \N +315088 2025-09-22 01:15:31.394022+00 2025-09-22 01:15:31.394033+00 f t ADELANTO 11000.00 4 7972 \N +315093 2025-09-22 01:30:45.18604+00 2025-09-22 01:30:45.186048+00 f t SUBTOTAL 0.00 1 7973 \N +315094 2025-09-22 01:30:45.18744+00 2025-09-22 01:30:45.187446+00 f t DESCUENTO 0.00 2 7973 \N +315095 2025-09-22 01:30:45.188531+00 2025-09-22 01:30:45.188536+00 f t TOTAL 0.00 3 7973 \N +315096 2025-09-22 01:30:45.189569+00 2025-09-22 01:30:45.189574+00 f t ADELANTO 0.00 4 7973 \N +315101 2025-09-22 01:58:00.633075+00 2025-09-22 01:58:00.633084+00 f t SUBTOTAL 0.00 1 7974 \N +315102 2025-09-22 01:58:00.635163+00 2025-09-22 01:58:00.635172+00 f t DESCUENTO 0.00 2 7974 \N +315103 2025-09-22 01:58:00.6366+00 2025-09-22 01:58:00.636607+00 f t TOTAL 0.00 3 7974 \N +315104 2025-09-22 01:58:00.637729+00 2025-09-22 01:58:00.637735+00 f t ADELANTO 0.00 4 7974 \N +355061 2025-10-05 21:19:45.847402+00 2025-10-05 21:19:45.84741+00 f t SUBTOTAL 46000.00 1 8934 \N +355062 2025-10-05 21:19:45.849501+00 2025-10-05 21:19:45.849509+00 f t DESCUENTO 0.00 2 8934 \N +355063 2025-10-05 21:19:45.850716+00 2025-10-05 21:19:45.850724+00 f t TOTAL 46000.00 3 8934 \N +355064 2025-10-05 21:19:45.851985+00 2025-10-05 21:19:45.85199+00 f t ADELANTO 11000.00 4 8934 \N +332217 2025-09-27 14:19:18.323213+00 2025-09-27 14:19:18.323221+00 f t SUBTOTAL 132900.00 1 8393 \N +332218 2025-09-27 14:19:18.32537+00 2025-09-27 14:19:18.325378+00 f t DESCUENTO 0.00 2 8393 \N +332219 2025-09-27 14:19:18.326708+00 2025-09-27 14:19:18.326714+00 f t TOTAL 132900.00 3 8393 \N +332220 2025-09-27 14:19:18.328292+00 2025-09-27 14:19:18.328298+00 f t ADELANTO 70900.00 4 8393 \N +317365 2025-09-22 17:08:25.12899+00 2025-09-22 17:08:25.129002+00 f t SUBTOTAL 115000.00 1 8022 \N +317366 2025-09-22 17:08:25.130908+00 2025-09-22 17:08:25.130917+00 f t DESCUENTO 0.00 2 8022 \N +317367 2025-09-22 17:08:25.132208+00 2025-09-22 17:08:25.132217+00 f t TOTAL 115000.00 3 8022 \N +317368 2025-09-22 17:08:25.133496+00 2025-09-22 17:08:25.133502+00 f t ADELANTO 25000.00 4 8022 \N +315129 2025-09-22 02:03:09.084411+00 2025-09-22 02:03:09.084423+00 f t SUBTOTAL 46000.00 1 7975 \N +315130 2025-09-22 02:03:09.086336+00 2025-09-22 02:03:09.086344+00 f t DESCUENTO 0.00 2 7975 \N +315131 2025-09-22 02:03:09.087878+00 2025-09-22 02:03:09.087884+00 f t TOTAL 46000.00 3 7975 \N +315132 2025-09-22 02:03:09.089105+00 2025-09-22 02:03:09.089111+00 f t ADELANTO 11000.00 4 7975 \N +317569 2025-09-22 19:36:19.441275+00 2025-09-22 19:36:19.441285+00 f t SUBTOTAL 0.00 1 8030 \N +317570 2025-09-22 19:36:19.449521+00 2025-09-22 19:36:19.449534+00 f t DESCUENTO 0.00 2 8030 \N +317571 2025-09-22 19:36:19.45118+00 2025-09-22 19:36:19.451186+00 f t TOTAL 0.00 3 8030 \N +317572 2025-09-22 19:36:19.452265+00 2025-09-22 19:36:19.45227+00 f t ADELANTO 0.00 4 8030 \N +325189 2025-09-25 06:10:08.653913+00 2025-09-25 06:10:08.653927+00 f t SUBTOTAL 55000.00 1 8216 \N +325190 2025-09-25 06:10:08.657797+00 2025-09-25 06:10:08.657811+00 f t DESCUENTO 0.00 2 8216 \N +325191 2025-09-25 06:10:08.660588+00 2025-09-25 06:10:08.660602+00 f t TOTAL 55000.00 3 8216 \N +325192 2025-09-25 06:10:08.663674+00 2025-09-25 06:10:08.663689+00 f t ADELANTO 11000.00 4 8216 \N +325657 2025-09-25 13:07:50.244196+00 2025-09-25 13:07:50.244207+00 f t SUBTOTAL 0.00 1 8225 \N +325658 2025-09-25 13:07:50.245953+00 2025-09-25 13:07:50.245961+00 f t DESCUENTO 0.00 2 8225 \N +325659 2025-09-25 13:07:50.247631+00 2025-09-25 13:07:50.247636+00 f t TOTAL 0.00 3 8225 \N +325660 2025-09-25 13:07:50.248957+00 2025-09-25 13:07:50.248965+00 f t ADELANTO 0.00 4 8225 \N +318721 2025-09-23 01:08:23.396756+00 2025-09-23 01:08:23.396765+00 f t SUBTOTAL 132900.00 1 8056 \N +318722 2025-09-23 01:08:23.398851+00 2025-09-23 01:08:23.398859+00 f t DESCUENTO 0.00 2 8056 \N +318723 2025-09-23 01:08:23.400542+00 2025-09-23 01:08:23.400551+00 f t TOTAL 132900.00 3 8056 \N +318724 2025-09-23 01:08:23.402229+00 2025-09-23 01:08:23.402236+00 f t ADELANTO 70900.00 4 8056 \N +319137 2025-09-23 11:12:39.5884+00 2025-09-23 11:12:39.588408+00 f t SUBTOTAL 206400.00 1 8065 \N +319138 2025-09-23 11:12:39.590084+00 2025-09-23 11:12:39.590091+00 f t DESCUENTO 0.00 2 8065 \N +319139 2025-09-23 11:12:39.59277+00 2025-09-23 11:12:39.592777+00 f t TOTAL 206400.00 3 8065 \N +319140 2025-09-23 11:12:39.594076+00 2025-09-23 11:12:39.594085+00 f t ADELANTO 70900.00 4 8065 \N +326709 2025-09-25 18:34:10.767823+00 2025-09-25 18:34:10.767835+00 f t SUBTOTAL 55000.00 1 8258 \N +326710 2025-09-25 18:34:10.770279+00 2025-09-25 18:34:10.770291+00 f t DESCUENTO 0.00 2 8258 \N +326711 2025-09-25 18:34:10.772116+00 2025-09-25 18:34:10.772123+00 f t TOTAL 55000.00 3 8258 \N +326712 2025-09-25 18:34:10.773921+00 2025-09-25 18:34:10.773937+00 f t ADELANTO 11000.00 4 8258 \N +326897 2025-09-25 20:03:27.49397+00 2025-09-25 20:03:27.493982+00 f t SUBTOTAL 0.00 1 8266 \N +326898 2025-09-25 20:03:27.495653+00 2025-09-25 20:03:27.495663+00 f t DESCUENTO 0.00 2 8266 \N +326899 2025-09-25 20:03:27.497059+00 2025-09-25 20:03:27.497067+00 f t TOTAL 0.00 3 8266 \N +326900 2025-09-25 20:03:27.498252+00 2025-09-25 20:03:27.498258+00 f t ADELANTO 0.00 4 8266 \N +315253 2025-09-22 03:04:57.602499+00 2025-09-22 03:04:57.602508+00 f t SUBTOTAL 46000.00 1 7976 \N +315254 2025-09-22 03:04:57.604196+00 2025-09-22 03:04:57.604204+00 f t DESCUENTO 0.00 2 7976 \N +315255 2025-09-22 03:04:57.605516+00 2025-09-22 03:04:57.605522+00 f t TOTAL 46000.00 3 7976 \N +315256 2025-09-22 03:04:57.606665+00 2025-09-22 03:04:57.606671+00 f t ADELANTO 11000.00 4 7976 \N +315285 2025-09-22 03:14:30.56293+00 2025-09-22 03:14:30.562939+00 f t SUBTOTAL 55000.00 1 7977 \N +315286 2025-09-22 03:14:30.564685+00 2025-09-22 03:14:30.564693+00 f t DESCUENTO 0.00 2 7977 \N +315287 2025-09-22 03:14:30.565888+00 2025-09-22 03:14:30.565894+00 f t TOTAL 55000.00 3 7977 \N +315288 2025-09-22 03:14:30.566971+00 2025-09-22 03:14:30.566976+00 f t ADELANTO 11000.00 4 7977 \N +315293 2025-09-22 07:03:16.676655+00 2025-09-22 07:03:16.676668+00 f t SUBTOTAL 0.00 1 7978 \N +315294 2025-09-22 07:03:16.678407+00 2025-09-22 07:03:16.678418+00 f t DESCUENTO 0.00 2 7978 \N +315295 2025-09-22 07:03:16.679915+00 2025-09-22 07:03:16.679924+00 f t TOTAL 0.00 3 7978 \N +315296 2025-09-22 07:03:16.681326+00 2025-09-22 07:03:16.681335+00 f t ADELANTO 0.00 4 7978 \N +327721 2025-09-25 23:40:40.792373+00 2025-09-25 23:40:40.792384+00 f t SUBTOTAL 98400.00 1 8281 \N +327722 2025-09-25 23:40:40.794674+00 2025-09-25 23:40:40.794684+00 f t DESCUENTO 0.00 2 8281 \N +327723 2025-09-25 23:40:40.796412+00 2025-09-25 23:40:40.796422+00 f t TOTAL 98400.00 3 8281 \N +327724 2025-09-25 23:40:40.798152+00 2025-09-25 23:40:40.798163+00 f t ADELANTO 57900.00 4 8281 \N +320517 2025-09-23 18:48:28.56784+00 2025-09-23 18:48:28.567849+00 f t SUBTOTAL 55000.00 1 8092 \N +320518 2025-09-23 18:48:28.569609+00 2025-09-23 18:48:28.569616+00 f t DESCUENTO 0.00 2 8092 \N +320519 2025-09-23 18:48:28.570734+00 2025-09-23 18:48:28.57074+00 f t TOTAL 55000.00 3 8092 \N +320520 2025-09-23 18:48:28.572183+00 2025-09-23 18:48:28.572193+00 f t ADELANTO 11000.00 4 8092 \N +328473 2025-09-26 04:24:47.129665+00 2025-09-26 04:24:47.129676+00 f t SUBTOTAL 46000.00 1 8300 \N +328474 2025-09-26 04:24:47.131714+00 2025-09-26 04:24:47.131724+00 f t DESCUENTO 0.00 2 8300 \N +328475 2025-09-26 04:24:47.133182+00 2025-09-26 04:24:47.133189+00 f t TOTAL 46000.00 3 8300 \N +328476 2025-09-26 04:24:47.134412+00 2025-09-26 04:24:47.134417+00 f t ADELANTO 11000.00 4 8300 \N +329001 2025-09-26 12:42:55.028414+00 2025-09-26 12:42:55.028427+00 f t SUBTOTAL 54000.00 1 8314 \N +329002 2025-09-26 12:42:55.030459+00 2025-09-26 12:42:55.03047+00 f t DESCUENTO 0.00 2 8314 \N +329003 2025-09-26 12:42:55.031885+00 2025-09-26 12:42:55.031892+00 f t TOTAL 54000.00 3 8314 \N +329004 2025-09-26 12:42:55.032995+00 2025-09-26 12:42:55.033001+00 f t ADELANTO 13500.00 4 8314 \N +315405 2025-09-22 08:03:29.434656+00 2025-09-22 08:03:29.434665+00 f t SUBTOTAL 0.00 1 7979 \N +315406 2025-09-22 08:03:29.436605+00 2025-09-22 08:03:29.436613+00 f t DESCUENTO 0.00 2 7979 \N +315407 2025-09-22 08:03:29.437887+00 2025-09-22 08:03:29.437894+00 f t TOTAL 0.00 3 7979 \N +315408 2025-09-22 08:03:29.439246+00 2025-09-22 08:03:29.439252+00 f t ADELANTO 0.00 4 7979 \N +324957 2025-09-25 04:03:45.514187+00 2025-09-25 04:03:45.514195+00 f t SUBTOTAL 70000.00 1 8214 \N +324958 2025-09-25 04:03:45.516326+00 2025-09-25 04:03:45.516336+00 f t DESCUENTO 0.00 2 8214 \N +324959 2025-09-25 04:03:45.518115+00 2025-09-25 04:03:45.518122+00 f t TOTAL 70000.00 3 8214 \N +324960 2025-09-25 04:03:45.519435+00 2025-09-25 04:03:45.519441+00 f t ADELANTO 19000.00 4 8214 \N +332821 2025-09-27 16:02:43.250187+00 2025-09-27 16:02:43.250196+00 f t SUBTOTAL 0.00 1 8403 \N +332822 2025-09-27 16:02:43.253341+00 2025-09-27 16:02:43.25335+00 f t DESCUENTO 0.00 2 8403 \N +332823 2025-09-27 16:02:43.256262+00 2025-09-27 16:02:43.25627+00 f t TOTAL 0.00 3 8403 \N +332824 2025-09-27 16:02:43.257915+00 2025-09-27 16:02:43.257921+00 f t ADELANTO 0.00 4 8403 \N +333029 2025-09-27 16:33:05.019018+00 2025-09-27 16:33:05.019033+00 f t SUBTOTAL 70000.00 1 8406 \N +333030 2025-09-27 16:33:05.02195+00 2025-09-27 16:33:05.021962+00 f t DESCUENTO 0.00 2 8406 \N +333031 2025-09-27 16:33:05.024011+00 2025-09-27 16:33:05.024024+00 f t TOTAL 70000.00 3 8406 \N +333032 2025-09-27 16:33:05.026337+00 2025-09-27 16:33:05.026349+00 f t ADELANTO 19000.00 4 8406 \N +315445 2025-09-22 08:34:14.877242+00 2025-09-22 08:34:14.877251+00 f t SUBTOTAL 55000.00 1 7980 \N +315446 2025-09-22 08:34:14.878783+00 2025-09-22 08:34:14.87879+00 f t DESCUENTO 0.00 2 7980 \N +315447 2025-09-22 08:34:14.879913+00 2025-09-22 08:34:14.879919+00 f t TOTAL 55000.00 3 7980 \N +315448 2025-09-22 08:34:14.881034+00 2025-09-22 08:34:14.881039+00 f t ADELANTO 11000.00 4 7980 \N +325665 2025-09-25 13:08:35.437143+00 2025-09-25 13:08:35.437154+00 f t SUBTOTAL 0.00 1 8226 \N +325666 2025-09-25 13:08:35.438708+00 2025-09-25 13:08:35.438717+00 f t DESCUENTO 0.00 2 8226 \N +325667 2025-09-25 13:08:35.439958+00 2025-09-25 13:08:35.439965+00 f t TOTAL 0.00 3 8226 \N +325668 2025-09-25 13:08:35.441023+00 2025-09-25 13:08:35.44103+00 f t ADELANTO 0.00 4 8226 \N +325781 2025-09-25 13:36:16.744267+00 2025-09-25 13:36:16.744279+00 f t SUBTOTAL 55000.00 1 8120 \N +325782 2025-09-25 13:36:16.746678+00 2025-09-25 13:36:16.746691+00 f t DESCUENTO 0.00 2 8120 \N +325783 2025-09-25 13:36:16.748566+00 2025-09-25 13:36:16.748578+00 f t TOTAL 55000.00 3 8120 \N +325784 2025-09-25 13:36:16.750367+00 2025-09-25 13:36:16.750378+00 f t ADELANTO 11000.00 4 8120 \N +325893 2025-09-25 14:23:33.811984+00 2025-09-25 14:23:33.811993+00 f t SUBTOTAL 0.00 1 8233 \N +325894 2025-09-25 14:23:33.814386+00 2025-09-25 14:23:33.814397+00 f t DESCUENTO 0.00 2 8233 \N +325895 2025-09-25 14:23:33.815794+00 2025-09-25 14:23:33.815801+00 f t TOTAL 0.00 3 8233 \N +325896 2025-09-25 14:23:33.817051+00 2025-09-25 14:23:33.817057+00 f t ADELANTO 0.00 4 8233 \N +326013 2025-09-25 15:20:51.273206+00 2025-09-25 15:20:51.273217+00 f t SUBTOTAL 133500.00 1 8238 \N +326014 2025-09-25 15:20:51.277196+00 2025-09-25 15:20:51.277204+00 f t DESCUENTO 0.00 2 8238 \N +326015 2025-09-25 15:20:51.278558+00 2025-09-25 15:20:51.278565+00 f t TOTAL 133500.00 3 8238 \N +326016 2025-09-25 15:20:51.279817+00 2025-09-25 15:20:51.279822+00 f t ADELANTO 28500.00 4 8238 \N +318457 2025-09-22 23:38:38.936816+00 2025-09-22 23:38:38.936825+00 f t SUBTOTAL 0.00 1 8049 \N +318458 2025-09-22 23:38:38.938131+00 2025-09-22 23:38:38.938138+00 f t DESCUENTO 0.00 2 8049 \N +318459 2025-09-22 23:38:38.939408+00 2025-09-22 23:38:38.939414+00 f t TOTAL 0.00 3 8049 \N +318460 2025-09-22 23:38:38.940427+00 2025-09-22 23:38:38.940432+00 f t ADELANTO 0.00 4 8049 \N +315477 2025-09-22 09:15:12.177785+00 2025-09-22 09:15:12.177794+00 f t SUBTOTAL 0.00 1 7981 \N +315478 2025-09-22 09:15:12.179857+00 2025-09-22 09:15:12.179864+00 f t DESCUENTO 0.00 2 7981 \N +315479 2025-09-22 09:15:12.181228+00 2025-09-22 09:15:12.181235+00 f t TOTAL 0.00 3 7981 \N +315480 2025-09-22 09:15:12.182219+00 2025-09-22 09:15:12.182224+00 f t ADELANTO 0.00 4 7981 \N +326521 2025-09-25 17:27:01.152324+00 2025-09-25 17:27:01.152336+00 f t SUBTOTAL 54000.00 1 8252 \N +326522 2025-09-25 17:27:01.154651+00 2025-09-25 17:27:01.154662+00 f t DESCUENTO 0.00 2 8252 \N +326523 2025-09-25 17:27:01.156421+00 2025-09-25 17:27:01.156431+00 f t TOTAL 54000.00 3 8252 \N +326524 2025-09-25 17:27:01.158321+00 2025-09-25 17:27:01.158331+00 f t ADELANTO 13500.00 4 8252 \N +326617 2025-09-25 17:42:25.561928+00 2025-09-25 17:42:25.561941+00 f t SUBTOTAL 55000.00 1 8212 \N +326618 2025-09-25 17:42:25.564627+00 2025-09-25 17:42:25.564637+00 f t DESCUENTO 0.00 2 8212 \N +326619 2025-09-25 17:42:25.566088+00 2025-09-25 17:42:25.566096+00 f t TOTAL 55000.00 3 8212 \N +326620 2025-09-25 17:42:25.567594+00 2025-09-25 17:42:25.567601+00 f t ADELANTO 11000.00 4 8212 \N +319145 2025-09-23 11:15:13.94209+00 2025-09-23 11:15:13.942128+00 f t SUBTOTAL 0.00 1 8066 \N +319146 2025-09-23 11:15:13.943785+00 2025-09-23 11:15:13.943792+00 f t DESCUENTO 0.00 2 8066 \N +319147 2025-09-23 11:15:13.945514+00 2025-09-23 11:15:13.945526+00 f t TOTAL 0.00 3 8066 \N +319148 2025-09-23 11:15:13.947221+00 2025-09-23 11:15:13.94723+00 f t ADELANTO 0.00 4 8066 \N +315521 2025-09-22 09:44:04.969482+00 2025-09-22 09:44:04.96949+00 f t SUBTOTAL 68000.00 1 7982 \N +315522 2025-09-22 09:44:04.971176+00 2025-09-22 09:44:04.971182+00 f t DESCUENTO 0.00 2 7982 \N +315523 2025-09-22 09:44:04.97264+00 2025-09-22 09:44:04.972648+00 f t TOTAL 68000.00 3 7982 \N +315524 2025-09-22 09:44:04.974325+00 2025-09-22 09:44:04.974333+00 f t ADELANTO 13000.00 4 7982 \N +319613 2025-09-23 14:00:14.854616+00 2025-09-23 14:00:14.854637+00 f t SUBTOTAL 75000.00 1 8077 \N +319614 2025-09-23 14:00:14.858081+00 2025-09-23 14:00:14.858094+00 f t DESCUENTO 0.00 2 8077 \N +319615 2025-09-23 14:00:14.860892+00 2025-09-23 14:00:14.860903+00 f t TOTAL 75000.00 3 8077 \N +319616 2025-09-23 14:00:14.863439+00 2025-09-23 14:00:14.863449+00 f t ADELANTO 15000.00 4 8077 \N +327813 2025-09-25 23:56:20.723322+00 2025-09-25 23:56:20.723334+00 f t SUBTOTAL 55000.00 1 8284 \N +327814 2025-09-25 23:56:20.725783+00 2025-09-25 23:56:20.725794+00 f t DESCUENTO 0.00 2 8284 \N +327815 2025-09-25 23:56:20.727548+00 2025-09-25 23:56:20.727558+00 f t TOTAL 55000.00 3 8284 \N +327816 2025-09-25 23:56:20.729019+00 2025-09-25 23:56:20.729028+00 f t ADELANTO 11000.00 4 8284 \N +315593 2025-09-22 09:55:40.314066+00 2025-09-22 09:55:40.314077+00 f t SUBTOTAL 55000.00 1 7983 \N +315594 2025-09-22 09:55:40.315767+00 2025-09-22 09:55:40.315776+00 f t DESCUENTO 0.00 2 7983 \N +315595 2025-09-22 09:55:40.317049+00 2025-09-22 09:55:40.317058+00 f t TOTAL 55000.00 3 7983 \N +315596 2025-09-22 09:55:40.31842+00 2025-09-22 09:55:40.318428+00 f t ADELANTO 11000.00 4 7983 \N +328233 2025-09-26 02:46:01.487098+00 2025-09-26 02:46:01.487109+00 f t SUBTOTAL 55000.00 1 8294 \N +328234 2025-09-26 02:46:01.489423+00 2025-09-26 02:46:01.489432+00 f t DESCUENTO 0.00 2 8294 \N +328235 2025-09-26 02:46:01.491253+00 2025-09-26 02:46:01.491262+00 f t TOTAL 55000.00 3 8294 \N +328236 2025-09-26 02:46:01.492903+00 2025-09-26 02:46:01.492911+00 f t ADELANTO 11000.00 4 8294 \N +329077 2025-09-26 13:14:11.082975+00 2025-09-26 13:14:11.082988+00 f t SUBTOTAL 78000.00 1 8316 \N +329078 2025-09-26 13:14:11.084856+00 2025-09-26 13:14:11.084865+00 f t DESCUENTO 0.00 2 8316 \N +329079 2025-09-26 13:14:11.086222+00 2025-09-26 13:14:11.086228+00 f t TOTAL 78000.00 3 8316 \N +329080 2025-09-26 13:14:11.087351+00 2025-09-26 13:14:11.087357+00 f t ADELANTO 21500.00 4 8316 \N +324057 2025-09-24 22:25:25.291294+00 2025-09-24 22:25:25.291307+00 f t SUBTOTAL 132900.00 1 8197 \N +324058 2025-09-24 22:25:25.293781+00 2025-09-24 22:25:25.293792+00 f t DESCUENTO 0.00 2 8197 \N +324059 2025-09-24 22:25:25.295881+00 2025-09-24 22:25:25.295894+00 f t TOTAL 132900.00 3 8197 \N +324060 2025-09-24 22:25:25.297946+00 2025-09-24 22:25:25.297958+00 f t ADELANTO 70900.00 4 8197 \N +338917 2025-09-29 20:10:00.537075+00 2025-09-29 20:10:00.537083+00 f t SUBTOTAL 0.00 1 8545 \N +338918 2025-09-29 20:10:00.539051+00 2025-09-29 20:10:00.539057+00 f t DESCUENTO 0.00 2 8545 \N +338919 2025-09-29 20:10:00.542443+00 2025-09-29 20:10:00.542453+00 f t TOTAL 0.00 3 8545 \N +338920 2025-09-29 20:10:00.543872+00 2025-09-29 20:10:00.543878+00 f t ADELANTO 0.00 4 8545 \N +339086 2025-09-29 21:55:29.400651+00 2025-09-29 21:55:29.400659+00 f t DESCUENTO 0.00 2 8551 \N +339087 2025-09-29 21:55:29.402681+00 2025-09-29 21:55:29.402689+00 f t TOTAL 0.00 3 8551 \N +339088 2025-09-29 21:55:29.404561+00 2025-09-29 21:55:29.404571+00 f t ADELANTO 0.00 4 8551 \N +354601 2025-10-05 19:29:12.037003+00 2025-10-05 19:29:12.037011+00 f t SUBTOTAL 55000.00 1 8927 \N +354602 2025-10-05 19:29:12.038545+00 2025-10-05 19:29:12.038551+00 f t DESCUENTO 0.00 2 8927 \N +315697 2025-09-22 11:05:54.602335+00 2025-09-22 11:05:54.602344+00 f t SUBTOTAL 0.00 1 7985 \N +315698 2025-09-22 11:05:54.603919+00 2025-09-22 11:05:54.603927+00 f t DESCUENTO 0.00 2 7985 \N +315699 2025-09-22 11:05:54.605293+00 2025-09-22 11:05:54.605302+00 f t TOTAL 0.00 3 7985 \N +315700 2025-09-22 11:05:54.606801+00 2025-09-22 11:05:54.606811+00 f t ADELANTO 0.00 4 7985 \N +317377 2025-09-22 17:21:52.55284+00 2025-09-22 17:21:52.552849+00 f t SUBTOTAL 46000.00 1 8023 \N +317378 2025-09-22 17:21:52.554796+00 2025-09-22 17:21:52.554804+00 f t DESCUENTO 0.00 2 8023 \N +317379 2025-09-22 17:21:52.556389+00 2025-09-22 17:21:52.556397+00 f t TOTAL 46000.00 3 8023 \N +317380 2025-09-22 17:21:52.557905+00 2025-09-22 17:21:52.557913+00 f t ADELANTO 11000.00 4 8023 \N +325673 2025-09-25 13:09:21.955535+00 2025-09-25 13:09:21.955544+00 f t SUBTOTAL 0.00 1 8227 \N +325674 2025-09-25 13:09:21.956921+00 2025-09-25 13:09:21.956928+00 f t DESCUENTO 0.00 2 8227 \N +325675 2025-09-25 13:09:21.958055+00 2025-09-25 13:09:21.958067+00 f t TOTAL 0.00 3 8227 \N +325676 2025-09-25 13:09:21.959063+00 2025-09-25 13:09:21.959069+00 f t ADELANTO 0.00 4 8227 \N +333421 2025-09-27 20:44:42.015851+00 2025-09-27 20:44:42.015863+00 f t SUBTOTAL 72500.00 1 8414 \N +333422 2025-09-27 20:44:42.017647+00 2025-09-27 20:44:42.017653+00 f t DESCUENTO 0.00 2 8414 \N +333423 2025-09-27 20:44:42.018859+00 2025-09-27 20:44:42.018865+00 f t TOTAL 72500.00 3 8414 \N +333424 2025-09-27 20:44:42.019919+00 2025-09-27 20:44:42.019924+00 f t ADELANTO 72500.00 4 8414 \N +326129 2025-09-25 15:54:05.321439+00 2025-09-25 15:54:05.321448+00 f t SUBTOTAL 53700.00 1 8242 \N +326130 2025-09-25 15:54:05.323515+00 2025-09-25 15:54:05.323523+00 f t DESCUENTO 0.00 2 8242 \N +326131 2025-09-25 15:54:05.325591+00 2025-09-25 15:54:05.3256+00 f t TOTAL 53700.00 3 8242 \N +326132 2025-09-25 15:54:05.327729+00 2025-09-25 15:54:05.327736+00 f t ADELANTO 13200.00 4 8242 \N +319069 2025-09-23 10:31:09.293516+00 2025-09-23 10:31:09.293524+00 f t SUBTOTAL 78000.00 1 8064 \N +319070 2025-09-23 10:31:09.296509+00 2025-09-23 10:31:09.29652+00 f t DESCUENTO 0.00 2 8064 \N +319071 2025-09-23 10:31:09.297795+00 2025-09-23 10:31:09.297803+00 f t TOTAL 78000.00 3 8064 \N +319072 2025-09-23 10:31:09.299119+00 2025-09-23 10:31:09.299125+00 f t ADELANTO 13000.00 4 8064 \N +319781 2025-09-23 16:07:16.076465+00 2025-09-23 16:07:16.076474+00 f t SUBTOTAL 46000.00 1 8081 \N +319782 2025-09-23 16:07:16.078524+00 2025-09-23 16:07:16.078534+00 f t DESCUENTO 0.00 2 8081 \N +319783 2025-09-23 16:07:16.079946+00 2025-09-23 16:07:16.079953+00 f t TOTAL 46000.00 3 8081 \N +319784 2025-09-23 16:07:16.081197+00 2025-09-23 16:07:16.081205+00 f t ADELANTO 11000.00 4 8081 \N +315829 2025-09-22 11:30:56.670662+00 2025-09-22 11:30:56.670674+00 f t SUBTOTAL 68000.00 1 7986 \N +315830 2025-09-22 11:30:56.672519+00 2025-09-22 11:30:56.672529+00 f t DESCUENTO 0.00 2 7986 \N +315831 2025-09-22 11:30:56.673993+00 2025-09-22 11:30:56.674001+00 f t TOTAL 68000.00 3 7986 \N +315832 2025-09-22 11:30:56.675474+00 2025-09-22 11:30:56.675481+00 f t ADELANTO 13000.00 4 7986 \N +320393 2025-09-23 18:23:21.484266+00 2025-09-23 18:23:21.484278+00 f t SUBTOTAL 99400.00 1 8090 \N +320394 2025-09-23 18:23:21.48627+00 2025-09-23 18:23:21.486276+00 f t DESCUENTO 0.00 2 8090 \N +320395 2025-09-23 18:23:21.487624+00 2025-09-23 18:23:21.48763+00 f t TOTAL 99400.00 3 8090 \N +320396 2025-09-23 18:23:21.488778+00 2025-09-23 18:23:21.488784+00 f t ADELANTO 58900.00 4 8090 \N +315877 2025-09-22 11:51:35.458215+00 2025-09-22 11:51:35.458223+00 f t SUBTOTAL 68000.00 1 7987 \N +315878 2025-09-22 11:51:35.459894+00 2025-09-22 11:51:35.459902+00 f t DESCUENTO 0.00 2 7987 \N +315879 2025-09-22 11:51:35.461058+00 2025-09-22 11:51:35.461063+00 f t TOTAL 68000.00 3 7987 \N +315880 2025-09-22 11:51:35.462274+00 2025-09-22 11:51:35.462279+00 f t ADELANTO 13000.00 4 7987 \N +327905 2025-09-26 01:03:47.710817+00 2025-09-26 01:03:47.710826+00 f t SUBTOTAL 55000.00 1 8287 \N +327906 2025-09-26 01:03:47.713185+00 2025-09-26 01:03:47.713196+00 f t DESCUENTO 0.00 2 8287 \N +327907 2025-09-26 01:03:47.714572+00 2025-09-26 01:03:47.71458+00 f t TOTAL 55000.00 3 8287 \N +327908 2025-09-26 01:03:47.716133+00 2025-09-26 01:03:47.716139+00 f t ADELANTO 11000.00 4 8287 \N +328157 2025-09-26 02:36:43.164093+00 2025-09-26 02:36:43.164106+00 f t SUBTOTAL 0.00 1 8293 \N +328158 2025-09-26 02:36:43.166474+00 2025-09-26 02:36:43.166486+00 f t DESCUENTO 0.00 2 8293 \N +328159 2025-09-26 02:36:43.168094+00 2025-09-26 02:36:43.168104+00 f t TOTAL 0.00 3 8293 \N +328160 2025-09-26 02:36:43.169608+00 2025-09-26 02:36:43.169616+00 f t ADELANTO 0.00 4 8293 \N +320841 2025-09-23 20:25:59.916945+00 2025-09-23 20:25:59.916953+00 f t SUBTOTAL 0.00 1 8099 \N +320842 2025-09-23 20:25:59.91935+00 2025-09-23 20:25:59.919357+00 f t DESCUENTO 0.00 2 8099 \N +320843 2025-09-23 20:25:59.920773+00 2025-09-23 20:25:59.920779+00 f t TOTAL 0.00 3 8099 \N +320844 2025-09-23 20:25:59.922016+00 2025-09-23 20:25:59.922021+00 f t ADELANTO 0.00 4 8099 \N +335301 2025-09-28 17:18:36.951999+00 2025-09-28 17:18:36.952008+00 f t SUBTOTAL 46000.00 1 8455 \N +335302 2025-09-28 17:18:36.95372+00 2025-09-28 17:18:36.953727+00 f t DESCUENTO 0.00 2 8455 \N +335303 2025-09-28 17:18:36.954755+00 2025-09-28 17:18:36.95476+00 f t TOTAL 46000.00 3 8455 \N +335304 2025-09-28 17:18:36.955685+00 2025-09-28 17:18:36.95569+00 f t ADELANTO 11000.00 4 8455 \N +328649 2025-09-26 10:57:55.916689+00 2025-09-26 10:57:55.916697+00 f t SUBTOTAL 76000.00 1 8307 \N +328650 2025-09-26 10:57:55.918477+00 2025-09-26 10:57:55.918485+00 f t DESCUENTO 0.00 2 8307 \N +328651 2025-09-26 10:57:55.919823+00 2025-09-26 10:57:55.919829+00 f t TOTAL 76000.00 3 8307 \N +328652 2025-09-26 10:57:55.921536+00 2025-09-26 10:57:55.921542+00 f t ADELANTO 11000.00 4 8307 \N +335573 2025-09-28 18:43:12.647228+00 2025-09-28 18:43:12.647238+00 f t SUBTOTAL 0.00 1 8463 \N +335574 2025-09-28 18:43:12.649967+00 2025-09-28 18:43:12.649976+00 f t DESCUENTO 0.00 2 8463 \N +335575 2025-09-28 18:43:12.651602+00 2025-09-28 18:43:12.651613+00 f t TOTAL 0.00 3 8463 \N +335576 2025-09-28 18:43:12.653064+00 2025-09-28 18:43:12.65307+00 f t ADELANTO 0.00 4 8463 \N +335705 2025-09-28 19:03:51.250525+00 2025-09-28 19:03:51.250533+00 f t SUBTOTAL 0.00 1 8465 \N +335706 2025-09-28 19:03:51.252606+00 2025-09-28 19:03:51.252614+00 f t DESCUENTO 0.00 2 8465 \N +335707 2025-09-28 19:03:51.253645+00 2025-09-28 19:03:51.25365+00 f t TOTAL 0.00 3 8465 \N +335708 2025-09-28 19:03:51.25457+00 2025-09-28 19:03:51.254575+00 f t ADELANTO 0.00 4 8465 \N +324065 2025-09-24 22:30:12.547343+00 2025-09-24 22:30:12.547357+00 f t SUBTOTAL 0.00 1 8198 \N +324066 2025-09-24 22:30:12.550618+00 2025-09-24 22:30:12.550634+00 f t DESCUENTO 0.00 2 8198 \N +324067 2025-09-24 22:30:12.553381+00 2025-09-24 22:30:12.553395+00 f t TOTAL 0.00 3 8198 \N +324068 2025-09-24 22:30:12.558671+00 2025-09-24 22:30:12.558687+00 f t ADELANTO 0.00 4 8198 \N +332833 2025-09-27 16:02:48.136042+00 2025-09-27 16:02:48.136055+00 f t SUBTOTAL 0.00 1 8401 \N +332834 2025-09-27 16:02:48.138903+00 2025-09-27 16:02:48.138912+00 f t DESCUENTO 0.00 2 8401 \N +332835 2025-09-27 16:02:48.140563+00 2025-09-27 16:02:48.140573+00 f t TOTAL 0.00 3 8401 \N +332836 2025-09-27 16:02:48.141954+00 2025-09-27 16:02:48.141961+00 f t ADELANTO 0.00 4 8401 \N +325681 2025-09-25 13:10:39.003391+00 2025-09-25 13:10:39.003401+00 f t SUBTOTAL 0.00 1 8228 \N +325682 2025-09-25 13:10:39.004865+00 2025-09-25 13:10:39.004872+00 f t DESCUENTO 0.00 2 8228 \N +325683 2025-09-25 13:10:39.006396+00 2025-09-25 13:10:39.006402+00 f t TOTAL 0.00 3 8228 \N +325684 2025-09-25 13:10:39.007526+00 2025-09-25 13:10:39.007532+00 f t ADELANTO 0.00 4 8228 \N +316029 2025-09-22 11:59:38.125439+00 2025-09-22 11:59:38.125453+00 f t SUBTOTAL 0.00 1 7988 \N +316030 2025-09-22 11:59:38.127705+00 2025-09-22 11:59:38.127716+00 f t DESCUENTO 0.00 2 7988 \N +316031 2025-09-22 11:59:38.129408+00 2025-09-22 11:59:38.129418+00 f t TOTAL 0.00 3 7988 \N +316032 2025-09-22 11:59:38.134998+00 2025-09-22 11:59:38.135011+00 f t ADELANTO 0.00 4 7988 \N +316061 2025-09-22 12:24:34.071973+00 2025-09-22 12:24:34.071983+00 f t SUBTOTAL 0.00 1 7989 \N +316062 2025-09-22 12:24:34.073804+00 2025-09-22 12:24:34.073812+00 f t DESCUENTO 0.00 2 7989 \N +316063 2025-09-22 12:24:34.074926+00 2025-09-22 12:24:34.074935+00 f t TOTAL 0.00 3 7989 \N +316064 2025-09-22 12:24:34.076275+00 2025-09-22 12:24:34.076284+00 f t ADELANTO 0.00 4 7989 \N +340857 2025-09-30 15:49:47.55082+00 2025-09-30 15:49:47.550832+00 f t SUBTOTAL 55000.00 1 8581 \N +326533 2025-09-25 17:32:23.988613+00 2025-09-25 17:32:23.988621+00 f t SUBTOTAL 70000.00 1 8253 \N +326534 2025-09-25 17:32:23.990713+00 2025-09-25 17:32:23.990723+00 f t DESCUENTO 0.00 2 8253 \N +326535 2025-09-25 17:32:23.992166+00 2025-09-25 17:32:23.992172+00 f t TOTAL 70000.00 3 8253 \N +326536 2025-09-25 17:32:23.993426+00 2025-09-25 17:32:23.993432+00 f t ADELANTO 19000.00 4 8253 \N +326629 2025-09-25 17:44:57.712645+00 2025-09-25 17:44:57.712653+00 f t SUBTOTAL 55000.00 1 8256 \N +326630 2025-09-25 17:44:57.714719+00 2025-09-25 17:44:57.714727+00 f t DESCUENTO 0.00 2 8256 \N +326631 2025-09-25 17:44:57.716018+00 2025-09-25 17:44:57.716024+00 f t TOTAL 55000.00 3 8256 \N +326632 2025-09-25 17:44:57.717216+00 2025-09-25 17:44:57.717222+00 f t ADELANTO 11000.00 4 8256 \N +340858 2025-09-30 15:49:47.552869+00 2025-09-30 15:49:47.552876+00 f t DESCUENTO 0.00 2 8581 \N +340859 2025-09-30 15:49:47.554007+00 2025-09-30 15:49:47.554013+00 f t TOTAL 55000.00 3 8581 \N +340860 2025-09-30 15:49:47.554966+00 2025-09-30 15:49:47.554971+00 f t ADELANTO 11000.00 4 8581 \N +319313 2025-09-23 11:47:05.34156+00 2025-09-23 11:47:05.341575+00 f t SUBTOTAL 30000.00 1 8070 \N +319314 2025-09-23 11:47:05.34415+00 2025-09-23 11:47:05.344162+00 f t DESCUENTO 0.00 2 8070 \N +319315 2025-09-23 11:47:05.345963+00 2025-09-23 11:47:05.345972+00 f t TOTAL 30000.00 3 8070 \N +319316 2025-09-23 11:47:05.347519+00 2025-09-23 11:47:05.347527+00 f t ADELANTO 30000.00 4 8070 \N +341337 2025-09-30 19:48:59.902279+00 2025-09-30 19:48:59.902293+00 f t SUBTOTAL 46000.00 1 8612 \N +341338 2025-09-30 19:48:59.904863+00 2025-09-30 19:48:59.904875+00 f t DESCUENTO 0.00 2 8612 \N +341339 2025-09-30 19:48:59.906585+00 2025-09-30 19:48:59.906595+00 f t TOTAL 46000.00 3 8612 \N +341340 2025-09-30 19:48:59.908838+00 2025-09-30 19:48:59.908847+00 f t ADELANTO 11000.00 4 8612 \N +319697 2025-09-23 14:54:16.722333+00 2025-09-23 14:54:16.722343+00 f t SUBTOTAL 76000.00 1 8078 \N +316109 2025-09-22 12:48:44.846017+00 2025-09-22 12:48:44.846032+00 f t SUBTOTAL 55000.00 1 7990 \N +316110 2025-09-22 12:48:44.851998+00 2025-09-22 12:48:44.852008+00 f t DESCUENTO 0.00 2 7990 \N +316111 2025-09-22 12:48:44.85376+00 2025-09-22 12:48:44.853769+00 f t TOTAL 55000.00 3 7990 \N +316112 2025-09-22 12:48:44.855495+00 2025-09-22 12:48:44.855502+00 f t ADELANTO 11000.00 4 7990 \N +319698 2025-09-23 14:54:16.724447+00 2025-09-23 14:54:16.724455+00 f t DESCUENTO 0.00 2 8078 \N +319699 2025-09-23 14:54:16.726409+00 2025-09-23 14:54:16.726417+00 f t TOTAL 76000.00 3 8078 \N +319700 2025-09-23 14:54:16.727845+00 2025-09-23 14:54:16.727852+00 f t ADELANTO 11000.00 4 8078 \N +319865 2025-09-23 16:21:31.594712+00 2025-09-23 16:21:31.59472+00 f t SUBTOTAL 55000.00 1 8085 \N +319866 2025-09-23 16:21:31.596542+00 2025-09-23 16:21:31.596551+00 f t DESCUENTO 0.00 2 8085 \N +319867 2025-09-23 16:21:31.597785+00 2025-09-23 16:21:31.597791+00 f t TOTAL 55000.00 3 8085 \N +319868 2025-09-23 16:21:31.598823+00 2025-09-23 16:21:31.598828+00 f t ADELANTO 11000.00 4 8085 \N +316161 2025-09-22 12:51:53.927401+00 2025-09-22 12:51:53.927409+00 f t SUBTOTAL 68000.00 1 7991 \N +316162 2025-09-22 12:51:53.929208+00 2025-09-22 12:51:53.929217+00 f t DESCUENTO 0.00 2 7991 \N +316163 2025-09-22 12:51:53.931007+00 2025-09-22 12:51:53.931015+00 f t TOTAL 68000.00 3 7991 \N +316164 2025-09-22 12:51:53.932878+00 2025-09-22 12:51:53.932888+00 f t ADELANTO 13000.00 4 7991 \N +316169 2025-09-22 13:08:04.819686+00 2025-09-22 13:08:04.819695+00 f t SUBTOTAL 0.00 1 7992 \N +316170 2025-09-22 13:08:04.821049+00 2025-09-22 13:08:04.821056+00 f t DESCUENTO 0.00 2 7992 \N +316171 2025-09-22 13:08:04.822777+00 2025-09-22 13:08:04.822783+00 f t TOTAL 0.00 3 7992 \N +316172 2025-09-22 13:08:04.824851+00 2025-09-22 13:08:04.824856+00 f t ADELANTO 0.00 4 7992 \N +316177 2025-09-22 13:12:00.933587+00 2025-09-22 13:12:00.933596+00 f t SUBTOTAL 0.00 1 7993 \N +316178 2025-09-22 13:12:00.934915+00 2025-09-22 13:12:00.934922+00 f t DESCUENTO 0.00 2 7993 \N +316179 2025-09-22 13:12:00.936159+00 2025-09-22 13:12:00.936165+00 f t TOTAL 0.00 3 7993 \N +316180 2025-09-22 13:12:00.937304+00 2025-09-22 13:12:00.937312+00 f t ADELANTO 0.00 4 7993 \N +328325 2025-09-26 03:07:36.895375+00 2025-09-26 03:07:36.895384+00 f t SUBTOTAL 55000.00 1 8296 \N +328326 2025-09-26 03:07:36.897069+00 2025-09-26 03:07:36.897075+00 f t DESCUENTO 0.00 2 8296 \N +328327 2025-09-26 03:07:36.898278+00 2025-09-26 03:07:36.898283+00 f t TOTAL 55000.00 3 8296 \N +328328 2025-09-26 03:07:36.899334+00 2025-09-26 03:07:36.89934+00 f t ADELANTO 11000.00 4 8296 \N +316217 2025-09-22 13:12:20.933775+00 2025-09-22 13:12:20.933783+00 f t SUBTOTAL 0.00 1 7994 \N +316218 2025-09-22 13:12:20.935445+00 2025-09-22 13:12:20.93545+00 f t DESCUENTO 0.00 2 7994 \N +316219 2025-09-22 13:12:20.936598+00 2025-09-22 13:12:20.936609+00 f t TOTAL 0.00 3 7994 \N +316220 2025-09-22 13:12:20.937729+00 2025-09-22 13:12:20.937734+00 f t ADELANTO 0.00 4 7994 \N +316225 2025-09-22 13:38:57.239959+00 2025-09-22 13:38:57.239968+00 f t SUBTOTAL 0.00 1 7995 \N +316226 2025-09-22 13:38:57.241658+00 2025-09-22 13:38:57.241664+00 f t DESCUENTO 0.00 2 7995 \N +316227 2025-09-22 13:38:57.242807+00 2025-09-22 13:38:57.242813+00 f t TOTAL 0.00 3 7995 \N +316228 2025-09-22 13:38:57.24401+00 2025-09-22 13:38:57.244015+00 f t ADELANTO 0.00 4 7995 \N +316237 2025-09-22 13:50:12.099737+00 2025-09-22 13:50:12.099746+00 f t SUBTOTAL 46000.00 1 7996 \N +316238 2025-09-22 13:50:12.101879+00 2025-09-22 13:50:12.101887+00 f t DESCUENTO 0.00 2 7996 \N +316239 2025-09-22 13:50:12.103241+00 2025-09-22 13:50:12.103248+00 f t TOTAL 46000.00 3 7996 \N +316240 2025-09-22 13:50:12.104771+00 2025-09-22 13:50:12.104779+00 f t ADELANTO 11000.00 4 7996 \N +354603 2025-10-05 19:29:12.039526+00 2025-10-05 19:29:12.039533+00 f t TOTAL 55000.00 3 8927 \N +354604 2025-10-05 19:29:12.040465+00 2025-10-05 19:29:12.04047+00 f t ADELANTO 11000.00 4 8927 \N +324073 2025-09-24 22:31:06.383657+00 2025-09-24 22:31:06.38367+00 f t SUBTOTAL 0.00 1 8199 \N +324074 2025-09-24 22:31:06.385868+00 2025-09-24 22:31:06.385879+00 f t DESCUENTO 0.00 2 8199 \N +324075 2025-09-24 22:31:06.387726+00 2025-09-24 22:31:06.387739+00 f t TOTAL 0.00 3 8199 \N +324076 2025-09-24 22:31:06.389448+00 2025-09-24 22:31:06.389456+00 f t ADELANTO 0.00 4 8199 \N +317061 2025-09-22 16:24:13.967861+00 2025-09-22 16:24:13.967869+00 f t SUBTOTAL 78000.00 1 8014 \N +317062 2025-09-22 16:24:13.96947+00 2025-09-22 16:24:13.969477+00 f t DESCUENTO 0.00 2 8014 \N +317063 2025-09-22 16:24:13.970606+00 2025-09-22 16:24:13.970612+00 f t TOTAL 78000.00 3 8014 \N +317064 2025-09-22 16:24:13.971798+00 2025-09-22 16:24:13.971804+00 f t ADELANTO 21500.00 4 8014 \N +379786 2025-10-13 23:27:36.150289+00 2025-10-13 23:27:36.150298+00 f t DESCUENTO 0.00 2 9579 \N +379787 2025-10-13 23:27:36.158119+00 2025-10-13 23:27:36.158129+00 f t TOTAL 70000.00 3 9579 \N +316285 2025-09-22 13:53:09.103739+00 2025-09-22 13:53:09.103748+00 f t SUBTOTAL 55000.00 1 7997 \N +316286 2025-09-22 13:53:09.105588+00 2025-09-22 13:53:09.105596+00 f t DESCUENTO 0.00 2 7997 \N +316287 2025-09-22 13:53:09.106891+00 2025-09-22 13:53:09.1069+00 f t TOTAL 55000.00 3 7997 \N +316288 2025-09-22 13:53:09.108151+00 2025-09-22 13:53:09.108156+00 f t ADELANTO 11000.00 4 7997 \N +332373 2025-09-27 14:42:47.632606+00 2025-09-27 14:42:47.63262+00 f t SUBTOTAL 55000.00 1 8397 \N +332374 2025-09-27 14:42:47.635086+00 2025-09-27 14:42:47.635096+00 f t DESCUENTO 0.00 2 8397 \N +316293 2025-09-22 14:08:27.027059+00 2025-09-22 14:08:27.027069+00 f t SUBTOTAL 0.00 1 7998 \N +316294 2025-09-22 14:08:27.028341+00 2025-09-22 14:08:27.028347+00 f t DESCUENTO 0.00 2 7998 \N +316295 2025-09-22 14:08:27.029351+00 2025-09-22 14:08:27.029356+00 f t TOTAL 0.00 3 7998 \N +316296 2025-09-22 14:08:27.030288+00 2025-09-22 14:08:27.030294+00 f t ADELANTO 0.00 4 7998 \N +332375 2025-09-27 14:42:47.641248+00 2025-09-27 14:42:47.641257+00 f t TOTAL 55000.00 3 8397 \N +332376 2025-09-27 14:42:47.643203+00 2025-09-27 14:42:47.64321+00 f t ADELANTO 11000.00 4 8397 \N +317957 2025-09-22 22:07:56.804076+00 2025-09-22 22:07:56.804089+00 f t SUBTOTAL 55000.00 1 8041 \N +317958 2025-09-22 22:07:56.806797+00 2025-09-22 22:07:56.806808+00 f t DESCUENTO 0.00 2 8041 \N +317959 2025-09-22 22:07:56.808829+00 2025-09-22 22:07:56.80884+00 f t TOTAL 55000.00 3 8041 \N +317960 2025-09-22 22:07:56.810597+00 2025-09-22 22:07:56.810607+00 f t ADELANTO 11000.00 4 8041 \N +340865 2025-09-30 16:01:52.677848+00 2025-09-30 16:01:52.677861+00 f t SUBTOTAL 0.00 1 8597 \N +340866 2025-09-30 16:01:52.680195+00 2025-09-30 16:01:52.68021+00 f t DESCUENTO 0.00 2 8597 \N +340867 2025-09-30 16:01:52.682439+00 2025-09-30 16:01:52.682452+00 f t TOTAL 0.00 3 8597 \N +340868 2025-09-30 16:01:52.68478+00 2025-09-30 16:01:52.68479+00 f t ADELANTO 0.00 4 8597 \N +316381 2025-09-22 14:20:53.779387+00 2025-09-22 14:20:53.779395+00 f t SUBTOTAL 75000.00 1 7999 \N +316382 2025-09-22 14:20:53.781034+00 2025-09-22 14:20:53.781041+00 f t DESCUENTO 0.00 2 7999 \N +316383 2025-09-22 14:20:53.782059+00 2025-09-22 14:20:53.782065+00 f t TOTAL 75000.00 3 7999 \N +316384 2025-09-22 14:20:53.782966+00 2025-09-22 14:20:53.782971+00 f t ADELANTO 15000.00 4 7999 \N +319701 2025-09-23 14:54:30.913912+00 2025-09-23 14:54:30.913922+00 f t SUBTOTAL 0.00 1 8079 \N +319702 2025-09-23 14:54:30.915829+00 2025-09-23 14:54:30.915836+00 f t DESCUENTO 0.00 2 8079 \N +319703 2025-09-23 14:54:30.917674+00 2025-09-23 14:54:30.91768+00 f t TOTAL 0.00 3 8079 \N +319704 2025-09-23 14:54:30.919642+00 2025-09-23 14:54:30.919648+00 f t ADELANTO 0.00 4 8079 \N +319793 2025-09-23 16:08:36.241682+00 2025-09-23 16:08:36.241696+00 f t SUBTOTAL 46000.00 1 8082 \N +319794 2025-09-23 16:08:36.244092+00 2025-09-23 16:08:36.244104+00 f t DESCUENTO 0.00 2 8082 \N +319795 2025-09-23 16:08:36.245887+00 2025-09-23 16:08:36.245899+00 f t TOTAL 46000.00 3 8082 \N +319796 2025-09-23 16:08:36.247567+00 2025-09-23 16:08:36.247576+00 f t ADELANTO 11000.00 4 8082 \N +319873 2025-09-23 16:28:09.825763+00 2025-09-23 16:28:09.825771+00 f t SUBTOTAL 0.00 1 8086 \N +319874 2025-09-23 16:28:09.827274+00 2025-09-23 16:28:09.82728+00 f t DESCUENTO 0.00 2 8086 \N +319875 2025-09-23 16:28:09.828654+00 2025-09-23 16:28:09.828663+00 f t TOTAL 0.00 3 8086 \N +319876 2025-09-23 16:28:09.829953+00 2025-09-23 16:28:09.829959+00 f t ADELANTO 0.00 4 8086 \N +341485 2025-09-30 20:02:58.57401+00 2025-09-30 20:02:58.574018+00 f t SUBTOTAL 55000.00 1 8616 \N +341486 2025-09-30 20:02:58.577699+00 2025-09-30 20:02:58.577711+00 f t DESCUENTO 0.00 2 8616 \N +341487 2025-09-30 20:02:58.58054+00 2025-09-30 20:02:58.580548+00 f t TOTAL 55000.00 3 8616 \N +341488 2025-09-30 20:02:58.582094+00 2025-09-30 20:02:58.582101+00 f t ADELANTO 11000.00 4 8616 \N +316441 2025-09-22 14:21:31.346883+00 2025-09-22 14:21:31.346895+00 f t SUBTOTAL 0.00 1 8000 \N +316442 2025-09-22 14:21:31.349468+00 2025-09-22 14:21:31.34954+00 f t DESCUENTO 0.00 2 8000 \N +316443 2025-09-22 14:21:31.350991+00 2025-09-22 14:21:31.351+00 f t TOTAL 0.00 3 8000 \N +316444 2025-09-22 14:21:31.352422+00 2025-09-22 14:21:31.352431+00 f t ADELANTO 0.00 4 8000 \N +334857 2025-09-28 13:06:13.666486+00 2025-09-28 13:06:13.666496+00 f t SUBTOTAL 46000.00 1 8435 \N +320473 2025-09-23 18:46:13.635552+00 2025-09-23 18:46:13.635559+00 f t SUBTOTAL 54000.00 1 8093 \N +320474 2025-09-23 18:46:13.637337+00 2025-09-23 18:46:13.637346+00 f t DESCUENTO 0.00 2 8093 \N +320475 2025-09-23 18:46:13.638595+00 2025-09-23 18:46:13.638601+00 f t TOTAL 54000.00 3 8093 \N +320476 2025-09-23 18:46:13.640133+00 2025-09-23 18:46:13.640142+00 f t ADELANTO 13500.00 4 8093 \N +334858 2025-09-28 13:06:13.668369+00 2025-09-28 13:06:13.668376+00 f t DESCUENTO 0.00 2 8435 \N +334859 2025-09-28 13:06:13.669513+00 2025-09-28 13:06:13.669519+00 f t TOTAL 46000.00 3 8435 \N +334860 2025-09-28 13:06:13.670661+00 2025-09-28 13:06:13.670666+00 f t ADELANTO 11000.00 4 8435 \N +341981 2025-09-30 22:24:53.236065+00 2025-09-30 22:24:53.236076+00 f t SUBTOTAL 80000.00 1 8629 \N +341982 2025-09-30 22:24:53.238579+00 2025-09-30 22:24:53.238586+00 f t DESCUENTO 0.00 2 8629 \N +341983 2025-09-30 22:24:53.241384+00 2025-09-30 22:24:53.241394+00 f t TOTAL 80000.00 3 8629 \N +341984 2025-09-30 22:24:53.242851+00 2025-09-30 22:24:53.242857+00 f t ADELANTO 12000.00 4 8629 \N +328413 2025-09-26 04:02:08.579929+00 2025-09-26 04:02:08.579938+00 f t SUBTOTAL 46000.00 1 8299 \N +328414 2025-09-26 04:02:08.582433+00 2025-09-26 04:02:08.582445+00 f t DESCUENTO 0.00 2 8299 \N +328415 2025-09-26 04:02:08.584233+00 2025-09-26 04:02:08.584243+00 f t TOTAL 46000.00 3 8299 \N +328416 2025-09-26 04:02:08.586392+00 2025-09-26 04:02:08.586404+00 f t ADELANTO 11000.00 4 8299 \N +329289 2025-09-26 14:00:57.826218+00 2025-09-26 14:00:57.82623+00 f t SUBTOTAL 78000.00 1 8320 \N +329290 2025-09-26 14:00:57.8284+00 2025-09-26 14:00:57.828411+00 f t DESCUENTO 0.00 2 8320 \N +329291 2025-09-26 14:00:57.830155+00 2025-09-26 14:00:57.830166+00 f t TOTAL 78000.00 3 8320 \N +329292 2025-09-26 14:00:57.832504+00 2025-09-26 14:00:57.832513+00 f t ADELANTO 13000.00 4 8320 \N +321477 2025-09-23 23:49:39.820807+00 2025-09-23 23:49:39.820818+00 f t SUBTOTAL 46000.00 1 8116 \N +321478 2025-09-23 23:49:39.822727+00 2025-09-23 23:49:39.822737+00 f t DESCUENTO 0.00 2 8116 \N +321479 2025-09-23 23:49:39.824217+00 2025-09-23 23:49:39.824222+00 f t TOTAL 46000.00 3 8116 \N +321480 2025-09-23 23:49:39.825506+00 2025-09-23 23:49:39.825512+00 f t ADELANTO 11000.00 4 8116 \N +324225 2025-09-24 22:58:02.962488+00 2025-09-24 22:58:02.962497+00 f t SUBTOTAL 92000.00 1 8201 \N +324226 2025-09-24 22:58:02.964282+00 2025-09-24 22:58:02.964289+00 f t DESCUENTO 0.00 2 8201 \N +324227 2025-09-24 22:58:02.965639+00 2025-09-24 22:58:02.965646+00 f t TOTAL 92000.00 3 8201 \N +324228 2025-09-24 22:58:02.96691+00 2025-09-24 22:58:02.966919+00 f t ADELANTO 22000.00 4 8201 \N +339249 2025-09-29 23:26:16.895416+00 2025-09-29 23:26:16.895426+00 f t SUBTOTAL 78000.00 1 8559 \N +339250 2025-09-29 23:26:16.897303+00 2025-09-29 23:26:16.897315+00 f t DESCUENTO 0.00 2 8559 \N +339251 2025-09-29 23:26:16.898667+00 2025-09-29 23:26:16.898675+00 f t TOTAL 78000.00 3 8559 \N +339252 2025-09-29 23:26:16.899859+00 2025-09-29 23:26:16.899864+00 f t ADELANTO 21500.00 4 8559 \N +332237 2025-09-27 14:20:37.601872+00 2025-09-27 14:20:37.601882+00 f t SUBTOTAL 46000.00 1 8394 \N +332238 2025-09-27 14:20:37.604254+00 2025-09-27 14:20:37.604264+00 f t DESCUENTO 0.00 2 8394 \N +332239 2025-09-27 14:20:37.605714+00 2025-09-27 14:20:37.605721+00 f t TOTAL 46000.00 3 8394 \N +332240 2025-09-27 14:20:37.607189+00 2025-09-27 14:20:37.607197+00 f t ADELANTO 11000.00 4 8394 \N +317681 2025-09-22 19:53:06.976415+00 2025-09-22 19:53:06.976427+00 f t SUBTOTAL 0.00 1 8032 \N +317682 2025-09-22 19:53:06.978808+00 2025-09-22 19:53:06.978818+00 f t DESCUENTO 0.00 2 8032 \N +317683 2025-09-22 19:53:06.98041+00 2025-09-22 19:53:06.980417+00 f t TOTAL 0.00 3 8032 \N +316585 2025-09-22 14:35:02.594261+00 2025-09-22 14:35:02.594276+00 f t SUBTOTAL 70000.00 1 8002 \N +316586 2025-09-22 14:35:02.605491+00 2025-09-22 14:35:02.605505+00 f t DESCUENTO 0.00 2 8002 \N +316587 2025-09-22 14:35:02.618695+00 2025-09-22 14:35:02.61871+00 f t TOTAL 70000.00 3 8002 \N +316588 2025-09-22 14:35:02.621647+00 2025-09-22 14:35:02.621662+00 f t ADELANTO 19000.00 4 8002 \N +317684 2025-09-22 19:53:06.982415+00 2025-09-22 19:53:06.982427+00 f t ADELANTO 0.00 4 8032 \N +317869 2025-09-22 21:22:16.6901+00 2025-09-22 21:22:16.690108+00 f t SUBTOTAL 46000.00 1 8038 \N +317870 2025-09-22 21:22:16.692106+00 2025-09-22 21:22:16.692114+00 f t DESCUENTO 0.00 2 8038 \N +317871 2025-09-22 21:22:16.693377+00 2025-09-22 21:22:16.693383+00 f t TOTAL 46000.00 3 8038 \N +317872 2025-09-22 21:22:16.69451+00 2025-09-22 21:22:16.694516+00 f t ADELANTO 11000.00 4 8038 \N +325549 2025-09-25 09:23:53.90173+00 2025-09-25 09:23:53.901742+00 f t SUBTOTAL 0.00 1 8220 \N +325550 2025-09-25 09:23:53.903821+00 2025-09-25 09:23:53.903829+00 f t DESCUENTO 0.00 2 8220 \N +325551 2025-09-25 09:23:53.905153+00 2025-09-25 09:23:53.90516+00 f t TOTAL 0.00 3 8220 \N +325552 2025-09-25 09:23:53.906512+00 2025-09-25 09:23:53.906518+00 f t ADELANTO 0.00 4 8220 \N +333161 2025-09-27 17:19:33.28432+00 2025-09-27 17:19:33.284328+00 f t SUBTOTAL 70000.00 1 8408 \N +333162 2025-09-27 17:19:33.286109+00 2025-09-27 17:19:33.286116+00 f t DESCUENTO 0.00 2 8408 \N +333163 2025-09-27 17:19:33.287372+00 2025-09-27 17:19:33.287378+00 f t TOTAL 70000.00 3 8408 \N +333164 2025-09-27 17:19:33.288676+00 2025-09-27 17:19:33.288685+00 f t ADELANTO 19000.00 4 8408 \N +318745 2025-09-23 01:17:16.570449+00 2025-09-23 01:17:16.570458+00 f t SUBTOTAL 0.00 1 8057 \N +318746 2025-09-23 01:17:16.572847+00 2025-09-23 01:17:16.572859+00 f t DESCUENTO 0.00 2 8057 \N +318747 2025-09-23 01:17:16.574879+00 2025-09-23 01:17:16.574889+00 f t TOTAL 0.00 3 8057 \N +318748 2025-09-23 01:17:16.576674+00 2025-09-23 01:17:16.576683+00 f t ADELANTO 0.00 4 8057 \N +319473 2025-09-23 12:10:36.48426+00 2025-09-23 12:10:36.484272+00 f t SUBTOTAL 132900.00 1 8072 \N +319474 2025-09-23 12:10:36.485948+00 2025-09-23 12:10:36.485955+00 f t DESCUENTO 0.00 2 8072 \N +319475 2025-09-23 12:10:36.487411+00 2025-09-23 12:10:36.487425+00 f t TOTAL 132900.00 3 8072 \N +319476 2025-09-23 12:10:36.488769+00 2025-09-23 12:10:36.488775+00 f t ADELANTO 70900.00 4 8072 \N +319549 2025-09-23 12:35:38.368188+00 2025-09-23 12:35:38.368197+00 f t SUBTOTAL 132900.00 1 8074 \N +319550 2025-09-23 12:35:38.369774+00 2025-09-23 12:35:38.369781+00 f t DESCUENTO 0.00 2 8074 \N +319551 2025-09-23 12:35:38.370909+00 2025-09-23 12:35:38.370915+00 f t TOTAL 132900.00 3 8074 \N +319552 2025-09-23 12:35:38.374443+00 2025-09-23 12:35:38.374453+00 f t ADELANTO 70900.00 4 8074 \N +319709 2025-09-23 15:00:12.735395+00 2025-09-23 15:00:12.735411+00 f t SUBTOTAL 0.00 1 8080 \N +319710 2025-09-23 15:00:12.73793+00 2025-09-23 15:00:12.737943+00 f t DESCUENTO 0.00 2 8080 \N +319711 2025-09-23 15:00:12.740483+00 2025-09-23 15:00:12.740496+00 f t TOTAL 0.00 3 8080 \N +319712 2025-09-23 15:00:12.742852+00 2025-09-23 15:00:12.742866+00 f t ADELANTO 0.00 4 8080 \N +334713 2025-09-28 09:56:07.349311+00 2025-09-28 09:56:07.349321+00 f t SUBTOTAL 30000.00 1 8430 \N +334714 2025-09-28 09:56:07.35129+00 2025-09-28 09:56:07.351298+00 f t DESCUENTO 0.00 2 8430 \N +334715 2025-09-28 09:56:07.352739+00 2025-09-28 09:56:07.352746+00 f t TOTAL 30000.00 3 8430 \N +334716 2025-09-28 09:56:07.35446+00 2025-09-28 09:56:07.354469+00 f t ADELANTO 30000.00 4 8430 \N +334933 2025-09-28 13:38:25.237674+00 2025-09-28 13:38:25.237685+00 f t SUBTOTAL 107000.00 1 8437 \N +334934 2025-09-28 13:38:25.239929+00 2025-09-28 13:38:25.239938+00 f t DESCUENTO 0.00 2 8437 \N +334935 2025-09-28 13:38:25.241408+00 2025-09-28 13:38:25.241415+00 f t TOTAL 107000.00 3 8437 \N +334936 2025-09-28 13:38:25.246387+00 2025-09-28 13:38:25.246397+00 f t ADELANTO 12000.00 4 8437 \N +335241 2025-09-28 16:54:39.658861+00 2025-09-28 16:54:39.658872+00 f t SUBTOTAL 55000.00 1 8453 \N +335242 2025-09-28 16:54:39.66113+00 2025-09-28 16:54:39.66114+00 f t DESCUENTO 0.00 2 8453 \N +335243 2025-09-28 16:54:39.66286+00 2025-09-28 16:54:39.66287+00 f t TOTAL 55000.00 3 8453 \N +335244 2025-09-28 16:54:39.664493+00 2025-09-28 16:54:39.664502+00 f t ADELANTO 11000.00 4 8453 \N +335509 2025-09-28 18:09:33.186486+00 2025-09-28 18:09:33.186498+00 f t SUBTOTAL 46000.00 1 8460 \N +335510 2025-09-28 18:09:33.188735+00 2025-09-28 18:09:33.188746+00 f t DESCUENTO 0.00 2 8460 \N +335511 2025-09-28 18:09:33.190797+00 2025-09-28 18:09:33.190808+00 f t TOTAL 46000.00 3 8460 \N +335512 2025-09-28 18:09:33.192659+00 2025-09-28 18:09:33.192667+00 f t ADELANTO 11000.00 4 8460 \N +321057 2025-09-23 22:53:45.199574+00 2025-09-23 22:53:45.199586+00 f t SUBTOTAL 46000.00 1 8108 \N +321058 2025-09-23 22:53:45.201751+00 2025-09-23 22:53:45.201761+00 f t DESCUENTO 0.00 2 8108 \N +321059 2025-09-23 22:53:45.203374+00 2025-09-23 22:53:45.203384+00 f t TOTAL 46000.00 3 8108 \N +321060 2025-09-23 22:53:45.205002+00 2025-09-23 22:53:45.205009+00 f t ADELANTO 11000.00 4 8108 \N +321253 2025-09-23 23:09:15.801659+00 2025-09-23 23:09:15.801668+00 f t SUBTOTAL 0.00 1 8113 \N +321254 2025-09-23 23:09:15.803242+00 2025-09-23 23:09:15.803249+00 f t DESCUENTO 0.00 2 8113 \N +321255 2025-09-23 23:09:15.804455+00 2025-09-23 23:09:15.804461+00 f t TOTAL 0.00 3 8113 \N +321256 2025-09-23 23:09:15.805708+00 2025-09-23 23:09:15.805715+00 f t ADELANTO 0.00 4 8113 \N +336089 2025-09-28 20:31:46.716965+00 2025-09-28 20:31:46.716974+00 f t SUBTOTAL 55000.00 1 8474 \N +336090 2025-09-28 20:31:46.718864+00 2025-09-28 20:31:46.718872+00 f t DESCUENTO 0.00 2 8474 \N +336091 2025-09-28 20:31:46.720356+00 2025-09-28 20:31:46.720363+00 f t TOTAL 55000.00 3 8474 \N +336092 2025-09-28 20:31:46.72177+00 2025-09-28 20:31:46.721776+00 f t ADELANTO 11000.00 4 8474 \N +336169 2025-09-28 21:42:37.062143+00 2025-09-28 21:42:37.062155+00 f t SUBTOTAL 55000.00 1 8477 \N +336170 2025-09-28 21:42:37.066489+00 2025-09-28 21:42:37.066502+00 f t DESCUENTO 0.00 2 8477 \N +336171 2025-09-28 21:42:37.068691+00 2025-09-28 21:42:37.068702+00 f t TOTAL 55000.00 3 8477 \N +336172 2025-09-28 21:42:37.070441+00 2025-09-28 21:42:37.070452+00 f t ADELANTO 11000.00 4 8477 \N +346853 2025-10-02 19:30:30.507561+00 2025-10-02 19:30:30.507571+00 f t SUBTOTAL 0.00 1 8737 \N +346854 2025-10-02 19:30:30.50962+00 2025-10-02 19:30:30.509627+00 f t DESCUENTO 0.00 2 8737 \N +346855 2025-10-02 19:30:30.510965+00 2025-10-02 19:30:30.510972+00 f t TOTAL 0.00 3 8737 \N +321493 2025-09-23 23:49:46.04012+00 2025-09-23 23:49:46.040129+00 f t SUBTOTAL 70000.00 1 8117 \N +321494 2025-09-23 23:49:46.042359+00 2025-09-23 23:49:46.042367+00 f t DESCUENTO 0.00 2 8117 \N +321495 2025-09-23 23:49:46.043579+00 2025-09-23 23:49:46.043584+00 f t TOTAL 70000.00 3 8117 \N +321496 2025-09-23 23:49:46.044648+00 2025-09-23 23:49:46.044654+00 f t ADELANTO 19000.00 4 8117 \N +346856 2025-10-02 19:30:30.512911+00 2025-10-02 19:30:30.512919+00 f t ADELANTO 0.00 4 8737 \N +321505 2025-09-24 00:15:55.183068+00 2025-09-24 00:15:55.183076+00 f t SUBTOTAL 46000.00 1 8118 \N +321506 2025-09-24 00:15:55.184765+00 2025-09-24 00:15:55.184772+00 f t DESCUENTO 0.00 2 8118 \N +321507 2025-09-24 00:15:55.18595+00 2025-09-24 00:15:55.185955+00 f t TOTAL 46000.00 3 8118 \N +321508 2025-09-24 00:15:55.186959+00 2025-09-24 00:15:55.186965+00 f t ADELANTO 11000.00 4 8118 \N +321517 2025-09-24 00:21:19.9193+00 2025-09-24 00:21:19.919308+00 f t SUBTOTAL 76000.00 1 8119 \N +321518 2025-09-24 00:21:19.921074+00 2025-09-24 00:21:19.921084+00 f t DESCUENTO 0.00 2 8119 \N +321519 2025-09-24 00:21:19.92256+00 2025-09-24 00:21:19.922569+00 f t TOTAL 76000.00 3 8119 \N +321520 2025-09-24 00:21:19.923949+00 2025-09-24 00:21:19.923957+00 f t ADELANTO 11000.00 4 8119 \N +339869 2025-09-30 05:32:30.254197+00 2025-09-30 05:32:30.254209+00 f t SUBTOTAL 109400.00 1 8576 \N +339870 2025-09-30 05:32:30.256276+00 2025-09-30 05:32:30.256288+00 f t DESCUENTO 0.00 2 8576 \N +339871 2025-09-30 05:32:30.257894+00 2025-09-30 05:32:30.257904+00 f t TOTAL 109400.00 3 8576 \N +339872 2025-09-30 05:32:30.259112+00 2025-09-30 05:32:30.259121+00 f t ADELANTO 31400.00 4 8576 \N +333165 2025-09-27 17:19:47.373774+00 2025-09-27 17:19:47.373782+00 f t SUBTOTAL 54000.00 1 8409 \N +333166 2025-09-27 17:19:47.375973+00 2025-09-27 17:19:47.375982+00 f t DESCUENTO 0.00 2 8409 \N +333167 2025-09-27 17:19:47.37765+00 2025-09-27 17:19:47.377661+00 f t TOTAL 54000.00 3 8409 \N +333168 2025-09-27 17:19:47.379256+00 2025-09-27 17:19:47.379264+00 f t ADELANTO 13500.00 4 8409 \N +326041 2025-09-25 15:32:38.10588+00 2025-09-25 15:32:38.105888+00 f t SUBTOTAL 0.00 1 8240 \N +326042 2025-09-25 15:32:38.107581+00 2025-09-25 15:32:38.107589+00 f t DESCUENTO 0.00 2 8240 \N +326043 2025-09-25 15:32:38.108905+00 2025-09-25 15:32:38.108911+00 f t TOTAL 0.00 3 8240 \N +326044 2025-09-25 15:32:38.110229+00 2025-09-25 15:32:38.110236+00 f t ADELANTO 0.00 4 8240 \N +321585 2025-09-24 00:48:33.299252+00 2025-09-24 00:48:33.29926+00 f t SUBTOTAL 55000.00 1 8122 \N +321586 2025-09-24 00:48:33.301223+00 2025-09-24 00:48:33.301231+00 f t DESCUENTO 0.00 2 8122 \N +321587 2025-09-24 00:48:33.304882+00 2025-09-24 00:48:33.30489+00 f t TOTAL 55000.00 3 8122 \N +321588 2025-09-24 00:48:33.306479+00 2025-09-24 00:48:33.306485+00 f t ADELANTO 11000.00 4 8122 \N +321593 2025-09-24 01:33:48.807862+00 2025-09-24 01:33:48.807874+00 f t SUBTOTAL 0.00 1 8123 \N +321594 2025-09-24 01:33:48.80983+00 2025-09-24 01:33:48.809841+00 f t DESCUENTO 0.00 2 8123 \N +321595 2025-09-24 01:33:48.811503+00 2025-09-24 01:33:48.811513+00 f t TOTAL 0.00 3 8123 \N +321596 2025-09-24 01:33:48.813099+00 2025-09-24 01:33:48.813107+00 f t ADELANTO 0.00 4 8123 \N +326925 2025-09-25 20:11:10.951643+00 2025-09-25 20:11:10.951658+00 f t SUBTOTAL 70000.00 1 8267 \N +326926 2025-09-25 20:11:10.954813+00 2025-09-25 20:11:10.954825+00 f t DESCUENTO 0.00 2 8267 \N +326927 2025-09-25 20:11:10.957498+00 2025-09-25 20:11:10.95751+00 f t TOTAL 70000.00 3 8267 \N +321621 2025-09-24 02:13:11.86482+00 2025-09-24 02:13:11.864831+00 f t SUBTOTAL 55000.00 1 8124 \N +321622 2025-09-24 02:13:11.867116+00 2025-09-24 02:13:11.867159+00 f t DESCUENTO 0.00 2 8124 \N +321623 2025-09-24 02:13:11.871288+00 2025-09-24 02:13:11.871302+00 f t TOTAL 55000.00 3 8124 \N +321624 2025-09-24 02:13:11.873525+00 2025-09-24 02:13:11.873537+00 f t ADELANTO 11000.00 4 8124 \N +326928 2025-09-25 20:11:10.960165+00 2025-09-25 20:11:10.960177+00 f t ADELANTO 19000.00 4 8267 \N +321629 2025-09-24 02:35:27.70492+00 2025-09-24 02:35:27.70493+00 f t SUBTOTAL 0.00 1 8125 \N +321630 2025-09-24 02:35:27.706629+00 2025-09-24 02:35:27.706639+00 f t DESCUENTO 0.00 2 8125 \N +321631 2025-09-24 02:35:27.708166+00 2025-09-24 02:35:27.708172+00 f t TOTAL 0.00 3 8125 \N +321632 2025-09-24 02:35:27.709436+00 2025-09-24 02:35:27.709442+00 f t ADELANTO 0.00 4 8125 \N +327749 2025-09-25 23:46:21.091866+00 2025-09-25 23:46:21.091876+00 f t SUBTOTAL 30000.00 1 8282 \N +327750 2025-09-25 23:46:21.094308+00 2025-09-25 23:46:21.094319+00 f t DESCUENTO 0.00 2 8282 \N +327751 2025-09-25 23:46:21.096737+00 2025-09-25 23:46:21.096754+00 f t TOTAL 30000.00 3 8282 \N +327752 2025-09-25 23:46:21.098319+00 2025-09-25 23:46:21.098326+00 f t ADELANTO 30000.00 4 8282 \N +328337 2025-09-26 03:08:05.449253+00 2025-09-26 03:08:05.449266+00 f t SUBTOTAL 78000.00 1 8295 \N +328338 2025-09-26 03:08:05.45148+00 2025-09-26 03:08:05.451492+00 f t DESCUENTO 0.00 2 8295 \N +328339 2025-09-26 03:08:05.453106+00 2025-09-26 03:08:05.453116+00 f t TOTAL 78000.00 3 8295 \N +328340 2025-09-26 03:08:05.454385+00 2025-09-26 03:08:05.454395+00 f t ADELANTO 13000.00 4 8295 \N +328817 2025-09-26 12:26:35.326335+00 2025-09-26 12:26:35.326347+00 f t SUBTOTAL 70000.00 1 8311 \N +328818 2025-09-26 12:26:35.328643+00 2025-09-26 12:26:35.328653+00 f t DESCUENTO 0.00 2 8311 \N +328819 2025-09-26 12:26:35.330288+00 2025-09-26 12:26:35.330299+00 f t TOTAL 70000.00 3 8311 \N +328820 2025-09-26 12:26:35.332082+00 2025-09-26 12:26:35.332091+00 f t ADELANTO 19000.00 4 8311 \N +321729 2025-09-24 02:57:44.872738+00 2025-09-24 02:57:44.872749+00 f t SUBTOTAL 70000.00 1 8126 \N +321730 2025-09-24 02:57:44.874732+00 2025-09-24 02:57:44.874744+00 f t DESCUENTO 0.00 2 8126 \N +321731 2025-09-24 02:57:44.876627+00 2025-09-24 02:57:44.876635+00 f t TOTAL 70000.00 3 8126 \N +321732 2025-09-24 02:57:44.87831+00 2025-09-24 02:57:44.878317+00 f t ADELANTO 19000.00 4 8126 \N +329029 2025-09-26 13:01:02.46247+00 2025-09-26 13:01:02.46248+00 f t SUBTOTAL 0.00 1 8315 \N +329030 2025-09-26 13:01:02.464876+00 2025-09-26 13:01:02.464887+00 f t DESCUENTO 0.00 2 8315 \N +329031 2025-09-26 13:01:02.466148+00 2025-09-26 13:01:02.466155+00 f t TOTAL 0.00 3 8315 \N +329032 2025-09-26 13:01:02.467212+00 2025-09-26 13:01:02.467218+00 f t ADELANTO 0.00 4 8315 \N +329209 2025-09-26 13:23:29.711188+00 2025-09-26 13:23:29.711199+00 f t SUBTOTAL 46000.00 1 8318 \N +329210 2025-09-26 13:23:29.712759+00 2025-09-26 13:23:29.712766+00 f t DESCUENTO 0.00 2 8318 \N +329211 2025-09-26 13:23:29.713953+00 2025-09-26 13:23:29.713959+00 f t TOTAL 46000.00 3 8318 \N +329212 2025-09-26 13:23:29.715502+00 2025-09-26 13:23:29.715509+00 f t ADELANTO 11000.00 4 8318 \N +321757 2025-09-24 03:01:43.297625+00 2025-09-24 03:01:43.297633+00 f t SUBTOTAL 98400.00 1 8127 \N +321758 2025-09-24 03:01:43.299292+00 2025-09-24 03:01:43.299299+00 f t DESCUENTO 0.00 2 8127 \N +321759 2025-09-24 03:01:43.300485+00 2025-09-24 03:01:43.300494+00 f t TOTAL 98400.00 3 8127 \N +321760 2025-09-24 03:01:43.301604+00 2025-09-24 03:01:43.30161+00 f t ADELANTO 57900.00 4 8127 \N +335717 2025-09-28 19:04:14.585476+00 2025-09-28 19:04:14.585487+00 f t SUBTOTAL 55000.00 1 8466 \N +335718 2025-09-28 19:04:14.587607+00 2025-09-28 19:04:14.587617+00 f t DESCUENTO 0.00 2 8466 \N +335719 2025-09-28 19:04:14.589316+00 2025-09-28 19:04:14.589334+00 f t TOTAL 55000.00 3 8466 \N +335720 2025-09-28 19:04:14.590827+00 2025-09-28 19:04:14.590835+00 f t ADELANTO 11000.00 4 8466 \N +466541 2025-11-07 21:55:10.970063+00 2025-11-07 21:55:10.97007+00 f t ADELANTO 11000.00 5 11695 \N +511582 2025-11-18 21:29:08.194287+00 2025-11-18 21:29:08.194299+00 f t SUBTOTAL 13200.00 1 12736 \N +511583 2025-11-18 21:29:08.196159+00 2025-11-18 21:29:08.196166+00 f t COSTO_SERVICIO 0.00 2 12736 \N +332097 2025-09-27 14:05:47.62868+00 2025-09-27 14:05:47.62869+00 f t SUBTOTAL 132900.00 1 8390 \N +332098 2025-09-27 14:05:47.630518+00 2025-09-27 14:05:47.630525+00 f t DESCUENTO 0.00 2 8390 \N +332099 2025-09-27 14:05:47.631721+00 2025-09-27 14:05:47.631727+00 f t TOTAL 132900.00 3 8390 \N +332100 2025-09-27 14:05:47.632893+00 2025-09-27 14:05:47.632898+00 f t ADELANTO 70900.00 4 8390 \N +339585 2025-09-30 02:47:11.752504+00 2025-09-30 02:47:11.752516+00 f t SUBTOTAL 54000.00 1 8571 \N +339586 2025-09-30 02:47:11.755508+00 2025-09-30 02:47:11.755521+00 f t DESCUENTO 0.00 2 8571 \N +339587 2025-09-30 02:47:11.75839+00 2025-09-30 02:47:11.758402+00 f t TOTAL 54000.00 3 8571 \N +339588 2025-09-30 02:47:11.761888+00 2025-09-30 02:47:11.761901+00 f t ADELANTO 13500.00 4 8571 \N +371773 2025-10-11 01:48:29.112804+00 2025-10-11 01:48:29.112812+00 f t SUBTOTAL 0.00 1 9366 \N +321813 2025-09-24 04:04:13.618208+00 2025-09-24 04:04:13.618217+00 f t SUBTOTAL 54000.00 1 8128 \N +321814 2025-09-24 04:04:13.619946+00 2025-09-24 04:04:13.619953+00 f t DESCUENTO 0.00 2 8128 \N +321815 2025-09-24 04:04:13.622044+00 2025-09-24 04:04:13.62205+00 f t TOTAL 54000.00 3 8128 \N +321816 2025-09-24 04:04:13.623459+00 2025-09-24 04:04:13.623478+00 f t ADELANTO 13500.00 4 8128 \N +321857 2025-09-24 04:33:09.991929+00 2025-09-24 04:33:09.99194+00 f t SUBTOTAL 55000.00 1 8129 \N +321858 2025-09-24 04:33:09.99422+00 2025-09-24 04:33:09.994228+00 f t DESCUENTO 0.00 2 8129 \N +321859 2025-09-24 04:33:09.996019+00 2025-09-24 04:33:09.996028+00 f t TOTAL 55000.00 3 8129 \N +321860 2025-09-24 04:33:09.997694+00 2025-09-24 04:33:09.997702+00 f t ADELANTO 11000.00 4 8129 \N +326253 2025-09-25 16:04:39.626952+00 2025-09-25 16:04:39.626961+00 f t SUBTOTAL 0.00 1 8245 \N +326254 2025-09-25 16:04:39.628509+00 2025-09-25 16:04:39.628516+00 f t DESCUENTO 0.00 2 8245 \N +326255 2025-09-25 16:04:39.629807+00 2025-09-25 16:04:39.629816+00 f t TOTAL 0.00 3 8245 \N +326256 2025-09-25 16:04:39.631097+00 2025-09-25 16:04:39.631106+00 f t ADELANTO 0.00 4 8245 \N +321877 2025-09-24 04:58:49.23811+00 2025-09-24 04:58:49.238123+00 f t SUBTOTAL 0.00 1 8130 \N +321878 2025-09-24 04:58:49.240416+00 2025-09-24 04:58:49.240423+00 f t DESCUENTO 0.00 2 8130 \N +321879 2025-09-24 04:58:49.241783+00 2025-09-24 04:58:49.241789+00 f t TOTAL 0.00 3 8130 \N +321880 2025-09-24 04:58:49.243022+00 2025-09-24 04:58:49.243027+00 f t ADELANTO 0.00 4 8130 \N +333953 2025-09-28 02:50:50.980357+00 2025-09-28 02:50:50.980369+00 f t SUBTOTAL 46000.00 1 8424 \N +333954 2025-09-28 02:50:50.982631+00 2025-09-28 02:50:50.982639+00 f t DESCUENTO 0.00 2 8424 \N +333955 2025-09-28 02:50:50.984257+00 2025-09-28 02:50:50.984263+00 f t TOTAL 46000.00 3 8424 \N +333956 2025-09-28 02:50:50.985631+00 2025-09-28 02:50:50.985639+00 f t ADELANTO 11000.00 4 8424 \N +321913 2025-09-24 05:02:28.425757+00 2025-09-24 05:02:28.425766+00 f t SUBTOTAL 70000.00 1 8131 \N +321914 2025-09-24 05:02:28.427348+00 2025-09-24 05:02:28.427357+00 f t DESCUENTO 0.00 2 8131 \N +321915 2025-09-24 05:02:28.428636+00 2025-09-24 05:02:28.428644+00 f t TOTAL 70000.00 3 8131 \N +321916 2025-09-24 05:02:28.429819+00 2025-09-24 05:02:28.429825+00 f t ADELANTO 19000.00 4 8131 \N +321921 2025-09-24 10:59:58.253733+00 2025-09-24 10:59:58.253745+00 f t SUBTOTAL 0.00 1 8132 \N +321922 2025-09-24 10:59:58.255196+00 2025-09-24 10:59:58.255206+00 f t DESCUENTO 0.00 2 8132 \N +321923 2025-09-24 10:59:58.256592+00 2025-09-24 10:59:58.256601+00 f t TOTAL 0.00 3 8132 \N +321924 2025-09-24 10:59:58.257847+00 2025-09-24 10:59:58.257853+00 f t ADELANTO 0.00 4 8132 \N +321949 2025-09-24 11:12:52.61187+00 2025-09-24 11:12:52.611878+00 f t SUBTOTAL 55000.00 1 8133 \N +321950 2025-09-24 11:12:52.613457+00 2025-09-24 11:12:52.613463+00 f t DESCUENTO 0.00 2 8133 \N +321951 2025-09-24 11:12:52.614572+00 2025-09-24 11:12:52.614577+00 f t TOTAL 55000.00 3 8133 \N +321952 2025-09-24 11:12:52.615534+00 2025-09-24 11:12:52.615538+00 f t ADELANTO 11000.00 4 8133 \N +327841 2025-09-26 00:12:32.083654+00 2025-09-26 00:12:32.083665+00 f t SUBTOTAL 30000.00 1 8285 \N +327842 2025-09-26 00:12:32.085747+00 2025-09-26 00:12:32.085759+00 f t DESCUENTO 0.00 2 8285 \N +327843 2025-09-26 00:12:32.087483+00 2025-09-26 00:12:32.087493+00 f t TOTAL 30000.00 3 8285 \N +327844 2025-09-26 00:12:32.088857+00 2025-09-26 00:12:32.088866+00 f t ADELANTO 30000.00 4 8285 \N +335097 2025-09-28 16:11:04.523326+00 2025-09-28 16:11:04.523336+00 f t SUBTOTAL 55000.00 1 8445 \N +335098 2025-09-28 16:11:04.525621+00 2025-09-28 16:11:04.52563+00 f t DESCUENTO 0.00 2 8445 \N +335099 2025-09-28 16:11:04.527552+00 2025-09-28 16:11:04.527561+00 f t TOTAL 55000.00 3 8445 \N +335100 2025-09-28 16:11:04.529247+00 2025-09-28 16:11:04.529255+00 f t ADELANTO 11000.00 4 8445 \N +321985 2025-09-24 11:21:28.477232+00 2025-09-24 11:21:28.47724+00 f t SUBTOTAL 0.00 1 8134 \N +321986 2025-09-24 11:21:28.479078+00 2025-09-24 11:21:28.479084+00 f t DESCUENTO 0.00 2 8134 \N +321987 2025-09-24 11:21:28.480107+00 2025-09-24 11:21:28.480113+00 f t TOTAL 0.00 3 8134 \N +321988 2025-09-24 11:21:28.481005+00 2025-09-24 11:21:28.481011+00 f t ADELANTO 0.00 4 8134 \N +335653 2025-09-28 18:57:14.313538+00 2025-09-28 18:57:14.313547+00 f t SUBTOTAL 0.00 1 8464 \N +335654 2025-09-28 18:57:14.31601+00 2025-09-28 18:57:14.316022+00 f t DESCUENTO 0.00 2 8464 \N +335655 2025-09-28 18:57:14.317718+00 2025-09-28 18:57:14.317728+00 f t TOTAL 0.00 3 8464 \N +335656 2025-09-28 18:57:14.319155+00 2025-09-28 18:57:14.319164+00 f t ADELANTO 0.00 4 8464 \N +322025 2025-09-24 11:39:17.88063+00 2025-09-24 11:39:17.880639+00 f t SUBTOTAL 78000.00 1 8135 \N +322026 2025-09-24 11:39:17.882181+00 2025-09-24 11:39:17.882187+00 f t DESCUENTO 0.00 2 8135 \N +322027 2025-09-24 11:39:17.883296+00 2025-09-24 11:39:17.883301+00 f t TOTAL 78000.00 3 8135 \N +322028 2025-09-24 11:39:17.884478+00 2025-09-24 11:39:17.884484+00 f t ADELANTO 21500.00 4 8135 \N +328961 2025-09-26 12:40:50.06972+00 2025-09-26 12:40:50.069729+00 f t SUBTOTAL 70000.00 1 8313 \N +328962 2025-09-26 12:40:50.071288+00 2025-09-26 12:40:50.071294+00 f t DESCUENTO 0.00 2 8313 \N +328963 2025-09-26 12:40:50.072506+00 2025-09-26 12:40:50.072512+00 f t TOTAL 70000.00 3 8313 \N +328964 2025-09-26 12:40:50.073546+00 2025-09-26 12:40:50.073551+00 f t ADELANTO 19000.00 4 8313 \N +336097 2025-09-28 20:37:07.524216+00 2025-09-28 20:37:07.524226+00 f t SUBTOTAL 0.00 1 8475 \N +336098 2025-09-28 20:37:07.526104+00 2025-09-28 20:37:07.526116+00 f t DESCUENTO 0.00 2 8475 \N +336099 2025-09-28 20:37:07.527811+00 2025-09-28 20:37:07.527822+00 f t TOTAL 0.00 3 8475 \N +322045 2025-09-24 11:41:13.78472+00 2025-09-24 11:41:13.784729+00 f t SUBTOTAL 0.00 1 8136 \N +322046 2025-09-24 11:41:13.786499+00 2025-09-24 11:41:13.786508+00 f t DESCUENTO 0.00 2 8136 \N +322047 2025-09-24 11:41:13.787676+00 2025-09-24 11:41:13.787682+00 f t TOTAL 0.00 3 8136 \N +322048 2025-09-24 11:41:13.788709+00 2025-09-24 11:41:13.788716+00 f t ADELANTO 0.00 4 8136 \N +336100 2025-09-28 20:37:07.529444+00 2025-09-28 20:37:07.529454+00 f t ADELANTO 0.00 4 8475 \N +336137 2025-09-28 21:13:26.905164+00 2025-09-28 21:13:26.905172+00 f t SUBTOTAL 0.00 1 8476 \N +336138 2025-09-28 21:13:26.908185+00 2025-09-28 21:13:26.908194+00 f t DESCUENTO 0.00 2 8476 \N +336139 2025-09-28 21:13:26.909848+00 2025-09-28 21:13:26.909856+00 f t TOTAL 0.00 3 8476 \N +336140 2025-09-28 21:13:26.912149+00 2025-09-28 21:13:26.912156+00 f t ADELANTO 0.00 4 8476 \N +331501 2025-09-27 12:24:43.097211+00 2025-09-27 12:24:43.097223+00 f t SUBTOTAL 0.00 1 8381 \N +331502 2025-09-27 12:24:43.099332+00 2025-09-27 12:24:43.09934+00 f t DESCUENTO 0.00 2 8381 \N +331503 2025-09-27 12:24:43.100737+00 2025-09-27 12:24:43.100743+00 f t TOTAL 0.00 3 8381 \N +331504 2025-09-27 12:24:43.101716+00 2025-09-27 12:24:43.101721+00 f t ADELANTO 0.00 4 8381 \N +466542 2025-11-07 21:58:15.450804+00 2025-11-07 21:58:15.450811+00 f t SUBTOTAL 70000.00 1 11694 \N +379788 2025-10-13 23:27:36.159879+00 2025-10-13 23:27:36.159887+00 f t ADELANTO 19000.00 4 9579 \N +332105 2025-09-27 14:16:30.476297+00 2025-09-27 14:16:30.476307+00 f t SUBTOTAL 0.00 1 8391 \N +332106 2025-09-27 14:16:30.477865+00 2025-09-27 14:16:30.477874+00 f t DESCUENTO 0.00 2 8391 \N +332107 2025-09-27 14:16:30.479107+00 2025-09-27 14:16:30.479114+00 f t TOTAL 0.00 3 8391 \N +332108 2025-09-27 14:16:30.480366+00 2025-09-27 14:16:30.480374+00 f t ADELANTO 0.00 4 8391 \N +322097 2025-09-24 12:02:07.735377+00 2025-09-24 12:02:07.735386+00 f t SUBTOTAL 55000.00 1 8137 \N +322098 2025-09-24 12:02:07.737077+00 2025-09-24 12:02:07.737084+00 f t DESCUENTO 0.00 2 8137 \N +322099 2025-09-24 12:02:07.738651+00 2025-09-24 12:02:07.738662+00 f t TOTAL 55000.00 3 8137 \N +322100 2025-09-24 12:02:07.740043+00 2025-09-24 12:02:07.740049+00 f t ADELANTO 11000.00 4 8137 \N +322105 2025-09-24 12:28:43.772623+00 2025-09-24 12:28:43.772633+00 f t SUBTOTAL 0.00 1 8138 \N +322106 2025-09-24 12:28:43.774149+00 2025-09-24 12:28:43.774157+00 f t DESCUENTO 0.00 2 8138 \N +322107 2025-09-24 12:28:43.775942+00 2025-09-24 12:28:43.77595+00 f t TOTAL 0.00 3 8138 \N +322108 2025-09-24 12:28:43.777146+00 2025-09-24 12:28:43.777153+00 f t ADELANTO 0.00 4 8138 \N +322125 2025-09-24 12:29:51.830986+00 2025-09-24 12:29:51.830997+00 f t SUBTOTAL 0.00 1 8139 \N +322126 2025-09-24 12:29:51.83294+00 2025-09-24 12:29:51.832948+00 f t DESCUENTO 0.00 2 8139 \N +322127 2025-09-24 12:29:51.834307+00 2025-09-24 12:29:51.834315+00 f t TOTAL 0.00 3 8139 \N +322128 2025-09-24 12:29:51.835469+00 2025-09-24 12:29:51.835475+00 f t ADELANTO 0.00 4 8139 \N +333173 2025-09-27 17:25:00.948646+00 2025-09-27 17:25:00.948658+00 f t SUBTOTAL 55000.00 1 8402 \N +333174 2025-09-27 17:25:00.951085+00 2025-09-27 17:25:00.951097+00 f t DESCUENTO 0.00 2 8402 \N +333175 2025-09-27 17:25:00.953334+00 2025-09-27 17:25:00.953344+00 f t TOTAL 55000.00 3 8402 \N +333176 2025-09-27 17:25:00.955158+00 2025-09-27 17:25:00.955168+00 f t ADELANTO 11000.00 4 8402 \N +333541 2025-09-28 00:06:38.270522+00 2025-09-28 00:06:38.270535+00 f t SUBTOTAL 80000.00 1 8417 \N +333542 2025-09-28 00:06:38.273005+00 2025-09-28 00:06:38.273018+00 f t DESCUENTO 0.00 2 8417 \N +333543 2025-09-28 00:06:38.274994+00 2025-09-28 00:06:38.275007+00 f t TOTAL 80000.00 3 8417 \N +333544 2025-09-28 00:06:38.276798+00 2025-09-28 00:06:38.276809+00 f t ADELANTO 12000.00 4 8417 \N +322177 2025-09-24 12:35:52.277253+00 2025-09-24 12:35:52.277262+00 f t SUBTOTAL 0.00 1 8141 \N +322178 2025-09-24 12:35:52.278579+00 2025-09-24 12:35:52.278585+00 f t DESCUENTO 0.00 2 8141 \N +322179 2025-09-24 12:35:52.279824+00 2025-09-24 12:35:52.279831+00 f t TOTAL 0.00 3 8141 \N +322180 2025-09-24 12:35:52.281066+00 2025-09-24 12:35:52.281076+00 f t ADELANTO 0.00 4 8141 \N +322225 2025-09-24 13:22:19.03307+00 2025-09-24 13:22:19.03308+00 f t SUBTOTAL 0.00 1 8142 \N +322226 2025-09-24 13:22:19.035447+00 2025-09-24 13:22:19.035459+00 f t DESCUENTO 0.00 2 8142 \N +322227 2025-09-24 13:22:19.037128+00 2025-09-24 13:22:19.037138+00 f t TOTAL 0.00 3 8142 \N +322228 2025-09-24 13:22:19.038479+00 2025-09-24 13:22:19.038487+00 f t ADELANTO 0.00 4 8142 \N +322245 2025-09-24 13:22:45.073175+00 2025-09-24 13:22:45.073185+00 f t SUBTOTAL 0.00 1 8143 \N +322246 2025-09-24 13:22:45.07503+00 2025-09-24 13:22:45.075038+00 f t DESCUENTO 0.00 2 8143 \N +322247 2025-09-24 13:22:45.076409+00 2025-09-24 13:22:45.076419+00 f t TOTAL 0.00 3 8143 \N +322248 2025-09-24 13:22:45.07791+00 2025-09-24 13:22:45.077919+00 f t ADELANTO 0.00 4 8143 \N +335029 2025-09-28 15:30:30.862706+00 2025-09-28 15:30:30.862718+00 f t SUBTOTAL 55000.00 1 8442 \N +335030 2025-09-28 15:30:30.865075+00 2025-09-28 15:30:30.865086+00 f t DESCUENTO 0.00 2 8442 \N +335031 2025-09-28 15:30:30.866641+00 2025-09-28 15:30:30.866651+00 f t TOTAL 55000.00 3 8442 \N +335032 2025-09-28 15:30:30.86817+00 2025-09-28 15:30:30.868179+00 f t ADELANTO 11000.00 4 8442 \N +335105 2025-09-28 16:23:57.519932+00 2025-09-28 16:23:57.51994+00 f t SUBTOTAL 0.00 1 8446 \N +335106 2025-09-28 16:23:57.522307+00 2025-09-28 16:23:57.522315+00 f t DESCUENTO 0.00 2 8446 \N +335107 2025-09-28 16:23:57.52465+00 2025-09-28 16:23:57.524658+00 f t TOTAL 0.00 3 8446 \N +335108 2025-09-28 16:23:57.526067+00 2025-09-28 16:23:57.526075+00 f t ADELANTO 0.00 4 8446 \N +335177 2025-09-28 16:43:56.462224+00 2025-09-28 16:43:56.462234+00 f t SUBTOTAL 55000.00 1 8448 \N +335178 2025-09-28 16:43:56.464346+00 2025-09-28 16:43:56.464356+00 f t DESCUENTO 0.00 2 8448 \N +335179 2025-09-28 16:43:56.465914+00 2025-09-28 16:43:56.465924+00 f t TOTAL 55000.00 3 8448 \N +335180 2025-09-28 16:43:56.46826+00 2025-09-28 16:43:56.468271+00 f t ADELANTO 11000.00 4 8448 \N +328677 2025-09-26 11:35:59.935646+00 2025-09-26 11:35:59.935654+00 f t SUBTOTAL 46000.00 1 8308 \N +322289 2025-09-24 13:24:39.66631+00 2025-09-24 13:24:39.666321+00 f t SUBTOTAL 0.00 1 8144 \N +322290 2025-09-24 13:24:39.66871+00 2025-09-24 13:24:39.668718+00 f t DESCUENTO 0.00 2 8144 \N +322291 2025-09-24 13:24:39.670128+00 2025-09-24 13:24:39.670134+00 f t TOTAL 0.00 3 8144 \N +322292 2025-09-24 13:24:39.671298+00 2025-09-24 13:24:39.671304+00 f t ADELANTO 0.00 4 8144 \N +328678 2025-09-26 11:35:59.937468+00 2025-09-26 11:35:59.937479+00 f t DESCUENTO 0.00 2 8308 \N +328679 2025-09-26 11:35:59.938672+00 2025-09-26 11:35:59.938678+00 f t TOTAL 46000.00 3 8308 \N +328680 2025-09-26 11:35:59.939827+00 2025-09-26 11:35:59.939835+00 f t ADELANTO 11000.00 4 8308 \N +328753 2025-09-26 11:59:56.565993+00 2025-09-26 11:59:56.566002+00 f t SUBTOTAL 46000.00 1 8310 \N +328754 2025-09-26 11:59:56.567893+00 2025-09-26 11:59:56.567901+00 f t DESCUENTO 0.00 2 8310 \N +328755 2025-09-26 11:59:56.569073+00 2025-09-26 11:59:56.56908+00 f t TOTAL 46000.00 3 8310 \N +328756 2025-09-26 11:59:56.570126+00 2025-09-26 11:59:56.570131+00 f t ADELANTO 11000.00 4 8310 \N +322305 2025-09-24 14:14:06.182586+00 2025-09-24 14:14:06.182599+00 f t SUBTOTAL 0.00 1 8145 \N +322306 2025-09-24 14:14:06.18496+00 2025-09-24 14:14:06.184973+00 f t DESCUENTO 0.00 2 8145 \N +322307 2025-09-24 14:14:06.186353+00 2025-09-24 14:14:06.186361+00 f t TOTAL 0.00 3 8145 \N +322308 2025-09-24 14:14:06.187504+00 2025-09-24 14:14:06.18751+00 f t ADELANTO 0.00 4 8145 \N +335729 2025-09-28 19:17:11.780156+00 2025-09-28 19:17:11.780165+00 f t SUBTOTAL 55000.00 1 8467 \N +335730 2025-09-28 19:17:11.782177+00 2025-09-28 19:17:11.782188+00 f t DESCUENTO 0.00 2 8467 \N +335731 2025-09-28 19:17:11.783523+00 2025-09-28 19:17:11.78353+00 f t TOTAL 55000.00 3 8467 \N +335732 2025-09-28 19:17:11.78491+00 2025-09-28 19:17:11.784916+00 f t ADELANTO 11000.00 4 8467 \N +335801 2025-09-28 19:54:05.989977+00 2025-09-28 19:54:05.989986+00 f t SUBTOTAL 0.00 1 8470 \N +335802 2025-09-28 19:54:05.992372+00 2025-09-28 19:54:05.99238+00 f t DESCUENTO 0.00 2 8470 \N +335803 2025-09-28 19:54:05.993764+00 2025-09-28 19:54:05.993771+00 f t TOTAL 0.00 3 8470 \N +335804 2025-09-28 19:54:05.995101+00 2025-09-28 19:54:05.995106+00 f t ADELANTO 0.00 4 8470 \N +329401 2025-09-26 14:25:51.02991+00 2025-09-26 14:25:51.029919+00 f t SUBTOTAL 0.00 1 8324 \N +329402 2025-09-26 14:25:51.03146+00 2025-09-26 14:25:51.031467+00 f t DESCUENTO 0.00 2 8324 \N +379597 2025-10-13 22:50:18.643911+00 2025-10-13 22:50:18.643919+00 f t SUBTOTAL 30000.00 1 9574 \N +379598 2025-10-13 22:50:18.645756+00 2025-10-13 22:50:18.645764+00 f t DESCUENTO 0.00 2 9574 \N +322365 2025-09-24 14:45:15.450101+00 2025-09-24 14:45:15.450108+00 f t SUBTOTAL 55000.00 1 8140 \N +322366 2025-09-24 14:45:15.451628+00 2025-09-24 14:45:15.451635+00 f t DESCUENTO 0.00 2 8140 \N +322367 2025-09-24 14:45:15.452786+00 2025-09-24 14:45:15.452792+00 f t TOTAL 55000.00 3 8140 \N +322368 2025-09-24 14:45:15.453769+00 2025-09-24 14:45:15.453775+00 f t ADELANTO 11000.00 4 8140 \N +324377 2025-09-24 23:51:15.391494+00 2025-09-24 23:51:15.391503+00 f t SUBTOTAL 46000.00 1 8203 \N +324378 2025-09-24 23:51:15.393104+00 2025-09-24 23:51:15.393111+00 f t DESCUENTO 0.00 2 8203 \N +324379 2025-09-24 23:51:15.394355+00 2025-09-24 23:51:15.394361+00 f t TOTAL 46000.00 3 8203 \N +324380 2025-09-24 23:51:15.395383+00 2025-09-24 23:51:15.395388+00 f t ADELANTO 11000.00 4 8203 \N +324513 2025-09-25 01:03:55.475817+00 2025-09-25 01:03:55.475825+00 f t SUBTOTAL 55000.00 1 8208 \N +324514 2025-09-25 01:03:55.477569+00 2025-09-25 01:03:55.477576+00 f t DESCUENTO 0.00 2 8208 \N +324515 2025-09-25 01:03:55.478561+00 2025-09-25 01:03:55.478566+00 f t TOTAL 55000.00 3 8208 \N +324516 2025-09-25 01:03:55.479641+00 2025-09-25 01:03:55.479646+00 f t ADELANTO 11000.00 4 8208 \N +332113 2025-09-27 14:17:41.482731+00 2025-09-27 14:17:41.48274+00 f t SUBTOTAL 0.00 1 8392 \N +332114 2025-09-27 14:17:41.484315+00 2025-09-27 14:17:41.484325+00 f t DESCUENTO 0.00 2 8392 \N +332115 2025-09-27 14:17:41.485992+00 2025-09-27 14:17:41.485999+00 f t TOTAL 0.00 3 8392 \N +332116 2025-09-27 14:17:41.48718+00 2025-09-27 14:17:41.487186+00 f t ADELANTO 0.00 4 8392 \N +325449 2025-09-25 08:26:11.146806+00 2025-09-25 08:26:11.146816+00 f t SUBTOTAL 47000.00 1 8218 \N +325450 2025-09-25 08:26:11.148655+00 2025-09-25 08:26:11.148662+00 f t DESCUENTO 0.00 2 8218 \N +325451 2025-09-25 08:26:11.150435+00 2025-09-25 08:26:11.150443+00 f t TOTAL 47000.00 3 8218 \N +325452 2025-09-25 08:26:11.152099+00 2025-09-25 08:26:11.152106+00 f t ADELANTO 12000.00 4 8218 \N +322445 2025-09-24 14:58:04.998989+00 2025-09-24 14:58:04.998998+00 f t SUBTOTAL 54000.00 1 8146 \N +322446 2025-09-24 14:58:05.000791+00 2025-09-24 14:58:05.000799+00 f t DESCUENTO 0.00 2 8146 \N +322447 2025-09-24 14:58:05.002059+00 2025-09-24 14:58:05.002065+00 f t TOTAL 54000.00 3 8146 \N +322448 2025-09-24 14:58:05.003291+00 2025-09-24 14:58:05.003297+00 f t ADELANTO 13500.00 4 8146 \N +333453 2025-09-27 23:02:22.3595+00 2025-09-27 23:02:22.359508+00 f t SUBTOTAL 54000.00 1 8415 \N +333454 2025-09-27 23:02:22.361304+00 2025-09-27 23:02:22.361311+00 f t DESCUENTO 0.00 2 8415 \N +322457 2025-09-24 15:02:12.570374+00 2025-09-24 15:02:12.570385+00 f t SUBTOTAL 46000.00 1 8147 \N +322458 2025-09-24 15:02:12.572316+00 2025-09-24 15:02:12.572323+00 f t DESCUENTO 0.00 2 8147 \N +322459 2025-09-24 15:02:12.573552+00 2025-09-24 15:02:12.573557+00 f t TOTAL 46000.00 3 8147 \N +322460 2025-09-24 15:02:12.575198+00 2025-09-24 15:02:12.575205+00 f t ADELANTO 11000.00 4 8147 \N +333455 2025-09-27 23:02:22.362504+00 2025-09-27 23:02:22.36251+00 f t TOTAL 54000.00 3 8415 \N +333456 2025-09-27 23:02:22.363679+00 2025-09-27 23:02:22.363685+00 f t ADELANTO 13500.00 4 8415 \N +364789 2025-10-08 17:56:54.581507+00 2025-10-08 17:56:54.581517+00 f t SUBTOTAL 0.00 1 9171 \N +364790 2025-10-08 17:56:54.583268+00 2025-10-08 17:56:54.583274+00 f t DESCUENTO 0.00 2 9171 \N +364791 2025-10-08 17:56:54.584342+00 2025-10-08 17:56:54.58435+00 f t TOTAL 0.00 3 9171 \N +364792 2025-10-08 17:56:54.585439+00 2025-10-08 17:56:54.585445+00 f t ADELANTO 0.00 4 9171 \N +327501 2025-09-25 22:04:50.733205+00 2025-09-25 22:04:50.733218+00 f t SUBTOTAL 46000.00 1 8274 \N +327502 2025-09-25 22:04:50.73537+00 2025-09-25 22:04:50.735382+00 f t DESCUENTO 0.00 2 8274 \N +327503 2025-09-25 22:04:50.73682+00 2025-09-25 22:04:50.736831+00 f t TOTAL 46000.00 3 8274 \N +327504 2025-09-25 22:04:50.738261+00 2025-09-25 22:04:50.738271+00 f t ADELANTO 11000.00 4 8274 \N +322505 2025-09-24 15:07:54.86955+00 2025-09-24 15:07:54.869561+00 f t SUBTOTAL 55000.00 1 8149 \N +322506 2025-09-24 15:07:54.871455+00 2025-09-24 15:07:54.871465+00 f t DESCUENTO 0.00 2 8149 \N +322507 2025-09-24 15:07:54.873027+00 2025-09-24 15:07:54.873036+00 f t TOTAL 55000.00 3 8149 \N +322508 2025-09-24 15:07:54.874546+00 2025-09-24 15:07:54.874554+00 f t ADELANTO 11000.00 4 8149 \N +327677 2025-09-25 23:21:45.874793+00 2025-09-25 23:21:45.874805+00 f t SUBTOTAL 0.00 1 8280 \N +327678 2025-09-25 23:21:45.877732+00 2025-09-25 23:21:45.877744+00 f t DESCUENTO 0.00 2 8280 \N +322513 2025-09-24 15:08:01.953684+00 2025-09-24 15:08:01.953695+00 f t SUBTOTAL 46000.00 1 8148 \N +322514 2025-09-24 15:08:01.95537+00 2025-09-24 15:08:01.955376+00 f t DESCUENTO 0.00 2 8148 \N +322515 2025-09-24 15:08:01.956848+00 2025-09-24 15:08:01.956855+00 f t TOTAL 46000.00 3 8148 \N +322516 2025-09-24 15:08:01.958307+00 2025-09-24 15:08:01.958314+00 f t ADELANTO 11000.00 4 8148 \N +327679 2025-09-25 23:21:45.879496+00 2025-09-25 23:21:45.879507+00 f t TOTAL 0.00 3 8280 \N +327680 2025-09-25 23:21:45.881106+00 2025-09-25 23:21:45.881115+00 f t ADELANTO 0.00 4 8280 \N +322533 2025-09-24 15:58:42.192397+00 2025-09-24 15:58:42.192407+00 f t SUBTOTAL 0.00 1 8150 \N +322534 2025-09-24 15:58:42.194075+00 2025-09-24 15:58:42.194081+00 f t DESCUENTO 0.00 2 8150 \N +322535 2025-09-24 15:58:42.195023+00 2025-09-24 15:58:42.195028+00 f t TOTAL 0.00 3 8150 \N +322536 2025-09-24 15:58:42.195924+00 2025-09-24 15:58:42.195929+00 f t ADELANTO 0.00 4 8150 \N +328353 2025-09-26 03:19:10.193029+00 2025-09-26 03:19:10.193041+00 f t SUBTOTAL 0.00 1 8297 \N +328354 2025-09-26 03:19:10.195945+00 2025-09-26 03:19:10.195959+00 f t DESCUENTO 0.00 2 8297 \N +328355 2025-09-26 03:19:10.197956+00 2025-09-26 03:19:10.197965+00 f t TOTAL 0.00 3 8297 \N +328356 2025-09-26 03:19:10.199875+00 2025-09-26 03:19:10.199883+00 f t ADELANTO 0.00 4 8297 \N +322573 2025-09-24 16:07:35.020685+00 2025-09-24 16:07:35.020694+00 f t SUBTOTAL 30000.00 1 8151 \N +322574 2025-09-24 16:07:35.022327+00 2025-09-24 16:07:35.022337+00 f t DESCUENTO 0.00 2 8151 \N +322575 2025-09-24 16:07:35.024043+00 2025-09-24 16:07:35.024052+00 f t TOTAL 30000.00 3 8151 \N +322576 2025-09-24 16:07:35.025474+00 2025-09-24 16:07:35.025483+00 f t ADELANTO 30000.00 4 8151 \N +322601 2025-09-24 16:08:56.463919+00 2025-09-24 16:08:56.463928+00 f t SUBTOTAL 72500.00 1 8152 \N +322602 2025-09-24 16:08:56.465716+00 2025-09-24 16:08:56.465724+00 f t DESCUENTO 0.00 2 8152 \N +322603 2025-09-24 16:08:56.466998+00 2025-09-24 16:08:56.467006+00 f t TOTAL 72500.00 3 8152 \N +322604 2025-09-24 16:08:56.468279+00 2025-09-24 16:08:56.468287+00 f t ADELANTO 72500.00 4 8152 \N +322609 2025-09-24 16:24:59.541964+00 2025-09-24 16:24:59.541973+00 f t SUBTOTAL 0.00 1 8153 \N +322610 2025-09-24 16:24:59.543501+00 2025-09-24 16:24:59.543511+00 f t DESCUENTO 0.00 2 8153 \N +322611 2025-09-24 16:24:59.544733+00 2025-09-24 16:24:59.54474+00 f t TOTAL 0.00 3 8153 \N +322612 2025-09-24 16:24:59.54774+00 2025-09-24 16:24:59.547748+00 f t ADELANTO 0.00 4 8153 \N +322625 2025-09-24 16:36:50.201777+00 2025-09-24 16:36:50.201787+00 f t SUBTOTAL 0.00 1 8154 \N +322626 2025-09-24 16:36:50.204385+00 2025-09-24 16:36:50.204393+00 f t DESCUENTO 0.00 2 8154 \N +322627 2025-09-24 16:36:50.205792+00 2025-09-24 16:36:50.205798+00 f t TOTAL 0.00 3 8154 \N +322628 2025-09-24 16:36:50.206865+00 2025-09-24 16:36:50.20687+00 f t ADELANTO 0.00 4 8154 \N +329403 2025-09-26 14:25:51.032918+00 2025-09-26 14:25:51.032924+00 f t TOTAL 0.00 3 8324 \N +329404 2025-09-26 14:25:51.034129+00 2025-09-26 14:25:51.034135+00 f t ADELANTO 0.00 4 8324 \N +331513 2025-09-27 12:43:24.15277+00 2025-09-27 12:43:24.152779+00 f t SUBTOTAL 121000.00 1 8382 \N +331514 2025-09-27 12:43:24.154593+00 2025-09-27 12:43:24.154602+00 f t DESCUENTO 0.00 2 8382 \N +331515 2025-09-27 12:43:24.155828+00 2025-09-27 12:43:24.155834+00 f t TOTAL 121000.00 3 8382 \N +331516 2025-09-27 12:43:24.15694+00 2025-09-27 12:43:24.156945+00 f t ADELANTO 26000.00 4 8382 \N +339269 2025-09-29 23:36:32.703924+00 2025-09-29 23:36:32.703934+00 f t SUBTOTAL 214000.00 1 8560 \N +339270 2025-09-29 23:36:32.706075+00 2025-09-29 23:36:32.706088+00 f t DESCUENTO 0.00 2 8560 \N +339271 2025-09-29 23:36:32.707895+00 2025-09-29 23:36:32.707906+00 f t TOTAL 214000.00 3 8560 \N +322665 2025-09-24 16:53:05.400536+00 2025-09-24 16:53:05.40055+00 f t SUBTOTAL 0.00 1 8156 \N +322666 2025-09-24 16:53:05.403031+00 2025-09-24 16:53:05.403043+00 f t DESCUENTO 0.00 2 8156 \N +322667 2025-09-24 16:53:05.404841+00 2025-09-24 16:53:05.404851+00 f t TOTAL 0.00 3 8156 \N +322668 2025-09-24 16:53:05.406504+00 2025-09-24 16:53:05.406515+00 f t ADELANTO 0.00 4 8156 \N +339272 2025-09-29 23:36:32.709527+00 2025-09-29 23:36:32.709535+00 f t ADELANTO 24000.00 4 8560 \N +324521 2025-09-25 01:18:56.083011+00 2025-09-25 01:18:56.08302+00 f t SUBTOTAL 0.00 1 8209 \N +324522 2025-09-25 01:18:56.084286+00 2025-09-25 01:18:56.084292+00 f t DESCUENTO 0.00 2 8209 \N +324523 2025-09-25 01:18:56.085374+00 2025-09-25 01:18:56.085379+00 f t TOTAL 0.00 3 8209 \N +324524 2025-09-25 01:18:56.086254+00 2025-09-25 01:18:56.08626+00 f t ADELANTO 0.00 4 8209 \N +322705 2025-09-24 17:18:48.433604+00 2025-09-24 17:18:48.433616+00 f t SUBTOTAL 47000.00 1 8121 \N +322706 2025-09-24 17:18:48.435489+00 2025-09-24 17:18:48.435499+00 f t DESCUENTO 0.00 2 8121 \N +322707 2025-09-24 17:18:48.43703+00 2025-09-24 17:18:48.437039+00 f t TOTAL 47000.00 3 8121 \N +322708 2025-09-24 17:18:48.438301+00 2025-09-24 17:18:48.43831+00 f t ADELANTO 12000.00 4 8121 \N +322717 2025-09-24 17:25:40.002489+00 2025-09-24 17:25:40.002501+00 f t SUBTOTAL 78000.00 1 8157 \N +322718 2025-09-24 17:25:40.004891+00 2025-09-24 17:25:40.004902+00 f t DESCUENTO 0.00 2 8157 \N +322719 2025-09-24 17:25:40.010809+00 2025-09-24 17:25:40.010822+00 f t TOTAL 78000.00 3 8157 \N +322720 2025-09-24 17:25:40.0129+00 2025-09-24 17:25:40.01291+00 f t ADELANTO 13000.00 4 8157 \N +333265 2025-09-27 18:21:40.832576+00 2025-09-27 18:21:40.832587+00 f t SUBTOTAL 98400.00 1 8405 \N +333266 2025-09-27 18:21:40.834409+00 2025-09-27 18:21:40.834416+00 f t DESCUENTO 0.00 2 8405 \N +333267 2025-09-27 18:21:40.835702+00 2025-09-27 18:21:40.83571+00 f t TOTAL 98400.00 3 8405 \N +333268 2025-09-27 18:21:40.836953+00 2025-09-27 18:21:40.836958+00 f t ADELANTO 57900.00 4 8405 \N +326057 2025-09-25 15:33:03.355607+00 2025-09-25 15:33:03.355619+00 f t SUBTOTAL 78000.00 1 8239 \N +326058 2025-09-25 15:33:03.357584+00 2025-09-25 15:33:03.357592+00 f t DESCUENTO 0.00 2 8239 \N +326059 2025-09-25 15:33:03.358848+00 2025-09-25 15:33:03.358854+00 f t TOTAL 78000.00 3 8239 \N +322737 2025-09-24 17:28:03.268199+00 2025-09-24 17:28:03.268212+00 f t SUBTOTAL 0.00 1 8158 \N +322738 2025-09-24 17:28:03.270516+00 2025-09-24 17:28:03.270525+00 f t DESCUENTO 0.00 2 8158 \N +322739 2025-09-24 17:28:03.272344+00 2025-09-24 17:28:03.272355+00 f t TOTAL 0.00 3 8158 \N +322740 2025-09-24 17:28:03.273847+00 2025-09-24 17:28:03.273854+00 f t ADELANTO 0.00 4 8158 \N +326060 2025-09-25 15:33:03.360227+00 2025-09-25 15:33:03.360232+00 f t ADELANTO 13000.00 4 8239 \N +322753 2025-09-24 17:31:29.966612+00 2025-09-24 17:31:29.966621+00 f t SUBTOTAL 23000.00 1 8155 \N +322754 2025-09-24 17:31:29.968408+00 2025-09-24 17:31:29.968416+00 f t DESCUENTO 0.00 2 8155 \N +322755 2025-09-24 17:31:29.969604+00 2025-09-24 17:31:29.96961+00 f t TOTAL 23000.00 3 8155 \N +322756 2025-09-24 17:31:29.970626+00 2025-09-24 17:31:29.970631+00 f t ADELANTO 5500.00 4 8155 \N +333881 2025-09-28 01:17:23.228501+00 2025-09-28 01:17:23.228509+00 f t SUBTOTAL 46000.00 1 8422 \N +333882 2025-09-28 01:17:23.230576+00 2025-09-28 01:17:23.230588+00 f t DESCUENTO 0.00 2 8422 \N +333883 2025-09-28 01:17:23.231875+00 2025-09-28 01:17:23.23188+00 f t TOTAL 46000.00 3 8422 \N +333884 2025-09-28 01:17:23.232934+00 2025-09-28 01:17:23.232939+00 f t ADELANTO 11000.00 4 8422 \N +322785 2025-09-24 17:32:21.944311+00 2025-09-24 17:32:21.944321+00 f t SUBTOTAL 70000.00 1 8159 \N +322786 2025-09-24 17:32:21.945962+00 2025-09-24 17:32:21.945969+00 f t DESCUENTO 0.00 2 8159 \N +322787 2025-09-24 17:32:21.947232+00 2025-09-24 17:32:21.94724+00 f t TOTAL 70000.00 3 8159 \N +322788 2025-09-24 17:32:21.948382+00 2025-09-24 17:32:21.948388+00 f t ADELANTO 19000.00 4 8159 \N +322793 2025-09-24 17:35:51.36245+00 2025-09-24 17:35:51.362459+00 f t SUBTOTAL 0.00 1 8160 \N +322794 2025-09-24 17:35:51.36396+00 2025-09-24 17:35:51.363968+00 f t DESCUENTO 0.00 2 8160 \N +322795 2025-09-24 17:35:51.365281+00 2025-09-24 17:35:51.365287+00 f t TOTAL 0.00 3 8160 \N +322796 2025-09-24 17:35:51.366418+00 2025-09-24 17:35:51.366425+00 f t ADELANTO 0.00 4 8160 \N +327257 2025-09-25 21:21:35.037238+00 2025-09-25 21:21:35.037247+00 f t SUBTOTAL 70000.00 1 8270 \N +327258 2025-09-25 21:21:35.039108+00 2025-09-25 21:21:35.039117+00 f t DESCUENTO 0.00 2 8270 \N +327259 2025-09-25 21:21:35.040307+00 2025-09-25 21:21:35.040313+00 f t TOTAL 70000.00 3 8270 \N +327260 2025-09-25 21:21:35.041511+00 2025-09-25 21:21:35.041517+00 f t ADELANTO 19000.00 4 8270 \N +327413 2025-09-25 21:34:50.560511+00 2025-09-25 21:34:50.560519+00 f t SUBTOTAL 132900.00 1 8271 \N +327414 2025-09-25 21:34:50.568967+00 2025-09-25 21:34:50.568977+00 f t DESCUENTO 0.00 2 8271 \N +327415 2025-09-25 21:34:50.571029+00 2025-09-25 21:34:50.571039+00 f t TOTAL 132900.00 3 8271 \N +327416 2025-09-25 21:34:50.572431+00 2025-09-25 21:34:50.572439+00 f t ADELANTO 70900.00 4 8271 \N +322821 2025-09-24 17:39:23.172435+00 2025-09-24 17:39:23.172447+00 f t SUBTOTAL 0.00 1 8161 \N +322822 2025-09-24 17:39:23.174641+00 2025-09-24 17:39:23.174649+00 f t DESCUENTO 0.00 2 8161 \N +322823 2025-09-24 17:39:23.176498+00 2025-09-24 17:39:23.17651+00 f t TOTAL 0.00 3 8161 \N +322824 2025-09-24 17:39:23.178251+00 2025-09-24 17:39:23.178257+00 f t ADELANTO 0.00 4 8161 \N +322857 2025-09-24 17:53:59.269435+00 2025-09-24 17:53:59.269443+00 f t SUBTOTAL 0.00 1 8163 \N +322858 2025-09-24 17:53:59.271316+00 2025-09-24 17:53:59.271323+00 f t DESCUENTO 0.00 2 8163 \N +322859 2025-09-24 17:53:59.272441+00 2025-09-24 17:53:59.272447+00 f t TOTAL 0.00 3 8163 \N +322860 2025-09-24 17:53:59.273533+00 2025-09-24 17:53:59.273538+00 f t ADELANTO 0.00 4 8163 \N +335037 2025-09-28 15:54:23.332506+00 2025-09-28 15:54:23.332515+00 f t SUBTOTAL 0.00 1 8443 \N +322881 2025-09-24 17:58:54.117482+00 2025-09-24 17:58:54.117492+00 f t SUBTOTAL 13200.00 1 8162 \N +322882 2025-09-24 17:58:54.118945+00 2025-09-24 17:58:54.118952+00 f t DESCUENTO 0.00 2 8162 \N +322883 2025-09-24 17:58:54.121505+00 2025-09-24 17:58:54.121513+00 f t TOTAL 13200.00 3 8162 \N +322884 2025-09-24 17:58:54.122501+00 2025-09-24 17:58:54.122509+00 f t ADELANTO 13200.00 4 8162 \N +322901 2025-09-24 18:03:12.487355+00 2025-09-24 18:03:12.487363+00 f t SUBTOTAL 0.00 1 8164 \N +322902 2025-09-24 18:03:12.489206+00 2025-09-24 18:03:12.489212+00 f t DESCUENTO 0.00 2 8164 \N +322903 2025-09-24 18:03:12.490299+00 2025-09-24 18:03:12.490305+00 f t TOTAL 0.00 3 8164 \N +322904 2025-09-24 18:03:12.491258+00 2025-09-24 18:03:12.491263+00 f t ADELANTO 0.00 4 8164 \N +322921 2025-09-24 18:03:30.236075+00 2025-09-24 18:03:30.236083+00 f t SUBTOTAL 0.00 1 8165 \N +322922 2025-09-24 18:03:30.237999+00 2025-09-24 18:03:30.238007+00 f t DESCUENTO 0.00 2 8165 \N +322923 2025-09-24 18:03:30.239203+00 2025-09-24 18:03:30.239209+00 f t TOTAL 0.00 3 8165 \N +322924 2025-09-24 18:03:30.24041+00 2025-09-24 18:03:30.240417+00 f t ADELANTO 0.00 4 8165 \N +322941 2025-09-24 18:08:49.67175+00 2025-09-24 18:08:49.671768+00 f t SUBTOTAL 0.00 1 8166 \N +322942 2025-09-24 18:08:49.673881+00 2025-09-24 18:08:49.673887+00 f t DESCUENTO 0.00 2 8166 \N +322943 2025-09-24 18:08:49.675196+00 2025-09-24 18:08:49.675202+00 f t TOTAL 0.00 3 8166 \N +322944 2025-09-24 18:08:49.676534+00 2025-09-24 18:08:49.676539+00 f t ADELANTO 0.00 4 8166 \N +324385 2025-09-24 23:51:24.453899+00 2025-09-24 23:51:24.453908+00 f t SUBTOTAL 55000.00 1 8204 \N +324386 2025-09-24 23:51:24.455542+00 2025-09-24 23:51:24.455549+00 f t DESCUENTO 0.00 2 8204 \N +324387 2025-09-24 23:51:24.456562+00 2025-09-24 23:51:24.456567+00 f t TOTAL 55000.00 3 8204 \N +324388 2025-09-24 23:51:24.457587+00 2025-09-24 23:51:24.457593+00 f t ADELANTO 11000.00 4 8204 \N +363033 2025-10-08 00:27:51.792031+00 2025-10-08 00:27:51.792039+00 f t SUBTOTAL 70000.00 1 9122 \N +363034 2025-10-08 00:27:51.793919+00 2025-10-08 00:27:51.793927+00 f t DESCUENTO 0.00 2 9122 \N +363035 2025-10-08 00:27:51.795066+00 2025-10-08 00:27:51.795071+00 f t TOTAL 70000.00 3 9122 \N +363036 2025-10-08 00:27:51.796219+00 2025-10-08 00:27:51.796224+00 f t ADELANTO 19000.00 4 9122 \N +355997 2025-10-06 09:59:18.478459+00 2025-10-06 09:59:18.478467+00 f t SUBTOTAL 0.00 1 8954 \N +322993 2025-09-24 18:09:24.070045+00 2025-09-24 18:09:24.070053+00 f t SUBTOTAL 0.00 1 8167 \N +322994 2025-09-24 18:09:24.072156+00 2025-09-24 18:09:24.072163+00 f t DESCUENTO 0.00 2 8167 \N +322995 2025-09-24 18:09:24.07344+00 2025-09-24 18:09:24.073445+00 f t TOTAL 0.00 3 8167 \N +322996 2025-09-24 18:09:24.074563+00 2025-09-24 18:09:24.074567+00 f t ADELANTO 0.00 4 8167 \N +325577 2025-09-25 09:32:28.08071+00 2025-09-25 09:32:28.080722+00 f t SUBTOTAL 54000.00 1 8221 \N +325578 2025-09-25 09:32:28.082528+00 2025-09-25 09:32:28.082534+00 f t DESCUENTO 0.00 2 8221 \N +325579 2025-09-25 09:32:28.083634+00 2025-09-25 09:32:28.083639+00 f t TOTAL 54000.00 3 8221 \N +325580 2025-09-25 09:32:28.084588+00 2025-09-25 09:32:28.084593+00 f t ADELANTO 13500.00 4 8221 \N +325829 2025-09-25 13:55:26.395283+00 2025-09-25 13:55:26.395293+00 f t SUBTOTAL 54000.00 1 8231 \N +325830 2025-09-25 13:55:26.397362+00 2025-09-25 13:55:26.397372+00 f t DESCUENTO 0.00 2 8231 \N +325831 2025-09-25 13:55:26.39893+00 2025-09-25 13:55:26.39894+00 f t TOTAL 54000.00 3 8231 \N +325832 2025-09-25 13:55:26.400895+00 2025-09-25 13:55:26.400904+00 f t ADELANTO 13500.00 4 8231 \N +323013 2025-09-24 18:09:41.516948+00 2025-09-24 18:09:41.516956+00 f t SUBTOTAL 0.00 1 8168 \N +323014 2025-09-24 18:09:41.518497+00 2025-09-24 18:09:41.518503+00 f t DESCUENTO 0.00 2 8168 \N +323015 2025-09-24 18:09:41.519539+00 2025-09-24 18:09:41.519544+00 f t TOTAL 0.00 3 8168 \N +323016 2025-09-24 18:09:41.520436+00 2025-09-24 18:09:41.52044+00 f t ADELANTO 0.00 4 8168 \N +323029 2025-09-24 18:10:09.949316+00 2025-09-24 18:10:09.949324+00 f t SUBTOTAL 0.00 1 8169 \N +323030 2025-09-24 18:10:09.951292+00 2025-09-24 18:10:09.951299+00 f t DESCUENTO 0.00 2 8169 \N +323031 2025-09-24 18:10:09.952832+00 2025-09-24 18:10:09.952841+00 f t TOTAL 0.00 3 8169 \N +323032 2025-09-24 18:10:09.954153+00 2025-09-24 18:10:09.954158+00 f t ADELANTO 0.00 4 8169 \N +333365 2025-09-27 19:55:09.597755+00 2025-09-27 19:55:09.597809+00 f t SUBTOTAL 55000.00 1 8412 \N +333366 2025-09-27 19:55:09.600331+00 2025-09-27 19:55:09.600343+00 f t DESCUENTO 0.00 2 8412 \N +333367 2025-09-27 19:55:09.602219+00 2025-09-27 19:55:09.602228+00 f t TOTAL 55000.00 3 8412 \N +333368 2025-09-27 19:55:09.603904+00 2025-09-27 19:55:09.603914+00 f t ADELANTO 11000.00 4 8412 \N +333801 2025-09-28 00:39:01.582367+00 2025-09-28 00:39:01.582381+00 f t SUBTOTAL 55000.00 1 8420 \N +333802 2025-09-28 00:39:01.587504+00 2025-09-28 00:39:01.587519+00 f t DESCUENTO 0.00 2 8420 \N +333803 2025-09-28 00:39:01.590666+00 2025-09-28 00:39:01.59068+00 f t TOTAL 55000.00 3 8420 \N +333804 2025-09-28 00:39:01.596324+00 2025-09-28 00:39:01.596336+00 f t ADELANTO 11000.00 4 8420 \N +323073 2025-09-24 18:21:44.211168+00 2025-09-24 18:21:44.21118+00 f t SUBTOTAL 0.00 1 8171 \N +323074 2025-09-24 18:21:44.214863+00 2025-09-24 18:21:44.214876+00 f t DESCUENTO 0.00 2 8171 \N +323075 2025-09-24 18:21:44.216866+00 2025-09-24 18:21:44.216876+00 f t TOTAL 0.00 3 8171 \N +323076 2025-09-24 18:21:44.218613+00 2025-09-24 18:21:44.218621+00 f t ADELANTO 0.00 4 8171 \N +323077 2025-09-24 18:22:00.227698+00 2025-09-24 18:22:00.227708+00 f t SUBTOTAL 0.00 1 8170 \N +323078 2025-09-24 18:22:00.230018+00 2025-09-24 18:22:00.230026+00 f t DESCUENTO 0.00 2 8170 \N +323079 2025-09-24 18:22:00.23153+00 2025-09-24 18:22:00.231542+00 f t TOTAL 0.00 3 8170 \N +323080 2025-09-24 18:22:00.232817+00 2025-09-24 18:22:00.232824+00 f t ADELANTO 0.00 4 8170 \N +327181 2025-09-25 21:05:28.201544+00 2025-09-25 21:05:28.201556+00 f t SUBTOTAL 13200.00 1 8269 \N +327182 2025-09-25 21:05:28.203571+00 2025-09-25 21:05:28.203578+00 f t DESCUENTO 0.00 2 8269 \N +327183 2025-09-25 21:05:28.204853+00 2025-09-25 21:05:28.204859+00 f t TOTAL 13200.00 3 8269 \N +327184 2025-09-25 21:05:28.206364+00 2025-09-25 21:05:28.206376+00 f t ADELANTO 13200.00 4 8269 \N +323097 2025-09-24 18:24:24.458098+00 2025-09-24 18:24:24.458109+00 f t SUBTOTAL 0.00 1 8172 \N +323098 2025-09-24 18:24:24.460581+00 2025-09-24 18:24:24.460589+00 f t DESCUENTO 0.00 2 8172 \N +323099 2025-09-24 18:24:24.462349+00 2025-09-24 18:24:24.462356+00 f t TOTAL 0.00 3 8172 \N +323100 2025-09-24 18:24:24.463707+00 2025-09-24 18:24:24.463713+00 f t ADELANTO 0.00 4 8172 \N +323125 2025-09-24 18:25:15.052709+00 2025-09-24 18:25:15.05272+00 f t SUBTOTAL 46000.00 1 8173 \N +323126 2025-09-24 18:25:15.054219+00 2025-09-24 18:25:15.054225+00 f t DESCUENTO 0.00 2 8173 \N +323127 2025-09-24 18:25:15.055378+00 2025-09-24 18:25:15.055383+00 f t TOTAL 46000.00 3 8173 \N +323128 2025-09-24 18:25:15.056712+00 2025-09-24 18:25:15.056717+00 f t ADELANTO 11000.00 4 8173 \N +327773 2025-09-25 23:50:00.109918+00 2025-09-25 23:50:00.109928+00 f t SUBTOTAL 121000.00 1 8283 \N +327774 2025-09-25 23:50:00.112831+00 2025-09-25 23:50:00.112845+00 f t DESCUENTO 0.00 2 8283 \N +327775 2025-09-25 23:50:00.115011+00 2025-09-25 23:50:00.115024+00 f t TOTAL 121000.00 3 8283 \N +327776 2025-09-25 23:50:00.117801+00 2025-09-25 23:50:00.117813+00 f t ADELANTO 26000.00 4 8283 \N +323141 2025-09-24 18:25:54.210246+00 2025-09-24 18:25:54.210258+00 f t SUBTOTAL 0.00 1 8175 \N +323142 2025-09-24 18:25:54.212052+00 2025-09-24 18:25:54.212063+00 f t DESCUENTO 0.00 2 8175 \N +323143 2025-09-24 18:25:54.214806+00 2025-09-24 18:25:54.214816+00 f t TOTAL 0.00 3 8175 \N +323144 2025-09-24 18:25:54.216328+00 2025-09-24 18:25:54.216335+00 f t ADELANTO 0.00 4 8175 \N +323173 2025-09-24 18:26:34.284521+00 2025-09-24 18:26:34.284534+00 f t SUBTOTAL 0.00 1 8176 \N +323174 2025-09-24 18:26:34.286899+00 2025-09-24 18:26:34.286977+00 f t DESCUENTO 0.00 2 8176 \N +323175 2025-09-24 18:26:34.288513+00 2025-09-24 18:26:34.28852+00 f t TOTAL 0.00 3 8176 \N +323176 2025-09-24 18:26:34.289891+00 2025-09-24 18:26:34.289898+00 f t ADELANTO 0.00 4 8176 \N +328605 2025-09-26 09:37:20.63058+00 2025-09-26 09:37:20.630594+00 f t SUBTOTAL 0.00 1 8304 \N +328606 2025-09-26 09:37:20.633879+00 2025-09-26 09:37:20.633892+00 f t DESCUENTO 0.00 2 8304 \N +328607 2025-09-26 09:37:20.635794+00 2025-09-26 09:37:20.635806+00 f t TOTAL 0.00 3 8304 \N +328608 2025-09-26 09:37:20.637752+00 2025-09-26 09:37:20.637763+00 f t ADELANTO 0.00 4 8304 \N +329181 2025-09-26 13:22:56.661475+00 2025-09-26 13:22:56.661485+00 f t SUBTOTAL 30000.00 1 8317 \N +329182 2025-09-26 13:22:56.663445+00 2025-09-26 13:22:56.663457+00 f t DESCUENTO 0.00 2 8317 \N +329183 2025-09-26 13:22:56.665006+00 2025-09-26 13:22:56.665017+00 f t TOTAL 30000.00 3 8317 \N +329184 2025-09-26 13:22:56.666647+00 2025-09-26 13:22:56.666658+00 f t ADELANTO 30000.00 4 8317 \N +323233 2025-09-24 18:27:35.545679+00 2025-09-24 18:27:35.545692+00 f t SUBTOTAL 0.00 1 8177 \N +323234 2025-09-24 18:27:35.548614+00 2025-09-24 18:27:35.548624+00 f t DESCUENTO 0.00 2 8177 \N +323235 2025-09-24 18:27:35.550426+00 2025-09-24 18:27:35.550437+00 f t TOTAL 0.00 3 8177 \N +323236 2025-09-24 18:27:35.552339+00 2025-09-24 18:27:35.552349+00 f t ADELANTO 0.00 4 8177 \N +323265 2025-09-24 19:21:22.408259+00 2025-09-24 19:21:22.408269+00 f t SUBTOTAL 0.00 1 8178 \N +323266 2025-09-24 19:21:22.410141+00 2025-09-24 19:21:22.410148+00 f t DESCUENTO 0.00 2 8178 \N +323267 2025-09-24 19:21:22.411357+00 2025-09-24 19:21:22.411364+00 f t TOTAL 0.00 3 8178 \N +323268 2025-09-24 19:21:22.412337+00 2025-09-24 19:21:22.412342+00 f t ADELANTO 0.00 4 8178 \N +325117 2025-09-25 04:46:27.37605+00 2025-09-25 04:46:27.376062+00 f t SUBTOTAL 55000.00 1 8215 \N +325118 2025-09-25 04:46:27.379491+00 2025-09-25 04:46:27.379503+00 f t DESCUENTO 0.00 2 8215 \N +325119 2025-09-25 04:46:27.38147+00 2025-09-25 04:46:27.381486+00 f t TOTAL 55000.00 3 8215 \N +325120 2025-09-25 04:46:27.383124+00 2025-09-25 04:46:27.383162+00 f t ADELANTO 11000.00 4 8215 \N +347989 2025-10-03 01:52:07.287256+00 2025-10-03 01:52:07.287265+00 f t SUBTOTAL 55000.00 1 8767 \N +347990 2025-10-03 01:52:07.289444+00 2025-10-03 01:52:07.289451+00 f t DESCUENTO 0.00 2 8767 \N +347991 2025-10-03 01:52:07.290799+00 2025-10-03 01:52:07.290804+00 f t TOTAL 55000.00 3 8767 \N +347992 2025-10-03 01:52:07.291966+00 2025-10-03 01:52:07.291971+00 f t ADELANTO 11000.00 4 8767 \N +325585 2025-09-25 09:44:21.672005+00 2025-09-25 09:44:21.672016+00 f t SUBTOTAL 0.00 1 8222 \N +325586 2025-09-25 09:44:21.673798+00 2025-09-25 09:44:21.673808+00 f t DESCUENTO 0.00 2 8222 \N +325587 2025-09-25 09:44:21.67522+00 2025-09-25 09:44:21.675227+00 f t TOTAL 0.00 3 8222 \N +325588 2025-09-25 09:44:21.676529+00 2025-09-25 09:44:21.676537+00 f t ADELANTO 0.00 4 8222 \N +325833 2025-09-25 13:58:17.750732+00 2025-09-25 13:58:17.750743+00 f t SUBTOTAL 55000.00 1 8230 \N +325834 2025-09-25 13:58:17.752732+00 2025-09-25 13:58:17.752739+00 f t DESCUENTO 0.00 2 8230 \N +325835 2025-09-25 13:58:17.754127+00 2025-09-25 13:58:17.754136+00 f t TOTAL 55000.00 3 8230 \N +325836 2025-09-25 13:58:17.755461+00 2025-09-25 13:58:17.755468+00 f t ADELANTO 11000.00 4 8230 \N +323317 2025-09-24 19:23:28.98461+00 2025-09-24 19:23:28.98462+00 f t SUBTOTAL 52400.00 1 8179 \N +323318 2025-09-24 19:23:28.990799+00 2025-09-24 19:23:28.99081+00 f t DESCUENTO 0.00 2 8179 \N +323319 2025-09-24 19:23:28.992633+00 2025-09-24 19:23:28.992642+00 f t TOTAL 52400.00 3 8179 \N +323320 2025-09-24 19:23:28.993977+00 2025-09-24 19:23:28.993984+00 f t ADELANTO 46900.00 4 8179 \N +326761 2025-09-25 18:42:54.105181+00 2025-09-25 18:42:54.105189+00 f t SUBTOTAL 55000.00 1 8259 \N +326762 2025-09-25 18:42:54.107046+00 2025-09-25 18:42:54.107055+00 f t DESCUENTO 0.00 2 8259 \N +326763 2025-09-25 18:42:54.108379+00 2025-09-25 18:42:54.108385+00 f t TOTAL 55000.00 3 8259 \N +326764 2025-09-25 18:42:54.109594+00 2025-09-25 18:42:54.109601+00 f t ADELANTO 11000.00 4 8259 \N +326853 2025-09-25 19:01:23.568057+00 2025-09-25 19:01:23.568069+00 f t SUBTOTAL 70000.00 1 8262 \N +326854 2025-09-25 19:01:23.578374+00 2025-09-25 19:01:23.578387+00 f t DESCUENTO 0.00 2 8262 \N +326855 2025-09-25 19:01:23.581162+00 2025-09-25 19:01:23.581174+00 f t TOTAL 70000.00 3 8262 \N +326856 2025-09-25 19:01:23.583621+00 2025-09-25 19:01:23.583633+00 f t ADELANTO 19000.00 4 8262 \N +327597 2025-09-25 22:35:07.499797+00 2025-09-25 22:35:07.499809+00 f t SUBTOTAL 0.00 1 8276 \N +323389 2025-09-24 19:32:22.312471+00 2025-09-24 19:32:22.312483+00 f t SUBTOTAL 0.00 1 8182 \N +323390 2025-09-24 19:32:22.314535+00 2025-09-24 19:32:22.314545+00 f t DESCUENTO 0.00 2 8182 \N +323391 2025-09-24 19:32:22.315934+00 2025-09-24 19:32:22.315942+00 f t TOTAL 0.00 3 8182 \N +323392 2025-09-24 19:32:22.317379+00 2025-09-24 19:32:22.317388+00 f t ADELANTO 0.00 4 8182 \N +323393 2025-09-24 19:32:23.496098+00 2025-09-24 19:32:23.496111+00 f t SUBTOTAL 0.00 1 8181 \N +323394 2025-09-24 19:32:23.498531+00 2025-09-24 19:32:23.498543+00 f t DESCUENTO 0.00 2 8181 \N +323395 2025-09-24 19:32:23.499733+00 2025-09-24 19:32:23.499739+00 f t TOTAL 0.00 3 8181 \N +323396 2025-09-24 19:32:23.500706+00 2025-09-24 19:32:23.500711+00 f t ADELANTO 0.00 4 8181 \N +327598 2025-09-25 22:35:07.502998+00 2025-09-25 22:35:07.503012+00 f t DESCUENTO 0.00 2 8276 \N +327599 2025-09-25 22:35:07.505319+00 2025-09-25 22:35:07.505332+00 f t TOTAL 0.00 3 8276 \N +327600 2025-09-25 22:35:07.50817+00 2025-09-25 22:35:07.508183+00 f t ADELANTO 0.00 4 8276 \N +323401 2025-09-24 19:34:32.914446+00 2025-09-24 19:34:32.914453+00 f t SUBTOTAL 0.00 1 8183 \N +323402 2025-09-24 19:34:32.915475+00 2025-09-24 19:34:32.91548+00 f t DESCUENTO 0.00 2 8183 \N +323403 2025-09-24 19:34:32.91647+00 2025-09-24 19:34:32.916479+00 f t TOTAL 0.00 3 8183 \N +323404 2025-09-24 19:34:32.917559+00 2025-09-24 19:34:32.917567+00 f t ADELANTO 0.00 4 8183 \N +323405 2025-09-24 19:34:35.166515+00 2025-09-24 19:34:35.166524+00 f t SUBTOTAL 55000.00 1 8180 \N +323406 2025-09-24 19:34:35.167958+00 2025-09-24 19:34:35.167964+00 f t DESCUENTO 0.00 2 8180 \N +323407 2025-09-24 19:34:35.169037+00 2025-09-24 19:34:35.169043+00 f t TOTAL 55000.00 3 8180 \N +323408 2025-09-24 19:34:35.170034+00 2025-09-24 19:34:35.170041+00 f t ADELANTO 11000.00 4 8180 \N +323425 2025-09-24 19:43:34.058998+00 2025-09-24 19:43:34.059011+00 f t SUBTOTAL 0.00 1 8184 \N +323426 2025-09-24 19:43:34.06113+00 2025-09-24 19:43:34.061139+00 f t DESCUENTO 0.00 2 8184 \N +323427 2025-09-24 19:43:34.062746+00 2025-09-24 19:43:34.062754+00 f t TOTAL 0.00 3 8184 \N +323428 2025-09-24 19:43:34.06437+00 2025-09-24 19:43:34.064377+00 f t ADELANTO 0.00 4 8184 \N +328037 2025-09-26 02:08:05.116037+00 2025-09-26 02:08:05.116048+00 f t SUBTOTAL 46000.00 1 8291 \N +328038 2025-09-26 02:08:05.117914+00 2025-09-26 02:08:05.117922+00 f t DESCUENTO 0.00 2 8291 \N +328039 2025-09-26 02:08:05.119318+00 2025-09-26 02:08:05.119324+00 f t TOTAL 46000.00 3 8291 \N +328040 2025-09-26 02:08:05.120472+00 2025-09-26 02:08:05.120478+00 f t ADELANTO 11000.00 4 8291 \N +328525 2025-09-26 05:11:48.999835+00 2025-09-26 05:11:48.999846+00 f t SUBTOTAL 55000.00 1 8301 \N +328526 2025-09-26 05:11:49.001759+00 2025-09-26 05:11:49.001767+00 f t DESCUENTO 0.00 2 8301 \N +328527 2025-09-26 05:11:49.0034+00 2025-09-26 05:11:49.003408+00 f t TOTAL 55000.00 3 8301 \N +328528 2025-09-26 05:11:49.004652+00 2025-09-26 05:11:49.004659+00 f t ADELANTO 11000.00 4 8301 \N +323461 2025-09-24 19:44:13.040472+00 2025-09-24 19:44:13.040482+00 f t SUBTOTAL 0.00 1 8185 \N +323462 2025-09-24 19:44:13.04325+00 2025-09-24 19:44:13.043261+00 f t DESCUENTO 0.00 2 8185 \N +323463 2025-09-24 19:44:13.045059+00 2025-09-24 19:44:13.045069+00 f t TOTAL 0.00 3 8185 \N +323464 2025-09-24 19:44:13.046936+00 2025-09-24 19:44:13.046946+00 f t ADELANTO 0.00 4 8185 \N +328613 2025-09-26 09:58:04.3984+00 2025-09-26 09:58:04.398413+00 f t SUBTOTAL 0.00 1 8305 \N +328614 2025-09-26 09:58:04.400686+00 2025-09-26 09:58:04.400699+00 f t DESCUENTO 0.00 2 8305 \N +328615 2025-09-26 09:58:04.402746+00 2025-09-26 09:58:04.402759+00 f t TOTAL 0.00 3 8305 \N +328616 2025-09-26 09:58:04.40475+00 2025-09-26 09:58:04.404762+00 f t ADELANTO 0.00 4 8305 \N +323517 2025-09-24 19:53:50.743863+00 2025-09-24 19:53:50.743873+00 f t SUBTOTAL 68000.00 1 8187 \N +323518 2025-09-24 19:53:50.745704+00 2025-09-24 19:53:50.745712+00 f t DESCUENTO 0.00 2 8187 \N +323519 2025-09-24 19:53:50.747322+00 2025-09-24 19:53:50.74733+00 f t TOTAL 68000.00 3 8187 \N +323520 2025-09-24 19:53:50.748832+00 2025-09-24 19:53:50.748843+00 f t ADELANTO 13000.00 4 8187 \N +379599 2025-10-13 22:50:18.646963+00 2025-10-13 22:50:18.646969+00 f t TOTAL 30000.00 3 9574 \N +323525 2025-09-24 20:03:13.29024+00 2025-09-24 20:03:13.290249+00 f t SUBTOTAL 0.00 1 8188 \N +323526 2025-09-24 20:03:13.29182+00 2025-09-24 20:03:13.291828+00 f t DESCUENTO 0.00 2 8188 \N +323527 2025-09-24 20:03:13.293709+00 2025-09-24 20:03:13.29372+00 f t TOTAL 0.00 3 8188 \N +323528 2025-09-24 20:03:13.295428+00 2025-09-24 20:03:13.295438+00 f t ADELANTO 0.00 4 8188 \N +339125 2025-09-29 21:57:27.465347+00 2025-09-29 21:57:27.465356+00 f t SUBTOTAL 140000.00 1 8550 \N +339126 2025-09-29 21:57:27.467041+00 2025-09-29 21:57:27.467047+00 f t DESCUENTO 0.00 2 8550 \N +339127 2025-09-29 21:57:27.468522+00 2025-09-29 21:57:27.468529+00 f t TOTAL 140000.00 3 8550 \N +339128 2025-09-29 21:57:27.46982+00 2025-09-29 21:57:27.469827+00 f t ADELANTO 38000.00 4 8550 \N +331985 2025-09-27 13:56:49.031285+00 2025-09-27 13:56:49.031297+00 f t SUBTOTAL 132900.00 1 8387 \N +331986 2025-09-27 13:56:49.033362+00 2025-09-27 13:56:49.033371+00 f t DESCUENTO 0.00 2 8387 \N +331987 2025-09-27 13:56:49.034779+00 2025-09-27 13:56:49.034787+00 f t TOTAL 132900.00 3 8387 \N +331988 2025-09-27 13:56:49.036057+00 2025-09-27 13:56:49.036064+00 f t ADELANTO 70900.00 4 8387 \N +323561 2025-09-24 20:30:29.989857+00 2025-09-24 20:30:29.989871+00 f t SUBTOTAL 0.00 1 8189 \N +323562 2025-09-24 20:30:29.993207+00 2025-09-24 20:30:29.993216+00 f t DESCUENTO 0.00 2 8189 \N +323563 2025-09-24 20:30:29.995452+00 2025-09-24 20:30:29.995462+00 f t TOTAL 0.00 3 8189 \N +323564 2025-09-24 20:30:29.997188+00 2025-09-24 20:30:29.997197+00 f t ADELANTO 0.00 4 8189 \N +323597 2025-09-24 20:51:18.961121+00 2025-09-24 20:51:18.961131+00 f t SUBTOTAL 0.00 1 8190 \N +323598 2025-09-24 20:51:18.962923+00 2025-09-24 20:51:18.96293+00 f t DESCUENTO 0.00 2 8190 \N +323599 2025-09-24 20:51:18.964119+00 2025-09-24 20:51:18.964126+00 f t TOTAL 0.00 3 8190 \N +323600 2025-09-24 20:51:18.965254+00 2025-09-24 20:51:18.965261+00 f t ADELANTO 0.00 4 8190 \N +326857 2025-09-25 19:04:03.815897+00 2025-09-25 19:04:03.815909+00 f t SUBTOTAL 123900.00 1 8247 \N +326858 2025-09-25 19:04:03.819382+00 2025-09-25 19:04:03.819394+00 f t DESCUENTO 0.00 2 8247 \N +326859 2025-09-25 19:04:03.82163+00 2025-09-25 19:04:03.821638+00 f t TOTAL 123900.00 3 8247 \N +326860 2025-09-25 19:04:03.823899+00 2025-09-25 19:04:03.823907+00 f t ADELANTO 65900.00 4 8247 \N +334525 2025-09-28 04:26:20.557908+00 2025-09-28 04:26:20.557916+00 f t SUBTOTAL 220000.00 1 8419 \N +334526 2025-09-28 04:26:20.55973+00 2025-09-28 04:26:20.559741+00 f t DESCUENTO 0.00 2 8419 \N +334527 2025-09-28 04:26:20.56114+00 2025-09-28 04:26:20.561148+00 f t TOTAL 220000.00 3 8419 \N +334528 2025-09-28 04:26:20.562411+00 2025-09-28 04:26:20.562417+00 f t ADELANTO 44000.00 4 8419 \N +327605 2025-09-25 22:36:09.241248+00 2025-09-25 22:36:09.241257+00 f t SUBTOTAL 0.00 1 8277 \N +327606 2025-09-25 22:36:09.243338+00 2025-09-25 22:36:09.243346+00 f t DESCUENTO 0.00 2 8277 \N +327607 2025-09-25 22:36:09.244537+00 2025-09-25 22:36:09.244543+00 f t TOTAL 0.00 3 8277 \N +327608 2025-09-25 22:36:09.246023+00 2025-09-25 22:36:09.246029+00 f t ADELANTO 0.00 4 8277 \N +335038 2025-09-28 15:54:23.334142+00 2025-09-28 15:54:23.334152+00 f t DESCUENTO 0.00 2 8443 \N +327869 2025-09-26 01:01:14.729307+00 2025-09-26 01:01:14.729316+00 f t SUBTOTAL 46000.00 1 8286 \N +327870 2025-09-26 01:01:14.731248+00 2025-09-26 01:01:14.731255+00 f t DESCUENTO 0.00 2 8286 \N +327871 2025-09-26 01:01:14.733534+00 2025-09-26 01:01:14.733545+00 f t TOTAL 46000.00 3 8286 \N +327872 2025-09-26 01:01:14.735188+00 2025-09-26 01:01:14.735195+00 f t ADELANTO 11000.00 4 8286 \N +327953 2025-09-26 01:15:00.45395+00 2025-09-26 01:15:00.453959+00 f t SUBTOTAL 60000.00 1 8288 \N +327954 2025-09-26 01:15:00.455587+00 2025-09-26 01:15:00.455595+00 f t DESCUENTO 0.00 2 8288 \N +323705 2025-09-24 20:55:52.213069+00 2025-09-24 20:55:52.213082+00 f t SUBTOTAL 46000.00 1 8191 \N +323706 2025-09-24 20:55:52.214975+00 2025-09-24 20:55:52.214985+00 f t DESCUENTO 0.00 2 8191 \N +323707 2025-09-24 20:55:52.21641+00 2025-09-24 20:55:52.216419+00 f t TOTAL 46000.00 3 8191 \N +323708 2025-09-24 20:55:52.21777+00 2025-09-24 20:55:52.217778+00 f t ADELANTO 11000.00 4 8191 \N +327955 2025-09-26 01:15:00.457199+00 2025-09-26 01:15:00.457207+00 f t TOTAL 60000.00 3 8288 \N +327956 2025-09-26 01:15:00.45865+00 2025-09-26 01:15:00.458658+00 f t ADELANTO 60000.00 4 8288 \N +335039 2025-09-28 15:54:23.335844+00 2025-09-28 15:54:23.335851+00 f t TOTAL 0.00 3 8443 \N +335040 2025-09-28 15:54:23.337094+00 2025-09-28 15:54:23.337101+00 f t ADELANTO 0.00 4 8443 \N +335113 2025-09-28 16:40:35.323925+00 2025-09-28 16:40:35.323935+00 f t SUBTOTAL 0.00 1 8447 \N +335114 2025-09-28 16:40:35.325563+00 2025-09-28 16:40:35.32557+00 f t DESCUENTO 0.00 2 8447 \N +335115 2025-09-28 16:40:35.326883+00 2025-09-28 16:40:35.32689+00 f t TOTAL 0.00 3 8447 \N +335116 2025-09-28 16:40:35.328023+00 2025-09-28 16:40:35.328029+00 f t ADELANTO 0.00 4 8447 \N +335185 2025-09-28 16:46:33.766275+00 2025-09-28 16:46:33.766288+00 f t SUBTOTAL 0.00 1 8450 \N +335186 2025-09-28 16:46:33.76814+00 2025-09-28 16:46:33.768152+00 f t DESCUENTO 0.00 2 8450 \N +335187 2025-09-28 16:46:33.769866+00 2025-09-28 16:46:33.769876+00 f t TOTAL 0.00 3 8450 \N +335188 2025-09-28 16:46:33.771483+00 2025-09-28 16:46:33.771492+00 f t ADELANTO 0.00 4 8450 \N +323737 2025-09-24 21:03:31.851097+00 2025-09-24 21:03:31.851107+00 f t SUBTOTAL 54000.00 1 8192 \N +323738 2025-09-24 21:03:31.853179+00 2025-09-24 21:03:31.853187+00 f t DESCUENTO 0.00 2 8192 \N +323739 2025-09-24 21:03:31.856271+00 2025-09-24 21:03:31.856282+00 f t TOTAL 54000.00 3 8192 \N +323740 2025-09-24 21:03:31.857747+00 2025-09-24 21:03:31.857755+00 f t ADELANTO 13500.00 4 8192 \N +323745 2025-09-24 21:08:59.788215+00 2025-09-24 21:08:59.788225+00 f t SUBTOTAL 0.00 1 8193 \N +323746 2025-09-24 21:08:59.789594+00 2025-09-24 21:08:59.789603+00 f t DESCUENTO 0.00 2 8193 \N +323747 2025-09-24 21:08:59.790798+00 2025-09-24 21:08:59.790804+00 f t TOTAL 0.00 3 8193 \N +323748 2025-09-24 21:08:59.791951+00 2025-09-24 21:08:59.791957+00 f t ADELANTO 0.00 4 8193 \N +335529 2025-09-28 18:20:04.10108+00 2025-09-28 18:20:04.101093+00 f t SUBTOTAL 0.00 1 8461 \N +335530 2025-09-28 18:20:04.115677+00 2025-09-28 18:20:04.11569+00 f t DESCUENTO 0.00 2 8461 \N +335531 2025-09-28 18:20:04.118333+00 2025-09-28 18:20:04.118345+00 f t TOTAL 0.00 3 8461 \N +335532 2025-09-28 18:20:04.12081+00 2025-09-28 18:20:04.120824+00 f t ADELANTO 0.00 4 8461 \N +328621 2025-09-26 10:54:12.347257+00 2025-09-26 10:54:12.347268+00 f t SUBTOTAL 0.00 1 8306 \N +328622 2025-09-26 10:54:12.349004+00 2025-09-26 10:54:12.349014+00 f t DESCUENTO 0.00 2 8306 \N +328623 2025-09-26 10:54:12.350489+00 2025-09-26 10:54:12.350496+00 f t TOTAL 0.00 3 8306 \N +328624 2025-09-26 10:54:12.352109+00 2025-09-26 10:54:12.352119+00 f t ADELANTO 0.00 4 8306 \N +335737 2025-09-28 19:47:15.230318+00 2025-09-28 19:47:15.230329+00 f t SUBTOTAL 0.00 1 8468 \N +335738 2025-09-28 19:47:15.231768+00 2025-09-28 19:47:15.231775+00 f t DESCUENTO 0.00 2 8468 \N +335739 2025-09-28 19:47:15.232909+00 2025-09-28 19:47:15.232915+00 f t TOTAL 0.00 3 8468 \N +335740 2025-09-28 19:47:15.233757+00 2025-09-28 19:47:15.233763+00 f t ADELANTO 0.00 4 8468 \N +329349 2025-09-26 14:08:21.66749+00 2025-09-26 14:08:21.667499+00 f t SUBTOTAL 78000.00 1 8321 \N +329350 2025-09-26 14:08:21.6694+00 2025-09-26 14:08:21.66941+00 f t DESCUENTO 0.00 2 8321 \N +329351 2025-09-26 14:08:21.670747+00 2025-09-26 14:08:21.670754+00 f t TOTAL 78000.00 3 8321 \N +329352 2025-09-26 14:08:21.67202+00 2025-09-26 14:08:21.672029+00 f t ADELANTO 13000.00 4 8321 \N +379600 2025-10-13 22:50:18.648719+00 2025-10-13 22:50:18.648728+00 f t ADELANTO 30000.00 4 9574 \N +323817 2025-09-24 21:11:56.344571+00 2025-09-24 21:11:56.34458+00 f t SUBTOTAL 55000.00 1 8194 \N +323818 2025-09-24 21:11:56.35109+00 2025-09-24 21:11:56.351104+00 f t DESCUENTO 0.00 2 8194 \N +323819 2025-09-24 21:11:56.353055+00 2025-09-24 21:11:56.353064+00 f t TOTAL 55000.00 3 8194 \N +323820 2025-09-24 21:11:56.354797+00 2025-09-24 21:11:56.354805+00 f t ADELANTO 11000.00 4 8194 \N +339133 2025-09-29 22:05:16.509197+00 2025-09-29 22:05:16.509207+00 f t SUBTOTAL 0.00 1 8552 \N +339134 2025-09-29 22:05:16.510663+00 2025-09-29 22:05:16.510669+00 f t DESCUENTO 0.00 2 8552 \N +339135 2025-09-29 22:05:16.512067+00 2025-09-29 22:05:16.512073+00 f t TOTAL 0.00 3 8552 \N +339136 2025-09-29 22:05:16.513394+00 2025-09-29 22:05:16.513403+00 f t ADELANTO 0.00 4 8552 \N +324661 2025-09-25 02:11:12.836317+00 2025-09-25 02:11:12.836326+00 f t SUBTOTAL 0.00 1 8211 \N +324662 2025-09-25 02:11:12.838058+00 2025-09-25 02:11:12.838065+00 f t DESCUENTO 0.00 2 8211 \N +324663 2025-09-25 02:11:12.839449+00 2025-09-25 02:11:12.839456+00 f t TOTAL 0.00 3 8211 \N +324664 2025-09-25 02:11:12.840522+00 2025-09-25 02:11:12.840528+00 f t ADELANTO 0.00 4 8211 \N +333101 2025-09-27 17:08:10.182158+00 2025-09-27 17:08:10.182168+00 f t SUBTOTAL 23000.00 1 8407 \N +333102 2025-09-27 17:08:10.184041+00 2025-09-27 17:08:10.184047+00 f t DESCUENTO 0.00 2 8407 \N +333103 2025-09-27 17:08:10.185347+00 2025-09-27 17:08:10.185355+00 f t TOTAL 23000.00 3 8407 \N +333104 2025-09-27 17:08:10.186399+00 2025-09-27 17:08:10.186405+00 f t ADELANTO 5500.00 4 8407 \N +325845 2025-09-25 14:17:20.62038+00 2025-09-25 14:17:20.620393+00 f t SUBTOTAL 76000.00 1 8232 \N +325846 2025-09-25 14:17:20.624175+00 2025-09-25 14:17:20.624183+00 f t DESCUENTO 0.00 2 8232 \N +325847 2025-09-25 14:17:20.626506+00 2025-09-25 14:17:20.626515+00 f t TOTAL 76000.00 3 8232 \N +325848 2025-09-25 14:17:20.628331+00 2025-09-25 14:17:20.628337+00 f t ADELANTO 11000.00 4 8232 \N +340389 2025-09-30 11:30:44.909781+00 2025-09-30 11:30:44.909791+00 f t SUBTOTAL 55000.00 1 8568 \N +340390 2025-09-30 11:30:44.912359+00 2025-09-30 11:30:44.912372+00 f t DESCUENTO 0.00 2 8568 \N +340391 2025-09-30 11:30:44.91439+00 2025-09-30 11:30:44.914402+00 f t TOTAL 55000.00 3 8568 \N +340392 2025-09-30 11:30:44.91617+00 2025-09-30 11:30:44.91618+00 f t ADELANTO 11000.00 4 8568 \N +323897 2025-09-24 21:46:20.528806+00 2025-09-24 21:46:20.528817+00 f t SUBTOTAL 54000.00 1 8195 \N +323898 2025-09-24 21:46:20.530724+00 2025-09-24 21:46:20.530733+00 f t DESCUENTO 0.00 2 8195 \N +323899 2025-09-24 21:46:20.53238+00 2025-09-24 21:46:20.532386+00 f t TOTAL 54000.00 3 8195 \N +323900 2025-09-24 21:46:20.533906+00 2025-09-24 21:46:20.533912+00 f t ADELANTO 13500.00 4 8195 \N +326481 2025-09-25 16:44:20.326526+00 2025-09-25 16:44:20.326539+00 f t SUBTOTAL 46000.00 1 8250 \N +326482 2025-09-25 16:44:20.32986+00 2025-09-25 16:44:20.329869+00 f t DESCUENTO 0.00 2 8250 \N +326483 2025-09-25 16:44:20.332051+00 2025-09-25 16:44:20.33206+00 f t TOTAL 46000.00 3 8250 \N +326484 2025-09-25 16:44:20.334384+00 2025-09-25 16:44:20.334392+00 f t ADELANTO 11000.00 4 8250 \N +326677 2025-09-25 18:03:45.725996+00 2025-09-25 18:03:45.726005+00 f t SUBTOTAL 55000.00 1 8257 \N +326678 2025-09-25 18:03:45.728357+00 2025-09-25 18:03:45.728365+00 f t DESCUENTO 0.00 2 8257 \N +326679 2025-09-25 18:03:45.730137+00 2025-09-25 18:03:45.730145+00 f t TOTAL 55000.00 3 8257 \N +326680 2025-09-25 18:03:45.73177+00 2025-09-25 18:03:45.73178+00 f t ADELANTO 11000.00 4 8257 \N +327437 2025-09-25 21:55:47.151457+00 2025-09-25 21:55:47.151466+00 f t SUBTOTAL 0.00 1 8272 \N +327438 2025-09-25 21:55:47.153155+00 2025-09-25 21:55:47.153164+00 f t DESCUENTO 0.00 2 8272 \N +327439 2025-09-25 21:55:47.155001+00 2025-09-25 21:55:47.15501+00 f t TOTAL 0.00 3 8272 \N +327440 2025-09-25 21:55:47.156378+00 2025-09-25 21:55:47.156384+00 f t ADELANTO 0.00 4 8272 \N +334533 2025-09-28 06:06:30.412337+00 2025-09-28 06:06:30.412345+00 f t SUBTOTAL 0.00 1 8427 \N +334534 2025-09-28 06:06:30.413671+00 2025-09-28 06:06:30.413678+00 f t DESCUENTO 0.00 2 8427 \N +334535 2025-09-28 06:06:30.414986+00 2025-09-28 06:06:30.414995+00 f t TOTAL 0.00 3 8427 \N +334536 2025-09-28 06:06:30.41628+00 2025-09-28 06:06:30.416289+00 f t ADELANTO 0.00 4 8427 \N +327613 2025-09-25 22:50:47.265649+00 2025-09-25 22:50:47.265661+00 f t SUBTOTAL 0.00 1 8278 \N +327614 2025-09-25 22:50:47.267443+00 2025-09-25 22:50:47.267453+00 f t DESCUENTO 0.00 2 8278 \N +327615 2025-09-25 22:50:47.269088+00 2025-09-25 22:50:47.269098+00 f t TOTAL 0.00 3 8278 \N +327616 2025-09-25 22:50:47.270555+00 2025-09-25 22:50:47.270565+00 f t ADELANTO 0.00 4 8278 \N +334741 2025-09-28 11:16:56.417296+00 2025-09-28 11:16:56.417305+00 f t SUBTOTAL 55000.00 1 8431 \N +334742 2025-09-28 11:16:56.419056+00 2025-09-28 11:16:56.419062+00 f t DESCUENTO 0.00 2 8431 \N +334743 2025-09-28 11:16:56.420244+00 2025-09-28 11:16:56.42025+00 f t TOTAL 55000.00 3 8431 \N +334744 2025-09-28 11:16:56.421232+00 2025-09-28 11:16:56.421237+00 f t ADELANTO 11000.00 4 8431 \N +327961 2025-09-26 01:47:57.519055+00 2025-09-26 01:47:57.519065+00 f t SUBTOTAL 0.00 1 8289 \N +327962 2025-09-26 01:47:57.521133+00 2025-09-26 01:47:57.521142+00 f t DESCUENTO 0.00 2 8289 \N +327963 2025-09-26 01:47:57.523119+00 2025-09-26 01:47:57.523155+00 f t TOTAL 0.00 3 8289 \N +327964 2025-09-26 01:47:57.525029+00 2025-09-26 01:47:57.525042+00 f t ADELANTO 0.00 4 8289 \N +335193 2025-09-28 16:48:58.589816+00 2025-09-28 16:48:58.589829+00 f t SUBTOTAL 0.00 1 8451 \N +335194 2025-09-28 16:48:58.591943+00 2025-09-28 16:48:58.591954+00 f t DESCUENTO 0.00 2 8451 \N +335195 2025-09-28 16:48:58.593608+00 2025-09-28 16:48:58.593615+00 f t TOTAL 0.00 3 8451 \N +335196 2025-09-28 16:48:58.594875+00 2025-09-28 16:48:58.594882+00 f t ADELANTO 0.00 4 8451 \N +328705 2025-09-26 11:43:13.862729+00 2025-09-26 11:43:13.862739+00 f t SUBTOTAL 68000.00 1 8309 \N +328706 2025-09-26 11:43:13.864453+00 2025-09-26 11:43:13.864461+00 f t DESCUENTO 0.00 2 8309 \N +328707 2025-09-26 11:43:13.865586+00 2025-09-26 11:43:13.865592+00 f t TOTAL 68000.00 3 8309 \N +328708 2025-09-26 11:43:13.866667+00 2025-09-26 11:43:13.866673+00 f t ADELANTO 13000.00 4 8309 \N +328853 2025-09-26 12:30:22.410626+00 2025-09-26 12:30:22.410635+00 f t SUBTOTAL 0.00 1 8312 \N +328854 2025-09-26 12:30:22.412925+00 2025-09-26 12:30:22.412936+00 f t DESCUENTO 0.00 2 8312 \N +328855 2025-09-26 12:30:22.414482+00 2025-09-26 12:30:22.414491+00 f t TOTAL 0.00 3 8312 \N +328856 2025-09-26 12:30:22.415894+00 2025-09-26 12:30:22.415902+00 f t ADELANTO 0.00 4 8312 \N +329237 2025-09-26 13:33:20.040178+00 2025-09-26 13:33:20.040187+00 f t SUBTOTAL 107000.00 1 8319 \N +329238 2025-09-26 13:33:20.042238+00 2025-09-26 13:33:20.042248+00 f t DESCUENTO 0.00 2 8319 \N +329239 2025-09-26 13:33:20.043786+00 2025-09-26 13:33:20.043794+00 f t TOTAL 107000.00 3 8319 \N +329240 2025-09-26 13:33:20.045102+00 2025-09-26 13:33:20.04511+00 f t ADELANTO 12000.00 4 8319 \N +335745 2025-09-28 19:50:49.487995+00 2025-09-28 19:50:49.488004+00 f t SUBTOTAL 0.00 1 8469 \N +335746 2025-09-28 19:50:49.489522+00 2025-09-28 19:50:49.489528+00 f t DESCUENTO 0.00 2 8469 \N +335747 2025-09-28 19:50:49.490605+00 2025-09-28 19:50:49.49061+00 f t TOTAL 0.00 3 8469 \N +335748 2025-09-28 19:50:49.492005+00 2025-09-28 19:50:49.49201+00 f t ADELANTO 0.00 4 8469 \N +329357 2025-09-26 14:22:20.978632+00 2025-09-26 14:22:20.978645+00 f t SUBTOTAL 0.00 1 8322 \N +329358 2025-09-26 14:22:20.980406+00 2025-09-26 14:22:20.980417+00 f t DESCUENTO 0.00 2 8322 \N +329359 2025-09-26 14:22:20.981895+00 2025-09-26 14:22:20.981905+00 f t TOTAL 0.00 3 8322 \N +329360 2025-09-26 14:22:20.98334+00 2025-09-26 14:22:20.983349+00 f t ADELANTO 0.00 4 8322 \N +331841 2025-09-27 13:49:37.75702+00 2025-09-27 13:49:37.757029+00 f t SUBTOTAL 132900.00 1 8385 \N +331842 2025-09-27 13:49:37.758955+00 2025-09-27 13:49:37.758962+00 f t DESCUENTO 0.00 2 8385 \N +331843 2025-09-27 13:49:37.760223+00 2025-09-27 13:49:37.76023+00 f t TOTAL 132900.00 3 8385 \N +331844 2025-09-27 13:49:37.761429+00 2025-09-27 13:49:37.761471+00 f t ADELANTO 70900.00 4 8385 \N +355221 2025-10-05 22:33:39.758577+00 2025-10-05 22:33:39.758586+00 f t SUBTOTAL 0.00 1 8939 \N +355222 2025-10-05 22:33:39.760737+00 2025-10-05 22:33:39.760745+00 f t DESCUENTO 0.00 2 8939 \N +355223 2025-10-05 22:33:39.761892+00 2025-10-05 22:33:39.761898+00 f t TOTAL 0.00 3 8939 \N +355224 2025-10-05 22:33:39.762979+00 2025-10-05 22:33:39.762985+00 f t ADELANTO 0.00 4 8939 \N +329453 2025-09-26 14:38:42.323091+00 2025-09-26 14:38:42.3231+00 f t SUBTOTAL 54000.00 1 8325 \N +329454 2025-09-26 14:38:42.325107+00 2025-09-26 14:38:42.325116+00 f t DESCUENTO 0.00 2 8325 \N +329455 2025-09-26 14:38:42.326822+00 2025-09-26 14:38:42.326828+00 f t TOTAL 54000.00 3 8325 \N +329456 2025-09-26 14:38:42.32828+00 2025-09-26 14:38:42.328289+00 f t ADELANTO 13500.00 4 8325 \N +329481 2025-09-26 14:41:59.807217+00 2025-09-26 14:41:59.807225+00 f t SUBTOTAL 46000.00 1 8326 \N +329482 2025-09-26 14:41:59.809064+00 2025-09-26 14:41:59.809074+00 f t DESCUENTO 0.00 2 8326 \N +329483 2025-09-26 14:41:59.8106+00 2025-09-26 14:41:59.810606+00 f t TOTAL 46000.00 3 8326 \N +329484 2025-09-26 14:41:59.812081+00 2025-09-26 14:41:59.812087+00 f t ADELANTO 11000.00 4 8326 \N +329509 2025-09-26 14:46:52.44113+00 2025-09-26 14:46:52.441142+00 f t SUBTOTAL 30000.00 1 8327 \N +329510 2025-09-26 14:46:52.443015+00 2025-09-26 14:46:52.443027+00 f t DESCUENTO 0.00 2 8327 \N +329511 2025-09-26 14:46:52.444573+00 2025-09-26 14:46:52.444583+00 f t TOTAL 30000.00 3 8327 \N +329512 2025-09-26 14:46:52.44631+00 2025-09-26 14:46:52.44632+00 f t ADELANTO 30000.00 4 8327 \N +329521 2025-09-26 14:48:17.45246+00 2025-09-26 14:48:17.452471+00 f t SUBTOTAL 70000.00 1 8328 \N +329522 2025-09-26 14:48:17.454416+00 2025-09-26 14:48:17.454425+00 f t DESCUENTO 0.00 2 8328 \N +329523 2025-09-26 14:48:17.455994+00 2025-09-26 14:48:17.456001+00 f t TOTAL 70000.00 3 8328 \N +329524 2025-09-26 14:48:17.45718+00 2025-09-26 14:48:17.457186+00 f t ADELANTO 19000.00 4 8328 \N +340633 2025-09-30 14:24:47.679462+00 2025-09-30 14:24:47.679472+00 f t SUBTOTAL 55000.00 1 8590 \N +340634 2025-09-30 14:24:47.682189+00 2025-09-30 14:24:47.682198+00 f t DESCUENTO 0.00 2 8590 \N +340635 2025-09-30 14:24:47.683757+00 2025-09-30 14:24:47.683766+00 f t TOTAL 55000.00 3 8590 \N +340636 2025-09-30 14:24:47.685466+00 2025-09-30 14:24:47.685477+00 f t ADELANTO 11000.00 4 8590 \N +340949 2025-09-30 16:36:36.83009+00 2025-09-30 16:36:36.8301+00 f t SUBTOTAL 78000.00 1 8600 \N +340950 2025-09-30 16:36:36.833386+00 2025-09-30 16:36:36.8334+00 f t DESCUENTO 0.00 2 8600 \N +340951 2025-09-30 16:36:36.835212+00 2025-09-30 16:36:36.835222+00 f t TOTAL 78000.00 3 8600 \N +340952 2025-09-30 16:36:36.836767+00 2025-09-30 16:36:36.836775+00 f t ADELANTO 13000.00 4 8600 \N +341257 2025-09-30 19:21:41.243333+00 2025-09-30 19:21:41.243341+00 f t SUBTOTAL 46000.00 1 8607 \N +341258 2025-09-30 19:21:41.245412+00 2025-09-30 19:21:41.245423+00 f t DESCUENTO 0.00 2 8607 \N +341259 2025-09-30 19:21:41.246911+00 2025-09-30 19:21:41.246919+00 f t TOTAL 46000.00 3 8607 \N +341260 2025-09-30 19:21:41.248224+00 2025-09-30 19:21:41.248229+00 f t ADELANTO 11000.00 4 8607 \N +341349 2025-09-30 19:49:30.833637+00 2025-09-30 19:49:30.833651+00 f t SUBTOTAL 0.00 1 8613 \N +341350 2025-09-30 19:49:30.83518+00 2025-09-30 19:49:30.835187+00 f t DESCUENTO 0.00 2 8613 \N +341351 2025-09-30 19:49:30.836494+00 2025-09-30 19:49:30.8365+00 f t TOTAL 0.00 3 8613 \N +341352 2025-09-30 19:49:30.837945+00 2025-09-30 19:49:30.837951+00 f t ADELANTO 0.00 4 8613 \N +334749 2025-09-28 11:57:10.870948+00 2025-09-28 11:57:10.870958+00 f t SUBTOTAL 0.00 1 8432 \N +334750 2025-09-28 11:57:10.872653+00 2025-09-28 11:57:10.87266+00 f t DESCUENTO 0.00 2 8432 \N +334751 2025-09-28 11:57:10.877091+00 2025-09-28 11:57:10.8771+00 f t TOTAL 0.00 3 8432 \N +334752 2025-09-28 11:57:10.878521+00 2025-09-28 11:57:10.878528+00 f t ADELANTO 0.00 4 8432 \N +329617 2025-09-26 15:00:07.610968+00 2025-09-26 15:00:07.610982+00 f t SUBTOTAL 55000.00 1 8329 \N +329618 2025-09-26 15:00:07.613708+00 2025-09-26 15:00:07.613721+00 f t DESCUENTO 0.00 2 8329 \N +329619 2025-09-26 15:00:07.615987+00 2025-09-26 15:00:07.615998+00 f t TOTAL 55000.00 3 8329 \N +329620 2025-09-26 15:00:07.619709+00 2025-09-26 15:00:07.619723+00 f t ADELANTO 11000.00 4 8329 \N +335201 2025-09-28 16:50:33.256729+00 2025-09-28 16:50:33.256742+00 f t SUBTOTAL 0.00 1 8452 \N +335202 2025-09-28 16:50:33.258432+00 2025-09-28 16:50:33.258439+00 f t DESCUENTO 0.00 2 8452 \N +335203 2025-09-28 16:50:33.259865+00 2025-09-28 16:50:33.259871+00 f t TOTAL 0.00 3 8452 \N +335204 2025-09-28 16:50:33.261195+00 2025-09-28 16:50:33.261201+00 f t ADELANTO 0.00 4 8452 \N +329629 2025-09-26 15:18:37.540384+00 2025-09-26 15:18:37.540392+00 f t SUBTOTAL 23000.00 1 8330 \N +329630 2025-09-26 15:18:37.542224+00 2025-09-26 15:18:37.542231+00 f t DESCUENTO 0.00 2 8330 \N +329631 2025-09-26 15:18:37.543413+00 2025-09-26 15:18:37.543419+00 f t TOTAL 23000.00 3 8330 \N +329632 2025-09-26 15:18:37.544632+00 2025-09-26 15:18:37.544638+00 f t ADELANTO 5500.00 4 8330 \N +329665 2025-09-26 15:43:23.445828+00 2025-09-26 15:43:23.445837+00 f t SUBTOTAL 0.00 1 8331 \N +329666 2025-09-26 15:43:23.447759+00 2025-09-26 15:43:23.447768+00 f t DESCUENTO 0.00 2 8331 \N +329667 2025-09-26 15:43:23.449226+00 2025-09-26 15:43:23.449236+00 f t TOTAL 0.00 3 8331 \N +329668 2025-09-26 15:43:23.450559+00 2025-09-26 15:43:23.450567+00 f t ADELANTO 0.00 4 8331 \N +329677 2025-09-26 15:47:08.835657+00 2025-09-26 15:47:08.835666+00 f t SUBTOTAL 55000.00 1 8332 \N +329678 2025-09-26 15:47:08.83723+00 2025-09-26 15:47:08.837238+00 f t DESCUENTO 0.00 2 8332 \N +329679 2025-09-26 15:47:08.838537+00 2025-09-26 15:47:08.838546+00 f t TOTAL 55000.00 3 8332 \N +329680 2025-09-26 15:47:08.839873+00 2025-09-26 15:47:08.839882+00 f t ADELANTO 11000.00 4 8332 \N +335913 2025-09-28 20:17:05.923403+00 2025-09-28 20:17:05.923417+00 f t SUBTOTAL 0.00 1 8471 \N +335914 2025-09-28 20:17:05.926313+00 2025-09-28 20:17:05.926325+00 f t DESCUENTO 0.00 2 8471 \N +335915 2025-09-28 20:17:05.928425+00 2025-09-28 20:17:05.928438+00 f t TOTAL 0.00 3 8471 \N +329685 2025-09-26 15:47:40.280132+00 2025-09-26 15:47:40.280141+00 f t SUBTOTAL 0.00 1 8333 \N +329686 2025-09-26 15:47:40.281467+00 2025-09-26 15:47:40.281474+00 f t DESCUENTO 0.00 2 8333 \N +329687 2025-09-26 15:47:40.282547+00 2025-09-26 15:47:40.282557+00 f t TOTAL 0.00 3 8333 \N +329688 2025-09-26 15:47:40.283571+00 2025-09-26 15:47:40.283577+00 f t ADELANTO 0.00 4 8333 \N +335916 2025-09-28 20:17:05.930363+00 2025-09-28 20:17:05.930375+00 f t ADELANTO 0.00 4 8471 \N +336057 2025-09-28 20:24:34.80182+00 2025-09-28 20:24:34.801829+00 f t SUBTOTAL 0.00 1 8473 \N +336058 2025-09-28 20:24:34.804672+00 2025-09-28 20:24:34.804683+00 f t DESCUENTO 0.00 2 8473 \N +336059 2025-09-28 20:24:34.806442+00 2025-09-28 20:24:34.806453+00 f t TOTAL 0.00 3 8473 \N +336060 2025-09-28 20:24:34.808335+00 2025-09-28 20:24:34.808344+00 f t ADELANTO 0.00 4 8473 \N +329713 2025-09-26 15:57:10.991262+00 2025-09-26 15:57:10.991274+00 f t SUBTOTAL 70000.00 1 8334 \N +329714 2025-09-26 15:57:10.99321+00 2025-09-26 15:57:10.99322+00 f t DESCUENTO 0.00 2 8334 \N +329715 2025-09-26 15:57:10.997224+00 2025-09-26 15:57:10.997235+00 f t TOTAL 70000.00 3 8334 \N +329716 2025-09-26 15:57:11.004125+00 2025-09-26 15:57:11.004137+00 f t ADELANTO 19000.00 4 8334 \N +329721 2025-09-26 16:01:41.536425+00 2025-09-26 16:01:41.536439+00 f t SUBTOTAL 0.00 1 8335 \N +329722 2025-09-26 16:01:41.538999+00 2025-09-26 16:01:41.539011+00 f t DESCUENTO 0.00 2 8335 \N +329723 2025-09-26 16:01:41.540852+00 2025-09-26 16:01:41.540863+00 f t TOTAL 0.00 3 8335 \N +329724 2025-09-26 16:01:41.542484+00 2025-09-26 16:01:41.542495+00 f t ADELANTO 0.00 4 8335 \N +339149 2025-09-29 22:44:11.078547+00 2025-09-29 22:44:11.078557+00 f t SUBTOTAL 0.00 1 8554 \N +339150 2025-09-29 22:44:11.08019+00 2025-09-29 22:44:11.080197+00 f t DESCUENTO 0.00 2 8554 \N +339151 2025-09-29 22:44:11.08254+00 2025-09-29 22:44:11.082547+00 f t TOTAL 0.00 3 8554 \N +339152 2025-09-29 22:44:11.08398+00 2025-09-29 22:44:11.083986+00 f t ADELANTO 0.00 4 8554 \N +331849 2025-09-27 13:51:05.504766+00 2025-09-27 13:51:05.504779+00 f t SUBTOTAL 0.00 1 8386 \N +331850 2025-09-27 13:51:05.507252+00 2025-09-27 13:51:05.507264+00 f t DESCUENTO 0.00 2 8386 \N +331851 2025-09-27 13:51:05.508885+00 2025-09-27 13:51:05.508895+00 f t TOTAL 0.00 3 8386 \N +331852 2025-09-27 13:51:05.510629+00 2025-09-27 13:51:05.510638+00 f t ADELANTO 0.00 4 8386 \N +329749 2025-09-26 16:02:15.894088+00 2025-09-26 16:02:15.894101+00 f t SUBTOTAL 54000.00 1 8336 \N +329750 2025-09-26 16:02:15.89652+00 2025-09-26 16:02:15.896532+00 f t DESCUENTO 0.00 2 8336 \N +329751 2025-09-26 16:02:15.898569+00 2025-09-26 16:02:15.898581+00 f t TOTAL 54000.00 3 8336 \N +329752 2025-09-26 16:02:15.900704+00 2025-09-26 16:02:15.900714+00 f t ADELANTO 13500.00 4 8336 \N +329757 2025-09-26 16:06:36.110146+00 2025-09-26 16:06:36.110161+00 f t SUBTOTAL 0.00 1 8337 \N +329758 2025-09-26 16:06:36.112115+00 2025-09-26 16:06:36.112124+00 f t DESCUENTO 0.00 2 8337 \N +329759 2025-09-26 16:06:36.11374+00 2025-09-26 16:06:36.113747+00 f t TOTAL 0.00 3 8337 \N +329760 2025-09-26 16:06:36.115395+00 2025-09-26 16:06:36.115403+00 f t ADELANTO 0.00 4 8337 \N +332665 2025-09-27 15:40:35.588214+00 2025-09-27 15:40:35.588226+00 f t SUBTOTAL 46000.00 1 8400 \N +332666 2025-09-27 15:40:35.59059+00 2025-09-27 15:40:35.590599+00 f t DESCUENTO 0.00 2 8400 \N +332667 2025-09-27 15:40:35.592502+00 2025-09-27 15:40:35.592512+00 f t TOTAL 46000.00 3 8400 \N +332668 2025-09-27 15:40:35.594343+00 2025-09-27 15:40:35.594351+00 f t ADELANTO 11000.00 4 8400 \N +329777 2025-09-26 16:08:22.054526+00 2025-09-26 16:08:22.054536+00 f t SUBTOTAL 0.00 1 8338 \N +329778 2025-09-26 16:08:22.056538+00 2025-09-26 16:08:22.056548+00 f t DESCUENTO 0.00 2 8338 \N +329779 2025-09-26 16:08:22.057994+00 2025-09-26 16:08:22.058+00 f t TOTAL 0.00 3 8338 \N +329780 2025-09-26 16:08:22.059089+00 2025-09-26 16:08:22.059096+00 f t ADELANTO 0.00 4 8338 \N +347889 2025-10-03 01:49:19.025676+00 2025-10-03 01:49:19.025685+00 f t SUBTOTAL 0.00 1 8766 \N +347890 2025-10-03 01:49:19.027074+00 2025-10-03 01:49:19.027079+00 f t DESCUENTO 0.00 2 8766 \N +347891 2025-10-03 01:49:19.028201+00 2025-10-03 01:49:19.028206+00 f t TOTAL 0.00 3 8766 \N +347892 2025-10-03 01:49:19.029288+00 2025-10-03 01:49:19.029295+00 f t ADELANTO 0.00 4 8766 \N +329853 2025-09-26 16:33:54.656085+00 2025-09-26 16:33:54.656097+00 f t SUBTOTAL 0.00 1 8339 \N +329854 2025-09-26 16:33:54.662824+00 2025-09-26 16:33:54.662838+00 f t DESCUENTO 0.00 2 8339 \N +329855 2025-09-26 16:33:54.664913+00 2025-09-26 16:33:54.664924+00 f t TOTAL 0.00 3 8339 \N +329856 2025-09-26 16:33:54.666713+00 2025-09-26 16:33:54.666724+00 f t ADELANTO 0.00 4 8339 \N +329873 2025-09-26 16:35:49.171774+00 2025-09-26 16:35:49.171783+00 f t SUBTOTAL 78000.00 1 8323 \N +329874 2025-09-26 16:35:49.173483+00 2025-09-26 16:35:49.173492+00 f t DESCUENTO 0.00 2 8323 \N +329875 2025-09-26 16:35:49.174937+00 2025-09-26 16:35:49.174944+00 f t TOTAL 78000.00 3 8323 \N +329876 2025-09-26 16:35:49.175991+00 2025-09-26 16:35:49.175997+00 f t ADELANTO 21500.00 4 8323 \N +334609 2025-09-28 06:45:31.555043+00 2025-09-28 06:45:31.555055+00 f t SUBTOTAL 70000.00 1 8428 \N +334610 2025-09-28 06:45:31.557291+00 2025-09-28 06:45:31.557299+00 f t DESCUENTO 0.00 2 8428 \N +334611 2025-09-28 06:45:31.559012+00 2025-09-28 06:45:31.559027+00 f t TOTAL 70000.00 3 8428 \N +334612 2025-09-28 06:45:31.560793+00 2025-09-28 06:45:31.5608+00 f t ADELANTO 19000.00 4 8428 \N +329885 2025-09-26 16:41:31.897653+00 2025-09-26 16:41:31.897663+00 f t SUBTOTAL 30000.00 1 8340 \N +329886 2025-09-26 16:41:31.89951+00 2025-09-26 16:41:31.899517+00 f t DESCUENTO 0.00 2 8340 \N +329887 2025-09-26 16:41:31.90071+00 2025-09-26 16:41:31.900719+00 f t TOTAL 30000.00 3 8340 \N +329888 2025-09-26 16:41:31.901858+00 2025-09-26 16:41:31.901864+00 f t ADELANTO 30000.00 4 8340 \N +334757 2025-09-28 12:43:26.74719+00 2025-09-28 12:43:26.747202+00 f t SUBTOTAL 0.00 1 8433 \N +334758 2025-09-28 12:43:26.749282+00 2025-09-28 12:43:26.749295+00 f t DESCUENTO 0.00 2 8433 \N +334759 2025-09-28 12:43:26.751864+00 2025-09-28 12:43:26.751874+00 f t TOTAL 0.00 3 8433 \N +334760 2025-09-28 12:43:26.753436+00 2025-09-28 12:43:26.753444+00 f t ADELANTO 0.00 4 8433 \N +334969 2025-09-28 13:57:10.226975+00 2025-09-28 13:57:10.226983+00 f t SUBTOTAL 46000.00 1 8438 \N +334970 2025-09-28 13:57:10.230735+00 2025-09-28 13:57:10.230744+00 f t DESCUENTO 0.00 2 8438 \N +334971 2025-09-28 13:57:10.232379+00 2025-09-28 13:57:10.232387+00 f t TOTAL 46000.00 3 8438 \N +334972 2025-09-28 13:57:10.233705+00 2025-09-28 13:57:10.233712+00 f t ADELANTO 11000.00 4 8438 \N +329913 2025-09-26 16:56:59.653854+00 2025-09-26 16:56:59.653867+00 f t SUBTOTAL 70000.00 1 8341 \N +329914 2025-09-26 16:56:59.655843+00 2025-09-26 16:56:59.655855+00 f t DESCUENTO 0.00 2 8341 \N +329915 2025-09-26 16:56:59.657514+00 2025-09-26 16:56:59.657524+00 f t TOTAL 70000.00 3 8341 \N +329916 2025-09-26 16:56:59.658841+00 2025-09-26 16:56:59.658848+00 f t ADELANTO 19000.00 4 8341 \N +329921 2025-09-26 17:03:35.788049+00 2025-09-26 17:03:35.78806+00 f t SUBTOTAL 0.00 1 8342 \N +329922 2025-09-26 17:03:35.789725+00 2025-09-26 17:03:35.789735+00 f t DESCUENTO 0.00 2 8342 \N +329923 2025-09-26 17:03:35.791212+00 2025-09-26 17:03:35.791223+00 f t TOTAL 0.00 3 8342 \N +329924 2025-09-26 17:03:35.792495+00 2025-09-26 17:03:35.792501+00 f t ADELANTO 0.00 4 8342 \N +335273 2025-09-28 16:58:38.356641+00 2025-09-28 16:58:38.356649+00 f t SUBTOTAL 55000.00 1 8454 \N +335274 2025-09-28 16:58:38.358821+00 2025-09-28 16:58:38.358829+00 f t DESCUENTO 0.00 2 8454 \N +335275 2025-09-28 16:58:38.360465+00 2025-09-28 16:58:38.360472+00 f t TOTAL 55000.00 3 8454 \N +335276 2025-09-28 16:58:38.362072+00 2025-09-28 16:58:38.362082+00 f t ADELANTO 11000.00 4 8454 \N +329961 2025-09-26 17:12:32.825971+00 2025-09-26 17:12:32.825979+00 f t SUBTOTAL 80000.00 1 8343 \N +329962 2025-09-26 17:12:32.827648+00 2025-09-26 17:12:32.827656+00 f t DESCUENTO 0.00 2 8343 \N +329963 2025-09-26 17:12:32.829007+00 2025-09-26 17:12:32.829014+00 f t TOTAL 80000.00 3 8343 \N +329964 2025-09-26 17:12:32.830572+00 2025-09-26 17:12:32.830581+00 f t ADELANTO 12000.00 4 8343 \N +329977 2025-09-26 17:15:27.584856+00 2025-09-26 17:15:27.58487+00 f t SUBTOTAL 78000.00 1 8344 \N +329978 2025-09-26 17:15:27.586846+00 2025-09-26 17:15:27.586858+00 f t DESCUENTO 0.00 2 8344 \N +329979 2025-09-26 17:15:27.588476+00 2025-09-26 17:15:27.588486+00 f t TOTAL 78000.00 3 8344 \N +329980 2025-09-26 17:15:27.590057+00 2025-09-26 17:15:27.590065+00 f t ADELANTO 21500.00 4 8344 \N +336017 2025-09-28 20:19:51.582386+00 2025-09-28 20:19:51.582397+00 f t SUBTOTAL 46000.00 1 8472 \N +336018 2025-09-28 20:19:51.584588+00 2025-09-28 20:19:51.5846+00 f t DESCUENTO 0.00 2 8472 \N +336019 2025-09-28 20:19:51.586436+00 2025-09-28 20:19:51.586447+00 f t TOTAL 46000.00 3 8472 \N +336020 2025-09-28 20:19:51.588298+00 2025-09-28 20:19:51.588308+00 f t ADELANTO 11000.00 4 8472 \N +338977 2025-09-29 20:13:05.611766+00 2025-09-29 20:13:05.611778+00 f t SUBTOTAL 155400.00 1 8546 \N +338978 2025-09-29 20:13:05.61379+00 2025-09-29 20:13:05.613799+00 f t DESCUENTO 0.00 2 8546 \N +338979 2025-09-29 20:13:05.615113+00 2025-09-29 20:13:05.615125+00 f t TOTAL 155400.00 3 8546 \N +338980 2025-09-29 20:13:05.616194+00 2025-09-29 20:13:05.616199+00 f t ADELANTO 59900.00 4 8546 \N +346717 2025-10-02 18:45:27.197107+00 2025-10-02 18:45:27.197116+00 f t SUBTOTAL 54000.00 1 8734 \N +346718 2025-10-02 18:45:27.198804+00 2025-10-02 18:45:27.198811+00 f t DESCUENTO 0.00 2 8734 \N +346719 2025-10-02 18:45:27.200176+00 2025-10-02 18:45:27.200183+00 f t TOTAL 54000.00 3 8734 \N +346720 2025-10-02 18:45:27.20142+00 2025-10-02 18:45:27.201426+00 f t ADELANTO 13500.00 4 8734 \N +466543 2025-11-07 21:58:15.452479+00 2025-11-07 21:58:15.452486+00 f t COSTO_SERVICIO 0.00 2 11694 \N +466544 2025-11-07 21:58:15.453873+00 2025-11-07 21:58:15.453878+00 f t DESCUENTO 0.00 3 11694 \N +332001 2025-09-27 13:57:39.498376+00 2025-09-27 13:57:39.498385+00 f t SUBTOTAL 46000.00 1 8388 \N +332002 2025-09-27 13:57:39.499931+00 2025-09-27 13:57:39.499937+00 f t DESCUENTO 0.00 2 8388 \N +332003 2025-09-27 13:57:39.500987+00 2025-09-27 13:57:39.500992+00 f t TOTAL 46000.00 3 8388 \N +332004 2025-09-27 13:57:39.501944+00 2025-09-27 13:57:39.501949+00 f t ADELANTO 11000.00 4 8388 \N +330049 2025-09-26 17:20:27.402807+00 2025-09-26 17:20:27.402817+00 f t SUBTOTAL 0.00 1 8345 \N +330050 2025-09-26 17:20:27.40487+00 2025-09-26 17:20:27.40488+00 f t DESCUENTO 0.00 2 8345 \N +330051 2025-09-26 17:20:27.406716+00 2025-09-26 17:20:27.406723+00 f t TOTAL 0.00 3 8345 \N +330052 2025-09-26 17:20:27.408402+00 2025-09-26 17:20:27.40841+00 f t ADELANTO 0.00 4 8345 \N +330057 2025-09-26 17:59:39.569528+00 2025-09-26 17:59:39.569537+00 f t SUBTOTAL 0.00 1 8346 \N +330058 2025-09-26 17:59:39.570801+00 2025-09-26 17:59:39.570807+00 f t DESCUENTO 0.00 2 8346 \N +330059 2025-09-26 17:59:39.572169+00 2025-09-26 17:59:39.572174+00 f t TOTAL 0.00 3 8346 \N +330060 2025-09-26 17:59:39.573308+00 2025-09-26 17:59:39.573314+00 f t ADELANTO 0.00 4 8346 \N +340069 2025-09-30 08:07:46.558463+00 2025-09-30 08:07:46.558475+00 f t SUBTOTAL 46000.00 1 8579 \N +340070 2025-09-30 08:07:46.560545+00 2025-09-30 08:07:46.560558+00 f t DESCUENTO 0.00 2 8579 \N +340071 2025-09-30 08:07:46.562394+00 2025-09-30 08:07:46.562404+00 f t TOTAL 46000.00 3 8579 \N +340072 2025-09-30 08:07:46.564065+00 2025-09-30 08:07:46.564075+00 f t ADELANTO 11000.00 4 8579 \N +347893 2025-10-03 01:49:19.73813+00 2025-10-03 01:49:19.738139+00 f t SUBTOTAL 46000.00 1 8763 \N +347894 2025-10-03 01:49:19.739741+00 2025-10-03 01:49:19.739749+00 f t DESCUENTO 0.00 2 8763 \N +347895 2025-10-03 01:49:19.744324+00 2025-10-03 01:49:19.744334+00 f t TOTAL 46000.00 3 8763 \N +347896 2025-10-03 01:49:19.745756+00 2025-10-03 01:49:19.745763+00 f t ADELANTO 11000.00 4 8763 \N +333293 2025-09-27 18:32:09.548711+00 2025-09-27 18:32:09.548721+00 f t SUBTOTAL 75000.00 1 8410 \N +333294 2025-09-27 18:32:09.550802+00 2025-09-27 18:32:09.550811+00 f t DESCUENTO 0.00 2 8410 \N +333295 2025-09-27 18:32:09.552234+00 2025-09-27 18:32:09.552243+00 f t TOTAL 75000.00 3 8410 \N +333296 2025-09-27 18:32:09.553472+00 2025-09-27 18:32:09.553478+00 f t ADELANTO 15000.00 4 8410 \N +333485 2025-09-27 23:32:15.221412+00 2025-09-27 23:32:15.221422+00 f t SUBTOTAL 75000.00 1 8416 \N +333486 2025-09-27 23:32:15.223444+00 2025-09-27 23:32:15.223452+00 f t DESCUENTO 0.00 2 8416 \N +333487 2025-09-27 23:32:15.224894+00 2025-09-27 23:32:15.224903+00 f t TOTAL 75000.00 3 8416 \N +333488 2025-09-27 23:32:15.226124+00 2025-09-27 23:32:15.22613+00 f t ADELANTO 15000.00 4 8416 \N +330093 2025-09-26 18:03:34.362351+00 2025-09-26 18:03:34.362365+00 f t SUBTOTAL 0.00 1 8347 \N +330094 2025-09-26 18:03:34.364645+00 2025-09-26 18:03:34.364656+00 f t DESCUENTO 0.00 2 8347 \N +330095 2025-09-26 18:03:34.366215+00 2025-09-26 18:03:34.366221+00 f t TOTAL 0.00 3 8347 \N +330096 2025-09-26 18:03:34.367799+00 2025-09-26 18:03:34.367808+00 f t ADELANTO 0.00 4 8347 \N +330141 2025-09-26 18:05:49.208223+00 2025-09-26 18:05:49.208236+00 f t SUBTOTAL 0.00 1 8348 \N +330142 2025-09-26 18:05:49.210673+00 2025-09-26 18:05:49.210685+00 f t DESCUENTO 0.00 2 8348 \N +330143 2025-09-26 18:05:49.212413+00 2025-09-26 18:05:49.212424+00 f t TOTAL 0.00 3 8348 \N +330144 2025-09-26 18:05:49.213897+00 2025-09-26 18:05:49.213905+00 f t ADELANTO 0.00 4 8348 \N +330153 2025-09-26 18:07:34.983177+00 2025-09-26 18:07:34.98319+00 f t SUBTOTAL 55000.00 1 8349 \N +330154 2025-09-26 18:07:34.985076+00 2025-09-26 18:07:34.985087+00 f t DESCUENTO 0.00 2 8349 \N +330155 2025-09-26 18:07:34.98648+00 2025-09-26 18:07:34.986488+00 f t TOTAL 55000.00 3 8349 \N +330156 2025-09-26 18:07:34.987733+00 2025-09-26 18:07:34.987741+00 f t ADELANTO 11000.00 4 8349 \N +334765 2025-09-28 12:55:06.582727+00 2025-09-28 12:55:06.582742+00 f t SUBTOTAL 0.00 1 8434 \N +334766 2025-09-28 12:55:06.587581+00 2025-09-28 12:55:06.587596+00 f t DESCUENTO 0.00 2 8434 \N +334767 2025-09-28 12:55:06.590488+00 2025-09-28 12:55:06.590502+00 f t TOTAL 0.00 3 8434 \N +334768 2025-09-28 12:55:06.592873+00 2025-09-28 12:55:06.592886+00 f t ADELANTO 0.00 4 8434 \N +334977 2025-09-28 14:44:10.769352+00 2025-09-28 14:44:10.769361+00 f t SUBTOTAL 0.00 1 8439 \N +334978 2025-09-28 14:44:10.77212+00 2025-09-28 14:44:10.772128+00 f t DESCUENTO 0.00 2 8439 \N +334979 2025-09-28 14:44:10.773505+00 2025-09-28 14:44:10.773511+00 f t TOTAL 0.00 3 8439 \N +334980 2025-09-28 14:44:10.774845+00 2025-09-28 14:44:10.774851+00 f t ADELANTO 0.00 4 8439 \N +335137 2025-09-28 16:42:08.058126+00 2025-09-28 16:42:08.05814+00 f t SUBTOTAL 0.00 1 8449 \N +335138 2025-09-28 16:42:08.06027+00 2025-09-28 16:42:08.060281+00 f t DESCUENTO 0.00 2 8449 \N +335139 2025-09-28 16:42:08.06226+00 2025-09-28 16:42:08.06227+00 f t TOTAL 0.00 3 8449 \N +335140 2025-09-28 16:42:08.063856+00 2025-09-28 16:42:08.063865+00 f t ADELANTO 0.00 4 8449 \N +335345 2025-09-28 17:24:27.102303+00 2025-09-28 17:24:27.102311+00 f t SUBTOTAL 0.00 1 8456 \N +330221 2025-09-26 18:11:59.121915+00 2025-09-26 18:11:59.121924+00 f t SUBTOTAL 92000.00 1 8350 \N +330222 2025-09-26 18:11:59.123781+00 2025-09-26 18:11:59.123788+00 f t DESCUENTO 0.00 2 8350 \N +330223 2025-09-26 18:11:59.125102+00 2025-09-26 18:11:59.125112+00 f t TOTAL 92000.00 3 8350 \N +330224 2025-09-26 18:11:59.126663+00 2025-09-26 18:11:59.126672+00 f t ADELANTO 22000.00 4 8350 \N +335346 2025-09-28 17:24:27.104332+00 2025-09-28 17:24:27.104339+00 f t DESCUENTO 0.00 2 8456 \N +335347 2025-09-28 17:24:27.106057+00 2025-09-28 17:24:27.106063+00 f t TOTAL 0.00 3 8456 \N +335348 2025-09-28 17:24:27.107243+00 2025-09-28 17:24:27.107248+00 f t ADELANTO 0.00 4 8456 \N +335473 2025-09-28 17:57:13.177359+00 2025-09-28 17:57:13.177371+00 f t SUBTOTAL 46000.00 1 8458 \N +335474 2025-09-28 17:57:13.179522+00 2025-09-28 17:57:13.179533+00 f t DESCUENTO 0.00 2 8458 \N +335475 2025-09-28 17:57:13.180999+00 2025-09-28 17:57:13.181009+00 f t TOTAL 46000.00 3 8458 \N +335476 2025-09-28 17:57:13.18235+00 2025-09-28 17:57:13.182358+00 f t ADELANTO 11000.00 4 8458 \N +330273 2025-09-26 18:27:13.114989+00 2025-09-26 18:27:13.114999+00 f t SUBTOTAL 280000.00 1 8351 \N +330274 2025-09-26 18:27:13.117168+00 2025-09-26 18:27:13.117181+00 f t DESCUENTO 0.00 2 8351 \N +330275 2025-09-26 18:27:13.119462+00 2025-09-26 18:27:13.119473+00 f t TOTAL 280000.00 3 8351 \N +330276 2025-09-26 18:27:13.121429+00 2025-09-26 18:27:13.121447+00 f t ADELANTO 75500.00 4 8351 \N +330301 2025-09-26 18:36:17.596051+00 2025-09-26 18:36:17.59606+00 f t SUBTOTAL 46000.00 1 8352 \N +330302 2025-09-26 18:36:17.597927+00 2025-09-26 18:36:17.597937+00 f t DESCUENTO 0.00 2 8352 \N +330303 2025-09-26 18:36:17.599317+00 2025-09-26 18:36:17.599326+00 f t TOTAL 46000.00 3 8352 \N +330304 2025-09-26 18:36:17.600899+00 2025-09-26 18:36:17.600904+00 f t ADELANTO 11000.00 4 8352 \N +339157 2025-09-29 22:45:24.660726+00 2025-09-29 22:45:24.660736+00 f t SUBTOTAL 0.00 1 8553 \N +339158 2025-09-29 22:45:24.664873+00 2025-09-29 22:45:24.664886+00 f t DESCUENTO 0.00 2 8553 \N +339159 2025-09-29 22:45:24.666555+00 2025-09-29 22:45:24.666561+00 f t TOTAL 0.00 3 8553 \N +339160 2025-09-29 22:45:24.667796+00 2025-09-29 22:45:24.667803+00 f t ADELANTO 0.00 4 8553 \N +330329 2025-09-26 18:48:06.491798+00 2025-09-26 18:48:06.491811+00 f t SUBTOTAL 46000.00 1 8353 \N +330330 2025-09-26 18:48:06.493716+00 2025-09-26 18:48:06.493723+00 f t DESCUENTO 0.00 2 8353 \N +330331 2025-09-26 18:48:06.495293+00 2025-09-26 18:48:06.495303+00 f t TOTAL 46000.00 3 8353 \N +330332 2025-09-26 18:48:06.496951+00 2025-09-26 18:48:06.496959+00 f t ADELANTO 11000.00 4 8353 \N +339613 2025-09-30 02:55:56.203742+00 2025-09-30 02:55:56.203752+00 f t SUBTOTAL 55000.00 1 8572 \N +339614 2025-09-30 02:55:56.205675+00 2025-09-30 02:55:56.205683+00 f t DESCUENTO 0.00 2 8572 \N +339615 2025-09-30 02:55:56.207297+00 2025-09-30 02:55:56.207305+00 f t TOTAL 55000.00 3 8572 \N +339616 2025-09-30 02:55:56.208405+00 2025-09-30 02:55:56.208411+00 f t ADELANTO 11000.00 4 8572 \N +330353 2025-09-26 18:53:01.910277+00 2025-09-26 18:53:01.91029+00 f t SUBTOTAL 0.00 1 8354 \N +330354 2025-09-26 18:53:01.913269+00 2025-09-26 18:53:01.913281+00 f t DESCUENTO 0.00 2 8354 \N +330355 2025-09-26 18:53:01.914979+00 2025-09-26 18:53:01.914989+00 f t TOTAL 0.00 3 8354 \N +330356 2025-09-26 18:53:01.916591+00 2025-09-26 18:53:01.916601+00 f t ADELANTO 0.00 4 8354 \N +330361 2025-09-26 19:04:13.805591+00 2025-09-26 19:04:13.8056+00 f t SUBTOTAL 0.00 1 8355 \N +330362 2025-09-26 19:04:13.807086+00 2025-09-26 19:04:13.807093+00 f t DESCUENTO 0.00 2 8355 \N +330363 2025-09-26 19:04:13.808396+00 2025-09-26 19:04:13.808403+00 f t TOTAL 0.00 3 8355 \N +330364 2025-09-26 19:04:13.80961+00 2025-09-26 19:04:13.809615+00 f t ADELANTO 0.00 4 8355 \N +340077 2025-09-30 08:28:14.259821+00 2025-09-30 08:28:14.259831+00 f t SUBTOTAL 0.00 1 8580 \N +340078 2025-09-30 08:28:14.261543+00 2025-09-30 08:28:14.261551+00 f t DESCUENTO 0.00 2 8580 \N +340079 2025-09-30 08:28:14.262916+00 2025-09-30 08:28:14.262923+00 f t TOTAL 0.00 3 8580 \N +340080 2025-09-30 08:28:14.264004+00 2025-09-30 08:28:14.26401+00 f t ADELANTO 0.00 4 8580 \N +340409 2025-09-30 11:46:03.429062+00 2025-09-30 11:46:03.429072+00 f t SUBTOTAL 0.00 1 8585 \N +340410 2025-09-30 11:46:03.431981+00 2025-09-30 11:46:03.431994+00 f t DESCUENTO 0.00 2 8585 \N +340411 2025-09-30 11:46:03.433833+00 2025-09-30 11:46:03.433841+00 f t TOTAL 0.00 3 8585 \N +340412 2025-09-30 11:46:03.435518+00 2025-09-30 11:46:03.435526+00 f t ADELANTO 0.00 4 8585 \N +333393 2025-09-27 20:18:59.406051+00 2025-09-27 20:18:59.406059+00 f t SUBTOTAL 72500.00 1 8413 \N +333394 2025-09-27 20:18:59.408203+00 2025-09-27 20:18:59.408216+00 f t DESCUENTO 0.00 2 8413 \N +333395 2025-09-27 20:18:59.409965+00 2025-09-27 20:18:59.409975+00 f t TOTAL 72500.00 3 8413 \N +333396 2025-09-27 20:18:59.411547+00 2025-09-27 20:18:59.411558+00 f t ADELANTO 72500.00 4 8413 \N +341121 2025-09-30 18:15:08.516435+00 2025-09-30 18:15:08.516446+00 f t SUBTOTAL 148000.00 1 8605 \N +341122 2025-09-30 18:15:08.519014+00 2025-09-30 18:15:08.519025+00 f t DESCUENTO 0.00 2 8605 \N +341123 2025-09-30 18:15:08.521332+00 2025-09-30 18:15:08.521342+00 f t TOTAL 148000.00 3 8605 \N +341124 2025-09-30 18:15:08.523779+00 2025-09-30 18:15:08.523793+00 f t ADELANTO 40500.00 4 8605 \N +341193 2025-09-30 19:18:37.776773+00 2025-09-30 19:18:37.776782+00 f t SUBTOTAL 121000.00 1 8606 \N +341194 2025-09-30 19:18:37.77858+00 2025-09-30 19:18:37.778587+00 f t DESCUENTO 0.00 2 8606 \N +341195 2025-09-30 19:18:37.779665+00 2025-09-30 19:18:37.779671+00 f t TOTAL 121000.00 3 8606 \N +341196 2025-09-30 19:18:37.78064+00 2025-09-30 19:18:37.780647+00 f t ADELANTO 26000.00 4 8606 \N +341497 2025-09-30 20:03:25.137462+00 2025-09-30 20:03:25.137472+00 f t SUBTOTAL 39000.00 1 8617 \N +341498 2025-09-30 20:03:25.140302+00 2025-09-30 20:03:25.140314+00 f t DESCUENTO 0.00 2 8617 \N +341499 2025-09-30 20:03:25.142458+00 2025-09-30 20:03:25.14247+00 f t TOTAL 39000.00 3 8617 \N +341500 2025-09-30 20:03:25.144337+00 2025-09-30 20:03:25.144348+00 f t ADELANTO 39000.00 4 8617 \N +341569 2025-09-30 20:30:51.717562+00 2025-09-30 20:30:51.717572+00 f t SUBTOTAL 54000.00 1 8620 \N +341570 2025-09-30 20:30:51.720115+00 2025-09-30 20:30:51.720122+00 f t DESCUENTO 0.00 2 8620 \N +341571 2025-09-30 20:30:51.721338+00 2025-09-30 20:30:51.721345+00 f t TOTAL 54000.00 3 8620 \N +330453 2025-09-26 19:31:07.006587+00 2025-09-26 19:31:07.006602+00 f t SUBTOTAL 0.00 1 8356 \N +330454 2025-09-26 19:31:07.009534+00 2025-09-26 19:31:07.009619+00 f t DESCUENTO 0.00 2 8356 \N +330455 2025-09-26 19:31:07.011866+00 2025-09-26 19:31:07.011876+00 f t TOTAL 0.00 3 8356 \N +330456 2025-09-26 19:31:07.013866+00 2025-09-26 19:31:07.013876+00 f t ADELANTO 0.00 4 8356 \N +330465 2025-09-26 19:39:19.338895+00 2025-09-26 19:39:19.338907+00 f t SUBTOTAL 107000.00 1 8357 \N +330466 2025-09-26 19:39:19.342254+00 2025-09-26 19:39:19.342263+00 f t DESCUENTO 0.00 2 8357 \N +330467 2025-09-26 19:39:19.346072+00 2025-09-26 19:39:19.346079+00 f t TOTAL 107000.00 3 8357 \N +330468 2025-09-26 19:39:19.347388+00 2025-09-26 19:39:19.347396+00 f t ADELANTO 12000.00 4 8357 \N +334905 2025-09-28 13:08:35.130359+00 2025-09-28 13:08:35.130367+00 f t SUBTOTAL 76000.00 1 8436 \N +334906 2025-09-28 13:08:35.13244+00 2025-09-28 13:08:35.13245+00 f t DESCUENTO 0.00 2 8436 \N +334907 2025-09-28 13:08:35.133663+00 2025-09-28 13:08:35.133669+00 f t TOTAL 76000.00 3 8436 \N +334908 2025-09-28 13:08:35.134977+00 2025-09-28 13:08:35.134983+00 f t ADELANTO 11000.00 4 8436 \N +334985 2025-09-28 14:53:33.576246+00 2025-09-28 14:53:33.576255+00 f t SUBTOTAL 0.00 1 8440 \N +334986 2025-09-28 14:53:33.577822+00 2025-09-28 14:53:33.57783+00 f t DESCUENTO 0.00 2 8440 \N +334987 2025-09-28 14:53:33.579285+00 2025-09-28 14:53:33.579292+00 f t TOTAL 0.00 3 8440 \N +334988 2025-09-28 14:53:33.580534+00 2025-09-28 14:53:33.58054+00 f t ADELANTO 0.00 4 8440 \N +330521 2025-09-26 20:55:40.446274+00 2025-09-26 20:55:40.446287+00 f t SUBTOTAL 121000.00 1 8358 \N +330522 2025-09-26 20:55:40.448078+00 2025-09-26 20:55:40.448085+00 f t DESCUENTO 0.00 2 8358 \N +330523 2025-09-26 20:55:40.449133+00 2025-09-26 20:55:40.449138+00 f t TOTAL 121000.00 3 8358 \N +330524 2025-09-26 20:55:40.450088+00 2025-09-26 20:55:40.450094+00 f t ADELANTO 26000.00 4 8358 \N +335481 2025-09-28 18:01:00.700942+00 2025-09-28 18:01:00.700954+00 f t SUBTOTAL 0.00 1 8459 \N +335482 2025-09-28 18:01:00.703088+00 2025-09-28 18:01:00.703099+00 f t DESCUENTO 0.00 2 8459 \N +335483 2025-09-28 18:01:00.704939+00 2025-09-28 18:01:00.704952+00 f t TOTAL 0.00 3 8459 \N +335484 2025-09-28 18:01:00.707104+00 2025-09-28 18:01:00.707116+00 f t ADELANTO 0.00 4 8459 \N +330541 2025-09-26 20:56:23.045806+00 2025-09-26 20:56:23.045819+00 f t SUBTOTAL 75000.00 1 8359 \N +330542 2025-09-26 20:56:23.048174+00 2025-09-26 20:56:23.048185+00 f t DESCUENTO 0.00 2 8359 \N +330543 2025-09-26 20:56:23.049946+00 2025-09-26 20:56:23.049956+00 f t TOTAL 75000.00 3 8359 \N +330544 2025-09-26 20:56:23.05161+00 2025-09-26 20:56:23.051619+00 f t ADELANTO 15000.00 4 8359 \N +330573 2025-09-26 21:03:54.006563+00 2025-09-26 21:03:54.006573+00 f t SUBTOTAL 55000.00 1 8360 \N +330574 2025-09-26 21:03:54.008511+00 2025-09-26 21:03:54.008518+00 f t DESCUENTO 0.00 2 8360 \N +330575 2025-09-26 21:03:54.009759+00 2025-09-26 21:03:54.009765+00 f t TOTAL 55000.00 3 8360 \N +330576 2025-09-26 21:03:54.010944+00 2025-09-26 21:03:54.010951+00 f t ADELANTO 11000.00 4 8360 \N +330605 2025-09-26 21:12:47.310724+00 2025-09-26 21:12:47.310737+00 f t SUBTOTAL 75000.00 1 8361 \N +330606 2025-09-26 21:12:47.313101+00 2025-09-26 21:12:47.313112+00 f t DESCUENTO 0.00 2 8361 \N +330607 2025-09-26 21:12:47.314934+00 2025-09-26 21:12:47.314941+00 f t TOTAL 75000.00 3 8361 \N +330608 2025-09-26 21:12:47.316559+00 2025-09-26 21:12:47.316568+00 f t ADELANTO 15000.00 4 8361 \N +339301 2025-09-29 23:44:28.700064+00 2025-09-29 23:44:28.700077+00 f t SUBTOTAL 0.00 1 8561 \N +339302 2025-09-29 23:44:28.702678+00 2025-09-29 23:44:28.702687+00 f t DESCUENTO 0.00 2 8561 \N +339303 2025-09-29 23:44:28.7043+00 2025-09-29 23:44:28.704307+00 f t TOTAL 0.00 3 8561 \N +339304 2025-09-29 23:44:28.705814+00 2025-09-29 23:44:28.705821+00 f t ADELANTO 0.00 4 8561 \N +355633 2025-10-06 02:36:03.152835+00 2025-10-06 02:36:03.152847+00 f t SUBTOTAL 46000.00 1 8948 \N +355634 2025-10-06 02:36:03.154894+00 2025-10-06 02:36:03.154904+00 f t DESCUENTO 0.00 2 8948 \N +355635 2025-10-06 02:36:03.156445+00 2025-10-06 02:36:03.156456+00 f t TOTAL 46000.00 3 8948 \N +355636 2025-10-06 02:36:03.158113+00 2025-10-06 02:36:03.158122+00 f t ADELANTO 11000.00 4 8948 \N +330665 2025-09-26 21:47:30.747516+00 2025-09-26 21:47:30.74753+00 f t SUBTOTAL 0.00 1 8362 \N +330666 2025-09-26 21:47:30.750306+00 2025-09-26 21:47:30.750318+00 f t DESCUENTO 0.00 2 8362 \N +330667 2025-09-26 21:47:30.752178+00 2025-09-26 21:47:30.752189+00 f t TOTAL 0.00 3 8362 \N +330668 2025-09-26 21:47:30.75395+00 2025-09-26 21:47:30.75396+00 f t ADELANTO 0.00 4 8362 \N +348929 2025-10-03 13:15:32.780267+00 2025-10-03 13:15:32.780277+00 f t SUBTOTAL 0.00 1 8792 \N +348930 2025-10-03 13:15:32.782442+00 2025-10-03 13:15:32.78245+00 f t DESCUENTO 0.00 2 8792 \N +348931 2025-10-03 13:15:32.783885+00 2025-10-03 13:15:32.783893+00 f t TOTAL 0.00 3 8792 \N +334065 2025-09-28 03:23:11.286279+00 2025-09-28 03:23:11.286287+00 f t SUBTOTAL 46000.00 1 8425 \N +334066 2025-09-28 03:23:11.288179+00 2025-09-28 03:23:11.288186+00 f t DESCUENTO 0.00 2 8425 \N +334067 2025-09-28 03:23:11.290712+00 2025-09-28 03:23:11.290719+00 f t TOTAL 46000.00 3 8425 \N +334068 2025-09-28 03:23:11.292133+00 2025-09-28 03:23:11.292138+00 f t ADELANTO 11000.00 4 8425 \N +348932 2025-10-03 13:15:32.785257+00 2025-10-03 13:15:32.785267+00 f t ADELANTO 0.00 4 8792 \N +349025 2025-10-03 13:37:40.00322+00 2025-10-03 13:37:40.003229+00 f t SUBTOTAL 30000.00 1 8795 \N +349026 2025-10-03 13:37:40.006028+00 2025-10-03 13:37:40.006035+00 f t DESCUENTO 0.00 2 8795 \N +349027 2025-10-03 13:37:40.007485+00 2025-10-03 13:37:40.007494+00 f t TOTAL 30000.00 3 8795 \N +349028 2025-10-03 13:37:40.008648+00 2025-10-03 13:37:40.008654+00 f t ADELANTO 30000.00 4 8795 \N +349225 2025-10-03 14:33:11.378231+00 2025-10-03 14:33:11.378239+00 f t SUBTOTAL 13200.00 1 8752 \N +349226 2025-10-03 14:33:11.380419+00 2025-10-03 14:33:11.380429+00 f t DESCUENTO 0.00 2 8752 \N +349227 2025-10-03 14:33:11.381728+00 2025-10-03 14:33:11.381734+00 f t TOTAL 13200.00 3 8752 \N +349228 2025-10-03 14:33:11.382838+00 2025-10-03 14:33:11.382845+00 f t ADELANTO 13200.00 4 8752 \N +341273 2025-09-30 19:24:33.833306+00 2025-09-30 19:24:33.833315+00 f t SUBTOTAL 0.00 1 8608 \N +341274 2025-09-30 19:24:33.835495+00 2025-09-30 19:24:33.835504+00 f t DESCUENTO 0.00 2 8608 \N +341275 2025-09-30 19:24:33.836728+00 2025-09-30 19:24:33.836735+00 f t TOTAL 0.00 3 8608 \N +330733 2025-09-26 22:20:14.820739+00 2025-09-26 22:20:14.820751+00 f t SUBTOTAL 55000.00 1 8363 \N +330734 2025-09-26 22:20:14.823445+00 2025-09-26 22:20:14.823459+00 f t DESCUENTO 0.00 2 8363 \N +330735 2025-09-26 22:20:14.827271+00 2025-09-26 22:20:14.827282+00 f t TOTAL 55000.00 3 8363 \N +330736 2025-09-26 22:20:14.829725+00 2025-09-26 22:20:14.829739+00 f t ADELANTO 11000.00 4 8363 \N +341276 2025-09-30 19:24:33.838296+00 2025-09-30 19:24:33.838306+00 f t ADELANTO 0.00 4 8608 \N +341429 2025-09-30 19:57:01.433752+00 2025-09-30 19:57:01.433761+00 f t SUBTOTAL 46000.00 1 8614 \N +341430 2025-09-30 19:57:01.436074+00 2025-09-30 19:57:01.436082+00 f t DESCUENTO 0.00 2 8614 \N +341431 2025-09-30 19:57:01.437614+00 2025-09-30 19:57:01.437622+00 f t TOTAL 46000.00 3 8614 \N +341432 2025-09-30 19:57:01.438969+00 2025-09-30 19:57:01.438975+00 f t ADELANTO 11000.00 4 8614 \N +341505 2025-09-30 20:27:26.967637+00 2025-09-30 20:27:26.967646+00 f t SUBTOTAL 0.00 1 8618 \N +341506 2025-09-30 20:27:26.968947+00 2025-09-30 20:27:26.968954+00 f t DESCUENTO 0.00 2 8618 \N +341507 2025-09-30 20:27:26.970783+00 2025-09-30 20:27:26.97079+00 f t TOTAL 0.00 3 8618 \N +341508 2025-09-30 20:27:26.971978+00 2025-09-30 20:27:26.971984+00 f t ADELANTO 0.00 4 8618 \N +341572 2025-09-30 20:30:51.722425+00 2025-09-30 20:30:51.72243+00 f t ADELANTO 13500.00 4 8620 \N +334993 2025-09-28 14:58:57.662473+00 2025-09-28 14:58:57.662488+00 f t SUBTOTAL 0.00 1 8441 \N +334994 2025-09-28 14:58:57.664677+00 2025-09-28 14:58:57.664689+00 f t DESCUENTO 0.00 2 8441 \N +334995 2025-09-28 14:58:57.667197+00 2025-09-28 14:58:57.667209+00 f t TOTAL 0.00 3 8441 \N +334996 2025-09-28 14:58:57.669138+00 2025-09-28 14:58:57.669149+00 f t ADELANTO 0.00 4 8441 \N +341869 2025-09-30 20:58:28.308779+00 2025-09-30 20:58:28.308788+00 f t SUBTOTAL 0.00 1 8625 \N +341870 2025-09-30 20:58:28.310927+00 2025-09-30 20:58:28.310936+00 f t DESCUENTO 0.00 2 8625 \N +341871 2025-09-30 20:58:28.312508+00 2025-09-30 20:58:28.312518+00 f t TOTAL 0.00 3 8625 \N +341872 2025-09-30 20:58:28.314424+00 2025-09-30 20:58:28.314432+00 f t ADELANTO 0.00 4 8625 \N +330781 2025-09-26 22:22:07.945747+00 2025-09-26 22:22:07.945758+00 f t SUBTOTAL 0.00 1 8364 \N +330782 2025-09-26 22:22:07.94789+00 2025-09-26 22:22:07.947898+00 f t DESCUENTO 0.00 2 8364 \N +330783 2025-09-26 22:22:07.949751+00 2025-09-26 22:22:07.949759+00 f t TOTAL 0.00 3 8364 \N +330784 2025-09-26 22:22:07.951093+00 2025-09-26 22:22:07.951099+00 f t ADELANTO 0.00 4 8364 \N +335557 2025-09-28 18:21:32.923906+00 2025-09-28 18:21:32.923915+00 f t SUBTOTAL 75000.00 1 8462 \N +335558 2025-09-28 18:21:32.925684+00 2025-09-28 18:21:32.925693+00 f t DESCUENTO 0.00 2 8462 \N +335559 2025-09-28 18:21:32.927291+00 2025-09-28 18:21:32.927298+00 f t TOTAL 75000.00 3 8462 \N +335560 2025-09-28 18:21:32.928594+00 2025-09-28 18:21:32.928601+00 f t ADELANTO 15000.00 4 8462 \N +342257 2025-09-30 23:51:14.100589+00 2025-09-30 23:51:14.100597+00 f t SUBTOTAL 0.00 1 8635 \N +342258 2025-09-30 23:51:14.104361+00 2025-09-30 23:51:14.104369+00 f t DESCUENTO 0.00 2 8635 \N +342259 2025-09-30 23:51:14.106092+00 2025-09-30 23:51:14.106101+00 f t TOTAL 0.00 3 8635 \N +342260 2025-09-30 23:51:14.107722+00 2025-09-30 23:51:14.107735+00 f t ADELANTO 0.00 4 8635 \N +342533 2025-10-01 00:27:53.210133+00 2025-10-01 00:27:53.210146+00 f t SUBTOTAL 46000.00 1 8643 \N +342534 2025-10-01 00:27:53.214449+00 2025-10-01 00:27:53.214461+00 f t DESCUENTO 0.00 2 8643 \N +342535 2025-10-01 00:27:53.216708+00 2025-10-01 00:27:53.216718+00 f t TOTAL 46000.00 3 8643 \N +342536 2025-10-01 00:27:53.218264+00 2025-10-01 00:27:53.218287+00 f t ADELANTO 11000.00 4 8643 \N +330837 2025-09-26 22:32:30.697202+00 2025-09-26 22:32:30.697211+00 f t SUBTOTAL 30000.00 1 8366 \N +330838 2025-09-26 22:32:30.698797+00 2025-09-26 22:32:30.698805+00 f t DESCUENTO 0.00 2 8366 \N +330839 2025-09-26 22:32:30.700115+00 2025-09-26 22:32:30.700122+00 f t TOTAL 30000.00 3 8366 \N +330840 2025-09-26 22:32:30.701284+00 2025-09-26 22:32:30.70129+00 f t ADELANTO 30000.00 4 8366 \N +336189 2025-09-28 21:55:21.152312+00 2025-09-28 21:55:21.152325+00 f t SUBTOTAL 0.00 1 8478 \N +336190 2025-09-28 21:55:21.155984+00 2025-09-28 21:55:21.155992+00 f t DESCUENTO 0.00 2 8478 \N +336191 2025-09-28 21:55:21.157643+00 2025-09-28 21:55:21.15765+00 f t TOTAL 0.00 3 8478 \N +336192 2025-09-28 21:55:21.159018+00 2025-09-28 21:55:21.159026+00 f t ADELANTO 0.00 4 8478 \N +346725 2025-10-02 18:49:13.90008+00 2025-10-02 18:49:13.900089+00 f t SUBTOTAL 46000.00 1 8733 \N +346726 2025-10-02 18:49:13.901809+00 2025-10-02 18:49:13.901816+00 f t DESCUENTO 0.00 2 8733 \N +346727 2025-10-02 18:49:13.903097+00 2025-10-02 18:49:13.903104+00 f t TOTAL 46000.00 3 8733 \N +346728 2025-10-02 18:49:13.904287+00 2025-10-02 18:49:13.904293+00 f t ADELANTO 11000.00 4 8733 \N +339309 2025-09-29 23:46:13.242896+00 2025-09-29 23:46:13.242905+00 f t SUBTOTAL 0.00 1 8562 \N +339310 2025-09-29 23:46:13.244341+00 2025-09-29 23:46:13.244347+00 f t DESCUENTO 0.00 2 8562 \N +339311 2025-09-29 23:46:13.245613+00 2025-09-29 23:46:13.245619+00 f t TOTAL 0.00 3 8562 \N +339312 2025-09-29 23:46:13.246729+00 2025-09-29 23:46:13.246734+00 f t ADELANTO 0.00 4 8562 \N +330929 2025-09-26 22:50:59.833937+00 2025-09-26 22:50:59.833947+00 f t SUBTOTAL 54000.00 1 8367 \N +330930 2025-09-26 22:50:59.837355+00 2025-09-26 22:50:59.837363+00 f t DESCUENTO 0.00 2 8367 \N +330931 2025-09-26 22:50:59.839231+00 2025-09-26 22:50:59.83924+00 f t TOTAL 54000.00 3 8367 \N +330932 2025-09-26 22:50:59.840801+00 2025-09-26 22:50:59.840811+00 f t ADELANTO 13500.00 4 8367 \N +330953 2025-09-26 22:56:38.871323+00 2025-09-26 22:56:38.871333+00 f t SUBTOTAL 0.00 1 8369 \N +330954 2025-09-26 22:56:38.873832+00 2025-09-26 22:56:38.873843+00 f t DESCUENTO 0.00 2 8369 \N +330955 2025-09-26 22:56:38.875403+00 2025-09-26 22:56:38.875413+00 f t TOTAL 0.00 3 8369 \N +330956 2025-09-26 22:56:38.877027+00 2025-09-26 22:56:38.877038+00 f t ADELANTO 0.00 4 8369 \N +330961 2025-09-26 22:56:59.792441+00 2025-09-26 22:56:59.792451+00 f t SUBTOTAL 0.00 1 8368 \N +330962 2025-09-26 22:56:59.794448+00 2025-09-26 22:56:59.794454+00 f t DESCUENTO 0.00 2 8368 \N +330963 2025-09-26 22:56:59.795532+00 2025-09-26 22:56:59.795539+00 f t TOTAL 0.00 3 8368 \N +330964 2025-09-26 22:56:59.796682+00 2025-09-26 22:56:59.796688+00 f t ADELANTO 0.00 4 8368 \N +340737 2025-09-30 15:35:33.924776+00 2025-09-30 15:35:33.924789+00 f t SUBTOTAL 13200.00 1 8593 \N +340738 2025-09-30 15:35:33.939261+00 2025-09-30 15:35:33.939274+00 f t DESCUENTO 0.00 2 8593 \N +340739 2025-09-30 15:35:33.94127+00 2025-09-30 15:35:33.941281+00 f t TOTAL 13200.00 3 8593 \N +340740 2025-09-30 15:35:33.943036+00 2025-09-30 15:35:33.943043+00 f t ADELANTO 13200.00 4 8593 \N +330977 2025-09-26 23:18:37.058307+00 2025-09-26 23:18:37.058316+00 f t SUBTOTAL 0.00 1 8370 \N +330978 2025-09-26 23:18:37.060738+00 2025-09-26 23:18:37.060747+00 f t DESCUENTO 0.00 2 8370 \N +330979 2025-09-26 23:18:37.062579+00 2025-09-26 23:18:37.062589+00 f t TOTAL 0.00 3 8370 \N +330980 2025-09-26 23:18:37.064331+00 2025-09-26 23:18:37.064342+00 f t ADELANTO 0.00 4 8370 \N +340969 2025-09-30 16:40:24.335689+00 2025-09-30 16:40:24.335701+00 f t SUBTOTAL 0.00 1 8601 \N +340970 2025-09-30 16:40:24.33804+00 2025-09-30 16:40:24.338049+00 f t DESCUENTO 0.00 2 8601 \N +340971 2025-09-30 16:40:24.339408+00 2025-09-30 16:40:24.339414+00 f t TOTAL 0.00 3 8601 \N +340972 2025-09-30 16:40:24.340577+00 2025-09-30 16:40:24.340584+00 f t ADELANTO 0.00 4 8601 \N +341513 2025-09-30 20:29:48.370209+00 2025-09-30 20:29:48.370218+00 f t SUBTOTAL 0.00 1 8619 \N +341514 2025-09-30 20:29:48.371788+00 2025-09-30 20:29:48.371795+00 f t DESCUENTO 0.00 2 8619 \N +341515 2025-09-30 20:29:48.372991+00 2025-09-30 20:29:48.372997+00 f t TOTAL 0.00 3 8619 \N +341516 2025-09-30 20:29:48.373985+00 2025-09-30 20:29:48.37399+00 f t ADELANTO 0.00 4 8619 \N +334629 2025-09-28 07:50:32.333198+00 2025-09-28 07:50:32.333215+00 f t SUBTOTAL 0.00 1 8429 \N +334630 2025-09-28 07:50:32.335175+00 2025-09-28 07:50:32.335183+00 f t DESCUENTO 0.00 2 8429 \N +334631 2025-09-28 07:50:32.336517+00 2025-09-28 07:50:32.336524+00 f t TOTAL 0.00 3 8429 \N +334632 2025-09-28 07:50:32.337763+00 2025-09-28 07:50:32.337769+00 f t ADELANTO 0.00 4 8429 \N +331041 2025-09-26 23:20:25.459559+00 2025-09-26 23:20:25.459572+00 f t SUBTOTAL 46000.00 1 8371 \N +331042 2025-09-26 23:20:25.462769+00 2025-09-26 23:20:25.462781+00 f t DESCUENTO 0.00 2 8371 \N +331043 2025-09-26 23:20:25.466019+00 2025-09-26 23:20:25.466028+00 f t TOTAL 46000.00 3 8371 \N +331044 2025-09-26 23:20:25.46752+00 2025-09-26 23:20:25.467527+00 f t ADELANTO 11000.00 4 8371 \N +335069 2025-09-28 16:02:01.556672+00 2025-09-28 16:02:01.556685+00 f t SUBTOTAL 46000.00 1 8444 \N +335070 2025-09-28 16:02:01.559288+00 2025-09-28 16:02:01.559301+00 f t DESCUENTO 0.00 2 8444 \N +335071 2025-09-28 16:02:01.561489+00 2025-09-28 16:02:01.561502+00 f t TOTAL 46000.00 3 8444 \N +335072 2025-09-28 16:02:01.563806+00 2025-09-28 16:02:01.563816+00 f t ADELANTO 11000.00 4 8444 \N +331073 2025-09-26 23:27:09.239119+00 2025-09-26 23:27:09.239157+00 f t SUBTOTAL 55000.00 1 8372 \N +331074 2025-09-26 23:27:09.240961+00 2025-09-26 23:27:09.240968+00 f t DESCUENTO 0.00 2 8372 \N +331075 2025-09-26 23:27:09.242266+00 2025-09-26 23:27:09.242272+00 f t TOTAL 55000.00 3 8372 \N +331076 2025-09-26 23:27:09.2436+00 2025-09-26 23:27:09.243606+00 f t ADELANTO 11000.00 4 8372 \N +342057 2025-09-30 22:53:08.288987+00 2025-09-30 22:53:08.289+00 f t SUBTOTAL 46000.00 1 8632 \N +342058 2025-09-30 22:53:08.29135+00 2025-09-30 22:53:08.291361+00 f t DESCUENTO 0.00 2 8632 \N +342059 2025-09-30 22:53:08.293155+00 2025-09-30 22:53:08.293166+00 f t TOTAL 46000.00 3 8632 \N +342060 2025-09-30 22:53:08.294687+00 2025-09-30 22:53:08.294696+00 f t ADELANTO 11000.00 4 8632 \N +342481 2025-10-01 00:11:19.888946+00 2025-10-01 00:11:19.888958+00 f t SUBTOTAL 0.00 1 8641 \N +342482 2025-10-01 00:11:19.891414+00 2025-10-01 00:11:19.891424+00 f t DESCUENTO 0.00 2 8641 \N +342483 2025-10-01 00:11:19.892939+00 2025-10-01 00:11:19.892949+00 f t TOTAL 0.00 3 8641 \N +342484 2025-10-01 00:11:19.894253+00 2025-10-01 00:11:19.894262+00 f t ADELANTO 0.00 4 8641 \N +342541 2025-10-01 00:31:20.755768+00 2025-10-01 00:31:20.755776+00 f t SUBTOTAL 0.00 1 8644 \N +342542 2025-10-01 00:31:20.757405+00 2025-10-01 00:31:20.757413+00 f t DESCUENTO 0.00 2 8644 \N +342543 2025-10-01 00:31:20.758986+00 2025-10-01 00:31:20.758996+00 f t TOTAL 0.00 3 8644 \N +342544 2025-10-01 00:31:20.760406+00 2025-10-01 00:31:20.760415+00 f t ADELANTO 0.00 4 8644 \N +331145 2025-09-26 23:55:09.263339+00 2025-09-26 23:55:09.263352+00 f t SUBTOTAL 78000.00 1 8374 \N +331146 2025-09-26 23:55:09.265502+00 2025-09-26 23:55:09.26551+00 f t DESCUENTO 0.00 2 8374 \N +331147 2025-09-26 23:55:09.270117+00 2025-09-26 23:55:09.270128+00 f t TOTAL 78000.00 3 8374 \N +331148 2025-09-26 23:55:09.271935+00 2025-09-26 23:55:09.271945+00 f t ADELANTO 21500.00 4 8374 \N +331161 2025-09-27 00:17:52.477515+00 2025-09-27 00:17:52.477524+00 f t SUBTOTAL 46000.00 1 8373 \N +331162 2025-09-27 00:17:52.479195+00 2025-09-27 00:17:52.479202+00 f t DESCUENTO 0.00 2 8373 \N +331163 2025-09-27 00:17:52.480374+00 2025-09-27 00:17:52.48038+00 f t TOTAL 46000.00 3 8373 \N +331164 2025-09-27 00:17:52.481314+00 2025-09-27 00:17:52.48132+00 f t ADELANTO 11000.00 4 8373 \N +336221 2025-09-28 21:58:08.53755+00 2025-09-28 21:58:08.537563+00 f t SUBTOTAL 55000.00 1 8479 \N +336222 2025-09-28 21:58:08.539532+00 2025-09-28 21:58:08.539541+00 f t DESCUENTO 0.00 2 8479 \N +336223 2025-09-28 21:58:08.541518+00 2025-09-28 21:58:08.541529+00 f t TOTAL 55000.00 3 8479 \N +336224 2025-09-28 21:58:08.543008+00 2025-09-28 21:58:08.543017+00 f t ADELANTO 11000.00 4 8479 \N +331169 2025-09-27 00:19:41.470969+00 2025-09-27 00:19:41.470978+00 f t SUBTOTAL 55000.00 1 8365 \N +331170 2025-09-27 00:19:41.472691+00 2025-09-27 00:19:41.472699+00 f t DESCUENTO 0.00 2 8365 \N +331171 2025-09-27 00:19:41.47401+00 2025-09-27 00:19:41.474016+00 f t TOTAL 55000.00 3 8365 \N +331172 2025-09-27 00:19:41.475026+00 2025-09-27 00:19:41.475031+00 f t ADELANTO 11000.00 4 8365 \N +371001 2025-10-10 20:06:57.626615+00 2025-10-10 20:06:57.626623+00 f t SUBTOTAL 55000.00 1 9343 \N +371002 2025-10-10 20:06:57.628387+00 2025-10-10 20:06:57.628412+00 f t DESCUENTO 0.00 2 9343 \N +371003 2025-10-10 20:06:57.630081+00 2025-10-10 20:06:57.630091+00 f t TOTAL 55000.00 3 9343 \N +331717 2025-09-27 13:43:31.344671+00 2025-09-27 13:43:31.344679+00 f t SUBTOTAL 60000.00 1 8384 \N +331718 2025-09-27 13:43:31.346351+00 2025-09-27 13:43:31.346358+00 f t DESCUENTO 0.00 2 8384 \N +331719 2025-09-27 13:43:31.347861+00 2025-09-27 13:43:31.34787+00 f t TOTAL 60000.00 3 8384 \N +331720 2025-09-27 13:43:31.349268+00 2025-09-27 13:43:31.349276+00 f t ADELANTO 60000.00 4 8384 \N +339173 2025-09-29 22:45:53.894066+00 2025-09-29 22:45:53.894076+00 f t SUBTOTAL 0.00 1 8555 \N +339174 2025-09-29 22:45:53.895989+00 2025-09-29 22:45:53.895996+00 f t DESCUENTO 0.00 2 8555 \N +339175 2025-09-29 22:45:53.897277+00 2025-09-29 22:45:53.897284+00 f t TOTAL 0.00 3 8555 \N +339176 2025-09-29 22:45:53.89837+00 2025-09-29 22:45:53.898375+00 f t ADELANTO 0.00 4 8555 \N +331205 2025-09-27 00:32:37.717188+00 2025-09-27 00:32:37.717198+00 f t SUBTOTAL 121000.00 1 8375 \N +331206 2025-09-27 00:32:37.718838+00 2025-09-27 00:32:37.718846+00 f t DESCUENTO 0.00 2 8375 \N +331207 2025-09-27 00:32:37.720547+00 2025-09-27 00:32:37.720557+00 f t TOTAL 121000.00 3 8375 \N +331208 2025-09-27 00:32:37.721785+00 2025-09-27 00:32:37.721791+00 f t ADELANTO 26000.00 4 8375 \N +347673 2025-10-03 00:38:29.28266+00 2025-10-03 00:38:29.282668+00 f t SUBTOTAL 55000.00 1 8758 \N +347674 2025-10-03 00:38:29.284612+00 2025-10-03 00:38:29.284622+00 f t DESCUENTO 0.00 2 8758 \N +347675 2025-10-03 00:38:29.28595+00 2025-10-03 00:38:29.285959+00 f t TOTAL 55000.00 3 8758 \N +347676 2025-10-03 00:38:29.287166+00 2025-10-03 00:38:29.287171+00 f t ADELANTO 11000.00 4 8758 \N +355998 2025-10-06 09:59:18.47984+00 2025-10-06 09:59:18.479848+00 f t DESCUENTO 0.00 2 8954 \N +355999 2025-10-06 09:59:18.481232+00 2025-10-06 09:59:18.481238+00 f t TOTAL 0.00 3 8954 \N +356000 2025-10-06 09:59:18.48213+00 2025-10-06 09:59:18.482135+00 f t ADELANTO 0.00 4 8954 \N +331265 2025-09-27 00:34:45.915658+00 2025-09-27 00:34:45.915668+00 f t SUBTOTAL 121000.00 1 8376 \N +331266 2025-09-27 00:34:45.918189+00 2025-09-27 00:34:45.918197+00 f t DESCUENTO 0.00 2 8376 \N +331267 2025-09-27 00:34:45.919483+00 2025-09-27 00:34:45.91949+00 f t TOTAL 121000.00 3 8376 \N +331268 2025-09-27 00:34:45.921023+00 2025-09-27 00:34:45.92103+00 f t ADELANTO 26000.00 4 8376 \N +340893 2025-09-30 16:25:17.973627+00 2025-09-30 16:25:17.973637+00 f t SUBTOTAL 156000.00 1 8598 \N +340894 2025-09-30 16:25:17.975586+00 2025-09-30 16:25:17.975593+00 f t DESCUENTO 0.00 2 8598 \N +340895 2025-09-30 16:25:17.976975+00 2025-09-30 16:25:17.976981+00 f t TOTAL 156000.00 3 8598 \N +340896 2025-09-30 16:25:17.978202+00 2025-09-30 16:25:17.978208+00 f t ADELANTO 43000.00 4 8598 \N +357253 2025-10-06 14:40:06.226116+00 2025-10-06 14:40:06.226128+00 f t SUBTOTAL 70000.00 1 8981 \N +357254 2025-10-06 14:40:06.228437+00 2025-10-06 14:40:06.228448+00 f t DESCUENTO 0.00 2 8981 \N +357255 2025-10-06 14:40:06.229951+00 2025-10-06 14:40:06.229959+00 f t TOTAL 70000.00 3 8981 \N +357256 2025-10-06 14:40:06.232144+00 2025-10-06 14:40:06.232156+00 f t ADELANTO 19000.00 4 8981 \N +349129 2025-10-03 14:08:54.716442+00 2025-10-03 14:08:54.716452+00 f t SUBTOTAL 0.00 1 8798 \N +349130 2025-10-03 14:08:54.719817+00 2025-10-03 14:08:54.719828+00 f t DESCUENTO 0.00 2 8798 \N +349131 2025-10-03 14:08:54.721464+00 2025-10-03 14:08:54.721471+00 f t TOTAL 0.00 3 8798 \N +349132 2025-10-03 14:08:54.722691+00 2025-10-03 14:08:54.722697+00 f t ADELANTO 0.00 4 8798 \N +331321 2025-09-27 03:22:28.757445+00 2025-09-27 03:22:28.757454+00 f t SUBTOTAL 30000.00 1 8377 \N +331322 2025-09-27 03:22:28.759541+00 2025-09-27 03:22:28.75955+00 f t DESCUENTO 0.00 2 8377 \N +331323 2025-09-27 03:22:28.760965+00 2025-09-27 03:22:28.760972+00 f t TOTAL 30000.00 3 8377 \N +331324 2025-09-27 03:22:28.763427+00 2025-09-27 03:22:28.763434+00 f t ADELANTO 30000.00 4 8377 \N +350217 2025-10-03 19:34:41.149598+00 2025-10-03 19:34:41.149607+00 f t SUBTOTAL 204000.00 1 8819 \N +350218 2025-10-03 19:34:41.151301+00 2025-10-03 19:34:41.151308+00 f t DESCUENTO 0.00 2 8819 \N +350219 2025-10-03 19:34:41.152454+00 2025-10-03 19:34:41.152462+00 f t TOTAL 204000.00 3 8819 \N +350220 2025-10-03 19:34:41.153443+00 2025-10-03 19:34:41.153449+00 f t ADELANTO 59000.00 4 8819 \N +335425 2025-09-28 17:34:33.328108+00 2025-09-28 17:34:33.328119+00 f t SUBTOTAL 101000.00 1 8457 \N +331365 2025-09-27 04:06:36.431486+00 2025-09-27 04:06:36.431494+00 f t SUBTOTAL 55000.00 1 8378 \N +331366 2025-09-27 04:06:36.433561+00 2025-09-27 04:06:36.43357+00 f t DESCUENTO 0.00 2 8378 \N +331367 2025-09-27 04:06:36.435316+00 2025-09-27 04:06:36.435326+00 f t TOTAL 55000.00 3 8378 \N +331368 2025-09-27 04:06:36.436912+00 2025-09-27 04:06:36.43692+00 f t ADELANTO 11000.00 4 8378 \N +335426 2025-09-28 17:34:33.329874+00 2025-09-28 17:34:33.329883+00 f t DESCUENTO 0.00 2 8457 \N +335427 2025-09-28 17:34:33.331415+00 2025-09-28 17:34:33.331424+00 f t TOTAL 101000.00 3 8457 \N +335428 2025-09-28 17:34:33.332634+00 2025-09-28 17:34:33.332641+00 f t ADELANTO 22000.00 4 8457 \N +351097 2025-10-04 00:59:13.911814+00 2025-10-04 00:59:13.911828+00 f t SUBTOTAL 46000.00 1 8839 \N +351098 2025-10-04 00:59:13.915112+00 2025-10-04 00:59:13.915123+00 f t DESCUENTO 0.00 2 8839 \N +351099 2025-10-04 00:59:13.919827+00 2025-10-04 00:59:13.919838+00 f t TOTAL 46000.00 3 8839 \N +351100 2025-10-04 00:59:13.92148+00 2025-10-04 00:59:13.92149+00 f t ADELANTO 11000.00 4 8839 \N +342489 2025-10-01 00:16:08.160659+00 2025-10-01 00:16:08.160672+00 f t SUBTOTAL 0.00 1 8642 \N +342490 2025-10-01 00:16:08.162914+00 2025-10-01 00:16:08.162925+00 f t DESCUENTO 0.00 2 8642 \N +342491 2025-10-01 00:16:08.164874+00 2025-10-01 00:16:08.164885+00 f t TOTAL 0.00 3 8642 \N +342492 2025-10-01 00:16:08.166846+00 2025-10-01 00:16:08.166854+00 f t ADELANTO 0.00 4 8642 \N +352001 2025-10-04 18:39:35.396989+00 2025-10-04 18:39:35.396998+00 f t SUBTOTAL 0.00 1 8863 \N +336277 2025-09-28 22:06:02.222873+00 2025-09-28 22:06:02.222886+00 f t SUBTOTAL 55000.00 1 8481 \N +336278 2025-09-28 22:06:02.225608+00 2025-09-28 22:06:02.225618+00 f t DESCUENTO 0.00 2 8481 \N +336279 2025-09-28 22:06:02.227614+00 2025-09-28 22:06:02.227625+00 f t TOTAL 55000.00 3 8481 \N +336280 2025-09-28 22:06:02.229417+00 2025-09-28 22:06:02.229425+00 f t ADELANTO 11000.00 4 8481 \N +352002 2025-10-04 18:39:35.398367+00 2025-10-04 18:39:35.398374+00 f t DESCUENTO 0.00 2 8863 \N +352003 2025-10-04 18:39:35.39992+00 2025-10-04 18:39:35.399926+00 f t TOTAL 0.00 3 8863 \N +352004 2025-10-04 18:39:35.400954+00 2025-10-04 18:39:35.40096+00 f t ADELANTO 0.00 4 8863 \N +352077 2025-10-04 18:46:47.882725+00 2025-10-04 18:46:47.882735+00 f t SUBTOTAL 75000.00 1 8865 \N +336285 2025-09-28 22:06:15.458414+00 2025-09-28 22:06:15.458424+00 f t SUBTOTAL 46000.00 1 8480 \N +336286 2025-09-28 22:06:15.462414+00 2025-09-28 22:06:15.462424+00 f t DESCUENTO 0.00 2 8480 \N +336287 2025-09-28 22:06:15.464458+00 2025-09-28 22:06:15.464467+00 f t TOTAL 46000.00 3 8480 \N +336288 2025-09-28 22:06:15.466227+00 2025-09-28 22:06:15.466237+00 f t ADELANTO 11000.00 4 8480 \N +352078 2025-10-04 18:46:47.884746+00 2025-10-04 18:46:47.884753+00 f t DESCUENTO 0.00 2 8865 \N +352079 2025-10-04 18:46:47.886159+00 2025-10-04 18:46:47.886165+00 f t TOTAL 75000.00 3 8865 \N +352080 2025-10-04 18:46:47.887462+00 2025-10-04 18:46:47.88747+00 f t ADELANTO 15000.00 4 8865 \N +336293 2025-09-28 22:11:31.680096+00 2025-09-28 22:11:31.680105+00 f t SUBTOTAL 0.00 1 8482 \N +336294 2025-09-28 22:11:31.681561+00 2025-09-28 22:11:31.68157+00 f t DESCUENTO 0.00 2 8482 \N +336295 2025-09-28 22:11:31.682829+00 2025-09-28 22:11:31.682837+00 f t TOTAL 0.00 3 8482 \N +336296 2025-09-28 22:11:31.684287+00 2025-09-28 22:11:31.684293+00 f t ADELANTO 0.00 4 8482 \N +346733 2025-10-02 18:50:45.790979+00 2025-10-02 18:50:45.790992+00 f t SUBTOTAL 78000.00 1 8728 \N +346734 2025-10-02 18:50:45.793212+00 2025-10-02 18:50:45.793221+00 f t DESCUENTO 0.00 2 8728 \N +346735 2025-10-02 18:50:45.794678+00 2025-10-02 18:50:45.794685+00 f t TOTAL 78000.00 3 8728 \N +346736 2025-10-02 18:50:45.795864+00 2025-10-02 18:50:45.795869+00 f t ADELANTO 21500.00 4 8728 \N +371004 2025-10-10 20:06:57.631536+00 2025-10-10 20:06:57.631543+00 f t ADELANTO 11000.00 4 9343 \N +466545 2025-11-07 21:58:15.454988+00 2025-11-07 21:58:15.454993+00 f t TOTAL 70000.00 4 11694 \N +339321 2025-09-29 23:57:44.778722+00 2025-09-29 23:57:44.778731+00 f t SUBTOTAL 46000.00 1 8563 \N +339322 2025-09-29 23:57:44.780552+00 2025-09-29 23:57:44.780559+00 f t DESCUENTO 0.00 2 8563 \N +339323 2025-09-29 23:57:44.781654+00 2025-09-29 23:57:44.78166+00 f t TOTAL 46000.00 3 8563 \N +339324 2025-09-29 23:57:44.78298+00 2025-09-29 23:57:44.78299+00 f t ADELANTO 11000.00 4 8563 \N +339429 2025-09-30 00:31:04.195889+00 2025-09-30 00:31:04.195902+00 f t SUBTOTAL 107000.00 1 8567 \N +339430 2025-09-30 00:31:04.198548+00 2025-09-30 00:31:04.198561+00 f t DESCUENTO 0.00 2 8567 \N +339431 2025-09-30 00:31:04.200812+00 2025-09-30 00:31:04.200824+00 f t TOTAL 107000.00 3 8567 \N +339432 2025-09-30 00:31:04.203257+00 2025-09-30 00:31:04.203269+00 f t ADELANTO 12000.00 4 8567 \N +347169 2025-10-02 20:31:27.265183+00 2025-10-02 20:31:27.265191+00 f t SUBTOTAL 0.00 1 8742 \N +347170 2025-10-02 20:31:27.266552+00 2025-10-02 20:31:27.266559+00 f t DESCUENTO 0.00 2 8742 \N +347171 2025-10-02 20:31:27.267606+00 2025-10-02 20:31:27.267612+00 f t TOTAL 0.00 3 8742 \N +347172 2025-10-02 20:31:27.272672+00 2025-10-02 20:31:27.27268+00 f t ADELANTO 0.00 4 8742 \N +336325 2025-09-28 22:38:59.662445+00 2025-09-28 22:38:59.662454+00 f t SUBTOTAL 46000.00 1 8483 \N +336326 2025-09-28 22:38:59.664268+00 2025-09-28 22:38:59.664275+00 f t DESCUENTO 0.00 2 8483 \N +336327 2025-09-28 22:38:59.665937+00 2025-09-28 22:38:59.665946+00 f t TOTAL 46000.00 3 8483 \N +336328 2025-09-28 22:38:59.667245+00 2025-09-28 22:38:59.667252+00 f t ADELANTO 11000.00 4 8483 \N +363265 2025-10-08 01:38:47.298363+00 2025-10-08 01:38:47.298372+00 f t SUBTOTAL 54000.00 1 9129 \N +363266 2025-10-08 01:38:47.300386+00 2025-10-08 01:38:47.300393+00 f t DESCUENTO 0.00 2 9129 \N +363267 2025-10-08 01:38:47.301573+00 2025-10-08 01:38:47.30158+00 f t TOTAL 54000.00 3 9129 \N +363268 2025-10-08 01:38:47.302715+00 2025-10-08 01:38:47.302723+00 f t ADELANTO 13500.00 4 9129 \N +363953 2025-10-08 11:43:18.533748+00 2025-10-08 11:43:18.533762+00 f t SUBTOTAL 30000.00 1 9142 \N +363954 2025-10-08 11:43:18.535632+00 2025-10-08 11:43:18.535639+00 f t DESCUENTO 0.00 2 9142 \N +363955 2025-10-08 11:43:18.536892+00 2025-10-08 11:43:18.536897+00 f t TOTAL 30000.00 3 9142 \N +363956 2025-10-08 11:43:18.537959+00 2025-10-08 11:43:18.537964+00 f t ADELANTO 30000.00 4 9142 \N +340581 2025-09-30 12:55:50.622992+00 2025-09-30 12:55:50.623002+00 f t SUBTOTAL 46000.00 1 8588 \N +340582 2025-09-30 12:55:50.62454+00 2025-09-30 12:55:50.624546+00 f t DESCUENTO 0.00 2 8588 \N +340583 2025-09-30 12:55:50.62573+00 2025-09-30 12:55:50.625737+00 f t TOTAL 46000.00 3 8588 \N +340584 2025-09-30 12:55:50.626827+00 2025-09-30 12:55:50.626835+00 f t ADELANTO 11000.00 4 8588 \N +356453 2025-10-06 11:27:18.875667+00 2025-10-06 11:27:18.875676+00 f t SUBTOTAL 55000.00 1 8961 \N +356454 2025-10-06 11:27:18.879922+00 2025-10-06 11:27:18.879934+00 f t DESCUENTO 0.00 2 8961 \N +356455 2025-10-06 11:27:18.881014+00 2025-10-06 11:27:18.881019+00 f t TOTAL 55000.00 3 8961 \N +356456 2025-10-06 11:27:18.882038+00 2025-10-06 11:27:18.882045+00 f t ADELANTO 11000.00 4 8961 \N +336385 2025-09-29 00:10:23.081462+00 2025-09-29 00:10:23.081474+00 f t SUBTOTAL 55000.00 1 8485 \N +336386 2025-09-29 00:10:23.083439+00 2025-09-29 00:10:23.083448+00 f t DESCUENTO 0.00 2 8485 \N +336387 2025-09-29 00:10:23.08489+00 2025-09-29 00:10:23.084897+00 f t TOTAL 55000.00 3 8485 \N +336388 2025-09-29 00:10:23.085989+00 2025-09-29 00:10:23.085997+00 f t ADELANTO 11000.00 4 8485 \N +357461 2025-10-06 15:27:29.915274+00 2025-10-06 15:27:29.915287+00 f t SUBTOTAL 68000.00 1 8986 \N +357462 2025-10-06 15:27:29.918707+00 2025-10-06 15:27:29.918719+00 f t DESCUENTO 0.00 2 8986 \N +357463 2025-10-06 15:27:29.920832+00 2025-10-06 15:27:29.920843+00 f t TOTAL 68000.00 3 8986 \N +357464 2025-10-06 15:27:29.923479+00 2025-10-06 15:27:29.92349+00 f t ADELANTO 13000.00 4 8986 \N +357561 2025-10-06 15:38:11.440965+00 2025-10-06 15:38:11.440981+00 f t SUBTOTAL 0.00 1 8989 \N +357562 2025-10-06 15:38:11.443503+00 2025-10-06 15:38:11.443512+00 f t DESCUENTO 0.00 2 8989 \N +357563 2025-10-06 15:38:11.445481+00 2025-10-06 15:38:11.445488+00 f t TOTAL 0.00 3 8989 \N +357564 2025-10-06 15:38:11.446701+00 2025-10-06 15:38:11.446708+00 f t ADELANTO 0.00 4 8989 \N +336481 2025-09-29 00:34:36.775005+00 2025-09-29 00:34:36.775017+00 f t SUBTOTAL 121000.00 1 8486 \N +336482 2025-09-29 00:34:36.779218+00 2025-09-29 00:34:36.77923+00 f t DESCUENTO 0.00 2 8486 \N +336483 2025-09-29 00:34:36.781013+00 2025-09-29 00:34:36.781021+00 f t TOTAL 121000.00 3 8486 \N +336484 2025-09-29 00:34:36.782709+00 2025-09-29 00:34:36.782719+00 f t ADELANTO 26000.00 4 8486 \N +342385 2025-10-01 00:07:13.152765+00 2025-10-01 00:07:13.152774+00 f t SUBTOTAL 46000.00 1 8638 \N +342386 2025-10-01 00:07:13.154577+00 2025-10-01 00:07:13.154584+00 f t DESCUENTO 0.00 2 8638 \N +342387 2025-10-01 00:07:13.156061+00 2025-10-01 00:07:13.156069+00 f t TOTAL 46000.00 3 8638 \N +342388 2025-10-01 00:07:13.157578+00 2025-10-01 00:07:13.157584+00 f t ADELANTO 11000.00 4 8638 \N +336493 2025-09-29 01:22:34.371608+00 2025-09-29 01:22:34.371617+00 f t SUBTOTAL 0.00 1 8487 \N +336494 2025-09-29 01:22:34.372807+00 2025-09-29 01:22:34.372813+00 f t DESCUENTO 0.00 2 8487 \N +336495 2025-09-29 01:22:34.374275+00 2025-09-29 01:22:34.374281+00 f t TOTAL 0.00 3 8487 \N +336496 2025-09-29 01:22:34.376451+00 2025-09-29 01:22:34.376456+00 f t ADELANTO 0.00 4 8487 \N +336497 2025-09-29 01:22:34.400986+00 2025-09-29 01:22:34.400995+00 f t SUBTOTAL 66500.00 1 8411 \N +336498 2025-09-29 01:22:34.404448+00 2025-09-29 01:22:34.404457+00 f t DESCUENTO 0.00 2 8411 \N +336499 2025-09-29 01:22:34.405766+00 2025-09-29 01:22:34.405772+00 f t TOTAL 66500.00 3 8411 \N +336500 2025-09-29 01:22:34.411375+00 2025-09-29 01:22:34.411383+00 f t ADELANTO 46900.00 4 8411 \N +336501 2025-09-29 01:22:34.414559+00 2025-09-29 01:22:34.414567+00 f t SUBTOTAL 133400.00 1 8411 \N +336502 2025-09-29 01:22:34.416478+00 2025-09-29 01:22:34.416485+00 f t DESCUENTO 0.00 2 8411 \N +336503 2025-09-29 01:22:34.417779+00 2025-09-29 01:22:34.417785+00 f t TOTAL 133400.00 3 8411 \N +336504 2025-09-29 01:22:34.419199+00 2025-09-29 01:22:34.419204+00 f t ADELANTO 57900.00 4 8411 \N +359333 2025-10-06 23:38:56.111319+00 2025-10-06 23:38:56.111328+00 f t SUBTOTAL 0.00 1 9038 \N +359334 2025-10-06 23:38:56.113411+00 2025-10-06 23:38:56.113419+00 f t DESCUENTO 0.00 2 9038 \N +359335 2025-10-06 23:38:56.114649+00 2025-10-06 23:38:56.114655+00 f t TOTAL 0.00 3 9038 \N +359336 2025-10-06 23:38:56.11574+00 2025-10-06 23:38:56.115746+00 f t ADELANTO 0.00 4 9038 \N +343053 2025-10-01 02:42:55.100018+00 2025-10-01 02:42:55.10003+00 f t SUBTOTAL 46000.00 1 8652 \N +343054 2025-10-01 02:42:55.102432+00 2025-10-01 02:42:55.102443+00 f t DESCUENTO 0.00 2 8652 \N +343055 2025-10-01 02:42:55.10424+00 2025-10-01 02:42:55.104248+00 f t TOTAL 46000.00 3 8652 \N +343056 2025-10-01 02:42:55.105831+00 2025-10-01 02:42:55.105841+00 f t ADELANTO 11000.00 4 8652 \N +362601 2025-10-07 21:18:50.991825+00 2025-10-07 21:18:50.991835+00 f t SUBTOTAL 100900.00 1 9105 \N +362602 2025-10-07 21:18:50.994952+00 2025-10-07 21:18:50.994961+00 f t DESCUENTO 0.00 2 9105 \N +362603 2025-10-07 21:18:50.996338+00 2025-10-07 21:18:50.996345+00 f t TOTAL 100900.00 3 9105 \N +347173 2025-10-02 20:31:33.81923+00 2025-10-02 20:31:33.819239+00 f t SUBTOTAL 46000.00 1 8741 \N +347174 2025-10-02 20:31:33.821204+00 2025-10-02 20:31:33.821211+00 f t DESCUENTO 0.00 2 8741 \N +347175 2025-10-02 20:31:33.822577+00 2025-10-02 20:31:33.822585+00 f t TOTAL 46000.00 3 8741 \N +347176 2025-10-02 20:31:33.824292+00 2025-10-02 20:31:33.8243+00 f t ADELANTO 11000.00 4 8741 \N +347557 2025-10-02 23:08:36.717596+00 2025-10-02 23:08:36.717605+00 f t SUBTOTAL 55000.00 1 8753 \N +347558 2025-10-02 23:08:36.719719+00 2025-10-02 23:08:36.719728+00 f t DESCUENTO 0.00 2 8753 \N +347559 2025-10-02 23:08:36.72117+00 2025-10-02 23:08:36.721177+00 f t TOTAL 55000.00 3 8753 \N +347560 2025-10-02 23:08:36.722525+00 2025-10-02 23:08:36.722533+00 f t ADELANTO 11000.00 4 8753 \N +355377 2025-10-06 00:31:40.481817+00 2025-10-06 00:31:40.481829+00 f t SUBTOTAL 0.00 1 8942 \N +355378 2025-10-06 00:31:40.483768+00 2025-10-06 00:31:40.483778+00 f t DESCUENTO 0.00 2 8942 \N +355379 2025-10-06 00:31:40.484901+00 2025-10-06 00:31:40.484908+00 f t TOTAL 0.00 3 8942 \N +355380 2025-10-06 00:31:40.485984+00 2025-10-06 00:31:40.48599+00 f t ADELANTO 0.00 4 8942 \N +355885 2025-10-06 03:39:49.567872+00 2025-10-06 03:39:49.567881+00 f t SUBTOTAL 315500.00 1 8951 \N +355886 2025-10-06 03:39:49.572596+00 2025-10-06 03:39:49.572603+00 f t DESCUENTO 0.00 2 8951 \N +355887 2025-10-06 03:39:49.574112+00 2025-10-06 03:39:49.574119+00 f t TOTAL 315500.00 3 8951 \N +336633 2025-09-29 01:57:30.718221+00 2025-09-29 01:57:30.718231+00 f t SUBTOTAL 100900.00 1 8488 \N +336634 2025-09-29 01:57:30.721595+00 2025-09-29 01:57:30.721603+00 f t DESCUENTO 0.00 2 8488 \N +336635 2025-09-29 01:57:30.72329+00 2025-09-29 01:57:30.723301+00 f t TOTAL 100900.00 3 8488 \N +336636 2025-09-29 01:57:30.724796+00 2025-09-29 01:57:30.724803+00 f t ADELANTO 60400.00 4 8488 \N +355888 2025-10-06 03:39:49.575317+00 2025-10-06 03:39:49.575323+00 f t ADELANTO 55500.00 4 8951 \N +348845 2025-10-03 12:58:33.770988+00 2025-10-03 12:58:33.770997+00 f t SUBTOTAL 80000.00 1 8789 \N +348846 2025-10-03 12:58:33.772666+00 2025-10-03 12:58:33.772673+00 f t DESCUENTO 0.00 2 8789 \N +348847 2025-10-03 12:58:33.774032+00 2025-10-03 12:58:33.774038+00 f t TOTAL 80000.00 3 8789 \N +348848 2025-10-03 12:58:33.77501+00 2025-10-03 12:58:33.775016+00 f t ADELANTO 12000.00 4 8789 \N +340749 2025-09-30 15:35:45.99499+00 2025-09-30 15:35:45.994999+00 f t SUBTOTAL 0.00 1 8594 \N +340750 2025-09-30 15:35:45.997809+00 2025-09-30 15:35:45.997819+00 f t DESCUENTO 0.00 2 8594 \N +340751 2025-09-30 15:35:45.999427+00 2025-09-30 15:35:45.999434+00 f t TOTAL 0.00 3 8594 \N +340752 2025-09-30 15:35:46.000807+00 2025-09-30 15:35:46.000813+00 f t ADELANTO 0.00 4 8594 \N +341061 2025-09-30 17:23:55.741557+00 2025-09-30 17:23:55.741566+00 f t SUBTOTAL 78000.00 1 8603 \N +341062 2025-09-30 17:23:55.743488+00 2025-09-30 17:23:55.743496+00 f t DESCUENTO 0.00 2 8603 \N +341063 2025-09-30 17:23:55.744832+00 2025-09-30 17:23:55.744838+00 f t TOTAL 78000.00 3 8603 \N +341064 2025-09-30 17:23:55.746171+00 2025-09-30 17:23:55.746179+00 f t ADELANTO 21500.00 4 8603 \N +357149 2025-10-06 14:35:55.972723+00 2025-10-06 14:35:55.972735+00 f t SUBTOTAL 70000.00 1 8978 \N +357150 2025-10-06 14:35:55.97472+00 2025-10-06 14:35:55.974729+00 f t DESCUENTO 0.00 2 8978 \N +357151 2025-10-06 14:35:55.976103+00 2025-10-06 14:35:55.97611+00 f t TOTAL 70000.00 3 8978 \N +357152 2025-10-06 14:35:55.977383+00 2025-10-06 14:35:55.97739+00 f t ADELANTO 19000.00 4 8978 \N +341945 2025-09-30 21:09:06.408023+00 2025-09-30 21:09:06.408036+00 f t SUBTOTAL 70000.00 1 8627 \N +341946 2025-09-30 21:09:06.411162+00 2025-09-30 21:09:06.411177+00 f t DESCUENTO 0.00 2 8627 \N +341947 2025-09-30 21:09:06.413508+00 2025-09-30 21:09:06.413521+00 f t TOTAL 70000.00 3 8627 \N +341948 2025-09-30 21:09:06.415989+00 2025-09-30 21:09:06.416001+00 f t ADELANTO 19000.00 4 8627 \N +342009 2025-09-30 22:43:26.770743+00 2025-09-30 22:43:26.770757+00 f t SUBTOTAL 70000.00 1 8630 \N +342010 2025-09-30 22:43:26.772802+00 2025-09-30 22:43:26.772809+00 f t DESCUENTO 0.00 2 8630 \N +342011 2025-09-30 22:43:26.774165+00 2025-09-30 22:43:26.774172+00 f t TOTAL 70000.00 3 8630 \N +342012 2025-09-30 22:43:26.775955+00 2025-09-30 22:43:26.775961+00 f t ADELANTO 19000.00 4 8630 \N +342169 2025-09-30 23:28:00.639057+00 2025-09-30 23:28:00.639066+00 f t SUBTOTAL 83200.00 1 8633 \N +342170 2025-09-30 23:28:00.641313+00 2025-09-30 23:28:00.641322+00 f t DESCUENTO 0.00 2 8633 \N +342171 2025-09-30 23:28:00.643183+00 2025-09-30 23:28:00.64319+00 f t TOTAL 83200.00 3 8633 \N +342172 2025-09-30 23:28:00.645296+00 2025-09-30 23:28:00.645307+00 f t ADELANTO 32200.00 4 8633 \N +336789 2025-09-29 02:41:23.360347+00 2025-09-29 02:41:23.360356+00 f t SUBTOTAL 46000.00 1 8489 \N +336790 2025-09-29 02:41:23.362348+00 2025-09-29 02:41:23.362361+00 f t DESCUENTO 0.00 2 8489 \N +336791 2025-09-29 02:41:23.36423+00 2025-09-29 02:41:23.36424+00 f t TOTAL 46000.00 3 8489 \N +336792 2025-09-29 02:41:23.366145+00 2025-09-29 02:41:23.366155+00 f t ADELANTO 11000.00 4 8489 \N +351289 2025-10-04 09:34:25.788515+00 2025-10-04 09:34:25.788525+00 f t SUBTOTAL 46000.00 1 8845 \N +351290 2025-10-04 09:34:25.790251+00 2025-10-04 09:34:25.790259+00 f t DESCUENTO 0.00 2 8845 \N +351291 2025-10-04 09:34:25.791383+00 2025-10-04 09:34:25.791389+00 f t TOTAL 46000.00 3 8845 \N +351292 2025-10-04 09:34:25.792495+00 2025-10-04 09:34:25.792501+00 f t ADELANTO 11000.00 4 8845 \N +336817 2025-09-29 03:38:56.637579+00 2025-09-29 03:38:56.637588+00 f t SUBTOTAL 80000.00 1 8490 \N +336818 2025-09-29 03:38:56.639233+00 2025-09-29 03:38:56.639241+00 f t DESCUENTO 0.00 2 8490 \N +336819 2025-09-29 03:38:56.641385+00 2025-09-29 03:38:56.641395+00 f t TOTAL 80000.00 3 8490 \N +336820 2025-09-29 03:38:56.642913+00 2025-09-29 03:38:56.642919+00 f t ADELANTO 12000.00 4 8490 \N +351913 2025-10-04 16:59:52.772122+00 2025-10-04 16:59:52.772131+00 f t SUBTOTAL 140000.00 1 8859 \N +351914 2025-10-04 16:59:52.773998+00 2025-10-04 16:59:52.774005+00 f t DESCUENTO 0.00 2 8859 \N +351915 2025-10-04 16:59:52.775182+00 2025-10-04 16:59:52.775188+00 f t TOTAL 140000.00 3 8859 \N +351916 2025-10-04 16:59:52.776157+00 2025-10-04 16:59:52.776162+00 f t ADELANTO 52000.00 4 8859 \N +342985 2025-10-01 02:19:40.340991+00 2025-10-01 02:19:40.341001+00 f t SUBTOTAL 0.00 1 8650 \N +342986 2025-10-01 02:19:40.343387+00 2025-10-01 02:19:40.343393+00 f t DESCUENTO 0.00 2 8650 \N +342987 2025-10-01 02:19:40.345061+00 2025-10-01 02:19:40.345067+00 f t TOTAL 0.00 3 8650 \N +342988 2025-10-01 02:19:40.346223+00 2025-10-01 02:19:40.346229+00 f t ADELANTO 0.00 4 8650 \N +336845 2025-09-29 04:02:03.602929+00 2025-09-29 04:02:03.602942+00 f t SUBTOTAL 68000.00 1 8491 \N +336846 2025-09-29 04:02:03.606343+00 2025-09-29 04:02:03.606357+00 f t DESCUENTO 0.00 2 8491 \N +336847 2025-09-29 04:02:03.609029+00 2025-09-29 04:02:03.609043+00 f t TOTAL 68000.00 3 8491 \N +336848 2025-09-29 04:02:03.611713+00 2025-09-29 04:02:03.611727+00 f t ADELANTO 13000.00 4 8491 \N +343081 2025-10-01 03:03:42.84535+00 2025-10-01 03:03:42.845362+00 f t SUBTOTAL 46000.00 1 8653 \N +343082 2025-10-01 03:03:42.847426+00 2025-10-01 03:03:42.847437+00 f t DESCUENTO 0.00 2 8653 \N +343083 2025-10-01 03:03:42.848962+00 2025-10-01 03:03:42.848971+00 f t TOTAL 46000.00 3 8653 \N +343084 2025-10-01 03:03:42.85042+00 2025-10-01 03:03:42.850428+00 f t ADELANTO 11000.00 4 8653 \N +336881 2025-09-29 04:36:40.854903+00 2025-09-29 04:36:40.854913+00 f t SUBTOTAL 0.00 1 8492 \N +336882 2025-09-29 04:36:40.857679+00 2025-09-29 04:36:40.857693+00 f t DESCUENTO 0.00 2 8492 \N +336883 2025-09-29 04:36:40.859992+00 2025-09-29 04:36:40.860002+00 f t TOTAL 0.00 3 8492 \N +336884 2025-09-29 04:36:40.865522+00 2025-09-29 04:36:40.865533+00 f t ADELANTO 0.00 4 8492 \N +336889 2025-09-29 06:12:55.929601+00 2025-09-29 06:12:55.929611+00 f t SUBTOTAL 0.00 1 8493 \N +336890 2025-09-29 06:12:55.931255+00 2025-09-29 06:12:55.931266+00 f t DESCUENTO 0.00 2 8493 \N +336891 2025-09-29 06:12:55.932762+00 2025-09-29 06:12:55.932773+00 f t TOTAL 0.00 3 8493 \N +336892 2025-09-29 06:12:55.934133+00 2025-09-29 06:12:55.93414+00 f t ADELANTO 0.00 4 8493 \N +339737 2025-09-30 03:50:31.733396+00 2025-09-30 03:50:31.733406+00 f t SUBTOTAL 156000.00 1 8575 \N +339738 2025-09-30 03:50:31.739475+00 2025-09-30 03:50:31.739486+00 f t DESCUENTO 0.00 2 8575 \N +339739 2025-09-30 03:50:31.741371+00 2025-09-30 03:50:31.741384+00 f t TOTAL 156000.00 3 8575 \N +339740 2025-09-30 03:50:31.743204+00 2025-09-30 03:50:31.743214+00 f t ADELANTO 43000.00 4 8575 \N +340593 2025-09-30 13:28:30.512604+00 2025-09-30 13:28:30.512616+00 f t SUBTOTAL 55000.00 1 8589 \N +340594 2025-09-30 13:28:30.514733+00 2025-09-30 13:28:30.514743+00 f t DESCUENTO 0.00 2 8589 \N +340595 2025-09-30 13:28:30.516207+00 2025-09-30 13:28:30.516214+00 f t TOTAL 55000.00 3 8589 \N +340596 2025-09-30 13:28:30.51733+00 2025-09-30 13:28:30.517336+00 f t ADELANTO 11000.00 4 8589 \N +340669 2025-09-30 15:03:25.215269+00 2025-09-30 15:03:25.215283+00 f t SUBTOTAL 0.00 1 8591 \N +340670 2025-09-30 15:03:25.218403+00 2025-09-30 15:03:25.218416+00 f t DESCUENTO 0.00 2 8591 \N +340671 2025-09-30 15:03:25.220525+00 2025-09-30 15:03:25.220537+00 f t TOTAL 0.00 3 8591 \N +340672 2025-09-30 15:03:25.222415+00 2025-09-30 15:03:25.222425+00 f t ADELANTO 0.00 4 8591 \N +340989 2025-09-30 16:43:51.027294+00 2025-09-30 16:43:51.027304+00 f t SUBTOTAL 75400.00 1 8592 \N +340990 2025-09-30 16:43:51.029123+00 2025-09-30 16:43:51.029131+00 f t DESCUENTO 0.00 2 8592 \N +340991 2025-09-30 16:43:51.030254+00 2025-09-30 16:43:51.03026+00 f t TOTAL 75400.00 3 8592 \N +340992 2025-09-30 16:43:51.031428+00 2025-09-30 16:43:51.031433+00 f t ADELANTO 52400.00 4 8592 \N +336989 2025-09-29 10:26:58.183526+00 2025-09-29 10:26:58.183536+00 f t SUBTOTAL 0.00 1 8494 \N +336990 2025-09-29 10:26:58.185248+00 2025-09-29 10:26:58.185256+00 f t DESCUENTO 0.00 2 8494 \N +336991 2025-09-29 10:26:58.186386+00 2025-09-29 10:26:58.186392+00 f t TOTAL 0.00 3 8494 \N +336992 2025-09-29 10:26:58.187472+00 2025-09-29 10:26:58.187479+00 f t ADELANTO 0.00 4 8494 \N +341381 2025-09-30 19:51:05.558537+00 2025-09-30 19:51:05.558548+00 f t SUBTOTAL 0.00 1 8611 \N +341382 2025-09-30 19:51:05.561311+00 2025-09-30 19:51:05.56132+00 f t DESCUENTO 0.00 2 8611 \N +341383 2025-09-30 19:51:05.563162+00 2025-09-30 19:51:05.563169+00 f t TOTAL 0.00 3 8611 \N +341384 2025-09-30 19:51:05.565825+00 2025-09-30 19:51:05.565832+00 f t ADELANTO 0.00 4 8611 \N +337017 2025-09-29 10:27:57.137736+00 2025-09-29 10:27:57.137745+00 f t SUBTOTAL 80000.00 1 8495 \N +337018 2025-09-29 10:27:57.139367+00 2025-09-29 10:27:57.139374+00 f t DESCUENTO 0.00 2 8495 \N +337019 2025-09-29 10:27:57.140798+00 2025-09-29 10:27:57.140807+00 f t TOTAL 80000.00 3 8495 \N +337020 2025-09-29 10:27:57.141878+00 2025-09-29 10:27:57.141884+00 f t ADELANTO 12000.00 4 8495 \N +341649 2025-09-30 20:43:58.187523+00 2025-09-30 20:43:58.187532+00 f t SUBTOTAL 55000.00 1 8621 \N +341650 2025-09-30 20:43:58.189646+00 2025-09-30 20:43:58.189654+00 f t DESCUENTO 0.00 2 8621 \N +341651 2025-09-30 20:43:58.191121+00 2025-09-30 20:43:58.19115+00 f t TOTAL 55000.00 3 8621 \N +341652 2025-09-30 20:43:58.192657+00 2025-09-30 20:43:58.192665+00 f t ADELANTO 11000.00 4 8621 \N +337025 2025-09-29 10:44:50.671935+00 2025-09-29 10:44:50.671947+00 f t SUBTOTAL 0.00 1 8496 \N +337026 2025-09-29 10:44:50.673557+00 2025-09-29 10:44:50.673566+00 f t DESCUENTO 0.00 2 8496 \N +337027 2025-09-29 10:44:50.674992+00 2025-09-29 10:44:50.675001+00 f t TOTAL 0.00 3 8496 \N +337028 2025-09-29 10:44:50.676223+00 2025-09-29 10:44:50.676231+00 f t ADELANTO 0.00 4 8496 \N +341953 2025-09-30 22:06:09.07734+00 2025-09-30 22:06:09.077353+00 f t SUBTOTAL 0.00 1 8628 \N +341954 2025-09-30 22:06:09.07945+00 2025-09-30 22:06:09.079459+00 f t DESCUENTO 0.00 2 8628 \N +341955 2025-09-30 22:06:09.081406+00 2025-09-30 22:06:09.081417+00 f t TOTAL 0.00 3 8628 \N +341956 2025-09-30 22:06:09.083087+00 2025-09-30 22:06:09.083097+00 f t ADELANTO 0.00 4 8628 \N +337053 2025-09-29 10:49:22.656944+00 2025-09-29 10:49:22.65696+00 f t SUBTOTAL 0.00 1 8497 \N +337054 2025-09-29 10:49:22.659855+00 2025-09-29 10:49:22.659872+00 f t DESCUENTO 0.00 2 8497 \N +337055 2025-09-29 10:49:22.661496+00 2025-09-29 10:49:22.661504+00 f t TOTAL 0.00 3 8497 \N +337056 2025-09-29 10:49:22.662971+00 2025-09-29 10:49:22.662978+00 f t ADELANTO 0.00 4 8497 \N +342017 2025-09-30 22:46:56.484362+00 2025-09-30 22:46:56.484376+00 f t SUBTOTAL 0.00 1 8631 \N +342018 2025-09-30 22:46:56.486265+00 2025-09-30 22:46:56.486275+00 f t DESCUENTO 0.00 2 8631 \N +342019 2025-09-30 22:46:56.487858+00 2025-09-30 22:46:56.487868+00 f t TOTAL 0.00 3 8631 \N +342020 2025-09-30 22:46:56.489481+00 2025-09-30 22:46:56.489491+00 f t ADELANTO 0.00 4 8631 \N +337081 2025-09-29 10:53:47.620029+00 2025-09-29 10:53:47.620042+00 f t SUBTOTAL 54000.00 1 8498 \N +337082 2025-09-29 10:53:47.621699+00 2025-09-29 10:53:47.621706+00 f t DESCUENTO 0.00 2 8498 \N +337083 2025-09-29 10:53:47.622937+00 2025-09-29 10:53:47.622944+00 f t TOTAL 54000.00 3 8498 \N +337084 2025-09-29 10:53:47.624156+00 2025-09-29 10:53:47.624163+00 f t ADELANTO 13500.00 4 8498 \N +337097 2025-09-29 10:59:03.569301+00 2025-09-29 10:59:03.569314+00 f t SUBTOTAL 0.00 1 8499 \N +337098 2025-09-29 10:59:03.57215+00 2025-09-29 10:59:03.572161+00 f t DESCUENTO 0.00 2 8499 \N +337099 2025-09-29 10:59:03.57404+00 2025-09-29 10:59:03.57405+00 f t TOTAL 0.00 3 8499 \N +337100 2025-09-29 10:59:03.575726+00 2025-09-29 10:59:03.575734+00 f t ADELANTO 0.00 4 8499 \N +342501 2025-10-01 00:17:56.661015+00 2025-10-01 00:17:56.661024+00 f t SUBTOTAL 78000.00 1 8640 \N +342502 2025-10-01 00:17:56.664991+00 2025-10-01 00:17:56.665004+00 f t DESCUENTO 0.00 2 8640 \N +342503 2025-10-01 00:17:56.666905+00 2025-10-01 00:17:56.666915+00 f t TOTAL 78000.00 3 8640 \N +342504 2025-10-01 00:17:56.66856+00 2025-10-01 00:17:56.668569+00 f t ADELANTO 21500.00 4 8640 \N +337113 2025-09-29 11:01:04.070193+00 2025-09-29 11:01:04.070206+00 f t SUBTOTAL 0.00 1 8500 \N +337114 2025-09-29 11:01:04.072799+00 2025-09-29 11:01:04.07281+00 f t DESCUENTO 0.00 2 8500 \N +337115 2025-09-29 11:01:04.074964+00 2025-09-29 11:01:04.074975+00 f t TOTAL 0.00 3 8500 \N +337116 2025-09-29 11:01:04.076773+00 2025-09-29 11:01:04.076784+00 f t ADELANTO 0.00 4 8500 \N +342709 2025-10-01 00:53:35.766626+00 2025-10-01 00:53:35.766639+00 f t SUBTOTAL 55000.00 1 8646 \N +342710 2025-10-01 00:53:35.768295+00 2025-10-01 00:53:35.768301+00 f t DESCUENTO 0.00 2 8646 \N +342711 2025-10-01 00:53:35.770294+00 2025-10-01 00:53:35.770303+00 f t TOTAL 55000.00 3 8646 \N +342712 2025-10-01 00:53:35.771476+00 2025-10-01 00:53:35.771483+00 f t ADELANTO 11000.00 4 8646 \N +337153 2025-09-29 11:04:51.220648+00 2025-09-29 11:04:51.220658+00 f t SUBTOTAL 46000.00 1 8501 \N +337154 2025-09-29 11:04:51.222385+00 2025-09-29 11:04:51.222393+00 f t DESCUENTO 0.00 2 8501 \N +337155 2025-09-29 11:04:51.223651+00 2025-09-29 11:04:51.223662+00 f t TOTAL 46000.00 3 8501 \N +337156 2025-09-29 11:04:51.224954+00 2025-09-29 11:04:51.224959+00 f t ADELANTO 11000.00 4 8501 \N +362604 2025-10-07 21:18:50.997536+00 2025-10-07 21:18:50.997542+00 f t ADELANTO 60400.00 4 9105 \N +466546 2025-11-07 21:58:15.456181+00 2025-11-07 21:58:15.456186+00 f t ADELANTO 19000.00 5 11694 \N +379605 2025-10-13 23:05:15.403382+00 2025-10-13 23:05:15.403392+00 f t SUBTOTAL 0.00 1 9575 \N +379606 2025-10-13 23:05:15.404823+00 2025-10-13 23:05:15.40483+00 f t DESCUENTO 0.00 2 9575 \N +379607 2025-10-13 23:05:15.406043+00 2025-10-13 23:05:15.406048+00 f t TOTAL 0.00 3 9575 \N +339337 2025-09-30 00:09:14.58209+00 2025-09-30 00:09:14.582104+00 f t SUBTOTAL 53700.00 1 8564 \N +339338 2025-09-30 00:09:14.584152+00 2025-09-30 00:09:14.584159+00 f t DESCUENTO 0.00 2 8564 \N +339339 2025-09-30 00:09:14.586245+00 2025-09-30 00:09:14.586252+00 f t TOTAL 53700.00 3 8564 \N +339340 2025-09-30 00:09:14.587644+00 2025-09-30 00:09:14.587654+00 f t ADELANTO 13200.00 4 8564 \N +337185 2025-09-29 11:25:08.45774+00 2025-09-29 11:25:08.457753+00 f t SUBTOTAL 80000.00 1 8502 \N +337186 2025-09-29 11:25:08.460456+00 2025-09-29 11:25:08.460466+00 f t DESCUENTO 0.00 2 8502 \N +337187 2025-09-29 11:25:08.462807+00 2025-09-29 11:25:08.462819+00 f t TOTAL 80000.00 3 8502 \N +337188 2025-09-29 11:25:08.464788+00 2025-09-29 11:25:08.464799+00 f t ADELANTO 12000.00 4 8502 \N +339541 2025-09-30 00:53:11.39508+00 2025-09-30 00:53:11.395089+00 f t SUBTOTAL 0.00 1 8569 \N +339542 2025-09-30 00:53:11.397686+00 2025-09-30 00:53:11.397696+00 f t DESCUENTO 0.00 2 8569 \N +339543 2025-09-30 00:53:11.399597+00 2025-09-30 00:53:11.399604+00 f t TOTAL 0.00 3 8569 \N +339544 2025-09-30 00:53:11.401447+00 2025-09-30 00:53:11.401459+00 f t ADELANTO 0.00 4 8569 \N +347181 2025-10-02 20:33:32.267902+00 2025-10-02 20:33:32.267911+00 f t SUBTOTAL 0.00 1 8743 \N +347182 2025-10-02 20:33:32.269326+00 2025-10-02 20:33:32.269332+00 f t DESCUENTO 0.00 2 8743 \N +347183 2025-10-02 20:33:32.270553+00 2025-10-02 20:33:32.270558+00 f t TOTAL 0.00 3 8743 \N +347184 2025-10-02 20:33:32.27168+00 2025-10-02 20:33:32.271685+00 f t ADELANTO 0.00 4 8743 \N +347565 2025-10-02 23:23:44.875788+00 2025-10-02 23:23:44.875796+00 f t SUBTOTAL 0.00 1 8754 \N +347566 2025-10-02 23:23:44.877365+00 2025-10-02 23:23:44.877373+00 f t DESCUENTO 0.00 2 8754 \N +347567 2025-10-02 23:23:44.878904+00 2025-10-02 23:23:44.87891+00 f t TOTAL 0.00 3 8754 \N +347568 2025-10-02 23:23:44.880281+00 2025-10-02 23:23:44.880286+00 f t ADELANTO 0.00 4 8754 \N +340013 2025-09-30 07:37:21.498891+00 2025-09-30 07:37:21.498904+00 f t SUBTOTAL 0.00 1 8578 \N +340014 2025-09-30 07:37:21.501382+00 2025-09-30 07:37:21.501393+00 f t DESCUENTO 0.00 2 8578 \N +340015 2025-09-30 07:37:21.502836+00 2025-09-30 07:37:21.502844+00 f t TOTAL 0.00 3 8578 \N +340016 2025-09-30 07:37:21.504187+00 2025-09-30 07:37:21.504196+00 f t ADELANTO 0.00 4 8578 \N +340273 2025-09-30 10:42:36.655968+00 2025-09-30 10:42:36.65598+00 f t SUBTOTAL 100900.00 1 8583 \N +340274 2025-09-30 10:42:36.658115+00 2025-09-30 10:42:36.658123+00 f t DESCUENTO 0.00 2 8583 \N +340275 2025-09-30 10:42:36.659547+00 2025-09-30 10:42:36.65956+00 f t TOTAL 100900.00 3 8583 \N +340276 2025-09-30 10:42:36.661032+00 2025-09-30 10:42:36.661038+00 f t ADELANTO 60400.00 4 8583 \N +356353 2025-10-06 11:20:20.792038+00 2025-10-06 11:20:20.792048+00 f t SUBTOTAL 0.00 1 8960 \N +356354 2025-10-06 11:20:20.794168+00 2025-10-06 11:20:20.794176+00 f t DESCUENTO 0.00 2 8960 \N +356355 2025-10-06 11:20:20.79552+00 2025-10-06 11:20:20.795526+00 f t TOTAL 0.00 3 8960 \N +356356 2025-10-06 11:20:20.796698+00 2025-10-06 11:20:20.796704+00 f t ADELANTO 0.00 4 8960 \N +356921 2025-10-06 13:35:07.739721+00 2025-10-06 13:35:07.73973+00 f t SUBTOTAL 46000.00 1 8972 \N +337277 2025-09-29 12:37:27.570859+00 2025-09-29 12:37:27.570869+00 f t SUBTOTAL 46000.00 1 8503 \N +337278 2025-09-29 12:37:27.572854+00 2025-09-29 12:37:27.572862+00 f t DESCUENTO 0.00 2 8503 \N +337279 2025-09-29 12:37:27.574204+00 2025-09-29 12:37:27.574211+00 f t TOTAL 46000.00 3 8503 \N +337280 2025-09-29 12:37:27.575498+00 2025-09-29 12:37:27.575504+00 f t ADELANTO 11000.00 4 8503 \N +356922 2025-10-06 13:35:07.741321+00 2025-10-06 13:35:07.741328+00 f t DESCUENTO 0.00 2 8972 \N +356923 2025-10-06 13:35:07.742345+00 2025-10-06 13:35:07.742351+00 f t TOTAL 46000.00 3 8972 \N +356924 2025-10-06 13:35:07.743834+00 2025-10-06 13:35:07.74384+00 f t ADELANTO 11000.00 4 8972 \N +341301 2025-09-30 19:25:33.332326+00 2025-09-30 19:25:33.332339+00 f t SUBTOTAL 0.00 1 8609 \N +341302 2025-09-30 19:25:33.334489+00 2025-09-30 19:25:33.3345+00 f t DESCUENTO 0.00 2 8609 \N +341303 2025-09-30 19:25:33.335923+00 2025-09-30 19:25:33.335931+00 f t TOTAL 0.00 3 8609 \N +341304 2025-09-30 19:25:33.337136+00 2025-09-30 19:25:33.337143+00 f t ADELANTO 0.00 4 8609 \N +341713 2025-09-30 20:47:15.855994+00 2025-09-30 20:47:15.856007+00 f t SUBTOTAL 46000.00 1 8622 \N +341714 2025-09-30 20:47:15.863871+00 2025-09-30 20:47:15.863884+00 f t DESCUENTO 0.00 2 8622 \N +341715 2025-09-30 20:47:15.866391+00 2025-09-30 20:47:15.866403+00 f t TOTAL 46000.00 3 8622 \N +341716 2025-09-30 20:47:15.868457+00 2025-09-30 20:47:15.868469+00 f t ADELANTO 11000.00 4 8622 \N +349973 2025-10-03 18:55:22.577123+00 2025-10-03 18:55:22.577131+00 f t SUBTOTAL 55000.00 1 8817 \N +349974 2025-10-03 18:55:22.578899+00 2025-10-03 18:55:22.578907+00 f t DESCUENTO 0.00 2 8817 \N +349975 2025-10-03 18:55:22.580146+00 2025-10-03 18:55:22.580151+00 f t TOTAL 55000.00 3 8817 \N +349976 2025-10-03 18:55:22.581185+00 2025-10-03 18:55:22.581189+00 f t ADELANTO 11000.00 4 8817 \N +337369 2025-09-29 12:42:32.766142+00 2025-09-29 12:42:32.766151+00 f t SUBTOTAL 46000.00 1 8504 \N +337370 2025-09-29 12:42:32.767695+00 2025-09-29 12:42:32.767702+00 f t DESCUENTO 0.00 2 8504 \N +337371 2025-09-29 12:42:32.768836+00 2025-09-29 12:42:32.768842+00 f t TOTAL 46000.00 3 8504 \N +337372 2025-09-29 12:42:32.769996+00 2025-09-29 12:42:32.770003+00 f t ADELANTO 11000.00 4 8504 \N +351201 2025-10-04 01:52:05.400583+00 2025-10-04 01:52:05.400593+00 f t SUBTOTAL 54000.00 1 8842 \N +351202 2025-10-04 01:52:05.402687+00 2025-10-04 01:52:05.402693+00 f t DESCUENTO 0.00 2 8842 \N +351203 2025-10-04 01:52:05.404106+00 2025-10-04 01:52:05.404115+00 f t TOTAL 54000.00 3 8842 \N +351204 2025-10-04 01:52:05.405559+00 2025-10-04 01:52:05.405567+00 f t ADELANTO 13500.00 4 8842 \N +337401 2025-09-29 12:46:46.683636+00 2025-09-29 12:46:46.683648+00 f t SUBTOTAL 55000.00 1 8505 \N +337402 2025-09-29 12:46:46.685294+00 2025-09-29 12:46:46.685301+00 f t DESCUENTO 0.00 2 8505 \N +337403 2025-09-29 12:46:46.686457+00 2025-09-29 12:46:46.686463+00 f t TOTAL 55000.00 3 8505 \N +337404 2025-09-29 12:46:46.687441+00 2025-09-29 12:46:46.687447+00 f t ADELANTO 11000.00 4 8505 \N +337413 2025-09-29 12:51:28.504514+00 2025-09-29 12:51:28.504522+00 f t SUBTOTAL 60000.00 1 8506 \N +337414 2025-09-29 12:51:28.50619+00 2025-09-29 12:51:28.506196+00 f t DESCUENTO 0.00 2 8506 \N +337415 2025-09-29 12:51:28.507459+00 2025-09-29 12:51:28.507465+00 f t TOTAL 60000.00 3 8506 \N +337416 2025-09-29 12:51:28.508622+00 2025-09-29 12:51:28.508628+00 f t ADELANTO 60000.00 4 8506 \N +337429 2025-09-29 12:52:27.6183+00 2025-09-29 12:52:27.618311+00 f t SUBTOTAL 0.00 1 8507 \N +337430 2025-09-29 12:52:27.620665+00 2025-09-29 12:52:27.620675+00 f t DESCUENTO 0.00 2 8507 \N +337431 2025-09-29 12:52:27.622271+00 2025-09-29 12:52:27.62228+00 f t TOTAL 0.00 3 8507 \N +337432 2025-09-29 12:52:27.623849+00 2025-09-29 12:52:27.62386+00 f t ADELANTO 0.00 4 8507 \N +352089 2025-10-04 18:58:46.198625+00 2025-10-04 18:58:46.198634+00 f t SUBTOTAL 46000.00 1 8866 \N +352090 2025-10-04 18:58:46.200383+00 2025-10-04 18:58:46.20039+00 f t DESCUENTO 0.00 2 8866 \N +352091 2025-10-04 18:58:46.201471+00 2025-10-04 18:58:46.201478+00 f t TOTAL 46000.00 3 8866 \N +337469 2025-09-29 12:53:24.057269+00 2025-09-29 12:53:24.057278+00 f t SUBTOTAL 46000.00 1 8508 \N +337470 2025-09-29 12:53:24.059429+00 2025-09-29 12:53:24.059438+00 f t DESCUENTO 0.00 2 8508 \N +337471 2025-09-29 12:53:24.061317+00 2025-09-29 12:53:24.061325+00 f t TOTAL 46000.00 3 8508 \N +337472 2025-09-29 12:53:24.062778+00 2025-09-29 12:53:24.062787+00 f t ADELANTO 11000.00 4 8508 \N +339345 2025-09-30 00:28:25.47486+00 2025-09-30 00:28:25.474873+00 f t SUBTOTAL 0.00 1 8565 \N +339346 2025-09-30 00:28:25.476494+00 2025-09-30 00:28:25.476507+00 f t DESCUENTO 0.00 2 8565 \N +339347 2025-09-30 00:28:25.477872+00 2025-09-30 00:28:25.477879+00 f t TOTAL 0.00 3 8565 \N +339348 2025-09-30 00:28:25.478989+00 2025-09-30 00:28:25.478995+00 f t ADELANTO 0.00 4 8565 \N +339445 2025-09-30 00:31:42.134493+00 2025-09-30 00:31:42.134505+00 f t SUBTOTAL 46000.00 1 8566 \N +339446 2025-09-30 00:31:42.137324+00 2025-09-30 00:31:42.137334+00 f t DESCUENTO 0.00 2 8566 \N +339447 2025-09-30 00:31:42.139017+00 2025-09-30 00:31:42.139027+00 f t TOTAL 46000.00 3 8566 \N +339448 2025-09-30 00:31:42.141099+00 2025-09-30 00:31:42.141111+00 f t ADELANTO 11000.00 4 8566 \N +339549 2025-09-30 01:05:01.482908+00 2025-09-30 01:05:01.482923+00 f t SUBTOTAL 0.00 1 8570 \N +339550 2025-09-30 01:05:01.488891+00 2025-09-30 01:05:01.488906+00 f t DESCUENTO 0.00 2 8570 \N +339551 2025-09-30 01:05:01.492307+00 2025-09-30 01:05:01.492322+00 f t TOTAL 0.00 3 8570 \N +339552 2025-09-30 01:05:01.495529+00 2025-09-30 01:05:01.495544+00 f t ADELANTO 0.00 4 8570 \N +339649 2025-09-30 02:59:27.848217+00 2025-09-30 02:59:27.848225+00 f t SUBTOTAL 77900.00 1 8573 \N +339650 2025-09-30 02:59:27.850087+00 2025-09-30 02:59:27.850095+00 f t DESCUENTO 0.00 2 8573 \N +339651 2025-09-30 02:59:27.85158+00 2025-09-30 02:59:27.851587+00 f t TOTAL 77900.00 3 8573 \N +339652 2025-09-30 02:59:27.852995+00 2025-09-30 02:59:27.853001+00 f t ADELANTO 37400.00 4 8573 \N +339929 2025-09-30 07:17:39.504557+00 2025-09-30 07:17:39.504571+00 f t SUBTOTAL 76000.00 1 8577 \N +339930 2025-09-30 07:17:39.506616+00 2025-09-30 07:17:39.506628+00 f t DESCUENTO 0.00 2 8577 \N +339931 2025-09-30 07:17:39.508325+00 2025-09-30 07:17:39.508334+00 f t TOTAL 76000.00 3 8577 \N +339932 2025-09-30 07:17:39.509895+00 2025-09-30 07:17:39.509904+00 f t ADELANTO 11000.00 4 8577 \N +337513 2025-09-29 13:00:29.695717+00 2025-09-29 13:00:29.695733+00 f t SUBTOTAL 46000.00 1 8509 \N +337514 2025-09-29 13:00:29.69867+00 2025-09-29 13:00:29.698683+00 f t DESCUENTO 0.00 2 8509 \N +337515 2025-09-29 13:00:29.701686+00 2025-09-29 13:00:29.7017+00 f t TOTAL 46000.00 3 8509 \N +337516 2025-09-29 13:00:29.704825+00 2025-09-29 13:00:29.704838+00 f t ADELANTO 11000.00 4 8509 \N +337525 2025-09-29 13:02:35.168744+00 2025-09-29 13:02:35.168753+00 f t SUBTOTAL 55000.00 1 8510 \N +337526 2025-09-29 13:02:35.170642+00 2025-09-29 13:02:35.17065+00 f t DESCUENTO 0.00 2 8510 \N +337527 2025-09-29 13:02:35.172089+00 2025-09-29 13:02:35.172097+00 f t TOTAL 55000.00 3 8510 \N +337528 2025-09-29 13:02:35.173469+00 2025-09-29 13:02:35.173478+00 f t ADELANTO 11000.00 4 8510 \N +356137 2025-10-06 10:56:58.566404+00 2025-10-06 10:56:58.566413+00 f t SUBTOTAL 46000.00 1 8958 \N +356138 2025-10-06 10:56:58.5684+00 2025-10-06 10:56:58.568408+00 f t DESCUENTO 0.00 2 8958 \N +356139 2025-10-06 10:56:58.569726+00 2025-10-06 10:56:58.569734+00 f t TOTAL 46000.00 3 8958 \N +356140 2025-10-06 10:56:58.570816+00 2025-10-06 10:56:58.570824+00 f t ADELANTO 11000.00 4 8958 \N +340997 2025-09-30 16:45:11.504644+00 2025-09-30 16:45:11.504657+00 f t SUBTOTAL 107000.00 1 8599 \N +340998 2025-09-30 16:45:11.510441+00 2025-09-30 16:45:11.510456+00 f t DESCUENTO 0.00 2 8599 \N +340999 2025-09-30 16:45:11.512966+00 2025-09-30 16:45:11.512976+00 f t TOTAL 107000.00 3 8599 \N +341000 2025-09-30 16:45:11.515311+00 2025-09-30 16:45:11.515321+00 f t ADELANTO 12000.00 4 8599 \N +337577 2025-09-29 13:11:26.268066+00 2025-09-29 13:11:26.268077+00 f t SUBTOTAL 46000.00 1 8511 \N +337578 2025-09-29 13:11:26.270081+00 2025-09-29 13:11:26.270092+00 f t DESCUENTO 0.00 2 8511 \N +337579 2025-09-29 13:11:26.271755+00 2025-09-29 13:11:26.271764+00 f t TOTAL 46000.00 3 8511 \N +337580 2025-09-29 13:11:26.273119+00 2025-09-29 13:11:26.273128+00 f t ADELANTO 11000.00 4 8511 \N +341465 2025-09-30 20:02:19.502792+00 2025-09-30 20:02:19.502801+00 f t SUBTOTAL 76000.00 1 8615 \N +341466 2025-09-30 20:02:19.508917+00 2025-09-30 20:02:19.508927+00 f t DESCUENTO 0.00 2 8615 \N +341467 2025-09-30 20:02:19.510541+00 2025-09-30 20:02:19.510548+00 f t TOTAL 76000.00 3 8615 \N +341468 2025-09-30 20:02:19.511877+00 2025-09-30 20:02:19.511883+00 f t ADELANTO 11000.00 4 8615 \N +337641 2025-09-29 13:21:52.894933+00 2025-09-29 13:21:52.894943+00 f t SUBTOTAL 75000.00 1 8512 \N +337642 2025-09-29 13:21:52.89668+00 2025-09-29 13:21:52.896687+00 f t DESCUENTO 0.00 2 8512 \N +337643 2025-09-29 13:21:52.898034+00 2025-09-29 13:21:52.898039+00 f t TOTAL 75000.00 3 8512 \N +337644 2025-09-29 13:21:52.899207+00 2025-09-29 13:21:52.899212+00 f t ADELANTO 15000.00 4 8512 \N +342293 2025-09-30 23:57:16.23932+00 2025-09-30 23:57:16.239334+00 f t SUBTOTAL 39000.00 1 8636 \N +342294 2025-09-30 23:57:16.242517+00 2025-09-30 23:57:16.242524+00 f t DESCUENTO 0.00 2 8636 \N +337669 2025-09-29 13:24:25.135415+00 2025-09-29 13:24:25.135425+00 f t SUBTOTAL 46000.00 1 8514 \N +337670 2025-09-29 13:24:25.137327+00 2025-09-29 13:24:25.137337+00 f t DESCUENTO 0.00 2 8514 \N +337671 2025-09-29 13:24:25.13898+00 2025-09-29 13:24:25.138988+00 f t TOTAL 46000.00 3 8514 \N +337672 2025-09-29 13:24:25.141443+00 2025-09-29 13:24:25.141451+00 f t ADELANTO 11000.00 4 8514 \N +342295 2025-09-30 23:57:16.243802+00 2025-09-30 23:57:16.243809+00 f t TOTAL 39000.00 3 8636 \N +342296 2025-09-30 23:57:16.244974+00 2025-09-30 23:57:16.244981+00 f t ADELANTO 39000.00 4 8636 \N +337689 2025-09-29 13:25:54.172648+00 2025-09-29 13:25:54.172656+00 f t SUBTOTAL 87400.00 1 8513 \N +337690 2025-09-29 13:25:54.174936+00 2025-09-29 13:25:54.174944+00 f t DESCUENTO 0.00 2 8513 \N +337691 2025-09-29 13:25:54.176359+00 2025-09-29 13:25:54.176365+00 f t TOTAL 87400.00 3 8513 \N +337692 2025-09-29 13:25:54.177595+00 2025-09-29 13:25:54.1776+00 f t ADELANTO 46900.00 4 8513 \N +337697 2025-09-29 13:51:32.71958+00 2025-09-29 13:51:32.719593+00 f t SUBTOTAL 0.00 1 8515 \N +337698 2025-09-29 13:51:32.721691+00 2025-09-29 13:51:32.721706+00 f t DESCUENTO 0.00 2 8515 \N +337699 2025-09-29 13:51:32.723524+00 2025-09-29 13:51:32.723535+00 f t TOTAL 0.00 3 8515 \N +337700 2025-09-29 13:51:32.725156+00 2025-09-29 13:51:32.725165+00 f t ADELANTO 0.00 4 8515 \N +337705 2025-09-29 13:52:30.895165+00 2025-09-29 13:52:30.895175+00 f t SUBTOTAL 0.00 1 8516 \N +337706 2025-09-29 13:52:30.896856+00 2025-09-29 13:52:30.896865+00 f t DESCUENTO 0.00 2 8516 \N +337707 2025-09-29 13:52:30.898365+00 2025-09-29 13:52:30.898372+00 f t TOTAL 0.00 3 8516 \N +337708 2025-09-29 13:52:30.899761+00 2025-09-29 13:52:30.899769+00 f t ADELANTO 0.00 4 8516 \N +337713 2025-09-29 13:53:46.517916+00 2025-09-29 13:53:46.517926+00 f t SUBTOTAL 0.00 1 8517 \N +337714 2025-09-29 13:53:46.519515+00 2025-09-29 13:53:46.519522+00 f t DESCUENTO 0.00 2 8517 \N +337715 2025-09-29 13:53:46.52077+00 2025-09-29 13:53:46.520779+00 f t TOTAL 0.00 3 8517 \N +337716 2025-09-29 13:53:46.521859+00 2025-09-29 13:53:46.521865+00 f t ADELANTO 0.00 4 8517 \N +342813 2025-10-01 01:28:14.454572+00 2025-10-01 01:28:14.454582+00 f t SUBTOTAL 55000.00 1 8648 \N +342814 2025-10-01 01:28:14.456902+00 2025-10-01 01:28:14.456912+00 f t DESCUENTO 0.00 2 8648 \N +342815 2025-10-01 01:28:14.458504+00 2025-10-01 01:28:14.458512+00 f t TOTAL 55000.00 3 8648 \N +342816 2025-10-01 01:28:14.460207+00 2025-10-01 01:28:14.460213+00 f t ADELANTO 11000.00 4 8648 \N +379608 2025-10-13 23:05:15.407118+00 2025-10-13 23:05:15.407123+00 f t ADELANTO 0.00 4 9575 \N +362609 2025-10-07 21:19:32.608482+00 2025-10-07 21:19:32.608491+00 f t SUBTOTAL 0.00 1 9106 \N +362610 2025-10-07 21:19:32.609822+00 2025-10-07 21:19:32.609829+00 f t DESCUENTO 0.00 2 9106 \N +362611 2025-10-07 21:19:32.611075+00 2025-10-07 21:19:32.611081+00 f t TOTAL 0.00 3 9106 \N +347449 2025-10-02 22:40:59.221124+00 2025-10-02 22:40:59.221134+00 f t SUBTOTAL 98400.00 1 8750 \N +347450 2025-10-02 22:40:59.223856+00 2025-10-02 22:40:59.223865+00 f t DESCUENTO 0.00 2 8750 \N +347451 2025-10-02 22:40:59.225654+00 2025-10-02 22:40:59.225664+00 f t TOTAL 98400.00 3 8750 \N +347452 2025-10-02 22:40:59.22717+00 2025-10-02 22:40:59.22718+00 f t ADELANTO 57900.00 4 8750 \N +371774 2025-10-11 01:48:29.114043+00 2025-10-11 01:48:29.114049+00 f t DESCUENTO 0.00 2 9366 \N +371775 2025-10-11 01:48:29.115357+00 2025-10-11 01:48:29.115363+00 f t TOTAL 0.00 3 9366 \N +371776 2025-10-11 01:48:29.116257+00 2025-10-11 01:48:29.116263+00 f t ADELANTO 0.00 4 9366 \N +339657 2025-09-30 03:46:38.227258+00 2025-09-30 03:46:38.22727+00 f t SUBTOTAL 0.00 1 8574 \N +339658 2025-09-30 03:46:38.228892+00 2025-09-30 03:46:38.228902+00 f t DESCUENTO 0.00 2 8574 \N +339659 2025-09-30 03:46:38.230366+00 2025-09-30 03:46:38.230374+00 f t TOTAL 0.00 3 8574 \N +339660 2025-09-30 03:46:38.23182+00 2025-09-30 03:46:38.231827+00 f t ADELANTO 0.00 4 8574 \N +348017 2025-10-03 02:35:04.10688+00 2025-10-03 02:35:04.106894+00 f t SUBTOTAL 46000.00 1 8769 \N +348018 2025-10-03 02:35:04.110606+00 2025-10-03 02:35:04.110619+00 f t DESCUENTO 0.00 2 8769 \N +348019 2025-10-03 02:35:04.112995+00 2025-10-03 02:35:04.113007+00 f t TOTAL 46000.00 3 8769 \N +348020 2025-10-03 02:35:04.115358+00 2025-10-03 02:35:04.115367+00 f t ADELANTO 11000.00 4 8769 \N +340449 2025-09-30 11:54:31.785718+00 2025-09-30 11:54:31.785727+00 f t SUBTOTAL 0.00 1 8586 \N +340450 2025-09-30 11:54:31.787782+00 2025-09-30 11:54:31.78779+00 f t DESCUENTO 0.00 2 8586 \N +340451 2025-09-30 11:54:31.789291+00 2025-09-30 11:54:31.789299+00 f t TOTAL 0.00 3 8586 \N +340452 2025-09-30 11:54:31.79093+00 2025-09-30 11:54:31.790938+00 f t ADELANTO 0.00 4 8586 \N +348569 2025-10-03 11:49:03.994987+00 2025-10-03 11:49:03.994996+00 f t SUBTOTAL 78000.00 1 8781 \N +348570 2025-10-03 11:49:03.996627+00 2025-10-03 11:49:03.996634+00 f t DESCUENTO 0.00 2 8781 \N +348571 2025-10-03 11:49:03.997856+00 2025-10-03 11:49:03.997862+00 f t TOTAL 78000.00 3 8781 \N +348572 2025-10-03 11:49:03.9989+00 2025-10-03 11:49:03.998906+00 f t ADELANTO 21500.00 4 8781 \N +340769 2025-09-30 15:40:16.290503+00 2025-09-30 15:40:16.290517+00 f t SUBTOTAL 0.00 1 8595 \N +340770 2025-09-30 15:40:16.293736+00 2025-09-30 15:40:16.293757+00 f t DESCUENTO 0.00 2 8595 \N +340771 2025-09-30 15:40:16.296016+00 2025-09-30 15:40:16.29603+00 f t TOTAL 0.00 3 8595 \N +340772 2025-09-30 15:40:16.298198+00 2025-09-30 15:40:16.29821+00 f t ADELANTO 0.00 4 8595 \N +356929 2025-10-06 13:58:14.751599+00 2025-10-06 13:58:14.751609+00 f t SUBTOTAL 0.00 1 8973 \N +356930 2025-10-06 13:58:14.75319+00 2025-10-06 13:58:14.7532+00 f t DESCUENTO 0.00 2 8973 \N +356931 2025-10-06 13:58:14.754407+00 2025-10-06 13:58:14.754413+00 f t TOTAL 0.00 3 8973 \N +356932 2025-10-06 13:58:14.755619+00 2025-10-06 13:58:14.755624+00 f t ADELANTO 0.00 4 8973 \N +357053 2025-10-06 14:34:58.655553+00 2025-10-06 14:34:58.655561+00 f t SUBTOTAL 70000.00 1 8977 \N +357054 2025-10-06 14:34:58.657589+00 2025-10-06 14:34:58.657599+00 f t DESCUENTO 0.00 2 8977 \N +357055 2025-10-06 14:34:58.65889+00 2025-10-06 14:34:58.658896+00 f t TOTAL 70000.00 3 8977 \N +357056 2025-10-06 14:34:58.660166+00 2025-10-06 14:34:58.660171+00 f t ADELANTO 19000.00 4 8977 \N +341313 2025-09-30 19:39:40.793707+00 2025-09-30 19:39:40.793718+00 f t SUBTOTAL 0.00 1 8610 \N +341314 2025-09-30 19:39:40.796253+00 2025-09-30 19:39:40.796262+00 f t DESCUENTO 0.00 2 8610 \N +341315 2025-09-30 19:39:40.797709+00 2025-09-30 19:39:40.797717+00 f t TOTAL 0.00 3 8610 \N +341316 2025-09-30 19:39:40.798892+00 2025-09-30 19:39:40.798898+00 f t ADELANTO 0.00 4 8610 \N +349889 2025-10-03 18:33:08.674761+00 2025-10-03 18:33:08.674771+00 f t SUBTOTAL 0.00 1 8815 \N +349890 2025-10-03 18:33:08.676887+00 2025-10-03 18:33:08.676895+00 f t DESCUENTO 0.00 2 8815 \N +349891 2025-10-03 18:33:08.678296+00 2025-10-03 18:33:08.678304+00 f t TOTAL 0.00 3 8815 \N +349892 2025-10-03 18:33:08.67975+00 2025-10-03 18:33:08.679761+00 f t ADELANTO 0.00 4 8815 \N +337921 2025-09-29 14:07:44.355941+00 2025-09-29 14:07:44.355951+00 f t SUBTOTAL 0.00 1 8518 \N +337922 2025-09-29 14:07:44.358168+00 2025-09-29 14:07:44.358175+00 f t DESCUENTO 0.00 2 8518 \N +337923 2025-09-29 14:07:44.359256+00 2025-09-29 14:07:44.359262+00 f t TOTAL 0.00 3 8518 \N +337924 2025-09-29 14:07:44.360273+00 2025-09-29 14:07:44.360279+00 f t ADELANTO 0.00 4 8518 \N +337929 2025-09-29 14:08:11.271128+00 2025-09-29 14:08:11.271169+00 f t SUBTOTAL 0.00 1 8519 \N +337930 2025-09-29 14:08:11.273478+00 2025-09-29 14:08:11.273488+00 f t DESCUENTO 0.00 2 8519 \N +337931 2025-09-29 14:08:11.274881+00 2025-09-29 14:08:11.274889+00 f t TOTAL 0.00 3 8519 \N +337932 2025-09-29 14:08:11.276084+00 2025-09-29 14:08:11.27609+00 f t ADELANTO 0.00 4 8519 \N +342349 2025-10-01 00:04:25.064382+00 2025-10-01 00:04:25.064396+00 f t SUBTOTAL 0.00 1 8637 \N +342350 2025-10-01 00:04:25.066945+00 2025-10-01 00:04:25.066953+00 f t DESCUENTO 0.00 2 8637 \N +342351 2025-10-01 00:04:25.068648+00 2025-10-01 00:04:25.068657+00 f t TOTAL 0.00 3 8637 \N +342352 2025-10-01 00:04:25.07025+00 2025-10-01 00:04:25.070259+00 f t ADELANTO 0.00 4 8637 \N +342769 2025-10-01 01:01:40.606991+00 2025-10-01 01:01:40.607004+00 f t SUBTOTAL 46000.00 1 8647 \N +342770 2025-10-01 01:01:40.609651+00 2025-10-01 01:01:40.609663+00 f t DESCUENTO 0.00 2 8647 \N +342771 2025-10-01 01:01:40.611503+00 2025-10-01 01:01:40.611514+00 f t TOTAL 46000.00 3 8647 \N +342772 2025-10-01 01:01:40.613216+00 2025-10-01 01:01:40.613225+00 f t ADELANTO 11000.00 4 8647 \N +351657 2025-10-04 15:37:25.966021+00 2025-10-04 15:37:25.966029+00 f t SUBTOTAL 55000.00 1 8853 \N +351658 2025-10-04 15:37:25.967594+00 2025-10-04 15:37:25.9676+00 f t DESCUENTO 0.00 2 8853 \N +351659 2025-10-04 15:37:25.968662+00 2025-10-04 15:37:25.968668+00 f t TOTAL 55000.00 3 8853 \N +338005 2025-09-29 14:27:48.094058+00 2025-09-29 14:27:48.094068+00 f t SUBTOTAL 234000.00 1 8520 \N +338006 2025-09-29 14:27:48.096289+00 2025-09-29 14:27:48.096297+00 f t DESCUENTO 0.00 2 8520 \N +338007 2025-09-29 14:27:48.097935+00 2025-09-29 14:27:48.097943+00 f t TOTAL 234000.00 3 8520 \N +338008 2025-09-29 14:27:48.099548+00 2025-09-29 14:27:48.099557+00 f t ADELANTO 64500.00 4 8520 \N +351660 2025-10-04 15:37:25.969756+00 2025-10-04 15:37:25.969761+00 f t ADELANTO 11000.00 4 8853 \N +338013 2025-09-29 14:35:53.867317+00 2025-09-29 14:35:53.867326+00 f t SUBTOTAL 55000.00 1 8484 \N +338014 2025-09-29 14:35:53.869231+00 2025-09-29 14:35:53.869239+00 f t DESCUENTO 0.00 2 8484 \N +338015 2025-09-29 14:35:53.870782+00 2025-09-29 14:35:53.87079+00 f t TOTAL 55000.00 3 8484 \N +338016 2025-09-29 14:35:53.87247+00 2025-09-29 14:35:53.872476+00 f t ADELANTO 11000.00 4 8484 \N +343013 2025-10-01 02:36:10.862861+00 2025-10-01 02:36:10.862874+00 f t SUBTOTAL 60000.00 1 8651 \N +343014 2025-10-01 02:36:10.865046+00 2025-10-01 02:36:10.865054+00 f t DESCUENTO 0.00 2 8651 \N +343015 2025-10-01 02:36:10.866583+00 2025-10-01 02:36:10.866589+00 f t TOTAL 60000.00 3 8651 \N +343016 2025-10-01 02:36:10.86944+00 2025-10-01 02:36:10.869447+00 f t ADELANTO 60000.00 4 8651 \N +352092 2025-10-04 18:58:46.202414+00 2025-10-04 18:58:46.202419+00 f t ADELANTO 11000.00 4 8866 \N +339025 2025-09-29 20:36:13.610094+00 2025-09-29 20:36:13.610103+00 f t SUBTOTAL 55000.00 1 8547 \N +339026 2025-09-29 20:36:13.612008+00 2025-09-29 20:36:13.612017+00 f t DESCUENTO 0.00 2 8547 \N +339027 2025-09-29 20:36:13.613538+00 2025-09-29 20:36:13.613545+00 f t TOTAL 55000.00 3 8547 \N +339028 2025-09-29 20:36:13.614808+00 2025-09-29 20:36:13.614816+00 f t ADELANTO 11000.00 4 8547 \N +347193 2025-10-02 20:38:03.434171+00 2025-10-02 20:38:03.434182+00 f t SUBTOTAL 46000.00 1 8744 \N +347194 2025-10-02 20:38:03.436031+00 2025-10-02 20:38:03.436038+00 f t DESCUENTO 0.00 2 8744 \N +347195 2025-10-02 20:38:03.437195+00 2025-10-02 20:38:03.437201+00 f t TOTAL 46000.00 3 8744 \N +347196 2025-10-02 20:38:03.438294+00 2025-10-02 20:38:03.438301+00 f t ADELANTO 11000.00 4 8744 \N +338069 2025-09-29 14:39:57.835916+00 2025-09-29 14:39:57.83593+00 f t SUBTOTAL 30000.00 1 8521 \N +338070 2025-09-29 14:39:57.838306+00 2025-09-29 14:39:57.838315+00 f t DESCUENTO 0.00 2 8521 \N +338071 2025-09-29 14:39:57.840059+00 2025-09-29 14:39:57.840067+00 f t TOTAL 30000.00 3 8521 \N +338072 2025-09-29 14:39:57.841924+00 2025-09-29 14:39:57.841931+00 f t ADELANTO 30000.00 4 8521 \N +347457 2025-10-02 22:44:18.903153+00 2025-10-02 22:44:18.903161+00 f t SUBTOTAL 0.00 1 8751 \N +347458 2025-10-02 22:44:18.904409+00 2025-10-02 22:44:18.904415+00 f t DESCUENTO 0.00 2 8751 \N +347459 2025-10-02 22:44:18.905382+00 2025-10-02 22:44:18.905387+00 f t TOTAL 0.00 3 8751 \N +347460 2025-10-02 22:44:18.90622+00 2025-10-02 22:44:18.906225+00 f t ADELANTO 0.00 4 8751 \N +355665 2025-10-06 03:22:35.159359+00 2025-10-06 03:22:35.159368+00 f t SUBTOTAL 30000.00 1 8949 \N +355666 2025-10-06 03:22:35.161104+00 2025-10-06 03:22:35.161111+00 f t DESCUENTO 0.00 2 8949 \N +355667 2025-10-06 03:22:35.162308+00 2025-10-06 03:22:35.162314+00 f t TOTAL 30000.00 3 8949 \N +355668 2025-10-06 03:22:35.163425+00 2025-10-06 03:22:35.163431+00 f t ADELANTO 30000.00 4 8949 \N +348305 2025-10-03 06:01:38.613582+00 2025-10-03 06:01:38.613594+00 f t SUBTOTAL 70000.00 1 8777 \N +348306 2025-10-03 06:01:38.615549+00 2025-10-03 06:01:38.615559+00 f t DESCUENTO 0.00 2 8777 \N +348307 2025-10-03 06:01:38.617014+00 2025-10-03 06:01:38.617022+00 f t TOTAL 70000.00 3 8777 \N +348308 2025-10-03 06:01:38.61828+00 2025-10-03 06:01:38.618288+00 f t ADELANTO 19000.00 4 8777 \N +341009 2025-09-30 17:08:44.639403+00 2025-09-30 17:08:44.639415+00 f t SUBTOTAL 107000.00 1 8602 \N +341010 2025-09-30 17:08:44.657807+00 2025-09-30 17:08:44.657815+00 f t DESCUENTO 0.00 2 8602 \N +341011 2025-09-30 17:08:44.659887+00 2025-09-30 17:08:44.659896+00 f t TOTAL 107000.00 3 8602 \N +341012 2025-09-30 17:08:44.661949+00 2025-09-30 17:08:44.661957+00 f t ADELANTO 12000.00 4 8602 \N +338157 2025-09-29 14:45:47.524551+00 2025-09-29 14:45:47.52456+00 f t SUBTOTAL 55000.00 1 8522 \N +338158 2025-09-29 14:45:47.526389+00 2025-09-29 14:45:47.526397+00 f t DESCUENTO 0.00 2 8522 \N +338159 2025-09-29 14:45:47.527684+00 2025-09-29 14:45:47.527691+00 f t TOTAL 55000.00 3 8522 \N +338160 2025-09-29 14:45:47.528821+00 2025-09-29 14:45:47.528827+00 f t ADELANTO 11000.00 4 8522 \N +349253 2025-10-03 14:46:05.537869+00 2025-10-03 14:46:05.537879+00 f t SUBTOTAL 80000.00 1 8802 \N +349254 2025-10-03 14:46:05.539797+00 2025-10-03 14:46:05.539804+00 f t DESCUENTO 0.00 2 8802 \N +349255 2025-10-03 14:46:05.541153+00 2025-10-03 14:46:05.541159+00 f t TOTAL 80000.00 3 8802 \N +349256 2025-10-03 14:46:05.542411+00 2025-10-03 14:46:05.542417+00 f t ADELANTO 12000.00 4 8802 \N +349713 2025-10-03 17:45:49.271086+00 2025-10-03 17:45:49.271097+00 f t SUBTOTAL 55000.00 1 8811 \N +349714 2025-10-03 17:45:49.273222+00 2025-10-03 17:45:49.273232+00 f t DESCUENTO 0.00 2 8811 \N +349715 2025-10-03 17:45:49.274759+00 2025-10-03 17:45:49.274765+00 f t TOTAL 55000.00 3 8811 \N +349716 2025-10-03 17:45:49.276067+00 2025-10-03 17:45:49.276075+00 f t ADELANTO 11000.00 4 8811 \N +349985 2025-10-03 18:59:30.412076+00 2025-10-03 18:59:30.412084+00 f t SUBTOTAL 107000.00 1 8818 \N +349986 2025-10-03 18:59:30.413884+00 2025-10-03 18:59:30.413891+00 f t DESCUENTO 0.00 2 8818 \N +349987 2025-10-03 18:59:30.415118+00 2025-10-03 18:59:30.415125+00 f t TOTAL 107000.00 3 8818 \N +349988 2025-10-03 18:59:30.416641+00 2025-10-03 18:59:30.41665+00 f t ADELANTO 12000.00 4 8818 \N +341909 2025-09-30 21:04:51.052413+00 2025-09-30 21:04:51.052422+00 f t SUBTOTAL 55000.00 1 8626 \N +341910 2025-09-30 21:04:51.054+00 2025-09-30 21:04:51.054006+00 f t DESCUENTO 0.00 2 8626 \N +341911 2025-09-30 21:04:51.055203+00 2025-09-30 21:04:51.055208+00 f t TOTAL 55000.00 3 8626 \N +341912 2025-09-30 21:04:51.056161+00 2025-09-30 21:04:51.056165+00 f t ADELANTO 11000.00 4 8626 \N +338209 2025-09-29 14:50:32.283452+00 2025-09-29 14:50:32.283461+00 f t SUBTOTAL 46000.00 1 8523 \N +338210 2025-09-29 14:50:32.285002+00 2025-09-29 14:50:32.285009+00 f t DESCUENTO 0.00 2 8523 \N +338211 2025-09-29 14:50:32.286267+00 2025-09-29 14:50:32.286273+00 f t TOTAL 46000.00 3 8523 \N +338212 2025-09-29 14:50:32.287376+00 2025-09-29 14:50:32.287381+00 f t ADELANTO 11000.00 4 8523 \N +342241 2025-09-30 23:36:38.907544+00 2025-09-30 23:36:38.907553+00 f t SUBTOTAL 162000.00 1 8634 \N +342242 2025-09-30 23:36:38.909078+00 2025-09-30 23:36:38.909085+00 f t DESCUENTO 0.00 2 8634 \N +342243 2025-09-30 23:36:38.910239+00 2025-09-30 23:36:38.910245+00 f t TOTAL 162000.00 3 8634 \N +342244 2025-09-30 23:36:38.911422+00 2025-09-30 23:36:38.911428+00 f t ADELANTO 40500.00 4 8634 \N +342465 2025-10-01 00:10:16.520346+00 2025-10-01 00:10:16.520356+00 f t SUBTOTAL 46000.00 1 8639 \N +342466 2025-10-01 00:10:16.52288+00 2025-10-01 00:10:16.52289+00 f t DESCUENTO 0.00 2 8639 \N +342467 2025-10-01 00:10:16.52493+00 2025-10-01 00:10:16.524939+00 f t TOTAL 46000.00 3 8639 \N +342468 2025-10-01 00:10:16.526693+00 2025-10-01 00:10:16.526701+00 f t ADELANTO 11000.00 4 8639 \N +338253 2025-09-29 15:11:24.257229+00 2025-09-29 15:11:24.257239+00 f t SUBTOTAL 0.00 1 8525 \N +338254 2025-09-29 15:11:24.260897+00 2025-09-29 15:11:24.260906+00 f t DESCUENTO 0.00 2 8525 \N +338255 2025-09-29 15:11:24.263093+00 2025-09-29 15:11:24.263106+00 f t TOTAL 0.00 3 8525 \N +338256 2025-09-29 15:11:24.26454+00 2025-09-29 15:11:24.264546+00 f t ADELANTO 0.00 4 8525 \N +350853 2025-10-03 23:57:52.63355+00 2025-10-03 23:57:52.633562+00 f t SUBTOTAL 55000.00 1 8833 \N +350854 2025-10-03 23:57:52.635559+00 2025-10-03 23:57:52.63557+00 f t DESCUENTO 0.00 2 8833 \N +350855 2025-10-03 23:57:52.636826+00 2025-10-03 23:57:52.636835+00 f t TOTAL 55000.00 3 8833 \N +350856 2025-10-03 23:57:52.638196+00 2025-10-03 23:57:52.638205+00 f t ADELANTO 11000.00 4 8833 \N +351393 2025-10-04 13:57:33.657934+00 2025-10-04 13:57:33.657943+00 f t SUBTOTAL 46000.00 1 8847 \N +351394 2025-10-04 13:57:33.660319+00 2025-10-04 13:57:33.660327+00 f t DESCUENTO 0.00 2 8847 \N +351395 2025-10-04 13:57:33.661918+00 2025-10-04 13:57:33.661925+00 f t TOTAL 46000.00 3 8847 \N +351396 2025-10-04 13:57:33.663012+00 2025-10-04 13:57:33.663017+00 f t ADELANTO 11000.00 4 8847 \N +342929 2025-10-01 02:04:23.196436+00 2025-10-01 02:04:23.196445+00 f t SUBTOTAL 70000.00 1 8649 \N +342930 2025-10-01 02:04:23.198525+00 2025-10-01 02:04:23.198533+00 f t DESCUENTO 0.00 2 8649 \N +342931 2025-10-01 02:04:23.200282+00 2025-10-01 02:04:23.20029+00 f t TOTAL 70000.00 3 8649 \N +342932 2025-10-01 02:04:23.201931+00 2025-10-01 02:04:23.20194+00 f t ADELANTO 19000.00 4 8649 \N +338301 2025-09-29 15:13:19.636379+00 2025-09-29 15:13:19.636389+00 f t SUBTOTAL 0.00 1 8524 \N +338302 2025-09-29 15:13:19.638126+00 2025-09-29 15:13:19.638132+00 f t DESCUENTO 0.00 2 8524 \N +338303 2025-09-29 15:13:19.639324+00 2025-09-29 15:13:19.63933+00 f t TOTAL 0.00 3 8524 \N +338304 2025-09-29 15:13:19.640276+00 2025-09-29 15:13:19.640281+00 f t ADELANTO 0.00 4 8524 \N +362612 2025-10-07 21:19:32.612197+00 2025-10-07 21:19:32.612205+00 f t ADELANTO 0.00 4 9106 \N +338333 2025-09-29 15:43:37.405498+00 2025-09-29 15:43:37.405508+00 f t SUBTOTAL 54000.00 1 8526 \N +338334 2025-09-29 15:43:37.407233+00 2025-09-29 15:43:37.40724+00 f t DESCUENTO 0.00 2 8526 \N +338335 2025-09-29 15:43:37.408383+00 2025-09-29 15:43:37.408389+00 f t TOTAL 54000.00 3 8526 \N +338336 2025-09-29 15:43:37.409371+00 2025-09-29 15:43:37.409376+00 f t ADELANTO 13500.00 4 8526 \N +456293 2025-11-05 13:05:00.912583+00 2025-11-05 13:05:00.912593+00 f t COSTO_SERVICIO 0.00 2 11456 \N +339033 2025-09-29 20:44:09.508377+00 2025-09-29 20:44:09.508388+00 f t SUBTOTAL 0.00 1 8548 \N +339034 2025-09-29 20:44:09.510332+00 2025-09-29 20:44:09.510341+00 f t DESCUENTO 0.00 2 8548 \N +339035 2025-09-29 20:44:09.5117+00 2025-09-29 20:44:09.511708+00 f t TOTAL 0.00 3 8548 \N +339036 2025-09-29 20:44:09.512919+00 2025-09-29 20:44:09.512924+00 f t ADELANTO 0.00 4 8548 \N +338357 2025-09-29 15:46:40.50739+00 2025-09-29 15:46:40.507403+00 f t SUBTOTAL 0.00 1 8528 \N +338358 2025-09-29 15:46:40.509312+00 2025-09-29 15:46:40.50932+00 f t DESCUENTO 0.00 2 8528 \N +338359 2025-09-29 15:46:40.510659+00 2025-09-29 15:46:40.510665+00 f t TOTAL 0.00 3 8528 \N +338360 2025-09-29 15:46:40.511964+00 2025-09-29 15:46:40.51197+00 f t ADELANTO 0.00 4 8528 \N +338377 2025-09-29 15:48:25.220699+00 2025-09-29 15:48:25.220708+00 f t SUBTOTAL 46000.00 1 8527 \N +338378 2025-09-29 15:48:25.222351+00 2025-09-29 15:48:25.222359+00 f t DESCUENTO 0.00 2 8527 \N +338379 2025-09-29 15:48:25.223704+00 2025-09-29 15:48:25.22371+00 f t TOTAL 46000.00 3 8527 \N +338380 2025-09-29 15:48:25.225079+00 2025-09-29 15:48:25.225085+00 f t ADELANTO 11000.00 4 8527 \N +340209 2025-09-30 08:59:28.540759+00 2025-09-30 08:59:28.540768+00 f t SUBTOTAL 0.00 1 8582 \N +340210 2025-09-30 08:59:28.543259+00 2025-09-30 08:59:28.543267+00 f t DESCUENTO 0.00 2 8582 \N +340211 2025-09-30 08:59:28.544428+00 2025-09-30 08:59:28.544433+00 f t TOTAL 0.00 3 8582 \N +340212 2025-09-30 08:59:28.545514+00 2025-09-30 08:59:28.545521+00 f t ADELANTO 0.00 4 8582 \N +340293 2025-09-30 10:55:15.305979+00 2025-09-30 10:55:15.305992+00 f t SUBTOTAL 0.00 1 8584 \N +340294 2025-09-30 10:55:15.30907+00 2025-09-30 10:55:15.309085+00 f t DESCUENTO 0.00 2 8584 \N +340295 2025-09-30 10:55:15.312409+00 2025-09-30 10:55:15.312423+00 f t TOTAL 0.00 3 8584 \N +340296 2025-09-30 10:55:15.314316+00 2025-09-30 10:55:15.314327+00 f t ADELANTO 0.00 4 8584 \N +340533 2025-09-30 12:40:08.414103+00 2025-09-30 12:40:08.414116+00 f t SUBTOTAL 55000.00 1 8587 \N +340534 2025-09-30 12:40:08.419398+00 2025-09-30 12:40:08.419412+00 f t DESCUENTO 0.00 2 8587 \N +340535 2025-09-30 12:40:08.422353+00 2025-09-30 12:40:08.422368+00 f t TOTAL 55000.00 3 8587 \N +340536 2025-09-30 12:40:08.42512+00 2025-09-30 12:40:08.425135+00 f t ADELANTO 11000.00 4 8587 \N +338417 2025-09-29 16:03:04.425973+00 2025-09-29 16:03:04.425986+00 f t SUBTOTAL 0.00 1 8529 \N +338418 2025-09-29 16:03:04.431547+00 2025-09-29 16:03:04.43156+00 f t DESCUENTO 0.00 2 8529 \N +338419 2025-09-29 16:03:04.441096+00 2025-09-29 16:03:04.441109+00 f t TOTAL 0.00 3 8529 \N +338420 2025-09-29 16:03:04.445412+00 2025-09-29 16:03:04.445425+00 f t ADELANTO 0.00 4 8529 \N +340849 2025-09-30 15:44:55.247127+00 2025-09-30 15:44:55.24717+00 f t SUBTOTAL 55000.00 1 8596 \N +340850 2025-09-30 15:44:55.249252+00 2025-09-30 15:44:55.249262+00 f t DESCUENTO 0.00 2 8596 \N +340851 2025-09-30 15:44:55.251319+00 2025-09-30 15:44:55.251329+00 f t TOTAL 55000.00 3 8596 \N +340852 2025-09-30 15:44:55.253162+00 2025-09-30 15:44:55.253172+00 f t ADELANTO 11000.00 4 8596 \N +341089 2025-09-30 17:33:40.553964+00 2025-09-30 17:33:40.553973+00 f t SUBTOTAL 55000.00 1 8604 \N +341090 2025-09-30 17:33:40.556281+00 2025-09-30 17:33:40.55629+00 f t DESCUENTO 0.00 2 8604 \N +341091 2025-09-30 17:33:40.557727+00 2025-09-30 17:33:40.557737+00 f t TOTAL 55000.00 3 8604 \N +341092 2025-09-30 17:33:40.558909+00 2025-09-30 17:33:40.558915+00 f t ADELANTO 11000.00 4 8604 \N +338469 2025-09-29 16:10:19.269264+00 2025-09-29 16:10:19.269287+00 f t SUBTOTAL 130000.00 1 8530 \N +338470 2025-09-29 16:10:19.271822+00 2025-09-29 16:10:19.271835+00 f t DESCUENTO 0.00 2 8530 \N +338471 2025-09-29 16:10:19.2738+00 2025-09-29 16:10:19.273818+00 f t TOTAL 130000.00 3 8530 \N +338472 2025-09-29 16:10:19.276003+00 2025-09-29 16:10:19.276023+00 f t ADELANTO 15000.00 4 8530 \N +338477 2025-09-29 16:18:03.784497+00 2025-09-29 16:18:03.784511+00 f t SUBTOTAL 0.00 1 8531 \N +338478 2025-09-29 16:18:03.78662+00 2025-09-29 16:18:03.786633+00 f t DESCUENTO 0.00 2 8531 \N +338479 2025-09-29 16:18:03.78844+00 2025-09-29 16:18:03.78845+00 f t TOTAL 0.00 3 8531 \N +338480 2025-09-29 16:18:03.79349+00 2025-09-29 16:18:03.7935+00 f t ADELANTO 0.00 4 8531 \N +341793 2025-09-30 20:55:46.469799+00 2025-09-30 20:55:46.46981+00 f t SUBTOTAL 156000.00 1 8624 \N +341794 2025-09-30 20:55:46.471697+00 2025-09-30 20:55:46.471703+00 f t DESCUENTO 0.00 2 8624 \N +341795 2025-09-30 20:55:46.473135+00 2025-09-30 20:55:46.473141+00 f t TOTAL 156000.00 3 8624 \N +341796 2025-09-30 20:55:46.474428+00 2025-09-30 20:55:46.474434+00 f t ADELANTO 43000.00 4 8624 \N +341849 2025-09-30 20:56:46.84175+00 2025-09-30 20:56:46.841765+00 f t SUBTOTAL 55000.00 1 8623 \N +338509 2025-09-29 16:23:27.969619+00 2025-09-29 16:23:27.969632+00 f t SUBTOTAL 78000.00 1 8532 \N +338510 2025-09-29 16:23:27.972088+00 2025-09-29 16:23:27.9721+00 f t DESCUENTO 0.00 2 8532 \N +338511 2025-09-29 16:23:27.973929+00 2025-09-29 16:23:27.97394+00 f t TOTAL 78000.00 3 8532 \N +338512 2025-09-29 16:23:27.975607+00 2025-09-29 16:23:27.975617+00 f t ADELANTO 13000.00 4 8532 \N +341850 2025-09-30 20:56:46.846556+00 2025-09-30 20:56:46.846569+00 f t DESCUENTO 0.00 2 8623 \N +341851 2025-09-30 20:56:46.848931+00 2025-09-30 20:56:46.84894+00 f t TOTAL 55000.00 3 8623 \N +341852 2025-09-30 20:56:46.850518+00 2025-09-30 20:56:46.850526+00 f t ADELANTO 11000.00 4 8623 \N +338537 2025-09-29 17:05:46.261551+00 2025-09-29 17:05:46.261562+00 f t SUBTOTAL 54000.00 1 8533 \N +338538 2025-09-29 17:05:46.26908+00 2025-09-29 17:05:46.269092+00 f t DESCUENTO 0.00 2 8533 \N +338539 2025-09-29 17:05:46.271285+00 2025-09-29 17:05:46.271295+00 f t TOTAL 54000.00 3 8533 \N +338540 2025-09-29 17:05:46.277863+00 2025-09-29 17:05:46.277874+00 f t ADELANTO 13500.00 4 8533 \N +338565 2025-09-29 17:57:20.892682+00 2025-09-29 17:57:20.892695+00 f t SUBTOTAL 68000.00 1 8534 \N +338566 2025-09-29 17:57:20.894705+00 2025-09-29 17:57:20.894716+00 f t DESCUENTO 0.00 2 8534 \N +338567 2025-09-29 17:57:20.896384+00 2025-09-29 17:57:20.896393+00 f t TOTAL 68000.00 3 8534 \N +338568 2025-09-29 17:57:20.897941+00 2025-09-29 17:57:20.897948+00 f t ADELANTO 13000.00 4 8534 \N +338581 2025-09-29 18:09:07.170443+00 2025-09-29 18:09:07.170457+00 f t SUBTOTAL 0.00 1 8535 \N +338582 2025-09-29 18:09:07.186481+00 2025-09-29 18:09:07.186496+00 f t DESCUENTO 0.00 2 8535 \N +338583 2025-09-29 18:09:07.189092+00 2025-09-29 18:09:07.189103+00 f t TOTAL 0.00 3 8535 \N +338584 2025-09-29 18:09:07.197629+00 2025-09-29 18:09:07.197646+00 f t ADELANTO 0.00 4 8535 \N +338589 2025-09-29 18:18:43.233979+00 2025-09-29 18:18:43.233989+00 f t SUBTOTAL 0.00 1 8536 \N +338590 2025-09-29 18:18:43.236981+00 2025-09-29 18:18:43.23699+00 f t DESCUENTO 0.00 2 8536 \N +338591 2025-09-29 18:18:43.238729+00 2025-09-29 18:18:43.23874+00 f t TOTAL 0.00 3 8536 \N +338592 2025-09-29 18:18:43.240401+00 2025-09-29 18:18:43.240409+00 f t ADELANTO 0.00 4 8536 \N +338621 2025-09-29 18:22:00.150872+00 2025-09-29 18:22:00.150885+00 f t SUBTOTAL 76000.00 1 8537 \N +338622 2025-09-29 18:22:00.153445+00 2025-09-29 18:22:00.153456+00 f t DESCUENTO 0.00 2 8537 \N +338623 2025-09-29 18:22:00.155539+00 2025-09-29 18:22:00.155552+00 f t TOTAL 76000.00 3 8537 \N +338624 2025-09-29 18:22:00.157524+00 2025-09-29 18:22:00.157532+00 f t ADELANTO 11000.00 4 8537 \N +511584 2025-11-18 21:29:08.197236+00 2025-11-18 21:29:08.197241+00 f t DESCUENTO 0.00 3 12736 \N +511585 2025-11-18 21:29:08.198376+00 2025-11-18 21:29:08.198382+00 f t TOTAL 13200.00 4 12736 \N +511586 2025-11-18 21:29:08.199718+00 2025-11-18 21:29:08.199723+00 f t ADELANTO 13200.00 5 12736 \N +339213 2025-09-29 22:56:59.841117+00 2025-09-29 22:56:59.841127+00 f t SUBTOTAL 0.00 1 8556 \N +339214 2025-09-29 22:56:59.843297+00 2025-09-29 22:56:59.843305+00 f t DESCUENTO 0.00 2 8556 \N +339215 2025-09-29 22:56:59.844687+00 2025-09-29 22:56:59.844695+00 f t TOTAL 0.00 3 8556 \N +339216 2025-09-29 22:56:59.845945+00 2025-09-29 22:56:59.845954+00 f t ADELANTO 0.00 4 8556 \N +355257 2025-10-05 22:34:36.984749+00 2025-10-05 22:34:36.984758+00 f t SUBTOTAL 30000.00 1 8938 \N +355258 2025-10-05 22:34:36.986614+00 2025-10-05 22:34:36.98662+00 f t DESCUENTO 0.00 2 8938 \N +355259 2025-10-05 22:34:36.987848+00 2025-10-05 22:34:36.987853+00 f t TOTAL 30000.00 3 8938 \N +355260 2025-10-05 22:34:36.988745+00 2025-10-05 22:34:36.988751+00 f t ADELANTO 30000.00 4 8938 \N +338649 2025-09-29 18:27:29.39841+00 2025-09-29 18:27:29.398423+00 f t SUBTOTAL 46000.00 1 8538 \N +338650 2025-09-29 18:27:29.400456+00 2025-09-29 18:27:29.400468+00 f t DESCUENTO 0.00 2 8538 \N +338651 2025-09-29 18:27:29.402158+00 2025-09-29 18:27:29.402169+00 f t TOTAL 46000.00 3 8538 \N +338652 2025-09-29 18:27:29.403786+00 2025-09-29 18:27:29.403796+00 f t ADELANTO 11000.00 4 8538 \N +338665 2025-09-29 18:35:51.572783+00 2025-09-29 18:35:51.572793+00 f t SUBTOTAL 0.00 1 8539 \N +338666 2025-09-29 18:35:51.57456+00 2025-09-29 18:35:51.574567+00 f t DESCUENTO 0.00 2 8539 \N +338667 2025-09-29 18:35:51.575666+00 2025-09-29 18:35:51.575673+00 f t TOTAL 0.00 3 8539 \N +338668 2025-09-29 18:35:51.576597+00 2025-09-29 18:35:51.576602+00 f t ADELANTO 0.00 4 8539 \N +347817 2025-10-03 01:45:57.068861+00 2025-10-03 01:45:57.068869+00 f t SUBTOTAL 46000.00 1 8762 \N +347818 2025-10-03 01:45:57.070383+00 2025-10-03 01:45:57.070388+00 f t DESCUENTO 0.00 2 8762 \N +347819 2025-10-03 01:45:57.071414+00 2025-10-03 01:45:57.071419+00 f t TOTAL 46000.00 3 8762 \N +347820 2025-10-03 01:45:57.072413+00 2025-10-03 01:45:57.07242+00 f t ADELANTO 11000.00 4 8762 \N +338705 2025-09-29 19:12:39.698006+00 2025-09-29 19:12:39.698015+00 f t SUBTOTAL 0.00 1 8540 \N +338706 2025-09-29 19:12:39.699989+00 2025-09-29 19:12:39.699998+00 f t DESCUENTO 0.00 2 8540 \N +338707 2025-09-29 19:12:39.701366+00 2025-09-29 19:12:39.701373+00 f t TOTAL 0.00 3 8540 \N +338708 2025-09-29 19:12:39.702498+00 2025-09-29 19:12:39.702504+00 f t ADELANTO 0.00 4 8540 \N +356693 2025-10-06 11:45:53.948643+00 2025-10-06 11:45:53.948652+00 f t SUBTOTAL 92000.00 1 8965 \N +356694 2025-10-06 11:45:53.950345+00 2025-10-06 11:45:53.950352+00 f t DESCUENTO 0.00 2 8965 \N +356695 2025-10-06 11:45:53.951471+00 2025-10-06 11:45:53.951477+00 f t TOTAL 92000.00 3 8965 \N +356696 2025-10-06 11:45:53.952419+00 2025-10-06 11:45:53.952424+00 f t ADELANTO 22000.00 4 8965 \N +338733 2025-09-29 19:14:57.097981+00 2025-09-29 19:14:57.097991+00 f t SUBTOTAL 30000.00 1 8541 \N +338734 2025-09-29 19:14:57.099808+00 2025-09-29 19:14:57.099816+00 f t DESCUENTO 0.00 2 8541 \N +338735 2025-09-29 19:14:57.101134+00 2025-09-29 19:14:57.101141+00 f t TOTAL 30000.00 3 8541 \N +338736 2025-09-29 19:14:57.10232+00 2025-09-29 19:14:57.102326+00 f t ADELANTO 30000.00 4 8541 \N +357673 2025-10-06 16:17:28.531654+00 2025-10-06 16:17:28.531663+00 f t SUBTOTAL 46000.00 1 8994 \N +357674 2025-10-06 16:17:28.533616+00 2025-10-06 16:17:28.533622+00 f t DESCUENTO 0.00 2 8994 \N +357675 2025-10-06 16:17:28.534918+00 2025-10-06 16:17:28.534924+00 f t TOTAL 46000.00 3 8994 \N +357676 2025-10-06 16:17:28.535999+00 2025-10-06 16:17:28.536005+00 f t ADELANTO 11000.00 4 8994 \N +357849 2025-10-06 17:04:56.063348+00 2025-10-06 17:04:56.063359+00 f t SUBTOTAL 46000.00 1 8999 \N +357850 2025-10-06 17:04:56.072633+00 2025-10-06 17:04:56.072642+00 f t DESCUENTO 0.00 2 8999 \N +357851 2025-10-06 17:04:56.074302+00 2025-10-06 17:04:56.074309+00 f t TOTAL 46000.00 3 8999 \N +357852 2025-10-06 17:04:56.075492+00 2025-10-06 17:04:56.0755+00 f t ADELANTO 11000.00 4 8999 \N +358093 2025-10-06 17:44:16.499069+00 2025-10-06 17:44:16.499077+00 f t SUBTOTAL 98400.00 1 9003 \N +358094 2025-10-06 17:44:16.501267+00 2025-10-06 17:44:16.501275+00 f t DESCUENTO 0.00 2 9003 \N +358095 2025-10-06 17:44:16.506389+00 2025-10-06 17:44:16.506398+00 f t TOTAL 98400.00 3 9003 \N +358096 2025-10-06 17:44:16.50798+00 2025-10-06 17:44:16.507986+00 f t ADELANTO 57900.00 4 9003 \N +350081 2025-10-03 19:30:44.677722+00 2025-10-03 19:30:44.677734+00 f t SUBTOTAL 54000.00 1 8820 \N +350082 2025-10-03 19:30:44.67969+00 2025-10-03 19:30:44.679702+00 f t DESCUENTO 0.00 2 8820 \N +350083 2025-10-03 19:30:44.681522+00 2025-10-03 19:30:44.68153+00 f t TOTAL 54000.00 3 8820 \N +350084 2025-10-03 19:30:44.682968+00 2025-10-03 19:30:44.682974+00 f t ADELANTO 13500.00 4 8820 \N +338805 2025-09-29 20:03:52.700987+00 2025-09-29 20:03:52.701001+00 f t SUBTOTAL 0.00 1 8542 \N +338806 2025-09-29 20:03:52.70321+00 2025-09-29 20:03:52.703218+00 f t DESCUENTO 0.00 2 8542 \N +338807 2025-09-29 20:03:52.704626+00 2025-09-29 20:03:52.704635+00 f t TOTAL 0.00 3 8542 \N +338808 2025-09-29 20:03:52.70612+00 2025-09-29 20:03:52.706128+00 f t ADELANTO 0.00 4 8542 \N +358685 2025-10-06 19:59:40.70726+00 2025-10-06 19:59:40.707267+00 f t SUBTOTAL 54000.00 1 9017 \N +358686 2025-10-06 19:59:40.708782+00 2025-10-06 19:59:40.708787+00 f t DESCUENTO 0.00 2 9017 \N +358687 2025-10-06 19:59:40.709773+00 2025-10-06 19:59:40.709779+00 f t TOTAL 54000.00 3 9017 \N +358688 2025-10-06 19:59:40.710758+00 2025-10-06 19:59:40.710765+00 f t ADELANTO 13500.00 4 9017 \N +358933 2025-10-06 20:46:02.234242+00 2025-10-06 20:46:02.23425+00 f t SUBTOTAL 46000.00 1 9024 \N +358934 2025-10-06 20:46:02.236412+00 2025-10-06 20:46:02.236424+00 f t DESCUENTO 0.00 2 9024 \N +358935 2025-10-06 20:46:02.238135+00 2025-10-06 20:46:02.238144+00 f t TOTAL 46000.00 3 9024 \N +358936 2025-10-06 20:46:02.239646+00 2025-10-06 20:46:02.239655+00 f t ADELANTO 11000.00 4 9024 \N +350861 2025-10-04 00:04:01.591369+00 2025-10-04 00:04:01.59138+00 f t SUBTOTAL 0.00 1 8834 \N +350862 2025-10-04 00:04:01.592869+00 2025-10-04 00:04:01.592875+00 f t DESCUENTO 0.00 2 8834 \N +350863 2025-10-04 00:04:01.594197+00 2025-10-04 00:04:01.594202+00 f t TOTAL 0.00 3 8834 \N +350864 2025-10-04 00:04:01.595332+00 2025-10-04 00:04:01.595338+00 f t ADELANTO 0.00 4 8834 \N +351217 2025-10-04 08:46:40.312767+00 2025-10-04 08:46:40.312777+00 f t SUBTOTAL 0.00 1 8843 \N +351218 2025-10-04 08:46:40.314607+00 2025-10-04 08:46:40.314613+00 f t DESCUENTO 0.00 2 8843 \N +351219 2025-10-04 08:46:40.315785+00 2025-10-04 08:46:40.31579+00 f t TOTAL 0.00 3 8843 \N +351220 2025-10-04 08:46:40.316719+00 2025-10-04 08:46:40.316724+00 f t ADELANTO 0.00 4 8843 \N +342581 2025-10-01 00:39:47.291105+00 2025-10-01 00:39:47.291114+00 f t SUBTOTAL 70000.00 1 8645 \N +342582 2025-10-01 00:39:47.292968+00 2025-10-01 00:39:47.292975+00 f t DESCUENTO 0.00 2 8645 \N +342583 2025-10-01 00:39:47.294276+00 2025-10-01 00:39:47.294285+00 f t TOTAL 70000.00 3 8645 \N +342584 2025-10-01 00:39:47.295643+00 2025-10-01 00:39:47.295649+00 f t ADELANTO 19000.00 4 8645 \N +351401 2025-10-04 14:22:23.459782+00 2025-10-04 14:22:23.459796+00 f t SUBTOTAL 0.00 1 8848 \N +351402 2025-10-04 14:22:23.461857+00 2025-10-04 14:22:23.461869+00 f t DESCUENTO 0.00 2 8848 \N +351403 2025-10-04 14:22:23.463634+00 2025-10-04 14:22:23.463643+00 f t TOTAL 0.00 3 8848 \N +351404 2025-10-04 14:22:23.46522+00 2025-10-04 14:22:23.465229+00 f t ADELANTO 0.00 4 8848 \N +371345 2025-10-10 22:23:03.065773+00 2025-10-10 22:23:03.065782+00 f t SUBTOTAL 46000.00 1 9352 \N +371346 2025-10-10 22:23:03.067709+00 2025-10-10 22:23:03.067716+00 f t DESCUENTO 0.00 2 9352 \N +371347 2025-10-10 22:23:03.069214+00 2025-10-10 22:23:03.069221+00 f t TOTAL 46000.00 3 9352 \N +354961 2025-10-05 20:04:07.816858+00 2025-10-05 20:04:07.816868+00 f t SUBTOTAL 107000.00 1 8931 \N +354962 2025-10-05 20:04:07.818772+00 2025-10-05 20:04:07.818781+00 f t DESCUENTO 0.00 2 8931 \N +354963 2025-10-05 20:04:07.820248+00 2025-10-05 20:04:07.820255+00 f t TOTAL 107000.00 3 8931 \N +354964 2025-10-05 20:04:07.821474+00 2025-10-05 20:04:07.821482+00 f t ADELANTO 12000.00 4 8931 \N +355113 2025-10-05 21:40:45.601725+00 2025-10-05 21:40:45.601733+00 f t SUBTOTAL 55000.00 1 8935 \N +355114 2025-10-05 21:40:45.603385+00 2025-10-05 21:40:45.603391+00 f t DESCUENTO 0.00 2 8935 \N +355115 2025-10-05 21:40:45.60444+00 2025-10-05 21:40:45.604445+00 f t TOTAL 55000.00 3 8935 \N +355116 2025-10-05 21:40:45.606056+00 2025-10-05 21:40:45.606064+00 f t ADELANTO 11000.00 4 8935 \N +371348 2025-10-10 22:23:03.070426+00 2025-10-10 22:23:03.070433+00 f t ADELANTO 11000.00 4 9352 \N +355265 2025-10-06 00:09:38.106643+00 2025-10-06 00:09:38.106653+00 f t SUBTOTAL 0.00 1 8940 \N +355266 2025-10-06 00:09:38.107875+00 2025-10-06 00:09:38.107881+00 f t DESCUENTO 0.00 2 8940 \N +355267 2025-10-06 00:09:38.108793+00 2025-10-06 00:09:38.108797+00 f t TOTAL 0.00 3 8940 \N +355268 2025-10-06 00:09:38.109747+00 2025-10-06 00:09:38.109752+00 f t ADELANTO 0.00 4 8940 \N +347585 2025-10-03 00:10:38.441098+00 2025-10-03 00:10:38.441111+00 f t SUBTOTAL 0.00 1 8755 \N +347586 2025-10-03 00:10:38.443286+00 2025-10-03 00:10:38.443293+00 f t DESCUENTO 0.00 2 8755 \N +347587 2025-10-03 00:10:38.444694+00 2025-10-03 00:10:38.444704+00 f t TOTAL 0.00 3 8755 \N +347588 2025-10-03 00:10:38.445891+00 2025-10-03 00:10:38.445896+00 f t ADELANTO 0.00 4 8755 \N +343129 2025-10-01 03:08:40.883734+00 2025-10-01 03:08:40.883748+00 f t SUBTOTAL 30000.00 1 8654 \N +343130 2025-10-01 03:08:40.885596+00 2025-10-01 03:08:40.885607+00 f t DESCUENTO 0.00 2 8654 \N +343131 2025-10-01 03:08:40.88709+00 2025-10-01 03:08:40.887099+00 f t TOTAL 30000.00 3 8654 \N +343132 2025-10-01 03:08:40.888742+00 2025-10-01 03:08:40.88875+00 f t ADELANTO 30000.00 4 8654 \N +348585 2025-10-03 11:52:59.424522+00 2025-10-03 11:52:59.42453+00 f t SUBTOTAL 0.00 1 8782 \N +348586 2025-10-03 11:52:59.426168+00 2025-10-03 11:52:59.426174+00 f t DESCUENTO 0.00 2 8782 \N +348587 2025-10-03 11:52:59.427228+00 2025-10-03 11:52:59.427234+00 f t TOTAL 0.00 3 8782 \N +348588 2025-10-03 11:52:59.42821+00 2025-10-03 11:52:59.428218+00 f t ADELANTO 0.00 4 8782 \N +348769 2025-10-03 12:41:44.445163+00 2025-10-03 12:41:44.445172+00 f t SUBTOTAL 0.00 1 8786 \N +348770 2025-10-03 12:41:44.447163+00 2025-10-03 12:41:44.44717+00 f t DESCUENTO 0.00 2 8786 \N +348771 2025-10-03 12:41:44.448966+00 2025-10-03 12:41:44.448972+00 f t TOTAL 0.00 3 8786 \N +348772 2025-10-03 12:41:44.450562+00 2025-10-03 12:41:44.450567+00 f t ADELANTO 0.00 4 8786 \N +343181 2025-10-01 03:10:59.046759+00 2025-10-01 03:10:59.04677+00 f t SUBTOTAL 95400.00 1 8655 \N +343182 2025-10-01 03:10:59.04847+00 2025-10-01 03:10:59.048477+00 f t DESCUENTO 0.00 2 8655 \N +343183 2025-10-01 03:10:59.049654+00 2025-10-01 03:10:59.04966+00 f t TOTAL 95400.00 3 8655 \N +343184 2025-10-01 03:10:59.050865+00 2025-10-01 03:10:59.05087+00 f t ADELANTO 49400.00 4 8655 \N +356941 2025-10-06 14:01:22.951941+00 2025-10-06 14:01:22.95195+00 f t SUBTOTAL 13200.00 1 8974 \N +356942 2025-10-06 14:01:22.953781+00 2025-10-06 14:01:22.95379+00 f t DESCUENTO 0.00 2 8974 \N +356943 2025-10-06 14:01:22.96047+00 2025-10-06 14:01:22.96048+00 f t TOTAL 13200.00 3 8974 \N +356944 2025-10-06 14:01:22.969834+00 2025-10-06 14:01:22.969846+00 f t ADELANTO 13200.00 4 8974 \N +357473 2025-10-06 15:30:12.552531+00 2025-10-06 15:30:12.552541+00 f t SUBTOTAL 30000.00 1 8987 \N +357474 2025-10-06 15:30:12.554428+00 2025-10-06 15:30:12.554436+00 f t DESCUENTO 0.00 2 8987 \N +357475 2025-10-06 15:30:12.556115+00 2025-10-06 15:30:12.556123+00 f t TOTAL 30000.00 3 8987 \N +357476 2025-10-06 15:30:12.557651+00 2025-10-06 15:30:12.557658+00 f t ADELANTO 30000.00 4 8987 \N +349997 2025-10-03 19:24:52.690823+00 2025-10-03 19:24:52.690831+00 f t SUBTOTAL 13200.00 1 8805 \N +349998 2025-10-03 19:24:52.692511+00 2025-10-03 19:24:52.692519+00 f t DESCUENTO 0.00 2 8805 \N +349999 2025-10-03 19:24:52.693658+00 2025-10-03 19:24:52.693664+00 f t TOTAL 13200.00 3 8805 \N +350000 2025-10-03 19:24:52.694606+00 2025-10-03 19:24:52.694611+00 f t ADELANTO 13200.00 4 8805 \N +350253 2025-10-03 20:24:55.73886+00 2025-10-03 20:24:55.738871+00 f t SUBTOTAL 46000.00 1 8822 \N +350254 2025-10-03 20:24:55.740565+00 2025-10-03 20:24:55.740572+00 f t DESCUENTO 0.00 2 8822 \N +350255 2025-10-03 20:24:55.741625+00 2025-10-03 20:24:55.741632+00 f t TOTAL 46000.00 3 8822 \N +350256 2025-10-03 20:24:55.742475+00 2025-10-03 20:24:55.74248+00 f t ADELANTO 11000.00 4 8822 \N +350685 2025-10-03 21:48:30.445761+00 2025-10-03 21:48:30.445769+00 f t SUBTOTAL 75000.00 1 8830 \N +350686 2025-10-03 21:48:30.447546+00 2025-10-03 21:48:30.447556+00 f t DESCUENTO 0.00 2 8830 \N +350687 2025-10-03 21:48:30.448769+00 2025-10-03 21:48:30.448775+00 f t TOTAL 75000.00 3 8830 \N +350688 2025-10-03 21:48:30.449777+00 2025-10-03 21:48:30.449783+00 f t ADELANTO 15000.00 4 8830 \N +351313 2025-10-04 12:49:19.772358+00 2025-10-04 12:49:19.772366+00 f t SUBTOTAL 156000.00 1 8810 \N +351314 2025-10-04 12:49:19.774038+00 2025-10-04 12:49:19.774044+00 f t DESCUENTO 0.00 2 8810 \N +351315 2025-10-04 12:49:19.775095+00 2025-10-04 12:49:19.7751+00 f t TOTAL 156000.00 3 8810 \N +351316 2025-10-04 12:49:19.776065+00 2025-10-04 12:49:19.77607+00 f t ADELANTO 43000.00 4 8810 \N +343309 2025-10-01 03:14:55.010761+00 2025-10-01 03:14:55.010784+00 f t SUBTOTAL 0.00 1 8657 \N +343310 2025-10-01 03:14:55.01369+00 2025-10-01 03:14:55.013704+00 f t DESCUENTO 0.00 2 8657 \N +343311 2025-10-01 03:14:55.016233+00 2025-10-01 03:14:55.016245+00 f t TOTAL 0.00 3 8657 \N +343312 2025-10-01 03:14:55.018535+00 2025-10-01 03:14:55.018546+00 f t ADELANTO 0.00 4 8657 \N +351845 2025-10-04 16:05:19.520471+00 2025-10-04 16:05:19.520479+00 f t SUBTOTAL 156000.00 1 8857 \N +351846 2025-10-04 16:05:19.522646+00 2025-10-04 16:05:19.522653+00 f t DESCUENTO 0.00 2 8857 \N +351847 2025-10-04 16:05:19.524298+00 2025-10-04 16:05:19.524303+00 f t TOTAL 156000.00 3 8857 \N +351848 2025-10-04 16:05:19.525248+00 2025-10-04 16:05:19.525253+00 f t ADELANTO 43000.00 4 8857 \N +352097 2025-10-04 19:13:15.742855+00 2025-10-04 19:13:15.742864+00 f t SUBTOTAL 0.00 1 8867 \N +352098 2025-10-04 19:13:15.744176+00 2025-10-04 19:13:15.744182+00 f t DESCUENTO 0.00 2 8867 \N +352099 2025-10-04 19:13:15.745402+00 2025-10-04 19:13:15.745409+00 f t TOTAL 0.00 3 8867 \N +352100 2025-10-04 19:13:15.74651+00 2025-10-04 19:13:15.746517+00 f t ADELANTO 0.00 4 8867 \N +352337 2025-10-04 22:12:38.121254+00 2025-10-04 22:12:38.121263+00 f t SUBTOTAL 0.00 1 8874 \N +343377 2025-10-01 03:16:25.401343+00 2025-10-01 03:16:25.401352+00 f t SUBTOTAL 46000.00 1 8656 \N +343378 2025-10-01 03:16:25.403337+00 2025-10-01 03:16:25.403346+00 f t DESCUENTO 0.00 2 8656 \N +343379 2025-10-01 03:16:25.404705+00 2025-10-01 03:16:25.404712+00 f t TOTAL 46000.00 3 8656 \N +343380 2025-10-01 03:16:25.406252+00 2025-10-01 03:16:25.406261+00 f t ADELANTO 11000.00 4 8656 \N +352338 2025-10-04 22:12:38.122484+00 2025-10-04 22:12:38.122493+00 f t DESCUENTO 0.00 2 8874 \N +352339 2025-10-04 22:12:38.123783+00 2025-10-04 22:12:38.123792+00 f t TOTAL 0.00 3 8874 \N +352340 2025-10-04 22:12:38.124922+00 2025-10-04 22:12:38.12493+00 f t ADELANTO 0.00 4 8874 \N +379613 2025-10-13 23:07:01.606173+00 2025-10-13 23:07:01.606183+00 f t SUBTOTAL 0.00 1 9576 \N +363673 2025-10-08 04:10:50.397648+00 2025-10-08 04:10:50.397658+00 f t SUBTOTAL 0.00 1 9138 \N +363674 2025-10-08 04:10:50.401855+00 2025-10-08 04:10:50.401865+00 f t DESCUENTO 0.00 2 9138 \N +363675 2025-10-08 04:10:50.403633+00 2025-10-08 04:10:50.40364+00 f t TOTAL 0.00 3 9138 \N +363676 2025-10-08 04:10:50.404813+00 2025-10-08 04:10:50.404818+00 f t ADELANTO 0.00 4 9138 \N +347709 2025-10-03 00:55:55.393221+00 2025-10-03 00:55:55.39323+00 f t SUBTOTAL 55000.00 1 8759 \N +347710 2025-10-03 00:55:55.394991+00 2025-10-03 00:55:55.394998+00 f t DESCUENTO 0.00 2 8759 \N +347711 2025-10-03 00:55:55.396088+00 2025-10-03 00:55:55.396095+00 f t TOTAL 55000.00 3 8759 \N +347712 2025-10-03 00:55:55.397099+00 2025-10-03 00:55:55.397105+00 f t ADELANTO 11000.00 4 8759 \N +343445 2025-10-01 03:18:42.208637+00 2025-10-01 03:18:42.208649+00 f t SUBTOTAL 0.00 1 8659 \N +343446 2025-10-01 03:18:42.210258+00 2025-10-01 03:18:42.210265+00 f t DESCUENTO 0.00 2 8659 \N +343447 2025-10-01 03:18:42.211596+00 2025-10-01 03:18:42.211602+00 f t TOTAL 0.00 3 8659 \N +343448 2025-10-01 03:18:42.213162+00 2025-10-01 03:18:42.213168+00 f t ADELANTO 0.00 4 8659 \N +348593 2025-10-03 12:28:29.779702+00 2025-10-03 12:28:29.77971+00 f t SUBTOTAL 0.00 1 8783 \N +348594 2025-10-03 12:28:29.781006+00 2025-10-03 12:28:29.781011+00 f t DESCUENTO 0.00 2 8783 \N +348595 2025-10-03 12:28:29.782168+00 2025-10-03 12:28:29.782173+00 f t TOTAL 0.00 3 8783 \N +348596 2025-10-03 12:28:29.78315+00 2025-10-03 12:28:29.783155+00 f t ADELANTO 0.00 4 8783 \N +348969 2025-10-03 13:24:02.682917+00 2025-10-03 13:24:02.682927+00 f t SUBTOTAL 0.00 1 8793 \N +348970 2025-10-03 13:24:02.68533+00 2025-10-03 13:24:02.685338+00 f t DESCUENTO 0.00 2 8793 \N +348971 2025-10-03 13:24:02.686639+00 2025-10-03 13:24:02.686646+00 f t TOTAL 0.00 3 8793 \N +348972 2025-10-03 13:24:02.687894+00 2025-10-03 13:24:02.6879+00 f t ADELANTO 0.00 4 8793 \N +357857 2025-10-06 17:13:09.544451+00 2025-10-06 17:13:09.54446+00 f t SUBTOTAL 0.00 1 9000 \N +357858 2025-10-06 17:13:09.547307+00 2025-10-06 17:13:09.547327+00 f t DESCUENTO 0.00 2 9000 \N +357859 2025-10-06 17:13:09.549397+00 2025-10-06 17:13:09.549405+00 f t TOTAL 0.00 3 9000 \N +357860 2025-10-06 17:13:09.550952+00 2025-10-06 17:13:09.550963+00 f t ADELANTO 0.00 4 9000 \N +343557 2025-10-01 03:23:11.89217+00 2025-10-01 03:23:11.89218+00 f t SUBTOTAL 172000.00 1 8658 \N +343558 2025-10-01 03:23:11.894287+00 2025-10-01 03:23:11.894295+00 f t DESCUENTO 0.00 2 8658 \N +343559 2025-10-01 03:23:11.896018+00 2025-10-01 03:23:11.896026+00 f t TOTAL 172000.00 3 8658 \N +343560 2025-10-01 03:23:11.897597+00 2025-10-01 03:23:11.897604+00 f t ADELANTO 48500.00 4 8658 \N +343565 2025-10-01 04:29:23.892579+00 2025-10-01 04:29:23.892593+00 f t SUBTOTAL 0.00 1 8660 \N +343566 2025-10-01 04:29:23.894637+00 2025-10-01 04:29:23.894646+00 f t DESCUENTO 0.00 2 8660 \N +343567 2025-10-01 04:29:23.899402+00 2025-10-01 04:29:23.899411+00 f t TOTAL 0.00 3 8660 \N +343568 2025-10-01 04:29:23.90135+00 2025-10-01 04:29:23.901361+00 f t ADELANTO 0.00 4 8660 \N +350597 2025-10-03 21:15:23.723404+00 2025-10-03 21:15:23.723418+00 f t SUBTOTAL 0.00 1 8827 \N +350598 2025-10-03 21:15:23.725639+00 2025-10-03 21:15:23.725648+00 f t DESCUENTO 0.00 2 8827 \N +350599 2025-10-03 21:15:23.726924+00 2025-10-03 21:15:23.72693+00 f t TOTAL 0.00 3 8827 \N +350600 2025-10-03 21:15:23.728195+00 2025-10-03 21:15:23.728201+00 f t ADELANTO 0.00 4 8827 \N +350689 2025-10-03 21:51:09.515804+00 2025-10-03 21:51:09.515813+00 f t SUBTOTAL 78000.00 1 8829 \N +350690 2025-10-03 21:51:09.528347+00 2025-10-03 21:51:09.528357+00 f t DESCUENTO 0.00 2 8829 \N +350691 2025-10-03 21:51:09.530031+00 2025-10-03 21:51:09.530039+00 f t TOTAL 78000.00 3 8829 \N +350692 2025-10-03 21:51:09.531474+00 2025-10-03 21:51:09.53148+00 f t ADELANTO 16500.00 4 8829 \N +343597 2025-10-01 05:34:19.07006+00 2025-10-01 05:34:19.070076+00 f t SUBTOTAL 46000.00 1 8661 \N +343598 2025-10-01 05:34:19.072425+00 2025-10-01 05:34:19.072435+00 f t DESCUENTO 0.00 2 8661 \N +343599 2025-10-01 05:34:19.074252+00 2025-10-01 05:34:19.074261+00 f t TOTAL 46000.00 3 8661 \N +343600 2025-10-01 05:34:19.076456+00 2025-10-01 05:34:19.076466+00 f t ADELANTO 11000.00 4 8661 \N +358693 2025-10-06 20:00:03.036143+00 2025-10-06 20:00:03.03616+00 f t SUBTOTAL 0.00 1 9018 \N +358694 2025-10-06 20:00:03.047023+00 2025-10-06 20:00:03.047038+00 f t DESCUENTO 0.00 2 9018 \N +358695 2025-10-06 20:00:03.073833+00 2025-10-06 20:00:03.073848+00 f t TOTAL 0.00 3 9018 \N +358696 2025-10-06 20:00:03.076786+00 2025-10-06 20:00:03.0768+00 f t ADELANTO 0.00 4 9018 \N +351133 2025-10-04 01:00:44.944453+00 2025-10-04 01:00:44.944465+00 f t SUBTOTAL 82000.00 1 8840 \N +351134 2025-10-04 01:00:44.946454+00 2025-10-04 01:00:44.946463+00 f t DESCUENTO 0.00 2 8840 \N +351135 2025-10-04 01:00:44.948893+00 2025-10-04 01:00:44.948899+00 f t TOTAL 82000.00 3 8840 \N +351136 2025-10-04 01:00:44.95006+00 2025-10-04 01:00:44.950066+00 f t ADELANTO 12000.00 4 8840 \N +351317 2025-10-04 13:03:03.706897+00 2025-10-04 13:03:03.706905+00 f t SUBTOTAL 80000.00 1 8821 \N +351318 2025-10-04 13:03:03.709155+00 2025-10-04 13:03:03.709162+00 f t DESCUENTO 0.00 2 8821 \N +351319 2025-10-04 13:03:03.710209+00 2025-10-04 13:03:03.710215+00 f t TOTAL 80000.00 3 8821 \N +351320 2025-10-04 13:03:03.71131+00 2025-10-04 13:03:03.711316+00 f t ADELANTO 12000.00 4 8821 \N +343625 2025-10-01 09:57:15.206657+00 2025-10-01 09:57:15.206666+00 f t SUBTOTAL 55000.00 1 8662 \N +343626 2025-10-01 09:57:15.214242+00 2025-10-01 09:57:15.214262+00 f t DESCUENTO 0.00 2 8662 \N +343627 2025-10-01 09:57:15.216206+00 2025-10-01 09:57:15.216213+00 f t TOTAL 55000.00 3 8662 \N +343628 2025-10-01 09:57:15.217719+00 2025-10-01 09:57:15.217727+00 f t ADELANTO 11000.00 4 8662 \N +351853 2025-10-04 16:20:42.102231+00 2025-10-04 16:20:42.102239+00 f t SUBTOTAL 0.00 1 8858 \N +351854 2025-10-04 16:20:42.103649+00 2025-10-04 16:20:42.103655+00 f t DESCUENTO 0.00 2 8858 \N +351855 2025-10-04 16:20:42.104899+00 2025-10-04 16:20:42.104905+00 f t TOTAL 0.00 3 8858 \N +351856 2025-10-04 16:20:42.106101+00 2025-10-04 16:20:42.106107+00 f t ADELANTO 0.00 4 8858 \N +351941 2025-10-04 17:22:59.254389+00 2025-10-04 17:22:59.254398+00 f t SUBTOTAL 31900.00 1 8826 \N +351942 2025-10-04 17:22:59.256185+00 2025-10-04 17:22:59.256197+00 f t DESCUENTO 0.00 2 8826 \N +351943 2025-10-04 17:22:59.25749+00 2025-10-04 17:22:59.257497+00 f t TOTAL 31900.00 3 8826 \N +351944 2025-10-04 17:22:59.258529+00 2025-10-04 17:22:59.258535+00 f t ADELANTO 26400.00 4 8826 \N +352105 2025-10-04 20:11:20.146416+00 2025-10-04 20:11:20.146426+00 f t SUBTOTAL 0.00 1 8868 \N +352106 2025-10-04 20:11:20.148707+00 2025-10-04 20:11:20.148715+00 f t DESCUENTO 0.00 2 8868 \N +352107 2025-10-04 20:11:20.149889+00 2025-10-04 20:11:20.149896+00 f t TOTAL 0.00 3 8868 \N +352108 2025-10-04 20:11:20.150779+00 2025-10-04 20:11:20.150784+00 f t ADELANTO 0.00 4 8868 \N +359417 2025-10-07 00:16:24.238374+00 2025-10-07 00:16:24.238388+00 f t SUBTOTAL 68000.00 1 9041 \N +359418 2025-10-07 00:16:24.240769+00 2025-10-07 00:16:24.240776+00 f t DESCUENTO 0.00 2 9041 \N +359419 2025-10-07 00:16:24.24207+00 2025-10-07 00:16:24.242075+00 f t TOTAL 68000.00 3 9041 \N +359420 2025-10-07 00:16:24.243093+00 2025-10-07 00:16:24.243098+00 f t ADELANTO 13000.00 4 9041 \N +343673 2025-10-01 10:45:33.547879+00 2025-10-01 10:45:33.547887+00 f t SUBTOTAL 55000.00 1 8663 \N +343674 2025-10-01 10:45:33.549728+00 2025-10-01 10:45:33.549735+00 f t DESCUENTO 0.00 2 8663 \N +343675 2025-10-01 10:45:33.55125+00 2025-10-01 10:45:33.55126+00 f t TOTAL 55000.00 3 8663 \N +343676 2025-10-01 10:45:33.552846+00 2025-10-01 10:45:33.552856+00 f t ADELANTO 11000.00 4 8663 \N +379614 2025-10-13 23:07:01.607852+00 2025-10-13 23:07:01.607863+00 f t DESCUENTO 0.00 2 9576 \N +379615 2025-10-13 23:07:01.609474+00 2025-10-13 23:07:01.609481+00 f t TOTAL 0.00 3 9576 \N +379616 2025-10-13 23:07:01.610607+00 2025-10-13 23:07:01.610614+00 f t ADELANTO 0.00 4 9576 \N +388401 2025-10-16 22:32:04.562906+00 2025-10-16 22:32:04.562916+00 f t SUBTOTAL 0.00 1 9831 \N +388402 2025-10-16 22:32:04.565161+00 2025-10-16 22:32:04.565169+00 f t DESCUENTO 0.00 2 9831 \N +388403 2025-10-16 22:32:04.566559+00 2025-10-16 22:32:04.566568+00 f t TOTAL 0.00 3 9831 \N +388404 2025-10-16 22:32:04.567967+00 2025-10-16 22:32:04.567976+00 f t ADELANTO 0.00 4 9831 \N +397357 2025-10-20 00:40:35.809857+00 2025-10-20 00:40:35.809866+00 f t SUBTOTAL 0.00 1 10058 \N +354973 2025-10-05 20:20:07.892124+00 2025-10-05 20:20:07.892135+00 f t SUBTOTAL 46000.00 1 8932 \N +354974 2025-10-05 20:20:07.895465+00 2025-10-05 20:20:07.895473+00 f t DESCUENTO 0.00 2 8932 \N +354975 2025-10-05 20:20:07.897129+00 2025-10-05 20:20:07.897136+00 f t TOTAL 46000.00 3 8932 \N +354976 2025-10-05 20:20:07.898441+00 2025-10-05 20:20:07.898446+00 f t ADELANTO 11000.00 4 8932 \N +397358 2025-10-20 00:40:35.812448+00 2025-10-20 00:40:35.812461+00 f t DESCUENTO 0.00 2 10058 \N +347349 2025-10-02 22:08:12.979775+00 2025-10-02 22:08:12.979784+00 f t SUBTOTAL 78000.00 1 8748 \N +347350 2025-10-02 22:08:12.981687+00 2025-10-02 22:08:12.981694+00 f t DESCUENTO 0.00 2 8748 \N +347351 2025-10-02 22:08:12.982877+00 2025-10-02 22:08:12.982884+00 f t TOTAL 78000.00 3 8748 \N +347352 2025-10-02 22:08:12.983875+00 2025-10-02 22:08:12.983881+00 f t ADELANTO 21500.00 4 8748 \N +355413 2025-10-06 00:41:46.267402+00 2025-10-06 00:41:46.26741+00 f t SUBTOTAL 46000.00 1 8943 \N +355414 2025-10-06 00:41:46.269126+00 2025-10-06 00:41:46.269134+00 f t DESCUENTO 0.00 2 8943 \N +355415 2025-10-06 00:41:46.270343+00 2025-10-06 00:41:46.27035+00 f t TOTAL 46000.00 3 8943 \N +355416 2025-10-06 00:41:46.27138+00 2025-10-06 00:41:46.271387+00 f t ADELANTO 11000.00 4 8943 \N +347717 2025-10-03 01:01:44.440454+00 2025-10-03 01:01:44.440464+00 f t SUBTOTAL 0.00 1 8760 \N +347718 2025-10-03 01:01:44.442044+00 2025-10-03 01:01:44.442049+00 f t DESCUENTO 0.00 2 8760 \N +347719 2025-10-03 01:01:44.443469+00 2025-10-03 01:01:44.443475+00 f t TOTAL 0.00 3 8760 \N +347720 2025-10-03 01:01:44.445026+00 2025-10-03 01:01:44.445032+00 f t ADELANTO 0.00 4 8760 \N +348045 2025-10-03 02:45:28.628535+00 2025-10-03 02:45:28.628544+00 f t SUBTOTAL 0.00 1 8771 \N +348046 2025-10-03 02:45:28.629803+00 2025-10-03 02:45:28.62981+00 f t DESCUENTO 0.00 2 8771 \N +348047 2025-10-03 02:45:28.630799+00 2025-10-03 02:45:28.630804+00 f t TOTAL 0.00 3 8771 \N +348048 2025-10-03 02:45:28.631904+00 2025-10-03 02:45:28.63191+00 f t ADELANTO 0.00 4 8771 \N +343745 2025-10-01 11:03:16.497698+00 2025-10-01 11:03:16.497706+00 f t SUBTOTAL 132900.00 1 8664 \N +343746 2025-10-01 11:03:16.504304+00 2025-10-01 11:03:16.504315+00 f t DESCUENTO 0.00 2 8664 \N +343747 2025-10-01 11:03:16.50651+00 2025-10-01 11:03:16.506519+00 f t TOTAL 132900.00 3 8664 \N +343748 2025-10-01 11:03:16.50826+00 2025-10-01 11:03:16.508266+00 f t ADELANTO 70900.00 4 8664 \N +343753 2025-10-01 11:34:07.512625+00 2025-10-01 11:34:07.512639+00 f t SUBTOTAL 0.00 1 8665 \N +343754 2025-10-01 11:34:07.514948+00 2025-10-01 11:34:07.514961+00 f t DESCUENTO 0.00 2 8665 \N +343755 2025-10-01 11:34:07.519599+00 2025-10-01 11:34:07.519612+00 f t TOTAL 0.00 3 8665 \N +343756 2025-10-01 11:34:07.522393+00 2025-10-01 11:34:07.522405+00 f t ADELANTO 0.00 4 8665 \N +356597 2025-10-06 11:42:18.435858+00 2025-10-06 11:42:18.435865+00 f t SUBTOTAL 72500.00 1 8964 \N +356598 2025-10-06 11:42:18.437785+00 2025-10-06 11:42:18.437792+00 f t DESCUENTO 0.00 2 8964 \N +356599 2025-10-06 11:42:18.439913+00 2025-10-06 11:42:18.439919+00 f t TOTAL 72500.00 3 8964 \N +356600 2025-10-06 11:42:18.441719+00 2025-10-06 11:42:18.441724+00 f t ADELANTO 72500.00 4 8964 \N +363961 2025-10-08 12:05:10.922383+00 2025-10-08 12:05:10.922392+00 f t SUBTOTAL 0.00 1 9143 \N +363962 2025-10-08 12:05:10.92376+00 2025-10-08 12:05:10.923768+00 f t DESCUENTO 0.00 2 9143 \N +363963 2025-10-08 12:05:10.924962+00 2025-10-08 12:05:10.924969+00 f t TOTAL 0.00 3 9143 \N +363964 2025-10-08 12:05:10.926114+00 2025-10-08 12:05:10.92612+00 f t ADELANTO 0.00 4 9143 \N +364257 2025-10-08 14:45:11.300134+00 2025-10-08 14:45:11.300147+00 f t SUBTOTAL 55000.00 1 9154 \N +364258 2025-10-08 14:45:11.303728+00 2025-10-08 14:45:11.303741+00 f t DESCUENTO 0.00 2 9154 \N +364259 2025-10-08 14:45:11.305972+00 2025-10-08 14:45:11.305983+00 f t TOTAL 55000.00 3 9154 \N +364260 2025-10-08 14:45:11.307711+00 2025-10-08 14:45:11.307721+00 f t ADELANTO 11000.00 4 9154 \N +348977 2025-10-03 13:29:08.438589+00 2025-10-03 13:29:08.438598+00 f t SUBTOTAL 0.00 1 8794 \N +348978 2025-10-03 13:29:08.439927+00 2025-10-03 13:29:08.439933+00 f t DESCUENTO 0.00 2 8794 \N +348979 2025-10-03 13:29:08.440998+00 2025-10-03 13:29:08.441007+00 f t TOTAL 0.00 3 8794 \N +348980 2025-10-03 13:29:08.441975+00 2025-10-03 13:29:08.441981+00 f t ADELANTO 0.00 4 8794 \N +364449 2025-10-08 16:24:34.308764+00 2025-10-08 16:24:34.308773+00 f t SUBTOTAL 54000.00 1 9162 \N +364450 2025-10-08 16:24:34.310941+00 2025-10-08 16:24:34.310951+00 f t DESCUENTO 0.00 2 9162 \N +364451 2025-10-08 16:24:34.312608+00 2025-10-08 16:24:34.312615+00 f t TOTAL 54000.00 3 9162 \N +364452 2025-10-08 16:24:34.313971+00 2025-10-08 16:24:34.313977+00 f t ADELANTO 13500.00 4 9162 \N +349637 2025-10-03 16:27:24.48735+00 2025-10-03 16:27:24.487361+00 f t SUBTOTAL 55000.00 1 8809 \N +349638 2025-10-03 16:27:24.489209+00 2025-10-03 16:27:24.489225+00 f t DESCUENTO 0.00 2 8809 \N +349639 2025-10-03 16:27:24.490511+00 2025-10-03 16:27:24.490517+00 f t TOTAL 55000.00 3 8809 \N +349640 2025-10-03 16:27:24.492085+00 2025-10-03 16:27:24.492094+00 f t ADELANTO 11000.00 4 8809 \N +358781 2025-10-06 20:10:52.950982+00 2025-10-06 20:10:52.95099+00 f t SUBTOTAL 46000.00 1 9020 \N +358782 2025-10-06 20:10:52.952888+00 2025-10-06 20:10:52.952895+00 f t DESCUENTO 0.00 2 9020 \N +358783 2025-10-06 20:10:52.954009+00 2025-10-06 20:10:52.954015+00 f t TOTAL 46000.00 3 9020 \N +358784 2025-10-06 20:10:52.955054+00 2025-10-06 20:10:52.95506+00 f t ADELANTO 11000.00 4 9020 \N +350961 2025-10-04 00:39:15.613489+00 2025-10-04 00:39:15.613498+00 f t SUBTOTAL 0.00 1 8836 \N +350962 2025-10-04 00:39:15.615576+00 2025-10-04 00:39:15.615586+00 f t DESCUENTO 0.00 2 8836 \N +350963 2025-10-04 00:39:15.616581+00 2025-10-04 00:39:15.616589+00 f t TOTAL 0.00 3 8836 \N +350964 2025-10-04 00:39:15.617833+00 2025-10-04 00:39:15.617839+00 f t ADELANTO 0.00 4 8836 \N +351141 2025-10-04 01:43:36.846533+00 2025-10-04 01:43:36.846543+00 f t SUBTOTAL 0.00 1 8841 \N +351142 2025-10-04 01:43:36.848055+00 2025-10-04 01:43:36.848064+00 f t DESCUENTO 0.00 2 8841 \N +351143 2025-10-04 01:43:36.849224+00 2025-10-04 01:43:36.849229+00 f t TOTAL 0.00 3 8841 \N +351144 2025-10-04 01:43:36.850545+00 2025-10-04 01:43:36.850554+00 f t ADELANTO 0.00 4 8841 \N +343957 2025-10-01 12:21:42.435777+00 2025-10-01 12:21:42.435788+00 f t SUBTOTAL 0.00 1 8667 \N +343958 2025-10-01 12:21:42.437413+00 2025-10-01 12:21:42.437423+00 f t DESCUENTO 0.00 2 8667 \N +343959 2025-10-01 12:21:42.43884+00 2025-10-01 12:21:42.438849+00 f t TOTAL 0.00 3 8667 \N +343960 2025-10-01 12:21:42.440419+00 2025-10-01 12:21:42.440427+00 f t ADELANTO 0.00 4 8667 \N +352217 2025-10-04 20:51:10.586991+00 2025-10-04 20:51:10.587+00 f t SUBTOTAL 0.00 1 8870 \N +352218 2025-10-04 20:51:10.589033+00 2025-10-04 20:51:10.589043+00 f t DESCUENTO 0.00 2 8870 \N +397359 2025-10-20 00:40:35.814311+00 2025-10-20 00:40:35.814319+00 f t TOTAL 0.00 3 10058 \N +397360 2025-10-20 00:40:35.826838+00 2025-10-20 00:40:35.826848+00 f t ADELANTO 0.00 4 10058 \N +347061 2025-10-02 19:35:11.81573+00 2025-10-02 19:35:11.815739+00 f t SUBTOTAL 30000.00 1 8738 \N +347062 2025-10-02 19:35:11.817961+00 2025-10-02 19:35:11.817974+00 f t DESCUENTO 0.00 2 8738 \N +347063 2025-10-02 19:35:11.819549+00 2025-10-02 19:35:11.819558+00 f t TOTAL 30000.00 3 8738 \N +347064 2025-10-02 19:35:11.820998+00 2025-10-02 19:35:11.821006+00 f t ADELANTO 30000.00 4 8738 \N +362917 2025-10-08 00:04:09.888677+00 2025-10-08 00:04:09.888686+00 f t SUBTOTAL 46000.00 1 9118 \N +362918 2025-10-08 00:04:09.890363+00 2025-10-08 00:04:09.890371+00 f t DESCUENTO 0.00 2 9118 \N +362919 2025-10-08 00:04:09.89164+00 2025-10-08 00:04:09.891646+00 f t TOTAL 46000.00 3 9118 \N +362920 2025-10-08 00:04:09.892599+00 2025-10-08 00:04:09.892604+00 f t ADELANTO 11000.00 4 9118 \N +343997 2025-10-01 12:23:46.828132+00 2025-10-01 12:23:46.828141+00 f t SUBTOTAL 55000.00 1 8668 \N +343998 2025-10-01 12:23:46.829747+00 2025-10-01 12:23:46.829753+00 f t DESCUENTO 0.00 2 8668 \N +343999 2025-10-01 12:23:46.831414+00 2025-10-01 12:23:46.831422+00 f t TOTAL 55000.00 3 8668 \N +344000 2025-10-01 12:23:46.832644+00 2025-10-01 12:23:46.832651+00 f t ADELANTO 11000.00 4 8668 \N +355549 2025-10-06 01:00:53.468184+00 2025-10-06 01:00:53.468192+00 f t SUBTOTAL 98400.00 1 8945 \N +355550 2025-10-06 01:00:53.472671+00 2025-10-06 01:00:53.472678+00 f t DESCUENTO 0.00 2 8945 \N +355551 2025-10-06 01:00:53.473796+00 2025-10-06 01:00:53.473801+00 f t TOTAL 98400.00 3 8945 \N +355552 2025-10-06 01:00:53.474726+00 2025-10-06 01:00:53.47473+00 f t ADELANTO 57900.00 4 8945 \N +347837 2025-10-03 01:47:28.134235+00 2025-10-03 01:47:28.134249+00 f t SUBTOTAL 0.00 1 8764 \N +347838 2025-10-03 01:47:28.135656+00 2025-10-03 01:47:28.135663+00 f t DESCUENTO 0.00 2 8764 \N +347839 2025-10-03 01:47:28.136749+00 2025-10-03 01:47:28.136756+00 f t TOTAL 0.00 3 8764 \N +347840 2025-10-03 01:47:28.137777+00 2025-10-03 01:47:28.137783+00 f t ADELANTO 0.00 4 8764 \N +344033 2025-10-01 13:31:55.733713+00 2025-10-01 13:31:55.733725+00 f t SUBTOTAL 70000.00 1 8669 \N +344034 2025-10-01 13:31:55.735581+00 2025-10-01 13:31:55.73559+00 f t DESCUENTO 0.00 2 8669 \N +344035 2025-10-01 13:31:55.737156+00 2025-10-01 13:31:55.737163+00 f t TOTAL 70000.00 3 8669 \N +344036 2025-10-01 13:31:55.738586+00 2025-10-01 13:31:55.738593+00 f t ADELANTO 19000.00 4 8669 \N +356821 2025-10-06 12:13:00.874573+00 2025-10-06 12:13:00.874583+00 f t SUBTOTAL 108700.00 1 8852 \N +356822 2025-10-06 12:13:00.876585+00 2025-10-06 12:13:00.876595+00 f t DESCUENTO 0.00 2 8852 \N +356823 2025-10-06 12:13:00.877971+00 2025-10-06 12:13:00.877981+00 f t TOTAL 108700.00 3 8852 \N +356824 2025-10-06 12:13:00.888318+00 2025-10-06 12:13:00.888327+00 f t ADELANTO 24200.00 4 8852 \N +357177 2025-10-06 14:37:38.995533+00 2025-10-06 14:37:38.995541+00 f t SUBTOTAL 46000.00 1 8979 \N +357178 2025-10-06 14:37:38.997292+00 2025-10-06 14:37:38.997299+00 f t DESCUENTO 0.00 2 8979 \N +357179 2025-10-06 14:37:38.998508+00 2025-10-06 14:37:38.998514+00 f t TOTAL 46000.00 3 8979 \N +357180 2025-10-06 14:37:38.999577+00 2025-10-06 14:37:38.999583+00 f t ADELANTO 11000.00 4 8979 \N +357289 2025-10-06 14:45:25.915348+00 2025-10-06 14:45:25.915357+00 f t SUBTOTAL 82000.00 1 8983 \N +357290 2025-10-06 14:45:25.916946+00 2025-10-06 14:45:25.916953+00 f t DESCUENTO 0.00 2 8983 \N +357291 2025-10-06 14:45:25.918502+00 2025-10-06 14:45:25.918508+00 f t TOTAL 82000.00 3 8983 \N +357292 2025-10-06 14:45:25.919544+00 2025-10-06 14:45:25.919549+00 f t ADELANTO 12000.00 4 8983 \N +344085 2025-10-01 13:46:53.498501+00 2025-10-01 13:46:53.498511+00 f t SUBTOTAL 0.00 1 8670 \N +344086 2025-10-01 13:46:53.500398+00 2025-10-01 13:46:53.500406+00 f t DESCUENTO 0.00 2 8670 \N +344087 2025-10-01 13:46:53.501652+00 2025-10-01 13:46:53.501659+00 f t TOTAL 0.00 3 8670 \N +344088 2025-10-01 13:46:53.503293+00 2025-10-01 13:46:53.5033+00 f t ADELANTO 0.00 4 8670 \N +344093 2025-10-01 14:07:44.206319+00 2025-10-01 14:07:44.206328+00 f t SUBTOTAL 0.00 1 8671 \N +344094 2025-10-01 14:07:44.208218+00 2025-10-01 14:07:44.208226+00 f t DESCUENTO 0.00 2 8671 \N +344095 2025-10-01 14:07:44.209607+00 2025-10-01 14:07:44.209614+00 f t TOTAL 0.00 3 8671 \N +344096 2025-10-01 14:07:44.210705+00 2025-10-01 14:07:44.210711+00 f t ADELANTO 0.00 4 8671 \N +349641 2025-10-03 17:24:26.570405+00 2025-10-03 17:24:26.570414+00 f t SUBTOTAL 68000.00 1 8800 \N +349642 2025-10-03 17:24:26.579501+00 2025-10-03 17:24:26.579511+00 f t DESCUENTO 0.00 2 8800 \N +349643 2025-10-03 17:24:26.581067+00 2025-10-03 17:24:26.581077+00 f t TOTAL 68000.00 3 8800 \N +349644 2025-10-03 17:24:26.582346+00 2025-10-03 17:24:26.582352+00 f t ADELANTO 13000.00 4 8800 \N +350701 2025-10-03 22:29:51.543061+00 2025-10-03 22:29:51.543076+00 f t SUBTOTAL 78000.00 1 8768 \N +350702 2025-10-03 22:29:51.544839+00 2025-10-03 22:29:51.544845+00 f t DESCUENTO 0.00 2 8768 \N +350703 2025-10-03 22:29:51.545906+00 2025-10-03 22:29:51.545911+00 f t TOTAL 78000.00 3 8768 \N +350704 2025-10-03 22:29:51.546983+00 2025-10-03 22:29:51.546989+00 f t ADELANTO 13000.00 4 8768 \N +358705 2025-10-06 20:08:41.641571+00 2025-10-06 20:08:41.64158+00 f t SUBTOTAL 46000.00 1 9019 \N +358706 2025-10-06 20:08:41.64374+00 2025-10-06 20:08:41.643747+00 f t DESCUENTO 0.00 2 9019 \N +344157 2025-10-01 14:31:26.117217+00 2025-10-01 14:31:26.117226+00 f t SUBTOTAL 46000.00 1 8673 \N +344158 2025-10-01 14:31:26.119586+00 2025-10-01 14:31:26.119594+00 f t DESCUENTO 0.00 2 8673 \N +344159 2025-10-01 14:31:26.121414+00 2025-10-01 14:31:26.121427+00 f t TOTAL 46000.00 3 8673 \N +344160 2025-10-01 14:31:26.123278+00 2025-10-01 14:31:26.123286+00 f t ADELANTO 11000.00 4 8673 \N +358707 2025-10-06 20:08:41.644896+00 2025-10-06 20:08:41.644902+00 f t TOTAL 46000.00 3 9019 \N +358708 2025-10-06 20:08:41.646098+00 2025-10-06 20:08:41.646104+00 f t ADELANTO 11000.00 4 9019 \N +351505 2025-10-04 14:52:31.859243+00 2025-10-04 14:52:31.859252+00 f t SUBTOTAL 0.00 1 8850 \N +351506 2025-10-04 14:52:31.861271+00 2025-10-04 14:52:31.861277+00 f t DESCUENTO 0.00 2 8850 \N +351507 2025-10-04 14:52:31.862321+00 2025-10-04 14:52:31.862326+00 f t TOTAL 0.00 3 8850 \N +351508 2025-10-04 14:52:31.863283+00 2025-10-04 14:52:31.86329+00 f t ADELANTO 0.00 4 8850 \N +351769 2025-10-04 15:47:43.45896+00 2025-10-04 15:47:43.458971+00 f t SUBTOTAL 94000.00 1 8855 \N +351770 2025-10-04 15:47:43.460658+00 2025-10-04 15:47:43.460666+00 f t DESCUENTO 0.00 2 8855 \N +351771 2025-10-04 15:47:43.461747+00 2025-10-04 15:47:43.461754+00 f t TOTAL 94000.00 3 8855 \N +351772 2025-10-04 15:47:43.462693+00 2025-10-04 15:47:43.462698+00 f t ADELANTO 27000.00 4 8855 \N +352219 2025-10-04 20:51:10.590323+00 2025-10-04 20:51:10.590332+00 f t TOTAL 0.00 3 8870 \N +352220 2025-10-04 20:51:10.591832+00 2025-10-04 20:51:10.59184+00 f t ADELANTO 0.00 4 8870 \N +344241 2025-10-01 14:34:36.048178+00 2025-10-01 14:34:36.048191+00 f t SUBTOTAL 0.00 1 8672 \N +344242 2025-10-01 14:34:36.051973+00 2025-10-01 14:34:36.051986+00 f t DESCUENTO 0.00 2 8672 \N +344243 2025-10-01 14:34:36.061921+00 2025-10-01 14:34:36.061931+00 f t TOTAL 0.00 3 8672 \N +344244 2025-10-01 14:34:36.064054+00 2025-10-01 14:34:36.064063+00 f t ADELANTO 0.00 4 8672 \N +344249 2025-10-01 14:53:47.540321+00 2025-10-01 14:53:47.54033+00 f t SUBTOTAL 0.00 1 8674 \N +344250 2025-10-01 14:53:47.541827+00 2025-10-01 14:53:47.541834+00 f t DESCUENTO 0.00 2 8674 \N +344251 2025-10-01 14:53:47.543034+00 2025-10-01 14:53:47.54304+00 f t TOTAL 0.00 3 8674 \N +344252 2025-10-01 14:53:47.544538+00 2025-10-01 14:53:47.544545+00 f t ADELANTO 0.00 4 8674 \N +535712 2025-11-23 18:47:48.056975+00 2025-11-23 18:47:48.056982+00 f t SUBTOTAL 54000.00 1 13307 \N +456294 2025-11-05 13:05:00.914312+00 2025-11-05 13:05:00.914319+00 f t DESCUENTO 0.00 3 11456 \N +456295 2025-11-05 13:05:00.915704+00 2025-11-05 13:05:00.91571+00 f t TOTAL 46000.00 4 11456 \N +456296 2025-11-05 13:05:00.917233+00 2025-11-05 13:05:00.91724+00 f t ADELANTO 11000.00 5 11456 \N +362925 2025-10-08 00:05:47.488745+00 2025-10-08 00:05:47.488754+00 f t SUBTOTAL 0.00 1 9119 \N +362926 2025-10-08 00:05:47.49062+00 2025-10-08 00:05:47.490627+00 f t DESCUENTO 0.00 2 9119 \N +362927 2025-10-08 00:05:47.491765+00 2025-10-08 00:05:47.491769+00 f t TOTAL 0.00 3 9119 \N +362928 2025-10-08 00:05:47.498876+00 2025-10-08 00:05:47.498885+00 f t ADELANTO 0.00 4 9119 \N +363177 2025-10-08 01:06:52.091948+00 2025-10-08 01:06:52.091957+00 f t SUBTOTAL 46000.00 1 9127 \N +363178 2025-10-08 01:06:52.09362+00 2025-10-08 01:06:52.093628+00 f t DESCUENTO 0.00 2 9127 \N +363179 2025-10-08 01:06:52.094717+00 2025-10-08 01:06:52.094723+00 f t TOTAL 46000.00 3 9127 \N +363180 2025-10-08 01:06:52.095895+00 2025-10-08 01:06:52.095902+00 f t ADELANTO 11000.00 4 9127 \N +355557 2025-10-06 01:09:18.999283+00 2025-10-06 01:09:18.999291+00 f t SUBTOTAL 0.00 1 8946 \N +355558 2025-10-06 01:09:19.000447+00 2025-10-06 01:09:19.000452+00 f t DESCUENTO 0.00 2 8946 \N +355559 2025-10-06 01:09:19.001366+00 2025-10-06 01:09:19.001371+00 f t TOTAL 0.00 3 8946 \N +355560 2025-10-06 01:09:19.002228+00 2025-10-06 01:09:19.002233+00 f t ADELANTO 0.00 4 8946 \N +363581 2025-10-08 04:01:49.972942+00 2025-10-08 04:01:49.972951+00 f t SUBTOTAL 0.00 1 9136 \N +363582 2025-10-08 04:01:49.974797+00 2025-10-08 04:01:49.974804+00 f t DESCUENTO 0.00 2 9136 \N +363583 2025-10-08 04:01:49.975859+00 2025-10-08 04:01:49.975867+00 f t TOTAL 0.00 3 9136 \N +363584 2025-10-08 04:01:49.977118+00 2025-10-08 04:01:49.977124+00 f t ADELANTO 0.00 4 9136 \N +363865 2025-10-08 09:28:23.280859+00 2025-10-08 09:28:23.280868+00 f t SUBTOTAL 134500.00 1 9140 \N +363866 2025-10-08 09:28:23.282905+00 2025-10-08 09:28:23.282912+00 f t DESCUENTO 0.00 2 9140 \N +348229 2025-10-03 03:48:27.152806+00 2025-10-03 03:48:27.152814+00 f t SUBTOTAL 46000.00 1 8773 \N +348230 2025-10-03 03:48:27.154442+00 2025-10-03 03:48:27.154449+00 f t DESCUENTO 0.00 2 8773 \N +348231 2025-10-03 03:48:27.15616+00 2025-10-03 03:48:27.156167+00 f t TOTAL 46000.00 3 8773 \N +348232 2025-10-03 03:48:27.157624+00 2025-10-03 03:48:27.157635+00 f t ADELANTO 11000.00 4 8773 \N +363867 2025-10-08 09:28:23.28533+00 2025-10-08 09:28:23.285338+00 f t TOTAL 134500.00 3 9140 \N +363868 2025-10-08 09:28:23.287863+00 2025-10-08 09:28:23.28787+00 f t ADELANTO 29500.00 4 9140 \N +363969 2025-10-08 12:06:17.344898+00 2025-10-08 12:06:17.344912+00 f t SUBTOTAL 0.00 1 9144 \N +363970 2025-10-08 12:06:17.346563+00 2025-10-08 12:06:17.346572+00 f t DESCUENTO 0.00 2 9144 \N +363971 2025-10-08 12:06:17.347816+00 2025-10-08 12:06:17.347822+00 f t TOTAL 0.00 3 9144 \N +363972 2025-10-08 12:06:17.349052+00 2025-10-08 12:06:17.349061+00 f t ADELANTO 0.00 4 9144 \N +344329 2025-10-01 14:57:12.096184+00 2025-10-01 14:57:12.096198+00 f t SUBTOTAL 250900.00 1 8675 \N +344330 2025-10-01 14:57:12.098513+00 2025-10-01 14:57:12.098526+00 f t DESCUENTO 0.00 2 8675 \N +344331 2025-10-01 14:57:12.100404+00 2025-10-01 14:57:12.100412+00 f t TOTAL 250900.00 3 8675 \N +344332 2025-10-01 14:57:12.101887+00 2025-10-01 14:57:12.101895+00 f t ADELANTO 90400.00 4 8675 \N +344337 2025-10-01 15:07:33.298202+00 2025-10-01 15:07:33.298211+00 f t SUBTOTAL 55000.00 1 8666 \N +344338 2025-10-01 15:07:33.300037+00 2025-10-01 15:07:33.300049+00 f t DESCUENTO 0.00 2 8666 \N +344339 2025-10-01 15:07:33.301903+00 2025-10-01 15:07:33.301913+00 f t TOTAL 55000.00 3 8666 \N +344340 2025-10-01 15:07:33.303717+00 2025-10-01 15:07:33.303726+00 f t ADELANTO 11000.00 4 8666 \N +364457 2025-10-08 16:27:05.606389+00 2025-10-08 16:27:05.606399+00 f t SUBTOTAL 0.00 1 9163 \N +364458 2025-10-08 16:27:05.607808+00 2025-10-08 16:27:05.607814+00 f t DESCUENTO 0.00 2 9163 \N +364459 2025-10-08 16:27:05.609031+00 2025-10-08 16:27:05.609037+00 f t TOTAL 0.00 3 9163 \N +364460 2025-10-08 16:27:05.610021+00 2025-10-08 16:27:05.610027+00 f t ADELANTO 0.00 4 9163 \N +349453 2025-10-03 15:27:28.805067+00 2025-10-03 15:27:28.805075+00 f t SUBTOTAL 46000.00 1 8804 \N +349454 2025-10-03 15:27:28.806501+00 2025-10-03 15:27:28.806511+00 f t DESCUENTO 0.00 2 8804 \N +349455 2025-10-03 15:27:28.808007+00 2025-10-03 15:27:28.808017+00 f t TOTAL 46000.00 3 8804 \N +349456 2025-10-03 15:27:28.809072+00 2025-10-03 15:27:28.809079+00 f t ADELANTO 11000.00 4 8804 \N +357589 2025-10-06 15:39:24.293034+00 2025-10-06 15:39:24.293044+00 f t SUBTOTAL 0.00 1 8990 \N +357590 2025-10-06 15:39:24.295009+00 2025-10-06 15:39:24.295018+00 f t DESCUENTO 0.00 2 8990 \N +357591 2025-10-06 15:39:24.296199+00 2025-10-06 15:39:24.296204+00 f t TOTAL 0.00 3 8990 \N +357592 2025-10-06 15:39:24.297226+00 2025-10-06 15:39:24.297231+00 f t ADELANTO 0.00 4 8990 \N +358369 2025-10-06 18:49:41.782019+00 2025-10-06 18:49:41.782028+00 f t SUBTOTAL 46000.00 1 9009 \N +358370 2025-10-06 18:49:41.793305+00 2025-10-06 18:49:41.793317+00 f t DESCUENTO 0.00 2 9009 \N +358371 2025-10-06 18:49:41.795223+00 2025-10-06 18:49:41.795231+00 f t TOTAL 46000.00 3 9009 \N +358372 2025-10-06 18:49:41.796521+00 2025-10-06 18:49:41.796528+00 f t ADELANTO 11000.00 4 9009 \N +365385 2025-10-08 20:44:31.938057+00 2025-10-08 20:44:31.938065+00 f t SUBTOTAL 54000.00 1 9190 \N +365386 2025-10-08 20:44:31.939739+00 2025-10-08 20:44:31.939746+00 f t DESCUENTO 0.00 2 9190 \N +365387 2025-10-08 20:44:31.940785+00 2025-10-08 20:44:31.940789+00 f t TOTAL 54000.00 3 9190 \N +365388 2025-10-08 20:44:31.941664+00 2025-10-08 20:44:31.941669+00 f t ADELANTO 13500.00 4 9190 \N +344465 2025-10-01 15:28:33.286636+00 2025-10-01 15:28:33.286644+00 f t SUBTOTAL 54000.00 1 8678 \N +344466 2025-10-01 15:28:33.28831+00 2025-10-01 15:28:33.288318+00 f t DESCUENTO 0.00 2 8678 \N +344467 2025-10-01 15:28:33.29239+00 2025-10-01 15:28:33.292398+00 f t TOTAL 54000.00 3 8678 \N +344468 2025-10-01 15:28:33.29396+00 2025-10-01 15:28:33.293969+00 f t ADELANTO 13500.00 4 8678 \N +344477 2025-10-01 15:28:47.574487+00 2025-10-01 15:28:47.574498+00 f t SUBTOTAL 156000.00 1 8677 \N +344478 2025-10-01 15:28:47.576299+00 2025-10-01 15:28:47.57631+00 f t DESCUENTO 0.00 2 8677 \N +344479 2025-10-01 15:28:47.577675+00 2025-10-01 15:28:47.577684+00 f t TOTAL 156000.00 3 8677 \N +344480 2025-10-01 15:28:47.578987+00 2025-10-01 15:28:47.578997+00 f t ADELANTO 43000.00 4 8677 \N +344509 2025-10-01 15:37:13.665619+00 2025-10-01 15:37:13.665628+00 f t SUBTOTAL 55000.00 1 8679 \N +344510 2025-10-01 15:37:13.668919+00 2025-10-01 15:37:13.668928+00 f t DESCUENTO 0.00 2 8679 \N +344511 2025-10-01 15:37:13.670627+00 2025-10-01 15:37:13.670634+00 f t TOTAL 55000.00 3 8679 \N +344512 2025-10-01 15:37:13.672256+00 2025-10-01 15:37:13.672262+00 f t ADELANTO 11000.00 4 8679 \N +360077 2025-10-07 06:07:19.00147+00 2025-10-07 06:07:19.001479+00 f t SUBTOTAL 70000.00 1 9055 \N +360078 2025-10-07 06:07:19.003385+00 2025-10-07 06:07:19.003391+00 f t DESCUENTO 0.00 2 9055 \N +360079 2025-10-07 06:07:19.004493+00 2025-10-07 06:07:19.004501+00 f t TOTAL 70000.00 3 9055 \N +360080 2025-10-07 06:07:19.005547+00 2025-10-07 06:07:19.005552+00 f t ADELANTO 19000.00 4 9055 \N +352225 2025-10-04 21:05:56.501822+00 2025-10-04 21:05:56.501832+00 f t SUBTOTAL 0.00 1 8871 \N +352226 2025-10-04 21:05:56.503434+00 2025-10-04 21:05:56.503441+00 f t DESCUENTO 0.00 2 8871 \N +352227 2025-10-04 21:05:56.504771+00 2025-10-04 21:05:56.504776+00 f t TOTAL 0.00 3 8871 \N +352228 2025-10-04 21:05:56.505886+00 2025-10-04 21:05:56.505893+00 f t ADELANTO 0.00 4 8871 \N +344557 2025-10-01 15:47:34.51865+00 2025-10-01 15:47:34.518662+00 f t SUBTOTAL 46000.00 1 8680 \N +344558 2025-10-01 15:47:34.520989+00 2025-10-01 15:47:34.521+00 f t DESCUENTO 0.00 2 8680 \N +344559 2025-10-01 15:47:34.522588+00 2025-10-01 15:47:34.522596+00 f t TOTAL 46000.00 3 8680 \N +344560 2025-10-01 15:47:34.524112+00 2025-10-01 15:47:34.524121+00 f t ADELANTO 11000.00 4 8680 \N +363061 2025-10-08 00:30:39.810434+00 2025-10-08 00:30:39.810446+00 f t SUBTOTAL 30000.00 1 9123 \N +363062 2025-10-08 00:30:39.81249+00 2025-10-08 00:30:39.812498+00 f t DESCUENTO 0.00 2 9123 \N +363063 2025-10-08 00:30:39.813784+00 2025-10-08 00:30:39.813791+00 f t TOTAL 30000.00 3 9123 \N +363064 2025-10-08 00:30:39.815412+00 2025-10-08 00:30:39.81542+00 f t ADELANTO 30000.00 4 9123 \N +344573 2025-10-01 15:52:10.522362+00 2025-10-01 15:52:10.522373+00 f t SUBTOTAL 0.00 1 8681 \N +344574 2025-10-01 15:52:10.525299+00 2025-10-01 15:52:10.525308+00 f t DESCUENTO 0.00 2 8681 \N +344575 2025-10-01 15:52:10.527836+00 2025-10-01 15:52:10.527846+00 f t TOTAL 0.00 3 8681 \N +344576 2025-10-01 15:52:10.529808+00 2025-10-01 15:52:10.529816+00 f t ADELANTO 0.00 4 8681 \N +372037 2025-10-11 05:10:50.57625+00 2025-10-11 05:10:50.576259+00 f t SUBTOTAL 55000.00 1 9375 \N +372038 2025-10-11 05:10:50.577965+00 2025-10-11 05:10:50.577972+00 f t DESCUENTO 0.00 2 9375 \N +372039 2025-10-11 05:10:50.579047+00 2025-10-11 05:10:50.579053+00 f t TOTAL 55000.00 3 9375 \N +372040 2025-10-11 05:10:50.580219+00 2025-10-11 05:10:50.580224+00 f t ADELANTO 11000.00 4 9375 \N +348237 2025-10-03 03:51:51.893213+00 2025-10-03 03:51:51.893221+00 f t SUBTOTAL 0.00 1 8774 \N +348238 2025-10-03 03:51:51.894424+00 2025-10-03 03:51:51.894429+00 f t DESCUENTO 0.00 2 8774 \N +348239 2025-10-03 03:51:51.895522+00 2025-10-03 03:51:51.895527+00 f t TOTAL 0.00 3 8774 \N +348240 2025-10-03 03:51:51.896433+00 2025-10-03 03:51:51.896437+00 f t ADELANTO 0.00 4 8774 \N +348337 2025-10-03 08:53:21.612052+00 2025-10-03 08:53:21.612061+00 f t SUBTOTAL 55000.00 1 8778 \N +348338 2025-10-03 08:53:21.613696+00 2025-10-03 08:53:21.613703+00 f t DESCUENTO 0.00 2 8778 \N +348339 2025-10-03 08:53:21.614691+00 2025-10-03 08:53:21.614696+00 f t TOTAL 55000.00 3 8778 \N +348340 2025-10-03 08:53:21.616068+00 2025-10-03 08:53:21.616073+00 f t ADELANTO 11000.00 4 8778 \N +356829 2025-10-06 12:17:49.032017+00 2025-10-06 12:17:49.032025+00 f t SUBTOTAL 55000.00 1 8967 \N +356830 2025-10-06 12:17:49.033582+00 2025-10-06 12:17:49.033589+00 f t DESCUENTO 0.00 2 8967 \N +356831 2025-10-06 12:17:49.034602+00 2025-10-06 12:17:49.034608+00 f t TOTAL 55000.00 3 8967 \N +356832 2025-10-06 12:17:49.035627+00 2025-10-06 12:17:49.035632+00 f t ADELANTO 11000.00 4 8967 \N +344641 2025-10-01 15:53:47.680136+00 2025-10-01 15:53:47.680147+00 f t SUBTOTAL 46000.00 1 8682 \N +344642 2025-10-01 15:53:47.682239+00 2025-10-01 15:53:47.68225+00 f t DESCUENTO 0.00 2 8682 \N +344643 2025-10-01 15:53:47.683936+00 2025-10-01 15:53:47.683946+00 f t TOTAL 46000.00 3 8682 \N +344644 2025-10-01 15:53:47.685488+00 2025-10-01 15:53:47.685498+00 f t ADELANTO 11000.00 4 8682 \N +349081 2025-10-03 13:40:29.985963+00 2025-10-03 13:40:29.985971+00 f t SUBTOTAL 107000.00 1 8796 \N +349082 2025-10-03 13:40:29.987709+00 2025-10-03 13:40:29.987716+00 f t DESCUENTO 0.00 2 8796 \N +349083 2025-10-03 13:40:29.988877+00 2025-10-03 13:40:29.988884+00 f t TOTAL 107000.00 3 8796 \N +349084 2025-10-03 13:40:29.98985+00 2025-10-03 13:40:29.989858+00 f t ADELANTO 12000.00 4 8796 \N +344669 2025-10-01 15:54:44.347469+00 2025-10-01 15:54:44.347483+00 f t SUBTOTAL 0.00 1 8684 \N +344670 2025-10-01 15:54:44.349119+00 2025-10-01 15:54:44.349128+00 f t DESCUENTO 0.00 2 8684 \N +344671 2025-10-01 15:54:44.350376+00 2025-10-01 15:54:44.350382+00 f t TOTAL 0.00 3 8684 \N +344672 2025-10-01 15:54:44.351507+00 2025-10-01 15:54:44.351512+00 f t ADELANTO 0.00 4 8684 \N +344713 2025-10-01 15:57:12.903705+00 2025-10-01 15:57:12.903718+00 f t SUBTOTAL 55000.00 1 8685 \N +344714 2025-10-01 15:57:12.906148+00 2025-10-01 15:57:12.90616+00 f t DESCUENTO 0.00 2 8685 \N +344715 2025-10-01 15:57:12.907777+00 2025-10-01 15:57:12.907787+00 f t TOTAL 55000.00 3 8685 \N +344716 2025-10-01 15:57:12.909378+00 2025-10-01 15:57:12.909387+00 f t ADELANTO 11000.00 4 8685 \N +358285 2025-10-06 18:45:00.605532+00 2025-10-06 18:45:00.605542+00 f t SUBTOTAL 0.00 1 9008 \N +358286 2025-10-06 18:45:00.607886+00 2025-10-06 18:45:00.607894+00 f t DESCUENTO 0.00 2 9008 \N +358287 2025-10-06 18:45:00.609235+00 2025-10-06 18:45:00.60924+00 f t TOTAL 0.00 3 9008 \N +358288 2025-10-06 18:45:00.610603+00 2025-10-06 18:45:00.610608+00 f t ADELANTO 0.00 4 9008 \N +358869 2025-10-06 20:32:29.456451+00 2025-10-06 20:32:29.456461+00 f t SUBTOTAL 0.00 1 9022 \N +358870 2025-10-06 20:32:29.458415+00 2025-10-06 20:32:29.458423+00 f t DESCUENTO 0.00 2 9022 \N +358871 2025-10-06 20:32:29.459647+00 2025-10-06 20:32:29.459687+00 f t TOTAL 0.00 3 9022 \N +358872 2025-10-06 20:32:29.461038+00 2025-10-06 20:32:29.461044+00 f t ADELANTO 0.00 4 9022 \N +344757 2025-10-01 16:02:52.174431+00 2025-10-01 16:02:52.174446+00 f t SUBTOTAL 0.00 1 8683 \N +344758 2025-10-01 16:02:52.176888+00 2025-10-01 16:02:52.176897+00 f t DESCUENTO 0.00 2 8683 \N +344759 2025-10-01 16:02:52.178264+00 2025-10-01 16:02:52.178271+00 f t TOTAL 0.00 3 8683 \N +344760 2025-10-01 16:02:52.179545+00 2025-10-01 16:02:52.179551+00 f t ADELANTO 0.00 4 8683 \N +344769 2025-10-01 16:02:58.9524+00 2025-10-01 16:02:58.95241+00 f t SUBTOTAL 139750.00 1 8686 \N +344770 2025-10-01 16:02:58.953956+00 2025-10-01 16:02:58.953963+00 f t DESCUENTO 0.00 2 8686 \N +344771 2025-10-01 16:02:58.955099+00 2025-10-01 16:02:58.955105+00 f t TOTAL 139750.00 3 8686 \N +344772 2025-10-01 16:02:58.956345+00 2025-10-01 16:02:58.956351+00 f t ADELANTO 29750.00 4 8686 \N +344781 2025-10-01 16:10:39.060786+00 2025-10-01 16:10:39.060795+00 f t SUBTOTAL 75000.00 1 8687 \N +344782 2025-10-01 16:10:39.06283+00 2025-10-01 16:10:39.062837+00 f t DESCUENTO 0.00 2 8687 \N +344783 2025-10-01 16:10:39.064492+00 2025-10-01 16:10:39.064498+00 f t TOTAL 75000.00 3 8687 \N +344784 2025-10-01 16:10:39.065626+00 2025-10-01 16:10:39.065632+00 f t ADELANTO 15000.00 4 8687 \N +359357 2025-10-06 23:40:49.817421+00 2025-10-06 23:40:49.817434+00 f t SUBTOTAL 0.00 1 9039 \N +359358 2025-10-06 23:40:49.820414+00 2025-10-06 23:40:49.820424+00 f t DESCUENTO 0.00 2 9039 \N +359359 2025-10-06 23:40:49.821852+00 2025-10-06 23:40:49.821862+00 f t TOTAL 0.00 3 9039 \N +359360 2025-10-06 23:40:49.8233+00 2025-10-06 23:40:49.823311+00 f t ADELANTO 0.00 4 9039 \N +344789 2025-10-01 16:28:18.082072+00 2025-10-01 16:28:18.082081+00 f t SUBTOTAL 46000.00 1 8676 \N +344790 2025-10-01 16:28:18.083766+00 2025-10-01 16:28:18.083774+00 f t DESCUENTO 0.00 2 8676 \N +344791 2025-10-01 16:28:18.084979+00 2025-10-01 16:28:18.084985+00 f t TOTAL 46000.00 3 8676 \N +344792 2025-10-01 16:28:18.086031+00 2025-10-01 16:28:18.086036+00 f t ADELANTO 11000.00 4 8676 \N +359849 2025-10-07 02:50:07.531825+00 2025-10-07 02:50:07.531833+00 f t SUBTOTAL 75000.00 1 9050 \N +359850 2025-10-07 02:50:07.533836+00 2025-10-07 02:50:07.533843+00 f t DESCUENTO 0.00 2 9050 \N +359851 2025-10-07 02:50:07.535324+00 2025-10-07 02:50:07.535331+00 f t TOTAL 75000.00 3 9050 \N +359852 2025-10-07 02:50:07.536976+00 2025-10-07 02:50:07.536985+00 f t ADELANTO 15000.00 4 9050 \N +352233 2025-10-04 21:15:07.091577+00 2025-10-04 21:15:07.091586+00 f t SUBTOTAL 0.00 1 8872 \N +352234 2025-10-04 21:15:07.093067+00 2025-10-04 21:15:07.093076+00 f t DESCUENTO 0.00 2 8872 \N +352235 2025-10-04 21:15:07.094361+00 2025-10-04 21:15:07.094367+00 f t TOTAL 0.00 3 8872 \N +352236 2025-10-04 21:15:07.095483+00 2025-10-04 21:15:07.095491+00 f t ADELANTO 0.00 4 8872 \N +346789 2025-10-02 18:53:11.11537+00 2025-10-02 18:53:11.11538+00 f t SUBTOTAL 89900.00 1 8732 \N +346790 2025-10-02 18:53:11.117089+00 2025-10-02 18:53:11.117097+00 f t DESCUENTO 0.00 2 8732 \N +346791 2025-10-02 18:53:11.118223+00 2025-10-02 18:53:11.11823+00 f t TOTAL 89900.00 3 8732 \N +346792 2025-10-02 18:53:11.11926+00 2025-10-02 18:53:11.119266+00 f t ADELANTO 31900.00 4 8732 \N +344849 2025-10-01 16:39:34.152154+00 2025-10-01 16:39:34.152162+00 f t SUBTOTAL 55000.00 1 8688 \N +344850 2025-10-01 16:39:34.154243+00 2025-10-01 16:39:34.154254+00 f t DESCUENTO 0.00 2 8688 \N +344851 2025-10-01 16:39:34.155901+00 2025-10-01 16:39:34.155909+00 f t TOTAL 55000.00 3 8688 \N +344852 2025-10-01 16:39:34.15728+00 2025-10-01 16:39:34.157287+00 f t ADELANTO 11000.00 4 8688 \N +347233 2025-10-02 21:11:19.415231+00 2025-10-02 21:11:19.41524+00 f t SUBTOTAL 70000.00 1 8746 \N +347234 2025-10-02 21:11:19.417446+00 2025-10-02 21:11:19.417452+00 f t DESCUENTO 0.00 2 8746 \N +347235 2025-10-02 21:11:19.425836+00 2025-10-02 21:11:19.425844+00 f t TOTAL 70000.00 3 8746 \N +347236 2025-10-02 21:11:19.427316+00 2025-10-02 21:11:19.427322+00 f t ADELANTO 19000.00 4 8746 \N +355141 2025-10-05 21:46:44.612244+00 2025-10-05 21:46:44.612253+00 f t SUBTOTAL 55000.00 1 8936 \N +355142 2025-10-05 21:46:44.614076+00 2025-10-05 21:46:44.614082+00 f t DESCUENTO 0.00 2 8936 \N +355143 2025-10-05 21:46:44.615628+00 2025-10-05 21:46:44.615634+00 f t TOTAL 55000.00 3 8936 \N +355144 2025-10-05 21:46:44.617017+00 2025-10-05 21:46:44.617025+00 f t ADELANTO 11000.00 4 8936 \N +344881 2025-10-01 17:32:03.253151+00 2025-10-01 17:32:03.253164+00 f t SUBTOTAL 140000.00 1 8689 \N +344882 2025-10-01 17:32:03.258909+00 2025-10-01 17:32:03.258922+00 f t DESCUENTO 0.00 2 8689 \N +344883 2025-10-01 17:32:03.261749+00 2025-10-01 17:32:03.261763+00 f t TOTAL 140000.00 3 8689 \N +344884 2025-10-01 17:32:03.265149+00 2025-10-01 17:32:03.265166+00 f t ADELANTO 38000.00 4 8689 \N +356053 2025-10-06 10:04:40.021272+00 2025-10-06 10:04:40.021281+00 f t SUBTOTAL 0.00 1 8955 \N +356054 2025-10-06 10:04:40.023281+00 2025-10-06 10:04:40.023288+00 f t DESCUENTO 0.00 2 8955 \N +356055 2025-10-06 10:04:40.024372+00 2025-10-06 10:04:40.024377+00 f t TOTAL 0.00 3 8955 \N +356056 2025-10-06 10:04:40.025262+00 2025-10-06 10:04:40.025267+00 f t ADELANTO 0.00 4 8955 \N +348245 2025-10-03 04:12:32.266055+00 2025-10-03 04:12:32.266063+00 f t SUBTOTAL 0.00 1 8775 \N +348246 2025-10-03 04:12:32.267406+00 2025-10-03 04:12:32.267412+00 f t DESCUENTO 0.00 2 8775 \N +348247 2025-10-03 04:12:32.268359+00 2025-10-03 04:12:32.268364+00 f t TOTAL 0.00 3 8775 \N +348248 2025-10-03 04:12:32.269305+00 2025-10-03 04:12:32.26931+00 f t ADELANTO 0.00 4 8775 \N +348797 2025-10-03 12:54:10.490719+00 2025-10-03 12:54:10.490733+00 f t SUBTOTAL 0.00 1 8787 \N +348798 2025-10-03 12:54:10.493169+00 2025-10-03 12:54:10.493179+00 f t DESCUENTO 0.00 2 8787 \N +348799 2025-10-03 12:54:10.495188+00 2025-10-03 12:54:10.495197+00 f t TOTAL 0.00 3 8787 \N +348800 2025-10-03 12:54:10.497123+00 2025-10-03 12:54:10.497132+00 f t ADELANTO 0.00 4 8787 \N +356969 2025-10-06 14:17:24.241951+00 2025-10-06 14:17:24.241963+00 f t SUBTOTAL 30000.00 1 8975 \N +356970 2025-10-06 14:17:24.24416+00 2025-10-06 14:17:24.244171+00 f t DESCUENTO 0.00 2 8975 \N +356971 2025-10-06 14:17:24.246092+00 2025-10-06 14:17:24.246102+00 f t TOTAL 30000.00 3 8975 \N +356972 2025-10-06 14:17:24.247708+00 2025-10-06 14:17:24.247717+00 f t ADELANTO 30000.00 4 8975 \N +349289 2025-10-03 15:01:23.985876+00 2025-10-03 15:01:23.985884+00 f t SUBTOTAL 70000.00 1 8803 \N +349290 2025-10-03 15:01:23.987627+00 2025-10-03 15:01:23.987635+00 f t DESCUENTO 0.00 2 8803 \N +349291 2025-10-03 15:01:23.989087+00 2025-10-03 15:01:23.989095+00 f t TOTAL 70000.00 3 8803 \N +349292 2025-10-03 15:01:23.990267+00 2025-10-03 15:01:23.990273+00 f t ADELANTO 19000.00 4 8803 \N +357397 2025-10-06 14:56:26.159961+00 2025-10-06 14:56:26.15997+00 f t SUBTOTAL 78000.00 1 8984 \N +357398 2025-10-06 14:56:26.162095+00 2025-10-06 14:56:26.162102+00 f t DESCUENTO 0.00 2 8984 \N +357399 2025-10-06 14:56:26.16377+00 2025-10-06 14:56:26.163777+00 f t TOTAL 78000.00 3 8984 \N +357400 2025-10-06 14:56:26.16738+00 2025-10-06 14:56:26.167389+00 f t ADELANTO 13000.00 4 8984 \N +357601 2025-10-06 15:57:39.446893+00 2025-10-06 15:57:39.446904+00 f t SUBTOTAL 30000.00 1 8991 \N +357602 2025-10-06 15:57:39.448783+00 2025-10-06 15:57:39.448793+00 f t DESCUENTO 0.00 2 8991 \N +357603 2025-10-06 15:57:39.450042+00 2025-10-06 15:57:39.450049+00 f t TOTAL 30000.00 3 8991 \N +357604 2025-10-06 15:57:39.451082+00 2025-10-06 15:57:39.451089+00 f t ADELANTO 30000.00 4 8991 \N +350529 2025-10-03 20:49:45.555233+00 2025-10-03 20:49:45.555242+00 f t SUBTOTAL 23000.00 1 8825 \N +350530 2025-10-03 20:49:45.557096+00 2025-10-03 20:49:45.557104+00 f t DESCUENTO 0.00 2 8825 \N +350531 2025-10-03 20:49:45.563071+00 2025-10-03 20:49:45.563084+00 f t TOTAL 23000.00 3 8825 \N +350532 2025-10-03 20:49:45.564562+00 2025-10-03 20:49:45.564568+00 f t ADELANTO 5500.00 4 8825 \N +345037 2025-10-01 17:46:35.854129+00 2025-10-01 17:46:35.85414+00 f t SUBTOTAL 0.00 1 8690 \N +345038 2025-10-01 17:46:35.85747+00 2025-10-01 17:46:35.857478+00 f t DESCUENTO 0.00 2 8690 \N +345039 2025-10-01 17:46:35.859104+00 2025-10-01 17:46:35.859112+00 f t TOTAL 0.00 3 8690 \N +345040 2025-10-01 17:46:35.860409+00 2025-10-01 17:46:35.860415+00 f t ADELANTO 0.00 4 8690 \N +345045 2025-10-01 18:02:13.488369+00 2025-10-01 18:02:13.488384+00 f t SUBTOTAL 0.00 1 8691 \N +345046 2025-10-01 18:02:13.49036+00 2025-10-01 18:02:13.490373+00 f t DESCUENTO 0.00 2 8691 \N +345047 2025-10-01 18:02:13.493399+00 2025-10-01 18:02:13.493413+00 f t TOTAL 0.00 3 8691 \N +345048 2025-10-01 18:02:13.495355+00 2025-10-01 18:02:13.495366+00 f t ADELANTO 0.00 4 8691 \N +345053 2025-10-01 18:05:43.142215+00 2025-10-01 18:05:43.142236+00 f t SUBTOTAL 0.00 1 8692 \N +345054 2025-10-01 18:05:43.143833+00 2025-10-01 18:05:43.14384+00 f t DESCUENTO 0.00 2 8692 \N +345055 2025-10-01 18:05:43.145119+00 2025-10-01 18:05:43.145125+00 f t TOTAL 0.00 3 8692 \N +345056 2025-10-01 18:05:43.146262+00 2025-10-01 18:05:43.146267+00 f t ADELANTO 0.00 4 8692 \N +345069 2025-10-01 18:09:22.697178+00 2025-10-01 18:09:22.697187+00 f t SUBTOTAL 0.00 1 8694 \N +345070 2025-10-01 18:09:22.69865+00 2025-10-01 18:09:22.69866+00 f t DESCUENTO 0.00 2 8694 \N +345071 2025-10-01 18:09:22.700206+00 2025-10-01 18:09:22.700213+00 f t TOTAL 0.00 3 8694 \N +345072 2025-10-01 18:09:22.701374+00 2025-10-01 18:09:22.701379+00 f t ADELANTO 0.00 4 8694 \N +345073 2025-10-01 18:11:30.323751+00 2025-10-01 18:11:30.323759+00 f t SUBTOTAL 70000.00 1 8693 \N +345074 2025-10-01 18:11:30.329113+00 2025-10-01 18:11:30.329123+00 f t DESCUENTO 0.00 2 8693 \N +345075 2025-10-01 18:11:30.330824+00 2025-10-01 18:11:30.330833+00 f t TOTAL 70000.00 3 8693 \N +345076 2025-10-01 18:11:30.333961+00 2025-10-01 18:11:30.33397+00 f t ADELANTO 19000.00 4 8693 \N +352049 2025-10-04 18:41:31.404378+00 2025-10-04 18:41:31.404387+00 f t SUBTOTAL 75000.00 1 8864 \N +352050 2025-10-04 18:41:31.405957+00 2025-10-04 18:41:31.405963+00 f t DESCUENTO 0.00 2 8864 \N +352051 2025-10-04 18:41:31.406933+00 2025-10-04 18:41:31.406938+00 f t TOTAL 75000.00 3 8864 \N +352052 2025-10-04 18:41:31.408035+00 2025-10-04 18:41:31.408042+00 f t ADELANTO 15000.00 4 8864 \N +345125 2025-10-01 18:43:46.236181+00 2025-10-01 18:43:46.236191+00 f t SUBTOTAL 0.00 1 8695 \N +345126 2025-10-01 18:43:46.237938+00 2025-10-01 18:43:46.237945+00 f t DESCUENTO 0.00 2 8695 \N +345127 2025-10-01 18:43:46.23905+00 2025-10-01 18:43:46.239056+00 f t TOTAL 0.00 3 8695 \N +345128 2025-10-01 18:43:46.240114+00 2025-10-01 18:43:46.240122+00 f t ADELANTO 0.00 4 8695 \N +354685 2025-10-05 19:33:59.684095+00 2025-10-05 19:33:59.684104+00 f t SUBTOTAL 55000.00 1 8928 \N +354686 2025-10-05 19:33:59.685035+00 2025-10-05 19:33:59.685041+00 f t DESCUENTO 0.00 2 8928 \N +354687 2025-10-05 19:33:59.685679+00 2025-10-05 19:33:59.685685+00 f t TOTAL 55000.00 3 8928 \N +354688 2025-10-05 19:33:59.686338+00 2025-10-05 19:33:59.686343+00 f t ADELANTO 11000.00 4 8928 \N +362637 2025-10-07 21:31:09.669297+00 2025-10-07 21:31:09.669307+00 f t SUBTOTAL 46000.00 1 9107 \N +362638 2025-10-07 21:31:09.671285+00 2025-10-07 21:31:09.671293+00 f t DESCUENTO 0.00 2 9107 \N +362639 2025-10-07 21:31:09.673189+00 2025-10-07 21:31:09.673197+00 f t TOTAL 46000.00 3 9107 \N +362640 2025-10-07 21:31:09.674483+00 2025-10-07 21:31:09.674492+00 f t ADELANTO 11000.00 4 9107 \N +362789 2025-10-07 23:15:27.238497+00 2025-10-07 23:15:27.238505+00 f t SUBTOTAL 46000.00 1 9113 \N +362790 2025-10-07 23:15:27.240311+00 2025-10-07 23:15:27.24032+00 f t DESCUENTO 0.00 2 9113 \N +362791 2025-10-07 23:15:27.241473+00 2025-10-07 23:15:27.241479+00 f t TOTAL 46000.00 3 9113 \N +362792 2025-10-07 23:15:27.242633+00 2025-10-07 23:15:27.242638+00 f t ADELANTO 11000.00 4 9113 \N +397573 2025-10-20 03:41:34.207843+00 2025-10-20 03:41:34.207852+00 f t SUBTOTAL 46000.00 1 10065 \N +397574 2025-10-20 03:41:34.209619+00 2025-10-20 03:41:34.209626+00 f t DESCUENTO 0.00 2 10065 \N +397575 2025-10-20 03:41:34.210783+00 2025-10-20 03:41:34.210794+00 f t TOTAL 46000.00 3 10065 \N +356621 2025-10-06 11:43:26.961266+00 2025-10-06 11:43:26.961279+00 f t SUBTOTAL 0.00 1 8963 \N +356622 2025-10-06 11:43:26.964701+00 2025-10-06 11:43:26.964713+00 f t DESCUENTO 0.00 2 8963 \N +356623 2025-10-06 11:43:26.96632+00 2025-10-06 11:43:26.966327+00 f t TOTAL 0.00 3 8963 \N +356624 2025-10-06 11:43:26.968702+00 2025-10-06 11:43:26.968709+00 f t ADELANTO 0.00 4 8963 \N +348621 2025-10-03 12:29:25.402721+00 2025-10-03 12:29:25.402731+00 f t SUBTOTAL 75000.00 1 8784 \N +348622 2025-10-03 12:29:25.404594+00 2025-10-03 12:29:25.404601+00 f t DESCUENTO 0.00 2 8784 \N +348623 2025-10-03 12:29:25.405655+00 2025-10-03 12:29:25.405661+00 f t TOTAL 75000.00 3 8784 \N +348624 2025-10-03 12:29:25.406601+00 2025-10-03 12:29:25.406606+00 f t ADELANTO 15000.00 4 8784 \N +348897 2025-10-03 13:06:37.062319+00 2025-10-03 13:06:37.062327+00 f t SUBTOTAL 54000.00 1 8790 \N +348898 2025-10-03 13:06:37.064168+00 2025-10-03 13:06:37.064178+00 f t DESCUENTO 0.00 2 8790 \N +348899 2025-10-03 13:06:37.065717+00 2025-10-03 13:06:37.065727+00 f t TOTAL 54000.00 3 8790 \N +348900 2025-10-03 13:06:37.067187+00 2025-10-03 13:06:37.067196+00 f t ADELANTO 13500.00 4 8790 \N +345225 2025-10-01 18:52:02.252165+00 2025-10-01 18:52:02.252179+00 f t SUBTOTAL 102000.00 1 8696 \N +345226 2025-10-01 18:52:02.254494+00 2025-10-01 18:52:02.254504+00 f t DESCUENTO 0.00 2 8696 \N +345227 2025-10-01 18:52:02.256631+00 2025-10-01 18:52:02.256646+00 f t TOTAL 102000.00 3 8696 \N +345228 2025-10-01 18:52:02.258834+00 2025-10-01 18:52:02.258851+00 f t ADELANTO 29500.00 4 8696 \N +345297 2025-10-01 19:11:20.13581+00 2025-10-01 19:11:20.135822+00 f t SUBTOTAL 55000.00 1 8698 \N +345298 2025-10-01 19:11:20.137944+00 2025-10-01 19:11:20.137956+00 f t DESCUENTO 0.00 2 8698 \N +345299 2025-10-01 19:11:20.139694+00 2025-10-01 19:11:20.139703+00 f t TOTAL 55000.00 3 8698 \N +345300 2025-10-01 19:11:20.14129+00 2025-10-01 19:11:20.1413+00 f t ADELANTO 11000.00 4 8698 \N +345317 2025-10-01 19:38:55.174702+00 2025-10-01 19:38:55.174714+00 f t SUBTOTAL 55000.00 1 8697 \N +345318 2025-10-01 19:38:55.176668+00 2025-10-01 19:38:55.17668+00 f t DESCUENTO 0.00 2 8697 \N +345319 2025-10-01 19:38:55.178153+00 2025-10-01 19:38:55.178163+00 f t TOTAL 55000.00 3 8697 \N +345320 2025-10-01 19:38:55.179457+00 2025-10-01 19:38:55.179466+00 f t ADELANTO 11000.00 4 8697 \N +345329 2025-10-01 21:50:11.337449+00 2025-10-01 21:50:11.337463+00 f t SUBTOTAL 13200.00 1 8699 \N +345330 2025-10-01 21:50:11.340397+00 2025-10-01 21:50:11.340409+00 f t DESCUENTO 0.00 2 8699 \N +345331 2025-10-01 21:50:11.34524+00 2025-10-01 21:50:11.345255+00 f t TOTAL 13200.00 3 8699 \N +345332 2025-10-01 21:50:11.347823+00 2025-10-01 21:50:11.347838+00 f t ADELANTO 13200.00 4 8699 \N +345341 2025-10-01 23:08:00.798133+00 2025-10-01 23:08:00.798144+00 f t SUBTOTAL 30000.00 1 8700 \N +345342 2025-10-01 23:08:00.800494+00 2025-10-01 23:08:00.800502+00 f t DESCUENTO 0.00 2 8700 \N +345343 2025-10-01 23:08:00.802537+00 2025-10-01 23:08:00.802545+00 f t TOTAL 30000.00 3 8700 \N +345344 2025-10-01 23:08:00.804842+00 2025-10-01 23:08:00.804856+00 f t ADELANTO 30000.00 4 8700 \N +345353 2025-10-02 13:04:38.6816+00 2025-10-02 13:04:38.681611+00 f t SUBTOTAL 46000.00 1 8701 \N +345354 2025-10-02 13:04:38.68442+00 2025-10-02 13:04:38.684429+00 f t DESCUENTO 0.00 2 8701 \N +345355 2025-10-02 13:04:38.686713+00 2025-10-02 13:04:38.686724+00 f t TOTAL 46000.00 3 8701 \N +345356 2025-10-02 13:04:38.688207+00 2025-10-02 13:04:38.688215+00 f t ADELANTO 11000.00 4 8701 \N +351345 2025-10-04 13:53:48.686833+00 2025-10-04 13:53:48.686847+00 f t SUBTOTAL 121000.00 1 8846 \N +351346 2025-10-04 13:53:48.688687+00 2025-10-04 13:53:48.688694+00 f t DESCUENTO 0.00 2 8846 \N +351347 2025-10-04 13:53:48.689764+00 2025-10-04 13:53:48.689769+00 f t TOTAL 121000.00 3 8846 \N +351348 2025-10-04 13:53:48.690709+00 2025-10-04 13:53:48.690715+00 f t ADELANTO 26000.00 4 8846 \N +345369 2025-10-02 13:29:21.802582+00 2025-10-02 13:29:21.802601+00 f t SUBTOTAL 0.00 1 8703 \N +345370 2025-10-02 13:29:21.805116+00 2025-10-02 13:29:21.805128+00 f t DESCUENTO 0.00 2 8703 \N +345371 2025-10-02 13:29:21.807205+00 2025-10-02 13:29:21.807281+00 f t TOTAL 0.00 3 8703 \N +345372 2025-10-02 13:29:21.809224+00 2025-10-02 13:29:21.809234+00 f t ADELANTO 0.00 4 8703 \N +345377 2025-10-02 13:29:36.786163+00 2025-10-02 13:29:36.786176+00 f t SUBTOTAL 0.00 1 8704 \N +345378 2025-10-02 13:29:36.788069+00 2025-10-02 13:29:36.78808+00 f t DESCUENTO 0.00 2 8704 \N +345379 2025-10-02 13:29:36.789699+00 2025-10-02 13:29:36.789708+00 f t TOTAL 0.00 3 8704 \N +345380 2025-10-02 13:29:36.791102+00 2025-10-02 13:29:36.791111+00 f t ADELANTO 0.00 4 8704 \N +345389 2025-10-02 13:36:52.059009+00 2025-10-02 13:36:52.059022+00 f t SUBTOTAL 46000.00 1 8705 \N +345390 2025-10-02 13:36:52.060983+00 2025-10-02 13:36:52.060994+00 f t DESCUENTO 0.00 2 8705 \N +345391 2025-10-02 13:36:52.062662+00 2025-10-02 13:36:52.062671+00 f t TOTAL 46000.00 3 8705 \N +345392 2025-10-02 13:36:52.064251+00 2025-10-02 13:36:52.06426+00 f t ADELANTO 11000.00 4 8705 \N +351969 2025-10-04 17:45:04.947872+00 2025-10-04 17:45:04.947887+00 f t SUBTOTAL 46000.00 1 8861 \N +351970 2025-10-04 17:45:04.953482+00 2025-10-04 17:45:04.953496+00 f t DESCUENTO 0.00 2 8861 \N +351971 2025-10-04 17:45:04.957877+00 2025-10-04 17:45:04.957894+00 f t TOTAL 46000.00 3 8861 \N +351972 2025-10-04 17:45:04.960747+00 2025-10-04 17:45:04.960759+00 f t ADELANTO 11000.00 4 8861 \N +359705 2025-10-07 01:23:46.236015+00 2025-10-07 01:23:46.236023+00 f t SUBTOTAL 107000.00 1 9045 \N +359706 2025-10-07 01:23:46.237827+00 2025-10-07 01:23:46.237834+00 f t DESCUENTO 0.00 2 9045 \N +359707 2025-10-07 01:23:46.239285+00 2025-10-07 01:23:46.239292+00 f t TOTAL 107000.00 3 9045 \N +359708 2025-10-07 01:23:46.240547+00 2025-10-07 01:23:46.240553+00 f t ADELANTO 12000.00 4 9045 \N +359777 2025-10-07 01:55:19.35362+00 2025-10-07 01:55:19.353628+00 f t SUBTOTAL 133500.00 1 9047 \N +359778 2025-10-07 01:55:19.359002+00 2025-10-07 01:55:19.359011+00 f t DESCUENTO 0.00 2 9047 \N +359779 2025-10-07 01:55:19.36029+00 2025-10-07 01:55:19.360295+00 f t TOTAL 133500.00 3 9047 \N +359780 2025-10-07 01:55:19.361345+00 2025-10-07 01:55:19.36135+00 f t ADELANTO 28500.00 4 9047 \N +445642 2025-11-01 18:51:01.558646+00 2025-11-01 18:51:01.558656+00 f t SUBTOTAL 101000.00 1 11212 \N +445643 2025-11-01 18:51:01.560689+00 2025-11-01 18:51:01.560698+00 f t COSTO_SERVICIO 0.00 2 11212 \N +445644 2025-11-01 18:51:01.562243+00 2025-11-01 18:51:01.562252+00 f t DESCUENTO 10100.00 3 11212 \N +397576 2025-10-20 03:41:34.211954+00 2025-10-20 03:41:34.211962+00 f t ADELANTO 11000.00 4 10065 \N +347245 2025-10-02 21:52:54.49198+00 2025-10-02 21:52:54.491991+00 f t SUBTOTAL 70000.00 1 8747 \N +347246 2025-10-02 21:52:54.494172+00 2025-10-02 21:52:54.494181+00 f t DESCUENTO 0.00 2 8747 \N +347247 2025-10-02 21:52:54.495862+00 2025-10-02 21:52:54.495872+00 f t TOTAL 70000.00 3 8747 \N +347248 2025-10-02 21:52:54.497233+00 2025-10-02 21:52:54.49724+00 f t ADELANTO 19000.00 4 8747 \N +347621 2025-10-03 00:22:05.967526+00 2025-10-03 00:22:05.967539+00 f t SUBTOTAL 46000.00 1 8756 \N +347622 2025-10-03 00:22:05.969655+00 2025-10-03 00:22:05.969666+00 f t DESCUENTO 0.00 2 8756 \N +347623 2025-10-03 00:22:05.970987+00 2025-10-03 00:22:05.970993+00 f t TOTAL 46000.00 3 8756 \N +347624 2025-10-03 00:22:05.972535+00 2025-10-03 00:22:05.972543+00 f t ADELANTO 11000.00 4 8756 \N +348069 2025-10-03 02:45:46.204474+00 2025-10-03 02:45:46.204484+00 f t SUBTOTAL 53700.00 1 8770 \N +348070 2025-10-03 02:45:46.20971+00 2025-10-03 02:45:46.20972+00 f t DESCUENTO 0.00 2 8770 \N +348071 2025-10-03 02:45:46.211398+00 2025-10-03 02:45:46.211406+00 f t TOTAL 53700.00 3 8770 \N +348072 2025-10-03 02:45:46.213556+00 2025-10-03 02:45:46.213565+00 f t ADELANTO 13200.00 4 8770 \N +345509 2025-10-02 13:47:11.904895+00 2025-10-02 13:47:11.904905+00 f t SUBTOTAL 0.00 1 8706 \N +345510 2025-10-02 13:47:11.908225+00 2025-10-02 13:47:11.908236+00 f t DESCUENTO 0.00 2 8706 \N +345511 2025-10-02 13:47:11.909618+00 2025-10-02 13:47:11.909623+00 f t TOTAL 0.00 3 8706 \N +345512 2025-10-02 13:47:11.910846+00 2025-10-02 13:47:11.910851+00 f t ADELANTO 0.00 4 8706 \N +345541 2025-10-02 14:03:08.252027+00 2025-10-02 14:03:08.252038+00 f t SUBTOTAL 13200.00 1 8707 \N +345542 2025-10-02 14:03:08.254001+00 2025-10-02 14:03:08.254007+00 f t DESCUENTO 0.00 2 8707 \N +345543 2025-10-02 14:03:08.255042+00 2025-10-02 14:03:08.255048+00 f t TOTAL 13200.00 3 8707 \N +345544 2025-10-02 14:03:08.256026+00 2025-10-02 14:03:08.256032+00 f t ADELANTO 13200.00 4 8707 \N +357789 2025-10-06 16:40:08.153802+00 2025-10-06 16:40:08.153811+00 f t SUBTOTAL 87400.00 1 8996 \N +357790 2025-10-06 16:40:08.17883+00 2025-10-06 16:40:08.17884+00 f t DESCUENTO 0.00 2 8996 \N +357791 2025-10-06 16:40:08.183437+00 2025-10-06 16:40:08.183447+00 f t TOTAL 87400.00 3 8996 \N +357792 2025-10-06 16:40:08.18587+00 2025-10-06 16:40:08.185877+00 f t ADELANTO 46900.00 4 8996 \N +345561 2025-10-02 14:06:32.263332+00 2025-10-02 14:06:32.263341+00 f t SUBTOTAL 55000.00 1 8708 \N +345562 2025-10-02 14:06:32.264865+00 2025-10-02 14:06:32.264872+00 f t DESCUENTO 0.00 2 8708 \N +345563 2025-10-02 14:06:32.265851+00 2025-10-02 14:06:32.265856+00 f t TOTAL 55000.00 3 8708 \N +345564 2025-10-02 14:06:32.266718+00 2025-10-02 14:06:32.266722+00 f t ADELANTO 11000.00 4 8708 \N +345569 2025-10-02 14:29:39.865705+00 2025-10-02 14:29:39.865714+00 f t SUBTOTAL 0.00 1 8709 \N +345570 2025-10-02 14:29:39.8672+00 2025-10-02 14:29:39.867212+00 f t DESCUENTO 0.00 2 8709 \N +345571 2025-10-02 14:29:39.868635+00 2025-10-02 14:29:39.868642+00 f t TOTAL 0.00 3 8709 \N +345572 2025-10-02 14:29:39.869922+00 2025-10-02 14:29:39.869929+00 f t ADELANTO 0.00 4 8709 \N +358205 2025-10-06 18:16:50.295122+00 2025-10-06 18:16:50.295151+00 f t SUBTOTAL 0.00 1 9005 \N +358206 2025-10-06 18:16:50.29745+00 2025-10-06 18:16:50.297457+00 f t DESCUENTO 0.00 2 9005 \N +358207 2025-10-06 18:16:50.298675+00 2025-10-06 18:16:50.298681+00 f t TOTAL 0.00 3 9005 \N +358208 2025-10-06 18:16:50.300579+00 2025-10-06 18:16:50.300588+00 f t ADELANTO 0.00 4 9005 \N +350289 2025-10-03 20:29:25.832633+00 2025-10-03 20:29:25.832642+00 f t SUBTOTAL 75000.00 1 8823 \N +350290 2025-10-03 20:29:25.833627+00 2025-10-03 20:29:25.833632+00 f t DESCUENTO 0.00 2 8823 \N +350291 2025-10-03 20:29:25.834252+00 2025-10-03 20:29:25.834257+00 f t TOTAL 75000.00 3 8823 \N +350292 2025-10-03 20:29:25.834808+00 2025-10-03 20:29:25.834813+00 f t ADELANTO 15000.00 4 8823 \N +358633 2025-10-06 19:52:02.798476+00 2025-10-06 19:52:02.798485+00 f t SUBTOTAL 0.00 1 9016 \N +358634 2025-10-06 19:52:02.800379+00 2025-10-06 19:52:02.800386+00 f t DESCUENTO 0.00 2 9016 \N +358635 2025-10-06 19:52:02.801552+00 2025-10-06 19:52:02.801558+00 f t TOTAL 0.00 3 9016 \N +345605 2025-10-02 14:43:46.223578+00 2025-10-02 14:43:46.22359+00 f t SUBTOTAL 46000.00 1 8710 \N +345606 2025-10-02 14:43:46.225256+00 2025-10-02 14:43:46.225264+00 f t DESCUENTO 0.00 2 8710 \N +345607 2025-10-02 14:43:46.226363+00 2025-10-02 14:43:46.22637+00 f t TOTAL 46000.00 3 8710 \N +345608 2025-10-02 14:43:46.227469+00 2025-10-02 14:43:46.227476+00 f t ADELANTO 11000.00 4 8710 \N +358636 2025-10-06 19:52:02.802723+00 2025-10-06 19:52:02.802728+00 f t ADELANTO 0.00 4 9016 \N +350809 2025-10-03 23:19:21.87948+00 2025-10-03 23:19:21.879494+00 f t SUBTOTAL 55000.00 1 8832 \N +350810 2025-10-03 23:19:21.881445+00 2025-10-03 23:19:21.881455+00 f t DESCUENTO 0.00 2 8832 \N +350811 2025-10-03 23:19:21.883014+00 2025-10-03 23:19:21.883025+00 f t TOTAL 55000.00 3 8832 \N +350812 2025-10-03 23:19:21.884429+00 2025-10-03 23:19:21.884438+00 f t ADELANTO 11000.00 4 8832 \N +350901 2025-10-04 00:37:45.844589+00 2025-10-04 00:37:45.844598+00 f t SUBTOTAL 0.00 1 8835 \N +350902 2025-10-04 00:37:45.846601+00 2025-10-04 00:37:45.846612+00 f t DESCUENTO 0.00 2 8835 \N +350903 2025-10-04 00:37:45.848763+00 2025-10-04 00:37:45.848769+00 f t TOTAL 0.00 3 8835 \N +350904 2025-10-04 00:37:45.850681+00 2025-10-04 00:37:45.850687+00 f t ADELANTO 0.00 4 8835 \N +350989 2025-10-04 00:42:03.977058+00 2025-10-04 00:42:03.977068+00 f t SUBTOTAL 46000.00 1 8837 \N +350990 2025-10-04 00:42:03.978749+00 2025-10-04 00:42:03.978756+00 f t DESCUENTO 0.00 2 8837 \N +350991 2025-10-04 00:42:03.979744+00 2025-10-04 00:42:03.979749+00 f t TOTAL 46000.00 3 8837 \N +350992 2025-10-04 00:42:03.980726+00 2025-10-04 00:42:03.980731+00 f t ADELANTO 11000.00 4 8837 \N +345669 2025-10-02 14:52:20.13882+00 2025-10-02 14:52:20.138829+00 f t SUBTOTAL 168900.00 1 8711 \N +345670 2025-10-02 14:52:20.140748+00 2025-10-02 14:52:20.140756+00 f t DESCUENTO 0.00 2 8711 \N +345671 2025-10-02 14:52:20.142516+00 2025-10-02 14:52:20.142524+00 f t TOTAL 168900.00 3 8711 \N +345672 2025-10-02 14:52:20.144026+00 2025-10-02 14:52:20.144031+00 f t ADELANTO 73400.00 4 8711 \N +352193 2025-10-04 20:17:48.310179+00 2025-10-04 20:17:48.310188+00 f t SUBTOTAL 46000.00 1 8869 \N +352194 2025-10-04 20:17:48.31168+00 2025-10-04 20:17:48.311686+00 f t DESCUENTO 0.00 2 8869 \N +352195 2025-10-04 20:17:48.312732+00 2025-10-04 20:17:48.312737+00 f t TOTAL 46000.00 3 8869 \N +352196 2025-10-04 20:17:48.314097+00 2025-10-04 20:17:48.314102+00 f t ADELANTO 11000.00 4 8869 \N +359785 2025-10-07 02:32:03.075284+00 2025-10-07 02:32:03.075295+00 f t SUBTOTAL 0.00 1 9048 \N +359786 2025-10-07 02:32:03.076957+00 2025-10-07 02:32:03.076964+00 f t DESCUENTO 0.00 2 9048 \N +359787 2025-10-07 02:32:03.078646+00 2025-10-07 02:32:03.078653+00 f t TOTAL 0.00 3 9048 \N +359788 2025-10-07 02:32:03.079876+00 2025-10-07 02:32:03.079882+00 f t ADELANTO 0.00 4 9048 \N +345709 2025-10-02 15:37:24.795222+00 2025-10-02 15:37:24.795233+00 f t SUBTOTAL 78000.00 1 8712 \N +345710 2025-10-02 15:37:24.797048+00 2025-10-02 15:37:24.797057+00 f t DESCUENTO 0.00 2 8712 \N +345711 2025-10-02 15:37:24.798361+00 2025-10-02 15:37:24.798369+00 f t TOTAL 78000.00 3 8712 \N +345712 2025-10-02 15:37:24.799743+00 2025-10-02 15:37:24.799751+00 f t ADELANTO 21500.00 4 8712 \N +345721 2025-10-02 15:40:54.95037+00 2025-10-02 15:40:54.950383+00 f t SUBTOTAL 46000.00 1 8713 \N +345722 2025-10-02 15:40:54.952484+00 2025-10-02 15:40:54.952494+00 f t DESCUENTO 0.00 2 8713 \N +345723 2025-10-02 15:40:54.954899+00 2025-10-02 15:40:54.95491+00 f t TOTAL 46000.00 3 8713 \N +345724 2025-10-02 15:40:54.956461+00 2025-10-02 15:40:54.956471+00 f t ADELANTO 11000.00 4 8713 \N +347097 2025-10-02 19:46:00.013593+00 2025-10-02 19:46:00.013605+00 f t SUBTOTAL 66000.00 1 8739 \N +347098 2025-10-02 19:46:00.015981+00 2025-10-02 19:46:00.015993+00 f t DESCUENTO 0.00 2 8739 \N +347099 2025-10-02 19:46:00.017735+00 2025-10-02 19:46:00.017745+00 f t TOTAL 66000.00 3 8739 \N +347100 2025-10-02 19:46:00.019353+00 2025-10-02 19:46:00.019363+00 f t ADELANTO 11000.00 4 8739 \N +347749 2025-10-03 01:38:43.51484+00 2025-10-03 01:38:43.514851+00 f t SUBTOTAL 55000.00 1 8761 \N +347750 2025-10-03 01:38:43.516741+00 2025-10-03 01:38:43.516747+00 f t DESCUENTO 0.00 2 8761 \N +347751 2025-10-03 01:38:43.517745+00 2025-10-03 01:38:43.517751+00 f t TOTAL 55000.00 3 8761 \N +347752 2025-10-03 01:38:43.518634+00 2025-10-03 01:38:43.51864+00 f t ADELANTO 11000.00 4 8761 \N +355825 2025-10-06 03:37:09.66435+00 2025-10-06 03:37:09.664359+00 f t SUBTOTAL 59200.00 1 8950 \N +355826 2025-10-06 03:37:09.666088+00 2025-10-06 03:37:09.666094+00 f t DESCUENTO 0.00 2 8950 \N +355827 2025-10-06 03:37:09.667159+00 2025-10-06 03:37:09.667165+00 f t TOTAL 59200.00 3 8950 \N +355828 2025-10-06 03:37:09.668136+00 2025-10-06 03:37:09.668141+00 f t ADELANTO 24200.00 4 8950 \N +372505 2025-10-11 14:32:42.900837+00 2025-10-11 14:32:42.900851+00 f t SUBTOTAL 0.00 1 9387 \N +372506 2025-10-11 14:32:42.903444+00 2025-10-11 14:32:42.903456+00 f t DESCUENTO 0.00 2 9387 \N +372507 2025-10-11 14:32:42.905069+00 2025-10-11 14:32:42.90508+00 f t TOTAL 0.00 3 9387 \N +372508 2025-10-11 14:32:42.906679+00 2025-10-11 14:32:42.906688+00 f t ADELANTO 0.00 4 9387 \N +348905 2025-10-03 13:11:29.851913+00 2025-10-03 13:11:29.851921+00 f t SUBTOTAL 55000.00 1 8785 \N +348906 2025-10-03 13:11:29.856242+00 2025-10-03 13:11:29.856253+00 f t DESCUENTO 0.00 2 8785 \N +348907 2025-10-03 13:11:29.857687+00 2025-10-03 13:11:29.857694+00 f t TOTAL 55000.00 3 8785 \N +348908 2025-10-03 13:11:29.85887+00 2025-10-03 13:11:29.858877+00 f t ADELANTO 11000.00 4 8785 \N +357205 2025-10-06 14:38:21.608139+00 2025-10-06 14:38:21.608148+00 f t SUBTOTAL 30000.00 1 8980 \N +357206 2025-10-06 14:38:21.610173+00 2025-10-06 14:38:21.610181+00 f t DESCUENTO 0.00 2 8980 \N +357207 2025-10-06 14:38:21.611681+00 2025-10-06 14:38:21.611686+00 f t TOTAL 30000.00 3 8980 \N +357208 2025-10-06 14:38:21.612802+00 2025-10-06 14:38:21.612807+00 f t ADELANTO 30000.00 4 8980 \N +349101 2025-10-03 13:52:24.116379+00 2025-10-03 13:52:24.116387+00 f t SUBTOTAL 55000.00 1 8797 \N +349102 2025-10-03 13:52:24.118185+00 2025-10-03 13:52:24.118192+00 f t DESCUENTO 0.00 2 8797 \N +349103 2025-10-03 13:52:24.11947+00 2025-10-03 13:52:24.119476+00 f t TOTAL 55000.00 3 8797 \N +349104 2025-10-03 13:52:24.120474+00 2025-10-03 13:52:24.12048+00 f t ADELANTO 11000.00 4 8797 \N +349197 2025-10-03 14:16:45.333484+00 2025-10-03 14:16:45.333492+00 f t SUBTOTAL 82000.00 1 8799 \N +349198 2025-10-03 14:16:45.335325+00 2025-10-03 14:16:45.335334+00 f t DESCUENTO 0.00 2 8799 \N +349199 2025-10-03 14:16:45.336711+00 2025-10-03 14:16:45.336719+00 f t TOTAL 82000.00 3 8799 \N +349200 2025-10-03 14:16:45.338029+00 2025-10-03 14:16:45.338039+00 f t ADELANTO 12000.00 4 8799 \N +349569 2025-10-03 15:49:02.064979+00 2025-10-03 15:49:02.064993+00 f t SUBTOTAL 78000.00 1 8806 \N +349570 2025-10-03 15:49:02.06724+00 2025-10-03 15:49:02.067257+00 f t DESCUENTO 0.00 2 8806 \N +349571 2025-10-03 15:49:02.069058+00 2025-10-03 15:49:02.069071+00 f t TOTAL 78000.00 3 8806 \N +349572 2025-10-03 15:49:02.070768+00 2025-10-03 15:49:02.070781+00 f t ADELANTO 21500.00 4 8806 \N +345853 2025-10-02 15:50:20.539762+00 2025-10-02 15:50:20.539773+00 f t SUBTOTAL 0.00 1 8715 \N +345854 2025-10-02 15:50:20.541672+00 2025-10-02 15:50:20.541684+00 f t DESCUENTO 0.00 2 8715 \N +345855 2025-10-02 15:50:20.543028+00 2025-10-02 15:50:20.543036+00 f t TOTAL 0.00 3 8715 \N +345856 2025-10-02 15:50:20.545425+00 2025-10-02 15:50:20.545434+00 f t ADELANTO 0.00 4 8715 \N +349849 2025-10-03 18:10:14.186264+00 2025-10-03 18:10:14.186273+00 f t SUBTOTAL 0.00 1 8813 \N +349850 2025-10-03 18:10:14.188149+00 2025-10-03 18:10:14.188157+00 f t DESCUENTO 0.00 2 8813 \N +349851 2025-10-03 18:10:14.18912+00 2025-10-03 18:10:14.189126+00 f t TOTAL 0.00 3 8813 \N +349852 2025-10-03 18:10:14.190362+00 2025-10-03 18:10:14.190369+00 f t ADELANTO 0.00 4 8813 \N +349941 2025-10-03 18:34:50.483964+00 2025-10-03 18:34:50.483973+00 f t SUBTOTAL 46000.00 1 8816 \N +349942 2025-10-03 18:34:50.490091+00 2025-10-03 18:34:50.490101+00 f t DESCUENTO 0.00 2 8816 \N +349943 2025-10-03 18:34:50.491793+00 2025-10-03 18:34:50.491801+00 f t TOTAL 46000.00 3 8816 \N +349944 2025-10-03 18:34:50.493376+00 2025-10-03 18:34:50.493385+00 f t ADELANTO 11000.00 4 8816 \N +350633 2025-10-03 21:17:14.603819+00 2025-10-03 21:17:14.603833+00 f t SUBTOTAL 70000.00 1 8828 \N +350634 2025-10-03 21:17:14.606535+00 2025-10-03 21:17:14.606544+00 f t DESCUENTO 0.00 2 8828 \N +350635 2025-10-03 21:17:14.60784+00 2025-10-03 21:17:14.607847+00 f t TOTAL 70000.00 3 8828 \N +350636 2025-10-03 21:17:14.608941+00 2025-10-03 21:17:14.608948+00 f t ADELANTO 19000.00 4 8828 \N +345905 2025-10-02 15:51:44.189884+00 2025-10-02 15:51:44.189898+00 f t SUBTOTAL 0.00 1 8714 \N +345906 2025-10-02 15:51:44.19193+00 2025-10-02 15:51:44.191937+00 f t DESCUENTO 0.00 2 8714 \N +345907 2025-10-02 15:51:44.193143+00 2025-10-02 15:51:44.193151+00 f t TOTAL 0.00 3 8714 \N +345908 2025-10-02 15:51:44.19419+00 2025-10-02 15:51:44.194196+00 f t ADELANTO 0.00 4 8714 \N +345921 2025-10-02 16:00:03.729817+00 2025-10-02 16:00:03.729834+00 f t SUBTOTAL 0.00 1 8717 \N +345922 2025-10-02 16:00:03.734346+00 2025-10-02 16:00:03.734361+00 f t DESCUENTO 0.00 2 8717 \N +345923 2025-10-02 16:00:03.737308+00 2025-10-02 16:00:03.737321+00 f t TOTAL 0.00 3 8717 \N +345924 2025-10-02 16:00:03.745124+00 2025-10-02 16:00:03.745138+00 f t ADELANTO 0.00 4 8717 \N +350997 2025-10-04 00:42:56.134707+00 2025-10-04 00:42:56.134715+00 f t SUBTOTAL 0.00 1 8838 \N +350998 2025-10-04 00:42:56.135986+00 2025-10-04 00:42:56.135992+00 f t DESCUENTO 0.00 2 8838 \N +350999 2025-10-04 00:42:56.137035+00 2025-10-04 00:42:56.137041+00 f t TOTAL 0.00 3 8838 \N +351000 2025-10-04 00:42:56.137961+00 2025-10-04 00:42:56.137966+00 f t ADELANTO 0.00 4 8838 \N +351261 2025-10-04 08:47:50.24963+00 2025-10-04 08:47:50.249639+00 f t SUBTOTAL 46000.00 1 8844 \N +351262 2025-10-04 08:47:50.251297+00 2025-10-04 08:47:50.251306+00 f t DESCUENTO 0.00 2 8844 \N +351263 2025-10-04 08:47:50.252437+00 2025-10-04 08:47:50.252442+00 f t TOTAL 46000.00 3 8844 \N +351264 2025-10-04 08:47:50.25344+00 2025-10-04 08:47:50.253445+00 f t ADELANTO 11000.00 4 8844 \N +351533 2025-10-04 15:09:58.530854+00 2025-10-04 15:09:58.530866+00 f t SUBTOTAL 70000.00 1 8851 \N +351534 2025-10-04 15:09:58.53259+00 2025-10-04 15:09:58.532596+00 f t DESCUENTO 0.00 2 8851 \N +351535 2025-10-04 15:09:58.533678+00 2025-10-04 15:09:58.533683+00 f t TOTAL 70000.00 3 8851 \N +351536 2025-10-04 15:09:58.53459+00 2025-10-04 15:09:58.534595+00 f t ADELANTO 19000.00 4 8851 \N +345985 2025-10-02 16:02:38.676488+00 2025-10-02 16:02:38.676501+00 f t SUBTOTAL 0.00 1 8716 \N +345986 2025-10-02 16:02:38.678629+00 2025-10-02 16:02:38.678639+00 f t DESCUENTO 0.00 2 8716 \N +345987 2025-10-02 16:02:38.680017+00 2025-10-02 16:02:38.680025+00 f t TOTAL 0.00 3 8716 \N +345988 2025-10-02 16:02:38.681263+00 2025-10-02 16:02:38.681269+00 f t ADELANTO 0.00 4 8716 \N +362649 2025-10-07 21:37:46.068244+00 2025-10-07 21:37:46.068255+00 f t SUBTOTAL 46000.00 1 9108 \N +346005 2025-10-02 16:11:29.879273+00 2025-10-02 16:11:29.879281+00 f t SUBTOTAL 13200.00 1 8718 \N +346006 2025-10-02 16:11:29.881099+00 2025-10-02 16:11:29.881107+00 f t DESCUENTO 0.00 2 8718 \N +346007 2025-10-02 16:11:29.882292+00 2025-10-02 16:11:29.882298+00 f t TOTAL 13200.00 3 8718 \N +346008 2025-10-02 16:11:29.883417+00 2025-10-02 16:11:29.883423+00 f t ADELANTO 13200.00 4 8718 \N +362650 2025-10-07 21:37:46.069925+00 2025-10-07 21:37:46.069932+00 f t DESCUENTO 0.00 2 9108 \N +362651 2025-10-07 21:37:46.07115+00 2025-10-07 21:37:46.071156+00 f t TOTAL 46000.00 3 9108 \N +362652 2025-10-07 21:37:46.072328+00 2025-10-07 21:37:46.072333+00 f t ADELANTO 11000.00 4 9108 \N +445645 2025-11-01 18:51:01.563957+00 2025-11-01 18:51:01.563965+00 f t TOTAL 90900.00 4 11212 \N +363185 2025-10-08 01:23:43.079252+00 2025-10-08 01:23:43.079262+00 f t SUBTOTAL 0.00 1 9128 \N +363186 2025-10-08 01:23:43.081134+00 2025-10-08 01:23:43.081141+00 f t DESCUENTO 0.00 2 9128 \N +363187 2025-10-08 01:23:43.082316+00 2025-10-08 01:23:43.082325+00 f t TOTAL 0.00 3 9128 \N +363188 2025-10-08 01:23:43.083402+00 2025-10-08 01:23:43.083408+00 f t ADELANTO 0.00 4 9128 \N +355585 2025-10-06 01:31:38.273255+00 2025-10-06 01:31:38.273263+00 f t SUBTOTAL 46000.00 1 8947 \N +355586 2025-10-06 01:31:38.274799+00 2025-10-06 01:31:38.274806+00 f t DESCUENTO 0.00 2 8947 \N +355587 2025-10-06 01:31:38.281382+00 2025-10-06 01:31:38.28139+00 f t TOTAL 46000.00 3 8947 \N +355588 2025-10-06 01:31:38.28423+00 2025-10-06 01:31:38.284238+00 f t ADELANTO 11000.00 4 8947 \N +363977 2025-10-08 12:12:28.220309+00 2025-10-08 12:12:28.220318+00 f t SUBTOTAL 0.00 1 9145 \N +363978 2025-10-08 12:12:28.221636+00 2025-10-08 12:12:28.221642+00 f t DESCUENTO 0.00 2 9145 \N +363979 2025-10-08 12:12:28.223011+00 2025-10-08 12:12:28.223019+00 f t TOTAL 0.00 3 9145 \N +363980 2025-10-08 12:12:28.224385+00 2025-10-08 12:12:28.224392+00 f t ADELANTO 0.00 4 9145 \N +356741 2025-10-06 11:52:35.16755+00 2025-10-06 11:52:35.167558+00 f t SUBTOTAL 100900.00 1 8966 \N +356742 2025-10-06 11:52:35.169167+00 2025-10-06 11:52:35.169176+00 f t DESCUENTO 0.00 2 8966 \N +356743 2025-10-06 11:52:35.170365+00 2025-10-06 11:52:35.170373+00 f t TOTAL 100900.00 3 8966 \N +356744 2025-10-06 11:52:35.171478+00 2025-10-06 11:52:35.171483+00 f t ADELANTO 60400.00 4 8966 \N +348817 2025-10-03 12:54:59.400689+00 2025-10-03 12:54:59.400698+00 f t SUBTOTAL 0.00 1 8788 \N +348818 2025-10-03 12:54:59.402724+00 2025-10-03 12:54:59.40273+00 f t DESCUENTO 0.00 2 8788 \N +348819 2025-10-03 12:54:59.404293+00 2025-10-03 12:54:59.4043+00 f t TOTAL 0.00 3 8788 \N +348820 2025-10-03 12:54:59.405303+00 2025-10-03 12:54:59.405308+00 f t ADELANTO 0.00 4 8788 \N +348913 2025-10-03 13:11:55.359475+00 2025-10-03 13:11:55.359488+00 f t SUBTOTAL 0.00 1 8791 \N +348914 2025-10-03 13:11:55.361354+00 2025-10-03 13:11:55.361365+00 f t DESCUENTO 0.00 2 8791 \N +348915 2025-10-03 13:11:55.362873+00 2025-10-03 13:11:55.362884+00 f t TOTAL 0.00 3 8791 \N +348916 2025-10-03 13:11:55.364333+00 2025-10-03 13:11:55.364341+00 f t ADELANTO 0.00 4 8791 \N +364461 2025-10-08 16:29:17.974018+00 2025-10-08 16:29:17.974032+00 f t SUBTOTAL 55000.00 1 9124 \N +364462 2025-10-08 16:29:17.976922+00 2025-10-08 16:29:17.976933+00 f t DESCUENTO 0.00 2 9124 \N +364463 2025-10-08 16:29:17.978687+00 2025-10-08 16:29:17.978699+00 f t TOTAL 55000.00 3 9124 \N +364464 2025-10-08 16:29:17.98052+00 2025-10-08 16:29:17.98053+00 f t ADELANTO 11000.00 4 9124 \N +346113 2025-10-02 16:39:56.62623+00 2025-10-02 16:39:56.626239+00 f t SUBTOTAL 115000.00 1 8720 \N +346114 2025-10-02 16:39:56.628178+00 2025-10-02 16:39:56.628185+00 f t DESCUENTO 0.00 2 8720 \N +346115 2025-10-02 16:39:56.629382+00 2025-10-02 16:39:56.629388+00 f t TOTAL 115000.00 3 8720 \N +346116 2025-10-02 16:39:56.63074+00 2025-10-02 16:39:56.630745+00 f t ADELANTO 25000.00 4 8720 \N +346121 2025-10-02 16:43:01.847738+00 2025-10-02 16:43:01.847748+00 f t SUBTOTAL 0.00 1 8721 \N +346122 2025-10-02 16:43:01.849322+00 2025-10-02 16:43:01.849335+00 f t DESCUENTO 0.00 2 8721 \N +346123 2025-10-02 16:43:01.850705+00 2025-10-02 16:43:01.850711+00 f t TOTAL 0.00 3 8721 \N +346124 2025-10-02 16:43:01.851921+00 2025-10-02 16:43:01.851926+00 f t ADELANTO 0.00 4 8721 \N +358209 2025-10-06 18:25:53.681829+00 2025-10-06 18:25:53.68184+00 f t SUBTOTAL 70000.00 1 9002 \N +358210 2025-10-06 18:25:53.684126+00 2025-10-06 18:25:53.684137+00 f t DESCUENTO 0.00 2 9002 \N +358211 2025-10-06 18:25:53.685742+00 2025-10-06 18:25:53.685751+00 f t TOTAL 70000.00 3 9002 \N +358212 2025-10-06 18:25:53.687076+00 2025-10-06 18:25:53.687084+00 f t ADELANTO 19000.00 4 9002 \N +350461 2025-10-03 20:39:33.992693+00 2025-10-03 20:39:33.992701+00 f t SUBTOTAL 55000.00 1 8824 \N +350462 2025-10-03 20:39:33.99427+00 2025-10-03 20:39:33.994276+00 f t DESCUENTO 0.00 2 8824 \N +350463 2025-10-03 20:39:33.995359+00 2025-10-03 20:39:33.995364+00 f t TOTAL 55000.00 3 8824 \N +350464 2025-10-03 20:39:33.996483+00 2025-10-03 20:39:33.996488+00 f t ADELANTO 11000.00 4 8824 \N +346193 2025-10-02 16:45:48.979512+00 2025-10-02 16:45:48.979521+00 f t SUBTOTAL 54000.00 1 8722 \N +346194 2025-10-02 16:45:48.981305+00 2025-10-02 16:45:48.981312+00 f t DESCUENTO 0.00 2 8722 \N +346195 2025-10-02 16:45:48.982888+00 2025-10-02 16:45:48.982901+00 f t TOTAL 54000.00 3 8722 \N +346196 2025-10-02 16:45:48.984042+00 2025-10-02 16:45:48.984048+00 f t ADELANTO 13500.00 4 8722 \N +350733 2025-10-03 22:32:31.566907+00 2025-10-03 22:32:31.566915+00 f t SUBTOTAL 107000.00 1 8831 \N +350734 2025-10-03 22:32:31.568659+00 2025-10-03 22:32:31.568665+00 f t DESCUENTO 0.00 2 8831 \N +350735 2025-10-03 22:32:31.56987+00 2025-10-03 22:32:31.569876+00 f t TOTAL 107000.00 3 8831 \N +350736 2025-10-03 22:32:31.570891+00 2025-10-03 22:32:31.570896+00 f t ADELANTO 12000.00 4 8831 \N +359113 2025-10-06 21:23:27.185115+00 2025-10-06 21:23:27.185123+00 f t SUBTOTAL 0.00 1 9027 \N +359114 2025-10-06 21:23:27.186336+00 2025-10-06 21:23:27.186343+00 f t DESCUENTO 0.00 2 9027 \N +359115 2025-10-06 21:23:27.187448+00 2025-10-06 21:23:27.187456+00 f t TOTAL 0.00 3 9027 \N +359116 2025-10-06 21:23:27.188453+00 2025-10-06 21:23:27.188458+00 f t ADELANTO 0.00 4 9027 \N +359369 2025-10-06 23:43:42.792613+00 2025-10-06 23:43:42.792623+00 f t SUBTOTAL 132000.00 1 9040 \N +359370 2025-10-06 23:43:42.795808+00 2025-10-06 23:43:42.795816+00 f t DESCUENTO 0.00 2 9040 \N +359371 2025-10-06 23:43:42.797097+00 2025-10-06 23:43:42.797104+00 f t TOTAL 132000.00 3 9040 \N +359372 2025-10-06 23:43:42.798256+00 2025-10-06 23:43:42.798263+00 f t ADELANTO 35000.00 4 9040 \N +346245 2025-10-02 16:49:00.691354+00 2025-10-02 16:49:00.691362+00 f t SUBTOTAL 46000.00 1 8723 \N +346246 2025-10-02 16:49:00.692938+00 2025-10-02 16:49:00.692946+00 f t DESCUENTO 0.00 2 8723 \N +346247 2025-10-02 16:49:00.694109+00 2025-10-02 16:49:00.694115+00 f t TOTAL 46000.00 3 8723 \N +346248 2025-10-02 16:49:00.695327+00 2025-10-02 16:49:00.695333+00 f t ADELANTO 11000.00 4 8723 \N +359577 2025-10-07 00:49:24.181075+00 2025-10-07 00:49:24.181084+00 f t SUBTOTAL 140000.00 1 9043 \N +359578 2025-10-07 00:49:24.184187+00 2025-10-07 00:49:24.184195+00 f t DESCUENTO 0.00 2 9043 \N +359579 2025-10-07 00:49:24.185435+00 2025-10-07 00:49:24.185441+00 f t TOTAL 140000.00 3 9043 \N +359580 2025-10-07 00:49:24.186567+00 2025-10-07 00:49:24.186572+00 f t ADELANTO 38000.00 4 9043 \N +346257 2025-10-02 16:50:31.345543+00 2025-10-02 16:50:31.345555+00 f t SUBTOTAL 39000.00 1 8724 \N +346258 2025-10-02 16:50:31.352278+00 2025-10-02 16:50:31.352287+00 f t DESCUENTO 0.00 2 8724 \N +346259 2025-10-02 16:50:31.353708+00 2025-10-02 16:50:31.353713+00 f t TOTAL 39000.00 3 8724 \N +346260 2025-10-02 16:50:31.354898+00 2025-10-02 16:50:31.354904+00 f t ADELANTO 39000.00 4 8724 \N +347637 2025-10-03 00:35:12.487458+00 2025-10-03 00:35:12.487467+00 f t SUBTOTAL 0.00 1 8757 \N +347638 2025-10-03 00:35:12.489359+00 2025-10-03 00:35:12.489366+00 f t DESCUENTO 0.00 2 8757 \N +347639 2025-10-03 00:35:12.490375+00 2025-10-03 00:35:12.490381+00 f t TOTAL 0.00 3 8757 \N +347640 2025-10-03 00:35:12.491403+00 2025-10-03 00:35:12.491408+00 f t ADELANTO 0.00 4 8757 \N +347873 2025-10-03 01:48:36.704655+00 2025-10-03 01:48:36.704665+00 f t SUBTOTAL 0.00 1 8765 \N +347874 2025-10-03 01:48:36.705989+00 2025-10-03 01:48:36.705996+00 f t DESCUENTO 0.00 2 8765 \N +347875 2025-10-03 01:48:36.707255+00 2025-10-03 01:48:36.707266+00 f t TOTAL 0.00 3 8765 \N +347876 2025-10-03 01:48:36.708477+00 2025-10-03 01:48:36.708483+00 f t ADELANTO 0.00 4 8765 \N +348169 2025-10-03 03:40:23.531474+00 2025-10-03 03:40:23.531482+00 f t SUBTOTAL 55000.00 1 8772 \N +348170 2025-10-03 03:40:23.533157+00 2025-10-03 03:40:23.533164+00 f t DESCUENTO 0.00 2 8772 \N +348171 2025-10-03 03:40:23.534222+00 2025-10-03 03:40:23.534229+00 f t TOTAL 55000.00 3 8772 \N +348172 2025-10-03 03:40:23.53538+00 2025-10-03 03:40:23.535385+00 f t ADELANTO 11000.00 4 8772 \N +348449 2025-10-03 10:14:21.292396+00 2025-10-03 10:14:21.292406+00 f t SUBTOTAL 194000.00 1 8779 \N +348450 2025-10-03 10:14:21.294037+00 2025-10-03 10:14:21.294044+00 f t DESCUENTO 0.00 2 8779 \N +348451 2025-10-03 10:14:21.295206+00 2025-10-03 10:14:21.295211+00 f t TOTAL 194000.00 3 8779 \N +348452 2025-10-03 10:14:21.296124+00 2025-10-03 10:14:21.29613+00 f t ADELANTO 51500.00 4 8779 \N +349113 2025-10-03 14:07:49.646728+00 2025-10-03 14:07:49.646738+00 f t SUBTOTAL 75000.00 1 8745 \N +349114 2025-10-03 14:07:49.648539+00 2025-10-03 14:07:49.648546+00 f t DESCUENTO 0.00 2 8745 \N +346393 2025-10-02 16:55:09.082909+00 2025-10-02 16:55:09.082917+00 f t SUBTOTAL 153900.00 1 8725 \N +346394 2025-10-02 16:55:09.084429+00 2025-10-02 16:55:09.084435+00 f t DESCUENTO 0.00 2 8725 \N +346395 2025-10-02 16:55:09.085584+00 2025-10-02 16:55:09.08559+00 f t TOTAL 153900.00 3 8725 \N +346396 2025-10-02 16:55:09.086546+00 2025-10-02 16:55:09.086552+00 f t ADELANTO 113400.00 4 8725 \N +349115 2025-10-03 14:07:49.649916+00 2025-10-03 14:07:49.649923+00 f t TOTAL 75000.00 3 8745 \N +349116 2025-10-03 14:07:49.650951+00 2025-10-03 14:07:49.650957+00 f t ADELANTO 15000.00 4 8745 \N +349213 2025-10-03 14:20:01.305531+00 2025-10-03 14:20:01.305541+00 f t SUBTOTAL 0.00 1 8801 \N +349214 2025-10-03 14:20:01.308087+00 2025-10-03 14:20:01.308096+00 f t DESCUENTO 0.00 2 8801 \N +349215 2025-10-03 14:20:01.310221+00 2025-10-03 14:20:01.310233+00 f t TOTAL 0.00 3 8801 \N +349216 2025-10-03 14:20:01.312205+00 2025-10-03 14:20:01.312214+00 f t ADELANTO 0.00 4 8801 \N +349581 2025-10-03 15:58:42.035709+00 2025-10-03 15:58:42.035721+00 f t SUBTOTAL 55000.00 1 8807 \N +349582 2025-10-03 15:58:42.037523+00 2025-10-03 15:58:42.037533+00 f t DESCUENTO 0.00 2 8807 \N +349583 2025-10-03 15:58:42.038821+00 2025-10-03 15:58:42.038828+00 f t TOTAL 55000.00 3 8807 \N +349584 2025-10-03 15:58:42.039847+00 2025-10-03 15:58:42.039853+00 f t ADELANTO 11000.00 4 8807 \N +349769 2025-10-03 17:56:09.568603+00 2025-10-03 17:56:09.568613+00 f t SUBTOTAL 47000.00 1 8812 \N +349770 2025-10-03 17:56:09.570844+00 2025-10-03 17:56:09.570853+00 f t DESCUENTO 0.00 2 8812 \N +349771 2025-10-03 17:56:09.572266+00 2025-10-03 17:56:09.572272+00 f t TOTAL 47000.00 3 8812 \N +349772 2025-10-03 17:56:09.573638+00 2025-10-03 17:56:09.573645+00 f t ADELANTO 12000.00 4 8812 \N +349857 2025-10-03 18:16:17.895898+00 2025-10-03 18:16:17.895911+00 f t SUBTOTAL 80000.00 1 8808 \N +349858 2025-10-03 18:16:17.897876+00 2025-10-03 18:16:17.897887+00 f t DESCUENTO 0.00 2 8808 \N +349859 2025-10-03 18:16:17.899641+00 2025-10-03 18:16:17.899648+00 f t TOTAL 80000.00 3 8808 \N +349860 2025-10-03 18:16:17.901456+00 2025-10-03 18:16:17.901463+00 f t ADELANTO 12000.00 4 8808 \N +346445 2025-10-02 16:56:46.992951+00 2025-10-02 16:56:46.992959+00 f t SUBTOTAL 46000.00 1 8726 \N +346446 2025-10-02 16:56:46.994443+00 2025-10-02 16:56:46.99445+00 f t DESCUENTO 0.00 2 8726 \N +346447 2025-10-02 16:56:46.99567+00 2025-10-02 16:56:46.995676+00 f t TOTAL 46000.00 3 8726 \N +346448 2025-10-02 16:56:46.996679+00 2025-10-02 16:56:46.996684+00 f t ADELANTO 11000.00 4 8726 \N +346473 2025-10-02 16:58:27.762336+00 2025-10-02 16:58:27.762345+00 f t SUBTOTAL 110000.00 1 8719 \N +346474 2025-10-02 16:58:27.763952+00 2025-10-02 16:58:27.763957+00 f t DESCUENTO 0.00 2 8719 \N +346475 2025-10-02 16:58:27.76546+00 2025-10-02 16:58:27.765466+00 f t TOTAL 110000.00 3 8719 \N +346476 2025-10-02 16:58:27.766584+00 2025-10-02 16:58:27.766589+00 f t ADELANTO 22000.00 4 8719 \N +346485 2025-10-02 17:27:42.986318+00 2025-10-02 17:27:42.986327+00 f t SUBTOTAL 46000.00 1 8727 \N +346486 2025-10-02 17:27:42.989463+00 2025-10-02 17:27:42.98947+00 f t DESCUENTO 0.00 2 8727 \N +346487 2025-10-02 17:27:42.990939+00 2025-10-02 17:27:42.990945+00 f t TOTAL 46000.00 3 8727 \N +346488 2025-10-02 17:27:42.9924+00 2025-10-02 17:27:42.992407+00 f t ADELANTO 11000.00 4 8727 \N +346521 2025-10-02 17:32:44.325728+00 2025-10-02 17:32:44.325736+00 f t SUBTOTAL 70000.00 1 8729 \N +346522 2025-10-02 17:32:44.331753+00 2025-10-02 17:32:44.331764+00 f t DESCUENTO 0.00 2 8729 \N +346523 2025-10-02 17:32:44.333278+00 2025-10-02 17:32:44.333284+00 f t TOTAL 70000.00 3 8729 \N +346524 2025-10-02 17:32:44.334437+00 2025-10-02 17:32:44.334443+00 f t ADELANTO 19000.00 4 8729 \N +346529 2025-10-02 17:46:53.48039+00 2025-10-02 17:46:53.480398+00 f t SUBTOTAL 0.00 1 8730 \N +346530 2025-10-02 17:46:53.481611+00 2025-10-02 17:46:53.481617+00 f t DESCUENTO 0.00 2 8730 \N +346531 2025-10-02 17:46:53.48263+00 2025-10-02 17:46:53.482635+00 f t TOTAL 0.00 3 8730 \N +346532 2025-10-02 17:46:53.483742+00 2025-10-02 17:46:53.483747+00 f t ADELANTO 0.00 4 8730 \N +351721 2025-10-04 15:47:09.76691+00 2025-10-04 15:47:09.766918+00 f t SUBTOTAL 13200.00 1 8854 \N +351722 2025-10-04 15:47:09.777245+00 2025-10-04 15:47:09.777253+00 f t DESCUENTO 0.00 2 8854 \N +351723 2025-10-04 15:47:09.778546+00 2025-10-04 15:47:09.778551+00 f t TOTAL 13200.00 3 8854 \N +351724 2025-10-04 15:47:09.779585+00 2025-10-04 15:47:09.77959+00 f t ADELANTO 13200.00 4 8854 \N +351805 2025-10-04 15:51:23.663593+00 2025-10-04 15:51:23.663601+00 f t SUBTOTAL 30000.00 1 8856 \N +351806 2025-10-04 15:51:23.665277+00 2025-10-04 15:51:23.665285+00 f t DESCUENTO 0.00 2 8856 \N +351807 2025-10-04 15:51:23.666445+00 2025-10-04 15:51:23.666454+00 f t TOTAL 30000.00 3 8856 \N +351808 2025-10-04 15:51:23.667877+00 2025-10-04 15:51:23.667884+00 f t ADELANTO 30000.00 4 8856 \N +346557 2025-10-02 17:51:34.015666+00 2025-10-02 17:51:34.015674+00 f t SUBTOTAL 46000.00 1 8731 \N +346558 2025-10-02 17:51:34.017174+00 2025-10-02 17:51:34.01718+00 f t DESCUENTO 0.00 2 8731 \N +346559 2025-10-02 17:51:34.018418+00 2025-10-02 17:51:34.018427+00 f t TOTAL 46000.00 3 8731 \N +346560 2025-10-02 17:51:34.020113+00 2025-10-02 17:51:34.020119+00 f t ADELANTO 11000.00 4 8731 \N +346561 2025-10-02 18:06:47.688559+00 2025-10-02 18:06:47.688567+00 f t SUBTOTAL 94000.00 1 8702 \N +346562 2025-10-02 18:06:47.690242+00 2025-10-02 18:06:47.690249+00 f t DESCUENTO 0.00 2 8702 \N +346563 2025-10-02 18:06:47.691388+00 2025-10-02 18:06:47.691394+00 f t TOTAL 94000.00 3 8702 \N +346564 2025-10-02 18:06:47.692431+00 2025-10-02 18:06:47.692435+00 f t ADELANTO 27000.00 4 8702 \N +351985 2025-10-04 17:47:21.592387+00 2025-10-04 17:47:21.592396+00 f t SUBTOTAL 46000.00 1 8860 \N +351986 2025-10-04 17:47:21.594138+00 2025-10-04 17:47:21.594146+00 f t DESCUENTO 0.00 2 8860 \N +351987 2025-10-04 17:47:21.595499+00 2025-10-04 17:47:21.595505+00 f t TOTAL 46000.00 3 8860 \N +351988 2025-10-04 17:47:21.596638+00 2025-10-04 17:47:21.596644+00 f t ADELANTO 11000.00 4 8860 \N +346813 2025-10-02 18:54:08.405163+00 2025-10-02 18:54:08.405172+00 f t SUBTOTAL 46000.00 1 8735 \N +346814 2025-10-02 18:54:08.406759+00 2025-10-02 18:54:08.406766+00 f t DESCUENTO 0.00 2 8735 \N +346815 2025-10-02 18:54:08.407888+00 2025-10-02 18:54:08.407894+00 f t TOTAL 46000.00 3 8735 \N +346816 2025-10-02 18:54:08.408817+00 2025-10-02 18:54:08.408822+00 f t ADELANTO 11000.00 4 8735 \N +354705 2025-10-05 19:41:16.816448+00 2025-10-05 19:41:16.816457+00 f t SUBTOTAL 99400.00 1 8929 \N +354706 2025-10-05 19:41:16.81848+00 2025-10-05 19:41:16.818491+00 f t DESCUENTO 0.00 2 8929 \N +354707 2025-10-05 19:41:16.819927+00 2025-10-05 19:41:16.819935+00 f t TOTAL 99400.00 3 8929 \N +354708 2025-10-05 19:41:16.82133+00 2025-10-05 19:41:16.821336+00 f t ADELANTO 58900.00 4 8929 \N +347113 2025-10-02 20:10:43.547097+00 2025-10-02 20:10:43.547109+00 f t SUBTOTAL 78000.00 1 8740 \N +347114 2025-10-02 20:10:43.549087+00 2025-10-02 20:10:43.549097+00 f t DESCUENTO 0.00 2 8740 \N +347115 2025-10-02 20:10:43.550297+00 2025-10-02 20:10:43.550304+00 f t TOTAL 78000.00 3 8740 \N +347116 2025-10-02 20:10:43.551444+00 2025-10-02 20:10:43.551451+00 f t ADELANTO 21500.00 4 8740 \N +389497 2025-10-17 02:44:05.40568+00 2025-10-17 02:44:05.405693+00 f t SUBTOTAL 55000.00 1 9860 \N +389498 2025-10-17 02:44:05.4077+00 2025-10-17 02:44:05.407711+00 f t DESCUENTO 0.00 2 9860 \N +389499 2025-10-17 02:44:05.409397+00 2025-10-17 02:44:05.409408+00 f t TOTAL 55000.00 3 9860 \N +389500 2025-10-17 02:44:05.410844+00 2025-10-17 02:44:05.410854+00 f t ADELANTO 11000.00 4 9860 \N +355953 2025-10-06 04:38:16.259814+00 2025-10-06 04:38:16.259824+00 f t SUBTOTAL 0.00 1 8952 \N +355954 2025-10-06 04:38:16.261829+00 2025-10-06 04:38:16.261836+00 f t DESCUENTO 0.00 2 8952 \N +355955 2025-10-06 04:38:16.262999+00 2025-10-06 04:38:16.263006+00 f t TOTAL 0.00 3 8952 \N +355956 2025-10-06 04:38:16.26474+00 2025-10-06 04:38:16.264745+00 f t ADELANTO 0.00 4 8952 \N +363485 2025-10-08 02:13:11.360817+00 2025-10-08 02:13:11.360826+00 f t SUBTOTAL 100900.00 1 9133 \N +363486 2025-10-08 02:13:11.362908+00 2025-10-08 02:13:11.362915+00 f t DESCUENTO 0.00 2 9133 \N +363487 2025-10-08 02:13:11.364185+00 2025-10-08 02:13:11.364192+00 f t TOTAL 100900.00 3 9133 \N +363488 2025-10-08 02:13:11.365343+00 2025-10-08 02:13:11.365349+00 f t ADELANTO 60400.00 4 9133 \N +348273 2025-10-03 05:47:12.62508+00 2025-10-03 05:47:12.625089+00 f t SUBTOTAL 46000.00 1 8776 \N +348274 2025-10-03 05:47:12.629328+00 2025-10-03 05:47:12.629335+00 f t DESCUENTO 0.00 2 8776 \N +348275 2025-10-03 05:47:12.630613+00 2025-10-03 05:47:12.630618+00 f t TOTAL 46000.00 3 8776 \N +348276 2025-10-03 05:47:12.631871+00 2025-10-03 05:47:12.631876+00 f t ADELANTO 11000.00 4 8776 \N +348457 2025-10-03 11:08:36.179549+00 2025-10-03 11:08:36.179559+00 f t SUBTOTAL 0.00 1 8780 \N +348458 2025-10-03 11:08:36.181018+00 2025-10-03 11:08:36.181025+00 f t DESCUENTO 0.00 2 8780 \N +348459 2025-10-03 11:08:36.182136+00 2025-10-03 11:08:36.182144+00 f t TOTAL 0.00 3 8780 \N +348460 2025-10-03 11:08:36.18348+00 2025-10-03 11:08:36.183489+00 f t ADELANTO 0.00 4 8780 \N +364369 2025-10-08 15:29:59.073153+00 2025-10-08 15:29:59.073164+00 f t SUBTOTAL 30000.00 1 9158 \N +364370 2025-10-08 15:29:59.07545+00 2025-10-08 15:29:59.075461+00 f t DESCUENTO 0.00 2 9158 \N +364371 2025-10-08 15:29:59.077061+00 2025-10-08 15:29:59.077068+00 f t TOTAL 30000.00 3 9158 \N +364372 2025-10-08 15:29:59.078366+00 2025-10-08 15:29:59.078373+00 f t ADELANTO 30000.00 4 9158 \N +357521 2025-10-06 15:37:05.208597+00 2025-10-06 15:37:05.208607+00 f t SUBTOTAL 0.00 1 8988 \N +357522 2025-10-06 15:37:05.212271+00 2025-10-06 15:37:05.212279+00 f t DESCUENTO 0.00 2 8988 \N +357523 2025-10-06 15:37:05.213686+00 2025-10-06 15:37:05.213692+00 f t TOTAL 0.00 3 8988 \N +357524 2025-10-06 15:37:05.214921+00 2025-10-06 15:37:05.214928+00 f t ADELANTO 0.00 4 8988 \N +357625 2025-10-06 16:12:15.776083+00 2025-10-06 16:12:15.776097+00 f t SUBTOTAL 0.00 1 8992 \N +357626 2025-10-06 16:12:15.778804+00 2025-10-06 16:12:15.778815+00 f t DESCUENTO 0.00 2 8992 \N +357627 2025-10-06 16:12:15.780294+00 2025-10-06 16:12:15.780303+00 f t TOTAL 0.00 3 8992 \N +357628 2025-10-06 16:12:15.781534+00 2025-10-06 16:12:15.781541+00 f t ADELANTO 0.00 4 8992 \N +357801 2025-10-06 16:53:42.169058+00 2025-10-06 16:53:42.169067+00 f t SUBTOTAL 68000.00 1 8997 \N +357802 2025-10-06 16:53:42.17086+00 2025-10-06 16:53:42.170867+00 f t DESCUENTO 0.00 2 8997 \N +357803 2025-10-06 16:53:42.172294+00 2025-10-06 16:53:42.1723+00 f t TOTAL 68000.00 3 8997 \N +357804 2025-10-06 16:53:42.173475+00 2025-10-06 16:53:42.173482+00 f t ADELANTO 13000.00 4 8997 \N +364869 2025-10-08 18:30:26.510753+00 2025-10-08 18:30:26.510761+00 f t SUBTOTAL 120000.00 1 9172 \N +364870 2025-10-08 18:30:26.512289+00 2025-10-08 18:30:26.512296+00 f t DESCUENTO 0.00 2 9172 \N +364871 2025-10-08 18:30:26.5134+00 2025-10-08 18:30:26.513405+00 f t TOTAL 120000.00 3 9172 \N +364872 2025-10-08 18:30:26.514527+00 2025-10-08 18:30:26.514533+00 f t ADELANTO 120000.00 4 9172 \N +349865 2025-10-03 18:30:12.468585+00 2025-10-03 18:30:12.468599+00 f t SUBTOTAL 0.00 1 8814 \N +349866 2025-10-03 18:30:12.470301+00 2025-10-03 18:30:12.47031+00 f t DESCUENTO 0.00 2 8814 \N +349867 2025-10-03 18:30:12.471786+00 2025-10-03 18:30:12.471793+00 f t TOTAL 0.00 3 8814 \N +349868 2025-10-03 18:30:12.473082+00 2025-10-03 18:30:12.47309+00 f t ADELANTO 0.00 4 8814 \N +365393 2025-10-08 21:08:22.185836+00 2025-10-08 21:08:22.185846+00 f t SUBTOTAL 0.00 1 9191 \N +365394 2025-10-08 21:08:22.187121+00 2025-10-08 21:08:22.187149+00 f t DESCUENTO 0.00 2 9191 \N +365395 2025-10-08 21:08:22.188306+00 2025-10-08 21:08:22.188314+00 f t TOTAL 0.00 3 9191 \N +365396 2025-10-08 21:08:22.189224+00 2025-10-08 21:08:22.189231+00 f t ADELANTO 0.00 4 9191 \N +365721 2025-10-08 22:47:56.621706+00 2025-10-08 22:47:56.621715+00 f t SUBTOTAL 0.00 1 9202 \N +359121 2025-10-06 21:49:31.36535+00 2025-10-06 21:49:31.365359+00 f t SUBTOTAL 0.00 1 9028 \N +359122 2025-10-06 21:49:31.366517+00 2025-10-06 21:49:31.366522+00 f t DESCUENTO 0.00 2 9028 \N +359123 2025-10-06 21:49:31.367468+00 2025-10-06 21:49:31.367473+00 f t TOTAL 0.00 3 9028 \N +359124 2025-10-06 21:49:31.36837+00 2025-10-06 21:49:31.368376+00 f t ADELANTO 0.00 4 9028 \N +359197 2025-10-06 21:58:08.84579+00 2025-10-06 21:58:08.845798+00 f t SUBTOTAL 54000.00 1 9030 \N +359198 2025-10-06 21:58:08.847354+00 2025-10-06 21:58:08.847359+00 f t DESCUENTO 0.00 2 9030 \N +359199 2025-10-06 21:58:08.848399+00 2025-10-06 21:58:08.848405+00 f t TOTAL 54000.00 3 9030 \N +359200 2025-10-06 21:58:08.849601+00 2025-10-06 21:58:08.84961+00 f t ADELANTO 13500.00 4 9030 \N +365722 2025-10-08 22:47:56.623793+00 2025-10-08 22:47:56.6238+00 f t DESCUENTO 0.00 2 9202 \N +365723 2025-10-08 22:47:56.624892+00 2025-10-08 22:47:56.624899+00 f t TOTAL 0.00 3 9202 \N +365724 2025-10-08 22:47:56.625965+00 2025-10-08 22:47:56.625971+00 f t ADELANTO 0.00 4 9202 \N +351993 2025-10-04 17:58:13.859824+00 2025-10-04 17:58:13.859836+00 f t SUBTOTAL 0.00 1 8862 \N +351994 2025-10-04 17:58:13.861531+00 2025-10-04 17:58:13.861538+00 f t DESCUENTO 0.00 2 8862 \N +351995 2025-10-04 17:58:13.862834+00 2025-10-04 17:58:13.862841+00 f t TOTAL 0.00 3 8862 \N +351996 2025-10-04 17:58:13.863848+00 2025-10-04 17:58:13.863854+00 f t ADELANTO 0.00 4 8862 \N +352329 2025-10-04 21:57:01.75583+00 2025-10-04 21:57:01.755838+00 f t SUBTOTAL 55000.00 1 8873 \N +352330 2025-10-04 21:57:01.757315+00 2025-10-04 21:57:01.757322+00 f t DESCUENTO 0.00 2 8873 \N +352331 2025-10-04 21:57:01.758378+00 2025-10-04 21:57:01.758383+00 f t TOTAL 55000.00 3 8873 \N +352332 2025-10-04 21:57:01.759393+00 2025-10-04 21:57:01.759398+00 f t ADELANTO 11000.00 4 8873 \N +445646 2025-11-01 18:51:01.565323+00 2025-11-01 18:51:01.565331+00 f t ADELANTO 22000.00 5 11212 \N +535713 2025-11-23 18:47:48.059096+00 2025-11-23 18:47:48.059106+00 f t COSTO_SERVICIO 0.00 2 13307 \N +466552 2025-11-07 22:09:37.018332+00 2025-11-07 22:09:37.018342+00 f t SUBTOTAL 0.00 1 11696 \N +466553 2025-11-07 22:09:37.01988+00 2025-11-07 22:09:37.019887+00 f t COSTO_SERVICIO 0.00 2 11696 \N +352365 2025-10-04 22:33:24.485947+00 2025-10-04 22:33:24.485956+00 f t SUBTOTAL 46000.00 1 8875 \N +352366 2025-10-04 22:33:24.488441+00 2025-10-04 22:33:24.488449+00 f t DESCUENTO 0.00 2 8875 \N +352367 2025-10-04 22:33:24.489821+00 2025-10-04 22:33:24.489828+00 f t TOTAL 46000.00 3 8875 \N +352368 2025-10-04 22:33:24.491272+00 2025-10-04 22:33:24.491278+00 f t ADELANTO 11000.00 4 8875 \N +355017 2025-10-05 20:33:35.767411+00 2025-10-05 20:33:35.767419+00 f t SUBTOTAL 54000.00 1 8933 \N +355018 2025-10-05 20:33:35.769253+00 2025-10-05 20:33:35.769259+00 f t DESCUENTO 0.00 2 8933 \N +355019 2025-10-05 20:33:35.774108+00 2025-10-05 20:33:35.774114+00 f t TOTAL 54000.00 3 8933 \N +355020 2025-10-05 20:33:35.775437+00 2025-10-05 20:33:35.775442+00 f t ADELANTO 13500.00 4 8933 \N +355169 2025-10-05 22:01:15.818097+00 2025-10-05 22:01:15.818105+00 f t SUBTOTAL 55000.00 1 8937 \N +355170 2025-10-05 22:01:15.819744+00 2025-10-05 22:01:15.819755+00 f t DESCUENTO 0.00 2 8937 \N +355171 2025-10-05 22:01:15.821162+00 2025-10-05 22:01:15.82117+00 f t TOTAL 55000.00 3 8937 \N +355172 2025-10-05 22:01:15.822714+00 2025-10-05 22:01:15.822721+00 f t ADELANTO 11000.00 4 8937 \N +352385 2025-10-04 22:39:20.896509+00 2025-10-04 22:39:20.896521+00 f t SUBTOTAL 0.00 1 8876 \N +352386 2025-10-04 22:39:20.899692+00 2025-10-04 22:39:20.899702+00 f t DESCUENTO 0.00 2 8876 \N +352387 2025-10-04 22:39:20.901236+00 2025-10-04 22:39:20.901243+00 f t TOTAL 0.00 3 8876 \N +352388 2025-10-04 22:39:20.90263+00 2025-10-04 22:39:20.902637+00 f t ADELANTO 0.00 4 8876 \N +352393 2025-10-04 22:44:35.516469+00 2025-10-04 22:44:35.516478+00 f t SUBTOTAL 68000.00 1 8877 \N +352394 2025-10-04 22:44:35.518205+00 2025-10-04 22:44:35.518213+00 f t DESCUENTO 0.00 2 8877 \N +352395 2025-10-04 22:44:35.519562+00 2025-10-04 22:44:35.519571+00 f t TOTAL 68000.00 3 8877 \N +352396 2025-10-04 22:44:35.52068+00 2025-10-04 22:44:35.520686+00 f t ADELANTO 13000.00 4 8877 \N +363493 2025-10-08 03:15:32.049709+00 2025-10-08 03:15:32.04972+00 f t SUBTOTAL 0.00 1 9134 \N +363494 2025-10-08 03:15:32.051183+00 2025-10-08 03:15:32.05119+00 f t DESCUENTO 0.00 2 9134 \N +363495 2025-10-08 03:15:32.052319+00 2025-10-08 03:15:32.052326+00 f t TOTAL 0.00 3 9134 \N +363496 2025-10-08 03:15:32.053316+00 2025-10-08 03:15:32.053322+00 f t ADELANTO 0.00 4 9134 \N +352421 2025-10-04 22:50:25.508224+00 2025-10-04 22:50:25.508233+00 f t SUBTOTAL 13200.00 1 8878 \N +352422 2025-10-04 22:50:25.509968+00 2025-10-04 22:50:25.509975+00 f t DESCUENTO 0.00 2 8878 \N +352423 2025-10-04 22:50:25.511288+00 2025-10-04 22:50:25.511293+00 f t TOTAL 13200.00 3 8878 \N +352424 2025-10-04 22:50:25.512361+00 2025-10-04 22:50:25.512367+00 f t ADELANTO 13200.00 4 8878 \N +352425 2025-10-04 22:50:43.863083+00 2025-10-04 22:50:43.863091+00 f t SUBTOTAL 53700.00 1 8849 \N +352426 2025-10-04 22:50:43.864718+00 2025-10-04 22:50:43.864725+00 f t DESCUENTO 0.00 2 8849 \N +352427 2025-10-04 22:50:43.866297+00 2025-10-04 22:50:43.866306+00 f t TOTAL 53700.00 3 8849 \N +352428 2025-10-04 22:50:43.867752+00 2025-10-04 22:50:43.867758+00 f t ADELANTO 13200.00 4 8849 \N +372513 2025-10-11 15:20:44.727526+00 2025-10-11 15:20:44.727535+00 f t SUBTOTAL 0.00 1 9388 \N +372514 2025-10-11 15:20:44.728987+00 2025-10-11 15:20:44.728995+00 f t DESCUENTO 0.00 2 9388 \N +352441 2025-10-04 22:56:43.24296+00 2025-10-04 22:56:43.242972+00 f t SUBTOTAL 0.00 1 8879 \N +352442 2025-10-04 22:56:43.245884+00 2025-10-04 22:56:43.245895+00 f t DESCUENTO 0.00 2 8879 \N +352443 2025-10-04 22:56:43.247855+00 2025-10-04 22:56:43.247863+00 f t TOTAL 0.00 3 8879 \N +352444 2025-10-04 22:56:43.24926+00 2025-10-04 22:56:43.249266+00 f t ADELANTO 0.00 4 8879 \N +363993 2025-10-08 12:13:39.349167+00 2025-10-08 12:13:39.349177+00 f t SUBTOTAL 0.00 1 9147 \N +363994 2025-10-08 12:13:39.350904+00 2025-10-08 12:13:39.350915+00 f t DESCUENTO 0.00 2 9147 \N +363995 2025-10-08 12:13:39.352628+00 2025-10-08 12:13:39.352639+00 f t TOTAL 0.00 3 9147 \N +363996 2025-10-08 12:13:39.354004+00 2025-10-08 12:13:39.354019+00 f t ADELANTO 0.00 4 9147 \N +356865 2025-10-06 13:23:17.076789+00 2025-10-06 13:23:17.076801+00 f t SUBTOTAL 0.00 1 8969 \N +356866 2025-10-06 13:23:17.078991+00 2025-10-06 13:23:17.079+00 f t DESCUENTO 0.00 2 8969 \N +356867 2025-10-06 13:23:17.080664+00 2025-10-06 13:23:17.080673+00 f t TOTAL 0.00 3 8969 \N +356868 2025-10-06 13:23:17.082189+00 2025-10-06 13:23:17.082197+00 f t ADELANTO 0.00 4 8969 \N +352481 2025-10-04 22:58:52.374177+00 2025-10-04 22:58:52.374185+00 f t SUBTOTAL 0.00 1 8880 \N +352482 2025-10-04 22:58:52.376024+00 2025-10-04 22:58:52.376033+00 f t DESCUENTO 0.00 2 8880 \N +352483 2025-10-04 22:58:52.377395+00 2025-10-04 22:58:52.377401+00 f t TOTAL 0.00 3 8880 \N +352484 2025-10-04 22:58:52.37834+00 2025-10-04 22:58:52.378345+00 f t ADELANTO 0.00 4 8880 \N +357633 2025-10-06 16:13:21.837358+00 2025-10-06 16:13:21.837367+00 f t SUBTOTAL 0.00 1 8993 \N +357634 2025-10-06 16:13:21.838772+00 2025-10-06 16:13:21.838777+00 f t DESCUENTO 0.00 2 8993 \N +357635 2025-10-06 16:13:21.839882+00 2025-10-06 16:13:21.839887+00 f t TOTAL 0.00 3 8993 \N +357636 2025-10-06 16:13:21.841024+00 2025-10-06 16:13:21.84103+00 f t ADELANTO 0.00 4 8993 \N +352509 2025-10-04 23:00:33.259094+00 2025-10-04 23:00:33.259105+00 f t SUBTOTAL 55000.00 1 8881 \N +352510 2025-10-04 23:00:33.260769+00 2025-10-04 23:00:33.260776+00 f t DESCUENTO 0.00 2 8881 \N +352511 2025-10-04 23:00:33.26184+00 2025-10-04 23:00:33.261845+00 f t TOTAL 55000.00 3 8881 \N +352512 2025-10-04 23:00:33.263186+00 2025-10-04 23:00:33.263195+00 f t ADELANTO 11000.00 4 8881 \N +352537 2025-10-04 23:12:29.223301+00 2025-10-04 23:12:29.223312+00 f t SUBTOTAL 30000.00 1 8882 \N +352538 2025-10-04 23:12:29.225269+00 2025-10-04 23:12:29.225279+00 f t DESCUENTO 0.00 2 8882 \N +352539 2025-10-04 23:12:29.226929+00 2025-10-04 23:12:29.226938+00 f t TOTAL 30000.00 3 8882 \N +352540 2025-10-04 23:12:29.228331+00 2025-10-04 23:12:29.228339+00 f t ADELANTO 30000.00 4 8882 \N +358645 2025-10-06 19:52:22.594625+00 2025-10-06 19:52:22.594633+00 f t SUBTOTAL 46000.00 1 9015 \N +358646 2025-10-06 19:52:22.596456+00 2025-10-06 19:52:22.596462+00 f t DESCUENTO 0.00 2 9015 \N +358647 2025-10-06 19:52:22.597648+00 2025-10-06 19:52:22.597654+00 f t TOTAL 46000.00 3 9015 \N +358648 2025-10-06 19:52:22.598855+00 2025-10-06 19:52:22.598861+00 f t ADELANTO 11000.00 4 9015 \N +359205 2025-10-06 22:14:32.383238+00 2025-10-06 22:14:32.383251+00 f t SUBTOTAL 0.00 1 9031 \N +359206 2025-10-06 22:14:32.384925+00 2025-10-06 22:14:32.384934+00 f t DESCUENTO 0.00 2 9031 \N +352593 2025-10-04 23:33:09.165862+00 2025-10-04 23:33:09.165873+00 f t SUBTOTAL 68000.00 1 8883 \N +352594 2025-10-04 23:33:09.168142+00 2025-10-04 23:33:09.168154+00 f t DESCUENTO 0.00 2 8883 \N +352595 2025-10-04 23:33:09.170018+00 2025-10-04 23:33:09.170029+00 f t TOTAL 68000.00 3 8883 \N +352596 2025-10-04 23:33:09.171736+00 2025-10-04 23:33:09.171745+00 f t ADELANTO 13000.00 4 8883 \N +359207 2025-10-06 22:14:32.386126+00 2025-10-06 22:14:32.386134+00 f t TOTAL 0.00 3 9031 \N +359208 2025-10-06 22:14:32.387222+00 2025-10-06 22:14:32.38723+00 f t ADELANTO 0.00 4 9031 \N +359285 2025-10-06 22:41:11.100502+00 2025-10-06 22:41:11.10051+00 f t SUBTOTAL 46000.00 1 9034 \N +359286 2025-10-06 22:41:11.102267+00 2025-10-06 22:41:11.102273+00 f t DESCUENTO 0.00 2 9034 \N +359287 2025-10-06 22:41:11.103333+00 2025-10-06 22:41:11.103338+00 f t TOTAL 46000.00 3 9034 \N +359288 2025-10-06 22:41:11.104334+00 2025-10-06 22:41:11.104339+00 f t ADELANTO 11000.00 4 9034 \N +406792 2025-10-22 17:14:33.459065+00 2025-10-22 17:14:33.459073+00 f t SUBTOTAL 68000.00 1 10290 \N +406793 2025-10-22 17:14:33.460768+00 2025-10-22 17:14:33.460775+00 f t COSTO_SERVICIO 0.00 2 10290 \N +406794 2025-10-22 17:14:33.461976+00 2025-10-22 17:14:33.461988+00 f t DESCUENTO 0.00 3 10290 \N +371533 2025-10-10 23:47:34.006699+00 2025-10-10 23:47:34.00671+00 f t SUBTOTAL 68000.00 1 9361 \N +371534 2025-10-10 23:47:34.008451+00 2025-10-10 23:47:34.008461+00 f t DESCUENTO 0.00 2 9361 \N +371535 2025-10-10 23:47:34.009769+00 2025-10-10 23:47:34.009776+00 f t TOTAL 68000.00 3 9361 \N +371536 2025-10-10 23:47:34.010903+00 2025-10-10 23:47:34.010908+00 f t ADELANTO 13000.00 4 9361 \N +352665 2025-10-04 23:53:20.687113+00 2025-10-04 23:53:20.687121+00 f t SUBTOTAL 46000.00 1 8884 \N +352666 2025-10-04 23:53:20.688614+00 2025-10-04 23:53:20.68862+00 f t DESCUENTO 0.00 2 8884 \N +352667 2025-10-04 23:53:20.689657+00 2025-10-04 23:53:20.689662+00 f t TOTAL 46000.00 3 8884 \N +352668 2025-10-04 23:53:20.690732+00 2025-10-04 23:53:20.690737+00 f t ADELANTO 11000.00 4 8884 \N +371929 2025-10-11 04:54:37.962311+00 2025-10-11 04:54:37.962319+00 f t SUBTOTAL 55000.00 1 9372 \N +371930 2025-10-11 04:54:37.964211+00 2025-10-11 04:54:37.964217+00 f t DESCUENTO 0.00 2 9372 \N +371931 2025-10-11 04:54:37.965414+00 2025-10-11 04:54:37.965419+00 f t TOTAL 55000.00 3 9372 \N +371932 2025-10-11 04:54:37.966535+00 2025-10-11 04:54:37.96654+00 f t ADELANTO 11000.00 4 9372 \N +372515 2025-10-11 15:20:44.730363+00 2025-10-11 15:20:44.73037+00 f t TOTAL 0.00 3 9388 \N +372516 2025-10-11 15:20:44.731606+00 2025-10-11 15:20:44.731613+00 f t ADELANTO 0.00 4 9388 \N +372725 2025-10-11 16:16:07.738835+00 2025-10-11 16:16:07.738844+00 f t SUBTOTAL 206400.00 1 9393 \N +372726 2025-10-11 16:16:07.741008+00 2025-10-11 16:16:07.741016+00 f t DESCUENTO 0.00 2 9393 \N +372727 2025-10-11 16:16:07.742245+00 2025-10-11 16:16:07.742252+00 f t TOTAL 206400.00 3 9393 \N +372728 2025-10-11 16:16:07.743361+00 2025-10-11 16:16:07.743367+00 f t ADELANTO 70900.00 4 9393 \N +352717 2025-10-05 00:07:01.981808+00 2025-10-05 00:07:01.981821+00 f t SUBTOTAL 55000.00 1 8885 \N +352718 2025-10-05 00:07:01.990263+00 2025-10-05 00:07:01.990273+00 f t DESCUENTO 0.00 2 8885 \N +352719 2025-10-05 00:07:01.992645+00 2025-10-05 00:07:01.992653+00 f t TOTAL 55000.00 3 8885 \N +352720 2025-10-05 00:07:01.994561+00 2025-10-05 00:07:01.994568+00 f t ADELANTO 11000.00 4 8885 \N +364477 2025-10-08 16:30:38.283619+00 2025-10-08 16:30:38.283629+00 f t SUBTOTAL 0.00 1 9164 \N +364478 2025-10-08 16:30:38.286231+00 2025-10-08 16:30:38.286241+00 f t DESCUENTO 0.00 2 9164 \N +364479 2025-10-08 16:30:38.287796+00 2025-10-08 16:30:38.287803+00 f t TOTAL 0.00 3 9164 \N +364480 2025-10-08 16:30:38.289541+00 2025-10-08 16:30:38.28955+00 f t ADELANTO 0.00 4 9164 \N +352733 2025-10-05 00:22:07.145177+00 2025-10-05 00:22:07.145186+00 f t SUBTOTAL 0.00 1 8886 \N +352734 2025-10-05 00:22:07.147157+00 2025-10-05 00:22:07.147175+00 f t DESCUENTO 0.00 2 8886 \N +352735 2025-10-05 00:22:07.148405+00 2025-10-05 00:22:07.148411+00 f t TOTAL 0.00 3 8886 \N +352736 2025-10-05 00:22:07.149439+00 2025-10-05 00:22:07.149445+00 f t ADELANTO 0.00 4 8886 \N +364729 2025-10-08 17:40:14.3378+00 2025-10-08 17:40:14.337809+00 f t SUBTOTAL 70000.00 1 9169 \N +364730 2025-10-08 17:40:14.339428+00 2025-10-08 17:40:14.339435+00 f t DESCUENTO 0.00 2 9169 \N +364731 2025-10-08 17:40:14.340499+00 2025-10-08 17:40:14.340505+00 f t TOTAL 70000.00 3 9169 \N +364732 2025-10-08 17:40:14.341497+00 2025-10-08 17:40:14.341507+00 f t ADELANTO 19000.00 4 9169 \N +352749 2025-10-05 00:32:11.002584+00 2025-10-05 00:32:11.002594+00 f t SUBTOTAL 0.00 1 8887 \N +352750 2025-10-05 00:32:11.004533+00 2025-10-05 00:32:11.004546+00 f t DESCUENTO 0.00 2 8887 \N +352751 2025-10-05 00:32:11.005868+00 2025-10-05 00:32:11.005876+00 f t TOTAL 0.00 3 8887 \N +352752 2025-10-05 00:32:11.007034+00 2025-10-05 00:32:11.007041+00 f t ADELANTO 0.00 4 8887 \N +364957 2025-10-08 18:59:34.729403+00 2025-10-08 18:59:34.72941+00 f t SUBTOTAL 0.00 1 9176 \N +364958 2025-10-08 18:59:34.730993+00 2025-10-08 18:59:34.730999+00 f t DESCUENTO 0.00 2 9176 \N +364959 2025-10-08 18:59:34.731976+00 2025-10-08 18:59:34.731983+00 f t TOTAL 0.00 3 9176 \N +364960 2025-10-08 18:59:34.732883+00 2025-10-08 18:59:34.732889+00 f t ADELANTO 0.00 4 9176 \N +352777 2025-10-05 01:36:30.934081+00 2025-10-05 01:36:30.934089+00 f t SUBTOTAL 46000.00 1 8888 \N +352778 2025-10-05 01:36:30.935696+00 2025-10-05 01:36:30.935702+00 f t DESCUENTO 0.00 2 8888 \N +352779 2025-10-05 01:36:30.937094+00 2025-10-05 01:36:30.9371+00 f t TOTAL 46000.00 3 8888 \N +352780 2025-10-05 01:36:30.938198+00 2025-10-05 01:36:30.938204+00 f t ADELANTO 11000.00 4 8888 \N +365789 2025-10-08 23:22:16.720864+00 2025-10-08 23:22:16.720873+00 f t SUBTOTAL 0.00 1 9205 \N +352817 2025-10-05 02:01:06.661064+00 2025-10-05 02:01:06.661074+00 f t SUBTOTAL 0.00 1 8889 \N +352818 2025-10-05 02:01:06.662885+00 2025-10-05 02:01:06.662891+00 f t DESCUENTO 0.00 2 8889 \N +352819 2025-10-05 02:01:06.664452+00 2025-10-05 02:01:06.664458+00 f t TOTAL 0.00 3 8889 \N +352820 2025-10-05 02:01:06.665481+00 2025-10-05 02:01:06.665487+00 f t ADELANTO 0.00 4 8889 \N +365790 2025-10-08 23:22:16.72315+00 2025-10-08 23:22:16.723159+00 f t DESCUENTO 0.00 2 9205 \N +358561 2025-10-06 19:28:57.667408+00 2025-10-06 19:28:57.66742+00 f t SUBTOTAL 93000.00 1 9013 \N +358562 2025-10-06 19:28:57.670126+00 2025-10-06 19:28:57.670135+00 f t DESCUENTO 0.00 2 9013 \N +358563 2025-10-06 19:28:57.671868+00 2025-10-06 19:28:57.671879+00 f t TOTAL 93000.00 3 9013 \N +358564 2025-10-06 19:28:57.674615+00 2025-10-06 19:28:57.674623+00 f t ADELANTO 24500.00 4 9013 \N +365791 2025-10-08 23:22:16.724813+00 2025-10-08 23:22:16.724823+00 f t TOTAL 0.00 3 9205 \N +365792 2025-10-08 23:22:16.726197+00 2025-10-08 23:22:16.726203+00 f t ADELANTO 0.00 4 9205 \N +365849 2025-10-09 00:54:24.041787+00 2025-10-09 00:54:24.041797+00 f t SUBTOTAL 78000.00 1 9182 \N +365850 2025-10-09 00:54:24.043683+00 2025-10-09 00:54:24.04369+00 f t DESCUENTO 0.00 2 9182 \N +365851 2025-10-09 00:54:24.044943+00 2025-10-09 00:54:24.044949+00 f t TOTAL 78000.00 3 9182 \N +365852 2025-10-09 00:54:24.046107+00 2025-10-09 00:54:24.046113+00 f t ADELANTO 21500.00 4 9182 \N +358977 2025-10-06 20:53:13.212989+00 2025-10-06 20:53:13.212999+00 f t SUBTOTAL 0.00 1 9025 \N +358978 2025-10-06 20:53:13.214785+00 2025-10-06 20:53:13.214792+00 f t DESCUENTO 0.00 2 9025 \N +358979 2025-10-06 20:53:13.215829+00 2025-10-06 20:53:13.215835+00 f t TOTAL 0.00 3 9025 \N +358980 2025-10-06 20:53:13.216948+00 2025-10-06 20:53:13.216953+00 f t ADELANTO 0.00 4 9025 \N +352889 2025-10-05 03:30:19.225918+00 2025-10-05 03:30:19.225928+00 f t SUBTOTAL 0.00 1 8891 \N +352890 2025-10-05 03:30:19.227624+00 2025-10-05 03:30:19.227631+00 f t DESCUENTO 0.00 2 8891 \N +352891 2025-10-05 03:30:19.228685+00 2025-10-05 03:30:19.22869+00 f t TOTAL 0.00 3 8891 \N +352892 2025-10-05 03:30:19.233884+00 2025-10-05 03:30:19.233892+00 f t ADELANTO 0.00 4 8891 \N +366797 2025-10-09 13:04:41.222633+00 2025-10-09 13:04:41.222642+00 f t SUBTOTAL 0.00 1 9225 \N +366798 2025-10-09 13:04:41.224013+00 2025-10-09 13:04:41.224023+00 f t DESCUENTO 0.00 2 9225 \N +366799 2025-10-09 13:04:41.225059+00 2025-10-09 13:04:41.225064+00 f t TOTAL 0.00 3 9225 \N +366800 2025-10-09 13:04:41.22611+00 2025-10-09 13:04:41.226117+00 f t ADELANTO 0.00 4 9225 \N +352917 2025-10-05 03:34:41.730096+00 2025-10-05 03:34:41.730108+00 f t SUBTOTAL 0.00 1 8892 \N +352918 2025-10-05 03:34:41.731954+00 2025-10-05 03:34:41.731963+00 f t DESCUENTO 0.00 2 8892 \N +352919 2025-10-05 03:34:41.733018+00 2025-10-05 03:34:41.733023+00 f t TOTAL 0.00 3 8892 \N +352920 2025-10-05 03:34:41.734039+00 2025-10-05 03:34:41.734044+00 f t ADELANTO 0.00 4 8892 \N +371229 2025-10-10 21:46:26.423165+00 2025-10-10 21:46:26.423174+00 f t SUBTOTAL 46000.00 1 9349 \N +371230 2025-10-10 21:46:26.424887+00 2025-10-10 21:46:26.424894+00 f t DESCUENTO 0.00 2 9349 \N +371231 2025-10-10 21:46:26.426212+00 2025-10-10 21:46:26.426219+00 f t TOTAL 46000.00 3 9349 \N +371232 2025-10-10 21:46:26.427246+00 2025-10-10 21:46:26.427251+00 f t ADELANTO 11000.00 4 9349 \N +371801 2025-10-11 01:50:01.53076+00 2025-10-11 01:50:01.530774+00 f t SUBTOTAL 82000.00 1 9367 \N +371802 2025-10-11 01:50:01.542199+00 2025-10-11 01:50:01.542214+00 f t DESCUENTO 0.00 2 9367 \N +371803 2025-10-11 01:50:01.545007+00 2025-10-11 01:50:01.54502+00 f t TOTAL 82000.00 3 9367 \N +371804 2025-10-11 01:50:01.559618+00 2025-10-11 01:50:01.559633+00 f t ADELANTO 12000.00 4 9367 \N +372521 2025-10-11 15:21:48.137031+00 2025-10-11 15:21:48.137046+00 f t SUBTOTAL 0.00 1 9389 \N +372522 2025-10-11 15:21:48.138928+00 2025-10-11 15:21:48.138937+00 f t DESCUENTO 0.00 2 9389 \N +372523 2025-10-11 15:21:48.140837+00 2025-10-11 15:21:48.140848+00 f t TOTAL 0.00 3 9389 \N +372524 2025-10-11 15:21:48.142768+00 2025-10-11 15:21:48.142779+00 f t ADELANTO 0.00 4 9389 \N +372937 2025-10-11 18:30:30.741972+00 2025-10-11 18:30:30.741981+00 f t SUBTOTAL 55000.00 1 9399 \N +372938 2025-10-11 18:30:30.743993+00 2025-10-11 18:30:30.743999+00 f t DESCUENTO 0.00 2 9399 \N +372939 2025-10-11 18:30:30.745434+00 2025-10-11 18:30:30.74544+00 f t TOTAL 55000.00 3 9399 \N +356873 2025-10-06 13:23:28.299728+00 2025-10-06 13:23:28.299742+00 f t SUBTOTAL 46000.00 1 8968 \N +356874 2025-10-06 13:23:28.301683+00 2025-10-06 13:23:28.30169+00 f t DESCUENTO 0.00 2 8968 \N +356875 2025-10-06 13:23:28.302811+00 2025-10-06 13:23:28.302817+00 f t TOTAL 46000.00 3 8968 \N +356876 2025-10-06 13:23:28.306103+00 2025-10-06 13:23:28.306111+00 f t ADELANTO 11000.00 4 8968 \N +357005 2025-10-06 14:31:57.525231+00 2025-10-06 14:31:57.52524+00 f t SUBTOTAL 0.00 1 8976 \N +357006 2025-10-06 14:31:57.527522+00 2025-10-06 14:31:57.527529+00 f t DESCUENTO 0.00 2 8976 \N +357007 2025-10-06 14:31:57.528777+00 2025-10-06 14:31:57.528784+00 f t TOTAL 0.00 3 8976 \N +357008 2025-10-06 14:31:57.529887+00 2025-10-06 14:31:57.529894+00 f t ADELANTO 0.00 4 8976 \N +372940 2025-10-11 18:30:30.746689+00 2025-10-11 18:30:30.746695+00 f t ADELANTO 11000.00 4 9399 \N +373265 2025-10-12 00:03:36.856664+00 2025-10-12 00:03:36.856676+00 f t SUBTOTAL 30000.00 1 9411 \N +373266 2025-10-12 00:03:36.858746+00 2025-10-12 00:03:36.858757+00 f t DESCUENTO 0.00 2 9411 \N +373267 2025-10-12 00:03:36.860599+00 2025-10-12 00:03:36.86061+00 f t TOTAL 30000.00 3 9411 \N +373268 2025-10-12 00:03:36.862267+00 2025-10-12 00:03:36.862276+00 f t ADELANTO 30000.00 4 9411 \N +373665 2025-10-12 05:35:36.015364+00 2025-10-12 05:35:36.015376+00 f t SUBTOTAL 123000.00 1 9424 \N +373666 2025-10-12 05:35:36.017368+00 2025-10-12 05:35:36.017376+00 f t DESCUENTO 0.00 2 9424 \N +373667 2025-10-12 05:35:36.018977+00 2025-10-12 05:35:36.018984+00 f t TOTAL 123000.00 3 9424 \N +373668 2025-10-12 05:35:36.020338+00 2025-10-12 05:35:36.020346+00 f t ADELANTO 24000.00 4 9424 \N +373865 2025-10-12 12:38:58.371797+00 2025-10-12 12:38:58.371808+00 f t SUBTOTAL 55000.00 1 9432 \N +373866 2025-10-12 12:38:58.375799+00 2025-10-12 12:38:58.375808+00 f t DESCUENTO 0.00 2 9432 \N +373867 2025-10-12 12:38:58.377162+00 2025-10-12 12:38:58.377169+00 f t TOTAL 55000.00 3 9432 \N +365249 2025-10-08 20:11:19.803002+00 2025-10-08 20:11:19.803012+00 f t SUBTOTAL 46000.00 1 9185 \N +365250 2025-10-08 20:11:19.804919+00 2025-10-08 20:11:19.804925+00 f t DESCUENTO 0.00 2 9185 \N +365251 2025-10-08 20:11:19.806075+00 2025-10-08 20:11:19.806081+00 f t TOTAL 46000.00 3 9185 \N +365252 2025-10-08 20:11:19.807004+00 2025-10-08 20:11:19.80701+00 f t ADELANTO 11000.00 4 9185 \N +373868 2025-10-12 12:38:58.378333+00 2025-10-12 12:38:58.37834+00 f t ADELANTO 11000.00 4 9432 \N +374057 2025-10-12 14:03:14.36717+00 2025-10-12 14:03:14.367179+00 f t SUBTOTAL 55000.00 1 9438 \N +374058 2025-10-12 14:03:14.369259+00 2025-10-12 14:03:14.369268+00 f t DESCUENTO 0.00 2 9438 \N +374059 2025-10-12 14:03:14.37044+00 2025-10-12 14:03:14.370446+00 f t TOTAL 55000.00 3 9438 \N +374060 2025-10-12 14:03:14.371753+00 2025-10-12 14:03:14.371763+00 f t ADELANTO 11000.00 4 9438 \N +365529 2025-10-08 21:41:46.221095+00 2025-10-08 21:41:46.221109+00 f t SUBTOTAL 0.00 1 9194 \N +365530 2025-10-08 21:41:46.223571+00 2025-10-08 21:41:46.22358+00 f t DESCUENTO 0.00 2 9194 \N +365531 2025-10-08 21:41:46.224904+00 2025-10-08 21:41:46.224911+00 f t TOTAL 0.00 3 9194 \N +365532 2025-10-08 21:41:46.226465+00 2025-10-08 21:41:46.226472+00 f t ADELANTO 0.00 4 9194 \N +353081 2025-10-05 04:39:57.946385+00 2025-10-05 04:39:57.946394+00 f t SUBTOTAL 0.00 1 8894 \N +353082 2025-10-05 04:39:57.94763+00 2025-10-05 04:39:57.947635+00 f t DESCUENTO 0.00 2 8894 \N +353083 2025-10-05 04:39:57.948587+00 2025-10-05 04:39:57.948592+00 f t TOTAL 0.00 3 8894 \N +353084 2025-10-05 04:39:57.949655+00 2025-10-05 04:39:57.949659+00 f t ADELANTO 0.00 4 8894 \N +358481 2025-10-06 19:12:11.288205+00 2025-10-06 19:12:11.288216+00 f t SUBTOTAL 109000.00 1 9011 \N +358482 2025-10-06 19:12:11.290269+00 2025-10-06 19:12:11.290279+00 f t DESCUENTO 0.00 2 9011 \N +358483 2025-10-06 19:12:11.291736+00 2025-10-06 19:12:11.291744+00 f t TOTAL 109000.00 3 9011 \N +358484 2025-10-06 19:12:11.293091+00 2025-10-06 19:12:11.293099+00 f t ADELANTO 24500.00 4 9011 \N +359301 2025-10-06 23:29:35.610906+00 2025-10-06 23:29:35.610918+00 f t SUBTOTAL 0.00 1 9036 \N +359302 2025-10-06 23:29:35.6127+00 2025-10-06 23:29:35.612711+00 f t DESCUENTO 0.00 2 9036 \N +359303 2025-10-06 23:29:35.614281+00 2025-10-06 23:29:35.614289+00 f t TOTAL 0.00 3 9036 \N +359304 2025-10-06 23:29:35.615907+00 2025-10-06 23:29:35.615916+00 f t ADELANTO 0.00 4 9036 \N +359661 2025-10-07 01:13:19.442905+00 2025-10-07 01:13:19.442913+00 f t SUBTOTAL 102000.00 1 9044 \N +359662 2025-10-07 01:13:19.444821+00 2025-10-07 01:13:19.444829+00 f t DESCUENTO 0.00 2 9044 \N +359663 2025-10-07 01:13:19.446302+00 2025-10-07 01:13:19.446309+00 f t TOTAL 102000.00 3 9044 \N +359664 2025-10-07 01:13:19.447422+00 2025-10-07 01:13:19.447427+00 f t ADELANTO 29500.00 4 9044 \N +353165 2025-10-05 04:42:38.512664+00 2025-10-05 04:42:38.512674+00 f t SUBTOTAL 0.00 1 8895 \N +353166 2025-10-05 04:42:38.51499+00 2025-10-05 04:42:38.515+00 f t DESCUENTO 0.00 2 8895 \N +353167 2025-10-05 04:42:38.516376+00 2025-10-05 04:42:38.516382+00 f t TOTAL 0.00 3 8895 \N +353168 2025-10-05 04:42:38.517664+00 2025-10-05 04:42:38.51767+00 f t ADELANTO 0.00 4 8895 \N +366805 2025-10-09 13:04:44.597111+00 2025-10-09 13:04:44.597119+00 f t SUBTOTAL 0.00 1 9226 \N +366806 2025-10-09 13:04:44.598569+00 2025-10-09 13:04:44.598575+00 f t DESCUENTO 0.00 2 9226 \N +366807 2025-10-09 13:04:44.60023+00 2025-10-09 13:04:44.600237+00 f t TOTAL 0.00 3 9226 \N +366808 2025-10-09 13:04:44.601714+00 2025-10-09 13:04:44.601724+00 f t ADELANTO 0.00 4 9226 \N +360217 2025-10-07 06:18:40.133437+00 2025-10-07 06:18:40.133446+00 f t SUBTOTAL 46000.00 1 9057 \N +360218 2025-10-07 06:18:40.135099+00 2025-10-07 06:18:40.135108+00 f t DESCUENTO 0.00 2 9057 \N +353209 2025-10-05 05:14:19.748011+00 2025-10-05 05:14:19.74802+00 f t SUBTOTAL 55000.00 1 8896 \N +353210 2025-10-05 05:14:19.749572+00 2025-10-05 05:14:19.749578+00 f t DESCUENTO 0.00 2 8896 \N +353211 2025-10-05 05:14:19.750509+00 2025-10-05 05:14:19.750514+00 f t TOTAL 55000.00 3 8896 \N +353212 2025-10-05 05:14:19.751374+00 2025-10-05 05:14:19.751378+00 f t ADELANTO 11000.00 4 8896 \N +360219 2025-10-07 06:18:40.136411+00 2025-10-07 06:18:40.136417+00 f t TOTAL 46000.00 3 9057 \N +360220 2025-10-07 06:18:40.137441+00 2025-10-07 06:18:40.137446+00 f t ADELANTO 11000.00 4 9057 \N +362817 2025-10-07 23:18:39.081615+00 2025-10-07 23:18:39.081625+00 f t SUBTOTAL 107000.00 1 9114 \N +362818 2025-10-07 23:18:39.083569+00 2025-10-07 23:18:39.083577+00 f t DESCUENTO 0.00 2 9114 \N +362819 2025-10-07 23:18:39.085074+00 2025-10-07 23:18:39.085086+00 f t TOTAL 107000.00 3 9114 \N +362820 2025-10-07 23:18:39.086425+00 2025-10-07 23:18:39.086431+00 f t ADELANTO 12000.00 4 9114 \N +363309 2025-10-08 01:46:31.300457+00 2025-10-08 01:46:31.300466+00 f t SUBTOTAL 0.00 1 9131 \N +363310 2025-10-08 01:46:31.301938+00 2025-10-08 01:46:31.301945+00 f t DESCUENTO 0.00 2 9131 \N +363311 2025-10-08 01:46:31.303106+00 2025-10-08 01:46:31.303112+00 f t TOTAL 0.00 3 9131 \N +363312 2025-10-08 01:46:31.304272+00 2025-10-08 01:46:31.304278+00 f t ADELANTO 0.00 4 9131 \N +353273 2025-10-05 05:38:08.171712+00 2025-10-05 05:38:08.171722+00 f t SUBTOTAL 0.00 1 8897 \N +353274 2025-10-05 05:38:08.173385+00 2025-10-05 05:38:08.173391+00 f t DESCUENTO 0.00 2 8897 \N +353275 2025-10-05 05:38:08.176904+00 2025-10-05 05:38:08.176916+00 f t TOTAL 0.00 3 8897 \N +353276 2025-10-05 05:38:08.178424+00 2025-10-05 05:38:08.178431+00 f t ADELANTO 0.00 4 8897 \N +364193 2025-10-08 14:23:06.425126+00 2025-10-08 14:23:06.425135+00 f t SUBTOTAL 0.00 1 9152 \N +353293 2025-10-05 06:28:41.147727+00 2025-10-05 06:28:41.147736+00 f t SUBTOTAL 0.00 1 8898 \N +353294 2025-10-05 06:28:41.149342+00 2025-10-05 06:28:41.149349+00 f t DESCUENTO 0.00 2 8898 \N +353295 2025-10-05 06:28:41.150806+00 2025-10-05 06:28:41.150813+00 f t TOTAL 0.00 3 8898 \N +353296 2025-10-05 06:28:41.151842+00 2025-10-05 06:28:41.151848+00 f t ADELANTO 0.00 4 8898 \N +364194 2025-10-08 14:23:06.427103+00 2025-10-08 14:23:06.427108+00 f t DESCUENTO 0.00 2 9152 \N +364195 2025-10-08 14:23:06.428214+00 2025-10-08 14:23:06.42822+00 f t TOTAL 0.00 3 9152 \N +364196 2025-10-08 14:23:06.4292+00 2025-10-08 14:23:06.429205+00 f t ADELANTO 0.00 4 9152 \N +356881 2025-10-06 13:29:12.632197+00 2025-10-06 13:29:12.632206+00 f t SUBTOTAL 0.00 1 8970 \N +356882 2025-10-06 13:29:12.63367+00 2025-10-06 13:29:12.633677+00 f t DESCUENTO 0.00 2 8970 \N +356883 2025-10-06 13:29:12.634696+00 2025-10-06 13:29:12.634702+00 f t TOTAL 0.00 3 8970 \N +356884 2025-10-06 13:29:12.635587+00 2025-10-06 13:29:12.635592+00 f t ADELANTO 0.00 4 8970 \N +353321 2025-10-05 06:32:33.466177+00 2025-10-05 06:32:33.466186+00 f t SUBTOTAL 54000.00 1 8899 \N +353322 2025-10-05 06:32:33.46777+00 2025-10-05 06:32:33.467776+00 f t DESCUENTO 0.00 2 8899 \N +353323 2025-10-05 06:32:33.468796+00 2025-10-05 06:32:33.468801+00 f t TOTAL 54000.00 3 8899 \N +353324 2025-10-05 06:32:33.469776+00 2025-10-05 06:32:33.46978+00 f t ADELANTO 13500.00 4 8899 \N +357733 2025-10-06 16:20:12.77435+00 2025-10-06 16:20:12.774358+00 f t SUBTOTAL 53700.00 1 8995 \N +353349 2025-10-05 06:48:42.198041+00 2025-10-05 06:48:42.198049+00 f t SUBTOTAL 46000.00 1 8900 \N +353350 2025-10-05 06:48:42.199859+00 2025-10-05 06:48:42.199865+00 f t DESCUENTO 0.00 2 8900 \N +353351 2025-10-05 06:48:42.201133+00 2025-10-05 06:48:42.201139+00 f t TOTAL 46000.00 3 8900 \N +353352 2025-10-05 06:48:42.202313+00 2025-10-05 06:48:42.20232+00 f t ADELANTO 11000.00 4 8900 \N +357734 2025-10-06 16:20:12.775876+00 2025-10-06 16:20:12.775884+00 f t DESCUENTO 0.00 2 8995 \N +357735 2025-10-06 16:20:12.776923+00 2025-10-06 16:20:12.776931+00 f t TOTAL 53700.00 3 8995 \N +357736 2025-10-06 16:20:12.778002+00 2025-10-06 16:20:12.778007+00 f t ADELANTO 13200.00 4 8995 \N +358321 2025-10-06 18:45:31.446384+00 2025-10-06 18:45:31.446394+00 f t SUBTOTAL 127500.00 1 9007 \N +358322 2025-10-06 18:45:31.44823+00 2025-10-06 18:45:31.448239+00 f t DESCUENTO 0.00 2 9007 \N +358323 2025-10-06 18:45:31.449458+00 2025-10-06 18:45:31.449464+00 f t TOTAL 127500.00 3 9007 \N +358324 2025-10-06 18:45:31.450588+00 2025-10-06 18:45:31.450593+00 f t ADELANTO 27500.00 4 9007 \N +353389 2025-10-05 08:15:29.691301+00 2025-10-05 08:15:29.69131+00 f t SUBTOTAL 55000.00 1 8901 \N +353390 2025-10-05 08:15:29.693313+00 2025-10-05 08:15:29.693324+00 f t DESCUENTO 0.00 2 8901 \N +353391 2025-10-05 08:15:29.694592+00 2025-10-05 08:15:29.694599+00 f t TOTAL 55000.00 3 8901 \N +353392 2025-10-05 08:15:29.696386+00 2025-10-05 08:15:29.696394+00 f t ADELANTO 11000.00 4 8901 \N +358905 2025-10-06 20:37:14.711575+00 2025-10-06 20:37:14.711588+00 f t SUBTOTAL 0.00 1 9023 \N +353417 2025-10-05 09:19:59.151508+00 2025-10-05 09:19:59.151516+00 f t SUBTOTAL 23000.00 1 8902 \N +353418 2025-10-05 09:19:59.153151+00 2025-10-05 09:19:59.153158+00 f t DESCUENTO 0.00 2 8902 \N +353419 2025-10-05 09:19:59.15419+00 2025-10-05 09:19:59.154196+00 f t TOTAL 23000.00 3 8902 \N +353420 2025-10-05 09:19:59.155398+00 2025-10-05 09:19:59.155403+00 f t ADELANTO 5500.00 4 8902 \N +358906 2025-10-06 20:37:14.714+00 2025-10-06 20:37:14.714012+00 f t DESCUENTO 0.00 2 9023 \N +358907 2025-10-06 20:37:14.715508+00 2025-10-06 20:37:14.715518+00 f t TOTAL 0.00 3 9023 \N +358908 2025-10-06 20:37:14.716838+00 2025-10-06 20:37:14.716847+00 f t ADELANTO 0.00 4 9023 \N +359221 2025-10-06 22:24:03.308988+00 2025-10-06 22:24:03.308999+00 f t SUBTOTAL 0.00 1 9032 \N +359222 2025-10-06 22:24:03.311075+00 2025-10-06 22:24:03.31109+00 f t DESCUENTO 0.00 2 9032 \N +359223 2025-10-06 22:24:03.312366+00 2025-10-06 22:24:03.312374+00 f t TOTAL 0.00 3 9032 \N +359224 2025-10-06 22:24:03.313735+00 2025-10-06 22:24:03.313741+00 f t ADELANTO 0.00 4 9032 \N +359305 2025-10-06 23:30:19.986958+00 2025-10-06 23:30:19.986969+00 f t SUBTOTAL 30000.00 1 9035 \N +359306 2025-10-06 23:30:19.988798+00 2025-10-06 23:30:19.988805+00 f t DESCUENTO 0.00 2 9035 \N +359307 2025-10-06 23:30:19.990092+00 2025-10-06 23:30:19.990101+00 f t TOTAL 30000.00 3 9035 \N +359308 2025-10-06 23:30:19.991511+00 2025-10-06 23:30:19.991517+00 f t ADELANTO 30000.00 4 9035 \N +353445 2025-10-05 09:38:42.373184+00 2025-10-05 09:38:42.373192+00 f t SUBTOTAL 55000.00 1 8903 \N +353446 2025-10-05 09:38:42.374586+00 2025-10-05 09:38:42.374591+00 f t DESCUENTO 0.00 2 8903 \N +353447 2025-10-05 09:38:42.375592+00 2025-10-05 09:38:42.375597+00 f t TOTAL 55000.00 3 8903 \N +353448 2025-10-05 09:38:42.378084+00 2025-10-05 09:38:42.378089+00 f t ADELANTO 11000.00 4 8903 \N +359813 2025-10-07 02:33:15.453797+00 2025-10-07 02:33:15.453805+00 f t SUBTOTAL 55000.00 1 9049 \N +359814 2025-10-07 02:33:15.455683+00 2025-10-07 02:33:15.455689+00 f t DESCUENTO 0.00 2 9049 \N +359815 2025-10-07 02:33:15.45667+00 2025-10-07 02:33:15.456675+00 f t TOTAL 55000.00 3 9049 \N +359816 2025-10-07 02:33:15.45756+00 2025-10-07 02:33:15.457564+00 f t ADELANTO 11000.00 4 9049 \N +353489 2025-10-05 10:41:06.789821+00 2025-10-05 10:41:06.78983+00 f t SUBTOTAL 55000.00 1 8904 \N +353490 2025-10-05 10:41:06.791925+00 2025-10-05 10:41:06.791934+00 f t DESCUENTO 0.00 2 8904 \N +353491 2025-10-05 10:41:06.793493+00 2025-10-05 10:41:06.793499+00 f t TOTAL 55000.00 3 8904 \N +353492 2025-10-05 10:41:06.794781+00 2025-10-05 10:41:06.794789+00 f t ADELANTO 11000.00 4 8904 \N +360049 2025-10-07 05:35:52.524357+00 2025-10-07 05:35:52.52437+00 f t SUBTOTAL 0.00 1 9054 \N +353497 2025-10-05 11:23:55.597201+00 2025-10-05 11:23:55.597212+00 f t SUBTOTAL 0.00 1 8905 \N +353498 2025-10-05 11:23:55.598976+00 2025-10-05 11:23:55.598983+00 f t DESCUENTO 0.00 2 8905 \N +353499 2025-10-05 11:23:55.600097+00 2025-10-05 11:23:55.600103+00 f t TOTAL 0.00 3 8905 \N +353500 2025-10-05 11:23:55.601111+00 2025-10-05 11:23:55.601118+00 f t ADELANTO 0.00 4 8905 \N +360050 2025-10-07 05:35:52.527547+00 2025-10-07 05:35:52.527557+00 f t DESCUENTO 0.00 2 9054 \N +360051 2025-10-07 05:35:52.529403+00 2025-10-07 05:35:52.52941+00 f t TOTAL 0.00 3 9054 \N +360052 2025-10-07 05:35:52.533181+00 2025-10-07 05:35:52.533187+00 f t ADELANTO 0.00 4 9054 \N +362677 2025-10-07 21:40:36.22146+00 2025-10-07 21:40:36.221469+00 f t SUBTOTAL 46000.00 1 9109 \N +362678 2025-10-07 21:40:36.223092+00 2025-10-07 21:40:36.223099+00 f t DESCUENTO 0.00 2 9109 \N +362679 2025-10-07 21:40:36.224318+00 2025-10-07 21:40:36.224324+00 f t TOTAL 46000.00 3 9109 \N +362680 2025-10-07 21:40:36.225421+00 2025-10-07 21:40:36.225426+00 f t ADELANTO 11000.00 4 9109 \N +371061 2025-10-10 20:16:27.945642+00 2025-10-10 20:16:27.94565+00 f t SUBTOTAL 121000.00 1 9344 \N +362825 2025-10-07 23:23:05.002129+00 2025-10-07 23:23:05.00214+00 f t SUBTOTAL 0.00 1 9115 \N +362826 2025-10-07 23:23:05.003658+00 2025-10-07 23:23:05.003666+00 f t DESCUENTO 0.00 2 9115 \N +362827 2025-10-07 23:23:05.005049+00 2025-10-07 23:23:05.005162+00 f t TOTAL 0.00 3 9115 \N +362828 2025-10-07 23:23:05.006507+00 2025-10-07 23:23:05.006513+00 f t ADELANTO 0.00 4 9115 \N +363409 2025-10-08 01:52:37.598786+00 2025-10-08 01:52:37.598793+00 f t SUBTOTAL 54000.00 1 9132 \N +363410 2025-10-08 01:52:37.600838+00 2025-10-08 01:52:37.600844+00 f t DESCUENTO 0.00 2 9132 \N +363411 2025-10-08 01:52:37.611674+00 2025-10-08 01:52:37.611686+00 f t TOTAL 54000.00 3 9132 \N +363412 2025-10-08 01:52:37.617405+00 2025-10-08 01:52:37.617415+00 f t ADELANTO 13500.00 4 9132 \N +356217 2025-10-06 11:14:47.030627+00 2025-10-06 11:14:47.030636+00 f t SUBTOTAL 0.00 1 8959 \N +356218 2025-10-06 11:14:47.032772+00 2025-10-06 11:14:47.03278+00 f t DESCUENTO 0.00 2 8959 \N +353565 2025-10-05 11:28:50.862638+00 2025-10-05 11:28:50.862646+00 f t SUBTOTAL 30000.00 1 8906 \N +353566 2025-10-05 11:28:50.864316+00 2025-10-05 11:28:50.864322+00 f t DESCUENTO 0.00 2 8906 \N +353567 2025-10-05 11:28:50.865337+00 2025-10-05 11:28:50.865342+00 f t TOTAL 30000.00 3 8906 \N +353568 2025-10-05 11:28:50.866196+00 2025-10-05 11:28:50.866201+00 f t ADELANTO 30000.00 4 8906 \N +356219 2025-10-06 11:14:47.033834+00 2025-10-06 11:14:47.033839+00 f t TOTAL 0.00 3 8959 \N +356220 2025-10-06 11:14:47.03478+00 2025-10-06 11:14:47.034785+00 f t ADELANTO 0.00 4 8959 \N +353573 2025-10-05 12:40:32.915681+00 2025-10-05 12:40:32.915689+00 f t SUBTOTAL 55000.00 1 8890 \N +353574 2025-10-05 12:40:32.917686+00 2025-10-05 12:40:32.917692+00 f t DESCUENTO 0.00 2 8890 \N +353575 2025-10-05 12:40:32.918957+00 2025-10-05 12:40:32.918962+00 f t TOTAL 55000.00 3 8890 \N +353576 2025-10-05 12:40:32.920299+00 2025-10-05 12:40:32.920304+00 f t ADELANTO 11000.00 4 8890 \N +356541 2025-10-06 11:32:44.74703+00 2025-10-06 11:32:44.747038+00 f t SUBTOTAL 46000.00 1 8962 \N +356542 2025-10-06 11:32:44.748547+00 2025-10-06 11:32:44.748553+00 f t DESCUENTO 0.00 2 8962 \N +356543 2025-10-06 11:32:44.749622+00 2025-10-06 11:32:44.749627+00 f t TOTAL 46000.00 3 8962 \N +356544 2025-10-06 11:32:44.750509+00 2025-10-06 11:32:44.750514+00 f t ADELANTO 11000.00 4 8962 \N +364101 2025-10-08 13:37:44.06727+00 2025-10-08 13:37:44.067285+00 f t SUBTOTAL 55000.00 1 9149 \N +364102 2025-10-08 13:37:44.094917+00 2025-10-08 13:37:44.094931+00 f t DESCUENTO 0.00 2 9149 \N +364103 2025-10-08 13:37:44.097084+00 2025-10-08 13:37:44.097093+00 f t TOTAL 55000.00 3 9149 \N +364104 2025-10-08 13:37:44.09866+00 2025-10-08 13:37:44.098666+00 f t ADELANTO 11000.00 4 9149 \N +353601 2025-10-05 12:52:31.653462+00 2025-10-05 12:52:31.65347+00 f t SUBTOTAL 80000.00 1 8907 \N +353602 2025-10-05 12:52:31.655014+00 2025-10-05 12:52:31.65502+00 f t DESCUENTO 0.00 2 8907 \N +353603 2025-10-05 12:52:31.656313+00 2025-10-05 12:52:31.656319+00 f t TOTAL 80000.00 3 8907 \N +353604 2025-10-05 12:52:31.657269+00 2025-10-05 12:52:31.657275+00 f t ADELANTO 12000.00 4 8907 \N +353637 2025-10-05 13:53:10.658815+00 2025-10-05 13:53:10.658822+00 f t SUBTOTAL 55000.00 1 8908 \N +353638 2025-10-05 13:53:10.660314+00 2025-10-05 13:53:10.66032+00 f t DESCUENTO 0.00 2 8908 \N +353639 2025-10-05 13:53:10.661468+00 2025-10-05 13:53:10.661473+00 f t TOTAL 55000.00 3 8908 \N +353640 2025-10-05 13:53:10.662521+00 2025-10-05 13:53:10.662526+00 f t ADELANTO 11000.00 4 8908 \N +364965 2025-10-08 19:00:33.13664+00 2025-10-08 19:00:33.136648+00 f t SUBTOTAL 78000.00 1 9177 \N +364966 2025-10-08 19:00:33.138422+00 2025-10-08 19:00:33.138429+00 f t DESCUENTO 0.00 2 9177 \N +364967 2025-10-08 19:00:33.139598+00 2025-10-08 19:00:33.139604+00 f t TOTAL 78000.00 3 9177 \N +353645 2025-10-05 14:08:38.489782+00 2025-10-05 14:08:38.489791+00 f t SUBTOTAL 0.00 1 8909 \N +353646 2025-10-05 14:08:38.4913+00 2025-10-05 14:08:38.491309+00 f t DESCUENTO 0.00 2 8909 \N +353647 2025-10-05 14:08:38.492575+00 2025-10-05 14:08:38.492581+00 f t TOTAL 0.00 3 8909 \N +353648 2025-10-05 14:08:38.493612+00 2025-10-05 14:08:38.493618+00 f t ADELANTO 0.00 4 8909 \N +364968 2025-10-08 19:00:33.140811+00 2025-10-08 19:00:33.140818+00 f t ADELANTO 21500.00 4 9177 \N +365181 2025-10-08 19:43:45.663215+00 2025-10-08 19:43:45.663224+00 f t SUBTOTAL 68000.00 1 9183 \N +357913 2025-10-06 17:27:23.469237+00 2025-10-06 17:27:23.469247+00 f t SUBTOTAL 54000.00 1 9001 \N +357914 2025-10-06 17:27:23.471121+00 2025-10-06 17:27:23.471149+00 f t DESCUENTO 0.00 2 9001 \N +357915 2025-10-06 17:27:23.472182+00 2025-10-06 17:27:23.472188+00 f t TOTAL 54000.00 3 9001 \N +357916 2025-10-06 17:27:23.473529+00 2025-10-06 17:27:23.473535+00 f t ADELANTO 13500.00 4 9001 \N +365182 2025-10-08 19:43:45.667219+00 2025-10-08 19:43:45.667226+00 f t DESCUENTO 0.00 2 9183 \N +365183 2025-10-08 19:43:45.668491+00 2025-10-08 19:43:45.668497+00 f t TOTAL 68000.00 3 9183 \N +365184 2025-10-08 19:43:45.669474+00 2025-10-08 19:43:45.669479+00 f t ADELANTO 13000.00 4 9183 \N +365333 2025-10-08 20:28:43.494316+00 2025-10-08 20:28:43.494324+00 f t SUBTOTAL 46000.00 1 9189 \N +365334 2025-10-08 20:28:43.495932+00 2025-10-08 20:28:43.495939+00 f t DESCUENTO 0.00 2 9189 \N +365335 2025-10-08 20:28:43.497187+00 2025-10-08 20:28:43.497195+00 f t TOTAL 46000.00 3 9189 \N +365336 2025-10-08 20:28:43.498702+00 2025-10-08 20:28:43.498709+00 f t ADELANTO 11000.00 4 9189 \N +365409 2025-10-08 21:09:16.160316+00 2025-10-08 21:09:16.160327+00 f t SUBTOTAL 0.00 1 9192 \N +365410 2025-10-08 21:09:16.162184+00 2025-10-08 21:09:16.162191+00 f t DESCUENTO 0.00 2 9192 \N +365411 2025-10-08 21:09:16.163443+00 2025-10-08 21:09:16.16345+00 f t TOTAL 0.00 3 9192 \N +365412 2025-10-08 21:09:16.164563+00 2025-10-08 21:09:16.164569+00 f t ADELANTO 0.00 4 9192 \N +358577 2025-10-06 19:34:02.84292+00 2025-10-06 19:34:02.84293+00 f t SUBTOTAL 0.00 1 9014 \N +358578 2025-10-06 19:34:02.845113+00 2025-10-06 19:34:02.84512+00 f t DESCUENTO 0.00 2 9014 \N +358579 2025-10-06 19:34:02.846583+00 2025-10-06 19:34:02.846589+00 f t TOTAL 0.00 3 9014 \N +358580 2025-10-06 19:34:02.847796+00 2025-10-06 19:34:02.847802+00 f t ADELANTO 0.00 4 9014 \N +359469 2025-10-07 00:39:10.68057+00 2025-10-07 00:39:10.680578+00 f t SUBTOTAL 70000.00 1 9042 \N +359470 2025-10-07 00:39:10.682065+00 2025-10-07 00:39:10.682071+00 f t DESCUENTO 0.00 2 9042 \N +359471 2025-10-07 00:39:10.683275+00 2025-10-07 00:39:10.683281+00 f t TOTAL 70000.00 3 9042 \N +359472 2025-10-07 00:39:10.684297+00 2025-10-07 00:39:10.684302+00 f t ADELANTO 19000.00 4 9042 \N +353769 2025-10-05 14:14:11.276799+00 2025-10-05 14:14:11.27681+00 f t SUBTOTAL 55000.00 1 8910 \N +353770 2025-10-05 14:14:11.278393+00 2025-10-05 14:14:11.278402+00 f t DESCUENTO 0.00 2 8910 \N +353771 2025-10-05 14:14:11.279538+00 2025-10-05 14:14:11.279543+00 f t TOTAL 55000.00 3 8910 \N +353772 2025-10-05 14:14:11.280684+00 2025-10-05 14:14:11.28069+00 f t ADELANTO 11000.00 4 8910 \N +359881 2025-10-07 02:51:27.653277+00 2025-10-07 02:51:27.653285+00 f t SUBTOTAL 55000.00 1 9051 \N +359882 2025-10-07 02:51:27.655555+00 2025-10-07 02:51:27.655562+00 f t DESCUENTO 0.00 2 9051 \N +359883 2025-10-07 02:51:27.656903+00 2025-10-07 02:51:27.65691+00 f t TOTAL 55000.00 3 9051 \N +359884 2025-10-07 02:51:27.658026+00 2025-10-07 02:51:27.658032+00 f t ADELANTO 11000.00 4 9051 \N +371062 2025-10-10 20:16:27.9476+00 2025-10-10 20:16:27.947607+00 f t DESCUENTO 0.00 2 9344 \N +371063 2025-10-10 20:16:27.949047+00 2025-10-10 20:16:27.949053+00 f t TOTAL 121000.00 3 9344 \N +371064 2025-10-10 20:16:27.950197+00 2025-10-10 20:16:27.950202+00 f t ADELANTO 26000.00 4 9344 \N +406552 2025-10-22 15:44:31.089265+00 2025-10-22 15:44:31.089274+00 f t SUBTOTAL 0.00 1 10289 \N +406553 2025-10-22 15:44:31.091302+00 2025-10-22 15:44:31.091309+00 f t COSTO_SERVICIO 0.00 2 10289 \N +371677 2025-10-11 00:17:28.927891+00 2025-10-11 00:17:28.9279+00 f t SUBTOTAL 55000.00 1 9364 \N +371678 2025-10-11 00:17:28.929658+00 2025-10-11 00:17:28.929665+00 f t DESCUENTO 0.00 2 9364 \N +371679 2025-10-11 00:17:28.930899+00 2025-10-11 00:17:28.930906+00 f t TOTAL 55000.00 3 9364 \N +371680 2025-10-11 00:17:28.932105+00 2025-10-11 00:17:28.932112+00 f t ADELANTO 11000.00 4 9364 \N +380565 2025-10-14 01:41:48.946388+00 2025-10-14 01:41:48.9464+00 f t SUBTOTAL 92000.00 1 9594 \N +380566 2025-10-14 01:41:48.948668+00 2025-10-14 01:41:48.948677+00 f t DESCUENTO 0.00 2 9594 \N +380567 2025-10-14 01:41:48.950076+00 2025-10-14 01:41:48.950084+00 f t TOTAL 92000.00 3 9594 \N +380568 2025-10-14 01:41:48.951503+00 2025-10-14 01:41:48.951509+00 f t ADELANTO 22000.00 4 9594 \N +356101 2025-10-06 10:23:45.848729+00 2025-10-06 10:23:45.848736+00 f t SUBTOTAL 55000.00 1 8956 \N +356102 2025-10-06 10:23:45.850366+00 2025-10-06 10:23:45.850372+00 f t DESCUENTO 0.00 2 8956 \N +356103 2025-10-06 10:23:45.851356+00 2025-10-06 10:23:45.851361+00 f t TOTAL 55000.00 3 8956 \N +356104 2025-10-06 10:23:45.852252+00 2025-10-06 10:23:45.852257+00 f t ADELANTO 11000.00 4 8956 \N +353861 2025-10-05 14:20:58.159798+00 2025-10-05 14:20:58.159807+00 f t SUBTOTAL 70000.00 1 8911 \N +353862 2025-10-05 14:20:58.161482+00 2025-10-05 14:20:58.16149+00 f t DESCUENTO 0.00 2 8911 \N +353863 2025-10-05 14:20:58.162846+00 2025-10-05 14:20:58.162856+00 f t TOTAL 70000.00 3 8911 \N +353864 2025-10-05 14:20:58.164143+00 2025-10-05 14:20:58.164151+00 f t ADELANTO 19000.00 4 8911 \N +353869 2025-10-05 14:26:05.900831+00 2025-10-05 14:26:05.900841+00 f t SUBTOTAL 0.00 1 8912 \N +353870 2025-10-05 14:26:05.902186+00 2025-10-05 14:26:05.902193+00 f t DESCUENTO 0.00 2 8912 \N +353871 2025-10-05 14:26:05.903455+00 2025-10-05 14:26:05.903462+00 f t TOTAL 0.00 3 8912 \N +353872 2025-10-05 14:26:05.904873+00 2025-10-05 14:26:05.90488+00 f t ADELANTO 0.00 4 8912 \N +372529 2025-10-11 15:36:35.995803+00 2025-10-11 15:36:35.995816+00 f t SUBTOTAL 0.00 1 9390 \N +372530 2025-10-11 15:36:35.997722+00 2025-10-11 15:36:35.997732+00 f t DESCUENTO 0.00 2 9390 \N +372531 2025-10-11 15:36:36.000019+00 2025-10-11 15:36:36.000028+00 f t TOTAL 0.00 3 9390 \N +372532 2025-10-11 15:36:36.001283+00 2025-10-11 15:36:36.001291+00 f t ADELANTO 0.00 4 9390 \N +364013 2025-10-08 12:15:02.290073+00 2025-10-08 12:15:02.290087+00 f t SUBTOTAL 46000.00 1 9146 \N +364014 2025-10-08 12:15:02.296701+00 2025-10-08 12:15:02.296719+00 f t DESCUENTO 0.00 2 9146 \N +364015 2025-10-08 12:15:02.302866+00 2025-10-08 12:15:02.302882+00 f t TOTAL 46000.00 3 9146 \N +364016 2025-10-08 12:15:02.308712+00 2025-10-08 12:15:02.308726+00 f t ADELANTO 11000.00 4 9146 \N +356893 2025-10-06 13:30:09.953272+00 2025-10-06 13:30:09.953281+00 f t SUBTOTAL 55000.00 1 8971 \N +356894 2025-10-06 13:30:09.955301+00 2025-10-06 13:30:09.95531+00 f t DESCUENTO 0.00 2 8971 \N +356895 2025-10-06 13:30:09.956838+00 2025-10-06 13:30:09.956845+00 f t TOTAL 55000.00 3 8971 \N +356896 2025-10-06 13:30:09.95819+00 2025-10-06 13:30:09.958197+00 f t ADELANTO 11000.00 4 8971 \N +353905 2025-10-05 14:51:39.771179+00 2025-10-05 14:51:39.771192+00 f t SUBTOTAL 133500.00 1 8913 \N +353906 2025-10-05 14:51:39.772831+00 2025-10-05 14:51:39.77284+00 f t DESCUENTO 0.00 2 8913 \N +353907 2025-10-05 14:51:39.77412+00 2025-10-05 14:51:39.774128+00 f t TOTAL 133500.00 3 8913 \N +353908 2025-10-05 14:51:39.77573+00 2025-10-05 14:51:39.775739+00 f t ADELANTO 28500.00 4 8913 \N +373273 2025-10-12 00:19:09.923921+00 2025-10-12 00:19:09.92393+00 f t SUBTOTAL 0.00 1 9412 \N +373274 2025-10-12 00:19:09.925491+00 2025-10-12 00:19:09.925501+00 f t DESCUENTO 0.00 2 9412 \N +373275 2025-10-12 00:19:09.92705+00 2025-10-12 00:19:09.927057+00 f t TOTAL 0.00 3 9412 \N +373276 2025-10-12 00:19:09.928714+00 2025-10-12 00:19:09.92872+00 f t ADELANTO 0.00 4 9412 \N +358497 2025-10-06 19:26:54.809493+00 2025-10-06 19:26:54.809502+00 f t SUBTOTAL 78000.00 1 9012 \N +358498 2025-10-06 19:26:54.814301+00 2025-10-06 19:26:54.81431+00 f t DESCUENTO 0.00 2 9012 \N +358499 2025-10-06 19:26:54.815979+00 2025-10-06 19:26:54.815988+00 f t TOTAL 78000.00 3 9012 \N +358500 2025-10-06 19:26:54.817559+00 2025-10-06 19:26:54.81757+00 f t ADELANTO 21500.00 4 9012 \N +374749 2025-10-12 17:04:44.063863+00 2025-10-12 17:04:44.063875+00 f t SUBTOTAL 55000.00 1 9448 \N +358997 2025-10-06 21:06:40.408724+00 2025-10-06 21:06:40.408734+00 f t SUBTOTAL 0.00 1 9026 \N +358998 2025-10-06 21:06:40.412662+00 2025-10-06 21:06:40.412672+00 f t DESCUENTO 0.00 2 9026 \N +358999 2025-10-06 21:06:40.414499+00 2025-10-06 21:06:40.414506+00 f t TOTAL 0.00 3 9026 \N +359000 2025-10-06 21:06:40.415858+00 2025-10-06 21:06:40.415864+00 f t ADELANTO 0.00 4 9026 \N +374750 2025-10-12 17:04:44.066017+00 2025-10-12 17:04:44.066027+00 f t DESCUENTO 0.00 2 9448 \N +374751 2025-10-12 17:04:44.067505+00 2025-10-12 17:04:44.067514+00 f t TOTAL 55000.00 3 9448 \N +374752 2025-10-12 17:04:44.068898+00 2025-10-12 17:04:44.068906+00 f t ADELANTO 11000.00 4 9448 \N +359149 2025-10-06 21:50:58.329323+00 2025-10-06 21:50:58.329335+00 f t SUBTOTAL 54000.00 1 9029 \N +359150 2025-10-06 21:50:58.331546+00 2025-10-06 21:50:58.331557+00 f t DESCUENTO 0.00 2 9029 \N +359151 2025-10-06 21:50:58.333013+00 2025-10-06 21:50:58.333022+00 f t TOTAL 54000.00 3 9029 \N +359152 2025-10-06 21:50:58.334356+00 2025-10-06 21:50:58.334366+00 f t ADELANTO 13500.00 4 9029 \N +359317 2025-10-06 23:34:36.827833+00 2025-10-06 23:34:36.827847+00 f t SUBTOTAL 46000.00 1 9037 \N +359318 2025-10-06 23:34:36.830031+00 2025-10-06 23:34:36.830042+00 f t DESCUENTO 0.00 2 9037 \N +359319 2025-10-06 23:34:36.831687+00 2025-10-06 23:34:36.831697+00 f t TOTAL 46000.00 3 9037 \N +359320 2025-10-06 23:34:36.833224+00 2025-10-06 23:34:36.833233+00 f t ADELANTO 11000.00 4 9037 \N +354045 2025-10-05 15:06:24.535223+00 2025-10-05 15:06:24.535232+00 f t SUBTOTAL 66900.00 1 8915 \N +354046 2025-10-05 15:06:24.537098+00 2025-10-05 15:06:24.537105+00 f t DESCUENTO 0.00 2 8915 \N +354047 2025-10-05 15:06:24.538386+00 2025-10-05 15:06:24.538393+00 f t TOTAL 66900.00 3 8915 \N +354048 2025-10-05 15:06:24.539445+00 2025-10-05 15:06:24.539451+00 f t ADELANTO 26400.00 4 8915 \N +359889 2025-10-07 04:39:35.393114+00 2025-10-07 04:39:35.393123+00 f t SUBTOTAL 0.00 1 9052 \N +359890 2025-10-07 04:39:35.394674+00 2025-10-07 04:39:35.394681+00 f t DESCUENTO 0.00 2 9052 \N +359891 2025-10-07 04:39:35.39604+00 2025-10-07 04:39:35.396046+00 f t TOTAL 0.00 3 9052 \N +359892 2025-10-07 04:39:35.397502+00 2025-10-07 04:39:35.397508+00 f t ADELANTO 0.00 4 9052 \N +366301 2025-10-09 10:04:28.205468+00 2025-10-09 10:04:28.205481+00 f t SUBTOTAL 46000.00 1 9214 \N +366302 2025-10-09 10:04:28.207591+00 2025-10-09 10:04:28.207602+00 f t DESCUENTO 0.00 2 9214 \N +366303 2025-10-09 10:04:28.208998+00 2025-10-09 10:04:28.209006+00 f t TOTAL 46000.00 3 9214 \N +366304 2025-10-09 10:04:28.210259+00 2025-10-09 10:04:28.210269+00 f t ADELANTO 11000.00 4 9214 \N +366361 2025-10-09 11:02:48.703969+00 2025-10-09 11:02:48.703976+00 f t SUBTOTAL 46000.00 1 9216 \N +366362 2025-10-09 11:02:48.705483+00 2025-10-09 11:02:48.705489+00 f t DESCUENTO 0.00 2 9216 \N +366363 2025-10-09 11:02:48.706362+00 2025-10-09 11:02:48.706367+00 f t TOTAL 46000.00 3 9216 \N +366364 2025-10-09 11:02:48.707432+00 2025-10-09 11:02:48.707439+00 f t ADELANTO 11000.00 4 9216 \N +362689 2025-10-07 21:43:26.325408+00 2025-10-07 21:43:26.325416+00 f t SUBTOTAL 46000.00 1 9110 \N +362690 2025-10-07 21:43:26.327063+00 2025-10-07 21:43:26.327071+00 f t DESCUENTO 0.00 2 9110 \N +362691 2025-10-07 21:43:26.32828+00 2025-10-07 21:43:26.328287+00 f t TOTAL 46000.00 3 9110 \N +362692 2025-10-07 21:43:26.329331+00 2025-10-07 21:43:26.329336+00 f t ADELANTO 11000.00 4 9110 \N +355341 2025-10-06 00:14:55.687883+00 2025-10-06 00:14:55.687892+00 f t SUBTOTAL 82000.00 1 8941 \N +355342 2025-10-06 00:14:55.689073+00 2025-10-06 00:14:55.68908+00 f t DESCUENTO 0.00 2 8941 \N +355343 2025-10-06 00:14:55.689849+00 2025-10-06 00:14:55.689854+00 f t TOTAL 82000.00 3 8941 \N +355344 2025-10-06 00:14:55.690513+00 2025-10-06 00:14:55.69052+00 f t ADELANTO 12000.00 4 8941 \N +389177 2025-10-17 01:38:56.035989+00 2025-10-17 01:38:56.035999+00 f t SUBTOTAL 0.00 1 9855 \N +389178 2025-10-17 01:38:56.038034+00 2025-10-17 01:38:56.038041+00 f t DESCUENTO 0.00 2 9855 \N +389179 2025-10-17 01:38:56.039233+00 2025-10-17 01:38:56.039239+00 f t TOTAL 0.00 3 9855 \N +389180 2025-10-17 01:38:56.040231+00 2025-10-17 01:38:56.040238+00 f t ADELANTO 0.00 4 9855 \N +356109 2025-10-06 10:46:52.064002+00 2025-10-06 10:46:52.06401+00 f t SUBTOTAL 0.00 1 8957 \N +356110 2025-10-06 10:46:52.065177+00 2025-10-06 10:46:52.065186+00 f t DESCUENTO 0.00 2 8957 \N +356111 2025-10-06 10:46:52.06619+00 2025-10-06 10:46:52.066195+00 f t TOTAL 0.00 3 8957 \N +356112 2025-10-06 10:46:52.067064+00 2025-10-06 10:46:52.06707+00 f t ADELANTO 0.00 4 8957 \N +363905 2025-10-08 11:38:56.48652+00 2025-10-08 11:38:56.486533+00 f t SUBTOTAL 114000.00 1 9141 \N +363906 2025-10-08 11:38:56.488522+00 2025-10-08 11:38:56.488532+00 f t DESCUENTO 0.00 2 9141 \N +363907 2025-10-08 11:38:56.489829+00 2025-10-08 11:38:56.489839+00 f t TOTAL 114000.00 3 9141 \N +363908 2025-10-08 11:38:56.491049+00 2025-10-08 11:38:56.491058+00 f t ADELANTO 24000.00 4 9141 \N +364113 2025-10-08 14:07:22.256821+00 2025-10-08 14:07:22.25683+00 f t SUBTOTAL 13200.00 1 9150 \N +364114 2025-10-08 14:07:22.258917+00 2025-10-08 14:07:22.258925+00 f t DESCUENTO 0.00 2 9150 \N +364115 2025-10-08 14:07:22.260407+00 2025-10-08 14:07:22.260413+00 f t TOTAL 13200.00 3 9150 \N +364116 2025-10-08 14:07:22.261459+00 2025-10-08 14:07:22.261465+00 f t ADELANTO 13200.00 4 9150 \N +364297 2025-10-08 14:48:34.695545+00 2025-10-08 14:48:34.695555+00 f t SUBTOTAL 0.00 1 9155 \N +364298 2025-10-08 14:48:34.698046+00 2025-10-08 14:48:34.698053+00 f t DESCUENTO 0.00 2 9155 \N +364299 2025-10-08 14:48:34.699433+00 2025-10-08 14:48:34.699439+00 f t TOTAL 0.00 3 9155 \N +364300 2025-10-08 14:48:34.70091+00 2025-10-08 14:48:34.700916+00 f t ADELANTO 0.00 4 9155 \N +364393 2025-10-08 15:31:17.014186+00 2025-10-08 15:31:17.014198+00 f t SUBTOTAL 55000.00 1 9159 \N +364394 2025-10-08 15:31:17.018139+00 2025-10-08 15:31:17.018149+00 f t DESCUENTO 0.00 2 9159 \N +364395 2025-10-08 15:31:17.035843+00 2025-10-08 15:31:17.035852+00 f t TOTAL 55000.00 3 9159 \N +364396 2025-10-08 15:31:17.03989+00 2025-10-08 15:31:17.039898+00 f t ADELANTO 11000.00 4 9159 \N +357349 2025-10-06 14:46:32.697039+00 2025-10-06 14:46:32.697049+00 f t SUBTOTAL 0.00 1 8982 \N +357350 2025-10-06 14:46:32.699215+00 2025-10-06 14:46:32.699222+00 f t DESCUENTO 0.00 2 8982 \N +357351 2025-10-06 14:46:32.700411+00 2025-10-06 14:46:32.700417+00 f t TOTAL 0.00 3 8982 \N +357352 2025-10-06 14:46:32.701844+00 2025-10-06 14:46:32.701851+00 f t ADELANTO 0.00 4 8982 \N +354201 2025-10-05 15:45:01.82484+00 2025-10-05 15:45:01.824853+00 f t SUBTOTAL 99400.00 1 8917 \N +354202 2025-10-05 15:45:01.8327+00 2025-10-05 15:45:01.83271+00 f t DESCUENTO 0.00 2 8917 \N +354203 2025-10-05 15:45:01.837367+00 2025-10-05 15:45:01.837379+00 f t TOTAL 99400.00 3 8917 \N +354204 2025-10-05 15:45:01.843832+00 2025-10-05 15:45:01.843846+00 f t ADELANTO 58900.00 4 8917 \N +357449 2025-10-06 14:58:19.209277+00 2025-10-06 14:58:19.209285+00 f t SUBTOTAL 99400.00 1 8985 \N +357450 2025-10-06 14:58:19.211192+00 2025-10-06 14:58:19.211204+00 f t DESCUENTO 0.00 2 8985 \N +357451 2025-10-06 14:58:19.212634+00 2025-10-06 14:58:19.212644+00 f t TOTAL 99400.00 3 8985 \N +357452 2025-10-06 14:58:19.213834+00 2025-10-06 14:58:19.213843+00 f t ADELANTO 58900.00 4 8985 \N +354209 2025-10-05 16:03:46.007719+00 2025-10-05 16:03:46.007729+00 f t SUBTOTAL 0.00 1 8918 \N +354210 2025-10-05 16:03:46.00936+00 2025-10-05 16:03:46.009367+00 f t DESCUENTO 0.00 2 8918 \N +354211 2025-10-05 16:03:46.010823+00 2025-10-05 16:03:46.01083+00 f t TOTAL 0.00 3 8918 \N +354212 2025-10-05 16:03:46.012174+00 2025-10-05 16:03:46.012182+00 f t ADELANTO 0.00 4 8918 \N +354241 2025-10-05 16:22:59.814502+00 2025-10-05 16:22:59.814511+00 f t SUBTOTAL 107000.00 1 8916 \N +354242 2025-10-05 16:22:59.816276+00 2025-10-05 16:22:59.816283+00 f t DESCUENTO 0.00 2 8916 \N +354243 2025-10-05 16:22:59.817466+00 2025-10-05 16:22:59.817473+00 f t TOTAL 107000.00 3 8916 \N +354244 2025-10-05 16:22:59.818502+00 2025-10-05 16:22:59.818507+00 f t ADELANTO 12000.00 4 8916 \N +354249 2025-10-05 16:55:30.886112+00 2025-10-05 16:55:30.886121+00 f t SUBTOTAL 0.00 1 8919 \N +354250 2025-10-05 16:55:30.887363+00 2025-10-05 16:55:30.887373+00 f t DESCUENTO 0.00 2 8919 \N +354251 2025-10-05 16:55:30.888417+00 2025-10-05 16:55:30.888422+00 f t TOTAL 0.00 3 8919 \N +354252 2025-10-05 16:55:30.889276+00 2025-10-05 16:55:30.889281+00 f t ADELANTO 0.00 4 8919 \N +358245 2025-10-06 18:28:14.679177+00 2025-10-06 18:28:14.679186+00 f t SUBTOTAL 70000.00 1 9006 \N +358246 2025-10-06 18:28:14.681132+00 2025-10-06 18:28:14.681139+00 f t DESCUENTO 0.00 2 9006 \N +358247 2025-10-06 18:28:14.682547+00 2025-10-06 18:28:14.682553+00 f t TOTAL 70000.00 3 9006 \N +358248 2025-10-06 18:28:14.683898+00 2025-10-06 18:28:14.683904+00 f t ADELANTO 19000.00 4 9006 \N +366073 2025-10-09 01:31:05.541654+00 2025-10-09 01:31:05.541664+00 f t SUBTOTAL 78000.00 1 9208 \N +366074 2025-10-09 01:31:05.54358+00 2025-10-09 01:31:05.543589+00 f t DESCUENTO 0.00 2 9208 \N +366075 2025-10-09 01:31:05.545034+00 2025-10-09 01:31:05.54504+00 f t TOTAL 78000.00 3 9208 \N +366076 2025-10-09 01:31:05.546229+00 2025-10-09 01:31:05.546234+00 f t ADELANTO 21500.00 4 9208 \N +354341 2025-10-05 17:20:25.097573+00 2025-10-05 17:20:25.097581+00 f t SUBTOTAL 127500.00 1 8920 \N +354342 2025-10-05 17:20:25.099162+00 2025-10-05 17:20:25.099169+00 f t DESCUENTO 0.00 2 8920 \N +354343 2025-10-05 17:20:25.100445+00 2025-10-05 17:20:25.100451+00 f t TOTAL 127500.00 3 8920 \N +354344 2025-10-05 17:20:25.10153+00 2025-10-05 17:20:25.101536+00 f t ADELANTO 27500.00 4 8920 \N +359749 2025-10-07 01:40:22.084563+00 2025-10-07 01:40:22.084573+00 f t SUBTOTAL 54000.00 1 9046 \N +359750 2025-10-07 01:40:22.086631+00 2025-10-07 01:40:22.08664+00 f t DESCUENTO 0.00 2 9046 \N +359751 2025-10-07 01:40:22.088032+00 2025-10-07 01:40:22.088039+00 f t TOTAL 54000.00 3 9046 \N +359752 2025-10-07 01:40:22.089263+00 2025-10-07 01:40:22.08927+00 f t ADELANTO 13500.00 4 9046 \N +366753 2025-10-09 12:43:17.424019+00 2025-10-09 12:43:17.42403+00 f t SUBTOTAL 0.00 1 9222 \N +366754 2025-10-09 12:43:17.433382+00 2025-10-09 12:43:17.433393+00 f t DESCUENTO 0.00 2 9222 \N +366755 2025-10-09 12:43:17.434901+00 2025-10-09 12:43:17.434908+00 f t TOTAL 0.00 3 9222 \N +366756 2025-10-09 12:43:17.436081+00 2025-10-09 12:43:17.436087+00 f t ADELANTO 0.00 4 9222 \N +354377 2025-10-05 17:43:14.71788+00 2025-10-05 17:43:14.717888+00 f t SUBTOTAL 55000.00 1 8921 \N +354378 2025-10-05 17:43:14.719728+00 2025-10-05 17:43:14.719735+00 f t DESCUENTO 0.00 2 8921 \N +354379 2025-10-05 17:43:14.720978+00 2025-10-05 17:43:14.720983+00 f t TOTAL 55000.00 3 8921 \N +354380 2025-10-05 17:43:14.722612+00 2025-10-05 17:43:14.722618+00 f t ADELANTO 11000.00 4 8921 \N +354741 2025-10-05 19:46:22.993559+00 2025-10-05 19:46:22.993568+00 f t SUBTOTAL 55000.00 1 8930 \N +354742 2025-10-05 19:46:22.994557+00 2025-10-05 19:46:22.994563+00 f t DESCUENTO 0.00 2 8930 \N +354743 2025-10-05 19:46:22.995427+00 2025-10-05 19:46:22.995432+00 f t TOTAL 55000.00 3 8930 \N +354744 2025-10-05 19:46:22.996117+00 2025-10-05 19:46:22.996123+00 f t ADELANTO 11000.00 4 8930 \N +354417 2025-10-05 17:44:53.032003+00 2025-10-05 17:44:53.032011+00 f t SUBTOTAL 46000.00 1 8922 \N +354418 2025-10-05 17:44:53.033522+00 2025-10-05 17:44:53.033529+00 f t DESCUENTO 0.00 2 8922 \N +354419 2025-10-05 17:44:53.034577+00 2025-10-05 17:44:53.034582+00 f t TOTAL 46000.00 3 8922 \N +354420 2025-10-05 17:44:53.035535+00 2025-10-05 17:44:53.03554+00 f t ADELANTO 11000.00 4 8922 \N +380845 2025-10-14 04:33:03.539118+00 2025-10-14 04:33:03.539127+00 f t SUBTOTAL 0.00 1 9600 \N +380846 2025-10-14 04:33:03.540902+00 2025-10-14 04:33:03.54091+00 f t DESCUENTO 0.00 2 9600 \N +380847 2025-10-14 04:33:03.54218+00 2025-10-14 04:33:03.542186+00 f t TOTAL 0.00 3 9600 \N +380848 2025-10-14 04:33:03.543199+00 2025-10-14 04:33:03.543204+00 f t ADELANTO 0.00 4 9600 \N +355989 2025-10-06 08:44:55.800438+00 2025-10-06 08:44:55.800447+00 f t SUBTOTAL 55000.00 1 8953 \N +355990 2025-10-06 08:44:55.802343+00 2025-10-06 08:44:55.802353+00 f t DESCUENTO 0.00 2 8953 \N +355991 2025-10-06 08:44:55.8039+00 2025-10-06 08:44:55.803905+00 f t TOTAL 55000.00 3 8953 \N +355992 2025-10-06 08:44:55.805057+00 2025-10-06 08:44:55.805062+00 f t ADELANTO 11000.00 4 8953 \N +372949 2025-10-11 18:34:33.316982+00 2025-10-11 18:34:33.316991+00 f t SUBTOTAL 0.00 1 9400 \N +354473 2025-10-05 18:13:47.483665+00 2025-10-05 18:13:47.483674+00 f t SUBTOTAL 124000.00 1 8923 \N +354474 2025-10-05 18:13:47.485166+00 2025-10-05 18:13:47.485175+00 f t DESCUENTO 0.00 2 8923 \N +354475 2025-10-05 18:13:47.486263+00 2025-10-05 18:13:47.486269+00 f t TOTAL 124000.00 3 8923 \N +354476 2025-10-05 18:13:47.487146+00 2025-10-05 18:13:47.487151+00 f t ADELANTO 32500.00 4 8923 \N +372950 2025-10-11 18:34:33.318784+00 2025-10-11 18:34:33.318792+00 f t DESCUENTO 0.00 2 9400 \N +372951 2025-10-11 18:34:33.320088+00 2025-10-11 18:34:33.320096+00 f t TOTAL 0.00 3 9400 \N +372952 2025-10-11 18:34:33.321482+00 2025-10-11 18:34:33.321488+00 f t ADELANTO 0.00 4 9400 \N +354505 2025-10-05 18:17:23.870863+00 2025-10-05 18:17:23.870873+00 f t SUBTOTAL 0.00 1 8924 \N +354506 2025-10-05 18:17:23.872788+00 2025-10-05 18:17:23.872796+00 f t DESCUENTO 0.00 2 8924 \N +354507 2025-10-05 18:17:23.874181+00 2025-10-05 18:17:23.874187+00 f t TOTAL 0.00 3 8924 \N +354508 2025-10-05 18:17:23.875422+00 2025-10-05 18:17:23.875428+00 f t ADELANTO 0.00 4 8924 \N +354513 2025-10-05 18:28:13.221127+00 2025-10-05 18:28:13.221136+00 f t SUBTOTAL 0.00 1 8925 \N +354514 2025-10-05 18:28:13.222505+00 2025-10-05 18:28:13.222512+00 f t DESCUENTO 0.00 2 8925 \N +354515 2025-10-05 18:28:13.223693+00 2025-10-05 18:28:13.2237+00 f t TOTAL 0.00 3 8925 \N +354516 2025-10-05 18:28:13.224776+00 2025-10-05 18:28:13.224782+00 f t ADELANTO 0.00 4 8925 \N +354525 2025-10-05 19:18:21.844189+00 2025-10-05 19:18:21.844198+00 f t SUBTOTAL 30000.00 1 8926 \N +354526 2025-10-05 19:18:21.84577+00 2025-10-05 19:18:21.845777+00 f t DESCUENTO 0.00 2 8926 \N +354527 2025-10-05 19:18:21.846857+00 2025-10-05 19:18:21.846863+00 f t TOTAL 30000.00 3 8926 \N +354528 2025-10-05 19:18:21.84785+00 2025-10-05 19:18:21.847855+00 f t ADELANTO 30000.00 4 8926 \N +357837 2025-10-06 16:58:54.585296+00 2025-10-06 16:58:54.585304+00 f t SUBTOTAL 70000.00 1 8998 \N +357838 2025-10-06 16:58:54.58718+00 2025-10-06 16:58:54.587187+00 f t DESCUENTO 0.00 2 8998 \N +357839 2025-10-06 16:58:54.588517+00 2025-10-06 16:58:54.588523+00 f t TOTAL 70000.00 3 8998 \N +357840 2025-10-06 16:58:54.590055+00 2025-10-06 16:58:54.590061+00 f t ADELANTO 19000.00 4 8998 \N +358165 2025-10-06 18:00:20.108123+00 2025-10-06 18:00:20.108133+00 f t SUBTOTAL 70000.00 1 9004 \N +358166 2025-10-06 18:00:20.111746+00 2025-10-06 18:00:20.111757+00 f t DESCUENTO 0.00 2 9004 \N +358167 2025-10-06 18:00:20.113968+00 2025-10-06 18:00:20.113979+00 f t TOTAL 70000.00 3 9004 \N +358168 2025-10-06 18:00:20.116329+00 2025-10-06 18:00:20.116342+00 f t ADELANTO 19000.00 4 9004 \N +354557 2025-10-05 19:26:30.853073+00 2025-10-05 19:26:30.853082+00 f t SUBTOTAL 133000.00 1 8914 \N +354558 2025-10-05 19:26:30.854813+00 2025-10-05 19:26:30.85482+00 f t DESCUENTO 0.00 2 8914 \N +354559 2025-10-05 19:26:30.856062+00 2025-10-05 19:26:30.856068+00 f t TOTAL 133000.00 3 8914 \N +354560 2025-10-05 19:26:30.857041+00 2025-10-05 19:26:30.857046+00 f t ADELANTO 32500.00 4 8914 \N +358341 2025-10-06 18:47:25.898817+00 2025-10-06 18:47:25.898827+00 f t SUBTOTAL 0.00 1 9010 \N +358342 2025-10-06 18:47:25.900988+00 2025-10-06 18:47:25.900995+00 f t DESCUENTO 0.00 2 9010 \N +358343 2025-10-06 18:47:25.902379+00 2025-10-06 18:47:25.902385+00 f t TOTAL 0.00 3 9010 \N +358344 2025-10-06 18:47:25.903638+00 2025-10-06 18:47:25.903644+00 f t ADELANTO 0.00 4 9010 \N +365613 2025-10-08 22:23:06.898523+00 2025-10-08 22:23:06.898531+00 f t SUBTOTAL 107000.00 1 9198 \N +365614 2025-10-08 22:23:06.900434+00 2025-10-08 22:23:06.900443+00 f t DESCUENTO 0.00 2 9198 \N +365615 2025-10-08 22:23:06.901846+00 2025-10-08 22:23:06.901854+00 f t TOTAL 107000.00 3 9198 \N +365616 2025-10-08 22:23:06.903034+00 2025-10-08 22:23:06.903041+00 f t ADELANTO 12000.00 4 9198 \N +358845 2025-10-06 20:31:03.279036+00 2025-10-06 20:31:03.279049+00 f t SUBTOTAL 0.00 1 9021 \N +358846 2025-10-06 20:31:03.28159+00 2025-10-06 20:31:03.281601+00 f t DESCUENTO 0.00 2 9021 \N +358847 2025-10-06 20:31:03.283091+00 2025-10-06 20:31:03.283101+00 f t TOTAL 0.00 3 9021 \N +358848 2025-10-06 20:31:03.284866+00 2025-10-06 20:31:03.284875+00 f t ADELANTO 0.00 4 9021 \N +366081 2025-10-09 01:52:39.140984+00 2025-10-09 01:52:39.140994+00 f t SUBTOTAL 0.00 1 9209 \N +366082 2025-10-09 01:52:39.142747+00 2025-10-09 01:52:39.142754+00 f t DESCUENTO 0.00 2 9209 \N +366083 2025-10-09 01:52:39.144175+00 2025-10-09 01:52:39.144182+00 f t TOTAL 0.00 3 9209 \N +366084 2025-10-09 01:52:39.145898+00 2025-10-09 01:52:39.145903+00 f t ADELANTO 0.00 4 9209 \N +366193 2025-10-09 03:03:31.121151+00 2025-10-09 03:03:31.12116+00 f t SUBTOTAL 46000.00 1 9211 \N +366194 2025-10-09 03:03:31.122569+00 2025-10-09 03:03:31.122574+00 f t DESCUENTO 0.00 2 9211 \N +366195 2025-10-09 03:03:31.123635+00 2025-10-09 03:03:31.12364+00 f t TOTAL 46000.00 3 9211 \N +366196 2025-10-09 03:03:31.124725+00 2025-10-09 03:03:31.124751+00 f t ADELANTO 11000.00 4 9211 \N +366429 2025-10-09 11:15:37.150478+00 2025-10-09 11:15:37.150489+00 f t SUBTOTAL 55000.00 1 9218 \N +366430 2025-10-09 11:15:37.15234+00 2025-10-09 11:15:37.15235+00 f t DESCUENTO 0.00 2 9218 \N +366431 2025-10-09 11:15:37.153573+00 2025-10-09 11:15:37.153583+00 f t TOTAL 55000.00 3 9218 \N +366432 2025-10-09 11:15:37.154863+00 2025-10-09 11:15:37.154871+00 f t ADELANTO 11000.00 4 9218 \N +366597 2025-10-09 12:30:54.028967+00 2025-10-09 12:30:54.028975+00 f t SUBTOTAL 77000.00 1 9221 \N +366598 2025-10-09 12:30:54.030592+00 2025-10-09 12:30:54.030598+00 f t DESCUENTO 0.00 2 9221 \N +366599 2025-10-09 12:30:54.031856+00 2025-10-09 12:30:54.031862+00 f t TOTAL 77000.00 3 9221 \N +366600 2025-10-09 12:30:54.03277+00 2025-10-09 12:30:54.032776+00 f t ADELANTO 19000.00 4 9221 \N +366853 2025-10-09 13:14:53.854699+00 2025-10-09 13:14:53.854708+00 f t SUBTOTAL 0.00 1 9228 \N +366854 2025-10-09 13:14:53.856681+00 2025-10-09 13:14:53.856688+00 f t DESCUENTO 0.00 2 9228 \N +366855 2025-10-09 13:14:53.857834+00 2025-10-09 13:14:53.857839+00 f t TOTAL 0.00 3 9228 \N +366856 2025-10-09 13:14:53.859029+00 2025-10-09 13:14:53.859036+00 f t ADELANTO 0.00 4 9228 \N +362701 2025-10-07 21:45:14.649865+00 2025-10-07 21:45:14.649877+00 f t SUBTOTAL 46000.00 1 9111 \N +362702 2025-10-07 21:45:14.651799+00 2025-10-07 21:45:14.65181+00 f t DESCUENTO 0.00 2 9111 \N +362703 2025-10-07 21:45:14.653329+00 2025-10-07 21:45:14.653337+00 f t TOTAL 46000.00 3 9111 \N +362704 2025-10-07 21:45:14.654738+00 2025-10-07 21:45:14.654746+00 f t ADELANTO 11000.00 4 9111 \N +360245 2025-10-07 09:47:06.570633+00 2025-10-07 09:47:06.570641+00 f t SUBTOTAL 70000.00 1 9058 \N +360246 2025-10-07 09:47:06.572047+00 2025-10-07 09:47:06.572054+00 f t DESCUENTO 0.00 2 9058 \N +360247 2025-10-07 09:47:06.573063+00 2025-10-07 09:47:06.573069+00 f t TOTAL 70000.00 3 9058 \N +360248 2025-10-07 09:47:06.573954+00 2025-10-07 09:47:06.573959+00 f t ADELANTO 19000.00 4 9058 \N +379649 2025-10-13 23:19:57.804129+00 2025-10-13 23:19:57.804138+00 f t SUBTOTAL 68000.00 1 9578 \N +379650 2025-10-13 23:19:57.806436+00 2025-10-13 23:19:57.806444+00 f t DESCUENTO 0.00 2 9578 \N +379651 2025-10-13 23:19:57.80811+00 2025-10-13 23:19:57.808118+00 f t TOTAL 68000.00 3 9578 \N +379652 2025-10-13 23:19:57.810103+00 2025-10-13 23:19:57.810111+00 f t ADELANTO 13000.00 4 9578 \N +388433 2025-10-16 22:56:51.837643+00 2025-10-16 22:56:51.837652+00 f t SUBTOTAL 0.00 1 9832 \N +388434 2025-10-16 22:56:51.839477+00 2025-10-16 22:56:51.839484+00 f t DESCUENTO 0.00 2 9832 \N +363113 2025-10-08 00:53:00.62481+00 2025-10-08 00:53:00.624822+00 f t SUBTOTAL 0.00 1 9125 \N +363114 2025-10-08 00:53:00.626336+00 2025-10-08 00:53:00.626343+00 f t DESCUENTO 0.00 2 9125 \N +363115 2025-10-08 00:53:00.627569+00 2025-10-08 00:53:00.627574+00 f t TOTAL 0.00 3 9125 \N +363116 2025-10-08 00:53:00.628683+00 2025-10-08 00:53:00.628688+00 f t ADELANTO 0.00 4 9125 \N +371549 2025-10-10 23:48:33.591518+00 2025-10-10 23:48:33.591526+00 f t SUBTOTAL 55000.00 1 9360 \N +371550 2025-10-10 23:48:33.593203+00 2025-10-10 23:48:33.59321+00 f t DESCUENTO 0.00 2 9360 \N +371551 2025-10-10 23:48:33.594243+00 2025-10-10 23:48:33.594248+00 f t TOTAL 55000.00 3 9360 \N +371552 2025-10-10 23:48:33.595326+00 2025-10-10 23:48:33.595331+00 f t ADELANTO 11000.00 4 9360 \N +371817 2025-10-11 02:26:42.033407+00 2025-10-11 02:26:42.033416+00 f t SUBTOTAL 0.00 1 9368 \N +371818 2025-10-11 02:26:42.035294+00 2025-10-11 02:26:42.035301+00 f t DESCUENTO 0.00 2 9368 \N +371819 2025-10-11 02:26:42.036599+00 2025-10-11 02:26:42.036605+00 f t TOTAL 0.00 3 9368 \N +371820 2025-10-11 02:26:42.037692+00 2025-10-11 02:26:42.037698+00 f t ADELANTO 0.00 4 9368 \N +371953 2025-10-11 05:09:14.039876+00 2025-10-11 05:09:14.039886+00 f t SUBTOTAL 0.00 1 9374 \N +371954 2025-10-11 05:09:14.041402+00 2025-10-11 05:09:14.041412+00 f t DESCUENTO 0.00 2 9374 \N +371955 2025-10-11 05:09:14.042723+00 2025-10-11 05:09:14.04273+00 f t TOTAL 0.00 3 9374 \N +371956 2025-10-11 05:09:14.045202+00 2025-10-11 05:09:14.045209+00 f t ADELANTO 0.00 4 9374 \N +372069 2025-10-11 05:14:47.920801+00 2025-10-11 05:14:47.920812+00 f t SUBTOTAL 46000.00 1 9376 \N +372070 2025-10-11 05:14:47.922661+00 2025-10-11 05:14:47.922671+00 f t DESCUENTO 0.00 2 9376 \N +372071 2025-10-11 05:14:47.924445+00 2025-10-11 05:14:47.924453+00 f t TOTAL 46000.00 3 9376 \N +372072 2025-10-11 05:14:47.925753+00 2025-10-11 05:14:47.925762+00 f t ADELANTO 11000.00 4 9376 \N +364121 2025-10-08 14:11:20.827353+00 2025-10-08 14:11:20.827365+00 f t SUBTOTAL 78000.00 1 9120 \N +364122 2025-10-08 14:11:20.829983+00 2025-10-08 14:11:20.829997+00 f t DESCUENTO 0.00 2 9120 \N +364123 2025-10-08 14:11:20.831734+00 2025-10-08 14:11:20.831744+00 f t TOTAL 78000.00 3 9120 \N +364124 2025-10-08 14:11:20.843769+00 2025-10-08 14:11:20.843781+00 f t ADELANTO 13000.00 4 9120 \N +360313 2025-10-07 10:24:20.96582+00 2025-10-07 10:24:20.965829+00 f t SUBTOTAL 0.00 1 9059 \N +360314 2025-10-07 10:24:20.967988+00 2025-10-07 10:24:20.967997+00 f t DESCUENTO 0.00 2 9059 \N +360315 2025-10-07 10:24:20.969567+00 2025-10-07 10:24:20.969574+00 f t TOTAL 0.00 3 9059 \N +360316 2025-10-07 10:24:20.970873+00 2025-10-07 10:24:20.970879+00 f t ADELANTO 0.00 4 9059 \N +364405 2025-10-08 15:33:58.122572+00 2025-10-08 15:33:58.122581+00 f t SUBTOTAL 30000.00 1 9160 \N +364406 2025-10-08 15:33:58.124174+00 2025-10-08 15:33:58.124182+00 f t DESCUENTO 0.00 2 9160 \N +364407 2025-10-08 15:33:58.125271+00 2025-10-08 15:33:58.12528+00 f t TOTAL 30000.00 3 9160 \N +364408 2025-10-08 15:33:58.126428+00 2025-10-08 15:33:58.126434+00 f t ADELANTO 30000.00 4 9160 \N +364505 2025-10-08 17:18:16.678647+00 2025-10-08 17:18:16.678655+00 f t SUBTOTAL 46000.00 1 9165 \N +364506 2025-10-08 17:18:16.68036+00 2025-10-08 17:18:16.680369+00 f t DESCUENTO 0.00 2 9165 \N +364507 2025-10-08 17:18:16.681431+00 2025-10-08 17:18:16.681437+00 f t TOTAL 46000.00 3 9165 \N +364508 2025-10-08 17:18:16.682381+00 2025-10-08 17:18:16.682387+00 f t ADELANTO 11000.00 4 9165 \N +372957 2025-10-11 18:35:41.636318+00 2025-10-11 18:35:41.636328+00 f t SUBTOTAL 0.00 1 9401 \N +372958 2025-10-11 18:35:41.637975+00 2025-10-11 18:35:41.637982+00 f t DESCUENTO 0.00 2 9401 \N +372959 2025-10-11 18:35:41.639296+00 2025-10-11 18:35:41.639302+00 f t TOTAL 0.00 3 9401 \N +372960 2025-10-11 18:35:41.64044+00 2025-10-11 18:35:41.640446+00 f t ADELANTO 0.00 4 9401 \N +373473 2025-10-12 03:03:55.931536+00 2025-10-12 03:03:55.931546+00 f t SUBTOTAL 55000.00 1 9417 \N +373474 2025-10-12 03:03:55.93343+00 2025-10-12 03:03:55.933437+00 f t DESCUENTO 0.00 2 9417 \N +373475 2025-10-12 03:03:55.934682+00 2025-10-12 03:03:55.934689+00 f t TOTAL 55000.00 3 9417 \N +373476 2025-10-12 03:03:55.936228+00 2025-10-12 03:03:55.936235+00 f t ADELANTO 11000.00 4 9417 \N +373573 2025-10-12 04:01:22.404537+00 2025-10-12 04:01:22.404549+00 f t SUBTOTAL 0.00 1 9420 \N +373574 2025-10-12 04:01:22.406585+00 2025-10-12 04:01:22.406593+00 f t DESCUENTO 0.00 2 9420 \N +373575 2025-10-12 04:01:22.408023+00 2025-10-12 04:01:22.408031+00 f t TOTAL 0.00 3 9420 \N +373576 2025-10-12 04:01:22.409209+00 2025-10-12 04:01:22.409215+00 f t ADELANTO 0.00 4 9420 \N +374757 2025-10-12 17:06:03.319675+00 2025-10-12 17:06:03.319686+00 f t SUBTOTAL 0.00 1 9450 \N +374758 2025-10-12 17:06:03.321266+00 2025-10-12 17:06:03.321274+00 f t DESCUENTO 0.00 2 9450 \N +374759 2025-10-12 17:06:03.323413+00 2025-10-12 17:06:03.323424+00 f t TOTAL 0.00 3 9450 \N +374760 2025-10-12 17:06:03.325658+00 2025-10-12 17:06:03.325667+00 f t ADELANTO 0.00 4 9450 \N +366201 2025-10-09 04:30:28.715902+00 2025-10-09 04:30:28.715916+00 f t SUBTOTAL 0.00 1 9212 \N +366202 2025-10-09 04:30:28.718324+00 2025-10-09 04:30:28.718336+00 f t DESCUENTO 0.00 2 9212 \N +366203 2025-10-09 04:30:28.72082+00 2025-10-09 04:30:28.720831+00 f t TOTAL 0.00 3 9212 \N +366204 2025-10-09 04:30:28.722553+00 2025-10-09 04:30:28.722564+00 f t ADELANTO 0.00 4 9212 \N +366317 2025-10-09 10:50:35.813035+00 2025-10-09 10:50:35.813044+00 f t SUBTOTAL 0.00 1 9215 \N +366318 2025-10-09 10:50:35.81541+00 2025-10-09 10:50:35.815417+00 f t DESCUENTO 0.00 2 9215 \N +366319 2025-10-09 10:50:35.816693+00 2025-10-09 10:50:35.816699+00 f t TOTAL 0.00 3 9215 \N +366320 2025-10-09 10:50:35.817753+00 2025-10-09 10:50:35.817758+00 f t ADELANTO 0.00 4 9215 \N +366377 2025-10-09 11:14:01.351265+00 2025-10-09 11:14:01.351275+00 f t SUBTOTAL 0.00 1 9217 \N +366378 2025-10-09 11:14:01.354725+00 2025-10-09 11:14:01.354735+00 f t DESCUENTO 0.00 2 9217 \N +366379 2025-10-09 11:14:01.356224+00 2025-10-09 11:14:01.356231+00 f t TOTAL 0.00 3 9217 \N +366380 2025-10-09 11:14:01.357455+00 2025-10-09 11:14:01.357462+00 f t ADELANTO 0.00 4 9217 \N +366861 2025-10-09 13:15:31.523803+00 2025-10-09 13:15:31.523814+00 f t SUBTOTAL 0.00 1 9229 \N +366862 2025-10-09 13:15:31.525143+00 2025-10-09 13:15:31.525151+00 f t DESCUENTO 0.00 2 9229 \N +366863 2025-10-09 13:15:31.527309+00 2025-10-09 13:15:31.527316+00 f t TOTAL 0.00 3 9229 \N +366864 2025-10-09 13:15:31.529088+00 2025-10-09 13:15:31.529094+00 f t ADELANTO 0.00 4 9229 \N +388435 2025-10-16 22:56:51.840504+00 2025-10-16 22:56:51.840509+00 f t TOTAL 0.00 3 9832 \N +388436 2025-10-16 22:56:51.841632+00 2025-10-16 22:56:51.841638+00 f t ADELANTO 0.00 4 9832 \N +406554 2025-10-22 15:44:31.092434+00 2025-10-22 15:44:31.092441+00 f t DESCUENTO 0.00 3 10289 \N +406555 2025-10-22 15:44:31.093526+00 2025-10-22 15:44:31.093532+00 f t TOTAL 0.00 4 10289 \N +371393 2025-10-10 22:33:16.70269+00 2025-10-10 22:33:16.702698+00 f t SUBTOTAL 23000.00 1 9354 \N +371394 2025-10-10 22:33:16.70446+00 2025-10-10 22:33:16.704467+00 f t DESCUENTO 0.00 2 9354 \N +371395 2025-10-10 22:33:16.705531+00 2025-10-10 22:33:16.705536+00 f t TOTAL 23000.00 3 9354 \N +371396 2025-10-10 22:33:16.706565+00 2025-10-10 22:33:16.706571+00 f t ADELANTO 5500.00 4 9354 \N +360569 2025-10-07 10:32:48.303472+00 2025-10-07 10:32:48.303481+00 f t SUBTOTAL 0.00 1 9060 \N +360570 2025-10-07 10:32:48.305342+00 2025-10-07 10:32:48.305349+00 f t DESCUENTO 0.00 2 9060 \N +360571 2025-10-07 10:32:48.306503+00 2025-10-07 10:32:48.306515+00 f t TOTAL 0.00 3 9060 \N +360572 2025-10-07 10:32:48.307718+00 2025-10-07 10:32:48.307724+00 f t ADELANTO 0.00 4 9060 \N +360573 2025-10-07 10:34:29.13135+00 2025-10-07 10:34:29.131359+00 f t SUBTOTAL 0.00 1 9061 \N +360574 2025-10-07 10:34:29.133146+00 2025-10-07 10:34:29.133153+00 f t DESCUENTO 0.00 2 9061 \N +360575 2025-10-07 10:34:29.134337+00 2025-10-07 10:34:29.134366+00 f t TOTAL 0.00 3 9061 \N +360576 2025-10-07 10:34:29.135426+00 2025-10-07 10:34:29.135431+00 f t ADELANTO 0.00 4 9061 \N +380853 2025-10-14 06:14:57.725467+00 2025-10-14 06:14:57.725475+00 f t SUBTOTAL 0.00 1 9601 \N +372077 2025-10-11 10:08:30.812034+00 2025-10-11 10:08:30.812045+00 f t SUBTOTAL 0.00 1 9377 \N +372078 2025-10-11 10:08:30.813596+00 2025-10-11 10:08:30.813603+00 f t DESCUENTO 0.00 2 9377 \N +372079 2025-10-11 10:08:30.815192+00 2025-10-11 10:08:30.815198+00 f t TOTAL 0.00 3 9377 \N +372080 2025-10-11 10:08:30.821359+00 2025-10-11 10:08:30.821371+00 f t ADELANTO 0.00 4 9377 \N +372413 2025-10-11 13:35:14.2085+00 2025-10-11 13:35:14.208515+00 f t SUBTOTAL 55000.00 1 9383 \N +372414 2025-10-11 13:35:14.211015+00 2025-10-11 13:35:14.211027+00 f t DESCUENTO 0.00 2 9383 \N +372415 2025-10-11 13:35:14.212877+00 2025-10-11 13:35:14.212889+00 f t TOTAL 55000.00 3 9383 \N +372416 2025-10-11 13:35:14.214654+00 2025-10-11 13:35:14.214664+00 f t ADELANTO 11000.00 4 9383 \N +372645 2025-10-11 16:12:34.177959+00 2025-10-11 16:12:34.177968+00 f t SUBTOTAL 206400.00 1 9392 \N +360601 2025-10-07 10:36:27.52058+00 2025-10-07 10:36:27.520589+00 f t SUBTOTAL 72500.00 1 9062 \N +360602 2025-10-07 10:36:27.522061+00 2025-10-07 10:36:27.522067+00 f t DESCUENTO 0.00 2 9062 \N +360603 2025-10-07 10:36:27.523267+00 2025-10-07 10:36:27.523273+00 f t TOTAL 72500.00 3 9062 \N +360604 2025-10-07 10:36:27.524327+00 2025-10-07 10:36:27.524333+00 f t ADELANTO 72500.00 4 9062 \N +372646 2025-10-11 16:12:34.18049+00 2025-10-11 16:12:34.1805+00 f t DESCUENTO 0.00 2 9392 \N +372647 2025-10-11 16:12:34.182267+00 2025-10-11 16:12:34.182278+00 f t TOTAL 206400.00 3 9392 \N +372648 2025-10-11 16:12:34.183974+00 2025-10-11 16:12:34.183985+00 f t ADELANTO 70900.00 4 9392 \N +364313 2025-10-08 15:13:09.699792+00 2025-10-08 15:13:09.699805+00 f t SUBTOTAL 78000.00 1 9156 \N +364314 2025-10-08 15:13:09.702994+00 2025-10-08 15:13:09.703003+00 f t DESCUENTO 0.00 2 9156 \N +364315 2025-10-08 15:13:09.704987+00 2025-10-08 15:13:09.704995+00 f t TOTAL 78000.00 3 9156 \N +364316 2025-10-08 15:13:09.706656+00 2025-10-08 15:13:09.706663+00 f t ADELANTO 21500.00 4 9156 \N +364513 2025-10-08 17:19:16.165442+00 2025-10-08 17:19:16.165449+00 f t SUBTOTAL 0.00 1 9166 \N +364514 2025-10-08 17:19:16.166551+00 2025-10-08 17:19:16.166557+00 f t DESCUENTO 0.00 2 9166 \N +364515 2025-10-08 17:19:16.167724+00 2025-10-08 17:19:16.167732+00 f t TOTAL 0.00 3 9166 \N +364516 2025-10-08 17:19:16.168839+00 2025-10-08 17:19:16.168846+00 f t ADELANTO 0.00 4 9166 \N +373381 2025-10-12 00:48:04.849866+00 2025-10-12 00:48:04.849877+00 f t SUBTOTAL 30000.00 1 9415 \N +373382 2025-10-12 00:48:04.852398+00 2025-10-12 00:48:04.852406+00 f t DESCUENTO 0.00 2 9415 \N +373383 2025-10-12 00:48:04.85378+00 2025-10-12 00:48:04.853786+00 f t TOTAL 30000.00 3 9415 \N +373384 2025-10-12 00:48:04.855077+00 2025-10-12 00:48:04.855085+00 f t ADELANTO 30000.00 4 9415 \N +364989 2025-10-08 19:13:18.084034+00 2025-10-08 19:13:18.084044+00 f t SUBTOTAL 0.00 1 9178 \N +364990 2025-10-08 19:13:18.087061+00 2025-10-08 19:13:18.087071+00 f t DESCUENTO 0.00 2 9178 \N +364991 2025-10-08 19:13:18.088228+00 2025-10-08 19:13:18.088234+00 f t TOTAL 0.00 3 9178 \N +364992 2025-10-08 19:13:18.089101+00 2025-10-08 19:13:18.089106+00 f t ADELANTO 0.00 4 9178 \N +365061 2025-10-08 19:30:03.262436+00 2025-10-08 19:30:03.262451+00 f t SUBTOTAL 70000.00 1 9180 \N +365062 2025-10-08 19:30:03.265947+00 2025-10-08 19:30:03.265961+00 f t DESCUENTO 0.00 2 9180 \N +365063 2025-10-08 19:30:03.268714+00 2025-10-08 19:30:03.268726+00 f t TOTAL 70000.00 3 9180 \N +365064 2025-10-08 19:30:03.270976+00 2025-10-08 19:30:03.270988+00 f t ADELANTO 19000.00 4 9180 \N +373581 2025-10-12 04:14:02.857601+00 2025-10-12 04:14:02.857614+00 f t SUBTOTAL 0.00 1 9421 \N +373582 2025-10-12 04:14:02.859762+00 2025-10-12 04:14:02.859774+00 f t DESCUENTO 0.00 2 9421 \N +373583 2025-10-12 04:14:02.861359+00 2025-10-12 04:14:02.861369+00 f t TOTAL 0.00 3 9421 \N +373584 2025-10-12 04:14:02.862738+00 2025-10-12 04:14:02.862746+00 f t ADELANTO 0.00 4 9421 \N +365685 2025-10-08 22:41:14.232974+00 2025-10-08 22:41:14.232983+00 f t SUBTOTAL 0.00 1 9200 \N +365686 2025-10-08 22:41:14.235182+00 2025-10-08 22:41:14.235188+00 f t DESCUENTO 0.00 2 9200 \N +365687 2025-10-08 22:41:14.236463+00 2025-10-08 22:41:14.23647+00 f t TOTAL 0.00 3 9200 \N +365688 2025-10-08 22:41:14.237849+00 2025-10-08 22:41:14.237857+00 f t ADELANTO 0.00 4 9200 \N +360729 2025-10-07 10:53:25.545819+00 2025-10-07 10:53:25.545831+00 f t SUBTOTAL 46000.00 1 9063 \N +360730 2025-10-07 10:53:25.547628+00 2025-10-07 10:53:25.547638+00 f t DESCUENTO 0.00 2 9063 \N +360731 2025-10-07 10:53:25.548908+00 2025-10-07 10:53:25.548915+00 f t TOTAL 46000.00 3 9063 \N +360732 2025-10-07 10:53:25.550062+00 2025-10-07 10:53:25.55007+00 f t ADELANTO 11000.00 4 9063 \N +360757 2025-10-07 11:36:47.569826+00 2025-10-07 11:36:47.569839+00 f t SUBTOTAL 70000.00 1 9064 \N +360758 2025-10-07 11:36:47.571539+00 2025-10-07 11:36:47.571548+00 f t DESCUENTO 0.00 2 9064 \N +360759 2025-10-07 11:36:47.572899+00 2025-10-07 11:36:47.572907+00 f t TOTAL 70000.00 3 9064 \N +360760 2025-10-07 11:36:47.574328+00 2025-10-07 11:36:47.574336+00 f t ADELANTO 19000.00 4 9064 \N +366549 2025-10-09 12:11:55.032619+00 2025-10-09 12:11:55.032627+00 f t SUBTOTAL 0.00 1 9220 \N +366550 2025-10-09 12:11:55.035029+00 2025-10-09 12:11:55.035043+00 f t DESCUENTO 0.00 2 9220 \N +366551 2025-10-09 12:11:55.036496+00 2025-10-09 12:11:55.036503+00 f t TOTAL 0.00 3 9220 \N +366552 2025-10-09 12:11:55.037892+00 2025-10-09 12:11:55.037898+00 f t ADELANTO 0.00 4 9220 \N +360797 2025-10-07 11:42:20.330572+00 2025-10-07 11:42:20.330581+00 f t SUBTOTAL 55000.00 1 9065 \N +360798 2025-10-07 11:42:20.332202+00 2025-10-07 11:42:20.332209+00 f t DESCUENTO 0.00 2 9065 \N +360799 2025-10-07 11:42:20.333371+00 2025-10-07 11:42:20.333377+00 f t TOTAL 55000.00 3 9065 \N +360800 2025-10-07 11:42:20.334338+00 2025-10-07 11:42:20.334343+00 f t ADELANTO 11000.00 4 9065 \N +366941 2025-10-09 14:19:23.92246+00 2025-10-09 14:19:23.922468+00 f t SUBTOTAL 0.00 1 9232 \N +366942 2025-10-09 14:19:23.923809+00 2025-10-09 14:19:23.923817+00 f t DESCUENTO 0.00 2 9232 \N +366943 2025-10-09 14:19:23.925027+00 2025-10-09 14:19:23.925033+00 f t TOTAL 0.00 3 9232 \N +362713 2025-10-07 21:46:46.032766+00 2025-10-07 21:46:46.032774+00 f t SUBTOTAL 46000.00 1 9112 \N +362714 2025-10-07 21:46:46.034482+00 2025-10-07 21:46:46.034489+00 f t DESCUENTO 0.00 2 9112 \N +362715 2025-10-07 21:46:46.035627+00 2025-10-07 21:46:46.035633+00 f t TOTAL 46000.00 3 9112 \N +362716 2025-10-07 21:46:46.036837+00 2025-10-07 21:46:46.036842+00 f t ADELANTO 11000.00 4 9112 \N +406556 2025-10-22 15:44:31.094516+00 2025-10-22 15:44:31.094521+00 f t ADELANTO 0.00 5 10289 \N +406795 2025-10-22 17:14:33.463267+00 2025-10-22 17:14:33.463273+00 f t TOTAL 68000.00 4 10290 \N +406796 2025-10-22 17:14:33.464558+00 2025-10-22 17:14:33.464563+00 f t ADELANTO 13000.00 5 10290 \N +371249 2025-10-10 21:47:12.036019+00 2025-10-10 21:47:12.036031+00 f t SUBTOTAL 55000.00 1 9350 \N +371250 2025-10-10 21:47:12.037936+00 2025-10-10 21:47:12.037945+00 f t DESCUENTO 0.00 2 9350 \N +371251 2025-10-10 21:47:12.039336+00 2025-10-10 21:47:12.039343+00 f t TOTAL 55000.00 3 9350 \N +371252 2025-10-10 21:47:12.040498+00 2025-10-10 21:47:12.040504+00 f t ADELANTO 11000.00 4 9350 \N +360845 2025-10-07 12:37:15.831536+00 2025-10-07 12:37:15.831544+00 f t SUBTOTAL 46000.00 1 9066 \N +360846 2025-10-07 12:37:15.833032+00 2025-10-07 12:37:15.833039+00 f t DESCUENTO 0.00 2 9066 \N +360847 2025-10-07 12:37:15.834311+00 2025-10-07 12:37:15.834318+00 f t TOTAL 46000.00 3 9066 \N +360848 2025-10-07 12:37:15.835428+00 2025-10-07 12:37:15.835434+00 f t ADELANTO 11000.00 4 9066 \N +372085 2025-10-11 10:24:06.9264+00 2025-10-11 10:24:06.92641+00 f t SUBTOTAL 0.00 1 9378 \N +372086 2025-10-11 10:24:06.927779+00 2025-10-11 10:24:06.927786+00 f t DESCUENTO 0.00 2 9378 \N +372087 2025-10-11 10:24:06.928904+00 2025-10-11 10:24:06.92891+00 f t TOTAL 0.00 3 9378 \N +372088 2025-10-11 10:24:06.929812+00 2025-10-11 10:24:06.929817+00 f t ADELANTO 0.00 4 9378 \N +380854 2025-10-14 06:14:57.726596+00 2025-10-14 06:14:57.726602+00 f t DESCUENTO 0.00 2 9601 \N +380855 2025-10-14 06:14:57.728046+00 2025-10-14 06:14:57.728052+00 f t TOTAL 0.00 3 9601 \N +380856 2025-10-14 06:14:57.729026+00 2025-10-14 06:14:57.729031+00 f t ADELANTO 0.00 4 9601 \N +380977 2025-10-14 10:55:25.389254+00 2025-10-14 10:55:25.389268+00 f t SUBTOTAL 0.00 1 9604 \N +380978 2025-10-14 10:55:25.391784+00 2025-10-14 10:55:25.391796+00 f t DESCUENTO 0.00 2 9604 \N +380979 2025-10-14 10:55:25.393317+00 2025-10-14 10:55:25.393327+00 f t TOTAL 0.00 3 9604 \N +380980 2025-10-14 10:55:25.394646+00 2025-10-14 10:55:25.394655+00 f t ADELANTO 0.00 4 9604 \N +364225 2025-10-08 14:28:59.036259+00 2025-10-08 14:28:59.036268+00 f t SUBTOTAL 30000.00 1 9153 \N +364226 2025-10-08 14:28:59.038393+00 2025-10-08 14:28:59.038401+00 f t DESCUENTO 0.00 2 9153 \N +364227 2025-10-08 14:28:59.039698+00 2025-10-08 14:28:59.039704+00 f t TOTAL 30000.00 3 9153 \N +364228 2025-10-08 14:28:59.040909+00 2025-10-08 14:28:59.040915+00 f t ADELANTO 30000.00 4 9153 \N +381465 2025-10-14 14:51:12.026104+00 2025-10-14 14:51:12.026113+00 f t SUBTOTAL 0.00 1 9615 \N +364321 2025-10-08 15:24:28.447767+00 2025-10-08 15:24:28.447779+00 f t SUBTOTAL 0.00 1 9157 \N +364322 2025-10-08 15:24:28.449627+00 2025-10-08 15:24:28.449636+00 f t DESCUENTO 0.00 2 9157 \N +364323 2025-10-08 15:24:28.451396+00 2025-10-08 15:24:28.451404+00 f t TOTAL 0.00 3 9157 \N +364324 2025-10-08 15:24:28.452893+00 2025-10-08 15:24:28.452901+00 f t ADELANTO 0.00 4 9157 \N +381466 2025-10-14 14:51:12.028399+00 2025-10-14 14:51:12.028407+00 f t DESCUENTO 0.00 2 9615 \N +381467 2025-10-14 14:51:12.029963+00 2025-10-14 14:51:12.029969+00 f t TOTAL 0.00 3 9615 \N +381468 2025-10-14 14:51:12.031322+00 2025-10-14 14:51:12.031332+00 f t ADELANTO 0.00 4 9615 \N +373589 2025-10-12 04:15:01.359767+00 2025-10-12 04:15:01.359782+00 f t SUBTOTAL 0.00 1 9422 \N +373590 2025-10-12 04:15:01.362514+00 2025-10-12 04:15:01.362526+00 f t DESCUENTO 0.00 2 9422 \N +373591 2025-10-12 04:15:01.366358+00 2025-10-12 04:15:01.366374+00 f t TOTAL 0.00 3 9422 \N +373592 2025-10-12 04:15:01.370419+00 2025-10-12 04:15:01.370435+00 f t ADELANTO 0.00 4 9422 \N +365069 2025-10-08 19:32:41.611307+00 2025-10-08 19:32:41.611316+00 f t SUBTOTAL 0.00 1 9181 \N +365070 2025-10-08 19:32:41.612829+00 2025-10-08 19:32:41.612836+00 f t DESCUENTO 0.00 2 9181 \N +360953 2025-10-07 12:40:03.991186+00 2025-10-07 12:40:03.991201+00 f t SUBTOTAL 55000.00 1 9067 \N +360954 2025-10-07 12:40:03.996775+00 2025-10-07 12:40:03.996789+00 f t DESCUENTO 0.00 2 9067 \N +360955 2025-10-07 12:40:04.007377+00 2025-10-07 12:40:04.00739+00 f t TOTAL 55000.00 3 9067 \N +360956 2025-10-07 12:40:04.011556+00 2025-10-07 12:40:04.011569+00 f t ADELANTO 11000.00 4 9067 \N +365071 2025-10-08 19:32:41.614095+00 2025-10-08 19:32:41.614102+00 f t TOTAL 0.00 3 9181 \N +365072 2025-10-08 19:32:41.615166+00 2025-10-08 19:32:41.615172+00 f t ADELANTO 0.00 4 9181 \N +365437 2025-10-08 21:22:16.235155+00 2025-10-08 21:22:16.235164+00 f t SUBTOTAL 68000.00 1 9193 \N +365438 2025-10-08 21:22:16.237219+00 2025-10-08 21:22:16.237226+00 f t DESCUENTO 0.00 2 9193 \N +365439 2025-10-08 21:22:16.238455+00 2025-10-08 21:22:16.238463+00 f t TOTAL 68000.00 3 9193 \N +365440 2025-10-08 21:22:16.239571+00 2025-10-08 21:22:16.239576+00 f t ADELANTO 13000.00 4 9193 \N +374513 2025-10-12 16:52:23.982366+00 2025-10-12 16:52:23.982375+00 f t SUBTOTAL 0.00 1 9447 \N +374514 2025-10-12 16:52:23.983715+00 2025-10-12 16:52:23.983723+00 f t DESCUENTO 0.00 2 9447 \N +374515 2025-10-12 16:52:23.984664+00 2025-10-12 16:52:23.98467+00 f t TOTAL 0.00 3 9447 \N +374516 2025-10-12 16:52:23.985555+00 2025-10-12 16:52:23.98556+00 f t ADELANTO 0.00 4 9447 \N +374845 2025-10-12 17:22:27.076599+00 2025-10-12 17:22:27.076609+00 f t SUBTOTAL 68000.00 1 9452 \N +366033 2025-10-09 01:03:19.011587+00 2025-10-09 01:03:19.011597+00 f t SUBTOTAL 0.00 1 9207 \N +366034 2025-10-09 01:03:19.013983+00 2025-10-09 01:03:19.013991+00 f t DESCUENTO 0.00 2 9207 \N +366035 2025-10-09 01:03:19.015288+00 2025-10-09 01:03:19.015294+00 f t TOTAL 0.00 3 9207 \N +366036 2025-10-09 01:03:19.020259+00 2025-10-09 01:03:19.020271+00 f t ADELANTO 0.00 4 9207 \N +374846 2025-10-12 17:22:27.082943+00 2025-10-12 17:22:27.082952+00 f t DESCUENTO 0.00 2 9452 \N +374847 2025-10-12 17:22:27.084798+00 2025-10-12 17:22:27.084807+00 f t TOTAL 68000.00 3 9452 \N +374848 2025-10-12 17:22:27.086019+00 2025-10-12 17:22:27.086027+00 f t ADELANTO 13000.00 4 9452 \N +366265 2025-10-09 04:52:00.804325+00 2025-10-09 04:52:00.80434+00 f t SUBTOTAL 55000.00 1 9213 \N +366266 2025-10-09 04:52:00.806157+00 2025-10-09 04:52:00.806164+00 f t DESCUENTO 0.00 2 9213 \N +366267 2025-10-09 04:52:00.807164+00 2025-10-09 04:52:00.80717+00 f t TOTAL 55000.00 3 9213 \N +366268 2025-10-09 04:52:00.808006+00 2025-10-09 04:52:00.808011+00 f t ADELANTO 11000.00 4 9213 \N +375325 2025-10-12 20:38:42.072755+00 2025-10-12 20:38:42.072764+00 f t SUBTOTAL 80000.00 1 9462 \N +375326 2025-10-12 20:38:42.074378+00 2025-10-12 20:38:42.074384+00 f t DESCUENTO 0.00 2 9462 \N +375327 2025-10-12 20:38:42.075462+00 2025-10-12 20:38:42.075468+00 f t TOTAL 80000.00 3 9462 \N +375328 2025-10-12 20:38:42.076438+00 2025-10-12 20:38:42.076446+00 f t ADELANTO 12000.00 4 9462 \N +366944 2025-10-09 14:19:23.926152+00 2025-10-09 14:19:23.926157+00 f t ADELANTO 0.00 4 9232 \N +361093 2025-10-07 12:47:28.068185+00 2025-10-07 12:47:28.068194+00 f t SUBTOTAL 234000.00 1 9068 \N +361094 2025-10-07 12:47:28.069652+00 2025-10-07 12:47:28.069658+00 f t DESCUENTO 0.00 2 9068 \N +361095 2025-10-07 12:47:28.070743+00 2025-10-07 12:47:28.070751+00 f t TOTAL 234000.00 3 9068 \N +361096 2025-10-07 12:47:28.071772+00 2025-10-07 12:47:28.071777+00 f t ADELANTO 64500.00 4 9068 \N +376241 2025-10-13 02:49:57.218511+00 2025-10-13 02:49:57.21852+00 f t SUBTOTAL 0.00 1 9486 \N +466554 2025-11-07 22:09:37.021231+00 2025-11-07 22:09:37.021237+00 f t DESCUENTO 0.00 3 11696 \N +466555 2025-11-07 22:09:37.022788+00 2025-11-07 22:09:37.022795+00 f t TOTAL 0.00 4 11696 \N +466556 2025-11-07 22:09:37.023939+00 2025-11-07 22:09:37.023945+00 f t ADELANTO 0.00 5 11696 \N +535714 2025-11-23 18:47:48.060932+00 2025-11-23 18:47:48.060941+00 f t DESCUENTO 0.00 3 13307 \N +361121 2025-10-07 13:06:57.259474+00 2025-10-07 13:06:57.259484+00 f t SUBTOTAL 46000.00 1 9069 \N +361122 2025-10-07 13:06:57.261347+00 2025-10-07 13:06:57.261357+00 f t DESCUENTO 0.00 2 9069 \N +361123 2025-10-07 13:06:57.262942+00 2025-10-07 13:06:57.26295+00 f t TOTAL 46000.00 3 9069 \N +361124 2025-10-07 13:06:57.264445+00 2025-10-07 13:06:57.264455+00 f t ADELANTO 11000.00 4 9069 \N +362857 2025-10-07 23:34:29.197665+00 2025-10-07 23:34:29.197677+00 f t SUBTOTAL 55000.00 1 9116 \N +362858 2025-10-07 23:34:29.199408+00 2025-10-07 23:34:29.199415+00 f t DESCUENTO 0.00 2 9116 \N +362859 2025-10-07 23:34:29.200624+00 2025-10-07 23:34:29.200633+00 f t TOTAL 55000.00 3 9116 \N +362860 2025-10-07 23:34:29.201863+00 2025-10-07 23:34:29.201868+00 f t ADELANTO 11000.00 4 9116 \N +362997 2025-10-08 00:12:11.827498+00 2025-10-08 00:12:11.827508+00 f t SUBTOTAL 55000.00 1 9121 \N +362998 2025-10-08 00:12:11.833524+00 2025-10-08 00:12:11.833534+00 f t DESCUENTO 0.00 2 9121 \N +362999 2025-10-08 00:12:11.835834+00 2025-10-08 00:12:11.835843+00 f t TOTAL 55000.00 3 9121 \N +363000 2025-10-08 00:12:11.837843+00 2025-10-08 00:12:11.837851+00 f t ADELANTO 11000.00 4 9121 \N +371257 2025-10-10 22:02:05.628779+00 2025-10-10 22:02:05.628788+00 f t SUBTOTAL 0.00 1 9351 \N +371258 2025-10-10 22:02:05.630131+00 2025-10-10 22:02:05.630137+00 f t DESCUENTO 0.00 2 9351 \N +371259 2025-10-10 22:02:05.631491+00 2025-10-10 22:02:05.631498+00 f t TOTAL 0.00 3 9351 \N +371260 2025-10-10 22:02:05.632497+00 2025-10-10 22:02:05.632503+00 f t ADELANTO 0.00 4 9351 \N +371405 2025-10-10 23:01:12.562742+00 2025-10-10 23:01:12.562751+00 f t SUBTOTAL 55000.00 1 9355 \N +371406 2025-10-10 23:01:12.564891+00 2025-10-10 23:01:12.564898+00 f t DESCUENTO 0.00 2 9355 \N +371407 2025-10-10 23:01:12.566222+00 2025-10-10 23:01:12.566229+00 f t TOTAL 55000.00 3 9355 \N +371408 2025-10-10 23:01:12.567501+00 2025-10-10 23:01:12.567507+00 f t ADELANTO 11000.00 4 9355 \N +363741 2025-10-08 08:50:14.758557+00 2025-10-08 08:50:14.758566+00 f t SUBTOTAL 55000.00 1 9139 \N +363742 2025-10-08 08:50:14.760496+00 2025-10-08 08:50:14.760504+00 f t DESCUENTO 0.00 2 9139 \N +363743 2025-10-08 08:50:14.761636+00 2025-10-08 08:50:14.761643+00 f t TOTAL 55000.00 3 9139 \N +361161 2025-10-07 13:11:41.097132+00 2025-10-07 13:11:41.097144+00 f t SUBTOTAL 55000.00 1 9070 \N +361162 2025-10-07 13:11:41.099066+00 2025-10-07 13:11:41.099075+00 f t DESCUENTO 0.00 2 9070 \N +361163 2025-10-07 13:11:41.100614+00 2025-10-07 13:11:41.100622+00 f t TOTAL 55000.00 3 9070 \N +361164 2025-10-07 13:11:41.101842+00 2025-10-07 13:11:41.10185+00 f t ADELANTO 11000.00 4 9070 \N +363744 2025-10-08 08:50:14.762668+00 2025-10-08 08:50:14.762674+00 f t ADELANTO 11000.00 4 9139 \N +361177 2025-10-07 13:26:53.482079+00 2025-10-07 13:26:53.482086+00 f t SUBTOTAL 55000.00 1 9056 \N +361178 2025-10-07 13:26:53.483589+00 2025-10-07 13:26:53.483596+00 f t DESCUENTO 0.00 2 9056 \N +361179 2025-10-07 13:26:53.484966+00 2025-10-07 13:26:53.484973+00 f t TOTAL 55000.00 3 9056 \N +361180 2025-10-07 13:26:53.486032+00 2025-10-07 13:26:53.486038+00 f t ADELANTO 11000.00 4 9056 \N +372313 2025-10-11 13:16:06.666071+00 2025-10-11 13:16:06.666084+00 f t SUBTOTAL 55000.00 1 9382 \N +372314 2025-10-11 13:16:06.668279+00 2025-10-11 13:16:06.668289+00 f t DESCUENTO 0.00 2 9382 \N +372315 2025-10-11 13:16:06.669721+00 2025-10-11 13:16:06.66973+00 f t TOTAL 55000.00 3 9382 \N +372316 2025-10-11 13:16:06.671023+00 2025-10-11 13:16:06.671031+00 f t ADELANTO 11000.00 4 9382 \N +364421 2025-10-08 15:53:37.231413+00 2025-10-08 15:53:37.231422+00 f t SUBTOTAL 80000.00 1 9161 \N +364422 2025-10-08 15:53:37.233095+00 2025-10-08 15:53:37.233102+00 f t DESCUENTO 0.00 2 9161 \N +364423 2025-10-08 15:53:37.234208+00 2025-10-08 15:53:37.234213+00 f t TOTAL 80000.00 3 9161 \N +361205 2025-10-07 13:27:36.560982+00 2025-10-07 13:27:36.56099+00 f t SUBTOTAL 46000.00 1 9071 \N +361206 2025-10-07 13:27:36.562514+00 2025-10-07 13:27:36.56252+00 f t DESCUENTO 0.00 2 9071 \N +361207 2025-10-07 13:27:36.563627+00 2025-10-07 13:27:36.563632+00 f t TOTAL 46000.00 3 9071 \N +361208 2025-10-07 13:27:36.564559+00 2025-10-07 13:27:36.564564+00 f t ADELANTO 11000.00 4 9071 \N +364424 2025-10-08 15:53:37.235152+00 2025-10-08 15:53:37.235157+00 f t ADELANTO 12000.00 4 9161 \N +364525 2025-10-08 17:28:52.014491+00 2025-10-08 17:28:52.014501+00 f t SUBTOTAL 23000.00 1 9167 \N +364526 2025-10-08 17:28:52.016248+00 2025-10-08 17:28:52.016254+00 f t DESCUENTO 0.00 2 9167 \N +364527 2025-10-08 17:28:52.017309+00 2025-10-08 17:28:52.017315+00 f t TOTAL 23000.00 3 9167 \N +364528 2025-10-08 17:28:52.018171+00 2025-10-08 17:28:52.018176+00 f t ADELANTO 5500.00 4 9167 \N +361225 2025-10-07 13:30:39.659722+00 2025-10-07 13:30:39.659731+00 f t SUBTOTAL 0.00 1 9072 \N +361226 2025-10-07 13:30:39.661514+00 2025-10-07 13:30:39.661521+00 f t DESCUENTO 0.00 2 9072 \N +361227 2025-10-07 13:30:39.662762+00 2025-10-07 13:30:39.66277+00 f t TOTAL 0.00 3 9072 \N +361228 2025-10-07 13:30:39.66389+00 2025-10-07 13:30:39.663895+00 f t ADELANTO 0.00 4 9072 \N +364913 2025-10-08 18:47:09.203923+00 2025-10-08 18:47:09.203932+00 f t SUBTOTAL 46000.00 1 9173 \N +364914 2025-10-08 18:47:09.205662+00 2025-10-08 18:47:09.20567+00 f t DESCUENTO 0.00 2 9173 \N +364915 2025-10-08 18:47:09.206849+00 2025-10-08 18:47:09.206855+00 f t TOTAL 46000.00 3 9173 \N +364916 2025-10-08 18:47:09.207983+00 2025-10-08 18:47:09.207989+00 f t ADELANTO 11000.00 4 9173 \N +373181 2025-10-11 22:37:41.754755+00 2025-10-11 22:37:41.754769+00 f t SUBTOTAL 55000.00 1 9408 \N +373182 2025-10-11 22:37:41.756756+00 2025-10-11 22:37:41.756763+00 f t DESCUENTO 0.00 2 9408 \N +373183 2025-10-11 22:37:41.758072+00 2025-10-11 22:37:41.758076+00 f t TOTAL 55000.00 3 9408 \N +373184 2025-10-11 22:37:41.759231+00 2025-10-11 22:37:41.759236+00 f t ADELANTO 11000.00 4 9408 \N +365289 2025-10-08 20:14:34.339724+00 2025-10-08 20:14:34.339734+00 f t SUBTOTAL 55000.00 1 9187 \N +365290 2025-10-08 20:14:34.341756+00 2025-10-08 20:14:34.341764+00 f t DESCUENTO 0.00 2 9187 \N +365291 2025-10-08 20:14:34.343229+00 2025-10-08 20:14:34.343236+00 f t TOTAL 55000.00 3 9187 \N +365292 2025-10-08 20:14:34.344266+00 2025-10-08 20:14:34.344272+00 f t ADELANTO 11000.00 4 9187 \N +361353 2025-10-07 13:33:54.203273+00 2025-10-07 13:33:54.203282+00 f t SUBTOTAL 46000.00 1 9053 \N +361354 2025-10-07 13:33:54.211375+00 2025-10-07 13:33:54.211388+00 f t DESCUENTO 0.00 2 9053 \N +361355 2025-10-07 13:33:54.217978+00 2025-10-07 13:33:54.217989+00 f t TOTAL 46000.00 3 9053 \N +361356 2025-10-07 13:33:54.219861+00 2025-10-07 13:33:54.219871+00 f t ADELANTO 11000.00 4 9053 \N +361365 2025-10-07 13:33:59.593752+00 2025-10-07 13:33:59.593761+00 f t SUBTOTAL 87400.00 1 9073 \N +361366 2025-10-07 13:33:59.595457+00 2025-10-07 13:33:59.595464+00 f t DESCUENTO 0.00 2 9073 \N +361367 2025-10-07 13:33:59.596655+00 2025-10-07 13:33:59.59666+00 f t TOTAL 87400.00 3 9073 \N +361368 2025-10-07 13:33:59.597872+00 2025-10-07 13:33:59.59788+00 f t ADELANTO 46900.00 4 9073 \N +366977 2025-10-09 14:20:10.274492+00 2025-10-09 14:20:10.274505+00 f t SUBTOTAL 87400.00 1 9231 \N +366978 2025-10-09 14:20:10.276549+00 2025-10-09 14:20:10.276561+00 f t DESCUENTO 0.00 2 9231 \N +366979 2025-10-09 14:20:10.278423+00 2025-10-09 14:20:10.278433+00 f t TOTAL 87400.00 3 9231 \N +388781 2025-10-16 23:37:29.492625+00 2025-10-16 23:37:29.492638+00 f t SUBTOTAL 0.00 1 9842 \N +388782 2025-10-16 23:37:29.494989+00 2025-10-16 23:37:29.494998+00 f t DESCUENTO 0.00 2 9842 \N +388783 2025-10-16 23:37:29.502774+00 2025-10-16 23:37:29.502786+00 f t TOTAL 0.00 3 9842 \N +388784 2025-10-16 23:37:29.504301+00 2025-10-16 23:37:29.504309+00 f t ADELANTO 0.00 4 9842 \N +362865 2025-10-07 23:41:02.501402+00 2025-10-07 23:41:02.501412+00 f t SUBTOTAL 0.00 1 9117 \N +362866 2025-10-07 23:41:02.503349+00 2025-10-07 23:41:02.503361+00 f t DESCUENTO 0.00 2 9117 \N +362867 2025-10-07 23:41:02.505046+00 2025-10-07 23:41:02.505056+00 f t TOTAL 0.00 3 9117 \N +362868 2025-10-07 23:41:02.50678+00 2025-10-07 23:41:02.506789+00 f t ADELANTO 0.00 4 9117 \N +372205 2025-10-11 10:53:50.377597+00 2025-10-11 10:53:50.377608+00 f t SUBTOTAL 0.00 1 9380 \N +372206 2025-10-11 10:53:50.379766+00 2025-10-11 10:53:50.379774+00 f t DESCUENTO 0.00 2 9380 \N +372207 2025-10-11 10:53:50.381125+00 2025-10-11 10:53:50.381133+00 f t TOTAL 0.00 3 9380 \N +372208 2025-10-11 10:53:50.382378+00 2025-10-11 10:53:50.382385+00 f t ADELANTO 0.00 4 9380 \N +381357 2025-10-14 14:44:33.330609+00 2025-10-14 14:44:33.330618+00 f t SUBTOTAL 70000.00 1 9614 \N +381358 2025-10-14 14:44:33.332738+00 2025-10-14 14:44:33.332745+00 f t DESCUENTO 0.00 2 9614 \N +381359 2025-10-14 14:44:33.334086+00 2025-10-14 14:44:33.334092+00 f t TOTAL 70000.00 3 9614 \N +381360 2025-10-14 14:44:33.335282+00 2025-10-14 14:44:33.335289+00 f t ADELANTO 19000.00 4 9614 \N +361477 2025-10-07 13:37:26.531382+00 2025-10-07 13:37:26.531391+00 f t SUBTOTAL 60000.00 1 9074 \N +361478 2025-10-07 13:37:26.533204+00 2025-10-07 13:37:26.53321+00 f t DESCUENTO 0.00 2 9074 \N +361479 2025-10-07 13:37:26.53419+00 2025-10-07 13:37:26.534195+00 f t TOTAL 60000.00 3 9074 \N +361480 2025-10-07 13:37:26.535224+00 2025-10-07 13:37:26.53523+00 f t ADELANTO 60000.00 4 9074 \N +381721 2025-10-14 17:21:43.37217+00 2025-10-14 17:21:43.372178+00 f t SUBTOTAL 13200.00 1 9627 \N +381722 2025-10-14 17:21:43.374175+00 2025-10-14 17:21:43.374183+00 f t DESCUENTO 0.00 2 9627 \N +381723 2025-10-14 17:21:43.375401+00 2025-10-14 17:21:43.375408+00 f t TOTAL 13200.00 3 9627 \N +381724 2025-10-14 17:21:43.37658+00 2025-10-14 17:21:43.376586+00 f t ADELANTO 13200.00 4 9627 \N +373189 2025-10-11 23:36:32.56011+00 2025-10-11 23:36:32.56012+00 f t SUBTOTAL 0.00 1 9409 \N +373190 2025-10-11 23:36:32.561522+00 2025-10-11 23:36:32.561532+00 f t DESCUENTO 0.00 2 9409 \N +373191 2025-10-11 23:36:32.562733+00 2025-10-11 23:36:32.562739+00 f t TOTAL 0.00 3 9409 \N +373192 2025-10-11 23:36:32.563856+00 2025-10-11 23:36:32.563861+00 f t ADELANTO 0.00 4 9409 \N +373781 2025-10-12 11:11:32.851265+00 2025-10-12 11:11:32.851276+00 f t SUBTOTAL 177000.00 1 9427 \N +373782 2025-10-12 11:11:32.853424+00 2025-10-12 11:11:32.853435+00 f t DESCUENTO 0.00 2 9427 \N +373783 2025-10-12 11:11:32.854864+00 2025-10-12 11:11:32.854872+00 f t TOTAL 177000.00 3 9427 \N +373784 2025-10-12 11:11:32.856271+00 2025-10-12 11:11:32.85628+00 f t ADELANTO 37500.00 4 9427 \N +382893 2025-10-15 01:07:28.100699+00 2025-10-15 01:07:28.100708+00 f t SUBTOTAL 0.00 1 9662 \N +382894 2025-10-15 01:07:28.102943+00 2025-10-15 01:07:28.102949+00 f t DESCUENTO 0.00 2 9662 \N +382895 2025-10-15 01:07:28.10419+00 2025-10-15 01:07:28.104196+00 f t TOTAL 0.00 3 9662 \N +365293 2025-10-08 20:15:03.838345+00 2025-10-08 20:15:03.838363+00 f t SUBTOTAL 68000.00 1 9186 \N +365294 2025-10-08 20:15:03.842038+00 2025-10-08 20:15:03.84205+00 f t DESCUENTO 0.00 2 9186 \N +365295 2025-10-08 20:15:03.844935+00 2025-10-08 20:15:03.844948+00 f t TOTAL 68000.00 3 9186 \N +365296 2025-10-08 20:15:03.847479+00 2025-10-08 20:15:03.847493+00 f t ADELANTO 13000.00 4 9186 \N +382896 2025-10-15 01:07:28.105241+00 2025-10-15 01:07:28.105246+00 f t ADELANTO 0.00 4 9662 \N +382993 2025-10-15 01:33:35.280057+00 2025-10-15 01:33:35.280066+00 f t SUBTOTAL 55000.00 1 9664 \N +382994 2025-10-15 01:33:35.282003+00 2025-10-15 01:33:35.28201+00 f t DESCUENTO 0.00 2 9664 \N +382995 2025-10-15 01:33:35.283053+00 2025-10-15 01:33:35.283058+00 f t TOTAL 55000.00 3 9664 \N +382996 2025-10-15 01:33:35.28406+00 2025-10-15 01:33:35.284065+00 f t ADELANTO 11000.00 4 9664 \N +383101 2025-10-15 01:52:01.265025+00 2025-10-15 01:52:01.265037+00 f t SUBTOTAL 0.00 1 9668 \N +383102 2025-10-15 01:52:01.267048+00 2025-10-15 01:52:01.267059+00 f t DESCUENTO 0.00 2 9668 \N +383103 2025-10-15 01:52:01.269005+00 2025-10-15 01:52:01.269016+00 f t TOTAL 0.00 3 9668 \N +365565 2025-10-08 21:59:53.914436+00 2025-10-08 21:59:53.914444+00 f t SUBTOTAL 46000.00 1 9195 \N +365566 2025-10-08 21:59:53.915893+00 2025-10-08 21:59:53.915899+00 f t DESCUENTO 0.00 2 9195 \N +365567 2025-10-08 21:59:53.916939+00 2025-10-08 21:59:53.916944+00 f t TOTAL 46000.00 3 9195 \N +365568 2025-10-08 21:59:53.917988+00 2025-10-08 21:59:53.917993+00 f t ADELANTO 11000.00 4 9195 \N +383104 2025-10-15 01:52:01.270596+00 2025-10-15 01:52:01.270605+00 f t ADELANTO 0.00 4 9668 \N +365701 2025-10-08 22:44:43.702084+00 2025-10-08 22:44:43.702093+00 f t SUBTOTAL 0.00 1 9201 \N +365702 2025-10-08 22:44:43.70413+00 2025-10-08 22:44:43.704137+00 f t DESCUENTO 0.00 2 9201 \N +365703 2025-10-08 22:44:43.705264+00 2025-10-08 22:44:43.70527+00 f t TOTAL 0.00 3 9201 \N +365704 2025-10-08 22:44:43.706337+00 2025-10-08 22:44:43.706343+00 f t ADELANTO 0.00 4 9201 \N +383313 2025-10-15 09:09:44.338452+00 2025-10-15 09:09:44.338462+00 f t SUBTOTAL 0.00 1 9675 \N +361581 2025-10-07 13:44:41.186367+00 2025-10-07 13:44:41.186376+00 f t SUBTOTAL 60000.00 1 9075 \N +361582 2025-10-07 13:44:41.190052+00 2025-10-07 13:44:41.19006+00 f t DESCUENTO 0.00 2 9075 \N +361583 2025-10-07 13:44:41.19146+00 2025-10-07 13:44:41.191468+00 f t TOTAL 60000.00 3 9075 \N +361584 2025-10-07 13:44:41.192813+00 2025-10-07 13:44:41.19282+00 f t ADELANTO 60000.00 4 9075 \N +375021 2025-10-12 19:22:44.635624+00 2025-10-12 19:22:44.635632+00 f t SUBTOTAL 78000.00 1 9457 \N +375022 2025-10-12 19:22:44.637608+00 2025-10-12 19:22:44.637616+00 f t DESCUENTO 0.00 2 9457 \N +375023 2025-10-12 19:22:44.638929+00 2025-10-12 19:22:44.638935+00 f t TOTAL 78000.00 3 9457 \N +375024 2025-10-12 19:22:44.640148+00 2025-10-12 19:22:44.640154+00 f t ADELANTO 21500.00 4 9457 \N +375329 2025-10-12 20:38:52.065989+00 2025-10-12 20:38:52.065998+00 f t SUBTOTAL 66900.00 1 9468 \N +375330 2025-10-12 20:38:52.068753+00 2025-10-12 20:38:52.068762+00 f t DESCUENTO 0.00 2 9468 \N +375331 2025-10-12 20:38:52.070361+00 2025-10-12 20:38:52.070369+00 f t TOTAL 66900.00 3 9468 \N +375332 2025-10-12 20:38:52.07192+00 2025-10-12 20:38:52.071928+00 f t ADELANTO 26400.00 4 9468 \N +375865 2025-10-12 23:42:57.5252+00 2025-10-12 23:42:57.525212+00 f t SUBTOTAL 54000.00 1 9478 \N +375866 2025-10-12 23:42:57.527372+00 2025-10-12 23:42:57.527382+00 f t DESCUENTO 0.00 2 9478 \N +375867 2025-10-12 23:42:57.528852+00 2025-10-12 23:42:57.52886+00 f t TOTAL 54000.00 3 9478 \N +375868 2025-10-12 23:42:57.530128+00 2025-10-12 23:42:57.530137+00 f t ADELANTO 13500.00 4 9478 \N +366980 2025-10-09 14:20:10.280058+00 2025-10-09 14:20:10.280067+00 f t ADELANTO 46900.00 4 9231 \N +376181 2025-10-13 02:40:44.038811+00 2025-10-13 02:40:44.03882+00 f t SUBTOTAL 102000.00 1 9483 \N +376182 2025-10-13 02:40:44.040387+00 2025-10-13 02:40:44.040394+00 f t DESCUENTO 0.00 2 9483 \N +376183 2025-10-13 02:40:44.04186+00 2025-10-13 02:40:44.041866+00 f t TOTAL 102000.00 3 9483 \N +376184 2025-10-13 02:40:44.042899+00 2025-10-13 02:40:44.042905+00 f t ADELANTO 29500.00 4 9483 \N +376242 2025-10-13 02:49:57.220604+00 2025-10-13 02:49:57.220612+00 f t DESCUENTO 0.00 2 9486 \N +376243 2025-10-13 02:49:57.222338+00 2025-10-13 02:49:57.222345+00 f t TOTAL 0.00 3 9486 \N +376244 2025-10-13 02:49:57.223728+00 2025-10-13 02:49:57.223736+00 f t ADELANTO 0.00 4 9486 \N +477747 2025-11-10 19:56:25.905841+00 2025-11-10 19:56:25.905852+00 f t SUBTOTAL 13200.00 1 11943 \N +477748 2025-11-10 19:56:25.908131+00 2025-11-10 19:56:25.908141+00 f t COSTO_SERVICIO 0.00 2 11943 \N +397589 2025-10-20 03:44:38.607793+00 2025-10-20 03:44:38.607802+00 f t SUBTOTAL 0.00 1 10066 \N +397590 2025-10-20 03:44:38.609615+00 2025-10-20 03:44:38.609621+00 f t DESCUENTO 0.00 2 10066 \N +397591 2025-10-20 03:44:38.610509+00 2025-10-20 03:44:38.610514+00 f t TOTAL 0.00 3 10066 \N +397592 2025-10-20 03:44:38.611353+00 2025-10-20 03:44:38.611358+00 f t ADELANTO 0.00 4 10066 \N +361709 2025-10-07 14:00:39.540023+00 2025-10-07 14:00:39.540035+00 f t SUBTOTAL 46000.00 1 9076 \N +361710 2025-10-07 14:00:39.54232+00 2025-10-07 14:00:39.542329+00 f t DESCUENTO 0.00 2 9076 \N +361711 2025-10-07 14:00:39.543837+00 2025-10-07 14:00:39.543845+00 f t TOTAL 46000.00 3 9076 \N +361712 2025-10-07 14:00:39.545251+00 2025-10-07 14:00:39.545258+00 f t ADELANTO 11000.00 4 9076 \N +361725 2025-10-07 14:00:59.576957+00 2025-10-07 14:00:59.576969+00 f t SUBTOTAL 0.00 1 9077 \N +361726 2025-10-07 14:00:59.579674+00 2025-10-07 14:00:59.579687+00 f t DESCUENTO 0.00 2 9077 \N +361727 2025-10-07 14:00:59.581533+00 2025-10-07 14:00:59.581543+00 f t TOTAL 0.00 3 9077 \N +361728 2025-10-07 14:00:59.583707+00 2025-10-07 14:00:59.583718+00 f t ADELANTO 0.00 4 9077 \N +361733 2025-10-07 14:08:38.234162+00 2025-10-07 14:08:38.234174+00 f t SUBTOTAL 0.00 1 9078 \N +361734 2025-10-07 14:08:38.23578+00 2025-10-07 14:08:38.235788+00 f t DESCUENTO 0.00 2 9078 \N +361735 2025-10-07 14:08:38.237077+00 2025-10-07 14:08:38.237084+00 f t TOTAL 0.00 3 9078 \N +361736 2025-10-07 14:08:38.238209+00 2025-10-07 14:08:38.238216+00 f t ADELANTO 0.00 4 9078 \N +361749 2025-10-07 14:21:05.111101+00 2025-10-07 14:21:05.111111+00 f t SUBTOTAL 0.00 1 9079 \N +361750 2025-10-07 14:21:05.113563+00 2025-10-07 14:21:05.113574+00 f t DESCUENTO 0.00 2 9079 \N +361751 2025-10-07 14:21:05.115249+00 2025-10-07 14:21:05.11526+00 f t TOTAL 0.00 3 9079 \N +361752 2025-10-07 14:21:05.116699+00 2025-10-07 14:21:05.116708+00 f t ADELANTO 0.00 4 9079 \N +361757 2025-10-07 14:24:31.995367+00 2025-10-07 14:24:31.995379+00 f t SUBTOTAL 0.00 1 9080 \N +361758 2025-10-07 14:24:31.997061+00 2025-10-07 14:24:31.997072+00 f t DESCUENTO 0.00 2 9080 \N +361759 2025-10-07 14:24:31.998671+00 2025-10-07 14:24:31.99868+00 f t TOTAL 0.00 3 9080 \N +361760 2025-10-07 14:24:32.000076+00 2025-10-07 14:24:32.000084+00 f t ADELANTO 0.00 4 9080 \N +361769 2025-10-07 14:26:59.306931+00 2025-10-07 14:26:59.306938+00 f t SUBTOTAL 30000.00 1 9081 \N +361770 2025-10-07 14:26:59.308443+00 2025-10-07 14:26:59.30845+00 f t DESCUENTO 0.00 2 9081 \N +361771 2025-10-07 14:26:59.309465+00 2025-10-07 14:26:59.309472+00 f t TOTAL 30000.00 3 9081 \N +361772 2025-10-07 14:26:59.310481+00 2025-10-07 14:26:59.310486+00 f t ADELANTO 30000.00 4 9081 \N +364149 2025-10-08 14:19:29.865345+00 2025-10-08 14:19:29.865358+00 f t SUBTOTAL 41400.00 1 9151 \N +364150 2025-10-08 14:19:29.867397+00 2025-10-08 14:19:29.867408+00 f t DESCUENTO 0.00 2 9151 \N +364151 2025-10-08 14:19:29.869047+00 2025-10-08 14:19:29.869057+00 f t TOTAL 41400.00 3 9151 \N +364152 2025-10-08 14:19:29.870667+00 2025-10-08 14:19:29.870675+00 f t ADELANTO 35900.00 4 9151 \N +364537 2025-10-08 17:31:58.733777+00 2025-10-08 17:31:58.733785+00 f t SUBTOTAL 13200.00 1 9168 \N +364538 2025-10-08 17:31:58.735534+00 2025-10-08 17:31:58.735541+00 f t DESCUENTO 0.00 2 9168 \N +364539 2025-10-08 17:31:58.736672+00 2025-10-08 17:31:58.736679+00 f t TOTAL 13200.00 3 9168 \N +364540 2025-10-08 17:31:58.737672+00 2025-10-08 17:31:58.737677+00 f t ADELANTO 13200.00 4 9168 \N +364773 2025-10-08 17:41:29.970309+00 2025-10-08 17:41:29.970318+00 f t SUBTOTAL 55000.00 1 9170 \N +364774 2025-10-08 17:41:29.97254+00 2025-10-08 17:41:29.972548+00 f t DESCUENTO 0.00 2 9170 \N +364775 2025-10-08 17:41:29.973749+00 2025-10-08 17:41:29.973755+00 f t TOTAL 55000.00 3 9170 \N +364776 2025-10-08 17:41:29.975475+00 2025-10-08 17:41:29.975481+00 f t ADELANTO 11000.00 4 9170 \N +364925 2025-10-08 18:56:04.73552+00 2025-10-08 18:56:04.735528+00 f t SUBTOTAL 23000.00 1 9174 \N +364926 2025-10-08 18:56:04.737735+00 2025-10-08 18:56:04.737743+00 f t DESCUENTO 0.00 2 9174 \N +364927 2025-10-08 18:56:04.739281+00 2025-10-08 18:56:04.739287+00 f t TOTAL 23000.00 3 9174 \N +364928 2025-10-08 18:56:04.740327+00 2025-10-08 18:56:04.740333+00 f t ADELANTO 5500.00 4 9174 \N +365221 2025-10-08 20:04:46.388905+00 2025-10-08 20:04:46.388913+00 f t SUBTOTAL 70000.00 1 9184 \N +365222 2025-10-08 20:04:46.390641+00 2025-10-08 20:04:46.39065+00 f t DESCUENTO 0.00 2 9184 \N +365223 2025-10-08 20:04:46.391752+00 2025-10-08 20:04:46.391758+00 f t TOTAL 70000.00 3 9184 \N +365224 2025-10-08 20:04:46.393276+00 2025-10-08 20:04:46.393282+00 f t ADELANTO 19000.00 4 9184 \N +365573 2025-10-08 22:11:38.322697+00 2025-10-08 22:11:38.322707+00 f t SUBTOTAL 0.00 1 9196 \N +365574 2025-10-08 22:11:38.323964+00 2025-10-08 22:11:38.323971+00 f t DESCUENTO 0.00 2 9196 \N +365575 2025-10-08 22:11:38.325132+00 2025-10-08 22:11:38.325137+00 f t TOTAL 0.00 3 9196 \N +365576 2025-10-08 22:11:38.326276+00 2025-10-08 22:11:38.326283+00 f t ADELANTO 0.00 4 9196 \N +365769 2025-10-08 23:03:15.066006+00 2025-10-08 23:03:15.066018+00 f t SUBTOTAL 57000.00 1 9203 \N +365770 2025-10-08 23:03:15.068056+00 2025-10-08 23:03:15.068067+00 f t DESCUENTO 0.00 2 9203 \N +365771 2025-10-08 23:03:15.069424+00 2025-10-08 23:03:15.069434+00 f t TOTAL 57000.00 3 9203 \N +365772 2025-10-08 23:03:15.070655+00 2025-10-08 23:03:15.070663+00 f t ADELANTO 57000.00 4 9203 \N +361937 2025-10-07 14:59:01.881877+00 2025-10-07 14:59:01.881886+00 f t SUBTOTAL 46000.00 1 9083 \N +361938 2025-10-07 14:59:01.883948+00 2025-10-07 14:59:01.883957+00 f t DESCUENTO 0.00 2 9083 \N +361939 2025-10-07 14:59:01.885983+00 2025-10-07 14:59:01.885991+00 f t TOTAL 46000.00 3 9083 \N +361940 2025-10-07 14:59:01.887542+00 2025-10-07 14:59:01.887549+00 f t ADELANTO 11000.00 4 9083 \N +366781 2025-10-09 12:43:44.210383+00 2025-10-09 12:43:44.210395+00 f t SUBTOTAL 0.00 1 9223 \N +366782 2025-10-09 12:43:44.212668+00 2025-10-09 12:43:44.212676+00 f t DESCUENTO 0.00 2 9223 \N +366783 2025-10-09 12:43:44.213789+00 2025-10-09 12:43:44.213794+00 f t TOTAL 0.00 3 9223 \N +366784 2025-10-09 12:43:44.215257+00 2025-10-09 12:43:44.215263+00 f t ADELANTO 0.00 4 9223 \N +366837 2025-10-09 13:07:23.544425+00 2025-10-09 13:07:23.544433+00 f t SUBTOTAL 55000.00 1 9227 \N +366838 2025-10-09 13:07:23.546098+00 2025-10-09 13:07:23.546105+00 f t DESCUENTO 0.00 2 9227 \N +366839 2025-10-09 13:07:23.547104+00 2025-10-09 13:07:23.54711+00 f t TOTAL 55000.00 3 9227 \N +366840 2025-10-09 13:07:23.548019+00 2025-10-09 13:07:23.548024+00 f t ADELANTO 11000.00 4 9227 \N +366921 2025-10-09 14:19:15.42557+00 2025-10-09 14:19:15.425581+00 f t SUBTOTAL 46000.00 1 9230 \N +366922 2025-10-09 14:19:15.427356+00 2025-10-09 14:19:15.427363+00 f t DESCUENTO 0.00 2 9230 \N +366923 2025-10-09 14:19:15.428933+00 2025-10-09 14:19:15.428941+00 f t TOTAL 46000.00 3 9230 \N +366924 2025-10-09 14:19:15.430273+00 2025-10-09 14:19:15.430281+00 f t ADELANTO 11000.00 4 9230 \N +366981 2025-10-09 14:21:22.589547+00 2025-10-09 14:21:22.589555+00 f t SUBTOTAL 55000.00 1 9233 \N +366982 2025-10-09 14:21:22.591003+00 2025-10-09 14:21:22.591009+00 f t DESCUENTO 0.00 2 9233 \N +366983 2025-10-09 14:21:22.592068+00 2025-10-09 14:21:22.592073+00 f t TOTAL 55000.00 3 9233 \N +366984 2025-10-09 14:21:22.593065+00 2025-10-09 14:21:22.593069+00 f t ADELANTO 11000.00 4 9233 \N +361985 2025-10-07 15:34:40.802571+00 2025-10-07 15:34:40.802578+00 f t SUBTOTAL 55000.00 1 9084 \N +361986 2025-10-07 15:34:40.804047+00 2025-10-07 15:34:40.804054+00 f t DESCUENTO 0.00 2 9084 \N +361987 2025-10-07 15:34:40.805427+00 2025-10-07 15:34:40.805433+00 f t TOTAL 55000.00 3 9084 \N +361988 2025-10-07 15:34:40.806983+00 2025-10-07 15:34:40.806989+00 f t ADELANTO 11000.00 4 9084 \N +371417 2025-10-10 23:10:18.633802+00 2025-10-10 23:10:18.633811+00 f t SUBTOTAL 55000.00 1 9356 \N +371418 2025-10-10 23:10:18.635493+00 2025-10-10 23:10:18.6355+00 f t DESCUENTO 0.00 2 9356 \N +371419 2025-10-10 23:10:18.636752+00 2025-10-10 23:10:18.636758+00 f t TOTAL 55000.00 3 9356 \N +371420 2025-10-10 23:10:18.63793+00 2025-10-10 23:10:18.637936+00 f t ADELANTO 11000.00 4 9356 \N +363353 2025-10-08 01:47:46.140885+00 2025-10-08 01:47:46.140893+00 f t SUBTOTAL 46000.00 1 9130 \N +363354 2025-10-08 01:47:46.142472+00 2025-10-08 01:47:46.142479+00 f t DESCUENTO 0.00 2 9130 \N +363355 2025-10-08 01:47:46.143516+00 2025-10-08 01:47:46.143524+00 f t TOTAL 46000.00 3 9130 \N +363356 2025-10-08 01:47:46.144578+00 2025-10-08 01:47:46.144583+00 f t ADELANTO 11000.00 4 9130 \N +363553 2025-10-08 03:52:11.158153+00 2025-10-08 03:52:11.158162+00 f t SUBTOTAL 30000.00 1 9135 \N +363554 2025-10-08 03:52:11.159745+00 2025-10-08 03:52:11.159756+00 f t DESCUENTO 0.00 2 9135 \N +363555 2025-10-08 03:52:11.160992+00 2025-10-08 03:52:11.160997+00 f t TOTAL 30000.00 3 9135 \N +363556 2025-10-08 03:52:11.161999+00 2025-10-08 03:52:11.162004+00 f t ADELANTO 30000.00 4 9135 \N +363653 2025-10-08 04:06:03.549216+00 2025-10-08 04:06:03.549226+00 f t SUBTOTAL 99400.00 1 9137 \N +363654 2025-10-08 04:06:03.552388+00 2025-10-08 04:06:03.552396+00 f t DESCUENTO 0.00 2 9137 \N +363655 2025-10-08 04:06:03.55375+00 2025-10-08 04:06:03.553758+00 f t TOTAL 99400.00 3 9137 \N +363656 2025-10-08 04:06:03.555341+00 2025-10-08 04:06:03.555348+00 f t ADELANTO 58900.00 4 9137 \N +364053 2025-10-08 12:27:28.164613+00 2025-10-08 12:27:28.164623+00 f t SUBTOTAL 0.00 1 9148 \N +364054 2025-10-08 12:27:28.166619+00 2025-10-08 12:27:28.166627+00 f t DESCUENTO 0.00 2 9148 \N +364055 2025-10-08 12:27:28.1678+00 2025-10-08 12:27:28.167807+00 f t TOTAL 0.00 3 9148 \N +364056 2025-10-08 12:27:28.168953+00 2025-10-08 12:27:28.168961+00 f t ADELANTO 0.00 4 9148 \N +362053 2025-10-07 16:00:56.338739+00 2025-10-07 16:00:56.338747+00 f t SUBTOTAL 46000.00 1 9085 \N +362054 2025-10-07 16:00:56.340488+00 2025-10-07 16:00:56.340498+00 f t DESCUENTO 0.00 2 9085 \N +362055 2025-10-07 16:00:56.341855+00 2025-10-07 16:00:56.341861+00 f t TOTAL 46000.00 3 9085 \N +362056 2025-10-07 16:00:56.343022+00 2025-10-07 16:00:56.343028+00 f t ADELANTO 11000.00 4 9085 \N +362065 2025-10-07 16:38:20.79261+00 2025-10-07 16:38:20.792619+00 f t SUBTOTAL 75000.00 1 9086 \N +362066 2025-10-07 16:38:20.794233+00 2025-10-07 16:38:20.794241+00 f t DESCUENTO 0.00 2 9086 \N +362067 2025-10-07 16:38:20.795715+00 2025-10-07 16:38:20.795722+00 f t TOTAL 75000.00 3 9086 \N +362068 2025-10-07 16:38:20.797034+00 2025-10-07 16:38:20.79704+00 f t ADELANTO 15000.00 4 9086 \N +362073 2025-10-07 16:58:41.947721+00 2025-10-07 16:58:41.947732+00 f t SUBTOTAL 0.00 1 9087 \N +362074 2025-10-07 16:58:41.949813+00 2025-10-07 16:58:41.949823+00 f t DESCUENTO 0.00 2 9087 \N +362075 2025-10-07 16:58:41.951791+00 2025-10-07 16:58:41.9518+00 f t TOTAL 0.00 3 9087 \N +362076 2025-10-07 16:58:41.953326+00 2025-10-07 16:58:41.953335+00 f t ADELANTO 0.00 4 9087 \N +362081 2025-10-07 16:59:01.463834+00 2025-10-07 16:59:01.463846+00 f t SUBTOTAL 0.00 1 9088 \N +362082 2025-10-07 16:59:01.465525+00 2025-10-07 16:59:01.465533+00 f t DESCUENTO 0.00 2 9088 \N +362083 2025-10-07 16:59:01.46723+00 2025-10-07 16:59:01.467244+00 f t TOTAL 0.00 3 9088 \N +362084 2025-10-07 16:59:01.469195+00 2025-10-07 16:59:01.469203+00 f t ADELANTO 0.00 4 9088 \N +362105 2025-10-07 17:16:36.625365+00 2025-10-07 17:16:36.625379+00 f t SUBTOTAL 234000.00 1 9082 \N +362106 2025-10-07 17:16:36.630195+00 2025-10-07 17:16:36.630205+00 f t DESCUENTO 0.00 2 9082 \N +362107 2025-10-07 17:16:36.632001+00 2025-10-07 17:16:36.632009+00 f t TOTAL 234000.00 3 9082 \N +362108 2025-10-07 17:16:36.633506+00 2025-10-07 17:16:36.633513+00 f t ADELANTO 64500.00 4 9082 \N +365305 2025-10-08 20:20:28.802356+00 2025-10-08 20:20:28.802364+00 f t SUBTOTAL 46000.00 1 9188 \N +365306 2025-10-08 20:20:28.804217+00 2025-10-08 20:20:28.804227+00 f t DESCUENTO 0.00 2 9188 \N +365307 2025-10-08 20:20:28.805839+00 2025-10-08 20:20:28.805847+00 f t TOTAL 46000.00 3 9188 \N +365308 2025-10-08 20:20:28.807214+00 2025-10-08 20:20:28.807222+00 f t ADELANTO 11000.00 4 9188 \N +362145 2025-10-07 17:54:30.813803+00 2025-10-07 17:54:30.813816+00 f t SUBTOTAL 0.00 1 9089 \N +362146 2025-10-07 17:54:30.815778+00 2025-10-07 17:54:30.815785+00 f t DESCUENTO 0.00 2 9089 \N +362147 2025-10-07 17:54:30.817022+00 2025-10-07 17:54:30.81703+00 f t TOTAL 0.00 3 9089 \N +362148 2025-10-07 17:54:30.81816+00 2025-10-07 17:54:30.818166+00 f t ADELANTO 0.00 4 9089 \N +362153 2025-10-07 18:18:40.82683+00 2025-10-07 18:18:40.826839+00 f t SUBTOTAL 0.00 1 9090 \N +362154 2025-10-07 18:18:40.82853+00 2025-10-07 18:18:40.828541+00 f t DESCUENTO 0.00 2 9090 \N +362155 2025-10-07 18:18:40.8299+00 2025-10-07 18:18:40.829906+00 f t TOTAL 0.00 3 9090 \N +362156 2025-10-07 18:18:40.830824+00 2025-10-07 18:18:40.830829+00 f t ADELANTO 0.00 4 9090 \N +362161 2025-10-07 18:46:35.768339+00 2025-10-07 18:46:35.768347+00 f t SUBTOTAL 0.00 1 9091 \N +362162 2025-10-07 18:46:35.769736+00 2025-10-07 18:46:35.769742+00 f t DESCUENTO 0.00 2 9091 \N +362163 2025-10-07 18:46:35.770843+00 2025-10-07 18:46:35.770851+00 f t TOTAL 0.00 3 9091 \N +362164 2025-10-07 18:46:35.77184+00 2025-10-07 18:46:35.771846+00 f t ADELANTO 0.00 4 9091 \N +365581 2025-10-08 22:21:35.854351+00 2025-10-08 22:21:35.85436+00 f t SUBTOTAL 0.00 1 9197 \N +365582 2025-10-08 22:21:35.85579+00 2025-10-08 22:21:35.855797+00 f t DESCUENTO 0.00 2 9197 \N +365583 2025-10-08 22:21:35.856958+00 2025-10-08 22:21:35.856964+00 f t TOTAL 0.00 3 9197 \N +365584 2025-10-08 22:21:35.858081+00 2025-10-08 22:21:35.858087+00 f t ADELANTO 0.00 4 9197 \N +365645 2025-10-08 22:32:00.538406+00 2025-10-08 22:32:00.538414+00 f t SUBTOTAL 46000.00 1 9199 \N +365646 2025-10-08 22:32:00.540267+00 2025-10-08 22:32:00.540276+00 f t DESCUENTO 0.00 2 9199 \N +365647 2025-10-08 22:32:00.541596+00 2025-10-08 22:32:00.541601+00 f t TOTAL 46000.00 3 9199 \N +365648 2025-10-08 22:32:00.542754+00 2025-10-08 22:32:00.542761+00 f t ADELANTO 11000.00 4 9199 \N +365837 2025-10-08 23:47:02.775784+00 2025-10-08 23:47:02.775795+00 f t SUBTOTAL 101100.00 1 9206 \N +365838 2025-10-08 23:47:02.777765+00 2025-10-08 23:47:02.777777+00 f t DESCUENTO 0.00 2 9206 \N +365839 2025-10-08 23:47:02.779099+00 2025-10-08 23:47:02.779106+00 f t TOTAL 101100.00 3 9206 \N +365840 2025-10-08 23:47:02.780227+00 2025-10-08 23:47:02.780235+00 f t ADELANTO 28100.00 4 9206 \N +366513 2025-10-09 11:30:59.887901+00 2025-10-09 11:30:59.887913+00 f t SUBTOTAL 55000.00 1 9219 \N +366514 2025-10-09 11:30:59.889778+00 2025-10-09 11:30:59.889788+00 f t DESCUENTO 0.00 2 9219 \N +366515 2025-10-09 11:30:59.891453+00 2025-10-09 11:30:59.891463+00 f t TOTAL 55000.00 3 9219 \N +366516 2025-10-09 11:30:59.892955+00 2025-10-09 11:30:59.892962+00 f t ADELANTO 11000.00 4 9219 \N +366789 2025-10-09 12:54:58.580049+00 2025-10-09 12:54:58.580056+00 f t SUBTOTAL 0.00 1 9224 \N +366790 2025-10-09 12:54:58.581126+00 2025-10-09 12:54:58.581132+00 f t DESCUENTO 0.00 2 9224 \N +362261 2025-10-07 19:06:34.547094+00 2025-10-07 19:06:34.547102+00 f t SUBTOTAL 46000.00 1 9093 \N +362262 2025-10-07 19:06:34.550219+00 2025-10-07 19:06:34.550231+00 f t DESCUENTO 0.00 2 9093 \N +362263 2025-10-07 19:06:34.551677+00 2025-10-07 19:06:34.551686+00 f t TOTAL 46000.00 3 9093 \N +362264 2025-10-07 19:06:34.552956+00 2025-10-07 19:06:34.552963+00 f t ADELANTO 11000.00 4 9093 \N +535715 2025-11-23 18:47:48.062491+00 2025-11-23 18:47:48.0625+00 f t TOTAL 54000.00 4 13307 \N +535716 2025-11-23 18:47:48.063926+00 2025-11-23 18:47:48.063934+00 f t ADELANTO 13500.00 5 13307 \N +362285 2025-10-07 19:13:57.810432+00 2025-10-07 19:13:57.810446+00 f t SUBTOTAL 80000.00 1 9092 \N +362286 2025-10-07 19:13:57.812856+00 2025-10-07 19:13:57.812869+00 f t DESCUENTO 0.00 2 9092 \N +362287 2025-10-07 19:13:57.815432+00 2025-10-07 19:13:57.815444+00 f t TOTAL 80000.00 3 9092 \N +362288 2025-10-07 19:13:57.81765+00 2025-10-07 19:13:57.817662+00 f t ADELANTO 12000.00 4 9092 \N +371425 2025-10-10 23:10:28.014417+00 2025-10-10 23:10:28.014429+00 f t SUBTOTAL 0.00 1 9357 \N +371426 2025-10-10 23:10:28.015988+00 2025-10-10 23:10:28.015996+00 f t DESCUENTO 0.00 2 9357 \N +371427 2025-10-10 23:10:28.0174+00 2025-10-10 23:10:28.017407+00 f t TOTAL 0.00 3 9357 \N +371428 2025-10-10 23:10:28.018539+00 2025-10-10 23:10:28.018545+00 f t ADELANTO 0.00 4 9357 \N +362317 2025-10-07 19:24:46.30383+00 2025-10-07 19:24:46.30384+00 f t SUBTOTAL 0.00 1 9094 \N +362318 2025-10-07 19:24:46.306371+00 2025-10-07 19:24:46.306379+00 f t DESCUENTO 0.00 2 9094 \N +362319 2025-10-07 19:24:46.307804+00 2025-10-07 19:24:46.30781+00 f t TOTAL 0.00 3 9094 \N +362320 2025-10-07 19:24:46.309011+00 2025-10-07 19:24:46.309016+00 f t ADELANTO 0.00 4 9094 \N +372213 2025-10-11 12:46:56.452986+00 2025-10-11 12:46:56.453001+00 f t SUBTOTAL 0.00 1 9381 \N +372214 2025-10-11 12:46:56.454755+00 2025-10-11 12:46:56.454765+00 f t DESCUENTO 0.00 2 9381 \N +372215 2025-10-11 12:46:56.456235+00 2025-10-11 12:46:56.456245+00 f t TOTAL 0.00 3 9381 \N +362329 2025-10-07 19:32:11.740306+00 2025-10-07 19:32:11.740317+00 f t SUBTOTAL 13200.00 1 9095 \N +362330 2025-10-07 19:32:11.74369+00 2025-10-07 19:32:11.743701+00 f t DESCUENTO 0.00 2 9095 \N +362331 2025-10-07 19:32:11.745439+00 2025-10-07 19:32:11.745448+00 f t TOTAL 13200.00 3 9095 \N +362332 2025-10-07 19:32:11.746791+00 2025-10-07 19:32:11.746801+00 f t ADELANTO 13200.00 4 9095 \N +372216 2025-10-11 12:46:56.457515+00 2025-10-11 12:46:56.457524+00 f t ADELANTO 0.00 4 9381 \N +381233 2025-10-14 13:56:31.933657+00 2025-10-14 13:56:31.933667+00 f t SUBTOTAL 100000.00 1 9609 \N +381234 2025-10-14 13:56:31.935886+00 2025-10-14 13:56:31.935894+00 f t DESCUENTO 0.00 2 9609 \N +381235 2025-10-14 13:56:31.937344+00 2025-10-14 13:56:31.93735+00 f t TOTAL 100000.00 3 9609 \N +381236 2025-10-14 13:56:31.939289+00 2025-10-14 13:56:31.939295+00 f t ADELANTO 24500.00 4 9609 \N +362369 2025-10-07 19:36:17.89425+00 2025-10-07 19:36:17.894262+00 f t SUBTOTAL 125000.00 1 9096 \N +362370 2025-10-07 19:36:17.896924+00 2025-10-07 19:36:17.896934+00 f t DESCUENTO 0.00 2 9096 \N +362371 2025-10-07 19:36:17.898901+00 2025-10-07 19:36:17.898911+00 f t TOTAL 125000.00 3 9096 \N +362372 2025-10-07 19:36:17.906817+00 2025-10-07 19:36:17.90683+00 f t ADELANTO 30000.00 4 9096 \N +364937 2025-10-08 18:57:07.458269+00 2025-10-08 18:57:07.458281+00 f t SUBTOTAL 13200.00 1 9175 \N +364938 2025-10-08 18:57:07.464147+00 2025-10-08 18:57:07.464159+00 f t DESCUENTO 0.00 2 9175 \N +364939 2025-10-08 18:57:07.465777+00 2025-10-08 18:57:07.465786+00 f t TOTAL 13200.00 3 9175 \N +364940 2025-10-08 18:57:07.467218+00 2025-10-08 18:57:07.467226+00 f t ADELANTO 13200.00 4 9175 \N +365017 2025-10-08 19:17:18.473908+00 2025-10-08 19:17:18.473918+00 f t SUBTOTAL 0.00 1 9179 \N +365018 2025-10-08 19:17:18.47593+00 2025-10-08 19:17:18.475937+00 f t DESCUENTO 0.00 2 9179 \N +365019 2025-10-08 19:17:18.477418+00 2025-10-08 19:17:18.477425+00 f t TOTAL 0.00 3 9179 \N +365020 2025-10-08 19:17:18.478917+00 2025-10-08 19:17:18.478923+00 f t ADELANTO 0.00 4 9179 \N +373985 2025-10-12 13:44:08.41416+00 2025-10-12 13:44:08.414173+00 f t SUBTOTAL 0.00 1 9435 \N +373986 2025-10-12 13:44:08.416737+00 2025-10-12 13:44:08.416744+00 f t DESCUENTO 0.00 2 9435 \N +373987 2025-10-12 13:44:08.418093+00 2025-10-12 13:44:08.418099+00 f t TOTAL 0.00 3 9435 \N +373988 2025-10-12 13:44:08.419436+00 2025-10-12 13:44:08.419444+00 f t ADELANTO 0.00 4 9435 \N +374433 2025-10-12 16:22:57.978315+00 2025-10-12 16:22:57.978323+00 f t SUBTOTAL 46000.00 1 9445 \N +374434 2025-10-12 16:22:57.986051+00 2025-10-12 16:22:57.986061+00 f t DESCUENTO 0.00 2 9445 \N +374435 2025-10-12 16:22:57.987684+00 2025-10-12 16:22:57.987692+00 f t TOTAL 46000.00 3 9445 \N +374436 2025-10-12 16:22:57.988981+00 2025-10-12 16:22:57.988988+00 f t ADELANTO 11000.00 4 9445 \N +362457 2025-10-07 19:41:06.051361+00 2025-10-07 19:41:06.051371+00 f t SUBTOTAL 0.00 1 9098 \N +362458 2025-10-07 19:41:06.052918+00 2025-10-07 19:41:06.052929+00 f t DESCUENTO 0.00 2 9098 \N +362459 2025-10-07 19:41:06.054473+00 2025-10-07 19:41:06.054482+00 f t TOTAL 0.00 3 9098 \N +362460 2025-10-07 19:41:06.056113+00 2025-10-07 19:41:06.056122+00 f t ADELANTO 0.00 4 9098 \N +365781 2025-10-08 23:16:51.218379+00 2025-10-08 23:16:51.218391+00 f t SUBTOTAL 78000.00 1 9204 \N +365782 2025-10-08 23:16:51.224129+00 2025-10-08 23:16:51.224139+00 f t DESCUENTO 0.00 2 9204 \N +365783 2025-10-08 23:16:51.22643+00 2025-10-08 23:16:51.226441+00 f t TOTAL 78000.00 3 9204 \N +365784 2025-10-08 23:16:51.228236+00 2025-10-08 23:16:51.228246+00 f t ADELANTO 13000.00 4 9204 \N +362477 2025-10-07 19:41:16.68807+00 2025-10-07 19:41:16.68808+00 f t SUBTOTAL 46000.00 1 9097 \N +362478 2025-10-07 19:41:16.689771+00 2025-10-07 19:41:16.689779+00 f t DESCUENTO 0.00 2 9097 \N +362479 2025-10-07 19:41:16.69372+00 2025-10-07 19:41:16.693728+00 f t TOTAL 46000.00 3 9097 \N +362480 2025-10-07 19:41:16.696424+00 2025-10-07 19:41:16.696433+00 f t ADELANTO 11000.00 4 9097 \N +362485 2025-10-07 20:08:46.329393+00 2025-10-07 20:08:46.329403+00 f t SUBTOTAL 0.00 1 9099 \N +362486 2025-10-07 20:08:46.330873+00 2025-10-07 20:08:46.330879+00 f t DESCUENTO 0.00 2 9099 \N +362487 2025-10-07 20:08:46.332155+00 2025-10-07 20:08:46.332162+00 f t TOTAL 0.00 3 9099 \N +362488 2025-10-07 20:08:46.333327+00 2025-10-07 20:08:46.333333+00 f t ADELANTO 0.00 4 9099 \N +362493 2025-10-07 20:46:21.341275+00 2025-10-07 20:46:21.341289+00 f t SUBTOTAL 0.00 1 9100 \N +362494 2025-10-07 20:46:21.343639+00 2025-10-07 20:46:21.343651+00 f t DESCUENTO 0.00 2 9100 \N +362495 2025-10-07 20:46:21.345137+00 2025-10-07 20:46:21.345146+00 f t TOTAL 0.00 3 9100 \N +362496 2025-10-07 20:46:21.346421+00 2025-10-07 20:46:21.34643+00 f t ADELANTO 0.00 4 9100 \N +366117 2025-10-09 02:02:27.311033+00 2025-10-09 02:02:27.311043+00 f t SUBTOTAL 0.00 1 9210 \N +366118 2025-10-09 02:02:27.313204+00 2025-10-09 02:02:27.313218+00 f t DESCUENTO 0.00 2 9210 \N +366119 2025-10-09 02:02:27.314384+00 2025-10-09 02:02:27.31439+00 f t TOTAL 0.00 3 9210 \N +362505 2025-10-07 20:47:15.18836+00 2025-10-07 20:47:15.188369+00 f t SUBTOTAL 82000.00 1 9101 \N +362506 2025-10-07 20:47:15.189951+00 2025-10-07 20:47:15.189959+00 f t DESCUENTO 0.00 2 9101 \N +362507 2025-10-07 20:47:15.191919+00 2025-10-07 20:47:15.191926+00 f t TOTAL 82000.00 3 9101 \N +362508 2025-10-07 20:47:15.193342+00 2025-10-07 20:47:15.193351+00 f t ADELANTO 12000.00 4 9101 \N +366120 2025-10-09 02:02:27.315506+00 2025-10-09 02:02:27.315515+00 f t ADELANTO 0.00 4 9210 \N +362541 2025-10-07 20:55:53.021029+00 2025-10-07 20:55:53.021038+00 f t SUBTOTAL 0.00 1 9102 \N +362542 2025-10-07 20:55:53.024094+00 2025-10-07 20:55:53.024106+00 f t DESCUENTO 0.00 2 9102 \N +362543 2025-10-07 20:55:53.025814+00 2025-10-07 20:55:53.025822+00 f t TOTAL 0.00 3 9102 \N +362544 2025-10-07 20:55:53.027411+00 2025-10-07 20:55:53.027421+00 f t ADELANTO 0.00 4 9102 \N +366791 2025-10-09 12:54:58.582037+00 2025-10-09 12:54:58.582042+00 f t TOTAL 0.00 3 9224 \N +366792 2025-10-09 12:54:58.583014+00 2025-10-09 12:54:58.583019+00 f t ADELANTO 0.00 4 9224 \N +371105 2025-10-10 21:08:00.449013+00 2025-10-10 21:08:00.449021+00 f t SUBTOTAL 54000.00 1 9345 \N +371106 2025-10-10 21:08:00.451662+00 2025-10-10 21:08:00.451673+00 f t DESCUENTO 0.00 2 9345 \N +371107 2025-10-10 21:08:00.453231+00 2025-10-10 21:08:00.45324+00 f t TOTAL 54000.00 3 9345 \N +371108 2025-10-10 21:08:00.454528+00 2025-10-10 21:08:00.454536+00 f t ADELANTO 13500.00 4 9345 \N +371429 2025-10-10 23:18:12.69293+00 2025-10-10 23:18:12.692939+00 f t SUBTOTAL 78000.00 1 9033 \N +371430 2025-10-10 23:18:12.694734+00 2025-10-10 23:18:12.694741+00 f t DESCUENTO 0.00 2 9033 \N +371431 2025-10-10 23:18:12.695889+00 2025-10-10 23:18:12.695896+00 f t TOTAL 78000.00 3 9033 \N +371432 2025-10-10 23:18:12.697277+00 2025-10-10 23:18:12.697285+00 f t ADELANTO 21500.00 4 9033 \N +371577 2025-10-10 23:56:17.436986+00 2025-10-10 23:56:17.436994+00 f t SUBTOTAL 107000.00 1 9362 \N +371578 2025-10-10 23:56:17.438443+00 2025-10-10 23:56:17.438449+00 f t DESCUENTO 0.00 2 9362 \N +371579 2025-10-10 23:56:17.439918+00 2025-10-10 23:56:17.439924+00 f t TOTAL 107000.00 3 9362 \N +371580 2025-10-10 23:56:17.441104+00 2025-10-10 23:56:17.44111+00 f t ADELANTO 12000.00 4 9362 \N +380145 2025-10-14 00:04:50.580436+00 2025-10-14 00:04:50.580445+00 f t SUBTOTAL 13200.00 1 9583 \N +380146 2025-10-14 00:04:50.581976+00 2025-10-14 00:04:50.581984+00 f t DESCUENTO 0.00 2 9583 \N +380147 2025-10-14 00:04:50.583247+00 2025-10-14 00:04:50.583254+00 f t TOTAL 13200.00 3 9583 \N +367097 2025-10-09 14:33:11.6329+00 2025-10-09 14:33:11.632909+00 f t SUBTOTAL 87400.00 1 9235 \N +367098 2025-10-09 14:33:11.634373+00 2025-10-09 14:33:11.634381+00 f t DESCUENTO 0.00 2 9235 \N +367099 2025-10-09 14:33:11.635577+00 2025-10-09 14:33:11.635583+00 f t TOTAL 87400.00 3 9235 \N +367100 2025-10-09 14:33:11.63664+00 2025-10-09 14:33:11.636647+00 f t ADELANTO 46900.00 4 9235 \N +380148 2025-10-14 00:04:50.584479+00 2025-10-14 00:04:50.584485+00 f t ADELANTO 13200.00 4 9583 \N +372769 2025-10-11 17:01:13.203612+00 2025-10-11 17:01:13.203622+00 f t SUBTOTAL 55000.00 1 9394 \N +372770 2025-10-11 17:01:13.205917+00 2025-10-11 17:01:13.205927+00 f t DESCUENTO 0.00 2 9394 \N +372771 2025-10-11 17:01:13.20734+00 2025-10-11 17:01:13.207348+00 f t TOTAL 55000.00 3 9394 \N +372772 2025-10-11 17:01:13.208887+00 2025-10-11 17:01:13.208894+00 f t ADELANTO 11000.00 4 9394 \N +367169 2025-10-09 14:34:38.200541+00 2025-10-09 14:34:38.200553+00 f t SUBTOTAL 0.00 1 9234 \N +367170 2025-10-09 14:34:38.202497+00 2025-10-09 14:34:38.202506+00 f t DESCUENTO 0.00 2 9234 \N +367171 2025-10-09 14:34:38.204071+00 2025-10-09 14:34:38.204077+00 f t TOTAL 0.00 3 9234 \N +367172 2025-10-09 14:34:38.20499+00 2025-10-09 14:34:38.204995+00 f t ADELANTO 0.00 4 9234 \N +367177 2025-10-09 14:42:24.759328+00 2025-10-09 14:42:24.75934+00 f t SUBTOTAL 0.00 1 9236 \N +367178 2025-10-09 14:42:24.760729+00 2025-10-09 14:42:24.760736+00 f t DESCUENTO 0.00 2 9236 \N +367179 2025-10-09 14:42:24.761711+00 2025-10-09 14:42:24.761716+00 f t TOTAL 0.00 3 9236 \N +367180 2025-10-09 14:42:24.762681+00 2025-10-09 14:42:24.762689+00 f t ADELANTO 0.00 4 9236 \N +367185 2025-10-09 14:47:53.658878+00 2025-10-09 14:47:53.658886+00 f t SUBTOTAL 0.00 1 9237 \N +367186 2025-10-09 14:47:53.660021+00 2025-10-09 14:47:53.660026+00 f t DESCUENTO 0.00 2 9237 \N +367187 2025-10-09 14:47:53.661052+00 2025-10-09 14:47:53.661057+00 f t TOTAL 0.00 3 9237 \N +367188 2025-10-09 14:47:53.661922+00 2025-10-09 14:47:53.661927+00 f t ADELANTO 0.00 4 9237 \N +382577 2025-10-14 22:19:21.388707+00 2025-10-14 22:19:21.388717+00 f t SUBTOTAL 46000.00 1 9651 \N +382578 2025-10-14 22:19:21.390966+00 2025-10-14 22:19:21.390976+00 f t DESCUENTO 0.00 2 9651 \N +382579 2025-10-14 22:19:21.392424+00 2025-10-14 22:19:21.392431+00 f t TOTAL 46000.00 3 9651 \N +382580 2025-10-14 22:19:21.393499+00 2025-10-14 22:19:21.393504+00 f t ADELANTO 11000.00 4 9651 \N +367221 2025-10-09 14:51:21.077544+00 2025-10-09 14:51:21.077552+00 f t SUBTOTAL 70000.00 1 9238 \N +367222 2025-10-09 14:51:21.07923+00 2025-10-09 14:51:21.079237+00 f t DESCUENTO 0.00 2 9238 \N +367223 2025-10-09 14:51:21.081616+00 2025-10-09 14:51:21.081623+00 f t TOTAL 70000.00 3 9238 \N +367224 2025-10-09 14:51:21.08353+00 2025-10-09 14:51:21.083536+00 f t ADELANTO 19000.00 4 9238 \N +383209 2025-10-15 03:31:51.676324+00 2025-10-15 03:31:51.676333+00 f t SUBTOTAL 55000.00 1 9671 \N +383210 2025-10-15 03:31:51.678374+00 2025-10-15 03:31:51.678383+00 f t DESCUENTO 0.00 2 9671 \N +383211 2025-10-15 03:31:51.679521+00 2025-10-15 03:31:51.679528+00 f t TOTAL 55000.00 3 9671 \N +383212 2025-10-15 03:31:51.680753+00 2025-10-15 03:31:51.680762+00 f t ADELANTO 11000.00 4 9671 \N +383314 2025-10-15 09:09:44.340311+00 2025-10-15 09:09:44.340319+00 f t DESCUENTO 0.00 2 9675 \N +383315 2025-10-15 09:09:44.342062+00 2025-10-15 09:09:44.34207+00 f t TOTAL 0.00 3 9675 \N +383316 2025-10-15 09:09:44.34394+00 2025-10-15 09:09:44.343948+00 f t ADELANTO 0.00 4 9675 \N +383689 2025-10-15 12:39:04.544775+00 2025-10-15 12:39:04.544784+00 f t SUBTOTAL 156000.00 1 9681 \N +383690 2025-10-15 12:39:04.546293+00 2025-10-15 12:39:04.5463+00 f t DESCUENTO 0.00 2 9681 \N +383691 2025-10-15 12:39:04.547405+00 2025-10-15 12:39:04.547415+00 f t TOTAL 156000.00 3 9681 \N +383692 2025-10-15 12:39:04.548499+00 2025-10-15 12:39:04.548508+00 f t ADELANTO 43000.00 4 9681 \N +383805 2025-10-15 14:23:56.117622+00 2025-10-15 14:23:56.117631+00 f t SUBTOTAL 23000.00 1 9688 \N +367305 2025-10-09 15:08:16.135155+00 2025-10-09 15:08:16.135164+00 f t SUBTOTAL 0.00 1 9239 \N +367306 2025-10-09 15:08:16.137125+00 2025-10-09 15:08:16.137132+00 f t DESCUENTO 0.00 2 9239 \N +367307 2025-10-09 15:08:16.138269+00 2025-10-09 15:08:16.138274+00 f t TOTAL 0.00 3 9239 \N +367308 2025-10-09 15:08:16.139411+00 2025-10-09 15:08:16.139416+00 f t ADELANTO 0.00 4 9239 \N +375873 2025-10-13 00:15:43.801134+00 2025-10-13 00:15:43.801144+00 f t SUBTOTAL 0.00 1 9479 \N +367313 2025-10-09 15:22:04.225071+00 2025-10-09 15:22:04.225083+00 f t SUBTOTAL 0.00 1 9240 \N +367314 2025-10-09 15:22:04.228767+00 2025-10-09 15:22:04.228778+00 f t DESCUENTO 0.00 2 9240 \N +367315 2025-10-09 15:22:04.230528+00 2025-10-09 15:22:04.23054+00 f t TOTAL 0.00 3 9240 \N +367316 2025-10-09 15:22:04.232521+00 2025-10-09 15:22:04.232532+00 f t ADELANTO 0.00 4 9240 \N +375874 2025-10-13 00:15:43.802541+00 2025-10-13 00:15:43.802548+00 f t DESCUENTO 0.00 2 9479 \N +375875 2025-10-13 00:15:43.803822+00 2025-10-13 00:15:43.803827+00 f t TOTAL 0.00 3 9479 \N +375876 2025-10-13 00:15:43.804904+00 2025-10-13 00:15:43.804909+00 f t ADELANTO 0.00 4 9479 \N +376189 2025-10-13 02:46:44.117891+00 2025-10-13 02:46:44.117904+00 f t SUBTOTAL 0.00 1 9484 \N +376190 2025-10-13 02:46:44.119282+00 2025-10-13 02:46:44.11929+00 f t DESCUENTO 0.00 2 9484 \N +376191 2025-10-13 02:46:44.120593+00 2025-10-13 02:46:44.1206+00 f t TOTAL 0.00 3 9484 \N +376192 2025-10-13 02:46:44.121589+00 2025-10-13 02:46:44.121594+00 f t ADELANTO 0.00 4 9484 \N +367345 2025-10-09 15:23:38.462755+00 2025-10-09 15:23:38.462767+00 f t SUBTOTAL 107000.00 1 9241 \N +367346 2025-10-09 15:23:38.464417+00 2025-10-09 15:23:38.464424+00 f t DESCUENTO 0.00 2 9241 \N +367347 2025-10-09 15:23:38.465465+00 2025-10-09 15:23:38.465472+00 f t TOTAL 107000.00 3 9241 \N +367348 2025-10-09 15:23:38.466417+00 2025-10-09 15:23:38.466423+00 f t ADELANTO 12000.00 4 9241 \N +367353 2025-10-09 15:27:52.288496+00 2025-10-09 15:27:52.288505+00 f t SUBTOTAL 0.00 1 9242 \N +367354 2025-10-09 15:27:52.289928+00 2025-10-09 15:27:52.289934+00 f t DESCUENTO 0.00 2 9242 \N +367355 2025-10-09 15:27:52.291077+00 2025-10-09 15:27:52.291082+00 f t TOTAL 0.00 3 9242 \N +367356 2025-10-09 15:27:52.292133+00 2025-10-09 15:27:52.29214+00 f t ADELANTO 0.00 4 9242 \N +367361 2025-10-09 17:58:09.277037+00 2025-10-09 17:58:09.277045+00 f t SUBTOTAL 0.00 1 9243 \N +367362 2025-10-09 17:58:09.283343+00 2025-10-09 17:58:09.283352+00 f t DESCUENTO 0.00 2 9243 \N +367363 2025-10-09 17:58:09.287274+00 2025-10-09 17:58:09.287283+00 f t TOTAL 0.00 3 9243 \N +367364 2025-10-09 17:58:09.28875+00 2025-10-09 17:58:09.28876+00 f t ADELANTO 0.00 4 9243 \N +466562 2025-11-07 22:11:40.900623+00 2025-11-07 22:11:40.900634+00 f t SUBTOTAL 0.00 1 11697 \N +466563 2025-11-07 22:11:40.901981+00 2025-11-07 22:11:40.90199+00 f t COSTO_SERVICIO 0.00 2 11697 \N +466564 2025-11-07 22:11:40.903632+00 2025-11-07 22:11:40.903639+00 f t DESCUENTO 0.00 3 11697 \N +466565 2025-11-07 22:11:40.904721+00 2025-11-07 22:11:40.904729+00 f t TOTAL 0.00 4 11697 \N +371849 2025-10-11 02:27:58.71365+00 2025-10-11 02:27:58.713658+00 f t SUBTOTAL 82000.00 1 9369 \N +371850 2025-10-11 02:27:58.715584+00 2025-10-11 02:27:58.715592+00 f t DESCUENTO 0.00 2 9369 \N +371851 2025-10-11 02:27:58.716775+00 2025-10-11 02:27:58.716781+00 f t TOTAL 82000.00 3 9369 \N +371852 2025-10-11 02:27:58.717785+00 2025-10-11 02:27:58.717791+00 f t ADELANTO 12000.00 4 9369 \N +367409 2025-10-09 18:04:24.292362+00 2025-10-09 18:04:24.292374+00 f t SUBTOTAL 55000.00 1 9244 \N +367410 2025-10-09 18:04:24.294129+00 2025-10-09 18:04:24.29414+00 f t DESCUENTO 0.00 2 9244 \N +367411 2025-10-09 18:04:24.295547+00 2025-10-09 18:04:24.295554+00 f t TOTAL 55000.00 3 9244 \N +367412 2025-10-09 18:04:24.296732+00 2025-10-09 18:04:24.296737+00 f t ADELANTO 11000.00 4 9244 \N +372441 2025-10-11 13:49:59.555004+00 2025-10-11 13:49:59.555013+00 f t SUBTOTAL 46000.00 1 9384 \N +372442 2025-10-11 13:49:59.556869+00 2025-10-11 13:49:59.556876+00 f t DESCUENTO 0.00 2 9384 \N +372443 2025-10-11 13:49:59.558023+00 2025-10-11 13:49:59.55803+00 f t TOTAL 46000.00 3 9384 \N +372444 2025-10-11 13:49:59.559185+00 2025-10-11 13:49:59.559191+00 f t ADELANTO 11000.00 4 9384 \N +367425 2025-10-09 18:06:37.70939+00 2025-10-09 18:06:37.709397+00 f t SUBTOTAL 0.00 1 9246 \N +367426 2025-10-09 18:06:37.71052+00 2025-10-09 18:06:37.710525+00 f t DESCUENTO 0.00 2 9246 \N +367427 2025-10-09 18:06:37.711428+00 2025-10-09 18:06:37.711434+00 f t TOTAL 0.00 3 9246 \N +367428 2025-10-09 18:06:37.712352+00 2025-10-09 18:06:37.712357+00 f t ADELANTO 0.00 4 9246 \N +367433 2025-10-09 18:09:20.160335+00 2025-10-09 18:09:20.160343+00 f t SUBTOTAL 77900.00 1 9245 \N +367434 2025-10-09 18:09:20.161807+00 2025-10-09 18:09:20.161813+00 f t DESCUENTO 0.00 2 9245 \N +367435 2025-10-09 18:09:20.162755+00 2025-10-09 18:09:20.16276+00 f t TOTAL 77900.00 3 9245 \N +367436 2025-10-09 18:09:20.163672+00 2025-10-09 18:09:20.163677+00 f t ADELANTO 54900.00 4 9245 \N +372873 2025-10-11 17:58:30.132131+00 2025-10-11 17:58:30.132141+00 f t SUBTOTAL 0.00 1 9396 \N +372874 2025-10-11 17:58:30.134031+00 2025-10-11 17:58:30.134039+00 f t DESCUENTO 0.00 2 9396 \N +372875 2025-10-11 17:58:30.135087+00 2025-10-11 17:58:30.135093+00 f t TOTAL 0.00 3 9396 \N +372876 2025-10-11 17:58:30.136453+00 2025-10-11 17:58:30.136459+00 f t ADELANTO 0.00 4 9396 \N +367453 2025-10-09 18:11:10.851695+00 2025-10-09 18:11:10.851703+00 f t SUBTOTAL 13200.00 1 9247 \N +367454 2025-10-09 18:11:10.85334+00 2025-10-09 18:11:10.853347+00 f t DESCUENTO 0.00 2 9247 \N +367455 2025-10-09 18:11:10.854492+00 2025-10-09 18:11:10.854499+00 f t TOTAL 13200.00 3 9247 \N +367456 2025-10-09 18:11:10.855576+00 2025-10-09 18:11:10.855582+00 f t ADELANTO 13200.00 4 9247 \N +367457 2025-10-09 18:15:23.504675+00 2025-10-09 18:15:23.504683+00 f t SUBTOTAL 75000.00 1 9248 \N +367458 2025-10-09 18:15:23.506444+00 2025-10-09 18:15:23.50645+00 f t DESCUENTO 0.00 2 9248 \N +367459 2025-10-09 18:15:23.507527+00 2025-10-09 18:15:23.507533+00 f t TOTAL 75000.00 3 9248 \N +367460 2025-10-09 18:15:23.508582+00 2025-10-09 18:15:23.50859+00 f t ADELANTO 15000.00 4 9248 \N +367465 2025-10-09 18:22:12.788288+00 2025-10-09 18:22:12.788298+00 f t SUBTOTAL 0.00 1 9249 \N +367466 2025-10-09 18:22:12.790057+00 2025-10-09 18:22:12.790065+00 f t DESCUENTO 0.00 2 9249 \N +367467 2025-10-09 18:22:12.79125+00 2025-10-09 18:22:12.791257+00 f t TOTAL 0.00 3 9249 \N +367468 2025-10-09 18:22:12.792374+00 2025-10-09 18:22:12.79238+00 f t ADELANTO 0.00 4 9249 \N +367481 2025-10-09 18:38:53.071645+00 2025-10-09 18:38:53.071658+00 f t SUBTOTAL 0.00 1 9251 \N +367482 2025-10-09 18:38:53.073099+00 2025-10-09 18:38:53.073107+00 f t DESCUENTO 0.00 2 9251 \N +367483 2025-10-09 18:38:53.074299+00 2025-10-09 18:38:53.074307+00 f t TOTAL 0.00 3 9251 \N +367484 2025-10-09 18:38:53.075586+00 2025-10-09 18:38:53.075593+00 f t ADELANTO 0.00 4 9251 \N +367485 2025-10-09 19:04:58.607297+00 2025-10-09 19:04:58.607308+00 f t SUBTOTAL 46000.00 1 9250 \N +367486 2025-10-09 19:04:58.609751+00 2025-10-09 19:04:58.609758+00 f t DESCUENTO 0.00 2 9250 \N +367487 2025-10-09 19:04:58.611183+00 2025-10-09 19:04:58.611191+00 f t TOTAL 46000.00 3 9250 \N +367488 2025-10-09 19:04:58.612635+00 2025-10-09 19:04:58.612642+00 f t ADELANTO 11000.00 4 9250 \N +367493 2025-10-09 19:13:19.124151+00 2025-10-09 19:13:19.12416+00 f t SUBTOTAL 0.00 1 9252 \N +367494 2025-10-09 19:13:19.125439+00 2025-10-09 19:13:19.125445+00 f t DESCUENTO 0.00 2 9252 \N +367495 2025-10-09 19:13:19.12657+00 2025-10-09 19:13:19.126575+00 f t TOTAL 0.00 3 9252 \N +367496 2025-10-09 19:13:19.127483+00 2025-10-09 19:13:19.127488+00 f t ADELANTO 0.00 4 9252 \N +367561 2025-10-09 20:02:23.200839+00 2025-10-09 20:02:23.200847+00 f t SUBTOTAL 68000.00 1 9254 \N +367562 2025-10-09 20:02:23.202875+00 2025-10-09 20:02:23.202883+00 f t DESCUENTO 0.00 2 9254 \N +367563 2025-10-09 20:02:23.204382+00 2025-10-09 20:02:23.20439+00 f t TOTAL 68000.00 3 9254 \N +367564 2025-10-09 20:02:23.206657+00 2025-10-09 20:02:23.206664+00 f t ADELANTO 13000.00 4 9254 \N +375033 2025-10-12 19:33:57.256549+00 2025-10-12 19:33:57.256563+00 f t SUBTOTAL 55000.00 1 9458 \N +375034 2025-10-12 19:33:57.258942+00 2025-10-12 19:33:57.258953+00 f t DESCUENTO 0.00 2 9458 \N +375035 2025-10-12 19:33:57.260555+00 2025-10-12 19:33:57.260564+00 f t TOTAL 55000.00 3 9458 \N +375036 2025-10-12 19:33:57.262268+00 2025-10-12 19:33:57.262275+00 f t ADELANTO 11000.00 4 9458 \N +367589 2025-10-09 20:03:36.961954+00 2025-10-09 20:03:36.961962+00 f t SUBTOTAL 60000.00 1 9255 \N +367590 2025-10-09 20:03:36.963487+00 2025-10-09 20:03:36.963495+00 f t DESCUENTO 0.00 2 9255 \N +367591 2025-10-09 20:03:36.964619+00 2025-10-09 20:03:36.964626+00 f t TOTAL 60000.00 3 9255 \N +367592 2025-10-09 20:03:36.965655+00 2025-10-09 20:03:36.96566+00 f t ADELANTO 60000.00 4 9255 \N +367601 2025-10-09 20:11:52.563596+00 2025-10-09 20:11:52.563609+00 f t SUBTOTAL 55000.00 1 9256 \N +367602 2025-10-09 20:11:52.566019+00 2025-10-09 20:11:52.566029+00 f t DESCUENTO 0.00 2 9256 \N +367603 2025-10-09 20:11:52.567808+00 2025-10-09 20:11:52.567819+00 f t TOTAL 55000.00 3 9256 \N +367604 2025-10-09 20:11:52.570203+00 2025-10-09 20:11:52.570213+00 f t ADELANTO 11000.00 4 9256 \N +375541 2025-10-12 21:36:48.642513+00 2025-10-12 21:36:48.642522+00 f t SUBTOTAL 55000.00 1 9471 \N +375542 2025-10-12 21:36:48.644446+00 2025-10-12 21:36:48.644455+00 f t DESCUENTO 0.00 2 9471 \N +375543 2025-10-12 21:36:48.645751+00 2025-10-12 21:36:48.645757+00 f t TOTAL 55000.00 3 9471 \N +375544 2025-10-12 21:36:48.64684+00 2025-10-12 21:36:48.646845+00 f t ADELANTO 11000.00 4 9471 \N +367629 2025-10-09 20:13:14.765262+00 2025-10-09 20:13:14.765278+00 f t SUBTOTAL 68000.00 1 9257 \N +367630 2025-10-09 20:13:14.766755+00 2025-10-09 20:13:14.766761+00 f t DESCUENTO 0.00 2 9257 \N +367631 2025-10-09 20:13:14.767904+00 2025-10-09 20:13:14.76791+00 f t TOTAL 68000.00 3 9257 \N +367632 2025-10-09 20:13:14.768837+00 2025-10-09 20:13:14.768842+00 f t ADELANTO 13000.00 4 9257 \N +397397 2025-10-20 01:05:56.747022+00 2025-10-20 01:05:56.747031+00 f t SUBTOTAL 70000.00 1 10059 \N +397398 2025-10-20 01:05:56.748964+00 2025-10-20 01:05:56.748975+00 f t DESCUENTO 0.00 2 10059 \N +379849 2025-10-13 23:35:29.557885+00 2025-10-13 23:35:29.557895+00 f t SUBTOTAL 82000.00 1 9580 \N +379850 2025-10-13 23:35:29.560018+00 2025-10-13 23:35:29.560031+00 f t DESCUENTO 0.00 2 9580 \N +379851 2025-10-13 23:35:29.561566+00 2025-10-13 23:35:29.561572+00 f t TOTAL 82000.00 3 9580 \N +379852 2025-10-13 23:35:29.563053+00 2025-10-13 23:35:29.563059+00 f t ADELANTO 12000.00 4 9580 \N +371441 2025-10-10 23:29:05.144078+00 2025-10-10 23:29:05.144087+00 f t SUBTOTAL 55000.00 1 9358 \N +371442 2025-10-10 23:29:05.146245+00 2025-10-10 23:29:05.146252+00 f t DESCUENTO 0.00 2 9358 \N +371443 2025-10-10 23:29:05.148056+00 2025-10-10 23:29:05.148065+00 f t TOTAL 55000.00 3 9358 \N +371444 2025-10-10 23:29:05.149496+00 2025-10-10 23:29:05.149504+00 f t ADELANTO 11000.00 4 9358 \N +367673 2025-10-09 20:14:57.609209+00 2025-10-09 20:14:57.609217+00 f t SUBTOTAL 55000.00 1 9258 \N +367674 2025-10-09 20:14:57.611014+00 2025-10-09 20:14:57.611021+00 f t DESCUENTO 0.00 2 9258 \N +367675 2025-10-09 20:14:57.612397+00 2025-10-09 20:14:57.612403+00 f t TOTAL 55000.00 3 9258 \N +367676 2025-10-09 20:14:57.61338+00 2025-10-09 20:14:57.613385+00 f t ADELANTO 11000.00 4 9258 \N +380457 2025-10-14 01:14:02.622267+00 2025-10-14 01:14:02.622277+00 f t SUBTOTAL 70000.00 1 9591 \N +380458 2025-10-14 01:14:02.624301+00 2025-10-14 01:14:02.624311+00 f t DESCUENTO 0.00 2 9591 \N +367681 2025-10-09 20:18:17.620042+00 2025-10-09 20:18:17.620051+00 f t SUBTOTAL 0.00 1 9259 \N +367682 2025-10-09 20:18:17.621471+00 2025-10-09 20:18:17.621478+00 f t DESCUENTO 0.00 2 9259 \N +367683 2025-10-09 20:18:17.622549+00 2025-10-09 20:18:17.622555+00 f t TOTAL 0.00 3 9259 \N +367684 2025-10-09 20:18:17.623584+00 2025-10-09 20:18:17.623589+00 f t ADELANTO 0.00 4 9259 \N +380459 2025-10-14 01:14:02.62568+00 2025-10-14 01:14:02.625687+00 f t TOTAL 70000.00 3 9591 \N +380460 2025-10-14 01:14:02.626863+00 2025-10-14 01:14:02.626869+00 f t ADELANTO 19000.00 4 9591 \N +372113 2025-10-11 10:49:22.768617+00 2025-10-11 10:49:22.768629+00 f t SUBTOTAL 0.00 1 9379 \N +372114 2025-10-11 10:49:22.770483+00 2025-10-11 10:49:22.770491+00 f t DESCUENTO 0.00 2 9379 \N +372115 2025-10-11 10:49:22.771783+00 2025-10-11 10:49:22.771789+00 f t TOTAL 0.00 3 9379 \N +372116 2025-10-11 10:49:22.772881+00 2025-10-11 10:49:22.772886+00 f t ADELANTO 0.00 4 9379 \N +389505 2025-10-17 03:04:26.61716+00 2025-10-17 03:04:26.617171+00 f t SUBTOTAL 0.00 1 9861 \N +372449 2025-10-11 13:58:44.741329+00 2025-10-11 13:58:44.741337+00 f t SUBTOTAL 0.00 1 9385 \N +372450 2025-10-11 13:58:44.742838+00 2025-10-11 13:58:44.742844+00 f t DESCUENTO 0.00 2 9385 \N +372451 2025-10-11 13:58:44.743838+00 2025-10-11 13:58:44.743844+00 f t TOTAL 0.00 3 9385 \N +372452 2025-10-11 13:58:44.744718+00 2025-10-11 13:58:44.744723+00 f t ADELANTO 0.00 4 9385 \N +389506 2025-10-17 03:04:26.618755+00 2025-10-17 03:04:26.618763+00 f t DESCUENTO 0.00 2 9861 \N +389507 2025-10-17 03:04:26.620022+00 2025-10-17 03:04:26.620031+00 f t TOTAL 0.00 3 9861 \N +389508 2025-10-17 03:04:26.621091+00 2025-10-17 03:04:26.621097+00 f t ADELANTO 0.00 4 9861 \N +372881 2025-10-11 18:02:30.395166+00 2025-10-11 18:02:30.395175+00 f t SUBTOTAL 0.00 1 9397 \N +372882 2025-10-11 18:02:30.396506+00 2025-10-11 18:02:30.396513+00 f t DESCUENTO 0.00 2 9397 \N +372883 2025-10-11 18:02:30.397535+00 2025-10-11 18:02:30.397541+00 f t TOTAL 0.00 3 9397 \N +372884 2025-10-11 18:02:30.398443+00 2025-10-11 18:02:30.398449+00 f t ADELANTO 0.00 4 9397 \N +373509 2025-10-12 03:49:14.347197+00 2025-10-12 03:49:14.347209+00 f t SUBTOTAL 55000.00 1 9418 \N +367757 2025-10-09 20:30:50.855546+00 2025-10-09 20:30:50.855555+00 f t SUBTOTAL 46000.00 1 9260 \N +367758 2025-10-09 20:30:50.857545+00 2025-10-09 20:30:50.857554+00 f t DESCUENTO 0.00 2 9260 \N +367759 2025-10-09 20:30:50.858983+00 2025-10-09 20:30:50.858992+00 f t TOTAL 46000.00 3 9260 \N +367760 2025-10-09 20:30:50.860658+00 2025-10-09 20:30:50.860666+00 f t ADELANTO 11000.00 4 9260 \N +373510 2025-10-12 03:49:14.35331+00 2025-10-12 03:49:14.353321+00 f t DESCUENTO 0.00 2 9418 \N +373511 2025-10-12 03:49:14.355319+00 2025-10-12 03:49:14.355328+00 f t TOTAL 55000.00 3 9418 \N +373512 2025-10-12 03:49:14.357308+00 2025-10-12 03:49:14.357318+00 f t ADELANTO 11000.00 4 9418 \N +367785 2025-10-09 20:43:48.444071+00 2025-10-09 20:43:48.444079+00 f t SUBTOTAL 46000.00 1 9261 \N +367786 2025-10-09 20:43:48.445471+00 2025-10-09 20:43:48.445476+00 f t DESCUENTO 0.00 2 9261 \N +367787 2025-10-09 20:43:48.446435+00 2025-10-09 20:43:48.446442+00 f t TOTAL 46000.00 3 9261 \N +367788 2025-10-09 20:43:48.447525+00 2025-10-09 20:43:48.44753+00 f t ADELANTO 11000.00 4 9261 \N +367797 2025-10-09 20:51:15.386929+00 2025-10-09 20:51:15.386941+00 f t SUBTOTAL 30000.00 1 9262 \N +367798 2025-10-09 20:51:15.38903+00 2025-10-09 20:51:15.389041+00 f t DESCUENTO 0.00 2 9262 \N +367799 2025-10-09 20:51:15.390609+00 2025-10-09 20:51:15.390615+00 f t TOTAL 30000.00 3 9262 \N +367800 2025-10-09 20:51:15.391637+00 2025-10-09 20:51:15.391644+00 f t ADELANTO 30000.00 4 9262 \N +367801 2025-10-09 20:57:47.089511+00 2025-10-09 20:57:47.08952+00 f t SUBTOTAL 78000.00 1 9253 \N +367802 2025-10-09 20:57:47.091484+00 2025-10-09 20:57:47.09149+00 f t DESCUENTO 0.00 2 9253 \N +367803 2025-10-09 20:57:47.092653+00 2025-10-09 20:57:47.092658+00 f t TOTAL 78000.00 3 9253 \N +367804 2025-10-09 20:57:47.093672+00 2025-10-09 20:57:47.093677+00 f t ADELANTO 13000.00 4 9253 \N +374953 2025-10-12 19:16:17.45298+00 2025-10-12 19:16:17.452988+00 f t SUBTOTAL 70000.00 1 9455 \N +374954 2025-10-12 19:16:17.454859+00 2025-10-12 19:16:17.454866+00 f t DESCUENTO 0.00 2 9455 \N +374955 2025-10-12 19:16:17.456159+00 2025-10-12 19:16:17.456165+00 f t TOTAL 70000.00 3 9455 \N +374956 2025-10-12 19:16:17.457314+00 2025-10-12 19:16:17.457319+00 f t ADELANTO 19000.00 4 9455 \N +367857 2025-10-09 21:16:58.256104+00 2025-10-09 21:16:58.256112+00 f t SUBTOTAL 46000.00 1 9263 \N +367858 2025-10-09 21:16:58.258027+00 2025-10-09 21:16:58.258037+00 f t DESCUENTO 0.00 2 9263 \N +367859 2025-10-09 21:16:58.259401+00 2025-10-09 21:16:58.259407+00 f t TOTAL 46000.00 3 9263 \N +367860 2025-10-09 21:16:58.260486+00 2025-10-09 21:16:58.260492+00 f t ADELANTO 11000.00 4 9263 \N +367865 2025-10-09 21:30:26.264741+00 2025-10-09 21:30:26.264749+00 f t SUBTOTAL 0.00 1 9264 \N +367866 2025-10-09 21:30:26.266031+00 2025-10-09 21:30:26.266036+00 f t DESCUENTO 0.00 2 9264 \N +367867 2025-10-09 21:30:26.267068+00 2025-10-09 21:30:26.267072+00 f t TOTAL 0.00 3 9264 \N +367868 2025-10-09 21:30:26.268099+00 2025-10-09 21:30:26.268106+00 f t ADELANTO 0.00 4 9264 \N +367881 2025-10-09 21:33:30.950183+00 2025-10-09 21:33:30.950195+00 f t SUBTOTAL 0.00 1 9265 \N +367882 2025-10-09 21:33:30.952258+00 2025-10-09 21:33:30.952265+00 f t DESCUENTO 0.00 2 9265 \N +367883 2025-10-09 21:33:30.953436+00 2025-10-09 21:33:30.953442+00 f t TOTAL 0.00 3 9265 \N +367884 2025-10-09 21:33:30.954664+00 2025-10-09 21:33:30.954671+00 f t ADELANTO 0.00 4 9265 \N +375881 2025-10-13 01:21:27.368201+00 2025-10-13 01:21:27.368212+00 f t SUBTOTAL 0.00 1 9480 \N +375882 2025-10-13 01:21:27.369581+00 2025-10-13 01:21:27.369588+00 f t DESCUENTO 0.00 2 9480 \N +375883 2025-10-13 01:21:27.370607+00 2025-10-13 01:21:27.370615+00 f t TOTAL 0.00 3 9480 \N +375884 2025-10-13 01:21:27.37159+00 2025-10-13 01:21:27.371595+00 f t ADELANTO 0.00 4 9480 \N +367941 2025-10-09 21:47:11.680515+00 2025-10-09 21:47:11.680523+00 f t SUBTOTAL 68000.00 1 9266 \N +367942 2025-10-09 21:47:11.682109+00 2025-10-09 21:47:11.682115+00 f t DESCUENTO 0.00 2 9266 \N +367943 2025-10-09 21:47:11.683193+00 2025-10-09 21:47:11.683199+00 f t TOTAL 68000.00 3 9266 \N +367944 2025-10-09 21:47:11.684271+00 2025-10-09 21:47:11.684276+00 f t ADELANTO 13000.00 4 9266 \N +397399 2025-10-20 01:05:56.750371+00 2025-10-20 01:05:56.750378+00 f t TOTAL 70000.00 3 10059 \N +397400 2025-10-20 01:05:56.751754+00 2025-10-20 01:05:56.75176+00 f t ADELANTO 19000.00 4 10059 \N +435557 2025-10-30 13:42:31.53475+00 2025-10-30 13:42:31.534758+00 f t SUBTOTAL 0.00 1 10970 \N +388921 2025-10-17 00:07:18.969617+00 2025-10-17 00:07:18.969629+00 f t SUBTOTAL 46000.00 1 9844 \N +388922 2025-10-17 00:07:18.971708+00 2025-10-17 00:07:18.971719+00 f t DESCUENTO 0.00 2 9844 \N +388923 2025-10-17 00:07:18.973154+00 2025-10-17 00:07:18.973164+00 f t TOTAL 46000.00 3 9844 \N +388924 2025-10-17 00:07:18.974593+00 2025-10-17 00:07:18.974604+00 f t ADELANTO 11000.00 4 9844 \N +380157 2025-10-14 00:06:08.030098+00 2025-10-14 00:06:08.03011+00 f t SUBTOTAL 78000.00 1 9584 \N +380158 2025-10-14 00:06:08.032947+00 2025-10-14 00:06:08.032959+00 f t DESCUENTO 0.00 2 9584 \N +380159 2025-10-14 00:06:08.035022+00 2025-10-14 00:06:08.035034+00 f t TOTAL 78000.00 3 9584 \N +380160 2025-10-14 00:06:08.036887+00 2025-10-14 00:06:08.036898+00 f t ADELANTO 13000.00 4 9584 \N +367973 2025-10-09 21:53:59.953931+00 2025-10-09 21:53:59.95394+00 f t SUBTOTAL 54000.00 1 9267 \N +367974 2025-10-09 21:53:59.955605+00 2025-10-09 21:53:59.955613+00 f t DESCUENTO 0.00 2 9267 \N +367975 2025-10-09 21:53:59.957192+00 2025-10-09 21:53:59.9572+00 f t TOTAL 54000.00 3 9267 \N +367976 2025-10-09 21:53:59.958361+00 2025-10-09 21:53:59.958368+00 f t ADELANTO 13500.00 4 9267 \N +389681 2025-10-17 03:08:54.208894+00 2025-10-17 03:08:54.208943+00 f t SUBTOTAL 30000.00 1 9864 \N +389682 2025-10-17 03:08:54.210652+00 2025-10-17 03:08:54.210661+00 f t DESCUENTO 0.00 2 9864 \N +389683 2025-10-17 03:08:54.21208+00 2025-10-17 03:08:54.212087+00 f t TOTAL 30000.00 3 9864 \N +389684 2025-10-17 03:08:54.213333+00 2025-10-17 03:08:54.213342+00 f t ADELANTO 30000.00 4 9864 \N +368001 2025-10-09 21:56:37.273353+00 2025-10-09 21:56:37.273362+00 f t SUBTOTAL 46000.00 1 9268 \N +368002 2025-10-09 21:56:37.274984+00 2025-10-09 21:56:37.27499+00 f t DESCUENTO 0.00 2 9268 \N +368003 2025-10-09 21:56:37.276108+00 2025-10-09 21:56:37.276114+00 f t TOTAL 46000.00 3 9268 \N +368004 2025-10-09 21:56:37.277025+00 2025-10-09 21:56:37.27703+00 f t ADELANTO 11000.00 4 9268 \N +372889 2025-10-11 18:15:41.211698+00 2025-10-11 18:15:41.21171+00 f t SUBTOTAL 0.00 1 9398 \N +372890 2025-10-11 18:15:41.213289+00 2025-10-11 18:15:41.2133+00 f t DESCUENTO 0.00 2 9398 \N +372891 2025-10-11 18:15:41.214619+00 2025-10-11 18:15:41.214628+00 f t TOTAL 0.00 3 9398 \N +372892 2025-10-11 18:15:41.215777+00 2025-10-11 18:15:41.215784+00 f t ADELANTO 0.00 4 9398 \N +368029 2025-10-09 22:06:36.690075+00 2025-10-09 22:06:36.690084+00 f t SUBTOTAL 30000.00 1 9269 \N +368030 2025-10-09 22:06:36.692145+00 2025-10-09 22:06:36.692153+00 f t DESCUENTO 0.00 2 9269 \N +368031 2025-10-09 22:06:36.693714+00 2025-10-09 22:06:36.693721+00 f t TOTAL 30000.00 3 9269 \N +368032 2025-10-09 22:06:36.695039+00 2025-10-09 22:06:36.695046+00 f t ADELANTO 30000.00 4 9269 \N +368037 2025-10-09 22:07:38.954597+00 2025-10-09 22:07:38.954606+00 f t SUBTOTAL 0.00 1 9270 \N +368038 2025-10-09 22:07:38.956068+00 2025-10-09 22:07:38.956076+00 f t DESCUENTO 0.00 2 9270 \N +368039 2025-10-09 22:07:38.95756+00 2025-10-09 22:07:38.957566+00 f t TOTAL 0.00 3 9270 \N +368040 2025-10-09 22:07:38.959004+00 2025-10-09 22:07:38.959009+00 f t ADELANTO 0.00 4 9270 \N +368045 2025-10-09 22:32:03.933396+00 2025-10-09 22:32:03.933405+00 f t SUBTOTAL 0.00 1 9271 \N +368046 2025-10-09 22:32:03.934754+00 2025-10-09 22:32:03.934761+00 f t DESCUENTO 0.00 2 9271 \N +368047 2025-10-09 22:32:03.935884+00 2025-10-09 22:32:03.935891+00 f t TOTAL 0.00 3 9271 \N +368048 2025-10-09 22:32:03.936806+00 2025-10-09 22:32:03.936811+00 f t ADELANTO 0.00 4 9271 \N +390553 2025-10-17 12:06:37.947008+00 2025-10-17 12:06:37.947016+00 f t SUBTOTAL 55000.00 1 9830 \N +390554 2025-10-17 12:06:37.948889+00 2025-10-17 12:06:37.9489+00 f t DESCUENTO 0.00 2 9830 \N +390555 2025-10-17 12:06:37.950088+00 2025-10-17 12:06:37.950094+00 f t TOTAL 55000.00 3 9830 \N +390556 2025-10-17 12:06:37.951148+00 2025-10-17 12:06:37.951154+00 f t ADELANTO 11000.00 4 9830 \N +390805 2025-10-17 15:44:19.19451+00 2025-10-17 15:44:19.194517+00 f t SUBTOTAL 107000.00 1 9897 \N +390806 2025-10-17 15:44:19.197398+00 2025-10-17 15:44:19.197408+00 f t DESCUENTO 0.00 2 9897 \N +390807 2025-10-17 15:44:19.198941+00 2025-10-17 15:44:19.198951+00 f t TOTAL 107000.00 3 9897 \N +390808 2025-10-17 15:44:19.200632+00 2025-10-17 15:44:19.200638+00 f t ADELANTO 12000.00 4 9897 \N +383806 2025-10-15 14:23:56.119622+00 2025-10-15 14:23:56.119635+00 f t DESCUENTO 0.00 2 9688 \N +383807 2025-10-15 14:23:56.121508+00 2025-10-15 14:23:56.121516+00 f t TOTAL 23000.00 3 9688 \N +368137 2025-10-09 23:00:33.793965+00 2025-10-09 23:00:33.793976+00 f t SUBTOTAL 30000.00 1 9272 \N +368138 2025-10-09 23:00:33.795584+00 2025-10-09 23:00:33.795594+00 f t DESCUENTO 0.00 2 9272 \N +368139 2025-10-09 23:00:33.797064+00 2025-10-09 23:00:33.797071+00 f t TOTAL 30000.00 3 9272 \N +368140 2025-10-09 23:00:33.798637+00 2025-10-09 23:00:33.798642+00 f t ADELANTO 30000.00 4 9272 \N +383808 2025-10-15 14:23:56.122816+00 2025-10-15 14:23:56.122823+00 f t ADELANTO 5500.00 4 9688 \N +368145 2025-10-09 23:18:24.886886+00 2025-10-09 23:18:24.886895+00 f t SUBTOTAL 0.00 1 9273 \N +368146 2025-10-09 23:18:24.888425+00 2025-10-09 23:18:24.888432+00 f t DESCUENTO 0.00 2 9273 \N +368147 2025-10-09 23:18:24.889733+00 2025-10-09 23:18:24.889739+00 f t TOTAL 0.00 3 9273 \N +368148 2025-10-09 23:18:24.890959+00 2025-10-09 23:18:24.890965+00 f t ADELANTO 0.00 4 9273 \N +384341 2025-10-15 16:44:46.398629+00 2025-10-15 16:44:46.398641+00 f t SUBTOTAL 0.00 1 9706 \N +384342 2025-10-15 16:44:46.400245+00 2025-10-15 16:44:46.400255+00 f t DESCUENTO 0.00 2 9706 \N +384343 2025-10-15 16:44:46.401587+00 2025-10-15 16:44:46.401596+00 f t TOTAL 0.00 3 9706 \N +368177 2025-10-09 23:52:08.145747+00 2025-10-09 23:52:08.145755+00 f t SUBTOTAL 55000.00 1 9274 \N +368178 2025-10-09 23:52:08.147276+00 2025-10-09 23:52:08.147285+00 f t DESCUENTO 0.00 2 9274 \N +368179 2025-10-09 23:52:08.148371+00 2025-10-09 23:52:08.148378+00 f t TOTAL 55000.00 3 9274 \N +368180 2025-10-09 23:52:08.149478+00 2025-10-09 23:52:08.149484+00 f t ADELANTO 11000.00 4 9274 \N +384344 2025-10-15 16:44:46.402738+00 2025-10-15 16:44:46.402747+00 f t ADELANTO 0.00 4 9706 \N +384429 2025-10-15 17:13:41.049641+00 2025-10-15 17:13:41.04965+00 f t SUBTOTAL 0.00 1 9710 \N +384430 2025-10-15 17:13:41.052011+00 2025-10-15 17:13:41.052019+00 f t DESCUENTO 0.00 2 9710 \N +384431 2025-10-15 17:13:41.053182+00 2025-10-15 17:13:41.053189+00 f t TOTAL 0.00 3 9710 \N +384432 2025-10-15 17:13:41.054473+00 2025-10-15 17:13:41.05448+00 f t ADELANTO 0.00 4 9710 \N +368189 2025-10-09 23:56:00.532123+00 2025-10-09 23:56:00.532134+00 f t SUBTOTAL 55000.00 1 9275 \N +368190 2025-10-09 23:56:00.535359+00 2025-10-09 23:56:00.535369+00 f t DESCUENTO 0.00 2 9275 \N +368191 2025-10-09 23:56:00.536813+00 2025-10-09 23:56:00.536823+00 f t TOTAL 55000.00 3 9275 \N +368192 2025-10-09 23:56:00.538081+00 2025-10-09 23:56:00.538088+00 f t ADELANTO 11000.00 4 9275 \N +385105 2025-10-15 20:35:21.846948+00 2025-10-15 20:35:21.846958+00 f t SUBTOTAL 0.00 1 9730 \N +385106 2025-10-15 20:35:21.849274+00 2025-10-15 20:35:21.849284+00 f t DESCUENTO 0.00 2 9730 \N +385107 2025-10-15 20:35:21.85067+00 2025-10-15 20:35:21.850678+00 f t TOTAL 0.00 3 9730 \N +385108 2025-10-15 20:35:21.852084+00 2025-10-15 20:35:21.852091+00 f t ADELANTO 0.00 4 9730 \N +371453 2025-10-10 23:39:34.115189+00 2025-10-10 23:39:34.115198+00 f t SUBTOTAL 78000.00 1 9359 \N +371454 2025-10-10 23:39:34.117177+00 2025-10-10 23:39:34.117184+00 f t DESCUENTO 0.00 2 9359 \N +371455 2025-10-10 23:39:34.118514+00 2025-10-10 23:39:34.118522+00 f t TOTAL 78000.00 3 9359 \N +371456 2025-10-10 23:39:34.119903+00 2025-10-10 23:39:34.119908+00 f t ADELANTO 13000.00 4 9359 \N +368261 2025-10-10 00:43:43.4192+00 2025-10-10 00:43:43.419209+00 f t SUBTOTAL 55000.00 1 9276 \N +368262 2025-10-10 00:43:43.420889+00 2025-10-10 00:43:43.420896+00 f t DESCUENTO 0.00 2 9276 \N +368263 2025-10-10 00:43:43.422116+00 2025-10-10 00:43:43.422122+00 f t TOTAL 55000.00 3 9276 \N +368264 2025-10-10 00:43:43.423204+00 2025-10-10 00:43:43.423209+00 f t ADELANTO 11000.00 4 9276 \N +368289 2025-10-10 01:30:07.166651+00 2025-10-10 01:30:07.166664+00 f t SUBTOTAL 0.00 1 9277 \N +368290 2025-10-10 01:30:07.169201+00 2025-10-10 01:30:07.169213+00 f t DESCUENTO 0.00 2 9277 \N +368291 2025-10-10 01:30:07.170918+00 2025-10-10 01:30:07.170928+00 f t TOTAL 0.00 3 9277 \N +368292 2025-10-10 01:30:07.172641+00 2025-10-10 01:30:07.172652+00 f t ADELANTO 0.00 4 9277 \N +373093 2025-10-11 18:41:35.428667+00 2025-10-11 18:41:35.428677+00 f t SUBTOTAL 70000.00 1 9402 \N +373094 2025-10-11 18:41:35.430399+00 2025-10-11 18:41:35.430406+00 f t DESCUENTO 0.00 2 9402 \N +373095 2025-10-11 18:41:35.431915+00 2025-10-11 18:41:35.431922+00 f t TOTAL 70000.00 3 9402 \N +373096 2025-10-11 18:41:35.432983+00 2025-10-11 18:41:35.432989+00 f t ADELANTO 19000.00 4 9402 \N +381613 2025-10-14 16:07:08.514086+00 2025-10-14 16:07:08.514098+00 f t SUBTOTAL 75000.00 1 9622 \N +381614 2025-10-14 16:07:08.516597+00 2025-10-14 16:07:08.516609+00 f t DESCUENTO 0.00 2 9622 \N +381615 2025-10-14 16:07:08.518349+00 2025-10-14 16:07:08.51836+00 f t TOTAL 75000.00 3 9622 \N +368317 2025-10-10 01:31:51.338167+00 2025-10-10 01:31:51.338175+00 f t SUBTOTAL 30000.00 1 9278 \N +368318 2025-10-10 01:31:51.339684+00 2025-10-10 01:31:51.33969+00 f t DESCUENTO 0.00 2 9278 \N +368319 2025-10-10 01:31:51.340755+00 2025-10-10 01:31:51.340761+00 f t TOTAL 30000.00 3 9278 \N +368320 2025-10-10 01:31:51.341653+00 2025-10-10 01:31:51.341658+00 f t ADELANTO 30000.00 4 9278 \N +381616 2025-10-14 16:07:08.520086+00 2025-10-14 16:07:08.520095+00 f t ADELANTO 15000.00 4 9622 \N +373321 2025-10-12 00:21:17.633398+00 2025-10-12 00:21:17.633409+00 f t SUBTOTAL 92000.00 1 9413 \N +373322 2025-10-12 00:21:17.635568+00 2025-10-12 00:21:17.635578+00 f t DESCUENTO 0.00 2 9413 \N +373323 2025-10-12 00:21:17.636981+00 2025-10-12 00:21:17.636988+00 f t TOTAL 92000.00 3 9413 \N +373324 2025-10-12 00:21:17.638608+00 2025-10-12 00:21:17.638615+00 f t ADELANTO 22000.00 4 9413 \N +373621 2025-10-12 04:20:34.847623+00 2025-10-12 04:20:34.847636+00 f t SUBTOTAL 55000.00 1 9423 \N +373622 2025-10-12 04:20:34.849713+00 2025-10-12 04:20:34.849722+00 f t DESCUENTO 0.00 2 9423 \N +373623 2025-10-12 04:20:34.852155+00 2025-10-12 04:20:34.852163+00 f t TOTAL 55000.00 3 9423 \N +373624 2025-10-12 04:20:34.853503+00 2025-10-12 04:20:34.853512+00 f t ADELANTO 11000.00 4 9423 \N +373713 2025-10-12 06:20:25.195584+00 2025-10-12 06:20:25.195593+00 f t SUBTOTAL 0.00 1 9425 \N +373714 2025-10-12 06:20:25.197986+00 2025-10-12 06:20:25.197995+00 f t DESCUENTO 0.00 2 9425 \N +373715 2025-10-12 06:20:25.199143+00 2025-10-12 06:20:25.19915+00 f t TOTAL 0.00 3 9425 \N +368341 2025-10-10 02:21:29.716924+00 2025-10-10 02:21:29.716932+00 f t SUBTOTAL 0.00 1 9280 \N +368342 2025-10-10 02:21:29.71984+00 2025-10-10 02:21:29.719847+00 f t DESCUENTO 0.00 2 9280 \N +368343 2025-10-10 02:21:29.721056+00 2025-10-10 02:21:29.721063+00 f t TOTAL 0.00 3 9280 \N +368344 2025-10-10 02:21:29.722048+00 2025-10-10 02:21:29.722054+00 f t ADELANTO 0.00 4 9280 \N +373716 2025-10-12 06:20:25.200159+00 2025-10-12 06:20:25.200165+00 f t ADELANTO 0.00 4 9425 \N +382089 2025-10-14 20:21:05.444787+00 2025-10-14 20:21:05.444795+00 f t SUBTOTAL 46000.00 1 9643 \N +382090 2025-10-14 20:21:05.447021+00 2025-10-14 20:21:05.447028+00 f t DESCUENTO 0.00 2 9643 \N +382091 2025-10-14 20:21:05.448437+00 2025-10-14 20:21:05.448443+00 f t TOTAL 46000.00 3 9643 \N +382092 2025-10-14 20:21:05.449613+00 2025-10-14 20:21:05.449618+00 f t ADELANTO 11000.00 4 9643 \N +368365 2025-10-10 02:22:56.251811+00 2025-10-10 02:22:56.251822+00 f t SUBTOTAL 53700.00 1 9279 \N +368366 2025-10-10 02:22:56.253995+00 2025-10-10 02:22:56.254006+00 f t DESCUENTO 0.00 2 9279 \N +368367 2025-10-10 02:22:56.255496+00 2025-10-10 02:22:56.255504+00 f t TOTAL 53700.00 3 9279 \N +368368 2025-10-10 02:22:56.257155+00 2025-10-10 02:22:56.257163+00 f t ADELANTO 13200.00 4 9279 \N +374277 2025-10-12 15:32:19.553156+00 2025-10-12 15:32:19.553165+00 f t SUBTOTAL 0.00 1 9441 \N +374278 2025-10-12 15:32:19.555356+00 2025-10-12 15:32:19.555366+00 f t DESCUENTO 0.00 2 9441 \N +374279 2025-10-12 15:32:19.556449+00 2025-10-12 15:32:19.556455+00 f t TOTAL 0.00 3 9441 \N +374280 2025-10-12 15:32:19.557392+00 2025-10-12 15:32:19.557397+00 f t ADELANTO 0.00 4 9441 \N +368393 2025-10-10 02:58:12.59197+00 2025-10-10 02:58:12.591979+00 f t SUBTOTAL 46000.00 1 9281 \N +368394 2025-10-10 02:58:12.593614+00 2025-10-10 02:58:12.59362+00 f t DESCUENTO 0.00 2 9281 \N +368395 2025-10-10 02:58:12.594649+00 2025-10-10 02:58:12.594654+00 f t TOTAL 46000.00 3 9281 \N +368396 2025-10-10 02:58:12.595638+00 2025-10-10 02:58:12.595642+00 f t ADELANTO 11000.00 4 9281 \N +375053 2025-10-12 19:56:42.901991+00 2025-10-12 19:56:42.902003+00 f t SUBTOTAL 55000.00 1 9459 \N +375054 2025-10-12 19:56:42.904233+00 2025-10-12 19:56:42.904242+00 f t DESCUENTO 0.00 2 9459 \N +375055 2025-10-12 19:56:42.905677+00 2025-10-12 19:56:42.905685+00 f t TOTAL 55000.00 3 9459 \N +375056 2025-10-12 19:56:42.907051+00 2025-10-12 19:56:42.907057+00 f t ADELANTO 11000.00 4 9459 \N +375213 2025-10-12 20:33:10.13841+00 2025-10-12 20:33:10.138421+00 f t SUBTOTAL 68000.00 1 9467 \N +375214 2025-10-12 20:33:10.140623+00 2025-10-12 20:33:10.140633+00 f t DESCUENTO 0.00 2 9467 \N +375215 2025-10-12 20:33:10.142062+00 2025-10-12 20:33:10.14207+00 f t TOTAL 68000.00 3 9467 \N +368421 2025-10-10 03:08:29.552292+00 2025-10-10 03:08:29.552301+00 f t SUBTOTAL 46000.00 1 9282 \N +368422 2025-10-10 03:08:29.553985+00 2025-10-10 03:08:29.553993+00 f t DESCUENTO 0.00 2 9282 \N +368423 2025-10-10 03:08:29.555089+00 2025-10-10 03:08:29.555095+00 f t TOTAL 46000.00 3 9282 \N +368424 2025-10-10 03:08:29.556069+00 2025-10-10 03:08:29.556074+00 f t ADELANTO 11000.00 4 9282 \N +375216 2025-10-12 20:33:10.143413+00 2025-10-12 20:33:10.143421+00 f t ADELANTO 13000.00 4 9467 \N +375817 2025-10-12 23:32:59.460739+00 2025-10-12 23:32:59.460751+00 f t SUBTOTAL 46000.00 1 9477 \N +375818 2025-10-12 23:32:59.463122+00 2025-10-12 23:32:59.463163+00 f t DESCUENTO 0.00 2 9477 \N +375819 2025-10-12 23:32:59.464926+00 2025-10-12 23:32:59.464937+00 f t TOTAL 46000.00 3 9477 \N +375820 2025-10-12 23:32:59.466372+00 2025-10-12 23:32:59.466383+00 f t ADELANTO 11000.00 4 9477 \N +368485 2025-10-10 05:13:00.981642+00 2025-10-10 05:13:00.981649+00 f t SUBTOTAL 46000.00 1 9283 \N +368486 2025-10-10 05:13:00.983095+00 2025-10-10 05:13:00.983101+00 f t DESCUENTO 0.00 2 9283 \N +368487 2025-10-10 05:13:00.984177+00 2025-10-10 05:13:00.984182+00 f t TOTAL 46000.00 3 9283 \N +368488 2025-10-10 05:13:00.98528+00 2025-10-10 05:13:00.985285+00 f t ADELANTO 11000.00 4 9283 \N +368513 2025-10-10 07:41:59.124195+00 2025-10-10 07:41:59.124206+00 f t SUBTOTAL 55000.00 1 9284 \N +368514 2025-10-10 07:41:59.125938+00 2025-10-10 07:41:59.125948+00 f t DESCUENTO 0.00 2 9284 \N +368515 2025-10-10 07:41:59.127352+00 2025-10-10 07:41:59.127361+00 f t TOTAL 55000.00 3 9284 \N +368516 2025-10-10 07:41:59.129321+00 2025-10-10 07:41:59.129328+00 f t ADELANTO 11000.00 4 9284 \N +371129 2025-10-10 21:25:41.1262+00 2025-10-10 21:25:41.126209+00 f t SUBTOTAL 0.00 1 9346 \N +371130 2025-10-10 21:25:41.128082+00 2025-10-10 21:25:41.12809+00 f t DESCUENTO 0.00 2 9346 \N +371131 2025-10-10 21:25:41.129436+00 2025-10-10 21:25:41.129441+00 f t TOTAL 0.00 3 9346 \N +371132 2025-10-10 21:25:41.130358+00 2025-10-10 21:25:41.130364+00 f t ADELANTO 0.00 4 9346 \N +388641 2025-10-16 23:25:48.985135+00 2025-10-16 23:25:48.985145+00 f t SUBTOTAL 0.00 1 9838 \N +388642 2025-10-16 23:25:48.987065+00 2025-10-16 23:25:48.987073+00 f t DESCUENTO 0.00 2 9838 \N +388643 2025-10-16 23:25:48.98834+00 2025-10-16 23:25:48.988347+00 f t TOTAL 0.00 3 9838 \N +388644 2025-10-16 23:25:48.989633+00 2025-10-16 23:25:48.98964+00 f t ADELANTO 0.00 4 9838 \N +380169 2025-10-14 00:09:55.636916+00 2025-10-14 00:09:55.636925+00 f t SUBTOTAL 78000.00 1 9585 \N +380170 2025-10-14 00:09:55.638823+00 2025-10-14 00:09:55.638831+00 f t DESCUENTO 0.00 2 9585 \N +380171 2025-10-14 00:09:55.64009+00 2025-10-14 00:09:55.640096+00 f t TOTAL 78000.00 3 9585 \N +380172 2025-10-14 00:09:55.641205+00 2025-10-14 00:09:55.64121+00 f t ADELANTO 13000.00 4 9585 \N +380617 2025-10-14 02:53:43.946764+00 2025-10-14 02:53:43.946773+00 f t SUBTOTAL 54000.00 1 9595 \N +380618 2025-10-14 02:53:43.948769+00 2025-10-14 02:53:43.948777+00 f t DESCUENTO 0.00 2 9595 \N +380619 2025-10-14 02:53:43.950277+00 2025-10-14 02:53:43.950284+00 f t TOTAL 54000.00 3 9595 \N +380620 2025-10-14 02:53:43.951604+00 2025-10-14 02:53:43.951613+00 f t ADELANTO 13500.00 4 9595 \N +372465 2025-10-11 14:13:06.638696+00 2025-10-11 14:13:06.638713+00 f t SUBTOTAL 0.00 1 9386 \N +372466 2025-10-11 14:13:06.641988+00 2025-10-11 14:13:06.641998+00 f t DESCUENTO 0.00 2 9386 \N +372467 2025-10-11 14:13:06.64343+00 2025-10-11 14:13:06.643436+00 f t TOTAL 0.00 3 9386 \N +372468 2025-10-11 14:13:06.644647+00 2025-10-11 14:13:06.644652+00 f t ADELANTO 0.00 4 9386 \N +368573 2025-10-10 08:21:59.610134+00 2025-10-10 08:21:59.610144+00 f t SUBTOTAL 55000.00 1 9285 \N +368574 2025-10-10 08:21:59.611945+00 2025-10-10 08:21:59.611952+00 f t DESCUENTO 0.00 2 9285 \N +368575 2025-10-10 08:21:59.613184+00 2025-10-10 08:21:59.613189+00 f t TOTAL 55000.00 3 9285 \N +368576 2025-10-10 08:21:59.614155+00 2025-10-10 08:21:59.61416+00 f t ADELANTO 11000.00 4 9285 \N +381493 2025-10-14 15:00:57.998415+00 2025-10-14 15:00:57.998427+00 f t SUBTOTAL 87400.00 1 9616 \N +381494 2025-10-14 15:00:58.001049+00 2025-10-14 15:00:58.001061+00 f t DESCUENTO 0.00 2 9616 \N +381495 2025-10-14 15:00:58.002675+00 2025-10-14 15:00:58.002682+00 f t TOTAL 87400.00 3 9616 \N +381496 2025-10-14 15:00:58.0043+00 2025-10-14 15:00:58.004309+00 f t ADELANTO 46900.00 4 9616 \N +382097 2025-10-14 20:22:52.278417+00 2025-10-14 20:22:52.278425+00 f t SUBTOTAL 0.00 1 9644 \N +382098 2025-10-14 20:22:52.279624+00 2025-10-14 20:22:52.279629+00 f t DESCUENTO 0.00 2 9644 \N +382099 2025-10-14 20:22:52.280778+00 2025-10-14 20:22:52.280784+00 f t TOTAL 0.00 3 9644 \N +382100 2025-10-14 20:22:52.281631+00 2025-10-14 20:22:52.281638+00 f t ADELANTO 0.00 4 9644 \N +373721 2025-10-12 09:41:29.141469+00 2025-10-12 09:41:29.141478+00 f t SUBTOTAL 0.00 1 9426 \N +373722 2025-10-12 09:41:29.142711+00 2025-10-12 09:41:29.142717+00 f t DESCUENTO 0.00 2 9426 \N +373723 2025-10-12 09:41:29.14383+00 2025-10-12 09:41:29.143836+00 f t TOTAL 0.00 3 9426 \N +373724 2025-10-12 09:41:29.144984+00 2025-10-12 09:41:29.144989+00 f t ADELANTO 0.00 4 9426 \N +373813 2025-10-12 11:23:05.618109+00 2025-10-12 11:23:05.61812+00 f t SUBTOTAL 55000.00 1 9428 \N +373814 2025-10-12 11:23:05.620172+00 2025-10-12 11:23:05.62018+00 f t DESCUENTO 0.00 2 9428 \N +373815 2025-10-12 11:23:05.621534+00 2025-10-12 11:23:05.62154+00 f t TOTAL 55000.00 3 9428 \N +373816 2025-10-12 11:23:05.622979+00 2025-10-12 11:23:05.622986+00 f t ADELANTO 11000.00 4 9428 \N +373917 2025-10-12 12:42:35.82691+00 2025-10-12 12:42:35.826923+00 f t SUBTOTAL 55000.00 1 9433 \N +373918 2025-10-12 12:42:35.828805+00 2025-10-12 12:42:35.828815+00 f t DESCUENTO 0.00 2 9433 \N +373919 2025-10-12 12:42:35.830368+00 2025-10-12 12:42:35.830378+00 f t TOTAL 55000.00 3 9433 \N +373920 2025-10-12 12:42:35.831882+00 2025-10-12 12:42:35.831892+00 f t ADELANTO 11000.00 4 9433 \N +368653 2025-10-10 09:04:53.58487+00 2025-10-10 09:04:53.58488+00 f t SUBTOTAL 66900.00 1 9286 \N +368654 2025-10-10 09:04:53.587277+00 2025-10-10 09:04:53.587285+00 f t DESCUENTO 0.00 2 9286 \N +368655 2025-10-10 09:04:53.59017+00 2025-10-10 09:04:53.59018+00 f t TOTAL 66900.00 3 9286 \N +368656 2025-10-10 09:04:53.591644+00 2025-10-10 09:04:53.591655+00 f t ADELANTO 26400.00 4 9286 \N +368697 2025-10-10 10:24:53.563048+00 2025-10-10 10:24:53.563057+00 f t SUBTOTAL 0.00 1 9288 \N +368698 2025-10-10 10:24:53.564997+00 2025-10-10 10:24:53.565004+00 f t DESCUENTO 0.00 2 9288 \N +368699 2025-10-10 10:24:53.566234+00 2025-10-10 10:24:53.56624+00 f t TOTAL 0.00 3 9288 \N +368700 2025-10-10 10:24:53.5673+00 2025-10-10 10:24:53.567305+00 f t ADELANTO 0.00 4 9288 \N +383909 2025-10-15 14:44:28.136729+00 2025-10-15 14:44:28.136742+00 f t SUBTOTAL 54000.00 1 9692 \N +383910 2025-10-15 14:44:28.138828+00 2025-10-15 14:44:28.138839+00 f t DESCUENTO 0.00 2 9692 \N +383911 2025-10-15 14:44:28.140361+00 2025-10-15 14:44:28.14037+00 f t TOTAL 54000.00 3 9692 \N +383912 2025-10-15 14:44:28.142083+00 2025-10-15 14:44:28.142092+00 f t ADELANTO 13500.00 4 9692 \N +368725 2025-10-10 10:27:26.87283+00 2025-10-10 10:27:26.872837+00 f t SUBTOTAL 55000.00 1 9287 \N +368726 2025-10-10 10:27:26.874246+00 2025-10-10 10:27:26.874251+00 f t DESCUENTO 0.00 2 9287 \N +368727 2025-10-10 10:27:26.875289+00 2025-10-10 10:27:26.875295+00 f t TOTAL 55000.00 3 9287 \N +368728 2025-10-10 10:27:26.876264+00 2025-10-10 10:27:26.876271+00 f t ADELANTO 11000.00 4 9287 \N +368733 2025-10-10 10:49:45.004868+00 2025-10-10 10:49:45.004878+00 f t SUBTOTAL 0.00 1 9289 \N +368734 2025-10-10 10:49:45.006394+00 2025-10-10 10:49:45.006404+00 f t DESCUENTO 0.00 2 9289 \N +368735 2025-10-10 10:49:45.007727+00 2025-10-10 10:49:45.007734+00 f t TOTAL 0.00 3 9289 \N +368736 2025-10-10 10:49:45.009152+00 2025-10-10 10:49:45.009158+00 f t ADELANTO 0.00 4 9289 \N +375961 2025-10-13 01:40:31.840395+00 2025-10-13 01:40:31.840408+00 f t SUBTOTAL 78000.00 1 9482 \N +375962 2025-10-13 01:40:31.842829+00 2025-10-13 01:40:31.842839+00 f t DESCUENTO 0.00 2 9482 \N +375963 2025-10-13 01:40:31.846898+00 2025-10-13 01:40:31.846913+00 f t TOTAL 78000.00 3 9482 \N +375964 2025-10-13 01:40:31.848882+00 2025-10-13 01:40:31.848892+00 f t ADELANTO 21500.00 4 9482 \N +368793 2025-10-10 10:51:54.896167+00 2025-10-10 10:51:54.896177+00 f t SUBTOTAL 0.00 1 9290 \N +368794 2025-10-10 10:51:54.897891+00 2025-10-10 10:51:54.897898+00 f t DESCUENTO 0.00 2 9290 \N +368795 2025-10-10 10:51:54.898993+00 2025-10-10 10:51:54.899003+00 f t TOTAL 0.00 3 9290 \N +368796 2025-10-10 10:51:54.900222+00 2025-10-10 10:51:54.900228+00 f t ADELANTO 0.00 4 9290 \N +368801 2025-10-10 11:16:17.48694+00 2025-10-10 11:16:17.486952+00 f t SUBTOTAL 0.00 1 9291 \N +368802 2025-10-10 11:16:17.488965+00 2025-10-10 11:16:17.488976+00 f t DESCUENTO 0.00 2 9291 \N +368803 2025-10-10 11:16:17.490598+00 2025-10-10 11:16:17.490609+00 f t TOTAL 0.00 3 9291 \N +368804 2025-10-10 11:16:17.49196+00 2025-10-10 11:16:17.491969+00 f t ADELANTO 0.00 4 9291 \N +385181 2025-10-15 20:52:03.055922+00 2025-10-15 20:52:03.055931+00 f t SUBTOTAL 70000.00 1 9732 \N +385182 2025-10-15 20:52:03.057753+00 2025-10-15 20:52:03.057761+00 f t DESCUENTO 0.00 2 9732 \N +385183 2025-10-15 20:52:03.059241+00 2025-10-15 20:52:03.059249+00 f t TOTAL 70000.00 3 9732 \N +385184 2025-10-15 20:52:03.060441+00 2025-10-15 20:52:03.060447+00 f t ADELANTO 19000.00 4 9732 \N +388469 2025-10-16 23:10:26.081397+00 2025-10-16 23:10:26.081406+00 f t SUBTOTAL 55000.00 1 9834 \N +388470 2025-10-16 23:10:26.08352+00 2025-10-16 23:10:26.083529+00 f t DESCUENTO 0.00 2 9834 \N +388471 2025-10-16 23:10:26.084963+00 2025-10-16 23:10:26.08497+00 f t TOTAL 55000.00 3 9834 \N +388472 2025-10-16 23:10:26.086165+00 2025-10-16 23:10:26.086171+00 f t ADELANTO 11000.00 4 9834 \N +371465 2025-10-10 23:45:32.884989+00 2025-10-10 23:45:32.884997+00 f t SUBTOTAL 55000.00 1 9353 \N +371466 2025-10-10 23:45:32.886766+00 2025-10-10 23:45:32.886773+00 f t DESCUENTO 0.00 2 9353 \N +371467 2025-10-10 23:45:32.888+00 2025-10-10 23:45:32.888007+00 f t TOTAL 55000.00 3 9353 \N +371468 2025-10-10 23:45:32.889028+00 2025-10-10 23:45:32.889033+00 f t ADELANTO 11000.00 4 9353 \N +371605 2025-10-11 00:01:28.821903+00 2025-10-11 00:01:28.821912+00 f t SUBTOTAL 46000.00 1 9363 \N +371606 2025-10-11 00:01:28.823658+00 2025-10-11 00:01:28.823664+00 f t DESCUENTO 0.00 2 9363 \N +371607 2025-10-11 00:01:28.82493+00 2025-10-11 00:01:28.824937+00 f t TOTAL 46000.00 3 9363 \N +371608 2025-10-11 00:01:28.82618+00 2025-10-11 00:01:28.826186+00 f t ADELANTO 11000.00 4 9363 \N +381141 2025-10-14 13:46:25.73252+00 2025-10-14 13:46:25.732533+00 f t SUBTOTAL 0.00 1 9608 \N +381142 2025-10-14 13:46:25.735333+00 2025-10-14 13:46:25.735343+00 f t DESCUENTO 0.00 2 9608 \N +381143 2025-10-14 13:46:25.736906+00 2025-10-14 13:46:25.736914+00 f t TOTAL 0.00 3 9608 \N +381144 2025-10-14 13:46:25.738216+00 2025-10-14 13:46:25.738224+00 f t ADELANTO 0.00 4 9608 \N +368877 2025-10-10 11:39:23.93026+00 2025-10-10 11:39:23.930269+00 f t SUBTOTAL 55000.00 1 9292 \N +368878 2025-10-10 11:39:23.931701+00 2025-10-10 11:39:23.931707+00 f t DESCUENTO 0.00 2 9292 \N +368879 2025-10-10 11:39:23.932849+00 2025-10-10 11:39:23.932855+00 f t TOTAL 55000.00 3 9292 \N +368880 2025-10-10 11:39:23.933774+00 2025-10-10 11:39:23.933779+00 f t ADELANTO 11000.00 4 9292 \N +373105 2025-10-11 19:30:47.48702+00 2025-10-11 19:30:47.487028+00 f t SUBTOTAL 55000.00 1 9403 \N +373106 2025-10-11 19:30:47.488715+00 2025-10-11 19:30:47.488723+00 f t DESCUENTO 0.00 2 9403 \N +373107 2025-10-11 19:30:47.490057+00 2025-10-11 19:30:47.490065+00 f t TOTAL 55000.00 3 9403 \N +373108 2025-10-11 19:30:47.491355+00 2025-10-11 19:30:47.491362+00 f t ADELANTO 11000.00 4 9403 \N +381501 2025-10-14 15:04:23.445985+00 2025-10-14 15:04:23.445994+00 f t SUBTOTAL 0.00 1 9617 \N +381502 2025-10-14 15:04:23.4475+00 2025-10-14 15:04:23.447508+00 f t DESCUENTO 0.00 2 9617 \N +381503 2025-10-14 15:04:23.448759+00 2025-10-14 15:04:23.448765+00 f t TOTAL 0.00 3 9617 \N +381504 2025-10-14 15:04:23.449799+00 2025-10-14 15:04:23.449804+00 f t ADELANTO 0.00 4 9617 \N +381985 2025-10-14 18:44:54.539435+00 2025-10-14 18:44:54.539444+00 f t SUBTOTAL 68000.00 1 9639 \N +381986 2025-10-14 18:44:54.541026+00 2025-10-14 18:44:54.541034+00 f t DESCUENTO 0.00 2 9639 \N +381987 2025-10-14 18:44:54.542663+00 2025-10-14 18:44:54.542669+00 f t TOTAL 68000.00 3 9639 \N +381988 2025-10-14 18:44:54.543813+00 2025-10-14 18:44:54.543819+00 f t ADELANTO 13000.00 4 9639 \N +373821 2025-10-12 12:04:50.163328+00 2025-10-12 12:04:50.163337+00 f t SUBTOTAL 0.00 1 9429 \N +373822 2025-10-12 12:04:50.165417+00 2025-10-12 12:04:50.165426+00 f t DESCUENTO 0.00 2 9429 \N +373823 2025-10-12 12:04:50.166723+00 2025-10-12 12:04:50.16673+00 f t TOTAL 0.00 3 9429 \N +373824 2025-10-12 12:04:50.168126+00 2025-10-12 12:04:50.168132+00 f t ADELANTO 0.00 4 9429 \N +374017 2025-10-12 13:53:13.421697+00 2025-10-12 13:53:13.421706+00 f t SUBTOTAL 46000.00 1 9436 \N +374018 2025-10-12 13:53:13.42373+00 2025-10-12 13:53:13.423738+00 f t DESCUENTO 0.00 2 9436 \N +374019 2025-10-12 13:53:13.425072+00 2025-10-12 13:53:13.425079+00 f t TOTAL 46000.00 3 9436 \N +374020 2025-10-12 13:53:13.426427+00 2025-10-12 13:53:13.426434+00 f t ADELANTO 11000.00 4 9436 \N +368961 2025-10-10 12:16:38.575269+00 2025-10-10 12:16:38.57528+00 f t SUBTOTAL 54000.00 1 9294 \N +368962 2025-10-10 12:16:38.577247+00 2025-10-10 12:16:38.577255+00 f t DESCUENTO 0.00 2 9294 \N +368963 2025-10-10 12:16:38.578383+00 2025-10-10 12:16:38.578388+00 f t TOTAL 54000.00 3 9294 \N +368964 2025-10-10 12:16:38.579446+00 2025-10-10 12:16:38.579451+00 f t ADELANTO 13500.00 4 9294 \N +368965 2025-10-10 12:16:40.32675+00 2025-10-10 12:16:40.326758+00 f t SUBTOTAL 75000.00 1 9293 \N +368966 2025-10-10 12:16:40.328544+00 2025-10-10 12:16:40.32855+00 f t DESCUENTO 0.00 2 9293 \N +368967 2025-10-10 12:16:40.330212+00 2025-10-10 12:16:40.330218+00 f t TOTAL 75000.00 3 9293 \N +368968 2025-10-10 12:16:40.332143+00 2025-10-10 12:16:40.332149+00 f t ADELANTO 15000.00 4 9293 \N +368977 2025-10-10 12:26:21.625889+00 2025-10-10 12:26:21.625899+00 f t SUBTOTAL 55000.00 1 9295 \N +368978 2025-10-10 12:26:21.627617+00 2025-10-10 12:26:21.627627+00 f t DESCUENTO 0.00 2 9295 \N +368979 2025-10-10 12:26:21.62897+00 2025-10-10 12:26:21.628976+00 f t TOTAL 55000.00 3 9295 \N +368980 2025-10-10 12:26:21.629973+00 2025-10-10 12:26:21.629978+00 f t ADELANTO 11000.00 4 9295 \N +374717 2025-10-12 17:03:18.690678+00 2025-10-12 17:03:18.690686+00 f t SUBTOTAL 78000.00 1 9449 \N +374718 2025-10-12 17:03:18.692757+00 2025-10-12 17:03:18.692816+00 f t DESCUENTO 0.00 2 9449 \N +374719 2025-10-12 17:03:18.694277+00 2025-10-12 17:03:18.694284+00 f t TOTAL 78000.00 3 9449 \N +374720 2025-10-12 17:03:18.69548+00 2025-10-12 17:03:18.695486+00 f t ADELANTO 13000.00 4 9449 \N +375061 2025-10-12 19:59:24.979369+00 2025-10-12 19:59:24.97938+00 f t SUBTOTAL 78000.00 1 9460 \N +375062 2025-10-12 19:59:24.981567+00 2025-10-12 19:59:24.981578+00 f t DESCUENTO 0.00 2 9460 \N +375063 2025-10-12 19:59:24.983156+00 2025-10-12 19:59:24.983167+00 f t TOTAL 78000.00 3 9460 \N +375064 2025-10-12 19:59:24.984419+00 2025-10-12 19:59:24.984427+00 f t ADELANTO 21500.00 4 9460 \N +375149 2025-10-12 20:21:04.057915+00 2025-10-12 20:21:04.057924+00 f t SUBTOTAL 46000.00 1 9465 \N +375150 2025-10-12 20:21:04.059696+00 2025-10-12 20:21:04.059703+00 f t DESCUENTO 0.00 2 9465 \N +375151 2025-10-12 20:21:04.061567+00 2025-10-12 20:21:04.061573+00 f t TOTAL 46000.00 3 9465 \N +375152 2025-10-12 20:21:04.062508+00 2025-10-12 20:21:04.062513+00 f t ADELANTO 11000.00 4 9465 \N +383517 2025-10-15 11:02:23.611626+00 2025-10-15 11:02:23.611639+00 f t SUBTOTAL 53700.00 1 9679 \N +383518 2025-10-15 11:02:23.613619+00 2025-10-15 11:02:23.613627+00 f t DESCUENTO 0.00 2 9679 \N +383519 2025-10-15 11:02:23.615048+00 2025-10-15 11:02:23.615056+00 f t TOTAL 53700.00 3 9679 \N +383520 2025-10-15 11:02:23.616402+00 2025-10-15 11:02:23.61641+00 f t ADELANTO 13200.00 4 9679 \N +376261 2025-10-13 02:50:31.946229+00 2025-10-13 02:50:31.946238+00 f t SUBTOTAL 0.00 1 9487 \N +376262 2025-10-13 02:50:31.948046+00 2025-10-13 02:50:31.948053+00 f t DESCUENTO 0.00 2 9487 \N +376263 2025-10-13 02:50:31.949032+00 2025-10-13 02:50:31.949037+00 f t TOTAL 0.00 3 9487 \N +376264 2025-10-13 02:50:31.950145+00 2025-10-13 02:50:31.950158+00 f t ADELANTO 0.00 4 9487 \N +369089 2025-10-10 12:32:32.884848+00 2025-10-10 12:32:32.884856+00 f t SUBTOTAL 55000.00 1 9296 \N +369090 2025-10-10 12:32:32.886644+00 2025-10-10 12:32:32.886651+00 f t DESCUENTO 0.00 2 9296 \N +369091 2025-10-10 12:32:32.887801+00 2025-10-10 12:32:32.887813+00 f t TOTAL 55000.00 3 9296 \N +369092 2025-10-10 12:32:32.888806+00 2025-10-10 12:32:32.888811+00 f t ADELANTO 11000.00 4 9296 \N +369101 2025-10-10 12:51:17.28527+00 2025-10-10 12:51:17.285279+00 f t SUBTOTAL 121000.00 1 9297 \N +369102 2025-10-10 12:51:17.287087+00 2025-10-10 12:51:17.287096+00 f t DESCUENTO 0.00 2 9297 \N +369103 2025-10-10 12:51:17.2883+00 2025-10-10 12:51:17.288306+00 f t TOTAL 121000.00 3 9297 \N +369104 2025-10-10 12:51:17.28936+00 2025-10-10 12:51:17.289366+00 f t ADELANTO 26000.00 4 9297 \N +388473 2025-10-16 23:11:21.552729+00 2025-10-16 23:11:21.552739+00 f t SUBTOTAL 0.00 1 9833 \N +388474 2025-10-16 23:11:21.559696+00 2025-10-16 23:11:21.559706+00 f t DESCUENTO 0.00 2 9833 \N +388476 2025-10-16 23:11:21.561874+00 2025-10-16 23:11:21.561883+00 f t TOTAL 0.00 3 9833 \N +388478 2025-10-16 23:11:21.563742+00 2025-10-16 23:11:21.563749+00 f t ADELANTO 0.00 4 9833 \N +435558 2025-10-30 13:42:31.536605+00 2025-10-30 13:42:31.536612+00 f t COSTO_SERVICIO 0.00 2 10970 \N +435559 2025-10-30 13:42:31.537598+00 2025-10-30 13:42:31.537603+00 f t DESCUENTO 0.00 3 10970 \N +435560 2025-10-30 13:42:31.538452+00 2025-10-30 13:42:31.538457+00 f t TOTAL 0.00 4 10970 \N +435561 2025-10-30 13:42:31.53943+00 2025-10-30 13:42:31.539435+00 f t ADELANTO 0.00 5 10970 \N +369129 2025-10-10 12:56:57.741583+00 2025-10-10 12:56:57.741591+00 f t SUBTOTAL 121000.00 1 9298 \N +369130 2025-10-10 12:56:57.743403+00 2025-10-10 12:56:57.743411+00 f t DESCUENTO 0.00 2 9298 \N +369131 2025-10-10 12:56:57.745219+00 2025-10-10 12:56:57.745229+00 f t TOTAL 121000.00 3 9298 \N +369132 2025-10-10 12:56:57.746557+00 2025-10-10 12:56:57.746563+00 f t ADELANTO 26000.00 4 9298 \N +389053 2025-10-17 00:48:26.221811+00 2025-10-17 00:48:26.22182+00 f t SUBTOTAL 92000.00 1 9848 \N +389054 2025-10-17 00:48:26.223555+00 2025-10-17 00:48:26.223565+00 f t DESCUENTO 0.00 2 9848 \N +389055 2025-10-17 00:48:26.225194+00 2025-10-17 00:48:26.225201+00 f t TOTAL 92000.00 3 9848 \N +389056 2025-10-17 00:48:26.226413+00 2025-10-17 00:48:26.226421+00 f t ADELANTO 22000.00 4 9848 \N +369141 2025-10-10 13:01:09.845377+00 2025-10-10 13:01:09.845384+00 f t SUBTOTAL 80000.00 1 9299 \N +369142 2025-10-10 13:01:09.846789+00 2025-10-10 13:01:09.846795+00 f t DESCUENTO 0.00 2 9299 \N +369143 2025-10-10 13:01:09.847886+00 2025-10-10 13:01:09.847891+00 f t TOTAL 80000.00 3 9299 \N +369144 2025-10-10 13:01:09.848798+00 2025-10-10 13:01:09.848802+00 f t ADELANTO 12000.00 4 9299 \N +369149 2025-10-10 13:02:09.448668+00 2025-10-10 13:02:09.44868+00 f t SUBTOTAL 0.00 1 9300 \N +369150 2025-10-10 13:02:09.450297+00 2025-10-10 13:02:09.450307+00 f t DESCUENTO 0.00 2 9300 \N +369151 2025-10-10 13:02:09.451821+00 2025-10-10 13:02:09.45183+00 f t TOTAL 0.00 3 9300 \N +369152 2025-10-10 13:02:09.452998+00 2025-10-10 13:02:09.453005+00 f t ADELANTO 0.00 4 9300 \N +373113 2025-10-11 19:51:08.643468+00 2025-10-11 19:51:08.643477+00 f t SUBTOTAL 0.00 1 9404 \N +373114 2025-10-11 19:51:08.644764+00 2025-10-11 19:51:08.64477+00 f t DESCUENTO 0.00 2 9404 \N +373115 2025-10-11 19:51:08.645731+00 2025-10-11 19:51:08.645736+00 f t TOTAL 0.00 3 9404 \N +373116 2025-10-11 19:51:08.646586+00 2025-10-11 19:51:08.646591+00 f t ADELANTO 0.00 4 9404 \N +369209 2025-10-10 13:04:59.45317+00 2025-10-10 13:04:59.453184+00 f t SUBTOTAL 61700.00 1 9301 \N +369210 2025-10-10 13:04:59.45547+00 2025-10-10 13:04:59.455477+00 f t DESCUENTO 0.00 2 9301 \N +369211 2025-10-10 13:04:59.456741+00 2025-10-10 13:04:59.456748+00 f t TOTAL 61700.00 3 9301 \N +369212 2025-10-10 13:04:59.457781+00 2025-10-10 13:04:59.457786+00 f t ADELANTO 15700.00 4 9301 \N +369225 2025-10-10 13:05:13.924997+00 2025-10-10 13:05:13.925006+00 f t SUBTOTAL 0.00 1 9303 \N +369226 2025-10-10 13:05:13.926586+00 2025-10-10 13:05:13.926596+00 f t DESCUENTO 0.00 2 9303 \N +369227 2025-10-10 13:05:13.928145+00 2025-10-10 13:05:13.928155+00 f t TOTAL 0.00 3 9303 \N +369228 2025-10-10 13:05:13.929359+00 2025-10-10 13:05:13.929365+00 f t ADELANTO 0.00 4 9303 \N +373829 2025-10-12 12:23:27.757919+00 2025-10-12 12:23:27.757928+00 f t SUBTOTAL 0.00 1 9430 \N +373830 2025-10-12 12:23:27.759243+00 2025-10-12 12:23:27.759249+00 f t DESCUENTO 0.00 2 9430 \N +373831 2025-10-12 12:23:27.760429+00 2025-10-12 12:23:27.760435+00 f t TOTAL 0.00 3 9430 \N +373832 2025-10-12 12:23:27.762082+00 2025-10-12 12:23:27.76209+00 f t ADELANTO 0.00 4 9430 \N +374025 2025-10-12 13:54:08.193437+00 2025-10-12 13:54:08.193451+00 f t SUBTOTAL 0.00 1 9437 \N +374026 2025-10-12 13:54:08.195244+00 2025-10-12 13:54:08.195252+00 f t DESCUENTO 0.00 2 9437 \N +374027 2025-10-12 13:54:08.19691+00 2025-10-12 13:54:08.196921+00 f t TOTAL 0.00 3 9437 \N +374028 2025-10-12 13:54:08.198322+00 2025-10-12 13:54:08.198331+00 f t ADELANTO 0.00 4 9437 \N +374373 2025-10-12 15:38:22.198736+00 2025-10-12 15:38:22.198745+00 f t SUBTOTAL 46000.00 1 9442 \N +374374 2025-10-12 15:38:22.200777+00 2025-10-12 15:38:22.20079+00 f t DESCUENTO 0.00 2 9442 \N +374375 2025-10-12 15:38:22.202296+00 2025-10-12 15:38:22.202302+00 f t TOTAL 46000.00 3 9442 \N +374376 2025-10-12 15:38:22.20354+00 2025-10-12 15:38:22.203547+00 f t ADELANTO 11000.00 4 9442 \N +369281 2025-10-10 13:06:45.164459+00 2025-10-10 13:06:45.164467+00 f t SUBTOTAL 55000.00 1 9302 \N +369282 2025-10-10 13:06:45.165952+00 2025-10-10 13:06:45.165959+00 f t DESCUENTO 0.00 2 9302 \N +369283 2025-10-10 13:06:45.167023+00 2025-10-10 13:06:45.167029+00 f t TOTAL 55000.00 3 9302 \N +369284 2025-10-10 13:06:45.168037+00 2025-10-10 13:06:45.168042+00 f t ADELANTO 11000.00 4 9302 \N +369297 2025-10-10 13:07:18.419522+00 2025-10-10 13:07:18.419531+00 f t SUBTOTAL 0.00 1 9305 \N +369298 2025-10-10 13:07:18.420798+00 2025-10-10 13:07:18.420805+00 f t DESCUENTO 0.00 2 9305 \N +369299 2025-10-10 13:07:18.421959+00 2025-10-10 13:07:18.421966+00 f t TOTAL 0.00 3 9305 \N +369300 2025-10-10 13:07:18.423016+00 2025-10-10 13:07:18.423021+00 f t ADELANTO 0.00 4 9305 \N +383821 2025-10-15 14:27:09.059283+00 2025-10-15 14:27:09.059293+00 f t SUBTOTAL 0.00 1 9689 \N +383822 2025-10-15 14:27:09.061974+00 2025-10-15 14:27:09.061986+00 f t DESCUENTO 0.00 2 9689 \N +383823 2025-10-15 14:27:09.063728+00 2025-10-15 14:27:09.063735+00 f t TOTAL 0.00 3 9689 \N +383824 2025-10-15 14:27:09.065203+00 2025-10-15 14:27:09.065211+00 f t ADELANTO 0.00 4 9689 \N +369317 2025-10-10 13:07:49.473601+00 2025-10-10 13:07:49.47361+00 f t SUBTOTAL 0.00 1 9306 \N +369318 2025-10-10 13:07:49.475028+00 2025-10-10 13:07:49.475035+00 f t DESCUENTO 0.00 2 9306 \N +369319 2025-10-10 13:07:49.476277+00 2025-10-10 13:07:49.476283+00 f t TOTAL 0.00 3 9306 \N +369320 2025-10-10 13:07:49.477298+00 2025-10-10 13:07:49.477303+00 f t ADELANTO 0.00 4 9306 \N +369329 2025-10-10 13:08:18.289111+00 2025-10-10 13:08:18.28912+00 f t SUBTOTAL 0.00 1 9304 \N +369330 2025-10-10 13:08:18.290976+00 2025-10-10 13:08:18.290987+00 f t DESCUENTO 0.00 2 9304 \N +369331 2025-10-10 13:08:18.292543+00 2025-10-10 13:08:18.29255+00 f t TOTAL 0.00 3 9304 \N +369332 2025-10-10 13:08:18.293639+00 2025-10-10 13:08:18.293645+00 f t ADELANTO 0.00 4 9304 \N +375765 2025-10-12 23:01:46.652803+00 2025-10-12 23:01:46.652811+00 f t SUBTOTAL 55000.00 1 9476 \N +375766 2025-10-12 23:01:46.65455+00 2025-10-12 23:01:46.654557+00 f t DESCUENTO 0.00 2 9476 \N +375767 2025-10-12 23:01:46.655674+00 2025-10-12 23:01:46.655679+00 f t TOTAL 55000.00 3 9476 \N +375768 2025-10-12 23:01:46.656632+00 2025-10-12 23:01:46.656637+00 f t ADELANTO 11000.00 4 9476 \N +369373 2025-10-10 13:14:34.400726+00 2025-10-10 13:14:34.400735+00 f t SUBTOTAL 54000.00 1 9308 \N +369374 2025-10-10 13:14:34.402324+00 2025-10-10 13:14:34.40233+00 f t DESCUENTO 0.00 2 9308 \N +369375 2025-10-10 13:14:34.403428+00 2025-10-10 13:14:34.403433+00 f t TOTAL 54000.00 3 9308 \N +369376 2025-10-10 13:14:34.404502+00 2025-10-10 13:14:34.404507+00 f t ADELANTO 13500.00 4 9308 \N +369385 2025-10-10 13:14:47.238509+00 2025-10-10 13:14:47.238517+00 f t SUBTOTAL 55000.00 1 9307 \N +369386 2025-10-10 13:14:47.240194+00 2025-10-10 13:14:47.240202+00 f t DESCUENTO 0.00 2 9307 \N +369387 2025-10-10 13:14:47.241289+00 2025-10-10 13:14:47.241294+00 f t TOTAL 55000.00 3 9307 \N +369388 2025-10-10 13:14:47.242335+00 2025-10-10 13:14:47.24234+00 f t ADELANTO 11000.00 4 9307 \N +388475 2025-10-16 23:11:21.560401+00 2025-10-16 23:11:21.560409+00 f t SUBTOTAL 0.00 1 9833 \N +388477 2025-10-16 23:11:21.562673+00 2025-10-16 23:11:21.56268+00 f t DESCUENTO 0.00 2 9833 \N +388479 2025-10-16 23:11:21.564314+00 2025-10-16 23:11:21.564321+00 f t TOTAL 0.00 3 9833 \N +388480 2025-10-16 23:11:21.56605+00 2025-10-16 23:11:21.566057+00 f t ADELANTO 0.00 4 9833 \N +380185 2025-10-14 00:15:00.476445+00 2025-10-14 00:15:00.476455+00 f t SUBTOTAL 78000.00 1 9586 \N +380186 2025-10-14 00:15:00.478601+00 2025-10-14 00:15:00.478611+00 f t DESCUENTO 0.00 2 9586 \N +380187 2025-10-14 00:15:00.480405+00 2025-10-14 00:15:00.480415+00 f t TOTAL 78000.00 3 9586 \N +380188 2025-10-14 00:15:00.482052+00 2025-10-14 00:15:00.482061+00 f t ADELANTO 21500.00 4 9586 \N +369429 2025-10-10 13:16:32.830427+00 2025-10-10 13:16:32.830435+00 f t SUBTOTAL 80000.00 1 9309 \N +369430 2025-10-10 13:16:32.832258+00 2025-10-10 13:16:32.832266+00 f t DESCUENTO 0.00 2 9309 \N +369431 2025-10-10 13:16:32.833546+00 2025-10-10 13:16:32.833553+00 f t TOTAL 80000.00 3 9309 \N +369432 2025-10-10 13:16:32.834625+00 2025-10-10 13:16:32.834631+00 f t ADELANTO 12000.00 4 9309 \N +372597 2025-10-11 16:09:48.961173+00 2025-10-11 16:09:48.961183+00 f t SUBTOTAL 206400.00 1 9391 \N +372598 2025-10-11 16:09:48.963483+00 2025-10-11 16:09:48.963491+00 f t DESCUENTO 0.00 2 9391 \N +372599 2025-10-11 16:09:48.964901+00 2025-10-11 16:09:48.96491+00 f t TOTAL 206400.00 3 9391 \N +372600 2025-10-11 16:09:48.966189+00 2025-10-11 16:09:48.966195+00 f t ADELANTO 70900.00 4 9391 \N +372805 2025-10-11 17:43:13.764006+00 2025-10-11 17:43:13.764025+00 f t SUBTOTAL 70000.00 1 9395 \N +372806 2025-10-11 17:43:13.765952+00 2025-10-11 17:43:13.76596+00 f t DESCUENTO 0.00 2 9395 \N +372807 2025-10-11 17:43:13.767447+00 2025-10-11 17:43:13.767454+00 f t TOTAL 70000.00 3 9395 \N +369457 2025-10-10 13:18:57.691601+00 2025-10-10 13:18:57.691612+00 f t SUBTOTAL 30000.00 1 9310 \N +369458 2025-10-10 13:18:57.693364+00 2025-10-10 13:18:57.693373+00 f t DESCUENTO 0.00 2 9310 \N +369459 2025-10-10 13:18:57.694699+00 2025-10-10 13:18:57.694709+00 f t TOTAL 30000.00 3 9310 \N +369460 2025-10-10 13:18:57.69611+00 2025-10-10 13:18:57.696118+00 f t ADELANTO 30000.00 4 9310 \N +372808 2025-10-11 17:43:13.76906+00 2025-10-11 17:43:13.76907+00 f t ADELANTO 19000.00 4 9395 \N +381513 2025-10-14 15:10:20.61894+00 2025-10-14 15:10:20.618949+00 f t SUBTOTAL 55000.00 1 9618 \N +381514 2025-10-14 15:10:20.620776+00 2025-10-14 15:10:20.620782+00 f t DESCUENTO 0.00 2 9618 \N +381515 2025-10-14 15:10:20.621996+00 2025-10-14 15:10:20.622002+00 f t TOTAL 55000.00 3 9618 \N +369469 2025-10-10 13:29:58.601854+00 2025-10-10 13:29:58.601862+00 f t SUBTOTAL 78000.00 1 9311 \N +369470 2025-10-10 13:29:58.60332+00 2025-10-10 13:29:58.603328+00 f t DESCUENTO 0.00 2 9311 \N +369471 2025-10-10 13:29:58.604639+00 2025-10-10 13:29:58.604647+00 f t TOTAL 78000.00 3 9311 \N +369472 2025-10-10 13:29:58.605717+00 2025-10-10 13:29:58.605722+00 f t ADELANTO 13000.00 4 9311 \N +381516 2025-10-14 15:10:20.623024+00 2025-10-14 15:10:20.62303+00 f t ADELANTO 11000.00 4 9618 \N +373121 2025-10-11 20:12:48.998157+00 2025-10-11 20:12:48.998166+00 f t SUBTOTAL 0.00 1 9405 \N +373122 2025-10-11 20:12:48.999624+00 2025-10-11 20:12:48.999633+00 f t DESCUENTO 0.00 2 9405 \N +373123 2025-10-11 20:12:49.000909+00 2025-10-11 20:12:49.000916+00 f t TOTAL 0.00 3 9405 \N +373124 2025-10-11 20:12:49.00206+00 2025-10-11 20:12:49.002066+00 f t ADELANTO 0.00 4 9405 \N +373237 2025-10-12 00:02:07.744236+00 2025-10-12 00:02:07.744246+00 f t SUBTOTAL 46000.00 1 9410 \N +373238 2025-10-12 00:02:07.746545+00 2025-10-12 00:02:07.746556+00 f t DESCUENTO 0.00 2 9410 \N +373239 2025-10-12 00:02:07.748233+00 2025-10-12 00:02:07.74824+00 f t TOTAL 46000.00 3 9410 \N +373240 2025-10-12 00:02:07.74957+00 2025-10-12 00:02:07.749577+00 f t ADELANTO 11000.00 4 9410 \N +373837 2025-10-12 12:33:32.949174+00 2025-10-12 12:33:32.949183+00 f t SUBTOTAL 0.00 1 9431 \N +373838 2025-10-12 12:33:32.950706+00 2025-10-12 12:33:32.950713+00 f t DESCUENTO 0.00 2 9431 \N +373839 2025-10-12 12:33:32.951685+00 2025-10-12 12:33:32.951691+00 f t TOTAL 0.00 3 9431 \N +373840 2025-10-12 12:33:32.952576+00 2025-10-12 12:33:32.952581+00 f t ADELANTO 0.00 4 9431 \N +369521 2025-10-10 13:42:52.47903+00 2025-10-10 13:42:52.47904+00 f t SUBTOTAL 46000.00 1 9312 \N +369522 2025-10-10 13:42:52.481034+00 2025-10-10 13:42:52.481044+00 f t DESCUENTO 0.00 2 9312 \N +369523 2025-10-10 13:42:52.482542+00 2025-10-10 13:42:52.48255+00 f t TOTAL 46000.00 3 9312 \N +369524 2025-10-10 13:42:52.484045+00 2025-10-10 13:42:52.484051+00 f t ADELANTO 11000.00 4 9312 \N +374121 2025-10-12 14:45:36.317003+00 2025-10-12 14:45:36.317015+00 f t SUBTOTAL 70000.00 1 9439 \N +374122 2025-10-12 14:45:36.319033+00 2025-10-12 14:45:36.319043+00 f t DESCUENTO 0.00 2 9439 \N +374123 2025-10-12 14:45:36.32058+00 2025-10-12 14:45:36.320591+00 f t TOTAL 70000.00 3 9439 \N +374124 2025-10-12 14:45:36.322026+00 2025-10-12 14:45:36.322036+00 f t ADELANTO 19000.00 4 9439 \N +374981 2025-10-12 19:17:19.868699+00 2025-10-12 19:17:19.868713+00 f t SUBTOTAL 68000.00 1 9456 \N +374982 2025-10-12 19:17:19.871163+00 2025-10-12 19:17:19.871175+00 f t DESCUENTO 0.00 2 9456 \N +374983 2025-10-12 19:17:19.873075+00 2025-10-12 19:17:19.873086+00 f t TOTAL 68000.00 3 9456 \N +374984 2025-10-12 19:17:19.875208+00 2025-10-12 19:17:19.875218+00 f t ADELANTO 13000.00 4 9456 \N +369585 2025-10-10 14:02:52.99457+00 2025-10-10 14:02:52.994578+00 f t SUBTOTAL 0.00 1 9313 \N +369586 2025-10-10 14:02:52.996869+00 2025-10-10 14:02:52.996877+00 f t DESCUENTO 0.00 2 9313 \N +369587 2025-10-10 14:02:52.998325+00 2025-10-10 14:02:52.998333+00 f t TOTAL 0.00 3 9313 \N +369588 2025-10-10 14:02:52.999679+00 2025-10-10 14:02:52.999685+00 f t ADELANTO 0.00 4 9313 \N +384009 2025-10-15 14:48:08.638252+00 2025-10-15 14:48:08.638261+00 f t SUBTOTAL 0.00 1 9693 \N +384010 2025-10-15 14:48:08.640068+00 2025-10-15 14:48:08.640076+00 f t DESCUENTO 0.00 2 9693 \N +384011 2025-10-15 14:48:08.641166+00 2025-10-15 14:48:08.641174+00 f t TOTAL 0.00 3 9693 \N +384012 2025-10-15 14:48:08.642227+00 2025-10-15 14:48:08.642233+00 f t ADELANTO 0.00 4 9693 \N +369613 2025-10-10 14:03:51.112509+00 2025-10-10 14:03:51.112519+00 f t SUBTOTAL 0.00 1 9314 \N +369614 2025-10-10 14:03:51.114535+00 2025-10-10 14:03:51.114541+00 f t DESCUENTO 0.00 2 9314 \N +369615 2025-10-10 14:03:51.115943+00 2025-10-10 14:03:51.11595+00 f t TOTAL 0.00 3 9314 \N +369616 2025-10-10 14:03:51.117067+00 2025-10-10 14:03:51.117073+00 f t ADELANTO 0.00 4 9314 \N +384741 2025-10-15 18:33:57.724575+00 2025-10-15 18:33:57.724587+00 f t SUBTOTAL 0.00 1 9716 \N +384742 2025-10-15 18:33:57.72681+00 2025-10-15 18:33:57.726818+00 f t DESCUENTO 0.00 2 9716 \N +384743 2025-10-15 18:33:57.728601+00 2025-10-15 18:33:57.728607+00 f t TOTAL 0.00 3 9716 \N +384744 2025-10-15 18:33:57.729946+00 2025-10-15 18:33:57.729952+00 f t ADELANTO 0.00 4 9716 \N +369657 2025-10-10 14:33:43.919657+00 2025-10-10 14:33:43.91967+00 f t SUBTOTAL 0.00 1 9315 \N +369658 2025-10-10 14:33:43.922832+00 2025-10-10 14:33:43.922843+00 f t DESCUENTO 0.00 2 9315 \N +369659 2025-10-10 14:33:43.927843+00 2025-10-10 14:33:43.927855+00 f t TOTAL 0.00 3 9315 \N +369660 2025-10-10 14:33:43.933193+00 2025-10-10 14:33:43.933205+00 f t ADELANTO 0.00 4 9315 \N +385345 2025-10-15 21:32:08.045463+00 2025-10-15 21:32:08.045472+00 f t SUBTOTAL 70000.00 1 9735 \N +385346 2025-10-15 21:32:08.04742+00 2025-10-15 21:32:08.047428+00 f t DESCUENTO 0.00 2 9735 \N +385347 2025-10-15 21:32:08.048749+00 2025-10-15 21:32:08.048757+00 f t TOTAL 70000.00 3 9735 \N +385348 2025-10-15 21:32:08.049999+00 2025-10-15 21:32:08.050005+00 f t ADELANTO 19000.00 4 9735 \N +397405 2025-10-20 01:08:11.424838+00 2025-10-20 01:08:11.424848+00 f t SUBTOTAL 0.00 1 10060 \N +397406 2025-10-20 01:08:11.426368+00 2025-10-20 01:08:11.426377+00 f t DESCUENTO 0.00 2 10060 \N +397407 2025-10-20 01:08:11.427434+00 2025-10-20 01:08:11.42744+00 f t TOTAL 0.00 3 10060 \N +397408 2025-10-20 01:08:11.42838+00 2025-10-20 01:08:11.428386+00 f t ADELANTO 0.00 4 10060 \N +369697 2025-10-10 14:46:24.879441+00 2025-10-10 14:46:24.879453+00 f t SUBTOTAL 54000.00 1 9316 \N +369698 2025-10-10 14:46:24.881025+00 2025-10-10 14:46:24.881031+00 f t DESCUENTO 0.00 2 9316 \N +369699 2025-10-10 14:46:24.882054+00 2025-10-10 14:46:24.88206+00 f t TOTAL 54000.00 3 9316 \N +369700 2025-10-10 14:46:24.883117+00 2025-10-10 14:46:24.883122+00 f t ADELANTO 13500.00 4 9316 \N +369709 2025-10-10 14:51:45.850692+00 2025-10-10 14:51:45.850703+00 f t SUBTOTAL 55000.00 1 9317 \N +369710 2025-10-10 14:51:45.852491+00 2025-10-10 14:51:45.852499+00 f t DESCUENTO 0.00 2 9317 \N +369711 2025-10-10 14:51:45.853857+00 2025-10-10 14:51:45.853863+00 f t TOTAL 55000.00 3 9317 \N +369712 2025-10-10 14:51:45.855003+00 2025-10-10 14:51:45.85501+00 f t ADELANTO 11000.00 4 9317 \N +380193 2025-10-14 00:15:51.56277+00 2025-10-14 00:15:51.562784+00 f t SUBTOTAL 0.00 1 9587 \N +380194 2025-10-14 00:15:51.564116+00 2025-10-14 00:15:51.564124+00 f t DESCUENTO 0.00 2 9587 \N +380195 2025-10-14 00:15:51.565326+00 2025-10-14 00:15:51.565334+00 f t TOTAL 0.00 3 9587 \N +380196 2025-10-14 00:15:51.566411+00 2025-10-14 00:15:51.56642+00 f t ADELANTO 0.00 4 9587 \N +371885 2025-10-11 03:07:37.097793+00 2025-10-11 03:07:37.097802+00 f t SUBTOTAL 121000.00 1 9370 \N +371886 2025-10-11 03:07:37.100266+00 2025-10-11 03:07:37.100274+00 f t DESCUENTO 0.00 2 9370 \N +371887 2025-10-11 03:07:37.101605+00 2025-10-11 03:07:37.101611+00 f t TOTAL 121000.00 3 9370 \N +371888 2025-10-11 03:07:37.102591+00 2025-10-11 03:07:37.102597+00 f t ADELANTO 26000.00 4 9370 \N +380489 2025-10-14 01:16:54.373959+00 2025-10-14 01:16:54.373968+00 f t SUBTOTAL 54000.00 1 9592 \N +380490 2025-10-14 01:16:54.375692+00 2025-10-14 01:16:54.375701+00 f t DESCUENTO 0.00 2 9592 \N +380491 2025-10-14 01:16:54.378147+00 2025-10-14 01:16:54.378156+00 f t TOTAL 54000.00 3 9592 \N +380492 2025-10-14 01:16:54.3804+00 2025-10-14 01:16:54.380408+00 f t ADELANTO 13500.00 4 9592 \N +381273 2025-10-14 14:16:33.607259+00 2025-10-14 14:16:33.607268+00 f t SUBTOTAL 0.00 1 9610 \N +381274 2025-10-14 14:16:33.609582+00 2025-10-14 14:16:33.609591+00 f t DESCUENTO 0.00 2 9610 \N +381275 2025-10-14 14:16:33.611021+00 2025-10-14 14:16:33.61103+00 f t TOTAL 0.00 3 9610 \N +381276 2025-10-14 14:16:33.612476+00 2025-10-14 14:16:33.612484+00 f t ADELANTO 0.00 4 9610 \N +381521 2025-10-14 15:27:00.880227+00 2025-10-14 15:27:00.880236+00 f t SUBTOTAL 0.00 1 9619 \N +381522 2025-10-14 15:27:00.881732+00 2025-10-14 15:27:00.88174+00 f t DESCUENTO 0.00 2 9619 \N +381523 2025-10-14 15:27:00.883046+00 2025-10-14 15:27:00.883053+00 f t TOTAL 0.00 3 9619 \N +381524 2025-10-14 15:27:00.884113+00 2025-10-14 15:27:00.884119+00 f t ADELANTO 0.00 4 9619 \N +369777 2025-10-10 15:07:23.764853+00 2025-10-10 15:07:23.764862+00 f t SUBTOTAL 46000.00 1 9318 \N +369778 2025-10-10 15:07:23.766522+00 2025-10-10 15:07:23.766529+00 f t DESCUENTO 0.00 2 9318 \N +369779 2025-10-10 15:07:23.767681+00 2025-10-10 15:07:23.767686+00 f t TOTAL 46000.00 3 9318 \N +369780 2025-10-10 15:07:23.768681+00 2025-10-10 15:07:23.768686+00 f t ADELANTO 11000.00 4 9318 \N +382313 2025-10-14 20:56:17.768193+00 2025-10-14 20:56:17.768203+00 f t SUBTOTAL 70000.00 1 9648 \N +382314 2025-10-14 20:56:17.770327+00 2025-10-14 20:56:17.770334+00 f t DESCUENTO 0.00 2 9648 \N +382315 2025-10-14 20:56:17.771803+00 2025-10-14 20:56:17.771811+00 f t TOTAL 70000.00 3 9648 \N +382316 2025-10-14 20:56:17.773186+00 2025-10-14 20:56:17.773192+00 f t ADELANTO 19000.00 4 9648 \N +382817 2025-10-15 00:10:03.058936+00 2025-10-15 00:10:03.05895+00 f t SUBTOTAL 23000.00 1 9659 \N +382818 2025-10-15 00:10:03.063602+00 2025-10-15 00:10:03.063616+00 f t DESCUENTO 0.00 2 9659 \N +382819 2025-10-15 00:10:03.066995+00 2025-10-15 00:10:03.067009+00 f t TOTAL 23000.00 3 9659 \N +382820 2025-10-15 00:10:03.071009+00 2025-10-15 00:10:03.071023+00 f t ADELANTO 5500.00 4 9659 \N +383717 2025-10-15 12:41:02.377672+00 2025-10-15 12:41:02.377683+00 f t SUBTOTAL 127500.00 1 9682 \N +383718 2025-10-15 12:41:02.379734+00 2025-10-15 12:41:02.379742+00 f t DESCUENTO 0.00 2 9682 \N +383719 2025-10-15 12:41:02.381313+00 2025-10-15 12:41:02.381321+00 f t TOTAL 127500.00 3 9682 \N +383720 2025-10-15 12:41:02.382849+00 2025-10-15 12:41:02.382856+00 f t ADELANTO 27500.00 4 9682 \N +374897 2025-10-12 18:51:30.767021+00 2025-10-12 18:51:30.767035+00 f t SUBTOTAL 46000.00 1 9453 \N +374898 2025-10-12 18:51:30.769086+00 2025-10-12 18:51:30.769093+00 f t DESCUENTO 0.00 2 9453 \N +374899 2025-10-12 18:51:30.770231+00 2025-10-12 18:51:30.770237+00 f t TOTAL 46000.00 3 9453 \N +374900 2025-10-12 18:51:30.771314+00 2025-10-12 18:51:30.77132+00 f t ADELANTO 11000.00 4 9453 \N +375077 2025-10-12 20:10:18.721905+00 2025-10-12 20:10:18.721917+00 f t SUBTOTAL 78000.00 1 9461 \N +375078 2025-10-12 20:10:18.724374+00 2025-10-12 20:10:18.724386+00 f t DESCUENTO 0.00 2 9461 \N +375079 2025-10-12 20:10:18.72595+00 2025-10-12 20:10:18.725957+00 f t TOTAL 78000.00 3 9461 \N +375080 2025-10-12 20:10:18.727027+00 2025-10-12 20:10:18.727032+00 f t ADELANTO 21500.00 4 9461 \N +369881 2025-10-10 15:16:01.487451+00 2025-10-10 15:16:01.487459+00 f t SUBTOTAL 78000.00 1 9319 \N +369882 2025-10-10 15:16:01.489592+00 2025-10-10 15:16:01.489599+00 f t DESCUENTO 0.00 2 9319 \N +369883 2025-10-10 15:16:01.491156+00 2025-10-10 15:16:01.491162+00 f t TOTAL 78000.00 3 9319 \N +369884 2025-10-10 15:16:01.492795+00 2025-10-10 15:16:01.492805+00 f t ADELANTO 21500.00 4 9319 \N +384597 2025-10-15 17:36:17.83156+00 2025-10-15 17:36:17.831574+00 f t SUBTOTAL 115000.00 1 9712 \N +384598 2025-10-15 17:36:17.83476+00 2025-10-15 17:36:17.834773+00 f t DESCUENTO 0.00 2 9712 \N +384599 2025-10-15 17:36:17.83683+00 2025-10-15 17:36:17.836842+00 f t TOTAL 115000.00 3 9712 \N +384600 2025-10-15 17:36:17.838579+00 2025-10-15 17:36:17.838587+00 f t ADELANTO 25000.00 4 9712 \N +375505 2025-10-12 21:23:39.507413+00 2025-10-12 21:23:39.507422+00 f t SUBTOTAL 55000.00 1 9470 \N +375506 2025-10-12 21:23:39.509376+00 2025-10-12 21:23:39.509383+00 f t DESCUENTO 0.00 2 9470 \N +375507 2025-10-12 21:23:39.510612+00 2025-10-12 21:23:39.510617+00 f t TOTAL 55000.00 3 9470 \N +375508 2025-10-12 21:23:39.511744+00 2025-10-12 21:23:39.511749+00 f t ADELANTO 11000.00 4 9470 \N +369917 2025-10-10 15:22:08.284527+00 2025-10-10 15:22:08.284534+00 f t SUBTOTAL 55000.00 1 9320 \N +369918 2025-10-10 15:22:08.286233+00 2025-10-10 15:22:08.286241+00 f t DESCUENTO 0.00 2 9320 \N +369919 2025-10-10 15:22:08.287422+00 2025-10-10 15:22:08.287429+00 f t TOTAL 55000.00 3 9320 \N +369920 2025-10-10 15:22:08.288576+00 2025-10-10 15:22:08.288581+00 f t ADELANTO 11000.00 4 9320 \N +369953 2025-10-10 15:50:00.594572+00 2025-10-10 15:50:00.59458+00 f t SUBTOTAL 46000.00 1 9321 \N +369954 2025-10-10 15:50:00.596416+00 2025-10-10 15:50:00.596422+00 f t DESCUENTO 0.00 2 9321 \N +369955 2025-10-10 15:50:00.597698+00 2025-10-10 15:50:00.597704+00 f t TOTAL 46000.00 3 9321 \N +369956 2025-10-10 15:50:00.59881+00 2025-10-10 15:50:00.598817+00 f t ADELANTO 11000.00 4 9321 \N +376413 2025-10-13 03:02:04.880388+00 2025-10-13 03:02:04.8804+00 f t SUBTOTAL 46000.00 1 9488 \N +376414 2025-10-13 03:02:04.882298+00 2025-10-13 03:02:04.882307+00 f t DESCUENTO 0.00 2 9488 \N +376415 2025-10-13 03:02:04.883632+00 2025-10-13 03:02:04.883638+00 f t TOTAL 46000.00 3 9488 \N +379717 2025-10-13 23:23:58.046011+00 2025-10-13 23:23:58.046021+00 f t SUBTOTAL 70000.00 1 9577 \N +379718 2025-10-13 23:23:58.047991+00 2025-10-13 23:23:58.047999+00 f t DESCUENTO 0.00 2 9577 \N +379719 2025-10-13 23:23:58.049755+00 2025-10-13 23:23:58.049763+00 f t TOTAL 70000.00 3 9577 \N +379720 2025-10-13 23:23:58.051204+00 2025-10-13 23:23:58.051213+00 f t ADELANTO 19000.00 4 9577 \N +416022 2025-10-25 20:17:44.756226+00 2025-10-25 20:17:44.756235+00 f t SUBTOTAL 46000.00 1 10512 \N +416023 2025-10-25 20:17:44.758135+00 2025-10-25 20:17:44.758152+00 f t COSTO_SERVICIO 0.00 2 10512 \N +416024 2025-10-25 20:17:44.759701+00 2025-10-25 20:17:44.759708+00 f t DESCUENTO 0.00 3 10512 \N +371893 2025-10-11 04:07:02.23835+00 2025-10-11 04:07:02.23836+00 f t SUBTOTAL 0.00 1 9371 \N +371894 2025-10-11 04:07:02.239993+00 2025-10-11 04:07:02.240005+00 f t DESCUENTO 0.00 2 9371 \N +371895 2025-10-11 04:07:02.241682+00 2025-10-11 04:07:02.24169+00 f t TOTAL 0.00 3 9371 \N +371896 2025-10-11 04:07:02.243229+00 2025-10-11 04:07:02.243236+00 f t ADELANTO 0.00 4 9371 \N +370025 2025-10-10 15:51:58.366754+00 2025-10-10 15:51:58.366762+00 f t SUBTOTAL 53700.00 1 9322 \N +370026 2025-10-10 15:51:58.368667+00 2025-10-10 15:51:58.368674+00 f t DESCUENTO 0.00 2 9322 \N +370027 2025-10-10 15:51:58.370491+00 2025-10-10 15:51:58.370497+00 f t TOTAL 53700.00 3 9322 \N +370028 2025-10-10 15:51:58.37199+00 2025-10-10 15:51:58.371996+00 f t ADELANTO 13200.00 4 9322 \N +370037 2025-10-10 15:57:09.865266+00 2025-10-10 15:57:09.865276+00 f t SUBTOTAL 55000.00 1 9323 \N +370038 2025-10-10 15:57:09.86741+00 2025-10-10 15:57:09.86742+00 f t DESCUENTO 0.00 2 9323 \N +370039 2025-10-10 15:57:09.868947+00 2025-10-10 15:57:09.868953+00 f t TOTAL 55000.00 3 9323 \N +370040 2025-10-10 15:57:09.870125+00 2025-10-10 15:57:09.87013+00 f t ADELANTO 11000.00 4 9323 \N +370053 2025-10-10 16:01:24.923014+00 2025-10-10 16:01:24.923023+00 f t SUBTOTAL 0.00 1 9324 \N +370054 2025-10-10 16:01:24.924829+00 2025-10-10 16:01:24.924838+00 f t DESCUENTO 0.00 2 9324 \N +370055 2025-10-10 16:01:24.925923+00 2025-10-10 16:01:24.925929+00 f t TOTAL 0.00 3 9324 \N +370056 2025-10-10 16:01:24.926955+00 2025-10-10 16:01:24.92696+00 f t ADELANTO 0.00 4 9324 \N +381881 2025-10-14 18:07:46.892497+00 2025-10-14 18:07:46.892507+00 f t SUBTOTAL 55000.00 1 9632 \N +381882 2025-10-14 18:07:46.895011+00 2025-10-14 18:07:46.895018+00 f t DESCUENTO 0.00 2 9632 \N +381883 2025-10-14 18:07:46.896532+00 2025-10-14 18:07:46.896541+00 f t TOTAL 55000.00 3 9632 \N +381884 2025-10-14 18:07:46.898533+00 2025-10-14 18:07:46.898541+00 f t ADELANTO 11000.00 4 9632 \N +374217 2025-10-12 15:27:45.581356+00 2025-10-12 15:27:45.581367+00 f t SUBTOTAL 55000.00 1 9440 \N +374218 2025-10-12 15:27:45.583329+00 2025-10-12 15:27:45.583339+00 f t DESCUENTO 0.00 2 9440 \N +374219 2025-10-12 15:27:45.586234+00 2025-10-12 15:27:45.58624+00 f t TOTAL 55000.00 3 9440 \N +374220 2025-10-12 15:27:45.587641+00 2025-10-12 15:27:45.587647+00 f t ADELANTO 11000.00 4 9440 \N +374389 2025-10-12 15:54:47.190922+00 2025-10-12 15:54:47.190931+00 f t SUBTOTAL 0.00 1 9443 \N +374390 2025-10-12 15:54:47.193411+00 2025-10-12 15:54:47.193419+00 f t DESCUENTO 0.00 2 9443 \N +374391 2025-10-12 15:54:47.19528+00 2025-10-12 15:54:47.195287+00 f t TOTAL 0.00 3 9443 \N +374392 2025-10-12 15:54:47.197248+00 2025-10-12 15:54:47.197254+00 f t ADELANTO 0.00 4 9443 \N +374565 2025-10-12 16:55:37.791351+00 2025-10-12 16:55:37.79136+00 f t SUBTOTAL 0.00 1 9446 \N +374566 2025-10-12 16:55:37.79303+00 2025-10-12 16:55:37.793036+00 f t DESCUENTO 0.00 2 9446 \N +374567 2025-10-12 16:55:37.794124+00 2025-10-12 16:55:37.79413+00 f t TOTAL 0.00 3 9446 \N +374568 2025-10-12 16:55:37.795058+00 2025-10-12 16:55:37.795063+00 f t ADELANTO 0.00 4 9446 \N +370129 2025-10-10 16:07:12.220799+00 2025-10-10 16:07:12.220808+00 f t SUBTOTAL 55000.00 1 9325 \N +370130 2025-10-10 16:07:12.22235+00 2025-10-10 16:07:12.222356+00 f t DESCUENTO 0.00 2 9325 \N +370131 2025-10-10 16:07:12.223697+00 2025-10-10 16:07:12.223704+00 f t TOTAL 55000.00 3 9325 \N +370132 2025-10-10 16:07:12.225383+00 2025-10-10 16:07:12.22539+00 f t ADELANTO 11000.00 4 9325 \N +382825 2025-10-15 00:11:12.663904+00 2025-10-15 00:11:12.663914+00 f t SUBTOTAL 0.00 1 9660 \N +382826 2025-10-15 00:11:12.665405+00 2025-10-15 00:11:12.665414+00 f t DESCUENTO 0.00 2 9660 \N +382827 2025-10-15 00:11:12.666769+00 2025-10-15 00:11:12.666776+00 f t TOTAL 0.00 3 9660 \N +382828 2025-10-15 00:11:12.667845+00 2025-10-15 00:11:12.66785+00 f t ADELANTO 0.00 4 9660 \N +374817 2025-10-12 17:14:37.557079+00 2025-10-12 17:14:37.557088+00 f t SUBTOTAL 46000.00 1 9451 \N +374818 2025-10-12 17:14:37.5589+00 2025-10-12 17:14:37.558912+00 f t DESCUENTO 0.00 2 9451 \N +374819 2025-10-12 17:14:37.560387+00 2025-10-12 17:14:37.560396+00 f t TOTAL 46000.00 3 9451 \N +374820 2025-10-12 17:14:37.561728+00 2025-10-12 17:14:37.561735+00 f t ADELANTO 11000.00 4 9451 \N +370177 2025-10-10 16:08:06.242746+00 2025-10-10 16:08:06.242754+00 f t SUBTOTAL 46000.00 1 9327 \N +370178 2025-10-10 16:08:06.244441+00 2025-10-10 16:08:06.244448+00 f t DESCUENTO 0.00 2 9327 \N +370179 2025-10-10 16:08:06.245662+00 2025-10-10 16:08:06.245668+00 f t TOTAL 46000.00 3 9327 \N +370180 2025-10-10 16:08:06.24673+00 2025-10-10 16:08:06.246735+00 f t ADELANTO 11000.00 4 9327 \N +383725 2025-10-15 13:17:00.310628+00 2025-10-15 13:17:00.310637+00 f t SUBTOTAL 0.00 1 9683 \N +383726 2025-10-15 13:17:00.312099+00 2025-10-15 13:17:00.312106+00 f t DESCUENTO 0.00 2 9683 \N +383727 2025-10-15 13:17:00.313137+00 2025-10-15 13:17:00.313142+00 f t TOTAL 0.00 3 9683 \N +383728 2025-10-15 13:17:00.314062+00 2025-10-15 13:17:00.314068+00 f t ADELANTO 0.00 4 9683 \N +375581 2025-10-12 22:16:58.156325+00 2025-10-12 22:16:58.156335+00 f t SUBTOTAL 54000.00 1 9472 \N +375582 2025-10-12 22:16:58.158168+00 2025-10-12 22:16:58.158176+00 f t DESCUENTO 0.00 2 9472 \N +375583 2025-10-12 22:16:58.159496+00 2025-10-12 22:16:58.159503+00 f t TOTAL 54000.00 3 9472 \N +375584 2025-10-12 22:16:58.160665+00 2025-10-12 22:16:58.160671+00 f t ADELANTO 13500.00 4 9472 \N +384185 2025-10-15 15:00:58.225505+00 2025-10-15 15:00:58.225516+00 f t SUBTOTAL 0.00 1 9699 \N +384186 2025-10-15 15:00:58.227702+00 2025-10-15 15:00:58.227711+00 f t DESCUENTO 0.00 2 9699 \N +384187 2025-10-15 15:00:58.229648+00 2025-10-15 15:00:58.22966+00 f t TOTAL 0.00 3 9699 \N +384188 2025-10-15 15:00:58.231071+00 2025-10-15 15:00:58.231078+00 f t ADELANTO 0.00 4 9699 \N +376221 2025-10-13 02:48:07.039581+00 2025-10-13 02:48:07.039591+00 f t SUBTOTAL 0.00 1 9485 \N +376222 2025-10-13 02:48:07.043742+00 2025-10-13 02:48:07.043751+00 f t DESCUENTO 0.00 2 9485 \N +376223 2025-10-13 02:48:07.045433+00 2025-10-13 02:48:07.045443+00 f t TOTAL 0.00 3 9485 \N +376224 2025-10-13 02:48:07.047032+00 2025-10-13 02:48:07.047039+00 f t ADELANTO 0.00 4 9485 \N +376381 2025-10-13 03:00:01.298068+00 2025-10-13 03:00:01.298082+00 f t SUBTOTAL 80000.00 1 9469 \N +376382 2025-10-13 03:00:01.300347+00 2025-10-13 03:00:01.30036+00 f t DESCUENTO 0.00 2 9469 \N +376383 2025-10-13 03:00:01.302166+00 2025-10-13 03:00:01.30221+00 f t TOTAL 80000.00 3 9469 \N +376384 2025-10-13 03:00:01.316616+00 2025-10-13 03:00:01.316631+00 f t ADELANTO 12000.00 4 9469 \N +376416 2025-10-13 03:02:04.884827+00 2025-10-13 03:02:04.884833+00 f t ADELANTO 11000.00 4 9488 \N +370261 2025-10-10 16:11:53.506941+00 2025-10-10 16:11:53.50695+00 f t SUBTOTAL 68000.00 1 9328 \N +370262 2025-10-10 16:11:53.508708+00 2025-10-10 16:11:53.508715+00 f t DESCUENTO 0.00 2 9328 \N +370263 2025-10-10 16:11:53.510144+00 2025-10-10 16:11:53.510154+00 f t TOTAL 68000.00 3 9328 \N +370264 2025-10-10 16:11:53.511397+00 2025-10-10 16:11:53.511403+00 f t ADELANTO 13000.00 4 9328 \N +371157 2025-10-10 21:27:27.013697+00 2025-10-10 21:27:27.01371+00 f t SUBTOTAL 0.00 1 9347 \N +371158 2025-10-10 21:27:27.016804+00 2025-10-10 21:27:27.016814+00 f t DESCUENTO 0.00 2 9347 \N +371159 2025-10-10 21:27:27.01802+00 2025-10-10 21:27:27.018028+00 f t TOTAL 0.00 3 9347 \N +371160 2025-10-10 21:27:27.019389+00 2025-10-10 21:27:27.019397+00 f t ADELANTO 0.00 4 9347 \N +388933 2025-10-17 00:18:18.763577+00 2025-10-17 00:18:18.763586+00 f t SUBTOTAL 30000.00 1 9846 \N +388934 2025-10-17 00:18:18.765596+00 2025-10-17 00:18:18.765604+00 f t DESCUENTO 0.00 2 9846 \N +388935 2025-10-17 00:18:18.766934+00 2025-10-17 00:18:18.76694+00 f t TOTAL 30000.00 3 9846 \N +388936 2025-10-17 00:18:18.768175+00 2025-10-17 00:18:18.76818+00 f t ADELANTO 30000.00 4 9846 \N +380913 2025-10-14 07:15:44.511551+00 2025-10-14 07:15:44.511561+00 f t SUBTOTAL 0.00 1 9602 \N +380914 2025-10-14 07:15:44.513416+00 2025-10-14 07:15:44.513422+00 f t DESCUENTO 0.00 2 9602 \N +380915 2025-10-14 07:15:44.514436+00 2025-10-14 07:15:44.514441+00 f t TOTAL 0.00 3 9602 \N +380916 2025-10-14 07:15:44.515796+00 2025-10-14 07:15:44.515802+00 f t ADELANTO 0.00 4 9602 \N +381649 2025-10-14 16:43:55.238487+00 2025-10-14 16:43:55.238495+00 f t SUBTOTAL 119400.00 1 9623 \N +381650 2025-10-14 16:43:55.240398+00 2025-10-14 16:43:55.240406+00 f t DESCUENTO 0.00 2 9623 \N +370337 2025-10-10 16:14:08.92632+00 2025-10-10 16:14:08.926328+00 f t SUBTOTAL 0.00 1 9329 \N +370338 2025-10-10 16:14:08.928091+00 2025-10-10 16:14:08.928097+00 f t DESCUENTO 0.00 2 9329 \N +370339 2025-10-10 16:14:08.929206+00 2025-10-10 16:14:08.929211+00 f t TOTAL 0.00 3 9329 \N +370340 2025-10-10 16:14:08.930208+00 2025-10-10 16:14:08.930213+00 f t ADELANTO 0.00 4 9329 \N +381651 2025-10-14 16:43:55.241531+00 2025-10-14 16:43:55.241538+00 f t TOTAL 119400.00 3 9623 \N +381652 2025-10-14 16:43:55.242577+00 2025-10-14 16:43:55.242583+00 f t ADELANTO 78900.00 4 9623 \N +373353 2025-10-12 00:43:49.906442+00 2025-10-12 00:43:49.90645+00 f t SUBTOTAL 46000.00 1 9414 \N +373354 2025-10-12 00:43:49.908242+00 2025-10-12 00:43:49.908248+00 f t DESCUENTO 0.00 2 9414 \N +373355 2025-10-12 00:43:49.909286+00 2025-10-12 00:43:49.909291+00 f t TOTAL 46000.00 3 9414 \N +373356 2025-10-12 00:43:49.910267+00 2025-10-12 00:43:49.910272+00 f t ADELANTO 11000.00 4 9414 \N +381889 2025-10-14 18:11:37.000329+00 2025-10-14 18:11:37.000346+00 f t SUBTOTAL 0.00 1 9634 \N +381890 2025-10-14 18:11:37.002469+00 2025-10-14 18:11:37.002484+00 f t DESCUENTO 0.00 2 9634 \N +381891 2025-10-14 18:11:37.004295+00 2025-10-14 18:11:37.004306+00 f t TOTAL 0.00 3 9634 \N +381892 2025-10-14 18:11:37.005958+00 2025-10-14 18:11:37.005965+00 f t ADELANTO 0.00 4 9634 \N +370389 2025-10-10 16:17:24.629029+00 2025-10-10 16:17:24.629042+00 f t SUBTOTAL 0.00 1 9330 \N +370390 2025-10-10 16:17:24.631237+00 2025-10-10 16:17:24.631247+00 f t DESCUENTO 0.00 2 9330 \N +370391 2025-10-10 16:17:24.633018+00 2025-10-10 16:17:24.633026+00 f t TOTAL 0.00 3 9330 \N +370392 2025-10-10 16:17:24.634428+00 2025-10-10 16:17:24.634437+00 f t ADELANTO 0.00 4 9330 \N +374397 2025-10-12 16:10:49.236784+00 2025-10-12 16:10:49.236796+00 f t SUBTOTAL 0.00 1 9444 \N +374398 2025-10-12 16:10:49.238888+00 2025-10-12 16:10:49.2389+00 f t DESCUENTO 0.00 2 9444 \N +374399 2025-10-12 16:10:49.240699+00 2025-10-12 16:10:49.240709+00 f t TOTAL 0.00 3 9444 \N +374400 2025-10-12 16:10:49.242397+00 2025-10-12 16:10:49.242407+00 f t ADELANTO 0.00 4 9444 \N +370429 2025-10-10 16:43:10.434301+00 2025-10-10 16:43:10.434309+00 f t SUBTOTAL 55000.00 1 9326 \N +370430 2025-10-10 16:43:10.435863+00 2025-10-10 16:43:10.43587+00 f t DESCUENTO 0.00 2 9326 \N +370431 2025-10-10 16:43:10.436902+00 2025-10-10 16:43:10.436907+00 f t TOTAL 55000.00 3 9326 \N +370432 2025-10-10 16:43:10.437863+00 2025-10-10 16:43:10.437869+00 f t ADELANTO 11000.00 4 9326 \N +370441 2025-10-10 16:44:01.684357+00 2025-10-10 16:44:01.684369+00 f t SUBTOTAL 0.00 1 9331 \N +370442 2025-10-10 16:44:01.686707+00 2025-10-10 16:44:01.686715+00 f t DESCUENTO 0.00 2 9331 \N +370443 2025-10-10 16:44:01.688568+00 2025-10-10 16:44:01.688575+00 f t TOTAL 0.00 3 9331 \N +370444 2025-10-10 16:44:01.690189+00 2025-10-10 16:44:01.690195+00 f t ADELANTO 0.00 4 9331 \N +374909 2025-10-12 19:05:41.756725+00 2025-10-12 19:05:41.756737+00 f t SUBTOTAL 55000.00 1 9454 \N +374910 2025-10-12 19:05:41.759474+00 2025-10-12 19:05:41.759485+00 f t DESCUENTO 0.00 2 9454 \N +374911 2025-10-12 19:05:41.761692+00 2025-10-12 19:05:41.761701+00 f t TOTAL 55000.00 3 9454 \N +374912 2025-10-12 19:05:41.762986+00 2025-10-12 19:05:41.763+00 f t ADELANTO 11000.00 4 9454 \N +370453 2025-10-10 16:50:34.891558+00 2025-10-10 16:50:34.891565+00 f t SUBTOTAL 55000.00 1 9332 \N +370454 2025-10-10 16:50:34.893091+00 2025-10-10 16:50:34.893097+00 f t DESCUENTO 0.00 2 9332 \N +370455 2025-10-10 16:50:34.894183+00 2025-10-10 16:50:34.894188+00 f t TOTAL 55000.00 3 9332 \N +370456 2025-10-10 16:50:34.895207+00 2025-10-10 16:50:34.895212+00 f t ADELANTO 11000.00 4 9332 \N +375093 2025-10-12 20:13:49.926712+00 2025-10-12 20:13:49.92672+00 f t SUBTOTAL 0.00 1 9463 \N +375094 2025-10-12 20:13:49.928004+00 2025-10-12 20:13:49.92801+00 f t DESCUENTO 0.00 2 9463 \N +370465 2025-10-10 16:53:15.888138+00 2025-10-10 16:53:15.888146+00 f t SUBTOTAL 78000.00 1 9333 \N +370466 2025-10-10 16:53:15.889603+00 2025-10-10 16:53:15.88961+00 f t DESCUENTO 0.00 2 9333 \N +370467 2025-10-10 16:53:15.890666+00 2025-10-10 16:53:15.890672+00 f t TOTAL 78000.00 3 9333 \N +370468 2025-10-10 16:53:15.891661+00 2025-10-10 16:53:15.891666+00 f t ADELANTO 13000.00 4 9333 \N +375095 2025-10-12 20:13:49.928963+00 2025-10-12 20:13:49.928968+00 f t TOTAL 0.00 3 9463 \N +375096 2025-10-12 20:13:49.929886+00 2025-10-12 20:13:49.929894+00 f t ADELANTO 0.00 4 9463 \N +384021 2025-10-15 14:48:17.976799+00 2025-10-15 14:48:17.976808+00 f t SUBTOTAL 46000.00 1 9695 \N +384022 2025-10-15 14:48:17.978431+00 2025-10-15 14:48:17.978437+00 f t DESCUENTO 0.00 2 9695 \N +384023 2025-10-15 14:48:17.979867+00 2025-10-15 14:48:17.979877+00 f t TOTAL 46000.00 3 9695 \N +384024 2025-10-15 14:48:17.981119+00 2025-10-15 14:48:17.981127+00 f t ADELANTO 11000.00 4 9695 \N +370493 2025-10-10 17:26:14.240913+00 2025-10-10 17:26:14.240921+00 f t SUBTOTAL 70000.00 1 9334 \N +370494 2025-10-10 17:26:14.242509+00 2025-10-10 17:26:14.242517+00 f t DESCUENTO 0.00 2 9334 \N +370495 2025-10-10 17:26:14.243788+00 2025-10-10 17:26:14.243794+00 f t TOTAL 70000.00 3 9334 \N +370496 2025-10-10 17:26:14.244856+00 2025-10-10 17:26:14.244861+00 f t ADELANTO 19000.00 4 9334 \N +375709 2025-10-12 22:36:03.313836+00 2025-10-12 22:36:03.313848+00 f t SUBTOTAL 80000.00 1 9473 \N +375710 2025-10-12 22:36:03.315789+00 2025-10-12 22:36:03.315798+00 f t DESCUENTO 0.00 2 9473 \N +375711 2025-10-12 22:36:03.317134+00 2025-10-12 22:36:03.317141+00 f t TOTAL 80000.00 3 9473 \N +375712 2025-10-12 22:36:03.318292+00 2025-10-12 22:36:03.318298+00 f t ADELANTO 12000.00 4 9473 \N +375921 2025-10-13 01:23:16.905538+00 2025-10-13 01:23:16.905546+00 f t SUBTOTAL 23000.00 1 9481 \N +375922 2025-10-13 01:23:16.907298+00 2025-10-13 01:23:16.907305+00 f t DESCUENTO 0.00 2 9481 \N +375923 2025-10-13 01:23:16.908511+00 2025-10-13 01:23:16.908518+00 f t TOTAL 23000.00 3 9481 \N +375924 2025-10-13 01:23:16.909644+00 2025-10-13 01:23:16.909651+00 f t ADELANTO 5500.00 4 9481 \N +370557 2025-10-10 17:29:51.634334+00 2025-10-10 17:29:51.634342+00 f t SUBTOTAL 139000.00 1 9335 \N +370558 2025-10-10 17:29:51.636131+00 2025-10-10 17:29:51.636138+00 f t DESCUENTO 0.00 2 9335 \N +370559 2025-10-10 17:29:51.6374+00 2025-10-10 17:29:51.637406+00 f t TOTAL 139000.00 3 9335 \N +370560 2025-10-10 17:29:51.638627+00 2025-10-10 17:29:51.638632+00 f t ADELANTO 69000.00 4 9335 \N +416025 2025-10-25 20:17:44.761112+00 2025-10-25 20:17:44.761118+00 f t TOTAL 46000.00 4 10512 \N +416026 2025-10-25 20:17:44.766483+00 2025-10-25 20:17:44.766496+00 f t ADELANTO 11000.00 5 10512 \N +466566 2025-11-07 22:11:40.90585+00 2025-11-07 22:11:40.905857+00 f t ADELANTO 0.00 5 11697 \N +380649 2025-10-14 03:00:49.529212+00 2025-10-14 03:00:49.52922+00 f t SUBTOTAL 55000.00 1 9596 \N +380650 2025-10-14 03:00:49.531394+00 2025-10-14 03:00:49.531402+00 f t DESCUENTO 0.00 2 9596 \N +380651 2025-10-14 03:00:49.533164+00 2025-10-14 03:00:49.533172+00 f t TOTAL 55000.00 3 9596 \N +380652 2025-10-14 03:00:49.534556+00 2025-10-14 03:00:49.534562+00 f t ADELANTO 11000.00 4 9596 \N +381041 2025-10-14 12:39:20.988457+00 2025-10-14 12:39:20.988466+00 f t SUBTOTAL 121000.00 1 9605 \N +381042 2025-10-14 12:39:20.990277+00 2025-10-14 12:39:20.990283+00 f t DESCUENTO 0.00 2 9605 \N +381043 2025-10-14 12:39:20.991538+00 2025-10-14 12:39:20.991544+00 f t TOTAL 121000.00 3 9605 \N +381044 2025-10-14 12:39:20.992641+00 2025-10-14 12:39:20.992646+00 f t ADELANTO 26000.00 4 9605 \N +381289 2025-10-14 14:22:38.856795+00 2025-10-14 14:22:38.856807+00 f t SUBTOTAL 0.00 1 9611 \N +381290 2025-10-14 14:22:38.859394+00 2025-10-14 14:22:38.859405+00 f t DESCUENTO 0.00 2 9611 \N +381291 2025-10-14 14:22:38.860893+00 2025-10-14 14:22:38.860903+00 f t TOTAL 0.00 3 9611 \N +370613 2025-10-10 18:17:52.504437+00 2025-10-10 18:17:52.504449+00 f t SUBTOTAL 55000.00 1 9336 \N +370614 2025-10-10 18:17:52.50999+00 2025-10-10 18:17:52.510005+00 f t DESCUENTO 0.00 2 9336 \N +370615 2025-10-10 18:17:52.512159+00 2025-10-10 18:17:52.51217+00 f t TOTAL 55000.00 3 9336 \N +370616 2025-10-10 18:17:52.516124+00 2025-10-10 18:17:52.516133+00 f t ADELANTO 11000.00 4 9336 \N +381292 2025-10-14 14:22:38.862185+00 2025-10-14 14:22:38.862193+00 f t ADELANTO 0.00 4 9611 \N +373141 2025-10-11 20:19:00.479034+00 2025-10-11 20:19:00.479047+00 f t SUBTOTAL 0.00 1 9406 \N +373142 2025-10-11 20:19:00.481735+00 2025-10-11 20:19:00.481745+00 f t DESCUENTO 0.00 2 9406 \N +373143 2025-10-11 20:19:00.483446+00 2025-10-11 20:19:00.483456+00 f t TOTAL 0.00 3 9406 \N +373144 2025-10-11 20:19:00.485385+00 2025-10-11 20:19:00.485395+00 f t ADELANTO 0.00 4 9406 \N +381773 2025-10-14 17:23:05.753694+00 2025-10-14 17:23:05.753707+00 f t SUBTOTAL 0.00 1 9628 \N +381774 2025-10-14 17:23:05.75687+00 2025-10-14 17:23:05.756882+00 f t DESCUENTO 0.00 2 9628 \N +381775 2025-10-14 17:23:05.758532+00 2025-10-14 17:23:05.758543+00 f t TOTAL 0.00 3 9628 \N +381776 2025-10-14 17:23:05.759858+00 2025-10-14 17:23:05.759866+00 f t ADELANTO 0.00 4 9628 \N +373457 2025-10-12 03:03:20.25273+00 2025-10-12 03:03:20.252739+00 f t SUBTOTAL 70000.00 1 9416 \N +373458 2025-10-12 03:03:20.254838+00 2025-10-12 03:03:20.254846+00 f t DESCUENTO 0.00 2 9416 \N +373459 2025-10-12 03:03:20.25622+00 2025-10-12 03:03:20.256229+00 f t TOTAL 70000.00 3 9416 \N +373460 2025-10-12 03:03:20.257265+00 2025-10-12 03:03:20.25727+00 f t ADELANTO 19000.00 4 9416 \N +373553 2025-10-12 03:53:23.451755+00 2025-10-12 03:53:23.451767+00 f t SUBTOTAL 55000.00 1 9419 \N +373554 2025-10-12 03:53:23.454291+00 2025-10-12 03:53:23.454301+00 f t DESCUENTO 0.00 2 9419 \N +373555 2025-10-12 03:53:23.456004+00 2025-10-12 03:53:23.456014+00 f t TOTAL 55000.00 3 9419 \N +373556 2025-10-12 03:53:23.457671+00 2025-10-12 03:53:23.457681+00 f t ADELANTO 11000.00 4 9419 \N +373949 2025-10-12 13:28:16.9079+00 2025-10-12 13:28:16.907908+00 f t SUBTOTAL 46000.00 1 9434 \N +373950 2025-10-12 13:28:16.909678+00 2025-10-12 13:28:16.909686+00 f t DESCUENTO 0.00 2 9434 \N +373951 2025-10-12 13:28:16.911096+00 2025-10-12 13:28:16.911106+00 f t TOTAL 46000.00 3 9434 \N +373952 2025-10-12 13:28:16.912483+00 2025-10-12 13:28:16.912489+00 f t ADELANTO 11000.00 4 9434 \N +382717 2025-10-14 23:39:36.666707+00 2025-10-14 23:39:36.666717+00 f t SUBTOTAL 0.00 1 9654 \N +382718 2025-10-14 23:39:36.66872+00 2025-10-14 23:39:36.668729+00 f t DESCUENTO 0.00 2 9654 \N +382719 2025-10-14 23:39:36.669973+00 2025-10-14 23:39:36.669979+00 f t TOTAL 0.00 3 9654 \N +382720 2025-10-14 23:39:36.67109+00 2025-10-14 23:39:36.671095+00 f t ADELANTO 0.00 4 9654 \N +370705 2025-10-10 18:40:17.908587+00 2025-10-10 18:40:17.908597+00 f t SUBTOTAL 46000.00 1 9337 \N +370706 2025-10-10 18:40:17.91009+00 2025-10-10 18:40:17.910096+00 f t DESCUENTO 0.00 2 9337 \N +370707 2025-10-10 18:40:17.91108+00 2025-10-10 18:40:17.911085+00 f t TOTAL 46000.00 3 9337 \N +370708 2025-10-10 18:40:17.912097+00 2025-10-10 18:40:17.912104+00 f t ADELANTO 11000.00 4 9337 \N +384025 2025-10-15 14:50:13.360385+00 2025-10-15 14:50:13.360393+00 f t SUBTOTAL 13200.00 1 9694 \N +384026 2025-10-15 14:50:13.362086+00 2025-10-15 14:50:13.362092+00 f t DESCUENTO 0.00 2 9694 \N +384027 2025-10-15 14:50:13.363364+00 2025-10-15 14:50:13.36337+00 f t TOTAL 13200.00 3 9694 \N +384028 2025-10-15 14:50:13.364363+00 2025-10-15 14:50:13.364368+00 f t ADELANTO 13200.00 4 9694 \N +384369 2025-10-15 16:50:30.670628+00 2025-10-15 16:50:30.670638+00 f t SUBTOTAL 0.00 1 9707 \N +384370 2025-10-15 16:50:30.673385+00 2025-10-15 16:50:30.673393+00 f t DESCUENTO 0.00 2 9707 \N +384371 2025-10-15 16:50:30.674821+00 2025-10-15 16:50:30.674828+00 f t TOTAL 0.00 3 9707 \N +384372 2025-10-15 16:50:30.676126+00 2025-10-15 16:50:30.676131+00 f t ADELANTO 0.00 4 9707 \N +375717 2025-10-12 22:53:57.670567+00 2025-10-12 22:53:57.670576+00 f t SUBTOTAL 0.00 1 9474 \N +375718 2025-10-12 22:53:57.672013+00 2025-10-12 22:53:57.672022+00 f t DESCUENTO 0.00 2 9474 \N +375719 2025-10-12 22:53:57.673193+00 2025-10-12 22:53:57.673199+00 f t TOTAL 0.00 3 9474 \N +375720 2025-10-12 22:53:57.674232+00 2025-10-12 22:53:57.674243+00 f t ADELANTO 0.00 4 9474 \N +384749 2025-10-15 18:41:09.566967+00 2025-10-15 18:41:09.56698+00 f t SUBTOTAL 0.00 1 9717 \N +384750 2025-10-15 18:41:09.569278+00 2025-10-15 18:41:09.56929+00 f t DESCUENTO 0.00 2 9717 \N +384751 2025-10-15 18:41:09.571226+00 2025-10-15 18:41:09.571237+00 f t TOTAL 0.00 3 9717 \N +384752 2025-10-15 18:41:09.572943+00 2025-10-15 18:41:09.572954+00 f t ADELANTO 0.00 4 9717 \N +385197 2025-10-15 21:20:47.156794+00 2025-10-15 21:20:47.156807+00 f t SUBTOTAL 0.00 1 9734 \N +385198 2025-10-15 21:20:47.158416+00 2025-10-15 21:20:47.158426+00 f t DESCUENTO 0.00 2 9734 \N +385199 2025-10-15 21:20:47.159833+00 2025-10-15 21:20:47.159843+00 f t TOTAL 0.00 3 9734 \N +385200 2025-10-15 21:20:47.161198+00 2025-10-15 21:20:47.161207+00 f t ADELANTO 0.00 4 9734 \N +376421 2025-10-13 03:05:32.815465+00 2025-10-13 03:05:32.815474+00 f t SUBTOTAL 0.00 1 9489 \N +376422 2025-10-13 03:05:32.816894+00 2025-10-13 03:05:32.8169+00 f t DESCUENTO 0.00 2 9489 \N +370841 2025-10-10 18:49:09.448674+00 2025-10-10 18:49:09.448684+00 f t SUBTOTAL 55000.00 1 9338 \N +370842 2025-10-10 18:49:09.450181+00 2025-10-10 18:49:09.450187+00 f t DESCUENTO 0.00 2 9338 \N +370843 2025-10-10 18:49:09.451242+00 2025-10-10 18:49:09.451248+00 f t TOTAL 55000.00 3 9338 \N +370844 2025-10-10 18:49:09.452351+00 2025-10-10 18:49:09.452357+00 f t ADELANTO 11000.00 4 9338 \N +370845 2025-10-10 18:49:50.66528+00 2025-10-10 18:49:50.665291+00 f t SUBTOTAL 54000.00 1 9339 \N +370846 2025-10-10 18:49:50.666737+00 2025-10-10 18:49:50.666743+00 f t DESCUENTO 0.00 2 9339 \N +370847 2025-10-10 18:49:50.667768+00 2025-10-10 18:49:50.667774+00 f t TOTAL 54000.00 3 9339 \N +370848 2025-10-10 18:49:50.668793+00 2025-10-10 18:49:50.6688+00 f t ADELANTO 13500.00 4 9339 \N +376423 2025-10-13 03:05:32.81816+00 2025-10-13 03:05:32.818165+00 f t TOTAL 0.00 3 9489 \N +376424 2025-10-13 03:05:32.819285+00 2025-10-13 03:05:32.819291+00 f t ADELANTO 0.00 4 9489 \N +477749 2025-11-10 19:56:25.909675+00 2025-11-10 19:56:25.909684+00 f t DESCUENTO 0.00 3 11943 \N +477750 2025-11-10 19:56:25.91128+00 2025-11-10 19:56:25.911289+00 f t TOTAL 13200.00 4 11943 \N +477751 2025-11-10 19:56:25.912655+00 2025-11-10 19:56:25.912663+00 f t ADELANTO 13200.00 5 11943 \N +388809 2025-10-16 23:40:29.883805+00 2025-10-16 23:40:29.883814+00 f t SUBTOTAL 57000.00 1 9843 \N +388810 2025-10-16 23:40:29.88538+00 2025-10-16 23:40:29.885387+00 f t DESCUENTO 0.00 2 9843 \N +388811 2025-10-16 23:40:29.886487+00 2025-10-16 23:40:29.886493+00 f t TOTAL 57000.00 3 9843 \N +388812 2025-10-16 23:40:29.887448+00 2025-10-16 23:40:29.887455+00 f t ADELANTO 57000.00 4 9843 \N +371765 2025-10-11 00:55:12.415316+00 2025-10-11 00:55:12.415325+00 f t SUBTOTAL 55000.00 1 9365 \N +371766 2025-10-11 00:55:12.417007+00 2025-10-11 00:55:12.417016+00 f t DESCUENTO 0.00 2 9365 \N +371767 2025-10-11 00:55:12.418368+00 2025-10-11 00:55:12.418374+00 f t TOTAL 55000.00 3 9365 \N +371768 2025-10-11 00:55:12.419599+00 2025-10-11 00:55:12.419606+00 f t ADELANTO 11000.00 4 9365 \N +370873 2025-10-10 19:11:34.591891+00 2025-10-10 19:11:34.5919+00 f t SUBTOTAL 0.00 1 9341 \N +370874 2025-10-10 19:11:34.593219+00 2025-10-10 19:11:34.593226+00 f t DESCUENTO 0.00 2 9341 \N +370875 2025-10-10 19:11:34.594325+00 2025-10-10 19:11:34.594332+00 f t TOTAL 0.00 3 9341 \N +370876 2025-10-10 19:11:34.595332+00 2025-10-10 19:11:34.595338+00 f t ADELANTO 0.00 4 9341 \N +380357 2025-10-14 00:46:50.541784+00 2025-10-14 00:46:50.541792+00 f t SUBTOTAL 55000.00 1 9589 \N +380358 2025-10-14 00:46:50.543572+00 2025-10-14 00:46:50.543577+00 f t DESCUENTO 0.00 2 9589 \N +380359 2025-10-14 00:46:50.544656+00 2025-10-14 00:46:50.544661+00 f t TOTAL 55000.00 3 9589 \N +380360 2025-10-14 00:46:50.545802+00 2025-10-14 00:46:50.545807+00 f t ADELANTO 11000.00 4 9589 \N +372033 2025-10-11 05:10:49.886223+00 2025-10-11 05:10:49.886237+00 f t SUBTOTAL 0.00 1 9373 \N +372034 2025-10-11 05:10:49.891748+00 2025-10-11 05:10:49.891758+00 f t DESCUENTO 0.00 2 9373 \N +372035 2025-10-11 05:10:49.893852+00 2025-10-11 05:10:49.893866+00 f t TOTAL 0.00 3 9373 \N +372036 2025-10-11 05:10:49.896135+00 2025-10-11 05:10:49.896144+00 f t ADELANTO 0.00 4 9373 \N +389061 2025-10-17 00:53:48.274213+00 2025-10-17 00:53:48.274222+00 f t SUBTOTAL 0.00 1 9849 \N +370893 2025-10-10 19:12:31.963923+00 2025-10-10 19:12:31.963932+00 f t SUBTOTAL 46000.00 1 9340 \N +370894 2025-10-10 19:12:31.965472+00 2025-10-10 19:12:31.965478+00 f t DESCUENTO 0.00 2 9340 \N +370895 2025-10-10 19:12:31.966519+00 2025-10-10 19:12:31.966527+00 f t TOTAL 46000.00 3 9340 \N +370896 2025-10-10 19:12:31.967491+00 2025-10-10 19:12:31.967495+00 f t ADELANTO 11000.00 4 9340 \N +373149 2025-10-11 21:38:01.82027+00 2025-10-11 21:38:01.820282+00 f t SUBTOTAL 0.00 1 9407 \N +373150 2025-10-11 21:38:01.821957+00 2025-10-11 21:38:01.821966+00 f t DESCUENTO 0.00 2 9407 \N +373151 2025-10-11 21:38:01.823424+00 2025-10-11 21:38:01.823433+00 f t TOTAL 0.00 3 9407 \N +373152 2025-10-11 21:38:01.825127+00 2025-10-11 21:38:01.825135+00 f t ADELANTO 0.00 4 9407 \N +381777 2025-10-14 17:23:57.195153+00 2025-10-14 17:23:57.195162+00 f t SUBTOTAL 107000.00 1 9629 \N +381778 2025-10-14 17:23:57.19712+00 2025-10-14 17:23:57.197128+00 f t DESCUENTO 0.00 2 9629 \N +381779 2025-10-14 17:23:57.198265+00 2025-10-14 17:23:57.198271+00 f t TOTAL 107000.00 3 9629 \N +381780 2025-10-14 17:23:57.199262+00 2025-10-14 17:23:57.199267+00 f t ADELANTO 12000.00 4 9629 \N +381901 2025-10-14 18:29:05.029825+00 2025-10-14 18:29:05.029835+00 f t SUBTOTAL 30000.00 1 9635 \N +381902 2025-10-14 18:29:05.032039+00 2025-10-14 18:29:05.032048+00 f t DESCUENTO 0.00 2 9635 \N +381903 2025-10-14 18:29:05.033621+00 2025-10-14 18:29:05.033632+00 f t TOTAL 30000.00 3 9635 \N +381904 2025-10-14 18:29:05.035323+00 2025-10-14 18:29:05.035332+00 f t ADELANTO 30000.00 4 9635 \N +382013 2025-10-14 18:48:27.153016+00 2025-10-14 18:48:27.153029+00 f t SUBTOTAL 0.00 1 9638 \N +382014 2025-10-14 18:48:27.155435+00 2025-10-14 18:48:27.155446+00 f t DESCUENTO 0.00 2 9638 \N +382015 2025-10-14 18:48:27.156871+00 2025-10-14 18:48:27.15688+00 f t TOTAL 0.00 3 9638 \N +382016 2025-10-14 18:48:27.158452+00 2025-10-14 18:48:27.15846+00 f t ADELANTO 0.00 4 9638 \N +382621 2025-10-14 22:57:13.869413+00 2025-10-14 22:57:13.869423+00 f t SUBTOTAL 70000.00 1 9652 \N +382622 2025-10-14 22:57:13.871385+00 2025-10-14 22:57:13.871392+00 f t DESCUENTO 0.00 2 9652 \N +382623 2025-10-14 22:57:13.872627+00 2025-10-14 22:57:13.872633+00 f t TOTAL 70000.00 3 9652 \N +382624 2025-10-14 22:57:13.873675+00 2025-10-14 22:57:13.873682+00 f t ADELANTO 19000.00 4 9652 \N +382725 2025-10-14 23:42:15.369191+00 2025-10-14 23:42:15.3692+00 f t SUBTOTAL 0.00 1 9655 \N +382726 2025-10-14 23:42:15.370614+00 2025-10-14 23:42:15.370623+00 f t DESCUENTO 0.00 2 9655 \N +382727 2025-10-14 23:42:15.37184+00 2025-10-14 23:42:15.371846+00 f t TOTAL 0.00 3 9655 \N +382728 2025-10-14 23:42:15.372754+00 2025-10-14 23:42:15.372759+00 f t ADELANTO 0.00 4 9655 \N +383149 2025-10-15 02:51:52.663765+00 2025-10-15 02:51:52.663778+00 f t SUBTOTAL 46000.00 1 9669 \N +383150 2025-10-15 02:51:52.666134+00 2025-10-15 02:51:52.666145+00 f t DESCUENTO 0.00 2 9669 \N +383151 2025-10-15 02:51:52.667678+00 2025-10-15 02:51:52.667688+00 f t TOTAL 46000.00 3 9669 \N +383152 2025-10-15 02:51:52.669192+00 2025-10-15 02:51:52.669201+00 f t ADELANTO 11000.00 4 9669 \N +375105 2025-10-12 20:18:12.191619+00 2025-10-12 20:18:12.191627+00 f t SUBTOTAL 55000.00 1 9464 \N +375106 2025-10-12 20:18:12.19438+00 2025-10-12 20:18:12.194387+00 f t DESCUENTO 0.00 2 9464 \N +375107 2025-10-12 20:18:12.195495+00 2025-10-12 20:18:12.195502+00 f t TOTAL 55000.00 3 9464 \N +375108 2025-10-12 20:18:12.196435+00 2025-10-12 20:18:12.19644+00 f t ADELANTO 11000.00 4 9464 \N +375181 2025-10-12 20:25:53.357354+00 2025-10-12 20:25:53.357363+00 f t SUBTOTAL 55000.00 1 9466 \N +375182 2025-10-12 20:25:53.359316+00 2025-10-12 20:25:53.359322+00 f t DESCUENTO 0.00 2 9466 \N +375183 2025-10-12 20:25:53.3604+00 2025-10-12 20:25:53.360405+00 f t TOTAL 55000.00 3 9466 \N +375184 2025-10-12 20:25:53.361227+00 2025-10-12 20:25:53.361232+00 f t ADELANTO 11000.00 4 9466 \N +383849 2025-10-15 14:33:50.501721+00 2025-10-15 14:33:50.501733+00 f t SUBTOTAL 46000.00 1 9690 \N +383850 2025-10-15 14:33:50.503808+00 2025-10-15 14:33:50.503817+00 f t DESCUENTO 0.00 2 9690 \N +383851 2025-10-15 14:33:50.505062+00 2025-10-15 14:33:50.505069+00 f t TOTAL 46000.00 3 9690 \N +383852 2025-10-15 14:33:50.506313+00 2025-10-15 14:33:50.50632+00 f t ADELANTO 11000.00 4 9690 \N +384197 2025-10-15 15:01:05.9343+00 2025-10-15 15:01:05.934311+00 f t SUBTOTAL 0.00 1 9698 \N +384198 2025-10-15 15:01:05.936841+00 2025-10-15 15:01:05.936853+00 f t DESCUENTO 0.00 2 9698 \N +384199 2025-10-15 15:01:05.938704+00 2025-10-15 15:01:05.938714+00 f t TOTAL 0.00 3 9698 \N +384200 2025-10-15 15:01:05.940568+00 2025-10-15 15:01:05.940576+00 f t ADELANTO 0.00 4 9698 \N +375725 2025-10-12 22:58:03.154554+00 2025-10-12 22:58:03.154564+00 f t SUBTOTAL 0.00 1 9475 \N +375726 2025-10-12 22:58:03.156039+00 2025-10-12 22:58:03.156046+00 f t DESCUENTO 0.00 2 9475 \N +375727 2025-10-12 22:58:03.157444+00 2025-10-12 22:58:03.157454+00 f t TOTAL 0.00 3 9475 \N +375728 2025-10-12 22:58:03.158986+00 2025-10-12 22:58:03.158996+00 f t ADELANTO 0.00 4 9475 \N +385129 2025-10-15 20:37:20.168745+00 2025-10-15 20:37:20.168757+00 f t SUBTOTAL 0.00 1 9731 \N +385130 2025-10-15 20:37:20.171261+00 2025-10-15 20:37:20.171269+00 f t DESCUENTO 0.00 2 9731 \N +385131 2025-10-15 20:37:20.172611+00 2025-10-15 20:37:20.172616+00 f t TOTAL 0.00 3 9731 \N +385132 2025-10-15 20:37:20.173712+00 2025-10-15 20:37:20.173717+00 f t ADELANTO 0.00 4 9731 \N +416032 2025-10-25 21:19:15.741149+00 2025-10-25 21:19:15.741162+00 f t SUBTOTAL 0.00 1 10513 \N +388813 2025-10-17 00:03:58.356224+00 2025-10-17 00:03:58.356236+00 f t SUBTOTAL 80000.00 1 9836 \N +388814 2025-10-17 00:03:58.358895+00 2025-10-17 00:03:58.358907+00 f t DESCUENTO 0.00 2 9836 \N +388815 2025-10-17 00:03:58.360425+00 2025-10-17 00:03:58.360435+00 f t TOTAL 80000.00 3 9836 \N +388816 2025-10-17 00:03:58.361645+00 2025-10-17 00:03:58.361654+00 f t ADELANTO 12000.00 4 9836 \N +389062 2025-10-17 00:53:48.275858+00 2025-10-17 00:53:48.275869+00 f t DESCUENTO 0.00 2 9849 \N +389063 2025-10-17 00:53:48.277537+00 2025-10-17 00:53:48.277543+00 f t TOTAL 0.00 3 9849 \N +389064 2025-10-17 00:53:48.278675+00 2025-10-17 00:53:48.27868+00 f t ADELANTO 0.00 4 9849 \N +380793 2025-10-14 03:21:19.850095+00 2025-10-14 03:21:19.850103+00 f t SUBTOTAL 55000.00 1 9598 \N +380794 2025-10-14 03:21:19.851851+00 2025-10-14 03:21:19.851859+00 f t DESCUENTO 0.00 2 9598 \N +380795 2025-10-14 03:21:19.853068+00 2025-10-14 03:21:19.853074+00 f t TOTAL 55000.00 3 9598 \N +380796 2025-10-14 03:21:19.8541+00 2025-10-14 03:21:19.854107+00 f t ADELANTO 11000.00 4 9598 \N +381545 2025-10-14 15:40:02.776088+00 2025-10-14 15:40:02.776103+00 f t SUBTOTAL 0.00 1 9620 \N +381546 2025-10-14 15:40:02.779878+00 2025-10-14 15:40:02.779892+00 f t DESCUENTO 0.00 2 9620 \N +381547 2025-10-14 15:40:02.787478+00 2025-10-14 15:40:02.787493+00 f t TOTAL 0.00 3 9620 \N +381548 2025-10-14 15:40:02.812192+00 2025-10-14 15:40:02.812206+00 f t ADELANTO 0.00 4 9620 \N +381665 2025-10-14 16:49:20.32241+00 2025-10-14 16:49:20.32242+00 f t SUBTOTAL 0.00 1 9625 \N +381666 2025-10-14 16:49:20.324521+00 2025-10-14 16:49:20.324531+00 f t DESCUENTO 0.00 2 9625 \N +381667 2025-10-14 16:49:20.325923+00 2025-10-14 16:49:20.325931+00 f t TOTAL 0.00 3 9625 \N +381668 2025-10-14 16:49:20.327098+00 2025-10-14 16:49:20.327105+00 f t ADELANTO 0.00 4 9625 \N +381785 2025-10-14 17:39:45.936087+00 2025-10-14 17:39:45.936096+00 f t SUBTOTAL 0.00 1 9630 \N +381786 2025-10-14 17:39:45.937472+00 2025-10-14 17:39:45.93748+00 f t DESCUENTO 0.00 2 9630 \N +381787 2025-10-14 17:39:45.938524+00 2025-10-14 17:39:45.93853+00 f t TOTAL 0.00 3 9630 \N +381788 2025-10-14 17:39:45.939455+00 2025-10-14 17:39:45.939461+00 f t ADELANTO 0.00 4 9630 \N +376561 2025-10-13 04:44:35.372762+00 2025-10-13 04:44:35.372771+00 f t SUBTOTAL 55000.00 1 9491 \N +376562 2025-10-13 04:44:35.374335+00 2025-10-13 04:44:35.374342+00 f t DESCUENTO 0.00 2 9491 \N +376563 2025-10-13 04:44:35.375403+00 2025-10-13 04:44:35.375409+00 f t TOTAL 55000.00 3 9491 \N +376564 2025-10-13 04:44:35.376369+00 2025-10-13 04:44:35.376373+00 f t ADELANTO 11000.00 4 9491 \N +376581 2025-10-13 04:45:00.580528+00 2025-10-13 04:45:00.580538+00 f t SUBTOTAL 46000.00 1 9490 \N +376582 2025-10-13 04:45:00.582679+00 2025-10-13 04:45:00.582689+00 f t DESCUENTO 0.00 2 9490 \N +376583 2025-10-13 04:45:00.584112+00 2025-10-13 04:45:00.584119+00 f t TOTAL 46000.00 3 9490 \N +376584 2025-10-13 04:45:00.585315+00 2025-10-13 04:45:00.585322+00 f t ADELANTO 11000.00 4 9490 \N +390813 2025-10-17 15:45:24.231718+00 2025-10-17 15:45:24.231727+00 f t SUBTOTAL 0.00 1 9898 \N +390814 2025-10-17 15:45:24.232998+00 2025-10-17 15:45:24.233005+00 f t DESCUENTO 0.00 2 9898 \N +390815 2025-10-17 15:45:24.234212+00 2025-10-17 15:45:24.234218+00 f t TOTAL 0.00 3 9898 \N +390816 2025-10-17 15:45:24.23535+00 2025-10-17 15:45:24.235356+00 f t ADELANTO 0.00 4 9898 \N +376617 2025-10-13 04:46:57.110408+00 2025-10-13 04:46:57.110418+00 f t SUBTOTAL 162000.00 1 9492 \N +376618 2025-10-13 04:46:57.112611+00 2025-10-13 04:46:57.112623+00 f t DESCUENTO 0.00 2 9492 \N +376619 2025-10-13 04:46:57.114254+00 2025-10-13 04:46:57.114263+00 f t TOTAL 162000.00 3 9492 \N +376620 2025-10-13 04:46:57.115682+00 2025-10-13 04:46:57.11569+00 f t ADELANTO 23000.00 4 9492 \N +391181 2025-10-17 17:21:32.73395+00 2025-10-17 17:21:32.733959+00 f t SUBTOTAL 23000.00 1 9906 \N +391182 2025-10-17 17:21:32.735153+00 2025-10-17 17:21:32.735161+00 f t DESCUENTO 0.00 2 9906 \N +391183 2025-10-17 17:21:32.736068+00 2025-10-17 17:21:32.736076+00 f t TOTAL 23000.00 3 9906 \N +391184 2025-10-17 17:21:32.736831+00 2025-10-17 17:21:32.736837+00 f t ADELANTO 5500.00 4 9906 \N +376645 2025-10-13 04:49:20.283591+00 2025-10-13 04:49:20.283604+00 f t SUBTOTAL 87400.00 1 9493 \N +376646 2025-10-13 04:49:20.285312+00 2025-10-13 04:49:20.285322+00 f t DESCUENTO 0.00 2 9493 \N +376647 2025-10-13 04:49:20.286579+00 2025-10-13 04:49:20.286587+00 f t TOTAL 87400.00 3 9493 \N +376648 2025-10-13 04:49:20.288594+00 2025-10-13 04:49:20.288604+00 f t ADELANTO 46900.00 4 9493 \N +383365 2025-10-15 10:33:49.566367+00 2025-10-15 10:33:49.566379+00 f t SUBTOTAL 55000.00 1 9676 \N +383366 2025-10-15 10:33:49.569371+00 2025-10-15 10:33:49.569383+00 f t DESCUENTO 0.00 2 9676 \N +383367 2025-10-15 10:33:49.571258+00 2025-10-15 10:33:49.571272+00 f t TOTAL 55000.00 3 9676 \N +383368 2025-10-15 10:33:49.572737+00 2025-10-15 10:33:49.572745+00 f t ADELANTO 11000.00 4 9676 \N +376653 2025-10-13 05:04:38.857933+00 2025-10-13 05:04:38.857943+00 f t SUBTOTAL 0.00 1 9494 \N +376654 2025-10-13 05:04:38.859423+00 2025-10-13 05:04:38.85943+00 f t DESCUENTO 0.00 2 9494 \N +376655 2025-10-13 05:04:38.860949+00 2025-10-13 05:04:38.860955+00 f t TOTAL 0.00 3 9494 \N +376656 2025-10-13 05:04:38.862155+00 2025-10-13 05:04:38.862162+00 f t ADELANTO 0.00 4 9494 \N +376661 2025-10-13 05:14:22.874319+00 2025-10-13 05:14:22.874333+00 f t SUBTOTAL 0.00 1 9495 \N +376662 2025-10-13 05:14:22.876178+00 2025-10-13 05:14:22.87619+00 f t DESCUENTO 0.00 2 9495 \N +376663 2025-10-13 05:14:22.877786+00 2025-10-13 05:14:22.877797+00 f t TOTAL 0.00 3 9495 \N +376664 2025-10-13 05:14:22.879211+00 2025-10-13 05:14:22.87922+00 f t ADELANTO 0.00 4 9495 \N +384201 2025-10-15 15:07:37.463075+00 2025-10-15 15:07:37.463084+00 f t SUBTOTAL 30000.00 1 9697 \N +384202 2025-10-15 15:07:37.465161+00 2025-10-15 15:07:37.46517+00 f t DESCUENTO 0.00 2 9697 \N +384203 2025-10-15 15:07:37.466485+00 2025-10-15 15:07:37.466492+00 f t TOTAL 30000.00 3 9697 \N +384204 2025-10-15 15:07:37.467683+00 2025-10-15 15:07:37.467691+00 f t ADELANTO 30000.00 4 9697 \N +391833 2025-10-17 19:49:12.550051+00 2025-10-17 19:49:12.550059+00 f t SUBTOTAL 46000.00 1 9921 \N +391834 2025-10-17 19:49:12.551735+00 2025-10-17 19:49:12.551741+00 f t DESCUENTO 0.00 2 9921 \N +391835 2025-10-17 19:49:12.552758+00 2025-10-17 19:49:12.552764+00 f t TOTAL 46000.00 3 9921 \N +391836 2025-10-17 19:49:12.553687+00 2025-10-17 19:49:12.553694+00 f t ADELANTO 11000.00 4 9921 \N +384829 2025-10-15 19:06:03.986086+00 2025-10-15 19:06:03.986095+00 f t SUBTOTAL 70000.00 1 9719 \N +384830 2025-10-15 19:06:03.988105+00 2025-10-15 19:06:03.988114+00 f t DESCUENTO 0.00 2 9719 \N +384831 2025-10-15 19:06:03.989532+00 2025-10-15 19:06:03.989539+00 f t TOTAL 70000.00 3 9719 \N +384832 2025-10-15 19:06:03.991022+00 2025-10-15 19:06:03.991031+00 f t ADELANTO 19000.00 4 9719 \N +385061 2025-10-15 20:29:57.637029+00 2025-10-15 20:29:57.637039+00 f t SUBTOTAL 69000.00 1 9729 \N +385062 2025-10-15 20:29:57.63909+00 2025-10-15 20:29:57.639098+00 f t DESCUENTO 0.00 2 9729 \N +385063 2025-10-15 20:29:57.640667+00 2025-10-15 20:29:57.640673+00 f t TOTAL 69000.00 3 9729 \N +385064 2025-10-15 20:29:57.641865+00 2025-10-15 20:29:57.641871+00 f t ADELANTO 16500.00 4 9729 \N +376745 2025-10-13 05:38:09.441413+00 2025-10-13 05:38:09.441422+00 f t SUBTOTAL 70000.00 1 9496 \N +376746 2025-10-13 05:38:09.443638+00 2025-10-13 05:38:09.443646+00 f t DESCUENTO 0.00 2 9496 \N +376747 2025-10-13 05:38:09.444838+00 2025-10-13 05:38:09.444847+00 f t TOTAL 70000.00 3 9496 \N +376748 2025-10-13 05:38:09.446046+00 2025-10-13 05:38:09.446051+00 f t ADELANTO 19000.00 4 9496 \N +380517 2025-10-14 01:25:06.025392+00 2025-10-14 01:25:06.025403+00 f t SUBTOTAL 55000.00 1 9593 \N +380518 2025-10-14 01:25:06.02754+00 2025-10-14 01:25:06.02755+00 f t DESCUENTO 0.00 2 9593 \N +380519 2025-10-14 01:25:06.029747+00 2025-10-14 01:25:06.029759+00 f t TOTAL 55000.00 3 9593 \N +380520 2025-10-14 01:25:06.031711+00 2025-10-14 01:25:06.031722+00 f t ADELANTO 11000.00 4 9593 \N +381057 2025-10-14 13:27:16.197205+00 2025-10-14 13:27:16.197215+00 f t SUBTOTAL 0.00 1 9606 \N +381058 2025-10-14 13:27:16.199608+00 2025-10-14 13:27:16.199615+00 f t DESCUENTO 0.00 2 9606 \N +381059 2025-10-14 13:27:16.20113+00 2025-10-14 13:27:16.201136+00 f t TOTAL 0.00 3 9606 \N +381060 2025-10-14 13:27:16.202478+00 2025-10-14 13:27:16.202485+00 f t ADELANTO 0.00 4 9606 \N +398773 2025-10-20 13:40:20.563921+00 2025-10-20 13:40:20.56393+00 f t SUBTOTAL 98400.00 1 10096 \N +398774 2025-10-20 13:40:20.56578+00 2025-10-20 13:40:20.565788+00 f t DESCUENTO 0.00 2 10096 \N +398775 2025-10-20 13:40:20.566952+00 2025-10-20 13:40:20.566958+00 f t TOTAL 98400.00 3 10096 \N +398776 2025-10-20 13:40:20.568214+00 2025-10-20 13:40:20.568244+00 f t ADELANTO 57900.00 4 10096 \N +398909 2025-10-20 13:54:30.931339+00 2025-10-20 13:54:30.931352+00 f t SUBTOTAL 0.00 1 10101 \N +398910 2025-10-20 13:54:30.933227+00 2025-10-20 13:54:30.933236+00 f t DESCUENTO 0.00 2 10101 \N +381669 2025-10-14 16:55:18.667881+00 2025-10-14 16:55:18.66789+00 f t SUBTOTAL 46000.00 1 9624 \N +381670 2025-10-14 16:55:18.669958+00 2025-10-14 16:55:18.669965+00 f t DESCUENTO 0.00 2 9624 \N +381671 2025-10-14 16:55:18.671283+00 2025-10-14 16:55:18.671289+00 f t TOTAL 46000.00 3 9624 \N +381672 2025-10-14 16:55:18.67242+00 2025-10-14 16:55:18.672428+00 f t ADELANTO 11000.00 4 9624 \N +376869 2025-10-13 06:43:58.406275+00 2025-10-13 06:43:58.406285+00 f t SUBTOTAL 210000.00 1 9497 \N +376870 2025-10-13 06:43:58.407977+00 2025-10-13 06:43:58.407985+00 f t DESCUENTO 0.00 2 9497 \N +376871 2025-10-13 06:43:58.40916+00 2025-10-13 06:43:58.409167+00 f t TOTAL 210000.00 3 9497 \N +376872 2025-10-13 06:43:58.410183+00 2025-10-13 06:43:58.410189+00 f t ADELANTO 57000.00 4 9497 \N +382529 2025-10-14 21:28:37.467733+00 2025-10-14 21:28:37.467743+00 f t SUBTOTAL 0.00 1 9650 \N +382530 2025-10-14 21:28:37.470403+00 2025-10-14 21:28:37.470416+00 f t DESCUENTO 0.00 2 9650 \N +382531 2025-10-14 21:28:37.472047+00 2025-10-14 21:28:37.472054+00 f t TOTAL 0.00 3 9650 \N +382532 2025-10-14 21:28:37.473458+00 2025-10-14 21:28:37.473465+00 f t ADELANTO 0.00 4 9650 \N +376897 2025-10-13 07:45:00.155294+00 2025-10-13 07:45:00.155303+00 f t SUBTOTAL 46000.00 1 9498 \N +376898 2025-10-13 07:45:00.156943+00 2025-10-13 07:45:00.156952+00 f t DESCUENTO 0.00 2 9498 \N +376899 2025-10-13 07:45:00.158711+00 2025-10-13 07:45:00.15872+00 f t TOTAL 46000.00 3 9498 \N +376900 2025-10-13 07:45:00.161832+00 2025-10-13 07:45:00.161839+00 f t ADELANTO 11000.00 4 9498 \N +383053 2025-10-15 01:46:02.877678+00 2025-10-15 01:46:02.877692+00 f t SUBTOTAL 99400.00 1 9665 \N +383054 2025-10-15 01:46:02.880367+00 2025-10-15 01:46:02.880378+00 f t DESCUENTO 0.00 2 9665 \N +383055 2025-10-15 01:46:02.882355+00 2025-10-15 01:46:02.882366+00 f t TOTAL 99400.00 3 9665 \N +383056 2025-10-15 01:46:02.884124+00 2025-10-15 01:46:02.884136+00 f t ADELANTO 58900.00 4 9665 \N +383261 2025-10-15 03:55:02.181283+00 2025-10-15 03:55:02.181298+00 f t SUBTOTAL 0.00 1 9672 \N +383262 2025-10-15 03:55:02.187069+00 2025-10-15 03:55:02.187081+00 f t DESCUENTO 0.00 2 9672 \N +383263 2025-10-15 03:55:02.189756+00 2025-10-15 03:55:02.189769+00 f t TOTAL 0.00 3 9672 \N +383264 2025-10-15 03:55:02.19406+00 2025-10-15 03:55:02.194074+00 f t ADELANTO 0.00 4 9672 \N +376933 2025-10-13 08:18:52.589512+00 2025-10-13 08:18:52.589524+00 f t SUBTOTAL 55000.00 1 9499 \N +376934 2025-10-13 08:18:52.59163+00 2025-10-13 08:18:52.591641+00 f t DESCUENTO 0.00 2 9499 \N +376935 2025-10-13 08:18:52.593087+00 2025-10-13 08:18:52.593097+00 f t TOTAL 55000.00 3 9499 \N +376936 2025-10-13 08:18:52.595945+00 2025-10-13 08:18:52.595953+00 f t ADELANTO 11000.00 4 9499 \N +383749 2025-10-15 13:48:10.19993+00 2025-10-15 13:48:10.199939+00 f t SUBTOTAL 78000.00 1 9684 \N +383750 2025-10-15 13:48:10.202021+00 2025-10-15 13:48:10.202029+00 f t DESCUENTO 0.00 2 9684 \N +383751 2025-10-15 13:48:10.203292+00 2025-10-15 13:48:10.203299+00 f t TOTAL 78000.00 3 9684 \N +383752 2025-10-15 13:48:10.204594+00 2025-10-15 13:48:10.204603+00 f t ADELANTO 21500.00 4 9684 \N +383861 2025-10-15 14:36:17.47924+00 2025-10-15 14:36:17.479252+00 f t SUBTOTAL 13200.00 1 9691 \N +383862 2025-10-15 14:36:17.481472+00 2025-10-15 14:36:17.481482+00 f t DESCUENTO 0.00 2 9691 \N +383863 2025-10-15 14:36:17.483172+00 2025-10-15 14:36:17.483182+00 f t TOTAL 13200.00 3 9691 \N +383864 2025-10-15 14:36:17.484582+00 2025-10-15 14:36:17.484591+00 f t ADELANTO 13200.00 4 9691 \N +384209 2025-10-15 15:17:58.956768+00 2025-10-15 15:17:58.956778+00 f t SUBTOTAL 0.00 1 9700 \N +376965 2025-10-13 08:20:42.417223+00 2025-10-13 08:20:42.417235+00 f t SUBTOTAL 55000.00 1 9500 \N +376966 2025-10-13 08:20:42.419601+00 2025-10-13 08:20:42.419612+00 f t DESCUENTO 0.00 2 9500 \N +376967 2025-10-13 08:20:42.421273+00 2025-10-13 08:20:42.421282+00 f t TOTAL 55000.00 3 9500 \N +376968 2025-10-13 08:20:42.422906+00 2025-10-13 08:20:42.422915+00 f t ADELANTO 11000.00 4 9500 \N +384210 2025-10-15 15:17:58.958486+00 2025-10-15 15:17:58.958494+00 f t DESCUENTO 0.00 2 9700 \N +384211 2025-10-15 15:17:58.959973+00 2025-10-15 15:17:58.95998+00 f t TOTAL 0.00 3 9700 \N +384212 2025-10-15 15:17:58.961336+00 2025-10-15 15:17:58.961342+00 f t ADELANTO 0.00 4 9700 \N +384293 2025-10-15 16:01:04.243643+00 2025-10-15 16:01:04.243658+00 f t SUBTOTAL 0.00 1 9703 \N +376973 2025-10-13 09:52:22.446802+00 2025-10-13 09:52:22.446812+00 f t SUBTOTAL 0.00 1 9501 \N +376974 2025-10-13 09:52:22.448106+00 2025-10-13 09:52:22.448113+00 f t DESCUENTO 0.00 2 9501 \N +376975 2025-10-13 09:52:22.449225+00 2025-10-13 09:52:22.449231+00 f t TOTAL 0.00 3 9501 \N +376976 2025-10-13 09:52:22.450194+00 2025-10-13 09:52:22.4502+00 f t ADELANTO 0.00 4 9501 \N +384294 2025-10-15 16:01:04.246416+00 2025-10-15 16:01:04.246424+00 f t DESCUENTO 0.00 2 9703 \N +384295 2025-10-15 16:01:04.248142+00 2025-10-15 16:01:04.248153+00 f t TOTAL 0.00 3 9703 \N +384296 2025-10-15 16:01:04.249777+00 2025-10-15 16:01:04.249817+00 f t ADELANTO 0.00 4 9703 \N +384765 2025-10-15 18:46:28.024532+00 2025-10-15 18:46:28.024543+00 f t SUBTOTAL 78000.00 1 9718 \N +377001 2025-10-13 10:35:35.703677+00 2025-10-13 10:35:35.703686+00 f t SUBTOTAL 55000.00 1 9502 \N +377002 2025-10-13 10:35:35.705392+00 2025-10-13 10:35:35.7054+00 f t DESCUENTO 0.00 2 9502 \N +377003 2025-10-13 10:35:35.706817+00 2025-10-13 10:35:35.706826+00 f t TOTAL 55000.00 3 9502 \N +377004 2025-10-13 10:35:35.708315+00 2025-10-13 10:35:35.708322+00 f t ADELANTO 11000.00 4 9502 \N +384766 2025-10-15 18:46:28.026402+00 2025-10-15 18:46:28.026411+00 f t DESCUENTO 0.00 2 9718 \N +384767 2025-10-15 18:46:28.027868+00 2025-10-15 18:46:28.027877+00 f t TOTAL 78000.00 3 9718 \N +384768 2025-10-15 18:46:28.029551+00 2025-10-15 18:46:28.02956+00 f t ADELANTO 21500.00 4 9718 \N +377009 2025-10-13 10:50:24.238154+00 2025-10-13 10:50:24.238165+00 f t SUBTOTAL 0.00 1 9503 \N +377010 2025-10-13 10:50:24.239621+00 2025-10-13 10:50:24.239628+00 f t DESCUENTO 0.00 2 9503 \N +377011 2025-10-13 10:50:24.24078+00 2025-10-13 10:50:24.240786+00 f t TOTAL 0.00 3 9503 \N +377012 2025-10-13 10:50:24.241762+00 2025-10-13 10:50:24.241767+00 f t ADELANTO 0.00 4 9503 \N +385465 2025-10-15 22:28:07.416639+00 2025-10-15 22:28:07.416649+00 f t SUBTOTAL 0.00 1 9740 \N +385466 2025-10-15 22:28:07.418369+00 2025-10-15 22:28:07.418381+00 f t DESCUENTO 0.00 2 9740 \N +377073 2025-10-13 11:56:58.242956+00 2025-10-13 11:56:58.24297+00 f t SUBTOTAL 0.00 1 9505 \N +377074 2025-10-13 11:56:58.245184+00 2025-10-13 11:56:58.245196+00 f t DESCUENTO 0.00 2 9505 \N +377075 2025-10-13 11:56:58.246759+00 2025-10-13 11:56:58.246769+00 f t TOTAL 0.00 3 9505 \N +377076 2025-10-13 11:56:58.248257+00 2025-10-13 11:56:58.248266+00 f t ADELANTO 0.00 4 9505 \N +389609 2025-10-17 03:08:02.431015+00 2025-10-17 03:08:02.431027+00 f t SUBTOTAL 70000.00 1 9862 \N +389610 2025-10-17 03:08:02.433098+00 2025-10-17 03:08:02.433109+00 f t DESCUENTO 0.00 2 9862 \N +389611 2025-10-17 03:08:02.435244+00 2025-10-17 03:08:02.435252+00 f t TOTAL 70000.00 3 9862 \N +389612 2025-10-17 03:08:02.43668+00 2025-10-17 03:08:02.436686+00 f t ADELANTO 19000.00 4 9862 \N +398911 2025-10-20 13:54:30.934939+00 2025-10-20 13:54:30.934948+00 f t TOTAL 0.00 3 10101 \N +398912 2025-10-20 13:54:30.936463+00 2025-10-20 13:54:30.936472+00 f t ADELANTO 0.00 4 10101 \N +389937 2025-10-17 03:35:40.257287+00 2025-10-17 03:35:40.2573+00 f t SUBTOTAL 70000.00 1 9868 \N +389938 2025-10-17 03:35:40.25864+00 2025-10-17 03:35:40.258647+00 f t DESCUENTO 0.00 2 9868 \N +389939 2025-10-17 03:35:40.259499+00 2025-10-17 03:35:40.259505+00 f t TOTAL 70000.00 3 9868 \N +389940 2025-10-17 03:35:40.260262+00 2025-10-17 03:35:40.260267+00 f t ADELANTO 19000.00 4 9868 \N +399413 2025-10-20 16:42:38.65122+00 2025-10-20 16:42:38.651229+00 f t SUBTOTAL 0.00 1 10118 \N +399414 2025-10-20 16:42:38.653338+00 2025-10-20 16:42:38.653351+00 f t DESCUENTO 0.00 2 10118 \N +399415 2025-10-20 16:42:38.654858+00 2025-10-20 16:42:38.654864+00 f t TOTAL 0.00 3 10118 \N +399416 2025-10-20 16:42:38.656162+00 2025-10-20 16:42:38.656168+00 f t ADELANTO 0.00 4 10118 \N +399521 2025-10-20 16:51:13.077777+00 2025-10-20 16:51:13.077786+00 f t SUBTOTAL 68000.00 1 10120 \N +399522 2025-10-20 16:51:13.079638+00 2025-10-20 16:51:13.079645+00 f t DESCUENTO 0.00 2 10120 \N +381677 2025-10-14 17:00:12.344195+00 2025-10-14 17:00:12.344206+00 f t SUBTOTAL 0.00 1 9626 \N +381678 2025-10-14 17:00:12.347052+00 2025-10-14 17:00:12.347066+00 f t DESCUENTO 0.00 2 9626 \N +381679 2025-10-14 17:00:12.350288+00 2025-10-14 17:00:12.3503+00 f t TOTAL 0.00 3 9626 \N +381680 2025-10-14 17:00:12.353217+00 2025-10-14 17:00:12.353231+00 f t ADELANTO 0.00 4 9626 \N +381921 2025-10-14 18:33:28.350374+00 2025-10-14 18:33:28.350383+00 f t SUBTOTAL 13200.00 1 9637 \N +381922 2025-10-14 18:33:28.352724+00 2025-10-14 18:33:28.352736+00 f t DESCUENTO 0.00 2 9637 \N +381923 2025-10-14 18:33:28.354247+00 2025-10-14 18:33:28.354254+00 f t TOTAL 13200.00 3 9637 \N +381924 2025-10-14 18:33:28.355502+00 2025-10-14 18:33:28.355511+00 f t ADELANTO 13200.00 4 9637 \N +382953 2025-10-15 01:23:49.782676+00 2025-10-15 01:23:49.782689+00 f t SUBTOTAL 30000.00 1 9663 \N +382954 2025-10-15 01:23:49.78508+00 2025-10-15 01:23:49.785094+00 f t DESCUENTO 0.00 2 9663 \N +382955 2025-10-15 01:23:49.786609+00 2025-10-15 01:23:49.786618+00 f t TOTAL 30000.00 3 9663 \N +382956 2025-10-15 01:23:49.787988+00 2025-10-15 01:23:49.787995+00 f t ADELANTO 30000.00 4 9663 \N +383165 2025-10-15 03:09:09.326398+00 2025-10-15 03:09:09.326409+00 f t SUBTOTAL 0.00 1 9670 \N +383166 2025-10-15 03:09:09.328713+00 2025-10-15 03:09:09.32872+00 f t DESCUENTO 0.00 2 9670 \N +383167 2025-10-15 03:09:09.330159+00 2025-10-15 03:09:09.330167+00 f t TOTAL 0.00 3 9670 \N +383168 2025-10-15 03:09:09.331597+00 2025-10-15 03:09:09.331603+00 f t ADELANTO 0.00 4 9670 \N +383269 2025-10-15 08:19:04.122426+00 2025-10-15 08:19:04.122439+00 f t SUBTOTAL 0.00 1 9673 \N +383270 2025-10-15 08:19:04.124281+00 2025-10-15 08:19:04.124289+00 f t DESCUENTO 0.00 2 9673 \N +383271 2025-10-15 08:19:04.125697+00 2025-10-15 08:19:04.125705+00 f t TOTAL 0.00 3 9673 \N +383272 2025-10-15 08:19:04.12703+00 2025-10-15 08:19:04.127036+00 f t ADELANTO 0.00 4 9673 \N +383561 2025-10-15 12:12:15.72615+00 2025-10-15 12:12:15.72616+00 f t SUBTOTAL 0.00 1 9680 \N +383562 2025-10-15 12:12:15.729345+00 2025-10-15 12:12:15.729354+00 f t DESCUENTO 0.00 2 9680 \N +383563 2025-10-15 12:12:15.730941+00 2025-10-15 12:12:15.730947+00 f t TOTAL 0.00 3 9680 \N +383564 2025-10-15 12:12:15.732309+00 2025-10-15 12:12:15.732317+00 f t ADELANTO 0.00 4 9680 \N +391189 2025-10-17 17:25:44.969856+00 2025-10-17 17:25:44.969867+00 f t SUBTOTAL 0.00 1 9907 \N +391190 2025-10-17 17:25:44.971225+00 2025-10-17 17:25:44.971232+00 f t DESCUENTO 0.00 2 9907 \N +391191 2025-10-17 17:25:44.972265+00 2025-10-17 17:25:44.97227+00 f t TOTAL 0.00 3 9907 \N +391192 2025-10-17 17:25:44.973179+00 2025-10-17 17:25:44.973185+00 f t ADELANTO 0.00 4 9907 \N +377273 2025-10-13 12:03:54.430174+00 2025-10-13 12:03:54.430183+00 f t SUBTOTAL 46000.00 1 9506 \N +377274 2025-10-13 12:03:54.432045+00 2025-10-13 12:03:54.432051+00 f t DESCUENTO 0.00 2 9506 \N +377275 2025-10-13 12:03:54.43324+00 2025-10-13 12:03:54.433249+00 f t TOTAL 46000.00 3 9506 \N +377276 2025-10-13 12:03:54.434353+00 2025-10-13 12:03:54.434359+00 f t ADELANTO 11000.00 4 9506 \N +384841 2025-10-15 19:09:24.896276+00 2025-10-15 19:09:24.896285+00 f t SUBTOTAL 46000.00 1 9720 \N +384842 2025-10-15 19:09:24.898382+00 2025-10-15 19:09:24.898389+00 f t DESCUENTO 0.00 2 9720 \N +384843 2025-10-15 19:09:24.899749+00 2025-10-15 19:09:24.899756+00 f t TOTAL 46000.00 3 9720 \N +384844 2025-10-15 19:09:24.900856+00 2025-10-15 19:09:24.900863+00 f t ADELANTO 11000.00 4 9720 \N +392049 2025-10-17 21:05:07.93933+00 2025-10-17 21:05:07.939345+00 f t SUBTOTAL 0.00 1 9928 \N +392050 2025-10-17 21:05:07.94139+00 2025-10-17 21:05:07.9414+00 f t DESCUENTO 0.00 2 9928 \N +392051 2025-10-17 21:05:07.94331+00 2025-10-17 21:05:07.943322+00 f t TOTAL 0.00 3 9928 \N +392052 2025-10-17 21:05:07.944943+00 2025-10-17 21:05:07.944952+00 f t ADELANTO 0.00 4 9928 \N +384993 2025-10-15 19:28:59.486888+00 2025-10-15 19:28:59.486897+00 f t SUBTOTAL 60000.00 1 9725 \N +384994 2025-10-15 19:28:59.488735+00 2025-10-15 19:28:59.488743+00 f t DESCUENTO 0.00 2 9725 \N +384995 2025-10-15 19:28:59.490031+00 2025-10-15 19:28:59.490039+00 f t TOTAL 60000.00 3 9725 \N +384996 2025-10-15 19:28:59.49116+00 2025-10-15 19:28:59.491166+00 f t ADELANTO 60000.00 4 9725 \N +377325 2025-10-13 12:10:18.312439+00 2025-10-13 12:10:18.312448+00 f t SUBTOTAL 92000.00 1 9507 \N +377326 2025-10-13 12:10:18.314049+00 2025-10-13 12:10:18.314055+00 f t DESCUENTO 0.00 2 9507 \N +377327 2025-10-13 12:10:18.315214+00 2025-10-13 12:10:18.315221+00 f t TOTAL 92000.00 3 9507 \N +377328 2025-10-13 12:10:18.316304+00 2025-10-13 12:10:18.31631+00 f t ADELANTO 22000.00 4 9507 \N +377337 2025-10-13 12:48:59.677764+00 2025-10-13 12:48:59.677774+00 f t SUBTOTAL 55000.00 1 9508 \N +377338 2025-10-13 12:48:59.679276+00 2025-10-13 12:48:59.679283+00 f t DESCUENTO 0.00 2 9508 \N +377339 2025-10-13 12:48:59.680536+00 2025-10-13 12:48:59.680543+00 f t TOTAL 55000.00 3 9508 \N +377340 2025-10-13 12:48:59.68157+00 2025-10-13 12:48:59.681576+00 f t ADELANTO 11000.00 4 9508 \N +392321 2025-10-17 23:11:26.69146+00 2025-10-17 23:11:26.691472+00 f t SUBTOTAL 0.00 1 9936 \N +392322 2025-10-17 23:11:26.693428+00 2025-10-17 23:11:26.693439+00 f t DESCUENTO 0.00 2 9936 \N +377349 2025-10-13 13:10:55.93116+00 2025-10-13 13:10:55.931175+00 f t SUBTOTAL 46000.00 1 9509 \N +377350 2025-10-13 13:10:55.932904+00 2025-10-13 13:10:55.932912+00 f t DESCUENTO 0.00 2 9509 \N +377351 2025-10-13 13:10:55.934046+00 2025-10-13 13:10:55.934051+00 f t TOTAL 46000.00 3 9509 \N +377352 2025-10-13 13:10:55.935332+00 2025-10-13 13:10:55.935341+00 f t ADELANTO 11000.00 4 9509 \N +392323 2025-10-17 23:11:26.69497+00 2025-10-17 23:11:26.69498+00 f t TOTAL 0.00 3 9936 \N +392324 2025-10-17 23:11:26.696412+00 2025-10-17 23:11:26.696421+00 f t ADELANTO 0.00 4 9936 \N +388509 2025-10-16 23:12:08.919056+00 2025-10-16 23:12:08.919066+00 f t SUBTOTAL 0.00 1 9835 \N +388510 2025-10-16 23:12:08.92156+00 2025-10-16 23:12:08.921568+00 f t DESCUENTO 0.00 2 9835 \N +388511 2025-10-16 23:12:08.923002+00 2025-10-16 23:12:08.923011+00 f t TOTAL 0.00 3 9835 \N +388512 2025-10-16 23:12:08.924423+00 2025-10-16 23:12:08.924429+00 f t ADELANTO 0.00 4 9835 \N +379913 2025-10-13 23:50:19.239051+00 2025-10-13 23:50:19.239062+00 f t SUBTOTAL 46000.00 1 9581 \N +379914 2025-10-13 23:50:19.240735+00 2025-10-13 23:50:19.240742+00 f t DESCUENTO 0.00 2 9581 \N +379915 2025-10-13 23:50:19.241944+00 2025-10-13 23:50:19.241952+00 f t TOTAL 46000.00 3 9581 \N +379916 2025-10-13 23:50:19.243096+00 2025-10-13 23:50:19.243104+00 f t ADELANTO 11000.00 4 9581 \N +416033 2025-10-25 21:19:15.742972+00 2025-10-25 21:19:15.742984+00 f t COSTO_SERVICIO 0.00 2 10513 \N +380377 2025-10-14 01:11:47.481107+00 2025-10-14 01:11:47.481117+00 f t SUBTOTAL 0.00 1 9590 \N +380378 2025-10-14 01:11:47.483485+00 2025-10-14 01:11:47.483496+00 f t DESCUENTO 0.00 2 9590 \N +380379 2025-10-14 01:11:47.485259+00 2025-10-14 01:11:47.485268+00 f t TOTAL 0.00 3 9590 \N +380380 2025-10-14 01:11:47.48675+00 2025-10-14 01:11:47.486758+00 f t ADELANTO 0.00 4 9590 \N +388829 2025-10-17 00:04:49.762244+00 2025-10-17 00:04:49.762254+00 f t SUBTOTAL 0.00 1 9845 \N +388830 2025-10-17 00:04:49.763638+00 2025-10-17 00:04:49.763645+00 f t DESCUENTO 0.00 2 9845 \N +388831 2025-10-17 00:04:49.764782+00 2025-10-17 00:04:49.764789+00 f t TOTAL 0.00 3 9845 \N +388832 2025-10-17 00:04:49.766181+00 2025-10-17 00:04:49.766188+00 f t ADELANTO 0.00 4 9845 \N +380941 2025-10-14 08:12:10.055108+00 2025-10-14 08:12:10.055121+00 f t SUBTOTAL 46000.00 1 9603 \N +380942 2025-10-14 08:12:10.056797+00 2025-10-14 08:12:10.056804+00 f t DESCUENTO 0.00 2 9603 \N +380943 2025-10-14 08:12:10.057878+00 2025-10-14 08:12:10.057884+00 f t TOTAL 46000.00 3 9603 \N +380944 2025-10-14 08:12:10.058979+00 2025-10-14 08:12:10.058984+00 f t ADELANTO 11000.00 4 9603 \N +377417 2025-10-13 13:22:18.476809+00 2025-10-13 13:22:18.476819+00 f t SUBTOTAL 241400.00 1 9510 \N +377418 2025-10-13 13:22:18.478438+00 2025-10-13 13:22:18.478445+00 f t DESCUENTO 0.00 2 9510 \N +377419 2025-10-13 13:22:18.479508+00 2025-10-13 13:22:18.479514+00 f t TOTAL 241400.00 3 9510 \N +377420 2025-10-13 13:22:18.480522+00 2025-10-13 13:22:18.48053+00 f t ADELANTO 85900.00 4 9510 \N +399037 2025-10-20 13:56:40.396409+00 2025-10-20 13:56:40.396416+00 f t SUBTOTAL 54000.00 1 10102 \N +399038 2025-10-20 13:56:40.398073+00 2025-10-20 13:56:40.398079+00 f t DESCUENTO 0.00 2 10102 \N +399039 2025-10-20 13:56:40.399068+00 2025-10-20 13:56:40.399073+00 f t TOTAL 54000.00 3 10102 \N +399040 2025-10-20 13:56:40.400026+00 2025-10-20 13:56:40.400033+00 f t ADELANTO 13500.00 4 10102 \N +381925 2025-10-14 18:38:56.965718+00 2025-10-14 18:38:56.965727+00 f t SUBTOTAL 46000.00 1 9636 \N +381926 2025-10-14 18:38:56.967484+00 2025-10-14 18:38:56.967491+00 f t DESCUENTO 0.00 2 9636 \N +381927 2025-10-14 18:38:56.968882+00 2025-10-14 18:38:56.968889+00 f t TOTAL 46000.00 3 9636 \N +377433 2025-10-13 13:23:59.872236+00 2025-10-13 13:23:59.872244+00 f t SUBTOTAL 55000.00 1 9504 \N +377434 2025-10-13 13:23:59.873805+00 2025-10-13 13:23:59.873812+00 f t DESCUENTO 0.00 2 9504 \N +377435 2025-10-13 13:23:59.874852+00 2025-10-13 13:23:59.874858+00 f t TOTAL 55000.00 3 9504 \N +377436 2025-10-13 13:23:59.875826+00 2025-10-13 13:23:59.875832+00 f t ADELANTO 11000.00 4 9504 \N +381928 2025-10-14 18:38:56.970197+00 2025-10-14 18:38:56.970206+00 f t ADELANTO 11000.00 4 9636 \N +382349 2025-10-14 21:07:48.766099+00 2025-10-14 21:07:48.766108+00 f t SUBTOTAL 70000.00 1 9649 \N +382350 2025-10-14 21:07:48.767875+00 2025-10-14 21:07:48.767883+00 f t DESCUENTO 0.00 2 9649 \N +382351 2025-10-14 21:07:48.769277+00 2025-10-14 21:07:48.769284+00 f t TOTAL 70000.00 3 9649 \N +382352 2025-10-14 21:07:48.770422+00 2025-10-14 21:07:48.770427+00 f t ADELANTO 19000.00 4 9649 \N +377477 2025-10-13 13:25:46.685618+00 2025-10-13 13:25:46.685628+00 f t SUBTOTAL 0.00 1 9511 \N +377478 2025-10-13 13:25:46.687436+00 2025-10-13 13:25:46.687445+00 f t DESCUENTO 0.00 2 9511 \N +377479 2025-10-13 13:25:46.688603+00 2025-10-13 13:25:46.688609+00 f t TOTAL 0.00 3 9511 \N +377480 2025-10-13 13:25:46.689808+00 2025-10-13 13:25:46.689817+00 f t ADELANTO 0.00 4 9511 \N +377481 2025-10-13 13:25:47.968653+00 2025-10-13 13:25:47.968665+00 f t SUBTOTAL 0.00 1 9512 \N +377482 2025-10-13 13:25:47.971439+00 2025-10-13 13:25:47.971447+00 f t DESCUENTO 0.00 2 9512 \N +377483 2025-10-13 13:25:47.974301+00 2025-10-13 13:25:47.974308+00 f t TOTAL 0.00 3 9512 \N +377484 2025-10-13 13:25:47.975433+00 2025-10-13 13:25:47.97544+00 f t ADELANTO 0.00 4 9512 \N +377517 2025-10-13 13:35:43.250202+00 2025-10-13 13:35:43.250213+00 f t SUBTOTAL 0.00 1 9513 \N +377518 2025-10-13 13:35:43.252343+00 2025-10-13 13:35:43.252353+00 f t DESCUENTO 0.00 2 9513 \N +377519 2025-10-13 13:35:43.253883+00 2025-10-13 13:35:43.253891+00 f t TOTAL 0.00 3 9513 \N +377520 2025-10-13 13:35:43.255283+00 2025-10-13 13:35:43.255291+00 f t ADELANTO 0.00 4 9513 \N +377529 2025-10-13 13:44:28.856051+00 2025-10-13 13:44:28.856059+00 f t SUBTOTAL 68000.00 1 9514 \N +377530 2025-10-13 13:44:28.857579+00 2025-10-13 13:44:28.857586+00 f t DESCUENTO 0.00 2 9514 \N +377531 2025-10-13 13:44:28.858997+00 2025-10-13 13:44:28.859003+00 f t TOTAL 68000.00 3 9514 \N +377532 2025-10-13 13:44:28.860176+00 2025-10-13 13:44:28.860184+00 f t ADELANTO 13000.00 4 9514 \N +377565 2025-10-13 13:47:41.653015+00 2025-10-13 13:47:41.653024+00 f t SUBTOTAL 55000.00 1 9515 \N +377566 2025-10-13 13:47:41.655099+00 2025-10-13 13:47:41.655109+00 f t DESCUENTO 0.00 2 9515 \N +377567 2025-10-13 13:47:41.656505+00 2025-10-13 13:47:41.656512+00 f t TOTAL 55000.00 3 9515 \N +377568 2025-10-13 13:47:41.657787+00 2025-10-13 13:47:41.657793+00 f t ADELANTO 11000.00 4 9515 \N +377573 2025-10-13 13:48:30.691171+00 2025-10-13 13:48:30.691185+00 f t SUBTOTAL 0.00 1 9516 \N +377574 2025-10-13 13:48:30.69305+00 2025-10-13 13:48:30.69306+00 f t DESCUENTO 0.00 2 9516 \N +377575 2025-10-13 13:48:30.694787+00 2025-10-13 13:48:30.694798+00 f t TOTAL 0.00 3 9516 \N +377576 2025-10-13 13:48:30.696289+00 2025-10-13 13:48:30.696298+00 f t ADELANTO 0.00 4 9516 \N +384693 2025-10-15 18:12:46.522725+00 2025-10-15 18:12:46.522738+00 f t SUBTOTAL 55000.00 1 9714 \N +384694 2025-10-15 18:12:46.526199+00 2025-10-15 18:12:46.526208+00 f t DESCUENTO 0.00 2 9714 \N +384695 2025-10-15 18:12:46.527845+00 2025-10-15 18:12:46.527855+00 f t TOTAL 55000.00 3 9714 \N +384696 2025-10-15 18:12:46.529413+00 2025-10-15 18:12:46.529422+00 f t ADELANTO 11000.00 4 9714 \N +377605 2025-10-13 13:51:56.099453+00 2025-10-13 13:51:56.099463+00 f t SUBTOTAL 46000.00 1 9517 \N +377606 2025-10-13 13:51:56.101285+00 2025-10-13 13:51:56.101295+00 f t DESCUENTO 0.00 2 9517 \N +377607 2025-10-13 13:51:56.102695+00 2025-10-13 13:51:56.102702+00 f t TOTAL 46000.00 3 9517 \N +377608 2025-10-13 13:51:56.103818+00 2025-10-13 13:51:56.103824+00 f t ADELANTO 11000.00 4 9517 \N +384849 2025-10-15 19:12:42.684507+00 2025-10-15 19:12:42.684517+00 f t SUBTOTAL 0.00 1 9721 \N +384850 2025-10-15 19:12:42.685904+00 2025-10-15 19:12:42.685911+00 f t DESCUENTO 0.00 2 9721 \N +384851 2025-10-15 19:12:42.686977+00 2025-10-15 19:12:42.686983+00 f t TOTAL 0.00 3 9721 \N +384852 2025-10-15 19:12:42.688023+00 2025-10-15 19:12:42.68803+00 f t ADELANTO 0.00 4 9721 \N +384997 2025-10-15 19:30:29.466605+00 2025-10-15 19:30:29.466617+00 f t SUBTOTAL 108700.00 1 9661 \N +384998 2025-10-15 19:30:29.468833+00 2025-10-15 19:30:29.468844+00 f t DESCUENTO 0.00 2 9661 \N +384999 2025-10-15 19:30:29.470495+00 2025-10-15 19:30:29.470505+00 f t TOTAL 108700.00 3 9661 \N +385000 2025-10-15 19:30:29.472033+00 2025-10-15 19:30:29.472042+00 f t ADELANTO 24200.00 4 9661 \N +377661 2025-10-13 13:56:29.627685+00 2025-10-13 13:56:29.627697+00 f t SUBTOTAL 55000.00 1 9518 \N +377662 2025-10-13 13:56:29.629678+00 2025-10-13 13:56:29.629689+00 f t DESCUENTO 0.00 2 9518 \N +377663 2025-10-13 13:56:29.631387+00 2025-10-13 13:56:29.631397+00 f t TOTAL 55000.00 3 9518 \N +377664 2025-10-13 13:56:29.63277+00 2025-10-13 13:56:29.632778+00 f t ADELANTO 11000.00 4 9518 \N +377673 2025-10-13 14:02:25.488666+00 2025-10-13 14:02:25.488676+00 f t SUBTOTAL 107000.00 1 9519 \N +377674 2025-10-13 14:02:25.490452+00 2025-10-13 14:02:25.490461+00 f t DESCUENTO 0.00 2 9519 \N +377675 2025-10-13 14:02:25.491941+00 2025-10-13 14:02:25.49195+00 f t TOTAL 107000.00 3 9519 \N +377676 2025-10-13 14:02:25.493188+00 2025-10-13 14:02:25.493194+00 f t ADELANTO 12000.00 4 9519 \N +398369 2025-10-20 13:15:44.972248+00 2025-10-20 13:15:44.972256+00 f t SUBTOTAL 171400.00 1 10087 \N +398370 2025-10-20 13:15:44.974218+00 2025-10-20 13:15:44.974223+00 f t DESCUENTO 0.00 2 10087 \N +398371 2025-10-20 13:15:44.975492+00 2025-10-20 13:15:44.975497+00 f t TOTAL 171400.00 3 10087 \N +398372 2025-10-20 13:15:44.977203+00 2025-10-20 13:15:44.977213+00 f t ADELANTO 47400.00 4 10087 \N +389313 2025-10-17 01:41:31.047799+00 2025-10-17 01:41:31.047808+00 f t SUBTOTAL 0.00 1 9854 \N +389314 2025-10-17 01:41:31.049862+00 2025-10-17 01:41:31.049871+00 f t DESCUENTO 0.00 2 9854 \N +389315 2025-10-17 01:41:31.05131+00 2025-10-17 01:41:31.051319+00 f t TOTAL 0.00 3 9854 \N +389316 2025-10-17 01:41:31.052537+00 2025-10-17 01:41:31.052543+00 f t ADELANTO 0.00 4 9854 \N +398517 2025-10-20 13:25:32.89004+00 2025-10-20 13:25:32.890049+00 f t SUBTOTAL 0.00 1 10092 \N +398518 2025-10-20 13:25:32.89233+00 2025-10-20 13:25:32.892344+00 f t DESCUENTO 0.00 2 10092 \N +381321 2025-10-14 14:38:24.903916+00 2025-10-14 14:38:24.903925+00 f t SUBTOTAL 66900.00 1 9613 \N +381322 2025-10-14 14:38:24.906005+00 2025-10-14 14:38:24.906012+00 f t DESCUENTO 0.00 2 9613 \N +381323 2025-10-14 14:38:24.907173+00 2025-10-14 14:38:24.90718+00 f t TOTAL 66900.00 3 9613 \N +381324 2025-10-14 14:38:24.90835+00 2025-10-14 14:38:24.908356+00 f t ADELANTO 26400.00 4 9613 \N +381561 2025-10-14 15:52:25.802675+00 2025-10-14 15:52:25.802686+00 f t SUBTOTAL 130000.00 1 9612 \N +381562 2025-10-14 15:52:25.804657+00 2025-10-14 15:52:25.804665+00 f t DESCUENTO 0.00 2 9612 \N +381563 2025-10-14 15:52:25.806024+00 2025-10-14 15:52:25.806031+00 f t TOTAL 130000.00 3 9612 \N +381564 2025-10-14 15:52:25.807472+00 2025-10-14 15:52:25.807478+00 f t ADELANTO 15000.00 4 9612 \N +377749 2025-10-13 14:22:53.374426+00 2025-10-13 14:22:53.374439+00 f t SUBTOTAL 0.00 1 9521 \N +377750 2025-10-13 14:22:53.376071+00 2025-10-13 14:22:53.376081+00 f t DESCUENTO 0.00 2 9521 \N +377751 2025-10-13 14:22:53.377362+00 2025-10-13 14:22:53.377371+00 f t TOTAL 0.00 3 9521 \N +377752 2025-10-13 14:22:53.378585+00 2025-10-13 14:22:53.378595+00 f t ADELANTO 0.00 4 9521 \N +390649 2025-10-17 13:42:54.73592+00 2025-10-17 13:42:54.735928+00 f t SUBTOTAL 70000.00 1 9888 \N +377761 2025-10-13 14:30:30.013227+00 2025-10-13 14:30:30.013237+00 f t SUBTOTAL 46000.00 1 9522 \N +377762 2025-10-13 14:30:30.015118+00 2025-10-13 14:30:30.015156+00 f t DESCUENTO 0.00 2 9522 \N +377763 2025-10-13 14:30:30.017888+00 2025-10-13 14:30:30.017899+00 f t TOTAL 46000.00 3 9522 \N +377764 2025-10-13 14:30:30.019463+00 2025-10-13 14:30:30.019472+00 f t ADELANTO 11000.00 4 9522 \N +390650 2025-10-17 13:42:54.737173+00 2025-10-17 13:42:54.737184+00 f t DESCUENTO 0.00 2 9888 \N +390651 2025-10-17 13:42:54.73812+00 2025-10-17 13:42:54.738126+00 f t TOTAL 70000.00 3 9888 \N +390652 2025-10-17 13:42:54.738872+00 2025-10-17 13:42:54.738877+00 f t ADELANTO 19000.00 4 9888 \N +377773 2025-10-13 14:37:31.385828+00 2025-10-13 14:37:31.385836+00 f t SUBTOTAL 23000.00 1 9523 \N +377774 2025-10-13 14:37:31.387196+00 2025-10-13 14:37:31.387203+00 f t DESCUENTO 0.00 2 9523 \N +377775 2025-10-13 14:37:31.388605+00 2025-10-13 14:37:31.388612+00 f t TOTAL 23000.00 3 9523 \N +377776 2025-10-13 14:37:31.389715+00 2025-10-13 14:37:31.389722+00 f t ADELANTO 5500.00 4 9523 \N +377781 2025-10-13 14:41:07.086433+00 2025-10-13 14:41:07.086443+00 f t SUBTOTAL 0.00 1 9524 \N +377782 2025-10-13 14:41:07.087884+00 2025-10-13 14:41:07.087891+00 f t DESCUENTO 0.00 2 9524 \N +377783 2025-10-13 14:41:07.089029+00 2025-10-13 14:41:07.089035+00 f t TOTAL 0.00 3 9524 \N +377784 2025-10-13 14:41:07.089963+00 2025-10-13 14:41:07.089968+00 f t ADELANTO 0.00 4 9524 \N +391013 2025-10-17 16:47:24.580241+00 2025-10-17 16:47:24.580249+00 f t SUBTOTAL 30000.00 1 9904 \N +377793 2025-10-13 14:42:18.797532+00 2025-10-13 14:42:18.797543+00 f t SUBTOTAL 55000.00 1 9525 \N +377794 2025-10-13 14:42:18.799345+00 2025-10-13 14:42:18.799356+00 f t DESCUENTO 0.00 2 9525 \N +377795 2025-10-13 14:42:18.80074+00 2025-10-13 14:42:18.800748+00 f t TOTAL 55000.00 3 9525 \N +377796 2025-10-13 14:42:18.803431+00 2025-10-13 14:42:18.80344+00 f t ADELANTO 11000.00 4 9525 \N +391014 2025-10-17 16:47:24.582409+00 2025-10-17 16:47:24.582417+00 f t DESCUENTO 0.00 2 9904 \N +391015 2025-10-17 16:47:24.583788+00 2025-10-17 16:47:24.583795+00 f t TOTAL 30000.00 3 9904 \N +391016 2025-10-17 16:47:24.584763+00 2025-10-17 16:47:24.584768+00 f t ADELANTO 30000.00 4 9904 \N +391265 2025-10-17 17:41:23.933699+00 2025-10-17 17:41:23.933706+00 f t SUBTOTAL 0.00 1 9910 \N +391266 2025-10-17 17:41:23.935055+00 2025-10-17 17:41:23.935061+00 f t DESCUENTO 0.00 2 9910 \N +391267 2025-10-17 17:41:23.93615+00 2025-10-17 17:41:23.936155+00 f t TOTAL 0.00 3 9910 \N +391268 2025-10-17 17:41:23.937059+00 2025-10-17 17:41:23.937064+00 f t ADELANTO 0.00 4 9910 \N +383769 2025-10-15 14:19:50.074152+00 2025-10-15 14:19:50.07416+00 f t SUBTOTAL 68000.00 1 9686 \N +383770 2025-10-15 14:19:50.076093+00 2025-10-15 14:19:50.076101+00 f t DESCUENTO 0.00 2 9686 \N +383771 2025-10-15 14:19:50.077402+00 2025-10-15 14:19:50.077408+00 f t TOTAL 68000.00 3 9686 \N +383772 2025-10-15 14:19:50.07848+00 2025-10-15 14:19:50.078486+00 f t ADELANTO 13000.00 4 9686 \N +391657 2025-10-17 18:28:41.35942+00 2025-10-17 18:28:41.359432+00 f t SUBTOTAL 124000.00 1 9914 \N +391658 2025-10-17 18:28:41.361455+00 2025-10-17 18:28:41.361466+00 f t DESCUENTO 0.00 2 9914 \N +391659 2025-10-17 18:28:41.362854+00 2025-10-17 18:28:41.362862+00 f t TOTAL 124000.00 3 9914 \N +391660 2025-10-17 18:28:41.367306+00 2025-10-17 18:28:41.367316+00 f t ADELANTO 32500.00 4 9914 \N +384397 2025-10-15 17:02:38.739966+00 2025-10-15 17:02:38.739974+00 f t SUBTOTAL 80000.00 1 9708 \N +384398 2025-10-15 17:02:38.741796+00 2025-10-15 17:02:38.741806+00 f t DESCUENTO 0.00 2 9708 \N +384399 2025-10-15 17:02:38.74316+00 2025-10-15 17:02:38.743167+00 f t TOTAL 80000.00 3 9708 \N +384400 2025-10-15 17:02:38.744384+00 2025-10-15 17:02:38.74439+00 f t ADELANTO 12000.00 4 9708 \N +385005 2025-10-15 20:02:42.868918+00 2025-10-15 20:02:42.868927+00 f t SUBTOTAL 0.00 1 9727 \N +385006 2025-10-15 20:02:42.870537+00 2025-10-15 20:02:42.870543+00 f t DESCUENTO 0.00 2 9727 \N +385007 2025-10-15 20:02:42.871676+00 2025-10-15 20:02:42.871682+00 f t TOTAL 0.00 3 9727 \N +385008 2025-10-15 20:02:42.872737+00 2025-10-15 20:02:42.872743+00 f t ADELANTO 0.00 4 9727 \N +385273 2025-10-15 21:24:05.443545+00 2025-10-15 21:24:05.443555+00 f t SUBTOTAL 0.00 1 9733 \N +385274 2025-10-15 21:24:05.446548+00 2025-10-15 21:24:05.446557+00 f t DESCUENTO 0.00 2 9733 \N +385275 2025-10-15 21:24:05.448384+00 2025-10-15 21:24:05.448391+00 f t TOTAL 0.00 3 9733 \N +385276 2025-10-15 21:24:05.449813+00 2025-10-15 21:24:05.449822+00 f t ADELANTO 0.00 4 9733 \N +385467 2025-10-15 22:28:07.419727+00 2025-10-15 22:28:07.419734+00 f t TOTAL 0.00 3 9740 \N +385468 2025-10-15 22:28:07.421381+00 2025-10-15 22:28:07.421389+00 f t ADELANTO 0.00 4 9740 \N +416034 2025-10-25 21:19:15.744657+00 2025-10-25 21:19:15.74467+00 f t DESCUENTO 0.00 3 10513 \N +416035 2025-10-25 21:19:15.746253+00 2025-10-25 21:19:15.746263+00 f t TOTAL 0.00 4 10513 \N +416036 2025-10-25 21:19:15.747856+00 2025-10-25 21:19:15.747867+00 f t ADELANTO 0.00 5 10513 \N +379925 2025-10-13 23:56:46.723868+00 2025-10-13 23:56:46.72388+00 f t SUBTOTAL 53700.00 1 9582 \N +379926 2025-10-13 23:56:46.725963+00 2025-10-13 23:56:46.725971+00 f t DESCUENTO 0.00 2 9582 \N +379927 2025-10-13 23:56:46.727166+00 2025-10-13 23:56:46.727173+00 f t TOTAL 53700.00 3 9582 \N +379928 2025-10-13 23:56:46.728251+00 2025-10-13 23:56:46.728256+00 f t ADELANTO 13200.00 4 9582 \N +377961 2025-10-13 14:47:57.614215+00 2025-10-13 14:47:57.614225+00 f t SUBTOTAL 55000.00 1 9527 \N +377962 2025-10-13 14:47:57.616244+00 2025-10-13 14:47:57.616253+00 f t DESCUENTO 0.00 2 9527 \N +377963 2025-10-13 14:47:57.617727+00 2025-10-13 14:47:57.617735+00 f t TOTAL 55000.00 3 9527 \N +377964 2025-10-13 14:47:57.618825+00 2025-10-13 14:47:57.61883+00 f t ADELANTO 11000.00 4 9527 \N +380813 2025-10-14 03:22:45.740973+00 2025-10-14 03:22:45.740981+00 f t SUBTOTAL 55000.00 1 9597 \N +380814 2025-10-14 03:22:45.742746+00 2025-10-14 03:22:45.742753+00 f t DESCUENTO 0.00 2 9597 \N +380815 2025-10-14 03:22:45.743976+00 2025-10-14 03:22:45.743983+00 f t TOTAL 55000.00 3 9597 \N +380816 2025-10-14 03:22:45.744972+00 2025-10-14 03:22:45.744977+00 f t ADELANTO 11000.00 4 9597 \N +389213 2025-10-17 01:39:29.904952+00 2025-10-17 01:39:29.904967+00 f t SUBTOTAL 0.00 1 9856 \N +389214 2025-10-17 01:39:29.907494+00 2025-10-17 01:39:29.907506+00 f t DESCUENTO 0.00 2 9856 \N +389215 2025-10-17 01:39:29.909304+00 2025-10-17 01:39:29.909316+00 f t TOTAL 0.00 3 9856 \N +389216 2025-10-17 01:39:29.910971+00 2025-10-17 01:39:29.910979+00 f t ADELANTO 0.00 4 9856 \N +377993 2025-10-13 14:48:31.687317+00 2025-10-13 14:48:31.687337+00 f t SUBTOTAL 0.00 1 9526 \N +377994 2025-10-13 14:48:31.689311+00 2025-10-13 14:48:31.689319+00 f t DESCUENTO 0.00 2 9526 \N +377995 2025-10-13 14:48:31.690334+00 2025-10-13 14:48:31.690339+00 f t TOTAL 0.00 3 9526 \N +377996 2025-10-13 14:48:31.691234+00 2025-10-13 14:48:31.691239+00 f t ADELANTO 0.00 4 9526 \N +378001 2025-10-13 14:48:58.642341+00 2025-10-13 14:48:58.642351+00 f t SUBTOTAL 0.00 1 9529 \N +378002 2025-10-13 14:48:58.643923+00 2025-10-13 14:48:58.643932+00 f t DESCUENTO 0.00 2 9529 \N +378003 2025-10-13 14:48:58.645276+00 2025-10-13 14:48:58.645283+00 f t TOTAL 0.00 3 9529 \N +378004 2025-10-13 14:48:58.646617+00 2025-10-13 14:48:58.646624+00 f t ADELANTO 0.00 4 9529 \N +378017 2025-10-13 14:49:11.654299+00 2025-10-13 14:49:11.654308+00 f t SUBTOTAL 0.00 1 9530 \N +378018 2025-10-13 14:49:11.655817+00 2025-10-13 14:49:11.655825+00 f t DESCUENTO 0.00 2 9530 \N +378019 2025-10-13 14:49:11.657027+00 2025-10-13 14:49:11.657035+00 f t TOTAL 0.00 3 9530 \N +378020 2025-10-13 14:49:11.658187+00 2025-10-13 14:49:11.658193+00 f t ADELANTO 0.00 4 9530 \N +382041 2025-10-14 19:04:00.204368+00 2025-10-14 19:04:00.204382+00 f t SUBTOTAL 46000.00 1 9640 \N +382042 2025-10-14 19:04:00.206239+00 2025-10-14 19:04:00.206247+00 f t DESCUENTO 0.00 2 9640 \N +382043 2025-10-14 19:04:00.207534+00 2025-10-14 19:04:00.207541+00 f t TOTAL 46000.00 3 9640 \N +382044 2025-10-14 19:04:00.208704+00 2025-10-14 19:04:00.208709+00 f t ADELANTO 11000.00 4 9640 \N +382161 2025-10-14 20:30:38.942867+00 2025-10-14 20:30:38.942876+00 f t SUBTOTAL 0.00 1 9646 \N +382162 2025-10-14 20:30:38.944953+00 2025-10-14 20:30:38.944961+00 f t DESCUENTO 0.00 2 9646 \N +382163 2025-10-14 20:30:38.94609+00 2025-10-14 20:30:38.946097+00 f t TOTAL 0.00 3 9646 \N +382164 2025-10-14 20:30:38.947187+00 2025-10-14 20:30:38.947195+00 f t ADELANTO 0.00 4 9646 \N +382253 2025-10-14 20:39:32.684358+00 2025-10-14 20:39:32.684366+00 f t SUBTOTAL 124000.00 1 9645 \N +382254 2025-10-14 20:39:32.686199+00 2025-10-14 20:39:32.686206+00 f t DESCUENTO 0.00 2 9645 \N +382255 2025-10-14 20:39:32.68741+00 2025-10-14 20:39:32.687415+00 f t TOTAL 124000.00 3 9645 \N +382256 2025-10-14 20:39:32.688466+00 2025-10-14 20:39:32.688471+00 f t ADELANTO 32500.00 4 9645 \N +382753 2025-10-14 23:50:32.745693+00 2025-10-14 23:50:32.745701+00 f t SUBTOTAL 46000.00 1 9656 \N +382754 2025-10-14 23:50:32.747466+00 2025-10-14 23:50:32.747474+00 f t DESCUENTO 0.00 2 9656 \N +382755 2025-10-14 23:50:32.748658+00 2025-10-14 23:50:32.748667+00 f t TOTAL 46000.00 3 9656 \N +382756 2025-10-14 23:50:32.749804+00 2025-10-14 23:50:32.74981+00 f t ADELANTO 11000.00 4 9656 \N +378077 2025-10-13 14:50:06.252356+00 2025-10-13 14:50:06.25237+00 f t SUBTOTAL 0.00 1 9531 \N +378078 2025-10-13 14:50:06.254721+00 2025-10-13 14:50:06.254734+00 f t DESCUENTO 0.00 2 9531 \N +378079 2025-10-13 14:50:06.256505+00 2025-10-13 14:50:06.256517+00 f t TOTAL 0.00 3 9531 \N +378080 2025-10-13 14:50:06.258325+00 2025-10-13 14:50:06.258334+00 f t ADELANTO 0.00 4 9531 \N +378081 2025-10-13 14:50:08.949707+00 2025-10-13 14:50:08.949716+00 f t SUBTOTAL 53700.00 1 9528 \N +378082 2025-10-13 14:50:08.951427+00 2025-10-13 14:50:08.951434+00 f t DESCUENTO 0.00 2 9528 \N +378083 2025-10-13 14:50:08.95295+00 2025-10-13 14:50:08.952958+00 f t TOTAL 53700.00 3 9528 \N +378084 2025-10-13 14:50:08.954886+00 2025-10-13 14:50:08.954896+00 f t ADELANTO 13200.00 4 9528 \N +384485 2025-10-15 17:21:31.286557+00 2025-10-15 17:21:31.286567+00 f t SUBTOTAL 0.00 1 9711 \N +384486 2025-10-15 17:21:31.289467+00 2025-10-15 17:21:31.289476+00 f t DESCUENTO 0.00 2 9711 \N +384487 2025-10-15 17:21:31.291308+00 2025-10-15 17:21:31.291317+00 f t TOTAL 0.00 3 9711 \N +384488 2025-10-15 17:21:31.292918+00 2025-10-15 17:21:31.292925+00 f t ADELANTO 0.00 4 9711 \N +384701 2025-10-15 18:13:34.876866+00 2025-10-15 18:13:34.876875+00 f t SUBTOTAL 46000.00 1 9713 \N +384702 2025-10-15 18:13:34.87868+00 2025-10-15 18:13:34.878687+00 f t DESCUENTO 0.00 2 9713 \N +384703 2025-10-15 18:13:34.880023+00 2025-10-15 18:13:34.88003+00 f t TOTAL 46000.00 3 9713 \N +384704 2025-10-15 18:13:34.881199+00 2025-10-15 18:13:34.881204+00 f t ADELANTO 11000.00 4 9713 \N +384865 2025-10-15 19:14:07.313833+00 2025-10-15 19:14:07.313845+00 f t SUBTOTAL 0.00 1 9723 \N +384866 2025-10-15 19:14:07.315331+00 2025-10-15 19:14:07.315341+00 f t DESCUENTO 0.00 2 9723 \N +384867 2025-10-15 19:14:07.316607+00 2025-10-15 19:14:07.316616+00 f t TOTAL 0.00 3 9723 \N +384868 2025-10-15 19:14:07.317887+00 2025-10-15 19:14:07.317895+00 f t ADELANTO 0.00 4 9723 \N +385013 2025-10-15 20:04:43.185326+00 2025-10-15 20:04:43.185335+00 f t SUBTOTAL 0.00 1 9728 \N +385014 2025-10-15 20:04:43.186688+00 2025-10-15 20:04:43.186695+00 f t DESCUENTO 0.00 2 9728 \N +385015 2025-10-15 20:04:43.18793+00 2025-10-15 20:04:43.187937+00 f t TOTAL 0.00 3 9728 \N +385016 2025-10-15 20:04:43.189012+00 2025-10-15 20:04:43.189017+00 f t ADELANTO 0.00 4 9728 \N +385377 2025-10-15 21:35:54.318823+00 2025-10-15 21:35:54.318835+00 f t SUBTOTAL 68000.00 1 9736 \N +378213 2025-10-13 14:54:10.399368+00 2025-10-13 14:54:10.399378+00 f t SUBTOTAL 0.00 1 9533 \N +378214 2025-10-13 14:54:10.402354+00 2025-10-13 14:54:10.402366+00 f t DESCUENTO 0.00 2 9533 \N +378215 2025-10-13 14:54:10.404227+00 2025-10-13 14:54:10.404239+00 f t TOTAL 0.00 3 9533 \N +378216 2025-10-13 14:54:10.405835+00 2025-10-13 14:54:10.405843+00 f t ADELANTO 0.00 4 9533 \N +385378 2025-10-15 21:35:54.321097+00 2025-10-15 21:35:54.321105+00 f t DESCUENTO 0.00 2 9736 \N +385379 2025-10-15 21:35:54.322524+00 2025-10-15 21:35:54.322531+00 f t TOTAL 68000.00 3 9736 \N +385380 2025-10-15 21:35:54.32388+00 2025-10-15 21:35:54.323887+00 f t ADELANTO 13000.00 4 9736 \N +397621 2025-10-20 03:54:52.572639+00 2025-10-20 03:54:52.572653+00 f t SUBTOTAL 55000.00 1 10067 \N +397622 2025-10-20 03:54:52.57467+00 2025-10-20 03:54:52.574678+00 f t DESCUENTO 0.00 2 10067 \N +397623 2025-10-20 03:54:52.576182+00 2025-10-20 03:54:52.576189+00 f t TOTAL 55000.00 3 10067 \N +397624 2025-10-20 03:54:52.577695+00 2025-10-20 03:54:52.577701+00 f t ADELANTO 11000.00 4 10067 \N +388965 2025-10-17 00:32:00.143667+00 2025-10-17 00:32:00.143676+00 f t SUBTOTAL 55000.00 1 9847 \N +388966 2025-10-17 00:32:00.145715+00 2025-10-17 00:32:00.145726+00 f t DESCUENTO 0.00 2 9847 \N +388967 2025-10-17 00:32:00.147075+00 2025-10-17 00:32:00.147084+00 f t TOTAL 55000.00 3 9847 \N +388968 2025-10-17 00:32:00.148625+00 2025-10-17 00:32:00.148632+00 f t ADELANTO 11000.00 4 9847 \N +389949 2025-10-17 03:36:53.667258+00 2025-10-17 03:36:53.66727+00 f t SUBTOTAL 70000.00 1 9865 \N +389950 2025-10-17 03:36:53.669264+00 2025-10-17 03:36:53.669274+00 f t DESCUENTO 0.00 2 9865 \N +389951 2025-10-17 03:36:53.670589+00 2025-10-17 03:36:53.670598+00 f t TOTAL 70000.00 3 9865 \N +389952 2025-10-17 03:36:53.672443+00 2025-10-17 03:36:53.672452+00 f t ADELANTO 19000.00 4 9865 \N +390029 2025-10-17 03:40:59.496489+00 2025-10-17 03:40:59.496499+00 f t SUBTOTAL 70000.00 1 9870 \N +390030 2025-10-17 03:40:59.497695+00 2025-10-17 03:40:59.497703+00 f t DESCUENTO 0.00 2 9870 \N +390031 2025-10-17 03:40:59.498543+00 2025-10-17 03:40:59.49855+00 f t TOTAL 70000.00 3 9870 \N +390032 2025-10-17 03:40:59.499308+00 2025-10-17 03:40:59.499314+00 f t ADELANTO 19000.00 4 9870 \N +378297 2025-10-13 14:58:29.667592+00 2025-10-13 14:58:29.667601+00 f t SUBTOTAL 0.00 1 9535 \N +378298 2025-10-13 14:58:29.668968+00 2025-10-13 14:58:29.668975+00 f t DESCUENTO 0.00 2 9535 \N +378299 2025-10-13 14:58:29.670497+00 2025-10-13 14:58:29.670507+00 f t TOTAL 0.00 3 9535 \N +378300 2025-10-13 14:58:29.671976+00 2025-10-13 14:58:29.671982+00 f t ADELANTO 0.00 4 9535 \N +390265 2025-10-17 09:40:46.434414+00 2025-10-17 09:40:46.434423+00 f t SUBTOTAL 46000.00 1 9877 \N +390266 2025-10-17 09:40:46.436598+00 2025-10-17 09:40:46.436606+00 f t DESCUENTO 0.00 2 9877 \N +390267 2025-10-17 09:40:46.437865+00 2025-10-17 09:40:46.437872+00 f t TOTAL 46000.00 3 9877 \N +390268 2025-10-17 09:40:46.438936+00 2025-10-17 09:40:46.438942+00 f t ADELANTO 11000.00 4 9877 \N +382049 2025-10-14 20:05:45.718449+00 2025-10-14 20:05:45.718513+00 f t SUBTOTAL 0.00 1 9641 \N +382050 2025-10-14 20:05:45.720246+00 2025-10-14 20:05:45.720256+00 f t DESCUENTO 0.00 2 9641 \N +382051 2025-10-14 20:05:45.721863+00 2025-10-14 20:05:45.72187+00 f t TOTAL 0.00 3 9641 \N +382052 2025-10-14 20:05:45.72333+00 2025-10-14 20:05:45.723335+00 f t ADELANTO 0.00 4 9641 \N +378321 2025-10-13 14:59:12.920175+00 2025-10-13 14:59:12.920187+00 f t SUBTOTAL 46000.00 1 9534 \N +378322 2025-10-13 14:59:12.922212+00 2025-10-13 14:59:12.922224+00 f t DESCUENTO 0.00 2 9534 \N +378323 2025-10-13 14:59:12.923803+00 2025-10-13 14:59:12.923812+00 f t TOTAL 46000.00 3 9534 \N +378324 2025-10-13 14:59:12.925273+00 2025-10-13 14:59:12.925283+00 f t ADELANTO 11000.00 4 9534 \N +378329 2025-10-13 15:03:20.567935+00 2025-10-13 15:03:20.567948+00 f t SUBTOTAL 0.00 1 9536 \N +378330 2025-10-13 15:03:20.569767+00 2025-10-13 15:03:20.569778+00 f t DESCUENTO 0.00 2 9536 \N +378331 2025-10-13 15:03:20.571635+00 2025-10-13 15:03:20.571646+00 f t TOTAL 0.00 3 9536 \N +378332 2025-10-13 15:03:20.573289+00 2025-10-13 15:03:20.573298+00 f t ADELANTO 0.00 4 9536 \N +390657 2025-10-17 13:45:01.990097+00 2025-10-17 13:45:01.990117+00 f t SUBTOTAL 0.00 1 9889 \N +382761 2025-10-14 23:52:19.58958+00 2025-10-14 23:52:19.58959+00 f t SUBTOTAL 0.00 1 9657 \N +382762 2025-10-14 23:52:19.591292+00 2025-10-14 23:52:19.5913+00 f t DESCUENTO 0.00 2 9657 \N +382763 2025-10-14 23:52:19.592837+00 2025-10-14 23:52:19.592844+00 f t TOTAL 0.00 3 9657 \N +382764 2025-10-14 23:52:19.59404+00 2025-10-14 23:52:19.594045+00 f t ADELANTO 0.00 4 9657 \N +378365 2025-10-13 15:16:13.336192+00 2025-10-13 15:16:13.336205+00 f t SUBTOTAL 46000.00 1 9537 \N +378366 2025-10-13 15:16:13.337995+00 2025-10-13 15:16:13.338002+00 f t DESCUENTO 0.00 2 9537 \N +378367 2025-10-13 15:16:13.339632+00 2025-10-13 15:16:13.339639+00 f t TOTAL 46000.00 3 9537 \N +378368 2025-10-13 15:16:13.34089+00 2025-10-13 15:16:13.340896+00 f t ADELANTO 11000.00 4 9537 \N +383073 2025-10-15 01:46:46.400397+00 2025-10-15 01:46:46.400406+00 f t SUBTOTAL 0.00 1 9666 \N +383074 2025-10-15 01:46:46.402938+00 2025-10-15 01:46:46.402946+00 f t DESCUENTO 0.00 2 9666 \N +383075 2025-10-15 01:46:46.404272+00 2025-10-15 01:46:46.404279+00 f t TOTAL 0.00 3 9666 \N +383076 2025-10-15 01:46:46.405465+00 2025-10-15 01:46:46.405471+00 f t ADELANTO 0.00 4 9666 \N +378393 2025-10-13 15:18:50.635357+00 2025-10-13 15:18:50.635366+00 f t SUBTOTAL 80000.00 1 9538 \N +378394 2025-10-13 15:18:50.637374+00 2025-10-13 15:18:50.637382+00 f t DESCUENTO 0.00 2 9538 \N +378395 2025-10-13 15:18:50.638874+00 2025-10-13 15:18:50.638881+00 f t TOTAL 80000.00 3 9538 \N +378396 2025-10-13 15:18:50.640125+00 2025-10-13 15:18:50.640131+00 f t ADELANTO 12000.00 4 9538 \N +378405 2025-10-13 15:20:35.642761+00 2025-10-13 15:20:35.642773+00 f t SUBTOTAL 46000.00 1 9539 \N +378406 2025-10-13 15:20:35.644532+00 2025-10-13 15:20:35.644542+00 f t DESCUENTO 0.00 2 9539 \N +378407 2025-10-13 15:20:35.645877+00 2025-10-13 15:20:35.645884+00 f t TOTAL 46000.00 3 9539 \N +378408 2025-10-13 15:20:35.646864+00 2025-10-13 15:20:35.646869+00 f t ADELANTO 11000.00 4 9539 \N +384061 2025-10-15 14:56:02.504083+00 2025-10-15 14:56:02.504095+00 f t SUBTOTAL 46000.00 1 9696 \N +384062 2025-10-15 14:56:02.50793+00 2025-10-15 14:56:02.507941+00 f t DESCUENTO 0.00 2 9696 \N +384063 2025-10-15 14:56:02.509779+00 2025-10-15 14:56:02.509788+00 f t TOTAL 46000.00 3 9696 \N +384064 2025-10-15 14:56:02.51462+00 2025-10-15 14:56:02.514629+00 f t ADELANTO 11000.00 4 9696 \N +378429 2025-10-13 15:24:40.740965+00 2025-10-13 15:24:40.740974+00 f t SUBTOTAL 78000.00 1 9540 \N +378430 2025-10-13 15:24:40.742479+00 2025-10-13 15:24:40.742485+00 f t DESCUENTO 0.00 2 9540 \N +378431 2025-10-13 15:24:40.743558+00 2025-10-13 15:24:40.743564+00 f t TOTAL 78000.00 3 9540 \N +378432 2025-10-13 15:24:40.744574+00 2025-10-13 15:24:40.74458+00 f t ADELANTO 21500.00 4 9540 \N +384409 2025-10-15 17:07:32.86157+00 2025-10-15 17:07:32.861585+00 f t SUBTOTAL 55000.00 1 9709 \N +384410 2025-10-15 17:07:32.864031+00 2025-10-15 17:07:32.864043+00 f t DESCUENTO 0.00 2 9709 \N +384411 2025-10-15 17:07:32.866002+00 2025-10-15 17:07:32.866014+00 f t TOTAL 55000.00 3 9709 \N +384412 2025-10-15 17:07:32.868001+00 2025-10-15 17:07:32.868014+00 f t ADELANTO 11000.00 4 9709 \N +378453 2025-10-13 15:28:11.232354+00 2025-10-13 15:28:11.23237+00 f t SUBTOTAL 46000.00 1 9541 \N +378454 2025-10-13 15:28:11.234069+00 2025-10-13 15:28:11.234076+00 f t DESCUENTO 0.00 2 9541 \N +378455 2025-10-13 15:28:11.235108+00 2025-10-13 15:28:11.235117+00 f t TOTAL 46000.00 3 9541 \N +378456 2025-10-13 15:28:11.236036+00 2025-10-13 15:28:11.236042+00 f t ADELANTO 11000.00 4 9541 \N +378477 2025-10-13 15:47:08.355849+00 2025-10-13 15:47:08.355863+00 f t SUBTOTAL 0.00 1 9542 \N +378478 2025-10-13 15:47:08.358837+00 2025-10-13 15:47:08.358851+00 f t DESCUENTO 0.00 2 9542 \N +378479 2025-10-13 15:47:08.361355+00 2025-10-13 15:47:08.361368+00 f t TOTAL 0.00 3 9542 \N +378480 2025-10-13 15:47:08.363491+00 2025-10-13 15:47:08.363504+00 f t ADELANTO 0.00 4 9542 \N +378493 2025-10-13 15:55:58.219384+00 2025-10-13 15:55:58.219393+00 f t SUBTOTAL 156000.00 1 9532 \N +378494 2025-10-13 15:55:58.221102+00 2025-10-13 15:55:58.221112+00 f t DESCUENTO 0.00 2 9532 \N +378495 2025-10-13 15:55:58.222391+00 2025-10-13 15:55:58.222398+00 f t TOTAL 156000.00 3 9532 \N +378496 2025-10-13 15:55:58.22363+00 2025-10-13 15:55:58.223635+00 f t ADELANTO 43000.00 4 9532 \N +389089 2025-10-17 00:59:36.013482+00 2025-10-17 00:59:36.01349+00 f t SUBTOTAL 70000.00 1 9850 \N +389090 2025-10-17 00:59:36.015516+00 2025-10-17 00:59:36.015524+00 f t DESCUENTO 0.00 2 9850 \N +389091 2025-10-17 00:59:36.016759+00 2025-10-17 00:59:36.016765+00 f t TOTAL 70000.00 3 9850 \N +389092 2025-10-17 00:59:36.017874+00 2025-10-17 00:59:36.017879+00 f t ADELANTO 19000.00 4 9850 \N +378557 2025-10-13 15:59:57.201115+00 2025-10-13 15:59:57.201128+00 f t SUBTOTAL 82000.00 1 9543 \N +378558 2025-10-13 15:59:57.203218+00 2025-10-13 15:59:57.20323+00 f t DESCUENTO 0.00 2 9543 \N +378559 2025-10-13 15:59:57.204865+00 2025-10-13 15:59:57.204875+00 f t TOTAL 82000.00 3 9543 \N +378560 2025-10-13 15:59:57.206398+00 2025-10-13 15:59:57.206407+00 f t ADELANTO 12000.00 4 9543 \N +381085 2025-10-14 13:32:05.14291+00 2025-10-14 13:32:05.142921+00 f t SUBTOTAL 46000.00 1 9607 \N +381086 2025-10-14 13:32:05.145175+00 2025-10-14 13:32:05.145187+00 f t DESCUENTO 0.00 2 9607 \N +381087 2025-10-14 13:32:05.146833+00 2025-10-14 13:32:05.146842+00 f t TOTAL 46000.00 3 9607 \N +381088 2025-10-14 13:32:05.14852+00 2025-10-14 13:32:05.148528+00 f t ADELANTO 11000.00 4 9607 \N +381577 2025-10-14 15:56:11.602538+00 2025-10-14 15:56:11.602548+00 f t SUBTOTAL 99400.00 1 9621 \N +381578 2025-10-14 15:56:11.604139+00 2025-10-14 15:56:11.604145+00 f t DESCUENTO 0.00 2 9621 \N +381579 2025-10-14 15:56:11.60527+00 2025-10-14 15:56:11.605275+00 f t TOTAL 99400.00 3 9621 \N +381580 2025-10-14 15:56:11.606391+00 2025-10-14 15:56:11.606396+00 f t ADELANTO 58900.00 4 9621 \N +378585 2025-10-13 16:09:52.084104+00 2025-10-13 16:09:52.084113+00 f t SUBTOTAL 46000.00 1 9544 \N +378586 2025-10-13 16:09:52.086024+00 2025-10-13 16:09:52.086034+00 f t DESCUENTO 0.00 2 9544 \N +378587 2025-10-13 16:09:52.087532+00 2025-10-13 16:09:52.087539+00 f t TOTAL 46000.00 3 9544 \N +378588 2025-10-13 16:09:52.088742+00 2025-10-13 16:09:52.088748+00 f t ADELANTO 11000.00 4 9544 \N +381817 2025-10-14 17:48:49.192882+00 2025-10-14 17:48:49.192891+00 f t SUBTOTAL 55000.00 1 9631 \N +381818 2025-10-14 17:48:49.194491+00 2025-10-14 17:48:49.194498+00 f t DESCUENTO 0.00 2 9631 \N +381819 2025-10-14 17:48:49.19604+00 2025-10-14 17:48:49.196047+00 f t TOTAL 55000.00 3 9631 \N +381820 2025-10-14 17:48:49.197177+00 2025-10-14 17:48:49.197183+00 f t ADELANTO 11000.00 4 9631 \N +378597 2025-10-13 16:20:20.976831+00 2025-10-13 16:20:20.976839+00 f t SUBTOTAL 30000.00 1 9545 \N +378598 2025-10-13 16:20:20.978312+00 2025-10-13 16:20:20.978319+00 f t DESCUENTO 0.00 2 9545 \N +378599 2025-10-13 16:20:20.979407+00 2025-10-13 16:20:20.979413+00 f t TOTAL 30000.00 3 9545 \N +378600 2025-10-13 16:20:20.980505+00 2025-10-13 16:20:20.980511+00 f t ADELANTO 30000.00 4 9545 \N +389868 2025-10-17 03:17:19.885072+00 2025-10-17 03:17:19.885083+00 f t SUBTOTAL 46000.00 1 9866 \N +389870 2025-10-17 03:17:19.886731+00 2025-10-17 03:17:19.886739+00 f t DESCUENTO 0.00 2 9866 \N +389871 2025-10-17 03:17:19.888156+00 2025-10-17 03:17:19.888164+00 f t TOTAL 46000.00 3 9866 \N +389872 2025-10-17 03:17:19.889561+00 2025-10-17 03:17:19.889569+00 f t ADELANTO 11000.00 4 9866 \N +382265 2025-10-14 20:48:19.390337+00 2025-10-14 20:48:19.390349+00 f t SUBTOTAL 46000.00 1 9647 \N +382266 2025-10-14 20:48:19.392385+00 2025-10-14 20:48:19.392395+00 f t DESCUENTO 0.00 2 9647 \N +382267 2025-10-14 20:48:19.393761+00 2025-10-14 20:48:19.39377+00 f t TOTAL 46000.00 3 9647 \N +382268 2025-10-14 20:48:19.395005+00 2025-10-14 20:48:19.395013+00 f t ADELANTO 11000.00 4 9647 \N +382769 2025-10-15 00:02:35.903875+00 2025-10-15 00:02:35.903883+00 f t SUBTOTAL 0.00 1 9658 \N +382770 2025-10-15 00:02:35.905298+00 2025-10-15 00:02:35.905305+00 f t DESCUENTO 0.00 2 9658 \N +382771 2025-10-15 00:02:35.906255+00 2025-10-15 00:02:35.906261+00 f t TOTAL 0.00 3 9658 \N +382772 2025-10-15 00:02:35.907191+00 2025-10-15 00:02:35.907196+00 f t ADELANTO 0.00 4 9658 \N +390273 2025-10-17 10:23:22.025121+00 2025-10-17 10:23:22.02513+00 f t SUBTOTAL 0.00 1 9878 \N +390274 2025-10-17 10:23:22.026436+00 2025-10-17 10:23:22.026445+00 f t DESCUENTO 0.00 2 9878 \N +390275 2025-10-17 10:23:22.027538+00 2025-10-17 10:23:22.027544+00 f t TOTAL 0.00 3 9878 \N +390276 2025-10-17 10:23:22.028507+00 2025-10-17 10:23:22.028512+00 f t ADELANTO 0.00 4 9878 \N +390658 2025-10-17 13:45:01.993804+00 2025-10-17 13:45:01.993819+00 f t DESCUENTO 0.00 2 9889 \N +390659 2025-10-17 13:45:01.996602+00 2025-10-17 13:45:01.996616+00 f t TOTAL 0.00 3 9889 \N +390660 2025-10-17 13:45:02.002354+00 2025-10-17 13:45:02.00237+00 f t ADELANTO 0.00 4 9889 \N +384321 2025-10-15 16:20:25.849864+00 2025-10-15 16:20:25.849876+00 f t SUBTOTAL 46000.00 1 9704 \N +384322 2025-10-15 16:20:25.852029+00 2025-10-15 16:20:25.852041+00 f t DESCUENTO 0.00 2 9704 \N +384323 2025-10-15 16:20:25.853915+00 2025-10-15 16:20:25.853925+00 f t TOTAL 46000.00 3 9704 \N +384324 2025-10-15 16:20:25.855589+00 2025-10-15 16:20:25.855598+00 f t ADELANTO 11000.00 4 9704 \N +378725 2025-10-13 16:46:42.412852+00 2025-10-13 16:46:42.412861+00 f t SUBTOTAL 46000.00 1 9547 \N +378726 2025-10-13 16:46:42.414364+00 2025-10-13 16:46:42.414372+00 f t DESCUENTO 0.00 2 9547 \N +378727 2025-10-13 16:46:42.415401+00 2025-10-13 16:46:42.415406+00 f t TOTAL 46000.00 3 9547 \N +378728 2025-10-13 16:46:42.416453+00 2025-10-13 16:46:42.416458+00 f t ADELANTO 11000.00 4 9547 \N +378737 2025-10-13 16:49:02.756648+00 2025-10-13 16:49:02.756658+00 f t SUBTOTAL 55000.00 1 9548 \N +378738 2025-10-13 16:49:02.759126+00 2025-10-13 16:49:02.75917+00 f t DESCUENTO 0.00 2 9548 \N +378739 2025-10-13 16:49:02.761154+00 2025-10-13 16:49:02.761168+00 f t TOTAL 55000.00 3 9548 \N +378740 2025-10-13 16:49:02.763083+00 2025-10-13 16:49:02.763097+00 f t ADELANTO 11000.00 4 9548 \N +384877 2025-10-15 19:15:13.342247+00 2025-10-15 19:15:13.342259+00 f t SUBTOTAL 13200.00 1 9724 \N +384878 2025-10-15 19:15:13.344413+00 2025-10-15 19:15:13.344423+00 f t DESCUENTO 0.00 2 9724 \N +384879 2025-10-15 19:15:13.346027+00 2025-10-15 19:15:13.346036+00 f t TOTAL 13200.00 3 9724 \N +378753 2025-10-13 17:03:05.248379+00 2025-10-13 17:03:05.248389+00 f t SUBTOTAL 0.00 1 9549 \N +378754 2025-10-13 17:03:05.249888+00 2025-10-13 17:03:05.249897+00 f t DESCUENTO 0.00 2 9549 \N +378755 2025-10-13 17:03:05.251165+00 2025-10-13 17:03:05.25117+00 f t TOTAL 0.00 3 9549 \N +378756 2025-10-13 17:03:05.252466+00 2025-10-13 17:03:05.252471+00 f t ADELANTO 0.00 4 9549 \N +384880 2025-10-15 19:15:13.347412+00 2025-10-15 19:15:13.34742+00 f t ADELANTO 13200.00 4 9724 \N +385425 2025-10-15 21:55:19.869889+00 2025-10-15 21:55:19.869897+00 f t SUBTOTAL 70000.00 1 9738 \N +385426 2025-10-15 21:55:19.871659+00 2025-10-15 21:55:19.871667+00 f t DESCUENTO 0.00 2 9738 \N +385427 2025-10-15 21:55:19.873006+00 2025-10-15 21:55:19.873014+00 f t TOTAL 70000.00 3 9738 \N +385428 2025-10-15 21:55:19.874725+00 2025-10-15 21:55:19.874748+00 f t ADELANTO 19000.00 4 9738 \N +385449 2025-10-15 21:55:51.664963+00 2025-10-15 21:55:51.664973+00 f t SUBTOTAL 70000.00 1 9737 \N +385450 2025-10-15 21:55:51.666601+00 2025-10-15 21:55:51.66661+00 f t DESCUENTO 0.00 2 9737 \N +385451 2025-10-15 21:55:51.667827+00 2025-10-15 21:55:51.667832+00 f t TOTAL 70000.00 3 9737 \N +385452 2025-10-15 21:55:51.668998+00 2025-10-15 21:55:51.669004+00 f t ADELANTO 19000.00 4 9737 \N +385473 2025-10-15 22:35:47.599532+00 2025-10-15 22:35:47.599543+00 f t SUBTOTAL 0.00 1 9741 \N +385474 2025-10-15 22:35:47.601053+00 2025-10-15 22:35:47.601062+00 f t DESCUENTO 0.00 2 9741 \N +385475 2025-10-15 22:35:47.602392+00 2025-10-15 22:35:47.602401+00 f t TOTAL 0.00 3 9741 \N +385476 2025-10-15 22:35:47.603587+00 2025-10-15 22:35:47.603595+00 f t ADELANTO 0.00 4 9741 \N +388537 2025-10-16 23:22:22.716557+00 2025-10-16 23:22:22.716566+00 f t SUBTOTAL 0.00 1 9837 \N +388538 2025-10-16 23:22:22.71858+00 2025-10-16 23:22:22.718593+00 f t DESCUENTO 0.00 2 9837 \N +388539 2025-10-16 23:22:22.720128+00 2025-10-16 23:22:22.720135+00 f t TOTAL 0.00 3 9837 \N +388540 2025-10-16 23:22:22.721307+00 2025-10-16 23:22:22.721314+00 f t ADELANTO 0.00 4 9837 \N +378817 2025-10-13 17:07:55.631399+00 2025-10-13 17:07:55.631408+00 f t SUBTOTAL 78000.00 1 9550 \N +378818 2025-10-13 17:07:55.633355+00 2025-10-13 17:07:55.633363+00 f t DESCUENTO 0.00 2 9550 \N +378819 2025-10-13 17:07:55.634924+00 2025-10-13 17:07:55.634935+00 f t TOTAL 78000.00 3 9550 \N +378820 2025-10-13 17:07:55.636605+00 2025-10-13 17:07:55.636615+00 f t ADELANTO 21500.00 4 9550 \N +425977 2025-10-28 17:11:33.262372+00 2025-10-28 17:11:33.262381+00 f t SUBTOTAL 70000.00 1 10741 \N +378825 2025-10-13 17:29:15.336051+00 2025-10-13 17:29:15.336059+00 f t SUBTOTAL 0.00 1 9551 \N +378826 2025-10-13 17:29:15.337333+00 2025-10-13 17:29:15.337339+00 f t DESCUENTO 0.00 2 9551 \N +378827 2025-10-13 17:29:15.338406+00 2025-10-13 17:29:15.338411+00 f t TOTAL 0.00 3 9551 \N +378828 2025-10-13 17:29:15.33929+00 2025-10-13 17:29:15.339296+00 f t ADELANTO 0.00 4 9551 \N +378893 2025-10-13 17:48:59.085984+00 2025-10-13 17:48:59.085992+00 f t SUBTOTAL 46000.00 1 9520 \N +378894 2025-10-13 17:48:59.087629+00 2025-10-13 17:48:59.087636+00 f t DESCUENTO 0.00 2 9520 \N +378895 2025-10-13 17:48:59.088894+00 2025-10-13 17:48:59.088901+00 f t TOTAL 46000.00 3 9520 \N +378896 2025-10-13 17:48:59.089986+00 2025-10-13 17:48:59.089991+00 f t ADELANTO 11000.00 4 9520 \N +382061 2025-10-14 20:14:14.761342+00 2025-10-14 20:14:14.761354+00 f t SUBTOTAL 82000.00 1 9642 \N +382062 2025-10-14 20:14:14.763294+00 2025-10-14 20:14:14.763304+00 f t DESCUENTO 0.00 2 9642 \N +382063 2025-10-14 20:14:14.764712+00 2025-10-14 20:14:14.764718+00 f t TOTAL 82000.00 3 9642 \N +382064 2025-10-14 20:14:14.766059+00 2025-10-14 20:14:14.766066+00 f t ADELANTO 12000.00 4 9642 \N +378921 2025-10-13 17:55:29.28058+00 2025-10-13 17:55:29.280593+00 f t SUBTOTAL 30000.00 1 9553 \N +378922 2025-10-13 17:55:29.283095+00 2025-10-13 17:55:29.283106+00 f t DESCUENTO 0.00 2 9553 \N +378923 2025-10-13 17:55:29.285162+00 2025-10-13 17:55:29.285173+00 f t TOTAL 30000.00 3 9553 \N +378924 2025-10-13 17:55:29.286665+00 2025-10-13 17:55:29.286672+00 f t ADELANTO 30000.00 4 9553 \N +378929 2025-10-13 17:58:39.182261+00 2025-10-13 17:58:39.182274+00 f t SUBTOTAL 0.00 1 9554 \N +378930 2025-10-13 17:58:39.184023+00 2025-10-13 17:58:39.184034+00 f t DESCUENTO 0.00 2 9554 \N +378931 2025-10-13 17:58:39.185842+00 2025-10-13 17:58:39.185852+00 f t TOTAL 0.00 3 9554 \N +378932 2025-10-13 17:58:39.187375+00 2025-10-13 17:58:39.187384+00 f t ADELANTO 0.00 4 9554 \N +378941 2025-10-13 18:13:20.035327+00 2025-10-13 18:13:20.035336+00 f t SUBTOTAL 0.00 1 9555 \N +378942 2025-10-13 18:13:20.036827+00 2025-10-13 18:13:20.036844+00 f t DESCUENTO 0.00 2 9555 \N +378943 2025-10-13 18:13:20.037813+00 2025-10-13 18:13:20.037819+00 f t TOTAL 0.00 3 9555 \N +378944 2025-10-13 18:13:20.038864+00 2025-10-13 18:13:20.03887+00 f t ADELANTO 0.00 4 9555 \N +378945 2025-10-13 18:15:36.324171+00 2025-10-13 18:15:36.324179+00 f t SUBTOTAL 70000.00 1 9552 \N +378946 2025-10-13 18:15:36.325941+00 2025-10-13 18:15:36.32595+00 f t DESCUENTO 0.00 2 9552 \N +378947 2025-10-13 18:15:36.327488+00 2025-10-13 18:15:36.327494+00 f t TOTAL 70000.00 3 9552 \N +378948 2025-10-13 18:15:36.329396+00 2025-10-13 18:15:36.329403+00 f t ADELANTO 19000.00 4 9552 \N +382661 2025-10-14 23:37:36.863853+00 2025-10-14 23:37:36.863862+00 f t SUBTOTAL 0.00 1 9653 \N +382662 2025-10-14 23:37:36.865973+00 2025-10-14 23:37:36.865981+00 f t DESCUENTO 0.00 2 9653 \N +382663 2025-10-14 23:37:36.867093+00 2025-10-14 23:37:36.867099+00 f t TOTAL 0.00 3 9653 \N +382664 2025-10-14 23:37:36.868179+00 2025-10-14 23:37:36.868185+00 f t ADELANTO 0.00 4 9653 \N +378953 2025-10-13 18:28:02.075836+00 2025-10-13 18:28:02.075849+00 f t SUBTOTAL 0.00 1 9556 \N +378954 2025-10-13 18:28:02.077345+00 2025-10-13 18:28:02.077355+00 f t DESCUENTO 0.00 2 9556 \N +378955 2025-10-13 18:28:02.078621+00 2025-10-13 18:28:02.078658+00 f t TOTAL 0.00 3 9556 \N +378956 2025-10-13 18:28:02.080046+00 2025-10-13 18:28:02.080054+00 f t ADELANTO 0.00 4 9556 \N +383397 2025-10-15 10:35:03.746198+00 2025-10-15 10:35:03.746213+00 f t SUBTOTAL 46000.00 1 9677 \N +383398 2025-10-15 10:35:03.750575+00 2025-10-15 10:35:03.750589+00 f t DESCUENTO 0.00 2 9677 \N +383399 2025-10-15 10:35:03.753318+00 2025-10-15 10:35:03.753332+00 f t TOTAL 46000.00 3 9677 \N +383400 2025-10-15 10:35:03.755754+00 2025-10-15 10:35:03.755769+00 f t ADELANTO 11000.00 4 9677 \N +378993 2025-10-13 18:38:28.229939+00 2025-10-13 18:38:28.229948+00 f t SUBTOTAL 30000.00 1 9557 \N +378994 2025-10-13 18:38:28.231832+00 2025-10-13 18:38:28.23184+00 f t DESCUENTO 0.00 2 9557 \N +378995 2025-10-13 18:38:28.233568+00 2025-10-13 18:38:28.233573+00 f t TOTAL 30000.00 3 9557 \N +378996 2025-10-13 18:38:28.23493+00 2025-10-13 18:38:28.234939+00 f t ADELANTO 30000.00 4 9557 \N +383789 2025-10-15 14:22:01.076865+00 2025-10-15 14:22:01.076878+00 f t SUBTOTAL 0.00 1 9687 \N +383790 2025-10-15 14:22:01.079526+00 2025-10-15 14:22:01.079538+00 f t DESCUENTO 0.00 2 9687 \N +383791 2025-10-15 14:22:01.081341+00 2025-10-15 14:22:01.081353+00 f t TOTAL 0.00 3 9687 \N +383792 2025-10-15 14:22:01.082963+00 2025-10-15 14:22:01.082974+00 f t ADELANTO 0.00 4 9687 \N +379025 2025-10-13 18:40:01.146876+00 2025-10-13 18:40:01.146887+00 f t SUBTOTAL 0.00 1 9559 \N +379026 2025-10-13 18:40:01.148577+00 2025-10-13 18:40:01.148587+00 f t DESCUENTO 0.00 2 9559 \N +379027 2025-10-13 18:40:01.150014+00 2025-10-13 18:40:01.150022+00 f t TOTAL 0.00 3 9559 \N +379028 2025-10-13 18:40:01.151723+00 2025-10-13 18:40:01.151731+00 f t ADELANTO 0.00 4 9559 \N +379029 2025-10-13 18:40:01.497207+00 2025-10-13 18:40:01.497223+00 f t SUBTOTAL 55000.00 1 9558 \N +379030 2025-10-13 18:40:01.500866+00 2025-10-13 18:40:01.500881+00 f t DESCUENTO 0.00 2 9558 \N +379031 2025-10-13 18:40:01.503751+00 2025-10-13 18:40:01.503767+00 f t TOTAL 55000.00 3 9558 \N +379032 2025-10-13 18:40:01.506396+00 2025-10-13 18:40:01.50641+00 f t ADELANTO 11000.00 4 9558 \N +379045 2025-10-13 18:57:00.172841+00 2025-10-13 18:57:00.172853+00 f t SUBTOTAL 55000.00 1 9546 \N +379046 2025-10-13 18:57:00.174782+00 2025-10-13 18:57:00.174791+00 f t DESCUENTO 0.00 2 9546 \N +379047 2025-10-13 18:57:00.176281+00 2025-10-13 18:57:00.176288+00 f t TOTAL 55000.00 3 9546 \N +379048 2025-10-13 18:57:00.177576+00 2025-10-13 18:57:00.177582+00 f t ADELANTO 11000.00 4 9546 \N +379057 2025-10-13 18:59:44.278513+00 2025-10-13 18:59:44.278525+00 f t SUBTOTAL 68000.00 1 9560 \N +379058 2025-10-13 18:59:44.280622+00 2025-10-13 18:59:44.280632+00 f t DESCUENTO 0.00 2 9560 \N +379059 2025-10-13 18:59:44.283243+00 2025-10-13 18:59:44.283253+00 f t TOTAL 68000.00 3 9560 \N +379060 2025-10-13 18:59:44.284672+00 2025-10-13 18:59:44.284681+00 f t ADELANTO 13000.00 4 9560 \N +379065 2025-10-13 19:07:42.341819+00 2025-10-13 19:07:42.341827+00 f t SUBTOTAL 0.00 1 9561 \N +379066 2025-10-13 19:07:42.343005+00 2025-10-13 19:07:42.343012+00 f t DESCUENTO 0.00 2 9561 \N +379067 2025-10-13 19:07:42.344024+00 2025-10-13 19:07:42.34403+00 f t TOTAL 0.00 3 9561 \N +379068 2025-10-13 19:07:42.344927+00 2025-10-13 19:07:42.344936+00 f t ADELANTO 0.00 4 9561 \N +379077 2025-10-13 19:57:16.881446+00 2025-10-13 19:57:16.881458+00 f t SUBTOTAL 60000.00 1 9562 \N +379078 2025-10-13 19:57:16.883297+00 2025-10-13 19:57:16.883304+00 f t DESCUENTO 0.00 2 9562 \N +379079 2025-10-13 19:57:16.884612+00 2025-10-13 19:57:16.884618+00 f t TOTAL 60000.00 3 9562 \N +379080 2025-10-13 19:57:16.885683+00 2025-10-13 19:57:16.885689+00 f t ADELANTO 60000.00 4 9562 \N +379105 2025-10-13 20:20:46.993497+00 2025-10-13 20:20:46.993512+00 f t SUBTOTAL 46000.00 1 9563 \N +379106 2025-10-13 20:20:46.995663+00 2025-10-13 20:20:46.995674+00 f t DESCUENTO 0.00 2 9563 \N +379107 2025-10-13 20:20:46.997213+00 2025-10-13 20:20:46.997223+00 f t TOTAL 46000.00 3 9563 \N +379108 2025-10-13 20:20:46.998633+00 2025-10-13 20:20:46.998642+00 f t ADELANTO 11000.00 4 9563 \N +456307 2025-11-05 13:10:12.747435+00 2025-11-05 13:10:12.747442+00 f t SUBTOTAL 13200.00 1 11457 \N +456308 2025-11-05 13:10:12.749479+00 2025-11-05 13:10:12.749487+00 f t COSTO_SERVICIO 0.00 2 11457 \N +416042 2025-10-25 21:20:53.027958+00 2025-10-25 21:20:53.027968+00 f t SUBTOTAL 0.00 1 10514 \N +456309 2025-11-05 13:10:12.750737+00 2025-11-05 13:10:12.750745+00 f t DESCUENTO 0.00 3 11457 \N +381833 2025-10-14 18:04:22.368969+00 2025-10-14 18:04:22.368978+00 f t SUBTOTAL 0.00 1 9633 \N +381834 2025-10-14 18:04:22.370525+00 2025-10-14 18:04:22.370533+00 f t DESCUENTO 0.00 2 9633 \N +381835 2025-10-14 18:04:22.371878+00 2025-10-14 18:04:22.371885+00 f t TOTAL 0.00 3 9633 \N +381836 2025-10-14 18:04:22.373044+00 2025-10-14 18:04:22.373049+00 f t ADELANTO 0.00 4 9633 \N +379189 2025-10-13 20:59:24.973881+00 2025-10-13 20:59:24.97389+00 f t SUBTOTAL 78000.00 1 9564 \N +379190 2025-10-13 20:59:24.975613+00 2025-10-13 20:59:24.975622+00 f t DESCUENTO 0.00 2 9564 \N +379191 2025-10-13 20:59:24.976815+00 2025-10-13 20:59:24.976822+00 f t TOTAL 78000.00 3 9564 \N +379192 2025-10-13 20:59:24.978327+00 2025-10-13 20:59:24.978338+00 f t ADELANTO 13000.00 4 9564 \N +390281 2025-10-17 10:23:33.482032+00 2025-10-17 10:23:33.482041+00 f t SUBTOTAL 0.00 1 9879 \N +390282 2025-10-17 10:23:33.483396+00 2025-10-17 10:23:33.483405+00 f t DESCUENTO 0.00 2 9879 \N +390283 2025-10-17 10:23:33.484464+00 2025-10-17 10:23:33.484469+00 f t TOTAL 0.00 3 9879 \N +390284 2025-10-17 10:23:33.485324+00 2025-10-17 10:23:33.485329+00 f t ADELANTO 0.00 4 9879 \N +379225 2025-10-13 21:01:55.349968+00 2025-10-13 21:01:55.349976+00 f t SUBTOTAL 68000.00 1 9565 \N +379226 2025-10-13 21:01:55.351391+00 2025-10-13 21:01:55.351398+00 f t DESCUENTO 0.00 2 9565 \N +379227 2025-10-13 21:01:55.352346+00 2025-10-13 21:01:55.352352+00 f t TOTAL 68000.00 3 9565 \N +379228 2025-10-13 21:01:55.353351+00 2025-10-13 21:01:55.353359+00 f t ADELANTO 13000.00 4 9565 \N +390893 2025-10-17 16:18:43.462603+00 2025-10-17 16:18:43.462612+00 f t SUBTOTAL 46000.00 1 9900 \N +390894 2025-10-17 16:18:43.464732+00 2025-10-17 16:18:43.464739+00 f t DESCUENTO 0.00 2 9900 \N +390895 2025-10-17 16:18:43.466054+00 2025-10-17 16:18:43.46606+00 f t TOTAL 46000.00 3 9900 \N +390896 2025-10-17 16:18:43.467207+00 2025-10-17 16:18:43.467213+00 f t ADELANTO 11000.00 4 9900 \N +383405 2025-10-15 10:51:29.57488+00 2025-10-15 10:51:29.574889+00 f t SUBTOTAL 0.00 1 9678 \N +383406 2025-10-15 10:51:29.576351+00 2025-10-15 10:51:29.576357+00 f t DESCUENTO 0.00 2 9678 \N +383407 2025-10-15 10:51:29.57749+00 2025-10-15 10:51:29.577495+00 f t TOTAL 0.00 3 9678 \N +383408 2025-10-15 10:51:29.578591+00 2025-10-15 10:51:29.578597+00 f t ADELANTO 0.00 4 9678 \N +379261 2025-10-13 21:05:11.538061+00 2025-10-13 21:05:11.538073+00 f t SUBTOTAL 78000.00 1 9566 \N +379262 2025-10-13 21:05:11.539772+00 2025-10-13 21:05:11.539782+00 f t DESCUENTO 0.00 2 9566 \N +379263 2025-10-13 21:05:11.541153+00 2025-10-13 21:05:11.541161+00 f t TOTAL 78000.00 3 9566 \N +379264 2025-10-13 21:05:11.543059+00 2025-10-13 21:05:11.543066+00 f t ADELANTO 13000.00 4 9566 \N +383793 2025-10-15 14:23:01.401686+00 2025-10-15 14:23:01.401698+00 f t SUBTOTAL 78000.00 1 9685 \N +383794 2025-10-15 14:23:01.403811+00 2025-10-15 14:23:01.403823+00 f t DESCUENTO 0.00 2 9685 \N +383795 2025-10-15 14:23:01.405733+00 2025-10-15 14:23:01.405745+00 f t TOTAL 78000.00 3 9685 \N +383796 2025-10-15 14:23:01.407272+00 2025-10-15 14:23:01.407283+00 f t ADELANTO 13000.00 4 9685 \N +384241 2025-10-15 15:24:33.045774+00 2025-10-15 15:24:33.045782+00 f t SUBTOTAL 55000.00 1 9701 \N +384242 2025-10-15 15:24:33.047574+00 2025-10-15 15:24:33.047583+00 f t DESCUENTO 0.00 2 9701 \N +384243 2025-10-15 15:24:33.04907+00 2025-10-15 15:24:33.049077+00 f t TOTAL 55000.00 3 9701 \N +384244 2025-10-15 15:24:33.050311+00 2025-10-15 15:24:33.050317+00 f t ADELANTO 11000.00 4 9701 \N +391605 2025-10-17 18:08:56.207807+00 2025-10-17 18:08:56.207816+00 f t SUBTOTAL 46000.00 1 9913 \N +391606 2025-10-17 18:08:56.209854+00 2025-10-17 18:08:56.209861+00 f t DESCUENTO 0.00 2 9913 \N +391607 2025-10-17 18:08:56.211274+00 2025-10-17 18:08:56.211279+00 f t TOTAL 46000.00 3 9913 \N +391608 2025-10-17 18:08:56.212539+00 2025-10-17 18:08:56.212544+00 f t ADELANTO 11000.00 4 9913 \N +391665 2025-10-17 18:36:45.805897+00 2025-10-17 18:36:45.805907+00 f t SUBTOTAL 0.00 1 9915 \N +391666 2025-10-17 18:36:45.807324+00 2025-10-17 18:36:45.807331+00 f t DESCUENTO 0.00 2 9915 \N +391667 2025-10-17 18:36:45.808483+00 2025-10-17 18:36:45.808488+00 f t TOTAL 0.00 3 9915 \N +391668 2025-10-17 18:36:45.80947+00 2025-10-17 18:36:45.809477+00 f t ADELANTO 0.00 4 9915 \N +379317 2025-10-13 21:21:51.826578+00 2025-10-13 21:21:51.826588+00 f t SUBTOTAL 0.00 1 9567 \N +379318 2025-10-13 21:21:51.828346+00 2025-10-13 21:21:51.828353+00 f t DESCUENTO 0.00 2 9567 \N +379319 2025-10-13 21:21:51.829511+00 2025-10-13 21:21:51.829517+00 f t TOTAL 0.00 3 9567 \N +379320 2025-10-13 21:21:51.830491+00 2025-10-13 21:21:51.830496+00 f t ADELANTO 0.00 4 9567 \N +391785 2025-10-17 19:27:24.514831+00 2025-10-17 19:27:24.514839+00 f t SUBTOTAL 54000.00 1 9919 \N +391786 2025-10-17 19:27:24.516603+00 2025-10-17 19:27:24.516611+00 f t DESCUENTO 0.00 2 9919 \N +391787 2025-10-17 19:27:24.518124+00 2025-10-17 19:27:24.51813+00 f t TOTAL 54000.00 3 9919 \N +391788 2025-10-17 19:27:24.519464+00 2025-10-17 19:27:24.519471+00 f t ADELANTO 13500.00 4 9919 \N +384881 2025-10-15 19:15:38.886985+00 2025-10-15 19:15:38.886997+00 f t SUBTOTAL 23000.00 1 9722 \N +384882 2025-10-15 19:15:38.889245+00 2025-10-15 19:15:38.889255+00 f t DESCUENTO 0.00 2 9722 \N +379337 2025-10-13 21:36:08.801281+00 2025-10-13 21:36:08.801297+00 f t SUBTOTAL 0.00 1 9568 \N +379338 2025-10-13 21:36:08.805988+00 2025-10-13 21:36:08.805998+00 f t DESCUENTO 0.00 2 9568 \N +379339 2025-10-13 21:36:08.822855+00 2025-10-13 21:36:08.822864+00 f t TOTAL 0.00 3 9568 \N +379340 2025-10-13 21:36:08.825034+00 2025-10-13 21:36:08.825046+00 f t ADELANTO 0.00 4 9568 \N +384883 2025-10-15 19:15:38.890648+00 2025-10-15 19:15:38.890657+00 f t TOTAL 23000.00 3 9722 \N +384884 2025-10-15 19:15:38.891971+00 2025-10-15 19:15:38.891978+00 f t ADELANTO 5500.00 4 9722 \N +379345 2025-10-13 21:53:01.811194+00 2025-10-13 21:53:01.811204+00 f t SUBTOTAL 0.00 1 9569 \N +379346 2025-10-13 21:53:01.812652+00 2025-10-13 21:53:01.812658+00 f t DESCUENTO 0.00 2 9569 \N +379347 2025-10-13 21:53:01.813848+00 2025-10-13 21:53:01.813854+00 f t TOTAL 0.00 3 9569 \N +379348 2025-10-13 21:53:01.814945+00 2025-10-13 21:53:01.814951+00 f t ADELANTO 0.00 4 9569 \N +384953 2025-10-15 19:28:20.368808+00 2025-10-15 19:28:20.368818+00 f t SUBTOTAL 0.00 1 9726 \N +384954 2025-10-15 19:28:20.370411+00 2025-10-15 19:28:20.370418+00 f t DESCUENTO 0.00 2 9726 \N +384955 2025-10-15 19:28:20.371688+00 2025-10-15 19:28:20.371694+00 f t TOTAL 0.00 3 9726 \N +384956 2025-10-15 19:28:20.372705+00 2025-10-15 19:28:20.372713+00 f t ADELANTO 0.00 4 9726 \N +379381 2025-10-13 22:02:58.014175+00 2025-10-13 22:02:58.014183+00 f t SUBTOTAL 46000.00 1 9570 \N +379382 2025-10-13 22:02:58.016052+00 2025-10-13 22:02:58.016059+00 f t DESCUENTO 0.00 2 9570 \N +379383 2025-10-13 22:02:58.017406+00 2025-10-13 22:02:58.017412+00 f t TOTAL 46000.00 3 9570 \N +379384 2025-10-13 22:02:58.018521+00 2025-10-13 22:02:58.018526+00 f t ADELANTO 11000.00 4 9570 \N +416043 2025-10-25 21:20:53.029568+00 2025-10-25 21:20:53.029574+00 f t COSTO_SERVICIO 0.00 2 10514 \N +397629 2025-10-20 04:13:46.652567+00 2025-10-20 04:13:46.652576+00 f t SUBTOTAL 0.00 1 10068 \N +397630 2025-10-20 04:13:46.654057+00 2025-10-20 04:13:46.654063+00 f t DESCUENTO 0.00 2 10068 \N +397631 2025-10-20 04:13:46.655101+00 2025-10-20 04:13:46.655106+00 f t TOTAL 0.00 3 10068 \N +397632 2025-10-20 04:13:46.656141+00 2025-10-20 04:13:46.656146+00 f t ADELANTO 0.00 4 10068 \N +380257 2025-10-14 00:33:20.592741+00 2025-10-14 00:33:20.59275+00 f t SUBTOTAL 54000.00 1 9588 \N +380258 2025-10-14 00:33:20.594594+00 2025-10-14 00:33:20.594602+00 f t DESCUENTO 0.00 2 9588 \N +380259 2025-10-14 00:33:20.595771+00 2025-10-14 00:33:20.595778+00 f t TOTAL 54000.00 3 9588 \N +380260 2025-10-14 00:33:20.596996+00 2025-10-14 00:33:20.597005+00 f t ADELANTO 13500.00 4 9588 \N +380837 2025-10-14 04:11:34.029951+00 2025-10-14 04:11:34.029963+00 f t SUBTOTAL 0.00 1 9599 \N +380838 2025-10-14 04:11:34.032195+00 2025-10-14 04:11:34.032203+00 f t DESCUENTO 0.00 2 9599 \N +380839 2025-10-14 04:11:34.033431+00 2025-10-14 04:11:34.033436+00 f t TOTAL 0.00 3 9599 \N +380840 2025-10-14 04:11:34.034685+00 2025-10-14 04:11:34.034691+00 f t ADELANTO 0.00 4 9599 \N +389881 2025-10-17 03:30:06.281659+00 2025-10-17 03:30:06.281674+00 f t SUBTOTAL 0.00 1 9867 \N +389882 2025-10-17 03:30:06.284156+00 2025-10-17 03:30:06.284169+00 f t DESCUENTO 0.00 2 9867 \N +389883 2025-10-17 03:30:06.287657+00 2025-10-17 03:30:06.287671+00 f t TOTAL 0.00 3 9867 \N +389884 2025-10-17 03:30:06.292728+00 2025-10-17 03:30:06.292742+00 f t ADELANTO 0.00 4 9867 \N +390121 2025-10-17 03:53:04.504124+00 2025-10-17 03:53:04.504133+00 f t SUBTOTAL 139750.00 1 9872 \N +390122 2025-10-17 03:53:04.506719+00 2025-10-17 03:53:04.506728+00 f t DESCUENTO 0.00 2 9872 \N +390123 2025-10-17 03:53:04.508469+00 2025-10-17 03:53:04.508479+00 f t TOTAL 139750.00 3 9872 \N +390124 2025-10-17 03:53:04.509983+00 2025-10-17 03:53:04.50999+00 f t ADELANTO 29750.00 4 9872 \N +390289 2025-10-17 10:25:03.05843+00 2025-10-17 10:25:03.058446+00 f t SUBTOTAL 0.00 1 9880 \N +390290 2025-10-17 10:25:03.061239+00 2025-10-17 10:25:03.061254+00 f t DESCUENTO 0.00 2 9880 \N +390291 2025-10-17 10:25:03.063667+00 2025-10-17 10:25:03.063684+00 f t TOTAL 0.00 3 9880 \N +390292 2025-10-17 10:25:03.066587+00 2025-10-17 10:25:03.0666+00 f t ADELANTO 0.00 4 9880 \N +379497 2025-10-13 22:07:28.094114+00 2025-10-13 22:07:28.094123+00 f t SUBTOTAL 0.00 1 9571 \N +379498 2025-10-13 22:07:28.09623+00 2025-10-13 22:07:28.09624+00 f t DESCUENTO 0.00 2 9571 \N +379499 2025-10-13 22:07:28.097803+00 2025-10-13 22:07:28.09781+00 f t TOTAL 0.00 3 9571 \N +379500 2025-10-13 22:07:28.099075+00 2025-10-13 22:07:28.09908+00 f t ADELANTO 0.00 4 9571 \N +390585 2025-10-17 12:19:22.81723+00 2025-10-17 12:19:22.817238+00 f t SUBTOTAL 46000.00 1 9886 \N +390586 2025-10-17 12:19:22.818976+00 2025-10-17 12:19:22.818984+00 f t DESCUENTO 0.00 2 9886 \N +390587 2025-10-17 12:19:22.820467+00 2025-10-17 12:19:22.820474+00 f t TOTAL 46000.00 3 9886 \N +390588 2025-10-17 12:19:22.821593+00 2025-10-17 12:19:22.8216+00 f t ADELANTO 11000.00 4 9886 \N +383093 2025-10-15 01:48:59.610964+00 2025-10-15 01:48:59.610978+00 f t SUBTOTAL 0.00 1 9667 \N +383094 2025-10-15 01:48:59.613546+00 2025-10-15 01:48:59.613554+00 f t DESCUENTO 0.00 2 9667 \N +383095 2025-10-15 01:48:59.615031+00 2025-10-15 01:48:59.615038+00 f t TOTAL 0.00 3 9667 \N +383096 2025-10-15 01:48:59.616266+00 2025-10-15 01:48:59.616272+00 f t ADELANTO 0.00 4 9667 \N +383305 2025-10-15 08:31:55.405721+00 2025-10-15 08:31:55.405733+00 f t SUBTOTAL 0.00 1 9674 \N +383306 2025-10-15 08:31:55.408029+00 2025-10-15 08:31:55.408039+00 f t DESCUENTO 0.00 2 9674 \N +383307 2025-10-15 08:31:55.409471+00 2025-10-15 08:31:55.409477+00 f t TOTAL 0.00 3 9674 \N +383308 2025-10-15 08:31:55.410685+00 2025-10-15 08:31:55.410694+00 f t ADELANTO 0.00 4 9674 \N +390673 2025-10-17 13:45:03.025553+00 2025-10-17 13:45:03.025567+00 f t SUBTOTAL 0.00 1 9890 \N +390674 2025-10-17 13:45:03.027927+00 2025-10-17 13:45:03.02794+00 f t DESCUENTO 0.00 2 9890 \N +390675 2025-10-17 13:45:03.040279+00 2025-10-17 13:45:03.040294+00 f t TOTAL 0.00 3 9890 \N +390676 2025-10-17 13:45:03.04582+00 2025-10-17 13:45:03.045833+00 f t ADELANTO 0.00 4 9890 \N +390897 2025-10-17 16:18:48.520979+00 2025-10-17 16:18:48.521008+00 f t SUBTOTAL 55000.00 1 9901 \N +390898 2025-10-17 16:18:48.52285+00 2025-10-17 16:18:48.522858+00 f t DESCUENTO 0.00 2 9901 \N +390899 2025-10-17 16:18:48.524129+00 2025-10-17 16:18:48.524135+00 f t TOTAL 55000.00 3 9901 \N +390900 2025-10-17 16:18:48.525303+00 2025-10-17 16:18:48.525308+00 f t ADELANTO 11000.00 4 9901 \N +379541 2025-10-13 22:38:07.412609+00 2025-10-13 22:38:07.412618+00 f t SUBTOTAL 80000.00 1 9572 \N +379542 2025-10-13 22:38:07.414288+00 2025-10-13 22:38:07.414296+00 f t DESCUENTO 0.00 2 9572 \N +379543 2025-10-13 22:38:07.415604+00 2025-10-13 22:38:07.415611+00 f t TOTAL 80000.00 3 9572 \N +379544 2025-10-13 22:38:07.416903+00 2025-10-13 22:38:07.416909+00 f t ADELANTO 12000.00 4 9572 \N +391205 2025-10-17 17:38:13.497494+00 2025-10-17 17:38:13.497504+00 f t SUBTOTAL 0.00 1 9908 \N +391206 2025-10-17 17:38:13.499824+00 2025-10-17 17:38:13.499835+00 f t DESCUENTO 0.00 2 9908 \N +391207 2025-10-17 17:38:13.501222+00 2025-10-17 17:38:13.501232+00 f t TOTAL 0.00 3 9908 \N +391208 2025-10-17 17:38:13.50264+00 2025-10-17 17:38:13.502649+00 f t ADELANTO 0.00 4 9908 \N +391385 2025-10-17 17:56:34.382557+00 2025-10-17 17:56:34.382565+00 f t SUBTOTAL 92000.00 1 9909 \N +391386 2025-10-17 17:56:34.384462+00 2025-10-17 17:56:34.384469+00 f t DESCUENTO 0.00 2 9909 \N +379569 2025-10-13 22:47:06.190486+00 2025-10-13 22:47:06.190495+00 f t SUBTOTAL 46000.00 1 9573 \N +379570 2025-10-13 22:47:06.19227+00 2025-10-13 22:47:06.19228+00 f t DESCUENTO 0.00 2 9573 \N +379571 2025-10-13 22:47:06.193715+00 2025-10-13 22:47:06.193724+00 f t TOTAL 46000.00 3 9573 \N +379572 2025-10-13 22:47:06.194996+00 2025-10-13 22:47:06.195003+00 f t ADELANTO 11000.00 4 9573 \N +391387 2025-10-17 17:56:34.385529+00 2025-10-17 17:56:34.385535+00 f t TOTAL 92000.00 3 9909 \N +391388 2025-10-17 17:56:34.386677+00 2025-10-17 17:56:34.386683+00 f t ADELANTO 22000.00 4 9909 \N +384249 2025-10-15 15:40:39.399414+00 2025-10-15 15:40:39.399424+00 f t SUBTOTAL 0.00 1 9702 \N +384250 2025-10-15 15:40:39.401584+00 2025-10-15 15:40:39.401596+00 f t DESCUENTO 0.00 2 9702 \N +384251 2025-10-15 15:40:39.403607+00 2025-10-15 15:40:39.403619+00 f t TOTAL 0.00 3 9702 \N +384252 2025-10-15 15:40:39.405427+00 2025-10-15 15:40:39.405436+00 f t ADELANTO 0.00 4 9702 \N +384333 2025-10-15 16:44:22.269485+00 2025-10-15 16:44:22.269496+00 f t SUBTOTAL 30000.00 1 9705 \N +384334 2025-10-15 16:44:22.271683+00 2025-10-15 16:44:22.271691+00 f t DESCUENTO 0.00 2 9705 \N +384335 2025-10-15 16:44:22.273349+00 2025-10-15 16:44:22.273356+00 f t TOTAL 30000.00 3 9705 \N +384336 2025-10-15 16:44:22.274689+00 2025-10-15 16:44:22.274695+00 f t ADELANTO 30000.00 4 9705 \N +384721 2025-10-15 18:32:56.730715+00 2025-10-15 18:32:56.730724+00 f t SUBTOTAL 0.00 1 9715 \N +384722 2025-10-15 18:32:56.732955+00 2025-10-15 18:32:56.732964+00 f t DESCUENTO 0.00 2 9715 \N +384723 2025-10-15 18:32:56.734695+00 2025-10-15 18:32:56.734702+00 f t TOTAL 0.00 3 9715 \N +384724 2025-10-15 18:32:56.735916+00 2025-10-15 18:32:56.735921+00 f t ADELANTO 0.00 4 9715 \N +385457 2025-10-15 22:27:21.380761+00 2025-10-15 22:27:21.380771+00 f t SUBTOTAL 0.00 1 9739 \N +385458 2025-10-15 22:27:21.382046+00 2025-10-15 22:27:21.382053+00 f t DESCUENTO 0.00 2 9739 \N +385459 2025-10-15 22:27:21.383068+00 2025-10-15 22:27:21.383073+00 f t TOTAL 0.00 3 9739 \N +385460 2025-10-15 22:27:21.383971+00 2025-10-15 22:27:21.383977+00 f t ADELANTO 0.00 4 9739 \N +416044 2025-10-25 21:20:53.031205+00 2025-10-25 21:20:53.031214+00 f t DESCUENTO 0.00 3 10514 \N +416045 2025-10-25 21:20:53.032775+00 2025-10-25 21:20:53.032781+00 f t TOTAL 0.00 4 10514 \N +416046 2025-10-25 21:20:53.034125+00 2025-10-25 21:20:53.03413+00 f t ADELANTO 0.00 5 10514 \N +456002 2025-11-05 11:46:28.632037+00 2025-11-05 11:46:28.632044+00 f t SUBTOTAL 46000.00 1 11451 \N +388705 2025-10-16 23:28:24.831766+00 2025-10-16 23:28:24.831776+00 f t SUBTOTAL 0.00 1 9839 \N +388706 2025-10-16 23:28:24.834159+00 2025-10-16 23:28:24.834168+00 f t DESCUENTO 0.00 2 9839 \N +388707 2025-10-16 23:28:24.835512+00 2025-10-16 23:28:24.835522+00 f t TOTAL 0.00 3 9839 \N +388708 2025-10-16 23:28:24.836869+00 2025-10-16 23:28:24.836879+00 f t ADELANTO 0.00 4 9839 \N +389105 2025-10-17 01:04:37.086546+00 2025-10-17 01:04:37.086555+00 f t SUBTOTAL 0.00 1 9851 \N +385529 2025-10-15 22:37:30.663491+00 2025-10-15 22:37:30.663499+00 f t SUBTOTAL 70000.00 1 9742 \N +385530 2025-10-15 22:37:30.665083+00 2025-10-15 22:37:30.665091+00 f t DESCUENTO 0.00 2 9742 \N +385531 2025-10-15 22:37:30.66622+00 2025-10-15 22:37:30.666227+00 f t TOTAL 70000.00 3 9742 \N +385532 2025-10-15 22:37:30.667473+00 2025-10-15 22:37:30.66748+00 f t ADELANTO 19000.00 4 9742 \N +389106 2025-10-17 01:04:37.088656+00 2025-10-17 01:04:37.088663+00 f t DESCUENTO 0.00 2 9851 \N +389107 2025-10-17 01:04:37.090044+00 2025-10-17 01:04:37.090051+00 f t TOTAL 0.00 3 9851 \N +389108 2025-10-17 01:04:37.091502+00 2025-10-17 01:04:37.09151+00 f t ADELANTO 0.00 4 9851 \N +385549 2025-10-15 22:54:31.448825+00 2025-10-15 22:54:31.448834+00 f t SUBTOTAL 0.00 1 9743 \N +385550 2025-10-15 22:54:31.450745+00 2025-10-15 22:54:31.450753+00 f t DESCUENTO 0.00 2 9743 \N +385551 2025-10-15 22:54:31.452115+00 2025-10-15 22:54:31.452122+00 f t TOTAL 0.00 3 9743 \N +385552 2025-10-15 22:54:31.453288+00 2025-10-15 22:54:31.453294+00 f t ADELANTO 0.00 4 9743 \N +385557 2025-10-15 22:56:38.668137+00 2025-10-15 22:56:38.668149+00 f t SUBTOTAL 0.00 1 9744 \N +385558 2025-10-15 22:56:38.669592+00 2025-10-15 22:56:38.669601+00 f t DESCUENTO 0.00 2 9744 \N +385559 2025-10-15 22:56:38.670806+00 2025-10-15 22:56:38.670812+00 f t TOTAL 0.00 3 9744 \N +385560 2025-10-15 22:56:38.671749+00 2025-10-15 22:56:38.671755+00 f t ADELANTO 0.00 4 9744 \N +398519 2025-10-20 13:25:32.894446+00 2025-10-20 13:25:32.894456+00 f t TOTAL 0.00 3 10092 \N +398520 2025-10-20 13:25:32.897035+00 2025-10-20 13:25:32.897046+00 f t ADELANTO 0.00 4 10092 \N +398785 2025-10-20 13:41:01.50171+00 2025-10-20 13:41:01.501722+00 f t SUBTOTAL 0.00 1 10097 \N +398786 2025-10-20 13:41:01.504461+00 2025-10-20 13:41:01.504472+00 f t DESCUENTO 0.00 2 10097 \N +398787 2025-10-20 13:41:01.506107+00 2025-10-20 13:41:01.506118+00 f t TOTAL 0.00 3 10097 \N +398788 2025-10-20 13:41:01.507722+00 2025-10-20 13:41:01.507731+00 f t ADELANTO 0.00 4 10097 \N +385573 2025-10-15 22:59:34.248594+00 2025-10-15 22:59:34.248603+00 f t SUBTOTAL 0.00 1 9746 \N +385574 2025-10-15 22:59:34.250124+00 2025-10-15 22:59:34.250132+00 f t DESCUENTO 0.00 2 9746 \N +385575 2025-10-15 22:59:34.251437+00 2025-10-15 22:59:34.251443+00 f t TOTAL 0.00 3 9746 \N +385576 2025-10-15 22:59:34.252704+00 2025-10-15 22:59:34.25271+00 f t ADELANTO 0.00 4 9746 \N +399523 2025-10-20 16:51:13.081216+00 2025-10-20 16:51:13.081223+00 f t TOTAL 68000.00 3 10120 \N +399524 2025-10-20 16:51:13.082856+00 2025-10-20 16:51:13.082862+00 f t ADELANTO 13000.00 4 10120 \N +399745 2025-10-20 18:27:43.059037+00 2025-10-20 18:27:43.059045+00 f t SUBTOTAL 46000.00 1 10127 \N +399746 2025-10-20 18:27:43.06092+00 2025-10-20 18:27:43.060927+00 f t DESCUENTO 0.00 2 10127 \N +399747 2025-10-20 18:27:43.062325+00 2025-10-20 18:27:43.062333+00 f t TOTAL 46000.00 3 10127 \N +390365 2025-10-17 11:40:31.887428+00 2025-10-17 11:40:31.887439+00 f t SUBTOTAL 133000.00 1 9881 \N +390366 2025-10-17 11:40:31.889376+00 2025-10-17 11:40:31.889383+00 f t DESCUENTO 0.00 2 9881 \N +390367 2025-10-17 11:40:31.890865+00 2025-10-17 11:40:31.890872+00 f t TOTAL 133000.00 3 9881 \N +390368 2025-10-17 11:40:31.892155+00 2025-10-17 11:40:31.892161+00 f t ADELANTO 24000.00 4 9881 \N +399748 2025-10-20 18:27:43.063666+00 2025-10-20 18:27:43.063672+00 f t ADELANTO 11000.00 4 10127 \N +390965 2025-10-17 16:27:56.934498+00 2025-10-17 16:27:56.934507+00 f t SUBTOTAL 55000.00 1 9903 \N +390966 2025-10-17 16:27:56.936333+00 2025-10-17 16:27:56.936342+00 f t DESCUENTO 0.00 2 9903 \N +390967 2025-10-17 16:27:56.937378+00 2025-10-17 16:27:56.937383+00 f t TOTAL 55000.00 3 9903 \N +390968 2025-10-17 16:27:56.938363+00 2025-10-17 16:27:56.938368+00 f t ADELANTO 11000.00 4 9903 \N +385677 2025-10-15 23:03:54.451686+00 2025-10-15 23:03:54.451697+00 f t SUBTOTAL 46000.00 1 9745 \N +385678 2025-10-15 23:03:54.453816+00 2025-10-15 23:03:54.453827+00 f t DESCUENTO 0.00 2 9745 \N +385679 2025-10-15 23:03:54.455817+00 2025-10-15 23:03:54.455827+00 f t TOTAL 46000.00 3 9745 \N +385680 2025-10-15 23:03:54.457828+00 2025-10-15 23:03:54.457838+00 f t ADELANTO 11000.00 4 9745 \N +391449 2025-10-17 18:01:28.248753+00 2025-10-17 18:01:28.248763+00 f t SUBTOTAL 23000.00 1 9912 \N +391450 2025-10-17 18:01:28.250091+00 2025-10-17 18:01:28.250102+00 f t DESCUENTO 0.00 2 9912 \N +391451 2025-10-17 18:01:28.251215+00 2025-10-17 18:01:28.251223+00 f t TOTAL 23000.00 3 9912 \N +391452 2025-10-17 18:01:28.252012+00 2025-10-17 18:01:28.252018+00 f t ADELANTO 5500.00 4 9912 \N +385705 2025-10-15 23:09:56.348507+00 2025-10-15 23:09:56.348515+00 f t SUBTOTAL 0.00 1 9748 \N +385706 2025-10-15 23:09:56.349787+00 2025-10-15 23:09:56.349794+00 f t DESCUENTO 0.00 2 9748 \N +385707 2025-10-15 23:09:56.35073+00 2025-10-15 23:09:56.350735+00 f t TOTAL 0.00 3 9748 \N +385708 2025-10-15 23:09:56.351595+00 2025-10-15 23:09:56.351599+00 f t ADELANTO 0.00 4 9748 \N +385741 2025-10-15 23:10:37.888752+00 2025-10-15 23:10:37.888765+00 f t SUBTOTAL 0.00 1 9747 \N +385742 2025-10-15 23:10:37.891157+00 2025-10-15 23:10:37.891168+00 f t DESCUENTO 0.00 2 9747 \N +385743 2025-10-15 23:10:37.892747+00 2025-10-15 23:10:37.892757+00 f t TOTAL 0.00 3 9747 \N +385744 2025-10-15 23:10:37.894318+00 2025-10-15 23:10:37.894327+00 f t ADELANTO 0.00 4 9747 \N +385765 2025-10-15 23:29:52.885442+00 2025-10-15 23:29:52.885451+00 f t SUBTOTAL 0.00 1 9749 \N +385766 2025-10-15 23:29:52.887206+00 2025-10-15 23:29:52.887214+00 f t DESCUENTO 0.00 2 9749 \N +385767 2025-10-15 23:29:52.888348+00 2025-10-15 23:29:52.888354+00 f t TOTAL 0.00 3 9749 \N +385768 2025-10-15 23:29:52.889415+00 2025-10-15 23:29:52.889421+00 f t ADELANTO 0.00 4 9749 \N +392269 2025-10-17 22:00:34.956428+00 2025-10-17 22:00:34.956439+00 f t SUBTOTAL 0.00 1 9932 \N +392270 2025-10-17 22:00:34.95921+00 2025-10-17 22:00:34.95922+00 f t DESCUENTO 0.00 2 9932 \N +392271 2025-10-17 22:00:34.961036+00 2025-10-17 22:00:34.961045+00 f t TOTAL 0.00 3 9932 \N +392272 2025-10-17 22:00:34.962516+00 2025-10-17 22:00:34.962526+00 f t ADELANTO 0.00 4 9932 \N +392329 2025-10-17 23:12:20.863742+00 2025-10-17 23:12:20.863751+00 f t SUBTOTAL 0.00 1 9937 \N +392330 2025-10-17 23:12:20.865008+00 2025-10-17 23:12:20.865013+00 f t DESCUENTO 0.00 2 9937 \N +385793 2025-10-15 23:34:42.698057+00 2025-10-15 23:34:42.698065+00 f t SUBTOTAL 30000.00 1 9750 \N +385794 2025-10-15 23:34:42.699687+00 2025-10-15 23:34:42.699695+00 f t DESCUENTO 0.00 2 9750 \N +385795 2025-10-15 23:34:42.70079+00 2025-10-15 23:34:42.700797+00 f t TOTAL 30000.00 3 9750 \N +385796 2025-10-15 23:34:42.701762+00 2025-10-15 23:34:42.701767+00 f t ADELANTO 30000.00 4 9750 \N +392331 2025-10-17 23:12:20.865964+00 2025-10-17 23:12:20.865969+00 f t TOTAL 0.00 3 9937 \N +392332 2025-10-17 23:12:20.866843+00 2025-10-17 23:12:20.866848+00 f t ADELANTO 0.00 4 9937 \N +397453 2025-10-20 01:48:14.701282+00 2025-10-20 01:48:14.701291+00 f t SUBTOTAL 46000.00 1 10061 \N +397454 2025-10-20 01:48:14.703263+00 2025-10-20 01:48:14.70327+00 f t DESCUENTO 0.00 2 10061 \N +397455 2025-10-20 01:48:14.704868+00 2025-10-20 01:48:14.704874+00 f t TOTAL 46000.00 3 10061 \N +397456 2025-10-20 01:48:14.705945+00 2025-10-20 01:48:14.705951+00 f t ADELANTO 11000.00 4 10061 \N +456003 2025-11-05 11:46:28.634132+00 2025-11-05 11:46:28.634138+00 f t COSTO_SERVICIO 0.00 2 11451 \N +425978 2025-10-28 17:11:33.264997+00 2025-10-28 17:11:33.265011+00 f t COSTO_SERVICIO 0.00 2 10741 \N +425979 2025-10-28 17:11:33.267328+00 2025-10-28 17:11:33.26734+00 f t DESCUENTO 0.00 3 10741 \N +425980 2025-10-28 17:11:33.26927+00 2025-10-28 17:11:33.269279+00 f t TOTAL 70000.00 4 10741 \N +388713 2025-10-16 23:31:01.578387+00 2025-10-16 23:31:01.578397+00 f t SUBTOTAL 0.00 1 9840 \N +388714 2025-10-16 23:31:01.580065+00 2025-10-16 23:31:01.580074+00 f t DESCUENTO 0.00 2 9840 \N +388715 2025-10-16 23:31:01.581811+00 2025-10-16 23:31:01.581819+00 f t TOTAL 0.00 3 9840 \N +388716 2025-10-16 23:31:01.584187+00 2025-10-16 23:31:01.584197+00 f t ADELANTO 0.00 4 9840 \N +425981 2025-10-28 17:11:33.271172+00 2025-10-28 17:11:33.271182+00 f t ADELANTO 19000.00 5 10741 \N +416052 2025-10-25 21:23:59.946128+00 2025-10-25 21:23:59.946138+00 f t SUBTOTAL 0.00 1 10515 \N +385817 2025-10-15 23:41:10.294148+00 2025-10-15 23:41:10.294161+00 f t SUBTOTAL 0.00 1 9752 \N +385818 2025-10-15 23:41:10.29611+00 2025-10-15 23:41:10.296122+00 f t DESCUENTO 0.00 2 9752 \N +385819 2025-10-15 23:41:10.298053+00 2025-10-15 23:41:10.298061+00 f t TOTAL 0.00 3 9752 \N +385820 2025-10-15 23:41:10.301464+00 2025-10-15 23:41:10.301472+00 f t ADELANTO 0.00 4 9752 \N +416053 2025-10-25 21:23:59.948125+00 2025-10-25 21:23:59.948136+00 f t COSTO_SERVICIO 0.00 2 10515 \N +416054 2025-10-25 21:23:59.949869+00 2025-10-25 21:23:59.949877+00 f t DESCUENTO 0.00 3 10515 \N +389113 2025-10-17 01:05:37.863964+00 2025-10-17 01:05:37.863973+00 f t SUBTOTAL 0.00 1 9852 \N +389114 2025-10-17 01:05:37.865441+00 2025-10-17 01:05:37.865448+00 f t DESCUENTO 0.00 2 9852 \N +389115 2025-10-17 01:05:37.866608+00 2025-10-17 01:05:37.866614+00 f t TOTAL 0.00 3 9852 \N +389116 2025-10-17 01:05:37.867956+00 2025-10-17 01:05:37.867962+00 f t ADELANTO 0.00 4 9852 \N +407887 2025-10-22 22:20:54.755315+00 2025-10-22 22:20:54.755324+00 f t SUBTOTAL 0.00 1 10320 \N +407888 2025-10-22 22:20:54.757386+00 2025-10-22 22:20:54.757393+00 f t COSTO_SERVICIO 0.00 2 10320 \N +385853 2025-10-15 23:43:11.239579+00 2025-10-15 23:43:11.239588+00 f t SUBTOTAL 0.00 1 9753 \N +385854 2025-10-15 23:43:11.241761+00 2025-10-15 23:43:11.241769+00 f t DESCUENTO 0.00 2 9753 \N +385855 2025-10-15 23:43:11.24325+00 2025-10-15 23:43:11.24326+00 f t TOTAL 0.00 3 9753 \N +385856 2025-10-15 23:43:11.244756+00 2025-10-15 23:43:11.244765+00 f t ADELANTO 0.00 4 9753 \N +407889 2025-10-22 22:20:54.758441+00 2025-10-22 22:20:54.758447+00 f t DESCUENTO 0.00 3 10320 \N +407890 2025-10-22 22:20:54.759545+00 2025-10-22 22:20:54.75955+00 f t TOTAL 0.00 4 10320 \N +407891 2025-10-22 22:20:54.760592+00 2025-10-22 22:20:54.760599+00 f t ADELANTO 0.00 5 10320 \N +399045 2025-10-20 13:57:01.323927+00 2025-10-20 13:57:01.323937+00 f t SUBTOTAL 0.00 1 10103 \N +399046 2025-10-20 13:57:01.326252+00 2025-10-20 13:57:01.32626+00 f t DESCUENTO 0.00 2 10103 \N +399047 2025-10-20 13:57:01.327911+00 2025-10-20 13:57:01.327921+00 f t TOTAL 0.00 3 10103 \N +399048 2025-10-20 13:57:01.329425+00 2025-10-20 13:57:01.329434+00 f t ADELANTO 0.00 4 10103 \N +385889 2025-10-15 23:49:21.997927+00 2025-10-15 23:49:21.997936+00 f t SUBTOTAL 70000.00 1 9751 \N +385890 2025-10-15 23:49:21.99999+00 2025-10-15 23:49:21.999999+00 f t DESCUENTO 0.00 2 9751 \N +385891 2025-10-15 23:49:22.00132+00 2025-10-15 23:49:22.001328+00 f t TOTAL 70000.00 3 9751 \N +385892 2025-10-15 23:49:22.002996+00 2025-10-15 23:49:22.003005+00 f t ADELANTO 19000.00 4 9751 \N +399633 2025-10-20 17:44:12.892507+00 2025-10-20 17:44:12.892519+00 f t SUBTOTAL 46000.00 1 10122 \N +399634 2025-10-20 17:44:12.894431+00 2025-10-20 17:44:12.894439+00 f t DESCUENTO 0.00 2 10122 \N +399635 2025-10-20 17:44:12.895803+00 2025-10-20 17:44:12.89581+00 f t TOTAL 46000.00 3 10122 \N +399636 2025-10-20 17:44:12.897175+00 2025-10-20 17:44:12.897181+00 f t ADELANTO 11000.00 4 10122 \N +390441 2025-10-17 11:48:49.264454+00 2025-10-17 11:48:49.264463+00 f t SUBTOTAL 54000.00 1 9882 \N +390442 2025-10-17 11:48:49.266396+00 2025-10-17 11:48:49.266405+00 f t DESCUENTO 0.00 2 9882 \N +390443 2025-10-17 11:48:49.268178+00 2025-10-17 11:48:49.268187+00 f t TOTAL 54000.00 3 9882 \N +390444 2025-10-17 11:48:49.269397+00 2025-10-17 11:48:49.269404+00 f t ADELANTO 13500.00 4 9882 \N +390597 2025-10-17 12:39:07.040394+00 2025-10-17 12:39:07.040402+00 f t SUBTOTAL 70000.00 1 9887 \N +390598 2025-10-17 12:39:07.042039+00 2025-10-17 12:39:07.042047+00 f t DESCUENTO 0.00 2 9887 \N +390599 2025-10-17 12:39:07.043433+00 2025-10-17 12:39:07.043439+00 f t TOTAL 70000.00 3 9887 \N +390600 2025-10-17 12:39:07.04454+00 2025-10-17 12:39:07.044546+00 f t ADELANTO 19000.00 4 9887 \N +390685 2025-10-17 13:46:13.586005+00 2025-10-17 13:46:13.586049+00 f t SUBTOTAL 70000.00 1 9891 \N +390686 2025-10-17 13:46:13.588178+00 2025-10-17 13:46:13.588187+00 f t DESCUENTO 0.00 2 9891 \N +390687 2025-10-17 13:46:13.589826+00 2025-10-17 13:46:13.589834+00 f t TOTAL 70000.00 3 9891 \N +390688 2025-10-17 13:46:13.591338+00 2025-10-17 13:46:13.591346+00 f t ADELANTO 19000.00 4 9891 \N +391089 2025-10-17 17:16:33.427065+00 2025-10-17 17:16:33.427076+00 f t SUBTOTAL 23000.00 1 9905 \N +391090 2025-10-17 17:16:33.428879+00 2025-10-17 17:16:33.428887+00 f t DESCUENTO 0.00 2 9905 \N +391091 2025-10-17 17:16:33.429999+00 2025-10-17 17:16:33.430005+00 f t TOTAL 23000.00 3 9905 \N +391092 2025-10-17 17:16:33.431166+00 2025-10-17 17:16:33.431172+00 f t ADELANTO 5500.00 4 9905 \N +401065 2025-10-21 08:38:12.270196+00 2025-10-21 08:38:12.270206+00 f t SUBTOTAL 0.00 1 10167 \N +401066 2025-10-21 08:38:12.272347+00 2025-10-21 08:38:12.272355+00 f t DESCUENTO 0.00 2 10167 \N +401067 2025-10-21 08:38:12.273367+00 2025-10-21 08:38:12.273377+00 f t TOTAL 0.00 3 10167 \N +401068 2025-10-21 08:38:12.274391+00 2025-10-21 08:38:12.274397+00 f t ADELANTO 0.00 4 10167 \N +391677 2025-10-17 18:46:20.059827+00 2025-10-17 18:46:20.059835+00 f t SUBTOTAL 55000.00 1 9916 \N +391678 2025-10-17 18:46:20.06168+00 2025-10-17 18:46:20.061688+00 f t DESCUENTO 0.00 2 9916 \N +391679 2025-10-17 18:46:20.062783+00 2025-10-17 18:46:20.062789+00 f t TOTAL 55000.00 3 9916 \N +391680 2025-10-17 18:46:20.063869+00 2025-10-17 18:46:20.063874+00 f t ADELANTO 11000.00 4 9916 \N +392145 2025-10-17 21:37:50.730014+00 2025-10-17 21:37:50.730023+00 f t SUBTOTAL 55000.00 1 9930 \N +392146 2025-10-17 21:37:50.731944+00 2025-10-17 21:37:50.731955+00 f t DESCUENTO 0.00 2 9930 \N +392147 2025-10-17 21:37:50.733274+00 2025-10-17 21:37:50.733281+00 f t TOTAL 55000.00 3 9930 \N +392148 2025-10-17 21:37:50.734348+00 2025-10-17 21:37:50.734354+00 f t ADELANTO 11000.00 4 9930 \N +401967 2025-10-21 14:21:20.876963+00 2025-10-21 14:21:20.876973+00 f t SUBTOTAL 0.00 1 10186 \N +401968 2025-10-21 14:21:20.878398+00 2025-10-21 14:21:20.878405+00 f t COSTO_SERVICIO 0.00 2 10186 \N +401969 2025-10-21 14:21:20.879493+00 2025-10-21 14:21:20.8795+00 f t DESCUENTO 0.00 3 10186 \N +392277 2025-10-17 22:01:16.878357+00 2025-10-17 22:01:16.878369+00 f t SUBTOTAL 0.00 1 9933 \N +392278 2025-10-17 22:01:16.88006+00 2025-10-17 22:01:16.880067+00 f t DESCUENTO 0.00 2 9933 \N +392279 2025-10-17 22:01:16.881372+00 2025-10-17 22:01:16.881378+00 f t TOTAL 0.00 3 9933 \N +392280 2025-10-17 22:01:16.882758+00 2025-10-17 22:01:16.882812+00 f t ADELANTO 0.00 4 9933 \N +401970 2025-10-21 14:21:20.880515+00 2025-10-21 14:21:20.880521+00 f t TOTAL 0.00 4 10186 \N +401971 2025-10-21 14:21:20.881394+00 2025-10-21 14:21:20.881399+00 f t ADELANTO 0.00 5 10186 \N +416055 2025-10-25 21:23:59.95144+00 2025-10-25 21:23:59.951447+00 f t TOTAL 0.00 4 10515 \N +386097 2025-10-15 23:59:12.665174+00 2025-10-15 23:59:12.665182+00 f t SUBTOTAL 119900.00 1 9754 \N +386098 2025-10-15 23:59:12.667009+00 2025-10-15 23:59:12.667019+00 f t DESCUENTO 0.00 2 9754 \N +386099 2025-10-15 23:59:12.668656+00 2025-10-15 23:59:12.668664+00 f t TOTAL 119900.00 3 9754 \N +386100 2025-10-15 23:59:12.670251+00 2025-10-15 23:59:12.670259+00 f t ADELANTO 79400.00 4 9754 \N +397461 2025-10-20 01:49:02.504433+00 2025-10-20 01:49:02.504446+00 f t SUBTOTAL 0.00 1 10062 \N +397462 2025-10-20 01:49:02.506824+00 2025-10-20 01:49:02.506837+00 f t DESCUENTO 0.00 2 10062 \N +397463 2025-10-20 01:49:02.50897+00 2025-10-20 01:49:02.508981+00 f t TOTAL 0.00 3 10062 \N +397464 2025-10-20 01:49:02.510876+00 2025-10-20 01:49:02.510887+00 f t ADELANTO 0.00 4 10062 \N +397645 2025-10-20 08:07:01.014117+00 2025-10-20 08:07:01.014127+00 f t SUBTOTAL 0.00 1 10069 \N +397646 2025-10-20 08:07:01.016335+00 2025-10-20 08:07:01.016343+00 f t DESCUENTO 0.00 2 10069 \N +397647 2025-10-20 08:07:01.017783+00 2025-10-20 08:07:01.01779+00 f t TOTAL 0.00 3 10069 \N +397648 2025-10-20 08:07:01.018903+00 2025-10-20 08:07:01.018911+00 f t ADELANTO 0.00 4 10069 \N +397801 2025-10-20 10:55:30.683499+00 2025-10-20 10:55:30.683506+00 f t SUBTOTAL 70000.00 1 10074 \N +397802 2025-10-20 10:55:30.68526+00 2025-10-20 10:55:30.685266+00 f t DESCUENTO 0.00 2 10074 \N +397803 2025-10-20 10:55:30.687594+00 2025-10-20 10:55:30.6876+00 f t TOTAL 70000.00 3 10074 \N +397804 2025-10-20 10:55:30.688616+00 2025-10-20 10:55:30.688621+00 f t ADELANTO 19000.00 4 10074 \N +389121 2025-10-17 01:07:01.746144+00 2025-10-17 01:07:01.74616+00 f t SUBTOTAL 0.00 1 9853 \N +389122 2025-10-17 01:07:01.748427+00 2025-10-17 01:07:01.74844+00 f t DESCUENTO 0.00 2 9853 \N +389123 2025-10-17 01:07:01.750355+00 2025-10-17 01:07:01.750366+00 f t TOTAL 0.00 3 9853 \N +389124 2025-10-17 01:07:01.752039+00 2025-10-17 01:07:01.752048+00 f t ADELANTO 0.00 4 9853 \N +389345 2025-10-17 01:44:19.213233+00 2025-10-17 01:44:19.213243+00 f t SUBTOTAL 78000.00 1 9857 \N +389346 2025-10-17 01:44:19.215054+00 2025-10-17 01:44:19.215061+00 f t DESCUENTO 0.00 2 9857 \N +389347 2025-10-17 01:44:19.216439+00 2025-10-17 01:44:19.216449+00 f t TOTAL 78000.00 3 9857 \N +389348 2025-10-17 01:44:19.217821+00 2025-10-17 01:44:19.217827+00 f t ADELANTO 21500.00 4 9857 \N +399053 2025-10-20 14:12:21.013877+00 2025-10-20 14:12:21.013885+00 f t SUBTOTAL 0.00 1 10104 \N +399054 2025-10-20 14:12:21.015478+00 2025-10-20 14:12:21.015488+00 f t DESCUENTO 0.00 2 10104 \N +399055 2025-10-20 14:12:21.016897+00 2025-10-20 14:12:21.016905+00 f t TOTAL 0.00 3 10104 \N +399056 2025-10-20 14:12:21.018192+00 2025-10-20 14:12:21.0182+00 f t ADELANTO 0.00 4 10104 \N +390137 2025-10-17 04:33:02.763355+00 2025-10-17 04:33:02.763365+00 f t SUBTOTAL 0.00 1 9873 \N +390138 2025-10-17 04:33:02.765615+00 2025-10-17 04:33:02.765627+00 f t DESCUENTO 0.00 2 9873 \N +390139 2025-10-17 04:33:02.767423+00 2025-10-17 04:33:02.767434+00 f t TOTAL 0.00 3 9873 \N +390140 2025-10-17 04:33:02.768916+00 2025-10-17 04:33:02.768924+00 f t ADELANTO 0.00 4 9873 \N +399189 2025-10-20 15:22:12.551501+00 2025-10-20 15:22:12.551513+00 f t SUBTOTAL 46000.00 1 10111 \N +399190 2025-10-20 15:22:12.553739+00 2025-10-20 15:22:12.55375+00 f t DESCUENTO 0.00 2 10111 \N +399191 2025-10-20 15:22:12.555167+00 2025-10-20 15:22:12.555176+00 f t TOTAL 46000.00 3 10111 \N +399192 2025-10-20 15:22:12.556513+00 2025-10-20 15:22:12.556521+00 f t ADELANTO 11000.00 4 10111 \N +386177 2025-10-16 00:01:34.037714+00 2025-10-16 00:01:34.037723+00 f t SUBTOTAL 0.00 1 9755 \N +386178 2025-10-16 00:01:34.039642+00 2025-10-16 00:01:34.03965+00 f t DESCUENTO 0.00 2 9755 \N +386179 2025-10-16 00:01:34.041103+00 2025-10-16 00:01:34.041111+00 f t TOTAL 0.00 3 9755 \N +386180 2025-10-16 00:01:34.042922+00 2025-10-16 00:01:34.042932+00 f t ADELANTO 0.00 4 9755 \N +386209 2025-10-16 00:14:18.50005+00 2025-10-16 00:14:18.500061+00 f t SUBTOTAL 55000.00 1 9756 \N +386210 2025-10-16 00:14:18.502056+00 2025-10-16 00:14:18.502064+00 f t DESCUENTO 0.00 2 9756 \N +386211 2025-10-16 00:14:18.503734+00 2025-10-16 00:14:18.503744+00 f t TOTAL 55000.00 3 9756 \N +386212 2025-10-16 00:14:18.50535+00 2025-10-16 00:14:18.505359+00 f t ADELANTO 11000.00 4 9756 \N +390845 2025-10-17 15:51:06.065707+00 2025-10-17 15:51:06.066554+00 f t SUBTOTAL 0.00 1 9899 \N +390846 2025-10-17 15:51:06.072855+00 2025-10-17 15:51:06.072868+00 f t DESCUENTO 0.00 2 9899 \N +390847 2025-10-17 15:51:06.074326+00 2025-10-17 15:51:06.074332+00 f t TOTAL 0.00 3 9899 \N +390848 2025-10-17 15:51:06.07549+00 2025-10-17 15:51:06.075496+00 f t ADELANTO 0.00 4 9899 \N +390913 2025-10-17 16:26:46.139872+00 2025-10-17 16:26:46.139882+00 f t SUBTOTAL 0.00 1 9902 \N +390914 2025-10-17 16:26:46.141984+00 2025-10-17 16:26:46.141991+00 f t DESCUENTO 0.00 2 9902 \N +390915 2025-10-17 16:26:46.143797+00 2025-10-17 16:26:46.143803+00 f t TOTAL 0.00 3 9902 \N +390916 2025-10-17 16:26:46.144929+00 2025-10-17 16:26:46.144935+00 f t ADELANTO 0.00 4 9902 \N +386245 2025-10-16 00:17:09.639313+00 2025-10-16 00:17:09.639325+00 f t SUBTOTAL 55000.00 1 9757 \N +386246 2025-10-16 00:17:09.641302+00 2025-10-16 00:17:09.641311+00 f t DESCUENTO 0.00 2 9757 \N +386247 2025-10-16 00:17:09.642807+00 2025-10-16 00:17:09.642814+00 f t TOTAL 55000.00 3 9757 \N +386248 2025-10-16 00:17:09.644011+00 2025-10-16 00:17:09.644017+00 f t ADELANTO 11000.00 4 9757 \N +386253 2025-10-16 00:46:02.452835+00 2025-10-16 00:46:02.452844+00 f t SUBTOTAL 0.00 1 9758 \N +386254 2025-10-16 00:46:02.454303+00 2025-10-16 00:46:02.45431+00 f t DESCUENTO 0.00 2 9758 \N +386255 2025-10-16 00:46:02.455606+00 2025-10-16 00:46:02.455615+00 f t TOTAL 0.00 3 9758 \N +386256 2025-10-16 00:46:02.456945+00 2025-10-16 00:46:02.456954+00 f t ADELANTO 0.00 4 9758 \N +386281 2025-10-16 02:24:45.290341+00 2025-10-16 02:24:45.290349+00 f t SUBTOTAL 55000.00 1 9759 \N +386282 2025-10-16 02:24:45.292173+00 2025-10-16 02:24:45.292179+00 f t DESCUENTO 0.00 2 9759 \N +386283 2025-10-16 02:24:45.294014+00 2025-10-16 02:24:45.29402+00 f t TOTAL 55000.00 3 9759 \N +386284 2025-10-16 02:24:45.295196+00 2025-10-16 02:24:45.295204+00 f t ADELANTO 11000.00 4 9759 \N +391685 2025-10-17 19:11:59.496248+00 2025-10-17 19:11:59.496257+00 f t SUBTOTAL 0.00 1 9917 \N +391686 2025-10-17 19:11:59.497572+00 2025-10-17 19:11:59.497583+00 f t DESCUENTO 0.00 2 9917 \N +391687 2025-10-17 19:11:59.498664+00 2025-10-17 19:11:59.498671+00 f t TOTAL 0.00 3 9917 \N +391688 2025-10-17 19:11:59.499636+00 2025-10-17 19:11:59.499641+00 f t ADELANTO 0.00 4 9917 \N +391909 2025-10-17 19:52:37.121781+00 2025-10-17 19:52:37.121793+00 f t SUBTOTAL 55000.00 1 9922 \N +391910 2025-10-17 19:52:37.123604+00 2025-10-17 19:52:37.123615+00 f t DESCUENTO 0.00 2 9922 \N +391911 2025-10-17 19:52:37.124815+00 2025-10-17 19:52:37.124824+00 f t TOTAL 55000.00 3 9922 \N +391912 2025-10-17 19:52:37.125919+00 2025-10-17 19:52:37.125927+00 f t ADELANTO 11000.00 4 9922 \N +392105 2025-10-17 21:11:19.282622+00 2025-10-17 21:11:19.282631+00 f t SUBTOTAL 0.00 1 9929 \N +392106 2025-10-17 21:11:19.28447+00 2025-10-17 21:11:19.284476+00 f t DESCUENTO 0.00 2 9929 \N +392107 2025-10-17 21:11:19.285585+00 2025-10-17 21:11:19.285591+00 f t TOTAL 0.00 3 9929 \N +392108 2025-10-17 21:11:19.286683+00 2025-10-17 21:11:19.286688+00 f t ADELANTO 0.00 4 9929 \N +386369 2025-10-16 03:22:41.448365+00 2025-10-16 03:22:41.448384+00 f t SUBTOTAL 55000.00 1 9761 \N +386370 2025-10-16 03:22:41.450055+00 2025-10-16 03:22:41.450063+00 f t DESCUENTO 0.00 2 9761 \N +386371 2025-10-16 03:22:41.451533+00 2025-10-16 03:22:41.451539+00 f t TOTAL 55000.00 3 9761 \N +386372 2025-10-16 03:22:41.452558+00 2025-10-16 03:22:41.452564+00 f t ADELANTO 11000.00 4 9761 \N +386385 2025-10-16 03:28:39.937169+00 2025-10-16 03:28:39.937178+00 f t SUBTOTAL 0.00 1 9762 \N +386386 2025-10-16 03:28:39.939331+00 2025-10-16 03:28:39.939345+00 f t DESCUENTO 0.00 2 9762 \N +386387 2025-10-16 03:28:39.940748+00 2025-10-16 03:28:39.940756+00 f t TOTAL 0.00 3 9762 \N +386388 2025-10-16 03:28:39.942165+00 2025-10-16 03:28:39.942175+00 f t ADELANTO 0.00 4 9762 \N +416056 2025-10-25 21:23:59.95293+00 2025-10-25 21:23:59.952936+00 f t ADELANTO 0.00 5 10515 \N +456004 2025-11-05 11:46:28.635629+00 2025-11-05 11:46:28.635634+00 f t DESCUENTO 0.00 3 11451 \N +456005 2025-11-05 11:46:28.636909+00 2025-11-05 11:46:28.636914+00 f t TOTAL 46000.00 4 11451 \N +456006 2025-11-05 11:46:28.637982+00 2025-11-05 11:46:28.637989+00 f t ADELANTO 11000.00 5 11451 \N +406607 2025-10-22 15:55:27.621443+00 2025-10-22 15:55:27.621453+00 f t SUBTOTAL 0.00 1 10292 \N +386401 2025-10-16 05:35:40.066042+00 2025-10-16 05:35:40.066054+00 f t SUBTOTAL 0.00 1 9764 \N +386402 2025-10-16 05:35:40.067754+00 2025-10-16 05:35:40.067764+00 f t DESCUENTO 0.00 2 9764 \N +386403 2025-10-16 05:35:40.069436+00 2025-10-16 05:35:40.069442+00 f t TOTAL 0.00 3 9764 \N +386404 2025-10-16 05:35:40.070896+00 2025-10-16 05:35:40.070906+00 f t ADELANTO 0.00 4 9764 \N +397653 2025-10-20 09:00:35.866978+00 2025-10-20 09:00:35.866989+00 f t SUBTOTAL 0.00 1 10070 \N +397654 2025-10-20 09:00:35.869037+00 2025-10-20 09:00:35.869046+00 f t DESCUENTO 0.00 2 10070 \N +397655 2025-10-20 09:00:35.871031+00 2025-10-20 09:00:35.871055+00 f t TOTAL 0.00 3 10070 \N +397656 2025-10-20 09:00:35.873276+00 2025-10-20 09:00:35.873288+00 f t ADELANTO 0.00 4 10070 \N +389353 2025-10-17 02:14:30.691986+00 2025-10-17 02:14:30.691995+00 f t SUBTOTAL 0.00 1 9858 \N +389354 2025-10-17 02:14:30.69324+00 2025-10-17 02:14:30.693247+00 f t DESCUENTO 0.00 2 9858 \N +389355 2025-10-17 02:14:30.694402+00 2025-10-17 02:14:30.694408+00 f t TOTAL 0.00 3 9858 \N +389356 2025-10-17 02:14:30.695578+00 2025-10-17 02:14:30.695585+00 f t ADELANTO 0.00 4 9858 \N +398657 2025-10-20 13:28:28.701456+00 2025-10-20 13:28:28.701468+00 f t SUBTOTAL 107000.00 1 10093 \N +398658 2025-10-20 13:28:28.703389+00 2025-10-20 13:28:28.703397+00 f t DESCUENTO 0.00 2 10093 \N +398659 2025-10-20 13:28:28.704865+00 2025-10-20 13:28:28.704874+00 f t TOTAL 107000.00 3 10093 \N +398660 2025-10-20 13:28:28.706118+00 2025-10-20 13:28:28.706124+00 f t ADELANTO 12000.00 4 10093 \N +389981 2025-10-17 03:38:38.679594+00 2025-10-17 03:38:38.679605+00 f t SUBTOTAL 70000.00 1 9869 \N +389982 2025-10-17 03:38:38.681281+00 2025-10-17 03:38:38.681288+00 f t DESCUENTO 0.00 2 9869 \N +389983 2025-10-17 03:38:38.682306+00 2025-10-17 03:38:38.682312+00 f t TOTAL 70000.00 3 9869 \N +389984 2025-10-17 03:38:38.683431+00 2025-10-17 03:38:38.683437+00 f t ADELANTO 19000.00 4 9869 \N +399057 2025-10-20 14:22:55.991424+00 2025-10-20 14:22:55.991433+00 f t SUBTOTAL 55000.00 1 10084 \N +399058 2025-10-20 14:22:55.993343+00 2025-10-20 14:22:55.99335+00 f t DESCUENTO 0.00 2 10084 \N +399059 2025-10-20 14:22:55.994457+00 2025-10-20 14:22:55.994462+00 f t TOTAL 55000.00 3 10084 \N +399060 2025-10-20 14:22:55.995512+00 2025-10-20 14:22:55.995518+00 f t ADELANTO 11000.00 4 10084 \N +399197 2025-10-20 15:32:45.262497+00 2025-10-20 15:32:45.262513+00 f t SUBTOTAL 0.00 1 10112 \N +399198 2025-10-20 15:32:45.263895+00 2025-10-20 15:32:45.263902+00 f t DESCUENTO 0.00 2 10112 \N +399199 2025-10-20 15:32:45.264992+00 2025-10-20 15:32:45.264998+00 f t TOTAL 0.00 3 10112 \N +399200 2025-10-20 15:32:45.266015+00 2025-10-20 15:32:45.26602+00 f t ADELANTO 0.00 4 10112 \N +390221 2025-10-17 04:34:48.369606+00 2025-10-17 04:34:48.369616+00 f t SUBTOTAL 55000.00 1 9875 \N +390222 2025-10-17 04:34:48.371364+00 2025-10-17 04:34:48.371372+00 f t DESCUENTO 0.00 2 9875 \N +390223 2025-10-17 04:34:48.372843+00 2025-10-17 04:34:48.37285+00 f t TOTAL 55000.00 3 9875 \N +390224 2025-10-17 04:34:48.373851+00 2025-10-17 04:34:48.373857+00 f t ADELANTO 11000.00 4 9875 \N +390457 2025-10-17 11:50:57.065772+00 2025-10-17 11:50:57.065781+00 f t SUBTOTAL 0.00 1 9884 \N +390458 2025-10-17 11:50:57.06708+00 2025-10-17 11:50:57.067085+00 f t DESCUENTO 0.00 2 9884 \N +390459 2025-10-17 11:50:57.068046+00 2025-10-17 11:50:57.068051+00 f t TOTAL 0.00 3 9884 \N +390460 2025-10-17 11:50:57.068979+00 2025-10-17 11:50:57.068984+00 f t ADELANTO 0.00 4 9884 \N +390609 2025-10-17 13:28:13.382138+00 2025-10-17 13:28:13.382148+00 f t SUBTOTAL 55000.00 1 9883 \N +390610 2025-10-17 13:28:13.384085+00 2025-10-17 13:28:13.384092+00 f t DESCUENTO 0.00 2 9883 \N +390611 2025-10-17 13:28:13.385233+00 2025-10-17 13:28:13.38524+00 f t TOTAL 55000.00 3 9883 \N +390612 2025-10-17 13:28:13.386238+00 2025-10-17 13:28:13.386245+00 f t ADELANTO 11000.00 4 9883 \N +390697 2025-10-17 13:52:01.954871+00 2025-10-17 13:52:01.954879+00 f t SUBTOTAL 55000.00 1 9892 \N +390698 2025-10-17 13:52:01.956693+00 2025-10-17 13:52:01.956702+00 f t DESCUENTO 0.00 2 9892 \N +390699 2025-10-17 13:52:01.958269+00 2025-10-17 13:52:01.958275+00 f t TOTAL 55000.00 3 9892 \N +390700 2025-10-17 13:52:01.959644+00 2025-10-17 13:52:01.95965+00 f t ADELANTO 11000.00 4 9892 \N +390765 2025-10-17 14:59:31.976037+00 2025-10-17 14:59:31.976046+00 f t SUBTOTAL 46000.00 1 9893 \N +390766 2025-10-17 14:59:31.977875+00 2025-10-17 14:59:31.977882+00 f t DESCUENTO 0.00 2 9893 \N +390767 2025-10-17 14:59:31.978985+00 2025-10-17 14:59:31.978991+00 f t TOTAL 46000.00 3 9893 \N +390768 2025-10-17 14:59:31.980075+00 2025-10-17 14:59:31.98008+00 f t ADELANTO 11000.00 4 9893 \N +399641 2025-10-20 17:54:09.23583+00 2025-10-20 17:54:09.235839+00 f t SUBTOTAL 0.00 1 10123 \N +399642 2025-10-20 17:54:09.237169+00 2025-10-20 17:54:09.237176+00 f t DESCUENTO 0.00 2 10123 \N +399643 2025-10-20 17:54:09.238269+00 2025-10-20 17:54:09.238275+00 f t TOTAL 0.00 3 10123 \N +399644 2025-10-20 17:54:09.239286+00 2025-10-20 17:54:09.239292+00 f t ADELANTO 0.00 4 10123 \N +386537 2025-10-16 05:49:37.212202+00 2025-10-16 05:49:37.212214+00 f t SUBTOTAL 23000.00 1 9763 \N +386538 2025-10-16 05:49:37.214163+00 2025-10-16 05:49:37.214173+00 f t DESCUENTO 0.00 2 9763 \N +386539 2025-10-16 05:49:37.215688+00 2025-10-16 05:49:37.215696+00 f t TOTAL 23000.00 3 9763 \N +386540 2025-10-16 05:49:37.217105+00 2025-10-16 05:49:37.217116+00 f t ADELANTO 5500.00 4 9763 \N +386545 2025-10-16 07:34:12.266841+00 2025-10-16 07:34:12.26685+00 f t SUBTOTAL 0.00 1 9765 \N +386546 2025-10-16 07:34:12.268807+00 2025-10-16 07:34:12.268813+00 f t DESCUENTO 0.00 2 9765 \N +386547 2025-10-16 07:34:12.270094+00 2025-10-16 07:34:12.270099+00 f t TOTAL 0.00 3 9765 \N +386548 2025-10-16 07:34:12.271095+00 2025-10-16 07:34:12.2711+00 f t ADELANTO 0.00 4 9765 \N +386597 2025-10-16 09:15:20.851009+00 2025-10-16 09:15:20.851017+00 f t SUBTOTAL 78000.00 1 9766 \N +386598 2025-10-16 09:15:20.852393+00 2025-10-16 09:15:20.852398+00 f t DESCUENTO 0.00 2 9766 \N +386599 2025-10-16 09:15:20.853356+00 2025-10-16 09:15:20.853361+00 f t TOTAL 78000.00 3 9766 \N +386600 2025-10-16 09:15:20.854178+00 2025-10-16 09:15:20.854183+00 f t ADELANTO 13000.00 4 9766 \N +392157 2025-10-17 21:47:15.985912+00 2025-10-17 21:47:15.985921+00 f t SUBTOTAL 13200.00 1 9931 \N +392158 2025-10-17 21:47:15.987755+00 2025-10-17 21:47:15.987764+00 f t DESCUENTO 0.00 2 9931 \N +392159 2025-10-17 21:47:15.989266+00 2025-10-17 21:47:15.989275+00 f t TOTAL 13200.00 3 9931 \N +392160 2025-10-17 21:47:15.990718+00 2025-10-17 21:47:15.990724+00 f t ADELANTO 13200.00 4 9931 \N +392289 2025-10-17 22:17:32.076163+00 2025-10-17 22:17:32.076172+00 f t SUBTOTAL 13200.00 1 9934 \N +392290 2025-10-17 22:17:32.079128+00 2025-10-17 22:17:32.079155+00 f t DESCUENTO 0.00 2 9934 \N +392291 2025-10-17 22:17:32.08352+00 2025-10-17 22:17:32.083528+00 f t TOTAL 13200.00 3 9934 \N +392292 2025-10-17 22:17:32.086236+00 2025-10-17 22:17:32.086245+00 f t ADELANTO 13200.00 4 9934 \N +406608 2025-10-22 15:55:27.622817+00 2025-10-22 15:55:27.622825+00 f t COSTO_SERVICIO 0.00 2 10292 \N +406609 2025-10-22 15:55:27.624737+00 2025-10-22 15:55:27.624746+00 f t DESCUENTO 0.00 3 10292 \N +406610 2025-10-22 15:55:27.62593+00 2025-10-22 15:55:27.625937+00 f t TOTAL 0.00 4 10292 \N +406611 2025-10-22 15:55:27.626923+00 2025-10-22 15:55:27.626928+00 f t ADELANTO 0.00 5 10292 \N +466872 2025-11-07 22:56:01.814061+00 2025-11-07 22:56:01.814069+00 f t SUBTOTAL 0.00 1 11707 \N +397661 2025-10-20 09:01:03.437043+00 2025-10-20 09:01:03.437056+00 f t SUBTOTAL 0.00 1 10071 \N +386685 2025-10-16 09:19:41.028338+00 2025-10-16 09:19:41.028346+00 f t SUBTOTAL 54000.00 1 9767 \N +386686 2025-10-16 09:19:41.029897+00 2025-10-16 09:19:41.029904+00 f t DESCUENTO 0.00 2 9767 \N +386687 2025-10-16 09:19:41.031018+00 2025-10-16 09:19:41.031023+00 f t TOTAL 54000.00 3 9767 \N +386688 2025-10-16 09:19:41.032008+00 2025-10-16 09:19:41.032012+00 f t ADELANTO 13500.00 4 9767 \N +397662 2025-10-20 09:01:03.438958+00 2025-10-20 09:01:03.438968+00 f t DESCUENTO 0.00 2 10071 \N +397663 2025-10-20 09:01:03.440933+00 2025-10-20 09:01:03.440945+00 f t TOTAL 0.00 3 10071 \N +397664 2025-10-20 09:01:03.442613+00 2025-10-20 09:01:03.442623+00 f t ADELANTO 0.00 4 10071 \N +466873 2025-11-07 22:56:01.815783+00 2025-11-07 22:56:01.815792+00 f t COSTO_SERVICIO 0.00 2 11707 \N +386693 2025-10-16 09:48:59.37487+00 2025-10-16 09:48:59.374879+00 f t SUBTOTAL 0.00 1 9768 \N +386694 2025-10-16 09:48:59.376112+00 2025-10-16 09:48:59.376119+00 f t DESCUENTO 0.00 2 9768 \N +386695 2025-10-16 09:48:59.377237+00 2025-10-16 09:48:59.377243+00 f t TOTAL 0.00 3 9768 \N +386696 2025-10-16 09:48:59.378101+00 2025-10-16 09:48:59.378107+00 f t ADELANTO 0.00 4 9768 \N +466874 2025-11-07 22:56:01.817318+00 2025-11-07 22:56:01.817325+00 f t DESCUENTO 0.00 3 11707 \N +399205 2025-10-20 15:33:29.497817+00 2025-10-20 15:33:29.49783+00 f t SUBTOTAL 0.00 1 10113 \N +399206 2025-10-20 15:33:29.499473+00 2025-10-20 15:33:29.499482+00 f t DESCUENTO 0.00 2 10113 \N +399207 2025-10-20 15:33:29.500887+00 2025-10-20 15:33:29.500896+00 f t TOTAL 0.00 3 10113 \N +399208 2025-10-20 15:33:29.502248+00 2025-10-20 15:33:29.502256+00 f t ADELANTO 0.00 4 10113 \N +399321 2025-10-20 15:58:17.294421+00 2025-10-20 15:58:17.29443+00 f t SUBTOTAL 148000.00 1 10116 \N +386753 2025-10-16 09:56:54.498879+00 2025-10-16 09:56:54.498887+00 f t SUBTOTAL 46000.00 1 9769 \N +386754 2025-10-16 09:56:54.500337+00 2025-10-16 09:56:54.500342+00 f t DESCUENTO 0.00 2 9769 \N +386755 2025-10-16 09:56:54.501384+00 2025-10-16 09:56:54.50139+00 f t TOTAL 46000.00 3 9769 \N +386756 2025-10-16 09:56:54.502332+00 2025-10-16 09:56:54.502337+00 f t ADELANTO 11000.00 4 9769 \N +399322 2025-10-20 15:58:17.29619+00 2025-10-20 15:58:17.296199+00 f t DESCUENTO 0.00 2 10116 \N +399323 2025-10-20 15:58:17.297521+00 2025-10-20 15:58:17.297527+00 f t TOTAL 148000.00 3 10116 \N +399324 2025-10-20 15:58:17.298879+00 2025-10-20 15:58:17.298885+00 f t ADELANTO 40500.00 4 10116 \N +418037 2025-10-26 18:41:13.677705+00 2025-10-26 18:41:13.677712+00 f t SUBTOTAL 55000.00 1 10558 \N +418038 2025-10-26 18:41:13.679543+00 2025-10-26 18:41:13.679549+00 f t COSTO_SERVICIO 0.00 2 10558 \N +386773 2025-10-16 09:57:47.304513+00 2025-10-16 09:57:47.304523+00 f t SUBTOTAL 57000.00 1 9770 \N +386774 2025-10-16 09:57:47.306084+00 2025-10-16 09:57:47.30609+00 f t DESCUENTO 0.00 2 9770 \N +386775 2025-10-16 09:57:47.307334+00 2025-10-16 09:57:47.30734+00 f t TOTAL 57000.00 3 9770 \N +386776 2025-10-16 09:57:47.308452+00 2025-10-16 09:57:47.308457+00 f t ADELANTO 57000.00 4 9770 \N +418039 2025-10-26 18:41:13.680705+00 2025-10-26 18:41:13.68071+00 f t DESCUENTO 0.00 3 10558 \N +418040 2025-10-26 18:41:13.681628+00 2025-10-26 18:41:13.681633+00 f t TOTAL 55000.00 4 10558 \N +418041 2025-10-26 18:41:13.682522+00 2025-10-26 18:41:13.682527+00 f t ADELANTO 11000.00 5 10558 \N +418302 2025-10-26 20:37:41.107511+00 2025-10-26 20:37:41.10752+00 f t SUBTOTAL 55000.00 1 10566 \N +418303 2025-10-26 20:37:41.109397+00 2025-10-26 20:37:41.109405+00 f t COSTO_SERVICIO 0.00 2 10566 \N +418304 2025-10-26 20:37:41.110611+00 2025-10-26 20:37:41.110618+00 f t DESCUENTO 0.00 3 10566 \N +418305 2025-10-26 20:37:41.111811+00 2025-10-26 20:37:41.111819+00 f t TOTAL 55000.00 4 10566 \N +418306 2025-10-26 20:37:41.114967+00 2025-10-26 20:37:41.114976+00 f t ADELANTO 11000.00 5 10566 \N +390773 2025-10-17 15:25:29.042521+00 2025-10-17 15:25:29.042534+00 f t SUBTOTAL 0.00 1 9894 \N +390774 2025-10-17 15:25:29.044211+00 2025-10-17 15:25:29.044222+00 f t DESCUENTO 0.00 2 9894 \N +390775 2025-10-17 15:25:29.04565+00 2025-10-17 15:25:29.04566+00 f t TOTAL 0.00 3 9894 \N +390776 2025-10-17 15:25:29.046913+00 2025-10-17 15:25:29.046923+00 f t ADELANTO 0.00 4 9894 \N +409497 2025-10-23 14:38:04.784736+00 2025-10-23 14:38:04.784745+00 f t SUBTOTAL 55000.00 1 10352 \N +409498 2025-10-23 14:38:04.786505+00 2025-10-23 14:38:04.786513+00 f t COSTO_SERVICIO 0.00 2 10352 \N +409499 2025-10-23 14:38:04.787717+00 2025-10-23 14:38:04.787723+00 f t DESCUENTO 0.00 3 10352 \N +409500 2025-10-23 14:38:04.788712+00 2025-10-23 14:38:04.788717+00 f t TOTAL 55000.00 4 10352 \N +409501 2025-10-23 14:38:04.789723+00 2025-10-23 14:38:04.789729+00 f t ADELANTO 11000.00 5 10352 \N +386817 2025-10-16 10:58:03.607742+00 2025-10-16 10:58:03.60775+00 f t SUBTOTAL 70000.00 1 9771 \N +386818 2025-10-16 10:58:03.609394+00 2025-10-16 10:58:03.609405+00 f t DESCUENTO 0.00 2 9771 \N +386819 2025-10-16 10:58:03.610853+00 2025-10-16 10:58:03.610862+00 f t TOTAL 70000.00 3 9771 \N +386820 2025-10-16 10:58:03.612141+00 2025-10-16 10:58:03.61215+00 f t ADELANTO 19000.00 4 9771 \N +386825 2025-10-16 11:48:36.127204+00 2025-10-16 11:48:36.127213+00 f t SUBTOTAL 0.00 1 9772 \N +386826 2025-10-16 11:48:36.128611+00 2025-10-16 11:48:36.128617+00 f t DESCUENTO 0.00 2 9772 \N +386827 2025-10-16 11:48:36.12976+00 2025-10-16 11:48:36.129766+00 f t TOTAL 0.00 3 9772 \N +386828 2025-10-16 11:48:36.130849+00 2025-10-16 11:48:36.130854+00 f t ADELANTO 0.00 4 9772 \N +401161 2025-10-21 10:14:13.492487+00 2025-10-21 10:14:13.492496+00 f t SUBTOTAL 78000.00 1 10168 \N +401162 2025-10-21 10:14:13.494205+00 2025-10-21 10:14:13.494214+00 f t DESCUENTO 0.00 2 10168 \N +401163 2025-10-21 10:14:13.495437+00 2025-10-21 10:14:13.495444+00 f t TOTAL 78000.00 3 10168 \N +401164 2025-10-21 10:14:13.496698+00 2025-10-21 10:14:13.496705+00 f t ADELANTO 21500.00 4 10168 \N +386865 2025-10-16 11:56:25.814983+00 2025-10-16 11:56:25.814995+00 f t SUBTOTAL 75000.00 1 9773 \N +386866 2025-10-16 11:56:25.816809+00 2025-10-16 11:56:25.81682+00 f t DESCUENTO 0.00 2 9773 \N +386867 2025-10-16 11:56:25.81817+00 2025-10-16 11:56:25.818178+00 f t TOTAL 75000.00 3 9773 \N +386868 2025-10-16 11:56:25.819502+00 2025-10-16 11:56:25.819511+00 f t ADELANTO 15000.00 4 9773 \N +386873 2025-10-16 11:59:33.381678+00 2025-10-16 11:59:33.381688+00 f t SUBTOTAL 0.00 1 9774 \N +386874 2025-10-16 11:59:33.383264+00 2025-10-16 11:59:33.383271+00 f t DESCUENTO 0.00 2 9774 \N +386875 2025-10-16 11:59:33.384477+00 2025-10-16 11:59:33.384483+00 f t TOTAL 0.00 3 9774 \N +386876 2025-10-16 11:59:33.385516+00 2025-10-16 11:59:33.385521+00 f t ADELANTO 0.00 4 9774 \N +391749 2025-10-17 19:25:50.590384+00 2025-10-17 19:25:50.590392+00 f t SUBTOTAL 54000.00 1 9918 \N +391750 2025-10-17 19:25:50.592018+00 2025-10-17 19:25:50.592024+00 f t DESCUENTO 0.00 2 9918 \N +391751 2025-10-17 19:25:50.593191+00 2025-10-17 19:25:50.593197+00 f t TOTAL 54000.00 3 9918 \N +391752 2025-10-17 19:25:50.594271+00 2025-10-17 19:25:50.594278+00 f t ADELANTO 13500.00 4 9918 \N +386901 2025-10-16 12:31:12.421562+00 2025-10-16 12:31:12.421571+00 f t SUBTOTAL 46000.00 1 9775 \N +386902 2025-10-16 12:31:12.423279+00 2025-10-16 12:31:12.423288+00 f t DESCUENTO 0.00 2 9775 \N +386903 2025-10-16 12:31:12.424794+00 2025-10-16 12:31:12.424801+00 f t TOTAL 46000.00 3 9775 \N +386904 2025-10-16 12:31:12.425881+00 2025-10-16 12:31:12.425887+00 f t ADELANTO 11000.00 4 9775 \N +386985 2025-10-16 12:38:40.791748+00 2025-10-16 12:38:40.791759+00 f t SUBTOTAL 55000.00 1 9776 \N +386986 2025-10-16 12:38:40.793586+00 2025-10-16 12:38:40.793596+00 f t DESCUENTO 0.00 2 9776 \N +386987 2025-10-16 12:38:40.795072+00 2025-10-16 12:38:40.795083+00 f t TOTAL 55000.00 3 9776 \N +386988 2025-10-16 12:38:40.796629+00 2025-10-16 12:38:40.796637+00 f t ADELANTO 11000.00 4 9776 \N +386993 2025-10-16 12:39:43.321714+00 2025-10-16 12:39:43.321725+00 f t SUBTOTAL 0.00 1 9777 \N +386994 2025-10-16 12:39:43.323528+00 2025-10-16 12:39:43.323539+00 f t DESCUENTO 0.00 2 9777 \N +386995 2025-10-16 12:39:43.325115+00 2025-10-16 12:39:43.325124+00 f t TOTAL 0.00 3 9777 \N +386996 2025-10-16 12:39:43.326536+00 2025-10-16 12:39:43.326546+00 f t ADELANTO 0.00 4 9777 \N +389365 2025-10-17 02:17:53.04389+00 2025-10-17 02:17:53.043898+00 f t SUBTOTAL 46000.00 1 9859 \N +389366 2025-10-17 02:17:53.04565+00 2025-10-17 02:17:53.045658+00 f t DESCUENTO 0.00 2 9859 \N +389367 2025-10-17 02:17:53.046953+00 2025-10-17 02:17:53.046959+00 f t TOTAL 46000.00 3 9859 \N +389368 2025-10-17 02:17:53.048259+00 2025-10-17 02:17:53.048266+00 f t ADELANTO 11000.00 4 9859 \N +398397 2025-10-20 13:18:33.966685+00 2025-10-20 13:18:33.966697+00 f t SUBTOTAL 98400.00 1 10088 \N +398398 2025-10-20 13:18:33.968734+00 2025-10-20 13:18:33.968744+00 f t DESCUENTO 0.00 2 10088 \N +398399 2025-10-20 13:18:33.970257+00 2025-10-20 13:18:33.970267+00 f t TOTAL 98400.00 3 10088 \N +398400 2025-10-20 13:18:33.971706+00 2025-10-20 13:18:33.971715+00 f t ADELANTO 57900.00 4 10088 \N +399069 2025-10-20 14:31:24.637464+00 2025-10-20 14:31:24.637475+00 f t SUBTOTAL 78000.00 1 10105 \N +399070 2025-10-20 14:31:24.639614+00 2025-10-20 14:31:24.639625+00 f t DESCUENTO 0.00 2 10105 \N +387029 2025-10-16 13:01:06.610616+00 2025-10-16 13:01:06.610625+00 f t SUBTOTAL 54000.00 1 9778 \N +387030 2025-10-16 13:01:06.612405+00 2025-10-16 13:01:06.612415+00 f t DESCUENTO 0.00 2 9778 \N +387031 2025-10-16 13:01:06.613926+00 2025-10-16 13:01:06.613936+00 f t TOTAL 54000.00 3 9778 \N +387032 2025-10-16 13:01:06.615408+00 2025-10-16 13:01:06.615415+00 f t ADELANTO 13500.00 4 9778 \N +399071 2025-10-20 14:31:24.641133+00 2025-10-20 14:31:24.641143+00 f t TOTAL 78000.00 3 10105 \N +399072 2025-10-20 14:31:24.642838+00 2025-10-20 14:31:24.642846+00 f t ADELANTO 13000.00 4 10105 \N +390069 2025-10-17 03:46:02.790788+00 2025-10-17 03:46:02.790801+00 f t SUBTOTAL 70000.00 1 9871 \N +390070 2025-10-17 03:46:02.792357+00 2025-10-17 03:46:02.792369+00 f t DESCUENTO 0.00 2 9871 \N +390071 2025-10-17 03:46:02.79353+00 2025-10-17 03:46:02.793539+00 f t TOTAL 70000.00 3 9871 \N +390072 2025-10-17 03:46:02.794524+00 2025-10-17 03:46:02.794534+00 f t ADELANTO 19000.00 4 9871 \N +387073 2025-10-16 13:06:54.815661+00 2025-10-16 13:06:54.815669+00 f t SUBTOTAL 0.00 1 9779 \N +387074 2025-10-16 13:06:54.817563+00 2025-10-16 13:06:54.817573+00 f t DESCUENTO 0.00 2 9779 \N +387075 2025-10-16 13:06:54.818583+00 2025-10-16 13:06:54.818588+00 f t TOTAL 0.00 3 9779 \N +387076 2025-10-16 13:06:54.819572+00 2025-10-16 13:06:54.819577+00 f t ADELANTO 0.00 4 9779 \N +390781 2025-10-17 15:33:05.40652+00 2025-10-17 15:33:05.406529+00 f t SUBTOTAL 0.00 1 9895 \N +390782 2025-10-17 15:33:05.408157+00 2025-10-17 15:33:05.408167+00 f t DESCUENTO 0.00 2 9895 \N +390783 2025-10-17 15:33:05.409535+00 2025-10-17 15:33:05.409547+00 f t TOTAL 0.00 3 9895 \N +390784 2025-10-17 15:33:05.410681+00 2025-10-17 15:33:05.410687+00 f t ADELANTO 0.00 4 9895 \N +399981 2025-10-20 19:34:39.561339+00 2025-10-20 19:34:39.561351+00 f t SUBTOTAL 30000.00 1 10136 \N +399982 2025-10-20 19:34:39.563304+00 2025-10-20 19:34:39.563312+00 f t DESCUENTO 0.00 2 10136 \N +399983 2025-10-20 19:34:39.564689+00 2025-10-20 19:34:39.564703+00 f t TOTAL 30000.00 3 10136 \N +399984 2025-10-20 19:34:39.565856+00 2025-10-20 19:34:39.565861+00 f t ADELANTO 30000.00 4 10136 \N +400481 2025-10-20 23:05:15.631912+00 2025-10-20 23:05:15.631922+00 f t SUBTOTAL 0.00 1 10151 \N +400482 2025-10-20 23:05:15.634133+00 2025-10-20 23:05:15.634141+00 f t DESCUENTO 0.00 2 10151 \N +387105 2025-10-16 13:08:14.207924+00 2025-10-16 13:08:14.207936+00 f t SUBTOTAL 0.00 1 9780 \N +387106 2025-10-16 13:08:14.20995+00 2025-10-16 13:08:14.209961+00 f t DESCUENTO 0.00 2 9780 \N +387107 2025-10-16 13:08:14.211908+00 2025-10-16 13:08:14.211918+00 f t TOTAL 0.00 3 9780 \N +387108 2025-10-16 13:08:14.213246+00 2025-10-16 13:08:14.213254+00 f t ADELANTO 0.00 4 9780 \N +400483 2025-10-20 23:05:15.635514+00 2025-10-20 23:05:15.635521+00 f t TOTAL 0.00 3 10151 \N +400484 2025-10-20 23:05:15.63651+00 2025-10-20 23:05:15.636516+00 f t ADELANTO 0.00 4 10151 \N +387149 2025-10-16 13:09:57.381802+00 2025-10-16 13:09:57.38181+00 f t SUBTOTAL 46000.00 1 9782 \N +387150 2025-10-16 13:09:57.383591+00 2025-10-16 13:09:57.383601+00 f t DESCUENTO 0.00 2 9782 \N +387151 2025-10-16 13:09:57.38488+00 2025-10-16 13:09:57.384887+00 f t TOTAL 46000.00 3 9782 \N +387152 2025-10-16 13:09:57.38594+00 2025-10-16 13:09:57.385946+00 f t ADELANTO 11000.00 4 9782 \N +401727 2025-10-21 13:09:26.816412+00 2025-10-21 13:09:26.816424+00 f t SUBTOTAL 0.00 1 10180 \N +401728 2025-10-21 13:09:26.818824+00 2025-10-21 13:09:26.818832+00 f t COSTO_SERVICIO 0.00 2 10180 \N +401729 2025-10-21 13:09:26.821146+00 2025-10-21 13:09:26.821153+00 f t DESCUENTO 0.00 3 10180 \N +401730 2025-10-21 13:09:26.824501+00 2025-10-21 13:09:26.824511+00 f t TOTAL 0.00 4 10180 \N +401731 2025-10-21 13:09:26.82617+00 2025-10-21 13:09:26.826177+00 f t ADELANTO 0.00 5 10180 \N +402107 2025-10-21 14:42:06.445078+00 2025-10-21 14:42:06.445089+00 f t SUBTOTAL 0.00 1 10191 \N +402108 2025-10-21 14:42:06.447184+00 2025-10-21 14:42:06.447196+00 f t COSTO_SERVICIO 0.00 2 10191 \N +402109 2025-10-21 14:42:06.450187+00 2025-10-21 14:42:06.450197+00 f t DESCUENTO 0.00 3 10191 \N +402110 2025-10-21 14:42:06.452026+00 2025-10-21 14:42:06.45204+00 f t TOTAL 0.00 4 10191 \N +402111 2025-10-21 14:42:06.453738+00 2025-10-21 14:42:06.453754+00 f t ADELANTO 0.00 5 10191 \N +392301 2025-10-17 22:27:46.814685+00 2025-10-17 22:27:46.814693+00 f t SUBTOTAL 78000.00 1 9935 \N +392302 2025-10-17 22:27:46.817005+00 2025-10-17 22:27:46.817013+00 f t DESCUENTO 0.00 2 9935 \N +392303 2025-10-17 22:27:46.81847+00 2025-10-17 22:27:46.818478+00 f t TOTAL 78000.00 3 9935 \N +392304 2025-10-17 22:27:46.819858+00 2025-10-17 22:27:46.819866+00 f t ADELANTO 13000.00 4 9935 \N +402362 2025-10-21 15:52:41.728204+00 2025-10-21 15:52:41.728211+00 f t SUBTOTAL 46000.00 1 10199 \N +402363 2025-10-21 15:52:41.72981+00 2025-10-21 15:52:41.729816+00 f t COSTO_SERVICIO 0.00 2 10199 \N +402364 2025-10-21 15:52:41.731179+00 2025-10-21 15:52:41.731186+00 f t DESCUENTO 0.00 3 10199 \N +402365 2025-10-21 15:52:41.732396+00 2025-10-21 15:52:41.732401+00 f t TOTAL 46000.00 4 10199 \N +402366 2025-10-21 15:52:41.733483+00 2025-10-21 15:52:41.733489+00 f t ADELANTO 11000.00 5 10199 \N +392581 2025-10-17 23:39:51.437792+00 2025-10-17 23:39:51.437802+00 f t SUBTOTAL 0.00 1 9941 \N +392582 2025-10-17 23:39:51.439792+00 2025-10-17 23:39:51.4398+00 f t DESCUENTO 0.00 2 9941 \N +392583 2025-10-17 23:39:51.440963+00 2025-10-17 23:39:51.440971+00 f t TOTAL 0.00 3 9941 \N +392584 2025-10-17 23:39:51.44233+00 2025-10-17 23:39:51.442337+00 f t ADELANTO 0.00 4 9941 \N +387257 2025-10-16 13:20:31.573411+00 2025-10-16 13:20:31.573419+00 f t SUBTOTAL 46000.00 1 9781 \N +387258 2025-10-16 13:20:31.574924+00 2025-10-16 13:20:31.574932+00 f t DESCUENTO 0.00 2 9781 \N +387259 2025-10-16 13:20:31.576324+00 2025-10-16 13:20:31.576331+00 f t TOTAL 46000.00 3 9781 \N +387260 2025-10-16 13:20:31.577352+00 2025-10-16 13:20:31.577358+00 f t ADELANTO 11000.00 4 9781 \N +387261 2025-10-16 13:20:38.826389+00 2025-10-16 13:20:38.826398+00 f t SUBTOTAL 0.00 1 9783 \N +387262 2025-10-16 13:20:38.828231+00 2025-10-16 13:20:38.828239+00 f t DESCUENTO 0.00 2 9783 \N +387263 2025-10-16 13:20:38.829438+00 2025-10-16 13:20:38.829443+00 f t TOTAL 0.00 3 9783 \N +387264 2025-10-16 13:20:38.83042+00 2025-10-16 13:20:38.830427+00 f t ADELANTO 0.00 4 9783 \N +437122 2025-10-30 19:25:06.152982+00 2025-10-30 19:25:06.152995+00 f t SUBTOTAL 0.00 1 10998 \N +437123 2025-10-30 19:25:06.156293+00 2025-10-30 19:25:06.156307+00 f t COSTO_SERVICIO 0.00 2 10998 \N +437124 2025-10-30 19:25:06.158434+00 2025-10-30 19:25:06.158446+00 f t DESCUENTO 0.00 3 10998 \N +437125 2025-10-30 19:25:06.160297+00 2025-10-30 19:25:06.160309+00 f t TOTAL 0.00 4 10998 \N +437126 2025-10-30 19:25:06.162071+00 2025-10-30 19:25:06.162082+00 f t ADELANTO 0.00 5 10998 \N +408062 2025-10-22 23:03:06.725567+00 2025-10-22 23:03:06.725577+00 f t SUBTOTAL 46000.00 1 10324 \N +408063 2025-10-22 23:03:06.72765+00 2025-10-22 23:03:06.727658+00 f t COSTO_SERVICIO 0.00 2 10324 \N +408064 2025-10-22 23:03:06.729665+00 2025-10-22 23:03:06.729673+00 f t DESCUENTO 0.00 3 10324 \N +408065 2025-10-22 23:03:06.730837+00 2025-10-22 23:03:06.730843+00 f t TOTAL 46000.00 4 10324 \N +408066 2025-10-22 23:03:06.732112+00 2025-10-22 23:03:06.732119+00 f t ADELANTO 11000.00 5 10324 \N +409232 2025-10-23 11:35:34.309642+00 2025-10-23 11:35:34.309653+00 f t SUBTOTAL 75000.00 1 10344 \N +409233 2025-10-23 11:35:34.312214+00 2025-10-23 11:35:34.312221+00 f t COSTO_SERVICIO 0.00 2 10344 \N +409234 2025-10-23 11:35:34.313365+00 2025-10-23 11:35:34.313371+00 f t DESCUENTO 0.00 3 10344 \N +409235 2025-10-23 11:35:34.316392+00 2025-10-23 11:35:34.316399+00 f t TOTAL 75000.00 4 10344 \N +409236 2025-10-23 11:35:34.318029+00 2025-10-23 11:35:34.318035+00 f t ADELANTO 15000.00 5 10344 \N +390713 2025-10-17 14:41:20.064829+00 2025-10-17 14:41:20.064842+00 f t SUBTOTAL 78000.00 1 9863 \N +390714 2025-10-17 14:41:20.06706+00 2025-10-17 14:41:20.067071+00 f t DESCUENTO 0.00 2 9863 \N +390715 2025-10-17 14:41:20.068791+00 2025-10-17 14:41:20.068801+00 f t TOTAL 78000.00 3 9863 \N +390716 2025-10-17 14:41:20.070381+00 2025-10-17 14:41:20.07039+00 f t ADELANTO 21500.00 4 9863 \N +387421 2025-10-16 13:51:26.06195+00 2025-10-16 13:51:26.061962+00 f t SUBTOTAL 0.00 1 9785 \N +387422 2025-10-16 13:51:26.064249+00 2025-10-16 13:51:26.06426+00 f t DESCUENTO 0.00 2 9785 \N +387423 2025-10-16 13:51:26.065734+00 2025-10-16 13:51:26.065741+00 f t TOTAL 0.00 3 9785 \N +387424 2025-10-16 13:51:26.066993+00 2025-10-16 13:51:26.067001+00 f t ADELANTO 0.00 4 9785 \N +387433 2025-10-16 13:54:54.031669+00 2025-10-16 13:54:54.031681+00 f t SUBTOTAL 57000.00 1 9786 \N +387434 2025-10-16 13:54:54.033493+00 2025-10-16 13:54:54.0335+00 f t DESCUENTO 0.00 2 9786 \N +387435 2025-10-16 13:54:54.034633+00 2025-10-16 13:54:54.034639+00 f t TOTAL 57000.00 3 9786 \N +387436 2025-10-16 13:54:54.035785+00 2025-10-16 13:54:54.03579+00 f t ADELANTO 57000.00 4 9786 \N +401465 2025-10-21 12:24:30.384892+00 2025-10-21 12:24:30.384901+00 f t SUBTOTAL 54000.00 1 10176 \N +401466 2025-10-21 12:24:30.386811+00 2025-10-21 12:24:30.386819+00 f t DESCUENTO 0.00 2 10176 \N +401467 2025-10-21 12:24:30.388076+00 2025-10-21 12:24:30.388083+00 f t TOTAL 54000.00 3 10176 \N +401468 2025-10-21 12:24:30.389502+00 2025-10-21 12:24:30.389511+00 f t ADELANTO 13500.00 4 10176 \N +401737 2025-10-21 13:09:55.621811+00 2025-10-21 13:09:55.621825+00 f t SUBTOTAL 0.00 1 10182 \N +401738 2025-10-21 13:09:55.623754+00 2025-10-21 13:09:55.623765+00 f t COSTO_SERVICIO 0.00 2 10182 \N +401739 2025-10-21 13:09:55.625311+00 2025-10-21 13:09:55.625322+00 f t DESCUENTO 0.00 3 10182 \N +401740 2025-10-21 13:09:55.626818+00 2025-10-21 13:09:55.626827+00 f t TOTAL 0.00 4 10182 \N +401741 2025-10-21 13:09:55.628227+00 2025-10-21 13:09:55.628237+00 f t ADELANTO 0.00 5 10182 \N +391977 2025-10-17 20:09:36.357535+00 2025-10-17 20:09:36.357542+00 f t SUBTOTAL 78000.00 1 9923 \N +391978 2025-10-17 20:09:36.359368+00 2025-10-17 20:09:36.359375+00 f t DESCUENTO 0.00 2 9923 \N +391979 2025-10-17 20:09:36.360432+00 2025-10-17 20:09:36.360464+00 f t TOTAL 78000.00 3 9923 \N +391980 2025-10-17 20:09:36.361365+00 2025-10-17 20:09:36.36137+00 f t ADELANTO 21500.00 4 9923 \N +387461 2025-10-16 14:00:31.576898+00 2025-10-16 14:00:31.576911+00 f t SUBTOTAL 70000.00 1 9787 \N +387462 2025-10-16 14:00:31.57925+00 2025-10-16 14:00:31.579263+00 f t DESCUENTO 0.00 2 9787 \N +387463 2025-10-16 14:00:31.580983+00 2025-10-16 14:00:31.580994+00 f t TOTAL 70000.00 3 9787 \N +387464 2025-10-16 14:00:31.582599+00 2025-10-16 14:00:31.582609+00 f t ADELANTO 19000.00 4 9787 \N +392025 2025-10-17 21:04:38.10272+00 2025-10-17 21:04:38.102732+00 f t SUBTOTAL 78000.00 1 9925 \N +392026 2025-10-17 21:04:38.104819+00 2025-10-17 21:04:38.104831+00 f t DESCUENTO 0.00 2 9925 \N +392027 2025-10-17 21:04:38.106307+00 2025-10-17 21:04:38.106316+00 f t TOTAL 78000.00 3 9925 \N +392028 2025-10-17 21:04:38.107642+00 2025-10-17 21:04:38.107651+00 f t ADELANTO 21500.00 4 9925 \N +387477 2025-10-16 14:03:53.871786+00 2025-10-16 14:03:53.871796+00 f t SUBTOTAL 0.00 1 9788 \N +387478 2025-10-16 14:03:53.873068+00 2025-10-16 14:03:53.873075+00 f t DESCUENTO 0.00 2 9788 \N +387479 2025-10-16 14:03:53.874112+00 2025-10-16 14:03:53.874118+00 f t TOTAL 0.00 3 9788 \N +387480 2025-10-16 14:03:53.875095+00 2025-10-16 14:03:53.875101+00 f t ADELANTO 0.00 4 9788 \N +387489 2025-10-16 14:06:33.253863+00 2025-10-16 14:06:33.253872+00 f t SUBTOTAL 46000.00 1 9784 \N +387490 2025-10-16 14:06:33.255509+00 2025-10-16 14:06:33.255516+00 f t DESCUENTO 0.00 2 9784 \N +387491 2025-10-16 14:06:33.256779+00 2025-10-16 14:06:33.256785+00 f t TOTAL 46000.00 3 9784 \N +387492 2025-10-16 14:06:33.257979+00 2025-10-16 14:06:33.257984+00 f t ADELANTO 11000.00 4 9784 \N +387513 2025-10-16 14:22:34.406274+00 2025-10-16 14:22:34.406286+00 f t SUBTOTAL 0.00 1 9789 \N +387514 2025-10-16 14:22:34.408712+00 2025-10-16 14:22:34.408724+00 f t DESCUENTO 0.00 2 9789 \N +387515 2025-10-16 14:22:34.410313+00 2025-10-16 14:22:34.410322+00 f t TOTAL 0.00 3 9789 \N +387516 2025-10-16 14:22:34.411736+00 2025-10-16 14:22:34.411744+00 f t ADELANTO 0.00 4 9789 \N +392493 2025-10-17 23:22:44.497657+00 2025-10-17 23:22:44.497669+00 f t SUBTOTAL 92000.00 1 9938 \N +392494 2025-10-17 23:22:44.499589+00 2025-10-17 23:22:44.499601+00 f t DESCUENTO 0.00 2 9938 \N +392495 2025-10-17 23:22:44.50105+00 2025-10-17 23:22:44.501056+00 f t TOTAL 92000.00 3 9938 \N +392496 2025-10-17 23:22:44.50232+00 2025-10-17 23:22:44.502327+00 f t ADELANTO 22000.00 4 9938 \N +402807 2025-10-21 17:12:37.507384+00 2025-10-21 17:12:37.50739+00 f t SUBTOTAL 78000.00 1 10205 \N +402808 2025-10-21 17:12:37.509423+00 2025-10-21 17:12:37.50943+00 f t COSTO_SERVICIO 0.00 2 10205 \N +402809 2025-10-21 17:12:37.510747+00 2025-10-21 17:12:37.510755+00 f t DESCUENTO 0.00 3 10205 \N +402810 2025-10-21 17:12:37.512055+00 2025-10-21 17:12:37.51206+00 f t TOTAL 78000.00 4 10205 \N +402811 2025-10-21 17:12:37.513138+00 2025-10-21 17:12:37.513143+00 f t ADELANTO 21500.00 5 10205 \N +387545 2025-10-16 15:03:31.061689+00 2025-10-16 15:03:31.061697+00 f t SUBTOTAL 46000.00 1 9790 \N +387546 2025-10-16 15:03:31.063155+00 2025-10-16 15:03:31.063163+00 f t DESCUENTO 0.00 2 9790 \N +387547 2025-10-16 15:03:31.064319+00 2025-10-16 15:03:31.064325+00 f t TOTAL 46000.00 3 9790 \N +387548 2025-10-16 15:03:31.065285+00 2025-10-16 15:03:31.065291+00 f t ADELANTO 11000.00 4 9790 \N +397485 2025-10-20 02:45:48.417208+00 2025-10-20 02:45:48.417219+00 f t SUBTOTAL 0.00 1 10063 \N +397486 2025-10-20 02:45:48.419334+00 2025-10-20 02:45:48.419342+00 f t DESCUENTO 0.00 2 10063 \N +397487 2025-10-20 02:45:48.420719+00 2025-10-20 02:45:48.420728+00 f t TOTAL 0.00 3 10063 \N +397488 2025-10-20 02:45:48.422027+00 2025-10-20 02:45:48.422033+00 f t ADELANTO 0.00 4 10063 \N +435872 2025-10-30 14:46:44.681047+00 2025-10-30 14:46:44.681056+00 f t SUBTOTAL 54000.00 1 10977 \N +435873 2025-10-30 14:46:44.682819+00 2025-10-30 14:46:44.682826+00 f t COSTO_SERVICIO 0.00 2 10977 \N +435874 2025-10-30 14:46:44.684082+00 2025-10-30 14:46:44.684088+00 f t DESCUENTO 0.00 3 10977 \N +435875 2025-10-30 14:46:44.685181+00 2025-10-30 14:46:44.685186+00 f t TOTAL 54000.00 4 10977 \N +398953 2025-10-20 13:55:29.314153+00 2025-10-20 13:55:29.314161+00 f t SUBTOTAL 54000.00 1 10100 \N +398954 2025-10-20 13:55:29.316249+00 2025-10-20 13:55:29.316255+00 f t DESCUENTO 0.00 2 10100 \N +398955 2025-10-20 13:55:29.3174+00 2025-10-20 13:55:29.317405+00 f t TOTAL 54000.00 3 10100 \N +398956 2025-10-20 13:55:29.318536+00 2025-10-20 13:55:29.318543+00 f t ADELANTO 13500.00 4 10100 \N +387601 2025-10-16 15:12:10.906191+00 2025-10-16 15:12:10.906199+00 f t SUBTOTAL 78000.00 1 9791 \N +387602 2025-10-16 15:12:10.907702+00 2025-10-16 15:12:10.907708+00 f t DESCUENTO 0.00 2 9791 \N +387603 2025-10-16 15:12:10.908993+00 2025-10-16 15:12:10.908999+00 f t TOTAL 78000.00 3 9791 \N +387604 2025-10-16 15:12:10.910127+00 2025-10-16 15:12:10.910132+00 f t ADELANTO 21500.00 4 9791 \N +387621 2025-10-16 15:27:02.24991+00 2025-10-16 15:27:02.249919+00 f t SUBTOTAL 55000.00 1 9792 \N +387622 2025-10-16 15:27:02.251805+00 2025-10-16 15:27:02.251816+00 f t DESCUENTO 0.00 2 9792 \N +387623 2025-10-16 15:27:02.25314+00 2025-10-16 15:27:02.253149+00 f t TOTAL 55000.00 3 9792 \N +387624 2025-10-16 15:27:02.254403+00 2025-10-16 15:27:02.254409+00 f t ADELANTO 11000.00 4 9792 \N +390237 2025-10-17 04:35:04.107521+00 2025-10-17 04:35:04.107537+00 f t SUBTOTAL 0.00 1 9876 \N +390238 2025-10-17 04:35:04.11198+00 2025-10-17 04:35:04.111993+00 f t DESCUENTO 0.00 2 9876 \N +390239 2025-10-17 04:35:04.115226+00 2025-10-17 04:35:04.115239+00 f t TOTAL 0.00 3 9876 \N +390240 2025-10-17 04:35:04.117757+00 2025-10-17 04:35:04.117772+00 f t ADELANTO 0.00 4 9876 \N +387629 2025-10-16 15:28:38.174024+00 2025-10-16 15:28:38.174033+00 f t SUBTOTAL 0.00 1 9793 \N +387630 2025-10-16 15:28:38.175335+00 2025-10-16 15:28:38.175342+00 f t DESCUENTO 0.00 2 9793 \N +387631 2025-10-16 15:28:38.176286+00 2025-10-16 15:28:38.176292+00 f t TOTAL 0.00 3 9793 \N +387632 2025-10-16 15:28:38.177285+00 2025-10-16 15:28:38.17729+00 f t ADELANTO 0.00 4 9793 \N +387641 2025-10-16 15:37:43.994889+00 2025-10-16 15:37:43.994898+00 f t SUBTOTAL 78000.00 1 9794 \N +387642 2025-10-16 15:37:43.996713+00 2025-10-16 15:37:43.99672+00 f t DESCUENTO 0.00 2 9794 \N +387643 2025-10-16 15:37:43.998079+00 2025-10-16 15:37:43.998088+00 f t TOTAL 78000.00 3 9794 \N +387644 2025-10-16 15:37:43.999537+00 2025-10-16 15:37:43.999544+00 f t ADELANTO 13000.00 4 9794 \N +390793 2025-10-17 15:41:09.43469+00 2025-10-17 15:41:09.434698+00 f t SUBTOTAL 75000.00 1 9896 \N +390794 2025-10-17 15:41:09.436591+00 2025-10-17 15:41:09.436598+00 f t DESCUENTO 0.00 2 9896 \N +390795 2025-10-17 15:41:09.438159+00 2025-10-17 15:41:09.438165+00 f t TOTAL 75000.00 3 9896 \N +390796 2025-10-17 15:41:09.439359+00 2025-10-17 15:41:09.439366+00 f t ADELANTO 15000.00 4 9896 \N +391361 2025-10-17 17:52:39.187777+00 2025-10-17 17:52:39.187789+00 f t SUBTOTAL 0.00 1 9911 \N +391362 2025-10-17 17:52:39.189456+00 2025-10-17 17:52:39.189464+00 f t DESCUENTO 0.00 2 9911 \N +391363 2025-10-17 17:52:39.190602+00 2025-10-17 17:52:39.190607+00 f t TOTAL 0.00 3 9911 \N +391364 2025-10-17 17:52:39.191624+00 2025-10-17 17:52:39.191629+00 f t ADELANTO 0.00 4 9911 \N +387713 2025-10-16 16:07:48.761524+00 2025-10-16 16:07:48.761532+00 f t SUBTOTAL 0.00 1 9796 \N +387714 2025-10-16 16:07:48.76296+00 2025-10-16 16:07:48.762968+00 f t DESCUENTO 0.00 2 9796 \N +387715 2025-10-16 16:07:48.764175+00 2025-10-16 16:07:48.764181+00 f t TOTAL 0.00 3 9796 \N +387716 2025-10-16 16:07:48.765219+00 2025-10-16 16:07:48.765225+00 f t ADELANTO 0.00 4 9796 \N +391821 2025-10-17 19:33:51.192891+00 2025-10-17 19:33:51.1929+00 f t SUBTOTAL 0.00 1 9920 \N +391822 2025-10-17 19:33:51.194492+00 2025-10-17 19:33:51.194498+00 f t DESCUENTO 0.00 2 9920 \N +391823 2025-10-17 19:33:51.195397+00 2025-10-17 19:33:51.195402+00 f t TOTAL 0.00 3 9920 \N +391824 2025-10-17 19:33:51.196251+00 2025-10-17 19:33:51.196256+00 f t ADELANTO 0.00 4 9920 \N +387749 2025-10-16 16:20:46.686002+00 2025-10-16 16:20:46.686011+00 f t SUBTOTAL 82000.00 1 9797 \N +387750 2025-10-16 16:20:46.687781+00 2025-10-16 16:20:46.687791+00 f t DESCUENTO 0.00 2 9797 \N +387751 2025-10-16 16:20:46.689319+00 2025-10-16 16:20:46.689328+00 f t TOTAL 82000.00 3 9797 \N +387752 2025-10-16 16:20:46.690781+00 2025-10-16 16:20:46.690789+00 f t ADELANTO 12000.00 4 9797 \N +387761 2025-10-16 16:32:09.764014+00 2025-10-16 16:32:09.764022+00 f t SUBTOTAL 55000.00 1 9798 \N +387762 2025-10-16 16:32:09.765485+00 2025-10-16 16:32:09.765491+00 f t DESCUENTO 0.00 2 9798 \N +387763 2025-10-16 16:32:09.766554+00 2025-10-16 16:32:09.76656+00 f t TOTAL 55000.00 3 9798 \N +387764 2025-10-16 16:32:09.767486+00 2025-10-16 16:32:09.767492+00 f t ADELANTO 11000.00 4 9798 \N +387769 2025-10-16 16:37:31.483339+00 2025-10-16 16:37:31.483349+00 f t SUBTOTAL 0.00 1 9799 \N +387770 2025-10-16 16:37:31.484567+00 2025-10-16 16:37:31.484574+00 f t DESCUENTO 0.00 2 9799 \N +387771 2025-10-16 16:37:31.485673+00 2025-10-16 16:37:31.485679+00 f t TOTAL 0.00 3 9799 \N +387772 2025-10-16 16:37:31.486697+00 2025-10-16 16:37:31.486703+00 f t ADELANTO 0.00 4 9799 \N +392033 2025-10-17 21:04:53.795825+00 2025-10-17 21:04:53.795835+00 f t SUBTOTAL 0.00 1 9926 \N +392034 2025-10-17 21:04:53.79733+00 2025-10-17 21:04:53.797342+00 f t DESCUENTO 0.00 2 9926 \N +392035 2025-10-17 21:04:53.800216+00 2025-10-17 21:04:53.800223+00 f t TOTAL 0.00 3 9926 \N +392036 2025-10-17 21:04:53.801923+00 2025-10-17 21:04:53.80193+00 f t ADELANTO 0.00 4 9926 \N +387777 2025-10-16 16:39:56.527742+00 2025-10-16 16:39:56.527754+00 f t SUBTOTAL 55000.00 1 9795 \N +387778 2025-10-16 16:39:56.529298+00 2025-10-16 16:39:56.529307+00 f t DESCUENTO 0.00 2 9795 \N +387779 2025-10-16 16:39:56.530605+00 2025-10-16 16:39:56.530612+00 f t TOTAL 55000.00 3 9795 \N +387780 2025-10-16 16:39:56.531942+00 2025-10-16 16:39:56.531949+00 f t ADELANTO 11000.00 4 9795 \N +387817 2025-10-16 17:09:06.196884+00 2025-10-16 17:09:06.1969+00 f t SUBTOTAL 80000.00 1 9800 \N +387818 2025-10-16 17:09:06.19882+00 2025-10-16 17:09:06.198832+00 f t DESCUENTO 0.00 2 9800 \N +387819 2025-10-16 17:09:06.200492+00 2025-10-16 17:09:06.200504+00 f t TOTAL 80000.00 3 9800 \N +387820 2025-10-16 17:09:06.20219+00 2025-10-16 17:09:06.202199+00 f t ADELANTO 12000.00 4 9800 \N +387825 2025-10-16 17:10:38.79446+00 2025-10-16 17:10:38.794473+00 f t SUBTOTAL 0.00 1 9801 \N +387826 2025-10-16 17:10:38.795858+00 2025-10-16 17:10:38.795865+00 f t DESCUENTO 0.00 2 9801 \N +387827 2025-10-16 17:10:38.796948+00 2025-10-16 17:10:38.796953+00 f t TOTAL 0.00 3 9801 \N +387828 2025-10-16 17:10:38.798097+00 2025-10-16 17:10:38.798103+00 f t ADELANTO 0.00 4 9801 \N +392497 2025-10-17 23:23:21.030389+00 2025-10-17 23:23:21.030397+00 f t SUBTOTAL 123000.00 1 9939 \N +392498 2025-10-17 23:23:21.031476+00 2025-10-17 23:23:21.031483+00 f t DESCUENTO 0.00 2 9939 \N +392499 2025-10-17 23:23:21.03225+00 2025-10-17 23:23:21.032255+00 f t TOTAL 123000.00 3 9939 \N +392500 2025-10-17 23:23:21.032871+00 2025-10-17 23:23:21.032876+00 f t ADELANTO 24000.00 4 9939 \N +466875 2025-11-07 22:56:01.818936+00 2025-11-07 22:56:01.818943+00 f t TOTAL 0.00 4 11707 \N +388745 2025-10-16 23:33:59.844798+00 2025-10-16 23:33:59.844811+00 f t SUBTOTAL 0.00 1 9841 \N +388746 2025-10-16 23:33:59.846968+00 2025-10-16 23:33:59.846979+00 f t DESCUENTO 0.00 2 9841 \N +388747 2025-10-16 23:33:59.848554+00 2025-10-16 23:33:59.848563+00 f t TOTAL 0.00 3 9841 \N +388748 2025-10-16 23:33:59.849689+00 2025-10-16 23:33:59.849695+00 f t ADELANTO 0.00 4 9841 \N +407527 2025-10-22 19:36:11.694545+00 2025-10-22 19:36:11.694552+00 f t SUBTOTAL 99400.00 1 10311 \N +407528 2025-10-22 19:36:11.696676+00 2025-10-22 19:36:11.696683+00 f t COSTO_SERVICIO 0.00 2 10311 \N +407529 2025-10-22 19:36:11.698287+00 2025-10-22 19:36:11.698296+00 f t DESCUENTO 0.00 3 10311 \N +407530 2025-10-22 19:36:11.699757+00 2025-10-22 19:36:11.699764+00 f t TOTAL 99400.00 4 10311 \N +407531 2025-10-22 19:36:11.701269+00 2025-10-22 19:36:11.701276+00 f t ADELANTO 58900.00 5 10311 \N +387901 2025-10-16 17:17:01.415093+00 2025-10-16 17:17:01.415103+00 f t SUBTOTAL 70000.00 1 9802 \N +387902 2025-10-16 17:17:01.417139+00 2025-10-16 17:17:01.417147+00 f t DESCUENTO 0.00 2 9802 \N +387903 2025-10-16 17:17:01.418542+00 2025-10-16 17:17:01.41855+00 f t TOTAL 70000.00 3 9802 \N +387904 2025-10-16 17:17:01.420052+00 2025-10-16 17:17:01.42006+00 f t ADELANTO 19000.00 4 9802 \N +387909 2025-10-16 17:18:35.068413+00 2025-10-16 17:18:35.068425+00 f t SUBTOTAL 0.00 1 9803 \N +387910 2025-10-16 17:18:35.069807+00 2025-10-16 17:18:35.069813+00 f t DESCUENTO 0.00 2 9803 \N +387911 2025-10-16 17:18:35.070845+00 2025-10-16 17:18:35.07085+00 f t TOTAL 0.00 3 9803 \N +387912 2025-10-16 17:18:35.07185+00 2025-10-16 17:18:35.071857+00 f t ADELANTO 0.00 4 9803 \N +387917 2025-10-16 17:33:50.590441+00 2025-10-16 17:33:50.59045+00 f t SUBTOTAL 0.00 1 9804 \N +387918 2025-10-16 17:33:50.591814+00 2025-10-16 17:33:50.591821+00 f t DESCUENTO 0.00 2 9804 \N +387919 2025-10-16 17:33:50.592875+00 2025-10-16 17:33:50.592881+00 f t TOTAL 0.00 3 9804 \N +387920 2025-10-16 17:33:50.593865+00 2025-10-16 17:33:50.593871+00 f t ADELANTO 0.00 4 9804 \N +387925 2025-10-16 17:34:21.704522+00 2025-10-16 17:34:21.704532+00 f t SUBTOTAL 0.00 1 9805 \N +387926 2025-10-16 17:34:21.706039+00 2025-10-16 17:34:21.706047+00 f t DESCUENTO 0.00 2 9805 \N +387927 2025-10-16 17:34:21.707503+00 2025-10-16 17:34:21.707511+00 f t TOTAL 0.00 3 9805 \N +387928 2025-10-16 17:34:21.708711+00 2025-10-16 17:34:21.708717+00 f t ADELANTO 0.00 4 9805 \N +387933 2025-10-16 17:51:46.909364+00 2025-10-16 17:51:46.909373+00 f t SUBTOTAL 0.00 1 9806 \N +387934 2025-10-16 17:51:46.910653+00 2025-10-16 17:51:46.91066+00 f t DESCUENTO 0.00 2 9806 \N +387935 2025-10-16 17:51:46.91172+00 2025-10-16 17:51:46.911725+00 f t TOTAL 0.00 3 9806 \N +387936 2025-10-16 17:51:46.912622+00 2025-10-16 17:51:46.912627+00 f t ADELANTO 0.00 4 9806 \N +387945 2025-10-16 17:59:57.521072+00 2025-10-16 17:59:57.52108+00 f t SUBTOTAL 46000.00 1 9807 \N +387946 2025-10-16 17:59:57.522777+00 2025-10-16 17:59:57.522783+00 f t DESCUENTO 0.00 2 9807 \N +387947 2025-10-16 17:59:57.524192+00 2025-10-16 17:59:57.524199+00 f t TOTAL 46000.00 3 9807 \N +387948 2025-10-16 17:59:57.525492+00 2025-10-16 17:59:57.525499+00 f t ADELANTO 11000.00 4 9807 \N +387949 2025-10-16 18:02:42.307535+00 2025-10-16 18:02:42.307544+00 f t SUBTOTAL 53700.00 1 9760 \N +387950 2025-10-16 18:02:42.30897+00 2025-10-16 18:02:42.308977+00 f t DESCUENTO 0.00 2 9760 \N +387951 2025-10-16 18:02:42.310032+00 2025-10-16 18:02:42.310037+00 f t TOTAL 53700.00 3 9760 \N +387952 2025-10-16 18:02:42.311009+00 2025-10-16 18:02:42.311015+00 f t ADELANTO 13200.00 4 9760 \N +387961 2025-10-16 18:40:26.005497+00 2025-10-16 18:40:26.005508+00 f t SUBTOTAL 55000.00 1 9808 \N +387962 2025-10-16 18:40:26.007374+00 2025-10-16 18:40:26.007382+00 f t DESCUENTO 0.00 2 9808 \N +387963 2025-10-16 18:40:26.008465+00 2025-10-16 18:40:26.008472+00 f t TOTAL 55000.00 3 9808 \N +387964 2025-10-16 18:40:26.009446+00 2025-10-16 18:40:26.009451+00 f t ADELANTO 11000.00 4 9808 \N +387981 2025-10-16 18:53:30.890547+00 2025-10-16 18:53:30.890556+00 f t SUBTOTAL 66900.00 1 9809 \N +387982 2025-10-16 18:53:30.892201+00 2025-10-16 18:53:30.892211+00 f t DESCUENTO 0.00 2 9809 \N +387983 2025-10-16 18:53:30.893454+00 2025-10-16 18:53:30.89346+00 f t TOTAL 66900.00 3 9809 \N +387984 2025-10-16 18:53:30.894489+00 2025-10-16 18:53:30.894494+00 f t ADELANTO 26400.00 4 9809 \N +387993 2025-10-16 19:06:27.092938+00 2025-10-16 19:06:27.092951+00 f t SUBTOTAL 13200.00 1 9810 \N +387994 2025-10-16 19:06:27.094745+00 2025-10-16 19:06:27.094755+00 f t DESCUENTO 0.00 2 9810 \N +387995 2025-10-16 19:06:27.096327+00 2025-10-16 19:06:27.096334+00 f t TOTAL 13200.00 3 9810 \N +387996 2025-10-16 19:06:27.097352+00 2025-10-16 19:06:27.097358+00 f t ADELANTO 13200.00 4 9810 \N +388001 2025-10-16 19:10:27.705477+00 2025-10-16 19:10:27.705487+00 f t SUBTOTAL 0.00 1 9811 \N +388002 2025-10-16 19:10:27.706775+00 2025-10-16 19:10:27.706781+00 f t DESCUENTO 0.00 2 9811 \N +388003 2025-10-16 19:10:27.707785+00 2025-10-16 19:10:27.707791+00 f t TOTAL 0.00 3 9811 \N +388004 2025-10-16 19:10:27.708906+00 2025-10-16 19:10:27.708912+00 f t ADELANTO 0.00 4 9811 \N +388013 2025-10-16 19:34:09.894534+00 2025-10-16 19:34:09.894542+00 f t SUBTOTAL 46000.00 1 9812 \N +388014 2025-10-16 19:34:09.896353+00 2025-10-16 19:34:09.896361+00 f t DESCUENTO 0.00 2 9812 \N +388015 2025-10-16 19:34:09.897782+00 2025-10-16 19:34:09.897791+00 f t TOTAL 46000.00 3 9812 \N +388016 2025-10-16 19:34:09.899074+00 2025-10-16 19:34:09.899081+00 f t ADELANTO 11000.00 4 9812 \N +388049 2025-10-16 19:49:42.416224+00 2025-10-16 19:49:42.416233+00 f t SUBTOTAL 0.00 1 9813 \N +388050 2025-10-16 19:49:42.418048+00 2025-10-16 19:49:42.418058+00 f t DESCUENTO 0.00 2 9813 \N +388051 2025-10-16 19:49:42.419067+00 2025-10-16 19:49:42.419073+00 f t TOTAL 0.00 3 9813 \N +388052 2025-10-16 19:49:42.419987+00 2025-10-16 19:49:42.419992+00 f t ADELANTO 0.00 4 9813 \N +388089 2025-10-16 20:07:51.361564+00 2025-10-16 20:07:51.361577+00 f t SUBTOTAL 46000.00 1 9814 \N +388090 2025-10-16 20:07:51.363561+00 2025-10-16 20:07:51.363569+00 f t DESCUENTO 0.00 2 9814 \N +388091 2025-10-16 20:07:51.364757+00 2025-10-16 20:07:51.364763+00 f t TOTAL 46000.00 3 9814 \N +388092 2025-10-16 20:07:51.366489+00 2025-10-16 20:07:51.366498+00 f t ADELANTO 11000.00 4 9814 \N +388097 2025-10-16 20:19:01.523074+00 2025-10-16 20:19:01.523087+00 f t SUBTOTAL 0.00 1 9815 \N +388098 2025-10-16 20:19:01.524929+00 2025-10-16 20:19:01.524941+00 f t DESCUENTO 0.00 2 9815 \N +388099 2025-10-16 20:19:01.526806+00 2025-10-16 20:19:01.526816+00 f t TOTAL 0.00 3 9815 \N +388100 2025-10-16 20:19:01.528369+00 2025-10-16 20:19:01.528377+00 f t ADELANTO 0.00 4 9815 \N +388105 2025-10-16 20:21:17.801523+00 2025-10-16 20:21:17.801535+00 f t SUBTOTAL 0.00 1 9816 \N +388106 2025-10-16 20:21:17.803348+00 2025-10-16 20:21:17.803358+00 f t DESCUENTO 0.00 2 9816 \N +388107 2025-10-16 20:21:17.804935+00 2025-10-16 20:21:17.804945+00 f t TOTAL 0.00 3 9816 \N +388108 2025-10-16 20:21:17.806246+00 2025-10-16 20:21:17.806254+00 f t ADELANTO 0.00 4 9816 \N +388117 2025-10-16 20:51:18.139025+00 2025-10-16 20:51:18.139036+00 f t SUBTOTAL 46000.00 1 9817 \N +388118 2025-10-16 20:51:18.140878+00 2025-10-16 20:51:18.140888+00 f t DESCUENTO 0.00 2 9817 \N +388119 2025-10-16 20:51:18.142352+00 2025-10-16 20:51:18.142361+00 f t TOTAL 46000.00 3 9817 \N +388120 2025-10-16 20:51:18.143655+00 2025-10-16 20:51:18.143663+00 f t ADELANTO 11000.00 4 9817 \N +388129 2025-10-16 21:09:22.31923+00 2025-10-16 21:09:22.31924+00 f t SUBTOTAL 0.00 1 9818 \N +388130 2025-10-16 21:09:22.321394+00 2025-10-16 21:09:22.321402+00 f t DESCUENTO 0.00 2 9818 \N +388131 2025-10-16 21:09:22.322676+00 2025-10-16 21:09:22.322682+00 f t TOTAL 0.00 3 9818 \N +388132 2025-10-16 21:09:22.323919+00 2025-10-16 21:09:22.323925+00 f t ADELANTO 0.00 4 9818 \N +406622 2025-10-22 16:01:15.987901+00 2025-10-22 16:01:15.987909+00 f t SUBTOTAL 102000.00 1 10291 \N +406623 2025-10-22 16:01:15.989952+00 2025-10-22 16:01:15.989959+00 f t COSTO_SERVICIO 0.00 2 10291 \N +406624 2025-10-22 16:01:15.991609+00 2025-10-22 16:01:15.991618+00 f t DESCUENTO 0.00 3 10291 \N +406625 2025-10-22 16:01:15.99298+00 2025-10-22 16:01:15.992987+00 f t TOTAL 102000.00 4 10291 \N +406626 2025-10-22 16:01:15.994404+00 2025-10-22 16:01:15.994412+00 f t ADELANTO 29500.00 5 10291 \N +406837 2025-10-22 17:17:51.327599+00 2025-10-22 17:17:51.327609+00 f t SUBTOTAL 0.00 1 10299 \N +406838 2025-10-22 17:17:51.329639+00 2025-10-22 17:17:51.329646+00 f t COSTO_SERVICIO 0.00 2 10299 \N +406839 2025-10-22 17:17:51.330739+00 2025-10-22 17:17:51.330744+00 f t DESCUENTO 0.00 3 10299 \N +406840 2025-10-22 17:17:51.331906+00 2025-10-22 17:17:51.331912+00 f t TOTAL 0.00 4 10299 \N +388149 2025-10-16 21:20:04.188974+00 2025-10-16 21:20:04.188987+00 f t SUBTOTAL 55000.00 1 9819 \N +388150 2025-10-16 21:20:04.192269+00 2025-10-16 21:20:04.192283+00 f t DESCUENTO 0.00 2 9819 \N +388151 2025-10-16 21:20:04.1946+00 2025-10-16 21:20:04.194613+00 f t TOTAL 55000.00 3 9819 \N +388152 2025-10-16 21:20:04.196924+00 2025-10-16 21:20:04.196938+00 f t ADELANTO 11000.00 4 9819 \N +388161 2025-10-16 21:28:21.301154+00 2025-10-16 21:28:21.301162+00 f t SUBTOTAL 55000.00 1 9820 \N +388162 2025-10-16 21:28:21.302798+00 2025-10-16 21:28:21.302804+00 f t DESCUENTO 0.00 2 9820 \N +388163 2025-10-16 21:28:21.303874+00 2025-10-16 21:28:21.30388+00 f t TOTAL 55000.00 3 9820 \N +388164 2025-10-16 21:28:21.304797+00 2025-10-16 21:28:21.304802+00 f t ADELANTO 11000.00 4 9820 \N +388193 2025-10-16 21:35:20.5913+00 2025-10-16 21:35:20.591309+00 f t SUBTOTAL 70000.00 1 9821 \N +388194 2025-10-16 21:35:20.592775+00 2025-10-16 21:35:20.592783+00 f t DESCUENTO 0.00 2 9821 \N +388195 2025-10-16 21:35:20.593827+00 2025-10-16 21:35:20.593832+00 f t TOTAL 70000.00 3 9821 \N +388196 2025-10-16 21:35:20.595117+00 2025-10-16 21:35:20.595122+00 f t ADELANTO 19000.00 4 9821 \N +388201 2025-10-16 21:51:32.242743+00 2025-10-16 21:51:32.242753+00 f t SUBTOTAL 0.00 1 9822 \N +388202 2025-10-16 21:51:32.24409+00 2025-10-16 21:51:32.244096+00 f t DESCUENTO 0.00 2 9822 \N +388203 2025-10-16 21:51:32.24511+00 2025-10-16 21:51:32.245116+00 f t TOTAL 0.00 3 9822 \N +388204 2025-10-16 21:51:32.24601+00 2025-10-16 21:51:32.246015+00 f t ADELANTO 0.00 4 9822 \N +390165 2025-10-17 04:33:41.71487+00 2025-10-17 04:33:41.71488+00 f t SUBTOTAL 47000.00 1 9874 \N +390166 2025-10-17 04:33:41.716763+00 2025-10-17 04:33:41.71677+00 f t DESCUENTO 0.00 2 9874 \N +390167 2025-10-17 04:33:41.717992+00 2025-10-17 04:33:41.717999+00 f t TOTAL 47000.00 3 9874 \N +390168 2025-10-17 04:33:41.719228+00 2025-10-17 04:33:41.719234+00 f t ADELANTO 12000.00 4 9874 \N +388221 2025-10-16 21:52:39.593312+00 2025-10-16 21:52:39.59332+00 f t SUBTOTAL 55000.00 1 9823 \N +388222 2025-10-16 21:52:39.594825+00 2025-10-16 21:52:39.594832+00 f t DESCUENTO 0.00 2 9823 \N +388223 2025-10-16 21:52:39.595852+00 2025-10-16 21:52:39.595858+00 f t TOTAL 55000.00 3 9823 \N +388224 2025-10-16 21:52:39.596766+00 2025-10-16 21:52:39.596771+00 f t ADELANTO 11000.00 4 9823 \N +388229 2025-10-16 21:53:08.708501+00 2025-10-16 21:53:08.708514+00 f t SUBTOTAL 0.00 1 9824 \N +388230 2025-10-16 21:53:08.710772+00 2025-10-16 21:53:08.710782+00 f t DESCUENTO 0.00 2 9824 \N +388231 2025-10-16 21:53:08.713011+00 2025-10-16 21:53:08.713021+00 f t TOTAL 0.00 3 9824 \N +388232 2025-10-16 21:53:08.714391+00 2025-10-16 21:53:08.7144+00 f t ADELANTO 0.00 4 9824 \N +390549 2025-10-17 11:53:56.16599+00 2025-10-17 11:53:56.166002+00 f t SUBTOTAL 55000.00 1 9885 \N +390550 2025-10-17 11:53:56.167872+00 2025-10-17 11:53:56.167881+00 f t DESCUENTO 0.00 2 9885 \N +390551 2025-10-17 11:53:56.169645+00 2025-10-17 11:53:56.169654+00 f t TOTAL 55000.00 3 9885 \N +390552 2025-10-17 11:53:56.170961+00 2025-10-17 11:53:56.170968+00 f t ADELANTO 11000.00 4 9885 \N +400201 2025-10-20 21:47:10.202367+00 2025-10-20 21:47:10.202376+00 f t SUBTOTAL 92000.00 1 10144 \N +400202 2025-10-20 21:47:10.204718+00 2025-10-20 21:47:10.204726+00 f t DESCUENTO 0.00 2 10144 \N +400203 2025-10-20 21:47:10.206245+00 2025-10-20 21:47:10.206252+00 f t TOTAL 92000.00 3 10144 \N +400204 2025-10-20 21:47:10.20753+00 2025-10-20 21:47:10.207536+00 f t ADELANTO 22000.00 4 10144 \N +388261 2025-10-16 21:55:59.665263+00 2025-10-16 21:55:59.665271+00 f t SUBTOTAL 46000.00 1 9825 \N +388262 2025-10-16 21:55:59.66672+00 2025-10-16 21:55:59.666726+00 f t DESCUENTO 0.00 2 9825 \N +388263 2025-10-16 21:55:59.667931+00 2025-10-16 21:55:59.667937+00 f t TOTAL 46000.00 3 9825 \N +388264 2025-10-16 21:55:59.668947+00 2025-10-16 21:55:59.668953+00 f t ADELANTO 11000.00 4 9825 \N +388269 2025-10-16 22:00:25.379672+00 2025-10-16 22:00:25.3797+00 f t SUBTOTAL 0.00 1 9826 \N +388270 2025-10-16 22:00:25.381704+00 2025-10-16 22:00:25.381715+00 f t DESCUENTO 0.00 2 9826 \N +388271 2025-10-16 22:00:25.384017+00 2025-10-16 22:00:25.384026+00 f t TOTAL 0.00 3 9826 \N +388272 2025-10-16 22:00:25.385601+00 2025-10-16 22:00:25.38561+00 f t ADELANTO 0.00 4 9826 \N +388285 2025-10-16 22:00:58.186917+00 2025-10-16 22:00:58.186927+00 f t SUBTOTAL 0.00 1 9828 \N +388286 2025-10-16 22:00:58.18832+00 2025-10-16 22:00:58.188327+00 f t DESCUENTO 0.00 2 9828 \N +388287 2025-10-16 22:00:58.189288+00 2025-10-16 22:00:58.189293+00 f t TOTAL 0.00 3 9828 \N +388288 2025-10-16 22:00:58.190305+00 2025-10-16 22:00:58.19031+00 f t ADELANTO 0.00 4 9828 \N +388333 2025-10-16 22:06:37.567223+00 2025-10-16 22:06:37.567233+00 f t SUBTOTAL 0.00 1 9827 \N +388334 2025-10-16 22:06:37.56918+00 2025-10-16 22:06:37.569189+00 f t DESCUENTO 0.00 2 9827 \N +388335 2025-10-16 22:06:37.570519+00 2025-10-16 22:06:37.570535+00 f t TOTAL 0.00 3 9827 \N +388336 2025-10-16 22:06:37.571986+00 2025-10-16 22:06:37.571992+00 f t ADELANTO 0.00 4 9827 \N +388345 2025-10-16 22:07:12.900439+00 2025-10-16 22:07:12.900448+00 f t SUBTOTAL 0.00 1 9829 \N +388346 2025-10-16 22:07:12.902359+00 2025-10-16 22:07:12.902366+00 f t DESCUENTO 0.00 2 9829 \N +388347 2025-10-16 22:07:12.903733+00 2025-10-16 22:07:12.90374+00 f t TOTAL 0.00 3 9829 \N +388348 2025-10-16 22:07:12.904811+00 2025-10-16 22:07:12.904817+00 f t ADELANTO 0.00 4 9829 \N +402232 2025-10-21 14:51:09.835697+00 2025-10-21 14:51:09.835708+00 f t SUBTOTAL 108000.00 1 10193 \N +402233 2025-10-21 14:51:09.838141+00 2025-10-21 14:51:09.83815+00 f t COSTO_SERVICIO 0.00 2 10193 \N +402234 2025-10-21 14:51:09.839743+00 2025-10-21 14:51:09.839751+00 f t DESCUENTO 0.00 3 10193 \N +402235 2025-10-21 14:51:09.841322+00 2025-10-21 14:51:09.841331+00 f t TOTAL 108000.00 4 10193 \N +402236 2025-10-21 14:51:09.843028+00 2025-10-21 14:51:09.843037+00 f t ADELANTO 27000.00 5 10193 \N +391985 2025-10-17 20:09:58.803631+00 2025-10-17 20:09:58.803639+00 f t SUBTOTAL 36200.00 1 9924 \N +391986 2025-10-17 20:09:58.805515+00 2025-10-17 20:09:58.805524+00 f t DESCUENTO 0.00 2 9924 \N +391987 2025-10-17 20:09:58.806842+00 2025-10-17 20:09:58.80685+00 f t TOTAL 36200.00 3 9924 \N +391988 2025-10-17 20:09:58.807946+00 2025-10-17 20:09:58.807952+00 f t ADELANTO 18700.00 4 9924 \N +392313 2025-10-17 22:55:09.108052+00 2025-10-17 22:55:09.108066+00 f t SUBTOTAL 115000.00 1 9927 \N +392314 2025-10-17 22:55:09.110197+00 2025-10-17 22:55:09.110206+00 f t DESCUENTO 0.00 2 9927 \N +392315 2025-10-17 22:55:09.111499+00 2025-10-17 22:55:09.111509+00 f t TOTAL 115000.00 3 9927 \N +392316 2025-10-17 22:55:09.112993+00 2025-10-17 22:55:09.112999+00 f t ADELANTO 25000.00 4 9927 \N +456310 2025-11-05 13:10:12.751873+00 2025-11-05 13:10:12.751882+00 f t TOTAL 13200.00 4 11457 \N +456311 2025-11-05 13:10:12.753407+00 2025-11-05 13:10:12.753412+00 f t ADELANTO 13200.00 5 11457 \N +397685 2025-10-20 09:07:58.842405+00 2025-10-20 09:07:58.842414+00 f t SUBTOTAL 0.00 1 10072 \N +397686 2025-10-20 09:07:58.844091+00 2025-10-20 09:07:58.844098+00 f t DESCUENTO 0.00 2 10072 \N +397687 2025-10-20 09:07:58.845174+00 2025-10-20 09:07:58.845179+00 f t TOTAL 0.00 3 10072 \N +397688 2025-10-20 09:07:58.846077+00 2025-10-20 09:07:58.846082+00 f t ADELANTO 0.00 4 10072 \N +397973 2025-10-20 11:30:09.203643+00 2025-10-20 11:30:09.203655+00 f t SUBTOTAL 78000.00 1 10077 \N +397974 2025-10-20 11:30:09.205692+00 2025-10-20 11:30:09.2057+00 f t DESCUENTO 0.00 2 10077 \N +397975 2025-10-20 11:30:09.207181+00 2025-10-20 11:30:09.20719+00 f t TOTAL 78000.00 3 10077 \N +397976 2025-10-20 11:30:09.20846+00 2025-10-20 11:30:09.208465+00 f t ADELANTO 13000.00 4 10077 \N +398121 2025-10-20 11:52:58.847006+00 2025-10-20 11:52:58.847015+00 f t SUBTOTAL 92000.00 1 10080 \N +398122 2025-10-20 11:52:58.848806+00 2025-10-20 11:52:58.848813+00 f t DESCUENTO 0.00 2 10080 \N +398123 2025-10-20 11:52:58.850104+00 2025-10-20 11:52:58.85011+00 f t TOTAL 92000.00 3 10080 \N +398124 2025-10-20 11:52:58.851276+00 2025-10-20 11:52:58.851282+00 f t ADELANTO 22000.00 4 10080 \N +399665 2025-10-20 18:02:19.079825+00 2025-10-20 18:02:19.079835+00 f t SUBTOTAL 78000.00 1 10124 \N +399666 2025-10-20 18:02:19.082105+00 2025-10-20 18:02:19.082116+00 f t DESCUENTO 0.00 2 10124 \N +399667 2025-10-20 18:02:19.083798+00 2025-10-20 18:02:19.083806+00 f t TOTAL 78000.00 3 10124 \N +399668 2025-10-20 18:02:19.086082+00 2025-10-20 18:02:19.086093+00 f t ADELANTO 21500.00 4 10124 \N +399777 2025-10-20 18:30:23.246969+00 2025-10-20 18:30:23.246985+00 f t SUBTOTAL 0.00 1 10128 \N +399778 2025-10-20 18:30:23.25017+00 2025-10-20 18:30:23.250183+00 f t DESCUENTO 0.00 2 10128 \N +399779 2025-10-20 18:30:23.252132+00 2025-10-20 18:30:23.252142+00 f t TOTAL 0.00 3 10128 \N +399780 2025-10-20 18:30:23.253788+00 2025-10-20 18:30:23.253797+00 f t ADELANTO 0.00 4 10128 \N +400001 2025-10-20 19:43:49.712191+00 2025-10-20 19:43:49.7122+00 f t SUBTOTAL 78000.00 1 10137 \N +400002 2025-10-20 19:43:49.714802+00 2025-10-20 19:43:49.714809+00 f t DESCUENTO 0.00 2 10137 \N +400003 2025-10-20 19:43:49.716158+00 2025-10-20 19:43:49.716164+00 f t TOTAL 78000.00 3 10137 \N +400004 2025-10-20 19:43:49.717542+00 2025-10-20 19:43:49.717548+00 f t ADELANTO 13000.00 4 10137 \N +392677 2025-10-17 23:42:43.087316+00 2025-10-17 23:42:43.087326+00 f t SUBTOTAL 116000.00 1 9940 \N +392678 2025-10-17 23:42:43.088922+00 2025-10-17 23:42:43.088929+00 f t DESCUENTO 0.00 2 9940 \N +392679 2025-10-17 23:42:43.090107+00 2025-10-17 23:42:43.090113+00 f t TOTAL 116000.00 3 9940 \N +392680 2025-10-17 23:42:43.09142+00 2025-10-17 23:42:43.091426+00 f t ADELANTO 30000.00 4 9940 \N +392685 2025-10-17 23:58:25.962581+00 2025-10-17 23:58:25.962594+00 f t SUBTOTAL 0.00 1 9942 \N +392686 2025-10-17 23:58:25.964238+00 2025-10-17 23:58:25.964247+00 f t DESCUENTO 0.00 2 9942 \N +392687 2025-10-17 23:58:25.965596+00 2025-10-17 23:58:25.965605+00 f t TOTAL 0.00 3 9942 \N +392688 2025-10-17 23:58:25.967067+00 2025-10-17 23:58:25.967076+00 f t ADELANTO 0.00 4 9942 \N +400697 2025-10-21 00:28:00.033025+00 2025-10-21 00:28:00.033034+00 f t SUBTOTAL 0.00 1 10158 \N +400698 2025-10-21 00:28:00.036077+00 2025-10-21 00:28:00.036086+00 f t DESCUENTO 0.00 2 10158 \N +400699 2025-10-21 00:28:00.037581+00 2025-10-21 00:28:00.037591+00 f t TOTAL 0.00 3 10158 \N +400700 2025-10-21 00:28:00.038957+00 2025-10-21 00:28:00.038962+00 f t ADELANTO 0.00 4 10158 \N +392713 2025-10-18 00:06:27.002645+00 2025-10-18 00:06:27.00266+00 f t SUBTOTAL 0.00 1 9944 \N +392714 2025-10-18 00:06:27.004736+00 2025-10-18 00:06:27.00475+00 f t DESCUENTO 0.00 2 9944 \N +392715 2025-10-18 00:06:27.007279+00 2025-10-18 00:06:27.007286+00 f t TOTAL 0.00 3 9944 \N +392716 2025-10-18 00:06:27.00837+00 2025-10-18 00:06:27.008376+00 f t ADELANTO 0.00 4 9944 \N +392761 2025-10-18 00:07:15.150404+00 2025-10-18 00:07:15.150416+00 f t SUBTOTAL 46000.00 1 9943 \N +392762 2025-10-18 00:07:15.152223+00 2025-10-18 00:07:15.15223+00 f t DESCUENTO 0.00 2 9943 \N +392763 2025-10-18 00:07:15.153476+00 2025-10-18 00:07:15.153483+00 f t TOTAL 46000.00 3 9943 \N +392764 2025-10-18 00:07:15.154764+00 2025-10-18 00:07:15.15477+00 f t ADELANTO 11000.00 4 9943 \N +392769 2025-10-18 00:08:24.482186+00 2025-10-18 00:08:24.482195+00 f t SUBTOTAL 0.00 1 9945 \N +392770 2025-10-18 00:08:24.483658+00 2025-10-18 00:08:24.483665+00 f t DESCUENTO 0.00 2 9945 \N +392771 2025-10-18 00:08:24.484793+00 2025-10-18 00:08:24.484801+00 f t TOTAL 0.00 3 9945 \N +392772 2025-10-18 00:08:24.486131+00 2025-10-18 00:08:24.486139+00 f t ADELANTO 0.00 4 9945 \N +402127 2025-10-21 14:44:12.144794+00 2025-10-21 14:44:12.144805+00 f t SUBTOTAL 53700.00 1 10190 \N +402128 2025-10-21 14:44:12.146582+00 2025-10-21 14:44:12.146589+00 f t COSTO_SERVICIO 0.00 2 10190 \N +402129 2025-10-21 14:44:12.148074+00 2025-10-21 14:44:12.148086+00 f t DESCUENTO 0.00 3 10190 \N +402130 2025-10-21 14:44:12.14915+00 2025-10-21 14:44:12.149158+00 f t TOTAL 53700.00 4 10190 \N +402131 2025-10-21 14:44:12.150177+00 2025-10-21 14:44:12.150183+00 f t ADELANTO 13200.00 5 10190 \N +392789 2025-10-18 00:13:20.823814+00 2025-10-18 00:13:20.823823+00 f t SUBTOTAL 55000.00 1 9946 \N +392790 2025-10-18 00:13:20.826889+00 2025-10-18 00:13:20.826896+00 f t DESCUENTO 0.00 2 9946 \N +392791 2025-10-18 00:13:20.828149+00 2025-10-18 00:13:20.828156+00 f t TOTAL 55000.00 3 9946 \N +392792 2025-10-18 00:13:20.829252+00 2025-10-18 00:13:20.829258+00 f t ADELANTO 11000.00 4 9946 \N +402937 2025-10-21 17:24:47.272278+00 2025-10-21 17:24:47.272286+00 f t SUBTOTAL 30000.00 1 10208 \N +402938 2025-10-21 17:24:47.27403+00 2025-10-21 17:24:47.274039+00 f t COSTO_SERVICIO 0.00 2 10208 \N +402939 2025-10-21 17:24:47.275287+00 2025-10-21 17:24:47.275293+00 f t DESCUENTO 0.00 3 10208 \N +402940 2025-10-21 17:24:47.276433+00 2025-10-21 17:24:47.276438+00 f t TOTAL 30000.00 4 10208 \N +402941 2025-10-21 17:24:47.277728+00 2025-10-21 17:24:47.277735+00 f t ADELANTO 30000.00 5 10208 \N +403052 2025-10-21 18:22:53.057563+00 2025-10-21 18:22:53.057573+00 f t SUBTOTAL 55000.00 1 10212 \N +403053 2025-10-21 18:22:53.05961+00 2025-10-21 18:22:53.059618+00 f t COSTO_SERVICIO 0.00 2 10212 \N +403054 2025-10-21 18:22:53.060774+00 2025-10-21 18:22:53.06078+00 f t DESCUENTO 0.00 3 10212 \N +403055 2025-10-21 18:22:53.06199+00 2025-10-21 18:22:53.061995+00 f t TOTAL 55000.00 4 10212 \N +403056 2025-10-21 18:22:53.063346+00 2025-10-21 18:22:53.063354+00 f t ADELANTO 11000.00 5 10212 \N +403312 2025-10-21 19:26:42.96926+00 2025-10-21 19:26:42.969267+00 f t SUBTOTAL 78000.00 1 10219 \N +403313 2025-10-21 19:26:42.97112+00 2025-10-21 19:26:42.971126+00 f t COSTO_SERVICIO 0.00 2 10219 \N +403314 2025-10-21 19:26:42.97217+00 2025-10-21 19:26:42.972175+00 f t DESCUENTO 0.00 3 10219 \N +392865 2025-10-18 00:15:19.497372+00 2025-10-18 00:15:19.497382+00 f t SUBTOTAL 70000.00 1 9948 \N +392866 2025-10-18 00:15:19.499076+00 2025-10-18 00:15:19.499084+00 f t DESCUENTO 0.00 2 9948 \N +392867 2025-10-18 00:15:19.500571+00 2025-10-18 00:15:19.500578+00 f t TOTAL 70000.00 3 9948 \N +392868 2025-10-18 00:15:19.501916+00 2025-10-18 00:15:19.501925+00 f t ADELANTO 19000.00 4 9948 \N +392877 2025-10-18 00:15:50.378225+00 2025-10-18 00:15:50.378234+00 f t SUBTOTAL 207900.00 1 9947 \N +392878 2025-10-18 00:15:50.380028+00 2025-10-18 00:15:50.380035+00 f t DESCUENTO 0.00 2 9947 \N +392879 2025-10-18 00:15:50.381407+00 2025-10-18 00:15:50.381414+00 f t TOTAL 207900.00 3 9947 \N +392880 2025-10-18 00:15:50.38264+00 2025-10-18 00:15:50.382647+00 f t ADELANTO 72400.00 4 9947 \N +466582 2025-11-07 22:16:20.544951+00 2025-11-07 22:16:20.544961+00 f t SUBTOTAL 0.00 1 11698 \N +466583 2025-11-07 22:16:20.546935+00 2025-11-07 22:16:20.546942+00 f t COSTO_SERVICIO 0.00 2 11698 \N +392885 2025-10-18 00:23:50.127228+00 2025-10-18 00:23:50.127237+00 f t SUBTOTAL 0.00 1 9949 \N +392886 2025-10-18 00:23:50.128725+00 2025-10-18 00:23:50.128731+00 f t DESCUENTO 0.00 2 9949 \N +392887 2025-10-18 00:23:50.129937+00 2025-10-18 00:23:50.129944+00 f t TOTAL 0.00 3 9949 \N +392888 2025-10-18 00:23:50.131063+00 2025-10-18 00:23:50.13107+00 f t ADELANTO 0.00 4 9949 \N +435876 2025-10-30 14:46:44.686111+00 2025-10-30 14:46:44.686117+00 f t ADELANTO 13500.00 5 10977 \N +466584 2025-11-07 22:16:20.548256+00 2025-11-07 22:16:20.548262+00 f t DESCUENTO 0.00 3 11698 \N +406841 2025-10-22 17:17:51.33289+00 2025-10-22 17:17:51.332896+00 f t ADELANTO 0.00 5 10299 \N +416642 2025-10-26 00:19:42.923082+00 2025-10-26 00:19:42.923094+00 f t SUBTOTAL 0.00 1 10527 \N +416643 2025-10-26 00:19:42.924891+00 2025-10-26 00:19:42.924901+00 f t COSTO_SERVICIO 0.00 2 10527 \N +416644 2025-10-26 00:19:42.926153+00 2025-10-26 00:19:42.926162+00 f t DESCUENTO 0.00 3 10527 \N +416645 2025-10-26 00:19:42.927414+00 2025-10-26 00:19:42.927423+00 f t TOTAL 0.00 4 10527 \N +416646 2025-10-26 00:19:42.928897+00 2025-10-26 00:19:42.928905+00 f t ADELANTO 0.00 5 10527 \N +397981 2025-10-20 11:30:40.80748+00 2025-10-20 11:30:40.807493+00 f t SUBTOTAL 0.00 1 10078 \N +397982 2025-10-20 11:30:40.809337+00 2025-10-20 11:30:40.809347+00 f t DESCUENTO 0.00 2 10078 \N +397983 2025-10-20 11:30:40.810934+00 2025-10-20 11:30:40.810943+00 f t TOTAL 0.00 3 10078 \N +397984 2025-10-20 11:30:40.812393+00 2025-10-20 11:30:40.812402+00 f t ADELANTO 0.00 4 10078 \N +392941 2025-10-18 00:27:42.499292+00 2025-10-18 00:27:42.499305+00 f t SUBTOTAL 55000.00 1 9950 \N +392942 2025-10-18 00:27:42.500808+00 2025-10-18 00:27:42.500818+00 f t DESCUENTO 0.00 2 9950 \N +392943 2025-10-18 00:27:42.501892+00 2025-10-18 00:27:42.5019+00 f t TOTAL 55000.00 3 9950 \N +392944 2025-10-18 00:27:42.502817+00 2025-10-18 00:27:42.502824+00 f t ADELANTO 11000.00 4 9950 \N +408527 2025-10-23 02:19:43.216852+00 2025-10-23 02:19:43.216859+00 f t SUBTOTAL 46000.00 1 10333 \N +408528 2025-10-23 02:19:43.218279+00 2025-10-23 02:19:43.218285+00 f t COSTO_SERVICIO 0.00 2 10333 \N +408529 2025-10-23 02:19:43.219376+00 2025-10-23 02:19:43.219382+00 f t DESCUENTO 0.00 3 10333 \N +408530 2025-10-23 02:19:43.220295+00 2025-10-23 02:19:43.2203+00 f t TOTAL 46000.00 4 10333 \N +408531 2025-10-23 02:19:43.221288+00 2025-10-23 02:19:43.221294+00 f t ADELANTO 11000.00 5 10333 \N +392969 2025-10-18 00:37:03.497424+00 2025-10-18 00:37:03.497438+00 f t SUBTOTAL 46000.00 1 9951 \N +392970 2025-10-18 00:37:03.499477+00 2025-10-18 00:37:03.499488+00 f t DESCUENTO 0.00 2 9951 \N +392971 2025-10-18 00:37:03.501342+00 2025-10-18 00:37:03.501352+00 f t TOTAL 46000.00 3 9951 \N +392972 2025-10-18 00:37:03.50272+00 2025-10-18 00:37:03.50273+00 f t ADELANTO 11000.00 4 9951 \N +408822 2025-10-23 03:17:22.447895+00 2025-10-23 03:17:22.447901+00 f t SUBTOTAL 109500.00 1 10337 \N +408823 2025-10-23 03:17:22.449636+00 2025-10-23 03:17:22.449642+00 f t COSTO_SERVICIO 0.00 2 10337 \N +408824 2025-10-23 03:17:22.450762+00 2025-10-23 03:17:22.450768+00 f t DESCUENTO 0.00 3 10337 \N +408825 2025-10-23 03:17:22.451751+00 2025-10-23 03:17:22.451756+00 f t TOTAL 109500.00 4 10337 \N +408826 2025-10-23 03:17:22.452634+00 2025-10-23 03:17:22.45264+00 f t ADELANTO 53000.00 5 10337 \N +400005 2025-10-20 19:44:18.247611+00 2025-10-20 19:44:18.24762+00 f t SUBTOTAL 55000.00 1 10138 \N +400006 2025-10-20 19:44:18.249857+00 2025-10-20 19:44:18.249865+00 f t DESCUENTO 0.00 2 10138 \N +400007 2025-10-20 19:44:18.251177+00 2025-10-20 19:44:18.251184+00 f t TOTAL 55000.00 3 10138 \N +400008 2025-10-20 19:44:18.252442+00 2025-10-20 19:44:18.252448+00 f t ADELANTO 11000.00 4 10138 \N +402132 2025-10-21 14:44:20.566537+00 2025-10-21 14:44:20.566545+00 f t SUBTOTAL 13200.00 1 10192 \N +393081 2025-10-18 00:52:46.322284+00 2025-10-18 00:52:46.322297+00 f t SUBTOTAL 0.00 1 9953 \N +393082 2025-10-18 00:52:46.324677+00 2025-10-18 00:52:46.324688+00 f t DESCUENTO 0.00 2 9953 \N +393083 2025-10-18 00:52:46.325957+00 2025-10-18 00:52:46.325966+00 f t TOTAL 0.00 3 9953 \N +393084 2025-10-18 00:52:46.327344+00 2025-10-18 00:52:46.327353+00 f t ADELANTO 0.00 4 9953 \N +402133 2025-10-21 14:44:20.568187+00 2025-10-21 14:44:20.568197+00 f t COSTO_SERVICIO 0.00 2 10192 \N +402134 2025-10-21 14:44:20.569642+00 2025-10-21 14:44:20.569649+00 f t DESCUENTO 0.00 3 10192 \N +402135 2025-10-21 14:44:20.570997+00 2025-10-21 14:44:20.571005+00 f t TOTAL 13200.00 4 10192 \N +402136 2025-10-21 14:44:20.572147+00 2025-10-21 14:44:20.572152+00 f t ADELANTO 13200.00 5 10192 \N +402247 2025-10-21 15:23:29.59317+00 2025-10-21 15:23:29.593178+00 f t SUBTOTAL 46000.00 1 10194 \N +402248 2025-10-21 15:23:29.594702+00 2025-10-21 15:23:29.594711+00 f t COSTO_SERVICIO 0.00 2 10194 \N +402249 2025-10-21 15:23:29.596103+00 2025-10-21 15:23:29.59611+00 f t DESCUENTO 0.00 3 10194 \N +402250 2025-10-21 15:23:29.597314+00 2025-10-21 15:23:29.59732+00 f t TOTAL 46000.00 4 10194 \N +402251 2025-10-21 15:23:29.598427+00 2025-10-21 15:23:29.598432+00 f t ADELANTO 11000.00 5 10194 \N +393109 2025-10-18 00:53:05.196303+00 2025-10-18 00:53:05.196314+00 f t SUBTOTAL 156000.00 1 9952 \N +393110 2025-10-18 00:53:05.198225+00 2025-10-18 00:53:05.198235+00 f t DESCUENTO 0.00 2 9952 \N +393111 2025-10-18 00:53:05.199668+00 2025-10-18 00:53:05.199676+00 f t TOTAL 156000.00 3 9952 \N +393112 2025-10-18 00:53:05.200839+00 2025-10-18 00:53:05.200845+00 f t ADELANTO 43000.00 4 9952 \N +402947 2025-10-21 17:27:03.714486+00 2025-10-21 17:27:03.714497+00 f t SUBTOTAL 0.00 1 10209 \N +402948 2025-10-21 17:27:03.716188+00 2025-10-21 17:27:03.716197+00 f t COSTO_SERVICIO 0.00 2 10209 \N +402949 2025-10-21 17:27:03.71766+00 2025-10-21 17:27:03.717667+00 f t DESCUENTO 0.00 3 10209 \N +402950 2025-10-21 17:27:03.718748+00 2025-10-21 17:27:03.718754+00 f t TOTAL 0.00 4 10209 \N +402951 2025-10-21 17:27:03.719809+00 2025-10-21 17:27:03.719815+00 f t ADELANTO 0.00 5 10209 \N +403057 2025-10-21 18:26:35.920742+00 2025-10-21 18:26:35.92075+00 f t SUBTOTAL 0.00 1 10210 \N +403058 2025-10-21 18:26:35.922664+00 2025-10-21 18:26:35.92267+00 f t COSTO_SERVICIO 0.00 2 10210 \N +403059 2025-10-21 18:26:35.923969+00 2025-10-21 18:26:35.923975+00 f t DESCUENTO 0.00 3 10210 \N +403060 2025-10-21 18:26:35.924937+00 2025-10-21 18:26:35.924942+00 f t TOTAL 0.00 4 10210 \N +403061 2025-10-21 18:26:35.926095+00 2025-10-21 18:26:35.9261+00 f t ADELANTO 0.00 5 10210 \N +403217 2025-10-21 18:56:38.86571+00 2025-10-21 18:56:38.865721+00 f t SUBTOTAL 0.00 1 10216 \N +403218 2025-10-21 18:56:38.867239+00 2025-10-21 18:56:38.867248+00 f t COSTO_SERVICIO 0.00 2 10216 \N +403219 2025-10-21 18:56:38.868547+00 2025-10-21 18:56:38.868555+00 f t DESCUENTO 0.00 3 10216 \N +403220 2025-10-21 18:56:38.869657+00 2025-10-21 18:56:38.869664+00 f t TOTAL 0.00 4 10216 \N +403221 2025-10-21 18:56:38.871315+00 2025-10-21 18:56:38.871323+00 f t ADELANTO 0.00 5 10216 \N +403315 2025-10-21 19:26:42.973087+00 2025-10-21 19:26:42.973092+00 f t TOTAL 78000.00 4 10219 \N +403316 2025-10-21 19:26:42.974143+00 2025-10-21 19:26:42.974148+00 f t ADELANTO 21500.00 5 10219 \N +403482 2025-10-21 20:00:05.12802+00 2025-10-21 20:00:05.128034+00 f t SUBTOTAL 23000.00 1 10225 \N +403483 2025-10-21 20:00:05.154003+00 2025-10-21 20:00:05.154016+00 f t COSTO_SERVICIO 0.00 2 10225 \N +403484 2025-10-21 20:00:05.157121+00 2025-10-21 20:00:05.157135+00 f t DESCUENTO 0.00 3 10225 \N +403485 2025-10-21 20:00:05.162085+00 2025-10-21 20:00:05.1621+00 f t TOTAL 23000.00 4 10225 \N +403486 2025-10-21 20:00:05.164876+00 2025-10-21 20:00:05.164889+00 f t ADELANTO 5500.00 5 10225 \N +445682 2025-11-01 19:04:08.612967+00 2025-11-01 19:04:08.612974+00 f t SUBTOTAL 46000.00 1 11213 \N +445683 2025-11-01 19:04:08.614825+00 2025-11-01 19:04:08.614832+00 f t COSTO_SERVICIO 0.00 2 11213 \N +445684 2025-11-01 19:04:08.616082+00 2025-11-01 19:04:08.616088+00 f t DESCUENTO 0.00 3 11213 \N +393177 2025-10-18 00:56:49.15253+00 2025-10-18 00:56:49.152542+00 f t SUBTOTAL 124000.00 1 9954 \N +393178 2025-10-18 00:56:49.154451+00 2025-10-18 00:56:49.154459+00 f t DESCUENTO 0.00 2 9954 \N +393179 2025-10-18 00:56:49.156001+00 2025-10-18 00:56:49.156009+00 f t TOTAL 124000.00 3 9954 \N +393180 2025-10-18 00:56:49.157169+00 2025-10-18 00:56:49.157175+00 f t ADELANTO 24000.00 4 9954 \N +407037 2025-10-22 18:29:43.042737+00 2025-10-22 18:29:43.042748+00 f t SUBTOTAL 80000.00 1 10303 \N +407038 2025-10-22 18:29:43.045158+00 2025-10-22 18:29:43.045168+00 f t COSTO_SERVICIO 0.00 2 10303 \N +407039 2025-10-22 18:29:43.046448+00 2025-10-22 18:29:43.046457+00 f t DESCUENTO 0.00 3 10303 \N +407040 2025-10-22 18:29:43.047643+00 2025-10-22 18:29:43.047651+00 f t TOTAL 80000.00 4 10303 \N +407041 2025-10-22 18:29:43.048795+00 2025-10-22 18:29:43.048803+00 f t ADELANTO 12000.00 5 10303 \N +398269 2025-10-20 12:16:40.924997+00 2025-10-20 12:16:40.925012+00 f t SUBTOTAL 0.00 1 10083 \N +398270 2025-10-20 12:16:40.926362+00 2025-10-20 12:16:40.926369+00 f t DESCUENTO 0.00 2 10083 \N +398271 2025-10-20 12:16:40.927518+00 2025-10-20 12:16:40.927524+00 f t TOTAL 0.00 3 10083 \N +393209 2025-10-18 01:28:33.407516+00 2025-10-18 01:28:33.407528+00 f t SUBTOTAL 46000.00 1 9955 \N +393210 2025-10-18 01:28:33.40926+00 2025-10-18 01:28:33.409268+00 f t DESCUENTO 0.00 2 9955 \N +393211 2025-10-18 01:28:33.410701+00 2025-10-18 01:28:33.410708+00 f t TOTAL 46000.00 3 9955 \N +393212 2025-10-18 01:28:33.412077+00 2025-10-18 01:28:33.412083+00 f t ADELANTO 11000.00 4 9955 \N +398272 2025-10-20 12:16:40.928526+00 2025-10-20 12:16:40.928531+00 f t ADELANTO 0.00 4 10083 \N +407542 2025-10-22 19:57:09.992821+00 2025-10-22 19:57:09.992828+00 f t SUBTOTAL 13200.00 1 10312 \N +407543 2025-10-22 19:57:09.994676+00 2025-10-22 19:57:09.994682+00 f t COSTO_SERVICIO 0.00 2 10312 \N +407544 2025-10-22 19:57:09.996063+00 2025-10-22 19:57:09.996069+00 f t DESCUENTO 0.00 3 10312 \N +407545 2025-10-22 19:57:09.997285+00 2025-10-22 19:57:09.997291+00 f t TOTAL 13200.00 4 10312 \N +407546 2025-10-22 19:57:09.998468+00 2025-10-22 19:57:09.998475+00 f t ADELANTO 13200.00 5 10312 \N +407727 2025-10-22 21:54:30.345611+00 2025-10-22 21:54:30.345621+00 f t SUBTOTAL 0.00 1 10317 \N +407728 2025-10-22 21:54:30.347161+00 2025-10-22 21:54:30.347169+00 f t COSTO_SERVICIO 0.00 2 10317 \N +407729 2025-10-22 21:54:30.34846+00 2025-10-22 21:54:30.348468+00 f t DESCUENTO 0.00 3 10317 \N +407730 2025-10-22 21:54:30.349885+00 2025-10-22 21:54:30.349894+00 f t TOTAL 0.00 4 10317 \N +407731 2025-10-22 21:54:30.351238+00 2025-10-22 21:54:30.351245+00 f t ADELANTO 0.00 5 10317 \N +408077 2025-10-22 23:36:11.350377+00 2025-10-22 23:36:11.350391+00 f t SUBTOTAL 0.00 1 10321 \N +408078 2025-10-22 23:36:11.352925+00 2025-10-22 23:36:11.352936+00 f t COSTO_SERVICIO 0.00 2 10321 \N +408079 2025-10-22 23:36:11.354585+00 2025-10-22 23:36:11.354594+00 f t DESCUENTO 0.00 3 10321 \N +408080 2025-10-22 23:36:11.356399+00 2025-10-22 23:36:11.356409+00 f t TOTAL 0.00 4 10321 \N +408081 2025-10-22 23:36:11.357869+00 2025-10-22 23:36:11.357878+00 f t ADELANTO 0.00 5 10321 \N +399561 2025-10-20 16:52:02.76887+00 2025-10-20 16:52:02.768883+00 f t SUBTOTAL 0.00 1 10119 \N +399562 2025-10-20 16:52:02.771398+00 2025-10-20 16:52:02.771408+00 f t DESCUENTO 0.00 2 10119 \N +399563 2025-10-20 16:52:02.772946+00 2025-10-20 16:52:02.772952+00 f t TOTAL 0.00 3 10119 \N +399564 2025-10-20 16:52:02.774297+00 2025-10-20 16:52:02.774304+00 f t ADELANTO 0.00 4 10119 \N +399789 2025-10-20 18:44:43.97934+00 2025-10-20 18:44:43.979348+00 f t SUBTOTAL 46000.00 1 10129 \N +399790 2025-10-20 18:44:43.981245+00 2025-10-20 18:44:43.981256+00 f t DESCUENTO 0.00 2 10129 \N +399791 2025-10-20 18:44:43.982734+00 2025-10-20 18:44:43.982743+00 f t TOTAL 46000.00 3 10129 \N +399792 2025-10-20 18:44:43.98426+00 2025-10-20 18:44:43.984267+00 f t ADELANTO 11000.00 4 10129 \N +400109 2025-10-20 20:50:28.386459+00 2025-10-20 20:50:28.386467+00 f t SUBTOTAL 30000.00 1 10141 \N +400110 2025-10-20 20:50:28.388131+00 2025-10-20 20:50:28.388138+00 f t DESCUENTO 0.00 2 10141 \N +400111 2025-10-20 20:50:28.389647+00 2025-10-20 20:50:28.389654+00 f t TOTAL 30000.00 3 10141 \N +400112 2025-10-20 20:50:28.39076+00 2025-10-20 20:50:28.390766+00 f t ADELANTO 30000.00 4 10141 \N +393281 2025-10-18 01:32:32.47264+00 2025-10-18 01:32:32.472649+00 f t SUBTOTAL 92000.00 1 9956 \N +393282 2025-10-18 01:32:32.474255+00 2025-10-18 01:32:32.474262+00 f t DESCUENTO 0.00 2 9956 \N +393283 2025-10-18 01:32:32.475556+00 2025-10-18 01:32:32.475563+00 f t TOTAL 92000.00 3 9956 \N +393284 2025-10-18 01:32:32.476564+00 2025-10-18 01:32:32.476569+00 f t ADELANTO 22000.00 4 9956 \N +401189 2025-10-21 10:34:16.367809+00 2025-10-21 10:34:16.367822+00 f t SUBTOTAL 55000.00 1 10169 \N +401190 2025-10-21 10:34:16.369465+00 2025-10-21 10:34:16.369472+00 f t DESCUENTO 0.00 2 10169 \N +401191 2025-10-21 10:34:16.370571+00 2025-10-21 10:34:16.370579+00 f t TOTAL 55000.00 3 10169 \N +401192 2025-10-21 10:34:16.372006+00 2025-10-21 10:34:16.372015+00 f t ADELANTO 11000.00 4 10169 \N +402012 2025-10-21 14:30:39.937916+00 2025-10-21 14:30:39.937926+00 f t SUBTOTAL 0.00 1 10187 \N +402013 2025-10-21 14:30:39.940089+00 2025-10-21 14:30:39.940097+00 f t COSTO_SERVICIO 0.00 2 10187 \N +402014 2025-10-21 14:30:39.94128+00 2025-10-21 14:30:39.941287+00 f t DESCUENTO 0.00 3 10187 \N +402015 2025-10-21 14:30:39.942401+00 2025-10-21 14:30:39.942407+00 f t TOTAL 0.00 4 10187 \N +402016 2025-10-21 14:30:39.943422+00 2025-10-21 14:30:39.943428+00 f t ADELANTO 0.00 5 10187 \N +393369 2025-10-18 01:47:22.455702+00 2025-10-18 01:47:22.45571+00 f t SUBTOTAL 61700.00 1 9957 \N +393370 2025-10-18 01:47:22.45737+00 2025-10-18 01:47:22.457378+00 f t DESCUENTO 0.00 2 9957 \N +393371 2025-10-18 01:47:22.458669+00 2025-10-18 01:47:22.458675+00 f t TOTAL 61700.00 3 9957 \N +393372 2025-10-18 01:47:22.459774+00 2025-10-18 01:47:22.45978+00 f t ADELANTO 15700.00 4 9957 \N +393377 2025-10-18 01:55:50.233568+00 2025-10-18 01:55:50.233577+00 f t SUBTOTAL 0.00 1 9958 \N +393378 2025-10-18 01:55:50.2349+00 2025-10-18 01:55:50.234906+00 f t DESCUENTO 0.00 2 9958 \N +393379 2025-10-18 01:55:50.236233+00 2025-10-18 01:55:50.236239+00 f t TOTAL 0.00 3 9958 \N +393380 2025-10-18 01:55:50.237576+00 2025-10-18 01:55:50.237584+00 f t ADELANTO 0.00 4 9958 \N +393385 2025-10-18 03:33:17.498923+00 2025-10-18 03:33:17.498933+00 f t SUBTOTAL 0.00 1 9959 \N +393386 2025-10-18 03:33:17.500309+00 2025-10-18 03:33:17.500318+00 f t DESCUENTO 0.00 2 9959 \N +393387 2025-10-18 03:33:17.501517+00 2025-10-18 03:33:17.501523+00 f t TOTAL 0.00 3 9959 \N +393388 2025-10-18 03:33:17.502482+00 2025-10-18 03:33:17.502488+00 f t ADELANTO 0.00 4 9959 \N +402497 2025-10-21 16:13:21.763455+00 2025-10-21 16:13:21.763469+00 f t SUBTOTAL 0.00 1 10202 \N +402498 2025-10-21 16:13:21.765024+00 2025-10-21 16:13:21.765034+00 f t COSTO_SERVICIO 0.00 2 10202 \N +402499 2025-10-21 16:13:21.766327+00 2025-10-21 16:13:21.766335+00 f t DESCUENTO 0.00 3 10202 \N +402500 2025-10-21 16:13:21.767637+00 2025-10-21 16:13:21.767645+00 f t TOTAL 0.00 4 10202 \N +402501 2025-10-21 16:13:21.769101+00 2025-10-21 16:13:21.76911+00 f t ADELANTO 0.00 5 10202 \N +393445 2025-10-18 03:46:46.665649+00 2025-10-18 03:46:46.665663+00 f t SUBTOTAL 121000.00 1 9960 \N +393446 2025-10-18 03:46:46.667349+00 2025-10-18 03:46:46.667356+00 f t DESCUENTO 0.00 2 9960 \N +393447 2025-10-18 03:46:46.66909+00 2025-10-18 03:46:46.669097+00 f t TOTAL 121000.00 3 9960 \N +393448 2025-10-18 03:46:46.670112+00 2025-10-18 03:46:46.670118+00 f t ADELANTO 26000.00 4 9960 \N +397509 2025-10-20 03:37:11.456736+00 2025-10-20 03:37:11.456745+00 f t SUBTOTAL 0.00 1 10064 \N +397510 2025-10-20 03:37:11.458652+00 2025-10-20 03:37:11.458659+00 f t DESCUENTO 0.00 2 10064 \N +397511 2025-10-20 03:37:11.460072+00 2025-10-20 03:37:11.460078+00 f t TOTAL 0.00 3 10064 \N +397512 2025-10-20 03:37:11.461834+00 2025-10-20 03:37:11.461841+00 f t ADELANTO 0.00 4 10064 \N +445685 2025-11-01 19:04:08.617196+00 2025-11-01 19:04:08.617201+00 f t TOTAL 46000.00 4 11213 \N +445686 2025-11-01 19:04:08.618314+00 2025-11-01 19:04:08.61832+00 f t ADELANTO 11000.00 5 11213 \N +406852 2025-10-22 17:29:36.207665+00 2025-10-22 17:29:36.207677+00 f t SUBTOTAL 46000.00 1 10300 \N +406853 2025-10-22 17:29:36.209946+00 2025-10-22 17:29:36.209954+00 f t COSTO_SERVICIO 0.00 2 10300 \N +406854 2025-10-22 17:29:36.211269+00 2025-10-22 17:29:36.211276+00 f t DESCUENTO 0.00 3 10300 \N +406855 2025-10-22 17:29:36.21249+00 2025-10-22 17:29:36.212497+00 f t TOTAL 46000.00 4 10300 \N +406856 2025-10-22 17:29:36.213678+00 2025-10-22 17:29:36.213684+00 f t ADELANTO 11000.00 5 10300 \N +446642 2025-11-02 10:31:53.72553+00 2025-11-02 10:31:53.725537+00 f t SUBTOTAL 134500.00 1 11236 \N +446643 2025-11-02 10:31:53.728279+00 2025-11-02 10:31:53.728289+00 f t COSTO_SERVICIO 0.00 2 11236 \N +446644 2025-11-02 10:31:53.729671+00 2025-11-02 10:31:53.729678+00 f t DESCUENTO 0.00 3 11236 \N +446645 2025-11-02 10:31:53.730753+00 2025-11-02 10:31:53.730759+00 f t TOTAL 134500.00 4 11236 \N +393489 2025-10-18 03:49:21.232772+00 2025-10-18 03:49:21.232784+00 f t SUBTOTAL 128500.00 1 9961 \N +393490 2025-10-18 03:49:21.234491+00 2025-10-18 03:49:21.234498+00 f t DESCUENTO 0.00 2 9961 \N +393491 2025-10-18 03:49:21.236028+00 2025-10-18 03:49:21.236035+00 f t TOTAL 128500.00 3 9961 \N +393492 2025-10-18 03:49:21.237118+00 2025-10-18 03:49:21.237124+00 f t ADELANTO 28500.00 4 9961 \N +398701 2025-10-20 13:33:45.434682+00 2025-10-20 13:33:45.434692+00 f t SUBTOTAL 0.00 1 10095 \N +398702 2025-10-20 13:33:45.43623+00 2025-10-20 13:33:45.436236+00 f t DESCUENTO 0.00 2 10095 \N +398703 2025-10-20 13:33:45.437296+00 2025-10-20 13:33:45.437301+00 f t TOTAL 0.00 3 10095 \N +398704 2025-10-20 13:33:45.438462+00 2025-10-20 13:33:45.438471+00 f t ADELANTO 0.00 4 10095 \N +398833 2025-10-20 13:43:14.388365+00 2025-10-20 13:43:14.388374+00 f t SUBTOTAL 187000.00 1 10094 \N +398834 2025-10-20 13:43:14.390716+00 2025-10-20 13:43:14.390725+00 f t DESCUENTO 0.00 2 10094 \N +398835 2025-10-20 13:43:14.398208+00 2025-10-20 13:43:14.398217+00 f t TOTAL 187000.00 3 10094 \N +398836 2025-10-20 13:43:14.400039+00 2025-10-20 13:43:14.400047+00 f t ADELANTO 37000.00 4 10094 \N +399237 2025-10-20 15:45:12.543415+00 2025-10-20 15:45:12.543427+00 f t SUBTOTAL 0.00 1 10114 \N +399238 2025-10-20 15:45:12.546018+00 2025-10-20 15:45:12.546026+00 f t DESCUENTO 0.00 2 10114 \N +399239 2025-10-20 15:45:12.547728+00 2025-10-20 15:45:12.547738+00 f t TOTAL 0.00 3 10114 \N +399240 2025-10-20 15:45:12.54922+00 2025-10-20 15:45:12.549228+00 f t ADELANTO 0.00 4 10114 \N +393529 2025-10-18 04:02:02.773033+00 2025-10-18 04:02:02.773045+00 f t SUBTOTAL 55000.00 1 9962 \N +393530 2025-10-18 04:02:02.774681+00 2025-10-18 04:02:02.774687+00 f t DESCUENTO 0.00 2 9962 \N +393531 2025-10-18 04:02:02.776008+00 2025-10-18 04:02:02.776014+00 f t TOTAL 55000.00 3 9962 \N +393532 2025-10-18 04:02:02.777032+00 2025-10-18 04:02:02.777037+00 f t ADELANTO 11000.00 4 9962 \N +408082 2025-10-22 23:36:11.358627+00 2025-10-22 23:36:11.358636+00 f t SUBTOTAL 0.00 1 10321 \N +408083 2025-10-22 23:36:11.360705+00 2025-10-22 23:36:11.360713+00 f t COSTO_SERVICIO 0.00 2 10321 \N +408084 2025-10-22 23:36:11.361983+00 2025-10-22 23:36:11.361989+00 f t DESCUENTO 0.00 3 10321 \N +408085 2025-10-22 23:36:11.363067+00 2025-10-22 23:36:11.363073+00 f t TOTAL 0.00 4 10321 \N +408086 2025-10-22 23:36:11.364153+00 2025-10-22 23:36:11.36416+00 f t ADELANTO 0.00 5 10321 \N +393573 2025-10-18 06:27:52.908847+00 2025-10-18 06:27:52.908855+00 f t SUBTOTAL 70000.00 1 9963 \N +393574 2025-10-18 06:27:52.910512+00 2025-10-18 06:27:52.91052+00 f t DESCUENTO 0.00 2 9963 \N +393575 2025-10-18 06:27:52.912205+00 2025-10-18 06:27:52.912216+00 f t TOTAL 70000.00 3 9963 \N +393576 2025-10-18 06:27:52.913935+00 2025-10-18 06:27:52.913949+00 f t ADELANTO 19000.00 4 9963 \N +400609 2025-10-21 00:00:07.214174+00 2025-10-21 00:00:07.214188+00 f t SUBTOTAL 55000.00 1 10155 \N +400610 2025-10-21 00:00:07.219025+00 2025-10-21 00:00:07.21904+00 f t DESCUENTO 0.00 2 10155 \N +400611 2025-10-21 00:00:07.222828+00 2025-10-21 00:00:07.222845+00 f t TOTAL 55000.00 3 10155 \N +400612 2025-10-21 00:00:07.227323+00 2025-10-21 00:00:07.227337+00 f t ADELANTO 11000.00 4 10155 \N +401197 2025-10-21 10:43:05.793942+00 2025-10-21 10:43:05.793951+00 f t SUBTOTAL 0.00 1 10170 \N +401198 2025-10-21 10:43:05.795325+00 2025-10-21 10:43:05.795333+00 f t DESCUENTO 0.00 2 10170 \N +401199 2025-10-21 10:43:05.796518+00 2025-10-21 10:43:05.796524+00 f t TOTAL 0.00 3 10170 \N +401200 2025-10-21 10:43:05.797384+00 2025-10-21 10:43:05.797389+00 f t ADELANTO 0.00 4 10170 \N +401767 2025-10-21 13:12:32.617556+00 2025-10-21 13:12:32.617564+00 f t SUBTOTAL 78000.00 1 10181 \N +401768 2025-10-21 13:12:32.619581+00 2025-10-21 13:12:32.61959+00 f t COSTO_SERVICIO 0.00 2 10181 \N +401769 2025-10-21 13:12:32.620928+00 2025-10-21 13:12:32.620934+00 f t DESCUENTO 0.00 3 10181 \N +401770 2025-10-21 13:12:32.62238+00 2025-10-21 13:12:32.622387+00 f t TOTAL 78000.00 4 10181 \N +401771 2025-10-21 13:12:32.623656+00 2025-10-21 13:12:32.623662+00 f t ADELANTO 13000.00 5 10181 \N +401882 2025-10-21 13:18:51.42437+00 2025-10-21 13:18:51.42438+00 f t SUBTOTAL 0.00 1 10183 \N +401883 2025-10-21 13:18:51.426709+00 2025-10-21 13:18:51.426716+00 f t COSTO_SERVICIO 0.00 2 10183 \N +401884 2025-10-21 13:18:51.428082+00 2025-10-21 13:18:51.428091+00 f t DESCUENTO 0.00 3 10183 \N +401885 2025-10-21 13:18:51.429294+00 2025-10-21 13:18:51.429301+00 f t TOTAL 0.00 4 10183 \N +401886 2025-10-21 13:18:51.430381+00 2025-10-21 13:18:51.430386+00 f t ADELANTO 0.00 5 10183 \N +402017 2025-10-21 14:30:40.621913+00 2025-10-21 14:30:40.621927+00 f t SUBTOTAL 23000.00 1 10188 \N +402018 2025-10-21 14:30:40.624453+00 2025-10-21 14:30:40.624465+00 f t COSTO_SERVICIO 0.00 2 10188 \N +402019 2025-10-21 14:30:40.626192+00 2025-10-21 14:30:40.626203+00 f t DESCUENTO 0.00 3 10188 \N +402020 2025-10-21 14:30:40.627714+00 2025-10-21 14:30:40.627723+00 f t TOTAL 23000.00 4 10188 \N +402021 2025-10-21 14:30:40.629351+00 2025-10-21 14:30:40.62936+00 f t ADELANTO 5500.00 5 10188 \N +393705 2025-10-18 06:34:13.685868+00 2025-10-18 06:34:13.685877+00 f t SUBTOTAL 100900.00 1 9964 \N +393706 2025-10-18 06:34:13.687479+00 2025-10-18 06:34:13.687486+00 f t DESCUENTO 0.00 2 9964 \N +393707 2025-10-18 06:34:13.688573+00 2025-10-18 06:34:13.688579+00 f t TOTAL 100900.00 3 9964 \N +393708 2025-10-18 06:34:13.689463+00 2025-10-18 06:34:13.689468+00 f t ADELANTO 60400.00 4 9964 \N +403232 2025-10-21 19:06:20.812505+00 2025-10-21 19:06:20.812512+00 f t SUBTOTAL 55000.00 1 10217 \N +403233 2025-10-21 19:06:20.814412+00 2025-10-21 19:06:20.814419+00 f t COSTO_SERVICIO 0.00 2 10217 \N +403234 2025-10-21 19:06:20.815932+00 2025-10-21 19:06:20.815939+00 f t DESCUENTO 0.00 3 10217 \N +403235 2025-10-21 19:06:20.817139+00 2025-10-21 19:06:20.817146+00 f t TOTAL 55000.00 4 10217 \N +403236 2025-10-21 19:06:20.818265+00 2025-10-21 19:06:20.81827+00 f t ADELANTO 11000.00 5 10217 \N +393745 2025-10-18 10:06:41.335217+00 2025-10-18 10:06:41.33523+00 f t SUBTOTAL 55000.00 1 9965 \N +393746 2025-10-18 10:06:41.337394+00 2025-10-18 10:06:41.337405+00 f t DESCUENTO 0.00 2 9965 \N +393747 2025-10-18 10:06:41.339033+00 2025-10-18 10:06:41.339042+00 f t TOTAL 55000.00 3 9965 \N +393748 2025-10-18 10:06:41.340475+00 2025-10-18 10:06:41.340484+00 f t ADELANTO 11000.00 4 9965 \N +466585 2025-11-07 22:16:20.54936+00 2025-11-07 22:16:20.549367+00 f t TOTAL 0.00 4 11698 \N +466586 2025-11-07 22:16:20.550737+00 2025-11-07 22:16:20.550743+00 f t ADELANTO 0.00 5 11698 \N +466876 2025-11-07 22:56:01.820556+00 2025-11-07 22:56:01.820564+00 f t ADELANTO 0.00 5 11707 \N +523532 2025-11-20 20:43:19.262611+00 2025-11-20 20:43:19.262622+00 f t SUBTOTAL 78000.00 1 13021 \N +523533 2025-11-20 20:43:19.264363+00 2025-11-20 20:43:19.264372+00 f t COSTO_SERVICIO 0.00 2 13021 \N +407387 2025-10-22 19:08:46.241749+00 2025-10-22 19:08:46.24176+00 f t SUBTOTAL 54000.00 1 10308 \N +407388 2025-10-22 19:08:46.244223+00 2025-10-22 19:08:46.244231+00 f t COSTO_SERVICIO 0.00 2 10308 \N +407389 2025-10-22 19:08:46.245439+00 2025-10-22 19:08:46.245445+00 f t DESCUENTO 0.00 3 10308 \N +407390 2025-10-22 19:08:46.246645+00 2025-10-22 19:08:46.246651+00 f t TOTAL 54000.00 4 10308 \N +407391 2025-10-22 19:08:46.247885+00 2025-10-22 19:08:46.247891+00 f t ADELANTO 13500.00 5 10308 \N +407557 2025-10-22 19:58:17.280797+00 2025-10-22 19:58:17.280805+00 f t SUBTOTAL 32500.00 1 10313 \N +407558 2025-10-22 19:58:17.282478+00 2025-10-22 19:58:17.282485+00 f t COSTO_SERVICIO 0.00 2 10313 \N +398437 2025-10-20 13:23:19.45579+00 2025-10-20 13:23:19.455798+00 f t SUBTOTAL 0.00 1 10090 \N +398438 2025-10-20 13:23:19.457307+00 2025-10-20 13:23:19.457313+00 f t DESCUENTO 0.00 2 10090 \N +398439 2025-10-20 13:23:19.458328+00 2025-10-20 13:23:19.458333+00 f t TOTAL 0.00 3 10090 \N +398440 2025-10-20 13:23:19.459274+00 2025-10-20 13:23:19.459279+00 f t ADELANTO 0.00 4 10090 \N +398573 2025-10-20 13:27:19.250936+00 2025-10-20 13:27:19.250949+00 f t SUBTOTAL 92000.00 1 10089 \N +398574 2025-10-20 13:27:19.253054+00 2025-10-20 13:27:19.253064+00 f t DESCUENTO 0.00 2 10089 \N +398575 2025-10-20 13:27:19.254407+00 2025-10-20 13:27:19.254416+00 f t TOTAL 92000.00 3 10089 \N +398576 2025-10-20 13:27:19.255665+00 2025-10-20 13:27:19.255672+00 f t ADELANTO 22000.00 4 10089 \N +407559 2025-10-22 19:58:17.284006+00 2025-10-22 19:58:17.284013+00 f t DESCUENTO 0.00 3 10313 \N +407560 2025-10-22 19:58:17.285401+00 2025-10-22 19:58:17.285412+00 f t TOTAL 32500.00 4 10313 \N +407561 2025-10-22 19:58:17.28682+00 2025-10-22 19:58:17.286827+00 f t ADELANTO 32500.00 5 10313 \N +398841 2025-10-20 13:44:48.851897+00 2025-10-20 13:44:48.851912+00 f t SUBTOTAL 0.00 1 10098 \N +398842 2025-10-20 13:44:48.854226+00 2025-10-20 13:44:48.854241+00 f t DESCUENTO 0.00 2 10098 \N +398843 2025-10-20 13:44:48.85623+00 2025-10-20 13:44:48.856238+00 f t TOTAL 0.00 3 10098 \N +398844 2025-10-20 13:44:48.857746+00 2025-10-20 13:44:48.857753+00 f t ADELANTO 0.00 4 10098 \N +400313 2025-10-20 21:52:12.680456+00 2025-10-20 21:52:12.680467+00 f t SUBTOTAL 54000.00 1 10146 \N +400314 2025-10-20 21:52:12.682707+00 2025-10-20 21:52:12.68272+00 f t DESCUENTO 0.00 2 10146 \N +400315 2025-10-20 21:52:12.684513+00 2025-10-20 21:52:12.684523+00 f t TOTAL 54000.00 3 10146 \N +400316 2025-10-20 21:52:12.686044+00 2025-10-20 21:52:12.686054+00 f t ADELANTO 13500.00 4 10146 \N +409622 2025-10-23 15:17:59.660285+00 2025-10-23 15:17:59.660298+00 f t SUBTOTAL 13200.00 1 10356 \N +409623 2025-10-23 15:17:59.662482+00 2025-10-23 15:17:59.662493+00 f t COSTO_SERVICIO 0.00 2 10356 \N +409624 2025-10-23 15:17:59.66434+00 2025-10-23 15:17:59.66435+00 f t DESCUENTO 0.00 3 10356 \N +409625 2025-10-23 15:17:59.666209+00 2025-10-23 15:17:59.666218+00 f t TOTAL 13200.00 4 10356 \N +409626 2025-10-23 15:17:59.667905+00 2025-10-23 15:17:59.667915+00 f t ADELANTO 13200.00 5 10356 \N +400905 2025-10-21 01:31:18.825475+00 2025-10-21 01:31:18.825487+00 f t SUBTOTAL 46000.00 1 10162 \N +400906 2025-10-21 01:31:18.827416+00 2025-10-21 01:31:18.827422+00 f t DESCUENTO 0.00 2 10162 \N +400907 2025-10-21 01:31:18.828717+00 2025-10-21 01:31:18.828723+00 f t TOTAL 46000.00 3 10162 \N +400908 2025-10-21 01:31:18.830005+00 2025-10-21 01:31:18.830014+00 f t ADELANTO 11000.00 4 10162 \N +401005 2025-10-21 02:24:13.862336+00 2025-10-21 02:24:13.862349+00 f t SUBTOTAL 70000.00 1 10165 \N +401006 2025-10-21 02:24:13.86478+00 2025-10-21 02:24:13.864791+00 f t DESCUENTO 0.00 2 10165 \N +401007 2025-10-21 02:24:13.866567+00 2025-10-21 02:24:13.866577+00 f t TOTAL 70000.00 3 10165 \N +401008 2025-10-21 02:24:13.868433+00 2025-10-21 02:24:13.868444+00 f t ADELANTO 19000.00 4 10165 \N +401301 2025-10-21 11:34:02.382148+00 2025-10-21 11:34:02.382156+00 f t SUBTOTAL 82000.00 1 10173 \N +401302 2025-10-21 11:34:02.384132+00 2025-10-21 11:34:02.384141+00 f t DESCUENTO 0.00 2 10173 \N +401303 2025-10-21 11:34:02.385465+00 2025-10-21 11:34:02.385472+00 f t TOTAL 82000.00 3 10173 \N +401304 2025-10-21 11:34:02.386925+00 2025-10-21 11:34:02.386932+00 f t ADELANTO 12000.00 4 10173 \N +410417 2025-10-23 18:14:37.849998+00 2025-10-23 18:14:37.850008+00 f t SUBTOTAL 0.00 1 10368 \N +401892 2025-10-21 13:21:25.580223+00 2025-10-21 13:21:25.580235+00 f t SUBTOTAL 0.00 1 10184 \N +401893 2025-10-21 13:21:25.5817+00 2025-10-21 13:21:25.581709+00 f t COSTO_SERVICIO 0.00 2 10184 \N +401894 2025-10-21 13:21:25.582945+00 2025-10-21 13:21:25.582951+00 f t DESCUENTO 0.00 3 10184 \N +401895 2025-10-21 13:21:25.583934+00 2025-10-21 13:21:25.583939+00 f t TOTAL 0.00 4 10184 \N +401896 2025-10-21 13:21:25.584946+00 2025-10-21 13:21:25.584954+00 f t ADELANTO 0.00 5 10184 \N +393965 2025-10-18 10:59:57.346374+00 2025-10-18 10:59:57.346386+00 f t SUBTOTAL 107000.00 1 9967 \N +393966 2025-10-18 10:59:57.348148+00 2025-10-18 10:59:57.348157+00 f t DESCUENTO 0.00 2 9967 \N +393967 2025-10-18 10:59:57.349406+00 2025-10-18 10:59:57.349414+00 f t TOTAL 107000.00 3 9967 \N +393968 2025-10-18 10:59:57.350587+00 2025-10-18 10:59:57.350595+00 f t ADELANTO 12000.00 4 9967 \N +393985 2025-10-18 11:33:50.95177+00 2025-10-18 11:33:50.951781+00 f t SUBTOTAL 0.00 1 9968 \N +393986 2025-10-18 11:33:50.955414+00 2025-10-18 11:33:50.955423+00 f t DESCUENTO 0.00 2 9968 \N +393987 2025-10-18 11:33:50.956819+00 2025-10-18 11:33:50.956828+00 f t TOTAL 0.00 3 9968 \N +393988 2025-10-18 11:33:50.958075+00 2025-10-18 11:33:50.958081+00 f t ADELANTO 0.00 4 9968 \N +402732 2025-10-21 16:46:19.458864+00 2025-10-21 16:46:19.458879+00 f t SUBTOTAL 100900.00 1 10204 \N +402733 2025-10-21 16:46:19.461135+00 2025-10-21 16:46:19.461144+00 f t COSTO_SERVICIO 0.00 2 10204 \N +402734 2025-10-21 16:46:19.462667+00 2025-10-21 16:46:19.462677+00 f t DESCUENTO 0.00 3 10204 \N +402735 2025-10-21 16:46:19.464516+00 2025-10-21 16:46:19.464525+00 f t TOTAL 100900.00 4 10204 \N +402736 2025-10-21 16:46:19.466059+00 2025-10-21 16:46:19.466067+00 f t ADELANTO 60400.00 5 10204 \N +402837 2025-10-21 17:15:28.288525+00 2025-10-21 17:15:28.288534+00 f t SUBTOTAL 0.00 1 10206 \N +402838 2025-10-21 17:15:28.290581+00 2025-10-21 17:15:28.290593+00 f t COSTO_SERVICIO 0.00 2 10206 \N +402839 2025-10-21 17:15:28.292484+00 2025-10-21 17:15:28.292494+00 f t DESCUENTO 0.00 3 10206 \N +402840 2025-10-21 17:15:28.293869+00 2025-10-21 17:15:28.293875+00 f t TOTAL 0.00 4 10206 \N +402841 2025-10-21 17:15:28.294991+00 2025-10-21 17:15:28.294998+00 f t ADELANTO 0.00 5 10206 \N +394013 2025-10-18 11:52:25.353825+00 2025-10-18 11:52:25.353834+00 f t SUBTOTAL 54000.00 1 9969 \N +394014 2025-10-18 11:52:25.355361+00 2025-10-18 11:52:25.35537+00 f t DESCUENTO 0.00 2 9969 \N +394015 2025-10-18 11:52:25.356673+00 2025-10-18 11:52:25.35668+00 f t TOTAL 54000.00 3 9969 \N +394016 2025-10-18 11:52:25.357727+00 2025-10-18 11:52:25.357733+00 f t ADELANTO 13500.00 4 9969 \N +403077 2025-10-21 18:35:16.60802+00 2025-10-21 18:35:16.608029+00 f t SUBTOTAL 78000.00 1 10213 \N +403078 2025-10-21 18:35:16.61008+00 2025-10-21 18:35:16.610088+00 f t COSTO_SERVICIO 0.00 2 10213 \N +403079 2025-10-21 18:35:16.611432+00 2025-10-21 18:35:16.611439+00 f t DESCUENTO 0.00 3 10213 \N +403080 2025-10-21 18:35:16.612544+00 2025-10-21 18:35:16.612551+00 f t TOTAL 78000.00 4 10213 \N +403081 2025-10-21 18:35:16.613857+00 2025-10-21 18:35:16.613864+00 f t ADELANTO 21500.00 5 10213 \N +398285 2025-10-20 12:18:45.888686+00 2025-10-20 12:18:45.888699+00 f t SUBTOTAL 82000.00 1 10082 \N +398286 2025-10-20 12:18:45.890508+00 2025-10-20 12:18:45.890517+00 f t DESCUENTO 0.00 2 10082 \N +398287 2025-10-20 12:18:45.891803+00 2025-10-20 12:18:45.891809+00 f t TOTAL 82000.00 3 10082 \N +398288 2025-10-20 12:18:45.892763+00 2025-10-20 12:18:45.892768+00 f t ADELANTO 12000.00 4 10082 \N +399249 2025-10-20 15:47:11.404552+00 2025-10-20 15:47:11.40456+00 f t SUBTOTAL 13200.00 1 10115 \N +399250 2025-10-20 15:47:11.406242+00 2025-10-20 15:47:11.406249+00 f t DESCUENTO 0.00 2 10115 \N +399251 2025-10-20 15:47:11.407344+00 2025-10-20 15:47:11.407351+00 f t TOTAL 13200.00 3 10115 \N +399252 2025-10-20 15:47:11.408485+00 2025-10-20 15:47:11.40849+00 f t ADELANTO 13200.00 4 10115 \N +407937 2025-10-22 22:25:20.619912+00 2025-10-22 22:25:20.619921+00 f t SUBTOTAL 0.00 1 10322 \N +407938 2025-10-22 22:25:20.62167+00 2025-10-22 22:25:20.621682+00 f t COSTO_SERVICIO 0.00 2 10322 \N +407939 2025-10-22 22:25:20.623207+00 2025-10-22 22:25:20.623218+00 f t DESCUENTO 0.00 3 10322 \N +407940 2025-10-22 22:25:20.62457+00 2025-10-22 22:25:20.624577+00 f t TOTAL 0.00 4 10322 \N +407941 2025-10-22 22:25:20.625647+00 2025-10-22 22:25:20.625653+00 f t ADELANTO 0.00 5 10322 \N +394113 2025-10-18 12:20:38.512396+00 2025-10-18 12:20:38.512405+00 f t SUBTOTAL 55000.00 1 9970 \N +394114 2025-10-18 12:20:38.514211+00 2025-10-18 12:20:38.514221+00 f t DESCUENTO 0.00 2 9970 \N +394115 2025-10-18 12:20:38.515593+00 2025-10-18 12:20:38.515599+00 f t TOTAL 55000.00 3 9970 \N +394116 2025-10-18 12:20:38.516627+00 2025-10-18 12:20:38.516632+00 f t ADELANTO 11000.00 4 9970 \N +409117 2025-10-23 11:24:13.873844+00 2025-10-23 11:24:13.873856+00 f t SUBTOTAL 46000.00 1 10342 \N +409118 2025-10-23 11:24:13.875786+00 2025-10-23 11:24:13.875797+00 f t COSTO_SERVICIO 0.00 2 10342 \N +409119 2025-10-23 11:24:13.877035+00 2025-10-23 11:24:13.877045+00 f t DESCUENTO 0.00 3 10342 \N +409120 2025-10-23 11:24:13.87824+00 2025-10-23 11:24:13.878247+00 f t TOTAL 46000.00 4 10342 \N +409121 2025-10-23 11:24:13.879364+00 2025-10-23 11:24:13.87937+00 f t ADELANTO 11000.00 5 10342 \N +409512 2025-10-23 14:48:44.85678+00 2025-10-23 14:48:44.856788+00 f t SUBTOTAL 23000.00 1 10353 \N +409513 2025-10-23 14:48:44.858784+00 2025-10-23 14:48:44.858794+00 f t COSTO_SERVICIO 0.00 2 10353 \N +409514 2025-10-23 14:48:44.860212+00 2025-10-23 14:48:44.860223+00 f t DESCUENTO 0.00 3 10353 \N +409515 2025-10-23 14:48:44.861603+00 2025-10-23 14:48:44.861609+00 f t TOTAL 23000.00 4 10353 \N +409516 2025-10-23 14:48:44.862668+00 2025-10-23 14:48:44.862674+00 f t ADELANTO 5500.00 5 10353 \N +409737 2025-10-23 16:01:15.642599+00 2025-10-23 16:01:15.642605+00 f t SUBTOTAL 46000.00 1 10358 \N +409738 2025-10-23 16:01:15.644502+00 2025-10-23 16:01:15.644509+00 f t COSTO_SERVICIO 0.00 2 10358 \N +409739 2025-10-23 16:01:15.645584+00 2025-10-23 16:01:15.645589+00 f t DESCUENTO 0.00 3 10358 \N +409740 2025-10-23 16:01:15.64655+00 2025-10-23 16:01:15.646556+00 f t TOTAL 46000.00 4 10358 \N +409741 2025-10-23 16:01:15.64748+00 2025-10-23 16:01:15.647485+00 f t ADELANTO 11000.00 5 10358 \N +394177 2025-10-18 12:40:25.550352+00 2025-10-18 12:40:25.55036+00 f t SUBTOTAL 78000.00 1 9971 \N +394178 2025-10-18 12:40:25.552265+00 2025-10-18 12:40:25.552276+00 f t DESCUENTO 0.00 2 9971 \N +394179 2025-10-18 12:40:25.55418+00 2025-10-18 12:40:25.55419+00 f t TOTAL 78000.00 3 9971 \N +394180 2025-10-18 12:40:25.556352+00 2025-10-18 12:40:25.556358+00 f t ADELANTO 21500.00 4 9971 \N +394185 2025-10-18 12:42:03.540039+00 2025-10-18 12:42:03.540048+00 f t SUBTOTAL 46000.00 1 9966 \N +394186 2025-10-18 12:42:03.541558+00 2025-10-18 12:42:03.541565+00 f t DESCUENTO 0.00 2 9966 \N +394187 2025-10-18 12:42:03.542573+00 2025-10-18 12:42:03.542578+00 f t TOTAL 46000.00 3 9966 \N +394188 2025-10-18 12:42:03.543536+00 2025-10-18 12:42:03.543541+00 f t ADELANTO 11000.00 4 9966 \N +394197 2025-10-18 13:13:27.941987+00 2025-10-18 13:13:27.941999+00 f t SUBTOTAL 55000.00 1 9972 \N +394198 2025-10-18 13:13:27.943914+00 2025-10-18 13:13:27.943926+00 f t DESCUENTO 0.00 2 9972 \N +394199 2025-10-18 13:13:27.945306+00 2025-10-18 13:13:27.945315+00 f t TOTAL 55000.00 3 9972 \N +394200 2025-10-18 13:13:27.946675+00 2025-10-18 13:13:27.946683+00 f t ADELANTO 11000.00 4 9972 \N +394205 2025-10-18 14:01:58.527288+00 2025-10-18 14:01:58.527297+00 f t SUBTOTAL 0.00 1 9973 \N +394206 2025-10-18 14:01:58.529189+00 2025-10-18 14:01:58.529197+00 f t DESCUENTO 0.00 2 9973 \N +394207 2025-10-18 14:01:58.530656+00 2025-10-18 14:01:58.530666+00 f t TOTAL 0.00 3 9973 \N +394208 2025-10-18 14:01:58.532014+00 2025-10-18 14:01:58.532024+00 f t ADELANTO 0.00 4 9973 \N +394213 2025-10-18 14:32:44.80866+00 2025-10-18 14:32:44.808669+00 f t SUBTOTAL 0.00 1 9974 \N +394214 2025-10-18 14:32:44.810981+00 2025-10-18 14:32:44.810989+00 f t DESCUENTO 0.00 2 9974 \N +394215 2025-10-18 14:32:44.812463+00 2025-10-18 14:32:44.812472+00 f t TOTAL 0.00 3 9974 \N +394216 2025-10-18 14:32:44.814557+00 2025-10-18 14:32:44.814565+00 f t ADELANTO 0.00 4 9974 \N +410418 2025-10-23 18:14:37.851504+00 2025-10-23 18:14:37.85151+00 f t COSTO_SERVICIO 0.00 2 10368 \N +410419 2025-10-23 18:14:37.852937+00 2025-10-23 18:14:37.852942+00 f t DESCUENTO 0.00 3 10368 \N +410420 2025-10-23 18:14:37.853974+00 2025-10-23 18:14:37.853987+00 f t TOTAL 0.00 4 10368 \N +410421 2025-10-23 18:14:37.855079+00 2025-10-23 18:14:37.855086+00 f t ADELANTO 0.00 5 10368 \N +410527 2025-10-23 19:08:18.760576+00 2025-10-23 19:08:18.760584+00 f t SUBTOTAL 107000.00 1 10371 \N +402282 2025-10-21 15:34:49.255958+00 2025-10-21 15:34:49.255966+00 f t SUBTOTAL 13200.00 1 10196 \N +402283 2025-10-21 15:34:49.258016+00 2025-10-21 15:34:49.258024+00 f t COSTO_SERVICIO 0.00 2 10196 \N +402284 2025-10-21 15:34:49.259277+00 2025-10-21 15:34:49.259284+00 f t DESCUENTO 0.00 3 10196 \N +402285 2025-10-21 15:34:49.26052+00 2025-10-21 15:34:49.260527+00 f t TOTAL 13200.00 4 10196 \N +402286 2025-10-21 15:34:49.261625+00 2025-10-21 15:34:49.261629+00 f t ADELANTO 13200.00 5 10196 \N +402737 2025-10-21 16:58:08.042065+00 2025-10-21 16:58:08.042073+00 f t SUBTOTAL 46000.00 1 10200 \N +402738 2025-10-21 16:58:08.04392+00 2025-10-21 16:58:08.043928+00 f t COSTO_SERVICIO 0.00 2 10200 \N +402739 2025-10-21 16:58:08.045302+00 2025-10-21 16:58:08.045309+00 f t DESCUENTO 0.00 3 10200 \N +402740 2025-10-21 16:58:08.046372+00 2025-10-21 16:58:08.046377+00 f t TOTAL 46000.00 4 10200 \N +402741 2025-10-21 16:58:08.047733+00 2025-10-21 16:58:08.04774+00 f t ADELANTO 11000.00 5 10200 \N +402847 2025-10-21 17:20:13.795055+00 2025-10-21 17:20:13.795068+00 f t SUBTOTAL 0.00 1 10178 \N +402848 2025-10-21 17:20:13.797333+00 2025-10-21 17:20:13.797343+00 f t COSTO_SERVICIO 0.00 2 10178 \N +402849 2025-10-21 17:20:13.798678+00 2025-10-21 17:20:13.798685+00 f t DESCUENTO 0.00 3 10178 \N +402850 2025-10-21 17:20:13.799843+00 2025-10-21 17:20:13.799849+00 f t TOTAL 0.00 4 10178 \N +402851 2025-10-21 17:20:13.800958+00 2025-10-21 17:20:13.800965+00 f t ADELANTO 0.00 5 10178 \N +394301 2025-10-18 14:47:04.711267+00 2025-10-18 14:47:04.711279+00 f t SUBTOTAL 55000.00 1 9975 \N +394302 2025-10-18 14:47:04.713169+00 2025-10-18 14:47:04.713178+00 f t DESCUENTO 0.00 2 9975 \N +394303 2025-10-18 14:47:04.714574+00 2025-10-18 14:47:04.714582+00 f t TOTAL 55000.00 3 9975 \N +394304 2025-10-18 14:47:04.715759+00 2025-10-18 14:47:04.715766+00 f t ADELANTO 11000.00 4 9975 \N +394329 2025-10-18 14:59:48.550754+00 2025-10-18 14:59:48.550766+00 f t SUBTOTAL 54000.00 1 9976 \N +394330 2025-10-18 14:59:48.552931+00 2025-10-18 14:59:48.552939+00 f t DESCUENTO 0.00 2 9976 \N +394331 2025-10-18 14:59:48.554145+00 2025-10-18 14:59:48.554152+00 f t TOTAL 54000.00 3 9976 \N +394332 2025-10-18 14:59:48.555149+00 2025-10-18 14:59:48.555154+00 f t ADELANTO 13500.00 4 9976 \N +417097 2025-10-26 13:16:27.502782+00 2025-10-26 13:16:27.502791+00 f t SUBTOTAL 0.00 1 10537 \N +417098 2025-10-26 13:16:27.505261+00 2025-10-26 13:16:27.505269+00 f t COSTO_SERVICIO 0.00 2 10537 \N +417099 2025-10-26 13:16:27.506435+00 2025-10-26 13:16:27.506441+00 f t DESCUENTO 0.00 3 10537 \N +417100 2025-10-26 13:16:27.507384+00 2025-10-26 13:16:27.507389+00 f t TOTAL 0.00 4 10537 \N +417101 2025-10-26 13:16:27.508309+00 2025-10-26 13:16:27.508314+00 f t ADELANTO 0.00 5 10537 \N +407567 2025-10-22 20:02:22.619225+00 2025-10-22 20:02:22.619233+00 f t SUBTOTAL 224800.00 1 10305 \N +407568 2025-10-22 20:02:22.621067+00 2025-10-22 20:02:22.621073+00 f t COSTO_SERVICIO 0.00 2 10305 \N +407569 2025-10-22 20:02:22.622976+00 2025-10-22 20:02:22.622984+00 f t DESCUENTO 0.00 3 10305 \N +407570 2025-10-22 20:02:22.624458+00 2025-10-22 20:02:22.624464+00 f t TOTAL 224800.00 4 10305 \N +407571 2025-10-22 20:02:22.625723+00 2025-10-22 20:02:22.625729+00 f t ADELANTO 126300.00 5 10305 \N +394377 2025-10-18 15:36:46.983653+00 2025-10-18 15:36:46.983665+00 f t SUBTOTAL 55000.00 1 9977 \N +394378 2025-10-18 15:36:46.985443+00 2025-10-18 15:36:46.985454+00 f t DESCUENTO 0.00 2 9977 \N +394379 2025-10-18 15:36:46.986752+00 2025-10-18 15:36:46.986761+00 f t TOTAL 55000.00 3 9977 \N +394380 2025-10-18 15:36:46.988041+00 2025-10-18 15:36:46.988049+00 f t ADELANTO 11000.00 4 9977 \N +398849 2025-10-20 13:50:29.330726+00 2025-10-20 13:50:29.33074+00 f t SUBTOTAL 55000.00 1 10091 \N +398850 2025-10-20 13:50:29.332605+00 2025-10-20 13:50:29.332612+00 f t DESCUENTO 0.00 2 10091 \N +398851 2025-10-20 13:50:29.333956+00 2025-10-20 13:50:29.333962+00 f t TOTAL 55000.00 3 10091 \N +398852 2025-10-20 13:50:29.335234+00 2025-10-20 13:50:29.335239+00 f t ADELANTO 11000.00 4 10091 \N +399113 2025-10-20 14:48:05.805398+00 2025-10-20 14:48:05.805408+00 f t SUBTOTAL 153900.00 1 10106 \N +399114 2025-10-20 14:48:05.807969+00 2025-10-20 14:48:05.807978+00 f t DESCUENTO 0.00 2 10106 \N +399115 2025-10-20 14:48:05.809766+00 2025-10-20 14:48:05.809778+00 f t TOTAL 153900.00 3 10106 \N +399116 2025-10-20 14:48:05.814292+00 2025-10-20 14:48:05.814304+00 f t ADELANTO 113400.00 4 10106 \N +408102 2025-10-23 00:05:49.103564+00 2025-10-23 00:05:49.103573+00 f t SUBTOTAL 46000.00 1 10325 \N +408103 2025-10-23 00:05:49.105427+00 2025-10-23 00:05:49.105434+00 f t COSTO_SERVICIO 0.00 2 10325 \N +408104 2025-10-23 00:05:49.106776+00 2025-10-23 00:05:49.106782+00 f t DESCUENTO 0.00 3 10325 \N +408105 2025-10-23 00:05:49.108163+00 2025-10-23 00:05:49.108168+00 f t TOTAL 46000.00 4 10325 \N +408106 2025-10-23 00:05:49.109517+00 2025-10-23 00:05:49.109525+00 f t ADELANTO 11000.00 5 10325 \N +399693 2025-10-20 18:04:09.030843+00 2025-10-20 18:04:09.030851+00 f t SUBTOTAL 30000.00 1 10125 \N +399694 2025-10-20 18:04:09.032688+00 2025-10-20 18:04:09.032695+00 f t DESCUENTO 0.00 2 10125 \N +399695 2025-10-20 18:04:09.034017+00 2025-10-20 18:04:09.034023+00 f t TOTAL 30000.00 3 10125 \N +399696 2025-10-20 18:04:09.035168+00 2025-10-20 18:04:09.035175+00 f t ADELANTO 30000.00 4 10125 \N +394429 2025-10-18 16:03:44.550735+00 2025-10-18 16:03:44.550744+00 f t SUBTOTAL 102000.00 1 9978 \N +394430 2025-10-18 16:03:44.552861+00 2025-10-18 16:03:44.552872+00 f t DESCUENTO 0.00 2 9978 \N +394431 2025-10-18 16:03:44.554572+00 2025-10-18 16:03:44.554582+00 f t TOTAL 102000.00 3 9978 \N +394432 2025-10-18 16:03:44.556069+00 2025-10-18 16:03:44.556078+00 f t ADELANTO 29500.00 4 9978 \N +408842 2025-10-23 03:32:57.30621+00 2025-10-23 03:32:57.306219+00 f t SUBTOTAL 55000.00 1 10338 \N +408843 2025-10-23 03:32:57.308003+00 2025-10-23 03:32:57.308011+00 f t COSTO_SERVICIO 0.00 2 10338 \N +408844 2025-10-23 03:32:57.309235+00 2025-10-23 03:32:57.309241+00 f t DESCUENTO 0.00 3 10338 \N +408845 2025-10-23 03:32:57.310271+00 2025-10-23 03:32:57.310277+00 f t TOTAL 55000.00 4 10338 \N +408846 2025-10-23 03:32:57.311296+00 2025-10-23 03:32:57.311301+00 f t ADELANTO 11000.00 5 10338 \N +394445 2025-10-18 16:06:54.923627+00 2025-10-18 16:06:54.923636+00 f t SUBTOTAL 0.00 1 9980 \N +394446 2025-10-18 16:06:54.92869+00 2025-10-18 16:06:54.928701+00 f t DESCUENTO 0.00 2 9980 \N +394447 2025-10-18 16:06:54.930742+00 2025-10-18 16:06:54.930755+00 f t TOTAL 0.00 3 9980 \N +394448 2025-10-18 16:06:54.93252+00 2025-10-18 16:06:54.932534+00 f t ADELANTO 0.00 4 9980 \N +394477 2025-10-18 16:07:37.986416+00 2025-10-18 16:07:37.986425+00 f t SUBTOTAL 78000.00 1 9979 \N +394478 2025-10-18 16:07:37.988239+00 2025-10-18 16:07:37.988246+00 f t DESCUENTO 0.00 2 9979 \N +394479 2025-10-18 16:07:37.989505+00 2025-10-18 16:07:37.98951+00 f t TOTAL 78000.00 3 9979 \N +394480 2025-10-18 16:07:37.990744+00 2025-10-18 16:07:37.990751+00 f t ADELANTO 21500.00 4 9979 \N +394493 2025-10-18 16:11:41.334154+00 2025-10-18 16:11:41.334164+00 f t SUBTOTAL 0.00 1 9981 \N +394494 2025-10-18 16:11:41.3359+00 2025-10-18 16:11:41.335906+00 f t DESCUENTO 0.00 2 9981 \N +394495 2025-10-18 16:11:41.336979+00 2025-10-18 16:11:41.336984+00 f t TOTAL 0.00 3 9981 \N +394496 2025-10-18 16:11:41.338069+00 2025-10-18 16:11:41.338074+00 f t ADELANTO 0.00 4 9981 \N +394505 2025-10-18 16:18:20.494774+00 2025-10-18 16:18:20.494786+00 f t SUBTOTAL 55000.00 1 9982 \N +394506 2025-10-18 16:18:20.496929+00 2025-10-18 16:18:20.49694+00 f t DESCUENTO 0.00 2 9982 \N +394507 2025-10-18 16:18:20.498445+00 2025-10-18 16:18:20.498454+00 f t TOTAL 55000.00 3 9982 \N +394508 2025-10-18 16:18:20.500175+00 2025-10-18 16:18:20.500183+00 f t ADELANTO 11000.00 4 9982 \N +401647 2025-10-21 12:51:52.699758+00 2025-10-21 12:51:52.69977+00 f t SUBTOTAL 0.00 1 10179 \N +401648 2025-10-21 12:51:52.701932+00 2025-10-21 12:51:52.701944+00 f t COSTO_SERVICIO 0.00 2 10179 \N +401649 2025-10-21 12:51:52.70334+00 2025-10-21 12:51:52.703348+00 f t DESCUENTO 0.00 3 10179 \N +401650 2025-10-21 12:51:52.704705+00 2025-10-21 12:51:52.704712+00 f t TOTAL 0.00 4 10179 \N +401651 2025-10-21 12:51:52.706063+00 2025-10-21 12:51:52.706071+00 f t ADELANTO 0.00 5 10179 \N +402292 2025-10-21 15:46:02.750211+00 2025-10-21 15:46:02.750222+00 f t SUBTOTAL 0.00 1 10197 \N +402293 2025-10-21 15:46:02.751674+00 2025-10-21 15:46:02.751682+00 f t COSTO_SERVICIO 0.00 2 10197 \N +402294 2025-10-21 15:46:02.752902+00 2025-10-21 15:46:02.752908+00 f t DESCUENTO 0.00 3 10197 \N +402295 2025-10-21 15:46:02.75406+00 2025-10-21 15:46:02.754069+00 f t TOTAL 0.00 4 10197 \N +402296 2025-10-21 15:46:02.755354+00 2025-10-21 15:46:02.755361+00 f t ADELANTO 0.00 5 10197 \N +402517 2025-10-21 16:13:42.504091+00 2025-10-21 16:13:42.504099+00 f t SUBTOTAL 30000.00 1 10135 \N +402518 2025-10-21 16:13:42.505801+00 2025-10-21 16:13:42.505871+00 f t COSTO_SERVICIO 0.00 2 10135 \N +402519 2025-10-21 16:13:42.507015+00 2025-10-21 16:13:42.507021+00 f t DESCUENTO 0.00 3 10135 \N +402520 2025-10-21 16:13:42.508+00 2025-10-21 16:13:42.508005+00 f t TOTAL 30000.00 4 10135 \N +402521 2025-10-21 16:13:42.508971+00 2025-10-21 16:13:42.508978+00 f t ADELANTO 30000.00 5 10135 \N +403342 2025-10-21 19:32:42.273776+00 2025-10-21 19:32:42.273783+00 f t SUBTOTAL 46000.00 1 10220 \N +403343 2025-10-21 19:32:42.275692+00 2025-10-21 19:32:42.275699+00 f t COSTO_SERVICIO 0.00 2 10220 \N +403344 2025-10-21 19:32:42.277273+00 2025-10-21 19:32:42.277279+00 f t DESCUENTO 0.00 3 10220 \N +403345 2025-10-21 19:32:42.278746+00 2025-10-21 19:32:42.278752+00 f t TOTAL 46000.00 4 10220 \N +403346 2025-10-21 19:32:42.280204+00 2025-10-21 19:32:42.28021+00 f t ADELANTO 11000.00 5 10220 \N +394613 2025-10-18 16:35:05.226617+00 2025-10-18 16:35:05.226631+00 f t SUBTOTAL 53700.00 1 9983 \N +394614 2025-10-18 16:35:05.230417+00 2025-10-18 16:35:05.230429+00 f t DESCUENTO 0.00 2 9983 \N +394615 2025-10-18 16:35:05.232932+00 2025-10-18 16:35:05.232945+00 f t TOTAL 53700.00 3 9983 \N +394616 2025-10-18 16:35:05.235249+00 2025-10-18 16:35:05.235262+00 f t ADELANTO 13200.00 4 9983 \N +416092 2025-10-25 22:22:39.550688+00 2025-10-25 22:22:39.550695+00 f t SUBTOTAL 55000.00 1 10516 \N +416093 2025-10-25 22:22:39.552428+00 2025-10-25 22:22:39.552435+00 f t COSTO_SERVICIO 0.00 2 10516 \N +416094 2025-10-25 22:22:39.553544+00 2025-10-25 22:22:39.553549+00 f t DESCUENTO 0.00 3 10516 \N +416095 2025-10-25 22:22:39.554448+00 2025-10-25 22:22:39.554454+00 f t TOTAL 55000.00 4 10516 \N +416096 2025-10-25 22:22:39.555297+00 2025-10-25 22:22:39.555304+00 f t ADELANTO 11000.00 5 10516 \N +445692 2025-11-01 19:19:44.27733+00 2025-11-01 19:19:44.277339+00 f t SUBTOTAL 0.00 1 11214 \N +445693 2025-11-01 19:19:44.279074+00 2025-11-01 19:19:44.279081+00 f t COSTO_SERVICIO 0.00 2 11214 \N +445694 2025-11-01 19:19:44.280205+00 2025-11-01 19:19:44.28021+00 f t DESCUENTO 0.00 3 11214 \N +445695 2025-11-01 19:19:44.281145+00 2025-11-01 19:19:44.281151+00 f t TOTAL 0.00 4 11214 \N +406892 2025-10-22 17:38:23.687918+00 2025-10-22 17:38:23.687931+00 f t SUBTOTAL 0.00 1 10301 \N +406893 2025-10-22 17:38:23.689514+00 2025-10-22 17:38:23.689524+00 f t COSTO_SERVICIO 0.00 2 10301 \N +398009 2025-10-20 11:39:58.369972+00 2025-10-20 11:39:58.36998+00 f t SUBTOTAL 55000.00 1 10079 \N +398010 2025-10-20 11:39:58.371565+00 2025-10-20 11:39:58.371574+00 f t DESCUENTO 0.00 2 10079 \N +398011 2025-10-20 11:39:58.37281+00 2025-10-20 11:39:58.372817+00 f t TOTAL 55000.00 3 10079 \N +398012 2025-10-20 11:39:58.373808+00 2025-10-20 11:39:58.373815+00 f t ADELANTO 11000.00 4 10079 \N +398149 2025-10-20 11:54:30.207384+00 2025-10-20 11:54:30.207393+00 f t SUBTOTAL 99400.00 1 10081 \N +398150 2025-10-20 11:54:30.208955+00 2025-10-20 11:54:30.208961+00 f t DESCUENTO 0.00 2 10081 \N +398151 2025-10-20 11:54:30.210118+00 2025-10-20 11:54:30.210128+00 f t TOTAL 99400.00 3 10081 \N +398152 2025-10-20 11:54:30.211377+00 2025-10-20 11:54:30.211382+00 f t ADELANTO 58900.00 4 10081 \N +406894 2025-10-22 17:38:23.690747+00 2025-10-22 17:38:23.690756+00 f t DESCUENTO 0.00 3 10301 \N +406895 2025-10-22 17:38:23.692003+00 2025-10-22 17:38:23.692011+00 f t TOTAL 0.00 4 10301 \N +406896 2025-10-22 17:38:23.693073+00 2025-10-22 17:38:23.693081+00 f t ADELANTO 0.00 5 10301 \N +398857 2025-10-20 13:51:00.70535+00 2025-10-20 13:51:00.705361+00 f t SUBTOTAL 0.00 1 10099 \N +398858 2025-10-20 13:51:00.706893+00 2025-10-20 13:51:00.706902+00 f t DESCUENTO 0.00 2 10099 \N +398859 2025-10-20 13:51:00.709099+00 2025-10-20 13:51:00.709106+00 f t TOTAL 0.00 3 10099 \N +398860 2025-10-20 13:51:00.710824+00 2025-10-20 13:51:00.710831+00 f t ADELANTO 0.00 4 10099 \N +407757 2025-10-22 22:01:25.704203+00 2025-10-22 22:01:25.704211+00 f t SUBTOTAL 0.00 1 10318 \N +407758 2025-10-22 22:01:25.706585+00 2025-10-22 22:01:25.706595+00 f t COSTO_SERVICIO 0.00 2 10318 \N +407759 2025-10-22 22:01:25.707884+00 2025-10-22 22:01:25.707891+00 f t DESCUENTO 0.00 3 10318 \N +407760 2025-10-22 22:01:25.70897+00 2025-10-22 22:01:25.708976+00 f t TOTAL 0.00 4 10318 \N +407761 2025-10-22 22:01:25.71012+00 2025-10-22 22:01:25.710126+00 f t ADELANTO 0.00 5 10318 \N +408112 2025-10-23 00:48:36.757114+00 2025-10-23 00:48:36.757123+00 f t SUBTOTAL 0.00 1 10326 \N +408113 2025-10-23 00:48:36.758423+00 2025-10-23 00:48:36.758431+00 f t COSTO_SERVICIO 0.00 2 10326 \N +408114 2025-10-23 00:48:36.759438+00 2025-10-23 00:48:36.759444+00 f t DESCUENTO 0.00 3 10326 \N +408115 2025-10-23 00:48:36.760316+00 2025-10-23 00:48:36.760323+00 f t TOTAL 0.00 4 10326 \N +408116 2025-10-23 00:48:36.761309+00 2025-10-23 00:48:36.761315+00 f t ADELANTO 0.00 5 10326 \N +394713 2025-10-18 16:41:40.077313+00 2025-10-18 16:41:40.077322+00 f t SUBTOTAL 0.00 1 9986 \N +394714 2025-10-18 16:41:40.078611+00 2025-10-18 16:41:40.078618+00 f t DESCUENTO 0.00 2 9986 \N +394715 2025-10-18 16:41:40.079904+00 2025-10-18 16:41:40.079911+00 f t TOTAL 0.00 3 9986 \N +394716 2025-10-18 16:41:40.081013+00 2025-10-18 16:41:40.08102+00 f t ADELANTO 0.00 4 9986 \N +400137 2025-10-20 21:42:25.781695+00 2025-10-20 21:42:25.781708+00 f t SUBTOTAL 0.00 1 10143 \N +400138 2025-10-20 21:42:25.78434+00 2025-10-20 21:42:25.784349+00 f t DESCUENTO 0.00 2 10143 \N +400139 2025-10-20 21:42:25.785736+00 2025-10-20 21:42:25.785745+00 f t TOTAL 0.00 3 10143 \N +400140 2025-10-20 21:42:25.786899+00 2025-10-20 21:42:25.786904+00 f t ADELANTO 0.00 4 10143 \N +410528 2025-10-23 19:08:18.762457+00 2025-10-23 19:08:18.762463+00 f t COSTO_SERVICIO 0.00 2 10371 \N +410529 2025-10-23 19:08:18.76414+00 2025-10-23 19:08:18.76415+00 f t DESCUENTO 0.00 3 10371 \N +410530 2025-10-23 19:08:18.765515+00 2025-10-23 19:08:18.765523+00 f t TOTAL 107000.00 4 10371 \N +410531 2025-10-23 19:08:18.766638+00 2025-10-23 19:08:18.766646+00 f t ADELANTO 12000.00 5 10371 \N +410862 2025-10-23 22:50:23.604486+00 2025-10-23 22:50:23.604497+00 f t SUBTOTAL 107000.00 1 10386 \N +410863 2025-10-23 22:50:23.606273+00 2025-10-23 22:50:23.60628+00 f t COSTO_SERVICIO 0.00 2 10386 \N +410864 2025-10-23 22:50:23.607536+00 2025-10-23 22:50:23.607544+00 f t DESCUENTO 0.00 3 10386 \N +410865 2025-10-23 22:50:23.609397+00 2025-10-23 22:50:23.609409+00 f t TOTAL 107000.00 4 10386 \N +410866 2025-10-23 22:50:23.610895+00 2025-10-23 22:50:23.610902+00 f t ADELANTO 12000.00 5 10386 \N +402527 2025-10-21 16:14:10.024083+00 2025-10-21 16:14:10.024093+00 f t SUBTOTAL 0.00 1 10203 \N +402528 2025-10-21 16:14:10.025403+00 2025-10-21 16:14:10.025409+00 f t COSTO_SERVICIO 0.00 2 10203 \N +402529 2025-10-21 16:14:10.026592+00 2025-10-21 16:14:10.026598+00 f t DESCUENTO 0.00 3 10203 \N +402530 2025-10-21 16:14:10.027568+00 2025-10-21 16:14:10.027573+00 f t TOTAL 0.00 4 10203 \N +402531 2025-10-21 16:14:10.028469+00 2025-10-21 16:14:10.028475+00 f t ADELANTO 0.00 5 10203 \N +394861 2025-10-18 17:01:38.913634+00 2025-10-18 17:01:38.913643+00 f t SUBTOTAL 98900.00 1 9987 \N +394862 2025-10-18 17:01:38.915168+00 2025-10-18 17:01:38.915177+00 f t DESCUENTO 0.00 2 9987 \N +394863 2025-10-18 17:01:38.916529+00 2025-10-18 17:01:38.916535+00 f t TOTAL 98900.00 3 9987 \N +394864 2025-10-18 17:01:38.917809+00 2025-10-18 17:01:38.917818+00 f t ADELANTO 36900.00 4 9987 \N +394873 2025-10-18 17:27:22.116429+00 2025-10-18 17:27:22.116441+00 f t SUBTOTAL 78000.00 1 9988 \N +394874 2025-10-18 17:27:22.118209+00 2025-10-18 17:27:22.118217+00 f t DESCUENTO 0.00 2 9988 \N +394875 2025-10-18 17:27:22.119552+00 2025-10-18 17:27:22.11956+00 f t TOTAL 78000.00 3 9988 \N +394876 2025-10-18 17:27:22.120888+00 2025-10-18 17:27:22.120901+00 f t ADELANTO 13000.00 4 9988 \N +403427 2025-10-21 19:36:35.525636+00 2025-10-21 19:36:35.525645+00 f t SUBTOTAL 0.00 1 10221 \N +403428 2025-10-21 19:36:35.527653+00 2025-10-21 19:36:35.527662+00 f t COSTO_SERVICIO 0.00 2 10221 \N +403429 2025-10-21 19:36:35.529022+00 2025-10-21 19:36:35.529028+00 f t DESCUENTO 0.00 3 10221 \N +403430 2025-10-21 19:36:35.530219+00 2025-10-21 19:36:35.530225+00 f t TOTAL 0.00 4 10221 \N +403431 2025-10-21 19:36:35.531247+00 2025-10-21 19:36:35.531253+00 f t ADELANTO 0.00 5 10221 \N +394905 2025-10-18 17:33:11.94234+00 2025-10-18 17:33:11.942349+00 f t SUBTOTAL 46000.00 1 9989 \N +394906 2025-10-18 17:33:11.944065+00 2025-10-18 17:33:11.944073+00 f t DESCUENTO 0.00 2 9989 \N +394907 2025-10-18 17:33:11.945298+00 2025-10-18 17:33:11.945303+00 f t TOTAL 46000.00 3 9989 \N +394908 2025-10-18 17:33:11.946356+00 2025-10-18 17:33:11.946361+00 f t ADELANTO 11000.00 4 9989 \N +403512 2025-10-21 20:02:51.605392+00 2025-10-21 20:02:51.6054+00 f t SUBTOTAL 0.00 1 10226 \N +403513 2025-10-21 20:02:51.606688+00 2025-10-21 20:02:51.606694+00 f t COSTO_SERVICIO 0.00 2 10226 \N +403514 2025-10-21 20:02:51.607731+00 2025-10-21 20:02:51.607737+00 f t DESCUENTO 0.00 3 10226 \N +403515 2025-10-21 20:02:51.608684+00 2025-10-21 20:02:51.608692+00 f t TOTAL 0.00 4 10226 \N +403516 2025-10-21 20:02:51.609709+00 2025-10-21 20:02:51.609714+00 f t ADELANTO 0.00 5 10226 \N +406667 2025-10-22 16:11:34.079338+00 2025-10-22 16:11:34.079346+00 f t SUBTOTAL 30000.00 1 10293 \N +406668 2025-10-22 16:11:34.081064+00 2025-10-22 16:11:34.08107+00 f t COSTO_SERVICIO 0.00 2 10293 \N +406669 2025-10-22 16:11:34.082466+00 2025-10-22 16:11:34.082476+00 f t DESCUENTO 0.00 3 10293 \N +406670 2025-10-22 16:11:34.083489+00 2025-10-22 16:11:34.083495+00 f t TOTAL 30000.00 4 10293 \N +406671 2025-10-22 16:11:34.084467+00 2025-10-22 16:11:34.084472+00 f t ADELANTO 30000.00 5 10293 \N +445696 2025-11-01 19:19:44.282154+00 2025-11-01 19:19:44.28216+00 f t ADELANTO 0.00 5 11214 \N +445987 2025-11-01 20:35:44.849946+00 2025-11-01 20:35:44.849957+00 f t SUBTOTAL 0.00 1 11222 \N +445988 2025-11-01 20:35:44.851929+00 2025-11-01 20:35:44.851936+00 f t COSTO_SERVICIO 0.00 2 11222 \N +394965 2025-10-18 17:38:15.319115+00 2025-10-18 17:38:15.319126+00 f t SUBTOTAL 46000.00 1 9990 \N +394966 2025-10-18 17:38:15.320982+00 2025-10-18 17:38:15.321024+00 f t DESCUENTO 0.00 2 9990 \N +394967 2025-10-18 17:38:15.322411+00 2025-10-18 17:38:15.322417+00 f t TOTAL 46000.00 3 9990 \N +394968 2025-10-18 17:38:15.326232+00 2025-10-18 17:38:15.326239+00 f t ADELANTO 11000.00 4 9990 \N +408122 2025-10-23 01:06:06.602188+00 2025-10-23 01:06:06.602199+00 f t SUBTOTAL 0.00 1 10327 \N +408123 2025-10-23 01:06:06.603816+00 2025-10-23 01:06:06.603828+00 f t COSTO_SERVICIO 0.00 2 10327 \N +408124 2025-10-23 01:06:06.605246+00 2025-10-23 01:06:06.605254+00 f t DESCUENTO 0.00 3 10327 \N +408125 2025-10-23 01:06:06.606642+00 2025-10-23 01:06:06.606651+00 f t TOTAL 0.00 4 10327 \N +408126 2025-10-23 01:06:06.6085+00 2025-10-23 01:06:06.608507+00 f t ADELANTO 0.00 5 10327 \N +399705 2025-10-20 18:14:03.541261+00 2025-10-20 18:14:03.541273+00 f t SUBTOTAL 46000.00 1 10126 \N +399706 2025-10-20 18:14:03.543707+00 2025-10-20 18:14:03.543719+00 f t DESCUENTO 0.00 2 10126 \N +399707 2025-10-20 18:14:03.54545+00 2025-10-20 18:14:03.545461+00 f t TOTAL 46000.00 3 10126 \N +399708 2025-10-20 18:14:03.547121+00 2025-10-20 18:14:03.54716+00 f t ADELANTO 11000.00 4 10126 \N +399817 2025-10-20 18:51:02.686678+00 2025-10-20 18:51:02.686688+00 f t SUBTOTAL 0.00 1 10130 \N +395005 2025-10-18 17:58:38.999843+00 2025-10-18 17:58:38.999854+00 f t SUBTOTAL 54000.00 1 9991 \N +395006 2025-10-18 17:58:39.001776+00 2025-10-18 17:58:39.001787+00 f t DESCUENTO 0.00 2 9991 \N +395007 2025-10-18 17:58:39.003357+00 2025-10-18 17:58:39.003367+00 f t TOTAL 54000.00 3 9991 \N +395008 2025-10-18 17:58:39.00482+00 2025-10-18 17:58:39.00483+00 f t ADELANTO 13500.00 4 9991 \N +399818 2025-10-20 18:51:02.688955+00 2025-10-20 18:51:02.688966+00 f t DESCUENTO 0.00 2 10130 \N +399819 2025-10-20 18:51:02.690494+00 2025-10-20 18:51:02.690504+00 f t TOTAL 0.00 3 10130 \N +399820 2025-10-20 18:51:02.692036+00 2025-10-20 18:51:02.692045+00 f t ADELANTO 0.00 4 10130 \N +409527 2025-10-23 15:05:52.099581+00 2025-10-23 15:05:52.09959+00 f t SUBTOTAL 107000.00 1 10354 \N +409528 2025-10-23 15:05:52.101398+00 2025-10-23 15:05:52.101406+00 f t COSTO_SERVICIO 0.00 2 10354 \N +409529 2025-10-23 15:05:52.10265+00 2025-10-23 15:05:52.102656+00 f t DESCUENTO 0.00 3 10354 \N +409530 2025-10-23 15:05:52.103924+00 2025-10-23 15:05:52.10393+00 f t TOTAL 107000.00 4 10354 \N +409531 2025-10-23 15:05:52.105031+00 2025-10-23 15:05:52.105037+00 f t ADELANTO 12000.00 5 10354 \N +409642 2025-10-23 15:29:25.415357+00 2025-10-23 15:29:25.415366+00 f t SUBTOTAL 0.00 1 10357 \N +409643 2025-10-23 15:29:25.416779+00 2025-10-23 15:29:25.416785+00 f t COSTO_SERVICIO 0.00 2 10357 \N +409644 2025-10-23 15:29:25.417774+00 2025-10-23 15:29:25.417779+00 f t DESCUENTO 0.00 3 10357 \N +409645 2025-10-23 15:29:25.418716+00 2025-10-23 15:29:25.418721+00 f t TOTAL 0.00 4 10357 \N +409646 2025-10-23 15:29:25.419842+00 2025-10-23 15:29:25.419847+00 f t ADELANTO 0.00 5 10357 \N +395069 2025-10-18 18:21:55.772283+00 2025-10-18 18:21:55.772296+00 f t SUBTOTAL 70000.00 1 9992 \N +395070 2025-10-18 18:21:55.774167+00 2025-10-18 18:21:55.774177+00 f t DESCUENTO 0.00 2 9992 \N +395071 2025-10-18 18:21:55.775518+00 2025-10-18 18:21:55.775526+00 f t TOTAL 70000.00 3 9992 \N +395072 2025-10-18 18:21:55.776685+00 2025-10-18 18:21:55.776693+00 f t ADELANTO 19000.00 4 9992 \N +395085 2025-10-18 18:28:30.640796+00 2025-10-18 18:28:30.640804+00 f t SUBTOTAL 0.00 1 9994 \N +395086 2025-10-18 18:28:30.642067+00 2025-10-18 18:28:30.642073+00 f t DESCUENTO 0.00 2 9994 \N +395087 2025-10-18 18:28:30.643245+00 2025-10-18 18:28:30.643252+00 f t TOTAL 0.00 3 9994 \N +395088 2025-10-18 18:28:30.644331+00 2025-10-18 18:28:30.644336+00 f t ADELANTO 0.00 4 9994 \N +411047 2025-10-24 00:14:09.452052+00 2025-10-24 00:14:09.452063+00 f t SUBTOTAL 0.00 1 10392 \N +411048 2025-10-24 00:14:09.454248+00 2025-10-24 00:14:09.454256+00 f t COSTO_SERVICIO 0.00 2 10392 \N +411049 2025-10-24 00:14:09.455646+00 2025-10-24 00:14:09.455653+00 f t DESCUENTO 0.00 3 10392 \N +411050 2025-10-24 00:14:09.456941+00 2025-10-24 00:14:09.456948+00 f t TOTAL 0.00 4 10392 \N +411051 2025-10-24 00:14:09.458185+00 2025-10-24 00:14:09.458193+00 f t ADELANTO 0.00 5 10392 \N +395157 2025-10-18 18:30:36.661939+00 2025-10-18 18:30:36.661948+00 f t SUBTOTAL 55000.00 1 9993 \N +395158 2025-10-18 18:30:36.663938+00 2025-10-18 18:30:36.663946+00 f t DESCUENTO 0.00 2 9993 \N +395159 2025-10-18 18:30:36.665305+00 2025-10-18 18:30:36.665311+00 f t TOTAL 55000.00 3 9993 \N +395160 2025-10-18 18:30:36.66658+00 2025-10-18 18:30:36.666585+00 f t ADELANTO 11000.00 4 9993 \N +411542 2025-10-24 08:14:26.943763+00 2025-10-24 08:14:26.94377+00 f t SUBTOTAL 75000.00 1 10407 \N +411543 2025-10-24 08:14:26.945402+00 2025-10-24 08:14:26.945407+00 f t COSTO_SERVICIO 0.00 2 10407 \N +411544 2025-10-24 08:14:26.946474+00 2025-10-24 08:14:26.946479+00 f t DESCUENTO 0.00 3 10407 \N +411545 2025-10-24 08:14:26.947603+00 2025-10-24 08:14:26.947609+00 f t TOTAL 75000.00 4 10407 \N +411546 2025-10-24 08:14:26.94854+00 2025-10-24 08:14:26.948546+00 f t ADELANTO 15000.00 5 10407 \N +395185 2025-10-18 18:31:49.699185+00 2025-10-18 18:31:49.699192+00 f t SUBTOTAL 55000.00 1 9995 \N +395186 2025-10-18 18:31:49.700614+00 2025-10-18 18:31:49.700621+00 f t DESCUENTO 0.00 2 9995 \N +395187 2025-10-18 18:31:49.70185+00 2025-10-18 18:31:49.701855+00 f t TOTAL 55000.00 3 9995 \N +395188 2025-10-18 18:31:49.702989+00 2025-10-18 18:31:49.702997+00 f t ADELANTO 11000.00 4 9995 \N +395193 2025-10-18 19:15:23.309833+00 2025-10-18 19:15:23.309845+00 f t SUBTOTAL 0.00 1 9996 \N +395194 2025-10-18 19:15:23.311576+00 2025-10-18 19:15:23.311584+00 f t DESCUENTO 0.00 2 9996 \N +395195 2025-10-18 19:15:23.313087+00 2025-10-18 19:15:23.313097+00 f t TOTAL 0.00 3 9996 \N +395196 2025-10-18 19:15:23.314452+00 2025-10-18 19:15:23.31446+00 f t ADELANTO 0.00 4 9996 \N +403432 2025-10-21 19:37:44.298536+00 2025-10-21 19:37:44.298547+00 f t SUBTOTAL 72500.00 1 10222 \N +403433 2025-10-21 19:37:44.300423+00 2025-10-21 19:37:44.300433+00 f t COSTO_SERVICIO 0.00 2 10222 \N +395201 2025-10-18 19:15:53.073479+00 2025-10-18 19:15:53.073492+00 f t SUBTOTAL 0.00 1 9997 \N +395202 2025-10-18 19:15:53.075041+00 2025-10-18 19:15:53.075051+00 f t DESCUENTO 0.00 2 9997 \N +395203 2025-10-18 19:15:53.076435+00 2025-10-18 19:15:53.076444+00 f t TOTAL 0.00 3 9997 \N +395204 2025-10-18 19:15:53.077612+00 2025-10-18 19:15:53.077621+00 f t ADELANTO 0.00 4 9997 \N +403434 2025-10-21 19:37:44.301946+00 2025-10-21 19:37:44.301956+00 f t DESCUENTO 0.00 3 10222 \N +403435 2025-10-21 19:37:44.303374+00 2025-10-21 19:37:44.303381+00 f t TOTAL 72500.00 4 10222 \N +403436 2025-10-21 19:37:44.304674+00 2025-10-21 19:37:44.304682+00 f t ADELANTO 72500.00 5 10222 \N +395209 2025-10-18 19:16:28.539304+00 2025-10-18 19:16:28.539314+00 f t SUBTOTAL 0.00 1 9998 \N +395210 2025-10-18 19:16:28.540639+00 2025-10-18 19:16:28.540646+00 f t DESCUENTO 0.00 2 9998 \N +395211 2025-10-18 19:16:28.541582+00 2025-10-18 19:16:28.541587+00 f t TOTAL 0.00 3 9998 \N +395212 2025-10-18 19:16:28.542691+00 2025-10-18 19:16:28.542696+00 f t ADELANTO 0.00 4 9998 \N +523534 2025-11-20 20:43:19.265645+00 2025-11-20 20:43:19.265653+00 f t DESCUENTO 0.00 3 13021 \N +523535 2025-11-20 20:43:19.26689+00 2025-11-20 20:43:19.266897+00 f t TOTAL 78000.00 4 13021 \N +523536 2025-11-20 20:43:19.268068+00 2025-11-20 20:43:19.268076+00 f t ADELANTO 13000.00 5 13021 \N +395217 2025-10-18 19:17:17.691091+00 2025-10-18 19:17:17.691104+00 f t SUBTOTAL 0.00 1 9999 \N +395218 2025-10-18 19:17:17.692514+00 2025-10-18 19:17:17.69252+00 f t DESCUENTO 0.00 2 9999 \N +395219 2025-10-18 19:17:17.693611+00 2025-10-18 19:17:17.693617+00 f t TOTAL 0.00 3 9999 \N +395220 2025-10-18 19:17:17.694579+00 2025-10-18 19:17:17.694584+00 f t ADELANTO 0.00 4 9999 \N +395261 2025-10-18 19:19:38.658714+00 2025-10-18 19:19:38.658723+00 f t SUBTOTAL 55000.00 1 10000 \N +395262 2025-10-18 19:19:38.660376+00 2025-10-18 19:19:38.660384+00 f t DESCUENTO 0.00 2 10000 \N +395263 2025-10-18 19:19:38.661786+00 2025-10-18 19:19:38.661792+00 f t TOTAL 55000.00 3 10000 \N +395264 2025-10-18 19:19:38.662815+00 2025-10-18 19:19:38.66282+00 f t ADELANTO 11000.00 4 10000 \N +399125 2025-10-20 14:48:30.069983+00 2025-10-20 14:48:30.069994+00 f t SUBTOTAL 70000.00 1 10107 \N +399126 2025-10-20 14:48:30.072013+00 2025-10-20 14:48:30.072022+00 f t DESCUENTO 0.00 2 10107 \N +399127 2025-10-20 14:48:30.073596+00 2025-10-20 14:48:30.073604+00 f t TOTAL 70000.00 3 10107 \N +399128 2025-10-20 14:48:30.075069+00 2025-10-20 14:48:30.075078+00 f t ADELANTO 19000.00 4 10107 \N +408422 2025-10-23 02:17:49.986652+00 2025-10-23 02:17:49.986659+00 f t SUBTOTAL 55000.00 1 10331 \N +408423 2025-10-23 02:17:49.988176+00 2025-10-23 02:17:49.988182+00 f t COSTO_SERVICIO 0.00 2 10331 \N +408424 2025-10-23 02:17:49.98964+00 2025-10-23 02:17:49.989645+00 f t DESCUENTO 0.00 3 10331 \N +408425 2025-10-23 02:17:49.990702+00 2025-10-23 02:17:49.990708+00 f t TOTAL 55000.00 4 10331 \N +408426 2025-10-23 02:17:49.991853+00 2025-10-23 02:17:49.991859+00 f t ADELANTO 11000.00 5 10331 \N +399825 2025-10-20 18:53:24.268887+00 2025-10-20 18:53:24.268897+00 f t SUBTOTAL 0.00 1 10131 \N +399826 2025-10-20 18:53:24.270561+00 2025-10-20 18:53:24.270571+00 f t DESCUENTO 0.00 2 10131 \N +399827 2025-10-20 18:53:24.27216+00 2025-10-20 18:53:24.272167+00 f t TOTAL 0.00 3 10131 \N +399828 2025-10-20 18:53:24.273653+00 2025-10-20 18:53:24.27366+00 f t ADELANTO 0.00 4 10131 \N +399933 2025-10-20 19:11:39.670433+00 2025-10-20 19:11:39.670444+00 f t SUBTOTAL 70000.00 1 10134 \N +399934 2025-10-20 19:11:39.672771+00 2025-10-20 19:11:39.672782+00 f t DESCUENTO 0.00 2 10134 \N +399935 2025-10-20 19:11:39.674386+00 2025-10-20 19:11:39.674395+00 f t TOTAL 70000.00 3 10134 \N +399936 2025-10-20 19:11:39.675977+00 2025-10-20 19:11:39.675985+00 f t ADELANTO 19000.00 4 10134 \N +400041 2025-10-20 19:52:14.027089+00 2025-10-20 19:52:14.027098+00 f t SUBTOTAL 87400.00 1 10139 \N +400042 2025-10-20 19:52:14.02883+00 2025-10-20 19:52:14.028836+00 f t DESCUENTO 0.00 2 10139 \N +400043 2025-10-20 19:52:14.030103+00 2025-10-20 19:52:14.030109+00 f t TOTAL 87400.00 3 10139 \N +400044 2025-10-20 19:52:14.03122+00 2025-10-20 19:52:14.031224+00 f t ADELANTO 46900.00 4 10139 \N +409262 2025-10-23 13:10:36.920775+00 2025-10-23 13:10:36.920783+00 f t SUBTOTAL 0.00 1 10345 \N +409263 2025-10-23 13:10:36.922503+00 2025-10-23 13:10:36.92251+00 f t COSTO_SERVICIO 0.00 2 10345 \N +400637 2025-10-21 00:09:08.251281+00 2025-10-21 00:09:08.251293+00 f t SUBTOTAL 153900.00 1 10156 \N +400638 2025-10-21 00:09:08.253714+00 2025-10-21 00:09:08.253726+00 f t DESCUENTO 0.00 2 10156 \N +400639 2025-10-21 00:09:08.255699+00 2025-10-21 00:09:08.255707+00 f t TOTAL 153900.00 3 10156 \N +400640 2025-10-21 00:09:08.257341+00 2025-10-21 00:09:08.257349+00 f t ADELANTO 113400.00 4 10156 \N +409264 2025-10-23 13:10:36.923781+00 2025-10-23 13:10:36.923786+00 f t DESCUENTO 0.00 3 10345 \N +409265 2025-10-23 13:10:36.925014+00 2025-10-23 13:10:36.92502+00 f t TOTAL 0.00 4 10345 \N +409266 2025-10-23 13:10:36.925895+00 2025-10-23 13:10:36.925901+00 f t ADELANTO 0.00 5 10345 \N +395349 2025-10-18 19:30:34.366232+00 2025-10-18 19:30:34.36624+00 f t SUBTOTAL 115000.00 1 10001 \N +395350 2025-10-18 19:30:34.3678+00 2025-10-18 19:30:34.367807+00 f t DESCUENTO 0.00 2 10001 \N +395351 2025-10-18 19:30:34.369037+00 2025-10-18 19:30:34.369043+00 f t TOTAL 115000.00 3 10001 \N +395352 2025-10-18 19:30:34.370298+00 2025-10-18 19:30:34.370305+00 f t ADELANTO 25000.00 4 10001 \N +395357 2025-10-18 19:30:43.163996+00 2025-10-18 19:30:43.16401+00 f t SUBTOTAL 152000.00 1 10002 \N +395358 2025-10-18 19:30:43.165875+00 2025-10-18 19:30:43.165886+00 f t DESCUENTO 0.00 2 10002 \N +395359 2025-10-18 19:30:43.167518+00 2025-10-18 19:30:43.167528+00 f t TOTAL 152000.00 3 10002 \N +395360 2025-10-18 19:30:43.168901+00 2025-10-18 19:30:43.16891+00 f t ADELANTO 31000.00 4 10002 \N +401513 2025-10-21 12:27:16.773243+00 2025-10-21 12:27:16.773252+00 f t SUBTOTAL 75000.00 1 10177 \N +401514 2025-10-21 12:27:16.775113+00 2025-10-21 12:27:16.775121+00 f t DESCUENTO 0.00 2 10177 \N +401515 2025-10-21 12:27:16.776406+00 2025-10-21 12:27:16.776414+00 f t TOTAL 75000.00 3 10177 \N +401516 2025-10-21 12:27:16.777643+00 2025-10-21 12:27:16.777651+00 f t ADELANTO 15000.00 4 10177 \N +395397 2025-10-18 19:59:16.753108+00 2025-10-18 19:59:16.753118+00 f t SUBTOTAL 54000.00 1 10003 \N +395398 2025-10-18 19:59:16.754597+00 2025-10-18 19:59:16.754604+00 f t DESCUENTO 0.00 2 10003 \N +395399 2025-10-18 19:59:16.755659+00 2025-10-18 19:59:16.755664+00 f t TOTAL 54000.00 3 10003 \N +395400 2025-10-18 19:59:16.756613+00 2025-10-18 19:59:16.756618+00 f t ADELANTO 13500.00 4 10003 \N +395401 2025-10-18 21:08:11.111953+00 2025-10-18 21:08:11.111963+00 f t SUBTOTAL 78000.00 1 9985 \N +395402 2025-10-18 21:08:11.113817+00 2025-10-18 21:08:11.113825+00 f t DESCUENTO 0.00 2 9985 \N +395403 2025-10-18 21:08:11.115208+00 2025-10-18 21:08:11.115216+00 f t TOTAL 78000.00 3 9985 \N +395404 2025-10-18 21:08:11.116582+00 2025-10-18 21:08:11.116588+00 f t ADELANTO 21500.00 4 9985 \N +395405 2025-10-18 21:11:24.656705+00 2025-10-18 21:11:24.656714+00 f t SUBTOTAL 128500.00 1 9984 \N +395406 2025-10-18 21:11:24.658727+00 2025-10-18 21:11:24.658734+00 f t DESCUENTO 0.00 2 9984 \N +395407 2025-10-18 21:11:24.660082+00 2025-10-18 21:11:24.66009+00 f t TOTAL 128500.00 3 9984 \N +395408 2025-10-18 21:11:24.661341+00 2025-10-18 21:11:24.661347+00 f t ADELANTO 28500.00 4 9984 \N +402887 2025-10-21 17:23:26.814225+00 2025-10-21 17:23:26.814233+00 f t SUBTOTAL 0.00 1 10207 \N +402888 2025-10-21 17:23:26.815674+00 2025-10-21 17:23:26.815681+00 f t COSTO_SERVICIO 0.00 2 10207 \N +402889 2025-10-21 17:23:26.816847+00 2025-10-21 17:23:26.816853+00 f t DESCUENTO 0.00 3 10207 \N +402890 2025-10-21 17:23:26.818044+00 2025-10-21 17:23:26.81805+00 f t TOTAL 0.00 4 10207 \N +402891 2025-10-21 17:23:26.819241+00 2025-10-21 17:23:26.819246+00 f t ADELANTO 0.00 5 10207 \N +395457 2025-10-18 21:24:21.485829+00 2025-10-18 21:24:21.48584+00 f t SUBTOTAL 30000.00 1 10004 \N +395458 2025-10-18 21:24:21.487681+00 2025-10-18 21:24:21.487691+00 f t DESCUENTO 0.00 2 10004 \N +395459 2025-10-18 21:24:21.488996+00 2025-10-18 21:24:21.489004+00 f t TOTAL 30000.00 3 10004 \N +395460 2025-10-18 21:24:21.490117+00 2025-10-18 21:24:21.490123+00 f t ADELANTO 30000.00 4 10004 \N +395465 2025-10-18 23:23:41.69088+00 2025-10-18 23:23:41.690892+00 f t SUBTOTAL 0.00 1 10005 \N +395466 2025-10-18 23:23:41.692547+00 2025-10-18 23:23:41.692556+00 f t DESCUENTO 0.00 2 10005 \N +395467 2025-10-18 23:23:41.693765+00 2025-10-18 23:23:41.693772+00 f t TOTAL 0.00 3 10005 \N +395468 2025-10-18 23:23:41.694796+00 2025-10-18 23:23:41.694803+00 f t ADELANTO 0.00 4 10005 \N +395533 2025-10-18 23:26:26.310703+00 2025-10-18 23:26:26.310714+00 f t SUBTOTAL 46000.00 1 10006 \N +395534 2025-10-18 23:26:26.312373+00 2025-10-18 23:26:26.31238+00 f t DESCUENTO 0.00 2 10006 \N +395535 2025-10-18 23:26:26.313525+00 2025-10-18 23:26:26.31353+00 f t TOTAL 46000.00 3 10006 \N +395536 2025-10-18 23:26:26.314634+00 2025-10-18 23:26:26.314641+00 f t ADELANTO 11000.00 4 10006 \N +395561 2025-10-19 00:13:48.895599+00 2025-10-19 00:13:48.895607+00 f t SUBTOTAL 70000.00 1 10007 \N +395562 2025-10-19 00:13:48.897515+00 2025-10-19 00:13:48.897523+00 f t DESCUENTO 0.00 2 10007 \N +395563 2025-10-19 00:13:48.899015+00 2025-10-19 00:13:48.899024+00 f t TOTAL 70000.00 3 10007 \N +395564 2025-10-19 00:13:48.901894+00 2025-10-19 00:13:48.901902+00 f t ADELANTO 19000.00 4 10007 \N +408712 2025-10-23 03:13:10.662444+00 2025-10-23 03:13:10.662452+00 f t SUBTOTAL 54000.00 1 10335 \N +408713 2025-10-23 03:13:10.664909+00 2025-10-23 03:13:10.664916+00 f t COSTO_SERVICIO 0.00 2 10335 \N +408714 2025-10-23 03:13:10.666495+00 2025-10-23 03:13:10.666501+00 f t DESCUENTO 0.00 3 10335 \N +408715 2025-10-23 03:13:10.667664+00 2025-10-23 03:13:10.66767+00 f t TOTAL 54000.00 4 10335 \N +408716 2025-10-23 03:13:10.670291+00 2025-10-23 03:13:10.670298+00 f t ADELANTO 13500.00 5 10335 \N +399597 2025-10-20 16:55:52.148809+00 2025-10-20 16:55:52.148818+00 f t SUBTOTAL 54000.00 1 10121 \N +399598 2025-10-20 16:55:52.150459+00 2025-10-20 16:55:52.150466+00 f t DESCUENTO 0.00 2 10121 \N +399599 2025-10-20 16:55:52.151534+00 2025-10-20 16:55:52.151539+00 f t TOTAL 54000.00 3 10121 \N +399600 2025-10-20 16:55:52.152482+00 2025-10-20 16:55:52.152488+00 f t ADELANTO 13500.00 4 10121 \N +399937 2025-10-20 19:11:48.141843+00 2025-10-20 19:11:48.141852+00 f t SUBTOTAL 0.00 1 10132 \N +399938 2025-10-20 19:11:48.144237+00 2025-10-20 19:11:48.144246+00 f t DESCUENTO 0.00 2 10132 \N +399939 2025-10-20 19:11:48.14564+00 2025-10-20 19:11:48.145647+00 f t TOTAL 0.00 3 10132 \N +399940 2025-10-20 19:11:48.14704+00 2025-10-20 19:11:48.147046+00 f t ADELANTO 0.00 4 10132 \N +400537 2025-10-20 23:14:27.218107+00 2025-10-20 23:14:27.218118+00 f t SUBTOTAL 55000.00 1 10152 \N +400538 2025-10-20 23:14:27.219964+00 2025-10-20 23:14:27.219971+00 f t DESCUENTO 0.00 2 10152 \N +400539 2025-10-20 23:14:27.2214+00 2025-10-20 23:14:27.221408+00 f t TOTAL 55000.00 3 10152 \N +400540 2025-10-20 23:14:27.222682+00 2025-10-20 23:14:27.222689+00 f t ADELANTO 11000.00 4 10152 \N +400833 2025-10-21 00:54:30.865695+00 2025-10-21 00:54:30.866664+00 f t SUBTOTAL 0.00 1 10160 \N +400834 2025-10-21 00:54:31.597529+00 2025-10-21 00:54:31.598364+00 f t DESCUENTO 0.00 2 10160 \N +400835 2025-10-21 00:54:32.054225+00 2025-10-21 00:54:32.055628+00 f t TOTAL 0.00 3 10160 \N +395641 2025-10-19 02:04:44.486393+00 2025-10-19 02:04:44.486405+00 f t SUBTOTAL 55000.00 1 10008 \N +395642 2025-10-19 02:04:44.48854+00 2025-10-19 02:04:44.48855+00 f t DESCUENTO 0.00 2 10008 \N +395643 2025-10-19 02:04:44.490653+00 2025-10-19 02:04:44.490661+00 f t TOTAL 55000.00 3 10008 \N +395644 2025-10-19 02:04:44.492373+00 2025-10-19 02:04:44.492382+00 f t ADELANTO 11000.00 4 10008 \N +400836 2025-10-21 00:54:32.279393+00 2025-10-21 00:54:32.284343+00 f t ADELANTO 0.00 4 10160 \N +400933 2025-10-21 01:33:31.729501+00 2025-10-21 01:33:31.72951+00 f t SUBTOTAL 153900.00 1 10163 \N +400934 2025-10-21 01:33:31.731647+00 2025-10-21 01:33:31.731658+00 f t DESCUENTO 0.00 2 10163 \N +400935 2025-10-21 01:33:31.733332+00 2025-10-21 01:33:31.733342+00 f t TOTAL 153900.00 3 10163 \N +395649 2025-10-19 02:54:40.617105+00 2025-10-19 02:54:40.617117+00 f t SUBTOTAL 0.00 1 10009 \N +395650 2025-10-19 02:54:40.618793+00 2025-10-19 02:54:40.618804+00 f t DESCUENTO 0.00 2 10009 \N +395651 2025-10-19 02:54:40.620323+00 2025-10-19 02:54:40.620333+00 f t TOTAL 0.00 3 10009 \N +395652 2025-10-19 02:54:40.621727+00 2025-10-19 02:54:40.621737+00 f t ADELANTO 0.00 4 10009 \N +400936 2025-10-21 01:33:31.734942+00 2025-10-21 01:33:31.734952+00 f t ADELANTO 113400.00 4 10163 \N +395657 2025-10-19 03:35:44.611415+00 2025-10-19 03:35:44.611423+00 f t SUBTOTAL 0.00 1 10010 \N +395658 2025-10-19 03:35:44.612861+00 2025-10-19 03:35:44.612868+00 f t DESCUENTO 0.00 2 10010 \N +395659 2025-10-19 03:35:44.61403+00 2025-10-19 03:35:44.614036+00 f t TOTAL 0.00 3 10010 \N +395660 2025-10-19 03:35:44.615209+00 2025-10-19 03:35:44.615216+00 f t ADELANTO 0.00 4 10010 \N +401229 2025-10-21 11:07:18.80605+00 2025-10-21 11:07:18.806061+00 f t SUBTOTAL 82000.00 1 10171 \N +401230 2025-10-21 11:07:18.808101+00 2025-10-21 11:07:18.80811+00 f t DESCUENTO 0.00 2 10171 \N +401231 2025-10-21 11:07:18.809796+00 2025-10-21 11:07:18.809805+00 f t TOTAL 82000.00 3 10171 \N +401232 2025-10-21 11:07:18.811351+00 2025-10-21 11:07:18.811361+00 f t ADELANTO 12000.00 4 10171 \N +410542 2025-10-23 19:10:03.55026+00 2025-10-23 19:10:03.550274+00 f t SUBTOTAL 75000.00 1 10372 \N +410543 2025-10-23 19:10:03.555366+00 2025-10-23 19:10:03.555379+00 f t COSTO_SERVICIO 0.00 2 10372 \N +410544 2025-10-23 19:10:03.557998+00 2025-10-23 19:10:03.558011+00 f t DESCUENTO 0.00 3 10372 \N +410545 2025-10-23 19:10:03.562519+00 2025-10-23 19:10:03.562871+00 f t TOTAL 75000.00 4 10372 \N +410546 2025-10-23 19:10:03.567112+00 2025-10-23 19:10:03.567125+00 f t ADELANTO 15000.00 5 10372 \N +410757 2025-10-23 21:53:46.966066+00 2025-10-23 21:53:46.966073+00 f t SUBTOTAL 46000.00 1 10374 \N +410758 2025-10-23 21:53:46.967841+00 2025-10-23 21:53:46.967847+00 f t COSTO_SERVICIO 0.00 2 10374 \N +410759 2025-10-23 21:53:46.968848+00 2025-10-23 21:53:46.968853+00 f t DESCUENTO 0.00 3 10374 \N +410760 2025-10-23 21:53:46.969894+00 2025-10-23 21:53:46.969899+00 f t TOTAL 46000.00 4 10374 \N +410761 2025-10-23 21:53:46.970822+00 2025-10-23 21:53:46.970827+00 f t ADELANTO 11000.00 5 10374 \N +395729 2025-10-19 05:34:32.584013+00 2025-10-19 05:34:32.584021+00 f t SUBTOTAL 55000.00 1 10012 \N +395730 2025-10-19 05:34:32.585425+00 2025-10-19 05:34:32.585431+00 f t DESCUENTO 0.00 2 10012 \N +395731 2025-10-19 05:34:32.586647+00 2025-10-19 05:34:32.586652+00 f t TOTAL 55000.00 3 10012 \N +395732 2025-10-19 05:34:32.587641+00 2025-10-19 05:34:32.587645+00 f t ADELANTO 11000.00 4 10012 \N +395745 2025-10-19 09:35:43.010727+00 2025-10-19 09:35:43.01074+00 f t SUBTOTAL 0.00 1 10013 \N +395746 2025-10-19 09:35:43.013073+00 2025-10-19 09:35:43.013085+00 f t DESCUENTO 0.00 2 10013 \N +395747 2025-10-19 09:35:43.019573+00 2025-10-19 09:35:43.019587+00 f t TOTAL 0.00 3 10013 \N +395748 2025-10-19 09:35:43.021891+00 2025-10-19 09:35:43.021903+00 f t ADELANTO 0.00 4 10013 \N +403002 2025-10-21 18:07:59.828822+00 2025-10-21 18:07:59.82883+00 f t SUBTOTAL 46000.00 1 10211 \N +403003 2025-10-21 18:07:59.830838+00 2025-10-21 18:07:59.830848+00 f t COSTO_SERVICIO 0.00 2 10211 \N +403004 2025-10-21 18:07:59.832247+00 2025-10-21 18:07:59.832254+00 f t DESCUENTO 0.00 3 10211 \N +403005 2025-10-21 18:07:59.833602+00 2025-10-21 18:07:59.83361+00 f t TOTAL 46000.00 4 10211 \N +403006 2025-10-21 18:07:59.834853+00 2025-10-21 18:07:59.834859+00 f t ADELANTO 11000.00 5 10211 \N +403447 2025-10-21 19:54:52.953496+00 2025-10-21 19:54:52.953504+00 f t SUBTOTAL 46000.00 1 10223 \N +403448 2025-10-21 19:54:52.955226+00 2025-10-21 19:54:52.955232+00 f t COSTO_SERVICIO 0.00 2 10223 \N +403449 2025-10-21 19:54:52.95645+00 2025-10-21 19:54:52.956455+00 f t DESCUENTO 0.00 3 10223 \N +403450 2025-10-21 19:54:52.957509+00 2025-10-21 19:54:52.957514+00 f t TOTAL 46000.00 4 10223 \N +403451 2025-10-21 19:54:52.958654+00 2025-10-21 19:54:52.958661+00 f t ADELANTO 11000.00 5 10223 \N +426392 2025-10-28 17:59:59.490533+00 2025-10-28 17:59:59.490541+00 f t SUBTOTAL 46000.00 1 10751 \N +426393 2025-10-28 17:59:59.492475+00 2025-10-28 17:59:59.492483+00 f t COSTO_SERVICIO 0.00 2 10751 \N +426394 2025-10-28 17:59:59.493762+00 2025-10-28 17:59:59.493769+00 f t DESCUENTO 0.00 3 10751 \N +426395 2025-10-28 17:59:59.49483+00 2025-10-28 17:59:59.494836+00 f t TOTAL 46000.00 4 10751 \N +426396 2025-10-28 17:59:59.495874+00 2025-10-28 17:59:59.495879+00 f t ADELANTO 11000.00 5 10751 \N +398317 2025-10-20 12:48:53.424274+00 2025-10-20 12:48:53.424283+00 f t SUBTOTAL 0.00 1 10085 \N +398318 2025-10-20 12:48:53.426525+00 2025-10-20 12:48:53.426532+00 f t DESCUENTO 0.00 2 10085 \N +398319 2025-10-20 12:48:53.427898+00 2025-10-20 12:48:53.427905+00 f t TOTAL 0.00 3 10085 \N +398320 2025-10-20 12:48:53.429122+00 2025-10-20 12:48:53.429128+00 f t ADELANTO 0.00 4 10085 \N +407972 2025-10-22 22:45:18.165865+00 2025-10-22 22:45:18.165873+00 f t SUBTOTAL 55000.00 1 10323 \N +407973 2025-10-22 22:45:18.167461+00 2025-10-22 22:45:18.167468+00 f t COSTO_SERVICIO 0.00 2 10323 \N +407974 2025-10-22 22:45:18.168713+00 2025-10-22 22:45:18.168722+00 f t DESCUENTO 0.00 3 10323 \N +407975 2025-10-22 22:45:18.169851+00 2025-10-22 22:45:18.169857+00 f t TOTAL 55000.00 4 10323 \N +399137 2025-10-20 15:06:00.52156+00 2025-10-20 15:06:00.521568+00 f t SUBTOTAL 23000.00 1 10108 \N +399138 2025-10-20 15:06:00.523711+00 2025-10-20 15:06:00.523718+00 f t DESCUENTO 0.00 2 10108 \N +399139 2025-10-20 15:06:00.525128+00 2025-10-20 15:06:00.525134+00 f t TOTAL 23000.00 3 10108 \N +399140 2025-10-20 15:06:00.526209+00 2025-10-20 15:06:00.526215+00 f t ADELANTO 5500.00 4 10108 \N +407976 2025-10-22 22:45:18.170861+00 2025-10-22 22:45:18.170866+00 f t ADELANTO 11000.00 5 10323 \N +408142 2025-10-23 01:42:58.41581+00 2025-10-23 01:42:58.415819+00 f t SUBTOTAL 0.00 1 10328 \N +408143 2025-10-23 01:42:58.417818+00 2025-10-23 01:42:58.417824+00 f t COSTO_SERVICIO 0.00 2 10328 \N +408144 2025-10-23 01:42:58.41902+00 2025-10-23 01:42:58.419026+00 f t DESCUENTO 0.00 3 10328 \N +408145 2025-10-23 01:42:58.420117+00 2025-10-23 01:42:58.420123+00 f t TOTAL 0.00 4 10328 \N +408146 2025-10-23 01:42:58.421378+00 2025-10-23 01:42:58.421384+00 f t ADELANTO 0.00 5 10328 \N +400053 2025-10-20 20:19:38.626654+00 2025-10-20 20:19:38.626667+00 f t SUBTOTAL 30000.00 1 10140 \N +400054 2025-10-20 20:19:38.628822+00 2025-10-20 20:19:38.628832+00 f t DESCUENTO 0.00 2 10140 \N +400055 2025-10-20 20:19:38.630622+00 2025-10-20 20:19:38.630632+00 f t TOTAL 30000.00 3 10140 \N +400056 2025-10-20 20:19:38.632222+00 2025-10-20 20:19:38.632233+00 f t ADELANTO 30000.00 4 10140 \N +395885 2025-10-19 09:51:45.233798+00 2025-10-19 09:51:45.233807+00 f t SUBTOTAL 55000.00 1 10015 \N +395886 2025-10-19 09:51:45.23571+00 2025-10-19 09:51:45.235719+00 f t DESCUENTO 0.00 2 10015 \N +395887 2025-10-19 09:51:45.237145+00 2025-10-19 09:51:45.237156+00 f t TOTAL 55000.00 3 10015 \N +395888 2025-10-19 09:51:45.238528+00 2025-10-19 09:51:45.238534+00 f t ADELANTO 11000.00 4 10015 \N +409012 2025-10-23 07:06:18.407885+00 2025-10-23 07:06:18.407891+00 f t SUBTOTAL 78000.00 1 10340 \N +409013 2025-10-23 07:06:18.409489+00 2025-10-23 07:06:18.409495+00 f t COSTO_SERVICIO 0.00 2 10340 \N +409014 2025-10-23 07:06:18.410632+00 2025-10-23 07:06:18.410637+00 f t DESCUENTO 0.00 3 10340 \N +409015 2025-10-23 07:06:18.411663+00 2025-10-23 07:06:18.411669+00 f t TOTAL 78000.00 4 10340 \N +409016 2025-10-23 07:06:18.412548+00 2025-10-23 07:06:18.412554+00 f t ADELANTO 21500.00 5 10340 \N +409277 2025-10-23 13:17:02.358516+00 2025-10-23 13:17:02.358526+00 f t SUBTOTAL 55000.00 1 10346 \N +409278 2025-10-23 13:17:02.362105+00 2025-10-23 13:17:02.362115+00 f t COSTO_SERVICIO 0.00 2 10346 \N +409279 2025-10-23 13:17:02.363841+00 2025-10-23 13:17:02.363851+00 f t DESCUENTO 0.00 3 10346 \N +409280 2025-10-23 13:17:02.365455+00 2025-10-23 13:17:02.365464+00 f t TOTAL 55000.00 4 10346 \N +409281 2025-10-23 13:17:02.366951+00 2025-10-23 13:17:02.366959+00 f t ADELANTO 11000.00 5 10346 \N +395929 2025-10-19 10:46:07.338483+00 2025-10-19 10:46:07.338491+00 f t SUBTOTAL 55000.00 1 10016 \N +395930 2025-10-19 10:46:07.340221+00 2025-10-19 10:46:07.340229+00 f t DESCUENTO 0.00 2 10016 \N +395931 2025-10-19 10:46:07.344912+00 2025-10-19 10:46:07.344922+00 f t TOTAL 55000.00 3 10016 \N +395932 2025-10-19 10:46:07.346616+00 2025-10-19 10:46:07.346626+00 f t ADELANTO 11000.00 4 10016 \N +410437 2025-10-23 18:15:07.150234+00 2025-10-23 18:15:07.150246+00 f t SUBTOTAL 30000.00 1 10367 \N +410438 2025-10-23 18:15:07.152509+00 2025-10-23 18:15:07.15252+00 f t COSTO_SERVICIO 0.00 2 10367 \N +410439 2025-10-23 18:15:07.154149+00 2025-10-23 18:15:07.154158+00 f t DESCUENTO 0.00 3 10367 \N +410440 2025-10-23 18:15:07.155514+00 2025-10-23 18:15:07.155522+00 f t TOTAL 30000.00 4 10367 \N +410441 2025-10-23 18:15:07.156913+00 2025-10-23 18:15:07.156921+00 f t ADELANTO 30000.00 5 10367 \N +395969 2025-10-19 11:21:15.559449+00 2025-10-19 11:21:15.559458+00 f t SUBTOTAL 46000.00 1 10017 \N +395970 2025-10-19 11:21:15.56116+00 2025-10-19 11:21:15.561167+00 f t DESCUENTO 0.00 2 10017 \N +395971 2025-10-19 11:21:15.562787+00 2025-10-19 11:21:15.562797+00 f t TOTAL 46000.00 3 10017 \N +395972 2025-10-19 11:21:15.564608+00 2025-10-19 11:21:15.564618+00 f t ADELANTO 11000.00 4 10017 \N +410647 2025-10-23 20:05:32.321562+00 2025-10-23 20:05:32.321571+00 f t SUBTOTAL 53700.00 1 10373 \N +410648 2025-10-23 20:05:32.323371+00 2025-10-23 20:05:32.323377+00 f t COSTO_SERVICIO 0.00 2 10373 \N +410649 2025-10-23 20:05:32.324477+00 2025-10-23 20:05:32.324483+00 f t DESCUENTO 0.00 3 10373 \N +410650 2025-10-23 20:05:32.32561+00 2025-10-23 20:05:32.325615+00 f t TOTAL 53700.00 4 10373 \N +410651 2025-10-23 20:05:32.326541+00 2025-10-23 20:05:32.326546+00 f t ADELANTO 13200.00 5 10373 \N +395997 2025-10-19 11:25:43.30579+00 2025-10-19 11:25:43.305798+00 f t SUBTOTAL 55000.00 1 10018 \N +395998 2025-10-19 11:25:43.307499+00 2025-10-19 11:25:43.307506+00 f t DESCUENTO 0.00 2 10018 \N +395999 2025-10-19 11:25:43.30865+00 2025-10-19 11:25:43.308655+00 f t TOTAL 55000.00 3 10018 \N +396000 2025-10-19 11:25:43.309744+00 2025-10-19 11:25:43.30975+00 f t ADELANTO 11000.00 4 10018 \N +396005 2025-10-19 11:54:42.152908+00 2025-10-19 11:54:42.152917+00 f t SUBTOTAL 0.00 1 10019 \N +396006 2025-10-19 11:54:42.154534+00 2025-10-19 11:54:42.154545+00 f t DESCUENTO 0.00 2 10019 \N +396007 2025-10-19 11:54:42.156183+00 2025-10-19 11:54:42.156191+00 f t TOTAL 0.00 3 10019 \N +396008 2025-10-19 11:54:42.15753+00 2025-10-19 11:54:42.157537+00 f t ADELANTO 0.00 4 10019 \N +402437 2025-10-21 16:00:36.77102+00 2025-10-21 16:00:36.771032+00 f t SUBTOTAL 55000.00 1 10201 \N +402438 2025-10-21 16:00:36.77375+00 2025-10-21 16:00:36.773764+00 f t COSTO_SERVICIO 0.00 2 10201 \N +402439 2025-10-21 16:00:36.776226+00 2025-10-21 16:00:36.776239+00 f t DESCUENTO 0.00 3 10201 \N +402440 2025-10-21 16:00:36.778274+00 2025-10-21 16:00:36.778285+00 f t TOTAL 55000.00 4 10201 \N +402441 2025-10-21 16:00:36.780158+00 2025-10-21 16:00:36.780169+00 f t ADELANTO 11000.00 5 10201 \N +396033 2025-10-19 11:56:44.989635+00 2025-10-19 11:56:44.989644+00 f t SUBTOTAL 68000.00 1 10020 \N +396034 2025-10-19 11:56:44.991858+00 2025-10-19 11:56:44.991867+00 f t DESCUENTO 0.00 2 10020 \N +396035 2025-10-19 11:56:44.993792+00 2025-10-19 11:56:44.993802+00 f t TOTAL 68000.00 3 10020 \N +396036 2025-10-19 11:56:44.995492+00 2025-10-19 11:56:44.9955+00 f t ADELANTO 13000.00 4 10020 \N +396069 2025-10-19 12:48:43.692696+00 2025-10-19 12:48:43.692704+00 f t SUBTOTAL 46000.00 1 10021 \N +396070 2025-10-19 12:48:43.694258+00 2025-10-19 12:48:43.694263+00 f t DESCUENTO 0.00 2 10021 \N +396071 2025-10-19 12:48:43.69537+00 2025-10-19 12:48:43.695375+00 f t TOTAL 46000.00 3 10021 \N +396072 2025-10-19 12:48:43.696342+00 2025-10-19 12:48:43.696347+00 f t ADELANTO 11000.00 4 10021 \N +416112 2025-10-25 22:41:59.244223+00 2025-10-25 22:41:59.24423+00 f t SUBTOTAL 87000.00 1 10501 \N +397737 2025-10-20 10:41:17.051291+00 2025-10-20 10:41:17.0513+00 f t SUBTOTAL 78000.00 1 10073 \N +397738 2025-10-20 10:41:17.053071+00 2025-10-20 10:41:17.05308+00 f t DESCUENTO 0.00 2 10073 \N +397739 2025-10-20 10:41:17.054471+00 2025-10-20 10:41:17.054483+00 f t TOTAL 78000.00 3 10073 \N +397740 2025-10-20 10:41:17.055651+00 2025-10-20 10:41:17.055656+00 f t ADELANTO 13000.00 4 10073 \N +396097 2025-10-19 12:49:39.584414+00 2025-10-19 12:49:39.584424+00 f t SUBTOTAL 55000.00 1 10022 \N +396098 2025-10-19 12:49:39.586065+00 2025-10-19 12:49:39.586075+00 f t DESCUENTO 0.00 2 10022 \N +396099 2025-10-19 12:49:39.587313+00 2025-10-19 12:49:39.587319+00 f t TOTAL 55000.00 3 10022 \N +396100 2025-10-19 12:49:39.588433+00 2025-10-19 12:49:39.588438+00 f t ADELANTO 11000.00 4 10022 \N +407257 2025-10-22 18:54:34.987661+00 2025-10-22 18:54:34.987668+00 f t SUBTOTAL 46000.00 1 10306 \N +407258 2025-10-22 18:54:34.989563+00 2025-10-22 18:54:34.989569+00 f t COSTO_SERVICIO 0.00 2 10306 \N +407259 2025-10-22 18:54:34.990664+00 2025-10-22 18:54:34.990669+00 f t DESCUENTO 0.00 3 10306 \N +407260 2025-10-22 18:54:34.991917+00 2025-10-22 18:54:34.991922+00 f t TOTAL 46000.00 4 10306 \N +407261 2025-10-22 18:54:34.992948+00 2025-10-22 18:54:34.992954+00 f t ADELANTO 11000.00 5 10306 \N +396133 2025-10-19 12:59:21.732838+00 2025-10-19 12:59:21.73285+00 f t SUBTOTAL 55000.00 1 10023 \N +396134 2025-10-19 12:59:21.734915+00 2025-10-19 12:59:21.734925+00 f t DESCUENTO 0.00 2 10023 \N +396135 2025-10-19 12:59:21.736422+00 2025-10-19 12:59:21.736432+00 f t TOTAL 55000.00 3 10023 \N +396136 2025-10-19 12:59:21.737715+00 2025-10-19 12:59:21.737724+00 f t ADELANTO 11000.00 4 10023 \N +399145 2025-10-20 15:15:52.348252+00 2025-10-20 15:15:52.34826+00 f t SUBTOTAL 0.00 1 10109 \N +399146 2025-10-20 15:15:52.349521+00 2025-10-20 15:15:52.349528+00 f t DESCUENTO 0.00 2 10109 \N +399147 2025-10-20 15:15:52.350701+00 2025-10-20 15:15:52.350706+00 f t TOTAL 0.00 3 10109 \N +399148 2025-10-20 15:15:52.351703+00 2025-10-20 15:15:52.351709+00 f t ADELANTO 0.00 4 10109 \N +396161 2025-10-19 13:01:21.290335+00 2025-10-19 13:01:21.290347+00 f t SUBTOTAL 54000.00 1 10024 \N +396162 2025-10-19 13:01:21.292441+00 2025-10-19 13:01:21.292452+00 f t DESCUENTO 0.00 2 10024 \N +396163 2025-10-19 13:01:21.294857+00 2025-10-19 13:01:21.294866+00 f t TOTAL 54000.00 3 10024 \N +396164 2025-10-19 13:01:21.296373+00 2025-10-19 13:01:21.296382+00 f t ADELANTO 13500.00 4 10024 \N +396169 2025-10-19 13:14:10.881681+00 2025-10-19 13:14:10.881694+00 f t SUBTOTAL 0.00 1 10025 \N +396170 2025-10-19 13:14:10.883878+00 2025-10-19 13:14:10.883891+00 f t DESCUENTO 0.00 2 10025 \N +396171 2025-10-19 13:14:10.885519+00 2025-10-19 13:14:10.885527+00 f t TOTAL 0.00 3 10025 \N +396172 2025-10-19 13:14:10.8868+00 2025-10-19 13:14:10.886805+00 f t ADELANTO 0.00 4 10025 \N +396181 2025-10-19 14:16:05.220038+00 2025-10-19 14:16:05.220047+00 f t SUBTOTAL 46000.00 1 10014 \N +396182 2025-10-19 14:16:05.221892+00 2025-10-19 14:16:05.2219+00 f t DESCUENTO 0.00 2 10014 \N +396183 2025-10-19 14:16:05.223207+00 2025-10-19 14:16:05.223214+00 f t TOTAL 46000.00 3 10014 \N +396184 2025-10-19 14:16:05.224695+00 2025-10-19 14:16:05.224702+00 f t ADELANTO 11000.00 4 10014 \N +396193 2025-10-19 14:23:52.490608+00 2025-10-19 14:23:52.490617+00 f t SUBTOTAL 55000.00 1 10011 \N +396194 2025-10-19 14:23:52.492624+00 2025-10-19 14:23:52.492631+00 f t DESCUENTO 0.00 2 10011 \N +396195 2025-10-19 14:23:52.494043+00 2025-10-19 14:23:52.49405+00 f t TOTAL 55000.00 3 10011 \N +396196 2025-10-19 14:23:52.495374+00 2025-10-19 14:23:52.495419+00 f t ADELANTO 11000.00 4 10011 \N +400349 2025-10-20 21:59:12.484519+00 2025-10-20 21:59:12.484527+00 f t SUBTOTAL 55000.00 1 10147 \N +400350 2025-10-20 21:59:12.486479+00 2025-10-20 21:59:12.486488+00 f t DESCUENTO 0.00 2 10147 \N +400351 2025-10-20 21:59:12.487616+00 2025-10-20 21:59:12.487622+00 f t TOTAL 55000.00 3 10147 \N +400352 2025-10-20 21:59:12.488654+00 2025-10-20 21:59:12.48866+00 f t ADELANTO 11000.00 4 10147 \N +400441 2025-10-20 22:06:46.374991+00 2025-10-20 22:06:46.375003+00 f t SUBTOTAL 46000.00 1 10148 \N +400442 2025-10-20 22:06:46.377066+00 2025-10-20 22:06:46.377077+00 f t DESCUENTO 0.00 2 10148 \N +400443 2025-10-20 22:06:46.37847+00 2025-10-20 22:06:46.378477+00 f t TOTAL 46000.00 3 10148 \N +400444 2025-10-20 22:06:46.379725+00 2025-10-20 22:06:46.379731+00 f t ADELANTO 11000.00 4 10148 \N +396229 2025-10-19 14:44:08.714853+00 2025-10-19 14:44:08.714862+00 f t SUBTOTAL 53700.00 1 10026 \N +396230 2025-10-19 14:44:08.716447+00 2025-10-19 14:44:08.716454+00 f t DESCUENTO 0.00 2 10026 \N +396231 2025-10-19 14:44:08.717561+00 2025-10-19 14:44:08.717568+00 f t TOTAL 53700.00 3 10026 \N +396232 2025-10-19 14:44:08.718583+00 2025-10-19 14:44:08.718589+00 f t ADELANTO 13200.00 4 10026 \N +401337 2025-10-21 11:52:17.252973+00 2025-10-21 11:52:17.252981+00 f t SUBTOTAL 55000.00 1 10174 \N +401338 2025-10-21 11:52:17.254937+00 2025-10-21 11:52:17.254943+00 f t DESCUENTO 0.00 2 10174 \N +401339 2025-10-21 11:52:17.256229+00 2025-10-21 11:52:17.256235+00 f t TOTAL 55000.00 3 10174 \N +401340 2025-10-21 11:52:17.257417+00 2025-10-21 11:52:17.257422+00 f t ADELANTO 11000.00 4 10174 \N +401429 2025-10-21 12:00:35.085404+00 2025-10-21 12:00:35.085417+00 f t SUBTOTAL 0.00 1 10175 \N +396257 2025-10-19 14:45:06.575762+00 2025-10-19 14:45:06.575771+00 f t SUBTOTAL 55000.00 1 10027 \N +396258 2025-10-19 14:45:06.577577+00 2025-10-19 14:45:06.577585+00 f t DESCUENTO 0.00 2 10027 \N +396259 2025-10-19 14:45:06.579218+00 2025-10-19 14:45:06.579226+00 f t TOTAL 55000.00 3 10027 \N +396260 2025-10-19 14:45:06.580736+00 2025-10-19 14:45:06.580744+00 f t ADELANTO 11000.00 4 10027 \N +401430 2025-10-21 12:00:35.088034+00 2025-10-21 12:00:35.088047+00 f t DESCUENTO 0.00 2 10175 \N +401431 2025-10-21 12:00:35.089819+00 2025-10-21 12:00:35.089831+00 f t TOTAL 0.00 3 10175 \N +401432 2025-10-21 12:00:35.091513+00 2025-10-21 12:00:35.091522+00 f t ADELANTO 0.00 4 10175 \N +396293 2025-10-19 14:56:48.404557+00 2025-10-19 14:56:48.404565+00 f t SUBTOTAL 55000.00 1 10028 \N +396294 2025-10-19 14:56:48.406352+00 2025-10-19 14:56:48.406359+00 f t DESCUENTO 0.00 2 10028 \N +396295 2025-10-19 14:56:48.407563+00 2025-10-19 14:56:48.407568+00 f t TOTAL 55000.00 3 10028 \N +396296 2025-10-19 14:56:48.408679+00 2025-10-19 14:56:48.408684+00 f t ADELANTO 11000.00 4 10028 \N +402327 2025-10-21 15:49:35.137244+00 2025-10-21 15:49:35.137252+00 f t SUBTOTAL 23000.00 1 10198 \N +402328 2025-10-21 15:49:35.139203+00 2025-10-21 15:49:35.139209+00 f t COSTO_SERVICIO 0.00 2 10198 \N +402329 2025-10-21 15:49:35.140498+00 2025-10-21 15:49:35.140505+00 f t DESCUENTO 0.00 3 10198 \N +402330 2025-10-21 15:49:35.143121+00 2025-10-21 15:49:35.143263+00 f t TOTAL 23000.00 4 10198 \N +402331 2025-10-21 15:49:35.144489+00 2025-10-21 15:49:35.144495+00 f t ADELANTO 5500.00 5 10198 \N +396329 2025-10-19 15:01:39.194017+00 2025-10-19 15:01:39.194025+00 f t SUBTOTAL 30000.00 1 10029 \N +396330 2025-10-19 15:01:39.195594+00 2025-10-19 15:01:39.195602+00 f t DESCUENTO 0.00 2 10029 \N +396331 2025-10-19 15:01:39.197197+00 2025-10-19 15:01:39.197204+00 f t TOTAL 30000.00 3 10029 \N +396332 2025-10-19 15:01:39.198444+00 2025-10-19 15:01:39.198452+00 f t ADELANTO 30000.00 4 10029 \N +403282 2025-10-21 19:25:12.642756+00 2025-10-21 19:25:12.642767+00 f t SUBTOTAL 99400.00 1 10218 \N +403283 2025-10-21 19:25:12.64743+00 2025-10-21 19:25:12.647443+00 f t COSTO_SERVICIO 0.00 2 10218 \N +403284 2025-10-21 19:25:12.649326+00 2025-10-21 19:25:12.649336+00 f t DESCUENTO 0.00 3 10218 \N +403285 2025-10-21 19:25:12.650948+00 2025-10-21 19:25:12.650957+00 f t TOTAL 99400.00 4 10218 \N +403286 2025-10-21 19:25:12.652467+00 2025-10-21 19:25:12.652476+00 f t ADELANTO 58900.00 5 10218 \N +416113 2025-10-25 22:41:59.245955+00 2025-10-25 22:41:59.245962+00 f t COSTO_SERVICIO 0.00 2 10501 \N +416114 2025-10-25 22:41:59.247542+00 2025-10-25 22:41:59.24755+00 f t DESCUENTO 0.00 3 10501 \N +416115 2025-10-25 22:41:59.248809+00 2025-10-25 22:41:59.248816+00 f t TOTAL 87000.00 4 10501 \N +416116 2025-10-25 22:41:59.249823+00 2025-10-25 22:41:59.249831+00 f t ADELANTO 87000.00 5 10501 \N +416317 2025-10-25 22:46:50.5707+00 2025-10-25 22:46:50.570712+00 f t SUBTOTAL 46000.00 1 10520 \N +416318 2025-10-25 22:46:50.572879+00 2025-10-25 22:46:50.572889+00 f t COSTO_SERVICIO 0.00 2 10520 \N +396381 2025-10-19 15:19:20.169849+00 2025-10-19 15:19:20.169857+00 f t SUBTOTAL 46000.00 1 10030 \N +396382 2025-10-19 15:19:20.171439+00 2025-10-19 15:19:20.171447+00 f t DESCUENTO 0.00 2 10030 \N +396383 2025-10-19 15:19:20.172841+00 2025-10-19 15:19:20.172848+00 f t TOTAL 46000.00 3 10030 \N +396384 2025-10-19 15:19:20.1741+00 2025-10-19 15:19:20.174106+00 f t ADELANTO 11000.00 4 10030 \N +416319 2025-10-25 22:46:50.574214+00 2025-10-25 22:46:50.574222+00 f t DESCUENTO 0.00 3 10520 \N +416320 2025-10-25 22:46:50.575429+00 2025-10-25 22:46:50.575436+00 f t TOTAL 46000.00 4 10520 \N +416321 2025-10-25 22:46:50.576622+00 2025-10-25 22:46:50.576631+00 f t ADELANTO 11000.00 5 10520 \N +397885 2025-10-20 11:06:48.094321+00 2025-10-20 11:06:48.094332+00 f t SUBTOTAL 54000.00 1 10075 \N +397886 2025-10-20 11:06:48.096523+00 2025-10-20 11:06:48.096534+00 f t DESCUENTO 0.00 2 10075 \N +397887 2025-10-20 11:06:48.098058+00 2025-10-20 11:06:48.098067+00 f t TOTAL 54000.00 3 10075 \N +397888 2025-10-20 11:06:48.099459+00 2025-10-20 11:06:48.099469+00 f t ADELANTO 13500.00 4 10075 \N +398329 2025-10-20 12:58:54.514829+00 2025-10-20 12:58:54.514836+00 f t SUBTOTAL 55000.00 1 10086 \N +398330 2025-10-20 12:58:54.516601+00 2025-10-20 12:58:54.516608+00 f t DESCUENTO 0.00 2 10086 \N +398331 2025-10-20 12:58:54.517755+00 2025-10-20 12:58:54.517761+00 f t TOTAL 55000.00 3 10086 \N +398332 2025-10-20 12:58:54.518837+00 2025-10-20 12:58:54.518844+00 f t ADELANTO 11000.00 4 10086 \N +407267 2025-10-22 19:03:53.396679+00 2025-10-22 19:03:53.396687+00 f t SUBTOTAL 0.00 1 10307 \N +407268 2025-10-22 19:03:53.397908+00 2025-10-22 19:03:53.397915+00 f t COSTO_SERVICIO 0.00 2 10307 \N +407269 2025-10-22 19:03:53.398975+00 2025-10-22 19:03:53.398981+00 f t DESCUENTO 0.00 3 10307 \N +407270 2025-10-22 19:03:53.399947+00 2025-10-22 19:03:53.399952+00 f t TOTAL 0.00 4 10307 \N +407271 2025-10-22 19:03:53.400831+00 2025-10-22 19:03:53.400836+00 f t ADELANTO 0.00 5 10307 \N +396417 2025-10-19 15:49:41.16037+00 2025-10-19 15:49:41.160378+00 f t SUBTOTAL 55000.00 1 10031 \N +396418 2025-10-19 15:49:41.162041+00 2025-10-19 15:49:41.16205+00 f t DESCUENTO 0.00 2 10031 \N +396419 2025-10-19 15:49:41.163243+00 2025-10-19 15:49:41.163248+00 f t TOTAL 55000.00 3 10031 \N +396420 2025-10-19 15:49:41.164361+00 2025-10-19 15:49:41.164366+00 f t ADELANTO 11000.00 4 10031 \N +396465 2025-10-19 16:34:04.568549+00 2025-10-19 16:34:04.568565+00 f t SUBTOTAL 46000.00 1 10032 \N +396466 2025-10-19 16:34:04.570445+00 2025-10-19 16:34:04.570453+00 f t DESCUENTO 0.00 2 10032 \N +396467 2025-10-19 16:34:04.572+00 2025-10-19 16:34:04.572007+00 f t TOTAL 46000.00 3 10032 \N +396468 2025-10-19 16:34:04.573336+00 2025-10-19 16:34:04.573343+00 f t ADELANTO 11000.00 4 10032 \N +400257 2025-10-20 21:49:00.117416+00 2025-10-20 21:49:00.117429+00 f t SUBTOTAL 0.00 1 10145 \N +400258 2025-10-20 21:49:00.119747+00 2025-10-20 21:49:00.119755+00 f t DESCUENTO 0.00 2 10145 \N +400259 2025-10-20 21:49:00.121059+00 2025-10-20 21:49:00.121065+00 f t TOTAL 0.00 3 10145 \N +400260 2025-10-20 21:49:00.122161+00 2025-10-20 21:49:00.122167+00 f t ADELANTO 0.00 4 10145 \N +400449 2025-10-20 22:15:09.539541+00 2025-10-20 22:15:09.539551+00 f t SUBTOTAL 0.00 1 10149 \N +400450 2025-10-20 22:15:09.541395+00 2025-10-20 22:15:09.541407+00 f t DESCUENTO 0.00 2 10149 \N +396497 2025-10-19 16:39:48.862802+00 2025-10-19 16:39:48.862812+00 f t SUBTOTAL 30000.00 1 10033 \N +396498 2025-10-19 16:39:48.864902+00 2025-10-19 16:39:48.864912+00 f t DESCUENTO 0.00 2 10033 \N +396499 2025-10-19 16:39:48.866695+00 2025-10-19 16:39:48.866702+00 f t TOTAL 30000.00 3 10033 \N +396500 2025-10-19 16:39:48.867919+00 2025-10-19 16:39:48.867924+00 f t ADELANTO 30000.00 4 10033 \N +400451 2025-10-20 22:15:09.54303+00 2025-10-20 22:15:09.543039+00 f t TOTAL 0.00 3 10149 \N +400452 2025-10-20 22:15:09.545101+00 2025-10-20 22:15:09.545112+00 f t ADELANTO 0.00 4 10149 \N +400657 2025-10-21 00:19:47.101654+00 2025-10-21 00:19:47.101666+00 f t SUBTOTAL 45000.00 1 10157 \N +400658 2025-10-21 00:19:47.10387+00 2025-10-21 00:19:47.103881+00 f t DESCUENTO 0.00 2 10157 \N +400659 2025-10-21 00:19:47.105464+00 2025-10-21 00:19:47.105475+00 f t TOTAL 45000.00 3 10157 \N +400660 2025-10-21 00:19:47.107029+00 2025-10-21 00:19:47.107038+00 f t ADELANTO 45000.00 4 10157 \N +401045 2025-10-21 02:57:31.063754+00 2025-10-21 02:57:31.063762+00 f t SUBTOTAL 54000.00 1 10166 \N +401046 2025-10-21 02:57:31.065519+00 2025-10-21 02:57:31.065526+00 f t DESCUENTO 0.00 2 10166 \N +401047 2025-10-21 02:57:31.066653+00 2025-10-21 02:57:31.066659+00 f t TOTAL 54000.00 3 10166 \N +401048 2025-10-21 02:57:31.067761+00 2025-10-21 02:57:31.067768+00 f t ADELANTO 13500.00 4 10166 \N +396537 2025-10-19 16:51:40.187795+00 2025-10-19 16:51:40.187804+00 f t SUBTOTAL 0.00 1 10034 \N +396538 2025-10-19 16:51:40.18952+00 2025-10-19 16:51:40.189529+00 f t DESCUENTO 0.00 2 10034 \N +396539 2025-10-19 16:51:40.190547+00 2025-10-19 16:51:40.190552+00 f t TOTAL 0.00 3 10034 \N +396540 2025-10-19 16:51:40.191515+00 2025-10-19 16:51:40.19152+00 f t ADELANTO 0.00 4 10034 \N +396549 2025-10-19 17:25:42.064591+00 2025-10-19 17:25:42.0646+00 f t SUBTOTAL 61400.00 1 10035 \N +396550 2025-10-19 17:25:42.066802+00 2025-10-19 17:25:42.066811+00 f t DESCUENTO 0.00 2 10035 \N +396551 2025-10-19 17:25:42.068358+00 2025-10-19 17:25:42.06837+00 f t TOTAL 61400.00 3 10035 \N +396552 2025-10-19 17:25:42.070015+00 2025-10-19 17:25:42.070025+00 f t ADELANTO 15400.00 4 10035 \N +410327 2025-10-23 17:17:22.296109+00 2025-10-23 17:17:22.296117+00 f t SUBTOTAL 0.00 1 10364 \N +410328 2025-10-23 17:17:22.298386+00 2025-10-23 17:17:22.298394+00 f t COSTO_SERVICIO 0.00 2 10364 \N +396589 2025-10-19 18:04:00.774191+00 2025-10-19 18:04:00.7742+00 f t SUBTOTAL 46000.00 1 10036 \N +396590 2025-10-19 18:04:00.775698+00 2025-10-19 18:04:00.775705+00 f t DESCUENTO 0.00 2 10036 \N +396591 2025-10-19 18:04:00.776735+00 2025-10-19 18:04:00.77674+00 f t TOTAL 46000.00 3 10036 \N +396592 2025-10-19 18:04:00.777775+00 2025-10-19 18:04:00.77778+00 f t ADELANTO 11000.00 4 10036 \N +410329 2025-10-23 17:17:22.299548+00 2025-10-23 17:17:22.299553+00 f t DESCUENTO 0.00 3 10364 \N +410330 2025-10-23 17:17:22.300814+00 2025-10-23 17:17:22.300821+00 f t TOTAL 0.00 4 10364 \N +410331 2025-10-23 17:17:22.301836+00 2025-10-23 17:17:22.301841+00 f t ADELANTO 0.00 5 10364 \N +411057 2025-10-24 00:22:01.226147+00 2025-10-24 00:22:01.226157+00 f t SUBTOTAL 0.00 1 10393 \N +411058 2025-10-24 00:22:01.227798+00 2025-10-24 00:22:01.227805+00 f t COSTO_SERVICIO 0.00 2 10393 \N +411059 2025-10-24 00:22:01.229108+00 2025-10-24 00:22:01.229113+00 f t DESCUENTO 0.00 3 10393 \N +411060 2025-10-24 00:22:01.230272+00 2025-10-24 00:22:01.230278+00 f t TOTAL 0.00 4 10393 \N +411061 2025-10-24 00:22:01.231286+00 2025-10-24 00:22:01.231292+00 f t ADELANTO 0.00 5 10393 \N +411477 2025-10-24 04:48:18.023298+00 2025-10-24 04:48:18.023305+00 f t SUBTOTAL 54000.00 1 10405 \N +411478 2025-10-24 04:48:18.025094+00 2025-10-24 04:48:18.025102+00 f t COSTO_SERVICIO 0.00 2 10405 \N +411479 2025-10-24 04:48:18.026337+00 2025-10-24 04:48:18.026345+00 f t DESCUENTO 0.00 3 10405 \N +406702 2025-10-22 16:15:39.347229+00 2025-10-22 16:15:39.347239+00 f t SUBTOTAL 0.00 1 10294 \N +406703 2025-10-22 16:15:39.348996+00 2025-10-22 16:15:39.349003+00 f t COSTO_SERVICIO 0.00 2 10294 \N +406704 2025-10-22 16:15:39.350007+00 2025-10-22 16:15:39.350014+00 f t DESCUENTO 0.00 3 10294 \N +406705 2025-10-22 16:15:39.351538+00 2025-10-22 16:15:39.351546+00 f t TOTAL 0.00 4 10294 \N +406706 2025-10-22 16:15:39.35264+00 2025-10-22 16:15:39.352647+00 f t ADELANTO 0.00 5 10294 \N +445989 2025-11-01 20:35:44.85308+00 2025-11-01 20:35:44.853085+00 f t DESCUENTO 0.00 3 11222 \N +445990 2025-11-01 20:35:44.854119+00 2025-11-01 20:35:44.854124+00 f t TOTAL 0.00 4 11222 \N +445991 2025-11-01 20:35:44.854977+00 2025-11-01 20:35:44.854982+00 f t ADELANTO 0.00 5 11222 \N +397893 2025-10-20 11:10:49.363788+00 2025-10-20 11:10:49.363798+00 f t SUBTOTAL 0.00 1 10076 \N +397894 2025-10-20 11:10:49.365266+00 2025-10-20 11:10:49.365273+00 f t DESCUENTO 0.00 2 10076 \N +397895 2025-10-20 11:10:49.366496+00 2025-10-20 11:10:49.366502+00 f t TOTAL 0.00 3 10076 \N +397896 2025-10-20 11:10:49.367581+00 2025-10-20 11:10:49.367586+00 f t ADELANTO 0.00 4 10076 \N +446646 2025-11-02 10:31:53.731932+00 2025-11-02 10:31:53.731938+00 f t ADELANTO 29500.00 5 11236 \N +446832 2025-11-02 12:57:19.568851+00 2025-11-02 12:57:19.568858+00 f t SUBTOTAL 92000.00 1 11240 \N +446833 2025-11-02 12:57:19.570564+00 2025-11-02 12:57:19.57057+00 f t COSTO_SERVICIO 0.00 2 11240 \N +446834 2025-11-02 12:57:19.571564+00 2025-11-02 12:57:19.571569+00 f t DESCUENTO 9200.00 3 11240 \N +446835 2025-11-02 12:57:19.572458+00 2025-11-02 12:57:19.572463+00 f t TOTAL 82800.00 4 11240 \N +396709 2025-10-19 18:33:25.045387+00 2025-10-19 18:33:25.045395+00 f t SUBTOTAL 55000.00 1 10037 \N +396710 2025-10-19 18:33:25.047224+00 2025-10-19 18:33:25.047231+00 f t DESCUENTO 0.00 2 10037 \N +396711 2025-10-19 18:33:25.048528+00 2025-10-19 18:33:25.048535+00 f t TOTAL 55000.00 3 10037 \N +396712 2025-10-19 18:33:25.049784+00 2025-10-19 18:33:25.049791+00 f t ADELANTO 11000.00 4 10037 \N +396717 2025-10-19 18:52:17.8868+00 2025-10-19 18:52:17.886809+00 f t SUBTOTAL 0.00 1 10038 \N +396718 2025-10-19 18:52:17.888376+00 2025-10-19 18:52:17.888383+00 f t DESCUENTO 0.00 2 10038 \N +396719 2025-10-19 18:52:17.889663+00 2025-10-19 18:52:17.889668+00 f t TOTAL 0.00 3 10038 \N +396720 2025-10-19 18:52:17.890888+00 2025-10-19 18:52:17.890894+00 f t ADELANTO 0.00 4 10038 \N +399157 2025-10-20 15:16:33.868049+00 2025-10-20 15:16:33.868057+00 f t SUBTOTAL 55000.00 1 10110 \N +399158 2025-10-20 15:16:33.870086+00 2025-10-20 15:16:33.870092+00 f t DESCUENTO 0.00 2 10110 \N +399159 2025-10-20 15:16:33.871296+00 2025-10-20 15:16:33.871301+00 f t TOTAL 55000.00 3 10110 \N +399160 2025-10-20 15:16:33.872368+00 2025-10-20 15:16:33.872401+00 f t ADELANTO 11000.00 4 10110 \N +409157 2025-10-23 11:30:18.701319+00 2025-10-23 11:30:18.701327+00 f t SUBTOTAL 46000.00 1 10343 \N +409158 2025-10-23 11:30:18.702861+00 2025-10-23 11:30:18.702866+00 f t COSTO_SERVICIO 0.00 2 10343 \N +409159 2025-10-23 11:30:18.703815+00 2025-10-23 11:30:18.70382+00 f t DESCUENTO 0.00 3 10343 \N +409160 2025-10-23 11:30:18.704873+00 2025-10-23 11:30:18.704878+00 f t TOTAL 46000.00 4 10343 \N +409161 2025-10-23 11:30:18.705836+00 2025-10-23 11:30:18.705841+00 f t ADELANTO 11000.00 5 10343 \N +409662 2025-10-23 15:40:52.695404+00 2025-10-23 15:40:52.695413+00 f t SUBTOTAL 55000.00 1 10355 \N +409663 2025-10-23 15:40:52.697332+00 2025-10-23 15:40:52.697338+00 f t COSTO_SERVICIO 0.00 2 10355 \N +409664 2025-10-23 15:40:52.698469+00 2025-10-23 15:40:52.698474+00 f t DESCUENTO 0.00 3 10355 \N +409665 2025-10-23 15:40:52.699527+00 2025-10-23 15:40:52.699532+00 f t TOTAL 55000.00 4 10355 \N +409666 2025-10-23 15:40:52.700509+00 2025-10-23 15:40:52.700514+00 f t ADELANTO 11000.00 5 10355 \N +396813 2025-10-19 18:57:34.979899+00 2025-10-19 18:57:34.979911+00 f t SUBTOTAL 55000.00 1 10039 \N +396814 2025-10-19 18:57:34.982918+00 2025-10-19 18:57:34.982926+00 f t DESCUENTO 0.00 2 10039 \N +396815 2025-10-19 18:57:34.986512+00 2025-10-19 18:57:34.986522+00 f t TOTAL 55000.00 3 10039 \N +396816 2025-10-19 18:57:34.992449+00 2025-10-19 18:57:34.992458+00 f t ADELANTO 11000.00 4 10039 \N +410557 2025-10-23 19:10:13.329222+00 2025-10-23 19:10:13.329234+00 f t SUBTOTAL 0.00 1 10369 \N +410558 2025-10-23 19:10:13.331243+00 2025-10-23 19:10:13.331254+00 f t COSTO_SERVICIO 0.00 2 10369 \N +410559 2025-10-23 19:10:13.332883+00 2025-10-23 19:10:13.33289+00 f t DESCUENTO 0.00 3 10369 \N +410560 2025-10-23 19:10:13.334002+00 2025-10-23 19:10:13.33401+00 f t TOTAL 0.00 4 10369 \N +410561 2025-10-23 19:10:13.334919+00 2025-10-23 19:10:13.334924+00 f t ADELANTO 0.00 5 10369 \N +401437 2025-10-21 12:10:43.425166+00 2025-10-21 12:10:43.425175+00 f t SUBTOTAL 55000.00 1 10172 \N +401438 2025-10-21 12:10:43.426898+00 2025-10-21 12:10:43.426905+00 f t DESCUENTO 0.00 2 10172 \N +401439 2025-10-21 12:10:43.428697+00 2025-10-21 12:10:43.428709+00 f t TOTAL 55000.00 3 10172 \N +401440 2025-10-21 12:10:43.430415+00 2025-10-21 12:10:43.430426+00 f t ADELANTO 11000.00 4 10172 \N +396881 2025-10-19 19:18:01.836707+00 2025-10-19 19:18:01.836716+00 f t SUBTOTAL 30000.00 1 10040 \N +396882 2025-10-19 19:18:01.83844+00 2025-10-19 19:18:01.838448+00 f t DESCUENTO 0.00 2 10040 \N +396883 2025-10-19 19:18:01.83987+00 2025-10-19 19:18:01.839879+00 f t TOTAL 30000.00 3 10040 \N +396884 2025-10-19 19:18:01.841096+00 2025-10-19 19:18:01.841103+00 f t ADELANTO 30000.00 4 10040 \N +396893 2025-10-19 19:48:42.788959+00 2025-10-19 19:48:42.78897+00 f t SUBTOTAL 46000.00 1 10041 \N +396894 2025-10-19 19:48:42.790564+00 2025-10-19 19:48:42.790571+00 f t DESCUENTO 0.00 2 10041 \N +396895 2025-10-19 19:48:42.791645+00 2025-10-19 19:48:42.791651+00 f t TOTAL 46000.00 3 10041 \N +396896 2025-10-19 19:48:42.792605+00 2025-10-19 19:48:42.792611+00 f t ADELANTO 11000.00 4 10041 \N +411480 2025-10-24 04:48:18.027534+00 2025-10-24 04:48:18.02754+00 f t TOTAL 54000.00 4 10405 \N +402572 2025-10-21 16:35:24.021927+00 2025-10-21 16:35:24.021935+00 f t SUBTOTAL 78000.00 1 10159 \N +402573 2025-10-21 16:35:24.023962+00 2025-10-21 16:35:24.023969+00 f t COSTO_SERVICIO 0.00 2 10159 \N +402574 2025-10-21 16:35:24.025568+00 2025-10-21 16:35:24.025576+00 f t DESCUENTO 0.00 3 10159 \N +402575 2025-10-21 16:35:24.026891+00 2025-10-21 16:35:24.026899+00 f t TOTAL 78000.00 4 10159 \N +402576 2025-10-21 16:35:24.028255+00 2025-10-21 16:35:24.028261+00 f t ADELANTO 21500.00 5 10159 \N +411481 2025-10-24 04:48:18.028746+00 2025-10-24 04:48:18.028752+00 f t ADELANTO 13500.00 5 10405 \N +396921 2025-10-19 20:31:11.53126+00 2025-10-19 20:31:11.531272+00 f t SUBTOTAL 70000.00 1 10042 \N +396922 2025-10-19 20:31:11.533102+00 2025-10-19 20:31:11.533111+00 f t DESCUENTO 0.00 2 10042 \N +396923 2025-10-19 20:31:11.534378+00 2025-10-19 20:31:11.534386+00 f t TOTAL 70000.00 3 10042 \N +396924 2025-10-19 20:31:11.535799+00 2025-10-19 20:31:11.535807+00 f t ADELANTO 19000.00 4 10042 \N +411717 2025-10-24 11:33:41.805359+00 2025-10-24 11:33:41.805366+00 f t SUBTOTAL 23000.00 1 10411 \N +411718 2025-10-24 11:33:41.807308+00 2025-10-24 11:33:41.807315+00 f t COSTO_SERVICIO 0.00 2 10411 \N +411719 2025-10-24 11:33:41.808455+00 2025-10-24 11:33:41.808461+00 f t DESCUENTO 0.00 3 10411 \N +411720 2025-10-24 11:33:41.809612+00 2025-10-24 11:33:41.809618+00 f t TOTAL 23000.00 4 10411 \N +411721 2025-10-24 11:33:41.810632+00 2025-10-24 11:33:41.810636+00 f t ADELANTO 5500.00 5 10411 \N +396949 2025-10-19 21:12:26.602097+00 2025-10-19 21:12:26.602106+00 f t SUBTOTAL 55000.00 1 10043 \N +396950 2025-10-19 21:12:26.60403+00 2025-10-19 21:12:26.604038+00 f t DESCUENTO 0.00 2 10043 \N +396951 2025-10-19 21:12:26.605445+00 2025-10-19 21:12:26.605453+00 f t TOTAL 55000.00 3 10043 \N +396952 2025-10-19 21:12:26.606669+00 2025-10-19 21:12:26.606674+00 f t ADELANTO 11000.00 4 10043 \N +435612 2025-10-30 13:45:41.358343+00 2025-10-30 13:45:41.358352+00 f t SUBTOTAL 55000.00 1 10969 \N +435613 2025-10-30 13:45:41.360006+00 2025-10-30 13:45:41.360012+00 f t COSTO_SERVICIO 0.00 2 10969 \N +435614 2025-10-30 13:45:41.361183+00 2025-10-30 13:45:41.361189+00 f t DESCUENTO 0.00 3 10969 \N +435615 2025-10-30 13:45:41.362129+00 2025-10-30 13:45:41.362135+00 f t TOTAL 55000.00 4 10969 \N +426397 2025-10-28 18:01:02.214618+00 2025-10-28 18:01:02.214626+00 f t SUBTOTAL 70000.00 1 10750 \N +426398 2025-10-28 18:01:02.216811+00 2025-10-28 18:01:02.21682+00 f t COSTO_SERVICIO 0.00 2 10750 \N +426399 2025-10-28 18:01:02.218458+00 2025-10-28 18:01:02.218465+00 f t DESCUENTO 0.00 3 10750 \N +407107 2025-10-22 18:39:26.004717+00 2025-10-22 18:39:26.004725+00 f t SUBTOTAL 150000.00 1 10304 \N +407108 2025-10-22 18:39:26.005781+00 2025-10-22 18:39:26.005789+00 f t COSTO_SERVICIO 0.00 2 10304 \N +407109 2025-10-22 18:39:26.006536+00 2025-10-22 18:39:26.006541+00 f t DESCUENTO 0.00 3 10304 \N +407110 2025-10-22 18:39:26.007254+00 2025-10-22 18:39:26.007264+00 f t TOTAL 150000.00 4 10304 \N +407111 2025-10-22 18:39:26.007946+00 2025-10-22 18:39:26.007952+00 f t ADELANTO 30000.00 5 10304 \N +426400 2025-10-28 18:01:02.220369+00 2025-10-28 18:01:02.220379+00 f t TOTAL 70000.00 4 10750 \N +426401 2025-10-28 18:01:02.222323+00 2025-10-28 18:01:02.22233+00 f t ADELANTO 19000.00 5 10750 \N +426597 2025-10-28 19:10:20.529464+00 2025-10-28 19:10:20.529474+00 f t SUBTOTAL 0.00 1 10756 \N +426598 2025-10-28 19:10:20.531439+00 2025-10-28 19:10:20.531447+00 f t COSTO_SERVICIO 0.00 2 10756 \N +426599 2025-10-28 19:10:20.532534+00 2025-10-28 19:10:20.53254+00 f t DESCUENTO 0.00 3 10756 \N +426600 2025-10-28 19:10:20.533418+00 2025-10-28 19:10:20.533423+00 f t TOTAL 0.00 4 10756 \N +426601 2025-10-28 19:10:20.534414+00 2025-10-28 19:10:20.534419+00 f t ADELANTO 0.00 5 10756 \N +418427 2025-10-27 03:43:58.895442+00 2025-10-27 03:43:58.895455+00 f t SUBTOTAL 0.00 1 10570 \N +418428 2025-10-27 03:43:58.897164+00 2025-10-27 03:43:58.897174+00 f t COSTO_SERVICIO 0.00 2 10570 \N +418429 2025-10-27 03:43:58.899338+00 2025-10-27 03:43:58.899346+00 f t DESCUENTO 0.00 3 10570 \N +418430 2025-10-27 03:43:58.900925+00 2025-10-27 03:43:58.900934+00 f t TOTAL 0.00 4 10570 \N +418431 2025-10-27 03:43:58.904243+00 2025-10-27 03:43:58.904253+00 f t ADELANTO 0.00 5 10570 \N +397057 2025-10-19 21:54:06.937742+00 2025-10-19 21:54:06.937755+00 f t SUBTOTAL 0.00 1 10044 \N +397058 2025-10-19 21:54:06.940015+00 2025-10-19 21:54:06.940027+00 f t DESCUENTO 0.00 2 10044 \N +397059 2025-10-19 21:54:06.941656+00 2025-10-19 21:54:06.941664+00 f t TOTAL 0.00 3 10044 \N +397060 2025-10-19 21:54:06.943036+00 2025-10-19 21:54:06.943046+00 f t ADELANTO 0.00 4 10044 \N +400565 2025-10-20 23:17:30.863485+00 2025-10-20 23:17:30.863495+00 f t SUBTOTAL 0.00 1 10153 \N +400566 2025-10-20 23:17:30.865447+00 2025-10-20 23:17:30.865453+00 f t DESCUENTO 0.00 2 10153 \N +400567 2025-10-20 23:17:30.86668+00 2025-10-20 23:17:30.866687+00 f t TOTAL 0.00 3 10153 \N +400568 2025-10-20 23:17:30.867916+00 2025-10-20 23:17:30.867922+00 f t ADELANTO 0.00 4 10153 \N +409777 2025-10-23 16:23:41.185655+00 2025-10-23 16:23:41.185663+00 f t SUBTOTAL 46000.00 1 10359 \N +409778 2025-10-23 16:23:41.187281+00 2025-10-23 16:23:41.187294+00 f t COSTO_SERVICIO 0.00 2 10359 \N +409779 2025-10-23 16:23:41.188586+00 2025-10-23 16:23:41.188591+00 f t DESCUENTO 0.00 3 10359 \N +409780 2025-10-23 16:23:41.189825+00 2025-10-23 16:23:41.189832+00 f t TOTAL 46000.00 4 10359 \N +409781 2025-10-23 16:23:41.190905+00 2025-10-23 16:23:41.190909+00 f t ADELANTO 11000.00 5 10359 \N +397109 2025-10-19 21:55:23.576377+00 2025-10-19 21:55:23.576387+00 f t SUBTOTAL 55000.00 1 10045 \N +397110 2025-10-19 21:55:23.5781+00 2025-10-19 21:55:23.578112+00 f t DESCUENTO 0.00 2 10045 \N +397111 2025-10-19 21:55:23.5796+00 2025-10-19 21:55:23.579607+00 f t TOTAL 55000.00 3 10045 \N +397112 2025-10-19 21:55:23.581044+00 2025-10-19 21:55:23.58105+00 f t ADELANTO 11000.00 4 10045 \N +419557 2025-10-27 15:43:30.406639+00 2025-10-27 15:43:30.406647+00 f t SUBTOTAL 70000.00 1 10600 \N +419558 2025-10-27 15:43:30.408784+00 2025-10-27 15:43:30.408792+00 f t COSTO_SERVICIO 0.00 2 10600 \N +419559 2025-10-27 15:43:30.410341+00 2025-10-27 15:43:30.410352+00 f t DESCUENTO 0.00 3 10600 \N +410342 2025-10-23 17:30:15.067848+00 2025-10-23 17:30:15.067861+00 f t SUBTOTAL 46000.00 1 10365 \N +410343 2025-10-23 17:30:15.069819+00 2025-10-23 17:30:15.06983+00 f t COSTO_SERVICIO 0.00 2 10365 \N +410344 2025-10-23 17:30:15.071203+00 2025-10-23 17:30:15.071213+00 f t DESCUENTO 0.00 3 10365 \N +410345 2025-10-23 17:30:15.074854+00 2025-10-23 17:30:15.074865+00 f t TOTAL 46000.00 4 10365 \N +410346 2025-10-23 17:30:15.076402+00 2025-10-23 17:30:15.076411+00 f t ADELANTO 11000.00 5 10365 \N +419560 2025-10-27 15:43:30.412036+00 2025-10-27 15:43:30.412046+00 f t TOTAL 70000.00 4 10600 \N +419561 2025-10-27 15:43:30.413558+00 2025-10-27 15:43:30.413567+00 f t ADELANTO 19000.00 5 10600 \N +397137 2025-10-19 22:04:24.154164+00 2025-10-19 22:04:24.154182+00 f t SUBTOTAL 60000.00 1 10046 \N +397138 2025-10-19 22:04:24.155981+00 2025-10-19 22:04:24.155988+00 f t DESCUENTO 0.00 2 10046 \N +397139 2025-10-19 22:04:24.157506+00 2025-10-19 22:04:24.157514+00 f t TOTAL 60000.00 3 10046 \N +397140 2025-10-19 22:04:24.158967+00 2025-10-19 22:04:24.158974+00 f t ADELANTO 60000.00 4 10046 \N +419767 2025-10-27 16:37:11.576721+00 2025-10-27 16:37:11.57673+00 f t SUBTOTAL 0.00 1 10606 \N +419768 2025-10-27 16:37:11.578009+00 2025-10-27 16:37:11.578016+00 f t COSTO_SERVICIO 0.00 2 10606 \N +419769 2025-10-27 16:37:11.579181+00 2025-10-27 16:37:11.579187+00 f t DESCUENTO 0.00 3 10606 \N +419770 2025-10-27 16:37:11.580364+00 2025-10-27 16:37:11.58037+00 f t TOTAL 0.00 4 10606 \N +419771 2025-10-27 16:37:11.581355+00 2025-10-27 16:37:11.581361+00 f t ADELANTO 0.00 5 10606 \N +420512 2025-10-27 18:34:57.959458+00 2025-10-27 18:34:57.959471+00 f t SUBTOTAL 0.00 1 10625 \N +420513 2025-10-27 18:34:57.96176+00 2025-10-27 18:34:57.96177+00 f t COSTO_SERVICIO 0.00 2 10625 \N +420514 2025-10-27 18:34:57.96299+00 2025-10-27 18:34:57.962998+00 f t DESCUENTO 0.00 3 10625 \N +420515 2025-10-27 18:34:57.964193+00 2025-10-27 18:34:57.964201+00 f t TOTAL 0.00 4 10625 \N +420516 2025-10-27 18:34:57.965496+00 2025-10-27 18:34:57.965503+00 f t ADELANTO 0.00 5 10625 \N +397201 2025-10-19 22:08:24.103971+00 2025-10-19 22:08:24.103984+00 f t SUBTOTAL 0.00 1 10047 \N +397202 2025-10-19 22:08:24.106532+00 2025-10-19 22:08:24.106543+00 f t DESCUENTO 0.00 2 10047 \N +397203 2025-10-19 22:08:24.108101+00 2025-10-19 22:08:24.108108+00 f t TOTAL 0.00 3 10047 \N +397204 2025-10-19 22:08:24.109479+00 2025-10-19 22:08:24.109486+00 f t ADELANTO 0.00 4 10047 \N +397209 2025-10-19 22:10:58.813212+00 2025-10-19 22:10:58.813225+00 f t SUBTOTAL 0.00 1 10048 \N +397210 2025-10-19 22:10:58.814971+00 2025-10-19 22:10:58.814985+00 f t DESCUENTO 0.00 2 10048 \N +397211 2025-10-19 22:10:58.81619+00 2025-10-19 22:10:58.816196+00 f t TOTAL 0.00 3 10048 \N +397212 2025-10-19 22:10:58.817243+00 2025-10-19 22:10:58.817249+00 f t ADELANTO 0.00 4 10048 \N +397237 2025-10-19 22:29:08.943887+00 2025-10-19 22:29:08.943895+00 f t SUBTOTAL 30000.00 1 10049 \N +397238 2025-10-19 22:29:08.945622+00 2025-10-19 22:29:08.94563+00 f t DESCUENTO 0.00 2 10049 \N +397239 2025-10-19 22:29:08.946973+00 2025-10-19 22:29:08.946979+00 f t TOTAL 30000.00 3 10049 \N +397240 2025-10-19 22:29:08.948221+00 2025-10-19 22:29:08.94823+00 f t ADELANTO 30000.00 4 10049 \N +397245 2025-10-19 22:37:17.007311+00 2025-10-19 22:37:17.007321+00 f t SUBTOTAL 0.00 1 10050 \N +397246 2025-10-19 22:37:17.008706+00 2025-10-19 22:37:17.008712+00 f t DESCUENTO 0.00 2 10050 \N +397247 2025-10-19 22:37:17.009844+00 2025-10-19 22:37:17.00985+00 f t TOTAL 0.00 3 10050 \N +397248 2025-10-19 22:37:17.010914+00 2025-10-19 22:37:17.01092+00 f t ADELANTO 0.00 4 10050 \N +435616 2025-10-30 13:45:41.363357+00 2025-10-30 13:45:41.363364+00 f t ADELANTO 11000.00 5 10969 \N +397253 2025-10-19 22:39:00.257897+00 2025-10-19 22:39:00.257907+00 f t SUBTOTAL 0.00 1 10051 \N +397254 2025-10-19 22:39:00.259396+00 2025-10-19 22:39:00.259404+00 f t DESCUENTO 0.00 2 10051 \N +397255 2025-10-19 22:39:00.260656+00 2025-10-19 22:39:00.260664+00 f t TOTAL 0.00 3 10051 \N +397256 2025-10-19 22:39:00.26183+00 2025-10-19 22:39:00.261839+00 f t ADELANTO 0.00 4 10051 \N +397261 2025-10-19 22:39:30.13199+00 2025-10-19 22:39:30.131999+00 f t SUBTOTAL 0.00 1 10052 \N +397262 2025-10-19 22:39:30.137485+00 2025-10-19 22:39:30.137494+00 f t DESCUENTO 0.00 2 10052 \N +397263 2025-10-19 22:39:30.139017+00 2025-10-19 22:39:30.139022+00 f t TOTAL 0.00 3 10052 \N +397264 2025-10-19 22:39:30.140093+00 2025-10-19 22:39:30.140098+00 f t ADELANTO 0.00 4 10052 \N +397269 2025-10-19 23:08:08.186983+00 2025-10-19 23:08:08.186991+00 f t SUBTOTAL 0.00 1 10053 \N +397270 2025-10-19 23:08:08.188709+00 2025-10-19 23:08:08.188718+00 f t DESCUENTO 0.00 2 10053 \N +397271 2025-10-19 23:08:08.19008+00 2025-10-19 23:08:08.190086+00 f t TOTAL 0.00 3 10053 \N +397272 2025-10-19 23:08:08.191352+00 2025-10-19 23:08:08.191359+00 f t ADELANTO 0.00 4 10053 \N +397293 2025-10-19 23:12:07.404365+00 2025-10-19 23:12:07.404379+00 f t SUBTOTAL 0.00 1 10054 \N +397294 2025-10-19 23:12:07.406886+00 2025-10-19 23:12:07.406895+00 f t DESCUENTO 0.00 2 10054 \N +397295 2025-10-19 23:12:07.41001+00 2025-10-19 23:12:07.41002+00 f t TOTAL 0.00 3 10054 \N +397296 2025-10-19 23:12:07.412071+00 2025-10-19 23:12:07.412081+00 f t ADELANTO 0.00 4 10054 \N +399405 2025-10-20 16:25:43.97083+00 2025-10-20 16:25:43.970839+00 f t SUBTOTAL 108000.00 1 10117 \N +399406 2025-10-20 16:25:43.97298+00 2025-10-20 16:25:43.972988+00 f t DESCUENTO 0.00 2 10117 \N +399407 2025-10-20 16:25:43.974348+00 2025-10-20 16:25:43.974356+00 f t TOTAL 108000.00 3 10117 \N +399408 2025-10-20 16:25:43.975765+00 2025-10-20 16:25:43.975773+00 f t ADELANTO 27000.00 4 10117 \N +397325 2025-10-19 23:30:01.582388+00 2025-10-19 23:30:01.5824+00 f t SUBTOTAL 55000.00 1 10055 \N +397326 2025-10-19 23:30:01.585684+00 2025-10-19 23:30:01.585699+00 f t DESCUENTO 0.00 2 10055 \N +397327 2025-10-19 23:30:01.589802+00 2025-10-19 23:30:01.589811+00 f t TOTAL 55000.00 3 10055 \N +397328 2025-10-19 23:30:01.592559+00 2025-10-19 23:30:01.592573+00 f t ADELANTO 11000.00 4 10055 \N +399961 2025-10-20 19:12:50.237144+00 2025-10-20 19:12:50.237153+00 f t SUBTOTAL 53700.00 1 10133 \N +399962 2025-10-20 19:12:50.239009+00 2025-10-20 19:12:50.239022+00 f t DESCUENTO 0.00 2 10133 \N +399963 2025-10-20 19:12:50.240514+00 2025-10-20 19:12:50.240521+00 f t TOTAL 53700.00 3 10133 \N +399964 2025-10-20 19:12:50.241787+00 2025-10-20 19:12:50.241792+00 f t ADELANTO 13200.00 4 10133 \N +400465 2025-10-20 22:36:05.031818+00 2025-10-20 22:36:05.031827+00 f t SUBTOTAL 0.00 1 10150 \N +400466 2025-10-20 22:36:05.034094+00 2025-10-20 22:36:05.034101+00 f t DESCUENTO 0.00 2 10150 \N +400467 2025-10-20 22:36:05.035388+00 2025-10-20 22:36:05.035396+00 f t TOTAL 0.00 3 10150 \N +400468 2025-10-20 22:36:05.036691+00 2025-10-20 22:36:05.036698+00 f t ADELANTO 0.00 4 10150 \N +400569 2025-10-20 23:20:11.464061+00 2025-10-20 23:20:11.464074+00 f t SUBTOTAL 46000.00 1 10154 \N +400570 2025-10-20 23:20:11.466227+00 2025-10-20 23:20:11.466238+00 f t DESCUENTO 0.00 2 10154 \N +400571 2025-10-20 23:20:11.467939+00 2025-10-20 23:20:11.467949+00 f t TOTAL 46000.00 3 10154 \N +400572 2025-10-20 23:20:11.469477+00 2025-10-20 23:20:11.469487+00 f t ADELANTO 11000.00 4 10154 \N +400861 2025-10-21 01:16:48.674285+00 2025-10-21 01:16:48.674935+00 f t SUBTOTAL 0.00 1 10161 \N +400862 2025-10-21 01:16:48.681005+00 2025-10-21 01:16:48.681015+00 f t DESCUENTO 0.00 2 10161 \N +400863 2025-10-21 01:16:48.682192+00 2025-10-21 01:16:48.682198+00 f t TOTAL 0.00 3 10161 \N +400864 2025-10-21 01:16:48.683279+00 2025-10-21 01:16:48.683285+00 f t ADELANTO 0.00 4 10161 \N +400961 2025-10-21 01:44:13.301954+00 2025-10-21 01:44:13.301962+00 f t SUBTOTAL 46000.00 1 10164 \N +400962 2025-10-21 01:44:13.303449+00 2025-10-21 01:44:13.303454+00 f t DESCUENTO 0.00 2 10164 \N +400963 2025-10-21 01:44:13.304509+00 2025-10-21 01:44:13.304515+00 f t TOTAL 46000.00 3 10164 \N +400964 2025-10-21 01:44:13.305604+00 2025-10-21 01:44:13.305609+00 f t ADELANTO 11000.00 4 10164 \N +409787 2025-10-23 16:24:34.405234+00 2025-10-23 16:24:34.405242+00 f t SUBTOTAL 0.00 1 10360 \N +409788 2025-10-23 16:24:34.406491+00 2025-10-23 16:24:34.4065+00 f t COSTO_SERVICIO 0.00 2 10360 \N +409789 2025-10-23 16:24:34.407687+00 2025-10-23 16:24:34.407693+00 f t DESCUENTO 0.00 3 10360 \N +409790 2025-10-23 16:24:34.408915+00 2025-10-23 16:24:34.408923+00 f t TOTAL 0.00 4 10360 \N +409791 2025-10-23 16:24:34.409994+00 2025-10-23 16:24:34.409999+00 f t ADELANTO 0.00 5 10360 \N +401957 2025-10-21 13:42:00.134791+00 2025-10-21 13:42:00.134807+00 f t SUBTOTAL 0.00 1 10185 \N +401958 2025-10-21 13:42:00.137974+00 2025-10-21 13:42:00.137988+00 f t COSTO_SERVICIO 0.00 2 10185 \N +401959 2025-10-21 13:42:00.140297+00 2025-10-21 13:42:00.140309+00 f t DESCUENTO 0.00 3 10185 \N +401960 2025-10-21 13:42:00.142397+00 2025-10-21 13:42:00.14241+00 f t TOTAL 0.00 4 10185 \N +401961 2025-10-21 13:42:00.144523+00 2025-10-21 13:42:00.144536+00 f t ADELANTO 0.00 5 10185 \N +402087 2025-10-21 14:33:14.901254+00 2025-10-21 14:33:14.901264+00 f t SUBTOTAL 55000.00 1 10189 \N +402088 2025-10-21 14:33:14.903405+00 2025-10-21 14:33:14.903412+00 f t COSTO_SERVICIO 0.00 2 10189 \N +402089 2025-10-21 14:33:14.90482+00 2025-10-21 14:33:14.904826+00 f t DESCUENTO 0.00 3 10189 \N +402090 2025-10-21 14:33:14.905964+00 2025-10-21 14:33:14.905972+00 f t TOTAL 55000.00 4 10189 \N +402091 2025-10-21 14:33:14.907327+00 2025-10-21 14:33:14.907333+00 f t ADELANTO 11000.00 5 10189 \N +403197 2025-10-21 18:51:42.705845+00 2025-10-21 18:51:42.705854+00 f t SUBTOTAL 0.00 1 10215 \N +403198 2025-10-21 18:51:42.706975+00 2025-10-21 18:51:42.70698+00 f t COSTO_SERVICIO 0.00 2 10215 \N +403199 2025-10-21 18:51:42.707964+00 2025-10-21 18:51:42.707969+00 f t DESCUENTO 0.00 3 10215 \N +403200 2025-10-21 18:51:42.708918+00 2025-10-21 18:51:42.708923+00 f t TOTAL 0.00 4 10215 \N +403201 2025-10-21 18:51:42.71008+00 2025-10-21 18:51:42.710085+00 f t ADELANTO 0.00 5 10215 \N +411337 2025-10-24 02:19:11.609392+00 2025-10-24 02:19:11.609402+00 f t SUBTOTAL 70000.00 1 10401 \N +411338 2025-10-24 02:19:11.611603+00 2025-10-24 02:19:11.611612+00 f t COSTO_SERVICIO 0.00 2 10401 \N +411339 2025-10-24 02:19:11.613088+00 2025-10-24 02:19:11.613097+00 f t DESCUENTO 0.00 3 10401 \N +411340 2025-10-24 02:19:11.614466+00 2025-10-24 02:19:11.614474+00 f t TOTAL 70000.00 4 10401 \N +411341 2025-10-24 02:19:11.615778+00 2025-10-24 02:19:11.615786+00 f t ADELANTO 19000.00 5 10401 \N +411417 2025-10-24 03:29:25.047125+00 2025-10-24 03:29:25.047152+00 f t SUBTOTAL 0.00 1 10403 \N +411418 2025-10-24 03:29:25.049109+00 2025-10-24 03:29:25.049116+00 f t COSTO_SERVICIO 0.00 2 10403 \N +411419 2025-10-24 03:29:25.050364+00 2025-10-24 03:29:25.050372+00 f t DESCUENTO 0.00 3 10403 \N +411420 2025-10-24 03:29:25.05158+00 2025-10-24 03:29:25.051585+00 f t TOTAL 0.00 4 10403 \N +411421 2025-10-24 03:29:25.052837+00 2025-10-24 03:29:25.052844+00 f t ADELANTO 0.00 5 10403 \N +411562 2025-10-24 08:17:13.239927+00 2025-10-24 08:17:13.239936+00 f t SUBTOTAL 0.00 1 10408 \N +411563 2025-10-24 08:17:13.242182+00 2025-10-24 08:17:13.242188+00 f t COSTO_SERVICIO 0.00 2 10408 \N +411564 2025-10-24 08:17:13.243539+00 2025-10-24 08:17:13.243545+00 f t DESCUENTO 0.00 3 10408 \N +411565 2025-10-24 08:17:13.244635+00 2025-10-24 08:17:13.24464+00 f t TOTAL 0.00 4 10408 \N +411566 2025-10-24 08:17:13.245675+00 2025-10-24 08:17:13.24568+00 f t ADELANTO 0.00 5 10408 \N +403612 2025-10-21 20:22:35.692511+00 2025-10-21 20:22:35.692524+00 f t SUBTOTAL 0.00 1 10228 \N +403613 2025-10-21 20:22:35.694564+00 2025-10-21 20:22:35.694574+00 f t COSTO_SERVICIO 0.00 2 10228 \N +403614 2025-10-21 20:22:35.696088+00 2025-10-21 20:22:35.696094+00 f t DESCUENTO 0.00 3 10228 \N +403615 2025-10-21 20:22:35.697525+00 2025-10-21 20:22:35.697531+00 f t TOTAL 0.00 4 10228 \N +403616 2025-10-21 20:22:35.698763+00 2025-10-21 20:22:35.698771+00 f t ADELANTO 0.00 5 10228 \N +456587 2025-11-05 14:39:42.982221+00 2025-11-05 14:39:42.982228+00 f t SUBTOTAL 46000.00 1 11465 \N +456588 2025-11-05 14:39:42.98401+00 2025-11-05 14:39:42.984016+00 f t COSTO_SERVICIO 0.00 2 11465 \N +456589 2025-11-05 14:39:42.985086+00 2025-11-05 14:39:42.985091+00 f t DESCUENTO 0.00 3 11465 \N +456590 2025-11-05 14:39:42.986009+00 2025-11-05 14:39:42.986014+00 f t TOTAL 46000.00 4 11465 \N +407452 2025-10-22 19:11:53.115357+00 2025-10-22 19:11:53.115365+00 f t SUBTOTAL 30000.00 1 10309 \N +407453 2025-10-22 19:11:53.117023+00 2025-10-22 19:11:53.117029+00 f t COSTO_SERVICIO 0.00 2 10309 \N +407454 2025-10-22 19:11:53.118263+00 2025-10-22 19:11:53.118269+00 f t DESCUENTO 0.00 3 10309 \N +407455 2025-10-22 19:11:53.119248+00 2025-10-22 19:11:53.119253+00 f t TOTAL 30000.00 4 10309 \N +407456 2025-10-22 19:11:53.120191+00 2025-10-22 19:11:53.120196+00 f t ADELANTO 30000.00 5 10309 \N +409307 2025-10-23 13:53:28.389484+00 2025-10-23 13:53:28.389492+00 f t SUBTOTAL 55000.00 1 10347 \N +409308 2025-10-23 13:53:28.391224+00 2025-10-23 13:53:28.391231+00 f t COSTO_SERVICIO 0.00 2 10347 \N +409309 2025-10-23 13:53:28.392562+00 2025-10-23 13:53:28.392568+00 f t DESCUENTO 0.00 3 10347 \N +409310 2025-10-23 13:53:28.393706+00 2025-10-23 13:53:28.393711+00 f t TOTAL 55000.00 4 10347 \N +409311 2025-10-23 13:53:28.394807+00 2025-10-23 13:53:28.394813+00 f t ADELANTO 11000.00 5 10347 \N +409432 2025-10-23 14:08:27.560109+00 2025-10-23 14:08:27.560119+00 f t SUBTOTAL 0.00 1 10350 \N +409433 2025-10-23 14:08:27.562147+00 2025-10-23 14:08:27.562154+00 f t COSTO_SERVICIO 0.00 2 10350 \N +409434 2025-10-23 14:08:27.563501+00 2025-10-23 14:08:27.563508+00 f t DESCUENTO 0.00 3 10350 \N +409435 2025-10-23 14:08:27.564754+00 2025-10-23 14:08:27.56476+00 f t TOTAL 0.00 4 10350 \N +409436 2025-10-23 14:08:27.5658+00 2025-10-23 14:08:27.565805+00 f t ADELANTO 0.00 5 10350 \N +403717 2025-10-21 20:32:00.956882+00 2025-10-21 20:32:00.956892+00 f t SUBTOTAL 102000.00 1 10229 \N +403718 2025-10-21 20:32:00.958747+00 2025-10-21 20:32:00.958757+00 f t COSTO_SERVICIO 0.00 2 10229 \N +403719 2025-10-21 20:32:00.960163+00 2025-10-21 20:32:00.960171+00 f t DESCUENTO 0.00 3 10229 \N +403720 2025-10-21 20:32:00.961434+00 2025-10-21 20:32:00.961443+00 f t TOTAL 102000.00 4 10229 \N +403721 2025-10-21 20:32:00.962684+00 2025-10-21 20:32:00.962692+00 f t ADELANTO 29500.00 5 10229 \N +403742 2025-10-21 20:34:00.194544+00 2025-10-21 20:34:00.194553+00 f t SUBTOTAL 0.00 1 10230 \N +403743 2025-10-21 20:34:00.196738+00 2025-10-21 20:34:00.196746+00 f t COSTO_SERVICIO 0.00 2 10230 \N +403744 2025-10-21 20:34:00.19834+00 2025-10-21 20:34:00.19835+00 f t DESCUENTO 0.00 3 10230 \N +403745 2025-10-21 20:34:00.199746+00 2025-10-21 20:34:00.199753+00 f t TOTAL 0.00 4 10230 \N +403746 2025-10-21 20:34:00.201298+00 2025-10-21 20:34:00.201305+00 f t ADELANTO 0.00 5 10230 \N +410352 2025-10-23 17:32:10.69561+00 2025-10-23 17:32:10.695619+00 f t SUBTOTAL 107000.00 1 10361 \N +410353 2025-10-23 17:32:10.697539+00 2025-10-23 17:32:10.697545+00 f t COSTO_SERVICIO 0.00 2 10361 \N +410354 2025-10-23 17:32:10.698942+00 2025-10-23 17:32:10.698952+00 f t DESCUENTO 0.00 3 10361 \N +410355 2025-10-23 17:32:10.700345+00 2025-10-23 17:32:10.700351+00 f t TOTAL 107000.00 4 10361 \N +410356 2025-10-23 17:32:10.701512+00 2025-10-23 17:32:10.701517+00 f t ADELANTO 12000.00 5 10361 \N +410787 2025-10-23 22:02:17.425883+00 2025-10-23 22:02:17.425891+00 f t SUBTOTAL 30000.00 1 10380 \N +410788 2025-10-23 22:02:17.427731+00 2025-10-23 22:02:17.427739+00 f t COSTO_SERVICIO 0.00 2 10380 \N +410789 2025-10-23 22:02:17.429273+00 2025-10-23 22:02:17.42928+00 f t DESCUENTO 0.00 3 10380 \N +410790 2025-10-23 22:02:17.43069+00 2025-10-23 22:02:17.430696+00 f t TOTAL 30000.00 4 10380 \N +410791 2025-10-23 22:02:17.432108+00 2025-10-23 22:02:17.432113+00 f t ADELANTO 30000.00 5 10380 \N +410982 2025-10-23 23:06:35.914583+00 2025-10-23 23:06:35.914591+00 f t SUBTOTAL 30000.00 1 10389 \N +410983 2025-10-23 23:06:35.916313+00 2025-10-23 23:06:35.916319+00 f t COSTO_SERVICIO 0.00 2 10389 \N +410984 2025-10-23 23:06:35.917732+00 2025-10-23 23:06:35.91774+00 f t DESCUENTO 0.00 3 10389 \N +410985 2025-10-23 23:06:35.920823+00 2025-10-23 23:06:35.920829+00 f t TOTAL 30000.00 4 10389 \N +410986 2025-10-23 23:06:35.922049+00 2025-10-23 23:06:35.922055+00 f t ADELANTO 30000.00 5 10389 \N +411252 2025-10-24 01:32:58.738345+00 2025-10-24 01:32:58.738352+00 f t SUBTOTAL 70000.00 1 10398 \N +411253 2025-10-24 01:32:58.740283+00 2025-10-24 01:32:58.740289+00 f t COSTO_SERVICIO 0.00 2 10398 \N +411254 2025-10-24 01:32:58.741467+00 2025-10-24 01:32:58.741473+00 f t DESCUENTO 0.00 3 10398 \N +411255 2025-10-24 01:32:58.742559+00 2025-10-24 01:32:58.742564+00 f t TOTAL 70000.00 4 10398 \N +411256 2025-10-24 01:32:58.743521+00 2025-10-24 01:32:58.743526+00 f t ADELANTO 19000.00 5 10398 \N +411347 2025-10-24 02:39:43.996124+00 2025-10-24 02:39:43.996132+00 f t SUBTOTAL 0.00 1 10402 \N +411348 2025-10-24 02:39:43.997517+00 2025-10-24 02:39:43.997523+00 f t COSTO_SERVICIO 0.00 2 10402 \N +411349 2025-10-24 02:39:43.998477+00 2025-10-24 02:39:43.998482+00 f t DESCUENTO 0.00 3 10402 \N +411350 2025-10-24 02:39:43.999632+00 2025-10-24 02:39:43.999637+00 f t TOTAL 0.00 4 10402 \N +411351 2025-10-24 02:39:44.000719+00 2025-10-24 02:39:44.000724+00 f t ADELANTO 0.00 5 10402 \N +411677 2025-10-24 11:25:45.309925+00 2025-10-24 11:25:45.309936+00 f t SUBTOTAL 55000.00 1 10410 \N +411678 2025-10-24 11:25:45.311708+00 2025-10-24 11:25:45.311718+00 f t COSTO_SERVICIO 0.00 2 10410 \N +411679 2025-10-24 11:25:45.313178+00 2025-10-24 11:25:45.313187+00 f t DESCUENTO 0.00 3 10410 \N +411680 2025-10-24 11:25:45.314395+00 2025-10-24 11:25:45.314404+00 f t TOTAL 55000.00 4 10410 \N +411681 2025-10-24 11:25:45.315615+00 2025-10-24 11:25:45.315621+00 f t ADELANTO 11000.00 5 10410 \N +411867 2025-10-24 12:00:33.183451+00 2025-10-24 12:00:33.183458+00 f t SUBTOTAL 78000.00 1 10412 \N +411868 2025-10-24 12:00:33.185238+00 2025-10-24 12:00:33.185245+00 f t COSTO_SERVICIO 0.00 2 10412 \N +403867 2025-10-21 20:37:57.146878+00 2025-10-21 20:37:57.146886+00 f t SUBTOTAL 0.00 1 10232 \N +403868 2025-10-21 20:37:57.148477+00 2025-10-21 20:37:57.148485+00 f t COSTO_SERVICIO 0.00 2 10232 \N +403869 2025-10-21 20:37:57.149772+00 2025-10-21 20:37:57.149778+00 f t DESCUENTO 0.00 3 10232 \N +403870 2025-10-21 20:37:57.1508+00 2025-10-21 20:37:57.150804+00 f t TOTAL 0.00 4 10232 \N +403871 2025-10-21 20:37:57.15198+00 2025-10-21 20:37:57.151985+00 f t ADELANTO 0.00 5 10232 \N +411869 2025-10-24 12:00:33.186728+00 2025-10-24 12:00:33.186734+00 f t DESCUENTO 0.00 3 10412 \N +411870 2025-10-24 12:00:33.187997+00 2025-10-24 12:00:33.188003+00 f t TOTAL 78000.00 4 10412 \N +411871 2025-10-24 12:00:33.189188+00 2025-10-24 12:00:33.189194+00 f t ADELANTO 21500.00 5 10412 \N +411922 2025-10-24 12:09:15.673153+00 2025-10-24 12:09:15.673161+00 f t SUBTOTAL 0.00 1 10413 \N +411923 2025-10-24 12:09:15.675157+00 2025-10-24 12:09:15.675165+00 f t COSTO_SERVICIO 0.00 2 10413 \N +403897 2025-10-21 20:38:23.075906+00 2025-10-21 20:38:23.075915+00 f t SUBTOTAL 0.00 1 10231 \N +403898 2025-10-21 20:38:23.07805+00 2025-10-21 20:38:23.078057+00 f t COSTO_SERVICIO 0.00 2 10231 \N +403899 2025-10-21 20:38:23.079347+00 2025-10-21 20:38:23.079353+00 f t DESCUENTO 0.00 3 10231 \N +403900 2025-10-21 20:38:23.080405+00 2025-10-21 20:38:23.08041+00 f t TOTAL 0.00 4 10231 \N +403901 2025-10-21 20:38:23.08151+00 2025-10-21 20:38:23.081515+00 f t ADELANTO 0.00 5 10231 \N +403907 2025-10-21 20:50:39.460224+00 2025-10-21 20:50:39.460233+00 f t SUBTOTAL 0.00 1 10233 \N +403908 2025-10-21 20:50:39.461548+00 2025-10-21 20:50:39.461555+00 f t COSTO_SERVICIO 0.00 2 10233 \N +403909 2025-10-21 20:50:39.462674+00 2025-10-21 20:50:39.462679+00 f t DESCUENTO 0.00 3 10233 \N +403910 2025-10-21 20:50:39.463638+00 2025-10-21 20:50:39.463643+00 f t TOTAL 0.00 4 10233 \N +403911 2025-10-21 20:50:39.464608+00 2025-10-21 20:50:39.464613+00 f t ADELANTO 0.00 5 10233 \N +406952 2025-10-22 18:11:19.751206+00 2025-10-22 18:11:19.751215+00 f t SUBTOTAL 0.00 1 10302 \N +406953 2025-10-22 18:11:19.753143+00 2025-10-22 18:11:19.75315+00 f t COSTO_SERVICIO 0.00 2 10302 \N +406954 2025-10-22 18:11:19.75419+00 2025-10-22 18:11:19.754197+00 f t DESCUENTO 0.00 3 10302 \N +406955 2025-10-22 18:11:19.755365+00 2025-10-22 18:11:19.75537+00 f t TOTAL 0.00 4 10302 \N +406956 2025-10-22 18:11:19.756502+00 2025-10-22 18:11:19.756508+00 f t ADELANTO 0.00 5 10302 \N +403917 2025-10-21 20:51:00.080369+00 2025-10-21 20:51:00.080382+00 f t SUBTOTAL 0.00 1 10142 \N +403918 2025-10-21 20:51:00.082585+00 2025-10-21 20:51:00.082594+00 f t COSTO_SERVICIO 0.00 2 10142 \N +403919 2025-10-21 20:51:00.084347+00 2025-10-21 20:51:00.084358+00 f t DESCUENTO 0.00 3 10142 \N +403920 2025-10-21 20:51:00.086072+00 2025-10-21 20:51:00.086084+00 f t TOTAL 0.00 4 10142 \N +403921 2025-10-21 20:51:00.087539+00 2025-10-21 20:51:00.087548+00 f t ADELANTO 0.00 5 10142 \N +426202 2025-10-28 17:47:06.344543+00 2025-10-28 17:47:06.344551+00 f t SUBTOTAL 70000.00 1 10745 \N +426203 2025-10-28 17:47:06.347631+00 2025-10-28 17:47:06.34764+00 f t COSTO_SERVICIO 0.00 2 10745 \N +426204 2025-10-28 17:47:06.348955+00 2025-10-28 17:47:06.348962+00 f t DESCUENTO 0.00 3 10745 \N +426205 2025-10-28 17:47:06.350097+00 2025-10-28 17:47:06.350103+00 f t TOTAL 70000.00 4 10745 \N +426206 2025-10-28 17:47:06.352689+00 2025-10-28 17:47:06.352696+00 f t ADELANTO 19000.00 5 10745 \N +407832 2025-10-22 22:03:21.209871+00 2025-10-22 22:03:21.209884+00 f t SUBTOTAL 0.00 1 10316 \N +407833 2025-10-22 22:03:21.211965+00 2025-10-22 22:03:21.211976+00 f t COSTO_SERVICIO 0.00 2 10316 \N +407834 2025-10-22 22:03:21.213218+00 2025-10-22 22:03:21.213227+00 f t DESCUENTO 0.00 3 10316 \N +407835 2025-10-22 22:03:21.215603+00 2025-10-22 22:03:21.215612+00 f t TOTAL 0.00 4 10316 \N +407836 2025-10-22 22:03:21.217153+00 2025-10-22 22:03:21.217162+00 f t ADELANTO 0.00 5 10316 \N +417657 2025-10-26 16:58:25.225718+00 2025-10-26 16:58:25.225729+00 f t SUBTOTAL 0.00 1 10549 \N +417658 2025-10-26 16:58:25.227095+00 2025-10-26 16:58:25.227103+00 f t COSTO_SERVICIO 0.00 2 10549 \N +417659 2025-10-26 16:58:25.228183+00 2025-10-26 16:58:25.228188+00 f t DESCUENTO 0.00 3 10549 \N +417660 2025-10-26 16:58:25.229081+00 2025-10-26 16:58:25.229086+00 f t TOTAL 0.00 4 10549 \N +404012 2025-10-21 21:14:57.099893+00 2025-10-21 21:14:57.0999+00 f t SUBTOTAL 46000.00 1 10236 \N +404013 2025-10-21 21:14:57.101418+00 2025-10-21 21:14:57.101426+00 f t COSTO_SERVICIO 0.00 2 10236 \N +404014 2025-10-21 21:14:57.102732+00 2025-10-21 21:14:57.102737+00 f t DESCUENTO 0.00 3 10236 \N +404015 2025-10-21 21:14:57.103893+00 2025-10-21 21:14:57.103899+00 f t TOTAL 46000.00 4 10236 \N +404016 2025-10-21 21:14:57.104997+00 2025-10-21 21:14:57.105002+00 f t ADELANTO 11000.00 5 10236 \N +409907 2025-10-23 16:59:36.821182+00 2025-10-23 16:59:36.82119+00 f t SUBTOTAL 46000.00 1 10362 \N +409908 2025-10-23 16:59:36.822812+00 2025-10-23 16:59:36.82282+00 f t COSTO_SERVICIO 0.00 2 10362 \N +409909 2025-10-23 16:59:36.823919+00 2025-10-23 16:59:36.823925+00 f t DESCUENTO 0.00 3 10362 \N +409910 2025-10-23 16:59:36.824978+00 2025-10-23 16:59:36.824984+00 f t TOTAL 46000.00 4 10362 \N +409911 2025-10-23 16:59:36.825973+00 2025-10-23 16:59:36.82598+00 f t ADELANTO 11000.00 5 10362 \N +410682 2025-10-23 20:17:49.145475+00 2025-10-23 20:17:49.145483+00 f t SUBTOTAL 55000.00 1 10375 \N +410683 2025-10-23 20:17:49.14716+00 2025-10-23 20:17:49.147167+00 f t COSTO_SERVICIO 0.00 2 10375 \N +410684 2025-10-23 20:17:49.148297+00 2025-10-23 20:17:49.148303+00 f t DESCUENTO 0.00 3 10375 \N +410685 2025-10-23 20:17:49.149818+00 2025-10-23 20:17:49.149827+00 f t TOTAL 55000.00 4 10375 \N +410686 2025-10-23 20:17:49.151098+00 2025-10-23 20:17:49.151104+00 f t ADELANTO 11000.00 5 10375 \N +404092 2025-10-21 21:25:59.954541+00 2025-10-21 21:25:59.954551+00 f t SUBTOTAL 55000.00 1 10235 \N +404093 2025-10-21 21:25:59.956495+00 2025-10-21 21:25:59.956505+00 f t COSTO_SERVICIO 0.00 2 10235 \N +404094 2025-10-21 21:25:59.957984+00 2025-10-21 21:25:59.957991+00 f t DESCUENTO 0.00 3 10235 \N +404095 2025-10-21 21:25:59.959179+00 2025-10-21 21:25:59.959185+00 f t TOTAL 55000.00 4 10235 \N +404096 2025-10-21 21:25:59.960311+00 2025-10-21 21:25:59.960319+00 f t ADELANTO 11000.00 5 10235 \N +410992 2025-10-23 23:26:51.885398+00 2025-10-23 23:26:51.885408+00 f t SUBTOTAL 0.00 1 10390 \N +410993 2025-10-23 23:26:51.886807+00 2025-10-23 23:26:51.886816+00 f t COSTO_SERVICIO 0.00 2 10390 \N +410994 2025-10-23 23:26:51.88836+00 2025-10-23 23:26:51.888369+00 f t DESCUENTO 0.00 3 10390 \N +410995 2025-10-23 23:26:51.889699+00 2025-10-23 23:26:51.889704+00 f t TOTAL 0.00 4 10390 \N +410996 2025-10-23 23:26:51.890632+00 2025-10-23 23:26:51.89064+00 f t ADELANTO 0.00 5 10390 \N +411172 2025-10-24 00:29:07.655695+00 2025-10-24 00:29:07.655703+00 f t SUBTOTAL 55000.00 1 10394 \N +411173 2025-10-24 00:29:07.657357+00 2025-10-24 00:29:07.657363+00 f t COSTO_SERVICIO 0.00 2 10394 \N +411174 2025-10-24 00:29:07.65832+00 2025-10-24 00:29:07.658325+00 f t DESCUENTO 0.00 3 10394 \N +411175 2025-10-24 00:29:07.65924+00 2025-10-24 00:29:07.659245+00 f t TOTAL 55000.00 4 10394 \N +411176 2025-10-24 00:29:07.660132+00 2025-10-24 00:29:07.660137+00 f t ADELANTO 11000.00 5 10394 \N +411262 2025-10-24 02:04:10.972333+00 2025-10-24 02:04:10.972342+00 f t SUBTOTAL 0.00 1 10399 \N +411263 2025-10-24 02:04:10.973548+00 2025-10-24 02:04:10.973554+00 f t COSTO_SERVICIO 0.00 2 10399 \N +411264 2025-10-24 02:04:10.974456+00 2025-10-24 02:04:10.974462+00 f t DESCUENTO 0.00 3 10399 \N +411265 2025-10-24 02:04:10.975351+00 2025-10-24 02:04:10.975355+00 f t TOTAL 0.00 4 10399 \N +411266 2025-10-24 02:04:10.97646+00 2025-10-24 02:04:10.976465+00 f t ADELANTO 0.00 5 10399 \N +404147 2025-10-21 21:35:26.100769+00 2025-10-21 21:35:26.100775+00 f t SUBTOTAL 0.00 1 10234 \N +404148 2025-10-21 21:35:26.102816+00 2025-10-21 21:35:26.102822+00 f t COSTO_SERVICIO 0.00 2 10234 \N +404149 2025-10-21 21:35:26.104025+00 2025-10-21 21:35:26.10403+00 f t DESCUENTO 0.00 3 10234 \N +404150 2025-10-21 21:35:26.105132+00 2025-10-21 21:35:26.105138+00 f t TOTAL 0.00 4 10234 \N +404151 2025-10-21 21:35:26.106236+00 2025-10-21 21:35:26.106242+00 f t ADELANTO 0.00 5 10234 \N +404177 2025-10-21 21:41:13.495499+00 2025-10-21 21:41:13.495513+00 f t SUBTOTAL 54000.00 1 10237 \N +404178 2025-10-21 21:41:13.497243+00 2025-10-21 21:41:13.49725+00 f t COSTO_SERVICIO 0.00 2 10237 \N +404179 2025-10-21 21:41:13.498549+00 2025-10-21 21:41:13.498555+00 f t DESCUENTO 0.00 3 10237 \N +404180 2025-10-21 21:41:13.499626+00 2025-10-21 21:41:13.499632+00 f t TOTAL 54000.00 4 10237 \N +404181 2025-10-21 21:41:13.500633+00 2025-10-21 21:41:13.500639+00 f t ADELANTO 13500.00 5 10237 \N +404187 2025-10-21 22:00:34.56956+00 2025-10-21 22:00:34.569571+00 f t SUBTOTAL 0.00 1 10224 \N +404188 2025-10-21 22:00:34.571177+00 2025-10-21 22:00:34.571187+00 f t COSTO_SERVICIO 0.00 2 10224 \N +404189 2025-10-21 22:00:34.572568+00 2025-10-21 22:00:34.572577+00 f t DESCUENTO 0.00 3 10224 \N +404190 2025-10-21 22:00:34.574074+00 2025-10-21 22:00:34.574082+00 f t TOTAL 0.00 4 10224 \N +404191 2025-10-21 22:00:34.57567+00 2025-10-21 22:00:34.575678+00 f t ADELANTO 0.00 5 10224 \N +416967 2025-10-26 04:19:17.899812+00 2025-10-26 04:19:17.89982+00 f t SUBTOTAL 55000.00 1 10533 \N +416968 2025-10-26 04:19:17.90141+00 2025-10-26 04:19:17.901417+00 f t COSTO_SERVICIO 0.00 2 10533 \N +416969 2025-10-26 04:19:17.902503+00 2025-10-26 04:19:17.902508+00 f t DESCUENTO 0.00 3 10533 \N +416970 2025-10-26 04:19:17.903394+00 2025-10-26 04:19:17.9034+00 f t TOTAL 55000.00 4 10533 \N +416971 2025-10-26 04:19:17.904342+00 2025-10-26 04:19:17.904347+00 f t ADELANTO 11000.00 5 10533 \N +417382 2025-10-26 15:47:15.567847+00 2025-10-26 15:47:15.567858+00 f t SUBTOTAL 46000.00 1 10543 \N +417383 2025-10-26 15:47:15.569831+00 2025-10-26 15:47:15.56984+00 f t COSTO_SERVICIO 0.00 2 10543 \N +417384 2025-10-26 15:47:15.571228+00 2025-10-26 15:47:15.571236+00 f t DESCUENTO 0.00 3 10543 \N +417385 2025-10-26 15:47:15.572302+00 2025-10-26 15:47:15.572308+00 f t TOTAL 46000.00 4 10543 \N +417386 2025-10-26 15:47:15.573347+00 2025-10-26 15:47:15.573354+00 f t ADELANTO 11000.00 5 10543 \N +408182 2025-10-23 01:53:30.791038+00 2025-10-23 01:53:30.791045+00 f t SUBTOTAL 46000.00 1 10329 \N +408183 2025-10-23 01:53:30.793106+00 2025-10-23 01:53:30.793112+00 f t COSTO_SERVICIO 0.00 2 10329 \N +408184 2025-10-23 01:53:30.794188+00 2025-10-23 01:53:30.794194+00 f t DESCUENTO 0.00 3 10329 \N +408185 2025-10-23 01:53:30.795186+00 2025-10-23 01:53:30.795191+00 f t TOTAL 46000.00 4 10329 \N +408186 2025-10-23 01:53:30.796282+00 2025-10-23 01:53:30.796289+00 f t ADELANTO 11000.00 5 10329 \N +417661 2025-10-26 16:58:25.230129+00 2025-10-26 16:58:25.230135+00 f t ADELANTO 0.00 5 10549 \N +418052 2025-10-26 18:51:32.966799+00 2025-10-26 18:51:32.966806+00 f t SUBTOTAL 55000.00 1 10559 \N +418053 2025-10-26 18:51:32.96865+00 2025-10-26 18:51:32.968658+00 f t COSTO_SERVICIO 0.00 2 10559 \N +418054 2025-10-26 18:51:32.970035+00 2025-10-26 18:51:32.970042+00 f t DESCUENTO 0.00 3 10559 \N +418055 2025-10-26 18:51:32.971364+00 2025-10-26 18:51:32.97137+00 f t TOTAL 55000.00 4 10559 \N +408907 2025-10-23 05:23:13.182997+00 2025-10-23 05:23:13.183004+00 f t SUBTOTAL 121000.00 1 10339 \N +408908 2025-10-23 05:23:13.184808+00 2025-10-23 05:23:13.184815+00 f t COSTO_SERVICIO 0.00 2 10339 \N +408909 2025-10-23 05:23:13.185974+00 2025-10-23 05:23:13.18598+00 f t DESCUENTO 0.00 3 10339 \N +408910 2025-10-23 05:23:13.186965+00 2025-10-23 05:23:13.18697+00 f t TOTAL 121000.00 4 10339 \N +408911 2025-10-23 05:23:13.187998+00 2025-10-23 05:23:13.188004+00 f t ADELANTO 26000.00 5 10339 \N +418056 2025-10-26 18:51:32.97265+00 2025-10-26 18:51:32.972655+00 f t ADELANTO 11000.00 5 10559 \N +409447 2025-10-23 14:29:52.067757+00 2025-10-23 14:29:52.067766+00 f t SUBTOTAL 30000.00 1 10351 \N +409448 2025-10-23 14:29:52.069298+00 2025-10-23 14:29:52.069305+00 f t COSTO_SERVICIO 0.00 2 10351 \N +409449 2025-10-23 14:29:52.070299+00 2025-10-23 14:29:52.070305+00 f t DESCUENTO 0.00 3 10351 \N +409450 2025-10-23 14:29:52.07127+00 2025-10-23 14:29:52.071275+00 f t TOTAL 30000.00 4 10351 \N +409451 2025-10-23 14:29:52.07231+00 2025-10-23 14:29:52.072315+00 f t ADELANTO 30000.00 5 10351 \N +410032 2025-10-23 17:10:54.09633+00 2025-10-23 17:10:54.09634+00 f t SUBTOTAL 0.00 1 10363 \N +410033 2025-10-23 17:10:54.097857+00 2025-10-23 17:10:54.097864+00 f t COSTO_SERVICIO 0.00 2 10363 \N +410034 2025-10-23 17:10:54.099098+00 2025-10-23 17:10:54.099105+00 f t DESCUENTO 0.00 3 10363 \N +410035 2025-10-23 17:10:54.100472+00 2025-10-23 17:10:54.100479+00 f t TOTAL 0.00 4 10363 \N +410036 2025-10-23 17:10:54.101587+00 2025-10-23 17:10:54.101592+00 f t ADELANTO 0.00 5 10363 \N +419017 2025-10-27 14:19:23.056484+00 2025-10-27 14:19:23.056493+00 f t SUBTOTAL 54000.00 1 10587 \N +419018 2025-10-27 14:19:23.058423+00 2025-10-27 14:19:23.05843+00 f t COSTO_SERVICIO 0.00 2 10587 \N +419019 2025-10-27 14:19:23.059736+00 2025-10-27 14:19:23.059742+00 f t DESCUENTO 0.00 3 10587 \N +419020 2025-10-27 14:19:23.060789+00 2025-10-27 14:19:23.060794+00 f t TOTAL 54000.00 4 10587 \N +419021 2025-10-27 14:19:23.063392+00 2025-10-27 14:19:23.0634+00 f t ADELANTO 13500.00 5 10587 \N +419232 2025-10-27 14:45:16.56253+00 2025-10-27 14:45:16.562539+00 f t SUBTOTAL 55000.00 1 10590 \N +419233 2025-10-27 14:45:16.564443+00 2025-10-27 14:45:16.564451+00 f t COSTO_SERVICIO 0.00 2 10590 \N +419234 2025-10-27 14:45:16.565639+00 2025-10-27 14:45:16.565647+00 f t DESCUENTO 0.00 3 10590 \N +419235 2025-10-27 14:45:16.566646+00 2025-10-27 14:45:16.56665+00 f t TOTAL 55000.00 4 10590 \N +419236 2025-10-27 14:45:16.567567+00 2025-10-27 14:45:16.567572+00 f t ADELANTO 11000.00 5 10590 \N +419352 2025-10-27 15:04:51.472436+00 2025-10-27 15:04:51.472444+00 f t SUBTOTAL 30000.00 1 10595 \N +419353 2025-10-27 15:04:51.47438+00 2025-10-27 15:04:51.474389+00 f t COSTO_SERVICIO 0.00 2 10595 \N +419354 2025-10-27 15:04:51.475693+00 2025-10-27 15:04:51.475699+00 f t DESCUENTO 0.00 3 10595 \N +419355 2025-10-27 15:04:51.477114+00 2025-10-27 15:04:51.47712+00 f t TOTAL 30000.00 4 10595 \N +419356 2025-10-27 15:04:51.478289+00 2025-10-27 15:04:51.478295+00 f t ADELANTO 30000.00 5 10595 \N +410802 2025-10-23 22:20:34.460674+00 2025-10-23 22:20:34.460681+00 f t SUBTOTAL 75000.00 1 10381 \N +410803 2025-10-23 22:20:34.462479+00 2025-10-23 22:20:34.462486+00 f t COSTO_SERVICIO 0.00 2 10381 \N +410804 2025-10-23 22:20:34.463747+00 2025-10-23 22:20:34.463753+00 f t DESCUENTO 0.00 3 10381 \N +410805 2025-10-23 22:20:34.46501+00 2025-10-23 22:20:34.465016+00 f t TOTAL 75000.00 4 10381 \N +410806 2025-10-23 22:20:34.466058+00 2025-10-23 22:20:34.466063+00 f t ADELANTO 15000.00 5 10381 \N +404367 2025-10-21 22:11:31.053229+00 2025-10-21 22:11:31.053237+00 f t SUBTOTAL 54000.00 1 10239 \N +404368 2025-10-21 22:11:31.055372+00 2025-10-21 22:11:31.055381+00 f t COSTO_SERVICIO 0.00 2 10239 \N +404369 2025-10-21 22:11:31.056693+00 2025-10-21 22:11:31.0567+00 f t DESCUENTO 0.00 3 10239 \N +404370 2025-10-21 22:11:31.058064+00 2025-10-21 22:11:31.05807+00 f t TOTAL 54000.00 4 10239 \N +404371 2025-10-21 22:11:31.058996+00 2025-10-21 22:11:31.059002+00 f t ADELANTO 13500.00 5 10239 \N +410907 2025-10-23 22:57:20.599043+00 2025-10-23 22:57:20.599055+00 f t SUBTOTAL 30000.00 1 10387 \N +410908 2025-10-23 22:57:20.601072+00 2025-10-23 22:57:20.601082+00 f t COSTO_SERVICIO 0.00 2 10387 \N +410909 2025-10-23 22:57:20.602552+00 2025-10-23 22:57:20.602561+00 f t DESCUENTO 0.00 3 10387 \N +410910 2025-10-23 22:57:20.603901+00 2025-10-23 22:57:20.60391+00 f t TOTAL 30000.00 4 10387 \N +410911 2025-10-23 22:57:20.605241+00 2025-10-23 22:57:20.605249+00 f t ADELANTO 30000.00 5 10387 \N +404397 2025-10-21 22:13:52.672759+00 2025-10-21 22:13:52.672771+00 f t SUBTOTAL 46000.00 1 10240 \N +404398 2025-10-21 22:13:52.674676+00 2025-10-21 22:13:52.674685+00 f t COSTO_SERVICIO 0.00 2 10240 \N +404399 2025-10-21 22:13:52.676167+00 2025-10-21 22:13:52.676176+00 f t DESCUENTO 0.00 3 10240 \N +404400 2025-10-21 22:13:52.677624+00 2025-10-21 22:13:52.677632+00 f t TOTAL 46000.00 4 10240 \N +404401 2025-10-21 22:13:52.678936+00 2025-10-21 22:13:52.678944+00 f t ADELANTO 11000.00 5 10240 \N +404442 2025-10-21 22:23:31.066338+00 2025-10-21 22:23:31.06635+00 f t SUBTOTAL 0.00 1 10242 \N +404443 2025-10-21 22:23:31.067747+00 2025-10-21 22:23:31.067753+00 f t COSTO_SERVICIO 0.00 2 10242 \N +404444 2025-10-21 22:23:31.068865+00 2025-10-21 22:23:31.068871+00 f t DESCUENTO 0.00 3 10242 \N +404445 2025-10-21 22:23:31.069836+00 2025-10-21 22:23:31.069841+00 f t TOTAL 0.00 4 10242 \N +404446 2025-10-21 22:23:31.070788+00 2025-10-21 22:23:31.070793+00 f t ADELANTO 0.00 5 10242 \N +404452 2025-10-21 22:24:00.829997+00 2025-10-21 22:24:00.830005+00 f t SUBTOTAL 0.00 1 10243 \N +404453 2025-10-21 22:24:00.831559+00 2025-10-21 22:24:00.831568+00 f t COSTO_SERVICIO 0.00 2 10243 \N +404454 2025-10-21 22:24:00.833069+00 2025-10-21 22:24:00.833077+00 f t DESCUENTO 0.00 3 10243 \N +404455 2025-10-21 22:24:00.834309+00 2025-10-21 22:24:00.834317+00 f t TOTAL 0.00 4 10243 \N +404456 2025-10-21 22:24:00.835395+00 2025-10-21 22:24:00.835401+00 f t ADELANTO 0.00 5 10243 \N +416142 2025-10-25 22:42:37.193348+00 2025-10-25 22:42:37.193357+00 f t SUBTOTAL 0.00 1 10517 \N +416143 2025-10-25 22:42:37.195687+00 2025-10-25 22:42:37.195694+00 f t COSTO_SERVICIO 0.00 2 10517 \N +416144 2025-10-25 22:42:37.196837+00 2025-10-25 22:42:37.196842+00 f t DESCUENTO 0.00 3 10517 \N +416145 2025-10-25 22:42:37.198101+00 2025-10-25 22:42:37.198111+00 f t TOTAL 0.00 4 10517 \N +416146 2025-10-25 22:42:37.199478+00 2025-10-25 22:42:37.199485+00 f t ADELANTO 0.00 5 10517 \N +435622 2025-10-30 14:09:14.96361+00 2025-10-30 14:09:14.963619+00 f t SUBTOTAL 0.00 1 10971 \N +435623 2025-10-30 14:09:14.965006+00 2025-10-30 14:09:14.965011+00 f t COSTO_SERVICIO 0.00 2 10971 \N +435624 2025-10-30 14:09:14.96599+00 2025-10-30 14:09:14.965995+00 f t DESCUENTO 0.00 3 10971 \N +435625 2025-10-30 14:09:14.967033+00 2025-10-30 14:09:14.967039+00 f t TOTAL 0.00 4 10971 \N +435626 2025-10-30 14:09:14.968111+00 2025-10-30 14:09:14.968116+00 f t ADELANTO 0.00 5 10971 \N +426212 2025-10-28 17:47:25.636093+00 2025-10-28 17:47:25.636104+00 f t SUBTOTAL 0.00 1 10746 \N +426213 2025-10-28 17:47:25.637337+00 2025-10-28 17:47:25.637343+00 f t COSTO_SERVICIO 0.00 2 10746 \N +426214 2025-10-28 17:47:25.638268+00 2025-10-28 17:47:25.638272+00 f t DESCUENTO 0.00 3 10746 \N +426215 2025-10-28 17:47:25.639198+00 2025-10-28 17:47:25.639237+00 f t TOTAL 0.00 4 10746 \N +426216 2025-10-28 17:47:25.640241+00 2025-10-28 17:47:25.640245+00 f t ADELANTO 0.00 5 10746 \N +426407 2025-10-28 18:04:09.942694+00 2025-10-28 18:04:09.942703+00 f t SUBTOTAL 0.00 1 10752 \N +426408 2025-10-28 18:04:09.9446+00 2025-10-28 18:04:09.944608+00 f t COSTO_SERVICIO 0.00 2 10752 \N +426409 2025-10-28 18:04:09.945691+00 2025-10-28 18:04:09.945697+00 f t DESCUENTO 0.00 3 10752 \N +426410 2025-10-28 18:04:09.946748+00 2025-10-28 18:04:09.946753+00 f t TOTAL 0.00 4 10752 \N +426411 2025-10-28 18:04:09.947844+00 2025-10-28 18:04:09.94785+00 f t ADELANTO 0.00 5 10752 \N +417247 2025-10-26 15:17:02.580089+00 2025-10-26 15:17:02.580099+00 f t SUBTOTAL 46000.00 1 10539 \N +417248 2025-10-26 15:17:02.582766+00 2025-10-26 15:17:02.582774+00 f t COSTO_SERVICIO 0.00 2 10539 \N +417249 2025-10-26 15:17:02.585324+00 2025-10-26 15:17:02.585335+00 f t DESCUENTO 0.00 3 10539 \N +417250 2025-10-26 15:17:02.587215+00 2025-10-26 15:17:02.587223+00 f t TOTAL 46000.00 4 10539 \N +417251 2025-10-26 15:17:02.588833+00 2025-10-26 15:17:02.588843+00 f t ADELANTO 11000.00 5 10539 \N +408192 2025-10-23 01:54:07.124389+00 2025-10-23 01:54:07.124398+00 f t SUBTOTAL 0.00 1 10330 \N +408193 2025-10-23 01:54:07.126238+00 2025-10-23 01:54:07.126247+00 f t COSTO_SERVICIO 0.00 2 10330 \N +408194 2025-10-23 01:54:07.127556+00 2025-10-23 01:54:07.127563+00 f t DESCUENTO 0.00 3 10330 \N +408195 2025-10-23 01:54:07.128716+00 2025-10-23 01:54:07.128722+00 f t TOTAL 0.00 4 10330 \N +408196 2025-10-23 01:54:07.130014+00 2025-10-23 01:54:07.13002+00 f t ADELANTO 0.00 5 10330 \N +404547 2025-10-21 22:28:47.09209+00 2025-10-21 22:28:47.0921+00 f t SUBTOTAL 94000.00 1 10241 \N +404548 2025-10-21 22:28:47.094064+00 2025-10-21 22:28:47.094073+00 f t COSTO_SERVICIO 0.00 2 10241 \N +404549 2025-10-21 22:28:47.095827+00 2025-10-21 22:28:47.095836+00 f t DESCUENTO 0.00 3 10241 \N +404550 2025-10-21 22:28:47.097381+00 2025-10-21 22:28:47.097388+00 f t TOTAL 94000.00 4 10241 \N +404551 2025-10-21 22:28:47.098606+00 2025-10-21 22:28:47.098611+00 f t ADELANTO 27000.00 5 10241 \N +417777 2025-10-26 17:24:17.950174+00 2025-10-26 17:24:17.950186+00 f t SUBTOTAL 55000.00 1 10550 \N +417778 2025-10-26 17:24:17.952032+00 2025-10-26 17:24:17.952042+00 f t COSTO_SERVICIO 0.00 2 10550 \N +417779 2025-10-26 17:24:17.953539+00 2025-10-26 17:24:17.953548+00 f t DESCUENTO 0.00 3 10550 \N +417780 2025-10-26 17:24:17.954844+00 2025-10-26 17:24:17.954851+00 f t TOTAL 55000.00 4 10550 \N +417781 2025-10-26 17:24:17.955949+00 2025-10-26 17:24:17.955955+00 f t ADELANTO 11000.00 5 10550 \N +408772 2025-10-23 03:14:39.008587+00 2025-10-23 03:14:39.008597+00 f t SUBTOTAL 0.00 1 10336 \N +408773 2025-10-23 03:14:39.010112+00 2025-10-23 03:14:39.010118+00 f t COSTO_SERVICIO 0.00 2 10336 \N +408774 2025-10-23 03:14:39.011256+00 2025-10-23 03:14:39.011262+00 f t DESCUENTO 0.00 3 10336 \N +408775 2025-10-23 03:14:39.012213+00 2025-10-23 03:14:39.012219+00 f t TOTAL 0.00 4 10336 \N +408776 2025-10-23 03:14:39.013156+00 2025-10-23 03:14:39.013161+00 f t ADELANTO 0.00 5 10336 \N +404577 2025-10-21 22:30:02.700294+00 2025-10-21 22:30:02.700307+00 f t SUBTOTAL 46000.00 1 10244 \N +404578 2025-10-21 22:30:02.70365+00 2025-10-21 22:30:02.703664+00 f t COSTO_SERVICIO 0.00 2 10244 \N +404579 2025-10-21 22:30:02.713807+00 2025-10-21 22:30:02.71382+00 f t DESCUENTO 0.00 3 10244 \N +404580 2025-10-21 22:30:02.723838+00 2025-10-21 22:30:02.723851+00 f t TOTAL 46000.00 4 10244 \N +404581 2025-10-21 22:30:02.726858+00 2025-10-21 22:30:02.726871+00 f t ADELANTO 11000.00 5 10244 \N +418677 2025-10-27 12:44:29.489687+00 2025-10-27 12:44:29.489695+00 f t SUBTOTAL 54000.00 1 10578 \N +418678 2025-10-27 12:44:29.491607+00 2025-10-27 12:44:29.491614+00 f t COSTO_SERVICIO 0.00 2 10578 \N +418679 2025-10-27 12:44:29.49286+00 2025-10-27 12:44:29.492867+00 f t DESCUENTO 0.00 3 10578 \N +418680 2025-10-27 12:44:29.493994+00 2025-10-27 12:44:29.494+00 f t TOTAL 54000.00 4 10578 \N +418681 2025-10-27 12:44:29.495049+00 2025-10-27 12:44:29.495057+00 f t ADELANTO 13500.00 5 10578 \N +419027 2025-10-27 14:27:59.896171+00 2025-10-27 14:27:59.896181+00 f t SUBTOTAL 0.00 1 10588 \N +419028 2025-10-27 14:27:59.897843+00 2025-10-27 14:27:59.897851+00 f t COSTO_SERVICIO 0.00 2 10588 \N +419029 2025-10-27 14:27:59.899306+00 2025-10-27 14:27:59.899315+00 f t DESCUENTO 0.00 3 10588 \N +419030 2025-10-27 14:27:59.900799+00 2025-10-27 14:27:59.900808+00 f t TOTAL 0.00 4 10588 \N +419031 2025-10-27 14:27:59.902088+00 2025-10-27 14:27:59.902095+00 f t ADELANTO 0.00 5 10588 \N +404652 2025-10-21 22:46:12.960063+00 2025-10-21 22:46:12.960072+00 f t SUBTOTAL 0.00 1 10195 \N +404653 2025-10-21 22:46:12.961376+00 2025-10-21 22:46:12.961382+00 f t COSTO_SERVICIO 0.00 2 10195 \N +404654 2025-10-21 22:46:12.962458+00 2025-10-21 22:46:12.962464+00 f t DESCUENTO 0.00 3 10195 \N +404655 2025-10-21 22:46:12.963525+00 2025-10-21 22:46:12.96353+00 f t TOTAL 0.00 4 10195 \N +404656 2025-10-21 22:46:12.964537+00 2025-10-21 22:46:12.964542+00 f t ADELANTO 0.00 5 10195 \N +410697 2025-10-23 20:20:01.299597+00 2025-10-23 20:20:01.299611+00 f t SUBTOTAL 13200.00 1 10376 \N +410698 2025-10-23 20:20:01.302578+00 2025-10-23 20:20:01.302591+00 f t COSTO_SERVICIO 0.00 2 10376 \N +410699 2025-10-23 20:20:01.305217+00 2025-10-23 20:20:01.305228+00 f t DESCUENTO 0.00 3 10376 \N +410700 2025-10-23 20:20:01.307435+00 2025-10-23 20:20:01.307445+00 f t TOTAL 13200.00 4 10376 \N +410701 2025-10-23 20:20:01.309258+00 2025-10-23 20:20:01.309269+00 f t ADELANTO 13200.00 5 10376 \N +410917 2025-10-23 22:59:06.028067+00 2025-10-23 22:59:06.028079+00 f t SUBTOTAL 0.00 1 10388 \N +410918 2025-10-23 22:59:06.029595+00 2025-10-23 22:59:06.029602+00 f t COSTO_SERVICIO 0.00 2 10388 \N +410919 2025-10-23 22:59:06.031032+00 2025-10-23 22:59:06.031039+00 f t DESCUENTO 0.00 3 10388 \N +410920 2025-10-23 22:59:06.03227+00 2025-10-23 22:59:06.032276+00 f t TOTAL 0.00 4 10388 \N +410921 2025-10-23 22:59:06.033479+00 2025-10-23 22:59:06.033485+00 f t ADELANTO 0.00 5 10388 \N +404722 2025-10-21 22:46:57.089042+00 2025-10-21 22:46:57.089053+00 f t SUBTOTAL 0.00 1 10246 \N +404723 2025-10-21 22:46:57.091012+00 2025-10-21 22:46:57.09102+00 f t COSTO_SERVICIO 0.00 2 10246 \N +404724 2025-10-21 22:46:57.09222+00 2025-10-21 22:46:57.092226+00 f t DESCUENTO 0.00 3 10246 \N +404725 2025-10-21 22:46:57.093929+00 2025-10-21 22:46:57.09394+00 f t TOTAL 0.00 4 10246 \N +404726 2025-10-21 22:46:57.09538+00 2025-10-21 22:46:57.095388+00 f t ADELANTO 0.00 5 10246 \N +406742 2025-10-22 16:20:31.107376+00 2025-10-22 16:20:31.107383+00 f t SUBTOTAL 55000.00 1 10295 \N +406743 2025-10-22 16:20:31.109396+00 2025-10-22 16:20:31.109402+00 f t COSTO_SERVICIO 0.00 2 10295 \N +406744 2025-10-22 16:20:31.110595+00 2025-10-22 16:20:31.1106+00 f t DESCUENTO 0.00 3 10295 \N +406745 2025-10-22 16:20:31.111725+00 2025-10-22 16:20:31.11173+00 f t TOTAL 55000.00 4 10295 \N +406746 2025-10-22 16:20:31.112825+00 2025-10-22 16:20:31.112832+00 f t ADELANTO 11000.00 5 10295 \N +456591 2025-11-05 14:39:42.986948+00 2025-11-05 14:39:42.986952+00 f t ADELANTO 11000.00 5 11465 \N +404817 2025-10-21 22:49:53.935628+00 2025-10-21 22:49:53.93564+00 f t SUBTOTAL 0.00 1 10248 \N +404818 2025-10-21 22:49:53.937166+00 2025-10-21 22:49:53.937175+00 f t COSTO_SERVICIO 0.00 2 10248 \N +404819 2025-10-21 22:49:53.93848+00 2025-10-21 22:49:53.938486+00 f t DESCUENTO 0.00 3 10248 \N +404820 2025-10-21 22:49:53.939647+00 2025-10-21 22:49:53.939653+00 f t TOTAL 0.00 4 10248 \N +404821 2025-10-21 22:49:53.940748+00 2025-10-21 22:49:53.940753+00 f t ADELANTO 0.00 5 10248 \N +417787 2025-10-26 17:25:13.259153+00 2025-10-26 17:25:13.259162+00 f t SUBTOTAL 0.00 1 10551 \N +417788 2025-10-26 17:25:13.260702+00 2025-10-26 17:25:13.260709+00 f t COSTO_SERVICIO 0.00 2 10551 \N +417789 2025-10-26 17:25:13.261729+00 2025-10-26 17:25:13.261734+00 f t DESCUENTO 0.00 3 10551 \N +417790 2025-10-26 17:25:13.262681+00 2025-10-26 17:25:13.262686+00 f t TOTAL 0.00 4 10551 \N +417791 2025-10-26 17:25:13.263965+00 2025-10-26 17:25:13.26397+00 f t ADELANTO 0.00 5 10551 \N +458912 2025-11-06 02:36:26.761449+00 2025-11-06 02:36:26.76146+00 f t SUBTOTAL 46000.00 1 11518 \N +458913 2025-11-06 02:36:26.763539+00 2025-11-06 02:36:26.763548+00 f t COSTO_SERVICIO 0.00 2 11518 \N +458914 2025-11-06 02:36:26.765021+00 2025-11-06 02:36:26.765029+00 f t DESCUENTO 0.00 3 11518 \N +404857 2025-10-21 22:50:42.032399+00 2025-10-21 22:50:42.032407+00 f t SUBTOTAL 99400.00 1 10247 \N +404858 2025-10-21 22:50:42.034409+00 2025-10-21 22:50:42.034416+00 f t COSTO_SERVICIO 0.00 2 10247 \N +404859 2025-10-21 22:50:42.035648+00 2025-10-21 22:50:42.035654+00 f t DESCUENTO 0.00 3 10247 \N +404860 2025-10-21 22:50:42.036711+00 2025-10-21 22:50:42.036717+00 f t TOTAL 99400.00 4 10247 \N +404861 2025-10-21 22:50:42.037689+00 2025-10-21 22:50:42.037694+00 f t ADELANTO 58900.00 5 10247 \N +458915 2025-11-06 02:36:26.766281+00 2025-11-06 02:36:26.766289+00 f t TOTAL 46000.00 4 11518 \N +458916 2025-11-06 02:36:26.767497+00 2025-11-06 02:36:26.767505+00 f t ADELANTO 11000.00 5 11518 \N +418067 2025-10-26 19:02:34.537291+00 2025-10-26 19:02:34.5373+00 f t SUBTOTAL 46000.00 1 10560 \N +418068 2025-10-26 19:02:34.539274+00 2025-10-26 19:02:34.539281+00 f t COSTO_SERVICIO 0.00 2 10560 \N +418069 2025-10-26 19:02:34.540462+00 2025-10-26 19:02:34.540468+00 f t DESCUENTO 0.00 3 10560 \N +418070 2025-10-26 19:02:34.541634+00 2025-10-26 19:02:34.54164+00 f t TOTAL 46000.00 4 10560 \N +418071 2025-10-26 19:02:34.542929+00 2025-10-26 19:02:34.542934+00 f t ADELANTO 11000.00 5 10560 \N +409337 2025-10-23 14:02:29.44137+00 2025-10-23 14:02:29.441382+00 f t SUBTOTAL 0.00 1 10349 \N +409338 2025-10-23 14:02:29.443003+00 2025-10-23 14:02:29.443014+00 f t COSTO_SERVICIO 0.00 2 10349 \N +409339 2025-10-23 14:02:29.44444+00 2025-10-23 14:02:29.444453+00 f t DESCUENTO 0.00 3 10349 \N +409340 2025-10-23 14:02:29.445886+00 2025-10-23 14:02:29.445894+00 f t TOTAL 0.00 4 10349 \N +409341 2025-10-23 14:02:29.446987+00 2025-10-23 14:02:29.446993+00 f t ADELANTO 0.00 5 10349 \N +418447 2025-10-27 03:49:56.957579+00 2025-10-27 03:49:56.957588+00 f t SUBTOTAL 0.00 1 10571 \N +418448 2025-10-27 03:49:56.959441+00 2025-10-27 03:49:56.959447+00 f t COSTO_SERVICIO 0.00 2 10571 \N +418449 2025-10-27 03:49:56.960531+00 2025-10-27 03:49:56.960538+00 f t DESCUENTO 0.00 3 10571 \N +418450 2025-10-27 03:49:56.961674+00 2025-10-27 03:49:56.96168+00 f t TOTAL 0.00 4 10571 \N +418451 2025-10-27 03:49:56.962939+00 2025-10-27 03:49:56.962944+00 f t ADELANTO 0.00 5 10571 \N +404917 2025-10-21 23:00:16.993201+00 2025-10-21 23:00:16.993214+00 f t SUBTOTAL 0.00 1 10249 \N +404918 2025-10-21 23:00:16.994851+00 2025-10-21 23:00:16.994859+00 f t COSTO_SERVICIO 0.00 2 10249 \N +404919 2025-10-21 23:00:16.996271+00 2025-10-21 23:00:16.996278+00 f t DESCUENTO 0.00 3 10249 \N +404920 2025-10-21 23:00:16.998312+00 2025-10-21 23:00:16.998323+00 f t TOTAL 0.00 4 10249 \N +404921 2025-10-21 23:00:17.00031+00 2025-10-21 23:00:17.000321+00 f t ADELANTO 0.00 5 10249 \N +419037 2025-10-27 14:31:25.115412+00 2025-10-27 14:31:25.115421+00 f t SUBTOTAL 0.00 1 10589 \N +419038 2025-10-27 14:31:25.117204+00 2025-10-27 14:31:25.117214+00 f t COSTO_SERVICIO 0.00 2 10589 \N +419039 2025-10-27 14:31:25.118821+00 2025-10-27 14:31:25.118828+00 f t DESCUENTO 0.00 3 10589 \N +419040 2025-10-27 14:31:25.11996+00 2025-10-27 14:31:25.11997+00 f t TOTAL 0.00 4 10589 \N +419041 2025-10-27 14:31:25.121113+00 2025-10-27 14:31:25.121119+00 f t ADELANTO 0.00 5 10589 \N +404937 2025-10-21 23:01:09.697143+00 2025-10-21 23:01:09.697152+00 f t SUBTOTAL 0.00 1 10250 \N +404938 2025-10-21 23:01:09.698828+00 2025-10-21 23:01:09.698837+00 f t COSTO_SERVICIO 0.00 2 10250 \N +404939 2025-10-21 23:01:09.700095+00 2025-10-21 23:01:09.700101+00 f t DESCUENTO 0.00 3 10250 \N +404940 2025-10-21 23:01:09.701057+00 2025-10-21 23:01:09.701063+00 f t TOTAL 0.00 4 10250 \N +404941 2025-10-21 23:01:09.702247+00 2025-10-21 23:01:09.702253+00 f t ADELANTO 0.00 5 10250 \N +410707 2025-10-23 20:59:24.301564+00 2025-10-23 20:59:24.301576+00 f t SUBTOTAL 0.00 1 10377 \N +410708 2025-10-23 20:59:24.303196+00 2025-10-23 20:59:24.303203+00 f t COSTO_SERVICIO 0.00 2 10377 \N +410709 2025-10-23 20:59:24.304386+00 2025-10-23 20:59:24.304392+00 f t DESCUENTO 0.00 3 10377 \N +410710 2025-10-23 20:59:24.305538+00 2025-10-23 20:59:24.305547+00 f t TOTAL 0.00 4 10377 \N +410711 2025-10-23 20:59:24.306656+00 2025-10-23 20:59:24.306664+00 f t ADELANTO 0.00 5 10377 \N +410817 2025-10-23 22:27:24.032131+00 2025-10-23 22:27:24.032139+00 f t SUBTOTAL 75000.00 1 10382 \N +410818 2025-10-23 22:27:24.034252+00 2025-10-23 22:27:24.034259+00 f t COSTO_SERVICIO 0.00 2 10382 \N +410819 2025-10-23 22:27:24.035651+00 2025-10-23 22:27:24.035658+00 f t DESCUENTO 0.00 3 10382 \N +410820 2025-10-23 22:27:24.036844+00 2025-10-23 22:27:24.03685+00 f t TOTAL 75000.00 4 10382 \N +410821 2025-10-23 22:27:24.038008+00 2025-10-23 22:27:24.038013+00 f t ADELANTO 15000.00 5 10382 \N +404997 2025-10-21 23:16:13.789769+00 2025-10-21 23:16:13.78978+00 f t SUBTOTAL 0.00 1 10251 \N +404998 2025-10-21 23:16:13.791453+00 2025-10-21 23:16:13.791462+00 f t COSTO_SERVICIO 0.00 2 10251 \N +404999 2025-10-21 23:16:13.793016+00 2025-10-21 23:16:13.793025+00 f t DESCUENTO 0.00 3 10251 \N +405000 2025-10-21 23:16:13.794481+00 2025-10-21 23:16:13.794489+00 f t TOTAL 0.00 4 10251 \N +405001 2025-10-21 23:16:13.795749+00 2025-10-21 23:16:13.795756+00 f t ADELANTO 0.00 5 10251 \N +405017 2025-10-21 23:16:24.11846+00 2025-10-21 23:16:24.11847+00 f t SUBTOTAL 98400.00 1 10245 \N +405018 2025-10-21 23:16:24.120368+00 2025-10-21 23:16:24.120375+00 f t COSTO_SERVICIO 0.00 2 10245 \N +405019 2025-10-21 23:16:24.121797+00 2025-10-21 23:16:24.121804+00 f t DESCUENTO 0.00 3 10245 \N +405020 2025-10-21 23:16:24.123013+00 2025-10-21 23:16:24.123019+00 f t TOTAL 98400.00 4 10245 \N +405021 2025-10-21 23:16:24.124242+00 2025-10-21 23:16:24.124249+00 f t ADELANTO 57900.00 5 10245 \N +411512 2025-10-24 05:06:16.058476+00 2025-10-24 05:06:16.058484+00 f t SUBTOTAL 55000.00 1 10406 \N +411513 2025-10-24 05:06:16.060356+00 2025-10-24 05:06:16.060363+00 f t COSTO_SERVICIO 0.00 2 10406 \N +411514 2025-10-24 05:06:16.06166+00 2025-10-24 05:06:16.061665+00 f t DESCUENTO 0.00 3 10406 \N +411515 2025-10-24 05:06:16.062964+00 2025-10-24 05:06:16.06297+00 f t TOTAL 55000.00 4 10406 \N +411516 2025-10-24 05:06:16.06402+00 2025-10-24 05:06:16.064025+00 f t ADELANTO 11000.00 5 10406 \N +425782 2025-10-28 16:31:58.631657+00 2025-10-28 16:31:58.631666+00 f t SUBTOTAL 55000.00 1 10737 \N +405087 2025-10-21 23:28:50.302615+00 2025-10-21 23:28:50.302623+00 f t SUBTOTAL 0.00 1 10252 \N +405088 2025-10-21 23:28:50.304603+00 2025-10-21 23:28:50.304611+00 f t COSTO_SERVICIO 0.00 2 10252 \N +405089 2025-10-21 23:28:50.306003+00 2025-10-21 23:28:50.306009+00 f t DESCUENTO 0.00 3 10252 \N +405090 2025-10-21 23:28:50.307377+00 2025-10-21 23:28:50.307387+00 f t TOTAL 0.00 4 10252 \N +405091 2025-10-21 23:28:50.308877+00 2025-10-21 23:28:50.308886+00 f t ADELANTO 0.00 5 10252 \N +416982 2025-10-26 04:19:24.891196+00 2025-10-26 04:19:24.891207+00 f t SUBTOTAL 101000.00 1 10534 \N +416983 2025-10-26 04:19:24.893221+00 2025-10-26 04:19:24.893228+00 f t COSTO_SERVICIO 0.00 2 10534 \N +416984 2025-10-26 04:19:24.89448+00 2025-10-26 04:19:24.894486+00 f t DESCUENTO 0.00 3 10534 \N +416985 2025-10-26 04:19:24.895557+00 2025-10-26 04:19:24.895562+00 f t TOTAL 101000.00 4 10534 \N +416986 2025-10-26 04:19:24.896678+00 2025-10-26 04:19:24.896683+00 f t ADELANTO 22000.00 5 10534 \N +405107 2025-10-21 23:38:40.131532+00 2025-10-21 23:38:40.131541+00 f t SUBTOTAL 0.00 1 10253 \N +405108 2025-10-21 23:38:40.132792+00 2025-10-21 23:38:40.132798+00 f t COSTO_SERVICIO 0.00 2 10253 \N +405109 2025-10-21 23:38:40.133775+00 2025-10-21 23:38:40.133781+00 f t DESCUENTO 0.00 3 10253 \N +405110 2025-10-21 23:38:40.13466+00 2025-10-21 23:38:40.134667+00 f t TOTAL 0.00 4 10253 \N +405111 2025-10-21 23:38:40.135692+00 2025-10-21 23:38:40.135697+00 f t ADELANTO 0.00 5 10253 \N +417672 2025-10-26 16:59:12.679335+00 2025-10-26 16:59:12.679342+00 f t SUBTOTAL 30000.00 1 10548 \N +417673 2025-10-26 16:59:12.68094+00 2025-10-26 16:59:12.680978+00 f t COSTO_SERVICIO 0.00 2 10548 \N +417674 2025-10-26 16:59:12.68201+00 2025-10-26 16:59:12.682015+00 f t DESCUENTO 0.00 3 10548 \N +417675 2025-10-26 16:59:12.682954+00 2025-10-26 16:59:12.682959+00 f t TOTAL 30000.00 4 10548 \N +417676 2025-10-26 16:59:12.684002+00 2025-10-26 16:59:12.684007+00 f t ADELANTO 30000.00 5 10548 \N +417797 2025-10-26 17:25:23.795886+00 2025-10-26 17:25:23.795895+00 f t SUBTOTAL 0.00 1 10552 \N +417798 2025-10-26 17:25:23.797311+00 2025-10-26 17:25:23.797317+00 f t COSTO_SERVICIO 0.00 2 10552 \N +417799 2025-10-26 17:25:23.7984+00 2025-10-26 17:25:23.798405+00 f t DESCUENTO 0.00 3 10552 \N +417800 2025-10-26 17:25:23.799507+00 2025-10-26 17:25:23.799513+00 f t TOTAL 0.00 4 10552 \N +417801 2025-10-26 17:25:23.800483+00 2025-10-26 17:25:23.800488+00 f t ADELANTO 0.00 5 10552 \N +418072 2025-10-26 19:03:54.64098+00 2025-10-26 19:03:54.640991+00 f t SUBTOTAL 75000.00 1 10506 \N +418073 2025-10-26 19:03:54.643295+00 2025-10-26 19:03:54.643305+00 f t COSTO_SERVICIO 0.00 2 10506 \N +418074 2025-10-26 19:03:54.644815+00 2025-10-26 19:03:54.644824+00 f t DESCUENTO 0.00 3 10506 \N +418075 2025-10-26 19:03:54.646744+00 2025-10-26 19:03:54.646753+00 f t TOTAL 75000.00 4 10506 \N +418076 2025-10-26 19:03:54.648557+00 2025-10-26 19:03:54.648566+00 f t ADELANTO 15000.00 5 10506 \N +405152 2025-10-21 23:42:09.656966+00 2025-10-21 23:42:09.656975+00 f t SUBTOTAL 70000.00 1 10254 \N +405153 2025-10-21 23:42:09.658873+00 2025-10-21 23:42:09.65888+00 f t COSTO_SERVICIO 0.00 2 10254 \N +405154 2025-10-21 23:42:09.660354+00 2025-10-21 23:42:09.66036+00 f t DESCUENTO 0.00 3 10254 \N +405155 2025-10-21 23:42:09.661587+00 2025-10-21 23:42:09.661592+00 f t TOTAL 70000.00 4 10254 \N +405156 2025-10-21 23:42:09.662778+00 2025-10-21 23:42:09.662783+00 f t ADELANTO 19000.00 5 10254 \N +405182 2025-10-21 23:44:19.950927+00 2025-10-21 23:44:19.950935+00 f t SUBTOTAL 30000.00 1 10255 \N +405183 2025-10-21 23:44:19.952635+00 2025-10-21 23:44:19.952642+00 f t COSTO_SERVICIO 0.00 2 10255 \N +405184 2025-10-21 23:44:19.953907+00 2025-10-21 23:44:19.953913+00 f t DESCUENTO 0.00 3 10255 \N +405185 2025-10-21 23:44:19.955296+00 2025-10-21 23:44:19.955303+00 f t TOTAL 30000.00 4 10255 \N +405186 2025-10-21 23:44:19.956483+00 2025-10-21 23:44:19.956489+00 f t ADELANTO 30000.00 5 10255 \N +405192 2025-10-22 00:32:40.485111+00 2025-10-22 00:32:40.485122+00 f t SUBTOTAL 0.00 1 10256 \N +405193 2025-10-22 00:32:40.486775+00 2025-10-22 00:32:40.486783+00 f t COSTO_SERVICIO 0.00 2 10256 \N +405194 2025-10-22 00:32:40.488507+00 2025-10-22 00:32:40.488514+00 f t DESCUENTO 0.00 3 10256 \N +405195 2025-10-22 00:32:40.489706+00 2025-10-22 00:32:40.489712+00 f t TOTAL 0.00 4 10256 \N +405196 2025-10-22 00:32:40.49078+00 2025-10-22 00:32:40.490786+00 f t ADELANTO 0.00 5 10256 \N +405242 2025-10-22 00:34:28.192988+00 2025-10-22 00:34:28.192995+00 f t SUBTOTAL 70000.00 1 10257 \N +405243 2025-10-22 00:34:28.194526+00 2025-10-22 00:34:28.194532+00 f t COSTO_SERVICIO 0.00 2 10257 \N +405244 2025-10-22 00:34:28.195637+00 2025-10-22 00:34:28.195642+00 f t DESCUENTO 0.00 3 10257 \N +405245 2025-10-22 00:34:28.19674+00 2025-10-22 00:34:28.196747+00 f t TOTAL 70000.00 4 10257 \N +405246 2025-10-22 00:34:28.197758+00 2025-10-22 00:34:28.197763+00 f t ADELANTO 19000.00 5 10257 \N +405252 2025-10-22 00:42:46.801487+00 2025-10-22 00:42:46.801497+00 f t SUBTOTAL 0.00 1 10258 \N +405253 2025-10-22 00:42:46.802913+00 2025-10-22 00:42:46.80292+00 f t COSTO_SERVICIO 0.00 2 10258 \N +405254 2025-10-22 00:42:46.804141+00 2025-10-22 00:42:46.804147+00 f t DESCUENTO 0.00 3 10258 \N +405255 2025-10-22 00:42:46.805107+00 2025-10-22 00:42:46.805115+00 f t TOTAL 0.00 4 10258 \N +405256 2025-10-22 00:42:46.806134+00 2025-10-22 00:42:46.806139+00 f t ADELANTO 0.00 5 10258 \N +410827 2025-10-23 22:34:33.3434+00 2025-10-23 22:34:33.343408+00 f t SUBTOTAL 0.00 1 10383 \N +410828 2025-10-23 22:34:33.344819+00 2025-10-23 22:34:33.344825+00 f t COSTO_SERVICIO 0.00 2 10383 \N +410829 2025-10-23 22:34:33.345989+00 2025-10-23 22:34:33.345998+00 f t DESCUENTO 0.00 3 10383 \N +410830 2025-10-23 22:34:33.347126+00 2025-10-23 22:34:33.347153+00 f t TOTAL 0.00 4 10383 \N +410831 2025-10-23 22:34:33.348235+00 2025-10-23 22:34:33.34824+00 f t ADELANTO 0.00 5 10383 \N +405282 2025-10-22 00:50:01.970634+00 2025-10-22 00:50:01.970651+00 f t SUBTOTAL 46000.00 1 10259 \N +405283 2025-10-22 00:50:02.000658+00 2025-10-22 00:50:02.000679+00 f t COSTO_SERVICIO 0.00 2 10259 \N +405284 2025-10-22 00:50:02.008607+00 2025-10-22 00:50:02.008623+00 f t DESCUENTO 0.00 3 10259 \N +405285 2025-10-22 00:50:02.011858+00 2025-10-22 00:50:02.011872+00 f t TOTAL 46000.00 4 10259 \N +405286 2025-10-22 00:50:02.023728+00 2025-10-22 00:50:02.023743+00 f t ADELANTO 11000.00 5 10259 \N +411117 2025-10-24 00:27:47.889084+00 2025-10-24 00:27:47.889093+00 f t SUBTOTAL 0.00 1 10396 \N +411118 2025-10-24 00:27:47.890285+00 2025-10-24 00:27:47.890291+00 f t COSTO_SERVICIO 0.00 2 10396 \N +411119 2025-10-24 00:27:47.891376+00 2025-10-24 00:27:47.891381+00 f t DESCUENTO 0.00 3 10396 \N +411120 2025-10-24 00:27:47.892315+00 2025-10-24 00:27:47.89232+00 f t TOTAL 0.00 4 10396 \N +411121 2025-10-24 00:27:47.893348+00 2025-10-24 00:27:47.893354+00 f t ADELANTO 0.00 5 10396 \N +411447 2025-10-24 03:49:00.684146+00 2025-10-24 03:49:00.684153+00 f t SUBTOTAL 55000.00 1 10404 \N +411448 2025-10-24 03:49:00.685841+00 2025-10-24 03:49:00.685847+00 f t COSTO_SERVICIO 0.00 2 10404 \N +411449 2025-10-24 03:49:00.687022+00 2025-10-24 03:49:00.687028+00 f t DESCUENTO 0.00 3 10404 \N +411450 2025-10-24 03:49:00.688131+00 2025-10-24 03:49:00.688137+00 f t TOTAL 55000.00 4 10404 \N +411451 2025-10-24 03:49:00.689468+00 2025-10-24 03:49:00.689475+00 f t ADELANTO 11000.00 5 10404 \N +411592 2025-10-24 09:54:52.596021+00 2025-10-24 09:54:52.596027+00 f t SUBTOTAL 54000.00 1 10409 \N +411593 2025-10-24 09:54:52.597858+00 2025-10-24 09:54:52.597863+00 f t COSTO_SERVICIO 0.00 2 10409 \N +411594 2025-10-24 09:54:52.598984+00 2025-10-24 09:54:52.598989+00 f t DESCUENTO 0.00 3 10409 \N +411595 2025-10-24 09:54:52.600021+00 2025-10-24 09:54:52.600026+00 f t TOTAL 54000.00 4 10409 \N +411596 2025-10-24 09:54:52.600902+00 2025-10-24 09:54:52.600907+00 f t ADELANTO 13500.00 5 10409 \N +406757 2025-10-22 16:28:27.489706+00 2025-10-22 16:28:27.489715+00 f t SUBTOTAL 30000.00 1 10296 \N +406758 2025-10-22 16:28:27.49139+00 2025-10-22 16:28:27.491396+00 f t COSTO_SERVICIO 0.00 2 10296 \N +406759 2025-10-22 16:28:27.492548+00 2025-10-22 16:28:27.492554+00 f t DESCUENTO 0.00 3 10296 \N +406760 2025-10-22 16:28:27.493448+00 2025-10-22 16:28:27.493453+00 f t TOTAL 30000.00 4 10296 \N +406761 2025-10-22 16:28:27.494349+00 2025-10-22 16:28:27.494355+00 f t ADELANTO 30000.00 5 10296 \N +425783 2025-10-28 16:31:58.633402+00 2025-10-28 16:31:58.63341+00 f t COSTO_SERVICIO 0.00 2 10737 \N +425784 2025-10-28 16:31:58.634849+00 2025-10-28 16:31:58.634856+00 f t DESCUENTO 0.00 3 10737 \N +425785 2025-10-28 16:31:58.63624+00 2025-10-28 16:31:58.636245+00 f t TOTAL 55000.00 4 10737 \N +425786 2025-10-28 16:31:58.637332+00 2025-10-28 16:31:58.637338+00 f t ADELANTO 11000.00 5 10737 \N +488592 2025-11-13 00:13:30.050885+00 2025-11-13 00:13:30.050894+00 f t SUBTOTAL 102000.00 1 12196 \N +488593 2025-11-13 00:13:30.052626+00 2025-11-13 00:13:30.052632+00 f t COSTO_SERVICIO 0.00 2 12196 \N +488594 2025-11-13 00:13:30.053819+00 2025-11-13 00:13:30.053825+00 f t DESCUENTO 0.00 3 12196 \N +416692 2025-10-26 00:30:43.567103+00 2025-10-26 00:30:43.567112+00 f t SUBTOTAL 55000.00 1 10528 \N +416693 2025-10-26 00:30:43.568807+00 2025-10-26 00:30:43.568815+00 f t COSTO_SERVICIO 0.00 2 10528 \N +416694 2025-10-26 00:30:43.569976+00 2025-10-26 00:30:43.569984+00 f t DESCUENTO 0.00 3 10528 \N +416695 2025-10-26 00:30:43.571+00 2025-10-26 00:30:43.571009+00 f t TOTAL 55000.00 4 10528 \N +416696 2025-10-26 00:30:43.572246+00 2025-10-26 00:30:43.572255+00 f t ADELANTO 11000.00 5 10528 \N +407862 2025-10-22 22:16:48.085974+00 2025-10-22 22:16:48.085988+00 f t SUBTOTAL 55000.00 1 10319 \N +407863 2025-10-22 22:16:48.088364+00 2025-10-22 22:16:48.088373+00 f t COSTO_SERVICIO 0.00 2 10319 \N +407864 2025-10-22 22:16:48.089978+00 2025-10-22 22:16:48.089989+00 f t DESCUENTO 0.00 3 10319 \N +407865 2025-10-22 22:16:48.091464+00 2025-10-22 22:16:48.09147+00 f t TOTAL 55000.00 4 10319 \N +407866 2025-10-22 22:16:48.092909+00 2025-10-22 22:16:48.092919+00 f t ADELANTO 11000.00 5 10319 \N +409347 2025-10-23 14:03:49.61615+00 2025-10-23 14:03:49.616158+00 f t SUBTOTAL 54000.00 1 10348 \N +409348 2025-10-23 14:03:49.617912+00 2025-10-23 14:03:49.617919+00 f t COSTO_SERVICIO 0.00 2 10348 \N +409349 2025-10-23 14:03:49.619197+00 2025-10-23 14:03:49.619203+00 f t DESCUENTO 0.00 3 10348 \N +409350 2025-10-23 14:03:49.620448+00 2025-10-23 14:03:49.620456+00 f t TOTAL 54000.00 4 10348 \N +409351 2025-10-23 14:03:49.621691+00 2025-10-23 14:03:49.621698+00 f t ADELANTO 13500.00 5 10348 \N +405447 2025-10-22 01:18:08.940146+00 2025-10-22 01:18:08.940155+00 f t SUBTOTAL 23000.00 1 10261 \N +405448 2025-10-22 01:18:08.941712+00 2025-10-22 01:18:08.94172+00 f t COSTO_SERVICIO 0.00 2 10261 \N +405449 2025-10-22 01:18:08.942836+00 2025-10-22 01:18:08.942844+00 f t DESCUENTO 0.00 3 10261 \N +405450 2025-10-22 01:18:08.944025+00 2025-10-22 01:18:08.944031+00 f t TOTAL 23000.00 4 10261 \N +405451 2025-10-22 01:18:08.944969+00 2025-10-22 01:18:08.944974+00 f t ADELANTO 5500.00 5 10261 \N +418457 2025-10-27 05:47:15.427861+00 2025-10-27 05:47:15.427869+00 f t SUBTOTAL 0.00 1 10572 \N +418458 2025-10-27 05:47:15.429237+00 2025-10-27 05:47:15.429243+00 f t COSTO_SERVICIO 0.00 2 10572 \N +418459 2025-10-27 05:47:15.430271+00 2025-10-27 05:47:15.430277+00 f t DESCUENTO 0.00 3 10572 \N +418460 2025-10-27 05:47:15.431079+00 2025-10-27 05:47:15.431083+00 f t TOTAL 0.00 4 10572 \N +418461 2025-10-27 05:47:15.43201+00 2025-10-27 05:47:15.432016+00 f t ADELANTO 0.00 5 10572 \N +405487 2025-10-22 01:20:59.351044+00 2025-10-22 01:20:59.351056+00 f t SUBTOTAL 0.00 1 10263 \N +405488 2025-10-22 01:20:59.353153+00 2025-10-22 01:20:59.35316+00 f t COSTO_SERVICIO 0.00 2 10263 \N +405489 2025-10-22 01:20:59.354726+00 2025-10-22 01:20:59.354736+00 f t DESCUENTO 0.00 3 10263 \N +405490 2025-10-22 01:20:59.355985+00 2025-10-22 01:20:59.355991+00 f t TOTAL 0.00 4 10263 \N +405491 2025-10-22 01:20:59.357154+00 2025-10-22 01:20:59.35716+00 f t ADELANTO 0.00 5 10263 \N +410722 2025-10-23 21:18:08.574565+00 2025-10-23 21:18:08.574573+00 f t SUBTOTAL 23000.00 1 10378 \N +410723 2025-10-23 21:18:08.57663+00 2025-10-23 21:18:08.576637+00 f t COSTO_SERVICIO 0.00 2 10378 \N +410724 2025-10-23 21:18:08.577856+00 2025-10-23 21:18:08.577863+00 f t DESCUENTO 0.00 3 10378 \N +410725 2025-10-23 21:18:08.578844+00 2025-10-23 21:18:08.57885+00 f t TOTAL 23000.00 4 10378 \N +410726 2025-10-23 21:18:08.579927+00 2025-10-23 21:18:08.579932+00 f t ADELANTO 5500.00 5 10378 \N +410837 2025-10-23 22:48:06.80882+00 2025-10-23 22:48:06.808829+00 f t SUBTOTAL 0.00 1 10384 \N +410838 2025-10-23 22:48:06.810548+00 2025-10-23 22:48:06.810555+00 f t COSTO_SERVICIO 0.00 2 10384 \N +410839 2025-10-23 22:48:06.811998+00 2025-10-23 22:48:06.812004+00 f t DESCUENTO 0.00 3 10384 \N +410840 2025-10-23 22:48:06.813166+00 2025-10-23 22:48:06.813172+00 f t TOTAL 0.00 4 10384 \N +410841 2025-10-23 22:48:06.814439+00 2025-10-23 22:48:06.814444+00 f t ADELANTO 0.00 5 10384 \N +411022 2025-10-23 23:44:19.590149+00 2025-10-23 23:44:19.590155+00 f t SUBTOTAL 54000.00 1 10391 \N +411023 2025-10-23 23:44:19.592252+00 2025-10-23 23:44:19.592259+00 f t COSTO_SERVICIO 0.00 2 10391 \N +411024 2025-10-23 23:44:19.593667+00 2025-10-23 23:44:19.593673+00 f t DESCUENTO 0.00 3 10391 \N +411025 2025-10-23 23:44:19.594895+00 2025-10-23 23:44:19.5949+00 f t TOTAL 54000.00 4 10391 \N +411026 2025-10-23 23:44:19.596062+00 2025-10-23 23:44:19.596067+00 f t ADELANTO 13500.00 5 10391 \N +411292 2025-10-24 02:11:49.285239+00 2025-10-24 02:11:49.285245+00 f t SUBTOTAL 55000.00 1 10400 \N +411293 2025-10-24 02:11:49.286728+00 2025-10-24 02:11:49.286734+00 f t COSTO_SERVICIO 0.00 2 10400 \N +411294 2025-10-24 02:11:49.288045+00 2025-10-24 02:11:49.288053+00 f t DESCUENTO 0.00 3 10400 \N +411295 2025-10-24 02:11:49.289246+00 2025-10-24 02:11:49.289251+00 f t TOTAL 55000.00 4 10400 \N +411296 2025-10-24 02:11:49.290108+00 2025-10-24 02:11:49.290112+00 f t ADELANTO 11000.00 5 10400 \N +419987 2025-10-27 17:01:02.866673+00 2025-10-27 17:01:02.866686+00 f t SUBTOTAL 70000.00 1 10610 \N +419988 2025-10-27 17:01:02.871689+00 2025-10-27 17:01:02.871704+00 f t COSTO_SERVICIO 0.00 2 10610 \N +419989 2025-10-27 17:01:02.876646+00 2025-10-27 17:01:02.876661+00 f t DESCUENTO 0.00 3 10610 \N +419990 2025-10-27 17:01:02.87964+00 2025-10-27 17:01:02.87966+00 f t TOTAL 70000.00 4 10610 \N +419991 2025-10-27 17:01:02.883316+00 2025-10-27 17:01:02.883331+00 f t ADELANTO 19000.00 5 10610 \N +420722 2025-10-27 19:43:23.799258+00 2025-10-27 19:43:23.799267+00 f t SUBTOTAL 0.00 1 10630 \N +420723 2025-10-27 19:43:23.801623+00 2025-10-27 19:43:23.801631+00 f t COSTO_SERVICIO 0.00 2 10630 \N +420724 2025-10-27 19:43:23.802967+00 2025-10-27 19:43:23.802977+00 f t DESCUENTO 0.00 3 10630 \N +420725 2025-10-27 19:43:23.804412+00 2025-10-27 19:43:23.804419+00 f t TOTAL 0.00 4 10630 \N +420726 2025-10-27 19:43:23.805732+00 2025-10-27 19:43:23.805739+00 f t ADELANTO 0.00 5 10630 \N +405627 2025-10-22 01:26:11.819566+00 2025-10-22 01:26:11.819582+00 f t SUBTOTAL 55000.00 1 10264 \N +405628 2025-10-22 01:26:11.821144+00 2025-10-22 01:26:11.821151+00 f t COSTO_SERVICIO 0.00 2 10264 \N +405629 2025-10-22 01:26:11.822207+00 2025-10-22 01:26:11.822214+00 f t DESCUENTO 0.00 3 10264 \N +405630 2025-10-22 01:26:11.823189+00 2025-10-22 01:26:11.823194+00 f t TOTAL 55000.00 4 10264 \N +405631 2025-10-22 01:26:11.824166+00 2025-10-22 01:26:11.824172+00 f t ADELANTO 11000.00 5 10264 \N +411924 2025-10-24 12:09:15.676723+00 2025-10-24 12:09:15.676733+00 f t DESCUENTO 0.00 3 10413 \N +411925 2025-10-24 12:09:15.678362+00 2025-10-24 12:09:15.678371+00 f t TOTAL 0.00 4 10413 \N +411926 2025-10-24 12:09:15.679802+00 2025-10-24 12:09:15.67981+00 f t ADELANTO 0.00 5 10413 \N +425787 2025-10-28 16:32:38.397769+00 2025-10-28 16:32:38.39778+00 f t SUBTOTAL 107000.00 1 10736 \N +425788 2025-10-28 16:32:38.400476+00 2025-10-28 16:32:38.400489+00 f t COSTO_SERVICIO 0.00 2 10736 \N +425789 2025-10-28 16:32:38.402132+00 2025-10-28 16:32:38.40214+00 f t DESCUENTO 0.00 3 10736 \N +425790 2025-10-28 16:32:38.403629+00 2025-10-28 16:32:38.403635+00 f t TOTAL 107000.00 4 10736 \N +425791 2025-10-28 16:32:38.404838+00 2025-10-28 16:32:38.404843+00 f t ADELANTO 12000.00 5 10736 \N +405662 2025-10-22 01:43:44.628033+00 2025-10-22 01:43:44.628041+00 f t SUBTOTAL 46000.00 1 10265 \N +405663 2025-10-22 01:43:44.629829+00 2025-10-22 01:43:44.629835+00 f t COSTO_SERVICIO 0.00 2 10265 \N +405664 2025-10-22 01:43:44.63091+00 2025-10-22 01:43:44.630915+00 f t DESCUENTO 0.00 3 10265 \N +405665 2025-10-22 01:43:44.6321+00 2025-10-22 01:43:44.632106+00 f t TOTAL 46000.00 4 10265 \N +405666 2025-10-22 01:43:44.633199+00 2025-10-22 01:43:44.633204+00 f t ADELANTO 11000.00 5 10265 \N +405672 2025-10-22 01:54:56.630299+00 2025-10-22 01:54:56.630309+00 f t SUBTOTAL 0.00 1 10266 \N +405673 2025-10-22 01:54:56.631782+00 2025-10-22 01:54:56.631789+00 f t COSTO_SERVICIO 0.00 2 10266 \N +405674 2025-10-22 01:54:56.633197+00 2025-10-22 01:54:56.633203+00 f t DESCUENTO 0.00 3 10266 \N +405675 2025-10-22 01:54:56.634286+00 2025-10-22 01:54:56.634291+00 f t TOTAL 0.00 4 10266 \N +405676 2025-10-22 01:54:56.635326+00 2025-10-22 01:54:56.635331+00 f t ADELANTO 0.00 5 10266 \N +416702 2025-10-26 00:48:23.029959+00 2025-10-26 00:48:23.029968+00 f t SUBTOTAL 0.00 1 10529 \N +416703 2025-10-26 00:48:23.031211+00 2025-10-26 00:48:23.031217+00 f t COSTO_SERVICIO 0.00 2 10529 \N +416704 2025-10-26 00:48:23.032257+00 2025-10-26 00:48:23.032263+00 f t DESCUENTO 0.00 3 10529 \N +416705 2025-10-26 00:48:23.033248+00 2025-10-26 00:48:23.033253+00 f t TOTAL 0.00 4 10529 \N +416706 2025-10-26 00:48:23.034235+00 2025-10-26 00:48:23.03424+00 f t ADELANTO 0.00 5 10529 \N +408632 2025-10-23 02:22:39.666681+00 2025-10-23 02:22:39.666689+00 f t SUBTOTAL 130400.00 1 10332 \N +408633 2025-10-23 02:22:39.668485+00 2025-10-23 02:22:39.668491+00 f t COSTO_SERVICIO 0.00 2 10332 \N +408634 2025-10-23 02:22:39.669657+00 2025-10-23 02:22:39.669664+00 f t DESCUENTO 0.00 3 10332 \N +408635 2025-10-23 02:22:39.670698+00 2025-10-23 02:22:39.670703+00 f t TOTAL 130400.00 4 10332 \N +408636 2025-10-23 02:22:39.67167+00 2025-10-23 02:22:39.671676+00 f t ADELANTO 29400.00 5 10332 \N +409077 2025-10-23 09:50:15.523002+00 2025-10-23 09:50:15.52301+00 f t SUBTOTAL 108000.00 1 10341 \N +409078 2025-10-23 09:50:15.524694+00 2025-10-23 09:50:15.524701+00 f t COSTO_SERVICIO 0.00 2 10341 \N +409079 2025-10-23 09:50:15.525816+00 2025-10-23 09:50:15.525821+00 f t DESCUENTO 0.00 3 10341 \N +409080 2025-10-23 09:50:15.526896+00 2025-10-23 09:50:15.526901+00 f t TOTAL 108000.00 4 10341 \N +409081 2025-10-23 09:50:15.527965+00 2025-10-23 09:50:15.52797+00 f t ADELANTO 27000.00 5 10341 \N +405752 2025-10-22 02:13:48.619507+00 2025-10-22 02:13:48.619521+00 f t SUBTOTAL 0.00 1 10262 \N +405753 2025-10-22 02:13:48.62165+00 2025-10-22 02:13:48.621662+00 f t COSTO_SERVICIO 0.00 2 10262 \N +405754 2025-10-22 02:13:48.622964+00 2025-10-22 02:13:48.622973+00 f t DESCUENTO 0.00 3 10262 \N +405755 2025-10-22 02:13:48.62427+00 2025-10-22 02:13:48.624279+00 f t TOTAL 0.00 4 10262 \N +405756 2025-10-22 02:13:48.625592+00 2025-10-22 02:13:48.625601+00 f t ADELANTO 0.00 5 10262 \N +405762 2025-10-22 02:19:09.722068+00 2025-10-22 02:19:09.72208+00 f t SUBTOTAL 0.00 1 10267 \N +405763 2025-10-22 02:19:09.723486+00 2025-10-22 02:19:09.723492+00 f t COSTO_SERVICIO 0.00 2 10267 \N +405764 2025-10-22 02:19:09.72472+00 2025-10-22 02:19:09.724727+00 f t DESCUENTO 0.00 3 10267 \N +405765 2025-10-22 02:19:09.725887+00 2025-10-22 02:19:09.725892+00 f t TOTAL 0.00 4 10267 \N +405766 2025-10-22 02:19:09.726817+00 2025-10-22 02:19:09.726822+00 f t ADELANTO 0.00 5 10267 \N +418467 2025-10-27 09:56:05.909436+00 2025-10-27 09:56:05.909445+00 f t SUBTOTAL 0.00 1 10573 \N +418468 2025-10-27 09:56:05.910791+00 2025-10-27 09:56:05.910797+00 f t COSTO_SERVICIO 0.00 2 10573 \N +418469 2025-10-27 09:56:05.912112+00 2025-10-27 09:56:05.91212+00 f t DESCUENTO 0.00 3 10573 \N +418470 2025-10-27 09:56:05.913453+00 2025-10-27 09:56:05.913461+00 f t TOTAL 0.00 4 10573 \N +418471 2025-10-27 09:56:05.914596+00 2025-10-27 09:56:05.914601+00 f t ADELANTO 0.00 5 10573 \N +410847 2025-10-23 22:49:07.959717+00 2025-10-23 22:49:07.959726+00 f t SUBTOTAL 0.00 1 10385 \N +410848 2025-10-23 22:49:07.961113+00 2025-10-23 22:49:07.961119+00 f t COSTO_SERVICIO 0.00 2 10385 \N +410849 2025-10-23 22:49:07.962353+00 2025-10-23 22:49:07.962358+00 f t DESCUENTO 0.00 3 10385 \N +410850 2025-10-23 22:49:07.963326+00 2025-10-23 22:49:07.963341+00 f t TOTAL 0.00 4 10385 \N +410851 2025-10-23 22:49:07.964283+00 2025-10-23 22:49:07.964288+00 f t ADELANTO 0.00 5 10385 \N +405842 2025-10-22 02:41:12.329638+00 2025-10-22 02:41:12.329647+00 f t SUBTOTAL 140000.00 1 10268 \N +405843 2025-10-22 02:41:12.331404+00 2025-10-22 02:41:12.33141+00 f t COSTO_SERVICIO 0.00 2 10268 \N +405844 2025-10-22 02:41:12.332549+00 2025-10-22 02:41:12.332554+00 f t DESCUENTO 0.00 3 10268 \N +405845 2025-10-22 02:41:12.333661+00 2025-10-22 02:41:12.333666+00 f t TOTAL 140000.00 4 10268 \N +405846 2025-10-22 02:41:12.334576+00 2025-10-22 02:41:12.334582+00 f t ADELANTO 38000.00 5 10268 \N +405852 2025-10-22 04:08:57.207711+00 2025-10-22 04:08:57.207725+00 f t SUBTOTAL 0.00 1 10269 \N +405853 2025-10-22 04:08:57.209115+00 2025-10-22 04:08:57.209123+00 f t COSTO_SERVICIO 0.00 2 10269 \N +405854 2025-10-22 04:08:57.210292+00 2025-10-22 04:08:57.210298+00 f t DESCUENTO 0.00 3 10269 \N +405855 2025-10-22 04:08:57.211341+00 2025-10-22 04:08:57.211347+00 f t TOTAL 0.00 4 10269 \N +405856 2025-10-22 04:08:57.212159+00 2025-10-22 04:08:57.212164+00 f t ADELANTO 0.00 5 10269 \N +411207 2025-10-24 00:48:09.207573+00 2025-10-24 00:48:09.20758+00 f t SUBTOTAL 68000.00 1 10397 \N +411208 2025-10-24 00:48:09.209292+00 2025-10-24 00:48:09.209299+00 f t COSTO_SERVICIO 0.00 2 10397 \N +411209 2025-10-24 00:48:09.210416+00 2025-10-24 00:48:09.210421+00 f t DESCUENTO 0.00 3 10397 \N +411210 2025-10-24 00:48:09.211477+00 2025-10-24 00:48:09.211482+00 f t TOTAL 68000.00 4 10397 \N +411211 2025-10-24 00:48:09.212472+00 2025-10-24 00:48:09.212477+00 f t ADELANTO 13000.00 5 10397 \N +420327 2025-10-27 18:13:15.10191+00 2025-10-27 18:13:15.101921+00 f t SUBTOTAL 78000.00 1 10621 \N +420328 2025-10-27 18:13:15.104426+00 2025-10-27 18:13:15.104435+00 f t COSTO_SERVICIO 0.00 2 10621 \N +420329 2025-10-27 18:13:15.106018+00 2025-10-27 18:13:15.106026+00 f t DESCUENTO 0.00 3 10621 \N +420330 2025-10-27 18:13:15.107614+00 2025-10-27 18:13:15.107621+00 f t TOTAL 78000.00 4 10621 \N +420331 2025-10-27 18:13:15.110482+00 2025-10-27 18:13:15.11049+00 f t ADELANTO 21500.00 5 10621 \N +405892 2025-10-22 04:10:43.181891+00 2025-10-22 04:10:43.1819+00 f t SUBTOTAL 0.00 1 10270 \N +405893 2025-10-22 04:10:43.183572+00 2025-10-22 04:10:43.183578+00 f t COSTO_SERVICIO 0.00 2 10270 \N +405894 2025-10-22 04:10:43.184737+00 2025-10-22 04:10:43.184745+00 f t DESCUENTO 0.00 3 10270 \N +405895 2025-10-22 04:10:43.186025+00 2025-10-22 04:10:43.18603+00 f t TOTAL 0.00 4 10270 \N +405896 2025-10-22 04:10:43.187282+00 2025-10-22 04:10:43.187289+00 f t ADELANTO 0.00 5 10270 \N +405932 2025-10-22 04:32:04.557263+00 2025-10-22 04:32:04.557272+00 f t SUBTOTAL 0.00 1 10271 \N +405933 2025-10-22 04:32:04.559361+00 2025-10-22 04:32:04.559372+00 f t COSTO_SERVICIO 0.00 2 10271 \N +405934 2025-10-22 04:32:04.560726+00 2025-10-22 04:32:04.560733+00 f t DESCUENTO 0.00 3 10271 \N +405935 2025-10-22 04:32:04.561984+00 2025-10-22 04:32:04.56199+00 f t TOTAL 0.00 4 10271 \N +405936 2025-10-22 04:32:04.563357+00 2025-10-22 04:32:04.563363+00 f t ADELANTO 0.00 5 10271 \N +406772 2025-10-22 16:30:56.623761+00 2025-10-22 16:30:56.623773+00 f t SUBTOTAL 55000.00 1 10297 \N +406773 2025-10-22 16:30:56.625973+00 2025-10-22 16:30:56.625984+00 f t COSTO_SERVICIO 0.00 2 10297 \N +406774 2025-10-22 16:30:56.627656+00 2025-10-22 16:30:56.627665+00 f t DESCUENTO 0.00 3 10297 \N +406775 2025-10-22 16:30:56.629032+00 2025-10-22 16:30:56.629042+00 f t TOTAL 55000.00 4 10297 \N +406776 2025-10-22 16:30:56.630285+00 2025-10-22 16:30:56.630293+00 f t ADELANTO 11000.00 5 10297 \N +407497 2025-10-22 19:34:24.774981+00 2025-10-22 19:34:24.774988+00 f t SUBTOTAL 139750.00 1 10310 \N +407498 2025-10-22 19:34:24.776603+00 2025-10-22 19:34:24.776609+00 f t COSTO_SERVICIO 0.00 2 10310 \N +407499 2025-10-22 19:34:24.777633+00 2025-10-22 19:34:24.777638+00 f t DESCUENTO 0.00 3 10310 \N +407500 2025-10-22 19:34:24.778724+00 2025-10-22 19:34:24.778729+00 f t TOTAL 139750.00 4 10310 \N +405962 2025-10-22 04:40:47.334967+00 2025-10-22 04:40:47.334977+00 f t SUBTOTAL 46000.00 1 10272 \N +405963 2025-10-22 04:40:47.33694+00 2025-10-22 04:40:47.336948+00 f t COSTO_SERVICIO 0.00 2 10272 \N +405964 2025-10-22 04:40:47.33817+00 2025-10-22 04:40:47.338176+00 f t DESCUENTO 0.00 3 10272 \N +405965 2025-10-22 04:40:47.339388+00 2025-10-22 04:40:47.339396+00 f t TOTAL 46000.00 4 10272 \N +405966 2025-10-22 04:40:47.340449+00 2025-10-22 04:40:47.340456+00 f t ADELANTO 11000.00 5 10272 \N +407501 2025-10-22 19:34:24.779783+00 2025-10-22 19:34:24.77979+00 f t ADELANTO 29750.00 5 10310 \N +407667 2025-10-22 20:20:34.3568+00 2025-10-22 20:20:34.35681+00 f t SUBTOTAL 78000.00 1 10314 \N +407668 2025-10-22 20:20:34.358887+00 2025-10-22 20:20:34.358895+00 f t COSTO_SERVICIO 0.00 2 10314 \N +407669 2025-10-22 20:20:34.360172+00 2025-10-22 20:20:34.360178+00 f t DESCUENTO 0.00 3 10314 \N +407670 2025-10-22 20:20:34.361471+00 2025-10-22 20:20:34.36148+00 f t TOTAL 78000.00 4 10314 \N +407671 2025-10-22 20:20:34.362586+00 2025-10-22 20:20:34.362593+00 f t ADELANTO 21500.00 5 10314 \N +405982 2025-10-22 05:33:55.596744+00 2025-10-22 05:33:55.596753+00 f t SUBTOTAL 0.00 1 10273 \N +405983 2025-10-22 05:33:55.598182+00 2025-10-22 05:33:55.598189+00 f t COSTO_SERVICIO 0.00 2 10273 \N +405984 2025-10-22 05:33:55.599217+00 2025-10-22 05:33:55.599222+00 f t DESCUENTO 0.00 3 10273 \N +405985 2025-10-22 05:33:55.600353+00 2025-10-22 05:33:55.600358+00 f t TOTAL 0.00 4 10273 \N +405986 2025-10-22 05:33:55.601365+00 2025-10-22 05:33:55.60137+00 f t ADELANTO 0.00 5 10273 \N +406002 2025-10-22 08:14:20.603912+00 2025-10-22 08:14:20.603919+00 f t SUBTOTAL 46000.00 1 10274 \N +406003 2025-10-22 08:14:20.605425+00 2025-10-22 08:14:20.605431+00 f t COSTO_SERVICIO 0.00 2 10274 \N +406004 2025-10-22 08:14:20.606588+00 2025-10-22 08:14:20.606594+00 f t DESCUENTO 0.00 3 10274 \N +406005 2025-10-22 08:14:20.608063+00 2025-10-22 08:14:20.608068+00 f t TOTAL 46000.00 4 10274 \N +406006 2025-10-22 08:14:20.609271+00 2025-10-22 08:14:20.609277+00 f t ADELANTO 11000.00 5 10274 \N +408642 2025-10-23 02:40:43.626557+00 2025-10-23 02:40:43.626575+00 f t SUBTOTAL 0.00 1 10334 \N +408643 2025-10-23 02:40:43.62825+00 2025-10-23 02:40:43.628257+00 f t COSTO_SERVICIO 0.00 2 10334 \N +408644 2025-10-23 02:40:43.629528+00 2025-10-23 02:40:43.629534+00 f t DESCUENTO 0.00 3 10334 \N +408645 2025-10-23 02:40:43.630765+00 2025-10-23 02:40:43.630772+00 f t TOTAL 0.00 4 10334 \N +408646 2025-10-23 02:40:43.631967+00 2025-10-23 02:40:43.631973+00 f t ADELANTO 0.00 5 10334 \N +437807 2025-10-30 21:26:45.743577+00 2025-10-30 21:26:45.743584+00 f t SUBTOTAL 46000.00 1 11012 \N +437808 2025-10-30 21:26:45.745196+00 2025-10-30 21:26:45.745202+00 f t COSTO_SERVICIO 0.00 2 11012 \N +437809 2025-10-30 21:26:45.746219+00 2025-10-30 21:26:45.746225+00 f t DESCUENTO 0.00 3 11012 \N +437810 2025-10-30 21:26:45.747337+00 2025-10-30 21:26:45.747344+00 f t TOTAL 46000.00 4 11012 \N +437811 2025-10-30 21:26:45.748357+00 2025-10-30 21:26:45.748362+00 f t ADELANTO 11000.00 5 11012 \N +406032 2025-10-22 11:13:57.752721+00 2025-10-22 11:13:57.752731+00 f t SUBTOTAL 55000.00 1 10275 \N +406033 2025-10-22 11:13:57.754381+00 2025-10-22 11:13:57.754388+00 f t COSTO_SERVICIO 0.00 2 10275 \N +406034 2025-10-22 11:13:57.755425+00 2025-10-22 11:13:57.75543+00 f t DESCUENTO 0.00 3 10275 \N +406035 2025-10-22 11:13:57.756488+00 2025-10-22 11:13:57.756493+00 f t TOTAL 55000.00 4 10275 \N +406036 2025-10-22 11:13:57.757335+00 2025-10-22 11:13:57.757341+00 f t ADELANTO 11000.00 5 10275 \N +406077 2025-10-22 11:26:03.440857+00 2025-10-22 11:26:03.440869+00 f t SUBTOTAL 23000.00 1 10276 \N +406078 2025-10-22 11:26:03.443284+00 2025-10-22 11:26:03.443295+00 f t COSTO_SERVICIO 0.00 2 10276 \N +406079 2025-10-22 11:26:03.444905+00 2025-10-22 11:26:03.444915+00 f t DESCUENTO 0.00 3 10276 \N +406080 2025-10-22 11:26:03.446434+00 2025-10-22 11:26:03.446443+00 f t TOTAL 23000.00 4 10276 \N +406081 2025-10-22 11:26:03.448019+00 2025-10-22 11:26:03.448025+00 f t ADELANTO 5500.00 5 10276 \N +406122 2025-10-22 12:10:06.403028+00 2025-10-22 12:10:06.403042+00 f t SUBTOTAL 70000.00 1 10277 \N +406123 2025-10-22 12:10:06.405321+00 2025-10-22 12:10:06.405331+00 f t COSTO_SERVICIO 0.00 2 10277 \N +406124 2025-10-22 12:10:06.407103+00 2025-10-22 12:10:06.407113+00 f t DESCUENTO 0.00 3 10277 \N +406125 2025-10-22 12:10:06.408735+00 2025-10-22 12:10:06.408742+00 f t TOTAL 70000.00 4 10277 \N +406126 2025-10-22 12:10:06.410447+00 2025-10-22 12:10:06.410458+00 f t ADELANTO 19000.00 5 10277 \N +406142 2025-10-22 12:26:05.777023+00 2025-10-22 12:26:05.777034+00 f t SUBTOTAL 78000.00 1 10278 \N +406143 2025-10-22 12:26:05.778872+00 2025-10-22 12:26:05.778881+00 f t COSTO_SERVICIO 0.00 2 10278 \N +406144 2025-10-22 12:26:05.780321+00 2025-10-22 12:26:05.78033+00 f t DESCUENTO 0.00 3 10278 \N +406145 2025-10-22 12:26:05.781509+00 2025-10-22 12:26:05.781517+00 f t TOTAL 78000.00 4 10278 \N +406146 2025-10-22 12:26:05.782628+00 2025-10-22 12:26:05.782637+00 f t ADELANTO 21500.00 5 10278 \N +406172 2025-10-22 12:29:05.832461+00 2025-10-22 12:29:05.83247+00 f t SUBTOTAL 0.00 1 10214 \N +406173 2025-10-22 12:29:05.833933+00 2025-10-22 12:29:05.83394+00 f t COSTO_SERVICIO 0.00 2 10214 \N +406174 2025-10-22 12:29:05.83524+00 2025-10-22 12:29:05.835247+00 f t DESCUENTO 0.00 3 10214 \N +406175 2025-10-22 12:29:05.836353+00 2025-10-22 12:29:05.836389+00 f t TOTAL 0.00 4 10214 \N +406176 2025-10-22 12:29:05.837284+00 2025-10-22 12:29:05.837289+00 f t ADELANTO 0.00 5 10214 \N +406182 2025-10-22 12:34:06.309875+00 2025-10-22 12:34:06.309889+00 f t SUBTOTAL 0.00 1 10279 \N +406183 2025-10-22 12:34:06.311787+00 2025-10-22 12:34:06.311797+00 f t COSTO_SERVICIO 0.00 2 10279 \N +406184 2025-10-22 12:34:06.313095+00 2025-10-22 12:34:06.313102+00 f t DESCUENTO 0.00 3 10279 \N +406185 2025-10-22 12:34:06.31412+00 2025-10-22 12:34:06.314126+00 f t TOTAL 0.00 4 10279 \N +406186 2025-10-22 12:34:06.315156+00 2025-10-22 12:34:06.315161+00 f t ADELANTO 0.00 5 10279 \N +406192 2025-10-22 12:37:58.048874+00 2025-10-22 12:37:58.048888+00 f t SUBTOTAL 0.00 1 10280 \N +406193 2025-10-22 12:37:58.050542+00 2025-10-22 12:37:58.050552+00 f t COSTO_SERVICIO 0.00 2 10280 \N +406194 2025-10-22 12:37:58.052124+00 2025-10-22 12:37:58.052134+00 f t DESCUENTO 0.00 3 10280 \N +406195 2025-10-22 12:37:58.053323+00 2025-10-22 12:37:58.053329+00 f t TOTAL 0.00 4 10280 \N +406196 2025-10-22 12:37:58.054205+00 2025-10-22 12:37:58.054213+00 f t ADELANTO 0.00 5 10280 \N +406222 2025-10-22 13:09:41.483378+00 2025-10-22 13:09:41.483385+00 f t SUBTOTAL 54000.00 1 10281 \N +406223 2025-10-22 13:09:41.484895+00 2025-10-22 13:09:41.484901+00 f t COSTO_SERVICIO 0.00 2 10281 \N +406224 2025-10-22 13:09:41.486155+00 2025-10-22 13:09:41.486161+00 f t DESCUENTO 0.00 3 10281 \N +406225 2025-10-22 13:09:41.487335+00 2025-10-22 13:09:41.487343+00 f t TOTAL 54000.00 4 10281 \N +406226 2025-10-22 13:09:41.488396+00 2025-10-22 13:09:41.488401+00 f t ADELANTO 13500.00 5 10281 \N +488595 2025-11-13 00:13:30.055016+00 2025-11-13 00:13:30.055022+00 f t TOTAL 102000.00 4 12196 \N +488596 2025-11-13 00:13:30.056173+00 2025-11-13 00:13:30.056178+00 f t ADELANTO 29500.00 5 12196 \N +406232 2025-10-22 13:10:18.96825+00 2025-10-22 13:10:18.968291+00 f t SUBTOTAL 0.00 1 10282 \N +406233 2025-10-22 13:10:18.969651+00 2025-10-22 13:10:18.969658+00 f t COSTO_SERVICIO 0.00 2 10282 \N +406234 2025-10-22 13:10:18.973014+00 2025-10-22 13:10:18.973022+00 f t DESCUENTO 0.00 3 10282 \N +406235 2025-10-22 13:10:18.974199+00 2025-10-22 13:10:18.974205+00 f t TOTAL 0.00 4 10282 \N +406236 2025-10-22 13:10:18.979004+00 2025-10-22 13:10:18.979011+00 f t ADELANTO 0.00 5 10282 \N +406782 2025-10-22 17:05:08.187611+00 2025-10-22 17:05:08.18762+00 f t SUBTOTAL 0.00 1 10298 \N +406783 2025-10-22 17:05:08.189032+00 2025-10-22 17:05:08.18904+00 f t COSTO_SERVICIO 0.00 2 10298 \N +406784 2025-10-22 17:05:08.190079+00 2025-10-22 17:05:08.190084+00 f t DESCUENTO 0.00 3 10298 \N +406785 2025-10-22 17:05:08.191052+00 2025-10-22 17:05:08.191057+00 f t TOTAL 0.00 4 10298 \N +406786 2025-10-22 17:05:08.192143+00 2025-10-22 17:05:08.192149+00 f t ADELANTO 0.00 5 10298 \N +407677 2025-10-22 21:18:19.392844+00 2025-10-22 21:18:19.392853+00 f t SUBTOTAL 0.00 1 10315 \N +407678 2025-10-22 21:18:19.394613+00 2025-10-22 21:18:19.394622+00 f t COSTO_SERVICIO 0.00 2 10315 \N +407679 2025-10-22 21:18:19.395848+00 2025-10-22 21:18:19.395855+00 f t DESCUENTO 0.00 3 10315 \N +407680 2025-10-22 21:18:19.396909+00 2025-10-22 21:18:19.396916+00 f t TOTAL 0.00 4 10315 \N +407681 2025-10-22 21:18:19.397947+00 2025-10-22 21:18:19.397958+00 f t ADELANTO 0.00 5 10315 \N +417277 2025-10-26 15:33:24.380605+00 2025-10-26 15:33:24.380614+00 f t SUBTOTAL 55000.00 1 10540 \N +417278 2025-10-26 15:33:24.382556+00 2025-10-26 15:33:24.382563+00 f t COSTO_SERVICIO 0.00 2 10540 \N +417279 2025-10-26 15:33:24.383962+00 2025-10-26 15:33:24.38397+00 f t DESCUENTO 0.00 3 10540 \N +417280 2025-10-26 15:33:24.385435+00 2025-10-26 15:33:24.385441+00 f t TOTAL 55000.00 4 10540 \N +417281 2025-10-26 15:33:24.386771+00 2025-10-26 15:33:24.386776+00 f t ADELANTO 11000.00 5 10540 \N +406337 2025-10-22 13:50:29.526963+00 2025-10-22 13:50:29.526972+00 f t SUBTOTAL 54000.00 1 10283 \N +406338 2025-10-22 13:50:29.528819+00 2025-10-22 13:50:29.528825+00 f t COSTO_SERVICIO 0.00 2 10283 \N +406339 2025-10-22 13:50:29.530035+00 2025-10-22 13:50:29.530041+00 f t DESCUENTO 0.00 3 10283 \N +406340 2025-10-22 13:50:29.53101+00 2025-10-22 13:50:29.531015+00 f t TOTAL 54000.00 4 10283 \N +406341 2025-10-22 13:50:29.531975+00 2025-10-22 13:50:29.53198+00 f t ADELANTO 13500.00 5 10283 \N +406347 2025-10-22 14:00:39.973241+00 2025-10-22 14:00:39.973254+00 f t SUBTOTAL 0.00 1 10284 \N +406348 2025-10-22 14:00:39.975008+00 2025-10-22 14:00:39.975019+00 f t COSTO_SERVICIO 0.00 2 10284 \N +406349 2025-10-22 14:00:39.976633+00 2025-10-22 14:00:39.976644+00 f t DESCUENTO 0.00 3 10284 \N +406350 2025-10-22 14:00:39.97811+00 2025-10-22 14:00:39.978119+00 f t TOTAL 0.00 4 10284 \N +406351 2025-10-22 14:00:39.979493+00 2025-10-22 14:00:39.979501+00 f t ADELANTO 0.00 5 10284 \N +406357 2025-10-22 14:04:35.087452+00 2025-10-22 14:04:35.08746+00 f t SUBTOTAL 55000.00 1 10260 \N +406358 2025-10-22 14:04:35.08899+00 2025-10-22 14:04:35.088997+00 f t COSTO_SERVICIO 0.00 2 10260 \N +406359 2025-10-22 14:04:35.090234+00 2025-10-22 14:04:35.090241+00 f t DESCUENTO 0.00 3 10260 \N +406360 2025-10-22 14:04:35.091324+00 2025-10-22 14:04:35.09133+00 f t TOTAL 55000.00 4 10260 \N +406361 2025-10-22 14:04:35.092279+00 2025-10-22 14:04:35.092284+00 f t ADELANTO 11000.00 5 10260 \N +406377 2025-10-22 14:09:55.658587+00 2025-10-22 14:09:55.658596+00 f t SUBTOTAL 0.00 1 10285 \N +406378 2025-10-22 14:09:55.660582+00 2025-10-22 14:09:55.660591+00 f t COSTO_SERVICIO 0.00 2 10285 \N +406379 2025-10-22 14:09:55.661934+00 2025-10-22 14:09:55.661941+00 f t DESCUENTO 0.00 3 10285 \N +406380 2025-10-22 14:09:55.663058+00 2025-10-22 14:09:55.663069+00 f t TOTAL 0.00 4 10285 \N +406381 2025-10-22 14:09:55.66529+00 2025-10-22 14:09:55.665299+00 f t ADELANTO 0.00 5 10285 \N +406387 2025-10-22 14:55:07.573083+00 2025-10-22 14:55:07.573092+00 f t SUBTOTAL 0.00 1 10286 \N +406388 2025-10-22 14:55:07.574234+00 2025-10-22 14:55:07.57424+00 f t COSTO_SERVICIO 0.00 2 10286 \N +406389 2025-10-22 14:55:07.575333+00 2025-10-22 14:55:07.575339+00 f t DESCUENTO 0.00 3 10286 \N +406390 2025-10-22 14:55:07.576238+00 2025-10-22 14:55:07.576243+00 f t TOTAL 0.00 4 10286 \N +406391 2025-10-22 14:55:07.577068+00 2025-10-22 14:55:07.577074+00 f t ADELANTO 0.00 5 10286 \N +406407 2025-10-22 15:02:06.062939+00 2025-10-22 15:02:06.062948+00 f t SUBTOTAL 54000.00 1 10287 \N +406408 2025-10-22 15:02:06.064671+00 2025-10-22 15:02:06.064682+00 f t COSTO_SERVICIO 0.00 2 10287 \N +406409 2025-10-22 15:02:06.066082+00 2025-10-22 15:02:06.066089+00 f t DESCUENTO 0.00 3 10287 \N +406410 2025-10-22 15:02:06.067303+00 2025-10-22 15:02:06.067311+00 f t TOTAL 54000.00 4 10287 \N +406411 2025-10-22 15:02:06.068715+00 2025-10-22 15:02:06.068724+00 f t ADELANTO 13500.00 5 10287 \N +410397 2025-10-23 17:47:53.870888+00 2025-10-23 17:47:53.870896+00 f t SUBTOTAL 55000.00 1 10366 \N +410398 2025-10-23 17:47:53.872777+00 2025-10-23 17:47:53.872784+00 f t COSTO_SERVICIO 0.00 2 10366 \N +410399 2025-10-23 17:47:53.873934+00 2025-10-23 17:47:53.87394+00 f t DESCUENTO 0.00 3 10366 \N +406417 2025-10-22 15:03:41.166533+00 2025-10-22 15:03:41.166544+00 f t SUBTOTAL 0.00 1 10227 \N +406418 2025-10-22 15:03:41.167805+00 2025-10-22 15:03:41.167811+00 f t COSTO_SERVICIO 0.00 2 10227 \N +406419 2025-10-22 15:03:41.168827+00 2025-10-22 15:03:41.168832+00 f t DESCUENTO 0.00 3 10227 \N +406420 2025-10-22 15:03:41.169742+00 2025-10-22 15:03:41.169747+00 f t TOTAL 0.00 4 10227 \N +406421 2025-10-22 15:03:41.170684+00 2025-10-22 15:03:41.170691+00 f t ADELANTO 0.00 5 10227 \N +410400 2025-10-23 17:47:53.874951+00 2025-10-23 17:47:53.874959+00 f t TOTAL 55000.00 4 10366 \N +410401 2025-10-23 17:47:53.876078+00 2025-10-23 17:47:53.876083+00 f t ADELANTO 11000.00 5 10366 \N +410512 2025-10-23 18:58:24.899056+00 2025-10-23 18:58:24.899065+00 f t SUBTOTAL 55000.00 1 10370 \N +410513 2025-10-23 18:58:24.901046+00 2025-10-23 18:58:24.901053+00 f t COSTO_SERVICIO 0.00 2 10370 \N +410514 2025-10-23 18:58:24.902364+00 2025-10-23 18:58:24.902371+00 f t DESCUENTO 0.00 3 10370 \N +410515 2025-10-23 18:58:24.903584+00 2025-10-23 18:58:24.903591+00 f t TOTAL 55000.00 4 10370 \N +410516 2025-10-23 18:58:24.904743+00 2025-10-23 18:58:24.90475+00 f t ADELANTO 11000.00 5 10370 \N +410737 2025-10-23 21:19:02.358226+00 2025-10-23 21:19:02.358239+00 f t SUBTOTAL 107000.00 1 10379 \N +410738 2025-10-23 21:19:02.361519+00 2025-10-23 21:19:02.36153+00 f t COSTO_SERVICIO 0.00 2 10379 \N +410739 2025-10-23 21:19:02.364416+00 2025-10-23 21:19:02.364428+00 f t DESCUENTO 0.00 3 10379 \N +410740 2025-10-23 21:19:02.368382+00 2025-10-23 21:19:02.368394+00 f t TOTAL 107000.00 4 10379 \N +410741 2025-10-23 21:19:02.371272+00 2025-10-23 21:19:02.371284+00 f t ADELANTO 12000.00 5 10379 \N +406452 2025-10-22 15:14:09.93069+00 2025-10-22 15:14:09.930699+00 f t SUBTOTAL 54000.00 1 10288 \N +406453 2025-10-22 15:14:09.932841+00 2025-10-22 15:14:09.93285+00 f t COSTO_SERVICIO 0.00 2 10288 \N +406454 2025-10-22 15:14:09.934467+00 2025-10-22 15:14:09.934474+00 f t DESCUENTO 0.00 3 10288 \N +406455 2025-10-22 15:14:09.93571+00 2025-10-22 15:14:09.935718+00 f t TOTAL 54000.00 4 10288 \N +406456 2025-10-22 15:14:09.937046+00 2025-10-22 15:14:09.937052+00 f t ADELANTO 13500.00 5 10288 \N +406472 2025-10-22 15:25:52.837594+00 2025-10-22 15:25:52.837603+00 f t SUBTOTAL 55000.00 1 10238 \N +406473 2025-10-22 15:25:52.839217+00 2025-10-22 15:25:52.839224+00 f t COSTO_SERVICIO 0.00 2 10238 \N +406474 2025-10-22 15:25:52.840402+00 2025-10-22 15:25:52.840408+00 f t DESCUENTO 0.00 3 10238 \N +406475 2025-10-22 15:25:52.841409+00 2025-10-22 15:25:52.841415+00 f t TOTAL 55000.00 4 10238 \N +406476 2025-10-22 15:25:52.842222+00 2025-10-22 15:25:52.842227+00 f t ADELANTO 11000.00 5 10238 \N +426417 2025-10-28 18:15:40.305377+00 2025-10-28 18:15:40.305387+00 f t SUBTOTAL 0.00 1 10753 \N +426418 2025-10-28 18:15:40.306625+00 2025-10-28 18:15:40.306631+00 f t COSTO_SERVICIO 0.00 2 10753 \N +426419 2025-10-28 18:15:40.311329+00 2025-10-28 18:15:40.311341+00 f t DESCUENTO 0.00 3 10753 \N +426420 2025-10-28 18:15:40.312943+00 2025-10-28 18:15:40.312951+00 f t TOTAL 0.00 4 10753 \N +426421 2025-10-28 18:15:40.314281+00 2025-10-28 18:15:40.314289+00 f t ADELANTO 0.00 5 10753 \N +411957 2025-10-24 12:10:45.421048+00 2025-10-24 12:10:45.421058+00 f t SUBTOTAL 54000.00 1 10414 \N +411958 2025-10-24 12:10:45.423042+00 2025-10-24 12:10:45.423052+00 f t COSTO_SERVICIO 0.00 2 10414 \N +411959 2025-10-24 12:10:45.424804+00 2025-10-24 12:10:45.424813+00 f t DESCUENTO 0.00 3 10414 \N +411960 2025-10-24 12:10:45.426058+00 2025-10-24 12:10:45.426064+00 f t TOTAL 54000.00 4 10414 \N +411961 2025-10-24 12:10:45.427271+00 2025-10-24 12:10:45.427277+00 f t ADELANTO 13500.00 5 10414 \N +436942 2025-10-30 18:12:50.013532+00 2025-10-30 18:12:50.013539+00 f t SUBTOTAL 23000.00 1 10995 \N +436943 2025-10-30 18:12:50.015347+00 2025-10-30 18:12:50.015354+00 f t COSTO_SERVICIO 0.00 2 10995 \N +436944 2025-10-30 18:12:50.016475+00 2025-10-30 18:12:50.016479+00 f t DESCUENTO 0.00 3 10995 \N +436945 2025-10-30 18:12:50.017369+00 2025-10-30 18:12:50.017375+00 f t TOTAL 23000.00 4 10995 \N +436946 2025-10-30 18:12:50.018168+00 2025-10-30 18:12:50.018178+00 f t ADELANTO 5500.00 5 10995 \N +437317 2025-10-30 20:01:44.808431+00 2025-10-30 20:01:44.808439+00 f t SUBTOTAL 54000.00 1 11002 \N +437318 2025-10-30 20:01:44.810237+00 2025-10-30 20:01:44.810244+00 f t COSTO_SERVICIO 0.00 2 11002 \N +437319 2025-10-30 20:01:44.811403+00 2025-10-30 20:01:44.811408+00 f t DESCUENTO 0.00 3 11002 \N +437320 2025-10-30 20:01:44.812472+00 2025-10-30 20:01:44.812478+00 f t TOTAL 54000.00 4 11002 \N +437321 2025-10-30 20:01:44.813492+00 2025-10-30 20:01:44.813497+00 f t ADELANTO 13500.00 5 11002 \N +412027 2025-10-24 12:16:27.740171+00 2025-10-24 12:16:27.74018+00 f t SUBTOTAL 32500.00 1 10415 \N +412028 2025-10-24 12:16:27.741879+00 2025-10-24 12:16:27.741885+00 f t COSTO_SERVICIO 0.00 2 10415 \N +412029 2025-10-24 12:16:27.743066+00 2025-10-24 12:16:27.743072+00 f t DESCUENTO 0.00 3 10415 \N +412030 2025-10-24 12:16:27.744047+00 2025-10-24 12:16:27.744052+00 f t TOTAL 32500.00 4 10415 \N +412031 2025-10-24 12:16:27.745048+00 2025-10-24 12:16:27.745053+00 f t ADELANTO 32500.00 5 10415 \N +418582 2025-10-27 12:25:19.866521+00 2025-10-27 12:25:19.866531+00 f t SUBTOTAL 75000.00 1 10575 \N +418583 2025-10-27 12:25:19.868605+00 2025-10-27 12:25:19.868615+00 f t COSTO_SERVICIO 0.00 2 10575 \N +418584 2025-10-27 12:25:19.870251+00 2025-10-27 12:25:19.870259+00 f t DESCUENTO 0.00 3 10575 \N +418585 2025-10-27 12:25:19.871588+00 2025-10-27 12:25:19.871594+00 f t TOTAL 75000.00 4 10575 \N +418586 2025-10-27 12:25:19.873034+00 2025-10-27 12:25:19.873043+00 f t ADELANTO 15000.00 5 10575 \N +419672 2025-10-27 15:54:00.406604+00 2025-10-27 15:54:00.406612+00 f t SUBTOTAL 113000.00 1 10601 \N +419673 2025-10-27 15:54:00.408544+00 2025-10-27 15:54:00.408554+00 f t COSTO_SERVICIO 0.00 2 10601 \N +419674 2025-10-27 15:54:00.409988+00 2025-10-27 15:54:00.409994+00 f t DESCUENTO 0.00 3 10601 \N +419675 2025-10-27 15:54:00.411164+00 2025-10-27 15:54:00.41117+00 f t TOTAL 113000.00 4 10601 \N +419676 2025-10-27 15:54:00.412215+00 2025-10-27 15:54:00.412221+00 f t ADELANTO 51500.00 5 10601 \N +412097 2025-10-24 12:32:24.18821+00 2025-10-24 12:32:24.188222+00 f t SUBTOTAL 55000.00 1 10417 \N +412098 2025-10-24 12:32:24.19039+00 2025-10-24 12:32:24.190398+00 f t COSTO_SERVICIO 0.00 2 10417 \N +412099 2025-10-24 12:32:24.191725+00 2025-10-24 12:32:24.191732+00 f t DESCUENTO 0.00 3 10417 \N +412100 2025-10-24 12:32:24.193008+00 2025-10-24 12:32:24.193014+00 f t TOTAL 55000.00 4 10417 \N +412101 2025-10-24 12:32:24.194118+00 2025-10-24 12:32:24.194125+00 f t ADELANTO 11000.00 5 10417 \N +412107 2025-10-24 12:42:23.971526+00 2025-10-24 12:42:23.971536+00 f t SUBTOTAL 0.00 1 10418 \N +412108 2025-10-24 12:42:23.97276+00 2025-10-24 12:42:23.972766+00 f t COSTO_SERVICIO 0.00 2 10418 \N +412109 2025-10-24 12:42:23.973674+00 2025-10-24 12:42:23.973679+00 f t DESCUENTO 0.00 3 10418 \N +412110 2025-10-24 12:42:23.974503+00 2025-10-24 12:42:23.974508+00 f t TOTAL 0.00 4 10418 \N +412111 2025-10-24 12:42:23.975387+00 2025-10-24 12:42:23.975392+00 f t ADELANTO 0.00 5 10418 \N +412117 2025-10-24 13:10:25.954351+00 2025-10-24 13:10:25.95436+00 f t SUBTOTAL 23000.00 1 10416 \N +412118 2025-10-24 13:10:25.956088+00 2025-10-24 13:10:25.956095+00 f t COSTO_SERVICIO 0.00 2 10416 \N +412119 2025-10-24 13:10:25.957395+00 2025-10-24 13:10:25.957402+00 f t DESCUENTO 0.00 3 10416 \N +412120 2025-10-24 13:10:25.959223+00 2025-10-24 13:10:25.959229+00 f t TOTAL 23000.00 4 10416 \N +412121 2025-10-24 13:10:25.961397+00 2025-10-24 13:10:25.961402+00 f t ADELANTO 5500.00 5 10416 \N +430062 2025-10-29 12:03:59.11977+00 2025-10-29 12:03:59.119777+00 f t SUBTOTAL 55000.00 1 10831 \N +430063 2025-10-29 12:03:59.121817+00 2025-10-29 12:03:59.121825+00 f t COSTO_SERVICIO 0.00 2 10831 \N +430064 2025-10-29 12:03:59.123022+00 2025-10-29 12:03:59.12303+00 f t DESCUENTO 0.00 3 10831 \N +430065 2025-10-29 12:03:59.124369+00 2025-10-29 12:03:59.124375+00 f t TOTAL 55000.00 4 10831 \N +430066 2025-10-29 12:03:59.125586+00 2025-10-29 12:03:59.125593+00 f t ADELANTO 11000.00 5 10831 \N +412157 2025-10-24 13:17:10.176384+00 2025-10-24 13:17:10.176393+00 f t SUBTOTAL 0.00 1 10419 \N +412158 2025-10-24 13:17:10.178065+00 2025-10-24 13:17:10.178071+00 f t COSTO_SERVICIO 0.00 2 10419 \N +412159 2025-10-24 13:17:10.179239+00 2025-10-24 13:17:10.179245+00 f t DESCUENTO 0.00 3 10419 \N +412160 2025-10-24 13:17:10.180214+00 2025-10-24 13:17:10.180219+00 f t TOTAL 0.00 4 10419 \N +412161 2025-10-24 13:17:10.181201+00 2025-10-24 13:17:10.181216+00 f t ADELANTO 0.00 5 10419 \N +412167 2025-10-24 13:27:51.975678+00 2025-10-24 13:27:51.975685+00 f t SUBTOTAL 0.00 1 10420 \N +412168 2025-10-24 13:27:51.977081+00 2025-10-24 13:27:51.977088+00 f t COSTO_SERVICIO 0.00 2 10420 \N +412169 2025-10-24 13:27:51.978078+00 2025-10-24 13:27:51.978083+00 f t DESCUENTO 0.00 3 10420 \N +412170 2025-10-24 13:27:51.978991+00 2025-10-24 13:27:51.978996+00 f t TOTAL 0.00 4 10420 \N +412171 2025-10-24 13:27:51.97991+00 2025-10-24 13:27:51.979916+00 f t ADELANTO 0.00 5 10420 \N +412177 2025-10-24 13:33:45.668238+00 2025-10-24 13:33:45.668248+00 f t SUBTOTAL 0.00 1 10421 \N +412178 2025-10-24 13:33:45.669822+00 2025-10-24 13:33:45.66983+00 f t COSTO_SERVICIO 0.00 2 10421 \N +412179 2025-10-24 13:33:45.671475+00 2025-10-24 13:33:45.671482+00 f t DESCUENTO 0.00 3 10421 \N +412180 2025-10-24 13:33:45.672719+00 2025-10-24 13:33:45.672725+00 f t TOTAL 0.00 4 10421 \N +412181 2025-10-24 13:33:45.673666+00 2025-10-24 13:33:45.673671+00 f t ADELANTO 0.00 5 10421 \N +412197 2025-10-24 13:37:07.100683+00 2025-10-24 13:37:07.100696+00 f t SUBTOTAL 0.00 1 10422 \N +412198 2025-10-24 13:37:07.102913+00 2025-10-24 13:37:07.102924+00 f t COSTO_SERVICIO 0.00 2 10422 \N +412199 2025-10-24 13:37:07.104511+00 2025-10-24 13:37:07.104522+00 f t DESCUENTO 0.00 3 10422 \N +412200 2025-10-24 13:37:07.105775+00 2025-10-24 13:37:07.105783+00 f t TOTAL 0.00 4 10422 \N +412201 2025-10-24 13:37:07.107239+00 2025-10-24 13:37:07.107248+00 f t ADELANTO 0.00 5 10422 \N +412212 2025-10-24 14:01:11.922084+00 2025-10-24 14:01:11.922091+00 f t SUBTOTAL 55000.00 1 10423 \N +412213 2025-10-24 14:01:11.923684+00 2025-10-24 14:01:11.923691+00 f t COSTO_SERVICIO 0.00 2 10423 \N +412214 2025-10-24 14:01:11.925114+00 2025-10-24 14:01:11.925121+00 f t DESCUENTO 0.00 3 10423 \N +412215 2025-10-24 14:01:11.926491+00 2025-10-24 14:01:11.926496+00 f t TOTAL 55000.00 4 10423 \N +412216 2025-10-24 14:01:11.927748+00 2025-10-24 14:01:11.927754+00 f t ADELANTO 11000.00 5 10423 \N +445722 2025-11-01 19:40:40.673487+00 2025-11-01 19:40:40.673495+00 f t SUBTOTAL 46000.00 1 11215 \N +445723 2025-11-01 19:40:40.675239+00 2025-11-01 19:40:40.675245+00 f t COSTO_SERVICIO 0.00 2 11215 \N +445724 2025-11-01 19:40:40.676383+00 2025-11-01 19:40:40.676388+00 f t DESCUENTO 0.00 3 11215 \N +445725 2025-11-01 19:40:40.677351+00 2025-11-01 19:40:40.677356+00 f t TOTAL 46000.00 4 11215 \N +445726 2025-11-01 19:40:40.678321+00 2025-11-01 19:40:40.678327+00 f t ADELANTO 11000.00 5 11215 \N +412262 2025-10-24 14:12:59.991777+00 2025-10-24 14:12:59.991784+00 f t SUBTOTAL 78000.00 1 10424 \N +412263 2025-10-24 14:12:59.993278+00 2025-10-24 14:12:59.993285+00 f t COSTO_SERVICIO 0.00 2 10424 \N +412264 2025-10-24 14:12:59.99466+00 2025-10-24 14:12:59.994665+00 f t DESCUENTO 0.00 3 10424 \N +412265 2025-10-24 14:12:59.995851+00 2025-10-24 14:12:59.995857+00 f t TOTAL 78000.00 4 10424 \N +412266 2025-10-24 14:12:59.997008+00 2025-10-24 14:12:59.997014+00 f t ADELANTO 13000.00 5 10424 \N +418097 2025-10-26 19:20:19.702175+00 2025-10-26 19:20:19.702185+00 f t SUBTOTAL 107000.00 1 10561 \N +418098 2025-10-26 19:20:19.704188+00 2025-10-26 19:20:19.704197+00 f t COSTO_SERVICIO 0.00 2 10561 \N +418099 2025-10-26 19:20:19.705489+00 2025-10-26 19:20:19.705497+00 f t DESCUENTO 0.00 3 10561 \N +418100 2025-10-26 19:20:19.706759+00 2025-10-26 19:20:19.706767+00 f t TOTAL 107000.00 4 10561 \N +418101 2025-10-26 19:20:19.708068+00 2025-10-26 19:20:19.708075+00 f t ADELANTO 27000.00 5 10561 \N +418227 2025-10-26 20:08:57.687365+00 2025-10-26 20:08:57.687377+00 f t SUBTOTAL 0.00 1 10564 \N +418228 2025-10-26 20:08:57.69013+00 2025-10-26 20:08:57.690141+00 f t COSTO_SERVICIO 0.00 2 10564 \N +418229 2025-10-26 20:08:57.691797+00 2025-10-26 20:08:57.691805+00 f t DESCUENTO 0.00 3 10564 \N +418230 2025-10-26 20:08:57.693248+00 2025-10-26 20:08:57.693256+00 f t TOTAL 0.00 4 10564 \N +418231 2025-10-26 20:08:57.694744+00 2025-10-26 20:08:57.694753+00 f t ADELANTO 0.00 5 10564 \N +418937 2025-10-27 14:12:53.162773+00 2025-10-27 14:12:53.162785+00 f t SUBTOTAL 46000.00 1 10585 \N +418938 2025-10-27 14:12:53.165279+00 2025-10-27 14:12:53.165287+00 f t COSTO_SERVICIO 0.00 2 10585 \N +418939 2025-10-27 14:12:53.166918+00 2025-10-27 14:12:53.166926+00 f t DESCUENTO 0.00 3 10585 \N +418940 2025-10-27 14:12:53.168272+00 2025-10-27 14:12:53.168279+00 f t TOTAL 46000.00 4 10585 \N +418941 2025-10-27 14:12:53.169559+00 2025-10-27 14:12:53.169565+00 f t ADELANTO 11000.00 5 10585 \N +412352 2025-10-24 14:58:08.334576+00 2025-10-24 14:58:08.334586+00 f t SUBTOTAL 0.00 1 10426 \N +412353 2025-10-24 14:58:08.335895+00 2025-10-24 14:58:08.335901+00 f t COSTO_SERVICIO 0.00 2 10426 \N +412354 2025-10-24 14:58:08.33699+00 2025-10-24 14:58:08.336996+00 f t DESCUENTO 0.00 3 10426 \N +412355 2025-10-24 14:58:08.337996+00 2025-10-24 14:58:08.338001+00 f t TOTAL 0.00 4 10426 \N +412356 2025-10-24 14:58:08.339081+00 2025-10-24 14:58:08.339089+00 f t ADELANTO 0.00 5 10426 \N +412367 2025-10-24 15:07:53.194822+00 2025-10-24 15:07:53.194833+00 f t SUBTOTAL 13200.00 1 10427 \N +412368 2025-10-24 15:07:53.197012+00 2025-10-24 15:07:53.197022+00 f t COSTO_SERVICIO 0.00 2 10427 \N +412369 2025-10-24 15:07:53.198348+00 2025-10-24 15:07:53.198355+00 f t DESCUENTO 0.00 3 10427 \N +412370 2025-10-24 15:07:53.199587+00 2025-10-24 15:07:53.199594+00 f t TOTAL 13200.00 4 10427 \N +412371 2025-10-24 15:07:53.200797+00 2025-10-24 15:07:53.200805+00 f t ADELANTO 13200.00 5 10427 \N +419677 2025-10-27 15:57:21.564186+00 2025-10-27 15:57:21.564198+00 f t SUBTOTAL 23000.00 1 10599 \N +419678 2025-10-27 15:57:21.566089+00 2025-10-27 15:57:21.5661+00 f t COSTO_SERVICIO 0.00 2 10599 \N +419679 2025-10-27 15:57:21.567571+00 2025-10-27 15:57:21.56758+00 f t DESCUENTO 0.00 3 10599 \N +412382 2025-10-24 15:14:16.639368+00 2025-10-24 15:14:16.639375+00 f t SUBTOTAL 55000.00 1 10428 \N +412383 2025-10-24 15:14:16.641008+00 2025-10-24 15:14:16.641014+00 f t COSTO_SERVICIO 0.00 2 10428 \N +412384 2025-10-24 15:14:16.642129+00 2025-10-24 15:14:16.642135+00 f t DESCUENTO 0.00 3 10428 \N +412385 2025-10-24 15:14:16.643166+00 2025-10-24 15:14:16.643175+00 f t TOTAL 55000.00 4 10428 \N +412386 2025-10-24 15:14:16.644095+00 2025-10-24 15:14:16.6441+00 f t ADELANTO 11000.00 5 10428 \N +419680 2025-10-27 15:57:21.568992+00 2025-10-27 15:57:21.569+00 f t TOTAL 23000.00 4 10599 \N +419681 2025-10-27 15:57:21.570425+00 2025-10-27 15:57:21.570432+00 f t ADELANTO 5500.00 5 10599 \N +419897 2025-10-27 16:54:11.332318+00 2025-10-27 16:54:11.332326+00 f t SUBTOTAL 75000.00 1 10607 \N +419898 2025-10-27 16:54:11.334173+00 2025-10-27 16:54:11.334181+00 f t COSTO_SERVICIO 0.00 2 10607 \N +419899 2025-10-27 16:54:11.335426+00 2025-10-27 16:54:11.335432+00 f t DESCUENTO 0.00 3 10607 \N +419900 2025-10-27 16:54:11.336646+00 2025-10-27 16:54:11.336652+00 f t TOTAL 75000.00 4 10607 \N +419901 2025-10-27 16:54:11.337769+00 2025-10-27 16:54:11.337775+00 f t ADELANTO 15000.00 5 10607 \N +420222 2025-10-27 18:00:19.484992+00 2025-10-27 18:00:19.485003+00 f t SUBTOTAL 0.00 1 10617 \N +420223 2025-10-27 18:00:19.486525+00 2025-10-27 18:00:19.486534+00 f t COSTO_SERVICIO 0.00 2 10617 \N +420224 2025-10-27 18:00:19.48792+00 2025-10-27 18:00:19.487927+00 f t DESCUENTO 0.00 3 10617 \N +420225 2025-10-27 18:00:19.489223+00 2025-10-27 18:00:19.489232+00 f t TOTAL 0.00 4 10617 \N +420226 2025-10-27 18:00:19.490526+00 2025-10-27 18:00:19.490534+00 f t ADELANTO 0.00 5 10617 \N +412452 2025-10-24 15:16:25.697669+00 2025-10-24 15:16:25.697679+00 f t SUBTOTAL 99000.00 1 10429 \N +412453 2025-10-24 15:16:25.699616+00 2025-10-24 15:16:25.699625+00 f t COSTO_SERVICIO 0.00 2 10429 \N +412454 2025-10-24 15:16:25.701104+00 2025-10-24 15:16:25.701112+00 f t DESCUENTO 0.00 3 10429 \N +412455 2025-10-24 15:16:25.702433+00 2025-10-24 15:16:25.702441+00 f t TOTAL 99000.00 4 10429 \N +412456 2025-10-24 15:16:25.703927+00 2025-10-24 15:16:25.703935+00 f t ADELANTO 24500.00 5 10429 \N +412462 2025-10-24 15:24:12.3036+00 2025-10-24 15:24:12.30361+00 f t SUBTOTAL 0.00 1 10430 \N +412463 2025-10-24 15:24:12.30496+00 2025-10-24 15:24:12.304966+00 f t COSTO_SERVICIO 0.00 2 10430 \N +412464 2025-10-24 15:24:12.305939+00 2025-10-24 15:24:12.305945+00 f t DESCUENTO 0.00 3 10430 \N +412465 2025-10-24 15:24:12.306824+00 2025-10-24 15:24:12.306829+00 f t TOTAL 0.00 4 10430 \N +412466 2025-10-24 15:24:12.307765+00 2025-10-24 15:24:12.307772+00 f t ADELANTO 0.00 5 10430 \N +412472 2025-10-24 15:26:47.691683+00 2025-10-24 15:26:47.691691+00 f t SUBTOTAL 0.00 1 10431 \N +412473 2025-10-24 15:26:47.692883+00 2025-10-24 15:26:47.692889+00 f t COSTO_SERVICIO 0.00 2 10431 \N +412474 2025-10-24 15:26:47.693907+00 2025-10-24 15:26:47.693912+00 f t DESCUENTO 0.00 3 10431 \N +412475 2025-10-24 15:26:47.694969+00 2025-10-24 15:26:47.694974+00 f t TOTAL 0.00 4 10431 \N +412476 2025-10-24 15:26:47.696114+00 2025-10-24 15:26:47.69612+00 f t ADELANTO 0.00 5 10431 \N +412502 2025-10-24 15:54:28.535811+00 2025-10-24 15:54:28.53582+00 f t SUBTOTAL 46000.00 1 10432 \N +412503 2025-10-24 15:54:28.537407+00 2025-10-24 15:54:28.537413+00 f t COSTO_SERVICIO 0.00 2 10432 \N +412504 2025-10-24 15:54:28.538528+00 2025-10-24 15:54:28.538534+00 f t DESCUENTO 0.00 3 10432 \N +412505 2025-10-24 15:54:28.539555+00 2025-10-24 15:54:28.539561+00 f t TOTAL 46000.00 4 10432 \N +412506 2025-10-24 15:54:28.540721+00 2025-10-24 15:54:28.540726+00 f t ADELANTO 11000.00 5 10432 \N +421312 2025-10-27 20:41:09.319074+00 2025-10-27 20:41:09.319086+00 f t SUBTOTAL 55000.00 1 10635 \N +421313 2025-10-27 20:41:09.320853+00 2025-10-27 20:41:09.320864+00 f t COSTO_SERVICIO 0.00 2 10635 \N +421314 2025-10-27 20:41:09.322297+00 2025-10-27 20:41:09.322307+00 f t DESCUENTO 0.00 3 10635 \N +421315 2025-10-27 20:41:09.323705+00 2025-10-27 20:41:09.323713+00 f t TOTAL 55000.00 4 10635 \N +421316 2025-10-27 20:41:09.325143+00 2025-10-27 20:41:09.325151+00 f t ADELANTO 11000.00 5 10635 \N +466602 2025-11-07 22:26:03.205072+00 2025-11-07 22:26:03.205083+00 f t SUBTOTAL 0.00 1 11700 \N +466603 2025-11-07 22:26:03.20704+00 2025-11-07 22:26:03.207051+00 f t COSTO_SERVICIO 0.00 2 11700 \N +466604 2025-11-07 22:26:03.208568+00 2025-11-07 22:26:03.208577+00 f t DESCUENTO 0.00 3 11700 \N +466605 2025-11-07 22:26:03.209855+00 2025-11-07 22:26:03.209864+00 f t TOTAL 0.00 4 11700 \N +466606 2025-11-07 22:26:03.211074+00 2025-11-07 22:26:03.211082+00 f t ADELANTO 0.00 5 11700 \N +416552 2025-10-25 23:18:41.055254+00 2025-10-25 23:18:41.055263+00 f t SUBTOTAL 30000.00 1 10524 \N +416553 2025-10-25 23:18:41.057334+00 2025-10-25 23:18:41.057346+00 f t COSTO_SERVICIO 0.00 2 10524 \N +416554 2025-10-25 23:18:41.059767+00 2025-10-25 23:18:41.059776+00 f t DESCUENTO 0.00 3 10524 \N +416555 2025-10-25 23:18:41.061294+00 2025-10-25 23:18:41.061302+00 f t TOTAL 30000.00 4 10524 \N +416556 2025-10-25 23:18:41.062846+00 2025-10-25 23:18:41.062852+00 f t ADELANTO 30000.00 5 10524 \N +417427 2025-10-26 16:04:27.749127+00 2025-10-26 16:04:27.749138+00 f t SUBTOTAL 55000.00 1 10544 \N +417428 2025-10-26 16:04:27.751329+00 2025-10-26 16:04:27.751339+00 f t COSTO_SERVICIO 0.00 2 10544 \N +417429 2025-10-26 16:04:27.752753+00 2025-10-26 16:04:27.75276+00 f t DESCUENTO 0.00 3 10544 \N +417430 2025-10-26 16:04:27.754021+00 2025-10-26 16:04:27.754027+00 f t TOTAL 55000.00 4 10544 \N +417431 2025-10-26 16:04:27.755044+00 2025-10-26 16:04:27.755049+00 f t ADELANTO 11000.00 5 10544 \N +426762 2025-10-28 19:33:42.144967+00 2025-10-28 19:33:42.144976+00 f t SUBTOTAL 78000.00 1 10762 \N +426763 2025-10-28 19:33:42.146813+00 2025-10-28 19:33:42.14682+00 f t COSTO_SERVICIO 0.00 2 10762 \N +426764 2025-10-28 19:33:42.148095+00 2025-10-28 19:33:42.148101+00 f t DESCUENTO 0.00 3 10762 \N +426765 2025-10-28 19:33:42.149212+00 2025-10-28 19:33:42.149218+00 f t TOTAL 78000.00 4 10762 \N +426766 2025-10-28 19:33:42.150572+00 2025-10-28 19:33:42.150578+00 f t ADELANTO 13000.00 5 10762 \N +418107 2025-10-26 19:30:16.883585+00 2025-10-26 19:30:16.883597+00 f t SUBTOTAL 0.00 1 10562 \N +418108 2025-10-26 19:30:16.885081+00 2025-10-26 19:30:16.885091+00 f t COSTO_SERVICIO 0.00 2 10562 \N +412592 2025-10-24 16:05:59.584073+00 2025-10-24 16:05:59.584081+00 f t SUBTOTAL 80000.00 1 10434 \N +412593 2025-10-24 16:05:59.58573+00 2025-10-24 16:05:59.58574+00 f t COSTO_SERVICIO 0.00 2 10434 \N +412594 2025-10-24 16:05:59.586872+00 2025-10-24 16:05:59.586877+00 f t DESCUENTO 0.00 3 10434 \N +412595 2025-10-24 16:05:59.587877+00 2025-10-24 16:05:59.587881+00 f t TOTAL 80000.00 4 10434 \N +412596 2025-10-24 16:05:59.588937+00 2025-10-24 16:05:59.588942+00 f t ADELANTO 12000.00 5 10434 \N +418109 2025-10-26 19:30:16.886436+00 2025-10-26 19:30:16.886444+00 f t DESCUENTO 0.00 3 10562 \N +418110 2025-10-26 19:30:16.887556+00 2025-10-26 19:30:16.887564+00 f t TOTAL 0.00 4 10562 \N +418111 2025-10-26 19:30:16.888655+00 2025-10-26 19:30:16.888663+00 f t ADELANTO 0.00 5 10562 \N +427747 2025-10-28 23:34:53.317263+00 2025-10-28 23:34:53.317271+00 f t SUBTOTAL 46000.00 1 10795 \N +427748 2025-10-28 23:34:53.319198+00 2025-10-28 23:34:53.31921+00 f t COSTO_SERVICIO 0.00 2 10795 \N +427749 2025-10-28 23:34:53.320627+00 2025-10-28 23:34:53.320633+00 f t DESCUENTO 0.00 3 10795 \N +427750 2025-10-28 23:34:53.321701+00 2025-10-28 23:34:53.321707+00 f t TOTAL 46000.00 4 10795 \N +427751 2025-10-28 23:34:53.322685+00 2025-10-28 23:34:53.32269+00 f t ADELANTO 11000.00 5 10795 \N +412612 2025-10-24 16:08:15.30063+00 2025-10-24 16:08:15.30064+00 f t SUBTOTAL 0.00 1 10433 \N +412613 2025-10-24 16:08:15.302529+00 2025-10-24 16:08:15.302535+00 f t COSTO_SERVICIO 0.00 2 10433 \N +412614 2025-10-24 16:08:15.303926+00 2025-10-24 16:08:15.303932+00 f t DESCUENTO 0.00 3 10433 \N +412615 2025-10-24 16:08:15.305132+00 2025-10-24 16:08:15.305137+00 f t TOTAL 0.00 4 10433 \N +412616 2025-10-24 16:08:15.306176+00 2025-10-24 16:08:15.306182+00 f t ADELANTO 0.00 5 10433 \N +418712 2025-10-27 13:18:34.967821+00 2025-10-27 13:18:34.967833+00 f t SUBTOTAL 107000.00 1 10579 \N +418713 2025-10-27 13:18:34.969959+00 2025-10-27 13:18:34.969969+00 f t COSTO_SERVICIO 0.00 2 10579 \N +418714 2025-10-27 13:18:34.97159+00 2025-10-27 13:18:34.9716+00 f t DESCUENTO 0.00 3 10579 \N +418715 2025-10-27 13:18:34.973018+00 2025-10-27 13:18:34.973026+00 f t TOTAL 107000.00 4 10579 \N +418716 2025-10-27 13:18:34.974292+00 2025-10-27 13:18:34.9743+00 f t ADELANTO 12000.00 5 10579 \N +412652 2025-10-24 16:13:09.544401+00 2025-10-24 16:13:09.544409+00 f t SUBTOTAL 107000.00 1 10435 \N +412653 2025-10-24 16:13:09.546012+00 2025-10-24 16:13:09.546019+00 f t COSTO_SERVICIO 0.00 2 10435 \N +412654 2025-10-24 16:13:09.547253+00 2025-10-24 16:13:09.547259+00 f t DESCUENTO 0.00 3 10435 \N +412655 2025-10-24 16:13:09.548527+00 2025-10-24 16:13:09.548533+00 f t TOTAL 107000.00 4 10435 \N +412656 2025-10-24 16:13:09.549708+00 2025-10-24 16:13:09.549714+00 f t ADELANTO 12000.00 5 10435 \N +419272 2025-10-27 14:54:38.562891+00 2025-10-27 14:54:38.562899+00 f t SUBTOTAL 70000.00 1 10591 \N +419273 2025-10-27 14:54:38.564585+00 2025-10-27 14:54:38.564592+00 f t COSTO_SERVICIO 0.00 2 10591 \N +419274 2025-10-27 14:54:38.565848+00 2025-10-27 14:54:38.565858+00 f t DESCUENTO 0.00 3 10591 \N +419275 2025-10-27 14:54:38.567094+00 2025-10-27 14:54:38.5671+00 f t TOTAL 70000.00 4 10591 \N +419276 2025-10-27 14:54:38.56865+00 2025-10-27 14:54:38.568656+00 f t ADELANTO 19000.00 5 10591 \N +412682 2025-10-24 16:22:07.492305+00 2025-10-24 16:22:07.492312+00 f t SUBTOTAL 130000.00 1 10436 \N +412683 2025-10-24 16:22:07.493986+00 2025-10-24 16:22:07.493993+00 f t COSTO_SERVICIO 0.00 2 10436 \N +412684 2025-10-24 16:22:07.495192+00 2025-10-24 16:22:07.495197+00 f t DESCUENTO 0.00 3 10436 \N +412685 2025-10-24 16:22:07.4962+00 2025-10-24 16:22:07.496205+00 f t TOTAL 130000.00 4 10436 \N +412686 2025-10-24 16:22:07.497147+00 2025-10-24 16:22:07.497152+00 f t ADELANTO 15000.00 5 10436 \N +429422 2025-10-29 04:48:50.925775+00 2025-10-29 04:48:50.925787+00 f t SUBTOTAL 54000.00 1 10821 \N +429423 2025-10-29 04:48:50.928133+00 2025-10-29 04:48:50.928144+00 f t COSTO_SERVICIO 0.00 2 10821 \N +429424 2025-10-29 04:48:50.929791+00 2025-10-29 04:48:50.929802+00 f t DESCUENTO 0.00 3 10821 \N +429425 2025-10-29 04:48:50.931286+00 2025-10-29 04:48:50.931293+00 f t TOTAL 54000.00 4 10821 \N +429426 2025-10-29 04:48:50.932646+00 2025-10-29 04:48:50.932653+00 f t ADELANTO 13500.00 5 10821 \N +412712 2025-10-24 16:41:47.137832+00 2025-10-24 16:41:47.137842+00 f t SUBTOTAL 70000.00 1 10437 \N +412713 2025-10-24 16:41:47.13956+00 2025-10-24 16:41:47.139566+00 f t COSTO_SERVICIO 0.00 2 10437 \N +412714 2025-10-24 16:41:47.140626+00 2025-10-24 16:41:47.140631+00 f t DESCUENTO 0.00 3 10437 \N +412715 2025-10-24 16:41:47.141773+00 2025-10-24 16:41:47.141778+00 f t TOTAL 70000.00 4 10437 \N +412716 2025-10-24 16:41:47.142586+00 2025-10-24 16:41:47.142591+00 f t ADELANTO 19000.00 5 10437 \N +412722 2025-10-24 16:59:58.563676+00 2025-10-24 16:59:58.563684+00 f t SUBTOTAL 0.00 1 10438 \N +412723 2025-10-24 16:59:58.565176+00 2025-10-24 16:59:58.565185+00 f t COSTO_SERVICIO 0.00 2 10438 \N +412724 2025-10-24 16:59:58.566559+00 2025-10-24 16:59:58.566565+00 f t DESCUENTO 0.00 3 10438 \N +412725 2025-10-24 16:59:58.567743+00 2025-10-24 16:59:58.567752+00 f t TOTAL 0.00 4 10438 \N +412726 2025-10-24 16:59:58.569076+00 2025-10-24 16:59:58.569084+00 f t ADELANTO 0.00 5 10438 \N +420112 2025-10-27 17:21:03.784728+00 2025-10-27 17:21:03.784739+00 f t SUBTOTAL 30000.00 1 10613 \N +420113 2025-10-27 17:21:03.786559+00 2025-10-27 17:21:03.786565+00 f t COSTO_SERVICIO 0.00 2 10613 \N +420114 2025-10-27 17:21:03.788165+00 2025-10-27 17:21:03.788175+00 f t DESCUENTO 0.00 3 10613 \N +420115 2025-10-27 17:21:03.789856+00 2025-10-27 17:21:03.789863+00 f t TOTAL 30000.00 4 10613 \N +420116 2025-10-27 17:21:03.791145+00 2025-10-27 17:21:03.791152+00 f t ADELANTO 30000.00 5 10613 \N +437142 2025-10-30 19:34:27.364293+00 2025-10-30 19:34:27.364302+00 f t SUBTOTAL 0.00 1 10999 \N +437143 2025-10-30 19:34:27.366597+00 2025-10-30 19:34:27.366608+00 f t COSTO_SERVICIO 0.00 2 10999 \N +437144 2025-10-30 19:34:27.367982+00 2025-10-30 19:34:27.367991+00 f t DESCUENTO 0.00 3 10999 \N +437145 2025-10-30 19:34:27.369201+00 2025-10-30 19:34:27.369209+00 f t TOTAL 0.00 4 10999 \N +437146 2025-10-30 19:34:27.370357+00 2025-10-30 19:34:27.370365+00 f t ADELANTO 0.00 5 10999 \N +418117 2025-10-26 19:54:15.960968+00 2025-10-26 19:54:15.960977+00 f t SUBTOTAL 0.00 1 10563 \N +418118 2025-10-26 19:54:15.963261+00 2025-10-26 19:54:15.963269+00 f t COSTO_SERVICIO 0.00 2 10563 \N +418119 2025-10-26 19:54:15.964457+00 2025-10-26 19:54:15.964464+00 f t DESCUENTO 0.00 3 10563 \N +418120 2025-10-26 19:54:15.965522+00 2025-10-26 19:54:15.965528+00 f t TOTAL 0.00 4 10563 \N +418121 2025-10-26 19:54:15.966554+00 2025-10-26 19:54:15.96656+00 f t ADELANTO 0.00 5 10563 \N +418722 2025-10-27 13:18:44.10956+00 2025-10-27 13:18:44.109569+00 f t SUBTOTAL 0.00 1 10580 \N +418723 2025-10-27 13:18:44.111041+00 2025-10-27 13:18:44.111047+00 f t COSTO_SERVICIO 0.00 2 10580 \N +418724 2025-10-27 13:18:44.112028+00 2025-10-27 13:18:44.112033+00 f t DESCUENTO 0.00 3 10580 \N +418725 2025-10-27 13:18:44.112936+00 2025-10-27 13:18:44.112942+00 f t TOTAL 0.00 4 10580 \N +418726 2025-10-27 13:18:44.113778+00 2025-10-27 13:18:44.113784+00 f t ADELANTO 0.00 5 10580 \N +412947 2025-10-24 17:27:29.60635+00 2025-10-24 17:27:29.606357+00 f t SUBTOTAL 46000.00 1 10440 \N +412948 2025-10-24 17:27:29.607841+00 2025-10-24 17:27:29.607847+00 f t COSTO_SERVICIO 0.00 2 10440 \N +412949 2025-10-24 17:27:29.608795+00 2025-10-24 17:27:29.6088+00 f t DESCUENTO 0.00 3 10440 \N +412950 2025-10-24 17:27:29.609764+00 2025-10-24 17:27:29.609769+00 f t TOTAL 46000.00 4 10440 \N +412951 2025-10-24 17:27:29.610564+00 2025-10-24 17:27:29.610568+00 f t ADELANTO 11000.00 5 10440 \N +419692 2025-10-27 16:16:49.988004+00 2025-10-27 16:16:49.988012+00 f t SUBTOTAL 55000.00 1 10602 \N +419693 2025-10-27 16:16:49.989783+00 2025-10-27 16:16:49.989792+00 f t COSTO_SERVICIO 0.00 2 10602 \N +419694 2025-10-27 16:16:49.99086+00 2025-10-27 16:16:49.990866+00 f t DESCUENTO 0.00 3 10602 \N +419695 2025-10-27 16:16:49.99233+00 2025-10-27 16:16:49.992337+00 f t TOTAL 55000.00 4 10602 \N +419696 2025-10-27 16:16:49.998546+00 2025-10-27 16:16:49.998556+00 f t ADELANTO 11000.00 5 10602 \N +412977 2025-10-24 17:34:30.930153+00 2025-10-24 17:34:30.930163+00 f t SUBTOTAL 107000.00 1 10441 \N +412978 2025-10-24 17:34:30.931755+00 2025-10-24 17:34:30.931763+00 f t COSTO_SERVICIO 0.00 2 10441 \N +412979 2025-10-24 17:34:30.932899+00 2025-10-24 17:34:30.932903+00 f t DESCUENTO 0.00 3 10441 \N +412980 2025-10-24 17:34:30.933804+00 2025-10-24 17:34:30.933809+00 f t TOTAL 107000.00 4 10441 \N +412981 2025-10-24 17:34:30.934658+00 2025-10-24 17:34:30.934663+00 f t ADELANTO 12000.00 5 10441 \N +412997 2025-10-24 17:45:14.001715+00 2025-10-24 17:45:14.001724+00 f t SUBTOTAL 0.00 1 10442 \N +412998 2025-10-24 17:45:14.003591+00 2025-10-24 17:45:14.003598+00 f t COSTO_SERVICIO 0.00 2 10442 \N +412999 2025-10-24 17:45:14.004849+00 2025-10-24 17:45:14.004855+00 f t DESCUENTO 0.00 3 10442 \N +413000 2025-10-24 17:45:14.005802+00 2025-10-24 17:45:14.005808+00 f t TOTAL 0.00 4 10442 \N +413001 2025-10-24 17:45:14.006728+00 2025-10-24 17:45:14.006733+00 f t ADELANTO 0.00 5 10442 \N +413012 2025-10-24 17:55:20.108565+00 2025-10-24 17:55:20.108571+00 f t SUBTOTAL 13200.00 1 10443 \N +413013 2025-10-24 17:55:20.110048+00 2025-10-24 17:55:20.110059+00 f t COSTO_SERVICIO 0.00 2 10443 \N +413014 2025-10-24 17:55:20.111315+00 2025-10-24 17:55:20.11132+00 f t DESCUENTO 0.00 3 10443 \N +413015 2025-10-24 17:55:20.112363+00 2025-10-24 17:55:20.112368+00 f t TOTAL 13200.00 4 10443 \N +413016 2025-10-24 17:55:20.113308+00 2025-10-24 17:55:20.113313+00 f t ADELANTO 13200.00 5 10443 \N +413022 2025-10-24 18:04:31.169025+00 2025-10-24 18:04:31.169033+00 f t SUBTOTAL 0.00 1 10444 \N +413023 2025-10-24 18:04:31.171034+00 2025-10-24 18:04:31.171042+00 f t COSTO_SERVICIO 0.00 2 10444 \N +413024 2025-10-24 18:04:31.17233+00 2025-10-24 18:04:31.172336+00 f t DESCUENTO 0.00 3 10444 \N +413025 2025-10-24 18:04:31.173313+00 2025-10-24 18:04:31.173318+00 f t TOTAL 0.00 4 10444 \N +413026 2025-10-24 18:04:31.174176+00 2025-10-24 18:04:31.174181+00 f t ADELANTO 0.00 5 10444 \N +420347 2025-10-27 18:14:11.557172+00 2025-10-27 18:14:11.557186+00 f t SUBTOTAL 0.00 1 10622 \N +413032 2025-10-24 18:53:02.664663+00 2025-10-24 18:53:02.664671+00 f t SUBTOTAL 0.00 1 10439 \N +413033 2025-10-24 18:53:02.666179+00 2025-10-24 18:53:02.666185+00 f t COSTO_SERVICIO 0.00 2 10439 \N +413034 2025-10-24 18:53:02.667222+00 2025-10-24 18:53:02.667227+00 f t DESCUENTO 0.00 3 10439 \N +413035 2025-10-24 18:53:02.668136+00 2025-10-24 18:53:02.668141+00 f t TOTAL 0.00 4 10439 \N +413036 2025-10-24 18:53:02.669083+00 2025-10-24 18:53:02.669088+00 f t ADELANTO 0.00 5 10439 \N +420348 2025-10-27 18:14:11.560127+00 2025-10-27 18:14:11.560139+00 f t COSTO_SERVICIO 0.00 2 10622 \N +420349 2025-10-27 18:14:11.561678+00 2025-10-27 18:14:11.561684+00 f t DESCUENTO 0.00 3 10622 \N +420350 2025-10-27 18:14:11.563006+00 2025-10-27 18:14:11.563012+00 f t TOTAL 0.00 4 10622 \N +420351 2025-10-27 18:14:11.56429+00 2025-10-27 18:14:11.564295+00 f t ADELANTO 0.00 5 10622 \N +420442 2025-10-27 18:17:56.758098+00 2025-10-27 18:17:56.758105+00 f t SUBTOTAL 54000.00 1 10623 \N +420443 2025-10-27 18:17:56.759864+00 2025-10-27 18:17:56.759872+00 f t COSTO_SERVICIO 0.00 2 10623 \N +420444 2025-10-27 18:17:56.761001+00 2025-10-27 18:17:56.761007+00 f t DESCUENTO 0.00 3 10623 \N +420445 2025-10-27 18:17:56.761969+00 2025-10-27 18:17:56.761974+00 f t TOTAL 54000.00 4 10623 \N +420446 2025-10-27 18:17:56.763025+00 2025-10-27 18:17:56.76303+00 f t ADELANTO 13500.00 5 10623 \N +413047 2025-10-24 18:56:30.036662+00 2025-10-24 18:56:30.036669+00 f t SUBTOTAL 55000.00 1 10445 \N +413048 2025-10-24 18:56:30.038202+00 2025-10-24 18:56:30.038208+00 f t COSTO_SERVICIO 0.00 2 10445 \N +413049 2025-10-24 18:56:30.039301+00 2025-10-24 18:56:30.039307+00 f t DESCUENTO 0.00 3 10445 \N +413050 2025-10-24 18:56:30.040249+00 2025-10-24 18:56:30.040254+00 f t TOTAL 55000.00 4 10445 \N +413051 2025-10-24 18:56:30.041069+00 2025-10-24 18:56:30.041074+00 f t ADELANTO 11000.00 5 10445 \N +413072 2025-10-24 19:02:43.033469+00 2025-10-24 19:02:43.033481+00 f t SUBTOTAL 55000.00 1 10446 \N +413073 2025-10-24 19:02:43.035397+00 2025-10-24 19:02:43.035406+00 f t COSTO_SERVICIO 0.00 2 10446 \N +413074 2025-10-24 19:02:43.036979+00 2025-10-24 19:02:43.036988+00 f t DESCUENTO 0.00 3 10446 \N +413075 2025-10-24 19:02:43.038223+00 2025-10-24 19:02:43.038231+00 f t TOTAL 55000.00 4 10446 \N +413076 2025-10-24 19:02:43.039364+00 2025-10-24 19:02:43.039373+00 f t ADELANTO 11000.00 5 10446 \N +413082 2025-10-24 19:46:42.094097+00 2025-10-24 19:46:42.094107+00 f t SUBTOTAL 0.00 1 10447 \N +413083 2025-10-24 19:46:42.095281+00 2025-10-24 19:46:42.095287+00 f t COSTO_SERVICIO 0.00 2 10447 \N +413084 2025-10-24 19:46:42.096157+00 2025-10-24 19:46:42.096162+00 f t DESCUENTO 0.00 3 10447 \N +413085 2025-10-24 19:46:42.096959+00 2025-10-24 19:46:42.096963+00 f t TOTAL 0.00 4 10447 \N +413086 2025-10-24 19:46:42.097846+00 2025-10-24 19:46:42.097851+00 f t ADELANTO 0.00 5 10447 \N +413092 2025-10-24 19:55:13.941065+00 2025-10-24 19:55:13.941077+00 f t SUBTOTAL 0.00 1 10448 \N +413093 2025-10-24 19:55:13.94264+00 2025-10-24 19:55:13.94265+00 f t COSTO_SERVICIO 0.00 2 10448 \N +413094 2025-10-24 19:55:13.94384+00 2025-10-24 19:55:13.943847+00 f t DESCUENTO 0.00 3 10448 \N +413095 2025-10-24 19:55:13.94486+00 2025-10-24 19:55:13.944867+00 f t TOTAL 0.00 4 10448 \N +413096 2025-10-24 19:55:13.945896+00 2025-10-24 19:55:13.945903+00 f t ADELANTO 0.00 5 10448 \N +416392 2025-10-25 22:49:11.226329+00 2025-10-25 22:49:11.22634+00 f t SUBTOTAL 60000.00 1 10518 \N +416393 2025-10-25 22:49:11.228345+00 2025-10-25 22:49:11.228354+00 f t COSTO_SERVICIO 0.00 2 10518 \N +416394 2025-10-25 22:49:11.229883+00 2025-10-25 22:49:11.229893+00 f t DESCUENTO 0.00 3 10518 \N +416395 2025-10-25 22:49:11.231199+00 2025-10-25 22:49:11.231206+00 f t TOTAL 60000.00 4 10518 \N +416396 2025-10-25 22:49:11.232294+00 2025-10-25 22:49:11.232299+00 f t ADELANTO 60000.00 5 10518 \N +417172 2025-10-26 15:09:25.409028+00 2025-10-26 15:09:25.409039+00 f t SUBTOTAL 0.00 1 10538 \N +417173 2025-10-26 15:09:25.410965+00 2025-10-26 15:09:25.410975+00 f t COSTO_SERVICIO 0.00 2 10538 \N +417174 2025-10-26 15:09:25.412485+00 2025-10-26 15:09:25.412493+00 f t DESCUENTO 0.00 3 10538 \N +417175 2025-10-26 15:09:25.413773+00 2025-10-26 15:09:25.41378+00 f t TOTAL 0.00 4 10538 \N +417176 2025-10-26 15:09:25.414887+00 2025-10-26 15:09:25.414894+00 f t ADELANTO 0.00 5 10538 \N +413132 2025-10-24 20:15:21.867884+00 2025-10-24 20:15:21.867892+00 f t SUBTOTAL 75000.00 1 10449 \N +413133 2025-10-24 20:15:21.869627+00 2025-10-24 20:15:21.869633+00 f t COSTO_SERVICIO 0.00 2 10449 \N +413134 2025-10-24 20:15:21.870812+00 2025-10-24 20:15:21.870817+00 f t DESCUENTO 0.00 3 10449 \N +413135 2025-10-24 20:15:21.871973+00 2025-10-24 20:15:21.871979+00 f t TOTAL 75000.00 4 10449 \N +413136 2025-10-24 20:15:21.873086+00 2025-10-24 20:15:21.873091+00 f t ADELANTO 16500.00 5 10449 \N +417577 2025-10-26 16:31:29.314626+00 2025-10-26 16:31:29.314635+00 f t SUBTOTAL 0.00 1 10547 \N +417578 2025-10-26 16:31:29.316734+00 2025-10-26 16:31:29.31674+00 f t COSTO_SERVICIO 0.00 2 10547 \N +417579 2025-10-26 16:31:29.317931+00 2025-10-26 16:31:29.317937+00 f t DESCUENTO 0.00 3 10547 \N +417580 2025-10-26 16:31:29.319332+00 2025-10-26 16:31:29.319337+00 f t TOTAL 0.00 4 10547 \N +417581 2025-10-26 16:31:29.320183+00 2025-10-26 16:31:29.320188+00 f t ADELANTO 0.00 5 10547 \N +427197 2025-10-28 21:00:57.214842+00 2025-10-28 21:00:57.214857+00 f t SUBTOTAL 0.00 1 10777 \N +427198 2025-10-28 21:00:57.216999+00 2025-10-28 21:00:57.217012+00 f t COSTO_SERVICIO 0.00 2 10777 \N +427199 2025-10-28 21:00:57.219292+00 2025-10-28 21:00:57.219304+00 f t DESCUENTO 0.00 3 10777 \N +427200 2025-10-28 21:00:57.221022+00 2025-10-28 21:00:57.221031+00 f t TOTAL 0.00 4 10777 \N +427201 2025-10-28 21:00:57.222519+00 2025-10-28 21:00:57.222528+00 f t ADELANTO 0.00 5 10777 \N +427362 2025-10-28 21:54:26.972579+00 2025-10-28 21:54:26.97259+00 f t SUBTOTAL 92000.00 1 10771 \N +427363 2025-10-28 21:54:26.974772+00 2025-10-28 21:54:26.974782+00 f t COSTO_SERVICIO 0.00 2 10771 \N +427364 2025-10-28 21:54:26.976349+00 2025-10-28 21:54:26.976357+00 f t DESCUENTO 0.00 3 10771 \N +427365 2025-10-28 21:54:26.977748+00 2025-10-28 21:54:26.977757+00 f t TOTAL 92000.00 4 10771 \N +427366 2025-10-28 21:54:26.979087+00 2025-10-28 21:54:26.979095+00 f t ADELANTO 22000.00 5 10771 \N +418497 2025-10-27 10:34:36.422644+00 2025-10-27 10:34:36.422653+00 f t SUBTOTAL 46000.00 1 10574 \N +418498 2025-10-27 10:34:36.424649+00 2025-10-27 10:34:36.424656+00 f t COSTO_SERVICIO 0.00 2 10574 \N +418499 2025-10-27 10:34:36.426034+00 2025-10-27 10:34:36.42604+00 f t DESCUENTO 0.00 3 10574 \N +418500 2025-10-27 10:34:36.427102+00 2025-10-27 10:34:36.427108+00 f t TOTAL 46000.00 4 10574 \N +418501 2025-10-27 10:34:36.428275+00 2025-10-27 10:34:36.42828+00 f t ADELANTO 11000.00 5 10574 \N +418727 2025-10-27 13:25:05.119082+00 2025-10-27 13:25:05.119102+00 f t SUBTOTAL 55000.00 1 10577 \N +418728 2025-10-27 13:25:05.123962+00 2025-10-27 13:25:05.123976+00 f t COSTO_SERVICIO 0.00 2 10577 \N +418729 2025-10-27 13:25:05.127012+00 2025-10-27 13:25:05.127029+00 f t DESCUENTO 0.00 3 10577 \N +418730 2025-10-27 13:25:05.132518+00 2025-10-27 13:25:05.13253+00 f t TOTAL 55000.00 4 10577 \N +418731 2025-10-27 13:25:05.135837+00 2025-10-27 13:25:05.135851+00 f t ADELANTO 11000.00 5 10577 \N +413202 2025-10-24 20:30:41.978069+00 2025-10-24 20:30:41.978076+00 f t SUBTOTAL 46000.00 1 10450 \N +413203 2025-10-24 20:30:41.979506+00 2025-10-24 20:30:41.979513+00 f t COSTO_SERVICIO 0.00 2 10450 \N +413204 2025-10-24 20:30:41.980793+00 2025-10-24 20:30:41.980799+00 f t DESCUENTO 0.00 3 10450 \N +413205 2025-10-24 20:30:41.9819+00 2025-10-24 20:30:41.981906+00 f t TOTAL 46000.00 4 10450 \N +413206 2025-10-24 20:30:41.983083+00 2025-10-24 20:30:41.983088+00 f t ADELANTO 11000.00 5 10450 \N +413217 2025-10-24 20:39:38.222084+00 2025-10-24 20:39:38.222091+00 f t SUBTOTAL 13200.00 1 10451 \N +413218 2025-10-24 20:39:38.223755+00 2025-10-24 20:39:38.223761+00 f t COSTO_SERVICIO 0.00 2 10451 \N +413219 2025-10-24 20:39:38.224772+00 2025-10-24 20:39:38.22478+00 f t DESCUENTO 0.00 3 10451 \N +413220 2025-10-24 20:39:38.225806+00 2025-10-24 20:39:38.225813+00 f t TOTAL 13200.00 4 10451 \N +413221 2025-10-24 20:39:38.227066+00 2025-10-24 20:39:38.227072+00 f t ADELANTO 13200.00 5 10451 \N +419492 2025-10-27 15:18:12.134153+00 2025-10-27 15:18:12.134165+00 f t SUBTOTAL 70000.00 1 10597 \N +419493 2025-10-27 15:18:12.136412+00 2025-10-27 15:18:12.136423+00 f t COSTO_SERVICIO 0.00 2 10597 \N +419494 2025-10-27 15:18:12.13813+00 2025-10-27 15:18:12.13814+00 f t DESCUENTO 0.00 3 10597 \N +419495 2025-10-27 15:18:12.139663+00 2025-10-27 15:18:12.139672+00 f t TOTAL 70000.00 4 10597 \N +419496 2025-10-27 15:18:12.141154+00 2025-10-27 15:18:12.141161+00 f t ADELANTO 19000.00 5 10597 \N +419702 2025-10-27 16:19:33.700764+00 2025-10-27 16:19:33.700774+00 f t SUBTOTAL 0.00 1 10603 \N +419703 2025-10-27 16:19:33.702132+00 2025-10-27 16:19:33.702138+00 f t COSTO_SERVICIO 0.00 2 10603 \N +419704 2025-10-27 16:19:33.703201+00 2025-10-27 16:19:33.703208+00 f t DESCUENTO 0.00 3 10603 \N +419705 2025-10-27 16:19:33.704381+00 2025-10-27 16:19:33.704387+00 f t TOTAL 0.00 4 10603 \N +419706 2025-10-27 16:19:33.705429+00 2025-10-27 16:19:33.705434+00 f t ADELANTO 0.00 5 10603 \N +420242 2025-10-27 18:00:26.902021+00 2025-10-27 18:00:26.902035+00 f t SUBTOTAL 54000.00 1 10616 \N +420243 2025-10-27 18:00:26.905482+00 2025-10-27 18:00:26.905495+00 f t COSTO_SERVICIO 0.00 2 10616 \N +420244 2025-10-27 18:00:26.908131+00 2025-10-27 18:00:26.908144+00 f t DESCUENTO 0.00 3 10616 \N +420245 2025-10-27 18:00:26.912163+00 2025-10-27 18:00:26.912177+00 f t TOTAL 54000.00 4 10616 \N +420246 2025-10-27 18:00:26.919641+00 2025-10-27 18:00:26.919654+00 f t ADELANTO 13500.00 5 10616 \N +413317 2025-10-24 20:51:20.792029+00 2025-10-24 20:51:20.792037+00 f t SUBTOTAL 68000.00 1 10452 \N +413318 2025-10-24 20:51:20.793437+00 2025-10-24 20:51:20.793444+00 f t COSTO_SERVICIO 0.00 2 10452 \N +413319 2025-10-24 20:51:20.794518+00 2025-10-24 20:51:20.794523+00 f t DESCUENTO 0.00 3 10452 \N +413320 2025-10-24 20:51:20.79558+00 2025-10-24 20:51:20.795585+00 f t TOTAL 68000.00 4 10452 \N +413321 2025-10-24 20:51:20.79663+00 2025-10-24 20:51:20.796635+00 f t ADELANTO 13000.00 5 10452 \N +413347 2025-10-24 20:56:45.959404+00 2025-10-24 20:56:45.959412+00 f t SUBTOTAL 46000.00 1 10453 \N +413348 2025-10-24 20:56:45.961119+00 2025-10-24 20:56:45.961125+00 f t COSTO_SERVICIO 0.00 2 10453 \N +413349 2025-10-24 20:56:45.962132+00 2025-10-24 20:56:45.962137+00 f t DESCUENTO 0.00 3 10453 \N +413350 2025-10-24 20:56:45.963233+00 2025-10-24 20:56:45.963238+00 f t TOTAL 46000.00 4 10453 \N +413351 2025-10-24 20:56:45.964194+00 2025-10-24 20:56:45.964198+00 f t ADELANTO 11000.00 5 10453 \N +413377 2025-10-24 21:22:28.494126+00 2025-10-24 21:22:28.494133+00 f t SUBTOTAL 46000.00 1 10454 \N +413378 2025-10-24 21:22:28.495585+00 2025-10-24 21:22:28.495591+00 f t COSTO_SERVICIO 0.00 2 10454 \N +413379 2025-10-24 21:22:28.496513+00 2025-10-24 21:22:28.496518+00 f t DESCUENTO 0.00 3 10454 \N +413380 2025-10-24 21:22:28.497346+00 2025-10-24 21:22:28.497351+00 f t TOTAL 46000.00 4 10454 \N +413381 2025-10-24 21:22:28.498203+00 2025-10-24 21:22:28.498208+00 f t ADELANTO 11000.00 5 10454 \N +413392 2025-10-24 21:24:14.587625+00 2025-10-24 21:24:14.587633+00 f t SUBTOTAL 30000.00 1 10455 \N +413393 2025-10-24 21:24:14.588986+00 2025-10-24 21:24:14.588991+00 f t COSTO_SERVICIO 0.00 2 10455 \N +413394 2025-10-24 21:24:14.590204+00 2025-10-24 21:24:14.590212+00 f t DESCUENTO 0.00 3 10455 \N +413395 2025-10-24 21:24:14.591551+00 2025-10-24 21:24:14.591557+00 f t TOTAL 30000.00 4 10455 \N +413396 2025-10-24 21:24:14.592729+00 2025-10-24 21:24:14.592735+00 f t ADELANTO 30000.00 5 10455 \N +435917 2025-10-30 15:16:10.945964+00 2025-10-30 15:16:10.945971+00 f t SUBTOTAL 75000.00 1 10978 \N +435918 2025-10-30 15:16:10.947698+00 2025-10-30 15:16:10.947704+00 f t COSTO_SERVICIO 0.00 2 10978 \N +435919 2025-10-30 15:16:10.948881+00 2025-10-30 15:16:10.948888+00 f t DESCUENTO 0.00 3 10978 \N +435920 2025-10-30 15:16:10.950013+00 2025-10-30 15:16:10.950019+00 f t TOTAL 75000.00 4 10978 \N +435921 2025-10-30 15:16:10.951151+00 2025-10-30 15:16:10.951157+00 f t ADELANTO 16500.00 5 10978 \N +426252 2025-10-28 17:51:14.598975+00 2025-10-28 17:51:14.598988+00 f t SUBTOTAL 0.00 1 10747 \N +426253 2025-10-28 17:51:14.600882+00 2025-10-28 17:51:14.600894+00 f t COSTO_SERVICIO 0.00 2 10747 \N +426254 2025-10-28 17:51:14.603034+00 2025-10-28 17:51:14.603047+00 f t DESCUENTO 0.00 3 10747 \N +413422 2025-10-24 21:40:07.843358+00 2025-10-24 21:40:07.84337+00 f t SUBTOTAL 46000.00 1 10456 \N +413423 2025-10-24 21:40:07.84547+00 2025-10-24 21:40:07.845481+00 f t COSTO_SERVICIO 0.00 2 10456 \N +413424 2025-10-24 21:40:07.8472+00 2025-10-24 21:40:07.84721+00 f t DESCUENTO 0.00 3 10456 \N +413425 2025-10-24 21:40:07.84924+00 2025-10-24 21:40:07.849252+00 f t TOTAL 46000.00 4 10456 \N +413426 2025-10-24 21:40:07.85088+00 2025-10-24 21:40:07.850892+00 f t ADELANTO 11000.00 5 10456 \N +413447 2025-10-24 21:52:44.145577+00 2025-10-24 21:52:44.145585+00 f t SUBTOTAL 78000.00 1 10457 \N +413448 2025-10-24 21:52:44.148131+00 2025-10-24 21:52:44.148138+00 f t COSTO_SERVICIO 0.00 2 10457 \N +413449 2025-10-24 21:52:44.149567+00 2025-10-24 21:52:44.149574+00 f t DESCUENTO 0.00 3 10457 \N +413450 2025-10-24 21:52:44.150801+00 2025-10-24 21:52:44.150807+00 f t TOTAL 78000.00 4 10457 \N +413451 2025-10-24 21:52:44.152164+00 2025-10-24 21:52:44.152172+00 f t ADELANTO 21500.00 5 10457 \N +417312 2025-10-26 15:38:20.876629+00 2025-10-26 15:38:20.876636+00 f t SUBTOTAL 55000.00 1 10541 \N +417313 2025-10-26 15:38:20.878276+00 2025-10-26 15:38:20.878282+00 f t COSTO_SERVICIO 0.00 2 10541 \N +417314 2025-10-26 15:38:20.879328+00 2025-10-26 15:38:20.879333+00 f t DESCUENTO 0.00 3 10541 \N +417315 2025-10-26 15:38:20.880325+00 2025-10-26 15:38:20.88033+00 f t TOTAL 55000.00 4 10541 \N +417316 2025-10-26 15:38:20.881249+00 2025-10-26 15:38:20.881256+00 f t ADELANTO 11000.00 5 10541 \N +413464 2025-10-24 21:54:24.826978+00 2025-10-24 21:54:24.826987+00 f t DESCUENTO 0.00 3 10425 \N +413465 2025-10-24 21:54:24.828328+00 2025-10-24 21:54:24.828337+00 f t TOTAL 55000.00 4 10425 \N +413466 2025-10-24 21:54:24.829654+00 2025-10-24 21:54:24.829661+00 f t ADELANTO 0.00 5 10425 \N +413467 2025-10-24 21:54:24.846033+00 2025-10-24 21:54:24.846041+00 f t SUBTOTAL 55000.00 1 10425 \N +413468 2025-10-24 21:54:24.851391+00 2025-10-24 21:54:24.851399+00 f t COSTO_SERVICIO 0.00 2 10425 \N +413469 2025-10-24 21:54:24.852736+00 2025-10-24 21:54:24.852742+00 f t DESCUENTO 0.00 3 10425 \N +413470 2025-10-24 21:54:24.853817+00 2025-10-24 21:54:24.853822+00 f t TOTAL 55000.00 4 10425 \N +413471 2025-10-24 21:54:24.855125+00 2025-10-24 21:54:24.855169+00 f t ADELANTO 11000.00 5 10425 \N +418367 2025-10-26 23:39:36.688619+00 2025-10-26 23:39:36.688626+00 f t SUBTOTAL 78000.00 1 10567 \N +418368 2025-10-26 23:39:36.690305+00 2025-10-26 23:39:36.690311+00 f t COSTO_SERVICIO 0.00 2 10567 \N +418369 2025-10-26 23:39:36.691432+00 2025-10-26 23:39:36.691439+00 f t DESCUENTO 0.00 3 10567 \N +418370 2025-10-26 23:39:36.692733+00 2025-10-26 23:39:36.692738+00 f t TOTAL 78000.00 4 10567 \N +418371 2025-10-26 23:39:36.693686+00 2025-10-26 23:39:36.693692+00 f t ADELANTO 21500.00 5 10567 \N +413522 2025-10-24 22:06:57.260067+00 2025-10-24 22:06:57.260076+00 f t SUBTOTAL 54000.00 1 10458 \N +413523 2025-10-24 22:06:57.261831+00 2025-10-24 22:06:57.261838+00 f t COSTO_SERVICIO 0.00 2 10458 \N +413524 2025-10-24 22:06:57.265106+00 2025-10-24 22:06:57.265113+00 f t DESCUENTO 0.00 3 10458 \N +413525 2025-10-24 22:06:57.266892+00 2025-10-24 22:06:57.266899+00 f t TOTAL 54000.00 4 10458 \N +413526 2025-10-24 22:06:57.268177+00 2025-10-24 22:06:57.268189+00 f t ADELANTO 13500.00 5 10458 \N +413542 2025-10-24 22:24:17.671329+00 2025-10-24 22:24:17.671339+00 f t SUBTOTAL 0.00 1 10459 \N +413543 2025-10-24 22:24:17.673613+00 2025-10-24 22:24:17.673621+00 f t COSTO_SERVICIO 0.00 2 10459 \N +413544 2025-10-24 22:24:17.674796+00 2025-10-24 22:24:17.674802+00 f t DESCUENTO 0.00 3 10459 \N +413545 2025-10-24 22:24:17.676019+00 2025-10-24 22:24:17.676024+00 f t TOTAL 0.00 4 10459 \N +413546 2025-10-24 22:24:17.678171+00 2025-10-24 22:24:17.678177+00 f t ADELANTO 0.00 5 10459 \N +419287 2025-10-27 14:56:43.833938+00 2025-10-27 14:56:43.833944+00 f t SUBTOTAL 111000.00 1 10592 \N +419288 2025-10-27 14:56:43.835571+00 2025-10-27 14:56:43.835576+00 f t COSTO_SERVICIO 0.00 2 10592 \N +419289 2025-10-27 14:56:43.836843+00 2025-10-27 14:56:43.836848+00 f t DESCUENTO 0.00 3 10592 \N +419290 2025-10-27 14:56:43.838107+00 2025-10-27 14:56:43.838112+00 f t TOTAL 111000.00 4 10592 \N +419291 2025-10-27 14:56:43.839212+00 2025-10-27 14:56:43.839217+00 f t ADELANTO 28000.00 5 10592 \N +413577 2025-10-24 22:32:05.666928+00 2025-10-24 22:32:05.666935+00 f t SUBTOTAL 54000.00 1 10460 \N +413578 2025-10-24 22:32:05.668984+00 2025-10-24 22:32:05.668992+00 f t COSTO_SERVICIO 0.00 2 10460 \N +413579 2025-10-24 22:32:05.6707+00 2025-10-24 22:32:05.670707+00 f t DESCUENTO 0.00 3 10460 \N +413580 2025-10-24 22:32:05.672125+00 2025-10-24 22:32:05.672131+00 f t TOTAL 54000.00 4 10460 \N +413581 2025-10-24 22:32:05.673407+00 2025-10-24 22:32:05.673413+00 f t ADELANTO 13500.00 5 10460 \N +419502 2025-10-27 15:33:44.737877+00 2025-10-27 15:33:44.737887+00 f t SUBTOTAL 0.00 1 10598 \N +419503 2025-10-27 15:33:44.739523+00 2025-10-27 15:33:44.739534+00 f t COSTO_SERVICIO 0.00 2 10598 \N +419504 2025-10-27 15:33:44.740988+00 2025-10-27 15:33:44.740998+00 f t DESCUENTO 0.00 3 10598 \N +419505 2025-10-27 15:33:44.742496+00 2025-10-27 15:33:44.742504+00 f t TOTAL 0.00 4 10598 \N +419506 2025-10-27 15:33:44.744009+00 2025-10-27 15:33:44.744018+00 f t ADELANTO 0.00 5 10598 \N +419712 2025-10-27 16:25:37.746043+00 2025-10-27 16:25:37.746056+00 f t SUBTOTAL 0.00 1 10604 \N +419713 2025-10-27 16:25:37.747695+00 2025-10-27 16:25:37.747706+00 f t COSTO_SERVICIO 0.00 2 10604 \N +419714 2025-10-27 16:25:37.749182+00 2025-10-27 16:25:37.749193+00 f t DESCUENTO 0.00 3 10604 \N +419715 2025-10-27 16:25:37.750556+00 2025-10-27 16:25:37.750563+00 f t TOTAL 0.00 4 10604 \N +419716 2025-10-27 16:25:37.751659+00 2025-10-27 16:25:37.751664+00 f t ADELANTO 0.00 5 10604 \N +420027 2025-10-27 17:05:17.261555+00 2025-10-27 17:05:17.261563+00 f t SUBTOTAL 46000.00 1 10611 \N +420028 2025-10-27 17:05:17.263374+00 2025-10-27 17:05:17.263379+00 f t COSTO_SERVICIO 0.00 2 10611 \N +420029 2025-10-27 17:05:17.264497+00 2025-10-27 17:05:17.264502+00 f t DESCUENTO 0.00 3 10611 \N +420030 2025-10-27 17:05:17.265417+00 2025-10-27 17:05:17.265423+00 f t TOTAL 46000.00 4 10611 \N +420031 2025-10-27 17:05:17.266258+00 2025-10-27 17:05:17.266262+00 f t ADELANTO 11000.00 5 10611 \N +420457 2025-10-27 18:26:30.673634+00 2025-10-27 18:26:30.673646+00 f t SUBTOTAL 55000.00 1 10619 \N +420458 2025-10-27 18:26:30.675788+00 2025-10-27 18:26:30.675799+00 f t COSTO_SERVICIO 0.00 2 10619 \N +420459 2025-10-27 18:26:30.677465+00 2025-10-27 18:26:30.677475+00 f t DESCUENTO 0.00 3 10619 \N +420460 2025-10-27 18:26:30.67887+00 2025-10-27 18:26:30.67888+00 f t TOTAL 55000.00 4 10619 \N +420461 2025-10-27 18:26:30.680242+00 2025-10-27 18:26:30.680248+00 f t ADELANTO 11000.00 5 10619 \N +413687 2025-10-24 22:47:07.84966+00 2025-10-24 22:47:07.849668+00 f t SUBTOTAL 184000.00 1 10461 \N +413688 2025-10-24 22:47:07.851312+00 2025-10-24 22:47:07.851319+00 f t COSTO_SERVICIO 0.00 2 10461 \N +413689 2025-10-24 22:47:07.852566+00 2025-10-24 22:47:07.852573+00 f t DESCUENTO 0.00 3 10461 \N +413690 2025-10-24 22:47:07.853998+00 2025-10-24 22:47:07.854005+00 f t TOTAL 184000.00 4 10461 \N +413691 2025-10-24 22:47:07.855238+00 2025-10-24 22:47:07.855244+00 f t ADELANTO 44000.00 5 10461 \N +426255 2025-10-28 17:51:14.604704+00 2025-10-28 17:51:14.604713+00 f t TOTAL 0.00 4 10747 \N +426256 2025-10-28 17:51:14.607406+00 2025-10-28 17:51:14.607418+00 f t ADELANTO 0.00 5 10747 \N +427372 2025-10-28 21:56:32.275001+00 2025-10-28 21:56:32.275009+00 f t SUBTOTAL 0.00 1 10785 \N +427373 2025-10-28 21:56:32.276381+00 2025-10-28 21:56:32.276388+00 f t COSTO_SERVICIO 0.00 2 10785 \N +427374 2025-10-28 21:56:32.277236+00 2025-10-28 21:56:32.277241+00 f t DESCUENTO 0.00 3 10785 \N +427375 2025-10-28 21:56:32.278162+00 2025-10-28 21:56:32.278167+00 f t TOTAL 0.00 4 10785 \N +427376 2025-10-28 21:56:32.27912+00 2025-10-28 21:56:32.279151+00 f t ADELANTO 0.00 5 10785 \N +427627 2025-10-28 23:22:36.362727+00 2025-10-28 23:22:36.362738+00 f t SUBTOTAL 46000.00 1 10792 \N +427628 2025-10-28 23:22:36.364597+00 2025-10-28 23:22:36.364605+00 f t COSTO_SERVICIO 0.00 2 10792 \N +427629 2025-10-28 23:22:36.365852+00 2025-10-28 23:22:36.36586+00 f t DESCUENTO 0.00 3 10792 \N +417847 2025-10-26 17:49:06.498794+00 2025-10-26 17:49:06.498807+00 f t SUBTOTAL 0.00 1 10553 \N +417848 2025-10-26 17:49:06.500993+00 2025-10-26 17:49:06.501091+00 f t COSTO_SERVICIO 0.00 2 10553 \N +417849 2025-10-26 17:49:06.502455+00 2025-10-26 17:49:06.502464+00 f t DESCUENTO 0.00 3 10553 \N +417850 2025-10-26 17:49:06.503658+00 2025-10-26 17:49:06.503667+00 f t TOTAL 0.00 4 10553 \N +417851 2025-10-26 17:49:06.504867+00 2025-10-26 17:49:06.504875+00 f t ADELANTO 0.00 5 10553 \N +427630 2025-10-28 23:22:36.366946+00 2025-10-28 23:22:36.366954+00 f t TOTAL 46000.00 4 10792 \N +427631 2025-10-28 23:22:36.368089+00 2025-10-28 23:22:36.368096+00 f t ADELANTO 11000.00 5 10792 \N +458467 2025-11-06 00:15:38.912044+00 2025-11-06 00:15:38.912051+00 f t SUBTOTAL 115000.00 1 11508 \N +458468 2025-11-06 00:15:38.91386+00 2025-11-06 00:15:38.913866+00 f t COSTO_SERVICIO 0.00 2 11508 \N +458469 2025-11-06 00:15:38.914962+00 2025-11-06 00:15:38.914968+00 f t DESCUENTO 0.00 3 11508 \N +458470 2025-11-06 00:15:38.916043+00 2025-11-06 00:15:38.916048+00 f t TOTAL 115000.00 4 11508 \N +458471 2025-11-06 00:15:38.916988+00 2025-11-06 00:15:38.916993+00 f t ADELANTO 25000.00 5 11508 \N +413797 2025-10-24 22:52:21.511196+00 2025-10-24 22:52:21.511204+00 f t SUBTOTAL 46000.00 1 10462 \N +413798 2025-10-24 22:52:21.513623+00 2025-10-24 22:52:21.513634+00 f t COSTO_SERVICIO 0.00 2 10462 \N +413799 2025-10-24 22:52:21.515448+00 2025-10-24 22:52:21.515459+00 f t DESCUENTO 0.00 3 10462 \N +413800 2025-10-24 22:52:21.519765+00 2025-10-24 22:52:21.519777+00 f t TOTAL 46000.00 4 10462 \N +413801 2025-10-24 22:52:21.521852+00 2025-10-24 22:52:21.521864+00 f t ADELANTO 11000.00 5 10462 \N +419297 2025-10-27 14:58:42.274201+00 2025-10-27 14:58:42.274214+00 f t SUBTOTAL 0.00 1 10593 \N +419298 2025-10-27 14:58:42.275751+00 2025-10-27 14:58:42.275761+00 f t COSTO_SERVICIO 0.00 2 10593 \N +419299 2025-10-27 14:58:42.27697+00 2025-10-27 14:58:42.276978+00 f t DESCUENTO 0.00 3 10593 \N +419300 2025-10-27 14:58:42.278045+00 2025-10-27 14:58:42.278053+00 f t TOTAL 0.00 4 10593 \N +419301 2025-10-27 14:58:42.279165+00 2025-10-27 14:58:42.279173+00 f t ADELANTO 0.00 5 10593 \N +413842 2025-10-24 23:06:04.591819+00 2025-10-24 23:06:04.591829+00 f t SUBTOTAL 55000.00 1 10464 \N +413843 2025-10-24 23:06:04.59544+00 2025-10-24 23:06:04.595451+00 f t COSTO_SERVICIO 0.00 2 10464 \N +413844 2025-10-24 23:06:04.597381+00 2025-10-24 23:06:04.597389+00 f t DESCUENTO 0.00 3 10464 \N +413845 2025-10-24 23:06:04.598898+00 2025-10-24 23:06:04.598905+00 f t TOTAL 55000.00 4 10464 \N +413846 2025-10-24 23:06:04.600206+00 2025-10-24 23:06:04.600212+00 f t ADELANTO 11000.00 5 10464 \N +413852 2025-10-24 23:06:58.73428+00 2025-10-24 23:06:58.734288+00 f t SUBTOTAL 78000.00 1 10463 \N +413853 2025-10-24 23:06:58.740445+00 2025-10-24 23:06:58.740455+00 f t COSTO_SERVICIO 0.00 2 10463 \N +413854 2025-10-24 23:06:58.742181+00 2025-10-24 23:06:58.742188+00 f t DESCUENTO 0.00 3 10463 \N +413855 2025-10-24 23:06:58.743743+00 2025-10-24 23:06:58.743749+00 f t TOTAL 78000.00 4 10463 \N +413856 2025-10-24 23:06:58.744998+00 2025-10-24 23:06:58.745004+00 f t ADELANTO 21500.00 5 10463 \N +429977 2025-10-29 12:01:51.503748+00 2025-10-29 12:01:51.503758+00 f t SUBTOTAL 0.00 1 10830 \N +429978 2025-10-29 12:01:51.506362+00 2025-10-29 12:01:51.50637+00 f t COSTO_SERVICIO 0.00 2 10830 \N +429979 2025-10-29 12:01:51.508019+00 2025-10-29 12:01:51.508027+00 f t DESCUENTO 0.00 3 10830 \N +429980 2025-10-29 12:01:51.509202+00 2025-10-29 12:01:51.509209+00 f t TOTAL 0.00 4 10830 \N +429981 2025-10-29 12:01:51.510445+00 2025-10-29 12:01:51.510452+00 f t ADELANTO 0.00 5 10830 \N +413887 2025-10-24 23:20:04.103744+00 2025-10-24 23:20:04.103759+00 f t SUBTOTAL 68000.00 1 10465 \N +413888 2025-10-24 23:20:04.140153+00 2025-10-24 23:20:04.14017+00 f t COSTO_SERVICIO 0.00 2 10465 \N +413889 2025-10-24 23:20:04.144218+00 2025-10-24 23:20:04.144232+00 f t DESCUENTO 0.00 3 10465 \N +413890 2025-10-24 23:20:04.147404+00 2025-10-24 23:20:04.147417+00 f t TOTAL 68000.00 4 10465 \N +413891 2025-10-24 23:20:04.161349+00 2025-10-24 23:20:04.161364+00 f t ADELANTO 13000.00 5 10465 \N +430307 2025-10-29 13:15:40.013546+00 2025-10-29 13:15:40.013555+00 f t SUBTOTAL 55000.00 1 10839 \N +430308 2025-10-29 13:15:40.015915+00 2025-10-29 13:15:40.015923+00 f t COSTO_SERVICIO 0.00 2 10839 \N +430309 2025-10-29 13:15:40.017113+00 2025-10-29 13:15:40.017118+00 f t DESCUENTO 0.00 3 10839 \N +430310 2025-10-29 13:15:40.018183+00 2025-10-29 13:15:40.018189+00 f t TOTAL 55000.00 4 10839 \N +430311 2025-10-29 13:15:40.019169+00 2025-10-29 13:15:40.019175+00 f t ADELANTO 11000.00 5 10839 \N +420562 2025-10-27 18:39:14.412101+00 2025-10-27 18:39:14.412108+00 f t SUBTOTAL 70000.00 1 10627 \N +420563 2025-10-27 18:39:14.414133+00 2025-10-27 18:39:14.41414+00 f t COSTO_SERVICIO 0.00 2 10627 \N +420564 2025-10-27 18:39:14.415377+00 2025-10-27 18:39:14.415383+00 f t DESCUENTO 0.00 3 10627 \N +420565 2025-10-27 18:39:14.416504+00 2025-10-27 18:39:14.41651+00 f t TOTAL 70000.00 4 10627 \N +420566 2025-10-27 18:39:14.417615+00 2025-10-27 18:39:14.417621+00 f t ADELANTO 19000.00 5 10627 \N +413922 2025-10-24 23:53:36.767104+00 2025-10-24 23:53:36.767116+00 f t SUBTOTAL 0.00 1 10466 \N +413923 2025-10-24 23:53:36.769192+00 2025-10-24 23:53:36.769202+00 f t COSTO_SERVICIO 0.00 2 10466 \N +413924 2025-10-24 23:53:36.770477+00 2025-10-24 23:53:36.770485+00 f t DESCUENTO 0.00 3 10466 \N +413925 2025-10-24 23:53:36.771539+00 2025-10-24 23:53:36.771547+00 f t TOTAL 0.00 4 10466 \N +413926 2025-10-24 23:53:36.772782+00 2025-10-24 23:53:36.77279+00 f t ADELANTO 0.00 5 10466 \N +421197 2025-10-27 20:11:33.600404+00 2025-10-27 20:11:33.600414+00 f t SUBTOTAL 0.00 1 10633 \N +421198 2025-10-27 20:11:33.601672+00 2025-10-27 20:11:33.601678+00 f t COSTO_SERVICIO 0.00 2 10633 \N +421199 2025-10-27 20:11:33.602822+00 2025-10-27 20:11:33.602827+00 f t DESCUENTO 0.00 3 10633 \N +421200 2025-10-27 20:11:33.603733+00 2025-10-27 20:11:33.603738+00 f t TOTAL 0.00 4 10633 \N +421201 2025-10-27 20:11:33.604636+00 2025-10-27 20:11:33.604641+00 f t ADELANTO 0.00 5 10633 \N +416887 2025-10-26 03:01:45.114672+00 2025-10-26 03:01:45.11468+00 f t SUBTOTAL 63000.00 1 10531 \N +416888 2025-10-26 03:01:45.116406+00 2025-10-26 03:01:45.116413+00 f t COSTO_SERVICIO 0.00 2 10531 \N +416889 2025-10-26 03:01:45.121047+00 2025-10-26 03:01:45.121055+00 f t DESCUENTO 0.00 3 10531 \N +416890 2025-10-26 03:01:45.122714+00 2025-10-26 03:01:45.122722+00 f t TOTAL 63000.00 4 10531 \N +416891 2025-10-26 03:01:45.124163+00 2025-10-26 03:01:45.124173+00 f t ADELANTO 63000.00 5 10531 \N +426262 2025-10-28 17:52:06.229394+00 2025-10-28 17:52:06.229404+00 f t SUBTOTAL 0.00 1 10748 \N +426263 2025-10-28 17:52:06.230841+00 2025-10-28 17:52:06.230848+00 f t COSTO_SERVICIO 0.00 2 10748 \N +426264 2025-10-28 17:52:06.232208+00 2025-10-28 17:52:06.232214+00 f t DESCUENTO 0.00 3 10748 \N +426265 2025-10-28 17:52:06.233373+00 2025-10-28 17:52:06.233383+00 f t TOTAL 0.00 4 10748 \N +426266 2025-10-28 17:52:06.234753+00 2025-10-28 17:52:06.234762+00 f t ADELANTO 0.00 5 10748 \N +417972 2025-10-26 18:16:03.261738+00 2025-10-26 18:16:03.261747+00 f t SUBTOTAL 31500.00 1 10555 \N +417973 2025-10-26 18:16:03.264053+00 2025-10-26 18:16:03.264062+00 f t COSTO_SERVICIO 0.00 2 10555 \N +417974 2025-10-26 18:16:03.265729+00 2025-10-26 18:16:03.265736+00 f t DESCUENTO 0.00 3 10555 \N +417975 2025-10-26 18:16:03.267353+00 2025-10-26 18:16:03.26736+00 f t TOTAL 31500.00 4 10555 \N +417976 2025-10-26 18:16:03.268794+00 2025-10-26 18:16:03.2688+00 f t ADELANTO 31500.00 5 10555 \N +427382 2025-10-28 21:56:35.377889+00 2025-10-28 21:56:35.377898+00 f t SUBTOTAL 0.00 1 10786 \N +427383 2025-10-28 21:56:35.379319+00 2025-10-28 21:56:35.379326+00 f t COSTO_SERVICIO 0.00 2 10786 \N +427384 2025-10-28 21:56:35.380461+00 2025-10-28 21:56:35.380467+00 f t DESCUENTO 0.00 3 10786 \N +427385 2025-10-28 21:56:35.381539+00 2025-10-28 21:56:35.381544+00 f t TOTAL 0.00 4 10786 \N +427386 2025-10-28 21:56:35.382564+00 2025-10-28 21:56:35.382569+00 f t ADELANTO 0.00 5 10786 \N +414067 2025-10-25 00:02:44.856685+00 2025-10-25 00:02:44.856698+00 f t SUBTOTAL 156000.00 1 10467 \N +414068 2025-10-25 00:02:44.859024+00 2025-10-25 00:02:44.859036+00 f t COSTO_SERVICIO 0.00 2 10467 \N +414069 2025-10-25 00:02:44.860777+00 2025-10-25 00:02:44.860788+00 f t DESCUENTO 0.00 3 10467 \N +414070 2025-10-25 00:02:44.863596+00 2025-10-25 00:02:44.863607+00 f t TOTAL 156000.00 4 10467 \N +414071 2025-10-25 00:02:44.86527+00 2025-10-25 00:02:44.86528+00 f t ADELANTO 43000.00 5 10467 \N +414097 2025-10-25 00:31:05.76718+00 2025-10-25 00:31:05.76719+00 f t SUBTOTAL 0.00 1 10468 \N +414098 2025-10-25 00:31:05.771836+00 2025-10-25 00:31:05.771933+00 f t COSTO_SERVICIO 0.00 2 10468 \N +414099 2025-10-25 00:31:05.773589+00 2025-10-25 00:31:05.773596+00 f t DESCUENTO 0.00 3 10468 \N +414100 2025-10-25 00:31:05.77503+00 2025-10-25 00:31:05.775037+00 f t TOTAL 0.00 4 10468 \N +414101 2025-10-25 00:31:05.776336+00 2025-10-25 00:31:05.776342+00 f t ADELANTO 0.00 5 10468 \N +428597 2025-10-29 00:09:21.862406+00 2025-10-29 00:09:21.862414+00 f t SUBTOTAL 46000.00 1 10804 \N +428598 2025-10-29 00:09:21.864103+00 2025-10-29 00:09:21.864111+00 f t COSTO_SERVICIO 0.00 2 10804 \N +428599 2025-10-29 00:09:21.865268+00 2025-10-29 00:09:21.865273+00 f t DESCUENTO 0.00 3 10804 \N +428600 2025-10-29 00:09:21.866405+00 2025-10-29 00:09:21.866413+00 f t TOTAL 46000.00 4 10804 \N +428601 2025-10-29 00:09:21.867636+00 2025-10-29 00:09:21.867643+00 f t ADELANTO 11000.00 5 10804 \N +428722 2025-10-29 00:57:00.13267+00 2025-10-29 00:57:00.132683+00 f t SUBTOTAL 0.00 1 10807 \N +428723 2025-10-29 00:57:00.134677+00 2025-10-29 00:57:00.134685+00 f t COSTO_SERVICIO 0.00 2 10807 \N +428724 2025-10-29 00:57:00.13591+00 2025-10-29 00:57:00.135917+00 f t DESCUENTO 0.00 3 10807 \N +428725 2025-10-29 00:57:00.137246+00 2025-10-29 00:57:00.137254+00 f t TOTAL 0.00 4 10807 \N +428726 2025-10-29 00:57:00.138355+00 2025-10-29 00:57:00.138361+00 f t ADELANTO 0.00 5 10807 \N +414127 2025-10-25 00:31:57.868362+00 2025-10-25 00:31:57.86837+00 f t SUBTOTAL 76000.00 1 10469 \N +414128 2025-10-25 00:31:57.870463+00 2025-10-25 00:31:57.87047+00 f t COSTO_SERVICIO 0.00 2 10469 \N +414129 2025-10-25 00:31:57.872517+00 2025-10-25 00:31:57.872526+00 f t DESCUENTO 0.00 3 10469 \N +414130 2025-10-25 00:31:57.874217+00 2025-10-25 00:31:57.87423+00 f t TOTAL 76000.00 4 10469 \N +414131 2025-10-25 00:31:57.876099+00 2025-10-25 00:31:57.876105+00 f t ADELANTO 41000.00 5 10469 \N +414157 2025-10-25 00:46:41.920094+00 2025-10-25 00:46:41.920102+00 f t SUBTOTAL 70000.00 1 10470 \N +414158 2025-10-25 00:46:41.92217+00 2025-10-25 00:46:41.922188+00 f t COSTO_SERVICIO 0.00 2 10470 \N +414159 2025-10-25 00:46:41.923463+00 2025-10-25 00:46:41.92347+00 f t DESCUENTO 0.00 3 10470 \N +414160 2025-10-25 00:46:41.924558+00 2025-10-25 00:46:41.924563+00 f t TOTAL 70000.00 4 10470 \N +414161 2025-10-25 00:46:41.925883+00 2025-10-25 00:46:41.925889+00 f t ADELANTO 19000.00 5 10470 \N +414167 2025-10-25 01:35:18.752301+00 2025-10-25 01:35:18.752315+00 f t SUBTOTAL 0.00 1 10471 \N +414168 2025-10-25 01:35:18.754012+00 2025-10-25 01:35:18.754022+00 f t COSTO_SERVICIO 0.00 2 10471 \N +414169 2025-10-25 01:35:18.755373+00 2025-10-25 01:35:18.755382+00 f t DESCUENTO 0.00 3 10471 \N +414170 2025-10-25 01:35:18.756864+00 2025-10-25 01:35:18.756872+00 f t TOTAL 0.00 4 10471 \N +414171 2025-10-25 01:35:18.758035+00 2025-10-25 01:35:18.758042+00 f t ADELANTO 0.00 5 10471 \N +420667 2025-10-27 18:58:34.763052+00 2025-10-27 18:58:34.763059+00 f t SUBTOTAL 23000.00 1 10628 \N +420668 2025-10-27 18:58:34.764577+00 2025-10-27 18:58:34.764583+00 f t COSTO_SERVICIO 0.00 2 10628 \N +420669 2025-10-27 18:58:34.765519+00 2025-10-27 18:58:34.765524+00 f t DESCUENTO 0.00 3 10628 \N +420670 2025-10-27 18:58:34.766871+00 2025-10-27 18:58:34.766878+00 f t TOTAL 23000.00 4 10628 \N +420671 2025-10-27 18:58:34.767879+00 2025-10-27 18:58:34.767885+00 f t ADELANTO 5500.00 5 10628 \N +414207 2025-10-25 02:16:13.507886+00 2025-10-25 02:16:13.507895+00 f t SUBTOTAL 0.00 1 10473 \N +414208 2025-10-25 02:16:13.510667+00 2025-10-25 02:16:13.510675+00 f t COSTO_SERVICIO 0.00 2 10473 \N +414209 2025-10-25 02:16:13.512984+00 2025-10-25 02:16:13.512992+00 f t DESCUENTO 0.00 3 10473 \N +414210 2025-10-25 02:16:13.514145+00 2025-10-25 02:16:13.514153+00 f t TOTAL 0.00 4 10473 \N +414211 2025-10-25 02:16:13.515394+00 2025-10-25 02:16:13.5154+00 f t ADELANTO 0.00 5 10473 \N +414237 2025-10-25 02:17:45.322069+00 2025-10-25 02:17:45.322081+00 f t SUBTOTAL 46000.00 1 10474 \N +414238 2025-10-25 02:17:45.325482+00 2025-10-25 02:17:45.325493+00 f t COSTO_SERVICIO 0.00 2 10474 \N +414239 2025-10-25 02:17:45.326889+00 2025-10-25 02:17:45.326898+00 f t DESCUENTO 0.00 3 10474 \N +414240 2025-10-25 02:17:45.328778+00 2025-10-25 02:17:45.328787+00 f t TOTAL 46000.00 4 10474 \N +414241 2025-10-25 02:17:45.330835+00 2025-10-25 02:17:45.330843+00 f t ADELANTO 11000.00 5 10474 \N +421202 2025-10-27 20:12:06.72482+00 2025-10-27 20:12:06.725252+00 f t SUBTOTAL 0.00 1 10631 \N +421203 2025-10-27 20:12:06.728403+00 2025-10-27 20:12:06.728411+00 f t COSTO_SERVICIO 0.00 2 10631 \N +414247 2025-10-25 02:57:47.535575+00 2025-10-25 02:57:47.535585+00 f t SUBTOTAL 0.00 1 10472 \N +414248 2025-10-25 02:57:47.537532+00 2025-10-25 02:57:47.537539+00 f t COSTO_SERVICIO 0.00 2 10472 \N +414249 2025-10-25 02:57:47.538624+00 2025-10-25 02:57:47.538629+00 f t DESCUENTO 0.00 3 10472 \N +414250 2025-10-25 02:57:47.539793+00 2025-10-25 02:57:47.539802+00 f t TOTAL 0.00 4 10472 \N +414251 2025-10-25 02:57:47.540972+00 2025-10-25 02:57:47.54098+00 f t ADELANTO 0.00 5 10472 \N +421204 2025-10-27 20:12:06.729804+00 2025-10-27 20:12:06.729813+00 f t DESCUENTO 0.00 3 10631 \N +421205 2025-10-27 20:12:06.731053+00 2025-10-27 20:12:06.731059+00 f t TOTAL 0.00 4 10631 \N +421206 2025-10-27 20:12:06.732379+00 2025-10-27 20:12:06.732386+00 f t ADELANTO 0.00 5 10631 \N +416232 2025-10-25 22:44:35.478833+00 2025-10-25 22:44:35.478842+00 f t SUBTOTAL 0.00 1 10521 \N +416233 2025-10-25 22:44:35.480037+00 2025-10-25 22:44:35.480042+00 f t COSTO_SERVICIO 0.00 2 10521 \N +416234 2025-10-25 22:44:35.48092+00 2025-10-25 22:44:35.480925+00 f t DESCUENTO 0.00 3 10521 \N +416235 2025-10-25 22:44:35.482003+00 2025-10-25 22:44:35.482008+00 f t TOTAL 0.00 4 10521 \N +416236 2025-10-25 22:44:35.482898+00 2025-10-25 22:44:35.482903+00 f t ADELANTO 0.00 5 10521 \N +416897 2025-10-26 03:21:45.450749+00 2025-10-26 03:21:45.45076+00 f t SUBTOTAL 0.00 1 10532 \N +416898 2025-10-26 03:21:45.452265+00 2025-10-26 03:21:45.452272+00 f t COSTO_SERVICIO 0.00 2 10532 \N +416899 2025-10-26 03:21:45.453352+00 2025-10-26 03:21:45.453357+00 f t DESCUENTO 0.00 3 10532 \N +416900 2025-10-26 03:21:45.454234+00 2025-10-26 03:21:45.454239+00 f t TOTAL 0.00 4 10532 \N +416901 2025-10-26 03:21:45.455068+00 2025-10-26 03:21:45.455073+00 f t ADELANTO 0.00 5 10532 \N +426632 2025-10-28 19:16:10.460737+00 2025-10-28 19:16:10.460751+00 f t SUBTOTAL 78000.00 1 10757 \N +426633 2025-10-28 19:16:10.462912+00 2025-10-28 19:16:10.462919+00 f t COSTO_SERVICIO 0.00 2 10757 \N +426634 2025-10-28 19:16:10.464331+00 2025-10-28 19:16:10.464339+00 f t DESCUENTO 0.00 3 10757 \N +426635 2025-10-28 19:16:10.466059+00 2025-10-28 19:16:10.466067+00 f t TOTAL 78000.00 4 10757 \N +426636 2025-10-28 19:16:10.467738+00 2025-10-28 19:16:10.467745+00 f t ADELANTO 21500.00 5 10757 \N +426922 2025-10-28 20:16:46.869973+00 2025-10-28 20:16:46.869986+00 f t SUBTOTAL 0.00 1 10766 \N +414307 2025-10-25 04:14:29.620607+00 2025-10-25 04:14:29.620616+00 f t SUBTOTAL 55000.00 1 10475 \N +414308 2025-10-25 04:14:29.622511+00 2025-10-25 04:14:29.622521+00 f t COSTO_SERVICIO 0.00 2 10475 \N +414309 2025-10-25 04:14:29.624202+00 2025-10-25 04:14:29.624211+00 f t DESCUENTO 0.00 3 10475 \N +414310 2025-10-25 04:14:29.625625+00 2025-10-25 04:14:29.625634+00 f t TOTAL 55000.00 4 10475 \N +414311 2025-10-25 04:14:29.626997+00 2025-10-25 04:14:29.627005+00 f t ADELANTO 11000.00 5 10475 \N +426923 2025-10-28 20:16:46.872379+00 2025-10-28 20:16:46.87239+00 f t COSTO_SERVICIO 0.00 2 10766 \N +426924 2025-10-28 20:16:46.873998+00 2025-10-28 20:16:46.874007+00 f t DESCUENTO 0.00 3 10766 \N +426925 2025-10-28 20:16:46.875584+00 2025-10-28 20:16:46.875593+00 f t TOTAL 0.00 4 10766 \N +426926 2025-10-28 20:16:46.877037+00 2025-10-28 20:16:46.877046+00 f t ADELANTO 0.00 5 10766 \N +427392 2025-10-28 22:03:58.585383+00 2025-10-28 22:03:58.585396+00 f t SUBTOTAL 0.00 1 10787 \N +427393 2025-10-28 22:03:58.586887+00 2025-10-28 22:03:58.586895+00 f t COSTO_SERVICIO 0.00 2 10787 \N +427394 2025-10-28 22:03:58.587985+00 2025-10-28 22:03:58.587992+00 f t DESCUENTO 0.00 3 10787 \N +427395 2025-10-28 22:03:58.5891+00 2025-10-28 22:03:58.589108+00 f t TOTAL 0.00 4 10787 \N +427396 2025-10-28 22:03:58.590304+00 2025-10-28 22:03:58.590312+00 f t ADELANTO 0.00 5 10787 \N +414352 2025-10-25 06:22:32.654391+00 2025-10-25 06:22:32.654398+00 f t SUBTOTAL 54000.00 1 10476 \N +414353 2025-10-25 06:22:32.656004+00 2025-10-25 06:22:32.65601+00 f t COSTO_SERVICIO 0.00 2 10476 \N +414354 2025-10-25 06:22:32.657108+00 2025-10-25 06:22:32.657114+00 f t DESCUENTO 0.00 3 10476 \N +414355 2025-10-25 06:22:32.658216+00 2025-10-25 06:22:32.658221+00 f t TOTAL 54000.00 4 10476 \N +414356 2025-10-25 06:22:32.659283+00 2025-10-25 06:22:32.659289+00 f t ADELANTO 13500.00 5 10476 \N +418862 2025-10-27 13:56:16.949531+00 2025-10-27 13:56:16.94954+00 f t SUBTOTAL 55000.00 1 10583 \N +418863 2025-10-27 13:56:16.951529+00 2025-10-27 13:56:16.951536+00 f t COSTO_SERVICIO 0.00 2 10583 \N +418864 2025-10-27 13:56:16.952921+00 2025-10-27 13:56:16.952927+00 f t DESCUENTO 0.00 3 10583 \N +418865 2025-10-27 13:56:16.954129+00 2025-10-27 13:56:16.954138+00 f t TOTAL 55000.00 4 10583 \N +418866 2025-10-27 13:56:16.95529+00 2025-10-27 13:56:16.955296+00 f t ADELANTO 11000.00 5 10583 \N +414392 2025-10-25 07:04:16.507564+00 2025-10-25 07:04:16.507571+00 f t SUBTOTAL 0.00 1 10395 \N +414393 2025-10-25 07:04:16.509044+00 2025-10-25 07:04:16.50905+00 f t COSTO_SERVICIO 0.00 2 10395 \N +414394 2025-10-25 07:04:16.510029+00 2025-10-25 07:04:16.510033+00 f t DESCUENTO 0.00 3 10395 \N +414395 2025-10-25 07:04:16.51108+00 2025-10-25 07:04:16.511085+00 f t TOTAL 0.00 4 10395 \N +414396 2025-10-25 07:04:16.512078+00 2025-10-25 07:04:16.512085+00 f t ADELANTO 0.00 5 10395 \N +428732 2025-10-29 01:15:53.633244+00 2025-10-29 01:15:53.633255+00 f t SUBTOTAL 0.00 1 10808 \N +428733 2025-10-29 01:15:53.634496+00 2025-10-29 01:15:53.634503+00 f t COSTO_SERVICIO 0.00 2 10808 \N +428734 2025-10-29 01:15:53.635612+00 2025-10-29 01:15:53.635619+00 f t DESCUENTO 0.00 3 10808 \N +428735 2025-10-29 01:15:53.63683+00 2025-10-29 01:15:53.636836+00 f t TOTAL 0.00 4 10808 \N +428736 2025-10-29 01:15:53.637796+00 2025-10-29 01:15:53.637801+00 f t ADELANTO 0.00 5 10808 \N +428967 2025-10-29 01:49:28.672174+00 2025-10-29 01:49:28.672182+00 f t SUBTOTAL 46000.00 1 10813 \N +414427 2025-10-25 07:29:33.197886+00 2025-10-25 07:29:33.197897+00 f t SUBTOTAL 55000.00 1 10477 \N +414428 2025-10-25 07:29:33.199656+00 2025-10-25 07:29:33.199666+00 f t COSTO_SERVICIO 0.00 2 10477 \N +414429 2025-10-25 07:29:33.20095+00 2025-10-25 07:29:33.200958+00 f t DESCUENTO 0.00 3 10477 \N +414430 2025-10-25 07:29:33.20202+00 2025-10-25 07:29:33.20203+00 f t TOTAL 55000.00 4 10477 \N +414431 2025-10-25 07:29:33.203164+00 2025-10-25 07:29:33.203172+00 f t ADELANTO 11000.00 5 10477 \N +428968 2025-10-29 01:49:28.67398+00 2025-10-29 01:49:28.673987+00 f t COSTO_SERVICIO 0.00 2 10813 \N +428969 2025-10-29 01:49:28.67527+00 2025-10-29 01:49:28.675279+00 f t DESCUENTO 0.00 3 10813 \N +428970 2025-10-29 01:49:28.677481+00 2025-10-29 01:49:28.677487+00 f t TOTAL 46000.00 4 10813 \N +428971 2025-10-29 01:49:28.678554+00 2025-10-29 01:49:28.67856+00 f t ADELANTO 11000.00 5 10813 \N +414457 2025-10-25 08:36:50.6258+00 2025-10-25 08:36:50.625808+00 f t SUBTOTAL 55000.00 1 10478 \N +414458 2025-10-25 08:36:50.627534+00 2025-10-25 08:36:50.62754+00 f t COSTO_SERVICIO 0.00 2 10478 \N +414459 2025-10-25 08:36:50.628552+00 2025-10-25 08:36:50.628557+00 f t DESCUENTO 0.00 3 10478 \N +414460 2025-10-25 08:36:50.629481+00 2025-10-25 08:36:50.629486+00 f t TOTAL 55000.00 4 10478 \N +414461 2025-10-25 08:36:50.630424+00 2025-10-25 08:36:50.630429+00 f t ADELANTO 11000.00 5 10478 \N +414532 2025-10-25 08:55:50.835293+00 2025-10-25 08:55:50.835305+00 f t SUBTOTAL 55000.00 1 10479 \N +414533 2025-10-25 08:55:50.837175+00 2025-10-25 08:55:50.837185+00 f t COSTO_SERVICIO 0.00 2 10479 \N +414534 2025-10-25 08:55:50.838576+00 2025-10-25 08:55:50.838586+00 f t DESCUENTO 0.00 3 10479 \N +414535 2025-10-25 08:55:50.839998+00 2025-10-25 08:55:50.840007+00 f t TOTAL 55000.00 4 10479 \N +414536 2025-10-25 08:55:50.841357+00 2025-10-25 08:55:50.841365+00 f t ADELANTO 11000.00 5 10479 \N +421257 2025-10-27 20:36:17.065787+00 2025-10-27 20:36:17.065795+00 f t SUBTOTAL 34000.00 1 10634 \N +414542 2025-10-25 10:07:21.88706+00 2025-10-25 10:07:21.887069+00 f t SUBTOTAL 0.00 1 10480 \N +414543 2025-10-25 10:07:21.888529+00 2025-10-25 10:07:21.888537+00 f t COSTO_SERVICIO 0.00 2 10480 \N +414544 2025-10-25 10:07:21.889876+00 2025-10-25 10:07:21.889883+00 f t DESCUENTO 0.00 3 10480 \N +414545 2025-10-25 10:07:21.891099+00 2025-10-25 10:07:21.891106+00 f t TOTAL 0.00 4 10480 \N +414546 2025-10-25 10:07:21.892541+00 2025-10-25 10:07:21.892547+00 f t ADELANTO 0.00 5 10480 \N +421258 2025-10-27 20:36:17.067542+00 2025-10-27 20:36:17.067549+00 f t COSTO_SERVICIO 0.00 2 10634 \N +421259 2025-10-27 20:36:17.069027+00 2025-10-27 20:36:17.069034+00 f t DESCUENTO 0.00 3 10634 \N +421260 2025-10-27 20:36:17.070227+00 2025-10-27 20:36:17.070233+00 f t TOTAL 34000.00 4 10634 \N +421261 2025-10-27 20:36:17.071331+00 2025-10-27 20:36:17.071336+00 f t ADELANTO 34000.00 5 10634 \N +425847 2025-10-28 16:40:31.227275+00 2025-10-28 16:40:31.227284+00 f t SUBTOTAL 78000.00 1 10738 \N +425848 2025-10-28 16:40:31.229286+00 2025-10-28 16:40:31.229292+00 f t COSTO_SERVICIO 0.00 2 10738 \N +425849 2025-10-28 16:40:31.23066+00 2025-10-28 16:40:31.230669+00 f t DESCUENTO 0.00 3 10738 \N +425850 2025-10-28 16:40:31.231835+00 2025-10-28 16:40:31.231841+00 f t TOTAL 78000.00 4 10738 \N +425851 2025-10-28 16:40:31.232966+00 2025-10-28 16:40:31.232972+00 f t ADELANTO 21500.00 5 10738 \N +416422 2025-10-25 23:00:59.441421+00 2025-10-25 23:00:59.44143+00 f t SUBTOTAL 55000.00 1 10522 \N +416423 2025-10-25 23:00:59.443116+00 2025-10-25 23:00:59.443124+00 f t COSTO_SERVICIO 0.00 2 10522 \N +416424 2025-10-25 23:00:59.444515+00 2025-10-25 23:00:59.444522+00 f t DESCUENTO 0.00 3 10522 \N +416425 2025-10-25 23:00:59.445879+00 2025-10-25 23:00:59.445885+00 f t TOTAL 55000.00 4 10522 \N +416426 2025-10-25 23:00:59.44697+00 2025-10-25 23:00:59.446977+00 f t ADELANTO 11000.00 5 10522 \N +467297 2025-11-08 00:58:19.556104+00 2025-11-08 00:58:19.556111+00 f t SUBTOTAL 212950.00 1 11714 \N +467298 2025-11-08 00:58:19.557947+00 2025-11-08 00:58:19.557952+00 f t COSTO_SERVICIO 0.00 2 11714 \N +467299 2025-11-08 00:58:19.55929+00 2025-11-08 00:58:19.559296+00 f t DESCUENTO 0.00 3 11714 \N +467300 2025-11-08 00:58:19.560582+00 2025-11-08 00:58:19.560587+00 f t TOTAL 212950.00 4 11714 \N +467301 2025-11-08 00:58:19.56164+00 2025-11-08 00:58:19.561645+00 f t ADELANTO 92950.00 5 11714 \N +436742 2025-10-30 16:59:58.666529+00 2025-10-30 16:59:58.666538+00 f t SUBTOTAL 0.00 1 10989 \N +436743 2025-10-30 16:59:58.66836+00 2025-10-30 16:59:58.668365+00 f t COSTO_SERVICIO 0.00 2 10989 \N +436744 2025-10-30 16:59:58.669684+00 2025-10-30 16:59:58.669689+00 f t DESCUENTO 0.00 3 10989 \N +414587 2025-10-25 11:19:19.224886+00 2025-10-25 11:19:19.224894+00 f t SUBTOTAL 55000.00 1 10481 \N +414588 2025-10-25 11:19:19.226562+00 2025-10-25 11:19:19.226568+00 f t COSTO_SERVICIO 0.00 2 10481 \N +414589 2025-10-25 11:19:19.227919+00 2025-10-25 11:19:19.227925+00 f t DESCUENTO 0.00 3 10481 \N +414590 2025-10-25 11:19:19.228968+00 2025-10-25 11:19:19.228973+00 f t TOTAL 55000.00 4 10481 \N +414591 2025-10-25 11:19:19.229881+00 2025-10-25 11:19:19.229885+00 f t ADELANTO 11000.00 5 10481 \N +436745 2025-10-30 16:59:58.670853+00 2025-10-30 16:59:58.670858+00 f t TOTAL 0.00 4 10989 \N +436746 2025-10-30 16:59:58.671739+00 2025-10-30 16:59:58.671744+00 f t ADELANTO 0.00 5 10989 \N +446836 2025-11-02 12:57:19.573499+00 2025-11-02 12:57:19.573504+00 f t ADELANTO 22000.00 5 11240 \N +414602 2025-10-25 12:17:36.359342+00 2025-10-25 12:17:36.359349+00 f t SUBTOTAL 55000.00 1 10482 \N +414603 2025-10-25 12:17:36.361117+00 2025-10-25 12:17:36.361124+00 f t COSTO_SERVICIO 0.00 2 10482 \N +414604 2025-10-25 12:17:36.362462+00 2025-10-25 12:17:36.362468+00 f t DESCUENTO 0.00 3 10482 \N +414605 2025-10-25 12:17:36.363576+00 2025-10-25 12:17:36.363581+00 f t TOTAL 55000.00 4 10482 \N +414606 2025-10-25 12:17:36.364558+00 2025-10-25 12:17:36.364564+00 f t ADELANTO 11000.00 5 10482 \N +418272 2025-10-26 20:13:45.416596+00 2025-10-26 20:13:45.416603+00 f t SUBTOTAL 55000.00 1 10565 \N +418273 2025-10-26 20:13:45.418263+00 2025-10-26 20:13:45.41827+00 f t COSTO_SERVICIO 0.00 2 10565 \N +418274 2025-10-26 20:13:45.419361+00 2025-10-26 20:13:45.419366+00 f t DESCUENTO 0.00 3 10565 \N +418275 2025-10-26 20:13:45.420376+00 2025-10-26 20:13:45.420381+00 f t TOTAL 55000.00 4 10565 \N +418276 2025-10-26 20:13:45.421273+00 2025-10-26 20:13:45.421278+00 f t ADELANTO 11000.00 5 10565 \N +438112 2025-10-30 23:35:17.435547+00 2025-10-30 23:35:17.435553+00 f t SUBTOTAL 66000.00 1 11021 \N +438113 2025-10-30 23:35:17.437255+00 2025-10-30 23:35:17.43726+00 f t COSTO_SERVICIO 0.00 2 11021 \N +438114 2025-10-30 23:35:17.438352+00 2025-10-30 23:35:17.438357+00 f t DESCUENTO 0.00 3 11021 \N +438115 2025-10-30 23:35:17.439353+00 2025-10-30 23:35:17.439358+00 f t TOTAL 66000.00 4 11021 \N +438116 2025-10-30 23:35:17.440314+00 2025-10-30 23:35:17.440319+00 f t ADELANTO 11000.00 5 11021 \N +418867 2025-10-27 13:56:47.826078+00 2025-10-27 13:56:47.826085+00 f t SUBTOTAL 72500.00 1 10581 \N +418868 2025-10-27 13:56:47.827718+00 2025-10-27 13:56:47.827724+00 f t COSTO_SERVICIO 0.00 2 10581 \N +418869 2025-10-27 13:56:47.828925+00 2025-10-27 13:56:47.828931+00 f t DESCUENTO 0.00 3 10581 \N +418870 2025-10-27 13:56:47.830196+00 2025-10-27 13:56:47.830201+00 f t TOTAL 72500.00 4 10581 \N +418871 2025-10-27 13:56:47.831273+00 2025-10-27 13:56:47.831279+00 f t ADELANTO 72500.00 5 10581 \N +414677 2025-10-25 12:39:54.458123+00 2025-10-25 12:39:54.458135+00 f t SUBTOTAL 0.00 1 10483 \N +414678 2025-10-25 12:39:54.460002+00 2025-10-25 12:39:54.460011+00 f t COSTO_SERVICIO 0.00 2 10483 \N +414679 2025-10-25 12:39:54.461171+00 2025-10-25 12:39:54.461179+00 f t DESCUENTO 0.00 3 10483 \N +414680 2025-10-25 12:39:54.462315+00 2025-10-25 12:39:54.46232+00 f t TOTAL 0.00 4 10483 \N +414681 2025-10-25 12:39:54.463251+00 2025-10-25 12:39:54.463257+00 f t ADELANTO 0.00 5 10483 \N +438687 2025-10-31 02:18:09.891008+00 2025-10-31 02:18:09.891016+00 f t SUBTOTAL 60000.00 1 11035 \N +438688 2025-10-31 02:18:09.893315+00 2025-10-31 02:18:09.893321+00 f t COSTO_SERVICIO 0.00 2 11035 \N +438689 2025-10-31 02:18:09.894658+00 2025-10-31 02:18:09.894666+00 f t DESCUENTO 0.00 3 11035 \N +414687 2025-10-25 12:49:47.438227+00 2025-10-25 12:49:47.438237+00 f t SUBTOTAL 0.00 1 10484 \N +414688 2025-10-25 12:49:47.439418+00 2025-10-25 12:49:47.439423+00 f t COSTO_SERVICIO 0.00 2 10484 \N +414689 2025-10-25 12:49:47.440308+00 2025-10-25 12:49:47.440313+00 f t DESCUENTO 0.00 3 10484 \N +414690 2025-10-25 12:49:47.441312+00 2025-10-25 12:49:47.441317+00 f t TOTAL 0.00 4 10484 \N +414691 2025-10-25 12:49:47.442418+00 2025-10-25 12:49:47.442424+00 f t ADELANTO 0.00 5 10484 \N +438690 2025-10-31 02:18:09.896058+00 2025-10-31 02:18:09.896063+00 f t TOTAL 60000.00 4 11035 \N +438691 2025-10-31 02:18:09.897183+00 2025-10-31 02:18:09.897188+00 f t ADELANTO 50000.00 5 11035 \N +438947 2025-10-31 02:39:21.2538+00 2025-10-31 02:39:21.253808+00 f t SUBTOTAL 55000.00 1 11042 \N +438948 2025-10-31 02:39:21.255648+00 2025-10-31 02:39:21.255655+00 f t COSTO_SERVICIO 0.00 2 11042 \N +438949 2025-10-31 02:39:21.256795+00 2025-10-31 02:39:21.256801+00 f t DESCUENTO 0.00 3 11042 \N +438950 2025-10-31 02:39:21.257706+00 2025-10-31 02:39:21.257711+00 f t TOTAL 55000.00 4 11042 \N +438951 2025-10-31 02:39:21.258597+00 2025-10-31 02:39:21.258602+00 f t ADELANTO 11000.00 5 11042 \N +420267 2025-10-27 18:01:38.844275+00 2025-10-27 18:01:38.844288+00 f t SUBTOTAL 0.00 1 10618 \N +420268 2025-10-27 18:01:38.846492+00 2025-10-27 18:01:38.846503+00 f t COSTO_SERVICIO 0.00 2 10618 \N +420269 2025-10-27 18:01:38.848033+00 2025-10-27 18:01:38.848042+00 f t DESCUENTO 0.00 3 10618 \N +420270 2025-10-27 18:01:38.849349+00 2025-10-27 18:01:38.849356+00 f t TOTAL 0.00 4 10618 \N +420271 2025-10-27 18:01:38.850647+00 2025-10-27 18:01:38.850656+00 f t ADELANTO 0.00 5 10618 \N +429742 2025-10-29 05:02:43.532659+00 2025-10-29 05:02:43.532668+00 f t SUBTOTAL 0.00 1 10823 \N +429743 2025-10-29 05:02:43.534307+00 2025-10-29 05:02:43.534313+00 f t COSTO_SERVICIO 0.00 2 10823 \N +429744 2025-10-29 05:02:43.535358+00 2025-10-29 05:02:43.535362+00 f t DESCUENTO 0.00 3 10823 \N +429745 2025-10-29 05:02:43.536338+00 2025-10-29 05:02:43.536343+00 f t TOTAL 0.00 4 10823 \N +429746 2025-10-29 05:02:43.537544+00 2025-10-29 05:02:43.53755+00 f t ADELANTO 0.00 5 10823 \N +414782 2025-10-25 12:53:26.3977+00 2025-10-25 12:53:26.397712+00 f t SUBTOTAL 80000.00 1 10485 \N +414783 2025-10-25 12:53:26.399419+00 2025-10-25 12:53:26.399426+00 f t COSTO_SERVICIO 0.00 2 10485 \N +414784 2025-10-25 12:53:26.400601+00 2025-10-25 12:53:26.400607+00 f t DESCUENTO 0.00 3 10485 \N +414785 2025-10-25 12:53:26.401834+00 2025-10-25 12:53:26.401839+00 f t TOTAL 80000.00 4 10485 \N +414786 2025-10-25 12:53:26.40323+00 2025-10-25 12:53:26.403239+00 f t ADELANTO 12000.00 5 10485 \N +457072 2025-11-05 17:42:18.320578+00 2025-11-05 17:42:18.320584+00 f t SUBTOTAL 127500.00 1 11478 \N +457073 2025-11-05 17:42:18.322261+00 2025-11-05 17:42:18.322267+00 f t COSTO_SERVICIO 0.00 2 11478 \N +457074 2025-11-05 17:42:18.323336+00 2025-11-05 17:42:18.323341+00 f t DESCUENTO 0.00 3 11478 \N +457075 2025-11-05 17:42:18.32435+00 2025-11-05 17:42:18.324355+00 f t TOTAL 127500.00 4 11478 \N +457076 2025-11-05 17:42:18.325189+00 2025-11-05 17:42:18.325194+00 f t ADELANTO 27500.00 5 11478 \N +417062 2025-10-26 11:36:05.043829+00 2025-10-26 11:36:05.043839+00 f t SUBTOTAL 0.00 1 10535 \N +417063 2025-10-26 11:36:05.045796+00 2025-10-26 11:36:05.045805+00 f t COSTO_SERVICIO 0.00 2 10535 \N +417064 2025-10-26 11:36:05.047523+00 2025-10-26 11:36:05.047533+00 f t DESCUENTO 0.00 3 10535 \N +417065 2025-10-26 11:36:05.048992+00 2025-10-26 11:36:05.048998+00 f t TOTAL 0.00 4 10535 \N +417066 2025-10-26 11:36:05.050251+00 2025-10-26 11:36:05.050257+00 f t ADELANTO 0.00 5 10535 \N +414897 2025-10-25 13:25:02.277024+00 2025-10-25 13:25:02.277037+00 f t SUBTOTAL 0.00 1 10487 \N +414898 2025-10-25 13:25:02.280449+00 2025-10-25 13:25:02.280464+00 f t COSTO_SERVICIO 0.00 2 10487 \N +414899 2025-10-25 13:25:02.283517+00 2025-10-25 13:25:02.28353+00 f t DESCUENTO 0.00 3 10487 \N +414900 2025-10-25 13:25:02.286478+00 2025-10-25 13:25:02.286491+00 f t TOTAL 0.00 4 10487 \N +414901 2025-10-25 13:25:02.289031+00 2025-10-25 13:25:02.289046+00 f t ADELANTO 0.00 5 10487 \N +414912 2025-10-25 13:39:11.104857+00 2025-10-25 13:39:11.104865+00 f t SUBTOTAL 78000.00 1 10488 \N +414913 2025-10-25 13:39:11.106335+00 2025-10-25 13:39:11.106341+00 f t COSTO_SERVICIO 0.00 2 10488 \N +414914 2025-10-25 13:39:11.107816+00 2025-10-25 13:39:11.107823+00 f t DESCUENTO 0.00 3 10488 \N +414915 2025-10-25 13:39:11.109107+00 2025-10-25 13:39:11.109112+00 f t TOTAL 78000.00 4 10488 \N +414916 2025-10-25 13:39:11.110286+00 2025-10-25 13:39:11.110291+00 f t ADELANTO 13000.00 5 10488 \N +414932 2025-10-25 13:40:55.943876+00 2025-10-25 13:40:55.943885+00 f t SUBTOTAL 36200.00 1 10489 \N +414933 2025-10-25 13:40:55.945415+00 2025-10-25 13:40:55.945421+00 f t COSTO_SERVICIO 0.00 2 10489 \N +414934 2025-10-25 13:40:55.946527+00 2025-10-25 13:40:55.946533+00 f t DESCUENTO 0.00 3 10489 \N +414935 2025-10-25 13:40:55.947685+00 2025-10-25 13:40:55.94769+00 f t TOTAL 36200.00 4 10489 \N +414936 2025-10-25 13:40:55.948681+00 2025-10-25 13:40:55.948686+00 f t ADELANTO 18700.00 5 10489 \N +414947 2025-10-25 13:42:37.122061+00 2025-10-25 13:42:37.122069+00 f t SUBTOTAL 13200.00 1 10490 \N +414948 2025-10-25 13:42:37.12391+00 2025-10-25 13:42:37.123916+00 f t COSTO_SERVICIO 0.00 2 10490 \N +414949 2025-10-25 13:42:37.125141+00 2025-10-25 13:42:37.125147+00 f t DESCUENTO 0.00 3 10490 \N +414950 2025-10-25 13:42:37.126996+00 2025-10-25 13:42:37.127003+00 f t TOTAL 13200.00 4 10490 \N +414951 2025-10-25 13:42:37.128136+00 2025-10-25 13:42:37.128142+00 f t ADELANTO 13200.00 5 10490 \N +418637 2025-10-27 12:34:08.722057+00 2025-10-27 12:34:08.722064+00 f t SUBTOTAL 68000.00 1 10576 \N +418638 2025-10-27 12:34:08.723855+00 2025-10-27 12:34:08.723861+00 f t COSTO_SERVICIO 0.00 2 10576 \N +418639 2025-10-27 12:34:08.724929+00 2025-10-27 12:34:08.724934+00 f t DESCUENTO 0.00 3 10576 \N +418640 2025-10-27 12:34:08.726032+00 2025-10-27 12:34:08.726038+00 f t TOTAL 68000.00 4 10576 \N +418641 2025-10-27 12:34:08.727239+00 2025-10-27 12:34:08.727244+00 f t ADELANTO 13000.00 5 10576 \N +418767 2025-10-27 13:50:57.879705+00 2025-10-27 13:50:57.879714+00 f t SUBTOTAL 46000.00 1 10582 \N +418768 2025-10-27 13:50:57.881915+00 2025-10-27 13:50:57.881925+00 f t COSTO_SERVICIO 0.00 2 10582 \N +418769 2025-10-27 13:50:57.883387+00 2025-10-27 13:50:57.883393+00 f t DESCUENTO 0.00 3 10582 \N +418770 2025-10-27 13:50:57.884816+00 2025-10-27 13:50:57.884823+00 f t TOTAL 46000.00 4 10582 \N +418771 2025-10-27 13:50:57.885936+00 2025-10-27 13:50:57.885941+00 f t ADELANTO 11000.00 5 10582 \N +415032 2025-10-25 13:44:40.167254+00 2025-10-25 13:44:40.167261+00 f t SUBTOTAL 55000.00 1 10491 \N +415033 2025-10-25 13:44:40.168658+00 2025-10-25 13:44:40.168664+00 f t COSTO_SERVICIO 0.00 2 10491 \N +415034 2025-10-25 13:44:40.169591+00 2025-10-25 13:44:40.169596+00 f t DESCUENTO 0.00 3 10491 \N +415035 2025-10-25 13:44:40.17055+00 2025-10-25 13:44:40.170556+00 f t TOTAL 55000.00 4 10491 \N +415036 2025-10-25 13:44:40.171513+00 2025-10-25 13:44:40.171518+00 f t ADELANTO 11000.00 5 10491 \N +415047 2025-10-25 13:45:05.286761+00 2025-10-25 13:45:05.286773+00 f t SUBTOTAL 55000.00 1 10492 \N +415048 2025-10-25 13:45:05.289952+00 2025-10-25 13:45:05.289965+00 f t COSTO_SERVICIO 0.00 2 10492 \N +415049 2025-10-25 13:45:05.292665+00 2025-10-25 13:45:05.292676+00 f t DESCUENTO 0.00 3 10492 \N +415050 2025-10-25 13:45:05.295111+00 2025-10-25 13:45:05.295123+00 f t TOTAL 55000.00 4 10492 \N +415051 2025-10-25 13:45:05.298489+00 2025-10-25 13:45:05.298503+00 f t ADELANTO 11000.00 5 10492 \N +420052 2025-10-27 17:09:57.179488+00 2025-10-27 17:09:57.179495+00 f t SUBTOTAL 100900.00 1 10608 \N +420053 2025-10-27 17:09:57.181311+00 2025-10-27 17:09:57.181317+00 f t COSTO_SERVICIO 0.00 2 10608 \N +420054 2025-10-27 17:09:57.182467+00 2025-10-27 17:09:57.182473+00 f t DESCUENTO 0.00 3 10608 \N +420055 2025-10-27 17:09:57.183458+00 2025-10-27 17:09:57.183463+00 f t TOTAL 100900.00 4 10608 \N +415057 2025-10-25 14:01:13.362484+00 2025-10-25 14:01:13.362492+00 f t SUBTOTAL 0.00 1 10493 \N +415058 2025-10-25 14:01:13.364197+00 2025-10-25 14:01:13.364206+00 f t COSTO_SERVICIO 0.00 2 10493 \N +415059 2025-10-25 14:01:13.365564+00 2025-10-25 14:01:13.365571+00 f t DESCUENTO 0.00 3 10493 \N +415060 2025-10-25 14:01:13.366774+00 2025-10-25 14:01:13.36678+00 f t TOTAL 0.00 4 10493 \N +415061 2025-10-25 14:01:13.367877+00 2025-10-25 14:01:13.367882+00 f t ADELANTO 0.00 5 10493 \N +420056 2025-10-27 17:09:57.184412+00 2025-10-27 17:09:57.184417+00 f t ADELANTO 60400.00 5 10608 \N +415077 2025-10-25 14:02:45.600558+00 2025-10-25 14:02:45.600565+00 f t SUBTOTAL 107000.00 1 10486 \N +415078 2025-10-25 14:02:45.602065+00 2025-10-25 14:02:45.602072+00 f t COSTO_SERVICIO 0.00 2 10486 \N +415079 2025-10-25 14:02:45.603444+00 2025-10-25 14:02:45.603451+00 f t DESCUENTO 0.00 3 10486 \N +415080 2025-10-25 14:02:45.604566+00 2025-10-25 14:02:45.604572+00 f t TOTAL 107000.00 4 10486 \N +415081 2025-10-25 14:02:45.60557+00 2025-10-25 14:02:45.605576+00 f t ADELANTO 12000.00 5 10486 \N +415087 2025-10-25 14:03:28.770218+00 2025-10-25 14:03:28.770227+00 f t SUBTOTAL 0.00 1 10494 \N +415088 2025-10-25 14:03:28.771584+00 2025-10-25 14:03:28.771591+00 f t COSTO_SERVICIO 0.00 2 10494 \N +415089 2025-10-25 14:03:28.772632+00 2025-10-25 14:03:28.772637+00 f t DESCUENTO 0.00 3 10494 \N +415090 2025-10-25 14:03:28.774084+00 2025-10-25 14:03:28.77409+00 f t TOTAL 0.00 4 10494 \N +415091 2025-10-25 14:03:28.775475+00 2025-10-25 14:03:28.77548+00 f t ADELANTO 0.00 5 10494 \N +420592 2025-10-27 18:48:04.33453+00 2025-10-27 18:48:04.334541+00 f t SUBTOTAL 0.00 1 10626 \N +420593 2025-10-27 18:48:04.336411+00 2025-10-27 18:48:04.33642+00 f t COSTO_SERVICIO 0.00 2 10626 \N +420594 2025-10-27 18:48:04.338185+00 2025-10-27 18:48:04.338194+00 f t DESCUENTO 0.00 3 10626 \N +420595 2025-10-27 18:48:04.340343+00 2025-10-27 18:48:04.340355+00 f t TOTAL 0.00 4 10626 \N +420596 2025-10-27 18:48:04.342144+00 2025-10-27 18:48:04.342152+00 f t ADELANTO 0.00 5 10626 \N +420687 2025-10-27 19:12:47.611895+00 2025-10-27 19:12:47.611905+00 f t SUBTOTAL 78000.00 1 10629 \N +420688 2025-10-27 19:12:47.613925+00 2025-10-27 19:12:47.613931+00 f t COSTO_SERVICIO 0.00 2 10629 \N +420689 2025-10-27 19:12:47.615157+00 2025-10-27 19:12:47.615163+00 f t DESCUENTO 0.00 3 10629 \N +420690 2025-10-27 19:12:47.61621+00 2025-10-27 19:12:47.616215+00 f t TOTAL 78000.00 4 10629 \N +420691 2025-10-27 19:12:47.61724+00 2025-10-27 19:12:47.617246+00 f t ADELANTO 21500.00 5 10629 \N +415137 2025-10-25 14:24:44.830622+00 2025-10-25 14:24:44.83063+00 f t SUBTOTAL 46000.00 1 10495 \N +415138 2025-10-25 14:24:44.832298+00 2025-10-25 14:24:44.832306+00 f t COSTO_SERVICIO 0.00 2 10495 \N +415139 2025-10-25 14:24:44.833479+00 2025-10-25 14:24:44.833485+00 f t DESCUENTO 0.00 3 10495 \N +415140 2025-10-25 14:24:44.834663+00 2025-10-25 14:24:44.834669+00 f t TOTAL 46000.00 4 10495 \N +415141 2025-10-25 14:24:44.83605+00 2025-10-25 14:24:44.836056+00 f t ADELANTO 11000.00 5 10495 \N +416602 2025-10-25 23:29:58.526368+00 2025-10-25 23:29:58.526376+00 f t SUBTOTAL 55000.00 1 10525 \N +416603 2025-10-25 23:29:58.528408+00 2025-10-25 23:29:58.528414+00 f t COSTO_SERVICIO 0.00 2 10525 \N +416604 2025-10-25 23:29:58.529864+00 2025-10-25 23:29:58.529871+00 f t DESCUENTO 0.00 3 10525 \N +416605 2025-10-25 23:29:58.531256+00 2025-10-25 23:29:58.531262+00 f t TOTAL 55000.00 4 10525 \N +416606 2025-10-25 23:29:58.532663+00 2025-10-25 23:29:58.532669+00 f t ADELANTO 11000.00 5 10525 \N +416772 2025-10-26 01:33:03.708029+00 2025-10-26 01:33:03.708036+00 f t SUBTOTAL 54000.00 1 10530 \N +416773 2025-10-26 01:33:03.70965+00 2025-10-26 01:33:03.709656+00 f t COSTO_SERVICIO 0.00 2 10530 \N +416774 2025-10-26 01:33:03.710931+00 2025-10-26 01:33:03.710937+00 f t DESCUENTO 0.00 3 10530 \N +416775 2025-10-26 01:33:03.712134+00 2025-10-26 01:33:03.71214+00 f t TOTAL 54000.00 4 10530 \N +416776 2025-10-26 01:33:03.713217+00 2025-10-26 01:33:03.713222+00 f t ADELANTO 13500.00 5 10530 \N +417072 2025-10-26 13:15:45.920732+00 2025-10-26 13:15:45.920741+00 f t SUBTOTAL 0.00 1 10536 \N +417073 2025-10-26 13:15:45.922122+00 2025-10-26 13:15:45.922129+00 f t COSTO_SERVICIO 0.00 2 10536 \N +417074 2025-10-26 13:15:45.923288+00 2025-10-26 13:15:45.923294+00 f t DESCUENTO 0.00 3 10536 \N +417075 2025-10-26 13:15:45.924272+00 2025-10-26 13:15:45.924278+00 f t TOTAL 0.00 4 10536 \N +417076 2025-10-26 13:15:45.925203+00 2025-10-26 13:15:45.925208+00 f t ADELANTO 0.00 5 10536 \N +426937 2025-10-28 20:20:04.636035+00 2025-10-28 20:20:04.63605+00 f t SUBTOTAL 78000.00 1 10767 \N +426938 2025-10-28 20:20:04.639378+00 2025-10-28 20:20:04.639393+00 f t COSTO_SERVICIO 0.00 2 10767 \N +426939 2025-10-28 20:20:04.641895+00 2025-10-28 20:20:04.641911+00 f t DESCUENTO 0.00 3 10767 \N +426940 2025-10-28 20:20:04.644263+00 2025-10-28 20:20:04.644278+00 f t TOTAL 78000.00 4 10767 \N +426941 2025-10-28 20:20:04.646567+00 2025-10-28 20:20:04.646582+00 f t ADELANTO 13000.00 5 10767 \N +417477 2025-10-26 16:19:23.792129+00 2025-10-26 16:19:23.792136+00 f t SUBTOTAL 55000.00 1 10545 \N +417478 2025-10-26 16:19:23.793944+00 2025-10-26 16:19:23.793949+00 f t COSTO_SERVICIO 0.00 2 10545 \N +417479 2025-10-26 16:19:23.795032+00 2025-10-26 16:19:23.795037+00 f t DESCUENTO 0.00 3 10545 \N +417480 2025-10-26 16:19:23.796185+00 2025-10-26 16:19:23.79619+00 f t TOTAL 55000.00 4 10545 \N +417481 2025-10-26 16:19:23.797231+00 2025-10-26 16:19:23.797236+00 f t ADELANTO 11000.00 5 10545 \N +415202 2025-10-25 14:37:39.182708+00 2025-10-25 14:37:39.182717+00 f t SUBTOTAL 0.00 1 10496 \N +415203 2025-10-25 14:37:39.184383+00 2025-10-25 14:37:39.18439+00 f t COSTO_SERVICIO 0.00 2 10496 \N +415204 2025-10-25 14:37:39.18576+00 2025-10-25 14:37:39.185767+00 f t DESCUENTO 0.00 3 10496 \N +415205 2025-10-25 14:37:39.188334+00 2025-10-25 14:37:39.18834+00 f t TOTAL 0.00 4 10496 \N +415206 2025-10-25 14:37:39.189355+00 2025-10-25 14:37:39.18936+00 f t ADELANTO 0.00 5 10496 \N +415217 2025-10-25 14:48:48.707758+00 2025-10-25 14:48:48.707766+00 f t SUBTOTAL 13200.00 1 10497 \N +415218 2025-10-25 14:48:48.709323+00 2025-10-25 14:48:48.709331+00 f t COSTO_SERVICIO 0.00 2 10497 \N +415219 2025-10-25 14:48:48.710518+00 2025-10-25 14:48:48.710524+00 f t DESCUENTO 0.00 3 10497 \N +415220 2025-10-25 14:48:48.71149+00 2025-10-25 14:48:48.711495+00 f t TOTAL 13200.00 4 10497 \N +415221 2025-10-25 14:48:48.712418+00 2025-10-25 14:48:48.712423+00 f t ADELANTO 13200.00 5 10497 \N +418012 2025-10-26 18:24:00.945714+00 2025-10-26 18:24:00.945723+00 f t SUBTOTAL 0.00 1 10556 \N +418013 2025-10-26 18:24:00.947256+00 2025-10-26 18:24:00.947264+00 f t COSTO_SERVICIO 0.00 2 10556 \N +418014 2025-10-26 18:24:00.948388+00 2025-10-26 18:24:00.948393+00 f t DESCUENTO 0.00 3 10556 \N +418015 2025-10-26 18:24:00.94935+00 2025-10-26 18:24:00.949355+00 f t TOTAL 0.00 4 10556 \N +418016 2025-10-26 18:24:00.95047+00 2025-10-26 18:24:00.950477+00 f t ADELANTO 0.00 5 10556 \N +415272 2025-10-25 14:55:39.513184+00 2025-10-25 14:55:39.513193+00 f t SUBTOTAL 0.00 1 10498 \N +415273 2025-10-25 14:55:39.516566+00 2025-10-25 14:55:39.516574+00 f t COSTO_SERVICIO 0.00 2 10498 \N +415274 2025-10-25 14:55:39.517683+00 2025-10-25 14:55:39.51769+00 f t DESCUENTO 0.00 3 10498 \N +415275 2025-10-25 14:55:39.518799+00 2025-10-25 14:55:39.518807+00 f t TOTAL 0.00 4 10498 \N +415276 2025-10-25 14:55:39.519817+00 2025-10-25 14:55:39.519822+00 f t ADELANTO 0.00 5 10498 \N +415282 2025-10-25 14:55:51.66481+00 2025-10-25 14:55:51.664817+00 f t SUBTOTAL 46000.00 1 10499 \N +415283 2025-10-25 14:55:51.666309+00 2025-10-25 14:55:51.666315+00 f t COSTO_SERVICIO 0.00 2 10499 \N +415284 2025-10-25 14:55:51.667367+00 2025-10-25 14:55:51.667372+00 f t DESCUENTO 0.00 3 10499 \N +415285 2025-10-25 14:55:51.66851+00 2025-10-25 14:55:51.668518+00 f t TOTAL 46000.00 4 10499 \N +415286 2025-10-25 14:55:51.669474+00 2025-10-25 14:55:51.669479+00 f t ADELANTO 11000.00 5 10499 \N +418997 2025-10-27 14:18:40.082197+00 2025-10-27 14:18:40.082204+00 f t SUBTOTAL 70000.00 1 10586 \N +418998 2025-10-27 14:18:40.083771+00 2025-10-27 14:18:40.083776+00 f t COSTO_SERVICIO 0.00 2 10586 \N +418999 2025-10-27 14:18:40.084889+00 2025-10-27 14:18:40.084894+00 f t DESCUENTO 0.00 3 10586 \N +419000 2025-10-27 14:18:40.085955+00 2025-10-27 14:18:40.08596+00 f t TOTAL 70000.00 4 10586 \N +419001 2025-10-27 14:18:40.086928+00 2025-10-27 14:18:40.086933+00 f t ADELANTO 19000.00 5 10586 \N +419432 2025-10-27 15:11:43.814801+00 2025-10-27 15:11:43.81481+00 f t SUBTOTAL 46000.00 1 10596 \N +419433 2025-10-27 15:11:43.81715+00 2025-10-27 15:11:43.817159+00 f t COSTO_SERVICIO 0.00 2 10596 \N +419434 2025-10-27 15:11:43.818607+00 2025-10-27 15:11:43.818613+00 f t DESCUENTO 0.00 3 10596 \N +419435 2025-10-27 15:11:43.820017+00 2025-10-27 15:11:43.820023+00 f t TOTAL 46000.00 4 10596 \N +419436 2025-10-27 15:11:43.821401+00 2025-10-27 15:11:43.821407+00 f t ADELANTO 11000.00 5 10596 \N +419957 2025-10-27 16:59:51.189247+00 2025-10-27 16:59:51.189256+00 f t SUBTOTAL 75000.00 1 10609 \N +419958 2025-10-27 16:59:51.191197+00 2025-10-27 16:59:51.191207+00 f t COSTO_SERVICIO 0.00 2 10609 \N +419959 2025-10-27 16:59:51.192644+00 2025-10-27 16:59:51.192652+00 f t DESCUENTO 0.00 3 10609 \N +419960 2025-10-27 16:59:51.193906+00 2025-10-27 16:59:51.193912+00 f t TOTAL 75000.00 4 10609 \N +419961 2025-10-27 16:59:51.194921+00 2025-10-27 16:59:51.194926+00 f t ADELANTO 15000.00 5 10609 \N +420692 2025-10-27 19:22:10.166717+00 2025-10-27 19:22:10.166726+00 f t SUBTOTAL 30000.00 1 10624 \N +420693 2025-10-27 19:22:10.168978+00 2025-10-27 19:22:10.168988+00 f t COSTO_SERVICIO 0.00 2 10624 \N +420694 2025-10-27 19:22:10.170527+00 2025-10-27 19:22:10.170533+00 f t DESCUENTO 0.00 3 10624 \N +420695 2025-10-27 19:22:10.172096+00 2025-10-27 19:22:10.172105+00 f t TOTAL 30000.00 4 10624 \N +420696 2025-10-27 19:22:10.173355+00 2025-10-27 19:22:10.173361+00 f t ADELANTO 30000.00 5 10624 \N +420962 2025-10-27 20:05:46.580137+00 2025-10-27 20:05:46.580146+00 f t SUBTOTAL 80000.00 1 10632 \N +420963 2025-10-27 20:05:46.581811+00 2025-10-27 20:05:46.581822+00 f t COSTO_SERVICIO 0.00 2 10632 \N +420964 2025-10-27 20:05:46.583494+00 2025-10-27 20:05:46.5835+00 f t DESCUENTO 0.00 3 10632 \N +420965 2025-10-27 20:05:46.584587+00 2025-10-27 20:05:46.584593+00 f t TOTAL 80000.00 4 10632 \N +420966 2025-10-27 20:05:46.585564+00 2025-10-27 20:05:46.58557+00 f t ADELANTO 12000.00 5 10632 \N +426082 2025-10-28 17:28:02.982355+00 2025-10-28 17:28:02.982366+00 f t SUBTOTAL 0.00 1 10742 \N +426083 2025-10-28 17:28:02.985615+00 2025-10-28 17:28:02.985627+00 f t COSTO_SERVICIO 0.00 2 10742 \N +426084 2025-10-28 17:28:02.987327+00 2025-10-28 17:28:02.987339+00 f t DESCUENTO 0.00 3 10742 \N +426085 2025-10-28 17:28:02.988948+00 2025-10-28 17:28:02.988956+00 f t TOTAL 0.00 4 10742 \N +426086 2025-10-28 17:28:02.990443+00 2025-10-28 17:28:02.99045+00 f t ADELANTO 0.00 5 10742 \N +416612 2025-10-25 23:38:37.797622+00 2025-10-25 23:38:37.797631+00 f t SUBTOTAL 0.00 1 10526 \N +416613 2025-10-25 23:38:37.798956+00 2025-10-25 23:38:37.798963+00 f t COSTO_SERVICIO 0.00 2 10526 \N +416614 2025-10-25 23:38:37.80001+00 2025-10-25 23:38:37.800015+00 f t DESCUENTO 0.00 3 10526 \N +416615 2025-10-25 23:38:37.800951+00 2025-10-25 23:38:37.800956+00 f t TOTAL 0.00 4 10526 \N +416616 2025-10-25 23:38:37.802107+00 2025-10-25 23:38:37.802112+00 f t ADELANTO 0.00 5 10526 \N +417352 2025-10-26 15:42:02.938301+00 2025-10-26 15:42:02.938312+00 f t SUBTOTAL 54000.00 1 10542 \N +417353 2025-10-26 15:42:02.940318+00 2025-10-26 15:42:02.940328+00 f t COSTO_SERVICIO 0.00 2 10542 \N +417354 2025-10-26 15:42:02.941805+00 2025-10-26 15:42:02.941813+00 f t DESCUENTO 0.00 3 10542 \N +417355 2025-10-26 15:42:02.943236+00 2025-10-26 15:42:02.943244+00 f t TOTAL 54000.00 4 10542 \N +417356 2025-10-26 15:42:02.944389+00 2025-10-26 15:42:02.944395+00 f t ADELANTO 13500.00 5 10542 \N +427222 2025-10-28 21:02:20.231645+00 2025-10-28 21:02:20.231653+00 f t SUBTOTAL 70000.00 1 10776 \N +427223 2025-10-28 21:02:20.233461+00 2025-10-28 21:02:20.233467+00 f t COSTO_SERVICIO 0.00 2 10776 \N +427224 2025-10-28 21:02:20.23473+00 2025-10-28 21:02:20.234736+00 f t DESCUENTO 0.00 3 10776 \N +427225 2025-10-28 21:02:20.235809+00 2025-10-28 21:02:20.235814+00 f t TOTAL 70000.00 4 10776 \N +427226 2025-10-28 21:02:20.236894+00 2025-10-28 21:02:20.236899+00 f t ADELANTO 16000.00 5 10776 \N +417487 2025-10-26 16:21:39.874591+00 2025-10-26 16:21:39.874603+00 f t SUBTOTAL 0.00 1 10546 \N +417488 2025-10-26 16:21:39.876444+00 2025-10-26 16:21:39.876454+00 f t COSTO_SERVICIO 0.00 2 10546 \N +417489 2025-10-26 16:21:39.877664+00 2025-10-26 16:21:39.877669+00 f t DESCUENTO 0.00 3 10546 \N +417490 2025-10-26 16:21:39.878622+00 2025-10-26 16:21:39.878627+00 f t TOTAL 0.00 4 10546 \N +417491 2025-10-26 16:21:39.879734+00 2025-10-26 16:21:39.87974+00 f t ADELANTO 0.00 5 10546 \N +417882 2025-10-26 17:58:34.058841+00 2025-10-26 17:58:34.058852+00 f t SUBTOTAL 55000.00 1 10554 \N +417883 2025-10-26 17:58:34.060462+00 2025-10-26 17:58:34.060467+00 f t COSTO_SERVICIO 0.00 2 10554 \N +417884 2025-10-26 17:58:34.061501+00 2025-10-26 17:58:34.061506+00 f t DESCUENTO 0.00 3 10554 \N +417885 2025-10-26 17:58:34.062687+00 2025-10-26 17:58:34.062693+00 f t TOTAL 55000.00 4 10554 \N +417886 2025-10-26 17:58:34.06406+00 2025-10-26 17:58:34.064065+00 f t ADELANTO 11000.00 5 10554 \N +418022 2025-10-26 18:25:34.119385+00 2025-10-26 18:25:34.119394+00 f t SUBTOTAL 0.00 1 10557 \N +418023 2025-10-26 18:25:34.121095+00 2025-10-26 18:25:34.121104+00 f t COSTO_SERVICIO 0.00 2 10557 \N +418024 2025-10-26 18:25:34.122396+00 2025-10-26 18:25:34.122402+00 f t DESCUENTO 0.00 3 10557 \N +418025 2025-10-26 18:25:34.123511+00 2025-10-26 18:25:34.123517+00 f t TOTAL 0.00 4 10557 \N +418026 2025-10-26 18:25:34.124648+00 2025-10-26 18:25:34.124653+00 f t ADELANTO 0.00 5 10557 \N +418407 2025-10-27 02:06:39.556362+00 2025-10-27 02:06:39.556369+00 f t SUBTOTAL 107000.00 1 10568 \N +418408 2025-10-27 02:06:39.557914+00 2025-10-27 02:06:39.55792+00 f t COSTO_SERVICIO 0.00 2 10568 \N +418409 2025-10-27 02:06:39.558878+00 2025-10-27 02:06:39.558882+00 f t DESCUENTO 0.00 3 10568 \N +418410 2025-10-27 02:06:39.559802+00 2025-10-27 02:06:39.559808+00 f t TOTAL 107000.00 4 10568 \N +418411 2025-10-27 02:06:39.560813+00 2025-10-27 02:06:39.560817+00 f t ADELANTO 12000.00 5 10568 \N +428987 2025-10-29 02:07:41.070228+00 2025-10-29 02:07:41.070237+00 f t SUBTOTAL 0.00 1 10799 \N +428988 2025-10-29 02:07:41.071631+00 2025-10-29 02:07:41.07164+00 f t COSTO_SERVICIO 0.00 2 10799 \N +428989 2025-10-29 02:07:41.072747+00 2025-10-29 02:07:41.072754+00 f t DESCUENTO 0.00 3 10799 \N +428990 2025-10-29 02:07:41.073722+00 2025-10-29 02:07:41.073728+00 f t TOTAL 0.00 4 10799 \N +428991 2025-10-29 02:07:41.074743+00 2025-10-29 02:07:41.07475+00 f t ADELANTO 0.00 5 10799 \N +415592 2025-10-25 15:40:39.968333+00 2025-10-25 15:40:39.968342+00 f t SUBTOTAL 55000.00 1 10502 \N +415593 2025-10-25 15:40:39.970241+00 2025-10-25 15:40:39.970249+00 f t COSTO_SERVICIO 0.00 2 10502 \N +415594 2025-10-25 15:40:39.971504+00 2025-10-25 15:40:39.97151+00 f t DESCUENTO 0.00 3 10502 \N +415595 2025-10-25 15:40:39.9726+00 2025-10-25 15:40:39.972606+00 f t TOTAL 55000.00 4 10502 \N +415596 2025-10-25 15:40:39.974092+00 2025-10-25 15:40:39.974098+00 f t ADELANTO 11000.00 5 10502 \N +415602 2025-10-25 15:53:40.708219+00 2025-10-25 15:53:40.708228+00 f t SUBTOTAL 0.00 1 10503 \N +415603 2025-10-25 15:53:40.709486+00 2025-10-25 15:53:40.709497+00 f t COSTO_SERVICIO 0.00 2 10503 \N +415604 2025-10-25 15:53:40.710791+00 2025-10-25 15:53:40.710798+00 f t DESCUENTO 0.00 3 10503 \N +415605 2025-10-25 15:53:40.712308+00 2025-10-25 15:53:40.712316+00 f t TOTAL 0.00 4 10503 \N +415606 2025-10-25 15:53:40.713615+00 2025-10-25 15:53:40.713621+00 f t ADELANTO 0.00 5 10503 \N +420067 2025-10-27 17:14:02.085317+00 2025-10-27 17:14:02.085326+00 f t SUBTOTAL 13200.00 1 10612 \N +420068 2025-10-27 17:14:02.087562+00 2025-10-27 17:14:02.087569+00 f t COSTO_SERVICIO 0.00 2 10612 \N +420069 2025-10-27 17:14:02.08943+00 2025-10-27 17:14:02.089437+00 f t DESCUENTO 0.00 3 10612 \N +420070 2025-10-27 17:14:02.090979+00 2025-10-27 17:14:02.090986+00 f t TOTAL 13200.00 4 10612 \N +420071 2025-10-27 17:14:02.092485+00 2025-10-27 17:14:02.092492+00 f t ADELANTO 13200.00 5 10612 \N +420172 2025-10-27 17:28:50.23831+00 2025-10-27 17:28:50.238319+00 f t SUBTOTAL 0.00 1 10614 \N +420173 2025-10-27 17:28:50.241231+00 2025-10-27 17:28:50.241239+00 f t COSTO_SERVICIO 0.00 2 10614 \N +420174 2025-10-27 17:28:50.242796+00 2025-10-27 17:28:50.242807+00 f t DESCUENTO 0.00 3 10614 \N +420175 2025-10-27 17:28:50.244515+00 2025-10-27 17:28:50.244522+00 f t TOTAL 0.00 4 10614 \N +420176 2025-10-27 17:28:50.245693+00 2025-10-27 17:28:50.245699+00 f t ADELANTO 0.00 5 10614 \N +415687 2025-10-25 16:13:11.92155+00 2025-10-25 16:13:11.921558+00 f t SUBTOTAL 0.00 1 10504 \N +415688 2025-10-25 16:13:11.923662+00 2025-10-25 16:13:11.92367+00 f t COSTO_SERVICIO 0.00 2 10504 \N +415689 2025-10-25 16:13:11.924983+00 2025-10-25 16:13:11.92499+00 f t DESCUENTO 0.00 3 10504 \N +415690 2025-10-25 16:13:11.925986+00 2025-10-25 16:13:11.925991+00 f t TOTAL 0.00 4 10504 \N +415691 2025-10-25 16:13:11.927242+00 2025-10-25 16:13:11.927247+00 f t ADELANTO 0.00 5 10504 \N +430997 2025-10-29 14:48:59.980602+00 2025-10-29 14:48:59.98061+00 f t SUBTOTAL 46000.00 1 10852 \N +430998 2025-10-29 14:48:59.982474+00 2025-10-29 14:48:59.982481+00 f t COSTO_SERVICIO 0.00 2 10852 \N +430999 2025-10-29 14:48:59.983684+00 2025-10-29 14:48:59.983693+00 f t DESCUENTO 0.00 3 10852 \N +431000 2025-10-29 14:48:59.984655+00 2025-10-29 14:48:59.98466+00 f t TOTAL 46000.00 4 10852 \N +431001 2025-10-29 14:48:59.985769+00 2025-10-29 14:48:59.985774+00 f t ADELANTO 11000.00 5 10852 \N +431062 2025-10-29 15:13:49.08917+00 2025-10-29 15:13:49.089178+00 f t SUBTOTAL 23000.00 1 10833 \N +431063 2025-10-29 15:13:49.09091+00 2025-10-29 15:13:49.09092+00 f t COSTO_SERVICIO 0.00 2 10833 \N +431064 2025-10-29 15:13:49.091962+00 2025-10-29 15:13:49.091967+00 f t DESCUENTO 0.00 3 10833 \N +431065 2025-10-29 15:13:49.092941+00 2025-10-29 15:13:49.092946+00 f t TOTAL 23000.00 4 10833 \N +431066 2025-10-29 15:13:49.093801+00 2025-10-29 15:13:49.093806+00 f t ADELANTO 5500.00 5 10833 \N +466612 2025-11-07 22:26:09.904969+00 2025-11-07 22:26:09.904977+00 f t SUBTOTAL 0.00 1 11699 \N +415717 2025-10-25 17:50:47.130111+00 2025-10-25 17:50:47.130121+00 f t SUBTOTAL 0.00 1 10505 \N +415718 2025-10-25 17:50:47.131937+00 2025-10-25 17:50:47.131944+00 f t COSTO_SERVICIO 0.00 2 10505 \N +415719 2025-10-25 17:50:47.133023+00 2025-10-25 17:50:47.133031+00 f t DESCUENTO 0.00 3 10505 \N +415720 2025-10-25 17:50:47.134108+00 2025-10-25 17:50:47.134114+00 f t TOTAL 0.00 4 10505 \N +415721 2025-10-25 17:50:47.135088+00 2025-10-25 17:50:47.135094+00 f t ADELANTO 0.00 5 10505 \N +416257 2025-10-25 22:45:06.465722+00 2025-10-25 22:45:06.465732+00 f t SUBTOTAL 46000.00 1 10519 \N +416258 2025-10-25 22:45:06.468719+00 2025-10-25 22:45:06.468727+00 f t COSTO_SERVICIO 0.00 2 10519 \N +416259 2025-10-25 22:45:06.470459+00 2025-10-25 22:45:06.470468+00 f t DESCUENTO 0.00 3 10519 \N +416260 2025-10-25 22:45:06.472113+00 2025-10-25 22:45:06.472124+00 f t TOTAL 46000.00 4 10519 \N +416261 2025-10-25 22:45:06.474186+00 2025-10-25 22:45:06.474196+00 f t ADELANTO 11000.00 5 10519 \N +416447 2025-10-25 23:08:12.157467+00 2025-10-25 23:08:12.157475+00 f t SUBTOTAL 0.00 1 10523 \N +416448 2025-10-25 23:08:12.159357+00 2025-10-25 23:08:12.159363+00 f t COSTO_SERVICIO 0.00 2 10523 \N +416449 2025-10-25 23:08:12.160425+00 2025-10-25 23:08:12.160431+00 f t DESCUENTO 0.00 3 10523 \N +416450 2025-10-25 23:08:12.161469+00 2025-10-25 23:08:12.161474+00 f t TOTAL 0.00 4 10523 \N +416451 2025-10-25 23:08:12.162445+00 2025-10-25 23:08:12.162452+00 f t ADELANTO 0.00 5 10523 \N +426292 2025-10-28 17:55:00.877467+00 2025-10-28 17:55:00.877475+00 f t SUBTOTAL 54000.00 1 10749 \N +426293 2025-10-28 17:55:00.87959+00 2025-10-28 17:55:00.879601+00 f t COSTO_SERVICIO 0.00 2 10749 \N +426294 2025-10-28 17:55:00.880962+00 2025-10-28 17:55:00.880969+00 f t DESCUENTO 0.00 3 10749 \N +426295 2025-10-28 17:55:00.882177+00 2025-10-28 17:55:00.882184+00 f t TOTAL 54000.00 4 10749 \N +426296 2025-10-28 17:55:00.883388+00 2025-10-28 17:55:00.883394+00 f t ADELANTO 13500.00 5 10749 \N +415767 2025-10-25 18:16:29.725155+00 2025-10-25 18:16:29.725164+00 f t SUBTOTAL 55000.00 1 10507 \N +415768 2025-10-25 18:16:29.726818+00 2025-10-25 18:16:29.726825+00 f t COSTO_SERVICIO 0.00 2 10507 \N +415769 2025-10-25 18:16:29.728097+00 2025-10-25 18:16:29.728103+00 f t DESCUENTO 0.00 3 10507 \N +415770 2025-10-25 18:16:29.730167+00 2025-10-25 18:16:29.730174+00 f t TOTAL 55000.00 4 10507 \N +415771 2025-10-25 18:16:29.731508+00 2025-10-25 18:16:29.731514+00 f t ADELANTO 11000.00 5 10507 \N +415822 2025-10-25 18:19:55.214318+00 2025-10-25 18:19:55.214326+00 f t SUBTOTAL 55000.00 1 10508 \N +415823 2025-10-25 18:19:55.216314+00 2025-10-25 18:19:55.21632+00 f t COSTO_SERVICIO 0.00 2 10508 \N +415824 2025-10-25 18:19:55.218978+00 2025-10-25 18:19:55.218985+00 f t DESCUENTO 0.00 3 10508 \N +415825 2025-10-25 18:19:55.220618+00 2025-10-25 18:19:55.220624+00 f t TOTAL 55000.00 4 10508 \N +415826 2025-10-25 18:19:55.221889+00 2025-10-25 18:19:55.2219+00 f t ADELANTO 11000.00 5 10508 \N +415827 2025-10-25 18:30:55.493585+00 2025-10-25 18:30:55.493593+00 f t SUBTOTAL 0.00 1 10500 \N +415828 2025-10-25 18:30:55.495665+00 2025-10-25 18:30:55.495674+00 f t COSTO_SERVICIO 0.00 2 10500 \N +415829 2025-10-25 18:30:55.497141+00 2025-10-25 18:30:55.49715+00 f t DESCUENTO 0.00 3 10500 \N +415830 2025-10-25 18:30:55.498452+00 2025-10-25 18:30:55.49846+00 f t TOTAL 0.00 4 10500 \N +415831 2025-10-25 18:30:55.49976+00 2025-10-25 18:30:55.499768+00 f t ADELANTO 0.00 5 10500 \N +415837 2025-10-25 18:50:42.413775+00 2025-10-25 18:50:42.413784+00 f t SUBTOTAL 0.00 1 10509 \N +415838 2025-10-25 18:50:42.415049+00 2025-10-25 18:50:42.415057+00 f t COSTO_SERVICIO 0.00 2 10509 \N +415839 2025-10-25 18:50:42.416405+00 2025-10-25 18:50:42.41641+00 f t DESCUENTO 0.00 3 10509 \N +415840 2025-10-25 18:50:42.417507+00 2025-10-25 18:50:42.417514+00 f t TOTAL 0.00 4 10509 \N +415841 2025-10-25 18:50:42.418712+00 2025-10-25 18:50:42.418717+00 f t ADELANTO 0.00 5 10509 \N +418417 2025-10-27 03:06:52.05752+00 2025-10-27 03:06:52.057531+00 f t SUBTOTAL 0.00 1 10569 \N +418418 2025-10-27 03:06:52.059103+00 2025-10-27 03:06:52.05911+00 f t COSTO_SERVICIO 0.00 2 10569 \N +418419 2025-10-27 03:06:52.061754+00 2025-10-27 03:06:52.06177+00 f t DESCUENTO 0.00 3 10569 \N +418420 2025-10-27 03:06:52.063122+00 2025-10-27 03:06:52.063154+00 f t TOTAL 0.00 4 10569 \N +418421 2025-10-27 03:06:52.064677+00 2025-10-27 03:06:52.064683+00 f t ADELANTO 0.00 5 10569 \N +419337 2025-10-27 15:01:41.099705+00 2025-10-27 15:01:41.099716+00 f t SUBTOTAL 46000.00 1 10594 \N +419338 2025-10-27 15:01:41.101783+00 2025-10-27 15:01:41.101794+00 f t COSTO_SERVICIO 0.00 2 10594 \N +419339 2025-10-27 15:01:41.103525+00 2025-10-27 15:01:41.103534+00 f t DESCUENTO 0.00 3 10594 \N +419340 2025-10-27 15:01:41.105081+00 2025-10-27 15:01:41.105089+00 f t TOTAL 46000.00 4 10594 \N +419341 2025-10-27 15:01:41.106462+00 2025-10-27 15:01:41.10647+00 f t ADELANTO 11000.00 5 10594 \N +415912 2025-10-25 19:02:09.908104+00 2025-10-25 19:02:09.908112+00 f t SUBTOTAL 121000.00 1 10510 \N +415913 2025-10-25 19:02:09.909679+00 2025-10-25 19:02:09.909686+00 f t COSTO_SERVICIO 0.00 2 10510 \N +415914 2025-10-25 19:02:09.911125+00 2025-10-25 19:02:09.911153+00 f t DESCUENTO 0.00 3 10510 \N +415915 2025-10-25 19:02:09.912277+00 2025-10-25 19:02:09.912283+00 f t TOTAL 121000.00 4 10510 \N +415916 2025-10-25 19:02:09.913307+00 2025-10-25 19:02:09.913312+00 f t ADELANTO 26000.00 5 10510 \N +419757 2025-10-27 16:26:55.495742+00 2025-10-27 16:26:55.49575+00 f t SUBTOTAL 70000.00 1 10605 \N +419758 2025-10-27 16:26:55.500931+00 2025-10-27 16:26:55.50094+00 f t COSTO_SERVICIO 0.00 2 10605 \N +419759 2025-10-27 16:26:55.505444+00 2025-10-27 16:26:55.505453+00 f t DESCUENTO 0.00 3 10605 \N +419760 2025-10-27 16:26:55.507124+00 2025-10-27 16:26:55.50716+00 f t TOTAL 70000.00 4 10605 \N +419761 2025-10-27 16:26:55.511897+00 2025-10-27 16:26:55.511908+00 f t ADELANTO 19000.00 5 10605 \N +420182 2025-10-27 17:45:55.51216+00 2025-10-27 17:45:55.512171+00 f t SUBTOTAL 0.00 1 10615 \N +420183 2025-10-27 17:45:55.514279+00 2025-10-27 17:45:55.514289+00 f t COSTO_SERVICIO 0.00 2 10615 \N +420184 2025-10-27 17:45:55.515541+00 2025-10-27 17:45:55.515547+00 f t DESCUENTO 0.00 3 10615 \N +420185 2025-10-27 17:45:55.516677+00 2025-10-27 17:45:55.516683+00 f t TOTAL 0.00 4 10615 \N +420186 2025-10-27 17:45:55.517647+00 2025-10-27 17:45:55.517655+00 f t ADELANTO 0.00 5 10615 \N +420297 2025-10-27 18:02:48.936017+00 2025-10-27 18:02:48.936027+00 f t SUBTOTAL 0.00 1 10620 \N +420298 2025-10-27 18:02:48.93789+00 2025-10-27 18:02:48.937898+00 f t COSTO_SERVICIO 0.00 2 10620 \N +420299 2025-10-27 18:02:48.939022+00 2025-10-27 18:02:48.939027+00 f t DESCUENTO 0.00 3 10620 \N +420300 2025-10-27 18:02:48.940072+00 2025-10-27 18:02:48.940078+00 f t TOTAL 0.00 4 10620 \N +420301 2025-10-27 18:02:48.941199+00 2025-10-27 18:02:48.941204+00 f t ADELANTO 0.00 5 10620 \N +415972 2025-10-25 19:15:44.913576+00 2025-10-25 19:15:44.913588+00 f t SUBTOTAL 30000.00 1 10511 \N +415973 2025-10-25 19:15:44.915593+00 2025-10-25 19:15:44.915604+00 f t COSTO_SERVICIO 0.00 2 10511 \N +415974 2025-10-25 19:15:44.924027+00 2025-10-25 19:15:44.924041+00 f t DESCUENTO 0.00 3 10511 \N +415975 2025-10-25 19:15:44.928259+00 2025-10-25 19:15:44.92827+00 f t TOTAL 30000.00 4 10511 \N +415976 2025-10-25 19:15:44.929988+00 2025-10-25 19:15:44.929996+00 f t ADELANTO 30000.00 5 10511 \N +420702 2025-10-27 19:34:51.578378+00 2025-10-27 19:34:51.578389+00 f t SUBTOTAL 46000.00 1 10584 \N +420703 2025-10-27 19:34:51.580568+00 2025-10-27 19:34:51.580579+00 f t COSTO_SERVICIO 0.00 2 10584 \N +420704 2025-10-27 19:34:51.582516+00 2025-10-27 19:34:51.582526+00 f t DESCUENTO 0.00 3 10584 \N +420705 2025-10-27 19:34:51.585276+00 2025-10-27 19:34:51.585286+00 f t TOTAL 46000.00 4 10584 \N +420706 2025-10-27 19:34:51.587329+00 2025-10-27 19:34:51.587338+00 f t ADELANTO 11000.00 5 10584 \N +421347 2025-10-27 20:46:58.883287+00 2025-10-27 20:46:58.883297+00 f t SUBTOTAL 0.00 1 10636 \N +421348 2025-10-27 20:46:58.885622+00 2025-10-27 20:46:58.88563+00 f t COSTO_SERVICIO 0.00 2 10636 \N +421349 2025-10-27 20:46:58.886657+00 2025-10-27 20:46:58.886662+00 f t DESCUENTO 0.00 3 10636 \N +421350 2025-10-27 20:46:58.887638+00 2025-10-27 20:46:58.887643+00 f t TOTAL 0.00 4 10636 \N +421351 2025-10-27 20:46:58.888692+00 2025-10-27 20:46:58.888697+00 f t ADELANTO 0.00 5 10636 \N +436752 2025-10-30 17:10:54.014065+00 2025-10-30 17:10:54.014072+00 f t SUBTOTAL 46000.00 1 10986 \N +436753 2025-10-30 17:10:54.015871+00 2025-10-30 17:10:54.015878+00 f t COSTO_SERVICIO 0.00 2 10986 \N +436754 2025-10-30 17:10:54.017036+00 2025-10-30 17:10:54.017043+00 f t DESCUENTO 0.00 3 10986 \N +436755 2025-10-30 17:10:54.017952+00 2025-10-30 17:10:54.017957+00 f t TOTAL 46000.00 4 10986 \N +436756 2025-10-30 17:10:54.01884+00 2025-10-30 17:10:54.018845+00 f t ADELANTO 11000.00 5 10986 \N +438412 2025-10-31 00:26:22.704475+00 2025-10-31 00:26:22.704485+00 f t SUBTOTAL 55000.00 1 11029 \N +421417 2025-10-27 20:47:56.278203+00 2025-10-27 20:47:56.278213+00 f t SUBTOTAL 0.00 1 10637 \N +421418 2025-10-27 20:47:56.280295+00 2025-10-27 20:47:56.280302+00 f t COSTO_SERVICIO 0.00 2 10637 \N +421419 2025-10-27 20:47:56.281572+00 2025-10-27 20:47:56.281577+00 f t DESCUENTO 0.00 3 10637 \N +421420 2025-10-27 20:47:56.282657+00 2025-10-27 20:47:56.282664+00 f t TOTAL 0.00 4 10637 \N +421421 2025-10-27 20:47:56.283779+00 2025-10-27 20:47:56.283784+00 f t ADELANTO 0.00 5 10637 \N +438413 2025-10-31 00:26:22.706349+00 2025-10-31 00:26:22.706356+00 f t COSTO_SERVICIO 0.00 2 11029 \N +438414 2025-10-31 00:26:22.707783+00 2025-10-31 00:26:22.70779+00 f t DESCUENTO 0.00 3 11029 \N +438415 2025-10-31 00:26:22.708844+00 2025-10-31 00:26:22.708852+00 f t TOTAL 55000.00 4 11029 \N +438416 2025-10-31 00:26:22.709894+00 2025-10-31 00:26:22.709899+00 f t ADELANTO 11000.00 5 11029 \N +438547 2025-10-31 00:52:37.492279+00 2025-10-31 00:52:37.492286+00 f t SUBTOTAL 78000.00 1 11030 \N +438548 2025-10-31 00:52:37.493963+00 2025-10-31 00:52:37.493968+00 f t COSTO_SERVICIO 0.00 2 11030 \N +438549 2025-10-31 00:52:37.494929+00 2025-10-31 00:52:37.494935+00 f t DESCUENTO 0.00 3 11030 \N +438550 2025-10-31 00:52:37.496267+00 2025-10-31 00:52:37.496274+00 f t TOTAL 78000.00 4 11030 \N +438551 2025-10-31 00:52:37.497352+00 2025-10-31 00:52:37.497357+00 f t ADELANTO 13000.00 5 11030 \N +421467 2025-10-27 20:56:56.698029+00 2025-10-27 20:56:56.698037+00 f t SUBTOTAL 46000.00 1 10638 \N +421468 2025-10-27 20:56:56.699586+00 2025-10-27 20:56:56.699594+00 f t COSTO_SERVICIO 0.00 2 10638 \N +421469 2025-10-27 20:56:56.700761+00 2025-10-27 20:56:56.700767+00 f t DESCUENTO 0.00 3 10638 \N +421470 2025-10-27 20:56:56.701767+00 2025-10-27 20:56:56.701772+00 f t TOTAL 46000.00 4 10638 \N +421471 2025-10-27 20:56:56.702794+00 2025-10-27 20:56:56.7028+00 f t ADELANTO 11000.00 5 10638 \N +428862 2025-10-29 01:30:21.199064+00 2025-10-29 01:30:21.19907+00 f t SUBTOTAL 167000.00 1 10809 \N +428863 2025-10-29 01:30:21.201008+00 2025-10-29 01:30:21.201015+00 f t COSTO_SERVICIO 0.00 2 10809 \N +428864 2025-10-29 01:30:21.202274+00 2025-10-29 01:30:21.202281+00 f t DESCUENTO 0.00 3 10809 \N +428865 2025-10-29 01:30:21.203572+00 2025-10-29 01:30:21.203577+00 f t TOTAL 167000.00 4 10809 \N +428866 2025-10-29 01:30:21.205061+00 2025-10-29 01:30:21.205067+00 f t ADELANTO 132000.00 5 10809 \N +439717 2025-10-31 12:15:13.835763+00 2025-10-31 12:15:13.835771+00 f t SUBTOTAL 46000.00 1 11059 \N +439718 2025-10-31 12:15:13.837899+00 2025-10-31 12:15:13.837905+00 f t COSTO_SERVICIO 0.00 2 11059 \N +439719 2025-10-31 12:15:13.838986+00 2025-10-31 12:15:13.838991+00 f t DESCUENTO 0.00 3 11059 \N +439720 2025-10-31 12:15:13.840047+00 2025-10-31 12:15:13.840052+00 f t TOTAL 46000.00 4 11059 \N +439721 2025-10-31 12:15:13.84109+00 2025-10-31 12:15:13.841095+00 f t ADELANTO 11000.00 5 11059 \N +439827 2025-10-31 12:21:47.235629+00 2025-10-31 12:21:47.235636+00 f t SUBTOTAL 46000.00 1 11061 \N +439828 2025-10-31 12:21:47.237288+00 2025-10-31 12:21:47.237294+00 f t COSTO_SERVICIO 0.00 2 11061 \N +439829 2025-10-31 12:21:47.238284+00 2025-10-31 12:21:47.238289+00 f t DESCUENTO 0.00 3 11061 \N +439830 2025-10-31 12:21:47.239195+00 2025-10-31 12:21:47.2392+00 f t TOTAL 46000.00 4 11061 \N +439831 2025-10-31 12:21:47.240074+00 2025-10-31 12:21:47.240079+00 f t ADELANTO 11000.00 5 11061 \N +440037 2025-10-31 14:09:17.509608+00 2025-10-31 14:09:17.509614+00 f t SUBTOTAL 55000.00 1 11068 \N +440038 2025-10-31 14:09:17.511382+00 2025-10-31 14:09:17.511387+00 f t COSTO_SERVICIO 0.00 2 11068 \N +440039 2025-10-31 14:09:17.513078+00 2025-10-31 14:09:17.513083+00 f t DESCUENTO 0.00 3 11068 \N +440040 2025-10-31 14:09:17.514104+00 2025-10-31 14:09:17.51411+00 f t TOTAL 55000.00 4 11068 \N +440041 2025-10-31 14:09:17.515192+00 2025-10-31 14:09:17.5152+00 f t ADELANTO 11000.00 5 11068 \N +430517 2025-10-29 13:54:38.391306+00 2025-10-29 13:54:38.391317+00 f t SUBTOTAL 87000.00 1 10842 \N +430518 2025-10-29 13:54:38.393319+00 2025-10-29 13:54:38.393327+00 f t COSTO_SERVICIO 0.00 2 10842 \N +430519 2025-10-29 13:54:38.394514+00 2025-10-29 13:54:38.39452+00 f t DESCUENTO 0.00 3 10842 \N +430520 2025-10-29 13:54:38.395876+00 2025-10-29 13:54:38.395882+00 f t TOTAL 87000.00 4 10842 \N +430521 2025-10-29 13:54:38.396951+00 2025-10-29 13:54:38.396956+00 f t ADELANTO 20000.00 5 10842 \N +430787 2025-10-29 14:23:04.52222+00 2025-10-29 14:23:04.522233+00 f t SUBTOTAL 0.00 1 10849 \N +430788 2025-10-29 14:23:04.524002+00 2025-10-29 14:23:04.524012+00 f t COSTO_SERVICIO 0.00 2 10849 \N +430789 2025-10-29 14:23:04.525508+00 2025-10-29 14:23:04.525516+00 f t DESCUENTO 0.00 3 10849 \N +430790 2025-10-29 14:23:04.526765+00 2025-10-29 14:23:04.526772+00 f t TOTAL 0.00 4 10849 \N +430791 2025-10-29 14:23:04.527902+00 2025-10-29 14:23:04.52791+00 f t ADELANTO 0.00 5 10849 \N +440822 2025-10-31 17:04:16.397413+00 2025-10-31 17:04:16.397423+00 f t SUBTOTAL 0.00 1 11090 \N +440823 2025-10-31 17:04:16.399461+00 2025-10-31 17:04:16.39947+00 f t COSTO_SERVICIO 0.00 2 11090 \N +440824 2025-10-31 17:04:16.400723+00 2025-10-31 17:04:16.40073+00 f t DESCUENTO 0.00 3 11090 \N +440825 2025-10-31 17:04:16.40172+00 2025-10-31 17:04:16.401725+00 f t TOTAL 0.00 4 11090 \N +440826 2025-10-31 17:04:16.402598+00 2025-10-31 17:04:16.402603+00 f t ADELANTO 0.00 5 11090 \N +421592 2025-10-27 21:04:53.86845+00 2025-10-27 21:04:53.868458+00 f t SUBTOTAL 46000.00 1 10639 \N +421593 2025-10-27 21:04:53.870024+00 2025-10-27 21:04:53.870031+00 f t COSTO_SERVICIO 0.00 2 10639 \N +421594 2025-10-27 21:04:53.871251+00 2025-10-27 21:04:53.871257+00 f t DESCUENTO 0.00 3 10639 \N +421595 2025-10-27 21:04:53.872418+00 2025-10-27 21:04:53.872425+00 f t TOTAL 46000.00 4 10639 \N +421596 2025-10-27 21:04:53.873747+00 2025-10-27 21:04:53.873756+00 f t ADELANTO 11000.00 5 10639 \N +421597 2025-10-27 21:05:08.706365+00 2025-10-27 21:05:08.706373+00 f t SUBTOTAL 46000.00 1 10640 \N +421598 2025-10-27 21:05:08.708401+00 2025-10-27 21:05:08.708411+00 f t COSTO_SERVICIO 0.00 2 10640 \N +421599 2025-10-27 21:05:08.710207+00 2025-10-27 21:05:08.710218+00 f t DESCUENTO 0.00 3 10640 \N +421600 2025-10-27 21:05:08.711731+00 2025-10-27 21:05:08.711738+00 f t TOTAL 46000.00 4 10640 \N +421601 2025-10-27 21:05:08.713125+00 2025-10-27 21:05:08.713131+00 f t ADELANTO 11000.00 5 10640 \N +441042 2025-10-31 17:14:09.788039+00 2025-10-31 17:14:09.788049+00 f t SUBTOTAL 139750.00 1 11095 \N +441043 2025-10-31 17:14:09.789994+00 2025-10-31 17:14:09.790002+00 f t COSTO_SERVICIO 0.00 2 11095 \N +441044 2025-10-31 17:14:09.791213+00 2025-10-31 17:14:09.791219+00 f t DESCUENTO 0.00 3 11095 \N +441045 2025-10-31 17:14:09.792336+00 2025-10-31 17:14:09.792343+00 f t TOTAL 139750.00 4 11095 \N +441046 2025-10-31 17:14:09.793448+00 2025-10-31 17:14:09.793453+00 f t ADELANTO 29750.00 5 11095 \N +466613 2025-11-07 22:26:09.906993+00 2025-11-07 22:26:09.907+00 f t COSTO_SERVICIO 0.00 2 11699 \N +427542 2025-10-28 23:07:04.615456+00 2025-10-28 23:07:04.615464+00 f t SUBTOTAL 54000.00 1 10791 \N +427543 2025-10-28 23:07:04.617602+00 2025-10-28 23:07:04.617612+00 f t COSTO_SERVICIO 0.00 2 10791 \N +427544 2025-10-28 23:07:04.619192+00 2025-10-28 23:07:04.619199+00 f t DESCUENTO 0.00 3 10791 \N +427545 2025-10-28 23:07:04.620653+00 2025-10-28 23:07:04.62066+00 f t TOTAL 54000.00 4 10791 \N +427546 2025-10-28 23:07:04.621877+00 2025-10-28 23:07:04.621883+00 f t ADELANTO 13500.00 5 10791 \N +428377 2025-10-28 23:58:27.646679+00 2025-10-28 23:58:27.646688+00 f t SUBTOTAL 0.00 1 10800 \N +428378 2025-10-28 23:58:27.648222+00 2025-10-28 23:58:27.64823+00 f t COSTO_SERVICIO 0.00 2 10800 \N +428379 2025-10-28 23:58:27.649505+00 2025-10-28 23:58:27.649512+00 f t DESCUENTO 0.00 3 10800 \N +421727 2025-10-27 21:11:31.395189+00 2025-10-27 21:11:31.395198+00 f t SUBTOTAL 0.00 1 10643 \N +421728 2025-10-27 21:11:31.39655+00 2025-10-27 21:11:31.396557+00 f t COSTO_SERVICIO 0.00 2 10643 \N +421729 2025-10-27 21:11:31.397701+00 2025-10-27 21:11:31.397707+00 f t DESCUENTO 0.00 3 10643 \N +421730 2025-10-27 21:11:31.398915+00 2025-10-27 21:11:31.398922+00 f t TOTAL 0.00 4 10643 \N +421731 2025-10-27 21:11:31.400145+00 2025-10-27 21:11:31.40015+00 f t ADELANTO 0.00 5 10643 \N +428380 2025-10-28 23:58:27.650833+00 2025-10-28 23:58:27.65084+00 f t TOTAL 0.00 4 10800 \N +428381 2025-10-28 23:58:27.651919+00 2025-10-28 23:58:27.651925+00 f t ADELANTO 0.00 5 10800 \N +438557 2025-10-31 01:25:48.146332+00 2025-10-31 01:25:48.146343+00 f t SUBTOTAL 0.00 1 11031 \N +438558 2025-10-31 01:25:48.147625+00 2025-10-31 01:25:48.147632+00 f t COSTO_SERVICIO 0.00 2 11031 \N +438559 2025-10-31 01:25:48.148696+00 2025-10-31 01:25:48.148702+00 f t DESCUENTO 0.00 3 11031 \N +438560 2025-10-31 01:25:48.149565+00 2025-10-31 01:25:48.14957+00 f t TOTAL 0.00 4 11031 \N +438561 2025-10-31 01:25:48.150522+00 2025-10-31 01:25:48.150527+00 f t ADELANTO 0.00 5 11031 \N +438827 2025-10-31 02:31:26.084293+00 2025-10-31 02:31:26.084302+00 f t SUBTOTAL 0.00 1 11038 \N +438828 2025-10-31 02:31:26.086374+00 2025-10-31 02:31:26.086381+00 f t COSTO_SERVICIO 0.00 2 11038 \N +438829 2025-10-31 02:31:26.087632+00 2025-10-31 02:31:26.087639+00 f t DESCUENTO 0.00 3 11038 \N +421752 2025-10-27 21:11:52.66861+00 2025-10-27 21:11:52.668621+00 f t SUBTOTAL 0.00 1 10642 \N +421753 2025-10-27 21:11:52.67035+00 2025-10-27 21:11:52.670357+00 f t COSTO_SERVICIO 0.00 2 10642 \N +421754 2025-10-27 21:11:52.671479+00 2025-10-27 21:11:52.671485+00 f t DESCUENTO 0.00 3 10642 \N +421755 2025-10-27 21:11:52.672438+00 2025-10-27 21:11:52.672443+00 f t TOTAL 0.00 4 10642 \N +421756 2025-10-27 21:11:52.67333+00 2025-10-27 21:11:52.673334+00 f t ADELANTO 0.00 5 10642 \N +438830 2025-10-31 02:31:26.088612+00 2025-10-31 02:31:26.088617+00 f t TOTAL 0.00 4 11038 \N +438831 2025-10-31 02:31:26.089519+00 2025-10-31 02:31:26.089525+00 f t ADELANTO 0.00 5 11038 \N +428872 2025-10-29 01:35:27.347002+00 2025-10-29 01:35:27.347015+00 f t SUBTOTAL 0.00 1 10811 \N +428873 2025-10-29 01:35:27.348648+00 2025-10-29 01:35:27.348658+00 f t COSTO_SERVICIO 0.00 2 10811 \N +428874 2025-10-29 01:35:27.349998+00 2025-10-29 01:35:27.350007+00 f t DESCUENTO 0.00 3 10811 \N +421762 2025-10-27 21:13:25.679576+00 2025-10-27 21:13:25.679584+00 f t SUBTOTAL 0.00 1 10644 \N +421763 2025-10-27 21:13:25.680858+00 2025-10-27 21:13:25.680864+00 f t COSTO_SERVICIO 0.00 2 10644 \N +421764 2025-10-27 21:13:25.681807+00 2025-10-27 21:13:25.681812+00 f t DESCUENTO 0.00 3 10644 \N +421765 2025-10-27 21:13:25.682721+00 2025-10-27 21:13:25.682726+00 f t TOTAL 0.00 4 10644 \N +421766 2025-10-27 21:13:25.683695+00 2025-10-27 21:13:25.6837+00 f t ADELANTO 0.00 5 10644 \N +428875 2025-10-29 01:35:27.351431+00 2025-10-29 01:35:27.35144+00 f t TOTAL 0.00 4 10811 \N +428876 2025-10-29 01:35:27.352706+00 2025-10-29 01:35:27.352714+00 f t ADELANTO 0.00 5 10811 \N +429007 2025-10-29 02:25:29.408288+00 2025-10-29 02:25:29.408297+00 f t SUBTOTAL 0.00 1 10814 \N +429008 2025-10-29 02:25:29.409699+00 2025-10-29 02:25:29.409706+00 f t COSTO_SERVICIO 0.00 2 10814 \N +429009 2025-10-29 02:25:29.410916+00 2025-10-29 02:25:29.410922+00 f t DESCUENTO 0.00 3 10814 \N +421777 2025-10-27 21:17:17.91589+00 2025-10-27 21:17:17.915899+00 f t SUBTOTAL 46000.00 1 10645 \N +421778 2025-10-27 21:17:17.917508+00 2025-10-27 21:17:17.917514+00 f t COSTO_SERVICIO 0.00 2 10645 \N +421779 2025-10-27 21:17:17.918716+00 2025-10-27 21:17:17.918721+00 f t DESCUENTO 0.00 3 10645 \N +421780 2025-10-27 21:17:17.919768+00 2025-10-27 21:17:17.919773+00 f t TOTAL 46000.00 4 10645 \N +421781 2025-10-27 21:17:17.9207+00 2025-10-27 21:17:17.920706+00 f t ADELANTO 11000.00 5 10645 \N +429010 2025-10-29 02:25:29.41201+00 2025-10-29 02:25:29.412016+00 f t TOTAL 0.00 4 10814 \N +429011 2025-10-29 02:25:29.413069+00 2025-10-29 02:25:29.413076+00 f t ADELANTO 0.00 5 10814 \N +421797 2025-10-27 21:25:11.684645+00 2025-10-27 21:25:11.684655+00 f t SUBTOTAL 0.00 1 10646 \N +421798 2025-10-27 21:25:11.685943+00 2025-10-27 21:25:11.685949+00 f t COSTO_SERVICIO 0.00 2 10646 \N +421799 2025-10-27 21:25:11.686876+00 2025-10-27 21:25:11.686882+00 f t DESCUENTO 0.00 3 10646 \N +421800 2025-10-27 21:25:11.687894+00 2025-10-27 21:25:11.6879+00 f t TOTAL 0.00 4 10646 \N +421801 2025-10-27 21:25:11.688842+00 2025-10-27 21:25:11.68885+00 f t ADELANTO 0.00 5 10646 \N +421817 2025-10-27 21:47:09.473469+00 2025-10-27 21:47:09.473479+00 f t SUBTOTAL 0.00 1 10647 \N +421818 2025-10-27 21:47:09.474956+00 2025-10-27 21:47:09.474962+00 f t COSTO_SERVICIO 0.00 2 10647 \N +421819 2025-10-27 21:47:09.476241+00 2025-10-27 21:47:09.476247+00 f t DESCUENTO 0.00 3 10647 \N +421820 2025-10-27 21:47:09.47744+00 2025-10-27 21:47:09.477446+00 f t TOTAL 0.00 4 10647 \N +421821 2025-10-27 21:47:09.478606+00 2025-10-27 21:47:09.478611+00 f t ADELANTO 0.00 5 10647 \N +430092 2025-10-29 12:34:00.404403+00 2025-10-29 12:34:00.404417+00 f t SUBTOTAL 46000.00 1 10832 \N +430093 2025-10-29 12:34:00.406446+00 2025-10-29 12:34:00.406459+00 f t COSTO_SERVICIO 0.00 2 10832 \N +430094 2025-10-29 12:34:00.408138+00 2025-10-29 12:34:00.408148+00 f t DESCUENTO 0.00 3 10832 \N +430095 2025-10-29 12:34:00.409699+00 2025-10-29 12:34:00.409707+00 f t TOTAL 46000.00 4 10832 \N +430096 2025-10-29 12:34:00.410899+00 2025-10-29 12:34:00.410905+00 f t ADELANTO 11000.00 5 10832 \N +421847 2025-10-27 21:48:18.064325+00 2025-10-27 21:48:18.064334+00 f t SUBTOTAL 31500.00 1 10648 \N +421848 2025-10-27 21:48:18.065871+00 2025-10-27 21:48:18.065878+00 f t COSTO_SERVICIO 0.00 2 10648 \N +421849 2025-10-27 21:48:18.067163+00 2025-10-27 21:48:18.06717+00 f t DESCUENTO 0.00 3 10648 \N +421850 2025-10-27 21:48:18.068386+00 2025-10-27 21:48:18.068392+00 f t TOTAL 31500.00 4 10648 \N +421851 2025-10-27 21:48:18.069428+00 2025-10-27 21:48:18.069433+00 f t ADELANTO 31500.00 5 10648 \N +421877 2025-10-27 22:11:41.232653+00 2025-10-27 22:11:41.232664+00 f t SUBTOTAL 0.00 1 10649 \N +421878 2025-10-27 22:11:41.234724+00 2025-10-27 22:11:41.234731+00 f t COSTO_SERVICIO 0.00 2 10649 \N +421879 2025-10-27 22:11:41.235886+00 2025-10-27 22:11:41.235892+00 f t DESCUENTO 0.00 3 10649 \N +421880 2025-10-27 22:11:41.236839+00 2025-10-27 22:11:41.236846+00 f t TOTAL 0.00 4 10649 \N +421881 2025-10-27 22:11:41.237717+00 2025-10-27 22:11:41.237722+00 f t ADELANTO 0.00 5 10649 \N +421887 2025-10-27 22:16:36.603161+00 2025-10-27 22:16:36.603169+00 f t SUBTOTAL 0.00 1 10650 \N +421888 2025-10-27 22:16:36.604313+00 2025-10-27 22:16:36.604318+00 f t COSTO_SERVICIO 0.00 2 10650 \N +421889 2025-10-27 22:16:36.605225+00 2025-10-27 22:16:36.605231+00 f t DESCUENTO 0.00 3 10650 \N +421890 2025-10-27 22:16:36.606105+00 2025-10-27 22:16:36.60611+00 f t TOTAL 0.00 4 10650 \N +421891 2025-10-27 22:16:36.60711+00 2025-10-27 22:16:36.607115+00 f t ADELANTO 0.00 5 10650 \N +435947 2025-10-30 15:18:19.506628+00 2025-10-30 15:18:19.506636+00 f t SUBTOTAL 55000.00 1 10979 \N +435948 2025-10-30 15:18:19.508482+00 2025-10-30 15:18:19.508489+00 f t COSTO_SERVICIO 0.00 2 10979 \N +435949 2025-10-30 15:18:19.509587+00 2025-10-30 15:18:19.509595+00 f t DESCUENTO 0.00 3 10979 \N +435950 2025-10-30 15:18:19.511007+00 2025-10-30 15:18:19.511014+00 f t TOTAL 55000.00 4 10979 \N +435951 2025-10-30 15:18:19.512311+00 2025-10-30 15:18:19.512318+00 f t ADELANTO 11000.00 5 10979 \N +426477 2025-10-28 18:43:31.238063+00 2025-10-28 18:43:31.238074+00 f t SUBTOTAL 0.00 1 10754 \N +426478 2025-10-28 18:43:31.240133+00 2025-10-28 18:43:31.240141+00 f t COSTO_SERVICIO 0.00 2 10754 \N +426479 2025-10-28 18:43:31.24132+00 2025-10-28 18:43:31.241327+00 f t DESCUENTO 0.00 3 10754 \N +426480 2025-10-28 18:43:31.242305+00 2025-10-28 18:43:31.242311+00 f t TOTAL 0.00 4 10754 \N +426481 2025-10-28 18:43:31.243624+00 2025-10-28 18:43:31.243631+00 f t ADELANTO 0.00 5 10754 \N +446452 2025-11-01 22:22:56.46459+00 2025-11-01 22:22:56.464597+00 f t SUBTOTAL 55000.00 1 11231 \N +446453 2025-11-01 22:22:56.466591+00 2025-11-01 22:22:56.466598+00 f t COSTO_SERVICIO 0.00 2 11231 \N +426817 2025-10-28 19:37:50.01788+00 2025-10-28 19:37:50.017891+00 f t SUBTOTAL 46000.00 1 10763 \N +426818 2025-10-28 19:37:50.020266+00 2025-10-28 19:37:50.020276+00 f t COSTO_SERVICIO 0.00 2 10763 \N +426819 2025-10-28 19:37:50.02206+00 2025-10-28 19:37:50.022068+00 f t DESCUENTO 0.00 3 10763 \N +426820 2025-10-28 19:37:50.023555+00 2025-10-28 19:37:50.023564+00 f t TOTAL 46000.00 4 10763 \N +426821 2025-10-28 19:37:50.025058+00 2025-10-28 19:37:50.025069+00 f t ADELANTO 11000.00 5 10763 \N +426967 2025-10-28 20:21:52.764179+00 2025-10-28 20:21:52.764188+00 f t SUBTOTAL 0.00 1 10768 \N +426968 2025-10-28 20:21:52.766401+00 2025-10-28 20:21:52.766411+00 f t COSTO_SERVICIO 0.00 2 10768 \N +426969 2025-10-28 20:21:52.767732+00 2025-10-28 20:21:52.767738+00 f t DESCUENTO 0.00 3 10768 \N +426970 2025-10-28 20:21:52.768943+00 2025-10-28 20:21:52.768949+00 f t TOTAL 0.00 4 10768 \N +426971 2025-10-28 20:21:52.770596+00 2025-10-28 20:21:52.770606+00 f t ADELANTO 0.00 5 10768 \N +427102 2025-10-28 20:52:47.976758+00 2025-10-28 20:52:47.976765+00 f t SUBTOTAL 55000.00 1 10772 \N +427103 2025-10-28 20:52:47.978427+00 2025-10-28 20:52:47.978434+00 f t COSTO_SERVICIO 0.00 2 10772 \N +427104 2025-10-28 20:52:47.979555+00 2025-10-28 20:52:47.979561+00 f t DESCUENTO 0.00 3 10772 \N +427105 2025-10-28 20:52:47.980553+00 2025-10-28 20:52:47.980558+00 f t TOTAL 55000.00 4 10772 \N +427106 2025-10-28 20:52:47.981603+00 2025-10-28 20:52:47.981609+00 f t ADELANTO 11000.00 5 10772 \N +446454 2025-11-01 22:22:56.467881+00 2025-11-01 22:22:56.467887+00 f t DESCUENTO 0.00 3 11231 \N +446455 2025-11-01 22:22:56.469077+00 2025-11-01 22:22:56.469083+00 f t TOTAL 55000.00 4 11231 \N +446456 2025-11-01 22:22:56.470221+00 2025-11-01 22:22:56.470226+00 f t ADELANTO 11000.00 5 11231 \N +427667 2025-10-28 23:23:57.211202+00 2025-10-28 23:23:57.211211+00 f t SUBTOTAL 54000.00 1 10793 \N +427668 2025-10-28 23:23:57.212958+00 2025-10-28 23:23:57.212965+00 f t COSTO_SERVICIO 0.00 2 10793 \N +421977 2025-10-27 22:20:15.829252+00 2025-10-27 22:20:15.829261+00 f t SUBTOTAL 0.00 1 10652 \N +421978 2025-10-27 22:20:15.830526+00 2025-10-27 22:20:15.830533+00 f t COSTO_SERVICIO 0.00 2 10652 \N +421979 2025-10-27 22:20:15.831663+00 2025-10-27 22:20:15.83167+00 f t DESCUENTO 0.00 3 10652 \N +421980 2025-10-27 22:20:15.83263+00 2025-10-27 22:20:15.832636+00 f t TOTAL 0.00 4 10652 \N +421981 2025-10-27 22:20:15.833601+00 2025-10-27 22:20:15.833606+00 f t ADELANTO 0.00 5 10652 \N +427669 2025-10-28 23:23:57.214376+00 2025-10-28 23:23:57.214382+00 f t DESCUENTO 0.00 3 10793 \N +427670 2025-10-28 23:23:57.215628+00 2025-10-28 23:23:57.215637+00 f t TOTAL 54000.00 4 10793 \N +427671 2025-10-28 23:23:57.216969+00 2025-10-28 23:23:57.216978+00 f t ADELANTO 13500.00 5 10793 \N +421992 2025-10-27 22:21:45.08364+00 2025-10-27 22:21:45.08365+00 f t SUBTOTAL 55000.00 1 10651 \N +421993 2025-10-27 22:21:45.08565+00 2025-10-27 22:21:45.085657+00 f t COSTO_SERVICIO 0.00 2 10651 \N +421994 2025-10-27 22:21:45.086835+00 2025-10-27 22:21:45.086841+00 f t DESCUENTO 0.00 3 10651 \N +421995 2025-10-27 22:21:45.087885+00 2025-10-27 22:21:45.08789+00 f t TOTAL 55000.00 4 10651 \N +421996 2025-10-27 22:21:45.088878+00 2025-10-27 22:21:45.088886+00 f t ADELANTO 11000.00 5 10651 \N +438137 2025-10-30 23:42:29.167357+00 2025-10-30 23:42:29.167368+00 f t SUBTOTAL 66000.00 1 11022 \N +438138 2025-10-30 23:42:29.169216+00 2025-10-30 23:42:29.169222+00 f t COSTO_SERVICIO 0.00 2 11022 \N +438139 2025-10-30 23:42:29.170581+00 2025-10-30 23:42:29.170588+00 f t DESCUENTO 0.00 3 11022 \N +438140 2025-10-30 23:42:29.171746+00 2025-10-30 23:42:29.171752+00 f t TOTAL 66000.00 4 11022 \N +438141 2025-10-30 23:42:29.172723+00 2025-10-30 23:42:29.172728+00 f t ADELANTO 11000.00 5 11022 \N +422022 2025-10-27 22:35:43.255848+00 2025-10-27 22:35:43.255857+00 f t SUBTOTAL 54000.00 1 10653 \N +422023 2025-10-27 22:35:43.257385+00 2025-10-27 22:35:43.257391+00 f t COSTO_SERVICIO 0.00 2 10653 \N +422024 2025-10-27 22:35:43.258905+00 2025-10-27 22:35:43.258911+00 f t DESCUENTO 0.00 3 10653 \N +422025 2025-10-27 22:35:43.259868+00 2025-10-27 22:35:43.259874+00 f t TOTAL 54000.00 4 10653 \N +422026 2025-10-27 22:35:43.260738+00 2025-10-27 22:35:43.260743+00 f t ADELANTO 13500.00 5 10653 \N +438567 2025-10-31 01:34:48.131326+00 2025-10-31 01:34:48.131335+00 f t SUBTOTAL 0.00 1 11032 \N +438568 2025-10-31 01:34:48.132626+00 2025-10-31 01:34:48.132632+00 f t COSTO_SERVICIO 0.00 2 11032 \N +438569 2025-10-31 01:34:48.133568+00 2025-10-31 01:34:48.133577+00 f t DESCUENTO 0.00 3 11032 \N +438570 2025-10-31 01:34:48.134713+00 2025-10-31 01:34:48.134718+00 f t TOTAL 0.00 4 11032 \N +438571 2025-10-31 01:34:48.135753+00 2025-10-31 01:34:48.13576+00 f t ADELANTO 0.00 5 11032 \N +422052 2025-10-27 22:39:55.861169+00 2025-10-27 22:39:55.861178+00 f t SUBTOTAL 55000.00 1 10654 \N +422053 2025-10-27 22:39:55.86266+00 2025-10-27 22:39:55.862666+00 f t COSTO_SERVICIO 0.00 2 10654 \N +422054 2025-10-27 22:39:55.864076+00 2025-10-27 22:39:55.864082+00 f t DESCUENTO 0.00 3 10654 \N +422055 2025-10-27 22:39:55.865339+00 2025-10-27 22:39:55.865347+00 f t TOTAL 55000.00 4 10654 \N +422056 2025-10-27 22:39:55.866542+00 2025-10-27 22:39:55.866551+00 f t ADELANTO 11000.00 5 10654 \N +429767 2025-10-29 06:41:44.526525+00 2025-10-29 06:41:44.526535+00 f t SUBTOTAL 0.00 1 10824 \N +429768 2025-10-29 06:41:44.52884+00 2025-10-29 06:41:44.528849+00 f t COSTO_SERVICIO 0.00 2 10824 \N +429769 2025-10-29 06:41:44.530186+00 2025-10-29 06:41:44.530193+00 f t DESCUENTO 0.00 3 10824 \N +429770 2025-10-29 06:41:44.531442+00 2025-10-29 06:41:44.531448+00 f t TOTAL 0.00 4 10824 \N +429771 2025-10-29 06:41:44.532575+00 2025-10-29 06:41:44.53258+00 f t ADELANTO 0.00 5 10824 \N +422122 2025-10-27 23:03:22.656271+00 2025-10-27 23:03:22.656294+00 f t SUBTOTAL 0.00 1 10656 \N +422123 2025-10-27 23:03:22.65845+00 2025-10-27 23:03:22.658457+00 f t COSTO_SERVICIO 0.00 2 10656 \N +422124 2025-10-27 23:03:22.659557+00 2025-10-27 23:03:22.659562+00 f t DESCUENTO 0.00 3 10656 \N +422125 2025-10-27 23:03:22.660508+00 2025-10-27 23:03:22.660513+00 f t TOTAL 0.00 4 10656 \N +422126 2025-10-27 23:03:22.661385+00 2025-10-27 23:03:22.66139+00 f t ADELANTO 0.00 5 10656 \N +422187 2025-10-27 23:05:16.766427+00 2025-10-27 23:05:16.766435+00 f t SUBTOTAL 46000.00 1 10657 \N +422188 2025-10-27 23:05:16.768144+00 2025-10-27 23:05:16.76815+00 f t COSTO_SERVICIO 0.00 2 10657 \N +422189 2025-10-27 23:05:16.769596+00 2025-10-27 23:05:16.769603+00 f t DESCUENTO 0.00 3 10657 \N +422190 2025-10-27 23:05:16.770651+00 2025-10-27 23:05:16.770657+00 f t TOTAL 46000.00 4 10657 \N +422191 2025-10-27 23:05:16.771803+00 2025-10-27 23:05:16.771809+00 f t ADELANTO 11000.00 5 10657 \N +435697 2025-10-30 14:27:15.31028+00 2025-10-30 14:27:15.31029+00 f t SUBTOTAL 0.00 1 10972 \N +422207 2025-10-27 23:45:36.566834+00 2025-10-27 23:45:36.566841+00 f t SUBTOTAL 46000.00 1 10655 \N +422208 2025-10-27 23:45:36.568339+00 2025-10-27 23:45:36.568345+00 f t COSTO_SERVICIO 0.00 2 10655 \N +422209 2025-10-27 23:45:36.569562+00 2025-10-27 23:45:36.569568+00 f t DESCUENTO 0.00 3 10655 \N +422210 2025-10-27 23:45:36.570676+00 2025-10-27 23:45:36.570682+00 f t TOTAL 46000.00 4 10655 \N +422211 2025-10-27 23:45:36.571739+00 2025-10-27 23:45:36.571745+00 f t ADELANTO 11000.00 5 10655 \N +435698 2025-10-30 14:27:15.312203+00 2025-10-30 14:27:15.312211+00 f t COSTO_SERVICIO 0.00 2 10972 \N +435699 2025-10-30 14:27:15.313239+00 2025-10-30 14:27:15.313245+00 f t DESCUENTO 0.00 3 10972 \N +435700 2025-10-30 14:27:15.314182+00 2025-10-30 14:27:15.314188+00 f t TOTAL 0.00 4 10972 \N +435701 2025-10-30 14:27:15.315097+00 2025-10-30 14:27:15.315102+00 f t ADELANTO 0.00 5 10972 \N +426107 2025-10-28 17:29:45.924858+00 2025-10-28 17:29:45.924865+00 f t SUBTOTAL 70000.00 1 10743 \N +422222 2025-10-27 23:53:40.875547+00 2025-10-27 23:53:40.875556+00 f t SUBTOTAL 78000.00 1 10658 \N +422223 2025-10-27 23:53:40.877321+00 2025-10-27 23:53:40.877328+00 f t COSTO_SERVICIO 0.00 2 10658 \N +422224 2025-10-27 23:53:40.878804+00 2025-10-27 23:53:40.87881+00 f t DESCUENTO 0.00 3 10658 \N +422225 2025-10-27 23:53:40.880072+00 2025-10-27 23:53:40.880078+00 f t TOTAL 78000.00 4 10658 \N +422226 2025-10-27 23:53:40.881264+00 2025-10-27 23:53:40.88127+00 f t ADELANTO 13000.00 5 10658 \N +426108 2025-10-28 17:29:45.926449+00 2025-10-28 17:29:45.926455+00 f t COSTO_SERVICIO 0.00 2 10743 \N +426109 2025-10-28 17:29:45.927464+00 2025-10-28 17:29:45.927471+00 f t DESCUENTO 0.00 3 10743 \N +426110 2025-10-28 17:29:45.928337+00 2025-10-28 17:29:45.928342+00 f t TOTAL 70000.00 4 10743 \N +426111 2025-10-28 17:29:45.929187+00 2025-10-28 17:29:45.929192+00 f t ADELANTO 19000.00 5 10743 \N +436167 2025-10-30 15:59:01.456391+00 2025-10-30 15:59:01.456399+00 f t SUBTOTAL 92000.00 1 10981 \N +436168 2025-10-30 15:59:01.458636+00 2025-10-30 15:59:01.458645+00 f t COSTO_SERVICIO 0.00 2 10981 \N +436169 2025-10-30 15:59:01.459936+00 2025-10-30 15:59:01.459944+00 f t DESCUENTO 9200.00 3 10981 \N +436170 2025-10-30 15:59:01.461147+00 2025-10-30 15:59:01.461153+00 f t TOTAL 82800.00 4 10981 \N +436171 2025-10-30 15:59:01.46226+00 2025-10-30 15:59:01.462266+00 f t ADELANTO 22000.00 5 10981 \N +422252 2025-10-27 23:56:09.850572+00 2025-10-27 23:56:09.85058+00 f t SUBTOTAL 46000.00 1 10659 \N +422253 2025-10-27 23:56:09.852162+00 2025-10-27 23:56:09.852171+00 f t COSTO_SERVICIO 0.00 2 10659 \N +422254 2025-10-27 23:56:09.853591+00 2025-10-27 23:56:09.853599+00 f t DESCUENTO 0.00 3 10659 \N +422255 2025-10-27 23:56:09.855062+00 2025-10-27 23:56:09.85507+00 f t TOTAL 46000.00 4 10659 \N +422256 2025-10-27 23:56:09.856623+00 2025-10-27 23:56:09.856629+00 f t ADELANTO 11000.00 5 10659 \N +436982 2025-10-30 18:20:26.745696+00 2025-10-30 18:20:26.745706+00 f t SUBTOTAL 53700.00 1 10996 \N +436983 2025-10-30 18:20:26.747849+00 2025-10-30 18:20:26.747859+00 f t COSTO_SERVICIO 0.00 2 10996 \N +436984 2025-10-30 18:20:26.749203+00 2025-10-30 18:20:26.749209+00 f t DESCUENTO 0.00 3 10996 \N +436985 2025-10-30 18:20:26.75027+00 2025-10-30 18:20:26.750279+00 f t TOTAL 53700.00 4 10996 \N +436986 2025-10-30 18:20:26.751561+00 2025-10-30 18:20:26.75157+00 f t ADELANTO 13200.00 5 10996 \N +437177 2025-10-30 19:37:48.8334+00 2025-10-30 19:37:48.833411+00 f t SUBTOTAL 61400.00 1 11000 \N +422302 2025-10-28 00:03:51.178797+00 2025-10-28 00:03:51.178809+00 f t SUBTOTAL 78000.00 1 10660 \N +422303 2025-10-28 00:03:51.180627+00 2025-10-28 00:03:51.180635+00 f t COSTO_SERVICIO 0.00 2 10660 \N +422304 2025-10-28 00:03:51.182033+00 2025-10-28 00:03:51.182042+00 f t DESCUENTO 0.00 3 10660 \N +422305 2025-10-28 00:03:51.183323+00 2025-10-28 00:03:51.183332+00 f t TOTAL 78000.00 4 10660 \N +422306 2025-10-28 00:03:51.184728+00 2025-10-28 00:03:51.184737+00 f t ADELANTO 21500.00 5 10660 \N +427912 2025-10-28 23:41:24.451817+00 2025-10-28 23:41:24.451824+00 f t SUBTOTAL 46000.00 1 10796 \N +422312 2025-10-28 00:06:34.884058+00 2025-10-28 00:06:34.884067+00 f t SUBTOTAL 0.00 1 10661 \N +422313 2025-10-28 00:06:34.886627+00 2025-10-28 00:06:34.886636+00 f t COSTO_SERVICIO 0.00 2 10661 \N +422314 2025-10-28 00:06:34.887903+00 2025-10-28 00:06:34.887909+00 f t DESCUENTO 0.00 3 10661 \N +422315 2025-10-28 00:06:34.88894+00 2025-10-28 00:06:34.888944+00 f t TOTAL 0.00 4 10661 \N +422316 2025-10-28 00:06:34.889999+00 2025-10-28 00:06:34.890004+00 f t ADELANTO 0.00 5 10661 \N +427913 2025-10-28 23:41:24.45361+00 2025-10-28 23:41:24.453616+00 f t COSTO_SERVICIO 0.00 2 10796 \N +427914 2025-10-28 23:41:24.455162+00 2025-10-28 23:41:24.45517+00 f t DESCUENTO 0.00 3 10796 \N +427915 2025-10-28 23:41:24.456361+00 2025-10-28 23:41:24.456367+00 f t TOTAL 46000.00 4 10796 \N +427916 2025-10-28 23:41:24.457473+00 2025-10-28 23:41:24.457479+00 f t ADELANTO 11000.00 5 10796 \N +422327 2025-10-28 00:15:05.789738+00 2025-10-28 00:15:05.789752+00 f t SUBTOTAL 13200.00 1 10662 \N +422328 2025-10-28 00:15:05.792864+00 2025-10-28 00:15:05.792877+00 f t COSTO_SERVICIO 0.00 2 10662 \N +422329 2025-10-28 00:15:05.796708+00 2025-10-28 00:15:05.796721+00 f t DESCUENTO 0.00 3 10662 \N +422330 2025-10-28 00:15:05.80023+00 2025-10-28 00:15:05.800245+00 f t TOTAL 13200.00 4 10662 \N +422331 2025-10-28 00:15:05.802547+00 2025-10-28 00:15:05.80256+00 f t ADELANTO 13200.00 5 10662 \N +422337 2025-10-28 00:15:48.750345+00 2025-10-28 00:15:48.750354+00 f t SUBTOTAL 0.00 1 10663 \N +422338 2025-10-28 00:15:48.751678+00 2025-10-28 00:15:48.751684+00 f t COSTO_SERVICIO 0.00 2 10663 \N +422339 2025-10-28 00:15:48.75264+00 2025-10-28 00:15:48.752646+00 f t DESCUENTO 0.00 3 10663 \N +422340 2025-10-28 00:15:48.753621+00 2025-10-28 00:15:48.753627+00 f t TOTAL 0.00 4 10663 \N +422341 2025-10-28 00:15:48.754548+00 2025-10-28 00:15:48.754553+00 f t ADELANTO 0.00 5 10663 \N +422347 2025-10-28 00:16:25.52277+00 2025-10-28 00:16:25.522779+00 f t SUBTOTAL 0.00 1 10664 \N +422348 2025-10-28 00:16:25.52404+00 2025-10-28 00:16:25.524046+00 f t COSTO_SERVICIO 0.00 2 10664 \N +422349 2025-10-28 00:16:25.52505+00 2025-10-28 00:16:25.525055+00 f t DESCUENTO 0.00 3 10664 \N +422350 2025-10-28 00:16:25.526049+00 2025-10-28 00:16:25.526054+00 f t TOTAL 0.00 4 10664 \N +422351 2025-10-28 00:16:25.526928+00 2025-10-28 00:16:25.526933+00 f t ADELANTO 0.00 5 10664 \N +422412 2025-10-28 00:18:32.139523+00 2025-10-28 00:18:32.139532+00 f t SUBTOTAL 0.00 1 10665 \N +422413 2025-10-28 00:18:32.141425+00 2025-10-28 00:18:32.141433+00 f t COSTO_SERVICIO 0.00 2 10665 \N +422414 2025-10-28 00:18:32.142905+00 2025-10-28 00:18:32.142913+00 f t DESCUENTO 0.00 3 10665 \N +422415 2025-10-28 00:18:32.144025+00 2025-10-28 00:18:32.144032+00 f t TOTAL 0.00 4 10665 \N +422416 2025-10-28 00:18:32.145172+00 2025-10-28 00:18:32.145177+00 f t ADELANTO 0.00 5 10665 \N +422447 2025-10-28 00:19:31.707734+00 2025-10-28 00:19:31.707743+00 f t SUBTOTAL 0.00 1 10667 \N +422448 2025-10-28 00:19:31.709108+00 2025-10-28 00:19:31.709114+00 f t COSTO_SERVICIO 0.00 2 10667 \N +422449 2025-10-28 00:19:31.710354+00 2025-10-28 00:19:31.710362+00 f t DESCUENTO 0.00 3 10667 \N +422450 2025-10-28 00:19:31.711549+00 2025-10-28 00:19:31.711554+00 f t TOTAL 0.00 4 10667 \N +422451 2025-10-28 00:19:31.712547+00 2025-10-28 00:19:31.712552+00 f t ADELANTO 0.00 5 10667 \N +430442 2025-10-29 13:37:04.683522+00 2025-10-29 13:37:04.683534+00 f t SUBTOTAL 121000.00 1 10841 \N +430443 2025-10-29 13:37:04.685635+00 2025-10-29 13:37:04.685643+00 f t COSTO_SERVICIO 0.00 2 10841 \N +430444 2025-10-29 13:37:04.68709+00 2025-10-29 13:37:04.687098+00 f t DESCUENTO 0.00 3 10841 \N +430445 2025-10-29 13:37:04.688339+00 2025-10-29 13:37:04.688346+00 f t TOTAL 121000.00 4 10841 \N +430446 2025-10-29 13:37:04.689589+00 2025-10-29 13:37:04.689595+00 f t ADELANTO 26000.00 5 10841 \N +466614 2025-11-07 22:26:09.908327+00 2025-11-07 22:26:09.908332+00 f t DESCUENTO 0.00 3 11699 \N +422507 2025-10-28 00:20:13.588038+00 2025-10-28 00:20:13.588046+00 f t SUBTOTAL 0.00 1 10668 \N +422508 2025-10-28 00:20:13.589723+00 2025-10-28 00:20:13.589733+00 f t COSTO_SERVICIO 0.00 2 10668 \N +422509 2025-10-28 00:20:13.591209+00 2025-10-28 00:20:13.591216+00 f t DESCUENTO 0.00 3 10668 \N +422510 2025-10-28 00:20:13.592342+00 2025-10-28 00:20:13.592349+00 f t TOTAL 0.00 4 10668 \N +422511 2025-10-28 00:20:13.593476+00 2025-10-28 00:20:13.593482+00 f t ADELANTO 0.00 5 10668 \N +426677 2025-10-28 19:20:34.871838+00 2025-10-28 19:20:34.871848+00 f t SUBTOTAL 46000.00 1 10758 \N +426678 2025-10-28 19:20:34.873598+00 2025-10-28 19:20:34.873607+00 f t COSTO_SERVICIO 0.00 2 10758 \N +426679 2025-10-28 19:20:34.874833+00 2025-10-28 19:20:34.87484+00 f t DESCUENTO 0.00 3 10758 \N +426680 2025-10-28 19:20:34.876139+00 2025-10-28 19:20:34.876145+00 f t TOTAL 46000.00 4 10758 \N +426681 2025-10-28 19:20:34.877209+00 2025-10-28 19:20:34.877215+00 f t ADELANTO 11000.00 5 10758 \N +422537 2025-10-28 00:20:59.07659+00 2025-10-28 00:20:59.076598+00 f t SUBTOTAL 46000.00 1 10666 \N +422538 2025-10-28 00:20:59.078488+00 2025-10-28 00:20:59.078494+00 f t COSTO_SERVICIO 0.00 2 10666 \N +422539 2025-10-28 00:20:59.079916+00 2025-10-28 00:20:59.079922+00 f t DESCUENTO 0.00 3 10666 \N +422540 2025-10-28 00:20:59.081765+00 2025-10-28 00:20:59.081773+00 f t TOTAL 46000.00 4 10666 \N +422541 2025-10-28 00:20:59.083636+00 2025-10-28 00:20:59.083642+00 f t ADELANTO 11000.00 5 10666 \N +426832 2025-10-28 20:06:21.02163+00 2025-10-28 20:06:21.021637+00 f t SUBTOTAL 23000.00 1 10764 \N +426833 2025-10-28 20:06:21.023731+00 2025-10-28 20:06:21.023737+00 f t COSTO_SERVICIO 0.00 2 10764 \N +426834 2025-10-28 20:06:21.024863+00 2025-10-28 20:06:21.024869+00 f t DESCUENTO 0.00 3 10764 \N +426835 2025-10-28 20:06:21.026037+00 2025-10-28 20:06:21.026043+00 f t TOTAL 23000.00 4 10764 \N +426836 2025-10-28 20:06:21.027193+00 2025-10-28 20:06:21.027202+00 f t ADELANTO 5500.00 5 10764 \N +422547 2025-10-28 00:41:01.641192+00 2025-10-28 00:41:01.6412+00 f t SUBTOTAL 0.00 1 10669 \N +422548 2025-10-28 00:41:01.642895+00 2025-10-28 00:41:01.642903+00 f t COSTO_SERVICIO 0.00 2 10669 \N +422549 2025-10-28 00:41:01.64441+00 2025-10-28 00:41:01.644417+00 f t DESCUENTO 0.00 3 10669 \N +422550 2025-10-28 00:41:01.645679+00 2025-10-28 00:41:01.645686+00 f t TOTAL 0.00 4 10669 \N +422551 2025-10-28 00:41:01.646866+00 2025-10-28 00:41:01.646871+00 f t ADELANTO 0.00 5 10669 \N +426977 2025-10-28 20:23:18.151384+00 2025-10-28 20:23:18.151395+00 f t SUBTOTAL 13200.00 1 10769 \N +426978 2025-10-28 20:23:18.153522+00 2025-10-28 20:23:18.153532+00 f t COSTO_SERVICIO 0.00 2 10769 \N +426979 2025-10-28 20:23:18.154879+00 2025-10-28 20:23:18.154887+00 f t DESCUENTO 0.00 3 10769 \N +426980 2025-10-28 20:23:18.156251+00 2025-10-28 20:23:18.156259+00 f t TOTAL 13200.00 4 10769 \N +426981 2025-10-28 20:23:18.157509+00 2025-10-28 20:23:18.157517+00 f t ADELANTO 13200.00 5 10769 \N +448342 2025-11-03 14:03:41.513157+00 2025-11-03 14:03:41.51317+00 f t SUBTOTAL 0.00 1 11273 \N +448343 2025-11-03 14:03:41.514866+00 2025-11-03 14:03:41.514873+00 f t COSTO_SERVICIO 0.00 2 11273 \N +448344 2025-11-03 14:03:41.516027+00 2025-11-03 14:03:41.516033+00 f t DESCUENTO 0.00 3 11273 \N +448345 2025-11-03 14:03:41.517011+00 2025-11-03 14:03:41.517017+00 f t TOTAL 0.00 4 11273 \N +448346 2025-11-03 14:03:41.517987+00 2025-11-03 14:03:41.517992+00 f t ADELANTO 0.00 5 11273 \N +428512 2025-10-29 00:03:18.88523+00 2025-10-29 00:03:18.885243+00 f t SUBTOTAL 55000.00 1 10802 \N +428513 2025-10-29 00:03:18.887564+00 2025-10-29 00:03:18.887575+00 f t COSTO_SERVICIO 0.00 2 10802 \N +428514 2025-10-29 00:03:18.889353+00 2025-10-29 00:03:18.889362+00 f t DESCUENTO 0.00 3 10802 \N +428515 2025-10-29 00:03:18.89077+00 2025-10-29 00:03:18.890776+00 f t TOTAL 55000.00 4 10802 \N +428516 2025-10-29 00:03:18.892536+00 2025-10-29 00:03:18.892542+00 f t ADELANTO 11000.00 5 10802 \N +429142 2025-10-29 03:26:38.770288+00 2025-10-29 03:26:38.770298+00 f t SUBTOTAL 70000.00 1 10818 \N +429143 2025-10-29 03:26:38.77206+00 2025-10-29 03:26:38.772067+00 f t COSTO_SERVICIO 0.00 2 10818 \N +429144 2025-10-29 03:26:38.773261+00 2025-10-29 03:26:38.773267+00 f t DESCUENTO 0.00 3 10818 \N +429145 2025-10-29 03:26:38.774277+00 2025-10-29 03:26:38.774282+00 f t TOTAL 70000.00 4 10818 \N +429146 2025-10-29 03:26:38.77539+00 2025-10-29 03:26:38.775398+00 f t ADELANTO 19000.00 5 10818 \N +429362 2025-10-29 04:47:16.795631+00 2025-10-29 04:47:16.795641+00 f t SUBTOTAL 55000.00 1 10822 \N +429363 2025-10-29 04:47:16.79721+00 2025-10-29 04:47:16.797219+00 f t COSTO_SERVICIO 0.00 2 10822 \N +429364 2025-10-29 04:47:16.798638+00 2025-10-29 04:47:16.798645+00 f t DESCUENTO 0.00 3 10822 \N +429365 2025-10-29 04:47:16.79985+00 2025-10-29 04:47:16.799856+00 f t TOTAL 55000.00 4 10822 \N +429366 2025-10-29 04:47:16.801005+00 2025-10-29 04:47:16.801012+00 f t ADELANTO 11000.00 5 10822 \N +422682 2025-10-28 01:23:29.112724+00 2025-10-28 01:23:29.112732+00 f t SUBTOTAL 54000.00 1 10671 \N +422683 2025-10-28 01:23:29.114353+00 2025-10-28 01:23:29.114359+00 f t COSTO_SERVICIO 0.00 2 10671 \N +422684 2025-10-28 01:23:29.115583+00 2025-10-28 01:23:29.11559+00 f t DESCUENTO 0.00 3 10671 \N +422685 2025-10-28 01:23:29.116731+00 2025-10-28 01:23:29.116737+00 f t TOTAL 54000.00 4 10671 \N +422686 2025-10-28 01:23:29.117793+00 2025-10-28 01:23:29.117798+00 f t ADELANTO 13500.00 5 10671 \N +450132 2025-11-03 19:52:39.865759+00 2025-11-03 19:52:39.865767+00 f t SUBTOTAL 46000.00 1 11320 \N +450133 2025-11-03 19:52:39.867491+00 2025-11-03 19:52:39.867497+00 f t COSTO_SERVICIO 0.00 2 11320 \N +450134 2025-11-03 19:52:39.868621+00 2025-11-03 19:52:39.868626+00 f t DESCUENTO 0.00 3 11320 \N +450135 2025-11-03 19:52:39.869668+00 2025-11-03 19:52:39.869675+00 f t TOTAL 46000.00 4 11320 \N +450136 2025-11-03 19:52:39.87082+00 2025-11-03 19:52:39.870827+00 f t ADELANTO 11000.00 5 11320 \N +430232 2025-10-29 12:47:38.266811+00 2025-10-29 12:47:38.266822+00 f t SUBTOTAL 0.00 1 10835 \N +430233 2025-10-29 12:47:38.268913+00 2025-10-29 12:47:38.268922+00 f t COSTO_SERVICIO 0.00 2 10835 \N +430234 2025-10-29 12:47:38.270269+00 2025-10-29 12:47:38.270277+00 f t DESCUENTO 0.00 3 10835 \N +430235 2025-10-29 12:47:38.27142+00 2025-10-29 12:47:38.271427+00 f t TOTAL 0.00 4 10835 \N +430236 2025-10-29 12:47:38.272702+00 2025-10-29 12:47:38.272709+00 f t ADELANTO 0.00 5 10835 \N +422747 2025-10-28 01:27:23.512199+00 2025-10-28 01:27:23.51221+00 f t SUBTOTAL 46000.00 1 10670 \N +422748 2025-10-28 01:27:23.513892+00 2025-10-28 01:27:23.5139+00 f t COSTO_SERVICIO 0.00 2 10670 \N +422749 2025-10-28 01:27:23.515158+00 2025-10-28 01:27:23.515164+00 f t DESCUENTO 0.00 3 10670 \N +422750 2025-10-28 01:27:23.516268+00 2025-10-28 01:27:23.516273+00 f t TOTAL 46000.00 4 10670 \N +422751 2025-10-28 01:27:23.51724+00 2025-10-28 01:27:23.517245+00 f t ADELANTO 11000.00 5 10670 \N +430957 2025-10-29 14:47:12.225905+00 2025-10-29 14:47:12.225914+00 f t SUBTOTAL 54000.00 1 10851 \N +430958 2025-10-29 14:47:12.227409+00 2025-10-29 14:47:12.227415+00 f t COSTO_SERVICIO 0.00 2 10851 \N +430959 2025-10-29 14:47:12.228379+00 2025-10-29 14:47:12.228384+00 f t DESCUENTO 0.00 3 10851 \N +430960 2025-10-29 14:47:12.229384+00 2025-10-29 14:47:12.229389+00 f t TOTAL 54000.00 4 10851 \N +430961 2025-10-29 14:47:12.230231+00 2025-10-29 14:47:12.230235+00 f t ADELANTO 13500.00 5 10851 \N +422757 2025-10-28 01:45:40.869471+00 2025-10-28 01:45:40.869483+00 f t SUBTOTAL 0.00 1 10672 \N +422758 2025-10-28 01:45:40.870836+00 2025-10-28 01:45:40.870843+00 f t COSTO_SERVICIO 0.00 2 10672 \N +422759 2025-10-28 01:45:40.872068+00 2025-10-28 01:45:40.872075+00 f t DESCUENTO 0.00 3 10672 \N +422760 2025-10-28 01:45:40.872989+00 2025-10-28 01:45:40.872994+00 f t TOTAL 0.00 4 10672 \N +422761 2025-10-28 01:45:40.873851+00 2025-10-28 01:45:40.873857+00 f t ADELANTO 0.00 5 10672 \N +466615 2025-11-07 22:26:09.909432+00 2025-11-07 22:26:09.909439+00 f t TOTAL 0.00 4 11699 \N +456347 2025-11-05 13:14:01.570082+00 2025-11-05 13:14:01.570093+00 f t SUBTOTAL 54000.00 1 11458 \N +456348 2025-11-05 13:14:01.572182+00 2025-11-05 13:14:01.572191+00 f t COSTO_SERVICIO 0.00 2 11458 \N +456349 2025-11-05 13:14:01.574175+00 2025-11-05 13:14:01.574189+00 f t DESCUENTO 0.00 3 11458 \N +456350 2025-11-05 13:14:01.576225+00 2025-11-05 13:14:01.576235+00 f t TOTAL 54000.00 4 11458 \N +456351 2025-11-05 13:14:01.578159+00 2025-11-05 13:14:01.578169+00 f t ADELANTO 13500.00 5 11458 \N +422812 2025-10-28 01:51:50.032725+00 2025-10-28 01:51:50.032732+00 f t SUBTOTAL 30000.00 1 10673 \N +422813 2025-10-28 01:51:50.034292+00 2025-10-28 01:51:50.034299+00 f t COSTO_SERVICIO 0.00 2 10673 \N +422814 2025-10-28 01:51:50.035484+00 2025-10-28 01:51:50.03549+00 f t DESCUENTO 0.00 3 10673 \N +422815 2025-10-28 01:51:50.037085+00 2025-10-28 01:51:50.037092+00 f t TOTAL 30000.00 4 10673 \N +422816 2025-10-28 01:51:50.038295+00 2025-10-28 01:51:50.0383+00 f t ADELANTO 30000.00 5 10673 \N +426687 2025-10-28 19:21:45.524842+00 2025-10-28 19:21:45.524852+00 f t SUBTOTAL 0.00 1 10759 \N +426688 2025-10-28 19:21:45.526318+00 2025-10-28 19:21:45.526325+00 f t COSTO_SERVICIO 0.00 2 10759 \N +426689 2025-10-28 19:21:45.527561+00 2025-10-28 19:21:45.527567+00 f t DESCUENTO 0.00 3 10759 \N +426690 2025-10-28 19:21:45.528742+00 2025-10-28 19:21:45.528748+00 f t TOTAL 0.00 4 10759 \N +426691 2025-10-28 19:21:45.5297+00 2025-10-28 19:21:45.529705+00 f t ADELANTO 0.00 5 10759 \N +437178 2025-10-30 19:37:48.835828+00 2025-10-30 19:37:48.835839+00 f t COSTO_SERVICIO 0.00 2 11000 \N +437179 2025-10-30 19:37:48.837589+00 2025-10-30 19:37:48.837598+00 f t DESCUENTO 0.00 3 11000 \N +437180 2025-10-30 19:37:48.838804+00 2025-10-30 19:37:48.838812+00 f t TOTAL 61400.00 4 11000 \N +437181 2025-10-30 19:37:48.840032+00 2025-10-30 19:37:48.840039+00 f t ADELANTO 15400.00 5 11000 \N +437352 2025-10-30 20:02:39.512646+00 2025-10-30 20:02:39.512657+00 f t SUBTOTAL 46000.00 1 11003 \N +437353 2025-10-30 20:02:39.514703+00 2025-10-30 20:02:39.514713+00 f t COSTO_SERVICIO 0.00 2 11003 \N +437354 2025-10-30 20:02:39.515976+00 2025-10-30 20:02:39.515982+00 f t DESCUENTO 0.00 3 11003 \N +437355 2025-10-30 20:02:39.517329+00 2025-10-30 20:02:39.517334+00 f t TOTAL 46000.00 4 11003 \N +437356 2025-10-30 20:02:39.518456+00 2025-10-30 20:02:39.518461+00 f t ADELANTO 11000.00 5 11003 \N +427262 2025-10-28 21:06:38.090461+00 2025-10-28 21:06:38.090474+00 f t SUBTOTAL 0.00 1 10779 \N +427263 2025-10-28 21:06:38.092841+00 2025-10-28 21:06:38.092854+00 f t COSTO_SERVICIO 0.00 2 10779 \N +427264 2025-10-28 21:06:38.094432+00 2025-10-28 21:06:38.094443+00 f t DESCUENTO 0.00 3 10779 \N +427265 2025-10-28 21:06:38.096092+00 2025-10-28 21:06:38.096103+00 f t TOTAL 0.00 4 10779 \N +427266 2025-10-28 21:06:38.097625+00 2025-10-28 21:06:38.097634+00 f t ADELANTO 0.00 5 10779 \N +422857 2025-10-28 02:21:24.008035+00 2025-10-28 02:21:24.008044+00 f t SUBTOTAL 46000.00 1 10674 \N +422858 2025-10-28 02:21:24.00984+00 2025-10-28 02:21:24.009847+00 f t COSTO_SERVICIO 0.00 2 10674 \N +422859 2025-10-28 02:21:24.011457+00 2025-10-28 02:21:24.011464+00 f t DESCUENTO 0.00 3 10674 \N +422860 2025-10-28 02:21:24.012835+00 2025-10-28 02:21:24.012842+00 f t TOTAL 46000.00 4 10674 \N +422861 2025-10-28 02:21:24.013944+00 2025-10-28 02:21:24.013949+00 f t ADELANTO 11000.00 5 10674 \N +422937 2025-10-28 02:27:57.899868+00 2025-10-28 02:27:57.899877+00 f t SUBTOTAL 285500.00 1 10675 \N +422938 2025-10-28 02:27:57.901495+00 2025-10-28 02:27:57.901501+00 f t COSTO_SERVICIO 0.00 2 10675 \N +422939 2025-10-28 02:27:57.902637+00 2025-10-28 02:27:57.902645+00 f t DESCUENTO 0.00 3 10675 \N +422940 2025-10-28 02:27:57.903871+00 2025-10-28 02:27:57.903877+00 f t TOTAL 285500.00 4 10675 \N +422941 2025-10-28 02:27:57.905012+00 2025-10-28 02:27:57.905018+00 f t ADELANTO 79000.00 5 10675 \N +422972 2025-10-28 02:42:10.140292+00 2025-10-28 02:42:10.140301+00 f t SUBTOTAL 70000.00 1 10676 \N +422973 2025-10-28 02:42:10.142553+00 2025-10-28 02:42:10.142564+00 f t COSTO_SERVICIO 0.00 2 10676 \N +422974 2025-10-28 02:42:10.145645+00 2025-10-28 02:42:10.145652+00 f t DESCUENTO 0.00 3 10676 \N +422975 2025-10-28 02:42:10.147413+00 2025-10-28 02:42:10.147421+00 f t TOTAL 70000.00 4 10676 \N +422976 2025-10-28 02:42:10.148736+00 2025-10-28 02:42:10.148741+00 f t ADELANTO 19000.00 5 10676 \N +429912 2025-10-29 11:56:04.668645+00 2025-10-29 11:56:04.668655+00 f t SUBTOTAL 46000.00 1 10829 \N +429913 2025-10-29 11:56:04.671058+00 2025-10-29 11:56:04.671069+00 f t COSTO_SERVICIO 0.00 2 10829 \N +429914 2025-10-29 11:56:04.67278+00 2025-10-29 11:56:04.672791+00 f t DESCUENTO 0.00 3 10829 \N +429915 2025-10-29 11:56:04.674178+00 2025-10-29 11:56:04.674185+00 f t TOTAL 46000.00 4 10829 \N +429916 2025-10-29 11:56:04.675709+00 2025-10-29 11:56:04.675716+00 f t ADELANTO 11000.00 5 10829 \N +423007 2025-10-28 02:53:00.518432+00 2025-10-28 02:53:00.518441+00 f t SUBTOTAL 23000.00 1 10677 \N +423008 2025-10-28 02:53:00.520199+00 2025-10-28 02:53:00.520206+00 f t COSTO_SERVICIO 0.00 2 10677 \N +423009 2025-10-28 02:53:00.521533+00 2025-10-28 02:53:00.521539+00 f t DESCUENTO 0.00 3 10677 \N +423010 2025-10-28 02:53:00.523077+00 2025-10-28 02:53:00.523085+00 f t TOTAL 23000.00 4 10677 \N +423011 2025-10-28 02:53:00.524483+00 2025-10-28 02:53:00.52449+00 f t ADELANTO 5500.00 5 10677 \N +423017 2025-10-28 03:03:57.207127+00 2025-10-28 03:03:57.207156+00 f t SUBTOTAL 0.00 1 10678 \N +423018 2025-10-28 03:03:57.208659+00 2025-10-28 03:03:57.208665+00 f t COSTO_SERVICIO 0.00 2 10678 \N +423019 2025-10-28 03:03:57.209798+00 2025-10-28 03:03:57.209804+00 f t DESCUENTO 0.00 3 10678 \N +423020 2025-10-28 03:03:57.210731+00 2025-10-28 03:03:57.210736+00 f t TOTAL 0.00 4 10678 \N +423021 2025-10-28 03:03:57.211716+00 2025-10-28 03:03:57.211722+00 f t ADELANTO 0.00 5 10678 \N +423027 2025-10-28 03:04:04.907763+00 2025-10-28 03:04:04.907773+00 f t SUBTOTAL 0.00 1 10679 \N +423028 2025-10-28 03:04:04.909662+00 2025-10-28 03:04:04.909671+00 f t COSTO_SERVICIO 0.00 2 10679 \N +423029 2025-10-28 03:04:04.911543+00 2025-10-28 03:04:04.91155+00 f t DESCUENTO 0.00 3 10679 \N +423030 2025-10-28 03:04:04.913069+00 2025-10-28 03:04:04.913077+00 f t TOTAL 0.00 4 10679 \N +423031 2025-10-28 03:04:04.914665+00 2025-10-28 03:04:04.914674+00 f t ADELANTO 0.00 5 10679 \N +423037 2025-10-28 03:04:30.771616+00 2025-10-28 03:04:30.771625+00 f t SUBTOTAL 0.00 1 10680 \N +423038 2025-10-28 03:04:30.773055+00 2025-10-28 03:04:30.773062+00 f t COSTO_SERVICIO 0.00 2 10680 \N +423039 2025-10-28 03:04:30.774423+00 2025-10-28 03:04:30.774432+00 f t DESCUENTO 0.00 3 10680 \N +423040 2025-10-28 03:04:30.77553+00 2025-10-28 03:04:30.775536+00 f t TOTAL 0.00 4 10680 \N +423041 2025-10-28 03:04:30.776718+00 2025-10-28 03:04:30.776723+00 f t ADELANTO 0.00 5 10680 \N +423047 2025-10-28 03:05:02.802147+00 2025-10-28 03:05:02.802162+00 f t SUBTOTAL 0.00 1 10681 \N +423048 2025-10-28 03:05:02.808773+00 2025-10-28 03:05:02.808788+00 f t COSTO_SERVICIO 0.00 2 10681 \N +423049 2025-10-28 03:05:02.815578+00 2025-10-28 03:05:02.815592+00 f t DESCUENTO 0.00 3 10681 \N +423050 2025-10-28 03:05:02.820321+00 2025-10-28 03:05:02.820335+00 f t TOTAL 0.00 4 10681 \N +423051 2025-10-28 03:05:02.823213+00 2025-10-28 03:05:02.823227+00 f t ADELANTO 0.00 5 10681 \N +430737 2025-10-29 14:19:52.367674+00 2025-10-29 14:19:52.367685+00 f t SUBTOTAL 46000.00 1 10848 \N +430738 2025-10-29 14:19:52.369752+00 2025-10-29 14:19:52.369763+00 f t COSTO_SERVICIO 0.00 2 10848 \N +430739 2025-10-29 14:19:52.375094+00 2025-10-29 14:19:52.375104+00 f t DESCUENTO 0.00 3 10848 \N +430740 2025-10-29 14:19:52.378157+00 2025-10-29 14:19:52.37817+00 f t TOTAL 46000.00 4 10848 \N +430741 2025-10-29 14:19:52.381445+00 2025-10-29 14:19:52.381455+00 f t ADELANTO 11000.00 5 10848 \N +425907 2025-10-28 16:57:09.59066+00 2025-10-28 16:57:09.59067+00 f t SUBTOTAL 0.00 1 10739 \N +425908 2025-10-28 16:57:09.592733+00 2025-10-28 16:57:09.592741+00 f t COSTO_SERVICIO 0.00 2 10739 \N +425909 2025-10-28 16:57:09.59444+00 2025-10-28 16:57:09.594452+00 f t DESCUENTO 0.00 3 10739 \N +425910 2025-10-28 16:57:09.596457+00 2025-10-28 16:57:09.596466+00 f t TOTAL 0.00 4 10739 \N +425911 2025-10-28 16:57:09.598638+00 2025-10-28 16:57:09.598651+00 f t ADELANTO 0.00 5 10739 \N +446257 2025-11-01 21:35:37.971399+00 2025-11-01 21:35:37.971407+00 f t SUBTOTAL 55000.00 1 11228 \N +446258 2025-11-01 21:35:37.97308+00 2025-11-01 21:35:37.973087+00 f t COSTO_SERVICIO 0.00 2 11228 \N +446259 2025-11-01 21:35:37.974088+00 2025-11-01 21:35:37.974094+00 f t DESCUENTO 0.00 3 11228 \N +446260 2025-11-01 21:35:37.975042+00 2025-11-01 21:35:37.975048+00 f t TOTAL 55000.00 4 11228 \N +446261 2025-11-01 21:35:37.975988+00 2025-11-01 21:35:37.975993+00 f t ADELANTO 11000.00 5 11228 \N +426992 2025-10-28 20:46:17.528248+00 2025-10-28 20:46:17.528256+00 f t SUBTOTAL 55000.00 1 10770 \N +426993 2025-10-28 20:46:17.529889+00 2025-10-28 20:46:17.529895+00 f t COSTO_SERVICIO 0.00 2 10770 \N +426994 2025-10-28 20:46:17.531117+00 2025-10-28 20:46:17.531122+00 f t DESCUENTO 0.00 3 10770 \N +426995 2025-10-28 20:46:17.532374+00 2025-10-28 20:46:17.53238+00 f t TOTAL 55000.00 4 10770 \N +426996 2025-10-28 20:46:17.533438+00 2025-10-28 20:46:17.533443+00 f t ADELANTO 11000.00 5 10770 \N +427272 2025-10-28 21:07:43.04549+00 2025-10-28 21:07:43.045499+00 f t SUBTOTAL 0.00 1 10780 \N +427273 2025-10-28 21:07:43.047034+00 2025-10-28 21:07:43.047041+00 f t COSTO_SERVICIO 0.00 2 10780 \N +427274 2025-10-28 21:07:43.048387+00 2025-10-28 21:07:43.048394+00 f t DESCUENTO 0.00 3 10780 \N +427275 2025-10-28 21:07:43.049511+00 2025-10-28 21:07:43.049517+00 f t TOTAL 0.00 4 10780 \N +427276 2025-10-28 21:07:43.050488+00 2025-10-28 21:07:43.050493+00 f t ADELANTO 0.00 5 10780 \N +427442 2025-10-28 22:21:40.502545+00 2025-10-28 22:21:40.502559+00 f t SUBTOTAL 0.00 1 10788 \N +427443 2025-10-28 22:21:40.504855+00 2025-10-28 22:21:40.504866+00 f t COSTO_SERVICIO 0.00 2 10788 \N +427444 2025-10-28 22:21:40.506244+00 2025-10-28 22:21:40.506255+00 f t DESCUENTO 0.00 3 10788 \N +427445 2025-10-28 22:21:40.507613+00 2025-10-28 22:21:40.507622+00 f t TOTAL 0.00 4 10788 \N +427446 2025-10-28 22:21:40.508918+00 2025-10-28 22:21:40.508927+00 f t ADELANTO 0.00 5 10788 \N +428407 2025-10-28 23:59:51.882719+00 2025-10-28 23:59:51.882729+00 f t SUBTOTAL 0.00 1 10801 \N +428408 2025-10-28 23:59:51.88426+00 2025-10-28 23:59:51.884271+00 f t COSTO_SERVICIO 0.00 2 10801 \N +428409 2025-10-28 23:59:51.885661+00 2025-10-28 23:59:51.885671+00 f t DESCUENTO 0.00 3 10801 \N +428410 2025-10-28 23:59:51.886744+00 2025-10-28 23:59:51.886751+00 f t TOTAL 0.00 4 10801 \N +428411 2025-10-28 23:59:51.887711+00 2025-10-28 23:59:51.887717+00 f t ADELANTO 0.00 5 10801 \N +423242 2025-10-28 03:09:00.899077+00 2025-10-28 03:09:00.899085+00 f t SUBTOTAL 34000.00 1 10682 \N +423243 2025-10-28 03:09:00.90076+00 2025-10-28 03:09:00.900766+00 f t COSTO_SERVICIO 0.00 2 10682 \N +423244 2025-10-28 03:09:00.902122+00 2025-10-28 03:09:00.902128+00 f t DESCUENTO 0.00 3 10682 \N +423245 2025-10-28 03:09:00.903428+00 2025-10-28 03:09:00.903434+00 f t TOTAL 34000.00 4 10682 \N +423246 2025-10-28 03:09:00.904604+00 2025-10-28 03:09:00.904611+00 f t ADELANTO 34000.00 5 10682 \N +423247 2025-10-28 03:09:01.540042+00 2025-10-28 03:09:01.540055+00 f t SUBTOTAL 0.00 1 10683 \N +423248 2025-10-28 03:09:01.543863+00 2025-10-28 03:09:01.543878+00 f t COSTO_SERVICIO 0.00 2 10683 \N +423249 2025-10-28 03:09:01.547067+00 2025-10-28 03:09:01.547082+00 f t DESCUENTO 0.00 3 10683 \N +423250 2025-10-28 03:09:01.549662+00 2025-10-28 03:09:01.549676+00 f t TOTAL 0.00 4 10683 \N +423251 2025-10-28 03:09:01.552038+00 2025-10-28 03:09:01.552049+00 f t ADELANTO 0.00 5 10683 \N +429792 2025-10-29 10:34:47.706896+00 2025-10-29 10:34:47.706906+00 f t SUBTOTAL 0.00 1 10825 \N +429793 2025-10-29 10:34:47.708863+00 2025-10-29 10:34:47.708871+00 f t COSTO_SERVICIO 0.00 2 10825 \N +429794 2025-10-29 10:34:47.710006+00 2025-10-29 10:34:47.710012+00 f t DESCUENTO 0.00 3 10825 \N +429795 2025-10-29 10:34:47.711017+00 2025-10-29 10:34:47.711022+00 f t TOTAL 0.00 4 10825 \N +429796 2025-10-29 10:34:47.712167+00 2025-10-29 10:34:47.712172+00 f t ADELANTO 0.00 5 10825 \N +423267 2025-10-28 03:09:35.664971+00 2025-10-28 03:09:35.664982+00 f t SUBTOTAL 46000.00 1 10685 \N +423268 2025-10-28 03:09:35.666938+00 2025-10-28 03:09:35.666946+00 f t COSTO_SERVICIO 0.00 2 10685 \N +423269 2025-10-28 03:09:35.668366+00 2025-10-28 03:09:35.668374+00 f t DESCUENTO 0.00 3 10685 \N +423270 2025-10-28 03:09:35.66986+00 2025-10-28 03:09:35.669868+00 f t TOTAL 46000.00 4 10685 \N +423271 2025-10-28 03:09:35.671229+00 2025-10-28 03:09:35.671237+00 f t ADELANTO 11000.00 5 10685 \N +423277 2025-10-28 03:10:00.308009+00 2025-10-28 03:10:00.308019+00 f t SUBTOTAL 0.00 1 10686 \N +423278 2025-10-28 03:10:00.309498+00 2025-10-28 03:10:00.309509+00 f t COSTO_SERVICIO 0.00 2 10686 \N +423279 2025-10-28 03:10:00.312412+00 2025-10-28 03:10:00.312424+00 f t DESCUENTO 0.00 3 10686 \N +423280 2025-10-28 03:10:00.314924+00 2025-10-28 03:10:00.314932+00 f t TOTAL 0.00 4 10686 \N +423281 2025-10-28 03:10:00.316341+00 2025-10-28 03:10:00.316347+00 f t ADELANTO 0.00 5 10686 \N +423287 2025-10-28 03:13:54.241473+00 2025-10-28 03:13:54.241483+00 f t SUBTOTAL 0.00 1 10687 \N +423288 2025-10-28 03:13:54.242943+00 2025-10-28 03:13:54.242951+00 f t COSTO_SERVICIO 0.00 2 10687 \N +423289 2025-10-28 03:13:54.244186+00 2025-10-28 03:13:54.244193+00 f t DESCUENTO 0.00 3 10687 \N +423290 2025-10-28 03:13:54.245366+00 2025-10-28 03:13:54.245373+00 f t TOTAL 0.00 4 10687 \N +423291 2025-10-28 03:13:54.246524+00 2025-10-28 03:13:54.246531+00 f t ADELANTO 0.00 5 10687 \N +430142 2025-10-29 12:36:50.512376+00 2025-10-29 12:36:50.512386+00 f t SUBTOTAL 0.00 1 10732 \N +430143 2025-10-29 12:36:50.513839+00 2025-10-29 12:36:50.513848+00 f t COSTO_SERVICIO 0.00 2 10732 \N +430144 2025-10-29 12:36:50.515078+00 2025-10-29 12:36:50.515084+00 f t DESCUENTO 0.00 3 10732 \N +430145 2025-10-29 12:36:50.516487+00 2025-10-29 12:36:50.516493+00 f t TOTAL 0.00 4 10732 \N +430146 2025-10-29 12:36:50.51747+00 2025-10-29 12:36:50.517475+00 f t ADELANTO 0.00 5 10732 \N +430642 2025-10-29 14:08:41.777572+00 2025-10-29 14:08:41.777581+00 f t SUBTOTAL 0.00 1 10844 \N +430643 2025-10-29 14:08:41.779466+00 2025-10-29 14:08:41.779473+00 f t COSTO_SERVICIO 0.00 2 10844 \N +430644 2025-10-29 14:08:41.780538+00 2025-10-29 14:08:41.780544+00 f t DESCUENTO 0.00 3 10844 \N +430645 2025-10-29 14:08:41.781722+00 2025-10-29 14:08:41.781729+00 f t TOTAL 0.00 4 10844 \N +430646 2025-10-29 14:08:41.782825+00 2025-10-29 14:08:41.78283+00 f t ADELANTO 0.00 5 10844 \N +431082 2025-10-29 15:14:26.711629+00 2025-10-29 15:14:26.711637+00 f t SUBTOTAL 70000.00 1 10853 \N +431083 2025-10-29 15:14:26.713343+00 2025-10-29 15:14:26.71335+00 f t COSTO_SERVICIO 0.00 2 10853 \N +431084 2025-10-29 15:14:26.714481+00 2025-10-29 15:14:26.714489+00 f t DESCUENTO 0.00 3 10853 \N +431085 2025-10-29 15:14:26.715561+00 2025-10-29 15:14:26.715566+00 f t TOTAL 70000.00 4 10853 \N +431086 2025-10-29 15:14:26.716453+00 2025-10-29 15:14:26.716458+00 f t ADELANTO 19000.00 5 10853 \N +431182 2025-10-29 15:33:23.774525+00 2025-10-29 15:33:23.774535+00 f t SUBTOTAL 0.00 1 10859 \N +431183 2025-10-29 15:33:23.776369+00 2025-10-29 15:33:23.776377+00 f t COSTO_SERVICIO 0.00 2 10859 \N +431184 2025-10-29 15:33:23.777684+00 2025-10-29 15:33:23.777691+00 f t DESCUENTO 0.00 3 10859 \N +431185 2025-10-29 15:33:23.778762+00 2025-10-29 15:33:23.778768+00 f t TOTAL 0.00 4 10859 \N +431186 2025-10-29 15:33:23.779804+00 2025-10-29 15:33:23.77981+00 f t ADELANTO 0.00 5 10859 \N +445767 2025-11-01 19:44:37.527261+00 2025-11-01 19:44:37.527269+00 f t SUBTOTAL 55000.00 1 11216 \N +445768 2025-11-01 19:44:37.529092+00 2025-11-01 19:44:37.529098+00 f t COSTO_SERVICIO 0.00 2 11216 \N +445769 2025-11-01 19:44:37.53019+00 2025-11-01 19:44:37.530195+00 f t DESCUENTO 0.00 3 11216 \N +445770 2025-11-01 19:44:37.531225+00 2025-11-01 19:44:37.53123+00 f t TOTAL 55000.00 4 11216 \N +445771 2025-11-01 19:44:37.532154+00 2025-11-01 19:44:37.53216+00 f t ADELANTO 11000.00 5 11216 \N +436787 2025-10-30 17:13:54.909125+00 2025-10-30 17:13:54.909134+00 f t SUBTOTAL 0.00 1 10990 \N +436788 2025-10-30 17:13:54.911013+00 2025-10-30 17:13:54.91102+00 f t COSTO_SERVICIO 0.00 2 10990 \N +436789 2025-10-30 17:13:54.912152+00 2025-10-30 17:13:54.912157+00 f t DESCUENTO 0.00 3 10990 \N +436790 2025-10-30 17:13:54.913067+00 2025-10-30 17:13:54.913072+00 f t TOTAL 0.00 4 10990 \N +436791 2025-10-30 17:13:54.913884+00 2025-10-30 17:13:54.913889+00 f t ADELANTO 0.00 5 10990 \N +426702 2025-10-28 19:27:36.878302+00 2025-10-28 19:27:36.878312+00 f t SUBTOTAL 54000.00 1 10760 \N +426703 2025-10-28 19:27:36.880351+00 2025-10-28 19:27:36.880362+00 f t COSTO_SERVICIO 0.00 2 10760 \N +426704 2025-10-28 19:27:36.881796+00 2025-10-28 19:27:36.881803+00 f t DESCUENTO 0.00 3 10760 \N +426705 2025-10-28 19:27:36.882995+00 2025-10-28 19:27:36.883003+00 f t TOTAL 54000.00 4 10760 \N +426706 2025-10-28 19:27:36.884352+00 2025-10-28 19:27:36.88436+00 f t ADELANTO 13500.00 5 10760 \N +437362 2025-10-30 20:07:01.888492+00 2025-10-30 20:07:01.888506+00 f t SUBTOTAL 0.00 1 11004 \N +427282 2025-10-28 21:14:12.400622+00 2025-10-28 21:14:12.400635+00 f t SUBTOTAL 0.00 1 10781 \N +427283 2025-10-28 21:14:12.40221+00 2025-10-28 21:14:12.402219+00 f t COSTO_SERVICIO 0.00 2 10781 \N +423432 2025-10-28 04:02:18.487104+00 2025-10-28 04:02:18.487114+00 f t SUBTOTAL 0.00 1 10688 \N +423433 2025-10-28 04:02:18.489308+00 2025-10-28 04:02:18.489315+00 f t COSTO_SERVICIO 0.00 2 10688 \N +423434 2025-10-28 04:02:18.490474+00 2025-10-28 04:02:18.49048+00 f t DESCUENTO 0.00 3 10688 \N +423435 2025-10-28 04:02:18.491669+00 2025-10-28 04:02:18.491675+00 f t TOTAL 0.00 4 10688 \N +423436 2025-10-28 04:02:18.493013+00 2025-10-28 04:02:18.493018+00 f t ADELANTO 0.00 5 10688 \N +427284 2025-10-28 21:14:12.403694+00 2025-10-28 21:14:12.403701+00 f t DESCUENTO 0.00 3 10781 \N +427285 2025-10-28 21:14:12.405068+00 2025-10-28 21:14:12.405073+00 f t TOTAL 0.00 4 10781 \N +427286 2025-10-28 21:14:12.406128+00 2025-10-28 21:14:12.406134+00 f t ADELANTO 0.00 5 10781 \N +427452 2025-10-28 22:26:54.949995+00 2025-10-28 22:26:54.950004+00 f t SUBTOTAL 0.00 1 10789 \N +427453 2025-10-28 22:26:54.951237+00 2025-10-28 22:26:54.951243+00 f t COSTO_SERVICIO 0.00 2 10789 \N +427454 2025-10-28 22:26:54.952362+00 2025-10-28 22:26:54.952368+00 f t DESCUENTO 0.00 3 10789 \N +427455 2025-10-28 22:26:54.953306+00 2025-10-28 22:26:54.953311+00 f t TOTAL 0.00 4 10789 \N +427456 2025-10-28 22:26:54.954259+00 2025-10-28 22:26:54.954264+00 f t ADELANTO 0.00 5 10789 \N +423452 2025-10-28 04:12:51.879966+00 2025-10-28 04:12:51.879975+00 f t SUBTOTAL 0.00 1 10689 \N +423453 2025-10-28 04:12:51.881282+00 2025-10-28 04:12:51.881289+00 f t COSTO_SERVICIO 0.00 2 10689 \N +423454 2025-10-28 04:12:51.882157+00 2025-10-28 04:12:51.882162+00 f t DESCUENTO 0.00 3 10689 \N +423455 2025-10-28 04:12:51.88292+00 2025-10-28 04:12:51.882925+00 f t TOTAL 0.00 4 10689 \N +423456 2025-10-28 04:12:51.883702+00 2025-10-28 04:12:51.883707+00 f t ADELANTO 0.00 5 10689 \N +427942 2025-10-28 23:44:25.974984+00 2025-10-28 23:44:25.974995+00 f t SUBTOTAL 46000.00 1 10798 \N +427943 2025-10-28 23:44:25.977127+00 2025-10-28 23:44:25.97714+00 f t COSTO_SERVICIO 0.00 2 10798 \N +427944 2025-10-28 23:44:25.978543+00 2025-10-28 23:44:25.97855+00 f t DESCUENTO 0.00 3 10798 \N +427945 2025-10-28 23:44:25.97992+00 2025-10-28 23:44:25.979926+00 f t TOTAL 46000.00 4 10798 \N +427946 2025-10-28 23:44:25.981176+00 2025-10-28 23:44:25.981184+00 f t ADELANTO 11000.00 5 10798 \N +428542 2025-10-29 00:08:11.021474+00 2025-10-29 00:08:11.021484+00 f t SUBTOTAL 0.00 1 10803 \N +428543 2025-10-29 00:08:11.023166+00 2025-10-29 00:08:11.023176+00 f t COSTO_SERVICIO 0.00 2 10803 \N +428544 2025-10-29 00:08:11.025065+00 2025-10-29 00:08:11.025072+00 f t DESCUENTO 0.00 3 10803 \N +428545 2025-10-29 00:08:11.026334+00 2025-10-29 00:08:11.02634+00 f t TOTAL 0.00 4 10803 \N +428546 2025-10-29 00:08:11.027607+00 2025-10-29 00:08:11.027613+00 f t ADELANTO 0.00 5 10803 \N +423537 2025-10-28 04:41:06.094902+00 2025-10-28 04:41:06.094912+00 f t SUBTOTAL 30000.00 1 10690 \N +423538 2025-10-28 04:41:06.098847+00 2025-10-28 04:41:06.098855+00 f t COSTO_SERVICIO 0.00 2 10690 \N +423539 2025-10-28 04:41:06.100567+00 2025-10-28 04:41:06.100574+00 f t DESCUENTO 0.00 3 10690 \N +423540 2025-10-28 04:41:06.101912+00 2025-10-28 04:41:06.101919+00 f t TOTAL 30000.00 4 10690 \N +423541 2025-10-28 04:41:06.103201+00 2025-10-28 04:41:06.103209+00 f t ADELANTO 30000.00 5 10690 \N +423547 2025-10-28 06:03:54.656051+00 2025-10-28 06:03:54.65606+00 f t SUBTOTAL 0.00 1 10691 \N +423548 2025-10-28 06:03:54.657507+00 2025-10-28 06:03:54.657514+00 f t COSTO_SERVICIO 0.00 2 10691 \N +423549 2025-10-28 06:03:54.659064+00 2025-10-28 06:03:54.65907+00 f t DESCUENTO 0.00 3 10691 \N +423550 2025-10-28 06:03:54.661154+00 2025-10-28 06:03:54.661161+00 f t TOTAL 0.00 4 10691 \N +423551 2025-10-28 06:03:54.662476+00 2025-10-28 06:03:54.662482+00 f t ADELANTO 0.00 5 10691 \N +423557 2025-10-28 06:06:47.947673+00 2025-10-28 06:06:47.947681+00 f t SUBTOTAL 0.00 1 10692 \N +423558 2025-10-28 06:06:47.949082+00 2025-10-28 06:06:47.949089+00 f t COSTO_SERVICIO 0.00 2 10692 \N +423559 2025-10-28 06:06:47.950171+00 2025-10-28 06:06:47.950177+00 f t DESCUENTO 0.00 3 10692 \N +423560 2025-10-28 06:06:47.951337+00 2025-10-28 06:06:47.951342+00 f t TOTAL 0.00 4 10692 \N +423561 2025-10-28 06:06:47.952395+00 2025-10-28 06:06:47.9524+00 f t ADELANTO 0.00 5 10692 \N +423567 2025-10-28 08:31:00.237487+00 2025-10-28 08:31:00.237499+00 f t SUBTOTAL 0.00 1 10693 \N +423568 2025-10-28 08:31:00.239071+00 2025-10-28 08:31:00.239078+00 f t COSTO_SERVICIO 0.00 2 10693 \N +423569 2025-10-28 08:31:00.240606+00 2025-10-28 08:31:00.240613+00 f t DESCUENTO 0.00 3 10693 \N +423570 2025-10-28 08:31:00.242323+00 2025-10-28 08:31:00.242328+00 f t TOTAL 0.00 4 10693 \N +423571 2025-10-28 08:31:00.243505+00 2025-10-28 08:31:00.243512+00 f t ADELANTO 0.00 5 10693 \N +429802 2025-10-29 10:35:52.055519+00 2025-10-29 10:35:52.055529+00 f t SUBTOTAL 0.00 1 10826 \N +429803 2025-10-29 10:35:52.056829+00 2025-10-29 10:35:52.056835+00 f t COSTO_SERVICIO 0.00 2 10826 \N +429804 2025-10-29 10:35:52.057808+00 2025-10-29 10:35:52.057815+00 f t DESCUENTO 0.00 3 10826 \N +429805 2025-10-29 10:35:52.058718+00 2025-10-29 10:35:52.058723+00 f t TOTAL 0.00 4 10826 \N +429806 2025-10-29 10:35:52.05952+00 2025-10-29 10:35:52.059525+00 f t ADELANTO 0.00 5 10826 \N +423597 2025-10-28 08:35:22.539255+00 2025-10-28 08:35:22.539262+00 f t SUBTOTAL 55000.00 1 10694 \N +423598 2025-10-28 08:35:22.540747+00 2025-10-28 08:35:22.540753+00 f t COSTO_SERVICIO 0.00 2 10694 \N +423599 2025-10-28 08:35:22.541926+00 2025-10-28 08:35:22.541931+00 f t DESCUENTO 0.00 3 10694 \N +423600 2025-10-28 08:35:22.543078+00 2025-10-28 08:35:22.543084+00 f t TOTAL 55000.00 4 10694 \N +423601 2025-10-28 08:35:22.544565+00 2025-10-28 08:35:22.544574+00 f t ADELANTO 11000.00 5 10694 \N +423642 2025-10-28 10:19:50.437818+00 2025-10-28 10:19:50.437825+00 f t SUBTOTAL 46000.00 1 10695 \N +423643 2025-10-28 10:19:50.439258+00 2025-10-28 10:19:50.439264+00 f t COSTO_SERVICIO 0.00 2 10695 \N +423644 2025-10-28 10:19:50.44053+00 2025-10-28 10:19:50.440537+00 f t DESCUENTO 0.00 3 10695 \N +423645 2025-10-28 10:19:50.441557+00 2025-10-28 10:19:50.441566+00 f t TOTAL 46000.00 4 10695 \N +423646 2025-10-28 10:19:50.442637+00 2025-10-28 10:19:50.442643+00 f t ADELANTO 11000.00 5 10695 \N +466616 2025-11-07 22:26:09.910527+00 2025-11-07 22:26:09.910532+00 f t ADELANTO 0.00 5 11699 \N +426712 2025-10-28 19:29:57.579558+00 2025-10-28 19:29:57.579569+00 f t SUBTOTAL 0.00 1 10761 \N +426713 2025-10-28 19:29:57.581087+00 2025-10-28 19:29:57.581094+00 f t COSTO_SERVICIO 0.00 2 10761 \N +426714 2025-10-28 19:29:57.582245+00 2025-10-28 19:29:57.582252+00 f t DESCUENTO 0.00 3 10761 \N +426715 2025-10-28 19:29:57.583826+00 2025-10-28 19:29:57.583832+00 f t TOTAL 0.00 4 10761 \N +426716 2025-10-28 19:29:57.585334+00 2025-10-28 19:29:57.585342+00 f t ADELANTO 0.00 5 10761 \N +437002 2025-10-30 18:41:43.222765+00 2025-10-30 18:41:43.222772+00 f t SUBTOTAL 23000.00 1 10973 \N +423702 2025-10-28 10:53:13.728647+00 2025-10-28 10:53:13.728654+00 f t SUBTOTAL 46000.00 1 10696 \N +423703 2025-10-28 10:53:13.730172+00 2025-10-28 10:53:13.730181+00 f t COSTO_SERVICIO 0.00 2 10696 \N +423704 2025-10-28 10:53:13.731322+00 2025-10-28 10:53:13.731328+00 f t DESCUENTO 0.00 3 10696 \N +423705 2025-10-28 10:53:13.732312+00 2025-10-28 10:53:13.732317+00 f t TOTAL 46000.00 4 10696 \N +423706 2025-10-28 10:53:13.733214+00 2025-10-28 10:53:13.733219+00 f t ADELANTO 11000.00 5 10696 \N +437003 2025-10-30 18:41:43.224462+00 2025-10-30 18:41:43.224468+00 f t COSTO_SERVICIO 0.00 2 10973 \N +437004 2025-10-30 18:41:43.225406+00 2025-10-30 18:41:43.225411+00 f t DESCUENTO 0.00 3 10973 \N +437005 2025-10-30 18:41:43.226215+00 2025-10-30 18:41:43.22622+00 f t TOTAL 23000.00 4 10973 \N +437006 2025-10-30 18:41:43.226983+00 2025-10-30 18:41:43.226988+00 f t ADELANTO 5500.00 5 10973 \N +437363 2025-10-30 20:07:01.890614+00 2025-10-30 20:07:01.890627+00 f t COSTO_SERVICIO 0.00 2 11004 \N +437364 2025-10-30 20:07:01.892869+00 2025-10-30 20:07:01.89288+00 f t DESCUENTO 0.00 3 11004 \N +437365 2025-10-30 20:07:01.895113+00 2025-10-30 20:07:01.895125+00 f t TOTAL 0.00 4 11004 \N +437366 2025-10-30 20:07:01.897227+00 2025-10-30 20:07:01.897237+00 f t ADELANTO 0.00 5 11004 \N +438147 2025-10-30 23:43:02.934546+00 2025-10-30 23:43:02.934556+00 f t SUBTOTAL 0.00 1 11023 \N +438148 2025-10-30 23:43:02.937031+00 2025-10-30 23:43:02.937043+00 f t COSTO_SERVICIO 0.00 2 11023 \N +438149 2025-10-30 23:43:02.93869+00 2025-10-30 23:43:02.938701+00 f t DESCUENTO 0.00 3 11023 \N +438150 2025-10-30 23:43:02.940202+00 2025-10-30 23:43:02.940211+00 f t TOTAL 0.00 4 11023 \N +438151 2025-10-30 23:43:02.941512+00 2025-10-30 23:43:02.94152+00 f t ADELANTO 0.00 5 11023 \N +423757 2025-10-28 11:05:05.173864+00 2025-10-28 11:05:05.17388+00 f t SUBTOTAL 34000.00 1 10697 \N +423758 2025-10-28 11:05:05.181056+00 2025-10-28 11:05:05.181071+00 f t COSTO_SERVICIO 0.00 2 10697 \N +423759 2025-10-28 11:05:05.188417+00 2025-10-28 11:05:05.188433+00 f t DESCUENTO 0.00 3 10697 \N +423760 2025-10-28 11:05:05.193987+00 2025-10-28 11:05:05.194001+00 f t TOTAL 34000.00 4 10697 \N +423761 2025-10-28 11:05:05.202479+00 2025-10-28 11:05:05.202495+00 f t ADELANTO 34000.00 5 10697 \N +428287 2025-10-28 23:56:15.58134+00 2025-10-28 23:56:15.581349+00 f t SUBTOTAL 46000.00 1 10797 \N +428288 2025-10-28 23:56:15.58337+00 2025-10-28 23:56:15.583378+00 f t COSTO_SERVICIO 0.00 2 10797 \N +428289 2025-10-28 23:56:15.584716+00 2025-10-28 23:56:15.584723+00 f t DESCUENTO 0.00 3 10797 \N +428290 2025-10-28 23:56:15.585849+00 2025-10-28 23:56:15.585855+00 f t TOTAL 46000.00 4 10797 \N +428291 2025-10-28 23:56:15.587002+00 2025-10-28 23:56:15.587009+00 f t ADELANTO 11000.00 5 10797 \N +428662 2025-10-29 00:11:42.904399+00 2025-10-29 00:11:42.904406+00 f t SUBTOTAL 102000.00 1 10805 \N +428663 2025-10-29 00:11:42.906269+00 2025-10-29 00:11:42.906275+00 f t COSTO_SERVICIO 0.00 2 10805 \N +428664 2025-10-29 00:11:42.907472+00 2025-10-29 00:11:42.907479+00 f t DESCUENTO 0.00 3 10805 \N +428665 2025-10-29 00:11:42.910292+00 2025-10-29 00:11:42.910298+00 f t TOTAL 102000.00 4 10805 \N +428666 2025-10-29 00:11:42.912279+00 2025-10-29 00:11:42.912285+00 f t ADELANTO 29500.00 5 10805 \N +439177 2025-10-31 02:51:23.608049+00 2025-10-31 02:51:23.608055+00 f t SUBTOTAL 104500.00 1 11044 \N +439178 2025-10-31 02:51:23.609828+00 2025-10-31 02:51:23.609834+00 f t COSTO_SERVICIO 0.00 2 11044 \N +439179 2025-10-31 02:51:23.611019+00 2025-10-31 02:51:23.611024+00 f t DESCUENTO 0.00 3 11044 \N +429047 2025-10-29 02:41:40.101766+00 2025-10-29 02:41:40.101775+00 f t SUBTOTAL 55000.00 1 10815 \N +429048 2025-10-29 02:41:40.103672+00 2025-10-29 02:41:40.103683+00 f t COSTO_SERVICIO 0.00 2 10815 \N +429049 2025-10-29 02:41:40.105185+00 2025-10-29 02:41:40.105196+00 f t DESCUENTO 0.00 3 10815 \N +429050 2025-10-29 02:41:40.106594+00 2025-10-29 02:41:40.106604+00 f t TOTAL 55000.00 4 10815 \N +429051 2025-10-29 02:41:40.109224+00 2025-10-29 02:41:40.109235+00 f t ADELANTO 11000.00 5 10815 \N +439180 2025-10-31 02:51:23.612216+00 2025-10-31 02:51:23.612222+00 f t TOTAL 104500.00 4 11044 \N +423802 2025-10-28 11:14:19.915046+00 2025-10-28 11:14:19.915053+00 f t SUBTOTAL 55000.00 1 10698 \N +423803 2025-10-28 11:14:19.916457+00 2025-10-28 11:14:19.916463+00 f t COSTO_SERVICIO 0.00 2 10698 \N +423804 2025-10-28 11:14:19.917463+00 2025-10-28 11:14:19.91747+00 f t DESCUENTO 0.00 3 10698 \N +423805 2025-10-28 11:14:19.918467+00 2025-10-28 11:14:19.918472+00 f t TOTAL 55000.00 4 10698 \N +423806 2025-10-28 11:14:19.919429+00 2025-10-28 11:14:19.919434+00 f t ADELANTO 11000.00 5 10698 \N +439181 2025-10-31 02:51:23.613318+00 2025-10-31 02:51:23.613324+00 f t ADELANTO 26000.00 5 11044 \N +430152 2025-10-29 12:37:09.594741+00 2025-10-29 12:37:09.594751+00 f t SUBTOTAL 0.00 1 10834 \N +430153 2025-10-29 12:37:09.596836+00 2025-10-29 12:37:09.596843+00 f t COSTO_SERVICIO 0.00 2 10834 \N +430154 2025-10-29 12:37:09.598119+00 2025-10-29 12:37:09.598126+00 f t DESCUENTO 0.00 3 10834 \N +430155 2025-10-29 12:37:09.599066+00 2025-10-29 12:37:09.599074+00 f t TOTAL 0.00 4 10834 \N +430156 2025-10-29 12:37:09.600208+00 2025-10-29 12:37:09.600214+00 f t ADELANTO 0.00 5 10834 \N +423887 2025-10-28 11:17:28.074838+00 2025-10-28 11:17:28.074846+00 f t SUBTOTAL 34000.00 1 10699 \N +423888 2025-10-28 11:17:28.076369+00 2025-10-28 11:17:28.076375+00 f t COSTO_SERVICIO 0.00 2 10699 \N +423889 2025-10-28 11:17:28.077423+00 2025-10-28 11:17:28.077428+00 f t DESCUENTO 0.00 3 10699 \N +423890 2025-10-28 11:17:28.078347+00 2025-10-28 11:17:28.078352+00 f t TOTAL 34000.00 4 10699 \N +423891 2025-10-28 11:17:28.079249+00 2025-10-28 11:17:28.079255+00 f t ADELANTO 34000.00 5 10699 \N +430747 2025-10-29 14:20:02.672797+00 2025-10-29 14:20:02.672809+00 f t SUBTOTAL 46000.00 1 10846 \N +430748 2025-10-29 14:20:02.689382+00 2025-10-29 14:20:02.689398+00 f t COSTO_SERVICIO 0.00 2 10846 \N +430749 2025-10-29 14:20:02.69506+00 2025-10-29 14:20:02.695076+00 f t DESCUENTO 0.00 3 10846 \N +430750 2025-10-29 14:20:02.700937+00 2025-10-29 14:20:02.700953+00 f t TOTAL 46000.00 4 10846 \N +430751 2025-10-29 14:20:02.705926+00 2025-10-29 14:20:02.705941+00 f t ADELANTO 11000.00 5 10846 \N +423912 2025-10-28 11:18:23.31595+00 2025-10-28 11:18:23.315958+00 f t SUBTOTAL 55000.00 1 10700 \N +423913 2025-10-28 11:18:23.317583+00 2025-10-28 11:18:23.317593+00 f t COSTO_SERVICIO 0.00 2 10700 \N +423914 2025-10-28 11:18:23.318741+00 2025-10-28 11:18:23.318747+00 f t DESCUENTO 0.00 3 10700 \N +423915 2025-10-28 11:18:23.319863+00 2025-10-28 11:18:23.319868+00 f t TOTAL 55000.00 4 10700 \N +423916 2025-10-28 11:18:23.320796+00 2025-10-28 11:18:23.320801+00 f t ADELANTO 11000.00 5 10700 \N +431147 2025-10-29 15:30:15.710193+00 2025-10-29 15:30:15.710201+00 f t SUBTOTAL 0.00 1 10858 \N +431148 2025-10-29 15:30:15.712163+00 2025-10-29 15:30:15.71217+00 f t COSTO_SERVICIO 0.00 2 10858 \N +431149 2025-10-29 15:30:15.713464+00 2025-10-29 15:30:15.713472+00 f t DESCUENTO 0.00 3 10858 \N +431150 2025-10-29 15:30:15.714548+00 2025-10-29 15:30:15.714555+00 f t TOTAL 0.00 4 10858 \N +431151 2025-10-29 15:30:15.715508+00 2025-10-29 15:30:15.715515+00 f t ADELANTO 0.00 5 10858 \N +548632 2025-11-25 21:20:11.321876+00 2025-11-25 21:20:11.321883+00 f t SUBTOTAL 13200.00 1 13603 \N +548633 2025-11-25 21:20:11.323999+00 2025-11-25 21:20:11.324005+00 f t COSTO_SERVICIO 0.00 2 13603 \N +548634 2025-11-25 21:20:11.32522+00 2025-11-25 21:20:11.325227+00 f t DESCUENTO 0.00 3 13603 \N +426142 2025-10-28 17:41:55.592231+00 2025-10-28 17:41:55.592243+00 f t SUBTOTAL 0.00 1 10744 \N +426143 2025-10-28 17:41:55.59436+00 2025-10-28 17:41:55.59437+00 f t COSTO_SERVICIO 0.00 2 10744 \N +426144 2025-10-28 17:41:55.595801+00 2025-10-28 17:41:55.595811+00 f t DESCUENTO 0.00 3 10744 \N +426145 2025-10-28 17:41:55.597225+00 2025-10-28 17:41:55.597234+00 f t TOTAL 0.00 4 10744 \N +426146 2025-10-28 17:41:55.598519+00 2025-10-28 17:41:55.598526+00 f t ADELANTO 0.00 5 10744 \N +477767 2025-11-10 19:58:10.55656+00 2025-11-10 19:58:10.556572+00 f t SUBTOTAL 0.00 1 11945 \N +477768 2025-11-10 19:58:10.557894+00 2025-11-10 19:58:10.557901+00 f t COSTO_SERVICIO 0.00 2 11945 \N +477769 2025-11-10 19:58:10.558935+00 2025-11-10 19:58:10.558941+00 f t DESCUENTO 0.00 3 11945 \N +423977 2025-10-28 11:41:38.34936+00 2025-10-28 11:41:38.349367+00 f t SUBTOTAL 46000.00 1 10701 \N +423978 2025-10-28 11:41:38.350776+00 2025-10-28 11:41:38.350783+00 f t COSTO_SERVICIO 0.00 2 10701 \N +423979 2025-10-28 11:41:38.352102+00 2025-10-28 11:41:38.352109+00 f t DESCUENTO 0.00 3 10701 \N +423980 2025-10-28 11:41:38.353184+00 2025-10-28 11:41:38.353192+00 f t TOTAL 46000.00 4 10701 \N +423981 2025-10-28 11:41:38.354158+00 2025-10-28 11:41:38.354163+00 f t ADELANTO 11000.00 5 10701 \N +427137 2025-10-28 20:53:34.822003+00 2025-10-28 20:53:34.822012+00 f t SUBTOTAL 72500.00 1 10773 \N +427138 2025-10-28 20:53:34.823795+00 2025-10-28 20:53:34.823803+00 f t COSTO_SERVICIO 0.00 2 10773 \N +427139 2025-10-28 20:53:34.824894+00 2025-10-28 20:53:34.8249+00 f t DESCUENTO 0.00 3 10773 \N +427140 2025-10-28 20:53:34.826027+00 2025-10-28 20:53:34.826033+00 f t TOTAL 72500.00 4 10773 \N +427141 2025-10-28 20:53:34.827001+00 2025-10-28 20:53:34.827007+00 f t ADELANTO 72500.00 5 10773 \N +427292 2025-10-28 21:19:34.056299+00 2025-10-28 21:19:34.056308+00 f t SUBTOTAL 78000.00 1 10778 \N +427293 2025-10-28 21:19:34.05806+00 2025-10-28 21:19:34.058066+00 f t COSTO_SERVICIO 0.00 2 10778 \N +427294 2025-10-28 21:19:34.059219+00 2025-10-28 21:19:34.059225+00 f t DESCUENTO 0.00 3 10778 \N +427295 2025-10-28 21:19:34.06037+00 2025-10-28 21:19:34.060376+00 f t TOTAL 78000.00 4 10778 \N +427296 2025-10-28 21:19:34.061355+00 2025-10-28 21:19:34.06136+00 f t ADELANTO 21500.00 5 10778 \N +437982 2025-10-30 22:21:20.41056+00 2025-10-30 22:21:20.410571+00 f t SUBTOTAL 46000.00 1 11015 \N +437983 2025-10-30 22:21:20.412486+00 2025-10-30 22:21:20.412496+00 f t COSTO_SERVICIO 0.00 2 11015 \N +437984 2025-10-30 22:21:20.413999+00 2025-10-30 22:21:20.414007+00 f t DESCUENTO 0.00 3 11015 \N +437985 2025-10-30 22:21:20.415366+00 2025-10-30 22:21:20.415374+00 f t TOTAL 46000.00 4 11015 \N +437986 2025-10-30 22:21:20.416518+00 2025-10-30 22:21:20.416524+00 f t ADELANTO 11000.00 5 11015 \N +428802 2025-10-29 01:27:30.096739+00 2025-10-29 01:27:30.096747+00 f t SUBTOTAL 46000.00 1 10810 \N +428803 2025-10-29 01:27:30.098668+00 2025-10-29 01:27:30.098676+00 f t COSTO_SERVICIO 0.00 2 10810 \N +428804 2025-10-29 01:27:30.10011+00 2025-10-29 01:27:30.100118+00 f t DESCUENTO 0.00 3 10810 \N +428805 2025-10-29 01:27:30.101717+00 2025-10-29 01:27:30.101724+00 f t TOTAL 46000.00 4 10810 \N +428806 2025-10-29 01:27:30.103082+00 2025-10-29 01:27:30.10309+00 f t ADELANTO 11000.00 5 10810 \N +424072 2025-10-28 12:12:02.755481+00 2025-10-28 12:12:02.755494+00 f t SUBTOTAL 0.00 1 10703 \N +424073 2025-10-28 12:12:02.757547+00 2025-10-28 12:12:02.757559+00 f t COSTO_SERVICIO 0.00 2 10703 \N +424074 2025-10-28 12:12:02.759276+00 2025-10-28 12:12:02.759287+00 f t DESCUENTO 0.00 3 10703 \N +424075 2025-10-28 12:12:02.761261+00 2025-10-28 12:12:02.761272+00 f t TOTAL 0.00 4 10703 \N +424076 2025-10-28 12:12:02.762943+00 2025-10-28 12:12:02.762954+00 f t ADELANTO 0.00 5 10703 \N +428917 2025-10-29 01:46:51.152475+00 2025-10-29 01:46:51.152483+00 f t SUBTOTAL 0.00 1 10812 \N +428918 2025-10-29 01:46:51.154138+00 2025-10-29 01:46:51.154145+00 f t COSTO_SERVICIO 0.00 2 10812 \N +428919 2025-10-29 01:46:51.155413+00 2025-10-29 01:46:51.155419+00 f t DESCUENTO 0.00 3 10812 \N +428920 2025-10-29 01:46:51.156673+00 2025-10-29 01:46:51.156678+00 f t TOTAL 0.00 4 10812 \N +428921 2025-10-29 01:46:51.158573+00 2025-10-29 01:46:51.158579+00 f t ADELANTO 0.00 5 10812 \N +429057 2025-10-29 02:51:44.851696+00 2025-10-29 02:51:44.851707+00 f t SUBTOTAL 0.00 1 10816 \N +429058 2025-10-29 02:51:44.853096+00 2025-10-29 02:51:44.853103+00 f t COSTO_SERVICIO 0.00 2 10816 \N +429059 2025-10-29 02:51:44.854796+00 2025-10-29 02:51:44.854805+00 f t DESCUENTO 0.00 3 10816 \N +429060 2025-10-29 02:51:44.856205+00 2025-10-29 02:51:44.856211+00 f t TOTAL 0.00 4 10816 \N +429061 2025-10-29 02:51:44.857332+00 2025-10-29 02:51:44.85734+00 f t ADELANTO 0.00 5 10816 \N +424122 2025-10-28 12:14:23.87581+00 2025-10-28 12:14:23.875817+00 f t SUBTOTAL 215000.00 1 10702 \N +424123 2025-10-28 12:14:23.877698+00 2025-10-28 12:14:23.877705+00 f t COSTO_SERVICIO 0.00 2 10702 \N +424124 2025-10-28 12:14:23.879043+00 2025-10-28 12:14:23.879049+00 f t DESCUENTO 0.00 3 10702 \N +424125 2025-10-28 12:14:23.880447+00 2025-10-28 12:14:23.880453+00 f t TOTAL 215000.00 4 10702 \N +424126 2025-10-28 12:14:23.881594+00 2025-10-28 12:14:23.881599+00 f t ADELANTO 53000.00 5 10702 \N +424142 2025-10-28 12:39:41.547882+00 2025-10-28 12:39:41.547891+00 f t SUBTOTAL 0.00 1 10705 \N +424143 2025-10-28 12:39:41.549092+00 2025-10-28 12:39:41.549098+00 f t COSTO_SERVICIO 0.00 2 10705 \N +424144 2025-10-28 12:39:41.550287+00 2025-10-28 12:39:41.550293+00 f t DESCUENTO 0.00 3 10705 \N +424145 2025-10-28 12:39:41.55126+00 2025-10-28 12:39:41.551265+00 f t TOTAL 0.00 4 10705 \N +424146 2025-10-28 12:39:41.552495+00 2025-10-28 12:39:41.552501+00 f t ADELANTO 0.00 5 10705 \N +424182 2025-10-28 12:41:23.63995+00 2025-10-28 12:41:23.63996+00 f t SUBTOTAL 0.00 1 10704 \N +424183 2025-10-28 12:41:23.641321+00 2025-10-28 12:41:23.641328+00 f t COSTO_SERVICIO 0.00 2 10704 \N +424184 2025-10-28 12:41:23.642508+00 2025-10-28 12:41:23.642514+00 f t DESCUENTO 0.00 3 10704 \N +424185 2025-10-28 12:41:23.643587+00 2025-10-28 12:41:23.643593+00 f t TOTAL 0.00 4 10704 \N +424186 2025-10-28 12:41:23.644591+00 2025-10-28 12:41:23.644598+00 f t ADELANTO 0.00 5 10704 \N +430902 2025-10-29 14:45:19.796761+00 2025-10-29 14:45:19.796772+00 f t SUBTOTAL 119400.00 1 10847 \N +430903 2025-10-29 14:45:19.798074+00 2025-10-29 14:45:19.798083+00 f t COSTO_SERVICIO 0.00 2 10847 \N +430904 2025-10-29 14:45:19.799015+00 2025-10-29 14:45:19.799023+00 f t DESCUENTO 0.00 3 10847 \N +430905 2025-10-29 14:45:19.799839+00 2025-10-29 14:45:19.799847+00 f t TOTAL 119400.00 4 10847 \N +430906 2025-10-29 14:45:19.800576+00 2025-10-29 14:45:19.800583+00 f t ADELANTO 57400.00 5 10847 \N +431102 2025-10-29 15:15:32.314392+00 2025-10-29 15:15:32.314401+00 f t SUBTOTAL 0.00 1 10856 \N +431103 2025-10-29 15:15:32.315847+00 2025-10-29 15:15:32.315853+00 f t COSTO_SERVICIO 0.00 2 10856 \N +431104 2025-10-29 15:15:32.31695+00 2025-10-29 15:15:32.316955+00 f t DESCUENTO 0.00 3 10856 \N +431105 2025-10-29 15:15:32.317907+00 2025-10-29 15:15:32.317912+00 f t TOTAL 0.00 4 10856 \N +431106 2025-10-29 15:15:32.318992+00 2025-10-29 15:15:32.318998+00 f t ADELANTO 0.00 5 10856 \N +431152 2025-10-29 15:32:03.800115+00 2025-10-29 15:32:03.800127+00 f t SUBTOTAL 80000.00 1 10855 \N +431153 2025-10-29 15:32:03.802433+00 2025-10-29 15:32:03.802444+00 f t COSTO_SERVICIO 0.00 2 10855 \N +431154 2025-10-29 15:32:03.804147+00 2025-10-29 15:32:03.804158+00 f t DESCUENTO 0.00 3 10855 \N +431155 2025-10-29 15:32:03.805733+00 2025-10-29 15:32:03.805744+00 f t TOTAL 80000.00 4 10855 \N +431156 2025-10-29 15:32:03.808805+00 2025-10-29 15:32:03.808815+00 f t ADELANTO 12000.00 5 10855 \N +477770 2025-11-10 19:58:10.561064+00 2025-11-10 19:58:10.561072+00 f t TOTAL 0.00 4 11945 \N +477771 2025-11-10 19:58:10.56238+00 2025-11-10 19:58:10.562385+00 f t ADELANTO 0.00 5 11945 \N +436397 2025-10-30 16:06:44.671627+00 2025-10-30 16:06:44.671636+00 f t SUBTOTAL 163750.00 1 10983 \N +436398 2025-10-30 16:06:44.673766+00 2025-10-30 16:06:44.673774+00 f t COSTO_SERVICIO 0.00 2 10983 \N +436399 2025-10-30 16:06:44.675722+00 2025-10-30 16:06:44.67573+00 f t DESCUENTO 0.00 3 10983 \N +436400 2025-10-30 16:06:44.677098+00 2025-10-30 16:06:44.677105+00 f t TOTAL 163750.00 4 10983 \N +436401 2025-10-30 16:06:44.678161+00 2025-10-30 16:06:44.678167+00 f t ADELANTO 37750.00 5 10983 \N +447212 2025-11-02 18:07:53.736359+00 2025-11-02 18:07:53.736366+00 f t SUBTOTAL 46000.00 1 11250 \N +447213 2025-11-02 18:07:53.738075+00 2025-11-02 18:07:53.738081+00 f t COSTO_SERVICIO 0.00 2 11250 \N +447214 2025-11-02 18:07:53.739461+00 2025-11-02 18:07:53.739468+00 f t DESCUENTO 0.00 3 11250 \N +447215 2025-11-02 18:07:53.740434+00 2025-11-02 18:07:53.740441+00 f t TOTAL 46000.00 4 11250 \N +447216 2025-11-02 18:07:53.741582+00 2025-11-02 18:07:53.741588+00 f t ADELANTO 11000.00 5 11250 \N +447542 2025-11-02 19:50:17.236255+00 2025-11-02 19:50:17.236261+00 f t SUBTOTAL 93900.00 1 11256 \N +447543 2025-11-02 19:50:17.23791+00 2025-11-02 19:50:17.237916+00 f t COSTO_SERVICIO 0.00 2 11256 \N +447544 2025-11-02 19:50:17.239104+00 2025-11-02 19:50:17.239109+00 f t DESCUENTO 0.00 3 11256 \N +447545 2025-11-02 19:50:17.240127+00 2025-11-02 19:50:17.240132+00 f t TOTAL 93900.00 4 11256 \N +447546 2025-11-02 19:50:17.241141+00 2025-11-02 19:50:17.241145+00 f t ADELANTO 21900.00 5 11256 \N +448527 2025-11-03 14:58:17.495701+00 2025-11-03 14:58:17.49571+00 f t SUBTOTAL 78000.00 1 11281 \N +448528 2025-11-03 14:58:17.497486+00 2025-11-03 14:58:17.497493+00 f t COSTO_SERVICIO 0.00 2 11281 \N +448529 2025-11-03 14:58:17.498611+00 2025-11-03 14:58:17.498617+00 f t DESCUENTO 0.00 3 11281 \N +448530 2025-11-03 14:58:17.499673+00 2025-11-03 14:58:17.499678+00 f t TOTAL 78000.00 4 11281 \N +448531 2025-11-03 14:58:17.50061+00 2025-11-03 14:58:17.500616+00 f t ADELANTO 13000.00 5 11281 \N +448677 2025-11-03 15:37:11.326814+00 2025-11-03 15:37:11.326821+00 f t SUBTOTAL 78000.00 1 11283 \N +448678 2025-11-03 15:37:11.328837+00 2025-11-03 15:37:11.328843+00 f t COSTO_SERVICIO 0.00 2 11283 \N +448679 2025-11-03 15:37:11.33001+00 2025-11-03 15:37:11.330015+00 f t DESCUENTO 0.00 3 11283 \N +448680 2025-11-03 15:37:11.33107+00 2025-11-03 15:37:11.331075+00 f t TOTAL 78000.00 4 11283 \N +448681 2025-11-03 15:37:11.332205+00 2025-11-03 15:37:11.33221+00 f t ADELANTO 21500.00 5 11283 \N +449222 2025-11-03 16:44:46.296862+00 2025-11-03 16:44:46.296871+00 f t SUBTOTAL 0.00 1 11296 \N +449223 2025-11-03 16:44:46.298191+00 2025-11-03 16:44:46.298198+00 f t COSTO_SERVICIO 0.00 2 11296 \N +449224 2025-11-03 16:44:46.29909+00 2025-11-03 16:44:46.299095+00 f t DESCUENTO 0.00 3 11296 \N +449225 2025-11-03 16:44:46.300057+00 2025-11-03 16:44:46.300062+00 f t TOTAL 0.00 4 11296 \N +449226 2025-11-03 16:44:46.30107+00 2025-11-03 16:44:46.301075+00 f t ADELANTO 0.00 5 11296 \N +449487 2025-11-03 17:25:50.869355+00 2025-11-03 17:25:50.869362+00 f t SUBTOTAL 46000.00 1 11301 \N +449488 2025-11-03 17:25:50.87124+00 2025-11-03 17:25:50.871246+00 f t COSTO_SERVICIO 0.00 2 11301 \N +449489 2025-11-03 17:25:50.87238+00 2025-11-03 17:25:50.872384+00 f t DESCUENTO 0.00 3 11301 \N +449490 2025-11-03 17:25:50.873454+00 2025-11-03 17:25:50.87346+00 f t TOTAL 46000.00 4 11301 \N +449491 2025-11-03 17:25:50.874466+00 2025-11-03 17:25:50.874471+00 f t ADELANTO 11000.00 5 11301 \N +449617 2025-11-03 17:50:31.478875+00 2025-11-03 17:50:31.478883+00 f t SUBTOTAL 80000.00 1 11305 \N +449618 2025-11-03 17:50:31.480709+00 2025-11-03 17:50:31.480716+00 f t COSTO_SERVICIO 0.00 2 11305 \N +449619 2025-11-03 17:50:31.481809+00 2025-11-03 17:50:31.481815+00 f t DESCUENTO 0.00 3 11305 \N +449620 2025-11-03 17:50:31.482856+00 2025-11-03 17:50:31.482862+00 f t TOTAL 80000.00 4 11305 \N +449621 2025-11-03 17:50:31.483835+00 2025-11-03 17:50:31.48384+00 f t ADELANTO 12000.00 5 11305 \N +449992 2025-11-03 18:22:36.083876+00 2025-11-03 18:22:36.083885+00 f t SUBTOTAL 46000.00 1 11311 \N +449993 2025-11-03 18:22:36.08559+00 2025-11-03 18:22:36.085598+00 f t COSTO_SERVICIO 0.00 2 11311 \N +449994 2025-11-03 18:22:36.086873+00 2025-11-03 18:22:36.086879+00 f t DESCUENTO 0.00 3 11311 \N +449995 2025-11-03 18:22:36.088527+00 2025-11-03 18:22:36.088533+00 f t TOTAL 46000.00 4 11311 \N +449996 2025-11-03 18:22:36.09027+00 2025-11-03 18:22:36.090275+00 f t ADELANTO 11000.00 5 11311 \N +430262 2025-10-29 12:55:53.180852+00 2025-10-29 12:55:53.180863+00 f t SUBTOTAL 46000.00 1 10836 \N +430263 2025-10-29 12:55:53.182961+00 2025-10-29 12:55:53.182972+00 f t COSTO_SERVICIO 0.00 2 10836 \N +430264 2025-10-29 12:55:53.184243+00 2025-10-29 12:55:53.184251+00 f t DESCUENTO 0.00 3 10836 \N +430265 2025-10-29 12:55:53.185245+00 2025-10-29 12:55:53.185253+00 f t TOTAL 46000.00 4 10836 \N +430266 2025-10-29 12:55:53.186217+00 2025-10-29 12:55:53.186223+00 f t ADELANTO 11000.00 5 10836 \N +424462 2025-10-28 12:47:29.819446+00 2025-10-28 12:47:29.819455+00 f t SUBTOTAL 0.00 1 10706 \N +424463 2025-10-28 12:47:29.821445+00 2025-10-28 12:47:29.821454+00 f t COSTO_SERVICIO 0.00 2 10706 \N +424464 2025-10-28 12:47:29.822667+00 2025-10-28 12:47:29.822674+00 f t DESCUENTO 0.00 3 10706 \N +424465 2025-10-28 12:47:29.82378+00 2025-10-28 12:47:29.823786+00 f t TOTAL 0.00 4 10706 \N +424466 2025-10-28 12:47:29.824794+00 2025-10-28 12:47:29.824799+00 f t ADELANTO 0.00 5 10706 \N +424492 2025-10-28 12:53:42.019563+00 2025-10-28 12:53:42.019574+00 f t SUBTOTAL 54000.00 1 10707 \N +424493 2025-10-28 12:53:42.021577+00 2025-10-28 12:53:42.021586+00 f t COSTO_SERVICIO 0.00 2 10707 \N +424494 2025-10-28 12:53:42.023116+00 2025-10-28 12:53:42.023124+00 f t DESCUENTO 0.00 3 10707 \N +424495 2025-10-28 12:53:42.02439+00 2025-10-28 12:53:42.024396+00 f t TOTAL 54000.00 4 10707 \N +424496 2025-10-28 12:53:42.025639+00 2025-10-28 12:53:42.025646+00 f t ADELANTO 13500.00 5 10707 \N +431112 2025-10-29 15:17:32.568714+00 2025-10-29 15:17:32.568726+00 f t SUBTOTAL 0.00 1 10857 \N +431113 2025-10-29 15:17:32.571401+00 2025-10-29 15:17:32.571409+00 f t COSTO_SERVICIO 0.00 2 10857 \N +431114 2025-10-29 15:17:32.572895+00 2025-10-29 15:17:32.572901+00 f t DESCUENTO 0.00 3 10857 \N +431115 2025-10-29 15:17:32.573793+00 2025-10-29 15:17:32.573799+00 f t TOTAL 0.00 4 10857 \N +431116 2025-10-29 15:17:32.57481+00 2025-10-29 15:17:32.574816+00 f t ADELANTO 0.00 5 10857 \N +441177 2025-10-31 18:11:03.07803+00 2025-10-31 18:11:03.078041+00 f t SUBTOTAL 107000.00 1 11099 \N +441178 2025-10-31 18:11:03.079763+00 2025-10-31 18:11:03.079771+00 f t COSTO_SERVICIO 0.00 2 11099 \N +441179 2025-10-31 18:11:03.08103+00 2025-10-31 18:11:03.081037+00 f t DESCUENTO 0.00 3 11099 \N +424512 2025-10-28 12:54:52.191247+00 2025-10-28 12:54:52.191256+00 f t SUBTOTAL 0.00 1 10708 \N +424513 2025-10-28 12:54:52.194562+00 2025-10-28 12:54:52.19457+00 f t COSTO_SERVICIO 0.00 2 10708 \N +424514 2025-10-28 12:54:52.195739+00 2025-10-28 12:54:52.195745+00 f t DESCUENTO 0.00 3 10708 \N +424515 2025-10-28 12:54:52.196827+00 2025-10-28 12:54:52.196833+00 f t TOTAL 0.00 4 10708 \N +424516 2025-10-28 12:54:52.197883+00 2025-10-28 12:54:52.197892+00 f t ADELANTO 0.00 5 10708 \N +441180 2025-10-31 18:11:03.082347+00 2025-10-31 18:11:03.082353+00 f t TOTAL 107000.00 4 11099 \N +441181 2025-10-31 18:11:03.083303+00 2025-10-31 18:11:03.083308+00 f t ADELANTO 12000.00 5 11099 \N +425937 2025-10-28 17:03:38.725038+00 2025-10-28 17:03:38.725046+00 f t SUBTOTAL 30000.00 1 10740 \N +425938 2025-10-28 17:03:38.726805+00 2025-10-28 17:03:38.726813+00 f t COSTO_SERVICIO 0.00 2 10740 \N +425939 2025-10-28 17:03:38.728105+00 2025-10-28 17:03:38.728113+00 f t DESCUENTO 0.00 3 10740 \N +425940 2025-10-28 17:03:38.729269+00 2025-10-28 17:03:38.729274+00 f t TOTAL 30000.00 4 10740 \N +425941 2025-10-28 17:03:38.730311+00 2025-10-28 17:03:38.730317+00 f t ADELANTO 30000.00 5 10740 \N +424562 2025-10-28 13:25:04.663307+00 2025-10-28 13:25:04.66332+00 f t SUBTOTAL 46000.00 1 10709 \N +424563 2025-10-28 13:25:04.666722+00 2025-10-28 13:25:04.666735+00 f t COSTO_SERVICIO 0.00 2 10709 \N +424564 2025-10-28 13:25:04.670718+00 2025-10-28 13:25:04.67073+00 f t DESCUENTO 0.00 3 10709 \N +424565 2025-10-28 13:25:04.676332+00 2025-10-28 13:25:04.676346+00 f t TOTAL 46000.00 4 10709 \N +424566 2025-10-28 13:25:04.680595+00 2025-10-28 13:25:04.680609+00 f t ADELANTO 11000.00 5 10709 \N +427152 2025-10-28 20:56:27.504013+00 2025-10-28 20:56:27.504021+00 f t SUBTOTAL 55000.00 1 10774 \N +427153 2025-10-28 20:56:27.505818+00 2025-10-28 20:56:27.505825+00 f t COSTO_SERVICIO 0.00 2 10774 \N +427154 2025-10-28 20:56:27.506984+00 2025-10-28 20:56:27.50699+00 f t DESCUENTO 0.00 3 10774 \N +424582 2025-10-28 13:25:54.053592+00 2025-10-28 13:25:54.053605+00 f t SUBTOTAL 0.00 1 10710 \N +424583 2025-10-28 13:25:54.055826+00 2025-10-28 13:25:54.055836+00 f t COSTO_SERVICIO 0.00 2 10710 \N +424584 2025-10-28 13:25:54.057089+00 2025-10-28 13:25:54.057098+00 f t DESCUENTO 0.00 3 10710 \N +424585 2025-10-28 13:25:54.058232+00 2025-10-28 13:25:54.058241+00 f t TOTAL 0.00 4 10710 \N +424586 2025-10-28 13:25:54.059366+00 2025-10-28 13:25:54.059374+00 f t ADELANTO 0.00 5 10710 \N +427155 2025-10-28 20:56:27.508149+00 2025-10-28 20:56:27.508155+00 f t TOTAL 55000.00 4 10774 \N +427156 2025-10-28 20:56:27.509209+00 2025-10-28 20:56:27.509215+00 f t ADELANTO 11000.00 5 10774 \N +424592 2025-10-28 13:26:10.467825+00 2025-10-28 13:26:10.467834+00 f t SUBTOTAL 0.00 1 10711 \N +424593 2025-10-28 13:26:10.469061+00 2025-10-28 13:26:10.469068+00 f t COSTO_SERVICIO 0.00 2 10711 \N +424594 2025-10-28 13:26:10.470177+00 2025-10-28 13:26:10.470182+00 f t DESCUENTO 0.00 3 10711 \N +424595 2025-10-28 13:26:10.471143+00 2025-10-28 13:26:10.471149+00 f t TOTAL 0.00 4 10711 \N +424596 2025-10-28 13:26:10.472384+00 2025-10-28 13:26:10.472389+00 f t ADELANTO 0.00 5 10711 \N +427312 2025-10-28 21:29:46.875433+00 2025-10-28 21:29:46.875443+00 f t SUBTOTAL 0.00 1 10782 \N +427313 2025-10-28 21:29:46.876753+00 2025-10-28 21:29:46.87676+00 f t COSTO_SERVICIO 0.00 2 10782 \N +427314 2025-10-28 21:29:46.877823+00 2025-10-28 21:29:46.877828+00 f t DESCUENTO 0.00 3 10782 \N +424602 2025-10-28 13:29:45.023168+00 2025-10-28 13:29:45.023181+00 f t SUBTOTAL 0.00 1 10712 \N +424603 2025-10-28 13:29:45.02484+00 2025-10-28 13:29:45.024851+00 f t COSTO_SERVICIO 0.00 2 10712 \N +424604 2025-10-28 13:29:45.026263+00 2025-10-28 13:29:45.026272+00 f t DESCUENTO 0.00 3 10712 \N +424605 2025-10-28 13:29:45.027629+00 2025-10-28 13:29:45.027638+00 f t TOTAL 0.00 4 10712 \N +424606 2025-10-28 13:29:45.028899+00 2025-10-28 13:29:45.028906+00 f t ADELANTO 0.00 5 10712 \N +427315 2025-10-28 21:29:46.878706+00 2025-10-28 21:29:46.878711+00 f t TOTAL 0.00 4 10782 \N +427316 2025-10-28 21:29:46.879709+00 2025-10-28 21:29:46.879715+00 f t ADELANTO 0.00 5 10782 \N +437382 2025-10-30 20:07:47.69079+00 2025-10-30 20:07:47.690798+00 f t SUBTOTAL 0.00 1 11005 \N +437383 2025-10-30 20:07:47.693295+00 2025-10-30 20:07:47.693302+00 f t COSTO_SERVICIO 0.00 2 11005 \N +437384 2025-10-30 20:07:47.694568+00 2025-10-30 20:07:47.694574+00 f t DESCUENTO 0.00 3 11005 \N +437385 2025-10-30 20:07:47.695688+00 2025-10-30 20:07:47.695694+00 f t TOTAL 0.00 4 11005 \N +437386 2025-10-30 20:07:47.697107+00 2025-10-30 20:07:47.697113+00 f t ADELANTO 0.00 5 11005 \N +427717 2025-10-28 23:30:55.942861+00 2025-10-28 23:30:55.942871+00 f t SUBTOTAL 46000.00 1 10794 \N +427718 2025-10-28 23:30:55.945098+00 2025-10-28 23:30:55.945108+00 f t COSTO_SERVICIO 0.00 2 10794 \N +427719 2025-10-28 23:30:55.946749+00 2025-10-28 23:30:55.946757+00 f t DESCUENTO 0.00 3 10794 \N +427720 2025-10-28 23:30:55.948386+00 2025-10-28 23:30:55.948397+00 f t TOTAL 46000.00 4 10794 \N +427721 2025-10-28 23:30:55.950055+00 2025-10-28 23:30:55.950065+00 f t ADELANTO 11000.00 5 10794 \N +424662 2025-10-28 13:41:29.966101+00 2025-10-28 13:41:29.96611+00 f t SUBTOTAL 0.00 1 10713 \N +424663 2025-10-28 13:41:29.967881+00 2025-10-28 13:41:29.967888+00 f t COSTO_SERVICIO 0.00 2 10713 \N +424664 2025-10-28 13:41:29.969235+00 2025-10-28 13:41:29.969242+00 f t DESCUENTO 0.00 3 10713 \N +424665 2025-10-28 13:41:29.970324+00 2025-10-28 13:41:29.97033+00 f t TOTAL 0.00 4 10713 \N +424666 2025-10-28 13:41:29.971323+00 2025-10-28 13:41:29.971329+00 f t ADELANTO 0.00 5 10713 \N +424667 2025-10-28 13:45:07.305819+00 2025-10-28 13:45:07.305827+00 f t SUBTOTAL 78000.00 1 10684 \N +424668 2025-10-28 13:45:07.307956+00 2025-10-28 13:45:07.307964+00 f t COSTO_SERVICIO 0.00 2 10684 \N +424669 2025-10-28 13:45:07.309443+00 2025-10-28 13:45:07.309449+00 f t DESCUENTO 0.00 3 10684 \N +424670 2025-10-28 13:45:07.31098+00 2025-10-28 13:45:07.310986+00 f t TOTAL 78000.00 4 10684 \N +424671 2025-10-28 13:45:07.312859+00 2025-10-28 13:45:07.312867+00 f t ADELANTO 21500.00 5 10684 \N +424712 2025-10-28 14:03:32.324713+00 2025-10-28 14:03:32.324726+00 f t SUBTOTAL 23000.00 1 10715 \N +424713 2025-10-28 14:03:32.326454+00 2025-10-28 14:03:32.326464+00 f t COSTO_SERVICIO 0.00 2 10715 \N +424714 2025-10-28 14:03:32.327876+00 2025-10-28 14:03:32.327885+00 f t DESCUENTO 0.00 3 10715 \N +424715 2025-10-28 14:03:32.329298+00 2025-10-28 14:03:32.329306+00 f t TOTAL 23000.00 4 10715 \N +424716 2025-10-28 14:03:32.330566+00 2025-10-28 14:03:32.330574+00 f t ADELANTO 5500.00 5 10715 \N +424757 2025-10-28 14:22:36.162862+00 2025-10-28 14:22:36.16287+00 f t SUBTOTAL 46000.00 1 10716 \N +424758 2025-10-28 14:22:36.165722+00 2025-10-28 14:22:36.165733+00 f t COSTO_SERVICIO 0.00 2 10716 \N +424759 2025-10-28 14:22:36.167478+00 2025-10-28 14:22:36.167485+00 f t DESCUENTO 0.00 3 10716 \N +424760 2025-10-28 14:22:36.169238+00 2025-10-28 14:22:36.169244+00 f t TOTAL 46000.00 4 10716 \N +424761 2025-10-28 14:22:36.170474+00 2025-10-28 14:22:36.17048+00 f t ADELANTO 11000.00 5 10716 \N +430912 2025-10-29 14:45:53.86168+00 2025-10-29 14:45:53.86169+00 f t SUBTOTAL 0.00 1 10850 \N +430913 2025-10-29 14:45:53.864068+00 2025-10-29 14:45:53.864077+00 f t COSTO_SERVICIO 0.00 2 10850 \N +430914 2025-10-29 14:45:53.86558+00 2025-10-29 14:45:53.865588+00 f t DESCUENTO 0.00 3 10850 \N +430915 2025-10-29 14:45:53.867089+00 2025-10-29 14:45:53.867096+00 f t TOTAL 0.00 4 10850 \N +430916 2025-10-29 14:45:53.86842+00 2025-10-29 14:45:53.868428+00 f t ADELANTO 0.00 5 10850 \N +431047 2025-10-29 15:13:17.829516+00 2025-10-29 15:13:17.829528+00 f t SUBTOTAL 70000.00 1 10854 \N +431048 2025-10-29 15:13:17.831817+00 2025-10-29 15:13:17.831828+00 f t COSTO_SERVICIO 0.00 2 10854 \N +431049 2025-10-29 15:13:17.833509+00 2025-10-29 15:13:17.833518+00 f t DESCUENTO 0.00 3 10854 \N +431050 2025-10-29 15:13:17.835103+00 2025-10-29 15:13:17.835112+00 f t TOTAL 70000.00 4 10854 \N +431051 2025-10-29 15:13:17.836767+00 2025-10-29 15:13:17.836776+00 f t ADELANTO 19000.00 5 10854 \N +424812 2025-10-28 14:32:21.519444+00 2025-10-28 14:32:21.519455+00 f t SUBTOTAL 70000.00 1 10717 \N +424813 2025-10-28 14:32:21.521132+00 2025-10-28 14:32:21.52114+00 f t COSTO_SERVICIO 0.00 2 10717 \N +424814 2025-10-28 14:32:21.522373+00 2025-10-28 14:32:21.52238+00 f t DESCUENTO 0.00 3 10717 \N +424815 2025-10-28 14:32:21.523367+00 2025-10-28 14:32:21.523372+00 f t TOTAL 70000.00 4 10717 \N +424816 2025-10-28 14:32:21.524366+00 2025-10-28 14:32:21.524373+00 f t ADELANTO 19000.00 5 10717 \N +424832 2025-10-28 14:39:27.620101+00 2025-10-28 14:39:27.620109+00 f t SUBTOTAL 0.00 1 10718 \N +424833 2025-10-28 14:39:27.622735+00 2025-10-28 14:39:27.622743+00 f t COSTO_SERVICIO 0.00 2 10718 \N +424834 2025-10-28 14:39:27.624446+00 2025-10-28 14:39:27.624452+00 f t DESCUENTO 0.00 3 10718 \N +424835 2025-10-28 14:39:27.625854+00 2025-10-28 14:39:27.625862+00 f t TOTAL 0.00 4 10718 \N +424836 2025-10-28 14:39:27.627837+00 2025-10-28 14:39:27.627848+00 f t ADELANTO 0.00 5 10718 \N +424877 2025-10-28 15:00:03.319923+00 2025-10-28 15:00:03.319938+00 f t SUBTOTAL 107000.00 1 10719 \N +424878 2025-10-28 15:00:03.360821+00 2025-10-28 15:00:03.360835+00 f t COSTO_SERVICIO 0.00 2 10719 \N +424879 2025-10-28 15:00:03.366415+00 2025-10-28 15:00:03.36643+00 f t DESCUENTO 0.00 3 10719 \N +424880 2025-10-28 15:00:03.368974+00 2025-10-28 15:00:03.368987+00 f t TOTAL 107000.00 4 10719 \N +424881 2025-10-28 15:00:03.380422+00 2025-10-28 15:00:03.380437+00 f t ADELANTO 12000.00 5 10719 \N +424902 2025-10-28 15:01:56.91964+00 2025-10-28 15:01:56.919651+00 f t SUBTOTAL 100900.00 1 10721 \N +424903 2025-10-28 15:01:56.921766+00 2025-10-28 15:01:56.921775+00 f t COSTO_SERVICIO 0.00 2 10721 \N +424904 2025-10-28 15:01:56.92339+00 2025-10-28 15:01:56.923399+00 f t DESCUENTO 0.00 3 10721 \N +424905 2025-10-28 15:01:56.924668+00 2025-10-28 15:01:56.924676+00 f t TOTAL 100900.00 4 10721 \N +424906 2025-10-28 15:01:56.926058+00 2025-10-28 15:01:56.926068+00 f t ADELANTO 60400.00 5 10721 \N +438162 2025-10-30 23:43:53.720716+00 2025-10-30 23:43:53.720727+00 f t SUBTOTAL 66000.00 1 11024 \N +438163 2025-10-30 23:43:53.722687+00 2025-10-30 23:43:53.722696+00 f t COSTO_SERVICIO 0.00 2 11024 \N +438164 2025-10-30 23:43:53.724132+00 2025-10-30 23:43:53.724139+00 f t DESCUENTO 0.00 3 11024 \N +438165 2025-10-30 23:43:53.725257+00 2025-10-30 23:43:53.725267+00 f t TOTAL 66000.00 4 11024 \N +438166 2025-10-30 23:43:53.726267+00 2025-10-30 23:43:53.726274+00 f t ADELANTO 11000.00 5 11024 \N +439412 2025-10-31 09:24:39.926083+00 2025-10-31 09:24:39.926093+00 f t SUBTOTAL 0.00 1 11050 \N +439413 2025-10-31 09:24:39.92802+00 2025-10-31 09:24:39.928027+00 f t COSTO_SERVICIO 0.00 2 11050 \N +439414 2025-10-31 09:24:39.929072+00 2025-10-31 09:24:39.929077+00 f t DESCUENTO 0.00 3 11050 \N +439415 2025-10-31 09:24:39.93006+00 2025-10-31 09:24:39.930065+00 f t TOTAL 0.00 4 11050 \N +439416 2025-10-31 09:24:39.93096+00 2025-10-31 09:24:39.930967+00 f t ADELANTO 0.00 5 11050 \N +439512 2025-10-31 10:38:58.285393+00 2025-10-31 10:38:58.285402+00 f t SUBTOTAL 0.00 1 11052 \N +439513 2025-10-31 10:38:58.287318+00 2025-10-31 10:38:58.287324+00 f t COSTO_SERVICIO 0.00 2 11052 \N +439514 2025-10-31 10:38:58.288327+00 2025-10-31 10:38:58.288333+00 f t DESCUENTO 0.00 3 11052 \N +439515 2025-10-31 10:38:58.289303+00 2025-10-31 10:38:58.289308+00 f t TOTAL 0.00 4 11052 \N +439516 2025-10-31 10:38:58.290183+00 2025-10-31 10:38:58.290187+00 f t ADELANTO 0.00 5 11052 \N +424977 2025-10-28 15:23:31.664856+00 2025-10-28 15:23:31.664863+00 f t SUBTOTAL 107000.00 1 10723 \N +424978 2025-10-28 15:23:31.666423+00 2025-10-28 15:23:31.666429+00 f t COSTO_SERVICIO 0.00 2 10723 \N +424979 2025-10-28 15:23:31.667556+00 2025-10-28 15:23:31.667562+00 f t DESCUENTO 0.00 3 10723 \N +424980 2025-10-28 15:23:31.669019+00 2025-10-28 15:23:31.669027+00 f t TOTAL 107000.00 4 10723 \N +424981 2025-10-28 15:23:31.670162+00 2025-10-28 15:23:31.670169+00 f t ADELANTO 12000.00 5 10723 \N +424992 2025-10-28 15:23:55.313164+00 2025-10-28 15:23:55.313171+00 f t SUBTOTAL 75000.00 1 10714 \N +424993 2025-10-28 15:23:55.314661+00 2025-10-28 15:23:55.314667+00 f t COSTO_SERVICIO 0.00 2 10714 \N +424994 2025-10-28 15:23:55.315838+00 2025-10-28 15:23:55.315844+00 f t DESCUENTO 0.00 3 10714 \N +424995 2025-10-28 15:23:55.316962+00 2025-10-28 15:23:55.316967+00 f t TOTAL 75000.00 4 10714 \N +424996 2025-10-28 15:23:55.318139+00 2025-10-28 15:23:55.318147+00 f t ADELANTO 15000.00 5 10714 \N +439947 2025-10-31 13:39:50.921102+00 2025-10-31 13:39:50.921109+00 f t SUBTOTAL 55000.00 1 11065 \N +439948 2025-10-31 13:39:50.922852+00 2025-10-31 13:39:50.922859+00 f t COSTO_SERVICIO 0.00 2 11065 \N +439949 2025-10-31 13:39:50.92389+00 2025-10-31 13:39:50.923895+00 f t DESCUENTO 0.00 3 11065 \N +439950 2025-10-31 13:39:50.924854+00 2025-10-31 13:39:50.924861+00 f t TOTAL 55000.00 4 11065 \N +439951 2025-10-31 13:39:50.925787+00 2025-10-31 13:39:50.925792+00 f t ADELANTO 11000.00 5 11065 \N +425027 2025-10-28 15:24:21.317927+00 2025-10-28 15:24:21.317935+00 f t SUBTOTAL 46000.00 1 10720 \N +425028 2025-10-28 15:24:21.319446+00 2025-10-28 15:24:21.319453+00 f t COSTO_SERVICIO 0.00 2 10720 \N +425029 2025-10-28 15:24:21.320576+00 2025-10-28 15:24:21.320582+00 f t DESCUENTO 0.00 3 10720 \N +425030 2025-10-28 15:24:21.321712+00 2025-10-28 15:24:21.321717+00 f t TOTAL 46000.00 4 10720 \N +425031 2025-10-28 15:24:21.322962+00 2025-10-28 15:24:21.322967+00 f t ADELANTO 11000.00 5 10720 \N +440502 2025-10-31 15:14:21.779431+00 2025-10-31 15:14:21.779439+00 f t SUBTOTAL 0.00 1 11080 \N +440503 2025-10-31 15:14:21.781294+00 2025-10-31 15:14:21.7813+00 f t COSTO_SERVICIO 0.00 2 11080 \N +425037 2025-10-28 15:24:43.306682+00 2025-10-28 15:24:43.306689+00 f t SUBTOTAL 214000.00 1 10722 \N +425038 2025-10-28 15:24:43.308484+00 2025-10-28 15:24:43.308491+00 f t COSTO_SERVICIO 0.00 2 10722 \N +425039 2025-10-28 15:24:43.309873+00 2025-10-28 15:24:43.309879+00 f t DESCUENTO 0.00 3 10722 \N +425040 2025-10-28 15:24:43.311125+00 2025-10-28 15:24:43.311152+00 f t TOTAL 214000.00 4 10722 \N +425041 2025-10-28 15:24:43.312352+00 2025-10-28 15:24:43.312359+00 f t ADELANTO 24000.00 5 10722 \N +440504 2025-10-31 15:14:21.78227+00 2025-10-31 15:14:21.782275+00 f t DESCUENTO 0.00 3 11080 \N +440505 2025-10-31 15:14:21.783261+00 2025-10-31 15:14:21.783266+00 f t TOTAL 0.00 4 11080 \N +440506 2025-10-31 15:14:21.7841+00 2025-10-31 15:14:21.784104+00 f t ADELANTO 0.00 5 11080 \N +430277 2025-10-29 13:03:00.147965+00 2025-10-29 13:03:00.147974+00 f t SUBTOTAL 47000.00 1 10837 \N +430278 2025-10-29 13:03:00.15026+00 2025-10-29 13:03:00.150269+00 f t COSTO_SERVICIO 0.00 2 10837 \N +430279 2025-10-29 13:03:00.15187+00 2025-10-29 13:03:00.151879+00 f t DESCUENTO 0.00 3 10837 \N +430280 2025-10-29 13:03:00.153336+00 2025-10-29 13:03:00.153343+00 f t TOTAL 47000.00 4 10837 \N +430281 2025-10-29 13:03:00.154674+00 2025-10-29 13:03:00.154681+00 f t ADELANTO 12000.00 5 10837 \N +425067 2025-10-28 15:24:58.510438+00 2025-10-28 15:24:58.51045+00 f t SUBTOTAL 0.00 1 10724 \N +425068 2025-10-28 15:24:58.512481+00 2025-10-28 15:24:58.512493+00 f t COSTO_SERVICIO 0.00 2 10724 \N +425069 2025-10-28 15:24:58.514209+00 2025-10-28 15:24:58.514217+00 f t DESCUENTO 0.00 3 10724 \N +425070 2025-10-28 15:24:58.515671+00 2025-10-28 15:24:58.51568+00 f t TOTAL 0.00 4 10724 \N +425071 2025-10-28 15:24:58.516988+00 2025-10-28 15:24:58.516994+00 f t ADELANTO 0.00 5 10724 \N +430672 2025-10-29 14:12:19.743286+00 2025-10-29 14:12:19.743297+00 f t SUBTOTAL 70000.00 1 10845 \N +430673 2025-10-29 14:12:19.745272+00 2025-10-29 14:12:19.74528+00 f t COSTO_SERVICIO 0.00 2 10845 \N +430674 2025-10-29 14:12:19.746843+00 2025-10-29 14:12:19.746851+00 f t DESCUENTO 0.00 3 10845 \N +430675 2025-10-29 14:12:19.748085+00 2025-10-29 14:12:19.748091+00 f t TOTAL 70000.00 4 10845 \N +430676 2025-10-29 14:12:19.749273+00 2025-10-29 14:12:19.74928+00 f t ADELANTO 19000.00 5 10845 \N +425107 2025-10-28 15:28:28.973112+00 2025-10-28 15:28:28.973119+00 f t SUBTOTAL 55000.00 1 10725 \N +425108 2025-10-28 15:28:28.974494+00 2025-10-28 15:28:28.9745+00 f t COSTO_SERVICIO 0.00 2 10725 \N +425109 2025-10-28 15:28:28.975484+00 2025-10-28 15:28:28.975489+00 f t DESCUENTO 0.00 3 10725 \N +425110 2025-10-28 15:28:28.976467+00 2025-10-28 15:28:28.976472+00 f t TOTAL 55000.00 4 10725 \N +425111 2025-10-28 15:28:28.977335+00 2025-10-28 15:28:28.97734+00 f t ADELANTO 11000.00 5 10725 \N +500347 2025-11-16 02:24:13.047735+00 2025-11-16 02:24:13.047747+00 f t SUBTOTAL 46000.00 1 12483 \N +500348 2025-11-16 02:24:13.050047+00 2025-11-16 02:24:13.050056+00 f t COSTO_SERVICIO 0.00 2 12483 \N +500349 2025-11-16 02:24:13.05161+00 2025-11-16 02:24:13.051619+00 f t DESCUENTO 0.00 3 12483 \N +500350 2025-11-16 02:24:13.053106+00 2025-11-16 02:24:13.053112+00 f t TOTAL 46000.00 4 12483 \N +500351 2025-11-16 02:24:13.054259+00 2025-11-16 02:24:13.054264+00 f t ADELANTO 11000.00 5 12483 \N +426577 2025-10-28 19:07:45.421531+00 2025-10-28 19:07:45.421541+00 f t SUBTOTAL 0.00 1 10755 \N +426578 2025-10-28 19:07:45.422928+00 2025-10-28 19:07:45.422936+00 f t COSTO_SERVICIO 0.00 2 10755 \N +426579 2025-10-28 19:07:45.424069+00 2025-10-28 19:07:45.424075+00 f t DESCUENTO 0.00 3 10755 \N +426580 2025-10-28 19:07:45.425104+00 2025-10-28 19:07:45.42511+00 f t TOTAL 0.00 4 10755 \N +426581 2025-10-28 19:07:45.426351+00 2025-10-28 19:07:45.426357+00 f t ADELANTO 0.00 5 10755 \N +436822 2025-10-30 17:25:30.228744+00 2025-10-30 17:25:30.228753+00 f t SUBTOTAL 54000.00 1 10991 \N +425147 2025-10-28 15:42:28.497238+00 2025-10-28 15:42:28.497246+00 f t SUBTOTAL 68000.00 1 10726 \N +425148 2025-10-28 15:42:28.498891+00 2025-10-28 15:42:28.498898+00 f t COSTO_SERVICIO 0.00 2 10726 \N +425149 2025-10-28 15:42:28.501492+00 2025-10-28 15:42:28.501498+00 f t DESCUENTO 0.00 3 10726 \N +425150 2025-10-28 15:42:28.502806+00 2025-10-28 15:42:28.502813+00 f t TOTAL 68000.00 4 10726 \N +425151 2025-10-28 15:42:28.503921+00 2025-10-28 15:42:28.503927+00 f t ADELANTO 13000.00 5 10726 \N +436823 2025-10-30 17:25:30.230593+00 2025-10-30 17:25:30.230599+00 f t COSTO_SERVICIO 0.00 2 10991 \N +436824 2025-10-30 17:25:30.231926+00 2025-10-30 17:25:30.231932+00 f t DESCUENTO 0.00 3 10991 \N +436825 2025-10-30 17:25:30.233082+00 2025-10-30 17:25:30.233088+00 f t TOTAL 54000.00 4 10991 \N +436826 2025-10-30 17:25:30.234036+00 2025-10-30 17:25:30.234042+00 f t ADELANTO 13500.00 5 10991 \N +427167 2025-10-28 20:59:32.91017+00 2025-10-28 20:59:32.910177+00 f t SUBTOTAL 30000.00 1 10775 \N +427168 2025-10-28 20:59:32.912081+00 2025-10-28 20:59:32.912086+00 f t COSTO_SERVICIO 0.00 2 10775 \N +427169 2025-10-28 20:59:32.9131+00 2025-10-28 20:59:32.913107+00 f t DESCUENTO 0.00 3 10775 \N +427170 2025-10-28 20:59:32.914098+00 2025-10-28 20:59:32.914103+00 f t TOTAL 30000.00 4 10775 \N +427171 2025-10-28 20:59:32.91503+00 2025-10-28 20:59:32.915035+00 f t ADELANTO 30000.00 5 10775 \N +427332 2025-10-28 21:40:24.142514+00 2025-10-28 21:40:24.142524+00 f t SUBTOTAL 0.00 1 10783 \N +427333 2025-10-28 21:40:24.143876+00 2025-10-28 21:40:24.143884+00 f t COSTO_SERVICIO 0.00 2 10783 \N +427334 2025-10-28 21:40:24.144923+00 2025-10-28 21:40:24.144929+00 f t DESCUENTO 0.00 3 10783 \N +427335 2025-10-28 21:40:24.145849+00 2025-10-28 21:40:24.145855+00 f t TOTAL 0.00 4 10783 \N +427336 2025-10-28 21:40:24.147158+00 2025-10-28 21:40:24.147165+00 f t ADELANTO 0.00 5 10783 \N +468147 2025-11-08 03:59:05.981301+00 2025-11-08 03:59:05.98131+00 f t SUBTOTAL 0.00 1 11725 \N +468148 2025-11-08 03:59:05.982757+00 2025-11-08 03:59:05.982763+00 f t COSTO_SERVICIO 0.00 2 11725 \N +468149 2025-11-08 03:59:05.985639+00 2025-11-08 03:59:05.985646+00 f t DESCUENTO 0.00 3 11725 \N +468150 2025-11-08 03:59:05.986773+00 2025-11-08 03:59:05.986779+00 f t TOTAL 0.00 4 11725 \N +438002 2025-10-30 22:27:01.113701+00 2025-10-30 22:27:01.113709+00 f t SUBTOTAL 30000.00 1 11013 \N +438003 2025-10-30 22:27:01.115708+00 2025-10-30 22:27:01.115714+00 f t COSTO_SERVICIO 0.00 2 11013 \N +438004 2025-10-30 22:27:01.117108+00 2025-10-30 22:27:01.117114+00 f t DESCUENTO 0.00 3 11013 \N +438005 2025-10-30 22:27:01.118215+00 2025-10-30 22:27:01.11822+00 f t TOTAL 30000.00 4 11013 \N +438006 2025-10-30 22:27:01.11948+00 2025-10-30 22:27:01.119485+00 f t ADELANTO 30000.00 5 11013 \N +425212 2025-10-28 15:48:14.851462+00 2025-10-28 15:48:14.851469+00 f t SUBTOTAL 30000.00 1 10728 \N +425213 2025-10-28 15:48:14.853034+00 2025-10-28 15:48:14.85304+00 f t COSTO_SERVICIO 0.00 2 10728 \N +425214 2025-10-28 15:48:14.854136+00 2025-10-28 15:48:14.854142+00 f t DESCUENTO 0.00 3 10728 \N +425215 2025-10-28 15:48:14.855229+00 2025-10-28 15:48:14.855237+00 f t TOTAL 30000.00 4 10728 \N +425216 2025-10-28 15:48:14.856313+00 2025-10-28 15:48:14.856318+00 f t ADELANTO 30000.00 5 10728 \N +428692 2025-10-29 00:17:12.211441+00 2025-10-29 00:17:12.211449+00 f t SUBTOTAL 88000.00 1 10806 \N +428693 2025-10-29 00:17:12.213088+00 2025-10-29 00:17:12.213094+00 f t COSTO_SERVICIO 0.00 2 10806 \N +428694 2025-10-29 00:17:12.214108+00 2025-10-29 00:17:12.214114+00 f t DESCUENTO 0.00 3 10806 \N +428695 2025-10-29 00:17:12.215046+00 2025-10-29 00:17:12.215052+00 f t TOTAL 88000.00 4 10806 \N +428696 2025-10-29 00:17:12.21603+00 2025-10-29 00:17:12.216036+00 f t ADELANTO 13000.00 5 10806 \N +438727 2025-10-31 02:21:25.525857+00 2025-10-31 02:21:25.525865+00 f t SUBTOTAL 46000.00 1 11036 \N +438728 2025-10-31 02:21:25.527756+00 2025-10-31 02:21:25.527762+00 f t COSTO_SERVICIO 0.00 2 11036 \N +438729 2025-10-31 02:21:25.52876+00 2025-10-31 02:21:25.528766+00 f t DESCUENTO 0.00 3 11036 \N +438730 2025-10-31 02:21:25.529639+00 2025-10-31 02:21:25.529643+00 f t TOTAL 46000.00 4 11036 \N +438731 2025-10-31 02:21:25.530599+00 2025-10-31 02:21:25.530604+00 f t ADELANTO 11000.00 5 11036 \N +429192 2025-10-29 04:01:17.224383+00 2025-10-29 04:01:17.224393+00 f t SUBTOTAL 102000.00 1 10819 \N +429193 2025-10-29 04:01:17.226645+00 2025-10-29 04:01:17.226653+00 f t COSTO_SERVICIO 0.00 2 10819 \N +429194 2025-10-29 04:01:17.228027+00 2025-10-29 04:01:17.228033+00 f t DESCUENTO 0.00 3 10819 \N +429195 2025-10-29 04:01:17.229398+00 2025-10-29 04:01:17.229404+00 f t TOTAL 102000.00 4 10819 \N +429196 2025-10-29 04:01:17.230689+00 2025-10-29 04:01:17.230694+00 f t ADELANTO 29500.00 5 10819 \N +425282 2025-10-28 15:56:56.139234+00 2025-10-28 15:56:56.139242+00 f t SUBTOTAL 47000.00 1 10729 \N +425283 2025-10-28 15:56:56.140871+00 2025-10-28 15:56:56.140879+00 f t COSTO_SERVICIO 0.00 2 10729 \N +425284 2025-10-28 15:56:56.142063+00 2025-10-28 15:56:56.142069+00 f t DESCUENTO 0.00 3 10729 \N +425285 2025-10-28 15:56:56.143071+00 2025-10-28 15:56:56.143077+00 f t TOTAL 47000.00 4 10729 \N +425286 2025-10-28 15:56:56.144124+00 2025-10-28 15:56:56.14413+00 f t ADELANTO 12000.00 5 10729 \N +429837 2025-10-29 10:54:53.489449+00 2025-10-29 10:54:53.48946+00 f t SUBTOTAL 0.00 1 10827 \N +429838 2025-10-29 10:54:53.492059+00 2025-10-29 10:54:53.492068+00 f t COSTO_SERVICIO 0.00 2 10827 \N +429839 2025-10-29 10:54:53.494187+00 2025-10-29 10:54:53.494195+00 f t DESCUENTO 0.00 3 10827 \N +429840 2025-10-29 10:54:53.495523+00 2025-10-29 10:54:53.49553+00 f t TOTAL 0.00 4 10827 \N +429841 2025-10-29 10:54:53.496713+00 2025-10-29 10:54:53.496718+00 f t ADELANTO 0.00 5 10827 \N +439522 2025-10-31 10:44:48.49697+00 2025-10-31 10:44:48.496979+00 f t SUBTOTAL 0.00 1 11053 \N +425297 2025-10-28 15:58:28.035963+00 2025-10-28 15:58:28.03597+00 f t SUBTOTAL 23000.00 1 10730 \N +425298 2025-10-28 15:58:28.037358+00 2025-10-28 15:58:28.037364+00 f t COSTO_SERVICIO 0.00 2 10730 \N +425299 2025-10-28 15:58:28.03883+00 2025-10-28 15:58:28.038836+00 f t DESCUENTO 0.00 3 10730 \N +425300 2025-10-28 15:58:28.040065+00 2025-10-28 15:58:28.040071+00 f t TOTAL 23000.00 4 10730 \N +425301 2025-10-28 15:58:28.041094+00 2025-10-28 15:58:28.041099+00 f t ADELANTO 5500.00 5 10730 \N +439523 2025-10-31 10:44:48.498173+00 2025-10-31 10:44:48.498179+00 f t COSTO_SERVICIO 0.00 2 11053 \N +439524 2025-10-31 10:44:48.499165+00 2025-10-31 10:44:48.49917+00 f t DESCUENTO 0.00 3 11053 \N +439525 2025-10-31 10:44:48.500196+00 2025-10-31 10:44:48.500203+00 f t TOTAL 0.00 4 11053 \N +439526 2025-10-31 10:44:48.501059+00 2025-10-31 10:44:48.501065+00 f t ADELANTO 0.00 5 11053 \N +439632 2025-10-31 11:46:01.998004+00 2025-10-31 11:46:01.998016+00 f t SUBTOTAL 0.00 1 11057 \N +439633 2025-10-31 11:46:02.000229+00 2025-10-31 11:46:02.000237+00 f t COSTO_SERVICIO 0.00 2 11057 \N +439634 2025-10-31 11:46:02.001726+00 2025-10-31 11:46:02.001736+00 f t DESCUENTO 0.00 3 11057 \N +439635 2025-10-31 11:46:02.003251+00 2025-10-31 11:46:02.003261+00 f t TOTAL 0.00 4 11057 \N +439636 2025-10-31 11:46:02.004626+00 2025-10-31 11:46:02.004633+00 f t ADELANTO 0.00 5 11057 \N +425427 2025-10-28 16:19:44.340865+00 2025-10-28 16:19:44.340875+00 f t SUBTOTAL 0.00 1 10733 \N +425428 2025-10-28 16:19:44.342605+00 2025-10-28 16:19:44.342614+00 f t COSTO_SERVICIO 0.00 2 10733 \N +425429 2025-10-28 16:19:44.343825+00 2025-10-28 16:19:44.343834+00 f t DESCUENTO 0.00 3 10733 \N +425430 2025-10-28 16:19:44.344845+00 2025-10-28 16:19:44.344854+00 f t TOTAL 0.00 4 10733 \N +425431 2025-10-28 16:19:44.346145+00 2025-10-28 16:19:44.346151+00 f t ADELANTO 0.00 5 10733 \N +426887 2025-10-28 20:14:27.335599+00 2025-10-28 20:14:27.335607+00 f t SUBTOTAL 46000.00 1 10765 \N +426888 2025-10-28 20:14:27.337277+00 2025-10-28 20:14:27.337283+00 f t COSTO_SERVICIO 0.00 2 10765 \N +426889 2025-10-28 20:14:27.338531+00 2025-10-28 20:14:27.338537+00 f t DESCUENTO 0.00 3 10765 \N +426890 2025-10-28 20:14:27.33967+00 2025-10-28 20:14:27.339677+00 f t TOTAL 46000.00 4 10765 \N +426891 2025-10-28 20:14:27.340643+00 2025-10-28 20:14:27.340651+00 f t ADELANTO 11000.00 5 10765 \N +457997 2025-11-05 22:33:17.266499+00 2025-11-05 22:33:17.266511+00 f t SUBTOTAL 46000.00 1 11501 \N +457998 2025-11-05 22:33:17.268485+00 2025-11-05 22:33:17.268493+00 f t COSTO_SERVICIO 0.00 2 11501 \N +457999 2025-11-05 22:33:17.269936+00 2025-11-05 22:33:17.269944+00 f t DESCUENTO 0.00 3 11501 \N +458000 2025-11-05 22:33:17.271248+00 2025-11-05 22:33:17.271254+00 f t TOTAL 46000.00 4 11501 \N +458001 2025-11-05 22:33:17.272401+00 2025-11-05 22:33:17.272406+00 f t ADELANTO 11000.00 5 11501 \N +427342 2025-10-28 21:42:27.659442+00 2025-10-28 21:42:27.659451+00 f t SUBTOTAL 0.00 1 10784 \N +427343 2025-10-28 21:42:27.660757+00 2025-10-28 21:42:27.660764+00 f t COSTO_SERVICIO 0.00 2 10784 \N +427344 2025-10-28 21:42:27.661724+00 2025-10-28 21:42:27.661729+00 f t DESCUENTO 0.00 3 10784 \N +427345 2025-10-28 21:42:27.662677+00 2025-10-28 21:42:27.662683+00 f t TOTAL 0.00 4 10784 \N +427346 2025-10-28 21:42:27.663548+00 2025-10-28 21:42:27.663554+00 f t ADELANTO 0.00 5 10784 \N +427492 2025-10-28 22:42:59.221397+00 2025-10-28 22:42:59.221404+00 f t SUBTOTAL 54000.00 1 10790 \N +427493 2025-10-28 22:42:59.223342+00 2025-10-28 22:42:59.223349+00 f t COSTO_SERVICIO 0.00 2 10790 \N +427494 2025-10-28 22:42:59.224528+00 2025-10-28 22:42:59.224533+00 f t DESCUENTO 0.00 3 10790 \N +427495 2025-10-28 22:42:59.226425+00 2025-10-28 22:42:59.226432+00 f t TOTAL 54000.00 4 10790 \N +427496 2025-10-28 22:42:59.227564+00 2025-10-28 22:42:59.227569+00 f t ADELANTO 13500.00 5 10790 \N +437557 2025-10-30 20:19:04.324585+00 2025-10-30 20:19:04.324592+00 f t SUBTOTAL 79700.00 1 11007 \N +437558 2025-10-30 20:19:04.326473+00 2025-10-30 20:19:04.32648+00 f t COSTO_SERVICIO 0.00 2 11007 \N +437559 2025-10-30 20:19:04.327645+00 2025-10-30 20:19:04.327651+00 f t DESCUENTO 0.00 3 11007 \N +437560 2025-10-30 20:19:04.328734+00 2025-10-30 20:19:04.32874+00 f t TOTAL 79700.00 4 11007 \N +437561 2025-10-30 20:19:04.329796+00 2025-10-30 20:19:04.329802+00 f t ADELANTO 44700.00 5 11007 \N +425487 2025-10-28 16:20:08.668821+00 2025-10-28 16:20:08.668829+00 f t SUBTOTAL 68000.00 1 10731 \N +425488 2025-10-28 16:20:08.67069+00 2025-10-28 16:20:08.670698+00 f t COSTO_SERVICIO 0.00 2 10731 \N +425489 2025-10-28 16:20:08.672094+00 2025-10-28 16:20:08.6721+00 f t DESCUENTO 0.00 3 10731 \N +425490 2025-10-28 16:20:08.674214+00 2025-10-28 16:20:08.67422+00 f t TOTAL 68000.00 4 10731 \N +425491 2025-10-28 16:20:08.675549+00 2025-10-28 16:20:08.675558+00 f t ADELANTO 13000.00 5 10731 \N +425502 2025-10-28 16:20:15.684985+00 2025-10-28 16:20:15.684994+00 f t SUBTOTAL 214000.00 1 10727 \N +425503 2025-10-28 16:20:15.686702+00 2025-10-28 16:20:15.686709+00 f t COSTO_SERVICIO 0.00 2 10727 \N +425504 2025-10-28 16:20:15.688018+00 2025-10-28 16:20:15.688025+00 f t DESCUENTO 0.00 3 10727 \N +425505 2025-10-28 16:20:15.689246+00 2025-10-28 16:20:15.689253+00 f t TOTAL 214000.00 4 10727 \N +425506 2025-10-28 16:20:15.690367+00 2025-10-28 16:20:15.690373+00 f t ADELANTO 24000.00 5 10727 \N +425512 2025-10-28 16:20:31.216277+00 2025-10-28 16:20:31.216289+00 f t SUBTOTAL 0.00 1 10641 \N +425513 2025-10-28 16:20:31.218149+00 2025-10-28 16:20:31.218156+00 f t COSTO_SERVICIO 0.00 2 10641 \N +425514 2025-10-28 16:20:31.219511+00 2025-10-28 16:20:31.219518+00 f t DESCUENTO 0.00 3 10641 \N +425515 2025-10-28 16:20:31.220736+00 2025-10-28 16:20:31.220743+00 f t TOTAL 0.00 4 10641 \N +425516 2025-10-28 16:20:31.221927+00 2025-10-28 16:20:31.221933+00 f t ADELANTO 0.00 5 10641 \N +429087 2025-10-29 03:02:58.131127+00 2025-10-29 03:02:58.13117+00 f t SUBTOTAL 70000.00 1 10817 \N +429088 2025-10-29 03:02:58.132932+00 2025-10-29 03:02:58.132939+00 f t COSTO_SERVICIO 0.00 2 10817 \N +429089 2025-10-29 03:02:58.13411+00 2025-10-29 03:02:58.13412+00 f t DESCUENTO 0.00 3 10817 \N +429090 2025-10-29 03:02:58.135597+00 2025-10-29 03:02:58.135603+00 f t TOTAL 70000.00 4 10817 \N +429091 2025-10-29 03:02:58.136848+00 2025-10-29 03:02:58.136854+00 f t ADELANTO 19000.00 5 10817 \N +429202 2025-10-29 04:01:46.997992+00 2025-10-29 04:01:46.998002+00 f t SUBTOTAL 0.00 1 10820 \N +429203 2025-10-29 04:01:46.999635+00 2025-10-29 04:01:46.999643+00 f t COSTO_SERVICIO 0.00 2 10820 \N +429204 2025-10-29 04:01:47.001242+00 2025-10-29 04:01:47.00125+00 f t DESCUENTO 0.00 3 10820 \N +429205 2025-10-29 04:01:47.002729+00 2025-10-29 04:01:47.002738+00 f t TOTAL 0.00 4 10820 \N +429206 2025-10-29 04:01:47.004352+00 2025-10-29 04:01:47.004359+00 f t ADELANTO 0.00 5 10820 \N +425587 2025-10-28 16:24:08.457398+00 2025-10-28 16:24:08.457407+00 f t SUBTOTAL 13200.00 1 10735 \N +425588 2025-10-28 16:24:08.459424+00 2025-10-28 16:24:08.459433+00 f t COSTO_SERVICIO 0.00 2 10735 \N +425589 2025-10-28 16:24:08.460961+00 2025-10-28 16:24:08.460968+00 f t DESCUENTO 0.00 3 10735 \N +425590 2025-10-28 16:24:08.4625+00 2025-10-28 16:24:08.462508+00 f t TOTAL 13200.00 4 10735 \N +425591 2025-10-28 16:24:08.464142+00 2025-10-28 16:24:08.464149+00 f t ADELANTO 13200.00 5 10735 \N +429847 2025-10-29 11:22:07.80279+00 2025-10-29 11:22:07.802803+00 f t SUBTOTAL 0.00 1 10828 \N +429848 2025-10-29 11:22:07.807946+00 2025-10-29 11:22:07.80796+00 f t COSTO_SERVICIO 0.00 2 10828 \N +429849 2025-10-29 11:22:07.810136+00 2025-10-29 11:22:07.810148+00 f t DESCUENTO 0.00 3 10828 \N +429850 2025-10-29 11:22:07.812159+00 2025-10-29 11:22:07.81217+00 f t TOTAL 0.00 4 10828 \N +429851 2025-10-29 11:22:07.813789+00 2025-10-29 11:22:07.813799+00 f t ADELANTO 0.00 5 10828 \N +425632 2025-10-28 16:24:50.884758+00 2025-10-28 16:24:50.884768+00 f t SUBTOTAL 0.00 1 10734 \N +425633 2025-10-28 16:24:50.886632+00 2025-10-28 16:24:50.88664+00 f t COSTO_SERVICIO 0.00 2 10734 \N +425634 2025-10-28 16:24:50.887743+00 2025-10-28 16:24:50.887749+00 f t DESCUENTO 0.00 3 10734 \N +425635 2025-10-28 16:24:50.888731+00 2025-10-28 16:24:50.888737+00 f t TOTAL 0.00 4 10734 \N +425636 2025-10-28 16:24:50.889718+00 2025-10-28 16:24:50.889726+00 f t ADELANTO 0.00 5 10734 \N +430292 2025-10-29 13:06:25.534567+00 2025-10-29 13:06:25.534575+00 f t SUBTOTAL 47000.00 1 10838 \N +430293 2025-10-29 13:06:25.536383+00 2025-10-29 13:06:25.53639+00 f t COSTO_SERVICIO 0.00 2 10838 \N +430294 2025-10-29 13:06:25.537689+00 2025-10-29 13:06:25.537695+00 f t DESCUENTO 0.00 3 10838 \N +430295 2025-10-29 13:06:25.538695+00 2025-10-29 13:06:25.5387+00 f t TOTAL 47000.00 4 10838 \N +430296 2025-10-29 13:06:25.539652+00 2025-10-29 13:06:25.539657+00 f t ADELANTO 12000.00 5 10838 \N +430587 2025-10-29 14:05:48.695023+00 2025-10-29 14:05:48.695032+00 f t SUBTOTAL 0.00 1 10843 \N +430588 2025-10-29 14:05:48.697662+00 2025-10-29 14:05:48.697671+00 f t COSTO_SERVICIO 0.00 2 10843 \N +430589 2025-10-29 14:05:48.699184+00 2025-10-29 14:05:48.699191+00 f t DESCUENTO 0.00 3 10843 \N +430590 2025-10-29 14:05:48.700497+00 2025-10-29 14:05:48.700507+00 f t TOTAL 0.00 4 10843 \N +430591 2025-10-29 14:05:48.701658+00 2025-10-29 14:05:48.701663+00 f t ADELANTO 0.00 5 10843 \N +445792 2025-11-01 19:51:43.83037+00 2025-11-01 19:51:43.830377+00 f t SUBTOTAL 30000.00 1 11217 \N +445793 2025-11-01 19:51:43.831748+00 2025-11-01 19:51:43.831754+00 f t COSTO_SERVICIO 0.00 2 11217 \N +445794 2025-11-01 19:51:43.833265+00 2025-11-01 19:51:43.83327+00 f t DESCUENTO 0.00 3 11217 \N +445795 2025-11-01 19:51:43.834273+00 2025-11-01 19:51:43.834279+00 f t TOTAL 30000.00 4 11217 \N +445796 2025-11-01 19:51:43.835249+00 2025-11-01 19:51:43.835255+00 f t ADELANTO 30000.00 5 11217 \N +457297 2025-11-05 19:23:28.906539+00 2025-11-05 19:23:28.906551+00 f t SUBTOTAL 0.00 1 11484 \N +431287 2025-10-29 15:35:43.388618+00 2025-10-29 15:35:43.388626+00 f t SUBTOTAL 54000.00 1 10861 \N +431288 2025-10-29 15:35:43.390153+00 2025-10-29 15:35:43.390159+00 f t COSTO_SERVICIO 0.00 2 10861 \N +431289 2025-10-29 15:35:43.391242+00 2025-10-29 15:35:43.391247+00 f t DESCUENTO 0.00 3 10861 \N +431290 2025-10-29 15:35:43.392207+00 2025-10-29 15:35:43.392213+00 f t TOTAL 54000.00 4 10861 \N +431291 2025-10-29 15:35:43.393261+00 2025-10-29 15:35:43.393268+00 f t ADELANTO 13500.00 5 10861 \N +457298 2025-11-05 19:23:28.908806+00 2025-11-05 19:23:28.908812+00 f t COSTO_SERVICIO 0.00 2 11484 \N +457299 2025-11-05 19:23:28.910265+00 2025-11-05 19:23:28.910271+00 f t DESCUENTO 0.00 3 11484 \N +457300 2025-11-05 19:23:28.911313+00 2025-11-05 19:23:28.911317+00 f t TOTAL 0.00 4 11484 \N +457301 2025-11-05 19:23:28.912386+00 2025-11-05 19:23:28.912391+00 f t ADELANTO 0.00 5 11484 \N +431302 2025-10-29 15:36:18.331608+00 2025-10-29 15:36:18.331619+00 f t SUBTOTAL 46000.00 1 10860 \N +431303 2025-10-29 15:36:18.333158+00 2025-10-29 15:36:18.333165+00 f t COSTO_SERVICIO 0.00 2 10860 \N +431304 2025-10-29 15:36:18.334484+00 2025-10-29 15:36:18.334492+00 f t DESCUENTO 0.00 3 10860 \N +431305 2025-10-29 15:36:18.335791+00 2025-10-29 15:36:18.335799+00 f t TOTAL 46000.00 4 10860 \N +431306 2025-10-29 15:36:18.336978+00 2025-10-29 15:36:18.336984+00 f t ADELANTO 11000.00 5 10860 \N +448537 2025-11-03 15:01:38.454381+00 2025-11-03 15:01:38.45439+00 f t SUBTOTAL 0.00 1 11282 \N +448538 2025-11-03 15:01:38.45568+00 2025-11-03 15:01:38.455686+00 f t COSTO_SERVICIO 0.00 2 11282 \N +448539 2025-11-03 15:01:38.456705+00 2025-11-03 15:01:38.456711+00 f t DESCUENTO 0.00 3 11282 \N +448540 2025-11-03 15:01:38.457646+00 2025-11-03 15:01:38.457651+00 f t TOTAL 0.00 4 11282 \N +448541 2025-11-03 15:01:38.458558+00 2025-11-03 15:01:38.458563+00 f t ADELANTO 0.00 5 11282 \N +448687 2025-11-03 15:38:47.251306+00 2025-11-03 15:38:47.251319+00 f t SUBTOTAL 0.00 1 11287 \N +448688 2025-11-03 15:38:47.252841+00 2025-11-03 15:38:47.252849+00 f t COSTO_SERVICIO 0.00 2 11287 \N +448689 2025-11-03 15:38:47.254215+00 2025-11-03 15:38:47.254223+00 f t DESCUENTO 0.00 3 11287 \N +448690 2025-11-03 15:38:47.255458+00 2025-11-03 15:38:47.255465+00 f t TOTAL 0.00 4 11287 \N +448691 2025-11-03 15:38:47.256632+00 2025-11-03 15:38:47.256639+00 f t ADELANTO 0.00 5 11287 \N +431377 2025-10-29 16:01:20.260362+00 2025-10-29 16:01:20.26037+00 f t SUBTOTAL 46000.00 1 10863 \N +431378 2025-10-29 16:01:20.261878+00 2025-10-29 16:01:20.261885+00 f t COSTO_SERVICIO 0.00 2 10863 \N +431379 2025-10-29 16:01:20.263038+00 2025-10-29 16:01:20.263046+00 f t DESCUENTO 0.00 3 10863 \N +431380 2025-10-29 16:01:20.264255+00 2025-10-29 16:01:20.264264+00 f t TOTAL 46000.00 4 10863 \N +431381 2025-10-29 16:01:20.265428+00 2025-10-29 16:01:20.265434+00 f t ADELANTO 11000.00 5 10863 \N +439532 2025-10-31 11:01:31.107863+00 2025-10-31 11:01:31.107871+00 f t SUBTOTAL 0.00 1 11054 \N +439533 2025-10-31 11:01:31.109254+00 2025-10-31 11:01:31.10926+00 f t COSTO_SERVICIO 0.00 2 11054 \N +439534 2025-10-31 11:01:31.11028+00 2025-10-31 11:01:31.110286+00 f t DESCUENTO 0.00 3 11054 \N +439535 2025-10-31 11:01:31.111322+00 2025-10-31 11:01:31.111328+00 f t TOTAL 0.00 4 11054 \N +439536 2025-10-31 11:01:31.112273+00 2025-10-31 11:01:31.112278+00 f t ADELANTO 0.00 5 11054 \N +431427 2025-10-29 16:03:13.995596+00 2025-10-29 16:03:13.995609+00 f t SUBTOTAL 0.00 1 10862 \N +431428 2025-10-29 16:03:13.998057+00 2025-10-29 16:03:13.998068+00 f t COSTO_SERVICIO 0.00 2 10862 \N +431429 2025-10-29 16:03:13.99978+00 2025-10-29 16:03:13.999791+00 f t DESCUENTO 0.00 3 10862 \N +431430 2025-10-29 16:03:14.001742+00 2025-10-29 16:03:14.001753+00 f t TOTAL 0.00 4 10862 \N +431431 2025-10-29 16:03:14.003972+00 2025-10-29 16:03:14.003983+00 f t ADELANTO 0.00 5 10862 \N +431442 2025-10-29 16:06:43.153021+00 2025-10-29 16:06:43.153032+00 f t SUBTOTAL 13200.00 1 10864 \N +431443 2025-10-29 16:06:43.1549+00 2025-10-29 16:06:43.154907+00 f t COSTO_SERVICIO 0.00 2 10864 \N +431444 2025-10-29 16:06:43.15624+00 2025-10-29 16:06:43.156246+00 f t DESCUENTO 0.00 3 10864 \N +431445 2025-10-29 16:06:43.157284+00 2025-10-29 16:06:43.15729+00 f t TOTAL 13200.00 4 10864 \N +431446 2025-10-29 16:06:43.1583+00 2025-10-29 16:06:43.158308+00 f t ADELANTO 13200.00 5 10864 \N +440147 2025-10-31 14:15:11.470922+00 2025-10-31 14:15:11.470933+00 f t SUBTOTAL 127500.00 1 11071 \N +440148 2025-10-31 14:15:11.473269+00 2025-10-31 14:15:11.473278+00 f t COSTO_SERVICIO 0.00 2 11071 \N +440149 2025-10-31 14:15:11.47486+00 2025-10-31 14:15:11.47487+00 f t DESCUENTO 0.00 3 11071 \N +440150 2025-10-31 14:15:11.47643+00 2025-10-31 14:15:11.476439+00 f t TOTAL 127500.00 4 11071 \N +440151 2025-10-31 14:15:11.47791+00 2025-10-31 14:15:11.47792+00 f t ADELANTO 27500.00 5 11071 \N +440422 2025-10-31 14:56:46.65537+00 2025-10-31 14:56:46.655378+00 f t SUBTOTAL 78000.00 1 11078 \N +440423 2025-10-31 14:56:46.657143+00 2025-10-31 14:56:46.657149+00 f t COSTO_SERVICIO 0.00 2 11078 \N +440424 2025-10-31 14:56:46.658269+00 2025-10-31 14:56:46.658274+00 f t DESCUENTO 0.00 3 11078 \N +440425 2025-10-31 14:56:46.659411+00 2025-10-31 14:56:46.659418+00 f t TOTAL 78000.00 4 11078 \N +440426 2025-10-31 14:56:46.660574+00 2025-10-31 14:56:46.66058+00 f t ADELANTO 13000.00 5 11078 \N +431477 2025-10-29 16:15:56.873456+00 2025-10-29 16:15:56.873465+00 f t SUBTOTAL 88000.00 1 10865 \N +431478 2025-10-29 16:15:56.875096+00 2025-10-29 16:15:56.875102+00 f t COSTO_SERVICIO 0.00 2 10865 \N +431479 2025-10-29 16:15:56.876376+00 2025-10-29 16:15:56.876384+00 f t DESCUENTO 0.00 3 10865 \N +431480 2025-10-29 16:15:56.877439+00 2025-10-29 16:15:56.877445+00 f t TOTAL 88000.00 4 10865 \N +431481 2025-10-29 16:15:56.878571+00 2025-10-29 16:15:56.878577+00 f t ADELANTO 13000.00 5 10865 \N +441057 2025-10-31 17:16:52.586304+00 2025-10-31 17:16:52.586312+00 f t SUBTOTAL 60000.00 1 11096 \N +441058 2025-10-31 17:16:52.588432+00 2025-10-31 17:16:52.588439+00 f t COSTO_SERVICIO 0.00 2 11096 \N +441059 2025-10-31 17:16:52.589668+00 2025-10-31 17:16:52.589674+00 f t DESCUENTO 0.00 3 11096 \N +441060 2025-10-31 17:16:52.590876+00 2025-10-31 17:16:52.590882+00 f t TOTAL 60000.00 4 11096 \N +441061 2025-10-31 17:16:52.592074+00 2025-10-31 17:16:52.59208+00 f t ADELANTO 60000.00 5 11096 \N +431537 2025-10-29 16:17:25.540419+00 2025-10-29 16:17:25.540428+00 f t SUBTOTAL 0.00 1 10866 \N +431538 2025-10-29 16:17:25.542368+00 2025-10-29 16:17:25.542379+00 f t COSTO_SERVICIO 0.00 2 10866 \N +431539 2025-10-29 16:17:25.543886+00 2025-10-29 16:17:25.543893+00 f t DESCUENTO 0.00 3 10866 \N +431540 2025-10-29 16:17:25.545015+00 2025-10-29 16:17:25.54502+00 f t TOTAL 0.00 4 10866 \N +431541 2025-10-29 16:17:25.545969+00 2025-10-29 16:17:25.545974+00 f t ADELANTO 0.00 5 10866 \N +431542 2025-10-29 16:18:08.194782+00 2025-10-29 16:18:08.19479+00 f t SUBTOTAL 46000.00 1 10867 \N +431543 2025-10-29 16:18:08.198329+00 2025-10-29 16:18:08.198338+00 f t COSTO_SERVICIO 0.00 2 10867 \N +431544 2025-10-29 16:18:08.20009+00 2025-10-29 16:18:08.200099+00 f t DESCUENTO 0.00 3 10867 \N +431545 2025-10-29 16:18:08.201566+00 2025-10-29 16:18:08.201574+00 f t TOTAL 46000.00 4 10867 \N +431546 2025-10-29 16:18:08.203265+00 2025-10-29 16:18:08.203273+00 f t ADELANTO 11000.00 5 10867 \N +436427 2025-10-30 16:07:01.286606+00 2025-10-30 16:07:01.286614+00 f t SUBTOTAL 0.00 1 10984 \N +436428 2025-10-30 16:07:01.288481+00 2025-10-30 16:07:01.288488+00 f t COSTO_SERVICIO 0.00 2 10984 \N +436429 2025-10-30 16:07:01.289588+00 2025-10-30 16:07:01.289594+00 f t DESCUENTO 0.00 3 10984 \N +436430 2025-10-30 16:07:01.290515+00 2025-10-30 16:07:01.29052+00 f t TOTAL 0.00 4 10984 \N +436431 2025-10-30 16:07:01.291529+00 2025-10-30 16:07:01.291534+00 f t ADELANTO 0.00 5 10984 \N +431592 2025-10-29 16:50:20.463235+00 2025-10-29 16:50:20.463246+00 f t SUBTOTAL 0.00 1 10868 \N +431593 2025-10-29 16:50:20.465233+00 2025-10-29 16:50:20.46524+00 f t COSTO_SERVICIO 0.00 2 10868 \N +431594 2025-10-29 16:50:20.466436+00 2025-10-29 16:50:20.466443+00 f t DESCUENTO 0.00 3 10868 \N +431595 2025-10-29 16:50:20.467708+00 2025-10-29 16:50:20.467715+00 f t TOTAL 0.00 4 10868 \N +431596 2025-10-29 16:50:20.468683+00 2025-10-29 16:50:20.468688+00 f t ADELANTO 0.00 5 10868 \N +431632 2025-10-29 16:55:07.010709+00 2025-10-29 16:55:07.010722+00 f t SUBTOTAL 54000.00 1 10869 \N +431633 2025-10-29 16:55:07.012726+00 2025-10-29 16:55:07.012733+00 f t COSTO_SERVICIO 0.00 2 10869 \N +431634 2025-10-29 16:55:07.014307+00 2025-10-29 16:55:07.014317+00 f t DESCUENTO 0.00 3 10869 \N +431635 2025-10-29 16:55:07.016942+00 2025-10-29 16:55:07.016952+00 f t TOTAL 54000.00 4 10869 \N +431636 2025-10-29 16:55:07.019572+00 2025-10-29 16:55:07.019584+00 f t ADELANTO 13500.00 5 10869 \N +431657 2025-10-29 17:15:54.104147+00 2025-10-29 17:15:54.10416+00 f t SUBTOTAL 55000.00 1 10870 \N +431658 2025-10-29 17:15:54.106229+00 2025-10-29 17:15:54.106241+00 f t COSTO_SERVICIO 0.00 2 10870 \N +431659 2025-10-29 17:15:54.107957+00 2025-10-29 17:15:54.107968+00 f t DESCUENTO 0.00 3 10870 \N +431660 2025-10-29 17:15:54.109898+00 2025-10-29 17:15:54.109908+00 f t TOTAL 55000.00 4 10870 \N +431661 2025-10-29 17:15:54.111515+00 2025-10-29 17:15:54.111524+00 f t ADELANTO 11000.00 5 10870 \N +431672 2025-10-29 17:55:56.012201+00 2025-10-29 17:55:56.012209+00 f t SUBTOTAL 55000.00 1 10871 \N +431673 2025-10-29 17:55:56.013891+00 2025-10-29 17:55:56.013899+00 f t COSTO_SERVICIO 0.00 2 10871 \N +431674 2025-10-29 17:55:56.015303+00 2025-10-29 17:55:56.015309+00 f t DESCUENTO 0.00 3 10871 \N +431675 2025-10-29 17:55:56.016511+00 2025-10-29 17:55:56.01652+00 f t TOTAL 55000.00 4 10871 \N +431676 2025-10-29 17:55:56.017827+00 2025-10-29 17:55:56.017835+00 f t ADELANTO 11000.00 5 10871 \N +439542 2025-10-31 11:36:57.244415+00 2025-10-31 11:36:57.244424+00 f t SUBTOTAL 0.00 1 11055 \N +439543 2025-10-31 11:36:57.245663+00 2025-10-31 11:36:57.245669+00 f t COSTO_SERVICIO 0.00 2 11055 \N +439544 2025-10-31 11:36:57.246596+00 2025-10-31 11:36:57.246601+00 f t DESCUENTO 0.00 3 11055 \N +439545 2025-10-31 11:36:57.247785+00 2025-10-31 11:36:57.247792+00 f t TOTAL 0.00 4 11055 \N +439546 2025-10-31 11:36:57.248728+00 2025-10-31 11:36:57.248733+00 f t ADELANTO 0.00 5 11055 \N +431712 2025-10-29 17:59:17.127059+00 2025-10-29 17:59:17.127066+00 f t SUBTOTAL 55000.00 1 10872 \N +431713 2025-10-29 17:59:17.128591+00 2025-10-29 17:59:17.128597+00 f t COSTO_SERVICIO 0.00 2 10872 \N +431714 2025-10-29 17:59:17.129721+00 2025-10-29 17:59:17.129727+00 f t DESCUENTO 0.00 3 10872 \N +431715 2025-10-29 17:59:17.130898+00 2025-10-29 17:59:17.130903+00 f t TOTAL 55000.00 4 10872 \N +431716 2025-10-29 17:59:17.13191+00 2025-10-29 17:59:17.131915+00 f t ADELANTO 11000.00 5 10872 \N +439857 2025-10-31 12:22:41.496135+00 2025-10-31 12:22:41.496141+00 f t SUBTOTAL 46000.00 1 11062 \N +439858 2025-10-31 12:22:41.497613+00 2025-10-31 12:22:41.497622+00 f t COSTO_SERVICIO 0.00 2 11062 \N +439859 2025-10-31 12:22:41.498752+00 2025-10-31 12:22:41.498758+00 f t DESCUENTO 0.00 3 11062 \N +439860 2025-10-31 12:22:41.499684+00 2025-10-31 12:22:41.499689+00 f t TOTAL 46000.00 4 11062 \N +439861 2025-10-31 12:22:41.500562+00 2025-10-31 12:22:41.500567+00 f t ADELANTO 11000.00 5 11062 \N +431722 2025-10-29 18:00:16.066304+00 2025-10-29 18:00:16.066319+00 f t SUBTOTAL 0.00 1 10873 \N +431723 2025-10-29 18:00:16.069095+00 2025-10-29 18:00:16.069109+00 f t COSTO_SERVICIO 0.00 2 10873 \N +431724 2025-10-29 18:00:16.071532+00 2025-10-29 18:00:16.071545+00 f t DESCUENTO 0.00 3 10873 \N +431725 2025-10-29 18:00:16.073537+00 2025-10-29 18:00:16.073549+00 f t TOTAL 0.00 4 10873 \N +431726 2025-10-29 18:00:16.075665+00 2025-10-29 18:00:16.075675+00 f t ADELANTO 0.00 5 10873 \N +440067 2025-10-31 14:13:01.606133+00 2025-10-31 14:13:01.606146+00 f t SUBTOTAL 0.00 1 11070 \N +440068 2025-10-31 14:13:01.608491+00 2025-10-31 14:13:01.608504+00 f t COSTO_SERVICIO 0.00 2 11070 \N +440069 2025-10-31 14:13:01.611282+00 2025-10-31 14:13:01.611308+00 f t DESCUENTO 0.00 3 11070 \N +440070 2025-10-31 14:13:01.614223+00 2025-10-31 14:13:01.614235+00 f t TOTAL 0.00 4 11070 \N +440071 2025-10-31 14:13:01.616733+00 2025-10-31 14:13:01.616747+00 f t ADELANTO 0.00 5 11070 \N +440237 2025-10-31 14:18:01.289646+00 2025-10-31 14:18:01.289658+00 f t SUBTOTAL 88000.00 1 11072 \N +440238 2025-10-31 14:18:01.291277+00 2025-10-31 14:18:01.291283+00 f t COSTO_SERVICIO 0.00 2 11072 \N +440239 2025-10-31 14:18:01.292631+00 2025-10-31 14:18:01.292639+00 f t DESCUENTO 0.00 3 11072 \N +440240 2025-10-31 14:18:01.293793+00 2025-10-31 14:18:01.293799+00 f t TOTAL 88000.00 4 11072 \N +440241 2025-10-31 14:18:01.295053+00 2025-10-31 14:18:01.295059+00 f t ADELANTO 13000.00 5 11072 \N +431752 2025-10-29 18:16:09.524113+00 2025-10-29 18:16:09.524125+00 f t SUBTOTAL 70000.00 1 10874 \N +431753 2025-10-29 18:16:09.526336+00 2025-10-29 18:16:09.526346+00 f t COSTO_SERVICIO 0.00 2 10874 \N +431754 2025-10-29 18:16:09.527968+00 2025-10-29 18:16:09.527976+00 f t DESCUENTO 0.00 3 10874 \N +431755 2025-10-29 18:16:09.529433+00 2025-10-29 18:16:09.529442+00 f t TOTAL 70000.00 4 10874 \N +431756 2025-10-29 18:16:09.530779+00 2025-10-29 18:16:09.530787+00 f t ADELANTO 19000.00 5 10874 \N +440327 2025-10-31 14:44:09.090627+00 2025-10-31 14:44:09.090633+00 f t SUBTOTAL 69000.00 1 11074 \N +440328 2025-10-31 14:44:09.092313+00 2025-10-31 14:44:09.092318+00 f t COSTO_SERVICIO 0.00 2 11074 \N +440329 2025-10-31 14:44:09.093434+00 2025-10-31 14:44:09.09344+00 f t DESCUENTO 0.00 3 11074 \N +440330 2025-10-31 14:44:09.094744+00 2025-10-31 14:44:09.094749+00 f t TOTAL 69000.00 4 11074 \N +440331 2025-10-31 14:44:09.09564+00 2025-10-31 14:44:09.095645+00 f t ADELANTO 11000.00 5 11074 \N +431762 2025-10-29 18:22:46.652576+00 2025-10-29 18:22:46.65259+00 f t SUBTOTAL 0.00 1 10875 \N +431763 2025-10-29 18:22:46.654399+00 2025-10-29 18:22:46.654409+00 f t COSTO_SERVICIO 0.00 2 10875 \N +431764 2025-10-29 18:22:46.655622+00 2025-10-29 18:22:46.65563+00 f t DESCUENTO 0.00 3 10875 \N +431765 2025-10-29 18:22:46.656914+00 2025-10-29 18:22:46.656922+00 f t TOTAL 0.00 4 10875 \N +431766 2025-10-29 18:22:46.658288+00 2025-10-29 18:22:46.658297+00 f t ADELANTO 0.00 5 10875 \N +431807 2025-10-29 18:37:19.551951+00 2025-10-29 18:37:19.551963+00 f t SUBTOTAL 140000.00 1 10876 \N +431808 2025-10-29 18:37:19.553887+00 2025-10-29 18:37:19.553897+00 f t COSTO_SERVICIO 0.00 2 10876 \N +431809 2025-10-29 18:37:19.555474+00 2025-10-29 18:37:19.555484+00 f t DESCUENTO 9200.00 3 10876 \N +431810 2025-10-29 18:37:19.55696+00 2025-10-29 18:37:19.55697+00 f t TOTAL 130800.00 4 10876 \N +431811 2025-10-29 18:37:19.558506+00 2025-10-29 18:37:19.558515+00 f t ADELANTO 38000.00 5 10876 \N +431812 2025-10-29 18:37:27.508946+00 2025-10-29 18:37:27.508953+00 f t SUBTOTAL 46000.00 1 10877 \N +431813 2025-10-29 18:37:27.510545+00 2025-10-29 18:37:27.510552+00 f t COSTO_SERVICIO 0.00 2 10877 \N +431814 2025-10-29 18:37:27.511603+00 2025-10-29 18:37:27.511608+00 f t DESCUENTO 0.00 3 10877 \N +431815 2025-10-29 18:37:27.512483+00 2025-10-29 18:37:27.512488+00 f t TOTAL 46000.00 4 10877 \N +431816 2025-10-29 18:37:27.513889+00 2025-10-29 18:37:27.5139+00 f t ADELANTO 11000.00 5 10877 \N +436027 2025-10-30 15:24:08.967885+00 2025-10-30 15:24:08.967895+00 f t SUBTOTAL 0.00 1 10980 \N +436028 2025-10-30 15:24:08.969777+00 2025-10-30 15:24:08.969785+00 f t COSTO_SERVICIO 0.00 2 10980 \N +436029 2025-10-30 15:24:08.971038+00 2025-10-30 15:24:08.971045+00 f t DESCUENTO 0.00 3 10980 \N +436030 2025-10-30 15:24:08.972138+00 2025-10-30 15:24:08.972143+00 f t TOTAL 0.00 4 10980 \N +436031 2025-10-30 15:24:08.973173+00 2025-10-30 15:24:08.973178+00 f t ADELANTO 0.00 5 10980 \N +431852 2025-10-29 18:50:01.743038+00 2025-10-29 18:50:01.743053+00 f t SUBTOTAL 0.00 1 10878 \N +431853 2025-10-29 18:50:01.746865+00 2025-10-29 18:50:01.746879+00 f t COSTO_SERVICIO 0.00 2 10878 \N +431854 2025-10-29 18:50:01.750045+00 2025-10-29 18:50:01.750059+00 f t DESCUENTO 0.00 3 10878 \N +431855 2025-10-29 18:50:01.754607+00 2025-10-29 18:50:01.75462+00 f t TOTAL 0.00 4 10878 \N +431856 2025-10-29 18:50:01.757223+00 2025-10-29 18:50:01.757236+00 f t ADELANTO 0.00 5 10878 \N +457097 2025-11-05 18:23:16.99441+00 2025-11-05 18:23:16.994419+00 f t SUBTOTAL 153900.00 1 11479 \N +457098 2025-11-05 18:23:16.996556+00 2025-11-05 18:23:16.996564+00 f t COSTO_SERVICIO 0.00 2 11479 \N +457099 2025-11-05 18:23:16.997974+00 2025-11-05 18:23:16.997981+00 f t DESCUENTO 0.00 3 11479 \N +457100 2025-11-05 18:23:16.999281+00 2025-11-05 18:23:16.999287+00 f t TOTAL 153900.00 4 11479 \N +457101 2025-11-05 18:23:17.000767+00 2025-11-05 18:23:17.000796+00 f t ADELANTO 113400.00 5 11479 \N +446867 2025-11-02 13:01:14.987427+00 2025-11-02 13:01:14.987434+00 f t SUBTOTAL 70000.00 1 11241 \N +446868 2025-11-02 13:01:14.989122+00 2025-11-02 13:01:14.989128+00 f t COSTO_SERVICIO 0.00 2 11241 \N +446869 2025-11-02 13:01:14.99008+00 2025-11-02 13:01:14.990085+00 f t DESCUENTO 0.00 3 11241 \N +446870 2025-11-02 13:01:14.99099+00 2025-11-02 13:01:14.990995+00 f t TOTAL 70000.00 4 11241 \N +446871 2025-11-02 13:01:14.992011+00 2025-11-02 13:01:14.992016+00 f t ADELANTO 19000.00 5 11241 \N +437577 2025-10-30 20:24:49.067186+00 2025-10-30 20:24:49.067194+00 f t SUBTOTAL 0.00 1 11008 \N +437578 2025-10-30 20:24:49.068935+00 2025-10-30 20:24:49.068942+00 f t COSTO_SERVICIO 0.00 2 11008 \N +437579 2025-10-30 20:24:49.06995+00 2025-10-30 20:24:49.069956+00 f t DESCUENTO 0.00 3 11008 \N +437580 2025-10-30 20:24:49.070781+00 2025-10-30 20:24:49.070786+00 f t TOTAL 0.00 4 11008 \N +431902 2025-10-29 18:58:16.698447+00 2025-10-29 18:58:16.698455+00 f t SUBTOTAL 108000.00 1 10879 \N +431903 2025-10-29 18:58:16.700355+00 2025-10-29 18:58:16.700362+00 f t COSTO_SERVICIO 0.00 2 10879 \N +431904 2025-10-29 18:58:16.70182+00 2025-10-29 18:58:16.701826+00 f t DESCUENTO 9200.00 3 10879 \N +431905 2025-10-29 18:58:16.703017+00 2025-10-29 18:58:16.703024+00 f t TOTAL 98800.00 4 10879 \N +431906 2025-10-29 18:58:16.704129+00 2025-10-29 18:58:16.704135+00 f t ADELANTO 27000.00 5 10879 \N +437581 2025-10-30 20:24:49.072196+00 2025-10-30 20:24:49.072203+00 f t ADELANTO 0.00 5 11008 \N +447727 2025-11-03 01:35:39.729517+00 2025-11-03 01:35:39.729523+00 f t SUBTOTAL 54000.00 1 11262 \N +447728 2025-11-03 01:35:39.731337+00 2025-11-03 01:35:39.731343+00 f t COSTO_SERVICIO 0.00 2 11262 \N +447729 2025-11-03 01:35:39.732438+00 2025-11-03 01:35:39.732443+00 f t DESCUENTO 0.00 3 11262 \N +447730 2025-11-03 01:35:39.733302+00 2025-11-03 01:35:39.733307+00 f t TOTAL 54000.00 4 11262 \N +431922 2025-10-29 19:00:00.319099+00 2025-10-29 19:00:00.319109+00 f t SUBTOTAL 0.00 1 10880 \N +431923 2025-10-29 19:00:00.320653+00 2025-10-29 19:00:00.320661+00 f t COSTO_SERVICIO 0.00 2 10880 \N +431924 2025-10-29 19:00:00.321894+00 2025-10-29 19:00:00.321901+00 f t DESCUENTO 0.00 3 10880 \N +431925 2025-10-29 19:00:00.323166+00 2025-10-29 19:00:00.323175+00 f t TOTAL 0.00 4 10880 \N +431926 2025-10-29 19:00:00.324439+00 2025-10-29 19:00:00.324446+00 f t ADELANTO 0.00 5 10880 \N +447731 2025-11-03 01:35:39.734149+00 2025-11-03 01:35:39.734154+00 f t ADELANTO 13500.00 5 11262 \N +431932 2025-10-29 19:00:29.533518+00 2025-10-29 19:00:29.53353+00 f t SUBTOTAL 0.00 1 10881 \N +431933 2025-10-29 19:00:29.535276+00 2025-10-29 19:00:29.535287+00 f t COSTO_SERVICIO 0.00 2 10881 \N +431934 2025-10-29 19:00:29.536655+00 2025-10-29 19:00:29.536664+00 f t DESCUENTO 0.00 3 10881 \N +431935 2025-10-29 19:00:29.538111+00 2025-10-29 19:00:29.538118+00 f t TOTAL 0.00 4 10881 \N +431936 2025-10-29 19:00:29.539534+00 2025-10-29 19:00:29.539544+00 f t ADELANTO 0.00 5 10881 \N +448367 2025-11-03 14:06:34.282975+00 2025-11-03 14:06:34.282984+00 f t SUBTOTAL 0.00 1 11275 \N +448368 2025-11-03 14:06:34.284495+00 2025-11-03 14:06:34.284501+00 f t COSTO_SERVICIO 0.00 2 11275 \N +448369 2025-11-03 14:06:34.285633+00 2025-11-03 14:06:34.285639+00 f t DESCUENTO 0.00 3 11275 \N +448370 2025-11-03 14:06:34.286972+00 2025-11-03 14:06:34.28698+00 f t TOTAL 0.00 4 11275 \N +448371 2025-11-03 14:06:34.288298+00 2025-11-03 14:06:34.288306+00 f t ADELANTO 0.00 5 11275 \N +448542 2025-11-03 15:02:59.826647+00 2025-11-03 15:02:59.826658+00 f t SUBTOTAL 110000.00 1 11274 \N +448543 2025-11-03 15:02:59.82885+00 2025-11-03 15:02:59.82886+00 f t COSTO_SERVICIO 0.00 2 11274 \N +448544 2025-11-03 15:02:59.830373+00 2025-11-03 15:02:59.830382+00 f t DESCUENTO 11000.00 3 11274 \N +448545 2025-11-03 15:02:59.831878+00 2025-11-03 15:02:59.831886+00 f t TOTAL 99000.00 4 11274 \N +448546 2025-11-03 15:02:59.83325+00 2025-11-03 15:02:59.833259+00 f t ADELANTO 22000.00 5 11274 \N +431972 2025-10-29 19:09:32.469529+00 2025-10-29 19:09:32.469538+00 f t SUBTOTAL 46000.00 1 10882 \N +431973 2025-10-29 19:09:32.471154+00 2025-10-29 19:09:32.471161+00 f t COSTO_SERVICIO 0.00 2 10882 \N +431974 2025-10-29 19:09:32.472279+00 2025-10-29 19:09:32.472285+00 f t DESCUENTO 0.00 3 10882 \N +431975 2025-10-29 19:09:32.473355+00 2025-10-29 19:09:32.473362+00 f t TOTAL 46000.00 4 10882 \N +431976 2025-10-29 19:09:32.474352+00 2025-10-29 19:09:32.47436+00 f t ADELANTO 11000.00 5 10882 \N +449997 2025-11-03 18:32:47.530105+00 2025-11-03 18:32:47.530112+00 f t SUBTOTAL 30000.00 1 11313 \N +449998 2025-11-03 18:32:47.532249+00 2025-11-03 18:32:47.532255+00 f t COSTO_SERVICIO 0.00 2 11313 \N +449999 2025-11-03 18:32:47.533657+00 2025-11-03 18:32:47.533665+00 f t DESCUENTO 0.00 3 11313 \N +450000 2025-11-03 18:32:47.534795+00 2025-11-03 18:32:47.5348+00 f t TOTAL 30000.00 4 11313 \N +450001 2025-11-03 18:32:47.536216+00 2025-11-03 18:32:47.536221+00 f t ADELANTO 30000.00 5 11313 \N +440517 2025-10-31 15:19:46.830467+00 2025-10-31 15:19:46.830473+00 f t SUBTOTAL 30000.00 1 11081 \N +440518 2025-10-31 15:19:46.83234+00 2025-10-31 15:19:46.832347+00 f t COSTO_SERVICIO 0.00 2 11081 \N +440519 2025-10-31 15:19:46.833449+00 2025-10-31 15:19:46.833455+00 f t DESCUENTO 0.00 3 11081 \N +440520 2025-10-31 15:19:46.834462+00 2025-10-31 15:19:46.834467+00 f t TOTAL 30000.00 4 11081 \N +440521 2025-10-31 15:19:46.835374+00 2025-10-31 15:19:46.835379+00 f t ADELANTO 30000.00 5 11081 \N +440842 2025-10-31 17:05:08.265443+00 2025-10-31 17:05:08.265456+00 f t SUBTOTAL 0.00 1 11091 \N +440843 2025-10-31 17:05:08.267822+00 2025-10-31 17:05:08.267835+00 f t COSTO_SERVICIO 0.00 2 11091 \N +440844 2025-10-31 17:05:08.269389+00 2025-10-31 17:05:08.269399+00 f t DESCUENTO 0.00 3 11091 \N +440845 2025-10-31 17:05:08.270731+00 2025-10-31 17:05:08.270739+00 f t TOTAL 0.00 4 11091 \N +440846 2025-10-31 17:05:08.272303+00 2025-10-31 17:05:08.272312+00 f t ADELANTO 0.00 5 11091 \N +441067 2025-10-31 17:21:39.814408+00 2025-10-31 17:21:39.81442+00 f t SUBTOTAL 0.00 1 11097 \N +441068 2025-10-31 17:21:39.815989+00 2025-10-31 17:21:39.815995+00 f t COSTO_SERVICIO 0.00 2 11097 \N +441069 2025-10-31 17:21:39.817056+00 2025-10-31 17:21:39.817061+00 f t DESCUENTO 0.00 3 11097 \N +441070 2025-10-31 17:21:39.81816+00 2025-10-31 17:21:39.818166+00 f t TOTAL 0.00 4 11097 \N +441071 2025-10-31 17:21:39.819275+00 2025-10-31 17:21:39.819281+00 f t ADELANTO 0.00 5 11097 \N +536117 2025-11-23 19:48:45.071536+00 2025-11-23 19:48:45.071543+00 f t SUBTOTAL 55000.00 1 13317 \N +536118 2025-11-23 19:48:45.0733+00 2025-11-23 19:48:45.073306+00 f t COSTO_SERVICIO 0.00 2 13317 \N +436442 2025-10-30 16:14:36.0639+00 2025-10-30 16:14:36.063908+00 f t SUBTOTAL 13200.00 1 10985 \N +436443 2025-10-30 16:14:36.065741+00 2025-10-30 16:14:36.065748+00 f t COSTO_SERVICIO 0.00 2 10985 \N +436444 2025-10-30 16:14:36.066725+00 2025-10-30 16:14:36.06673+00 f t DESCUENTO 0.00 3 10985 \N +436445 2025-10-30 16:14:36.067611+00 2025-10-30 16:14:36.067618+00 f t TOTAL 13200.00 4 10985 \N +436446 2025-10-30 16:14:36.068508+00 2025-10-30 16:14:36.068514+00 f t ADELANTO 13200.00 5 10985 \N +437242 2025-10-30 19:53:01.814659+00 2025-10-30 19:53:01.814666+00 f t SUBTOTAL 54000.00 1 11001 \N +437243 2025-10-30 19:53:01.816359+00 2025-10-30 19:53:01.816366+00 f t COSTO_SERVICIO 0.00 2 11001 \N +437244 2025-10-30 19:53:01.817715+00 2025-10-30 19:53:01.817723+00 f t DESCUENTO 0.00 3 11001 \N +437245 2025-10-30 19:53:01.819086+00 2025-10-30 19:53:01.819095+00 f t TOTAL 54000.00 4 11001 \N +437246 2025-10-30 19:53:01.820396+00 2025-10-30 19:53:01.820402+00 f t ADELANTO 13500.00 5 11001 \N +432182 2025-10-29 19:20:38.808245+00 2025-10-29 19:20:38.808253+00 f t SUBTOTAL 70000.00 1 10884 \N +432183 2025-10-29 19:20:38.809804+00 2025-10-29 19:20:38.809809+00 f t COSTO_SERVICIO 0.00 2 10884 \N +432184 2025-10-29 19:20:38.811085+00 2025-10-29 19:20:38.81109+00 f t DESCUENTO 0.00 3 10884 \N +432185 2025-10-29 19:20:38.812173+00 2025-10-29 19:20:38.812178+00 f t TOTAL 70000.00 4 10884 \N +432186 2025-10-29 19:20:38.813259+00 2025-10-29 19:20:38.813265+00 f t ADELANTO 19000.00 5 10884 \N +432197 2025-10-29 19:20:56.986227+00 2025-10-29 19:20:56.986238+00 f t SUBTOTAL 78000.00 1 10883 \N +432198 2025-10-29 19:20:56.988239+00 2025-10-29 19:20:56.988249+00 f t COSTO_SERVICIO 0.00 2 10883 \N +432199 2025-10-29 19:20:56.989782+00 2025-10-29 19:20:56.989791+00 f t DESCUENTO 0.00 3 10883 \N +432200 2025-10-29 19:20:56.991209+00 2025-10-29 19:20:56.991217+00 f t TOTAL 78000.00 4 10883 \N +432201 2025-10-29 19:20:56.993461+00 2025-10-29 19:20:56.99347+00 f t ADELANTO 21500.00 5 10883 \N +432207 2025-10-29 19:21:59.232801+00 2025-10-29 19:21:59.232815+00 f t SUBTOTAL 0.00 1 10885 \N +432208 2025-10-29 19:21:59.234389+00 2025-10-29 19:21:59.2344+00 f t COSTO_SERVICIO 0.00 2 10885 \N +432209 2025-10-29 19:21:59.23598+00 2025-10-29 19:21:59.235989+00 f t DESCUENTO 0.00 3 10885 \N +432210 2025-10-29 19:21:59.237533+00 2025-10-29 19:21:59.237544+00 f t TOTAL 0.00 4 10885 \N +432211 2025-10-29 19:21:59.23878+00 2025-10-29 19:21:59.238789+00 f t ADELANTO 0.00 5 10885 \N +438617 2025-10-31 01:57:29.024521+00 2025-10-31 01:57:29.02453+00 f t SUBTOTAL 0.00 1 11033 \N +438618 2025-10-31 01:57:29.027889+00 2025-10-31 01:57:29.027898+00 f t COSTO_SERVICIO 0.00 2 11033 \N +438619 2025-10-31 01:57:29.029461+00 2025-10-31 01:57:29.029468+00 f t DESCUENTO 0.00 3 11033 \N +438620 2025-10-31 01:57:29.03065+00 2025-10-31 01:57:29.030656+00 f t TOTAL 0.00 4 11033 \N +438621 2025-10-31 01:57:29.031996+00 2025-10-31 01:57:29.032002+00 f t ADELANTO 0.00 5 11033 \N +432287 2025-10-29 19:28:20.366702+00 2025-10-29 19:28:20.366711+00 f t SUBTOTAL 0.00 1 10887 \N +432288 2025-10-29 19:28:20.368105+00 2025-10-29 19:28:20.368112+00 f t COSTO_SERVICIO 0.00 2 10887 \N +432289 2025-10-29 19:28:20.369167+00 2025-10-29 19:28:20.369172+00 f t DESCUENTO 0.00 3 10887 \N +432290 2025-10-29 19:28:20.370117+00 2025-10-29 19:28:20.370123+00 f t TOTAL 0.00 4 10887 \N +432291 2025-10-29 19:28:20.371172+00 2025-10-29 19:28:20.37118+00 f t ADELANTO 0.00 5 10887 \N +439872 2025-10-31 12:31:39.041636+00 2025-10-31 12:31:39.041642+00 f t SUBTOTAL 13200.00 1 11063 \N +439873 2025-10-31 12:31:39.043256+00 2025-10-31 12:31:39.043261+00 f t COSTO_SERVICIO 0.00 2 11063 \N +439874 2025-10-31 12:31:39.044497+00 2025-10-31 12:31:39.044504+00 f t DESCUENTO 0.00 3 11063 \N +439875 2025-10-31 12:31:39.045699+00 2025-10-31 12:31:39.045705+00 f t TOTAL 13200.00 4 11063 \N +439876 2025-10-31 12:31:39.046892+00 2025-10-31 12:31:39.046899+00 f t ADELANTO 13200.00 5 11063 \N +439972 2025-10-31 13:47:27.428093+00 2025-10-31 13:47:27.4281+00 f t SUBTOTAL 111000.00 1 11066 \N +439973 2025-10-31 13:47:27.429769+00 2025-10-31 13:47:27.429775+00 f t COSTO_SERVICIO 0.00 2 11066 \N +439974 2025-10-31 13:47:27.431024+00 2025-10-31 13:47:27.431032+00 f t DESCUENTO 0.00 3 11066 \N +439975 2025-10-31 13:47:27.432213+00 2025-10-31 13:47:27.432219+00 f t TOTAL 111000.00 4 11066 \N +439976 2025-10-31 13:47:27.433279+00 2025-10-31 13:47:27.433287+00 f t ADELANTO 28000.00 5 11066 \N +432312 2025-10-29 19:29:44.73814+00 2025-10-29 19:29:44.73815+00 f t SUBTOTAL 0.00 1 10888 \N +432313 2025-10-29 19:29:44.739658+00 2025-10-29 19:29:44.739665+00 f t COSTO_SERVICIO 0.00 2 10888 \N +432314 2025-10-29 19:29:44.741004+00 2025-10-29 19:29:44.741011+00 f t DESCUENTO 0.00 3 10888 \N +432315 2025-10-29 19:29:44.74229+00 2025-10-29 19:29:44.742296+00 f t TOTAL 0.00 4 10888 \N +432316 2025-10-29 19:29:44.743929+00 2025-10-29 19:29:44.743937+00 f t ADELANTO 0.00 5 10888 \N +432317 2025-10-29 19:29:55.766933+00 2025-10-29 19:29:55.766939+00 f t SUBTOTAL 140000.00 1 10886 \N +432318 2025-10-29 19:29:55.76846+00 2025-10-29 19:29:55.768466+00 f t COSTO_SERVICIO 0.00 2 10886 \N +432319 2025-10-29 19:29:55.769626+00 2025-10-29 19:29:55.769634+00 f t DESCUENTO 9200.00 3 10886 \N +432320 2025-10-29 19:29:55.770925+00 2025-10-29 19:29:55.770933+00 f t TOTAL 130800.00 4 10886 \N +432321 2025-10-29 19:29:55.772069+00 2025-10-29 19:29:55.772077+00 f t ADELANTO 38000.00 5 10886 \N +432327 2025-10-29 19:48:29.292974+00 2025-10-29 19:48:29.292986+00 f t SUBTOTAL 0.00 1 10889 \N +432328 2025-10-29 19:48:29.294853+00 2025-10-29 19:48:29.294865+00 f t COSTO_SERVICIO 0.00 2 10889 \N +432329 2025-10-29 19:48:29.297385+00 2025-10-29 19:48:29.297396+00 f t DESCUENTO 0.00 3 10889 \N +432330 2025-10-29 19:48:29.298791+00 2025-10-29 19:48:29.298801+00 f t TOTAL 0.00 4 10889 \N +432331 2025-10-29 19:48:29.30026+00 2025-10-29 19:48:29.300269+00 f t ADELANTO 0.00 5 10889 \N +440342 2025-10-31 14:52:34.185112+00 2025-10-31 14:52:34.185121+00 f t SUBTOTAL 78000.00 1 11075 \N +440343 2025-10-31 14:52:34.186971+00 2025-10-31 14:52:34.186977+00 f t COSTO_SERVICIO 0.00 2 11075 \N +440344 2025-10-31 14:52:34.188126+00 2025-10-31 14:52:34.188132+00 f t DESCUENTO 0.00 3 11075 \N +440345 2025-10-31 14:52:34.189316+00 2025-10-31 14:52:34.189322+00 f t TOTAL 78000.00 4 11075 \N +440346 2025-10-31 14:52:34.190362+00 2025-10-31 14:52:34.190367+00 f t ADELANTO 13000.00 5 11075 \N +440597 2025-10-31 15:27:22.185916+00 2025-10-31 15:27:22.185923+00 f t SUBTOTAL 87000.00 1 11082 \N +440598 2025-10-31 15:27:22.187369+00 2025-10-31 15:27:22.187375+00 f t COSTO_SERVICIO 0.00 2 11082 \N +440599 2025-10-31 15:27:22.188453+00 2025-10-31 15:27:22.188458+00 f t DESCUENTO 0.00 3 11082 \N +440600 2025-10-31 15:27:22.189315+00 2025-10-31 15:27:22.189319+00 f t TOTAL 87000.00 4 11082 \N +440601 2025-10-31 15:27:22.190166+00 2025-10-31 15:27:22.190171+00 f t ADELANTO 87000.00 5 11082 \N +440682 2025-10-31 16:02:27.246089+00 2025-10-31 16:02:27.246095+00 f t SUBTOTAL 55000.00 1 11085 \N +440683 2025-10-31 16:02:27.247653+00 2025-10-31 16:02:27.247658+00 f t COSTO_SERVICIO 0.00 2 11085 \N +440684 2025-10-31 16:02:27.248912+00 2025-10-31 16:02:27.248918+00 f t DESCUENTO 0.00 3 11085 \N +432362 2025-10-29 20:05:13.130407+00 2025-10-29 20:05:13.130417+00 f t SUBTOTAL 46000.00 1 10890 \N +432363 2025-10-29 20:05:13.132046+00 2025-10-29 20:05:13.132054+00 f t COSTO_SERVICIO 0.00 2 10890 \N +432364 2025-10-29 20:05:13.133209+00 2025-10-29 20:05:13.133217+00 f t DESCUENTO 0.00 3 10890 \N +432365 2025-10-29 20:05:13.134429+00 2025-10-29 20:05:13.134437+00 f t TOTAL 46000.00 4 10890 \N +432366 2025-10-29 20:05:13.135556+00 2025-10-29 20:05:13.135563+00 f t ADELANTO 11000.00 5 10890 \N +440685 2025-10-31 16:02:27.249986+00 2025-10-31 16:02:27.249991+00 f t TOTAL 55000.00 4 11085 \N +440686 2025-10-31 16:02:27.2513+00 2025-10-31 16:02:27.251304+00 f t ADELANTO 11000.00 5 11085 \N +435782 2025-10-30 14:31:41.82161+00 2025-10-30 14:31:41.821616+00 f t SUBTOTAL 108000.00 1 10974 \N +435783 2025-10-30 14:31:41.823298+00 2025-10-30 14:31:41.823304+00 f t COSTO_SERVICIO 0.00 2 10974 \N +435784 2025-10-30 14:31:41.824406+00 2025-10-30 14:31:41.824412+00 f t DESCUENTO 9200.00 3 10974 \N +435785 2025-10-30 14:31:41.825341+00 2025-10-30 14:31:41.825346+00 f t TOTAL 98800.00 4 10974 \N +435786 2025-10-30 14:31:41.826184+00 2025-10-30 14:31:41.826189+00 f t ADELANTO 27000.00 5 10974 \N +548635 2025-11-25 21:20:11.326463+00 2025-11-25 21:20:11.326472+00 f t TOTAL 13200.00 4 13603 \N +446062 2025-11-01 20:39:30.223975+00 2025-11-01 20:39:30.223983+00 f t SUBTOTAL 55000.00 1 11223 \N +446063 2025-11-01 20:39:30.225755+00 2025-11-01 20:39:30.225761+00 f t COSTO_SERVICIO 0.00 2 11223 \N +446064 2025-11-01 20:39:30.226844+00 2025-11-01 20:39:30.22685+00 f t DESCUENTO 0.00 3 11223 \N +446065 2025-11-01 20:39:30.227739+00 2025-11-01 20:39:30.227745+00 f t TOTAL 55000.00 4 11223 \N +446066 2025-11-01 20:39:30.228607+00 2025-11-01 20:39:30.228615+00 f t ADELANTO 11000.00 5 11223 \N +524197 2025-11-20 23:06:02.832483+00 2025-11-20 23:06:02.832497+00 f t SUBTOTAL 0.00 1 13042 \N +524198 2025-11-20 23:06:02.834743+00 2025-11-20 23:06:02.834755+00 f t COSTO_SERVICIO 0.00 2 13042 \N +524199 2025-11-20 23:06:02.836545+00 2025-11-20 23:06:02.836555+00 f t DESCUENTO 0.00 3 13042 \N +446877 2025-11-02 14:02:04.625256+00 2025-11-02 14:02:04.625266+00 f t SUBTOTAL 0.00 1 11242 \N +446878 2025-11-02 14:02:04.62666+00 2025-11-02 14:02:04.626665+00 f t COSTO_SERVICIO 0.00 2 11242 \N +446879 2025-11-02 14:02:04.627945+00 2025-11-02 14:02:04.627953+00 f t DESCUENTO 0.00 3 11242 \N +446880 2025-11-02 14:02:04.630898+00 2025-11-02 14:02:04.630905+00 f t TOTAL 0.00 4 11242 \N +446881 2025-11-02 14:02:04.632113+00 2025-11-02 14:02:04.632119+00 f t ADELANTO 0.00 5 11242 \N +432467 2025-10-29 20:19:32.973681+00 2025-10-29 20:19:32.97369+00 f t SUBTOTAL 0.00 1 10892 \N +432468 2025-10-29 20:19:32.975808+00 2025-10-29 20:19:32.975819+00 f t COSTO_SERVICIO 0.00 2 10892 \N +432469 2025-10-29 20:19:32.978445+00 2025-10-29 20:19:32.978456+00 f t DESCUENTO 0.00 3 10892 \N +432470 2025-10-29 20:19:32.979964+00 2025-10-29 20:19:32.979973+00 f t TOTAL 0.00 4 10892 \N +432471 2025-10-29 20:19:32.981272+00 2025-10-29 20:19:32.98128+00 f t ADELANTO 0.00 5 10892 \N +468151 2025-11-08 03:59:05.987954+00 2025-11-08 03:59:05.98796+00 f t ADELANTO 0.00 5 11725 \N +448697 2025-11-03 15:41:00.256315+00 2025-11-03 15:41:00.256327+00 f t SUBTOTAL 55000.00 1 11276 \N +448698 2025-11-03 15:41:00.258429+00 2025-11-03 15:41:00.25844+00 f t COSTO_SERVICIO 0.00 2 11276 \N +448699 2025-11-03 15:41:00.25996+00 2025-11-03 15:41:00.25997+00 f t DESCUENTO 0.00 3 11276 \N +448700 2025-11-03 15:41:00.261412+00 2025-11-03 15:41:00.26142+00 f t TOTAL 55000.00 4 11276 \N +448701 2025-11-03 15:41:00.262713+00 2025-11-03 15:41:00.262722+00 f t ADELANTO 11000.00 5 11276 \N +449367 2025-11-03 16:55:58.671062+00 2025-11-03 16:55:58.67107+00 f t SUBTOTAL 70000.00 1 11299 \N +449368 2025-11-03 16:55:58.672722+00 2025-11-03 16:55:58.672863+00 f t COSTO_SERVICIO 0.00 2 11299 \N +449369 2025-11-03 16:55:58.674099+00 2025-11-03 16:55:58.674104+00 f t DESCUENTO 0.00 3 11299 \N +449370 2025-11-03 16:55:58.675265+00 2025-11-03 16:55:58.67527+00 f t TOTAL 70000.00 4 11299 \N +449371 2025-11-03 16:55:58.676408+00 2025-11-03 16:55:58.676413+00 f t ADELANTO 19000.00 5 11299 \N +439447 2025-10-31 09:45:30.273111+00 2025-10-31 09:45:30.273119+00 f t SUBTOTAL 79000.00 1 11051 \N +439448 2025-10-31 09:45:30.274881+00 2025-10-31 09:45:30.274888+00 f t COSTO_SERVICIO 0.00 2 11051 \N +439449 2025-10-31 09:45:30.276015+00 2025-10-31 09:45:30.27602+00 f t DESCUENTO 0.00 3 11051 \N +439450 2025-10-31 09:45:30.276975+00 2025-10-31 09:45:30.27698+00 f t TOTAL 79000.00 4 11051 \N +439451 2025-10-31 09:45:30.277965+00 2025-10-31 09:45:30.27797+00 f t ADELANTO 17500.00 5 11051 \N +439562 2025-10-31 11:38:21.714654+00 2025-10-31 11:38:21.714662+00 f t SUBTOTAL 0.00 1 11056 \N +439563 2025-10-31 11:38:21.716664+00 2025-10-31 11:38:21.716672+00 f t COSTO_SERVICIO 0.00 2 11056 \N +439564 2025-10-31 11:38:21.718+00 2025-10-31 11:38:21.718006+00 f t DESCUENTO 0.00 3 11056 \N +439565 2025-10-31 11:38:21.719186+00 2025-10-31 11:38:21.719193+00 f t TOTAL 0.00 4 11056 \N +439566 2025-10-31 11:38:21.72023+00 2025-10-31 11:38:21.720235+00 f t ADELANTO 0.00 5 11056 \N +432572 2025-10-29 20:21:35.661261+00 2025-10-29 20:21:35.66127+00 f t SUBTOTAL 0.00 1 10891 \N +432573 2025-10-29 20:21:35.662723+00 2025-10-29 20:21:35.66273+00 f t COSTO_SERVICIO 0.00 2 10891 \N +432574 2025-10-29 20:21:35.664019+00 2025-10-29 20:21:35.664027+00 f t DESCUENTO 0.00 3 10891 \N +432575 2025-10-29 20:21:35.665138+00 2025-10-29 20:21:35.665143+00 f t TOTAL 0.00 4 10891 \N +432576 2025-10-29 20:21:35.66631+00 2025-10-29 20:21:35.666317+00 f t ADELANTO 0.00 5 10891 \N +450147 2025-11-03 20:02:08.02697+00 2025-11-03 20:02:08.026979+00 f t SUBTOTAL 13200.00 1 11321 \N +450148 2025-11-03 20:02:08.032283+00 2025-11-03 20:02:08.032293+00 f t COSTO_SERVICIO 0.00 2 11321 \N +450149 2025-11-03 20:02:08.034266+00 2025-11-03 20:02:08.034275+00 f t DESCUENTO 0.00 3 11321 \N +450150 2025-11-03 20:02:08.035772+00 2025-11-03 20:02:08.03578+00 f t TOTAL 13200.00 4 11321 \N +450151 2025-11-03 20:02:08.039807+00 2025-11-03 20:02:08.039816+00 f t ADELANTO 13200.00 5 11321 \N +432657 2025-10-29 20:24:19.254035+00 2025-10-29 20:24:19.254045+00 f t SUBTOTAL 0.00 1 10893 \N +432658 2025-10-29 20:24:19.256267+00 2025-10-29 20:24:19.256277+00 f t COSTO_SERVICIO 0.00 2 10893 \N +432659 2025-10-29 20:24:19.257567+00 2025-10-29 20:24:19.257572+00 f t DESCUENTO 0.00 3 10893 \N +432660 2025-10-29 20:24:19.258722+00 2025-10-29 20:24:19.258727+00 f t TOTAL 0.00 4 10893 \N +432661 2025-10-29 20:24:19.259942+00 2025-10-29 20:24:19.259951+00 f t ADELANTO 0.00 5 10893 \N +451312 2025-11-04 01:37:11.729898+00 2025-11-04 01:37:11.729906+00 f t SUBTOTAL 55000.00 1 11344 \N +451313 2025-11-04 01:37:11.731519+00 2025-11-04 01:37:11.731525+00 f t COSTO_SERVICIO 0.00 2 11344 \N +451314 2025-11-04 01:37:11.732462+00 2025-11-04 01:37:11.732468+00 f t DESCUENTO 0.00 3 11344 \N +451315 2025-11-04 01:37:11.733454+00 2025-11-04 01:37:11.733459+00 f t TOTAL 55000.00 4 11344 \N +451316 2025-11-04 01:37:11.734441+00 2025-11-04 01:37:11.734449+00 f t ADELANTO 11000.00 5 11344 \N +451392 2025-11-04 02:06:03.544208+00 2025-11-04 02:06:03.544218+00 f t SUBTOTAL 0.00 1 11345 \N +451393 2025-11-04 02:06:03.545787+00 2025-11-04 02:06:03.545793+00 f t COSTO_SERVICIO 0.00 2 11345 \N +451394 2025-11-04 02:06:03.546998+00 2025-11-04 02:06:03.547005+00 f t DESCUENTO 0.00 3 11345 \N +451395 2025-11-04 02:06:03.548174+00 2025-11-04 02:06:03.548179+00 f t TOTAL 0.00 4 11345 \N +451396 2025-11-04 02:06:03.54936+00 2025-11-04 02:06:03.549366+00 f t ADELANTO 0.00 5 11345 \N +432692 2025-10-29 20:26:23.60669+00 2025-10-29 20:26:23.606698+00 f t SUBTOTAL 85200.00 1 10840 \N +432693 2025-10-29 20:26:23.608209+00 2025-10-29 20:26:23.608216+00 f t COSTO_SERVICIO 0.00 2 10840 \N +432694 2025-10-29 20:26:23.609429+00 2025-10-29 20:26:23.609436+00 f t DESCUENTO 0.00 3 10840 \N +432695 2025-10-29 20:26:23.610479+00 2025-10-29 20:26:23.610485+00 f t TOTAL 85200.00 4 10840 \N +432696 2025-10-29 20:26:23.611417+00 2025-10-29 20:26:23.611423+00 f t ADELANTO 44700.00 5 10840 \N +432702 2025-10-29 20:26:30.668333+00 2025-10-29 20:26:30.668343+00 f t SUBTOTAL 0.00 1 10894 \N +432703 2025-10-29 20:26:30.670697+00 2025-10-29 20:26:30.670704+00 f t COSTO_SERVICIO 0.00 2 10894 \N +432704 2025-10-29 20:26:30.671928+00 2025-10-29 20:26:30.671934+00 f t DESCUENTO 0.00 3 10894 \N +432705 2025-10-29 20:26:30.673001+00 2025-10-29 20:26:30.673007+00 f t TOTAL 0.00 4 10894 \N +432706 2025-10-29 20:26:30.6741+00 2025-10-29 20:26:30.674105+00 f t ADELANTO 0.00 5 10894 \N +478262 2025-11-10 20:27:11.265196+00 2025-11-10 20:27:11.265208+00 f t SUBTOTAL 0.00 1 11956 \N +478263 2025-11-10 20:27:11.266831+00 2025-11-10 20:27:11.26684+00 f t COSTO_SERVICIO 0.00 2 11956 \N +446502 2025-11-01 23:15:57.850424+00 2025-11-01 23:15:57.850433+00 f t SUBTOTAL 46000.00 1 11233 \N +432727 2025-10-29 20:27:46.609612+00 2025-10-29 20:27:46.609621+00 f t SUBTOTAL 13200.00 1 10895 \N +432728 2025-10-29 20:27:46.611435+00 2025-10-29 20:27:46.611442+00 f t COSTO_SERVICIO 0.00 2 10895 \N +432729 2025-10-29 20:27:46.612591+00 2025-10-29 20:27:46.612597+00 f t DESCUENTO 0.00 3 10895 \N +432730 2025-10-29 20:27:46.613576+00 2025-10-29 20:27:46.613589+00 f t TOTAL 13200.00 4 10895 \N +432731 2025-10-29 20:27:46.614564+00 2025-10-29 20:27:46.61457+00 f t ADELANTO 13200.00 5 10895 \N +446503 2025-11-01 23:15:57.852177+00 2025-11-01 23:15:57.852183+00 f t COSTO_SERVICIO 0.00 2 11233 \N +446504 2025-11-01 23:15:57.853201+00 2025-11-01 23:15:57.853206+00 f t DESCUENTO 0.00 3 11233 \N +446505 2025-11-01 23:15:57.854081+00 2025-11-01 23:15:57.854086+00 f t TOTAL 46000.00 4 11233 \N +446506 2025-11-01 23:15:57.854986+00 2025-11-01 23:15:57.854991+00 f t ADELANTO 11000.00 5 11233 \N +478264 2025-11-10 20:27:11.267995+00 2025-11-10 20:27:11.268001+00 f t DESCUENTO 0.00 3 11956 \N +478265 2025-11-10 20:27:11.268964+00 2025-11-10 20:27:11.268969+00 f t TOTAL 0.00 4 11956 \N +436862 2025-10-30 17:28:56.973623+00 2025-10-30 17:28:56.973631+00 f t SUBTOTAL 55000.00 1 10992 \N +436863 2025-10-30 17:28:56.975432+00 2025-10-30 17:28:56.975439+00 f t COSTO_SERVICIO 0.00 2 10992 \N +436864 2025-10-30 17:28:56.976746+00 2025-10-30 17:28:56.976752+00 f t DESCUENTO 0.00 3 10992 \N +436865 2025-10-30 17:28:56.978006+00 2025-10-30 17:28:56.978012+00 f t TOTAL 55000.00 4 10992 \N +436866 2025-10-30 17:28:56.979104+00 2025-10-30 17:28:56.979109+00 f t ADELANTO 11000.00 5 10992 \N +432757 2025-10-29 20:35:07.222971+00 2025-10-29 20:35:07.222979+00 f t SUBTOTAL 55000.00 1 10896 \N +432758 2025-10-29 20:35:07.224936+00 2025-10-29 20:35:07.224944+00 f t COSTO_SERVICIO 0.00 2 10896 \N +432759 2025-10-29 20:35:07.226662+00 2025-10-29 20:35:07.226669+00 f t DESCUENTO 0.00 3 10896 \N +432760 2025-10-29 20:35:07.228771+00 2025-10-29 20:35:07.228778+00 f t TOTAL 55000.00 4 10896 \N +432761 2025-10-29 20:35:07.231054+00 2025-10-29 20:35:07.231063+00 f t ADELANTO 11000.00 5 10896 \N +437432 2025-10-30 20:09:25.040724+00 2025-10-30 20:09:25.040735+00 f t SUBTOTAL 0.00 1 11006 \N +432767 2025-10-29 20:56:27.285023+00 2025-10-29 20:56:27.285032+00 f t SUBTOTAL 0.00 1 10897 \N +432768 2025-10-29 20:56:27.286872+00 2025-10-29 20:56:27.28688+00 f t COSTO_SERVICIO 0.00 2 10897 \N +432769 2025-10-29 20:56:27.287887+00 2025-10-29 20:56:27.287893+00 f t DESCUENTO 0.00 3 10897 \N +432770 2025-10-29 20:56:27.288755+00 2025-10-29 20:56:27.288761+00 f t TOTAL 0.00 4 10897 \N +432771 2025-10-29 20:56:27.289588+00 2025-10-29 20:56:27.289594+00 f t ADELANTO 0.00 5 10897 \N +437433 2025-10-30 20:09:25.04292+00 2025-10-30 20:09:25.042927+00 f t COSTO_SERVICIO 0.00 2 11006 \N +437434 2025-10-30 20:09:25.044148+00 2025-10-30 20:09:25.044154+00 f t DESCUENTO 0.00 3 11006 \N +437435 2025-10-30 20:09:25.045231+00 2025-10-30 20:09:25.045237+00 f t TOTAL 0.00 4 11006 \N +437436 2025-10-30 20:09:25.046327+00 2025-10-30 20:09:25.046333+00 f t ADELANTO 0.00 5 11006 \N +438037 2025-10-30 22:27:50.427164+00 2025-10-30 22:27:50.42717+00 f t SUBTOTAL 46000.00 1 11016 \N +438038 2025-10-30 22:27:50.428763+00 2025-10-30 22:27:50.428768+00 f t COSTO_SERVICIO 0.00 2 11016 \N +438039 2025-10-30 22:27:50.429688+00 2025-10-30 22:27:50.429693+00 f t DESCUENTO 0.00 3 11016 \N +438040 2025-10-30 22:27:50.430493+00 2025-10-30 22:27:50.430498+00 f t TOTAL 46000.00 4 11016 \N +438041 2025-10-30 22:27:50.431313+00 2025-10-30 22:27:50.431318+00 f t ADELANTO 11000.00 5 11016 \N +438212 2025-10-30 23:49:05.032221+00 2025-10-30 23:49:05.032232+00 f t SUBTOTAL 134000.00 1 11025 \N +438213 2025-10-30 23:49:05.034331+00 2025-10-30 23:49:05.034341+00 f t COSTO_SERVICIO 0.00 2 11025 \N +438214 2025-10-30 23:49:05.035876+00 2025-10-30 23:49:05.035883+00 f t DESCUENTO 0.00 3 11025 \N +438215 2025-10-30 23:49:05.037243+00 2025-10-30 23:49:05.037251+00 f t TOTAL 134000.00 4 11025 \N +438216 2025-10-30 23:49:05.038486+00 2025-10-30 23:49:05.038492+00 f t ADELANTO 24000.00 5 11025 \N +432807 2025-10-29 21:19:15.580064+00 2025-10-29 21:19:15.580073+00 f t SUBTOTAL 55000.00 1 10898 \N +432808 2025-10-29 21:19:15.581624+00 2025-10-29 21:19:15.581631+00 f t COSTO_SERVICIO 0.00 2 10898 \N +432809 2025-10-29 21:19:15.582756+00 2025-10-29 21:19:15.582761+00 f t DESCUENTO 0.00 3 10898 \N +432810 2025-10-29 21:19:15.583871+00 2025-10-29 21:19:15.583877+00 f t TOTAL 55000.00 4 10898 \N +432811 2025-10-29 21:19:15.584883+00 2025-10-29 21:19:15.584888+00 f t ADELANTO 11000.00 5 10898 \N +439007 2025-10-31 02:43:17.153691+00 2025-10-31 02:43:17.153698+00 f t SUBTOTAL 70000.00 1 11043 \N +439008 2025-10-31 02:43:17.155419+00 2025-10-31 02:43:17.155425+00 f t COSTO_SERVICIO 0.00 2 11043 \N +439009 2025-10-31 02:43:17.156745+00 2025-10-31 02:43:17.156751+00 f t DESCUENTO 0.00 3 11043 \N +439010 2025-10-31 02:43:17.157882+00 2025-10-31 02:43:17.157888+00 f t TOTAL 70000.00 4 11043 \N +439011 2025-10-31 02:43:17.158889+00 2025-10-31 02:43:17.158894+00 f t ADELANTO 19000.00 5 11043 \N +439227 2025-10-31 02:53:20.229913+00 2025-10-31 02:53:20.229919+00 f t SUBTOTAL 193500.00 1 11045 \N +439228 2025-10-31 02:53:20.231397+00 2025-10-31 02:53:20.231402+00 f t COSTO_SERVICIO 0.00 2 11045 \N +439229 2025-10-31 02:53:20.232425+00 2025-10-31 02:53:20.232432+00 f t DESCUENTO 0.00 3 11045 \N +439230 2025-10-31 02:53:20.233404+00 2025-10-31 02:53:20.233409+00 f t TOTAL 193500.00 4 11045 \N +439231 2025-10-31 02:53:20.234354+00 2025-10-31 02:53:20.234359+00 f t ADELANTO 31000.00 5 11045 \N +439887 2025-10-31 13:07:09.776786+00 2025-10-31 13:07:09.776794+00 f t SUBTOTAL 78000.00 1 11064 \N +439888 2025-10-31 13:07:09.778446+00 2025-10-31 13:07:09.778452+00 f t COSTO_SERVICIO 0.00 2 11064 \N +439889 2025-10-31 13:07:09.77969+00 2025-10-31 13:07:09.779695+00 f t DESCUENTO 0.00 3 11064 \N +439890 2025-10-31 13:07:09.780573+00 2025-10-31 13:07:09.780578+00 f t TOTAL 78000.00 4 11064 \N +439891 2025-10-31 13:07:09.781455+00 2025-10-31 13:07:09.78146+00 f t ADELANTO 13000.00 5 11064 \N +432892 2025-10-29 21:34:55.4803+00 2025-10-29 21:34:55.480311+00 f t SUBTOTAL 0.00 1 10899 \N +432893 2025-10-29 21:34:55.482606+00 2025-10-29 21:34:55.482616+00 f t COSTO_SERVICIO 0.00 2 10899 \N +432894 2025-10-29 21:34:55.483927+00 2025-10-29 21:34:55.483935+00 f t DESCUENTO 0.00 3 10899 \N +432895 2025-10-29 21:34:55.485117+00 2025-10-29 21:34:55.485125+00 f t TOTAL 0.00 4 10899 \N +432896 2025-10-29 21:34:55.486372+00 2025-10-29 21:34:55.486378+00 f t ADELANTO 0.00 5 10899 \N +440697 2025-10-31 16:23:12.256113+00 2025-10-31 16:23:12.256119+00 f t SUBTOTAL 70000.00 1 11086 \N +440698 2025-10-31 16:23:12.257991+00 2025-10-31 16:23:12.257997+00 f t COSTO_SERVICIO 0.00 2 11086 \N +440699 2025-10-31 16:23:12.259041+00 2025-10-31 16:23:12.25905+00 f t DESCUENTO 0.00 3 11086 \N +440700 2025-10-31 16:23:12.260097+00 2025-10-31 16:23:12.260102+00 f t TOTAL 70000.00 4 11086 \N +440701 2025-10-31 16:23:12.261093+00 2025-10-31 16:23:12.261098+00 f t ADELANTO 19000.00 5 11086 \N +432957 2025-10-29 21:36:39.930764+00 2025-10-29 21:36:39.930771+00 f t SUBTOTAL 46000.00 1 10900 \N +432958 2025-10-29 21:36:39.932246+00 2025-10-29 21:36:39.932252+00 f t COSTO_SERVICIO 0.00 2 10900 \N +432959 2025-10-29 21:36:39.933348+00 2025-10-29 21:36:39.933354+00 f t DESCUENTO 0.00 3 10900 \N +432960 2025-10-29 21:36:39.934272+00 2025-10-29 21:36:39.934278+00 f t TOTAL 46000.00 4 10900 \N +432961 2025-10-29 21:36:39.935214+00 2025-10-29 21:36:39.935219+00 f t ADELANTO 11000.00 5 10900 \N +466642 2025-11-07 22:27:51.562683+00 2025-11-07 22:27:51.562694+00 f t SUBTOTAL 46000.00 1 11701 \N +466643 2025-11-07 22:27:51.565063+00 2025-11-07 22:27:51.565073+00 f t COSTO_SERVICIO 0.00 2 11701 \N +466644 2025-11-07 22:27:51.566697+00 2025-11-07 22:27:51.566705+00 f t DESCUENTO 0.00 3 11701 \N +466645 2025-11-07 22:27:51.569112+00 2025-11-07 22:27:51.56912+00 f t TOTAL 46000.00 4 11701 \N +466646 2025-11-07 22:27:51.570279+00 2025-11-07 22:27:51.570285+00 f t ADELANTO 11000.00 5 11701 \N +511632 2025-11-18 21:33:23.969303+00 2025-11-18 21:33:23.969314+00 f t SUBTOTAL 46000.00 1 12737 \N +511633 2025-11-18 21:33:23.971432+00 2025-11-18 21:33:23.971443+00 f t COSTO_SERVICIO 0.00 2 12737 \N +433012 2025-10-29 21:42:45.568332+00 2025-10-29 21:42:45.568342+00 f t SUBTOTAL 20500.00 1 10901 \N +433013 2025-10-29 21:42:45.570195+00 2025-10-29 21:42:45.570205+00 f t COSTO_SERVICIO 0.00 2 10901 \N +433014 2025-10-29 21:42:45.571818+00 2025-10-29 21:42:45.571826+00 f t DESCUENTO 0.00 3 10901 \N +433015 2025-10-29 21:42:45.573144+00 2025-10-29 21:42:45.573152+00 f t TOTAL 20500.00 4 10901 \N +433016 2025-10-29 21:42:45.574483+00 2025-10-29 21:42:45.574491+00 f t ADELANTO 20500.00 5 10901 \N +456647 2025-11-05 14:42:58.904537+00 2025-11-05 14:42:58.904546+00 f t SUBTOTAL 0.00 1 11467 \N +456649 2025-11-05 14:42:58.906813+00 2025-11-05 14:42:58.90682+00 f t COSTO_SERVICIO 0.00 2 11467 \N +456651 2025-11-05 14:42:58.908285+00 2025-11-05 14:42:58.908293+00 f t DESCUENTO 0.00 3 11467 \N +456653 2025-11-05 14:42:58.909869+00 2025-11-05 14:42:58.909875+00 f t TOTAL 0.00 4 11467 \N +456655 2025-11-05 14:42:58.91092+00 2025-11-05 14:42:58.910926+00 f t ADELANTO 0.00 5 11467 \N +433022 2025-10-29 22:00:27.919095+00 2025-10-29 22:00:27.919105+00 f t SUBTOTAL 0.00 1 10902 \N +433023 2025-10-29 22:00:27.920548+00 2025-10-29 22:00:27.920555+00 f t COSTO_SERVICIO 0.00 2 10902 \N +433024 2025-10-29 22:00:27.921577+00 2025-10-29 22:00:27.921583+00 f t DESCUENTO 0.00 3 10902 \N +433025 2025-10-29 22:00:27.923845+00 2025-10-29 22:00:27.92385+00 f t TOTAL 0.00 4 10902 \N +433026 2025-10-29 22:00:27.925081+00 2025-10-29 22:00:27.925087+00 f t ADELANTO 0.00 5 10902 \N +446507 2025-11-01 23:16:03.593509+00 2025-11-01 23:16:03.593517+00 f t SUBTOTAL 171750.00 1 11232 \N +446508 2025-11-01 23:16:03.595298+00 2025-11-01 23:16:03.595305+00 f t COSTO_SERVICIO 0.00 2 11232 \N +446509 2025-11-01 23:16:03.596656+00 2025-11-01 23:16:03.596662+00 f t DESCUENTO 0.00 3 11232 \N +446510 2025-11-01 23:16:03.597819+00 2025-11-01 23:16:03.597825+00 f t TOTAL 171750.00 4 11232 \N +446511 2025-11-01 23:16:03.598913+00 2025-11-01 23:16:03.598919+00 f t ADELANTO 40250.00 5 11232 \N +436872 2025-10-30 17:35:58.686281+00 2025-10-30 17:35:58.68629+00 f t SUBTOTAL 0.00 1 10993 \N +436873 2025-10-30 17:35:58.687589+00 2025-10-30 17:35:58.687595+00 f t COSTO_SERVICIO 0.00 2 10993 \N +436874 2025-10-30 17:35:58.688625+00 2025-10-30 17:35:58.688631+00 f t DESCUENTO 0.00 3 10993 \N +436875 2025-10-30 17:35:58.689501+00 2025-10-30 17:35:58.689506+00 f t TOTAL 0.00 4 10993 \N +436876 2025-10-30 17:35:58.690273+00 2025-10-30 17:35:58.690278+00 f t ADELANTO 0.00 5 10993 \N +433057 2025-10-29 22:06:36.52837+00 2025-10-29 22:06:36.528381+00 f t SUBTOTAL 80000.00 1 10903 \N +433058 2025-10-29 22:06:36.530513+00 2025-10-29 22:06:36.530524+00 f t COSTO_SERVICIO 0.00 2 10903 \N +433059 2025-10-29 22:06:36.532017+00 2025-10-29 22:06:36.532027+00 f t DESCUENTO 0.00 3 10903 \N +433060 2025-10-29 22:06:36.533722+00 2025-10-29 22:06:36.533731+00 f t TOTAL 80000.00 4 10903 \N +433061 2025-10-29 22:06:36.535394+00 2025-10-29 22:06:36.535402+00 f t ADELANTO 12000.00 5 10903 \N +433102 2025-10-29 22:16:53.830923+00 2025-10-29 22:16:53.830934+00 f t SUBTOTAL 46000.00 1 10904 \N +433103 2025-10-29 22:16:53.832973+00 2025-10-29 22:16:53.832983+00 f t COSTO_SERVICIO 0.00 2 10904 \N +433104 2025-10-29 22:16:53.834487+00 2025-10-29 22:16:53.834497+00 f t DESCUENTO 0.00 3 10904 \N +433105 2025-10-29 22:16:53.835916+00 2025-10-29 22:16:53.835925+00 f t TOTAL 46000.00 4 10904 \N +433106 2025-10-29 22:16:53.837272+00 2025-10-29 22:16:53.83728+00 f t ADELANTO 11000.00 5 10904 \N +438222 2025-10-30 23:49:16.709775+00 2025-10-30 23:49:16.709783+00 f t SUBTOTAL 0.00 1 11026 \N +438223 2025-10-30 23:49:16.710999+00 2025-10-30 23:49:16.711005+00 f t COSTO_SERVICIO 0.00 2 11026 \N +438224 2025-10-30 23:49:16.712055+00 2025-10-30 23:49:16.71206+00 f t DESCUENTO 0.00 3 11026 \N +438225 2025-10-30 23:49:16.712918+00 2025-10-30 23:49:16.712923+00 f t TOTAL 0.00 4 11026 \N +438226 2025-10-30 23:49:16.715159+00 2025-10-30 23:49:16.715166+00 f t ADELANTO 0.00 5 11026 \N +433127 2025-10-29 22:22:55.011858+00 2025-10-29 22:22:55.01187+00 f t SUBTOTAL 0.00 1 10905 \N +433128 2025-10-29 22:22:55.013868+00 2025-10-29 22:22:55.013878+00 f t COSTO_SERVICIO 0.00 2 10905 \N +433129 2025-10-29 22:22:55.016231+00 2025-10-29 22:22:55.016238+00 f t DESCUENTO 0.00 3 10905 \N +433130 2025-10-29 22:22:55.01754+00 2025-10-29 22:22:55.017546+00 f t TOTAL 0.00 4 10905 \N +433131 2025-10-29 22:22:55.018521+00 2025-10-29 22:22:55.018526+00 f t ADELANTO 0.00 5 10905 \N +438887 2025-10-31 02:35:28.672138+00 2025-10-31 02:35:28.672144+00 f t SUBTOTAL 78000.00 1 11039 \N +438888 2025-10-31 02:35:28.673865+00 2025-10-31 02:35:28.673871+00 f t COSTO_SERVICIO 0.00 2 11039 \N +438889 2025-10-31 02:35:28.675178+00 2025-10-31 02:35:28.675184+00 f t DESCUENTO 0.00 3 11039 \N +438890 2025-10-31 02:35:28.676238+00 2025-10-31 02:35:28.676244+00 f t TOTAL 78000.00 4 11039 \N +438891 2025-10-31 02:35:28.677117+00 2025-10-31 02:35:28.677122+00 f t ADELANTO 21500.00 5 11039 \N +439237 2025-10-31 02:53:59.474861+00 2025-10-31 02:53:59.47487+00 f t SUBTOTAL 0.00 1 11046 \N +439238 2025-10-31 02:53:59.476155+00 2025-10-31 02:53:59.47616+00 f t COSTO_SERVICIO 0.00 2 11046 \N +439239 2025-10-31 02:53:59.477315+00 2025-10-31 02:53:59.477325+00 f t DESCUENTO 0.00 3 11046 \N +439240 2025-10-31 02:53:59.478305+00 2025-10-31 02:53:59.47831+00 f t TOTAL 0.00 4 11046 \N +439241 2025-10-31 02:53:59.479209+00 2025-10-31 02:53:59.479214+00 f t ADELANTO 0.00 5 11046 \N +433172 2025-10-29 22:36:24.457458+00 2025-10-29 22:36:24.457466+00 f t SUBTOTAL 54000.00 1 10906 \N +433173 2025-10-29 22:36:24.459161+00 2025-10-29 22:36:24.459168+00 f t COSTO_SERVICIO 0.00 2 10906 \N +433174 2025-10-29 22:36:24.460269+00 2025-10-29 22:36:24.460274+00 f t DESCUENTO 0.00 3 10906 \N +433175 2025-10-29 22:36:24.461437+00 2025-10-29 22:36:24.461443+00 f t TOTAL 54000.00 4 10906 \N +433176 2025-10-29 22:36:24.46254+00 2025-10-29 22:36:24.462548+00 f t ADELANTO 13500.00 5 10906 \N +433202 2025-10-29 22:44:05.001854+00 2025-10-29 22:44:05.001865+00 f t SUBTOTAL 0.00 1 10908 \N +433203 2025-10-29 22:44:05.003542+00 2025-10-29 22:44:05.00355+00 f t COSTO_SERVICIO 0.00 2 10908 \N +433204 2025-10-29 22:44:05.00491+00 2025-10-29 22:44:05.004917+00 f t DESCUENTO 0.00 3 10908 \N +433205 2025-10-29 22:44:05.006126+00 2025-10-29 22:44:05.006131+00 f t TOTAL 0.00 4 10908 \N +433206 2025-10-29 22:44:05.007333+00 2025-10-29 22:44:05.007339+00 f t ADELANTO 0.00 5 10908 \N +433227 2025-10-29 22:44:36.600671+00 2025-10-29 22:44:36.600678+00 f t SUBTOTAL 46000.00 1 10907 \N +433228 2025-10-29 22:44:36.602482+00 2025-10-29 22:44:36.602487+00 f t COSTO_SERVICIO 0.00 2 10907 \N +433229 2025-10-29 22:44:36.603577+00 2025-10-29 22:44:36.603583+00 f t DESCUENTO 0.00 3 10907 \N +433230 2025-10-29 22:44:36.604528+00 2025-10-29 22:44:36.604535+00 f t TOTAL 46000.00 4 10907 \N +433231 2025-10-29 22:44:36.605576+00 2025-10-29 22:44:36.605581+00 f t ADELANTO 11000.00 5 10907 \N +433237 2025-10-29 22:57:25.310587+00 2025-10-29 22:57:25.310596+00 f t SUBTOTAL 0.00 1 10909 \N +433238 2025-10-29 22:57:25.311992+00 2025-10-29 22:57:25.312+00 f t COSTO_SERVICIO 0.00 2 10909 \N +433239 2025-10-29 22:57:25.313088+00 2025-10-29 22:57:25.313094+00 f t DESCUENTO 0.00 3 10909 \N +433240 2025-10-29 22:57:25.314245+00 2025-10-29 22:57:25.31425+00 f t TOTAL 0.00 4 10909 \N +433241 2025-10-29 22:57:25.315158+00 2025-10-29 22:57:25.315164+00 f t ADELANTO 0.00 5 10909 \N +511634 2025-11-18 21:33:23.972908+00 2025-11-18 21:33:23.972917+00 f t DESCUENTO 0.00 3 12737 \N +511635 2025-11-18 21:33:23.974351+00 2025-11-18 21:33:23.974361+00 f t TOTAL 46000.00 4 12737 \N +511636 2025-11-18 21:33:23.975728+00 2025-11-18 21:33:23.975736+00 f t ADELANTO 11000.00 5 12737 \N +536119 2025-11-23 19:48:45.074438+00 2025-11-23 19:48:45.074445+00 f t DESCUENTO 0.00 3 13317 \N +536120 2025-11-23 19:48:45.075826+00 2025-11-23 19:48:45.075835+00 f t TOTAL 55000.00 4 13317 \N +536121 2025-11-23 19:48:45.077001+00 2025-11-23 19:48:45.077006+00 f t ADELANTO 11000.00 5 13317 \N +478266 2025-11-10 20:27:11.269967+00 2025-11-10 20:27:11.269972+00 f t ADELANTO 0.00 5 11956 \N +433307 2025-10-29 22:59:26.929502+00 2025-10-29 22:59:26.929509+00 f t SUBTOTAL 80000.00 1 10911 \N +433308 2025-10-29 22:59:26.930951+00 2025-10-29 22:59:26.930958+00 f t COSTO_SERVICIO 0.00 2 10911 \N +433309 2025-10-29 22:59:26.93192+00 2025-10-29 22:59:26.931925+00 f t DESCUENTO 0.00 3 10911 \N +433310 2025-10-29 22:59:26.932779+00 2025-10-29 22:59:26.932787+00 f t TOTAL 80000.00 4 10911 \N +433311 2025-10-29 22:59:26.933594+00 2025-10-29 22:59:26.933599+00 f t ADELANTO 12000.00 5 10911 \N +436472 2025-10-30 16:43:51.030906+00 2025-10-30 16:43:51.030914+00 f t SUBTOTAL 23000.00 1 10987 \N +436473 2025-10-30 16:43:51.032702+00 2025-10-30 16:43:51.03271+00 f t COSTO_SERVICIO 0.00 2 10987 \N +436474 2025-10-30 16:43:51.034191+00 2025-10-30 16:43:51.034197+00 f t DESCUENTO 0.00 3 10987 \N +436475 2025-10-30 16:43:51.035401+00 2025-10-30 16:43:51.035407+00 f t TOTAL 23000.00 4 10987 \N +436476 2025-10-30 16:43:51.036519+00 2025-10-30 16:43:51.036525+00 f t ADELANTO 5500.00 5 10987 \N +436667 2025-10-30 16:51:36.613622+00 2025-10-30 16:51:36.613631+00 f t SUBTOTAL 0.00 1 10988 \N +436668 2025-10-30 16:51:36.615421+00 2025-10-30 16:51:36.615427+00 f t COSTO_SERVICIO 0.00 2 10988 \N +436669 2025-10-30 16:51:36.616506+00 2025-10-30 16:51:36.616512+00 f t DESCUENTO 0.00 3 10988 \N +436670 2025-10-30 16:51:36.617471+00 2025-10-30 16:51:36.617476+00 f t TOTAL 0.00 4 10988 \N +436671 2025-10-30 16:51:36.618449+00 2025-10-30 16:51:36.618454+00 f t ADELANTO 0.00 5 10988 \N +433342 2025-10-29 23:00:59.396297+00 2025-10-29 23:00:59.396305+00 f t SUBTOTAL 46000.00 1 10910 \N +433343 2025-10-29 23:00:59.397806+00 2025-10-29 23:00:59.397813+00 f t COSTO_SERVICIO 0.00 2 10910 \N +433344 2025-10-29 23:00:59.398955+00 2025-10-29 23:00:59.398961+00 f t DESCUENTO 0.00 3 10910 \N +433345 2025-10-29 23:00:59.400081+00 2025-10-29 23:00:59.400086+00 f t TOTAL 46000.00 4 10910 \N +433346 2025-10-29 23:00:59.401185+00 2025-10-29 23:00:59.401191+00 f t ADELANTO 11000.00 5 10910 \N +437607 2025-10-30 20:26:10.708536+00 2025-10-30 20:26:10.708547+00 f t SUBTOTAL 54000.00 1 11009 \N +437608 2025-10-30 20:26:10.710383+00 2025-10-30 20:26:10.710389+00 f t COSTO_SERVICIO 0.00 2 11009 \N +437609 2025-10-30 20:26:10.711544+00 2025-10-30 20:26:10.71155+00 f t DESCUENTO 0.00 3 11009 \N +437610 2025-10-30 20:26:10.712481+00 2025-10-30 20:26:10.712487+00 f t TOTAL 54000.00 4 11009 \N +437611 2025-10-30 20:26:10.713473+00 2025-10-30 20:26:10.713479+00 f t ADELANTO 13500.00 5 11009 \N +438052 2025-10-30 22:57:42.429647+00 2025-10-30 22:57:42.429654+00 f t SUBTOTAL 23000.00 1 11017 \N +438053 2025-10-30 22:57:42.431797+00 2025-10-30 22:57:42.431803+00 f t COSTO_SERVICIO 0.00 2 11017 \N +438054 2025-10-30 22:57:42.433085+00 2025-10-30 22:57:42.433091+00 f t DESCUENTO 0.00 3 11017 \N +438055 2025-10-30 22:57:42.434095+00 2025-10-30 22:57:42.434102+00 f t TOTAL 23000.00 4 11017 \N +438056 2025-10-30 22:57:42.43523+00 2025-10-30 22:57:42.435236+00 f t ADELANTO 5500.00 5 11017 \N +433372 2025-10-29 23:02:38.330593+00 2025-10-29 23:02:38.330602+00 f t SUBTOTAL 0.00 1 10912 \N +433373 2025-10-29 23:02:38.332518+00 2025-10-29 23:02:38.332526+00 f t COSTO_SERVICIO 0.00 2 10912 \N +433374 2025-10-29 23:02:38.333727+00 2025-10-29 23:02:38.333734+00 f t DESCUENTO 0.00 3 10912 \N +433375 2025-10-29 23:02:38.334756+00 2025-10-29 23:02:38.334763+00 f t TOTAL 0.00 4 10912 \N +433376 2025-10-29 23:02:38.335884+00 2025-10-29 23:02:38.335889+00 f t ADELANTO 0.00 5 10912 \N +438232 2025-10-30 23:49:42.749715+00 2025-10-30 23:49:42.749723+00 f t SUBTOTAL 0.00 1 11027 \N +438233 2025-10-30 23:49:42.751239+00 2025-10-30 23:49:42.751246+00 f t COSTO_SERVICIO 0.00 2 11027 \N +438234 2025-10-30 23:49:42.752291+00 2025-10-30 23:49:42.752298+00 f t DESCUENTO 0.00 3 11027 \N +438235 2025-10-30 23:49:42.75326+00 2025-10-30 23:49:42.753267+00 f t TOTAL 0.00 4 11027 \N +438236 2025-10-30 23:49:42.754121+00 2025-10-30 23:49:42.754128+00 f t ADELANTO 0.00 5 11027 \N +438772 2025-10-31 02:26:38.402162+00 2025-10-31 02:26:38.402172+00 f t SUBTOTAL 0.00 1 11037 \N +438773 2025-10-31 02:26:38.40401+00 2025-10-31 02:26:38.404017+00 f t COSTO_SERVICIO 0.00 2 11037 \N +438774 2025-10-31 02:26:38.405136+00 2025-10-31 02:26:38.405142+00 f t DESCUENTO 0.00 3 11037 \N +438775 2025-10-31 02:26:38.406134+00 2025-10-31 02:26:38.40614+00 f t TOTAL 0.00 4 11037 \N +438776 2025-10-31 02:26:38.407275+00 2025-10-31 02:26:38.40728+00 f t ADELANTO 0.00 5 11037 \N +438897 2025-10-31 02:36:02.849511+00 2025-10-31 02:36:02.849523+00 f t SUBTOTAL 0.00 1 11040 \N +438898 2025-10-31 02:36:02.851239+00 2025-10-31 02:36:02.851249+00 f t COSTO_SERVICIO 0.00 2 11040 \N +438899 2025-10-31 02:36:02.852638+00 2025-10-31 02:36:02.852645+00 f t DESCUENTO 0.00 3 11040 \N +438900 2025-10-31 02:36:02.853825+00 2025-10-31 02:36:02.853831+00 f t TOTAL 0.00 4 11040 \N +433412 2025-10-29 23:15:36.287108+00 2025-10-29 23:15:36.287117+00 f t SUBTOTAL 46000.00 1 10913 \N +433413 2025-10-29 23:15:36.288755+00 2025-10-29 23:15:36.288762+00 f t COSTO_SERVICIO 0.00 2 10913 \N +433414 2025-10-29 23:15:36.289849+00 2025-10-29 23:15:36.289855+00 f t DESCUENTO 0.00 3 10913 \N +433415 2025-10-29 23:15:36.290856+00 2025-10-29 23:15:36.290862+00 f t TOTAL 46000.00 4 10913 \N +433416 2025-10-29 23:15:36.291835+00 2025-10-29 23:15:36.291841+00 f t ADELANTO 11000.00 5 10913 \N +438901 2025-10-31 02:36:02.855067+00 2025-10-31 02:36:02.855073+00 f t ADELANTO 0.00 5 11040 \N +433482 2025-10-29 23:19:35.108134+00 2025-10-29 23:19:35.10814+00 f t SUBTOTAL 46000.00 1 10914 \N +433483 2025-10-29 23:19:35.109764+00 2025-10-29 23:19:35.10977+00 f t COSTO_SERVICIO 0.00 2 10914 \N +433484 2025-10-29 23:19:35.110923+00 2025-10-29 23:19:35.110929+00 f t DESCUENTO 0.00 3 10914 \N +433485 2025-10-29 23:19:35.112172+00 2025-10-29 23:19:35.112178+00 f t TOTAL 46000.00 4 10914 \N +433486 2025-10-29 23:19:35.113172+00 2025-10-29 23:19:35.113177+00 f t ADELANTO 11000.00 5 10914 \N +433492 2025-10-29 23:19:41.800949+00 2025-10-29 23:19:41.800959+00 f t SUBTOTAL 0.00 1 10915 \N +433493 2025-10-29 23:19:41.802392+00 2025-10-29 23:19:41.802398+00 f t COSTO_SERVICIO 0.00 2 10915 \N +433494 2025-10-29 23:19:41.803587+00 2025-10-29 23:19:41.803593+00 f t DESCUENTO 0.00 3 10915 \N +433495 2025-10-29 23:19:41.804765+00 2025-10-29 23:19:41.80477+00 f t TOTAL 0.00 4 10915 \N +433496 2025-10-29 23:19:41.805826+00 2025-10-29 23:19:41.805831+00 f t ADELANTO 0.00 5 10915 \N +433567 2025-10-29 23:24:09.300197+00 2025-10-29 23:24:09.300207+00 f t SUBTOTAL 0.00 1 10916 \N +433568 2025-10-29 23:24:09.301845+00 2025-10-29 23:24:09.301851+00 f t COSTO_SERVICIO 0.00 2 10916 \N +433569 2025-10-29 23:24:09.302829+00 2025-10-29 23:24:09.302834+00 f t DESCUENTO 0.00 3 10916 \N +433570 2025-10-29 23:24:09.303784+00 2025-10-29 23:24:09.30379+00 f t TOTAL 0.00 4 10916 \N +433571 2025-10-29 23:24:09.304723+00 2025-10-29 23:24:09.304728+00 f t ADELANTO 0.00 5 10916 \N +433582 2025-10-29 23:48:42.555068+00 2025-10-29 23:48:42.555077+00 f t SUBTOTAL 13200.00 1 10917 \N +433583 2025-10-29 23:48:42.556852+00 2025-10-29 23:48:42.556858+00 f t COSTO_SERVICIO 0.00 2 10917 \N +433584 2025-10-29 23:48:42.557892+00 2025-10-29 23:48:42.557898+00 f t DESCUENTO 0.00 3 10917 \N +433585 2025-10-29 23:48:42.558917+00 2025-10-29 23:48:42.558922+00 f t TOTAL 13200.00 4 10917 \N +433586 2025-10-29 23:48:42.559936+00 2025-10-29 23:48:42.559941+00 f t ADELANTO 13200.00 5 10917 \N +433592 2025-10-30 00:15:10.130775+00 2025-10-30 00:15:10.130788+00 f t SUBTOTAL 0.00 1 10918 \N +433593 2025-10-30 00:15:10.132552+00 2025-10-30 00:15:10.132562+00 f t COSTO_SERVICIO 0.00 2 10918 \N +433594 2025-10-30 00:15:10.133959+00 2025-10-30 00:15:10.133969+00 f t DESCUENTO 0.00 3 10918 \N +433595 2025-10-30 00:15:10.13542+00 2025-10-30 00:15:10.135429+00 f t TOTAL 0.00 4 10918 \N +433596 2025-10-30 00:15:10.137002+00 2025-10-30 00:15:10.13701+00 f t ADELANTO 0.00 5 10918 \N +446082 2025-11-01 20:40:22.317869+00 2025-11-01 20:40:22.317875+00 f t SUBTOTAL 75000.00 1 11224 \N +446083 2025-11-01 20:40:22.319502+00 2025-11-01 20:40:22.319507+00 f t COSTO_SERVICIO 0.00 2 11224 \N +446084 2025-11-01 20:40:22.320517+00 2025-11-01 20:40:22.320522+00 f t DESCUENTO 0.00 3 11224 \N +446085 2025-11-01 20:40:22.321328+00 2025-11-01 20:40:22.321333+00 f t TOTAL 75000.00 4 11224 \N +446086 2025-11-01 20:40:22.322244+00 2025-11-01 20:40:22.322248+00 f t ADELANTO 16500.00 5 11224 \N +456648 2025-11-05 14:42:58.904886+00 2025-11-05 14:42:58.904894+00 f t SUBTOTAL 0.00 1 11467 \N +456650 2025-11-05 14:42:58.908044+00 2025-11-05 14:42:58.908051+00 f t COSTO_SERVICIO 0.00 2 11467 \N +456652 2025-11-05 14:42:58.909202+00 2025-11-05 14:42:58.909208+00 f t DESCUENTO 0.00 3 11467 \N +456654 2025-11-05 14:42:58.910474+00 2025-11-05 14:42:58.910482+00 f t TOTAL 0.00 4 11467 \N +456656 2025-11-05 14:42:58.911492+00 2025-11-05 14:42:58.911497+00 f t ADELANTO 0.00 5 11467 \N +437762 2025-10-30 21:01:34.739006+00 2025-10-30 21:01:34.739014+00 f t SUBTOTAL 46000.00 1 11011 \N +437763 2025-10-30 21:01:34.740702+00 2025-10-30 21:01:34.740709+00 f t COSTO_SERVICIO 0.00 2 11011 \N +437764 2025-10-30 21:01:34.742071+00 2025-10-30 21:01:34.742076+00 f t DESCUENTO 0.00 3 11011 \N +437765 2025-10-30 21:01:34.743337+00 2025-10-30 21:01:34.743343+00 f t TOTAL 46000.00 4 11011 \N +437766 2025-10-30 21:01:34.74452+00 2025-10-30 21:01:34.744525+00 f t ADELANTO 11000.00 5 11011 \N +433667 2025-10-30 00:18:49.822906+00 2025-10-30 00:18:49.822919+00 f t SUBTOTAL 0.00 1 10919 \N +433668 2025-10-30 00:18:49.825171+00 2025-10-30 00:18:49.825181+00 f t COSTO_SERVICIO 0.00 2 10919 \N +433669 2025-10-30 00:18:49.826676+00 2025-10-30 00:18:49.826687+00 f t DESCUENTO 0.00 3 10919 \N +433670 2025-10-30 00:18:49.828139+00 2025-10-30 00:18:49.828146+00 f t TOTAL 0.00 4 10919 \N +433671 2025-10-30 00:18:49.82934+00 2025-10-30 00:18:49.829346+00 f t ADELANTO 0.00 5 10919 \N +448972 2025-11-03 16:05:49.227535+00 2025-11-03 16:05:49.227545+00 f t SUBTOTAL 0.00 1 11291 \N +448973 2025-11-03 16:05:49.229914+00 2025-11-03 16:05:49.229921+00 f t COSTO_SERVICIO 0.00 2 11291 \N +448974 2025-11-03 16:05:49.231298+00 2025-11-03 16:05:49.23131+00 f t DESCUENTO 0.00 3 11291 \N +448975 2025-11-03 16:05:49.23264+00 2025-11-03 16:05:49.232646+00 f t TOTAL 0.00 4 11291 \N +448976 2025-11-03 16:05:49.234003+00 2025-11-03 16:05:49.23401+00 f t ADELANTO 0.00 5 11291 \N +433717 2025-10-30 00:23:56.960242+00 2025-10-30 00:23:56.96025+00 f t SUBTOTAL 46000.00 1 10920 \N +433718 2025-10-30 00:23:56.962103+00 2025-10-30 00:23:56.962111+00 f t COSTO_SERVICIO 0.00 2 10920 \N +433719 2025-10-30 00:23:56.965649+00 2025-10-30 00:23:56.965657+00 f t DESCUENTO 0.00 3 10920 \N +433720 2025-10-30 00:23:56.967388+00 2025-10-30 00:23:56.967395+00 f t TOTAL 46000.00 4 10920 \N +433721 2025-10-30 00:23:56.968748+00 2025-10-30 00:23:56.968754+00 f t ADELANTO 11000.00 5 10920 \N +438907 2025-10-31 02:36:51.368955+00 2025-10-31 02:36:51.368963+00 f t SUBTOTAL 0.00 1 11041 \N +438908 2025-10-31 02:36:51.370276+00 2025-10-31 02:36:51.370282+00 f t COSTO_SERVICIO 0.00 2 11041 \N +438909 2025-10-31 02:36:51.371311+00 2025-10-31 02:36:51.371317+00 f t DESCUENTO 0.00 3 11041 \N +438910 2025-10-31 02:36:51.372258+00 2025-10-31 02:36:51.372263+00 f t TOTAL 0.00 4 11041 \N +438911 2025-10-31 02:36:51.37326+00 2025-10-31 02:36:51.373268+00 f t ADELANTO 0.00 5 11041 \N +439357 2025-10-31 08:09:31.409089+00 2025-10-31 08:09:31.409099+00 f t SUBTOTAL 55000.00 1 11049 \N +439358 2025-10-31 08:09:31.410824+00 2025-10-31 08:09:31.410831+00 f t COSTO_SERVICIO 0.00 2 11049 \N +439359 2025-10-31 08:09:31.411857+00 2025-10-31 08:09:31.411862+00 f t DESCUENTO 0.00 3 11049 \N +439360 2025-10-31 08:09:31.412943+00 2025-10-31 08:09:31.412949+00 f t TOTAL 55000.00 4 11049 \N +439361 2025-10-31 08:09:31.41386+00 2025-10-31 08:09:31.413865+00 f t ADELANTO 11000.00 5 11049 \N +433762 2025-10-30 00:24:50.761177+00 2025-10-30 00:24:50.761186+00 f t SUBTOTAL 78000.00 1 10921 \N +433763 2025-10-30 00:24:50.762915+00 2025-10-30 00:24:50.762922+00 f t COSTO_SERVICIO 0.00 2 10921 \N +433764 2025-10-30 00:24:50.764216+00 2025-10-30 00:24:50.764222+00 f t DESCUENTO 0.00 3 10921 \N +433765 2025-10-30 00:24:50.765295+00 2025-10-30 00:24:50.765301+00 f t TOTAL 78000.00 4 10921 \N +433766 2025-10-30 00:24:50.766229+00 2025-10-30 00:24:50.766235+00 f t ADELANTO 21500.00 5 10921 \N +450157 2025-11-03 20:07:14.524453+00 2025-11-03 20:07:14.524463+00 f t SUBTOTAL 0.00 1 11322 \N +450158 2025-11-03 20:07:14.525808+00 2025-11-03 20:07:14.525815+00 f t COSTO_SERVICIO 0.00 2 11322 \N +450159 2025-11-03 20:07:14.526863+00 2025-11-03 20:07:14.52687+00 f t DESCUENTO 0.00 3 11322 \N +450160 2025-11-03 20:07:14.528017+00 2025-11-03 20:07:14.528023+00 f t TOTAL 0.00 4 11322 \N +433772 2025-10-30 00:25:23.777823+00 2025-10-30 00:25:23.777833+00 f t SUBTOTAL 55000.00 1 10922 \N +433773 2025-10-30 00:25:23.77971+00 2025-10-30 00:25:23.779718+00 f t COSTO_SERVICIO 0.00 2 10922 \N +433774 2025-10-30 00:25:23.780913+00 2025-10-30 00:25:23.780918+00 f t DESCUENTO 0.00 3 10922 \N +433775 2025-10-30 00:25:23.781833+00 2025-10-30 00:25:23.781837+00 f t TOTAL 55000.00 4 10922 \N +433776 2025-10-30 00:25:23.782797+00 2025-10-30 00:25:23.782803+00 f t ADELANTO 11000.00 5 10922 \N +440372 2025-10-31 14:54:11.586333+00 2025-10-31 14:54:11.586343+00 f t SUBTOTAL 0.00 1 11077 \N +440373 2025-10-31 14:54:11.588511+00 2025-10-31 14:54:11.588517+00 f t COSTO_SERVICIO 0.00 2 11077 \N +440374 2025-10-31 14:54:11.589705+00 2025-10-31 14:54:11.58971+00 f t DESCUENTO 0.00 3 11077 \N +433812 2025-10-30 00:27:49.334685+00 2025-10-30 00:27:49.334692+00 f t SUBTOTAL 55000.00 1 10923 \N +433813 2025-10-30 00:27:49.336251+00 2025-10-30 00:27:49.336257+00 f t COSTO_SERVICIO 0.00 2 10923 \N +433814 2025-10-30 00:27:49.337293+00 2025-10-30 00:27:49.337298+00 f t DESCUENTO 0.00 3 10923 \N +433815 2025-10-30 00:27:49.338442+00 2025-10-30 00:27:49.338448+00 f t TOTAL 55000.00 4 10923 \N +433816 2025-10-30 00:27:49.339425+00 2025-10-30 00:27:49.33943+00 f t ADELANTO 11000.00 5 10923 \N +440375 2025-10-31 14:54:11.590794+00 2025-10-31 14:54:11.590799+00 f t TOTAL 0.00 4 11077 \N +440376 2025-10-31 14:54:11.591871+00 2025-10-31 14:54:11.591876+00 f t ADELANTO 0.00 5 11077 \N +440867 2025-10-31 17:05:40.525652+00 2025-10-31 17:05:40.525661+00 f t SUBTOTAL 0.00 1 11092 \N +440868 2025-10-31 17:05:40.527477+00 2025-10-31 17:05:40.527484+00 f t COSTO_SERVICIO 0.00 2 11092 \N +440869 2025-10-31 17:05:40.528746+00 2025-10-31 17:05:40.528752+00 f t DESCUENTO 0.00 3 11092 \N +440870 2025-10-31 17:05:40.529883+00 2025-10-31 17:05:40.529889+00 f t TOTAL 0.00 4 11092 \N +440871 2025-10-31 17:05:40.53089+00 2025-10-31 17:05:40.530895+00 f t ADELANTO 0.00 5 11092 \N +433872 2025-10-30 00:34:39.539197+00 2025-10-30 00:34:39.539206+00 f t SUBTOTAL 0.00 1 10924 \N +433873 2025-10-30 00:34:39.54107+00 2025-10-30 00:34:39.541079+00 f t COSTO_SERVICIO 0.00 2 10924 \N +433874 2025-10-30 00:34:39.542243+00 2025-10-30 00:34:39.542251+00 f t DESCUENTO 0.00 3 10924 \N +433875 2025-10-30 00:34:39.543219+00 2025-10-30 00:34:39.543226+00 f t TOTAL 0.00 4 10924 \N +433876 2025-10-30 00:34:39.544466+00 2025-10-30 00:34:39.544473+00 f t ADELANTO 0.00 5 10924 \N +433882 2025-10-30 00:35:08.011613+00 2025-10-30 00:35:08.011622+00 f t SUBTOTAL 0.00 1 10925 \N +433883 2025-10-30 00:35:08.013089+00 2025-10-30 00:35:08.01311+00 f t COSTO_SERVICIO 0.00 2 10925 \N +433884 2025-10-30 00:35:08.014321+00 2025-10-30 00:35:08.014334+00 f t DESCUENTO 0.00 3 10925 \N +433885 2025-10-30 00:35:08.015441+00 2025-10-30 00:35:08.015446+00 f t TOTAL 0.00 4 10925 \N +433886 2025-10-30 00:35:08.016368+00 2025-10-30 00:35:08.016373+00 f t ADELANTO 0.00 5 10925 \N +433892 2025-10-30 00:44:06.964466+00 2025-10-30 00:44:06.964475+00 f t SUBTOTAL 0.00 1 10926 \N +433893 2025-10-30 00:44:06.965702+00 2025-10-30 00:44:06.965709+00 f t COSTO_SERVICIO 0.00 2 10926 \N +433894 2025-10-30 00:44:06.966715+00 2025-10-30 00:44:06.96672+00 f t DESCUENTO 0.00 3 10926 \N +433895 2025-10-30 00:44:06.967643+00 2025-10-30 00:44:06.967648+00 f t TOTAL 0.00 4 10926 \N +433896 2025-10-30 00:44:06.96858+00 2025-10-30 00:44:06.968584+00 f t ADELANTO 0.00 5 10926 \N +433947 2025-10-30 00:58:10.107206+00 2025-10-30 00:58:10.107213+00 f t SUBTOTAL 55000.00 1 10927 \N +433948 2025-10-30 00:58:10.109192+00 2025-10-30 00:58:10.109198+00 f t COSTO_SERVICIO 0.00 2 10927 \N +433949 2025-10-30 00:58:10.110899+00 2025-10-30 00:58:10.110905+00 f t DESCUENTO 0.00 3 10927 \N +433950 2025-10-30 00:58:10.112017+00 2025-10-30 00:58:10.112022+00 f t TOTAL 55000.00 4 10927 \N +433951 2025-10-30 00:58:10.113026+00 2025-10-30 00:58:10.113031+00 f t ADELANTO 11000.00 5 10927 \N +448202 2025-11-03 10:12:07.486626+00 2025-11-03 10:12:07.486634+00 f t SUBTOTAL 55000.00 1 11266 \N +448203 2025-11-03 10:12:07.488486+00 2025-11-03 10:12:07.488493+00 f t COSTO_SERVICIO 0.00 2 11266 \N +448204 2025-11-03 10:12:07.489636+00 2025-11-03 10:12:07.489644+00 f t DESCUENTO 0.00 3 11266 \N +448205 2025-11-03 10:12:07.490665+00 2025-11-03 10:12:07.49067+00 f t TOTAL 55000.00 4 11266 \N +448206 2025-11-03 10:12:07.492034+00 2025-11-03 10:12:07.49204+00 f t ADELANTO 11000.00 5 11266 \N +448397 2025-11-03 14:30:21.347282+00 2025-11-03 14:30:21.347294+00 f t SUBTOTAL 55000.00 1 11277 \N +448398 2025-11-03 14:30:21.349732+00 2025-11-03 14:30:21.349743+00 f t COSTO_SERVICIO 0.00 2 11277 \N +448399 2025-11-03 14:30:21.351409+00 2025-11-03 14:30:21.351417+00 f t DESCUENTO 0.00 3 11277 \N +448400 2025-11-03 14:30:21.352919+00 2025-11-03 14:30:21.352928+00 f t TOTAL 55000.00 4 11277 \N +448401 2025-11-03 14:30:21.354331+00 2025-11-03 14:30:21.354339+00 f t ADELANTO 11000.00 5 11277 \N +433997 2025-10-30 01:16:12.922464+00 2025-10-30 01:16:12.922473+00 f t SUBTOTAL 0.00 1 10928 \N +433998 2025-10-30 01:16:12.923789+00 2025-10-30 01:16:12.923796+00 f t COSTO_SERVICIO 0.00 2 10928 \N +433999 2025-10-30 01:16:12.924924+00 2025-10-30 01:16:12.924929+00 f t DESCUENTO 0.00 3 10928 \N +434000 2025-10-30 01:16:12.925924+00 2025-10-30 01:16:12.925931+00 f t TOTAL 0.00 4 10928 \N +434001 2025-10-30 01:16:12.926902+00 2025-10-30 01:16:12.926908+00 f t ADELANTO 0.00 5 10928 \N +439682 2025-10-31 12:03:12.301534+00 2025-10-31 12:03:12.301543+00 f t SUBTOTAL 0.00 1 11058 \N +439683 2025-10-31 12:03:12.303435+00 2025-10-31 12:03:12.303442+00 f t COSTO_SERVICIO 0.00 2 11058 \N +439684 2025-10-31 12:03:12.304487+00 2025-10-31 12:03:12.304492+00 f t DESCUENTO 0.00 3 11058 \N +439685 2025-10-31 12:03:12.305426+00 2025-10-31 12:03:12.305431+00 f t TOTAL 0.00 4 11058 \N +439686 2025-10-31 12:03:12.306353+00 2025-10-31 12:03:12.306359+00 f t ADELANTO 0.00 5 11058 \N +434042 2025-10-30 01:26:59.445551+00 2025-10-30 01:26:59.445558+00 f t SUBTOTAL 70000.00 1 10929 \N +434043 2025-10-30 01:26:59.44703+00 2025-10-30 01:26:59.447036+00 f t COSTO_SERVICIO 0.00 2 10929 \N +434044 2025-10-30 01:26:59.448216+00 2025-10-30 01:26:59.448221+00 f t DESCUENTO 0.00 3 10929 \N +434045 2025-10-30 01:26:59.449193+00 2025-10-30 01:26:59.449201+00 f t TOTAL 70000.00 4 10929 \N +434046 2025-10-30 01:26:59.450427+00 2025-10-30 01:26:59.450432+00 f t ADELANTO 19000.00 5 10929 \N +434052 2025-10-30 01:28:29.188509+00 2025-10-30 01:28:29.188518+00 f t SUBTOTAL 0.00 1 10930 \N +434053 2025-10-30 01:28:29.190343+00 2025-10-30 01:28:29.190354+00 f t COSTO_SERVICIO 0.00 2 10930 \N +434054 2025-10-30 01:28:29.191597+00 2025-10-30 01:28:29.191605+00 f t DESCUENTO 0.00 3 10930 \N +434055 2025-10-30 01:28:29.193233+00 2025-10-30 01:28:29.19324+00 f t TOTAL 0.00 4 10930 \N +434056 2025-10-30 01:28:29.197848+00 2025-10-30 01:28:29.197856+00 f t ADELANTO 0.00 5 10930 \N +434062 2025-10-30 01:46:33.01081+00 2025-10-30 01:46:33.010819+00 f t SUBTOTAL 0.00 1 10931 \N +434063 2025-10-30 01:46:33.01251+00 2025-10-30 01:46:33.012517+00 f t COSTO_SERVICIO 0.00 2 10931 \N +434064 2025-10-30 01:46:33.013567+00 2025-10-30 01:46:33.013572+00 f t DESCUENTO 0.00 3 10931 \N +434065 2025-10-30 01:46:33.014582+00 2025-10-30 01:46:33.014587+00 f t TOTAL 0.00 4 10931 \N +434066 2025-10-30 01:46:33.015941+00 2025-10-30 01:46:33.015946+00 f t ADELANTO 0.00 5 10931 \N +434072 2025-10-30 01:50:48.631287+00 2025-10-30 01:50:48.631297+00 f t SUBTOTAL 0.00 1 10932 \N +434073 2025-10-30 01:50:48.632465+00 2025-10-30 01:50:48.63247+00 f t COSTO_SERVICIO 0.00 2 10932 \N +434074 2025-10-30 01:50:48.63344+00 2025-10-30 01:50:48.633445+00 f t DESCUENTO 0.00 3 10932 \N +434075 2025-10-30 01:50:48.634244+00 2025-10-30 01:50:48.634249+00 f t TOTAL 0.00 4 10932 \N +434076 2025-10-30 01:50:48.635044+00 2025-10-30 01:50:48.635049+00 f t ADELANTO 0.00 5 10932 \N +434082 2025-10-30 01:55:03.405793+00 2025-10-30 01:55:03.405808+00 f t SUBTOTAL 0.00 1 10933 \N +434083 2025-10-30 01:55:03.409+00 2025-10-30 01:55:03.409015+00 f t COSTO_SERVICIO 0.00 2 10933 \N +434084 2025-10-30 01:55:03.416753+00 2025-10-30 01:55:03.41677+00 f t DESCUENTO 0.00 3 10933 \N +434085 2025-10-30 01:55:03.419371+00 2025-10-30 01:55:03.419383+00 f t TOTAL 0.00 4 10933 \N +434086 2025-10-30 01:55:03.422112+00 2025-10-30 01:55:03.422129+00 f t ADELANTO 0.00 5 10933 \N +440377 2025-10-31 14:54:35.023409+00 2025-10-31 14:54:35.023417+00 f t SUBTOTAL 75000.00 1 11076 \N +440378 2025-10-31 14:54:35.025132+00 2025-10-31 14:54:35.025137+00 f t COSTO_SERVICIO 0.00 2 11076 \N +440379 2025-10-31 14:54:35.026182+00 2025-10-31 14:54:35.026187+00 f t DESCUENTO 0.00 3 11076 \N +440380 2025-10-31 14:54:35.027182+00 2025-10-31 14:54:35.02719+00 f t TOTAL 75000.00 4 11076 \N +440381 2025-10-31 14:54:35.028191+00 2025-10-31 14:54:35.028197+00 f t ADELANTO 15000.00 5 11076 \N +440627 2025-10-31 15:34:50.926107+00 2025-10-31 15:34:50.926115+00 f t SUBTOTAL 46000.00 1 11083 \N +440628 2025-10-31 15:34:50.927944+00 2025-10-31 15:34:50.927951+00 f t COSTO_SERVICIO 0.00 2 11083 \N +440629 2025-10-31 15:34:50.929048+00 2025-10-31 15:34:50.929053+00 f t DESCUENTO 0.00 3 11083 \N +440630 2025-10-31 15:34:50.930299+00 2025-10-31 15:34:50.930309+00 f t TOTAL 46000.00 4 11083 \N +440631 2025-10-31 15:34:50.931517+00 2025-10-31 15:34:50.931522+00 f t ADELANTO 11000.00 5 11083 \N +440947 2025-10-31 17:07:06.90079+00 2025-10-31 17:07:06.900797+00 f t SUBTOTAL 94000.00 1 11093 \N +440948 2025-10-31 17:07:06.902338+00 2025-10-31 17:07:06.902344+00 f t COSTO_SERVICIO 0.00 2 11093 \N +440949 2025-10-31 17:07:06.903509+00 2025-10-31 17:07:06.903514+00 f t DESCUENTO 0.00 3 11093 \N +440950 2025-10-31 17:07:06.904548+00 2025-10-31 17:07:06.904553+00 f t TOTAL 94000.00 4 11093 \N +440951 2025-10-31 17:07:06.905487+00 2025-10-31 17:07:06.905492+00 f t ADELANTO 27000.00 5 11093 \N +441242 2025-10-31 18:52:23.319605+00 2025-10-31 18:52:23.319613+00 f t SUBTOTAL 46000.00 1 11101 \N +441243 2025-10-31 18:52:23.321197+00 2025-10-31 18:52:23.321204+00 f t COSTO_SERVICIO 0.00 2 11101 \N +441244 2025-10-31 18:52:23.322171+00 2025-10-31 18:52:23.322176+00 f t DESCUENTO 0.00 3 11101 \N +436892 2025-10-30 17:37:18.230751+00 2025-10-30 17:37:18.230757+00 f t SUBTOTAL 156000.00 1 10982 \N +434192 2025-10-30 02:01:01.937413+00 2025-10-30 02:01:01.937423+00 f t SUBTOTAL 0.00 1 10934 \N +434193 2025-10-30 02:01:01.939862+00 2025-10-30 02:01:01.939875+00 f t COSTO_SERVICIO 0.00 2 10934 \N +434194 2025-10-30 02:01:01.942389+00 2025-10-30 02:01:01.942401+00 f t DESCUENTO 0.00 3 10934 \N +434195 2025-10-30 02:01:01.944383+00 2025-10-30 02:01:01.944395+00 f t TOTAL 0.00 4 10934 \N +434196 2025-10-30 02:01:01.946347+00 2025-10-30 02:01:01.946356+00 f t ADELANTO 0.00 5 10934 \N +436893 2025-10-30 17:37:18.232554+00 2025-10-30 17:37:18.232559+00 f t COSTO_SERVICIO 0.00 2 10982 \N +436894 2025-10-30 17:37:18.233519+00 2025-10-30 17:37:18.233524+00 f t DESCUENTO 9200.00 3 10982 \N +436895 2025-10-30 17:37:18.234351+00 2025-10-30 17:37:18.234355+00 f t TOTAL 146800.00 4 10982 \N +436896 2025-10-30 17:37:18.235301+00 2025-10-30 17:37:18.235306+00 f t ADELANTO 43000.00 5 10982 \N +434202 2025-10-30 02:03:08.040868+00 2025-10-30 02:03:08.040878+00 f t SUBTOTAL 0.00 1 10935 \N +434203 2025-10-30 02:03:08.042281+00 2025-10-30 02:03:08.042288+00 f t COSTO_SERVICIO 0.00 2 10935 \N +434204 2025-10-30 02:03:08.043365+00 2025-10-30 02:03:08.043371+00 f t DESCUENTO 0.00 3 10935 \N +434205 2025-10-30 02:03:08.044446+00 2025-10-30 02:03:08.044452+00 f t TOTAL 0.00 4 10935 \N +434206 2025-10-30 02:03:08.045478+00 2025-10-30 02:03:08.045484+00 f t ADELANTO 0.00 5 10935 \N +437627 2025-10-30 20:47:20.331326+00 2025-10-30 20:47:20.331335+00 f t SUBTOTAL 0.00 1 11010 \N +437628 2025-10-30 20:47:20.333618+00 2025-10-30 20:47:20.333625+00 f t COSTO_SERVICIO 0.00 2 11010 \N +437629 2025-10-30 20:47:20.334836+00 2025-10-30 20:47:20.334842+00 f t DESCUENTO 0.00 3 11010 \N +437630 2025-10-30 20:47:20.336151+00 2025-10-30 20:47:20.336157+00 f t TOTAL 0.00 4 11010 \N +437631 2025-10-30 20:47:20.337216+00 2025-10-30 20:47:20.337222+00 f t ADELANTO 0.00 5 11010 \N +438072 2025-10-30 23:10:06.527775+00 2025-10-30 23:10:06.527784+00 f t SUBTOTAL 0.00 1 11018 \N +438073 2025-10-30 23:10:06.530054+00 2025-10-30 23:10:06.530064+00 f t COSTO_SERVICIO 0.00 2 11018 \N +438074 2025-10-30 23:10:06.531458+00 2025-10-30 23:10:06.531465+00 f t DESCUENTO 0.00 3 11018 \N +438075 2025-10-30 23:10:06.532779+00 2025-10-30 23:10:06.532784+00 f t TOTAL 0.00 4 11018 \N +438076 2025-10-30 23:10:06.533933+00 2025-10-30 23:10:06.533938+00 f t ADELANTO 0.00 5 11018 \N +434242 2025-10-30 02:12:12.829609+00 2025-10-30 02:12:12.829618+00 f t SUBTOTAL 46000.00 1 10936 \N +434243 2025-10-30 02:12:12.831289+00 2025-10-30 02:12:12.831295+00 f t COSTO_SERVICIO 0.00 2 10936 \N +434244 2025-10-30 02:12:12.832503+00 2025-10-30 02:12:12.832508+00 f t DESCUENTO 0.00 3 10936 \N +434245 2025-10-30 02:12:12.833614+00 2025-10-30 02:12:12.833621+00 f t TOTAL 46000.00 4 10936 \N +434246 2025-10-30 02:12:12.834588+00 2025-10-30 02:12:12.834593+00 f t ADELANTO 11000.00 5 10936 \N +438657 2025-10-31 02:16:28.651849+00 2025-10-31 02:16:28.65186+00 f t SUBTOTAL 0.00 1 11034 \N +434262 2025-10-30 02:32:29.181266+00 2025-10-30 02:32:29.181275+00 f t SUBTOTAL 0.00 1 10938 \N +434263 2025-10-30 02:32:29.182935+00 2025-10-30 02:32:29.182944+00 f t COSTO_SERVICIO 0.00 2 10938 \N +434264 2025-10-30 02:32:29.184523+00 2025-10-30 02:32:29.18453+00 f t DESCUENTO 0.00 3 10938 \N +434265 2025-10-30 02:32:29.185721+00 2025-10-30 02:32:29.185729+00 f t TOTAL 0.00 4 10938 \N +434266 2025-10-30 02:32:29.186835+00 2025-10-30 02:32:29.186841+00 f t ADELANTO 0.00 5 10938 \N +438658 2025-10-31 02:16:28.653975+00 2025-10-31 02:16:28.653983+00 f t COSTO_SERVICIO 0.00 2 11034 \N +438659 2025-10-31 02:16:28.655412+00 2025-10-31 02:16:28.655419+00 f t DESCUENTO 0.00 3 11034 \N +438660 2025-10-31 02:16:28.656472+00 2025-10-31 02:16:28.656477+00 f t TOTAL 0.00 4 11034 \N +438661 2025-10-31 02:16:28.657427+00 2025-10-31 02:16:28.657432+00 f t ADELANTO 0.00 5 11034 \N +434277 2025-10-30 02:33:16.578491+00 2025-10-30 02:33:16.578504+00 f t SUBTOTAL 0.00 1 10937 \N +434278 2025-10-30 02:33:16.580377+00 2025-10-30 02:33:16.580385+00 f t COSTO_SERVICIO 0.00 2 10937 \N +434279 2025-10-30 02:33:16.581385+00 2025-10-30 02:33:16.581391+00 f t DESCUENTO 0.00 3 10937 \N +434280 2025-10-30 02:33:16.582282+00 2025-10-30 02:33:16.582287+00 f t TOTAL 0.00 4 10937 \N +434281 2025-10-30 02:33:16.583225+00 2025-10-30 02:33:16.58323+00 f t ADELANTO 0.00 5 10937 \N +434287 2025-10-30 02:43:10.805058+00 2025-10-30 02:43:10.805068+00 f t SUBTOTAL 0.00 1 10939 \N +434288 2025-10-30 02:43:10.80643+00 2025-10-30 02:43:10.806438+00 f t COSTO_SERVICIO 0.00 2 10939 \N +434289 2025-10-30 02:43:10.80764+00 2025-10-30 02:43:10.807648+00 f t DESCUENTO 0.00 3 10939 \N +434290 2025-10-30 02:43:10.808713+00 2025-10-30 02:43:10.808718+00 f t TOTAL 0.00 4 10939 \N +434291 2025-10-30 02:43:10.809668+00 2025-10-30 02:43:10.809674+00 f t ADELANTO 0.00 5 10939 \N +439797 2025-10-31 12:21:14.272424+00 2025-10-31 12:21:14.272432+00 f t SUBTOTAL 46000.00 1 11060 \N +439798 2025-10-31 12:21:14.274374+00 2025-10-31 12:21:14.274381+00 f t COSTO_SERVICIO 0.00 2 11060 \N +439799 2025-10-31 12:21:14.275766+00 2025-10-31 12:21:14.275772+00 f t DESCUENTO 0.00 3 11060 \N +439800 2025-10-31 12:21:14.277102+00 2025-10-31 12:21:14.277107+00 f t TOTAL 46000.00 4 11060 \N +439801 2025-10-31 12:21:14.279981+00 2025-10-31 12:21:14.279989+00 f t ADELANTO 11000.00 5 11060 \N +440007 2025-10-31 13:49:43.537898+00 2025-10-31 13:49:43.537906+00 f t SUBTOTAL 46000.00 1 11067 \N +440008 2025-10-31 13:49:43.539654+00 2025-10-31 13:49:43.53966+00 f t COSTO_SERVICIO 0.00 2 11067 \N +440009 2025-10-31 13:49:43.540836+00 2025-10-31 13:49:43.540844+00 f t DESCUENTO 0.00 3 11067 \N +440010 2025-10-31 13:49:43.541974+00 2025-10-31 13:49:43.541981+00 f t TOTAL 46000.00 4 11067 \N +440011 2025-10-31 13:49:43.543834+00 2025-10-31 13:49:43.54384+00 f t ADELANTO 11000.00 5 11067 \N +434352 2025-10-30 02:49:34.081317+00 2025-10-30 02:49:34.081329+00 f t SUBTOTAL 46000.00 1 10940 \N +434353 2025-10-30 02:49:34.084551+00 2025-10-30 02:49:34.084563+00 f t COSTO_SERVICIO 0.00 2 10940 \N +434354 2025-10-30 02:49:34.086187+00 2025-10-30 02:49:34.086197+00 f t DESCUENTO 0.00 3 10940 \N +434355 2025-10-30 02:49:34.087784+00 2025-10-30 02:49:34.087794+00 f t TOTAL 46000.00 4 10940 \N +434356 2025-10-30 02:49:34.089501+00 2025-10-30 02:49:34.089511+00 f t ADELANTO 11000.00 5 10940 \N +434397 2025-10-30 03:00:21.477928+00 2025-10-30 03:00:21.477939+00 f t SUBTOTAL 135000.00 1 10941 \N +434398 2025-10-30 03:00:21.480095+00 2025-10-30 03:00:21.480106+00 f t COSTO_SERVICIO 0.00 2 10941 \N +434399 2025-10-30 03:00:21.481981+00 2025-10-30 03:00:21.481992+00 f t DESCUENTO 0.00 3 10941 \N +434400 2025-10-30 03:00:21.483705+00 2025-10-30 03:00:21.483714+00 f t TOTAL 135000.00 4 10941 \N +434401 2025-10-30 03:00:21.486243+00 2025-10-30 03:00:21.486252+00 f t ADELANTO 23000.00 5 10941 \N +434417 2025-10-30 03:08:32.013601+00 2025-10-30 03:08:32.013613+00 f t SUBTOTAL 0.00 1 10942 \N +434418 2025-10-30 03:08:32.015754+00 2025-10-30 03:08:32.015763+00 f t COSTO_SERVICIO 0.00 2 10942 \N +434419 2025-10-30 03:08:32.017016+00 2025-10-30 03:08:32.017024+00 f t DESCUENTO 0.00 3 10942 \N +434420 2025-10-30 03:08:32.018135+00 2025-10-30 03:08:32.018142+00 f t TOTAL 0.00 4 10942 \N +434421 2025-10-30 03:08:32.019149+00 2025-10-30 03:08:32.019156+00 f t ADELANTO 0.00 5 10942 \N +434452 2025-10-30 03:10:44.517006+00 2025-10-30 03:10:44.517014+00 f t SUBTOTAL 46000.00 1 10943 \N +434453 2025-10-30 03:10:44.518702+00 2025-10-30 03:10:44.518709+00 f t COSTO_SERVICIO 0.00 2 10943 \N +434454 2025-10-30 03:10:44.519842+00 2025-10-30 03:10:44.519848+00 f t DESCUENTO 0.00 3 10943 \N +434455 2025-10-30 03:10:44.521079+00 2025-10-30 03:10:44.521084+00 f t TOTAL 46000.00 4 10943 \N +434456 2025-10-30 03:10:44.522087+00 2025-10-30 03:10:44.522092+00 f t ADELANTO 11000.00 5 10943 \N +535752 2025-11-23 18:50:46.56203+00 2025-11-23 18:50:46.562038+00 f t SUBTOTAL 55000.00 1 13308 \N +535753 2025-11-23 18:50:46.563688+00 2025-11-23 18:50:46.563695+00 f t COSTO_SERVICIO 0.00 2 13308 \N +535754 2025-11-23 18:50:46.565019+00 2025-11-23 18:50:46.565027+00 f t DESCUENTO 0.00 3 13308 \N +434487 2025-10-30 03:16:53.596525+00 2025-10-30 03:16:53.596541+00 f t SUBTOTAL 0.00 1 10945 \N +434488 2025-10-30 03:16:53.597875+00 2025-10-30 03:16:53.597881+00 f t COSTO_SERVICIO 0.00 2 10945 \N +434489 2025-10-30 03:16:53.598841+00 2025-10-30 03:16:53.598846+00 f t DESCUENTO 0.00 3 10945 \N +434490 2025-10-30 03:16:53.599735+00 2025-10-30 03:16:53.599739+00 f t TOTAL 0.00 4 10945 \N +434491 2025-10-30 03:16:53.600576+00 2025-10-30 03:16:53.600581+00 f t ADELANTO 0.00 5 10945 \N +447087 2025-11-02 17:51:11.89764+00 2025-11-02 17:51:11.897648+00 f t SUBTOTAL 55000.00 1 11248 \N +447088 2025-11-02 17:51:11.898629+00 2025-11-02 17:51:11.898636+00 f t COSTO_SERVICIO 0.00 2 11248 \N +447089 2025-11-02 17:51:11.899324+00 2025-11-02 17:51:11.899329+00 f t DESCUENTO 0.00 3 11248 \N +447090 2025-11-02 17:51:11.899928+00 2025-11-02 17:51:11.899934+00 f t TOTAL 55000.00 4 11248 \N +447091 2025-11-02 17:51:11.900486+00 2025-11-02 17:51:11.900491+00 f t ADELANTO 11000.00 5 11248 \N +434497 2025-10-30 03:17:10.995652+00 2025-10-30 03:17:10.995659+00 f t SUBTOTAL 46000.00 1 10944 \N +434498 2025-10-30 03:17:10.99707+00 2025-10-30 03:17:10.997076+00 f t COSTO_SERVICIO 0.00 2 10944 \N +434499 2025-10-30 03:17:10.998131+00 2025-10-30 03:17:10.998137+00 f t DESCUENTO 0.00 3 10944 \N +434500 2025-10-30 03:17:10.999173+00 2025-10-30 03:17:10.999178+00 f t TOTAL 46000.00 4 10944 \N +434501 2025-10-30 03:17:11.000156+00 2025-10-30 03:17:11.000161+00 f t ADELANTO 11000.00 5 10944 \N +437102 2025-10-30 19:20:50.080811+00 2025-10-30 19:20:50.080818+00 f t SUBTOTAL 78000.00 1 10997 \N +437103 2025-10-30 19:20:50.082429+00 2025-10-30 19:20:50.082435+00 f t COSTO_SERVICIO 0.00 2 10997 \N +437104 2025-10-30 19:20:50.083571+00 2025-10-30 19:20:50.083577+00 f t DESCUENTO 0.00 3 10997 \N +437105 2025-10-30 19:20:50.08457+00 2025-10-30 19:20:50.084575+00 f t TOTAL 78000.00 4 10997 \N +437106 2025-10-30 19:20:50.085433+00 2025-10-30 19:20:50.08544+00 f t ADELANTO 21500.00 5 10997 \N +434507 2025-10-30 03:20:34.702057+00 2025-10-30 03:20:34.702067+00 f t SUBTOTAL 0.00 1 10946 \N +434508 2025-10-30 03:20:34.703272+00 2025-10-30 03:20:34.703279+00 f t COSTO_SERVICIO 0.00 2 10946 \N +434509 2025-10-30 03:20:34.704305+00 2025-10-30 03:20:34.704311+00 f t DESCUENTO 0.00 3 10946 \N +434510 2025-10-30 03:20:34.705527+00 2025-10-30 03:20:34.705532+00 f t TOTAL 0.00 4 10946 \N +434511 2025-10-30 03:20:34.706619+00 2025-10-30 03:20:34.706624+00 f t ADELANTO 0.00 5 10946 \N +434517 2025-10-30 03:31:33.10194+00 2025-10-30 03:31:33.101953+00 f t SUBTOTAL 0.00 1 10947 \N +434518 2025-10-30 03:31:33.103386+00 2025-10-30 03:31:33.103394+00 f t COSTO_SERVICIO 0.00 2 10947 \N +434519 2025-10-30 03:31:33.104656+00 2025-10-30 03:31:33.104664+00 f t DESCUENTO 0.00 3 10947 \N +434520 2025-10-30 03:31:33.105719+00 2025-10-30 03:31:33.105728+00 f t TOTAL 0.00 4 10947 \N +434521 2025-10-30 03:31:33.106878+00 2025-10-30 03:31:33.106886+00 f t ADELANTO 0.00 5 10947 \N +437927 2025-10-30 21:57:35.376684+00 2025-10-30 21:57:35.376694+00 f t SUBTOTAL 0.00 1 11014 \N +437928 2025-10-30 21:57:35.37847+00 2025-10-30 21:57:35.378476+00 f t COSTO_SERVICIO 0.00 2 11014 \N +437929 2025-10-30 21:57:35.37949+00 2025-10-30 21:57:35.379495+00 f t DESCUENTO 0.00 3 11014 \N +437930 2025-10-30 21:57:35.380602+00 2025-10-30 21:57:35.380609+00 f t TOTAL 0.00 4 11014 \N +437931 2025-10-30 21:57:35.381727+00 2025-10-30 21:57:35.381732+00 f t ADELANTO 0.00 5 11014 \N +434552 2025-10-30 03:45:28.111219+00 2025-10-30 03:45:28.111232+00 f t SUBTOTAL 55000.00 1 10948 \N +434553 2025-10-30 03:45:28.113383+00 2025-10-30 03:45:28.113395+00 f t COSTO_SERVICIO 0.00 2 10948 \N +434554 2025-10-30 03:45:28.115285+00 2025-10-30 03:45:28.115296+00 f t DESCUENTO 0.00 3 10948 \N +434555 2025-10-30 03:45:28.116933+00 2025-10-30 03:45:28.116943+00 f t TOTAL 55000.00 4 10948 \N +434556 2025-10-30 03:45:28.118667+00 2025-10-30 03:45:28.118676+00 f t ADELANTO 11000.00 5 10948 \N +438082 2025-10-30 23:29:03.449597+00 2025-10-30 23:29:03.449608+00 f t SUBTOTAL 0.00 1 11019 \N +438083 2025-10-30 23:29:03.451215+00 2025-10-30 23:29:03.451226+00 f t COSTO_SERVICIO 0.00 2 11019 \N +438084 2025-10-30 23:29:03.452801+00 2025-10-30 23:29:03.452807+00 f t DESCUENTO 0.00 3 11019 \N +438085 2025-10-30 23:29:03.453843+00 2025-10-30 23:29:03.453851+00 f t TOTAL 0.00 4 11019 \N +438086 2025-10-30 23:29:03.454836+00 2025-10-30 23:29:03.454841+00 f t ADELANTO 0.00 5 11019 \N +449377 2025-11-03 17:00:12.755008+00 2025-11-03 17:00:12.75502+00 f t SUBTOTAL 55000.00 1 11298 \N +449378 2025-11-03 17:00:12.758304+00 2025-11-03 17:00:12.758317+00 f t COSTO_SERVICIO 0.00 2 11298 \N +449379 2025-11-03 17:00:12.760637+00 2025-11-03 17:00:12.76065+00 f t DESCUENTO 0.00 3 11298 \N +449380 2025-11-03 17:00:12.763611+00 2025-11-03 17:00:12.763624+00 f t TOTAL 55000.00 4 11298 \N +449381 2025-11-03 17:00:12.766329+00 2025-11-03 17:00:12.766341+00 f t ADELANTO 11000.00 5 11298 \N +449762 2025-11-03 18:06:20.497202+00 2025-11-03 18:06:20.49721+00 f t SUBTOTAL 88000.00 1 11307 \N +449763 2025-11-03 18:06:20.498952+00 2025-11-03 18:06:20.498962+00 f t COSTO_SERVICIO 0.00 2 11307 \N +449764 2025-11-03 18:06:20.500365+00 2025-11-03 18:06:20.500372+00 f t DESCUENTO 0.00 3 11307 \N +449765 2025-11-03 18:06:20.501692+00 2025-11-03 18:06:20.501698+00 f t TOTAL 88000.00 4 11307 \N +449766 2025-11-03 18:06:20.503032+00 2025-11-03 18:06:20.503037+00 f t ADELANTO 13000.00 5 11307 \N +450161 2025-11-03 20:07:14.529687+00 2025-11-03 20:07:14.529693+00 f t ADELANTO 0.00 5 11322 \N +434672 2025-10-30 04:00:58.807738+00 2025-10-30 04:00:58.80775+00 f t SUBTOTAL 246000.00 1 10949 \N +434673 2025-10-30 04:00:58.809777+00 2025-10-30 04:00:58.809786+00 f t COSTO_SERVICIO 0.00 2 10949 \N +434674 2025-10-30 04:00:58.811058+00 2025-10-30 04:00:58.811065+00 f t DESCUENTO 9200.00 3 10949 \N +434675 2025-10-30 04:00:58.812379+00 2025-10-30 04:00:58.812386+00 f t TOTAL 236800.00 4 10949 \N +434676 2025-10-30 04:00:58.813613+00 2025-10-30 04:00:58.813622+00 f t ADELANTO 64000.00 5 10949 \N +450852 2025-11-03 23:57:51.860081+00 2025-11-03 23:57:51.860092+00 f t SUBTOTAL 47000.00 1 11334 \N +450853 2025-11-03 23:57:51.862198+00 2025-11-03 23:57:51.862208+00 f t COSTO_SERVICIO 0.00 2 11334 \N +450854 2025-11-03 23:57:51.863722+00 2025-11-03 23:57:51.863728+00 f t DESCUENTO 0.00 3 11334 \N +450855 2025-11-03 23:57:51.864849+00 2025-11-03 23:57:51.864855+00 f t TOTAL 47000.00 4 11334 \N +450856 2025-11-03 23:57:51.865843+00 2025-11-03 23:57:51.865848+00 f t ADELANTO 12000.00 5 11334 \N +440637 2025-10-31 15:41:15.249327+00 2025-10-31 15:41:15.249338+00 f t SUBTOTAL 0.00 1 11084 \N +440638 2025-10-31 15:41:15.250757+00 2025-10-31 15:41:15.250764+00 f t COSTO_SERVICIO 0.00 2 11084 \N +440639 2025-10-31 15:41:15.251806+00 2025-10-31 15:41:15.251811+00 f t DESCUENTO 0.00 3 11084 \N +440640 2025-10-31 15:41:15.25265+00 2025-10-31 15:41:15.252655+00 f t TOTAL 0.00 4 11084 \N +440641 2025-10-31 15:41:15.253426+00 2025-10-31 15:41:15.253431+00 f t ADELANTO 0.00 5 11084 \N +451227 2025-11-04 01:35:08.76245+00 2025-11-04 01:35:08.762457+00 f t SUBTOTAL 78000.00 1 11342 \N +451228 2025-11-04 01:35:08.76447+00 2025-11-04 01:35:08.764477+00 f t COSTO_SERVICIO 0.00 2 11342 \N +451229 2025-11-04 01:35:08.765738+00 2025-11-04 01:35:08.765745+00 f t DESCUENTO 0.00 3 11342 \N +451230 2025-11-04 01:35:08.767162+00 2025-11-04 01:35:08.767168+00 f t TOTAL 78000.00 4 11342 \N +451231 2025-11-04 01:35:08.768477+00 2025-11-04 01:35:08.768482+00 f t ADELANTO 13000.00 5 11342 \N +441202 2025-10-31 18:13:18.617697+00 2025-10-31 18:13:18.617706+00 f t SUBTOTAL 156000.00 1 11088 \N +435827 2025-10-30 14:37:26.737857+00 2025-10-30 14:37:26.737864+00 f t SUBTOTAL 70000.00 1 10975 \N +435828 2025-10-30 14:37:26.73952+00 2025-10-30 14:37:26.739526+00 f t COSTO_SERVICIO 0.00 2 10975 \N +435829 2025-10-30 14:37:26.740789+00 2025-10-30 14:37:26.740799+00 f t DESCUENTO 0.00 3 10975 \N +435830 2025-10-30 14:37:26.742311+00 2025-10-30 14:37:26.74232+00 f t TOTAL 70000.00 4 10975 \N +435831 2025-10-30 14:37:26.743578+00 2025-10-30 14:37:26.743586+00 f t ADELANTO 19000.00 5 10975 \N +535755 2025-11-23 18:50:46.566044+00 2025-11-23 18:50:46.566052+00 f t TOTAL 55000.00 4 13308 \N +535756 2025-11-23 18:50:46.567121+00 2025-11-23 18:50:46.567128+00 f t ADELANTO 11000.00 5 13308 \N +548636 2025-11-25 21:20:11.328123+00 2025-11-25 21:20:11.328132+00 f t ADELANTO 13200.00 5 13603 \N +436907 2025-10-30 17:45:17.96343+00 2025-10-30 17:45:17.963438+00 f t SUBTOTAL 30000.00 1 10994 \N +436908 2025-10-30 17:45:17.965288+00 2025-10-30 17:45:17.965295+00 f t COSTO_SERVICIO 0.00 2 10994 \N +436909 2025-10-30 17:45:17.966412+00 2025-10-30 17:45:17.966417+00 f t DESCUENTO 0.00 3 10994 \N +436910 2025-10-30 17:45:17.96739+00 2025-10-30 17:45:17.967394+00 f t TOTAL 30000.00 4 10994 \N +436911 2025-10-30 17:45:17.968472+00 2025-10-30 17:45:17.968477+00 f t ADELANTO 30000.00 5 10994 \N +447097 2025-11-02 18:03:55.545824+00 2025-11-02 18:03:55.545833+00 f t SUBTOTAL 0.00 1 11249 \N +447098 2025-11-02 18:03:55.547166+00 2025-11-02 18:03:55.547173+00 f t COSTO_SERVICIO 0.00 2 11249 \N +447099 2025-11-02 18:03:55.548135+00 2025-11-02 18:03:55.548142+00 f t DESCUENTO 0.00 3 11249 \N +447100 2025-11-02 18:03:55.549146+00 2025-11-02 18:03:55.549152+00 f t TOTAL 0.00 4 11249 \N +447101 2025-11-02 18:03:55.549991+00 2025-11-02 18:03:55.549999+00 f t ADELANTO 0.00 5 11249 \N +434817 2025-10-30 04:13:01.088694+00 2025-10-30 04:13:01.088702+00 f t SUBTOTAL 46000.00 1 10950 \N +434818 2025-10-30 04:13:01.090151+00 2025-10-30 04:13:01.090157+00 f t COSTO_SERVICIO 0.00 2 10950 \N +434819 2025-10-30 04:13:01.09155+00 2025-10-30 04:13:01.091556+00 f t DESCUENTO 0.00 3 10950 \N +434820 2025-10-30 04:13:01.092616+00 2025-10-30 04:13:01.092621+00 f t TOTAL 46000.00 4 10950 \N +434821 2025-10-30 04:13:01.093554+00 2025-10-30 04:13:01.093559+00 f t ADELANTO 11000.00 5 10950 \N +438262 2025-10-30 23:54:13.747768+00 2025-10-30 23:54:13.747775+00 f t SUBTOTAL 78000.00 1 11028 \N +438263 2025-10-30 23:54:13.749297+00 2025-10-30 23:54:13.749306+00 f t COSTO_SERVICIO 0.00 2 11028 \N +438264 2025-10-30 23:54:13.750431+00 2025-10-30 23:54:13.750436+00 f t DESCUENTO 0.00 3 11028 \N +438265 2025-10-30 23:54:13.751453+00 2025-10-30 23:54:13.751459+00 f t TOTAL 78000.00 4 11028 \N +438266 2025-10-30 23:54:13.752694+00 2025-10-30 23:54:13.752699+00 f t ADELANTO 13000.00 5 11028 \N +448412 2025-11-03 14:36:14.73623+00 2025-11-03 14:36:14.73624+00 f t SUBTOTAL 70000.00 1 11278 \N +448413 2025-11-03 14:36:14.737847+00 2025-11-03 14:36:14.737852+00 f t COSTO_SERVICIO 0.00 2 11278 \N +448414 2025-11-03 14:36:14.738915+00 2025-11-03 14:36:14.73892+00 f t DESCUENTO 0.00 3 11278 \N +448415 2025-11-03 14:36:14.739815+00 2025-11-03 14:36:14.739822+00 f t TOTAL 70000.00 4 11278 \N +434847 2025-10-30 06:05:12.234963+00 2025-10-30 06:05:12.23497+00 f t SUBTOTAL 32500.00 1 10951 \N +434848 2025-10-30 06:05:12.236584+00 2025-10-30 06:05:12.236592+00 f t COSTO_SERVICIO 0.00 2 10951 \N +434849 2025-10-30 06:05:12.237874+00 2025-10-30 06:05:12.23788+00 f t DESCUENTO 0.00 3 10951 \N +434850 2025-10-30 06:05:12.239224+00 2025-10-30 06:05:12.239229+00 f t TOTAL 32500.00 4 10951 \N +434851 2025-10-30 06:05:12.240353+00 2025-10-30 06:05:12.24036+00 f t ADELANTO 32500.00 5 10951 \N +448416 2025-11-03 14:36:14.740682+00 2025-11-03 14:36:14.740687+00 f t ADELANTO 19000.00 5 11278 \N +439267 2025-10-31 03:32:24.977797+00 2025-10-31 03:32:24.977805+00 f t SUBTOTAL 46000.00 1 11047 \N +439268 2025-10-31 03:32:24.979597+00 2025-10-31 03:32:24.979603+00 f t COSTO_SERVICIO 0.00 2 11047 \N +439269 2025-10-31 03:32:24.980769+00 2025-10-31 03:32:24.980775+00 f t DESCUENTO 0.00 3 11047 \N +439270 2025-10-31 03:32:24.981919+00 2025-10-31 03:32:24.981926+00 f t TOTAL 46000.00 4 11047 \N +439271 2025-10-31 03:32:24.982941+00 2025-10-31 03:32:24.982946+00 f t ADELANTO 11000.00 5 11047 \N +434902 2025-10-30 06:24:27.665048+00 2025-10-30 06:24:27.665057+00 f t SUBTOTAL 75000.00 1 10952 \N +434903 2025-10-30 06:24:27.666775+00 2025-10-30 06:24:27.666782+00 f t COSTO_SERVICIO 0.00 2 10952 \N +434904 2025-10-30 06:24:27.668111+00 2025-10-30 06:24:27.668117+00 f t DESCUENTO 0.00 3 10952 \N +434905 2025-10-30 06:24:27.669174+00 2025-10-30 06:24:27.669179+00 f t TOTAL 75000.00 4 10952 \N +434906 2025-10-30 06:24:27.670337+00 2025-10-30 06:24:27.670342+00 f t ADELANTO 15000.00 5 10952 \N +434962 2025-10-30 08:30:02.284457+00 2025-10-30 08:30:02.284472+00 f t SUBTOTAL 55000.00 1 10953 \N +434963 2025-10-30 08:30:02.303621+00 2025-10-30 08:30:02.303636+00 f t COSTO_SERVICIO 0.00 2 10953 \N +434964 2025-10-30 08:30:02.306503+00 2025-10-30 08:30:02.306519+00 f t DESCUENTO 0.00 3 10953 \N +434965 2025-10-30 08:30:02.309495+00 2025-10-30 08:30:02.309509+00 f t TOTAL 55000.00 4 10953 \N +434966 2025-10-30 08:30:02.322678+00 2025-10-30 08:30:02.322692+00 f t ADELANTO 11000.00 5 10953 \N +434972 2025-10-30 09:16:32.814862+00 2025-10-30 09:16:32.814872+00 f t SUBTOTAL 0.00 1 10954 \N +434973 2025-10-30 09:16:32.817288+00 2025-10-30 09:16:32.8173+00 f t COSTO_SERVICIO 0.00 2 10954 \N +434974 2025-10-30 09:16:32.819734+00 2025-10-30 09:16:32.819742+00 f t DESCUENTO 0.00 3 10954 \N +434975 2025-10-30 09:16:32.820872+00 2025-10-30 09:16:32.820879+00 f t TOTAL 0.00 4 10954 \N +434976 2025-10-30 09:16:32.821848+00 2025-10-30 09:16:32.821854+00 f t ADELANTO 0.00 5 10954 \N +440807 2025-10-31 17:04:11.318156+00 2025-10-31 17:04:11.318166+00 f t SUBTOTAL 80000.00 1 11089 \N +440808 2025-10-31 17:04:11.320218+00 2025-10-31 17:04:11.320227+00 f t COSTO_SERVICIO 0.00 2 11089 \N +440809 2025-10-31 17:04:11.321926+00 2025-10-31 17:04:11.321933+00 f t DESCUENTO 0.00 3 11089 \N +440810 2025-10-31 17:04:11.323372+00 2025-10-31 17:04:11.323378+00 f t TOTAL 80000.00 4 11089 \N +440811 2025-10-31 17:04:11.324587+00 2025-10-31 17:04:11.324592+00 f t ADELANTO 12000.00 5 11089 \N +434992 2025-10-30 09:27:51.633888+00 2025-10-30 09:27:51.633897+00 f t SUBTOTAL 0.00 1 10955 \N +434993 2025-10-30 09:27:51.635232+00 2025-10-30 09:27:51.635238+00 f t COSTO_SERVICIO 0.00 2 10955 \N +434994 2025-10-30 09:27:51.636426+00 2025-10-30 09:27:51.63644+00 f t DESCUENTO 0.00 3 10955 \N +434995 2025-10-30 09:27:51.637599+00 2025-10-30 09:27:51.637603+00 f t TOTAL 0.00 4 10955 \N +434996 2025-10-30 09:27:51.638447+00 2025-10-30 09:27:51.638452+00 f t ADELANTO 0.00 5 10955 \N +435002 2025-10-30 10:03:27.464066+00 2025-10-30 10:03:27.464075+00 f t SUBTOTAL 0.00 1 10956 \N +435003 2025-10-30 10:03:27.465271+00 2025-10-30 10:03:27.465277+00 f t COSTO_SERVICIO 0.00 2 10956 \N +435004 2025-10-30 10:03:27.466204+00 2025-10-30 10:03:27.466209+00 f t DESCUENTO 0.00 3 10956 \N +435005 2025-10-30 10:03:27.467224+00 2025-10-30 10:03:27.467229+00 f t TOTAL 0.00 4 10956 \N +435006 2025-10-30 10:03:27.468108+00 2025-10-30 10:03:27.468113+00 f t ADELANTO 0.00 5 10956 \N +441203 2025-10-31 18:13:18.619427+00 2025-10-31 18:13:18.619435+00 f t COSTO_SERVICIO 0.00 2 11088 \N +441204 2025-10-31 18:13:18.620884+00 2025-10-31 18:13:18.620892+00 f t DESCUENTO 9200.00 3 11088 \N +441205 2025-10-31 18:13:18.622208+00 2025-10-31 18:13:18.622215+00 f t TOTAL 146800.00 4 11088 \N +441206 2025-10-31 18:13:18.623391+00 2025-10-31 18:13:18.623398+00 f t ADELANTO 43000.00 5 11088 \N +441245 2025-10-31 18:52:23.322983+00 2025-10-31 18:52:23.322987+00 f t TOTAL 46000.00 4 11101 \N +441246 2025-10-31 18:52:23.32408+00 2025-10-31 18:52:23.324087+00 f t ADELANTO 11000.00 5 11101 \N +456127 2025-11-05 12:17:52.845552+00 2025-11-05 12:17:52.845565+00 f t SUBTOTAL 0.00 1 11453 \N +456128 2025-11-05 12:17:52.847534+00 2025-11-05 12:17:52.847544+00 f t COSTO_SERVICIO 0.00 2 11453 \N +456129 2025-11-05 12:17:52.849202+00 2025-11-05 12:17:52.849209+00 f t DESCUENTO 0.00 3 11453 \N +456130 2025-11-05 12:17:52.850957+00 2025-11-05 12:17:52.850964+00 f t TOTAL 0.00 4 11453 \N +456131 2025-11-05 12:17:52.852205+00 2025-11-05 12:17:52.852212+00 f t ADELANTO 0.00 5 11453 \N +466912 2025-11-07 23:09:16.283818+00 2025-11-07 23:09:16.28383+00 f t SUBTOTAL 0.00 1 11709 \N +466913 2025-11-07 23:09:16.285496+00 2025-11-07 23:09:16.285502+00 f t COSTO_SERVICIO 0.00 2 11709 \N +446327 2025-11-01 21:38:55.092617+00 2025-11-01 21:38:55.092625+00 f t SUBTOTAL 55000.00 1 11229 \N +446328 2025-11-01 21:38:55.094124+00 2025-11-01 21:38:55.094131+00 f t COSTO_SERVICIO 0.00 2 11229 \N +446329 2025-11-01 21:38:55.09534+00 2025-11-01 21:38:55.095346+00 f t DESCUENTO 0.00 3 11229 \N +446330 2025-11-01 21:38:55.096434+00 2025-11-01 21:38:55.09644+00 f t TOTAL 55000.00 4 11229 \N +446331 2025-11-01 21:38:55.097342+00 2025-11-01 21:38:55.097348+00 f t ADELANTO 11000.00 5 11229 \N +435077 2025-10-30 10:55:37.357457+00 2025-10-30 10:55:37.357466+00 f t SUBTOTAL 46000.00 1 10957 \N +435078 2025-10-30 10:55:37.358911+00 2025-10-30 10:55:37.358917+00 f t COSTO_SERVICIO 0.00 2 10957 \N +435079 2025-10-30 10:55:37.360035+00 2025-10-30 10:55:37.36004+00 f t DESCUENTO 0.00 3 10957 \N +435080 2025-10-30 10:55:37.361139+00 2025-10-30 10:55:37.361147+00 f t TOTAL 46000.00 4 10957 \N +435081 2025-10-30 10:55:37.36227+00 2025-10-30 10:55:37.362276+00 f t ADELANTO 11000.00 5 10957 \N +438097 2025-10-30 23:31:29.939121+00 2025-10-30 23:31:29.939165+00 f t SUBTOTAL 66000.00 1 11020 \N +438098 2025-10-30 23:31:29.941101+00 2025-10-30 23:31:29.94111+00 f t COSTO_SERVICIO 0.00 2 11020 \N +438099 2025-10-30 23:31:29.942808+00 2025-10-30 23:31:29.942816+00 f t DESCUENTO 0.00 3 11020 \N +438100 2025-10-30 23:31:29.944123+00 2025-10-30 23:31:29.944131+00 f t TOTAL 66000.00 4 11020 \N +438101 2025-10-30 23:31:29.945402+00 2025-10-30 23:31:29.94541+00 f t ADELANTO 11000.00 5 11020 \N +435127 2025-10-30 11:58:06.505521+00 2025-10-30 11:58:06.505531+00 f t SUBTOTAL 70000.00 1 10958 \N +435128 2025-10-30 11:58:06.507507+00 2025-10-30 11:58:06.507516+00 f t COSTO_SERVICIO 0.00 2 10958 \N +435129 2025-10-30 11:58:06.509039+00 2025-10-30 11:58:06.50905+00 f t DESCUENTO 0.00 3 10958 \N +435130 2025-10-30 11:58:06.510397+00 2025-10-30 11:58:06.510404+00 f t TOTAL 70000.00 4 10958 \N +435131 2025-10-30 11:58:06.512148+00 2025-10-30 11:58:06.51216+00 f t ADELANTO 19000.00 5 10958 \N +458777 2025-11-06 02:12:06.462746+00 2025-11-06 02:12:06.462759+00 f t SUBTOTAL 0.00 1 11516 \N +458778 2025-11-06 02:12:06.466545+00 2025-11-06 02:12:06.466557+00 f t COSTO_SERVICIO 0.00 2 11516 \N +458779 2025-11-06 02:12:06.468288+00 2025-11-06 02:12:06.468298+00 f t DESCUENTO 0.00 3 11516 \N +458780 2025-11-06 02:12:06.469728+00 2025-11-06 02:12:06.469737+00 f t TOTAL 0.00 4 11516 \N +458781 2025-11-06 02:12:06.47103+00 2025-11-06 02:12:06.471037+00 f t ADELANTO 0.00 5 11516 \N +439277 2025-10-31 04:12:15.619659+00 2025-10-31 04:12:15.619668+00 f t SUBTOTAL 0.00 1 11048 \N +439278 2025-10-31 04:12:15.621032+00 2025-10-31 04:12:15.621039+00 f t COSTO_SERVICIO 0.00 2 11048 \N +439279 2025-10-31 04:12:15.622145+00 2025-10-31 04:12:15.62215+00 f t DESCUENTO 0.00 3 11048 \N +439280 2025-10-31 04:12:15.623248+00 2025-10-31 04:12:15.623253+00 f t TOTAL 0.00 4 11048 \N +439281 2025-10-31 04:12:15.624108+00 2025-10-31 04:12:15.624112+00 f t ADELANTO 0.00 5 11048 \N +460607 2025-11-06 12:45:32.859496+00 2025-11-06 12:45:32.859503+00 f t SUBTOTAL 121000.00 1 11543 \N +460608 2025-11-06 12:45:32.861471+00 2025-11-06 12:45:32.86148+00 f t COSTO_SERVICIO 0.00 2 11543 \N +460609 2025-11-06 12:45:32.862679+00 2025-11-06 12:45:32.862685+00 f t DESCUENTO 0.00 3 11543 \N +460610 2025-11-06 12:45:32.863989+00 2025-11-06 12:45:32.864+00 f t TOTAL 121000.00 4 11543 \N +460611 2025-11-06 12:45:32.86494+00 2025-11-06 12:45:32.864945+00 f t ADELANTO 26000.00 5 11543 \N +440287 2025-10-31 14:21:11.190829+00 2025-10-31 14:21:11.190835+00 f t SUBTOTAL 129000.00 1 11069 \N +440288 2025-10-31 14:21:11.192378+00 2025-10-31 14:21:11.192385+00 f t COSTO_SERVICIO 0.00 2 11069 \N +440289 2025-10-31 14:21:11.193419+00 2025-10-31 14:21:11.193425+00 f t DESCUENTO 9200.00 3 11069 \N +440290 2025-10-31 14:21:11.194596+00 2025-10-31 14:21:11.194602+00 f t TOTAL 119800.00 4 11069 \N +440291 2025-10-31 14:21:11.195868+00 2025-10-31 14:21:11.195874+00 f t ADELANTO 30000.00 5 11069 \N +460892 2025-11-06 13:37:05.477236+00 2025-11-06 13:37:05.477244+00 f t SUBTOTAL 70000.00 1 11552 \N +460893 2025-11-06 13:37:05.479052+00 2025-11-06 13:37:05.479057+00 f t COSTO_SERVICIO 0.00 2 11552 \N +460894 2025-11-06 13:37:05.480129+00 2025-11-06 13:37:05.480134+00 f t DESCUENTO 0.00 3 11552 \N +460895 2025-11-06 13:37:05.481022+00 2025-11-06 13:37:05.481029+00 f t TOTAL 70000.00 4 11552 \N +460896 2025-11-06 13:37:05.4819+00 2025-11-06 13:37:05.481906+00 f t ADELANTO 19000.00 5 11552 \N +435257 2025-10-30 12:31:17.661115+00 2025-10-30 12:31:17.661122+00 f t SUBTOTAL 80000.00 1 10960 \N +435258 2025-10-30 12:31:17.662798+00 2025-10-30 12:31:17.662805+00 f t COSTO_SERVICIO 0.00 2 10960 \N +435259 2025-10-30 12:31:17.664063+00 2025-10-30 12:31:17.664068+00 f t DESCUENTO 0.00 3 10960 \N +435260 2025-10-30 12:31:17.665238+00 2025-10-30 12:31:17.665243+00 f t TOTAL 80000.00 4 10960 \N +435261 2025-10-30 12:31:17.666345+00 2025-10-30 12:31:17.666351+00 f t ADELANTO 12000.00 5 10960 \N +435267 2025-10-30 12:35:57.540245+00 2025-10-30 12:35:57.540254+00 f t SUBTOTAL 0.00 1 10961 \N +435268 2025-10-30 12:35:57.541641+00 2025-10-30 12:35:57.541647+00 f t COSTO_SERVICIO 0.00 2 10961 \N +435269 2025-10-30 12:35:57.542648+00 2025-10-30 12:35:57.542652+00 f t DESCUENTO 0.00 3 10961 \N +435270 2025-10-30 12:35:57.543748+00 2025-10-30 12:35:57.543753+00 f t TOTAL 0.00 4 10961 \N +435271 2025-10-30 12:35:57.544929+00 2025-10-30 12:35:57.544937+00 f t ADELANTO 0.00 5 10961 \N +441027 2025-10-31 17:12:40.455435+00 2025-10-31 17:12:40.455442+00 f t SUBTOTAL 80000.00 1 11094 \N +441028 2025-10-31 17:12:40.457002+00 2025-10-31 17:12:40.457009+00 f t COSTO_SERVICIO 0.00 2 11094 \N +441029 2025-10-31 17:12:40.458274+00 2025-10-31 17:12:40.458281+00 f t DESCUENTO 0.00 3 11094 \N +441030 2025-10-31 17:12:40.45945+00 2025-10-31 17:12:40.459456+00 f t TOTAL 80000.00 4 11094 \N +441031 2025-10-31 17:12:40.46053+00 2025-10-31 17:12:40.460535+00 f t ADELANTO 12000.00 5 11094 \N +441112 2025-10-31 17:26:40.598864+00 2025-10-31 17:26:40.598876+00 f t SUBTOTAL 80000.00 1 11098 \N +441113 2025-10-31 17:26:40.600983+00 2025-10-31 17:26:40.600992+00 f t COSTO_SERVICIO 0.00 2 11098 \N +441114 2025-10-31 17:26:40.602356+00 2025-10-31 17:26:40.602365+00 f t DESCUENTO 0.00 3 11098 \N +441115 2025-10-31 17:26:40.603572+00 2025-10-31 17:26:40.603581+00 f t TOTAL 80000.00 4 11098 \N +441116 2025-10-31 17:26:40.604701+00 2025-10-31 17:26:40.604709+00 f t ADELANTO 12000.00 5 11098 \N +441212 2025-10-31 18:15:50.522873+00 2025-10-31 18:15:50.522882+00 f t SUBTOTAL 0.00 1 11100 \N +441213 2025-10-31 18:15:50.524229+00 2025-10-31 18:15:50.524236+00 f t COSTO_SERVICIO 0.00 2 11100 \N +441214 2025-10-31 18:15:50.525259+00 2025-10-31 18:15:50.525266+00 f t DESCUENTO 0.00 3 11100 \N +441215 2025-10-31 18:15:50.526352+00 2025-10-31 18:15:50.526358+00 f t TOTAL 0.00 4 11100 \N +441216 2025-10-31 18:15:50.527635+00 2025-10-31 18:15:50.527641+00 f t ADELANTO 0.00 5 11100 \N +435327 2025-10-30 12:40:41.134905+00 2025-10-30 12:40:41.134914+00 f t SUBTOTAL 80000.00 1 10962 \N +435328 2025-10-30 12:40:41.136932+00 2025-10-30 12:40:41.13694+00 f t COSTO_SERVICIO 0.00 2 10962 \N +435329 2025-10-30 12:40:41.138222+00 2025-10-30 12:40:41.138229+00 f t DESCUENTO 0.00 3 10962 \N +435330 2025-10-30 12:40:41.139629+00 2025-10-30 12:40:41.139637+00 f t TOTAL 80000.00 4 10962 \N +435331 2025-10-30 12:40:41.140813+00 2025-10-30 12:40:41.140819+00 f t ADELANTO 12000.00 5 10962 \N +435842 2025-10-30 14:40:00.455069+00 2025-10-30 14:40:00.455076+00 f t SUBTOTAL 55000.00 1 10976 \N +435843 2025-10-30 14:40:00.456986+00 2025-10-30 14:40:00.456992+00 f t COSTO_SERVICIO 0.00 2 10976 \N +435844 2025-10-30 14:40:00.458194+00 2025-10-30 14:40:00.4582+00 f t DESCUENTO 0.00 3 10976 \N +435845 2025-10-30 14:40:00.459264+00 2025-10-30 14:40:00.459269+00 f t TOTAL 55000.00 4 10976 \N +435846 2025-10-30 14:40:00.460256+00 2025-10-30 14:40:00.460261+00 f t ADELANTO 11000.00 5 10976 \N +435337 2025-10-30 12:49:43.137585+00 2025-10-30 12:49:43.137594+00 f t SUBTOTAL 0.00 1 10963 \N +435338 2025-10-30 12:49:43.138872+00 2025-10-30 12:49:43.138878+00 f t COSTO_SERVICIO 0.00 2 10963 \N +435339 2025-10-30 12:49:43.139838+00 2025-10-30 12:49:43.139843+00 f t DESCUENTO 0.00 3 10963 \N +435340 2025-10-30 12:49:43.1408+00 2025-10-30 12:49:43.140805+00 f t TOTAL 0.00 4 10963 \N +435341 2025-10-30 12:49:43.141673+00 2025-10-30 12:49:43.141678+00 f t ADELANTO 0.00 5 10963 \N +446112 2025-11-01 20:58:18.27567+00 2025-11-01 20:58:18.275677+00 f t SUBTOTAL 70000.00 1 11225 \N +446113 2025-11-01 20:58:18.277427+00 2025-11-01 20:58:18.277433+00 f t COSTO_SERVICIO 0.00 2 11225 \N +446114 2025-11-01 20:58:18.278596+00 2025-11-01 20:58:18.278602+00 f t DESCUENTO 0.00 3 11225 \N +446115 2025-11-01 20:58:18.279729+00 2025-11-01 20:58:18.279734+00 f t TOTAL 70000.00 4 11225 \N +446116 2025-11-01 20:58:18.280722+00 2025-11-01 20:58:18.280727+00 f t ADELANTO 19000.00 5 11225 \N +446547 2025-11-02 00:18:30.103942+00 2025-11-02 00:18:30.10395+00 f t SUBTOTAL 70000.00 1 11234 \N +446548 2025-11-02 00:18:30.10609+00 2025-11-02 00:18:30.106098+00 f t COSTO_SERVICIO 0.00 2 11234 \N +446549 2025-11-02 00:18:30.107785+00 2025-11-02 00:18:30.107791+00 f t DESCUENTO 0.00 3 11234 \N +446550 2025-11-02 00:18:30.109392+00 2025-11-02 00:18:30.1094+00 f t TOTAL 70000.00 4 11234 \N +446551 2025-11-02 00:18:30.110918+00 2025-11-02 00:18:30.110926+00 f t ADELANTO 19000.00 5 11234 \N +435367 2025-10-30 12:57:41.785392+00 2025-10-30 12:57:41.785399+00 f t SUBTOTAL 55000.00 1 10959 \N +435368 2025-10-30 12:57:41.786867+00 2025-10-30 12:57:41.786873+00 f t COSTO_SERVICIO 0.00 2 10959 \N +435369 2025-10-30 12:57:41.78784+00 2025-10-30 12:57:41.787844+00 f t DESCUENTO 0.00 3 10959 \N +435370 2025-10-30 12:57:41.788621+00 2025-10-30 12:57:41.788626+00 f t TOTAL 55000.00 4 10959 \N +435371 2025-10-30 12:57:41.789387+00 2025-10-30 12:57:41.789391+00 f t ADELANTO 11000.00 5 10959 \N +447422 2025-11-02 18:19:30.421126+00 2025-11-02 18:19:30.421133+00 f t SUBTOTAL 46000.00 1 11252 \N +447423 2025-11-02 18:19:30.422931+00 2025-11-02 18:19:30.422938+00 f t COSTO_SERVICIO 0.00 2 11252 \N +447424 2025-11-02 18:19:30.42408+00 2025-11-02 18:19:30.424086+00 f t DESCUENTO 0.00 3 11252 \N +447425 2025-11-02 18:19:30.425086+00 2025-11-02 18:19:30.425091+00 f t TOTAL 46000.00 4 11252 \N +447426 2025-11-02 18:19:30.426106+00 2025-11-02 18:19:30.426113+00 f t ADELANTO 11000.00 5 11252 \N +435417 2025-10-30 13:11:29.439411+00 2025-10-30 13:11:29.439417+00 f t SUBTOTAL 78000.00 1 10964 \N +435418 2025-10-30 13:11:29.441108+00 2025-10-30 13:11:29.441113+00 f t COSTO_SERVICIO 0.00 2 10964 \N +435419 2025-10-30 13:11:29.442152+00 2025-10-30 13:11:29.442157+00 f t DESCUENTO 0.00 3 10964 \N +435420 2025-10-30 13:11:29.443221+00 2025-10-30 13:11:29.443228+00 f t TOTAL 78000.00 4 10964 \N +435421 2025-10-30 13:11:29.444308+00 2025-10-30 13:11:29.444312+00 f t ADELANTO 21500.00 5 10964 \N +435427 2025-10-30 13:25:52.129412+00 2025-10-30 13:25:52.129423+00 f t SUBTOTAL 0.00 1 10965 \N +435428 2025-10-30 13:25:52.130848+00 2025-10-30 13:25:52.130854+00 f t COSTO_SERVICIO 0.00 2 10965 \N +435429 2025-10-30 13:25:52.131886+00 2025-10-30 13:25:52.131891+00 f t DESCUENTO 0.00 3 10965 \N +435430 2025-10-30 13:25:52.132819+00 2025-10-30 13:25:52.132824+00 f t TOTAL 0.00 4 10965 \N +435431 2025-10-30 13:25:52.13368+00 2025-10-30 13:25:52.133685+00 f t ADELANTO 0.00 5 10965 \N +449117 2025-11-03 16:14:35.623285+00 2025-11-03 16:14:35.623292+00 f t SUBTOTAL 102000.00 1 11293 \N +449118 2025-11-03 16:14:35.625458+00 2025-11-03 16:14:35.625464+00 f t COSTO_SERVICIO 0.00 2 11293 \N +449119 2025-11-03 16:14:35.626993+00 2025-11-03 16:14:35.627003+00 f t DESCUENTO 0.00 3 11293 \N +449120 2025-11-03 16:14:35.628533+00 2025-11-03 16:14:35.628542+00 f t TOTAL 102000.00 4 11293 \N +449121 2025-11-03 16:14:35.630203+00 2025-11-03 16:14:35.630209+00 f t ADELANTO 29500.00 5 11293 \N +449252 2025-11-03 16:45:09.626457+00 2025-11-03 16:45:09.626467+00 f t SUBTOTAL 70000.00 1 11295 \N +449253 2025-11-03 16:45:09.628517+00 2025-11-03 16:45:09.628527+00 f t COSTO_SERVICIO 0.00 2 11295 \N +449254 2025-11-03 16:45:09.629959+00 2025-11-03 16:45:09.629968+00 f t DESCUENTO 0.00 3 11295 \N +449255 2025-11-03 16:45:09.631284+00 2025-11-03 16:45:09.631291+00 f t TOTAL 70000.00 4 11295 \N +449256 2025-11-03 16:45:09.632846+00 2025-11-03 16:45:09.632854+00 f t ADELANTO 19000.00 5 11295 \N +435487 2025-10-30 13:31:59.39012+00 2025-10-30 13:31:59.390129+00 f t SUBTOTAL 55000.00 1 10966 \N +435488 2025-10-30 13:31:59.391637+00 2025-10-30 13:31:59.391643+00 f t COSTO_SERVICIO 0.00 2 10966 \N +435489 2025-10-30 13:31:59.392759+00 2025-10-30 13:31:59.392764+00 f t DESCUENTO 0.00 3 10966 \N +435490 2025-10-30 13:31:59.393639+00 2025-10-30 13:31:59.393643+00 f t TOTAL 55000.00 4 10966 \N +435491 2025-10-30 13:31:59.394523+00 2025-10-30 13:31:59.394529+00 f t ADELANTO 11000.00 5 10966 \N +435502 2025-10-30 13:36:36.529086+00 2025-10-30 13:36:36.529093+00 f t SUBTOTAL 23000.00 1 10967 \N +435503 2025-10-30 13:36:36.530955+00 2025-10-30 13:36:36.530961+00 f t COSTO_SERVICIO 0.00 2 10967 \N +435504 2025-10-30 13:36:36.532204+00 2025-10-30 13:36:36.53221+00 f t DESCUENTO 0.00 3 10967 \N +435505 2025-10-30 13:36:36.533261+00 2025-10-30 13:36:36.533266+00 f t TOTAL 23000.00 4 10967 \N +435506 2025-10-30 13:36:36.534287+00 2025-10-30 13:36:36.534293+00 f t ADELANTO 5500.00 5 10967 \N +435512 2025-10-30 13:38:08.181285+00 2025-10-30 13:38:08.181294+00 f t SUBTOTAL 0.00 1 10968 \N +435513 2025-10-30 13:38:08.182651+00 2025-10-30 13:38:08.182658+00 f t COSTO_SERVICIO 0.00 2 10968 \N +435514 2025-10-30 13:38:08.183751+00 2025-10-30 13:38:08.183758+00 f t DESCUENTO 0.00 3 10968 \N +435515 2025-10-30 13:38:08.184803+00 2025-10-30 13:38:08.184813+00 f t TOTAL 0.00 4 10968 \N +435516 2025-10-30 13:38:08.185937+00 2025-10-30 13:38:08.185943+00 f t ADELANTO 0.00 5 10968 \N +440297 2025-10-31 14:26:50.778905+00 2025-10-31 14:26:50.778914+00 f t SUBTOTAL 0.00 1 11073 \N +440298 2025-10-31 14:26:50.780296+00 2025-10-31 14:26:50.780302+00 f t COSTO_SERVICIO 0.00 2 11073 \N +440299 2025-10-31 14:26:50.78129+00 2025-10-31 14:26:50.781296+00 f t DESCUENTO 0.00 3 11073 \N +440300 2025-10-31 14:26:50.78221+00 2025-10-31 14:26:50.782216+00 f t TOTAL 0.00 4 11073 \N +440301 2025-10-31 14:26:50.783231+00 2025-10-31 14:26:50.783236+00 f t ADELANTO 0.00 5 11073 \N +440482 2025-10-31 15:11:22.153093+00 2025-10-31 15:11:22.153102+00 f t SUBTOTAL 55000.00 1 11079 \N +440483 2025-10-31 15:11:22.155001+00 2025-10-31 15:11:22.155006+00 f t COSTO_SERVICIO 0.00 2 11079 \N +440484 2025-10-31 15:11:22.156233+00 2025-10-31 15:11:22.156238+00 f t DESCUENTO 0.00 3 11079 \N +440485 2025-10-31 15:11:22.157256+00 2025-10-31 15:11:22.157261+00 f t TOTAL 55000.00 4 11079 \N +440486 2025-10-31 15:11:22.158244+00 2025-10-31 15:11:22.158249+00 f t ADELANTO 11000.00 5 11079 \N +440737 2025-10-31 16:45:02.663405+00 2025-10-31 16:45:02.66342+00 f t SUBTOTAL 46000.00 1 11087 \N +440738 2025-10-31 16:45:02.667567+00 2025-10-31 16:45:02.667582+00 f t COSTO_SERVICIO 0.00 2 11087 \N +440739 2025-10-31 16:45:02.67432+00 2025-10-31 16:45:02.674335+00 f t DESCUENTO 0.00 3 11087 \N +440740 2025-10-31 16:45:02.677626+00 2025-10-31 16:45:02.677641+00 f t TOTAL 46000.00 4 11087 \N +440741 2025-10-31 16:45:02.6803+00 2025-10-31 16:45:02.680314+00 f t ADELANTO 11000.00 5 11087 \N +441312 2025-10-31 19:06:43.270658+00 2025-10-31 19:06:43.270667+00 f t SUBTOTAL 30000.00 1 11102 \N +441313 2025-10-31 19:06:43.27214+00 2025-10-31 19:06:43.272146+00 f t COSTO_SERVICIO 0.00 2 11102 \N +441314 2025-10-31 19:06:43.273166+00 2025-10-31 19:06:43.273171+00 f t DESCUENTO 0.00 3 11102 \N +441315 2025-10-31 19:06:43.27402+00 2025-10-31 19:06:43.274025+00 f t TOTAL 30000.00 4 11102 \N +441316 2025-10-31 19:06:43.274865+00 2025-10-31 19:06:43.27487+00 f t ADELANTO 30000.00 5 11102 \N +477787 2025-11-10 19:59:06.18278+00 2025-11-10 19:59:06.183289+00 f t SUBTOTAL 0.00 1 11946 \N +477788 2025-11-10 19:59:06.188438+00 2025-11-10 19:59:06.18845+00 f t COSTO_SERVICIO 0.00 2 11946 \N +477789 2025-11-10 19:59:06.18987+00 2025-11-10 19:59:06.189879+00 f t DESCUENTO 0.00 3 11946 \N +441322 2025-10-31 19:39:52.679317+00 2025-10-31 19:39:52.679326+00 f t SUBTOTAL 0.00 1 11103 \N +441323 2025-10-31 19:39:52.680741+00 2025-10-31 19:39:52.680747+00 f t COSTO_SERVICIO 0.00 2 11103 \N +441324 2025-10-31 19:39:52.681915+00 2025-10-31 19:39:52.681922+00 f t DESCUENTO 0.00 3 11103 \N +441325 2025-10-31 19:39:52.682933+00 2025-10-31 19:39:52.682938+00 f t TOTAL 0.00 4 11103 \N +441326 2025-10-31 19:39:52.684224+00 2025-10-31 19:39:52.68423+00 f t ADELANTO 0.00 5 11103 \N +446737 2025-11-02 11:17:01.36198+00 2025-11-02 11:17:01.361989+00 f t SUBTOTAL 23000.00 1 11237 \N +446738 2025-11-02 11:17:01.363721+00 2025-11-02 11:17:01.363729+00 f t COSTO_SERVICIO 0.00 2 11237 \N +446739 2025-11-02 11:17:01.365283+00 2025-11-02 11:17:01.36529+00 f t DESCUENTO 0.00 3 11237 \N +446740 2025-11-02 11:17:01.366604+00 2025-11-02 11:17:01.366611+00 f t TOTAL 23000.00 4 11237 \N +446741 2025-11-02 11:17:01.367769+00 2025-11-02 11:17:01.367776+00 f t ADELANTO 5500.00 5 11237 \N +457657 2025-11-05 20:37:08.975757+00 2025-11-05 20:37:08.975764+00 f t SUBTOTAL 78000.00 1 11491 \N +457658 2025-11-05 20:37:08.977624+00 2025-11-05 20:37:08.977633+00 f t COSTO_SERVICIO 0.00 2 11491 \N +457659 2025-11-05 20:37:08.978933+00 2025-11-05 20:37:08.978939+00 f t DESCUENTO 0.00 3 11491 \N +457660 2025-11-05 20:37:08.980281+00 2025-11-05 20:37:08.980287+00 f t TOTAL 78000.00 4 11491 \N +457661 2025-11-05 20:37:08.981481+00 2025-11-05 20:37:08.981488+00 f t ADELANTO 21500.00 5 11491 \N +447432 2025-11-02 18:54:47.283997+00 2025-11-02 18:54:47.284006+00 f t SUBTOTAL 0.00 1 11253 \N +447433 2025-11-02 18:54:47.2855+00 2025-11-02 18:54:47.28551+00 f t COSTO_SERVICIO 0.00 2 11253 \N +447434 2025-11-02 18:54:47.287926+00 2025-11-02 18:54:47.287932+00 f t DESCUENTO 0.00 3 11253 \N +447435 2025-11-02 18:54:47.289056+00 2025-11-02 18:54:47.289065+00 f t TOTAL 0.00 4 11253 \N +447436 2025-11-02 18:54:47.290176+00 2025-11-02 18:54:47.290183+00 f t ADELANTO 0.00 5 11253 \N +447777 2025-11-03 03:09:47.807746+00 2025-11-03 03:09:47.807754+00 f t SUBTOTAL 55000.00 1 11263 \N +447778 2025-11-03 03:09:47.809717+00 2025-11-03 03:09:47.809724+00 f t COSTO_SERVICIO 0.00 2 11263 \N +441387 2025-10-31 20:02:37.486606+00 2025-10-31 20:02:37.486614+00 f t SUBTOTAL 69000.00 1 11104 \N +441388 2025-10-31 20:02:37.491423+00 2025-10-31 20:02:37.491431+00 f t COSTO_SERVICIO 0.00 2 11104 \N +441389 2025-10-31 20:02:37.493027+00 2025-10-31 20:02:37.493035+00 f t DESCUENTO 0.00 3 11104 \N +441390 2025-10-31 20:02:37.494312+00 2025-10-31 20:02:37.494318+00 f t TOTAL 69000.00 4 11104 \N +441391 2025-10-31 20:02:37.495568+00 2025-10-31 20:02:37.495574+00 f t ADELANTO 11000.00 5 11104 \N +447779 2025-11-03 03:09:47.810967+00 2025-11-03 03:09:47.810972+00 f t DESCUENTO 0.00 3 11263 \N +447780 2025-11-03 03:09:47.81207+00 2025-11-03 03:09:47.812076+00 f t TOTAL 55000.00 4 11263 \N +447781 2025-11-03 03:09:47.813162+00 2025-11-03 03:09:47.813167+00 f t ADELANTO 11000.00 5 11263 \N +448077 2025-11-03 10:01:15.828664+00 2025-11-03 10:01:15.828672+00 f t SUBTOTAL 55000.00 1 11265 \N +448078 2025-11-03 10:01:15.830356+00 2025-11-03 10:01:15.830362+00 f t COSTO_SERVICIO 0.00 2 11265 \N +448079 2025-11-03 10:01:15.831378+00 2025-11-03 10:01:15.831383+00 f t DESCUENTO 0.00 3 11265 \N +448080 2025-11-03 10:01:15.832335+00 2025-11-03 10:01:15.832342+00 f t TOTAL 55000.00 4 11265 \N +448081 2025-11-03 10:01:15.833352+00 2025-11-03 10:01:15.833357+00 f t ADELANTO 11000.00 5 11265 \N +458322 2025-11-05 23:46:13.826857+00 2025-11-05 23:46:13.826867+00 f t SUBTOTAL 0.00 1 11506 \N +458323 2025-11-05 23:46:13.828934+00 2025-11-05 23:46:13.828945+00 f t COSTO_SERVICIO 0.00 2 11506 \N +441407 2025-10-31 20:11:11.590753+00 2025-10-31 20:11:11.590766+00 f t SUBTOTAL 53700.00 1 11105 \N +441408 2025-10-31 20:11:11.592689+00 2025-10-31 20:11:11.592699+00 f t COSTO_SERVICIO 0.00 2 11105 \N +441409 2025-10-31 20:11:11.594069+00 2025-10-31 20:11:11.594078+00 f t DESCUENTO 0.00 3 11105 \N +441410 2025-10-31 20:11:11.595508+00 2025-10-31 20:11:11.595517+00 f t TOTAL 53700.00 4 11105 \N +441411 2025-10-31 20:11:11.596707+00 2025-10-31 20:11:11.596716+00 f t ADELANTO 13200.00 5 11105 \N +458324 2025-11-05 23:46:13.830316+00 2025-11-05 23:46:13.830323+00 f t DESCUENTO 0.00 3 11506 \N +458325 2025-11-05 23:46:13.8315+00 2025-11-05 23:46:13.831505+00 f t TOTAL 0.00 4 11506 \N +458326 2025-11-05 23:46:13.832646+00 2025-11-05 23:46:13.832655+00 f t ADELANTO 0.00 5 11506 \N +449522 2025-11-03 17:30:34.527914+00 2025-11-03 17:30:34.527925+00 f t SUBTOTAL 79000.00 1 11303 \N +449523 2025-11-03 17:30:34.530106+00 2025-11-03 17:30:34.530115+00 f t COSTO_SERVICIO 0.00 2 11303 \N +449524 2025-11-03 17:30:34.531704+00 2025-11-03 17:30:34.53171+00 f t DESCUENTO 0.00 3 11303 \N +449525 2025-11-03 17:30:34.533198+00 2025-11-03 17:30:34.533205+00 f t TOTAL 79000.00 4 11303 \N +449526 2025-11-03 17:30:34.53466+00 2025-11-03 17:30:34.534667+00 f t ADELANTO 17500.00 5 11303 \N +449652 2025-11-03 18:01:58.671807+00 2025-11-03 18:01:58.671815+00 f t SUBTOTAL 55000.00 1 11306 \N +449653 2025-11-03 18:01:58.673613+00 2025-11-03 18:01:58.67362+00 f t COSTO_SERVICIO 0.00 2 11306 \N +449654 2025-11-03 18:01:58.674793+00 2025-11-03 18:01:58.674798+00 f t DESCUENTO 0.00 3 11306 \N +449655 2025-11-03 18:01:58.675895+00 2025-11-03 18:01:58.675901+00 f t TOTAL 55000.00 4 11306 \N +449656 2025-11-03 18:01:58.676826+00 2025-11-03 18:01:58.676831+00 f t ADELANTO 11000.00 5 11306 \N +441492 2025-10-31 20:23:27.149197+00 2025-10-31 20:23:27.149206+00 f t SUBTOTAL 0.00 1 11106 \N +441493 2025-10-31 20:23:27.151092+00 2025-10-31 20:23:27.1511+00 f t COSTO_SERVICIO 0.00 2 11106 \N +441494 2025-10-31 20:23:27.152554+00 2025-10-31 20:23:27.152561+00 f t DESCUENTO 0.00 3 11106 \N +441495 2025-10-31 20:23:27.153737+00 2025-10-31 20:23:27.153744+00 f t TOTAL 0.00 4 11106 \N +441496 2025-10-31 20:23:27.154844+00 2025-10-31 20:23:27.15485+00 f t ADELANTO 0.00 5 11106 \N +441502 2025-10-31 20:23:51.336411+00 2025-10-31 20:23:51.336424+00 f t SUBTOTAL 0.00 1 11107 \N +441503 2025-10-31 20:23:51.337958+00 2025-10-31 20:23:51.337965+00 f t COSTO_SERVICIO 0.00 2 11107 \N +441504 2025-10-31 20:23:51.339271+00 2025-10-31 20:23:51.339278+00 f t DESCUENTO 0.00 3 11107 \N +441505 2025-10-31 20:23:51.340368+00 2025-10-31 20:23:51.340373+00 f t TOTAL 0.00 4 11107 \N +441506 2025-10-31 20:23:51.341276+00 2025-10-31 20:23:51.341281+00 f t ADELANTO 0.00 5 11107 \N +441517 2025-10-31 20:34:53.11487+00 2025-10-31 20:34:53.114878+00 f t SUBTOTAL 55000.00 1 11108 \N +441518 2025-10-31 20:34:53.11682+00 2025-10-31 20:34:53.116826+00 f t COSTO_SERVICIO 0.00 2 11108 \N +441519 2025-10-31 20:34:53.118127+00 2025-10-31 20:34:53.118132+00 f t DESCUENTO 0.00 3 11108 \N +441520 2025-10-31 20:34:53.119203+00 2025-10-31 20:34:53.119208+00 f t TOTAL 55000.00 4 11108 \N +441521 2025-10-31 20:34:53.120209+00 2025-10-31 20:34:53.120214+00 f t ADELANTO 11000.00 5 11108 \N +441527 2025-10-31 21:25:56.622368+00 2025-10-31 21:25:56.622377+00 f t SUBTOTAL 0.00 1 11109 \N +441528 2025-10-31 21:25:56.623755+00 2025-10-31 21:25:56.623765+00 f t COSTO_SERVICIO 0.00 2 11109 \N +441529 2025-10-31 21:25:56.62484+00 2025-10-31 21:25:56.624846+00 f t DESCUENTO 0.00 3 11109 \N +441530 2025-10-31 21:25:56.625727+00 2025-10-31 21:25:56.625733+00 f t TOTAL 0.00 4 11109 \N +441531 2025-10-31 21:25:56.626568+00 2025-10-31 21:25:56.626573+00 f t ADELANTO 0.00 5 11109 \N +441602 2025-10-31 21:45:20.812051+00 2025-10-31 21:45:20.812057+00 f t SUBTOTAL 70000.00 1 11110 \N +441603 2025-10-31 21:45:20.813511+00 2025-10-31 21:45:20.813517+00 f t COSTO_SERVICIO 0.00 2 11110 \N +441604 2025-10-31 21:45:20.814362+00 2025-10-31 21:45:20.814367+00 f t DESCUENTO 0.00 3 11110 \N +441605 2025-10-31 21:45:20.815324+00 2025-10-31 21:45:20.815329+00 f t TOTAL 70000.00 4 11110 \N +441606 2025-10-31 21:45:20.816386+00 2025-10-31 21:45:20.81639+00 f t ADELANTO 19000.00 5 11110 \N +466914 2025-11-07 23:09:16.286856+00 2025-11-07 23:09:16.286866+00 f t DESCUENTO 0.00 3 11709 \N +466915 2025-11-07 23:09:16.289205+00 2025-11-07 23:09:16.289214+00 f t TOTAL 0.00 4 11709 \N +466916 2025-11-07 23:09:16.290584+00 2025-11-07 23:09:16.290592+00 f t ADELANTO 0.00 5 11709 \N +467127 2025-11-07 23:38:43.133597+00 2025-11-07 23:38:43.133605+00 f t SUBTOTAL 46000.00 1 11712 \N +441627 2025-10-31 21:45:41.894601+00 2025-10-31 21:45:41.89461+00 f t SUBTOTAL 0.00 1 11112 \N +441628 2025-10-31 21:45:41.895909+00 2025-10-31 21:45:41.895915+00 f t COSTO_SERVICIO 0.00 2 11112 \N +441629 2025-10-31 21:45:41.896848+00 2025-10-31 21:45:41.896853+00 f t DESCUENTO 0.00 3 11112 \N +441630 2025-10-31 21:45:41.897688+00 2025-10-31 21:45:41.897693+00 f t TOTAL 0.00 4 11112 \N +441631 2025-10-31 21:45:41.898463+00 2025-10-31 21:45:41.898467+00 f t ADELANTO 0.00 5 11112 \N +441632 2025-10-31 21:45:49.531002+00 2025-10-31 21:45:49.53101+00 f t SUBTOTAL 46000.00 1 11111 \N +441633 2025-10-31 21:45:49.532726+00 2025-10-31 21:45:49.532735+00 f t COSTO_SERVICIO 0.00 2 11111 \N +441634 2025-10-31 21:45:49.534132+00 2025-10-31 21:45:49.534141+00 f t DESCUENTO 0.00 3 11111 \N +441635 2025-10-31 21:45:49.535463+00 2025-10-31 21:45:49.535469+00 f t TOTAL 46000.00 4 11111 \N +441636 2025-10-31 21:45:49.53679+00 2025-10-31 21:45:49.536796+00 f t ADELANTO 11000.00 5 11111 \N +441677 2025-10-31 21:47:52.498419+00 2025-10-31 21:47:52.498426+00 f t SUBTOTAL 46000.00 1 11113 \N +441678 2025-10-31 21:47:52.49985+00 2025-10-31 21:47:52.499855+00 f t COSTO_SERVICIO 0.00 2 11113 \N +441679 2025-10-31 21:47:52.500828+00 2025-10-31 21:47:52.500833+00 f t DESCUENTO 0.00 3 11113 \N +441680 2025-10-31 21:47:52.501897+00 2025-10-31 21:47:52.501902+00 f t TOTAL 46000.00 4 11113 \N +441681 2025-10-31 21:47:52.502783+00 2025-10-31 21:47:52.502788+00 f t ADELANTO 11000.00 5 11113 \N +441687 2025-10-31 21:51:11.55703+00 2025-10-31 21:51:11.557042+00 f t SUBTOTAL 0.00 1 11114 \N +441688 2025-10-31 21:51:11.558417+00 2025-10-31 21:51:11.558423+00 f t COSTO_SERVICIO 0.00 2 11114 \N +441689 2025-10-31 21:51:11.559567+00 2025-10-31 21:51:11.559574+00 f t DESCUENTO 0.00 3 11114 \N +441690 2025-10-31 21:51:11.560519+00 2025-10-31 21:51:11.560524+00 f t TOTAL 0.00 4 11114 \N +441691 2025-10-31 21:51:11.561589+00 2025-10-31 21:51:11.561595+00 f t ADELANTO 0.00 5 11114 \N +458632 2025-11-06 01:08:37.694015+00 2025-11-06 01:08:37.694025+00 f t SUBTOTAL 46000.00 1 11512 \N +458633 2025-11-06 01:08:37.695985+00 2025-11-06 01:08:37.695992+00 f t COSTO_SERVICIO 0.00 2 11512 \N +458634 2025-11-06 01:08:37.697433+00 2025-11-06 01:08:37.697439+00 f t DESCUENTO 0.00 3 11512 \N +458635 2025-11-06 01:08:37.698506+00 2025-11-06 01:08:37.698512+00 f t TOTAL 46000.00 4 11512 \N +458636 2025-11-06 01:08:37.699524+00 2025-11-06 01:08:37.699529+00 f t ADELANTO 11000.00 5 11512 \N +448862 2025-11-03 15:45:42.846094+00 2025-11-03 15:45:42.846104+00 f t SUBTOTAL 222000.00 1 11271 \N +448863 2025-11-03 15:45:42.849419+00 2025-11-03 15:45:42.849428+00 f t COSTO_SERVICIO 0.00 2 11271 \N +448864 2025-11-03 15:45:42.850992+00 2025-11-03 15:45:42.850999+00 f t DESCUENTO 9200.00 3 11271 \N +448865 2025-11-03 15:45:42.852376+00 2025-11-03 15:45:42.852382+00 f t TOTAL 212800.00 4 11271 \N +448866 2025-11-03 15:45:42.853529+00 2025-11-03 15:45:42.853535+00 f t ADELANTO 56000.00 5 11271 \N +441747 2025-10-31 22:15:56.152154+00 2025-10-31 22:15:56.152162+00 f t SUBTOTAL 55000.00 1 11115 \N +441748 2025-10-31 22:15:56.153989+00 2025-10-31 22:15:56.153996+00 f t COSTO_SERVICIO 0.00 2 11115 \N +441749 2025-10-31 22:15:56.155436+00 2025-10-31 22:15:56.155442+00 f t DESCUENTO 0.00 3 11115 \N +441750 2025-10-31 22:15:56.156764+00 2025-10-31 22:15:56.15677+00 f t TOTAL 55000.00 4 11115 \N +441751 2025-10-31 22:15:56.157848+00 2025-10-31 22:15:56.157853+00 f t ADELANTO 11000.00 5 11115 \N +449267 2025-11-03 16:47:21.65767+00 2025-11-03 16:47:21.657678+00 f t SUBTOTAL 55000.00 1 11297 \N +449268 2025-11-03 16:47:21.659696+00 2025-11-03 16:47:21.659702+00 f t COSTO_SERVICIO 0.00 2 11297 \N +449269 2025-11-03 16:47:21.661498+00 2025-11-03 16:47:21.661504+00 f t DESCUENTO 0.00 3 11297 \N +449270 2025-11-03 16:47:21.662652+00 2025-11-03 16:47:21.66266+00 f t TOTAL 55000.00 4 11297 \N +449271 2025-11-03 16:47:21.663816+00 2025-11-03 16:47:21.663822+00 f t ADELANTO 11000.00 5 11297 \N +449397 2025-11-03 17:08:10.624147+00 2025-11-03 17:08:10.624156+00 f t SUBTOTAL 0.00 1 11300 \N +449398 2025-11-03 17:08:10.626097+00 2025-11-03 17:08:10.626148+00 f t COSTO_SERVICIO 0.00 2 11300 \N +449399 2025-11-03 17:08:10.627547+00 2025-11-03 17:08:10.627554+00 f t DESCUENTO 0.00 3 11300 \N +449400 2025-11-03 17:08:10.628602+00 2025-11-03 17:08:10.628607+00 f t TOTAL 0.00 4 11300 \N +449401 2025-11-03 17:08:10.62949+00 2025-11-03 17:08:10.629495+00 f t ADELANTO 0.00 5 11300 \N +441802 2025-10-31 22:21:28.611081+00 2025-10-31 22:21:28.611088+00 f t SUBTOTAL 72500.00 1 11116 \N +441803 2025-10-31 22:21:28.613319+00 2025-10-31 22:21:28.613325+00 f t COSTO_SERVICIO 0.00 2 11116 \N +441804 2025-10-31 22:21:28.616919+00 2025-10-31 22:21:28.616925+00 f t DESCUENTO 0.00 3 11116 \N +441805 2025-10-31 22:21:28.617984+00 2025-10-31 22:21:28.617989+00 f t TOTAL 72500.00 4 11116 \N +441806 2025-10-31 22:21:28.618847+00 2025-10-31 22:21:28.618852+00 f t ADELANTO 72500.00 5 11116 \N +450572 2025-11-03 23:08:35.497823+00 2025-11-03 23:08:35.49783+00 f t SUBTOTAL 55000.00 1 11328 \N +450573 2025-11-03 23:08:35.499353+00 2025-11-03 23:08:35.499359+00 f t COSTO_SERVICIO 0.00 2 11328 \N +450574 2025-11-03 23:08:35.500535+00 2025-11-03 23:08:35.500542+00 f t DESCUENTO 0.00 3 11328 \N +450575 2025-11-03 23:08:35.501654+00 2025-11-03 23:08:35.501659+00 f t TOTAL 55000.00 4 11328 \N +450576 2025-11-03 23:08:35.502686+00 2025-11-03 23:08:35.502691+00 f t ADELANTO 11000.00 5 11328 \N +461237 2025-11-06 16:12:54.304144+00 2025-11-06 16:12:54.304152+00 f t SUBTOTAL 55000.00 1 11563 \N +461238 2025-11-06 16:12:54.307994+00 2025-11-06 16:12:54.308003+00 f t COSTO_SERVICIO 0.00 2 11563 \N +461239 2025-11-06 16:12:54.309771+00 2025-11-06 16:12:54.30978+00 f t DESCUENTO 0.00 3 11563 \N +461240 2025-11-06 16:12:54.311158+00 2025-11-06 16:12:54.311164+00 f t TOTAL 55000.00 4 11563 \N +461241 2025-11-06 16:12:54.312418+00 2025-11-06 16:12:54.312426+00 f t ADELANTO 11000.00 5 11563 \N +451057 2025-11-04 00:18:03.789822+00 2025-11-04 00:18:03.78983+00 f t SUBTOTAL 78000.00 1 11337 \N +451058 2025-11-04 00:18:03.791659+00 2025-11-04 00:18:03.791668+00 f t COSTO_SERVICIO 0.00 2 11337 \N +451059 2025-11-04 00:18:03.793009+00 2025-11-04 00:18:03.793015+00 f t DESCUENTO 0.00 3 11337 \N +451060 2025-11-04 00:18:03.79407+00 2025-11-04 00:18:03.794075+00 f t TOTAL 78000.00 4 11337 \N +451061 2025-11-04 00:18:03.795032+00 2025-11-04 00:18:03.795038+00 f t ADELANTO 13000.00 5 11337 \N +451617 2025-11-04 03:05:54.011571+00 2025-11-04 03:05:54.011579+00 f t SUBTOTAL 46000.00 1 11348 \N +451618 2025-11-04 03:05:54.013537+00 2025-11-04 03:05:54.013544+00 f t COSTO_SERVICIO 0.00 2 11348 \N +451619 2025-11-04 03:05:54.014801+00 2025-11-04 03:05:54.014808+00 f t DESCUENTO 0.00 3 11348 \N +451620 2025-11-04 03:05:54.016027+00 2025-11-04 03:05:54.016033+00 f t TOTAL 46000.00 4 11348 \N +451621 2025-11-04 03:05:54.01734+00 2025-11-04 03:05:54.017347+00 f t ADELANTO 11000.00 5 11348 \N +524200 2025-11-20 23:06:02.839048+00 2025-11-20 23:06:02.839057+00 f t TOTAL 0.00 4 13042 \N +441897 2025-10-31 22:33:56.642443+00 2025-10-31 22:33:56.642452+00 f t SUBTOTAL 0.00 1 11117 \N +441898 2025-10-31 22:33:56.644127+00 2025-10-31 22:33:56.644133+00 f t COSTO_SERVICIO 0.00 2 11117 \N +441899 2025-10-31 22:33:56.645275+00 2025-10-31 22:33:56.645281+00 f t DESCUENTO 0.00 3 11117 \N +441900 2025-10-31 22:33:56.646415+00 2025-10-31 22:33:56.646421+00 f t TOTAL 0.00 4 11117 \N +441901 2025-10-31 22:33:56.647319+00 2025-10-31 22:33:56.647324+00 f t ADELANTO 0.00 5 11117 \N +524201 2025-11-20 23:06:02.841196+00 2025-11-20 23:06:02.841211+00 f t ADELANTO 0.00 5 13042 \N +457677 2025-11-05 20:38:37.013465+00 2025-11-05 20:38:37.013474+00 f t SUBTOTAL 0.00 1 11493 \N +457678 2025-11-05 20:38:37.014909+00 2025-11-05 20:38:37.014915+00 f t COSTO_SERVICIO 0.00 2 11493 \N +457679 2025-11-05 20:38:37.016258+00 2025-11-05 20:38:37.016263+00 f t DESCUENTO 0.00 3 11493 \N +457680 2025-11-05 20:38:37.017293+00 2025-11-05 20:38:37.017298+00 f t TOTAL 0.00 4 11493 \N +457681 2025-11-05 20:38:37.018332+00 2025-11-05 20:38:37.018337+00 f t ADELANTO 0.00 5 11493 \N +441952 2025-10-31 22:39:03.516137+00 2025-10-31 22:39:03.516149+00 f t SUBTOTAL 46000.00 1 11118 \N +441953 2025-10-31 22:39:03.517867+00 2025-10-31 22:39:03.517874+00 f t COSTO_SERVICIO 0.00 2 11118 \N +441954 2025-10-31 22:39:03.51911+00 2025-10-31 22:39:03.519116+00 f t DESCUENTO 0.00 3 11118 \N +441955 2025-10-31 22:39:03.520388+00 2025-10-31 22:39:03.520394+00 f t TOTAL 46000.00 4 11118 \N +441956 2025-10-31 22:39:03.521446+00 2025-10-31 22:39:03.521451+00 f t ADELANTO 11000.00 5 11118 \N +441987 2025-10-31 22:44:35.054694+00 2025-10-31 22:44:35.054703+00 f t SUBTOTAL 0.00 1 11119 \N +441988 2025-10-31 22:44:35.057339+00 2025-10-31 22:44:35.057345+00 f t COSTO_SERVICIO 0.00 2 11119 \N +441989 2025-10-31 22:44:35.05862+00 2025-10-31 22:44:35.058626+00 f t DESCUENTO 0.00 3 11119 \N +441990 2025-10-31 22:44:35.059753+00 2025-10-31 22:44:35.059758+00 f t TOTAL 0.00 4 11119 \N +441991 2025-10-31 22:44:35.060846+00 2025-10-31 22:44:35.060851+00 f t ADELANTO 0.00 5 11119 \N +442002 2025-10-31 22:47:34.671672+00 2025-10-31 22:47:34.67168+00 f t SUBTOTAL 30000.00 1 11120 \N +442003 2025-10-31 22:47:34.673154+00 2025-10-31 22:47:34.67316+00 f t COSTO_SERVICIO 0.00 2 11120 \N +442004 2025-10-31 22:47:34.674201+00 2025-10-31 22:47:34.674206+00 f t DESCUENTO 0.00 3 11120 \N +442005 2025-10-31 22:47:34.675167+00 2025-10-31 22:47:34.675172+00 f t TOTAL 30000.00 4 11120 \N +442006 2025-10-31 22:47:34.676065+00 2025-10-31 22:47:34.67607+00 f t ADELANTO 30000.00 5 11120 \N +442012 2025-10-31 22:48:50.770034+00 2025-10-31 22:48:50.770043+00 f t SUBTOTAL 0.00 1 11121 \N +442013 2025-10-31 22:48:50.771339+00 2025-10-31 22:48:50.771346+00 f t COSTO_SERVICIO 0.00 2 11121 \N +442014 2025-10-31 22:48:50.772234+00 2025-10-31 22:48:50.772241+00 f t DESCUENTO 0.00 3 11121 \N +442015 2025-10-31 22:48:50.77334+00 2025-10-31 22:48:50.773346+00 f t TOTAL 0.00 4 11121 \N +442016 2025-10-31 22:48:50.774253+00 2025-10-31 22:48:50.774258+00 f t ADELANTO 0.00 5 11121 \N +459967 2025-11-06 10:31:40.396087+00 2025-11-06 10:31:40.396096+00 f t SUBTOTAL 0.00 1 11534 \N +459968 2025-11-06 10:31:40.398067+00 2025-11-06 10:31:40.398074+00 f t COSTO_SERVICIO 0.00 2 11534 \N +459969 2025-11-06 10:31:40.399377+00 2025-11-06 10:31:40.399383+00 f t DESCUENTO 0.00 3 11534 \N +459970 2025-11-06 10:31:40.40037+00 2025-11-06 10:31:40.400375+00 f t TOTAL 0.00 4 11534 \N +459971 2025-11-06 10:31:40.401266+00 2025-11-06 10:31:40.401271+00 f t ADELANTO 0.00 5 11534 \N +442052 2025-10-31 22:54:55.812279+00 2025-10-31 22:54:55.812288+00 f t SUBTOTAL 0.00 1 11123 \N +442053 2025-10-31 22:54:55.813729+00 2025-10-31 22:54:55.813735+00 f t COSTO_SERVICIO 0.00 2 11123 \N +442054 2025-10-31 22:54:55.814742+00 2025-10-31 22:54:55.814748+00 f t DESCUENTO 0.00 3 11123 \N +442055 2025-10-31 22:54:55.815697+00 2025-10-31 22:54:55.815706+00 f t TOTAL 0.00 4 11123 \N +442056 2025-10-31 22:54:55.81675+00 2025-10-31 22:54:55.816756+00 f t ADELANTO 0.00 5 11123 \N +460767 2025-11-06 13:13:09.933453+00 2025-11-06 13:13:09.933459+00 f t SUBTOTAL 55000.00 1 11547 \N +460768 2025-11-06 13:13:09.934942+00 2025-11-06 13:13:09.934949+00 f t COSTO_SERVICIO 0.00 2 11547 \N +460769 2025-11-06 13:13:09.936191+00 2025-11-06 13:13:09.936197+00 f t DESCUENTO 0.00 3 11547 \N +460770 2025-11-06 13:13:09.937276+00 2025-11-06 13:13:09.937281+00 f t TOTAL 55000.00 4 11547 \N +460771 2025-11-06 13:13:09.938238+00 2025-11-06 13:13:09.938243+00 f t ADELANTO 11000.00 5 11547 \N +442082 2025-10-31 22:55:37.772786+00 2025-10-31 22:55:37.772794+00 f t SUBTOTAL 46000.00 1 11122 \N +442083 2025-10-31 22:55:37.774573+00 2025-10-31 22:55:37.774579+00 f t COSTO_SERVICIO 0.00 2 11122 \N +442084 2025-10-31 22:55:37.775881+00 2025-10-31 22:55:37.775887+00 f t DESCUENTO 0.00 3 11122 \N +442085 2025-10-31 22:55:37.777122+00 2025-10-31 22:55:37.777128+00 f t TOTAL 46000.00 4 11122 \N +442086 2025-10-31 22:55:37.778263+00 2025-10-31 22:55:37.778268+00 f t ADELANTO 11000.00 5 11122 \N +450577 2025-11-03 23:11:16.431304+00 2025-11-03 23:11:16.43131+00 f t SUBTOTAL 133500.00 1 11319 \N +450578 2025-11-03 23:11:16.433102+00 2025-11-03 23:11:16.433107+00 f t COSTO_SERVICIO 0.00 2 11319 \N +450579 2025-11-03 23:11:16.434046+00 2025-11-03 23:11:16.434051+00 f t DESCUENTO 0.00 3 11319 \N +450580 2025-11-03 23:11:16.435115+00 2025-11-03 23:11:16.435122+00 f t TOTAL 133500.00 4 11319 \N +450581 2025-11-03 23:11:16.436191+00 2025-11-03 23:11:16.436196+00 f t ADELANTO 28500.00 5 11319 \N +442122 2025-10-31 23:02:21.690325+00 2025-10-31 23:02:21.690333+00 f t SUBTOTAL 55000.00 1 11124 \N +442123 2025-10-31 23:02:21.691908+00 2025-10-31 23:02:21.691914+00 f t COSTO_SERVICIO 0.00 2 11124 \N +442124 2025-10-31 23:02:21.693148+00 2025-10-31 23:02:21.693154+00 f t DESCUENTO 0.00 3 11124 \N +442125 2025-10-31 23:02:21.694065+00 2025-10-31 23:02:21.694071+00 f t TOTAL 55000.00 4 11124 \N +442126 2025-10-31 23:02:21.694925+00 2025-10-31 23:02:21.69493+00 f t ADELANTO 11000.00 5 11124 \N +451067 2025-11-04 00:27:11.14785+00 2025-11-04 00:27:11.147861+00 f t SUBTOTAL 0.00 1 11338 \N +451068 2025-11-04 00:27:11.149375+00 2025-11-04 00:27:11.149382+00 f t COSTO_SERVICIO 0.00 2 11338 \N +451069 2025-11-04 00:27:11.150502+00 2025-11-04 00:27:11.150508+00 f t DESCUENTO 0.00 3 11338 \N +451070 2025-11-04 00:27:11.151781+00 2025-11-04 00:27:11.151789+00 f t TOTAL 0.00 4 11338 \N +451071 2025-11-04 00:27:11.152879+00 2025-11-04 00:27:11.152887+00 f t ADELANTO 0.00 5 11338 \N +442152 2025-10-31 23:05:03.753993+00 2025-10-31 23:05:03.754005+00 f t SUBTOTAL 46000.00 1 11125 \N +442153 2025-10-31 23:05:03.75657+00 2025-10-31 23:05:03.756582+00 f t COSTO_SERVICIO 0.00 2 11125 \N +442154 2025-10-31 23:05:03.759443+00 2025-10-31 23:05:03.759457+00 f t DESCUENTO 0.00 3 11125 \N +442155 2025-10-31 23:05:03.761743+00 2025-10-31 23:05:03.761756+00 f t TOTAL 46000.00 4 11125 \N +442156 2025-10-31 23:05:03.76387+00 2025-10-31 23:05:03.763882+00 f t ADELANTO 11000.00 5 11125 \N +442162 2025-10-31 23:13:04.36706+00 2025-10-31 23:13:04.367073+00 f t SUBTOTAL 0.00 1 11126 \N +442163 2025-10-31 23:13:04.368482+00 2025-10-31 23:13:04.368488+00 f t COSTO_SERVICIO 0.00 2 11126 \N +442164 2025-10-31 23:13:04.369887+00 2025-10-31 23:13:04.369893+00 f t DESCUENTO 0.00 3 11126 \N +442165 2025-10-31 23:13:04.371028+00 2025-10-31 23:13:04.371033+00 f t TOTAL 0.00 4 11126 \N +442166 2025-10-31 23:13:04.372057+00 2025-10-31 23:13:04.372062+00 f t ADELANTO 0.00 5 11126 \N +467128 2025-11-07 23:38:43.135644+00 2025-11-07 23:38:43.135652+00 f t COSTO_SERVICIO 0.00 2 11712 \N +467129 2025-11-07 23:38:43.137159+00 2025-11-07 23:38:43.137167+00 f t DESCUENTO 0.00 3 11712 \N +467130 2025-11-07 23:38:43.138261+00 2025-11-07 23:38:43.138268+00 f t TOTAL 46000.00 4 11712 \N +467131 2025-11-07 23:38:43.139343+00 2025-11-07 23:38:43.139348+00 f t ADELANTO 11000.00 5 11712 \N +442197 2025-10-31 23:16:22.05797+00 2025-10-31 23:16:22.057982+00 f t SUBTOTAL 0.00 1 11127 \N +442198 2025-10-31 23:16:22.059943+00 2025-10-31 23:16:22.05995+00 f t COSTO_SERVICIO 0.00 2 11127 \N +442199 2025-10-31 23:16:22.061026+00 2025-10-31 23:16:22.061031+00 f t DESCUENTO 0.00 3 11127 \N +442200 2025-10-31 23:16:22.062139+00 2025-10-31 23:16:22.062145+00 f t TOTAL 0.00 4 11127 \N +442201 2025-10-31 23:16:22.063451+00 2025-10-31 23:16:22.063457+00 f t ADELANTO 0.00 5 11127 \N +456897 2025-11-05 15:21:28.740874+00 2025-11-05 15:21:28.740881+00 f t SUBTOTAL 171000.00 1 11470 \N +456898 2025-11-05 15:21:28.742746+00 2025-11-05 15:21:28.742753+00 f t COSTO_SERVICIO 0.00 2 11470 \N +456899 2025-11-05 15:21:28.7441+00 2025-11-05 15:21:28.744106+00 f t DESCUENTO 9200.00 3 11470 \N +456900 2025-11-05 15:21:28.745388+00 2025-11-05 15:21:28.745396+00 f t TOTAL 161800.00 4 11470 \N +456901 2025-11-05 15:21:28.746672+00 2025-11-05 15:21:28.746679+00 f t ADELANTO 90000.00 5 11470 \N +457137 2025-11-05 18:57:30.171367+00 2025-11-05 18:57:30.171374+00 f t SUBTOTAL 54000.00 1 11480 \N +457138 2025-11-05 18:57:30.173074+00 2025-11-05 18:57:30.17308+00 f t COSTO_SERVICIO 0.00 2 11480 \N +457139 2025-11-05 18:57:30.174296+00 2025-11-05 18:57:30.174302+00 f t DESCUENTO 0.00 3 11480 \N +457140 2025-11-05 18:57:30.175492+00 2025-11-05 18:57:30.175497+00 f t TOTAL 54000.00 4 11480 \N +457141 2025-11-05 18:57:30.176505+00 2025-11-05 18:57:30.17651+00 f t ADELANTO 13500.00 5 11480 \N +457687 2025-11-05 21:06:15.844615+00 2025-11-05 21:06:15.844624+00 f t SUBTOTAL 0.00 1 11494 \N +457688 2025-11-05 21:06:15.845894+00 2025-11-05 21:06:15.845902+00 f t COSTO_SERVICIO 0.00 2 11494 \N +457689 2025-11-05 21:06:15.84684+00 2025-11-05 21:06:15.846846+00 f t DESCUENTO 0.00 3 11494 \N +457690 2025-11-05 21:06:15.847709+00 2025-11-05 21:06:15.847714+00 f t TOTAL 0.00 4 11494 \N +457691 2025-11-05 21:06:15.848435+00 2025-11-05 21:06:15.84844+00 f t ADELANTO 0.00 5 11494 \N +458172 2025-11-05 23:00:28.329268+00 2025-11-05 23:00:28.329275+00 f t SUBTOTAL 234000.00 1 11502 \N +458173 2025-11-05 23:00:28.331367+00 2025-11-05 23:00:28.331377+00 f t COSTO_SERVICIO 0.00 2 11502 \N +458174 2025-11-05 23:00:28.333037+00 2025-11-05 23:00:28.333045+00 f t DESCUENTO 9200.00 3 11502 \N +458175 2025-11-05 23:00:28.338963+00 2025-11-05 23:00:28.338973+00 f t TOTAL 224800.00 4 11502 \N +458176 2025-11-05 23:00:28.341431+00 2025-11-05 23:00:28.341443+00 f t ADELANTO 64500.00 5 11502 \N +448247 2025-11-03 12:46:39.528026+00 2025-11-03 12:46:39.528034+00 f t SUBTOTAL 30000.00 1 11267 \N +448248 2025-11-03 12:46:39.529517+00 2025-11-03 12:46:39.529523+00 f t COSTO_SERVICIO 0.00 2 11267 \N +448249 2025-11-03 12:46:39.530511+00 2025-11-03 12:46:39.530516+00 f t DESCUENTO 0.00 3 11267 \N +448250 2025-11-03 12:46:39.531435+00 2025-11-03 12:46:39.531441+00 f t TOTAL 30000.00 4 11267 \N +448251 2025-11-03 12:46:39.532315+00 2025-11-03 12:46:39.53232+00 f t ADELANTO 30000.00 5 11267 \N +459697 2025-11-06 07:56:07.980475+00 2025-11-06 07:56:07.980485+00 f t SUBTOTAL 23000.00 1 11527 \N +459698 2025-11-06 07:56:07.982704+00 2025-11-06 07:56:07.982711+00 f t COSTO_SERVICIO 0.00 2 11527 \N +459699 2025-11-06 07:56:07.984085+00 2025-11-06 07:56:07.984091+00 f t DESCUENTO 0.00 3 11527 \N +459700 2025-11-06 07:56:07.985285+00 2025-11-06 07:56:07.98529+00 f t TOTAL 23000.00 4 11527 \N +459701 2025-11-06 07:56:07.986447+00 2025-11-06 07:56:07.986453+00 f t ADELANTO 5500.00 5 11527 \N +450042 2025-11-03 18:38:00.8866+00 2025-11-03 18:38:00.886608+00 f t SUBTOTAL 60000.00 1 11314 \N +450043 2025-11-03 18:38:00.888367+00 2025-11-03 18:38:00.888374+00 f t COSTO_SERVICIO 0.00 2 11314 \N +450044 2025-11-03 18:38:00.889613+00 2025-11-03 18:38:00.889618+00 f t DESCUENTO 0.00 3 11314 \N +450045 2025-11-03 18:38:00.89071+00 2025-11-03 18:38:00.890715+00 f t TOTAL 60000.00 4 11314 \N +450046 2025-11-03 18:38:00.891623+00 2025-11-03 18:38:00.891628+00 f t ADELANTO 50000.00 5 11314 \N +459977 2025-11-06 11:31:55.863084+00 2025-11-06 11:31:55.863096+00 f t SUBTOTAL 0.00 1 11535 \N +459978 2025-11-06 11:31:55.864755+00 2025-11-06 11:31:55.864789+00 f t COSTO_SERVICIO 0.00 2 11535 \N +459979 2025-11-06 11:31:55.865862+00 2025-11-06 11:31:55.865868+00 f t DESCUENTO 0.00 3 11535 \N +459980 2025-11-06 11:31:55.866884+00 2025-11-06 11:31:55.866892+00 f t TOTAL 0.00 4 11535 \N +459981 2025-11-06 11:31:55.868065+00 2025-11-06 11:31:55.868071+00 f t ADELANTO 0.00 5 11535 \N +460242 2025-11-06 12:00:18.103245+00 2025-11-06 12:00:18.103259+00 f t SUBTOTAL 0.00 1 11539 \N +460243 2025-11-06 12:00:18.10606+00 2025-11-06 12:00:18.106072+00 f t COSTO_SERVICIO 0.00 2 11539 \N +460244 2025-11-06 12:00:18.108255+00 2025-11-06 12:00:18.108267+00 f t DESCUENTO 0.00 3 11539 \N +460245 2025-11-06 12:00:18.110367+00 2025-11-06 12:00:18.110379+00 f t TOTAL 0.00 4 11539 \N +460246 2025-11-06 12:00:18.112235+00 2025-11-06 12:00:18.112245+00 f t ADELANTO 0.00 5 11539 \N +442362 2025-10-31 23:21:13.37579+00 2025-10-31 23:21:13.375798+00 f t SUBTOTAL 162000.00 1 11128 \N +442363 2025-10-31 23:21:13.377277+00 2025-10-31 23:21:13.377283+00 f t COSTO_SERVICIO 0.00 2 11128 \N +442364 2025-10-31 23:21:13.378751+00 2025-10-31 23:21:13.378757+00 f t DESCUENTO 9200.00 3 11128 \N +442365 2025-10-31 23:21:13.37996+00 2025-10-31 23:21:13.379966+00 f t TOTAL 152800.00 4 11128 \N +442366 2025-10-31 23:21:13.380999+00 2025-10-31 23:21:13.381004+00 f t ADELANTO 40500.00 5 11128 \N +450882 2025-11-04 00:00:09.406884+00 2025-11-04 00:00:09.4069+00 f t SUBTOTAL 0.00 1 11335 \N +450883 2025-11-04 00:00:09.413113+00 2025-11-04 00:00:09.413128+00 f t COSTO_SERVICIO 0.00 2 11335 \N +450884 2025-11-04 00:00:09.416404+00 2025-11-04 00:00:09.416418+00 f t DESCUENTO 0.00 3 11335 \N +450885 2025-11-04 00:00:09.419253+00 2025-11-04 00:00:09.419269+00 f t TOTAL 0.00 4 11335 \N +450886 2025-11-04 00:00:09.422816+00 2025-11-04 00:00:09.42283+00 f t ADELANTO 0.00 5 11335 \N +461142 2025-11-06 16:05:27.786236+00 2025-11-06 16:05:27.786243+00 f t SUBTOTAL 119400.00 1 11510 \N +451077 2025-11-04 00:58:35.861168+00 2025-11-04 00:58:35.861177+00 f t SUBTOTAL 0.00 1 11339 \N +451078 2025-11-04 00:58:35.862641+00 2025-11-04 00:58:35.862648+00 f t COSTO_SERVICIO 0.00 2 11339 \N +451079 2025-11-04 00:58:35.864018+00 2025-11-04 00:58:35.864023+00 f t DESCUENTO 0.00 3 11339 \N +451080 2025-11-04 00:58:35.865341+00 2025-11-04 00:58:35.865348+00 f t TOTAL 0.00 4 11339 \N +451081 2025-11-04 00:58:35.86665+00 2025-11-04 00:58:35.866658+00 f t ADELANTO 0.00 5 11339 \N +461143 2025-11-06 16:05:27.787892+00 2025-11-06 16:05:27.787898+00 f t COSTO_SERVICIO 0.00 2 11510 \N +461144 2025-11-06 16:05:27.78904+00 2025-11-06 16:05:27.789046+00 f t DESCUENTO 0.00 3 11510 \N +461145 2025-11-06 16:05:27.790113+00 2025-11-06 16:05:27.790119+00 f t TOTAL 119400.00 4 11510 \N +461146 2025-11-06 16:05:27.790943+00 2025-11-06 16:05:27.790948+00 f t ADELANTO 78900.00 5 11510 \N +442432 2025-10-31 23:35:30.390423+00 2025-10-31 23:35:30.39043+00 f t SUBTOTAL 20500.00 1 11130 \N +442433 2025-10-31 23:35:30.391989+00 2025-10-31 23:35:30.391996+00 f t COSTO_SERVICIO 0.00 2 11130 \N +442434 2025-10-31 23:35:30.393017+00 2025-10-31 23:35:30.393022+00 f t DESCUENTO 0.00 3 11130 \N +442435 2025-10-31 23:35:30.39394+00 2025-10-31 23:35:30.393945+00 f t TOTAL 20500.00 4 11130 \N +442436 2025-10-31 23:35:30.394769+00 2025-10-31 23:35:30.394774+00 f t ADELANTO 20500.00 5 11130 \N +442477 2025-10-31 23:36:17.65454+00 2025-10-31 23:36:17.65455+00 f t SUBTOTAL 0.00 1 11131 \N +442478 2025-10-31 23:36:17.655899+00 2025-10-31 23:36:17.655909+00 f t COSTO_SERVICIO 0.00 2 11131 \N +442479 2025-10-31 23:36:17.657124+00 2025-10-31 23:36:17.657129+00 f t DESCUENTO 0.00 3 11131 \N +442480 2025-10-31 23:36:17.658057+00 2025-10-31 23:36:17.658063+00 f t TOTAL 0.00 4 11131 \N +442481 2025-10-31 23:36:17.658955+00 2025-10-31 23:36:17.658961+00 f t ADELANTO 0.00 5 11131 \N +477790 2025-11-10 19:59:06.190997+00 2025-11-10 19:59:06.191003+00 f t TOTAL 0.00 4 11946 \N +477791 2025-11-10 19:59:06.192257+00 2025-11-10 19:59:06.192262+00 f t ADELANTO 0.00 5 11946 \N +512267 2025-11-18 22:31:07.128047+00 2025-11-18 22:31:07.128059+00 f t SUBTOTAL 0.00 1 12751 \N +512268 2025-11-18 22:31:07.130793+00 2025-11-18 22:31:07.130805+00 f t COSTO_SERVICIO 0.00 2 12751 \N +512269 2025-11-18 22:31:07.132603+00 2025-11-18 22:31:07.132615+00 f t DESCUENTO 0.00 3 12751 \N +446362 2025-11-01 22:01:32.13109+00 2025-11-01 22:01:32.131098+00 f t SUBTOTAL 55000.00 1 11230 \N +446363 2025-11-01 22:01:32.13275+00 2025-11-01 22:01:32.132756+00 f t COSTO_SERVICIO 0.00 2 11230 \N +446364 2025-11-01 22:01:32.133865+00 2025-11-01 22:01:32.133872+00 f t DESCUENTO 0.00 3 11230 \N +446365 2025-11-01 22:01:32.134853+00 2025-11-01 22:01:32.134858+00 f t TOTAL 55000.00 4 11230 \N +446366 2025-11-01 22:01:32.135919+00 2025-11-01 22:01:32.135924+00 f t ADELANTO 11000.00 5 11230 \N +446577 2025-11-02 00:21:38.277678+00 2025-11-02 00:21:38.277685+00 f t SUBTOTAL 70000.00 1 11235 \N +446578 2025-11-02 00:21:38.279592+00 2025-11-02 00:21:38.279597+00 f t COSTO_SERVICIO 0.00 2 11235 \N +446579 2025-11-02 00:21:38.280802+00 2025-11-02 00:21:38.280807+00 f t DESCUENTO 0.00 3 11235 \N +446580 2025-11-02 00:21:38.281818+00 2025-11-02 00:21:38.281823+00 f t TOTAL 70000.00 4 11235 \N +446581 2025-11-02 00:21:38.282877+00 2025-11-02 00:21:38.282882+00 f t ADELANTO 19000.00 5 11235 \N +446942 2025-11-02 14:04:13.32342+00 2025-11-02 14:04:13.323427+00 f t SUBTOTAL 70000.00 1 11243 \N +446943 2025-11-02 14:04:13.324994+00 2025-11-02 14:04:13.324999+00 f t COSTO_SERVICIO 0.00 2 11243 \N +446944 2025-11-02 14:04:13.325945+00 2025-11-02 14:04:13.32595+00 f t DESCUENTO 0.00 3 11243 \N +446945 2025-11-02 14:04:13.326923+00 2025-11-02 14:04:13.326928+00 f t TOTAL 70000.00 4 11243 \N +446946 2025-11-02 14:04:13.327817+00 2025-11-02 14:04:13.327822+00 f t ADELANTO 19000.00 5 11243 \N +447457 2025-11-02 19:03:46.968452+00 2025-11-02 19:03:46.96846+00 f t SUBTOTAL 55000.00 1 11173 \N +447458 2025-11-02 19:03:46.970299+00 2025-11-02 19:03:46.970307+00 f t COSTO_SERVICIO 0.00 2 11173 \N +447459 2025-11-02 19:03:46.971546+00 2025-11-02 19:03:46.971553+00 f t DESCUENTO 0.00 3 11173 \N +447460 2025-11-02 19:03:46.972924+00 2025-11-02 19:03:46.972933+00 f t TOTAL 55000.00 4 11173 \N +447461 2025-11-02 19:03:46.973995+00 2025-11-02 19:03:46.974+00 f t ADELANTO 11000.00 5 11173 \N +447622 2025-11-02 21:09:59.837547+00 2025-11-02 21:09:59.837553+00 f t SUBTOTAL 46000.00 1 11257 \N +447623 2025-11-02 21:09:59.839454+00 2025-11-02 21:09:59.83946+00 f t COSTO_SERVICIO 0.00 2 11257 \N +447624 2025-11-02 21:09:59.840768+00 2025-11-02 21:09:59.840774+00 f t DESCUENTO 0.00 3 11257 \N +447625 2025-11-02 21:09:59.841731+00 2025-11-02 21:09:59.841735+00 f t TOTAL 46000.00 4 11257 \N +447626 2025-11-02 21:09:59.842765+00 2025-11-02 21:09:59.84277+00 f t ADELANTO 11000.00 5 11257 \N +447802 2025-11-03 09:49:43.677727+00 2025-11-03 09:49:43.677739+00 f t SUBTOTAL 0.00 1 11264 \N +447803 2025-11-03 09:49:43.67997+00 2025-11-03 09:49:43.679978+00 f t COSTO_SERVICIO 0.00 2 11264 \N +447804 2025-11-03 09:49:43.681372+00 2025-11-03 09:49:43.681378+00 f t DESCUENTO 0.00 3 11264 \N +447805 2025-11-03 09:49:43.682803+00 2025-11-03 09:49:43.682808+00 f t TOTAL 0.00 4 11264 \N +447806 2025-11-03 09:49:43.683902+00 2025-11-03 09:49:43.683907+00 f t ADELANTO 0.00 5 11264 \N +457147 2025-11-05 18:57:56.618701+00 2025-11-05 18:57:56.61871+00 f t SUBTOTAL 0.00 1 11482 \N +457148 2025-11-05 18:57:56.620315+00 2025-11-05 18:57:56.620322+00 f t COSTO_SERVICIO 0.00 2 11482 \N +457149 2025-11-05 18:57:56.621301+00 2025-11-05 18:57:56.621306+00 f t DESCUENTO 0.00 3 11482 \N +457150 2025-11-05 18:57:56.622229+00 2025-11-05 18:57:56.622234+00 f t TOTAL 0.00 4 11482 \N +457151 2025-11-05 18:57:56.623301+00 2025-11-05 18:57:56.623307+00 f t ADELANTO 0.00 5 11482 \N +448257 2025-11-03 12:52:09.508969+00 2025-11-03 12:52:09.508978+00 f t SUBTOTAL 0.00 1 11268 \N +448258 2025-11-03 12:52:09.510419+00 2025-11-03 12:52:09.510425+00 f t COSTO_SERVICIO 0.00 2 11268 \N +448259 2025-11-03 12:52:09.511389+00 2025-11-03 12:52:09.511394+00 f t DESCUENTO 0.00 3 11268 \N +448260 2025-11-03 12:52:09.512485+00 2025-11-03 12:52:09.51249+00 f t TOTAL 0.00 4 11268 \N +448261 2025-11-03 12:52:09.513416+00 2025-11-03 12:52:09.513421+00 f t ADELANTO 0.00 5 11268 \N +458647 2025-11-06 01:08:43.899664+00 2025-11-06 01:08:43.899672+00 f t SUBTOTAL 54000.00 1 11511 \N +458648 2025-11-06 01:08:43.901852+00 2025-11-06 01:08:43.90186+00 f t COSTO_SERVICIO 0.00 2 11511 \N +458649 2025-11-06 01:08:43.903393+00 2025-11-06 01:08:43.9034+00 f t DESCUENTO 0.00 3 11511 \N +458650 2025-11-06 01:08:43.904693+00 2025-11-06 01:08:43.904698+00 f t TOTAL 54000.00 4 11511 \N +458651 2025-11-06 01:08:43.905973+00 2025-11-06 01:08:43.905978+00 f t ADELANTO 13500.00 5 11511 \N +450047 2025-11-03 18:41:59.657919+00 2025-11-03 18:41:59.657926+00 f t SUBTOTAL 55000.00 1 11309 \N +450048 2025-11-03 18:41:59.659842+00 2025-11-03 18:41:59.65985+00 f t COSTO_SERVICIO 0.00 2 11309 \N +450049 2025-11-03 18:41:59.660984+00 2025-11-03 18:41:59.66099+00 f t DESCUENTO 0.00 3 11309 \N +450050 2025-11-03 18:41:59.661979+00 2025-11-03 18:41:59.661986+00 f t TOTAL 55000.00 4 11309 \N +450051 2025-11-03 18:41:59.663011+00 2025-11-03 18:41:59.663015+00 f t ADELANTO 11000.00 5 11309 \N +458942 2025-11-06 02:54:52.531452+00 2025-11-06 02:54:52.53146+00 f t SUBTOTAL 60000.00 1 11519 \N +458943 2025-11-06 02:54:52.533138+00 2025-11-06 02:54:52.533146+00 f t COSTO_SERVICIO 0.00 2 11519 \N +458944 2025-11-06 02:54:52.53468+00 2025-11-06 02:54:52.534686+00 f t DESCUENTO 0.00 3 11519 \N +458945 2025-11-06 02:54:52.535711+00 2025-11-06 02:54:52.535717+00 f t TOTAL 60000.00 4 11519 \N +458946 2025-11-06 02:54:52.53661+00 2025-11-06 02:54:52.536614+00 f t ADELANTO 50000.00 5 11519 \N +459987 2025-11-06 11:42:15.104121+00 2025-11-06 11:42:15.104131+00 f t SUBTOTAL 0.00 1 11536 \N +459988 2025-11-06 11:42:15.105652+00 2025-11-06 11:42:15.105658+00 f t COSTO_SERVICIO 0.00 2 11536 \N +459989 2025-11-06 11:42:15.107009+00 2025-11-06 11:42:15.107015+00 f t DESCUENTO 0.00 3 11536 \N +459990 2025-11-06 11:42:15.10847+00 2025-11-06 11:42:15.108476+00 f t TOTAL 0.00 4 11536 \N +459991 2025-11-06 11:42:15.109643+00 2025-11-06 11:42:15.109649+00 f t ADELANTO 0.00 5 11536 \N +460247 2025-11-06 12:00:20.710417+00 2025-11-06 12:00:20.71043+00 f t SUBTOTAL 0.00 1 11540 \N +460248 2025-11-06 12:00:20.714115+00 2025-11-06 12:00:20.71413+00 f t COSTO_SERVICIO 0.00 2 11540 \N +460249 2025-11-06 12:00:20.716706+00 2025-11-06 12:00:20.71672+00 f t DESCUENTO 0.00 3 11540 \N +460250 2025-11-06 12:00:20.719511+00 2025-11-06 12:00:20.719522+00 f t TOTAL 0.00 4 11540 \N +460251 2025-11-06 12:00:20.721985+00 2025-11-06 12:00:20.721998+00 f t ADELANTO 0.00 5 11540 \N +442747 2025-10-31 23:48:58.620447+00 2025-10-31 23:48:58.620455+00 f t SUBTOTAL 46000.00 1 11129 \N +442748 2025-10-31 23:48:58.622002+00 2025-10-31 23:48:58.622008+00 f t COSTO_SERVICIO 0.00 2 11129 \N +442749 2025-10-31 23:48:58.623105+00 2025-10-31 23:48:58.623111+00 f t DESCUENTO 0.00 3 11129 \N +442750 2025-10-31 23:48:58.624099+00 2025-10-31 23:48:58.624104+00 f t TOTAL 46000.00 4 11129 \N +442751 2025-10-31 23:48:58.625327+00 2025-10-31 23:48:58.625332+00 f t ADELANTO 11000.00 5 11129 \N +456437 2025-11-05 13:20:55.716457+00 2025-11-05 13:20:55.716466+00 f t SUBTOTAL 46000.00 1 11459 \N +456438 2025-11-05 13:20:55.718067+00 2025-11-05 13:20:55.718075+00 f t COSTO_SERVICIO 0.00 2 11459 \N +456439 2025-11-05 13:20:55.719127+00 2025-11-05 13:20:55.719147+00 f t DESCUENTO 0.00 3 11459 \N +456440 2025-11-05 13:20:55.720416+00 2025-11-05 13:20:55.720421+00 f t TOTAL 46000.00 4 11459 \N +456441 2025-11-05 13:20:55.721427+00 2025-11-05 13:20:55.721432+00 f t ADELANTO 11000.00 5 11459 \N +467137 2025-11-08 00:35:14.108121+00 2025-11-08 00:35:14.10813+00 f t SUBTOTAL 0.00 1 11713 \N +467138 2025-11-08 00:35:14.109621+00 2025-11-08 00:35:14.109628+00 f t COSTO_SERVICIO 0.00 2 11713 \N +467139 2025-11-08 00:35:14.110783+00 2025-11-08 00:35:14.110791+00 f t DESCUENTO 0.00 3 11713 \N +467140 2025-11-08 00:35:14.111814+00 2025-11-08 00:35:14.111819+00 f t TOTAL 0.00 4 11713 \N +467141 2025-11-08 00:35:14.112899+00 2025-11-08 00:35:14.112904+00 f t ADELANTO 0.00 5 11713 \N +457152 2025-11-05 18:58:56.682749+00 2025-11-05 18:58:56.682758+00 f t SUBTOTAL 13200.00 1 11481 \N +457153 2025-11-05 18:58:56.684757+00 2025-11-05 18:58:56.684764+00 f t COSTO_SERVICIO 0.00 2 11481 \N +457154 2025-11-05 18:58:56.686253+00 2025-11-05 18:58:56.686259+00 f t DESCUENTO 0.00 3 11481 \N +457155 2025-11-05 18:58:56.687631+00 2025-11-05 18:58:56.687636+00 f t TOTAL 13200.00 4 11481 \N +457156 2025-11-05 18:58:56.688928+00 2025-11-05 18:58:56.688933+00 f t ADELANTO 13200.00 5 11481 \N +457337 2025-11-05 19:38:07.454827+00 2025-11-05 19:38:07.454835+00 f t SUBTOTAL 46000.00 1 11485 \N +457338 2025-11-05 19:38:07.456801+00 2025-11-05 19:38:07.456811+00 f t COSTO_SERVICIO 0.00 2 11485 \N +457339 2025-11-05 19:38:07.458227+00 2025-11-05 19:38:07.458233+00 f t DESCUENTO 0.00 3 11485 \N +457340 2025-11-05 19:38:07.459445+00 2025-11-05 19:38:07.459451+00 f t TOTAL 46000.00 4 11485 \N +457341 2025-11-05 19:38:07.46059+00 2025-11-05 19:38:07.460596+00 f t ADELANTO 11000.00 5 11485 \N +442797 2025-10-31 23:55:09.466848+00 2025-10-31 23:55:09.466861+00 f t SUBTOTAL 46000.00 1 11132 \N +442798 2025-10-31 23:55:09.468914+00 2025-10-31 23:55:09.468925+00 f t COSTO_SERVICIO 0.00 2 11132 \N +442799 2025-10-31 23:55:09.470407+00 2025-10-31 23:55:09.470413+00 f t DESCUENTO 0.00 3 11132 \N +442800 2025-10-31 23:55:09.471707+00 2025-10-31 23:55:09.471713+00 f t TOTAL 46000.00 4 11132 \N +442801 2025-10-31 23:55:09.472811+00 2025-10-31 23:55:09.472817+00 f t ADELANTO 11000.00 5 11132 \N +446952 2025-11-02 16:23:10.068831+00 2025-11-02 16:23:10.068843+00 f t SUBTOTAL 0.00 1 11244 \N +446953 2025-11-02 16:23:10.070684+00 2025-11-02 16:23:10.070696+00 f t COSTO_SERVICIO 0.00 2 11244 \N +446954 2025-11-02 16:23:10.072987+00 2025-11-02 16:23:10.072996+00 f t DESCUENTO 0.00 3 11244 \N +446955 2025-11-02 16:23:10.07423+00 2025-11-02 16:23:10.074238+00 f t TOTAL 0.00 4 11244 \N +446956 2025-11-02 16:23:10.075453+00 2025-11-02 16:23:10.07546+00 f t ADELANTO 0.00 5 11244 \N +447632 2025-11-02 22:37:50.800248+00 2025-11-02 22:37:50.800257+00 f t SUBTOTAL 0.00 1 11258 \N +447633 2025-11-02 22:37:50.801584+00 2025-11-02 22:37:50.801591+00 f t COSTO_SERVICIO 0.00 2 11258 \N +442842 2025-11-01 00:18:42.565588+00 2025-11-01 00:18:42.565597+00 f t SUBTOTAL 0.00 1 11133 \N +442843 2025-11-01 00:18:42.567641+00 2025-11-01 00:18:42.567649+00 f t COSTO_SERVICIO 0.00 2 11133 \N +442844 2025-11-01 00:18:42.569045+00 2025-11-01 00:18:42.569054+00 f t DESCUENTO 0.00 3 11133 \N +442845 2025-11-01 00:18:42.570336+00 2025-11-01 00:18:42.570345+00 f t TOTAL 0.00 4 11133 \N +442846 2025-11-01 00:18:42.571462+00 2025-11-01 00:18:42.571467+00 f t ADELANTO 0.00 5 11133 \N +447634 2025-11-02 22:37:50.802569+00 2025-11-02 22:37:50.802576+00 f t DESCUENTO 0.00 3 11258 \N +447635 2025-11-02 22:37:50.803436+00 2025-11-02 22:37:50.803441+00 f t TOTAL 0.00 4 11258 \N +447636 2025-11-02 22:37:50.804242+00 2025-11-02 22:37:50.804247+00 f t ADELANTO 0.00 5 11258 \N +442852 2025-11-01 00:19:06.751376+00 2025-11-01 00:19:06.751386+00 f t SUBTOTAL 0.00 1 11134 \N +442853 2025-11-01 00:19:06.753048+00 2025-11-01 00:19:06.753061+00 f t COSTO_SERVICIO 0.00 2 11134 \N +442854 2025-11-01 00:19:06.754524+00 2025-11-01 00:19:06.75453+00 f t DESCUENTO 0.00 3 11134 \N +442855 2025-11-01 00:19:06.755703+00 2025-11-01 00:19:06.755709+00 f t TOTAL 0.00 4 11134 \N +442856 2025-11-01 00:19:06.75662+00 2025-11-01 00:19:06.756625+00 f t ADELANTO 0.00 5 11134 \N +442862 2025-11-01 00:19:27.526578+00 2025-11-01 00:19:27.526586+00 f t SUBTOTAL 0.00 1 11135 \N +442863 2025-11-01 00:19:27.527905+00 2025-11-01 00:19:27.527911+00 f t COSTO_SERVICIO 0.00 2 11135 \N +442864 2025-11-01 00:19:27.52886+00 2025-11-01 00:19:27.528866+00 f t DESCUENTO 0.00 3 11135 \N +442865 2025-11-01 00:19:27.529771+00 2025-11-01 00:19:27.529776+00 f t TOTAL 0.00 4 11135 \N +442866 2025-11-01 00:19:27.530555+00 2025-11-01 00:19:27.53056+00 f t ADELANTO 0.00 5 11135 \N +448607 2025-11-03 15:30:10.92012+00 2025-11-03 15:30:10.920133+00 f t SUBTOTAL 46000.00 1 11284 \N +448608 2025-11-03 15:30:10.922471+00 2025-11-03 15:30:10.922482+00 f t COSTO_SERVICIO 0.00 2 11284 \N +448609 2025-11-03 15:30:10.924207+00 2025-11-03 15:30:10.92422+00 f t DESCUENTO 0.00 3 11284 \N +448610 2025-11-03 15:30:10.925602+00 2025-11-03 15:30:10.925609+00 f t TOTAL 46000.00 4 11284 \N +448611 2025-11-03 15:30:10.927253+00 2025-11-03 15:30:10.927262+00 f t ADELANTO 11000.00 5 11284 \N +442912 2025-11-01 00:25:24.770099+00 2025-11-01 00:25:24.770109+00 f t SUBTOTAL 0.00 1 11136 \N +442913 2025-11-01 00:25:24.771919+00 2025-11-01 00:25:24.771926+00 f t COSTO_SERVICIO 0.00 2 11136 \N +442914 2025-11-01 00:25:24.773245+00 2025-11-01 00:25:24.773252+00 f t DESCUENTO 0.00 3 11136 \N +442915 2025-11-01 00:25:24.774291+00 2025-11-01 00:25:24.774298+00 f t TOTAL 0.00 4 11136 \N +442916 2025-11-01 00:25:24.775288+00 2025-11-01 00:25:24.775293+00 f t ADELANTO 0.00 5 11136 \N +442942 2025-11-01 00:26:52.020156+00 2025-11-01 00:26:52.020165+00 f t SUBTOTAL 87000.00 1 11137 \N +442943 2025-11-01 00:26:52.021877+00 2025-11-01 00:26:52.021884+00 f t COSTO_SERVICIO 0.00 2 11137 \N +442944 2025-11-01 00:26:52.023115+00 2025-11-01 00:26:52.023121+00 f t DESCUENTO 0.00 3 11137 \N +442945 2025-11-01 00:26:52.024155+00 2025-11-01 00:26:52.024161+00 f t TOTAL 87000.00 4 11137 \N +442946 2025-11-01 00:26:52.027835+00 2025-11-01 00:26:52.027842+00 f t ADELANTO 87000.00 5 11137 \N +450057 2025-11-03 19:01:59.484339+00 2025-11-03 19:01:59.484348+00 f t SUBTOTAL 0.00 1 11315 \N +450058 2025-11-03 19:01:59.485758+00 2025-11-03 19:01:59.485764+00 f t COSTO_SERVICIO 0.00 2 11315 \N +450059 2025-11-03 19:01:59.48686+00 2025-11-03 19:01:59.486865+00 f t DESCUENTO 0.00 3 11315 \N +450060 2025-11-03 19:01:59.487888+00 2025-11-03 19:01:59.487898+00 f t TOTAL 0.00 4 11315 \N +450061 2025-11-03 19:01:59.488754+00 2025-11-03 19:01:59.488759+00 f t ADELANTO 0.00 5 11315 \N +442982 2025-11-01 00:36:44.510922+00 2025-11-01 00:36:44.51093+00 f t SUBTOTAL 54000.00 1 11138 \N +442983 2025-11-01 00:36:44.512649+00 2025-11-01 00:36:44.512656+00 f t COSTO_SERVICIO 0.00 2 11138 \N +442984 2025-11-01 00:36:44.51385+00 2025-11-01 00:36:44.513856+00 f t DESCUENTO 0.00 3 11138 \N +442985 2025-11-01 00:36:44.514795+00 2025-11-01 00:36:44.5148+00 f t TOTAL 54000.00 4 11138 \N +442986 2025-11-01 00:36:44.515937+00 2025-11-01 00:36:44.515942+00 f t ADELANTO 13500.00 5 11138 \N +461652 2025-11-06 16:49:02.537198+00 2025-11-06 16:49:02.537209+00 f t SUBTOTAL 0.00 1 11568 \N +461653 2025-11-06 16:49:02.540178+00 2025-11-06 16:49:02.540192+00 f t COSTO_SERVICIO 0.00 2 11568 \N +461654 2025-11-06 16:49:02.542624+00 2025-11-06 16:49:02.542636+00 f t DESCUENTO 0.00 3 11568 \N +461655 2025-11-06 16:49:02.545154+00 2025-11-06 16:49:02.545166+00 f t TOTAL 0.00 4 11568 \N +461656 2025-11-06 16:49:02.54926+00 2025-11-06 16:49:02.549279+00 f t ADELANTO 0.00 5 11568 \N +446772 2025-11-02 11:58:35.089457+00 2025-11-02 11:58:35.089466+00 f t SUBTOTAL 0.00 1 11238 \N +446773 2025-11-02 11:58:35.09139+00 2025-11-02 11:58:35.0914+00 f t COSTO_SERVICIO 0.00 2 11238 \N +446774 2025-11-02 11:58:35.092549+00 2025-11-02 11:58:35.092558+00 f t DESCUENTO 0.00 3 11238 \N +446775 2025-11-02 11:58:35.09357+00 2025-11-02 11:58:35.093576+00 f t TOTAL 0.00 4 11238 \N +446776 2025-11-02 11:58:35.094572+00 2025-11-02 11:58:35.094577+00 f t ADELANTO 0.00 5 11238 \N +443087 2025-11-01 00:57:20.37187+00 2025-11-01 00:57:20.371881+00 f t SUBTOTAL 75000.00 1 11140 \N +443088 2025-11-01 00:57:20.373661+00 2025-11-01 00:57:20.373675+00 f t COSTO_SERVICIO 0.00 2 11140 \N +443089 2025-11-01 00:57:20.37502+00 2025-11-01 00:57:20.375029+00 f t DESCUENTO 0.00 3 11140 \N +443090 2025-11-01 00:57:20.376578+00 2025-11-01 00:57:20.376601+00 f t TOTAL 75000.00 4 11140 \N +443091 2025-11-01 00:57:20.377885+00 2025-11-01 00:57:20.377894+00 f t ADELANTO 15000.00 5 11140 \N +457872 2025-11-05 22:07:14.588232+00 2025-11-05 22:07:14.58824+00 f t SUBTOTAL 46000.00 1 11498 \N +457873 2025-11-05 22:07:14.590182+00 2025-11-05 22:07:14.590193+00 f t COSTO_SERVICIO 0.00 2 11498 \N +457874 2025-11-05 22:07:14.592812+00 2025-11-05 22:07:14.59282+00 f t DESCUENTO 0.00 3 11498 \N +457875 2025-11-05 22:07:14.5942+00 2025-11-05 22:07:14.594209+00 f t TOTAL 46000.00 4 11498 \N +457876 2025-11-05 22:07:14.59545+00 2025-11-05 22:07:14.595456+00 f t ADELANTO 11000.00 5 11498 \N +443132 2025-11-01 01:10:51.647066+00 2025-11-01 01:10:51.647075+00 f t SUBTOTAL 55000.00 1 11141 \N +443133 2025-11-01 01:10:51.648538+00 2025-11-01 01:10:51.648544+00 f t COSTO_SERVICIO 0.00 2 11141 \N +443134 2025-11-01 01:10:51.649701+00 2025-11-01 01:10:51.649709+00 f t DESCUENTO 0.00 3 11141 \N +443135 2025-11-01 01:10:51.650748+00 2025-11-01 01:10:51.650754+00 f t TOTAL 55000.00 4 11141 \N +443136 2025-11-01 01:10:51.65174+00 2025-11-01 01:10:51.651746+00 f t ADELANTO 11000.00 5 11141 \N +448277 2025-11-03 13:00:41.485515+00 2025-11-03 13:00:41.48553+00 f t SUBTOTAL 0.00 1 11270 \N +448278 2025-11-03 13:00:41.487474+00 2025-11-03 13:00:41.487485+00 f t COSTO_SERVICIO 0.00 2 11270 \N +448279 2025-11-03 13:00:41.489592+00 2025-11-03 13:00:41.489603+00 f t DESCUENTO 0.00 3 11270 \N +448280 2025-11-03 13:00:41.491085+00 2025-11-03 13:00:41.491093+00 f t TOTAL 0.00 4 11270 \N +448281 2025-11-03 13:00:41.492588+00 2025-11-03 13:00:41.492599+00 f t ADELANTO 0.00 5 11270 \N +448462 2025-11-03 14:46:28.376753+00 2025-11-03 14:46:28.376762+00 f t SUBTOTAL 0.00 1 11279 \N +448463 2025-11-03 14:46:28.378605+00 2025-11-03 14:46:28.378612+00 f t COSTO_SERVICIO 0.00 2 11279 \N +448464 2025-11-03 14:46:28.379687+00 2025-11-03 14:46:28.379693+00 f t DESCUENTO 0.00 3 11279 \N +448465 2025-11-03 14:46:28.380594+00 2025-11-03 14:46:28.380599+00 f t TOTAL 0.00 4 11279 \N +448466 2025-11-03 14:46:28.381413+00 2025-11-03 14:46:28.381417+00 f t ADELANTO 0.00 5 11279 \N +443162 2025-11-01 01:28:24.485528+00 2025-11-01 01:28:24.485537+00 f t SUBTOTAL 46000.00 1 11142 \N +443163 2025-11-01 01:28:24.487098+00 2025-11-01 01:28:24.487106+00 f t COSTO_SERVICIO 0.00 2 11142 \N +443164 2025-11-01 01:28:24.488344+00 2025-11-01 01:28:24.48835+00 f t DESCUENTO 0.00 3 11142 \N +443165 2025-11-01 01:28:24.489411+00 2025-11-01 01:28:24.489417+00 f t TOTAL 46000.00 4 11142 \N +443166 2025-11-01 01:28:24.490443+00 2025-11-01 01:28:24.490448+00 f t ADELANTO 11000.00 5 11142 \N +458812 2025-11-06 02:21:11.152122+00 2025-11-06 02:21:11.152134+00 f t SUBTOTAL 46000.00 1 11517 \N +458813 2025-11-06 02:21:11.154271+00 2025-11-06 02:21:11.154282+00 f t COSTO_SERVICIO 0.00 2 11517 \N +458814 2025-11-06 02:21:11.15595+00 2025-11-06 02:21:11.15596+00 f t DESCUENTO 0.00 3 11517 \N +458815 2025-11-06 02:21:11.157491+00 2025-11-06 02:21:11.1575+00 f t TOTAL 46000.00 4 11517 \N +458816 2025-11-06 02:21:11.159004+00 2025-11-06 02:21:11.159013+00 f t ADELANTO 11000.00 5 11517 \N +448887 2025-11-03 15:45:50.63847+00 2025-11-03 15:45:50.638479+00 f t SUBTOTAL 86500.00 1 11288 \N +448888 2025-11-03 15:45:50.640383+00 2025-11-03 15:45:50.640389+00 f t COSTO_SERVICIO 0.00 2 11288 \N +448889 2025-11-03 15:45:50.641624+00 2025-11-03 15:45:50.64163+00 f t DESCUENTO 0.00 3 11288 \N +448890 2025-11-03 15:45:50.64272+00 2025-11-03 15:45:50.642725+00 f t TOTAL 86500.00 4 11288 \N +448891 2025-11-03 15:45:50.643831+00 2025-11-03 15:45:50.643837+00 f t ADELANTO 19000.00 5 11288 \N +449432 2025-11-03 17:24:13.142781+00 2025-11-03 17:24:13.14279+00 f t SUBTOTAL 0.00 1 11302 \N +449433 2025-11-03 17:24:13.144486+00 2025-11-03 17:24:13.144493+00 f t COSTO_SERVICIO 0.00 2 11302 \N +449434 2025-11-03 17:24:13.145696+00 2025-11-03 17:24:13.145701+00 f t DESCUENTO 0.00 3 11302 \N +449435 2025-11-03 17:24:13.146668+00 2025-11-03 17:24:13.146673+00 f t TOTAL 0.00 4 11302 \N +449436 2025-11-03 17:24:13.147614+00 2025-11-03 17:24:13.147619+00 f t ADELANTO 0.00 5 11302 \N +443217 2025-11-01 01:36:15.887677+00 2025-11-01 01:36:15.887686+00 f t SUBTOTAL 0.00 1 11143 \N +443218 2025-11-01 01:36:15.889303+00 2025-11-01 01:36:15.88931+00 f t COSTO_SERVICIO 0.00 2 11143 \N +443219 2025-11-01 01:36:15.890458+00 2025-11-01 01:36:15.890466+00 f t DESCUENTO 0.00 3 11143 \N +443220 2025-11-01 01:36:15.89151+00 2025-11-01 01:36:15.891516+00 f t TOTAL 0.00 4 11143 \N +443221 2025-11-01 01:36:15.892419+00 2025-11-01 01:36:15.892426+00 f t ADELANTO 0.00 5 11143 \N +443252 2025-11-01 01:39:09.851694+00 2025-11-01 01:39:09.851702+00 f t SUBTOTAL 46000.00 1 11144 \N +443253 2025-11-01 01:39:09.853497+00 2025-11-01 01:39:09.853504+00 f t COSTO_SERVICIO 0.00 2 11144 \N +443254 2025-11-01 01:39:09.854749+00 2025-11-01 01:39:09.854755+00 f t DESCUENTO 0.00 3 11144 \N +443255 2025-11-01 01:39:09.855906+00 2025-11-01 01:39:09.855913+00 f t TOTAL 46000.00 4 11144 \N +443256 2025-11-01 01:39:09.857044+00 2025-11-01 01:39:09.857052+00 f t ADELANTO 11000.00 5 11144 \N +460922 2025-11-06 13:51:42.766427+00 2025-11-06 13:51:42.766435+00 f t SUBTOTAL 46000.00 1 11553 \N +460923 2025-11-06 13:51:42.768428+00 2025-11-06 13:51:42.768434+00 f t COSTO_SERVICIO 0.00 2 11553 \N +460924 2025-11-06 13:51:42.769574+00 2025-11-06 13:51:42.76958+00 f t DESCUENTO 0.00 3 11553 \N +460925 2025-11-06 13:51:42.770753+00 2025-11-06 13:51:42.770758+00 f t TOTAL 46000.00 4 11553 \N +460926 2025-11-06 13:51:42.771902+00 2025-11-06 13:51:42.771907+00 f t ADELANTO 11000.00 5 11553 \N +450792 2025-11-03 23:24:18.444184+00 2025-11-03 23:24:18.444193+00 f t SUBTOTAL 0.00 1 11330 \N +450793 2025-11-03 23:24:18.446225+00 2025-11-03 23:24:18.446232+00 f t COSTO_SERVICIO 0.00 2 11330 \N +450794 2025-11-03 23:24:18.447512+00 2025-11-03 23:24:18.447517+00 f t DESCUENTO 0.00 3 11330 \N +450795 2025-11-03 23:24:18.448654+00 2025-11-03 23:24:18.448659+00 f t TOTAL 0.00 4 11330 \N +450796 2025-11-03 23:24:18.449679+00 2025-11-03 23:24:18.449685+00 f t ADELANTO 0.00 5 11330 \N +443297 2025-11-01 01:45:08.540487+00 2025-11-01 01:45:08.540495+00 f t SUBTOTAL 46000.00 1 11145 \N +443298 2025-11-01 01:45:08.542049+00 2025-11-01 01:45:08.542055+00 f t COSTO_SERVICIO 0.00 2 11145 \N +443299 2025-11-01 01:45:08.54336+00 2025-11-01 01:45:08.543366+00 f t DESCUENTO 0.00 3 11145 \N +443300 2025-11-01 01:45:08.544449+00 2025-11-01 01:45:08.544455+00 f t TOTAL 46000.00 4 11145 \N +443301 2025-11-01 01:45:08.545496+00 2025-11-01 01:45:08.545502+00 f t ADELANTO 11000.00 5 11145 \N +443332 2025-11-01 01:47:05.733893+00 2025-11-01 01:47:05.733902+00 f t SUBTOTAL 46000.00 1 11146 \N +443333 2025-11-01 01:47:05.735489+00 2025-11-01 01:47:05.735496+00 f t COSTO_SERVICIO 0.00 2 11146 \N +443334 2025-11-01 01:47:05.736449+00 2025-11-01 01:47:05.736454+00 f t DESCUENTO 0.00 3 11146 \N +443335 2025-11-01 01:47:05.737394+00 2025-11-01 01:47:05.737399+00 f t TOTAL 46000.00 4 11146 \N +443336 2025-11-01 01:47:05.738288+00 2025-11-01 01:47:05.738293+00 f t ADELANTO 11000.00 5 11146 \N +445897 2025-11-01 19:56:51.330565+00 2025-11-01 19:56:51.330578+00 f t SUBTOTAL 0.00 1 11218 \N +445898 2025-11-01 19:56:51.331923+00 2025-11-01 19:56:51.33193+00 f t COSTO_SERVICIO 0.00 2 11218 \N +445899 2025-11-01 19:56:51.332952+00 2025-11-01 19:56:51.332957+00 f t DESCUENTO 0.00 3 11218 \N +445900 2025-11-01 19:56:51.333935+00 2025-11-01 19:56:51.33394+00 f t TOTAL 0.00 4 11218 \N +445901 2025-11-01 19:56:51.334958+00 2025-11-01 19:56:51.334963+00 f t ADELANTO 0.00 5 11218 \N +456922 2025-11-05 15:55:45.312798+00 2025-11-05 15:55:45.312807+00 f t SUBTOTAL 99400.00 1 11471 \N +456923 2025-11-05 15:55:45.314772+00 2025-11-05 15:55:45.31478+00 f t COSTO_SERVICIO 0.00 2 11471 \N +456924 2025-11-05 15:55:45.316201+00 2025-11-05 15:55:45.316208+00 f t DESCUENTO 0.00 3 11471 \N +456925 2025-11-05 15:55:45.317525+00 2025-11-05 15:55:45.317531+00 f t TOTAL 99400.00 4 11471 \N +456926 2025-11-05 15:55:45.318599+00 2025-11-05 15:55:45.318607+00 f t ADELANTO 58900.00 5 11471 \N +457167 2025-11-05 18:59:47.796514+00 2025-11-05 18:59:47.796524+00 f t SUBTOTAL 107000.00 1 11483 \N +457168 2025-11-05 18:59:47.798293+00 2025-11-05 18:59:47.798299+00 f t COSTO_SERVICIO 0.00 2 11483 \N +457169 2025-11-05 18:59:47.799393+00 2025-11-05 18:59:47.799399+00 f t DESCUENTO 0.00 3 11483 \N +457170 2025-11-05 18:59:47.800509+00 2025-11-05 18:59:47.800515+00 f t TOTAL 107000.00 4 11483 \N +457171 2025-11-05 18:59:47.801431+00 2025-11-05 18:59:47.801436+00 f t ADELANTO 12000.00 5 11483 \N +446782 2025-11-02 12:31:13.141313+00 2025-11-02 12:31:13.141322+00 f t SUBTOTAL 0.00 1 11239 \N +446783 2025-11-02 12:31:13.142648+00 2025-11-02 12:31:13.142654+00 f t COSTO_SERVICIO 0.00 2 11239 \N +446784 2025-11-02 12:31:13.143584+00 2025-11-02 12:31:13.143589+00 f t DESCUENTO 0.00 3 11239 \N +446785 2025-11-02 12:31:13.144473+00 2025-11-02 12:31:13.144478+00 f t TOTAL 0.00 4 11239 \N +446786 2025-11-02 12:31:13.145246+00 2025-11-02 12:31:13.145251+00 f t ADELANTO 0.00 5 11239 \N +448282 2025-11-03 13:22:15.812628+00 2025-11-03 13:22:15.812635+00 f t SUBTOTAL 78000.00 1 11255 \N +448283 2025-11-03 13:22:15.814648+00 2025-11-03 13:22:15.814657+00 f t COSTO_SERVICIO 0.00 2 11255 \N +448284 2025-11-03 13:22:15.815957+00 2025-11-03 13:22:15.815966+00 f t DESCUENTO 0.00 3 11255 \N +448285 2025-11-03 13:22:15.817291+00 2025-11-03 13:22:15.817299+00 f t TOTAL 78000.00 4 11255 \N +448286 2025-11-03 13:22:15.81851+00 2025-11-03 13:22:15.818518+00 f t ADELANTO 21500.00 5 11255 \N +443457 2025-11-01 01:52:51.635372+00 2025-11-01 01:52:51.635379+00 f t SUBTOTAL 55000.00 1 11139 \N +443458 2025-11-01 01:52:51.636951+00 2025-11-01 01:52:51.636958+00 f t COSTO_SERVICIO 0.00 2 11139 \N +443459 2025-11-01 01:52:51.638004+00 2025-11-01 01:52:51.63801+00 f t DESCUENTO 0.00 3 11139 \N +443460 2025-11-01 01:52:51.638888+00 2025-11-01 01:52:51.638893+00 f t TOTAL 55000.00 4 11139 \N +443461 2025-11-01 01:52:51.639852+00 2025-11-01 01:52:51.639858+00 f t ADELANTO 11000.00 5 11139 \N +443487 2025-11-01 02:07:14.771058+00 2025-11-01 02:07:14.771067+00 f t SUBTOTAL 46000.00 1 11148 \N +443488 2025-11-01 02:07:14.773511+00 2025-11-01 02:07:14.773522+00 f t COSTO_SERVICIO 0.00 2 11148 \N +443489 2025-11-01 02:07:14.777391+00 2025-11-01 02:07:14.7774+00 f t DESCUENTO 0.00 3 11148 \N +443490 2025-11-01 02:07:14.779078+00 2025-11-01 02:07:14.779085+00 f t TOTAL 46000.00 4 11148 \N +443491 2025-11-01 02:07:14.780821+00 2025-11-01 02:07:14.780834+00 f t ADELANTO 11000.00 5 11148 \N +450072 2025-11-03 19:04:04.664312+00 2025-11-03 19:04:04.66432+00 f t SUBTOTAL 45000.00 1 11316 \N +450073 2025-11-03 19:04:04.666275+00 2025-11-03 19:04:04.666282+00 f t COSTO_SERVICIO 0.00 2 11316 \N +450074 2025-11-03 19:04:04.667848+00 2025-11-03 19:04:04.667859+00 f t DESCUENTO 0.00 3 11316 \N +450075 2025-11-03 19:04:04.669056+00 2025-11-03 19:04:04.669062+00 f t TOTAL 45000.00 4 11316 \N +450076 2025-11-03 19:04:04.670302+00 2025-11-03 19:04:04.670308+00 f t ADELANTO 45000.00 5 11316 \N +443507 2025-11-01 02:13:24.708979+00 2025-11-01 02:13:24.70899+00 f t SUBTOTAL 0.00 1 11149 \N +443508 2025-11-01 02:13:24.710863+00 2025-11-01 02:13:24.710872+00 f t COSTO_SERVICIO 0.00 2 11149 \N +443509 2025-11-01 02:13:24.712121+00 2025-11-01 02:13:24.712129+00 f t DESCUENTO 0.00 3 11149 \N +443510 2025-11-01 02:13:24.713255+00 2025-11-01 02:13:24.713262+00 f t TOTAL 0.00 4 11149 \N +443511 2025-11-01 02:13:24.714225+00 2025-11-01 02:13:24.714231+00 f t ADELANTO 0.00 5 11149 \N +443517 2025-11-01 02:14:44.416256+00 2025-11-01 02:14:44.416266+00 f t SUBTOTAL 0.00 1 11150 \N +443518 2025-11-01 02:14:44.417749+00 2025-11-01 02:14:44.417755+00 f t COSTO_SERVICIO 0.00 2 11150 \N +443519 2025-11-01 02:14:44.418811+00 2025-11-01 02:14:44.418817+00 f t DESCUENTO 0.00 3 11150 \N +443520 2025-11-01 02:14:44.419827+00 2025-11-01 02:14:44.419832+00 f t TOTAL 0.00 4 11150 \N +443521 2025-11-01 02:14:44.42079+00 2025-11-01 02:14:44.420795+00 f t ADELANTO 0.00 5 11150 \N +450317 2025-11-03 22:27:20.802749+00 2025-11-03 22:27:20.802756+00 f t SUBTOTAL 55000.00 1 11326 \N +450318 2025-11-03 22:27:20.804646+00 2025-11-03 22:27:20.804653+00 f t COSTO_SERVICIO 0.00 2 11326 \N +450319 2025-11-03 22:27:20.806+00 2025-11-03 22:27:20.806006+00 f t DESCUENTO 0.00 3 11326 \N +450320 2025-11-03 22:27:20.807081+00 2025-11-03 22:27:20.807087+00 f t TOTAL 55000.00 4 11326 \N +450321 2025-11-03 22:27:20.808241+00 2025-11-03 22:27:20.808246+00 f t ADELANTO 11000.00 5 11326 \N +450797 2025-11-03 23:24:28.264721+00 2025-11-03 23:24:28.264732+00 f t SUBTOTAL 54000.00 1 11331 \N +450798 2025-11-03 23:24:28.266536+00 2025-11-03 23:24:28.266546+00 f t COSTO_SERVICIO 0.00 2 11331 \N +450799 2025-11-03 23:24:28.267978+00 2025-11-03 23:24:28.267986+00 f t DESCUENTO 0.00 3 11331 \N +450800 2025-11-03 23:24:28.269161+00 2025-11-03 23:24:28.269168+00 f t TOTAL 54000.00 4 11331 \N +450801 2025-11-03 23:24:28.27022+00 2025-11-03 23:24:28.270227+00 f t ADELANTO 13500.00 5 11331 \N +443567 2025-11-01 02:18:14.689436+00 2025-11-01 02:18:14.689447+00 f t SUBTOTAL 46000.00 1 11151 \N +443568 2025-11-01 02:18:14.691676+00 2025-11-01 02:18:14.691685+00 f t COSTO_SERVICIO 0.00 2 11151 \N +443569 2025-11-01 02:18:14.693528+00 2025-11-01 02:18:14.693536+00 f t DESCUENTO 0.00 3 11151 \N +443570 2025-11-01 02:18:14.694729+00 2025-11-01 02:18:14.694737+00 f t TOTAL 46000.00 4 11151 \N +443571 2025-11-01 02:18:14.695967+00 2025-11-01 02:18:14.695975+00 f t ADELANTO 11000.00 5 11151 \N +443587 2025-11-01 02:19:15.988591+00 2025-11-01 02:19:15.988599+00 f t SUBTOTAL 0.00 1 11152 \N +443588 2025-11-01 02:19:15.990577+00 2025-11-01 02:19:15.990587+00 f t COSTO_SERVICIO 0.00 2 11152 \N +443589 2025-11-01 02:19:15.991994+00 2025-11-01 02:19:15.992+00 f t DESCUENTO 0.00 3 11152 \N +443590 2025-11-01 02:19:15.993217+00 2025-11-01 02:19:15.993223+00 f t TOTAL 0.00 4 11152 \N +443591 2025-11-01 02:19:15.994382+00 2025-11-01 02:19:15.994389+00 f t ADELANTO 0.00 5 11152 \N +451577 2025-11-04 02:17:23.849488+00 2025-11-04 02:17:23.849498+00 f t SUBTOTAL 0.00 1 11347 \N +451578 2025-11-04 02:17:23.851864+00 2025-11-04 02:17:23.851873+00 f t COSTO_SERVICIO 0.00 2 11347 \N +451579 2025-11-04 02:17:23.853325+00 2025-11-04 02:17:23.853332+00 f t DESCUENTO 0.00 3 11347 \N +451580 2025-11-04 02:17:23.854596+00 2025-11-04 02:17:23.854607+00 f t TOTAL 0.00 4 11347 \N +451581 2025-11-04 02:17:23.855942+00 2025-11-04 02:17:23.855948+00 f t ADELANTO 0.00 5 11347 \N +451742 2025-11-04 03:11:30.777636+00 2025-11-04 03:11:30.777644+00 f t SUBTOTAL 46000.00 1 11349 \N +451743 2025-11-04 03:11:30.779106+00 2025-11-04 03:11:30.779112+00 f t COSTO_SERVICIO 0.00 2 11349 \N +451744 2025-11-04 03:11:30.780149+00 2025-11-04 03:11:30.780158+00 f t DESCUENTO 0.00 3 11349 \N +451745 2025-11-04 03:11:30.781388+00 2025-11-04 03:11:30.781394+00 f t TOTAL 46000.00 4 11349 \N +451746 2025-11-04 03:11:30.782262+00 2025-11-04 03:11:30.782268+00 f t ADELANTO 11000.00 5 11349 \N +445907 2025-11-01 19:58:34.207858+00 2025-11-01 19:58:34.207868+00 f t SUBTOTAL 0.00 1 11219 \N +445908 2025-11-01 19:58:34.209433+00 2025-11-01 19:58:34.209441+00 f t COSTO_SERVICIO 0.00 2 11219 \N +445909 2025-11-01 19:58:34.210735+00 2025-11-01 19:58:34.210743+00 f t DESCUENTO 0.00 3 11219 \N +445910 2025-11-01 19:58:34.211844+00 2025-11-01 19:58:34.21185+00 f t TOTAL 0.00 4 11219 \N +445911 2025-11-01 19:58:34.213985+00 2025-11-01 19:58:34.213992+00 f t ADELANTO 0.00 5 11219 \N +466932 2025-11-07 23:09:34.536264+00 2025-11-07 23:09:34.536272+00 f t SUBTOTAL 55000.00 1 11708 \N +466933 2025-11-07 23:09:34.538003+00 2025-11-07 23:09:34.538011+00 f t COSTO_SERVICIO 0.00 2 11708 \N +466934 2025-11-07 23:09:34.539292+00 2025-11-07 23:09:34.539299+00 f t DESCUENTO 0.00 3 11708 \N +466935 2025-11-07 23:09:34.540506+00 2025-11-07 23:09:34.540512+00 f t TOTAL 55000.00 4 11708 \N +466936 2025-11-07 23:09:34.541741+00 2025-11-07 23:09:34.541749+00 f t ADELANTO 11000.00 5 11708 \N +443657 2025-11-01 02:36:33.461296+00 2025-11-01 02:36:33.461303+00 f t SUBTOTAL 54000.00 1 11153 \N +443658 2025-11-01 02:36:33.462771+00 2025-11-01 02:36:33.462777+00 f t COSTO_SERVICIO 0.00 2 11153 \N +443659 2025-11-01 02:36:33.46388+00 2025-11-01 02:36:33.463888+00 f t DESCUENTO 0.00 3 11153 \N +443660 2025-11-01 02:36:33.465178+00 2025-11-01 02:36:33.465185+00 f t TOTAL 54000.00 4 11153 \N +443661 2025-11-01 02:36:33.466144+00 2025-11-01 02:36:33.466149+00 f t ADELANTO 13500.00 5 11153 \N +443667 2025-11-01 04:20:49.776145+00 2025-11-01 04:20:49.776154+00 f t SUBTOTAL 0.00 1 11154 \N +443668 2025-11-01 04:20:49.777538+00 2025-11-01 04:20:49.777544+00 f t COSTO_SERVICIO 0.00 2 11154 \N +443669 2025-11-01 04:20:49.778567+00 2025-11-01 04:20:49.778573+00 f t DESCUENTO 0.00 3 11154 \N +443670 2025-11-01 04:20:49.779481+00 2025-11-01 04:20:49.779486+00 f t TOTAL 0.00 4 11154 \N +443671 2025-11-01 04:20:49.780614+00 2025-11-01 04:20:49.780619+00 f t ADELANTO 0.00 5 11154 \N +443687 2025-11-01 05:34:28.028244+00 2025-11-01 05:34:28.028252+00 f t SUBTOTAL 0.00 1 11155 \N +443688 2025-11-01 05:34:28.02954+00 2025-11-01 05:34:28.029546+00 f t COSTO_SERVICIO 0.00 2 11155 \N +443689 2025-11-01 05:34:28.030502+00 2025-11-01 05:34:28.030507+00 f t DESCUENTO 0.00 3 11155 \N +443690 2025-11-01 05:34:28.031381+00 2025-11-01 05:34:28.031386+00 f t TOTAL 0.00 4 11155 \N +443691 2025-11-01 05:34:28.032229+00 2025-11-01 05:34:28.032235+00 f t ADELANTO 0.00 5 11155 \N +443697 2025-11-01 05:54:35.946849+00 2025-11-01 05:54:35.946857+00 f t SUBTOTAL 0.00 1 11156 \N +443698 2025-11-01 05:54:35.948258+00 2025-11-01 05:54:35.948266+00 f t COSTO_SERVICIO 0.00 2 11156 \N +443699 2025-11-01 05:54:35.949223+00 2025-11-01 05:54:35.949229+00 f t DESCUENTO 0.00 3 11156 \N +443700 2025-11-01 05:54:35.950035+00 2025-11-01 05:54:35.95004+00 f t TOTAL 0.00 4 11156 \N +443701 2025-11-01 05:54:35.950826+00 2025-11-01 05:54:35.950831+00 f t ADELANTO 0.00 5 11156 \N +457537 2025-11-05 20:17:31.587111+00 2025-11-05 20:17:31.587123+00 f t SUBTOTAL 0.00 1 11492 \N +457538 2025-11-05 20:17:31.589001+00 2025-11-05 20:17:31.589009+00 f t COSTO_SERVICIO 0.00 2 11492 \N +457539 2025-11-05 20:17:31.590115+00 2025-11-05 20:17:31.590122+00 f t DESCUENTO 0.00 3 11492 \N +457540 2025-11-05 20:17:31.591092+00 2025-11-05 20:17:31.591098+00 f t TOTAL 0.00 4 11492 \N +457541 2025-11-05 20:17:31.59224+00 2025-11-05 20:17:31.592246+00 f t ADELANTO 0.00 5 11492 \N +457712 2025-11-05 21:06:52.203183+00 2025-11-05 21:06:52.203225+00 f t SUBTOTAL 57000.00 1 11495 \N +457713 2025-11-05 21:06:52.204962+00 2025-11-05 21:06:52.204973+00 f t COSTO_SERVICIO 0.00 2 11495 \N +457714 2025-11-05 21:06:52.206125+00 2025-11-05 21:06:52.206131+00 f t DESCUENTO 0.00 3 11495 \N +457715 2025-11-05 21:06:52.207272+00 2025-11-05 21:06:52.207278+00 f t TOTAL 57000.00 4 11495 \N +457716 2025-11-05 21:06:52.208258+00 2025-11-05 21:06:52.208263+00 f t ADELANTO 57000.00 5 11495 \N +458512 2025-11-06 00:47:09.497297+00 2025-11-06 00:47:09.497306+00 f t SUBTOTAL 52500.00 1 11509 \N +458513 2025-11-06 00:47:09.499196+00 2025-11-06 00:47:09.499202+00 f t COSTO_SERVICIO 0.00 2 11509 \N +458514 2025-11-06 00:47:09.500553+00 2025-11-06 00:47:09.500559+00 f t DESCUENTO 0.00 3 11509 \N +458515 2025-11-06 00:47:09.501869+00 2025-11-06 00:47:09.501875+00 f t TOTAL 52500.00 4 11509 \N +458516 2025-11-06 00:47:09.503116+00 2025-11-06 00:47:09.503123+00 f t ADELANTO 52500.00 5 11509 \N +448897 2025-11-03 15:46:00.238138+00 2025-11-03 15:46:00.238151+00 f t SUBTOTAL 80000.00 1 11269 \N +448898 2025-11-03 15:46:00.240363+00 2025-11-03 15:46:00.240374+00 f t COSTO_SERVICIO 0.00 2 11269 \N +448899 2025-11-03 15:46:00.24199+00 2025-11-03 15:46:00.241998+00 f t DESCUENTO 0.00 3 11269 \N +448900 2025-11-03 15:46:00.243303+00 2025-11-03 15:46:00.243309+00 f t TOTAL 80000.00 4 11269 \N +448901 2025-11-03 15:46:00.244455+00 2025-11-03 15:46:00.244461+00 f t ADELANTO 12000.00 5 11269 \N +449037 2025-11-03 16:09:01.743122+00 2025-11-03 16:09:01.743165+00 f t SUBTOTAL 46000.00 1 11292 \N +449038 2025-11-03 16:09:01.745925+00 2025-11-03 16:09:01.745938+00 f t COSTO_SERVICIO 0.00 2 11292 \N +449039 2025-11-03 16:09:01.748241+00 2025-11-03 16:09:01.748255+00 f t DESCUENTO 0.00 3 11292 \N +449040 2025-11-03 16:09:01.750436+00 2025-11-03 16:09:01.750448+00 f t TOTAL 46000.00 4 11292 \N +449041 2025-11-03 16:09:01.752695+00 2025-11-03 16:09:01.752707+00 f t ADELANTO 11000.00 5 11292 \N +443777 2025-11-01 07:49:20.737528+00 2025-11-01 07:49:20.737537+00 f t SUBTOTAL 42500.00 1 11157 \N +443778 2025-11-01 07:49:20.74049+00 2025-11-01 07:49:20.740496+00 f t COSTO_SERVICIO 0.00 2 11157 \N +443779 2025-11-01 07:49:20.742159+00 2025-11-01 07:49:20.742164+00 f t DESCUENTO 0.00 3 11157 \N +443780 2025-11-01 07:49:20.744013+00 2025-11-01 07:49:20.744018+00 f t TOTAL 42500.00 4 11157 \N +443781 2025-11-01 07:49:20.745047+00 2025-11-01 07:49:20.745054+00 f t ADELANTO 42500.00 5 11157 \N +449822 2025-11-03 18:08:29.396574+00 2025-11-03 18:08:29.396582+00 f t SUBTOTAL 88000.00 1 11308 \N +449823 2025-11-03 18:08:29.398035+00 2025-11-03 18:08:29.39804+00 f t COSTO_SERVICIO 0.00 2 11308 \N +449824 2025-11-03 18:08:29.399116+00 2025-11-03 18:08:29.399122+00 f t DESCUENTO 0.00 3 11308 \N +449825 2025-11-03 18:08:29.400102+00 2025-11-03 18:08:29.400107+00 f t TOTAL 88000.00 4 11308 \N +449826 2025-11-03 18:08:29.401077+00 2025-11-03 18:08:29.401082+00 f t ADELANTO 13000.00 5 11308 \N +443812 2025-11-01 07:50:33.238072+00 2025-11-01 07:50:33.238081+00 f t SUBTOTAL 0.00 1 11158 \N +443813 2025-11-01 07:50:33.239682+00 2025-11-01 07:50:33.239688+00 f t COSTO_SERVICIO 0.00 2 11158 \N +443814 2025-11-01 07:50:33.240673+00 2025-11-01 07:50:33.240677+00 f t DESCUENTO 0.00 3 11158 \N +443815 2025-11-01 07:50:33.24166+00 2025-11-01 07:50:33.241665+00 f t TOTAL 0.00 4 11158 \N +443816 2025-11-01 07:50:33.242502+00 2025-11-01 07:50:33.242507+00 f t ADELANTO 0.00 5 11158 \N +450082 2025-11-03 19:25:13.737407+00 2025-11-03 19:25:13.737417+00 f t SUBTOTAL 0.00 1 11317 \N +450083 2025-11-03 19:25:13.738996+00 2025-11-03 19:25:13.739007+00 f t COSTO_SERVICIO 0.00 2 11317 \N +450084 2025-11-03 19:25:13.740264+00 2025-11-03 19:25:13.74027+00 f t DESCUENTO 0.00 3 11317 \N +450085 2025-11-03 19:25:13.74142+00 2025-11-03 19:25:13.741426+00 f t TOTAL 0.00 4 11317 \N +450086 2025-11-03 19:25:13.742399+00 2025-11-03 19:25:13.742407+00 f t ADELANTO 0.00 5 11317 \N +450807 2025-11-03 23:27:42.592859+00 2025-11-03 23:27:42.59287+00 f t SUBTOTAL 0.00 1 11332 \N +450808 2025-11-03 23:27:42.594222+00 2025-11-03 23:27:42.594228+00 f t COSTO_SERVICIO 0.00 2 11332 \N +450809 2025-11-03 23:27:42.59515+00 2025-11-03 23:27:42.595155+00 f t DESCUENTO 0.00 3 11332 \N +450810 2025-11-03 23:27:42.596032+00 2025-11-03 23:27:42.596037+00 f t TOTAL 0.00 4 11332 \N +450811 2025-11-03 23:27:42.596912+00 2025-11-03 23:27:42.596917+00 f t ADELANTO 0.00 5 11332 \N +443932 2025-11-01 07:52:45.119847+00 2025-11-01 07:52:45.119855+00 f t SUBTOTAL 78000.00 1 11160 \N +443933 2025-11-01 07:52:45.121242+00 2025-11-01 07:52:45.121248+00 f t COSTO_SERVICIO 0.00 2 11160 \N +443934 2025-11-01 07:52:45.122227+00 2025-11-01 07:52:45.122232+00 f t DESCUENTO 0.00 3 11160 \N +443935 2025-11-01 07:52:45.123193+00 2025-11-01 07:52:45.123198+00 f t TOTAL 78000.00 4 11160 \N +443936 2025-11-01 07:52:45.124102+00 2025-11-01 07:52:45.124106+00 f t ADELANTO 13000.00 5 11160 \N +445917 2025-11-01 20:31:14.140377+00 2025-11-01 20:31:14.140387+00 f t SUBTOTAL 0.00 1 11220 \N +445918 2025-11-01 20:31:14.141969+00 2025-11-01 20:31:14.141979+00 f t COSTO_SERVICIO 0.00 2 11220 \N +445919 2025-11-01 20:31:14.14325+00 2025-11-01 20:31:14.143255+00 f t DESCUENTO 0.00 3 11220 \N +445920 2025-11-01 20:31:14.14434+00 2025-11-01 20:31:14.144346+00 f t TOTAL 0.00 4 11220 \N +445921 2025-11-01 20:31:14.145395+00 2025-11-01 20:31:14.145402+00 f t ADELANTO 0.00 5 11220 \N +456707 2025-11-05 14:44:50.683667+00 2025-11-05 14:44:50.683674+00 f t SUBTOTAL 55000.00 1 11466 \N +456708 2025-11-05 14:44:50.685314+00 2025-11-05 14:44:50.685321+00 f t COSTO_SERVICIO 0.00 2 11466 \N +456709 2025-11-05 14:44:50.686405+00 2025-11-05 14:44:50.686411+00 f t DESCUENTO 0.00 3 11466 \N +456710 2025-11-05 14:44:50.687576+00 2025-11-05 14:44:50.687581+00 f t TOTAL 55000.00 4 11466 \N +456711 2025-11-05 14:44:50.68851+00 2025-11-05 14:44:50.688515+00 f t ADELANTO 11000.00 5 11466 \N +489827 2025-11-13 13:29:17.327006+00 2025-11-13 13:29:17.327017+00 f t SUBTOTAL 0.00 1 12226 \N +489828 2025-11-13 13:29:17.329231+00 2025-11-13 13:29:17.329242+00 f t COSTO_SERVICIO 0.00 2 12226 \N +489829 2025-11-13 13:29:17.3306+00 2025-11-13 13:29:17.330609+00 f t DESCUENTO 0.00 3 12226 \N +489830 2025-11-13 13:29:17.331789+00 2025-11-13 13:29:17.331797+00 f t TOTAL 0.00 4 12226 \N +489831 2025-11-13 13:29:17.332861+00 2025-11-13 13:29:17.332868+00 f t ADELANTO 0.00 5 12226 \N +443967 2025-11-01 07:53:47.134877+00 2025-11-01 07:53:47.134885+00 f t SUBTOTAL 42500.00 1 11159 \N +443968 2025-11-01 07:53:47.136452+00 2025-11-01 07:53:47.136458+00 f t COSTO_SERVICIO 0.00 2 11159 \N +443969 2025-11-01 07:53:47.137671+00 2025-11-01 07:53:47.137677+00 f t DESCUENTO 0.00 3 11159 \N +443970 2025-11-01 07:53:47.139255+00 2025-11-01 07:53:47.139261+00 f t TOTAL 42500.00 4 11159 \N +443971 2025-11-01 07:53:47.140315+00 2025-11-01 07:53:47.14032+00 f t ADELANTO 42500.00 5 11159 \N +443987 2025-11-01 09:03:19.954631+00 2025-11-01 09:03:19.954639+00 f t SUBTOTAL 0.00 1 11161 \N +443988 2025-11-01 09:03:19.956289+00 2025-11-01 09:03:19.956295+00 f t COSTO_SERVICIO 0.00 2 11161 \N +443989 2025-11-01 09:03:19.957226+00 2025-11-01 09:03:19.957232+00 f t DESCUENTO 0.00 3 11161 \N +443990 2025-11-01 09:03:19.958385+00 2025-11-01 09:03:19.958392+00 f t TOTAL 0.00 4 11161 \N +443991 2025-11-01 09:03:19.95952+00 2025-11-01 09:03:19.959526+00 f t ADELANTO 0.00 5 11161 \N +458202 2025-11-05 23:11:49.740345+00 2025-11-05 23:11:49.740353+00 f t SUBTOTAL 46000.00 1 11503 \N +458203 2025-11-05 23:11:49.742068+00 2025-11-05 23:11:49.742074+00 f t COSTO_SERVICIO 0.00 2 11503 \N +458204 2025-11-05 23:11:49.74323+00 2025-11-05 23:11:49.743236+00 f t DESCUENTO 0.00 3 11503 \N +458205 2025-11-05 23:11:49.744312+00 2025-11-05 23:11:49.744318+00 f t TOTAL 46000.00 4 11503 \N +458206 2025-11-05 23:11:49.74537+00 2025-11-05 23:11:49.745375+00 f t ADELANTO 11000.00 5 11503 \N +444042 2025-11-01 09:27:10.096116+00 2025-11-01 09:27:10.096123+00 f t SUBTOTAL 103900.00 1 11162 \N +444043 2025-11-01 09:27:10.097776+00 2025-11-01 09:27:10.097782+00 f t COSTO_SERVICIO 0.00 2 11162 \N +444044 2025-11-01 09:27:10.098917+00 2025-11-01 09:27:10.098923+00 f t DESCUENTO 0.00 3 11162 \N +444045 2025-11-01 09:27:10.100012+00 2025-11-01 09:27:10.100018+00 f t TOTAL 103900.00 4 11162 \N +444046 2025-11-01 09:27:10.101079+00 2025-11-01 09:27:10.101084+00 f t ADELANTO 24900.00 5 11162 \N +459847 2025-11-06 09:33:13.856087+00 2025-11-06 09:33:13.856099+00 f t SUBTOTAL 0.00 1 11529 \N +459848 2025-11-06 09:33:13.858131+00 2025-11-06 09:33:13.858138+00 f t COSTO_SERVICIO 0.00 2 11529 \N +459849 2025-11-06 09:33:13.859299+00 2025-11-06 09:33:13.859305+00 f t DESCUENTO 0.00 3 11529 \N +459850 2025-11-06 09:33:13.860391+00 2025-11-06 09:33:13.860396+00 f t TOTAL 0.00 4 11529 \N +459851 2025-11-06 09:33:13.861359+00 2025-11-06 09:33:13.861364+00 f t ADELANTO 0.00 5 11529 \N +444097 2025-11-01 10:32:11.025592+00 2025-11-01 10:32:11.025603+00 f t SUBTOTAL 70000.00 1 11163 \N +444098 2025-11-01 10:32:11.027516+00 2025-11-01 10:32:11.027527+00 f t COSTO_SERVICIO 0.00 2 11163 \N +444099 2025-11-01 10:32:11.028984+00 2025-11-01 10:32:11.028994+00 f t DESCUENTO 0.00 3 11163 \N +444100 2025-11-01 10:32:11.030197+00 2025-11-01 10:32:11.030204+00 f t TOTAL 70000.00 4 11163 \N +444101 2025-11-01 10:32:11.031382+00 2025-11-01 10:32:11.031388+00 f t ADELANTO 19000.00 5 11163 \N +450092 2025-11-03 19:25:30.403181+00 2025-11-03 19:25:30.403193+00 f t SUBTOTAL 0.00 1 11318 \N +450093 2025-11-03 19:25:30.404542+00 2025-11-03 19:25:30.404549+00 f t COSTO_SERVICIO 0.00 2 11318 \N +450094 2025-11-03 19:25:30.405495+00 2025-11-03 19:25:30.4055+00 f t DESCUENTO 0.00 3 11318 \N +450095 2025-11-03 19:25:30.40649+00 2025-11-03 19:25:30.406496+00 f t TOTAL 0.00 4 11318 \N +450096 2025-11-03 19:25:30.40745+00 2025-11-03 19:25:30.407455+00 f t ADELANTO 0.00 5 11318 \N +444127 2025-11-01 10:46:05.558113+00 2025-11-01 10:46:05.55812+00 f t SUBTOTAL 55000.00 1 11164 \N +444128 2025-11-01 10:46:05.560009+00 2025-11-01 10:46:05.560017+00 f t COSTO_SERVICIO 0.00 2 11164 \N +444129 2025-11-01 10:46:05.561603+00 2025-11-01 10:46:05.561609+00 f t DESCUENTO 0.00 3 11164 \N +444130 2025-11-01 10:46:05.562633+00 2025-11-01 10:46:05.562639+00 f t TOTAL 55000.00 4 11164 \N +444131 2025-11-01 10:46:05.563973+00 2025-11-01 10:46:05.563979+00 f t ADELANTO 11000.00 5 11164 \N +461157 2025-11-06 16:06:38.438093+00 2025-11-06 16:06:38.438101+00 f t SUBTOTAL 13200.00 1 11562 \N +461158 2025-11-06 16:06:38.43983+00 2025-11-06 16:06:38.439836+00 f t COSTO_SERVICIO 0.00 2 11562 \N +461159 2025-11-06 16:06:38.4412+00 2025-11-06 16:06:38.441205+00 f t DESCUENTO 0.00 3 11562 \N +461160 2025-11-06 16:06:38.442194+00 2025-11-06 16:06:38.442198+00 f t TOTAL 13200.00 4 11562 \N +461161 2025-11-06 16:06:38.443287+00 2025-11-06 16:06:38.443293+00 f t ADELANTO 13200.00 5 11562 \N +461407 2025-11-06 16:22:21.100939+00 2025-11-06 16:22:21.100946+00 f t SUBTOTAL 46000.00 1 11565 \N +461408 2025-11-06 16:22:21.102523+00 2025-11-06 16:22:21.102529+00 f t COSTO_SERVICIO 0.00 2 11565 \N +461409 2025-11-06 16:22:21.103749+00 2025-11-06 16:22:21.103754+00 f t DESCUENTO 0.00 3 11565 \N +461410 2025-11-06 16:22:21.104742+00 2025-11-06 16:22:21.104747+00 f t TOTAL 46000.00 4 11565 \N +461411 2025-11-06 16:22:21.105687+00 2025-11-06 16:22:21.105692+00 f t ADELANTO 11000.00 5 11565 \N +444182 2025-11-01 11:18:01.209645+00 2025-11-01 11:18:01.209653+00 f t SUBTOTAL 78000.00 1 11165 \N +444183 2025-11-01 11:18:01.211548+00 2025-11-01 11:18:01.211556+00 f t COSTO_SERVICIO 0.00 2 11165 \N +444184 2025-11-01 11:18:01.214411+00 2025-11-01 11:18:01.214424+00 f t DESCUENTO 0.00 3 11165 \N +444185 2025-11-01 11:18:01.215973+00 2025-11-01 11:18:01.21598+00 f t TOTAL 78000.00 4 11165 \N +444186 2025-11-01 11:18:01.217375+00 2025-11-01 11:18:01.217382+00 f t ADELANTO 21500.00 5 11165 \N +451522 2025-11-04 02:12:35.065452+00 2025-11-04 02:12:35.065459+00 f t SUBTOTAL 107000.00 1 11346 \N +451523 2025-11-04 02:12:35.067058+00 2025-11-04 02:12:35.067064+00 f t COSTO_SERVICIO 0.00 2 11346 \N +451524 2025-11-04 02:12:35.068255+00 2025-11-04 02:12:35.068267+00 f t DESCUENTO 0.00 3 11346 \N +451525 2025-11-04 02:12:35.069482+00 2025-11-04 02:12:35.069487+00 f t TOTAL 107000.00 4 11346 \N +451526 2025-11-04 02:12:35.07059+00 2025-11-04 02:12:35.070595+00 f t ADELANTO 12000.00 5 11346 \N +446172 2025-11-01 21:08:12.203468+00 2025-11-01 21:08:12.20348+00 f t SUBTOTAL 30000.00 1 11226 \N +446173 2025-11-01 21:08:12.205484+00 2025-11-01 21:08:12.205492+00 f t COSTO_SERVICIO 0.00 2 11226 \N +446174 2025-11-01 21:08:12.207277+00 2025-11-01 21:08:12.207284+00 f t DESCUENTO 0.00 3 11226 \N +446175 2025-11-01 21:08:12.209345+00 2025-11-01 21:08:12.209352+00 f t TOTAL 30000.00 4 11226 \N +446176 2025-11-01 21:08:12.210492+00 2025-11-01 21:08:12.2105+00 f t ADELANTO 30000.00 5 11226 \N +446982 2025-11-02 17:39:55.40646+00 2025-11-02 17:39:55.40647+00 f t SUBTOTAL 46000.00 1 11245 \N +446983 2025-11-02 17:39:55.408336+00 2025-11-02 17:39:55.408343+00 f t COSTO_SERVICIO 0.00 2 11245 \N +444252 2025-11-01 11:23:53.965004+00 2025-11-01 11:23:53.965012+00 f t SUBTOTAL 140000.00 1 11166 \N +444253 2025-11-01 11:23:53.966705+00 2025-11-01 11:23:53.966711+00 f t COSTO_SERVICIO 0.00 2 11166 \N +444254 2025-11-01 11:23:53.968015+00 2025-11-01 11:23:53.968021+00 f t DESCUENTO 9200.00 3 11166 \N +444255 2025-11-01 11:23:53.968998+00 2025-11-01 11:23:53.969003+00 f t TOTAL 130800.00 4 11166 \N +444256 2025-11-01 11:23:53.970081+00 2025-11-01 11:23:53.970089+00 f t ADELANTO 38000.00 5 11166 \N +446984 2025-11-02 17:39:55.409438+00 2025-11-02 17:39:55.409442+00 f t DESCUENTO 0.00 3 11245 \N +446985 2025-11-02 17:39:55.410364+00 2025-11-02 17:39:55.410369+00 f t TOTAL 46000.00 4 11245 \N +446986 2025-11-02 17:39:55.411304+00 2025-11-02 17:39:55.411309+00 f t ADELANTO 11000.00 5 11245 \N +457362 2025-11-05 19:53:09.98758+00 2025-11-05 19:53:09.987588+00 f t SUBTOTAL 111000.00 1 11486 \N +457363 2025-11-05 19:53:09.989941+00 2025-11-05 19:53:09.989948+00 f t COSTO_SERVICIO 0.00 2 11486 \N +457364 2025-11-05 19:53:09.991059+00 2025-11-05 19:53:09.991065+00 f t DESCUENTO 0.00 3 11486 \N +457365 2025-11-05 19:53:09.992074+00 2025-11-05 19:53:09.99208+00 f t TOTAL 111000.00 4 11486 \N +457366 2025-11-05 19:53:09.993046+00 2025-11-05 19:53:09.993051+00 f t ADELANTO 28000.00 5 11486 \N +447322 2025-11-02 18:15:58.603636+00 2025-11-02 18:15:58.603643+00 f t SUBTOTAL 46000.00 1 11251 \N +447323 2025-11-02 18:15:58.605309+00 2025-11-02 18:15:58.605315+00 f t COSTO_SERVICIO 0.00 2 11251 \N +447324 2025-11-02 18:15:58.606337+00 2025-11-02 18:15:58.606342+00 f t DESCUENTO 0.00 3 11251 \N +447325 2025-11-02 18:15:58.607231+00 2025-11-02 18:15:58.607235+00 f t TOTAL 46000.00 4 11251 \N +447326 2025-11-02 18:15:58.608177+00 2025-11-02 18:15:58.608183+00 f t ADELANTO 11000.00 5 11251 \N +444272 2025-11-01 11:36:37.0343+00 2025-11-01 11:36:37.034309+00 f t SUBTOTAL 0.00 1 11167 \N +444273 2025-11-01 11:36:37.036118+00 2025-11-01 11:36:37.036127+00 f t COSTO_SERVICIO 0.00 2 11167 \N +444274 2025-11-01 11:36:37.037338+00 2025-11-01 11:36:37.037345+00 f t DESCUENTO 0.00 3 11167 \N +444275 2025-11-01 11:36:37.038257+00 2025-11-01 11:36:37.038264+00 f t TOTAL 0.00 4 11167 \N +444276 2025-11-01 11:36:37.039203+00 2025-11-01 11:36:37.039207+00 f t ADELANTO 0.00 5 11167 \N +444282 2025-11-01 11:44:53.052255+00 2025-11-01 11:44:53.052268+00 f t SUBTOTAL 0.00 1 11168 \N +444283 2025-11-01 11:44:53.054064+00 2025-11-01 11:44:53.054074+00 f t COSTO_SERVICIO 0.00 2 11168 \N +444284 2025-11-01 11:44:53.055405+00 2025-11-01 11:44:53.055413+00 f t DESCUENTO 0.00 3 11168 \N +444285 2025-11-01 11:44:53.056667+00 2025-11-01 11:44:53.056674+00 f t TOTAL 0.00 4 11168 \N +444286 2025-11-01 11:44:53.058103+00 2025-11-01 11:44:53.05811+00 f t ADELANTO 0.00 5 11168 \N +448637 2025-11-03 15:31:32.326191+00 2025-11-03 15:31:32.326199+00 f t SUBTOTAL 70000.00 1 11285 \N +448638 2025-11-03 15:31:32.328171+00 2025-11-03 15:31:32.328177+00 f t COSTO_SERVICIO 0.00 2 11285 \N +448639 2025-11-03 15:31:32.329365+00 2025-11-03 15:31:32.32937+00 f t DESCUENTO 0.00 3 11285 \N +448640 2025-11-03 15:31:32.330523+00 2025-11-03 15:31:32.330528+00 f t TOTAL 70000.00 4 11285 \N +448641 2025-11-03 15:31:32.331794+00 2025-11-03 15:31:32.331799+00 f t ADELANTO 19000.00 5 11285 \N +448907 2025-11-03 15:46:13.630681+00 2025-11-03 15:46:13.630689+00 f t SUBTOTAL 53700.00 1 11289 \N +448908 2025-11-03 15:46:13.632543+00 2025-11-03 15:46:13.63255+00 f t COSTO_SERVICIO 0.00 2 11289 \N +448909 2025-11-03 15:46:13.633885+00 2025-11-03 15:46:13.633894+00 f t DESCUENTO 0.00 3 11289 \N +448910 2025-11-03 15:46:13.63521+00 2025-11-03 15:46:13.635218+00 f t TOTAL 53700.00 4 11289 \N +448911 2025-11-03 15:46:13.636437+00 2025-11-03 15:46:13.636444+00 f t ADELANTO 13200.00 5 11289 \N +444342 2025-11-01 11:55:00.428095+00 2025-11-01 11:55:00.428107+00 f t SUBTOTAL 82000.00 1 11169 \N +444343 2025-11-01 11:55:00.429967+00 2025-11-01 11:55:00.429976+00 f t COSTO_SERVICIO 0.00 2 11169 \N +444344 2025-11-01 11:55:00.431282+00 2025-11-01 11:55:00.43129+00 f t DESCUENTO 0.00 3 11169 \N +444345 2025-11-01 11:55:00.432464+00 2025-11-01 11:55:00.432472+00 f t TOTAL 82000.00 4 11169 \N +444346 2025-11-01 11:55:00.433604+00 2025-11-01 11:55:00.433612+00 f t ADELANTO 12000.00 5 11169 \N +444352 2025-11-01 12:16:31.237778+00 2025-11-01 12:16:31.237787+00 f t SUBTOTAL 0.00 1 11170 \N +444353 2025-11-01 12:16:31.239152+00 2025-11-01 12:16:31.239159+00 f t COSTO_SERVICIO 0.00 2 11170 \N +444354 2025-11-01 12:16:31.240884+00 2025-11-01 12:16:31.24089+00 f t DESCUENTO 0.00 3 11170 \N +444355 2025-11-01 12:16:31.245651+00 2025-11-01 12:16:31.245658+00 f t TOTAL 0.00 4 11170 \N +444356 2025-11-01 12:16:31.246789+00 2025-11-01 12:16:31.246795+00 f t ADELANTO 0.00 5 11170 \N +449577 2025-11-03 17:48:37.349942+00 2025-11-03 17:48:37.349954+00 f t SUBTOTAL 55000.00 1 11304 \N +449578 2025-11-03 17:48:37.352355+00 2025-11-03 17:48:37.352363+00 f t COSTO_SERVICIO 0.00 2 11304 \N +449579 2025-11-03 17:48:37.353768+00 2025-11-03 17:48:37.353774+00 f t DESCUENTO 0.00 3 11304 \N +449580 2025-11-03 17:48:37.354962+00 2025-11-03 17:48:37.354968+00 f t TOTAL 55000.00 4 11304 \N +449581 2025-11-03 17:48:37.356333+00 2025-11-03 17:48:37.356341+00 f t ADELANTO 11000.00 5 11304 \N +444367 2025-11-01 12:45:55.871859+00 2025-11-01 12:45:55.871867+00 f t SUBTOTAL 55000.00 1 11171 \N +444368 2025-11-01 12:45:55.873606+00 2025-11-01 12:45:55.873612+00 f t COSTO_SERVICIO 0.00 2 11171 \N +444369 2025-11-01 12:45:55.874785+00 2025-11-01 12:45:55.87479+00 f t DESCUENTO 0.00 3 11171 \N +444370 2025-11-01 12:45:55.875813+00 2025-11-01 12:45:55.875819+00 f t TOTAL 55000.00 4 11171 \N +444371 2025-11-01 12:45:55.876779+00 2025-11-01 12:45:55.876784+00 f t ADELANTO 11000.00 5 11171 \N +444387 2025-11-01 12:57:22.416387+00 2025-11-01 12:57:22.416395+00 f t SUBTOTAL 0.00 1 11172 \N +444388 2025-11-01 12:57:22.417678+00 2025-11-01 12:57:22.417684+00 f t COSTO_SERVICIO 0.00 2 11172 \N +444389 2025-11-01 12:57:22.418626+00 2025-11-01 12:57:22.418631+00 f t DESCUENTO 0.00 3 11172 \N +444390 2025-11-01 12:57:22.419556+00 2025-11-01 12:57:22.419561+00 f t TOTAL 0.00 4 11172 \N +444391 2025-11-01 12:57:22.420361+00 2025-11-01 12:57:22.420366+00 f t ADELANTO 0.00 5 11172 \N +444462 2025-11-01 13:00:35.629597+00 2025-11-01 13:00:35.629607+00 f t SUBTOTAL 0.00 1 11174 \N +444463 2025-11-01 13:00:35.63097+00 2025-11-01 13:00:35.630977+00 f t COSTO_SERVICIO 0.00 2 11174 \N +444464 2025-11-01 13:00:35.632151+00 2025-11-01 13:00:35.632157+00 f t DESCUENTO 0.00 3 11174 \N +444465 2025-11-01 13:00:35.63317+00 2025-11-01 13:00:35.633175+00 f t TOTAL 0.00 4 11174 \N +444466 2025-11-01 13:00:35.633964+00 2025-11-01 13:00:35.633969+00 f t ADELANTO 0.00 5 11174 \N +444502 2025-11-01 13:01:36.59064+00 2025-11-01 13:01:36.590648+00 f t SUBTOTAL 55000.00 1 11147 \N +444503 2025-11-01 13:01:36.5924+00 2025-11-01 13:01:36.592408+00 f t COSTO_SERVICIO 0.00 2 11147 \N +444504 2025-11-01 13:01:36.593573+00 2025-11-01 13:01:36.593579+00 f t DESCUENTO 0.00 3 11147 \N +444505 2025-11-01 13:01:36.594585+00 2025-11-01 13:01:36.59459+00 f t TOTAL 55000.00 4 11147 \N +444506 2025-11-01 13:01:36.595578+00 2025-11-01 13:01:36.595585+00 f t ADELANTO 11000.00 5 11147 \N +466692 2025-11-07 22:29:17.634018+00 2025-11-07 22:29:17.634028+00 f t SUBTOTAL 0.00 1 11702 \N +466693 2025-11-07 22:29:17.636326+00 2025-11-07 22:29:17.636336+00 f t COSTO_SERVICIO 0.00 2 11702 \N +466694 2025-11-07 22:29:17.637515+00 2025-11-07 22:29:17.637521+00 f t DESCUENTO 0.00 3 11702 \N +466695 2025-11-07 22:29:17.639235+00 2025-11-07 22:29:17.639242+00 f t TOTAL 0.00 4 11702 \N +466696 2025-11-07 22:29:17.640247+00 2025-11-07 22:29:17.640255+00 f t ADELANTO 0.00 5 11702 \N +456467 2025-11-05 13:21:55.951217+00 2025-11-05 13:21:55.951225+00 f t SUBTOTAL 55000.00 1 11460 \N +456468 2025-11-05 13:21:55.95287+00 2025-11-05 13:21:55.952878+00 f t COSTO_SERVICIO 0.00 2 11460 \N +456469 2025-11-05 13:21:55.95409+00 2025-11-05 13:21:55.954095+00 f t DESCUENTO 0.00 3 11460 \N +456470 2025-11-05 13:21:55.955269+00 2025-11-05 13:21:55.955274+00 f t TOTAL 55000.00 4 11460 \N +456471 2025-11-05 13:21:55.95625+00 2025-11-05 13:21:55.956255+00 f t ADELANTO 11000.00 5 11460 \N +501017 2025-11-16 15:50:55.16419+00 2025-11-16 15:50:55.164197+00 f t SUBTOTAL 54000.00 1 12500 \N +501018 2025-11-16 15:50:55.166078+00 2025-11-16 15:50:55.166085+00 f t COSTO_SERVICIO 0.00 2 12500 \N +501019 2025-11-16 15:50:55.167438+00 2025-11-16 15:50:55.167445+00 f t DESCUENTO 0.00 3 12500 \N +501020 2025-11-16 15:50:55.168681+00 2025-11-16 15:50:55.168688+00 f t TOTAL 54000.00 4 12500 \N +467652 2025-11-08 01:38:27.085421+00 2025-11-08 01:38:27.085429+00 f t SUBTOTAL 125200.00 1 11718 \N +467653 2025-11-08 01:38:27.087245+00 2025-11-08 01:38:27.087252+00 f t COSTO_SERVICIO 0.00 2 11718 \N +467654 2025-11-08 01:38:27.088369+00 2025-11-08 01:38:27.088375+00 f t DESCUENTO 0.00 3 11718 \N +467655 2025-11-08 01:38:27.089552+00 2025-11-08 01:38:27.089558+00 f t TOTAL 125200.00 4 11718 \N +467656 2025-11-08 01:38:27.090716+00 2025-11-08 01:38:27.090721+00 f t ADELANTO 68700.00 5 11718 \N +467817 2025-11-08 01:48:56.809874+00 2025-11-08 01:48:56.809885+00 f t SUBTOTAL 91200.00 1 11719 \N +467818 2025-11-08 01:48:56.81108+00 2025-11-08 01:48:56.811088+00 f t COSTO_SERVICIO 0.00 2 11719 \N +467819 2025-11-08 01:48:56.812005+00 2025-11-08 01:48:56.812013+00 f t DESCUENTO 0.00 3 11719 \N +467820 2025-11-08 01:48:56.812823+00 2025-11-08 01:48:56.812831+00 f t TOTAL 91200.00 4 11719 \N +467821 2025-11-08 01:48:56.813549+00 2025-11-08 01:48:56.813556+00 f t ADELANTO 34700.00 5 11719 \N +446992 2025-11-02 17:46:06.30448+00 2025-11-02 17:46:06.304489+00 f t SUBTOTAL 0.00 1 11246 \N +446993 2025-11-02 17:46:06.305948+00 2025-11-02 17:46:06.305954+00 f t COSTO_SERVICIO 0.00 2 11246 \N +446994 2025-11-02 17:46:06.30724+00 2025-11-02 17:46:06.307247+00 f t DESCUENTO 0.00 3 11246 \N +446995 2025-11-02 17:46:06.308262+00 2025-11-02 17:46:06.308267+00 f t TOTAL 0.00 4 11246 \N +446996 2025-11-02 17:46:06.309297+00 2025-11-02 17:46:06.309301+00 f t ADELANTO 0.00 5 11246 \N +479327 2025-11-11 00:18:09.554767+00 2025-11-11 00:18:09.55478+00 f t SUBTOTAL 0.00 1 11983 \N +479328 2025-11-11 00:18:09.556928+00 2025-11-11 00:18:09.556938+00 f t COSTO_SERVICIO 0.00 2 11983 \N +479329 2025-11-11 00:18:09.558397+00 2025-11-11 00:18:09.558407+00 f t DESCUENTO 0.00 3 11983 \N +468787 2025-11-08 13:33:21.217363+00 2025-11-08 13:33:21.21737+00 f t SUBTOTAL 55000.00 1 11740 \N +468788 2025-11-08 13:33:21.219524+00 2025-11-08 13:33:21.21953+00 f t COSTO_SERVICIO 0.00 2 11740 \N +468789 2025-11-08 13:33:21.220904+00 2025-11-08 13:33:21.220909+00 f t DESCUENTO 0.00 3 11740 \N +468790 2025-11-08 13:33:21.221944+00 2025-11-08 13:33:21.221949+00 f t TOTAL 55000.00 4 11740 \N +468791 2025-11-08 13:33:21.2231+00 2025-11-08 13:33:21.223106+00 f t ADELANTO 11000.00 5 11740 \N +459092 2025-11-06 03:29:30.199049+00 2025-11-06 03:29:30.199056+00 f t SUBTOTAL 156000.00 1 11521 \N +459093 2025-11-06 03:29:30.200064+00 2025-11-06 03:29:30.20007+00 f t COSTO_SERVICIO 0.00 2 11521 \N +459094 2025-11-06 03:29:30.201138+00 2025-11-06 03:29:30.201147+00 f t DESCUENTO 9200.00 3 11521 \N +459095 2025-11-06 03:29:30.20207+00 2025-11-06 03:29:30.202082+00 f t TOTAL 146800.00 4 11521 \N +459096 2025-11-06 03:29:30.202853+00 2025-11-06 03:29:30.202858+00 f t ADELANTO 43000.00 5 11521 \N +448917 2025-11-03 15:50:37.146328+00 2025-11-03 15:50:37.146337+00 f t SUBTOTAL 0.00 1 11290 \N +448918 2025-11-03 15:50:37.147683+00 2025-11-03 15:50:37.147689+00 f t COSTO_SERVICIO 0.00 2 11290 \N +448919 2025-11-03 15:50:37.149078+00 2025-11-03 15:50:37.149085+00 f t DESCUENTO 0.00 3 11290 \N +448920 2025-11-03 15:50:37.15013+00 2025-11-03 15:50:37.150135+00 f t TOTAL 0.00 4 11290 \N +448921 2025-11-03 15:50:37.15116+00 2025-11-03 15:50:37.151165+00 f t ADELANTO 0.00 5 11290 \N +459857 2025-11-06 09:48:38.885245+00 2025-11-06 09:48:38.885259+00 f t SUBTOTAL 0.00 1 11530 \N +459858 2025-11-06 09:48:38.886929+00 2025-11-06 09:48:38.886939+00 f t COSTO_SERVICIO 0.00 2 11530 \N +459859 2025-11-06 09:48:38.88827+00 2025-11-06 09:48:38.888279+00 f t DESCUENTO 0.00 3 11530 \N +459860 2025-11-06 09:48:38.889557+00 2025-11-06 09:48:38.889563+00 f t TOTAL 0.00 4 11530 \N +459861 2025-11-06 09:48:38.890727+00 2025-11-06 09:48:38.890733+00 f t ADELANTO 0.00 5 11530 \N +460652 2025-11-06 12:49:23.218626+00 2025-11-06 12:49:23.218633+00 f t SUBTOTAL 78000.00 1 11545 \N +460653 2025-11-06 12:49:23.220481+00 2025-11-06 12:49:23.220487+00 f t COSTO_SERVICIO 0.00 2 11545 \N +460654 2025-11-06 12:49:23.221539+00 2025-11-06 12:49:23.221544+00 f t DESCUENTO 0.00 3 11545 \N +460655 2025-11-06 12:49:23.222391+00 2025-11-06 12:49:23.222395+00 f t TOTAL 78000.00 4 11545 \N +460656 2025-11-06 12:49:23.22328+00 2025-11-06 12:49:23.223285+00 f t ADELANTO 13000.00 5 11545 \N +460802 2025-11-06 13:16:07.742648+00 2025-11-06 13:16:07.742658+00 f t SUBTOTAL 46000.00 1 11549 \N +460803 2025-11-06 13:16:07.744621+00 2025-11-06 13:16:07.74463+00 f t COSTO_SERVICIO 0.00 2 11549 \N +460804 2025-11-06 13:16:07.746216+00 2025-11-06 13:16:07.746224+00 f t DESCUENTO 0.00 3 11549 \N +460805 2025-11-06 13:16:07.747643+00 2025-11-06 13:16:07.74765+00 f t TOTAL 46000.00 4 11549 \N +460806 2025-11-06 13:16:07.748989+00 2025-11-06 13:16:07.748996+00 f t ADELANTO 11000.00 5 11549 \N +460932 2025-11-06 14:10:08.797534+00 2025-11-06 14:10:08.797542+00 f t SUBTOTAL 55000.00 1 11542 \N +460933 2025-11-06 14:10:08.799626+00 2025-11-06 14:10:08.799637+00 f t COSTO_SERVICIO 0.00 2 11542 \N +460934 2025-11-06 14:10:08.801034+00 2025-11-06 14:10:08.801039+00 f t DESCUENTO 0.00 3 11542 \N +460935 2025-11-06 14:10:08.802419+00 2025-11-06 14:10:08.802425+00 f t TOTAL 55000.00 4 11542 \N +460936 2025-11-06 14:10:08.803673+00 2025-11-06 14:10:08.803678+00 f t ADELANTO 11000.00 5 11542 \N +461052 2025-11-06 15:18:38.744254+00 2025-11-06 15:18:38.744262+00 f t SUBTOTAL 55000.00 1 11558 \N +461053 2025-11-06 15:18:38.746265+00 2025-11-06 15:18:38.746272+00 f t COSTO_SERVICIO 0.00 2 11558 \N +461054 2025-11-06 15:18:38.747754+00 2025-11-06 15:18:38.747762+00 f t DESCUENTO 0.00 3 11558 \N +461055 2025-11-06 15:18:38.74925+00 2025-11-06 15:18:38.749258+00 f t TOTAL 55000.00 4 11558 \N +461056 2025-11-06 15:18:38.750673+00 2025-11-06 15:18:38.750681+00 f t ADELANTO 11000.00 5 11558 \N +450622 2025-11-03 23:18:07.035161+00 2025-11-03 23:18:07.035212+00 f t SUBTOTAL 54000.00 1 11329 \N +450623 2025-11-03 23:18:07.0372+00 2025-11-03 23:18:07.037207+00 f t COSTO_SERVICIO 0.00 2 11329 \N +450624 2025-11-03 23:18:07.038717+00 2025-11-03 23:18:07.038723+00 f t DESCUENTO 0.00 3 11329 \N +450625 2025-11-03 23:18:07.040142+00 2025-11-03 23:18:07.040148+00 f t TOTAL 54000.00 4 11329 \N +450626 2025-11-03 23:18:07.041484+00 2025-11-03 23:18:07.041491+00 f t ADELANTO 13500.00 5 11329 \N +462282 2025-11-06 20:44:55.712646+00 2025-11-06 20:44:55.712654+00 f t SUBTOTAL 0.00 1 11593 \N +462283 2025-11-06 20:44:55.713889+00 2025-11-06 20:44:55.713895+00 f t COSTO_SERVICIO 0.00 2 11593 \N +488642 2025-11-13 00:16:47.993418+00 2025-11-13 00:16:47.993426+00 f t SUBTOTAL 0.00 1 12195 \N +488643 2025-11-13 00:16:47.994719+00 2025-11-13 00:16:47.994725+00 f t COSTO_SERVICIO 0.00 2 12195 \N +488644 2025-11-13 00:16:47.995868+00 2025-11-13 00:16:47.995874+00 f t DESCUENTO 0.00 3 12195 \N +488645 2025-11-13 00:16:47.996955+00 2025-11-13 00:16:47.996961+00 f t TOTAL 0.00 4 12195 \N +444542 2025-11-01 13:11:58.25603+00 2025-11-01 13:11:58.256037+00 f t SUBTOTAL 55000.00 1 11175 \N +444543 2025-11-01 13:11:58.257769+00 2025-11-01 13:11:58.257776+00 f t COSTO_SERVICIO 0.00 2 11175 \N +444544 2025-11-01 13:11:58.259024+00 2025-11-01 13:11:58.25903+00 f t DESCUENTO 0.00 3 11175 \N +444545 2025-11-01 13:11:58.26007+00 2025-11-01 13:11:58.260112+00 f t TOTAL 55000.00 4 11175 \N +444546 2025-11-01 13:11:58.26103+00 2025-11-01 13:11:58.261036+00 f t ADELANTO 11000.00 5 11175 \N +457377 2025-11-05 19:53:49.306788+00 2025-11-05 19:53:49.306798+00 f t SUBTOTAL 13200.00 1 11487 \N +457378 2025-11-05 19:53:49.308737+00 2025-11-05 19:53:49.308746+00 f t COSTO_SERVICIO 0.00 2 11487 \N +457379 2025-11-05 19:53:49.310037+00 2025-11-05 19:53:49.310045+00 f t DESCUENTO 0.00 3 11487 \N +457380 2025-11-05 19:53:49.311457+00 2025-11-05 19:53:49.311465+00 f t TOTAL 13200.00 4 11487 \N +457381 2025-11-05 19:53:49.312865+00 2025-11-05 19:53:49.312873+00 f t ADELANTO 13200.00 5 11487 \N +447002 2025-11-02 17:46:47.728935+00 2025-11-02 17:46:47.728944+00 f t SUBTOTAL 0.00 1 11247 \N +447003 2025-11-02 17:46:47.730289+00 2025-11-02 17:46:47.730296+00 f t COSTO_SERVICIO 0.00 2 11247 \N +447004 2025-11-02 17:46:47.73173+00 2025-11-02 17:46:47.731736+00 f t DESCUENTO 0.00 3 11247 \N +447005 2025-11-02 17:46:47.732734+00 2025-11-02 17:46:47.732743+00 f t TOTAL 0.00 4 11247 \N +447006 2025-11-02 17:46:47.733955+00 2025-11-02 17:46:47.733961+00 f t ADELANTO 0.00 5 11247 \N +457737 2025-11-05 21:30:56.064875+00 2025-11-05 21:30:56.064884+00 f t SUBTOTAL 0.00 1 11497 \N +457738 2025-11-05 21:30:56.06639+00 2025-11-05 21:30:56.066397+00 f t COSTO_SERVICIO 0.00 2 11497 \N +457739 2025-11-05 21:30:56.067863+00 2025-11-05 21:30:56.067872+00 f t DESCUENTO 0.00 3 11497 \N +457740 2025-11-05 21:30:56.06925+00 2025-11-05 21:30:56.069256+00 f t TOTAL 0.00 4 11497 \N +457741 2025-11-05 21:30:56.070467+00 2025-11-05 21:30:56.070473+00 f t ADELANTO 0.00 5 11497 \N +479330 2025-11-11 00:18:09.559754+00 2025-11-11 00:18:09.559761+00 f t TOTAL 0.00 4 11983 \N +479331 2025-11-11 00:18:09.561141+00 2025-11-11 00:18:09.561147+00 f t ADELANTO 0.00 5 11983 \N +458377 2025-11-05 23:47:44.469254+00 2025-11-05 23:47:44.469263+00 f t SUBTOTAL 55000.00 1 11507 \N +458378 2025-11-05 23:47:44.471017+00 2025-11-05 23:47:44.471023+00 f t COSTO_SERVICIO 0.00 2 11507 \N +458379 2025-11-05 23:47:44.472336+00 2025-11-05 23:47:44.472342+00 f t DESCUENTO 0.00 3 11507 \N +458380 2025-11-05 23:47:44.473386+00 2025-11-05 23:47:44.473392+00 f t TOTAL 55000.00 4 11507 \N +458381 2025-11-05 23:47:44.474474+00 2025-11-05 23:47:44.474479+00 f t ADELANTO 11000.00 5 11507 \N +448497 2025-11-03 14:51:53.079081+00 2025-11-03 14:51:53.079088+00 f t SUBTOTAL 46000.00 1 11280 \N +448498 2025-11-03 14:51:53.080683+00 2025-11-03 14:51:53.080689+00 f t COSTO_SERVICIO 0.00 2 11280 \N +448499 2025-11-03 14:51:53.081909+00 2025-11-03 14:51:53.081915+00 f t DESCUENTO 0.00 3 11280 \N +448500 2025-11-03 14:51:53.083301+00 2025-11-03 14:51:53.083307+00 f t TOTAL 46000.00 4 11280 \N +448501 2025-11-03 14:51:53.084245+00 2025-11-03 14:51:53.08425+00 f t ADELANTO 11000.00 5 11280 \N +444622 2025-11-01 13:20:28.119945+00 2025-11-01 13:20:28.119952+00 f t SUBTOTAL 46000.00 1 11176 \N +444623 2025-11-01 13:20:28.121669+00 2025-11-01 13:20:28.121677+00 f t COSTO_SERVICIO 0.00 2 11176 \N +444624 2025-11-01 13:20:28.123081+00 2025-11-01 13:20:28.123089+00 f t DESCUENTO 0.00 3 11176 \N +444625 2025-11-01 13:20:28.124243+00 2025-11-01 13:20:28.124248+00 f t TOTAL 46000.00 4 11176 \N +444626 2025-11-01 13:20:28.125258+00 2025-11-01 13:20:28.125264+00 f t ADELANTO 11000.00 5 11176 \N +449962 2025-11-03 18:22:11.893282+00 2025-11-03 18:22:11.893293+00 f t SUBTOTAL 0.00 1 11312 \N +449963 2025-11-03 18:22:11.895054+00 2025-11-03 18:22:11.895063+00 f t COSTO_SERVICIO 0.00 2 11312 \N +449964 2025-11-03 18:22:11.896308+00 2025-11-03 18:22:11.896316+00 f t DESCUENTO 0.00 3 11312 \N +444677 2025-11-01 13:24:50.135663+00 2025-11-01 13:24:50.135674+00 f t SUBTOTAL 55000.00 1 11177 \N +444678 2025-11-01 13:24:50.137352+00 2025-11-01 13:24:50.137362+00 f t COSTO_SERVICIO 0.00 2 11177 \N +444679 2025-11-01 13:24:50.138661+00 2025-11-01 13:24:50.138669+00 f t DESCUENTO 0.00 3 11177 \N +444680 2025-11-01 13:24:50.140055+00 2025-11-01 13:24:50.140064+00 f t TOTAL 55000.00 4 11177 \N +444681 2025-11-01 13:24:50.141252+00 2025-11-01 13:24:50.141259+00 f t ADELANTO 11000.00 5 11177 \N +449965 2025-11-03 18:22:11.897418+00 2025-11-03 18:22:11.897425+00 f t TOTAL 0.00 4 11312 \N +449966 2025-11-03 18:22:11.898501+00 2025-11-03 18:22:11.898509+00 f t ADELANTO 0.00 5 11312 \N +444692 2025-11-01 13:38:22.492724+00 2025-11-01 13:38:22.492735+00 f t SUBTOTAL 55000.00 1 11178 \N +444693 2025-11-01 13:38:22.494634+00 2025-11-01 13:38:22.494642+00 f t COSTO_SERVICIO 0.00 2 11178 \N +444694 2025-11-01 13:38:22.495895+00 2025-11-01 13:38:22.495903+00 f t DESCUENTO 0.00 3 11178 \N +444695 2025-11-01 13:38:22.496956+00 2025-11-01 13:38:22.496963+00 f t TOTAL 55000.00 4 11178 \N +444696 2025-11-01 13:38:22.49796+00 2025-11-01 13:38:22.497968+00 f t ADELANTO 11000.00 5 11178 \N +450227 2025-11-03 20:35:28.156528+00 2025-11-03 20:35:28.156539+00 f t SUBTOTAL 55000.00 1 11323 \N +450228 2025-11-03 20:35:28.16241+00 2025-11-03 20:35:28.162419+00 f t COSTO_SERVICIO 0.00 2 11323 \N +450229 2025-11-03 20:35:28.164118+00 2025-11-03 20:35:28.164124+00 f t DESCUENTO 0.00 3 11323 \N +450230 2025-11-03 20:35:28.165661+00 2025-11-03 20:35:28.165668+00 f t TOTAL 55000.00 4 11323 \N +450231 2025-11-03 20:35:28.166737+00 2025-11-03 20:35:28.166743+00 f t ADELANTO 11000.00 5 11323 \N +460662 2025-11-06 12:49:27.530624+00 2025-11-06 12:49:27.530634+00 f t SUBTOTAL 0.00 1 11546 \N +460663 2025-11-06 12:49:27.532109+00 2025-11-06 12:49:27.532145+00 f t COSTO_SERVICIO 0.00 2 11546 \N +460664 2025-11-06 12:49:27.533295+00 2025-11-06 12:49:27.533303+00 f t DESCUENTO 0.00 3 11546 \N +460665 2025-11-06 12:49:27.534396+00 2025-11-06 12:49:27.534404+00 f t TOTAL 0.00 4 11546 \N +460666 2025-11-06 12:49:27.535448+00 2025-11-06 12:49:27.535455+00 f t ADELANTO 0.00 5 11546 \N +444732 2025-11-01 13:46:04.695637+00 2025-11-01 13:46:04.695645+00 f t SUBTOTAL 46000.00 1 11179 \N +444733 2025-11-01 13:46:04.697413+00 2025-11-01 13:46:04.697419+00 f t COSTO_SERVICIO 0.00 2 11179 \N +444734 2025-11-01 13:46:04.698863+00 2025-11-01 13:46:04.698869+00 f t DESCUENTO 0.00 3 11179 \N +444735 2025-11-01 13:46:04.700248+00 2025-11-01 13:46:04.700256+00 f t TOTAL 46000.00 4 11179 \N +444736 2025-11-01 13:46:04.701541+00 2025-11-01 13:46:04.701546+00 f t ADELANTO 11000.00 5 11179 \N +460812 2025-11-06 13:27:23.225757+00 2025-11-06 13:27:23.225768+00 f t SUBTOTAL 0.00 1 11550 \N +451122 2025-11-04 01:08:34.003649+00 2025-11-04 01:08:34.003658+00 f t SUBTOTAL 55000.00 1 11340 \N +451123 2025-11-04 01:08:34.004747+00 2025-11-04 01:08:34.004756+00 f t COSTO_SERVICIO 0.00 2 11340 \N +451124 2025-11-04 01:08:34.005664+00 2025-11-04 01:08:34.005669+00 f t DESCUENTO 0.00 3 11340 \N +451125 2025-11-04 01:08:34.006483+00 2025-11-04 01:08:34.006489+00 f t TOTAL 55000.00 4 11340 \N +451126 2025-11-04 01:08:34.007278+00 2025-11-04 01:08:34.007284+00 f t ADELANTO 11000.00 5 11340 \N +444762 2025-11-01 13:54:25.71025+00 2025-11-01 13:54:25.710257+00 f t SUBTOTAL 55000.00 1 11180 \N +444763 2025-11-01 13:54:25.711999+00 2025-11-01 13:54:25.712007+00 f t COSTO_SERVICIO 0.00 2 11180 \N +444764 2025-11-01 13:54:25.713184+00 2025-11-01 13:54:25.71319+00 f t DESCUENTO 0.00 3 11180 \N +444765 2025-11-01 13:54:25.714269+00 2025-11-01 13:54:25.714275+00 f t TOTAL 55000.00 4 11180 \N +444766 2025-11-01 13:54:25.715578+00 2025-11-01 13:54:25.715584+00 f t ADELANTO 11000.00 5 11180 \N +445947 2025-11-01 20:32:08.095896+00 2025-11-01 20:32:08.095906+00 f t SUBTOTAL 0.00 1 11221 \N +445948 2025-11-01 20:32:08.098008+00 2025-11-01 20:32:08.098017+00 f t COSTO_SERVICIO 0.00 2 11221 \N +445949 2025-11-01 20:32:08.099297+00 2025-11-01 20:32:08.099305+00 f t DESCUENTO 0.00 3 11221 \N +445950 2025-11-01 20:32:08.10042+00 2025-11-01 20:32:08.100427+00 f t TOTAL 0.00 4 11221 \N +445951 2025-11-01 20:32:08.101506+00 2025-11-01 20:32:08.101512+00 f t ADELANTO 0.00 5 11221 \N +477512 2025-11-10 17:59:10.271745+00 2025-11-10 17:59:10.271751+00 f t SUBTOTAL 70000.00 1 11936 \N +444817 2025-11-01 13:56:26.535581+00 2025-11-01 13:56:26.535591+00 f t SUBTOTAL 55000.00 1 11181 \N +444818 2025-11-01 13:56:26.537162+00 2025-11-01 13:56:26.537168+00 f t COSTO_SERVICIO 0.00 2 11181 \N +444819 2025-11-01 13:56:26.538341+00 2025-11-01 13:56:26.538347+00 f t DESCUENTO 0.00 3 11181 \N +444820 2025-11-01 13:56:26.539422+00 2025-11-01 13:56:26.539427+00 f t TOTAL 55000.00 4 11181 \N +444821 2025-11-01 13:56:26.540441+00 2025-11-01 13:56:26.540449+00 f t ADELANTO 11000.00 5 11181 \N +444862 2025-11-01 14:01:01.807421+00 2025-11-01 14:01:01.80743+00 f t SUBTOTAL 46000.00 1 11182 \N +444863 2025-11-01 14:01:01.809055+00 2025-11-01 14:01:01.809062+00 f t COSTO_SERVICIO 0.00 2 11182 \N +444864 2025-11-01 14:01:01.810268+00 2025-11-01 14:01:01.810274+00 f t DESCUENTO 0.00 3 11182 \N +444865 2025-11-01 14:01:01.811506+00 2025-11-01 14:01:01.811514+00 f t TOTAL 46000.00 4 11182 \N +444866 2025-11-01 14:01:01.812769+00 2025-11-01 14:01:01.812775+00 f t ADELANTO 11000.00 5 11182 \N +447677 2025-11-02 22:53:29.499679+00 2025-11-02 22:53:29.499688+00 f t SUBTOTAL 0.00 1 11259 \N +447678 2025-11-02 22:53:29.501915+00 2025-11-02 22:53:29.501921+00 f t COSTO_SERVICIO 0.00 2 11259 \N +447679 2025-11-02 22:53:29.503228+00 2025-11-02 22:53:29.503233+00 f t DESCUENTO 0.00 3 11259 \N +447680 2025-11-02 22:53:29.504233+00 2025-11-02 22:53:29.504238+00 f t TOTAL 0.00 4 11259 \N +447681 2025-11-02 22:53:29.505242+00 2025-11-02 22:53:29.505248+00 f t ADELANTO 0.00 5 11259 \N +444917 2025-11-01 14:10:54.878513+00 2025-11-01 14:10:54.878522+00 f t SUBTOTAL 156000.00 1 11183 \N +444918 2025-11-01 14:10:54.880248+00 2025-11-01 14:10:54.880253+00 f t COSTO_SERVICIO 0.00 2 11183 \N +444919 2025-11-01 14:10:54.881437+00 2025-11-01 14:10:54.881442+00 f t DESCUENTO 0.00 3 11183 \N +444920 2025-11-01 14:10:54.882605+00 2025-11-01 14:10:54.882612+00 f t TOTAL 156000.00 4 11183 \N +444921 2025-11-01 14:10:54.883748+00 2025-11-01 14:10:54.883754+00 f t ADELANTO 34500.00 5 11183 \N +444927 2025-11-01 14:20:45.058179+00 2025-11-01 14:20:45.058189+00 f t SUBTOTAL 0.00 1 11184 \N +444928 2025-11-01 14:20:45.059408+00 2025-11-01 14:20:45.059414+00 f t COSTO_SERVICIO 0.00 2 11184 \N +444929 2025-11-01 14:20:45.060355+00 2025-11-01 14:20:45.06036+00 f t DESCUENTO 0.00 3 11184 \N +444930 2025-11-01 14:20:45.061169+00 2025-11-01 14:20:45.061176+00 f t TOTAL 0.00 4 11184 \N +444931 2025-11-01 14:20:45.062157+00 2025-11-01 14:20:45.062162+00 f t ADELANTO 0.00 5 11184 \N +449192 2025-11-03 16:30:58.400104+00 2025-11-03 16:30:58.400114+00 f t SUBTOTAL 46000.00 1 11294 \N +449193 2025-11-03 16:30:58.402183+00 2025-11-03 16:30:58.40219+00 f t COSTO_SERVICIO 0.00 2 11294 \N +444937 2025-11-01 14:24:08.56452+00 2025-11-01 14:24:08.564529+00 f t SUBTOTAL 0.00 1 11185 \N +444938 2025-11-01 14:24:08.566044+00 2025-11-01 14:24:08.566055+00 f t COSTO_SERVICIO 0.00 2 11185 \N +444939 2025-11-01 14:24:08.567307+00 2025-11-01 14:24:08.567316+00 f t DESCUENTO 0.00 3 11185 \N +444940 2025-11-01 14:24:08.568478+00 2025-11-01 14:24:08.568486+00 f t TOTAL 0.00 4 11185 \N +444941 2025-11-01 14:24:08.569568+00 2025-11-01 14:24:08.569577+00 f t ADELANTO 0.00 5 11185 \N +449194 2025-11-03 16:30:58.403436+00 2025-11-03 16:30:58.403441+00 f t DESCUENTO 0.00 3 11294 \N +449195 2025-11-03 16:30:58.404523+00 2025-11-03 16:30:58.404529+00 f t TOTAL 46000.00 4 11294 \N +449196 2025-11-03 16:30:58.405476+00 2025-11-03 16:30:58.405481+00 f t ADELANTO 11000.00 5 11294 \N +444947 2025-11-01 14:26:11.357006+00 2025-11-01 14:26:11.357015+00 f t SUBTOTAL 0.00 1 11186 \N +444948 2025-11-01 14:26:11.358631+00 2025-11-01 14:26:11.358638+00 f t COSTO_SERVICIO 0.00 2 11186 \N +444949 2025-11-01 14:26:11.360108+00 2025-11-01 14:26:11.360116+00 f t DESCUENTO 0.00 3 11186 \N +444950 2025-11-01 14:26:11.361509+00 2025-11-01 14:26:11.361516+00 f t TOTAL 0.00 4 11186 \N +444951 2025-11-01 14:26:11.362566+00 2025-11-01 14:26:11.362572+00 f t ADELANTO 0.00 5 11186 \N +444977 2025-11-01 14:30:53.98679+00 2025-11-01 14:30:53.986797+00 f t SUBTOTAL 88000.00 1 11187 \N +444978 2025-11-01 14:30:53.988376+00 2025-11-01 14:30:53.988383+00 f t COSTO_SERVICIO 0.00 2 11187 \N +444979 2025-11-01 14:30:53.989402+00 2025-11-01 14:30:53.989408+00 f t DESCUENTO 0.00 3 11187 \N +444980 2025-11-01 14:30:53.990274+00 2025-11-01 14:30:53.990279+00 f t TOTAL 88000.00 4 11187 \N +444981 2025-11-01 14:30:53.991076+00 2025-11-01 14:30:53.991081+00 f t ADELANTO 13000.00 5 11187 \N +444987 2025-11-01 14:37:02.285064+00 2025-11-01 14:37:02.285078+00 f t SUBTOTAL 0.00 1 11188 \N +444988 2025-11-01 14:37:02.287096+00 2025-11-01 14:37:02.287108+00 f t COSTO_SERVICIO 0.00 2 11188 \N +444989 2025-11-01 14:37:02.288911+00 2025-11-01 14:37:02.288921+00 f t DESCUENTO 0.00 3 11188 \N +444990 2025-11-01 14:37:02.290573+00 2025-11-01 14:37:02.290583+00 f t TOTAL 0.00 4 11188 \N +444991 2025-11-01 14:37:02.299708+00 2025-11-01 14:37:02.299721+00 f t ADELANTO 0.00 5 11188 \N +450237 2025-11-03 21:36:49.235293+00 2025-11-03 21:36:49.235302+00 f t SUBTOTAL 0.00 1 11324 \N +450238 2025-11-03 21:36:49.236819+00 2025-11-03 21:36:49.236827+00 f t COSTO_SERVICIO 0.00 2 11324 \N +450239 2025-11-03 21:36:49.238034+00 2025-11-03 21:36:49.23804+00 f t DESCUENTO 0.00 3 11324 \N +450240 2025-11-03 21:36:49.238992+00 2025-11-03 21:36:49.238997+00 f t TOTAL 0.00 4 11324 \N +450241 2025-11-03 21:36:49.239896+00 2025-11-03 21:36:49.239902+00 f t ADELANTO 0.00 5 11324 \N +450347 2025-11-03 22:38:57.105591+00 2025-11-03 22:38:57.105599+00 f t SUBTOTAL 30000.00 1 11327 \N +450348 2025-11-03 22:38:57.107459+00 2025-11-03 22:38:57.107466+00 f t COSTO_SERVICIO 0.00 2 11327 \N +450349 2025-11-03 22:38:57.108707+00 2025-11-03 22:38:57.108714+00 f t DESCUENTO 0.00 3 11327 \N +450350 2025-11-03 22:38:57.109708+00 2025-11-03 22:38:57.109713+00 f t TOTAL 30000.00 4 11327 \N +450351 2025-11-03 22:38:57.110632+00 2025-11-03 22:38:57.110638+00 f t ADELANTO 30000.00 5 11327 \N +445027 2025-11-01 14:55:29.500209+00 2025-11-01 14:55:29.500217+00 f t SUBTOTAL 0.00 1 11190 \N +445028 2025-11-01 14:55:29.501805+00 2025-11-01 14:55:29.501811+00 f t COSTO_SERVICIO 0.00 2 11190 \N +445029 2025-11-01 14:55:29.502794+00 2025-11-01 14:55:29.502799+00 f t DESCUENTO 0.00 3 11190 \N +445030 2025-11-01 14:55:29.50374+00 2025-11-01 14:55:29.503745+00 f t TOTAL 0.00 4 11190 \N +445031 2025-11-01 14:55:29.504777+00 2025-11-01 14:55:29.504782+00 f t ADELANTO 0.00 5 11190 \N +445032 2025-11-01 14:57:10.247975+00 2025-11-01 14:57:10.247983+00 f t SUBTOTAL 55000.00 1 11189 \N +445033 2025-11-01 14:57:10.249467+00 2025-11-01 14:57:10.249473+00 f t COSTO_SERVICIO 0.00 2 11189 \N +445034 2025-11-01 14:57:10.250416+00 2025-11-01 14:57:10.250422+00 f t DESCUENTO 0.00 3 11189 \N +445035 2025-11-01 14:57:10.25124+00 2025-11-01 14:57:10.251245+00 f t TOTAL 55000.00 4 11189 \N +445036 2025-11-01 14:57:10.252111+00 2025-11-01 14:57:10.252116+00 f t ADELANTO 11000.00 5 11189 \N +445077 2025-11-01 15:04:15.050499+00 2025-11-01 15:04:15.050507+00 f t SUBTOTAL 55000.00 1 11191 \N +445078 2025-11-01 15:04:15.052235+00 2025-11-01 15:04:15.052249+00 f t COSTO_SERVICIO 0.00 2 11191 \N +445079 2025-11-01 15:04:15.053326+00 2025-11-01 15:04:15.053331+00 f t DESCUENTO 0.00 3 11191 \N +445080 2025-11-01 15:04:15.054255+00 2025-11-01 15:04:15.054261+00 f t TOTAL 55000.00 4 11191 \N +445081 2025-11-01 15:04:15.05508+00 2025-11-01 15:04:15.055085+00 f t ADELANTO 11000.00 5 11191 \N +445112 2025-11-01 15:05:23.657872+00 2025-11-01 15:05:23.657882+00 f t SUBTOTAL 80000.00 1 11192 \N +445113 2025-11-01 15:05:23.659633+00 2025-11-01 15:05:23.659641+00 f t COSTO_SERVICIO 0.00 2 11192 \N +445114 2025-11-01 15:05:23.660613+00 2025-11-01 15:05:23.660619+00 f t DESCUENTO 0.00 3 11192 \N +445115 2025-11-01 15:05:23.661532+00 2025-11-01 15:05:23.661537+00 f t TOTAL 80000.00 4 11192 \N +445116 2025-11-01 15:05:23.662427+00 2025-11-01 15:05:23.662432+00 f t ADELANTO 12000.00 5 11192 \N +445147 2025-11-01 15:27:01.429586+00 2025-11-01 15:27:01.429593+00 f t SUBTOTAL 46000.00 1 11193 \N +445148 2025-11-01 15:27:01.431057+00 2025-11-01 15:27:01.431063+00 f t COSTO_SERVICIO 0.00 2 11193 \N +445149 2025-11-01 15:27:01.432578+00 2025-11-01 15:27:01.432584+00 f t DESCUENTO 0.00 3 11193 \N +445150 2025-11-01 15:27:01.43381+00 2025-11-01 15:27:01.433816+00 f t TOTAL 46000.00 4 11193 \N +445151 2025-11-01 15:27:01.435063+00 2025-11-01 15:27:01.435075+00 f t ADELANTO 11000.00 5 11193 \N +445157 2025-11-01 15:30:43.856506+00 2025-11-01 15:30:43.856516+00 f t SUBTOTAL 0.00 1 11194 \N +445158 2025-11-01 15:30:43.857995+00 2025-11-01 15:30:43.858002+00 f t COSTO_SERVICIO 0.00 2 11194 \N +445159 2025-11-01 15:30:43.859054+00 2025-11-01 15:30:43.85906+00 f t DESCUENTO 0.00 3 11194 \N +445160 2025-11-01 15:30:43.860084+00 2025-11-01 15:30:43.86009+00 f t TOTAL 0.00 4 11194 \N +445161 2025-11-01 15:30:43.861067+00 2025-11-01 15:30:43.861072+00 f t ADELANTO 0.00 5 11194 \N +447687 2025-11-02 23:44:39.649505+00 2025-11-02 23:44:39.649514+00 f t SUBTOTAL 0.00 1 11260 \N +447688 2025-11-02 23:44:39.650881+00 2025-11-02 23:44:39.650891+00 f t COSTO_SERVICIO 0.00 2 11260 \N +447689 2025-11-02 23:44:39.652183+00 2025-11-02 23:44:39.652191+00 f t DESCUENTO 0.00 3 11260 \N +447690 2025-11-02 23:44:39.653237+00 2025-11-02 23:44:39.653244+00 f t TOTAL 0.00 4 11260 \N +447691 2025-11-02 23:44:39.654247+00 2025-11-02 23:44:39.654255+00 f t ADELANTO 0.00 5 11260 \N +445182 2025-11-01 15:45:23.094494+00 2025-11-01 15:45:23.094501+00 f t SUBTOTAL 70000.00 1 11195 \N +445183 2025-11-01 15:45:23.096117+00 2025-11-01 15:45:23.096124+00 f t COSTO_SERVICIO 0.00 2 11195 \N +445184 2025-11-01 15:45:23.097201+00 2025-11-01 15:45:23.097207+00 f t DESCUENTO 0.00 3 11195 \N +445185 2025-11-01 15:45:23.098293+00 2025-11-01 15:45:23.098298+00 f t TOTAL 70000.00 4 11195 \N +445186 2025-11-01 15:45:23.099284+00 2025-11-01 15:45:23.099293+00 f t ADELANTO 19000.00 5 11195 \N +445212 2025-11-01 15:46:03.695452+00 2025-11-01 15:46:03.695461+00 f t SUBTOTAL 54000.00 1 11196 \N +445213 2025-11-01 15:46:03.696926+00 2025-11-01 15:46:03.696931+00 f t COSTO_SERVICIO 0.00 2 11196 \N +445214 2025-11-01 15:46:03.698076+00 2025-11-01 15:46:03.698082+00 f t DESCUENTO 0.00 3 11196 \N +445215 2025-11-01 15:46:03.699204+00 2025-11-01 15:46:03.69921+00 f t TOTAL 54000.00 4 11196 \N +445216 2025-11-01 15:46:03.700302+00 2025-11-01 15:46:03.700308+00 f t ADELANTO 13500.00 5 11196 \N +445232 2025-11-01 16:00:23.134959+00 2025-11-01 16:00:23.134971+00 f t SUBTOTAL 0.00 1 11198 \N +445233 2025-11-01 16:00:23.136558+00 2025-11-01 16:00:23.136568+00 f t COSTO_SERVICIO 0.00 2 11198 \N +445234 2025-11-01 16:00:23.137801+00 2025-11-01 16:00:23.137809+00 f t DESCUENTO 0.00 3 11198 \N +445235 2025-11-01 16:00:23.138923+00 2025-11-01 16:00:23.13893+00 f t TOTAL 0.00 4 11198 \N +445236 2025-11-01 16:00:23.140054+00 2025-11-01 16:00:23.140062+00 f t ADELANTO 0.00 5 11198 \N +445257 2025-11-01 16:00:57.484881+00 2025-11-01 16:00:57.484893+00 f t SUBTOTAL 46000.00 1 11197 \N +445258 2025-11-01 16:00:57.486932+00 2025-11-01 16:00:57.48694+00 f t COSTO_SERVICIO 0.00 2 11197 \N +445259 2025-11-01 16:00:57.488385+00 2025-11-01 16:00:57.488391+00 f t DESCUENTO 0.00 3 11197 \N +445260 2025-11-01 16:00:57.489503+00 2025-11-01 16:00:57.48951+00 f t TOTAL 46000.00 4 11197 \N +445261 2025-11-01 16:00:57.490601+00 2025-11-01 16:00:57.490607+00 f t ADELANTO 11000.00 5 11197 \N +445267 2025-11-01 16:08:00.386469+00 2025-11-01 16:08:00.386477+00 f t SUBTOTAL 0.00 1 11199 \N +445268 2025-11-01 16:08:00.387789+00 2025-11-01 16:08:00.387795+00 f t COSTO_SERVICIO 0.00 2 11199 \N +445269 2025-11-01 16:08:00.388803+00 2025-11-01 16:08:00.388809+00 f t DESCUENTO 0.00 3 11199 \N +445270 2025-11-01 16:08:00.38962+00 2025-11-01 16:08:00.389625+00 f t TOTAL 0.00 4 11199 \N +445271 2025-11-01 16:08:00.390486+00 2025-11-01 16:08:00.390491+00 f t ADELANTO 0.00 5 11199 \N +449857 2025-11-03 18:17:26.71526+00 2025-11-03 18:17:26.715268+00 f t SUBTOTAL 78000.00 1 11310 \N +449858 2025-11-03 18:17:26.716887+00 2025-11-03 18:17:26.716892+00 f t COSTO_SERVICIO 0.00 2 11310 \N +449859 2025-11-03 18:17:26.717809+00 2025-11-03 18:17:26.717814+00 f t DESCUENTO 0.00 3 11310 \N +449860 2025-11-03 18:17:26.718654+00 2025-11-03 18:17:26.718659+00 f t TOTAL 78000.00 4 11310 \N +449861 2025-11-03 18:17:26.719667+00 2025-11-03 18:17:26.719672+00 f t ADELANTO 13000.00 5 11310 \N +450247 2025-11-03 21:38:39.665517+00 2025-11-03 21:38:39.665527+00 f t SUBTOTAL 0.00 1 11325 \N +450248 2025-11-03 21:38:39.667017+00 2025-11-03 21:38:39.667022+00 f t COSTO_SERVICIO 0.00 2 11325 \N +450249 2025-11-03 21:38:39.668238+00 2025-11-03 21:38:39.668244+00 f t DESCUENTO 0.00 3 11325 \N +450250 2025-11-03 21:38:39.669157+00 2025-11-03 21:38:39.669162+00 f t TOTAL 0.00 4 11325 \N +450251 2025-11-03 21:38:39.669977+00 2025-11-03 21:38:39.669982+00 f t ADELANTO 0.00 5 11325 \N +445307 2025-11-01 16:22:10.909496+00 2025-11-01 16:22:10.909504+00 f t SUBTOTAL 46000.00 1 11200 \N +445308 2025-11-01 16:22:10.91122+00 2025-11-01 16:22:10.911226+00 f t COSTO_SERVICIO 0.00 2 11200 \N +445309 2025-11-01 16:22:10.912477+00 2025-11-01 16:22:10.912482+00 f t DESCUENTO 0.00 3 11200 \N +445310 2025-11-01 16:22:10.913589+00 2025-11-01 16:22:10.913594+00 f t TOTAL 46000.00 4 11200 \N +445311 2025-11-01 16:22:10.914786+00 2025-11-01 16:22:10.914791+00 f t ADELANTO 11000.00 5 11200 \N +445312 2025-11-01 16:25:32.938295+00 2025-11-01 16:25:32.938302+00 f t SUBTOTAL 55000.00 1 11201 \N +445313 2025-11-01 16:25:32.940109+00 2025-11-01 16:25:32.940114+00 f t COSTO_SERVICIO 0.00 2 11201 \N +445314 2025-11-01 16:25:32.941167+00 2025-11-01 16:25:32.941172+00 f t DESCUENTO 0.00 3 11201 \N +445315 2025-11-01 16:25:32.9421+00 2025-11-01 16:25:32.942104+00 f t TOTAL 55000.00 4 11201 \N +445316 2025-11-01 16:25:32.94336+00 2025-11-01 16:25:32.943366+00 f t ADELANTO 11000.00 5 11201 \N +445322 2025-11-01 16:29:14.400548+00 2025-11-01 16:29:14.40056+00 f t SUBTOTAL 0.00 1 11202 \N +445323 2025-11-01 16:29:14.402754+00 2025-11-01 16:29:14.402765+00 f t COSTO_SERVICIO 0.00 2 11202 \N +445324 2025-11-01 16:29:14.40444+00 2025-11-01 16:29:14.404449+00 f t DESCUENTO 0.00 3 11202 \N +445325 2025-11-01 16:29:14.405941+00 2025-11-01 16:29:14.405949+00 f t TOTAL 0.00 4 11202 \N +445326 2025-11-01 16:29:14.407422+00 2025-11-01 16:29:14.407429+00 f t ADELANTO 0.00 5 11202 \N +451132 2025-11-04 01:23:28.598699+00 2025-11-04 01:23:28.598707+00 f t SUBTOTAL 0.00 1 11341 \N +451133 2025-11-04 01:23:28.600126+00 2025-11-04 01:23:28.600132+00 f t COSTO_SERVICIO 0.00 2 11341 \N +451134 2025-11-04 01:23:28.601343+00 2025-11-04 01:23:28.60135+00 f t DESCUENTO 0.00 3 11341 \N +451135 2025-11-04 01:23:28.60248+00 2025-11-04 01:23:28.602491+00 f t TOTAL 0.00 4 11341 \N +451136 2025-11-04 01:23:28.603948+00 2025-11-04 01:23:28.603953+00 f t ADELANTO 0.00 5 11341 \N +451382 2025-11-04 01:39:02.15268+00 2025-11-04 01:39:02.15269+00 f t SUBTOTAL 162000.00 1 11343 \N +451383 2025-11-04 01:39:02.155516+00 2025-11-04 01:39:02.155526+00 f t COSTO_SERVICIO 0.00 2 11343 \N +451384 2025-11-04 01:39:02.158555+00 2025-11-04 01:39:02.158571+00 f t DESCUENTO 9200.00 3 11343 \N +451385 2025-11-04 01:39:02.161439+00 2025-11-04 01:39:02.161452+00 f t TOTAL 152800.00 4 11343 \N +451386 2025-11-04 01:39:02.168565+00 2025-11-04 01:39:02.16858+00 f t ADELANTO 40500.00 5 11343 \N +445392 2025-11-01 16:43:57.84984+00 2025-11-01 16:43:57.84985+00 f t SUBTOTAL 0.00 1 11204 \N +445393 2025-11-01 16:43:57.85181+00 2025-11-01 16:43:57.851817+00 f t COSTO_SERVICIO 0.00 2 11204 \N +445394 2025-11-01 16:43:57.852865+00 2025-11-01 16:43:57.85287+00 f t DESCUENTO 0.00 3 11204 \N +445395 2025-11-01 16:43:57.853792+00 2025-11-01 16:43:57.853797+00 f t TOTAL 0.00 4 11204 \N +445396 2025-11-01 16:43:57.854635+00 2025-11-01 16:43:57.854639+00 f t ADELANTO 0.00 5 11204 \N +446202 2025-11-01 21:30:14.032772+00 2025-11-01 21:30:14.03278+00 f t SUBTOTAL 46000.00 1 11227 \N +446203 2025-11-01 21:30:14.034513+00 2025-11-01 21:30:14.03452+00 f t COSTO_SERVICIO 0.00 2 11227 \N +446204 2025-11-01 21:30:14.035688+00 2025-11-01 21:30:14.035693+00 f t DESCUENTO 0.00 3 11227 \N +446205 2025-11-01 21:30:14.03685+00 2025-11-01 21:30:14.036855+00 f t TOTAL 46000.00 4 11227 \N +446206 2025-11-01 21:30:14.037938+00 2025-11-01 21:30:14.037944+00 f t ADELANTO 11000.00 5 11227 \N +456727 2025-11-05 14:55:17.058477+00 2025-11-05 14:55:17.058488+00 f t SUBTOTAL 107000.00 1 11462 \N +456728 2025-11-05 14:55:17.060717+00 2025-11-05 14:55:17.060728+00 f t COSTO_SERVICIO 0.00 2 11462 \N +456729 2025-11-05 14:55:17.062298+00 2025-11-05 14:55:17.062308+00 f t DESCUENTO 0.00 3 11462 \N +456730 2025-11-05 14:55:17.06394+00 2025-11-05 14:55:17.063948+00 f t TOTAL 107000.00 4 11462 \N +456731 2025-11-05 14:55:17.065248+00 2025-11-05 14:55:17.065256+00 f t ADELANTO 12000.00 5 11462 \N +456957 2025-11-05 16:13:57.87403+00 2025-11-05 16:13:57.874038+00 f t SUBTOTAL 46000.00 1 11472 \N +445417 2025-11-01 16:44:31.795056+00 2025-11-01 16:44:31.795063+00 f t SUBTOTAL 88000.00 1 11203 \N +445418 2025-11-01 16:44:31.796584+00 2025-11-01 16:44:31.796591+00 f t COSTO_SERVICIO 0.00 2 11203 \N +445419 2025-11-01 16:44:31.797673+00 2025-11-01 16:44:31.797679+00 f t DESCUENTO 0.00 3 11203 \N +445420 2025-11-01 16:44:31.798649+00 2025-11-01 16:44:31.798654+00 f t TOTAL 88000.00 4 11203 \N +445421 2025-11-01 16:44:31.799456+00 2025-11-01 16:44:31.799461+00 f t ADELANTO 13000.00 5 11203 \N +456958 2025-11-05 16:13:57.875695+00 2025-11-05 16:13:57.875701+00 f t COSTO_SERVICIO 0.00 2 11472 \N +445447 2025-11-01 16:47:36.156104+00 2025-11-01 16:47:36.15611+00 f t SUBTOTAL 155400.00 1 11205 \N +445448 2025-11-01 16:47:36.15755+00 2025-11-01 16:47:36.157556+00 f t COSTO_SERVICIO 0.00 2 11205 \N +445449 2025-11-01 16:47:36.158661+00 2025-11-01 16:47:36.158669+00 f t DESCUENTO 9200.00 3 11205 \N +445450 2025-11-01 16:47:36.159805+00 2025-11-01 16:47:36.15981+00 f t TOTAL 146200.00 4 11205 \N +445451 2025-11-01 16:47:36.160689+00 2025-11-01 16:47:36.160694+00 f t ADELANTO 42400.00 5 11205 \N +447697 2025-11-02 23:47:37.146507+00 2025-11-02 23:47:37.146519+00 f t SUBTOTAL 0.00 1 11261 \N +447698 2025-11-02 23:47:37.148274+00 2025-11-02 23:47:37.148284+00 f t COSTO_SERVICIO 0.00 2 11261 \N +447699 2025-11-02 23:47:37.149932+00 2025-11-02 23:47:37.14994+00 f t DESCUENTO 0.00 3 11261 \N +447700 2025-11-02 23:47:37.151203+00 2025-11-02 23:47:37.151211+00 f t TOTAL 0.00 4 11261 \N +447701 2025-11-02 23:47:37.15241+00 2025-11-02 23:47:37.152418+00 f t ADELANTO 0.00 5 11261 \N +445462 2025-11-01 17:01:16.281802+00 2025-11-01 17:01:16.281809+00 f t SUBTOTAL 46000.00 1 11206 \N +445463 2025-11-01 17:01:16.283448+00 2025-11-01 17:01:16.283453+00 f t COSTO_SERVICIO 0.00 2 11206 \N +445464 2025-11-01 17:01:16.284477+00 2025-11-01 17:01:16.284483+00 f t DESCUENTO 0.00 3 11206 \N +445465 2025-11-01 17:01:16.285424+00 2025-11-01 17:01:16.28543+00 f t TOTAL 46000.00 4 11206 \N +445466 2025-11-01 17:01:16.286213+00 2025-11-01 17:01:16.286218+00 f t ADELANTO 11000.00 5 11206 \N +448332 2025-11-03 14:00:03.517431+00 2025-11-03 14:00:03.517446+00 f t SUBTOTAL 107000.00 1 11272 \N +448333 2025-11-03 14:00:03.520825+00 2025-11-03 14:00:03.52084+00 f t COSTO_SERVICIO 0.00 2 11272 \N +448334 2025-11-03 14:00:03.523528+00 2025-11-03 14:00:03.523543+00 f t DESCUENTO 0.00 3 11272 \N +448335 2025-11-03 14:00:03.525857+00 2025-11-03 14:00:03.525874+00 f t TOTAL 107000.00 4 11272 \N +448336 2025-11-03 14:00:03.528308+00 2025-11-03 14:00:03.528324+00 f t ADELANTO 12000.00 5 11272 \N +445492 2025-11-01 17:31:08.977492+00 2025-11-01 17:31:08.977499+00 f t SUBTOTAL 54000.00 1 11207 \N +445493 2025-11-01 17:31:08.979073+00 2025-11-01 17:31:08.979079+00 f t COSTO_SERVICIO 0.00 2 11207 \N +445494 2025-11-01 17:31:08.980227+00 2025-11-01 17:31:08.980233+00 f t DESCUENTO 0.00 3 11207 \N +445495 2025-11-01 17:31:08.981241+00 2025-11-01 17:31:08.981246+00 f t TOTAL 54000.00 4 11207 \N +445496 2025-11-01 17:31:08.982316+00 2025-11-01 17:31:08.982321+00 f t ADELANTO 13500.00 5 11207 \N +448667 2025-11-03 15:37:01.862711+00 2025-11-03 15:37:01.86272+00 f t SUBTOTAL 55000.00 1 11286 \N +448668 2025-11-03 15:37:01.864465+00 2025-11-03 15:37:01.864475+00 f t COSTO_SERVICIO 0.00 2 11286 \N +448669 2025-11-03 15:37:01.865992+00 2025-11-03 15:37:01.866002+00 f t DESCUENTO 0.00 3 11286 \N +448670 2025-11-03 15:37:01.867386+00 2025-11-03 15:37:01.867394+00 f t TOTAL 55000.00 4 11286 \N +448671 2025-11-03 15:37:01.868791+00 2025-11-03 15:37:01.8688+00 f t ADELANTO 11000.00 5 11286 \N +445527 2025-11-01 17:42:31.837854+00 2025-11-01 17:42:31.837863+00 f t SUBTOTAL 0.00 1 11208 \N +445528 2025-11-01 17:42:31.839712+00 2025-11-01 17:42:31.83972+00 f t COSTO_SERVICIO 0.00 2 11208 \N +445529 2025-11-01 17:42:31.840997+00 2025-11-01 17:42:31.841003+00 f t DESCUENTO 0.00 3 11208 \N +445530 2025-11-01 17:42:31.84205+00 2025-11-01 17:42:31.842055+00 f t TOTAL 0.00 4 11208 \N +445531 2025-11-01 17:42:31.84293+00 2025-11-01 17:42:31.842935+00 f t ADELANTO 0.00 5 11208 \N +445542 2025-11-01 18:16:29.912002+00 2025-11-01 18:16:29.912011+00 f t SUBTOTAL 107000.00 1 11209 \N +445543 2025-11-01 18:16:29.913573+00 2025-11-01 18:16:29.913579+00 f t COSTO_SERVICIO 0.00 2 11209 \N +445544 2025-11-01 18:16:29.914632+00 2025-11-01 18:16:29.914637+00 f t DESCUENTO 0.00 3 11209 \N +445545 2025-11-01 18:16:29.915737+00 2025-11-01 18:16:29.915741+00 f t TOTAL 107000.00 4 11209 \N +445546 2025-11-01 18:16:29.91698+00 2025-11-01 18:16:29.916986+00 f t ADELANTO 12000.00 5 11209 \N +445592 2025-11-01 18:28:07.54289+00 2025-11-01 18:28:07.542902+00 f t SUBTOTAL 30000.00 1 11210 \N +445593 2025-11-01 18:28:07.545002+00 2025-11-01 18:28:07.545012+00 f t COSTO_SERVICIO 0.00 2 11210 \N +445594 2025-11-01 18:28:07.546636+00 2025-11-01 18:28:07.546646+00 f t DESCUENTO 0.00 3 11210 \N +445595 2025-11-01 18:28:07.548137+00 2025-11-01 18:28:07.548146+00 f t TOTAL 30000.00 4 11210 \N +445596 2025-11-01 18:28:07.549529+00 2025-11-01 18:28:07.549537+00 f t ADELANTO 30000.00 5 11210 \N +445602 2025-11-01 18:32:38.961045+00 2025-11-01 18:32:38.961055+00 f t SUBTOTAL 0.00 1 11211 \N +445603 2025-11-01 18:32:38.962883+00 2025-11-01 18:32:38.96289+00 f t COSTO_SERVICIO 0.00 2 11211 \N +445604 2025-11-01 18:32:38.963999+00 2025-11-01 18:32:38.964005+00 f t DESCUENTO 0.00 3 11211 \N +445605 2025-11-01 18:32:38.964904+00 2025-11-01 18:32:38.964909+00 f t TOTAL 0.00 4 11211 \N +445606 2025-11-01 18:32:38.96574+00 2025-11-01 18:32:38.965746+00 f t ADELANTO 0.00 5 11211 \N +450837 2025-11-03 23:47:09.609923+00 2025-11-03 23:47:09.609936+00 f t SUBTOTAL 0.00 1 11333 \N +450838 2025-11-03 23:47:09.612055+00 2025-11-03 23:47:09.612064+00 f t COSTO_SERVICIO 0.00 2 11333 \N +450839 2025-11-03 23:47:09.613275+00 2025-11-03 23:47:09.613283+00 f t DESCUENTO 0.00 3 11333 \N +450840 2025-11-03 23:47:09.614312+00 2025-11-03 23:47:09.614319+00 f t TOTAL 0.00 4 11333 \N +450841 2025-11-03 23:47:09.61534+00 2025-11-03 23:47:09.615347+00 f t ADELANTO 0.00 5 11333 \N +450942 2025-11-04 00:09:17.929998+00 2025-11-04 00:09:17.930008+00 f t SUBTOTAL 0.00 1 11336 \N +450943 2025-11-04 00:09:17.932081+00 2025-11-04 00:09:17.932089+00 f t COSTO_SERVICIO 0.00 2 11336 \N +450944 2025-11-04 00:09:17.933264+00 2025-11-04 00:09:17.93327+00 f t DESCUENTO 0.00 3 11336 \N +450945 2025-11-04 00:09:17.934403+00 2025-11-04 00:09:17.93441+00 f t TOTAL 0.00 4 11336 \N +450946 2025-11-04 00:09:17.935866+00 2025-11-04 00:09:17.935871+00 f t ADELANTO 0.00 5 11336 \N +477513 2025-11-10 17:59:10.273338+00 2025-11-10 17:59:10.273344+00 f t COSTO_SERVICIO 0.00 2 11936 \N +477514 2025-11-10 17:59:10.27459+00 2025-11-10 17:59:10.274596+00 f t DESCUENTO 0.00 3 11936 \N +477515 2025-11-10 17:59:10.275519+00 2025-11-10 17:59:10.275524+00 f t TOTAL 70000.00 4 11936 \N +477516 2025-11-10 17:59:10.276432+00 2025-11-10 17:59:10.276436+00 f t ADELANTO 19000.00 5 11936 \N +488646 2025-11-13 00:16:47.998071+00 2025-11-13 00:16:47.998077+00 f t ADELANTO 0.00 5 12195 \N +500012 2025-11-15 20:11:27.61084+00 2025-11-15 20:11:27.610852+00 f t SUBTOTAL 0.00 1 12472 \N +500013 2025-11-15 20:11:27.613375+00 2025-11-15 20:11:27.613387+00 f t COSTO_SERVICIO 0.00 2 12472 \N +500014 2025-11-15 20:11:27.614933+00 2025-11-15 20:11:27.614942+00 f t DESCUENTO 0.00 3 12472 \N +451852 2025-11-04 03:31:19.327245+00 2025-11-04 03:31:19.327251+00 f t SUBTOTAL 54000.00 1 11351 \N +451853 2025-11-04 03:31:19.328784+00 2025-11-04 03:31:19.32879+00 f t COSTO_SERVICIO 0.00 2 11351 \N +451854 2025-11-04 03:31:19.32988+00 2025-11-04 03:31:19.329886+00 f t DESCUENTO 0.00 3 11351 \N +451855 2025-11-04 03:31:19.330858+00 2025-11-04 03:31:19.330864+00 f t TOTAL 54000.00 4 11351 \N +451856 2025-11-04 03:31:19.331969+00 2025-11-04 03:31:19.331974+00 f t ADELANTO 13500.00 5 11351 \N +456959 2025-11-05 16:13:57.876825+00 2025-11-05 16:13:57.876832+00 f t DESCUENTO 0.00 3 11472 \N +456960 2025-11-05 16:13:57.87812+00 2025-11-05 16:13:57.878127+00 f t TOTAL 46000.00 4 11472 \N +456961 2025-11-05 16:13:57.879834+00 2025-11-05 16:13:57.87984+00 f t ADELANTO 11000.00 5 11472 \N +451882 2025-11-04 03:32:02.230863+00 2025-11-04 03:32:02.230872+00 f t SUBTOTAL 0.00 1 11352 \N +451883 2025-11-04 03:32:02.23273+00 2025-11-04 03:32:02.232739+00 f t COSTO_SERVICIO 0.00 2 11352 \N +451884 2025-11-04 03:32:02.234236+00 2025-11-04 03:32:02.234247+00 f t DESCUENTO 0.00 3 11352 \N +451885 2025-11-04 03:32:02.235846+00 2025-11-04 03:32:02.235856+00 f t TOTAL 0.00 4 11352 \N +451886 2025-11-04 03:32:02.23749+00 2025-11-04 03:32:02.237501+00 f t ADELANTO 0.00 5 11352 \N +468952 2025-11-08 14:07:35.035201+00 2025-11-08 14:07:35.035212+00 f t SUBTOTAL 46000.00 1 11744 \N +451932 2025-11-04 03:33:55.387608+00 2025-11-04 03:33:55.387614+00 f t SUBTOTAL 78000.00 1 11353 \N +451933 2025-11-04 03:33:55.389123+00 2025-11-04 03:33:55.389129+00 f t COSTO_SERVICIO 0.00 2 11353 \N +451934 2025-11-04 03:33:55.390335+00 2025-11-04 03:33:55.390341+00 f t DESCUENTO 0.00 3 11353 \N +451935 2025-11-04 03:33:55.391627+00 2025-11-04 03:33:55.391633+00 f t TOTAL 78000.00 4 11353 \N +451936 2025-11-04 03:33:55.392867+00 2025-11-04 03:33:55.392873+00 f t ADELANTO 21500.00 5 11353 \N +468953 2025-11-08 14:07:35.038197+00 2025-11-08 14:07:35.038204+00 f t COSTO_SERVICIO 0.00 2 11744 \N +468954 2025-11-08 14:07:35.040967+00 2025-11-08 14:07:35.040974+00 f t DESCUENTO 0.00 3 11744 \N +468955 2025-11-08 14:07:35.042242+00 2025-11-08 14:07:35.042248+00 f t TOTAL 46000.00 4 11744 \N +468956 2025-11-08 14:07:35.043315+00 2025-11-08 14:07:35.043321+00 f t ADELANTO 11000.00 5 11744 \N +451972 2025-11-04 05:07:35.121731+00 2025-11-04 05:07:35.121738+00 f t SUBTOTAL 46000.00 1 11354 \N +451973 2025-11-04 05:07:35.123285+00 2025-11-04 05:07:35.123292+00 f t COSTO_SERVICIO 0.00 2 11354 \N +451974 2025-11-04 05:07:35.124501+00 2025-11-04 05:07:35.124507+00 f t DESCUENTO 0.00 3 11354 \N +451975 2025-11-04 05:07:35.125543+00 2025-11-04 05:07:35.125548+00 f t TOTAL 46000.00 4 11354 \N +451976 2025-11-04 05:07:35.126778+00 2025-11-04 05:07:35.126785+00 f t ADELANTO 11000.00 5 11354 \N +469942 2025-11-08 15:57:36.890608+00 2025-11-08 15:57:36.890616+00 f t SUBTOTAL 32500.00 1 11759 \N +469943 2025-11-08 15:57:36.892533+00 2025-11-08 15:57:36.892539+00 f t COSTO_SERVICIO 0.00 2 11759 \N +469944 2025-11-08 15:57:36.893889+00 2025-11-08 15:57:36.893896+00 f t DESCUENTO 0.00 3 11759 \N +469945 2025-11-08 15:57:36.895082+00 2025-11-08 15:57:36.895087+00 f t TOTAL 32500.00 4 11759 \N +469946 2025-11-08 15:57:36.896227+00 2025-11-08 15:57:36.896233+00 f t ADELANTO 32500.00 5 11759 \N +470207 2025-11-08 17:09:25.893572+00 2025-11-08 17:09:25.893582+00 f t SUBTOTAL 0.00 1 11764 \N +470208 2025-11-08 17:09:25.89591+00 2025-11-08 17:09:25.895925+00 f t COSTO_SERVICIO 0.00 2 11764 \N +470209 2025-11-08 17:09:25.897447+00 2025-11-08 17:09:25.897508+00 f t DESCUENTO 0.00 3 11764 \N +470210 2025-11-08 17:09:25.898944+00 2025-11-08 17:09:25.89895+00 f t TOTAL 0.00 4 11764 \N +470211 2025-11-08 17:09:25.900173+00 2025-11-08 17:09:25.900182+00 f t ADELANTO 0.00 5 11764 \N +460813 2025-11-06 13:27:23.227016+00 2025-11-06 13:27:23.227022+00 f t COSTO_SERVICIO 0.00 2 11550 \N +460814 2025-11-06 13:27:23.228113+00 2025-11-06 13:27:23.228118+00 f t DESCUENTO 0.00 3 11550 \N +460815 2025-11-06 13:27:23.229008+00 2025-11-06 13:27:23.229013+00 f t TOTAL 0.00 4 11550 \N +460816 2025-11-06 13:27:23.23009+00 2025-11-06 13:27:23.230097+00 f t ADELANTO 0.00 5 11550 \N +452027 2025-11-04 05:22:18.238381+00 2025-11-04 05:22:18.238391+00 f t SUBTOTAL 0.00 1 11355 \N +452028 2025-11-04 05:22:18.240137+00 2025-11-04 05:22:18.240143+00 f t COSTO_SERVICIO 0.00 2 11355 \N +452029 2025-11-04 05:22:18.241315+00 2025-11-04 05:22:18.24132+00 f t DESCUENTO 0.00 3 11355 \N +452030 2025-11-04 05:22:18.242788+00 2025-11-04 05:22:18.242796+00 f t TOTAL 0.00 4 11355 \N +452031 2025-11-04 05:22:18.244182+00 2025-11-04 05:22:18.24419+00 f t ADELANTO 0.00 5 11355 \N +452072 2025-11-04 09:39:25.973852+00 2025-11-04 09:39:25.973859+00 f t SUBTOTAL 55000.00 1 11356 \N +452073 2025-11-04 09:39:25.975433+00 2025-11-04 09:39:25.975439+00 f t COSTO_SERVICIO 0.00 2 11356 \N +452074 2025-11-04 09:39:25.976589+00 2025-11-04 09:39:25.976594+00 f t DESCUENTO 0.00 3 11356 \N +452075 2025-11-04 09:39:25.977559+00 2025-11-04 09:39:25.977565+00 f t TOTAL 55000.00 4 11356 \N +452076 2025-11-04 09:39:25.978546+00 2025-11-04 09:39:25.978552+00 f t ADELANTO 11000.00 5 11356 \N +461587 2025-11-06 16:46:50.626601+00 2025-11-06 16:46:50.626609+00 f t SUBTOTAL 13200.00 1 11571 \N +461588 2025-11-06 16:46:50.628379+00 2025-11-06 16:46:50.628385+00 f t COSTO_SERVICIO 0.00 2 11571 \N +461589 2025-11-06 16:46:50.62953+00 2025-11-06 16:46:50.629535+00 f t DESCUENTO 0.00 3 11571 \N +461590 2025-11-06 16:46:50.630878+00 2025-11-06 16:46:50.630883+00 f t TOTAL 13200.00 4 11571 \N +461591 2025-11-06 16:46:50.631968+00 2025-11-06 16:46:50.631975+00 f t ADELANTO 13200.00 5 11571 \N +461737 2025-11-06 16:53:07.851564+00 2025-11-06 16:53:07.851577+00 f t SUBTOTAL 0.00 1 11573 \N +461738 2025-11-06 16:53:07.854235+00 2025-11-06 16:53:07.854245+00 f t COSTO_SERVICIO 0.00 2 11573 \N +461739 2025-11-06 16:53:07.855835+00 2025-11-06 16:53:07.855843+00 f t DESCUENTO 0.00 3 11573 \N +461740 2025-11-06 16:53:07.857261+00 2025-11-06 16:53:07.85727+00 f t TOTAL 0.00 4 11573 \N +461741 2025-11-06 16:53:07.858466+00 2025-11-06 16:53:07.858473+00 f t ADELANTO 0.00 5 11573 \N +461907 2025-11-06 18:20:02.408955+00 2025-11-06 18:20:02.408969+00 f t SUBTOTAL 0.00 1 11579 \N +461908 2025-11-06 18:20:02.419306+00 2025-11-06 18:20:02.41932+00 f t COSTO_SERVICIO 0.00 2 11579 \N +461909 2025-11-06 18:20:02.422716+00 2025-11-06 18:20:02.42273+00 f t DESCUENTO 0.00 3 11579 \N +461910 2025-11-06 18:20:02.425925+00 2025-11-06 18:20:02.425938+00 f t TOTAL 0.00 4 11579 \N +461911 2025-11-06 18:20:02.428223+00 2025-11-06 18:20:02.428235+00 f t ADELANTO 0.00 5 11579 \N +462142 2025-11-06 19:58:06.624351+00 2025-11-06 19:58:06.624358+00 f t SUBTOTAL 78000.00 1 11587 \N +462143 2025-11-06 19:58:06.626189+00 2025-11-06 19:58:06.626197+00 f t COSTO_SERVICIO 0.00 2 11587 \N +462144 2025-11-06 19:58:06.627485+00 2025-11-06 19:58:06.627491+00 f t DESCUENTO 0.00 3 11587 \N +462145 2025-11-06 19:58:06.628729+00 2025-11-06 19:58:06.628734+00 f t TOTAL 78000.00 4 11587 \N +462146 2025-11-06 19:58:06.629649+00 2025-11-06 19:58:06.629655+00 f t ADELANTO 21500.00 5 11587 \N +478277 2025-11-10 20:27:36.684495+00 2025-11-10 20:27:36.684934+00 f t SUBTOTAL 0.00 1 11953 \N +452142 2025-11-04 10:30:46.063674+00 2025-11-04 10:30:46.063682+00 f t SUBTOTAL 55000.00 1 11357 \N +452143 2025-11-04 10:30:46.065244+00 2025-11-04 10:30:46.06525+00 f t COSTO_SERVICIO 0.00 2 11357 \N +452144 2025-11-04 10:30:46.066465+00 2025-11-04 10:30:46.06647+00 f t DESCUENTO 0.00 3 11357 \N +452145 2025-11-04 10:30:46.067518+00 2025-11-04 10:30:46.067523+00 f t TOTAL 55000.00 4 11357 \N +452146 2025-11-04 10:30:46.068539+00 2025-11-04 10:30:46.068545+00 f t ADELANTO 11000.00 5 11357 \N +478278 2025-11-10 20:27:36.688904+00 2025-11-10 20:27:36.688911+00 f t COSTO_SERVICIO 0.00 2 11953 \N +478279 2025-11-10 20:27:36.689981+00 2025-11-10 20:27:36.689987+00 f t DESCUENTO 0.00 3 11953 \N +478280 2025-11-10 20:27:36.691034+00 2025-11-10 20:27:36.691039+00 f t TOTAL 0.00 4 11953 \N +478281 2025-11-10 20:27:36.691981+00 2025-11-10 20:27:36.691986+00 f t ADELANTO 0.00 5 11953 \N +452172 2025-11-04 10:34:36.645219+00 2025-11-04 10:34:36.645227+00 f t SUBTOTAL 55000.00 1 11358 \N +452173 2025-11-04 10:34:36.647104+00 2025-11-04 10:34:36.64711+00 f t COSTO_SERVICIO 0.00 2 11358 \N +452174 2025-11-04 10:34:36.648287+00 2025-11-04 10:34:36.648292+00 f t DESCUENTO 0.00 3 11358 \N +452175 2025-11-04 10:34:36.64928+00 2025-11-04 10:34:36.649285+00 f t TOTAL 55000.00 4 11358 \N +452176 2025-11-04 10:34:36.650309+00 2025-11-04 10:34:36.650314+00 f t ADELANTO 11000.00 5 11358 \N +468482 2025-11-08 12:26:13.946907+00 2025-11-08 12:26:13.946918+00 f t SUBTOTAL 46000.00 1 11733 \N +468483 2025-11-08 12:26:13.950067+00 2025-11-08 12:26:13.950079+00 f t COSTO_SERVICIO 0.00 2 11733 \N +452192 2025-11-04 11:03:11.061862+00 2025-11-04 11:03:11.061872+00 f t SUBTOTAL 0.00 1 11359 \N +452193 2025-11-04 11:03:11.063611+00 2025-11-04 11:03:11.063617+00 f t COSTO_SERVICIO 0.00 2 11359 \N +452194 2025-11-04 11:03:11.064713+00 2025-11-04 11:03:11.064747+00 f t DESCUENTO 0.00 3 11359 \N +452195 2025-11-04 11:03:11.065808+00 2025-11-04 11:03:11.065813+00 f t TOTAL 0.00 4 11359 \N +452196 2025-11-04 11:03:11.066721+00 2025-11-04 11:03:11.066726+00 f t ADELANTO 0.00 5 11359 \N +468484 2025-11-08 12:26:13.951658+00 2025-11-08 12:26:13.951669+00 f t DESCUENTO 0.00 3 11733 \N +468485 2025-11-08 12:26:13.954234+00 2025-11-08 12:26:13.954243+00 f t TOTAL 46000.00 4 11733 \N +468486 2025-11-08 12:26:13.955751+00 2025-11-08 12:26:13.955763+00 f t ADELANTO 11000.00 5 11733 \N +469552 2025-11-08 15:29:33.865203+00 2025-11-08 15:29:33.865216+00 f t SUBTOTAL 0.00 1 11754 \N +469553 2025-11-08 15:29:33.866932+00 2025-11-08 15:29:33.866942+00 f t COSTO_SERVICIO 0.00 2 11754 \N +469554 2025-11-08 15:29:33.86849+00 2025-11-08 15:29:33.868501+00 f t DESCUENTO 0.00 3 11754 \N +469555 2025-11-08 15:29:33.869799+00 2025-11-08 15:29:33.869808+00 f t TOTAL 0.00 4 11754 \N +469556 2025-11-08 15:29:33.87208+00 2025-11-08 15:29:33.87209+00 f t ADELANTO 0.00 5 11754 \N +469952 2025-11-08 16:02:34.660717+00 2025-11-08 16:02:34.66073+00 f t SUBTOTAL 0.00 1 11760 \N +469953 2025-11-08 16:02:34.662615+00 2025-11-08 16:02:34.662624+00 f t COSTO_SERVICIO 0.00 2 11760 \N +469954 2025-11-08 16:02:34.664391+00 2025-11-08 16:02:34.664402+00 f t DESCUENTO 0.00 3 11760 \N +469955 2025-11-08 16:02:34.666087+00 2025-11-08 16:02:34.6661+00 f t TOTAL 0.00 4 11760 \N +469956 2025-11-08 16:02:34.667916+00 2025-11-08 16:02:34.667925+00 f t ADELANTO 0.00 5 11760 \N +452272 2025-11-04 11:20:53.617425+00 2025-11-04 11:20:53.617434+00 f t SUBTOTAL 102000.00 1 11360 \N +452273 2025-11-04 11:20:53.619216+00 2025-11-04 11:20:53.619222+00 f t COSTO_SERVICIO 0.00 2 11360 \N +452274 2025-11-04 11:20:53.620544+00 2025-11-04 11:20:53.620549+00 f t DESCUENTO 0.00 3 11360 \N +452275 2025-11-04 11:20:53.621634+00 2025-11-04 11:20:53.621639+00 f t TOTAL 102000.00 4 11360 \N +452276 2025-11-04 11:20:53.622597+00 2025-11-04 11:20:53.622602+00 f t ADELANTO 29500.00 5 11360 \N +452302 2025-11-04 12:41:42.150682+00 2025-11-04 12:41:42.15069+00 f t SUBTOTAL 55000.00 1 11361 \N +452303 2025-11-04 12:41:42.152379+00 2025-11-04 12:41:42.152385+00 f t COSTO_SERVICIO 0.00 2 11361 \N +452304 2025-11-04 12:41:42.153608+00 2025-11-04 12:41:42.153613+00 f t DESCUENTO 0.00 3 11361 \N +452305 2025-11-04 12:41:42.154511+00 2025-11-04 12:41:42.154517+00 f t TOTAL 55000.00 4 11361 \N +452306 2025-11-04 12:41:42.155375+00 2025-11-04 12:41:42.15538+00 f t ADELANTO 11000.00 5 11361 \N +460947 2025-11-06 14:26:13.758182+00 2025-11-06 14:26:13.758192+00 f t SUBTOTAL 47000.00 1 11554 \N +460948 2025-11-06 14:26:13.760092+00 2025-11-06 14:26:13.760099+00 f t COSTO_SERVICIO 0.00 2 11554 \N +460949 2025-11-06 14:26:13.761612+00 2025-11-06 14:26:13.761619+00 f t DESCUENTO 0.00 3 11554 \N +460950 2025-11-06 14:26:13.762729+00 2025-11-06 14:26:13.762734+00 f t TOTAL 47000.00 4 11554 \N +460951 2025-11-06 14:26:13.763738+00 2025-11-06 14:26:13.763743+00 f t ADELANTO 12000.00 5 11554 \N +452337 2025-11-04 13:09:55.042821+00 2025-11-04 13:09:55.042828+00 f t SUBTOTAL 80000.00 1 11362 \N +452338 2025-11-04 13:09:55.044461+00 2025-11-04 13:09:55.044467+00 f t COSTO_SERVICIO 0.00 2 11362 \N +452339 2025-11-04 13:09:55.045599+00 2025-11-04 13:09:55.045604+00 f t DESCUENTO 0.00 3 11362 \N +452340 2025-11-04 13:09:55.046469+00 2025-11-04 13:09:55.046474+00 f t TOTAL 80000.00 4 11362 \N +452341 2025-11-04 13:09:55.047294+00 2025-11-04 13:09:55.047299+00 f t ADELANTO 12000.00 5 11362 \N +452362 2025-11-04 13:14:54.936287+00 2025-11-04 13:14:54.936296+00 f t SUBTOTAL 55000.00 1 11350 \N +452363 2025-11-04 13:14:54.938031+00 2025-11-04 13:14:54.938039+00 f t COSTO_SERVICIO 0.00 2 11350 \N +452364 2025-11-04 13:14:54.939245+00 2025-11-04 13:14:54.939251+00 f t DESCUENTO 0.00 3 11350 \N +452365 2025-11-04 13:14:54.940482+00 2025-11-04 13:14:54.940487+00 f t TOTAL 55000.00 4 11350 \N +452366 2025-11-04 13:14:54.941632+00 2025-11-04 13:14:54.941637+00 f t ADELANTO 11000.00 5 11350 \N +461742 2025-11-06 16:53:19.079271+00 2025-11-06 16:53:19.079277+00 f t SUBTOTAL 78000.00 1 11564 \N +461743 2025-11-06 16:53:19.080964+00 2025-11-06 16:53:19.080972+00 f t COSTO_SERVICIO 0.00 2 11564 \N +461744 2025-11-06 16:53:19.082134+00 2025-11-06 16:53:19.08214+00 f t DESCUENTO 0.00 3 11564 \N +461745 2025-11-06 16:53:19.083326+00 2025-11-06 16:53:19.083332+00 f t TOTAL 78000.00 4 11564 \N +461746 2025-11-06 16:53:19.084333+00 2025-11-06 16:53:19.084337+00 f t ADELANTO 21500.00 5 11564 \N +461827 2025-11-06 17:24:48.042374+00 2025-11-06 17:24:48.042385+00 f t SUBTOTAL 46000.00 1 11576 \N +461828 2025-11-06 17:24:48.044284+00 2025-11-06 17:24:48.04429+00 f t COSTO_SERVICIO 0.00 2 11576 \N +461829 2025-11-06 17:24:48.045589+00 2025-11-06 17:24:48.045595+00 f t DESCUENTO 0.00 3 11576 \N +461830 2025-11-06 17:24:48.046671+00 2025-11-06 17:24:48.046679+00 f t TOTAL 46000.00 4 11576 \N +461831 2025-11-06 17:24:48.048194+00 2025-11-06 17:24:48.048199+00 f t ADELANTO 11000.00 5 11576 \N +452397 2025-11-04 13:37:54.845463+00 2025-11-04 13:37:54.84547+00 f t SUBTOTAL 54000.00 1 11364 \N +452398 2025-11-04 13:37:54.847332+00 2025-11-04 13:37:54.847343+00 f t COSTO_SERVICIO 0.00 2 11364 \N +452399 2025-11-04 13:37:54.849421+00 2025-11-04 13:37:54.849428+00 f t DESCUENTO 0.00 3 11364 \N +452400 2025-11-04 13:37:54.850609+00 2025-11-04 13:37:54.850615+00 f t TOTAL 54000.00 4 11364 \N +452401 2025-11-04 13:37:54.851824+00 2025-11-04 13:37:54.851833+00 f t ADELANTO 13500.00 5 11364 \N +461917 2025-11-06 18:23:27.145103+00 2025-11-06 18:23:27.145111+00 f t SUBTOTAL 0.00 1 11580 \N +461918 2025-11-06 18:23:27.146924+00 2025-11-06 18:23:27.146932+00 f t COSTO_SERVICIO 0.00 2 11580 \N +461919 2025-11-06 18:23:27.148408+00 2025-11-06 18:23:27.148414+00 f t DESCUENTO 0.00 3 11580 \N +461920 2025-11-06 18:23:27.149604+00 2025-11-06 18:23:27.149609+00 f t TOTAL 0.00 4 11580 \N +461921 2025-11-06 18:23:27.150579+00 2025-11-06 18:23:27.150583+00 f t ADELANTO 0.00 5 11580 \N +456217 2025-11-05 12:27:21.729865+00 2025-11-05 12:27:21.729871+00 f t SUBTOTAL 140000.00 1 11454 \N +456218 2025-11-05 12:27:21.731394+00 2025-11-05 12:27:21.7314+00 f t COSTO_SERVICIO 0.00 2 11454 \N +456219 2025-11-05 12:27:21.73268+00 2025-11-05 12:27:21.732686+00 f t DESCUENTO 9200.00 3 11454 \N +456220 2025-11-05 12:27:21.733761+00 2025-11-05 12:27:21.733766+00 f t TOTAL 130800.00 4 11454 \N +456221 2025-11-05 12:27:21.734707+00 2025-11-05 12:27:21.734712+00 f t ADELANTO 38000.00 5 11454 \N +456497 2025-11-05 13:26:40.913729+00 2025-11-05 13:26:40.913737+00 f t SUBTOTAL 46000.00 1 11461 \N +456498 2025-11-05 13:26:40.915801+00 2025-11-05 13:26:40.915807+00 f t COSTO_SERVICIO 0.00 2 11461 \N +456499 2025-11-05 13:26:40.917124+00 2025-11-05 13:26:40.91713+00 f t DESCUENTO 0.00 3 11461 \N +456500 2025-11-05 13:26:40.918259+00 2025-11-05 13:26:40.918264+00 f t TOTAL 46000.00 4 11461 \N +456501 2025-11-05 13:26:40.919391+00 2025-11-05 13:26:40.919396+00 f t ADELANTO 11000.00 5 11461 \N +456747 2025-11-05 15:10:54.212966+00 2025-11-05 15:10:54.212977+00 f t SUBTOTAL 78000.00 1 11468 \N +456748 2025-11-05 15:10:54.215232+00 2025-11-05 15:10:54.215242+00 f t COSTO_SERVICIO 0.00 2 11468 \N +456749 2025-11-05 15:10:54.216741+00 2025-11-05 15:10:54.216747+00 f t DESCUENTO 0.00 3 11468 \N +456750 2025-11-05 15:10:54.218368+00 2025-11-05 15:10:54.218374+00 f t TOTAL 78000.00 4 11468 \N +456751 2025-11-05 15:10:54.219878+00 2025-11-05 15:10:54.219885+00 f t ADELANTO 21500.00 5 11468 \N +456972 2025-11-05 16:34:52.864065+00 2025-11-05 16:34:52.864077+00 f t SUBTOTAL 23000.00 1 11473 \N +456973 2025-11-05 16:34:52.86622+00 2025-11-05 16:34:52.86623+00 f t COSTO_SERVICIO 0.00 2 11473 \N +456974 2025-11-05 16:34:52.867839+00 2025-11-05 16:34:52.867849+00 f t DESCUENTO 0.00 3 11473 \N +456975 2025-11-05 16:34:52.869356+00 2025-11-05 16:34:52.869365+00 f t TOTAL 23000.00 4 11473 \N +456976 2025-11-05 16:34:52.870731+00 2025-11-05 16:34:52.870738+00 f t ADELANTO 5500.00 5 11473 \N +466712 2025-11-07 22:36:07.162023+00 2025-11-07 22:36:07.162035+00 f t SUBTOTAL 0.00 1 11703 \N +466713 2025-11-07 22:36:07.164176+00 2025-11-07 22:36:07.164183+00 f t COSTO_SERVICIO 0.00 2 11703 \N +466714 2025-11-07 22:36:07.165241+00 2025-11-07 22:36:07.165246+00 f t DESCUENTO 0.00 3 11703 \N +466715 2025-11-07 22:36:07.166298+00 2025-11-07 22:36:07.166304+00 f t TOTAL 0.00 4 11703 \N +466716 2025-11-07 22:36:07.16725+00 2025-11-07 22:36:07.167255+00 f t ADELANTO 0.00 5 11703 \N +500015 2025-11-15 20:11:27.616281+00 2025-11-15 20:11:27.61629+00 f t TOTAL 0.00 4 12472 \N +500016 2025-11-15 20:11:27.617947+00 2025-11-15 20:11:27.617955+00 f t ADELANTO 0.00 5 12472 \N +457752 2025-11-05 21:31:58.96837+00 2025-11-05 21:31:58.968379+00 f t SUBTOTAL 55000.00 1 11496 \N +457753 2025-11-05 21:31:58.970227+00 2025-11-05 21:31:58.970235+00 f t COSTO_SERVICIO 0.00 2 11496 \N +457754 2025-11-05 21:31:58.971475+00 2025-11-05 21:31:58.971482+00 f t DESCUENTO 0.00 3 11496 \N +457755 2025-11-05 21:31:58.972599+00 2025-11-05 21:31:58.972607+00 f t TOTAL 55000.00 4 11496 \N +457756 2025-11-05 21:31:58.973642+00 2025-11-05 21:31:58.973649+00 f t ADELANTO 11000.00 5 11496 \N +452487 2025-11-04 13:49:27.204998+00 2025-11-04 13:49:27.205008+00 f t SUBTOTAL 0.00 1 11365 \N +452488 2025-11-04 13:49:27.20749+00 2025-11-04 13:49:27.207502+00 f t COSTO_SERVICIO 0.00 2 11365 \N +452489 2025-11-04 13:49:27.209127+00 2025-11-04 13:49:27.209136+00 f t DESCUENTO 0.00 3 11365 \N +452490 2025-11-04 13:49:27.210561+00 2025-11-04 13:49:27.210568+00 f t TOTAL 0.00 4 11365 \N +452491 2025-11-04 13:49:27.211948+00 2025-11-04 13:49:27.211955+00 f t ADELANTO 0.00 5 11365 \N +459882 2025-11-06 10:03:16.205473+00 2025-11-06 10:03:16.205482+00 f t SUBTOTAL 0.00 1 11531 \N +459883 2025-11-06 10:03:16.207465+00 2025-11-06 10:03:16.207474+00 f t COSTO_SERVICIO 0.00 2 11531 \N +459884 2025-11-06 10:03:16.208618+00 2025-11-06 10:03:16.208624+00 f t DESCUENTO 0.00 3 11531 \N +459885 2025-11-06 10:03:16.209775+00 2025-11-06 10:03:16.20978+00 f t TOTAL 0.00 4 11531 \N +459886 2025-11-06 10:03:16.210691+00 2025-11-06 10:03:16.210697+00 f t ADELANTO 0.00 5 11531 \N +460032 2025-11-06 11:46:20.121652+00 2025-11-06 11:46:20.121663+00 f t SUBTOTAL 46000.00 1 11537 \N +460033 2025-11-06 11:46:20.123604+00 2025-11-06 11:46:20.123615+00 f t COSTO_SERVICIO 0.00 2 11537 \N +460034 2025-11-06 11:46:20.125007+00 2025-11-06 11:46:20.125015+00 f t DESCUENTO 0.00 3 11537 \N +460035 2025-11-06 11:46:20.126385+00 2025-11-06 11:46:20.126393+00 f t TOTAL 46000.00 4 11537 \N +460036 2025-11-06 11:46:20.127626+00 2025-11-06 11:46:20.127634+00 f t ADELANTO 11000.00 5 11537 \N +460292 2025-11-06 12:09:27.352747+00 2025-11-06 12:09:27.352759+00 f t SUBTOTAL 46000.00 1 11541 \N +460293 2025-11-06 12:09:27.354696+00 2025-11-06 12:09:27.354706+00 f t COSTO_SERVICIO 0.00 2 11541 \N +460294 2025-11-06 12:09:27.356062+00 2025-11-06 12:09:27.35607+00 f t DESCUENTO 0.00 3 11541 \N +460295 2025-11-06 12:09:27.357341+00 2025-11-06 12:09:27.357349+00 f t TOTAL 46000.00 4 11541 \N +460296 2025-11-06 12:09:27.358646+00 2025-11-06 12:09:27.358654+00 f t ADELANTO 11000.00 5 11541 \N +460957 2025-11-06 14:28:19.375575+00 2025-11-06 14:28:19.375584+00 f t SUBTOTAL 0.00 1 11555 \N +460958 2025-11-06 14:28:19.376954+00 2025-11-06 14:28:19.37696+00 f t COSTO_SERVICIO 0.00 2 11555 \N +460959 2025-11-06 14:28:19.378179+00 2025-11-06 14:28:19.378187+00 f t DESCUENTO 0.00 3 11555 \N +460960 2025-11-06 14:28:19.3795+00 2025-11-06 14:28:19.379509+00 f t TOTAL 0.00 4 11555 \N +460961 2025-11-06 14:28:19.380769+00 2025-11-06 14:28:19.380776+00 f t ADELANTO 0.00 5 11555 \N +452592 2025-11-04 14:05:53.595391+00 2025-11-04 14:05:53.595398+00 f t SUBTOTAL 78000.00 1 11367 \N +452593 2025-11-04 14:05:53.596833+00 2025-11-04 14:05:53.596838+00 f t COSTO_SERVICIO 0.00 2 11367 \N +452594 2025-11-04 14:05:53.597874+00 2025-11-04 14:05:53.59788+00 f t DESCUENTO 0.00 3 11367 \N +452595 2025-11-04 14:05:53.598807+00 2025-11-04 14:05:53.598812+00 f t TOTAL 78000.00 4 11367 \N +452596 2025-11-04 14:05:53.599955+00 2025-11-04 14:05:53.599961+00 f t ADELANTO 13000.00 5 11367 \N +452647 2025-11-04 14:27:03.623392+00 2025-11-04 14:27:03.623403+00 f t SUBTOTAL 70000.00 1 11368 \N +452648 2025-11-04 14:27:03.625029+00 2025-11-04 14:27:03.625036+00 f t COSTO_SERVICIO 0.00 2 11368 \N +452649 2025-11-04 14:27:03.626208+00 2025-11-04 14:27:03.626213+00 f t DESCUENTO 0.00 3 11368 \N +452650 2025-11-04 14:27:03.627285+00 2025-11-04 14:27:03.62729+00 f t TOTAL 70000.00 4 11368 \N +452651 2025-11-04 14:27:03.628613+00 2025-11-04 14:27:03.628619+00 f t ADELANTO 19000.00 5 11368 \N +452657 2025-11-04 14:27:19.428392+00 2025-11-04 14:27:19.428405+00 f t SUBTOTAL 0.00 1 11369 \N +452658 2025-11-04 14:27:19.429895+00 2025-11-04 14:27:19.429904+00 f t COSTO_SERVICIO 0.00 2 11369 \N +452659 2025-11-04 14:27:19.431222+00 2025-11-04 14:27:19.43123+00 f t DESCUENTO 0.00 3 11369 \N +452660 2025-11-04 14:27:19.432457+00 2025-11-04 14:27:19.432465+00 f t TOTAL 0.00 4 11369 \N +452661 2025-11-04 14:27:19.433659+00 2025-11-04 14:27:19.433667+00 f t ADELANTO 0.00 5 11369 \N +462017 2025-11-06 18:47:47.846162+00 2025-11-06 18:47:47.846173+00 f t SUBTOTAL 70000.00 1 11584 \N +462018 2025-11-06 18:47:47.848247+00 2025-11-06 18:47:47.848256+00 f t COSTO_SERVICIO 0.00 2 11584 \N +462019 2025-11-06 18:47:47.849582+00 2025-11-06 18:47:47.849588+00 f t DESCUENTO 0.00 3 11584 \N +462020 2025-11-06 18:47:47.850749+00 2025-11-06 18:47:47.850757+00 f t TOTAL 70000.00 4 11584 \N +462021 2025-11-06 18:47:47.851964+00 2025-11-06 18:47:47.851971+00 f t ADELANTO 19000.00 5 11584 \N +462284 2025-11-06 20:44:55.714763+00 2025-11-06 20:44:55.714768+00 f t DESCUENTO 0.00 3 11593 \N +462285 2025-11-06 20:44:55.715803+00 2025-11-06 20:44:55.715807+00 f t TOTAL 0.00 4 11593 \N +462286 2025-11-06 20:44:55.716527+00 2025-11-06 20:44:55.716532+00 f t ADELANTO 0.00 5 11593 \N +452712 2025-11-04 14:36:36.047587+00 2025-11-04 14:36:36.047594+00 f t SUBTOTAL 30000.00 1 11370 \N +452713 2025-11-04 14:36:36.04943+00 2025-11-04 14:36:36.049447+00 f t COSTO_SERVICIO 0.00 2 11370 \N +452714 2025-11-04 14:36:36.05084+00 2025-11-04 14:36:36.050849+00 f t DESCUENTO 0.00 3 11370 \N +452715 2025-11-04 14:36:36.052169+00 2025-11-04 14:36:36.052177+00 f t TOTAL 30000.00 4 11370 \N +452716 2025-11-04 14:36:36.053292+00 2025-11-04 14:36:36.053299+00 f t ADELANTO 30000.00 5 11370 \N +456227 2025-11-05 12:48:06.960955+00 2025-11-05 12:48:06.960966+00 f t SUBTOTAL 0.00 1 11455 \N +456228 2025-11-05 12:48:06.962556+00 2025-11-05 12:48:06.962563+00 f t COSTO_SERVICIO 0.00 2 11455 \N +456229 2025-11-05 12:48:06.963803+00 2025-11-05 12:48:06.963809+00 f t DESCUENTO 0.00 3 11455 \N +456230 2025-11-05 12:48:06.964977+00 2025-11-05 12:48:06.964982+00 f t TOTAL 0.00 4 11455 \N +456231 2025-11-05 12:48:06.966685+00 2025-11-05 12:48:06.96669+00 f t ADELANTO 0.00 5 11455 \N +512270 2025-11-18 22:31:07.134282+00 2025-11-18 22:31:07.134292+00 f t TOTAL 0.00 4 12751 \N +512271 2025-11-18 22:31:07.136097+00 2025-11-18 22:31:07.136108+00 f t ADELANTO 0.00 5 12751 \N +452737 2025-11-04 14:37:28.034485+00 2025-11-04 14:37:28.034494+00 f t SUBTOTAL 109000.00 1 11371 \N +452738 2025-11-04 14:37:28.036272+00 2025-11-04 14:37:28.036279+00 f t COSTO_SERVICIO 0.00 2 11371 \N +452739 2025-11-04 14:37:28.037713+00 2025-11-04 14:37:28.037718+00 f t DESCUENTO 10100.00 3 11371 \N +452740 2025-11-04 14:37:28.038945+00 2025-11-04 14:37:28.038951+00 f t TOTAL 98900.00 4 11371 \N +452741 2025-11-04 14:37:28.040004+00 2025-11-04 14:37:28.040009+00 f t ADELANTO 24500.00 5 11371 \N +456757 2025-11-05 15:13:14.927124+00 2025-11-05 15:13:14.927169+00 f t SUBTOTAL 0.00 1 11469 \N +456758 2025-11-05 15:13:14.928778+00 2025-11-05 15:13:14.928787+00 f t COSTO_SERVICIO 0.00 2 11469 \N +456759 2025-11-05 15:13:14.929969+00 2025-11-05 15:13:14.929975+00 f t DESCUENTO 0.00 3 11469 \N +456760 2025-11-05 15:13:14.931043+00 2025-11-05 15:13:14.931048+00 f t TOTAL 0.00 4 11469 \N +456761 2025-11-05 15:13:14.932018+00 2025-11-05 15:13:14.932024+00 f t ADELANTO 0.00 5 11469 \N +467497 2025-11-08 01:31:11.110387+00 2025-11-08 01:31:11.110394+00 f t SUBTOTAL 125200.00 1 11716 \N +467498 2025-11-08 01:31:11.111525+00 2025-11-08 01:31:11.111531+00 f t COSTO_SERVICIO 0.00 2 11716 \N +467499 2025-11-08 01:31:11.112139+00 2025-11-08 01:31:11.112143+00 f t DESCUENTO 0.00 3 11716 \N +467500 2025-11-08 01:31:11.112708+00 2025-11-08 01:31:11.112713+00 f t TOTAL 125200.00 4 11716 \N +467501 2025-11-08 01:31:11.1132+00 2025-11-08 01:31:11.113205+00 f t ADELANTO 68700.00 5 11716 \N +478927 2025-11-10 21:43:02.443945+00 2025-11-10 21:43:02.443959+00 f t SUBTOTAL 0.00 1 11971 \N +478928 2025-11-10 21:43:02.448346+00 2025-11-10 21:43:02.448355+00 f t COSTO_SERVICIO 0.00 2 11971 \N +478929 2025-11-10 21:43:02.449905+00 2025-11-10 21:43:02.449914+00 f t DESCUENTO 0.00 3 11971 \N +478930 2025-11-10 21:43:02.451815+00 2025-11-10 21:43:02.451823+00 f t TOTAL 0.00 4 11971 \N +478931 2025-11-10 21:43:02.453363+00 2025-11-10 21:43:02.453371+00 f t ADELANTO 0.00 5 11971 \N +468327 2025-11-08 10:07:33.067356+00 2025-11-08 10:07:33.067365+00 f t SUBTOTAL 0.00 1 11729 \N +468328 2025-11-08 10:07:33.069324+00 2025-11-08 10:07:33.069332+00 f t COSTO_SERVICIO 0.00 2 11729 \N +468329 2025-11-08 10:07:33.070333+00 2025-11-08 10:07:33.070338+00 f t DESCUENTO 0.00 3 11729 \N +468330 2025-11-08 10:07:33.071245+00 2025-11-08 10:07:33.07125+00 f t TOTAL 0.00 4 11729 \N +468331 2025-11-08 10:07:33.07212+00 2025-11-08 10:07:33.072126+00 f t ADELANTO 0.00 5 11729 \N +469267 2025-11-08 14:38:43.353906+00 2025-11-08 14:38:43.353913+00 f t SUBTOTAL 46000.00 1 11747 \N +469268 2025-11-08 14:38:43.35567+00 2025-11-08 14:38:43.355677+00 f t COSTO_SERVICIO 0.00 2 11747 \N +469269 2025-11-08 14:38:43.356703+00 2025-11-08 14:38:43.356709+00 f t DESCUENTO 0.00 3 11747 \N +469270 2025-11-08 14:38:43.357607+00 2025-11-08 14:38:43.357613+00 f t TOTAL 46000.00 4 11747 \N +469271 2025-11-08 14:38:43.358598+00 2025-11-08 14:38:43.358603+00 f t ADELANTO 11000.00 5 11747 \N +459252 2025-11-06 06:22:29.949562+00 2025-11-06 06:22:29.949571+00 f t SUBTOTAL 0.00 1 11524 \N +459253 2025-11-06 06:22:29.951516+00 2025-11-06 06:22:29.951523+00 f t COSTO_SERVICIO 0.00 2 11524 \N +459254 2025-11-06 06:22:29.952915+00 2025-11-06 06:22:29.952922+00 f t DESCUENTO 0.00 3 11524 \N +459255 2025-11-06 06:22:29.954169+00 2025-11-06 06:22:29.954174+00 f t TOTAL 0.00 4 11524 \N +459256 2025-11-06 06:22:29.955256+00 2025-11-06 06:22:29.955262+00 f t ADELANTO 0.00 5 11524 \N +452857 2025-11-04 14:49:41.212064+00 2025-11-04 14:49:41.212076+00 f t SUBTOTAL 88000.00 1 11366 \N +452858 2025-11-04 14:49:41.213894+00 2025-11-04 14:49:41.213904+00 f t COSTO_SERVICIO 0.00 2 11366 \N +452859 2025-11-04 14:49:41.215153+00 2025-11-04 14:49:41.215161+00 f t DESCUENTO 0.00 3 11366 \N +452860 2025-11-04 14:49:41.216417+00 2025-11-04 14:49:41.216425+00 f t TOTAL 88000.00 4 11366 \N +452861 2025-11-04 14:49:41.217558+00 2025-11-04 14:49:41.217565+00 f t ADELANTO 13000.00 5 11366 \N +452907 2025-11-04 14:51:16.2067+00 2025-11-04 14:51:16.206708+00 f t SUBTOTAL 121000.00 1 11373 \N +452908 2025-11-04 14:51:16.208376+00 2025-11-04 14:51:16.208383+00 f t COSTO_SERVICIO 0.00 2 11373 \N +452909 2025-11-04 14:51:16.20978+00 2025-11-04 14:51:16.209786+00 f t DESCUENTO 0.00 3 11373 \N +452910 2025-11-04 14:51:16.210914+00 2025-11-04 14:51:16.210919+00 f t TOTAL 121000.00 4 11373 \N +452911 2025-11-04 14:51:16.212214+00 2025-11-04 14:51:16.212222+00 f t ADELANTO 26000.00 5 11373 \N +452937 2025-11-04 14:58:58.474707+00 2025-11-04 14:58:58.474715+00 f t SUBTOTAL 45000.00 1 11375 \N +452938 2025-11-04 14:58:58.476142+00 2025-11-04 14:58:58.476149+00 f t COSTO_SERVICIO 0.00 2 11375 \N +452939 2025-11-04 14:58:58.477196+00 2025-11-04 14:58:58.477201+00 f t DESCUENTO 0.00 3 11375 \N +452940 2025-11-04 14:58:58.478127+00 2025-11-04 14:58:58.478132+00 f t TOTAL 45000.00 4 11375 \N +452941 2025-11-04 14:58:58.478987+00 2025-11-04 14:58:58.478992+00 f t ADELANTO 30000.00 5 11375 \N +452942 2025-11-04 14:59:53.142721+00 2025-11-04 14:59:53.142728+00 f t SUBTOTAL 55000.00 1 11374 \N +452943 2025-11-04 14:59:53.144262+00 2025-11-04 14:59:53.144268+00 f t COSTO_SERVICIO 0.00 2 11374 \N +452944 2025-11-04 14:59:53.145323+00 2025-11-04 14:59:53.145328+00 f t DESCUENTO 0.00 3 11374 \N +452945 2025-11-04 14:59:53.146379+00 2025-11-04 14:59:53.146384+00 f t TOTAL 55000.00 4 11374 \N +452946 2025-11-04 14:59:53.147403+00 2025-11-04 14:59:53.147408+00 f t ADELANTO 11000.00 5 11374 \N +461522 2025-11-06 16:45:02.579081+00 2025-11-06 16:45:02.579095+00 f t SUBTOTAL 13200.00 1 11569 \N +461523 2025-11-06 16:45:02.608881+00 2025-11-06 16:45:02.608896+00 f t COSTO_SERVICIO 0.00 2 11569 \N +461524 2025-11-06 16:45:02.621052+00 2025-11-06 16:45:02.621065+00 f t DESCUENTO 0.00 3 11569 \N +461525 2025-11-06 16:45:02.626955+00 2025-11-06 16:45:02.626968+00 f t TOTAL 13200.00 4 11569 \N +461526 2025-11-06 16:45:02.638068+00 2025-11-06 16:45:02.638083+00 f t ADELANTO 13200.00 5 11569 \N +452967 2025-11-04 15:02:11.865033+00 2025-11-04 15:02:11.865045+00 f t SUBTOTAL 62800.00 1 11372 \N +452968 2025-11-04 15:02:11.866894+00 2025-11-04 15:02:11.866907+00 f t COSTO_SERVICIO 0.00 2 11372 \N +452969 2025-11-04 15:02:11.868465+00 2025-11-04 15:02:11.868474+00 f t DESCUENTO 0.00 3 11372 \N +452970 2025-11-04 15:02:11.869812+00 2025-11-04 15:02:11.86982+00 f t TOTAL 62800.00 4 11372 \N +452971 2025-11-04 15:02:11.871167+00 2025-11-04 15:02:11.871176+00 f t ADELANTO 15800.00 5 11372 \N +548252 2025-11-25 20:59:16.92903+00 2025-11-25 20:59:16.929036+00 f t SUBTOTAL 76700.00 1 13598 \N +548253 2025-11-25 20:59:16.930606+00 2025-11-25 20:59:16.930611+00 f t COSTO_SERVICIO 0.00 2 13598 \N +548254 2025-11-25 20:59:16.931617+00 2025-11-25 20:59:16.931622+00 f t DESCUENTO 6900.00 3 13598 \N +548255 2025-11-25 20:59:16.933438+00 2025-11-25 20:59:16.933443+00 f t TOTAL 69800.00 4 13598 \N +456507 2025-11-05 14:13:40.373483+00 2025-11-05 14:13:40.373493+00 f t SUBTOTAL 46000.00 1 11452 \N +456508 2025-11-05 14:13:40.375892+00 2025-11-05 14:13:40.375901+00 f t COSTO_SERVICIO 0.00 2 11452 \N +456509 2025-11-05 14:13:40.377373+00 2025-11-05 14:13:40.37738+00 f t DESCUENTO 0.00 3 11452 \N +456510 2025-11-05 14:13:40.378546+00 2025-11-05 14:13:40.378552+00 f t TOTAL 46000.00 4 11452 \N +456511 2025-11-05 14:13:40.379814+00 2025-11-05 14:13:40.379823+00 f t ADELANTO 11000.00 5 11452 \N +453022 2025-11-04 15:03:18.574757+00 2025-11-04 15:03:18.574765+00 f t SUBTOTAL 62800.00 1 11376 \N +453023 2025-11-04 15:03:18.576744+00 2025-11-04 15:03:18.576752+00 f t COSTO_SERVICIO 0.00 2 11376 \N +453024 2025-11-04 15:03:18.577917+00 2025-11-04 15:03:18.577923+00 f t DESCUENTO 0.00 3 11376 \N +453025 2025-11-04 15:03:18.579098+00 2025-11-04 15:03:18.579104+00 f t TOTAL 62800.00 4 11376 \N +453026 2025-11-04 15:03:18.580418+00 2025-11-04 15:03:18.580424+00 f t ADELANTO 15800.00 5 11376 \N +478057 2025-11-10 20:15:15.233702+00 2025-11-10 20:15:15.233709+00 f t SUBTOTAL 46000.00 1 11951 \N +478058 2025-11-10 20:15:15.23535+00 2025-11-10 20:15:15.235356+00 f t COSTO_SERVICIO 0.00 2 11951 \N +478059 2025-11-10 20:15:15.236409+00 2025-11-10 20:15:15.236416+00 f t DESCUENTO 0.00 3 11951 \N +478060 2025-11-10 20:15:15.237318+00 2025-11-10 20:15:15.237324+00 f t TOTAL 46000.00 4 11951 \N +478061 2025-11-10 20:15:15.238165+00 2025-11-10 20:15:15.238171+00 f t ADELANTO 11000.00 5 11951 \N +456987 2025-11-05 16:37:16.435238+00 2025-11-05 16:37:16.43525+00 f t SUBTOTAL 13200.00 1 11474 \N +456988 2025-11-05 16:37:16.437322+00 2025-11-05 16:37:16.437329+00 f t COSTO_SERVICIO 0.00 2 11474 \N +456989 2025-11-05 16:37:16.438867+00 2025-11-05 16:37:16.438876+00 f t DESCUENTO 0.00 3 11474 \N +456990 2025-11-05 16:37:16.440464+00 2025-11-05 16:37:16.440473+00 f t TOTAL 13200.00 4 11474 \N +456991 2025-11-05 16:37:16.442036+00 2025-11-05 16:37:16.442055+00 f t ADELANTO 13200.00 5 11474 \N +457407 2025-11-05 20:01:17.263948+00 2025-11-05 20:01:17.263955+00 f t SUBTOTAL 78000.00 1 11488 \N +457408 2025-11-05 20:01:17.265548+00 2025-11-05 20:01:17.265554+00 f t COSTO_SERVICIO 0.00 2 11488 \N +457409 2025-11-05 20:01:17.266786+00 2025-11-05 20:01:17.266792+00 f t DESCUENTO 0.00 3 11488 \N +457410 2025-11-05 20:01:17.267934+00 2025-11-05 20:01:17.267939+00 f t TOTAL 78000.00 4 11488 \N +457411 2025-11-05 20:01:17.268961+00 2025-11-05 20:01:17.268969+00 f t ADELANTO 13000.00 5 11488 \N +453062 2025-11-04 15:05:25.411896+00 2025-11-04 15:05:25.411903+00 f t SUBTOTAL 62800.00 1 11377 \N +453063 2025-11-04 15:05:25.413459+00 2025-11-04 15:05:25.413468+00 f t COSTO_SERVICIO 0.00 2 11377 \N +453064 2025-11-04 15:05:25.414597+00 2025-11-04 15:05:25.414603+00 f t DESCUENTO 0.00 3 11377 \N +453065 2025-11-04 15:05:25.415817+00 2025-11-04 15:05:25.415822+00 f t TOTAL 62800.00 4 11377 \N +453066 2025-11-04 15:05:25.416718+00 2025-11-04 15:05:25.416723+00 f t ADELANTO 15800.00 5 11377 \N +458712 2025-11-06 01:25:54.02999+00 2025-11-06 01:25:54.029999+00 f t SUBTOTAL 46000.00 1 11514 \N +458713 2025-11-06 01:25:54.032213+00 2025-11-06 01:25:54.03222+00 f t COSTO_SERVICIO 0.00 2 11514 \N +458714 2025-11-06 01:25:54.033557+00 2025-11-06 01:25:54.033564+00 f t DESCUENTO 0.00 3 11514 \N +458715 2025-11-06 01:25:54.035203+00 2025-11-06 01:25:54.035211+00 f t TOTAL 46000.00 4 11514 \N +458716 2025-11-06 01:25:54.036889+00 2025-11-06 01:25:54.036897+00 f t ADELANTO 11000.00 5 11514 \N +469272 2025-11-08 14:38:53.859564+00 2025-11-08 14:38:53.859572+00 f t SUBTOTAL 46000.00 1 11748 \N +469273 2025-11-08 14:38:53.861692+00 2025-11-08 14:38:53.861703+00 f t COSTO_SERVICIO 0.00 2 11748 \N +469274 2025-11-08 14:38:53.863055+00 2025-11-08 14:38:53.863061+00 f t DESCUENTO 0.00 3 11748 \N +469275 2025-11-08 14:38:53.864431+00 2025-11-08 14:38:53.864449+00 f t TOTAL 46000.00 4 11748 \N +469276 2025-11-08 14:38:53.866015+00 2025-11-08 14:38:53.866023+00 f t ADELANTO 11000.00 5 11748 \N +480627 2025-11-11 13:18:18.680321+00 2025-11-11 13:18:18.680328+00 f t SUBTOTAL 70000.00 1 12013 \N +480628 2025-11-11 13:18:18.682078+00 2025-11-11 13:18:18.682086+00 f t COSTO_SERVICIO 0.00 2 12013 \N +480629 2025-11-11 13:18:18.683204+00 2025-11-11 13:18:18.683209+00 f t DESCUENTO 0.00 3 12013 \N +480630 2025-11-11 13:18:18.684255+00 2025-11-11 13:18:18.684264+00 f t TOTAL 70000.00 4 12013 \N +480631 2025-11-11 13:18:18.685434+00 2025-11-11 13:18:18.685445+00 f t ADELANTO 19000.00 5 12013 \N +460437 2025-11-06 12:42:38.71589+00 2025-11-06 12:42:38.715902+00 f t SUBTOTAL 55000.00 1 11544 \N +460438 2025-11-06 12:42:38.717864+00 2025-11-06 12:42:38.717871+00 f t COSTO_SERVICIO 0.00 2 11544 \N +460439 2025-11-06 12:42:38.719287+00 2025-11-06 12:42:38.719296+00 f t DESCUENTO 0.00 3 11544 \N +460440 2025-11-06 12:42:38.720526+00 2025-11-06 12:42:38.720532+00 f t TOTAL 55000.00 4 11544 \N +453167 2025-11-04 15:13:19.16393+00 2025-11-04 15:13:19.163939+00 f t SUBTOTAL 46000.00 1 11378 \N +453168 2025-11-04 15:13:19.16578+00 2025-11-04 15:13:19.165791+00 f t COSTO_SERVICIO 0.00 2 11378 \N +453169 2025-11-04 15:13:19.16736+00 2025-11-04 15:13:19.167366+00 f t DESCUENTO 0.00 3 11378 \N +453170 2025-11-04 15:13:19.168608+00 2025-11-04 15:13:19.168614+00 f t TOTAL 46000.00 4 11378 \N +453171 2025-11-04 15:13:19.169652+00 2025-11-04 15:13:19.169657+00 f t ADELANTO 11000.00 5 11378 \N +460441 2025-11-06 12:42:38.721663+00 2025-11-06 12:42:38.721669+00 f t ADELANTO 11000.00 5 11544 \N +460972 2025-11-06 14:41:41.680533+00 2025-11-06 14:41:41.68054+00 f t SUBTOTAL 30000.00 1 11556 \N +460973 2025-11-06 14:41:41.682307+00 2025-11-06 14:41:41.682313+00 f t COSTO_SERVICIO 0.00 2 11556 \N +460974 2025-11-06 14:41:41.6834+00 2025-11-06 14:41:41.683405+00 f t DESCUENTO 0.00 3 11556 \N +460975 2025-11-06 14:41:41.684498+00 2025-11-06 14:41:41.684505+00 f t TOTAL 30000.00 4 11556 \N +460976 2025-11-06 14:41:41.685626+00 2025-11-06 14:41:41.685632+00 f t ADELANTO 30000.00 5 11556 \N +453207 2025-11-04 15:19:49.42319+00 2025-11-04 15:19:49.4232+00 f t SUBTOTAL 70000.00 1 11379 \N +453208 2025-11-04 15:19:49.424812+00 2025-11-04 15:19:49.424818+00 f t COSTO_SERVICIO 0.00 2 11379 \N +453209 2025-11-04 15:19:49.426056+00 2025-11-04 15:19:49.426062+00 f t DESCUENTO 0.00 3 11379 \N +453210 2025-11-04 15:19:49.427108+00 2025-11-04 15:19:49.427113+00 f t TOTAL 70000.00 4 11379 \N +453211 2025-11-04 15:19:49.428147+00 2025-11-04 15:19:49.428152+00 f t ADELANTO 19000.00 5 11379 \N +471982 2025-11-09 03:55:26.135751+00 2025-11-09 03:55:26.13576+00 f t SUBTOTAL 0.00 1 11811 \N +471983 2025-11-09 03:55:26.137134+00 2025-11-09 03:55:26.13714+00 f t COSTO_SERVICIO 0.00 2 11811 \N +471984 2025-11-09 03:55:26.138106+00 2025-11-09 03:55:26.138111+00 f t DESCUENTO 0.00 3 11811 \N +471985 2025-11-09 03:55:26.139259+00 2025-11-09 03:55:26.139265+00 f t TOTAL 0.00 4 11811 \N +471986 2025-11-09 03:55:26.140203+00 2025-11-09 03:55:26.140208+00 f t ADELANTO 0.00 5 11811 \N +462252 2025-11-06 20:33:04.750701+00 2025-11-06 20:33:04.750709+00 f t SUBTOTAL 0.00 1 11592 \N +462253 2025-11-06 20:33:04.752085+00 2025-11-06 20:33:04.752091+00 f t COSTO_SERVICIO 0.00 2 11592 \N +462254 2025-11-06 20:33:04.753174+00 2025-11-06 20:33:04.753182+00 f t DESCUENTO 0.00 3 11592 \N +462255 2025-11-06 20:33:04.754295+00 2025-11-06 20:33:04.754302+00 f t TOTAL 0.00 4 11592 \N +462256 2025-11-06 20:33:04.75527+00 2025-11-06 20:33:04.755278+00 f t ADELANTO 0.00 5 11592 \N +500027 2025-11-15 20:18:36.001103+00 2025-11-15 20:18:36.001114+00 f t SUBTOTAL 70000.00 1 12473 \N +500028 2025-11-15 20:18:36.003394+00 2025-11-15 20:18:36.003405+00 f t COSTO_SERVICIO 0.00 2 12473 \N +500029 2025-11-15 20:18:36.005216+00 2025-11-15 20:18:36.005225+00 f t DESCUENTO 0.00 3 12473 \N +500030 2025-11-15 20:18:36.006702+00 2025-11-15 20:18:36.006711+00 f t TOTAL 70000.00 4 12473 \N +500031 2025-11-15 20:18:36.008157+00 2025-11-15 20:18:36.008166+00 f t ADELANTO 19000.00 5 12473 \N +453307 2025-11-04 15:24:17.750176+00 2025-11-04 15:24:17.750187+00 f t SUBTOTAL 0.00 1 11380 \N +453308 2025-11-04 15:24:17.751964+00 2025-11-04 15:24:17.751971+00 f t COSTO_SERVICIO 0.00 2 11380 \N +453309 2025-11-04 15:24:17.752983+00 2025-11-04 15:24:17.752988+00 f t DESCUENTO 0.00 3 11380 \N +453310 2025-11-04 15:24:17.754051+00 2025-11-04 15:24:17.754056+00 f t TOTAL 0.00 4 11380 \N +453311 2025-11-04 15:24:17.754959+00 2025-11-04 15:24:17.754964+00 f t ADELANTO 0.00 5 11380 \N +457927 2025-11-05 22:16:36.484155+00 2025-11-05 22:16:36.484163+00 f t SUBTOTAL 75000.00 1 11499 \N +457928 2025-11-05 22:16:36.486141+00 2025-11-05 22:16:36.486148+00 f t COSTO_SERVICIO 0.00 2 11499 \N +457929 2025-11-05 22:16:36.487505+00 2025-11-05 22:16:36.487513+00 f t DESCUENTO 0.00 3 11499 \N +457930 2025-11-05 22:16:36.488694+00 2025-11-05 22:16:36.488699+00 f t TOTAL 75000.00 4 11499 \N +457931 2025-11-05 22:16:36.489669+00 2025-11-05 22:16:36.489675+00 f t ADELANTO 15000.00 5 11499 \N +458247 2025-11-05 23:23:59.918423+00 2025-11-05 23:23:59.918431+00 f t SUBTOTAL 46000.00 1 11504 \N +458248 2025-11-05 23:23:59.920081+00 2025-11-05 23:23:59.920086+00 f t COSTO_SERVICIO 0.00 2 11504 \N +458249 2025-11-05 23:23:59.921063+00 2025-11-05 23:23:59.921068+00 f t DESCUENTO 0.00 3 11504 \N +458250 2025-11-05 23:23:59.922255+00 2025-11-05 23:23:59.92226+00 f t TOTAL 46000.00 4 11504 \N +458251 2025-11-05 23:23:59.92337+00 2025-11-05 23:23:59.923375+00 f t ADELANTO 11000.00 5 11504 \N +468817 2025-11-08 13:37:34.566214+00 2025-11-08 13:37:34.566223+00 f t SUBTOTAL 0.00 1 11741 \N +468818 2025-11-08 13:37:34.568584+00 2025-11-08 13:37:34.568594+00 f t COSTO_SERVICIO 0.00 2 11741 \N +468819 2025-11-08 13:37:34.569945+00 2025-11-08 13:37:34.569951+00 f t DESCUENTO 0.00 3 11741 \N +468820 2025-11-08 13:37:34.57097+00 2025-11-08 13:37:34.570975+00 f t TOTAL 0.00 4 11741 \N +468821 2025-11-08 13:37:34.572039+00 2025-11-08 13:37:34.572044+00 f t ADELANTO 0.00 5 11741 \N +458717 2025-11-06 01:26:15.729247+00 2025-11-06 01:26:15.729255+00 f t SUBTOTAL 55000.00 1 11513 \N +458718 2025-11-06 01:26:15.731177+00 2025-11-06 01:26:15.731183+00 f t COSTO_SERVICIO 0.00 2 11513 \N +458719 2025-11-06 01:26:15.732381+00 2025-11-06 01:26:15.732387+00 f t DESCUENTO 0.00 3 11513 \N +458720 2025-11-06 01:26:15.733327+00 2025-11-06 01:26:15.733332+00 f t TOTAL 55000.00 4 11513 \N +458721 2025-11-06 01:26:15.734169+00 2025-11-06 01:26:15.734175+00 f t ADELANTO 11000.00 5 11513 \N +459132 2025-11-06 04:42:46.997986+00 2025-11-06 04:42:46.997993+00 f t SUBTOTAL 55000.00 1 11522 \N +459133 2025-11-06 04:42:47.000019+00 2025-11-06 04:42:47.000026+00 f t COSTO_SERVICIO 0.00 2 11522 \N +459134 2025-11-06 04:42:47.001592+00 2025-11-06 04:42:47.001598+00 f t DESCUENTO 0.00 3 11522 \N +459135 2025-11-06 04:42:47.00391+00 2025-11-06 04:42:47.00392+00 f t TOTAL 55000.00 4 11522 \N +459136 2025-11-06 04:42:47.005284+00 2025-11-06 04:42:47.00529+00 f t ADELANTO 11000.00 5 11522 \N +469827 2025-11-08 15:51:37.32636+00 2025-11-08 15:51:37.326373+00 f t SUBTOTAL 0.00 1 11757 \N +469828 2025-11-08 15:51:37.329079+00 2025-11-08 15:51:37.329088+00 f t COSTO_SERVICIO 0.00 2 11757 \N +469829 2025-11-08 15:51:37.330521+00 2025-11-08 15:51:37.330528+00 f t DESCUENTO 0.00 3 11757 \N +469830 2025-11-08 15:51:37.331908+00 2025-11-08 15:51:37.331918+00 f t TOTAL 0.00 4 11757 \N +469831 2025-11-08 15:51:37.333357+00 2025-11-08 15:51:37.333365+00 f t ADELANTO 0.00 5 11757 \N +470842 2025-11-08 20:23:46.402462+00 2025-11-08 20:23:46.40247+00 f t SUBTOTAL 46000.00 1 11786 \N +470843 2025-11-08 20:23:46.404261+00 2025-11-08 20:23:46.404269+00 f t COSTO_SERVICIO 0.00 2 11786 \N +470844 2025-11-08 20:23:46.40538+00 2025-11-08 20:23:46.405385+00 f t DESCUENTO 0.00 3 11786 \N +470845 2025-11-08 20:23:46.406325+00 2025-11-08 20:23:46.406331+00 f t TOTAL 46000.00 4 11786 \N +470846 2025-11-08 20:23:46.407338+00 2025-11-08 20:23:46.407343+00 f t ADELANTO 11000.00 5 11786 \N +460982 2025-11-06 15:16:28.050787+00 2025-11-06 15:16:28.050802+00 f t SUBTOTAL 0.00 1 11557 \N +460983 2025-11-06 15:16:28.052449+00 2025-11-06 15:16:28.052456+00 f t COSTO_SERVICIO 0.00 2 11557 \N +460984 2025-11-06 15:16:28.053683+00 2025-11-06 15:16:28.053688+00 f t DESCUENTO 0.00 3 11557 \N +460985 2025-11-06 15:16:28.054723+00 2025-11-06 15:16:28.054728+00 f t TOTAL 0.00 4 11557 \N +460986 2025-11-06 15:16:28.056086+00 2025-11-06 15:16:28.056094+00 f t ADELANTO 0.00 5 11557 \N +461092 2025-11-06 15:22:07.637089+00 2025-11-06 15:22:07.637098+00 f t SUBTOTAL 70000.00 1 11559 \N +461093 2025-11-06 15:22:07.639002+00 2025-11-06 15:22:07.639008+00 f t COSTO_SERVICIO 0.00 2 11559 \N +461094 2025-11-06 15:22:07.640473+00 2025-11-06 15:22:07.640478+00 f t DESCUENTO 0.00 3 11559 \N +461095 2025-11-06 15:22:07.641666+00 2025-11-06 15:22:07.641671+00 f t TOTAL 70000.00 4 11559 \N +461096 2025-11-06 15:22:07.642706+00 2025-11-06 15:22:07.642711+00 f t ADELANTO 19000.00 5 11559 \N +461617 2025-11-06 16:47:11.344085+00 2025-11-06 16:47:11.344094+00 f t SUBTOTAL 70000.00 1 11570 \N +461618 2025-11-06 16:47:11.345908+00 2025-11-06 16:47:11.345914+00 f t COSTO_SERVICIO 0.00 2 11570 \N +461619 2025-11-06 16:47:11.347163+00 2025-11-06 16:47:11.347169+00 f t DESCUENTO 0.00 3 11570 \N +461620 2025-11-06 16:47:11.348683+00 2025-11-06 16:47:11.348689+00 f t TOTAL 70000.00 4 11570 \N +461621 2025-11-06 16:47:11.34985+00 2025-11-06 16:47:11.349856+00 f t ADELANTO 19000.00 5 11570 \N +462032 2025-11-06 19:04:39.287968+00 2025-11-06 19:04:39.287975+00 f t SUBTOTAL 13200.00 1 11585 \N +462033 2025-11-06 19:04:39.289663+00 2025-11-06 19:04:39.289669+00 f t COSTO_SERVICIO 0.00 2 11585 \N +462034 2025-11-06 19:04:39.290897+00 2025-11-06 19:04:39.290902+00 f t DESCUENTO 0.00 3 11585 \N +462035 2025-11-06 19:04:39.291825+00 2025-11-06 19:04:39.291829+00 f t TOTAL 13200.00 4 11585 \N +462036 2025-11-06 19:04:39.29261+00 2025-11-06 19:04:39.292615+00 f t ADELANTO 13200.00 5 11585 \N +462257 2025-11-06 20:33:06.301806+00 2025-11-06 20:33:06.301813+00 f t SUBTOTAL 78000.00 1 11591 \N +462258 2025-11-06 20:33:06.303307+00 2025-11-06 20:33:06.303313+00 f t COSTO_SERVICIO 0.00 2 11591 \N +462259 2025-11-06 20:33:06.304471+00 2025-11-06 20:33:06.304476+00 f t DESCUENTO 0.00 3 11591 \N +453557 2025-11-04 15:30:52.640937+00 2025-11-04 15:30:52.640944+00 f t SUBTOTAL 216000.00 1 11381 \N +453558 2025-11-04 15:30:52.642511+00 2025-11-04 15:30:52.642518+00 f t COSTO_SERVICIO 0.00 2 11381 \N +453559 2025-11-04 15:30:52.643609+00 2025-11-04 15:30:52.643614+00 f t DESCUENTO 18400.00 3 11381 \N +453560 2025-11-04 15:30:52.644691+00 2025-11-04 15:30:52.644697+00 f t TOTAL 197600.00 4 11381 \N +453561 2025-11-04 15:30:52.645674+00 2025-11-04 15:30:52.645679+00 f t ADELANTO 54000.00 5 11381 \N +462260 2025-11-06 20:33:06.30558+00 2025-11-06 20:33:06.305585+00 f t TOTAL 78000.00 4 11591 \N +462261 2025-11-06 20:33:06.306433+00 2025-11-06 20:33:06.306438+00 f t ADELANTO 13000.00 5 11591 \N +472447 2025-11-09 13:05:22.835591+00 2025-11-09 13:05:22.8356+00 f t SUBTOTAL 0.00 1 11823 \N +472448 2025-11-09 13:05:22.837185+00 2025-11-09 13:05:22.837191+00 f t COSTO_SERVICIO 0.00 2 11823 \N +472449 2025-11-09 13:05:22.838494+00 2025-11-09 13:05:22.838501+00 f t DESCUENTO 0.00 3 11823 \N +472450 2025-11-09 13:05:22.839703+00 2025-11-09 13:05:22.839708+00 f t TOTAL 0.00 4 11823 \N +472451 2025-11-09 13:05:22.840901+00 2025-11-09 13:05:22.840906+00 f t ADELANTO 0.00 5 11823 \N +456527 2025-11-05 14:36:28.627083+00 2025-11-05 14:36:28.627095+00 f t SUBTOTAL 0.00 1 11463 \N +456528 2025-11-05 14:36:28.628772+00 2025-11-05 14:36:28.628783+00 f t COSTO_SERVICIO 0.00 2 11463 \N +456529 2025-11-05 14:36:28.6301+00 2025-11-05 14:36:28.630108+00 f t DESCUENTO 0.00 3 11463 \N +456530 2025-11-05 14:36:28.631344+00 2025-11-05 14:36:28.631353+00 f t TOTAL 0.00 4 11463 \N +456531 2025-11-05 14:36:28.63276+00 2025-11-05 14:36:28.632768+00 f t ADELANTO 0.00 5 11463 \N +457002 2025-11-05 16:39:21.283319+00 2025-11-05 16:39:21.28333+00 f t SUBTOTAL 78000.00 1 11475 \N +457003 2025-11-05 16:39:21.28541+00 2025-11-05 16:39:21.285422+00 f t COSTO_SERVICIO 0.00 2 11475 \N +457004 2025-11-05 16:39:21.286806+00 2025-11-05 16:39:21.286815+00 f t DESCUENTO 0.00 3 11475 \N +457005 2025-11-05 16:39:21.288484+00 2025-11-05 16:39:21.288493+00 f t TOTAL 78000.00 4 11475 \N +457006 2025-11-05 16:39:21.289924+00 2025-11-05 16:39:21.289933+00 f t ADELANTO 13000.00 5 11475 \N +457422 2025-11-05 20:08:29.149619+00 2025-11-05 20:08:29.149626+00 f t SUBTOTAL 127500.00 1 11489 \N +457423 2025-11-05 20:08:29.151703+00 2025-11-05 20:08:29.151709+00 f t COSTO_SERVICIO 0.00 2 11489 \N +457424 2025-11-05 20:08:29.152877+00 2025-11-05 20:08:29.152882+00 f t DESCUENTO 0.00 3 11489 \N +457425 2025-11-05 20:08:29.153769+00 2025-11-05 20:08:29.153774+00 f t TOTAL 127500.00 4 11489 \N +457426 2025-11-05 20:08:29.154688+00 2025-11-05 20:08:29.154693+00 f t ADELANTO 27500.00 5 11489 \N +468012 2025-11-08 01:56:12.476867+00 2025-11-08 01:56:12.476874+00 f t SUBTOTAL 125200.00 1 11721 \N +468013 2025-11-08 01:56:12.478074+00 2025-11-08 01:56:12.478083+00 f t COSTO_SERVICIO 0.00 2 11721 \N +468014 2025-11-08 01:56:12.478988+00 2025-11-08 01:56:12.478996+00 f t DESCUENTO 0.00 3 11721 \N +468015 2025-11-08 01:56:12.479815+00 2025-11-08 01:56:12.479823+00 f t TOTAL 125200.00 4 11721 \N +468016 2025-11-08 01:56:12.480815+00 2025-11-08 01:56:12.480823+00 f t ADELANTO 68700.00 5 11721 \N +453662 2025-11-04 15:32:45.334207+00 2025-11-04 15:32:45.334215+00 f t SUBTOTAL 32500.00 1 11382 \N +453663 2025-11-04 15:32:45.33586+00 2025-11-04 15:32:45.335867+00 f t COSTO_SERVICIO 0.00 2 11382 \N +453664 2025-11-04 15:32:45.337169+00 2025-11-04 15:32:45.337176+00 f t DESCUENTO 0.00 3 11382 \N +453665 2025-11-04 15:32:45.338359+00 2025-11-04 15:32:45.338368+00 f t TOTAL 32500.00 4 11382 \N +453666 2025-11-04 15:32:45.339545+00 2025-11-04 15:32:45.339552+00 f t ADELANTO 32500.00 5 11382 \N +453677 2025-11-04 15:34:16.027169+00 2025-11-04 15:34:16.027177+00 f t SUBTOTAL 55000.00 1 11383 \N +453678 2025-11-04 15:34:16.028666+00 2025-11-04 15:34:16.028673+00 f t COSTO_SERVICIO 0.00 2 11383 \N +453679 2025-11-04 15:34:16.029903+00 2025-11-04 15:34:16.02991+00 f t DESCUENTO 0.00 3 11383 \N +453680 2025-11-04 15:34:16.030998+00 2025-11-04 15:34:16.031003+00 f t TOTAL 55000.00 4 11383 \N +453681 2025-11-04 15:34:16.031923+00 2025-11-04 15:34:16.031928+00 f t ADELANTO 11000.00 5 11383 \N +459007 2025-11-06 02:58:33.095098+00 2025-11-06 02:58:33.095107+00 f t SUBTOTAL 46000.00 1 11520 \N +459008 2025-11-06 02:58:33.097001+00 2025-11-06 02:58:33.097008+00 f t COSTO_SERVICIO 0.00 2 11520 \N +459009 2025-11-06 02:58:33.098351+00 2025-11-06 02:58:33.098358+00 f t DESCUENTO 0.00 3 11520 \N +459010 2025-11-06 02:58:33.100041+00 2025-11-06 02:58:33.100049+00 f t TOTAL 46000.00 4 11520 \N +459011 2025-11-06 02:58:33.101256+00 2025-11-06 02:58:33.101261+00 f t ADELANTO 11000.00 5 11520 \N +459142 2025-11-06 06:16:47.03134+00 2025-11-06 06:16:47.031349+00 f t SUBTOTAL 0.00 1 11523 \N +459143 2025-11-06 06:16:47.032549+00 2025-11-06 06:16:47.032555+00 f t COSTO_SERVICIO 0.00 2 11523 \N +459144 2025-11-06 06:16:47.033565+00 2025-11-06 06:16:47.033571+00 f t DESCUENTO 0.00 3 11523 \N +459145 2025-11-06 06:16:47.034466+00 2025-11-06 06:16:47.034471+00 f t TOTAL 0.00 4 11523 \N +459146 2025-11-06 06:16:47.035395+00 2025-11-06 06:16:47.035403+00 f t ADELANTO 0.00 5 11523 \N +453712 2025-11-04 15:37:32.606273+00 2025-11-04 15:37:32.606281+00 f t SUBTOTAL 46000.00 1 11384 \N +453713 2025-11-04 15:37:32.607914+00 2025-11-04 15:37:32.607923+00 f t COSTO_SERVICIO 0.00 2 11384 \N +453714 2025-11-04 15:37:32.60923+00 2025-11-04 15:37:32.609236+00 f t DESCUENTO 0.00 3 11384 \N +453715 2025-11-04 15:37:32.610229+00 2025-11-04 15:37:32.610234+00 f t TOTAL 46000.00 4 11384 \N +453716 2025-11-04 15:37:32.611266+00 2025-11-04 15:37:32.611271+00 f t ADELANTO 11000.00 5 11384 \N +453717 2025-11-04 15:39:36.384086+00 2025-11-04 15:39:36.384095+00 f t SUBTOTAL 61400.00 1 11363 \N +453718 2025-11-04 15:39:36.386286+00 2025-11-04 15:39:36.386293+00 f t COSTO_SERVICIO 0.00 2 11363 \N +453719 2025-11-04 15:39:36.387421+00 2025-11-04 15:39:36.387427+00 f t DESCUENTO 0.00 3 11363 \N +453720 2025-11-04 15:39:36.388513+00 2025-11-04 15:39:36.388519+00 f t TOTAL 61400.00 4 11363 \N +453721 2025-11-04 15:39:36.389582+00 2025-11-04 15:39:36.389587+00 f t ADELANTO 15400.00 5 11363 \N +453762 2025-11-04 15:58:08.716858+00 2025-11-04 15:58:08.716865+00 f t SUBTOTAL 78000.00 1 11385 \N +453763 2025-11-04 15:58:08.718534+00 2025-11-04 15:58:08.718541+00 f t COSTO_SERVICIO 0.00 2 11385 \N +453764 2025-11-04 15:58:08.719684+00 2025-11-04 15:58:08.719689+00 f t DESCUENTO 0.00 3 11385 \N +453765 2025-11-04 15:58:08.720796+00 2025-11-04 15:58:08.720802+00 f t TOTAL 78000.00 4 11385 \N +453766 2025-11-04 15:58:08.721828+00 2025-11-04 15:58:08.721833+00 f t ADELANTO 21500.00 5 11385 \N +453777 2025-11-04 16:19:23.234427+00 2025-11-04 16:19:23.234435+00 f t SUBTOTAL 46000.00 1 11386 \N +453778 2025-11-04 16:19:23.236159+00 2025-11-04 16:19:23.236167+00 f t COSTO_SERVICIO 0.00 2 11386 \N +453779 2025-11-04 16:19:23.237417+00 2025-11-04 16:19:23.237422+00 f t DESCUENTO 0.00 3 11386 \N +453780 2025-11-04 16:19:23.238568+00 2025-11-04 16:19:23.238573+00 f t TOTAL 46000.00 4 11386 \N +453781 2025-11-04 16:19:23.240044+00 2025-11-04 16:19:23.24005+00 f t ADELANTO 11000.00 5 11386 \N +453802 2025-11-04 16:36:02.664107+00 2025-11-04 16:36:02.664119+00 f t SUBTOTAL 66900.00 1 11387 \N +453803 2025-11-04 16:36:02.666409+00 2025-11-04 16:36:02.666421+00 f t COSTO_SERVICIO 0.00 2 11387 \N +453804 2025-11-04 16:36:02.668454+00 2025-11-04 16:36:02.668465+00 f t DESCUENTO 0.00 3 11387 \N +453805 2025-11-04 16:36:02.670336+00 2025-11-04 16:36:02.670348+00 f t TOTAL 66900.00 4 11387 \N +453806 2025-11-04 16:36:02.672178+00 2025-11-04 16:36:02.672189+00 f t ADELANTO 26400.00 5 11387 \N +453812 2025-11-04 16:40:43.617054+00 2025-11-04 16:40:43.617066+00 f t SUBTOTAL 0.00 1 11388 \N +453813 2025-11-04 16:40:43.618653+00 2025-11-04 16:40:43.618663+00 f t COSTO_SERVICIO 0.00 2 11388 \N +453814 2025-11-04 16:40:43.620065+00 2025-11-04 16:40:43.620074+00 f t DESCUENTO 0.00 3 11388 \N +453815 2025-11-04 16:40:43.621304+00 2025-11-04 16:40:43.621312+00 f t TOTAL 0.00 4 11388 \N +453816 2025-11-04 16:40:43.622423+00 2025-11-04 16:40:43.622431+00 f t ADELANTO 0.00 5 11388 \N +453832 2025-11-04 16:42:54.160515+00 2025-11-04 16:42:54.160528+00 f t SUBTOTAL 0.00 1 11389 \N +453833 2025-11-04 16:42:54.163328+00 2025-11-04 16:42:54.16334+00 f t COSTO_SERVICIO 0.00 2 11389 \N +453834 2025-11-04 16:42:54.166269+00 2025-11-04 16:42:54.166307+00 f t DESCUENTO 0.00 3 11389 \N +453835 2025-11-04 16:42:54.168146+00 2025-11-04 16:42:54.168156+00 f t TOTAL 0.00 4 11389 \N +453836 2025-11-04 16:42:54.169735+00 2025-11-04 16:42:54.169744+00 f t ADELANTO 0.00 5 11389 \N +453847 2025-11-04 17:05:29.048089+00 2025-11-04 17:05:29.048101+00 f t SUBTOTAL 13200.00 1 11390 \N +453848 2025-11-04 17:05:29.050171+00 2025-11-04 17:05:29.050179+00 f t COSTO_SERVICIO 0.00 2 11390 \N +453849 2025-11-04 17:05:29.051554+00 2025-11-04 17:05:29.051563+00 f t DESCUENTO 0.00 3 11390 \N +453850 2025-11-04 17:05:29.052713+00 2025-11-04 17:05:29.052719+00 f t TOTAL 13200.00 4 11390 \N +453851 2025-11-04 17:05:29.053737+00 2025-11-04 17:05:29.053743+00 f t ADELANTO 13200.00 5 11390 \N +466977 2025-11-07 23:18:27.329826+00 2025-11-07 23:18:27.329835+00 f t SUBTOTAL 52500.00 1 11710 \N +466978 2025-11-07 23:18:27.334257+00 2025-11-07 23:18:27.334267+00 f t COSTO_SERVICIO 0.00 2 11710 \N +466979 2025-11-07 23:18:27.335908+00 2025-11-07 23:18:27.335917+00 f t DESCUENTO 0.00 3 11710 \N +466980 2025-11-07 23:18:27.33733+00 2025-11-07 23:18:27.337338+00 f t TOTAL 52500.00 4 11710 \N +466981 2025-11-07 23:18:27.338561+00 2025-11-07 23:18:27.338566+00 f t ADELANTO 52500.00 5 11710 \N +453887 2025-11-04 17:09:13.391582+00 2025-11-04 17:09:13.39159+00 f t SUBTOTAL 75000.00 1 11391 \N +453888 2025-11-04 17:09:13.393214+00 2025-11-04 17:09:13.39322+00 f t COSTO_SERVICIO 0.00 2 11391 \N +453889 2025-11-04 17:09:13.394357+00 2025-11-04 17:09:13.394363+00 f t DESCUENTO 0.00 3 11391 \N +453890 2025-11-04 17:09:13.395459+00 2025-11-04 17:09:13.395465+00 f t TOTAL 75000.00 4 11391 \N +453891 2025-11-04 17:09:13.396519+00 2025-11-04 17:09:13.396527+00 f t ADELANTO 15000.00 5 11391 \N +457012 2025-11-05 16:39:31.586281+00 2025-11-05 16:39:31.586291+00 f t SUBTOTAL 0.00 1 11476 \N +453907 2025-11-04 17:11:46.538002+00 2025-11-04 17:11:46.538009+00 f t SUBTOTAL 153900.00 1 11392 \N +453908 2025-11-04 17:11:46.539562+00 2025-11-04 17:11:46.539569+00 f t COSTO_SERVICIO 0.00 2 11392 \N +453909 2025-11-04 17:11:46.540571+00 2025-11-04 17:11:46.540576+00 f t DESCUENTO 0.00 3 11392 \N +453910 2025-11-04 17:11:46.541597+00 2025-11-04 17:11:46.541604+00 f t TOTAL 153900.00 4 11392 \N +453911 2025-11-04 17:11:46.542722+00 2025-11-04 17:11:46.542728+00 f t ADELANTO 113400.00 5 11392 \N +457013 2025-11-05 16:39:31.588078+00 2025-11-05 16:39:31.588086+00 f t COSTO_SERVICIO 0.00 2 11476 \N +457014 2025-11-05 16:39:31.589525+00 2025-11-05 16:39:31.589533+00 f t DESCUENTO 0.00 3 11476 \N +457015 2025-11-05 16:39:31.592299+00 2025-11-05 16:39:31.592308+00 f t TOTAL 0.00 4 11476 \N +457016 2025-11-05 16:39:31.59422+00 2025-11-05 16:39:31.594228+00 f t ADELANTO 0.00 5 11476 \N +453932 2025-11-04 17:20:01.865958+00 2025-11-04 17:20:01.865974+00 f t SUBTOTAL 55000.00 1 11393 \N +453933 2025-11-04 17:20:01.870984+00 2025-11-04 17:20:01.870999+00 f t COSTO_SERVICIO 0.00 2 11393 \N +453934 2025-11-04 17:20:01.875658+00 2025-11-04 17:20:01.875673+00 f t DESCUENTO 0.00 3 11393 \N +453935 2025-11-04 17:20:01.878978+00 2025-11-04 17:20:01.878991+00 f t TOTAL 55000.00 4 11393 \N +453936 2025-11-04 17:20:01.89227+00 2025-11-04 17:20:01.892284+00 f t ADELANTO 11000.00 5 11393 \N +453947 2025-11-04 17:29:53.376483+00 2025-11-04 17:29:53.37649+00 f t SUBTOTAL 107000.00 1 11394 \N +453948 2025-11-04 17:29:53.378236+00 2025-11-04 17:29:53.378247+00 f t COSTO_SERVICIO 0.00 2 11394 \N +453949 2025-11-04 17:29:53.379637+00 2025-11-04 17:29:53.379643+00 f t DESCUENTO 0.00 3 11394 \N +453950 2025-11-04 17:29:53.380656+00 2025-11-04 17:29:53.380661+00 f t TOTAL 107000.00 4 11394 \N +453951 2025-11-04 17:29:53.381682+00 2025-11-04 17:29:53.381688+00 f t ADELANTO 12000.00 5 11394 \N +453962 2025-11-04 17:30:45.348042+00 2025-11-04 17:30:45.34805+00 f t SUBTOTAL 75000.00 1 11395 \N +453963 2025-11-04 17:30:45.349899+00 2025-11-04 17:30:45.349907+00 f t COSTO_SERVICIO 0.00 2 11395 \N +453964 2025-11-04 17:30:45.351672+00 2025-11-04 17:30:45.351679+00 f t DESCUENTO 0.00 3 11395 \N +453965 2025-11-04 17:30:45.355453+00 2025-11-04 17:30:45.355461+00 f t TOTAL 75000.00 4 11395 \N +453966 2025-11-04 17:30:45.357369+00 2025-11-04 17:30:45.357378+00 f t ADELANTO 15000.00 5 11395 \N +453982 2025-11-04 17:42:14.916414+00 2025-11-04 17:42:14.916423+00 f t SUBTOTAL 0.00 1 11396 \N +453983 2025-11-04 17:42:14.918024+00 2025-11-04 17:42:14.918033+00 f t COSTO_SERVICIO 0.00 2 11396 \N +453984 2025-11-04 17:42:14.919358+00 2025-11-04 17:42:14.919366+00 f t DESCUENTO 0.00 3 11396 \N +453985 2025-11-04 17:42:14.920421+00 2025-11-04 17:42:14.920428+00 f t TOTAL 0.00 4 11396 \N +453986 2025-11-04 17:42:14.921657+00 2025-11-04 17:42:14.921664+00 f t ADELANTO 0.00 5 11396 \N +454037 2025-11-04 17:47:48.04952+00 2025-11-04 17:47:48.049531+00 f t SUBTOTAL 70000.00 1 11397 \N +454038 2025-11-04 17:47:48.051541+00 2025-11-04 17:47:48.051552+00 f t COSTO_SERVICIO 0.00 2 11397 \N +454039 2025-11-04 17:47:48.052942+00 2025-11-04 17:47:48.052948+00 f t DESCUENTO 0.00 3 11397 \N +454040 2025-11-04 17:47:48.053963+00 2025-11-04 17:47:48.053971+00 f t TOTAL 70000.00 4 11397 \N +454041 2025-11-04 17:47:48.055431+00 2025-11-04 17:47:48.055437+00 f t ADELANTO 19000.00 5 11397 \N +459912 2025-11-06 10:07:32.831212+00 2025-11-06 10:07:32.83122+00 f t SUBTOTAL 46000.00 1 11532 \N +454047 2025-11-04 18:13:01.086711+00 2025-11-04 18:13:01.086719+00 f t SUBTOTAL 0.00 1 11398 \N +454048 2025-11-04 18:13:01.088317+00 2025-11-04 18:13:01.088325+00 f t COSTO_SERVICIO 0.00 2 11398 \N +454049 2025-11-04 18:13:01.089542+00 2025-11-04 18:13:01.089551+00 f t DESCUENTO 0.00 3 11398 \N +454050 2025-11-04 18:13:01.090839+00 2025-11-04 18:13:01.090846+00 f t TOTAL 0.00 4 11398 \N +454051 2025-11-04 18:13:01.092267+00 2025-11-04 18:13:01.092275+00 f t ADELANTO 0.00 5 11398 \N +459913 2025-11-06 10:07:32.832994+00 2025-11-06 10:07:32.833001+00 f t COSTO_SERVICIO 0.00 2 11532 \N +459914 2025-11-06 10:07:32.834243+00 2025-11-06 10:07:32.834249+00 f t DESCUENTO 0.00 3 11532 \N +459915 2025-11-06 10:07:32.835415+00 2025-11-06 10:07:32.835421+00 f t TOTAL 46000.00 4 11532 \N +459916 2025-11-06 10:07:32.836644+00 2025-11-06 10:07:32.83665+00 f t ADELANTO 11000.00 5 11532 \N +454057 2025-11-04 18:19:41.696929+00 2025-11-04 18:19:41.696938+00 f t SUBTOTAL 0.00 1 11399 \N +454058 2025-11-04 18:19:41.698473+00 2025-11-04 18:19:41.698481+00 f t COSTO_SERVICIO 0.00 2 11399 \N +454059 2025-11-04 18:19:41.699733+00 2025-11-04 18:19:41.699739+00 f t DESCUENTO 0.00 3 11399 \N +454060 2025-11-04 18:19:41.70077+00 2025-11-04 18:19:41.700776+00 f t TOTAL 0.00 4 11399 \N +454061 2025-11-04 18:19:41.701899+00 2025-11-04 18:19:41.701904+00 f t ADELANTO 0.00 5 11399 \N +460852 2025-11-06 13:34:55.927956+00 2025-11-06 13:34:55.927967+00 f t SUBTOTAL 80000.00 1 11551 \N +454092 2025-11-04 18:31:05.001232+00 2025-11-04 18:31:05.001241+00 f t SUBTOTAL 0.00 1 11401 \N +454093 2025-11-04 18:31:05.003393+00 2025-11-04 18:31:05.003401+00 f t COSTO_SERVICIO 0.00 2 11401 \N +454094 2025-11-04 18:31:05.004957+00 2025-11-04 18:31:05.004967+00 f t DESCUENTO 0.00 3 11401 \N +454095 2025-11-04 18:31:05.00672+00 2025-11-04 18:31:05.006728+00 f t TOTAL 0.00 4 11401 \N +454096 2025-11-04 18:31:05.008581+00 2025-11-04 18:31:05.008589+00 f t ADELANTO 0.00 5 11401 \N +460853 2025-11-06 13:34:55.929066+00 2025-11-06 13:34:55.929072+00 f t COSTO_SERVICIO 0.00 2 11551 \N +460854 2025-11-06 13:34:55.929714+00 2025-11-06 13:34:55.929719+00 f t DESCUENTO 0.00 3 11551 \N +460855 2025-11-06 13:34:55.930444+00 2025-11-06 13:34:55.93045+00 f t TOTAL 80000.00 4 11551 \N +460856 2025-11-06 13:34:55.931086+00 2025-11-06 13:34:55.931091+00 f t ADELANTO 12000.00 5 11551 \N +454122 2025-11-04 18:37:14.272053+00 2025-11-04 18:37:14.272062+00 f t SUBTOTAL 0.00 1 11402 \N +454123 2025-11-04 18:37:14.273893+00 2025-11-04 18:37:14.273901+00 f t COSTO_SERVICIO 0.00 2 11402 \N +454124 2025-11-04 18:37:14.275219+00 2025-11-04 18:37:14.275225+00 f t DESCUENTO 0.00 3 11402 \N +454125 2025-11-04 18:37:14.276251+00 2025-11-04 18:37:14.276257+00 f t TOTAL 0.00 4 11402 \N +454126 2025-11-04 18:37:14.277552+00 2025-11-04 18:37:14.277558+00 f t ADELANTO 0.00 5 11402 \N +454162 2025-11-04 18:38:04.884104+00 2025-11-04 18:38:04.884132+00 f t SUBTOTAL 0.00 1 11403 \N +454163 2025-11-04 18:38:04.885852+00 2025-11-04 18:38:04.885862+00 f t COSTO_SERVICIO 0.00 2 11403 \N +454164 2025-11-04 18:38:04.887306+00 2025-11-04 18:38:04.887315+00 f t DESCUENTO 0.00 3 11403 \N +454165 2025-11-04 18:38:04.888779+00 2025-11-04 18:38:04.888788+00 f t TOTAL 0.00 4 11403 \N +454166 2025-11-04 18:38:04.890016+00 2025-11-04 18:38:04.890023+00 f t ADELANTO 0.00 5 11403 \N +477537 2025-11-10 17:59:28.841003+00 2025-11-10 17:59:28.84101+00 f t SUBTOTAL 139750.00 1 11935 \N +477538 2025-11-10 17:59:28.842769+00 2025-11-10 17:59:28.842775+00 f t COSTO_SERVICIO 0.00 2 11935 \N +477539 2025-11-10 17:59:28.844077+00 2025-11-10 17:59:28.844084+00 f t DESCUENTO 0.00 3 11935 \N +477540 2025-11-10 17:59:28.845034+00 2025-11-10 17:59:28.845039+00 f t TOTAL 139750.00 4 11935 \N +454192 2025-11-04 18:38:09.684178+00 2025-11-04 18:38:09.684186+00 f t SUBTOTAL 0.00 1 11404 \N +454193 2025-11-04 18:38:09.685522+00 2025-11-04 18:38:09.685531+00 f t COSTO_SERVICIO 0.00 2 11404 \N +454194 2025-11-04 18:38:09.686598+00 2025-11-04 18:38:09.686604+00 f t DESCUENTO 0.00 3 11404 \N +454195 2025-11-04 18:38:09.688217+00 2025-11-04 18:38:09.688223+00 f t TOTAL 0.00 4 11404 \N +454196 2025-11-04 18:38:09.689423+00 2025-11-04 18:38:09.689429+00 f t ADELANTO 0.00 5 11404 \N +468022 2025-11-08 02:18:43.84065+00 2025-11-08 02:18:43.840659+00 f t SUBTOTAL 0.00 1 11722 \N +468023 2025-11-08 02:18:43.842149+00 2025-11-08 02:18:43.842159+00 f t COSTO_SERVICIO 0.00 2 11722 \N +468024 2025-11-08 02:18:43.843206+00 2025-11-08 02:18:43.843211+00 f t DESCUENTO 0.00 3 11722 \N +468025 2025-11-08 02:18:43.844133+00 2025-11-08 02:18:43.844138+00 f t TOTAL 0.00 4 11722 \N +468026 2025-11-08 02:18:43.845009+00 2025-11-08 02:18:43.845014+00 f t ADELANTO 0.00 5 11722 \N +454222 2025-11-04 18:41:37.087022+00 2025-11-04 18:41:37.087031+00 f t SUBTOTAL 88000.00 1 11400 \N +454223 2025-11-04 18:41:37.088568+00 2025-11-04 18:41:37.088574+00 f t COSTO_SERVICIO 0.00 2 11400 \N +454224 2025-11-04 18:41:37.089689+00 2025-11-04 18:41:37.089695+00 f t DESCUENTO 0.00 3 11400 \N +454225 2025-11-04 18:41:37.090677+00 2025-11-04 18:41:37.090682+00 f t TOTAL 88000.00 4 11400 \N +454226 2025-11-04 18:41:37.091736+00 2025-11-04 18:41:37.091741+00 f t ADELANTO 13000.00 5 11400 \N +468667 2025-11-08 13:20:49.6719+00 2025-11-08 13:20:49.671907+00 f t SUBTOTAL 115000.00 1 11738 \N +454242 2025-11-04 18:50:39.866808+00 2025-11-04 18:50:39.866819+00 f t SUBTOTAL 0.00 1 11405 \N +454243 2025-11-04 18:50:39.868121+00 2025-11-04 18:50:39.868127+00 f t COSTO_SERVICIO 0.00 2 11405 \N +454244 2025-11-04 18:50:39.86907+00 2025-11-04 18:50:39.869075+00 f t DESCUENTO 0.00 3 11405 \N +454245 2025-11-04 18:50:39.86999+00 2025-11-04 18:50:39.869995+00 f t TOTAL 0.00 4 11405 \N +454246 2025-11-04 18:50:39.870887+00 2025-11-04 18:50:39.870892+00 f t ADELANTO 0.00 5 11405 \N +468668 2025-11-08 13:20:49.673733+00 2025-11-08 13:20:49.673742+00 f t COSTO_SERVICIO 0.00 2 11738 \N +468669 2025-11-08 13:20:49.675057+00 2025-11-08 13:20:49.675065+00 f t DESCUENTO 0.00 3 11738 \N +468670 2025-11-08 13:20:49.676399+00 2025-11-08 13:20:49.676404+00 f t TOTAL 115000.00 4 11738 \N +468671 2025-11-08 13:20:49.677528+00 2025-11-08 13:20:49.677533+00 f t ADELANTO 25000.00 5 11738 \N +470227 2025-11-08 17:10:36.048498+00 2025-11-08 17:10:36.048506+00 f t SUBTOTAL 0.00 1 11765 \N +470228 2025-11-08 17:10:36.050609+00 2025-11-08 17:10:36.050617+00 f t COSTO_SERVICIO 0.00 2 11765 \N +470229 2025-11-08 17:10:36.051736+00 2025-11-08 17:10:36.051742+00 f t DESCUENTO 0.00 3 11765 \N +470230 2025-11-08 17:10:36.052779+00 2025-11-08 17:10:36.052784+00 f t TOTAL 0.00 4 11765 \N +470231 2025-11-08 17:10:36.053869+00 2025-11-08 17:10:36.053874+00 f t ADELANTO 0.00 5 11765 \N +470347 2025-11-08 17:18:08.885542+00 2025-11-08 17:18:08.885551+00 f t SUBTOTAL 0.00 1 11767 \N +470348 2025-11-08 17:18:08.887648+00 2025-11-08 17:18:08.887655+00 f t COSTO_SERVICIO 0.00 2 11767 \N +470349 2025-11-08 17:18:08.888906+00 2025-11-08 17:18:08.888912+00 f t DESCUENTO 0.00 3 11767 \N +470350 2025-11-08 17:18:08.89005+00 2025-11-08 17:18:08.890055+00 f t TOTAL 0.00 4 11767 \N +470351 2025-11-08 17:18:08.891178+00 2025-11-08 17:18:08.891183+00 f t ADELANTO 0.00 5 11767 \N +454362 2025-11-04 18:53:47.574299+00 2025-11-04 18:53:47.574306+00 f t SUBTOTAL 128500.00 1 11406 \N +454363 2025-11-04 18:53:47.575987+00 2025-11-04 18:53:47.575993+00 f t COSTO_SERVICIO 0.00 2 11406 \N +454364 2025-11-04 18:53:47.577205+00 2025-11-04 18:53:47.57721+00 f t DESCUENTO 0.00 3 11406 \N +454365 2025-11-04 18:53:47.578431+00 2025-11-04 18:53:47.578436+00 f t TOTAL 128500.00 4 11406 \N +454366 2025-11-04 18:53:47.579475+00 2025-11-04 18:53:47.57948+00 f t ADELANTO 28500.00 5 11406 \N +454382 2025-11-04 19:00:15.919616+00 2025-11-04 19:00:15.919628+00 f t SUBTOTAL 53700.00 1 11407 \N +454383 2025-11-04 19:00:15.92204+00 2025-11-04 19:00:15.922052+00 f t COSTO_SERVICIO 0.00 2 11407 \N +454384 2025-11-04 19:00:15.923767+00 2025-11-04 19:00:15.923777+00 f t DESCUENTO 0.00 3 11407 \N +454385 2025-11-04 19:00:15.925292+00 2025-11-04 19:00:15.925299+00 f t TOTAL 53700.00 4 11407 \N +454386 2025-11-04 19:00:15.92674+00 2025-11-04 19:00:15.926746+00 f t ADELANTO 13200.00 5 11407 \N +454397 2025-11-04 19:21:46.146169+00 2025-11-04 19:21:46.146176+00 f t SUBTOTAL 46000.00 1 11408 \N +454398 2025-11-04 19:21:46.147607+00 2025-11-04 19:21:46.147613+00 f t COSTO_SERVICIO 0.00 2 11408 \N +454399 2025-11-04 19:21:46.148616+00 2025-11-04 19:21:46.148622+00 f t DESCUENTO 0.00 3 11408 \N +454400 2025-11-04 19:21:46.149652+00 2025-11-04 19:21:46.149657+00 f t TOTAL 46000.00 4 11408 \N +454401 2025-11-04 19:21:46.150527+00 2025-11-04 19:21:46.150532+00 f t ADELANTO 11000.00 5 11408 \N +454407 2025-11-04 19:29:59.729164+00 2025-11-04 19:29:59.729173+00 f t SUBTOTAL 0.00 1 11409 \N +454408 2025-11-04 19:29:59.730595+00 2025-11-04 19:29:59.730601+00 f t COSTO_SERVICIO 0.00 2 11409 \N +454409 2025-11-04 19:29:59.731608+00 2025-11-04 19:29:59.731614+00 f t DESCUENTO 0.00 3 11409 \N +454410 2025-11-04 19:29:59.73255+00 2025-11-04 19:29:59.732555+00 f t TOTAL 0.00 4 11409 \N +454411 2025-11-04 19:29:59.733346+00 2025-11-04 19:29:59.733351+00 f t ADELANTO 0.00 5 11409 \N +454427 2025-11-04 19:37:54.684767+00 2025-11-04 19:37:54.684776+00 f t SUBTOTAL 0.00 1 11410 \N +454428 2025-11-04 19:37:54.68692+00 2025-11-04 19:37:54.686929+00 f t COSTO_SERVICIO 0.00 2 11410 \N +454429 2025-11-04 19:37:54.688217+00 2025-11-04 19:37:54.688224+00 f t DESCUENTO 0.00 3 11410 \N +454430 2025-11-04 19:37:54.689587+00 2025-11-04 19:37:54.689594+00 f t TOTAL 0.00 4 11410 \N +454431 2025-11-04 19:37:54.692445+00 2025-11-04 19:37:54.692451+00 f t ADELANTO 0.00 5 11410 \N +461772 2025-11-06 16:56:20.4431+00 2025-11-06 16:56:20.443109+00 f t SUBTOTAL 0.00 1 11574 \N +461773 2025-11-06 16:56:20.445599+00 2025-11-06 16:56:20.445606+00 f t COSTO_SERVICIO 0.00 2 11574 \N +461774 2025-11-06 16:56:20.446789+00 2025-11-06 16:56:20.446794+00 f t DESCUENTO 0.00 3 11574 \N +461775 2025-11-06 16:56:20.447864+00 2025-11-06 16:56:20.447869+00 f t TOTAL 0.00 4 11574 \N +461776 2025-11-06 16:56:20.44883+00 2025-11-06 16:56:20.448835+00 f t ADELANTO 0.00 5 11574 \N +461857 2025-11-06 17:35:49.403548+00 2025-11-06 17:35:49.403555+00 f t SUBTOTAL 70000.00 1 11577 \N +461858 2025-11-06 17:35:49.405671+00 2025-11-06 17:35:49.405678+00 f t COSTO_SERVICIO 0.00 2 11577 \N +461859 2025-11-06 17:35:49.406786+00 2025-11-06 17:35:49.406792+00 f t DESCUENTO 0.00 3 11577 \N +461860 2025-11-06 17:35:49.407737+00 2025-11-06 17:35:49.407742+00 f t TOTAL 70000.00 4 11577 \N +461861 2025-11-06 17:35:49.408702+00 2025-11-06 17:35:49.408707+00 f t ADELANTO 19000.00 5 11577 \N +454442 2025-11-04 19:43:02.838005+00 2025-11-04 19:43:02.838013+00 f t SUBTOTAL 46000.00 1 11411 \N +454443 2025-11-04 19:43:02.839613+00 2025-11-04 19:43:02.83962+00 f t COSTO_SERVICIO 0.00 2 11411 \N +454444 2025-11-04 19:43:02.840653+00 2025-11-04 19:43:02.840658+00 f t DESCUENTO 0.00 3 11411 \N +454445 2025-11-04 19:43:02.841607+00 2025-11-04 19:43:02.841612+00 f t TOTAL 46000.00 4 11411 \N +454446 2025-11-04 19:43:02.842834+00 2025-11-04 19:43:02.842843+00 f t ADELANTO 11000.00 5 11411 \N +454457 2025-11-04 19:48:38.324473+00 2025-11-04 19:48:38.324482+00 f t SUBTOTAL 55000.00 1 11412 \N +454458 2025-11-04 19:48:38.3262+00 2025-11-04 19:48:38.326207+00 f t COSTO_SERVICIO 0.00 2 11412 \N +454459 2025-11-04 19:48:38.32763+00 2025-11-04 19:48:38.327636+00 f t DESCUENTO 0.00 3 11412 \N +454460 2025-11-04 19:48:38.328814+00 2025-11-04 19:48:38.328819+00 f t TOTAL 55000.00 4 11412 \N +454461 2025-11-04 19:48:38.32993+00 2025-11-04 19:48:38.329935+00 f t ADELANTO 11000.00 5 11412 \N +477541 2025-11-10 17:59:28.845986+00 2025-11-10 17:59:28.845991+00 f t ADELANTO 29750.00 5 11935 \N +477832 2025-11-10 20:01:55.858611+00 2025-11-10 20:01:55.858621+00 f t SUBTOTAL 0.00 1 11947 \N +477833 2025-11-10 20:01:55.860706+00 2025-11-10 20:01:55.860712+00 f t COSTO_SERVICIO 0.00 2 11947 \N +477834 2025-11-10 20:01:55.86182+00 2025-11-10 20:01:55.861826+00 f t DESCUENTO 0.00 3 11947 \N +477835 2025-11-10 20:01:55.862907+00 2025-11-10 20:01:55.862914+00 f t TOTAL 0.00 4 11947 \N +454467 2025-11-04 19:49:25.145471+00 2025-11-04 19:49:25.145481+00 f t SUBTOTAL 0.00 1 11413 \N +454468 2025-11-04 19:49:25.147113+00 2025-11-04 19:49:25.147122+00 f t COSTO_SERVICIO 0.00 2 11413 \N +454469 2025-11-04 19:49:25.148576+00 2025-11-04 19:49:25.148584+00 f t DESCUENTO 0.00 3 11413 \N +454470 2025-11-04 19:49:25.150409+00 2025-11-04 19:49:25.150418+00 f t TOTAL 0.00 4 11413 \N +454471 2025-11-04 19:49:25.151584+00 2025-11-04 19:49:25.151589+00 f t ADELANTO 0.00 5 11413 \N +477836 2025-11-10 20:01:55.864031+00 2025-11-10 20:01:55.864038+00 f t ADELANTO 0.00 5 11947 \N +548256 2025-11-25 20:59:16.934241+00 2025-11-25 20:59:16.934246+00 f t ADELANTO 18700.00 5 13598 \N +454487 2025-11-04 19:55:52.900382+00 2025-11-04 19:55:52.900395+00 f t SUBTOTAL 0.00 1 11414 \N +454488 2025-11-04 19:55:52.901726+00 2025-11-04 19:55:52.901732+00 f t COSTO_SERVICIO 0.00 2 11414 \N +454489 2025-11-04 19:55:52.903012+00 2025-11-04 19:55:52.903017+00 f t DESCUENTO 0.00 3 11414 \N +454490 2025-11-04 19:55:52.904125+00 2025-11-04 19:55:52.904129+00 f t TOTAL 0.00 4 11414 \N +454491 2025-11-04 19:55:52.905103+00 2025-11-04 19:55:52.905108+00 f t ADELANTO 0.00 5 11414 \N +467527 2025-11-08 01:32:34.093921+00 2025-11-08 01:32:34.093934+00 f t SUBTOTAL 0.00 1 11717 \N +467528 2025-11-08 01:32:34.096519+00 2025-11-08 01:32:34.096529+00 f t COSTO_SERVICIO 0.00 2 11717 \N +467529 2025-11-08 01:32:34.098272+00 2025-11-08 01:32:34.098283+00 f t DESCUENTO 0.00 3 11717 \N +467530 2025-11-08 01:32:34.100077+00 2025-11-08 01:32:34.100087+00 f t TOTAL 0.00 4 11717 \N +467531 2025-11-08 01:32:34.10177+00 2025-11-08 01:32:34.101778+00 f t ADELANTO 0.00 5 11717 \N +468352 2025-11-08 10:08:09.819846+00 2025-11-08 10:08:09.819856+00 f t SUBTOTAL 0.00 1 11730 \N +468353 2025-11-08 10:08:09.822132+00 2025-11-08 10:08:09.822143+00 f t COSTO_SERVICIO 0.00 2 11730 \N +468354 2025-11-08 10:08:09.823514+00 2025-11-08 10:08:09.823522+00 f t DESCUENTO 0.00 3 11730 \N +468355 2025-11-08 10:08:09.825017+00 2025-11-08 10:08:09.825028+00 f t TOTAL 0.00 4 11730 \N +468356 2025-11-08 10:08:09.826324+00 2025-11-08 10:08:09.826332+00 f t ADELANTO 0.00 5 11730 \N +468677 2025-11-08 13:23:33.221069+00 2025-11-08 13:23:33.22108+00 f t SUBTOTAL 0.00 1 11739 \N +468678 2025-11-08 13:23:33.222565+00 2025-11-08 13:23:33.222571+00 f t COSTO_SERVICIO 0.00 2 11739 \N +468679 2025-11-08 13:23:33.223716+00 2025-11-08 13:23:33.223721+00 f t DESCUENTO 0.00 3 11739 \N +468680 2025-11-08 13:23:33.224664+00 2025-11-08 13:23:33.224669+00 f t TOTAL 0.00 4 11739 \N +468681 2025-11-08 13:23:33.225726+00 2025-11-08 13:23:33.225731+00 f t ADELANTO 0.00 5 11739 \N +459782 2025-11-06 08:30:06.189816+00 2025-11-06 08:30:06.189826+00 f t SUBTOTAL 23000.00 1 11528 \N +459783 2025-11-06 08:30:06.19226+00 2025-11-06 08:30:06.192273+00 f t COSTO_SERVICIO 0.00 2 11528 \N +459784 2025-11-06 08:30:06.194758+00 2025-11-06 08:30:06.194768+00 f t DESCUENTO 0.00 3 11528 \N +459785 2025-11-06 08:30:06.196857+00 2025-11-06 08:30:06.196865+00 f t TOTAL 23000.00 4 11528 \N +459786 2025-11-06 08:30:06.198865+00 2025-11-06 08:30:06.198876+00 f t ADELANTO 5500.00 5 11528 \N +460077 2025-11-06 11:55:42.161698+00 2025-11-06 11:55:42.161706+00 f t SUBTOTAL 0.00 1 11538 \N +460078 2025-11-06 11:55:42.164026+00 2025-11-06 11:55:42.164035+00 f t COSTO_SERVICIO 0.00 2 11538 \N +460079 2025-11-06 11:55:42.16534+00 2025-11-06 11:55:42.165346+00 f t DESCUENTO 0.00 3 11538 \N +460080 2025-11-06 11:55:42.166467+00 2025-11-06 11:55:42.166472+00 f t TOTAL 0.00 4 11538 \N +460081 2025-11-06 11:55:42.167552+00 2025-11-06 11:55:42.167558+00 f t ADELANTO 0.00 5 11538 \N +461107 2025-11-06 15:47:17.541442+00 2025-11-06 15:47:17.541449+00 f t SUBTOTAL 88000.00 1 11560 \N +461108 2025-11-06 15:47:17.543335+00 2025-11-06 15:47:17.543342+00 f t COSTO_SERVICIO 0.00 2 11560 \N +461109 2025-11-06 15:47:17.544368+00 2025-11-06 15:47:17.544373+00 f t DESCUENTO 0.00 3 11560 \N +461110 2025-11-06 15:47:17.545291+00 2025-11-06 15:47:17.545296+00 f t TOTAL 88000.00 4 11560 \N +461111 2025-11-06 15:47:17.546143+00 2025-11-06 15:47:17.546148+00 f t ADELANTO 13000.00 5 11560 \N +461457 2025-11-06 16:31:11.225996+00 2025-11-06 16:31:11.226004+00 f t SUBTOTAL 80000.00 1 11566 \N +461458 2025-11-06 16:31:11.227867+00 2025-11-06 16:31:11.227874+00 f t COSTO_SERVICIO 0.00 2 11566 \N +461459 2025-11-06 16:31:11.229272+00 2025-11-06 16:31:11.229278+00 f t DESCUENTO 0.00 3 11566 \N +461460 2025-11-06 16:31:11.230624+00 2025-11-06 16:31:11.23063+00 f t TOTAL 80000.00 4 11566 \N +461461 2025-11-06 16:31:11.231798+00 2025-11-06 16:31:11.231803+00 f t ADELANTO 12000.00 5 11566 \N +454667 2025-11-04 20:04:29.265239+00 2025-11-04 20:04:29.265245+00 f t SUBTOTAL 128500.00 1 11416 \N +454668 2025-11-04 20:04:29.26673+00 2025-11-04 20:04:29.266735+00 f t COSTO_SERVICIO 0.00 2 11416 \N +454669 2025-11-04 20:04:29.26773+00 2025-11-04 20:04:29.267735+00 f t DESCUENTO 0.00 3 11416 \N +454670 2025-11-04 20:04:29.268585+00 2025-11-04 20:04:29.26859+00 f t TOTAL 128500.00 4 11416 \N +454671 2025-11-04 20:04:29.269511+00 2025-11-04 20:04:29.269519+00 f t ADELANTO 28500.00 5 11416 \N +461782 2025-11-06 17:06:59.472281+00 2025-11-06 17:06:59.47229+00 f t SUBTOTAL 0.00 1 11575 \N +461783 2025-11-06 17:06:59.47356+00 2025-11-06 17:06:59.473565+00 f t COSTO_SERVICIO 0.00 2 11575 \N +461784 2025-11-06 17:06:59.474531+00 2025-11-06 17:06:59.474536+00 f t DESCUENTO 0.00 3 11575 \N +461785 2025-11-06 17:06:59.475465+00 2025-11-06 17:06:59.475471+00 f t TOTAL 0.00 4 11575 \N +461786 2025-11-06 17:06:59.47633+00 2025-11-06 17:06:59.476335+00 f t ADELANTO 0.00 5 11575 \N +461862 2025-11-06 17:52:57.922487+00 2025-11-06 17:52:57.922498+00 f t SUBTOTAL 107000.00 1 11572 \N +461863 2025-11-06 17:52:57.924554+00 2025-11-06 17:52:57.924564+00 f t COSTO_SERVICIO 0.00 2 11572 \N +461864 2025-11-06 17:52:57.926019+00 2025-11-06 17:52:57.926029+00 f t DESCUENTO 0.00 3 11572 \N +461865 2025-11-06 17:52:57.92723+00 2025-11-06 17:52:57.927237+00 f t TOTAL 107000.00 4 11572 \N +461866 2025-11-06 17:52:57.928438+00 2025-11-06 17:52:57.928443+00 f t ADELANTO 12000.00 5 11572 \N +454717 2025-11-04 20:25:22.097493+00 2025-11-04 20:25:22.097499+00 f t SUBTOTAL 128500.00 1 11417 \N +454718 2025-11-04 20:25:22.09908+00 2025-11-04 20:25:22.099086+00 f t COSTO_SERVICIO 0.00 2 11417 \N +454719 2025-11-04 20:25:22.100276+00 2025-11-04 20:25:22.100281+00 f t DESCUENTO 0.00 3 11417 \N +454720 2025-11-04 20:25:22.101225+00 2025-11-04 20:25:22.10123+00 f t TOTAL 128500.00 4 11417 \N +454721 2025-11-04 20:25:22.102309+00 2025-11-04 20:25:22.102316+00 f t ADELANTO 28500.00 5 11417 \N +454722 2025-11-04 20:25:43.859409+00 2025-11-04 20:25:43.859417+00 f t SUBTOTAL 55000.00 1 11415 \N +454723 2025-11-04 20:25:43.860968+00 2025-11-04 20:25:43.860974+00 f t COSTO_SERVICIO 0.00 2 11415 \N +454724 2025-11-04 20:25:43.86213+00 2025-11-04 20:25:43.862135+00 f t DESCUENTO 0.00 3 11415 \N +454725 2025-11-04 20:25:43.863159+00 2025-11-04 20:25:43.863167+00 f t TOTAL 55000.00 4 11415 \N +454726 2025-11-04 20:25:43.864121+00 2025-11-04 20:25:43.864127+00 f t ADELANTO 11000.00 5 11415 \N +457957 2025-11-05 22:29:53.215887+00 2025-11-05 22:29:53.215895+00 f t SUBTOTAL 54000.00 1 11500 \N +457958 2025-11-05 22:29:53.218065+00 2025-11-05 22:29:53.218074+00 f t COSTO_SERVICIO 0.00 2 11500 \N +457959 2025-11-05 22:29:53.219636+00 2025-11-05 22:29:53.219642+00 f t DESCUENTO 0.00 3 11500 \N +457960 2025-11-05 22:29:53.220877+00 2025-11-05 22:29:53.220887+00 f t TOTAL 54000.00 4 11500 \N +457961 2025-11-05 22:29:53.222192+00 2025-11-05 22:29:53.222198+00 f t ADELANTO 13500.00 5 11500 \N +458747 2025-11-06 01:47:53.547358+00 2025-11-06 01:47:53.547365+00 f t SUBTOTAL 55000.00 1 11515 \N +458748 2025-11-06 01:47:53.549121+00 2025-11-06 01:47:53.549127+00 f t COSTO_SERVICIO 0.00 2 11515 \N +458749 2025-11-06 01:47:53.550216+00 2025-11-06 01:47:53.550221+00 f t DESCUENTO 0.00 3 11515 \N +458750 2025-11-06 01:47:53.551113+00 2025-11-06 01:47:53.551119+00 f t TOTAL 55000.00 4 11515 \N +458751 2025-11-06 01:47:53.551991+00 2025-11-06 01:47:53.551996+00 f t ADELANTO 11000.00 5 11515 \N +480637 2025-11-11 13:23:14.980154+00 2025-11-11 13:23:14.980166+00 f t SUBTOTAL 46000.00 1 11993 \N +459412 2025-11-06 06:43:28.833861+00 2025-11-06 06:43:28.833869+00 f t SUBTOTAL 55000.00 1 11525 \N +459413 2025-11-06 06:43:28.835628+00 2025-11-06 06:43:28.835634+00 f t COSTO_SERVICIO 0.00 2 11525 \N +459414 2025-11-06 06:43:28.836775+00 2025-11-06 06:43:28.836781+00 f t DESCUENTO 0.00 3 11525 \N +459415 2025-11-06 06:43:28.837703+00 2025-11-06 06:43:28.837709+00 f t TOTAL 55000.00 4 11525 \N +459416 2025-11-06 06:43:28.838518+00 2025-11-06 06:43:28.838523+00 f t ADELANTO 11000.00 5 11525 \N +480638 2025-11-11 13:23:14.982155+00 2025-11-11 13:23:14.982165+00 f t COSTO_SERVICIO 0.00 2 11993 \N +480639 2025-11-11 13:23:14.983715+00 2025-11-11 13:23:14.983725+00 f t DESCUENTO 0.00 3 11993 \N +480640 2025-11-11 13:23:14.985057+00 2025-11-11 13:23:14.985065+00 f t TOTAL 46000.00 4 11993 \N +480641 2025-11-11 13:23:14.986274+00 2025-11-11 13:23:14.986281+00 f t ADELANTO 11000.00 5 11993 \N +469292 2025-11-08 14:39:57.070329+00 2025-11-08 14:39:57.070339+00 f t SUBTOTAL 32500.00 1 11743 \N +469293 2025-11-08 14:39:57.072429+00 2025-11-08 14:39:57.072438+00 f t COSTO_SERVICIO 0.00 2 11743 \N +469294 2025-11-08 14:39:57.073863+00 2025-11-08 14:39:57.073869+00 f t DESCUENTO 0.00 3 11743 \N +469295 2025-11-08 14:39:57.074823+00 2025-11-08 14:39:57.07483+00 f t TOTAL 32500.00 4 11743 \N +469296 2025-11-08 14:39:57.075787+00 2025-11-08 14:39:57.075792+00 f t ADELANTO 32500.00 5 11743 \N +469437 2025-11-08 14:51:41.140468+00 2025-11-08 14:51:41.140476+00 f t SUBTOTAL 162500.00 1 11750 \N +469438 2025-11-08 14:51:41.143012+00 2025-11-08 14:51:41.143024+00 f t COSTO_SERVICIO 0.00 2 11750 \N +469439 2025-11-08 14:51:41.144826+00 2025-11-08 14:51:41.144837+00 f t DESCUENTO 0.00 3 11750 \N +454867 2025-11-04 20:31:25.710093+00 2025-11-04 20:31:25.710102+00 f t SUBTOTAL 55000.00 1 11418 \N +454868 2025-11-04 20:31:25.71203+00 2025-11-04 20:31:25.712041+00 f t COSTO_SERVICIO 0.00 2 11418 \N +454869 2025-11-04 20:31:25.713735+00 2025-11-04 20:31:25.713751+00 f t DESCUENTO 0.00 3 11418 \N +454870 2025-11-04 20:31:25.715255+00 2025-11-04 20:31:25.715262+00 f t TOTAL 55000.00 4 11418 \N +454871 2025-11-04 20:31:25.716514+00 2025-11-04 20:31:25.71652+00 f t ADELANTO 11000.00 5 11418 \N +469440 2025-11-08 14:51:41.146297+00 2025-11-08 14:51:41.146307+00 f t TOTAL 162500.00 4 11750 \N +469441 2025-11-08 14:51:41.147766+00 2025-11-08 14:51:41.147777+00 f t ADELANTO 47500.00 5 11750 \N +454897 2025-11-04 21:00:18.474994+00 2025-11-04 21:00:18.475005+00 f t SUBTOTAL 78000.00 1 11420 \N +454898 2025-11-04 21:00:18.477933+00 2025-11-04 21:00:18.477947+00 f t COSTO_SERVICIO 0.00 2 11420 \N +454899 2025-11-04 21:00:18.480299+00 2025-11-04 21:00:18.480312+00 f t DESCUENTO 0.00 3 11420 \N +454900 2025-11-04 21:00:18.483583+00 2025-11-04 21:00:18.483597+00 f t TOTAL 78000.00 4 11420 \N +454901 2025-11-04 21:00:18.48598+00 2025-11-04 21:00:18.485992+00 f t ADELANTO 13000.00 5 11420 \N +470712 2025-11-08 19:07:17.321845+00 2025-11-08 19:07:17.321852+00 f t SUBTOTAL 46000.00 1 11779 \N +470713 2025-11-08 19:07:17.323593+00 2025-11-08 19:07:17.323599+00 f t COSTO_SERVICIO 0.00 2 11779 \N +470714 2025-11-08 19:07:17.325076+00 2025-11-08 19:07:17.325085+00 f t DESCUENTO 0.00 3 11779 \N +470715 2025-11-08 19:07:17.326365+00 2025-11-08 19:07:17.32637+00 f t TOTAL 46000.00 4 11779 \N +470716 2025-11-08 19:07:17.327467+00 2025-11-08 19:07:17.327472+00 f t ADELANTO 11000.00 5 11779 \N +470852 2025-11-08 20:32:19.339639+00 2025-11-08 20:32:19.339648+00 f t SUBTOTAL 0.00 1 11787 \N +470853 2025-11-08 20:32:19.341362+00 2025-11-08 20:32:19.34137+00 f t COSTO_SERVICIO 0.00 2 11787 \N +470854 2025-11-08 20:32:19.342754+00 2025-11-08 20:32:19.342761+00 f t DESCUENTO 0.00 3 11787 \N +470855 2025-11-08 20:32:19.344025+00 2025-11-08 20:32:19.344032+00 f t TOTAL 0.00 4 11787 \N +470856 2025-11-08 20:32:19.345085+00 2025-11-08 20:32:19.34509+00 f t ADELANTO 0.00 5 11787 \N +471872 2025-11-09 03:06:05.860337+00 2025-11-09 03:06:05.860347+00 f t SUBTOTAL 0.00 1 11808 \N +471873 2025-11-09 03:06:05.862568+00 2025-11-09 03:06:05.862576+00 f t COSTO_SERVICIO 0.00 2 11808 \N +471874 2025-11-09 03:06:05.863773+00 2025-11-09 03:06:05.86378+00 f t DESCUENTO 0.00 3 11808 \N +471875 2025-11-09 03:06:05.864766+00 2025-11-09 03:06:05.864772+00 f t TOTAL 0.00 4 11808 \N +471876 2025-11-09 03:06:05.865841+00 2025-11-09 03:06:05.865847+00 f t ADELANTO 0.00 5 11808 \N +461872 2025-11-06 18:04:29.429663+00 2025-11-06 18:04:29.42967+00 f t SUBTOTAL 0.00 1 11578 \N +461873 2025-11-06 18:04:29.431172+00 2025-11-06 18:04:29.431178+00 f t COSTO_SERVICIO 0.00 2 11578 \N +461874 2025-11-06 18:04:29.432411+00 2025-11-06 18:04:29.432417+00 f t DESCUENTO 0.00 3 11578 \N +461875 2025-11-06 18:04:29.433533+00 2025-11-06 18:04:29.43354+00 f t TOTAL 0.00 4 11578 \N +461876 2025-11-06 18:04:29.43454+00 2025-11-06 18:04:29.434545+00 f t ADELANTO 0.00 5 11578 \N +461967 2025-11-06 18:27:20.884196+00 2025-11-06 18:27:20.884205+00 f t SUBTOTAL 0.00 1 11582 \N +461968 2025-11-06 18:27:20.885774+00 2025-11-06 18:27:20.885781+00 f t COSTO_SERVICIO 0.00 2 11582 \N +461969 2025-11-06 18:27:20.886976+00 2025-11-06 18:27:20.886982+00 f t DESCUENTO 0.00 3 11582 \N +461970 2025-11-06 18:27:20.888248+00 2025-11-06 18:27:20.888255+00 f t TOTAL 0.00 4 11582 \N +461971 2025-11-06 18:27:20.889338+00 2025-11-06 18:27:20.889343+00 f t ADELANTO 0.00 5 11582 \N +455002 2025-11-04 21:05:43.909768+00 2025-11-04 21:05:43.909775+00 f t SUBTOTAL 107000.00 1 11421 \N +455003 2025-11-04 21:05:43.911501+00 2025-11-04 21:05:43.911509+00 f t COSTO_SERVICIO 0.00 2 11421 \N +455004 2025-11-04 21:05:43.912906+00 2025-11-04 21:05:43.912913+00 f t DESCUENTO 0.00 3 11421 \N +455005 2025-11-04 21:05:43.918142+00 2025-11-04 21:05:43.918153+00 f t TOTAL 107000.00 4 11421 \N +455006 2025-11-04 21:05:43.919941+00 2025-11-04 21:05:43.91995+00 f t ADELANTO 27000.00 5 11421 \N +455017 2025-11-04 21:11:30.766811+00 2025-11-04 21:11:30.766822+00 f t SUBTOTAL 119000.00 1 11419 \N +455018 2025-11-04 21:11:30.768996+00 2025-11-04 21:11:30.769001+00 f t COSTO_SERVICIO 0.00 2 11419 \N +455019 2025-11-04 21:11:30.770037+00 2025-11-04 21:11:30.770043+00 f t DESCUENTO 0.00 3 11419 \N +455020 2025-11-04 21:11:30.771029+00 2025-11-04 21:11:30.771035+00 f t TOTAL 119000.00 4 11419 \N +455021 2025-11-04 21:11:30.772044+00 2025-11-04 21:11:30.77205+00 f t ADELANTO 29500.00 5 11419 \N +472457 2025-11-09 13:24:40.407248+00 2025-11-09 13:24:40.407255+00 f t SUBTOTAL 0.00 1 11824 \N +472458 2025-11-09 13:24:40.408793+00 2025-11-09 13:24:40.4088+00 f t COSTO_SERVICIO 0.00 2 11824 \N +472459 2025-11-09 13:24:40.409902+00 2025-11-09 13:24:40.409908+00 f t DESCUENTO 0.00 3 11824 \N +472460 2025-11-09 13:24:40.410851+00 2025-11-09 13:24:40.410856+00 f t TOTAL 0.00 4 11824 \N +462302 2025-11-06 21:04:32.288299+00 2025-11-06 21:04:32.288306+00 f t SUBTOTAL 53700.00 1 11589 \N +455052 2025-11-04 21:25:05.439927+00 2025-11-04 21:25:05.439943+00 f t SUBTOTAL 107000.00 1 11422 \N +455053 2025-11-04 21:25:05.452859+00 2025-11-04 21:25:05.452875+00 f t COSTO_SERVICIO 0.00 2 11422 \N +455054 2025-11-04 21:25:05.455588+00 2025-11-04 21:25:05.455602+00 f t DESCUENTO 0.00 3 11422 \N +455055 2025-11-04 21:25:05.460627+00 2025-11-04 21:25:05.460641+00 f t TOTAL 107000.00 4 11422 \N +455056 2025-11-04 21:25:05.466179+00 2025-11-04 21:25:05.466227+00 f t ADELANTO 12000.00 5 11422 \N +457452 2025-11-05 20:11:50.935613+00 2025-11-05 20:11:50.935621+00 f t SUBTOTAL 55000.00 1 11490 \N +457453 2025-11-05 20:11:50.939187+00 2025-11-05 20:11:50.939196+00 f t COSTO_SERVICIO 0.00 2 11490 \N +455072 2025-11-04 21:31:26.539931+00 2025-11-04 21:31:26.539939+00 f t SUBTOTAL 0.00 1 11423 \N +455073 2025-11-04 21:31:26.541298+00 2025-11-04 21:31:26.541305+00 f t COSTO_SERVICIO 0.00 2 11423 \N +455074 2025-11-04 21:31:26.542247+00 2025-11-04 21:31:26.542252+00 f t DESCUENTO 0.00 3 11423 \N +455075 2025-11-04 21:31:26.543186+00 2025-11-04 21:31:26.543192+00 f t TOTAL 0.00 4 11423 \N +455076 2025-11-04 21:31:26.544125+00 2025-11-04 21:31:26.54413+00 f t ADELANTO 0.00 5 11423 \N +457454 2025-11-05 20:11:50.940511+00 2025-11-05 20:11:50.940518+00 f t DESCUENTO 0.00 3 11490 \N +457455 2025-11-05 20:11:50.941696+00 2025-11-05 20:11:50.941702+00 f t TOTAL 55000.00 4 11490 \N +457456 2025-11-05 20:11:50.942895+00 2025-11-05 20:11:50.9429+00 f t ADELANTO 11000.00 5 11490 \N +479152 2025-11-10 22:54:47.507897+00 2025-11-10 22:54:47.507906+00 f t SUBTOTAL 131000.00 1 11976 \N +479153 2025-11-10 22:54:47.509804+00 2025-11-10 22:54:47.509811+00 f t COSTO_SERVICIO 0.00 2 11976 \N +479154 2025-11-10 22:54:47.511126+00 2025-11-10 22:54:47.511256+00 f t DESCUENTO 0.00 3 11976 \N +479155 2025-11-10 22:54:47.512281+00 2025-11-10 22:54:47.512286+00 f t TOTAL 131000.00 4 11976 \N +479156 2025-11-10 22:54:47.513376+00 2025-11-10 22:54:47.513385+00 f t ADELANTO 26000.00 5 11976 \N +455102 2025-11-04 21:52:31.946746+00 2025-11-04 21:52:31.946754+00 f t SUBTOTAL 46000.00 1 11424 \N +455103 2025-11-04 21:52:31.94862+00 2025-11-04 21:52:31.948627+00 f t COSTO_SERVICIO 0.00 2 11424 \N +455104 2025-11-04 21:52:31.949771+00 2025-11-04 21:52:31.949777+00 f t DESCUENTO 0.00 3 11424 \N +455105 2025-11-04 21:52:31.950678+00 2025-11-04 21:52:31.950684+00 f t TOTAL 46000.00 4 11424 \N +455106 2025-11-04 21:52:31.95183+00 2025-11-04 21:52:31.951835+00 f t ADELANTO 11000.00 5 11424 \N +458282 2025-11-05 23:27:07.64264+00 2025-11-05 23:27:07.642649+00 f t SUBTOTAL 107000.00 1 11505 \N +458283 2025-11-05 23:27:07.644966+00 2025-11-05 23:27:07.644975+00 f t COSTO_SERVICIO 0.00 2 11505 \N +458284 2025-11-05 23:27:07.646361+00 2025-11-05 23:27:07.646369+00 f t DESCUENTO 0.00 3 11505 \N +458285 2025-11-05 23:27:07.647677+00 2025-11-05 23:27:07.647683+00 f t TOTAL 107000.00 4 11505 \N +458286 2025-11-05 23:27:07.648861+00 2025-11-05 23:27:07.648867+00 f t ADELANTO 12000.00 5 11505 \N +455132 2025-11-04 21:54:46.935042+00 2025-11-04 21:54:46.935049+00 f t SUBTOTAL 115000.00 1 11425 \N +455133 2025-11-04 21:54:46.936825+00 2025-11-04 21:54:46.936831+00 f t COSTO_SERVICIO 0.00 2 11425 \N +455134 2025-11-04 21:54:46.938274+00 2025-11-04 21:54:46.938279+00 f t DESCUENTO 0.00 3 11425 \N +455135 2025-11-04 21:54:46.939598+00 2025-11-04 21:54:46.939603+00 f t TOTAL 115000.00 4 11425 \N +455136 2025-11-04 21:54:46.940848+00 2025-11-04 21:54:46.940853+00 f t ADELANTO 25000.00 5 11425 \N +455142 2025-11-04 22:19:16.137081+00 2025-11-04 22:19:16.137093+00 f t SUBTOTAL 0.00 1 11426 \N +455143 2025-11-04 22:19:16.138762+00 2025-11-04 22:19:16.138772+00 f t COSTO_SERVICIO 0.00 2 11426 \N +455144 2025-11-04 22:19:16.140129+00 2025-11-04 22:19:16.140138+00 f t DESCUENTO 0.00 3 11426 \N +455145 2025-11-04 22:19:16.14137+00 2025-11-04 22:19:16.141377+00 f t TOTAL 0.00 4 11426 \N +455146 2025-11-04 22:19:16.14258+00 2025-11-04 22:19:16.142587+00 f t ADELANTO 0.00 5 11426 \N +455152 2025-11-04 22:22:11.961477+00 2025-11-04 22:22:11.961486+00 f t SUBTOTAL 0.00 1 11427 \N +455153 2025-11-04 22:22:11.962675+00 2025-11-04 22:22:11.962682+00 f t COSTO_SERVICIO 0.00 2 11427 \N +455154 2025-11-04 22:22:11.963587+00 2025-11-04 22:22:11.963594+00 f t DESCUENTO 0.00 3 11427 \N +455155 2025-11-04 22:22:11.964389+00 2025-11-04 22:22:11.964394+00 f t TOTAL 0.00 4 11427 \N +455156 2025-11-04 22:22:11.965251+00 2025-11-04 22:22:11.965255+00 f t ADELANTO 0.00 5 11427 \N +455182 2025-11-04 22:23:45.498498+00 2025-11-04 22:23:45.498505+00 f t SUBTOTAL 72500.00 1 11428 \N +455183 2025-11-04 22:23:45.500096+00 2025-11-04 22:23:45.500103+00 f t COSTO_SERVICIO 0.00 2 11428 \N +455184 2025-11-04 22:23:45.501259+00 2025-11-04 22:23:45.501264+00 f t DESCUENTO 0.00 3 11428 \N +455185 2025-11-04 22:23:45.502235+00 2025-11-04 22:23:45.50224+00 f t TOTAL 72500.00 4 11428 \N +455186 2025-11-04 22:23:45.503275+00 2025-11-04 22:23:45.503281+00 f t ADELANTO 72500.00 5 11428 \N +455202 2025-11-04 22:26:06.180734+00 2025-11-04 22:26:06.180744+00 f t SUBTOTAL 0.00 1 11429 \N +455203 2025-11-04 22:26:06.182385+00 2025-11-04 22:26:06.182392+00 f t COSTO_SERVICIO 0.00 2 11429 \N +455204 2025-11-04 22:26:06.183739+00 2025-11-04 22:26:06.183745+00 f t DESCUENTO 0.00 3 11429 \N +455205 2025-11-04 22:26:06.184905+00 2025-11-04 22:26:06.184911+00 f t TOTAL 0.00 4 11429 \N +455206 2025-11-04 22:26:06.185862+00 2025-11-04 22:26:06.185867+00 f t ADELANTO 0.00 5 11429 \N +455257 2025-11-04 22:52:03.503182+00 2025-11-04 22:52:03.503196+00 f t SUBTOTAL 0.00 1 11430 \N +455258 2025-11-04 22:52:03.50527+00 2025-11-04 22:52:03.50528+00 f t COSTO_SERVICIO 0.00 2 11430 \N +455259 2025-11-04 22:52:03.506778+00 2025-11-04 22:52:03.506788+00 f t DESCUENTO 0.00 3 11430 \N +455260 2025-11-04 22:52:03.508188+00 2025-11-04 22:52:03.508196+00 f t TOTAL 0.00 4 11430 \N +455261 2025-11-04 22:52:03.509606+00 2025-11-04 22:52:03.509615+00 f t ADELANTO 0.00 5 11430 \N +455267 2025-11-04 22:55:49.957204+00 2025-11-04 22:55:49.957213+00 f t SUBTOTAL 0.00 1 11431 \N +455268 2025-11-04 22:55:49.958656+00 2025-11-04 22:55:49.958663+00 f t COSTO_SERVICIO 0.00 2 11431 \N +455269 2025-11-04 22:55:49.959855+00 2025-11-04 22:55:49.95986+00 f t DESCUENTO 0.00 3 11431 \N +455270 2025-11-04 22:55:49.960809+00 2025-11-04 22:55:49.960815+00 f t TOTAL 0.00 4 11431 \N +455271 2025-11-04 22:55:49.961656+00 2025-11-04 22:55:49.961661+00 f t ADELANTO 0.00 5 11431 \N +455287 2025-11-04 23:10:43.234706+00 2025-11-04 23:10:43.234715+00 f t SUBTOTAL 0.00 1 11432 \N +455288 2025-11-04 23:10:43.236036+00 2025-11-04 23:10:43.236043+00 f t COSTO_SERVICIO 0.00 2 11432 \N +455289 2025-11-04 23:10:43.237133+00 2025-11-04 23:10:43.237138+00 f t DESCUENTO 0.00 3 11432 \N +455290 2025-11-04 23:10:43.239539+00 2025-11-04 23:10:43.239544+00 f t TOTAL 0.00 4 11432 \N +455291 2025-11-04 23:10:43.240518+00 2025-11-04 23:10:43.240524+00 f t ADELANTO 0.00 5 11432 \N +455297 2025-11-04 23:36:49.388265+00 2025-11-04 23:36:49.388273+00 f t SUBTOTAL 0.00 1 11433 \N +455298 2025-11-04 23:36:49.3897+00 2025-11-04 23:36:49.389706+00 f t COSTO_SERVICIO 0.00 2 11433 \N +455299 2025-11-04 23:36:49.390936+00 2025-11-04 23:36:49.390943+00 f t DESCUENTO 0.00 3 11433 \N +455300 2025-11-04 23:36:49.391916+00 2025-11-04 23:36:49.39192+00 f t TOTAL 0.00 4 11433 \N +455301 2025-11-04 23:36:49.392707+00 2025-11-04 23:36:49.392711+00 f t ADELANTO 0.00 5 11433 \N +455317 2025-11-05 00:15:50.84484+00 2025-11-05 00:15:50.844849+00 f t SUBTOTAL 0.00 1 11435 \N +455318 2025-11-05 00:15:50.846171+00 2025-11-05 00:15:50.846178+00 f t COSTO_SERVICIO 0.00 2 11435 \N +455319 2025-11-05 00:15:50.84728+00 2025-11-05 00:15:50.847285+00 f t DESCUENTO 0.00 3 11435 \N +455320 2025-11-05 00:15:50.848261+00 2025-11-05 00:15:50.848266+00 f t TOTAL 0.00 4 11435 \N +455321 2025-11-05 00:15:50.849198+00 2025-11-05 00:15:50.849203+00 f t ADELANTO 0.00 5 11435 \N +466767 2025-11-07 22:37:58.604425+00 2025-11-07 22:37:58.604431+00 f t SUBTOTAL 126000.00 1 11704 \N +466768 2025-11-07 22:37:58.605971+00 2025-11-07 22:37:58.605976+00 f t COSTO_SERVICIO 0.00 2 11704 \N +466769 2025-11-07 22:37:58.606973+00 2025-11-07 22:37:58.60698+00 f t DESCUENTO 0.00 3 11704 \N +466770 2025-11-07 22:37:58.607903+00 2025-11-07 22:37:58.607908+00 f t TOTAL 126000.00 4 11704 \N +466771 2025-11-07 22:37:58.609179+00 2025-11-07 22:37:58.609184+00 f t ADELANTO 23000.00 5 11704 \N +477552 2025-11-10 18:00:01.924644+00 2025-11-10 18:00:01.924657+00 f t SUBTOTAL 55000.00 1 11937 \N +477553 2025-11-10 18:00:01.929463+00 2025-11-10 18:00:01.929477+00 f t COSTO_SERVICIO 0.00 2 11937 \N +477554 2025-11-10 18:00:01.93341+00 2025-11-10 18:00:01.933426+00 f t DESCUENTO 0.00 3 11937 \N +477555 2025-11-10 18:00:01.93658+00 2025-11-10 18:00:01.936594+00 f t TOTAL 55000.00 4 11937 \N +477556 2025-11-10 18:00:01.941593+00 2025-11-10 18:00:01.941606+00 f t ADELANTO 11000.00 5 11937 \N +457042 2025-11-05 17:28:02.314037+00 2025-11-05 17:28:02.314046+00 f t SUBTOTAL 88000.00 1 11477 \N +457043 2025-11-05 17:28:02.315902+00 2025-11-05 17:28:02.31591+00 f t COSTO_SERVICIO 0.00 2 11477 \N +457044 2025-11-05 17:28:02.31764+00 2025-11-05 17:28:02.317648+00 f t DESCUENTO 0.00 3 11477 \N +457045 2025-11-05 17:28:02.31886+00 2025-11-05 17:28:02.318866+00 f t TOTAL 88000.00 4 11477 \N +457046 2025-11-05 17:28:02.320055+00 2025-11-05 17:28:02.320061+00 f t ADELANTO 13000.00 5 11477 \N +455372 2025-11-05 00:20:49.547219+00 2025-11-05 00:20:49.547228+00 f t SUBTOTAL 0.00 1 11434 \N +455373 2025-11-05 00:20:49.549272+00 2025-11-05 00:20:49.549282+00 f t COSTO_SERVICIO 0.00 2 11434 \N +455374 2025-11-05 00:20:49.550719+00 2025-11-05 00:20:49.550726+00 f t DESCUENTO 0.00 3 11434 \N +455375 2025-11-05 00:20:49.551874+00 2025-11-05 00:20:49.551881+00 f t TOTAL 0.00 4 11434 \N +455376 2025-11-05 00:20:49.553016+00 2025-11-05 00:20:49.553023+00 f t ADELANTO 0.00 5 11434 \N +455427 2025-11-05 00:35:55.030477+00 2025-11-05 00:35:55.030488+00 f t SUBTOTAL 55000.00 1 11436 \N +455428 2025-11-05 00:35:55.032496+00 2025-11-05 00:35:55.032506+00 f t COSTO_SERVICIO 0.00 2 11436 \N +455429 2025-11-05 00:35:55.034056+00 2025-11-05 00:35:55.034066+00 f t DESCUENTO 0.00 3 11436 \N +455430 2025-11-05 00:35:55.03541+00 2025-11-05 00:35:55.035418+00 f t TOTAL 55000.00 4 11436 \N +455431 2025-11-05 00:35:55.038419+00 2025-11-05 00:35:55.038428+00 f t ADELANTO 11000.00 5 11436 \N +459422 2025-11-06 07:49:50.410392+00 2025-11-06 07:49:50.410404+00 f t SUBTOTAL 0.00 1 11526 \N +459423 2025-11-06 07:49:50.412034+00 2025-11-06 07:49:50.412041+00 f t COSTO_SERVICIO 0.00 2 11526 \N +459424 2025-11-06 07:49:50.413367+00 2025-11-06 07:49:50.413375+00 f t DESCUENTO 0.00 3 11526 \N +459425 2025-11-06 07:49:50.414592+00 2025-11-06 07:49:50.414599+00 f t TOTAL 0.00 4 11526 \N +459426 2025-11-06 07:49:50.415738+00 2025-11-06 07:49:50.415744+00 f t ADELANTO 0.00 5 11526 \N +455492 2025-11-05 00:43:10.23986+00 2025-11-05 00:43:10.239867+00 f t SUBTOTAL 70000.00 1 11437 \N +455493 2025-11-05 00:43:10.242109+00 2025-11-05 00:43:10.242115+00 f t COSTO_SERVICIO 0.00 2 11437 \N +455494 2025-11-05 00:43:10.24335+00 2025-11-05 00:43:10.243356+00 f t DESCUENTO 0.00 3 11437 \N +455495 2025-11-05 00:43:10.244789+00 2025-11-05 00:43:10.244794+00 f t TOTAL 70000.00 4 11437 \N +455496 2025-11-05 00:43:10.246183+00 2025-11-05 00:43:10.246189+00 f t ADELANTO 19000.00 5 11437 \N +455522 2025-11-05 01:05:54.654405+00 2025-11-05 01:05:54.654413+00 f t SUBTOTAL 60000.00 1 11438 \N +455523 2025-11-05 01:05:54.656209+00 2025-11-05 01:05:54.656216+00 f t COSTO_SERVICIO 0.00 2 11438 \N +455524 2025-11-05 01:05:54.657315+00 2025-11-05 01:05:54.657321+00 f t DESCUENTO 0.00 3 11438 \N +455525 2025-11-05 01:05:54.658237+00 2025-11-05 01:05:54.658242+00 f t TOTAL 60000.00 4 11438 \N +455526 2025-11-05 01:05:54.659159+00 2025-11-05 01:05:54.659164+00 f t ADELANTO 50000.00 5 11438 \N +461472 2025-11-06 16:40:31.089079+00 2025-11-06 16:40:31.089087+00 f t SUBTOTAL 23000.00 1 11567 \N +461473 2025-11-06 16:40:31.090898+00 2025-11-06 16:40:31.090904+00 f t COSTO_SERVICIO 0.00 2 11567 \N +461474 2025-11-06 16:40:31.092964+00 2025-11-06 16:40:31.09297+00 f t DESCUENTO 0.00 3 11567 \N +461475 2025-11-06 16:40:31.094208+00 2025-11-06 16:40:31.094213+00 f t TOTAL 23000.00 4 11567 \N +461476 2025-11-06 16:40:31.095178+00 2025-11-06 16:40:31.095182+00 f t ADELANTO 5500.00 5 11567 \N +455552 2025-11-05 02:14:57.213255+00 2025-11-05 02:14:57.213263+00 f t SUBTOTAL 55000.00 1 11439 \N +455553 2025-11-05 02:14:57.214943+00 2025-11-05 02:14:57.214949+00 f t COSTO_SERVICIO 0.00 2 11439 \N +455554 2025-11-05 02:14:57.216206+00 2025-11-05 02:14:57.216211+00 f t DESCUENTO 0.00 3 11439 \N +455555 2025-11-05 02:14:57.217364+00 2025-11-05 02:14:57.21737+00 f t TOTAL 55000.00 4 11439 \N +455556 2025-11-05 02:14:57.218528+00 2025-11-05 02:14:57.218533+00 f t ADELANTO 11000.00 5 11439 \N +455562 2025-11-05 03:46:44.10299+00 2025-11-05 03:46:44.103+00 f t SUBTOTAL 0.00 1 11440 \N +455563 2025-11-05 03:46:44.104428+00 2025-11-05 03:46:44.104435+00 f t COSTO_SERVICIO 0.00 2 11440 \N +455564 2025-11-05 03:46:44.105505+00 2025-11-05 03:46:44.10551+00 f t DESCUENTO 0.00 3 11440 \N +455565 2025-11-05 03:46:44.106441+00 2025-11-05 03:46:44.106446+00 f t TOTAL 0.00 4 11440 \N +455566 2025-11-05 03:46:44.107356+00 2025-11-05 03:46:44.107361+00 f t ADELANTO 0.00 5 11440 \N +455587 2025-11-05 03:56:00.510413+00 2025-11-05 03:56:00.510421+00 f t SUBTOTAL 0.00 1 11441 \N +455588 2025-11-05 03:56:00.512179+00 2025-11-05 03:56:00.512185+00 f t COSTO_SERVICIO 0.00 2 11441 \N +455589 2025-11-05 03:56:00.513299+00 2025-11-05 03:56:00.513304+00 f t DESCUENTO 0.00 3 11441 \N +455590 2025-11-05 03:56:00.514256+00 2025-11-05 03:56:00.514261+00 f t TOTAL 0.00 4 11441 \N +455591 2025-11-05 03:56:00.515375+00 2025-11-05 03:56:00.51538+00 f t ADELANTO 0.00 5 11441 \N +461977 2025-11-06 18:29:18.947036+00 2025-11-06 18:29:18.947048+00 f t SUBTOTAL 0.00 1 11583 \N +461978 2025-11-06 18:29:18.948753+00 2025-11-06 18:29:18.948762+00 f t COSTO_SERVICIO 0.00 2 11583 \N +461979 2025-11-06 18:29:18.95017+00 2025-11-06 18:29:18.95018+00 f t DESCUENTO 0.00 3 11583 \N +461980 2025-11-06 18:29:18.951388+00 2025-11-06 18:29:18.951395+00 f t TOTAL 0.00 4 11583 \N +461981 2025-11-06 18:29:18.952434+00 2025-11-06 18:29:18.952439+00 f t ADELANTO 0.00 5 11583 \N +462112 2025-11-06 19:13:51.189638+00 2025-11-06 19:13:51.189647+00 f t SUBTOTAL 149000.00 1 11586 \N +462113 2025-11-06 19:13:51.191355+00 2025-11-06 19:13:51.191363+00 f t COSTO_SERVICIO 0.00 2 11586 \N +462114 2025-11-06 19:13:51.192693+00 2025-11-06 19:13:51.192698+00 f t DESCUENTO 9200.00 3 11586 \N +462115 2025-11-06 19:13:51.193841+00 2025-11-06 19:13:51.193846+00 f t TOTAL 139800.00 4 11586 \N +462116 2025-11-06 19:13:51.195059+00 2025-11-06 19:13:51.195065+00 f t ADELANTO 33500.00 5 11586 \N +462172 2025-11-06 19:59:11.292913+00 2025-11-06 19:59:11.292923+00 f t SUBTOTAL 70000.00 1 11588 \N +462173 2025-11-06 19:59:11.294769+00 2025-11-06 19:59:11.294776+00 f t COSTO_SERVICIO 0.00 2 11588 \N +462174 2025-11-06 19:59:11.296134+00 2025-11-06 19:59:11.296143+00 f t DESCUENTO 0.00 3 11588 \N +462175 2025-11-06 19:59:11.297422+00 2025-11-06 19:59:11.297427+00 f t TOTAL 70000.00 4 11588 \N +462176 2025-11-06 19:59:11.298442+00 2025-11-06 19:59:11.298449+00 f t ADELANTO 19000.00 5 11588 \N +462272 2025-11-06 20:33:42.210701+00 2025-11-06 20:33:42.210712+00 f t SUBTOTAL 46000.00 1 11590 \N +489182 2025-11-13 02:42:11.899156+00 2025-11-13 02:42:11.899168+00 f t SUBTOTAL 46000.00 1 12205 \N +489183 2025-11-13 02:42:11.901042+00 2025-11-13 02:42:11.901052+00 f t COSTO_SERVICIO 0.00 2 12205 \N +489184 2025-11-13 02:42:11.902318+00 2025-11-13 02:42:11.902324+00 f t DESCUENTO 0.00 3 12205 \N +489185 2025-11-13 02:42:11.903464+00 2025-11-13 02:42:11.90347+00 f t TOTAL 46000.00 4 12205 \N +489186 2025-11-13 02:42:11.904453+00 2025-11-13 02:42:11.904458+00 f t ADELANTO 11000.00 5 12205 \N +455662 2025-11-05 04:04:34.539517+00 2025-11-05 04:04:34.539527+00 f t SUBTOTAL 0.00 1 11442 \N +455663 2025-11-05 04:04:34.541612+00 2025-11-05 04:04:34.541619+00 f t COSTO_SERVICIO 0.00 2 11442 \N +455664 2025-11-05 04:04:34.542795+00 2025-11-05 04:04:34.5428+00 f t DESCUENTO 0.00 3 11442 \N +455665 2025-11-05 04:04:34.543866+00 2025-11-05 04:04:34.54387+00 f t TOTAL 0.00 4 11442 \N +455666 2025-11-05 04:04:34.544935+00 2025-11-05 04:04:34.54494+00 f t ADELANTO 0.00 5 11442 \N +455697 2025-11-05 04:13:48.064845+00 2025-11-05 04:13:48.064854+00 f t SUBTOTAL 0.00 1 11443 \N +455698 2025-11-05 04:13:48.066748+00 2025-11-05 04:13:48.066756+00 f t COSTO_SERVICIO 0.00 2 11443 \N +455699 2025-11-05 04:13:48.068198+00 2025-11-05 04:13:48.068206+00 f t DESCUENTO 0.00 3 11443 \N +455700 2025-11-05 04:13:48.069385+00 2025-11-05 04:13:48.069391+00 f t TOTAL 0.00 4 11443 \N +455701 2025-11-05 04:13:48.070454+00 2025-11-05 04:13:48.070459+00 f t ADELANTO 0.00 5 11443 \N +455707 2025-11-05 04:29:34.143155+00 2025-11-05 04:29:34.143174+00 f t SUBTOTAL 0.00 1 11444 \N +455708 2025-11-05 04:29:34.144597+00 2025-11-05 04:29:34.144603+00 f t COSTO_SERVICIO 0.00 2 11444 \N +455709 2025-11-05 04:29:34.145896+00 2025-11-05 04:29:34.145902+00 f t DESCUENTO 0.00 3 11444 \N +455710 2025-11-05 04:29:34.146895+00 2025-11-05 04:29:34.146903+00 f t TOTAL 0.00 4 11444 \N +455711 2025-11-05 04:29:34.148012+00 2025-11-05 04:29:34.14802+00 f t ADELANTO 0.00 5 11444 \N +455747 2025-11-05 04:59:25.768406+00 2025-11-05 04:59:25.768413+00 f t SUBTOTAL 134000.00 1 11445 \N +455748 2025-11-05 04:59:25.769976+00 2025-11-05 04:59:25.769981+00 f t COSTO_SERVICIO 0.00 2 11445 \N +455749 2025-11-05 04:59:25.771103+00 2025-11-05 04:59:25.771109+00 f t DESCUENTO 0.00 3 11445 \N +455750 2025-11-05 04:59:25.772375+00 2025-11-05 04:59:25.77238+00 f t TOTAL 134000.00 4 11445 \N +455751 2025-11-05 04:59:25.773424+00 2025-11-05 04:59:25.773429+00 f t ADELANTO 24000.00 5 11445 \N +470367 2025-11-08 17:42:32.339608+00 2025-11-08 17:42:32.339619+00 f t SUBTOTAL 0.00 1 11769 \N +470368 2025-11-08 17:42:32.341184+00 2025-11-08 17:42:32.341194+00 f t COSTO_SERVICIO 0.00 2 11769 \N +470369 2025-11-08 17:42:32.342468+00 2025-11-08 17:42:32.342474+00 f t DESCUENTO 0.00 3 11769 \N +470370 2025-11-08 17:42:32.343636+00 2025-11-08 17:42:32.343642+00 f t TOTAL 0.00 4 11769 \N +470371 2025-11-08 17:42:32.345066+00 2025-11-08 17:42:32.345073+00 f t ADELANTO 0.00 5 11769 \N +470597 2025-11-08 18:36:41.305934+00 2025-11-08 18:36:41.305942+00 f t SUBTOTAL 70000.00 1 11775 \N +470598 2025-11-08 18:36:41.307814+00 2025-11-08 18:36:41.30782+00 f t COSTO_SERVICIO 0.00 2 11775 \N +470599 2025-11-08 18:36:41.309079+00 2025-11-08 18:36:41.309085+00 f t DESCUENTO 0.00 3 11775 \N +470600 2025-11-08 18:36:41.310275+00 2025-11-08 18:36:41.310281+00 f t TOTAL 70000.00 4 11775 \N +470601 2025-11-08 18:36:41.31142+00 2025-11-08 18:36:41.311426+00 f t ADELANTO 19000.00 5 11775 \N +455797 2025-11-05 10:10:57.836998+00 2025-11-05 10:10:57.837006+00 f t SUBTOTAL 82000.00 1 11446 \N +455798 2025-11-05 10:10:57.838614+00 2025-11-05 10:10:57.838621+00 f t COSTO_SERVICIO 0.00 2 11446 \N +455799 2025-11-05 10:10:57.840092+00 2025-11-05 10:10:57.840099+00 f t DESCUENTO 0.00 3 11446 \N +455800 2025-11-05 10:10:57.841362+00 2025-11-05 10:10:57.841369+00 f t TOTAL 82000.00 4 11446 \N +455801 2025-11-05 10:10:57.842603+00 2025-11-05 10:10:57.842608+00 f t ADELANTO 12000.00 5 11446 \N +455807 2025-11-05 10:52:30.195698+00 2025-11-05 10:52:30.19571+00 f t SUBTOTAL 0.00 1 11447 \N +455808 2025-11-05 10:52:30.197334+00 2025-11-05 10:52:30.197343+00 f t COSTO_SERVICIO 0.00 2 11447 \N +455809 2025-11-05 10:52:30.198586+00 2025-11-05 10:52:30.198594+00 f t DESCUENTO 0.00 3 11447 \N +455810 2025-11-05 10:52:30.19967+00 2025-11-05 10:52:30.199677+00 f t TOTAL 0.00 4 11447 \N +455811 2025-11-05 10:52:30.200622+00 2025-11-05 10:52:30.200629+00 f t ADELANTO 0.00 5 11447 \N +455817 2025-11-05 11:24:06.229219+00 2025-11-05 11:24:06.229228+00 f t SUBTOTAL 0.00 1 11448 \N +455818 2025-11-05 11:24:06.230747+00 2025-11-05 11:24:06.230753+00 f t COSTO_SERVICIO 0.00 2 11448 \N +455819 2025-11-05 11:24:06.23179+00 2025-11-05 11:24:06.231795+00 f t DESCUENTO 0.00 3 11448 \N +455820 2025-11-05 11:24:06.23277+00 2025-11-05 11:24:06.232775+00 f t TOTAL 0.00 4 11448 \N +455821 2025-11-05 11:24:06.233952+00 2025-11-05 11:24:06.233957+00 f t ADELANTO 0.00 5 11448 \N +461127 2025-11-06 16:03:31.666195+00 2025-11-06 16:03:31.666201+00 f t SUBTOTAL 140000.00 1 11561 \N +461128 2025-11-06 16:03:31.667811+00 2025-11-06 16:03:31.667816+00 f t COSTO_SERVICIO 0.00 2 11561 \N +461129 2025-11-06 16:03:31.668865+00 2025-11-06 16:03:31.66887+00 f t DESCUENTO 9200.00 3 11561 \N +461130 2025-11-06 16:03:31.669931+00 2025-11-06 16:03:31.669937+00 f t TOTAL 130800.00 4 11561 \N +461131 2025-11-06 16:03:31.67093+00 2025-11-06 16:03:31.670936+00 f t ADELANTO 38000.00 5 11561 \N +471327 2025-11-09 00:35:27.209279+00 2025-11-09 00:35:27.209287+00 f t SUBTOTAL 78000.00 1 11800 \N +471328 2025-11-09 00:35:27.211089+00 2025-11-09 00:35:27.211096+00 f t COSTO_SERVICIO 0.00 2 11800 \N +471329 2025-11-09 00:35:27.21227+00 2025-11-09 00:35:27.212276+00 f t DESCUENTO 0.00 3 11800 \N +471330 2025-11-09 00:35:27.213339+00 2025-11-09 00:35:27.213345+00 f t TOTAL 78000.00 4 11800 \N +471331 2025-11-09 00:35:27.214449+00 2025-11-09 00:35:27.214454+00 f t ADELANTO 21500.00 5 11800 \N +472002 2025-11-09 03:55:31.007031+00 2025-11-09 03:55:31.007039+00 f t SUBTOTAL 55000.00 1 11810 \N +472003 2025-11-09 03:55:31.008669+00 2025-11-09 03:55:31.008678+00 f t COSTO_SERVICIO 0.00 2 11810 \N +472004 2025-11-09 03:55:31.009781+00 2025-11-09 03:55:31.009786+00 f t DESCUENTO 0.00 3 11810 \N +472005 2025-11-09 03:55:31.01081+00 2025-11-09 03:55:31.010817+00 f t TOTAL 55000.00 4 11810 \N +472006 2025-11-09 03:55:31.011853+00 2025-11-09 03:55:31.011858+00 f t ADELANTO 11000.00 5 11810 \N +461982 2025-11-06 18:41:21.117265+00 2025-11-06 18:41:21.117277+00 f t SUBTOTAL 78000.00 1 11581 \N +461983 2025-11-06 18:41:21.119389+00 2025-11-06 18:41:21.119399+00 f t COSTO_SERVICIO 0.00 2 11581 \N +461984 2025-11-06 18:41:21.120783+00 2025-11-06 18:41:21.120791+00 f t DESCUENTO 0.00 3 11581 \N +461985 2025-11-06 18:41:21.122055+00 2025-11-06 18:41:21.122063+00 f t TOTAL 78000.00 4 11581 \N +461986 2025-11-06 18:41:21.123464+00 2025-11-06 18:41:21.123472+00 f t ADELANTO 21500.00 5 11581 \N +472461 2025-11-09 13:24:40.411979+00 2025-11-09 13:24:40.411984+00 f t ADELANTO 0.00 5 11824 \N +455897 2025-11-05 11:30:37.052614+00 2025-11-05 11:30:37.052623+00 f t SUBTOTAL 0.00 1 11449 \N +455898 2025-11-05 11:30:37.054479+00 2025-11-05 11:30:37.054487+00 f t COSTO_SERVICIO 0.00 2 11449 \N +455899 2025-11-05 11:30:37.05562+00 2025-11-05 11:30:37.055625+00 f t DESCUENTO 0.00 3 11449 \N +455900 2025-11-05 11:30:37.057039+00 2025-11-05 11:30:37.057046+00 f t TOTAL 0.00 4 11449 \N +455901 2025-11-05 11:30:37.058379+00 2025-11-05 11:30:37.058386+00 f t ADELANTO 0.00 5 11449 \N +472547 2025-11-09 13:37:44.062695+00 2025-11-09 13:37:44.062705+00 f t SUBTOTAL 0.00 1 11826 \N +472548 2025-11-09 13:37:44.064399+00 2025-11-09 13:37:44.064409+00 f t COSTO_SERVICIO 0.00 2 11826 \N +472549 2025-11-09 13:37:44.065856+00 2025-11-09 13:37:44.065865+00 f t DESCUENTO 0.00 3 11826 \N +472550 2025-11-09 13:37:44.067118+00 2025-11-09 13:37:44.067126+00 f t TOTAL 0.00 4 11826 \N +466782 2025-11-07 22:41:50.798367+00 2025-11-07 22:41:50.798376+00 f t SUBTOTAL 30000.00 1 11705 \N +466783 2025-11-07 22:41:50.800489+00 2025-11-07 22:41:50.8005+00 f t COSTO_SERVICIO 0.00 2 11705 \N +466784 2025-11-07 22:41:50.801825+00 2025-11-07 22:41:50.801832+00 f t DESCUENTO 0.00 3 11705 \N +466785 2025-11-07 22:41:50.803041+00 2025-11-07 22:41:50.803049+00 f t TOTAL 30000.00 4 11705 \N +466786 2025-11-07 22:41:50.804219+00 2025-11-07 22:41:50.804225+00 f t ADELANTO 30000.00 5 11705 \N +456577 2025-11-05 14:39:10.679785+00 2025-11-05 14:39:10.679792+00 f t SUBTOTAL 138000.00 1 11464 \N +456578 2025-11-05 14:39:10.681431+00 2025-11-05 14:39:10.681441+00 f t COSTO_SERVICIO 0.00 2 11464 \N +456579 2025-11-05 14:39:10.682654+00 2025-11-05 14:39:10.682663+00 f t DESCUENTO 9200.00 3 11464 \N +456580 2025-11-05 14:39:10.683916+00 2025-11-05 14:39:10.683922+00 f t TOTAL 128800.00 4 11464 \N +456581 2025-11-05 14:39:10.685138+00 2025-11-05 14:39:10.685143+00 f t ADELANTO 33000.00 5 11464 \N +500037 2025-11-15 20:25:37.506286+00 2025-11-15 20:25:37.506295+00 f t SUBTOTAL 0.00 1 12474 \N +500038 2025-11-15 20:25:37.507779+00 2025-11-15 20:25:37.507787+00 f t COSTO_SERVICIO 0.00 2 12474 \N +500039 2025-11-15 20:25:37.50894+00 2025-11-15 20:25:37.508946+00 f t DESCUENTO 0.00 3 12474 \N +500040 2025-11-15 20:25:37.509923+00 2025-11-15 20:25:37.509929+00 f t TOTAL 0.00 4 12474 \N +500041 2025-11-15 20:25:37.510842+00 2025-11-15 20:25:37.51085+00 f t ADELANTO 0.00 5 12474 \N +489192 2025-11-13 03:00:46.063186+00 2025-11-13 03:00:46.063195+00 f t SUBTOTAL 0.00 1 12206 \N +468057 2025-11-08 02:26:33.91572+00 2025-11-08 02:26:33.915728+00 f t SUBTOTAL 115000.00 1 11723 \N +468058 2025-11-08 02:26:33.917679+00 2025-11-08 02:26:33.917686+00 f t COSTO_SERVICIO 0.00 2 11723 \N +468059 2025-11-08 02:26:33.919074+00 2025-11-08 02:26:33.919081+00 f t DESCUENTO 0.00 3 11723 \N +468060 2025-11-08 02:26:33.920303+00 2025-11-08 02:26:33.92031+00 f t TOTAL 115000.00 4 11723 \N +468061 2025-11-08 02:26:33.921419+00 2025-11-08 02:26:33.921424+00 f t ADELANTO 25000.00 5 11723 \N +478747 2025-11-10 21:30:29.901688+00 2025-11-10 21:30:29.901698+00 f t SUBTOTAL 0.00 1 11967 \N +478748 2025-11-10 21:30:29.903583+00 2025-11-10 21:30:29.903594+00 f t COSTO_SERVICIO 0.00 2 11967 \N +478749 2025-11-10 21:30:29.904869+00 2025-11-10 21:30:29.904877+00 f t DESCUENTO 0.00 3 11967 \N +478750 2025-11-10 21:30:29.906031+00 2025-11-10 21:30:29.906038+00 f t TOTAL 0.00 4 11967 \N +478751 2025-11-10 21:30:29.906918+00 2025-11-10 21:30:29.906922+00 f t ADELANTO 0.00 5 11967 \N +468382 2025-11-08 11:15:24.189447+00 2025-11-08 11:15:24.189455+00 f t SUBTOTAL 55000.00 1 11731 \N +468383 2025-11-08 11:15:24.191364+00 2025-11-08 11:15:24.191375+00 f t COSTO_SERVICIO 0.00 2 11731 \N +468384 2025-11-08 11:15:24.1928+00 2025-11-08 11:15:24.192809+00 f t DESCUENTO 0.00 3 11731 \N +468385 2025-11-08 11:15:24.194075+00 2025-11-08 11:15:24.194081+00 f t TOTAL 55000.00 4 11731 \N +468386 2025-11-08 11:15:24.195181+00 2025-11-08 11:15:24.195189+00 f t ADELANTO 11000.00 5 11731 \N +479162 2025-11-10 23:11:23.879327+00 2025-11-10 23:11:23.879335+00 f t SUBTOTAL 0.00 1 11977 \N +479163 2025-11-10 23:11:23.880776+00 2025-11-10 23:11:23.880782+00 f t COSTO_SERVICIO 0.00 2 11977 \N +479164 2025-11-10 23:11:23.881844+00 2025-11-10 23:11:23.88185+00 f t DESCUENTO 0.00 3 11977 \N +479165 2025-11-10 23:11:23.882657+00 2025-11-10 23:11:23.882663+00 f t TOTAL 0.00 4 11977 \N +479166 2025-11-10 23:11:23.883466+00 2025-11-10 23:11:23.883471+00 f t ADELANTO 0.00 5 11977 \N +469717 2025-11-08 15:38:47.702034+00 2025-11-08 15:38:47.702047+00 f t SUBTOTAL 0.00 1 11755 \N +469718 2025-11-08 15:38:47.704125+00 2025-11-08 15:38:47.704132+00 f t COSTO_SERVICIO 0.00 2 11755 \N +469719 2025-11-08 15:38:47.705305+00 2025-11-08 15:38:47.705311+00 f t DESCUENTO 0.00 3 11755 \N +469720 2025-11-08 15:38:47.706374+00 2025-11-08 15:38:47.706379+00 f t TOTAL 0.00 4 11755 \N +469721 2025-11-08 15:38:47.70761+00 2025-11-08 15:38:47.707615+00 f t ADELANTO 0.00 5 11755 \N +459947 2025-11-06 10:20:27.282513+00 2025-11-06 10:20:27.282523+00 f t SUBTOTAL 0.00 1 11533 \N +459948 2025-11-06 10:20:27.284474+00 2025-11-06 10:20:27.284483+00 f t COSTO_SERVICIO 0.00 2 11533 \N +459949 2025-11-06 10:20:27.285728+00 2025-11-06 10:20:27.285741+00 f t DESCUENTO 0.00 3 11533 \N +459950 2025-11-06 10:20:27.286898+00 2025-11-06 10:20:27.286904+00 f t TOTAL 0.00 4 11533 \N +459951 2025-11-06 10:20:27.288043+00 2025-11-06 10:20:27.288048+00 f t ADELANTO 0.00 5 11533 \N +470372 2025-11-08 17:47:59.545918+00 2025-11-08 17:47:59.545926+00 f t SUBTOTAL 30000.00 1 11768 \N +470373 2025-11-08 17:47:59.547933+00 2025-11-08 17:47:59.547938+00 f t COSTO_SERVICIO 0.00 2 11768 \N +470374 2025-11-08 17:47:59.549049+00 2025-11-08 17:47:59.549054+00 f t DESCUENTO 0.00 3 11768 \N +470375 2025-11-08 17:47:59.550004+00 2025-11-08 17:47:59.550009+00 f t TOTAL 30000.00 4 11768 \N +470376 2025-11-08 17:47:59.550884+00 2025-11-08 17:47:59.550889+00 f t ADELANTO 30000.00 5 11768 \N +470727 2025-11-08 19:12:19.631264+00 2025-11-08 19:12:19.631272+00 f t SUBTOTAL 46000.00 1 11780 \N +470728 2025-11-08 19:12:19.632948+00 2025-11-08 19:12:19.632954+00 f t COSTO_SERVICIO 0.00 2 11780 \N +470729 2025-11-08 19:12:19.63425+00 2025-11-08 19:12:19.634255+00 f t DESCUENTO 0.00 3 11780 \N +470730 2025-11-08 19:12:19.635322+00 2025-11-08 19:12:19.635327+00 f t TOTAL 46000.00 4 11780 \N +470731 2025-11-08 19:12:19.636329+00 2025-11-08 19:12:19.636334+00 f t ADELANTO 11000.00 5 11780 \N +460747 2025-11-06 13:12:54.608814+00 2025-11-06 13:12:54.608825+00 f t SUBTOTAL 80000.00 1 11548 \N +460748 2025-11-06 13:12:54.610952+00 2025-11-06 13:12:54.61096+00 f t COSTO_SERVICIO 0.00 2 11548 \N +460749 2025-11-06 13:12:54.612444+00 2025-11-06 13:12:54.612452+00 f t DESCUENTO 0.00 3 11548 \N +460750 2025-11-06 13:12:54.613855+00 2025-11-06 13:12:54.613863+00 f t TOTAL 80000.00 4 11548 \N +460751 2025-11-06 13:12:54.615174+00 2025-11-06 13:12:54.615181+00 f t ADELANTO 12000.00 5 11548 \N +472012 2025-11-09 03:56:00.827011+00 2025-11-09 03:56:00.82702+00 f t SUBTOTAL 0.00 1 11812 \N +472013 2025-11-09 03:56:00.828331+00 2025-11-09 03:56:00.828337+00 f t COSTO_SERVICIO 0.00 2 11812 \N +472014 2025-11-09 03:56:00.829237+00 2025-11-09 03:56:00.829244+00 f t DESCUENTO 0.00 3 11812 \N +472015 2025-11-09 03:56:00.830345+00 2025-11-09 03:56:00.830349+00 f t TOTAL 0.00 4 11812 \N +472016 2025-11-09 03:56:00.83135+00 2025-11-09 03:56:00.831355+00 f t ADELANTO 0.00 5 11812 \N +472551 2025-11-09 13:37:44.06834+00 2025-11-09 13:37:44.068348+00 f t ADELANTO 0.00 5 11826 \N +462273 2025-11-06 20:33:42.212652+00 2025-11-06 20:33:42.212662+00 f t COSTO_SERVICIO 0.00 2 11590 \N +462274 2025-11-06 20:33:42.214097+00 2025-11-06 20:33:42.214105+00 f t DESCUENTO 0.00 3 11590 \N +462275 2025-11-06 20:33:42.215354+00 2025-11-06 20:33:42.215362+00 f t TOTAL 46000.00 4 11590 \N +462276 2025-11-06 20:33:42.21738+00 2025-11-06 20:33:42.217388+00 f t ADELANTO 11000.00 5 11590 \N +462303 2025-11-06 21:04:32.290359+00 2025-11-06 21:04:32.290365+00 f t COSTO_SERVICIO 0.00 2 11589 \N +462304 2025-11-06 21:04:32.29173+00 2025-11-06 21:04:32.291735+00 f t DESCUENTO 0.00 3 11589 \N +462305 2025-11-06 21:04:32.292743+00 2025-11-06 21:04:32.292748+00 f t TOTAL 53700.00 4 11589 \N +462306 2025-11-06 21:04:32.293757+00 2025-11-06 21:04:32.293762+00 f t ADELANTO 13200.00 5 11589 \N +462347 2025-11-06 21:08:00.290803+00 2025-11-06 21:08:00.290811+00 f t SUBTOTAL 70000.00 1 11595 \N +462348 2025-11-06 21:08:00.292488+00 2025-11-06 21:08:00.292494+00 f t COSTO_SERVICIO 0.00 2 11595 \N +462349 2025-11-06 21:08:00.293641+00 2025-11-06 21:08:00.293647+00 f t DESCUENTO 0.00 3 11595 \N +462350 2025-11-06 21:08:00.294841+00 2025-11-06 21:08:00.294847+00 f t TOTAL 70000.00 4 11595 \N +462351 2025-11-06 21:08:00.295935+00 2025-11-06 21:08:00.295941+00 f t ADELANTO 19000.00 5 11595 \N +462362 2025-11-06 21:08:51.208986+00 2025-11-06 21:08:51.208997+00 f t SUBTOTAL 13200.00 1 11596 \N +462363 2025-11-06 21:08:51.210699+00 2025-11-06 21:08:51.210707+00 f t COSTO_SERVICIO 0.00 2 11596 \N +462364 2025-11-06 21:08:51.211873+00 2025-11-06 21:08:51.21188+00 f t DESCUENTO 0.00 3 11596 \N +462365 2025-11-06 21:08:51.212777+00 2025-11-06 21:08:51.212783+00 f t TOTAL 13200.00 4 11596 \N +462366 2025-11-06 21:08:51.213688+00 2025-11-06 21:08:51.213693+00 f t ADELANTO 13200.00 5 11596 \N +478087 2025-11-10 20:15:52.580118+00 2025-11-10 20:15:52.580125+00 f t SUBTOTAL 0.00 1 11950 \N +478088 2025-11-10 20:15:52.581646+00 2025-11-10 20:15:52.581651+00 f t COSTO_SERVICIO 0.00 2 11950 \N +478089 2025-11-10 20:15:52.582609+00 2025-11-10 20:15:52.582614+00 f t DESCUENTO 0.00 3 11950 \N +478090 2025-11-10 20:15:52.583505+00 2025-11-10 20:15:52.583509+00 f t TOTAL 0.00 4 11950 \N +478091 2025-11-10 20:15:52.584353+00 2025-11-10 20:15:52.584357+00 f t ADELANTO 0.00 5 11950 \N +467222 2025-11-08 00:51:12.410654+00 2025-11-08 00:51:12.410661+00 f t SUBTOTAL 55000.00 1 11715 \N +467223 2025-11-08 00:51:12.41237+00 2025-11-08 00:51:12.412376+00 f t COSTO_SERVICIO 0.00 2 11715 \N +467224 2025-11-08 00:51:12.413562+00 2025-11-08 00:51:12.413569+00 f t DESCUENTO 0.00 3 11715 \N +467225 2025-11-08 00:51:12.414675+00 2025-11-08 00:51:12.414681+00 f t TOTAL 55000.00 4 11715 \N +462382 2025-11-06 21:11:15.272392+00 2025-11-06 21:11:15.272399+00 f t SUBTOTAL 156000.00 1 11594 \N +462383 2025-11-06 21:11:15.273906+00 2025-11-06 21:11:15.273912+00 f t COSTO_SERVICIO 0.00 2 11594 \N +462384 2025-11-06 21:11:15.274867+00 2025-11-06 21:11:15.274872+00 f t DESCUENTO 9200.00 3 11594 \N +462385 2025-11-06 21:11:15.275905+00 2025-11-06 21:11:15.27591+00 f t TOTAL 146800.00 4 11594 \N +462386 2025-11-06 21:11:15.276743+00 2025-11-06 21:11:15.276747+00 f t ADELANTO 43000.00 5 11594 \N +467226 2025-11-08 00:51:12.415804+00 2025-11-08 00:51:12.41581+00 f t ADELANTO 11000.00 5 11715 \N +462397 2025-11-06 21:24:19.11476+00 2025-11-06 21:24:19.114767+00 f t SUBTOTAL 23000.00 1 11597 \N +462398 2025-11-06 21:24:19.116446+00 2025-11-06 21:24:19.116452+00 f t COSTO_SERVICIO 0.00 2 11597 \N +462399 2025-11-06 21:24:19.117661+00 2025-11-06 21:24:19.117667+00 f t DESCUENTO 0.00 3 11597 \N +462400 2025-11-06 21:24:19.118648+00 2025-11-06 21:24:19.118653+00 f t TOTAL 23000.00 4 11597 \N +462401 2025-11-06 21:24:19.119543+00 2025-11-06 21:24:19.119548+00 f t ADELANTO 5500.00 5 11597 \N +462412 2025-11-06 21:27:21.589027+00 2025-11-06 21:27:21.589037+00 f t SUBTOTAL 78000.00 1 11598 \N +462413 2025-11-06 21:27:21.590649+00 2025-11-06 21:27:21.590658+00 f t COSTO_SERVICIO 0.00 2 11598 \N +462414 2025-11-06 21:27:21.591833+00 2025-11-06 21:27:21.591842+00 f t DESCUENTO 0.00 3 11598 \N +462415 2025-11-06 21:27:21.593087+00 2025-11-06 21:27:21.593095+00 f t TOTAL 78000.00 4 11598 \N +462416 2025-11-06 21:27:21.594437+00 2025-11-06 21:27:21.594445+00 f t ADELANTO 13000.00 5 11598 \N +462442 2025-11-06 21:30:09.98722+00 2025-11-06 21:30:09.987229+00 f t SUBTOTAL 46000.00 1 11599 \N +462443 2025-11-06 21:30:09.989064+00 2025-11-06 21:30:09.989071+00 f t COSTO_SERVICIO 0.00 2 11599 \N +462444 2025-11-06 21:30:09.99054+00 2025-11-06 21:30:09.990546+00 f t DESCUENTO 0.00 3 11599 \N +462445 2025-11-06 21:30:09.991987+00 2025-11-06 21:30:09.991995+00 f t TOTAL 46000.00 4 11599 \N +462446 2025-11-06 21:30:09.993475+00 2025-11-06 21:30:09.993482+00 f t ADELANTO 11000.00 5 11599 \N +462452 2025-11-06 21:38:25.375992+00 2025-11-06 21:38:25.376001+00 f t SUBTOTAL 0.00 1 11600 \N +462453 2025-11-06 21:38:25.37731+00 2025-11-06 21:38:25.377317+00 f t COSTO_SERVICIO 0.00 2 11600 \N +462454 2025-11-06 21:38:25.378285+00 2025-11-06 21:38:25.378291+00 f t DESCUENTO 0.00 3 11600 \N +462455 2025-11-06 21:38:25.379545+00 2025-11-06 21:38:25.379551+00 f t TOTAL 0.00 4 11600 \N +462456 2025-11-06 21:38:25.380619+00 2025-11-06 21:38:25.380624+00 f t ADELANTO 0.00 5 11600 \N +462462 2025-11-06 22:17:52.29755+00 2025-11-06 22:17:52.297559+00 f t SUBTOTAL 0.00 1 11601 \N +462463 2025-11-06 22:17:52.29881+00 2025-11-06 22:17:52.298816+00 f t COSTO_SERVICIO 0.00 2 11601 \N +462464 2025-11-06 22:17:52.299859+00 2025-11-06 22:17:52.299865+00 f t DESCUENTO 0.00 3 11601 \N +462465 2025-11-06 22:17:52.300987+00 2025-11-06 22:17:52.300993+00 f t TOTAL 0.00 4 11601 \N +462466 2025-11-06 22:17:52.302002+00 2025-11-06 22:17:52.302008+00 f t ADELANTO 0.00 5 11601 \N +462507 2025-11-06 22:41:43.698138+00 2025-11-06 22:41:43.698145+00 f t SUBTOTAL 78000.00 1 11602 \N +462508 2025-11-06 22:41:43.69992+00 2025-11-06 22:41:43.699927+00 f t COSTO_SERVICIO 0.00 2 11602 \N +462509 2025-11-06 22:41:43.701082+00 2025-11-06 22:41:43.701088+00 f t DESCUENTO 0.00 3 11602 \N +462510 2025-11-06 22:41:43.702322+00 2025-11-06 22:41:43.702331+00 f t TOTAL 78000.00 4 11602 \N +462511 2025-11-06 22:41:43.703824+00 2025-11-06 22:41:43.703833+00 f t ADELANTO 21500.00 5 11602 \N +469997 2025-11-08 16:06:32.674072+00 2025-11-08 16:06:32.674081+00 f t SUBTOTAL 78000.00 1 11761 \N +469998 2025-11-08 16:06:32.67602+00 2025-11-08 16:06:32.676026+00 f t COSTO_SERVICIO 0.00 2 11761 \N +469999 2025-11-08 16:06:32.677377+00 2025-11-08 16:06:32.677383+00 f t DESCUENTO 0.00 3 11761 \N +470000 2025-11-08 16:06:32.678606+00 2025-11-08 16:06:32.678611+00 f t TOTAL 78000.00 4 11761 \N +470001 2025-11-08 16:06:32.679834+00 2025-11-08 16:06:32.67984+00 f t ADELANTO 21500.00 5 11761 \N +470377 2025-11-08 18:03:30.756425+00 2025-11-08 18:03:30.756432+00 f t SUBTOTAL 85000.00 1 11734 \N +470378 2025-11-08 18:03:30.761452+00 2025-11-08 18:03:30.76146+00 f t COSTO_SERVICIO 0.00 2 11734 \N +470379 2025-11-08 18:03:30.763563+00 2025-11-08 18:03:30.763571+00 f t DESCUENTO 0.00 3 11734 \N +470380 2025-11-08 18:03:30.765177+00 2025-11-08 18:03:30.765185+00 f t TOTAL 85000.00 4 11734 \N +470381 2025-11-08 18:03:30.766496+00 2025-11-08 18:03:30.766502+00 f t ADELANTO 15000.00 5 11734 \N +470612 2025-11-08 18:39:59.497947+00 2025-11-08 18:39:59.497954+00 f t SUBTOTAL 55000.00 1 11776 \N +470613 2025-11-08 18:39:59.499787+00 2025-11-08 18:39:59.499793+00 f t COSTO_SERVICIO 0.00 2 11776 \N +470614 2025-11-08 18:39:59.500948+00 2025-11-08 18:39:59.500954+00 f t DESCUENTO 0.00 3 11776 \N +470615 2025-11-08 18:39:59.502065+00 2025-11-08 18:39:59.50207+00 f t TOTAL 55000.00 4 11776 \N +470616 2025-11-08 18:39:59.503121+00 2025-11-08 18:39:59.503146+00 f t ADELANTO 11000.00 5 11776 \N +471222 2025-11-09 00:13:14.387479+00 2025-11-09 00:13:14.387486+00 f t SUBTOTAL 70000.00 1 11797 \N +471223 2025-11-09 00:13:14.389432+00 2025-11-09 00:13:14.389438+00 f t COSTO_SERVICIO 0.00 2 11797 \N +471224 2025-11-09 00:13:14.390822+00 2025-11-09 00:13:14.39083+00 f t DESCUENTO 0.00 3 11797 \N +471225 2025-11-09 00:13:14.39233+00 2025-11-09 00:13:14.392339+00 f t TOTAL 70000.00 4 11797 \N +471226 2025-11-09 00:13:14.393498+00 2025-11-09 00:13:14.393503+00 f t ADELANTO 19000.00 5 11797 \N +472022 2025-11-09 04:07:16.636776+00 2025-11-09 04:07:16.636788+00 f t SUBTOTAL 0.00 1 11813 \N +472023 2025-11-09 04:07:16.638461+00 2025-11-09 04:07:16.63847+00 f t COSTO_SERVICIO 0.00 2 11813 \N +472024 2025-11-09 04:07:16.639762+00 2025-11-09 04:07:16.639771+00 f t DESCUENTO 0.00 3 11813 \N +472025 2025-11-09 04:07:16.640898+00 2025-11-09 04:07:16.640906+00 f t TOTAL 0.00 4 11813 \N +472026 2025-11-09 04:07:16.641974+00 2025-11-09 04:07:16.641982+00 f t ADELANTO 0.00 5 11813 \N +472347 2025-11-09 06:27:40.95815+00 2025-11-09 06:27:40.958158+00 f t SUBTOTAL 54000.00 1 11818 \N +472348 2025-11-09 06:27:40.959968+00 2025-11-09 06:27:40.959975+00 f t COSTO_SERVICIO 0.00 2 11818 \N +472349 2025-11-09 06:27:40.961162+00 2025-11-09 06:27:40.961169+00 f t DESCUENTO 0.00 3 11818 \N +472350 2025-11-09 06:27:40.96253+00 2025-11-09 06:27:40.962538+00 f t TOTAL 54000.00 4 11818 \N +472351 2025-11-09 06:27:40.963817+00 2025-11-09 06:27:40.963824+00 f t ADELANTO 13500.00 5 11818 \N +489193 2025-11-13 03:00:46.064818+00 2025-11-13 03:00:46.064829+00 f t COSTO_SERVICIO 0.00 2 12206 \N +489194 2025-11-13 03:00:46.066476+00 2025-11-13 03:00:46.066485+00 f t DESCUENTO 0.00 3 12206 \N +489195 2025-11-13 03:00:46.067893+00 2025-11-13 03:00:46.067901+00 f t TOTAL 0.00 4 12206 \N +489196 2025-11-13 03:00:46.069087+00 2025-11-13 03:00:46.069095+00 f t ADELANTO 0.00 5 12206 \N +478322 2025-11-10 20:42:21.497828+00 2025-11-10 20:42:21.497834+00 f t SUBTOTAL 85000.00 1 11957 \N +478323 2025-11-10 20:42:21.499514+00 2025-11-10 20:42:21.499521+00 f t COSTO_SERVICIO 0.00 2 11957 \N +478324 2025-11-10 20:42:21.500544+00 2025-11-10 20:42:21.500549+00 f t DESCUENTO 0.00 3 11957 \N +478325 2025-11-10 20:42:21.501519+00 2025-11-10 20:42:21.501524+00 f t TOTAL 85000.00 4 11957 \N +478326 2025-11-10 20:42:21.502389+00 2025-11-10 20:42:21.502393+00 f t ADELANTO 15000.00 5 11957 \N +478967 2025-11-10 22:02:35.264138+00 2025-11-10 22:02:35.264145+00 f t SUBTOTAL 78000.00 1 11972 \N +478968 2025-11-10 22:02:35.26591+00 2025-11-10 22:02:35.265918+00 f t COSTO_SERVICIO 0.00 2 11972 \N +478969 2025-11-10 22:02:35.267168+00 2025-11-10 22:02:35.267173+00 f t DESCUENTO 0.00 3 11972 \N +478970 2025-11-10 22:02:35.268136+00 2025-11-10 22:02:35.268141+00 f t TOTAL 78000.00 4 11972 \N +478971 2025-11-10 22:02:35.269046+00 2025-11-10 22:02:35.269051+00 f t ADELANTO 21500.00 5 11972 \N +468557 2025-11-08 13:04:15.207236+00 2025-11-08 13:04:15.207252+00 f t SUBTOTAL 0.00 1 11736 \N +468558 2025-11-08 13:04:15.208567+00 2025-11-08 13:04:15.208573+00 f t COSTO_SERVICIO 0.00 2 11736 \N +468559 2025-11-08 13:04:15.209852+00 2025-11-08 13:04:15.209857+00 f t DESCUENTO 0.00 3 11736 \N +468560 2025-11-08 13:04:15.210871+00 2025-11-08 13:04:15.210875+00 f t TOTAL 0.00 4 11736 \N +468561 2025-11-08 13:04:15.211921+00 2025-11-08 13:04:15.211927+00 f t ADELANTO 0.00 5 11736 \N +462722 2025-11-06 22:55:40.425742+00 2025-11-06 22:55:40.425749+00 f t SUBTOTAL 46000.00 1 11603 \N +462723 2025-11-06 22:55:40.427279+00 2025-11-06 22:55:40.427285+00 f t COSTO_SERVICIO 0.00 2 11603 \N +462724 2025-11-06 22:55:40.42841+00 2025-11-06 22:55:40.428415+00 f t DESCUENTO 0.00 3 11603 \N +462725 2025-11-06 22:55:40.42934+00 2025-11-06 22:55:40.429345+00 f t TOTAL 46000.00 4 11603 \N +462726 2025-11-06 22:55:40.430206+00 2025-11-06 22:55:40.430211+00 f t ADELANTO 11000.00 5 11603 \N +469867 2025-11-08 15:53:27.264695+00 2025-11-08 15:53:27.264703+00 f t SUBTOTAL 54000.00 1 11758 \N +469868 2025-11-08 15:53:27.266684+00 2025-11-08 15:53:27.266692+00 f t COSTO_SERVICIO 0.00 2 11758 \N +469869 2025-11-08 15:53:27.268414+00 2025-11-08 15:53:27.268421+00 f t DESCUENTO 0.00 3 11758 \N +469870 2025-11-08 15:53:27.269814+00 2025-11-08 15:53:27.26982+00 f t TOTAL 54000.00 4 11758 \N +469871 2025-11-08 15:53:27.271174+00 2025-11-08 15:53:27.27118+00 f t ADELANTO 13500.00 5 11758 \N +481117 2025-11-11 13:46:26.859706+00 2025-11-11 13:46:26.859718+00 f t SUBTOTAL 0.00 1 12016 \N +481118 2025-11-11 13:46:26.86504+00 2025-11-11 13:46:26.865049+00 f t COSTO_SERVICIO 0.00 2 12016 \N +481119 2025-11-11 13:46:26.866556+00 2025-11-11 13:46:26.866563+00 f t DESCUENTO 0.00 3 12016 \N +481120 2025-11-11 13:46:26.867779+00 2025-11-11 13:46:26.867785+00 f t TOTAL 0.00 4 12016 \N +481121 2025-11-11 13:46:26.86889+00 2025-11-11 13:46:26.868895+00 f t ADELANTO 0.00 5 12016 \N +481267 2025-11-11 14:33:39.174986+00 2025-11-11 14:33:39.174993+00 f t SUBTOTAL 78000.00 1 12023 \N +481268 2025-11-11 14:33:39.176726+00 2025-11-11 14:33:39.176732+00 f t COSTO_SERVICIO 0.00 2 12023 \N +481269 2025-11-11 14:33:39.177762+00 2025-11-11 14:33:39.177767+00 f t DESCUENTO 0.00 3 12023 \N +481270 2025-11-11 14:33:39.178694+00 2025-11-11 14:33:39.178699+00 f t TOTAL 78000.00 4 12023 \N +481271 2025-11-11 14:33:39.179681+00 2025-11-11 14:33:39.179686+00 f t ADELANTO 21500.00 5 12023 \N +462802 2025-11-06 23:12:10.932933+00 2025-11-06 23:12:10.932941+00 f t SUBTOTAL 46000.00 1 11604 \N +462803 2025-11-06 23:12:10.935348+00 2025-11-06 23:12:10.935356+00 f t COSTO_SERVICIO 0.00 2 11604 \N +462804 2025-11-06 23:12:10.93789+00 2025-11-06 23:12:10.937898+00 f t DESCUENTO 0.00 3 11604 \N +462805 2025-11-06 23:12:10.940923+00 2025-11-06 23:12:10.940931+00 f t TOTAL 46000.00 4 11604 \N +462806 2025-11-06 23:12:10.942278+00 2025-11-06 23:12:10.942284+00 f t ADELANTO 11000.00 5 11604 \N +470622 2025-11-08 19:00:14.421605+00 2025-11-08 19:00:14.421617+00 f t SUBTOTAL 0.00 1 11777 \N +470623 2025-11-08 19:00:14.423809+00 2025-11-08 19:00:14.423819+00 f t COSTO_SERVICIO 0.00 2 11777 \N +470624 2025-11-08 19:00:14.42594+00 2025-11-08 19:00:14.425951+00 f t DESCUENTO 0.00 3 11777 \N +470625 2025-11-08 19:00:14.427792+00 2025-11-08 19:00:14.4278+00 f t TOTAL 0.00 4 11777 \N +470626 2025-11-08 19:00:14.429555+00 2025-11-08 19:00:14.429563+00 f t ADELANTO 0.00 5 11777 \N +470987 2025-11-08 21:12:52.98832+00 2025-11-08 21:12:52.988332+00 f t SUBTOTAL 0.00 1 11790 \N +470988 2025-11-08 21:12:52.990467+00 2025-11-08 21:12:52.990478+00 f t COSTO_SERVICIO 0.00 2 11790 \N +470989 2025-11-08 21:12:52.991806+00 2025-11-08 21:12:52.991815+00 f t DESCUENTO 0.00 3 11790 \N +470990 2025-11-08 21:12:52.993193+00 2025-11-08 21:12:52.993201+00 f t TOTAL 0.00 4 11790 \N +470991 2025-11-08 21:12:52.994459+00 2025-11-08 21:12:52.994467+00 f t ADELANTO 0.00 5 11790 \N +482507 2025-11-11 19:21:19.977843+00 2025-11-11 19:21:19.977852+00 f t SUBTOTAL 54000.00 1 12046 \N +482508 2025-11-11 19:21:19.979442+00 2025-11-11 19:21:19.979448+00 f t COSTO_SERVICIO 0.00 2 12046 \N +482509 2025-11-11 19:21:19.980426+00 2025-11-11 19:21:19.980431+00 f t DESCUENTO 0.00 3 12046 \N +482510 2025-11-11 19:21:19.981372+00 2025-11-11 19:21:19.981379+00 f t TOTAL 54000.00 4 12046 \N +482511 2025-11-11 19:21:19.982236+00 2025-11-11 19:21:19.982241+00 f t ADELANTO 13500.00 5 12046 \N +482992 2025-11-11 21:20:18.317715+00 2025-11-11 21:20:18.317721+00 f t SUBTOTAL 13200.00 1 12061 \N +482993 2025-11-11 21:20:18.319691+00 2025-11-11 21:20:18.3197+00 f t COSTO_SERVICIO 0.00 2 12061 \N +482994 2025-11-11 21:20:18.321217+00 2025-11-11 21:20:18.321226+00 f t DESCUENTO 0.00 3 12061 \N +482995 2025-11-11 21:20:18.322675+00 2025-11-11 21:20:18.322684+00 f t TOTAL 13200.00 4 12061 \N +482996 2025-11-11 21:20:18.324046+00 2025-11-11 21:20:18.324054+00 f t ADELANTO 13200.00 5 12061 \N +472622 2025-11-09 13:44:08.351325+00 2025-11-09 13:44:08.351338+00 f t SUBTOTAL 55000.00 1 11825 \N +472623 2025-11-09 13:44:08.355866+00 2025-11-09 13:44:08.355879+00 f t COSTO_SERVICIO 0.00 2 11825 \N +472624 2025-11-09 13:44:08.358045+00 2025-11-09 13:44:08.358061+00 f t DESCUENTO 0.00 3 11825 \N +472625 2025-11-09 13:44:08.359913+00 2025-11-09 13:44:08.359921+00 f t TOTAL 55000.00 4 11825 \N +472626 2025-11-09 13:44:08.361743+00 2025-11-09 13:44:08.361753+00 f t ADELANTO 11000.00 5 11825 \N +483852 2025-11-12 00:01:38.609916+00 2025-11-12 00:01:38.609924+00 f t SUBTOTAL 75000.00 1 12085 \N +483853 2025-11-12 00:01:38.612132+00 2025-11-12 00:01:38.61214+00 f t COSTO_SERVICIO 0.00 2 12085 \N +483854 2025-11-12 00:01:38.613758+00 2025-11-12 00:01:38.613767+00 f t DESCUENTO 0.00 3 12085 \N +483855 2025-11-12 00:01:38.615302+00 2025-11-12 00:01:38.615308+00 f t TOTAL 75000.00 4 12085 \N +483856 2025-11-12 00:01:38.616924+00 2025-11-12 00:01:38.61693+00 f t ADELANTO 16500.00 5 12085 \N +462937 2025-11-06 23:34:21.573813+00 2025-11-06 23:34:21.57382+00 f t SUBTOTAL 125200.00 1 11606 \N +462938 2025-11-06 23:34:21.575551+00 2025-11-06 23:34:21.575556+00 f t COSTO_SERVICIO 0.00 2 11606 \N +462939 2025-11-06 23:34:21.576542+00 2025-11-06 23:34:21.576546+00 f t DESCUENTO 0.00 3 11606 \N +462940 2025-11-06 23:34:21.577498+00 2025-11-06 23:34:21.577503+00 f t TOTAL 125200.00 4 11606 \N +462941 2025-11-06 23:34:21.578664+00 2025-11-06 23:34:21.57867+00 f t ADELANTO 68700.00 5 11606 \N +500047 2025-11-15 20:49:45.920705+00 2025-11-15 20:49:45.920713+00 f t SUBTOTAL 0.00 1 12475 \N +500048 2025-11-15 20:49:45.92248+00 2025-11-15 20:49:45.92249+00 f t COSTO_SERVICIO 0.00 2 12475 \N +488952 2025-11-13 00:58:18.331196+00 2025-11-13 00:58:18.331206+00 f t SUBTOTAL 125200.00 1 12201 \N +488953 2025-11-13 00:58:18.332424+00 2025-11-13 00:58:18.332432+00 f t COSTO_SERVICIO 0.00 2 12201 \N +488954 2025-11-13 00:58:18.33331+00 2025-11-13 00:58:18.333319+00 f t DESCUENTO 0.00 3 12201 \N +488955 2025-11-13 00:58:18.334064+00 2025-11-13 00:58:18.334071+00 f t TOTAL 125200.00 4 12201 \N +488956 2025-11-13 00:58:18.334791+00 2025-11-13 00:58:18.334796+00 f t ADELANTO 68700.00 5 12201 \N +462957 2025-11-06 23:42:06.832489+00 2025-11-06 23:42:06.832499+00 f t SUBTOTAL 0.00 1 11607 \N +462958 2025-11-06 23:42:06.834336+00 2025-11-06 23:42:06.834343+00 f t COSTO_SERVICIO 0.00 2 11607 \N +462959 2025-11-06 23:42:06.835534+00 2025-11-06 23:42:06.835541+00 f t DESCUENTO 0.00 3 11607 \N +462960 2025-11-06 23:42:06.837276+00 2025-11-06 23:42:06.837282+00 f t TOTAL 0.00 4 11607 \N +462961 2025-11-06 23:42:06.838408+00 2025-11-06 23:42:06.838412+00 f t ADELANTO 0.00 5 11607 \N +462967 2025-11-06 23:59:42.769838+00 2025-11-06 23:59:42.769846+00 f t SUBTOTAL 0.00 1 11608 \N +462968 2025-11-06 23:59:42.77154+00 2025-11-06 23:59:42.771547+00 f t COSTO_SERVICIO 0.00 2 11608 \N +462969 2025-11-06 23:59:42.773306+00 2025-11-06 23:59:42.773313+00 f t DESCUENTO 0.00 3 11608 \N +462970 2025-11-06 23:59:42.774359+00 2025-11-06 23:59:42.774365+00 f t TOTAL 0.00 4 11608 \N +462971 2025-11-06 23:59:42.775565+00 2025-11-06 23:59:42.775571+00 f t ADELANTO 0.00 5 11608 \N +462977 2025-11-07 00:00:17.705683+00 2025-11-07 00:00:17.705697+00 f t SUBTOTAL 0.00 1 11609 \N +462978 2025-11-07 00:00:17.708188+00 2025-11-07 00:00:17.7082+00 f t COSTO_SERVICIO 0.00 2 11609 \N +462979 2025-11-07 00:00:17.710284+00 2025-11-07 00:00:17.710296+00 f t DESCUENTO 0.00 3 11609 \N +462980 2025-11-07 00:00:17.712452+00 2025-11-07 00:00:17.712464+00 f t TOTAL 0.00 4 11609 \N +462981 2025-11-07 00:00:17.714552+00 2025-11-07 00:00:17.714564+00 f t ADELANTO 0.00 5 11609 \N +462982 2025-11-07 00:39:22.336256+00 2025-11-07 00:39:22.336266+00 f t SUBTOTAL 32500.00 1 11605 \N +462983 2025-11-07 00:39:22.338479+00 2025-11-07 00:39:22.338489+00 f t COSTO_SERVICIO 0.00 2 11605 \N +462984 2025-11-07 00:39:22.339883+00 2025-11-07 00:39:22.339891+00 f t DESCUENTO 0.00 3 11605 \N +462985 2025-11-07 00:39:22.341103+00 2025-11-07 00:39:22.341111+00 f t TOTAL 32500.00 4 11605 \N +462986 2025-11-07 00:39:22.342242+00 2025-11-07 00:39:22.34225+00 f t ADELANTO 32500.00 5 11605 \N +478537 2025-11-10 21:11:31.049533+00 2025-11-10 21:11:31.049543+00 f t SUBTOTAL 54000.00 1 11961 \N +478538 2025-11-10 21:11:31.051422+00 2025-11-10 21:11:31.05143+00 f t COSTO_SERVICIO 0.00 2 11961 \N +478539 2025-11-10 21:11:31.052839+00 2025-11-10 21:11:31.052845+00 f t DESCUENTO 0.00 3 11961 \N +478540 2025-11-10 21:11:31.05415+00 2025-11-10 21:11:31.054156+00 f t TOTAL 54000.00 4 11961 \N +478541 2025-11-10 21:11:31.055217+00 2025-11-10 21:11:31.055222+00 f t ADELANTO 13500.00 5 11961 \N +463032 2025-11-07 00:56:11.342972+00 2025-11-07 00:56:11.342979+00 f t SUBTOTAL 121000.00 1 11610 \N +463033 2025-11-07 00:56:11.344537+00 2025-11-07 00:56:11.344542+00 f t COSTO_SERVICIO 0.00 2 11610 \N +463034 2025-11-07 00:56:11.345544+00 2025-11-07 00:56:11.345549+00 f t DESCUENTO 0.00 3 11610 \N +463035 2025-11-07 00:56:11.346621+00 2025-11-07 00:56:11.346626+00 f t TOTAL 121000.00 4 11610 \N +463036 2025-11-07 00:56:11.347624+00 2025-11-07 00:56:11.34763+00 f t ADELANTO 26000.00 5 11610 \N +463042 2025-11-07 01:15:56.726552+00 2025-11-07 01:15:56.726564+00 f t SUBTOTAL 0.00 1 11611 \N +463043 2025-11-07 01:15:56.72822+00 2025-11-07 01:15:56.72823+00 f t COSTO_SERVICIO 0.00 2 11611 \N +463044 2025-11-07 01:15:56.729731+00 2025-11-07 01:15:56.729739+00 f t DESCUENTO 0.00 3 11611 \N +463045 2025-11-07 01:15:56.730947+00 2025-11-07 01:15:56.730956+00 f t TOTAL 0.00 4 11611 \N +463046 2025-11-07 01:15:56.732269+00 2025-11-07 01:15:56.732277+00 f t ADELANTO 0.00 5 11611 \N +469172 2025-11-08 14:29:40.335595+00 2025-11-08 14:29:40.335606+00 f t SUBTOTAL 92000.00 1 11745 \N +469173 2025-11-08 14:29:40.337817+00 2025-11-08 14:29:40.337829+00 f t COSTO_SERVICIO 0.00 2 11745 \N +469174 2025-11-08 14:29:40.339475+00 2025-11-08 14:29:40.339485+00 f t DESCUENTO 9200.00 3 11745 \N +469175 2025-11-08 14:29:40.340964+00 2025-11-08 14:29:40.340972+00 f t TOTAL 82800.00 4 11745 \N +469176 2025-11-08 14:29:40.342349+00 2025-11-08 14:29:40.342358+00 f t ADELANTO 22000.00 5 11745 \N +463077 2025-11-07 01:30:40.214552+00 2025-11-07 01:30:40.214561+00 f t SUBTOTAL 0.00 1 11613 \N +463078 2025-11-07 01:30:40.215889+00 2025-11-07 01:30:40.215895+00 f t COSTO_SERVICIO 0.00 2 11613 \N +463079 2025-11-07 01:30:40.217012+00 2025-11-07 01:30:40.217017+00 f t DESCUENTO 0.00 3 11613 \N +463080 2025-11-07 01:30:40.218021+00 2025-11-07 01:30:40.218027+00 f t TOTAL 0.00 4 11613 \N +463081 2025-11-07 01:30:40.219645+00 2025-11-07 01:30:40.21965+00 f t ADELANTO 0.00 5 11613 \N +470997 2025-11-08 21:21:24.325968+00 2025-11-08 21:21:24.325979+00 f t SUBTOTAL 0.00 1 11791 \N +470998 2025-11-08 21:21:24.327459+00 2025-11-08 21:21:24.327466+00 f t COSTO_SERVICIO 0.00 2 11791 \N +470999 2025-11-08 21:21:24.32851+00 2025-11-08 21:21:24.328516+00 f t DESCUENTO 0.00 3 11791 \N +471000 2025-11-08 21:21:24.329478+00 2025-11-08 21:21:24.329484+00 f t TOTAL 0.00 4 11791 \N +471001 2025-11-08 21:21:24.330344+00 2025-11-08 21:21:24.330349+00 f t ADELANTO 0.00 5 11791 \N +463147 2025-11-07 01:38:00.196909+00 2025-11-07 01:38:00.196918+00 f t SUBTOTAL 11000.00 1 11612 \N +463148 2025-11-07 01:38:00.198452+00 2025-11-07 01:38:00.198457+00 f t COSTO_SERVICIO 0.00 2 11612 \N +463149 2025-11-07 01:38:00.199669+00 2025-11-07 01:38:00.199675+00 f t DESCUENTO 0.00 3 11612 \N +463150 2025-11-07 01:38:00.200953+00 2025-11-07 01:38:00.200959+00 f t TOTAL 11000.00 4 11612 \N +463151 2025-11-07 01:38:00.202061+00 2025-11-07 01:38:00.20207+00 f t ADELANTO 11000.00 5 11612 \N +463157 2025-11-07 02:01:49.084604+00 2025-11-07 02:01:49.084612+00 f t SUBTOTAL 0.00 1 11614 \N +463158 2025-11-07 02:01:49.086014+00 2025-11-07 02:01:49.08602+00 f t COSTO_SERVICIO 0.00 2 11614 \N +463159 2025-11-07 02:01:49.087452+00 2025-11-07 02:01:49.08746+00 f t DESCUENTO 0.00 3 11614 \N +463160 2025-11-07 02:01:49.088863+00 2025-11-07 02:01:49.088871+00 f t TOTAL 0.00 4 11614 \N +463161 2025-11-07 02:01:49.089989+00 2025-11-07 02:01:49.089996+00 f t ADELANTO 0.00 5 11614 \N +463192 2025-11-07 02:12:43.6871+00 2025-11-07 02:12:43.687107+00 f t SUBTOTAL 46000.00 1 11615 \N +463193 2025-11-07 02:12:43.68871+00 2025-11-07 02:12:43.688716+00 f t COSTO_SERVICIO 0.00 2 11615 \N +463194 2025-11-07 02:12:43.689769+00 2025-11-07 02:12:43.689775+00 f t DESCUENTO 0.00 3 11615 \N +463195 2025-11-07 02:12:43.690742+00 2025-11-07 02:12:43.69075+00 f t TOTAL 46000.00 4 11615 \N +463196 2025-11-07 02:12:43.691922+00 2025-11-07 02:12:43.691928+00 f t ADELANTO 11000.00 5 11615 \N +463202 2025-11-07 02:17:29.700965+00 2025-11-07 02:17:29.700975+00 f t SUBTOTAL 0.00 1 11616 \N +463203 2025-11-07 02:17:29.702306+00 2025-11-07 02:17:29.702313+00 f t COSTO_SERVICIO 0.00 2 11616 \N +463204 2025-11-07 02:17:29.703319+00 2025-11-07 02:17:29.703324+00 f t DESCUENTO 0.00 3 11616 \N +463205 2025-11-07 02:17:29.704335+00 2025-11-07 02:17:29.70434+00 f t TOTAL 0.00 4 11616 \N +463206 2025-11-07 02:17:29.705229+00 2025-11-07 02:17:29.705234+00 f t ADELANTO 0.00 5 11616 \N +488687 2025-11-13 00:17:58.806899+00 2025-11-13 00:17:58.806907+00 f t SUBTOTAL 0.00 1 12197 \N +488688 2025-11-13 00:17:58.809013+00 2025-11-13 00:17:58.809021+00 f t COSTO_SERVICIO 0.00 2 12197 \N +488689 2025-11-13 00:17:58.810317+00 2025-11-13 00:17:58.810324+00 f t DESCUENTO 0.00 3 12197 \N +477592 2025-11-10 19:17:33.408235+00 2025-11-10 19:17:33.408244+00 f t SUBTOTAL 0.00 1 11939 \N +477593 2025-11-10 19:17:33.409466+00 2025-11-10 19:17:33.409473+00 f t COSTO_SERVICIO 0.00 2 11939 \N +477594 2025-11-10 19:17:33.410517+00 2025-11-10 19:17:33.410523+00 f t DESCUENTO 0.00 3 11939 \N +477595 2025-11-10 19:17:33.411575+00 2025-11-10 19:17:33.41158+00 f t TOTAL 0.00 4 11939 \N +477596 2025-11-10 19:17:33.41348+00 2025-11-10 19:17:33.413486+00 f t ADELANTO 0.00 5 11939 \N +467907 2025-11-08 01:52:56.742198+00 2025-11-08 01:52:56.742204+00 f t SUBTOTAL 112000.00 1 11720 \N +463262 2025-11-07 02:33:10.197771+00 2025-11-07 02:33:10.197781+00 f t SUBTOTAL 92000.00 1 11617 \N +463263 2025-11-07 02:33:10.199448+00 2025-11-07 02:33:10.199457+00 f t COSTO_SERVICIO 0.00 2 11617 \N +463264 2025-11-07 02:33:10.200821+00 2025-11-07 02:33:10.200827+00 f t DESCUENTO 9200.00 3 11617 \N +463265 2025-11-07 02:33:10.201969+00 2025-11-07 02:33:10.201974+00 f t TOTAL 82800.00 4 11617 \N +463266 2025-11-07 02:33:10.202988+00 2025-11-07 02:33:10.202993+00 f t ADELANTO 22000.00 5 11617 \N +467908 2025-11-08 01:52:56.744055+00 2025-11-08 01:52:56.744061+00 f t COSTO_SERVICIO 0.00 2 11720 \N +467909 2025-11-08 01:52:56.74546+00 2025-11-08 01:52:56.745466+00 f t DESCUENTO 0.00 3 11720 \N +467910 2025-11-08 01:52:56.746972+00 2025-11-08 01:52:56.746979+00 f t TOTAL 112000.00 4 11720 \N +467911 2025-11-08 01:52:56.748174+00 2025-11-08 01:52:56.74818+00 f t ADELANTO 55500.00 5 11720 \N +478547 2025-11-10 21:15:01.649949+00 2025-11-10 21:15:01.649962+00 f t SUBTOTAL 0.00 1 11962 \N +463272 2025-11-07 02:53:12.35418+00 2025-11-07 02:53:12.35419+00 f t SUBTOTAL 0.00 1 11618 \N +463273 2025-11-07 02:53:12.355667+00 2025-11-07 02:53:12.355673+00 f t COSTO_SERVICIO 0.00 2 11618 \N +463274 2025-11-07 02:53:12.356722+00 2025-11-07 02:53:12.356729+00 f t DESCUENTO 0.00 3 11618 \N +463275 2025-11-07 02:53:12.357824+00 2025-11-07 02:53:12.357829+00 f t TOTAL 0.00 4 11618 \N +463276 2025-11-07 02:53:12.358715+00 2025-11-07 02:53:12.35872+00 f t ADELANTO 0.00 5 11618 \N +478548 2025-11-10 21:15:01.654274+00 2025-11-10 21:15:01.654287+00 f t COSTO_SERVICIO 0.00 2 11962 \N +478549 2025-11-10 21:15:01.656795+00 2025-11-10 21:15:01.656807+00 f t DESCUENTO 0.00 3 11962 \N +478550 2025-11-10 21:15:01.659201+00 2025-11-10 21:15:01.659212+00 f t TOTAL 0.00 4 11962 \N +478551 2025-11-10 21:15:01.662024+00 2025-11-10 21:15:01.66204+00 f t ADELANTO 0.00 5 11962 \N +480197 2025-11-11 10:50:53.051055+00 2025-11-11 10:50:53.051067+00 f t SUBTOTAL 46000.00 1 12004 \N +480198 2025-11-11 10:50:53.053219+00 2025-11-11 10:50:53.053228+00 f t COSTO_SERVICIO 0.00 2 12004 \N +480199 2025-11-11 10:50:53.054741+00 2025-11-11 10:50:53.054749+00 f t DESCUENTO 0.00 3 12004 \N +480200 2025-11-11 10:50:53.056102+00 2025-11-11 10:50:53.05611+00 f t TOTAL 46000.00 4 12004 \N +480201 2025-11-11 10:50:53.057329+00 2025-11-11 10:50:53.057338+00 f t ADELANTO 11000.00 5 12004 \N +463342 2025-11-07 03:49:05.767642+00 2025-11-07 03:49:05.767649+00 f t SUBTOTAL 109500.00 1 11619 \N +463343 2025-11-07 03:49:05.769058+00 2025-11-07 03:49:05.769064+00 f t COSTO_SERVICIO 0.00 2 11619 \N +463344 2025-11-07 03:49:05.770211+00 2025-11-07 03:49:05.770217+00 f t DESCUENTO 0.00 3 11619 \N +463345 2025-11-07 03:49:05.771276+00 2025-11-07 03:49:05.771282+00 f t TOTAL 109500.00 4 11619 \N +463346 2025-11-07 03:49:05.772198+00 2025-11-07 03:49:05.772203+00 f t ADELANTO 44500.00 5 11619 \N +470512 2025-11-08 18:28:13.180592+00 2025-11-08 18:28:13.180601+00 f t SUBTOTAL 20500.00 1 11773 \N +470513 2025-11-08 18:28:13.182814+00 2025-11-08 18:28:13.18282+00 f t COSTO_SERVICIO 0.00 2 11773 \N +470514 2025-11-08 18:28:13.184208+00 2025-11-08 18:28:13.184213+00 f t DESCUENTO 0.00 3 11773 \N +470515 2025-11-08 18:28:13.185427+00 2025-11-08 18:28:13.185433+00 f t TOTAL 20500.00 4 11773 \N +470516 2025-11-08 18:28:13.186433+00 2025-11-08 18:28:13.186438+00 f t ADELANTO 20500.00 5 11773 \N +463372 2025-11-07 03:49:41.158404+00 2025-11-07 03:49:41.158413+00 f t SUBTOTAL 78000.00 1 11620 \N +463373 2025-11-07 03:49:41.160317+00 2025-11-07 03:49:41.160325+00 f t COSTO_SERVICIO 0.00 2 11620 \N +463374 2025-11-07 03:49:41.161632+00 2025-11-07 03:49:41.161639+00 f t DESCUENTO 0.00 3 11620 \N +463375 2025-11-07 03:49:41.162912+00 2025-11-07 03:49:41.162919+00 f t TOTAL 78000.00 4 11620 \N +463376 2025-11-07 03:49:41.164042+00 2025-11-07 03:49:41.164051+00 f t ADELANTO 13000.00 5 11620 \N +471007 2025-11-08 21:57:19.714592+00 2025-11-08 21:57:19.7146+00 f t SUBTOTAL 0.00 1 11792 \N +471008 2025-11-08 21:57:19.716105+00 2025-11-08 21:57:19.716111+00 f t COSTO_SERVICIO 0.00 2 11792 \N +471009 2025-11-08 21:57:19.717172+00 2025-11-08 21:57:19.717177+00 f t DESCUENTO 0.00 3 11792 \N +471010 2025-11-08 21:57:19.718044+00 2025-11-08 21:57:19.71805+00 f t TOTAL 0.00 4 11792 \N +471011 2025-11-08 21:57:19.719076+00 2025-11-08 21:57:19.719081+00 f t ADELANTO 0.00 5 11792 \N +463427 2025-11-07 04:32:59.288105+00 2025-11-07 04:32:59.288111+00 f t SUBTOTAL 46000.00 1 11621 \N +463428 2025-11-07 04:32:59.290084+00 2025-11-07 04:32:59.290091+00 f t COSTO_SERVICIO 0.00 2 11621 \N +463429 2025-11-07 04:32:59.291625+00 2025-11-07 04:32:59.291632+00 f t DESCUENTO 0.00 3 11621 \N +463430 2025-11-07 04:32:59.292571+00 2025-11-07 04:32:59.292576+00 f t TOTAL 46000.00 4 11621 \N +463431 2025-11-07 04:32:59.293461+00 2025-11-07 04:32:59.293466+00 f t ADELANTO 11000.00 5 11621 \N +471787 2025-11-09 02:04:29.097907+00 2025-11-09 02:04:29.097913+00 f t SUBTOTAL 316000.00 1 11805 \N +471788 2025-11-09 02:04:29.099512+00 2025-11-09 02:04:29.099517+00 f t COSTO_SERVICIO 0.00 2 11805 \N +471789 2025-11-09 02:04:29.100684+00 2025-11-09 02:04:29.100689+00 f t DESCUENTO 18400.00 3 11805 \N +471790 2025-11-09 02:04:29.101844+00 2025-11-09 02:04:29.10185+00 f t TOTAL 297600.00 4 11805 \N +471791 2025-11-09 02:04:29.102848+00 2025-11-09 02:04:29.102854+00 f t ADELANTO 70000.00 5 11805 \N +472687 2025-11-09 14:02:16.828452+00 2025-11-09 14:02:16.82846+00 f t SUBTOTAL 55000.00 1 11827 \N +472688 2025-11-09 14:02:16.83014+00 2025-11-09 14:02:16.830146+00 f t COSTO_SERVICIO 0.00 2 11827 \N +472689 2025-11-09 14:02:16.831267+00 2025-11-09 14:02:16.831273+00 f t DESCUENTO 0.00 3 11827 \N +472690 2025-11-09 14:02:16.832356+00 2025-11-09 14:02:16.832361+00 f t TOTAL 55000.00 4 11827 \N +472691 2025-11-09 14:02:16.833338+00 2025-11-09 14:02:16.833343+00 f t ADELANTO 11000.00 5 11827 \N +472877 2025-11-09 14:34:05.008625+00 2025-11-09 14:34:05.008638+00 f t SUBTOTAL 55000.00 1 11831 \N +472878 2025-11-09 14:34:05.011266+00 2025-11-09 14:34:05.011278+00 f t COSTO_SERVICIO 0.00 2 11831 \N +472879 2025-11-09 14:34:05.013571+00 2025-11-09 14:34:05.013583+00 f t DESCUENTO 0.00 3 11831 \N +472880 2025-11-09 14:34:05.015389+00 2025-11-09 14:34:05.015399+00 f t TOTAL 55000.00 4 11831 \N +472881 2025-11-09 14:34:05.017097+00 2025-11-09 14:34:05.017107+00 f t ADELANTO 11000.00 5 11831 \N +463512 2025-11-07 04:47:24.604359+00 2025-11-07 04:47:24.604369+00 f t SUBTOTAL 55000.00 1 11622 \N +463513 2025-11-07 04:47:24.606163+00 2025-11-07 04:47:24.60617+00 f t COSTO_SERVICIO 0.00 2 11622 \N +463514 2025-11-07 04:47:24.607591+00 2025-11-07 04:47:24.607602+00 f t DESCUENTO 0.00 3 11622 \N +463515 2025-11-07 04:47:24.608953+00 2025-11-07 04:47:24.608962+00 f t TOTAL 55000.00 4 11622 \N +463516 2025-11-07 04:47:24.610241+00 2025-11-07 04:47:24.610247+00 f t ADELANTO 11000.00 5 11622 \N +472915 2025-11-09 14:46:50.371451+00 2025-11-09 14:46:50.371456+00 f t TOTAL 0.00 4 11833 \N +472916 2025-11-09 14:46:50.372699+00 2025-11-09 14:46:50.372706+00 f t ADELANTO 0.00 5 11833 \N +488690 2025-11-13 00:17:58.811517+00 2025-11-13 00:17:58.811523+00 f t TOTAL 0.00 4 12197 \N +488691 2025-11-13 00:17:58.812892+00 2025-11-13 00:17:58.812897+00 f t ADELANTO 0.00 5 12197 \N +500049 2025-11-15 20:49:45.924074+00 2025-11-15 20:49:45.924082+00 f t DESCUENTO 0.00 3 12475 \N +500050 2025-11-15 20:49:45.925845+00 2025-11-15 20:49:45.925854+00 f t TOTAL 0.00 4 12475 \N +500051 2025-11-15 20:49:45.92724+00 2025-11-15 20:49:45.927249+00 f t ADELANTO 0.00 5 12475 \N +478112 2025-11-10 20:18:08.641519+00 2025-11-10 20:18:08.641531+00 f t SUBTOTAL 0.00 1 11952 \N +478113 2025-11-10 20:18:08.644144+00 2025-11-10 20:18:08.644152+00 f t COSTO_SERVICIO 0.00 2 11952 \N +478114 2025-11-10 20:18:08.645082+00 2025-11-10 20:18:08.645088+00 f t DESCUENTO 0.00 3 11952 \N +478115 2025-11-10 20:18:08.645866+00 2025-11-10 20:18:08.645871+00 f t TOTAL 0.00 4 11952 \N +478116 2025-11-10 20:18:08.646589+00 2025-11-10 20:18:08.646594+00 f t ADELANTO 0.00 5 11952 \N +468242 2025-11-08 04:16:22.403312+00 2025-11-08 04:16:22.403319+00 f t SUBTOTAL 76000.00 1 11726 \N +468243 2025-11-08 04:16:22.405512+00 2025-11-08 04:16:22.405518+00 f t COSTO_SERVICIO 0.00 2 11726 \N +468244 2025-11-08 04:16:22.406655+00 2025-11-08 04:16:22.40666+00 f t DESCUENTO 7600.00 3 11726 \N +468245 2025-11-08 04:16:22.407658+00 2025-11-08 04:16:22.407666+00 f t TOTAL 68400.00 4 11726 \N +468246 2025-11-08 04:16:22.408787+00 2025-11-08 04:16:22.408796+00 f t ADELANTO 41000.00 5 11726 \N +479527 2025-11-11 01:41:33.357942+00 2025-11-11 01:41:33.357951+00 f t SUBTOTAL 92000.00 1 11987 \N +479528 2025-11-11 01:41:33.359834+00 2025-11-11 01:41:33.35984+00 f t COSTO_SERVICIO 0.00 2 11987 \N +479529 2025-11-11 01:41:33.36107+00 2025-11-11 01:41:33.361078+00 f t DESCUENTO 9200.00 3 11987 \N +479530 2025-11-11 01:41:33.362158+00 2025-11-11 01:41:33.362164+00 f t TOTAL 82800.00 4 11987 \N +479531 2025-11-11 01:41:33.36307+00 2025-11-11 01:41:33.363075+00 f t ADELANTO 22000.00 5 11987 \N +479702 2025-11-11 02:55:35.937107+00 2025-11-11 02:55:35.937118+00 f t SUBTOTAL 0.00 1 11992 \N +479703 2025-11-11 02:55:35.939315+00 2025-11-11 02:55:35.939321+00 f t COSTO_SERVICIO 0.00 2 11992 \N +479704 2025-11-11 02:55:35.940265+00 2025-11-11 02:55:35.94027+00 f t DESCUENTO 0.00 3 11992 \N +479705 2025-11-11 02:55:35.941082+00 2025-11-11 02:55:35.941087+00 f t TOTAL 0.00 4 11992 \N +479706 2025-11-11 02:55:35.941932+00 2025-11-11 02:55:35.941937+00 f t ADELANTO 0.00 5 11992 \N +463637 2025-11-07 04:51:18.23389+00 2025-11-07 04:51:18.233897+00 f t SUBTOTAL 55000.00 1 11623 \N +463638 2025-11-07 04:51:18.235454+00 2025-11-07 04:51:18.23546+00 f t COSTO_SERVICIO 0.00 2 11623 \N +463639 2025-11-07 04:51:18.236728+00 2025-11-07 04:51:18.236734+00 f t DESCUENTO 0.00 3 11623 \N +463640 2025-11-07 04:51:18.237788+00 2025-11-07 04:51:18.237793+00 f t TOTAL 55000.00 4 11623 \N +463641 2025-11-07 04:51:18.238657+00 2025-11-07 04:51:18.238662+00 f t ADELANTO 11000.00 5 11623 \N +470272 2025-11-08 17:13:39.073757+00 2025-11-08 17:13:39.073767+00 f t SUBTOTAL 55000.00 1 11766 \N +470273 2025-11-08 17:13:39.075515+00 2025-11-08 17:13:39.075522+00 f t COSTO_SERVICIO 0.00 2 11766 \N +470274 2025-11-08 17:13:39.076734+00 2025-11-08 17:13:39.076741+00 f t DESCUENTO 0.00 3 11766 \N +470275 2025-11-08 17:13:39.077679+00 2025-11-08 17:13:39.077688+00 f t TOTAL 55000.00 4 11766 \N +470276 2025-11-08 17:13:39.078722+00 2025-11-08 17:13:39.078727+00 f t ADELANTO 11000.00 5 11766 \N +481277 2025-11-11 14:34:34.448069+00 2025-11-11 14:34:34.448078+00 f t SUBTOTAL 0.00 1 12024 \N +481278 2025-11-11 14:34:34.449345+00 2025-11-11 14:34:34.449351+00 f t COSTO_SERVICIO 0.00 2 12024 \N +481279 2025-11-11 14:34:34.450309+00 2025-11-11 14:34:34.450314+00 f t DESCUENTO 0.00 3 12024 \N +470757 2025-11-08 19:27:05.376293+00 2025-11-08 19:27:05.3763+00 f t SUBTOTAL 46000.00 1 11781 \N +470758 2025-11-08 19:27:05.377896+00 2025-11-08 19:27:05.377902+00 f t COSTO_SERVICIO 0.00 2 11781 \N +470759 2025-11-08 19:27:05.379091+00 2025-11-08 19:27:05.379096+00 f t DESCUENTO 0.00 3 11781 \N +470760 2025-11-08 19:27:05.380569+00 2025-11-08 19:27:05.380574+00 f t TOTAL 46000.00 4 11781 \N +470761 2025-11-08 19:27:05.38152+00 2025-11-08 19:27:05.381525+00 f t ADELANTO 11000.00 5 11781 \N +481280 2025-11-11 14:34:34.451329+00 2025-11-11 14:34:34.451333+00 f t TOTAL 0.00 4 12024 \N +481281 2025-11-11 14:34:34.452292+00 2025-11-11 14:34:34.452298+00 f t ADELANTO 0.00 5 12024 \N +463682 2025-11-07 05:16:55.755239+00 2025-11-07 05:16:55.755247+00 f t SUBTOTAL 31500.00 1 11624 \N +463683 2025-11-07 05:16:55.756857+00 2025-11-07 05:16:55.756863+00 f t COSTO_SERVICIO 0.00 2 11624 \N +463684 2025-11-07 05:16:55.758048+00 2025-11-07 05:16:55.758054+00 f t DESCUENTO 0.00 3 11624 \N +463685 2025-11-07 05:16:55.759913+00 2025-11-07 05:16:55.759919+00 f t TOTAL 31500.00 4 11624 \N +463686 2025-11-07 05:16:55.760968+00 2025-11-07 05:16:55.760973+00 f t ADELANTO 31500.00 5 11624 \N +463712 2025-11-07 05:17:27.322325+00 2025-11-07 05:17:27.322337+00 f t SUBTOTAL 0.00 1 11625 \N +463713 2025-11-07 05:17:27.324425+00 2025-11-07 05:17:27.324433+00 f t COSTO_SERVICIO 0.00 2 11625 \N +463714 2025-11-07 05:17:27.325678+00 2025-11-07 05:17:27.325684+00 f t DESCUENTO 0.00 3 11625 \N +463715 2025-11-07 05:17:27.326851+00 2025-11-07 05:17:27.326859+00 f t TOTAL 0.00 4 11625 \N +463716 2025-11-07 05:17:27.328031+00 2025-11-07 05:17:27.328039+00 f t ADELANTO 0.00 5 11625 \N +463722 2025-11-07 06:53:57.256794+00 2025-11-07 06:53:57.256807+00 f t SUBTOTAL 0.00 1 11626 \N +463723 2025-11-07 06:53:57.258433+00 2025-11-07 06:53:57.258441+00 f t COSTO_SERVICIO 0.00 2 11626 \N +463724 2025-11-07 06:53:57.259898+00 2025-11-07 06:53:57.259908+00 f t DESCUENTO 0.00 3 11626 \N +463725 2025-11-07 06:53:57.261031+00 2025-11-07 06:53:57.261037+00 f t TOTAL 0.00 4 11626 \N +463726 2025-11-07 06:53:57.262093+00 2025-11-07 06:53:57.262099+00 f t ADELANTO 0.00 5 11626 \N +471922 2025-11-09 03:53:40.370241+00 2025-11-09 03:53:40.370254+00 f t SUBTOTAL 0.00 1 11809 \N +471923 2025-11-09 03:53:40.371799+00 2025-11-09 03:53:40.371808+00 f t COSTO_SERVICIO 0.00 2 11809 \N +471924 2025-11-09 03:53:40.372938+00 2025-11-09 03:53:40.372946+00 f t DESCUENTO 0.00 3 11809 \N +471925 2025-11-09 03:53:40.374149+00 2025-11-09 03:53:40.374157+00 f t TOTAL 0.00 4 11809 \N +471926 2025-11-09 03:53:40.375326+00 2025-11-09 03:53:40.375334+00 f t ADELANTO 0.00 5 11809 \N +482882 2025-11-11 21:00:00.259556+00 2025-11-11 21:00:00.259564+00 f t SUBTOTAL 70000.00 1 12058 \N +482883 2025-11-11 21:00:00.261613+00 2025-11-11 21:00:00.261621+00 f t COSTO_SERVICIO 0.00 2 12058 \N +482884 2025-11-11 21:00:00.263022+00 2025-11-11 21:00:00.263028+00 f t DESCUENTO 0.00 3 12058 \N +463762 2025-11-07 08:18:23.368993+00 2025-11-07 08:18:23.368999+00 f t SUBTOTAL 54000.00 1 11627 \N +463763 2025-11-07 08:18:23.37043+00 2025-11-07 08:18:23.370435+00 f t COSTO_SERVICIO 0.00 2 11627 \N +463764 2025-11-07 08:18:23.371675+00 2025-11-07 08:18:23.371681+00 f t DESCUENTO 0.00 3 11627 \N +463765 2025-11-07 08:18:23.372642+00 2025-11-07 08:18:23.372647+00 f t TOTAL 54000.00 4 11627 \N +463766 2025-11-07 08:18:23.373538+00 2025-11-07 08:18:23.373543+00 f t ADELANTO 13500.00 5 11627 \N +482885 2025-11-11 21:00:00.264237+00 2025-11-11 21:00:00.264243+00 f t TOTAL 70000.00 4 12058 \N +482886 2025-11-11 21:00:00.265558+00 2025-11-11 21:00:00.265564+00 f t ADELANTO 19000.00 5 12058 \N +483662 2025-11-11 23:29:56.741931+00 2025-11-11 23:29:56.741939+00 f t SUBTOTAL 46000.00 1 12080 \N +483663 2025-11-11 23:29:56.743717+00 2025-11-11 23:29:56.743723+00 f t COSTO_SERVICIO 0.00 2 12080 \N +483664 2025-11-11 23:29:56.744963+00 2025-11-11 23:29:56.744969+00 f t DESCUENTO 0.00 3 12080 \N +483665 2025-11-11 23:29:56.745991+00 2025-11-11 23:29:56.745996+00 f t TOTAL 46000.00 4 12080 \N +483666 2025-11-11 23:29:56.747039+00 2025-11-11 23:29:56.747045+00 f t ADELANTO 11000.00 5 12080 \N +548642 2025-11-25 21:20:50.463948+00 2025-11-25 21:20:50.463954+00 f t SUBTOTAL 148000.00 1 13558 \N +548643 2025-11-25 21:20:50.465699+00 2025-11-25 21:20:50.465705+00 f t COSTO_SERVICIO 0.00 2 13558 \N +548644 2025-11-25 21:20:50.466969+00 2025-11-25 21:20:50.466974+00 f t DESCUENTO 9200.00 3 13558 \N +463832 2025-11-07 09:30:53.723066+00 2025-11-07 09:30:53.723074+00 f t SUBTOTAL 55000.00 1 11628 \N +463833 2025-11-07 09:30:53.724554+00 2025-11-07 09:30:53.72456+00 f t COSTO_SERVICIO 0.00 2 11628 \N +463834 2025-11-07 09:30:53.725519+00 2025-11-07 09:30:53.725524+00 f t DESCUENTO 0.00 3 11628 \N +463835 2025-11-07 09:30:53.726483+00 2025-11-07 09:30:53.726489+00 f t TOTAL 55000.00 4 11628 \N +463836 2025-11-07 09:30:53.727414+00 2025-11-07 09:30:53.727419+00 f t ADELANTO 11000.00 5 11628 \N +478347 2025-11-10 20:45:07.249178+00 2025-11-10 20:45:07.249191+00 f t SUBTOTAL 0.00 1 11958 \N +478348 2025-11-10 20:45:07.252885+00 2025-11-10 20:45:07.252895+00 f t COSTO_SERVICIO 0.00 2 11958 \N +478349 2025-11-10 20:45:07.254269+00 2025-11-10 20:45:07.254276+00 f t DESCUENTO 0.00 3 11958 \N +478350 2025-11-10 20:45:07.255499+00 2025-11-10 20:45:07.255506+00 f t TOTAL 0.00 4 11958 \N +478351 2025-11-10 20:45:07.263383+00 2025-11-10 20:45:07.263393+00 f t ADELANTO 0.00 5 11958 \N +478987 2025-11-10 22:26:07.861187+00 2025-11-10 22:26:07.861196+00 f t SUBTOTAL 0.00 1 11973 \N +478988 2025-11-10 22:26:07.863628+00 2025-11-10 22:26:07.863642+00 f t COSTO_SERVICIO 0.00 2 11973 \N +478989 2025-11-10 22:26:07.865138+00 2025-11-10 22:26:07.865144+00 f t DESCUENTO 0.00 3 11973 \N +478990 2025-11-10 22:26:07.866182+00 2025-11-10 22:26:07.866187+00 f t TOTAL 0.00 4 11973 \N +463857 2025-11-07 09:39:01.32475+00 2025-11-07 09:39:01.324761+00 f t SUBTOTAL 0.00 1 11629 \N +463858 2025-11-07 09:39:01.327799+00 2025-11-07 09:39:01.327813+00 f t COSTO_SERVICIO 0.00 2 11629 \N +463859 2025-11-07 09:39:01.32989+00 2025-11-07 09:39:01.3299+00 f t DESCUENTO 0.00 3 11629 \N +463860 2025-11-07 09:39:01.332027+00 2025-11-07 09:39:01.332038+00 f t TOTAL 0.00 4 11629 \N +463861 2025-11-07 09:39:01.333856+00 2025-11-07 09:39:01.333865+00 f t ADELANTO 0.00 5 11629 \N +478991 2025-11-10 22:26:07.867218+00 2025-11-10 22:26:07.867225+00 f t ADELANTO 0.00 5 11973 \N +468417 2025-11-08 12:08:16.416533+00 2025-11-08 12:08:16.416541+00 f t SUBTOTAL 55000.00 1 11732 \N +468418 2025-11-08 12:08:16.418414+00 2025-11-08 12:08:16.418421+00 f t COSTO_SERVICIO 0.00 2 11732 \N +468419 2025-11-08 12:08:16.419598+00 2025-11-08 12:08:16.419606+00 f t DESCUENTO 0.00 3 11732 \N +468420 2025-11-08 12:08:16.420854+00 2025-11-08 12:08:16.420859+00 f t TOTAL 55000.00 4 11732 \N +468421 2025-11-08 12:08:16.421906+00 2025-11-08 12:08:16.421912+00 f t ADELANTO 11000.00 5 11732 \N +479872 2025-11-11 03:51:20.824915+00 2025-11-11 03:51:20.824923+00 f t SUBTOTAL 103000.00 1 11995 \N +479873 2025-11-11 03:51:20.826924+00 2025-11-11 03:51:20.826933+00 f t COSTO_SERVICIO 0.00 2 11995 \N +479874 2025-11-11 03:51:20.828076+00 2025-11-11 03:51:20.828084+00 f t DESCUENTO 0.00 3 11995 \N +479875 2025-11-11 03:51:20.829203+00 2025-11-11 03:51:20.82921+00 f t TOTAL 103000.00 4 11995 \N +479876 2025-11-11 03:51:20.830163+00 2025-11-11 03:51:20.830169+00 f t ADELANTO 68000.00 5 11995 \N +480042 2025-11-11 10:25:29.297754+00 2025-11-11 10:25:29.297763+00 f t SUBTOTAL 0.00 1 12000 \N +480043 2025-11-11 10:25:29.299952+00 2025-11-11 10:25:29.299961+00 f t COSTO_SERVICIO 0.00 2 12000 \N +480044 2025-11-11 10:25:29.301189+00 2025-11-11 10:25:29.301195+00 f t DESCUENTO 0.00 3 12000 \N +480045 2025-11-11 10:25:29.302927+00 2025-11-11 10:25:29.302933+00 f t TOTAL 0.00 4 12000 \N +480046 2025-11-11 10:25:29.304302+00 2025-11-11 10:25:29.304308+00 f t ADELANTO 0.00 5 12000 \N +463912 2025-11-07 10:10:12.597149+00 2025-11-07 10:10:12.597158+00 f t SUBTOTAL 78000.00 1 11630 \N +463913 2025-11-07 10:10:12.598978+00 2025-11-07 10:10:12.598985+00 f t COSTO_SERVICIO 0.00 2 11630 \N +463914 2025-11-07 10:10:12.600604+00 2025-11-07 10:10:12.60061+00 f t DESCUENTO 0.00 3 11630 \N +463915 2025-11-07 10:10:12.60413+00 2025-11-07 10:10:12.604138+00 f t TOTAL 78000.00 4 11630 \N +463916 2025-11-07 10:10:12.605897+00 2025-11-07 10:10:12.605906+00 f t ADELANTO 21500.00 5 11630 \N +463947 2025-11-07 10:15:14.93536+00 2025-11-07 10:15:14.93537+00 f t SUBTOTAL 0.00 1 11631 \N +463948 2025-11-07 10:15:14.937654+00 2025-11-07 10:15:14.937661+00 f t COSTO_SERVICIO 0.00 2 11631 \N +463949 2025-11-07 10:15:14.938895+00 2025-11-07 10:15:14.938901+00 f t DESCUENTO 0.00 3 11631 \N +463950 2025-11-07 10:15:14.940036+00 2025-11-07 10:15:14.940041+00 f t TOTAL 0.00 4 11631 \N +463951 2025-11-07 10:15:14.941052+00 2025-11-07 10:15:14.941056+00 f t ADELANTO 0.00 5 11631 \N +471127 2025-11-08 22:05:30.348497+00 2025-11-08 22:05:30.348506+00 f t SUBTOTAL 0.00 1 11794 \N +471128 2025-11-08 22:05:30.35018+00 2025-11-08 22:05:30.350186+00 f t COSTO_SERVICIO 0.00 2 11794 \N +471129 2025-11-08 22:05:30.351469+00 2025-11-08 22:05:30.351476+00 f t DESCUENTO 0.00 3 11794 \N +471130 2025-11-08 22:05:30.352669+00 2025-11-08 22:05:30.352674+00 f t TOTAL 0.00 4 11794 \N +471131 2025-11-08 22:05:30.35357+00 2025-11-08 22:05:30.353575+00 f t ADELANTO 0.00 5 11794 \N +464002 2025-11-07 10:23:37.152842+00 2025-11-07 10:23:37.15285+00 f t SUBTOTAL 92000.00 1 11632 \N +464003 2025-11-07 10:23:37.154513+00 2025-11-07 10:23:37.154518+00 f t COSTO_SERVICIO 0.00 2 11632 \N +464004 2025-11-07 10:23:37.15566+00 2025-11-07 10:23:37.155665+00 f t DESCUENTO 9200.00 3 11632 \N +464005 2025-11-07 10:23:37.156631+00 2025-11-07 10:23:37.156636+00 f t TOTAL 82800.00 4 11632 \N +464006 2025-11-07 10:23:37.157555+00 2025-11-07 10:23:37.157559+00 f t ADELANTO 22000.00 5 11632 \N +464032 2025-11-07 10:47:32.31147+00 2025-11-07 10:47:32.311476+00 f t SUBTOTAL 55000.00 1 11633 \N +464033 2025-11-07 10:47:32.313021+00 2025-11-07 10:47:32.313027+00 f t COSTO_SERVICIO 0.00 2 11633 \N +464034 2025-11-07 10:47:32.313928+00 2025-11-07 10:47:32.313933+00 f t DESCUENTO 0.00 3 11633 \N +464035 2025-11-07 10:47:32.314718+00 2025-11-07 10:47:32.314723+00 f t TOTAL 55000.00 4 11633 \N +464036 2025-11-07 10:47:32.316131+00 2025-11-07 10:47:32.316136+00 f t ADELANTO 11000.00 5 11633 \N +464042 2025-11-07 11:10:55.035248+00 2025-11-07 11:10:55.035261+00 f t SUBTOTAL 0.00 1 11634 \N +464043 2025-11-07 11:10:55.036962+00 2025-11-07 11:10:55.036971+00 f t COSTO_SERVICIO 0.00 2 11634 \N +464044 2025-11-07 11:10:55.038413+00 2025-11-07 11:10:55.038419+00 f t DESCUENTO 0.00 3 11634 \N +464045 2025-11-07 11:10:55.039954+00 2025-11-07 11:10:55.039963+00 f t TOTAL 0.00 4 11634 \N +464046 2025-11-07 11:10:55.041439+00 2025-11-07 11:10:55.041449+00 f t ADELANTO 0.00 5 11634 \N +472057 2025-11-09 04:15:02.114995+00 2025-11-09 04:15:02.11501+00 f t SUBTOTAL 0.00 1 11815 \N +472058 2025-11-09 04:15:02.118383+00 2025-11-09 04:15:02.118401+00 f t COSTO_SERVICIO 0.00 2 11815 \N +472059 2025-11-09 04:15:02.128631+00 2025-11-09 04:15:02.128644+00 f t DESCUENTO 0.00 3 11815 \N +472060 2025-11-09 04:15:02.134943+00 2025-11-09 04:15:02.134959+00 f t TOTAL 0.00 4 11815 \N +472061 2025-11-09 04:15:02.138113+00 2025-11-09 04:15:02.138127+00 f t ADELANTO 0.00 5 11815 \N +464092 2025-11-07 11:20:05.723821+00 2025-11-07 11:20:05.723828+00 f t SUBTOTAL 140000.00 1 11635 \N +464093 2025-11-07 11:20:05.725502+00 2025-11-07 11:20:05.725511+00 f t COSTO_SERVICIO 0.00 2 11635 \N +464094 2025-11-07 11:20:05.726745+00 2025-11-07 11:20:05.726752+00 f t DESCUENTO 9200.00 3 11635 \N +464095 2025-11-07 11:20:05.727855+00 2025-11-07 11:20:05.72786+00 f t TOTAL 130800.00 4 11635 \N +464096 2025-11-07 11:20:05.728858+00 2025-11-07 11:20:05.728863+00 f t ADELANTO 38000.00 5 11635 \N +464102 2025-11-07 11:49:44.676283+00 2025-11-07 11:49:44.676292+00 f t SUBTOTAL 0.00 1 11636 \N +464103 2025-11-07 11:49:44.677792+00 2025-11-07 11:49:44.677798+00 f t COSTO_SERVICIO 0.00 2 11636 \N +464104 2025-11-07 11:49:44.678831+00 2025-11-07 11:49:44.678838+00 f t DESCUENTO 0.00 3 11636 \N +464105 2025-11-07 11:49:44.680328+00 2025-11-07 11:49:44.680335+00 f t TOTAL 0.00 4 11636 \N +464106 2025-11-07 11:49:44.68143+00 2025-11-07 11:49:44.681437+00 f t ADELANTO 0.00 5 11636 \N +477607 2025-11-10 19:20:03.911025+00 2025-11-10 19:20:03.91104+00 f t SUBTOTAL 70000.00 1 11938 \N +477608 2025-11-10 19:20:03.914553+00 2025-11-10 19:20:03.914569+00 f t COSTO_SERVICIO 0.00 2 11938 \N +477609 2025-11-10 19:20:03.917688+00 2025-11-10 19:20:03.917702+00 f t DESCUENTO 0.00 3 11938 \N +477610 2025-11-10 19:20:03.920648+00 2025-11-10 19:20:03.920663+00 f t TOTAL 70000.00 4 11938 \N +477611 2025-11-10 19:20:03.923379+00 2025-11-10 19:20:03.923393+00 f t ADELANTO 19000.00 5 11938 \N +467052 2025-11-07 23:21:59.249644+00 2025-11-07 23:21:59.24965+00 f t SUBTOTAL 70000.00 1 11711 \N +467053 2025-11-07 23:21:59.251449+00 2025-11-07 23:21:59.251456+00 f t COSTO_SERVICIO 0.00 2 11711 \N +467054 2025-11-07 23:21:59.252681+00 2025-11-07 23:21:59.252688+00 f t DESCUENTO 0.00 3 11711 \N +467055 2025-11-07 23:21:59.254015+00 2025-11-07 23:21:59.25402+00 f t TOTAL 70000.00 4 11711 \N +467056 2025-11-07 23:21:59.255213+00 2025-11-07 23:21:59.255218+00 f t ADELANTO 19000.00 5 11711 \N +488697 2025-11-13 00:39:18.783948+00 2025-11-13 00:39:18.78396+00 f t SUBTOTAL 0.00 1 12198 \N +488698 2025-11-13 00:39:18.785636+00 2025-11-13 00:39:18.785645+00 f t COSTO_SERVICIO 0.00 2 12198 \N +488699 2025-11-13 00:39:18.786869+00 2025-11-13 00:39:18.786876+00 f t DESCUENTO 0.00 3 12198 \N +488700 2025-11-13 00:39:18.788203+00 2025-11-13 00:39:18.78821+00 f t TOTAL 0.00 4 12198 \N +488701 2025-11-13 00:39:18.789315+00 2025-11-13 00:39:18.789323+00 f t ADELANTO 0.00 5 12198 \N +464137 2025-11-07 11:57:36.412385+00 2025-11-07 11:57:36.412393+00 f t SUBTOTAL 0.00 1 11638 \N +464138 2025-11-07 11:57:36.413728+00 2025-11-07 11:57:36.413736+00 f t COSTO_SERVICIO 0.00 2 11638 \N +464139 2025-11-07 11:57:36.414759+00 2025-11-07 11:57:36.414766+00 f t DESCUENTO 0.00 3 11638 \N +464140 2025-11-07 11:57:36.415881+00 2025-11-07 11:57:36.415888+00 f t TOTAL 0.00 4 11638 \N +464141 2025-11-07 11:57:36.416871+00 2025-11-07 11:57:36.416877+00 f t ADELANTO 0.00 5 11638 \N +464182 2025-11-07 11:59:21.057697+00 2025-11-07 11:59:21.057705+00 f t SUBTOTAL 46000.00 1 11637 \N +464183 2025-11-07 11:59:21.059312+00 2025-11-07 11:59:21.059319+00 f t COSTO_SERVICIO 0.00 2 11637 \N +464184 2025-11-07 11:59:21.060425+00 2025-11-07 11:59:21.060431+00 f t DESCUENTO 0.00 3 11637 \N +464185 2025-11-07 11:59:21.061566+00 2025-11-07 11:59:21.061572+00 f t TOTAL 46000.00 4 11637 \N +464186 2025-11-07 11:59:21.062452+00 2025-11-07 11:59:21.062458+00 f t ADELANTO 11000.00 5 11637 \N +470152 2025-11-08 16:42:05.316473+00 2025-11-08 16:42:05.316481+00 f t SUBTOTAL 55000.00 1 11762 \N +470153 2025-11-08 16:42:05.317948+00 2025-11-08 16:42:05.317955+00 f t COSTO_SERVICIO 0.00 2 11762 \N +470154 2025-11-08 16:42:05.319099+00 2025-11-08 16:42:05.319106+00 f t DESCUENTO 0.00 3 11762 \N +470155 2025-11-08 16:42:05.320134+00 2025-11-08 16:42:05.32014+00 f t TOTAL 55000.00 4 11762 \N +470156 2025-11-08 16:42:05.321328+00 2025-11-08 16:42:05.321334+00 f t ADELANTO 11000.00 5 11762 \N +464257 2025-11-07 12:12:45.60256+00 2025-11-07 12:12:45.602569+00 f t SUBTOTAL 55000.00 1 11640 \N +464258 2025-11-07 12:12:45.604698+00 2025-11-07 12:12:45.604709+00 f t COSTO_SERVICIO 0.00 2 11640 \N +464259 2025-11-07 12:12:45.606364+00 2025-11-07 12:12:45.606373+00 f t DESCUENTO 0.00 3 11640 \N +464260 2025-11-07 12:12:45.607789+00 2025-11-07 12:12:45.607798+00 f t TOTAL 55000.00 4 11640 \N +464261 2025-11-07 12:12:45.609306+00 2025-11-07 12:12:45.609313+00 f t ADELANTO 11000.00 5 11640 \N +470772 2025-11-08 19:36:49.320402+00 2025-11-08 19:36:49.32041+00 f t SUBTOTAL 30000.00 1 11782 \N +470773 2025-11-08 19:36:49.323307+00 2025-11-08 19:36:49.323315+00 f t COSTO_SERVICIO 0.00 2 11782 \N +470774 2025-11-08 19:36:49.324814+00 2025-11-08 19:36:49.324824+00 f t DESCUENTO 0.00 3 11782 \N +470775 2025-11-08 19:36:49.326394+00 2025-11-08 19:36:49.3264+00 f t TOTAL 30000.00 4 11782 \N +470776 2025-11-08 19:36:49.327937+00 2025-11-08 19:36:49.327943+00 f t ADELANTO 30000.00 5 11782 \N +464282 2025-11-07 12:14:53.119218+00 2025-11-07 12:14:53.119225+00 f t SUBTOTAL 78000.00 1 11639 \N +464283 2025-11-07 12:14:53.121009+00 2025-11-07 12:14:53.121017+00 f t COSTO_SERVICIO 0.00 2 11639 \N +464284 2025-11-07 12:14:53.1225+00 2025-11-07 12:14:53.122506+00 f t DESCUENTO 0.00 3 11639 \N +464285 2025-11-07 12:14:53.124042+00 2025-11-07 12:14:53.124048+00 f t TOTAL 78000.00 4 11639 \N +464286 2025-11-07 12:14:53.125752+00 2025-11-07 12:14:53.125758+00 f t ADELANTO 21500.00 5 11639 \N +471257 2025-11-09 00:20:22.880471+00 2025-11-09 00:20:22.880478+00 f t SUBTOTAL 121000.00 1 11798 \N +471258 2025-11-09 00:20:22.882101+00 2025-11-09 00:20:22.882107+00 f t COSTO_SERVICIO 0.00 2 11798 \N +471259 2025-11-09 00:20:22.883118+00 2025-11-09 00:20:22.883124+00 f t DESCUENTO 0.00 3 11798 \N +471260 2025-11-09 00:20:22.884108+00 2025-11-09 00:20:22.884112+00 f t TOTAL 121000.00 4 11798 \N +471261 2025-11-09 00:20:22.885433+00 2025-11-09 00:20:22.885438+00 f t ADELANTO 26000.00 5 11798 \N +464297 2025-11-07 12:22:05.997053+00 2025-11-07 12:22:05.997061+00 f t SUBTOTAL 13200.00 1 11641 \N +464298 2025-11-07 12:22:05.99902+00 2025-11-07 12:22:05.999031+00 f t COSTO_SERVICIO 0.00 2 11641 \N +464299 2025-11-07 12:22:06.001061+00 2025-11-07 12:22:06.001069+00 f t DESCUENTO 0.00 3 11641 \N +464300 2025-11-07 12:22:06.002506+00 2025-11-07 12:22:06.002514+00 f t TOTAL 13200.00 4 11641 \N +464301 2025-11-07 12:22:06.004063+00 2025-11-07 12:22:06.004071+00 f t ADELANTO 13200.00 5 11641 \N +471482 2025-11-09 01:19:24.583202+00 2025-11-09 01:19:24.583221+00 f t SUBTOTAL 30000.00 1 11802 \N +471483 2025-11-09 01:19:24.585394+00 2025-11-09 01:19:24.585403+00 f t COSTO_SERVICIO 0.00 2 11802 \N +471484 2025-11-09 01:19:24.586953+00 2025-11-09 01:19:24.58696+00 f t DESCUENTO 0.00 3 11802 \N +471485 2025-11-09 01:19:24.588156+00 2025-11-09 01:19:24.588162+00 f t TOTAL 30000.00 4 11802 \N +471486 2025-11-09 01:19:24.589267+00 2025-11-09 01:19:24.589273+00 f t ADELANTO 30000.00 5 11802 \N +472382 2025-11-09 10:14:32.212179+00 2025-11-09 10:14:32.21219+00 f t SUBTOTAL 0.00 1 11819 \N +472383 2025-11-09 10:14:32.214146+00 2025-11-09 10:14:32.214153+00 f t COSTO_SERVICIO 0.00 2 11819 \N +472384 2025-11-09 10:14:32.215772+00 2025-11-09 10:14:32.215778+00 f t DESCUENTO 0.00 3 11819 \N +472385 2025-11-09 10:14:32.217117+00 2025-11-09 10:14:32.217123+00 f t TOTAL 0.00 4 11819 \N +472386 2025-11-09 10:14:32.21808+00 2025-11-09 10:14:32.218085+00 f t ADELANTO 0.00 5 11819 \N +464372 2025-11-07 12:31:38.342121+00 2025-11-07 12:31:38.342128+00 f t SUBTOTAL 55000.00 1 11642 \N +464373 2025-11-07 12:31:38.343704+00 2025-11-07 12:31:38.34371+00 f t COSTO_SERVICIO 0.00 2 11642 \N +464374 2025-11-07 12:31:38.34502+00 2025-11-07 12:31:38.345028+00 f t DESCUENTO 0.00 3 11642 \N +464375 2025-11-07 12:31:38.346064+00 2025-11-07 12:31:38.346069+00 f t TOTAL 55000.00 4 11642 \N +464376 2025-11-07 12:31:38.347304+00 2025-11-07 12:31:38.347309+00 f t ADELANTO 11000.00 5 11642 \N +464382 2025-11-07 12:39:08.249122+00 2025-11-07 12:39:08.249131+00 f t SUBTOTAL 0.00 1 11643 \N +464383 2025-11-07 12:39:08.250737+00 2025-11-07 12:39:08.250745+00 f t COSTO_SERVICIO 0.00 2 11643 \N +464384 2025-11-07 12:39:08.251975+00 2025-11-07 12:39:08.251981+00 f t DESCUENTO 0.00 3 11643 \N +464385 2025-11-07 12:39:08.253068+00 2025-11-07 12:39:08.253073+00 f t TOTAL 0.00 4 11643 \N +464386 2025-11-07 12:39:08.254153+00 2025-11-07 12:39:08.254159+00 f t ADELANTO 0.00 5 11643 \N +478782 2025-11-10 21:31:42.161472+00 2025-11-10 21:31:42.161484+00 f t SUBTOTAL 0.00 1 11968 \N +478783 2025-11-10 21:31:42.163659+00 2025-11-10 21:31:42.163665+00 f t COSTO_SERVICIO 0.00 2 11968 \N +478784 2025-11-10 21:31:42.164719+00 2025-11-10 21:31:42.164727+00 f t DESCUENTO 0.00 3 11968 \N +478785 2025-11-10 21:31:42.165893+00 2025-11-10 21:31:42.165898+00 f t TOTAL 0.00 4 11968 \N +478786 2025-11-10 21:31:42.166969+00 2025-11-10 21:31:42.166974+00 f t ADELANTO 0.00 5 11968 \N +479192 2025-11-10 23:16:03.814271+00 2025-11-10 23:16:03.814283+00 f t SUBTOTAL 70000.00 1 11978 \N +479193 2025-11-10 23:16:03.816303+00 2025-11-10 23:16:03.816312+00 f t COSTO_SERVICIO 0.00 2 11978 \N +479194 2025-11-10 23:16:03.81779+00 2025-11-10 23:16:03.817797+00 f t DESCUENTO 0.00 3 11978 \N +479195 2025-11-10 23:16:03.819124+00 2025-11-10 23:16:03.819183+00 f t TOTAL 70000.00 4 11978 \N +479196 2025-11-10 23:16:03.820766+00 2025-11-10 23:16:03.820774+00 f t ADELANTO 19000.00 5 11978 \N +464447 2025-11-07 12:50:47.378027+00 2025-11-07 12:50:47.378039+00 f t SUBTOTAL 0.00 1 11645 \N +464448 2025-11-07 12:50:47.380014+00 2025-11-07 12:50:47.380024+00 f t COSTO_SERVICIO 0.00 2 11645 \N +464449 2025-11-07 12:50:47.381237+00 2025-11-07 12:50:47.381245+00 f t DESCUENTO 0.00 3 11645 \N +464450 2025-11-07 12:50:47.382332+00 2025-11-07 12:50:47.38234+00 f t TOTAL 0.00 4 11645 \N +464451 2025-11-07 12:50:47.383689+00 2025-11-07 12:50:47.383694+00 f t ADELANTO 0.00 5 11645 \N +526027 2025-11-21 09:57:26.857346+00 2025-11-21 09:57:26.857354+00 f t SUBTOTAL 78000.00 1 13079 \N +526028 2025-11-21 09:57:26.859504+00 2025-11-21 09:57:26.85951+00 f t COSTO_SERVICIO 0.00 2 13079 \N +468897 2025-11-08 13:50:44.132512+00 2025-11-08 13:50:44.132524+00 f t SUBTOTAL 0.00 1 11742 \N +468898 2025-11-08 13:50:44.134984+00 2025-11-08 13:50:44.134994+00 f t COSTO_SERVICIO 0.00 2 11742 \N +468899 2025-11-08 13:50:44.136367+00 2025-11-08 13:50:44.136373+00 f t DESCUENTO 0.00 3 11742 \N +468900 2025-11-08 13:50:44.137418+00 2025-11-08 13:50:44.137423+00 f t TOTAL 0.00 4 11742 \N +468901 2025-11-08 13:50:44.138551+00 2025-11-08 13:50:44.138556+00 f t ADELANTO 0.00 5 11742 \N +526029 2025-11-21 09:57:26.860662+00 2025-11-21 09:57:26.860668+00 f t DESCUENTO 0.00 3 13079 \N +526030 2025-11-21 09:57:26.861706+00 2025-11-21 09:57:26.861711+00 f t TOTAL 78000.00 4 13079 \N +526031 2025-11-21 09:57:26.862768+00 2025-11-21 09:57:26.862773+00 f t ADELANTO 13000.00 5 13079 \N +480052 2025-11-11 10:30:06.826206+00 2025-11-11 10:30:06.826221+00 f t SUBTOTAL 0.00 1 12001 \N +480053 2025-11-11 10:30:06.82902+00 2025-11-11 10:30:06.829033+00 f t COSTO_SERVICIO 0.00 2 12001 \N +480054 2025-11-11 10:30:06.831539+00 2025-11-11 10:30:06.831552+00 f t DESCUENTO 0.00 3 12001 \N +480055 2025-11-11 10:30:06.833429+00 2025-11-11 10:30:06.833441+00 f t TOTAL 0.00 4 12001 \N +480056 2025-11-11 10:30:06.835453+00 2025-11-11 10:30:06.835462+00 f t ADELANTO 0.00 5 12001 \N +469492 2025-11-08 14:58:22.006245+00 2025-11-08 14:58:22.006252+00 f t SUBTOTAL 46000.00 1 11751 \N +469493 2025-11-08 14:58:22.008049+00 2025-11-08 14:58:22.008055+00 f t COSTO_SERVICIO 0.00 2 11751 \N +469494 2025-11-08 14:58:22.009267+00 2025-11-08 14:58:22.009273+00 f t DESCUENTO 0.00 3 11751 \N +469495 2025-11-08 14:58:22.01034+00 2025-11-08 14:58:22.010346+00 f t TOTAL 46000.00 4 11751 \N +469496 2025-11-08 14:58:22.011378+00 2025-11-08 14:58:22.011383+00 f t ADELANTO 11000.00 5 11751 \N +482522 2025-11-11 19:41:46.848277+00 2025-11-11 19:41:46.848284+00 f t SUBTOTAL 30000.00 1 12047 \N +482523 2025-11-11 19:41:46.850034+00 2025-11-11 19:41:46.850041+00 f t COSTO_SERVICIO 0.00 2 12047 \N +482524 2025-11-11 19:41:46.850939+00 2025-11-11 19:41:46.850944+00 f t DESCUENTO 0.00 3 12047 \N +482525 2025-11-11 19:41:46.851767+00 2025-11-11 19:41:46.851771+00 f t TOTAL 30000.00 4 12047 \N +482526 2025-11-11 19:41:46.852676+00 2025-11-11 19:41:46.85268+00 f t ADELANTO 30000.00 5 12047 \N +471592 2025-11-09 01:22:20.11917+00 2025-11-09 01:22:20.119177+00 f t SUBTOTAL 92000.00 1 11749 \N +471593 2025-11-09 01:22:20.121321+00 2025-11-09 01:22:20.121329+00 f t COSTO_SERVICIO 0.00 2 11749 \N +471594 2025-11-09 01:22:20.122582+00 2025-11-09 01:22:20.122589+00 f t DESCUENTO 9200.00 3 11749 \N +471595 2025-11-09 01:22:20.123589+00 2025-11-09 01:22:20.123597+00 f t TOTAL 82800.00 4 11749 \N +471596 2025-11-09 01:22:20.124568+00 2025-11-09 01:22:20.124573+00 f t ADELANTO 22000.00 5 11749 \N +482887 2025-11-11 21:00:19.046086+00 2025-11-11 21:00:19.046099+00 f t SUBTOTAL 23000.00 1 12053 \N +482888 2025-11-11 21:00:19.049759+00 2025-11-11 21:00:19.049773+00 f t COSTO_SERVICIO 0.00 2 12053 \N +482889 2025-11-11 21:00:19.052951+00 2025-11-11 21:00:19.052965+00 f t DESCUENTO 0.00 3 12053 \N +482890 2025-11-11 21:00:19.05731+00 2025-11-11 21:00:19.057325+00 f t TOTAL 23000.00 4 12053 \N +482891 2025-11-11 21:00:19.062621+00 2025-11-11 21:00:19.062637+00 f t ADELANTO 5500.00 5 12053 \N +464627 2025-11-07 12:53:26.474803+00 2025-11-07 12:53:26.47481+00 f t SUBTOTAL 216000.00 1 11646 \N +464628 2025-11-07 12:53:26.476395+00 2025-11-07 12:53:26.476401+00 f t COSTO_SERVICIO 0.00 2 11646 \N +464629 2025-11-07 12:53:26.477556+00 2025-11-07 12:53:26.477561+00 f t DESCUENTO 18400.00 3 11646 \N +464630 2025-11-07 12:53:26.478447+00 2025-11-07 12:53:26.478452+00 f t TOTAL 197600.00 4 11646 \N +464631 2025-11-07 12:53:26.479411+00 2025-11-07 12:53:26.479416+00 f t ADELANTO 54000.00 5 11646 \N +483447 2025-11-11 22:50:40.040098+00 2025-11-11 22:50:40.040106+00 f t SUBTOTAL 60000.00 1 12074 \N +483448 2025-11-11 22:50:40.041787+00 2025-11-11 22:50:40.041794+00 f t COSTO_SERVICIO 0.00 2 12074 \N +464637 2025-11-07 12:53:39.816573+00 2025-11-07 12:53:39.81658+00 f t SUBTOTAL 46000.00 1 11647 \N +464638 2025-11-07 12:53:39.818073+00 2025-11-07 12:53:39.81808+00 f t COSTO_SERVICIO 0.00 2 11647 \N +464639 2025-11-07 12:53:39.819335+00 2025-11-07 12:53:39.819341+00 f t DESCUENTO 0.00 3 11647 \N +464640 2025-11-07 12:53:39.820319+00 2025-11-07 12:53:39.820324+00 f t TOTAL 46000.00 4 11647 \N +464641 2025-11-07 12:53:39.821232+00 2025-11-07 12:53:39.821237+00 f t ADELANTO 11000.00 5 11647 \N +483449 2025-11-11 22:50:40.043011+00 2025-11-11 22:50:40.043017+00 f t DESCUENTO 0.00 3 12074 \N +483450 2025-11-11 22:50:40.04397+00 2025-11-11 22:50:40.043975+00 f t TOTAL 60000.00 4 12074 \N +483451 2025-11-11 22:50:40.04506+00 2025-11-11 22:50:40.045066+00 f t ADELANTO 50000.00 5 12074 \N +464647 2025-11-07 13:13:39.565499+00 2025-11-07 13:13:39.565506+00 f t SUBTOTAL 0.00 1 11648 \N +464648 2025-11-07 13:13:39.566759+00 2025-11-07 13:13:39.566764+00 f t COSTO_SERVICIO 0.00 2 11648 \N +464649 2025-11-07 13:13:39.567928+00 2025-11-07 13:13:39.567934+00 f t DESCUENTO 0.00 3 11648 \N +464650 2025-11-07 13:13:39.568857+00 2025-11-07 13:13:39.568862+00 f t TOTAL 0.00 4 11648 \N +464651 2025-11-07 13:13:39.56967+00 2025-11-07 13:13:39.569675+00 f t ADELANTO 0.00 5 11648 \N +483672 2025-11-11 23:38:15.568681+00 2025-11-11 23:38:15.56869+00 f t SUBTOTAL 0.00 1 12081 \N +483673 2025-11-11 23:38:15.569835+00 2025-11-11 23:38:15.569842+00 f t COSTO_SERVICIO 0.00 2 12081 \N +483674 2025-11-11 23:38:15.570658+00 2025-11-11 23:38:15.570663+00 f t DESCUENTO 0.00 3 12081 \N +483675 2025-11-11 23:38:15.571698+00 2025-11-11 23:38:15.571706+00 f t TOTAL 0.00 4 12081 \N +483676 2025-11-11 23:38:15.57284+00 2025-11-11 23:38:15.572848+00 f t ADELANTO 0.00 5 12081 \N +472822 2025-11-09 14:20:28.44839+00 2025-11-09 14:20:28.448399+00 f t SUBTOTAL 0.00 1 11830 \N +472823 2025-11-09 14:20:28.450322+00 2025-11-09 14:20:28.450327+00 f t COSTO_SERVICIO 0.00 2 11830 \N +472824 2025-11-09 14:20:28.4516+00 2025-11-09 14:20:28.451605+00 f t DESCUENTO 0.00 3 11830 \N +472825 2025-11-09 14:20:28.452631+00 2025-11-09 14:20:28.452636+00 f t TOTAL 0.00 4 11830 \N +472826 2025-11-09 14:20:28.453592+00 2025-11-09 14:20:28.453596+00 f t ADELANTO 0.00 5 11830 \N +523602 2025-11-20 20:48:38.340082+00 2025-11-20 20:48:38.340093+00 f t SUBTOTAL 54000.00 1 13023 \N +464692 2025-11-07 13:35:57.531687+00 2025-11-07 13:35:57.531697+00 f t SUBTOTAL 0.00 1 11650 \N +464693 2025-11-07 13:35:57.533936+00 2025-11-07 13:35:57.533942+00 f t COSTO_SERVICIO 0.00 2 11650 \N +464694 2025-11-07 13:35:57.535924+00 2025-11-07 13:35:57.535935+00 f t DESCUENTO 0.00 3 11650 \N +464695 2025-11-07 13:35:57.537716+00 2025-11-07 13:35:57.537724+00 f t TOTAL 0.00 4 11650 \N +464696 2025-11-07 13:35:57.539125+00 2025-11-07 13:35:57.539172+00 f t ADELANTO 0.00 5 11650 \N +464727 2025-11-07 13:37:11.289897+00 2025-11-07 13:37:11.289904+00 f t SUBTOTAL 70000.00 1 11651 \N +464728 2025-11-07 13:37:11.291428+00 2025-11-07 13:37:11.291434+00 f t COSTO_SERVICIO 0.00 2 11651 \N +464729 2025-11-07 13:37:11.292396+00 2025-11-07 13:37:11.292404+00 f t DESCUENTO 0.00 3 11651 \N +464730 2025-11-07 13:37:11.293286+00 2025-11-07 13:37:11.293291+00 f t TOTAL 70000.00 4 11651 \N +464731 2025-11-07 13:37:11.294091+00 2025-11-07 13:37:11.294096+00 f t ADELANTO 19000.00 5 11651 \N +464737 2025-11-07 13:38:41.808131+00 2025-11-07 13:38:41.808142+00 f t SUBTOTAL 0.00 1 11652 \N +464738 2025-11-07 13:38:41.809471+00 2025-11-07 13:38:41.809477+00 f t COSTO_SERVICIO 0.00 2 11652 \N +464739 2025-11-07 13:38:41.810589+00 2025-11-07 13:38:41.810597+00 f t DESCUENTO 0.00 3 11652 \N +464740 2025-11-07 13:38:41.819546+00 2025-11-07 13:38:41.819554+00 f t TOTAL 0.00 4 11652 \N +464741 2025-11-07 13:38:41.821154+00 2025-11-07 13:38:41.821162+00 f t ADELANTO 0.00 5 11652 \N +479202 2025-11-10 23:37:18.421025+00 2025-11-10 23:37:18.421033+00 f t SUBTOTAL 0.00 1 11979 \N +479203 2025-11-10 23:37:18.422713+00 2025-11-10 23:37:18.422719+00 f t COSTO_SERVICIO 0.00 2 11979 \N +479204 2025-11-10 23:37:18.424031+00 2025-11-10 23:37:18.424036+00 f t DESCUENTO 0.00 3 11979 \N +479205 2025-11-10 23:37:18.425058+00 2025-11-10 23:37:18.425064+00 f t TOTAL 0.00 4 11979 \N +479206 2025-11-10 23:37:18.425913+00 2025-11-10 23:37:18.425917+00 f t ADELANTO 0.00 5 11979 \N +464772 2025-11-07 13:46:31.017396+00 2025-11-07 13:46:31.017405+00 f t SUBTOTAL 0.00 1 11653 \N +464773 2025-11-07 13:46:31.019275+00 2025-11-07 13:46:31.019283+00 f t COSTO_SERVICIO 0.00 2 11653 \N +464774 2025-11-07 13:46:31.020362+00 2025-11-07 13:46:31.020367+00 f t DESCUENTO 0.00 3 11653 \N +464775 2025-11-07 13:46:31.021344+00 2025-11-07 13:46:31.021349+00 f t TOTAL 0.00 4 11653 \N +464776 2025-11-07 13:46:31.022259+00 2025-11-07 13:46:31.022265+00 f t ADELANTO 0.00 5 11653 \N +491317 2025-11-13 20:34:11.817352+00 2025-11-13 20:34:11.817358+00 f t SUBTOTAL 46000.00 1 12267 \N +491318 2025-11-13 20:34:11.81896+00 2025-11-13 20:34:11.818965+00 f t COSTO_SERVICIO 0.00 2 12267 \N +491319 2025-11-13 20:34:11.819959+00 2025-11-13 20:34:11.819964+00 f t DESCUENTO 0.00 3 12267 \N +491320 2025-11-13 20:34:11.820989+00 2025-11-13 20:34:11.820996+00 f t TOTAL 46000.00 4 12267 \N +491321 2025-11-13 20:34:11.8222+00 2025-11-13 20:34:11.822209+00 f t ADELANTO 11000.00 5 12267 \N +480217 2025-11-11 10:58:01.495117+00 2025-11-11 10:58:01.49516+00 f t SUBTOTAL 0.00 1 12005 \N +480218 2025-11-11 10:58:01.497486+00 2025-11-11 10:58:01.497497+00 f t COSTO_SERVICIO 0.00 2 12005 \N +480219 2025-11-11 10:58:01.499125+00 2025-11-11 10:58:01.499157+00 f t DESCUENTO 0.00 3 12005 \N +480220 2025-11-11 10:58:01.500629+00 2025-11-11 10:58:01.500637+00 f t TOTAL 0.00 4 12005 \N +480221 2025-11-11 10:58:01.502002+00 2025-11-11 10:58:01.502012+00 f t ADELANTO 0.00 5 12005 \N +480357 2025-11-11 11:10:10.419785+00 2025-11-11 11:10:10.419795+00 f t SUBTOTAL 34000.00 1 12006 \N +480358 2025-11-11 11:10:10.423768+00 2025-11-11 11:10:10.423777+00 f t COSTO_SERVICIO 0.00 2 12006 \N +480359 2025-11-11 11:10:10.42582+00 2025-11-11 11:10:10.425829+00 f t DESCUENTO 0.00 3 12006 \N +480360 2025-11-11 11:10:10.427577+00 2025-11-11 11:10:10.427583+00 f t TOTAL 34000.00 4 12006 \N +480361 2025-11-11 11:10:10.428813+00 2025-11-11 11:10:10.428818+00 f t ADELANTO 34000.00 5 12006 \N +464802 2025-11-07 13:56:44.161664+00 2025-11-07 13:56:44.161675+00 f t SUBTOTAL 0.00 1 11654 \N +464803 2025-11-07 13:56:44.163718+00 2025-11-07 13:56:44.163725+00 f t COSTO_SERVICIO 0.00 2 11654 \N +464804 2025-11-07 13:56:44.16509+00 2025-11-07 13:56:44.165098+00 f t DESCUENTO 0.00 3 11654 \N +464805 2025-11-07 13:56:44.16644+00 2025-11-07 13:56:44.166446+00 f t TOTAL 0.00 4 11654 \N +464806 2025-11-07 13:56:44.167636+00 2025-11-07 13:56:44.167644+00 f t ADELANTO 0.00 5 11654 \N +470422 2025-11-08 18:12:50.138615+00 2025-11-08 18:12:50.138624+00 f t SUBTOTAL 46000.00 1 11770 \N +470423 2025-11-08 18:12:50.141022+00 2025-11-08 18:12:50.141029+00 f t COSTO_SERVICIO 0.00 2 11770 \N +470424 2025-11-08 18:12:50.142198+00 2025-11-08 18:12:50.142204+00 f t DESCUENTO 0.00 3 11770 \N +470425 2025-11-08 18:12:50.143233+00 2025-11-08 18:12:50.143238+00 f t TOTAL 46000.00 4 11770 \N +470426 2025-11-08 18:12:50.144055+00 2025-11-08 18:12:50.14406+00 f t ADELANTO 11000.00 5 11770 \N +470787 2025-11-08 19:49:38.222791+00 2025-11-08 19:49:38.222799+00 f t SUBTOTAL 46000.00 1 11783 \N +470788 2025-11-08 19:49:38.224581+00 2025-11-08 19:49:38.22459+00 f t COSTO_SERVICIO 0.00 2 11783 \N +470789 2025-11-08 19:49:38.225803+00 2025-11-08 19:49:38.225808+00 f t DESCUENTO 0.00 3 11783 \N +470790 2025-11-08 19:49:38.226979+00 2025-11-08 19:49:38.226984+00 f t TOTAL 46000.00 4 11783 \N +470791 2025-11-08 19:49:38.228052+00 2025-11-08 19:49:38.228058+00 f t ADELANTO 11000.00 5 11783 \N +470912 2025-11-08 21:08:32.85541+00 2025-11-08 21:08:32.855417+00 f t SUBTOTAL 46000.00 1 11788 \N +470913 2025-11-08 21:08:32.857188+00 2025-11-08 21:08:32.857196+00 f t COSTO_SERVICIO 0.00 2 11788 \N +470914 2025-11-08 21:08:32.858378+00 2025-11-08 21:08:32.858385+00 f t DESCUENTO 0.00 3 11788 \N +470915 2025-11-08 21:08:32.85942+00 2025-11-08 21:08:32.859425+00 f t TOTAL 46000.00 4 11788 \N +470916 2025-11-08 21:08:32.860334+00 2025-11-08 21:08:32.860339+00 f t ADELANTO 11000.00 5 11788 \N +482277 2025-11-11 18:52:27.718682+00 2025-11-11 18:52:27.718689+00 f t SUBTOTAL 61400.00 1 12042 \N +482278 2025-11-11 18:52:27.72044+00 2025-11-11 18:52:27.720446+00 f t COSTO_SERVICIO 0.00 2 12042 \N +482279 2025-11-11 18:52:27.721582+00 2025-11-11 18:52:27.721588+00 f t DESCUENTO 0.00 3 12042 \N +482280 2025-11-11 18:52:27.722744+00 2025-11-11 18:52:27.72275+00 f t TOTAL 61400.00 4 12042 \N +482281 2025-11-11 18:52:27.723667+00 2025-11-11 18:52:27.723673+00 f t ADELANTO 15400.00 5 12042 \N +471602 2025-11-09 01:23:44.242179+00 2025-11-09 01:23:44.242191+00 f t SUBTOTAL 0.00 1 11803 \N +471603 2025-11-09 01:23:44.243653+00 2025-11-09 01:23:44.243662+00 f t COSTO_SERVICIO 0.00 2 11803 \N +471604 2025-11-09 01:23:44.244887+00 2025-11-09 01:23:44.244896+00 f t DESCUENTO 0.00 3 11803 \N +471605 2025-11-09 01:23:44.246016+00 2025-11-09 01:23:44.246024+00 f t TOTAL 0.00 4 11803 \N +471606 2025-11-09 01:23:44.247156+00 2025-11-09 01:23:44.247163+00 f t ADELANTO 0.00 5 11803 \N +464917 2025-11-07 14:11:28.830142+00 2025-11-07 14:11:28.830149+00 f t SUBTOTAL 30000.00 1 11644 \N +464918 2025-11-07 14:11:28.832372+00 2025-11-07 14:11:28.832381+00 f t COSTO_SERVICIO 0.00 2 11644 \N +464919 2025-11-07 14:11:28.834056+00 2025-11-07 14:11:28.834063+00 f t DESCUENTO 0.00 3 11644 \N +464920 2025-11-07 14:11:28.835197+00 2025-11-07 14:11:28.835203+00 f t TOTAL 30000.00 4 11644 \N +464921 2025-11-07 14:11:28.836316+00 2025-11-07 14:11:28.836322+00 f t ADELANTO 30000.00 5 11644 \N +464947 2025-11-07 14:14:00.529205+00 2025-11-07 14:14:00.529218+00 f t SUBTOTAL 0.00 1 11655 \N +464948 2025-11-07 14:14:00.531234+00 2025-11-07 14:14:00.531245+00 f t COSTO_SERVICIO 0.00 2 11655 \N +464949 2025-11-07 14:14:00.532507+00 2025-11-07 14:14:00.532515+00 f t DESCUENTO 0.00 3 11655 \N +464950 2025-11-07 14:14:00.533591+00 2025-11-07 14:14:00.533599+00 f t TOTAL 0.00 4 11655 \N +464951 2025-11-07 14:14:00.534641+00 2025-11-07 14:14:00.534648+00 f t ADELANTO 0.00 5 11655 \N +464977 2025-11-07 14:14:49.603853+00 2025-11-07 14:14:49.603863+00 f t SUBTOTAL 98400.00 1 11649 \N +464978 2025-11-07 14:14:49.606295+00 2025-11-07 14:14:49.606304+00 f t COSTO_SERVICIO 0.00 2 11649 \N +464979 2025-11-07 14:14:49.607842+00 2025-11-07 14:14:49.607848+00 f t DESCUENTO 0.00 3 11649 \N +464980 2025-11-07 14:14:49.610164+00 2025-11-07 14:14:49.61017+00 f t TOTAL 98400.00 4 11649 \N +464981 2025-11-07 14:14:49.611442+00 2025-11-07 14:14:49.611447+00 f t ADELANTO 57900.00 5 11649 \N +523603 2025-11-20 20:48:38.342101+00 2025-11-20 20:48:38.342108+00 f t COSTO_SERVICIO 0.00 2 13023 \N +523604 2025-11-20 20:48:38.345113+00 2025-11-20 20:48:38.345122+00 f t DESCUENTO 0.00 3 13023 \N +523605 2025-11-20 20:48:38.346571+00 2025-11-20 20:48:38.346578+00 f t TOTAL 54000.00 4 13023 \N +523606 2025-11-20 20:48:38.347823+00 2025-11-20 20:48:38.347828+00 f t ADELANTO 13500.00 5 13023 \N +464992 2025-11-07 14:19:16.247519+00 2025-11-07 14:19:16.247529+00 f t SUBTOTAL 13200.00 1 11656 \N +464993 2025-11-07 14:19:16.249619+00 2025-11-07 14:19:16.249628+00 f t COSTO_SERVICIO 0.00 2 11656 \N +464994 2025-11-07 14:19:16.251112+00 2025-11-07 14:19:16.251122+00 f t DESCUENTO 0.00 3 11656 \N +464995 2025-11-07 14:19:16.252502+00 2025-11-07 14:19:16.252512+00 f t TOTAL 13200.00 4 11656 \N +464996 2025-11-07 14:19:16.255649+00 2025-11-07 14:19:16.255658+00 f t ADELANTO 13200.00 5 11656 \N +465002 2025-11-07 14:37:07.269213+00 2025-11-07 14:37:07.26922+00 f t SUBTOTAL 0.00 1 11657 \N +465003 2025-11-07 14:37:07.270569+00 2025-11-07 14:37:07.270574+00 f t COSTO_SERVICIO 0.00 2 11657 \N +465004 2025-11-07 14:37:07.271747+00 2025-11-07 14:37:07.271752+00 f t DESCUENTO 0.00 3 11657 \N +465005 2025-11-07 14:37:07.272794+00 2025-11-07 14:37:07.272799+00 f t TOTAL 0.00 4 11657 \N +465006 2025-11-07 14:37:07.274081+00 2025-11-07 14:37:07.274086+00 f t ADELANTO 0.00 5 11657 \N +468272 2025-11-08 05:29:28.507514+00 2025-11-08 05:29:28.507526+00 f t SUBTOTAL 72500.00 1 11727 \N +468273 2025-11-08 05:29:28.509316+00 2025-11-08 05:29:28.509323+00 f t COSTO_SERVICIO 0.00 2 11727 \N +468274 2025-11-08 05:29:28.510612+00 2025-11-08 05:29:28.510618+00 f t DESCUENTO 0.00 3 11727 \N +468275 2025-11-08 05:29:28.511825+00 2025-11-08 05:29:28.511833+00 f t TOTAL 72500.00 4 11727 \N +468276 2025-11-08 05:29:28.51322+00 2025-11-08 05:29:28.513228+00 f t ADELANTO 72500.00 5 11727 \N +465102 2025-11-07 14:48:38.592347+00 2025-11-07 14:48:38.592357+00 f t SUBTOTAL 54000.00 1 11658 \N +465103 2025-11-07 14:48:38.594071+00 2025-11-07 14:48:38.594078+00 f t COSTO_SERVICIO 0.00 2 11658 \N +465104 2025-11-07 14:48:38.595311+00 2025-11-07 14:48:38.595317+00 f t DESCUENTO 0.00 3 11658 \N +465105 2025-11-07 14:48:38.596421+00 2025-11-07 14:48:38.596428+00 f t TOTAL 54000.00 4 11658 \N +465106 2025-11-07 14:48:38.597663+00 2025-11-07 14:48:38.59767+00 f t ADELANTO 13500.00 5 11658 \N +465112 2025-11-07 14:48:46.400285+00 2025-11-07 14:48:46.400293+00 f t SUBTOTAL 0.00 1 11659 \N +465113 2025-11-07 14:48:46.402295+00 2025-11-07 14:48:46.402302+00 f t COSTO_SERVICIO 0.00 2 11659 \N +465114 2025-11-07 14:48:46.403725+00 2025-11-07 14:48:46.403733+00 f t DESCUENTO 0.00 3 11659 \N +465115 2025-11-07 14:48:46.405184+00 2025-11-07 14:48:46.40519+00 f t TOTAL 0.00 4 11659 \N +465116 2025-11-07 14:48:46.406474+00 2025-11-07 14:48:46.406479+00 f t ADELANTO 0.00 5 11659 \N +465127 2025-11-07 15:18:03.375075+00 2025-11-07 15:18:03.375083+00 f t SUBTOTAL 13200.00 1 11660 \N +465128 2025-11-07 15:18:03.376823+00 2025-11-07 15:18:03.376832+00 f t COSTO_SERVICIO 0.00 2 11660 \N +465129 2025-11-07 15:18:03.378188+00 2025-11-07 15:18:03.378199+00 f t DESCUENTO 0.00 3 11660 \N +465130 2025-11-07 15:18:03.379418+00 2025-11-07 15:18:03.379425+00 f t TOTAL 13200.00 4 11660 \N +465131 2025-11-07 15:18:03.380673+00 2025-11-07 15:18:03.38068+00 f t ADELANTO 13200.00 5 11660 \N +470432 2025-11-08 18:18:31.248994+00 2025-11-08 18:18:31.249006+00 f t SUBTOTAL 0.00 1 11771 \N +470433 2025-11-08 18:18:31.250591+00 2025-11-08 18:18:31.2506+00 f t COSTO_SERVICIO 0.00 2 11771 \N +470434 2025-11-08 18:18:31.252409+00 2025-11-08 18:18:31.252418+00 f t DESCUENTO 0.00 3 11771 \N +470435 2025-11-08 18:18:31.253767+00 2025-11-08 18:18:31.253774+00 f t TOTAL 0.00 4 11771 \N +470436 2025-11-08 18:18:31.255169+00 2025-11-08 18:18:31.255177+00 f t ADELANTO 0.00 5 11771 \N +470922 2025-11-08 21:09:20.553768+00 2025-11-08 21:09:20.553777+00 f t SUBTOTAL 0.00 1 11789 \N +470923 2025-11-08 21:09:20.555254+00 2025-11-08 21:09:20.55526+00 f t COSTO_SERVICIO 0.00 2 11789 \N +470924 2025-11-08 21:09:20.556327+00 2025-11-08 21:09:20.556333+00 f t DESCUENTO 0.00 3 11789 \N +470925 2025-11-08 21:09:20.55726+00 2025-11-08 21:09:20.557267+00 f t TOTAL 0.00 4 11789 \N +470926 2025-11-08 21:09:20.55819+00 2025-11-08 21:09:20.558195+00 f t ADELANTO 0.00 5 11789 \N +465177 2025-11-07 15:30:42.601949+00 2025-11-07 15:30:42.601956+00 f t SUBTOTAL 107000.00 1 11661 \N +465178 2025-11-07 15:30:42.603718+00 2025-11-07 15:30:42.603725+00 f t COSTO_SERVICIO 0.00 2 11661 \N +465179 2025-11-07 15:30:42.605029+00 2025-11-07 15:30:42.605034+00 f t DESCUENTO 0.00 3 11661 \N +465180 2025-11-07 15:30:42.606388+00 2025-11-07 15:30:42.606394+00 f t TOTAL 107000.00 4 11661 \N +465181 2025-11-07 15:30:42.607367+00 2025-11-07 15:30:42.607372+00 f t ADELANTO 12000.00 5 11661 \N +471612 2025-11-09 01:41:21.287027+00 2025-11-09 01:41:21.287037+00 f t SUBTOTAL 0.00 1 11804 \N +471613 2025-11-09 01:41:21.288302+00 2025-11-09 01:41:21.288308+00 f t COSTO_SERVICIO 0.00 2 11804 \N +471614 2025-11-09 01:41:21.289148+00 2025-11-09 01:41:21.289153+00 f t DESCUENTO 0.00 3 11804 \N +471615 2025-11-09 01:41:21.289899+00 2025-11-09 01:41:21.289904+00 f t TOTAL 0.00 4 11804 \N +471616 2025-11-09 01:41:21.290712+00 2025-11-09 01:41:21.290717+00 f t ADELANTO 0.00 5 11804 \N +471822 2025-11-09 02:27:48.851393+00 2025-11-09 02:27:48.851401+00 f t SUBTOTAL 70000.00 1 11806 \N +471823 2025-11-09 02:27:48.853577+00 2025-11-09 02:27:48.853585+00 f t COSTO_SERVICIO 0.00 2 11806 \N +471824 2025-11-09 02:27:48.854971+00 2025-11-09 02:27:48.854977+00 f t DESCUENTO 0.00 3 11806 \N +471825 2025-11-09 02:27:48.856915+00 2025-11-09 02:27:48.856924+00 f t TOTAL 70000.00 4 11806 \N +471826 2025-11-09 02:27:48.858395+00 2025-11-09 02:27:48.858403+00 f t ADELANTO 19000.00 5 11806 \N +465227 2025-11-07 15:56:23.058602+00 2025-11-07 15:56:23.05861+00 f t SUBTOTAL 30000.00 1 11662 \N +465228 2025-11-07 15:56:23.060398+00 2025-11-07 15:56:23.060404+00 f t COSTO_SERVICIO 0.00 2 11662 \N +465229 2025-11-07 15:56:23.061677+00 2025-11-07 15:56:23.061683+00 f t DESCUENTO 0.00 3 11662 \N +465230 2025-11-07 15:56:23.062994+00 2025-11-07 15:56:23.063003+00 f t TOTAL 30000.00 4 11662 \N +465231 2025-11-07 15:56:23.064403+00 2025-11-07 15:56:23.06441+00 f t ADELANTO 30000.00 5 11662 \N +472402 2025-11-09 10:36:26.334809+00 2025-11-09 10:36:26.334818+00 f t SUBTOTAL 0.00 1 11820 \N +472403 2025-11-09 10:36:26.336905+00 2025-11-09 10:36:26.336912+00 f t COSTO_SERVICIO 0.00 2 11820 \N +472404 2025-11-09 10:36:26.338+00 2025-11-09 10:36:26.338005+00 f t DESCUENTO 0.00 3 11820 \N +472405 2025-11-09 10:36:26.338893+00 2025-11-09 10:36:26.338899+00 f t TOTAL 0.00 4 11820 \N +472406 2025-11-09 10:36:26.339809+00 2025-11-09 10:36:26.339815+00 f t ADELANTO 0.00 5 11820 \N +465257 2025-11-07 15:59:03.79168+00 2025-11-07 15:59:03.791689+00 f t SUBTOTAL 88000.00 1 11663 \N +465258 2025-11-07 15:59:03.793521+00 2025-11-07 15:59:03.793529+00 f t COSTO_SERVICIO 0.00 2 11663 \N +465259 2025-11-07 15:59:03.794735+00 2025-11-07 15:59:03.794741+00 f t DESCUENTO 0.00 3 11663 \N +465260 2025-11-07 15:59:03.795791+00 2025-11-07 15:59:03.795797+00 f t TOTAL 88000.00 4 11663 \N +465261 2025-11-07 15:59:03.796775+00 2025-11-07 15:59:03.79678+00 f t ADELANTO 13000.00 5 11663 \N +465267 2025-11-07 16:24:43.534461+00 2025-11-07 16:24:43.53447+00 f t SUBTOTAL 0.00 1 11664 \N +465268 2025-11-07 16:24:43.535855+00 2025-11-07 16:24:43.535862+00 f t COSTO_SERVICIO 0.00 2 11664 \N +465269 2025-11-07 16:24:43.537223+00 2025-11-07 16:24:43.53723+00 f t DESCUENTO 0.00 3 11664 \N +465270 2025-11-07 16:24:43.538439+00 2025-11-07 16:24:43.538448+00 f t TOTAL 0.00 4 11664 \N +465271 2025-11-07 16:24:43.539554+00 2025-11-07 16:24:43.539559+00 f t ADELANTO 0.00 5 11664 \N +500067 2025-11-15 21:45:52.289128+00 2025-11-15 21:45:52.289137+00 f t SUBTOTAL 0.00 1 12476 \N +465277 2025-11-07 16:25:35.219738+00 2025-11-07 16:25:35.219748+00 f t SUBTOTAL 0.00 1 11665 \N +465278 2025-11-07 16:25:35.221174+00 2025-11-07 16:25:35.221182+00 f t COSTO_SERVICIO 0.00 2 11665 \N +465279 2025-11-07 16:25:35.222143+00 2025-11-07 16:25:35.222149+00 f t DESCUENTO 0.00 3 11665 \N +465280 2025-11-07 16:25:35.22319+00 2025-11-07 16:25:35.223195+00 f t TOTAL 0.00 4 11665 \N +465281 2025-11-07 16:25:35.224034+00 2025-11-07 16:25:35.224038+00 f t ADELANTO 0.00 5 11665 \N +489417 2025-11-13 07:37:35.375383+00 2025-11-13 07:37:35.375389+00 f t SUBTOTAL 70000.00 1 12211 \N +489418 2025-11-13 07:37:35.377142+00 2025-11-13 07:37:35.377148+00 f t COSTO_SERVICIO 0.00 2 12211 \N +489419 2025-11-13 07:37:35.378471+00 2025-11-13 07:37:35.378477+00 f t DESCUENTO 0.00 3 12211 \N +489420 2025-11-13 07:37:35.379605+00 2025-11-13 07:37:35.379611+00 f t TOTAL 70000.00 4 12211 \N +489421 2025-11-13 07:37:35.380625+00 2025-11-13 07:37:35.380632+00 f t ADELANTO 19000.00 5 12211 \N +478577 2025-11-10 21:16:59.665284+00 2025-11-10 21:16:59.665292+00 f t SUBTOTAL 55000.00 1 11963 \N +478578 2025-11-10 21:16:59.666904+00 2025-11-10 21:16:59.66691+00 f t COSTO_SERVICIO 0.00 2 11963 \N +478579 2025-11-10 21:16:59.668016+00 2025-11-10 21:16:59.668024+00 f t DESCUENTO 0.00 3 11963 \N +478580 2025-11-10 21:16:59.669092+00 2025-11-10 21:16:59.669098+00 f t TOTAL 55000.00 4 11963 \N +478581 2025-11-10 21:16:59.670064+00 2025-11-10 21:16:59.670073+00 f t ADELANTO 11000.00 5 11963 \N +465302 2025-11-07 16:48:05.753889+00 2025-11-07 16:48:05.753901+00 f t SUBTOTAL 148400.00 1 11666 \N +465303 2025-11-07 16:48:05.755675+00 2025-11-07 16:48:05.755685+00 f t COSTO_SERVICIO 0.00 2 11666 \N +465304 2025-11-07 16:48:05.757088+00 2025-11-07 16:48:05.757097+00 f t DESCUENTO 9200.00 3 11666 \N +465305 2025-11-07 16:48:05.758463+00 2025-11-07 16:48:05.75847+00 f t TOTAL 139200.00 4 11666 \N +465306 2025-11-07 16:48:05.759771+00 2025-11-07 16:48:05.75978+00 f t ADELANTO 35400.00 5 11666 \N +468607 2025-11-08 13:07:39.444169+00 2025-11-08 13:07:39.444179+00 f t SUBTOTAL 0.00 1 11737 \N +468608 2025-11-08 13:07:39.446273+00 2025-11-08 13:07:39.44628+00 f t COSTO_SERVICIO 0.00 2 11737 \N +468609 2025-11-08 13:07:39.447273+00 2025-11-08 13:07:39.447279+00 f t DESCUENTO 0.00 3 11737 \N +468610 2025-11-08 13:07:39.448241+00 2025-11-08 13:07:39.448246+00 f t TOTAL 0.00 4 11737 \N +468611 2025-11-08 13:07:39.449324+00 2025-11-08 13:07:39.449329+00 f t ADELANTO 0.00 5 11737 \N +465352 2025-11-07 16:55:49.793957+00 2025-11-07 16:55:49.793967+00 f t SUBTOTAL 140000.00 1 11667 \N +465353 2025-11-07 16:55:49.795615+00 2025-11-07 16:55:49.795622+00 f t COSTO_SERVICIO 0.00 2 11667 \N +465354 2025-11-07 16:55:49.796832+00 2025-11-07 16:55:49.796837+00 f t DESCUENTO 9200.00 3 11667 \N +465355 2025-11-07 16:55:49.798136+00 2025-11-07 16:55:49.798145+00 f t TOTAL 130800.00 4 11667 \N +465356 2025-11-07 16:55:49.79949+00 2025-11-07 16:55:49.799495+00 f t ADELANTO 38000.00 5 11667 \N +465362 2025-11-07 16:57:50.417484+00 2025-11-07 16:57:50.417495+00 f t SUBTOTAL 0.00 1 11668 \N +465363 2025-11-07 16:57:50.418825+00 2025-11-07 16:57:50.418832+00 f t COSTO_SERVICIO 0.00 2 11668 \N +465364 2025-11-07 16:57:50.419892+00 2025-11-07 16:57:50.419902+00 f t DESCUENTO 0.00 3 11668 \N +465365 2025-11-07 16:57:50.420918+00 2025-11-07 16:57:50.420923+00 f t TOTAL 0.00 4 11668 \N +465366 2025-11-07 16:57:50.421822+00 2025-11-07 16:57:50.421827+00 f t ADELANTO 0.00 5 11668 \N +469782 2025-11-08 15:44:10.000329+00 2025-11-08 15:44:10.000341+00 f t SUBTOTAL 78000.00 1 11756 \N +469783 2025-11-08 15:44:10.002978+00 2025-11-08 15:44:10.002989+00 f t COSTO_SERVICIO 0.00 2 11756 \N +469784 2025-11-08 15:44:10.005036+00 2025-11-08 15:44:10.005046+00 f t DESCUENTO 0.00 3 11756 \N +469785 2025-11-08 15:44:10.007242+00 2025-11-08 15:44:10.007253+00 f t TOTAL 78000.00 4 11756 \N +469786 2025-11-08 15:44:10.009097+00 2025-11-08 15:44:10.009107+00 f t ADELANTO 13000.00 5 11756 \N +465422 2025-11-07 17:03:08.30637+00 2025-11-07 17:03:08.306378+00 f t SUBTOTAL 107000.00 1 11669 \N +465423 2025-11-07 17:03:08.307854+00 2025-11-07 17:03:08.307859+00 f t COSTO_SERVICIO 0.00 2 11669 \N +465424 2025-11-07 17:03:08.308927+00 2025-11-07 17:03:08.308932+00 f t DESCUENTO 0.00 3 11669 \N +465425 2025-11-07 17:03:08.309897+00 2025-11-07 17:03:08.309902+00 f t TOTAL 107000.00 4 11669 \N +465426 2025-11-07 17:03:08.310902+00 2025-11-07 17:03:08.310908+00 f t ADELANTO 12000.00 5 11669 \N +465437 2025-11-07 17:19:03.562746+00 2025-11-07 17:19:03.562758+00 f t SUBTOTAL 88000.00 1 11670 \N +465438 2025-11-07 17:19:03.565282+00 2025-11-07 17:19:03.565291+00 f t COSTO_SERVICIO 0.00 2 11670 \N +465439 2025-11-07 17:19:03.566777+00 2025-11-07 17:19:03.566784+00 f t DESCUENTO 0.00 3 11670 \N +465440 2025-11-07 17:19:03.568175+00 2025-11-07 17:19:03.568182+00 f t TOTAL 88000.00 4 11670 \N +465441 2025-11-07 17:19:03.569342+00 2025-11-07 17:19:03.569348+00 f t ADELANTO 13000.00 5 11670 \N +470802 2025-11-08 19:50:37.793827+00 2025-11-08 19:50:37.793838+00 f t SUBTOTAL 13200.00 1 11784 \N +470803 2025-11-08 19:50:37.795754+00 2025-11-08 19:50:37.795764+00 f t COSTO_SERVICIO 0.00 2 11784 \N +470804 2025-11-08 19:50:37.796999+00 2025-11-08 19:50:37.797006+00 f t DESCUENTO 0.00 3 11784 \N +470805 2025-11-08 19:50:37.798182+00 2025-11-08 19:50:37.79819+00 f t TOTAL 13200.00 4 11784 \N +470806 2025-11-08 19:50:37.799706+00 2025-11-08 19:50:37.799713+00 f t ADELANTO 13200.00 5 11784 \N +465447 2025-11-07 17:42:44.26985+00 2025-11-07 17:42:44.26986+00 f t SUBTOTAL 0.00 1 11671 \N +465448 2025-11-07 17:42:44.271302+00 2025-11-07 17:42:44.271308+00 f t COSTO_SERVICIO 0.00 2 11671 \N +465449 2025-11-07 17:42:44.272428+00 2025-11-07 17:42:44.272435+00 f t DESCUENTO 0.00 3 11671 \N +465450 2025-11-07 17:42:44.273662+00 2025-11-07 17:42:44.273669+00 f t TOTAL 0.00 4 11671 \N +465451 2025-11-07 17:42:44.274792+00 2025-11-07 17:42:44.274797+00 f t ADELANTO 0.00 5 11671 \N +471162 2025-11-08 22:15:59.800687+00 2025-11-08 22:15:59.800696+00 f t SUBTOTAL 0.00 1 11795 \N +471163 2025-11-08 22:15:59.801977+00 2025-11-08 22:15:59.801983+00 f t COSTO_SERVICIO 0.00 2 11795 \N +471164 2025-11-08 22:15:59.802924+00 2025-11-08 22:15:59.802929+00 f t DESCUENTO 0.00 3 11795 \N +471165 2025-11-08 22:15:59.804201+00 2025-11-08 22:15:59.804208+00 f t TOTAL 0.00 4 11795 \N +471166 2025-11-08 22:15:59.805187+00 2025-11-08 22:15:59.805192+00 f t ADELANTO 0.00 5 11795 \N +465497 2025-11-07 17:53:05.730338+00 2025-11-07 17:53:05.730346+00 f t SUBTOTAL 209000.00 1 11672 \N +465498 2025-11-07 17:53:05.732418+00 2025-11-07 17:53:05.732425+00 f t COSTO_SERVICIO 0.00 2 11672 \N +465499 2025-11-07 17:53:05.733908+00 2025-11-07 17:53:05.733914+00 f t DESCUENTO 0.00 3 11672 \N +465500 2025-11-07 17:53:05.735765+00 2025-11-07 17:53:05.735772+00 f t TOTAL 209000.00 4 11672 \N +465501 2025-11-07 17:53:05.7371+00 2025-11-07 17:53:05.737105+00 f t ADELANTO 39000.00 5 11672 \N +472412 2025-11-09 11:40:57.697212+00 2025-11-09 11:40:57.697222+00 f t SUBTOTAL 0.00 1 11821 \N +472413 2025-11-09 11:40:57.698659+00 2025-11-09 11:40:57.698666+00 f t COSTO_SERVICIO 0.00 2 11821 \N +472414 2025-11-09 11:40:57.700072+00 2025-11-09 11:40:57.700078+00 f t DESCUENTO 0.00 3 11821 \N +472415 2025-11-09 11:40:57.701143+00 2025-11-09 11:40:57.701149+00 f t TOTAL 0.00 4 11821 \N +472416 2025-11-09 11:40:57.702377+00 2025-11-09 11:40:57.702383+00 f t ADELANTO 0.00 5 11821 \N +500068 2025-11-15 21:45:52.290743+00 2025-11-15 21:45:52.29075+00 f t COSTO_SERVICIO 0.00 2 12476 \N +500069 2025-11-15 21:45:52.291974+00 2025-11-15 21:45:52.29198+00 f t DESCUENTO 0.00 3 12476 \N +500070 2025-11-15 21:45:52.292844+00 2025-11-15 21:45:52.292849+00 f t TOTAL 0.00 4 12476 \N +500071 2025-11-15 21:45:52.293895+00 2025-11-15 21:45:52.293901+00 f t ADELANTO 0.00 5 12476 \N +500377 2025-11-16 05:04:00.763423+00 2025-11-16 05:04:00.763433+00 f t SUBTOTAL 30000.00 1 12484 \N +465602 2025-11-07 18:18:31.147316+00 2025-11-07 18:18:31.147325+00 f t SUBTOTAL 0.00 1 11674 \N +465603 2025-11-07 18:18:31.149473+00 2025-11-07 18:18:31.149481+00 f t COSTO_SERVICIO 0.00 2 11674 \N +465604 2025-11-07 18:18:31.150644+00 2025-11-07 18:18:31.150651+00 f t DESCUENTO 0.00 3 11674 \N +465605 2025-11-07 18:18:31.151802+00 2025-11-07 18:18:31.151808+00 f t TOTAL 0.00 4 11674 \N +465606 2025-11-07 18:18:31.154147+00 2025-11-07 18:18:31.154154+00 f t ADELANTO 0.00 5 11674 \N +480512 2025-11-11 13:01:49.354813+00 2025-11-11 13:01:49.361434+00 f t SUBTOTAL 0.00 1 12009 \N +480513 2025-11-11 13:01:51.534692+00 2025-11-11 13:01:51.541344+00 f t COSTO_SERVICIO 0.00 2 12009 \N +480514 2025-11-11 13:01:52.120351+00 2025-11-11 13:01:52.136709+00 f t DESCUENTO 0.00 3 12009 \N +480515 2025-11-11 13:01:53.221494+00 2025-11-11 13:01:53.236227+00 f t TOTAL 0.00 4 12009 \N +480516 2025-11-11 13:01:54.239843+00 2025-11-11 13:01:54.264944+00 f t ADELANTO 0.00 5 12009 \N +465672 2025-11-07 18:42:11.790453+00 2025-11-07 18:42:11.790463+00 f t SUBTOTAL 0.00 1 11675 \N +465673 2025-11-07 18:42:11.79237+00 2025-11-07 18:42:11.792378+00 f t COSTO_SERVICIO 0.00 2 11675 \N +465674 2025-11-07 18:42:11.793549+00 2025-11-07 18:42:11.793555+00 f t DESCUENTO 0.00 3 11675 \N +465675 2025-11-07 18:42:11.794522+00 2025-11-07 18:42:11.794527+00 f t TOTAL 0.00 4 11675 \N +465676 2025-11-07 18:42:11.795435+00 2025-11-07 18:42:11.79544+00 f t ADELANTO 0.00 5 11675 \N +470557 2025-11-08 18:34:05.152248+00 2025-11-08 18:34:05.152262+00 f t SUBTOTAL 0.00 1 11774 \N +470558 2025-11-08 18:34:05.154995+00 2025-11-08 18:34:05.155007+00 f t COSTO_SERVICIO 0.00 2 11774 \N +470559 2025-11-08 18:34:05.156754+00 2025-11-08 18:34:05.156764+00 f t DESCUENTO 0.00 3 11774 \N +470560 2025-11-08 18:34:05.158398+00 2025-11-08 18:34:05.158405+00 f t TOTAL 0.00 4 11774 \N +470561 2025-11-08 18:34:05.159709+00 2025-11-08 18:34:05.159715+00 f t ADELANTO 0.00 5 11774 \N +470812 2025-11-08 20:13:00.888179+00 2025-11-08 20:13:00.88819+00 f t SUBTOTAL 0.00 1 11785 \N +470813 2025-11-08 20:13:00.890017+00 2025-11-08 20:13:00.890028+00 f t COSTO_SERVICIO 0.00 2 11785 \N +470814 2025-11-08 20:13:00.891647+00 2025-11-08 20:13:00.891655+00 f t DESCUENTO 0.00 3 11785 \N +465712 2025-11-07 18:44:12.013851+00 2025-11-07 18:44:12.013858+00 f t SUBTOTAL 46000.00 1 11676 \N +465713 2025-11-07 18:44:12.015563+00 2025-11-07 18:44:12.015572+00 f t COSTO_SERVICIO 0.00 2 11676 \N +465714 2025-11-07 18:44:12.01693+00 2025-11-07 18:44:12.016936+00 f t DESCUENTO 0.00 3 11676 \N +465715 2025-11-07 18:44:12.018221+00 2025-11-07 18:44:12.018228+00 f t TOTAL 46000.00 4 11676 \N +465716 2025-11-07 18:44:12.019472+00 2025-11-07 18:44:12.019478+00 f t ADELANTO 11000.00 5 11676 \N +470815 2025-11-08 20:13:00.893005+00 2025-11-08 20:13:00.89301+00 f t TOTAL 0.00 4 11785 \N +470816 2025-11-08 20:13:00.894067+00 2025-11-08 20:13:00.894072+00 f t ADELANTO 0.00 5 11785 \N +471052 2025-11-08 22:03:46.29441+00 2025-11-08 22:03:46.294418+00 f t SUBTOTAL 0.00 1 11793 \N +471053 2025-11-08 22:03:46.296418+00 2025-11-08 22:03:46.296425+00 f t COSTO_SERVICIO 0.00 2 11793 \N +471054 2025-11-08 22:03:46.297472+00 2025-11-08 22:03:46.297478+00 f t DESCUENTO 0.00 3 11793 \N +471055 2025-11-08 22:03:46.298466+00 2025-11-08 22:03:46.298474+00 f t TOTAL 0.00 4 11793 \N +471056 2025-11-08 22:03:46.29945+00 2025-11-08 22:03:46.299455+00 f t ADELANTO 0.00 5 11793 \N +471287 2025-11-09 00:32:28.114195+00 2025-11-09 00:32:28.114206+00 f t SUBTOTAL 55000.00 1 11799 \N +471288 2025-11-09 00:32:28.115824+00 2025-11-09 00:32:28.11583+00 f t COSTO_SERVICIO 0.00 2 11799 \N +471289 2025-11-09 00:32:28.11692+00 2025-11-09 00:32:28.116926+00 f t DESCUENTO 0.00 3 11799 \N +471290 2025-11-09 00:32:28.117988+00 2025-11-09 00:32:28.117993+00 f t TOTAL 55000.00 4 11799 \N +471291 2025-11-09 00:32:28.119102+00 2025-11-09 00:32:28.119107+00 f t ADELANTO 11000.00 5 11799 \N +465742 2025-11-07 18:50:50.682352+00 2025-11-07 18:50:50.682361+00 f t SUBTOTAL 121000.00 1 11677 \N +465743 2025-11-07 18:50:50.684105+00 2025-11-07 18:50:50.684112+00 f t COSTO_SERVICIO 0.00 2 11677 \N +465744 2025-11-07 18:50:50.685786+00 2025-11-07 18:50:50.685793+00 f t DESCUENTO 0.00 3 11677 \N +465745 2025-11-07 18:50:50.686924+00 2025-11-07 18:50:50.68693+00 f t TOTAL 121000.00 4 11677 \N +465746 2025-11-07 18:50:50.687887+00 2025-11-07 18:50:50.687892+00 f t ADELANTO 26000.00 5 11677 \N +482152 2025-11-11 18:26:42.30444+00 2025-11-11 18:26:42.304448+00 f t SUBTOTAL 55000.00 1 12040 \N +482153 2025-11-11 18:26:42.306222+00 2025-11-11 18:26:42.306227+00 f t COSTO_SERVICIO 0.00 2 12040 \N +482154 2025-11-11 18:26:42.307164+00 2025-11-11 18:26:42.307169+00 f t DESCUENTO 0.00 3 12040 \N +482155 2025-11-11 18:26:42.30811+00 2025-11-11 18:26:42.308115+00 f t TOTAL 55000.00 4 12040 \N +482156 2025-11-11 18:26:42.309203+00 2025-11-11 18:26:42.309208+00 f t ADELANTO 11000.00 5 12040 \N +482757 2025-11-11 20:30:40.757321+00 2025-11-11 20:30:40.757332+00 f t SUBTOTAL 75000.00 1 12051 \N +482758 2025-11-11 20:30:40.759378+00 2025-11-11 20:30:40.759389+00 f t COSTO_SERVICIO 0.00 2 12051 \N +472297 2025-11-09 06:12:03.054889+00 2025-11-09 06:12:03.054896+00 f t SUBTOTAL 46000.00 1 11817 \N +472298 2025-11-09 06:12:03.056944+00 2025-11-09 06:12:03.056951+00 f t COSTO_SERVICIO 0.00 2 11817 \N +472299 2025-11-09 06:12:03.058314+00 2025-11-09 06:12:03.058322+00 f t DESCUENTO 0.00 3 11817 \N +472300 2025-11-09 06:12:03.059804+00 2025-11-09 06:12:03.05981+00 f t TOTAL 46000.00 4 11817 \N +472301 2025-11-09 06:12:03.060918+00 2025-11-09 06:12:03.060923+00 f t ADELANTO 11000.00 5 11817 \N +482759 2025-11-11 20:30:40.760721+00 2025-11-11 20:30:40.760729+00 f t DESCUENTO 0.00 3 12051 \N +482760 2025-11-11 20:30:40.761917+00 2025-11-11 20:30:40.761925+00 f t TOTAL 75000.00 4 12051 \N +482761 2025-11-11 20:30:40.764888+00 2025-11-11 20:30:40.764896+00 f t ADELANTO 16500.00 5 12051 \N +482892 2025-11-11 21:01:41.277647+00 2025-11-11 21:01:41.277655+00 f t SUBTOTAL 46000.00 1 12052 \N +482893 2025-11-11 21:01:41.279656+00 2025-11-11 21:01:41.279663+00 f t COSTO_SERVICIO 0.00 2 12052 \N +482894 2025-11-11 21:01:41.281217+00 2025-11-11 21:01:41.281224+00 f t DESCUENTO 0.00 3 12052 \N +482895 2025-11-11 21:01:41.282432+00 2025-11-11 21:01:41.282439+00 f t TOTAL 46000.00 4 12052 \N +482896 2025-11-11 21:01:41.283684+00 2025-11-11 21:01:41.28369+00 f t ADELANTO 11000.00 5 12052 \N +483457 2025-11-11 22:59:49.534196+00 2025-11-11 22:59:49.534208+00 f t SUBTOTAL 0.00 1 12075 \N +483458 2025-11-11 22:59:49.535698+00 2025-11-11 22:59:49.535705+00 f t COSTO_SERVICIO 0.00 2 12075 \N +483459 2025-11-11 22:59:49.536861+00 2025-11-11 22:59:49.536868+00 f t DESCUENTO 0.00 3 12075 \N +483460 2025-11-11 22:59:49.537896+00 2025-11-11 22:59:49.537903+00 f t TOTAL 0.00 4 12075 \N +483461 2025-11-11 22:59:49.538911+00 2025-11-11 22:59:49.538916+00 f t ADELANTO 0.00 5 12075 \N +472887 2025-11-09 14:44:50.827414+00 2025-11-09 14:44:50.827423+00 f t SUBTOTAL 0.00 1 11832 \N +472888 2025-11-09 14:44:50.829031+00 2025-11-09 14:44:50.829038+00 f t COSTO_SERVICIO 0.00 2 11832 \N +472889 2025-11-09 14:44:50.830283+00 2025-11-09 14:44:50.830289+00 f t DESCUENTO 0.00 3 11832 \N +472890 2025-11-09 14:44:50.831377+00 2025-11-09 14:44:50.831383+00 f t TOTAL 0.00 4 11832 \N +472891 2025-11-09 14:44:50.832424+00 2025-11-09 14:44:50.832429+00 f t ADELANTO 0.00 5 11832 \N +477912 2025-11-10 20:04:34.786552+00 2025-11-10 20:04:34.786559+00 f t SUBTOTAL 46000.00 1 11944 \N +477913 2025-11-10 20:04:34.788593+00 2025-11-10 20:04:34.788601+00 f t COSTO_SERVICIO 0.00 2 11944 \N +477914 2025-11-10 20:04:34.789967+00 2025-11-10 20:04:34.789973+00 f t DESCUENTO 0.00 3 11944 \N +477915 2025-11-10 20:04:34.79121+00 2025-11-10 20:04:34.791216+00 f t TOTAL 46000.00 4 11944 \N +477916 2025-11-10 20:04:34.792518+00 2025-11-10 20:04:34.792525+00 f t ADELANTO 11000.00 5 11944 \N +465867 2025-11-07 18:58:58.577218+00 2025-11-07 18:58:58.577231+00 f t SUBTOTAL 0.00 1 11678 \N +465868 2025-11-07 18:58:58.579535+00 2025-11-07 18:58:58.579546+00 f t COSTO_SERVICIO 0.00 2 11678 \N +465869 2025-11-07 18:58:58.580963+00 2025-11-07 18:58:58.580973+00 f t DESCUENTO 0.00 3 11678 \N +465870 2025-11-07 18:58:58.582285+00 2025-11-07 18:58:58.582293+00 f t TOTAL 0.00 4 11678 \N +465871 2025-11-07 18:58:58.583705+00 2025-11-07 18:58:58.583713+00 f t ADELANTO 0.00 5 11678 \N +465887 2025-11-07 18:59:21.150691+00 2025-11-07 18:59:21.1507+00 f t SUBTOTAL 0.00 1 11680 \N +465888 2025-11-07 18:59:21.152115+00 2025-11-07 18:59:21.152121+00 f t COSTO_SERVICIO 0.00 2 11680 \N +465889 2025-11-07 18:59:21.153195+00 2025-11-07 18:59:21.153201+00 f t DESCUENTO 0.00 3 11680 \N +465890 2025-11-07 18:59:21.154171+00 2025-11-07 18:59:21.154177+00 f t TOTAL 0.00 4 11680 \N +465891 2025-11-07 18:59:21.155038+00 2025-11-07 18:59:21.155043+00 f t ADELANTO 0.00 5 11680 \N +479392 2025-11-11 00:49:30.801522+00 2025-11-11 00:49:30.801531+00 f t SUBTOTAL 0.00 1 11984 \N +479393 2025-11-11 00:49:30.803455+00 2025-11-11 00:49:30.803461+00 f t COSTO_SERVICIO 0.00 2 11984 \N +479394 2025-11-11 00:49:30.804527+00 2025-11-11 00:49:30.804532+00 f t DESCUENTO 0.00 3 11984 \N +479395 2025-11-11 00:49:30.805418+00 2025-11-11 00:49:30.805423+00 f t TOTAL 0.00 4 11984 \N +479396 2025-11-11 00:49:30.806345+00 2025-11-11 00:49:30.80635+00 f t ADELANTO 0.00 5 11984 \N +479557 2025-11-11 02:06:20.626808+00 2025-11-11 02:06:20.626815+00 f t SUBTOTAL 54000.00 1 11988 \N +479558 2025-11-11 02:06:20.628583+00 2025-11-11 02:06:20.628615+00 f t COSTO_SERVICIO 0.00 2 11988 \N +465907 2025-11-07 19:00:20.140657+00 2025-11-07 19:00:20.140668+00 f t SUBTOTAL 46000.00 1 11679 \N +465908 2025-11-07 19:00:20.144112+00 2025-11-07 19:00:20.144125+00 f t COSTO_SERVICIO 0.00 2 11679 \N +465909 2025-11-07 19:00:20.146697+00 2025-11-07 19:00:20.14671+00 f t DESCUENTO 0.00 3 11679 \N +465910 2025-11-07 19:00:20.149774+00 2025-11-07 19:00:20.149788+00 f t TOTAL 46000.00 4 11679 \N +465911 2025-11-07 19:00:20.152196+00 2025-11-07 19:00:20.15221+00 f t ADELANTO 11000.00 5 11679 \N +479559 2025-11-11 02:06:20.62987+00 2025-11-11 02:06:20.629875+00 f t DESCUENTO 0.00 3 11988 \N +479560 2025-11-11 02:06:20.630938+00 2025-11-11 02:06:20.630943+00 f t TOTAL 54000.00 4 11988 \N +479561 2025-11-11 02:06:20.631827+00 2025-11-11 02:06:20.631831+00 f t ADELANTO 13500.00 5 11988 \N +480517 2025-11-11 13:01:57.637429+00 2025-11-11 13:01:57.637779+00 f t SUBTOTAL 0.00 1 12008 \N +480518 2025-11-11 13:01:57.641305+00 2025-11-11 13:01:57.641313+00 f t COSTO_SERVICIO 0.00 2 12008 \N +480519 2025-11-11 13:01:57.642402+00 2025-11-11 13:01:57.642408+00 f t DESCUENTO 0.00 3 12008 \N +480520 2025-11-11 13:01:57.643367+00 2025-11-11 13:01:57.643373+00 f t TOTAL 0.00 4 12008 \N +480521 2025-11-11 13:01:57.6443+00 2025-11-11 13:01:57.644305+00 f t ADELANTO 0.00 5 12008 \N +465947 2025-11-07 19:00:51.530128+00 2025-11-07 19:00:51.530137+00 f t SUBTOTAL 0.00 1 11682 \N +465948 2025-11-07 19:00:51.53164+00 2025-11-07 19:00:51.531646+00 f t COSTO_SERVICIO 0.00 2 11682 \N +465949 2025-11-07 19:00:51.532899+00 2025-11-07 19:00:51.532907+00 f t DESCUENTO 0.00 3 11682 \N +465950 2025-11-07 19:00:51.53398+00 2025-11-07 19:00:51.533985+00 f t TOTAL 0.00 4 11682 \N +465951 2025-11-07 19:00:51.53497+00 2025-11-07 19:00:51.534975+00 f t ADELANTO 0.00 5 11682 \N +465962 2025-11-07 19:01:12.677456+00 2025-11-07 19:01:12.677463+00 f t SUBTOTAL 75000.00 1 11681 \N +465963 2025-11-07 19:01:12.678879+00 2025-11-07 19:01:12.678886+00 f t COSTO_SERVICIO 0.00 2 11681 \N +465964 2025-11-07 19:01:12.679841+00 2025-11-07 19:01:12.679847+00 f t DESCUENTO 0.00 3 11681 \N +465965 2025-11-07 19:01:12.68068+00 2025-11-07 19:01:12.680685+00 f t TOTAL 75000.00 4 11681 \N +465966 2025-11-07 19:01:12.681718+00 2025-11-07 19:01:12.681726+00 f t ADELANTO 16500.00 5 11681 \N +481302 2025-11-11 14:37:17.137732+00 2025-11-11 14:37:17.137742+00 f t SUBTOTAL 0.00 1 12025 \N +481303 2025-11-11 14:37:17.14064+00 2025-11-11 14:37:17.140649+00 f t COSTO_SERVICIO 0.00 2 12025 \N +481304 2025-11-11 14:37:17.141998+00 2025-11-11 14:37:17.142005+00 f t DESCUENTO 0.00 3 12025 \N +481305 2025-11-11 14:37:17.144382+00 2025-11-11 14:37:17.144391+00 f t TOTAL 0.00 4 12025 \N +481306 2025-11-11 14:37:17.145826+00 2025-11-11 14:37:17.145834+00 f t ADELANTO 0.00 5 12025 \N +465997 2025-11-07 19:02:08.610106+00 2025-11-07 19:02:08.610115+00 f t SUBTOTAL 0.00 1 11683 \N +465998 2025-11-07 19:02:08.611956+00 2025-11-07 19:02:08.611965+00 f t COSTO_SERVICIO 0.00 2 11683 \N +465999 2025-11-07 19:02:08.613058+00 2025-11-07 19:02:08.613063+00 f t DESCUENTO 0.00 3 11683 \N +466000 2025-11-07 19:02:08.61395+00 2025-11-07 19:02:08.613955+00 f t TOTAL 0.00 4 11683 \N +466001 2025-11-07 19:02:08.614812+00 2025-11-07 19:02:08.614817+00 f t ADELANTO 0.00 5 11683 \N +470682 2025-11-08 19:04:44.403545+00 2025-11-08 19:04:44.403556+00 f t SUBTOTAL 46000.00 1 11778 \N +470683 2025-11-08 19:04:44.405517+00 2025-11-08 19:04:44.405528+00 f t COSTO_SERVICIO 0.00 2 11778 \N +470684 2025-11-08 19:04:44.406882+00 2025-11-08 19:04:44.406889+00 f t DESCUENTO 0.00 3 11778 \N +470685 2025-11-08 19:04:44.408249+00 2025-11-08 19:04:44.408255+00 f t TOTAL 46000.00 4 11778 \N +470686 2025-11-08 19:04:44.409624+00 2025-11-08 19:04:44.40963+00 f t ADELANTO 11000.00 5 11778 \N +466027 2025-11-07 19:03:03.149246+00 2025-11-07 19:03:03.149255+00 f t SUBTOTAL 79000.00 1 11684 \N +466028 2025-11-07 19:03:03.150888+00 2025-11-07 19:03:03.150895+00 f t COSTO_SERVICIO 0.00 2 11684 \N +466029 2025-11-07 19:03:03.152069+00 2025-11-07 19:03:03.152075+00 f t DESCUENTO 0.00 3 11684 \N +466030 2025-11-07 19:03:03.153032+00 2025-11-07 19:03:03.153037+00 f t TOTAL 79000.00 4 11684 \N +466031 2025-11-07 19:03:03.154185+00 2025-11-07 19:03:03.15419+00 f t ADELANTO 17500.00 5 11684 \N +466042 2025-11-07 19:16:20.323727+00 2025-11-07 19:16:20.323734+00 f t SUBTOTAL 30000.00 1 11685 \N +466043 2025-11-07 19:16:20.325565+00 2025-11-07 19:16:20.325596+00 f t COSTO_SERVICIO 0.00 2 11685 \N +466044 2025-11-07 19:16:20.326695+00 2025-11-07 19:16:20.3267+00 f t DESCUENTO 0.00 3 11685 \N +466045 2025-11-07 19:16:20.327645+00 2025-11-07 19:16:20.32765+00 f t TOTAL 30000.00 4 11685 \N +466046 2025-11-07 19:16:20.328598+00 2025-11-07 19:16:20.328603+00 f t ADELANTO 30000.00 5 11685 \N +472092 2025-11-09 04:15:59.139822+00 2025-11-09 04:15:59.139832+00 f t SUBTOTAL 46000.00 1 11814 \N +472093 2025-11-09 04:15:59.144147+00 2025-11-09 04:15:59.144156+00 f t COSTO_SERVICIO 0.00 2 11814 \N +472094 2025-11-09 04:15:59.145684+00 2025-11-09 04:15:59.14569+00 f t DESCUENTO 0.00 3 11814 \N +472095 2025-11-09 04:15:59.147443+00 2025-11-09 04:15:59.147452+00 f t TOTAL 46000.00 4 11814 \N +472096 2025-11-09 04:15:59.149024+00 2025-11-09 04:15:59.149033+00 f t ADELANTO 11000.00 5 11814 \N +472197 2025-11-09 05:24:31.705374+00 2025-11-09 05:24:31.705385+00 f t SUBTOTAL 57000.00 1 11816 \N +472198 2025-11-09 05:24:31.707631+00 2025-11-09 05:24:31.707641+00 f t COSTO_SERVICIO 0.00 2 11816 \N +472199 2025-11-09 05:24:31.70918+00 2025-11-09 05:24:31.709188+00 f t DESCUENTO 0.00 3 11816 \N +472200 2025-11-09 05:24:31.710624+00 2025-11-09 05:24:31.710631+00 f t TOTAL 57000.00 4 11816 \N +472201 2025-11-09 05:24:31.712134+00 2025-11-09 05:24:31.712142+00 f t ADELANTO 57000.00 5 11816 \N +466147 2025-11-07 19:20:10.00727+00 2025-11-07 19:20:10.007279+00 f t SUBTOTAL 125200.00 1 11686 \N +466148 2025-11-07 19:20:10.009335+00 2025-11-07 19:20:10.009342+00 f t COSTO_SERVICIO 0.00 2 11686 \N +466149 2025-11-07 19:20:10.010793+00 2025-11-07 19:20:10.010801+00 f t DESCUENTO 0.00 3 11686 \N +466150 2025-11-07 19:20:10.012111+00 2025-11-07 19:20:10.012118+00 f t TOTAL 125200.00 4 11686 \N +466151 2025-11-07 19:20:10.013311+00 2025-11-07 19:20:10.013317+00 f t ADELANTO 68700.00 5 11686 \N +490192 2025-11-13 14:57:25.017754+00 2025-11-13 14:57:25.017762+00 f t SUBTOTAL 55000.00 1 12237 \N +490193 2025-11-13 14:57:25.019385+00 2025-11-13 14:57:25.01939+00 f t COSTO_SERVICIO 0.00 2 12237 \N +479222 2025-11-10 23:41:34.674688+00 2025-11-10 23:41:34.674695+00 f t SUBTOTAL 36200.00 1 11980 \N +479223 2025-11-10 23:41:34.676233+00 2025-11-10 23:41:34.676238+00 f t COSTO_SERVICIO 0.00 2 11980 \N +479224 2025-11-10 23:41:34.677397+00 2025-11-10 23:41:34.677402+00 f t DESCUENTO 0.00 3 11980 \N +479225 2025-11-10 23:41:34.678308+00 2025-11-10 23:41:34.678314+00 f t TOTAL 36200.00 4 11980 \N +479226 2025-11-10 23:41:34.679274+00 2025-11-10 23:41:34.679279+00 f t ADELANTO 18700.00 5 11980 \N +490194 2025-11-13 14:57:25.020407+00 2025-11-13 14:57:25.020412+00 f t DESCUENTO 0.00 3 12237 \N +490195 2025-11-13 14:57:25.021376+00 2025-11-13 14:57:25.021381+00 f t TOTAL 55000.00 4 12237 \N +490196 2025-11-13 14:57:25.022338+00 2025-11-13 14:57:25.022344+00 f t ADELANTO 11000.00 5 12237 \N +479402 2025-11-11 00:59:52.428248+00 2025-11-11 00:59:52.428258+00 f t SUBTOTAL 0.00 1 11985 \N +479403 2025-11-11 00:59:52.430114+00 2025-11-11 00:59:52.430124+00 f t COSTO_SERVICIO 0.00 2 11985 \N +479404 2025-11-11 00:59:52.431567+00 2025-11-11 00:59:52.431577+00 f t DESCUENTO 0.00 3 11985 \N +479405 2025-11-11 00:59:52.432808+00 2025-11-11 00:59:52.432816+00 f t TOTAL 0.00 4 11985 \N +468622 2025-11-08 13:10:39.585504+00 2025-11-08 13:10:39.585512+00 f t SUBTOTAL 115000.00 1 11735 \N +468623 2025-11-08 13:10:39.587281+00 2025-11-08 13:10:39.587287+00 f t COSTO_SERVICIO 0.00 2 11735 \N +468624 2025-11-08 13:10:39.588317+00 2025-11-08 13:10:39.588323+00 f t DESCUENTO 0.00 3 11735 \N +468625 2025-11-08 13:10:39.589343+00 2025-11-08 13:10:39.589348+00 f t TOTAL 115000.00 4 11735 \N +468626 2025-11-08 13:10:39.590202+00 2025-11-08 13:10:39.590207+00 f t ADELANTO 25000.00 5 11735 \N +469087 2025-11-08 14:26:54.765974+00 2025-11-08 14:26:54.765981+00 f t SUBTOTAL 30000.00 1 11746 \N +466212 2025-11-07 19:22:53.239531+00 2025-11-07 19:22:53.239541+00 f t SUBTOTAL 78000.00 1 11687 \N +466213 2025-11-07 19:22:53.241454+00 2025-11-07 19:22:53.241464+00 f t COSTO_SERVICIO 0.00 2 11687 \N +466214 2025-11-07 19:22:53.242965+00 2025-11-07 19:22:53.242974+00 f t DESCUENTO 0.00 3 11687 \N +466215 2025-11-07 19:22:53.244379+00 2025-11-07 19:22:53.244387+00 f t TOTAL 78000.00 4 11687 \N +466216 2025-11-07 19:22:53.245698+00 2025-11-07 19:22:53.245706+00 f t ADELANTO 21500.00 5 11687 \N +469088 2025-11-08 14:26:54.767658+00 2025-11-08 14:26:54.767664+00 f t COSTO_SERVICIO 0.00 2 11746 \N +469089 2025-11-08 14:26:54.768814+00 2025-11-08 14:26:54.76882+00 f t DESCUENTO 0.00 3 11746 \N +469090 2025-11-08 14:26:54.770083+00 2025-11-08 14:26:54.770089+00 f t TOTAL 30000.00 4 11746 \N +469091 2025-11-08 14:26:54.771793+00 2025-11-08 14:26:54.771801+00 f t ADELANTO 30000.00 5 11746 \N +466242 2025-11-07 19:27:08.101705+00 2025-11-07 19:27:08.101712+00 f t SUBTOTAL 85000.00 1 11688 \N +466243 2025-11-07 19:27:08.103399+00 2025-11-07 19:27:08.103406+00 f t COSTO_SERVICIO 0.00 2 11688 \N +466244 2025-11-07 19:27:08.104563+00 2025-11-07 19:27:08.10457+00 f t DESCUENTO 0.00 3 11688 \N +466245 2025-11-07 19:27:08.10596+00 2025-11-07 19:27:08.105967+00 f t TOTAL 85000.00 4 11688 \N +466246 2025-11-07 19:27:08.107145+00 2025-11-07 19:27:08.107151+00 f t ADELANTO 15000.00 5 11688 \N +470197 2025-11-08 17:08:56.65262+00 2025-11-08 17:08:56.652627+00 f t SUBTOTAL 55000.00 1 11763 \N +470198 2025-11-08 17:08:56.654739+00 2025-11-08 17:08:56.654746+00 f t COSTO_SERVICIO 0.00 2 11763 \N +470199 2025-11-08 17:08:56.656064+00 2025-11-08 17:08:56.656069+00 f t DESCUENTO 0.00 3 11763 \N +470200 2025-11-08 17:08:56.657321+00 2025-11-08 17:08:56.657327+00 f t TOTAL 55000.00 4 11763 \N +470201 2025-11-08 17:08:56.658629+00 2025-11-08 17:08:56.658634+00 f t ADELANTO 11000.00 5 11763 \N +466272 2025-11-07 19:39:30.798639+00 2025-11-07 19:39:30.798646+00 f t SUBTOTAL 133000.00 1 11673 \N +466273 2025-11-07 19:39:30.800174+00 2025-11-07 19:39:30.80018+00 f t COSTO_SERVICIO 0.00 2 11673 \N +466274 2025-11-07 19:39:30.801463+00 2025-11-07 19:39:30.801468+00 f t DESCUENTO 10100.00 3 11673 \N +466275 2025-11-07 19:39:30.803272+00 2025-11-07 19:39:30.803277+00 f t TOTAL 122900.00 4 11673 \N +466276 2025-11-07 19:39:30.805218+00 2025-11-07 19:39:30.805223+00 f t ADELANTO 32500.00 5 11673 \N +466307 2025-11-07 20:17:13.520517+00 2025-11-07 20:17:13.520523+00 f t SUBTOTAL 78000.00 1 11689 \N +466308 2025-11-07 20:17:13.522071+00 2025-11-07 20:17:13.522077+00 f t COSTO_SERVICIO 0.00 2 11689 \N +466309 2025-11-07 20:17:13.523067+00 2025-11-07 20:17:13.523073+00 f t DESCUENTO 0.00 3 11689 \N +466310 2025-11-07 20:17:13.524085+00 2025-11-07 20:17:13.52409+00 f t TOTAL 78000.00 4 11689 \N +466311 2025-11-07 20:17:13.525079+00 2025-11-07 20:17:13.525083+00 f t ADELANTO 13000.00 5 11689 \N +471182 2025-11-08 23:01:26.251961+00 2025-11-08 23:01:26.251974+00 f t SUBTOTAL 0.00 1 11796 \N +471183 2025-11-08 23:01:26.253506+00 2025-11-08 23:01:26.253515+00 f t COSTO_SERVICIO 0.00 2 11796 \N +471184 2025-11-08 23:01:26.254752+00 2025-11-08 23:01:26.25476+00 f t DESCUENTO 0.00 3 11796 \N +471185 2025-11-08 23:01:26.255925+00 2025-11-08 23:01:26.255933+00 f t TOTAL 0.00 4 11796 \N +471186 2025-11-08 23:01:26.257084+00 2025-11-08 23:01:26.257091+00 f t ADELANTO 0.00 5 11796 \N +471407 2025-11-09 01:07:12.375092+00 2025-11-09 01:07:12.375098+00 f t SUBTOTAL 102000.00 1 11801 \N +471408 2025-11-09 01:07:12.37692+00 2025-11-09 01:07:12.376926+00 f t COSTO_SERVICIO 0.00 2 11801 \N +471409 2025-11-09 01:07:12.378112+00 2025-11-09 01:07:12.378118+00 f t DESCUENTO 0.00 3 11801 \N +471410 2025-11-09 01:07:12.379238+00 2025-11-09 01:07:12.379244+00 f t TOTAL 102000.00 4 11801 \N +471411 2025-11-09 01:07:12.380354+00 2025-11-09 01:07:12.380361+00 f t ADELANTO 29500.00 5 11801 \N +472727 2025-11-09 14:04:11.097127+00 2025-11-09 14:04:11.097134+00 f t SUBTOTAL 55000.00 1 11828 \N +472728 2025-11-09 14:04:11.098596+00 2025-11-09 14:04:11.098602+00 f t COSTO_SERVICIO 0.00 2 11828 \N +472729 2025-11-09 14:04:11.099745+00 2025-11-09 14:04:11.099751+00 f t DESCUENTO 0.00 3 11828 \N +472730 2025-11-09 14:04:11.100698+00 2025-11-09 14:04:11.100702+00 f t TOTAL 55000.00 4 11828 \N +472731 2025-11-09 14:04:11.101557+00 2025-11-09 14:04:11.101562+00 f t ADELANTO 11000.00 5 11828 \N +466417 2025-11-07 20:56:36.991155+00 2025-11-07 20:56:36.991163+00 f t SUBTOTAL 55000.00 1 11690 \N +466418 2025-11-07 20:56:36.992716+00 2025-11-07 20:56:36.992722+00 f t COSTO_SERVICIO 0.00 2 11690 \N +466419 2025-11-07 20:56:36.994383+00 2025-11-07 20:56:36.994394+00 f t DESCUENTO 0.00 3 11690 \N +466420 2025-11-07 20:56:36.995897+00 2025-11-07 20:56:36.995906+00 f t TOTAL 55000.00 4 11690 \N +466421 2025-11-07 20:56:36.997475+00 2025-11-07 20:56:36.997483+00 f t ADELANTO 11000.00 5 11690 \N +466427 2025-11-07 21:32:28.536849+00 2025-11-07 21:32:28.536859+00 f t SUBTOTAL 0.00 1 11691 \N +466428 2025-11-07 21:32:28.538129+00 2025-11-07 21:32:28.538135+00 f t COSTO_SERVICIO 0.00 2 11691 \N +466429 2025-11-07 21:32:28.539315+00 2025-11-07 21:32:28.53932+00 f t DESCUENTO 0.00 3 11691 \N +466430 2025-11-07 21:32:28.540214+00 2025-11-07 21:32:28.540219+00 f t TOTAL 0.00 4 11691 \N +466431 2025-11-07 21:32:28.541027+00 2025-11-07 21:32:28.541032+00 f t ADELANTO 0.00 5 11691 \N +466862 2025-11-07 22:49:24.301002+00 2025-11-07 22:49:24.301013+00 f t SUBTOTAL 55000.00 1 11706 \N +466863 2025-11-07 22:49:24.302746+00 2025-11-07 22:49:24.302753+00 f t COSTO_SERVICIO 0.00 2 11706 \N +466864 2025-11-07 22:49:24.303917+00 2025-11-07 22:49:24.303923+00 f t DESCUENTO 0.00 3 11706 \N +466865 2025-11-07 22:49:24.305042+00 2025-11-07 22:49:24.305047+00 f t TOTAL 55000.00 4 11706 \N +466866 2025-11-07 22:49:24.306009+00 2025-11-07 22:49:24.306015+00 f t ADELANTO 11000.00 5 11706 \N +489222 2025-11-13 03:04:02.7923+00 2025-11-13 03:04:02.792313+00 f t SUBTOTAL 55000.00 1 12207 \N +489223 2025-11-13 03:04:02.79506+00 2025-11-13 03:04:02.795073+00 f t COSTO_SERVICIO 0.00 2 12207 \N +489224 2025-11-13 03:04:02.797012+00 2025-11-13 03:04:02.797023+00 f t DESCUENTO 0.00 3 12207 \N +489225 2025-11-13 03:04:02.798531+00 2025-11-13 03:04:02.798542+00 f t TOTAL 55000.00 4 12207 \N +489226 2025-11-13 03:04:02.800057+00 2025-11-13 03:04:02.800065+00 f t ADELANTO 11000.00 5 12207 \N +478167 2025-11-10 20:21:09.450621+00 2025-11-10 20:21:09.45063+00 f t SUBTOTAL 0.00 1 11954 \N +478168 2025-11-10 20:21:09.452169+00 2025-11-10 20:21:09.452175+00 f t COSTO_SERVICIO 0.00 2 11954 \N +478169 2025-11-10 20:21:09.453213+00 2025-11-10 20:21:09.453219+00 f t DESCUENTO 0.00 3 11954 \N +478170 2025-11-10 20:21:09.454171+00 2025-11-10 20:21:09.454176+00 f t TOTAL 0.00 4 11954 \N +478171 2025-11-10 20:21:09.45506+00 2025-11-10 20:21:09.455065+00 f t ADELANTO 0.00 5 11954 \N +468137 2025-11-08 03:29:27.759542+00 2025-11-08 03:29:27.759549+00 f t SUBTOTAL 115000.00 1 11724 \N +468138 2025-11-08 03:29:27.761183+00 2025-11-08 03:29:27.761189+00 f t COSTO_SERVICIO 0.00 2 11724 \N +468139 2025-11-08 03:29:27.762177+00 2025-11-08 03:29:27.762182+00 f t DESCUENTO 0.00 3 11724 \N +468140 2025-11-08 03:29:27.763101+00 2025-11-08 03:29:27.763105+00 f t TOTAL 115000.00 4 11724 \N +468141 2025-11-08 03:29:27.76393+00 2025-11-08 03:29:27.763935+00 f t ADELANTO 25000.00 5 11724 \N +468302 2025-11-08 07:59:15.071253+00 2025-11-08 07:59:15.071262+00 f t SUBTOTAL 30000.00 1 11728 \N +468303 2025-11-08 07:59:15.073135+00 2025-11-08 07:59:15.073144+00 f t COSTO_SERVICIO 0.00 2 11728 \N +468304 2025-11-08 07:59:15.074462+00 2025-11-08 07:59:15.074469+00 f t DESCUENTO 0.00 3 11728 \N +468305 2025-11-08 07:59:15.075564+00 2025-11-08 07:59:15.075573+00 f t TOTAL 30000.00 4 11728 \N +468306 2025-11-08 07:59:15.076708+00 2025-11-08 07:59:15.076716+00 f t ADELANTO 30000.00 5 11728 \N +466482 2025-11-07 21:37:45.960095+00 2025-11-07 21:37:45.960137+00 f t SUBTOTAL 46000.00 1 11692 \N +466483 2025-11-07 21:37:45.961768+00 2025-11-07 21:37:45.961775+00 f t COSTO_SERVICIO 0.00 2 11692 \N +466484 2025-11-07 21:37:45.962873+00 2025-11-07 21:37:45.962879+00 f t DESCUENTO 0.00 3 11692 \N +466485 2025-11-07 21:37:45.963834+00 2025-11-07 21:37:45.96384+00 f t TOTAL 46000.00 4 11692 \N +466486 2025-11-07 21:37:45.964762+00 2025-11-07 21:37:45.964768+00 f t ADELANTO 11000.00 5 11692 \N +466497 2025-11-07 21:42:54.426477+00 2025-11-07 21:42:54.426485+00 f t SUBTOTAL 13200.00 1 11693 \N +466498 2025-11-07 21:42:54.428101+00 2025-11-07 21:42:54.428108+00 f t COSTO_SERVICIO 0.00 2 11693 \N +466499 2025-11-07 21:42:54.429209+00 2025-11-07 21:42:54.429216+00 f t DESCUENTO 0.00 3 11693 \N +466500 2025-11-07 21:42:54.430683+00 2025-11-07 21:42:54.430689+00 f t TOTAL 13200.00 4 11693 \N +466501 2025-11-07 21:42:54.431726+00 2025-11-07 21:42:54.431731+00 f t ADELANTO 13200.00 5 11693 \N +479406 2025-11-11 00:59:52.434366+00 2025-11-11 00:59:52.434374+00 f t ADELANTO 0.00 5 11985 \N +469532 2025-11-08 15:25:34.398807+00 2025-11-08 15:25:34.398813+00 f t SUBTOTAL 46000.00 1 11752 \N +469533 2025-11-08 15:25:34.400602+00 2025-11-08 15:25:34.400608+00 f t COSTO_SERVICIO 0.00 2 11752 \N +469534 2025-11-08 15:25:34.402072+00 2025-11-08 15:25:34.402082+00 f t DESCUENTO 0.00 3 11752 \N +469535 2025-11-08 15:25:34.403161+00 2025-11-08 15:25:34.403169+00 f t TOTAL 46000.00 4 11752 \N +469536 2025-11-08 15:25:34.404159+00 2025-11-08 15:25:34.404164+00 f t ADELANTO 11000.00 5 11752 \N +470462 2025-11-08 18:26:03.139051+00 2025-11-08 18:26:03.139059+00 f t SUBTOTAL 70000.00 1 11772 \N +470463 2025-11-08 18:26:03.140919+00 2025-11-08 18:26:03.140997+00 f t COSTO_SERVICIO 0.00 2 11772 \N +470464 2025-11-08 18:26:03.142367+00 2025-11-08 18:26:03.142373+00 f t DESCUENTO 0.00 3 11772 \N +470465 2025-11-08 18:26:03.143569+00 2025-11-08 18:26:03.143575+00 f t TOTAL 70000.00 4 11772 \N +470466 2025-11-08 18:26:03.144605+00 2025-11-08 18:26:03.144611+00 f t ADELANTO 19000.00 5 11772 \N +481307 2025-11-11 14:43:02.956021+00 2025-11-11 14:43:02.95603+00 f t SUBTOTAL 55000.00 1 12022 \N +481308 2025-11-11 14:43:02.957919+00 2025-11-11 14:43:02.957925+00 f t COSTO_SERVICIO 0.00 2 12022 \N +481309 2025-11-11 14:43:02.959288+00 2025-11-11 14:43:02.959299+00 f t DESCUENTO 0.00 3 12022 \N +481310 2025-11-11 14:43:02.960647+00 2025-11-11 14:43:02.960656+00 f t TOTAL 55000.00 4 12022 \N +481311 2025-11-11 14:43:02.962039+00 2025-11-11 14:43:02.962045+00 f t ADELANTO 11000.00 5 12022 \N +481537 2025-11-11 14:52:46.351923+00 2025-11-11 14:52:46.351931+00 f t SUBTOTAL 128500.00 1 12026 \N +481538 2025-11-11 14:52:46.353886+00 2025-11-11 14:52:46.353898+00 f t COSTO_SERVICIO 0.00 2 12026 \N +481539 2025-11-11 14:52:46.355619+00 2025-11-11 14:52:46.35563+00 f t DESCUENTO 0.00 3 12026 \N +481540 2025-11-11 14:52:46.357463+00 2025-11-11 14:52:46.357482+00 f t TOTAL 128500.00 4 12026 \N +481541 2025-11-11 14:52:46.35924+00 2025-11-11 14:52:46.35925+00 f t ADELANTO 28500.00 5 12026 \N +481892 2025-11-11 15:57:07.24581+00 2025-11-11 15:57:07.245821+00 f t SUBTOTAL 78000.00 1 12031 \N +481893 2025-11-11 15:57:07.248195+00 2025-11-11 15:57:07.248205+00 f t COSTO_SERVICIO 0.00 2 12031 \N +481894 2025-11-11 15:57:07.249917+00 2025-11-11 15:57:07.249927+00 f t DESCUENTO 0.00 3 12031 \N +481895 2025-11-11 15:57:07.25139+00 2025-11-11 15:57:07.251397+00 f t TOTAL 78000.00 4 12031 \N +481896 2025-11-11 15:57:07.252891+00 2025-11-11 15:57:07.252898+00 f t ADELANTO 13000.00 5 12031 \N +471852 2025-11-09 02:31:30.361635+00 2025-11-09 02:31:30.361644+00 f t SUBTOTAL 55000.00 1 11807 \N +471853 2025-11-09 02:31:30.363709+00 2025-11-09 02:31:30.36372+00 f t COSTO_SERVICIO 0.00 2 11807 \N +471854 2025-11-09 02:31:30.365388+00 2025-11-09 02:31:30.365397+00 f t DESCUENTO 0.00 3 11807 \N +471855 2025-11-09 02:31:30.366736+00 2025-11-09 02:31:30.366744+00 f t TOTAL 55000.00 4 11807 \N +471856 2025-11-09 02:31:30.368052+00 2025-11-09 02:31:30.368061+00 f t ADELANTO 11000.00 5 11807 \N +472437 2025-11-09 13:04:00.757862+00 2025-11-09 13:04:00.757875+00 f t SUBTOTAL 0.00 1 11822 \N +472438 2025-11-09 13:04:00.760451+00 2025-11-09 13:04:00.760461+00 f t COSTO_SERVICIO 0.00 2 11822 \N +472439 2025-11-09 13:04:00.761855+00 2025-11-09 13:04:00.761863+00 f t DESCUENTO 0.00 3 11822 \N +472440 2025-11-09 13:04:00.76303+00 2025-11-09 13:04:00.763037+00 f t TOTAL 0.00 4 11822 \N +472441 2025-11-09 13:04:00.764253+00 2025-11-09 13:04:00.764261+00 f t ADELANTO 0.00 5 11822 \N +472737 2025-11-09 14:07:05.794968+00 2025-11-09 14:07:05.794979+00 f t SUBTOTAL 0.00 1 11829 \N +472738 2025-11-09 14:07:05.796963+00 2025-11-09 14:07:05.796973+00 f t COSTO_SERVICIO 0.00 2 11829 \N +472739 2025-11-09 14:07:05.79837+00 2025-11-09 14:07:05.798378+00 f t DESCUENTO 0.00 3 11829 \N +472740 2025-11-09 14:07:05.799597+00 2025-11-09 14:07:05.799604+00 f t TOTAL 0.00 4 11829 \N +472741 2025-11-09 14:07:05.800753+00 2025-11-09 14:07:05.800761+00 f t ADELANTO 0.00 5 11829 \N +472912 2025-11-09 14:46:50.366708+00 2025-11-09 14:46:50.366716+00 f t SUBTOTAL 0.00 1 11833 \N +472913 2025-11-09 14:46:50.369091+00 2025-11-09 14:46:50.369098+00 f t COSTO_SERVICIO 0.00 2 11833 \N +472914 2025-11-09 14:46:50.370308+00 2025-11-09 14:46:50.370315+00 f t DESCUENTO 0.00 3 11833 \N +472922 2025-11-09 14:53:19.294573+00 2025-11-09 14:53:19.294584+00 f t SUBTOTAL 0.00 1 11834 \N +472923 2025-11-09 14:53:19.296462+00 2025-11-09 14:53:19.296471+00 f t COSTO_SERVICIO 0.00 2 11834 \N +472924 2025-11-09 14:53:19.297795+00 2025-11-09 14:53:19.297802+00 f t DESCUENTO 0.00 3 11834 \N +472925 2025-11-09 14:53:19.29894+00 2025-11-09 14:53:19.298946+00 f t TOTAL 0.00 4 11834 \N +472926 2025-11-09 14:53:19.30055+00 2025-11-09 14:53:19.300557+00 f t ADELANTO 0.00 5 11834 \N +500077 2025-11-15 21:46:57.814412+00 2025-11-15 21:46:57.814425+00 f t SUBTOTAL 0.00 1 12477 \N +500078 2025-11-15 21:46:57.815761+00 2025-11-15 21:46:57.815768+00 f t COSTO_SERVICIO 0.00 2 12477 \N +500079 2025-11-15 21:46:57.817218+00 2025-11-15 21:46:57.817227+00 f t DESCUENTO 0.00 3 12477 \N +523947 2025-11-20 22:01:46.367454+00 2025-11-20 22:01:46.367465+00 f t SUBTOTAL 55000.00 1 13034 \N +523948 2025-11-20 22:01:46.369148+00 2025-11-20 22:01:46.369156+00 f t COSTO_SERVICIO 0.00 2 13034 \N +523949 2025-11-20 22:01:46.370329+00 2025-11-20 22:01:46.370334+00 f t DESCUENTO 0.00 3 13034 \N +523950 2025-11-20 22:01:46.372164+00 2025-11-20 22:01:46.372169+00 f t TOTAL 55000.00 4 13034 \N +472962 2025-11-09 14:54:40.448711+00 2025-11-09 14:54:40.448719+00 f t SUBTOTAL 30000.00 1 11835 \N +472963 2025-11-09 14:54:40.450546+00 2025-11-09 14:54:40.450554+00 f t COSTO_SERVICIO 0.00 2 11835 \N +472964 2025-11-09 14:54:40.451675+00 2025-11-09 14:54:40.451681+00 f t DESCUENTO 0.00 3 11835 \N +472965 2025-11-09 14:54:40.452907+00 2025-11-09 14:54:40.452913+00 f t TOTAL 30000.00 4 11835 \N +472966 2025-11-09 14:54:40.453939+00 2025-11-09 14:54:40.453944+00 f t ADELANTO 30000.00 5 11835 \N +490197 2025-11-13 14:59:24.590824+00 2025-11-13 14:59:24.590831+00 f t SUBTOTAL 55000.00 1 12236 \N +490198 2025-11-13 14:59:24.592511+00 2025-11-13 14:59:24.592517+00 f t COSTO_SERVICIO 0.00 2 12236 \N +490199 2025-11-13 14:59:24.593592+00 2025-11-13 14:59:24.593599+00 f t DESCUENTO 0.00 3 12236 \N +490200 2025-11-13 14:59:24.594521+00 2025-11-13 14:59:24.594528+00 f t TOTAL 55000.00 4 12236 \N +490201 2025-11-13 14:59:24.595597+00 2025-11-13 14:59:24.595605+00 f t ADELANTO 11000.00 5 12236 \N +479237 2025-11-10 23:50:04.682717+00 2025-11-10 23:50:04.682732+00 f t SUBTOTAL 30000.00 1 11981 \N +479238 2025-11-10 23:50:04.685914+00 2025-11-10 23:50:04.685927+00 f t COSTO_SERVICIO 0.00 2 11981 \N +479239 2025-11-10 23:50:04.689439+00 2025-11-10 23:50:04.689456+00 f t DESCUENTO 0.00 3 11981 \N +479240 2025-11-10 23:50:04.693645+00 2025-11-10 23:50:04.693659+00 f t TOTAL 30000.00 4 11981 \N +479241 2025-11-10 23:50:04.696833+00 2025-11-10 23:50:04.696848+00 f t ADELANTO 30000.00 5 11981 \N +479747 2025-11-11 02:56:17.567546+00 2025-11-11 02:56:17.567558+00 f t SUBTOTAL 0.00 1 11991 \N +479748 2025-11-11 02:56:17.568941+00 2025-11-11 02:56:17.568946+00 f t COSTO_SERVICIO 0.00 2 11991 \N +479749 2025-11-11 02:56:17.569957+00 2025-11-11 02:56:17.569962+00 f t DESCUENTO 0.00 3 11991 \N +479750 2025-11-11 02:56:17.571024+00 2025-11-11 02:56:17.57103+00 f t TOTAL 0.00 4 11991 \N +479751 2025-11-11 02:56:17.57199+00 2025-11-11 02:56:17.571995+00 f t ADELANTO 0.00 5 11991 \N +473007 2025-11-09 14:59:01.136722+00 2025-11-09 14:59:01.136731+00 f t SUBTOTAL 88000.00 1 11836 \N +473008 2025-11-09 14:59:01.139327+00 2025-11-09 14:59:01.13934+00 f t COSTO_SERVICIO 0.00 2 11836 \N +473009 2025-11-09 14:59:01.141496+00 2025-11-09 14:59:01.141507+00 f t DESCUENTO 0.00 3 11836 \N +473010 2025-11-09 14:59:01.143644+00 2025-11-09 14:59:01.143656+00 f t TOTAL 88000.00 4 11836 \N +473011 2025-11-09 14:59:01.145784+00 2025-11-09 14:59:01.145799+00 f t ADELANTO 13000.00 5 11836 \N +479907 2025-11-11 05:57:46.5252+00 2025-11-11 05:57:46.525207+00 f t SUBTOTAL 46000.00 1 11996 \N +479908 2025-11-11 05:57:46.526894+00 2025-11-11 05:57:46.5269+00 f t COSTO_SERVICIO 0.00 2 11996 \N +479909 2025-11-11 05:57:46.527973+00 2025-11-11 05:57:46.527979+00 f t DESCUENTO 0.00 3 11996 \N +479910 2025-11-11 05:57:46.529026+00 2025-11-11 05:57:46.52903+00 f t TOTAL 46000.00 4 11996 \N +479911 2025-11-11 05:57:46.529907+00 2025-11-11 05:57:46.529912+00 f t ADELANTO 11000.00 5 11996 \N +491022 2025-11-13 18:46:31.396738+00 2025-11-13 18:46:31.396748+00 f t SUBTOTAL 55000.00 1 12259 \N +491023 2025-11-13 18:46:31.397979+00 2025-11-13 18:46:31.397985+00 f t COSTO_SERVICIO 0.00 2 12259 \N +491024 2025-11-13 18:46:31.398842+00 2025-11-13 18:46:31.398848+00 f t DESCUENTO 0.00 3 12259 \N +491025 2025-11-13 18:46:31.399541+00 2025-11-13 18:46:31.399546+00 f t TOTAL 55000.00 4 12259 \N +491026 2025-11-13 18:46:31.400136+00 2025-11-13 18:46:31.400141+00 f t ADELANTO 11000.00 5 12259 \N +491627 2025-11-13 22:48:12.389144+00 2025-11-13 22:48:12.389153+00 f t SUBTOTAL 0.00 1 12277 \N +491628 2025-11-13 22:48:12.391382+00 2025-11-13 22:48:12.391391+00 f t COSTO_SERVICIO 0.00 2 12277 \N +491629 2025-11-13 22:48:12.394982+00 2025-11-13 22:48:12.394991+00 f t DESCUENTO 0.00 3 12277 \N +491630 2025-11-13 22:48:12.396448+00 2025-11-13 22:48:12.396459+00 f t TOTAL 0.00 4 12277 \N +491631 2025-11-13 22:48:12.397683+00 2025-11-13 22:48:12.397692+00 f t ADELANTO 0.00 5 12277 \N +473077 2025-11-09 16:00:47.859184+00 2025-11-09 16:00:47.859196+00 f t SUBTOTAL 0.00 1 11838 \N +473078 2025-11-09 16:00:47.860801+00 2025-11-09 16:00:47.860807+00 f t COSTO_SERVICIO 0.00 2 11838 \N +473079 2025-11-09 16:00:47.862174+00 2025-11-09 16:00:47.86218+00 f t DESCUENTO 0.00 3 11838 \N +473080 2025-11-09 16:00:47.863362+00 2025-11-09 16:00:47.863368+00 f t TOTAL 0.00 4 11838 \N +473081 2025-11-09 16:00:47.864603+00 2025-11-09 16:00:47.864608+00 f t ADELANTO 0.00 5 11838 \N +473082 2025-11-09 16:00:48.200455+00 2025-11-09 16:00:48.200465+00 f t SUBTOTAL 54000.00 1 11837 \N +473083 2025-11-09 16:00:48.202488+00 2025-11-09 16:00:48.202498+00 f t COSTO_SERVICIO 0.00 2 11837 \N +473084 2025-11-09 16:00:48.204064+00 2025-11-09 16:00:48.204073+00 f t DESCUENTO 0.00 3 11837 \N +473085 2025-11-09 16:00:48.205656+00 2025-11-09 16:00:48.205665+00 f t TOTAL 54000.00 4 11837 \N +473086 2025-11-09 16:00:48.207103+00 2025-11-09 16:00:48.207111+00 f t ADELANTO 13500.00 5 11837 \N +481542 2025-11-11 14:54:52.700791+00 2025-11-11 14:54:52.700797+00 f t SUBTOTAL 70000.00 1 12027 \N +481543 2025-11-11 14:54:52.70243+00 2025-11-11 14:54:52.702436+00 f t COSTO_SERVICIO 0.00 2 12027 \N +481544 2025-11-11 14:54:52.703566+00 2025-11-11 14:54:52.703572+00 f t DESCUENTO 0.00 3 12027 \N +481545 2025-11-11 14:54:52.704702+00 2025-11-11 14:54:52.704709+00 f t TOTAL 70000.00 4 12027 \N +481546 2025-11-11 14:54:52.705835+00 2025-11-11 14:54:52.70584+00 f t ADELANTO 19000.00 5 12027 \N +482162 2025-11-11 18:28:21.598453+00 2025-11-11 18:28:21.59846+00 f t SUBTOTAL 70000.00 1 12039 \N +482163 2025-11-11 18:28:21.600331+00 2025-11-11 18:28:21.600336+00 f t COSTO_SERVICIO 0.00 2 12039 \N +482164 2025-11-11 18:28:21.601782+00 2025-11-11 18:28:21.601787+00 f t DESCUENTO 0.00 3 12039 \N +482165 2025-11-11 18:28:21.602888+00 2025-11-11 18:28:21.602893+00 f t TOTAL 70000.00 4 12039 \N +482166 2025-11-11 18:28:21.603877+00 2025-11-11 18:28:21.603882+00 f t ADELANTO 19000.00 5 12039 \N +473127 2025-11-09 16:04:01.701747+00 2025-11-09 16:04:01.701754+00 f t SUBTOTAL 46000.00 1 11839 \N +473128 2025-11-09 16:04:01.703834+00 2025-11-09 16:04:01.703843+00 f t COSTO_SERVICIO 0.00 2 11839 \N +473129 2025-11-09 16:04:01.705465+00 2025-11-09 16:04:01.705471+00 f t DESCUENTO 0.00 3 11839 \N +473130 2025-11-09 16:04:01.706988+00 2025-11-09 16:04:01.706997+00 f t TOTAL 46000.00 4 11839 \N +473131 2025-11-09 16:04:01.708668+00 2025-11-09 16:04:01.708677+00 f t ADELANTO 11000.00 5 11839 \N +493837 2025-11-14 02:32:15.670787+00 2025-11-14 02:32:15.670797+00 f t SUBTOTAL 54000.00 1 12318 \N +493838 2025-11-14 02:32:15.672634+00 2025-11-14 02:32:15.67264+00 f t COSTO_SERVICIO 0.00 2 12318 \N +493839 2025-11-14 02:32:15.673909+00 2025-11-14 02:32:15.673915+00 f t DESCUENTO 0.00 3 12318 \N +493840 2025-11-14 02:32:15.675022+00 2025-11-14 02:32:15.675027+00 f t TOTAL 54000.00 4 12318 \N +493841 2025-11-14 02:32:15.676124+00 2025-11-14 02:32:15.676131+00 f t ADELANTO 13500.00 5 12318 \N +489437 2025-11-13 08:43:20.662422+00 2025-11-13 08:43:20.662432+00 f t SUBTOTAL 0.00 1 12212 \N +489438 2025-11-13 08:43:20.664367+00 2025-11-13 08:43:20.664374+00 f t COSTO_SERVICIO 0.00 2 12212 \N +489439 2025-11-13 08:43:20.665481+00 2025-11-13 08:43:20.665487+00 f t DESCUENTO 0.00 3 12212 \N +489440 2025-11-13 08:43:20.666506+00 2025-11-13 08:43:20.666513+00 f t TOTAL 0.00 4 12212 \N +489441 2025-11-13 08:43:20.667394+00 2025-11-13 08:43:20.667399+00 f t ADELANTO 0.00 5 12212 \N +490202 2025-11-13 15:00:36.093299+00 2025-11-13 15:00:36.093306+00 f t SUBTOTAL 54000.00 1 12232 \N +490203 2025-11-13 15:00:36.097339+00 2025-11-13 15:00:36.097349+00 f t COSTO_SERVICIO 0.00 2 12232 \N +490204 2025-11-13 15:00:36.099319+00 2025-11-13 15:00:36.099327+00 f t DESCUENTO 0.00 3 12232 \N +490205 2025-11-13 15:00:36.101717+00 2025-11-13 15:00:36.101727+00 f t TOTAL 54000.00 4 12232 \N +490206 2025-11-13 15:00:36.103537+00 2025-11-13 15:00:36.103546+00 f t ADELANTO 13500.00 5 12232 \N +473267 2025-11-09 16:13:58.407568+00 2025-11-09 16:13:58.407577+00 f t SUBTOTAL 0.00 1 11841 \N +473268 2025-11-09 16:13:58.409497+00 2025-11-09 16:13:58.409507+00 f t COSTO_SERVICIO 0.00 2 11841 \N +473269 2025-11-09 16:13:58.410775+00 2025-11-09 16:13:58.410783+00 f t DESCUENTO 0.00 3 11841 \N +473270 2025-11-09 16:13:58.412128+00 2025-11-09 16:13:58.412133+00 f t TOTAL 0.00 4 11841 \N +473271 2025-11-09 16:13:58.413111+00 2025-11-09 16:13:58.413116+00 f t ADELANTO 0.00 5 11841 \N +490712 2025-11-13 17:07:01.113215+00 2025-11-13 17:07:01.113227+00 f t SUBTOTAL 30000.00 1 12248 \N +490713 2025-11-13 17:07:01.11516+00 2025-11-13 17:07:01.115168+00 f t COSTO_SERVICIO 0.00 2 12248 \N +490714 2025-11-13 17:07:01.116366+00 2025-11-13 17:07:01.116371+00 f t DESCUENTO 0.00 3 12248 \N +490715 2025-11-13 17:07:01.117394+00 2025-11-13 17:07:01.1174+00 f t TOTAL 30000.00 4 12248 \N +490716 2025-11-13 17:07:01.118505+00 2025-11-13 17:07:01.11851+00 f t ADELANTO 30000.00 5 12248 \N +491332 2025-11-13 20:37:57.881823+00 2025-11-13 20:37:57.881832+00 f t SUBTOTAL 13200.00 1 12268 \N +491333 2025-11-13 20:37:57.883959+00 2025-11-13 20:37:57.883969+00 f t COSTO_SERVICIO 0.00 2 12268 \N +491334 2025-11-13 20:37:57.885387+00 2025-11-13 20:37:57.885396+00 f t DESCUENTO 0.00 3 12268 \N +491335 2025-11-13 20:37:57.886795+00 2025-11-13 20:37:57.886803+00 f t TOTAL 13200.00 4 12268 \N +491336 2025-11-13 20:37:57.888184+00 2025-11-13 20:37:57.888191+00 f t ADELANTO 13200.00 5 12268 \N +473312 2025-11-09 16:15:13.784697+00 2025-11-09 16:15:13.784708+00 f t SUBTOTAL 0.00 1 11842 \N +473313 2025-11-09 16:15:13.786422+00 2025-11-09 16:15:13.786431+00 f t COSTO_SERVICIO 0.00 2 11842 \N +473314 2025-11-09 16:15:13.788064+00 2025-11-09 16:15:13.788072+00 f t DESCUENTO 0.00 3 11842 \N +473315 2025-11-09 16:15:13.789303+00 2025-11-09 16:15:13.78931+00 f t TOTAL 0.00 4 11842 \N +473316 2025-11-09 16:15:13.790672+00 2025-11-09 16:15:13.79068+00 f t ADELANTO 0.00 5 11842 \N +492602 2025-11-14 00:24:14.309906+00 2025-11-14 00:24:14.309915+00 f t SUBTOTAL 46000.00 1 12296 \N +492603 2025-11-14 00:24:14.311812+00 2025-11-14 00:24:14.311818+00 f t COSTO_SERVICIO 0.00 2 12296 \N +492604 2025-11-14 00:24:14.313026+00 2025-11-14 00:24:14.313031+00 f t DESCUENTO 0.00 3 12296 \N +492605 2025-11-14 00:24:14.314523+00 2025-11-14 00:24:14.314528+00 f t TOTAL 46000.00 4 12296 \N +492606 2025-11-14 00:24:14.315567+00 2025-11-14 00:24:14.315573+00 f t ADELANTO 11000.00 5 12296 \N +473372 2025-11-09 16:17:40.194193+00 2025-11-09 16:17:40.1942+00 f t SUBTOTAL 92000.00 1 11840 \N +473373 2025-11-09 16:17:40.19568+00 2025-11-09 16:17:40.195686+00 f t COSTO_SERVICIO 0.00 2 11840 \N +473374 2025-11-09 16:17:40.196831+00 2025-11-09 16:17:40.196836+00 f t DESCUENTO 9200.00 3 11840 \N +473375 2025-11-09 16:17:40.197829+00 2025-11-09 16:17:40.197834+00 f t TOTAL 82800.00 4 11840 \N +473376 2025-11-09 16:17:40.198873+00 2025-11-09 16:17:40.198878+00 f t ADELANTO 22000.00 5 11840 \N +473392 2025-11-09 16:17:58.923607+00 2025-11-09 16:17:58.923615+00 f t SUBTOTAL 46000.00 1 11843 \N +473393 2025-11-09 16:17:58.925239+00 2025-11-09 16:17:58.925245+00 f t COSTO_SERVICIO 0.00 2 11843 \N +473394 2025-11-09 16:17:58.926325+00 2025-11-09 16:17:58.92633+00 f t DESCUENTO 0.00 3 11843 \N +473395 2025-11-09 16:17:58.927395+00 2025-11-09 16:17:58.927402+00 f t TOTAL 46000.00 4 11843 \N +473396 2025-11-09 16:17:58.928468+00 2025-11-09 16:17:58.928473+00 f t ADELANTO 11000.00 5 11843 \N +473402 2025-11-09 17:02:36.996811+00 2025-11-09 17:02:36.996824+00 f t SUBTOTAL 0.00 1 11844 \N +473403 2025-11-09 17:02:36.998594+00 2025-11-09 17:02:36.998606+00 f t COSTO_SERVICIO 0.00 2 11844 \N +473404 2025-11-09 17:02:37.000315+00 2025-11-09 17:02:37.000326+00 f t DESCUENTO 0.00 3 11844 \N +473405 2025-11-09 17:02:37.00188+00 2025-11-09 17:02:37.001891+00 f t TOTAL 0.00 4 11844 \N +473406 2025-11-09 17:02:37.003277+00 2025-11-09 17:02:37.003286+00 f t ADELANTO 0.00 5 11844 \N +473412 2025-11-09 17:54:22.197059+00 2025-11-09 17:54:22.197068+00 f t SUBTOTAL 0.00 1 11845 \N +473413 2025-11-09 17:54:22.198423+00 2025-11-09 17:54:22.19843+00 f t COSTO_SERVICIO 0.00 2 11845 \N +473414 2025-11-09 17:54:22.199633+00 2025-11-09 17:54:22.199639+00 f t DESCUENTO 0.00 3 11845 \N +473415 2025-11-09 17:54:22.20061+00 2025-11-09 17:54:22.200616+00 f t TOTAL 0.00 4 11845 \N +473416 2025-11-09 17:54:22.201513+00 2025-11-09 17:54:22.201517+00 f t ADELANTO 0.00 5 11845 \N +493842 2025-11-14 02:43:13.786164+00 2025-11-14 02:43:13.786173+00 f t SUBTOTAL 0.00 1 12317 \N +493843 2025-11-14 02:43:13.790924+00 2025-11-14 02:43:13.790932+00 f t COSTO_SERVICIO 0.00 2 12317 \N +493844 2025-11-14 02:43:13.792367+00 2025-11-14 02:43:13.792376+00 f t DESCUENTO 0.00 3 12317 \N +493845 2025-11-14 02:43:13.793583+00 2025-11-14 02:43:13.793588+00 f t TOTAL 0.00 4 12317 \N +473422 2025-11-09 17:59:14.276769+00 2025-11-09 17:59:14.276778+00 f t SUBTOTAL 0.00 1 11846 \N +473423 2025-11-09 17:59:14.278226+00 2025-11-09 17:59:14.278232+00 f t COSTO_SERVICIO 0.00 2 11846 \N +473424 2025-11-09 17:59:14.279405+00 2025-11-09 17:59:14.279411+00 f t DESCUENTO 0.00 3 11846 \N +473425 2025-11-09 17:59:14.280298+00 2025-11-09 17:59:14.280303+00 f t TOTAL 0.00 4 11846 \N +473426 2025-11-09 17:59:14.281044+00 2025-11-09 17:59:14.281049+00 f t ADELANTO 0.00 5 11846 \N +493846 2025-11-14 02:43:13.794609+00 2025-11-14 02:43:13.794613+00 f t ADELANTO 0.00 5 12317 \N +494592 2025-11-14 11:55:02.460308+00 2025-11-14 11:55:02.460322+00 f t SUBTOTAL 23000.00 1 12335 \N +494593 2025-11-14 11:55:02.46347+00 2025-11-14 11:55:02.463484+00 f t COSTO_SERVICIO 0.00 2 12335 \N +494594 2025-11-14 11:55:02.466599+00 2025-11-14 11:55:02.466612+00 f t DESCUENTO 0.00 3 12335 \N +494595 2025-11-14 11:55:02.47018+00 2025-11-14 11:55:02.470194+00 f t TOTAL 23000.00 4 12335 \N +494596 2025-11-14 11:55:02.477334+00 2025-11-14 11:55:02.477348+00 f t ADELANTO 5500.00 5 12335 \N +483352 2025-11-11 22:13:20.208968+00 2025-11-11 22:13:20.208978+00 f t SUBTOTAL 0.00 1 12071 \N +483353 2025-11-11 22:13:20.211245+00 2025-11-11 22:13:20.211252+00 f t COSTO_SERVICIO 0.00 2 12071 \N +483354 2025-11-11 22:13:20.212438+00 2025-11-11 22:13:20.212443+00 f t DESCUENTO 0.00 3 12071 \N +483355 2025-11-11 22:13:20.213505+00 2025-11-11 22:13:20.21351+00 f t TOTAL 0.00 4 12071 \N +483356 2025-11-11 22:13:20.21474+00 2025-11-11 22:13:20.214746+00 f t ADELANTO 0.00 5 12071 \N +473492 2025-11-09 18:04:20.324969+00 2025-11-09 18:04:20.324977+00 f t SUBTOTAL 70000.00 1 11847 \N +473493 2025-11-09 18:04:20.32659+00 2025-11-09 18:04:20.326596+00 f t COSTO_SERVICIO 0.00 2 11847 \N +473494 2025-11-09 18:04:20.327896+00 2025-11-09 18:04:20.327903+00 f t DESCUENTO 0.00 3 11847 \N +473495 2025-11-09 18:04:20.329021+00 2025-11-09 18:04:20.329027+00 f t TOTAL 70000.00 4 11847 \N +473496 2025-11-09 18:04:20.330293+00 2025-11-09 18:04:20.330299+00 f t ADELANTO 19000.00 5 11847 \N +500080 2025-11-15 21:46:57.818531+00 2025-11-15 21:46:57.818539+00 f t TOTAL 0.00 4 12477 \N +500081 2025-11-15 21:46:57.819981+00 2025-11-15 21:46:57.819989+00 f t ADELANTO 0.00 5 12477 \N +500378 2025-11-16 05:04:00.765446+00 2025-11-16 05:04:00.765454+00 f t COSTO_SERVICIO 0.00 2 12484 \N +500379 2025-11-16 05:04:00.766927+00 2025-11-16 05:04:00.766935+00 f t DESCUENTO 0.00 3 12484 \N +500380 2025-11-16 05:04:00.768121+00 2025-11-16 05:04:00.768128+00 f t TOTAL 30000.00 4 12484 \N +500381 2025-11-16 05:04:00.769385+00 2025-11-16 05:04:00.769391+00 f t ADELANTO 30000.00 5 12484 \N +489447 2025-11-13 08:54:00.922261+00 2025-11-13 08:54:00.92227+00 f t SUBTOTAL 0.00 1 12213 \N +489448 2025-11-13 08:54:00.9235+00 2025-11-13 08:54:00.923506+00 f t COSTO_SERVICIO 0.00 2 12213 \N +489449 2025-11-13 08:54:00.924461+00 2025-11-13 08:54:00.924466+00 f t DESCUENTO 0.00 3 12213 \N +489450 2025-11-13 08:54:00.92534+00 2025-11-13 08:54:00.925345+00 f t TOTAL 0.00 4 12213 \N +489451 2025-11-13 08:54:00.926182+00 2025-11-13 08:54:00.92619+00 f t ADELANTO 0.00 5 12213 \N +489857 2025-11-13 13:41:08.496875+00 2025-11-13 13:41:08.496884+00 f t SUBTOTAL 46000.00 1 12229 \N +489858 2025-11-13 13:41:08.498724+00 2025-11-13 13:41:08.498732+00 f t COSTO_SERVICIO 0.00 2 12229 \N +489859 2025-11-13 13:41:08.49995+00 2025-11-13 13:41:08.499955+00 f t DESCUENTO 0.00 3 12229 \N +489860 2025-11-13 13:41:08.501219+00 2025-11-13 13:41:08.501225+00 f t TOTAL 46000.00 4 12229 \N +489861 2025-11-13 13:41:08.502373+00 2025-11-13 13:41:08.502379+00 f t ADELANTO 11000.00 5 12229 \N +479587 2025-11-11 02:52:33.042312+00 2025-11-11 02:52:33.042321+00 f t SUBTOTAL 0.00 1 11990 \N +479588 2025-11-11 02:52:33.043548+00 2025-11-11 02:52:33.043554+00 f t COSTO_SERVICIO 0.00 2 11990 \N +479589 2025-11-11 02:52:33.044511+00 2025-11-11 02:52:33.044516+00 f t DESCUENTO 0.00 3 11990 \N +479590 2025-11-11 02:52:33.045484+00 2025-11-11 02:52:33.045489+00 f t TOTAL 0.00 4 11990 \N +479591 2025-11-11 02:52:33.046307+00 2025-11-11 02:52:33.046311+00 f t ADELANTO 0.00 5 11990 \N +490547 2025-11-13 16:39:44.345856+00 2025-11-13 16:39:44.345865+00 f t SUBTOTAL 54000.00 1 12245 \N +490548 2025-11-13 16:39:44.348056+00 2025-11-13 16:39:44.348063+00 f t COSTO_SERVICIO 0.00 2 12245 \N +490549 2025-11-13 16:39:44.352755+00 2025-11-13 16:39:44.352764+00 f t DESCUENTO 0.00 3 12245 \N +490550 2025-11-13 16:39:44.354509+00 2025-11-13 16:39:44.354517+00 f t TOTAL 54000.00 4 12245 \N +490551 2025-11-13 16:39:44.356085+00 2025-11-13 16:39:44.356092+00 f t ADELANTO 13500.00 5 12245 \N +490722 2025-11-13 17:24:06.282652+00 2025-11-13 17:24:06.282661+00 f t SUBTOTAL 0.00 1 12252 \N +490723 2025-11-13 17:24:06.284296+00 2025-11-13 17:24:06.284304+00 f t COSTO_SERVICIO 0.00 2 12252 \N +490724 2025-11-13 17:24:06.286928+00 2025-11-13 17:24:06.286936+00 f t DESCUENTO 0.00 3 12252 \N +490725 2025-11-13 17:24:06.288245+00 2025-11-13 17:24:06.288252+00 f t TOTAL 0.00 4 12252 \N +490726 2025-11-13 17:24:06.289399+00 2025-11-13 17:24:06.289405+00 f t ADELANTO 0.00 5 12252 \N +491032 2025-11-13 18:57:17.080179+00 2025-11-13 18:57:17.080189+00 f t SUBTOTAL 46000.00 1 12251 \N +491033 2025-11-13 18:57:17.081846+00 2025-11-13 18:57:17.081854+00 f t COSTO_SERVICIO 0.00 2 12251 \N +491034 2025-11-13 18:57:17.082892+00 2025-11-13 18:57:17.082897+00 f t DESCUENTO 0.00 3 12251 \N +491035 2025-11-13 18:57:17.083766+00 2025-11-13 18:57:17.08377+00 f t TOTAL 46000.00 4 12251 \N +491036 2025-11-13 18:57:17.084556+00 2025-11-13 18:57:17.08456+00 f t ADELANTO 11000.00 5 12251 \N +481172 2025-11-11 13:55:19.154857+00 2025-11-11 13:55:19.154863+00 f t SUBTOTAL 70000.00 1 12017 \N +481173 2025-11-11 13:55:19.156423+00 2025-11-11 13:55:19.156429+00 f t COSTO_SERVICIO 0.00 2 12017 \N +481174 2025-11-11 13:55:19.157508+00 2025-11-11 13:55:19.157513+00 f t DESCUENTO 0.00 3 12017 \N +481175 2025-11-11 13:55:19.158428+00 2025-11-11 13:55:19.158433+00 f t TOTAL 70000.00 4 12017 \N +481176 2025-11-11 13:55:19.159392+00 2025-11-11 13:55:19.1594+00 f t ADELANTO 19000.00 5 12017 \N +491917 2025-11-13 23:16:46.41471+00 2025-11-13 23:16:46.414718+00 f t SUBTOTAL 46000.00 1 12284 \N +491918 2025-11-13 23:16:46.416856+00 2025-11-13 23:16:46.416863+00 f t COSTO_SERVICIO 0.00 2 12284 \N +491919 2025-11-13 23:16:46.418116+00 2025-11-13 23:16:46.418123+00 f t DESCUENTO 0.00 3 12284 \N +491920 2025-11-13 23:16:46.419454+00 2025-11-13 23:16:46.41946+00 f t TOTAL 46000.00 4 12284 \N +491921 2025-11-13 23:16:46.420468+00 2025-11-13 23:16:46.420473+00 f t ADELANTO 11000.00 5 12284 \N +482037 2025-11-11 17:16:55.319419+00 2025-11-11 17:16:55.319426+00 f t SUBTOTAL 70000.00 1 12035 \N +482038 2025-11-11 17:16:55.321299+00 2025-11-11 17:16:55.321307+00 f t COSTO_SERVICIO 0.00 2 12035 \N +482039 2025-11-11 17:16:55.322606+00 2025-11-11 17:16:55.322611+00 f t DESCUENTO 0.00 3 12035 \N +473647 2025-11-09 18:28:43.288763+00 2025-11-09 18:28:43.28877+00 f t SUBTOTAL 46000.00 1 11849 \N +473648 2025-11-09 18:28:43.290473+00 2025-11-09 18:28:43.290482+00 f t COSTO_SERVICIO 0.00 2 11849 \N +473649 2025-11-09 18:28:43.291796+00 2025-11-09 18:28:43.291803+00 f t DESCUENTO 0.00 3 11849 \N +473650 2025-11-09 18:28:43.29286+00 2025-11-09 18:28:43.292865+00 f t TOTAL 46000.00 4 11849 \N +473651 2025-11-09 18:28:43.293818+00 2025-11-09 18:28:43.293823+00 f t ADELANTO 11000.00 5 11849 \N +482040 2025-11-11 17:16:55.323569+00 2025-11-11 17:16:55.323574+00 f t TOTAL 70000.00 4 12035 \N +482041 2025-11-11 17:16:55.325045+00 2025-11-11 17:16:55.325051+00 f t ADELANTO 19000.00 5 12035 \N +482787 2025-11-11 20:36:02.701882+00 2025-11-11 20:36:02.701892+00 f t SUBTOTAL 0.00 1 12054 \N +482788 2025-11-11 20:36:02.70361+00 2025-11-11 20:36:02.703619+00 f t COSTO_SERVICIO 0.00 2 12054 \N +482789 2025-11-11 20:36:02.709472+00 2025-11-11 20:36:02.709485+00 f t DESCUENTO 0.00 3 12054 \N +482790 2025-11-11 20:36:02.711523+00 2025-11-11 20:36:02.711531+00 f t TOTAL 0.00 4 12054 \N +482791 2025-11-11 20:36:02.713503+00 2025-11-11 20:36:02.713512+00 f t ADELANTO 0.00 5 12054 \N +493852 2025-11-14 03:20:05.87107+00 2025-11-14 03:20:05.871082+00 f t SUBTOTAL 0.00 1 12319 \N +493853 2025-11-14 03:20:05.873151+00 2025-11-14 03:20:05.873162+00 f t COSTO_SERVICIO 0.00 2 12319 \N +493854 2025-11-14 03:20:05.874927+00 2025-11-14 03:20:05.874938+00 f t DESCUENTO 0.00 3 12319 \N +493855 2025-11-14 03:20:05.876609+00 2025-11-14 03:20:05.87662+00 f t TOTAL 0.00 4 12319 \N +493856 2025-11-14 03:20:05.87836+00 2025-11-14 03:20:05.878369+00 f t ADELANTO 0.00 5 12319 \N +494292 2025-11-14 11:02:30.967278+00 2025-11-14 11:02:30.967286+00 f t SUBTOTAL 55000.00 1 12327 \N +494293 2025-11-14 11:02:30.968869+00 2025-11-14 11:02:30.968875+00 f t COSTO_SERVICIO 0.00 2 12327 \N +494294 2025-11-14 11:02:30.970119+00 2025-11-14 11:02:30.970125+00 f t DESCUENTO 0.00 3 12327 \N +494295 2025-11-14 11:02:30.971061+00 2025-11-14 11:02:30.971067+00 f t TOTAL 55000.00 4 12327 \N +494296 2025-11-14 11:02:30.972104+00 2025-11-14 11:02:30.972109+00 f t ADELANTO 11000.00 5 12327 \N +473777 2025-11-09 18:44:55.845566+00 2025-11-09 18:44:55.845574+00 f t SUBTOTAL 46000.00 1 11848 \N +473778 2025-11-09 18:44:55.847416+00 2025-11-09 18:44:55.847422+00 f t COSTO_SERVICIO 0.00 2 11848 \N +473779 2025-11-09 18:44:55.848663+00 2025-11-09 18:44:55.848669+00 f t DESCUENTO 0.00 3 11848 \N +473780 2025-11-09 18:44:55.849978+00 2025-11-09 18:44:55.849983+00 f t TOTAL 46000.00 4 11848 \N +473781 2025-11-09 18:44:55.851104+00 2025-11-09 18:44:55.851111+00 f t ADELANTO 11000.00 5 11848 \N +512007 2025-11-18 22:06:06.8319+00 2025-11-18 22:06:06.831909+00 f t SUBTOTAL 135500.00 1 12745 \N +512008 2025-11-18 22:06:06.83375+00 2025-11-18 22:06:06.833756+00 f t COSTO_SERVICIO 0.00 2 12745 \N +512009 2025-11-18 22:06:06.835153+00 2025-11-18 22:06:06.835158+00 f t DESCUENTO 0.00 3 12745 \N +512010 2025-11-18 22:06:06.836506+00 2025-11-18 22:06:06.836512+00 f t TOTAL 135500.00 4 12745 \N +512011 2025-11-18 22:06:06.837715+00 2025-11-18 22:06:06.837724+00 f t ADELANTO 30000.00 5 12745 \N +478407 2025-11-10 20:53:03.195109+00 2025-11-10 20:53:03.19512+00 f t SUBTOTAL 0.00 1 11959 \N +478408 2025-11-10 20:53:03.197194+00 2025-11-10 20:53:03.197201+00 f t COSTO_SERVICIO 0.00 2 11959 \N +478409 2025-11-10 20:53:03.198608+00 2025-11-10 20:53:03.198613+00 f t DESCUENTO 0.00 3 11959 \N +478410 2025-11-10 20:53:03.199664+00 2025-11-10 20:53:03.199669+00 f t TOTAL 0.00 4 11959 \N +478411 2025-11-10 20:53:03.200624+00 2025-11-10 20:53:03.200645+00 f t ADELANTO 0.00 5 11959 \N +473817 2025-11-09 19:10:49.042283+00 2025-11-09 19:10:49.042291+00 f t SUBTOTAL 78000.00 1 11850 \N +473818 2025-11-09 19:10:49.044013+00 2025-11-09 19:10:49.04402+00 f t COSTO_SERVICIO 0.00 2 11850 \N +473819 2025-11-09 19:10:49.045167+00 2025-11-09 19:10:49.045173+00 f t DESCUENTO 0.00 3 11850 \N +473820 2025-11-09 19:10:49.046152+00 2025-11-09 19:10:49.046157+00 f t TOTAL 78000.00 4 11850 \N +473821 2025-11-09 19:10:49.047258+00 2025-11-09 19:10:49.047268+00 f t ADELANTO 21500.00 5 11850 \N +478837 2025-11-10 21:35:16.593126+00 2025-11-10 21:35:16.593132+00 f t SUBTOTAL 92000.00 1 11969 \N +478838 2025-11-10 21:35:16.594704+00 2025-11-10 21:35:16.59471+00 f t COSTO_SERVICIO 0.00 2 11969 \N +478839 2025-11-10 21:35:16.595841+00 2025-11-10 21:35:16.595846+00 f t DESCUENTO 9200.00 3 11969 \N +478840 2025-11-10 21:35:16.596739+00 2025-11-10 21:35:16.596744+00 f t TOTAL 82800.00 4 11969 \N +478841 2025-11-10 21:35:16.597634+00 2025-11-10 21:35:16.597638+00 f t ADELANTO 22000.00 5 11969 \N +479592 2025-11-11 02:52:54.555033+00 2025-11-11 02:52:54.555042+00 f t SUBTOTAL 0.00 1 11989 \N +479593 2025-11-11 02:52:54.557224+00 2025-11-11 02:52:54.557231+00 f t COSTO_SERVICIO 0.00 2 11989 \N +479594 2025-11-11 02:52:54.558422+00 2025-11-11 02:52:54.558427+00 f t DESCUENTO 0.00 3 11989 \N +479595 2025-11-11 02:52:54.559826+00 2025-11-11 02:52:54.559831+00 f t TOTAL 0.00 4 11989 \N +479596 2025-11-11 02:52:54.5609+00 2025-11-11 02:52:54.560905+00 f t ADELANTO 0.00 5 11989 \N +473867 2025-11-09 19:16:16.287967+00 2025-11-09 19:16:16.28798+00 f t SUBTOTAL 0.00 1 11851 \N +473868 2025-11-09 19:16:16.290201+00 2025-11-09 19:16:16.290211+00 f t COSTO_SERVICIO 0.00 2 11851 \N +473869 2025-11-09 19:16:16.292497+00 2025-11-09 19:16:16.292507+00 f t DESCUENTO 0.00 3 11851 \N +473870 2025-11-09 19:16:16.293982+00 2025-11-09 19:16:16.293991+00 f t TOTAL 0.00 4 11851 \N +473871 2025-11-09 19:16:16.295328+00 2025-11-09 19:16:16.295337+00 f t ADELANTO 0.00 5 11851 \N +473882 2025-11-09 19:30:41.294301+00 2025-11-09 19:30:41.294308+00 f t SUBTOTAL 55000.00 1 11852 \N +473883 2025-11-09 19:30:41.295709+00 2025-11-09 19:30:41.295715+00 f t COSTO_SERVICIO 0.00 2 11852 \N +473884 2025-11-09 19:30:41.296937+00 2025-11-09 19:30:41.296942+00 f t DESCUENTO 0.00 3 11852 \N +473885 2025-11-09 19:30:41.297832+00 2025-11-09 19:30:41.297836+00 f t TOTAL 55000.00 4 11852 \N +473886 2025-11-09 19:30:41.298635+00 2025-11-09 19:30:41.29864+00 f t ADELANTO 11000.00 5 11852 \N +473897 2025-11-09 19:32:53.492739+00 2025-11-09 19:32:53.492746+00 f t SUBTOTAL 88000.00 1 11853 \N +473898 2025-11-09 19:32:53.494197+00 2025-11-09 19:32:53.494203+00 f t COSTO_SERVICIO 0.00 2 11853 \N +473899 2025-11-09 19:32:53.495243+00 2025-11-09 19:32:53.495249+00 f t DESCUENTO 0.00 3 11853 \N +473900 2025-11-09 19:32:53.496329+00 2025-11-09 19:32:53.496334+00 f t TOTAL 88000.00 4 11853 \N +473901 2025-11-09 19:32:53.497274+00 2025-11-09 19:32:53.497282+00 f t ADELANTO 13000.00 5 11853 \N +481177 2025-11-11 13:55:32.975429+00 2025-11-11 13:55:32.975437+00 f t SUBTOTAL 13200.00 1 12018 \N +481178 2025-11-11 13:55:32.977212+00 2025-11-11 13:55:32.977218+00 f t COSTO_SERVICIO 0.00 2 12018 \N +481179 2025-11-11 13:55:32.978537+00 2025-11-11 13:55:32.978542+00 f t DESCUENTO 0.00 3 12018 \N +481180 2025-11-11 13:55:32.980448+00 2025-11-11 13:55:32.980453+00 f t TOTAL 13200.00 4 12018 \N +481181 2025-11-11 13:55:32.981587+00 2025-11-11 13:55:32.981592+00 f t ADELANTO 13200.00 5 12018 \N +473932 2025-11-09 19:44:59.040691+00 2025-11-09 19:44:59.040699+00 f t SUBTOTAL 55000.00 1 11854 \N +473933 2025-11-09 19:44:59.042543+00 2025-11-09 19:44:59.042549+00 f t COSTO_SERVICIO 0.00 2 11854 \N +473934 2025-11-09 19:44:59.04395+00 2025-11-09 19:44:59.043956+00 f t DESCUENTO 0.00 3 11854 \N +473935 2025-11-09 19:44:59.045099+00 2025-11-09 19:44:59.045106+00 f t TOTAL 55000.00 4 11854 \N +473936 2025-11-09 19:44:59.046449+00 2025-11-09 19:44:59.046455+00 f t ADELANTO 11000.00 5 11854 \N +473937 2025-11-09 19:46:51.479599+00 2025-11-09 19:46:51.479606+00 f t SUBTOTAL 78000.00 1 11855 \N +473938 2025-11-09 19:46:51.481161+00 2025-11-09 19:46:51.481165+00 f t COSTO_SERVICIO 0.00 2 11855 \N +473939 2025-11-09 19:46:51.482032+00 2025-11-09 19:46:51.482037+00 f t DESCUENTO 0.00 3 11855 \N +473940 2025-11-09 19:46:51.482854+00 2025-11-09 19:46:51.482859+00 f t TOTAL 78000.00 4 11855 \N +473941 2025-11-09 19:46:51.483843+00 2025-11-09 19:46:51.483848+00 f t ADELANTO 13000.00 5 11855 \N +482047 2025-11-11 17:19:04.392805+00 2025-11-11 17:19:04.392819+00 f t SUBTOTAL 0.00 1 12036 \N +482048 2025-11-11 17:19:04.394341+00 2025-11-11 17:19:04.394348+00 f t COSTO_SERVICIO 0.00 2 12036 \N +482049 2025-11-11 17:19:04.395748+00 2025-11-11 17:19:04.395754+00 f t DESCUENTO 0.00 3 12036 \N +482050 2025-11-11 17:19:04.397307+00 2025-11-11 17:19:04.397314+00 f t TOTAL 0.00 4 12036 \N +482051 2025-11-11 17:19:04.398854+00 2025-11-11 17:19:04.398862+00 f t ADELANTO 0.00 5 12036 \N +473987 2025-11-09 19:50:23.482952+00 2025-11-09 19:50:23.482959+00 f t SUBTOTAL 67700.00 1 11856 \N +473988 2025-11-09 19:50:23.484703+00 2025-11-09 19:50:23.484709+00 f t COSTO_SERVICIO 0.00 2 11856 \N +473989 2025-11-09 19:50:23.486096+00 2025-11-09 19:50:23.486101+00 f t DESCUENTO 0.00 3 11856 \N +473990 2025-11-09 19:50:23.487149+00 2025-11-09 19:50:23.487154+00 f t TOTAL 67700.00 4 11856 \N +473991 2025-11-09 19:50:23.488123+00 2025-11-09 19:50:23.488129+00 f t ADELANTO 50200.00 5 11856 \N +474017 2025-11-09 19:53:24.17378+00 2025-11-09 19:53:24.173791+00 f t SUBTOTAL 0.00 1 11858 \N +474018 2025-11-09 19:53:24.175493+00 2025-11-09 19:53:24.175503+00 f t COSTO_SERVICIO 0.00 2 11858 \N +474019 2025-11-09 19:53:24.17838+00 2025-11-09 19:53:24.178404+00 f t DESCUENTO 0.00 3 11858 \N +474020 2025-11-09 19:53:24.180382+00 2025-11-09 19:53:24.180391+00 f t TOTAL 0.00 4 11858 \N +474021 2025-11-09 19:53:24.182053+00 2025-11-09 19:53:24.182064+00 f t ADELANTO 0.00 5 11858 \N +483367 2025-11-11 22:32:00.611722+00 2025-11-11 22:32:00.611773+00 f t SUBTOTAL 55000.00 1 12072 \N +483368 2025-11-11 22:32:00.613717+00 2025-11-11 22:32:00.613726+00 f t COSTO_SERVICIO 0.00 2 12072 \N +483369 2025-11-11 22:32:00.61498+00 2025-11-11 22:32:00.614987+00 f t DESCUENTO 0.00 3 12072 \N +483370 2025-11-11 22:32:00.616122+00 2025-11-11 22:32:00.616127+00 f t TOTAL 55000.00 4 12072 \N +483371 2025-11-11 22:32:00.617269+00 2025-11-11 22:32:00.617274+00 f t ADELANTO 11000.00 5 12072 \N +483872 2025-11-12 00:45:33.984624+00 2025-11-12 00:45:33.984633+00 f t SUBTOTAL 0.00 1 12086 \N +483873 2025-11-12 00:45:33.98669+00 2025-11-12 00:45:33.986697+00 f t COSTO_SERVICIO 0.00 2 12086 \N +483874 2025-11-12 00:45:33.987852+00 2025-11-12 00:45:33.987858+00 f t DESCUENTO 0.00 3 12086 \N +483875 2025-11-12 00:45:33.988967+00 2025-11-12 00:45:33.988975+00 f t TOTAL 0.00 4 12086 \N +483876 2025-11-12 00:45:33.990022+00 2025-11-12 00:45:33.990028+00 f t ADELANTO 0.00 5 12086 \N +535792 2025-11-23 18:52:01.208145+00 2025-11-23 18:52:01.208156+00 f t SUBTOTAL 70000.00 1 13309 \N +523951 2025-11-20 22:01:46.373273+00 2025-11-20 22:01:46.373278+00 f t ADELANTO 11000.00 5 13034 \N +535793 2025-11-23 18:52:01.210326+00 2025-11-23 18:52:01.210336+00 f t COSTO_SERVICIO 0.00 2 13309 \N +535794 2025-11-23 18:52:01.211958+00 2025-11-23 18:52:01.211967+00 f t DESCUENTO 0.00 3 13309 \N +535795 2025-11-23 18:52:01.213335+00 2025-11-23 18:52:01.213343+00 f t TOTAL 70000.00 4 13309 \N +489457 2025-11-13 08:59:44.628136+00 2025-11-13 08:59:44.628148+00 f t SUBTOTAL 0.00 1 12214 \N +489458 2025-11-13 08:59:44.629817+00 2025-11-13 08:59:44.629824+00 f t COSTO_SERVICIO 0.00 2 12214 \N +489459 2025-11-13 08:59:44.63104+00 2025-11-13 08:59:44.631055+00 f t DESCUENTO 0.00 3 12214 \N +489460 2025-11-13 08:59:44.632192+00 2025-11-13 08:59:44.632197+00 f t TOTAL 0.00 4 12214 \N +489461 2025-11-13 08:59:44.633133+00 2025-11-13 08:59:44.633138+00 f t ADELANTO 0.00 5 12214 \N +478627 2025-11-10 21:19:56.497401+00 2025-11-10 21:19:56.49741+00 f t SUBTOTAL 0.00 1 11964 \N +478628 2025-11-10 21:19:56.49919+00 2025-11-10 21:19:56.499196+00 f t COSTO_SERVICIO 0.00 2 11964 \N +478629 2025-11-10 21:19:56.500303+00 2025-11-10 21:19:56.500309+00 f t DESCUENTO 0.00 3 11964 \N +478630 2025-11-10 21:19:56.501378+00 2025-11-10 21:19:56.501384+00 f t TOTAL 0.00 4 11964 \N +478631 2025-11-10 21:19:56.502267+00 2025-11-10 21:19:56.502273+00 f t ADELANTO 0.00 5 11964 \N +489867 2025-11-13 13:56:42.506851+00 2025-11-13 13:56:42.506859+00 f t SUBTOTAL 0.00 1 12230 \N +489868 2025-11-13 13:56:42.508225+00 2025-11-13 13:56:42.508231+00 f t COSTO_SERVICIO 0.00 2 12230 \N +489869 2025-11-13 13:56:42.509621+00 2025-11-13 13:56:42.509629+00 f t DESCUENTO 0.00 3 12230 \N +489870 2025-11-13 13:56:42.510762+00 2025-11-13 13:56:42.510767+00 f t TOTAL 0.00 4 12230 \N +489871 2025-11-13 13:56:42.511898+00 2025-11-13 13:56:42.511905+00 f t ADELANTO 0.00 5 12230 \N +474142 2025-11-09 19:56:34.138605+00 2025-11-09 19:56:34.138616+00 f t SUBTOTAL 0.00 1 11859 \N +474143 2025-11-09 19:56:34.140671+00 2025-11-09 19:56:34.140682+00 f t COSTO_SERVICIO 0.00 2 11859 \N +474144 2025-11-09 19:56:34.142209+00 2025-11-09 19:56:34.142219+00 f t DESCUENTO 0.00 3 11859 \N +474145 2025-11-09 19:56:34.143735+00 2025-11-09 19:56:34.143743+00 f t TOTAL 0.00 4 11859 \N +474146 2025-11-09 19:56:34.145247+00 2025-11-09 19:56:34.145255+00 f t ADELANTO 0.00 5 11859 \N +474177 2025-11-09 19:59:44.940571+00 2025-11-09 19:59:44.94058+00 f t SUBTOTAL 30000.00 1 11860 \N +474178 2025-11-09 19:59:44.942344+00 2025-11-09 19:59:44.942351+00 f t COSTO_SERVICIO 0.00 2 11860 \N +474179 2025-11-09 19:59:44.943526+00 2025-11-09 19:59:44.943532+00 f t DESCUENTO 0.00 3 11860 \N +474180 2025-11-09 19:59:44.944719+00 2025-11-09 19:59:44.944727+00 f t TOTAL 30000.00 4 11860 \N +474181 2025-11-09 19:59:44.945827+00 2025-11-09 19:59:44.945832+00 f t ADELANTO 30000.00 5 11860 \N +474192 2025-11-09 20:04:47.038557+00 2025-11-09 20:04:47.038565+00 f t SUBTOTAL 45000.00 1 11861 \N +474193 2025-11-09 20:04:47.040449+00 2025-11-09 20:04:47.040457+00 f t COSTO_SERVICIO 0.00 2 11861 \N +474194 2025-11-09 20:04:47.041929+00 2025-11-09 20:04:47.041936+00 f t DESCUENTO 0.00 3 11861 \N +474195 2025-11-09 20:04:47.043046+00 2025-11-09 20:04:47.043051+00 f t TOTAL 45000.00 4 11861 \N +474196 2025-11-09 20:04:47.044139+00 2025-11-09 20:04:47.044144+00 f t ADELANTO 45000.00 5 11861 \N +474222 2025-11-09 20:08:35.869293+00 2025-11-09 20:08:35.8693+00 f t SUBTOTAL 55000.00 1 11862 \N +474223 2025-11-09 20:08:35.870669+00 2025-11-09 20:08:35.870675+00 f t COSTO_SERVICIO 0.00 2 11862 \N +474224 2025-11-09 20:08:35.871686+00 2025-11-09 20:08:35.871691+00 f t DESCUENTO 0.00 3 11862 \N +474225 2025-11-09 20:08:35.872529+00 2025-11-09 20:08:35.872534+00 f t TOTAL 55000.00 4 11862 \N +474226 2025-11-09 20:08:35.873456+00 2025-11-09 20:08:35.873461+00 f t ADELANTO 11000.00 5 11862 \N +481187 2025-11-11 14:17:04.5958+00 2025-11-11 14:17:04.595815+00 f t SUBTOTAL 0.00 1 12019 \N +481188 2025-11-11 14:17:04.597782+00 2025-11-11 14:17:04.597795+00 f t COSTO_SERVICIO 0.00 2 12019 \N +481189 2025-11-11 14:17:04.599585+00 2025-11-11 14:17:04.599597+00 f t DESCUENTO 0.00 3 12019 \N +481190 2025-11-11 14:17:04.601551+00 2025-11-11 14:17:04.601561+00 f t TOTAL 0.00 4 12019 \N +481191 2025-11-11 14:17:04.603549+00 2025-11-11 14:17:04.603557+00 f t ADELANTO 0.00 5 12019 \N +474262 2025-11-09 20:11:21.640835+00 2025-11-09 20:11:21.640845+00 f t SUBTOTAL 55000.00 1 11863 \N +474263 2025-11-09 20:11:21.642173+00 2025-11-09 20:11:21.642179+00 f t COSTO_SERVICIO 0.00 2 11863 \N +474264 2025-11-09 20:11:21.643209+00 2025-11-09 20:11:21.643216+00 f t DESCUENTO 0.00 3 11863 \N +474265 2025-11-09 20:11:21.644213+00 2025-11-09 20:11:21.644219+00 f t TOTAL 55000.00 4 11863 \N +474266 2025-11-09 20:11:21.645351+00 2025-11-09 20:11:21.645356+00 f t ADELANTO 11000.00 5 11863 \N +474272 2025-11-09 20:21:37.954589+00 2025-11-09 20:21:37.954597+00 f t SUBTOTAL 53700.00 1 11753 \N +474273 2025-11-09 20:21:37.95638+00 2025-11-09 20:21:37.956391+00 f t COSTO_SERVICIO 0.00 2 11753 \N +474274 2025-11-09 20:21:37.959245+00 2025-11-09 20:21:37.959254+00 f t DESCUENTO 0.00 3 11753 \N +474275 2025-11-09 20:21:37.961047+00 2025-11-09 20:21:37.961055+00 f t TOTAL 53700.00 4 11753 \N +474276 2025-11-09 20:21:37.96237+00 2025-11-09 20:21:37.962378+00 f t ADELANTO 13200.00 5 11753 \N +482667 2025-11-11 19:56:36.691773+00 2025-11-11 19:56:36.69178+00 f t SUBTOTAL 156000.00 1 12048 \N +482668 2025-11-11 19:56:36.693361+00 2025-11-11 19:56:36.693367+00 f t COSTO_SERVICIO 0.00 2 12048 \N +482669 2025-11-11 19:56:36.69437+00 2025-11-11 19:56:36.694375+00 f t DESCUENTO 9200.00 3 12048 \N +482670 2025-11-11 19:56:36.695313+00 2025-11-11 19:56:36.695318+00 f t TOTAL 146800.00 4 12048 \N +482671 2025-11-11 19:56:36.696258+00 2025-11-11 19:56:36.696263+00 f t ADELANTO 43000.00 5 12048 \N +483037 2025-11-11 21:25:01.385673+00 2025-11-11 21:25:01.385687+00 f t SUBTOTAL 88000.00 1 12062 \N +483038 2025-11-11 21:25:01.388417+00 2025-11-11 21:25:01.388431+00 f t COSTO_SERVICIO 0.00 2 12062 \N +483039 2025-11-11 21:25:01.390536+00 2025-11-11 21:25:01.390548+00 f t DESCUENTO 0.00 3 12062 \N +483040 2025-11-11 21:25:01.393037+00 2025-11-11 21:25:01.393049+00 f t TOTAL 88000.00 4 12062 \N +483041 2025-11-11 21:25:01.395105+00 2025-11-11 21:25:01.395121+00 f t ADELANTO 13000.00 5 12062 \N +483147 2025-11-11 21:39:57.348623+00 2025-11-11 21:39:57.348632+00 f t SUBTOTAL 0.00 1 12065 \N +483148 2025-11-11 21:39:57.350547+00 2025-11-11 21:39:57.350553+00 f t COSTO_SERVICIO 0.00 2 12065 \N +483149 2025-11-11 21:39:57.351556+00 2025-11-11 21:39:57.351561+00 f t DESCUENTO 0.00 3 12065 \N +483150 2025-11-11 21:39:57.35244+00 2025-11-11 21:39:57.352445+00 f t TOTAL 0.00 4 12065 \N +483151 2025-11-11 21:39:57.35351+00 2025-11-11 21:39:57.353516+00 f t ADELANTO 0.00 5 12065 \N +483252 2025-11-11 21:54:13.627932+00 2025-11-11 21:54:13.627941+00 f t SUBTOTAL 0.00 1 12067 \N +483253 2025-11-11 21:54:13.629896+00 2025-11-11 21:54:13.629902+00 f t COSTO_SERVICIO 0.00 2 12067 \N +483254 2025-11-11 21:54:13.630997+00 2025-11-11 21:54:13.631003+00 f t DESCUENTO 0.00 3 12067 \N +483255 2025-11-11 21:54:13.63212+00 2025-11-11 21:54:13.632124+00 f t TOTAL 0.00 4 12067 \N +483256 2025-11-11 21:54:13.63317+00 2025-11-11 21:54:13.633175+00 f t ADELANTO 0.00 5 12067 \N +474357 2025-11-09 20:25:36.646482+00 2025-11-09 20:25:36.646489+00 f t SUBTOTAL 100000.00 1 11864 \N +474358 2025-11-09 20:25:36.648034+00 2025-11-09 20:25:36.64804+00 f t COSTO_SERVICIO 0.00 2 11864 \N +474359 2025-11-09 20:25:36.649273+00 2025-11-09 20:25:36.649277+00 f t DESCUENTO 9200.00 3 11864 \N +474360 2025-11-09 20:25:36.650272+00 2025-11-09 20:25:36.650276+00 f t TOTAL 90800.00 4 11864 \N +474361 2025-11-09 20:25:36.651292+00 2025-11-09 20:25:36.651298+00 f t ADELANTO 24500.00 5 11864 \N +477677 2025-11-10 19:38:20.9663+00 2025-11-10 19:38:20.96631+00 f t SUBTOTAL 46000.00 1 11940 \N +477678 2025-11-10 19:38:20.968004+00 2025-11-10 19:38:20.96801+00 f t COSTO_SERVICIO 0.00 2 11940 \N +477679 2025-11-10 19:38:20.969183+00 2025-11-10 19:38:20.969188+00 f t DESCUENTO 0.00 3 11940 \N +477680 2025-11-10 19:38:20.970309+00 2025-11-10 19:38:20.970317+00 f t TOTAL 46000.00 4 11940 \N +477681 2025-11-10 19:38:20.971329+00 2025-11-10 19:38:20.971334+00 f t ADELANTO 11000.00 5 11940 \N +500387 2025-11-16 11:36:02.81344+00 2025-11-16 11:36:02.813448+00 f t SUBTOTAL 0.00 1 12485 \N +500388 2025-11-16 11:36:02.815236+00 2025-11-16 11:36:02.815244+00 f t COSTO_SERVICIO 0.00 2 12485 \N +500389 2025-11-16 11:36:02.816539+00 2025-11-16 11:36:02.816546+00 f t DESCUENTO 0.00 3 12485 \N +500390 2025-11-16 11:36:02.817611+00 2025-11-16 11:36:02.817617+00 f t TOTAL 0.00 4 12485 \N +500391 2025-11-16 11:36:02.818613+00 2025-11-16 11:36:02.818619+00 f t ADELANTO 0.00 5 12485 \N +489667 2025-11-13 11:53:12.314985+00 2025-11-13 11:53:12.314993+00 f t SUBTOTAL 0.00 1 12221 \N +489668 2025-11-13 11:53:12.316613+00 2025-11-13 11:53:12.316619+00 f t COSTO_SERVICIO 0.00 2 12221 \N +489669 2025-11-13 11:53:12.317605+00 2025-11-13 11:53:12.31761+00 f t DESCUENTO 0.00 3 12221 \N +489670 2025-11-13 11:53:12.318528+00 2025-11-13 11:53:12.318533+00 f t TOTAL 0.00 4 12221 \N +489671 2025-11-13 11:53:12.319534+00 2025-11-13 11:53:12.319541+00 f t ADELANTO 0.00 5 12221 \N +489877 2025-11-13 14:00:19.311567+00 2025-11-13 14:00:19.311581+00 f t SUBTOTAL 0.00 1 12231 \N +489878 2025-11-13 14:00:19.316422+00 2025-11-13 14:00:19.316437+00 f t COSTO_SERVICIO 0.00 2 12231 \N +489879 2025-11-13 14:00:19.319975+00 2025-11-13 14:00:19.31999+00 f t DESCUENTO 0.00 3 12231 \N +489880 2025-11-13 14:00:19.32409+00 2025-11-13 14:00:19.324103+00 f t TOTAL 0.00 4 12231 \N +489881 2025-11-13 14:00:19.329044+00 2025-11-13 14:00:19.329058+00 f t ADELANTO 0.00 5 12231 \N +474442 2025-11-09 20:28:13.232948+00 2025-11-09 20:28:13.232954+00 f t SUBTOTAL 78000.00 1 11865 \N +474443 2025-11-09 20:28:13.234348+00 2025-11-09 20:28:13.234353+00 f t COSTO_SERVICIO 0.00 2 11865 \N +474444 2025-11-09 20:28:13.235489+00 2025-11-09 20:28:13.235494+00 f t DESCUENTO 0.00 3 11865 \N +474445 2025-11-09 20:28:13.236471+00 2025-11-09 20:28:13.236478+00 f t TOTAL 78000.00 4 11865 \N +474446 2025-11-09 20:28:13.237439+00 2025-11-09 20:28:13.237444+00 f t ADELANTO 21500.00 5 11865 \N +491772 2025-11-13 22:49:59.928502+00 2025-11-13 22:49:59.928512+00 f t SUBTOTAL 55000.00 1 12278 \N +491773 2025-11-13 22:49:59.930153+00 2025-11-13 22:49:59.930159+00 f t COSTO_SERVICIO 0.00 2 12278 \N +491774 2025-11-13 22:49:59.931873+00 2025-11-13 22:49:59.931878+00 f t DESCUENTO 0.00 3 12278 \N +491775 2025-11-13 22:49:59.933232+00 2025-11-13 22:49:59.933237+00 f t TOTAL 55000.00 4 12278 \N +491776 2025-11-13 22:49:59.934455+00 2025-11-13 22:49:59.93446+00 f t ADELANTO 11000.00 5 12278 \N +474507 2025-11-09 20:34:20.571089+00 2025-11-09 20:34:20.571101+00 f t SUBTOTAL 55000.00 1 11866 \N +474508 2025-11-09 20:34:20.572949+00 2025-11-09 20:34:20.572959+00 f t COSTO_SERVICIO 0.00 2 11866 \N +474509 2025-11-09 20:34:20.574446+00 2025-11-09 20:34:20.574454+00 f t DESCUENTO 0.00 3 11866 \N +474510 2025-11-09 20:34:20.57591+00 2025-11-09 20:34:20.575917+00 f t TOTAL 55000.00 4 11866 \N +474511 2025-11-09 20:34:20.577073+00 2025-11-09 20:34:20.577079+00 f t ADELANTO 11000.00 5 11866 \N +492477 2025-11-14 00:19:06.224036+00 2025-11-14 00:19:06.224045+00 f t SUBTOTAL 0.00 1 12294 \N +492478 2025-11-14 00:19:06.226131+00 2025-11-14 00:19:06.226139+00 f t COSTO_SERVICIO 0.00 2 12294 \N +492479 2025-11-14 00:19:06.227444+00 2025-11-14 00:19:06.22745+00 f t DESCUENTO 0.00 3 12294 \N +492480 2025-11-14 00:19:06.228474+00 2025-11-14 00:19:06.228479+00 f t TOTAL 0.00 4 12294 \N +492481 2025-11-14 00:19:06.229429+00 2025-11-14 00:19:06.229434+00 f t ADELANTO 0.00 5 12294 \N +474537 2025-11-09 22:12:20.585137+00 2025-11-09 22:12:20.585145+00 f t SUBTOTAL 72500.00 1 11867 \N +474538 2025-11-09 22:12:20.586672+00 2025-11-09 22:12:20.586678+00 f t COSTO_SERVICIO 0.00 2 11867 \N +474539 2025-11-09 22:12:20.587662+00 2025-11-09 22:12:20.587667+00 f t DESCUENTO 0.00 3 11867 \N +474540 2025-11-09 22:12:20.588676+00 2025-11-09 22:12:20.588684+00 f t TOTAL 72500.00 4 11867 \N +474541 2025-11-09 22:12:20.589741+00 2025-11-09 22:12:20.589748+00 f t ADELANTO 72500.00 5 11867 \N +492892 2025-11-14 01:04:41.282515+00 2025-11-14 01:04:41.282525+00 f t SUBTOTAL 85000.00 1 12301 \N +492893 2025-11-14 01:04:41.284397+00 2025-11-14 01:04:41.284405+00 f t COSTO_SERVICIO 0.00 2 12301 \N +492894 2025-11-14 01:04:41.285515+00 2025-11-14 01:04:41.285521+00 f t DESCUENTO 0.00 3 12301 \N +492895 2025-11-14 01:04:41.286578+00 2025-11-14 01:04:41.286583+00 f t TOTAL 85000.00 4 12301 \N +492896 2025-11-14 01:04:41.287555+00 2025-11-14 01:04:41.28756+00 f t ADELANTO 15000.00 5 12301 \N +482927 2025-11-11 21:14:09.237119+00 2025-11-11 21:14:09.237126+00 f t SUBTOTAL 54000.00 1 12059 \N +482928 2025-11-11 21:14:09.238564+00 2025-11-11 21:14:09.238569+00 f t COSTO_SERVICIO 0.00 2 12059 \N +482929 2025-11-11 21:14:09.23949+00 2025-11-11 21:14:09.239495+00 f t DESCUENTO 0.00 3 12059 \N +482930 2025-11-11 21:14:09.240369+00 2025-11-11 21:14:09.240374+00 f t TOTAL 54000.00 4 12059 \N +482931 2025-11-11 21:14:09.24127+00 2025-11-11 21:14:09.241275+00 f t ADELANTO 13500.00 5 12059 \N +474602 2025-11-09 22:21:20.049239+00 2025-11-09 22:21:20.049249+00 f t SUBTOTAL 0.00 1 11868 \N +474603 2025-11-09 22:21:20.051062+00 2025-11-09 22:21:20.05107+00 f t COSTO_SERVICIO 0.00 2 11868 \N +474604 2025-11-09 22:21:20.052461+00 2025-11-09 22:21:20.052468+00 f t DESCUENTO 0.00 3 11868 \N +474605 2025-11-09 22:21:20.054732+00 2025-11-09 22:21:20.05474+00 f t TOTAL 0.00 4 11868 \N +474606 2025-11-09 22:21:20.056387+00 2025-11-09 22:21:20.056395+00 f t ADELANTO 0.00 5 11868 \N +483262 2025-11-11 21:54:30.518635+00 2025-11-11 21:54:30.518644+00 f t SUBTOTAL 0.00 1 12068 \N +483263 2025-11-11 21:54:30.519963+00 2025-11-11 21:54:30.519969+00 f t COSTO_SERVICIO 0.00 2 12068 \N +483264 2025-11-11 21:54:30.520909+00 2025-11-11 21:54:30.520914+00 f t DESCUENTO 0.00 3 12068 \N +483265 2025-11-11 21:54:30.521873+00 2025-11-11 21:54:30.521878+00 f t TOTAL 0.00 4 12068 \N +483266 2025-11-11 21:54:30.522705+00 2025-11-11 21:54:30.52271+00 f t ADELANTO 0.00 5 12068 \N +474622 2025-11-09 22:23:24.724744+00 2025-11-09 22:23:24.724754+00 f t SUBTOTAL 0.00 1 11869 \N +474623 2025-11-09 22:23:24.726953+00 2025-11-09 22:23:24.726966+00 f t COSTO_SERVICIO 0.00 2 11869 \N +474624 2025-11-09 22:23:24.728489+00 2025-11-09 22:23:24.728495+00 f t DESCUENTO 0.00 3 11869 \N +474625 2025-11-09 22:23:24.729828+00 2025-11-09 22:23:24.729834+00 f t TOTAL 0.00 4 11869 \N +474626 2025-11-09 22:23:24.731217+00 2025-11-09 22:23:24.731222+00 f t ADELANTO 0.00 5 11869 \N +483802 2025-11-11 23:50:41.503097+00 2025-11-11 23:50:41.503105+00 f t SUBTOTAL 0.00 1 12082 \N +483803 2025-11-11 23:50:41.504773+00 2025-11-11 23:50:41.50478+00 f t COSTO_SERVICIO 0.00 2 12082 \N +483804 2025-11-11 23:50:41.505793+00 2025-11-11 23:50:41.505798+00 f t DESCUENTO 0.00 3 12082 \N +483805 2025-11-11 23:50:41.506703+00 2025-11-11 23:50:41.506708+00 f t TOTAL 0.00 4 12082 \N +483806 2025-11-11 23:50:41.507654+00 2025-11-11 23:50:41.507659+00 f t ADELANTO 0.00 5 12082 \N +494602 2025-11-14 11:55:03.690943+00 2025-11-14 11:55:03.690957+00 f t SUBTOTAL 55000.00 1 12334 \N +494603 2025-11-14 11:55:03.695341+00 2025-11-14 11:55:03.695354+00 f t COSTO_SERVICIO 0.00 2 12334 \N +494604 2025-11-14 11:55:03.697957+00 2025-11-14 11:55:03.697969+00 f t DESCUENTO 0.00 3 12334 \N +494605 2025-11-14 11:55:03.700384+00 2025-11-14 11:55:03.700397+00 f t TOTAL 55000.00 4 12334 \N +494606 2025-11-14 11:55:03.705478+00 2025-11-14 11:55:03.705492+00 f t ADELANTO 11000.00 5 12334 \N +535796 2025-11-23 18:52:01.214824+00 2025-11-23 18:52:01.214832+00 f t ADELANTO 19000.00 5 13309 \N +512017 2025-11-18 22:12:22.83995+00 2025-11-18 22:12:22.839982+00 f t SUBTOTAL 0.00 1 12746 \N +512018 2025-11-18 22:12:22.842304+00 2025-11-18 22:12:22.842317+00 f t COSTO_SERVICIO 0.00 2 12746 \N +512019 2025-11-18 22:12:22.844189+00 2025-11-18 22:12:22.844197+00 f t DESCUENTO 0.00 3 12746 \N +512020 2025-11-18 22:12:22.845956+00 2025-11-18 22:12:22.845964+00 f t TOTAL 0.00 4 12746 \N +512021 2025-11-18 22:12:22.847569+00 2025-11-18 22:12:22.847577+00 f t ADELANTO 0.00 5 12746 \N +489262 2025-11-13 03:17:48.715957+00 2025-11-13 03:17:48.715964+00 f t SUBTOTAL 118500.00 1 12208 \N +489263 2025-11-13 03:17:48.717741+00 2025-11-13 03:17:48.717746+00 f t COSTO_SERVICIO 0.00 2 12208 \N +489264 2025-11-13 03:17:48.718855+00 2025-11-13 03:17:48.71886+00 f t DESCUENTO 0.00 3 12208 \N +489265 2025-11-13 03:17:48.72001+00 2025-11-13 03:17:48.720015+00 f t TOTAL 118500.00 4 12208 \N +489266 2025-11-13 03:17:48.720975+00 2025-11-13 03:17:48.720981+00 f t ADELANTO 83500.00 5 12208 \N +489677 2025-11-13 12:07:51.286427+00 2025-11-13 12:07:51.286436+00 f t SUBTOTAL 0.00 1 12222 \N +489678 2025-11-13 12:07:51.288038+00 2025-11-13 12:07:51.288045+00 f t COSTO_SERVICIO 0.00 2 12222 \N +489679 2025-11-13 12:07:51.289173+00 2025-11-13 12:07:51.289181+00 f t DESCUENTO 0.00 3 12222 \N +489680 2025-11-13 12:07:51.290335+00 2025-11-13 12:07:51.29037+00 f t TOTAL 0.00 4 12222 \N +489681 2025-11-13 12:07:51.29135+00 2025-11-13 12:07:51.291355+00 f t ADELANTO 0.00 5 12222 \N +478647 2025-11-10 21:26:26.928024+00 2025-11-10 21:26:26.928036+00 f t SUBTOTAL 0.00 1 11966 \N +478648 2025-11-10 21:26:26.929205+00 2025-11-10 21:26:26.929211+00 f t COSTO_SERVICIO 0.00 2 11966 \N +478649 2025-11-10 21:26:26.930238+00 2025-11-10 21:26:26.930246+00 f t DESCUENTO 0.00 3 11966 \N +478650 2025-11-10 21:26:26.931365+00 2025-11-10 21:26:26.931371+00 f t TOTAL 0.00 4 11966 \N +478651 2025-11-10 21:26:26.932187+00 2025-11-10 21:26:26.932192+00 f t ADELANTO 0.00 5 11966 \N +474712 2025-11-10 00:26:22.579622+00 2025-11-10 00:26:22.579629+00 f t SUBTOTAL 108000.00 1 11870 \N +474713 2025-11-10 00:26:22.581426+00 2025-11-10 00:26:22.581435+00 f t COSTO_SERVICIO 0.00 2 11870 \N +474714 2025-11-10 00:26:22.582718+00 2025-11-10 00:26:22.582724+00 f t DESCUENTO 0.00 3 11870 \N +474715 2025-11-10 00:26:22.583935+00 2025-11-10 00:26:22.583941+00 f t TOTAL 108000.00 4 11870 \N +474716 2025-11-10 00:26:22.585493+00 2025-11-10 00:26:22.585498+00 f t ADELANTO 23000.00 5 11870 \N +474722 2025-11-10 00:46:02.512759+00 2025-11-10 00:46:02.512772+00 f t SUBTOTAL 0.00 1 11871 \N +474723 2025-11-10 00:46:02.514321+00 2025-11-10 00:46:02.514332+00 f t COSTO_SERVICIO 0.00 2 11871 \N +474724 2025-11-10 00:46:02.515733+00 2025-11-10 00:46:02.515742+00 f t DESCUENTO 0.00 3 11871 \N +474725 2025-11-10 00:46:02.517175+00 2025-11-10 00:46:02.517183+00 f t TOTAL 0.00 4 11871 \N +474726 2025-11-10 00:46:02.518823+00 2025-11-10 00:46:02.518832+00 f t ADELANTO 0.00 5 11871 \N +490737 2025-11-13 17:43:45.126562+00 2025-11-13 17:43:45.12657+00 f t SUBTOTAL 110000.00 1 12253 \N +490738 2025-11-13 17:43:45.128535+00 2025-11-13 17:43:45.128546+00 f t COSTO_SERVICIO 0.00 2 12253 \N +490739 2025-11-13 17:43:45.130069+00 2025-11-13 17:43:45.130078+00 f t DESCUENTO 0.00 3 12253 \N +490740 2025-11-13 17:43:45.131075+00 2025-11-13 17:43:45.13108+00 f t TOTAL 110000.00 4 12253 \N +490741 2025-11-13 17:43:45.132337+00 2025-11-13 17:43:45.132343+00 f t ADELANTO 10000.00 5 12253 \N +480112 2025-11-11 10:41:54.276536+00 2025-11-11 10:41:54.276543+00 f t SUBTOTAL 55000.00 1 12002 \N +480113 2025-11-11 10:41:54.278291+00 2025-11-11 10:41:54.278298+00 f t COSTO_SERVICIO 0.00 2 12002 \N +480114 2025-11-11 10:41:54.279444+00 2025-11-11 10:41:54.279455+00 f t DESCUENTO 0.00 3 12002 \N +480115 2025-11-11 10:41:54.280668+00 2025-11-11 10:41:54.280676+00 f t TOTAL 55000.00 4 12002 \N +480116 2025-11-11 10:41:54.281793+00 2025-11-11 10:41:54.281798+00 f t ADELANTO 11000.00 5 12002 \N +491042 2025-11-13 19:04:46.895741+00 2025-11-13 19:04:46.895753+00 f t SUBTOTAL 70000.00 1 12256 \N +491043 2025-11-13 19:04:46.897924+00 2025-11-13 19:04:46.89794+00 f t COSTO_SERVICIO 0.00 2 12256 \N +491044 2025-11-13 19:04:46.899386+00 2025-11-13 19:04:46.899396+00 f t DESCUENTO 0.00 3 12256 \N +491045 2025-11-13 19:04:46.900642+00 2025-11-13 19:04:46.900651+00 f t TOTAL 70000.00 4 12256 \N +491046 2025-11-13 19:04:46.901958+00 2025-11-13 19:04:46.901966+00 f t ADELANTO 19000.00 5 12256 \N +491352 2025-11-13 21:35:24.511872+00 2025-11-13 21:35:24.511881+00 f t SUBTOTAL 0.00 1 12269 \N +491353 2025-11-13 21:35:24.513715+00 2025-11-13 21:35:24.513723+00 f t COSTO_SERVICIO 0.00 2 12269 \N +491354 2025-11-13 21:35:24.514986+00 2025-11-13 21:35:24.514992+00 f t DESCUENTO 0.00 3 12269 \N +491355 2025-11-13 21:35:24.515992+00 2025-11-13 21:35:24.515997+00 f t TOTAL 0.00 4 12269 \N +491356 2025-11-13 21:35:24.516825+00 2025-11-13 21:35:24.51683+00 f t ADELANTO 0.00 5 12269 \N +481202 2025-11-11 14:17:40.884712+00 2025-11-11 14:17:40.884718+00 f t SUBTOTAL 46000.00 1 12020 \N +481203 2025-11-11 14:17:40.886659+00 2025-11-11 14:17:40.886664+00 f t COSTO_SERVICIO 0.00 2 12020 \N +481204 2025-11-11 14:17:40.888033+00 2025-11-11 14:17:40.888038+00 f t DESCUENTO 0.00 3 12020 \N +481205 2025-11-11 14:17:40.889059+00 2025-11-11 14:17:40.889065+00 f t TOTAL 46000.00 4 12020 \N +481206 2025-11-11 14:17:40.890033+00 2025-11-11 14:17:40.890039+00 f t ADELANTO 11000.00 5 12020 \N +474842 2025-11-10 01:28:27.088857+00 2025-11-10 01:28:27.088864+00 f t SUBTOTAL 55000.00 1 11873 \N +474843 2025-11-10 01:28:27.090594+00 2025-11-10 01:28:27.090604+00 f t COSTO_SERVICIO 0.00 2 11873 \N +474844 2025-11-10 01:28:27.092059+00 2025-11-10 01:28:27.092068+00 f t DESCUENTO 0.00 3 11873 \N +474845 2025-11-10 01:28:27.0933+00 2025-11-10 01:28:27.093308+00 f t TOTAL 55000.00 4 11873 \N +474846 2025-11-10 01:28:27.094408+00 2025-11-10 01:28:27.094416+00 f t ADELANTO 11000.00 5 11873 \N +492902 2025-11-14 01:19:26.372535+00 2025-11-14 01:19:26.372548+00 f t SUBTOTAL 0.00 1 12303 \N +492903 2025-11-14 01:19:26.374186+00 2025-11-14 01:19:26.37423+00 f t COSTO_SERVICIO 0.00 2 12303 \N +492904 2025-11-14 01:19:26.375621+00 2025-11-14 01:19:26.375629+00 f t DESCUENTO 0.00 3 12303 \N +492905 2025-11-14 01:19:26.376798+00 2025-11-14 01:19:26.376805+00 f t TOTAL 0.00 4 12303 \N +492906 2025-11-14 01:19:26.378109+00 2025-11-14 01:19:26.378117+00 f t ADELANTO 0.00 5 12303 \N +474887 2025-11-10 01:31:09.338146+00 2025-11-10 01:31:09.338154+00 f t SUBTOTAL 140000.00 1 11872 \N +474888 2025-11-10 01:31:09.340298+00 2025-11-10 01:31:09.340306+00 f t COSTO_SERVICIO 0.00 2 11872 \N +474889 2025-11-10 01:31:09.341917+00 2025-11-10 01:31:09.341925+00 f t DESCUENTO 9200.00 3 11872 \N +474890 2025-11-10 01:31:09.343298+00 2025-11-10 01:31:09.343306+00 f t TOTAL 130800.00 4 11872 \N +474891 2025-11-10 01:31:09.344617+00 2025-11-10 01:31:09.344624+00 f t ADELANTO 32000.00 5 11872 \N +483272 2025-11-11 21:55:38.449786+00 2025-11-11 21:55:38.449798+00 f t SUBTOTAL 0.00 1 12069 \N +483273 2025-11-11 21:55:38.451491+00 2025-11-11 21:55:38.451501+00 f t COSTO_SERVICIO 0.00 2 12069 \N +483274 2025-11-11 21:55:38.452981+00 2025-11-11 21:55:38.452991+00 f t DESCUENTO 0.00 3 12069 \N +483275 2025-11-11 21:55:38.454393+00 2025-11-11 21:55:38.454399+00 f t TOTAL 0.00 4 12069 \N +483276 2025-11-11 21:55:38.4556+00 2025-11-11 21:55:38.455608+00 f t ADELANTO 0.00 5 12069 \N +483807 2025-11-11 23:50:51.838333+00 2025-11-11 23:50:51.838343+00 f t SUBTOTAL 54000.00 1 12083 \N +483808 2025-11-11 23:50:51.839995+00 2025-11-11 23:50:51.840002+00 f t COSTO_SERVICIO 0.00 2 12083 \N +483809 2025-11-11 23:50:51.840917+00 2025-11-11 23:50:51.840923+00 f t DESCUENTO 0.00 3 12083 \N +483810 2025-11-11 23:50:51.841808+00 2025-11-11 23:50:51.841813+00 f t TOTAL 54000.00 4 12083 \N +483811 2025-11-11 23:50:51.842729+00 2025-11-11 23:50:51.842734+00 f t ADELANTO 13500.00 5 12083 \N +548645 2025-11-25 21:20:50.46792+00 2025-11-25 21:20:50.467926+00 f t TOTAL 138800.00 4 13558 \N +548646 2025-11-25 21:20:50.469299+00 2025-11-25 21:20:50.469305+00 f t ADELANTO 40500.00 5 13558 \N +501021 2025-11-16 15:50:55.169709+00 2025-11-16 15:50:55.169715+00 f t ADELANTO 13500.00 5 12500 \N +489687 2025-11-13 12:32:02.406729+00 2025-11-13 12:32:02.406742+00 f t SUBTOTAL 0.00 1 12223 \N +489688 2025-11-13 12:32:02.408678+00 2025-11-13 12:32:02.40869+00 f t COSTO_SERVICIO 0.00 2 12223 \N +489689 2025-11-13 12:32:02.410435+00 2025-11-13 12:32:02.410448+00 f t DESCUENTO 0.00 3 12223 \N +489690 2025-11-13 12:32:02.412007+00 2025-11-13 12:32:02.412017+00 f t TOTAL 0.00 4 12223 \N +489691 2025-11-13 12:32:02.413617+00 2025-11-13 12:32:02.413628+00 f t ADELANTO 0.00 5 12223 \N +490232 2025-11-13 15:39:46.004635+00 2025-11-13 15:39:46.004643+00 f t SUBTOTAL 100900.00 1 12238 \N +490233 2025-11-13 15:39:46.006579+00 2025-11-13 15:39:46.006589+00 f t COSTO_SERVICIO 0.00 2 12238 \N +490234 2025-11-13 15:39:46.008073+00 2025-11-13 15:39:46.008079+00 f t DESCUENTO 0.00 3 12238 \N +490235 2025-11-13 15:39:46.009264+00 2025-11-13 15:39:46.009269+00 f t TOTAL 100900.00 4 12238 \N +490236 2025-11-13 15:39:46.010416+00 2025-11-13 15:39:46.010423+00 f t ADELANTO 60400.00 5 12238 \N +490747 2025-11-13 17:56:08.769908+00 2025-11-13 17:56:08.769922+00 f t SUBTOTAL 0.00 1 12254 \N +481812 2025-11-11 15:07:31.870823+00 2025-11-11 15:07:31.870833+00 f t SUBTOTAL 158000.00 1 12029 \N +481813 2025-11-11 15:07:31.873064+00 2025-11-11 15:07:31.873073+00 f t COSTO_SERVICIO 0.00 2 12029 \N +481814 2025-11-11 15:07:31.874427+00 2025-11-11 15:07:31.874436+00 f t DESCUENTO 9200.00 3 12029 \N +481815 2025-11-11 15:07:31.875785+00 2025-11-11 15:07:31.875793+00 f t TOTAL 148800.00 4 12029 \N +481816 2025-11-11 15:07:31.876891+00 2025-11-11 15:07:31.876897+00 f t ADELANTO 35000.00 5 12029 \N +475117 2025-11-10 02:40:09.010311+00 2025-11-10 02:40:09.010323+00 f t SUBTOTAL 0.00 1 11874 \N +475118 2025-11-10 02:40:09.012195+00 2025-11-10 02:40:09.012203+00 f t COSTO_SERVICIO 0.00 2 11874 \N +475119 2025-11-10 02:40:09.013413+00 2025-11-10 02:40:09.01342+00 f t DESCUENTO 0.00 3 11874 \N +475120 2025-11-10 02:40:09.014463+00 2025-11-10 02:40:09.014469+00 f t TOTAL 0.00 4 11874 \N +475121 2025-11-10 02:40:09.015558+00 2025-11-10 02:40:09.015567+00 f t ADELANTO 0.00 5 11874 \N +482457 2025-11-11 19:16:48.361563+00 2025-11-11 19:16:48.36157+00 f t SUBTOTAL 61400.00 1 12045 \N +482458 2025-11-11 19:16:48.363424+00 2025-11-11 19:16:48.36343+00 f t COSTO_SERVICIO 0.00 2 12045 \N +482459 2025-11-11 19:16:48.365011+00 2025-11-11 19:16:48.365016+00 f t DESCUENTO 0.00 3 12045 \N +475127 2025-11-10 02:56:50.134918+00 2025-11-10 02:56:50.134927+00 f t SUBTOTAL 0.00 1 11875 \N +475128 2025-11-10 02:56:50.136444+00 2025-11-10 02:56:50.136452+00 f t COSTO_SERVICIO 0.00 2 11875 \N +475129 2025-11-10 02:56:50.137725+00 2025-11-10 02:56:50.137731+00 f t DESCUENTO 0.00 3 11875 \N +475130 2025-11-10 02:56:50.138692+00 2025-11-10 02:56:50.138701+00 f t TOTAL 0.00 4 11875 \N +475131 2025-11-10 02:56:50.139817+00 2025-11-10 02:56:50.139823+00 f t ADELANTO 0.00 5 11875 \N +482460 2025-11-11 19:16:48.366205+00 2025-11-11 19:16:48.36621+00 f t TOTAL 61400.00 4 12045 \N +482461 2025-11-11 19:16:48.367043+00 2025-11-11 19:16:48.367048+00 f t ADELANTO 15400.00 5 12045 \N +482817 2025-11-11 20:37:12.307891+00 2025-11-11 20:37:12.307902+00 f t SUBTOTAL 46000.00 1 12055 \N +482818 2025-11-11 20:37:12.310114+00 2025-11-11 20:37:12.310122+00 f t COSTO_SERVICIO 0.00 2 12055 \N +482819 2025-11-11 20:37:12.311889+00 2025-11-11 20:37:12.311899+00 f t DESCUENTO 0.00 3 12055 \N +482820 2025-11-11 20:37:12.313584+00 2025-11-11 20:37:12.313593+00 f t TOTAL 46000.00 4 12055 \N +482821 2025-11-11 20:37:12.315073+00 2025-11-11 20:37:12.315079+00 f t ADELANTO 11000.00 5 12055 \N +483282 2025-11-11 21:55:59.040061+00 2025-11-11 21:55:59.040071+00 f t SUBTOTAL 0.00 1 12070 \N +483283 2025-11-11 21:55:59.041257+00 2025-11-11 21:55:59.041264+00 f t COSTO_SERVICIO 0.00 2 12070 \N +483284 2025-11-11 21:55:59.042614+00 2025-11-11 21:55:59.042619+00 f t DESCUENTO 0.00 3 12070 \N +475172 2025-11-10 03:11:11.290561+00 2025-11-10 03:11:11.290571+00 f t SUBTOTAL 0.00 1 11876 \N +475173 2025-11-10 03:11:11.292815+00 2025-11-10 03:11:11.292823+00 f t COSTO_SERVICIO 0.00 2 11876 \N +475174 2025-11-10 03:11:11.294192+00 2025-11-10 03:11:11.294201+00 f t DESCUENTO 0.00 3 11876 \N +475175 2025-11-10 03:11:11.295442+00 2025-11-10 03:11:11.295448+00 f t TOTAL 0.00 4 11876 \N +475176 2025-11-10 03:11:11.296611+00 2025-11-10 03:11:11.296616+00 f t ADELANTO 0.00 5 11876 \N +483285 2025-11-11 21:55:59.043985+00 2025-11-11 21:55:59.043991+00 f t TOTAL 0.00 4 12070 \N +483286 2025-11-11 21:55:59.044924+00 2025-11-11 21:55:59.044929+00 f t ADELANTO 0.00 5 12070 \N +483502 2025-11-11 23:06:15.017912+00 2025-11-11 23:06:15.017925+00 f t SUBTOTAL 55000.00 1 12076 \N +483503 2025-11-11 23:06:15.020058+00 2025-11-11 23:06:15.020066+00 f t COSTO_SERVICIO 0.00 2 12076 \N +483504 2025-11-11 23:06:15.021506+00 2025-11-11 23:06:15.021517+00 f t DESCUENTO 0.00 3 12076 \N +483505 2025-11-11 23:06:15.022985+00 2025-11-11 23:06:15.022994+00 f t TOTAL 55000.00 4 12076 \N +483506 2025-11-11 23:06:15.024321+00 2025-11-11 23:06:15.024329+00 f t ADELANTO 11000.00 5 12076 \N +483612 2025-11-11 23:11:35.953632+00 2025-11-11 23:11:35.953638+00 f t SUBTOTAL 78000.00 1 12079 \N +483613 2025-11-11 23:11:35.956593+00 2025-11-11 23:11:35.956598+00 f t COSTO_SERVICIO 0.00 2 12079 \N +483614 2025-11-11 23:11:35.958146+00 2025-11-11 23:11:35.958152+00 f t DESCUENTO 0.00 3 12079 \N +483615 2025-11-11 23:11:35.959373+00 2025-11-11 23:11:35.959378+00 f t TOTAL 78000.00 4 12079 \N +483616 2025-11-11 23:11:35.960333+00 2025-11-11 23:11:35.960337+00 f t ADELANTO 21500.00 5 12079 \N +483717 2025-11-11 23:49:21.014306+00 2025-11-11 23:49:21.014318+00 f t SUBTOTAL 78000.00 1 12073 \N +483718 2025-11-11 23:49:21.017431+00 2025-11-11 23:49:21.017442+00 f t COSTO_SERVICIO 0.00 2 12073 \N +483719 2025-11-11 23:49:21.018979+00 2025-11-11 23:49:21.018988+00 f t DESCUENTO 0.00 3 12073 \N +483720 2025-11-11 23:49:21.020382+00 2025-11-11 23:49:21.020391+00 f t TOTAL 78000.00 4 12073 \N +483721 2025-11-11 23:49:21.021655+00 2025-11-11 23:49:21.021663+00 f t ADELANTO 13000.00 5 12073 \N +483812 2025-11-11 23:51:13.633641+00 2025-11-11 23:51:13.633649+00 f t SUBTOTAL 78000.00 1 12084 \N +483813 2025-11-11 23:51:13.635332+00 2025-11-11 23:51:13.635339+00 f t COSTO_SERVICIO 0.00 2 12084 \N +483814 2025-11-11 23:51:13.636412+00 2025-11-11 23:51:13.636418+00 f t DESCUENTO 0.00 3 12084 \N +475202 2025-11-10 03:17:58.338692+00 2025-11-10 03:17:58.338699+00 f t SUBTOTAL 61400.00 1 11877 \N +475203 2025-11-10 03:17:58.340377+00 2025-11-10 03:17:58.340384+00 f t COSTO_SERVICIO 0.00 2 11877 \N +475204 2025-11-10 03:17:58.341631+00 2025-11-10 03:17:58.341636+00 f t DESCUENTO 0.00 3 11877 \N +475205 2025-11-10 03:17:58.342766+00 2025-11-10 03:17:58.342773+00 f t TOTAL 61400.00 4 11877 \N +475206 2025-11-10 03:17:58.343901+00 2025-11-10 03:17:58.343908+00 f t ADELANTO 15400.00 5 11877 \N +483815 2025-11-11 23:51:13.637333+00 2025-11-11 23:51:13.637339+00 f t TOTAL 78000.00 4 12084 \N +483816 2025-11-11 23:51:13.638289+00 2025-11-11 23:51:13.638294+00 f t ADELANTO 13000.00 5 12084 \N +475222 2025-11-10 03:21:28.612485+00 2025-11-10 03:21:28.612497+00 f t SUBTOTAL 0.00 1 11878 \N +475223 2025-11-10 03:21:28.614782+00 2025-11-10 03:21:28.614792+00 f t COSTO_SERVICIO 0.00 2 11878 \N +475224 2025-11-10 03:21:28.616043+00 2025-11-10 03:21:28.616049+00 f t DESCUENTO 0.00 3 11878 \N +475225 2025-11-10 03:21:28.617177+00 2025-11-10 03:21:28.617186+00 f t TOTAL 0.00 4 11878 \N +475226 2025-11-10 03:21:28.618232+00 2025-11-10 03:21:28.618236+00 f t ADELANTO 0.00 5 11878 \N +477697 2025-11-10 19:41:00.886389+00 2025-11-10 19:41:00.886908+00 f t SUBTOTAL 0.00 1 11941 \N +477698 2025-11-10 19:41:00.889811+00 2025-11-10 19:41:00.889821+00 f t COSTO_SERVICIO 0.00 2 11941 \N +477699 2025-11-10 19:41:00.892927+00 2025-11-10 19:41:00.892938+00 f t DESCUENTO 0.00 3 11941 \N +477700 2025-11-10 19:41:00.894516+00 2025-11-10 19:41:00.894525+00 f t TOTAL 0.00 4 11941 \N +477701 2025-11-10 19:41:00.896297+00 2025-11-10 19:41:00.896305+00 f t ADELANTO 0.00 5 11941 \N +477967 2025-11-10 20:05:45.974017+00 2025-11-10 20:05:45.974024+00 f t SUBTOTAL 78000.00 1 11948 \N +477968 2025-11-10 20:05:45.975668+00 2025-11-10 20:05:45.975674+00 f t COSTO_SERVICIO 0.00 2 11948 \N +477969 2025-11-10 20:05:45.976923+00 2025-11-10 20:05:45.976929+00 f t DESCUENTO 0.00 3 11948 \N +477970 2025-11-10 20:05:45.977851+00 2025-11-10 20:05:45.977856+00 f t TOTAL 78000.00 4 11948 \N +477971 2025-11-10 20:05:45.97874+00 2025-11-10 20:05:45.978745+00 f t ADELANTO 13000.00 5 11948 \N +524612 2025-11-21 00:33:04.024235+00 2025-11-21 00:33:04.024245+00 f t SUBTOTAL 0.00 1 13051 \N +524613 2025-11-21 00:33:04.026443+00 2025-11-21 00:33:04.02645+00 f t COSTO_SERVICIO 0.00 2 13051 \N +524614 2025-11-21 00:33:04.027887+00 2025-11-21 00:33:04.027894+00 f t DESCUENTO 0.00 3 13051 \N +524615 2025-11-21 00:33:04.028852+00 2025-11-21 00:33:04.028857+00 f t TOTAL 0.00 4 13051 \N +524616 2025-11-21 00:33:04.029749+00 2025-11-21 00:33:04.029753+00 f t ADELANTO 0.00 5 13051 \N +490748 2025-11-13 17:56:08.771825+00 2025-11-13 17:56:08.771836+00 f t COSTO_SERVICIO 0.00 2 12254 \N +490749 2025-11-13 17:56:08.773743+00 2025-11-13 17:56:08.773754+00 f t DESCUENTO 0.00 3 12254 \N +490750 2025-11-13 17:56:08.775357+00 2025-11-13 17:56:08.775368+00 f t TOTAL 0.00 4 12254 \N +490751 2025-11-13 17:56:08.777133+00 2025-11-13 17:56:08.777144+00 f t ADELANTO 0.00 5 12254 \N +480577 2025-11-11 13:04:21.45289+00 2025-11-11 13:04:21.452901+00 f t SUBTOTAL 85000.00 1 12011 \N +480578 2025-11-11 13:04:21.456978+00 2025-11-11 13:04:21.456985+00 f t COSTO_SERVICIO 0.00 2 12011 \N +480579 2025-11-11 13:04:21.458537+00 2025-11-11 13:04:21.458546+00 f t DESCUENTO 0.00 3 12011 \N +480580 2025-11-11 13:04:21.459802+00 2025-11-11 13:04:21.459809+00 f t TOTAL 85000.00 4 12011 \N +480581 2025-11-11 13:04:21.460934+00 2025-11-11 13:04:21.460941+00 f t ADELANTO 15000.00 5 12011 \N +490902 2025-11-13 18:34:51.209717+00 2025-11-13 18:34:51.209726+00 f t SUBTOTAL 0.00 1 12257 \N +490903 2025-11-13 18:34:51.211234+00 2025-11-13 18:34:51.21124+00 f t COSTO_SERVICIO 0.00 2 12257 \N +490904 2025-11-13 18:34:51.212199+00 2025-11-13 18:34:51.212204+00 f t DESCUENTO 0.00 3 12257 \N +490905 2025-11-13 18:34:51.213025+00 2025-11-13 18:34:51.213031+00 f t TOTAL 0.00 4 12257 \N +490906 2025-11-13 18:34:51.213992+00 2025-11-13 18:34:51.213998+00 f t ADELANTO 0.00 5 12257 \N +481077 2025-11-11 13:45:44.270123+00 2025-11-11 13:45:44.27013+00 f t SUBTOTAL 98400.00 1 12014 \N +481078 2025-11-11 13:45:44.271885+00 2025-11-11 13:45:44.271892+00 f t COSTO_SERVICIO 0.00 2 12014 \N +481079 2025-11-11 13:45:44.273371+00 2025-11-11 13:45:44.273376+00 f t DESCUENTO 0.00 3 12014 \N +481080 2025-11-11 13:45:44.274424+00 2025-11-11 13:45:44.274429+00 f t TOTAL 98400.00 4 12014 \N +481081 2025-11-11 13:45:44.275425+00 2025-11-11 13:45:44.275434+00 f t ADELANTO 57900.00 5 12014 \N +481217 2025-11-11 14:19:26.236691+00 2025-11-11 14:19:26.236702+00 f t SUBTOTAL 55000.00 1 12021 \N +481218 2025-11-11 14:19:26.238796+00 2025-11-11 14:19:26.238806+00 f t COSTO_SERVICIO 0.00 2 12021 \N +481219 2025-11-11 14:19:26.240276+00 2025-11-11 14:19:26.240284+00 f t DESCUENTO 0.00 3 12021 \N +481220 2025-11-11 14:19:26.241567+00 2025-11-11 14:19:26.241575+00 f t TOTAL 55000.00 4 12021 \N +481221 2025-11-11 14:19:26.2429+00 2025-11-11 14:19:26.242909+00 f t ADELANTO 11000.00 5 12021 \N +481587 2025-11-11 14:59:55.500222+00 2025-11-11 14:59:55.500235+00 f t SUBTOTAL 0.00 1 12028 \N +481588 2025-11-11 14:59:55.502688+00 2025-11-11 14:59:55.502699+00 f t COSTO_SERVICIO 0.00 2 12028 \N +475367 2025-11-10 03:42:57.898443+00 2025-11-10 03:42:57.898449+00 f t SUBTOTAL 156000.00 1 11879 \N +475368 2025-11-10 03:42:57.899878+00 2025-11-10 03:42:57.899883+00 f t COSTO_SERVICIO 0.00 2 11879 \N +475369 2025-11-10 03:42:57.900908+00 2025-11-10 03:42:57.900913+00 f t DESCUENTO 7600.00 3 11879 \N +475370 2025-11-10 03:42:57.901814+00 2025-11-10 03:42:57.901821+00 f t TOTAL 148400.00 4 11879 \N +475371 2025-11-10 03:42:57.902973+00 2025-11-10 03:42:57.902977+00 f t ADELANTO 64500.00 5 11879 \N +481589 2025-11-11 14:59:55.504394+00 2025-11-11 14:59:55.504401+00 f t DESCUENTO 0.00 3 12028 \N +481590 2025-11-11 14:59:55.50562+00 2025-11-11 14:59:55.505626+00 f t TOTAL 0.00 4 12028 \N +481591 2025-11-11 14:59:55.506677+00 2025-11-11 14:59:55.506682+00 f t ADELANTO 0.00 5 12028 \N +475407 2025-11-10 03:45:44.262261+00 2025-11-10 03:45:44.262269+00 f t SUBTOTAL 124000.00 1 11880 \N +475408 2025-11-10 03:45:44.264037+00 2025-11-10 03:45:44.264046+00 f t COSTO_SERVICIO 0.00 2 11880 \N +475409 2025-11-10 03:45:44.265447+00 2025-11-10 03:45:44.265453+00 f t DESCUENTO 0.00 3 11880 \N +475410 2025-11-10 03:45:44.26679+00 2025-11-10 03:45:44.2668+00 f t TOTAL 124000.00 4 11880 \N +475411 2025-11-10 03:45:44.268209+00 2025-11-10 03:45:44.268218+00 f t ADELANTO 24000.00 5 11880 \N +482827 2025-11-11 20:39:03.028233+00 2025-11-11 20:39:03.028248+00 f t SUBTOTAL 0.00 1 12056 \N +482828 2025-11-11 20:39:03.03056+00 2025-11-11 20:39:03.030573+00 f t COSTO_SERVICIO 0.00 2 12056 \N +482829 2025-11-11 20:39:03.032473+00 2025-11-11 20:39:03.032483+00 f t DESCUENTO 0.00 3 12056 \N +482830 2025-11-11 20:39:03.034216+00 2025-11-11 20:39:03.034226+00 f t TOTAL 0.00 4 12056 \N +482831 2025-11-11 20:39:03.035961+00 2025-11-11 20:39:03.03597+00 f t ADELANTO 0.00 5 12056 \N +475457 2025-11-10 03:58:48.828225+00 2025-11-10 03:58:48.828233+00 f t SUBTOTAL 115000.00 1 11881 \N +475458 2025-11-10 03:58:48.829976+00 2025-11-10 03:58:48.829981+00 f t COSTO_SERVICIO 0.00 2 11881 \N +475459 2025-11-10 03:58:48.831206+00 2025-11-10 03:58:48.831211+00 f t DESCUENTO 0.00 3 11881 \N +475460 2025-11-10 03:58:48.832277+00 2025-11-10 03:58:48.832282+00 f t TOTAL 115000.00 4 11881 \N +475461 2025-11-10 03:58:48.833358+00 2025-11-10 03:58:48.833366+00 f t ADELANTO 25000.00 5 11881 \N +483512 2025-11-11 23:06:46.03611+00 2025-11-11 23:06:46.036121+00 f t SUBTOTAL 0.00 1 12077 \N +483513 2025-11-11 23:06:46.037619+00 2025-11-11 23:06:46.037627+00 f t COSTO_SERVICIO 0.00 2 12077 \N +483514 2025-11-11 23:06:46.038943+00 2025-11-11 23:06:46.038952+00 f t DESCUENTO 0.00 3 12077 \N +483515 2025-11-11 23:06:46.040303+00 2025-11-11 23:06:46.040316+00 f t TOTAL 0.00 4 12077 \N +483516 2025-11-11 23:06:46.041687+00 2025-11-11 23:06:46.041694+00 f t ADELANTO 0.00 5 12077 \N +475497 2025-11-10 04:03:33.154853+00 2025-11-10 04:03:33.154861+00 f t SUBTOTAL 46000.00 1 11882 \N +475498 2025-11-10 04:03:33.156762+00 2025-11-10 04:03:33.156772+00 f t COSTO_SERVICIO 0.00 2 11882 \N +475499 2025-11-10 04:03:33.158399+00 2025-11-10 04:03:33.158409+00 f t DESCUENTO 0.00 3 11882 \N +475500 2025-11-10 04:03:33.159901+00 2025-11-10 04:03:33.15991+00 f t TOTAL 46000.00 4 11882 \N +475501 2025-11-10 04:03:33.161361+00 2025-11-10 04:03:33.16137+00 f t ADELANTO 11000.00 5 11882 \N +475507 2025-11-10 04:38:56.586541+00 2025-11-10 04:38:56.586549+00 f t SUBTOTAL 0.00 1 11883 \N +475508 2025-11-10 04:38:56.587942+00 2025-11-10 04:38:56.587949+00 f t COSTO_SERVICIO 0.00 2 11883 \N +475509 2025-11-10 04:38:56.589266+00 2025-11-10 04:38:56.589273+00 f t DESCUENTO 0.00 3 11883 \N +475510 2025-11-10 04:38:56.590278+00 2025-11-10 04:38:56.590284+00 f t TOTAL 0.00 4 11883 \N +475511 2025-11-10 04:38:56.591336+00 2025-11-10 04:38:56.591342+00 f t ADELANTO 0.00 5 11883 \N +477977 2025-11-10 20:12:17.67132+00 2025-11-10 20:12:17.671332+00 f t SUBTOTAL 0.00 1 11949 \N +477978 2025-11-10 20:12:17.6729+00 2025-11-10 20:12:17.672909+00 f t COSTO_SERVICIO 0.00 2 11949 \N +477979 2025-11-10 20:12:17.67408+00 2025-11-10 20:12:17.674089+00 f t DESCUENTO 0.00 3 11949 \N +477980 2025-11-10 20:12:17.675191+00 2025-11-10 20:12:17.675199+00 f t TOTAL 0.00 4 11949 \N +477981 2025-11-10 20:12:17.676255+00 2025-11-10 20:12:17.676262+00 f t ADELANTO 0.00 5 11949 \N +500632 2025-11-16 13:54:37.993745+00 2025-11-16 13:54:37.993758+00 f t SUBTOTAL 0.00 1 12490 \N +475557 2025-11-10 04:59:41.652613+00 2025-11-10 04:59:41.65262+00 f t SUBTOTAL 46000.00 1 11884 \N +475558 2025-11-10 04:59:41.654248+00 2025-11-10 04:59:41.654255+00 f t COSTO_SERVICIO 0.00 2 11884 \N +475559 2025-11-10 04:59:41.655503+00 2025-11-10 04:59:41.655509+00 f t DESCUENTO 0.00 3 11884 \N +475560 2025-11-10 04:59:41.656864+00 2025-11-10 04:59:41.656871+00 f t TOTAL 46000.00 4 11884 \N +475561 2025-11-10 04:59:41.657958+00 2025-11-10 04:59:41.657963+00 f t ADELANTO 11000.00 5 11884 \N +500633 2025-11-16 13:54:37.996476+00 2025-11-16 13:54:37.996514+00 f t COSTO_SERVICIO 0.00 2 12490 \N +500634 2025-11-16 13:54:37.997877+00 2025-11-16 13:54:37.997884+00 f t DESCUENTO 0.00 3 12490 \N +500635 2025-11-16 13:54:37.999282+00 2025-11-16 13:54:37.99929+00 f t TOTAL 0.00 4 12490 \N +500636 2025-11-16 13:54:38.000695+00 2025-11-16 13:54:38.000702+00 f t ADELANTO 0.00 5 12490 \N +490577 2025-11-13 16:52:45.077091+00 2025-11-13 16:52:45.077099+00 f t SUBTOTAL 57000.00 1 12246 \N +475597 2025-11-10 05:38:28.833764+00 2025-11-10 05:38:28.833769+00 f t SUBTOTAL 70000.00 1 11885 \N +475598 2025-11-10 05:38:28.835345+00 2025-11-10 05:38:28.83535+00 f t COSTO_SERVICIO 0.00 2 11885 \N +475599 2025-11-10 05:38:28.836653+00 2025-11-10 05:38:28.836663+00 f t DESCUENTO 0.00 3 11885 \N +475600 2025-11-10 05:38:28.837919+00 2025-11-10 05:38:28.837924+00 f t TOTAL 70000.00 4 11885 \N +475601 2025-11-10 05:38:28.838962+00 2025-11-10 05:38:28.838967+00 f t ADELANTO 19000.00 5 11885 \N +490578 2025-11-13 16:52:45.079029+00 2025-11-13 16:52:45.079035+00 f t COSTO_SERVICIO 0.00 2 12246 \N +490579 2025-11-13 16:52:45.080092+00 2025-11-13 16:52:45.080097+00 f t DESCUENTO 0.00 3 12246 \N +490580 2025-11-13 16:52:45.081228+00 2025-11-13 16:52:45.081233+00 f t TOTAL 57000.00 4 12246 \N +490581 2025-11-13 16:52:45.082457+00 2025-11-13 16:52:45.082462+00 f t ADELANTO 57000.00 5 12246 \N +479957 2025-11-11 07:47:44.347699+00 2025-11-11 07:47:44.347707+00 f t SUBTOTAL 54000.00 1 11997 \N +479958 2025-11-11 07:47:44.349487+00 2025-11-11 07:47:44.349493+00 f t COSTO_SERVICIO 0.00 2 11997 \N +479959 2025-11-11 07:47:44.350709+00 2025-11-11 07:47:44.350715+00 f t DESCUENTO 0.00 3 11997 \N +479960 2025-11-11 07:47:44.351785+00 2025-11-11 07:47:44.351791+00 f t TOTAL 54000.00 4 11997 \N +479961 2025-11-11 07:47:44.352919+00 2025-11-11 07:47:44.352925+00 f t ADELANTO 13500.00 5 11997 \N +475637 2025-11-10 07:59:35.486269+00 2025-11-10 07:59:35.486276+00 f t SUBTOTAL 55000.00 1 11886 \N +475638 2025-11-10 07:59:35.48779+00 2025-11-10 07:59:35.487795+00 f t COSTO_SERVICIO 0.00 2 11886 \N +475639 2025-11-10 07:59:35.488914+00 2025-11-10 07:59:35.48892+00 f t DESCUENTO 0.00 3 11886 \N +475640 2025-11-10 07:59:35.490042+00 2025-11-10 07:59:35.490046+00 f t TOTAL 55000.00 4 11886 \N +475641 2025-11-10 07:59:35.491345+00 2025-11-10 07:59:35.491351+00 f t ADELANTO 11000.00 5 11886 \N +475672 2025-11-10 08:12:49.823203+00 2025-11-10 08:12:49.823211+00 f t SUBTOTAL 55000.00 1 11887 \N +475673 2025-11-10 08:12:49.825036+00 2025-11-10 08:12:49.825046+00 f t COSTO_SERVICIO 0.00 2 11887 \N +475674 2025-11-10 08:12:49.826312+00 2025-11-10 08:12:49.826317+00 f t DESCUENTO 0.00 3 11887 \N +475675 2025-11-10 08:12:49.827362+00 2025-11-10 08:12:49.827367+00 f t TOTAL 55000.00 4 11887 \N +475676 2025-11-10 08:12:49.828514+00 2025-11-10 08:12:49.828521+00 f t ADELANTO 11000.00 5 11887 \N +492627 2025-11-14 00:31:32.877892+00 2025-11-14 00:31:32.877901+00 f t SUBTOTAL 0.00 1 12297 \N +492628 2025-11-14 00:31:32.879908+00 2025-11-14 00:31:32.879914+00 f t COSTO_SERVICIO 0.00 2 12297 \N +481947 2025-11-11 15:59:58.029102+00 2025-11-11 15:59:58.02911+00 f t SUBTOTAL 78000.00 1 12032 \N +475707 2025-11-10 08:59:07.409197+00 2025-11-10 08:59:07.409204+00 f t SUBTOTAL 46000.00 1 11888 \N +475708 2025-11-10 08:59:07.411741+00 2025-11-10 08:59:07.411747+00 f t COSTO_SERVICIO 0.00 2 11888 \N +475709 2025-11-10 08:59:07.413402+00 2025-11-10 08:59:07.413411+00 f t DESCUENTO 0.00 3 11888 \N +475710 2025-11-10 08:59:07.41501+00 2025-11-10 08:59:07.415017+00 f t TOTAL 46000.00 4 11888 \N +475711 2025-11-10 08:59:07.416307+00 2025-11-10 08:59:07.416312+00 f t ADELANTO 11000.00 5 11888 \N +481948 2025-11-11 15:59:58.030859+00 2025-11-11 15:59:58.030866+00 f t COSTO_SERVICIO 0.00 2 12032 \N +481949 2025-11-11 15:59:58.032051+00 2025-11-11 15:59:58.032056+00 f t DESCUENTO 0.00 3 12032 \N +481950 2025-11-11 15:59:58.033084+00 2025-11-11 15:59:58.033089+00 f t TOTAL 78000.00 4 12032 \N +481951 2025-11-11 15:59:58.034251+00 2025-11-11 15:59:58.034256+00 f t ADELANTO 13000.00 5 12032 \N +492629 2025-11-14 00:31:32.881168+00 2025-11-14 00:31:32.881173+00 f t DESCUENTO 0.00 3 12297 \N +492630 2025-11-14 00:31:32.882361+00 2025-11-14 00:31:32.882369+00 f t TOTAL 0.00 4 12297 \N +492631 2025-11-14 00:31:32.883633+00 2025-11-14 00:31:32.88364+00 f t ADELANTO 0.00 5 12297 \N +482347 2025-11-11 19:02:19.956617+00 2025-11-11 19:02:19.956627+00 f t SUBTOTAL 0.00 1 12043 \N +482348 2025-11-11 19:02:19.95882+00 2025-11-11 19:02:19.958827+00 f t COSTO_SERVICIO 0.00 2 12043 \N +482349 2025-11-11 19:02:19.960448+00 2025-11-11 19:02:19.960455+00 f t DESCUENTO 0.00 3 12043 \N +482350 2025-11-11 19:02:19.9614+00 2025-11-11 19:02:19.961405+00 f t TOTAL 0.00 4 12043 \N +482351 2025-11-11 19:02:19.96244+00 2025-11-11 19:02:19.962445+00 f t ADELANTO 0.00 5 12043 \N +475752 2025-11-10 09:33:03.628035+00 2025-11-10 09:33:03.628043+00 f t SUBTOTAL 46000.00 1 11889 \N +475753 2025-11-10 09:33:03.62948+00 2025-11-10 09:33:03.629485+00 f t COSTO_SERVICIO 0.00 2 11889 \N +475754 2025-11-10 09:33:03.630632+00 2025-11-10 09:33:03.630638+00 f t DESCUENTO 0.00 3 11889 \N +475755 2025-11-10 09:33:03.631793+00 2025-11-10 09:33:03.631798+00 f t TOTAL 46000.00 4 11889 \N +475756 2025-11-10 09:33:03.632732+00 2025-11-10 09:33:03.632736+00 f t ADELANTO 11000.00 5 11889 \N +475762 2025-11-10 09:45:55.087668+00 2025-11-10 09:45:55.087677+00 f t SUBTOTAL 0.00 1 11890 \N +475763 2025-11-10 09:45:55.089213+00 2025-11-10 09:45:55.089221+00 f t COSTO_SERVICIO 0.00 2 11890 \N +475764 2025-11-10 09:45:55.090267+00 2025-11-10 09:45:55.090273+00 f t DESCUENTO 0.00 3 11890 \N +475765 2025-11-10 09:45:55.09126+00 2025-11-10 09:45:55.091265+00 f t TOTAL 0.00 4 11890 \N +475766 2025-11-10 09:45:55.092106+00 2025-11-10 09:45:55.092111+00 f t ADELANTO 0.00 5 11890 \N +475772 2025-11-10 10:16:21.275394+00 2025-11-10 10:16:21.275403+00 f t SUBTOTAL 0.00 1 11891 \N +475773 2025-11-10 10:16:21.276562+00 2025-11-10 10:16:21.276569+00 f t COSTO_SERVICIO 0.00 2 11891 \N +475774 2025-11-10 10:16:21.277504+00 2025-11-10 10:16:21.277511+00 f t DESCUENTO 0.00 3 11891 \N +475775 2025-11-10 10:16:21.278379+00 2025-11-10 10:16:21.278384+00 f t TOTAL 0.00 4 11891 \N +475776 2025-11-10 10:16:21.279337+00 2025-11-10 10:16:21.279342+00 f t ADELANTO 0.00 5 11891 \N +475827 2025-11-10 10:32:37.250491+00 2025-11-10 10:32:37.2505+00 f t SUBTOTAL 46000.00 1 11892 \N +475828 2025-11-10 10:32:37.252377+00 2025-11-10 10:32:37.252386+00 f t COSTO_SERVICIO 0.00 2 11892 \N +475829 2025-11-10 10:32:37.25382+00 2025-11-10 10:32:37.253829+00 f t DESCUENTO 0.00 3 11892 \N +475830 2025-11-10 10:32:37.255+00 2025-11-10 10:32:37.255008+00 f t TOTAL 46000.00 4 11892 \N +475831 2025-11-10 10:32:37.256102+00 2025-11-10 10:32:37.256109+00 f t ADELANTO 11000.00 5 11892 \N +523627 2025-11-20 20:49:28.657809+00 2025-11-20 20:49:28.657817+00 f t SUBTOTAL 70000.00 1 13022 \N +523628 2025-11-20 20:49:28.659707+00 2025-11-20 20:49:28.659713+00 f t COSTO_SERVICIO 0.00 2 13022 \N +475857 2025-11-10 10:59:29.925285+00 2025-11-10 10:59:29.925294+00 f t SUBTOTAL 70000.00 1 11893 \N +475858 2025-11-10 10:59:29.926754+00 2025-11-10 10:59:29.926759+00 f t COSTO_SERVICIO 0.00 2 11893 \N +475859 2025-11-10 10:59:29.927898+00 2025-11-10 10:59:29.927904+00 f t DESCUENTO 0.00 3 11893 \N +475860 2025-11-10 10:59:29.928887+00 2025-11-10 10:59:29.928893+00 f t TOTAL 70000.00 4 11893 \N +475861 2025-11-10 10:59:29.9297+00 2025-11-10 10:59:29.929705+00 f t ADELANTO 19000.00 5 11893 \N +478667 2025-11-10 21:27:19.495708+00 2025-11-10 21:27:19.495715+00 f t SUBTOTAL 46000.00 1 11965 \N +478668 2025-11-10 21:27:19.497255+00 2025-11-10 21:27:19.49726+00 f t COSTO_SERVICIO 0.00 2 11965 \N +478669 2025-11-10 21:27:19.498273+00 2025-11-10 21:27:19.498278+00 f t DESCUENTO 0.00 3 11965 \N +478670 2025-11-10 21:27:19.499185+00 2025-11-10 21:27:19.49919+00 f t TOTAL 46000.00 4 11965 \N +478671 2025-11-10 21:27:19.500046+00 2025-11-10 21:27:19.500051+00 f t ADELANTO 11000.00 5 11965 \N +475887 2025-11-10 11:03:12.569871+00 2025-11-10 11:03:12.569879+00 f t SUBTOTAL 34000.00 1 11894 \N +475888 2025-11-10 11:03:12.571414+00 2025-11-10 11:03:12.57142+00 f t COSTO_SERVICIO 0.00 2 11894 \N +475889 2025-11-10 11:03:12.572961+00 2025-11-10 11:03:12.572966+00 f t DESCUENTO 0.00 3 11894 \N +475890 2025-11-10 11:03:12.574027+00 2025-11-10 11:03:12.574032+00 f t TOTAL 34000.00 4 11894 \N +475891 2025-11-10 11:03:12.575079+00 2025-11-10 11:03:12.575084+00 f t ADELANTO 34000.00 5 11894 \N +490587 2025-11-13 16:52:51.504497+00 2025-11-13 16:52:51.504508+00 f t SUBTOTAL 0.00 1 12247 \N +490588 2025-11-13 16:52:51.505865+00 2025-11-13 16:52:51.505872+00 f t COSTO_SERVICIO 0.00 2 12247 \N +490589 2025-11-13 16:52:51.50686+00 2025-11-13 16:52:51.506865+00 f t DESCUENTO 0.00 3 12247 \N +490590 2025-11-13 16:52:51.50782+00 2025-11-13 16:52:51.507825+00 f t TOTAL 0.00 4 12247 \N +490591 2025-11-13 16:52:51.508752+00 2025-11-13 16:52:51.508757+00 f t ADELANTO 0.00 5 12247 \N +491057 2025-11-13 19:10:04.760296+00 2025-11-13 19:10:04.760309+00 f t SUBTOTAL 30000.00 1 12260 \N +491058 2025-11-13 19:10:04.771944+00 2025-11-13 19:10:04.771957+00 f t COSTO_SERVICIO 0.00 2 12260 \N +491059 2025-11-13 19:10:04.774701+00 2025-11-13 19:10:04.774717+00 f t DESCUENTO 0.00 3 12260 \N +491060 2025-11-13 19:10:04.778737+00 2025-11-13 19:10:04.77875+00 f t TOTAL 30000.00 4 12260 \N +491061 2025-11-13 19:10:04.78128+00 2025-11-13 19:10:04.781292+00 f t ADELANTO 30000.00 5 12260 \N +491507 2025-11-13 22:15:46.74601+00 2025-11-13 22:15:46.746017+00 f t SUBTOTAL 46000.00 1 12273 \N +491508 2025-11-13 22:15:46.748048+00 2025-11-13 22:15:46.748054+00 f t COSTO_SERVICIO 0.00 2 12273 \N +491509 2025-11-13 22:15:46.749251+00 2025-11-13 22:15:46.749257+00 f t DESCUENTO 0.00 3 12273 \N +491510 2025-11-13 22:15:46.750309+00 2025-11-13 22:15:46.750316+00 f t TOTAL 46000.00 4 12273 \N +491511 2025-11-13 22:15:46.751252+00 2025-11-13 22:15:46.751257+00 f t ADELANTO 11000.00 5 12273 \N +480587 2025-11-11 13:07:34.85701+00 2025-11-11 13:07:34.857017+00 f t SUBTOTAL 85000.00 1 12010 \N +480588 2025-11-11 13:07:34.9114+00 2025-11-11 13:07:34.91141+00 f t COSTO_SERVICIO 0.00 2 12010 \N +480589 2025-11-11 13:07:34.91311+00 2025-11-11 13:07:34.913118+00 f t DESCUENTO 0.00 3 12010 \N +480590 2025-11-11 13:07:34.914435+00 2025-11-11 13:07:34.914442+00 f t TOTAL 85000.00 4 12010 \N +480591 2025-11-11 13:07:34.915529+00 2025-11-11 13:07:34.915535+00 f t ADELANTO 15000.00 5 12010 \N +475937 2025-11-10 11:07:15.09761+00 2025-11-10 11:07:15.097617+00 f t SUBTOTAL 34000.00 1 11895 \N +475938 2025-11-10 11:07:15.09951+00 2025-11-10 11:07:15.099564+00 f t COSTO_SERVICIO 0.00 2 11895 \N +475939 2025-11-10 11:07:15.104667+00 2025-11-10 11:07:15.104675+00 f t DESCUENTO 0.00 3 11895 \N +475940 2025-11-10 11:07:15.106146+00 2025-11-10 11:07:15.106152+00 f t TOTAL 34000.00 4 11895 \N +475941 2025-11-10 11:07:15.107275+00 2025-11-10 11:07:15.10728+00 f t ADELANTO 34000.00 5 11895 \N +475972 2025-11-10 11:10:44.408783+00 2025-11-10 11:10:44.40879+00 f t SUBTOTAL 70000.00 1 11896 \N +475973 2025-11-10 11:10:44.410215+00 2025-11-10 11:10:44.41022+00 f t COSTO_SERVICIO 0.00 2 11896 \N +475974 2025-11-10 11:10:44.411693+00 2025-11-10 11:10:44.411698+00 f t DESCUENTO 0.00 3 11896 \N +475975 2025-11-10 11:10:44.412805+00 2025-11-10 11:10:44.41281+00 f t TOTAL 70000.00 4 11896 \N +475976 2025-11-10 11:10:44.413717+00 2025-11-10 11:10:44.413722+00 f t ADELANTO 16000.00 5 11896 \N +475982 2025-11-10 11:43:29.641994+00 2025-11-10 11:43:29.642003+00 f t SUBTOTAL 0.00 1 11897 \N +475983 2025-11-10 11:43:29.643195+00 2025-11-10 11:43:29.6432+00 f t COSTO_SERVICIO 0.00 2 11897 \N +475984 2025-11-10 11:43:29.644083+00 2025-11-10 11:43:29.644087+00 f t DESCUENTO 0.00 3 11897 \N +475985 2025-11-10 11:43:29.644867+00 2025-11-10 11:43:29.644871+00 f t TOTAL 0.00 4 11897 \N +475986 2025-11-10 11:43:29.645604+00 2025-11-10 11:43:29.645608+00 f t ADELANTO 0.00 5 11897 \N +492912 2025-11-14 01:19:41.726797+00 2025-11-14 01:19:41.726809+00 f t SUBTOTAL 0.00 1 12304 \N +492913 2025-11-14 01:19:41.7285+00 2025-11-14 01:19:41.728508+00 f t COSTO_SERVICIO 0.00 2 12304 \N +492914 2025-11-14 01:19:41.729621+00 2025-11-14 01:19:41.729631+00 f t DESCUENTO 0.00 3 12304 \N +492915 2025-11-14 01:19:41.731091+00 2025-11-14 01:19:41.731099+00 f t TOTAL 0.00 4 12304 \N +492916 2025-11-14 01:19:41.732446+00 2025-11-14 01:19:41.732451+00 f t ADELANTO 0.00 5 12304 \N +481957 2025-11-11 16:40:49.93997+00 2025-11-11 16:40:49.939978+00 f t SUBTOTAL 0.00 1 12033 \N +481958 2025-11-11 16:40:49.94152+00 2025-11-11 16:40:49.941526+00 f t COSTO_SERVICIO 0.00 2 12033 \N +481959 2025-11-11 16:40:49.942469+00 2025-11-11 16:40:49.942474+00 f t DESCUENTO 0.00 3 12033 \N +481960 2025-11-11 16:40:49.944463+00 2025-11-11 16:40:49.944468+00 f t TOTAL 0.00 4 12033 \N +481961 2025-11-11 16:40:49.945582+00 2025-11-11 16:40:49.945587+00 f t ADELANTO 0.00 5 12033 \N +476027 2025-11-10 11:54:19.078945+00 2025-11-10 11:54:19.078952+00 f t SUBTOTAL 46000.00 1 11898 \N +476028 2025-11-10 11:54:19.080462+00 2025-11-10 11:54:19.080467+00 f t COSTO_SERVICIO 0.00 2 11898 \N +476029 2025-11-10 11:54:19.081494+00 2025-11-10 11:54:19.0815+00 f t DESCUENTO 0.00 3 11898 \N +476030 2025-11-10 11:54:19.082608+00 2025-11-10 11:54:19.082613+00 f t TOTAL 46000.00 4 11898 \N +476031 2025-11-10 11:54:19.083554+00 2025-11-10 11:54:19.083559+00 f t ADELANTO 11000.00 5 11898 \N +493407 2025-11-14 01:49:56.911791+00 2025-11-14 01:49:56.9118+00 f t SUBTOTAL 55000.00 1 12311 \N +493408 2025-11-14 01:49:56.912995+00 2025-11-14 01:49:56.913001+00 f t COSTO_SERVICIO 0.00 2 12311 \N +493409 2025-11-14 01:49:56.913817+00 2025-11-14 01:49:56.913822+00 f t DESCUENTO 0.00 3 12311 \N +493410 2025-11-14 01:49:56.914575+00 2025-11-14 01:49:56.914581+00 f t TOTAL 55000.00 4 12311 \N +493411 2025-11-14 01:49:56.915269+00 2025-11-14 01:49:56.915275+00 f t ADELANTO 11000.00 5 12311 \N +482842 2025-11-11 20:51:10.419706+00 2025-11-11 20:51:10.419714+00 f t SUBTOTAL 46000.00 1 12057 \N +482843 2025-11-11 20:51:10.421289+00 2025-11-11 20:51:10.421295+00 f t COSTO_SERVICIO 0.00 2 12057 \N +482844 2025-11-11 20:51:10.4222+00 2025-11-11 20:51:10.422204+00 f t DESCUENTO 0.00 3 12057 \N +482845 2025-11-11 20:51:10.423082+00 2025-11-11 20:51:10.423088+00 f t TOTAL 46000.00 4 12057 \N +482846 2025-11-11 20:51:10.424038+00 2025-11-11 20:51:10.424043+00 f t ADELANTO 11000.00 5 12057 \N +476062 2025-11-10 11:59:51.64595+00 2025-11-10 11:59:51.645957+00 f t SUBTOTAL 55000.00 1 11899 \N +476063 2025-11-10 11:59:51.64863+00 2025-11-10 11:59:51.648637+00 f t COSTO_SERVICIO 0.00 2 11899 \N +476064 2025-11-10 11:59:51.649674+00 2025-11-10 11:59:51.649678+00 f t DESCUENTO 0.00 3 11899 \N +476065 2025-11-10 11:59:51.650654+00 2025-11-10 11:59:51.650659+00 f t TOTAL 55000.00 4 11899 \N +476066 2025-11-10 11:59:51.651841+00 2025-11-10 11:59:51.651849+00 f t ADELANTO 11000.00 5 11899 \N +476142 2025-11-10 12:28:31.018696+00 2025-11-10 12:28:31.018707+00 f t SUBTOTAL 46000.00 1 11900 \N +476143 2025-11-10 12:28:31.020505+00 2025-11-10 12:28:31.020513+00 f t COSTO_SERVICIO 0.00 2 11900 \N +476144 2025-11-10 12:28:31.021855+00 2025-11-10 12:28:31.021863+00 f t DESCUENTO 0.00 3 11900 \N +476145 2025-11-10 12:28:31.023048+00 2025-11-10 12:28:31.023055+00 f t TOTAL 46000.00 4 11900 \N +476146 2025-11-10 12:28:31.024429+00 2025-11-10 12:28:31.024437+00 f t ADELANTO 11000.00 5 11900 \N +513517 2025-11-19 02:53:09.143525+00 2025-11-19 02:53:09.14353+00 f t SUBTOTAL 132000.00 1 12782 \N +513518 2025-11-19 02:53:09.145208+00 2025-11-19 02:53:09.145214+00 f t COSTO_SERVICIO 0.00 2 12782 \N +513519 2025-11-19 02:53:09.146609+00 2025-11-19 02:53:09.146614+00 f t DESCUENTO 9200.00 3 12782 \N +513520 2025-11-19 02:53:09.148088+00 2025-11-19 02:53:09.148093+00 f t TOTAL 122800.00 4 12782 \N +513521 2025-11-19 02:53:09.148981+00 2025-11-19 02:53:09.148986+00 f t ADELANTO 35000.00 5 12782 \N +476177 2025-11-10 12:41:22.08212+00 2025-11-10 12:41:22.082133+00 f t SUBTOTAL 0.00 1 11901 \N +476178 2025-11-10 12:41:22.084469+00 2025-11-10 12:41:22.08448+00 f t COSTO_SERVICIO 0.00 2 11901 \N +476179 2025-11-10 12:41:22.08593+00 2025-11-10 12:41:22.085939+00 f t DESCUENTO 0.00 3 11901 \N +476180 2025-11-10 12:41:22.087333+00 2025-11-10 12:41:22.087341+00 f t TOTAL 0.00 4 11901 \N +476181 2025-11-10 12:41:22.088615+00 2025-11-10 12:41:22.088623+00 f t ADELANTO 0.00 5 11901 \N +480142 2025-11-11 10:43:56.547474+00 2025-11-11 10:43:56.547482+00 f t SUBTOTAL 54000.00 1 12003 \N +480143 2025-11-11 10:43:56.54909+00 2025-11-11 10:43:56.549096+00 f t COSTO_SERVICIO 0.00 2 12003 \N +480144 2025-11-11 10:43:56.550627+00 2025-11-11 10:43:56.550636+00 f t DESCUENTO 0.00 3 12003 \N +480145 2025-11-11 10:43:56.551878+00 2025-11-11 10:43:56.551884+00 f t TOTAL 54000.00 4 12003 \N +480146 2025-11-11 10:43:56.552999+00 2025-11-11 10:43:56.553005+00 f t ADELANTO 13500.00 5 12003 \N +480597 2025-11-11 13:09:02.481729+00 2025-11-11 13:09:02.481744+00 f t SUBTOTAL 0.00 1 12012 \N +480598 2025-11-11 13:09:02.484783+00 2025-11-11 13:09:02.484797+00 f t COSTO_SERVICIO 0.00 2 12012 \N +480599 2025-11-11 13:09:02.488028+00 2025-11-11 13:09:02.488043+00 f t DESCUENTO 0.00 3 12012 \N +480600 2025-11-11 13:09:02.490575+00 2025-11-11 13:09:02.490589+00 f t TOTAL 0.00 4 12012 \N +480601 2025-11-11 13:09:02.4944+00 2025-11-11 13:09:02.494413+00 f t ADELANTO 0.00 5 12012 \N +476232 2025-11-10 13:47:15.444334+00 2025-11-10 13:47:15.444342+00 f t SUBTOTAL 13200.00 1 11903 \N +476233 2025-11-10 13:47:15.446177+00 2025-11-10 13:47:15.446184+00 f t COSTO_SERVICIO 0.00 2 11903 \N +476234 2025-11-10 13:47:15.447453+00 2025-11-10 13:47:15.447461+00 f t DESCUENTO 0.00 3 11903 \N +476235 2025-11-10 13:47:15.448694+00 2025-11-10 13:47:15.448701+00 f t TOTAL 13200.00 4 11903 \N +476236 2025-11-10 13:47:15.449847+00 2025-11-10 13:47:15.449853+00 f t ADELANTO 13200.00 5 11903 \N +476247 2025-11-10 13:51:56.8021+00 2025-11-10 13:51:56.802108+00 f t SUBTOTAL 118700.00 1 11902 \N +476248 2025-11-10 13:51:56.80376+00 2025-11-10 13:51:56.803768+00 f t COSTO_SERVICIO 0.00 2 11902 \N +476249 2025-11-10 13:51:56.805142+00 2025-11-10 13:51:56.805148+00 f t DESCUENTO 0.00 3 11902 \N +476250 2025-11-10 13:51:56.806307+00 2025-11-10 13:51:56.806313+00 f t TOTAL 118700.00 4 11902 \N +476251 2025-11-10 13:51:56.80734+00 2025-11-10 13:51:56.807345+00 f t ADELANTO 30200.00 5 11902 \N +476257 2025-11-10 13:56:00.654789+00 2025-11-10 13:56:00.6548+00 f t SUBTOTAL 72500.00 1 11857 \N +476258 2025-11-10 13:56:00.656626+00 2025-11-10 13:56:00.656636+00 f t COSTO_SERVICIO 0.00 2 11857 \N +476259 2025-11-10 13:56:00.65815+00 2025-11-10 13:56:00.658158+00 f t DESCUENTO 0.00 3 11857 \N +476260 2025-11-10 13:56:00.659394+00 2025-11-10 13:56:00.6594+00 f t TOTAL 72500.00 4 11857 \N +476261 2025-11-10 13:56:00.660715+00 2025-11-10 13:56:00.660722+00 f t ADELANTO 72500.00 5 11857 \N +476267 2025-11-10 13:56:38.220052+00 2025-11-10 13:56:38.22006+00 f t SUBTOTAL 0.00 1 11904 \N +476268 2025-11-10 13:56:38.221519+00 2025-11-10 13:56:38.221525+00 f t COSTO_SERVICIO 0.00 2 11904 \N +476269 2025-11-10 13:56:38.222536+00 2025-11-10 13:56:38.222542+00 f t DESCUENTO 0.00 3 11904 \N +476270 2025-11-10 13:56:38.223721+00 2025-11-10 13:56:38.223731+00 f t TOTAL 0.00 4 11904 \N +476271 2025-11-10 13:56:38.224955+00 2025-11-10 13:56:38.224961+00 f t ADELANTO 0.00 5 11904 \N +481967 2025-11-11 17:13:50.51564+00 2025-11-11 17:13:50.515648+00 f t SUBTOTAL 0.00 1 12034 \N +481968 2025-11-11 17:13:50.516902+00 2025-11-11 17:13:50.516908+00 f t COSTO_SERVICIO 0.00 2 12034 \N +481969 2025-11-11 17:13:50.517777+00 2025-11-11 17:13:50.517782+00 f t DESCUENTO 0.00 3 12034 \N +481970 2025-11-11 17:13:50.518642+00 2025-11-11 17:13:50.518647+00 f t TOTAL 0.00 4 12034 \N +481971 2025-11-11 17:13:50.519474+00 2025-11-11 17:13:50.519479+00 f t ADELANTO 0.00 5 12034 \N +482232 2025-11-11 18:51:09.262643+00 2025-11-11 18:51:09.262657+00 f t SUBTOTAL 0.00 1 12041 \N +482233 2025-11-11 18:51:09.264072+00 2025-11-11 18:51:09.264078+00 f t COSTO_SERVICIO 0.00 2 12041 \N +482234 2025-11-11 18:51:09.265133+00 2025-11-11 18:51:09.265138+00 f t DESCUENTO 0.00 3 12041 \N +482235 2025-11-11 18:51:09.266666+00 2025-11-11 18:51:09.266672+00 f t TOTAL 0.00 4 12041 \N +482236 2025-11-11 18:51:09.267994+00 2025-11-11 18:51:09.267999+00 f t ADELANTO 0.00 5 12041 \N +476327 2025-11-10 14:05:23.039538+00 2025-11-10 14:05:23.039546+00 f t SUBTOTAL 46000.00 1 11905 \N +476328 2025-11-10 14:05:23.041113+00 2025-11-10 14:05:23.041119+00 f t COSTO_SERVICIO 0.00 2 11905 \N +476329 2025-11-10 14:05:23.042732+00 2025-11-10 14:05:23.042742+00 f t DESCUENTO 0.00 3 11905 \N +476330 2025-11-10 14:05:23.044188+00 2025-11-10 14:05:23.044195+00 f t TOTAL 46000.00 4 11905 \N +476331 2025-11-10 14:05:23.045385+00 2025-11-10 14:05:23.04539+00 f t ADELANTO 11000.00 5 11905 \N +476357 2025-11-10 14:08:52.732298+00 2025-11-10 14:08:52.732306+00 f t SUBTOTAL 127500.00 1 11906 \N +476358 2025-11-10 14:08:52.734044+00 2025-11-10 14:08:52.734051+00 f t COSTO_SERVICIO 0.00 2 11906 \N +476359 2025-11-10 14:08:52.735294+00 2025-11-10 14:08:52.735301+00 f t DESCUENTO 0.00 3 11906 \N +476360 2025-11-10 14:08:52.736401+00 2025-11-10 14:08:52.736407+00 f t TOTAL 127500.00 4 11906 \N +476361 2025-11-10 14:08:52.737492+00 2025-11-10 14:08:52.737497+00 f t ADELANTO 27500.00 5 11906 \N +476367 2025-11-10 14:11:56.419881+00 2025-11-10 14:11:56.419892+00 f t SUBTOTAL 0.00 1 11907 \N +476368 2025-11-10 14:11:56.421324+00 2025-11-10 14:11:56.421332+00 f t COSTO_SERVICIO 0.00 2 11907 \N +476369 2025-11-10 14:11:56.422546+00 2025-11-10 14:11:56.422554+00 f t DESCUENTO 0.00 3 11907 \N +476370 2025-11-10 14:11:56.423664+00 2025-11-10 14:11:56.423669+00 f t TOTAL 0.00 4 11907 \N +476371 2025-11-10 14:11:56.424822+00 2025-11-10 14:11:56.424828+00 f t ADELANTO 0.00 5 11907 \N +476387 2025-11-10 14:21:58.745974+00 2025-11-10 14:21:58.745981+00 f t SUBTOTAL 77700.00 1 11908 \N +476388 2025-11-10 14:21:58.747822+00 2025-11-10 14:21:58.747829+00 f t COSTO_SERVICIO 0.00 2 11908 \N +476389 2025-11-10 14:21:58.749175+00 2025-11-10 14:21:58.749181+00 f t DESCUENTO 0.00 3 11908 \N +476390 2025-11-10 14:21:58.750238+00 2025-11-10 14:21:58.750244+00 f t TOTAL 77700.00 4 11908 \N +476391 2025-11-10 14:21:58.751257+00 2025-11-10 14:21:58.751262+00 f t ADELANTO 21200.00 5 11908 \N +483632 2025-11-11 23:12:47.276236+00 2025-11-11 23:12:47.276244+00 f t SUBTOTAL 0.00 1 12078 \N +483633 2025-11-11 23:12:47.278519+00 2025-11-11 23:12:47.278526+00 f t COSTO_SERVICIO 0.00 2 12078 \N +483634 2025-11-11 23:12:47.279657+00 2025-11-11 23:12:47.279661+00 f t DESCUENTO 0.00 3 12078 \N +483635 2025-11-11 23:12:47.280674+00 2025-11-11 23:12:47.280679+00 f t TOTAL 0.00 4 12078 \N +483636 2025-11-11 23:12:47.281794+00 2025-11-11 23:12:47.281799+00 f t ADELANTO 0.00 5 12078 \N +477717 2025-11-10 19:53:00.837809+00 2025-11-10 19:53:00.837816+00 f t SUBTOTAL 68700.00 1 11917 \N +477718 2025-11-10 19:53:00.839567+00 2025-11-10 19:53:00.839575+00 f t COSTO_SERVICIO 0.00 2 11917 \N +477719 2025-11-10 19:53:00.840573+00 2025-11-10 19:53:00.840578+00 f t DESCUENTO 0.00 3 11917 \N +477720 2025-11-10 19:53:00.841505+00 2025-11-10 19:53:00.84151+00 f t TOTAL 68700.00 4 11917 \N +477721 2025-11-10 19:53:00.842332+00 2025-11-10 19:53:00.842337+00 f t ADELANTO 51200.00 5 11917 \N +511712 2025-11-18 21:34:55.550221+00 2025-11-18 21:34:55.550228+00 f t SUBTOTAL 46000.00 1 12739 \N +511713 2025-11-18 21:34:55.551953+00 2025-11-18 21:34:55.551959+00 f t COSTO_SERVICIO 0.00 2 12739 \N +489497 2025-11-13 10:01:02.291798+00 2025-11-13 10:01:02.291811+00 f t SUBTOTAL 54000.00 1 12215 \N +489498 2025-11-13 10:01:02.294357+00 2025-11-13 10:01:02.29437+00 f t COSTO_SERVICIO 0.00 2 12215 \N +489499 2025-11-13 10:01:02.296193+00 2025-11-13 10:01:02.296204+00 f t DESCUENTO 0.00 3 12215 \N +489500 2025-11-13 10:01:02.298287+00 2025-11-13 10:01:02.298299+00 f t TOTAL 54000.00 4 12215 \N +489501 2025-11-13 10:01:02.300345+00 2025-11-13 10:01:02.300357+00 f t ADELANTO 13500.00 5 12215 \N +478887 2025-11-10 21:38:22.632306+00 2025-11-10 21:38:22.632643+00 f t SUBTOTAL 0.00 1 11970 \N +478888 2025-11-10 21:38:22.636805+00 2025-11-10 21:38:22.636814+00 f t COSTO_SERVICIO 0.00 2 11970 \N +478889 2025-11-10 21:38:22.638212+00 2025-11-10 21:38:22.638218+00 f t DESCUENTO 0.00 3 11970 \N +478890 2025-11-10 21:38:22.640736+00 2025-11-10 21:38:22.640743+00 f t TOTAL 0.00 4 11970 \N +478891 2025-11-10 21:38:22.642811+00 2025-11-10 21:38:22.642821+00 f t ADELANTO 0.00 5 11970 \N +479097 2025-11-10 22:41:59.121607+00 2025-11-10 22:41:59.121614+00 f t SUBTOTAL 54000.00 1 11974 \N +479098 2025-11-10 22:41:59.123406+00 2025-11-10 22:41:59.123411+00 f t COSTO_SERVICIO 0.00 2 11974 \N +479099 2025-11-10 22:41:59.124455+00 2025-11-10 22:41:59.124461+00 f t DESCUENTO 0.00 3 11974 \N +479100 2025-11-10 22:41:59.125386+00 2025-11-10 22:41:59.125391+00 f t TOTAL 54000.00 4 11974 \N +479101 2025-11-10 22:41:59.126266+00 2025-11-10 22:41:59.126271+00 f t ADELANTO 13500.00 5 11974 \N +479977 2025-11-11 08:03:12.162808+00 2025-11-11 08:03:12.162817+00 f t SUBTOTAL 0.00 1 11998 \N +479978 2025-11-11 08:03:12.165474+00 2025-11-11 08:03:12.16548+00 f t COSTO_SERVICIO 0.00 2 11998 \N +479979 2025-11-11 08:03:12.166758+00 2025-11-11 08:03:12.166763+00 f t DESCUENTO 0.00 3 11998 \N +479980 2025-11-11 08:03:12.168052+00 2025-11-11 08:03:12.168057+00 f t TOTAL 0.00 4 11998 \N +479981 2025-11-11 08:03:12.168962+00 2025-11-11 08:03:12.168966+00 f t ADELANTO 0.00 5 11998 \N +501877 2025-11-17 00:39:01.977555+00 2025-11-17 00:39:01.977568+00 f t SUBTOTAL 70000.00 1 12517 \N +501878 2025-11-17 00:39:01.984356+00 2025-11-17 00:39:01.984371+00 f t COSTO_SERVICIO 0.00 2 12517 \N +501879 2025-11-17 00:39:01.993439+00 2025-11-17 00:39:01.993454+00 f t DESCUENTO 0.00 3 12517 \N +501880 2025-11-17 00:39:01.996313+00 2025-11-17 00:39:01.996325+00 f t TOTAL 70000.00 4 12517 \N +501881 2025-11-17 00:39:01.999482+00 2025-11-17 00:39:01.999495+00 f t ADELANTO 19000.00 5 12517 \N +476512 2025-11-10 14:33:40.785991+00 2025-11-10 14:33:40.785999+00 f t SUBTOTAL 46000.00 1 11909 \N +476513 2025-11-10 14:33:40.787702+00 2025-11-10 14:33:40.78771+00 f t COSTO_SERVICIO 0.00 2 11909 \N +476514 2025-11-10 14:33:40.788824+00 2025-11-10 14:33:40.78883+00 f t DESCUENTO 0.00 3 11909 \N +476515 2025-11-10 14:33:40.789839+00 2025-11-10 14:33:40.789845+00 f t TOTAL 46000.00 4 11909 \N +476516 2025-11-10 14:33:40.790937+00 2025-11-10 14:33:40.790942+00 f t ADELANTO 11000.00 5 11909 \N +476552 2025-11-10 14:36:26.269273+00 2025-11-10 14:36:26.26928+00 f t SUBTOTAL 46000.00 1 11910 \N +476553 2025-11-10 14:36:26.270806+00 2025-11-10 14:36:26.270811+00 f t COSTO_SERVICIO 0.00 2 11910 \N +476554 2025-11-10 14:36:26.271975+00 2025-11-10 14:36:26.271981+00 f t DESCUENTO 0.00 3 11910 \N +476555 2025-11-10 14:36:26.272962+00 2025-11-10 14:36:26.272967+00 f t TOTAL 46000.00 4 11910 \N +476556 2025-11-10 14:36:26.273861+00 2025-11-10 14:36:26.273866+00 f t ADELANTO 11000.00 5 11910 \N +476562 2025-11-10 14:43:41.875196+00 2025-11-10 14:43:41.875205+00 f t SUBTOTAL 0.00 1 11911 \N +476563 2025-11-10 14:43:41.876467+00 2025-11-10 14:43:41.876474+00 f t COSTO_SERVICIO 0.00 2 11911 \N +476564 2025-11-10 14:43:41.877408+00 2025-11-10 14:43:41.877414+00 f t DESCUENTO 0.00 3 11911 \N +476565 2025-11-10 14:43:41.878372+00 2025-11-10 14:43:41.878377+00 f t TOTAL 0.00 4 11911 \N +476566 2025-11-10 14:43:41.879303+00 2025-11-10 14:43:41.879308+00 f t ADELANTO 0.00 5 11911 \N +476572 2025-11-10 14:53:42.022923+00 2025-11-10 14:53:42.022931+00 f t SUBTOTAL 0.00 1 11912 \N +476573 2025-11-10 14:53:42.024436+00 2025-11-10 14:53:42.024443+00 f t COSTO_SERVICIO 0.00 2 11912 \N +476574 2025-11-10 14:53:42.025558+00 2025-11-10 14:53:42.025563+00 f t DESCUENTO 0.00 3 11912 \N +476575 2025-11-10 14:53:42.026575+00 2025-11-10 14:53:42.02658+00 f t TOTAL 0.00 4 11912 \N +476576 2025-11-10 14:53:42.027659+00 2025-11-10 14:53:42.027664+00 f t ADELANTO 0.00 5 11912 \N +476612 2025-11-10 15:04:56.494782+00 2025-11-10 15:04:56.49479+00 f t SUBTOTAL 85000.00 1 11913 \N +476613 2025-11-10 15:04:56.496289+00 2025-11-10 15:04:56.496296+00 f t COSTO_SERVICIO 0.00 2 11913 \N +476614 2025-11-10 15:04:56.497429+00 2025-11-10 15:04:56.497435+00 f t DESCUENTO 8500.00 3 11913 \N +476615 2025-11-10 15:04:56.498414+00 2025-11-10 15:04:56.49842+00 f t TOTAL 76500.00 4 11913 \N +476616 2025-11-10 15:04:56.499398+00 2025-11-10 15:04:56.499403+00 f t ADELANTO 41000.00 5 11913 \N +482717 2025-11-11 20:05:54.429086+00 2025-11-11 20:05:54.429098+00 f t SUBTOTAL 0.00 1 12050 \N +482718 2025-11-11 20:05:54.430692+00 2025-11-11 20:05:54.430702+00 f t COSTO_SERVICIO 0.00 2 12050 \N +482719 2025-11-11 20:05:54.43184+00 2025-11-11 20:05:54.431848+00 f t DESCUENTO 0.00 3 12050 \N +482720 2025-11-11 20:05:54.432923+00 2025-11-11 20:05:54.432931+00 f t TOTAL 0.00 4 12050 \N +482721 2025-11-11 20:05:54.433925+00 2025-11-11 20:05:54.433932+00 f t ADELANTO 0.00 5 12050 \N +483082 2025-11-11 21:27:52.671945+00 2025-11-11 21:27:52.671955+00 f t SUBTOTAL 46000.00 1 12063 \N +483083 2025-11-11 21:27:52.673826+00 2025-11-11 21:27:52.673832+00 f t COSTO_SERVICIO 0.00 2 12063 \N +483084 2025-11-11 21:27:52.674973+00 2025-11-11 21:27:52.674978+00 f t DESCUENTO 0.00 3 12063 \N +476642 2025-11-10 15:14:07.513245+00 2025-11-10 15:14:07.513253+00 f t SUBTOTAL 78000.00 1 11914 \N +476643 2025-11-10 15:14:07.514802+00 2025-11-10 15:14:07.514807+00 f t COSTO_SERVICIO 0.00 2 11914 \N +476644 2025-11-10 15:14:07.516006+00 2025-11-10 15:14:07.516012+00 f t DESCUENTO 0.00 3 11914 \N +476645 2025-11-10 15:14:07.517219+00 2025-11-10 15:14:07.517224+00 f t TOTAL 78000.00 4 11914 \N +476646 2025-11-10 15:14:07.518278+00 2025-11-10 15:14:07.518283+00 f t ADELANTO 13000.00 5 11914 \N +483085 2025-11-11 21:27:52.675861+00 2025-11-11 21:27:52.675866+00 f t TOTAL 46000.00 4 12063 \N +483086 2025-11-11 21:27:52.676696+00 2025-11-11 21:27:52.676701+00 f t ADELANTO 11000.00 5 12063 \N +483192 2025-11-11 21:43:39.287369+00 2025-11-11 21:43:39.287377+00 f t SUBTOTAL 46000.00 1 12066 \N +483193 2025-11-11 21:43:39.289044+00 2025-11-11 21:43:39.28905+00 f t COSTO_SERVICIO 0.00 2 12066 \N +483194 2025-11-11 21:43:39.290143+00 2025-11-11 21:43:39.290148+00 f t DESCUENTO 0.00 3 12066 \N +476652 2025-11-10 15:15:06.906633+00 2025-11-10 15:15:06.906644+00 f t SUBTOTAL 0.00 1 11915 \N +476653 2025-11-10 15:15:06.908261+00 2025-11-10 15:15:06.908268+00 f t COSTO_SERVICIO 0.00 2 11915 \N +476654 2025-11-10 15:15:06.909444+00 2025-11-10 15:15:06.90945+00 f t DESCUENTO 0.00 3 11915 \N +476655 2025-11-10 15:15:06.910509+00 2025-11-10 15:15:06.910514+00 f t TOTAL 0.00 4 11915 \N +476656 2025-11-10 15:15:06.911778+00 2025-11-10 15:15:06.911787+00 f t ADELANTO 0.00 5 11915 \N +483195 2025-11-11 21:43:39.291204+00 2025-11-11 21:43:39.291209+00 f t TOTAL 46000.00 4 12066 \N +483196 2025-11-11 21:43:39.29212+00 2025-11-11 21:43:39.292124+00 f t ADELANTO 11000.00 5 12066 \N +511714 2025-11-18 21:34:55.553085+00 2025-11-18 21:34:55.553091+00 f t DESCUENTO 0.00 3 12739 \N +511715 2025-11-18 21:34:55.554597+00 2025-11-18 21:34:55.554605+00 f t TOTAL 46000.00 4 12739 \N +511716 2025-11-18 21:34:55.556344+00 2025-11-18 21:34:55.55635+00 f t ADELANTO 11000.00 5 12739 \N +523629 2025-11-20 20:49:28.660959+00 2025-11-20 20:49:28.660965+00 f t DESCUENTO 0.00 3 13022 \N +523630 2025-11-20 20:49:28.662507+00 2025-11-20 20:49:28.662514+00 f t TOTAL 70000.00 4 13022 \N +476717 2025-11-10 15:17:46.107102+00 2025-11-10 15:17:46.107112+00 f t SUBTOTAL 55000.00 1 11916 \N +476718 2025-11-10 15:17:46.108661+00 2025-11-10 15:17:46.108667+00 f t COSTO_SERVICIO 0.00 2 11916 \N +476719 2025-11-10 15:17:46.109916+00 2025-11-10 15:17:46.109922+00 f t DESCUENTO 0.00 3 11916 \N +476720 2025-11-10 15:17:46.110949+00 2025-11-10 15:17:46.110954+00 f t TOTAL 55000.00 4 11916 \N +476721 2025-11-10 15:17:46.112253+00 2025-11-10 15:17:46.112258+00 f t ADELANTO 11000.00 5 11916 \N +489717 2025-11-13 12:36:48.924107+00 2025-11-13 12:36:48.924116+00 f t SUBTOTAL 0.00 1 12224 \N +489718 2025-11-13 12:36:48.926206+00 2025-11-13 12:36:48.926213+00 f t COSTO_SERVICIO 0.00 2 12224 \N +489719 2025-11-13 12:36:48.927452+00 2025-11-13 12:36:48.927457+00 f t DESCUENTO 0.00 3 12224 \N +489720 2025-11-13 12:36:48.928467+00 2025-11-13 12:36:48.928471+00 f t TOTAL 0.00 4 12224 \N +489721 2025-11-13 12:36:48.92959+00 2025-11-13 12:36:48.929596+00 f t ADELANTO 0.00 5 12224 \N +479477 2025-11-11 01:21:47.385946+00 2025-11-11 01:21:47.385952+00 f t SUBTOTAL 53700.00 1 11986 \N +479478 2025-11-11 01:21:47.387964+00 2025-11-11 01:21:47.38797+00 f t COSTO_SERVICIO 0.00 2 11986 \N +479479 2025-11-11 01:21:47.389126+00 2025-11-11 01:21:47.389131+00 f t DESCUENTO 0.00 3 11986 \N +479480 2025-11-11 01:21:47.39015+00 2025-11-11 01:21:47.390156+00 f t TOTAL 53700.00 4 11986 \N +479481 2025-11-11 01:21:47.391101+00 2025-11-11 01:21:47.391107+00 f t ADELANTO 13200.00 5 11986 \N +479987 2025-11-11 10:05:26.2428+00 2025-11-11 10:05:26.242809+00 f t SUBTOTAL 0.00 1 11999 \N +479988 2025-11-11 10:05:26.244388+00 2025-11-11 10:05:26.244396+00 f t COSTO_SERVICIO 0.00 2 11999 \N +479989 2025-11-11 10:05:26.245478+00 2025-11-11 10:05:26.245483+00 f t DESCUENTO 0.00 3 11999 \N +479990 2025-11-11 10:05:26.246467+00 2025-11-11 10:05:26.246472+00 f t TOTAL 0.00 4 11999 \N +479991 2025-11-11 10:05:26.247562+00 2025-11-11 10:05:26.247567+00 f t ADELANTO 0.00 5 11999 \N +476797 2025-11-10 15:34:04.008704+00 2025-11-10 15:34:04.008713+00 f t SUBTOTAL 0.00 1 11918 \N +476798 2025-11-10 15:34:04.010896+00 2025-11-10 15:34:04.010904+00 f t COSTO_SERVICIO 0.00 2 11918 \N +476799 2025-11-10 15:34:04.013569+00 2025-11-10 15:34:04.013577+00 f t DESCUENTO 0.00 3 11918 \N +476800 2025-11-10 15:34:04.015164+00 2025-11-10 15:34:04.015173+00 f t TOTAL 0.00 4 11918 \N +476801 2025-11-10 15:34:04.016859+00 2025-11-10 15:34:04.016881+00 f t ADELANTO 0.00 5 11918 \N +476807 2025-11-10 15:52:57.970979+00 2025-11-10 15:52:57.970992+00 f t SUBTOTAL 0.00 1 11919 \N +476808 2025-11-10 15:52:57.972697+00 2025-11-10 15:52:57.972709+00 f t COSTO_SERVICIO 0.00 2 11919 \N +476809 2025-11-10 15:52:57.973967+00 2025-11-10 15:52:57.973977+00 f t DESCUENTO 0.00 3 11919 \N +476810 2025-11-10 15:52:57.975209+00 2025-11-10 15:52:57.975218+00 f t TOTAL 0.00 4 11919 \N +476811 2025-11-10 15:52:57.976542+00 2025-11-10 15:52:57.97655+00 f t ADELANTO 0.00 5 11919 \N +491517 2025-11-13 22:20:31.034186+00 2025-11-13 22:20:31.034194+00 f t SUBTOTAL 0.00 1 12274 \N +491518 2025-11-13 22:20:31.035403+00 2025-11-13 22:20:31.035409+00 f t COSTO_SERVICIO 0.00 2 12274 \N +491519 2025-11-13 22:20:31.036396+00 2025-11-13 22:20:31.036401+00 f t DESCUENTO 0.00 3 12274 \N +491520 2025-11-13 22:20:31.03735+00 2025-11-13 22:20:31.037355+00 f t TOTAL 0.00 4 12274 \N +491521 2025-11-13 22:20:31.03825+00 2025-11-13 22:20:31.038254+00 f t ADELANTO 0.00 5 12274 \N +476827 2025-11-10 16:05:19.984384+00 2025-11-10 16:05:19.984393+00 f t SUBTOTAL 0.00 1 11920 \N +476828 2025-11-10 16:05:19.985844+00 2025-11-10 16:05:19.98585+00 f t COSTO_SERVICIO 0.00 2 11920 \N +476829 2025-11-10 16:05:19.986865+00 2025-11-10 16:05:19.986871+00 f t DESCUENTO 0.00 3 11920 \N +476830 2025-11-10 16:05:19.987911+00 2025-11-10 16:05:19.987916+00 f t TOTAL 0.00 4 11920 \N +476831 2025-11-10 16:05:19.988892+00 2025-11-10 16:05:19.988896+00 f t ADELANTO 0.00 5 11920 \N +491792 2025-11-13 22:50:58.298037+00 2025-11-13 22:50:58.298046+00 f t SUBTOTAL 103000.00 1 12279 \N +491793 2025-11-13 22:50:58.30069+00 2025-11-13 22:50:58.300697+00 f t COSTO_SERVICIO 0.00 2 12279 \N +491794 2025-11-13 22:50:58.301877+00 2025-11-13 22:50:58.301883+00 f t DESCUENTO 0.00 3 12279 \N +491795 2025-11-13 22:50:58.303268+00 2025-11-13 22:50:58.303277+00 f t TOTAL 103000.00 4 12279 \N +491796 2025-11-13 22:50:58.304457+00 2025-11-13 22:50:58.304463+00 f t ADELANTO 25500.00 5 12279 \N +482102 2025-11-11 17:26:13.620602+00 2025-11-11 17:26:13.620612+00 f t SUBTOTAL 85000.00 1 12037 \N +482103 2025-11-11 17:26:13.622026+00 2025-11-11 17:26:13.622032+00 f t COSTO_SERVICIO 0.00 2 12037 \N +476882 2025-11-10 16:08:38.085573+00 2025-11-10 16:08:38.085584+00 f t SUBTOTAL 32500.00 1 11921 \N +476883 2025-11-10 16:08:38.087469+00 2025-11-10 16:08:38.087476+00 f t COSTO_SERVICIO 0.00 2 11921 \N +476884 2025-11-10 16:08:38.088631+00 2025-11-10 16:08:38.088636+00 f t DESCUENTO 0.00 3 11921 \N +476885 2025-11-10 16:08:38.08965+00 2025-11-10 16:08:38.089655+00 f t TOTAL 32500.00 4 11921 \N +476886 2025-11-10 16:08:38.09126+00 2025-11-10 16:08:38.091266+00 f t ADELANTO 32500.00 5 11921 \N +482104 2025-11-11 17:26:13.623218+00 2025-11-11 17:26:13.623223+00 f t DESCUENTO 0.00 3 12037 \N +482105 2025-11-11 17:26:13.624124+00 2025-11-11 17:26:13.62413+00 f t TOTAL 85000.00 4 12037 \N +482106 2025-11-11 17:26:13.624924+00 2025-11-11 17:26:13.624929+00 f t ADELANTO 15000.00 5 12037 \N +493057 2025-11-14 01:30:05.83269+00 2025-11-14 01:30:05.832703+00 f t SUBTOTAL 55000.00 1 12307 \N +493058 2025-11-14 01:30:05.835819+00 2025-11-14 01:30:05.835834+00 f t COSTO_SERVICIO 0.00 2 12307 \N +493059 2025-11-14 01:30:05.838528+00 2025-11-14 01:30:05.838542+00 f t DESCUENTO 0.00 3 12307 \N +493060 2025-11-14 01:30:05.841233+00 2025-11-14 01:30:05.841246+00 f t TOTAL 55000.00 4 12307 \N +493061 2025-11-14 01:30:05.844562+00 2025-11-14 01:30:05.844578+00 f t ADELANTO 11000.00 5 12307 \N +483092 2025-11-11 21:29:07.458094+00 2025-11-11 21:29:07.458106+00 f t SUBTOTAL 0.00 1 12064 \N +483093 2025-11-11 21:29:07.459669+00 2025-11-11 21:29:07.459679+00 f t COSTO_SERVICIO 0.00 2 12064 \N +483094 2025-11-11 21:29:07.460925+00 2025-11-11 21:29:07.46093+00 f t DESCUENTO 0.00 3 12064 \N +483095 2025-11-11 21:29:07.461953+00 2025-11-11 21:29:07.461961+00 f t TOTAL 0.00 4 12064 \N +483096 2025-11-11 21:29:07.46292+00 2025-11-11 21:29:07.462925+00 f t ADELANTO 0.00 5 12064 \N +493982 2025-11-14 09:21:18.103917+00 2025-11-14 09:21:18.103925+00 f t SUBTOTAL 0.00 1 12323 \N +493983 2025-11-14 09:21:18.106517+00 2025-11-14 09:21:18.106525+00 f t COSTO_SERVICIO 0.00 2 12323 \N +493984 2025-11-14 09:21:18.107939+00 2025-11-14 09:21:18.107946+00 f t DESCUENTO 0.00 3 12323 \N +493985 2025-11-14 09:21:18.109111+00 2025-11-14 09:21:18.109117+00 f t TOTAL 0.00 4 12323 \N +493986 2025-11-14 09:21:18.110422+00 2025-11-14 09:21:18.110428+00 f t ADELANTO 0.00 5 12323 \N +484017 2025-11-12 01:01:52.982864+00 2025-11-12 01:01:52.982874+00 f t SUBTOTAL 79000.00 1 12087 \N +484018 2025-11-12 01:01:52.984786+00 2025-11-12 01:01:52.984795+00 f t COSTO_SERVICIO 0.00 2 12087 \N +484019 2025-11-12 01:01:52.986205+00 2025-11-12 01:01:52.986212+00 f t DESCUENTO 0.00 3 12087 \N +484020 2025-11-12 01:01:52.98743+00 2025-11-12 01:01:52.987436+00 f t TOTAL 79000.00 4 12087 \N +484021 2025-11-12 01:01:52.988649+00 2025-11-12 01:01:52.988656+00 f t ADELANTO 17500.00 5 12087 \N +477732 2025-11-10 19:54:21.348133+00 2025-11-10 19:54:21.348139+00 f t SUBTOTAL 107000.00 1 11942 \N +477733 2025-11-10 19:54:21.349781+00 2025-11-10 19:54:21.349787+00 f t COSTO_SERVICIO 0.00 2 11942 \N +477734 2025-11-10 19:54:21.350695+00 2025-11-10 19:54:21.350701+00 f t DESCUENTO 0.00 3 11942 \N +477735 2025-11-10 19:54:21.351584+00 2025-11-10 19:54:21.35159+00 f t TOTAL 107000.00 4 11942 \N +477736 2025-11-10 19:54:21.352452+00 2025-11-10 19:54:21.352457+00 f t ADELANTO 12000.00 5 11942 \N +478247 2025-11-10 20:24:18.067565+00 2025-11-10 20:24:18.067571+00 f t SUBTOTAL 57000.00 1 11955 \N +478248 2025-11-10 20:24:18.069441+00 2025-11-10 20:24:18.069449+00 f t COSTO_SERVICIO 0.00 2 11955 \N +478249 2025-11-10 20:24:18.070592+00 2025-11-10 20:24:18.070597+00 f t DESCUENTO 0.00 3 11955 \N +478250 2025-11-10 20:24:18.071436+00 2025-11-10 20:24:18.071441+00 f t TOTAL 57000.00 4 11955 \N +478251 2025-11-10 20:24:18.072266+00 2025-11-10 20:24:18.072271+00 f t ADELANTO 57000.00 5 11955 \N +478467 2025-11-10 21:08:14.204919+00 2025-11-10 21:08:14.20493+00 f t SUBTOTAL 53700.00 1 11960 \N +478468 2025-11-10 21:08:14.206856+00 2025-11-10 21:08:14.206866+00 f t COSTO_SERVICIO 0.00 2 11960 \N +478469 2025-11-10 21:08:14.209128+00 2025-11-10 21:08:14.209136+00 f t DESCUENTO 0.00 3 11960 \N +478470 2025-11-10 21:08:14.21063+00 2025-11-10 21:08:14.210637+00 f t TOTAL 53700.00 4 11960 \N +478471 2025-11-10 21:08:14.211901+00 2025-11-10 21:08:14.211908+00 f t ADELANTO 13200.00 5 11960 \N +477037 2025-11-10 16:21:39.210611+00 2025-11-10 16:21:39.210623+00 f t SUBTOTAL 0.00 1 11923 \N +477038 2025-11-10 16:21:39.212588+00 2025-11-10 16:21:39.212596+00 f t COSTO_SERVICIO 0.00 2 11923 \N +477039 2025-11-10 16:21:39.213742+00 2025-11-10 16:21:39.213749+00 f t DESCUENTO 0.00 3 11923 \N +477040 2025-11-10 16:21:39.214793+00 2025-11-10 16:21:39.214798+00 f t TOTAL 0.00 4 11923 \N +477041 2025-11-10 16:21:39.215695+00 2025-11-10 16:21:39.215701+00 f t ADELANTO 0.00 5 11923 \N +501547 2025-11-16 19:42:20.948465+00 2025-11-16 19:42:20.948476+00 f t SUBTOTAL 70000.00 1 12510 \N +501548 2025-11-16 19:42:20.950427+00 2025-11-16 19:42:20.950436+00 f t COSTO_SERVICIO 0.00 2 12510 \N +501549 2025-11-16 19:42:20.951763+00 2025-11-16 19:42:20.951771+00 f t DESCUENTO 0.00 3 12510 \N +501550 2025-11-16 19:42:20.952839+00 2025-11-16 19:42:20.952847+00 f t TOTAL 70000.00 4 12510 \N +501551 2025-11-16 19:42:20.953984+00 2025-11-16 19:42:20.953991+00 f t ADELANTO 19000.00 5 12510 \N +477057 2025-11-10 16:22:32.816603+00 2025-11-10 16:22:32.816609+00 f t SUBTOTAL 234000.00 1 11922 \N +477058 2025-11-10 16:22:32.818253+00 2025-11-10 16:22:32.81826+00 f t COSTO_SERVICIO 0.00 2 11922 \N +477059 2025-11-10 16:22:32.819402+00 2025-11-10 16:22:32.819408+00 f t DESCUENTO 9200.00 3 11922 \N +477060 2025-11-10 16:22:32.820375+00 2025-11-10 16:22:32.820381+00 f t TOTAL 224800.00 4 11922 \N +477061 2025-11-10 16:22:32.821325+00 2025-11-10 16:22:32.82133+00 f t ADELANTO 64500.00 5 11922 \N +480457 2025-11-11 12:41:56.249588+00 2025-11-11 12:41:56.249615+00 f t SUBTOTAL 0.00 1 12007 \N +480458 2025-11-11 12:41:56.251742+00 2025-11-11 12:41:56.251749+00 f t COSTO_SERVICIO 0.00 2 12007 \N +480459 2025-11-11 12:41:56.252841+00 2025-11-11 12:41:56.252847+00 f t DESCUENTO 0.00 3 12007 \N +480460 2025-11-11 12:41:56.253854+00 2025-11-11 12:41:56.253861+00 f t TOTAL 0.00 4 12007 \N +480461 2025-11-11 12:41:56.254956+00 2025-11-11 12:41:56.254962+00 f t ADELANTO 0.00 5 12007 \N +477092 2025-11-10 16:29:58.408494+00 2025-11-10 16:29:58.4085+00 f t SUBTOTAL 20500.00 1 11924 \N +477093 2025-11-10 16:29:58.409895+00 2025-11-10 16:29:58.409901+00 f t COSTO_SERVICIO 0.00 2 11924 \N +477094 2025-11-10 16:29:58.41084+00 2025-11-10 16:29:58.410845+00 f t DESCUENTO 0.00 3 11924 \N +477095 2025-11-10 16:29:58.411895+00 2025-11-10 16:29:58.411901+00 f t TOTAL 20500.00 4 11924 \N +477096 2025-11-10 16:29:58.412887+00 2025-11-10 16:29:58.412893+00 f t ADELANTO 20500.00 5 11924 \N +482112 2025-11-11 18:22:28.254195+00 2025-11-11 18:22:28.254204+00 f t SUBTOTAL 0.00 1 12038 \N +482113 2025-11-11 18:22:28.255645+00 2025-11-11 18:22:28.255651+00 f t COSTO_SERVICIO 0.00 2 12038 \N +482114 2025-11-11 18:22:28.256826+00 2025-11-11 18:22:28.256831+00 f t DESCUENTO 0.00 3 12038 \N +482115 2025-11-11 18:22:28.257658+00 2025-11-11 18:22:28.257663+00 f t TOTAL 0.00 4 12038 \N +482116 2025-11-11 18:22:28.258451+00 2025-11-11 18:22:28.258456+00 f t ADELANTO 0.00 5 12038 \N +482727 2025-11-11 20:06:02.542295+00 2025-11-11 20:06:02.542307+00 f t SUBTOTAL 46000.00 1 12049 \N +477192 2025-11-10 16:49:07.944158+00 2025-11-10 16:49:07.944183+00 f t SUBTOTAL 0.00 1 11926 \N +477193 2025-11-10 16:49:07.945574+00 2025-11-10 16:49:07.945581+00 f t COSTO_SERVICIO 0.00 2 11926 \N +477194 2025-11-10 16:49:07.946601+00 2025-11-10 16:49:07.946607+00 f t DESCUENTO 0.00 3 11926 \N +477195 2025-11-10 16:49:07.947833+00 2025-11-10 16:49:07.947839+00 f t TOTAL 0.00 4 11926 \N +477196 2025-11-10 16:49:07.94887+00 2025-11-10 16:49:07.948876+00 f t ADELANTO 0.00 5 11926 \N +482728 2025-11-11 20:06:02.544548+00 2025-11-11 20:06:02.544557+00 f t COSTO_SERVICIO 0.00 2 12049 \N +482729 2025-11-11 20:06:02.546208+00 2025-11-11 20:06:02.546219+00 f t DESCUENTO 0.00 3 12049 \N +482730 2025-11-11 20:06:02.547642+00 2025-11-11 20:06:02.547649+00 f t TOTAL 46000.00 4 12049 \N +482731 2025-11-11 20:06:02.549174+00 2025-11-11 20:06:02.549184+00 f t ADELANTO 11000.00 5 12049 \N +482977 2025-11-11 21:17:29.22488+00 2025-11-11 21:17:29.224887+00 f t SUBTOTAL 78000.00 1 12060 \N +482978 2025-11-11 21:17:29.226746+00 2025-11-11 21:17:29.226752+00 f t COSTO_SERVICIO 0.00 2 12060 \N +482979 2025-11-11 21:17:29.227933+00 2025-11-11 21:17:29.227938+00 f t DESCUENTO 0.00 3 12060 \N +482980 2025-11-11 21:17:29.229037+00 2025-11-11 21:17:29.229044+00 f t TOTAL 78000.00 4 12060 \N +482981 2025-11-11 21:17:29.230231+00 2025-11-11 21:17:29.230236+00 f t ADELANTO 21500.00 5 12060 \N +477217 2025-11-10 16:54:13.308413+00 2025-11-10 16:54:13.308424+00 f t SUBTOTAL 0.00 1 11927 \N +477218 2025-11-10 16:54:13.310067+00 2025-11-10 16:54:13.310074+00 f t COSTO_SERVICIO 0.00 2 11927 \N +477219 2025-11-10 16:54:13.311097+00 2025-11-10 16:54:13.311103+00 f t DESCUENTO 0.00 3 11927 \N +477220 2025-11-10 16:54:13.312075+00 2025-11-10 16:54:13.312081+00 f t TOTAL 0.00 4 11927 \N +477221 2025-11-10 16:54:13.312986+00 2025-11-10 16:54:13.312991+00 f t ADELANTO 0.00 5 11927 \N +477227 2025-11-10 17:17:36.319995+00 2025-11-10 17:17:36.320004+00 f t SUBTOTAL 0.00 1 11928 \N +477228 2025-11-10 17:17:36.321334+00 2025-11-10 17:17:36.321341+00 f t COSTO_SERVICIO 0.00 2 11928 \N +477229 2025-11-10 17:17:36.322464+00 2025-11-10 17:17:36.32247+00 f t DESCUENTO 0.00 3 11928 \N +477230 2025-11-10 17:17:36.323482+00 2025-11-10 17:17:36.32349+00 f t TOTAL 0.00 4 11928 \N +477231 2025-11-10 17:17:36.324511+00 2025-11-10 17:17:36.324516+00 f t ADELANTO 0.00 5 11928 \N +477237 2025-11-10 17:18:10.397592+00 2025-11-10 17:18:10.397601+00 f t SUBTOTAL 0.00 1 11929 \N +477238 2025-11-10 17:18:10.399057+00 2025-11-10 17:18:10.399065+00 f t COSTO_SERVICIO 0.00 2 11929 \N +477239 2025-11-10 17:18:10.400108+00 2025-11-10 17:18:10.400114+00 f t DESCUENTO 0.00 3 11929 \N +477240 2025-11-10 17:18:10.40129+00 2025-11-10 17:18:10.401295+00 f t TOTAL 0.00 4 11929 \N +477241 2025-11-10 17:18:10.402177+00 2025-11-10 17:18:10.402183+00 f t ADELANTO 0.00 5 11929 \N +477277 2025-11-10 17:19:03.87244+00 2025-11-10 17:19:03.872452+00 f t SUBTOTAL 0.00 1 11930 \N +477278 2025-11-10 17:19:03.874829+00 2025-11-10 17:19:03.874841+00 f t COSTO_SERVICIO 0.00 2 11930 \N +477279 2025-11-10 17:19:03.876472+00 2025-11-10 17:19:03.876481+00 f t DESCUENTO 0.00 3 11930 \N +477280 2025-11-10 17:19:03.877939+00 2025-11-10 17:19:03.877948+00 f t TOTAL 0.00 4 11930 \N +477281 2025-11-10 17:19:03.879504+00 2025-11-10 17:19:03.879512+00 f t ADELANTO 0.00 5 11930 \N +511717 2025-11-18 21:35:01.084068+00 2025-11-18 21:35:01.084079+00 f t SUBTOTAL 46000.00 1 12738 \N +500432 2025-11-16 12:14:24.965745+00 2025-11-16 12:14:24.965758+00 f t SUBTOTAL 54000.00 1 12486 \N +500433 2025-11-16 12:14:24.967747+00 2025-11-16 12:14:24.967757+00 f t COSTO_SERVICIO 0.00 2 12486 \N +500434 2025-11-16 12:14:24.969331+00 2025-11-16 12:14:24.96934+00 f t DESCUENTO 0.00 3 12486 \N +500435 2025-11-16 12:14:24.970742+00 2025-11-16 12:14:24.97075+00 f t TOTAL 54000.00 4 12486 \N +500436 2025-11-16 12:14:24.972039+00 2025-11-16 12:14:24.972047+00 f t ADELANTO 13500.00 5 12486 \N +477297 2025-11-10 17:20:02.966516+00 2025-11-10 17:20:02.966533+00 f t SUBTOTAL 0.00 1 11931 \N +477298 2025-11-10 17:20:02.970898+00 2025-11-10 17:20:02.970914+00 f t COSTO_SERVICIO 0.00 2 11931 \N +477299 2025-11-10 17:20:02.973637+00 2025-11-10 17:20:02.973651+00 f t DESCUENTO 0.00 3 11931 \N +477300 2025-11-10 17:20:02.976376+00 2025-11-10 17:20:02.97639+00 f t TOTAL 0.00 4 11931 \N +477301 2025-11-10 17:20:02.97927+00 2025-11-10 17:20:02.979287+00 f t ADELANTO 0.00 5 11931 \N +489516 2025-11-13 10:59:00.969807+00 2025-11-13 10:59:00.969813+00 f t ADELANTO 0.00 5 12216 \N +477327 2025-11-10 17:22:18.088323+00 2025-11-10 17:22:18.088329+00 f t SUBTOTAL 54000.00 1 11932 \N +477328 2025-11-10 17:22:18.089781+00 2025-11-10 17:22:18.089786+00 f t COSTO_SERVICIO 0.00 2 11932 \N +477329 2025-11-10 17:22:18.090809+00 2025-11-10 17:22:18.090814+00 f t DESCUENTO 0.00 3 11932 \N +477330 2025-11-10 17:22:18.091763+00 2025-11-10 17:22:18.091768+00 f t TOTAL 54000.00 4 11932 \N +477331 2025-11-10 17:22:18.092659+00 2025-11-10 17:22:18.092663+00 f t ADELANTO 13500.00 5 11932 \N +477337 2025-11-10 17:28:21.60223+00 2025-11-10 17:28:21.602242+00 f t SUBTOTAL 0.00 1 11933 \N +477338 2025-11-10 17:28:21.604612+00 2025-11-10 17:28:21.60462+00 f t COSTO_SERVICIO 0.00 2 11933 \N +477339 2025-11-10 17:28:21.606356+00 2025-11-10 17:28:21.606363+00 f t DESCUENTO 0.00 3 11933 \N +477340 2025-11-10 17:28:21.607514+00 2025-11-10 17:28:21.607521+00 f t TOTAL 0.00 4 11933 \N +477341 2025-11-10 17:28:21.60887+00 2025-11-10 17:28:21.608876+00 f t ADELANTO 0.00 5 11933 \N +479112 2025-11-10 22:42:53.45878+00 2025-11-10 22:42:53.458789+00 f t SUBTOTAL 0.00 1 11975 \N +479113 2025-11-10 22:42:53.460609+00 2025-11-10 22:42:53.460615+00 f t COSTO_SERVICIO 0.00 2 11975 \N +479114 2025-11-10 22:42:53.461544+00 2025-11-10 22:42:53.461549+00 f t DESCUENTO 0.00 3 11975 \N +479115 2025-11-10 22:42:53.462387+00 2025-11-10 22:42:53.462394+00 f t TOTAL 0.00 4 11975 \N +479116 2025-11-10 22:42:53.463296+00 2025-11-10 22:42:53.463301+00 f t ADELANTO 0.00 5 11975 \N +479317 2025-11-11 00:00:40.255767+00 2025-11-11 00:00:40.25578+00 f t SUBTOTAL 46000.00 1 11982 \N +479318 2025-11-11 00:00:40.258403+00 2025-11-11 00:00:40.258414+00 f t COSTO_SERVICIO 0.00 2 11982 \N +479319 2025-11-11 00:00:40.259653+00 2025-11-11 00:00:40.259663+00 f t DESCUENTO 0.00 3 11982 \N +479320 2025-11-11 00:00:40.260761+00 2025-11-11 00:00:40.260768+00 f t TOTAL 46000.00 4 11982 \N +479321 2025-11-11 00:00:40.26172+00 2025-11-11 00:00:40.261728+00 f t ADELANTO 11000.00 5 11982 \N +501557 2025-11-16 20:04:42.139121+00 2025-11-16 20:04:42.139151+00 f t SUBTOTAL 0.00 1 12511 \N +501558 2025-11-16 20:04:42.14055+00 2025-11-16 20:04:42.140556+00 f t COSTO_SERVICIO 0.00 2 12511 \N +501559 2025-11-16 20:04:42.141484+00 2025-11-16 20:04:42.141491+00 f t DESCUENTO 0.00 3 12511 \N +501560 2025-11-16 20:04:42.142397+00 2025-11-16 20:04:42.142401+00 f t TOTAL 0.00 4 12511 \N +501561 2025-11-16 20:04:42.143262+00 2025-11-16 20:04:42.143267+00 f t ADELANTO 0.00 5 12511 \N +479827 2025-11-11 03:39:45.519876+00 2025-11-11 03:39:45.519885+00 f t SUBTOTAL 46000.00 1 11994 \N +479828 2025-11-11 03:39:45.521617+00 2025-11-11 03:39:45.521622+00 f t COSTO_SERVICIO 0.00 2 11994 \N +479829 2025-11-11 03:39:45.522664+00 2025-11-11 03:39:45.522669+00 f t DESCUENTO 0.00 3 11994 \N +479830 2025-11-11 03:39:45.523864+00 2025-11-11 03:39:45.523869+00 f t TOTAL 46000.00 4 11994 \N +479831 2025-11-11 03:39:45.524821+00 2025-11-11 03:39:45.524825+00 f t ADELANTO 11000.00 5 11994 \N +491072 2025-11-13 19:27:45.907533+00 2025-11-13 19:27:45.907541+00 f t SUBTOTAL 78000.00 1 12261 \N +491073 2025-11-13 19:27:45.909419+00 2025-11-13 19:27:45.909425+00 f t COSTO_SERVICIO 0.00 2 12261 \N +491074 2025-11-13 19:27:45.910683+00 2025-11-13 19:27:45.910689+00 f t DESCUENTO 0.00 3 12261 \N +491075 2025-11-13 19:27:45.911777+00 2025-11-13 19:27:45.911782+00 f t TOTAL 78000.00 4 12261 \N +491076 2025-11-13 19:27:45.912702+00 2025-11-13 19:27:45.912707+00 f t ADELANTO 13000.00 5 12261 \N +480762 2025-11-11 13:34:11.740482+00 2025-11-11 13:34:11.740492+00 f t SUBTOTAL 46000.00 1 12015 \N +480763 2025-11-11 13:34:11.742508+00 2025-11-11 13:34:11.742519+00 f t COSTO_SERVICIO 0.00 2 12015 \N +480764 2025-11-11 13:34:11.744174+00 2025-11-11 13:34:11.744183+00 f t DESCUENTO 0.00 3 12015 \N +480765 2025-11-11 13:34:11.745531+00 2025-11-11 13:34:11.74554+00 f t TOTAL 46000.00 4 12015 \N +480766 2025-11-11 13:34:11.747012+00 2025-11-11 13:34:11.74702+00 f t ADELANTO 11000.00 5 12015 \N +477407 2025-11-10 17:36:34.371387+00 2025-11-10 17:36:34.371395+00 f t SUBTOTAL 0.00 1 11934 \N +477408 2025-11-10 17:36:34.373282+00 2025-11-10 17:36:34.373289+00 f t COSTO_SERVICIO 0.00 2 11934 \N +477409 2025-11-10 17:36:34.374462+00 2025-11-10 17:36:34.374468+00 f t DESCUENTO 0.00 3 11934 \N +477410 2025-11-10 17:36:34.375431+00 2025-11-10 17:36:34.375436+00 f t TOTAL 0.00 4 11934 \N +477411 2025-11-10 17:36:34.376317+00 2025-11-10 17:36:34.376322+00 f t ADELANTO 0.00 5 11934 \N +492097 2025-11-13 23:34:35.844584+00 2025-11-13 23:34:35.844593+00 f t SUBTOTAL 32500.00 1 12289 \N +492098 2025-11-13 23:34:35.846195+00 2025-11-13 23:34:35.846201+00 f t COSTO_SERVICIO 0.00 2 12289 \N +492099 2025-11-13 23:34:35.847265+00 2025-11-13 23:34:35.847271+00 f t DESCUENTO 0.00 3 12289 \N +492100 2025-11-13 23:34:35.848226+00 2025-11-13 23:34:35.84823+00 f t TOTAL 32500.00 4 12289 \N +492101 2025-11-13 23:34:35.849312+00 2025-11-13 23:34:35.849317+00 f t ADELANTO 32500.00 5 12289 \N +481857 2025-11-11 15:12:41.417173+00 2025-11-11 15:12:41.417185+00 f t SUBTOTAL 156000.00 1 12030 \N +481858 2025-11-11 15:12:41.419011+00 2025-11-11 15:12:41.41902+00 f t COSTO_SERVICIO 0.00 2 12030 \N +481859 2025-11-11 15:12:41.420524+00 2025-11-11 15:12:41.420531+00 f t DESCUENTO 9200.00 3 12030 \N +481860 2025-11-11 15:12:41.421704+00 2025-11-11 15:12:41.421711+00 f t TOTAL 146800.00 4 12030 \N +481861 2025-11-11 15:12:41.422903+00 2025-11-11 15:12:41.42291+00 f t ADELANTO 43000.00 5 12030 \N +482377 2025-11-11 19:04:19.066975+00 2025-11-11 19:04:19.066986+00 f t SUBTOTAL 46000.00 1 12044 \N +482378 2025-11-11 19:04:19.068844+00 2025-11-11 19:04:19.068851+00 f t COSTO_SERVICIO 0.00 2 12044 \N +482379 2025-11-11 19:04:19.070084+00 2025-11-11 19:04:19.07009+00 f t DESCUENTO 0.00 3 12044 \N +482380 2025-11-11 19:04:19.071087+00 2025-11-11 19:04:19.071093+00 f t TOTAL 46000.00 4 12044 \N +482381 2025-11-11 19:04:19.07198+00 2025-11-11 19:04:19.071985+00 f t ADELANTO 11000.00 5 12044 \N +504242 2025-11-17 14:39:25.070302+00 2025-11-17 14:39:25.07031+00 f t SUBTOTAL 78000.00 1 12556 \N +504243 2025-11-17 14:39:25.072403+00 2025-11-17 14:39:25.07241+00 f t COSTO_SERVICIO 0.00 2 12556 \N +504244 2025-11-17 14:39:25.07378+00 2025-11-17 14:39:25.073786+00 f t DESCUENTO 0.00 3 12556 \N +504245 2025-11-17 14:39:25.075009+00 2025-11-17 14:39:25.075017+00 f t TOTAL 78000.00 4 12556 \N +504246 2025-11-17 14:39:25.076271+00 2025-11-17 14:39:25.076278+00 f t ADELANTO 21500.00 5 12556 \N +504792 2025-11-17 16:53:47.285793+00 2025-11-17 16:53:47.2858+00 f t SUBTOTAL 55000.00 1 12571 \N +504793 2025-11-17 16:53:47.287758+00 2025-11-17 16:53:47.287764+00 f t COSTO_SERVICIO 0.00 2 12571 \N +504794 2025-11-17 16:53:47.288975+00 2025-11-17 16:53:47.288981+00 f t DESCUENTO 0.00 3 12571 \N +504795 2025-11-17 16:53:47.289985+00 2025-11-17 16:53:47.289991+00 f t TOTAL 55000.00 4 12571 \N +504796 2025-11-17 16:53:47.290988+00 2025-11-17 16:53:47.290994+00 f t ADELANTO 11000.00 5 12571 \N +511718 2025-11-18 21:35:01.086749+00 2025-11-18 21:35:01.086769+00 f t COSTO_SERVICIO 0.00 2 12738 \N +511719 2025-11-18 21:35:01.089311+00 2025-11-18 21:35:01.089323+00 f t DESCUENTO 0.00 3 12738 \N +511720 2025-11-18 21:35:01.091125+00 2025-11-18 21:35:01.091156+00 f t TOTAL 46000.00 4 12738 \N +511721 2025-11-18 21:35:01.093069+00 2025-11-18 21:35:01.093079+00 f t ADELANTO 11000.00 5 12738 \N +523631 2025-11-20 20:49:28.66418+00 2025-11-20 20:49:28.664186+00 f t ADELANTO 19000.00 5 13022 \N +489517 2025-11-13 10:59:00.984299+00 2025-11-13 10:59:00.984307+00 f t SUBTOTAL 0.00 1 12216 \N +489518 2025-11-13 10:59:00.986215+00 2025-11-13 10:59:00.986222+00 f t COSTO_SERVICIO 0.00 2 12216 \N +484127 2025-11-12 01:17:12.836422+00 2025-11-12 01:17:12.836432+00 f t SUBTOTAL 78000.00 1 12089 \N +484128 2025-11-12 01:17:12.838102+00 2025-11-12 01:17:12.838111+00 f t COSTO_SERVICIO 0.00 2 12089 \N +484129 2025-11-12 01:17:12.839571+00 2025-11-12 01:17:12.839578+00 f t DESCUENTO 0.00 3 12089 \N +484130 2025-11-12 01:17:12.840843+00 2025-11-12 01:17:12.840849+00 f t TOTAL 78000.00 4 12089 \N +484131 2025-11-12 01:17:12.842032+00 2025-11-12 01:17:12.84204+00 f t ADELANTO 21500.00 5 12089 \N +489519 2025-11-13 10:59:00.987375+00 2025-11-13 10:59:00.987382+00 f t DESCUENTO 0.00 3 12216 \N +489520 2025-11-13 10:59:00.988678+00 2025-11-13 10:59:00.988684+00 f t TOTAL 0.00 4 12216 \N +489521 2025-11-13 10:59:00.98966+00 2025-11-13 10:59:00.989666+00 f t ADELANTO 0.00 5 12216 \N +489732 2025-11-13 13:20:58.631387+00 2025-11-13 13:20:58.631394+00 f t SUBTOTAL 55000.00 1 12225 \N +489733 2025-11-13 13:20:58.633085+00 2025-11-13 13:20:58.633093+00 f t COSTO_SERVICIO 0.00 2 12225 \N +489734 2025-11-13 13:20:58.634211+00 2025-11-13 13:20:58.634218+00 f t DESCUENTO 0.00 3 12225 \N +489735 2025-11-13 13:20:58.635317+00 2025-11-13 13:20:58.635322+00 f t TOTAL 55000.00 4 12225 \N +489736 2025-11-13 13:20:58.636299+00 2025-11-13 13:20:58.636304+00 f t ADELANTO 11000.00 5 12225 \N +484142 2025-11-12 01:17:31.423435+00 2025-11-12 01:17:31.423442+00 f t SUBTOTAL 55000.00 1 12090 \N +484143 2025-11-12 01:17:31.424839+00 2025-11-12 01:17:31.424844+00 f t COSTO_SERVICIO 0.00 2 12090 \N +484144 2025-11-12 01:17:31.425862+00 2025-11-12 01:17:31.425869+00 f t DESCUENTO 0.00 3 12090 \N +484145 2025-11-12 01:17:31.426698+00 2025-11-12 01:17:31.426703+00 f t TOTAL 55000.00 4 12090 \N +484146 2025-11-12 01:17:31.427525+00 2025-11-12 01:17:31.42753+00 f t ADELANTO 11000.00 5 12090 \N +484152 2025-11-12 01:20:06.450888+00 2025-11-12 01:20:06.450902+00 f t SUBTOTAL 0.00 1 12091 \N +484153 2025-11-12 01:20:06.453005+00 2025-11-12 01:20:06.453016+00 f t COSTO_SERVICIO 0.00 2 12091 \N +484154 2025-11-12 01:20:06.454847+00 2025-11-12 01:20:06.454857+00 f t DESCUENTO 0.00 3 12091 \N +484155 2025-11-12 01:20:06.456668+00 2025-11-12 01:20:06.456677+00 f t TOTAL 0.00 4 12091 \N +484156 2025-11-12 01:20:06.458279+00 2025-11-12 01:20:06.458288+00 f t ADELANTO 0.00 5 12091 \N +491082 2025-11-13 19:33:53.538349+00 2025-11-13 19:33:53.538362+00 f t SUBTOTAL 0.00 1 12262 \N +491083 2025-11-13 19:33:53.54009+00 2025-11-13 19:33:53.540098+00 f t COSTO_SERVICIO 0.00 2 12262 \N +491084 2025-11-13 19:33:53.541446+00 2025-11-13 19:33:53.541452+00 f t DESCUENTO 0.00 3 12262 \N +491085 2025-11-13 19:33:53.543241+00 2025-11-13 19:33:53.543248+00 f t TOTAL 0.00 4 12262 \N +491086 2025-11-13 19:33:53.544513+00 2025-11-13 19:33:53.544519+00 f t ADELANTO 0.00 5 12262 \N +491222 2025-11-13 19:59:15.625584+00 2025-11-13 19:59:15.625592+00 f t SUBTOTAL 46000.00 1 12264 \N +491223 2025-11-13 19:59:15.627285+00 2025-11-13 19:59:15.627293+00 f t COSTO_SERVICIO 0.00 2 12264 \N +491224 2025-11-13 19:59:15.628519+00 2025-11-13 19:59:15.628526+00 f t DESCUENTO 0.00 3 12264 \N +491225 2025-11-13 19:59:15.629486+00 2025-11-13 19:59:15.629492+00 f t TOTAL 46000.00 4 12264 \N +491226 2025-11-13 19:59:15.630408+00 2025-11-13 19:59:15.630412+00 f t ADELANTO 11000.00 5 12264 \N +484227 2025-11-12 01:26:19.469349+00 2025-11-12 01:26:19.46936+00 f t SUBTOTAL 70000.00 1 12092 \N +484228 2025-11-12 01:26:19.471014+00 2025-11-12 01:26:19.471023+00 f t COSTO_SERVICIO 0.00 2 12092 \N +484229 2025-11-12 01:26:19.472396+00 2025-11-12 01:26:19.472405+00 f t DESCUENTO 0.00 3 12092 \N +484230 2025-11-12 01:26:19.473602+00 2025-11-12 01:26:19.473611+00 f t TOTAL 70000.00 4 12092 \N +484231 2025-11-12 01:26:19.474881+00 2025-11-12 01:26:19.474889+00 f t ADELANTO 19000.00 5 12092 \N +484277 2025-11-12 01:32:33.513002+00 2025-11-12 01:32:33.513008+00 f t SUBTOTAL 124000.00 1 12093 \N +484278 2025-11-12 01:32:33.514825+00 2025-11-12 01:32:33.514832+00 f t COSTO_SERVICIO 0.00 2 12093 \N +484279 2025-11-12 01:32:33.515958+00 2025-11-12 01:32:33.515964+00 f t DESCUENTO 9200.00 3 12093 \N +484280 2025-11-12 01:32:33.517146+00 2025-11-12 01:32:33.517152+00 f t TOTAL 114800.00 4 12093 \N +484281 2025-11-12 01:32:33.518232+00 2025-11-12 01:32:33.518237+00 f t ADELANTO 32500.00 5 12093 \N +493427 2025-11-14 01:51:39.698881+00 2025-11-14 01:51:39.69889+00 f t SUBTOTAL 0.00 1 12312 \N +493428 2025-11-14 01:51:39.701349+00 2025-11-14 01:51:39.701356+00 f t COSTO_SERVICIO 0.00 2 12312 \N +493429 2025-11-14 01:51:39.702514+00 2025-11-14 01:51:39.702519+00 f t DESCUENTO 0.00 3 12312 \N +493430 2025-11-14 01:51:39.703536+00 2025-11-14 01:51:39.703543+00 f t TOTAL 0.00 4 12312 \N +493431 2025-11-14 01:51:39.70461+00 2025-11-14 01:51:39.704617+00 f t ADELANTO 0.00 5 12312 \N +494772 2025-11-14 12:22:32.207595+00 2025-11-14 12:22:32.207602+00 f t SUBTOTAL 46000.00 1 12337 \N +494773 2025-11-14 12:22:32.209395+00 2025-11-14 12:22:32.209403+00 f t COSTO_SERVICIO 0.00 2 12337 \N +494774 2025-11-14 12:22:32.210462+00 2025-11-14 12:22:32.210466+00 f t DESCUENTO 0.00 3 12337 \N +494775 2025-11-14 12:22:32.211601+00 2025-11-14 12:22:32.21161+00 f t TOTAL 46000.00 4 12337 \N +494776 2025-11-14 12:22:32.212805+00 2025-11-14 12:22:32.212814+00 f t ADELANTO 11000.00 5 12337 \N +494892 2025-11-14 12:31:16.907892+00 2025-11-14 12:31:16.907904+00 f t SUBTOTAL 55000.00 1 12340 \N +494893 2025-11-14 12:31:16.910244+00 2025-11-14 12:31:16.910256+00 f t COSTO_SERVICIO 0.00 2 12340 \N +494894 2025-11-14 12:31:16.912161+00 2025-11-14 12:31:16.912172+00 f t DESCUENTO 0.00 3 12340 \N +494895 2025-11-14 12:31:16.913969+00 2025-11-14 12:31:16.91398+00 f t TOTAL 55000.00 4 12340 \N +494896 2025-11-14 12:31:16.915674+00 2025-11-14 12:31:16.915683+00 f t ADELANTO 11000.00 5 12340 \N +494992 2025-11-14 12:59:43.168294+00 2025-11-14 12:59:43.168302+00 f t SUBTOTAL 0.00 1 12343 \N +494993 2025-11-14 12:59:43.169756+00 2025-11-14 12:59:43.169768+00 f t COSTO_SERVICIO 0.00 2 12343 \N +494994 2025-11-14 12:59:43.170852+00 2025-11-14 12:59:43.170858+00 f t DESCUENTO 0.00 3 12343 \N +494995 2025-11-14 12:59:43.171868+00 2025-11-14 12:59:43.171874+00 f t TOTAL 0.00 4 12343 \N +494996 2025-11-14 12:59:43.172805+00 2025-11-14 12:59:43.17281+00 f t ADELANTO 0.00 5 12343 \N +484382 2025-11-12 01:46:06.89524+00 2025-11-12 01:46:06.895249+00 f t SUBTOTAL 46000.00 1 12095 \N +484383 2025-11-12 01:46:06.897081+00 2025-11-12 01:46:06.897088+00 f t COSTO_SERVICIO 0.00 2 12095 \N +484384 2025-11-12 01:46:06.898473+00 2025-11-12 01:46:06.89848+00 f t DESCUENTO 0.00 3 12095 \N +484385 2025-11-12 01:46:06.89982+00 2025-11-12 01:46:06.899827+00 f t TOTAL 46000.00 4 12095 \N +484386 2025-11-12 01:46:06.901237+00 2025-11-12 01:46:06.901246+00 f t ADELANTO 11000.00 5 12095 \N +495057 2025-11-14 13:43:45.999481+00 2025-11-14 13:43:45.999488+00 f t SUBTOTAL 13200.00 1 12346 \N +495058 2025-11-14 13:43:46.001485+00 2025-11-14 13:43:46.001492+00 f t COSTO_SERVICIO 0.00 2 12346 \N +495059 2025-11-14 13:43:46.002881+00 2025-11-14 13:43:46.002888+00 f t DESCUENTO 0.00 3 12346 \N +495060 2025-11-14 13:43:46.004095+00 2025-11-14 13:43:46.0041+00 f t TOTAL 13200.00 4 12346 \N +512762 2025-11-19 01:13:51.709752+00 2025-11-19 01:13:51.709762+00 f t SUBTOTAL 79000.00 1 12766 \N +512763 2025-11-19 01:13:51.711987+00 2025-11-19 01:13:51.711998+00 f t COSTO_SERVICIO 0.00 2 12766 \N +512764 2025-11-19 01:13:51.71385+00 2025-11-19 01:13:51.713859+00 f t DESCUENTO 0.00 3 12766 \N +512765 2025-11-19 01:13:51.715377+00 2025-11-19 01:13:51.715386+00 f t TOTAL 79000.00 4 12766 \N +512766 2025-11-19 01:13:51.716709+00 2025-11-19 01:13:51.716717+00 f t ADELANTO 17500.00 5 12766 \N +490782 2025-11-13 18:18:37.000042+00 2025-11-13 18:18:37.000049+00 f t SUBTOTAL 78000.00 1 11925 \N +490783 2025-11-13 18:18:37.001504+00 2025-11-13 18:18:37.001509+00 f t COSTO_SERVICIO 0.00 2 11925 \N +490784 2025-11-13 18:18:37.002474+00 2025-11-13 18:18:37.002479+00 f t DESCUENTO 0.00 3 11925 \N +490785 2025-11-13 18:18:37.003642+00 2025-11-13 18:18:37.003649+00 f t TOTAL 78000.00 4 11925 \N +490786 2025-11-13 18:18:37.005027+00 2025-11-13 18:18:37.005035+00 f t ADELANTO 21500.00 5 11925 \N +514757 2025-11-19 11:53:00.505561+00 2025-11-19 11:53:00.50557+00 f t SUBTOTAL 54000.00 1 12810 \N +514758 2025-11-19 11:53:00.507541+00 2025-11-19 11:53:00.507549+00 f t COSTO_SERVICIO 0.00 2 12810 \N +514759 2025-11-19 11:53:00.509099+00 2025-11-19 11:53:00.509105+00 f t DESCUENTO 0.00 3 12810 \N +514760 2025-11-19 11:53:00.510125+00 2025-11-19 11:53:00.51013+00 f t TOTAL 54000.00 4 12810 \N +514761 2025-11-19 11:53:00.511108+00 2025-11-19 11:53:00.511113+00 f t ADELANTO 13500.00 5 12810 \N +484492 2025-11-12 01:48:30.304674+00 2025-11-12 01:48:30.304685+00 f t SUBTOTAL 54000.00 1 12096 \N +484493 2025-11-12 01:48:30.306408+00 2025-11-12 01:48:30.306417+00 f t COSTO_SERVICIO 0.00 2 12096 \N +484494 2025-11-12 01:48:30.30755+00 2025-11-12 01:48:30.307558+00 f t DESCUENTO 0.00 3 12096 \N +484495 2025-11-12 01:48:30.308797+00 2025-11-12 01:48:30.308805+00 f t TOTAL 54000.00 4 12096 \N +484496 2025-11-12 01:48:30.309898+00 2025-11-12 01:48:30.309905+00 f t ADELANTO 13500.00 5 12096 \N +484507 2025-11-12 01:49:19.629307+00 2025-11-12 01:49:19.629315+00 f t SUBTOTAL 46000.00 1 12097 \N +484508 2025-11-12 01:49:19.630765+00 2025-11-12 01:49:19.63077+00 f t COSTO_SERVICIO 0.00 2 12097 \N +484509 2025-11-12 01:49:19.631785+00 2025-11-12 01:49:19.63179+00 f t DESCUENTO 0.00 3 12097 \N +484510 2025-11-12 01:49:19.632633+00 2025-11-12 01:49:19.63264+00 f t TOTAL 46000.00 4 12097 \N +484511 2025-11-12 01:49:19.633499+00 2025-11-12 01:49:19.633503+00 f t ADELANTO 11000.00 5 12097 \N +484517 2025-11-12 02:22:27.20101+00 2025-11-12 02:22:27.20102+00 f t SUBTOTAL 0.00 1 12098 \N +484518 2025-11-12 02:22:27.202366+00 2025-11-12 02:22:27.202373+00 f t COSTO_SERVICIO 0.00 2 12098 \N +484519 2025-11-12 02:22:27.203521+00 2025-11-12 02:22:27.203527+00 f t DESCUENTO 0.00 3 12098 \N +484520 2025-11-12 02:22:27.204438+00 2025-11-12 02:22:27.204444+00 f t TOTAL 0.00 4 12098 \N +484521 2025-11-12 02:22:27.205215+00 2025-11-12 02:22:27.20522+00 f t ADELANTO 0.00 5 12098 \N +516717 2025-11-19 15:46:03.48862+00 2025-11-19 15:46:03.488629+00 f t SUBTOTAL 0.00 1 12856 \N +516718 2025-11-19 15:46:03.490639+00 2025-11-19 15:46:03.490647+00 f t COSTO_SERVICIO 0.00 2 12856 \N +516719 2025-11-19 15:46:03.492604+00 2025-11-19 15:46:03.492612+00 f t DESCUENTO 0.00 3 12856 \N +516720 2025-11-19 15:46:03.494222+00 2025-11-19 15:46:03.494228+00 f t TOTAL 0.00 4 12856 \N +516721 2025-11-19 15:46:03.495593+00 2025-11-19 15:46:03.495599+00 f t ADELANTO 0.00 5 12856 \N +504802 2025-11-17 16:55:01.425624+00 2025-11-17 16:55:01.425639+00 f t SUBTOTAL 0.00 1 12576 \N +504803 2025-11-17 16:55:01.431569+00 2025-11-17 16:55:01.431583+00 f t COSTO_SERVICIO 0.00 2 12576 \N +484572 2025-11-12 02:39:26.053522+00 2025-11-12 02:39:26.05353+00 f t SUBTOTAL 46000.00 1 12099 \N +484573 2025-11-12 02:39:26.055614+00 2025-11-12 02:39:26.055623+00 f t COSTO_SERVICIO 0.00 2 12099 \N +484574 2025-11-12 02:39:26.057716+00 2025-11-12 02:39:26.057724+00 f t DESCUENTO 0.00 3 12099 \N +484575 2025-11-12 02:39:26.059337+00 2025-11-12 02:39:26.059346+00 f t TOTAL 46000.00 4 12099 \N +484576 2025-11-12 02:39:26.060666+00 2025-11-12 02:39:26.060673+00 f t ADELANTO 11000.00 5 12099 \N +504804 2025-11-17 16:55:01.43391+00 2025-11-17 16:55:01.433924+00 f t DESCUENTO 0.00 3 12576 \N +504805 2025-11-17 16:55:01.436205+00 2025-11-17 16:55:01.436217+00 f t TOTAL 0.00 4 12576 \N +504806 2025-11-17 16:55:01.438141+00 2025-11-17 16:55:01.438154+00 f t ADELANTO 0.00 5 12576 \N +517007 2025-11-19 16:48:23.974687+00 2025-11-19 16:48:23.974697+00 f t SUBTOTAL 30000.00 1 12864 \N +517008 2025-11-19 16:48:23.976618+00 2025-11-19 16:48:23.976626+00 f t COSTO_SERVICIO 0.00 2 12864 \N +517009 2025-11-19 16:48:23.977798+00 2025-11-19 16:48:23.977804+00 f t DESCUENTO 0.00 3 12864 \N +517010 2025-11-19 16:48:23.978696+00 2025-11-19 16:48:23.978701+00 f t TOTAL 30000.00 4 12864 \N +517011 2025-11-19 16:48:23.979755+00 2025-11-19 16:48:23.979761+00 f t ADELANTO 30000.00 5 12864 \N +505252 2025-11-17 18:28:30.096047+00 2025-11-17 18:28:30.096056+00 f t SUBTOTAL 55000.00 1 12590 \N +505253 2025-11-17 18:28:30.097731+00 2025-11-17 18:28:30.09774+00 f t COSTO_SERVICIO 0.00 2 12590 \N +505254 2025-11-17 18:28:30.098909+00 2025-11-17 18:28:30.098917+00 f t DESCUENTO 0.00 3 12590 \N +505255 2025-11-17 18:28:30.099991+00 2025-11-17 18:28:30.099997+00 f t TOTAL 55000.00 4 12590 \N +505256 2025-11-17 18:28:30.100981+00 2025-11-17 18:28:30.100986+00 f t ADELANTO 11000.00 5 12590 \N +484617 2025-11-12 02:42:04.970295+00 2025-11-12 02:42:04.970305+00 f t SUBTOTAL 54000.00 1 12100 \N +484618 2025-11-12 02:42:04.972291+00 2025-11-12 02:42:04.972299+00 f t COSTO_SERVICIO 0.00 2 12100 \N +484619 2025-11-12 02:42:04.973464+00 2025-11-12 02:42:04.973471+00 f t DESCUENTO 0.00 3 12100 \N +484620 2025-11-12 02:42:04.974667+00 2025-11-12 02:42:04.974672+00 f t TOTAL 54000.00 4 12100 \N +484621 2025-11-12 02:42:04.97578+00 2025-11-12 02:42:04.975785+00 f t ADELANTO 13500.00 5 12100 \N +506037 2025-11-17 20:41:33.877066+00 2025-11-17 20:41:33.877074+00 f t SUBTOTAL 70000.00 1 12609 \N +506038 2025-11-17 20:41:33.87883+00 2025-11-17 20:41:33.878837+00 f t COSTO_SERVICIO 0.00 2 12609 \N +506039 2025-11-17 20:41:33.880131+00 2025-11-17 20:41:33.880138+00 f t DESCUENTO 0.00 3 12609 \N +506040 2025-11-17 20:41:33.881329+00 2025-11-17 20:41:33.881335+00 f t TOTAL 70000.00 4 12609 \N +506041 2025-11-17 20:41:33.882351+00 2025-11-17 20:41:33.882356+00 f t ADELANTO 19000.00 5 12609 \N +506207 2025-11-17 21:13:44.819316+00 2025-11-17 21:13:44.819324+00 f t SUBTOTAL 46000.00 1 12612 \N +506208 2025-11-17 21:13:44.821137+00 2025-11-17 21:13:44.821144+00 f t COSTO_SERVICIO 0.00 2 12612 \N +494837 2025-11-14 12:28:39.324886+00 2025-11-14 12:28:39.324893+00 f t SUBTOTAL 46000.00 1 12339 \N +494838 2025-11-14 12:28:39.326483+00 2025-11-14 12:28:39.326489+00 f t COSTO_SERVICIO 0.00 2 12339 \N +494839 2025-11-14 12:28:39.327493+00 2025-11-14 12:28:39.327498+00 f t DESCUENTO 0.00 3 12339 \N +494840 2025-11-14 12:28:39.328508+00 2025-11-14 12:28:39.328513+00 f t TOTAL 46000.00 4 12339 \N +494841 2025-11-14 12:28:39.329482+00 2025-11-14 12:28:39.329487+00 f t ADELANTO 11000.00 5 12339 \N +506209 2025-11-17 21:13:44.822451+00 2025-11-17 21:13:44.822456+00 f t DESCUENTO 0.00 3 12612 \N +484677 2025-11-12 02:50:51.366269+00 2025-11-12 02:50:51.366278+00 f t SUBTOTAL 0.00 1 12101 \N +484678 2025-11-12 02:50:51.367874+00 2025-11-12 02:50:51.36788+00 f t COSTO_SERVICIO 0.00 2 12101 \N +484679 2025-11-12 02:50:51.36889+00 2025-11-12 02:50:51.368895+00 f t DESCUENTO 0.00 3 12101 \N +484680 2025-11-12 02:50:51.369807+00 2025-11-12 02:50:51.369812+00 f t TOTAL 0.00 4 12101 \N +484681 2025-11-12 02:50:51.370859+00 2025-11-12 02:50:51.370864+00 f t ADELANTO 0.00 5 12101 \N +506210 2025-11-17 21:13:44.823597+00 2025-11-17 21:13:44.823602+00 f t TOTAL 46000.00 4 12612 \N +506211 2025-11-17 21:13:44.824871+00 2025-11-17 21:13:44.824877+00 f t ADELANTO 11000.00 5 12612 \N +489077 2025-11-13 01:03:24.555734+00 2025-11-13 01:03:24.555746+00 f t SUBTOTAL 0.00 1 12200 \N +489078 2025-11-13 01:03:24.558476+00 2025-11-13 01:03:24.558488+00 f t COSTO_SERVICIO 0.00 2 12200 \N +489079 2025-11-13 01:03:24.560178+00 2025-11-13 01:03:24.560188+00 f t DESCUENTO 0.00 3 12200 \N +489080 2025-11-13 01:03:24.561843+00 2025-11-13 01:03:24.561852+00 f t TOTAL 0.00 4 12200 \N +489081 2025-11-13 01:03:24.563197+00 2025-11-13 01:03:24.563204+00 f t ADELANTO 0.00 5 12200 \N +500667 2025-11-16 13:56:33.778572+00 2025-11-16 13:56:33.77858+00 f t SUBTOTAL 54000.00 1 12491 \N +500668 2025-11-16 13:56:33.780472+00 2025-11-16 13:56:33.780478+00 f t COSTO_SERVICIO 0.00 2 12491 \N +500669 2025-11-16 13:56:33.781662+00 2025-11-16 13:56:33.781667+00 f t DESCUENTO 0.00 3 12491 \N +500670 2025-11-16 13:56:33.782718+00 2025-11-16 13:56:33.782724+00 f t TOTAL 54000.00 4 12491 \N +500671 2025-11-16 13:56:33.783799+00 2025-11-16 13:56:33.783807+00 f t ADELANTO 13500.00 5 12491 \N +484712 2025-11-12 02:57:23.12766+00 2025-11-12 02:57:23.127669+00 f t SUBTOTAL 0.00 1 12103 \N +484713 2025-11-12 02:57:23.128896+00 2025-11-12 02:57:23.128903+00 f t COSTO_SERVICIO 0.00 2 12103 \N +484714 2025-11-12 02:57:23.129955+00 2025-11-12 02:57:23.12996+00 f t DESCUENTO 0.00 3 12103 \N +484715 2025-11-12 02:57:23.131777+00 2025-11-12 02:57:23.131782+00 f t TOTAL 0.00 4 12103 \N +484716 2025-11-12 02:57:23.13277+00 2025-11-12 02:57:23.132775+00 f t ADELANTO 0.00 5 12103 \N +484717 2025-11-12 02:57:28.488521+00 2025-11-12 02:57:28.488532+00 f t SUBTOTAL 0.00 1 12102 \N +484718 2025-11-12 02:57:28.490739+00 2025-11-12 02:57:28.49075+00 f t COSTO_SERVICIO 0.00 2 12102 \N +484719 2025-11-12 02:57:28.492018+00 2025-11-12 02:57:28.492024+00 f t DESCUENTO 0.00 3 12102 \N +484720 2025-11-12 02:57:28.493024+00 2025-11-12 02:57:28.493029+00 f t TOTAL 0.00 4 12102 \N +484721 2025-11-12 02:57:28.49449+00 2025-11-12 02:57:28.494496+00 f t ADELANTO 0.00 5 12102 \N +489942 2025-11-13 14:33:20.092881+00 2025-11-13 14:33:20.092889+00 f t SUBTOTAL 46000.00 1 12233 \N +489943 2025-11-13 14:33:20.09408+00 2025-11-13 14:33:20.094088+00 f t COSTO_SERVICIO 0.00 2 12233 \N +489944 2025-11-13 14:33:20.094822+00 2025-11-13 14:33:20.094827+00 f t DESCUENTO 0.00 3 12233 \N +489945 2025-11-13 14:33:20.095521+00 2025-11-13 14:33:20.095526+00 f t TOTAL 46000.00 4 12233 \N +489946 2025-11-13 14:33:20.096166+00 2025-11-13 14:33:20.09617+00 f t ADELANTO 11000.00 5 12233 \N +484727 2025-11-12 02:57:45.2033+00 2025-11-12 02:57:45.203312+00 f t SUBTOTAL 0.00 1 12104 \N +484728 2025-11-12 02:57:45.220417+00 2025-11-12 02:57:45.220429+00 f t COSTO_SERVICIO 0.00 2 12104 \N +484729 2025-11-12 02:57:45.222346+00 2025-11-12 02:57:45.222357+00 f t DESCUENTO 0.00 3 12104 \N +484730 2025-11-12 02:57:45.224295+00 2025-11-12 02:57:45.224305+00 f t TOTAL 0.00 4 12104 \N +484731 2025-11-12 02:57:45.225768+00 2025-11-12 02:57:45.225777+00 f t ADELANTO 0.00 5 12104 \N +490787 2025-11-13 18:18:38.345383+00 2025-11-13 18:18:38.34539+00 f t SUBTOTAL 54000.00 1 12255 \N +490788 2025-11-13 18:18:38.346977+00 2025-11-13 18:18:38.346983+00 f t COSTO_SERVICIO 0.00 2 12255 \N +490789 2025-11-13 18:18:38.34822+00 2025-11-13 18:18:38.348228+00 f t DESCUENTO 0.00 3 12255 \N +490790 2025-11-13 18:18:38.349577+00 2025-11-13 18:18:38.349585+00 f t TOTAL 54000.00 4 12255 \N +490791 2025-11-13 18:18:38.350588+00 2025-11-13 18:18:38.350593+00 f t ADELANTO 13500.00 5 12255 \N +484767 2025-11-12 03:08:29.958034+00 2025-11-12 03:08:29.958043+00 f t SUBTOTAL 54000.00 1 12105 \N +484768 2025-11-12 03:08:29.959927+00 2025-11-12 03:08:29.959934+00 f t COSTO_SERVICIO 0.00 2 12105 \N +484769 2025-11-12 03:08:29.96113+00 2025-11-12 03:08:29.961136+00 f t DESCUENTO 0.00 3 12105 \N +484770 2025-11-12 03:08:29.962611+00 2025-11-12 03:08:29.962617+00 f t TOTAL 54000.00 4 12105 \N +484771 2025-11-12 03:08:29.963704+00 2025-11-12 03:08:29.96371+00 f t ADELANTO 13500.00 5 12105 \N +484797 2025-11-12 03:36:08.170362+00 2025-11-12 03:36:08.170371+00 f t SUBTOTAL 46000.00 1 12106 \N +484798 2025-11-12 03:36:08.172663+00 2025-11-12 03:36:08.17267+00 f t COSTO_SERVICIO 0.00 2 12106 \N +484799 2025-11-12 03:36:08.173914+00 2025-11-12 03:36:08.17392+00 f t DESCUENTO 0.00 3 12106 \N +484800 2025-11-12 03:36:08.175273+00 2025-11-12 03:36:08.175282+00 f t TOTAL 46000.00 4 12106 \N +484801 2025-11-12 03:36:08.176661+00 2025-11-12 03:36:08.176668+00 f t ADELANTO 11000.00 5 12106 \N +491967 2025-11-13 23:19:19.993953+00 2025-11-13 23:19:19.993961+00 f t SUBTOTAL 46000.00 1 12285 \N +491968 2025-11-13 23:19:19.995673+00 2025-11-13 23:19:19.99568+00 f t COSTO_SERVICIO 0.00 2 12285 \N +491969 2025-11-13 23:19:19.996927+00 2025-11-13 23:19:19.996933+00 f t DESCUENTO 0.00 3 12285 \N +491970 2025-11-13 23:19:19.998256+00 2025-11-13 23:19:19.998262+00 f t TOTAL 46000.00 4 12285 \N +491971 2025-11-13 23:19:19.999364+00 2025-11-13 23:19:19.99937+00 f t ADELANTO 11000.00 5 12285 \N +492942 2025-11-14 01:22:22.810011+00 2025-11-14 01:22:22.810018+00 f t SUBTOTAL 46000.00 1 12305 \N +492943 2025-11-14 01:22:22.811845+00 2025-11-14 01:22:22.81185+00 f t COSTO_SERVICIO 0.00 2 12305 \N +492944 2025-11-14 01:22:22.81289+00 2025-11-14 01:22:22.812895+00 f t DESCUENTO 0.00 3 12305 \N +492945 2025-11-14 01:22:22.813889+00 2025-11-14 01:22:22.813893+00 f t TOTAL 46000.00 4 12305 \N +492946 2025-11-14 01:22:22.814872+00 2025-11-14 01:22:22.814877+00 f t ADELANTO 11000.00 5 12305 \N +484867 2025-11-12 04:15:00.289059+00 2025-11-12 04:15:00.289069+00 f t SUBTOTAL 0.00 1 12107 \N +484868 2025-11-12 04:15:00.290739+00 2025-11-12 04:15:00.290746+00 f t COSTO_SERVICIO 0.00 2 12107 \N +484869 2025-11-12 04:15:00.29191+00 2025-11-12 04:15:00.291916+00 f t DESCUENTO 0.00 3 12107 \N +484870 2025-11-12 04:15:00.292977+00 2025-11-12 04:15:00.292984+00 f t TOTAL 0.00 4 12107 \N +484871 2025-11-12 04:15:00.294027+00 2025-11-12 04:15:00.294033+00 f t ADELANTO 0.00 5 12107 \N +484902 2025-11-12 08:57:03.174965+00 2025-11-12 08:57:03.174979+00 f t SUBTOTAL 0.00 1 12108 \N +484903 2025-11-12 08:57:03.17744+00 2025-11-12 08:57:03.177452+00 f t COSTO_SERVICIO 0.00 2 12108 \N +484904 2025-11-12 08:57:03.179472+00 2025-11-12 08:57:03.179483+00 f t DESCUENTO 0.00 3 12108 \N +484905 2025-11-12 08:57:03.181056+00 2025-11-12 08:57:03.181063+00 f t TOTAL 0.00 4 12108 \N +484906 2025-11-12 08:57:03.182656+00 2025-11-12 08:57:03.182669+00 f t ADELANTO 0.00 5 12108 \N +484932 2025-11-12 10:36:42.367119+00 2025-11-12 10:36:42.367126+00 f t SUBTOTAL 46000.00 1 12109 \N +484933 2025-11-12 10:36:42.368818+00 2025-11-12 10:36:42.368825+00 f t COSTO_SERVICIO 0.00 2 12109 \N +484934 2025-11-12 10:36:42.369975+00 2025-11-12 10:36:42.369981+00 f t DESCUENTO 0.00 3 12109 \N +484935 2025-11-12 10:36:42.371077+00 2025-11-12 10:36:42.371084+00 f t TOTAL 46000.00 4 12109 \N +484936 2025-11-12 10:36:42.372072+00 2025-11-12 10:36:42.37208+00 f t ADELANTO 11000.00 5 12109 \N +484967 2025-11-12 11:17:02.211586+00 2025-11-12 11:17:02.211598+00 f t SUBTOTAL 55000.00 1 12110 \N +484968 2025-11-12 11:17:02.214464+00 2025-11-12 11:17:02.214477+00 f t COSTO_SERVICIO 0.00 2 12110 \N +484969 2025-11-12 11:17:02.216701+00 2025-11-12 11:17:02.216714+00 f t DESCUENTO 0.00 3 12110 \N +484970 2025-11-12 11:17:02.218948+00 2025-11-12 11:17:02.218961+00 f t TOTAL 55000.00 4 12110 \N +484971 2025-11-12 11:17:02.221199+00 2025-11-12 11:17:02.221211+00 f t ADELANTO 11000.00 5 12110 \N +495032 2025-11-14 13:15:57.820729+00 2025-11-14 13:15:57.820741+00 f t SUBTOTAL 55000.00 1 12344 \N +495033 2025-11-14 13:15:57.8225+00 2025-11-14 13:15:57.822508+00 f t COSTO_SERVICIO 0.00 2 12344 \N +488822 2025-11-13 00:52:48.029319+00 2025-11-13 00:52:48.029326+00 f t SUBTOTAL 112000.00 1 12199 \N +488823 2025-11-13 00:52:48.031106+00 2025-11-13 00:52:48.031112+00 f t COSTO_SERVICIO 0.00 2 12199 \N +488824 2025-11-13 00:52:48.032363+00 2025-11-13 00:52:48.032369+00 f t DESCUENTO 0.00 3 12199 \N +488825 2025-11-13 00:52:48.033495+00 2025-11-13 00:52:48.0335+00 f t TOTAL 112000.00 4 12199 \N +488826 2025-11-13 00:52:48.034474+00 2025-11-13 00:52:48.03448+00 f t ADELANTO 55500.00 5 12199 \N +523637 2025-11-20 20:55:16.478624+00 2025-11-20 20:55:16.478633+00 f t SUBTOTAL 0.00 1 13024 \N +523638 2025-11-20 20:55:16.480101+00 2025-11-20 20:55:16.480109+00 f t COSTO_SERVICIO 0.00 2 13024 \N +523639 2025-11-20 20:55:16.481167+00 2025-11-20 20:55:16.481172+00 f t DESCUENTO 0.00 3 13024 \N +484992 2025-11-12 11:34:40.682113+00 2025-11-12 11:34:40.682125+00 f t SUBTOTAL 0.00 1 12111 \N +484993 2025-11-12 11:34:40.684267+00 2025-11-12 11:34:40.684275+00 f t COSTO_SERVICIO 0.00 2 12111 \N +484994 2025-11-12 11:34:40.685339+00 2025-11-12 11:34:40.685345+00 f t DESCUENTO 0.00 3 12111 \N +484995 2025-11-12 11:34:40.686686+00 2025-11-12 11:34:40.686691+00 f t TOTAL 0.00 4 12111 \N +484996 2025-11-12 11:34:40.687753+00 2025-11-12 11:34:40.687758+00 f t ADELANTO 0.00 5 12111 \N +485002 2025-11-12 11:41:13.962672+00 2025-11-12 11:41:13.962684+00 f t SUBTOTAL 0.00 1 12112 \N +485003 2025-11-12 11:41:13.964187+00 2025-11-12 11:41:13.964194+00 f t COSTO_SERVICIO 0.00 2 12112 \N +485004 2025-11-12 11:41:13.965385+00 2025-11-12 11:41:13.96539+00 f t DESCUENTO 0.00 3 12112 \N +485005 2025-11-12 11:41:13.96663+00 2025-11-12 11:41:13.96664+00 f t TOTAL 0.00 4 12112 \N +485006 2025-11-12 11:41:13.968016+00 2025-11-12 11:41:13.968022+00 f t ADELANTO 0.00 5 12112 \N +485012 2025-11-12 11:59:22.34882+00 2025-11-12 11:59:22.34883+00 f t SUBTOTAL 0.00 1 12113 \N +485013 2025-11-12 11:59:22.350262+00 2025-11-12 11:59:22.35027+00 f t COSTO_SERVICIO 0.00 2 12113 \N +485014 2025-11-12 11:59:22.351369+00 2025-11-12 11:59:22.351375+00 f t DESCUENTO 0.00 3 12113 \N +485015 2025-11-12 11:59:22.352547+00 2025-11-12 11:59:22.352557+00 f t TOTAL 0.00 4 12113 \N +485016 2025-11-12 11:59:22.353913+00 2025-11-12 11:59:22.353921+00 f t ADELANTO 0.00 5 12113 \N +490112 2025-11-13 14:38:18.20422+00 2025-11-13 14:38:18.204228+00 f t SUBTOTAL 100000.00 1 12234 \N +490113 2025-11-13 14:38:18.206165+00 2025-11-13 14:38:18.20617+00 f t COSTO_SERVICIO 0.00 2 12234 \N +490114 2025-11-13 14:38:18.207491+00 2025-11-13 14:38:18.207498+00 f t DESCUENTO 9200.00 3 12234 \N +490115 2025-11-13 14:38:18.208615+00 2025-11-13 14:38:18.20862+00 f t TOTAL 90800.00 4 12234 \N +490116 2025-11-13 14:38:18.2097+00 2025-11-13 14:38:18.209704+00 f t ADELANTO 24500.00 5 12234 \N +490457 2025-11-13 16:18:56.33089+00 2025-11-13 16:18:56.330899+00 f t SUBTOTAL 70000.00 1 12242 \N +490458 2025-11-13 16:18:56.33262+00 2025-11-13 16:18:56.332627+00 f t COSTO_SERVICIO 0.00 2 12242 \N +490459 2025-11-13 16:18:56.333647+00 2025-11-13 16:18:56.333652+00 f t DESCUENTO 0.00 3 12242 \N +490460 2025-11-13 16:18:56.334538+00 2025-11-13 16:18:56.334545+00 f t TOTAL 70000.00 4 12242 \N +485042 2025-11-12 12:22:42.63868+00 2025-11-12 12:22:42.638687+00 f t SUBTOTAL 70000.00 1 12114 \N +485043 2025-11-12 12:22:42.641895+00 2025-11-12 12:22:42.641902+00 f t COSTO_SERVICIO 0.00 2 12114 \N +485044 2025-11-12 12:22:42.643475+00 2025-11-12 12:22:42.643485+00 f t DESCUENTO 0.00 3 12114 \N +485045 2025-11-12 12:22:42.644958+00 2025-11-12 12:22:42.644965+00 f t TOTAL 70000.00 4 12114 \N +485046 2025-11-12 12:22:42.646087+00 2025-11-12 12:22:42.646092+00 f t ADELANTO 19000.00 5 12114 \N +490461 2025-11-13 16:18:56.335555+00 2025-11-13 16:18:56.33556+00 f t ADELANTO 16000.00 5 12242 \N +485052 2025-11-12 12:27:59.716074+00 2025-11-12 12:27:59.716081+00 f t SUBTOTAL 55000.00 1 12088 \N +485053 2025-11-12 12:27:59.720721+00 2025-11-12 12:27:59.72073+00 f t COSTO_SERVICIO 0.00 2 12088 \N +485054 2025-11-12 12:27:59.729988+00 2025-11-12 12:27:59.729998+00 f t DESCUENTO 0.00 3 12088 \N +485055 2025-11-12 12:27:59.734135+00 2025-11-12 12:27:59.734143+00 f t TOTAL 55000.00 4 12088 \N +485056 2025-11-12 12:27:59.735959+00 2025-11-12 12:27:59.735965+00 f t ADELANTO 11000.00 5 12088 \N +491397 2025-11-13 21:40:09.10884+00 2025-11-13 21:40:09.108849+00 f t SUBTOTAL 54000.00 1 12270 \N +491398 2025-11-13 21:40:09.11124+00 2025-11-13 21:40:09.111249+00 f t COSTO_SERVICIO 0.00 2 12270 \N +491399 2025-11-13 21:40:09.112823+00 2025-11-13 21:40:09.11283+00 f t DESCUENTO 0.00 3 12270 \N +491400 2025-11-13 21:40:09.114286+00 2025-11-13 21:40:09.114295+00 f t TOTAL 54000.00 4 12270 \N +491401 2025-11-13 21:40:09.115569+00 2025-11-13 21:40:09.115576+00 f t ADELANTO 13500.00 5 12270 \N +491977 2025-11-13 23:30:49.012899+00 2025-11-13 23:30:49.012908+00 f t SUBTOTAL 0.00 1 12286 \N +491978 2025-11-13 23:30:49.014568+00 2025-11-13 23:30:49.014576+00 f t COSTO_SERVICIO 0.00 2 12286 \N +491979 2025-11-13 23:30:49.015886+00 2025-11-13 23:30:49.015892+00 f t DESCUENTO 0.00 3 12286 \N +491980 2025-11-13 23:30:49.016914+00 2025-11-13 23:30:49.016919+00 f t TOTAL 0.00 4 12286 \N +491981 2025-11-13 23:30:49.01809+00 2025-11-13 23:30:49.018098+00 f t ADELANTO 0.00 5 12286 \N +485127 2025-11-12 12:37:32.160014+00 2025-11-12 12:37:32.160022+00 f t SUBTOTAL 46000.00 1 12115 \N +485128 2025-11-12 12:37:32.161755+00 2025-11-12 12:37:32.161761+00 f t COSTO_SERVICIO 0.00 2 12115 \N +485129 2025-11-12 12:37:32.163718+00 2025-11-12 12:37:32.163723+00 f t DESCUENTO 0.00 3 12115 \N +485130 2025-11-12 12:37:32.164989+00 2025-11-12 12:37:32.164995+00 f t TOTAL 46000.00 4 12115 \N +485131 2025-11-12 12:37:32.166223+00 2025-11-12 12:37:32.166229+00 f t ADELANTO 11000.00 5 12115 \N +485142 2025-11-12 12:42:47.420177+00 2025-11-12 12:42:47.420184+00 f t SUBTOTAL 55000.00 1 12116 \N +485143 2025-11-12 12:42:47.421848+00 2025-11-12 12:42:47.421854+00 f t COSTO_SERVICIO 0.00 2 12116 \N +485144 2025-11-12 12:42:47.422925+00 2025-11-12 12:42:47.42293+00 f t DESCUENTO 0.00 3 12116 \N +485145 2025-11-12 12:42:47.423902+00 2025-11-12 12:42:47.423907+00 f t TOTAL 55000.00 4 12116 \N +485146 2025-11-12 12:42:47.425023+00 2025-11-12 12:42:47.42503+00 f t ADELANTO 11000.00 5 12116 \N +492952 2025-11-14 01:26:13.626211+00 2025-11-14 01:26:13.626223+00 f t SUBTOTAL 0.00 1 12306 \N +485172 2025-11-12 12:45:23.854131+00 2025-11-12 12:45:23.854138+00 f t SUBTOTAL 110000.00 1 12117 \N +485173 2025-11-12 12:45:23.85621+00 2025-11-12 12:45:23.856217+00 f t COSTO_SERVICIO 0.00 2 12117 \N +485174 2025-11-12 12:45:23.857728+00 2025-11-12 12:45:23.857735+00 f t DESCUENTO 0.00 3 12117 \N +485175 2025-11-12 12:45:23.859059+00 2025-11-12 12:45:23.859067+00 f t TOTAL 110000.00 4 12117 \N +485176 2025-11-12 12:45:23.860386+00 2025-11-12 12:45:23.860392+00 f t ADELANTO 10000.00 5 12117 \N +485212 2025-11-12 12:48:15.419036+00 2025-11-12 12:48:15.419042+00 f t SUBTOTAL 70000.00 1 12118 \N +485213 2025-11-12 12:48:15.421944+00 2025-11-12 12:48:15.421951+00 f t COSTO_SERVICIO 0.00 2 12118 \N +485214 2025-11-12 12:48:15.423441+00 2025-11-12 12:48:15.423451+00 f t DESCUENTO 0.00 3 12118 \N +485215 2025-11-12 12:48:15.424627+00 2025-11-12 12:48:15.424633+00 f t TOTAL 70000.00 4 12118 \N +485216 2025-11-12 12:48:15.425891+00 2025-11-12 12:48:15.425896+00 f t ADELANTO 19000.00 5 12118 \N +485242 2025-11-12 12:54:44.254893+00 2025-11-12 12:54:44.254903+00 f t SUBTOTAL 0.00 1 12119 \N +485243 2025-11-12 12:54:44.25643+00 2025-11-12 12:54:44.25644+00 f t COSTO_SERVICIO 0.00 2 12119 \N +485244 2025-11-12 12:54:44.257708+00 2025-11-12 12:54:44.257715+00 f t DESCUENTO 0.00 3 12119 \N +485245 2025-11-12 12:54:44.258825+00 2025-11-12 12:54:44.258831+00 f t TOTAL 0.00 4 12119 \N +485246 2025-11-12 12:54:44.259908+00 2025-11-12 12:54:44.259913+00 f t ADELANTO 0.00 5 12119 \N +523640 2025-11-20 20:55:16.482431+00 2025-11-20 20:55:16.482436+00 f t TOTAL 0.00 4 13024 \N +523641 2025-11-20 20:55:16.483742+00 2025-11-20 20:55:16.483751+00 f t ADELANTO 0.00 5 13024 \N +485272 2025-11-12 12:55:07.922708+00 2025-11-12 12:55:07.922716+00 f t SUBTOTAL 46000.00 1 12120 \N +485273 2025-11-12 12:55:07.924407+00 2025-11-12 12:55:07.924414+00 f t COSTO_SERVICIO 0.00 2 12120 \N +485274 2025-11-12 12:55:07.925896+00 2025-11-12 12:55:07.925904+00 f t DESCUENTO 0.00 3 12120 \N +485275 2025-11-12 12:55:07.927269+00 2025-11-12 12:55:07.927276+00 f t TOTAL 46000.00 4 12120 \N +485276 2025-11-12 12:55:07.92866+00 2025-11-12 12:55:07.928666+00 f t ADELANTO 11000.00 5 12120 \N +548652 2025-11-25 21:21:41.572162+00 2025-11-25 21:21:41.57217+00 f t SUBTOTAL 0.00 1 13604 \N +548653 2025-11-25 21:21:41.573465+00 2025-11-25 21:21:41.57347+00 f t COSTO_SERVICIO 0.00 2 13604 \N +485302 2025-11-12 13:16:12.634338+00 2025-11-12 13:16:12.634345+00 f t SUBTOTAL 0.00 1 12121 \N +485303 2025-11-12 13:16:12.635641+00 2025-11-12 13:16:12.635649+00 f t COSTO_SERVICIO 0.00 2 12121 \N +485304 2025-11-12 13:16:12.636736+00 2025-11-12 13:16:12.636743+00 f t DESCUENTO 0.00 3 12121 \N +485305 2025-11-12 13:16:12.637887+00 2025-11-12 13:16:12.637893+00 f t TOTAL 0.00 4 12121 \N +485306 2025-11-12 13:16:12.638793+00 2025-11-12 13:16:12.638801+00 f t ADELANTO 0.00 5 12121 \N +485312 2025-11-12 13:16:12.872202+00 2025-11-12 13:16:12.872211+00 f t SUBTOTAL 0.00 1 12122 \N +485313 2025-11-12 13:16:12.873726+00 2025-11-12 13:16:12.873735+00 f t COSTO_SERVICIO 0.00 2 12122 \N +485314 2025-11-12 13:16:12.875251+00 2025-11-12 13:16:12.875257+00 f t DESCUENTO 0.00 3 12122 \N +485315 2025-11-12 13:16:12.876293+00 2025-11-12 13:16:12.876298+00 f t TOTAL 0.00 4 12122 \N +485316 2025-11-12 13:16:12.877249+00 2025-11-12 13:16:12.877255+00 f t ADELANTO 0.00 5 12122 \N +490462 2025-11-13 16:19:28.934174+00 2025-11-13 16:19:28.934182+00 f t SUBTOTAL 46000.00 1 12243 \N +490463 2025-11-13 16:19:28.936221+00 2025-11-13 16:19:28.93623+00 f t COSTO_SERVICIO 0.00 2 12243 \N +490464 2025-11-13 16:19:28.937424+00 2025-11-13 16:19:28.93743+00 f t DESCUENTO 0.00 3 12243 \N +490465 2025-11-13 16:19:28.938384+00 2025-11-13 16:19:28.938391+00 f t TOTAL 46000.00 4 12243 \N +490466 2025-11-13 16:19:28.939396+00 2025-11-13 16:19:28.939402+00 f t ADELANTO 11000.00 5 12243 \N +502367 2025-11-17 03:05:37.276403+00 2025-11-17 03:05:37.276415+00 f t SUBTOTAL 0.00 1 12528 \N +502368 2025-11-17 03:05:37.278629+00 2025-11-17 03:05:37.278639+00 f t COSTO_SERVICIO 0.00 2 12528 \N +502369 2025-11-17 03:05:37.280009+00 2025-11-17 03:05:37.280015+00 f t DESCUENTO 0.00 3 12528 \N +490957 2025-11-13 18:44:02.68381+00 2025-11-13 18:44:02.683823+00 f t SUBTOTAL 55000.00 1 12258 \N +490958 2025-11-13 18:44:02.686076+00 2025-11-13 18:44:02.686087+00 f t COSTO_SERVICIO 0.00 2 12258 \N +490959 2025-11-13 18:44:02.688666+00 2025-11-13 18:44:02.688676+00 f t DESCUENTO 0.00 3 12258 \N +490960 2025-11-13 18:44:02.690383+00 2025-11-13 18:44:02.690394+00 f t TOTAL 55000.00 4 12258 \N +490961 2025-11-13 18:44:02.692108+00 2025-11-13 18:44:02.692118+00 f t ADELANTO 11000.00 5 12258 \N +502370 2025-11-17 03:05:37.281148+00 2025-11-17 03:05:37.281156+00 f t TOTAL 0.00 4 12528 \N +502371 2025-11-17 03:05:37.282471+00 2025-11-17 03:05:37.282479+00 f t ADELANTO 0.00 5 12528 \N +491987 2025-11-13 23:31:20.933949+00 2025-11-13 23:31:20.933961+00 f t SUBTOTAL 0.00 1 12287 \N +491988 2025-11-13 23:31:20.935567+00 2025-11-13 23:31:20.935576+00 f t COSTO_SERVICIO 0.00 2 12287 \N +491989 2025-11-13 23:31:20.937317+00 2025-11-13 23:31:20.937327+00 f t DESCUENTO 0.00 3 12287 \N +491990 2025-11-13 23:31:20.938891+00 2025-11-13 23:31:20.9389+00 f t TOTAL 0.00 4 12287 \N +491991 2025-11-13 23:31:20.94034+00 2025-11-13 23:31:20.940349+00 f t ADELANTO 0.00 5 12287 \N +485402 2025-11-12 13:26:34.855682+00 2025-11-12 13:26:34.855689+00 f t SUBTOTAL 156000.00 1 12123 \N +485403 2025-11-12 13:26:34.856804+00 2025-11-12 13:26:34.85681+00 f t COSTO_SERVICIO 0.00 2 12123 \N +485404 2025-11-12 13:26:34.857631+00 2025-11-12 13:26:34.857637+00 f t DESCUENTO 9200.00 3 12123 \N +485405 2025-11-12 13:26:34.858321+00 2025-11-12 13:26:34.858326+00 f t TOTAL 146800.00 4 12123 \N +485406 2025-11-12 13:26:34.858874+00 2025-11-12 13:26:34.85888+00 f t ADELANTO 43000.00 5 12123 \N +485412 2025-11-12 13:32:32.562022+00 2025-11-12 13:32:32.562033+00 f t SUBTOTAL 55000.00 1 12094 \N +485413 2025-11-12 13:32:32.563821+00 2025-11-12 13:32:32.563832+00 f t COSTO_SERVICIO 0.00 2 12094 \N +485414 2025-11-12 13:32:32.565335+00 2025-11-12 13:32:32.565345+00 f t DESCUENTO 0.00 3 12094 \N +485415 2025-11-12 13:32:32.567846+00 2025-11-12 13:32:32.567856+00 f t TOTAL 55000.00 4 12094 \N +485416 2025-11-12 13:32:32.569462+00 2025-11-12 13:32:32.569471+00 f t ADELANTO 11000.00 5 12094 \N +492672 2025-11-14 00:50:37.734478+00 2025-11-14 00:50:37.734486+00 f t SUBTOTAL 0.00 1 12298 \N +492673 2025-11-14 00:50:37.737243+00 2025-11-14 00:50:37.737251+00 f t COSTO_SERVICIO 0.00 2 12298 \N +492674 2025-11-14 00:50:37.738822+00 2025-11-14 00:50:37.738829+00 f t DESCUENTO 0.00 3 12298 \N +492675 2025-11-14 00:50:37.740116+00 2025-11-14 00:50:37.740121+00 f t TOTAL 0.00 4 12298 \N +492676 2025-11-14 00:50:37.741368+00 2025-11-14 00:50:37.741373+00 f t ADELANTO 0.00 5 12298 \N +492953 2025-11-14 01:26:13.627678+00 2025-11-14 01:26:13.627685+00 f t COSTO_SERVICIO 0.00 2 12306 \N +492954 2025-11-14 01:26:13.62898+00 2025-11-14 01:26:13.628988+00 f t DESCUENTO 0.00 3 12306 \N +492955 2025-11-14 01:26:13.630222+00 2025-11-14 01:26:13.63023+00 f t TOTAL 0.00 4 12306 \N +485447 2025-11-12 13:44:50.029102+00 2025-11-12 13:44:50.029113+00 f t SUBTOTAL 31500.00 1 12124 \N +485448 2025-11-12 13:44:50.031011+00 2025-11-12 13:44:50.031021+00 f t COSTO_SERVICIO 0.00 2 12124 \N +485449 2025-11-12 13:44:50.032566+00 2025-11-12 13:44:50.032573+00 f t DESCUENTO 0.00 3 12124 \N +485450 2025-11-12 13:44:50.033808+00 2025-11-12 13:44:50.033813+00 f t TOTAL 31500.00 4 12124 \N +485451 2025-11-12 13:44:50.035054+00 2025-11-12 13:44:50.035059+00 f t ADELANTO 31500.00 5 12124 \N +492956 2025-11-14 01:26:13.631266+00 2025-11-14 01:26:13.631272+00 f t ADELANTO 0.00 5 12306 \N +485487 2025-11-12 13:53:16.90978+00 2025-11-12 13:53:16.909787+00 f t SUBTOTAL 46000.00 1 12125 \N +485488 2025-11-12 13:53:16.911409+00 2025-11-12 13:53:16.911417+00 f t COSTO_SERVICIO 0.00 2 12125 \N +485489 2025-11-12 13:53:16.912552+00 2025-11-12 13:53:16.912558+00 f t DESCUENTO 0.00 3 12125 \N +485490 2025-11-12 13:53:16.913479+00 2025-11-12 13:53:16.913484+00 f t TOTAL 46000.00 4 12125 \N +485491 2025-11-12 13:53:16.914448+00 2025-11-12 13:53:16.914452+00 f t ADELANTO 11000.00 5 12125 \N +494012 2025-11-14 10:13:25.076989+00 2025-11-14 10:13:25.076997+00 f t SUBTOTAL 54000.00 1 12324 \N +494013 2025-11-14 10:13:25.078722+00 2025-11-14 10:13:25.07873+00 f t COSTO_SERVICIO 0.00 2 12324 \N +494014 2025-11-14 10:13:25.079894+00 2025-11-14 10:13:25.0799+00 f t DESCUENTO 0.00 3 12324 \N +494015 2025-11-14 10:13:25.080883+00 2025-11-14 10:13:25.080888+00 f t TOTAL 54000.00 4 12324 \N +494016 2025-11-14 10:13:25.082017+00 2025-11-14 10:13:25.082022+00 f t ADELANTO 13500.00 5 12324 \N +485547 2025-11-12 13:58:43.063455+00 2025-11-12 13:58:43.063462+00 f t SUBTOTAL 103600.00 1 12126 \N +485548 2025-11-12 13:58:43.065063+00 2025-11-12 13:58:43.065069+00 f t COSTO_SERVICIO 0.00 2 12126 \N +485549 2025-11-12 13:58:43.066123+00 2025-11-12 13:58:43.066128+00 f t DESCUENTO 0.00 3 12126 \N +485550 2025-11-12 13:58:43.067237+00 2025-11-12 13:58:43.067244+00 f t TOTAL 103600.00 4 12126 \N +485551 2025-11-12 13:58:43.068275+00 2025-11-12 13:58:43.068281+00 f t ADELANTO 24600.00 5 12126 \N +485567 2025-11-12 14:10:40.962147+00 2025-11-12 14:10:40.962154+00 f t SUBTOTAL 78000.00 1 12127 \N +485568 2025-11-12 14:10:40.963743+00 2025-11-12 14:10:40.963749+00 f t COSTO_SERVICIO 0.00 2 12127 \N +485569 2025-11-12 14:10:40.964835+00 2025-11-12 14:10:40.96484+00 f t DESCUENTO 0.00 3 12127 \N +485570 2025-11-12 14:10:40.965837+00 2025-11-12 14:10:40.965842+00 f t TOTAL 78000.00 4 12127 \N +485571 2025-11-12 14:10:40.966939+00 2025-11-12 14:10:40.966945+00 f t ADELANTO 21500.00 5 12127 \N +485577 2025-11-12 14:13:39.021497+00 2025-11-12 14:13:39.021505+00 f t SUBTOTAL 0.00 1 12128 \N +485578 2025-11-12 14:13:39.022896+00 2025-11-12 14:13:39.022904+00 f t COSTO_SERVICIO 0.00 2 12128 \N +485579 2025-11-12 14:13:39.024067+00 2025-11-12 14:13:39.024073+00 f t DESCUENTO 0.00 3 12128 \N +485580 2025-11-12 14:13:39.025076+00 2025-11-12 14:13:39.025082+00 f t TOTAL 0.00 4 12128 \N +485581 2025-11-12 14:13:39.026048+00 2025-11-12 14:13:39.026053+00 f t ADELANTO 0.00 5 12128 \N +489332 2025-11-13 04:22:01.437016+00 2025-11-13 04:22:01.437027+00 f t SUBTOTAL 46000.00 1 12209 \N +489333 2025-11-13 04:22:01.439207+00 2025-11-13 04:22:01.439217+00 f t COSTO_SERVICIO 0.00 2 12209 \N +489334 2025-11-13 04:22:01.440775+00 2025-11-13 04:22:01.440786+00 f t DESCUENTO 0.00 3 12209 \N +489335 2025-11-13 04:22:01.442187+00 2025-11-13 04:22:01.442197+00 f t TOTAL 46000.00 4 12209 \N +489336 2025-11-13 04:22:01.443492+00 2025-11-13 04:22:01.443501+00 f t ADELANTO 11000.00 5 12209 \N +489547 2025-11-13 11:02:18.882982+00 2025-11-13 11:02:18.882991+00 f t SUBTOTAL 46000.00 1 12217 \N +489548 2025-11-13 11:02:18.884958+00 2025-11-13 11:02:18.884965+00 f t COSTO_SERVICIO 0.00 2 12217 \N +485592 2025-11-12 14:23:51.592527+00 2025-11-12 14:23:51.592534+00 f t SUBTOTAL 88000.00 1 12129 \N +485593 2025-11-12 14:23:51.594345+00 2025-11-12 14:23:51.594351+00 f t COSTO_SERVICIO 0.00 2 12129 \N +485594 2025-11-12 14:23:51.595543+00 2025-11-12 14:23:51.595549+00 f t DESCUENTO 0.00 3 12129 \N +485595 2025-11-12 14:23:51.596651+00 2025-11-12 14:23:51.596656+00 f t TOTAL 88000.00 4 12129 \N +485596 2025-11-12 14:23:51.597675+00 2025-11-12 14:23:51.597679+00 f t ADELANTO 13000.00 5 12129 \N +489549 2025-11-13 11:02:18.886351+00 2025-11-13 11:02:18.886358+00 f t DESCUENTO 0.00 3 12217 \N +489550 2025-11-13 11:02:18.887399+00 2025-11-13 11:02:18.887405+00 f t TOTAL 46000.00 4 12217 \N +489551 2025-11-13 11:02:18.88845+00 2025-11-13 11:02:18.888456+00 f t ADELANTO 11000.00 5 12217 \N +491557 2025-11-13 22:37:57.195694+00 2025-11-13 22:37:57.195704+00 f t SUBTOTAL 46000.00 1 12275 \N +491558 2025-11-13 22:37:57.197424+00 2025-11-13 22:37:57.19743+00 f t COSTO_SERVICIO 0.00 2 12275 \N +491559 2025-11-13 22:37:57.198627+00 2025-11-13 22:37:57.198632+00 f t DESCUENTO 0.00 3 12275 \N +491560 2025-11-13 22:37:57.199724+00 2025-11-13 22:37:57.19973+00 f t TOTAL 46000.00 4 12275 \N +491561 2025-11-13 22:37:57.20083+00 2025-11-13 22:37:57.200835+00 f t ADELANTO 11000.00 5 12275 \N +485672 2025-11-12 14:30:13.801526+00 2025-11-12 14:30:13.801534+00 f t SUBTOTAL 102000.00 1 12130 \N +485673 2025-11-12 14:30:13.803608+00 2025-11-12 14:30:13.803616+00 f t COSTO_SERVICIO 0.00 2 12130 \N +485674 2025-11-12 14:30:13.80501+00 2025-11-12 14:30:13.805017+00 f t DESCUENTO 0.00 3 12130 \N +485675 2025-11-12 14:30:13.806457+00 2025-11-12 14:30:13.806463+00 f t TOTAL 102000.00 4 12130 \N +485676 2025-11-12 14:30:13.807784+00 2025-11-12 14:30:13.80779+00 f t ADELANTO 29500.00 5 12130 \N +485707 2025-11-12 14:33:47.580736+00 2025-11-12 14:33:47.580747+00 f t SUBTOTAL 54000.00 1 12131 \N +485708 2025-11-12 14:33:47.582793+00 2025-11-12 14:33:47.582804+00 f t COSTO_SERVICIO 0.00 2 12131 \N +485709 2025-11-12 14:33:47.584368+00 2025-11-12 14:33:47.584377+00 f t DESCUENTO 0.00 3 12131 \N +485710 2025-11-12 14:33:47.585689+00 2025-11-12 14:33:47.585698+00 f t TOTAL 54000.00 4 12131 \N +485711 2025-11-12 14:33:47.586907+00 2025-11-12 14:33:47.586916+00 f t ADELANTO 13500.00 5 12131 \N +492682 2025-11-14 00:52:11.777054+00 2025-11-14 00:52:11.777066+00 f t SUBTOTAL 0.00 1 12299 \N +492683 2025-11-14 00:52:11.778823+00 2025-11-14 00:52:11.778834+00 f t COSTO_SERVICIO 0.00 2 12299 \N +492684 2025-11-14 00:52:11.780282+00 2025-11-14 00:52:11.780293+00 f t DESCUENTO 0.00 3 12299 \N +492685 2025-11-14 00:52:11.781767+00 2025-11-14 00:52:11.781774+00 f t TOTAL 0.00 4 12299 \N +492686 2025-11-14 00:52:11.783002+00 2025-11-14 00:52:11.78301+00 f t ADELANTO 0.00 5 12299 \N +485757 2025-11-12 14:43:45.634584+00 2025-11-12 14:43:45.63459+00 f t SUBTOTAL 70000.00 1 12132 \N +485758 2025-11-12 14:43:45.636023+00 2025-11-12 14:43:45.636028+00 f t COSTO_SERVICIO 0.00 2 12132 \N +485759 2025-11-12 14:43:45.63723+00 2025-11-12 14:43:45.637235+00 f t DESCUENTO 0.00 3 12132 \N +485760 2025-11-12 14:43:45.638333+00 2025-11-12 14:43:45.638339+00 f t TOTAL 70000.00 4 12132 \N +485761 2025-11-12 14:43:45.639443+00 2025-11-12 14:43:45.639448+00 f t ADELANTO 19000.00 5 12132 \N +493782 2025-11-14 02:29:51.513837+00 2025-11-14 02:29:51.513845+00 f t SUBTOTAL 46000.00 1 12316 \N +493783 2025-11-14 02:29:51.515457+00 2025-11-14 02:29:51.515463+00 f t COSTO_SERVICIO 0.00 2 12316 \N +493784 2025-11-14 02:29:51.516602+00 2025-11-14 02:29:51.516607+00 f t DESCUENTO 0.00 3 12316 \N +493785 2025-11-14 02:29:51.517613+00 2025-11-14 02:29:51.517618+00 f t TOTAL 46000.00 4 12316 \N +493786 2025-11-14 02:29:51.518561+00 2025-11-14 02:29:51.518566+00 f t ADELANTO 11000.00 5 12316 \N +493897 2025-11-14 03:22:31.179809+00 2025-11-14 03:22:31.179816+00 f t SUBTOTAL 55000.00 1 12320 \N +493898 2025-11-14 03:22:31.181471+00 2025-11-14 03:22:31.181477+00 f t COSTO_SERVICIO 0.00 2 12320 \N +493899 2025-11-14 03:22:31.182508+00 2025-11-14 03:22:31.182514+00 f t DESCUENTO 0.00 3 12320 \N +493900 2025-11-14 03:22:31.183483+00 2025-11-14 03:22:31.183488+00 f t TOTAL 55000.00 4 12320 \N +493901 2025-11-14 03:22:31.184394+00 2025-11-14 03:22:31.184399+00 f t ADELANTO 11000.00 5 12320 \N +494127 2025-11-14 10:53:57.597004+00 2025-11-14 10:53:57.597014+00 f t SUBTOTAL 33700.00 1 12326 \N +494128 2025-11-14 10:53:57.599207+00 2025-11-14 10:53:57.599214+00 f t COSTO_SERVICIO 0.00 2 12326 \N +485797 2025-11-12 14:46:12.7528+00 2025-11-12 14:46:12.752807+00 f t SUBTOTAL 80000.00 1 12133 \N +485798 2025-11-12 14:46:12.754247+00 2025-11-12 14:46:12.754254+00 f t COSTO_SERVICIO 0.00 2 12133 \N +485799 2025-11-12 14:46:12.755412+00 2025-11-12 14:46:12.755417+00 f t DESCUENTO 0.00 3 12133 \N +485800 2025-11-12 14:46:12.756525+00 2025-11-12 14:46:12.75653+00 f t TOTAL 80000.00 4 12133 \N +485801 2025-11-12 14:46:12.757455+00 2025-11-12 14:46:12.75746+00 f t ADELANTO 12000.00 5 12133 \N +485802 2025-11-12 14:46:27.396694+00 2025-11-12 14:46:27.396701+00 f t SUBTOTAL 80000.00 1 12134 \N +485803 2025-11-12 14:46:27.398423+00 2025-11-12 14:46:27.398429+00 f t COSTO_SERVICIO 0.00 2 12134 \N +485804 2025-11-12 14:46:27.399692+00 2025-11-12 14:46:27.399697+00 f t DESCUENTO 0.00 3 12134 \N +485805 2025-11-12 14:46:27.400811+00 2025-11-12 14:46:27.400817+00 f t TOTAL 80000.00 4 12134 \N +485806 2025-11-12 14:46:27.401864+00 2025-11-12 14:46:27.401869+00 f t ADELANTO 12000.00 5 12134 \N +494129 2025-11-14 10:53:57.600577+00 2025-11-14 10:53:57.600587+00 f t DESCUENTO 0.00 3 12326 \N +494130 2025-11-14 10:53:57.601918+00 2025-11-14 10:53:57.601926+00 f t TOTAL 33700.00 4 12326 \N +494131 2025-11-14 10:53:57.603712+00 2025-11-14 10:53:57.60372+00 f t ADELANTO 33700.00 5 12326 \N +494712 2025-11-14 12:02:01.420981+00 2025-11-14 12:02:01.420992+00 f t SUBTOTAL 0.00 1 12336 \N +494713 2025-11-14 12:02:01.423493+00 2025-11-14 12:02:01.423503+00 f t COSTO_SERVICIO 0.00 2 12336 \N +494714 2025-11-14 12:02:01.425131+00 2025-11-14 12:02:01.425142+00 f t DESCUENTO 0.00 3 12336 \N +494715 2025-11-14 12:02:01.426646+00 2025-11-14 12:02:01.426654+00 f t TOTAL 0.00 4 12336 \N +494716 2025-11-14 12:02:01.428105+00 2025-11-14 12:02:01.428119+00 f t ADELANTO 0.00 5 12336 \N +500177 2025-11-15 21:49:40.178823+00 2025-11-15 21:49:40.178831+00 f t SUBTOTAL 106000.00 1 12478 \N +500178 2025-11-15 21:49:40.180589+00 2025-11-15 21:49:40.180595+00 f t COSTO_SERVICIO 0.00 2 12478 \N +500179 2025-11-15 21:49:40.181749+00 2025-11-15 21:49:40.181754+00 f t DESCUENTO 0.00 3 12478 \N +500180 2025-11-15 21:49:40.182923+00 2025-11-15 21:49:40.182928+00 f t TOTAL 106000.00 4 12478 \N +500181 2025-11-15 21:49:40.183989+00 2025-11-15 21:49:40.183994+00 f t ADELANTO 71000.00 5 12478 \N +485867 2025-11-12 14:52:06.811659+00 2025-11-12 14:52:06.811666+00 f t SUBTOTAL 57000.00 1 12135 \N +485868 2025-11-12 14:52:06.813239+00 2025-11-12 14:52:06.813246+00 f t COSTO_SERVICIO 0.00 2 12135 \N +485869 2025-11-12 14:52:06.814278+00 2025-11-12 14:52:06.814284+00 f t DESCUENTO 0.00 3 12135 \N +485870 2025-11-12 14:52:06.815246+00 2025-11-12 14:52:06.815252+00 f t TOTAL 57000.00 4 12135 \N +485871 2025-11-12 14:52:06.816151+00 2025-11-12 14:52:06.816156+00 f t ADELANTO 57000.00 5 12135 \N +489777 2025-11-13 13:27:09.436788+00 2025-11-13 13:27:09.4368+00 f t SUBTOTAL 133500.00 1 12227 \N +489778 2025-11-13 13:27:09.439032+00 2025-11-13 13:27:09.439043+00 f t COSTO_SERVICIO 0.00 2 12227 \N +489779 2025-11-13 13:27:09.440667+00 2025-11-13 13:27:09.440677+00 f t DESCUENTO 0.00 3 12227 \N +489780 2025-11-13 13:27:09.441953+00 2025-11-13 13:27:09.44196+00 f t TOTAL 133500.00 4 12227 \N +489781 2025-11-13 13:27:09.442898+00 2025-11-13 13:27:09.442903+00 f t ADELANTO 28500.00 5 12227 \N +485897 2025-11-12 14:55:58.769092+00 2025-11-12 14:55:58.769101+00 f t SUBTOTAL 23000.00 1 12136 \N +485898 2025-11-12 14:55:58.770586+00 2025-11-12 14:55:58.770594+00 f t COSTO_SERVICIO 0.00 2 12136 \N +485899 2025-11-12 14:55:58.77199+00 2025-11-12 14:55:58.771996+00 f t DESCUENTO 0.00 3 12136 \N +485900 2025-11-12 14:55:58.773222+00 2025-11-12 14:55:58.773228+00 f t TOTAL 23000.00 4 12136 \N +485901 2025-11-12 14:55:58.774741+00 2025-11-12 14:55:58.774749+00 f t ADELANTO 5500.00 5 12136 \N +490472 2025-11-13 16:32:42.584412+00 2025-11-13 16:32:42.58442+00 f t SUBTOTAL 88000.00 1 12241 \N +490473 2025-11-13 16:32:42.586118+00 2025-11-13 16:32:42.586125+00 f t COSTO_SERVICIO 0.00 2 12241 \N +490474 2025-11-13 16:32:42.587266+00 2025-11-13 16:32:42.587272+00 f t DESCUENTO 0.00 3 12241 \N +490475 2025-11-13 16:32:42.588343+00 2025-11-13 16:32:42.588348+00 f t TOTAL 88000.00 4 12241 \N +490476 2025-11-13 16:32:42.589338+00 2025-11-13 16:32:42.589343+00 f t ADELANTO 13000.00 5 12241 \N +491257 2025-11-13 20:01:30.890503+00 2025-11-13 20:01:30.890511+00 f t SUBTOTAL 54000.00 1 12265 \N +485937 2025-11-12 15:09:38.18548+00 2025-11-12 15:09:38.185488+00 f t SUBTOTAL 80000.00 1 12137 \N +485938 2025-11-12 15:09:38.187376+00 2025-11-12 15:09:38.187382+00 f t COSTO_SERVICIO 0.00 2 12137 \N +485939 2025-11-12 15:09:38.188584+00 2025-11-12 15:09:38.188591+00 f t DESCUENTO 0.00 3 12137 \N +485940 2025-11-12 15:09:38.189769+00 2025-11-12 15:09:38.189774+00 f t TOTAL 80000.00 4 12137 \N +485941 2025-11-12 15:09:38.190828+00 2025-11-12 15:09:38.190833+00 f t ADELANTO 12000.00 5 12137 \N +491258 2025-11-13 20:01:30.892234+00 2025-11-13 20:01:30.892242+00 f t COSTO_SERVICIO 0.00 2 12265 \N +491259 2025-11-13 20:01:30.893314+00 2025-11-13 20:01:30.893319+00 f t DESCUENTO 0.00 3 12265 \N +491260 2025-11-13 20:01:30.894364+00 2025-11-13 20:01:30.894372+00 f t TOTAL 54000.00 4 12265 \N +491261 2025-11-13 20:01:30.895526+00 2025-11-13 20:01:30.895531+00 f t ADELANTO 13500.00 5 12265 \N +491417 2025-11-13 21:42:09.099371+00 2025-11-13 21:42:09.099379+00 f t SUBTOTAL 0.00 1 12271 \N +491418 2025-11-13 21:42:09.101408+00 2025-11-13 21:42:09.101415+00 f t COSTO_SERVICIO 0.00 2 12271 \N +491419 2025-11-13 21:42:09.102508+00 2025-11-13 21:42:09.102513+00 f t DESCUENTO 0.00 3 12271 \N +491420 2025-11-13 21:42:09.10363+00 2025-11-13 21:42:09.103635+00 f t TOTAL 0.00 4 12271 \N +491421 2025-11-13 21:42:09.104793+00 2025-11-13 21:42:09.104798+00 f t ADELANTO 0.00 5 12271 \N +491837 2025-11-13 23:10:18.177823+00 2025-11-13 23:10:18.177831+00 f t SUBTOTAL 46000.00 1 12280 \N +491838 2025-11-13 23:10:18.179626+00 2025-11-13 23:10:18.179634+00 f t COSTO_SERVICIO 0.00 2 12280 \N +491839 2025-11-13 23:10:18.180731+00 2025-11-13 23:10:18.180736+00 f t DESCUENTO 0.00 3 12280 \N +491840 2025-11-13 23:10:18.18168+00 2025-11-13 23:10:18.181684+00 f t TOTAL 46000.00 4 12280 \N +491841 2025-11-13 23:10:18.182619+00 2025-11-13 23:10:18.182625+00 f t ADELANTO 11000.00 5 12280 \N +485977 2025-11-12 15:46:25.153585+00 2025-11-12 15:46:25.153596+00 f t SUBTOTAL 46000.00 1 12138 \N +485978 2025-11-12 15:46:25.155544+00 2025-11-12 15:46:25.155553+00 f t COSTO_SERVICIO 0.00 2 12138 \N +485979 2025-11-12 15:46:25.156991+00 2025-11-12 15:46:25.157+00 f t DESCUENTO 0.00 3 12138 \N +485980 2025-11-12 15:46:25.158357+00 2025-11-12 15:46:25.158366+00 f t TOTAL 46000.00 4 12138 \N +485981 2025-11-12 15:46:25.159552+00 2025-11-12 15:46:25.159561+00 f t ADELANTO 11000.00 5 12138 \N +492257 2025-11-13 23:40:22.413478+00 2025-11-13 23:40:22.413485+00 f t SUBTOTAL 0.00 1 12288 \N +492258 2025-11-13 23:40:22.414975+00 2025-11-13 23:40:22.41498+00 f t COSTO_SERVICIO 0.00 2 12288 \N +492259 2025-11-13 23:40:22.415935+00 2025-11-13 23:40:22.415941+00 f t DESCUENTO 0.00 3 12288 \N +492260 2025-11-13 23:40:22.416907+00 2025-11-13 23:40:22.416914+00 f t TOTAL 0.00 4 12288 \N +492261 2025-11-13 23:40:22.417712+00 2025-11-13 23:40:22.417717+00 f t ADELANTO 0.00 5 12288 \N +486002 2025-11-12 15:51:47.977422+00 2025-11-12 15:51:47.977431+00 f t SUBTOTAL 0.00 1 12141 \N +486003 2025-11-12 15:51:47.979272+00 2025-11-12 15:51:47.979281+00 f t COSTO_SERVICIO 0.00 2 12141 \N +486004 2025-11-12 15:51:47.980363+00 2025-11-12 15:51:47.98037+00 f t DESCUENTO 0.00 3 12141 \N +486005 2025-11-12 15:51:47.981681+00 2025-11-12 15:51:47.981687+00 f t TOTAL 0.00 4 12141 \N +486006 2025-11-12 15:51:47.982776+00 2025-11-12 15:51:47.982782+00 f t ADELANTO 0.00 5 12141 \N +492972 2025-11-14 01:28:26.502814+00 2025-11-14 01:28:26.502826+00 f t SUBTOTAL 0.00 1 12308 \N +492973 2025-11-14 01:28:26.504558+00 2025-11-14 01:28:26.504568+00 f t COSTO_SERVICIO 0.00 2 12308 \N +492974 2025-11-14 01:28:26.506085+00 2025-11-14 01:28:26.506093+00 f t DESCUENTO 0.00 3 12308 \N +492975 2025-11-14 01:28:26.507319+00 2025-11-14 01:28:26.507326+00 f t TOTAL 0.00 4 12308 \N +492976 2025-11-14 01:28:26.508605+00 2025-11-14 01:28:26.508611+00 f t ADELANTO 0.00 5 12308 \N +486062 2025-11-12 16:07:08.647413+00 2025-11-12 16:07:08.647425+00 f t SUBTOTAL 0.00 1 12142 \N +486063 2025-11-12 16:07:08.650967+00 2025-11-12 16:07:08.650977+00 f t COSTO_SERVICIO 0.00 2 12142 \N +486064 2025-11-12 16:07:08.652726+00 2025-11-12 16:07:08.652738+00 f t DESCUENTO 0.00 3 12142 \N +486065 2025-11-12 16:07:08.65433+00 2025-11-12 16:07:08.654339+00 f t TOTAL 0.00 4 12142 \N +486066 2025-11-12 16:07:08.656047+00 2025-11-12 16:07:08.656055+00 f t ADELANTO 0.00 5 12142 \N +493907 2025-11-14 06:58:54.768285+00 2025-11-14 06:58:54.768294+00 f t SUBTOTAL 0.00 1 12321 \N +493908 2025-11-14 06:58:54.769586+00 2025-11-14 06:58:54.769592+00 f t COSTO_SERVICIO 0.00 2 12321 \N +493909 2025-11-14 06:58:54.770779+00 2025-11-14 06:58:54.770784+00 f t DESCUENTO 0.00 3 12321 \N +493910 2025-11-14 06:58:54.771823+00 2025-11-14 06:58:54.771829+00 f t TOTAL 0.00 4 12321 \N +493911 2025-11-14 06:58:54.772807+00 2025-11-14 06:58:54.772812+00 f t ADELANTO 0.00 5 12321 \N +486112 2025-11-12 16:09:12.618102+00 2025-11-12 16:09:12.618113+00 f t SUBTOTAL 46000.00 1 12143 \N +486113 2025-11-12 16:09:12.619954+00 2025-11-12 16:09:12.619962+00 f t COSTO_SERVICIO 0.00 2 12143 \N +486114 2025-11-12 16:09:12.621303+00 2025-11-12 16:09:12.621311+00 f t DESCUENTO 0.00 3 12143 \N +486115 2025-11-12 16:09:12.622569+00 2025-11-12 16:09:12.622574+00 f t TOTAL 46000.00 4 12143 \N +486116 2025-11-12 16:09:12.623662+00 2025-11-12 16:09:12.623667+00 f t ADELANTO 11000.00 5 12143 \N +535812 2025-11-23 18:52:52.669016+00 2025-11-23 18:52:52.669023+00 f t SUBTOTAL 54000.00 1 13310 \N +486147 2025-11-12 16:12:54.24046+00 2025-11-12 16:12:54.240471+00 f t SUBTOTAL 0.00 1 12144 \N +486148 2025-11-12 16:12:54.24257+00 2025-11-12 16:12:54.242582+00 f t COSTO_SERVICIO 0.00 2 12144 \N +486149 2025-11-12 16:12:54.244025+00 2025-11-12 16:12:54.244035+00 f t DESCUENTO 0.00 3 12144 \N +486150 2025-11-12 16:12:54.245357+00 2025-11-12 16:12:54.245367+00 f t TOTAL 0.00 4 12144 \N +486151 2025-11-12 16:12:54.246649+00 2025-11-12 16:12:54.246656+00 f t ADELANTO 0.00 5 12144 \N +500187 2025-11-15 23:06:59.601127+00 2025-11-15 23:06:59.601138+00 f t SUBTOTAL 0.00 1 12479 \N +500188 2025-11-15 23:06:59.602761+00 2025-11-15 23:06:59.602769+00 f t COSTO_SERVICIO 0.00 2 12479 \N +500189 2025-11-15 23:06:59.604453+00 2025-11-15 23:06:59.604459+00 f t DESCUENTO 0.00 3 12479 \N +500190 2025-11-15 23:06:59.605636+00 2025-11-15 23:06:59.605641+00 f t TOTAL 0.00 4 12479 \N +500191 2025-11-15 23:06:59.606589+00 2025-11-15 23:06:59.606594+00 f t ADELANTO 0.00 5 12479 \N +512772 2025-11-19 01:18:52.687902+00 2025-11-19 01:18:52.687914+00 f t SUBTOTAL 0.00 1 12767 \N +512773 2025-11-19 01:18:52.689642+00 2025-11-19 01:18:52.689653+00 f t COSTO_SERVICIO 0.00 2 12767 \N +512774 2025-11-19 01:18:52.690876+00 2025-11-19 01:18:52.690882+00 f t DESCUENTO 0.00 3 12767 \N +512775 2025-11-19 01:18:52.691976+00 2025-11-19 01:18:52.691983+00 f t TOTAL 0.00 4 12767 \N +512776 2025-11-19 01:18:52.693637+00 2025-11-19 01:18:52.693642+00 f t ADELANTO 0.00 5 12767 \N +490132 2025-11-13 14:39:32.646871+00 2025-11-13 14:39:32.646879+00 f t SUBTOTAL 81000.00 1 12235 \N +490133 2025-11-13 14:39:32.648611+00 2025-11-13 14:39:32.648618+00 f t COSTO_SERVICIO 0.00 2 12235 \N +490134 2025-11-13 14:39:32.649738+00 2025-11-13 14:39:32.649743+00 f t DESCUENTO 0.00 3 12235 \N +490135 2025-11-13 14:39:32.650674+00 2025-11-13 14:39:32.650679+00 f t TOTAL 81000.00 4 12235 \N +490136 2025-11-13 14:39:32.653099+00 2025-11-13 14:39:32.653105+00 f t ADELANTO 30000.00 5 12235 \N +486187 2025-11-12 16:15:07.94735+00 2025-11-12 16:15:07.947359+00 f t SUBTOTAL 46000.00 1 12145 \N +486188 2025-11-12 16:15:07.949663+00 2025-11-12 16:15:07.949674+00 f t COSTO_SERVICIO 0.00 2 12145 \N +486189 2025-11-12 16:15:07.951315+00 2025-11-12 16:15:07.951325+00 f t DESCUENTO 0.00 3 12145 \N +486190 2025-11-12 16:15:07.952869+00 2025-11-12 16:15:07.952878+00 f t TOTAL 46000.00 4 12145 \N +486191 2025-11-12 16:15:07.954391+00 2025-11-12 16:15:07.954402+00 f t ADELANTO 11000.00 5 12145 \N +491847 2025-11-13 23:11:13.380548+00 2025-11-13 23:11:13.380556+00 f t SUBTOTAL 0.00 1 12281 \N +491848 2025-11-13 23:11:13.382091+00 2025-11-13 23:11:13.382104+00 f t COSTO_SERVICIO 0.00 2 12281 \N +491849 2025-11-13 23:11:13.383414+00 2025-11-13 23:11:13.383419+00 f t DESCUENTO 0.00 3 12281 \N +491850 2025-11-13 23:11:13.384443+00 2025-11-13 23:11:13.384448+00 f t TOTAL 0.00 4 12281 \N +491851 2025-11-13 23:11:13.385293+00 2025-11-13 23:11:13.385298+00 f t ADELANTO 0.00 5 12281 \N +486277 2025-11-12 16:17:20.568214+00 2025-11-12 16:17:20.568221+00 f t SUBTOTAL 102000.00 1 12146 \N +486278 2025-11-12 16:17:20.570074+00 2025-11-12 16:17:20.570081+00 f t COSTO_SERVICIO 0.00 2 12146 \N +486279 2025-11-12 16:17:20.571416+00 2025-11-12 16:17:20.571422+00 f t DESCUENTO 0.00 3 12146 \N +486280 2025-11-12 16:17:20.572666+00 2025-11-12 16:17:20.572673+00 f t TOTAL 102000.00 4 12146 \N +486281 2025-11-12 16:17:20.573785+00 2025-11-12 16:17:20.573792+00 f t ADELANTO 29500.00 5 12146 \N +486287 2025-11-12 16:19:10.942759+00 2025-11-12 16:19:10.942772+00 f t SUBTOTAL 0.00 1 12147 \N +486288 2025-11-12 16:19:10.944364+00 2025-11-12 16:19:10.944372+00 f t COSTO_SERVICIO 0.00 2 12147 \N +486289 2025-11-12 16:19:10.945708+00 2025-11-12 16:19:10.945715+00 f t DESCUENTO 0.00 3 12147 \N +486290 2025-11-12 16:19:10.94684+00 2025-11-12 16:19:10.946847+00 f t TOTAL 0.00 4 12147 \N +486291 2025-11-12 16:19:10.948+00 2025-11-12 16:19:10.948008+00 f t ADELANTO 0.00 5 12147 \N +492267 2025-11-13 23:45:46.05989+00 2025-11-13 23:45:46.0599+00 f t SUBTOTAL 0.00 1 12290 \N +492268 2025-11-13 23:45:46.061314+00 2025-11-13 23:45:46.061321+00 f t COSTO_SERVICIO 0.00 2 12290 \N +492269 2025-11-13 23:45:46.062499+00 2025-11-13 23:45:46.062506+00 f t DESCUENTO 0.00 3 12290 \N +492270 2025-11-13 23:45:46.063524+00 2025-11-13 23:45:46.063529+00 f t TOTAL 0.00 4 12290 \N +492271 2025-11-13 23:45:46.064474+00 2025-11-13 23:45:46.064481+00 f t ADELANTO 0.00 5 12290 \N +486302 2025-11-12 16:33:23.436844+00 2025-11-12 16:33:23.436852+00 f t SUBTOTAL 55000.00 1 12148 \N +486303 2025-11-12 16:33:23.43844+00 2025-11-12 16:33:23.438446+00 f t COSTO_SERVICIO 0.00 2 12148 \N +486304 2025-11-12 16:33:23.439572+00 2025-11-12 16:33:23.439578+00 f t DESCUENTO 0.00 3 12148 \N +486305 2025-11-12 16:33:23.440605+00 2025-11-12 16:33:23.44061+00 f t TOTAL 55000.00 4 12148 \N +486306 2025-11-12 16:33:23.441671+00 2025-11-12 16:33:23.441678+00 f t ADELANTO 11000.00 5 12148 \N +504252 2025-11-17 14:55:00.811229+00 2025-11-17 14:55:00.811237+00 f t SUBTOTAL 111000.00 1 12550 \N +504253 2025-11-17 14:55:00.813442+00 2025-11-17 14:55:00.813448+00 f t COSTO_SERVICIO 0.00 2 12550 \N +504254 2025-11-17 14:55:00.814594+00 2025-11-17 14:55:00.814599+00 f t DESCUENTO 0.00 3 12550 \N +504255 2025-11-17 14:55:00.81585+00 2025-11-17 14:55:00.815856+00 f t TOTAL 111000.00 4 12550 \N +504256 2025-11-17 14:55:00.817078+00 2025-11-17 14:55:00.817083+00 f t ADELANTO 28000.00 5 12550 \N +504527 2025-11-17 15:26:17.365957+00 2025-11-17 15:26:17.366188+00 f t SUBTOTAL 0.00 1 12563 \N +504528 2025-11-17 15:26:17.368355+00 2025-11-17 15:26:17.368364+00 f t COSTO_SERVICIO 0.00 2 12563 \N +493097 2025-11-14 01:32:25.915621+00 2025-11-14 01:32:25.91563+00 f t SUBTOTAL 0.00 1 12309 \N +493098 2025-11-14 01:32:25.917469+00 2025-11-14 01:32:25.917477+00 f t COSTO_SERVICIO 0.00 2 12309 \N +493099 2025-11-14 01:32:25.918543+00 2025-11-14 01:32:25.918548+00 f t DESCUENTO 0.00 3 12309 \N +493100 2025-11-14 01:32:25.920128+00 2025-11-14 01:32:25.920133+00 f t TOTAL 0.00 4 12309 \N +493101 2025-11-14 01:32:25.92115+00 2025-11-14 01:32:25.921155+00 f t ADELANTO 0.00 5 12309 \N +504529 2025-11-17 15:26:17.369636+00 2025-11-17 15:26:17.369644+00 f t DESCUENTO 0.00 3 12563 \N +504530 2025-11-17 15:26:17.370723+00 2025-11-17 15:26:17.370731+00 f t TOTAL 0.00 4 12563 \N +504531 2025-11-17 15:26:17.371839+00 2025-11-17 15:26:17.371846+00 f t ADELANTO 0.00 5 12563 \N +504672 2025-11-17 16:23:45.613769+00 2025-11-17 16:23:45.613775+00 f t SUBTOTAL 70000.00 1 12570 \N +504673 2025-11-17 16:23:45.615514+00 2025-11-17 16:23:45.615519+00 f t COSTO_SERVICIO 0.00 2 12570 \N +504674 2025-11-17 16:23:45.616596+00 2025-11-17 16:23:45.616601+00 f t DESCUENTO 0.00 3 12570 \N +504675 2025-11-17 16:23:45.617511+00 2025-11-17 16:23:45.617516+00 f t TOTAL 70000.00 4 12570 \N +504676 2025-11-17 16:23:45.618342+00 2025-11-17 16:23:45.618347+00 f t ADELANTO 19000.00 5 12570 \N +486372 2025-11-12 16:37:13.593992+00 2025-11-12 16:37:13.594001+00 f t SUBTOTAL 0.00 1 12149 \N +486373 2025-11-12 16:37:13.595951+00 2025-11-12 16:37:13.595958+00 f t COSTO_SERVICIO 0.00 2 12149 \N +486374 2025-11-12 16:37:13.596903+00 2025-11-12 16:37:13.596909+00 f t DESCUENTO 0.00 3 12149 \N +486375 2025-11-12 16:37:13.598067+00 2025-11-12 16:37:13.598073+00 f t TOTAL 0.00 4 12149 \N +486376 2025-11-12 16:37:13.599164+00 2025-11-12 16:37:13.59917+00 f t ADELANTO 0.00 5 12149 \N +494432 2025-11-14 11:18:39.438798+00 2025-11-14 11:18:39.438806+00 f t SUBTOTAL 78000.00 1 12330 \N +494433 2025-11-14 11:18:39.439791+00 2025-11-14 11:18:39.439796+00 f t COSTO_SERVICIO 0.00 2 12330 \N +494434 2025-11-14 11:18:39.440461+00 2025-11-14 11:18:39.440466+00 f t DESCUENTO 0.00 3 12330 \N +494435 2025-11-14 11:18:39.441482+00 2025-11-14 11:18:39.441487+00 f t TOTAL 78000.00 4 12330 \N +494436 2025-11-14 11:18:39.442076+00 2025-11-14 11:18:39.442083+00 f t ADELANTO 13000.00 5 12330 \N +535813 2025-11-23 18:52:52.670824+00 2025-11-23 18:52:52.670831+00 f t COSTO_SERVICIO 0.00 2 13310 \N +535814 2025-11-23 18:52:52.672094+00 2025-11-23 18:52:52.6721+00 f t DESCUENTO 0.00 3 13310 \N +535815 2025-11-23 18:52:52.673166+00 2025-11-23 18:52:52.673171+00 f t TOTAL 54000.00 4 13310 \N +523647 2025-11-20 20:58:12.107311+00 2025-11-20 20:58:12.107323+00 f t SUBTOTAL 0.00 1 13025 \N +486437 2025-11-12 16:44:18.353202+00 2025-11-12 16:44:18.353209+00 f t SUBTOTAL 121000.00 1 12150 \N +486438 2025-11-12 16:44:18.354812+00 2025-11-12 16:44:18.354818+00 f t COSTO_SERVICIO 0.00 2 12150 \N +486439 2025-11-12 16:44:18.355942+00 2025-11-12 16:44:18.355947+00 f t DESCUENTO 0.00 3 12150 \N +486440 2025-11-12 16:44:18.356845+00 2025-11-12 16:44:18.356849+00 f t TOTAL 121000.00 4 12150 \N +486441 2025-11-12 16:44:18.357834+00 2025-11-12 16:44:18.357841+00 f t ADELANTO 26000.00 5 12150 \N +523648 2025-11-20 20:58:12.108845+00 2025-11-20 20:58:12.108855+00 f t COSTO_SERVICIO 0.00 2 13025 \N +489107 2025-11-13 01:04:27.336703+00 2025-11-13 01:04:27.336714+00 f t SUBTOTAL 55000.00 1 12202 \N +489108 2025-11-13 01:04:27.338844+00 2025-11-13 01:04:27.338853+00 f t COSTO_SERVICIO 0.00 2 12202 \N +489109 2025-11-13 01:04:27.340401+00 2025-11-13 01:04:27.34041+00 f t DESCUENTO 0.00 3 12202 \N +489110 2025-11-13 01:04:27.341926+00 2025-11-13 01:04:27.341935+00 f t TOTAL 55000.00 4 12202 \N +489111 2025-11-13 01:04:27.343213+00 2025-11-13 01:04:27.343221+00 f t ADELANTO 11000.00 5 12202 \N +490652 2025-11-13 16:55:12.980401+00 2025-11-13 16:55:12.980408+00 f t SUBTOTAL 47000.00 1 12249 \N +490653 2025-11-13 16:55:12.982204+00 2025-11-13 16:55:12.98221+00 f t COSTO_SERVICIO 0.00 2 12249 \N +490654 2025-11-13 16:55:12.983405+00 2025-11-13 16:55:12.983409+00 f t DESCUENTO 0.00 3 12249 \N +490655 2025-11-13 16:55:12.984328+00 2025-11-13 16:55:12.984336+00 f t TOTAL 47000.00 4 12249 \N +490656 2025-11-13 16:55:12.985287+00 2025-11-13 16:55:12.985293+00 f t ADELANTO 12000.00 5 12249 \N +486507 2025-11-12 16:46:55.029688+00 2025-11-12 16:46:55.029697+00 f t SUBTOTAL 0.00 1 12151 \N +486508 2025-11-12 16:46:55.031618+00 2025-11-12 16:46:55.031624+00 f t COSTO_SERVICIO 0.00 2 12151 \N +486509 2025-11-12 16:46:55.033709+00 2025-11-12 16:46:55.033715+00 f t DESCUENTO 0.00 3 12151 \N +486510 2025-11-12 16:46:55.034861+00 2025-11-12 16:46:55.034867+00 f t TOTAL 0.00 4 12151 \N +486511 2025-11-12 16:46:55.036014+00 2025-11-12 16:46:55.036019+00 f t ADELANTO 0.00 5 12151 \N +486512 2025-11-12 16:56:10.144943+00 2025-11-12 16:56:10.144951+00 f t SUBTOTAL 46000.00 1 12139 \N +486513 2025-11-12 16:56:10.146764+00 2025-11-12 16:56:10.14677+00 f t COSTO_SERVICIO 0.00 2 12139 \N +486514 2025-11-12 16:56:10.147797+00 2025-11-12 16:56:10.147803+00 f t DESCUENTO 0.00 3 12139 \N +486515 2025-11-12 16:56:10.148712+00 2025-11-12 16:56:10.148717+00 f t TOTAL 46000.00 4 12139 \N +486516 2025-11-12 16:56:10.149568+00 2025-11-12 16:56:10.149573+00 f t ADELANTO 11000.00 5 12139 \N +486522 2025-11-12 16:59:25.182928+00 2025-11-12 16:59:25.182939+00 f t SUBTOTAL 0.00 1 12152 \N +486523 2025-11-12 16:59:25.184834+00 2025-11-12 16:59:25.184847+00 f t COSTO_SERVICIO 0.00 2 12152 \N +486524 2025-11-12 16:59:25.186089+00 2025-11-12 16:59:25.186098+00 f t DESCUENTO 0.00 3 12152 \N +486525 2025-11-12 16:59:25.187307+00 2025-11-12 16:59:25.187316+00 f t TOTAL 0.00 4 12152 \N +486526 2025-11-12 16:59:25.188675+00 2025-11-12 16:59:25.188683+00 f t ADELANTO 0.00 5 12152 \N +491857 2025-11-13 23:11:42.162812+00 2025-11-13 23:11:42.162821+00 f t SUBTOTAL 0.00 1 12282 \N +491858 2025-11-13 23:11:42.164149+00 2025-11-13 23:11:42.164156+00 f t COSTO_SERVICIO 0.00 2 12282 \N +491859 2025-11-13 23:11:42.165083+00 2025-11-13 23:11:42.165089+00 f t DESCUENTO 0.00 3 12282 \N +491860 2025-11-13 23:11:42.166185+00 2025-11-13 23:11:42.166191+00 f t TOTAL 0.00 4 12282 \N +491861 2025-11-13 23:11:42.167179+00 2025-11-13 23:11:42.167184+00 f t ADELANTO 0.00 5 12282 \N +486567 2025-11-12 17:00:31.959065+00 2025-11-12 17:00:31.959072+00 f t SUBTOTAL 46000.00 1 12153 \N +486568 2025-11-12 17:00:31.96075+00 2025-11-12 17:00:31.960757+00 f t COSTO_SERVICIO 0.00 2 12153 \N +486569 2025-11-12 17:00:31.961955+00 2025-11-12 17:00:31.961961+00 f t DESCUENTO 0.00 3 12153 \N +486570 2025-11-12 17:00:31.963097+00 2025-11-12 17:00:31.963102+00 f t TOTAL 46000.00 4 12153 \N +486571 2025-11-12 17:00:31.964123+00 2025-11-12 17:00:31.964127+00 f t ADELANTO 11000.00 5 12153 \N +492417 2025-11-14 00:15:23.324275+00 2025-11-14 00:15:23.324286+00 f t SUBTOTAL 121000.00 1 12293 \N +492418 2025-11-14 00:15:23.326338+00 2025-11-14 00:15:23.326347+00 f t COSTO_SERVICIO 0.00 2 12293 \N +492419 2025-11-14 00:15:23.327788+00 2025-11-14 00:15:23.327796+00 f t DESCUENTO 0.00 3 12293 \N +492420 2025-11-14 00:15:23.329028+00 2025-11-14 00:15:23.329034+00 f t TOTAL 121000.00 4 12293 \N +492421 2025-11-14 00:15:23.330278+00 2025-11-14 00:15:23.330285+00 f t ADELANTO 26000.00 5 12293 \N +486607 2025-11-12 17:09:12.261187+00 2025-11-12 17:09:12.261197+00 f t SUBTOTAL 0.00 1 12154 \N +486608 2025-11-12 17:09:12.263532+00 2025-11-12 17:09:12.26354+00 f t COSTO_SERVICIO 0.00 2 12154 \N +486609 2025-11-12 17:09:12.264918+00 2025-11-12 17:09:12.264923+00 f t DESCUENTO 0.00 3 12154 \N +486610 2025-11-12 17:09:12.266198+00 2025-11-12 17:09:12.266204+00 f t TOTAL 0.00 4 12154 \N +486611 2025-11-12 17:09:12.26748+00 2025-11-12 17:09:12.267485+00 f t ADELANTO 0.00 5 12154 \N +486622 2025-11-12 17:11:47.904616+00 2025-11-12 17:11:47.904623+00 f t SUBTOTAL 55000.00 1 12155 \N +486623 2025-11-12 17:11:47.90652+00 2025-11-12 17:11:47.906529+00 f t COSTO_SERVICIO 0.00 2 12155 \N +486624 2025-11-12 17:11:47.908028+00 2025-11-12 17:11:47.908036+00 f t DESCUENTO 0.00 3 12155 \N +486625 2025-11-12 17:11:47.90936+00 2025-11-12 17:11:47.909369+00 f t TOTAL 55000.00 4 12155 \N +486626 2025-11-12 17:11:47.910653+00 2025-11-12 17:11:47.910661+00 f t ADELANTO 11000.00 5 12155 \N +486677 2025-11-12 17:20:55.856279+00 2025-11-12 17:20:55.856286+00 f t SUBTOTAL 13200.00 1 12157 \N +486678 2025-11-12 17:20:55.857718+00 2025-11-12 17:20:55.857726+00 f t COSTO_SERVICIO 0.00 2 12157 \N +486679 2025-11-12 17:20:55.859059+00 2025-11-12 17:20:55.859068+00 f t DESCUENTO 0.00 3 12157 \N +486680 2025-11-12 17:20:55.860604+00 2025-11-12 17:20:55.860612+00 f t TOTAL 13200.00 4 12157 \N +486681 2025-11-12 17:20:55.861945+00 2025-11-12 17:20:55.861952+00 f t ADELANTO 13200.00 5 12157 \N +486687 2025-11-12 17:21:13.756732+00 2025-11-12 17:21:13.756741+00 f t SUBTOTAL 0.00 1 12156 \N +486688 2025-11-12 17:21:13.758432+00 2025-11-12 17:21:13.758439+00 f t COSTO_SERVICIO 0.00 2 12156 \N +486689 2025-11-12 17:21:13.759571+00 2025-11-12 17:21:13.759578+00 f t DESCUENTO 0.00 3 12156 \N +486690 2025-11-12 17:21:13.760502+00 2025-11-12 17:21:13.760507+00 f t TOTAL 0.00 4 12156 \N +486691 2025-11-12 17:21:13.761333+00 2025-11-12 17:21:13.76134+00 f t ADELANTO 0.00 5 12156 \N +486702 2025-11-12 17:36:19.932831+00 2025-11-12 17:36:19.93284+00 f t SUBTOTAL 13200.00 1 12158 \N +486703 2025-11-12 17:36:19.93455+00 2025-11-12 17:36:19.934557+00 f t COSTO_SERVICIO 0.00 2 12158 \N +486704 2025-11-12 17:36:19.935728+00 2025-11-12 17:36:19.935733+00 f t DESCUENTO 0.00 3 12158 \N +486705 2025-11-12 17:36:19.936924+00 2025-11-12 17:36:19.936929+00 f t TOTAL 13200.00 4 12158 \N +486706 2025-11-12 17:36:19.937812+00 2025-11-12 17:36:19.937817+00 f t ADELANTO 13200.00 5 12158 \N +486717 2025-11-12 17:47:02.877878+00 2025-11-12 17:47:02.877891+00 f t SUBTOTAL 85000.00 1 12159 \N +486718 2025-11-12 17:47:02.880327+00 2025-11-12 17:47:02.88034+00 f t COSTO_SERVICIO 0.00 2 12159 \N +486719 2025-11-12 17:47:02.8824+00 2025-11-12 17:47:02.882413+00 f t DESCUENTO 0.00 3 12159 \N +486720 2025-11-12 17:47:02.884597+00 2025-11-12 17:47:02.88461+00 f t TOTAL 85000.00 4 12159 \N +486721 2025-11-12 17:47:02.886426+00 2025-11-12 17:47:02.886438+00 f t ADELANTO 15000.00 5 12159 \N +486732 2025-11-12 18:08:52.597655+00 2025-11-12 18:08:52.597662+00 f t SUBTOTAL 30000.00 1 12160 \N +486733 2025-11-12 18:08:52.599215+00 2025-11-12 18:08:52.599221+00 f t COSTO_SERVICIO 0.00 2 12160 \N +486734 2025-11-12 18:08:52.600214+00 2025-11-12 18:08:52.60022+00 f t DESCUENTO 0.00 3 12160 \N +486735 2025-11-12 18:08:52.601307+00 2025-11-12 18:08:52.601314+00 f t TOTAL 30000.00 4 12160 \N +486736 2025-11-12 18:08:52.602412+00 2025-11-12 18:08:52.602418+00 f t ADELANTO 30000.00 5 12160 \N +489117 2025-11-13 02:21:03.01108+00 2025-11-13 02:21:03.011093+00 f t SUBTOTAL 0.00 1 12203 \N +489118 2025-11-13 02:21:03.012605+00 2025-11-13 02:21:03.012614+00 f t COSTO_SERVICIO 0.00 2 12203 \N +489119 2025-11-13 02:21:03.013859+00 2025-11-13 02:21:03.013868+00 f t DESCUENTO 0.00 3 12203 \N +489120 2025-11-13 02:21:03.014992+00 2025-11-13 02:21:03.014999+00 f t TOTAL 0.00 4 12203 \N +489121 2025-11-13 02:21:03.016074+00 2025-11-13 02:21:03.016082+00 f t ADELANTO 0.00 5 12203 \N +512552 2025-11-18 23:29:02.454927+00 2025-11-18 23:29:02.454937+00 f t SUBTOTAL 78000.00 1 12759 \N +512553 2025-11-18 23:29:02.457133+00 2025-11-18 23:29:02.457142+00 f t COSTO_SERVICIO 0.00 2 12759 \N +512554 2025-11-18 23:29:02.458733+00 2025-11-18 23:29:02.458741+00 f t DESCUENTO 0.00 3 12759 \N +512555 2025-11-18 23:29:02.460076+00 2025-11-18 23:29:02.460083+00 f t TOTAL 78000.00 4 12759 \N +512556 2025-11-18 23:29:02.461579+00 2025-11-18 23:29:02.461587+00 f t ADELANTO 21500.00 5 12759 \N +512782 2025-11-19 01:22:20.256414+00 2025-11-19 01:22:20.256423+00 f t SUBTOTAL 0.00 1 12768 \N +486762 2025-11-12 18:10:30.69529+00 2025-11-12 18:10:30.695302+00 f t SUBTOTAL 55000.00 1 12161 \N +486763 2025-11-12 18:10:30.697128+00 2025-11-12 18:10:30.697136+00 f t COSTO_SERVICIO 0.00 2 12161 \N +486764 2025-11-12 18:10:30.698563+00 2025-11-12 18:10:30.698572+00 f t DESCUENTO 0.00 3 12161 \N +486765 2025-11-12 18:10:30.699982+00 2025-11-12 18:10:30.699989+00 f t TOTAL 55000.00 4 12161 \N +486766 2025-11-12 18:10:30.701245+00 2025-11-12 18:10:30.701253+00 f t ADELANTO 11000.00 5 12161 \N +490317 2025-11-13 15:57:20.847316+00 2025-11-13 15:57:20.847328+00 f t SUBTOTAL 0.00 1 12239 \N +490318 2025-11-13 15:57:20.849572+00 2025-11-13 15:57:20.849581+00 f t COSTO_SERVICIO 0.00 2 12239 \N +490319 2025-11-13 15:57:20.85078+00 2025-11-13 15:57:20.850788+00 f t DESCUENTO 0.00 3 12239 \N +490320 2025-11-13 15:57:20.851826+00 2025-11-13 15:57:20.851834+00 f t TOTAL 0.00 4 12239 \N +490321 2025-11-13 15:57:20.852856+00 2025-11-13 15:57:20.852861+00 f t ADELANTO 0.00 5 12239 \N +490662 2025-11-13 16:58:26.175595+00 2025-11-13 16:58:26.175604+00 f t SUBTOTAL 0.00 1 12250 \N +490663 2025-11-13 16:58:26.176881+00 2025-11-13 16:58:26.176887+00 f t COSTO_SERVICIO 0.00 2 12250 \N +490664 2025-11-13 16:58:26.178004+00 2025-11-13 16:58:26.17801+00 f t DESCUENTO 0.00 3 12250 \N +486792 2025-11-12 18:12:14.201034+00 2025-11-12 18:12:14.201046+00 f t SUBTOTAL 46000.00 1 12162 \N +486793 2025-11-12 18:12:14.202959+00 2025-11-12 18:12:14.20297+00 f t COSTO_SERVICIO 0.00 2 12162 \N +486794 2025-11-12 18:12:14.204781+00 2025-11-12 18:12:14.204789+00 f t DESCUENTO 0.00 3 12162 \N +486795 2025-11-12 18:12:14.206368+00 2025-11-12 18:12:14.20638+00 f t TOTAL 46000.00 4 12162 \N +486796 2025-11-12 18:12:14.207972+00 2025-11-12 18:12:14.20798+00 f t ADELANTO 11000.00 5 12162 \N +490665 2025-11-13 16:58:26.178981+00 2025-11-13 16:58:26.178986+00 f t TOTAL 0.00 4 12250 \N +490666 2025-11-13 16:58:26.180002+00 2025-11-13 16:58:26.180007+00 f t ADELANTO 0.00 5 12250 \N +501907 2025-11-17 00:49:55.296078+00 2025-11-17 00:49:55.296086+00 f t SUBTOTAL 46000.00 1 12518 \N +501908 2025-11-17 00:49:55.298308+00 2025-11-17 00:49:55.298316+00 f t COSTO_SERVICIO 0.00 2 12518 \N +501909 2025-11-17 00:49:55.299761+00 2025-11-17 00:49:55.29977+00 f t DESCUENTO 0.00 3 12518 \N +486802 2025-11-12 18:26:27.348643+00 2025-11-12 18:26:27.348651+00 f t SUBTOTAL 0.00 1 12163 \N +486803 2025-11-12 18:26:27.349878+00 2025-11-12 18:26:27.349884+00 f t COSTO_SERVICIO 0.00 2 12163 \N +486804 2025-11-12 18:26:27.351472+00 2025-11-12 18:26:27.351478+00 f t DESCUENTO 0.00 3 12163 \N +486805 2025-11-12 18:26:27.352362+00 2025-11-12 18:26:27.352367+00 f t TOTAL 0.00 4 12163 \N +486806 2025-11-12 18:26:27.353109+00 2025-11-12 18:26:27.353114+00 f t ADELANTO 0.00 5 12163 \N +501910 2025-11-17 00:49:55.30136+00 2025-11-17 00:49:55.30137+00 f t TOTAL 46000.00 4 12518 \N +501911 2025-11-17 00:49:55.30296+00 2025-11-17 00:49:55.302966+00 f t ADELANTO 11000.00 5 12518 \N +502222 2025-11-17 02:33:58.95132+00 2025-11-17 02:33:58.951327+00 f t SUBTOTAL 70000.00 1 12525 \N +502223 2025-11-17 02:33:58.953138+00 2025-11-17 02:33:58.953143+00 f t COSTO_SERVICIO 0.00 2 12525 \N +502224 2025-11-17 02:33:58.954405+00 2025-11-17 02:33:58.954411+00 f t DESCUENTO 0.00 3 12525 \N +502225 2025-11-17 02:33:58.955371+00 2025-11-17 02:33:58.955376+00 f t TOTAL 70000.00 4 12525 \N +502226 2025-11-17 02:33:58.956356+00 2025-11-17 02:33:58.956361+00 f t ADELANTO 19000.00 5 12525 \N +502537 2025-11-17 06:24:07.323377+00 2025-11-17 06:24:07.323387+00 f t SUBTOTAL 46000.00 1 12532 \N +502538 2025-11-17 06:24:07.326951+00 2025-11-17 06:24:07.326964+00 f t COSTO_SERVICIO 0.00 2 12532 \N +502539 2025-11-17 06:24:07.329044+00 2025-11-17 06:24:07.329056+00 f t DESCUENTO 0.00 3 12532 \N +502540 2025-11-17 06:24:07.330939+00 2025-11-17 06:24:07.330949+00 f t TOTAL 46000.00 4 12532 \N +502541 2025-11-17 06:24:07.332896+00 2025-11-17 06:24:07.332907+00 f t ADELANTO 11000.00 5 12532 \N +486847 2025-11-12 18:32:06.556262+00 2025-11-12 18:32:06.556271+00 f t SUBTOTAL 46000.00 1 12164 \N +486848 2025-11-12 18:32:06.559579+00 2025-11-12 18:32:06.559587+00 f t COSTO_SERVICIO 0.00 2 12164 \N +486849 2025-11-12 18:32:06.564334+00 2025-11-12 18:32:06.564343+00 f t DESCUENTO 0.00 3 12164 \N +486850 2025-11-12 18:32:06.566494+00 2025-11-12 18:32:06.566502+00 f t TOTAL 46000.00 4 12164 \N +486851 2025-11-12 18:32:06.568345+00 2025-11-12 18:32:06.568351+00 f t ADELANTO 11000.00 5 12164 \N +486857 2025-11-12 18:33:49.520777+00 2025-11-12 18:33:49.520784+00 f t SUBTOTAL 46000.00 1 12140 \N +486858 2025-11-12 18:33:49.522214+00 2025-11-12 18:33:49.52222+00 f t COSTO_SERVICIO 0.00 2 12140 \N +486859 2025-11-12 18:33:49.523223+00 2025-11-12 18:33:49.523228+00 f t DESCUENTO 0.00 3 12140 \N +486860 2025-11-12 18:33:49.524267+00 2025-11-12 18:33:49.524273+00 f t TOTAL 46000.00 4 12140 \N +486861 2025-11-12 18:33:49.525237+00 2025-11-12 18:33:49.525242+00 f t ADELANTO 11000.00 5 12140 \N +486872 2025-11-12 18:37:01.135162+00 2025-11-12 18:37:01.135174+00 f t SUBTOTAL 78000.00 1 12165 \N +486873 2025-11-12 18:37:01.136934+00 2025-11-12 18:37:01.136942+00 f t COSTO_SERVICIO 0.00 2 12165 \N +486874 2025-11-12 18:37:01.138354+00 2025-11-12 18:37:01.138361+00 f t DESCUENTO 0.00 3 12165 \N +486875 2025-11-12 18:37:01.139546+00 2025-11-12 18:37:01.139552+00 f t TOTAL 78000.00 4 12165 \N +486876 2025-11-12 18:37:01.140576+00 2025-11-12 18:37:01.140581+00 f t ADELANTO 13000.00 5 12165 \N +486927 2025-11-12 19:07:44.722895+00 2025-11-12 19:07:44.722902+00 f t SUBTOTAL 46000.00 1 12166 \N +486928 2025-11-12 19:07:44.72438+00 2025-11-12 19:07:44.724385+00 f t COSTO_SERVICIO 0.00 2 12166 \N +486929 2025-11-12 19:07:44.725471+00 2025-11-12 19:07:44.725476+00 f t DESCUENTO 0.00 3 12166 \N +486930 2025-11-12 19:07:44.726422+00 2025-11-12 19:07:44.726426+00 f t TOTAL 46000.00 4 12166 \N +486931 2025-11-12 19:07:44.727409+00 2025-11-12 19:07:44.727414+00 f t ADELANTO 11000.00 5 12166 \N +494442 2025-11-14 11:24:04.605844+00 2025-11-14 11:24:04.605856+00 f t SUBTOTAL 0.00 1 12331 \N +494443 2025-11-14 11:24:04.607828+00 2025-11-14 11:24:04.60784+00 f t COSTO_SERVICIO 0.00 2 12331 \N +494444 2025-11-14 11:24:04.60964+00 2025-11-14 11:24:04.609651+00 f t DESCUENTO 0.00 3 12331 \N +494445 2025-11-14 11:24:04.611295+00 2025-11-14 11:24:04.611304+00 f t TOTAL 0.00 4 12331 \N +494446 2025-11-14 11:24:04.612944+00 2025-11-14 11:24:04.612954+00 f t ADELANTO 0.00 5 12331 \N +523649 2025-11-20 20:58:12.110254+00 2025-11-20 20:58:12.110262+00 f t DESCUENTO 0.00 3 13025 \N +523650 2025-11-20 20:58:12.111649+00 2025-11-20 20:58:12.111656+00 f t TOTAL 0.00 4 13025 \N +523651 2025-11-20 20:58:12.112728+00 2025-11-20 20:58:12.112735+00 f t ADELANTO 0.00 5 13025 \N +535816 2025-11-23 18:52:52.674165+00 2025-11-23 18:52:52.67417+00 f t ADELANTO 13500.00 5 13310 \N +487027 2025-11-12 19:30:00.513566+00 2025-11-12 19:30:00.513574+00 f t SUBTOTAL 78000.00 1 12168 \N +487028 2025-11-12 19:30:00.515166+00 2025-11-12 19:30:00.515172+00 f t COSTO_SERVICIO 0.00 2 12168 \N +487029 2025-11-12 19:30:00.516591+00 2025-11-12 19:30:00.516596+00 f t DESCUENTO 0.00 3 12168 \N +487030 2025-11-12 19:30:00.517492+00 2025-11-12 19:30:00.517497+00 f t TOTAL 78000.00 4 12168 \N +487031 2025-11-12 19:30:00.518371+00 2025-11-12 19:30:00.518376+00 f t ADELANTO 21500.00 5 12168 \N +489797 2025-11-13 13:27:56.654805+00 2025-11-13 13:27:56.654813+00 f t SUBTOTAL 46000.00 1 12228 \N +489798 2025-11-13 13:27:56.656636+00 2025-11-13 13:27:56.656644+00 f t COSTO_SERVICIO 0.00 2 12228 \N +489799 2025-11-13 13:27:56.657823+00 2025-11-13 13:27:56.657829+00 f t DESCUENTO 0.00 3 12228 \N +489800 2025-11-13 13:27:56.658769+00 2025-11-13 13:27:56.658774+00 f t TOTAL 46000.00 4 12228 \N +489801 2025-11-13 13:27:56.659797+00 2025-11-13 13:27:56.659802+00 f t ADELANTO 11000.00 5 12228 \N +501232 2025-11-16 17:24:33.678785+00 2025-11-16 17:24:33.678793+00 f t SUBTOTAL 78000.00 1 12503 \N +501233 2025-11-16 17:24:33.680477+00 2025-11-16 17:24:33.680485+00 f t COSTO_SERVICIO 0.00 2 12503 \N +501234 2025-11-16 17:24:33.681538+00 2025-11-16 17:24:33.681543+00 f t DESCUENTO 0.00 3 12503 \N +501235 2025-11-16 17:24:33.682488+00 2025-11-16 17:24:33.682493+00 f t TOTAL 78000.00 4 12503 \N +501236 2025-11-16 17:24:33.683296+00 2025-11-16 17:24:33.683301+00 f t ADELANTO 21500.00 5 12503 \N +491137 2025-11-13 19:53:23.367678+00 2025-11-13 19:53:23.367684+00 f t SUBTOTAL 70000.00 1 12263 \N +491138 2025-11-13 19:53:23.36947+00 2025-11-13 19:53:23.369475+00 f t COSTO_SERVICIO 0.00 2 12263 \N +487102 2025-11-12 19:32:05.871026+00 2025-11-12 19:32:05.871033+00 f t SUBTOTAL 107000.00 1 12169 \N +487103 2025-11-12 19:32:05.872757+00 2025-11-12 19:32:05.872765+00 f t COSTO_SERVICIO 0.00 2 12169 \N +487104 2025-11-12 19:32:05.873869+00 2025-11-12 19:32:05.873874+00 f t DESCUENTO 0.00 3 12169 \N +487105 2025-11-12 19:32:05.874852+00 2025-11-12 19:32:05.874856+00 f t TOTAL 107000.00 4 12169 \N +487106 2025-11-12 19:32:05.875814+00 2025-11-12 19:32:05.87582+00 f t ADELANTO 27000.00 5 12169 \N +491139 2025-11-13 19:53:23.370461+00 2025-11-13 19:53:23.370466+00 f t DESCUENTO 0.00 3 12263 \N +491140 2025-11-13 19:53:23.371319+00 2025-11-13 19:53:23.371326+00 f t TOTAL 70000.00 4 12263 \N +491141 2025-11-13 19:53:23.372548+00 2025-11-13 19:53:23.372552+00 f t ADELANTO 19000.00 5 12263 \N +487112 2025-11-12 19:45:31.880841+00 2025-11-12 19:45:31.880852+00 f t SUBTOTAL 0.00 1 12170 \N +487113 2025-11-12 19:45:31.882458+00 2025-11-12 19:45:31.882465+00 f t COSTO_SERVICIO 0.00 2 12170 \N +487114 2025-11-12 19:45:31.883449+00 2025-11-12 19:45:31.883455+00 f t DESCUENTO 0.00 3 12170 \N +487115 2025-11-12 19:45:31.884312+00 2025-11-12 19:45:31.884316+00 f t TOTAL 0.00 4 12170 \N +487116 2025-11-12 19:45:31.885125+00 2025-11-12 19:45:31.88513+00 f t ADELANTO 0.00 5 12170 \N +487122 2025-11-12 20:01:05.105976+00 2025-11-12 20:01:05.105986+00 f t SUBTOTAL 0.00 1 12171 \N +487123 2025-11-12 20:01:05.107661+00 2025-11-12 20:01:05.107669+00 f t COSTO_SERVICIO 0.00 2 12171 \N +487124 2025-11-12 20:01:05.109145+00 2025-11-12 20:01:05.109155+00 f t DESCUENTO 0.00 3 12171 \N +487125 2025-11-12 20:01:05.110553+00 2025-11-12 20:01:05.110559+00 f t TOTAL 0.00 4 12171 \N +487126 2025-11-12 20:01:05.111957+00 2025-11-12 20:01:05.111966+00 f t ADELANTO 0.00 5 12171 \N +502707 2025-11-17 12:32:44.895412+00 2025-11-17 12:32:44.895419+00 f t SUBTOTAL 54000.00 1 12536 \N +502708 2025-11-17 12:32:44.896945+00 2025-11-17 12:32:44.89695+00 f t COSTO_SERVICIO 0.00 2 12536 \N +502709 2025-11-17 12:32:44.898019+00 2025-11-17 12:32:44.898024+00 f t DESCUENTO 0.00 3 12536 \N +502710 2025-11-17 12:32:44.899148+00 2025-11-17 12:32:44.899153+00 f t TOTAL 54000.00 4 12536 \N +502711 2025-11-17 12:32:44.900151+00 2025-11-17 12:32:44.900156+00 f t ADELANTO 13500.00 5 12536 \N +503292 2025-11-17 12:58:26.570455+00 2025-11-17 12:58:26.570463+00 f t SUBTOTAL 0.00 1 12546 \N +503293 2025-11-17 12:58:26.571959+00 2025-11-17 12:58:26.571965+00 f t COSTO_SERVICIO 0.00 2 12546 \N +487157 2025-11-12 20:03:24.736005+00 2025-11-12 20:03:24.736015+00 f t SUBTOTAL 0.00 1 12172 \N +487158 2025-11-12 20:03:24.737817+00 2025-11-12 20:03:24.737824+00 f t COSTO_SERVICIO 0.00 2 12172 \N +487159 2025-11-12 20:03:24.738812+00 2025-11-12 20:03:24.738817+00 f t DESCUENTO 0.00 3 12172 \N +487160 2025-11-12 20:03:24.739724+00 2025-11-12 20:03:24.739729+00 f t TOTAL 0.00 4 12172 \N +487161 2025-11-12 20:03:24.740494+00 2025-11-12 20:03:24.740498+00 f t ADELANTO 0.00 5 12172 \N +503294 2025-11-17 12:58:26.573191+00 2025-11-17 12:58:26.573198+00 f t DESCUENTO 0.00 3 12546 \N +503295 2025-11-17 12:58:26.574279+00 2025-11-17 12:58:26.574284+00 f t TOTAL 0.00 4 12546 \N +503296 2025-11-17 12:58:26.575345+00 2025-11-17 12:58:26.57535+00 f t ADELANTO 0.00 5 12546 \N +487172 2025-11-12 20:07:11.313656+00 2025-11-12 20:07:11.313664+00 f t SUBTOTAL 55000.00 1 12173 \N +487173 2025-11-12 20:07:11.315251+00 2025-11-12 20:07:11.315257+00 f t COSTO_SERVICIO 0.00 2 12173 \N +487174 2025-11-12 20:07:11.316271+00 2025-11-12 20:07:11.316276+00 f t DESCUENTO 0.00 3 12173 \N +487175 2025-11-12 20:07:11.317336+00 2025-11-12 20:07:11.317341+00 f t TOTAL 55000.00 4 12173 \N +487176 2025-11-12 20:07:11.318418+00 2025-11-12 20:07:11.318423+00 f t ADELANTO 11000.00 5 12173 \N +504537 2025-11-17 15:32:24.891786+00 2025-11-17 15:32:24.891796+00 f t SUBTOTAL 0.00 1 12564 \N +494347 2025-11-14 11:12:01.328+00 2025-11-14 11:12:01.328009+00 f t SUBTOTAL 0.00 1 12329 \N +494348 2025-11-14 11:12:01.329813+00 2025-11-14 11:12:01.32982+00 f t COSTO_SERVICIO 0.00 2 12329 \N +494349 2025-11-14 11:12:01.33097+00 2025-11-14 11:12:01.330976+00 f t DESCUENTO 0.00 3 12329 \N +494350 2025-11-14 11:12:01.332182+00 2025-11-14 11:12:01.332187+00 f t TOTAL 0.00 4 12329 \N +494351 2025-11-14 11:12:01.333528+00 2025-11-14 11:12:01.333535+00 f t ADELANTO 0.00 5 12329 \N +494452 2025-11-14 11:45:20.788546+00 2025-11-14 11:45:20.788554+00 f t SUBTOTAL 0.00 1 12332 \N +494453 2025-11-14 11:45:20.789895+00 2025-11-14 11:45:20.789902+00 f t COSTO_SERVICIO 0.00 2 12332 \N +494454 2025-11-14 11:45:20.790902+00 2025-11-14 11:45:20.790908+00 f t DESCUENTO 0.00 3 12332 \N +494455 2025-11-14 11:45:20.792222+00 2025-11-14 11:45:20.792231+00 f t TOTAL 0.00 4 12332 \N +494456 2025-11-14 11:45:20.793529+00 2025-11-14 11:45:20.793535+00 f t ADELANTO 0.00 5 12332 \N +494802 2025-11-14 12:23:48.353866+00 2025-11-14 12:23:48.353874+00 f t SUBTOTAL 0.00 1 12338 \N +494803 2025-11-14 12:23:48.355774+00 2025-11-14 12:23:48.35578+00 f t COSTO_SERVICIO 0.00 2 12338 \N +487282 2025-11-12 20:37:45.269736+00 2025-11-12 20:37:45.269743+00 f t SUBTOTAL 125000.00 1 12175 \N +487283 2025-11-12 20:37:45.271187+00 2025-11-12 20:37:45.271193+00 f t COSTO_SERVICIO 0.00 2 12175 \N +487284 2025-11-12 20:37:45.272157+00 2025-11-12 20:37:45.272162+00 f t DESCUENTO 9200.00 3 12175 \N +487285 2025-11-12 20:37:45.273035+00 2025-11-12 20:37:45.27304+00 f t TOTAL 115800.00 4 12175 \N +487286 2025-11-12 20:37:45.274422+00 2025-11-12 20:37:45.274429+00 f t ADELANTO 28500.00 5 12175 \N +494804 2025-11-14 12:23:48.357007+00 2025-11-14 12:23:48.357014+00 f t DESCUENTO 0.00 3 12338 \N +494805 2025-11-14 12:23:48.357897+00 2025-11-14 12:23:48.357902+00 f t TOTAL 0.00 4 12338 \N +494806 2025-11-14 12:23:48.358933+00 2025-11-14 12:23:48.358938+00 f t ADELANTO 0.00 5 12338 \N +512562 2025-11-18 23:52:37.937298+00 2025-11-18 23:52:37.937309+00 f t SUBTOTAL 0.00 1 12760 \N +512563 2025-11-18 23:52:37.938808+00 2025-11-18 23:52:37.938815+00 f t COSTO_SERVICIO 0.00 2 12760 \N +512564 2025-11-18 23:52:37.940081+00 2025-11-18 23:52:37.940087+00 f t DESCUENTO 0.00 3 12760 \N +512565 2025-11-18 23:52:37.941255+00 2025-11-18 23:52:37.94126+00 f t TOTAL 0.00 4 12760 \N +512566 2025-11-18 23:52:37.9423+00 2025-11-18 23:52:37.942308+00 f t ADELANTO 0.00 5 12760 \N +512783 2025-11-19 01:22:20.25855+00 2025-11-19 01:22:20.258558+00 f t COSTO_SERVICIO 0.00 2 12768 \N +512784 2025-11-19 01:22:20.259906+00 2025-11-19 01:22:20.259912+00 f t DESCUENTO 0.00 3 12768 \N +512785 2025-11-19 01:22:20.261253+00 2025-11-19 01:22:20.26126+00 f t TOTAL 0.00 4 12768 \N +512786 2025-11-19 01:22:20.262689+00 2025-11-19 01:22:20.262699+00 f t ADELANTO 0.00 5 12768 \N +513167 2025-11-19 02:10:53.352612+00 2025-11-19 02:10:53.352626+00 f t SUBTOTAL 0.00 1 12776 \N +513168 2025-11-19 02:10:53.355046+00 2025-11-19 02:10:53.355057+00 f t COSTO_SERVICIO 0.00 2 12776 \N +487337 2025-11-12 20:45:46.524228+00 2025-11-12 20:45:46.524235+00 f t SUBTOTAL 55000.00 1 12177 \N +487338 2025-11-12 20:45:46.526017+00 2025-11-12 20:45:46.526024+00 f t COSTO_SERVICIO 0.00 2 12177 \N +487339 2025-11-12 20:45:46.527281+00 2025-11-12 20:45:46.527287+00 f t DESCUENTO 0.00 3 12177 \N +487340 2025-11-12 20:45:46.528248+00 2025-11-12 20:45:46.528254+00 f t TOTAL 55000.00 4 12177 \N +487341 2025-11-12 20:45:46.529143+00 2025-11-12 20:45:46.529148+00 f t ADELANTO 11000.00 5 12177 \N +513169 2025-11-19 02:10:53.356465+00 2025-11-19 02:10:53.356474+00 f t DESCUENTO 0.00 3 12776 \N +513170 2025-11-19 02:10:53.357913+00 2025-11-19 02:10:53.357921+00 f t TOTAL 0.00 4 12776 \N +491287 2025-11-13 20:31:45.737856+00 2025-11-13 20:31:45.737863+00 f t SUBTOTAL 156000.00 1 12266 \N +491288 2025-11-13 20:31:45.739545+00 2025-11-13 20:31:45.739549+00 f t COSTO_SERVICIO 0.00 2 12266 \N +491289 2025-11-13 20:31:45.740585+00 2025-11-13 20:31:45.740589+00 f t DESCUENTO 9200.00 3 12266 \N +491290 2025-11-13 20:31:45.741571+00 2025-11-13 20:31:45.741578+00 f t TOTAL 146800.00 4 12266 \N +491291 2025-11-13 20:31:45.742584+00 2025-11-13 20:31:45.74259+00 f t ADELANTO 43000.00 5 12266 \N +491592 2025-11-13 22:46:25.68952+00 2025-11-13 22:46:25.689526+00 f t SUBTOTAL 70000.00 1 12276 \N +491593 2025-11-13 22:46:25.691344+00 2025-11-13 22:46:25.69135+00 f t COSTO_SERVICIO 0.00 2 12276 \N +491594 2025-11-13 22:46:25.692568+00 2025-11-13 22:46:25.692575+00 f t DESCUENTO 0.00 3 12276 \N +491595 2025-11-13 22:46:25.693722+00 2025-11-13 22:46:25.693727+00 f t TOTAL 70000.00 4 12276 \N +491596 2025-11-13 22:46:25.694721+00 2025-11-13 22:46:25.694726+00 f t ADELANTO 19000.00 5 12276 \N +503007 2025-11-17 12:48:50.95944+00 2025-11-17 12:48:50.959449+00 f t SUBTOTAL 156000.00 1 12540 \N +503008 2025-11-17 12:48:50.961288+00 2025-11-17 12:48:50.961294+00 f t COSTO_SERVICIO 0.00 2 12540 \N +503009 2025-11-17 12:48:50.962364+00 2025-11-17 12:48:50.96237+00 f t DESCUENTO 9200.00 3 12540 \N +503010 2025-11-17 12:48:50.963511+00 2025-11-17 12:48:50.963517+00 f t TOTAL 146800.00 4 12540 \N +503011 2025-11-17 12:48:50.964544+00 2025-11-17 12:48:50.964549+00 f t ADELANTO 43000.00 5 12540 \N +492567 2025-11-14 00:22:15.328124+00 2025-11-14 00:22:15.328131+00 f t SUBTOTAL 34000.00 1 12295 \N +492568 2025-11-14 00:22:15.329693+00 2025-11-14 00:22:15.329698+00 f t COSTO_SERVICIO 0.00 2 12295 \N +492569 2025-11-14 00:22:15.330715+00 2025-11-14 00:22:15.33072+00 f t DESCUENTO 0.00 3 12295 \N +492570 2025-11-14 00:22:15.331601+00 2025-11-14 00:22:15.331606+00 f t TOTAL 34000.00 4 12295 \N +492571 2025-11-14 00:22:15.332428+00 2025-11-14 00:22:15.332433+00 f t ADELANTO 34000.00 5 12295 \N +492852 2025-11-14 01:03:06.912727+00 2025-11-14 01:03:06.912736+00 f t SUBTOTAL 54000.00 1 12302 \N +492853 2025-11-14 01:03:06.914747+00 2025-11-14 01:03:06.914754+00 f t COSTO_SERVICIO 0.00 2 12302 \N +492854 2025-11-14 01:03:06.916043+00 2025-11-14 01:03:06.916049+00 f t DESCUENTO 0.00 3 12302 \N +492855 2025-11-14 01:03:06.917358+00 2025-11-14 01:03:06.917368+00 f t TOTAL 54000.00 4 12302 \N +492856 2025-11-14 01:03:06.918483+00 2025-11-14 01:03:06.918488+00 f t ADELANTO 13500.00 5 12302 \N +487462 2025-11-12 20:49:34.018337+00 2025-11-12 20:49:34.018344+00 f t SUBTOTAL 20500.00 1 12176 \N +487463 2025-11-12 20:49:34.020113+00 2025-11-12 20:49:34.020123+00 f t COSTO_SERVICIO 0.00 2 12176 \N +487464 2025-11-12 20:49:34.02187+00 2025-11-12 20:49:34.02188+00 f t DESCUENTO 0.00 3 12176 \N +487465 2025-11-12 20:49:34.023263+00 2025-11-12 20:49:34.023271+00 f t TOTAL 20500.00 4 12176 \N +487466 2025-11-12 20:49:34.02449+00 2025-11-12 20:49:34.024498+00 f t ADELANTO 20500.00 5 12176 \N +504538 2025-11-17 15:32:24.893119+00 2025-11-17 15:32:24.893126+00 f t COSTO_SERVICIO 0.00 2 12564 \N +504539 2025-11-17 15:32:24.894674+00 2025-11-17 15:32:24.89468+00 f t DESCUENTO 0.00 3 12564 \N +504540 2025-11-17 15:32:24.895938+00 2025-11-17 15:32:24.895943+00 f t TOTAL 0.00 4 12564 \N +504541 2025-11-17 15:32:24.896942+00 2025-11-17 15:32:24.896948+00 f t ADELANTO 0.00 5 12564 \N +493932 2025-11-14 09:04:53.627687+00 2025-11-14 09:04:53.627695+00 f t SUBTOTAL 0.00 1 12322 \N +493933 2025-11-14 09:04:53.629703+00 2025-11-14 09:04:53.629713+00 f t COSTO_SERVICIO 0.00 2 12322 \N +493934 2025-11-14 09:04:53.630875+00 2025-11-14 09:04:53.630881+00 f t DESCUENTO 0.00 3 12322 \N +493935 2025-11-14 09:04:53.632026+00 2025-11-14 09:04:53.632032+00 f t TOTAL 0.00 4 12322 \N +493936 2025-11-14 09:04:53.633023+00 2025-11-14 09:04:53.633028+00 f t ADELANTO 0.00 5 12322 \N +487492 2025-11-12 20:51:02.424566+00 2025-11-12 20:51:02.424579+00 f t SUBTOTAL 46000.00 1 12178 \N +487493 2025-11-12 20:51:02.426992+00 2025-11-12 20:51:02.427004+00 f t COSTO_SERVICIO 0.00 2 12178 \N +487494 2025-11-12 20:51:02.429124+00 2025-11-12 20:51:02.429136+00 f t DESCUENTO 0.00 3 12178 \N +487495 2025-11-12 20:51:02.430825+00 2025-11-12 20:51:02.430832+00 f t TOTAL 46000.00 4 12178 \N +487496 2025-11-12 20:51:02.432528+00 2025-11-12 20:51:02.432539+00 f t ADELANTO 11000.00 5 12178 \N +487512 2025-11-12 20:52:56.114874+00 2025-11-12 20:52:56.114882+00 f t SUBTOTAL 80000.00 1 12174 \N +487513 2025-11-12 20:52:56.116362+00 2025-11-12 20:52:56.116368+00 f t COSTO_SERVICIO 0.00 2 12174 \N +487514 2025-11-12 20:52:56.117448+00 2025-11-12 20:52:56.117453+00 f t DESCUENTO 0.00 3 12174 \N +487515 2025-11-12 20:52:56.118437+00 2025-11-12 20:52:56.118443+00 f t TOTAL 80000.00 4 12174 \N +487516 2025-11-12 20:52:56.119433+00 2025-11-12 20:52:56.119438+00 f t ADELANTO 12000.00 5 12174 \N +506047 2025-11-17 20:44:02.883004+00 2025-11-17 20:44:02.883017+00 f t SUBTOTAL 0.00 1 12610 \N +506048 2025-11-17 20:44:02.884666+00 2025-11-17 20:44:02.884675+00 f t COSTO_SERVICIO 0.00 2 12610 \N +506049 2025-11-17 20:44:02.885868+00 2025-11-17 20:44:02.885874+00 f t DESCUENTO 0.00 3 12610 \N +506050 2025-11-17 20:44:02.88701+00 2025-11-17 20:44:02.887016+00 f t TOTAL 0.00 4 12610 \N +506051 2025-11-17 20:44:02.888187+00 2025-11-17 20:44:02.888193+00 f t ADELANTO 0.00 5 12610 \N +495034 2025-11-14 13:15:57.823956+00 2025-11-14 13:15:57.823964+00 f t DESCUENTO 0.00 3 12344 \N +495035 2025-11-14 13:15:57.825271+00 2025-11-14 13:15:57.825279+00 f t TOTAL 55000.00 4 12344 \N +495036 2025-11-14 13:15:57.826544+00 2025-11-14 13:15:57.826551+00 f t ADELANTO 11000.00 5 12344 \N +495061 2025-11-14 13:43:46.005158+00 2025-11-14 13:43:46.005164+00 f t ADELANTO 13200.00 5 12346 \N +506217 2025-11-17 21:14:15.847968+00 2025-11-17 21:14:15.847977+00 f t SUBTOTAL 0.00 1 12613 \N +506218 2025-11-17 21:14:15.849502+00 2025-11-17 21:14:15.849514+00 f t COSTO_SERVICIO 0.00 2 12613 \N +506219 2025-11-17 21:14:15.85085+00 2025-11-17 21:14:15.850858+00 f t DESCUENTO 0.00 3 12613 \N +506220 2025-11-17 21:14:15.852038+00 2025-11-17 21:14:15.852044+00 f t TOTAL 0.00 4 12613 \N +511767 2025-11-18 21:36:19.143246+00 2025-11-18 21:36:19.143253+00 f t SUBTOTAL 55000.00 1 12740 \N +511768 2025-11-18 21:36:19.145125+00 2025-11-18 21:36:19.145132+00 f t COSTO_SERVICIO 0.00 2 12740 \N +511769 2025-11-18 21:36:19.14635+00 2025-11-18 21:36:19.146358+00 f t DESCUENTO 0.00 3 12740 \N +511770 2025-11-18 21:36:19.147552+00 2025-11-18 21:36:19.147558+00 f t TOTAL 55000.00 4 12740 \N +511771 2025-11-18 21:36:19.148857+00 2025-11-18 21:36:19.148864+00 f t ADELANTO 11000.00 5 12740 \N +548654 2025-11-25 21:21:41.574431+00 2025-11-25 21:21:41.574436+00 f t DESCUENTO 0.00 3 13604 \N +548655 2025-11-25 21:21:41.575463+00 2025-11-25 21:21:41.575468+00 f t TOTAL 0.00 4 13604 \N +548656 2025-11-25 21:21:41.576431+00 2025-11-25 21:21:41.576435+00 f t ADELANTO 0.00 5 13604 \N +500892 2025-11-16 14:26:44.833107+00 2025-11-16 14:26:44.833115+00 f t SUBTOTAL 87000.00 1 12496 \N +500893 2025-11-16 14:26:44.834809+00 2025-11-16 14:26:44.834815+00 f t COSTO_SERVICIO 0.00 2 12496 \N +500894 2025-11-16 14:26:44.836125+00 2025-11-16 14:26:44.836134+00 f t DESCUENTO 0.00 3 12496 \N +500895 2025-11-16 14:26:44.83717+00 2025-11-16 14:26:44.837175+00 f t TOTAL 87000.00 4 12496 \N +500896 2025-11-16 14:26:44.838233+00 2025-11-16 14:26:44.838238+00 f t ADELANTO 20000.00 5 12496 \N +501077 2025-11-16 16:28:00.885716+00 2025-11-16 16:28:00.885727+00 f t SUBTOTAL 102000.00 1 12501 \N +501078 2025-11-16 16:28:00.888019+00 2025-11-16 16:28:00.888028+00 f t COSTO_SERVICIO 0.00 2 12501 \N +501079 2025-11-16 16:28:00.889586+00 2025-11-16 16:28:00.889595+00 f t DESCUENTO 0.00 3 12501 \N +501080 2025-11-16 16:28:00.89134+00 2025-11-16 16:28:00.891349+00 f t TOTAL 102000.00 4 12501 \N +501081 2025-11-16 16:28:00.892758+00 2025-11-16 16:28:00.892765+00 f t ADELANTO 29500.00 5 12501 \N +490337 2025-11-13 16:11:46.370998+00 2025-11-13 16:11:46.371008+00 f t SUBTOTAL 0.00 1 12240 \N +490338 2025-11-13 16:11:46.372902+00 2025-11-13 16:11:46.372908+00 f t COSTO_SERVICIO 0.00 2 12240 \N +490339 2025-11-13 16:11:46.373859+00 2025-11-13 16:11:46.373865+00 f t DESCUENTO 0.00 3 12240 \N +490340 2025-11-13 16:11:46.374944+00 2025-11-13 16:11:46.374949+00 f t TOTAL 0.00 4 12240 \N +490341 2025-11-13 16:11:46.376042+00 2025-11-13 16:11:46.376048+00 f t ADELANTO 0.00 5 12240 \N +492297 2025-11-13 23:57:08.533258+00 2025-11-13 23:57:08.533267+00 f t SUBTOTAL 78000.00 1 12291 \N +492298 2025-11-13 23:57:08.535186+00 2025-11-13 23:57:08.535194+00 f t COSTO_SERVICIO 0.00 2 12291 \N +492299 2025-11-13 23:57:08.536539+00 2025-11-13 23:57:08.536548+00 f t DESCUENTO 0.00 3 12291 \N +492300 2025-11-13 23:57:08.53778+00 2025-11-13 23:57:08.537787+00 f t TOTAL 78000.00 4 12291 \N +492301 2025-11-13 23:57:08.538899+00 2025-11-13 23:57:08.538907+00 f t ADELANTO 13000.00 5 12291 \N +487717 2025-11-12 20:57:37.833233+00 2025-11-12 20:57:37.833242+00 f t SUBTOTAL 0.00 1 12180 \N +487718 2025-11-12 20:57:37.835152+00 2025-11-12 20:57:37.835168+00 f t COSTO_SERVICIO 0.00 2 12180 \N +487719 2025-11-12 20:57:37.836312+00 2025-11-12 20:57:37.836317+00 f t DESCUENTO 0.00 3 12180 \N +487720 2025-11-12 20:57:37.837403+00 2025-11-12 20:57:37.837408+00 f t TOTAL 0.00 4 12180 \N +487721 2025-11-12 20:57:37.838397+00 2025-11-12 20:57:37.838401+00 f t ADELANTO 0.00 5 12180 \N +503712 2025-11-17 13:11:20.821836+00 2025-11-17 13:11:20.821843+00 f t SUBTOTAL 184000.00 1 12547 \N +503713 2025-11-17 13:11:20.823667+00 2025-11-17 13:11:20.823672+00 f t COSTO_SERVICIO 0.00 2 12547 \N +503714 2025-11-17 13:11:20.824876+00 2025-11-17 13:11:20.824882+00 f t DESCUENTO 0.00 3 12547 \N +503715 2025-11-17 13:11:20.826066+00 2025-11-17 13:11:20.826071+00 f t TOTAL 184000.00 4 12547 \N +503716 2025-11-17 13:11:20.827368+00 2025-11-17 13:11:20.827377+00 f t ADELANTO 101000.00 5 12547 \N +493357 2025-11-14 01:43:41.097812+00 2025-11-14 01:43:41.097821+00 f t SUBTOTAL 0.00 1 12310 \N +493358 2025-11-14 01:43:41.099861+00 2025-11-14 01:43:41.099868+00 f t COSTO_SERVICIO 0.00 2 12310 \N +493359 2025-11-14 01:43:41.101091+00 2025-11-14 01:43:41.101097+00 f t DESCUENTO 0.00 3 12310 \N +493360 2025-11-14 01:43:41.102085+00 2025-11-14 01:43:41.10209+00 f t TOTAL 0.00 4 12310 \N +493361 2025-11-14 01:43:41.10298+00 2025-11-14 01:43:41.102985+00 f t ADELANTO 0.00 5 12310 \N +504927 2025-11-17 17:03:06.061028+00 2025-11-17 17:03:06.061039+00 f t SUBTOTAL 54000.00 1 12580 \N +504928 2025-11-17 17:03:06.063123+00 2025-11-17 17:03:06.063156+00 f t COSTO_SERVICIO 0.00 2 12580 \N +504929 2025-11-17 17:03:06.064572+00 2025-11-17 17:03:06.064578+00 f t DESCUENTO 0.00 3 12580 \N +504930 2025-11-17 17:03:06.065774+00 2025-11-17 17:03:06.065782+00 f t TOTAL 54000.00 4 12580 \N +504931 2025-11-17 17:03:06.066926+00 2025-11-17 17:03:06.066935+00 f t ADELANTO 13500.00 5 12580 \N +505042 2025-11-17 17:10:44.699002+00 2025-11-17 17:10:44.699012+00 f t SUBTOTAL 85000.00 1 12584 \N +505043 2025-11-17 17:10:44.701323+00 2025-11-17 17:10:44.701333+00 f t COSTO_SERVICIO 0.00 2 12584 \N +505044 2025-11-17 17:10:44.702825+00 2025-11-17 17:10:44.702841+00 f t DESCUENTO 0.00 3 12584 \N +505045 2025-11-17 17:10:44.704255+00 2025-11-17 17:10:44.704264+00 f t TOTAL 85000.00 4 12584 \N +505046 2025-11-17 17:10:44.705623+00 2025-11-17 17:10:44.70563+00 f t ADELANTO 15000.00 5 12584 \N +487807 2025-11-12 21:02:12.636233+00 2025-11-12 21:02:12.636241+00 f t SUBTOTAL 0.00 1 12182 \N +487808 2025-11-12 21:02:12.637903+00 2025-11-12 21:02:12.63791+00 f t COSTO_SERVICIO 0.00 2 12182 \N +487809 2025-11-12 21:02:12.638938+00 2025-11-12 21:02:12.638944+00 f t DESCUENTO 0.00 3 12182 \N +487810 2025-11-12 21:02:12.639972+00 2025-11-12 21:02:12.639978+00 f t TOTAL 0.00 4 12182 \N +487811 2025-11-12 21:02:12.640913+00 2025-11-12 21:02:12.640919+00 f t ADELANTO 0.00 5 12182 \N +505957 2025-11-17 20:11:49.190118+00 2025-11-17 20:11:49.19013+00 f t SUBTOTAL 70000.00 1 12607 \N +505958 2025-11-17 20:11:49.192478+00 2025-11-17 20:11:49.192485+00 f t COSTO_SERVICIO 0.00 2 12607 \N +505959 2025-11-17 20:11:49.193612+00 2025-11-17 20:11:49.193617+00 f t DESCUENTO 0.00 3 12607 \N +505960 2025-11-17 20:11:49.194542+00 2025-11-17 20:11:49.194547+00 f t TOTAL 70000.00 4 12607 \N +505961 2025-11-17 20:11:49.195454+00 2025-11-17 20:11:49.195458+00 f t ADELANTO 19000.00 5 12607 \N +494922 2025-11-14 12:48:42.572134+00 2025-11-14 12:48:42.572143+00 f t SUBTOTAL 82000.00 1 12341 \N +494923 2025-11-14 12:48:42.573666+00 2025-11-14 12:48:42.573676+00 f t COSTO_SERVICIO 0.00 2 12341 \N +494924 2025-11-14 12:48:42.574986+00 2025-11-14 12:48:42.574991+00 f t DESCUENTO 0.00 3 12341 \N +494925 2025-11-14 12:48:42.576354+00 2025-11-14 12:48:42.576359+00 f t TOTAL 82000.00 4 12341 \N +494926 2025-11-14 12:48:42.577388+00 2025-11-14 12:48:42.577399+00 f t ADELANTO 12000.00 5 12341 \N +506221 2025-11-17 21:14:15.853241+00 2025-11-17 21:14:15.853247+00 f t ADELANTO 0.00 5 12613 \N +495042 2025-11-14 13:19:52.618683+00 2025-11-14 13:19:52.618693+00 f t SUBTOTAL 0.00 1 12345 \N +495043 2025-11-14 13:19:52.635374+00 2025-11-14 13:19:52.635381+00 f t COSTO_SERVICIO 0.00 2 12345 \N +495044 2025-11-14 13:19:52.642547+00 2025-11-14 13:19:52.642555+00 f t DESCUENTO 0.00 3 12345 \N +495045 2025-11-14 13:19:52.646211+00 2025-11-14 13:19:52.646219+00 f t TOTAL 0.00 4 12345 \N +495046 2025-11-14 13:19:52.658055+00 2025-11-14 13:19:52.658062+00 f t ADELANTO 0.00 5 12345 \N +506322 2025-11-17 21:28:23.886324+00 2025-11-17 21:28:23.886333+00 f t SUBTOTAL 0.00 1 12615 \N +506323 2025-11-17 21:28:23.887657+00 2025-11-17 21:28:23.887663+00 f t COSTO_SERVICIO 0.00 2 12615 \N +506324 2025-11-17 21:28:23.888817+00 2025-11-17 21:28:23.888823+00 f t DESCUENTO 0.00 3 12615 \N +500487 2025-11-16 12:44:08.613511+00 2025-11-16 12:44:08.613521+00 f t SUBTOTAL 54000.00 1 12487 \N +500488 2025-11-16 12:44:08.615712+00 2025-11-16 12:44:08.615721+00 f t COSTO_SERVICIO 0.00 2 12487 \N +500489 2025-11-16 12:44:08.617231+00 2025-11-16 12:44:08.617238+00 f t DESCUENTO 0.00 3 12487 \N +500490 2025-11-16 12:44:08.618816+00 2025-11-16 12:44:08.618826+00 f t TOTAL 54000.00 4 12487 \N +500491 2025-11-16 12:44:08.620453+00 2025-11-16 12:44:08.620461+00 f t ADELANTO 13500.00 5 12487 \N +489597 2025-11-13 11:13:03.370712+00 2025-11-13 11:13:03.370722+00 f t SUBTOTAL 46000.00 1 12218 \N +489598 2025-11-13 11:13:03.372382+00 2025-11-13 11:13:03.372389+00 f t COSTO_SERVICIO 0.00 2 12218 \N +489599 2025-11-13 11:13:03.373594+00 2025-11-13 11:13:03.3736+00 f t DESCUENTO 0.00 3 12218 \N +489600 2025-11-13 11:13:03.374804+00 2025-11-13 11:13:03.374809+00 f t TOTAL 46000.00 4 12218 \N +489601 2025-11-13 11:13:03.375934+00 2025-11-13 11:13:03.37594+00 f t ADELANTO 11000.00 5 12218 \N +501417 2025-11-16 18:13:15.035069+00 2025-11-16 18:13:15.035076+00 f t SUBTOTAL 234000.00 1 12506 \N +501418 2025-11-16 18:13:15.036982+00 2025-11-16 18:13:15.036988+00 f t COSTO_SERVICIO 0.00 2 12506 \N +501419 2025-11-16 18:13:15.038229+00 2025-11-16 18:13:15.038238+00 f t DESCUENTO 9200.00 3 12506 \N +501420 2025-11-16 18:13:15.039493+00 2025-11-16 18:13:15.039501+00 f t TOTAL 224800.00 4 12506 \N +501421 2025-11-16 18:13:15.040679+00 2025-11-16 18:13:15.040686+00 f t ADELANTO 64500.00 5 12506 \N +490512 2025-11-13 16:38:00.745381+00 2025-11-13 16:38:00.745388+00 f t SUBTOTAL 54000.00 1 12244 \N +490513 2025-11-13 16:38:00.74711+00 2025-11-13 16:38:00.747116+00 f t COSTO_SERVICIO 0.00 2 12244 \N +490514 2025-11-13 16:38:00.748187+00 2025-11-13 16:38:00.748192+00 f t DESCUENTO 0.00 3 12244 \N +490515 2025-11-13 16:38:00.749629+00 2025-11-13 16:38:00.749634+00 f t TOTAL 54000.00 4 12244 \N +490516 2025-11-13 16:38:00.750847+00 2025-11-13 16:38:00.750852+00 f t ADELANTO 13500.00 5 12244 \N +491887 2025-11-13 23:13:59.480783+00 2025-11-13 23:13:59.480789+00 f t SUBTOTAL 46000.00 1 12283 \N +491888 2025-11-13 23:13:59.482638+00 2025-11-13 23:13:59.482646+00 f t COSTO_SERVICIO 0.00 2 12283 \N +491889 2025-11-13 23:13:59.483796+00 2025-11-13 23:13:59.483801+00 f t DESCUENTO 0.00 3 12283 \N +491890 2025-11-13 23:13:59.484659+00 2025-11-13 23:13:59.484663+00 f t TOTAL 46000.00 4 12283 \N +491891 2025-11-13 23:13:59.485554+00 2025-11-13 23:13:59.485562+00 f t ADELANTO 11000.00 5 12283 \N +488022 2025-11-12 21:06:58.799602+00 2025-11-12 21:06:58.799614+00 f t SUBTOTAL 46000.00 1 12181 \N +488023 2025-11-12 21:06:58.801547+00 2025-11-12 21:06:58.801556+00 f t COSTO_SERVICIO 0.00 2 12181 \N +488024 2025-11-12 21:06:58.802894+00 2025-11-12 21:06:58.8029+00 f t DESCUENTO 0.00 3 12181 \N +488025 2025-11-12 21:06:58.804252+00 2025-11-12 21:06:58.804259+00 f t TOTAL 46000.00 4 12181 \N +488026 2025-11-12 21:06:58.805635+00 2025-11-12 21:06:58.805643+00 f t ADELANTO 11000.00 5 12181 \N +492727 2025-11-14 00:56:54.507679+00 2025-11-14 00:56:54.507688+00 f t SUBTOTAL 55000.00 1 12300 \N +492728 2025-11-14 00:56:54.50986+00 2025-11-14 00:56:54.509867+00 f t COSTO_SERVICIO 0.00 2 12300 \N +492729 2025-11-14 00:56:54.511043+00 2025-11-14 00:56:54.51105+00 f t DESCUENTO 0.00 3 12300 \N +492730 2025-11-14 00:56:54.512447+00 2025-11-14 00:56:54.512453+00 f t TOTAL 55000.00 4 12300 \N +492731 2025-11-14 00:56:54.513692+00 2025-11-14 00:56:54.513697+00 f t ADELANTO 11000.00 5 12300 \N +488047 2025-11-12 21:22:00.548959+00 2025-11-12 21:22:00.548967+00 f t SUBTOTAL 0.00 1 12183 \N +488048 2025-11-12 21:22:00.550545+00 2025-11-12 21:22:00.550551+00 f t COSTO_SERVICIO 0.00 2 12183 \N +488049 2025-11-12 21:22:00.551453+00 2025-11-12 21:22:00.551458+00 f t DESCUENTO 0.00 3 12183 \N +488050 2025-11-12 21:22:00.552332+00 2025-11-12 21:22:00.552337+00 f t TOTAL 0.00 4 12183 \N +488051 2025-11-12 21:22:00.553148+00 2025-11-12 21:22:00.553153+00 f t ADELANTO 0.00 5 12183 \N +488057 2025-11-12 21:29:38.038463+00 2025-11-12 21:29:38.038472+00 f t SUBTOTAL 0.00 1 12184 \N +488058 2025-11-12 21:29:38.039782+00 2025-11-12 21:29:38.039788+00 f t COSTO_SERVICIO 0.00 2 12184 \N +488059 2025-11-12 21:29:38.040893+00 2025-11-12 21:29:38.040899+00 f t DESCUENTO 0.00 3 12184 \N +488060 2025-11-12 21:29:38.041859+00 2025-11-12 21:29:38.041864+00 f t TOTAL 0.00 4 12184 \N +488061 2025-11-12 21:29:38.04276+00 2025-11-12 21:29:38.042765+00 f t ADELANTO 0.00 5 12184 \N +504552 2025-11-17 15:34:50.362335+00 2025-11-17 15:34:50.362346+00 f t SUBTOTAL 23000.00 1 12565 \N +504553 2025-11-17 15:34:50.364725+00 2025-11-17 15:34:50.364737+00 f t COSTO_SERVICIO 0.00 2 12565 \N +504554 2025-11-17 15:34:50.366317+00 2025-11-17 15:34:50.366326+00 f t DESCUENTO 0.00 3 12565 \N +504555 2025-11-17 15:34:50.367971+00 2025-11-17 15:34:50.36798+00 f t TOTAL 23000.00 4 12565 \N +504556 2025-11-17 15:34:50.369303+00 2025-11-17 15:34:50.369311+00 f t ADELANTO 5500.00 5 12565 \N +493487 2025-11-14 01:57:24.126878+00 2025-11-14 01:57:24.126886+00 f t SUBTOTAL 54000.00 1 12313 \N +493488 2025-11-14 01:57:24.129082+00 2025-11-14 01:57:24.12909+00 f t COSTO_SERVICIO 0.00 2 12313 \N +493489 2025-11-14 01:57:24.130531+00 2025-11-14 01:57:24.13054+00 f t DESCUENTO 0.00 3 12313 \N +493490 2025-11-14 01:57:24.132235+00 2025-11-14 01:57:24.132245+00 f t TOTAL 54000.00 4 12313 \N +493491 2025-11-14 01:57:24.135828+00 2025-11-14 01:57:24.135838+00 f t ADELANTO 13500.00 5 12313 \N +504697 2025-11-17 16:36:53.743424+00 2025-11-17 16:36:53.743431+00 f t SUBTOTAL 110000.00 1 12572 \N +504698 2025-11-17 16:36:53.745218+00 2025-11-17 16:36:53.745224+00 f t COSTO_SERVICIO 0.00 2 12572 \N +504699 2025-11-17 16:36:53.746589+00 2025-11-17 16:36:53.746595+00 f t DESCUENTO 0.00 3 12572 \N +504700 2025-11-17 16:36:53.747837+00 2025-11-17 16:36:53.747843+00 f t TOTAL 110000.00 4 12572 \N +494057 2025-11-14 10:31:28.6948+00 2025-11-14 10:31:28.694808+00 f t SUBTOTAL 70000.00 1 12325 \N +494058 2025-11-14 10:31:28.696588+00 2025-11-14 10:31:28.696597+00 f t COSTO_SERVICIO 0.00 2 12325 \N +494059 2025-11-14 10:31:28.697866+00 2025-11-14 10:31:28.697875+00 f t DESCUENTO 0.00 3 12325 \N +494060 2025-11-14 10:31:28.699317+00 2025-11-14 10:31:28.699322+00 f t TOTAL 70000.00 4 12325 \N +494061 2025-11-14 10:31:28.700246+00 2025-11-14 10:31:28.700251+00 f t ADELANTO 19000.00 5 12325 \N +494262 2025-11-14 11:00:57.504264+00 2025-11-14 11:00:57.504272+00 f t SUBTOTAL 88000.00 1 12328 \N +494263 2025-11-14 11:00:57.505888+00 2025-11-14 11:00:57.505896+00 f t COSTO_SERVICIO 0.00 2 12328 \N +494264 2025-11-14 11:00:57.507405+00 2025-11-14 11:00:57.507415+00 f t DESCUENTO 0.00 3 12328 \N +494265 2025-11-14 11:00:57.509014+00 2025-11-14 11:00:57.509022+00 f t TOTAL 88000.00 4 12328 \N +494266 2025-11-14 11:00:57.510373+00 2025-11-14 11:00:57.51038+00 f t ADELANTO 13000.00 5 12328 \N +488122 2025-11-12 21:33:35.208522+00 2025-11-12 21:33:35.208528+00 f t SUBTOTAL 78000.00 1 12185 \N +488123 2025-11-12 21:33:35.209989+00 2025-11-12 21:33:35.209999+00 f t COSTO_SERVICIO 0.00 2 12185 \N +488124 2025-11-12 21:33:35.211224+00 2025-11-12 21:33:35.211229+00 f t DESCUENTO 0.00 3 12185 \N +488125 2025-11-12 21:33:35.212248+00 2025-11-12 21:33:35.212253+00 f t TOTAL 78000.00 4 12185 \N +488126 2025-11-12 21:33:35.213233+00 2025-11-12 21:33:35.213238+00 f t ADELANTO 21500.00 5 12185 \N +488172 2025-11-12 21:40:13.439935+00 2025-11-12 21:40:13.439944+00 f t SUBTOTAL 0.00 1 12186 \N +488173 2025-11-12 21:40:13.441994+00 2025-11-12 21:40:13.442001+00 f t COSTO_SERVICIO 0.00 2 12186 \N +488174 2025-11-12 21:40:13.44323+00 2025-11-12 21:40:13.443237+00 f t DESCUENTO 0.00 3 12186 \N +488175 2025-11-12 21:40:13.444381+00 2025-11-12 21:40:13.444389+00 f t TOTAL 0.00 4 12186 \N +488176 2025-11-12 21:40:13.445546+00 2025-11-12 21:40:13.445551+00 f t ADELANTO 0.00 5 12186 \N +536702 2025-11-23 22:24:27.518332+00 2025-11-23 22:24:27.518341+00 f t SUBTOTAL 0.00 1 13331 \N +536703 2025-11-23 22:24:27.519716+00 2025-11-23 22:24:27.519722+00 f t COSTO_SERVICIO 0.00 2 13331 \N +536704 2025-11-23 22:24:27.520615+00 2025-11-23 22:24:27.52062+00 f t DESCUENTO 0.00 3 13331 \N +536705 2025-11-23 22:24:27.521528+00 2025-11-23 22:24:27.521537+00 f t TOTAL 0.00 4 13331 \N +536706 2025-11-23 22:24:27.522749+00 2025-11-23 22:24:27.522754+00 f t ADELANTO 0.00 5 13331 \N +489607 2025-11-13 11:17:31.171306+00 2025-11-13 11:17:31.171314+00 f t SUBTOTAL 0.00 1 12219 \N +489608 2025-11-13 11:17:31.172822+00 2025-11-13 11:17:31.172829+00 f t COSTO_SERVICIO 0.00 2 12219 \N +489609 2025-11-13 11:17:31.173897+00 2025-11-13 11:17:31.173903+00 f t DESCUENTO 0.00 3 12219 \N +488202 2025-11-12 21:42:17.23753+00 2025-11-12 21:42:17.237538+00 f t SUBTOTAL 55000.00 1 12187 \N +488203 2025-11-12 21:42:17.239094+00 2025-11-12 21:42:17.239101+00 f t COSTO_SERVICIO 0.00 2 12187 \N +488204 2025-11-12 21:42:17.240351+00 2025-11-12 21:42:17.240357+00 f t DESCUENTO 0.00 3 12187 \N +488205 2025-11-12 21:42:17.241383+00 2025-11-12 21:42:17.241388+00 f t TOTAL 55000.00 4 12187 \N +488206 2025-11-12 21:42:17.242674+00 2025-11-12 21:42:17.24268+00 f t ADELANTO 11000.00 5 12187 \N +489610 2025-11-13 11:17:31.174943+00 2025-11-13 11:17:31.17495+00 f t TOTAL 0.00 4 12219 \N +489611 2025-11-13 11:17:31.175989+00 2025-11-13 11:17:31.175995+00 f t ADELANTO 0.00 5 12219 \N +488217 2025-11-12 21:52:18.818594+00 2025-11-12 21:52:18.818602+00 f t SUBTOTAL 30000.00 1 12188 \N +488218 2025-11-12 21:52:18.820158+00 2025-11-12 21:52:18.820165+00 f t COSTO_SERVICIO 0.00 2 12188 \N +488219 2025-11-12 21:52:18.821302+00 2025-11-12 21:52:18.821307+00 f t DESCUENTO 0.00 3 12188 \N +488220 2025-11-12 21:52:18.822299+00 2025-11-12 21:52:18.822307+00 f t TOTAL 30000.00 4 12188 \N +488221 2025-11-12 21:52:18.823213+00 2025-11-12 21:52:18.823218+00 f t ADELANTO 30000.00 5 12188 \N +488227 2025-11-12 22:22:29.648866+00 2025-11-12 22:22:29.648873+00 f t SUBTOTAL 46000.00 1 12179 \N +488228 2025-11-12 22:22:29.650577+00 2025-11-12 22:22:29.650583+00 f t COSTO_SERVICIO 0.00 2 12179 \N +488229 2025-11-12 22:22:29.65162+00 2025-11-12 22:22:29.651626+00 f t DESCUENTO 0.00 3 12179 \N +488230 2025-11-12 22:22:29.652522+00 2025-11-12 22:22:29.652527+00 f t TOTAL 46000.00 4 12179 \N +488231 2025-11-12 22:22:29.65348+00 2025-11-12 22:22:29.653485+00 f t ADELANTO 11000.00 5 12179 \N +488237 2025-11-12 22:23:55.252435+00 2025-11-12 22:23:55.252448+00 f t SUBTOTAL 0.00 1 12189 \N +488238 2025-11-12 22:23:55.253862+00 2025-11-12 22:23:55.253869+00 f t COSTO_SERVICIO 0.00 2 12189 \N +488239 2025-11-12 22:23:55.255163+00 2025-11-12 22:23:55.255174+00 f t DESCUENTO 0.00 3 12189 \N +488240 2025-11-12 22:23:55.256473+00 2025-11-12 22:23:55.256481+00 f t TOTAL 0.00 4 12189 \N +488241 2025-11-12 22:23:55.257983+00 2025-11-12 22:23:55.257992+00 f t ADELANTO 0.00 5 12189 \N +488247 2025-11-12 22:29:50.878144+00 2025-11-12 22:29:50.878155+00 f t SUBTOTAL 0.00 1 12190 \N +488248 2025-11-12 22:29:50.879564+00 2025-11-12 22:29:50.879571+00 f t COSTO_SERVICIO 0.00 2 12190 \N +488249 2025-11-12 22:29:50.880892+00 2025-11-12 22:29:50.880898+00 f t DESCUENTO 0.00 3 12190 \N +488250 2025-11-12 22:29:50.881839+00 2025-11-12 22:29:50.881847+00 f t TOTAL 0.00 4 12190 \N +488251 2025-11-12 22:29:50.882792+00 2025-11-12 22:29:50.882797+00 f t ADELANTO 0.00 5 12190 \N +501607 2025-11-16 20:09:30.910052+00 2025-11-16 20:09:30.910063+00 f t SUBTOTAL 78000.00 1 12512 \N +501608 2025-11-16 20:09:30.912162+00 2025-11-16 20:09:30.912172+00 f t COSTO_SERVICIO 0.00 2 12512 \N +501609 2025-11-16 20:09:30.913841+00 2025-11-16 20:09:30.91385+00 f t DESCUENTO 0.00 3 12512 \N +488257 2025-11-12 22:30:07.686619+00 2025-11-12 22:30:07.686628+00 f t SUBTOTAL 23000.00 1 12167 \N +488258 2025-11-12 22:30:07.688446+00 2025-11-12 22:30:07.688454+00 f t COSTO_SERVICIO 0.00 2 12167 \N +488259 2025-11-12 22:30:07.689927+00 2025-11-12 22:30:07.689935+00 f t DESCUENTO 0.00 3 12167 \N +488260 2025-11-12 22:30:07.691497+00 2025-11-12 22:30:07.691503+00 f t TOTAL 23000.00 4 12167 \N +488261 2025-11-12 22:30:07.692799+00 2025-11-12 22:30:07.692805+00 f t ADELANTO 5500.00 5 12167 \N +501610 2025-11-16 20:09:30.915094+00 2025-11-16 20:09:30.9151+00 f t TOTAL 78000.00 4 12512 \N +501611 2025-11-16 20:09:30.91622+00 2025-11-16 20:09:30.916226+00 f t ADELANTO 21500.00 5 12512 \N +502567 2025-11-17 07:52:41.389608+00 2025-11-17 07:52:41.389615+00 f t SUBTOTAL 70000.00 1 12533 \N +502568 2025-11-17 07:52:41.391114+00 2025-11-17 07:52:41.39112+00 f t COSTO_SERVICIO 0.00 2 12533 \N +502569 2025-11-17 07:52:41.392308+00 2025-11-17 07:52:41.392313+00 f t DESCUENTO 0.00 3 12533 \N +502570 2025-11-17 07:52:41.393251+00 2025-11-17 07:52:41.393256+00 f t TOTAL 70000.00 4 12533 \N +502571 2025-11-17 07:52:41.394563+00 2025-11-17 07:52:41.394572+00 f t ADELANTO 19000.00 5 12533 \N +488297 2025-11-12 22:30:48.660271+00 2025-11-12 22:30:48.660279+00 f t SUBTOTAL 85000.00 1 12191 \N +488298 2025-11-12 22:30:48.661777+00 2025-11-12 22:30:48.661784+00 f t COSTO_SERVICIO 0.00 2 12191 \N +488299 2025-11-12 22:30:48.662882+00 2025-11-12 22:30:48.662888+00 f t DESCUENTO 0.00 3 12191 \N +488300 2025-11-12 22:30:48.663926+00 2025-11-12 22:30:48.663931+00 f t TOTAL 85000.00 4 12191 \N +488301 2025-11-12 22:30:48.664934+00 2025-11-12 22:30:48.664939+00 f t ADELANTO 15000.00 5 12191 \N +492447 2025-11-14 00:16:07.773261+00 2025-11-14 00:16:07.773268+00 f t SUBTOTAL 87000.00 1 12292 \N +492448 2025-11-14 00:16:07.774888+00 2025-11-14 00:16:07.774896+00 f t COSTO_SERVICIO 0.00 2 12292 \N +492449 2025-11-14 00:16:07.77598+00 2025-11-14 00:16:07.775985+00 f t DESCUENTO 0.00 3 12292 \N +492450 2025-11-14 00:16:07.776901+00 2025-11-14 00:16:07.776908+00 f t TOTAL 87000.00 4 12292 \N +492451 2025-11-14 00:16:07.778018+00 2025-11-14 00:16:07.778024+00 f t ADELANTO 87000.00 5 12292 \N +503732 2025-11-17 13:13:31.06783+00 2025-11-17 13:13:31.067839+00 f t SUBTOTAL 0.00 1 12549 \N +503733 2025-11-17 13:13:31.069388+00 2025-11-17 13:13:31.069396+00 f t COSTO_SERVICIO 0.00 2 12549 \N +488352 2025-11-12 23:20:00.82357+00 2025-11-12 23:20:00.823577+00 f t SUBTOTAL 46000.00 1 12192 \N +488353 2025-11-12 23:20:00.825047+00 2025-11-12 23:20:00.825053+00 f t COSTO_SERVICIO 0.00 2 12192 \N +488354 2025-11-12 23:20:00.82619+00 2025-11-12 23:20:00.826195+00 f t DESCUENTO 0.00 3 12192 \N +488355 2025-11-12 23:20:00.827101+00 2025-11-12 23:20:00.827105+00 f t TOTAL 46000.00 4 12192 \N +488356 2025-11-12 23:20:00.828036+00 2025-11-12 23:20:00.828041+00 f t ADELANTO 11000.00 5 12192 \N +488382 2025-11-12 23:39:34.259934+00 2025-11-12 23:39:34.25994+00 f t SUBTOTAL 54000.00 1 12193 \N +488383 2025-11-12 23:39:34.26145+00 2025-11-12 23:39:34.261458+00 f t COSTO_SERVICIO 0.00 2 12193 \N +488384 2025-11-12 23:39:34.262874+00 2025-11-12 23:39:34.262879+00 f t DESCUENTO 0.00 3 12193 \N +488385 2025-11-12 23:39:34.264026+00 2025-11-12 23:39:34.264034+00 f t TOTAL 54000.00 4 12193 \N +488386 2025-11-12 23:39:34.265159+00 2025-11-12 23:39:34.265165+00 f t ADELANTO 13500.00 5 12193 \N +488397 2025-11-13 00:01:31.023462+00 2025-11-13 00:01:31.023473+00 f t SUBTOTAL 46000.00 1 12194 \N +488398 2025-11-13 00:01:31.025664+00 2025-11-13 00:01:31.025674+00 f t COSTO_SERVICIO 0.00 2 12194 \N +488399 2025-11-13 00:01:31.027487+00 2025-11-13 00:01:31.027498+00 f t DESCUENTO 0.00 3 12194 \N +488400 2025-11-13 00:01:31.02903+00 2025-11-13 00:01:31.029039+00 f t TOTAL 46000.00 4 12194 \N +488401 2025-11-13 00:01:31.030463+00 2025-11-13 00:01:31.030471+00 f t ADELANTO 11000.00 5 12194 \N +493602 2025-11-14 02:07:23.555242+00 2025-11-14 02:07:23.555254+00 f t SUBTOTAL 0.00 1 12314 \N +493603 2025-11-14 02:07:23.557311+00 2025-11-14 02:07:23.557322+00 f t COSTO_SERVICIO 0.00 2 12314 \N +493604 2025-11-14 02:07:23.558702+00 2025-11-14 02:07:23.558709+00 f t DESCUENTO 0.00 3 12314 \N +493605 2025-11-14 02:07:23.559848+00 2025-11-14 02:07:23.559856+00 f t TOTAL 0.00 4 12314 \N +493606 2025-11-14 02:07:23.561263+00 2025-11-14 02:07:23.56127+00 f t ADELANTO 0.00 5 12314 \N +489152 2025-11-13 02:30:04.24556+00 2025-11-13 02:30:04.245573+00 f t SUBTOTAL 54000.00 1 12204 \N +489153 2025-11-13 02:30:04.249497+00 2025-11-13 02:30:04.249511+00 f t COSTO_SERVICIO 0.00 2 12204 \N +489154 2025-11-13 02:30:04.252563+00 2025-11-13 02:30:04.252577+00 f t DESCUENTO 0.00 3 12204 \N +489155 2025-11-13 02:30:04.256183+00 2025-11-13 02:30:04.256193+00 f t TOTAL 54000.00 4 12204 \N +489156 2025-11-13 02:30:04.258708+00 2025-11-13 02:30:04.258721+00 f t ADELANTO 13500.00 5 12204 \N +489387 2025-11-13 04:28:25.093715+00 2025-11-13 04:28:25.093725+00 f t SUBTOTAL 46000.00 1 12210 \N +489388 2025-11-13 04:28:25.095698+00 2025-11-13 04:28:25.095707+00 f t COSTO_SERVICIO 0.00 2 12210 \N +489389 2025-11-13 04:28:25.097255+00 2025-11-13 04:28:25.097262+00 f t DESCUENTO 0.00 3 12210 \N +489390 2025-11-13 04:28:25.098496+00 2025-11-13 04:28:25.098504+00 f t TOTAL 46000.00 4 12210 \N +489391 2025-11-13 04:28:25.099633+00 2025-11-13 04:28:25.099638+00 f t ADELANTO 11000.00 5 12210 \N +489617 2025-11-13 11:44:50.8907+00 2025-11-13 11:44:50.890708+00 f t SUBTOTAL 0.00 1 12220 \N +489618 2025-11-13 11:44:50.892058+00 2025-11-13 11:44:50.892064+00 f t COSTO_SERVICIO 0.00 2 12220 \N +489619 2025-11-13 11:44:50.893119+00 2025-11-13 11:44:50.893127+00 f t DESCUENTO 0.00 3 12220 \N +489620 2025-11-13 11:44:50.894152+00 2025-11-13 11:44:50.894158+00 f t TOTAL 0.00 4 12220 \N +489621 2025-11-13 11:44:50.895147+00 2025-11-13 11:44:50.895153+00 f t ADELANTO 0.00 5 12220 \N +501267 2025-11-16 17:42:37.855518+00 2025-11-16 17:42:37.855526+00 f t SUBTOTAL 0.00 1 12505 \N +501268 2025-11-16 17:42:37.856816+00 2025-11-16 17:42:37.856822+00 f t COSTO_SERVICIO 0.00 2 12505 \N +501269 2025-11-16 17:42:37.857789+00 2025-11-16 17:42:37.857795+00 f t DESCUENTO 0.00 3 12505 \N +501270 2025-11-16 17:42:37.858732+00 2025-11-16 17:42:37.858736+00 f t TOTAL 0.00 4 12505 \N +501271 2025-11-16 17:42:37.859692+00 2025-11-16 17:42:37.859697+00 f t ADELANTO 0.00 5 12505 \N +513171 2025-11-19 02:10:53.359187+00 2025-11-19 02:10:53.359196+00 f t ADELANTO 0.00 5 12776 \N +513707 2025-11-19 04:26:55.796173+00 2025-11-19 04:26:55.796183+00 f t SUBTOTAL 55000.00 1 12786 \N +513708 2025-11-19 04:26:55.798372+00 2025-11-19 04:26:55.798381+00 f t COSTO_SERVICIO 0.00 2 12786 \N +513709 2025-11-19 04:26:55.79976+00 2025-11-19 04:26:55.799768+00 f t DESCUENTO 0.00 3 12786 \N +513710 2025-11-19 04:26:55.801095+00 2025-11-19 04:26:55.801102+00 f t TOTAL 55000.00 4 12786 \N +513711 2025-11-19 04:26:55.802439+00 2025-11-19 04:26:55.802447+00 f t ADELANTO 11000.00 5 12786 \N +491467 2025-11-13 22:09:49.729923+00 2025-11-13 22:09:49.729936+00 f t SUBTOTAL 0.00 1 12272 \N +491468 2025-11-13 22:09:49.732537+00 2025-11-13 22:09:49.732547+00 f t COSTO_SERVICIO 0.00 2 12272 \N +491469 2025-11-13 22:09:49.734031+00 2025-11-13 22:09:49.734039+00 f t DESCUENTO 0.00 3 12272 \N +491470 2025-11-13 22:09:49.735424+00 2025-11-13 22:09:49.735433+00 f t TOTAL 0.00 4 12272 \N +491471 2025-11-13 22:09:49.736732+00 2025-11-13 22:09:49.736739+00 f t ADELANTO 0.00 5 12272 \N +514767 2025-11-19 11:53:08.870972+00 2025-11-19 11:53:08.870984+00 f t SUBTOTAL 0.00 1 12811 \N +514768 2025-11-19 11:53:08.87254+00 2025-11-19 11:53:08.87255+00 f t COSTO_SERVICIO 0.00 2 12811 \N +514769 2025-11-19 11:53:08.873691+00 2025-11-19 11:53:08.873699+00 f t DESCUENTO 0.00 3 12811 \N +514770 2025-11-19 11:53:08.874653+00 2025-11-19 11:53:08.874659+00 f t TOTAL 0.00 4 12811 \N +514771 2025-11-19 11:53:08.875616+00 2025-11-19 11:53:08.875622+00 f t ADELANTO 0.00 5 12811 \N +503734 2025-11-17 13:13:31.07073+00 2025-11-17 13:13:31.070736+00 f t DESCUENTO 0.00 3 12549 \N +503735 2025-11-17 13:13:31.071934+00 2025-11-17 13:13:31.071939+00 f t TOTAL 0.00 4 12549 \N +503736 2025-11-17 13:13:31.073545+00 2025-11-17 13:13:31.073553+00 f t ADELANTO 0.00 5 12549 \N +516252 2025-11-19 14:29:54.390602+00 2025-11-19 14:29:54.390614+00 f t SUBTOTAL 55000.00 1 12836 \N +516253 2025-11-19 14:29:54.392983+00 2025-11-19 14:29:54.392994+00 f t COSTO_SERVICIO 0.00 2 12836 \N +516254 2025-11-19 14:29:54.394441+00 2025-11-19 14:29:54.394448+00 f t DESCUENTO 0.00 3 12836 \N +516255 2025-11-19 14:29:54.395983+00 2025-11-19 14:29:54.39599+00 f t TOTAL 55000.00 4 12836 \N +504282 2025-11-17 14:59:43.75854+00 2025-11-17 14:59:43.758548+00 f t SUBTOTAL 70000.00 1 12557 \N +504283 2025-11-17 14:59:43.760328+00 2025-11-17 14:59:43.760335+00 f t COSTO_SERVICIO 0.00 2 12557 \N +504284 2025-11-17 14:59:43.761364+00 2025-11-17 14:59:43.76137+00 f t DESCUENTO 0.00 3 12557 \N +504285 2025-11-17 14:59:43.76226+00 2025-11-17 14:59:43.762266+00 f t TOTAL 70000.00 4 12557 \N +504286 2025-11-17 14:59:43.76337+00 2025-11-17 14:59:43.763375+00 f t ADELANTO 19000.00 5 12557 \N +516256 2025-11-19 14:29:54.39722+00 2025-11-19 14:29:54.397227+00 f t ADELANTO 11000.00 5 12836 \N +516417 2025-11-19 14:53:40.292399+00 2025-11-19 14:53:40.292406+00 f t SUBTOTAL 54000.00 1 12847 \N +516418 2025-11-19 14:53:40.294272+00 2025-11-19 14:53:40.294279+00 f t COSTO_SERVICIO 0.00 2 12847 \N +516419 2025-11-19 14:53:40.295736+00 2025-11-19 14:53:40.295744+00 f t DESCUENTO 0.00 3 12847 \N +493612 2025-11-14 02:21:48.457497+00 2025-11-14 02:21:48.457506+00 f t SUBTOTAL 0.00 1 12315 \N +493613 2025-11-14 02:21:48.4589+00 2025-11-14 02:21:48.458906+00 f t COSTO_SERVICIO 0.00 2 12315 \N +493614 2025-11-14 02:21:48.460107+00 2025-11-14 02:21:48.460114+00 f t DESCUENTO 0.00 3 12315 \N +493615 2025-11-14 02:21:48.461193+00 2025-11-14 02:21:48.461198+00 f t TOTAL 0.00 4 12315 \N +493616 2025-11-14 02:21:48.462128+00 2025-11-14 02:21:48.462135+00 f t ADELANTO 0.00 5 12315 \N +504701 2025-11-17 16:36:53.749009+00 2025-11-17 16:36:53.749015+00 f t ADELANTO 10000.00 5 12572 \N +504937 2025-11-17 17:07:09.189993+00 2025-11-17 17:07:09.190004+00 f t SUBTOTAL 0.00 1 12581 \N +504938 2025-11-17 17:07:09.191945+00 2025-11-17 17:07:09.191955+00 f t COSTO_SERVICIO 0.00 2 12581 \N +504939 2025-11-17 17:07:09.19344+00 2025-11-17 17:07:09.193447+00 f t DESCUENTO 0.00 3 12581 \N +504940 2025-11-17 17:07:09.195108+00 2025-11-17 17:07:09.195118+00 f t TOTAL 0.00 4 12581 \N +504941 2025-11-17 17:07:09.196641+00 2025-11-17 17:07:09.196649+00 f t ADELANTO 0.00 5 12581 \N +494672 2025-11-14 11:57:19.071242+00 2025-11-14 11:57:19.071249+00 f t SUBTOTAL 87000.00 1 12333 \N +494673 2025-11-14 11:57:19.072647+00 2025-11-14 11:57:19.072652+00 f t COSTO_SERVICIO 0.00 2 12333 \N +494674 2025-11-14 11:57:19.073829+00 2025-11-14 11:57:19.073836+00 f t DESCUENTO 0.00 3 12333 \N +494675 2025-11-14 11:57:19.074928+00 2025-11-14 11:57:19.074935+00 f t TOTAL 87000.00 4 12333 \N +494676 2025-11-14 11:57:19.075908+00 2025-11-14 11:57:19.075915+00 f t ADELANTO 87000.00 5 12333 \N +494982 2025-11-14 12:56:38.958691+00 2025-11-14 12:56:38.958699+00 f t SUBTOTAL 55000.00 1 12342 \N +494983 2025-11-14 12:56:38.960343+00 2025-11-14 12:56:38.96035+00 f t COSTO_SERVICIO 0.00 2 12342 \N +494984 2025-11-14 12:56:38.961404+00 2025-11-14 12:56:38.961409+00 f t DESCUENTO 0.00 3 12342 \N +494985 2025-11-14 12:56:38.962322+00 2025-11-14 12:56:38.962328+00 f t TOTAL 55000.00 4 12342 \N +494986 2025-11-14 12:56:38.963201+00 2025-11-14 12:56:38.963206+00 f t ADELANTO 11000.00 5 12342 \N +495072 2025-11-14 13:48:21.511397+00 2025-11-14 13:48:21.511404+00 f t SUBTOTAL 85000.00 1 12347 \N +495073 2025-11-14 13:48:21.513351+00 2025-11-14 13:48:21.513361+00 f t COSTO_SERVICIO 0.00 2 12347 \N +495074 2025-11-14 13:48:21.514952+00 2025-11-14 13:48:21.514959+00 f t DESCUENTO 0.00 3 12347 \N +495075 2025-11-14 13:48:21.516453+00 2025-11-14 13:48:21.516461+00 f t TOTAL 85000.00 4 12347 \N +495076 2025-11-14 13:48:21.517874+00 2025-11-14 13:48:21.51788+00 f t ADELANTO 15000.00 5 12347 \N +506325 2025-11-17 21:28:23.889733+00 2025-11-17 21:28:23.889738+00 f t TOTAL 0.00 4 12615 \N +506326 2025-11-17 21:28:23.890861+00 2025-11-17 21:28:23.890867+00 f t ADELANTO 0.00 5 12615 \N +500232 2025-11-16 00:18:01.265822+00 2025-11-16 00:18:01.265831+00 f t SUBTOTAL 82000.00 1 12480 \N +500233 2025-11-16 00:18:01.267707+00 2025-11-16 00:18:01.267714+00 f t COSTO_SERVICIO 0.00 2 12480 \N +500234 2025-11-16 00:18:01.268858+00 2025-11-16 00:18:01.268863+00 f t DESCUENTO 0.00 3 12480 \N +500235 2025-11-16 00:18:01.270025+00 2025-11-16 00:18:01.270031+00 f t TOTAL 82000.00 4 12480 \N +500236 2025-11-16 00:18:01.271107+00 2025-11-16 00:18:01.271112+00 f t ADELANTO 12000.00 5 12480 \N +548292 2025-11-25 21:00:35.385693+00 2025-11-25 21:00:35.385701+00 f t SUBTOTAL 55000.00 1 13599 \N +548293 2025-11-25 21:00:35.387298+00 2025-11-25 21:00:35.387304+00 f t COSTO_SERVICIO 0.00 2 13599 \N +495137 2025-11-14 14:09:34.136205+00 2025-11-14 14:09:34.136216+00 f t SUBTOTAL 88000.00 1 12348 \N +495138 2025-11-14 14:09:34.138521+00 2025-11-14 14:09:34.138532+00 f t COSTO_SERVICIO 0.00 2 12348 \N +495139 2025-11-14 14:09:34.140672+00 2025-11-14 14:09:34.140683+00 f t DESCUENTO 0.00 3 12348 \N +495140 2025-11-14 14:09:34.142439+00 2025-11-14 14:09:34.142448+00 f t TOTAL 88000.00 4 12348 \N +495141 2025-11-14 14:09:34.143971+00 2025-11-14 14:09:34.143977+00 f t ADELANTO 13000.00 5 12348 \N +501777 2025-11-16 22:16:40.505599+00 2025-11-16 22:16:40.505605+00 f t SUBTOTAL 139750.00 1 12514 \N +501778 2025-11-16 22:16:40.507113+00 2025-11-16 22:16:40.507118+00 f t COSTO_SERVICIO 0.00 2 12514 \N +501779 2025-11-16 22:16:40.508072+00 2025-11-16 22:16:40.508077+00 f t DESCUENTO 0.00 3 12514 \N +501780 2025-11-16 22:16:40.508905+00 2025-11-16 22:16:40.508911+00 f t TOTAL 139750.00 4 12514 \N +501781 2025-11-16 22:16:40.509827+00 2025-11-16 22:16:40.509832+00 f t ADELANTO 29750.00 5 12514 \N +502092 2025-11-17 01:10:03.890121+00 2025-11-17 01:10:03.890138+00 f t SUBTOTAL 0.00 1 12520 \N +502093 2025-11-17 01:10:03.914378+00 2025-11-17 01:10:03.914391+00 f t COSTO_SERVICIO 0.00 2 12520 \N +502094 2025-11-17 01:10:03.91821+00 2025-11-17 01:10:03.918225+00 f t DESCUENTO 0.00 3 12520 \N +502095 2025-11-17 01:10:03.923896+00 2025-11-17 01:10:03.92391+00 f t TOTAL 0.00 4 12520 \N +502096 2025-11-17 01:10:03.928427+00 2025-11-17 01:10:03.928439+00 f t ADELANTO 0.00 5 12520 \N +502262 2025-11-17 03:00:23.613062+00 2025-11-17 03:00:23.613073+00 f t SUBTOTAL 70000.00 1 12526 \N +502263 2025-11-17 03:00:23.61583+00 2025-11-17 03:00:23.615839+00 f t COSTO_SERVICIO 0.00 2 12526 \N +502264 2025-11-17 03:00:23.618392+00 2025-11-17 03:00:23.618404+00 f t DESCUENTO 0.00 3 12526 \N +502265 2025-11-17 03:00:23.620707+00 2025-11-17 03:00:23.620719+00 f t TOTAL 70000.00 4 12526 \N +502266 2025-11-17 03:00:23.622773+00 2025-11-17 03:00:23.622784+00 f t ADELANTO 19000.00 5 12526 \N +495167 2025-11-14 14:26:35.927662+00 2025-11-14 14:26:35.927669+00 f t SUBTOTAL 60000.00 1 12349 \N +495168 2025-11-14 14:26:35.929316+00 2025-11-14 14:26:35.929322+00 f t COSTO_SERVICIO 0.00 2 12349 \N +495169 2025-11-14 14:26:35.93045+00 2025-11-14 14:26:35.930456+00 f t DESCUENTO 0.00 3 12349 \N +495170 2025-11-14 14:26:35.931444+00 2025-11-14 14:26:35.931449+00 f t TOTAL 60000.00 4 12349 \N +495171 2025-11-14 14:26:35.932594+00 2025-11-14 14:26:35.932599+00 f t ADELANTO 60000.00 5 12349 \N +495177 2025-11-14 14:33:45.923622+00 2025-11-14 14:33:45.923633+00 f t SUBTOTAL 0.00 1 12350 \N +495178 2025-11-14 14:33:45.925039+00 2025-11-14 14:33:45.925049+00 f t COSTO_SERVICIO 0.00 2 12350 \N +495179 2025-11-14 14:33:45.926217+00 2025-11-14 14:33:45.926225+00 f t DESCUENTO 0.00 3 12350 \N +495180 2025-11-14 14:33:45.927301+00 2025-11-14 14:33:45.927307+00 f t TOTAL 0.00 4 12350 \N +495181 2025-11-14 14:33:45.928247+00 2025-11-14 14:33:45.928254+00 f t ADELANTO 0.00 5 12350 \N +495187 2025-11-14 14:55:17.150205+00 2025-11-14 14:55:17.150216+00 f t SUBTOTAL 0.00 1 12351 \N +495188 2025-11-14 14:55:17.151575+00 2025-11-14 14:55:17.151582+00 f t COSTO_SERVICIO 0.00 2 12351 \N +495189 2025-11-14 14:55:17.152669+00 2025-11-14 14:55:17.152706+00 f t DESCUENTO 0.00 3 12351 \N +495190 2025-11-14 14:55:17.153603+00 2025-11-14 14:55:17.153608+00 f t TOTAL 0.00 4 12351 \N +495191 2025-11-14 14:55:17.154465+00 2025-11-14 14:55:17.154469+00 f t ADELANTO 0.00 5 12351 \N +495217 2025-11-14 14:58:20.488586+00 2025-11-14 14:58:20.488593+00 f t SUBTOTAL 46000.00 1 12352 \N +495218 2025-11-14 14:58:20.490316+00 2025-11-14 14:58:20.490321+00 f t COSTO_SERVICIO 0.00 2 12352 \N +495219 2025-11-14 14:58:20.491465+00 2025-11-14 14:58:20.49147+00 f t DESCUENTO 0.00 3 12352 \N +495220 2025-11-14 14:58:20.492517+00 2025-11-14 14:58:20.492522+00 f t TOTAL 46000.00 4 12352 \N +495221 2025-11-14 14:58:20.493687+00 2025-11-14 14:58:20.493692+00 f t ADELANTO 11000.00 5 12352 \N +504147 2025-11-17 14:18:04.371356+00 2025-11-17 14:18:04.371365+00 f t SUBTOTAL 180000.00 1 12553 \N +504148 2025-11-17 14:18:04.373312+00 2025-11-17 14:18:04.373321+00 f t COSTO_SERVICIO 0.00 2 12553 \N +504149 2025-11-17 14:18:04.374574+00 2025-11-17 14:18:04.374582+00 f t DESCUENTO 9200.00 3 12553 \N +504150 2025-11-17 14:18:04.375854+00 2025-11-17 14:18:04.37586+00 f t TOTAL 170800.00 4 12553 \N +504151 2025-11-17 14:18:04.377189+00 2025-11-17 14:18:04.377196+00 f t ADELANTO 51000.00 5 12553 \N +504432 2025-11-17 15:15:13.122504+00 2025-11-17 15:15:13.122513+00 f t SUBTOTAL 54000.00 1 12561 \N +504433 2025-11-17 15:15:13.124621+00 2025-11-17 15:15:13.12463+00 f t COSTO_SERVICIO 0.00 2 12561 \N +504434 2025-11-17 15:15:13.126308+00 2025-11-17 15:15:13.126315+00 f t DESCUENTO 0.00 3 12561 \N +504435 2025-11-17 15:15:13.127887+00 2025-11-17 15:15:13.127894+00 f t TOTAL 54000.00 4 12561 \N +504436 2025-11-17 15:15:13.129246+00 2025-11-17 15:15:13.129252+00 f t ADELANTO 13500.00 5 12561 \N +495287 2025-11-14 15:02:59.923663+00 2025-11-14 15:02:59.923675+00 f t SUBTOTAL 0.00 1 12354 \N +495288 2025-11-14 15:02:59.925651+00 2025-11-14 15:02:59.925658+00 f t COSTO_SERVICIO 0.00 2 12354 \N +495289 2025-11-14 15:02:59.92698+00 2025-11-14 15:02:59.926987+00 f t DESCUENTO 0.00 3 12354 \N +495290 2025-11-14 15:02:59.928228+00 2025-11-14 15:02:59.928234+00 f t TOTAL 0.00 4 12354 \N +495291 2025-11-14 15:02:59.929192+00 2025-11-14 15:02:59.929198+00 f t ADELANTO 0.00 5 12354 \N +495312 2025-11-14 15:03:55.778853+00 2025-11-14 15:03:55.778863+00 f t SUBTOTAL 121000.00 1 12353 \N +495313 2025-11-14 15:03:55.780645+00 2025-11-14 15:03:55.780655+00 f t COSTO_SERVICIO 0.00 2 12353 \N +495314 2025-11-14 15:03:55.781978+00 2025-11-14 15:03:55.781986+00 f t DESCUENTO 0.00 3 12353 \N +495315 2025-11-14 15:03:55.783285+00 2025-11-14 15:03:55.783292+00 f t TOTAL 121000.00 4 12353 \N +495316 2025-11-14 15:03:55.784999+00 2025-11-14 15:03:55.785005+00 f t ADELANTO 26000.00 5 12353 \N +505582 2025-11-17 19:10:25.584625+00 2025-11-17 19:10:25.584636+00 f t SUBTOTAL 54000.00 1 12598 \N +505583 2025-11-17 19:10:25.586404+00 2025-11-17 19:10:25.586411+00 f t COSTO_SERVICIO 0.00 2 12598 \N +505584 2025-11-17 19:10:25.587791+00 2025-11-17 19:10:25.5878+00 f t DESCUENTO 0.00 3 12598 \N +505585 2025-11-17 19:10:25.589053+00 2025-11-17 19:10:25.589068+00 f t TOTAL 54000.00 4 12598 \N +505586 2025-11-17 19:10:25.590135+00 2025-11-17 19:10:25.59014+00 f t ADELANTO 13500.00 5 12598 \N +505687 2025-11-17 19:26:13.758895+00 2025-11-17 19:26:13.758901+00 f t SUBTOTAL 54000.00 1 12601 \N +505688 2025-11-17 19:26:13.7608+00 2025-11-17 19:26:13.760806+00 f t COSTO_SERVICIO 0.00 2 12601 \N +505689 2025-11-17 19:26:13.761948+00 2025-11-17 19:26:13.761953+00 f t DESCUENTO 0.00 3 12601 \N +495337 2025-11-14 15:10:12.125456+00 2025-11-14 15:10:12.12547+00 f t SUBTOTAL 0.00 1 12355 \N +495338 2025-11-14 15:10:12.128649+00 2025-11-14 15:10:12.128658+00 f t COSTO_SERVICIO 0.00 2 12355 \N +495339 2025-11-14 15:10:12.130537+00 2025-11-14 15:10:12.130545+00 f t DESCUENTO 0.00 3 12355 \N +495340 2025-11-14 15:10:12.132399+00 2025-11-14 15:10:12.132409+00 f t TOTAL 0.00 4 12355 \N +495341 2025-11-14 15:10:12.134231+00 2025-11-14 15:10:12.13424+00 f t ADELANTO 0.00 5 12355 \N +505690 2025-11-17 19:26:13.762988+00 2025-11-17 19:26:13.762993+00 f t TOTAL 54000.00 4 12601 \N +505691 2025-11-17 19:26:13.764124+00 2025-11-17 19:26:13.764129+00 f t ADELANTO 13500.00 5 12601 \N +495392 2025-11-14 15:16:28.047939+00 2025-11-14 15:16:28.047947+00 f t SUBTOTAL 55000.00 1 12356 \N +495393 2025-11-14 15:16:28.048914+00 2025-11-14 15:16:28.04892+00 f t COSTO_SERVICIO 0.00 2 12356 \N +495394 2025-11-14 15:16:28.049547+00 2025-11-14 15:16:28.049554+00 f t DESCUENTO 0.00 3 12356 \N +495395 2025-11-14 15:16:28.050102+00 2025-11-14 15:16:28.050107+00 f t TOTAL 55000.00 4 12356 \N +495396 2025-11-14 15:16:28.050639+00 2025-11-14 15:16:28.050644+00 f t ADELANTO 11000.00 5 12356 \N +495402 2025-11-14 15:22:18.039797+00 2025-11-14 15:22:18.039804+00 f t SUBTOTAL 0.00 1 12357 \N +495403 2025-11-14 15:22:18.041444+00 2025-11-14 15:22:18.041451+00 f t COSTO_SERVICIO 0.00 2 12357 \N +495404 2025-11-14 15:22:18.042635+00 2025-11-14 15:22:18.042641+00 f t DESCUENTO 0.00 3 12357 \N +495405 2025-11-14 15:22:18.043788+00 2025-11-14 15:22:18.043795+00 f t TOTAL 0.00 4 12357 \N +495406 2025-11-14 15:22:18.044774+00 2025-11-14 15:22:18.044778+00 f t ADELANTO 0.00 5 12357 \N +500727 2025-11-16 14:07:44.603895+00 2025-11-16 14:07:44.603909+00 f t SUBTOTAL 0.00 1 12492 \N +500728 2025-11-16 14:07:44.606154+00 2025-11-16 14:07:44.606167+00 f t COSTO_SERVICIO 0.00 2 12492 \N +500729 2025-11-16 14:07:44.607663+00 2025-11-16 14:07:44.607672+00 f t DESCUENTO 0.00 3 12492 \N +500730 2025-11-16 14:07:44.609036+00 2025-11-16 14:07:44.609044+00 f t TOTAL 0.00 4 12492 \N +500731 2025-11-16 14:07:44.61055+00 2025-11-16 14:07:44.610558+00 f t ADELANTO 0.00 5 12492 \N +537182 2025-11-24 00:58:38.867137+00 2025-11-24 00:58:38.867144+00 f t SUBTOTAL 55000.00 1 13338 \N +537183 2025-11-24 00:58:38.869017+00 2025-11-24 00:58:38.869025+00 f t COSTO_SERVICIO 0.00 2 13338 \N +501277 2025-11-16 17:42:54.117685+00 2025-11-16 17:42:54.117695+00 f t SUBTOTAL 70000.00 1 12504 \N +501278 2025-11-16 17:42:54.119752+00 2025-11-16 17:42:54.119761+00 f t COSTO_SERVICIO 0.00 2 12504 \N +501279 2025-11-16 17:42:54.12116+00 2025-11-16 17:42:54.121168+00 f t DESCUENTO 0.00 3 12504 \N +501280 2025-11-16 17:42:54.122474+00 2025-11-16 17:42:54.122481+00 f t TOTAL 70000.00 4 12504 \N +501281 2025-11-16 17:42:54.123631+00 2025-11-16 17:42:54.123639+00 f t ADELANTO 19000.00 5 12504 \N +537184 2025-11-24 00:58:38.870202+00 2025-11-24 00:58:38.870207+00 f t DESCUENTO 0.00 3 13338 \N +537185 2025-11-24 00:58:38.871134+00 2025-11-24 00:58:38.871139+00 f t TOTAL 55000.00 4 13338 \N +537186 2025-11-24 00:58:38.87206+00 2025-11-24 00:58:38.872065+00 f t ADELANTO 11000.00 5 13338 \N +495452 2025-11-14 15:32:02.980364+00 2025-11-14 15:32:02.980372+00 f t SUBTOTAL 78000.00 1 12358 \N +495453 2025-11-14 15:32:02.982206+00 2025-11-14 15:32:02.982214+00 f t COSTO_SERVICIO 0.00 2 12358 \N +495454 2025-11-14 15:32:02.984443+00 2025-11-14 15:32:02.984454+00 f t DESCUENTO 0.00 3 12358 \N +495455 2025-11-14 15:32:02.985912+00 2025-11-14 15:32:02.985919+00 f t TOTAL 78000.00 4 12358 \N +495456 2025-11-14 15:32:02.987256+00 2025-11-14 15:32:02.987262+00 f t ADELANTO 21500.00 5 12358 \N +495462 2025-11-14 15:38:53.174346+00 2025-11-14 15:38:53.174358+00 f t SUBTOTAL 0.00 1 12359 \N +495463 2025-11-14 15:38:53.17584+00 2025-11-14 15:38:53.175847+00 f t COSTO_SERVICIO 0.00 2 12359 \N +495464 2025-11-14 15:38:53.177014+00 2025-11-14 15:38:53.17702+00 f t DESCUENTO 0.00 3 12359 \N +495465 2025-11-14 15:38:53.178027+00 2025-11-14 15:38:53.178032+00 f t TOTAL 0.00 4 12359 \N +495466 2025-11-14 15:38:53.179039+00 2025-11-14 15:38:53.179047+00 f t ADELANTO 0.00 5 12359 \N +513717 2025-11-19 04:28:51.821774+00 2025-11-19 04:28:51.821783+00 f t SUBTOTAL 0.00 1 12787 \N +513718 2025-11-19 04:28:51.823155+00 2025-11-19 04:28:51.823162+00 f t COSTO_SERVICIO 0.00 2 12787 \N +513719 2025-11-19 04:28:51.824248+00 2025-11-19 04:28:51.824253+00 f t DESCUENTO 0.00 3 12787 \N +513720 2025-11-19 04:28:51.825444+00 2025-11-19 04:28:51.825451+00 f t TOTAL 0.00 4 12787 \N +495477 2025-11-14 16:28:20.512824+00 2025-11-14 16:28:20.512833+00 f t SUBTOTAL 60000.00 1 12360 \N +495478 2025-11-14 16:28:20.514816+00 2025-11-14 16:28:20.514825+00 f t COSTO_SERVICIO 0.00 2 12360 \N +495479 2025-11-14 16:28:20.516421+00 2025-11-14 16:28:20.516428+00 f t DESCUENTO 0.00 3 12360 \N +495480 2025-11-14 16:28:20.517801+00 2025-11-14 16:28:20.517807+00 f t TOTAL 60000.00 4 12360 \N +495481 2025-11-14 16:28:20.518906+00 2025-11-14 16:28:20.518912+00 f t ADELANTO 50000.00 5 12360 \N +513721 2025-11-19 04:28:51.826438+00 2025-11-19 04:28:51.826444+00 f t ADELANTO 0.00 5 12787 \N +495492 2025-11-14 16:35:10.409268+00 2025-11-14 16:35:10.409277+00 f t SUBTOTAL 46000.00 1 12361 \N +495493 2025-11-14 16:35:10.411702+00 2025-11-14 16:35:10.411715+00 f t COSTO_SERVICIO 0.00 2 12361 \N +495494 2025-11-14 16:35:10.413539+00 2025-11-14 16:35:10.413547+00 f t DESCUENTO 0.00 3 12361 \N +495495 2025-11-14 16:35:10.414931+00 2025-11-14 16:35:10.41494+00 f t TOTAL 46000.00 4 12361 \N +495496 2025-11-14 16:35:10.416526+00 2025-11-14 16:35:10.416534+00 f t ADELANTO 11000.00 5 12361 \N +495502 2025-11-14 16:43:25.831291+00 2025-11-14 16:43:25.831301+00 f t SUBTOTAL 0.00 1 12362 \N +495503 2025-11-14 16:43:25.832685+00 2025-11-14 16:43:25.832692+00 f t COSTO_SERVICIO 0.00 2 12362 \N +495504 2025-11-14 16:43:25.833862+00 2025-11-14 16:43:25.833868+00 f t DESCUENTO 0.00 3 12362 \N +495505 2025-11-14 16:43:25.834866+00 2025-11-14 16:43:25.834871+00 f t TOTAL 0.00 4 12362 \N +495506 2025-11-14 16:43:25.835882+00 2025-11-14 16:43:25.835888+00 f t ADELANTO 0.00 5 12362 \N +502742 2025-11-17 12:33:41.734556+00 2025-11-17 12:33:41.734565+00 f t SUBTOTAL 94000.00 1 12537 \N +502743 2025-11-17 12:33:41.73639+00 2025-11-17 12:33:41.736395+00 f t COSTO_SERVICIO 0.00 2 12537 \N +495517 2025-11-14 16:58:32.830987+00 2025-11-14 16:58:32.830996+00 f t SUBTOTAL 55000.00 1 12363 \N +495518 2025-11-14 16:58:32.832993+00 2025-11-14 16:58:32.833001+00 f t COSTO_SERVICIO 0.00 2 12363 \N +495519 2025-11-14 16:58:32.834442+00 2025-11-14 16:58:32.834448+00 f t DESCUENTO 0.00 3 12363 \N +495520 2025-11-14 16:58:32.835537+00 2025-11-14 16:58:32.835542+00 f t TOTAL 55000.00 4 12363 \N +495521 2025-11-14 16:58:32.836487+00 2025-11-14 16:58:32.836492+00 f t ADELANTO 11000.00 5 12363 \N +502744 2025-11-17 12:33:41.737348+00 2025-11-17 12:33:41.737353+00 f t DESCUENTO 0.00 3 12537 \N +502745 2025-11-17 12:33:41.738159+00 2025-11-17 12:33:41.738164+00 f t TOTAL 94000.00 4 12537 \N +502746 2025-11-17 12:33:41.738875+00 2025-11-17 12:33:41.738879+00 f t ADELANTO 27000.00 5 12537 \N +514777 2025-11-19 11:57:52.074947+00 2025-11-19 11:57:52.074956+00 f t SUBTOTAL 0.00 1 12812 \N +514778 2025-11-19 11:57:52.076444+00 2025-11-19 11:57:52.076451+00 f t COSTO_SERVICIO 0.00 2 12812 \N +514779 2025-11-19 11:57:52.077667+00 2025-11-19 11:57:52.077674+00 f t DESCUENTO 0.00 3 12812 \N +514780 2025-11-19 11:57:52.078791+00 2025-11-19 11:57:52.078804+00 f t TOTAL 0.00 4 12812 \N +514781 2025-11-19 11:57:52.079791+00 2025-11-19 11:57:52.079797+00 f t ADELANTO 0.00 5 12812 \N +503327 2025-11-17 13:00:21.025057+00 2025-11-17 13:00:21.02507+00 f t SUBTOTAL 54000.00 1 12543 \N +503328 2025-11-17 13:00:21.028229+00 2025-11-17 13:00:21.028241+00 f t COSTO_SERVICIO 0.00 2 12543 \N +503329 2025-11-17 13:00:21.030288+00 2025-11-17 13:00:21.030297+00 f t DESCUENTO 0.00 3 12543 \N +503330 2025-11-17 13:00:21.032514+00 2025-11-17 13:00:21.032523+00 f t TOTAL 54000.00 4 12543 \N +503331 2025-11-17 13:00:21.034359+00 2025-11-17 13:00:21.034366+00 f t ADELANTO 13500.00 5 12543 \N +495547 2025-11-14 17:17:19.0641+00 2025-11-14 17:17:19.064112+00 f t SUBTOTAL 55000.00 1 12364 \N +495548 2025-11-14 17:17:19.066506+00 2025-11-14 17:17:19.066517+00 f t COSTO_SERVICIO 0.00 2 12364 \N +495549 2025-11-14 17:17:19.069815+00 2025-11-14 17:17:19.069827+00 f t DESCUENTO 0.00 3 12364 \N +495550 2025-11-14 17:17:19.071606+00 2025-11-14 17:17:19.071617+00 f t TOTAL 55000.00 4 12364 \N +495551 2025-11-14 17:17:19.075305+00 2025-11-14 17:17:19.075316+00 f t ADELANTO 11000.00 5 12364 \N +495567 2025-11-14 17:27:07.202569+00 2025-11-14 17:27:07.202582+00 f t SUBTOTAL 0.00 1 12365 \N +495568 2025-11-14 17:27:07.2047+00 2025-11-14 17:27:07.204711+00 f t COSTO_SERVICIO 0.00 2 12365 \N +495569 2025-11-14 17:27:07.206084+00 2025-11-14 17:27:07.206092+00 f t DESCUENTO 0.00 3 12365 \N +495570 2025-11-14 17:27:07.207609+00 2025-11-14 17:27:07.207616+00 f t TOTAL 0.00 4 12365 \N +495571 2025-11-14 17:27:07.208822+00 2025-11-14 17:27:07.208828+00 f t ADELANTO 0.00 5 12365 \N +535832 2025-11-23 18:54:29.766278+00 2025-11-23 18:54:29.766287+00 f t SUBTOTAL 0.00 1 13311 \N +535833 2025-11-23 18:54:29.768552+00 2025-11-23 18:54:29.76856+00 f t COSTO_SERVICIO 0.00 2 13311 \N +535834 2025-11-23 18:54:29.769867+00 2025-11-23 18:54:29.769874+00 f t DESCUENTO 0.00 3 13311 \N +500517 2025-11-16 13:20:48.961924+00 2025-11-16 13:20:48.961932+00 f t SUBTOTAL 70000.00 1 12488 \N +500518 2025-11-16 13:20:48.963536+00 2025-11-16 13:20:48.963541+00 f t COSTO_SERVICIO 0.00 2 12488 \N +500519 2025-11-16 13:20:48.964525+00 2025-11-16 13:20:48.96453+00 f t DESCUENTO 0.00 3 12488 \N +500520 2025-11-16 13:20:48.965374+00 2025-11-16 13:20:48.965379+00 f t TOTAL 70000.00 4 12488 \N +500521 2025-11-16 13:20:48.966292+00 2025-11-16 13:20:48.966298+00 f t ADELANTO 19000.00 5 12488 \N +523977 2025-11-20 22:34:01.660955+00 2025-11-20 22:34:01.660969+00 f t SUBTOTAL 0.00 1 13035 \N +523978 2025-11-20 22:34:01.663471+00 2025-11-20 22:34:01.663481+00 f t COSTO_SERVICIO 0.00 2 13035 \N +523979 2025-11-20 22:34:01.665051+00 2025-11-20 22:34:01.66506+00 f t DESCUENTO 0.00 3 13035 \N +523980 2025-11-20 22:34:01.66663+00 2025-11-20 22:34:01.66664+00 f t TOTAL 0.00 4 13035 \N +523981 2025-11-20 22:34:01.668042+00 2025-11-20 22:34:01.66806+00 f t ADELANTO 0.00 5 13035 \N +501447 2025-11-16 18:49:42.915483+00 2025-11-16 18:49:42.915491+00 f t SUBTOTAL 79000.00 1 12507 \N +501448 2025-11-16 18:49:42.917453+00 2025-11-16 18:49:42.91746+00 f t COSTO_SERVICIO 0.00 2 12507 \N +501449 2025-11-16 18:49:42.918636+00 2025-11-16 18:49:42.918641+00 f t DESCUENTO 0.00 3 12507 \N +501450 2025-11-16 18:49:42.919802+00 2025-11-16 18:49:42.919807+00 f t TOTAL 79000.00 4 12507 \N +501451 2025-11-16 18:49:42.920757+00 2025-11-16 18:49:42.920764+00 f t ADELANTO 17500.00 5 12507 \N +525322 2025-11-21 01:50:49.531959+00 2025-11-21 01:50:49.531972+00 f t SUBTOTAL 55000.00 1 13061 \N +525323 2025-11-21 01:50:49.534234+00 2025-11-21 01:50:49.534245+00 f t COSTO_SERVICIO 0.00 2 13061 \N +525324 2025-11-21 01:50:49.536025+00 2025-11-21 01:50:49.536035+00 f t DESCUENTO 0.00 3 13061 \N +525325 2025-11-21 01:50:49.537663+00 2025-11-21 01:50:49.537672+00 f t TOTAL 55000.00 4 13061 \N +525326 2025-11-21 01:50:49.539065+00 2025-11-21 01:50:49.539074+00 f t ADELANTO 11000.00 5 13061 \N +526037 2025-11-21 10:05:00.583985+00 2025-11-21 10:05:00.583994+00 f t SUBTOTAL 0.00 1 13080 \N +526038 2025-11-21 10:05:00.585576+00 2025-11-21 10:05:00.585585+00 f t COSTO_SERVICIO 0.00 2 13080 \N +526039 2025-11-21 10:05:00.586764+00 2025-11-21 10:05:00.586772+00 f t DESCUENTO 0.00 3 13080 \N +526040 2025-11-21 10:05:00.587942+00 2025-11-21 10:05:00.587947+00 f t TOTAL 0.00 4 13080 \N +526041 2025-11-21 10:05:00.589174+00 2025-11-21 10:05:00.589182+00 f t ADELANTO 0.00 5 13080 \N +514257 2025-11-19 10:09:34.99228+00 2025-11-19 10:09:34.992288+00 f t SUBTOTAL 70000.00 1 12800 \N +514258 2025-11-19 10:09:34.994286+00 2025-11-19 10:09:34.994295+00 f t COSTO_SERVICIO 0.00 2 12800 \N +514259 2025-11-19 10:09:34.995793+00 2025-11-19 10:09:34.995802+00 f t DESCUENTO 0.00 3 12800 \N +514260 2025-11-19 10:09:34.997142+00 2025-11-19 10:09:34.997151+00 f t TOTAL 70000.00 4 12800 \N +514261 2025-11-19 10:09:34.998492+00 2025-11-19 10:09:34.998501+00 f t ADELANTO 19000.00 5 12800 \N +495822 2025-11-14 17:38:50.305563+00 2025-11-14 17:38:50.30557+00 f t SUBTOTAL 55000.00 1 12366 \N +495823 2025-11-14 17:38:50.307095+00 2025-11-14 17:38:50.307102+00 f t COSTO_SERVICIO 0.00 2 12366 \N +495824 2025-11-14 17:38:50.308339+00 2025-11-14 17:38:50.308345+00 f t DESCUENTO 0.00 3 12366 \N +495825 2025-11-14 17:38:50.309285+00 2025-11-14 17:38:50.30929+00 f t TOTAL 55000.00 4 12366 \N +495826 2025-11-14 17:38:50.31033+00 2025-11-14 17:38:50.310336+00 f t ADELANTO 11000.00 5 12366 \N +516420 2025-11-19 14:53:40.297081+00 2025-11-19 14:53:40.297089+00 f t TOTAL 54000.00 4 12847 \N +516421 2025-11-19 14:53:40.298531+00 2025-11-19 14:53:40.298537+00 f t ADELANTO 13500.00 5 12847 \N +504712 2025-11-17 16:39:20.269308+00 2025-11-17 16:39:20.269315+00 f t SUBTOTAL 46000.00 1 12573 \N +504713 2025-11-17 16:39:20.271193+00 2025-11-17 16:39:20.271199+00 f t COSTO_SERVICIO 0.00 2 12573 \N +504714 2025-11-17 16:39:20.272515+00 2025-11-17 16:39:20.27252+00 f t DESCUENTO 0.00 3 12573 \N +504715 2025-11-17 16:39:20.273791+00 2025-11-17 16:39:20.273796+00 f t TOTAL 46000.00 4 12573 \N +504716 2025-11-17 16:39:20.274896+00 2025-11-17 16:39:20.274901+00 f t ADELANTO 11000.00 5 12573 \N +504832 2025-11-17 16:57:38.632627+00 2025-11-17 16:57:38.632637+00 f t SUBTOTAL 54000.00 1 12577 \N +504833 2025-11-17 16:57:38.634442+00 2025-11-17 16:57:38.634448+00 f t COSTO_SERVICIO 0.00 2 12577 \N +504834 2025-11-17 16:57:38.635628+00 2025-11-17 16:57:38.635633+00 f t DESCUENTO 0.00 3 12577 \N +504835 2025-11-17 16:57:38.636681+00 2025-11-17 16:57:38.636688+00 f t TOTAL 54000.00 4 12577 \N +504836 2025-11-17 16:57:38.637648+00 2025-11-17 16:57:38.637653+00 f t ADELANTO 13500.00 5 12577 \N +495867 2025-11-14 17:40:24.868184+00 2025-11-14 17:40:24.868192+00 f t SUBTOTAL 32500.00 1 12367 \N +495868 2025-11-14 17:40:24.869728+00 2025-11-14 17:40:24.869735+00 f t COSTO_SERVICIO 0.00 2 12367 \N +495869 2025-11-14 17:40:24.870914+00 2025-11-14 17:40:24.87092+00 f t DESCUENTO 0.00 3 12367 \N +495870 2025-11-14 17:40:24.871999+00 2025-11-14 17:40:24.872005+00 f t TOTAL 32500.00 4 12367 \N +495871 2025-11-14 17:40:24.87316+00 2025-11-14 17:40:24.873165+00 f t ADELANTO 32500.00 5 12367 \N +505587 2025-11-17 19:10:40.565013+00 2025-11-17 19:10:40.565024+00 f t SUBTOTAL 46000.00 1 12597 \N +505588 2025-11-17 19:10:40.566944+00 2025-11-17 19:10:40.566955+00 f t COSTO_SERVICIO 0.00 2 12597 \N +505589 2025-11-17 19:10:40.568573+00 2025-11-17 19:10:40.568581+00 f t DESCUENTO 0.00 3 12597 \N +505590 2025-11-17 19:10:40.570155+00 2025-11-17 19:10:40.570164+00 f t TOTAL 46000.00 4 12597 \N +505591 2025-11-17 19:10:40.57162+00 2025-11-17 19:10:40.571629+00 f t ADELANTO 11000.00 5 12597 \N +517382 2025-11-19 18:02:10.398066+00 2025-11-19 18:02:10.398076+00 f t SUBTOTAL 46000.00 1 12871 \N +517383 2025-11-19 18:02:10.400063+00 2025-11-19 18:02:10.40007+00 f t COSTO_SERVICIO 0.00 2 12871 \N +517384 2025-11-19 18:02:10.401201+00 2025-11-19 18:02:10.401206+00 f t DESCUENTO 0.00 3 12871 \N +495907 2025-11-14 17:41:32.921571+00 2025-11-14 17:41:32.92158+00 f t SUBTOTAL 31500.00 1 12368 \N +495908 2025-11-14 17:41:32.923103+00 2025-11-14 17:41:32.923111+00 f t COSTO_SERVICIO 0.00 2 12368 \N +495909 2025-11-14 17:41:32.924334+00 2025-11-14 17:41:32.92434+00 f t DESCUENTO 0.00 3 12368 \N +495910 2025-11-14 17:41:32.925441+00 2025-11-14 17:41:32.925448+00 f t TOTAL 31500.00 4 12368 \N +495911 2025-11-14 17:41:32.926552+00 2025-11-14 17:41:32.926558+00 f t ADELANTO 31500.00 5 12368 \N +517385 2025-11-19 18:02:10.402154+00 2025-11-19 18:02:10.402159+00 f t TOTAL 46000.00 4 12871 \N +517386 2025-11-19 18:02:10.403237+00 2025-11-19 18:02:10.403243+00 f t ADELANTO 11000.00 5 12871 \N +495937 2025-11-14 17:43:48.921002+00 2025-11-14 17:43:48.921009+00 f t SUBTOTAL 54000.00 1 12369 \N +495938 2025-11-14 17:43:48.926264+00 2025-11-14 17:43:48.926272+00 f t COSTO_SERVICIO 0.00 2 12369 \N +495939 2025-11-14 17:43:48.927636+00 2025-11-14 17:43:48.927642+00 f t DESCUENTO 0.00 3 12369 \N +495940 2025-11-14 17:43:48.929632+00 2025-11-14 17:43:48.929638+00 f t TOTAL 54000.00 4 12369 \N +495941 2025-11-14 17:43:48.933176+00 2025-11-14 17:43:48.933182+00 f t ADELANTO 13500.00 5 12369 \N +495947 2025-11-14 18:00:31.944987+00 2025-11-14 18:00:31.944999+00 f t SUBTOTAL 0.00 1 12370 \N +495948 2025-11-14 18:00:31.946513+00 2025-11-14 18:00:31.946522+00 f t COSTO_SERVICIO 0.00 2 12370 \N +495949 2025-11-14 18:00:31.948006+00 2025-11-14 18:00:31.948014+00 f t DESCUENTO 0.00 3 12370 \N +495950 2025-11-14 18:00:31.949224+00 2025-11-14 18:00:31.949232+00 f t TOTAL 0.00 4 12370 \N +495951 2025-11-14 18:00:31.950612+00 2025-11-14 18:00:31.950619+00 f t ADELANTO 0.00 5 12370 \N +495972 2025-11-14 18:02:35.939423+00 2025-11-14 18:02:35.939434+00 f t SUBTOTAL 88000.00 1 12371 \N +495973 2025-11-14 18:02:35.941238+00 2025-11-14 18:02:35.941247+00 f t COSTO_SERVICIO 0.00 2 12371 \N +495974 2025-11-14 18:02:35.942684+00 2025-11-14 18:02:35.942693+00 f t DESCUENTO 0.00 3 12371 \N +495975 2025-11-14 18:02:35.943951+00 2025-11-14 18:02:35.943959+00 f t TOTAL 88000.00 4 12371 \N +495976 2025-11-14 18:02:35.945115+00 2025-11-14 18:02:35.945123+00 f t ADELANTO 13000.00 5 12371 \N +535835 2025-11-23 18:54:29.771083+00 2025-11-23 18:54:29.771088+00 f t TOTAL 0.00 4 13311 \N +513912 2025-11-19 05:44:41.779981+00 2025-11-19 05:44:41.779987+00 f t SUBTOTAL 23000.00 1 12792 \N +513913 2025-11-19 05:44:41.781718+00 2025-11-19 05:44:41.781726+00 f t COSTO_SERVICIO 0.00 2 12792 \N +513914 2025-11-19 05:44:41.782912+00 2025-11-19 05:44:41.782917+00 f t DESCUENTO 0.00 3 12792 \N +513915 2025-11-19 05:44:41.783954+00 2025-11-19 05:44:41.783959+00 f t TOTAL 23000.00 4 12792 \N +513916 2025-11-19 05:44:41.784844+00 2025-11-19 05:44:41.784849+00 f t ADELANTO 5500.00 5 12792 \N +502112 2025-11-17 01:44:11.256262+00 2025-11-17 01:44:11.256272+00 f t SUBTOTAL 0.00 1 12521 \N +502113 2025-11-17 01:44:11.258609+00 2025-11-17 01:44:11.258617+00 f t COSTO_SERVICIO 0.00 2 12521 \N +502114 2025-11-17 01:44:11.260208+00 2025-11-17 01:44:11.260218+00 f t DESCUENTO 0.00 3 12521 \N +502115 2025-11-17 01:44:11.261604+00 2025-11-17 01:44:11.261611+00 f t TOTAL 0.00 4 12521 \N +502116 2025-11-17 01:44:11.262939+00 2025-11-17 01:44:11.262948+00 f t ADELANTO 0.00 5 12521 \N +514432 2025-11-19 10:41:57.961941+00 2025-11-19 10:41:57.96195+00 f t SUBTOTAL 55000.00 1 12802 \N +514433 2025-11-19 10:41:57.963872+00 2025-11-19 10:41:57.963879+00 f t COSTO_SERVICIO 0.00 2 12802 \N +514434 2025-11-19 10:41:57.965222+00 2025-11-19 10:41:57.965228+00 f t DESCUENTO 0.00 3 12802 \N +514435 2025-11-19 10:41:57.966278+00 2025-11-19 10:41:57.966285+00 f t TOTAL 55000.00 4 12802 \N +514436 2025-11-19 10:41:57.967394+00 2025-11-19 10:41:57.967402+00 f t ADELANTO 11000.00 5 12802 \N +515477 2025-11-19 13:02:32.573098+00 2025-11-19 13:02:32.573106+00 f t SUBTOTAL 70000.00 1 12826 \N +515478 2025-11-19 13:02:32.575578+00 2025-11-19 13:02:32.575589+00 f t COSTO_SERVICIO 0.00 2 12826 \N +515479 2025-11-19 13:02:32.577444+00 2025-11-19 13:02:32.577453+00 f t DESCUENTO 0.00 3 12826 \N +515480 2025-11-19 13:02:32.579196+00 2025-11-19 13:02:32.579205+00 f t TOTAL 70000.00 4 12826 \N +515481 2025-11-19 13:02:32.58081+00 2025-11-19 13:02:32.580817+00 f t ADELANTO 19000.00 5 12826 \N +515632 2025-11-19 13:12:22.913604+00 2025-11-19 13:12:22.913611+00 f t SUBTOTAL 78000.00 1 12829 \N +515633 2025-11-19 13:12:22.916006+00 2025-11-19 13:12:22.916013+00 f t COSTO_SERVICIO 0.00 2 12829 \N +515634 2025-11-19 13:12:22.917289+00 2025-11-19 13:12:22.917295+00 f t DESCUENTO 0.00 3 12829 \N +515635 2025-11-19 13:12:22.918312+00 2025-11-19 13:12:22.918318+00 f t TOTAL 78000.00 4 12829 \N +515636 2025-11-19 13:12:22.919301+00 2025-11-19 13:12:22.919307+00 f t ADELANTO 13000.00 5 12829 \N +496112 2025-11-14 18:07:11.823525+00 2025-11-14 18:07:11.823533+00 f t SUBTOTAL 30000.00 1 12372 \N +496113 2025-11-14 18:07:11.825243+00 2025-11-14 18:07:11.82525+00 f t COSTO_SERVICIO 0.00 2 12372 \N +496114 2025-11-14 18:07:11.826529+00 2025-11-14 18:07:11.826536+00 f t DESCUENTO 0.00 3 12372 \N +496115 2025-11-14 18:07:11.827741+00 2025-11-14 18:07:11.827748+00 f t TOTAL 30000.00 4 12372 \N +496116 2025-11-14 18:07:11.828808+00 2025-11-14 18:07:11.828813+00 f t ADELANTO 30000.00 5 12372 \N +496117 2025-11-14 18:08:50.308606+00 2025-11-14 18:08:50.30862+00 f t SUBTOTAL 0.00 1 12373 \N +496118 2025-11-14 18:08:50.310995+00 2025-11-14 18:08:50.311006+00 f t COSTO_SERVICIO 0.00 2 12373 \N +496119 2025-11-14 18:08:50.312327+00 2025-11-14 18:08:50.312335+00 f t DESCUENTO 0.00 3 12373 \N +496120 2025-11-14 18:08:50.313648+00 2025-11-14 18:08:50.313656+00 f t TOTAL 0.00 4 12373 \N +496121 2025-11-14 18:08:50.314848+00 2025-11-14 18:08:50.314856+00 f t ADELANTO 0.00 5 12373 \N +516422 2025-11-19 14:53:51.768537+00 2025-11-19 14:53:51.768544+00 f t SUBTOTAL 55000.00 1 12845 \N +516423 2025-11-19 14:53:51.770226+00 2025-11-19 14:53:51.770232+00 f t COSTO_SERVICIO 0.00 2 12845 \N +516424 2025-11-19 14:53:51.771458+00 2025-11-19 14:53:51.771464+00 f t DESCUENTO 0.00 3 12845 \N +516425 2025-11-19 14:53:51.772647+00 2025-11-19 14:53:51.772652+00 f t TOTAL 55000.00 4 12845 \N +516426 2025-11-19 14:53:51.773606+00 2025-11-19 14:53:51.773613+00 f t ADELANTO 11000.00 5 12845 \N +504447 2025-11-17 15:15:18.660283+00 2025-11-17 15:15:18.660294+00 f t SUBTOTAL 0.00 1 12562 \N +504448 2025-11-17 15:15:18.661736+00 2025-11-17 15:15:18.661742+00 f t COSTO_SERVICIO 0.00 2 12562 \N +504449 2025-11-17 15:15:18.663007+00 2025-11-17 15:15:18.663012+00 f t DESCUENTO 0.00 3 12562 \N +504450 2025-11-17 15:15:18.66428+00 2025-11-17 15:15:18.664286+00 f t TOTAL 0.00 4 12562 \N +504451 2025-11-17 15:15:18.665569+00 2025-11-17 15:15:18.665575+00 f t ADELANTO 0.00 5 12562 \N +496157 2025-11-14 18:12:56.757291+00 2025-11-14 18:12:56.7573+00 f t SUBTOTAL 30000.00 1 12374 \N +496158 2025-11-14 18:12:56.758736+00 2025-11-14 18:12:56.758742+00 f t COSTO_SERVICIO 0.00 2 12374 \N +496159 2025-11-14 18:12:56.759801+00 2025-11-14 18:12:56.759806+00 f t DESCUENTO 0.00 3 12374 \N +496160 2025-11-14 18:12:56.760708+00 2025-11-14 18:12:56.760713+00 f t TOTAL 30000.00 4 12374 \N +496161 2025-11-14 18:12:56.761556+00 2025-11-14 18:12:56.76156+00 f t ADELANTO 30000.00 5 12374 \N +496177 2025-11-14 18:14:40.624504+00 2025-11-14 18:14:40.624514+00 f t SUBTOTAL 0.00 1 12375 \N +496178 2025-11-14 18:14:40.626304+00 2025-11-14 18:14:40.62631+00 f t COSTO_SERVICIO 0.00 2 12375 \N +496179 2025-11-14 18:14:40.627436+00 2025-11-14 18:14:40.627442+00 f t DESCUENTO 0.00 3 12375 \N +496180 2025-11-14 18:14:40.628494+00 2025-11-14 18:14:40.6285+00 f t TOTAL 0.00 4 12375 \N +496181 2025-11-14 18:14:40.62952+00 2025-11-14 18:14:40.629526+00 f t ADELANTO 0.00 5 12375 \N +496187 2025-11-14 18:27:33.477871+00 2025-11-14 18:27:33.47788+00 f t SUBTOTAL 0.00 1 12376 \N +496188 2025-11-14 18:27:33.479277+00 2025-11-14 18:27:33.479287+00 f t COSTO_SERVICIO 0.00 2 12376 \N +496189 2025-11-14 18:27:33.480331+00 2025-11-14 18:27:33.480339+00 f t DESCUENTO 0.00 3 12376 \N +496190 2025-11-14 18:27:33.481251+00 2025-11-14 18:27:33.481258+00 f t TOTAL 0.00 4 12376 \N +496191 2025-11-14 18:27:33.482074+00 2025-11-14 18:27:33.482081+00 f t ADELANTO 0.00 5 12376 \N +505287 2025-11-17 18:35:50.469892+00 2025-11-17 18:35:50.469901+00 f t SUBTOTAL 54000.00 1 12591 \N +505288 2025-11-17 18:35:50.471471+00 2025-11-17 18:35:50.471477+00 f t COSTO_SERVICIO 0.00 2 12591 \N +505289 2025-11-17 18:35:50.472474+00 2025-11-17 18:35:50.472479+00 f t DESCUENTO 0.00 3 12591 \N +505290 2025-11-17 18:35:50.473565+00 2025-11-17 18:35:50.473572+00 f t TOTAL 54000.00 4 12591 \N +505291 2025-11-17 18:35:50.474598+00 2025-11-17 18:35:50.474603+00 f t ADELANTO 13500.00 5 12591 \N +505392 2025-11-17 18:40:42.395821+00 2025-11-17 18:40:42.395827+00 f t SUBTOTAL 70000.00 1 12592 \N +505393 2025-11-17 18:40:42.397734+00 2025-11-17 18:40:42.39774+00 f t COSTO_SERVICIO 0.00 2 12592 \N +505394 2025-11-17 18:40:42.398778+00 2025-11-17 18:40:42.398786+00 f t DESCUENTO 0.00 3 12592 \N +505395 2025-11-17 18:40:42.399829+00 2025-11-17 18:40:42.399835+00 f t TOTAL 70000.00 4 12592 \N +505396 2025-11-17 18:40:42.400662+00 2025-11-17 18:40:42.400667+00 f t ADELANTO 19000.00 5 12592 \N +496232 2025-11-14 18:30:18.794764+00 2025-11-14 18:30:18.794775+00 f t SUBTOTAL 54000.00 1 12377 \N +496233 2025-11-14 18:30:18.796566+00 2025-11-14 18:30:18.796575+00 f t COSTO_SERVICIO 0.00 2 12377 \N +496234 2025-11-14 18:30:18.797849+00 2025-11-14 18:30:18.797857+00 f t DESCUENTO 0.00 3 12377 \N +496235 2025-11-14 18:30:18.799016+00 2025-11-14 18:30:18.799024+00 f t TOTAL 54000.00 4 12377 \N +496236 2025-11-14 18:30:18.8002+00 2025-11-14 18:30:18.800206+00 f t ADELANTO 13500.00 5 12377 \N +535836 2025-11-23 18:54:29.772313+00 2025-11-23 18:54:29.772318+00 f t ADELANTO 0.00 5 13311 \N +548294 2025-11-25 21:00:35.388427+00 2025-11-25 21:00:35.388433+00 f t DESCUENTO 0.00 3 13599 \N +548295 2025-11-25 21:00:35.389558+00 2025-11-25 21:00:35.389566+00 f t TOTAL 55000.00 4 13599 \N +548296 2025-11-25 21:00:35.390996+00 2025-11-25 21:00:35.391001+00 f t ADELANTO 11000.00 5 13599 \N +496272 2025-11-14 18:43:22.298519+00 2025-11-14 18:43:22.298526+00 f t SUBTOTAL 46000.00 1 12378 \N +496273 2025-11-14 18:43:22.299899+00 2025-11-14 18:43:22.299904+00 f t COSTO_SERVICIO 0.00 2 12378 \N +496274 2025-11-14 18:43:22.30084+00 2025-11-14 18:43:22.300845+00 f t DESCUENTO 0.00 3 12378 \N +496275 2025-11-14 18:43:22.301602+00 2025-11-14 18:43:22.301607+00 f t TOTAL 46000.00 4 12378 \N +496276 2025-11-14 18:43:22.302414+00 2025-11-14 18:43:22.302419+00 f t ADELANTO 11000.00 5 12378 \N +496282 2025-11-14 18:48:36.47042+00 2025-11-14 18:48:36.470431+00 f t SUBTOTAL 0.00 1 12379 \N +496283 2025-11-14 18:48:36.471864+00 2025-11-14 18:48:36.471871+00 f t COSTO_SERVICIO 0.00 2 12379 \N +496284 2025-11-14 18:48:36.47288+00 2025-11-14 18:48:36.472888+00 f t DESCUENTO 0.00 3 12379 \N +496285 2025-11-14 18:48:36.473932+00 2025-11-14 18:48:36.473939+00 f t TOTAL 0.00 4 12379 \N +496286 2025-11-14 18:48:36.474847+00 2025-11-14 18:48:36.474854+00 f t ADELANTO 0.00 5 12379 \N +496292 2025-11-14 19:41:02.812946+00 2025-11-14 19:41:02.812955+00 f t SUBTOTAL 0.00 1 12380 \N +496293 2025-11-14 19:41:02.818206+00 2025-11-14 19:41:02.818215+00 f t COSTO_SERVICIO 0.00 2 12380 \N +496294 2025-11-14 19:41:02.819814+00 2025-11-14 19:41:02.819826+00 f t DESCUENTO 0.00 3 12380 \N +496295 2025-11-14 19:41:02.821576+00 2025-11-14 19:41:02.821586+00 f t TOTAL 0.00 4 12380 \N +496296 2025-11-14 19:41:02.823472+00 2025-11-14 19:41:02.823483+00 f t ADELANTO 0.00 5 12380 \N +496302 2025-11-14 19:41:33.331087+00 2025-11-14 19:41:33.331099+00 f t SUBTOTAL 0.00 1 12381 \N +496303 2025-11-14 19:41:33.332559+00 2025-11-14 19:41:33.332567+00 f t COSTO_SERVICIO 0.00 2 12381 \N +496304 2025-11-14 19:41:33.333838+00 2025-11-14 19:41:33.333845+00 f t DESCUENTO 0.00 3 12381 \N +496305 2025-11-14 19:41:33.33491+00 2025-11-14 19:41:33.334917+00 f t TOTAL 0.00 4 12381 \N +496306 2025-11-14 19:41:33.336036+00 2025-11-14 19:41:33.336044+00 f t ADELANTO 0.00 5 12381 \N +496317 2025-11-14 19:51:00.534847+00 2025-11-14 19:51:00.534858+00 f t SUBTOTAL 55000.00 1 12382 \N +496318 2025-11-14 19:51:00.53647+00 2025-11-14 19:51:00.536479+00 f t COSTO_SERVICIO 0.00 2 12382 \N +496319 2025-11-14 19:51:00.538099+00 2025-11-14 19:51:00.538105+00 f t DESCUENTO 0.00 3 12382 \N +496320 2025-11-14 19:51:00.539268+00 2025-11-14 19:51:00.539274+00 f t TOTAL 55000.00 4 12382 \N +496321 2025-11-14 19:51:00.540209+00 2025-11-14 19:51:00.540214+00 f t ADELANTO 11000.00 5 12382 \N +501967 2025-11-17 00:55:41.45784+00 2025-11-17 00:55:41.457849+00 f t SUBTOTAL 54000.00 1 12519 \N +501968 2025-11-17 00:55:41.459833+00 2025-11-17 00:55:41.459843+00 f t COSTO_SERVICIO 0.00 2 12519 \N +501969 2025-11-17 00:55:41.461368+00 2025-11-17 00:55:41.461377+00 f t DESCUENTO 0.00 3 12519 \N +501970 2025-11-17 00:55:41.462614+00 2025-11-17 00:55:41.462619+00 f t TOTAL 54000.00 4 12519 \N +496337 2025-11-14 20:44:01.72671+00 2025-11-14 20:44:01.726722+00 f t SUBTOTAL 0.00 1 12383 \N +496338 2025-11-14 20:44:01.729039+00 2025-11-14 20:44:01.72905+00 f t COSTO_SERVICIO 0.00 2 12383 \N +496339 2025-11-14 20:44:01.730892+00 2025-11-14 20:44:01.730901+00 f t DESCUENTO 0.00 3 12383 \N +496340 2025-11-14 20:44:01.732442+00 2025-11-14 20:44:01.73245+00 f t TOTAL 0.00 4 12383 \N +496341 2025-11-14 20:44:01.733782+00 2025-11-14 20:44:01.733791+00 f t ADELANTO 0.00 5 12383 \N +501971 2025-11-17 00:55:41.463664+00 2025-11-17 00:55:41.463669+00 f t ADELANTO 13500.00 5 12519 \N +496417 2025-11-14 20:57:46.870859+00 2025-11-14 20:57:46.87087+00 f t SUBTOTAL 54000.00 1 12384 \N +496418 2025-11-14 20:57:46.872764+00 2025-11-14 20:57:46.872773+00 f t COSTO_SERVICIO 0.00 2 12384 \N +496419 2025-11-14 20:57:46.874207+00 2025-11-14 20:57:46.874215+00 f t DESCUENTO 0.00 3 12384 \N +496420 2025-11-14 20:57:46.875555+00 2025-11-14 20:57:46.875563+00 f t TOTAL 54000.00 4 12384 \N +496421 2025-11-14 20:57:46.876761+00 2025-11-14 20:57:46.876769+00 f t ADELANTO 13500.00 5 12384 \N +504032 2025-11-17 13:44:04.605495+00 2025-11-17 13:44:04.605506+00 f t SUBTOTAL 88000.00 1 12551 \N +504033 2025-11-17 13:44:04.608098+00 2025-11-17 13:44:04.60811+00 f t COSTO_SERVICIO 0.00 2 12551 \N +504034 2025-11-17 13:44:04.609887+00 2025-11-17 13:44:04.609899+00 f t DESCUENTO 0.00 3 12551 \N +504035 2025-11-17 13:44:04.611663+00 2025-11-17 13:44:04.611669+00 f t TOTAL 88000.00 4 12551 \N +504036 2025-11-17 13:44:04.612876+00 2025-11-17 13:44:04.612882+00 f t ADELANTO 13000.00 5 12551 \N +505067 2025-11-17 17:11:49.830461+00 2025-11-17 17:11:49.83047+00 f t SUBTOTAL 46000.00 1 12582 \N +505068 2025-11-17 17:11:49.832201+00 2025-11-17 17:11:49.832207+00 f t COSTO_SERVICIO 0.00 2 12582 \N +505069 2025-11-17 17:11:49.833531+00 2025-11-17 17:11:49.833538+00 f t DESCUENTO 0.00 3 12582 \N +505070 2025-11-17 17:11:49.83668+00 2025-11-17 17:11:49.836689+00 f t TOTAL 46000.00 4 12582 \N +505071 2025-11-17 17:11:49.838414+00 2025-11-17 17:11:49.83842+00 f t ADELANTO 11000.00 5 12582 \N +496502 2025-11-14 21:30:18.613443+00 2025-11-14 21:30:18.613452+00 f t SUBTOTAL 70000.00 1 12385 \N +496503 2025-11-14 21:30:18.615048+00 2025-11-14 21:30:18.615056+00 f t COSTO_SERVICIO 0.00 2 12385 \N +496504 2025-11-14 21:30:18.616475+00 2025-11-14 21:30:18.616482+00 f t DESCUENTO 0.00 3 12385 \N +496505 2025-11-14 21:30:18.617751+00 2025-11-14 21:30:18.617757+00 f t TOTAL 70000.00 4 12385 \N +496506 2025-11-14 21:30:18.619019+00 2025-11-14 21:30:18.619025+00 f t ADELANTO 19000.00 5 12385 \N +496507 2025-11-14 21:30:24.165115+00 2025-11-14 21:30:24.165125+00 f t SUBTOTAL 81000.00 1 12386 \N +496508 2025-11-14 21:30:24.16718+00 2025-11-14 21:30:24.167189+00 f t COSTO_SERVICIO 0.00 2 12386 \N +496509 2025-11-14 21:30:24.1688+00 2025-11-14 21:30:24.168808+00 f t DESCUENTO 0.00 3 12386 \N +496510 2025-11-14 21:30:24.170295+00 2025-11-14 21:30:24.170302+00 f t TOTAL 81000.00 4 12386 \N +496511 2025-11-14 21:30:24.171665+00 2025-11-14 21:30:24.171672+00 f t ADELANTO 13500.00 5 12386 \N +496517 2025-11-14 21:57:51.412465+00 2025-11-14 21:57:51.412474+00 f t SUBTOTAL 0.00 1 12387 \N +496518 2025-11-14 21:57:51.413725+00 2025-11-14 21:57:51.413731+00 f t COSTO_SERVICIO 0.00 2 12387 \N +496519 2025-11-14 21:57:51.414615+00 2025-11-14 21:57:51.414621+00 f t DESCUENTO 0.00 3 12387 \N +496520 2025-11-14 21:57:51.415492+00 2025-11-14 21:57:51.415498+00 f t TOTAL 0.00 4 12387 \N +496521 2025-11-14 21:57:51.417536+00 2025-11-14 21:57:51.417541+00 f t ADELANTO 0.00 5 12387 \N +505802 2025-11-17 19:58:34.544463+00 2025-11-17 19:58:34.544473+00 f t SUBTOTAL 54000.00 1 12604 \N +505803 2025-11-17 19:58:34.54618+00 2025-11-17 19:58:34.546186+00 f t COSTO_SERVICIO 0.00 2 12604 \N +505804 2025-11-17 19:58:34.547441+00 2025-11-17 19:58:34.547448+00 f t DESCUENTO 0.00 3 12604 \N +505805 2025-11-17 19:58:34.54844+00 2025-11-17 19:58:34.548445+00 f t TOTAL 54000.00 4 12604 \N +505806 2025-11-17 19:58:34.549524+00 2025-11-17 19:58:34.549529+00 f t ADELANTO 13500.00 5 12604 \N +496547 2025-11-14 21:59:24.410621+00 2025-11-14 21:59:24.410629+00 f t SUBTOTAL 70000.00 1 12388 \N +496548 2025-11-14 21:59:24.412215+00 2025-11-14 21:59:24.412223+00 f t COSTO_SERVICIO 0.00 2 12388 \N +496549 2025-11-14 21:59:24.413251+00 2025-11-14 21:59:24.413257+00 f t DESCUENTO 0.00 3 12388 \N +496550 2025-11-14 21:59:24.41441+00 2025-11-14 21:59:24.414415+00 f t TOTAL 70000.00 4 12388 \N +496551 2025-11-14 21:59:24.41537+00 2025-11-14 21:59:24.415375+00 f t ADELANTO 19000.00 5 12388 \N +512102 2025-11-18 22:16:18.053253+00 2025-11-18 22:16:18.053262+00 f t SUBTOTAL 188000.00 1 12747 \N +512103 2025-11-18 22:16:18.055271+00 2025-11-18 22:16:18.055278+00 f t COSTO_SERVICIO 0.00 2 12747 \N +512104 2025-11-18 22:16:18.056866+00 2025-11-18 22:16:18.056874+00 f t DESCUENTO 9200.00 3 12747 \N +512105 2025-11-18 22:16:18.058173+00 2025-11-18 22:16:18.058181+00 f t TOTAL 178800.00 4 12747 \N +512106 2025-11-18 22:16:18.059589+00 2025-11-18 22:16:18.059599+00 f t ADELANTO 54000.00 5 12747 \N +500937 2025-11-16 14:29:58.192126+00 2025-11-16 14:29:58.192138+00 f t SUBTOTAL 78000.00 1 12495 \N +500938 2025-11-16 14:29:58.194258+00 2025-11-16 14:29:58.194269+00 f t COSTO_SERVICIO 0.00 2 12495 \N +500939 2025-11-16 14:29:58.196016+00 2025-11-16 14:29:58.196027+00 f t DESCUENTO 0.00 3 12495 \N +500940 2025-11-16 14:29:58.197613+00 2025-11-16 14:29:58.19762+00 f t TOTAL 78000.00 4 12495 \N +500941 2025-11-16 14:29:58.198933+00 2025-11-16 14:29:58.198941+00 f t ADELANTO 21500.00 5 12495 \N +501467 2025-11-16 19:25:08.230859+00 2025-11-16 19:25:08.230868+00 f t SUBTOTAL 78000.00 1 12508 \N +501468 2025-11-16 19:25:08.233347+00 2025-11-16 19:25:08.233359+00 f t COSTO_SERVICIO 0.00 2 12508 \N +501469 2025-11-16 19:25:08.235258+00 2025-11-16 19:25:08.235267+00 f t DESCUENTO 0.00 3 12508 \N +501470 2025-11-16 19:25:08.237047+00 2025-11-16 19:25:08.237058+00 f t TOTAL 78000.00 4 12508 \N +501471 2025-11-16 19:25:08.238965+00 2025-11-16 19:25:08.238975+00 f t ADELANTO 21500.00 5 12508 \N +501807 2025-11-16 23:48:02.660192+00 2025-11-16 23:48:02.660201+00 f t SUBTOTAL 70000.00 1 12515 \N +501808 2025-11-16 23:48:02.662428+00 2025-11-16 23:48:02.662437+00 f t COSTO_SERVICIO 0.00 2 12515 \N +501809 2025-11-16 23:48:02.664132+00 2025-11-16 23:48:02.664139+00 f t DESCUENTO 0.00 3 12515 \N +496597 2025-11-14 22:01:23.415965+00 2025-11-14 22:01:23.415973+00 f t SUBTOTAL 0.00 1 12389 \N +496598 2025-11-14 22:01:23.417946+00 2025-11-14 22:01:23.417953+00 f t COSTO_SERVICIO 0.00 2 12389 \N +496599 2025-11-14 22:01:23.419054+00 2025-11-14 22:01:23.419059+00 f t DESCUENTO 0.00 3 12389 \N +496600 2025-11-14 22:01:23.420179+00 2025-11-14 22:01:23.420185+00 f t TOTAL 0.00 4 12389 \N +496601 2025-11-14 22:01:23.421206+00 2025-11-14 22:01:23.421211+00 f t ADELANTO 0.00 5 12389 \N +501810 2025-11-16 23:48:02.665589+00 2025-11-16 23:48:02.665598+00 f t TOTAL 70000.00 4 12515 \N +501811 2025-11-16 23:48:02.667121+00 2025-11-16 23:48:02.667159+00 f t ADELANTO 19000.00 5 12515 \N +496627 2025-11-14 22:06:15.236246+00 2025-11-14 22:06:15.236255+00 f t SUBTOTAL 78000.00 1 12390 \N +496628 2025-11-14 22:06:15.237948+00 2025-11-14 22:06:15.237958+00 f t COSTO_SERVICIO 0.00 2 12390 \N +496629 2025-11-14 22:06:15.239347+00 2025-11-14 22:06:15.239354+00 f t DESCUENTO 0.00 3 12390 \N +496630 2025-11-14 22:06:15.240518+00 2025-11-14 22:06:15.240524+00 f t TOTAL 78000.00 4 12390 \N +496631 2025-11-14 22:06:15.241958+00 2025-11-14 22:06:15.241964+00 f t ADELANTO 21500.00 5 12390 \N +502922 2025-11-17 12:45:59.946205+00 2025-11-17 12:45:59.946213+00 f t SUBTOTAL 70000.00 1 12541 \N +502923 2025-11-17 12:45:59.947998+00 2025-11-17 12:45:59.948004+00 f t COSTO_SERVICIO 0.00 2 12541 \N +502924 2025-11-17 12:45:59.949127+00 2025-11-17 12:45:59.949132+00 f t DESCUENTO 0.00 3 12541 \N +496647 2025-11-14 22:07:00.675525+00 2025-11-14 22:07:00.675533+00 f t SUBTOTAL 46000.00 1 12391 \N +496648 2025-11-14 22:07:00.677215+00 2025-11-14 22:07:00.677222+00 f t COSTO_SERVICIO 0.00 2 12391 \N +496649 2025-11-14 22:07:00.678548+00 2025-11-14 22:07:00.678554+00 f t DESCUENTO 0.00 3 12391 \N +496650 2025-11-14 22:07:00.679632+00 2025-11-14 22:07:00.679638+00 f t TOTAL 46000.00 4 12391 \N +496651 2025-11-14 22:07:00.680691+00 2025-11-14 22:07:00.680696+00 f t ADELANTO 11000.00 5 12391 \N +502925 2025-11-17 12:45:59.950929+00 2025-11-17 12:45:59.950935+00 f t TOTAL 70000.00 4 12541 \N +502926 2025-11-17 12:45:59.952172+00 2025-11-17 12:45:59.952177+00 f t ADELANTO 19000.00 5 12541 \N +496677 2025-11-14 22:13:59.56304+00 2025-11-14 22:13:59.563053+00 f t SUBTOTAL 0.00 1 12392 \N +496678 2025-11-14 22:13:59.564896+00 2025-11-14 22:13:59.564902+00 f t COSTO_SERVICIO 0.00 2 12392 \N +496679 2025-11-14 22:13:59.566145+00 2025-11-14 22:13:59.566152+00 f t DESCUENTO 0.00 3 12392 \N +496680 2025-11-14 22:13:59.567266+00 2025-11-14 22:13:59.567271+00 f t TOTAL 0.00 4 12392 \N +496681 2025-11-14 22:13:59.568222+00 2025-11-14 22:13:59.568227+00 f t ADELANTO 0.00 5 12392 \N +504037 2025-11-17 13:44:07.860007+00 2025-11-17 13:44:07.860015+00 f t SUBTOTAL 78000.00 1 12552 \N +504038 2025-11-17 13:44:07.861777+00 2025-11-17 13:44:07.861783+00 f t COSTO_SERVICIO 0.00 2 12552 \N +504039 2025-11-17 13:44:07.863009+00 2025-11-17 13:44:07.863016+00 f t DESCUENTO 0.00 3 12552 \N +504040 2025-11-17 13:44:07.864322+00 2025-11-17 13:44:07.864348+00 f t TOTAL 78000.00 4 12552 \N +504041 2025-11-17 13:44:07.865461+00 2025-11-17 13:44:07.865466+00 f t ADELANTO 13000.00 5 12552 \N +505182 2025-11-17 17:35:26.516958+00 2025-11-17 17:35:26.516965+00 f t SUBTOTAL 54000.00 1 12587 \N +505183 2025-11-17 17:35:26.518593+00 2025-11-17 17:35:26.518598+00 f t COSTO_SERVICIO 0.00 2 12587 \N +505184 2025-11-17 17:35:26.51957+00 2025-11-17 17:35:26.519576+00 f t DESCUENTO 0.00 3 12587 \N +505185 2025-11-17 17:35:26.520632+00 2025-11-17 17:35:26.520637+00 f t TOTAL 54000.00 4 12587 \N +505186 2025-11-17 17:35:26.521815+00 2025-11-17 17:35:26.521822+00 f t ADELANTO 13500.00 5 12587 \N +505402 2025-11-17 18:40:52.865907+00 2025-11-17 18:40:52.865914+00 f t SUBTOTAL 46000.00 1 12594 \N +505403 2025-11-17 18:40:52.868087+00 2025-11-17 18:40:52.868093+00 f t COSTO_SERVICIO 0.00 2 12594 \N +505404 2025-11-17 18:40:52.869333+00 2025-11-17 18:40:52.869338+00 f t DESCUENTO 0.00 3 12594 \N +505405 2025-11-17 18:40:52.870354+00 2025-11-17 18:40:52.870359+00 f t TOTAL 46000.00 4 12594 \N +505406 2025-11-17 18:40:52.871466+00 2025-11-17 18:40:52.871471+00 f t ADELANTO 11000.00 5 12594 \N +496757 2025-11-14 22:17:59.775605+00 2025-11-14 22:17:59.775613+00 f t SUBTOTAL 70000.00 1 12393 \N +496758 2025-11-14 22:17:59.777059+00 2025-11-14 22:17:59.777065+00 f t COSTO_SERVICIO 0.00 2 12393 \N +496759 2025-11-14 22:17:59.778226+00 2025-11-14 22:17:59.778232+00 f t DESCUENTO 0.00 3 12393 \N +496760 2025-11-14 22:17:59.779233+00 2025-11-14 22:17:59.779238+00 f t TOTAL 70000.00 4 12393 \N +496761 2025-11-14 22:17:59.78027+00 2025-11-14 22:17:59.780276+00 f t ADELANTO 19000.00 5 12393 \N +496767 2025-11-14 22:18:52.888205+00 2025-11-14 22:18:52.888214+00 f t SUBTOTAL 0.00 1 12394 \N +496768 2025-11-14 22:18:52.8898+00 2025-11-14 22:18:52.889807+00 f t COSTO_SERVICIO 0.00 2 12394 \N +496769 2025-11-14 22:18:52.890942+00 2025-11-14 22:18:52.890948+00 f t DESCUENTO 0.00 3 12394 \N +496770 2025-11-14 22:18:52.89201+00 2025-11-14 22:18:52.892015+00 f t TOTAL 0.00 4 12394 \N +496771 2025-11-14 22:18:52.892974+00 2025-11-14 22:18:52.892979+00 f t ADELANTO 0.00 5 12394 \N +496807 2025-11-14 22:25:47.216018+00 2025-11-14 22:25:47.216028+00 f t SUBTOTAL 30000.00 1 12395 \N +496808 2025-11-14 22:25:47.217621+00 2025-11-14 22:25:47.217627+00 f t COSTO_SERVICIO 0.00 2 12395 \N +496809 2025-11-14 22:25:47.218834+00 2025-11-14 22:25:47.218843+00 f t DESCUENTO 0.00 3 12395 \N +496810 2025-11-14 22:25:47.220033+00 2025-11-14 22:25:47.220039+00 f t TOTAL 30000.00 4 12395 \N +496811 2025-11-14 22:25:47.220993+00 2025-11-14 22:25:47.220998+00 f t ADELANTO 30000.00 5 12395 \N +496827 2025-11-14 22:26:31.083796+00 2025-11-14 22:26:31.083803+00 f t SUBTOTAL 54000.00 1 12396 \N +496828 2025-11-14 22:26:31.085489+00 2025-11-14 22:26:31.085498+00 f t COSTO_SERVICIO 0.00 2 12396 \N +496829 2025-11-14 22:26:31.086706+00 2025-11-14 22:26:31.086712+00 f t DESCUENTO 0.00 3 12396 \N +496830 2025-11-14 22:26:31.087796+00 2025-11-14 22:26:31.087801+00 f t TOTAL 54000.00 4 12396 \N +496831 2025-11-14 22:26:31.088983+00 2025-11-14 22:26:31.08899+00 f t ADELANTO 13500.00 5 12396 \N +523987 2025-11-20 22:40:16.195105+00 2025-11-20 22:40:16.195114+00 f t SUBTOTAL 0.00 1 13036 \N +523988 2025-11-20 22:40:16.196876+00 2025-11-20 22:40:16.196884+00 f t COSTO_SERVICIO 0.00 2 13036 \N +523989 2025-11-20 22:40:16.198264+00 2025-11-20 22:40:16.198272+00 f t DESCUENTO 0.00 3 13036 \N +523990 2025-11-20 22:40:16.199305+00 2025-11-20 22:40:16.199311+00 f t TOTAL 0.00 4 13036 \N +523991 2025-11-20 22:40:16.200216+00 2025-11-20 22:40:16.200221+00 f t ADELANTO 0.00 5 13036 \N +500757 2025-11-16 14:14:14.506716+00 2025-11-16 14:14:14.506727+00 f t SUBTOTAL 46000.00 1 12493 \N +500758 2025-11-16 14:14:14.508949+00 2025-11-16 14:14:14.50896+00 f t COSTO_SERVICIO 0.00 2 12493 \N +500759 2025-11-16 14:14:14.510831+00 2025-11-16 14:14:14.510841+00 f t DESCUENTO 0.00 3 12493 \N +500760 2025-11-16 14:14:14.512576+00 2025-11-16 14:14:14.512587+00 f t TOTAL 46000.00 4 12493 \N +500761 2025-11-16 14:14:14.514564+00 2025-11-16 14:14:14.514574+00 f t ADELANTO 11000.00 5 12493 \N +496862 2025-11-14 22:35:15.170367+00 2025-11-14 22:35:15.170375+00 f t SUBTOTAL 46000.00 1 12397 \N +496863 2025-11-14 22:35:15.17208+00 2025-11-14 22:35:15.172087+00 f t COSTO_SERVICIO 0.00 2 12397 \N +496864 2025-11-14 22:35:15.173356+00 2025-11-14 22:35:15.173363+00 f t DESCUENTO 0.00 3 12397 \N +496865 2025-11-14 22:35:15.174568+00 2025-11-14 22:35:15.174573+00 f t TOTAL 46000.00 4 12397 \N +496866 2025-11-14 22:35:15.175895+00 2025-11-14 22:35:15.1759+00 f t ADELANTO 11000.00 5 12397 \N +500947 2025-11-16 14:33:42.087689+00 2025-11-16 14:33:42.087699+00 f t SUBTOTAL 0.00 1 12497 \N +500948 2025-11-16 14:33:42.08944+00 2025-11-16 14:33:42.089451+00 f t COSTO_SERVICIO 0.00 2 12497 \N +500949 2025-11-16 14:33:42.090866+00 2025-11-16 14:33:42.090872+00 f t DESCUENTO 0.00 3 12497 \N +500950 2025-11-16 14:33:42.091984+00 2025-11-16 14:33:42.091989+00 f t TOTAL 0.00 4 12497 \N +500951 2025-11-16 14:33:42.093175+00 2025-11-16 14:33:42.093182+00 f t ADELANTO 0.00 5 12497 \N +496897 2025-11-14 22:59:41.795041+00 2025-11-14 22:59:41.795048+00 f t SUBTOTAL 70000.00 1 12398 \N +496898 2025-11-14 22:59:41.796584+00 2025-11-14 22:59:41.796591+00 f t COSTO_SERVICIO 0.00 2 12398 \N +496899 2025-11-14 22:59:41.797603+00 2025-11-14 22:59:41.797612+00 f t DESCUENTO 0.00 3 12398 \N +496900 2025-11-14 22:59:41.798687+00 2025-11-14 22:59:41.798692+00 f t TOTAL 70000.00 4 12398 \N +496901 2025-11-14 22:59:41.799912+00 2025-11-14 22:59:41.799917+00 f t ADELANTO 19000.00 5 12398 \N +513922 2025-11-19 07:08:09.02702+00 2025-11-19 07:08:09.027032+00 f t SUBTOTAL 0.00 1 12793 \N +513923 2025-11-19 07:08:09.028656+00 2025-11-19 07:08:09.028663+00 f t COSTO_SERVICIO 0.00 2 12793 \N +513924 2025-11-19 07:08:09.030196+00 2025-11-19 07:08:09.030202+00 f t DESCUENTO 0.00 3 12793 \N +513925 2025-11-19 07:08:09.031339+00 2025-11-19 07:08:09.031344+00 f t TOTAL 0.00 4 12793 \N +513926 2025-11-19 07:08:09.032374+00 2025-11-19 07:08:09.03238+00 f t ADELANTO 0.00 5 12793 \N +496962 2025-11-14 23:22:05.913681+00 2025-11-14 23:22:05.913694+00 f t SUBTOTAL 55000.00 1 12399 \N +496963 2025-11-14 23:22:05.916063+00 2025-11-14 23:22:05.916071+00 f t COSTO_SERVICIO 0.00 2 12399 \N +496964 2025-11-14 23:22:05.917815+00 2025-11-14 23:22:05.917826+00 f t DESCUENTO 0.00 3 12399 \N +496965 2025-11-14 23:22:05.919581+00 2025-11-14 23:22:05.919591+00 f t TOTAL 55000.00 4 12399 \N +496966 2025-11-14 23:22:05.921285+00 2025-11-14 23:22:05.921296+00 f t ADELANTO 11000.00 5 12399 \N +496972 2025-11-14 23:22:22.329193+00 2025-11-14 23:22:22.3292+00 f t SUBTOTAL 54000.00 1 12400 \N +496973 2025-11-14 23:22:22.330715+00 2025-11-14 23:22:22.330721+00 f t COSTO_SERVICIO 0.00 2 12400 \N +496974 2025-11-14 23:22:22.331818+00 2025-11-14 23:22:22.331824+00 f t DESCUENTO 0.00 3 12400 \N +496975 2025-11-14 23:22:22.332795+00 2025-11-14 23:22:22.3328+00 f t TOTAL 54000.00 4 12400 \N +496976 2025-11-14 23:22:22.333811+00 2025-11-14 23:22:22.333817+00 f t ADELANTO 13500.00 5 12400 \N +497012 2025-11-14 23:53:01.316107+00 2025-11-14 23:53:01.316117+00 f t SUBTOTAL 0.00 1 12402 \N +497013 2025-11-14 23:53:01.318212+00 2025-11-14 23:53:01.318218+00 f t COSTO_SERVICIO 0.00 2 12402 \N +497014 2025-11-14 23:53:01.319412+00 2025-11-14 23:53:01.319418+00 f t DESCUENTO 0.00 3 12402 \N +497015 2025-11-14 23:53:01.320668+00 2025-11-14 23:53:01.320673+00 f t TOTAL 0.00 4 12402 \N +497016 2025-11-14 23:53:01.32194+00 2025-11-14 23:53:01.321946+00 f t ADELANTO 0.00 5 12402 \N +504592 2025-11-17 15:55:31.158865+00 2025-11-17 15:55:31.158874+00 f t SUBTOTAL 54000.00 1 12566 \N +504593 2025-11-17 15:55:31.160714+00 2025-11-17 15:55:31.160721+00 f t COSTO_SERVICIO 0.00 2 12566 \N +504594 2025-11-17 15:55:31.162157+00 2025-11-17 15:55:31.162164+00 f t DESCUENTO 0.00 3 12566 \N +504595 2025-11-17 15:55:31.163479+00 2025-11-17 15:55:31.163489+00 f t TOTAL 54000.00 4 12566 \N +504596 2025-11-17 15:55:31.164893+00 2025-11-17 15:55:31.1649+00 f t ADELANTO 13500.00 5 12566 \N +497042 2025-11-14 23:53:39.64452+00 2025-11-14 23:53:39.644528+00 f t SUBTOTAL 0.00 1 12403 \N +497043 2025-11-14 23:53:39.645965+00 2025-11-14 23:53:39.645973+00 f t COSTO_SERVICIO 0.00 2 12403 \N +497044 2025-11-14 23:53:39.647064+00 2025-11-14 23:53:39.647072+00 f t DESCUENTO 0.00 3 12403 \N +497045 2025-11-14 23:53:39.648128+00 2025-11-14 23:53:39.648133+00 f t TOTAL 0.00 4 12403 \N +497046 2025-11-14 23:53:39.648914+00 2025-11-14 23:53:39.648919+00 f t ADELANTO 0.00 5 12403 \N +497077 2025-11-14 23:55:35.105439+00 2025-11-14 23:55:35.105445+00 f t SUBTOTAL 77700.00 1 12401 \N +497078 2025-11-14 23:55:35.106916+00 2025-11-14 23:55:35.106922+00 f t COSTO_SERVICIO 0.00 2 12401 \N +497079 2025-11-14 23:55:35.107983+00 2025-11-14 23:55:35.107989+00 f t DESCUENTO 0.00 3 12401 \N +497080 2025-11-14 23:55:35.108929+00 2025-11-14 23:55:35.108934+00 f t TOTAL 77700.00 4 12401 \N +497081 2025-11-14 23:55:35.109812+00 2025-11-14 23:55:35.109817+00 f t ADELANTO 21200.00 5 12401 \N +517642 2025-11-19 18:53:02.22344+00 2025-11-19 18:53:02.223451+00 f t SUBTOTAL 13200.00 1 12878 \N +517643 2025-11-19 18:53:02.225538+00 2025-11-19 18:53:02.225546+00 f t COSTO_SERVICIO 0.00 2 12878 \N +517644 2025-11-19 18:53:02.227027+00 2025-11-19 18:53:02.227037+00 f t DESCUENTO 0.00 3 12878 \N +517645 2025-11-19 18:53:02.228517+00 2025-11-19 18:53:02.228526+00 f t TOTAL 13200.00 4 12878 \N +517646 2025-11-19 18:53:02.229985+00 2025-11-19 18:53:02.229994+00 f t ADELANTO 13200.00 5 12878 \N +517777 2025-11-19 19:14:59.857015+00 2025-11-19 19:14:59.857024+00 f t SUBTOTAL 55000.00 1 12883 \N +517778 2025-11-19 19:14:59.858787+00 2025-11-19 19:14:59.858793+00 f t COSTO_SERVICIO 0.00 2 12883 \N +517779 2025-11-19 19:14:59.859909+00 2025-11-19 19:14:59.859916+00 f t DESCUENTO 0.00 3 12883 \N +517780 2025-11-19 19:14:59.860953+00 2025-11-19 19:14:59.860958+00 f t TOTAL 55000.00 4 12883 \N +517781 2025-11-19 19:14:59.861929+00 2025-11-19 19:14:59.861935+00 f t ADELANTO 11000.00 5 12883 \N +505987 2025-11-17 20:33:40.157261+00 2025-11-17 20:33:40.157269+00 f t SUBTOTAL 54000.00 1 12608 \N +505988 2025-11-17 20:33:40.159339+00 2025-11-17 20:33:40.159346+00 f t COSTO_SERVICIO 0.00 2 12608 \N +505989 2025-11-17 20:33:40.161048+00 2025-11-17 20:33:40.161055+00 f t DESCUENTO 0.00 3 12608 \N +505990 2025-11-17 20:33:40.162574+00 2025-11-17 20:33:40.162581+00 f t TOTAL 54000.00 4 12608 \N +505991 2025-11-17 20:33:40.16801+00 2025-11-17 20:33:40.168018+00 f t ADELANTO 13500.00 5 12608 \N +497132 2025-11-15 00:10:01.118545+00 2025-11-15 00:10:01.118556+00 f t SUBTOTAL 102000.00 1 12404 \N +497133 2025-11-15 00:10:01.120637+00 2025-11-15 00:10:01.120647+00 f t COSTO_SERVICIO 0.00 2 12404 \N +497134 2025-11-15 00:10:01.122552+00 2025-11-15 00:10:01.122561+00 f t DESCUENTO 0.00 3 12404 \N +497135 2025-11-15 00:10:01.123998+00 2025-11-15 00:10:01.124004+00 f t TOTAL 102000.00 4 12404 \N +497136 2025-11-15 00:10:01.125237+00 2025-11-15 00:10:01.125243+00 f t ADELANTO 29500.00 5 12404 \N +511812 2025-11-18 21:37:31.250369+00 2025-11-18 21:37:31.250377+00 f t SUBTOTAL 88000.00 1 12741 \N +511813 2025-11-18 21:37:31.252077+00 2025-11-18 21:37:31.252084+00 f t COSTO_SERVICIO 0.00 2 12741 \N +511814 2025-11-18 21:37:31.253099+00 2025-11-18 21:37:31.253104+00 f t DESCUENTO 0.00 3 12741 \N +511815 2025-11-18 21:37:31.254154+00 2025-11-18 21:37:31.254159+00 f t TOTAL 88000.00 4 12741 \N +511816 2025-11-18 21:37:31.255275+00 2025-11-18 21:37:31.255281+00 f t ADELANTO 13000.00 5 12741 \N +512357 2025-11-18 22:42:28.803987+00 2025-11-18 22:42:28.803998+00 f t SUBTOTAL 92000.00 1 12752 \N +512358 2025-11-18 22:42:28.805903+00 2025-11-18 22:42:28.805912+00 f t COSTO_SERVICIO 0.00 2 12752 \N +512359 2025-11-18 22:42:28.807292+00 2025-11-18 22:42:28.807301+00 f t DESCUENTO 9200.00 3 12752 \N +512360 2025-11-18 22:42:28.808634+00 2025-11-18 22:42:28.808643+00 f t TOTAL 82800.00 4 12752 \N +512361 2025-11-18 22:42:28.809852+00 2025-11-18 22:42:28.80986+00 f t ADELANTO 22000.00 5 12752 \N +500957 2025-11-16 14:49:28.225297+00 2025-11-16 14:49:28.225311+00 f t SUBTOTAL 0.00 1 12498 \N +500958 2025-11-16 14:49:28.22664+00 2025-11-16 14:49:28.226647+00 f t COSTO_SERVICIO 0.00 2 12498 \N +500959 2025-11-16 14:49:28.227609+00 2025-11-16 14:49:28.227614+00 f t DESCUENTO 0.00 3 12498 \N +500960 2025-11-16 14:49:28.228501+00 2025-11-16 14:49:28.228506+00 f t TOTAL 0.00 4 12498 \N +500961 2025-11-16 14:49:28.229349+00 2025-11-16 14:49:28.229354+00 f t ADELANTO 0.00 5 12498 \N +497182 2025-11-15 00:12:14.45004+00 2025-11-15 00:12:14.450051+00 f t SUBTOTAL 78000.00 1 12405 \N +497183 2025-11-15 00:12:14.451932+00 2025-11-15 00:12:14.451943+00 f t COSTO_SERVICIO 0.00 2 12405 \N +497184 2025-11-15 00:12:14.453528+00 2025-11-15 00:12:14.453538+00 f t DESCUENTO 0.00 3 12405 \N +497185 2025-11-15 00:12:14.454864+00 2025-11-15 00:12:14.454872+00 f t TOTAL 78000.00 4 12405 \N +497186 2025-11-15 00:12:14.456515+00 2025-11-15 00:12:14.456522+00 f t ADELANTO 21500.00 5 12405 \N +497192 2025-11-15 00:12:39.012267+00 2025-11-15 00:12:39.012277+00 f t SUBTOTAL 0.00 1 12406 \N +497193 2025-11-15 00:12:39.014082+00 2025-11-15 00:12:39.01409+00 f t COSTO_SERVICIO 0.00 2 12406 \N +497194 2025-11-15 00:12:39.015191+00 2025-11-15 00:12:39.015198+00 f t DESCUENTO 0.00 3 12406 \N +497195 2025-11-15 00:12:39.016204+00 2025-11-15 00:12:39.01621+00 f t TOTAL 0.00 4 12406 \N +497196 2025-11-15 00:12:39.017168+00 2025-11-15 00:12:39.017173+00 f t ADELANTO 0.00 5 12406 \N +502617 2025-11-17 10:25:06.343746+00 2025-11-17 10:25:06.343758+00 f t SUBTOTAL 70000.00 1 12534 \N +502618 2025-11-17 10:25:06.347434+00 2025-11-17 10:25:06.347448+00 f t COSTO_SERVICIO 0.00 2 12534 \N +502619 2025-11-17 10:25:06.354265+00 2025-11-17 10:25:06.354275+00 f t DESCUENTO 0.00 3 12534 \N +502620 2025-11-17 10:25:06.356456+00 2025-11-17 10:25:06.356465+00 f t TOTAL 70000.00 4 12534 \N +502621 2025-11-17 10:25:06.358952+00 2025-11-17 10:25:06.358972+00 f t ADELANTO 19000.00 5 12534 \N +514622 2025-11-19 11:28:10.322304+00 2025-11-19 11:28:10.322315+00 f t SUBTOTAL 0.00 1 12808 \N +514623 2025-11-19 11:28:10.324397+00 2025-11-19 11:28:10.324405+00 f t COSTO_SERVICIO 0.00 2 12808 \N +514624 2025-11-19 11:28:10.325787+00 2025-11-19 11:28:10.325795+00 f t DESCUENTO 0.00 3 12808 \N +514625 2025-11-19 11:28:10.327063+00 2025-11-19 11:28:10.32707+00 f t TOTAL 0.00 4 12808 \N +514626 2025-11-19 11:28:10.328305+00 2025-11-19 11:28:10.328313+00 f t ADELANTO 0.00 5 12808 \N +515137 2025-11-19 12:33:15.148359+00 2025-11-19 12:33:15.148366+00 f t SUBTOTAL 55000.00 1 12818 \N +515138 2025-11-19 12:33:15.150452+00 2025-11-19 12:33:15.150457+00 f t COSTO_SERVICIO 0.00 2 12818 \N +515139 2025-11-19 12:33:15.151583+00 2025-11-19 12:33:15.151588+00 f t DESCUENTO 0.00 3 12818 \N +515140 2025-11-19 12:33:15.152624+00 2025-11-19 12:33:15.152629+00 f t TOTAL 55000.00 4 12818 \N +515141 2025-11-19 12:33:15.153517+00 2025-11-19 12:33:15.153522+00 f t ADELANTO 11000.00 5 12818 \N +504182 2025-11-17 14:32:27.834106+00 2025-11-17 14:32:27.834115+00 f t SUBTOTAL 70000.00 1 12554 \N +504183 2025-11-17 14:32:27.835879+00 2025-11-17 14:32:27.835886+00 f t COSTO_SERVICIO 0.00 2 12554 \N +504184 2025-11-17 14:32:27.837116+00 2025-11-17 14:32:27.837124+00 f t DESCUENTO 0.00 3 12554 \N +504185 2025-11-17 14:32:27.838236+00 2025-11-17 14:32:27.838243+00 f t TOTAL 70000.00 4 12554 \N +504186 2025-11-17 14:32:27.839482+00 2025-11-17 14:32:27.83949+00 f t ADELANTO 19000.00 5 12554 \N +497297 2025-11-15 00:15:15.051393+00 2025-11-15 00:15:15.051403+00 f t SUBTOTAL 70000.00 1 12408 \N +497298 2025-11-15 00:15:15.05348+00 2025-11-15 00:15:15.05349+00 f t COSTO_SERVICIO 0.00 2 12408 \N +497299 2025-11-15 00:15:15.05548+00 2025-11-15 00:15:15.055489+00 f t DESCUENTO 0.00 3 12408 \N +497300 2025-11-15 00:15:15.05738+00 2025-11-15 00:15:15.057388+00 f t TOTAL 70000.00 4 12408 \N +497301 2025-11-15 00:15:15.059179+00 2025-11-15 00:15:15.059187+00 f t ADELANTO 19000.00 5 12408 \N +504742 2025-11-17 16:51:06.620209+00 2025-11-17 16:51:06.620217+00 f t SUBTOTAL 54000.00 1 12574 \N +504743 2025-11-17 16:51:06.622073+00 2025-11-17 16:51:06.622079+00 f t COSTO_SERVICIO 0.00 2 12574 \N +504744 2025-11-17 16:51:06.623588+00 2025-11-17 16:51:06.623593+00 f t DESCUENTO 0.00 3 12574 \N +504745 2025-11-17 16:51:06.624727+00 2025-11-17 16:51:06.624733+00 f t TOTAL 54000.00 4 12574 \N +504746 2025-11-17 16:51:06.626202+00 2025-11-17 16:51:06.62621+00 f t ADELANTO 13500.00 5 12574 \N +505722 2025-11-17 19:37:52.980305+00 2025-11-17 19:37:52.980313+00 f t SUBTOTAL 70000.00 1 12602 \N +505723 2025-11-17 19:37:52.982135+00 2025-11-17 19:37:52.982145+00 f t COSTO_SERVICIO 0.00 2 12602 \N +505724 2025-11-17 19:37:52.983523+00 2025-11-17 19:37:52.983532+00 f t DESCUENTO 0.00 3 12602 \N +505725 2025-11-17 19:37:52.98463+00 2025-11-17 19:37:52.984638+00 f t TOTAL 70000.00 4 12602 \N +505726 2025-11-17 19:37:52.985762+00 2025-11-17 19:37:52.98577+00 f t ADELANTO 19000.00 5 12602 \N +505897 2025-11-17 20:01:34.505336+00 2025-11-17 20:01:34.505344+00 f t SUBTOTAL 46000.00 1 12605 \N +505898 2025-11-17 20:01:34.506851+00 2025-11-17 20:01:34.506858+00 f t COSTO_SERVICIO 0.00 2 12605 \N +505899 2025-11-17 20:01:34.508014+00 2025-11-17 20:01:34.50802+00 f t DESCUENTO 0.00 3 12605 \N +505900 2025-11-17 20:01:34.50901+00 2025-11-17 20:01:34.509015+00 f t TOTAL 46000.00 4 12605 \N +505901 2025-11-17 20:01:34.510093+00 2025-11-17 20:01:34.510099+00 f t ADELANTO 11000.00 5 12605 \N +497377 2025-11-15 00:17:49.527245+00 2025-11-15 00:17:49.527255+00 f t SUBTOTAL 0.00 1 12407 \N +497378 2025-11-15 00:17:49.529031+00 2025-11-15 00:17:49.529039+00 f t COSTO_SERVICIO 0.00 2 12407 \N +497379 2025-11-15 00:17:49.530281+00 2025-11-15 00:17:49.530287+00 f t DESCUENTO 0.00 3 12407 \N +497380 2025-11-15 00:17:49.531202+00 2025-11-15 00:17:49.531207+00 f t TOTAL 0.00 4 12407 \N +497381 2025-11-15 00:17:49.53198+00 2025-11-15 00:17:49.531985+00 f t ADELANTO 0.00 5 12407 \N +497387 2025-11-15 00:37:29.009115+00 2025-11-15 00:37:29.009124+00 f t SUBTOTAL 0.00 1 12409 \N +497388 2025-11-15 00:37:29.010468+00 2025-11-15 00:37:29.010475+00 f t COSTO_SERVICIO 0.00 2 12409 \N +497389 2025-11-15 00:37:29.011484+00 2025-11-15 00:37:29.01149+00 f t DESCUENTO 0.00 3 12409 \N +497390 2025-11-15 00:37:29.012431+00 2025-11-15 00:37:29.012436+00 f t TOTAL 0.00 4 12409 \N +497391 2025-11-15 00:37:29.013495+00 2025-11-15 00:37:29.0135+00 f t ADELANTO 0.00 5 12409 \N +497397 2025-11-15 00:50:08.621784+00 2025-11-15 00:50:08.621798+00 f t SUBTOTAL 0.00 1 12410 \N +497398 2025-11-15 00:50:08.623885+00 2025-11-15 00:50:08.623897+00 f t COSTO_SERVICIO 0.00 2 12410 \N +497399 2025-11-15 00:50:08.625893+00 2025-11-15 00:50:08.625908+00 f t DESCUENTO 0.00 3 12410 \N +497400 2025-11-15 00:50:08.627715+00 2025-11-15 00:50:08.627725+00 f t TOTAL 0.00 4 12410 \N +497401 2025-11-15 00:50:08.629353+00 2025-11-15 00:50:08.629363+00 f t ADELANTO 0.00 5 12410 \N +523682 2025-11-20 21:25:22.543622+00 2025-11-20 21:25:22.54363+00 f t SUBTOTAL 70000.00 1 13026 \N +523683 2025-11-20 21:25:22.545755+00 2025-11-20 21:25:22.545761+00 f t COSTO_SERVICIO 0.00 2 13026 \N +523684 2025-11-20 21:25:22.546813+00 2025-11-20 21:25:22.546818+00 f t DESCUENTO 0.00 3 13026 \N +523685 2025-11-20 21:25:22.547812+00 2025-11-20 21:25:22.547817+00 f t TOTAL 70000.00 4 13026 \N +523686 2025-11-20 21:25:22.548605+00 2025-11-20 21:25:22.548609+00 f t ADELANTO 19000.00 5 13026 \N +500772 2025-11-16 14:21:01.786453+00 2025-11-16 14:21:01.786461+00 f t SUBTOTAL 55000.00 1 12494 \N +500773 2025-11-16 14:21:01.788579+00 2025-11-16 14:21:01.788592+00 f t COSTO_SERVICIO 0.00 2 12494 \N +500774 2025-11-16 14:21:01.790576+00 2025-11-16 14:21:01.790587+00 f t DESCUENTO 0.00 3 12494 \N +500775 2025-11-16 14:21:01.792397+00 2025-11-16 14:21:01.792407+00 f t TOTAL 55000.00 4 12494 \N +500776 2025-11-16 14:21:01.794233+00 2025-11-16 14:21:01.794244+00 f t ADELANTO 11000.00 5 12494 \N +512367 2025-11-18 22:55:39.745527+00 2025-11-18 22:55:39.745538+00 f t SUBTOTAL 0.00 1 12753 \N +512368 2025-11-18 22:55:39.747094+00 2025-11-18 22:55:39.7471+00 f t COSTO_SERVICIO 0.00 2 12753 \N +512369 2025-11-18 22:55:39.748295+00 2025-11-18 22:55:39.748302+00 f t DESCUENTO 0.00 3 12753 \N +512370 2025-11-18 22:55:39.749468+00 2025-11-18 22:55:39.749474+00 f t TOTAL 0.00 4 12753 \N +512371 2025-11-18 22:55:39.750615+00 2025-11-18 22:55:39.750621+00 f t ADELANTO 0.00 5 12753 \N +512612 2025-11-18 23:55:28.881895+00 2025-11-18 23:55:28.881903+00 f t SUBTOTAL 0.00 1 12761 \N +512613 2025-11-18 23:55:28.884139+00 2025-11-18 23:55:28.884146+00 f t COSTO_SERVICIO 0.00 2 12761 \N +512614 2025-11-18 23:55:28.885665+00 2025-11-18 23:55:28.885671+00 f t DESCUENTO 0.00 3 12761 \N +512615 2025-11-18 23:55:28.886731+00 2025-11-18 23:55:28.886736+00 f t TOTAL 0.00 4 12761 \N +512616 2025-11-18 23:55:28.887834+00 2025-11-18 23:55:28.887841+00 f t ADELANTO 0.00 5 12761 \N +512827 2025-11-19 01:26:48.811353+00 2025-11-19 01:26:48.811365+00 f t SUBTOTAL 46000.00 1 12769 \N +512828 2025-11-19 01:26:48.813361+00 2025-11-19 01:26:48.813371+00 f t COSTO_SERVICIO 0.00 2 12769 \N +512829 2025-11-19 01:26:48.814903+00 2025-11-19 01:26:48.814912+00 f t DESCUENTO 0.00 3 12769 \N +512830 2025-11-19 01:26:48.816572+00 2025-11-19 01:26:48.816581+00 f t TOTAL 46000.00 4 12769 \N +512831 2025-11-19 01:26:48.817962+00 2025-11-19 01:26:48.817969+00 f t ADELANTO 11000.00 5 12769 \N +497487 2025-11-15 00:58:09.032166+00 2025-11-15 00:58:09.032178+00 f t SUBTOTAL 148000.00 1 12411 \N +497488 2025-11-15 00:58:09.034483+00 2025-11-15 00:58:09.034494+00 f t COSTO_SERVICIO 0.00 2 12411 \N +497489 2025-11-15 00:58:09.036353+00 2025-11-15 00:58:09.036363+00 f t DESCUENTO 9200.00 3 12411 \N +497490 2025-11-15 00:58:09.038036+00 2025-11-15 00:58:09.038048+00 f t TOTAL 138800.00 4 12411 \N +497491 2025-11-15 00:58:09.039624+00 2025-11-15 00:58:09.039634+00 f t ADELANTO 40500.00 5 12411 \N +514107 2025-11-19 09:22:46.360907+00 2025-11-19 09:22:46.360916+00 f t SUBTOTAL 0.00 1 12797 \N +514108 2025-11-19 09:22:46.36334+00 2025-11-19 09:22:46.363347+00 f t COSTO_SERVICIO 0.00 2 12797 \N +514109 2025-11-19 09:22:46.364762+00 2025-11-19 09:22:46.364769+00 f t DESCUENTO 0.00 3 12797 \N +514110 2025-11-19 09:22:46.365921+00 2025-11-19 09:22:46.365927+00 f t TOTAL 0.00 4 12797 \N +514111 2025-11-19 09:22:46.366973+00 2025-11-19 09:22:46.366979+00 f t ADELANTO 0.00 5 12797 \N +502937 2025-11-17 12:46:23.484485+00 2025-11-17 12:46:23.484496+00 f t SUBTOTAL 85000.00 1 12542 \N +502938 2025-11-17 12:46:23.486298+00 2025-11-17 12:46:23.486304+00 f t COSTO_SERVICIO 0.00 2 12542 \N +502939 2025-11-17 12:46:23.487417+00 2025-11-17 12:46:23.487423+00 f t DESCUENTO 0.00 3 12542 \N +502940 2025-11-17 12:46:23.488553+00 2025-11-17 12:46:23.488558+00 f t TOTAL 85000.00 4 12542 \N +502941 2025-11-17 12:46:23.489665+00 2025-11-17 12:46:23.48967+00 f t ADELANTO 15000.00 5 12542 \N +503777 2025-11-17 13:14:26.887741+00 2025-11-17 13:14:26.887752+00 f t SUBTOTAL 0.00 1 12548 \N +503778 2025-11-17 13:14:26.889792+00 2025-11-17 13:14:26.889801+00 f t COSTO_SERVICIO 0.00 2 12548 \N +503779 2025-11-17 13:14:26.891326+00 2025-11-17 13:14:26.891335+00 f t DESCUENTO 0.00 3 12548 \N +503780 2025-11-17 13:14:26.892789+00 2025-11-17 13:14:26.892798+00 f t TOTAL 0.00 4 12548 \N +503781 2025-11-17 13:14:26.894055+00 2025-11-17 13:14:26.894064+00 f t ADELANTO 0.00 5 12548 \N +497562 2025-11-15 01:43:13.550616+00 2025-11-15 01:43:13.550624+00 f t SUBTOTAL 148000.00 1 12412 \N +497563 2025-11-15 01:43:13.552438+00 2025-11-15 01:43:13.552444+00 f t COSTO_SERVICIO 0.00 2 12412 \N +497564 2025-11-15 01:43:13.553553+00 2025-11-15 01:43:13.553561+00 f t DESCUENTO 9200.00 3 12412 \N +497565 2025-11-15 01:43:13.554684+00 2025-11-15 01:43:13.554689+00 f t TOTAL 138800.00 4 12412 \N +497566 2025-11-15 01:43:13.555593+00 2025-11-15 01:43:13.555598+00 f t ADELANTO 40500.00 5 12412 \N +504192 2025-11-17 14:35:22.395466+00 2025-11-17 14:35:22.395476+00 f t SUBTOTAL 0.00 1 12555 \N +504193 2025-11-17 14:35:22.396864+00 2025-11-17 14:35:22.39687+00 f t COSTO_SERVICIO 0.00 2 12555 \N +504194 2025-11-17 14:35:22.398095+00 2025-11-17 14:35:22.3981+00 f t DESCUENTO 0.00 3 12555 \N +504195 2025-11-17 14:35:22.399352+00 2025-11-17 14:35:22.39936+00 f t TOTAL 0.00 4 12555 \N +504196 2025-11-17 14:35:22.400478+00 2025-11-17 14:35:22.400483+00 f t ADELANTO 0.00 5 12555 \N +515947 2025-11-19 13:38:01.649534+00 2025-11-19 13:38:01.649545+00 f t SUBTOTAL 23000.00 1 12834 \N +515948 2025-11-19 13:38:01.651885+00 2025-11-19 13:38:01.651895+00 f t COSTO_SERVICIO 0.00 2 12834 \N +515949 2025-11-19 13:38:01.653859+00 2025-11-19 13:38:01.653867+00 f t DESCUENTO 0.00 3 12834 \N +515950 2025-11-19 13:38:01.655846+00 2025-11-19 13:38:01.655855+00 f t TOTAL 23000.00 4 12834 \N +515951 2025-11-19 13:38:01.657526+00 2025-11-19 13:38:01.657535+00 f t ADELANTO 5500.00 5 12834 \N +516102 2025-11-19 13:57:30.794193+00 2025-11-19 13:57:30.794203+00 f t SUBTOTAL 78000.00 1 12837 \N +516103 2025-11-19 13:57:30.796624+00 2025-11-19 13:57:30.796634+00 f t COSTO_SERVICIO 0.00 2 12837 \N +516104 2025-11-19 13:57:30.798189+00 2025-11-19 13:57:30.798197+00 f t DESCUENTO 0.00 3 12837 \N +516105 2025-11-19 13:57:30.79952+00 2025-11-19 13:57:30.799528+00 f t TOTAL 78000.00 4 12837 \N +516106 2025-11-19 13:57:30.800791+00 2025-11-19 13:57:30.800799+00 f t ADELANTO 13000.00 5 12837 \N +505087 2025-11-17 17:16:26.180934+00 2025-11-17 17:16:26.180946+00 f t SUBTOTAL 13200.00 1 12583 \N +505088 2025-11-17 17:16:26.183114+00 2025-11-17 17:16:26.183124+00 f t COSTO_SERVICIO 0.00 2 12583 \N +505089 2025-11-17 17:16:26.185041+00 2025-11-17 17:16:26.185051+00 f t DESCUENTO 0.00 3 12583 \N +505090 2025-11-17 17:16:26.186792+00 2025-11-17 17:16:26.186802+00 f t TOTAL 13200.00 4 12583 \N +505091 2025-11-17 17:16:26.188645+00 2025-11-17 17:16:26.188654+00 f t ADELANTO 13200.00 5 12583 \N +517147 2025-11-19 17:25:49.942052+00 2025-11-19 17:25:49.942064+00 f t SUBTOTAL 0.00 1 12866 \N +517148 2025-11-19 17:25:49.944325+00 2025-11-19 17:25:49.944335+00 f t COSTO_SERVICIO 0.00 2 12866 \N +517149 2025-11-19 17:25:49.945577+00 2025-11-19 17:25:49.945585+00 f t DESCUENTO 0.00 3 12866 \N +517150 2025-11-19 17:25:49.94674+00 2025-11-19 17:25:49.946747+00 f t TOTAL 0.00 4 12866 \N +517151 2025-11-19 17:25:49.948006+00 2025-11-19 17:25:49.948013+00 f t ADELANTO 0.00 5 12866 \N +517517 2025-11-19 18:26:48.250044+00 2025-11-19 18:26:48.250055+00 f t SUBTOTAL 46000.00 1 12874 \N +517518 2025-11-19 18:26:48.251863+00 2025-11-19 18:26:48.251869+00 f t COSTO_SERVICIO 0.00 2 12874 \N +517519 2025-11-19 18:26:48.253113+00 2025-11-19 18:26:48.253118+00 f t DESCUENTO 0.00 3 12874 \N +517520 2025-11-19 18:26:48.254185+00 2025-11-19 18:26:48.25419+00 f t TOTAL 46000.00 4 12874 \N +517521 2025-11-19 18:26:48.255179+00 2025-11-19 18:26:48.255185+00 f t ADELANTO 11000.00 5 12874 \N +500282 2025-11-16 01:27:05.843869+00 2025-11-16 01:27:05.843879+00 f t SUBTOTAL 0.00 1 12481 \N +500283 2025-11-16 01:27:05.846584+00 2025-11-16 01:27:05.846592+00 f t COSTO_SERVICIO 0.00 2 12481 \N +500284 2025-11-16 01:27:05.84809+00 2025-11-16 01:27:05.848097+00 f t DESCUENTO 0.00 3 12481 \N +500285 2025-11-16 01:27:05.849434+00 2025-11-16 01:27:05.84944+00 f t TOTAL 0.00 4 12481 \N +500286 2025-11-16 01:27:05.850694+00 2025-11-16 01:27:05.850707+00 f t ADELANTO 0.00 5 12481 \N +497737 2025-11-15 02:26:30.058623+00 2025-11-15 02:26:30.05863+00 f t SUBTOTAL 53700.00 1 12414 \N +497738 2025-11-15 02:26:30.0601+00 2025-11-15 02:26:30.060106+00 f t COSTO_SERVICIO 0.00 2 12414 \N +497739 2025-11-15 02:26:30.061043+00 2025-11-15 02:26:30.061048+00 f t DESCUENTO 0.00 3 12414 \N +497740 2025-11-15 02:26:30.062095+00 2025-11-15 02:26:30.0621+00 f t TOTAL 53700.00 4 12414 \N +497741 2025-11-15 02:26:30.063038+00 2025-11-15 02:26:30.063043+00 f t ADELANTO 13200.00 5 12414 \N +501147 2025-11-16 16:37:56.387024+00 2025-11-16 16:37:56.387031+00 f t SUBTOTAL 70000.00 1 12502 \N +501148 2025-11-16 16:37:56.388713+00 2025-11-16 16:37:56.388721+00 f t COSTO_SERVICIO 0.00 2 12502 \N +501149 2025-11-16 16:37:56.389899+00 2025-11-16 16:37:56.389904+00 f t DESCUENTO 0.00 3 12502 \N +501150 2025-11-16 16:37:56.39093+00 2025-11-16 16:37:56.390935+00 f t TOTAL 70000.00 4 12502 \N +501151 2025-11-16 16:37:56.392035+00 2025-11-16 16:37:56.39204+00 f t ADELANTO 19000.00 5 12502 \N +497772 2025-11-15 03:16:49.214144+00 2025-11-15 03:16:49.214151+00 f t SUBTOTAL 54000.00 1 12415 \N +497773 2025-11-15 03:16:49.215599+00 2025-11-15 03:16:49.215604+00 f t COSTO_SERVICIO 0.00 2 12415 \N +497774 2025-11-15 03:16:49.216797+00 2025-11-15 03:16:49.216803+00 f t DESCUENTO 0.00 3 12415 \N +497775 2025-11-15 03:16:49.218003+00 2025-11-15 03:16:49.218009+00 f t TOTAL 54000.00 4 12415 \N +497776 2025-11-15 03:16:49.219009+00 2025-11-15 03:16:49.219013+00 f t ADELANTO 13500.00 5 12415 \N +502147 2025-11-17 01:52:34.061532+00 2025-11-17 01:52:34.061542+00 f t SUBTOTAL 70000.00 1 12522 \N +502148 2025-11-17 01:52:34.063501+00 2025-11-17 01:52:34.06351+00 f t COSTO_SERVICIO 0.00 2 12522 \N +502149 2025-11-17 01:52:34.064783+00 2025-11-17 01:52:34.064792+00 f t DESCUENTO 0.00 3 12522 \N +502150 2025-11-17 01:52:34.065947+00 2025-11-17 01:52:34.065954+00 f t TOTAL 70000.00 4 12522 \N +502151 2025-11-17 01:52:34.067155+00 2025-11-17 01:52:34.067162+00 f t ADELANTO 19000.00 5 12522 \N +525507 2025-11-21 02:08:08.649034+00 2025-11-21 02:08:08.649041+00 f t SUBTOTAL 46000.00 1 13065 \N +525508 2025-11-21 02:08:08.650887+00 2025-11-21 02:08:08.650897+00 f t COSTO_SERVICIO 0.00 2 13065 \N +525509 2025-11-21 02:08:08.652302+00 2025-11-21 02:08:08.652308+00 f t DESCUENTO 0.00 3 13065 \N +525510 2025-11-21 02:08:08.653396+00 2025-11-21 02:08:08.653402+00 f t TOTAL 46000.00 4 13065 \N +525511 2025-11-21 02:08:08.654503+00 2025-11-21 02:08:08.654509+00 f t ADELANTO 11000.00 5 13065 \N +514287 2025-11-19 10:13:54.268991+00 2025-11-19 10:13:54.269+00 f t SUBTOTAL 46000.00 1 12801 \N +514288 2025-11-19 10:13:54.271409+00 2025-11-19 10:13:54.271418+00 f t COSTO_SERVICIO 0.00 2 12801 \N +514289 2025-11-19 10:13:54.273041+00 2025-11-19 10:13:54.273049+00 f t DESCUENTO 0.00 3 12801 \N +514290 2025-11-19 10:13:54.274733+00 2025-11-19 10:13:54.274742+00 f t TOTAL 46000.00 4 12801 \N +514291 2025-11-19 10:13:54.276122+00 2025-11-19 10:13:54.276129+00 f t ADELANTO 11000.00 5 12801 \N +497832 2025-11-15 03:43:31.394194+00 2025-11-15 03:43:31.394202+00 f t SUBTOTAL 46000.00 1 12416 \N +497833 2025-11-15 03:43:31.395944+00 2025-11-15 03:43:31.395949+00 f t COSTO_SERVICIO 0.00 2 12416 \N +497834 2025-11-15 03:43:31.397055+00 2025-11-15 03:43:31.39706+00 f t DESCUENTO 0.00 3 12416 \N +497835 2025-11-15 03:43:31.398131+00 2025-11-15 03:43:31.398137+00 f t TOTAL 46000.00 4 12416 \N +497836 2025-11-15 03:43:31.399149+00 2025-11-15 03:43:31.399155+00 f t ADELANTO 11000.00 5 12416 \N +514982 2025-11-19 12:08:55.463276+00 2025-11-19 12:08:55.463289+00 f t SUBTOTAL 55000.00 1 12816 \N +514983 2025-11-19 12:08:55.465209+00 2025-11-19 12:08:55.465219+00 f t COSTO_SERVICIO 0.00 2 12816 \N +514984 2025-11-19 12:08:55.466587+00 2025-11-19 12:08:55.466593+00 f t DESCUENTO 0.00 3 12816 \N +514985 2025-11-19 12:08:55.467921+00 2025-11-19 12:08:55.467927+00 f t TOTAL 55000.00 4 12816 \N +514986 2025-11-19 12:08:55.46912+00 2025-11-19 12:08:55.469126+00 f t ADELANTO 11000.00 5 12816 \N +527042 2025-11-21 13:59:06.936377+00 2025-11-21 13:59:06.936387+00 f t SUBTOTAL 0.00 1 13102 \N +527043 2025-11-21 13:59:06.937956+00 2025-11-21 13:59:06.937967+00 f t COSTO_SERVICIO 0.00 2 13102 \N +527044 2025-11-21 13:59:06.939117+00 2025-11-21 13:59:06.939123+00 f t DESCUENTO 0.00 3 13102 \N +527045 2025-11-21 13:59:06.940293+00 2025-11-21 13:59:06.940298+00 f t TOTAL 0.00 4 13102 \N +527046 2025-11-21 13:59:06.941285+00 2025-11-21 13:59:06.94129+00 f t ADELANTO 0.00 5 13102 \N +497897 2025-11-15 03:47:46.608397+00 2025-11-15 03:47:46.608409+00 f t SUBTOTAL 54000.00 1 12418 \N +497898 2025-11-15 03:47:46.610111+00 2025-11-15 03:47:46.610122+00 f t COSTO_SERVICIO 0.00 2 12418 \N +497899 2025-11-15 03:47:46.611477+00 2025-11-15 03:47:46.611486+00 f t DESCUENTO 0.00 3 12418 \N +497900 2025-11-15 03:47:46.612751+00 2025-11-15 03:47:46.612759+00 f t TOTAL 54000.00 4 12418 \N +497901 2025-11-15 03:47:46.614215+00 2025-11-15 03:47:46.614223+00 f t ADELANTO 13500.00 5 12418 \N +505207 2025-11-17 17:38:42.48563+00 2025-11-17 17:38:42.485638+00 f t SUBTOTAL 0.00 1 12588 \N +505208 2025-11-17 17:38:42.487458+00 2025-11-17 17:38:42.487463+00 f t COSTO_SERVICIO 0.00 2 12588 \N +505209 2025-11-17 17:38:42.488417+00 2025-11-17 17:38:42.488421+00 f t DESCUENTO 0.00 3 12588 \N +505210 2025-11-17 17:38:42.489351+00 2025-11-17 17:38:42.489356+00 f t TOTAL 0.00 4 12588 \N +505211 2025-11-17 17:38:42.49032+00 2025-11-17 17:38:42.490325+00 f t ADELANTO 0.00 5 12588 \N +505627 2025-11-17 19:17:45.537205+00 2025-11-17 19:17:45.537213+00 f t SUBTOTAL 70000.00 1 12599 \N +505628 2025-11-17 19:17:45.538725+00 2025-11-17 19:17:45.538731+00 f t COSTO_SERVICIO 0.00 2 12599 \N +505629 2025-11-17 19:17:45.539883+00 2025-11-17 19:17:45.539889+00 f t DESCUENTO 0.00 3 12599 \N +505630 2025-11-17 19:17:45.540867+00 2025-11-17 19:17:45.540875+00 f t TOTAL 70000.00 4 12599 \N +505631 2025-11-17 19:17:45.5419+00 2025-11-17 19:17:45.541906+00 f t ADELANTO 19000.00 5 12599 \N +497972 2025-11-15 03:51:02.952342+00 2025-11-15 03:51:02.952353+00 f t SUBTOTAL 53700.00 1 12417 \N +497973 2025-11-15 03:51:02.954062+00 2025-11-15 03:51:02.954071+00 f t COSTO_SERVICIO 0.00 2 12417 \N +497974 2025-11-15 03:51:02.95529+00 2025-11-15 03:51:02.955298+00 f t DESCUENTO 0.00 3 12417 \N +497975 2025-11-15 03:51:02.956561+00 2025-11-15 03:51:02.956569+00 f t TOTAL 53700.00 4 12417 \N +497976 2025-11-15 03:51:02.957695+00 2025-11-15 03:51:02.957702+00 f t ADELANTO 13200.00 5 12417 \N +518017 2025-11-19 20:12:22.211269+00 2025-11-19 20:12:22.211276+00 f t SUBTOTAL 140000.00 1 12888 \N +518018 2025-11-19 20:12:22.213269+00 2025-11-19 20:12:22.213275+00 f t COSTO_SERVICIO 0.00 2 12888 \N +518019 2025-11-19 20:12:22.214539+00 2025-11-19 20:12:22.214545+00 f t DESCUENTO 9200.00 3 12888 \N +518020 2025-11-19 20:12:22.215641+00 2025-11-19 20:12:22.215646+00 f t TOTAL 130800.00 4 12888 \N +518021 2025-11-19 20:12:22.216824+00 2025-11-19 20:12:22.21683+00 f t ADELANTO 38000.00 5 12888 \N +548302 2025-11-25 21:00:51.747155+00 2025-11-25 21:00:51.747164+00 f t SUBTOTAL 31500.00 1 13600 \N +548303 2025-11-25 21:00:51.748682+00 2025-11-25 21:00:51.748688+00 f t COSTO_SERVICIO 0.00 2 13600 \N +498012 2025-11-15 04:07:49.613892+00 2025-11-15 04:07:49.613899+00 f t SUBTOTAL 54000.00 1 12419 \N +498013 2025-11-15 04:07:49.615446+00 2025-11-15 04:07:49.615452+00 f t COSTO_SERVICIO 0.00 2 12419 \N +498014 2025-11-15 04:07:49.616498+00 2025-11-15 04:07:49.616503+00 f t DESCUENTO 0.00 3 12419 \N +498015 2025-11-15 04:07:49.617362+00 2025-11-15 04:07:49.617367+00 f t TOTAL 54000.00 4 12419 \N +498016 2025-11-15 04:07:49.618162+00 2025-11-15 04:07:49.618167+00 f t ADELANTO 13500.00 5 12419 \N +501837 2025-11-17 00:16:38.158057+00 2025-11-17 00:16:38.158065+00 f t SUBTOTAL 70000.00 1 12516 \N +501838 2025-11-17 00:16:38.1603+00 2025-11-17 00:16:38.160308+00 f t COSTO_SERVICIO 0.00 2 12516 \N +501839 2025-11-17 00:16:38.161591+00 2025-11-17 00:16:38.161597+00 f t DESCUENTO 0.00 3 12516 \N +501840 2025-11-17 00:16:38.16286+00 2025-11-17 00:16:38.162866+00 f t TOTAL 70000.00 4 12516 \N +501841 2025-11-17 00:16:38.163962+00 2025-11-17 00:16:38.163968+00 f t ADELANTO 19000.00 5 12516 \N +525697 2025-11-21 03:23:23.848837+00 2025-11-21 03:23:23.848846+00 f t SUBTOTAL 0.00 1 13070 \N +525698 2025-11-21 03:23:23.850952+00 2025-11-21 03:23:23.850959+00 f t COSTO_SERVICIO 0.00 2 13070 \N +525699 2025-11-21 03:23:23.852073+00 2025-11-21 03:23:23.852078+00 f t DESCUENTO 0.00 3 13070 \N +525700 2025-11-21 03:23:23.853083+00 2025-11-21 03:23:23.853088+00 f t TOTAL 0.00 4 13070 \N +525701 2025-11-21 03:23:23.854283+00 2025-11-21 03:23:23.85429+00 f t ADELANTO 0.00 5 13070 \N +502157 2025-11-17 01:53:13.447409+00 2025-11-17 01:53:13.447417+00 f t SUBTOTAL 0.00 1 12523 \N +502158 2025-11-17 01:53:13.448889+00 2025-11-17 01:53:13.448897+00 f t COSTO_SERVICIO 0.00 2 12523 \N +502159 2025-11-17 01:53:13.450158+00 2025-11-17 01:53:13.450166+00 f t DESCUENTO 0.00 3 12523 \N +502160 2025-11-17 01:53:13.451433+00 2025-11-17 01:53:13.451441+00 f t TOTAL 0.00 4 12523 \N +502161 2025-11-17 01:53:13.452592+00 2025-11-17 01:53:13.4526+00 f t ADELANTO 0.00 5 12523 \N +514462 2025-11-19 10:52:42.94119+00 2025-11-19 10:52:42.941197+00 f t SUBTOTAL 70000.00 1 12804 \N +514463 2025-11-19 10:52:42.943007+00 2025-11-19 10:52:42.943014+00 f t COSTO_SERVICIO 0.00 2 12804 \N +514464 2025-11-19 10:52:42.944231+00 2025-11-19 10:52:42.944237+00 f t DESCUENTO 0.00 3 12804 \N +514465 2025-11-19 10:52:42.945218+00 2025-11-19 10:52:42.945223+00 f t TOTAL 70000.00 4 12804 \N +514466 2025-11-19 10:52:42.946186+00 2025-11-19 10:52:42.946191+00 f t ADELANTO 19000.00 5 12804 \N +514987 2025-11-19 12:09:07.326045+00 2025-11-19 12:09:07.326053+00 f t SUBTOTAL 0.00 1 12815 \N +514988 2025-11-19 12:09:07.328737+00 2025-11-19 12:09:07.32875+00 f t COSTO_SERVICIO 0.00 2 12815 \N +514989 2025-11-19 12:09:07.330324+00 2025-11-19 12:09:07.330332+00 f t DESCUENTO 0.00 3 12815 \N +514990 2025-11-19 12:09:07.331764+00 2025-11-19 12:09:07.331773+00 f t TOTAL 0.00 4 12815 \N +514991 2025-11-19 12:09:07.332975+00 2025-11-19 12:09:07.332985+00 f t ADELANTO 0.00 5 12815 \N +526482 2025-11-21 11:54:24.92382+00 2025-11-21 11:54:24.923833+00 f t SUBTOTAL 0.00 1 13089 \N +526483 2025-11-21 11:54:24.925919+00 2025-11-21 11:54:24.925928+00 f t COSTO_SERVICIO 0.00 2 13089 \N +526484 2025-11-21 11:54:24.927269+00 2025-11-21 11:54:24.927277+00 f t DESCUENTO 0.00 3 13089 \N +526485 2025-11-21 11:54:24.928517+00 2025-11-21 11:54:24.928526+00 f t TOTAL 0.00 4 13089 \N +526486 2025-11-21 11:54:24.929586+00 2025-11-21 11:54:24.929591+00 f t ADELANTO 0.00 5 13089 \N +498132 2025-11-15 04:30:07.053003+00 2025-11-15 04:30:07.053013+00 f t SUBTOTAL 46000.00 1 12420 \N +498133 2025-11-15 04:30:07.055912+00 2025-11-15 04:30:07.055928+00 f t COSTO_SERVICIO 0.00 2 12420 \N +498134 2025-11-15 04:30:07.058144+00 2025-11-15 04:30:07.058153+00 f t DESCUENTO 0.00 3 12420 \N +498135 2025-11-15 04:30:07.060149+00 2025-11-15 04:30:07.060158+00 f t TOTAL 46000.00 4 12420 \N +498136 2025-11-15 04:30:07.062139+00 2025-11-15 04:30:07.062148+00 f t ADELANTO 11000.00 5 12420 \N +498142 2025-11-15 04:55:05.571219+00 2025-11-15 04:55:05.571231+00 f t SUBTOTAL 0.00 1 12421 \N +498143 2025-11-15 04:55:05.572964+00 2025-11-15 04:55:05.572975+00 f t COSTO_SERVICIO 0.00 2 12421 \N +498144 2025-11-15 04:55:05.574513+00 2025-11-15 04:55:05.574522+00 f t DESCUENTO 0.00 3 12421 \N +498145 2025-11-15 04:55:05.576134+00 2025-11-15 04:55:05.576143+00 f t TOTAL 0.00 4 12421 \N +498146 2025-11-15 04:55:05.577735+00 2025-11-15 04:55:05.577744+00 f t ADELANTO 0.00 5 12421 \N +498152 2025-11-15 05:33:09.825195+00 2025-11-15 05:33:09.825203+00 f t SUBTOTAL 0.00 1 12422 \N +498153 2025-11-15 05:33:09.826869+00 2025-11-15 05:33:09.826876+00 f t COSTO_SERVICIO 0.00 2 12422 \N +498154 2025-11-15 05:33:09.827808+00 2025-11-15 05:33:09.827813+00 f t DESCUENTO 0.00 3 12422 \N +498155 2025-11-15 05:33:09.828848+00 2025-11-15 05:33:09.828855+00 f t TOTAL 0.00 4 12422 \N +498156 2025-11-15 05:33:09.829708+00 2025-11-15 05:33:09.829714+00 f t ADELANTO 0.00 5 12422 \N +504482 2025-11-17 15:16:41.447774+00 2025-11-17 15:16:41.447781+00 f t SUBTOTAL 46000.00 1 12560 \N +504483 2025-11-17 15:16:41.449429+00 2025-11-17 15:16:41.449434+00 f t COSTO_SERVICIO 0.00 2 12560 \N +504484 2025-11-17 15:16:41.450582+00 2025-11-17 15:16:41.450587+00 f t DESCUENTO 0.00 3 12560 \N +498182 2025-11-15 06:05:13.94877+00 2025-11-15 06:05:13.948778+00 f t SUBTOTAL 55000.00 1 12423 \N +498183 2025-11-15 06:05:13.950638+00 2025-11-15 06:05:13.950647+00 f t COSTO_SERVICIO 0.00 2 12423 \N +498184 2025-11-15 06:05:13.952039+00 2025-11-15 06:05:13.952046+00 f t DESCUENTO 0.00 3 12423 \N +498185 2025-11-15 06:05:13.953365+00 2025-11-15 06:05:13.953371+00 f t TOTAL 55000.00 4 12423 \N +498186 2025-11-15 06:05:13.954401+00 2025-11-15 06:05:13.954407+00 f t ADELANTO 11000.00 5 12423 \N +504485 2025-11-17 15:16:41.45149+00 2025-11-17 15:16:41.451495+00 f t TOTAL 46000.00 4 12560 \N +504486 2025-11-17 15:16:41.452284+00 2025-11-17 15:16:41.452289+00 f t ADELANTO 11000.00 5 12560 \N +498192 2025-11-15 07:24:34.195695+00 2025-11-15 07:24:34.195705+00 f t SUBTOTAL 0.00 1 12424 \N +498193 2025-11-15 07:24:34.197227+00 2025-11-15 07:24:34.197234+00 f t COSTO_SERVICIO 0.00 2 12424 \N +498194 2025-11-15 07:24:34.198374+00 2025-11-15 07:24:34.198379+00 f t DESCUENTO 0.00 3 12424 \N +498195 2025-11-15 07:24:34.199714+00 2025-11-15 07:24:34.199721+00 f t TOTAL 0.00 4 12424 \N +498196 2025-11-15 07:24:34.200919+00 2025-11-15 07:24:34.200925+00 f t ADELANTO 0.00 5 12424 \N +498232 2025-11-15 08:17:38.593708+00 2025-11-15 08:17:38.593717+00 f t SUBTOTAL 0.00 1 12425 \N +498233 2025-11-15 08:17:38.595457+00 2025-11-15 08:17:38.595465+00 f t COSTO_SERVICIO 0.00 2 12425 \N +498234 2025-11-15 08:17:38.596783+00 2025-11-15 08:17:38.59679+00 f t DESCUENTO 0.00 3 12425 \N +498235 2025-11-15 08:17:38.597887+00 2025-11-15 08:17:38.597894+00 f t TOTAL 0.00 4 12425 \N +498236 2025-11-15 08:17:38.598845+00 2025-11-15 08:17:38.598851+00 f t ADELANTO 0.00 5 12425 \N +498242 2025-11-15 11:07:48.458607+00 2025-11-15 11:07:48.458617+00 f t SUBTOTAL 0.00 1 12426 \N +498243 2025-11-15 11:07:48.460101+00 2025-11-15 11:07:48.460108+00 f t COSTO_SERVICIO 0.00 2 12426 \N +498244 2025-11-15 11:07:48.461443+00 2025-11-15 11:07:48.461456+00 f t DESCUENTO 0.00 3 12426 \N +498245 2025-11-15 11:07:48.462733+00 2025-11-15 11:07:48.462739+00 f t TOTAL 0.00 4 12426 \N +498246 2025-11-15 11:07:48.464128+00 2025-11-15 11:07:48.464135+00 f t ADELANTO 0.00 5 12426 \N +517907 2025-11-19 19:20:26.182099+00 2025-11-19 19:20:26.182109+00 f t SUBTOTAL 120000.00 1 12886 \N +517908 2025-11-19 19:20:26.184388+00 2025-11-19 19:20:26.184397+00 f t COSTO_SERVICIO 0.00 2 12886 \N +517909 2025-11-19 19:20:26.185629+00 2025-11-19 19:20:26.185636+00 f t DESCUENTO 0.00 3 12886 \N +517910 2025-11-19 19:20:26.186723+00 2025-11-19 19:20:26.186729+00 f t TOTAL 120000.00 4 12886 \N +517911 2025-11-19 19:20:26.187763+00 2025-11-19 19:20:26.18777+00 f t ADELANTO 10000.00 5 12886 \N +524242 2025-11-20 23:16:07.998387+00 2025-11-20 23:16:07.998402+00 f t SUBTOTAL 78000.00 1 13043 \N +524243 2025-11-20 23:16:08.001123+00 2025-11-20 23:16:08.001134+00 f t COSTO_SERVICIO 0.00 2 13043 \N +524244 2025-11-20 23:16:08.002999+00 2025-11-20 23:16:08.003009+00 f t DESCUENTO 0.00 3 13043 \N +524245 2025-11-20 23:16:08.004721+00 2025-11-20 23:16:08.004731+00 f t TOTAL 78000.00 4 13043 \N +524246 2025-11-20 23:16:08.006658+00 2025-11-20 23:16:08.006667+00 f t ADELANTO 21500.00 5 13043 \N +513397 2025-11-19 02:30:44.315487+00 2025-11-19 02:30:44.315495+00 f t SUBTOTAL 46000.00 1 12779 \N +513398 2025-11-19 02:30:44.317555+00 2025-11-19 02:30:44.317562+00 f t COSTO_SERVICIO 0.00 2 12779 \N +513399 2025-11-19 02:30:44.31879+00 2025-11-19 02:30:44.318795+00 f t DESCUENTO 0.00 3 12779 \N +513400 2025-11-19 02:30:44.31994+00 2025-11-19 02:30:44.319945+00 f t TOTAL 46000.00 4 12779 \N +513401 2025-11-19 02:30:44.321145+00 2025-11-19 02:30:44.321151+00 f t ADELANTO 11000.00 5 12779 \N +498352 2025-11-15 11:17:41.453183+00 2025-11-15 11:17:41.453195+00 f t SUBTOTAL 0.00 1 12428 \N +498353 2025-11-15 11:17:41.455671+00 2025-11-15 11:17:41.455681+00 f t COSTO_SERVICIO 0.00 2 12428 \N +498354 2025-11-15 11:17:41.45687+00 2025-11-15 11:17:41.456877+00 f t DESCUENTO 0.00 3 12428 \N +498355 2025-11-15 11:17:41.457836+00 2025-11-15 11:17:41.457842+00 f t TOTAL 0.00 4 12428 \N +498356 2025-11-15 11:17:41.458767+00 2025-11-15 11:17:41.458773+00 f t ADELANTO 0.00 5 12428 \N +514472 2025-11-19 10:54:57.366863+00 2025-11-19 10:54:57.366876+00 f t SUBTOTAL 0.00 1 12805 \N +514473 2025-11-19 10:54:57.368646+00 2025-11-19 10:54:57.368654+00 f t COSTO_SERVICIO 0.00 2 12805 \N +498382 2025-11-15 11:30:26.179521+00 2025-11-15 11:30:26.179538+00 f t SUBTOTAL 55000.00 1 12429 \N +498383 2025-11-15 11:30:26.181532+00 2025-11-15 11:30:26.18154+00 f t COSTO_SERVICIO 0.00 2 12429 \N +498384 2025-11-15 11:30:26.182954+00 2025-11-15 11:30:26.182961+00 f t DESCUENTO 0.00 3 12429 \N +498385 2025-11-15 11:30:26.18414+00 2025-11-15 11:30:26.184146+00 f t TOTAL 55000.00 4 12429 \N +498386 2025-11-15 11:30:26.18522+00 2025-11-15 11:30:26.185225+00 f t ADELANTO 11000.00 5 12429 \N +514474 2025-11-19 10:54:57.369974+00 2025-11-19 10:54:57.369982+00 f t DESCUENTO 0.00 3 12805 \N +514475 2025-11-19 10:54:57.371217+00 2025-11-19 10:54:57.371226+00 f t TOTAL 0.00 4 12805 \N +514476 2025-11-19 10:54:57.372346+00 2025-11-19 10:54:57.372355+00 f t ADELANTO 0.00 5 12805 \N +498412 2025-11-15 11:55:05.450299+00 2025-11-15 11:55:05.450306+00 f t SUBTOTAL 60000.00 1 12430 \N +498413 2025-11-15 11:55:05.452041+00 2025-11-15 11:55:05.45205+00 f t COSTO_SERVICIO 0.00 2 12430 \N +498414 2025-11-15 11:55:05.453614+00 2025-11-15 11:55:05.453623+00 f t DESCUENTO 0.00 3 12430 \N +498415 2025-11-15 11:55:05.455539+00 2025-11-15 11:55:05.455552+00 f t TOTAL 60000.00 4 12430 \N +498416 2025-11-15 11:55:05.457298+00 2025-11-15 11:55:05.457307+00 f t ADELANTO 50000.00 5 12430 \N +515507 2025-11-19 13:07:36.943558+00 2025-11-19 13:07:36.943569+00 f t SUBTOTAL 46000.00 1 12827 \N +515508 2025-11-19 13:07:36.946125+00 2025-11-19 13:07:36.946136+00 f t COSTO_SERVICIO 0.00 2 12827 \N +515509 2025-11-19 13:07:36.947688+00 2025-11-19 13:07:36.947696+00 f t DESCUENTO 0.00 3 12827 \N +515510 2025-11-19 13:07:36.949033+00 2025-11-19 13:07:36.949039+00 f t TOTAL 46000.00 4 12827 \N +515511 2025-11-19 13:07:36.950312+00 2025-11-19 13:07:36.95032+00 f t ADELANTO 11000.00 5 12827 \N +504622 2025-11-17 16:03:57.644243+00 2025-11-17 16:03:57.644254+00 f t SUBTOTAL 82000.00 1 12567 \N +504623 2025-11-17 16:03:57.646406+00 2025-11-17 16:03:57.646416+00 f t COSTO_SERVICIO 0.00 2 12567 \N +504624 2025-11-17 16:03:57.647924+00 2025-11-17 16:03:57.647933+00 f t DESCUENTO 0.00 3 12567 \N +504625 2025-11-17 16:03:57.649448+00 2025-11-17 16:03:57.649456+00 f t TOTAL 82000.00 4 12567 \N +504626 2025-11-17 16:03:57.650761+00 2025-11-17 16:03:57.650768+00 f t ADELANTO 12000.00 5 12567 \N +516602 2025-11-19 15:18:05.034044+00 2025-11-19 15:18:05.034051+00 f t SUBTOTAL 54000.00 1 12852 \N +516603 2025-11-19 15:18:05.036368+00 2025-11-19 15:18:05.036379+00 f t COSTO_SERVICIO 0.00 2 12852 \N +516604 2025-11-19 15:18:05.038318+00 2025-11-19 15:18:05.038329+00 f t DESCUENTO 0.00 3 12852 \N +516605 2025-11-19 15:18:05.039905+00 2025-11-19 15:18:05.039915+00 f t TOTAL 54000.00 4 12852 \N +516606 2025-11-19 15:18:05.041415+00 2025-11-19 15:18:05.041424+00 f t ADELANTO 13500.00 5 12852 \N +504887 2025-11-17 16:59:29.03241+00 2025-11-17 16:59:29.032419+00 f t SUBTOTAL 0.00 1 12579 \N +504888 2025-11-17 16:59:29.034251+00 2025-11-17 16:59:29.034258+00 f t COSTO_SERVICIO 0.00 2 12579 \N +504889 2025-11-17 16:59:29.035632+00 2025-11-17 16:59:29.035638+00 f t DESCUENTO 0.00 3 12579 \N +504890 2025-11-17 16:59:29.036679+00 2025-11-17 16:59:29.036684+00 f t TOTAL 0.00 4 12579 \N +504891 2025-11-17 16:59:29.037595+00 2025-11-17 16:59:29.0376+00 f t ADELANTO 0.00 5 12579 \N +517292 2025-11-19 17:57:52.227769+00 2025-11-19 17:57:52.227782+00 f t SUBTOTAL 0.00 1 12870 \N +517293 2025-11-19 17:57:52.229198+00 2025-11-19 17:57:52.229204+00 f t COSTO_SERVICIO 0.00 2 12870 \N +517294 2025-11-19 17:57:52.230118+00 2025-11-19 17:57:52.230124+00 f t DESCUENTO 0.00 3 12870 \N +517295 2025-11-19 17:57:52.231297+00 2025-11-19 17:57:52.231305+00 f t TOTAL 0.00 4 12870 \N +517296 2025-11-19 17:57:52.232479+00 2025-11-19 17:57:52.232485+00 f t ADELANTO 0.00 5 12870 \N +498542 2025-11-15 12:14:40.98769+00 2025-11-15 12:14:40.987701+00 f t SUBTOTAL 55000.00 1 12431 \N +498543 2025-11-15 12:14:40.989458+00 2025-11-15 12:14:40.989468+00 f t COSTO_SERVICIO 0.00 2 12431 \N +498544 2025-11-15 12:14:40.991122+00 2025-11-15 12:14:40.991147+00 f t DESCUENTO 0.00 3 12431 \N +498545 2025-11-15 12:14:40.992558+00 2025-11-15 12:14:40.992566+00 f t TOTAL 55000.00 4 12431 \N +498546 2025-11-15 12:14:40.993943+00 2025-11-15 12:14:40.993951+00 f t ADELANTO 11000.00 5 12431 \N +518027 2025-11-19 20:12:56.23426+00 2025-11-19 20:12:56.234267+00 f t SUBTOTAL 78000.00 1 12889 \N +518028 2025-11-19 20:12:56.236315+00 2025-11-19 20:12:56.236322+00 f t COSTO_SERVICIO 0.00 2 12889 \N +518029 2025-11-19 20:12:56.237741+00 2025-11-19 20:12:56.237749+00 f t DESCUENTO 0.00 3 12889 \N +518030 2025-11-19 20:12:56.23901+00 2025-11-19 20:12:56.239015+00 f t TOTAL 78000.00 4 12889 \N +518031 2025-11-19 20:12:56.24022+00 2025-11-19 20:12:56.240227+00 f t ADELANTO 21500.00 5 12889 \N +518152 2025-11-19 20:27:39.94633+00 2025-11-19 20:27:39.946342+00 f t SUBTOTAL 0.00 1 12894 \N +518153 2025-11-19 20:27:39.947826+00 2025-11-19 20:27:39.947836+00 f t COSTO_SERVICIO 0.00 2 12894 \N +518154 2025-11-19 20:27:39.949173+00 2025-11-19 20:27:39.949178+00 f t DESCUENTO 0.00 3 12894 \N +518155 2025-11-19 20:27:39.951482+00 2025-11-19 20:27:39.951489+00 f t TOTAL 0.00 4 12894 \N +518156 2025-11-19 20:27:39.952497+00 2025-11-19 20:27:39.952503+00 f t ADELANTO 0.00 5 12894 \N +518252 2025-11-19 20:29:32.192386+00 2025-11-19 20:29:32.192394+00 f t SUBTOTAL 70000.00 1 12893 \N +518253 2025-11-19 20:29:32.194214+00 2025-11-19 20:29:32.194219+00 f t COSTO_SERVICIO 0.00 2 12893 \N +518254 2025-11-19 20:29:32.195568+00 2025-11-19 20:29:32.195575+00 f t DESCUENTO 0.00 3 12893 \N +518255 2025-11-19 20:29:32.19671+00 2025-11-19 20:29:32.196715+00 f t TOTAL 70000.00 4 12893 \N +518256 2025-11-19 20:29:32.197676+00 2025-11-19 20:29:32.197681+00 f t ADELANTO 19000.00 5 12893 \N +518662 2025-11-19 21:01:05.19871+00 2025-11-19 21:01:05.198718+00 f t SUBTOTAL 13200.00 1 12901 \N +518663 2025-11-19 21:01:05.201143+00 2025-11-19 21:01:05.201162+00 f t COSTO_SERVICIO 0.00 2 12901 \N +518664 2025-11-19 21:01:05.202847+00 2025-11-19 21:01:05.202858+00 f t DESCUENTO 0.00 3 12901 \N +518665 2025-11-19 21:01:05.204549+00 2025-11-19 21:01:05.204557+00 f t TOTAL 13200.00 4 12901 \N +548304 2025-11-25 21:00:51.749749+00 2025-11-25 21:00:51.749755+00 f t DESCUENTO 0.00 3 13600 \N +548305 2025-11-25 21:00:51.750803+00 2025-11-25 21:00:51.750808+00 f t TOTAL 31500.00 4 13600 \N +512392 2025-11-18 23:05:28.718011+00 2025-11-18 23:05:28.718025+00 f t SUBTOTAL 0.00 1 12754 \N +512393 2025-11-18 23:05:28.720204+00 2025-11-18 23:05:28.720213+00 f t COSTO_SERVICIO 0.00 2 12754 \N +512394 2025-11-18 23:05:28.721337+00 2025-11-18 23:05:28.721344+00 f t DESCUENTO 0.00 3 12754 \N +512395 2025-11-18 23:05:28.722456+00 2025-11-18 23:05:28.722463+00 f t TOTAL 0.00 4 12754 \N +512396 2025-11-18 23:05:28.723548+00 2025-11-18 23:05:28.723555+00 f t ADELANTO 0.00 5 12754 \N +500987 2025-11-16 15:02:33.825155+00 2025-11-16 15:02:33.825164+00 f t SUBTOTAL 54000.00 1 12499 \N +500988 2025-11-16 15:02:33.827075+00 2025-11-16 15:02:33.827082+00 f t COSTO_SERVICIO 0.00 2 12499 \N +500989 2025-11-16 15:02:33.828478+00 2025-11-16 15:02:33.828484+00 f t DESCUENTO 0.00 3 12499 \N +500990 2025-11-16 15:02:33.829632+00 2025-11-16 15:02:33.829637+00 f t TOTAL 54000.00 4 12499 \N +500991 2025-11-16 15:02:33.830953+00 2025-11-16 15:02:33.830966+00 f t ADELANTO 13500.00 5 12499 \N +498617 2025-11-15 12:24:20.273958+00 2025-11-15 12:24:20.273965+00 f t SUBTOTAL 55000.00 1 12432 \N +498618 2025-11-15 12:24:20.275395+00 2025-11-15 12:24:20.275402+00 f t COSTO_SERVICIO 0.00 2 12432 \N +498619 2025-11-15 12:24:20.276499+00 2025-11-15 12:24:20.276505+00 f t DESCUENTO 0.00 3 12432 \N +498620 2025-11-15 12:24:20.277398+00 2025-11-15 12:24:20.277403+00 f t TOTAL 55000.00 4 12432 \N +498621 2025-11-15 12:24:20.278251+00 2025-11-15 12:24:20.278256+00 f t ADELANTO 11000.00 5 12432 \N +498657 2025-11-15 12:52:19.816012+00 2025-11-15 12:52:19.81602+00 f t SUBTOTAL 46000.00 1 12433 \N +498658 2025-11-15 12:52:19.820044+00 2025-11-15 12:52:19.820051+00 f t COSTO_SERVICIO 0.00 2 12433 \N +498659 2025-11-15 12:52:19.823326+00 2025-11-15 12:52:19.823332+00 f t DESCUENTO 0.00 3 12433 \N +498660 2025-11-15 12:52:19.825639+00 2025-11-15 12:52:19.825645+00 f t TOTAL 46000.00 4 12433 \N +498661 2025-11-15 12:52:19.829679+00 2025-11-15 12:52:19.829689+00 f t ADELANTO 11000.00 5 12433 \N +498677 2025-11-15 12:54:29.653637+00 2025-11-15 12:54:29.653647+00 f t SUBTOTAL 0.00 1 12434 \N +498678 2025-11-15 12:54:29.655425+00 2025-11-15 12:54:29.655431+00 f t COSTO_SERVICIO 0.00 2 12434 \N +498679 2025-11-15 12:54:29.656534+00 2025-11-15 12:54:29.656541+00 f t DESCUENTO 0.00 3 12434 \N +498680 2025-11-15 12:54:29.65768+00 2025-11-15 12:54:29.657688+00 f t TOTAL 0.00 4 12434 \N +498681 2025-11-15 12:54:29.658675+00 2025-11-15 12:54:29.658682+00 f t ADELANTO 0.00 5 12434 \N +498687 2025-11-15 13:04:58.763511+00 2025-11-15 13:04:58.763521+00 f t SUBTOTAL 156000.00 1 12427 \N +498688 2025-11-15 13:04:58.765317+00 2025-11-15 13:04:58.765326+00 f t COSTO_SERVICIO 0.00 2 12427 \N +498689 2025-11-15 13:04:58.766669+00 2025-11-15 13:04:58.766677+00 f t DESCUENTO 9200.00 3 12427 \N +498690 2025-11-15 13:04:58.767904+00 2025-11-15 13:04:58.767912+00 f t TOTAL 146800.00 4 12427 \N +498691 2025-11-15 13:04:58.769125+00 2025-11-15 13:04:58.769135+00 f t ADELANTO 43000.00 5 12427 \N +498697 2025-11-15 13:09:23.274179+00 2025-11-15 13:09:23.27419+00 f t SUBTOTAL 0.00 1 12435 \N +498698 2025-11-15 13:09:23.27563+00 2025-11-15 13:09:23.275637+00 f t COSTO_SERVICIO 0.00 2 12435 \N +498699 2025-11-15 13:09:23.276615+00 2025-11-15 13:09:23.276621+00 f t DESCUENTO 0.00 3 12435 \N +498700 2025-11-15 13:09:23.277518+00 2025-11-15 13:09:23.277524+00 f t TOTAL 0.00 4 12435 \N +498701 2025-11-15 13:09:23.278428+00 2025-11-15 13:09:23.278432+00 f t ADELANTO 0.00 5 12435 \N +504357 2025-11-17 15:10:32.991507+00 2025-11-17 15:10:32.991519+00 f t SUBTOTAL 54000.00 1 12558 \N +504358 2025-11-17 15:10:32.993685+00 2025-11-17 15:10:32.993696+00 f t COSTO_SERVICIO 0.00 2 12558 \N +504359 2025-11-17 15:10:32.995356+00 2025-11-17 15:10:32.995366+00 f t DESCUENTO 0.00 3 12558 \N +504360 2025-11-17 15:10:32.997141+00 2025-11-17 15:10:32.99715+00 f t TOTAL 54000.00 4 12558 \N +504361 2025-11-17 15:10:32.999027+00 2025-11-17 15:10:32.999036+00 f t ADELANTO 13500.00 5 12558 \N +498752 2025-11-15 13:30:08.904721+00 2025-11-15 13:30:08.904733+00 f t SUBTOTAL 57000.00 1 12436 \N +498753 2025-11-15 13:30:08.907125+00 2025-11-15 13:30:08.907158+00 f t COSTO_SERVICIO 0.00 2 12436 \N +498754 2025-11-15 13:30:08.909069+00 2025-11-15 13:30:08.90908+00 f t DESCUENTO 0.00 3 12436 \N +498755 2025-11-15 13:30:08.91099+00 2025-11-15 13:30:08.910999+00 f t TOTAL 57000.00 4 12436 \N +498756 2025-11-15 13:30:08.912995+00 2025-11-15 13:30:08.913002+00 f t ADELANTO 57000.00 5 12436 \N +504632 2025-11-17 16:10:25.462527+00 2025-11-17 16:10:25.462549+00 f t SUBTOTAL 0.00 1 12568 \N +498762 2025-11-15 13:34:04.676279+00 2025-11-15 13:34:04.676289+00 f t SUBTOTAL 0.00 1 12437 \N +498763 2025-11-15 13:34:04.678046+00 2025-11-15 13:34:04.678054+00 f t COSTO_SERVICIO 0.00 2 12437 \N +498764 2025-11-15 13:34:04.679598+00 2025-11-15 13:34:04.679606+00 f t DESCUENTO 0.00 3 12437 \N +498765 2025-11-15 13:34:04.68092+00 2025-11-15 13:34:04.680926+00 f t TOTAL 0.00 4 12437 \N +498766 2025-11-15 13:34:04.682011+00 2025-11-15 13:34:04.682016+00 f t ADELANTO 0.00 5 12437 \N +504633 2025-11-17 16:10:25.464126+00 2025-11-17 16:10:25.464136+00 f t COSTO_SERVICIO 0.00 2 12568 \N +504634 2025-11-17 16:10:25.465556+00 2025-11-17 16:10:25.465565+00 f t DESCUENTO 0.00 3 12568 \N +504635 2025-11-17 16:10:25.46684+00 2025-11-17 16:10:25.466846+00 f t TOTAL 0.00 4 12568 \N +504636 2025-11-17 16:10:25.468146+00 2025-11-17 16:10:25.468152+00 f t ADELANTO 0.00 5 12568 \N +504892 2025-11-17 16:59:44.685545+00 2025-11-17 16:59:44.685552+00 f t SUBTOTAL 54000.00 1 12578 \N +504893 2025-11-17 16:59:44.687259+00 2025-11-17 16:59:44.687265+00 f t COSTO_SERVICIO 0.00 2 12578 \N +504894 2025-11-17 16:59:44.68849+00 2025-11-17 16:59:44.688498+00 f t DESCUENTO 0.00 3 12578 \N +504895 2025-11-17 16:59:44.689802+00 2025-11-17 16:59:44.689812+00 f t TOTAL 54000.00 4 12578 \N +504896 2025-11-17 16:59:44.690987+00 2025-11-17 16:59:44.690993+00 f t ADELANTO 13500.00 5 12578 \N +505437 2025-11-17 18:41:47.674817+00 2025-11-17 18:41:47.674826+00 f t SUBTOTAL 46000.00 1 12593 \N +505438 2025-11-17 18:41:47.676388+00 2025-11-17 18:41:47.676394+00 f t COSTO_SERVICIO 0.00 2 12593 \N +505439 2025-11-17 18:41:47.677468+00 2025-11-17 18:41:47.677473+00 f t DESCUENTO 0.00 3 12593 \N +505440 2025-11-17 18:41:47.678421+00 2025-11-17 18:41:47.678426+00 f t TOTAL 46000.00 4 12593 \N +505441 2025-11-17 18:41:47.679333+00 2025-11-17 18:41:47.679338+00 f t ADELANTO 11000.00 5 12593 \N +505532 2025-11-17 18:57:14.010089+00 2025-11-17 18:57:14.010096+00 f t SUBTOTAL 78000.00 1 12595 \N +498807 2025-11-15 13:40:23.020764+00 2025-11-15 13:40:23.020772+00 f t SUBTOTAL 30000.00 1 12438 \N +498808 2025-11-15 13:40:23.022396+00 2025-11-15 13:40:23.022402+00 f t COSTO_SERVICIO 0.00 2 12438 \N +498809 2025-11-15 13:40:23.023688+00 2025-11-15 13:40:23.023693+00 f t DESCUENTO 0.00 3 12438 \N +498810 2025-11-15 13:40:23.024812+00 2025-11-15 13:40:23.024818+00 f t TOTAL 30000.00 4 12438 \N +498811 2025-11-15 13:40:23.02594+00 2025-11-15 13:40:23.025945+00 f t ADELANTO 30000.00 5 12438 \N +505533 2025-11-17 18:57:14.011759+00 2025-11-17 18:57:14.011765+00 f t COSTO_SERVICIO 0.00 2 12595 \N +505534 2025-11-17 18:57:14.013151+00 2025-11-17 18:57:14.013156+00 f t DESCUENTO 0.00 3 12595 \N +505535 2025-11-17 18:57:14.014329+00 2025-11-17 18:57:14.014335+00 f t TOTAL 78000.00 4 12595 \N +505536 2025-11-17 18:57:14.015266+00 2025-11-17 18:57:14.015271+00 f t ADELANTO 21500.00 5 12595 \N +505927 2025-11-17 20:07:31.591691+00 2025-11-17 20:07:31.591698+00 f t SUBTOTAL 70000.00 1 12606 \N +505928 2025-11-17 20:07:31.593954+00 2025-11-17 20:07:31.593962+00 f t COSTO_SERVICIO 0.00 2 12606 \N +505929 2025-11-17 20:07:31.595217+00 2025-11-17 20:07:31.595226+00 f t DESCUENTO 0.00 3 12606 \N +505930 2025-11-17 20:07:31.596488+00 2025-11-17 20:07:31.596494+00 f t TOTAL 70000.00 4 12606 \N +505931 2025-11-17 20:07:31.597569+00 2025-11-17 20:07:31.597574+00 f t ADELANTO 19000.00 5 12606 \N +498897 2025-11-15 13:44:20.363722+00 2025-11-15 13:44:20.363732+00 f t SUBTOTAL 54000.00 1 12439 \N +498898 2025-11-15 13:44:20.365377+00 2025-11-15 13:44:20.365385+00 f t COSTO_SERVICIO 0.00 2 12439 \N +498899 2025-11-15 13:44:20.366534+00 2025-11-15 13:44:20.366541+00 f t DESCUENTO 0.00 3 12439 \N +498900 2025-11-15 13:44:20.367564+00 2025-11-15 13:44:20.367569+00 f t TOTAL 54000.00 4 12439 \N +498901 2025-11-15 13:44:20.368494+00 2025-11-15 13:44:20.368499+00 f t ADELANTO 13500.00 5 12439 \N +498917 2025-11-15 14:21:26.200407+00 2025-11-15 14:21:26.200416+00 f t SUBTOTAL 0.00 1 12441 \N +498918 2025-11-15 14:21:26.202923+00 2025-11-15 14:21:26.202931+00 f t COSTO_SERVICIO 0.00 2 12441 \N +498919 2025-11-15 14:21:26.204246+00 2025-11-15 14:21:26.204252+00 f t DESCUENTO 0.00 3 12441 \N +498920 2025-11-15 14:21:26.205459+00 2025-11-15 14:21:26.205465+00 f t TOTAL 0.00 4 12441 \N +498921 2025-11-15 14:21:26.206664+00 2025-11-15 14:21:26.20667+00 f t ADELANTO 0.00 5 12441 \N +501687 2025-11-16 20:28:54.104662+00 2025-11-16 20:28:54.10467+00 f t SUBTOTAL 444000.00 1 12513 \N +501688 2025-11-16 20:28:54.106854+00 2025-11-16 20:28:54.106871+00 f t COSTO_SERVICIO 0.00 2 12513 \N +501689 2025-11-16 20:28:54.108579+00 2025-11-16 20:28:54.108588+00 f t DESCUENTO 18400.00 3 12513 \N +501690 2025-11-16 20:28:54.110101+00 2025-11-16 20:28:54.110109+00 f t TOTAL 425600.00 4 12513 \N +501691 2025-11-16 20:28:54.111525+00 2025-11-16 20:28:54.111536+00 f t ADELANTO 112000.00 5 12513 \N +498937 2025-11-15 14:22:19.968195+00 2025-11-15 14:22:19.968208+00 f t SUBTOTAL 55000.00 1 12440 \N +498938 2025-11-15 14:22:19.970123+00 2025-11-15 14:22:19.970134+00 f t COSTO_SERVICIO 0.00 2 12440 \N +498939 2025-11-15 14:22:19.971683+00 2025-11-15 14:22:19.971692+00 f t DESCUENTO 0.00 3 12440 \N +498940 2025-11-15 14:22:19.973065+00 2025-11-15 14:22:19.973073+00 f t TOTAL 55000.00 4 12440 \N +498941 2025-11-15 14:22:19.974288+00 2025-11-15 14:22:19.974297+00 f t ADELANTO 11000.00 5 12440 \N +498947 2025-11-15 14:22:20.730258+00 2025-11-15 14:22:20.730267+00 f t SUBTOTAL 0.00 1 12442 \N +498948 2025-11-15 14:22:20.73175+00 2025-11-15 14:22:20.731757+00 f t COSTO_SERVICIO 0.00 2 12442 \N +498949 2025-11-15 14:22:20.732951+00 2025-11-15 14:22:20.732959+00 f t DESCUENTO 0.00 3 12442 \N +498950 2025-11-15 14:22:20.734129+00 2025-11-15 14:22:20.734134+00 f t TOTAL 0.00 4 12442 \N +498951 2025-11-15 14:22:20.735349+00 2025-11-15 14:22:20.735357+00 f t ADELANTO 0.00 5 12442 \N +502652 2025-11-17 11:01:16.188825+00 2025-11-17 11:01:16.188838+00 f t SUBTOTAL 0.00 1 12535 \N +502653 2025-11-17 11:01:16.191628+00 2025-11-17 11:01:16.19164+00 f t COSTO_SERVICIO 0.00 2 12535 \N +502654 2025-11-17 11:01:16.193316+00 2025-11-17 11:01:16.193327+00 f t DESCUENTO 0.00 3 12535 \N +502655 2025-11-17 11:01:16.194903+00 2025-11-17 11:01:16.194912+00 f t TOTAL 0.00 4 12535 \N +502656 2025-11-17 11:01:16.196372+00 2025-11-17 11:01:16.196381+00 f t ADELANTO 0.00 5 12535 \N +502812 2025-11-17 12:39:42.91691+00 2025-11-17 12:39:42.916918+00 f t SUBTOTAL 54000.00 1 12538 \N +502813 2025-11-17 12:39:42.918473+00 2025-11-17 12:39:42.918478+00 f t COSTO_SERVICIO 0.00 2 12538 \N +502814 2025-11-17 12:39:42.919384+00 2025-11-17 12:39:42.919389+00 f t DESCUENTO 0.00 3 12538 \N +502815 2025-11-17 12:39:42.920222+00 2025-11-17 12:39:42.920227+00 f t TOTAL 54000.00 4 12538 \N +502816 2025-11-17 12:39:42.921061+00 2025-11-17 12:39:42.921066+00 f t ADELANTO 13500.00 5 12538 \N +499002 2025-11-15 14:45:32.994826+00 2025-11-15 14:45:32.994835+00 f t SUBTOTAL 30000.00 1 12443 \N +499003 2025-11-15 14:45:32.996543+00 2025-11-15 14:45:32.99655+00 f t COSTO_SERVICIO 0.00 2 12443 \N +499004 2025-11-15 14:45:32.997953+00 2025-11-15 14:45:32.99796+00 f t DESCUENTO 0.00 3 12443 \N +499005 2025-11-15 14:45:32.999304+00 2025-11-15 14:45:32.999311+00 f t TOTAL 30000.00 4 12443 \N +499006 2025-11-15 14:45:33.000656+00 2025-11-15 14:45:33.000664+00 f t ADELANTO 30000.00 5 12443 \N +499022 2025-11-15 14:46:33.507094+00 2025-11-15 14:46:33.507106+00 f t SUBTOTAL 0.00 1 12444 \N +499023 2025-11-15 14:46:33.509397+00 2025-11-15 14:46:33.509406+00 f t COSTO_SERVICIO 0.00 2 12444 \N +499024 2025-11-15 14:46:33.510836+00 2025-11-15 14:46:33.510845+00 f t DESCUENTO 0.00 3 12444 \N +499025 2025-11-15 14:46:33.512146+00 2025-11-15 14:46:33.512154+00 f t TOTAL 0.00 4 12444 \N +499026 2025-11-15 14:46:33.513362+00 2025-11-15 14:46:33.513369+00 f t ADELANTO 0.00 5 12444 \N +499032 2025-11-15 14:51:27.417161+00 2025-11-15 14:51:27.417175+00 f t SUBTOTAL 0.00 1 12445 \N +499033 2025-11-15 14:51:27.418909+00 2025-11-15 14:51:27.41892+00 f t COSTO_SERVICIO 0.00 2 12445 \N +499034 2025-11-15 14:51:27.420382+00 2025-11-15 14:51:27.420392+00 f t DESCUENTO 0.00 3 12445 \N +499035 2025-11-15 14:51:27.421955+00 2025-11-15 14:51:27.421963+00 f t TOTAL 0.00 4 12445 \N +499036 2025-11-15 14:51:27.423347+00 2025-11-15 14:51:27.423356+00 f t ADELANTO 0.00 5 12445 \N +504362 2025-11-17 15:10:48.003554+00 2025-11-17 15:10:48.003561+00 f t SUBTOTAL 13200.00 1 12559 \N +504363 2025-11-17 15:10:48.005577+00 2025-11-17 15:10:48.005585+00 f t COSTO_SERVICIO 0.00 2 12559 \N +504364 2025-11-17 15:10:48.006792+00 2025-11-17 15:10:48.006798+00 f t DESCUENTO 0.00 3 12559 \N +504365 2025-11-17 15:10:48.00792+00 2025-11-17 15:10:48.007926+00 f t TOTAL 13200.00 4 12559 \N +504366 2025-11-17 15:10:48.008883+00 2025-11-17 15:10:48.008889+00 f t ADELANTO 13200.00 5 12559 \N +499082 2025-11-15 14:53:32.880079+00 2025-11-15 14:53:32.88009+00 f t SUBTOTAL 54000.00 1 12446 \N +499083 2025-11-15 14:53:32.882005+00 2025-11-15 14:53:32.882014+00 f t COSTO_SERVICIO 0.00 2 12446 \N +499084 2025-11-15 14:53:32.883424+00 2025-11-15 14:53:32.883433+00 f t DESCUENTO 0.00 3 12446 \N +499085 2025-11-15 14:53:32.884758+00 2025-11-15 14:53:32.884766+00 f t TOTAL 54000.00 4 12446 \N +499086 2025-11-15 14:53:32.886205+00 2025-11-15 14:53:32.886213+00 f t ADELANTO 13500.00 5 12446 \N +499102 2025-11-15 14:57:20.728195+00 2025-11-15 14:57:20.728207+00 f t SUBTOTAL 0.00 1 12447 \N +499103 2025-11-15 14:57:20.730706+00 2025-11-15 14:57:20.73072+00 f t COSTO_SERVICIO 0.00 2 12447 \N +499104 2025-11-15 14:57:20.732392+00 2025-11-15 14:57:20.7324+00 f t DESCUENTO 0.00 3 12447 \N +499105 2025-11-15 14:57:20.733777+00 2025-11-15 14:57:20.733784+00 f t TOTAL 0.00 4 12447 \N +499106 2025-11-15 14:57:20.735039+00 2025-11-15 14:57:20.735044+00 f t ADELANTO 0.00 5 12447 \N +499147 2025-11-15 15:06:20.247396+00 2025-11-15 15:06:20.247404+00 f t SUBTOTAL 46000.00 1 12448 \N +499148 2025-11-15 15:06:20.248986+00 2025-11-15 15:06:20.248992+00 f t COSTO_SERVICIO 0.00 2 12448 \N +499149 2025-11-15 15:06:20.250495+00 2025-11-15 15:06:20.250502+00 f t DESCUENTO 0.00 3 12448 \N +499150 2025-11-15 15:06:20.251613+00 2025-11-15 15:06:20.251618+00 f t TOTAL 46000.00 4 12448 \N +499151 2025-11-15 15:06:20.252773+00 2025-11-15 15:06:20.252779+00 f t ADELANTO 11000.00 5 12448 \N +499157 2025-11-15 15:15:38.446206+00 2025-11-15 15:15:38.446218+00 f t SUBTOTAL 0.00 1 12449 \N +499158 2025-11-15 15:15:38.447997+00 2025-11-15 15:15:38.448008+00 f t COSTO_SERVICIO 0.00 2 12449 \N +499159 2025-11-15 15:15:38.449534+00 2025-11-15 15:15:38.449543+00 f t DESCUENTO 0.00 3 12449 \N +499160 2025-11-15 15:15:38.450764+00 2025-11-15 15:15:38.450773+00 f t TOTAL 0.00 4 12449 \N +499161 2025-11-15 15:15:38.452072+00 2025-11-15 15:15:38.45208+00 f t ADELANTO 0.00 5 12449 \N +499167 2025-11-15 15:15:39.861502+00 2025-11-15 15:15:39.861511+00 f t SUBTOTAL 0.00 1 12450 \N +499168 2025-11-15 15:15:39.863018+00 2025-11-15 15:15:39.863025+00 f t COSTO_SERVICIO 0.00 2 12450 \N +499169 2025-11-15 15:15:39.864148+00 2025-11-15 15:15:39.864154+00 f t DESCUENTO 0.00 3 12450 \N +499170 2025-11-15 15:15:39.865149+00 2025-11-15 15:15:39.865156+00 f t TOTAL 0.00 4 12450 \N +499171 2025-11-15 15:15:39.865945+00 2025-11-15 15:15:39.865951+00 f t ADELANTO 0.00 5 12450 \N +500312 2025-11-16 01:54:32.865486+00 2025-11-16 01:54:32.865494+00 f t SUBTOTAL 75000.00 1 12482 \N +500313 2025-11-16 01:54:32.867712+00 2025-11-16 01:54:32.867718+00 f t COSTO_SERVICIO 0.00 2 12482 \N +500314 2025-11-16 01:54:32.869072+00 2025-11-16 01:54:32.86908+00 f t DESCUENTO 0.00 3 12482 \N +500315 2025-11-16 01:54:32.870436+00 2025-11-16 01:54:32.870441+00 f t TOTAL 75000.00 4 12482 \N +499177 2025-11-15 15:44:00.35376+00 2025-11-15 15:44:00.354514+00 f t SUBTOTAL 0.00 1 12451 \N +499178 2025-11-15 15:44:00.3573+00 2025-11-15 15:44:00.357308+00 f t COSTO_SERVICIO 0.00 2 12451 \N +499179 2025-11-15 15:44:00.358309+00 2025-11-15 15:44:00.358318+00 f t DESCUENTO 0.00 3 12451 \N +499180 2025-11-15 15:44:00.359344+00 2025-11-15 15:44:00.35935+00 f t TOTAL 0.00 4 12451 \N +499181 2025-11-15 15:44:00.360248+00 2025-11-15 15:44:00.360255+00 f t ADELANTO 0.00 5 12451 \N +500316 2025-11-16 01:54:32.871577+00 2025-11-16 01:54:32.871582+00 f t ADELANTO 16500.00 5 12482 \N +513402 2025-11-19 02:31:04.336294+00 2025-11-19 02:31:04.336305+00 f t SUBTOTAL 55000.00 1 12778 \N +513403 2025-11-19 02:31:04.338494+00 2025-11-19 02:31:04.338502+00 f t COSTO_SERVICIO 0.00 2 12778 \N +513404 2025-11-19 02:31:04.340287+00 2025-11-19 02:31:04.340299+00 f t DESCUENTO 0.00 3 12778 \N +513405 2025-11-19 02:31:04.342203+00 2025-11-19 02:31:04.342212+00 f t TOTAL 55000.00 4 12778 \N +513406 2025-11-19 02:31:04.343693+00 2025-11-19 02:31:04.34371+00 f t ADELANTO 11000.00 5 12778 \N +513587 2025-11-19 03:30:53.092594+00 2025-11-19 03:30:53.092607+00 f t SUBTOTAL 0.00 1 12783 \N +513588 2025-11-19 03:30:53.095107+00 2025-11-19 03:30:53.095118+00 f t COSTO_SERVICIO 0.00 2 12783 \N +513589 2025-11-19 03:30:53.09685+00 2025-11-19 03:30:53.09686+00 f t DESCUENTO 0.00 3 12783 \N +513590 2025-11-19 03:30:53.098325+00 2025-11-19 03:30:53.098334+00 f t TOTAL 0.00 4 12783 \N +513591 2025-11-19 03:30:53.100315+00 2025-11-19 03:30:53.100324+00 f t ADELANTO 0.00 5 12783 \N +538312 2025-11-24 09:42:43.885747+00 2025-11-24 09:42:43.885753+00 f t SUBTOTAL 163000.00 1 13364 \N +538313 2025-11-24 09:42:43.887443+00 2025-11-24 09:42:43.887448+00 f t COSTO_SERVICIO 0.00 2 13364 \N +538314 2025-11-24 09:42:43.888447+00 2025-11-24 09:42:43.888453+00 f t DESCUENTO 0.00 3 13364 \N +538315 2025-11-24 09:42:43.889381+00 2025-11-24 09:42:43.889386+00 f t TOTAL 163000.00 4 13364 \N +538316 2025-11-24 09:42:43.890317+00 2025-11-24 09:42:43.890322+00 f t ADELANTO 28000.00 5 13364 \N +502487 2025-11-17 05:59:06.918232+00 2025-11-17 05:59:06.91824+00 f t SUBTOTAL 210000.00 1 12529 \N +502488 2025-11-17 05:59:06.920171+00 2025-11-17 05:59:06.920178+00 f t COSTO_SERVICIO 0.00 2 12529 \N +502489 2025-11-17 05:59:06.921723+00 2025-11-17 05:59:06.921729+00 f t DESCUENTO 9200.00 3 12529 \N +502490 2025-11-17 05:59:06.923063+00 2025-11-17 05:59:06.92307+00 f t TOTAL 200800.00 4 12529 \N +502491 2025-11-17 05:59:06.924347+00 2025-11-17 05:59:06.924352+00 f t ADELANTO 57000.00 5 12529 \N +515347 2025-11-19 12:59:17.899255+00 2025-11-19 12:59:17.899267+00 f t SUBTOTAL 13200.00 1 12822 \N +499287 2025-11-15 16:00:22.372659+00 2025-11-15 16:00:22.37267+00 f t SUBTOTAL 55000.00 1 12452 \N +499288 2025-11-15 16:00:22.37523+00 2025-11-15 16:00:22.375242+00 f t COSTO_SERVICIO 0.00 2 12452 \N +499289 2025-11-15 16:00:22.378271+00 2025-11-15 16:00:22.378284+00 f t DESCUENTO 0.00 3 12452 \N +499290 2025-11-15 16:00:22.381401+00 2025-11-15 16:00:22.381409+00 f t TOTAL 55000.00 4 12452 \N +499291 2025-11-15 16:00:22.384383+00 2025-11-15 16:00:22.384395+00 f t ADELANTO 11000.00 5 12452 \N +515348 2025-11-19 12:59:17.901419+00 2025-11-19 12:59:17.901428+00 f t COSTO_SERVICIO 0.00 2 12822 \N +515349 2025-11-19 12:59:17.90285+00 2025-11-19 12:59:17.902856+00 f t DESCUENTO 0.00 3 12822 \N +515350 2025-11-19 12:59:17.904083+00 2025-11-19 12:59:17.904089+00 f t TOTAL 13200.00 4 12822 \N +515351 2025-11-19 12:59:17.905293+00 2025-11-19 12:59:17.905301+00 f t ADELANTO 13200.00 5 12822 \N +499312 2025-11-15 16:09:14.554876+00 2025-11-15 16:09:14.554896+00 f t SUBTOTAL 0.00 1 12453 \N +499313 2025-11-15 16:09:14.560557+00 2025-11-15 16:09:14.560569+00 f t COSTO_SERVICIO 0.00 2 12453 \N +499314 2025-11-15 16:09:14.563404+00 2025-11-15 16:09:14.563413+00 f t DESCUENTO 0.00 3 12453 \N +499315 2025-11-15 16:09:14.565152+00 2025-11-15 16:09:14.565161+00 f t TOTAL 0.00 4 12453 \N +499316 2025-11-15 16:09:14.566624+00 2025-11-15 16:09:14.56663+00 f t ADELANTO 0.00 5 12453 \N +504642 2025-11-17 16:19:27.354511+00 2025-11-17 16:19:27.354522+00 f t SUBTOTAL 0.00 1 12569 \N +504643 2025-11-17 16:19:27.355993+00 2025-11-17 16:19:27.356+00 f t COSTO_SERVICIO 0.00 2 12569 \N +504644 2025-11-17 16:19:27.357177+00 2025-11-17 16:19:27.357184+00 f t DESCUENTO 0.00 3 12569 \N +504645 2025-11-17 16:19:27.358141+00 2025-11-17 16:19:27.358146+00 f t TOTAL 0.00 4 12569 \N +499352 2025-11-15 16:20:34.641295+00 2025-11-15 16:20:34.641307+00 f t SUBTOTAL 55000.00 1 12455 \N +499353 2025-11-15 16:20:34.64298+00 2025-11-15 16:20:34.642987+00 f t COSTO_SERVICIO 0.00 2 12455 \N +499354 2025-11-15 16:20:34.644335+00 2025-11-15 16:20:34.644341+00 f t DESCUENTO 0.00 3 12455 \N +499355 2025-11-15 16:20:34.645401+00 2025-11-15 16:20:34.645407+00 f t TOTAL 55000.00 4 12455 \N +499356 2025-11-15 16:20:34.64694+00 2025-11-15 16:20:34.646945+00 f t ADELANTO 11000.00 5 12455 \N +504646 2025-11-17 16:19:27.359297+00 2025-11-17 16:19:27.359304+00 f t ADELANTO 0.00 5 12569 \N +505117 2025-11-17 17:18:56.1839+00 2025-11-17 17:18:56.183908+00 f t SUBTOTAL 54000.00 1 12585 \N +505118 2025-11-17 17:18:56.185674+00 2025-11-17 17:18:56.185683+00 f t COSTO_SERVICIO 0.00 2 12585 \N +505119 2025-11-17 17:18:56.187575+00 2025-11-17 17:18:56.187582+00 f t DESCUENTO 0.00 3 12585 \N +505120 2025-11-17 17:18:56.188965+00 2025-11-17 17:18:56.188971+00 f t TOTAL 54000.00 4 12585 \N +505121 2025-11-17 17:18:56.190284+00 2025-11-17 17:18:56.19032+00 f t ADELANTO 13500.00 5 12585 \N +499397 2025-11-15 16:47:23.31823+00 2025-11-15 16:47:23.318237+00 f t SUBTOTAL 23000.00 1 12456 \N +499398 2025-11-15 16:47:23.319647+00 2025-11-15 16:47:23.319653+00 f t COSTO_SERVICIO 0.00 2 12456 \N +499399 2025-11-15 16:47:23.320624+00 2025-11-15 16:47:23.320628+00 f t DESCUENTO 0.00 3 12456 \N +499400 2025-11-15 16:47:23.321596+00 2025-11-15 16:47:23.321604+00 f t TOTAL 23000.00 4 12456 \N +499401 2025-11-15 16:47:23.322585+00 2025-11-15 16:47:23.322592+00 f t ADELANTO 5500.00 5 12456 \N +505542 2025-11-17 19:08:44.193545+00 2025-11-17 19:08:44.193554+00 f t SUBTOTAL 0.00 1 12596 \N +505543 2025-11-17 19:08:44.195259+00 2025-11-17 19:08:44.195267+00 f t COSTO_SERVICIO 0.00 2 12596 \N +505544 2025-11-17 19:08:44.196576+00 2025-11-17 19:08:44.196584+00 f t DESCUENTO 0.00 3 12596 \N +505545 2025-11-17 19:08:44.197852+00 2025-11-17 19:08:44.197859+00 f t TOTAL 0.00 4 12596 \N +505546 2025-11-17 19:08:44.199273+00 2025-11-17 19:08:44.199281+00 f t ADELANTO 0.00 5 12596 \N +499437 2025-11-15 17:13:06.396043+00 2025-11-15 17:13:06.396051+00 f t SUBTOTAL 70000.00 1 12457 \N +499438 2025-11-15 17:13:06.398146+00 2025-11-15 17:13:06.398156+00 f t COSTO_SERVICIO 0.00 2 12457 \N +499439 2025-11-15 17:13:06.399631+00 2025-11-15 17:13:06.399638+00 f t DESCUENTO 0.00 3 12457 \N +499440 2025-11-15 17:13:06.400943+00 2025-11-15 17:13:06.400951+00 f t TOTAL 70000.00 4 12457 \N +499441 2025-11-15 17:13:06.402514+00 2025-11-15 17:13:06.402521+00 f t ADELANTO 19000.00 5 12457 \N +499452 2025-11-15 17:49:05.314001+00 2025-11-15 17:49:05.31401+00 f t SUBTOTAL 55000.00 1 12458 \N +499453 2025-11-15 17:49:05.315871+00 2025-11-15 17:49:05.315879+00 f t COSTO_SERVICIO 0.00 2 12458 \N +499454 2025-11-15 17:49:05.317122+00 2025-11-15 17:49:05.317128+00 f t DESCUENTO 0.00 3 12458 \N +499455 2025-11-15 17:49:05.318275+00 2025-11-15 17:49:05.318281+00 f t TOTAL 55000.00 4 12458 \N +499456 2025-11-15 17:49:05.319327+00 2025-11-15 17:49:05.319333+00 f t ADELANTO 11000.00 5 12458 \N +548306 2025-11-25 21:00:51.751714+00 2025-11-25 21:00:51.75172+00 f t ADELANTO 31500.00 5 13600 \N +501527 2025-11-16 19:41:23.938551+00 2025-11-16 19:41:23.938558+00 f t SUBTOTAL 101500.00 1 12509 \N +501528 2025-11-16 19:41:23.940197+00 2025-11-16 19:41:23.940202+00 f t COSTO_SERVICIO 0.00 2 12509 \N +501529 2025-11-16 19:41:23.941142+00 2025-11-16 19:41:23.941147+00 f t DESCUENTO 0.00 3 12509 \N +501530 2025-11-16 19:41:23.942082+00 2025-11-16 19:41:23.942086+00 f t TOTAL 101500.00 4 12509 \N +501531 2025-11-16 19:41:23.943066+00 2025-11-16 19:41:23.943073+00 f t ADELANTO 50500.00 5 12509 \N +502497 2025-11-17 06:05:01.904427+00 2025-11-17 06:05:01.904441+00 f t SUBTOTAL 0.00 1 12530 \N +502498 2025-11-17 06:05:01.908636+00 2025-11-17 06:05:01.90865+00 f t COSTO_SERVICIO 0.00 2 12530 \N +502499 2025-11-17 06:05:01.911202+00 2025-11-17 06:05:01.911215+00 f t DESCUENTO 0.00 3 12530 \N +502500 2025-11-17 06:05:01.914449+00 2025-11-17 06:05:01.914469+00 f t TOTAL 0.00 4 12530 \N +502501 2025-11-17 06:05:01.918226+00 2025-11-17 06:05:01.918244+00 f t ADELANTO 0.00 5 12530 \N +502822 2025-11-17 12:40:02.772152+00 2025-11-17 12:40:02.772162+00 f t SUBTOTAL 54000.00 1 12539 \N +502823 2025-11-17 12:40:02.778287+00 2025-11-17 12:40:02.778302+00 f t COSTO_SERVICIO 0.00 2 12539 \N +502824 2025-11-17 12:40:02.780987+00 2025-11-17 12:40:02.781+00 f t DESCUENTO 0.00 3 12539 \N +502825 2025-11-17 12:40:02.784796+00 2025-11-17 12:40:02.784809+00 f t TOTAL 54000.00 4 12539 \N +502826 2025-11-17 12:40:02.787437+00 2025-11-17 12:40:02.787452+00 f t ADELANTO 13500.00 5 12539 \N +499562 2025-11-15 17:57:56.709156+00 2025-11-15 17:57:56.709164+00 f t SUBTOTAL 55000.00 1 12413 \N +499563 2025-11-15 17:57:56.711186+00 2025-11-15 17:57:56.711199+00 f t COSTO_SERVICIO 0.00 2 12413 \N +499564 2025-11-15 17:57:56.717931+00 2025-11-15 17:57:56.71794+00 f t DESCUENTO 0.00 3 12413 \N +499565 2025-11-15 17:57:56.719822+00 2025-11-15 17:57:56.71983+00 f t TOTAL 55000.00 4 12413 \N +499566 2025-11-15 17:57:56.721226+00 2025-11-15 17:57:56.721234+00 f t ADELANTO 11000.00 5 12413 \N +503257 2025-11-17 12:57:35.523024+00 2025-11-17 12:57:35.523033+00 f t SUBTOTAL 0.00 1 12545 \N +503258 2025-11-17 12:57:35.525023+00 2025-11-17 12:57:35.525032+00 f t COSTO_SERVICIO 0.00 2 12545 \N +503259 2025-11-17 12:57:35.526439+00 2025-11-17 12:57:35.526445+00 f t DESCUENTO 0.00 3 12545 \N +503260 2025-11-17 12:57:35.527792+00 2025-11-17 12:57:35.527798+00 f t TOTAL 0.00 4 12545 \N +503261 2025-11-17 12:57:35.528822+00 2025-11-17 12:57:35.528827+00 f t ADELANTO 0.00 5 12545 \N +499577 2025-11-15 17:58:08.482969+00 2025-11-15 17:58:08.484868+00 f t SUBTOTAL 55000.00 1 12459 \N +499578 2025-11-15 17:58:08.550598+00 2025-11-15 17:58:08.552129+00 f t COSTO_SERVICIO 0.00 2 12459 \N +499579 2025-11-15 17:58:08.728654+00 2025-11-15 17:58:08.73006+00 f t DESCUENTO 0.00 3 12459 \N +499580 2025-11-15 17:58:08.850599+00 2025-11-15 17:58:08.852737+00 f t TOTAL 55000.00 4 12459 \N +499581 2025-11-15 17:58:08.859606+00 2025-11-15 17:58:08.859618+00 f t ADELANTO 11000.00 5 12459 \N +499642 2025-11-15 18:02:44.267791+00 2025-11-15 18:02:44.267803+00 f t SUBTOTAL 110000.00 1 12460 \N +499643 2025-11-15 18:02:44.269784+00 2025-11-15 18:02:44.269795+00 f t COSTO_SERVICIO 0.00 2 12460 \N +499644 2025-11-15 18:02:44.271325+00 2025-11-15 18:02:44.271332+00 f t DESCUENTO 0.00 3 12460 \N +499645 2025-11-15 18:02:44.272648+00 2025-11-15 18:02:44.272654+00 f t TOTAL 110000.00 4 12460 \N +499646 2025-11-15 18:02:44.273858+00 2025-11-15 18:02:44.273863+00 f t ADELANTO 10000.00 5 12460 \N +499657 2025-11-15 18:23:24.326784+00 2025-11-15 18:23:24.326792+00 f t SUBTOTAL 46000.00 1 12461 \N +499658 2025-11-15 18:23:24.32891+00 2025-11-15 18:23:24.328922+00 f t COSTO_SERVICIO 0.00 2 12461 \N +499659 2025-11-15 18:23:24.330609+00 2025-11-15 18:23:24.330617+00 f t DESCUENTO 0.00 3 12461 \N +499660 2025-11-15 18:23:24.332126+00 2025-11-15 18:23:24.332132+00 f t TOTAL 46000.00 4 12461 \N +499661 2025-11-15 18:23:24.333359+00 2025-11-15 18:23:24.333365+00 f t ADELANTO 11000.00 5 12461 \N +505127 2025-11-17 17:19:49.321827+00 2025-11-17 17:19:49.321839+00 f t SUBTOTAL 0.00 1 12586 \N +505128 2025-11-17 17:19:49.324315+00 2025-11-17 17:19:49.324329+00 f t COSTO_SERVICIO 0.00 2 12586 \N +505129 2025-11-17 17:19:49.325809+00 2025-11-17 17:19:49.325816+00 f t DESCUENTO 0.00 3 12586 \N +499672 2025-11-15 18:28:11.402632+00 2025-11-15 18:28:11.40264+00 f t SUBTOTAL 55000.00 1 12462 \N +499673 2025-11-15 18:28:11.404431+00 2025-11-15 18:28:11.40444+00 f t COSTO_SERVICIO 0.00 2 12462 \N +499674 2025-11-15 18:28:11.405806+00 2025-11-15 18:28:11.405812+00 f t DESCUENTO 0.00 3 12462 \N +499675 2025-11-15 18:28:11.407384+00 2025-11-15 18:28:11.40739+00 f t TOTAL 55000.00 4 12462 \N +499676 2025-11-15 18:28:11.408495+00 2025-11-15 18:28:11.4085+00 f t ADELANTO 11000.00 5 12462 \N +505130 2025-11-17 17:19:49.327189+00 2025-11-17 17:19:49.327195+00 f t TOTAL 0.00 4 12586 \N +505131 2025-11-17 17:19:49.328405+00 2025-11-17 17:19:49.328412+00 f t ADELANTO 0.00 5 12586 \N +505237 2025-11-17 17:42:15.8448+00 2025-11-17 17:42:15.844806+00 f t SUBTOTAL 70000.00 1 12589 \N +505238 2025-11-17 17:42:15.846496+00 2025-11-17 17:42:15.846503+00 f t COSTO_SERVICIO 0.00 2 12589 \N +505239 2025-11-17 17:42:15.847617+00 2025-11-17 17:42:15.847623+00 f t DESCUENTO 0.00 3 12589 \N +499682 2025-11-15 18:32:17.129633+00 2025-11-15 18:32:17.129642+00 f t SUBTOTAL 0.00 1 12463 \N +499683 2025-11-15 18:32:17.130965+00 2025-11-15 18:32:17.130972+00 f t COSTO_SERVICIO 0.00 2 12463 \N +499684 2025-11-15 18:32:17.132224+00 2025-11-15 18:32:17.132232+00 f t DESCUENTO 0.00 3 12463 \N +499685 2025-11-15 18:32:17.133276+00 2025-11-15 18:32:17.133282+00 f t TOTAL 0.00 4 12463 \N +499686 2025-11-15 18:32:17.134295+00 2025-11-15 18:32:17.1343+00 f t ADELANTO 0.00 5 12463 \N +505240 2025-11-17 17:42:15.84861+00 2025-11-17 17:42:15.848615+00 f t TOTAL 70000.00 4 12589 \N +505241 2025-11-17 17:42:15.849779+00 2025-11-17 17:42:15.849784+00 f t ADELANTO 19000.00 5 12589 \N +499702 2025-11-15 18:34:10.950398+00 2025-11-15 18:34:10.950407+00 f t SUBTOTAL 0.00 1 12464 \N +499703 2025-11-15 18:34:10.951852+00 2025-11-15 18:34:10.951859+00 f t COSTO_SERVICIO 0.00 2 12464 \N +499704 2025-11-15 18:34:10.952854+00 2025-11-15 18:34:10.952862+00 f t DESCUENTO 0.00 3 12464 \N +499705 2025-11-15 18:34:10.954143+00 2025-11-15 18:34:10.954149+00 f t TOTAL 0.00 4 12464 \N +499706 2025-11-15 18:34:10.955307+00 2025-11-15 18:34:10.955313+00 f t ADELANTO 0.00 5 12464 \N +499712 2025-11-15 18:34:45.437995+00 2025-11-15 18:34:45.438003+00 f t SUBTOTAL 0.00 1 12465 \N +499713 2025-11-15 18:34:45.439437+00 2025-11-15 18:34:45.439443+00 f t COSTO_SERVICIO 0.00 2 12465 \N +499714 2025-11-15 18:34:45.440479+00 2025-11-15 18:34:45.440484+00 f t DESCUENTO 0.00 3 12465 \N +499715 2025-11-15 18:34:45.441386+00 2025-11-15 18:34:45.44139+00 f t TOTAL 0.00 4 12465 \N +499716 2025-11-15 18:34:45.442407+00 2025-11-15 18:34:45.442413+00 f t ADELANTO 0.00 5 12465 \N +499722 2025-11-15 18:36:33.482096+00 2025-11-15 18:36:33.482107+00 f t SUBTOTAL 0.00 1 12466 \N +499723 2025-11-15 18:36:33.483887+00 2025-11-15 18:36:33.483897+00 f t COSTO_SERVICIO 0.00 2 12466 \N +499724 2025-11-15 18:36:33.485226+00 2025-11-15 18:36:33.485233+00 f t DESCUENTO 0.00 3 12466 \N +499725 2025-11-15 18:36:33.486358+00 2025-11-15 18:36:33.486364+00 f t TOTAL 0.00 4 12466 \N +499726 2025-11-15 18:36:33.487596+00 2025-11-15 18:36:33.487603+00 f t ADELANTO 0.00 5 12466 \N +499752 2025-11-15 18:37:24.015897+00 2025-11-15 18:37:24.015905+00 f t SUBTOTAL 46000.00 1 12467 \N +499753 2025-11-15 18:37:24.017796+00 2025-11-15 18:37:24.017804+00 f t COSTO_SERVICIO 0.00 2 12467 \N +499754 2025-11-15 18:37:24.019192+00 2025-11-15 18:37:24.019199+00 f t DESCUENTO 0.00 3 12467 \N +499755 2025-11-15 18:37:24.02057+00 2025-11-15 18:37:24.020579+00 f t TOTAL 46000.00 4 12467 \N +499756 2025-11-15 18:37:24.022169+00 2025-11-15 18:37:24.022175+00 f t ADELANTO 11000.00 5 12467 \N +500597 2025-11-16 13:52:27.704347+00 2025-11-16 13:52:27.704356+00 f t SUBTOTAL 46000.00 1 12489 \N +500598 2025-11-16 13:52:27.705526+00 2025-11-16 13:52:27.705534+00 f t COSTO_SERVICIO 0.00 2 12489 \N +500599 2025-11-16 13:52:27.706442+00 2025-11-16 13:52:27.706449+00 f t DESCUENTO 0.00 3 12489 \N +500600 2025-11-16 13:52:27.707221+00 2025-11-16 13:52:27.707226+00 f t TOTAL 46000.00 4 12489 \N +500601 2025-11-16 13:52:27.707942+00 2025-11-16 13:52:27.707947+00 f t ADELANTO 11000.00 5 12489 \N +502192 2025-11-17 02:19:19.48687+00 2025-11-17 02:19:19.486877+00 f t SUBTOTAL 54000.00 1 12524 \N +502193 2025-11-17 02:19:19.488506+00 2025-11-17 02:19:19.488512+00 f t COSTO_SERVICIO 0.00 2 12524 \N +502194 2025-11-17 02:19:19.489564+00 2025-11-17 02:19:19.489569+00 f t DESCUENTO 0.00 3 12524 \N +502195 2025-11-17 02:19:19.490523+00 2025-11-17 02:19:19.490528+00 f t TOTAL 54000.00 4 12524 \N +502196 2025-11-17 02:19:19.491592+00 2025-11-17 02:19:19.491598+00 f t ADELANTO 13500.00 5 12524 \N +502347 2025-11-17 03:04:31.883767+00 2025-11-17 03:04:31.883774+00 f t SUBTOTAL 111000.00 1 12527 \N +502348 2025-11-17 03:04:31.885343+00 2025-11-17 03:04:31.885349+00 f t COSTO_SERVICIO 0.00 2 12527 \N +502349 2025-11-17 03:04:31.886495+00 2025-11-17 03:04:31.886501+00 f t DESCUENTO 0.00 3 12527 \N +502350 2025-11-17 03:04:31.887936+00 2025-11-17 03:04:31.887942+00 f t TOTAL 111000.00 4 12527 \N +502351 2025-11-17 03:04:31.889+00 2025-11-17 03:04:31.889008+00 f t ADELANTO 28000.00 5 12527 \N +499822 2025-11-15 19:12:38.776928+00 2025-11-15 19:12:38.776936+00 f t SUBTOTAL 55000.00 1 12468 \N +499823 2025-11-15 19:12:38.778603+00 2025-11-15 19:12:38.778609+00 f t COSTO_SERVICIO 0.00 2 12468 \N +499824 2025-11-15 19:12:38.779966+00 2025-11-15 19:12:38.779972+00 f t DESCUENTO 0.00 3 12468 \N +499825 2025-11-15 19:12:38.781162+00 2025-11-15 19:12:38.781167+00 f t TOTAL 55000.00 4 12468 \N +499826 2025-11-15 19:12:38.7824+00 2025-11-15 19:12:38.782405+00 f t ADELANTO 11000.00 5 12468 \N +502507 2025-11-17 06:22:56.221774+00 2025-11-17 06:22:56.221782+00 f t SUBTOTAL 0.00 1 12531 \N +502508 2025-11-17 06:22:56.223117+00 2025-11-17 06:22:56.223124+00 f t COSTO_SERVICIO 0.00 2 12531 \N +502509 2025-11-17 06:22:56.224278+00 2025-11-17 06:22:56.224283+00 f t DESCUENTO 0.00 3 12531 \N +502510 2025-11-17 06:22:56.225289+00 2025-11-17 06:22:56.225294+00 f t TOTAL 0.00 4 12531 \N +502511 2025-11-17 06:22:56.226338+00 2025-11-17 06:22:56.226345+00 f t ADELANTO 0.00 5 12531 \N +513597 2025-11-19 03:36:59.724449+00 2025-11-19 03:36:59.724458+00 f t SUBTOTAL 0.00 1 12784 \N +513598 2025-11-19 03:36:59.72588+00 2025-11-19 03:36:59.725887+00 f t COSTO_SERVICIO 0.00 2 12784 \N +499837 2025-11-15 19:32:17.662596+00 2025-11-15 19:32:17.662606+00 f t SUBTOTAL 54000.00 1 12454 \N +499838 2025-11-15 19:32:17.664695+00 2025-11-15 19:32:17.664706+00 f t COSTO_SERVICIO 0.00 2 12454 \N +499839 2025-11-15 19:32:17.666313+00 2025-11-15 19:32:17.666323+00 f t DESCUENTO 0.00 3 12454 \N +499840 2025-11-15 19:32:17.667809+00 2025-11-15 19:32:17.667818+00 f t TOTAL 54000.00 4 12454 \N +499841 2025-11-15 19:32:17.669181+00 2025-11-15 19:32:17.66919+00 f t ADELANTO 13500.00 5 12454 \N +513599 2025-11-19 03:36:59.726998+00 2025-11-19 03:36:59.727004+00 f t DESCUENTO 0.00 3 12784 \N +513600 2025-11-19 03:36:59.72797+00 2025-11-19 03:36:59.727977+00 f t TOTAL 0.00 4 12784 \N +513601 2025-11-19 03:36:59.729081+00 2025-11-19 03:36:59.72909+00 f t ADELANTO 0.00 5 12784 \N +514137 2025-11-19 09:50:51.774805+00 2025-11-19 09:50:51.774812+00 f t SUBTOTAL 70000.00 1 12798 \N +514138 2025-11-19 09:50:51.777174+00 2025-11-19 09:50:51.77718+00 f t COSTO_SERVICIO 0.00 2 12798 \N +503122 2025-11-17 12:55:09.734533+00 2025-11-17 12:55:09.734545+00 f t SUBTOTAL 0.00 1 12544 \N +503123 2025-11-17 12:55:09.736961+00 2025-11-17 12:55:09.73697+00 f t COSTO_SERVICIO 0.00 2 12544 \N +503124 2025-11-17 12:55:09.738188+00 2025-11-17 12:55:09.738195+00 f t DESCUENTO 0.00 3 12544 \N +503125 2025-11-17 12:55:09.739251+00 2025-11-17 12:55:09.739257+00 f t TOTAL 0.00 4 12544 \N +503126 2025-11-17 12:55:09.740341+00 2025-11-17 12:55:09.740347+00 f t ADELANTO 0.00 5 12544 \N +514139 2025-11-19 09:50:51.778505+00 2025-11-19 09:50:51.778512+00 f t DESCUENTO 0.00 3 12798 \N +514140 2025-11-19 09:50:51.779498+00 2025-11-19 09:50:51.779503+00 f t TOTAL 70000.00 4 12798 \N +514141 2025-11-19 09:50:51.783672+00 2025-11-19 09:50:51.783679+00 f t ADELANTO 19000.00 5 12798 \N +499892 2025-11-15 19:34:43.61208+00 2025-11-15 19:34:43.612087+00 f t SUBTOTAL 55000.00 1 12469 \N +499893 2025-11-15 19:34:43.613642+00 2025-11-15 19:34:43.613649+00 f t COSTO_SERVICIO 0.00 2 12469 \N +499894 2025-11-15 19:34:43.614929+00 2025-11-15 19:34:43.614937+00 f t DESCUENTO 0.00 3 12469 \N +499895 2025-11-15 19:34:43.616079+00 2025-11-15 19:34:43.616085+00 f t TOTAL 55000.00 4 12469 \N +499896 2025-11-15 19:34:43.616972+00 2025-11-15 19:34:43.616978+00 f t ADELANTO 11000.00 5 12469 \N +499922 2025-11-15 19:46:33.444541+00 2025-11-15 19:46:33.444549+00 f t SUBTOTAL 85000.00 1 12470 \N +499923 2025-11-15 19:46:33.446313+00 2025-11-15 19:46:33.44632+00 f t COSTO_SERVICIO 0.00 2 12470 \N +499924 2025-11-15 19:46:33.447457+00 2025-11-15 19:46:33.447463+00 f t DESCUENTO 0.00 3 12470 \N +499925 2025-11-15 19:46:33.448988+00 2025-11-15 19:46:33.448994+00 f t TOTAL 85000.00 4 12470 \N +499926 2025-11-15 19:46:33.450141+00 2025-11-15 19:46:33.450147+00 f t ADELANTO 15000.00 5 12470 \N +504787 2025-11-17 16:52:25.794739+00 2025-11-17 16:52:25.794747+00 f t SUBTOTAL 88000.00 1 12575 \N +504788 2025-11-17 16:52:25.79644+00 2025-11-17 16:52:25.796446+00 f t COSTO_SERVICIO 0.00 2 12575 \N +504789 2025-11-17 16:52:25.797632+00 2025-11-17 16:52:25.797638+00 f t DESCUENTO 0.00 3 12575 \N +504790 2025-11-17 16:52:25.798912+00 2025-11-17 16:52:25.798918+00 f t TOTAL 88000.00 4 12575 \N +504791 2025-11-17 16:52:25.799976+00 2025-11-17 16:52:25.799982+00 f t ADELANTO 13000.00 5 12575 \N +499937 2025-11-15 19:50:18.888564+00 2025-11-15 19:50:18.888573+00 f t SUBTOTAL 78000.00 1 12471 \N +499938 2025-11-15 19:50:18.890403+00 2025-11-15 19:50:18.890409+00 f t COSTO_SERVICIO 0.00 2 12471 \N +499939 2025-11-15 19:50:18.891466+00 2025-11-15 19:50:18.891472+00 f t DESCUENTO 0.00 3 12471 \N +499940 2025-11-15 19:50:18.892382+00 2025-11-15 19:50:18.892387+00 f t TOTAL 78000.00 4 12471 \N +499941 2025-11-15 19:50:18.893247+00 2025-11-15 19:50:18.893252+00 f t ADELANTO 13000.00 5 12471 \N +516297 2025-11-19 14:30:56.8514+00 2025-11-19 14:30:56.851414+00 f t SUBTOTAL 80000.00 1 12841 \N +516298 2025-11-19 14:30:56.853874+00 2025-11-19 14:30:56.853885+00 f t COSTO_SERVICIO 0.00 2 12841 \N +516299 2025-11-19 14:30:56.855707+00 2025-11-19 14:30:56.855717+00 f t DESCUENTO 0.00 3 12841 \N +516300 2025-11-19 14:30:56.857326+00 2025-11-19 14:30:56.857335+00 f t TOTAL 80000.00 4 12841 \N +516301 2025-11-19 14:30:56.85898+00 2025-11-19 14:30:56.858991+00 f t ADELANTO 12000.00 5 12841 \N +505657 2025-11-17 19:23:48.191328+00 2025-11-17 19:23:48.191334+00 f t SUBTOTAL 70000.00 1 12600 \N +505658 2025-11-17 19:23:48.193997+00 2025-11-17 19:23:48.194003+00 f t COSTO_SERVICIO 0.00 2 12600 \N +505659 2025-11-17 19:23:48.195047+00 2025-11-17 19:23:48.195052+00 f t DESCUENTO 0.00 3 12600 \N +505660 2025-11-17 19:23:48.196008+00 2025-11-17 19:23:48.196013+00 f t TOTAL 70000.00 4 12600 \N +505661 2025-11-17 19:23:48.196947+00 2025-11-17 19:23:48.196952+00 f t ADELANTO 19000.00 5 12600 \N +505762 2025-11-17 19:52:14.926325+00 2025-11-17 19:52:14.926333+00 f t SUBTOTAL 78000.00 1 12603 \N +505763 2025-11-17 19:52:14.92811+00 2025-11-17 19:52:14.928117+00 f t COSTO_SERVICIO 0.00 2 12603 \N +505764 2025-11-17 19:52:14.929342+00 2025-11-17 19:52:14.929348+00 f t DESCUENTO 0.00 3 12603 \N +505765 2025-11-17 19:52:14.93058+00 2025-11-17 19:52:14.930586+00 f t TOTAL 78000.00 4 12603 \N +505766 2025-11-17 19:52:14.931711+00 2025-11-17 19:52:14.931717+00 f t ADELANTO 21500.00 5 12603 \N +506462 2025-11-17 21:39:57.415833+00 2025-11-17 21:39:57.415842+00 f t SUBTOTAL 0.00 1 12616 \N +506463 2025-11-17 21:39:57.417276+00 2025-11-17 21:39:57.417283+00 f t COSTO_SERVICIO 0.00 2 12616 \N +506464 2025-11-17 21:39:57.41835+00 2025-11-17 21:39:57.418355+00 f t DESCUENTO 0.00 3 12616 \N +506465 2025-11-17 21:39:57.419472+00 2025-11-17 21:39:57.419478+00 f t TOTAL 0.00 4 12616 \N +506466 2025-11-17 21:39:57.420507+00 2025-11-17 21:39:57.420512+00 f t ADELANTO 0.00 5 12616 \N +512647 2025-11-18 23:57:28.256513+00 2025-11-18 23:57:28.256522+00 f t SUBTOTAL 54000.00 1 12762 \N +512648 2025-11-18 23:57:28.258646+00 2025-11-18 23:57:28.258654+00 f t COSTO_SERVICIO 0.00 2 12762 \N +512649 2025-11-18 23:57:28.26004+00 2025-11-18 23:57:28.260047+00 f t DESCUENTO 0.00 3 12762 \N +512650 2025-11-18 23:57:28.261262+00 2025-11-18 23:57:28.26127+00 f t TOTAL 54000.00 4 12762 \N +512651 2025-11-18 23:57:28.262466+00 2025-11-18 23:57:28.262474+00 f t ADELANTO 13500.00 5 12762 \N +512862 2025-11-19 01:34:02.432351+00 2025-11-19 01:34:02.43236+00 f t SUBTOTAL 55000.00 1 12770 \N +512863 2025-11-19 01:34:02.434405+00 2025-11-19 01:34:02.434413+00 f t COSTO_SERVICIO 0.00 2 12770 \N +512864 2025-11-19 01:34:02.435627+00 2025-11-19 01:34:02.435633+00 f t DESCUENTO 0.00 3 12770 \N +512865 2025-11-19 01:34:02.436732+00 2025-11-19 01:34:02.436739+00 f t TOTAL 55000.00 4 12770 \N +512866 2025-11-19 01:34:02.437813+00 2025-11-19 01:34:02.437819+00 f t ADELANTO 11000.00 5 12770 \N +506502 2025-11-17 21:49:15.279164+00 2025-11-17 21:49:15.279171+00 f t SUBTOTAL 55000.00 1 12617 \N +506503 2025-11-17 21:49:15.280542+00 2025-11-17 21:49:15.280551+00 f t COSTO_SERVICIO 0.00 2 12617 \N +506504 2025-11-17 21:49:15.281415+00 2025-11-17 21:49:15.28142+00 f t DESCUENTO 0.00 3 12617 \N +506505 2025-11-17 21:49:15.282248+00 2025-11-17 21:49:15.282253+00 f t TOTAL 55000.00 4 12617 \N +506506 2025-11-17 21:49:15.283244+00 2025-11-17 21:49:15.283249+00 f t ADELANTO 11000.00 5 12617 \N +513787 2025-11-19 04:34:47.414342+00 2025-11-19 04:34:47.414351+00 f t SUBTOTAL 0.00 1 12789 \N +513788 2025-11-19 04:34:47.415662+00 2025-11-19 04:34:47.415668+00 f t COSTO_SERVICIO 0.00 2 12789 \N +513789 2025-11-19 04:34:47.416836+00 2025-11-19 04:34:47.416844+00 f t DESCUENTO 0.00 3 12789 \N +513790 2025-11-19 04:34:47.418119+00 2025-11-19 04:34:47.418126+00 f t TOTAL 0.00 4 12789 \N +513791 2025-11-19 04:34:47.419067+00 2025-11-19 04:34:47.419072+00 f t ADELANTO 0.00 5 12789 \N +506542 2025-11-17 22:04:24.844967+00 2025-11-17 22:04:24.844979+00 f t SUBTOTAL 54000.00 1 12618 \N +506543 2025-11-17 22:04:24.846678+00 2025-11-17 22:04:24.846685+00 f t COSTO_SERVICIO 0.00 2 12618 \N +506544 2025-11-17 22:04:24.847878+00 2025-11-17 22:04:24.847884+00 f t DESCUENTO 0.00 3 12618 \N +506545 2025-11-17 22:04:24.848977+00 2025-11-17 22:04:24.848982+00 f t TOTAL 54000.00 4 12618 \N +506546 2025-11-17 22:04:24.850039+00 2025-11-17 22:04:24.850047+00 f t ADELANTO 13500.00 5 12618 \N +515977 2025-11-19 13:48:28.686147+00 2025-11-19 13:48:28.686159+00 f t SUBTOTAL 78000.00 1 12835 \N +515978 2025-11-19 13:48:28.688207+00 2025-11-19 13:48:28.688217+00 f t COSTO_SERVICIO 0.00 2 12835 \N +515979 2025-11-19 13:48:28.689706+00 2025-11-19 13:48:28.689715+00 f t DESCUENTO 0.00 3 12835 \N +515980 2025-11-19 13:48:28.691126+00 2025-11-19 13:48:28.691156+00 f t TOTAL 78000.00 4 12835 \N +515981 2025-11-19 13:48:28.692651+00 2025-11-19 13:48:28.692659+00 f t ADELANTO 13000.00 5 12835 \N +506607 2025-11-17 22:16:59.668587+00 2025-11-17 22:16:59.668594+00 f t SUBTOTAL 79000.00 1 12619 \N +506608 2025-11-17 22:16:59.670644+00 2025-11-17 22:16:59.670655+00 f t COSTO_SERVICIO 0.00 2 12619 \N +506609 2025-11-17 22:16:59.672553+00 2025-11-17 22:16:59.672564+00 f t DESCUENTO 0.00 3 12619 \N +506610 2025-11-17 22:16:59.674264+00 2025-11-17 22:16:59.674273+00 f t TOTAL 79000.00 4 12619 \N +506611 2025-11-17 22:16:59.676019+00 2025-11-17 22:16:59.676028+00 f t ADELANTO 17500.00 5 12619 \N +506637 2025-11-17 22:21:49.661524+00 2025-11-17 22:21:49.661535+00 f t SUBTOTAL 70000.00 1 12620 \N +506638 2025-11-17 22:21:49.663265+00 2025-11-17 22:21:49.663274+00 f t COSTO_SERVICIO 0.00 2 12620 \N +506639 2025-11-17 22:21:49.664634+00 2025-11-17 22:21:49.664643+00 f t DESCUENTO 0.00 3 12620 \N +506640 2025-11-17 22:21:49.665969+00 2025-11-17 22:21:49.665977+00 f t TOTAL 70000.00 4 12620 \N +506641 2025-11-17 22:21:49.667087+00 2025-11-17 22:21:49.667095+00 f t ADELANTO 19000.00 5 12620 \N +506647 2025-11-17 22:23:01.696494+00 2025-11-17 22:23:01.696503+00 f t SUBTOTAL 0.00 1 12621 \N +506648 2025-11-17 22:23:01.698155+00 2025-11-17 22:23:01.698165+00 f t COSTO_SERVICIO 0.00 2 12621 \N +506649 2025-11-17 22:23:01.699476+00 2025-11-17 22:23:01.699482+00 f t DESCUENTO 0.00 3 12621 \N +506650 2025-11-17 22:23:01.700554+00 2025-11-17 22:23:01.70056+00 f t TOTAL 0.00 4 12621 \N +506651 2025-11-17 22:23:01.702183+00 2025-11-17 22:23:01.702189+00 f t ADELANTO 0.00 5 12621 \N +517417 2025-11-19 18:14:43.430708+00 2025-11-19 18:14:43.430715+00 f t SUBTOTAL 46000.00 1 12872 \N +517418 2025-11-19 18:14:43.432695+00 2025-11-19 18:14:43.432701+00 f t COSTO_SERVICIO 0.00 2 12872 \N +517419 2025-11-19 18:14:43.433796+00 2025-11-19 18:14:43.433802+00 f t DESCUENTO 0.00 3 12872 \N +517420 2025-11-19 18:14:43.435149+00 2025-11-19 18:14:43.435154+00 f t TOTAL 46000.00 4 12872 \N +517421 2025-11-19 18:14:43.436064+00 2025-11-19 18:14:43.436069+00 f t ADELANTO 11000.00 5 12872 \N +506677 2025-11-17 22:31:28.563695+00 2025-11-17 22:31:28.563702+00 f t SUBTOTAL 55000.00 1 12622 \N +506678 2025-11-17 22:31:28.56527+00 2025-11-17 22:31:28.565276+00 f t COSTO_SERVICIO 0.00 2 12622 \N +506679 2025-11-17 22:31:28.56647+00 2025-11-17 22:31:28.566476+00 f t DESCUENTO 0.00 3 12622 \N +506680 2025-11-17 22:31:28.567572+00 2025-11-17 22:31:28.567578+00 f t TOTAL 55000.00 4 12622 \N +506681 2025-11-17 22:31:28.56851+00 2025-11-17 22:31:28.568516+00 f t ADELANTO 11000.00 5 12622 \N +506687 2025-11-17 22:36:23.129522+00 2025-11-17 22:36:23.129535+00 f t SUBTOTAL 0.00 1 12623 \N +506688 2025-11-17 22:36:23.131325+00 2025-11-17 22:36:23.131337+00 f t COSTO_SERVICIO 0.00 2 12623 \N +506689 2025-11-17 22:36:23.132749+00 2025-11-17 22:36:23.132759+00 f t DESCUENTO 0.00 3 12623 \N +506690 2025-11-17 22:36:23.134143+00 2025-11-17 22:36:23.134154+00 f t TOTAL 0.00 4 12623 \N +506691 2025-11-17 22:36:23.135433+00 2025-11-17 22:36:23.135443+00 f t ADELANTO 0.00 5 12623 \N +506697 2025-11-17 22:37:19.578202+00 2025-11-17 22:37:19.578211+00 f t SUBTOTAL 0.00 1 12624 \N +506698 2025-11-17 22:37:19.579662+00 2025-11-17 22:37:19.579669+00 f t COSTO_SERVICIO 0.00 2 12624 \N +506699 2025-11-17 22:37:19.580645+00 2025-11-17 22:37:19.580659+00 f t DESCUENTO 0.00 3 12624 \N +506700 2025-11-17 22:37:19.581543+00 2025-11-17 22:37:19.581548+00 f t TOTAL 0.00 4 12624 \N +506701 2025-11-17 22:37:19.582404+00 2025-11-17 22:37:19.582409+00 f t ADELANTO 0.00 5 12624 \N +518522 2025-11-19 20:44:33.921675+00 2025-11-19 20:44:33.921681+00 f t SUBTOTAL 70000.00 1 12899 \N +518523 2025-11-19 20:44:33.9232+00 2025-11-19 20:44:33.923227+00 f t COSTO_SERVICIO 0.00 2 12899 \N +518524 2025-11-19 20:44:33.924439+00 2025-11-19 20:44:33.924447+00 f t DESCUENTO 0.00 3 12899 \N +518525 2025-11-19 20:44:33.925477+00 2025-11-19 20:44:33.925482+00 f t TOTAL 70000.00 4 12899 \N +518526 2025-11-19 20:44:33.926547+00 2025-11-19 20:44:33.926552+00 f t ADELANTO 19000.00 5 12899 \N +518666 2025-11-19 21:01:05.206048+00 2025-11-19 21:01:05.206057+00 f t ADELANTO 13200.00 5 12901 \N +512157 2025-11-18 22:17:48.330731+00 2025-11-18 22:17:48.330742+00 f t SUBTOTAL 108000.00 1 12748 \N +506757 2025-11-17 22:40:00.770986+00 2025-11-17 22:40:00.770997+00 f t SUBTOTAL 0.00 1 12626 \N +506758 2025-11-17 22:40:00.772871+00 2025-11-17 22:40:00.772879+00 f t COSTO_SERVICIO 0.00 2 12626 \N +506759 2025-11-17 22:40:00.773997+00 2025-11-17 22:40:00.774008+00 f t DESCUENTO 0.00 3 12626 \N +506760 2025-11-17 22:40:00.775109+00 2025-11-17 22:40:00.775115+00 f t TOTAL 0.00 4 12626 \N +506761 2025-11-17 22:40:00.7763+00 2025-11-17 22:40:00.776306+00 f t ADELANTO 0.00 5 12626 \N +506762 2025-11-17 22:40:04.678442+00 2025-11-17 22:40:04.678457+00 f t SUBTOTAL 46000.00 1 12625 \N +506763 2025-11-17 22:40:04.685482+00 2025-11-17 22:40:04.685497+00 f t COSTO_SERVICIO 0.00 2 12625 \N +506764 2025-11-17 22:40:04.688297+00 2025-11-17 22:40:04.688311+00 f t DESCUENTO 0.00 3 12625 \N +506765 2025-11-17 22:40:04.690888+00 2025-11-17 22:40:04.690903+00 f t TOTAL 46000.00 4 12625 \N +506766 2025-11-17 22:40:04.693439+00 2025-11-17 22:40:04.693452+00 f t ADELANTO 11000.00 5 12625 \N +512158 2025-11-18 22:17:48.332966+00 2025-11-18 22:17:48.332976+00 f t COSTO_SERVICIO 0.00 2 12748 \N +512159 2025-11-18 22:17:48.33472+00 2025-11-18 22:17:48.33473+00 f t DESCUENTO 9200.00 3 12748 \N +512160 2025-11-18 22:17:48.336443+00 2025-11-18 22:17:48.336453+00 f t TOTAL 98800.00 4 12748 \N +512161 2025-11-18 22:17:48.337988+00 2025-11-18 22:17:48.337996+00 f t ADELANTO 27000.00 5 12748 \N +524252 2025-11-20 23:17:55.740189+00 2025-11-20 23:17:55.740201+00 f t SUBTOTAL 0.00 1 13044 \N +524253 2025-11-20 23:17:55.741872+00 2025-11-20 23:17:55.741881+00 f t COSTO_SERVICIO 0.00 2 13044 \N +524254 2025-11-20 23:17:55.743044+00 2025-11-20 23:17:55.743051+00 f t DESCUENTO 0.00 3 13044 \N +524255 2025-11-20 23:17:55.744143+00 2025-11-20 23:17:55.744151+00 f t TOTAL 0.00 4 13044 \N +524256 2025-11-20 23:17:55.745379+00 2025-11-20 23:17:55.745386+00 f t ADELANTO 0.00 5 13044 \N +513062 2025-11-19 01:49:31.943573+00 2025-11-19 01:49:31.943579+00 f t SUBTOTAL 109000.00 1 12773 \N +513063 2025-11-19 01:49:31.945493+00 2025-11-19 01:49:31.9455+00 f t COSTO_SERVICIO 0.00 2 12773 \N +513064 2025-11-19 01:49:31.946605+00 2025-11-19 01:49:31.946611+00 f t DESCUENTO 10100.00 3 12773 \N +513065 2025-11-19 01:49:31.947779+00 2025-11-19 01:49:31.947784+00 f t TOTAL 98900.00 4 12773 \N +513066 2025-11-19 01:49:31.948723+00 2025-11-19 01:49:31.94873+00 f t ADELANTO 24500.00 5 12773 \N +513247 2025-11-19 02:28:18.527904+00 2025-11-19 02:28:18.527913+00 f t SUBTOTAL 116000.00 1 12777 \N +513248 2025-11-19 02:28:18.529793+00 2025-11-19 02:28:18.5298+00 f t COSTO_SERVICIO 0.00 2 12777 \N +513249 2025-11-19 02:28:18.532683+00 2025-11-19 02:28:18.532691+00 f t DESCUENTO 9200.00 3 12777 \N +513250 2025-11-19 02:28:18.534291+00 2025-11-19 02:28:18.534298+00 f t TOTAL 106800.00 4 12777 \N +513251 2025-11-19 02:28:18.53587+00 2025-11-19 02:28:18.535877+00 f t ADELANTO 30000.00 5 12777 \N +513792 2025-11-19 04:34:55.178179+00 2025-11-19 04:34:55.178188+00 f t SUBTOTAL 0.00 1 12788 \N +513793 2025-11-19 04:34:55.180335+00 2025-11-19 04:34:55.180346+00 f t COSTO_SERVICIO 0.00 2 12788 \N +513794 2025-11-19 04:34:55.181844+00 2025-11-19 04:34:55.181854+00 f t DESCUENTO 0.00 3 12788 \N +513795 2025-11-19 04:34:55.183318+00 2025-11-19 04:34:55.183326+00 f t TOTAL 0.00 4 12788 \N +513796 2025-11-19 04:34:55.185825+00 2025-11-19 04:34:55.185833+00 f t ADELANTO 0.00 5 12788 \N +506827 2025-11-17 22:42:26.306591+00 2025-11-17 22:42:26.306599+00 f t SUBTOTAL 46000.00 1 12627 \N +506828 2025-11-17 22:42:26.308231+00 2025-11-17 22:42:26.308238+00 f t COSTO_SERVICIO 0.00 2 12627 \N +506829 2025-11-17 22:42:26.309451+00 2025-11-17 22:42:26.309457+00 f t DESCUENTO 0.00 3 12627 \N +506830 2025-11-17 22:42:26.310598+00 2025-11-17 22:42:26.310604+00 f t TOTAL 46000.00 4 12627 \N +506831 2025-11-17 22:42:26.311553+00 2025-11-17 22:42:26.311558+00 f t ADELANTO 11000.00 5 12627 \N +506872 2025-11-17 22:47:16.06745+00 2025-11-17 22:47:16.067458+00 f t SUBTOTAL 46000.00 1 12628 \N +506873 2025-11-17 22:47:16.06919+00 2025-11-17 22:47:16.069199+00 f t COSTO_SERVICIO 0.00 2 12628 \N +506874 2025-11-17 22:47:16.070405+00 2025-11-17 22:47:16.070411+00 f t DESCUENTO 0.00 3 12628 \N +506875 2025-11-17 22:47:16.071565+00 2025-11-17 22:47:16.071571+00 f t TOTAL 46000.00 4 12628 \N +506876 2025-11-17 22:47:16.072656+00 2025-11-17 22:47:16.072662+00 f t ADELANTO 11000.00 5 12628 \N +516307 2025-11-19 14:31:12.426182+00 2025-11-19 14:31:12.426188+00 f t SUBTOTAL 78000.00 1 12842 \N +516308 2025-11-19 14:31:12.428065+00 2025-11-19 14:31:12.428071+00 f t COSTO_SERVICIO 0.00 2 12842 \N +516309 2025-11-19 14:31:12.429246+00 2025-11-19 14:31:12.42925+00 f t DESCUENTO 0.00 3 12842 \N +516310 2025-11-19 14:31:12.430233+00 2025-11-19 14:31:12.430237+00 f t TOTAL 78000.00 4 12842 \N +516311 2025-11-19 14:31:12.43121+00 2025-11-19 14:31:12.431216+00 f t ADELANTO 21500.00 5 12842 \N +506942 2025-11-17 22:49:57.70191+00 2025-11-17 22:49:57.701919+00 f t SUBTOTAL 46000.00 1 12629 \N +506943 2025-11-17 22:49:57.703979+00 2025-11-17 22:49:57.70399+00 f t COSTO_SERVICIO 0.00 2 12629 \N +506944 2025-11-17 22:49:57.705417+00 2025-11-17 22:49:57.705423+00 f t DESCUENTO 0.00 3 12629 \N +506945 2025-11-17 22:49:57.706889+00 2025-11-17 22:49:57.706897+00 f t TOTAL 46000.00 4 12629 \N +506946 2025-11-17 22:49:57.70855+00 2025-11-17 22:49:57.708558+00 f t ADELANTO 11000.00 5 12629 \N +517427 2025-11-19 18:17:43.584914+00 2025-11-19 18:17:43.584923+00 f t SUBTOTAL 0.00 1 12873 \N +517428 2025-11-19 18:17:43.586533+00 2025-11-19 18:17:43.586539+00 f t COSTO_SERVICIO 0.00 2 12873 \N +517429 2025-11-19 18:17:43.587865+00 2025-11-19 18:17:43.587873+00 f t DESCUENTO 0.00 3 12873 \N +517430 2025-11-19 18:17:43.588976+00 2025-11-19 18:17:43.588985+00 f t TOTAL 0.00 4 12873 \N +517431 2025-11-19 18:17:43.590131+00 2025-11-19 18:17:43.590137+00 f t ADELANTO 0.00 5 12873 \N +517812 2025-11-19 19:17:27.314363+00 2025-11-19 19:17:27.314372+00 f t SUBTOTAL 0.00 1 12884 \N +517813 2025-11-19 19:17:27.316263+00 2025-11-19 19:17:27.316272+00 f t COSTO_SERVICIO 0.00 2 12884 \N +517814 2025-11-19 19:17:27.317395+00 2025-11-19 19:17:27.317401+00 f t DESCUENTO 0.00 3 12884 \N +517815 2025-11-19 19:17:27.318458+00 2025-11-19 19:17:27.318463+00 f t TOTAL 0.00 4 12884 \N +517816 2025-11-19 19:17:27.319743+00 2025-11-19 19:17:27.319748+00 f t ADELANTO 0.00 5 12884 \N +506982 2025-11-17 23:19:45.173516+00 2025-11-17 23:19:45.173523+00 f t SUBTOTAL 54000.00 1 12631 \N +506983 2025-11-17 23:19:45.175096+00 2025-11-17 23:19:45.175102+00 f t COSTO_SERVICIO 0.00 2 12631 \N +506984 2025-11-17 23:19:45.176426+00 2025-11-17 23:19:45.176433+00 f t DESCUENTO 0.00 3 12631 \N +506985 2025-11-17 23:19:45.177749+00 2025-11-17 23:19:45.177757+00 f t TOTAL 54000.00 4 12631 \N +506986 2025-11-17 23:19:45.179777+00 2025-11-17 23:19:45.179786+00 f t ADELANTO 13500.00 5 12631 \N +507012 2025-11-17 23:35:43.554832+00 2025-11-17 23:35:43.554842+00 f t SUBTOTAL 70000.00 1 12632 \N +507013 2025-11-17 23:35:43.556473+00 2025-11-17 23:35:43.55648+00 f t COSTO_SERVICIO 0.00 2 12632 \N +507014 2025-11-17 23:35:43.557595+00 2025-11-17 23:35:43.557601+00 f t DESCUENTO 0.00 3 12632 \N +507015 2025-11-17 23:35:43.558673+00 2025-11-17 23:35:43.558682+00 f t TOTAL 70000.00 4 12632 \N +507016 2025-11-17 23:35:43.55978+00 2025-11-17 23:35:43.559787+00 f t ADELANTO 19000.00 5 12632 \N +507032 2025-11-17 23:42:04.713404+00 2025-11-17 23:42:04.713414+00 f t SUBTOTAL 0.00 1 12633 \N +507033 2025-11-17 23:42:04.715507+00 2025-11-17 23:42:04.715515+00 f t COSTO_SERVICIO 0.00 2 12633 \N +507034 2025-11-17 23:42:04.717151+00 2025-11-17 23:42:04.717158+00 f t DESCUENTO 0.00 3 12633 \N +507035 2025-11-17 23:42:04.718655+00 2025-11-17 23:42:04.718665+00 f t TOTAL 0.00 4 12633 \N +507036 2025-11-17 23:42:04.720177+00 2025-11-17 23:42:04.720185+00 f t ADELANTO 0.00 5 12633 \N +507052 2025-11-17 23:44:14.816947+00 2025-11-17 23:44:14.816956+00 f t SUBTOTAL 0.00 1 12634 \N +507053 2025-11-17 23:44:14.818843+00 2025-11-17 23:44:14.818851+00 f t COSTO_SERVICIO 0.00 2 12634 \N +507054 2025-11-17 23:44:14.820187+00 2025-11-17 23:44:14.820195+00 f t DESCUENTO 0.00 3 12634 \N +507055 2025-11-17 23:44:14.82136+00 2025-11-17 23:44:14.821366+00 f t TOTAL 0.00 4 12634 \N +507056 2025-11-17 23:44:14.82256+00 2025-11-17 23:44:14.822568+00 f t ADELANTO 0.00 5 12634 \N +512422 2025-11-18 23:17:38.396909+00 2025-11-18 23:17:38.39692+00 f t SUBTOTAL 55000.00 1 12755 \N +512423 2025-11-18 23:17:38.399056+00 2025-11-18 23:17:38.399065+00 f t COSTO_SERVICIO 0.00 2 12755 \N +512424 2025-11-18 23:17:38.400938+00 2025-11-18 23:17:38.400946+00 f t DESCUENTO 0.00 3 12755 \N +512425 2025-11-18 23:17:38.402169+00 2025-11-18 23:17:38.402175+00 f t TOTAL 55000.00 4 12755 \N +512426 2025-11-18 23:17:38.40336+00 2025-11-18 23:17:38.403368+00 f t ADELANTO 11000.00 5 12755 \N +507077 2025-11-17 23:46:04.174213+00 2025-11-17 23:46:04.174226+00 f t SUBTOTAL 0.00 1 12635 \N +507078 2025-11-17 23:46:04.176366+00 2025-11-17 23:46:04.176376+00 f t COSTO_SERVICIO 0.00 2 12635 \N +507079 2025-11-17 23:46:04.177871+00 2025-11-17 23:46:04.17788+00 f t DESCUENTO 0.00 3 12635 \N +507080 2025-11-17 23:46:04.179314+00 2025-11-17 23:46:04.179322+00 f t TOTAL 0.00 4 12635 \N +507081 2025-11-17 23:46:04.180697+00 2025-11-17 23:46:04.180705+00 f t ADELANTO 0.00 5 12635 \N +507117 2025-11-17 23:53:55.540822+00 2025-11-17 23:53:55.540833+00 f t SUBTOTAL 70000.00 1 12637 \N +507118 2025-11-17 23:53:55.542591+00 2025-11-17 23:53:55.542599+00 f t COSTO_SERVICIO 0.00 2 12637 \N +507119 2025-11-17 23:53:55.544072+00 2025-11-17 23:53:55.544079+00 f t DESCUENTO 0.00 3 12637 \N +507120 2025-11-17 23:53:55.545284+00 2025-11-17 23:53:55.545291+00 f t TOTAL 70000.00 4 12637 \N +507121 2025-11-17 23:53:55.546525+00 2025-11-17 23:53:55.546534+00 f t ADELANTO 19000.00 5 12637 \N +514507 2025-11-19 11:15:50.840664+00 2025-11-19 11:15:50.840676+00 f t SUBTOTAL 0.00 1 12807 \N +514508 2025-11-19 11:15:50.842182+00 2025-11-19 11:15:50.842193+00 f t COSTO_SERVICIO 0.00 2 12807 \N +514509 2025-11-19 11:15:50.843406+00 2025-11-19 11:15:50.843413+00 f t DESCUENTO 0.00 3 12807 \N +514510 2025-11-19 11:15:50.844475+00 2025-11-19 11:15:50.844481+00 f t TOTAL 0.00 4 12807 \N +514511 2025-11-19 11:15:50.845488+00 2025-11-19 11:15:50.845494+00 f t ADELANTO 0.00 5 12807 \N +507157 2025-11-18 00:01:12.759925+00 2025-11-18 00:01:12.759934+00 f t SUBTOTAL 46000.00 1 12630 \N +507158 2025-11-18 00:01:12.761913+00 2025-11-18 00:01:12.761921+00 f t COSTO_SERVICIO 0.00 2 12630 \N +507159 2025-11-18 00:01:12.763729+00 2025-11-18 00:01:12.763739+00 f t DESCUENTO 0.00 3 12630 \N +507160 2025-11-18 00:01:12.765089+00 2025-11-18 00:01:12.765098+00 f t TOTAL 46000.00 4 12630 \N +507161 2025-11-18 00:01:12.766559+00 2025-11-18 00:01:12.766567+00 f t ADELANTO 11000.00 5 12630 \N +515192 2025-11-19 12:51:10.688235+00 2025-11-19 12:51:10.688247+00 f t SUBTOTAL 0.00 1 12820 \N +515193 2025-11-19 12:51:10.689845+00 2025-11-19 12:51:10.689855+00 f t COSTO_SERVICIO 0.00 2 12820 \N +515194 2025-11-19 12:51:10.691059+00 2025-11-19 12:51:10.691067+00 f t DESCUENTO 0.00 3 12820 \N +515195 2025-11-19 12:51:10.692452+00 2025-11-19 12:51:10.69246+00 f t TOTAL 0.00 4 12820 \N +515196 2025-11-19 12:51:10.693584+00 2025-11-19 12:51:10.693592+00 f t ADELANTO 0.00 5 12820 \N +507172 2025-11-18 00:07:20.137753+00 2025-11-18 00:07:20.137762+00 f t SUBTOTAL 55000.00 1 12638 \N +507173 2025-11-18 00:07:20.139405+00 2025-11-18 00:07:20.139411+00 f t COSTO_SERVICIO 0.00 2 12638 \N +507174 2025-11-18 00:07:20.140408+00 2025-11-18 00:07:20.140412+00 f t DESCUENTO 0.00 3 12638 \N +507175 2025-11-18 00:07:20.141311+00 2025-11-18 00:07:20.141317+00 f t TOTAL 55000.00 4 12638 \N +507176 2025-11-18 00:07:20.142252+00 2025-11-18 00:07:20.142257+00 f t ADELANTO 11000.00 5 12638 \N +507212 2025-11-18 00:11:44.157479+00 2025-11-18 00:11:44.157487+00 f t SUBTOTAL 46000.00 1 12639 \N +507213 2025-11-18 00:11:44.159109+00 2025-11-18 00:11:44.159116+00 f t COSTO_SERVICIO 0.00 2 12639 \N +507214 2025-11-18 00:11:44.160502+00 2025-11-18 00:11:44.160509+00 f t DESCUENTO 0.00 3 12639 \N +507215 2025-11-18 00:11:44.16147+00 2025-11-18 00:11:44.161475+00 f t TOTAL 46000.00 4 12639 \N +507216 2025-11-18 00:11:44.162535+00 2025-11-18 00:11:44.162541+00 f t ADELANTO 11000.00 5 12639 \N +507227 2025-11-18 00:12:22.648032+00 2025-11-18 00:12:22.64804+00 f t SUBTOTAL 78000.00 1 12636 \N +507228 2025-11-18 00:12:22.649512+00 2025-11-18 00:12:22.649518+00 f t COSTO_SERVICIO 0.00 2 12636 \N +507229 2025-11-18 00:12:22.650617+00 2025-11-18 00:12:22.650623+00 f t DESCUENTO 0.00 3 12636 \N +507230 2025-11-18 00:12:22.651743+00 2025-11-18 00:12:22.651748+00 f t TOTAL 78000.00 4 12636 \N +507231 2025-11-18 00:12:22.653722+00 2025-11-18 00:12:22.653727+00 f t ADELANTO 21500.00 5 12636 \N +516767 2025-11-19 15:58:14.133275+00 2025-11-19 15:58:14.133283+00 f t SUBTOTAL 94000.00 1 12857 \N +516768 2025-11-19 15:58:14.135444+00 2025-11-19 15:58:14.135452+00 f t COSTO_SERVICIO 0.00 2 12857 \N +516769 2025-11-19 15:58:14.137325+00 2025-11-19 15:58:14.137336+00 f t DESCUENTO 0.00 3 12857 \N +516770 2025-11-19 15:58:14.138976+00 2025-11-19 15:58:14.138986+00 f t TOTAL 94000.00 4 12857 \N +516771 2025-11-19 15:58:14.140468+00 2025-11-19 15:58:14.140477+00 f t ADELANTO 24000.00 5 12857 \N +516912 2025-11-19 16:25:03.211471+00 2025-11-19 16:25:03.211485+00 f t SUBTOTAL 55000.00 1 12860 \N +516913 2025-11-19 16:25:03.216621+00 2025-11-19 16:25:03.21663+00 f t COSTO_SERVICIO 0.00 2 12860 \N +516914 2025-11-19 16:25:03.219685+00 2025-11-19 16:25:03.219694+00 f t DESCUENTO 0.00 3 12860 \N +516915 2025-11-19 16:25:03.222429+00 2025-11-19 16:25:03.222441+00 f t TOTAL 55000.00 4 12860 \N +516916 2025-11-19 16:25:03.227565+00 2025-11-19 16:25:03.227578+00 f t ADELANTO 11000.00 5 12860 \N +507267 2025-11-18 00:15:14.462326+00 2025-11-18 00:15:14.462339+00 f t SUBTOTAL 30000.00 1 12640 \N +507268 2025-11-18 00:15:14.464239+00 2025-11-18 00:15:14.464247+00 f t COSTO_SERVICIO 0.00 2 12640 \N +507269 2025-11-18 00:15:14.465525+00 2025-11-18 00:15:14.465532+00 f t DESCUENTO 0.00 3 12640 \N +507270 2025-11-18 00:15:14.466772+00 2025-11-18 00:15:14.466778+00 f t TOTAL 30000.00 4 12640 \N +507271 2025-11-18 00:15:14.467809+00 2025-11-18 00:15:14.467814+00 f t ADELANTO 30000.00 5 12640 \N +507272 2025-11-18 00:15:18.659157+00 2025-11-18 00:15:18.659165+00 f t SUBTOTAL 46000.00 1 12641 \N +507273 2025-11-18 00:15:18.660543+00 2025-11-18 00:15:18.660549+00 f t COSTO_SERVICIO 0.00 2 12641 \N +507274 2025-11-18 00:15:18.661467+00 2025-11-18 00:15:18.661474+00 f t DESCUENTO 0.00 3 12641 \N +507275 2025-11-18 00:15:18.662346+00 2025-11-18 00:15:18.662351+00 f t TOTAL 46000.00 4 12641 \N +507276 2025-11-18 00:15:18.663205+00 2025-11-18 00:15:18.66321+00 f t ADELANTO 11000.00 5 12641 \N +507327 2025-11-18 00:19:00.578911+00 2025-11-18 00:19:00.578921+00 f t SUBTOTAL 55000.00 1 12642 \N +507328 2025-11-18 00:19:00.580657+00 2025-11-18 00:19:00.580664+00 f t COSTO_SERVICIO 0.00 2 12642 \N +507329 2025-11-18 00:19:00.58175+00 2025-11-18 00:19:00.581756+00 f t DESCUENTO 0.00 3 12642 \N +507330 2025-11-18 00:19:00.582919+00 2025-11-18 00:19:00.582924+00 f t TOTAL 55000.00 4 12642 \N +507331 2025-11-18 00:19:00.584033+00 2025-11-18 00:19:00.584038+00 f t ADELANTO 11000.00 5 12642 \N +511872 2025-11-18 21:42:17.874871+00 2025-11-18 21:42:17.874879+00 f t SUBTOTAL 148000.00 1 12742 \N +511873 2025-11-18 21:42:17.876939+00 2025-11-18 21:42:17.876946+00 f t COSTO_SERVICIO 0.00 2 12742 \N +511874 2025-11-18 21:42:17.878094+00 2025-11-18 21:42:17.8781+00 f t DESCUENTO 9200.00 3 12742 \N +511875 2025-11-18 21:42:17.879282+00 2025-11-18 21:42:17.87929+00 f t TOTAL 138800.00 4 12742 \N +507337 2025-11-18 00:19:46.741594+00 2025-11-18 00:19:46.741603+00 f t SUBTOTAL 0.00 1 12643 \N +507338 2025-11-18 00:19:46.743004+00 2025-11-18 00:19:46.74301+00 f t COSTO_SERVICIO 0.00 2 12643 \N +507339 2025-11-18 00:19:46.744167+00 2025-11-18 00:19:46.744172+00 f t DESCUENTO 0.00 3 12643 \N +507340 2025-11-18 00:19:46.745023+00 2025-11-18 00:19:46.745028+00 f t TOTAL 0.00 4 12643 \N +507341 2025-11-18 00:19:46.745836+00 2025-11-18 00:19:46.745841+00 f t ADELANTO 0.00 5 12643 \N +511876 2025-11-18 21:42:17.880363+00 2025-11-18 21:42:17.880368+00 f t ADELANTO 40500.00 5 12742 \N +512432 2025-11-18 23:18:37.72095+00 2025-11-18 23:18:37.720959+00 f t SUBTOTAL 0.00 1 12756 \N +512433 2025-11-18 23:18:37.72233+00 2025-11-18 23:18:37.722336+00 f t COSTO_SERVICIO 0.00 2 12756 \N +512434 2025-11-18 23:18:37.723387+00 2025-11-18 23:18:37.723392+00 f t DESCUENTO 0.00 3 12756 \N +512435 2025-11-18 23:18:37.724288+00 2025-11-18 23:18:37.724293+00 f t TOTAL 0.00 4 12756 \N +512436 2025-11-18 23:18:37.725142+00 2025-11-18 23:18:37.725148+00 f t ADELANTO 0.00 5 12756 \N +524262 2025-11-20 23:39:19.794491+00 2025-11-20 23:39:19.794501+00 f t SUBTOTAL 0.00 1 13045 \N +524263 2025-11-20 23:39:19.79579+00 2025-11-20 23:39:19.795796+00 f t COSTO_SERVICIO 0.00 2 13045 \N +524264 2025-11-20 23:39:19.797742+00 2025-11-20 23:39:19.797749+00 f t DESCUENTO 0.00 3 13045 \N +524265 2025-11-20 23:39:19.798768+00 2025-11-20 23:39:19.798772+00 f t TOTAL 0.00 4 13045 \N +524266 2025-11-20 23:39:19.799731+00 2025-11-20 23:39:19.799735+00 f t ADELANTO 0.00 5 13045 \N +507397 2025-11-18 00:22:18.193652+00 2025-11-18 00:22:18.193662+00 f t SUBTOTAL 46000.00 1 12644 \N +507398 2025-11-18 00:22:18.195697+00 2025-11-18 00:22:18.195706+00 f t COSTO_SERVICIO 0.00 2 12644 \N +507399 2025-11-18 00:22:18.197217+00 2025-11-18 00:22:18.197224+00 f t DESCUENTO 0.00 3 12644 \N +507400 2025-11-18 00:22:18.198345+00 2025-11-18 00:22:18.198352+00 f t TOTAL 46000.00 4 12644 \N +507401 2025-11-18 00:22:18.19964+00 2025-11-18 00:22:18.199648+00 f t ADELANTO 11000.00 5 12644 \N +525877 2025-11-21 04:18:16.436512+00 2025-11-21 04:18:16.43652+00 f t SUBTOTAL 80000.00 1 13074 \N +525878 2025-11-21 04:18:16.43812+00 2025-11-21 04:18:16.438126+00 f t COSTO_SERVICIO 0.00 2 13074 \N +525879 2025-11-21 04:18:16.439195+00 2025-11-21 04:18:16.439201+00 f t DESCUENTO 0.00 3 13074 \N +525880 2025-11-21 04:18:16.440173+00 2025-11-21 04:18:16.440178+00 f t TOTAL 80000.00 4 13074 \N +525881 2025-11-21 04:18:16.441095+00 2025-11-21 04:18:16.4411+00 f t ADELANTO 12000.00 5 13074 \N +507447 2025-11-18 00:35:25.79538+00 2025-11-18 00:35:25.795389+00 f t SUBTOTAL 70000.00 1 12645 \N +507448 2025-11-18 00:35:25.797185+00 2025-11-18 00:35:25.797194+00 f t COSTO_SERVICIO 0.00 2 12645 \N +507449 2025-11-18 00:35:25.799554+00 2025-11-18 00:35:25.799562+00 f t DESCUENTO 0.00 3 12645 \N +507450 2025-11-18 00:35:25.801125+00 2025-11-18 00:35:25.801133+00 f t TOTAL 70000.00 4 12645 \N +507451 2025-11-18 00:35:25.802564+00 2025-11-18 00:35:25.802572+00 f t ADELANTO 19000.00 5 12645 \N +527437 2025-11-21 14:49:39.610151+00 2025-11-21 14:49:39.61016+00 f t SUBTOTAL 0.00 1 13109 \N +527438 2025-11-21 14:49:39.612134+00 2025-11-21 14:49:39.612141+00 f t COSTO_SERVICIO 0.00 2 13109 \N +527439 2025-11-21 14:49:39.613326+00 2025-11-21 14:49:39.613336+00 f t DESCUENTO 0.00 3 13109 \N +527440 2025-11-21 14:49:39.614452+00 2025-11-21 14:49:39.614462+00 f t TOTAL 0.00 4 13109 \N +527441 2025-11-21 14:49:39.615484+00 2025-11-21 14:49:39.615489+00 f t ADELANTO 0.00 5 13109 \N +507492 2025-11-18 00:37:07.025622+00 2025-11-18 00:37:07.025632+00 f t SUBTOTAL 0.00 1 12646 \N +507493 2025-11-18 00:37:07.027896+00 2025-11-18 00:37:07.027904+00 f t COSTO_SERVICIO 0.00 2 12646 \N +507494 2025-11-18 00:37:07.029434+00 2025-11-18 00:37:07.029442+00 f t DESCUENTO 0.00 3 12646 \N +507495 2025-11-18 00:37:07.031097+00 2025-11-18 00:37:07.031108+00 f t TOTAL 0.00 4 12646 \N +507496 2025-11-18 00:37:07.032655+00 2025-11-18 00:37:07.032665+00 f t ADELANTO 0.00 5 12646 \N +527827 2025-11-21 16:06:16.300751+00 2025-11-21 16:06:16.300759+00 f t SUBTOTAL 55000.00 1 13120 \N +527828 2025-11-21 16:06:16.302452+00 2025-11-21 16:06:16.302458+00 f t COSTO_SERVICIO 0.00 2 13120 \N +527829 2025-11-21 16:06:16.30373+00 2025-11-21 16:06:16.303737+00 f t DESCUENTO 0.00 3 13120 \N +527830 2025-11-21 16:06:16.305093+00 2025-11-21 16:06:16.3051+00 f t TOTAL 55000.00 4 13120 \N +527831 2025-11-21 16:06:16.306259+00 2025-11-21 16:06:16.306265+00 f t ADELANTO 11000.00 5 13120 \N +516922 2025-11-19 16:25:27.069969+00 2025-11-19 16:25:27.069978+00 f t SUBTOTAL 0.00 1 12862 \N +516923 2025-11-19 16:25:27.071321+00 2025-11-19 16:25:27.071328+00 f t COSTO_SERVICIO 0.00 2 12862 \N +516924 2025-11-19 16:25:27.072397+00 2025-11-19 16:25:27.072407+00 f t DESCUENTO 0.00 3 12862 \N +516925 2025-11-19 16:25:27.073429+00 2025-11-19 16:25:27.073434+00 f t TOTAL 0.00 4 12862 \N +516926 2025-11-19 16:25:27.074446+00 2025-11-19 16:25:27.074451+00 f t ADELANTO 0.00 5 12862 \N +528207 2025-11-21 16:51:01.396688+00 2025-11-21 16:51:01.396697+00 f t SUBTOTAL 0.00 1 13131 \N +528208 2025-11-21 16:51:01.399151+00 2025-11-21 16:51:01.39916+00 f t COSTO_SERVICIO 0.00 2 13131 \N +528209 2025-11-21 16:51:01.400517+00 2025-11-21 16:51:01.400524+00 f t DESCUENTO 0.00 3 13131 \N +528210 2025-11-21 16:51:01.401745+00 2025-11-21 16:51:01.40175+00 f t TOTAL 0.00 4 13131 \N +528211 2025-11-21 16:51:01.402822+00 2025-11-21 16:51:01.402827+00 f t ADELANTO 0.00 5 13131 \N +517677 2025-11-19 18:57:13.150811+00 2025-11-19 18:57:13.150819+00 f t SUBTOTAL 78000.00 1 12876 \N +517678 2025-11-19 18:57:13.152624+00 2025-11-19 18:57:13.15263+00 f t COSTO_SERVICIO 0.00 2 12876 \N +517679 2025-11-19 18:57:13.153585+00 2025-11-19 18:57:13.15359+00 f t DESCUENTO 0.00 3 12876 \N +517680 2025-11-19 18:57:13.154491+00 2025-11-19 18:57:13.154496+00 f t TOTAL 78000.00 4 12876 \N +517681 2025-11-19 18:57:13.155479+00 2025-11-19 18:57:13.155484+00 f t ADELANTO 13000.00 5 12876 \N +518442 2025-11-19 20:42:02.10529+00 2025-11-19 20:42:02.105302+00 f t SUBTOTAL 156000.00 1 12898 \N +518443 2025-11-19 20:42:02.109376+00 2025-11-19 20:42:02.109389+00 f t COSTO_SERVICIO 0.00 2 12898 \N +518444 2025-11-19 20:42:02.113038+00 2025-11-19 20:42:02.11305+00 f t DESCUENTO 9200.00 3 12898 \N +518445 2025-11-19 20:42:02.115247+00 2025-11-19 20:42:02.115306+00 f t TOTAL 146800.00 4 12898 \N +518446 2025-11-19 20:42:02.117147+00 2025-11-19 20:42:02.117157+00 f t ADELANTO 43000.00 5 12898 \N +518672 2025-11-19 21:04:23.320844+00 2025-11-19 21:04:23.320855+00 f t SUBTOTAL 0.00 1 12904 \N +518673 2025-11-19 21:04:23.322454+00 2025-11-19 21:04:23.322463+00 f t COSTO_SERVICIO 0.00 2 12904 \N +518674 2025-11-19 21:04:23.32364+00 2025-11-19 21:04:23.323648+00 f t DESCUENTO 0.00 3 12904 \N +518675 2025-11-19 21:04:23.324694+00 2025-11-19 21:04:23.324701+00 f t TOTAL 0.00 4 12904 \N +518676 2025-11-19 21:04:23.325781+00 2025-11-19 21:04:23.325789+00 f t ADELANTO 0.00 5 12904 \N +518722 2025-11-19 21:09:57.576861+00 2025-11-19 21:09:57.576868+00 f t SUBTOTAL 46000.00 1 12905 \N +518723 2025-11-19 21:09:57.578634+00 2025-11-19 21:09:57.578639+00 f t COSTO_SERVICIO 0.00 2 12905 \N +518724 2025-11-19 21:09:57.579725+00 2025-11-19 21:09:57.57973+00 f t DESCUENTO 0.00 3 12905 \N +518725 2025-11-19 21:09:57.581043+00 2025-11-19 21:09:57.58105+00 f t TOTAL 46000.00 4 12905 \N +518726 2025-11-19 21:09:57.582388+00 2025-11-19 21:09:57.582394+00 f t ADELANTO 11000.00 5 12905 \N +524032 2025-11-20 22:41:26.960475+00 2025-11-20 22:41:26.960485+00 f t SUBTOTAL 0.00 1 13037 \N +524033 2025-11-20 22:41:26.962329+00 2025-11-20 22:41:26.962335+00 f t COSTO_SERVICIO 0.00 2 13037 \N +524034 2025-11-20 22:41:26.963376+00 2025-11-20 22:41:26.963383+00 f t DESCUENTO 0.00 3 13037 \N +524035 2025-11-20 22:41:26.964334+00 2025-11-20 22:41:26.964339+00 f t TOTAL 0.00 4 13037 \N +524036 2025-11-20 22:41:26.965306+00 2025-11-20 22:41:26.965312+00 f t ADELANTO 0.00 5 13037 \N +549312 2025-11-25 23:47:54.646733+00 2025-11-25 23:47:54.646741+00 f t SUBTOTAL 46000.00 1 13620 \N +524272 2025-11-20 23:41:58.228756+00 2025-11-20 23:41:58.228764+00 f t SUBTOTAL 0.00 1 13046 \N +524273 2025-11-20 23:41:58.230121+00 2025-11-20 23:41:58.230128+00 f t COSTO_SERVICIO 0.00 2 13046 \N +524274 2025-11-20 23:41:58.231108+00 2025-11-20 23:41:58.231113+00 f t DESCUENTO 0.00 3 13046 \N +524275 2025-11-20 23:41:58.231976+00 2025-11-20 23:41:58.231981+00 f t TOTAL 0.00 4 13046 \N +524276 2025-11-20 23:41:58.232838+00 2025-11-20 23:41:58.232842+00 f t ADELANTO 0.00 5 13046 \N +549313 2025-11-25 23:47:54.647755+00 2025-11-25 23:47:54.647761+00 f t COSTO_SERVICIO 0.00 2 13620 \N +549314 2025-11-25 23:47:54.648429+00 2025-11-25 23:47:54.648434+00 f t DESCUENTO 0.00 3 13620 \N +549315 2025-11-25 23:47:54.649099+00 2025-11-25 23:47:54.649104+00 f t TOTAL 46000.00 4 13620 \N +549316 2025-11-25 23:47:54.649717+00 2025-11-25 23:47:54.649722+00 f t ADELANTO 11000.00 5 13620 \N +507682 2025-11-18 01:10:48.546186+00 2025-11-18 01:10:48.546193+00 f t SUBTOTAL 139750.00 1 12648 \N +507683 2025-11-18 01:10:48.547576+00 2025-11-18 01:10:48.547582+00 f t COSTO_SERVICIO 0.00 2 12648 \N +507684 2025-11-18 01:10:48.548538+00 2025-11-18 01:10:48.548543+00 f t DESCUENTO 0.00 3 12648 \N +507685 2025-11-18 01:10:48.549342+00 2025-11-18 01:10:48.549347+00 f t TOTAL 139750.00 4 12648 \N +507686 2025-11-18 01:10:48.55013+00 2025-11-18 01:10:48.550135+00 f t ADELANTO 29750.00 5 12648 \N +513987 2025-11-19 09:02:43.279203+00 2025-11-19 09:02:43.279216+00 f t SUBTOTAL 0.00 1 12794 \N +513988 2025-11-19 09:02:43.281649+00 2025-11-19 09:02:43.281657+00 f t COSTO_SERVICIO 0.00 2 12794 \N +513989 2025-11-19 09:02:43.2833+00 2025-11-19 09:02:43.283311+00 f t DESCUENTO 0.00 3 12794 \N +513990 2025-11-19 09:02:43.284746+00 2025-11-19 09:02:43.284753+00 f t TOTAL 0.00 4 12794 \N +513991 2025-11-19 09:02:43.28618+00 2025-11-19 09:02:43.286186+00 f t ADELANTO 0.00 5 12794 \N +507707 2025-11-18 01:12:46.232249+00 2025-11-18 01:12:46.232256+00 f t SUBTOTAL 78500.00 1 12647 \N +507708 2025-11-18 01:12:46.233678+00 2025-11-18 01:12:46.233684+00 f t COSTO_SERVICIO 0.00 2 12647 \N +507709 2025-11-18 01:12:46.23482+00 2025-11-18 01:12:46.234825+00 f t DESCUENTO 0.00 3 12647 \N +507710 2025-11-18 01:12:46.235835+00 2025-11-18 01:12:46.23584+00 f t TOTAL 78500.00 4 12647 \N +507711 2025-11-18 01:12:46.236757+00 2025-11-18 01:12:46.236762+00 f t ADELANTO 43500.00 5 12647 \N +515377 2025-11-19 13:00:10.460291+00 2025-11-19 13:00:10.460305+00 f t SUBTOTAL 78000.00 1 12825 \N +515378 2025-11-19 13:00:10.472541+00 2025-11-19 13:00:10.472554+00 f t COSTO_SERVICIO 0.00 2 12825 \N +515379 2025-11-19 13:00:10.478638+00 2025-11-19 13:00:10.47865+00 f t DESCUENTO 0.00 3 12825 \N +515380 2025-11-19 13:00:10.481891+00 2025-11-19 13:00:10.481901+00 f t TOTAL 78000.00 4 12825 \N +515381 2025-11-19 13:00:10.484752+00 2025-11-19 13:00:10.484767+00 f t ADELANTO 21500.00 5 12825 \N +516477 2025-11-19 14:57:43.134318+00 2025-11-19 14:57:43.134327+00 f t SUBTOTAL 0.00 1 12848 \N +516478 2025-11-19 14:57:43.136164+00 2025-11-19 14:57:43.136173+00 f t COSTO_SERVICIO 0.00 2 12848 \N +516479 2025-11-19 14:57:43.137444+00 2025-11-19 14:57:43.137453+00 f t DESCUENTO 0.00 3 12848 \N +516480 2025-11-19 14:57:43.138504+00 2025-11-19 14:57:43.13851+00 f t TOTAL 0.00 4 12848 \N +516481 2025-11-19 14:57:43.139463+00 2025-11-19 14:57:43.139468+00 f t ADELANTO 0.00 5 12848 \N +516632 2025-11-19 15:24:12.327725+00 2025-11-19 15:24:12.327732+00 f t SUBTOTAL 54000.00 1 12853 \N +516633 2025-11-19 15:24:12.329561+00 2025-11-19 15:24:12.329568+00 f t COSTO_SERVICIO 0.00 2 12853 \N +516634 2025-11-19 15:24:12.330875+00 2025-11-19 15:24:12.330883+00 f t DESCUENTO 0.00 3 12853 \N +516635 2025-11-19 15:24:12.332093+00 2025-11-19 15:24:12.332156+00 f t TOTAL 54000.00 4 12853 \N +516636 2025-11-19 15:24:12.333249+00 2025-11-19 15:24:12.333254+00 f t ADELANTO 13500.00 5 12853 \N +507787 2025-11-18 01:16:50.510997+00 2025-11-18 01:16:50.511005+00 f t SUBTOTAL 140000.00 1 12649 \N +507788 2025-11-18 01:16:50.512704+00 2025-11-18 01:16:50.512711+00 f t COSTO_SERVICIO 0.00 2 12649 \N +507789 2025-11-18 01:16:50.514077+00 2025-11-18 01:16:50.514084+00 f t DESCUENTO 9200.00 3 12649 \N +507790 2025-11-18 01:16:50.515302+00 2025-11-18 01:16:50.515308+00 f t TOTAL 130800.00 4 12649 \N +507791 2025-11-18 01:16:50.516255+00 2025-11-18 01:16:50.516261+00 f t ADELANTO 38000.00 5 12649 \N +517062 2025-11-19 17:05:18.875644+00 2025-11-19 17:05:18.875652+00 f t SUBTOTAL 23000.00 1 12865 \N +517063 2025-11-19 17:05:18.877635+00 2025-11-19 17:05:18.877643+00 f t COSTO_SERVICIO 0.00 2 12865 \N +517064 2025-11-19 17:05:18.879096+00 2025-11-19 17:05:18.879103+00 f t DESCUENTO 0.00 3 12865 \N +517065 2025-11-19 17:05:18.880303+00 2025-11-19 17:05:18.880309+00 f t TOTAL 23000.00 4 12865 \N +517066 2025-11-19 17:05:18.881574+00 2025-11-19 17:05:18.881583+00 f t ADELANTO 5500.00 5 12865 \N +517187 2025-11-19 17:33:41.587332+00 2025-11-19 17:33:41.587339+00 f t SUBTOTAL 62800.00 1 12867 \N +517188 2025-11-19 17:33:41.589192+00 2025-11-19 17:33:41.5892+00 f t COSTO_SERVICIO 0.00 2 12867 \N +517189 2025-11-19 17:33:41.590426+00 2025-11-19 17:33:41.590431+00 f t DESCUENTO 0.00 3 12867 \N +517190 2025-11-19 17:33:41.591515+00 2025-11-19 17:33:41.591521+00 f t TOTAL 62800.00 4 12867 \N +517191 2025-11-19 17:33:41.592492+00 2025-11-19 17:33:41.592501+00 f t ADELANTO 15800.00 5 12867 \N +517687 2025-11-19 18:57:30.557188+00 2025-11-19 18:57:30.5572+00 f t SUBTOTAL 0.00 1 12879 \N +517688 2025-11-19 18:57:30.558592+00 2025-11-19 18:57:30.558598+00 f t COSTO_SERVICIO 0.00 2 12879 \N +517689 2025-11-19 18:57:30.559902+00 2025-11-19 18:57:30.559908+00 f t DESCUENTO 0.00 3 12879 \N +517690 2025-11-19 18:57:30.561053+00 2025-11-19 18:57:30.561061+00 f t TOTAL 0.00 4 12879 \N +517691 2025-11-19 18:57:30.562105+00 2025-11-19 18:57:30.56211+00 f t ADELANTO 0.00 5 12879 \N +518612 2025-11-19 20:55:55.042862+00 2025-11-19 20:55:55.042869+00 f t SUBTOTAL 70000.00 1 12902 \N +518613 2025-11-19 20:55:55.044673+00 2025-11-19 20:55:55.044678+00 f t COSTO_SERVICIO 0.00 2 12902 \N +518614 2025-11-19 20:55:55.045844+00 2025-11-19 20:55:55.045849+00 f t DESCUENTO 0.00 3 12902 \N +518615 2025-11-19 20:55:55.046859+00 2025-11-19 20:55:55.046864+00 f t TOTAL 70000.00 4 12902 \N +518616 2025-11-19 20:55:55.048123+00 2025-11-19 20:55:55.04813+00 f t ADELANTO 19000.00 5 12902 \N +518782 2025-11-19 21:38:01.188331+00 2025-11-19 21:38:01.188342+00 f t SUBTOTAL 55000.00 1 12890 \N +518783 2025-11-19 21:38:01.190247+00 2025-11-19 21:38:01.190253+00 f t COSTO_SERVICIO 0.00 2 12890 \N +518784 2025-11-19 21:38:01.19144+00 2025-11-19 21:38:01.191448+00 f t DESCUENTO 0.00 3 12890 \N +518785 2025-11-19 21:38:01.192753+00 2025-11-19 21:38:01.192759+00 f t TOTAL 55000.00 4 12890 \N +518786 2025-11-19 21:38:01.193995+00 2025-11-19 21:38:01.194+00 f t ADELANTO 11000.00 5 12890 \N +518806 2025-11-19 21:47:17.458449+00 2025-11-19 21:47:17.458454+00 f t ADELANTO 0.00 5 12909 \N +507922 2025-11-18 01:22:53.985862+00 2025-11-18 01:22:53.985869+00 f t SUBTOTAL 122000.00 1 12650 \N +507923 2025-11-18 01:22:53.987706+00 2025-11-18 01:22:53.987713+00 f t COSTO_SERVICIO 0.00 2 12650 \N +507924 2025-11-18 01:22:53.988968+00 2025-11-18 01:22:53.988974+00 f t DESCUENTO 0.00 3 12650 \N +507925 2025-11-18 01:22:53.99009+00 2025-11-18 01:22:53.990096+00 f t TOTAL 122000.00 4 12650 \N +507926 2025-11-18 01:22:53.991537+00 2025-11-18 01:22:53.991544+00 f t ADELANTO 27000.00 5 12650 \N +524042 2025-11-20 22:42:09.448878+00 2025-11-20 22:42:09.448889+00 f t SUBTOTAL 0.00 1 13038 \N +524043 2025-11-20 22:42:09.45051+00 2025-11-20 22:42:09.45052+00 f t COSTO_SERVICIO 0.00 2 13038 \N +524044 2025-11-20 22:42:09.45184+00 2025-11-20 22:42:09.451848+00 f t DESCUENTO 0.00 3 13038 \N +524045 2025-11-20 22:42:09.453041+00 2025-11-20 22:42:09.453048+00 f t TOTAL 0.00 4 13038 \N +524046 2025-11-20 22:42:09.454126+00 2025-11-20 22:42:09.454134+00 f t ADELANTO 0.00 5 13038 \N +512892 2025-11-19 01:41:50.079758+00 2025-11-19 01:41:50.079769+00 f t SUBTOTAL 54000.00 1 12771 \N +512893 2025-11-19 01:41:50.081757+00 2025-11-19 01:41:50.081767+00 f t COSTO_SERVICIO 0.00 2 12771 \N +512894 2025-11-19 01:41:50.083076+00 2025-11-19 01:41:50.083084+00 f t DESCUENTO 0.00 3 12771 \N +512895 2025-11-19 01:41:50.084264+00 2025-11-19 01:41:50.084272+00 f t TOTAL 54000.00 4 12771 \N +512896 2025-11-19 01:41:50.085872+00 2025-11-19 01:41:50.08588+00 f t ADELANTO 13500.00 5 12771 \N +513082 2025-11-19 01:50:25.031405+00 2025-11-19 01:50:25.031412+00 f t SUBTOTAL 55000.00 1 12774 \N +513083 2025-11-19 01:50:25.033523+00 2025-11-19 01:50:25.03353+00 f t COSTO_SERVICIO 0.00 2 12774 \N +513084 2025-11-19 01:50:25.034905+00 2025-11-19 01:50:25.034912+00 f t DESCUENTO 0.00 3 12774 \N +513085 2025-11-19 01:50:25.036225+00 2025-11-19 01:50:25.036232+00 f t TOTAL 55000.00 4 12774 \N +513086 2025-11-19 01:50:25.037385+00 2025-11-19 01:50:25.037391+00 f t ADELANTO 11000.00 5 12774 \N +507987 2025-11-18 01:24:31.838163+00 2025-11-18 01:24:31.838172+00 f t SUBTOTAL 47000.00 1 12651 \N +507988 2025-11-18 01:24:31.83988+00 2025-11-18 01:24:31.839888+00 f t COSTO_SERVICIO 0.00 2 12651 \N +507989 2025-11-18 01:24:31.841416+00 2025-11-18 01:24:31.841424+00 f t DESCUENTO 0.00 3 12651 \N +507990 2025-11-18 01:24:31.84261+00 2025-11-18 01:24:31.842616+00 f t TOTAL 47000.00 4 12651 \N +507991 2025-11-18 01:24:31.843878+00 2025-11-18 01:24:31.843884+00 f t ADELANTO 12000.00 5 12651 \N +507997 2025-11-18 01:45:16.202493+00 2025-11-18 01:45:16.202501+00 f t SUBTOTAL 0.00 1 12652 \N +507998 2025-11-18 01:45:16.20391+00 2025-11-18 01:45:16.203916+00 f t COSTO_SERVICIO 0.00 2 12652 \N +507999 2025-11-18 01:45:16.20487+00 2025-11-18 01:45:16.204875+00 f t DESCUENTO 0.00 3 12652 \N +508000 2025-11-18 01:45:16.205676+00 2025-11-18 01:45:16.205681+00 f t TOTAL 0.00 4 12652 \N +508001 2025-11-18 01:45:16.206584+00 2025-11-18 01:45:16.206589+00 f t ADELANTO 0.00 5 12652 \N +538902 2025-11-24 12:02:26.011245+00 2025-11-24 12:02:26.011257+00 f t SUBTOTAL 55000.00 1 13378 \N +538903 2025-11-24 12:02:26.013438+00 2025-11-24 12:02:26.013448+00 f t COSTO_SERVICIO 0.00 2 13378 \N +538904 2025-11-24 12:02:26.015017+00 2025-11-24 12:02:26.015024+00 f t DESCUENTO 0.00 3 13378 \N +538905 2025-11-24 12:02:26.01624+00 2025-11-24 12:02:26.016246+00 f t TOTAL 55000.00 4 13378 \N +538906 2025-11-24 12:02:26.017246+00 2025-11-24 12:02:26.017252+00 f t ADELANTO 11000.00 5 13378 \N +515547 2025-11-19 13:09:42.896723+00 2025-11-19 13:09:42.896732+00 f t SUBTOTAL 0.00 1 12828 \N +515548 2025-11-19 13:09:42.89928+00 2025-11-19 13:09:42.899288+00 f t COSTO_SERVICIO 0.00 2 12828 \N +508037 2025-11-18 02:10:39.352555+00 2025-11-18 02:10:39.352564+00 f t SUBTOTAL 54000.00 1 12653 \N +508038 2025-11-18 02:10:39.354202+00 2025-11-18 02:10:39.354208+00 f t COSTO_SERVICIO 0.00 2 12653 \N +508039 2025-11-18 02:10:39.355374+00 2025-11-18 02:10:39.355379+00 f t DESCUENTO 0.00 3 12653 \N +508040 2025-11-18 02:10:39.356648+00 2025-11-18 02:10:39.356654+00 f t TOTAL 54000.00 4 12653 \N +508041 2025-11-18 02:10:39.357902+00 2025-11-18 02:10:39.357909+00 f t ADELANTO 13500.00 5 12653 \N +515549 2025-11-19 13:09:42.900653+00 2025-11-19 13:09:42.90066+00 f t DESCUENTO 0.00 3 12828 \N +515550 2025-11-19 13:09:42.901996+00 2025-11-19 13:09:42.902001+00 f t TOTAL 0.00 4 12828 \N +515551 2025-11-19 13:09:42.903106+00 2025-11-19 13:09:42.903113+00 f t ADELANTO 0.00 5 12828 \N +515707 2025-11-19 13:20:14.994776+00 2025-11-19 13:20:14.994783+00 f t SUBTOTAL 78000.00 1 12831 \N +515708 2025-11-19 13:20:14.996844+00 2025-11-19 13:20:14.996852+00 f t COSTO_SERVICIO 0.00 2 12831 \N +515709 2025-11-19 13:20:14.998325+00 2025-11-19 13:20:14.998331+00 f t DESCUENTO 0.00 3 12831 \N +515710 2025-11-19 13:20:14.999403+00 2025-11-19 13:20:14.999409+00 f t TOTAL 78000.00 4 12831 \N +515711 2025-11-19 13:20:15.000472+00 2025-11-19 13:20:15.000478+00 f t ADELANTO 21500.00 5 12831 \N +516487 2025-11-19 14:57:59.389014+00 2025-11-19 14:57:59.389022+00 f t SUBTOTAL 0.00 1 12849 \N +516488 2025-11-19 14:57:59.390508+00 2025-11-19 14:57:59.390517+00 f t COSTO_SERVICIO 0.00 2 12849 \N +516489 2025-11-19 14:57:59.391707+00 2025-11-19 14:57:59.391714+00 f t DESCUENTO 0.00 3 12849 \N +516490 2025-11-19 14:57:59.392751+00 2025-11-19 14:57:59.392758+00 f t TOTAL 0.00 4 12849 \N +516491 2025-11-19 14:57:59.393782+00 2025-11-19 14:57:59.393788+00 f t ADELANTO 0.00 5 12849 \N +508087 2025-11-18 02:17:20.783784+00 2025-11-18 02:17:20.783795+00 f t SUBTOTAL 78000.00 1 12654 \N +508088 2025-11-18 02:17:20.78565+00 2025-11-18 02:17:20.78566+00 f t COSTO_SERVICIO 0.00 2 12654 \N +508089 2025-11-18 02:17:20.786998+00 2025-11-18 02:17:20.787004+00 f t DESCUENTO 0.00 3 12654 \N +508090 2025-11-18 02:17:20.788567+00 2025-11-18 02:17:20.788572+00 f t TOTAL 78000.00 4 12654 \N +508091 2025-11-18 02:17:20.789745+00 2025-11-18 02:17:20.789753+00 f t ADELANTO 21500.00 5 12654 \N +508147 2025-11-18 02:59:32.007091+00 2025-11-18 02:59:32.007102+00 f t SUBTOTAL 108000.00 1 12655 \N +508148 2025-11-18 02:59:32.008771+00 2025-11-18 02:59:32.00878+00 f t COSTO_SERVICIO 0.00 2 12655 \N +508149 2025-11-18 02:59:32.009949+00 2025-11-18 02:59:32.009957+00 f t DESCUENTO 9200.00 3 12655 \N +508150 2025-11-18 02:59:32.011059+00 2025-11-18 02:59:32.011067+00 f t TOTAL 98800.00 4 12655 \N +508151 2025-11-18 02:59:32.012284+00 2025-11-18 02:59:32.012292+00 f t ADELANTO 27000.00 5 12655 \N +508157 2025-11-18 03:18:34.608971+00 2025-11-18 03:18:34.60898+00 f t SUBTOTAL 0.00 1 12656 \N +508158 2025-11-18 03:18:34.610275+00 2025-11-18 03:18:34.610281+00 f t COSTO_SERVICIO 0.00 2 12656 \N +508159 2025-11-18 03:18:34.611273+00 2025-11-18 03:18:34.61128+00 f t DESCUENTO 0.00 3 12656 \N +508160 2025-11-18 03:18:34.612367+00 2025-11-18 03:18:34.612372+00 f t TOTAL 0.00 4 12656 \N +508161 2025-11-18 03:18:34.613219+00 2025-11-18 03:18:34.613223+00 f t ADELANTO 0.00 5 12656 \N +517937 2025-11-19 19:57:38.728496+00 2025-11-19 19:57:38.728504+00 f t SUBTOTAL 54000.00 1 12887 \N +517938 2025-11-19 19:57:38.730121+00 2025-11-19 19:57:38.730127+00 f t COSTO_SERVICIO 0.00 2 12887 \N +517939 2025-11-19 19:57:38.731283+00 2025-11-19 19:57:38.731288+00 f t DESCUENTO 0.00 3 12887 \N +517940 2025-11-19 19:57:38.732604+00 2025-11-19 19:57:38.732611+00 f t TOTAL 54000.00 4 12887 \N +517941 2025-11-19 19:57:38.733731+00 2025-11-19 19:57:38.733737+00 f t ADELANTO 13500.00 5 12887 \N +508177 2025-11-18 03:20:39.682801+00 2025-11-18 03:20:39.682814+00 f t SUBTOTAL 0.00 1 12657 \N +508178 2025-11-18 03:20:39.685016+00 2025-11-18 03:20:39.685025+00 f t COSTO_SERVICIO 0.00 2 12657 \N +508179 2025-11-18 03:20:39.686207+00 2025-11-18 03:20:39.686215+00 f t DESCUENTO 0.00 3 12657 \N +508180 2025-11-18 03:20:39.687301+00 2025-11-18 03:20:39.687309+00 f t TOTAL 0.00 4 12657 \N +508181 2025-11-18 03:20:39.688648+00 2025-11-18 03:20:39.688656+00 f t ADELANTO 0.00 5 12657 \N +512187 2025-11-18 22:22:55.932052+00 2025-11-18 22:22:55.932089+00 f t SUBTOTAL 70000.00 1 12749 \N +512188 2025-11-18 22:22:55.934145+00 2025-11-18 22:22:55.934152+00 f t COSTO_SERVICIO 0.00 2 12749 \N +512189 2025-11-18 22:22:55.935547+00 2025-11-18 22:22:55.935554+00 f t DESCUENTO 0.00 3 12749 \N +512190 2025-11-18 22:22:55.936695+00 2025-11-18 22:22:55.936701+00 f t TOTAL 70000.00 4 12749 \N +512191 2025-11-18 22:22:55.937897+00 2025-11-18 22:22:55.937903+00 f t ADELANTO 16000.00 5 12749 \N +512682 2025-11-18 23:59:44.291596+00 2025-11-18 23:59:44.291605+00 f t SUBTOTAL 0.00 1 12763 \N +512683 2025-11-18 23:59:44.293899+00 2025-11-18 23:59:44.293907+00 f t COSTO_SERVICIO 0.00 2 12763 \N +512684 2025-11-18 23:59:44.295414+00 2025-11-18 23:59:44.29542+00 f t DESCUENTO 0.00 3 12763 \N +512685 2025-11-18 23:59:44.296734+00 2025-11-18 23:59:44.29674+00 f t TOTAL 0.00 4 12763 \N +512686 2025-11-18 23:59:44.297805+00 2025-11-18 23:59:44.29781+00 f t ADELANTO 0.00 5 12763 \N +508232 2025-11-18 04:02:12.264066+00 2025-11-18 04:02:12.264075+00 f t SUBTOTAL 46000.00 1 12658 \N +508233 2025-11-18 04:02:12.265595+00 2025-11-18 04:02:12.265602+00 f t COSTO_SERVICIO 0.00 2 12658 \N +508234 2025-11-18 04:02:12.266795+00 2025-11-18 04:02:12.266801+00 f t DESCUENTO 0.00 3 12658 \N +508235 2025-11-18 04:02:12.267792+00 2025-11-18 04:02:12.267797+00 f t TOTAL 46000.00 4 12658 \N +508236 2025-11-18 04:02:12.268647+00 2025-11-18 04:02:12.268653+00 f t ADELANTO 11000.00 5 12658 \N +513447 2025-11-19 02:48:34.229408+00 2025-11-19 02:48:34.22942+00 f t SUBTOTAL 46000.00 1 12780 \N +513448 2025-11-19 02:48:34.231642+00 2025-11-19 02:48:34.231653+00 f t COSTO_SERVICIO 0.00 2 12780 \N +513449 2025-11-19 02:48:34.233362+00 2025-11-19 02:48:34.233372+00 f t DESCUENTO 0.00 3 12780 \N +513450 2025-11-19 02:48:34.234938+00 2025-11-19 02:48:34.234948+00 f t TOTAL 46000.00 4 12780 \N +513451 2025-11-19 02:48:34.23666+00 2025-11-19 02:48:34.23667+00 f t ADELANTO 11000.00 5 12780 \N +526062 2025-11-21 10:18:12.818463+00 2025-11-21 10:18:12.818471+00 f t SUBTOTAL 0.00 1 13081 \N +526063 2025-11-21 10:18:12.820407+00 2025-11-21 10:18:12.820417+00 f t COSTO_SERVICIO 0.00 2 13081 \N +526064 2025-11-21 10:18:12.821497+00 2025-11-21 10:18:12.821502+00 f t DESCUENTO 0.00 3 13081 \N +526065 2025-11-21 10:18:12.822497+00 2025-11-21 10:18:12.822502+00 f t TOTAL 0.00 4 13081 \N +526066 2025-11-21 10:18:12.823398+00 2025-11-21 10:18:12.823403+00 f t ADELANTO 0.00 5 13081 \N +508292 2025-11-18 04:03:59.432437+00 2025-11-18 04:03:59.432449+00 f t SUBTOTAL 0.00 1 12659 \N +508293 2025-11-18 04:03:59.434453+00 2025-11-18 04:03:59.434463+00 f t COSTO_SERVICIO 0.00 2 12659 \N +508294 2025-11-18 04:03:59.435769+00 2025-11-18 04:03:59.435777+00 f t DESCUENTO 0.00 3 12659 \N +508295 2025-11-18 04:03:59.436955+00 2025-11-18 04:03:59.436963+00 f t TOTAL 0.00 4 12659 \N +508296 2025-11-18 04:03:59.438329+00 2025-11-18 04:03:59.438337+00 f t ADELANTO 0.00 5 12659 \N +508302 2025-11-18 04:08:01.570947+00 2025-11-18 04:08:01.57096+00 f t SUBTOTAL 0.00 1 12660 \N +508303 2025-11-18 04:08:01.572798+00 2025-11-18 04:08:01.572809+00 f t COSTO_SERVICIO 0.00 2 12660 \N +508304 2025-11-18 04:08:01.57424+00 2025-11-18 04:08:01.574249+00 f t DESCUENTO 0.00 3 12660 \N +508305 2025-11-18 04:08:01.575417+00 2025-11-18 04:08:01.575425+00 f t TOTAL 0.00 4 12660 \N +508306 2025-11-18 04:08:01.576777+00 2025-11-18 04:08:01.576787+00 f t ADELANTO 0.00 5 12660 \N +515212 2025-11-19 12:52:08.441109+00 2025-11-19 12:52:08.441117+00 f t SUBTOTAL 148000.00 1 12819 \N +515213 2025-11-19 12:52:08.443073+00 2025-11-19 12:52:08.443081+00 f t COSTO_SERVICIO 0.00 2 12819 \N +515214 2025-11-19 12:52:08.44454+00 2025-11-19 12:52:08.444546+00 f t DESCUENTO 9200.00 3 12819 \N +515215 2025-11-19 12:52:08.445808+00 2025-11-19 12:52:08.445814+00 f t TOTAL 138800.00 4 12819 \N +515216 2025-11-19 12:52:08.447705+00 2025-11-19 12:52:08.447712+00 f t ADELANTO 40500.00 5 12819 \N +515712 2025-11-19 13:20:34.209394+00 2025-11-19 13:20:34.209406+00 f t SUBTOTAL 13200.00 1 12832 \N +515713 2025-11-19 13:20:34.212505+00 2025-11-19 13:20:34.212516+00 f t COSTO_SERVICIO 0.00 2 12832 \N +515714 2025-11-19 13:20:34.214319+00 2025-11-19 13:20:34.214329+00 f t DESCUENTO 0.00 3 12832 \N +515715 2025-11-19 13:20:34.216001+00 2025-11-19 13:20:34.21601+00 f t TOTAL 13200.00 4 12832 \N +515716 2025-11-19 13:20:34.2177+00 2025-11-19 13:20:34.21771+00 f t ADELANTO 13200.00 5 12832 \N +508342 2025-11-18 04:10:50.734215+00 2025-11-18 04:10:50.734221+00 f t SUBTOTAL 54000.00 1 12661 \N +508343 2025-11-18 04:10:50.73561+00 2025-11-18 04:10:50.735616+00 f t COSTO_SERVICIO 0.00 2 12661 \N +508344 2025-11-18 04:10:50.736965+00 2025-11-18 04:10:50.736974+00 f t DESCUENTO 0.00 3 12661 \N +508345 2025-11-18 04:10:50.738156+00 2025-11-18 04:10:50.738164+00 f t TOTAL 54000.00 4 12661 \N +508346 2025-11-18 04:10:50.7394+00 2025-11-18 04:10:50.739408+00 f t ADELANTO 13500.00 5 12661 \N +527442 2025-11-21 14:49:41.751776+00 2025-11-21 14:49:41.751783+00 f t SUBTOTAL 46000.00 1 13110 \N +527443 2025-11-21 14:49:41.753736+00 2025-11-21 14:49:41.753742+00 f t COSTO_SERVICIO 0.00 2 13110 \N +527444 2025-11-21 14:49:41.754928+00 2025-11-21 14:49:41.754934+00 f t DESCUENTO 0.00 3 13110 \N +527445 2025-11-21 14:49:41.755945+00 2025-11-21 14:49:41.75595+00 f t TOTAL 46000.00 4 13110 \N +527446 2025-11-21 14:49:41.756873+00 2025-11-21 14:49:41.756878+00 f t ADELANTO 11000.00 5 13110 \N +516792 2025-11-19 16:19:43.662424+00 2025-11-19 16:19:43.662433+00 f t SUBTOTAL 0.00 1 12858 \N +516793 2025-11-19 16:19:43.664477+00 2025-11-19 16:19:43.664485+00 f t COSTO_SERVICIO 0.00 2 12858 \N +516794 2025-11-19 16:19:43.665815+00 2025-11-19 16:19:43.665821+00 f t DESCUENTO 0.00 3 12858 \N +516795 2025-11-19 16:19:43.666844+00 2025-11-19 16:19:43.66685+00 f t TOTAL 0.00 4 12858 \N +516796 2025-11-19 16:19:43.667966+00 2025-11-19 16:19:43.667972+00 f t ADELANTO 0.00 5 12858 \N +508387 2025-11-18 04:18:54.938508+00 2025-11-18 04:18:54.938517+00 f t SUBTOTAL 0.00 1 12662 \N +508388 2025-11-18 04:18:54.940493+00 2025-11-18 04:18:54.940502+00 f t COSTO_SERVICIO 0.00 2 12662 \N +508389 2025-11-18 04:18:54.941737+00 2025-11-18 04:18:54.941743+00 f t DESCUENTO 0.00 3 12662 \N +508390 2025-11-18 04:18:54.943195+00 2025-11-18 04:18:54.943203+00 f t TOTAL 0.00 4 12662 \N +508391 2025-11-18 04:18:54.944419+00 2025-11-18 04:18:54.944427+00 f t ADELANTO 0.00 5 12662 \N +508422 2025-11-18 05:31:20.000134+00 2025-11-18 05:31:20.000141+00 f t SUBTOTAL 55000.00 1 12663 \N +508423 2025-11-18 05:31:20.00185+00 2025-11-18 05:31:20.001856+00 f t COSTO_SERVICIO 0.00 2 12663 \N +508424 2025-11-18 05:31:20.003408+00 2025-11-18 05:31:20.003415+00 f t DESCUENTO 0.00 3 12663 \N +508425 2025-11-18 05:31:20.006308+00 2025-11-18 05:31:20.006315+00 f t TOTAL 55000.00 4 12663 \N +508426 2025-11-18 05:31:20.007668+00 2025-11-18 05:31:20.007676+00 f t ADELANTO 11000.00 5 12663 \N +517702 2025-11-19 18:59:32.175191+00 2025-11-19 18:59:32.1752+00 f t SUBTOTAL 46000.00 1 12880 \N +517703 2025-11-19 18:59:32.17683+00 2025-11-19 18:59:32.176836+00 f t COSTO_SERVICIO 0.00 2 12880 \N +517704 2025-11-19 18:59:32.177936+00 2025-11-19 18:59:32.177942+00 f t DESCUENTO 0.00 3 12880 \N +517705 2025-11-19 18:59:32.178785+00 2025-11-19 18:59:32.17879+00 f t TOTAL 46000.00 4 12880 \N +517706 2025-11-19 18:59:32.179757+00 2025-11-19 18:59:32.179763+00 f t ADELANTO 11000.00 5 12880 \N +508452 2025-11-18 06:05:32.041615+00 2025-11-18 06:05:32.041627+00 f t SUBTOTAL 0.00 1 12664 \N +508453 2025-11-18 06:05:32.044693+00 2025-11-18 06:05:32.044705+00 f t COSTO_SERVICIO 0.00 2 12664 \N +508454 2025-11-18 06:05:32.046697+00 2025-11-18 06:05:32.046705+00 f t DESCUENTO 0.00 3 12664 \N +508455 2025-11-18 06:05:32.048339+00 2025-11-18 06:05:32.048348+00 f t TOTAL 0.00 4 12664 \N +508456 2025-11-18 06:05:32.049769+00 2025-11-18 06:05:32.049777+00 f t ADELANTO 0.00 5 12664 \N +512692 2025-11-19 00:32:45.819877+00 2025-11-19 00:32:45.819888+00 f t SUBTOTAL 0.00 1 12764 \N +512693 2025-11-19 00:32:45.821358+00 2025-11-19 00:32:45.821366+00 f t COSTO_SERVICIO 0.00 2 12764 \N +512694 2025-11-19 00:32:45.82323+00 2025-11-19 00:32:45.823238+00 f t DESCUENTO 0.00 3 12764 \N +512695 2025-11-19 00:32:45.824491+00 2025-11-19 00:32:45.824499+00 f t TOTAL 0.00 4 12764 \N +512696 2025-11-19 00:32:45.825554+00 2025-11-19 00:32:45.825561+00 f t ADELANTO 0.00 5 12764 \N +508527 2025-11-18 06:34:24.268417+00 2025-11-18 06:34:24.268426+00 f t SUBTOTAL 55000.00 1 12665 \N +508528 2025-11-18 06:34:24.270181+00 2025-11-18 06:34:24.270189+00 f t COSTO_SERVICIO 0.00 2 12665 \N +508529 2025-11-18 06:34:24.271634+00 2025-11-18 06:34:24.271643+00 f t DESCUENTO 0.00 3 12665 \N +508530 2025-11-18 06:34:24.272905+00 2025-11-18 06:34:24.27291+00 f t TOTAL 55000.00 4 12665 \N +508531 2025-11-18 06:34:24.274077+00 2025-11-18 06:34:24.274083+00 f t ADELANTO 11000.00 5 12665 \N +537692 2025-11-24 04:43:06.888027+00 2025-11-24 04:43:06.888036+00 f t SUBTOTAL 46000.00 1 13353 \N +537693 2025-11-24 04:43:06.890251+00 2025-11-24 04:43:06.890261+00 f t COSTO_SERVICIO 0.00 2 13353 \N +525177 2025-11-21 01:19:15.67541+00 2025-11-21 01:19:15.675417+00 f t SUBTOTAL 55000.00 1 13058 \N +525178 2025-11-21 01:19:15.677066+00 2025-11-21 01:19:15.677073+00 f t COSTO_SERVICIO 0.00 2 13058 \N +525179 2025-11-21 01:19:15.678139+00 2025-11-21 01:19:15.678144+00 f t DESCUENTO 0.00 3 13058 \N +525180 2025-11-21 01:19:15.679159+00 2025-11-21 01:19:15.679164+00 f t TOTAL 55000.00 4 13058 \N +525181 2025-11-21 01:19:15.680117+00 2025-11-21 01:19:15.680122+00 f t ADELANTO 11000.00 5 13058 \N +537694 2025-11-24 04:43:06.891926+00 2025-11-24 04:43:06.891934+00 f t DESCUENTO 0.00 3 13353 \N +537695 2025-11-24 04:43:06.893308+00 2025-11-24 04:43:06.893315+00 f t TOTAL 46000.00 4 13353 \N +537696 2025-11-24 04:43:06.894786+00 2025-11-24 04:43:06.894792+00 f t ADELANTO 11000.00 5 13353 \N +513457 2025-11-19 02:50:09.494833+00 2025-11-19 02:50:09.494847+00 f t SUBTOTAL 0.00 1 12781 \N +513458 2025-11-19 02:50:09.497421+00 2025-11-19 02:50:09.497433+00 f t COSTO_SERVICIO 0.00 2 12781 \N +513459 2025-11-19 02:50:09.499348+00 2025-11-19 02:50:09.499359+00 f t DESCUENTO 0.00 3 12781 \N +513460 2025-11-19 02:50:09.501344+00 2025-11-19 02:50:09.501356+00 f t TOTAL 0.00 4 12781 \N +513461 2025-11-19 02:50:09.5031+00 2025-11-19 02:50:09.503111+00 f t ADELANTO 0.00 5 12781 \N +508572 2025-11-18 07:16:34.086868+00 2025-11-18 07:16:34.08688+00 f t SUBTOTAL 0.00 1 12666 \N +508573 2025-11-18 07:16:34.088812+00 2025-11-18 07:16:34.088821+00 f t COSTO_SERVICIO 0.00 2 12666 \N +508574 2025-11-18 07:16:34.090073+00 2025-11-18 07:16:34.090081+00 f t DESCUENTO 0.00 3 12666 \N +508575 2025-11-18 07:16:34.091387+00 2025-11-18 07:16:34.091394+00 f t TOTAL 0.00 4 12666 \N +508576 2025-11-18 07:16:34.092594+00 2025-11-18 07:16:34.092602+00 f t ADELANTO 0.00 5 12666 \N +508582 2025-11-18 08:01:15.474314+00 2025-11-18 08:01:15.474323+00 f t SUBTOTAL 0.00 1 12667 \N +508583 2025-11-18 08:01:15.475727+00 2025-11-18 08:01:15.475732+00 f t COSTO_SERVICIO 0.00 2 12667 \N +508584 2025-11-18 08:01:15.476674+00 2025-11-18 08:01:15.476679+00 f t DESCUENTO 0.00 3 12667 \N +508585 2025-11-18 08:01:15.477545+00 2025-11-18 08:01:15.477551+00 f t TOTAL 0.00 4 12667 \N +508586 2025-11-18 08:01:15.478596+00 2025-11-18 08:01:15.478603+00 f t ADELANTO 0.00 5 12667 \N +526072 2025-11-21 10:57:53.885892+00 2025-11-21 10:57:53.885901+00 f t SUBTOTAL 0.00 1 13082 \N +526073 2025-11-21 10:57:53.88717+00 2025-11-21 10:57:53.887177+00 f t COSTO_SERVICIO 0.00 2 13082 \N +526074 2025-11-21 10:57:53.888053+00 2025-11-21 10:57:53.888058+00 f t DESCUENTO 0.00 3 13082 \N +526075 2025-11-21 10:57:53.888922+00 2025-11-21 10:57:53.888927+00 f t TOTAL 0.00 4 13082 \N +526076 2025-11-21 10:57:53.889748+00 2025-11-21 10:57:53.889753+00 f t ADELANTO 0.00 5 13082 \N +515052 2025-11-19 12:17:55.380367+00 2025-11-19 12:17:55.380377+00 f t SUBTOTAL 133000.00 1 12817 \N +515053 2025-11-19 12:17:55.382239+00 2025-11-19 12:17:55.382249+00 f t COSTO_SERVICIO 0.00 2 12817 \N +515054 2025-11-19 12:17:55.383666+00 2025-11-19 12:17:55.383674+00 f t DESCUENTO 9200.00 3 12817 \N +515055 2025-11-19 12:17:55.384992+00 2025-11-19 12:17:55.385001+00 f t TOTAL 123800.00 4 12817 \N +515056 2025-11-19 12:17:55.386251+00 2025-11-19 12:17:55.38626+00 f t ADELANTO 31000.00 5 12817 \N +508612 2025-11-18 09:44:31.102801+00 2025-11-18 09:44:31.102807+00 f t SUBTOTAL 54000.00 1 12668 \N +508613 2025-11-18 09:44:31.104561+00 2025-11-18 09:44:31.104573+00 f t COSTO_SERVICIO 0.00 2 12668 \N +508614 2025-11-18 09:44:31.10586+00 2025-11-18 09:44:31.105866+00 f t DESCUENTO 0.00 3 12668 \N +508615 2025-11-18 09:44:31.107059+00 2025-11-18 09:44:31.107065+00 f t TOTAL 54000.00 4 12668 \N +508616 2025-11-18 09:44:31.108085+00 2025-11-18 09:44:31.10809+00 f t ADELANTO 13500.00 5 12668 \N +515397 2025-11-19 13:00:13.591508+00 2025-11-19 13:00:13.591522+00 f t SUBTOTAL 70000.00 1 12823 \N +515398 2025-11-19 13:00:13.594501+00 2025-11-19 13:00:13.594513+00 f t COSTO_SERVICIO 0.00 2 12823 \N +515399 2025-11-19 13:00:13.596626+00 2025-11-19 13:00:13.596637+00 f t DESCUENTO 0.00 3 12823 \N +515400 2025-11-19 13:00:13.598549+00 2025-11-19 13:00:13.598558+00 f t TOTAL 70000.00 4 12823 \N +515401 2025-11-19 13:00:13.602368+00 2025-11-19 13:00:13.602382+00 f t ADELANTO 19000.00 5 12823 \N +515717 2025-11-19 13:29:31.693772+00 2025-11-19 13:29:31.69378+00 f t SUBTOTAL 78000.00 1 12775 \N +515718 2025-11-19 13:29:31.695797+00 2025-11-19 13:29:31.695805+00 f t COSTO_SERVICIO 0.00 2 12775 \N +515719 2025-11-19 13:29:31.697188+00 2025-11-19 13:29:31.697196+00 f t DESCUENTO 0.00 3 12775 \N +515720 2025-11-19 13:29:31.698445+00 2025-11-19 13:29:31.698455+00 f t TOTAL 78000.00 4 12775 \N +515721 2025-11-19 13:29:31.699557+00 2025-11-19 13:29:31.699562+00 f t ADELANTO 21500.00 5 12775 \N +508647 2025-11-18 09:50:34.296765+00 2025-11-18 09:50:34.296775+00 f t SUBTOTAL 70000.00 1 12669 \N +508648 2025-11-18 09:50:34.298807+00 2025-11-18 09:50:34.298815+00 f t COSTO_SERVICIO 0.00 2 12669 \N +508649 2025-11-18 09:50:34.300136+00 2025-11-18 09:50:34.300143+00 f t DESCUENTO 0.00 3 12669 \N +508650 2025-11-18 09:50:34.301606+00 2025-11-18 09:50:34.301615+00 f t TOTAL 70000.00 4 12669 \N +508651 2025-11-18 09:50:34.302921+00 2025-11-18 09:50:34.302929+00 f t ADELANTO 19000.00 5 12669 \N +527832 2025-11-21 16:07:06.80879+00 2025-11-21 16:07:06.808804+00 f t SUBTOTAL 0.00 1 13121 \N +527833 2025-11-21 16:07:06.811272+00 2025-11-21 16:07:06.811281+00 f t COSTO_SERVICIO 0.00 2 13121 \N +527834 2025-11-21 16:07:06.813226+00 2025-11-21 16:07:06.813233+00 f t DESCUENTO 0.00 3 13121 \N +527835 2025-11-21 16:07:06.814397+00 2025-11-21 16:07:06.814402+00 f t TOTAL 0.00 4 13121 \N +527836 2025-11-21 16:07:06.815587+00 2025-11-21 16:07:06.815592+00 f t ADELANTO 0.00 5 13121 \N +508722 2025-11-18 09:52:38.410586+00 2025-11-18 09:52:38.410593+00 f t SUBTOTAL 70000.00 1 12670 \N +508723 2025-11-18 09:52:38.412243+00 2025-11-18 09:52:38.412249+00 f t COSTO_SERVICIO 0.00 2 12670 \N +508724 2025-11-18 09:52:38.413287+00 2025-11-18 09:52:38.413293+00 f t DESCUENTO 0.00 3 12670 \N +508725 2025-11-18 09:52:38.41418+00 2025-11-18 09:52:38.414185+00 f t TOTAL 70000.00 4 12670 \N +508726 2025-11-18 09:52:38.415256+00 2025-11-18 09:52:38.415263+00 f t ADELANTO 19000.00 5 12670 \N +518622 2025-11-19 20:56:15.593412+00 2025-11-19 20:56:15.59342+00 f t SUBTOTAL 101000.00 1 12875 \N +518623 2025-11-19 20:56:15.595417+00 2025-11-19 20:56:15.595423+00 f t COSTO_SERVICIO 0.00 2 12875 \N +518624 2025-11-19 20:56:15.596629+00 2025-11-19 20:56:15.596635+00 f t DESCUENTO 10100.00 3 12875 \N +518625 2025-11-19 20:56:15.597723+00 2025-11-19 20:56:15.597729+00 f t TOTAL 90900.00 4 12875 \N +518626 2025-11-19 20:56:15.598689+00 2025-11-19 20:56:15.598695+00 f t ADELANTO 22000.00 5 12875 \N +548667 2025-11-25 21:23:52.338818+00 2025-11-25 21:23:52.338824+00 f t SUBTOTAL 30000.00 1 13605 \N +548668 2025-11-25 21:23:52.340341+00 2025-11-25 21:23:52.340347+00 f t COSTO_SERVICIO 0.00 2 13605 \N +548669 2025-11-25 21:23:52.341297+00 2025-11-25 21:23:52.341302+00 f t DESCUENTO 0.00 3 13605 \N +548670 2025-11-25 21:23:52.342143+00 2025-11-25 21:23:52.342148+00 f t TOTAL 30000.00 4 13605 \N +536467 2025-11-23 20:39:55.353594+00 2025-11-23 20:39:55.353601+00 f t SUBTOTAL 55000.00 1 13324 \N +536468 2025-11-23 20:39:55.355364+00 2025-11-23 20:39:55.35537+00 f t COSTO_SERVICIO 0.00 2 13324 \N +536469 2025-11-23 20:39:55.356496+00 2025-11-23 20:39:55.356501+00 f t DESCUENTO 0.00 3 13324 \N +536470 2025-11-23 20:39:55.357543+00 2025-11-23 20:39:55.357548+00 f t TOTAL 55000.00 4 13324 \N +536471 2025-11-23 20:39:55.358553+00 2025-11-23 20:39:55.358558+00 f t ADELANTO 11000.00 5 13324 \N +508827 2025-11-18 09:58:01.650142+00 2025-11-18 09:58:01.650151+00 f t SUBTOTAL 46000.00 1 12671 \N +508828 2025-11-18 09:58:01.651764+00 2025-11-18 09:58:01.651771+00 f t COSTO_SERVICIO 0.00 2 12671 \N +508829 2025-11-18 09:58:01.652954+00 2025-11-18 09:58:01.65296+00 f t DESCUENTO 0.00 3 12671 \N +508830 2025-11-18 09:58:01.654201+00 2025-11-18 09:58:01.654209+00 f t TOTAL 46000.00 4 12671 \N +508831 2025-11-18 09:58:01.655595+00 2025-11-18 09:58:01.655602+00 f t ADELANTO 11000.00 5 12671 \N +525537 2025-11-21 02:08:37.62177+00 2025-11-21 02:08:37.621784+00 f t SUBTOTAL 54000.00 1 13066 \N +525538 2025-11-21 02:08:37.623573+00 2025-11-21 02:08:37.623578+00 f t COSTO_SERVICIO 0.00 2 13066 \N +525539 2025-11-21 02:08:37.624678+00 2025-11-21 02:08:37.624685+00 f t DESCUENTO 0.00 3 13066 \N +525540 2025-11-21 02:08:37.625884+00 2025-11-21 02:08:37.62589+00 f t TOTAL 54000.00 4 13066 \N +525541 2025-11-21 02:08:37.626954+00 2025-11-21 02:08:37.626959+00 f t ADELANTO 13500.00 5 13066 \N +526082 2025-11-21 10:58:11.288198+00 2025-11-21 10:58:11.288208+00 f t SUBTOTAL 0.00 1 13083 \N +526083 2025-11-21 10:58:11.289612+00 2025-11-21 10:58:11.289618+00 f t COSTO_SERVICIO 0.00 2 13083 \N +526084 2025-11-21 10:58:11.290564+00 2025-11-21 10:58:11.29057+00 f t DESCUENTO 0.00 3 13083 \N +526085 2025-11-21 10:58:11.291369+00 2025-11-21 10:58:11.291374+00 f t TOTAL 0.00 4 13083 \N +526086 2025-11-21 10:58:11.292194+00 2025-11-21 10:58:11.292199+00 f t ADELANTO 0.00 5 13083 \N +508877 2025-11-18 10:00:18.233408+00 2025-11-18 10:00:18.233417+00 f t SUBTOTAL 55000.00 1 12672 \N +508878 2025-11-18 10:00:18.235773+00 2025-11-18 10:00:18.235793+00 f t COSTO_SERVICIO 0.00 2 12672 \N +508879 2025-11-18 10:00:18.243803+00 2025-11-18 10:00:18.243815+00 f t DESCUENTO 0.00 3 12672 \N +508880 2025-11-18 10:00:18.246723+00 2025-11-18 10:00:18.246736+00 f t TOTAL 55000.00 4 12672 \N +508881 2025-11-18 10:00:18.249439+00 2025-11-18 10:00:18.249451+00 f t ADELANTO 11000.00 5 12672 \N +508932 2025-11-18 10:11:42.61564+00 2025-11-18 10:11:42.615649+00 f t SUBTOTAL 88000.00 1 12673 \N +508933 2025-11-18 10:11:42.617156+00 2025-11-18 10:11:42.617163+00 f t COSTO_SERVICIO 0.00 2 12673 \N +508934 2025-11-18 10:11:42.618327+00 2025-11-18 10:11:42.618333+00 f t DESCUENTO 0.00 3 12673 \N +508935 2025-11-18 10:11:42.619305+00 2025-11-18 10:11:42.619312+00 f t TOTAL 88000.00 4 12673 \N +508936 2025-11-18 10:11:42.620253+00 2025-11-18 10:11:42.620258+00 f t ADELANTO 13000.00 5 12673 \N +508972 2025-11-18 10:50:24.624717+00 2025-11-18 10:50:24.624725+00 f t SUBTOTAL 54000.00 1 12674 \N +508973 2025-11-18 10:50:24.626659+00 2025-11-18 10:50:24.62667+00 f t COSTO_SERVICIO 0.00 2 12674 \N +508974 2025-11-18 10:50:24.628367+00 2025-11-18 10:50:24.628378+00 f t DESCUENTO 0.00 3 12674 \N +508975 2025-11-18 10:50:24.630152+00 2025-11-18 10:50:24.630163+00 f t TOTAL 54000.00 4 12674 \N +508976 2025-11-18 10:50:24.631946+00 2025-11-18 10:50:24.631955+00 f t ADELANTO 13500.00 5 12674 \N +529002 2025-11-21 19:33:04.394465+00 2025-11-21 19:33:04.394476+00 f t SUBTOTAL 46000.00 1 13152 \N +529003 2025-11-21 19:33:04.396583+00 2025-11-21 19:33:04.396593+00 f t COSTO_SERVICIO 0.00 2 13152 \N +529004 2025-11-21 19:33:04.39804+00 2025-11-21 19:33:04.398048+00 f t DESCUENTO 0.00 3 13152 \N +529005 2025-11-21 19:33:04.399181+00 2025-11-21 19:33:04.399189+00 f t TOTAL 46000.00 4 13152 \N +529006 2025-11-21 19:33:04.400463+00 2025-11-21 19:33:04.40047+00 f t ADELANTO 11000.00 5 13152 \N +529192 2025-11-21 19:40:59.903403+00 2025-11-21 19:40:59.90341+00 f t SUBTOTAL 222000.00 1 13154 \N +529193 2025-11-21 19:40:59.905093+00 2025-11-21 19:40:59.905099+00 f t COSTO_SERVICIO 0.00 2 13154 \N +529194 2025-11-21 19:40:59.906138+00 2025-11-21 19:40:59.906143+00 f t DESCUENTO 9200.00 3 13154 \N +529195 2025-11-21 19:40:59.907198+00 2025-11-21 19:40:59.907204+00 f t TOTAL 212800.00 4 13154 \N +529196 2025-11-21 19:40:59.908163+00 2025-11-21 19:40:59.908168+00 f t ADELANTO 56000.00 5 13154 \N +529312 2025-11-21 20:32:52.265065+00 2025-11-21 20:32:52.265074+00 f t SUBTOTAL 0.00 1 13160 \N +529313 2025-11-21 20:32:52.266935+00 2025-11-21 20:32:52.266944+00 f t COSTO_SERVICIO 0.00 2 13160 \N +529314 2025-11-21 20:32:52.268142+00 2025-11-21 20:32:52.268147+00 f t DESCUENTO 0.00 3 13160 \N +529315 2025-11-21 20:32:52.269271+00 2025-11-21 20:32:52.269277+00 f t TOTAL 0.00 4 13160 \N +529316 2025-11-21 20:32:52.270316+00 2025-11-21 20:32:52.270321+00 f t ADELANTO 0.00 5 13160 \N +509027 2025-11-18 11:09:51.284638+00 2025-11-18 11:09:51.284646+00 f t SUBTOTAL 0.00 1 12676 \N +509028 2025-11-18 11:09:51.286048+00 2025-11-18 11:09:51.286054+00 f t COSTO_SERVICIO 0.00 2 12676 \N +509029 2025-11-18 11:09:51.28698+00 2025-11-18 11:09:51.286985+00 f t DESCUENTO 0.00 3 12676 \N +509030 2025-11-18 11:09:51.288153+00 2025-11-18 11:09:51.288158+00 f t TOTAL 0.00 4 12676 \N +509031 2025-11-18 11:09:51.288994+00 2025-11-18 11:09:51.289+00 f t ADELANTO 0.00 5 12676 \N +518382 2025-11-19 20:40:45.697268+00 2025-11-19 20:40:45.697276+00 f t SUBTOTAL 46000.00 1 12897 \N +518383 2025-11-19 20:40:45.698791+00 2025-11-19 20:40:45.698797+00 f t COSTO_SERVICIO 0.00 2 12897 \N +518384 2025-11-19 20:40:45.699969+00 2025-11-19 20:40:45.699975+00 f t DESCUENTO 0.00 3 12897 \N +518385 2025-11-19 20:40:45.701049+00 2025-11-19 20:40:45.701055+00 f t TOTAL 46000.00 4 12897 \N +518386 2025-11-19 20:40:45.702138+00 2025-11-19 20:40:45.702144+00 f t ADELANTO 11000.00 5 12897 \N +509057 2025-11-18 11:11:35.683122+00 2025-11-18 11:11:35.683144+00 f t SUBTOTAL 70000.00 1 12677 \N +509058 2025-11-18 11:11:35.684678+00 2025-11-18 11:11:35.684682+00 f t COSTO_SERVICIO 0.00 2 12677 \N +509059 2025-11-18 11:11:35.685851+00 2025-11-18 11:11:35.685857+00 f t DESCUENTO 0.00 3 12677 \N +509060 2025-11-18 11:11:35.686831+00 2025-11-18 11:11:35.686836+00 f t TOTAL 70000.00 4 12677 \N +509061 2025-11-18 11:11:35.687797+00 2025-11-18 11:11:35.687802+00 f t ADELANTO 19000.00 5 12677 \N +529932 2025-11-21 22:57:58.072853+00 2025-11-21 22:57:58.072862+00 f t SUBTOTAL 0.00 1 13172 \N +529933 2025-11-21 22:57:58.07437+00 2025-11-21 22:57:58.074378+00 f t COSTO_SERVICIO 0.00 2 13172 \N +518762 2025-11-19 21:22:09.143932+00 2025-11-19 21:22:09.14394+00 f t SUBTOTAL 46000.00 1 12906 \N +518763 2025-11-19 21:22:09.145507+00 2025-11-19 21:22:09.145513+00 f t COSTO_SERVICIO 0.00 2 12906 \N +518764 2025-11-19 21:22:09.146716+00 2025-11-19 21:22:09.146722+00 f t DESCUENTO 0.00 3 12906 \N +518765 2025-11-19 21:22:09.148122+00 2025-11-19 21:22:09.14813+00 f t TOTAL 46000.00 4 12906 \N +518766 2025-11-19 21:22:09.149329+00 2025-11-19 21:22:09.149335+00 f t ADELANTO 11000.00 5 12906 \N +529934 2025-11-21 22:57:58.075417+00 2025-11-21 22:57:58.075423+00 f t DESCUENTO 0.00 3 13172 \N +529935 2025-11-21 22:57:58.076451+00 2025-11-21 22:57:58.076457+00 f t TOTAL 0.00 4 13172 \N +529936 2025-11-21 22:57:58.077337+00 2025-11-21 22:57:58.077342+00 f t ADELANTO 0.00 5 13172 \N +511912 2025-11-18 21:47:27.399703+00 2025-11-18 21:47:27.399713+00 f t SUBTOTAL 0.00 1 12744 \N +511913 2025-11-18 21:47:27.400979+00 2025-11-18 21:47:27.400985+00 f t COSTO_SERVICIO 0.00 2 12744 \N +511914 2025-11-18 21:47:27.401838+00 2025-11-18 21:47:27.401844+00 f t DESCUENTO 0.00 3 12744 \N +509087 2025-11-18 11:28:23.90393+00 2025-11-18 11:28:23.903936+00 f t SUBTOTAL 54000.00 1 12678 \N +509088 2025-11-18 11:28:23.905361+00 2025-11-18 11:28:23.905366+00 f t COSTO_SERVICIO 0.00 2 12678 \N +509089 2025-11-18 11:28:23.9064+00 2025-11-18 11:28:23.906405+00 f t DESCUENTO 0.00 3 12678 \N +509090 2025-11-18 11:28:23.907271+00 2025-11-18 11:28:23.907276+00 f t TOTAL 54000.00 4 12678 \N +509091 2025-11-18 11:28:23.908179+00 2025-11-18 11:28:23.908184+00 f t ADELANTO 13500.00 5 12678 \N +511915 2025-11-18 21:47:27.402772+00 2025-11-18 21:47:27.402779+00 f t TOTAL 0.00 4 12744 \N +511916 2025-11-18 21:47:27.40375+00 2025-11-18 21:47:27.403756+00 f t ADELANTO 0.00 5 12744 \N +548671 2025-11-25 21:23:52.343044+00 2025-11-25 21:23:52.343049+00 f t ADELANTO 30000.00 5 13605 \N +524477 2025-11-20 23:55:04.823539+00 2025-11-20 23:55:04.823551+00 f t SUBTOTAL 54000.00 1 13048 \N +524478 2025-11-20 23:55:04.826002+00 2025-11-20 23:55:04.826011+00 f t COSTO_SERVICIO 0.00 2 13048 \N +524479 2025-11-20 23:55:04.828031+00 2025-11-20 23:55:04.828039+00 f t DESCUENTO 0.00 3 13048 \N +524480 2025-11-20 23:55:04.82977+00 2025-11-20 23:55:04.829783+00 f t TOTAL 54000.00 4 13048 \N +524481 2025-11-20 23:55:04.832533+00 2025-11-20 23:55:04.832547+00 f t ADELANTO 13500.00 5 13048 \N +525187 2025-11-21 01:19:27.630753+00 2025-11-21 01:19:27.630766+00 f t SUBTOTAL 0.00 1 13059 \N +525188 2025-11-21 01:19:27.633148+00 2025-11-21 01:19:27.633158+00 f t COSTO_SERVICIO 0.00 2 13059 \N +525189 2025-11-21 01:19:27.634415+00 2025-11-21 01:19:27.634421+00 f t DESCUENTO 0.00 3 13059 \N +525190 2025-11-21 01:19:27.635587+00 2025-11-21 01:19:27.635596+00 f t TOTAL 0.00 4 13059 \N +525191 2025-11-21 01:19:27.6368+00 2025-11-21 01:19:27.636807+00 f t ADELANTO 0.00 5 13059 \N +525547 2025-11-21 02:09:24.586691+00 2025-11-21 02:09:24.5867+00 f t SUBTOTAL 0.00 1 13067 \N +525548 2025-11-21 02:09:24.587964+00 2025-11-21 02:09:24.587969+00 f t COSTO_SERVICIO 0.00 2 13067 \N +525549 2025-11-21 02:09:24.588838+00 2025-11-21 02:09:24.588844+00 f t DESCUENTO 0.00 3 13067 \N +525550 2025-11-21 02:09:24.58989+00 2025-11-21 02:09:24.589896+00 f t TOTAL 0.00 4 13067 \N +525551 2025-11-21 02:09:24.590744+00 2025-11-21 02:09:24.59075+00 f t ADELANTO 0.00 5 13067 \N +509152 2025-11-18 11:32:24.968527+00 2025-11-18 11:32:24.968533+00 f t SUBTOTAL 78000.00 1 12679 \N +509153 2025-11-18 11:32:24.970209+00 2025-11-18 11:32:24.970215+00 f t COSTO_SERVICIO 0.00 2 12679 \N +509154 2025-11-18 11:32:24.971506+00 2025-11-18 11:32:24.971511+00 f t DESCUENTO 0.00 3 12679 \N +509155 2025-11-18 11:32:24.972776+00 2025-11-18 11:32:24.972781+00 f t TOTAL 78000.00 4 12679 \N +509156 2025-11-18 11:32:24.9739+00 2025-11-18 11:32:24.973905+00 f t ADELANTO 21500.00 5 12679 \N +514887 2025-11-19 12:04:31.710291+00 2025-11-19 12:04:31.710298+00 f t SUBTOTAL 46000.00 1 12814 \N +514888 2025-11-19 12:04:31.71217+00 2025-11-19 12:04:31.712176+00 f t COSTO_SERVICIO 0.00 2 12814 \N +514889 2025-11-19 12:04:31.713288+00 2025-11-19 12:04:31.713293+00 f t DESCUENTO 0.00 3 12814 \N +514890 2025-11-19 12:04:31.714339+00 2025-11-19 12:04:31.714344+00 f t TOTAL 46000.00 4 12814 \N +514891 2025-11-19 12:04:31.715336+00 2025-11-19 12:04:31.715342+00 f t ADELANTO 11000.00 5 12814 \N +509212 2025-11-18 12:16:45.021143+00 2025-11-18 12:16:45.02115+00 f t SUBTOTAL 54000.00 1 12680 \N +509213 2025-11-18 12:16:45.022792+00 2025-11-18 12:16:45.022798+00 f t COSTO_SERVICIO 0.00 2 12680 \N +509214 2025-11-18 12:16:45.024012+00 2025-11-18 12:16:45.024018+00 f t DESCUENTO 0.00 3 12680 \N +509215 2025-11-18 12:16:45.025115+00 2025-11-18 12:16:45.02512+00 f t TOTAL 54000.00 4 12680 \N +509216 2025-11-18 12:16:45.026278+00 2025-11-18 12:16:45.026284+00 f t ADELANTO 13500.00 5 12680 \N +516182 2025-11-19 14:18:59.406483+00 2025-11-19 14:18:59.406491+00 f t SUBTOTAL 0.00 1 12838 \N +516183 2025-11-19 14:18:59.407838+00 2025-11-19 14:18:59.407844+00 f t COSTO_SERVICIO 0.00 2 12838 \N +516184 2025-11-19 14:18:59.409047+00 2025-11-19 14:18:59.409053+00 f t DESCUENTO 0.00 3 12838 \N +516185 2025-11-19 14:18:59.409977+00 2025-11-19 14:18:59.409983+00 f t TOTAL 0.00 4 12838 \N +516186 2025-11-19 14:18:59.411113+00 2025-11-19 14:18:59.411119+00 f t ADELANTO 0.00 5 12838 \N +516347 2025-11-19 14:32:19.522847+00 2025-11-19 14:32:19.522855+00 f t SUBTOTAL 140000.00 1 12843 \N +516348 2025-11-19 14:32:19.524573+00 2025-11-19 14:32:19.52458+00 f t COSTO_SERVICIO 0.00 2 12843 \N +516349 2025-11-19 14:32:19.525845+00 2025-11-19 14:32:19.525852+00 f t DESCUENTO 9200.00 3 12843 \N +516350 2025-11-19 14:32:19.526863+00 2025-11-19 14:32:19.526869+00 f t TOTAL 130800.00 4 12843 \N +516351 2025-11-19 14:32:19.528011+00 2025-11-19 14:32:19.528017+00 f t ADELANTO 38000.00 5 12843 \N +516662 2025-11-19 15:29:26.117645+00 2025-11-19 15:29:26.117652+00 f t SUBTOTAL 80500.00 1 12854 \N +516663 2025-11-19 15:29:26.119359+00 2025-11-19 15:29:26.119364+00 f t COSTO_SERVICIO 0.00 2 12854 \N +516664 2025-11-19 15:29:26.120597+00 2025-11-19 15:29:26.120604+00 f t DESCUENTO 0.00 3 12854 \N +516665 2025-11-19 15:29:26.121959+00 2025-11-19 15:29:26.121964+00 f t TOTAL 80500.00 4 12854 \N +516666 2025-11-19 15:29:26.122973+00 2025-11-19 15:29:26.122978+00 f t ADELANTO 18000.00 5 12854 \N +517727 2025-11-19 19:02:16.018641+00 2025-11-19 19:02:16.018649+00 f t SUBTOTAL 46000.00 1 12881 \N +517728 2025-11-19 19:02:16.020483+00 2025-11-19 19:02:16.02049+00 f t COSTO_SERVICIO 0.00 2 12881 \N +517729 2025-11-19 19:02:16.021847+00 2025-11-19 19:02:16.021855+00 f t DESCUENTO 0.00 3 12881 \N +517730 2025-11-19 19:02:16.023115+00 2025-11-19 19:02:16.023124+00 f t TOTAL 46000.00 4 12881 \N +517731 2025-11-19 19:02:16.02478+00 2025-11-19 19:02:16.024787+00 f t ADELANTO 11000.00 5 12881 \N +518562 2025-11-19 20:48:29.244298+00 2025-11-19 20:48:29.244306+00 f t SUBTOTAL 46000.00 1 12900 \N +518563 2025-11-19 20:48:29.245995+00 2025-11-19 20:48:29.246001+00 f t COSTO_SERVICIO 0.00 2 12900 \N +518564 2025-11-19 20:48:29.24731+00 2025-11-19 20:48:29.247317+00 f t DESCUENTO 0.00 3 12900 \N +509322 2025-11-18 12:40:29.923863+00 2025-11-18 12:40:29.923872+00 f t SUBTOTAL 0.00 1 12682 \N +509323 2025-11-18 12:40:29.925816+00 2025-11-18 12:40:29.925823+00 f t COSTO_SERVICIO 0.00 2 12682 \N +509324 2025-11-18 12:40:29.926964+00 2025-11-18 12:40:29.926969+00 f t DESCUENTO 0.00 3 12682 \N +509325 2025-11-18 12:40:29.928175+00 2025-11-18 12:40:29.92818+00 f t TOTAL 0.00 4 12682 \N +509326 2025-11-18 12:40:29.929238+00 2025-11-18 12:40:29.929244+00 f t ADELANTO 0.00 5 12682 \N +518565 2025-11-19 20:48:29.248472+00 2025-11-19 20:48:29.248478+00 f t TOTAL 46000.00 4 12900 \N +518566 2025-11-19 20:48:29.249392+00 2025-11-19 20:48:29.249397+00 f t ADELANTO 11000.00 5 12900 \N +518772 2025-11-19 21:31:26.456521+00 2025-11-19 21:31:26.456531+00 f t SUBTOTAL 0.00 1 12907 \N +518773 2025-11-19 21:31:26.458903+00 2025-11-19 21:31:26.458911+00 f t COSTO_SERVICIO 0.00 2 12907 \N +518774 2025-11-19 21:31:26.460366+00 2025-11-19 21:31:26.460375+00 f t DESCUENTO 0.00 3 12907 \N +518775 2025-11-19 21:31:26.461592+00 2025-11-19 21:31:26.461598+00 f t TOTAL 0.00 4 12907 \N +518776 2025-11-19 21:31:26.46294+00 2025-11-19 21:31:26.462946+00 f t ADELANTO 0.00 5 12907 \N +511917 2025-11-18 21:47:39.968038+00 2025-11-18 21:47:39.968045+00 f t SUBTOTAL 88000.00 1 12743 \N +511918 2025-11-18 21:47:39.969508+00 2025-11-18 21:47:39.969514+00 f t COSTO_SERVICIO 0.00 2 12743 \N +511919 2025-11-18 21:47:39.970482+00 2025-11-18 21:47:39.970488+00 f t DESCUENTO 0.00 3 12743 \N +511920 2025-11-18 21:47:39.971477+00 2025-11-18 21:47:39.971482+00 f t TOTAL 88000.00 4 12743 \N +511921 2025-11-18 21:47:39.972401+00 2025-11-18 21:47:39.972405+00 f t ADELANTO 13000.00 5 12743 \N +536477 2025-11-23 20:47:41.788899+00 2025-11-23 20:47:41.788909+00 f t SUBTOTAL 0.00 1 13325 \N +536478 2025-11-23 20:47:41.790517+00 2025-11-23 20:47:41.790524+00 f t COSTO_SERVICIO 0.00 2 13325 \N +536479 2025-11-23 20:47:41.791613+00 2025-11-23 20:47:41.791621+00 f t DESCUENTO 0.00 3 13325 \N +536480 2025-11-23 20:47:41.792787+00 2025-11-23 20:47:41.792792+00 f t TOTAL 0.00 4 13325 \N +536481 2025-11-23 20:47:41.793977+00 2025-11-23 20:47:41.793985+00 f t ADELANTO 0.00 5 13325 \N +513847 2025-11-19 04:36:12.883726+00 2025-11-19 04:36:12.883737+00 f t SUBTOTAL 69000.00 1 12791 \N +513848 2025-11-19 04:36:12.885856+00 2025-11-19 04:36:12.885863+00 f t COSTO_SERVICIO 0.00 2 12791 \N +513849 2025-11-19 04:36:12.887267+00 2025-11-19 04:36:12.887275+00 f t DESCUENTO 0.00 3 12791 \N +513850 2025-11-19 04:36:12.888691+00 2025-11-19 04:36:12.8887+00 f t TOTAL 69000.00 4 12791 \N +513851 2025-11-19 04:36:12.890029+00 2025-11-19 04:36:12.890035+00 f t ADELANTO 11000.00 5 12791 \N +509432 2025-11-18 14:44:59.227088+00 2025-11-18 14:44:59.227101+00 f t SUBTOTAL 0.00 1 12683 \N +509433 2025-11-18 14:44:59.228876+00 2025-11-18 14:44:59.228887+00 f t COSTO_SERVICIO 0.00 2 12683 \N +509434 2025-11-18 14:44:59.230528+00 2025-11-18 14:44:59.230537+00 f t DESCUENTO 0.00 3 12683 \N +509435 2025-11-18 14:44:59.232081+00 2025-11-18 14:44:59.232091+00 f t TOTAL 0.00 4 12683 \N +509436 2025-11-18 14:44:59.233281+00 2025-11-18 14:44:59.233289+00 f t ADELANTO 0.00 5 12683 \N +509472 2025-11-18 14:56:38.486252+00 2025-11-18 14:56:38.486259+00 f t SUBTOTAL 54000.00 1 12685 \N +509473 2025-11-18 14:56:38.487774+00 2025-11-18 14:56:38.48778+00 f t COSTO_SERVICIO 0.00 2 12685 \N +509474 2025-11-18 14:56:38.488846+00 2025-11-18 14:56:38.488851+00 f t DESCUENTO 0.00 3 12685 \N +509475 2025-11-18 14:56:38.48982+00 2025-11-18 14:56:38.489825+00 f t TOTAL 54000.00 4 12685 \N +509476 2025-11-18 14:56:38.490798+00 2025-11-18 14:56:38.490803+00 f t ADELANTO 13500.00 5 12685 \N +509477 2025-11-18 14:57:57.281518+00 2025-11-18 14:57:57.281525+00 f t SUBTOTAL 46000.00 1 12684 \N +509478 2025-11-18 14:57:57.283611+00 2025-11-18 14:57:57.283617+00 f t COSTO_SERVICIO 0.00 2 12684 \N +509479 2025-11-18 14:57:57.284977+00 2025-11-18 14:57:57.284982+00 f t DESCUENTO 0.00 3 12684 \N +509480 2025-11-18 14:57:57.286151+00 2025-11-18 14:57:57.286158+00 f t TOTAL 46000.00 4 12684 \N +509481 2025-11-18 14:57:57.287483+00 2025-11-18 14:57:57.287491+00 f t ADELANTO 11000.00 5 12684 \N +509487 2025-11-18 15:09:03.400731+00 2025-11-18 15:09:03.400744+00 f t SUBTOTAL 0.00 1 12686 \N +509488 2025-11-18 15:09:03.402891+00 2025-11-18 15:09:03.402903+00 f t COSTO_SERVICIO 0.00 2 12686 \N +509489 2025-11-18 15:09:03.404688+00 2025-11-18 15:09:03.404698+00 f t DESCUENTO 0.00 3 12686 \N +509490 2025-11-18 15:09:03.406533+00 2025-11-18 15:09:03.406542+00 f t TOTAL 0.00 4 12686 \N +509491 2025-11-18 15:09:03.408639+00 2025-11-18 15:09:03.408648+00 f t ADELANTO 0.00 5 12686 \N +516187 2025-11-19 14:19:41.444207+00 2025-11-19 14:19:41.444215+00 f t SUBTOTAL 102000.00 1 12830 \N +516188 2025-11-19 14:19:41.447509+00 2025-11-19 14:19:41.447516+00 f t COSTO_SERVICIO 0.00 2 12830 \N +516189 2025-11-19 14:19:41.449256+00 2025-11-19 14:19:41.449262+00 f t DESCUENTO 0.00 3 12830 \N +516190 2025-11-19 14:19:41.450851+00 2025-11-19 14:19:41.450857+00 f t TOTAL 102000.00 4 12830 \N +516191 2025-11-19 14:19:41.451954+00 2025-11-19 14:19:41.45196+00 f t ADELANTO 29500.00 5 12830 \N +516357 2025-11-19 14:41:39.31371+00 2025-11-19 14:41:39.313719+00 f t SUBTOTAL 0.00 1 12844 \N +516358 2025-11-19 14:41:39.315175+00 2025-11-19 14:41:39.315182+00 f t COSTO_SERVICIO 0.00 2 12844 \N +516359 2025-11-19 14:41:39.316147+00 2025-11-19 14:41:39.316152+00 f t DESCUENTO 0.00 3 12844 \N +516360 2025-11-19 14:41:39.317228+00 2025-11-19 14:41:39.317234+00 f t TOTAL 0.00 4 12844 \N +516361 2025-11-19 14:41:39.318153+00 2025-11-19 14:41:39.318158+00 f t ADELANTO 0.00 5 12844 \N +516517 2025-11-19 14:58:56.680204+00 2025-11-19 14:58:56.680211+00 f t SUBTOTAL 23000.00 1 12850 \N +516518 2025-11-19 14:58:56.681896+00 2025-11-19 14:58:56.681902+00 f t COSTO_SERVICIO 0.00 2 12850 \N +516519 2025-11-19 14:58:56.683035+00 2025-11-19 14:58:56.68304+00 f t DESCUENTO 0.00 3 12850 \N +516520 2025-11-19 14:58:56.684061+00 2025-11-19 14:58:56.684066+00 f t TOTAL 23000.00 4 12850 \N +516521 2025-11-19 14:58:56.684998+00 2025-11-19 14:58:56.685003+00 f t ADELANTO 5500.00 5 12850 \N +516672 2025-11-19 15:36:40.329111+00 2025-11-19 15:36:40.329122+00 f t SUBTOTAL 0.00 1 12855 \N +516673 2025-11-19 15:36:40.330589+00 2025-11-19 15:36:40.330597+00 f t COSTO_SERVICIO 0.00 2 12855 \N +516674 2025-11-19 15:36:40.33177+00 2025-11-19 15:36:40.331778+00 f t DESCUENTO 0.00 3 12855 \N +516675 2025-11-19 15:36:40.332875+00 2025-11-19 15:36:40.332883+00 f t TOTAL 0.00 4 12855 \N +516676 2025-11-19 15:36:40.333887+00 2025-11-19 15:36:40.333894+00 f t ADELANTO 0.00 5 12855 \N +509557 2025-11-18 15:16:22.347933+00 2025-11-18 15:16:22.347941+00 f t SUBTOTAL 46000.00 1 12687 \N +509558 2025-11-18 15:16:22.349755+00 2025-11-18 15:16:22.349763+00 f t COSTO_SERVICIO 0.00 2 12687 \N +509559 2025-11-18 15:16:22.351223+00 2025-11-18 15:16:22.351231+00 f t DESCUENTO 0.00 3 12687 \N +509560 2025-11-18 15:16:22.352581+00 2025-11-18 15:16:22.352588+00 f t TOTAL 46000.00 4 12687 \N +509561 2025-11-18 15:16:22.353789+00 2025-11-18 15:16:22.353796+00 f t ADELANTO 11000.00 5 12687 \N +517732 2025-11-19 19:03:27.337401+00 2025-11-19 19:03:27.337409+00 f t SUBTOTAL 46000.00 1 12882 \N +517733 2025-11-19 19:03:27.33933+00 2025-11-19 19:03:27.339338+00 f t COSTO_SERVICIO 0.00 2 12882 \N +517734 2025-11-19 19:03:27.34104+00 2025-11-19 19:03:27.341047+00 f t DESCUENTO 0.00 3 12882 \N +517735 2025-11-19 19:03:27.342368+00 2025-11-19 19:03:27.342374+00 f t TOTAL 46000.00 4 12882 \N +517736 2025-11-19 19:03:27.34347+00 2025-11-19 19:03:27.343475+00 f t ADELANTO 11000.00 5 12882 \N +518297 2025-11-19 20:30:29.053548+00 2025-11-19 20:30:29.053555+00 f t SUBTOTAL 70000.00 1 12896 \N +518298 2025-11-19 20:30:29.05551+00 2025-11-19 20:30:29.055517+00 f t COSTO_SERVICIO 0.00 2 12896 \N +518299 2025-11-19 20:30:29.056937+00 2025-11-19 20:30:29.056942+00 f t DESCUENTO 0.00 3 12896 \N +518300 2025-11-19 20:30:29.058111+00 2025-11-19 20:30:29.058117+00 f t TOTAL 70000.00 4 12896 \N +518301 2025-11-19 20:30:29.059492+00 2025-11-19 20:30:29.059499+00 f t ADELANTO 19000.00 5 12896 \N +509627 2025-11-18 15:32:30.636454+00 2025-11-18 15:32:30.636464+00 f t SUBTOTAL 61700.00 1 12681 \N +509628 2025-11-18 15:32:30.638107+00 2025-11-18 15:32:30.638115+00 f t COSTO_SERVICIO 0.00 2 12681 \N +509629 2025-11-18 15:32:30.639458+00 2025-11-18 15:32:30.639466+00 f t DESCUENTO 0.00 3 12681 \N +509630 2025-11-18 15:32:30.640544+00 2025-11-18 15:32:30.640552+00 f t TOTAL 61700.00 4 12681 \N +509631 2025-11-18 15:32:30.641595+00 2025-11-18 15:32:30.641602+00 f t ADELANTO 15700.00 5 12681 \N +509637 2025-11-18 15:54:21.915489+00 2025-11-18 15:54:21.915497+00 f t SUBTOTAL 0.00 1 12688 \N +509638 2025-11-18 15:54:21.916966+00 2025-11-18 15:54:21.916972+00 f t COSTO_SERVICIO 0.00 2 12688 \N +509639 2025-11-18 15:54:21.918074+00 2025-11-18 15:54:21.918079+00 f t DESCUENTO 0.00 3 12688 \N +509640 2025-11-18 15:54:21.919082+00 2025-11-18 15:54:21.919087+00 f t TOTAL 0.00 4 12688 \N +509641 2025-11-18 15:54:21.920235+00 2025-11-18 15:54:21.92024+00 f t ADELANTO 0.00 5 12688 \N +524677 2025-11-21 00:36:40.614851+00 2025-11-21 00:36:40.614862+00 f t SUBTOTAL 54000.00 1 13053 \N +524678 2025-11-21 00:36:40.617055+00 2025-11-21 00:36:40.617065+00 f t COSTO_SERVICIO 0.00 2 13053 \N +524679 2025-11-21 00:36:40.618574+00 2025-11-21 00:36:40.618583+00 f t DESCUENTO 0.00 3 13053 \N +524680 2025-11-21 00:36:40.620038+00 2025-11-21 00:36:40.620046+00 f t TOTAL 54000.00 4 13053 \N +524681 2025-11-21 00:36:40.621513+00 2025-11-21 00:36:40.62152+00 f t ADELANTO 13500.00 5 13053 \N +509697 2025-11-18 15:59:15.001314+00 2025-11-18 15:59:15.001322+00 f t SUBTOTAL 110000.00 1 12614 \N +509698 2025-11-18 15:59:15.002949+00 2025-11-18 15:59:15.002955+00 f t COSTO_SERVICIO 0.00 2 12614 \N +509699 2025-11-18 15:59:15.004299+00 2025-11-18 15:59:15.004305+00 f t DESCUENTO 0.00 3 12614 \N +509700 2025-11-18 15:59:15.005349+00 2025-11-18 15:59:15.005354+00 f t TOTAL 110000.00 4 12614 \N +509701 2025-11-18 15:59:15.006441+00 2025-11-18 15:59:15.006446+00 f t ADELANTO 10000.00 5 12614 \N +514027 2025-11-19 09:03:53.95591+00 2025-11-19 09:03:53.955918+00 f t SUBTOTAL 46000.00 1 12795 \N +514028 2025-11-19 09:03:53.958112+00 2025-11-19 09:03:53.958121+00 f t COSTO_SERVICIO 0.00 2 12795 \N +514029 2025-11-19 09:03:53.959479+00 2025-11-19 09:03:53.959486+00 f t DESCUENTO 0.00 3 12795 \N +514030 2025-11-19 09:03:53.960582+00 2025-11-19 09:03:53.960589+00 f t TOTAL 46000.00 4 12795 \N +514031 2025-11-19 09:03:53.961655+00 2025-11-19 09:03:53.961661+00 f t ADELANTO 11000.00 5 12795 \N +525907 2025-11-21 04:20:31.777954+00 2025-11-21 04:20:31.777965+00 f t SUBTOTAL 46000.00 1 13075 \N +525908 2025-11-21 04:20:31.779805+00 2025-11-21 04:20:31.779814+00 f t COSTO_SERVICIO 0.00 2 13075 \N +525909 2025-11-21 04:20:31.781046+00 2025-11-21 04:20:31.781053+00 f t DESCUENTO 0.00 3 13075 \N +525910 2025-11-21 04:20:31.782248+00 2025-11-21 04:20:31.782256+00 f t TOTAL 46000.00 4 13075 \N +525911 2025-11-21 04:20:31.78348+00 2025-11-21 04:20:31.783488+00 f t ADELANTO 11000.00 5 13075 \N +509757 2025-11-18 16:01:50.994074+00 2025-11-18 16:01:50.994081+00 f t SUBTOTAL 78000.00 1 12689 \N +509758 2025-11-18 16:01:50.995931+00 2025-11-18 16:01:50.99594+00 f t COSTO_SERVICIO 0.00 2 12689 \N +509759 2025-11-18 16:01:50.9971+00 2025-11-18 16:01:50.997106+00 f t DESCUENTO 0.00 3 12689 \N +509760 2025-11-18 16:01:50.998171+00 2025-11-18 16:01:50.998176+00 f t TOTAL 78000.00 4 12689 \N +509761 2025-11-18 16:01:50.999253+00 2025-11-18 16:01:50.999258+00 f t ADELANTO 18500.00 5 12689 \N +509767 2025-11-18 16:02:50.949279+00 2025-11-18 16:02:50.949288+00 f t SUBTOTAL 0.00 1 12690 \N +509768 2025-11-18 16:02:50.950461+00 2025-11-18 16:02:50.950467+00 f t COSTO_SERVICIO 0.00 2 12690 \N +509769 2025-11-18 16:02:50.951427+00 2025-11-18 16:02:50.951433+00 f t DESCUENTO 0.00 3 12690 \N +509770 2025-11-18 16:02:50.952329+00 2025-11-18 16:02:50.952334+00 f t TOTAL 0.00 4 12690 \N +509771 2025-11-18 16:02:50.953053+00 2025-11-18 16:02:50.953057+00 f t ADELANTO 0.00 5 12690 \N +527327 2025-11-21 14:41:56.699264+00 2025-11-21 14:41:56.699272+00 f t SUBTOTAL 54000.00 1 13107 \N +527328 2025-11-21 14:41:56.701052+00 2025-11-21 14:41:56.701058+00 f t COSTO_SERVICIO 0.00 2 13107 \N +527329 2025-11-21 14:41:56.702158+00 2025-11-21 14:41:56.702163+00 f t DESCUENTO 0.00 3 13107 \N +527330 2025-11-21 14:41:56.703176+00 2025-11-21 14:41:56.703181+00 f t TOTAL 54000.00 4 13107 \N +527331 2025-11-21 14:41:56.705009+00 2025-11-21 14:41:56.705014+00 f t ADELANTO 13500.00 5 13107 \N +516197 2025-11-19 14:27:09.529686+00 2025-11-19 14:27:09.529698+00 f t SUBTOTAL 0.00 1 12839 \N +516198 2025-11-19 14:27:09.531268+00 2025-11-19 14:27:09.531275+00 f t COSTO_SERVICIO 0.00 2 12839 \N +516199 2025-11-19 14:27:09.532407+00 2025-11-19 14:27:09.532413+00 f t DESCUENTO 0.00 3 12839 \N +516200 2025-11-19 14:27:09.533511+00 2025-11-19 14:27:09.533517+00 f t TOTAL 0.00 4 12839 \N +516201 2025-11-19 14:27:09.534571+00 2025-11-19 14:27:09.534576+00 f t ADELANTO 0.00 5 12839 \N +527597 2025-11-21 15:44:51.044438+00 2025-11-21 15:44:51.044445+00 f t SUBTOTAL 70000.00 1 13116 \N +527598 2025-11-21 15:44:51.046747+00 2025-11-21 15:44:51.046753+00 f t COSTO_SERVICIO 0.00 2 13116 \N +527599 2025-11-21 15:44:51.047966+00 2025-11-21 15:44:51.047971+00 f t DESCUENTO 0.00 3 13116 \N +527600 2025-11-21 15:44:51.049216+00 2025-11-21 15:44:51.049222+00 f t TOTAL 70000.00 4 13116 \N +527601 2025-11-21 15:44:51.050889+00 2025-11-21 15:44:51.050894+00 f t ADELANTO 19000.00 5 13116 \N +509817 2025-11-18 16:14:41.195977+00 2025-11-18 16:14:41.195986+00 f t SUBTOTAL 0.00 1 12691 \N +509818 2025-11-18 16:14:41.197908+00 2025-11-18 16:14:41.197915+00 f t COSTO_SERVICIO 0.00 2 12691 \N +509819 2025-11-18 16:14:41.198965+00 2025-11-18 16:14:41.19897+00 f t DESCUENTO 0.00 3 12691 \N +509820 2025-11-18 16:14:41.200328+00 2025-11-18 16:14:41.200335+00 f t TOTAL 0.00 4 12691 \N +509821 2025-11-18 16:14:41.201394+00 2025-11-18 16:14:41.2014+00 f t ADELANTO 0.00 5 12691 \N +528342 2025-11-21 17:54:36.310935+00 2025-11-21 17:54:36.310944+00 f t SUBTOTAL 55000.00 1 13136 \N +528343 2025-11-21 17:54:36.313155+00 2025-11-21 17:54:36.313162+00 f t COSTO_SERVICIO 0.00 2 13136 \N +528344 2025-11-21 17:54:36.314503+00 2025-11-21 17:54:36.314511+00 f t DESCUENTO 0.00 3 13136 \N +528345 2025-11-21 17:54:36.316048+00 2025-11-21 17:54:36.316054+00 f t TOTAL 55000.00 4 13136 \N +528346 2025-11-21 17:54:36.317229+00 2025-11-21 17:54:36.317234+00 f t ADELANTO 11000.00 5 13136 \N +517347 2025-11-19 17:59:23.103467+00 2025-11-19 17:59:23.103474+00 f t SUBTOTAL 70000.00 1 12869 \N +517348 2025-11-19 17:59:23.105156+00 2025-11-19 17:59:23.105162+00 f t COSTO_SERVICIO 0.00 2 12869 \N +517349 2025-11-19 17:59:23.106188+00 2025-11-19 17:59:23.106194+00 f t DESCUENTO 0.00 3 12869 \N +517350 2025-11-19 17:59:23.107294+00 2025-11-19 17:59:23.107302+00 f t TOTAL 70000.00 4 12869 \N +517351 2025-11-19 17:59:23.108266+00 2025-11-19 17:59:23.108272+00 f t ADELANTO 19000.00 5 12869 \N +509892 2025-11-18 16:25:38.026166+00 2025-11-18 16:25:38.026213+00 f t SUBTOTAL 46000.00 1 12692 \N +509893 2025-11-18 16:25:38.028384+00 2025-11-18 16:25:38.028392+00 f t COSTO_SERVICIO 0.00 2 12692 \N +509894 2025-11-18 16:25:38.029798+00 2025-11-18 16:25:38.029803+00 f t DESCUENTO 0.00 3 12692 \N +509895 2025-11-18 16:25:38.030936+00 2025-11-18 16:25:38.030943+00 f t TOTAL 46000.00 4 12692 \N +509896 2025-11-18 16:25:38.032166+00 2025-11-18 16:25:38.032171+00 f t ADELANTO 11000.00 5 12692 \N +518202 2025-11-19 20:28:34.216999+00 2025-11-19 20:28:34.217006+00 f t SUBTOTAL 70000.00 1 12892 \N +518203 2025-11-19 20:28:34.218536+00 2025-11-19 20:28:34.218543+00 f t COSTO_SERVICIO 0.00 2 12892 \N +518204 2025-11-19 20:28:34.219525+00 2025-11-19 20:28:34.21953+00 f t DESCUENTO 0.00 3 12892 \N +518205 2025-11-19 20:28:34.220407+00 2025-11-19 20:28:34.220412+00 f t TOTAL 70000.00 4 12892 \N +518206 2025-11-19 20:28:34.221226+00 2025-11-19 20:28:34.22123+00 f t ADELANTO 19000.00 5 12892 \N +509922 2025-11-18 16:29:23.309173+00 2025-11-18 16:29:23.309182+00 f t SUBTOTAL 0.00 1 12693 \N +509923 2025-11-18 16:29:23.311337+00 2025-11-18 16:29:23.311345+00 f t COSTO_SERVICIO 0.00 2 12693 \N +509924 2025-11-18 16:29:23.312662+00 2025-11-18 16:29:23.312667+00 f t DESCUENTO 0.00 3 12693 \N +509925 2025-11-18 16:29:23.314038+00 2025-11-18 16:29:23.314045+00 f t TOTAL 0.00 4 12693 \N +509926 2025-11-18 16:29:23.315544+00 2025-11-18 16:29:23.31555+00 f t ADELANTO 0.00 5 12693 \N +509942 2025-11-18 16:36:05.099487+00 2025-11-18 16:36:05.099496+00 f t SUBTOTAL 0.00 1 12694 \N +509943 2025-11-18 16:36:05.101268+00 2025-11-18 16:36:05.101275+00 f t COSTO_SERVICIO 0.00 2 12694 \N +509944 2025-11-18 16:36:05.103273+00 2025-11-18 16:36:05.10328+00 f t DESCUENTO 0.00 3 12694 \N +509945 2025-11-18 16:36:05.104561+00 2025-11-18 16:36:05.104566+00 f t TOTAL 0.00 4 12694 \N +509946 2025-11-18 16:36:05.105663+00 2025-11-18 16:36:05.105668+00 f t ADELANTO 0.00 5 12694 \N +523777 2025-11-20 21:29:11.258448+00 2025-11-20 21:29:11.258457+00 f t SUBTOTAL 0.00 1 13028 \N +523778 2025-11-20 21:29:11.260535+00 2025-11-20 21:29:11.260542+00 f t COSTO_SERVICIO 0.00 2 13028 \N +523779 2025-11-20 21:29:11.261671+00 2025-11-20 21:29:11.261677+00 f t DESCUENTO 0.00 3 13028 \N +523780 2025-11-20 21:29:11.262639+00 2025-11-20 21:29:11.262646+00 f t TOTAL 0.00 4 13028 \N +523781 2025-11-20 21:29:11.263901+00 2025-11-20 21:29:11.263908+00 f t ADELANTO 0.00 5 13028 \N +512722 2025-11-19 00:38:36.959446+00 2025-11-19 00:38:36.959454+00 f t SUBTOTAL 78000.00 1 12765 \N +512723 2025-11-19 00:38:36.961097+00 2025-11-19 00:38:36.961104+00 f t COSTO_SERVICIO 0.00 2 12765 \N +512724 2025-11-19 00:38:36.96218+00 2025-11-19 00:38:36.962185+00 f t DESCUENTO 0.00 3 12765 \N +512725 2025-11-19 00:38:36.963315+00 2025-11-19 00:38:36.963321+00 f t TOTAL 78000.00 4 12765 \N +512726 2025-11-19 00:38:36.964268+00 2025-11-19 00:38:36.964273+00 f t ADELANTO 13000.00 5 12765 \N +509992 2025-11-18 16:37:40.852201+00 2025-11-18 16:37:40.852213+00 f t SUBTOTAL 0.00 1 12695 \N +509993 2025-11-18 16:37:40.854098+00 2025-11-18 16:37:40.854106+00 f t COSTO_SERVICIO 0.00 2 12695 \N +509994 2025-11-18 16:37:40.855356+00 2025-11-18 16:37:40.855363+00 f t DESCUENTO 0.00 3 12695 \N +509995 2025-11-18 16:37:40.856495+00 2025-11-18 16:37:40.856502+00 f t TOTAL 0.00 4 12695 \N +509996 2025-11-18 16:37:40.857637+00 2025-11-18 16:37:40.857643+00 f t ADELANTO 0.00 5 12695 \N +510002 2025-11-18 16:47:26.625839+00 2025-11-18 16:47:26.625844+00 f t SUBTOTAL 197000.00 1 12611 \N +510003 2025-11-18 16:47:26.627459+00 2025-11-18 16:47:26.627465+00 f t COSTO_SERVICIO 0.00 2 12611 \N +510004 2025-11-18 16:47:26.628579+00 2025-11-18 16:47:26.628584+00 f t DESCUENTO 0.00 3 12611 \N +510005 2025-11-18 16:47:26.629671+00 2025-11-18 16:47:26.629675+00 f t TOTAL 197000.00 4 12611 \N +510006 2025-11-18 16:47:26.630578+00 2025-11-18 16:47:26.630582+00 f t ADELANTO 162000.00 5 12611 \N +514037 2025-11-19 09:11:09.088102+00 2025-11-19 09:11:09.088114+00 f t SUBTOTAL 0.00 1 12796 \N +514038 2025-11-19 09:11:09.089781+00 2025-11-19 09:11:09.08979+00 f t COSTO_SERVICIO 0.00 2 12796 \N +514039 2025-11-19 09:11:09.091071+00 2025-11-19 09:11:09.091079+00 f t DESCUENTO 0.00 3 12796 \N +514040 2025-11-19 09:11:09.092411+00 2025-11-19 09:11:09.092419+00 f t TOTAL 0.00 4 12796 \N +514041 2025-11-19 09:11:09.093636+00 2025-11-19 09:11:09.093644+00 f t ADELANTO 0.00 5 12796 \N +510032 2025-11-18 16:55:08.016489+00 2025-11-18 16:55:08.016502+00 f t SUBTOTAL 0.00 1 12696 \N +510033 2025-11-18 16:55:08.018644+00 2025-11-18 16:55:08.018654+00 f t COSTO_SERVICIO 0.00 2 12696 \N +510034 2025-11-18 16:55:08.020168+00 2025-11-18 16:55:08.020177+00 f t DESCUENTO 0.00 3 12696 \N +510035 2025-11-18 16:55:08.021774+00 2025-11-18 16:55:08.021782+00 f t TOTAL 0.00 4 12696 \N +510036 2025-11-18 16:55:08.023052+00 2025-11-18 16:55:08.023061+00 f t ADELANTO 0.00 5 12696 \N +510042 2025-11-18 17:03:58.923003+00 2025-11-18 17:03:58.923015+00 f t SUBTOTAL 0.00 1 12697 \N +510043 2025-11-18 17:03:58.924701+00 2025-11-18 17:03:58.92471+00 f t COSTO_SERVICIO 0.00 2 12697 \N +510044 2025-11-18 17:03:58.925946+00 2025-11-18 17:03:58.925955+00 f t DESCUENTO 0.00 3 12697 \N +510045 2025-11-18 17:03:58.92737+00 2025-11-18 17:03:58.927377+00 f t TOTAL 0.00 4 12697 \N +510046 2025-11-18 17:03:58.928598+00 2025-11-18 17:03:58.928605+00 f t ADELANTO 0.00 5 12697 \N +510052 2025-11-18 17:05:03.083927+00 2025-11-18 17:05:03.083943+00 f t SUBTOTAL 0.00 1 12698 \N +510053 2025-11-18 17:05:03.092216+00 2025-11-18 17:05:03.092231+00 f t COSTO_SERVICIO 0.00 2 12698 \N +510054 2025-11-18 17:05:03.095749+00 2025-11-18 17:05:03.095763+00 f t DESCUENTO 0.00 3 12698 \N +510055 2025-11-18 17:05:03.099048+00 2025-11-18 17:05:03.09906+00 f t TOTAL 0.00 4 12698 \N +510056 2025-11-18 17:05:03.102711+00 2025-11-18 17:05:03.102725+00 f t ADELANTO 0.00 5 12698 \N +510062 2025-11-18 17:09:06.63903+00 2025-11-18 17:09:06.63904+00 f t SUBTOTAL 0.00 1 12699 \N +510063 2025-11-18 17:09:06.640556+00 2025-11-18 17:09:06.640563+00 f t COSTO_SERVICIO 0.00 2 12699 \N +510064 2025-11-18 17:09:06.641733+00 2025-11-18 17:09:06.641739+00 f t DESCUENTO 0.00 3 12699 \N +510065 2025-11-18 17:09:06.642696+00 2025-11-18 17:09:06.642701+00 f t TOTAL 0.00 4 12699 \N +510066 2025-11-18 17:09:06.643659+00 2025-11-18 17:09:06.643664+00 f t ADELANTO 0.00 5 12699 \N +510127 2025-11-18 17:15:28.397344+00 2025-11-18 17:15:28.397351+00 f t SUBTOTAL 79000.00 1 12700 \N +510128 2025-11-18 17:15:28.398826+00 2025-11-18 17:15:28.398832+00 f t COSTO_SERVICIO 0.00 2 12700 \N +510129 2025-11-18 17:15:28.399959+00 2025-11-18 17:15:28.399965+00 f t DESCUENTO 0.00 3 12700 \N +510130 2025-11-18 17:15:28.401687+00 2025-11-18 17:15:28.401692+00 f t TOTAL 79000.00 4 12700 \N +510131 2025-11-18 17:15:28.402855+00 2025-11-18 17:15:28.402862+00 f t ADELANTO 17500.00 5 12700 \N +510132 2025-11-18 17:17:32.41315+00 2025-11-18 17:17:32.41316+00 f t SUBTOTAL 46000.00 1 12701 \N +510133 2025-11-18 17:17:32.41509+00 2025-11-18 17:17:32.4151+00 f t COSTO_SERVICIO 0.00 2 12701 \N +510134 2025-11-18 17:17:32.416691+00 2025-11-18 17:17:32.416699+00 f t DESCUENTO 0.00 3 12701 \N +510135 2025-11-18 17:17:32.418115+00 2025-11-18 17:17:32.418123+00 f t TOTAL 46000.00 4 12701 \N +510136 2025-11-18 17:17:32.419533+00 2025-11-18 17:17:32.419542+00 f t ADELANTO 11000.00 5 12701 \N +510157 2025-11-18 17:18:35.452984+00 2025-11-18 17:18:35.452993+00 f t SUBTOTAL 87000.00 1 12675 \N +510158 2025-11-18 17:18:35.454487+00 2025-11-18 17:18:35.454493+00 f t COSTO_SERVICIO 0.00 2 12675 \N +510159 2025-11-18 17:18:35.455527+00 2025-11-18 17:18:35.455533+00 f t DESCUENTO 0.00 3 12675 \N +510160 2025-11-18 17:18:35.456491+00 2025-11-18 17:18:35.456497+00 f t TOTAL 87000.00 4 12675 \N +510161 2025-11-18 17:18:35.457381+00 2025-11-18 17:18:35.457387+00 f t ADELANTO 20000.00 5 12675 \N +510167 2025-11-18 17:18:41.484966+00 2025-11-18 17:18:41.484974+00 f t SUBTOTAL 70000.00 1 12702 \N +510168 2025-11-18 17:18:41.486504+00 2025-11-18 17:18:41.486511+00 f t COSTO_SERVICIO 0.00 2 12702 \N +510169 2025-11-18 17:18:41.488072+00 2025-11-18 17:18:41.48808+00 f t DESCUENTO 0.00 3 12702 \N +510170 2025-11-18 17:18:41.489524+00 2025-11-18 17:18:41.489529+00 f t TOTAL 70000.00 4 12702 \N +510171 2025-11-18 17:18:41.490798+00 2025-11-18 17:18:41.490803+00 f t ADELANTO 19000.00 5 12702 \N +510177 2025-11-18 17:27:15.496795+00 2025-11-18 17:27:15.496803+00 f t SUBTOTAL 0.00 1 12703 \N +510178 2025-11-18 17:27:15.498179+00 2025-11-18 17:27:15.498186+00 f t COSTO_SERVICIO 0.00 2 12703 \N +510179 2025-11-18 17:27:15.499351+00 2025-11-18 17:27:15.499357+00 f t DESCUENTO 0.00 3 12703 \N +510180 2025-11-18 17:27:15.500321+00 2025-11-18 17:27:15.500327+00 f t TOTAL 0.00 4 12703 \N +510181 2025-11-18 17:27:15.501159+00 2025-11-18 17:27:15.501164+00 f t ADELANTO 0.00 5 12703 \N +517862 2025-11-19 19:18:59.409163+00 2025-11-19 19:18:59.409171+00 f t SUBTOTAL 23000.00 1 12885 \N +517863 2025-11-19 19:18:59.410928+00 2025-11-19 19:18:59.410936+00 f t COSTO_SERVICIO 0.00 2 12885 \N +517864 2025-11-19 19:18:59.412209+00 2025-11-19 19:18:59.412219+00 f t DESCUENTO 0.00 3 12885 \N +517865 2025-11-19 19:18:59.41348+00 2025-11-19 19:18:59.413485+00 f t TOTAL 23000.00 4 12885 \N +517866 2025-11-19 19:18:59.414475+00 2025-11-19 19:18:59.41448+00 f t ADELANTO 5500.00 5 12885 \N +510207 2025-11-18 17:30:16.511425+00 2025-11-18 17:30:16.511437+00 f t SUBTOTAL 0.00 1 12706 \N +510208 2025-11-18 17:30:16.513169+00 2025-11-18 17:30:16.513179+00 f t COSTO_SERVICIO 0.00 2 12706 \N +510209 2025-11-18 17:30:16.514622+00 2025-11-18 17:30:16.51463+00 f t DESCUENTO 0.00 3 12706 \N +510210 2025-11-18 17:30:16.516003+00 2025-11-18 17:30:16.516011+00 f t TOTAL 0.00 4 12706 \N +510211 2025-11-18 17:30:16.517168+00 2025-11-18 17:30:16.517176+00 f t ADELANTO 0.00 5 12706 \N +523782 2025-11-20 21:29:40.690987+00 2025-11-20 21:29:40.690996+00 f t SUBTOTAL 78000.00 1 13029 \N +523783 2025-11-20 21:29:40.692785+00 2025-11-20 21:29:40.69279+00 f t COSTO_SERVICIO 0.00 2 13029 \N +523784 2025-11-20 21:29:40.694011+00 2025-11-20 21:29:40.694017+00 f t DESCUENTO 0.00 3 13029 \N +523785 2025-11-20 21:29:40.695034+00 2025-11-20 21:29:40.695039+00 f t TOTAL 78000.00 4 13029 \N +523786 2025-11-20 21:29:40.696085+00 2025-11-20 21:29:40.69609+00 f t ADELANTO 13000.00 5 13029 \N +510257 2025-11-18 17:31:02.64911+00 2025-11-18 17:31:02.649118+00 f t SUBTOTAL 23000.00 1 12704 \N +510258 2025-11-18 17:31:02.650616+00 2025-11-18 17:31:02.650622+00 f t COSTO_SERVICIO 0.00 2 12704 \N +510259 2025-11-18 17:31:02.65194+00 2025-11-18 17:31:02.651946+00 f t DESCUENTO 0.00 3 12704 \N +510260 2025-11-18 17:31:02.652948+00 2025-11-18 17:31:02.652955+00 f t TOTAL 23000.00 4 12704 \N +510261 2025-11-18 17:31:02.653808+00 2025-11-18 17:31:02.653813+00 f t ADELANTO 5500.00 5 12704 \N +512937 2025-11-19 01:43:10.214683+00 2025-11-19 01:43:10.21469+00 f t SUBTOTAL 54000.00 1 12772 \N +512938 2025-11-19 01:43:10.216767+00 2025-11-19 01:43:10.216806+00 f t COSTO_SERVICIO 0.00 2 12772 \N +512939 2025-11-19 01:43:10.218377+00 2025-11-19 01:43:10.218382+00 f t DESCUENTO 0.00 3 12772 \N +512940 2025-11-19 01:43:10.21968+00 2025-11-19 01:43:10.219687+00 f t TOTAL 54000.00 4 12772 \N +512941 2025-11-19 01:43:10.221021+00 2025-11-19 01:43:10.221027+00 f t ADELANTO 13500.00 5 12772 \N +513672 2025-11-19 03:41:38.661056+00 2025-11-19 03:41:38.661066+00 f t SUBTOTAL 124000.00 1 12785 \N +513673 2025-11-19 03:41:38.663017+00 2025-11-19 03:41:38.663027+00 f t COSTO_SERVICIO 0.00 2 12785 \N +513674 2025-11-19 03:41:38.664486+00 2025-11-19 03:41:38.664494+00 f t DESCUENTO 9200.00 3 12785 \N +513675 2025-11-19 03:41:38.665842+00 2025-11-19 03:41:38.66585+00 f t TOTAL 114800.00 4 12785 \N +513676 2025-11-19 03:41:38.66721+00 2025-11-19 03:41:38.667217+00 f t ADELANTO 32500.00 5 12785 \N +510307 2025-11-18 17:32:04.75722+00 2025-11-18 17:32:04.757228+00 f t SUBTOTAL 30000.00 1 12705 \N +510308 2025-11-18 17:32:04.758608+00 2025-11-18 17:32:04.758613+00 f t COSTO_SERVICIO 0.00 2 12705 \N +510309 2025-11-18 17:32:04.760016+00 2025-11-18 17:32:04.760022+00 f t DESCUENTO 0.00 3 12705 \N +510310 2025-11-18 17:32:04.761003+00 2025-11-18 17:32:04.761008+00 f t TOTAL 30000.00 4 12705 \N +510311 2025-11-18 17:32:04.761927+00 2025-11-18 17:32:04.761933+00 f t ADELANTO 30000.00 5 12705 \N +514562 2025-11-19 11:18:47.045353+00 2025-11-19 11:18:47.045362+00 f t SUBTOTAL 115000.00 1 12806 \N +514563 2025-11-19 11:18:47.047253+00 2025-11-19 11:18:47.047262+00 f t COSTO_SERVICIO 0.00 2 12806 \N +514564 2025-11-19 11:18:47.048714+00 2025-11-19 11:18:47.048735+00 f t DESCUENTO 0.00 3 12806 \N +514565 2025-11-19 11:18:47.049871+00 2025-11-19 11:18:47.049878+00 f t TOTAL 115000.00 4 12806 \N +514566 2025-11-19 11:18:47.051197+00 2025-11-19 11:18:47.051203+00 f t ADELANTO 25000.00 5 12806 \N +514727 2025-11-19 11:32:04.43567+00 2025-11-19 11:32:04.435681+00 f t SUBTOTAL 46000.00 1 12809 \N +514728 2025-11-19 11:32:04.437827+00 2025-11-19 11:32:04.437837+00 f t COSTO_SERVICIO 0.00 2 12809 \N +514729 2025-11-19 11:32:04.439478+00 2025-11-19 11:32:04.439489+00 f t DESCUENTO 0.00 3 12809 \N +514730 2025-11-19 11:32:04.441174+00 2025-11-19 11:32:04.441183+00 f t TOTAL 46000.00 4 12809 \N +514731 2025-11-19 11:32:04.442712+00 2025-11-19 11:32:04.442723+00 f t ADELANTO 11000.00 5 12809 \N +514907 2025-11-19 12:05:34.206913+00 2025-11-19 12:05:34.206921+00 f t SUBTOTAL 46000.00 1 12813 \N +514908 2025-11-19 12:05:34.208028+00 2025-11-19 12:05:34.208035+00 f t COSTO_SERVICIO 0.00 2 12813 \N +514909 2025-11-19 12:05:34.20878+00 2025-11-19 12:05:34.208785+00 f t DESCUENTO 0.00 3 12813 \N +514910 2025-11-19 12:05:34.209484+00 2025-11-19 12:05:34.20949+00 f t TOTAL 46000.00 4 12813 \N +510342 2025-11-18 17:36:35.948619+00 2025-11-18 17:36:35.948628+00 f t SUBTOTAL 30000.00 1 12707 \N +510343 2025-11-18 17:36:35.951597+00 2025-11-18 17:36:35.951609+00 f t COSTO_SERVICIO 0.00 2 12707 \N +510344 2025-11-18 17:36:35.952995+00 2025-11-18 17:36:35.953003+00 f t DESCUENTO 0.00 3 12707 \N +510345 2025-11-18 17:36:35.954174+00 2025-11-18 17:36:35.954179+00 f t TOTAL 30000.00 4 12707 \N +510346 2025-11-18 17:36:35.955654+00 2025-11-18 17:36:35.95566+00 f t ADELANTO 30000.00 5 12707 \N +514911 2025-11-19 12:05:34.210237+00 2025-11-19 12:05:34.210244+00 f t ADELANTO 11000.00 5 12813 \N +510352 2025-11-18 17:41:20.032346+00 2025-11-18 17:41:20.032355+00 f t SUBTOTAL 0.00 1 12708 \N +510353 2025-11-18 17:41:20.036557+00 2025-11-18 17:41:20.036563+00 f t COSTO_SERVICIO 0.00 2 12708 \N +510354 2025-11-18 17:41:20.03783+00 2025-11-18 17:41:20.037836+00 f t DESCUENTO 0.00 3 12708 \N +510355 2025-11-18 17:41:20.039024+00 2025-11-18 17:41:20.03903+00 f t TOTAL 0.00 4 12708 \N +510356 2025-11-18 17:41:20.040206+00 2025-11-18 17:41:20.040211+00 f t ADELANTO 0.00 5 12708 \N +516212 2025-11-19 14:28:01.712928+00 2025-11-19 14:28:01.712937+00 f t SUBTOTAL 88000.00 1 12840 \N +516213 2025-11-19 14:28:01.716218+00 2025-11-19 14:28:01.71623+00 f t COSTO_SERVICIO 0.00 2 12840 \N +516214 2025-11-19 14:28:01.718304+00 2025-11-19 14:28:01.718314+00 f t DESCUENTO 0.00 3 12840 \N +516215 2025-11-19 14:28:01.720188+00 2025-11-19 14:28:01.720196+00 f t TOTAL 88000.00 4 12840 \N +510397 2025-11-18 17:54:27.221176+00 2025-11-18 17:54:27.221184+00 f t SUBTOTAL 75000.00 1 12709 \N +510398 2025-11-18 17:54:27.223083+00 2025-11-18 17:54:27.223093+00 f t COSTO_SERVICIO 0.00 2 12709 \N +510399 2025-11-18 17:54:27.224719+00 2025-11-18 17:54:27.224727+00 f t DESCUENTO 0.00 3 12709 \N +510400 2025-11-18 17:54:27.226085+00 2025-11-18 17:54:27.226091+00 f t TOTAL 75000.00 4 12709 \N +510401 2025-11-18 17:54:27.22742+00 2025-11-18 17:54:27.227427+00 f t ADELANTO 16500.00 5 12709 \N +516216 2025-11-19 14:28:01.721891+00 2025-11-19 14:28:01.721899+00 f t ADELANTO 13000.00 5 12840 \N +516382 2025-11-19 14:49:51.976769+00 2025-11-19 14:49:51.976782+00 f t SUBTOTAL 13200.00 1 12846 \N +516383 2025-11-19 14:49:51.978712+00 2025-11-19 14:49:51.97872+00 f t COSTO_SERVICIO 0.00 2 12846 \N +516384 2025-11-19 14:49:51.980074+00 2025-11-19 14:49:51.980082+00 f t DESCUENTO 0.00 3 12846 \N +516385 2025-11-19 14:49:51.981252+00 2025-11-19 14:49:51.98126+00 f t TOTAL 13200.00 4 12846 \N +516386 2025-11-19 14:49:51.982462+00 2025-11-19 14:49:51.982469+00 f t ADELANTO 13200.00 5 12846 \N +510427 2025-11-18 18:06:54.455328+00 2025-11-18 18:06:54.455336+00 f t SUBTOTAL 55000.00 1 12710 \N +510428 2025-11-18 18:06:54.457406+00 2025-11-18 18:06:54.457415+00 f t COSTO_SERVICIO 0.00 2 12710 \N +510429 2025-11-18 18:06:54.458918+00 2025-11-18 18:06:54.458923+00 f t DESCUENTO 0.00 3 12710 \N +510430 2025-11-18 18:06:54.460409+00 2025-11-18 18:06:54.460419+00 f t TOTAL 55000.00 4 12710 \N +510431 2025-11-18 18:06:54.46187+00 2025-11-18 18:06:54.461878+00 f t ADELANTO 11000.00 5 12710 \N +510482 2025-11-18 18:13:10.358166+00 2025-11-18 18:13:10.358175+00 f t SUBTOTAL 54000.00 1 12711 \N +510483 2025-11-18 18:13:10.360101+00 2025-11-18 18:13:10.360108+00 f t COSTO_SERVICIO 0.00 2 12711 \N +510484 2025-11-18 18:13:10.361402+00 2025-11-18 18:13:10.361408+00 f t DESCUENTO 0.00 3 12711 \N +510485 2025-11-18 18:13:10.362519+00 2025-11-18 18:13:10.362525+00 f t TOTAL 54000.00 4 12711 \N +510486 2025-11-18 18:13:10.363698+00 2025-11-18 18:13:10.363705+00 f t ADELANTO 13500.00 5 12711 \N +518312 2025-11-19 20:35:19.667098+00 2025-11-19 20:35:19.667106+00 f t SUBTOTAL 54000.00 1 12895 \N +518313 2025-11-19 20:35:19.669124+00 2025-11-19 20:35:19.66913+00 f t COSTO_SERVICIO 0.00 2 12895 \N +518314 2025-11-19 20:35:19.670352+00 2025-11-19 20:35:19.670359+00 f t DESCUENTO 0.00 3 12895 \N +518315 2025-11-19 20:35:19.671426+00 2025-11-19 20:35:19.671432+00 f t TOTAL 54000.00 4 12895 \N +518316 2025-11-19 20:35:19.672481+00 2025-11-19 20:35:19.672486+00 f t ADELANTO 13500.00 5 12895 \N +523792 2025-11-20 21:38:42.605388+00 2025-11-20 21:38:42.605397+00 f t SUBTOTAL 0.00 1 13030 \N +523793 2025-11-20 21:38:42.606753+00 2025-11-20 21:38:42.606759+00 f t COSTO_SERVICIO 0.00 2 13030 \N +523794 2025-11-20 21:38:42.607753+00 2025-11-20 21:38:42.607758+00 f t DESCUENTO 0.00 3 13030 \N +523795 2025-11-20 21:38:42.608729+00 2025-11-20 21:38:42.608735+00 f t TOTAL 0.00 4 13030 \N +523796 2025-11-20 21:38:42.609582+00 2025-11-20 21:38:42.609587+00 f t ADELANTO 0.00 5 13030 \N +537457 2025-11-24 02:11:56.245248+00 2025-11-24 02:11:56.245255+00 f t SUBTOTAL 55000.00 1 13345 \N +537458 2025-11-24 02:11:56.247079+00 2025-11-24 02:11:56.247086+00 f t COSTO_SERVICIO 0.00 2 13345 \N +537459 2025-11-24 02:11:56.248252+00 2025-11-24 02:11:56.248258+00 f t DESCUENTO 0.00 3 13345 \N +537460 2025-11-24 02:11:56.249325+00 2025-11-24 02:11:56.24933+00 f t TOTAL 55000.00 4 13345 \N +537461 2025-11-24 02:11:56.250276+00 2025-11-24 02:11:56.250282+00 f t ADELANTO 11000.00 5 13345 \N +538512 2025-11-24 10:03:44.908196+00 2025-11-24 10:03:44.908206+00 f t SUBTOTAL 0.00 1 13368 \N +538513 2025-11-24 10:03:44.910368+00 2025-11-24 10:03:44.910376+00 f t COSTO_SERVICIO 0.00 2 13368 \N +538514 2025-11-24 10:03:44.911631+00 2025-11-24 10:03:44.911637+00 f t DESCUENTO 0.00 3 13368 \N +538515 2025-11-24 10:03:44.912815+00 2025-11-24 10:03:44.912821+00 f t TOTAL 0.00 4 13368 \N +538516 2025-11-24 10:03:44.914068+00 2025-11-24 10:03:44.914074+00 f t ADELANTO 0.00 5 13368 \N +510607 2025-11-18 18:40:12.397882+00 2025-11-18 18:40:12.397891+00 f t SUBTOTAL 0.00 1 12712 \N +510608 2025-11-18 18:40:12.399695+00 2025-11-18 18:40:12.399703+00 f t COSTO_SERVICIO 0.00 2 12712 \N +510609 2025-11-18 18:40:12.400909+00 2025-11-18 18:40:12.400915+00 f t DESCUENTO 0.00 3 12712 \N +510610 2025-11-18 18:40:12.401983+00 2025-11-18 18:40:12.401988+00 f t TOTAL 0.00 4 12712 \N +510611 2025-11-18 18:40:12.403185+00 2025-11-18 18:40:12.403191+00 f t ADELANTO 0.00 5 12712 \N +538907 2025-11-24 12:03:08.368599+00 2025-11-24 12:03:08.368607+00 f t SUBTOTAL 0.00 1 13367 \N +538908 2025-11-24 12:03:08.370703+00 2025-11-24 12:03:08.37071+00 f t COSTO_SERVICIO 0.00 2 13367 \N +538909 2025-11-24 12:03:08.371852+00 2025-11-24 12:03:08.371859+00 f t DESCUENTO 0.00 3 13367 \N +538910 2025-11-24 12:03:08.372941+00 2025-11-24 12:03:08.372947+00 f t TOTAL 0.00 4 13367 \N +538911 2025-11-24 12:03:08.373939+00 2025-11-24 12:03:08.373945+00 f t ADELANTO 0.00 5 13367 \N +526932 2025-11-21 13:32:23.472699+00 2025-11-21 13:32:23.472708+00 f t SUBTOTAL 0.00 1 13098 \N +526933 2025-11-21 13:32:23.474549+00 2025-11-21 13:32:23.474555+00 f t COSTO_SERVICIO 0.00 2 13098 \N +526934 2025-11-21 13:32:23.475493+00 2025-11-21 13:32:23.475498+00 f t DESCUENTO 0.00 3 13098 \N +526935 2025-11-21 13:32:23.476488+00 2025-11-21 13:32:23.476493+00 f t TOTAL 0.00 4 13098 \N +526936 2025-11-21 13:32:23.477317+00 2025-11-21 13:32:23.477321+00 f t ADELANTO 0.00 5 13098 \N +539772 2025-11-24 14:01:34.671784+00 2025-11-24 14:01:34.671792+00 f t SUBTOTAL 127500.00 1 13397 \N +539773 2025-11-24 14:01:34.675928+00 2025-11-24 14:01:34.675935+00 f t COSTO_SERVICIO 0.00 2 13397 \N +539774 2025-11-24 14:01:34.677314+00 2025-11-24 14:01:34.677321+00 f t DESCUENTO 0.00 3 13397 \N +539775 2025-11-24 14:01:34.678487+00 2025-11-24 14:01:34.678492+00 f t TOTAL 127500.00 4 13397 \N +539776 2025-11-24 14:01:34.679562+00 2025-11-24 14:01:34.679568+00 f t ADELANTO 27500.00 5 13397 \N +515432 2025-11-19 13:01:00.769329+00 2025-11-19 13:01:00.769337+00 f t SUBTOTAL 79000.00 1 12824 \N +515433 2025-11-19 13:01:00.7713+00 2025-11-19 13:01:00.771309+00 f t COSTO_SERVICIO 0.00 2 12824 \N +515434 2025-11-19 13:01:00.772882+00 2025-11-19 13:01:00.772889+00 f t DESCUENTO 0.00 3 12824 \N +515435 2025-11-19 13:01:00.774333+00 2025-11-19 13:01:00.774342+00 f t TOTAL 79000.00 4 12824 \N +515436 2025-11-19 13:01:00.776535+00 2025-11-19 13:01:00.776544+00 f t ADELANTO 17500.00 5 12824 \N +540427 2025-11-24 14:42:52.263633+00 2025-11-24 14:42:52.263641+00 f t SUBTOTAL 55000.00 1 13408 \N +540428 2025-11-24 14:42:52.265812+00 2025-11-24 14:42:52.265822+00 f t COSTO_SERVICIO 0.00 2 13408 \N +540429 2025-11-24 14:42:52.267317+00 2025-11-24 14:42:52.267323+00 f t DESCUENTO 0.00 3 13408 \N +540430 2025-11-24 14:42:52.268831+00 2025-11-24 14:42:52.268842+00 f t TOTAL 55000.00 4 13408 \N +540431 2025-11-24 14:42:52.270037+00 2025-11-24 14:42:52.270042+00 f t ADELANTO 11000.00 5 13408 \N +527727 2025-11-21 16:03:46.936968+00 2025-11-21 16:03:46.936976+00 f t SUBTOTAL 55000.00 1 13119 \N +527728 2025-11-21 16:03:46.938051+00 2025-11-21 16:03:46.938059+00 f t COSTO_SERVICIO 0.00 2 13119 \N +527729 2025-11-21 16:03:46.938722+00 2025-11-21 16:03:46.938727+00 f t DESCUENTO 0.00 3 13119 \N +527730 2025-11-21 16:03:46.939511+00 2025-11-21 16:03:46.939516+00 f t TOTAL 55000.00 4 13119 \N +527731 2025-11-21 16:03:46.940161+00 2025-11-21 16:03:46.940166+00 f t ADELANTO 11000.00 5 13119 \N +510697 2025-11-18 18:45:24.749101+00 2025-11-18 18:45:24.749107+00 f t SUBTOTAL 55000.00 1 12713 \N +510698 2025-11-18 18:45:24.750657+00 2025-11-18 18:45:24.750663+00 f t COSTO_SERVICIO 0.00 2 12713 \N +510699 2025-11-18 18:45:24.75189+00 2025-11-18 18:45:24.751895+00 f t DESCUENTO 0.00 3 12713 \N +510700 2025-11-18 18:45:24.75315+00 2025-11-18 18:45:24.753156+00 f t TOTAL 55000.00 4 12713 \N +510701 2025-11-18 18:45:24.754231+00 2025-11-18 18:45:24.754236+00 f t ADELANTO 11000.00 5 12713 \N +510717 2025-11-18 18:57:39.22201+00 2025-11-18 18:57:39.222023+00 f t SUBTOTAL 0.00 1 12714 \N +510718 2025-11-18 18:57:39.224448+00 2025-11-18 18:57:39.224457+00 f t COSTO_SERVICIO 0.00 2 12714 \N +510719 2025-11-18 18:57:39.225773+00 2025-11-18 18:57:39.225779+00 f t DESCUENTO 0.00 3 12714 \N +510720 2025-11-18 18:57:39.226957+00 2025-11-18 18:57:39.226968+00 f t TOTAL 0.00 4 12714 \N +510721 2025-11-18 18:57:39.228171+00 2025-11-18 18:57:39.228177+00 f t ADELANTO 0.00 5 12714 \N +528892 2025-11-21 19:22:51.360724+00 2025-11-21 19:22:51.360731+00 f t SUBTOTAL 54000.00 1 13148 \N +528893 2025-11-21 19:22:51.362384+00 2025-11-21 19:22:51.362391+00 f t COSTO_SERVICIO 0.00 2 13148 \N +528894 2025-11-21 19:22:51.363789+00 2025-11-21 19:22:51.363794+00 f t DESCUENTO 0.00 3 13148 \N +528895 2025-11-21 19:22:51.364675+00 2025-11-21 19:22:51.364681+00 f t TOTAL 54000.00 4 13148 \N +528896 2025-11-21 19:22:51.365633+00 2025-11-21 19:22:51.365639+00 f t ADELANTO 13500.00 5 13148 \N +510752 2025-11-18 18:59:07.498011+00 2025-11-18 18:59:07.498021+00 f t SUBTOTAL 0.00 1 12715 \N +510753 2025-11-18 18:59:07.500078+00 2025-11-18 18:59:07.500086+00 f t COSTO_SERVICIO 0.00 2 12715 \N +510754 2025-11-18 18:59:07.501453+00 2025-11-18 18:59:07.501459+00 f t DESCUENTO 0.00 3 12715 \N +510755 2025-11-18 18:59:07.502729+00 2025-11-18 18:59:07.502737+00 f t TOTAL 0.00 4 12715 \N +510756 2025-11-18 18:59:07.504011+00 2025-11-18 18:59:07.504017+00 f t ADELANTO 0.00 5 12715 \N +510772 2025-11-18 19:20:07.752164+00 2025-11-18 19:20:07.752178+00 f t SUBTOTAL 0.00 1 12716 \N +510773 2025-11-18 19:20:07.755381+00 2025-11-18 19:20:07.755394+00 f t COSTO_SERVICIO 0.00 2 12716 \N +510774 2025-11-18 19:20:07.757344+00 2025-11-18 19:20:07.757353+00 f t DESCUENTO 0.00 3 12716 \N +510775 2025-11-18 19:20:07.758968+00 2025-11-18 19:20:07.758975+00 f t TOTAL 0.00 4 12716 \N +510776 2025-11-18 19:20:07.760663+00 2025-11-18 19:20:07.760669+00 f t ADELANTO 0.00 5 12716 \N +529202 2025-11-21 19:44:35.017322+00 2025-11-21 19:44:35.017331+00 f t SUBTOTAL 0.00 1 13155 \N +529203 2025-11-21 19:44:35.018693+00 2025-11-21 19:44:35.0187+00 f t COSTO_SERVICIO 0.00 2 13155 \N +529204 2025-11-21 19:44:35.019839+00 2025-11-21 19:44:35.019845+00 f t DESCUENTO 0.00 3 13155 \N +529205 2025-11-21 19:44:35.020963+00 2025-11-21 19:44:35.020968+00 f t TOTAL 0.00 4 13155 \N +529206 2025-11-21 19:44:35.022106+00 2025-11-21 19:44:35.022112+00 f t ADELANTO 0.00 5 13155 \N +523797 2025-11-20 21:39:09.936016+00 2025-11-20 21:39:09.936028+00 f t SUBTOTAL 55000.00 1 13027 \N +523798 2025-11-20 21:39:09.938413+00 2025-11-20 21:39:09.938424+00 f t COSTO_SERVICIO 0.00 2 13027 \N +523799 2025-11-20 21:39:09.940094+00 2025-11-20 21:39:09.940101+00 f t DESCUENTO 0.00 3 13027 \N +523800 2025-11-20 21:39:09.94124+00 2025-11-20 21:39:09.941248+00 f t TOTAL 55000.00 4 13027 \N +523801 2025-11-20 21:39:09.942383+00 2025-11-20 21:39:09.942389+00 f t ADELANTO 11000.00 5 13027 \N +510842 2025-11-18 19:22:20.002556+00 2025-11-18 19:22:20.002568+00 f t SUBTOTAL 0.00 1 12717 \N +510843 2025-11-18 19:22:20.005294+00 2025-11-18 19:22:20.005305+00 f t COSTO_SERVICIO 0.00 2 12717 \N +510844 2025-11-18 19:22:20.006864+00 2025-11-18 19:22:20.006873+00 f t DESCUENTO 0.00 3 12717 \N +510845 2025-11-18 19:22:20.011968+00 2025-11-18 19:22:20.01198+00 f t TOTAL 0.00 4 12717 \N +510846 2025-11-18 19:22:20.01391+00 2025-11-18 19:22:20.01392+00 f t ADELANTO 0.00 5 12717 \N +524867 2025-11-21 00:51:31.742454+00 2025-11-21 00:51:31.742463+00 f t SUBTOTAL 54000.00 1 13055 \N +524868 2025-11-21 00:51:31.74431+00 2025-11-21 00:51:31.744318+00 f t COSTO_SERVICIO 0.00 2 13055 \N +524869 2025-11-21 00:51:31.745656+00 2025-11-21 00:51:31.745665+00 f t DESCUENTO 0.00 3 13055 \N +524870 2025-11-21 00:51:31.746963+00 2025-11-21 00:51:31.746969+00 f t TOTAL 54000.00 4 13055 \N +524871 2025-11-21 00:51:31.748294+00 2025-11-21 00:51:31.748303+00 f t ADELANTO 13500.00 5 13055 \N +510862 2025-11-18 19:25:38.475856+00 2025-11-18 19:25:38.475875+00 f t SUBTOTAL 139750.00 1 12718 \N +510863 2025-11-18 19:25:38.477639+00 2025-11-18 19:25:38.477646+00 f t COSTO_SERVICIO 0.00 2 12718 \N +510864 2025-11-18 19:25:38.4793+00 2025-11-18 19:25:38.479307+00 f t DESCUENTO 0.00 3 12718 \N +510865 2025-11-18 19:25:38.480845+00 2025-11-18 19:25:38.480853+00 f t TOTAL 139750.00 4 12718 \N +510866 2025-11-18 19:25:38.482231+00 2025-11-18 19:25:38.482237+00 f t ADELANTO 29750.00 5 12718 \N +537462 2025-11-24 02:12:02.456116+00 2025-11-24 02:12:02.456127+00 f t SUBTOTAL 70000.00 1 13346 \N +537463 2025-11-24 02:12:02.458527+00 2025-11-24 02:12:02.458537+00 f t COSTO_SERVICIO 0.00 2 13346 \N +537464 2025-11-24 02:12:02.460266+00 2025-11-24 02:12:02.460277+00 f t DESCUENTO 0.00 3 13346 \N +537465 2025-11-24 02:12:02.462122+00 2025-11-24 02:12:02.462133+00 f t TOTAL 70000.00 4 13346 \N +537466 2025-11-24 02:12:02.463868+00 2025-11-24 02:12:02.463878+00 f t ADELANTO 19000.00 5 13346 \N +513872 2025-11-19 04:37:10.140973+00 2025-11-19 04:37:10.140981+00 f t SUBTOTAL 0.00 1 12790 \N +513873 2025-11-19 04:37:10.142892+00 2025-11-19 04:37:10.142902+00 f t COSTO_SERVICIO 0.00 2 12790 \N +513874 2025-11-19 04:37:10.144474+00 2025-11-19 04:37:10.14448+00 f t DESCUENTO 0.00 3 12790 \N +513875 2025-11-19 04:37:10.145614+00 2025-11-19 04:37:10.14562+00 f t TOTAL 0.00 4 12790 \N +513876 2025-11-19 04:37:10.146763+00 2025-11-19 04:37:10.146768+00 f t ADELANTO 0.00 5 12790 \N +514397 2025-11-19 10:40:44.426705+00 2025-11-19 10:40:44.426717+00 f t SUBTOTAL 153000.00 1 12803 \N +514398 2025-11-19 10:40:44.428417+00 2025-11-19 10:40:44.428422+00 f t COSTO_SERVICIO 0.00 2 12803 \N +510897 2025-11-18 19:28:11.790035+00 2025-11-18 19:28:11.790044+00 f t SUBTOTAL 0.00 1 12719 \N +510898 2025-11-18 19:28:11.792052+00 2025-11-18 19:28:11.792058+00 f t COSTO_SERVICIO 0.00 2 12719 \N +510899 2025-11-18 19:28:11.793205+00 2025-11-18 19:28:11.793211+00 f t DESCUENTO 0.00 3 12719 \N +510900 2025-11-18 19:28:11.794557+00 2025-11-18 19:28:11.794562+00 f t TOTAL 0.00 4 12719 \N +510901 2025-11-18 19:28:11.795772+00 2025-11-18 19:28:11.795777+00 f t ADELANTO 0.00 5 12719 \N +514399 2025-11-19 10:40:44.429623+00 2025-11-19 10:40:44.429635+00 f t DESCUENTO 0.00 3 12803 \N +514400 2025-11-19 10:40:44.430885+00 2025-11-19 10:40:44.430891+00 f t TOTAL 153000.00 4 12803 \N +514401 2025-11-19 10:40:44.431881+00 2025-11-19 10:40:44.431885+00 f t ADELANTO 29500.00 5 12803 \N +515262 2025-11-19 12:56:15.722198+00 2025-11-19 12:56:15.722208+00 f t SUBTOTAL 0.00 1 12821 \N +515263 2025-11-19 12:56:15.724415+00 2025-11-19 12:56:15.724422+00 f t COSTO_SERVICIO 0.00 2 12821 \N +515264 2025-11-19 12:56:15.725701+00 2025-11-19 12:56:15.725707+00 f t DESCUENTO 0.00 3 12821 \N +515265 2025-11-19 12:56:15.726829+00 2025-11-19 12:56:15.726835+00 f t TOTAL 0.00 4 12821 \N +515266 2025-11-19 12:56:15.727876+00 2025-11-19 12:56:15.727881+00 f t ADELANTO 0.00 5 12821 \N +510967 2025-11-18 19:31:50.561231+00 2025-11-18 19:31:50.561243+00 f t SUBTOTAL 70000.00 1 12720 \N +510968 2025-11-18 19:31:50.563551+00 2025-11-18 19:31:50.563563+00 f t COSTO_SERVICIO 0.00 2 12720 \N +510969 2025-11-18 19:31:50.565425+00 2025-11-18 19:31:50.565436+00 f t DESCUENTO 0.00 3 12720 \N +510970 2025-11-18 19:31:50.566983+00 2025-11-18 19:31:50.566993+00 f t TOTAL 70000.00 4 12720 \N +510971 2025-11-18 19:31:50.568822+00 2025-11-18 19:31:50.568831+00 f t ADELANTO 19000.00 5 12720 \N +510977 2025-11-18 19:36:52.058767+00 2025-11-18 19:36:52.058776+00 f t SUBTOTAL 0.00 1 12721 \N +510978 2025-11-18 19:36:52.060354+00 2025-11-18 19:36:52.060361+00 f t COSTO_SERVICIO 0.00 2 12721 \N +510979 2025-11-18 19:36:52.061748+00 2025-11-18 19:36:52.061755+00 f t DESCUENTO 0.00 3 12721 \N +510980 2025-11-18 19:36:52.06283+00 2025-11-18 19:36:52.06284+00 f t TOTAL 0.00 4 12721 \N +510981 2025-11-18 19:36:52.063993+00 2025-11-18 19:36:52.063998+00 f t ADELANTO 0.00 5 12721 \N +510987 2025-11-18 19:38:20.877823+00 2025-11-18 19:38:20.877831+00 f t SUBTOTAL 0.00 1 12722 \N +510988 2025-11-18 19:38:20.879238+00 2025-11-18 19:38:20.879244+00 f t COSTO_SERVICIO 0.00 2 12722 \N +510989 2025-11-18 19:38:20.880273+00 2025-11-18 19:38:20.88028+00 f t DESCUENTO 0.00 3 12722 \N +510990 2025-11-18 19:38:20.881385+00 2025-11-18 19:38:20.881391+00 f t TOTAL 0.00 4 12722 \N +510991 2025-11-18 19:38:20.882341+00 2025-11-18 19:38:20.882346+00 f t ADELANTO 0.00 5 12722 \N +516987 2025-11-19 16:30:47.519604+00 2025-11-19 16:30:47.519615+00 f t SUBTOTAL 70000.00 1 12863 \N +516988 2025-11-19 16:30:47.521506+00 2025-11-19 16:30:47.521513+00 f t COSTO_SERVICIO 0.00 2 12863 \N +516989 2025-11-19 16:30:47.522817+00 2025-11-19 16:30:47.522825+00 f t DESCUENTO 0.00 3 12863 \N +516990 2025-11-19 16:30:47.524243+00 2025-11-19 16:30:47.524249+00 f t TOTAL 70000.00 4 12863 \N +516991 2025-11-19 16:30:47.525347+00 2025-11-19 16:30:47.525355+00 f t ADELANTO 19000.00 5 12863 \N +528672 2025-11-21 18:33:51.67342+00 2025-11-21 18:33:51.673426+00 f t SUBTOTAL 121000.00 1 13101 \N +528673 2025-11-21 18:33:51.67508+00 2025-11-21 18:33:51.675088+00 f t COSTO_SERVICIO 0.00 2 13101 \N +528674 2025-11-21 18:33:51.676435+00 2025-11-21 18:33:51.67644+00 f t DESCUENTO 0.00 3 13101 \N +528675 2025-11-21 18:33:51.677393+00 2025-11-21 18:33:51.6774+00 f t TOTAL 121000.00 4 13101 \N +528676 2025-11-21 18:33:51.678481+00 2025-11-21 18:33:51.678487+00 f t ADELANTO 26000.00 5 13101 \N +529327 2025-11-21 20:49:27.284067+00 2025-11-21 20:49:27.284075+00 f t SUBTOTAL 13200.00 1 13161 \N +529328 2025-11-21 20:49:27.285894+00 2025-11-21 20:49:27.285902+00 f t COSTO_SERVICIO 0.00 2 13161 \N +529329 2025-11-21 20:49:27.286988+00 2025-11-21 20:49:27.286994+00 f t DESCUENTO 0.00 3 13161 \N +529330 2025-11-21 20:49:27.288033+00 2025-11-21 20:49:27.288038+00 f t TOTAL 13200.00 4 13161 \N +529331 2025-11-21 20:49:27.289118+00 2025-11-21 20:49:27.289124+00 f t ADELANTO 13200.00 5 13161 \N +518802 2025-11-19 21:47:17.453163+00 2025-11-19 21:47:17.453172+00 f t SUBTOTAL 0.00 1 12909 \N +518803 2025-11-19 21:47:17.454646+00 2025-11-19 21:47:17.454653+00 f t COSTO_SERVICIO 0.00 2 12909 \N +518804 2025-11-19 21:47:17.455832+00 2025-11-19 21:47:17.455838+00 f t DESCUENTO 0.00 3 12909 \N +518805 2025-11-19 21:47:17.457492+00 2025-11-19 21:47:17.457498+00 f t TOTAL 0.00 4 12909 \N +512242 2025-11-18 22:26:40.62207+00 2025-11-18 22:26:40.622076+00 f t SUBTOTAL 78000.00 1 12750 \N +512243 2025-11-18 22:26:40.623802+00 2025-11-18 22:26:40.623807+00 f t COSTO_SERVICIO 0.00 2 12750 \N +512244 2025-11-18 22:26:40.624756+00 2025-11-18 22:26:40.62476+00 f t DESCUENTO 0.00 3 12750 \N +512245 2025-11-18 22:26:40.625607+00 2025-11-18 22:26:40.625612+00 f t TOTAL 78000.00 4 12750 \N +512246 2025-11-18 22:26:40.62645+00 2025-11-18 22:26:40.626454+00 f t ADELANTO 21500.00 5 12750 \N +512502 2025-11-18 23:22:10.425515+00 2025-11-18 23:22:10.425524+00 f t SUBTOTAL 0.00 1 12757 \N +512503 2025-11-18 23:22:10.427435+00 2025-11-18 23:22:10.427442+00 f t COSTO_SERVICIO 0.00 2 12757 \N +512504 2025-11-18 23:22:10.428567+00 2025-11-18 23:22:10.428572+00 f t DESCUENTO 0.00 3 12757 \N +512505 2025-11-18 23:22:10.429629+00 2025-11-18 23:22:10.429635+00 f t TOTAL 0.00 4 12757 \N +512506 2025-11-18 23:22:10.430795+00 2025-11-18 23:22:10.4308+00 f t ADELANTO 0.00 5 12757 \N +511157 2025-11-18 19:49:09.358358+00 2025-11-18 19:49:09.358364+00 f t SUBTOTAL 77500.00 1 12724 \N +511158 2025-11-18 19:49:09.359802+00 2025-11-18 19:49:09.359808+00 f t COSTO_SERVICIO 0.00 2 12724 \N +511159 2025-11-18 19:49:09.360845+00 2025-11-18 19:49:09.36085+00 f t DESCUENTO 0.00 3 12724 \N +511160 2025-11-18 19:49:09.361921+00 2025-11-18 19:49:09.361926+00 f t TOTAL 77500.00 4 12724 \N +511161 2025-11-18 19:49:09.362922+00 2025-11-18 19:49:09.362927+00 f t ADELANTO 42500.00 5 12724 \N +514227 2025-11-19 10:05:20.935438+00 2025-11-19 10:05:20.935448+00 f t SUBTOTAL 88000.00 1 12799 \N +511182 2025-11-18 19:49:47.734553+00 2025-11-18 19:49:47.734563+00 f t SUBTOTAL 55000.00 1 12723 \N +511183 2025-11-18 19:49:47.736201+00 2025-11-18 19:49:47.73621+00 f t COSTO_SERVICIO 0.00 2 12723 \N +511184 2025-11-18 19:49:47.737369+00 2025-11-18 19:49:47.737376+00 f t DESCUENTO 0.00 3 12723 \N +511185 2025-11-18 19:49:47.738386+00 2025-11-18 19:49:47.738393+00 f t TOTAL 55000.00 4 12723 \N +511186 2025-11-18 19:49:47.739385+00 2025-11-18 19:49:47.739392+00 f t ADELANTO 11000.00 5 12723 \N +514228 2025-11-19 10:05:20.937235+00 2025-11-19 10:05:20.937243+00 f t COSTO_SERVICIO 0.00 2 12799 \N +514229 2025-11-19 10:05:20.938431+00 2025-11-19 10:05:20.93844+00 f t DESCUENTO 0.00 3 12799 \N +514230 2025-11-19 10:05:20.939575+00 2025-11-19 10:05:20.939584+00 f t TOTAL 88000.00 4 12799 \N +514231 2025-11-19 10:05:20.940766+00 2025-11-19 10:05:20.940773+00 f t ADELANTO 13000.00 5 12799 \N +516552 2025-11-19 15:02:41.181652+00 2025-11-19 15:02:41.18166+00 f t SUBTOTAL 70000.00 1 12851 \N +516553 2025-11-19 15:02:41.183543+00 2025-11-19 15:02:41.183554+00 f t COSTO_SERVICIO 0.00 2 12851 \N +516554 2025-11-19 15:02:41.185113+00 2025-11-19 15:02:41.185121+00 f t DESCUENTO 0.00 3 12851 \N +516555 2025-11-19 15:02:41.186966+00 2025-11-19 15:02:41.186975+00 f t TOTAL 70000.00 4 12851 \N +516556 2025-11-19 15:02:41.188296+00 2025-11-19 15:02:41.188302+00 f t ADELANTO 19000.00 5 12851 \N +516852 2025-11-19 16:22:57.711838+00 2025-11-19 16:22:57.711845+00 f t SUBTOTAL 70000.00 1 12859 \N +516853 2025-11-19 16:22:57.713729+00 2025-11-19 16:22:57.713738+00 f t COSTO_SERVICIO 0.00 2 12859 \N +516854 2025-11-19 16:22:57.715007+00 2025-11-19 16:22:57.715013+00 f t DESCUENTO 0.00 3 12859 \N +516855 2025-11-19 16:22:57.716101+00 2025-11-19 16:22:57.716106+00 f t TOTAL 70000.00 4 12859 \N +516856 2025-11-19 16:22:57.71696+00 2025-11-19 16:22:57.716964+00 f t ADELANTO 19000.00 5 12859 \N +516992 2025-11-19 16:34:22.891152+00 2025-11-19 16:34:22.891172+00 f t SUBTOTAL 55000.00 1 12861 \N +516993 2025-11-19 16:34:22.893001+00 2025-11-19 16:34:22.893008+00 f t COSTO_SERVICIO 0.00 2 12861 \N +516994 2025-11-19 16:34:22.894546+00 2025-11-19 16:34:22.894554+00 f t DESCUENTO 0.00 3 12861 \N +516995 2025-11-19 16:34:22.89593+00 2025-11-19 16:34:22.895937+00 f t TOTAL 55000.00 4 12861 \N +516996 2025-11-19 16:34:22.89748+00 2025-11-19 16:34:22.897487+00 f t ADELANTO 11000.00 5 12861 \N +517252 2025-11-19 17:46:40.862597+00 2025-11-19 17:46:40.862606+00 f t SUBTOTAL 46000.00 1 12868 \N +511292 2025-11-18 19:57:35.232427+00 2025-11-18 19:57:35.232434+00 f t SUBTOTAL 46000.00 1 12727 \N +511293 2025-11-18 19:57:35.234051+00 2025-11-18 19:57:35.234056+00 f t COSTO_SERVICIO 0.00 2 12727 \N +511294 2025-11-18 19:57:35.235388+00 2025-11-18 19:57:35.235394+00 f t DESCUENTO 0.00 3 12727 \N +511295 2025-11-18 19:57:35.236663+00 2025-11-18 19:57:35.236673+00 f t TOTAL 46000.00 4 12727 \N +511296 2025-11-18 19:57:35.237917+00 2025-11-18 19:57:35.237923+00 f t ADELANTO 11000.00 5 12727 \N +517253 2025-11-19 17:46:40.86368+00 2025-11-19 17:46:40.863686+00 f t COSTO_SERVICIO 0.00 2 12868 \N +517254 2025-11-19 17:46:40.864362+00 2025-11-19 17:46:40.864367+00 f t DESCUENTO 0.00 3 12868 \N +517255 2025-11-19 17:46:40.865111+00 2025-11-19 17:46:40.865116+00 f t TOTAL 46000.00 4 12868 \N +511317 2025-11-18 19:57:58.933966+00 2025-11-18 19:57:58.933975+00 f t SUBTOTAL 54000.00 1 12728 \N +511318 2025-11-18 19:57:58.935699+00 2025-11-18 19:57:58.935706+00 f t COSTO_SERVICIO 0.00 2 12728 \N +511319 2025-11-18 19:57:58.93699+00 2025-11-18 19:57:58.936997+00 f t DESCUENTO 0.00 3 12728 \N +511320 2025-11-18 19:57:58.938149+00 2025-11-18 19:57:58.938156+00 f t TOTAL 54000.00 4 12728 \N +511321 2025-11-18 19:57:58.93933+00 2025-11-18 19:57:58.939337+00 f t ADELANTO 13500.00 5 12728 \N +511322 2025-11-18 19:58:08.576848+00 2025-11-18 19:58:08.576859+00 f t SUBTOTAL 23000.00 1 12726 \N +511323 2025-11-18 19:58:08.578821+00 2025-11-18 19:58:08.578831+00 f t COSTO_SERVICIO 0.00 2 12726 \N +511324 2025-11-18 19:58:08.580463+00 2025-11-18 19:58:08.580473+00 f t DESCUENTO 0.00 3 12726 \N +511325 2025-11-18 19:58:08.582056+00 2025-11-18 19:58:08.582066+00 f t TOTAL 23000.00 4 12726 \N +511326 2025-11-18 19:58:08.583567+00 2025-11-18 19:58:08.583576+00 f t ADELANTO 5500.00 5 12726 \N +511372 2025-11-18 19:59:24.329193+00 2025-11-18 19:59:24.329203+00 f t SUBTOTAL 55000.00 1 12729 \N +511373 2025-11-18 19:59:24.3309+00 2025-11-18 19:59:24.330907+00 f t COSTO_SERVICIO 0.00 2 12729 \N +511374 2025-11-18 19:59:24.332153+00 2025-11-18 19:59:24.33216+00 f t DESCUENTO 0.00 3 12729 \N +511375 2025-11-18 19:59:24.333346+00 2025-11-18 19:59:24.333351+00 f t TOTAL 55000.00 4 12729 \N +511376 2025-11-18 19:59:24.3344+00 2025-11-18 19:59:24.334405+00 f t ADELANTO 11000.00 5 12729 \N +511382 2025-11-18 20:04:22.23494+00 2025-11-18 20:04:22.234949+00 f t SUBTOTAL 0.00 1 12730 \N +511383 2025-11-18 20:04:22.236533+00 2025-11-18 20:04:22.23654+00 f t COSTO_SERVICIO 0.00 2 12730 \N +511384 2025-11-18 20:04:22.237778+00 2025-11-18 20:04:22.237789+00 f t DESCUENTO 0.00 3 12730 \N +511385 2025-11-18 20:04:22.238955+00 2025-11-18 20:04:22.238964+00 f t TOTAL 0.00 4 12730 \N +511386 2025-11-18 20:04:22.240115+00 2025-11-18 20:04:22.240121+00 f t ADELANTO 0.00 5 12730 \N +511392 2025-11-18 20:07:13.706615+00 2025-11-18 20:07:13.706623+00 f t SUBTOTAL 0.00 1 12731 \N +511393 2025-11-18 20:07:13.708331+00 2025-11-18 20:07:13.708339+00 f t COSTO_SERVICIO 0.00 2 12731 \N +511394 2025-11-18 20:07:13.709841+00 2025-11-18 20:07:13.709849+00 f t DESCUENTO 0.00 3 12731 \N +511395 2025-11-18 20:07:13.711121+00 2025-11-18 20:07:13.711141+00 f t TOTAL 0.00 4 12731 \N +511396 2025-11-18 20:07:13.712427+00 2025-11-18 20:07:13.712433+00 f t ADELANTO 0.00 5 12731 \N +511402 2025-11-18 20:07:17.63716+00 2025-11-18 20:07:17.637169+00 f t SUBTOTAL 0.00 1 12732 \N +511403 2025-11-18 20:07:17.638819+00 2025-11-18 20:07:17.638827+00 f t COSTO_SERVICIO 0.00 2 12732 \N +511404 2025-11-18 20:07:17.640269+00 2025-11-18 20:07:17.640276+00 f t DESCUENTO 0.00 3 12732 \N +511405 2025-11-18 20:07:17.641486+00 2025-11-18 20:07:17.641492+00 f t TOTAL 0.00 4 12732 \N +511406 2025-11-18 20:07:17.642579+00 2025-11-18 20:07:17.642584+00 f t ADELANTO 0.00 5 12732 \N +524092 2025-11-20 22:49:58.59685+00 2025-11-20 22:49:58.596858+00 f t SUBTOTAL 133500.00 1 13039 \N +524093 2025-11-20 22:49:58.598655+00 2025-11-20 22:49:58.598664+00 f t COSTO_SERVICIO 0.00 2 13039 \N +524094 2025-11-20 22:49:58.600057+00 2025-11-20 22:49:58.600063+00 f t DESCUENTO 0.00 3 13039 \N +524095 2025-11-20 22:49:58.601181+00 2025-11-20 22:49:58.601187+00 f t TOTAL 133500.00 4 13039 \N +524096 2025-11-20 22:49:58.602211+00 2025-11-20 22:49:58.602216+00 f t ADELANTO 28500.00 5 13039 \N +512512 2025-11-18 23:24:08.64764+00 2025-11-18 23:24:08.647649+00 f t SUBTOTAL 0.00 1 12758 \N +512513 2025-11-18 23:24:08.649117+00 2025-11-18 23:24:08.649123+00 f t COSTO_SERVICIO 0.00 2 12758 \N +512514 2025-11-18 23:24:08.650446+00 2025-11-18 23:24:08.650456+00 f t DESCUENTO 0.00 3 12758 \N +512515 2025-11-18 23:24:08.651834+00 2025-11-18 23:24:08.65184+00 f t TOTAL 0.00 4 12758 \N +512516 2025-11-18 23:24:08.652879+00 2025-11-18 23:24:08.652885+00 f t ADELANTO 0.00 5 12758 \N +511437 2025-11-18 20:10:01.86375+00 2025-11-18 20:10:01.863765+00 f t SUBTOTAL 70000.00 1 12733 \N +511438 2025-11-18 20:10:01.877442+00 2025-11-18 20:10:01.877455+00 f t COSTO_SERVICIO 0.00 2 12733 \N +511439 2025-11-18 20:10:01.881039+00 2025-11-18 20:10:01.881064+00 f t DESCUENTO 0.00 3 12733 \N +511440 2025-11-18 20:10:01.884325+00 2025-11-18 20:10:01.884338+00 f t TOTAL 70000.00 4 12733 \N +511441 2025-11-18 20:10:01.888329+00 2025-11-18 20:10:01.888341+00 f t ADELANTO 19000.00 5 12733 \N +511452 2025-11-18 20:10:51.279346+00 2025-11-18 20:10:51.279355+00 f t SUBTOTAL 120000.00 1 12734 \N +511453 2025-11-18 20:10:51.281144+00 2025-11-18 20:10:51.281153+00 f t COSTO_SERVICIO 0.00 2 12734 \N +511454 2025-11-18 20:10:51.282664+00 2025-11-18 20:10:51.282673+00 f t DESCUENTO 0.00 3 12734 \N +511455 2025-11-18 20:10:51.284012+00 2025-11-18 20:10:51.284019+00 f t TOTAL 120000.00 4 12734 \N +511456 2025-11-18 20:10:51.28518+00 2025-11-18 20:10:51.285186+00 f t ADELANTO 10000.00 5 12734 \N +526807 2025-11-21 12:41:02.699283+00 2025-11-21 12:41:02.699291+00 f t SUBTOTAL 55000.00 1 13096 \N +526808 2025-11-21 12:41:02.700499+00 2025-11-21 12:41:02.700508+00 f t COSTO_SERVICIO 0.00 2 13096 \N +526809 2025-11-21 12:41:02.701291+00 2025-11-21 12:41:02.701298+00 f t DESCUENTO 0.00 3 13096 \N +526810 2025-11-21 12:41:02.702189+00 2025-11-21 12:41:02.702198+00 f t TOTAL 55000.00 4 13096 \N +526811 2025-11-21 12:41:02.703051+00 2025-11-21 12:41:02.703059+00 f t ADELANTO 11000.00 5 13096 \N +527477 2025-11-21 14:55:15.926896+00 2025-11-21 14:55:15.926904+00 f t SUBTOTAL 70000.00 1 13111 \N +527478 2025-11-21 14:55:15.928717+00 2025-11-21 14:55:15.928723+00 f t COSTO_SERVICIO 0.00 2 13111 \N +527479 2025-11-21 14:55:15.929814+00 2025-11-21 14:55:15.929819+00 f t DESCUENTO 0.00 3 13111 \N +527480 2025-11-21 14:55:15.930791+00 2025-11-21 14:55:15.930796+00 f t TOTAL 70000.00 4 13111 \N +527481 2025-11-21 14:55:15.931756+00 2025-11-21 14:55:15.931761+00 f t ADELANTO 19000.00 5 13111 \N +515917 2025-11-19 13:37:04.036609+00 2025-11-19 13:37:04.036619+00 f t SUBTOTAL 102100.00 1 12833 \N +515918 2025-11-19 13:37:04.037869+00 2025-11-19 13:37:04.037877+00 f t COSTO_SERVICIO 0.00 2 12833 \N +515919 2025-11-19 13:37:04.038706+00 2025-11-19 13:37:04.038713+00 f t DESCUENTO 0.00 3 12833 \N +515920 2025-11-19 13:37:04.039481+00 2025-11-19 13:37:04.039487+00 f t TOTAL 102100.00 4 12833 \N +515921 2025-11-19 13:37:04.040177+00 2025-11-19 13:37:04.040183+00 f t ADELANTO 24100.00 5 12833 \N +511562 2025-11-18 20:24:19.613528+00 2025-11-18 20:24:19.613536+00 f t SUBTOTAL 55000.00 1 12735 \N +511563 2025-11-18 20:24:19.615328+00 2025-11-18 20:24:19.615336+00 f t COSTO_SERVICIO 0.00 2 12735 \N +511564 2025-11-18 20:24:19.616797+00 2025-11-18 20:24:19.616803+00 f t DESCUENTO 0.00 3 12735 \N +511565 2025-11-18 20:24:19.617982+00 2025-11-18 20:24:19.617987+00 f t TOTAL 55000.00 4 12735 \N +511566 2025-11-18 20:24:19.619102+00 2025-11-18 20:24:19.619107+00 f t ADELANTO 11000.00 5 12735 \N +511567 2025-11-18 20:28:25.966648+00 2025-11-18 20:28:25.966655+00 f t SUBTOTAL 55000.00 1 12725 \N +511568 2025-11-18 20:28:25.968267+00 2025-11-18 20:28:25.968272+00 f t COSTO_SERVICIO 0.00 2 12725 \N +511569 2025-11-18 20:28:25.969255+00 2025-11-18 20:28:25.969261+00 f t DESCUENTO 0.00 3 12725 \N +511570 2025-11-18 20:28:25.97033+00 2025-11-18 20:28:25.970335+00 f t TOTAL 55000.00 4 12725 \N +511571 2025-11-18 20:28:25.971321+00 2025-11-18 20:28:25.971327+00 f t ADELANTO 11000.00 5 12725 \N +528362 2025-11-21 18:17:20.419395+00 2025-11-21 18:17:20.419404+00 f t SUBTOTAL 0.00 1 13137 \N +528363 2025-11-21 18:17:20.421327+00 2025-11-21 18:17:20.421334+00 f t COSTO_SERVICIO 0.00 2 13137 \N +528364 2025-11-21 18:17:20.422475+00 2025-11-21 18:17:20.422484+00 f t DESCUENTO 0.00 3 13137 \N +528365 2025-11-21 18:17:20.423427+00 2025-11-21 18:17:20.423432+00 f t TOTAL 0.00 4 13137 \N +528366 2025-11-21 18:17:20.424777+00 2025-11-21 18:17:20.424784+00 f t ADELANTO 0.00 5 13137 \N +517256 2025-11-19 17:46:40.86585+00 2025-11-19 17:46:40.865855+00 f t ADELANTO 11000.00 5 12868 \N +517627 2025-11-19 18:49:48.040796+00 2025-11-19 18:49:48.040803+00 f t SUBTOTAL 78000.00 1 12877 \N +517628 2025-11-19 18:49:48.042697+00 2025-11-19 18:49:48.042703+00 f t COSTO_SERVICIO 0.00 2 12877 \N +517629 2025-11-19 18:49:48.043773+00 2025-11-19 18:49:48.043779+00 f t DESCUENTO 0.00 3 12877 \N +517630 2025-11-19 18:49:48.044681+00 2025-11-19 18:49:48.044688+00 f t TOTAL 78000.00 4 12877 \N +517631 2025-11-19 18:49:48.045718+00 2025-11-19 18:49:48.045723+00 f t ADELANTO 13000.00 5 12877 \N +529217 2025-11-21 19:53:13.557409+00 2025-11-21 19:53:13.557416+00 f t SUBTOTAL 55000.00 1 13156 \N +529218 2025-11-21 19:53:13.559324+00 2025-11-21 19:53:13.559331+00 f t COSTO_SERVICIO 0.00 2 13156 \N +529219 2025-11-21 19:53:13.560501+00 2025-11-21 19:53:13.560508+00 f t DESCUENTO 0.00 3 13156 \N +529220 2025-11-21 19:53:13.561485+00 2025-11-21 19:53:13.561489+00 f t TOTAL 55000.00 4 13156 \N +529221 2025-11-21 19:53:13.562455+00 2025-11-21 19:53:13.562461+00 f t ADELANTO 11000.00 5 13156 \N +518112 2025-11-19 20:25:56.250457+00 2025-11-19 20:25:56.250466+00 f t SUBTOTAL 0.00 1 12891 \N +518113 2025-11-19 20:25:56.251856+00 2025-11-19 20:25:56.251862+00 f t COSTO_SERVICIO 0.00 2 12891 \N +518114 2025-11-19 20:25:56.253174+00 2025-11-19 20:25:56.253182+00 f t DESCUENTO 0.00 3 12891 \N +518115 2025-11-19 20:25:56.25425+00 2025-11-19 20:25:56.254255+00 f t TOTAL 0.00 4 12891 \N +518116 2025-11-19 20:25:56.255199+00 2025-11-19 20:25:56.255205+00 f t ADELANTO 0.00 5 12891 \N +518657 2025-11-19 20:59:03.941009+00 2025-11-19 20:59:03.94102+00 f t SUBTOTAL 55000.00 1 12903 \N +518658 2025-11-19 20:59:03.942985+00 2025-11-19 20:59:03.942995+00 f t COSTO_SERVICIO 0.00 2 12903 \N +518659 2025-11-19 20:59:03.944474+00 2025-11-19 20:59:03.944483+00 f t DESCUENTO 0.00 3 12903 \N +518660 2025-11-19 20:59:03.945831+00 2025-11-19 20:59:03.945847+00 f t TOTAL 55000.00 4 12903 \N +518661 2025-11-19 20:59:03.947099+00 2025-11-19 20:59:03.947106+00 f t ADELANTO 11000.00 5 12903 \N +518822 2025-11-19 21:47:32.504323+00 2025-11-19 21:47:32.504332+00 f t SUBTOTAL 120000.00 1 12908 \N +518823 2025-11-19 21:47:32.505863+00 2025-11-19 21:47:32.50587+00 f t COSTO_SERVICIO 0.00 2 12908 \N +518824 2025-11-19 21:47:32.507046+00 2025-11-19 21:47:32.507051+00 f t DESCUENTO 0.00 3 12908 \N +518825 2025-11-19 21:47:32.508221+00 2025-11-19 21:47:32.50823+00 f t TOTAL 120000.00 4 12908 \N +518826 2025-11-19 21:47:32.50952+00 2025-11-19 21:47:32.509526+00 f t ADELANTO 10000.00 5 12908 \N +518872 2025-11-19 22:04:55.067932+00 2025-11-19 22:04:55.067945+00 f t SUBTOTAL 0.00 1 12910 \N +518873 2025-11-19 22:04:55.070274+00 2025-11-19 22:04:55.070285+00 f t COSTO_SERVICIO 0.00 2 12910 \N +518874 2025-11-19 22:04:55.071564+00 2025-11-19 22:04:55.071572+00 f t DESCUENTO 0.00 3 12910 \N +518875 2025-11-19 22:04:55.072871+00 2025-11-19 22:04:55.072879+00 f t TOTAL 0.00 4 12910 \N +518876 2025-11-19 22:04:55.074147+00 2025-11-19 22:04:55.074155+00 f t ADELANTO 0.00 5 12910 \N +526112 2025-11-21 11:02:56.719937+00 2025-11-21 11:02:56.719944+00 f t SUBTOTAL 70000.00 1 13084 \N +526113 2025-11-21 11:02:56.721709+00 2025-11-21 11:02:56.721718+00 f t COSTO_SERVICIO 0.00 2 13084 \N +526114 2025-11-21 11:02:56.72281+00 2025-11-21 11:02:56.722815+00 f t DESCUENTO 0.00 3 13084 \N +526115 2025-11-21 11:02:56.723897+00 2025-11-21 11:02:56.723902+00 f t TOTAL 70000.00 4 13084 \N +526116 2025-11-21 11:02:56.724922+00 2025-11-21 11:02:56.724927+00 f t ADELANTO 19000.00 5 13084 \N +518912 2025-11-19 22:38:46.123755+00 2025-11-19 22:38:46.123765+00 f t SUBTOTAL 78000.00 1 12911 \N +518913 2025-11-19 22:38:46.125684+00 2025-11-19 22:38:46.125692+00 f t COSTO_SERVICIO 0.00 2 12911 \N +518914 2025-11-19 22:38:46.127167+00 2025-11-19 22:38:46.127175+00 f t DESCUENTO 0.00 3 12911 \N +518915 2025-11-19 22:38:46.12845+00 2025-11-19 22:38:46.128457+00 f t TOTAL 78000.00 4 12911 \N +518916 2025-11-19 22:38:46.129726+00 2025-11-19 22:38:46.129734+00 f t ADELANTO 21500.00 5 12911 \N +527092 2025-11-21 14:02:29.580091+00 2025-11-21 14:02:29.580112+00 f t SUBTOTAL 60000.00 1 13103 \N +527093 2025-11-21 14:02:29.582152+00 2025-11-21 14:02:29.582159+00 f t COSTO_SERVICIO 0.00 2 13103 \N +527094 2025-11-21 14:02:29.583454+00 2025-11-21 14:02:29.58346+00 f t DESCUENTO 0.00 3 13103 \N +527095 2025-11-21 14:02:29.584543+00 2025-11-21 14:02:29.584549+00 f t TOTAL 60000.00 4 13103 \N +527096 2025-11-21 14:02:29.585575+00 2025-11-21 14:02:29.585581+00 f t ADELANTO 60000.00 5 13103 \N +539782 2025-11-24 14:05:40.538933+00 2025-11-24 14:05:40.538941+00 f t SUBTOTAL 0.00 1 13398 \N +539783 2025-11-24 14:05:40.540239+00 2025-11-24 14:05:40.540245+00 f t COSTO_SERVICIO 0.00 2 13398 \N +539784 2025-11-24 14:05:40.541405+00 2025-11-24 14:05:40.541411+00 f t DESCUENTO 0.00 3 13398 \N +539785 2025-11-24 14:05:40.542538+00 2025-11-24 14:05:40.542543+00 f t TOTAL 0.00 4 13398 \N +539786 2025-11-24 14:05:40.543524+00 2025-11-24 14:05:40.543529+00 f t ADELANTO 0.00 5 13398 \N +518962 2025-11-19 22:51:51.885767+00 2025-11-19 22:51:51.885774+00 f t SUBTOTAL 78000.00 1 12912 \N +518963 2025-11-19 22:51:51.887119+00 2025-11-19 22:51:51.887124+00 f t COSTO_SERVICIO 0.00 2 12912 \N +518964 2025-11-19 22:51:51.888072+00 2025-11-19 22:51:51.888077+00 f t DESCUENTO 0.00 3 12912 \N +518965 2025-11-19 22:51:51.889047+00 2025-11-19 22:51:51.889051+00 f t TOTAL 78000.00 4 12912 \N +518966 2025-11-19 22:51:51.890223+00 2025-11-19 22:51:51.89023+00 f t ADELANTO 21500.00 5 12912 \N +527487 2025-11-21 14:57:00.676672+00 2025-11-21 14:57:00.676684+00 f t SUBTOTAL 0.00 1 13112 \N +527488 2025-11-21 14:57:00.678316+00 2025-11-21 14:57:00.678327+00 f t COSTO_SERVICIO 0.00 2 13112 \N +527489 2025-11-21 14:57:00.679679+00 2025-11-21 14:57:00.679689+00 f t DESCUENTO 0.00 3 13112 \N +527490 2025-11-21 14:57:00.680926+00 2025-11-21 14:57:00.680934+00 f t TOTAL 0.00 4 13112 \N +527491 2025-11-21 14:57:00.682132+00 2025-11-21 14:57:00.68214+00 f t ADELANTO 0.00 5 13112 \N +528112 2025-11-21 16:32:46.92078+00 2025-11-21 16:32:46.920786+00 f t SUBTOTAL 108000.00 1 13127 \N +528113 2025-11-21 16:32:46.922369+00 2025-11-21 16:32:46.922377+00 f t COSTO_SERVICIO 0.00 2 13127 \N +528114 2025-11-21 16:32:46.923513+00 2025-11-21 16:32:46.923518+00 f t DESCUENTO 9200.00 3 13127 \N +528115 2025-11-21 16:32:46.924611+00 2025-11-21 16:32:46.924618+00 f t TOTAL 98800.00 4 13127 \N +528116 2025-11-21 16:32:46.926152+00 2025-11-21 16:32:46.926158+00 f t ADELANTO 27000.00 5 13127 \N +518997 2025-11-19 22:55:30.135226+00 2025-11-19 22:55:30.135232+00 f t SUBTOTAL 79000.00 1 12913 \N +518998 2025-11-19 22:55:30.136796+00 2025-11-19 22:55:30.136808+00 f t COSTO_SERVICIO 0.00 2 12913 \N +518999 2025-11-19 22:55:30.138069+00 2025-11-19 22:55:30.138076+00 f t DESCUENTO 0.00 3 12913 \N +519000 2025-11-19 22:55:30.139339+00 2025-11-19 22:55:30.139346+00 f t TOTAL 79000.00 4 12913 \N +519001 2025-11-19 22:55:30.140759+00 2025-11-19 22:55:30.140766+00 f t ADELANTO 17500.00 5 12913 \N +519007 2025-11-19 23:00:46.885182+00 2025-11-19 23:00:46.885195+00 f t SUBTOTAL 0.00 1 12914 \N +519008 2025-11-19 23:00:46.887268+00 2025-11-19 23:00:46.887279+00 f t COSTO_SERVICIO 0.00 2 12914 \N +519009 2025-11-19 23:00:46.889006+00 2025-11-19 23:00:46.889015+00 f t DESCUENTO 0.00 3 12914 \N +519010 2025-11-19 23:00:46.890217+00 2025-11-19 23:00:46.890223+00 f t TOTAL 0.00 4 12914 \N +519011 2025-11-19 23:00:46.891255+00 2025-11-19 23:00:46.891259+00 f t ADELANTO 0.00 5 12914 \N +528477 2025-11-21 18:24:26.019857+00 2025-11-21 18:24:26.019869+00 f t SUBTOTAL 0.00 1 13139 \N +528478 2025-11-21 18:24:26.022728+00 2025-11-21 18:24:26.02274+00 f t COSTO_SERVICIO 0.00 2 13139 \N +528479 2025-11-21 18:24:26.024488+00 2025-11-21 18:24:26.024497+00 f t DESCUENTO 0.00 3 13139 \N +528480 2025-11-21 18:24:26.025885+00 2025-11-21 18:24:26.025894+00 f t TOTAL 0.00 4 13139 \N +528481 2025-11-21 18:24:26.027164+00 2025-11-21 18:24:26.027172+00 f t ADELANTO 0.00 5 13139 \N +519037 2025-11-19 23:05:00.425502+00 2025-11-19 23:05:00.425511+00 f t SUBTOTAL 78000.00 1 12915 \N +519038 2025-11-19 23:05:00.427217+00 2025-11-19 23:05:00.427223+00 f t COSTO_SERVICIO 0.00 2 12915 \N +519039 2025-11-19 23:05:00.428543+00 2025-11-19 23:05:00.428548+00 f t DESCUENTO 0.00 3 12915 \N +519040 2025-11-19 23:05:00.429853+00 2025-11-19 23:05:00.429858+00 f t TOTAL 78000.00 4 12915 \N +519041 2025-11-19 23:05:00.431169+00 2025-11-19 23:05:00.431175+00 f t ADELANTO 13000.00 5 12915 \N +519047 2025-11-19 23:14:22.932885+00 2025-11-19 23:14:22.932895+00 f t SUBTOTAL 0.00 1 12916 \N +519048 2025-11-19 23:14:22.934295+00 2025-11-19 23:14:22.934302+00 f t COSTO_SERVICIO 0.00 2 12916 \N +519049 2025-11-19 23:14:22.935299+00 2025-11-19 23:14:22.935304+00 f t DESCUENTO 0.00 3 12916 \N +519050 2025-11-19 23:14:22.936138+00 2025-11-19 23:14:22.936143+00 f t TOTAL 0.00 4 12916 \N +519051 2025-11-19 23:14:22.937059+00 2025-11-19 23:14:22.937064+00 f t ADELANTO 0.00 5 12916 \N +529697 2025-11-21 21:39:48.563406+00 2025-11-21 21:39:48.563413+00 f t SUBTOTAL 62800.00 1 13167 \N +529698 2025-11-21 21:39:48.564865+00 2025-11-21 21:39:48.56487+00 f t COSTO_SERVICIO 0.00 2 13167 \N +529699 2025-11-21 21:39:48.56592+00 2025-11-21 21:39:48.565929+00 f t DESCUENTO 0.00 3 13167 \N +529700 2025-11-21 21:39:48.566932+00 2025-11-21 21:39:48.566937+00 f t TOTAL 62800.00 4 13167 \N +529701 2025-11-21 21:39:48.567833+00 2025-11-21 21:39:48.567839+00 f t ADELANTO 15800.00 5 13167 \N +535907 2025-11-23 19:20:41.021926+00 2025-11-23 19:20:41.021933+00 f t SUBTOTAL 46000.00 1 13312 \N +535908 2025-11-23 19:20:41.023585+00 2025-11-23 19:20:41.023591+00 f t COSTO_SERVICIO 0.00 2 13312 \N +535909 2025-11-23 19:20:41.024646+00 2025-11-23 19:20:41.024651+00 f t DESCUENTO 0.00 3 13312 \N +535910 2025-11-23 19:20:41.025556+00 2025-11-23 19:20:41.025563+00 f t TOTAL 46000.00 4 13312 \N +535911 2025-11-23 19:20:41.02654+00 2025-11-23 19:20:41.026545+00 f t ADELANTO 11000.00 5 13312 \N +519127 2025-11-19 23:28:52.008495+00 2025-11-19 23:28:52.008503+00 f t SUBTOTAL 0.00 1 12917 \N +519128 2025-11-19 23:28:52.010374+00 2025-11-19 23:28:52.010381+00 f t COSTO_SERVICIO 0.00 2 12917 \N +519129 2025-11-19 23:28:52.011546+00 2025-11-19 23:28:52.011552+00 f t DESCUENTO 0.00 3 12917 \N +519130 2025-11-19 23:28:52.012618+00 2025-11-19 23:28:52.012623+00 f t TOTAL 0.00 4 12917 \N +519131 2025-11-19 23:28:52.013646+00 2025-11-19 23:28:52.013651+00 f t ADELANTO 0.00 5 12917 \N +549647 2025-11-26 01:30:33.531628+00 2025-11-26 01:30:33.531634+00 f t SUBTOTAL 54000.00 1 13633 \N +549648 2025-11-26 01:30:33.533361+00 2025-11-26 01:30:33.533367+00 f t COSTO_SERVICIO 0.00 2 13633 \N +549649 2025-11-26 01:30:33.534479+00 2025-11-26 01:30:33.534484+00 f t DESCUENTO 0.00 3 13633 \N +549650 2025-11-26 01:30:33.535513+00 2025-11-26 01:30:33.535518+00 f t TOTAL 54000.00 4 13633 \N +549651 2025-11-26 01:30:33.536709+00 2025-11-26 01:30:33.536715+00 f t ADELANTO 13500.00 5 13633 \N +519147 2025-11-19 23:30:40.860056+00 2025-11-19 23:30:40.860065+00 f t SUBTOTAL 0.00 1 12918 \N +519148 2025-11-19 23:30:40.862007+00 2025-11-19 23:30:40.862014+00 f t COSTO_SERVICIO 0.00 2 12918 \N +519149 2025-11-19 23:30:40.863191+00 2025-11-19 23:30:40.863196+00 f t DESCUENTO 0.00 3 12918 \N +519150 2025-11-19 23:30:40.864073+00 2025-11-19 23:30:40.864078+00 f t TOTAL 0.00 4 12918 \N +519151 2025-11-19 23:30:40.864926+00 2025-11-19 23:30:40.864931+00 f t ADELANTO 0.00 5 12918 \N +525937 2025-11-21 04:27:19.464999+00 2025-11-21 04:27:19.465009+00 f t SUBTOTAL 0.00 1 13076 \N +525938 2025-11-21 04:27:19.466681+00 2025-11-21 04:27:19.466686+00 f t COSTO_SERVICIO 0.00 2 13076 \N +525939 2025-11-21 04:27:19.467637+00 2025-11-21 04:27:19.467642+00 f t DESCUENTO 0.00 3 13076 \N +525940 2025-11-21 04:27:19.468628+00 2025-11-21 04:27:19.468634+00 f t TOTAL 0.00 4 13076 \N +525941 2025-11-21 04:27:19.469648+00 2025-11-21 04:27:19.469653+00 f t ADELANTO 0.00 5 13076 \N +526257 2025-11-21 11:15:09.713756+00 2025-11-21 11:15:09.713767+00 f t SUBTOTAL 120000.00 1 13086 \N +526258 2025-11-21 11:15:09.715638+00 2025-11-21 11:15:09.715645+00 f t COSTO_SERVICIO 0.00 2 13086 \N +526259 2025-11-21 11:15:09.717051+00 2025-11-21 11:15:09.71706+00 f t DESCUENTO 0.00 3 13086 \N +526260 2025-11-21 11:15:09.718506+00 2025-11-21 11:15:09.718513+00 f t TOTAL 120000.00 4 13086 \N +526261 2025-11-21 11:15:09.719793+00 2025-11-21 11:15:09.719799+00 f t ADELANTO 10000.00 5 13086 \N +526822 2025-11-21 12:57:20.537664+00 2025-11-21 12:57:20.537672+00 f t SUBTOTAL 88000.00 1 13097 \N +526823 2025-11-21 12:57:20.539417+00 2025-11-21 12:57:20.539424+00 f t COSTO_SERVICIO 0.00 2 13097 \N +526824 2025-11-21 12:57:20.540545+00 2025-11-21 12:57:20.54055+00 f t DESCUENTO 0.00 3 13097 \N +526825 2025-11-21 12:57:20.541471+00 2025-11-21 12:57:20.541476+00 f t TOTAL 88000.00 4 13097 \N +526826 2025-11-21 12:57:20.542371+00 2025-11-21 12:57:20.542376+00 f t ADELANTO 13000.00 5 13097 \N +519242 2025-11-19 23:40:05.130439+00 2025-11-19 23:40:05.130451+00 f t SUBTOTAL 46000.00 1 12919 \N +519243 2025-11-19 23:40:05.135683+00 2025-11-19 23:40:05.135698+00 f t COSTO_SERVICIO 0.00 2 12919 \N +519244 2025-11-19 23:40:05.141397+00 2025-11-19 23:40:05.141412+00 f t DESCUENTO 0.00 3 12919 \N +519245 2025-11-19 23:40:05.147838+00 2025-11-19 23:40:05.147853+00 f t TOTAL 46000.00 4 12919 \N +519246 2025-11-19 23:40:05.153419+00 2025-11-19 23:40:05.153433+00 f t ADELANTO 11000.00 5 12919 \N +527872 2025-11-21 16:07:58.838467+00 2025-11-21 16:07:58.838474+00 f t SUBTOTAL 55000.00 1 13122 \N +527873 2025-11-21 16:07:58.840217+00 2025-11-21 16:07:58.840223+00 f t COSTO_SERVICIO 0.00 2 13122 \N +527874 2025-11-21 16:07:58.841356+00 2025-11-21 16:07:58.841362+00 f t DESCUENTO 0.00 3 13122 \N +527875 2025-11-21 16:07:58.842475+00 2025-11-21 16:07:58.842484+00 f t TOTAL 55000.00 4 13122 \N +527876 2025-11-21 16:07:58.843764+00 2025-11-21 16:07:58.84382+00 f t ADELANTO 11000.00 5 13122 \N +528122 2025-11-21 16:38:16.165128+00 2025-11-21 16:38:16.165137+00 f t SUBTOTAL 0.00 1 13128 \N +528123 2025-11-21 16:38:16.16652+00 2025-11-21 16:38:16.166529+00 f t COSTO_SERVICIO 0.00 2 13128 \N +528124 2025-11-21 16:38:16.167444+00 2025-11-21 16:38:16.167449+00 f t DESCUENTO 0.00 3 13128 \N +528125 2025-11-21 16:38:16.168445+00 2025-11-21 16:38:16.16845+00 f t TOTAL 0.00 4 13128 \N +528126 2025-11-21 16:38:16.169302+00 2025-11-21 16:38:16.169307+00 f t ADELANTO 0.00 5 13128 \N +519297 2025-11-20 00:02:47.61772+00 2025-11-20 00:02:47.617728+00 f t SUBTOTAL 55000.00 1 12921 \N +519298 2025-11-20 00:02:47.619663+00 2025-11-20 00:02:47.619673+00 f t COSTO_SERVICIO 0.00 2 12921 \N +519299 2025-11-20 00:02:47.621512+00 2025-11-20 00:02:47.621525+00 f t DESCUENTO 0.00 3 12921 \N +519300 2025-11-20 00:02:47.622984+00 2025-11-20 00:02:47.622992+00 f t TOTAL 55000.00 4 12921 \N +519301 2025-11-20 00:02:47.624493+00 2025-11-20 00:02:47.624502+00 f t ADELANTO 11000.00 5 12921 \N +519332 2025-11-20 00:16:34.957387+00 2025-11-20 00:16:34.957394+00 f t SUBTOTAL 55000.00 1 12922 \N +519333 2025-11-20 00:16:34.959076+00 2025-11-20 00:16:34.959082+00 f t COSTO_SERVICIO 0.00 2 12922 \N +519334 2025-11-20 00:16:34.960281+00 2025-11-20 00:16:34.960286+00 f t DESCUENTO 0.00 3 12922 \N +519335 2025-11-20 00:16:34.961375+00 2025-11-20 00:16:34.96138+00 f t TOTAL 55000.00 4 12922 \N +519336 2025-11-20 00:16:34.962416+00 2025-11-20 00:16:34.962421+00 f t ADELANTO 11000.00 5 12922 \N +519337 2025-11-20 00:18:16.330185+00 2025-11-20 00:18:16.330193+00 f t SUBTOTAL 55000.00 1 12920 \N +519338 2025-11-20 00:18:16.331802+00 2025-11-20 00:18:16.331817+00 f t COSTO_SERVICIO 0.00 2 12920 \N +519339 2025-11-20 00:18:16.333238+00 2025-11-20 00:18:16.333243+00 f t DESCUENTO 0.00 3 12920 \N +519340 2025-11-20 00:18:16.334486+00 2025-11-20 00:18:16.334492+00 f t TOTAL 55000.00 4 12920 \N +519341 2025-11-20 00:18:16.335518+00 2025-11-20 00:18:16.335524+00 f t ADELANTO 11000.00 5 12920 \N +519347 2025-11-20 00:19:00.928522+00 2025-11-20 00:19:00.928531+00 f t SUBTOTAL 0.00 1 12923 \N +519348 2025-11-20 00:19:00.930063+00 2025-11-20 00:19:00.93007+00 f t COSTO_SERVICIO 0.00 2 12923 \N +519349 2025-11-20 00:19:00.931086+00 2025-11-20 00:19:00.931094+00 f t DESCUENTO 0.00 3 12923 \N +519350 2025-11-20 00:19:00.932091+00 2025-11-20 00:19:00.932097+00 f t TOTAL 0.00 4 12923 \N +519351 2025-11-20 00:19:00.933233+00 2025-11-20 00:19:00.933239+00 f t ADELANTO 0.00 5 12923 \N +529232 2025-11-21 20:08:36.020114+00 2025-11-21 20:08:36.020121+00 f t SUBTOTAL 23000.00 1 13157 \N +529233 2025-11-21 20:08:36.021827+00 2025-11-21 20:08:36.021832+00 f t COSTO_SERVICIO 0.00 2 13157 \N +529234 2025-11-21 20:08:36.022849+00 2025-11-21 20:08:36.022856+00 f t DESCUENTO 0.00 3 13157 \N +529235 2025-11-21 20:08:36.023916+00 2025-11-21 20:08:36.023921+00 f t TOTAL 23000.00 4 13157 \N +529236 2025-11-21 20:08:36.025196+00 2025-11-21 20:08:36.025202+00 f t ADELANTO 5500.00 5 13157 \N +529342 2025-11-21 20:51:44.622797+00 2025-11-21 20:51:44.622804+00 f t SUBTOTAL 120000.00 1 13162 \N +529343 2025-11-21 20:51:44.624769+00 2025-11-21 20:51:44.624776+00 f t COSTO_SERVICIO 0.00 2 13162 \N +529344 2025-11-21 20:51:44.625935+00 2025-11-21 20:51:44.625941+00 f t DESCUENTO 0.00 3 13162 \N +529345 2025-11-21 20:51:44.626876+00 2025-11-21 20:51:44.626881+00 f t TOTAL 120000.00 4 13162 \N +529346 2025-11-21 20:51:44.627988+00 2025-11-21 20:51:44.627994+00 f t ADELANTO 10000.00 5 13162 \N +523822 2025-11-20 21:51:47.816688+00 2025-11-20 21:51:47.816698+00 f t SUBTOTAL 0.00 1 13031 \N +523823 2025-11-20 21:51:47.818738+00 2025-11-20 21:51:47.81875+00 f t COSTO_SERVICIO 0.00 2 13031 \N +523824 2025-11-20 21:51:47.820231+00 2025-11-20 21:51:47.82024+00 f t DESCUENTO 0.00 3 13031 \N +523825 2025-11-20 21:51:47.821412+00 2025-11-20 21:51:47.821419+00 f t TOTAL 0.00 4 13031 \N +523826 2025-11-20 21:51:47.822538+00 2025-11-20 21:51:47.822544+00 f t ADELANTO 0.00 5 13031 \N +519407 2025-11-20 01:00:59.183968+00 2025-11-20 01:00:59.183979+00 f t SUBTOTAL 78000.00 1 12924 \N +519408 2025-11-20 01:00:59.186111+00 2025-11-20 01:00:59.186121+00 f t COSTO_SERVICIO 0.00 2 12924 \N +519409 2025-11-20 01:00:59.187746+00 2025-11-20 01:00:59.187755+00 f t DESCUENTO 0.00 3 12924 \N +519410 2025-11-20 01:00:59.189214+00 2025-11-20 01:00:59.189222+00 f t TOTAL 78000.00 4 12924 \N +519411 2025-11-20 01:00:59.190466+00 2025-11-20 01:00:59.190474+00 f t ADELANTO 18500.00 5 12924 \N +537237 2025-11-24 01:05:38.168172+00 2025-11-24 01:05:38.168178+00 f t SUBTOTAL 78000.00 1 13339 \N +537238 2025-11-24 01:05:38.170111+00 2025-11-24 01:05:38.170118+00 f t COSTO_SERVICIO 0.00 2 13339 \N +537239 2025-11-24 01:05:38.171363+00 2025-11-24 01:05:38.171369+00 f t DESCUENTO 0.00 3 13339 \N +537240 2025-11-24 01:05:38.172442+00 2025-11-24 01:05:38.172448+00 f t TOTAL 78000.00 4 13339 \N +537241 2025-11-24 01:05:38.173524+00 2025-11-24 01:05:38.173531+00 f t ADELANTO 21500.00 5 13339 \N +525762 2025-11-21 03:25:41.809109+00 2025-11-21 03:25:41.809116+00 f t SUBTOTAL 108000.00 1 13071 \N +525763 2025-11-21 03:25:41.810926+00 2025-11-21 03:25:41.810931+00 f t COSTO_SERVICIO 0.00 2 13071 \N +525764 2025-11-21 03:25:41.812074+00 2025-11-21 03:25:41.81208+00 f t DESCUENTO 9200.00 3 13071 \N +525765 2025-11-21 03:25:41.813236+00 2025-11-21 03:25:41.813242+00 f t TOTAL 98800.00 4 13071 \N +525766 2025-11-21 03:25:41.814401+00 2025-11-21 03:25:41.814406+00 f t ADELANTO 27000.00 5 13071 \N +539107 2025-11-24 12:23:01.622148+00 2025-11-24 12:23:01.62216+00 f t SUBTOTAL 55000.00 1 13381 \N +539108 2025-11-24 12:23:01.624421+00 2025-11-24 12:23:01.62443+00 f t COSTO_SERVICIO 0.00 2 13381 \N +539109 2025-11-24 12:23:01.626395+00 2025-11-24 12:23:01.626404+00 f t DESCUENTO 0.00 3 13381 \N +539110 2025-11-24 12:23:01.627891+00 2025-11-24 12:23:01.627899+00 f t TOTAL 55000.00 4 13381 \N +539111 2025-11-24 12:23:01.629153+00 2025-11-24 12:23:01.62916+00 f t ADELANTO 11000.00 5 13381 \N +519512 2025-11-20 01:10:40.7782+00 2025-11-20 01:10:40.778207+00 f t SUBTOTAL 94000.00 1 12925 \N +519513 2025-11-20 01:10:40.779982+00 2025-11-20 01:10:40.779989+00 f t COSTO_SERVICIO 0.00 2 12925 \N +519514 2025-11-20 01:10:40.781356+00 2025-11-20 01:10:40.781365+00 f t DESCUENTO 0.00 3 12925 \N +519515 2025-11-20 01:10:40.783222+00 2025-11-20 01:10:40.783231+00 f t TOTAL 94000.00 4 12925 \N +519516 2025-11-20 01:10:40.784473+00 2025-11-20 01:10:40.784481+00 f t ADELANTO 24000.00 5 12925 \N +527502 2025-11-21 15:06:25.64924+00 2025-11-21 15:06:25.649251+00 f t SUBTOTAL 54000.00 1 13113 \N +527503 2025-11-21 15:06:25.651482+00 2025-11-21 15:06:25.651492+00 f t COSTO_SERVICIO 0.00 2 13113 \N +527504 2025-11-21 15:06:25.652921+00 2025-11-21 15:06:25.652929+00 f t DESCUENTO 0.00 3 13113 \N +527505 2025-11-21 15:06:25.654337+00 2025-11-21 15:06:25.654344+00 f t TOTAL 54000.00 4 13113 \N +527506 2025-11-21 15:06:25.655652+00 2025-11-21 15:06:25.65566+00 f t ADELANTO 13500.00 5 13113 \N +527632 2025-11-21 15:45:58.366318+00 2025-11-21 15:45:58.36633+00 f t SUBTOTAL 0.00 1 13117 \N +527633 2025-11-21 15:45:58.368771+00 2025-11-21 15:45:58.368782+00 f t COSTO_SERVICIO 0.00 2 13117 \N +527634 2025-11-21 15:45:58.370249+00 2025-11-21 15:45:58.370258+00 f t DESCUENTO 0.00 3 13117 \N +527635 2025-11-21 15:45:58.371523+00 2025-11-21 15:45:58.371532+00 f t TOTAL 0.00 4 13117 \N +527636 2025-11-21 15:45:58.372918+00 2025-11-21 15:45:58.372927+00 f t ADELANTO 0.00 5 13117 \N +528132 2025-11-21 16:42:09.976022+00 2025-11-21 16:42:09.976035+00 f t SUBTOTAL 0.00 1 13129 \N +528133 2025-11-21 16:42:09.97782+00 2025-11-21 16:42:09.977831+00 f t COSTO_SERVICIO 0.00 2 13129 \N +528134 2025-11-21 16:42:09.979299+00 2025-11-21 16:42:09.97931+00 f t DESCUENTO 0.00 3 13129 \N +528135 2025-11-21 16:42:09.980958+00 2025-11-21 16:42:09.980967+00 f t TOTAL 0.00 4 13129 \N +528136 2025-11-21 16:42:09.982312+00 2025-11-21 16:42:09.982319+00 f t ADELANTO 0.00 5 13129 \N +528252 2025-11-21 16:59:10.27711+00 2025-11-21 16:59:10.277119+00 f t SUBTOTAL 30000.00 1 13132 \N +528253 2025-11-21 16:59:10.278786+00 2025-11-21 16:59:10.278792+00 f t COSTO_SERVICIO 0.00 2 13132 \N +528254 2025-11-21 16:59:10.279985+00 2025-11-21 16:59:10.27999+00 f t DESCUENTO 0.00 3 13132 \N +519577 2025-11-20 01:12:43.773176+00 2025-11-20 01:12:43.773184+00 f t SUBTOTAL 54000.00 1 12926 \N +519578 2025-11-20 01:12:43.774846+00 2025-11-20 01:12:43.774853+00 f t COSTO_SERVICIO 0.00 2 12926 \N +519579 2025-11-20 01:12:43.77608+00 2025-11-20 01:12:43.776086+00 f t DESCUENTO 0.00 3 12926 \N +519580 2025-11-20 01:12:43.777195+00 2025-11-20 01:12:43.777201+00 f t TOTAL 54000.00 4 12926 \N +519581 2025-11-20 01:12:43.778319+00 2025-11-20 01:12:43.778324+00 f t ADELANTO 13500.00 5 12926 \N +528255 2025-11-21 16:59:10.281199+00 2025-11-21 16:59:10.281207+00 f t TOTAL 30000.00 4 13132 \N +528256 2025-11-21 16:59:10.28283+00 2025-11-21 16:59:10.282837+00 f t ADELANTO 30000.00 5 13132 \N +528787 2025-11-21 18:39:20.256356+00 2025-11-21 18:39:20.256364+00 f t SUBTOTAL 124000.00 1 13140 \N +528788 2025-11-21 18:39:20.258061+00 2025-11-21 18:39:20.258067+00 f t COSTO_SERVICIO 0.00 2 13140 \N +528789 2025-11-21 18:39:20.259872+00 2025-11-21 18:39:20.259882+00 f t DESCUENTO 0.00 3 13140 \N +528790 2025-11-21 18:39:20.261262+00 2025-11-21 18:39:20.26127+00 f t TOTAL 124000.00 4 13140 \N +528791 2025-11-21 18:39:20.262471+00 2025-11-21 18:39:20.262479+00 f t ADELANTO 24000.00 5 13140 \N +542172 2025-11-24 22:20:26.882415+00 2025-11-24 22:20:26.882424+00 f t SUBTOTAL 0.00 1 13452 \N +519617 2025-11-20 01:30:35.365529+00 2025-11-20 01:30:35.365542+00 f t SUBTOTAL 0.00 1 12927 \N +519618 2025-11-20 01:30:35.367946+00 2025-11-20 01:30:35.367957+00 f t COSTO_SERVICIO 0.00 2 12927 \N +519619 2025-11-20 01:30:35.369853+00 2025-11-20 01:30:35.369863+00 f t DESCUENTO 0.00 3 12927 \N +519620 2025-11-20 01:30:35.372374+00 2025-11-20 01:30:35.372383+00 f t TOTAL 0.00 4 12927 \N +519621 2025-11-20 01:30:35.373854+00 2025-11-20 01:30:35.373862+00 f t ADELANTO 0.00 5 12927 \N +542173 2025-11-24 22:20:26.884807+00 2025-11-24 22:20:26.884816+00 f t COSTO_SERVICIO 0.00 2 13452 \N +542174 2025-11-24 22:20:26.885831+00 2025-11-24 22:20:26.885839+00 f t DESCUENTO 0.00 3 13452 \N +542175 2025-11-24 22:20:26.887062+00 2025-11-24 22:20:26.88707+00 f t TOTAL 0.00 4 13452 \N +542176 2025-11-24 22:20:26.888386+00 2025-11-24 22:20:26.888394+00 f t ADELANTO 0.00 5 13452 \N +519657 2025-11-20 01:39:01.884994+00 2025-11-20 01:39:01.885008+00 f t SUBTOTAL 0.00 1 12928 \N +519658 2025-11-20 01:39:01.888344+00 2025-11-20 01:39:01.888356+00 f t COSTO_SERVICIO 0.00 2 12928 \N +519659 2025-11-20 01:39:01.890682+00 2025-11-20 01:39:01.890695+00 f t DESCUENTO 0.00 3 12928 \N +519660 2025-11-20 01:39:01.893429+00 2025-11-20 01:39:01.893443+00 f t TOTAL 0.00 4 12928 \N +519661 2025-11-20 01:39:01.897572+00 2025-11-20 01:39:01.897584+00 f t ADELANTO 0.00 5 12928 \N +529847 2025-11-21 22:11:55.533311+00 2025-11-21 22:11:55.533319+00 f t SUBTOTAL 70000.00 1 13169 \N +529848 2025-11-21 22:11:55.535203+00 2025-11-21 22:11:55.53521+00 f t COSTO_SERVICIO 0.00 2 13169 \N +529849 2025-11-21 22:11:55.53661+00 2025-11-21 22:11:55.536618+00 f t DESCUENTO 0.00 3 13169 \N +529850 2025-11-21 22:11:55.537951+00 2025-11-21 22:11:55.537958+00 f t TOTAL 70000.00 4 13169 \N +529851 2025-11-21 22:11:55.539268+00 2025-11-21 22:11:55.539276+00 f t ADELANTO 19000.00 5 13169 \N +523832 2025-11-20 21:53:15.062042+00 2025-11-20 21:53:15.06205+00 f t SUBTOTAL 0.00 1 13032 \N +523833 2025-11-20 21:53:15.063519+00 2025-11-20 21:53:15.063526+00 f t COSTO_SERVICIO 0.00 2 13032 \N +523834 2025-11-20 21:53:15.064514+00 2025-11-20 21:53:15.06452+00 f t DESCUENTO 0.00 3 13032 \N +523835 2025-11-20 21:53:15.065651+00 2025-11-20 21:53:15.065657+00 f t TOTAL 0.00 4 13032 \N +523836 2025-11-20 21:53:15.06666+00 2025-11-20 21:53:15.066665+00 f t ADELANTO 0.00 5 13032 \N +549022 2025-11-25 22:43:25.637992+00 2025-11-25 22:43:25.638001+00 f t SUBTOTAL 0.00 1 13614 \N +549023 2025-11-25 22:43:25.640092+00 2025-11-25 22:43:25.640099+00 f t COSTO_SERVICIO 0.00 2 13614 \N +549024 2025-11-25 22:43:25.641265+00 2025-11-25 22:43:25.64127+00 f t DESCUENTO 0.00 3 13614 \N +549025 2025-11-25 22:43:25.642182+00 2025-11-25 22:43:25.642187+00 f t TOTAL 0.00 4 13614 \N +549026 2025-11-25 22:43:25.64314+00 2025-11-25 22:43:25.643145+00 f t ADELANTO 0.00 5 13614 \N +549332 2025-11-26 00:21:37.767704+00 2025-11-26 00:21:37.767711+00 f t SUBTOTAL 46000.00 1 13621 \N +524712 2025-11-21 00:37:24.926482+00 2025-11-21 00:37:24.926496+00 f t SUBTOTAL 0.00 1 13052 \N +524713 2025-11-21 00:37:24.928452+00 2025-11-21 00:37:24.928459+00 f t COSTO_SERVICIO 0.00 2 13052 \N +524714 2025-11-21 00:37:24.929539+00 2025-11-21 00:37:24.929545+00 f t DESCUENTO 0.00 3 13052 \N +524715 2025-11-21 00:37:24.93053+00 2025-11-21 00:37:24.930538+00 f t TOTAL 0.00 4 13052 \N +524716 2025-11-21 00:37:24.931665+00 2025-11-21 00:37:24.931673+00 f t ADELANTO 0.00 5 13052 \N +519722 2025-11-20 01:55:52.287652+00 2025-11-20 01:55:52.287659+00 f t SUBTOTAL 105000.00 1 12929 \N +519723 2025-11-20 01:55:52.28915+00 2025-11-20 01:55:52.289155+00 f t COSTO_SERVICIO 0.00 2 12929 \N +519724 2025-11-20 01:55:52.290341+00 2025-11-20 01:55:52.290347+00 f t DESCUENTO 0.00 3 12929 \N +519725 2025-11-20 01:55:52.291258+00 2025-11-20 01:55:52.291262+00 f t TOTAL 105000.00 4 12929 \N +519726 2025-11-20 01:55:52.292239+00 2025-11-20 01:55:52.292244+00 f t ADELANTO 19000.00 5 12929 \N +519752 2025-11-20 02:18:59.008025+00 2025-11-20 02:18:59.008036+00 f t SUBTOTAL 70000.00 1 12930 \N +519753 2025-11-20 02:18:59.010242+00 2025-11-20 02:18:59.010253+00 f t COSTO_SERVICIO 0.00 2 12930 \N +519754 2025-11-20 02:18:59.011884+00 2025-11-20 02:18:59.011895+00 f t DESCUENTO 0.00 3 12930 \N +519755 2025-11-20 02:18:59.013517+00 2025-11-20 02:18:59.013526+00 f t TOTAL 70000.00 4 12930 \N +519756 2025-11-20 02:18:59.014956+00 2025-11-20 02:18:59.014965+00 f t ADELANTO 16000.00 5 12930 \N +525772 2025-11-21 03:29:46.496927+00 2025-11-21 03:29:46.496939+00 f t SUBTOTAL 0.00 1 13072 \N +525773 2025-11-21 03:29:46.498267+00 2025-11-21 03:29:46.498274+00 f t COSTO_SERVICIO 0.00 2 13072 \N +519762 2025-11-20 02:25:08.342677+00 2025-11-20 02:25:08.342691+00 f t SUBTOTAL 0.00 1 12931 \N +519763 2025-11-20 02:25:08.345251+00 2025-11-20 02:25:08.345262+00 f t COSTO_SERVICIO 0.00 2 12931 \N +519764 2025-11-20 02:25:08.347706+00 2025-11-20 02:25:08.347717+00 f t DESCUENTO 0.00 3 12931 \N +519765 2025-11-20 02:25:08.350541+00 2025-11-20 02:25:08.350552+00 f t TOTAL 0.00 4 12931 \N +519766 2025-11-20 02:25:08.352074+00 2025-11-20 02:25:08.352085+00 f t ADELANTO 0.00 5 12931 \N +525774 2025-11-21 03:29:46.499408+00 2025-11-21 03:29:46.499414+00 f t DESCUENTO 0.00 3 13072 \N +525775 2025-11-21 03:29:46.500298+00 2025-11-21 03:29:46.500304+00 f t TOTAL 0.00 4 13072 \N +525776 2025-11-21 03:29:46.501215+00 2025-11-21 03:29:46.50122+00 f t ADELANTO 0.00 5 13072 \N +519792 2025-11-20 02:26:24.123401+00 2025-11-20 02:26:24.123408+00 f t SUBTOTAL 46000.00 1 12932 \N +519793 2025-11-20 02:26:24.124956+00 2025-11-20 02:26:24.124963+00 f t COSTO_SERVICIO 0.00 2 12932 \N +519794 2025-11-20 02:26:24.126073+00 2025-11-20 02:26:24.126078+00 f t DESCUENTO 0.00 3 12932 \N +519795 2025-11-20 02:26:24.127299+00 2025-11-20 02:26:24.127304+00 f t TOTAL 46000.00 4 12932 \N +519796 2025-11-20 02:26:24.128454+00 2025-11-20 02:26:24.128459+00 f t ADELANTO 11000.00 5 12932 \N +526687 2025-11-21 12:20:23.178703+00 2025-11-21 12:20:23.178709+00 f t SUBTOTAL 218000.00 1 13092 \N +526688 2025-11-21 12:20:23.180857+00 2025-11-21 12:20:23.180863+00 f t COSTO_SERVICIO 0.00 2 13092 \N +526689 2025-11-21 12:20:23.182127+00 2025-11-21 12:20:23.182133+00 f t DESCUENTO 0.00 3 13092 \N +526690 2025-11-21 12:20:23.183272+00 2025-11-21 12:20:23.183277+00 f t TOTAL 218000.00 4 13092 \N +526691 2025-11-21 12:20:23.184369+00 2025-11-21 12:20:23.184374+00 f t ADELANTO 39000.00 5 13092 \N +527237 2025-11-21 14:20:32.588578+00 2025-11-21 14:20:32.588586+00 f t SUBTOTAL 46000.00 1 13105 \N +527238 2025-11-21 14:20:32.590343+00 2025-11-21 14:20:32.59035+00 f t COSTO_SERVICIO 0.00 2 13105 \N +527239 2025-11-21 14:20:32.591697+00 2025-11-21 14:20:32.591704+00 f t DESCUENTO 0.00 3 13105 \N +527240 2025-11-21 14:20:32.592765+00 2025-11-21 14:20:32.59277+00 f t TOTAL 46000.00 4 13105 \N +527241 2025-11-21 14:20:32.593782+00 2025-11-21 14:20:32.593792+00 f t ADELANTO 11000.00 5 13105 \N +528002 2025-11-21 16:17:47.499098+00 2025-11-21 16:17:47.499105+00 f t SUBTOTAL 70000.00 1 13124 \N +528003 2025-11-21 16:17:47.500935+00 2025-11-21 16:17:47.500941+00 f t COSTO_SERVICIO 0.00 2 13124 \N +528004 2025-11-21 16:17:47.502042+00 2025-11-21 16:17:47.50205+00 f t DESCUENTO 0.00 3 13124 \N +528005 2025-11-21 16:17:47.503438+00 2025-11-21 16:17:47.503444+00 f t TOTAL 70000.00 4 13124 \N +528006 2025-11-21 16:17:47.504429+00 2025-11-21 16:17:47.504435+00 f t ADELANTO 19000.00 5 13124 \N +519907 2025-11-20 02:28:21.84302+00 2025-11-20 02:28:21.84303+00 f t SUBTOTAL 47000.00 1 12933 \N +519908 2025-11-20 02:28:21.84472+00 2025-11-20 02:28:21.844726+00 f t COSTO_SERVICIO 0.00 2 12933 \N +519909 2025-11-20 02:28:21.845903+00 2025-11-20 02:28:21.845908+00 f t DESCUENTO 0.00 3 12933 \N +519910 2025-11-20 02:28:21.847077+00 2025-11-20 02:28:21.847083+00 f t TOTAL 47000.00 4 12933 \N +519911 2025-11-20 02:28:21.848286+00 2025-11-20 02:28:21.848292+00 f t ADELANTO 12000.00 5 12933 \N +528797 2025-11-21 18:53:54.18804+00 2025-11-21 18:53:54.188048+00 f t SUBTOTAL 0.00 1 13143 \N +528798 2025-11-21 18:53:54.189154+00 2025-11-21 18:53:54.189158+00 f t COSTO_SERVICIO 0.00 2 13143 \N +528799 2025-11-21 18:53:54.190173+00 2025-11-21 18:53:54.190179+00 f t DESCUENTO 0.00 3 13143 \N +528800 2025-11-21 18:53:54.191109+00 2025-11-21 18:53:54.191113+00 f t TOTAL 0.00 4 13143 \N +528801 2025-11-21 18:53:54.191972+00 2025-11-21 18:53:54.191977+00 f t ADELANTO 0.00 5 13143 \N +528927 2025-11-21 19:27:56.399832+00 2025-11-21 19:27:56.399846+00 f t SUBTOTAL 70000.00 1 13149 \N +528928 2025-11-21 19:27:56.401933+00 2025-11-21 19:27:56.401942+00 f t COSTO_SERVICIO 0.00 2 13149 \N +528929 2025-11-21 19:27:56.404124+00 2025-11-21 19:27:56.404132+00 f t DESCUENTO 0.00 3 13149 \N +528930 2025-11-21 19:27:56.40545+00 2025-11-21 19:27:56.405457+00 f t TOTAL 70000.00 4 13149 \N +528931 2025-11-21 19:27:56.40663+00 2025-11-21 19:27:56.406639+00 f t ADELANTO 19000.00 5 13149 \N +519947 2025-11-20 02:31:50.558449+00 2025-11-20 02:31:50.558456+00 f t SUBTOTAL 70000.00 1 12934 \N +519948 2025-11-20 02:31:50.560333+00 2025-11-20 02:31:50.56034+00 f t COSTO_SERVICIO 0.00 2 12934 \N +519949 2025-11-20 02:31:50.561532+00 2025-11-20 02:31:50.561537+00 f t DESCUENTO 0.00 3 12934 \N +519950 2025-11-20 02:31:50.562493+00 2025-11-20 02:31:50.5625+00 f t TOTAL 70000.00 4 12934 \N +519951 2025-11-20 02:31:50.563492+00 2025-11-20 02:31:50.563497+00 f t ADELANTO 19000.00 5 12934 \N +519957 2025-11-20 03:27:07.774931+00 2025-11-20 03:27:07.774941+00 f t SUBTOTAL 0.00 1 12935 \N +519958 2025-11-20 03:27:07.776873+00 2025-11-20 03:27:07.77688+00 f t COSTO_SERVICIO 0.00 2 12935 \N +519959 2025-11-20 03:27:07.777998+00 2025-11-20 03:27:07.778005+00 f t DESCUENTO 0.00 3 12935 \N +519960 2025-11-20 03:27:07.779162+00 2025-11-20 03:27:07.779167+00 f t TOTAL 0.00 4 12935 \N +519961 2025-11-20 03:27:07.780308+00 2025-11-20 03:27:07.780313+00 f t ADELANTO 0.00 5 12935 \N +536767 2025-11-23 22:26:07.101068+00 2025-11-23 22:26:07.101079+00 f t SUBTOTAL 78000.00 1 13330 \N +519997 2025-11-20 04:02:56.238964+00 2025-11-20 04:02:56.238971+00 f t SUBTOTAL 76000.00 1 12936 \N +519998 2025-11-20 04:02:56.240479+00 2025-11-20 04:02:56.240485+00 f t COSTO_SERVICIO 0.00 2 12936 \N +519999 2025-11-20 04:02:56.24161+00 2025-11-20 04:02:56.241617+00 f t DESCUENTO 7600.00 3 12936 \N +520000 2025-11-20 04:02:56.242843+00 2025-11-20 04:02:56.242848+00 f t TOTAL 68400.00 4 12936 \N +520001 2025-11-20 04:02:56.24407+00 2025-11-20 04:02:56.244075+00 f t ADELANTO 41000.00 5 12936 \N +536768 2025-11-23 22:26:07.103798+00 2025-11-23 22:26:07.103807+00 f t COSTO_SERVICIO 0.00 2 13330 \N +536769 2025-11-23 22:26:07.105234+00 2025-11-23 22:26:07.105241+00 f t DESCUENTO 0.00 3 13330 \N +536770 2025-11-23 22:26:07.106641+00 2025-11-23 22:26:07.106649+00 f t TOTAL 78000.00 4 13330 \N +536771 2025-11-23 22:26:07.108327+00 2025-11-23 22:26:07.108334+00 f t ADELANTO 21500.00 5 13330 \N +520007 2025-11-20 04:27:58.121648+00 2025-11-20 04:27:58.121659+00 f t SUBTOTAL 0.00 1 12937 \N +520008 2025-11-20 04:27:58.123176+00 2025-11-20 04:27:58.123183+00 f t COSTO_SERVICIO 0.00 2 12937 \N +520009 2025-11-20 04:27:58.124254+00 2025-11-20 04:27:58.124259+00 f t DESCUENTO 0.00 3 12937 \N +520010 2025-11-20 04:27:58.12521+00 2025-11-20 04:27:58.125215+00 f t TOTAL 0.00 4 12937 \N +520011 2025-11-20 04:27:58.12607+00 2025-11-20 04:27:58.126075+00 f t ADELANTO 0.00 5 12937 \N +520017 2025-11-20 04:55:14.452285+00 2025-11-20 04:55:14.452297+00 f t SUBTOTAL 0.00 1 12938 \N +520018 2025-11-20 04:55:14.455331+00 2025-11-20 04:55:14.455342+00 f t COSTO_SERVICIO 0.00 2 12938 \N +520019 2025-11-20 04:55:14.457041+00 2025-11-20 04:55:14.457049+00 f t DESCUENTO 0.00 3 12938 \N +520020 2025-11-20 04:55:14.458728+00 2025-11-20 04:55:14.458737+00 f t TOTAL 0.00 4 12938 \N +520021 2025-11-20 04:55:14.460074+00 2025-11-20 04:55:14.460082+00 f t ADELANTO 0.00 5 12938 \N +524897 2025-11-21 00:52:43.81969+00 2025-11-21 00:52:43.819702+00 f t SUBTOTAL 0.00 1 13056 \N +524898 2025-11-21 00:52:43.821607+00 2025-11-21 00:52:43.821615+00 f t COSTO_SERVICIO 0.00 2 13056 \N +524899 2025-11-21 00:52:43.82288+00 2025-11-21 00:52:43.822886+00 f t DESCUENTO 0.00 3 13056 \N +524900 2025-11-21 00:52:43.824165+00 2025-11-21 00:52:43.82417+00 f t TOTAL 0.00 4 13056 \N +524901 2025-11-21 00:52:43.825295+00 2025-11-21 00:52:43.8253+00 f t ADELANTO 0.00 5 13056 \N +538742 2025-11-24 11:24:00.72757+00 2025-11-24 11:24:00.727579+00 f t SUBTOTAL 0.00 1 13374 \N +538743 2025-11-24 11:24:00.729636+00 2025-11-24 11:24:00.729643+00 f t COSTO_SERVICIO 0.00 2 13374 \N +538744 2025-11-24 11:24:00.730709+00 2025-11-24 11:24:00.730715+00 f t DESCUENTO 0.00 3 13374 \N +538745 2025-11-24 11:24:00.731603+00 2025-11-24 11:24:00.731608+00 f t TOTAL 0.00 4 13374 \N +538746 2025-11-24 11:24:00.732477+00 2025-11-24 11:24:00.732481+00 f t ADELANTO 0.00 5 13374 \N +520112 2025-11-20 05:08:48.697615+00 2025-11-20 05:08:48.697626+00 f t SUBTOTAL 55000.00 1 12939 \N +520113 2025-11-20 05:08:48.699581+00 2025-11-20 05:08:48.699588+00 f t COSTO_SERVICIO 0.00 2 12939 \N +520114 2025-11-20 05:08:48.700946+00 2025-11-20 05:08:48.700954+00 f t DESCUENTO 0.00 3 12939 \N +520115 2025-11-20 05:08:48.702067+00 2025-11-20 05:08:48.702073+00 f t TOTAL 55000.00 4 12939 \N +520116 2025-11-20 05:08:48.703114+00 2025-11-20 05:08:48.703119+00 f t ADELANTO 11000.00 5 12939 \N +520122 2025-11-20 09:08:34.855667+00 2025-11-20 09:08:34.855675+00 f t SUBTOTAL 0.00 1 12940 \N +520123 2025-11-20 09:08:34.857011+00 2025-11-20 09:08:34.857016+00 f t COSTO_SERVICIO 0.00 2 12940 \N +520124 2025-11-20 09:08:34.858057+00 2025-11-20 09:08:34.858062+00 f t DESCUENTO 0.00 3 12940 \N +520125 2025-11-20 09:08:34.858955+00 2025-11-20 09:08:34.85896+00 f t TOTAL 0.00 4 12940 \N +520126 2025-11-20 09:08:34.864085+00 2025-11-20 09:08:34.864092+00 f t ADELANTO 0.00 5 12940 \N +520132 2025-11-20 09:10:01.422235+00 2025-11-20 09:10:01.422246+00 f t SUBTOTAL 0.00 1 12941 \N +520133 2025-11-20 09:10:01.424206+00 2025-11-20 09:10:01.424219+00 f t COSTO_SERVICIO 0.00 2 12941 \N +520134 2025-11-20 09:10:01.426083+00 2025-11-20 09:10:01.426094+00 f t DESCUENTO 0.00 3 12941 \N +520135 2025-11-20 09:10:01.427913+00 2025-11-20 09:10:01.427923+00 f t TOTAL 0.00 4 12941 \N +520136 2025-11-20 09:10:01.429762+00 2025-11-20 09:10:01.429773+00 f t ADELANTO 0.00 5 12941 \N +541237 2025-11-24 18:20:03.127155+00 2025-11-24 18:20:03.127169+00 f t SUBTOTAL 70000.00 1 13427 \N +541238 2025-11-24 18:20:03.148389+00 2025-11-24 18:20:03.148401+00 f t COSTO_SERVICIO 0.00 2 13427 \N +541239 2025-11-24 18:20:03.150871+00 2025-11-24 18:20:03.150882+00 f t DESCUENTO 0.00 3 13427 \N +541240 2025-11-24 18:20:03.152996+00 2025-11-24 18:20:03.153007+00 f t TOTAL 70000.00 4 13427 \N +541241 2025-11-24 18:20:03.155181+00 2025-11-24 18:20:03.155192+00 f t ADELANTO 19000.00 5 13427 \N +528012 2025-11-21 16:25:53.473861+00 2025-11-21 16:25:53.47387+00 f t SUBTOTAL 0.00 1 13125 \N +528013 2025-11-21 16:25:53.475288+00 2025-11-21 16:25:53.475295+00 f t COSTO_SERVICIO 0.00 2 13125 \N +528014 2025-11-21 16:25:53.476436+00 2025-11-21 16:25:53.476441+00 f t DESCUENTO 0.00 3 13125 \N +528015 2025-11-21 16:25:53.477449+00 2025-11-21 16:25:53.477454+00 f t TOTAL 0.00 4 13125 \N +528016 2025-11-21 16:25:53.478339+00 2025-11-21 16:25:53.478344+00 f t ADELANTO 0.00 5 13125 \N +541717 2025-11-24 20:45:01.680811+00 2025-11-24 20:45:01.680825+00 f t SUBTOTAL 0.00 1 13440 \N +541718 2025-11-24 20:45:01.684184+00 2025-11-24 20:45:01.684197+00 f t COSTO_SERVICIO 0.00 2 13440 \N +541719 2025-11-24 20:45:01.691402+00 2025-11-24 20:45:01.691416+00 f t DESCUENTO 0.00 3 13440 \N +541720 2025-11-24 20:45:01.694237+00 2025-11-24 20:45:01.69425+00 f t TOTAL 0.00 4 13440 \N +541721 2025-11-24 20:45:01.697498+00 2025-11-24 20:45:01.697508+00 f t ADELANTO 0.00 5 13440 \N +542177 2025-11-24 22:20:32.289222+00 2025-11-24 22:20:32.28923+00 f t SUBTOTAL 70000.00 1 13453 \N +542178 2025-11-24 22:20:32.291169+00 2025-11-24 22:20:32.291176+00 f t COSTO_SERVICIO 0.00 2 13453 \N +542179 2025-11-24 22:20:32.292416+00 2025-11-24 22:20:32.292424+00 f t DESCUENTO 0.00 3 13453 \N +542180 2025-11-24 22:20:32.293411+00 2025-11-24 22:20:32.293419+00 f t TOTAL 70000.00 4 13453 \N +542181 2025-11-24 22:20:32.294529+00 2025-11-24 22:20:32.294535+00 f t ADELANTO 19000.00 5 13453 \N +528807 2025-11-21 18:55:25.976858+00 2025-11-21 18:55:25.976868+00 f t SUBTOTAL 0.00 1 13144 \N +528808 2025-11-21 18:55:25.978859+00 2025-11-21 18:55:25.978866+00 f t COSTO_SERVICIO 0.00 2 13144 \N +528809 2025-11-21 18:55:25.980092+00 2025-11-21 18:55:25.980097+00 f t DESCUENTO 0.00 3 13144 \N +528810 2025-11-21 18:55:25.981178+00 2025-11-21 18:55:25.981185+00 f t TOTAL 0.00 4 13144 \N +528811 2025-11-21 18:55:25.982467+00 2025-11-21 18:55:25.982475+00 f t ADELANTO 0.00 5 13144 \N +529362 2025-11-21 21:01:15.212667+00 2025-11-21 21:01:15.212677+00 f t SUBTOTAL 0.00 1 13164 \N +529363 2025-11-21 21:01:15.214003+00 2025-11-21 21:01:15.214009+00 f t COSTO_SERVICIO 0.00 2 13164 \N +529364 2025-11-21 21:01:15.214986+00 2025-11-21 21:01:15.214991+00 f t DESCUENTO 0.00 3 13164 \N +529365 2025-11-21 21:01:15.215996+00 2025-11-21 21:01:15.216001+00 f t TOTAL 0.00 4 13164 \N +529366 2025-11-21 21:01:15.216993+00 2025-11-21 21:01:15.216997+00 f t ADELANTO 0.00 5 13164 \N +520257 2025-11-20 09:58:10.066+00 2025-11-20 09:58:10.066007+00 f t SUBTOTAL 121000.00 1 12942 \N +520258 2025-11-20 09:58:10.06945+00 2025-11-20 09:58:10.069458+00 f t COSTO_SERVICIO 0.00 2 12942 \N +520259 2025-11-20 09:58:10.072115+00 2025-11-20 09:58:10.072124+00 f t DESCUENTO 0.00 3 12942 \N +520260 2025-11-20 09:58:10.073596+00 2025-11-20 09:58:10.073602+00 f t TOTAL 121000.00 4 12942 \N +520261 2025-11-20 09:58:10.074713+00 2025-11-20 09:58:10.074718+00 f t ADELANTO 26000.00 5 12942 \N +548697 2025-11-25 21:38:13.826249+00 2025-11-25 21:38:13.826255+00 f t SUBTOTAL 46000.00 1 13606 \N +548698 2025-11-25 21:38:13.827888+00 2025-11-25 21:38:13.827894+00 f t COSTO_SERVICIO 0.00 2 13606 \N +548699 2025-11-25 21:38:13.82898+00 2025-11-25 21:38:13.828986+00 f t DESCUENTO 0.00 3 13606 \N +548700 2025-11-25 21:38:13.829991+00 2025-11-25 21:38:13.829996+00 f t TOTAL 46000.00 4 13606 \N +548701 2025-11-25 21:38:13.831157+00 2025-11-25 21:38:13.831162+00 f t ADELANTO 11000.00 5 13606 \N +520307 2025-11-20 10:04:07.406081+00 2025-11-20 10:04:07.40609+00 f t SUBTOTAL 0.00 1 12943 \N +520308 2025-11-20 10:04:07.40785+00 2025-11-20 10:04:07.407856+00 f t COSTO_SERVICIO 0.00 2 12943 \N +520309 2025-11-20 10:04:07.408911+00 2025-11-20 10:04:07.408915+00 f t DESCUENTO 0.00 3 12943 \N +520310 2025-11-20 10:04:07.409858+00 2025-11-20 10:04:07.409863+00 f t TOTAL 0.00 4 12943 \N +520311 2025-11-20 10:04:07.410646+00 2025-11-20 10:04:07.410651+00 f t ADELANTO 0.00 5 12943 \N +520337 2025-11-20 10:07:27.099445+00 2025-11-20 10:07:27.099453+00 f t SUBTOTAL 55000.00 1 12944 \N +520338 2025-11-20 10:07:27.101528+00 2025-11-20 10:07:27.101534+00 f t COSTO_SERVICIO 0.00 2 12944 \N +520339 2025-11-20 10:07:27.102569+00 2025-11-20 10:07:27.102575+00 f t DESCUENTO 0.00 3 12944 \N +520340 2025-11-20 10:07:27.103733+00 2025-11-20 10:07:27.103738+00 f t TOTAL 55000.00 4 12944 \N +520341 2025-11-20 10:07:27.105119+00 2025-11-20 10:07:27.105128+00 f t ADELANTO 11000.00 5 12944 \N +525962 2025-11-21 09:00:18.080774+00 2025-11-21 09:00:18.080789+00 f t SUBTOTAL 0.00 1 13077 \N +525963 2025-11-21 09:00:18.084623+00 2025-11-21 09:00:18.084635+00 f t COSTO_SERVICIO 0.00 2 13077 \N +525964 2025-11-21 09:00:18.087067+00 2025-11-21 09:00:18.087078+00 f t DESCUENTO 0.00 3 13077 \N +525965 2025-11-21 09:00:18.089924+00 2025-11-21 09:00:18.089937+00 f t TOTAL 0.00 4 13077 \N +525966 2025-11-21 09:00:18.093343+00 2025-11-21 09:00:18.093357+00 f t ADELANTO 0.00 5 13077 \N +538542 2025-11-24 10:19:37.644555+00 2025-11-24 10:19:37.644562+00 f t SUBTOTAL 55000.00 1 13369 \N +538543 2025-11-24 10:19:37.646182+00 2025-11-24 10:19:37.646188+00 f t COSTO_SERVICIO 0.00 2 13369 \N +538544 2025-11-24 10:19:37.647265+00 2025-11-24 10:19:37.647271+00 f t DESCUENTO 0.00 3 13369 \N +538545 2025-11-24 10:19:37.648426+00 2025-11-24 10:19:37.648431+00 f t TOTAL 55000.00 4 13369 \N +538546 2025-11-24 10:19:37.649712+00 2025-11-24 10:19:37.649719+00 f t ADELANTO 11000.00 5 13369 \N +538752 2025-11-24 11:35:55.915922+00 2025-11-24 11:35:55.915932+00 f t SUBTOTAL 0.00 1 13375 \N +538753 2025-11-24 11:35:55.917423+00 2025-11-24 11:35:55.917431+00 f t COSTO_SERVICIO 0.00 2 13375 \N +538754 2025-11-24 11:35:55.918587+00 2025-11-24 11:35:55.918593+00 f t DESCUENTO 0.00 3 13375 \N +538755 2025-11-24 11:35:55.919637+00 2025-11-24 11:35:55.919643+00 f t TOTAL 0.00 4 13375 \N +538756 2025-11-24 11:35:55.920596+00 2025-11-24 11:35:55.920601+00 f t ADELANTO 0.00 5 13375 \N +520377 2025-11-20 11:19:00.421709+00 2025-11-20 11:19:00.421718+00 f t SUBTOTAL 0.00 1 12945 \N +520378 2025-11-20 11:19:00.423772+00 2025-11-20 11:19:00.423779+00 f t COSTO_SERVICIO 0.00 2 12945 \N +520379 2025-11-20 11:19:00.425238+00 2025-11-20 11:19:00.425248+00 f t DESCUENTO 0.00 3 12945 \N +520380 2025-11-20 11:19:00.426625+00 2025-11-20 11:19:00.426633+00 f t TOTAL 0.00 4 12945 \N +520381 2025-11-20 11:19:00.428251+00 2025-11-20 11:19:00.428259+00 f t ADELANTO 0.00 5 12945 \N +526977 2025-11-21 13:34:11.541463+00 2025-11-21 13:34:11.54147+00 f t SUBTOTAL 30000.00 1 13099 \N +526978 2025-11-21 13:34:11.543091+00 2025-11-21 13:34:11.543096+00 f t COSTO_SERVICIO 0.00 2 13099 \N +526979 2025-11-21 13:34:11.544179+00 2025-11-21 13:34:11.544184+00 f t DESCUENTO 0.00 3 13099 \N +526980 2025-11-21 13:34:11.545142+00 2025-11-21 13:34:11.545146+00 f t TOTAL 30000.00 4 13099 \N +526981 2025-11-21 13:34:11.546089+00 2025-11-21 13:34:11.546094+00 f t ADELANTO 30000.00 5 13099 \N +528022 2025-11-21 16:27:31.140015+00 2025-11-21 16:27:31.140028+00 f t SUBTOTAL 0.00 1 13126 \N +528023 2025-11-21 16:27:31.141601+00 2025-11-21 16:27:31.14161+00 f t COSTO_SERVICIO 0.00 2 13126 \N +528024 2025-11-21 16:27:31.14264+00 2025-11-21 16:27:31.142676+00 f t DESCUENTO 0.00 3 13126 \N +528025 2025-11-21 16:27:31.143734+00 2025-11-21 16:27:31.143742+00 f t TOTAL 0.00 4 13126 \N +528026 2025-11-21 16:27:31.144739+00 2025-11-21 16:27:31.144747+00 f t ADELANTO 0.00 5 13126 \N +528607 2025-11-21 18:32:11.667673+00 2025-11-21 18:32:11.667685+00 f t SUBTOTAL 0.00 1 13141 \N +528608 2025-11-21 18:32:11.669704+00 2025-11-21 18:32:11.669714+00 f t COSTO_SERVICIO 0.00 2 13141 \N +528609 2025-11-21 18:32:11.671294+00 2025-11-21 18:32:11.671305+00 f t DESCUENTO 0.00 3 13141 \N +528610 2025-11-21 18:32:11.672831+00 2025-11-21 18:32:11.67284+00 f t TOTAL 0.00 4 13141 \N +528611 2025-11-21 18:32:11.674256+00 2025-11-21 18:32:11.674264+00 f t ADELANTO 0.00 5 13141 \N +528817 2025-11-21 19:00:04.304701+00 2025-11-21 19:00:04.304716+00 f t SUBTOTAL 0.00 1 13145 \N +528818 2025-11-21 19:00:04.307369+00 2025-11-21 19:00:04.307382+00 f t COSTO_SERVICIO 0.00 2 13145 \N +528819 2025-11-21 19:00:04.309639+00 2025-11-21 19:00:04.309653+00 f t DESCUENTO 0.00 3 13145 \N +528820 2025-11-21 19:00:04.312985+00 2025-11-21 19:00:04.312998+00 f t TOTAL 0.00 4 13145 \N +528821 2025-11-21 19:00:04.315291+00 2025-11-21 19:00:04.315305+00 f t ADELANTO 0.00 5 13145 \N +542022 2025-11-24 21:41:28.402588+00 2025-11-24 21:41:28.402597+00 f t SUBTOTAL 46000.00 1 13447 \N +542023 2025-11-24 21:41:28.404749+00 2025-11-24 21:41:28.404755+00 f t COSTO_SERVICIO 0.00 2 13447 \N +542024 2025-11-24 21:41:28.405809+00 2025-11-24 21:41:28.405817+00 f t DESCUENTO 0.00 3 13447 \N +542025 2025-11-24 21:41:28.407061+00 2025-11-24 21:41:28.407067+00 f t TOTAL 46000.00 4 13447 \N +542026 2025-11-24 21:41:28.408416+00 2025-11-24 21:41:28.408422+00 f t ADELANTO 11000.00 5 13447 \N +529252 2025-11-21 20:10:23.093233+00 2025-11-21 20:10:23.093245+00 f t SUBTOTAL 0.00 1 13158 \N +529253 2025-11-21 20:10:23.095325+00 2025-11-21 20:10:23.095332+00 f t COSTO_SERVICIO 0.00 2 13158 \N +529254 2025-11-21 20:10:23.097188+00 2025-11-21 20:10:23.097195+00 f t DESCUENTO 0.00 3 13158 \N +529255 2025-11-21 20:10:23.098407+00 2025-11-21 20:10:23.098415+00 f t TOTAL 0.00 4 13158 \N +529256 2025-11-21 20:10:23.100232+00 2025-11-21 20:10:23.10024+00 f t ADELANTO 0.00 5 13158 \N +542582 2025-11-24 22:55:50.92406+00 2025-11-24 22:55:50.924067+00 f t SUBTOTAL 204000.00 1 13461 \N +542583 2025-11-24 22:55:50.925646+00 2025-11-24 22:55:50.925652+00 f t COSTO_SERVICIO 0.00 2 13461 \N +542584 2025-11-24 22:55:50.926733+00 2025-11-24 22:55:50.926738+00 f t DESCUENTO 9200.00 3 13461 \N +542585 2025-11-24 22:55:50.927645+00 2025-11-24 22:55:50.92765+00 f t TOTAL 194800.00 4 13461 \N +542586 2025-11-24 22:55:50.928624+00 2025-11-24 22:55:50.928631+00 f t ADELANTO 59000.00 5 13461 \N +520547 2025-11-20 11:32:48.724411+00 2025-11-20 11:32:48.724418+00 f t SUBTOTAL 46000.00 1 12947 \N +520548 2025-11-20 11:32:48.72598+00 2025-11-20 11:32:48.725988+00 f t COSTO_SERVICIO 0.00 2 12947 \N +520549 2025-11-20 11:32:48.727047+00 2025-11-20 11:32:48.727054+00 f t DESCUENTO 0.00 3 12947 \N +520550 2025-11-20 11:32:48.728099+00 2025-11-20 11:32:48.728105+00 f t TOTAL 46000.00 4 12947 \N +520551 2025-11-20 11:32:48.729139+00 2025-11-20 11:32:48.729144+00 f t ADELANTO 11000.00 5 12947 \N +543077 2025-11-25 00:22:10.429198+00 2025-11-25 00:22:10.429208+00 f t SUBTOTAL 0.00 1 13476 \N +543078 2025-11-25 00:22:10.431516+00 2025-11-25 00:22:10.431525+00 f t COSTO_SERVICIO 0.00 2 13476 \N +543079 2025-11-25 00:22:10.432685+00 2025-11-25 00:22:10.432692+00 f t DESCUENTO 0.00 3 13476 \N +543080 2025-11-25 00:22:10.433856+00 2025-11-25 00:22:10.433862+00 f t TOTAL 0.00 4 13476 \N +543081 2025-11-25 00:22:10.434886+00 2025-11-25 00:22:10.434892+00 f t ADELANTO 0.00 5 13476 \N +524132 2025-11-20 22:54:44.605867+00 2025-11-20 22:54:44.605874+00 f t SUBTOTAL 55000.00 1 13040 \N +524133 2025-11-20 22:54:44.60778+00 2025-11-20 22:54:44.607787+00 f t COSTO_SERVICIO 0.00 2 13040 \N +524134 2025-11-20 22:54:44.608847+00 2025-11-20 22:54:44.608852+00 f t DESCUENTO 0.00 3 13040 \N +524135 2025-11-20 22:54:44.609751+00 2025-11-20 22:54:44.609758+00 f t TOTAL 55000.00 4 13040 \N +524136 2025-11-20 22:54:44.611068+00 2025-11-20 22:54:44.611075+00 f t ADELANTO 11000.00 5 13040 \N +525072 2025-11-21 01:03:53.647793+00 2025-11-21 01:03:53.647801+00 f t SUBTOTAL 55000.00 1 13057 \N +525073 2025-11-21 01:03:53.649529+00 2025-11-21 01:03:53.649538+00 f t COSTO_SERVICIO 0.00 2 13057 \N +525074 2025-11-21 01:03:53.650753+00 2025-11-21 01:03:53.650759+00 f t DESCUENTO 0.00 3 13057 \N +525075 2025-11-21 01:03:53.651918+00 2025-11-21 01:03:53.651924+00 f t TOTAL 55000.00 4 13057 \N +520597 2025-11-20 11:41:30.918105+00 2025-11-20 11:41:30.918112+00 f t SUBTOTAL 31500.00 1 12948 \N +520598 2025-11-20 11:41:30.919929+00 2025-11-20 11:41:30.919936+00 f t COSTO_SERVICIO 0.00 2 12948 \N +520599 2025-11-20 11:41:30.921324+00 2025-11-20 11:41:30.921332+00 f t DESCUENTO 0.00 3 12948 \N +520600 2025-11-20 11:41:30.922313+00 2025-11-20 11:41:30.922319+00 f t TOTAL 31500.00 4 12948 \N +520601 2025-11-20 11:41:30.92339+00 2025-11-20 11:41:30.923395+00 f t ADELANTO 31500.00 5 12948 \N +525076 2025-11-21 01:03:53.653201+00 2025-11-21 01:03:53.653208+00 f t ADELANTO 11000.00 5 13057 \N +520607 2025-11-20 11:53:57.838466+00 2025-11-20 11:53:57.838475+00 f t SUBTOTAL 0.00 1 12949 \N +520608 2025-11-20 11:53:57.839831+00 2025-11-20 11:53:57.839837+00 f t COSTO_SERVICIO 0.00 2 12949 \N +520609 2025-11-20 11:53:57.840857+00 2025-11-20 11:53:57.840863+00 f t DESCUENTO 0.00 3 12949 \N +520610 2025-11-20 11:53:57.841768+00 2025-11-20 11:53:57.841773+00 f t TOTAL 0.00 4 12949 \N +520611 2025-11-20 11:53:57.842675+00 2025-11-20 11:53:57.84268+00 f t ADELANTO 0.00 5 12949 \N +525422 2025-11-21 01:55:09.386381+00 2025-11-21 01:55:09.386393+00 f t SUBTOTAL 55000.00 1 13063 \N +525423 2025-11-21 01:55:09.389171+00 2025-11-21 01:55:09.389184+00 f t COSTO_SERVICIO 0.00 2 13063 \N +525424 2025-11-21 01:55:09.39112+00 2025-11-21 01:55:09.391165+00 f t DESCUENTO 0.00 3 13063 \N +525425 2025-11-21 01:55:09.393368+00 2025-11-21 01:55:09.393378+00 f t TOTAL 55000.00 4 13063 \N +520617 2025-11-20 12:26:59.59443+00 2025-11-20 12:26:59.59444+00 f t SUBTOTAL 0.00 1 12950 \N +520618 2025-11-20 12:26:59.595979+00 2025-11-20 12:26:59.595986+00 f t COSTO_SERVICIO 0.00 2 12950 \N +520619 2025-11-20 12:26:59.597173+00 2025-11-20 12:26:59.597178+00 f t DESCUENTO 0.00 3 12950 \N +520620 2025-11-20 12:26:59.598222+00 2025-11-20 12:26:59.59823+00 f t TOTAL 0.00 4 12950 \N +520621 2025-11-20 12:26:59.599257+00 2025-11-20 12:26:59.599262+00 f t ADELANTO 0.00 5 12950 \N +525426 2025-11-21 01:55:09.395029+00 2025-11-21 01:55:09.395038+00 f t ADELANTO 11000.00 5 13063 \N +525607 2025-11-21 02:11:05.443883+00 2025-11-21 02:11:05.44389+00 f t SUBTOTAL 54000.00 1 13064 \N +525608 2025-11-21 02:11:05.445654+00 2025-11-21 02:11:05.445661+00 f t COSTO_SERVICIO 0.00 2 13064 \N +525609 2025-11-21 02:11:05.446918+00 2025-11-21 02:11:05.446924+00 f t DESCUENTO 0.00 3 13064 \N +525610 2025-11-21 02:11:05.447952+00 2025-11-21 02:11:05.447958+00 f t TOTAL 54000.00 4 13064 \N +525611 2025-11-21 02:11:05.448954+00 2025-11-21 02:11:05.448959+00 f t ADELANTO 13500.00 5 13064 \N +537732 2025-11-24 05:07:31.136063+00 2025-11-24 05:07:31.13607+00 f t SUBTOTAL 80000.00 1 13354 \N +537733 2025-11-24 05:07:31.138151+00 2025-11-24 05:07:31.138158+00 f t COSTO_SERVICIO 0.00 2 13354 \N +537734 2025-11-24 05:07:31.139559+00 2025-11-24 05:07:31.139565+00 f t DESCUENTO 0.00 3 13354 \N +537735 2025-11-24 05:07:31.140726+00 2025-11-24 05:07:31.140733+00 f t TOTAL 80000.00 4 13354 \N +537736 2025-11-24 05:07:31.142005+00 2025-11-24 05:07:31.14201+00 f t ADELANTO 12000.00 5 13354 \N +520672 2025-11-20 12:38:16.512259+00 2025-11-20 12:38:16.51227+00 f t SUBTOTAL 0.00 1 12951 \N +520673 2025-11-20 12:38:16.513988+00 2025-11-20 12:38:16.513995+00 f t COSTO_SERVICIO 0.00 2 12951 \N +520674 2025-11-20 12:38:16.514936+00 2025-11-20 12:38:16.514942+00 f t DESCUENTO 0.00 3 12951 \N +520675 2025-11-20 12:38:16.515853+00 2025-11-20 12:38:16.515859+00 f t TOTAL 0.00 4 12951 \N +520676 2025-11-20 12:38:16.516829+00 2025-11-20 12:38:16.516835+00 f t ADELANTO 0.00 5 12951 \N +520722 2025-11-20 12:45:38.213854+00 2025-11-20 12:45:38.213866+00 f t SUBTOTAL 70000.00 1 12952 \N +520723 2025-11-20 12:45:38.215944+00 2025-11-20 12:45:38.215956+00 f t COSTO_SERVICIO 0.00 2 12952 \N +520724 2025-11-20 12:45:38.217509+00 2025-11-20 12:45:38.217519+00 f t DESCUENTO 0.00 3 12952 \N +520725 2025-11-20 12:45:38.218842+00 2025-11-20 12:45:38.218851+00 f t TOTAL 70000.00 4 12952 \N +520726 2025-11-20 12:45:38.220217+00 2025-11-20 12:45:38.220226+00 f t ADELANTO 19000.00 5 12952 \N +520732 2025-11-20 12:48:06.658702+00 2025-11-20 12:48:06.658711+00 f t SUBTOTAL 0.00 1 12953 \N +520733 2025-11-20 12:48:06.660247+00 2025-11-20 12:48:06.660254+00 f t COSTO_SERVICIO 0.00 2 12953 \N +520734 2025-11-20 12:48:06.661463+00 2025-11-20 12:48:06.66147+00 f t DESCUENTO 0.00 3 12953 \N +520735 2025-11-20 12:48:06.662609+00 2025-11-20 12:48:06.662614+00 f t TOTAL 0.00 4 12953 \N +520736 2025-11-20 12:48:06.663531+00 2025-11-20 12:48:06.663537+00 f t ADELANTO 0.00 5 12953 \N +520782 2025-11-20 13:00:07.857829+00 2025-11-20 13:00:07.857843+00 f t SUBTOTAL 0.00 1 12955 \N +520783 2025-11-20 13:00:07.871647+00 2025-11-20 13:00:07.871661+00 f t COSTO_SERVICIO 0.00 2 12955 \N +520784 2025-11-20 13:00:07.890162+00 2025-11-20 13:00:07.890176+00 f t DESCUENTO 0.00 3 12955 \N +520785 2025-11-20 13:00:07.901592+00 2025-11-20 13:00:07.901605+00 f t TOTAL 0.00 4 12955 \N +520786 2025-11-20 13:00:07.904353+00 2025-11-20 13:00:07.904368+00 f t ADELANTO 0.00 5 12955 \N +520787 2025-11-20 13:00:52.017246+00 2025-11-20 13:00:52.017254+00 f t SUBTOTAL 120000.00 1 12954 \N +520788 2025-11-20 13:00:52.018197+00 2025-11-20 13:00:52.018202+00 f t COSTO_SERVICIO 0.00 2 12954 \N +520789 2025-11-20 13:00:52.018853+00 2025-11-20 13:00:52.018859+00 f t DESCUENTO 0.00 3 12954 \N +520790 2025-11-20 13:00:52.019529+00 2025-11-20 13:00:52.019536+00 f t TOTAL 120000.00 4 12954 \N +520791 2025-11-20 13:00:52.02028+00 2025-11-20 13:00:52.020287+00 f t ADELANTO 10000.00 5 12954 \N +520817 2025-11-20 13:09:46.942698+00 2025-11-20 13:09:46.942705+00 f t SUBTOTAL 54000.00 1 12956 \N +520818 2025-11-20 13:09:46.944459+00 2025-11-20 13:09:46.944466+00 f t COSTO_SERVICIO 0.00 2 12956 \N +520819 2025-11-20 13:09:46.945817+00 2025-11-20 13:09:46.945824+00 f t DESCUENTO 0.00 3 12956 \N +520820 2025-11-20 13:09:46.946899+00 2025-11-20 13:09:46.946905+00 f t TOTAL 54000.00 4 12956 \N +520821 2025-11-20 13:09:46.94789+00 2025-11-20 13:09:46.947896+00 f t ADELANTO 13500.00 5 12956 \N +520837 2025-11-20 13:21:53.05675+00 2025-11-20 13:21:53.056759+00 f t SUBTOTAL 0.00 1 12957 \N +520838 2025-11-20 13:21:53.058578+00 2025-11-20 13:21:53.058584+00 f t COSTO_SERVICIO 0.00 2 12957 \N +520839 2025-11-20 13:21:53.060122+00 2025-11-20 13:21:53.060127+00 f t DESCUENTO 0.00 3 12957 \N +520840 2025-11-20 13:21:53.061107+00 2025-11-20 13:21:53.061112+00 f t TOTAL 0.00 4 12957 \N +520841 2025-11-20 13:21:53.062076+00 2025-11-20 13:21:53.062081+00 f t ADELANTO 0.00 5 12957 \N +520847 2025-11-20 13:34:18.168845+00 2025-11-20 13:34:18.168855+00 f t SUBTOTAL 0.00 1 12958 \N +520848 2025-11-20 13:34:18.170295+00 2025-11-20 13:34:18.170302+00 f t COSTO_SERVICIO 0.00 2 12958 \N +520849 2025-11-20 13:34:18.171436+00 2025-11-20 13:34:18.171443+00 f t DESCUENTO 0.00 3 12958 \N +520850 2025-11-20 13:34:18.172488+00 2025-11-20 13:34:18.172494+00 f t TOTAL 0.00 4 12958 \N +520851 2025-11-20 13:34:18.173357+00 2025-11-20 13:34:18.173362+00 f t ADELANTO 0.00 5 12958 \N +524362 2025-11-20 23:47:51.909371+00 2025-11-20 23:47:51.909378+00 f t SUBTOTAL 55000.00 1 13047 \N +524363 2025-11-20 23:47:51.910944+00 2025-11-20 23:47:51.91095+00 f t COSTO_SERVICIO 0.00 2 13047 \N +524364 2025-11-20 23:47:51.91219+00 2025-11-20 23:47:51.912195+00 f t DESCUENTO 0.00 3 13047 \N +524365 2025-11-20 23:47:51.913089+00 2025-11-20 23:47:51.913093+00 f t TOTAL 55000.00 4 13047 \N +524366 2025-11-20 23:47:51.913971+00 2025-11-20 23:47:51.913975+00 f t ADELANTO 11000.00 5 13047 \N +520877 2025-11-20 13:49:50.618665+00 2025-11-20 13:49:50.618672+00 f t SUBTOTAL 70000.00 1 12959 \N +520878 2025-11-20 13:49:50.620576+00 2025-11-20 13:49:50.620582+00 f t COSTO_SERVICIO 0.00 2 12959 \N +520879 2025-11-20 13:49:50.621722+00 2025-11-20 13:49:50.621728+00 f t DESCUENTO 0.00 3 12959 \N +520880 2025-11-20 13:49:50.622857+00 2025-11-20 13:49:50.622864+00 f t TOTAL 70000.00 4 12959 \N +520881 2025-11-20 13:49:50.623836+00 2025-11-20 13:49:50.623841+00 f t ADELANTO 19000.00 5 12959 \N +525252 2025-11-21 01:24:08.24083+00 2025-11-21 01:24:08.240841+00 f t SUBTOTAL 78000.00 1 13060 \N +525253 2025-11-21 01:24:08.242909+00 2025-11-21 01:24:08.242916+00 f t COSTO_SERVICIO 0.00 2 13060 \N +525254 2025-11-21 01:24:08.244354+00 2025-11-21 01:24:08.24436+00 f t DESCUENTO 0.00 3 13060 \N +520907 2025-11-20 13:53:25.878258+00 2025-11-20 13:53:25.878266+00 f t SUBTOTAL 70000.00 1 12960 \N +520908 2025-11-20 13:53:25.879859+00 2025-11-20 13:53:25.879865+00 f t COSTO_SERVICIO 0.00 2 12960 \N +520909 2025-11-20 13:53:25.880979+00 2025-11-20 13:53:25.880985+00 f t DESCUENTO 0.00 3 12960 \N +520910 2025-11-20 13:53:25.882004+00 2025-11-20 13:53:25.88201+00 f t TOTAL 70000.00 4 12960 \N +520911 2025-11-20 13:53:25.883068+00 2025-11-20 13:53:25.883073+00 f t ADELANTO 19000.00 5 12960 \N +525255 2025-11-21 01:24:08.245723+00 2025-11-21 01:24:08.245729+00 f t TOTAL 78000.00 4 13060 \N +525256 2025-11-21 01:24:08.247239+00 2025-11-21 01:24:08.247245+00 f t ADELANTO 21500.00 5 13060 \N +520917 2025-11-20 13:55:24.692385+00 2025-11-20 13:55:24.692394+00 f t SUBTOTAL 0.00 1 12961 \N +520918 2025-11-20 13:55:24.6937+00 2025-11-20 13:55:24.693708+00 f t COSTO_SERVICIO 0.00 2 12961 \N +520919 2025-11-20 13:55:24.69483+00 2025-11-20 13:55:24.694837+00 f t DESCUENTO 0.00 3 12961 \N +520920 2025-11-20 13:55:24.695845+00 2025-11-20 13:55:24.69585+00 f t TOTAL 0.00 4 12961 \N +520921 2025-11-20 13:55:24.69686+00 2025-11-20 13:55:24.696866+00 f t ADELANTO 0.00 5 12961 \N +520927 2025-11-20 13:56:10.123917+00 2025-11-20 13:56:10.123929+00 f t SUBTOTAL 0.00 1 12962 \N +520928 2025-11-20 13:56:10.125549+00 2025-11-20 13:56:10.125556+00 f t COSTO_SERVICIO 0.00 2 12962 \N +520929 2025-11-20 13:56:10.126862+00 2025-11-20 13:56:10.126868+00 f t DESCUENTO 0.00 3 12962 \N +520930 2025-11-20 13:56:10.128031+00 2025-11-20 13:56:10.128037+00 f t TOTAL 0.00 4 12962 \N +520931 2025-11-20 13:56:10.129171+00 2025-11-20 13:56:10.129176+00 f t ADELANTO 0.00 5 12962 \N +525612 2025-11-21 02:11:21.839151+00 2025-11-21 02:11:21.839163+00 f t SUBTOTAL 46000.00 1 13068 \N +525613 2025-11-21 02:11:21.841083+00 2025-11-21 02:11:21.841093+00 f t COSTO_SERVICIO 0.00 2 13068 \N +525614 2025-11-21 02:11:21.8424+00 2025-11-21 02:11:21.842408+00 f t DESCUENTO 0.00 3 13068 \N +525615 2025-11-21 02:11:21.843597+00 2025-11-21 02:11:21.843602+00 f t TOTAL 46000.00 4 13068 \N +525616 2025-11-21 02:11:21.844802+00 2025-11-21 02:11:21.844807+00 f t ADELANTO 11000.00 5 13068 \N +520947 2025-11-20 14:11:48.452917+00 2025-11-20 14:11:48.452926+00 f t SUBTOTAL 0.00 1 12963 \N +520948 2025-11-20 14:11:48.455075+00 2025-11-20 14:11:48.455087+00 f t COSTO_SERVICIO 0.00 2 12963 \N +520949 2025-11-20 14:11:48.456385+00 2025-11-20 14:11:48.45639+00 f t DESCUENTO 0.00 3 12963 \N +520950 2025-11-20 14:11:48.457592+00 2025-11-20 14:11:48.457597+00 f t TOTAL 0.00 4 12963 \N +520951 2025-11-20 14:11:48.458785+00 2025-11-20 14:11:48.45879+00 f t ADELANTO 0.00 5 12963 \N +520957 2025-11-20 14:15:07.271625+00 2025-11-20 14:15:07.271638+00 f t SUBTOTAL 0.00 1 12964 \N +520958 2025-11-20 14:15:07.273892+00 2025-11-20 14:15:07.273904+00 f t COSTO_SERVICIO 0.00 2 12964 \N +520959 2025-11-20 14:15:07.275847+00 2025-11-20 14:15:07.275859+00 f t DESCUENTO 0.00 3 12964 \N +520960 2025-11-20 14:15:07.277674+00 2025-11-20 14:15:07.277685+00 f t TOTAL 0.00 4 12964 \N +520961 2025-11-20 14:15:07.279995+00 2025-11-20 14:15:07.280006+00 f t ADELANTO 0.00 5 12964 \N +526562 2025-11-21 12:04:56.799161+00 2025-11-21 12:04:56.799168+00 f t SUBTOTAL 46000.00 1 13090 \N +526563 2025-11-21 12:04:56.800898+00 2025-11-21 12:04:56.800904+00 f t COSTO_SERVICIO 0.00 2 13090 \N +526564 2025-11-21 12:04:56.80188+00 2025-11-21 12:04:56.801885+00 f t DESCUENTO 0.00 3 13090 \N +526565 2025-11-21 12:04:56.802849+00 2025-11-21 12:04:56.802854+00 f t TOTAL 46000.00 4 13090 \N +526566 2025-11-21 12:04:56.803837+00 2025-11-21 12:04:56.803842+00 f t ADELANTO 11000.00 5 13090 \N +520987 2025-11-20 14:17:01.324689+00 2025-11-20 14:17:01.324697+00 f t SUBTOTAL 54000.00 1 12965 \N +520988 2025-11-20 14:17:01.32634+00 2025-11-20 14:17:01.32635+00 f t COSTO_SERVICIO 0.00 2 12965 \N +520989 2025-11-20 14:17:01.327858+00 2025-11-20 14:17:01.327865+00 f t DESCUENTO 0.00 3 12965 \N +520990 2025-11-20 14:17:01.3297+00 2025-11-20 14:17:01.329708+00 f t TOTAL 54000.00 4 12965 \N +520991 2025-11-20 14:17:01.330992+00 2025-11-20 14:17:01.330998+00 f t ADELANTO 13500.00 5 12965 \N +521007 2025-11-20 14:34:45.811414+00 2025-11-20 14:34:45.811427+00 f t SUBTOTAL 0.00 1 12966 \N +521008 2025-11-20 14:34:45.813377+00 2025-11-20 14:34:45.813386+00 f t COSTO_SERVICIO 0.00 2 12966 \N +521009 2025-11-20 14:34:45.814652+00 2025-11-20 14:34:45.81466+00 f t DESCUENTO 0.00 3 12966 \N +521010 2025-11-20 14:34:45.815888+00 2025-11-20 14:34:45.815895+00 f t TOTAL 0.00 4 12966 \N +521011 2025-11-20 14:34:45.81701+00 2025-11-20 14:34:45.817017+00 f t ADELANTO 0.00 5 12966 \N +521012 2025-11-20 14:35:39.518908+00 2025-11-20 14:35:39.518915+00 f t SUBTOTAL 111000.00 1 12946 \N +521013 2025-11-20 14:35:39.52098+00 2025-11-20 14:35:39.520988+00 f t COSTO_SERVICIO 0.00 2 12946 \N +521014 2025-11-20 14:35:39.522497+00 2025-11-20 14:35:39.522507+00 f t DESCUENTO 0.00 3 12946 \N +521015 2025-11-20 14:35:39.524062+00 2025-11-20 14:35:39.524071+00 f t TOTAL 111000.00 4 12946 \N +521016 2025-11-20 14:35:39.525403+00 2025-11-20 14:35:39.52541+00 f t ADELANTO 28000.00 5 12946 \N +521042 2025-11-20 14:46:47.145347+00 2025-11-20 14:46:47.145354+00 f t SUBTOTAL 57000.00 1 12967 \N +521043 2025-11-20 14:46:47.14683+00 2025-11-20 14:46:47.146836+00 f t COSTO_SERVICIO 0.00 2 12967 \N +521044 2025-11-20 14:46:47.147947+00 2025-11-20 14:46:47.147952+00 f t DESCUENTO 0.00 3 12967 \N +521045 2025-11-20 14:46:47.149096+00 2025-11-20 14:46:47.149103+00 f t TOTAL 57000.00 4 12967 \N +521046 2025-11-20 14:46:47.150094+00 2025-11-20 14:46:47.150099+00 f t ADELANTO 57000.00 5 12967 \N +521137 2025-11-20 14:57:57.491066+00 2025-11-20 14:57:57.491073+00 f t SUBTOTAL 126000.00 1 12968 \N +521138 2025-11-20 14:57:57.492618+00 2025-11-20 14:57:57.492626+00 f t COSTO_SERVICIO 0.00 2 12968 \N +521139 2025-11-20 14:57:57.493925+00 2025-11-20 14:57:57.493932+00 f t DESCUENTO 0.00 3 12968 \N +521140 2025-11-20 14:57:57.495538+00 2025-11-20 14:57:57.495545+00 f t TOTAL 126000.00 4 12968 \N +521141 2025-11-20 14:57:57.49682+00 2025-11-20 14:57:57.496826+00 f t ADELANTO 34500.00 5 12968 \N +523862 2025-11-20 21:55:23.254355+00 2025-11-20 21:55:23.254361+00 f t SUBTOTAL 54000.00 1 13033 \N +523863 2025-11-20 21:55:23.256776+00 2025-11-20 21:55:23.256782+00 f t COSTO_SERVICIO 0.00 2 13033 \N +521147 2025-11-20 15:01:50.793143+00 2025-11-20 15:01:50.793151+00 f t SUBTOTAL 55000.00 1 11254 \N +521148 2025-11-20 15:01:50.794829+00 2025-11-20 15:01:50.794835+00 f t COSTO_SERVICIO 0.00 2 11254 \N +521149 2025-11-20 15:01:50.795994+00 2025-11-20 15:01:50.796+00 f t DESCUENTO 0.00 3 11254 \N +521150 2025-11-20 15:01:50.796922+00 2025-11-20 15:01:50.796926+00 f t TOTAL 55000.00 4 11254 \N +521151 2025-11-20 15:01:50.797842+00 2025-11-20 15:01:50.797846+00 f t ADELANTO 11000.00 5 11254 \N +523864 2025-11-20 21:55:23.257853+00 2025-11-20 21:55:23.257858+00 f t DESCUENTO 0.00 3 13033 \N +523865 2025-11-20 21:55:23.259354+00 2025-11-20 21:55:23.259359+00 f t TOTAL 54000.00 4 13033 \N +523866 2025-11-20 21:55:23.260343+00 2025-11-20 21:55:23.260347+00 f t ADELANTO 13500.00 5 13033 \N +536247 2025-11-23 20:11:17.926653+00 2025-11-23 20:11:17.926664+00 f t SUBTOTAL 78000.00 1 13319 \N +536248 2025-11-23 20:11:17.9289+00 2025-11-23 20:11:17.928909+00 f t COSTO_SERVICIO 0.00 2 13319 \N +536249 2025-11-23 20:11:17.93064+00 2025-11-23 20:11:17.930647+00 f t DESCUENTO 0.00 3 13319 \N +536250 2025-11-23 20:11:17.931907+00 2025-11-23 20:11:17.931912+00 f t TOTAL 78000.00 4 13319 \N +536251 2025-11-23 20:11:17.933018+00 2025-11-23 20:11:17.933023+00 f t ADELANTO 13000.00 5 13319 \N +524742 2025-11-21 00:45:15.606243+00 2025-11-21 00:45:15.606253+00 f t SUBTOTAL 0.00 1 13054 \N +524743 2025-11-21 00:45:15.6083+00 2025-11-21 00:45:15.608307+00 f t COSTO_SERVICIO 0.00 2 13054 \N +521177 2025-11-20 15:09:25.026149+00 2025-11-20 15:09:25.026155+00 f t SUBTOTAL 70000.00 1 12969 \N +521178 2025-11-20 15:09:25.027711+00 2025-11-20 15:09:25.027717+00 f t COSTO_SERVICIO 0.00 2 12969 \N +521179 2025-11-20 15:09:25.029023+00 2025-11-20 15:09:25.029028+00 f t DESCUENTO 0.00 3 12969 \N +521180 2025-11-20 15:09:25.029915+00 2025-11-20 15:09:25.02992+00 f t TOTAL 70000.00 4 12969 \N +521181 2025-11-20 15:09:25.030848+00 2025-11-20 15:09:25.030852+00 f t ADELANTO 19000.00 5 12969 \N +524744 2025-11-21 00:45:15.609313+00 2025-11-21 00:45:15.609318+00 f t DESCUENTO 0.00 3 13054 \N +524745 2025-11-21 00:45:15.610266+00 2025-11-21 00:45:15.610271+00 f t TOTAL 0.00 4 13054 \N +524746 2025-11-21 00:45:15.611104+00 2025-11-21 00:45:15.611109+00 f t ADELANTO 0.00 5 13054 \N +525622 2025-11-21 03:13:32.272509+00 2025-11-21 03:13:32.272519+00 f t SUBTOTAL 0.00 1 13069 \N +525623 2025-11-21 03:13:32.273931+00 2025-11-21 03:13:32.273937+00 f t COSTO_SERVICIO 0.00 2 13069 \N +525624 2025-11-21 03:13:32.274831+00 2025-11-21 03:13:32.274836+00 f t DESCUENTO 0.00 3 13069 \N +525625 2025-11-21 03:13:32.276656+00 2025-11-21 03:13:32.276662+00 f t TOTAL 0.00 4 13069 \N +525626 2025-11-21 03:13:32.277478+00 2025-11-21 03:13:32.277483+00 f t ADELANTO 0.00 5 13069 \N +525802 2025-11-21 04:05:46.167051+00 2025-11-21 04:05:46.167058+00 f t SUBTOTAL 54000.00 1 13073 \N +525803 2025-11-21 04:05:46.168961+00 2025-11-21 04:05:46.168967+00 f t COSTO_SERVICIO 0.00 2 13073 \N +525804 2025-11-21 04:05:46.170212+00 2025-11-21 04:05:46.170218+00 f t DESCUENTO 0.00 3 13073 \N +525805 2025-11-21 04:05:46.171324+00 2025-11-21 04:05:46.171329+00 f t TOTAL 54000.00 4 13073 \N +525806 2025-11-21 04:05:46.172383+00 2025-11-21 04:05:46.172388+00 f t ADELANTO 13500.00 5 13073 \N +521257 2025-11-20 15:19:58.925871+00 2025-11-20 15:19:58.925881+00 f t SUBTOTAL 70000.00 1 12970 \N +521258 2025-11-20 15:19:58.927298+00 2025-11-20 15:19:58.927304+00 f t COSTO_SERVICIO 0.00 2 12970 \N +521259 2025-11-20 15:19:58.928369+00 2025-11-20 15:19:58.928378+00 f t DESCUENTO 0.00 3 12970 \N +521260 2025-11-20 15:19:58.929459+00 2025-11-20 15:19:58.929464+00 f t TOTAL 70000.00 4 12970 \N +521261 2025-11-20 15:19:58.930579+00 2025-11-20 15:19:58.930584+00 f t ADELANTO 19000.00 5 12970 \N +527902 2025-11-21 16:12:59.727003+00 2025-11-21 16:12:59.72701+00 f t SUBTOTAL 70000.00 1 13123 \N +527903 2025-11-21 16:12:59.728738+00 2025-11-21 16:12:59.728744+00 f t COSTO_SERVICIO 0.00 2 13123 \N +521312 2025-11-20 15:40:45.685487+00 2025-11-20 15:40:45.685498+00 f t SUBTOTAL 0.00 1 12971 \N +521313 2025-11-20 15:40:45.687238+00 2025-11-20 15:40:45.687245+00 f t COSTO_SERVICIO 0.00 2 12971 \N +521314 2025-11-20 15:40:45.688418+00 2025-11-20 15:40:45.688424+00 f t DESCUENTO 0.00 3 12971 \N +521315 2025-11-20 15:40:45.689658+00 2025-11-20 15:40:45.689667+00 f t TOTAL 0.00 4 12971 \N +521316 2025-11-20 15:40:45.690642+00 2025-11-20 15:40:45.690647+00 f t ADELANTO 0.00 5 12971 \N +527904 2025-11-21 16:12:59.730088+00 2025-11-21 16:12:59.730095+00 f t DESCUENTO 0.00 3 13123 \N +527905 2025-11-21 16:12:59.731274+00 2025-11-21 16:12:59.731281+00 f t TOTAL 70000.00 4 13123 \N +527906 2025-11-21 16:12:59.732328+00 2025-11-21 16:12:59.732333+00 f t ADELANTO 19000.00 5 13123 \N +528152 2025-11-21 16:43:06.784551+00 2025-11-21 16:43:06.784559+00 f t SUBTOTAL 156000.00 1 13118 \N +528153 2025-11-21 16:43:06.786644+00 2025-11-21 16:43:06.786654+00 f t COSTO_SERVICIO 0.00 2 13118 \N +528154 2025-11-21 16:43:06.788084+00 2025-11-21 16:43:06.788092+00 f t DESCUENTO 9200.00 3 13118 \N +528155 2025-11-21 16:43:06.789633+00 2025-11-21 16:43:06.78964+00 f t TOTAL 146800.00 4 13118 \N +528156 2025-11-21 16:43:06.790866+00 2025-11-21 16:43:06.790874+00 f t ADELANTO 43000.00 5 13118 \N +528402 2025-11-21 18:18:42.339339+00 2025-11-21 18:18:42.339349+00 f t SUBTOTAL 55000.00 1 13138 \N +528403 2025-11-21 18:18:42.34133+00 2025-11-21 18:18:42.341336+00 f t COSTO_SERVICIO 0.00 2 13138 \N +528404 2025-11-21 18:18:42.342544+00 2025-11-21 18:18:42.34255+00 f t DESCUENTO 0.00 3 13138 \N +528405 2025-11-21 18:18:42.343617+00 2025-11-21 18:18:42.343622+00 f t TOTAL 55000.00 4 13138 \N +528406 2025-11-21 18:18:42.344578+00 2025-11-21 18:18:42.344584+00 f t ADELANTO 11000.00 5 13138 \N +528827 2025-11-21 19:17:39.614744+00 2025-11-21 19:17:39.614752+00 f t SUBTOTAL 0.00 1 13146 \N +528828 2025-11-21 19:17:39.616561+00 2025-11-21 19:17:39.616568+00 f t COSTO_SERVICIO 0.00 2 13146 \N +528829 2025-11-21 19:17:39.617534+00 2025-11-21 19:17:39.617538+00 f t DESCUENTO 0.00 3 13146 \N +528830 2025-11-21 19:17:39.618513+00 2025-11-21 19:17:39.618522+00 f t TOTAL 0.00 4 13146 \N +528831 2025-11-21 19:17:39.619541+00 2025-11-21 19:17:39.619546+00 f t ADELANTO 0.00 5 13146 \N +521382 2025-11-20 15:44:43.624818+00 2025-11-20 15:44:43.624824+00 f t SUBTOTAL 54000.00 1 12972 \N +521383 2025-11-20 15:44:43.62634+00 2025-11-20 15:44:43.626346+00 f t COSTO_SERVICIO 0.00 2 12972 \N +521384 2025-11-20 15:44:43.627395+00 2025-11-20 15:44:43.6274+00 f t DESCUENTO 0.00 3 12972 \N +521385 2025-11-20 15:44:43.628594+00 2025-11-20 15:44:43.628602+00 f t TOTAL 54000.00 4 12972 \N +521386 2025-11-20 15:44:43.629855+00 2025-11-20 15:44:43.629862+00 f t ADELANTO 13500.00 5 12972 \N +521392 2025-11-20 15:47:16.477306+00 2025-11-20 15:47:16.477314+00 f t SUBTOTAL 0.00 1 12973 \N +521393 2025-11-20 15:47:16.478724+00 2025-11-20 15:47:16.478733+00 f t COSTO_SERVICIO 0.00 2 12973 \N +521394 2025-11-20 15:47:16.479895+00 2025-11-20 15:47:16.479901+00 f t DESCUENTO 0.00 3 12973 \N +521395 2025-11-20 15:47:16.48086+00 2025-11-20 15:47:16.480866+00 f t TOTAL 0.00 4 12973 \N +521396 2025-11-20 15:47:16.481765+00 2025-11-20 15:47:16.481772+00 f t ADELANTO 0.00 5 12973 \N +529547 2025-11-21 21:28:52.536177+00 2025-11-21 21:28:52.536185+00 f t SUBTOTAL 70000.00 1 13165 \N +529548 2025-11-21 21:28:52.538288+00 2025-11-21 21:28:52.538295+00 f t COSTO_SERVICIO 0.00 2 13165 \N +529549 2025-11-21 21:28:52.539502+00 2025-11-21 21:28:52.539507+00 f t DESCUENTO 0.00 3 13165 \N +529550 2025-11-21 21:28:52.540822+00 2025-11-21 21:28:52.540828+00 f t TOTAL 70000.00 4 13165 \N +529551 2025-11-21 21:28:52.542024+00 2025-11-21 21:28:52.542029+00 f t ADELANTO 19000.00 5 13165 \N +535947 2025-11-23 19:26:03.698176+00 2025-11-23 19:26:03.698182+00 f t SUBTOTAL 23000.00 1 13313 \N +535948 2025-11-23 19:26:03.700489+00 2025-11-23 19:26:03.700496+00 f t COSTO_SERVICIO 0.00 2 13313 \N +535949 2025-11-23 19:26:03.701999+00 2025-11-23 19:26:03.702007+00 f t DESCUENTO 0.00 3 13313 \N +535950 2025-11-23 19:26:03.703247+00 2025-11-23 19:26:03.703253+00 f t TOTAL 23000.00 4 13313 \N +535951 2025-11-23 19:26:03.704326+00 2025-11-23 19:26:03.704332+00 f t ADELANTO 5500.00 5 13313 \N +521447 2025-11-20 16:00:09.442854+00 2025-11-20 16:00:09.44287+00 f t SUBTOTAL 0.00 1 12974 \N +521448 2025-11-20 16:00:09.448879+00 2025-11-20 16:00:09.448894+00 f t COSTO_SERVICIO 0.00 2 12974 \N +521449 2025-11-20 16:00:09.454579+00 2025-11-20 16:00:09.454591+00 f t DESCUENTO 0.00 3 12974 \N +521450 2025-11-20 16:00:09.461897+00 2025-11-20 16:00:09.461909+00 f t TOTAL 0.00 4 12974 \N +521451 2025-11-20 16:00:09.473285+00 2025-11-20 16:00:09.473297+00 f t ADELANTO 0.00 5 12974 \N +524552 2025-11-21 00:02:43.25848+00 2025-11-21 00:02:43.258491+00 f t SUBTOTAL 46000.00 1 13049 \N +524553 2025-11-21 00:02:43.26052+00 2025-11-21 00:02:43.26053+00 f t COSTO_SERVICIO 0.00 2 13049 \N +524554 2025-11-21 00:02:43.261961+00 2025-11-21 00:02:43.261969+00 f t DESCUENTO 0.00 3 13049 \N +524555 2025-11-21 00:02:43.263225+00 2025-11-21 00:02:43.263233+00 f t TOTAL 46000.00 4 13049 \N +524556 2025-11-21 00:02:43.264577+00 2025-11-21 00:02:43.264584+00 f t ADELANTO 11000.00 5 13049 \N +537267 2025-11-24 01:27:21.721236+00 2025-11-24 01:27:21.721243+00 f t SUBTOTAL 70000.00 1 13340 \N +537268 2025-11-24 01:27:21.723152+00 2025-11-24 01:27:21.72316+00 f t COSTO_SERVICIO 0.00 2 13340 \N +537269 2025-11-24 01:27:21.724434+00 2025-11-24 01:27:21.72444+00 f t DESCUENTO 0.00 3 13340 \N +537270 2025-11-24 01:27:21.725487+00 2025-11-24 01:27:21.725493+00 f t TOTAL 70000.00 4 13340 \N +537271 2025-11-24 01:27:21.726427+00 2025-11-24 01:27:21.726432+00 f t ADELANTO 19000.00 5 13340 \N +521482 2025-11-20 16:07:55.191748+00 2025-11-20 16:07:55.191759+00 f t SUBTOTAL 0.00 1 12975 \N +521483 2025-11-20 16:07:55.193847+00 2025-11-20 16:07:55.193855+00 f t COSTO_SERVICIO 0.00 2 12975 \N +521484 2025-11-20 16:07:55.195221+00 2025-11-20 16:07:55.195228+00 f t DESCUENTO 0.00 3 12975 \N +521485 2025-11-20 16:07:55.196512+00 2025-11-20 16:07:55.196519+00 f t TOTAL 0.00 4 12975 \N +521486 2025-11-20 16:07:55.197733+00 2025-11-20 16:07:55.197739+00 f t ADELANTO 0.00 5 12975 \N +537942 2025-11-24 05:46:22.674599+00 2025-11-24 05:46:22.674607+00 f t SUBTOTAL 20500.00 1 13358 \N +537943 2025-11-24 05:46:22.676727+00 2025-11-24 05:46:22.676734+00 f t COSTO_SERVICIO 0.00 2 13358 \N +537944 2025-11-24 05:46:22.677826+00 2025-11-24 05:46:22.677831+00 f t DESCUENTO 0.00 3 13358 \N +537945 2025-11-24 05:46:22.679058+00 2025-11-24 05:46:22.679065+00 f t TOTAL 20500.00 4 13358 \N +537946 2025-11-24 05:46:22.680164+00 2025-11-24 05:46:22.68017+00 f t ADELANTO 20500.00 5 13358 \N +521512 2025-11-20 16:17:29.473684+00 2025-11-20 16:17:29.473698+00 f t SUBTOTAL 88000.00 1 12976 \N +521513 2025-11-20 16:17:29.475415+00 2025-11-20 16:17:29.475422+00 f t COSTO_SERVICIO 0.00 2 12976 \N +521514 2025-11-20 16:17:29.476765+00 2025-11-20 16:17:29.476771+00 f t DESCUENTO 0.00 3 12976 \N +521515 2025-11-20 16:17:29.478133+00 2025-11-20 16:17:29.478139+00 f t TOTAL 88000.00 4 12976 \N +521516 2025-11-20 16:17:29.479412+00 2025-11-20 16:17:29.479419+00 f t ADELANTO 13000.00 5 12976 \N +538552 2025-11-24 10:20:18.492014+00 2025-11-24 10:20:18.492023+00 f t SUBTOTAL 0.00 1 13370 \N +538553 2025-11-24 10:20:18.493469+00 2025-11-24 10:20:18.493476+00 f t COSTO_SERVICIO 0.00 2 13370 \N +538554 2025-11-24 10:20:18.494561+00 2025-11-24 10:20:18.494567+00 f t DESCUENTO 0.00 3 13370 \N +538555 2025-11-24 10:20:18.49548+00 2025-11-24 10:20:18.495486+00 f t TOTAL 0.00 4 13370 \N +538556 2025-11-24 10:20:18.496391+00 2025-11-24 10:20:18.496396+00 f t ADELANTO 0.00 5 13370 \N +521547 2025-11-20 16:21:03.574979+00 2025-11-20 16:21:03.57499+00 f t SUBTOTAL 0.00 1 12977 \N +521548 2025-11-20 16:21:03.577952+00 2025-11-20 16:21:03.577963+00 f t COSTO_SERVICIO 0.00 2 12977 \N +521549 2025-11-20 16:21:03.579395+00 2025-11-20 16:21:03.579403+00 f t DESCUENTO 0.00 3 12977 \N +521550 2025-11-20 16:21:03.580698+00 2025-11-20 16:21:03.580707+00 f t TOTAL 0.00 4 12977 \N +521551 2025-11-20 16:21:03.581888+00 2025-11-20 16:21:03.581893+00 f t ADELANTO 0.00 5 12977 \N +521592 2025-11-20 16:22:41.141624+00 2025-11-20 16:22:41.141636+00 f t SUBTOTAL 46000.00 1 12979 \N +521593 2025-11-20 16:22:41.143337+00 2025-11-20 16:22:41.143344+00 f t COSTO_SERVICIO 0.00 2 12979 \N +521594 2025-11-20 16:22:41.144785+00 2025-11-20 16:22:41.144794+00 f t DESCUENTO 0.00 3 12979 \N +521595 2025-11-20 16:22:41.14611+00 2025-11-20 16:22:41.146115+00 f t TOTAL 46000.00 4 12979 \N +521596 2025-11-20 16:22:41.147222+00 2025-11-20 16:22:41.147227+00 f t ADELANTO 11000.00 5 12979 \N +521607 2025-11-20 16:26:25.300267+00 2025-11-20 16:26:25.300274+00 f t SUBTOTAL 55000.00 1 12980 \N +521608 2025-11-20 16:26:25.302185+00 2025-11-20 16:26:25.302192+00 f t COSTO_SERVICIO 0.00 2 12980 \N +521609 2025-11-20 16:26:25.303422+00 2025-11-20 16:26:25.303428+00 f t DESCUENTO 0.00 3 12980 \N +521610 2025-11-20 16:26:25.30445+00 2025-11-20 16:26:25.304455+00 f t TOTAL 55000.00 4 12980 \N +521611 2025-11-20 16:26:25.30553+00 2025-11-20 16:26:25.305536+00 f t ADELANTO 11000.00 5 12980 \N +528162 2025-11-21 16:49:14.778855+00 2025-11-21 16:49:14.778866+00 f t SUBTOTAL 0.00 1 13130 \N +528163 2025-11-21 16:49:14.780193+00 2025-11-21 16:49:14.780199+00 f t COSTO_SERVICIO 0.00 2 13130 \N +528164 2025-11-21 16:49:14.781146+00 2025-11-21 16:49:14.781151+00 f t DESCUENTO 0.00 3 13130 \N +528165 2025-11-21 16:49:14.78202+00 2025-11-21 16:49:14.782025+00 f t TOTAL 0.00 4 13130 \N +528166 2025-11-21 16:49:14.78291+00 2025-11-21 16:49:14.782915+00 f t ADELANTO 0.00 5 13130 \N +528282 2025-11-21 17:06:02.053038+00 2025-11-21 17:06:02.053052+00 f t SUBTOTAL 87000.00 1 13133 \N +528283 2025-11-21 17:06:02.055805+00 2025-11-21 17:06:02.055815+00 f t COSTO_SERVICIO 0.00 2 13133 \N +528284 2025-11-21 17:06:02.057644+00 2025-11-21 17:06:02.057655+00 f t DESCUENTO 0.00 3 13133 \N +528285 2025-11-21 17:06:02.059466+00 2025-11-21 17:06:02.059478+00 f t TOTAL 87000.00 4 13133 \N +528286 2025-11-21 17:06:02.061138+00 2025-11-21 17:06:02.061147+00 f t ADELANTO 87000.00 5 13133 \N +528837 2025-11-21 19:19:12.088347+00 2025-11-21 19:19:12.088357+00 f t SUBTOTAL 0.00 1 13147 \N +528838 2025-11-21 19:19:12.089858+00 2025-11-21 19:19:12.089864+00 f t COSTO_SERVICIO 0.00 2 13147 \N +528839 2025-11-21 19:19:12.090984+00 2025-11-21 19:19:12.090993+00 f t DESCUENTO 0.00 3 13147 \N +528840 2025-11-21 19:19:12.092337+00 2025-11-21 19:19:12.092343+00 f t TOTAL 0.00 4 13147 \N +528841 2025-11-21 19:19:12.093478+00 2025-11-21 19:19:12.093486+00 f t ADELANTO 0.00 5 13147 \N +521712 2025-11-20 16:36:28.992268+00 2025-11-20 16:36:28.992276+00 f t SUBTOTAL 188000.00 1 12981 \N +521713 2025-11-20 16:36:28.994496+00 2025-11-20 16:36:28.994506+00 f t COSTO_SERVICIO 0.00 2 12981 \N +521714 2025-11-20 16:36:28.995967+00 2025-11-20 16:36:28.995973+00 f t DESCUENTO 9200.00 3 12981 \N +521715 2025-11-20 16:36:28.997338+00 2025-11-20 16:36:28.997346+00 f t TOTAL 178800.00 4 12981 \N +521716 2025-11-20 16:36:28.998649+00 2025-11-20 16:36:28.998654+00 f t ADELANTO 48000.00 5 12981 \N +536257 2025-11-23 20:11:25.451144+00 2025-11-23 20:11:25.451152+00 f t SUBTOTAL 46000.00 1 13318 \N +536258 2025-11-23 20:11:25.452906+00 2025-11-23 20:11:25.452912+00 f t COSTO_SERVICIO 0.00 2 13318 \N +536259 2025-11-23 20:11:25.454199+00 2025-11-23 20:11:25.454205+00 f t DESCUENTO 0.00 3 13318 \N +536260 2025-11-23 20:11:25.455144+00 2025-11-23 20:11:25.455149+00 f t TOTAL 46000.00 4 13318 \N +536261 2025-11-23 20:11:25.456052+00 2025-11-23 20:11:25.456057+00 f t ADELANTO 11000.00 5 13318 \N +521742 2025-11-20 16:47:17.12301+00 2025-11-20 16:47:17.123018+00 f t SUBTOTAL 100900.00 1 12978 \N +521743 2025-11-20 16:47:17.124774+00 2025-11-20 16:47:17.12478+00 f t COSTO_SERVICIO 0.00 2 12978 \N +521744 2025-11-20 16:47:17.125949+00 2025-11-20 16:47:17.125954+00 f t DESCUENTO 0.00 3 12978 \N +521745 2025-11-20 16:47:17.126942+00 2025-11-20 16:47:17.126947+00 f t TOTAL 100900.00 4 12978 \N +521746 2025-11-20 16:47:17.128182+00 2025-11-20 16:47:17.128188+00 f t ADELANTO 60400.00 5 12978 \N +536542 2025-11-23 20:54:05.357793+00 2025-11-23 20:54:05.357801+00 f t SUBTOTAL 55000.00 1 13326 \N +536543 2025-11-23 20:54:05.359743+00 2025-11-23 20:54:05.359751+00 f t COSTO_SERVICIO 0.00 2 13326 \N +536544 2025-11-23 20:54:05.36111+00 2025-11-23 20:54:05.361115+00 f t DESCUENTO 0.00 3 13326 \N +536545 2025-11-23 20:54:05.362264+00 2025-11-23 20:54:05.362269+00 f t TOTAL 55000.00 4 13326 \N +536546 2025-11-23 20:54:05.363619+00 2025-11-23 20:54:05.363624+00 f t ADELANTO 11000.00 5 13326 \N +524562 2025-11-21 00:09:27.189965+00 2025-11-21 00:09:27.189974+00 f t SUBTOTAL 0.00 1 13050 \N +524563 2025-11-21 00:09:27.191465+00 2025-11-21 00:09:27.191472+00 f t COSTO_SERVICIO 0.00 2 13050 \N +524564 2025-11-21 00:09:27.192465+00 2025-11-21 00:09:27.192471+00 f t DESCUENTO 0.00 3 13050 \N +524565 2025-11-21 00:09:27.193371+00 2025-11-21 00:09:27.193377+00 f t TOTAL 0.00 4 13050 \N +524566 2025-11-21 00:09:27.19422+00 2025-11-21 00:09:27.194225+00 f t ADELANTO 0.00 5 13050 \N +549333 2025-11-26 00:21:37.769587+00 2025-11-26 00:21:37.769592+00 f t COSTO_SERVICIO 0.00 2 13621 \N +549334 2025-11-26 00:21:37.771322+00 2025-11-26 00:21:37.771328+00 f t DESCUENTO 0.00 3 13621 \N +549335 2025-11-26 00:21:37.772999+00 2025-11-26 00:21:37.773004+00 f t TOTAL 46000.00 4 13621 \N +549336 2025-11-26 00:21:37.774154+00 2025-11-26 00:21:37.774161+00 f t ADELANTO 11000.00 5 13621 \N +537277 2025-11-24 01:43:24.402092+00 2025-11-24 01:43:24.402105+00 f t SUBTOTAL 0.00 1 13341 \N +537278 2025-11-24 01:43:24.403875+00 2025-11-24 01:43:24.403885+00 f t COSTO_SERVICIO 0.00 2 13341 \N +537279 2025-11-24 01:43:24.405376+00 2025-11-24 01:43:24.405384+00 f t DESCUENTO 0.00 3 13341 \N +537280 2025-11-24 01:43:24.406757+00 2025-11-24 01:43:24.406765+00 f t TOTAL 0.00 4 13341 \N +537281 2025-11-24 01:43:24.407956+00 2025-11-24 01:43:24.407965+00 f t ADELANTO 0.00 5 13341 \N +521812 2025-11-20 16:55:39.264661+00 2025-11-20 16:55:39.264669+00 f t SUBTOTAL 55000.00 1 12984 \N +521813 2025-11-20 16:55:39.266373+00 2025-11-20 16:55:39.26638+00 f t COSTO_SERVICIO 0.00 2 12984 \N +521814 2025-11-20 16:55:39.268368+00 2025-11-20 16:55:39.268375+00 f t DESCUENTO 0.00 3 12984 \N +521815 2025-11-20 16:55:39.269525+00 2025-11-20 16:55:39.269533+00 f t TOTAL 55000.00 4 12984 \N +521816 2025-11-20 16:55:39.270606+00 2025-11-20 16:55:39.270611+00 f t ADELANTO 11000.00 5 12984 \N +539287 2025-11-24 12:32:33.818662+00 2025-11-24 12:32:33.818672+00 f t SUBTOTAL 0.00 1 13386 \N +539288 2025-11-24 12:32:33.820582+00 2025-11-24 12:32:33.82059+00 f t COSTO_SERVICIO 0.00 2 13386 \N +539289 2025-11-24 12:32:33.821738+00 2025-11-24 12:32:33.821744+00 f t DESCUENTO 0.00 3 13386 \N +539290 2025-11-24 12:32:33.822803+00 2025-11-24 12:32:33.822808+00 f t TOTAL 0.00 4 13386 \N +539291 2025-11-24 12:32:33.823772+00 2025-11-24 12:32:33.823777+00 f t ADELANTO 0.00 5 13386 \N +521847 2025-11-20 16:57:07.127737+00 2025-11-20 16:57:07.127746+00 f t SUBTOTAL 0.00 1 12983 \N +521848 2025-11-20 16:57:07.129608+00 2025-11-20 16:57:07.129614+00 f t COSTO_SERVICIO 0.00 2 12983 \N +521849 2025-11-20 16:57:07.130607+00 2025-11-20 16:57:07.130613+00 f t DESCUENTO 0.00 3 12983 \N +521850 2025-11-20 16:57:07.131578+00 2025-11-20 16:57:07.131583+00 f t TOTAL 0.00 4 12983 \N +521851 2025-11-20 16:57:07.132523+00 2025-11-20 16:57:07.132528+00 f t ADELANTO 0.00 5 12983 \N +539622 2025-11-24 13:38:21.848658+00 2025-11-24 13:38:21.84867+00 f t SUBTOTAL 70000.00 1 13392 \N +539623 2025-11-24 13:38:21.851046+00 2025-11-24 13:38:21.851054+00 f t COSTO_SERVICIO 0.00 2 13392 \N +539624 2025-11-24 13:38:21.852641+00 2025-11-24 13:38:21.852649+00 f t DESCUENTO 0.00 3 13392 \N +539625 2025-11-24 13:38:21.853976+00 2025-11-24 13:38:21.853981+00 f t TOTAL 70000.00 4 13392 \N +539626 2025-11-24 13:38:21.855391+00 2025-11-24 13:38:21.855396+00 f t ADELANTO 19000.00 5 13392 \N +521857 2025-11-20 16:58:22.946045+00 2025-11-20 16:58:22.946053+00 f t SUBTOTAL 0.00 1 12985 \N +521858 2025-11-20 16:58:22.947826+00 2025-11-20 16:58:22.947833+00 f t COSTO_SERVICIO 0.00 2 12985 \N +521859 2025-11-20 16:58:22.949027+00 2025-11-20 16:58:22.949033+00 f t DESCUENTO 0.00 3 12985 \N +521860 2025-11-20 16:58:22.950041+00 2025-11-20 16:58:22.950046+00 f t TOTAL 0.00 4 12985 \N +521861 2025-11-20 16:58:22.951237+00 2025-11-20 16:58:22.951242+00 f t ADELANTO 0.00 5 12985 \N +527402 2025-11-21 14:49:08.750796+00 2025-11-21 14:49:08.750806+00 f t SUBTOTAL 46000.00 1 13108 \N +527403 2025-11-21 14:49:08.75298+00 2025-11-21 14:49:08.752989+00 f t COSTO_SERVICIO 0.00 2 13108 \N +527404 2025-11-21 14:49:08.754409+00 2025-11-21 14:49:08.754418+00 f t DESCUENTO 0.00 3 13108 \N +527405 2025-11-21 14:49:08.755729+00 2025-11-21 14:49:08.755737+00 f t TOTAL 46000.00 4 13108 \N +527406 2025-11-21 14:49:08.757108+00 2025-11-21 14:49:08.757115+00 f t ADELANTO 11000.00 5 13108 \N +541727 2025-11-24 20:45:24.97862+00 2025-11-24 20:45:24.978627+00 f t SUBTOTAL 55000.00 1 13439 \N +541728 2025-11-24 20:45:24.981244+00 2025-11-24 20:45:24.981252+00 f t COSTO_SERVICIO 0.00 2 13439 \N +541729 2025-11-24 20:45:24.982584+00 2025-11-24 20:45:24.98259+00 f t DESCUENTO 0.00 3 13439 \N +541730 2025-11-24 20:45:24.983761+00 2025-11-24 20:45:24.983768+00 f t TOTAL 55000.00 4 13439 \N +541731 2025-11-24 20:45:24.984845+00 2025-11-24 20:45:24.98485+00 f t ADELANTO 11000.00 5 13439 \N +529062 2025-11-21 19:36:14.699631+00 2025-11-21 19:36:14.699641+00 f t SUBTOTAL 54000.00 1 13153 \N +529063 2025-11-21 19:36:14.701613+00 2025-11-21 19:36:14.701619+00 f t COSTO_SERVICIO 0.00 2 13153 \N +529064 2025-11-21 19:36:14.702794+00 2025-11-21 19:36:14.7028+00 f t DESCUENTO 0.00 3 13153 \N +529065 2025-11-21 19:36:14.703935+00 2025-11-21 19:36:14.703944+00 f t TOTAL 54000.00 4 13153 \N +529066 2025-11-21 19:36:14.704993+00 2025-11-21 19:36:14.705+00 f t ADELANTO 13500.00 5 13153 \N +543457 2025-11-25 00:53:20.089457+00 2025-11-25 00:53:20.089466+00 f t SUBTOTAL 0.00 1 13484 \N +543458 2025-11-25 00:53:20.090836+00 2025-11-25 00:53:20.090842+00 f t COSTO_SERVICIO 0.00 2 13484 \N +543459 2025-11-25 00:53:20.091829+00 2025-11-25 00:53:20.091835+00 f t DESCUENTO 0.00 3 13484 \N +543460 2025-11-25 00:53:20.092793+00 2025-11-25 00:53:20.092799+00 f t TOTAL 0.00 4 13484 \N +543461 2025-11-25 00:53:20.093887+00 2025-11-25 00:53:20.093893+00 f t ADELANTO 0.00 5 13484 \N +522017 2025-11-20 17:04:26.613573+00 2025-11-20 17:04:26.613584+00 f t SUBTOTAL 0.00 1 12987 \N +522018 2025-11-20 17:04:26.615519+00 2025-11-20 17:04:26.615528+00 f t COSTO_SERVICIO 0.00 2 12987 \N +522019 2025-11-20 17:04:26.616968+00 2025-11-20 17:04:26.616976+00 f t DESCUENTO 0.00 3 12987 \N +522020 2025-11-20 17:04:26.618115+00 2025-11-20 17:04:26.618122+00 f t TOTAL 0.00 4 12987 \N +522021 2025-11-20 17:04:26.619292+00 2025-11-20 17:04:26.619297+00 f t ADELANTO 0.00 5 12987 \N +549657 2025-11-26 01:42:03.402274+00 2025-11-26 01:42:03.402284+00 f t SUBTOTAL 0.00 1 13634 \N +549658 2025-11-26 01:42:03.403874+00 2025-11-26 01:42:03.403881+00 f t COSTO_SERVICIO 0.00 2 13634 \N +549659 2025-11-26 01:42:03.405306+00 2025-11-26 01:42:03.405312+00 f t DESCUENTO 0.00 3 13634 \N +549660 2025-11-26 01:42:03.406326+00 2025-11-26 01:42:03.406332+00 f t TOTAL 0.00 4 13634 \N +549661 2025-11-26 01:42:03.407428+00 2025-11-26 01:42:03.407435+00 f t ADELANTO 0.00 5 13634 \N +522077 2025-11-20 17:05:47.452026+00 2025-11-20 17:05:47.452034+00 f t SUBTOTAL 0.00 1 12988 \N +522078 2025-11-20 17:05:47.453444+00 2025-11-20 17:05:47.453451+00 f t COSTO_SERVICIO 0.00 2 12988 \N +522079 2025-11-20 17:05:47.454393+00 2025-11-20 17:05:47.454398+00 f t DESCUENTO 0.00 3 12988 \N +522080 2025-11-20 17:05:47.455355+00 2025-11-20 17:05:47.45536+00 f t TOTAL 0.00 4 12988 \N +522081 2025-11-20 17:05:47.4563+00 2025-11-20 17:05:47.456305+00 f t ADELANTO 0.00 5 12988 \N +525992 2025-11-21 09:32:27.844822+00 2025-11-21 09:32:27.844833+00 f t SUBTOTAL 54000.00 1 13078 \N +525993 2025-11-21 09:32:27.847328+00 2025-11-21 09:32:27.847337+00 f t COSTO_SERVICIO 0.00 2 13078 \N +525994 2025-11-21 09:32:27.848842+00 2025-11-21 09:32:27.848849+00 f t DESCUENTO 0.00 3 13078 \N +525995 2025-11-21 09:32:27.850154+00 2025-11-21 09:32:27.85016+00 f t TOTAL 54000.00 4 13078 \N +525996 2025-11-21 09:32:27.851348+00 2025-11-21 09:32:27.851354+00 f t ADELANTO 13500.00 5 13078 \N +526722 2025-11-21 12:23:57.459846+00 2025-11-21 12:23:57.459856+00 f t SUBTOTAL 54000.00 1 13093 \N +526723 2025-11-21 12:23:57.461667+00 2025-11-21 12:23:57.461676+00 f t COSTO_SERVICIO 0.00 2 13093 \N +526724 2025-11-21 12:23:57.463076+00 2025-11-21 12:23:57.463084+00 f t DESCUENTO 0.00 3 13093 \N +526725 2025-11-21 12:23:57.46436+00 2025-11-21 12:23:57.464367+00 f t TOTAL 54000.00 4 13093 \N +526726 2025-11-21 12:23:57.465532+00 2025-11-21 12:23:57.465541+00 f t ADELANTO 13500.00 5 13093 \N +522152 2025-11-20 17:08:35.675894+00 2025-11-20 17:08:35.675904+00 f t SUBTOTAL 47250.00 1 12986 \N +522153 2025-11-20 17:08:35.677654+00 2025-11-20 17:08:35.677661+00 f t COSTO_SERVICIO 0.00 2 12986 \N +522154 2025-11-20 17:08:35.679343+00 2025-11-20 17:08:35.679349+00 f t DESCUENTO 0.00 3 12986 \N +522155 2025-11-20 17:08:35.680467+00 2025-11-20 17:08:35.680472+00 f t TOTAL 47250.00 4 12986 \N +522156 2025-11-20 17:08:35.681395+00 2025-11-20 17:08:35.6814+00 f t ADELANTO 31500.00 5 12986 \N +540932 2025-11-24 17:15:04.646534+00 2025-11-24 17:15:04.646548+00 f t SUBTOTAL 0.00 1 13420 \N +540933 2025-11-24 17:15:04.650676+00 2025-11-24 17:15:04.650694+00 f t COSTO_SERVICIO 0.00 2 13420 \N +540934 2025-11-24 17:15:04.65555+00 2025-11-24 17:15:04.655565+00 f t DESCUENTO 0.00 3 13420 \N +540935 2025-11-24 17:15:04.659074+00 2025-11-24 17:15:04.659088+00 f t TOTAL 0.00 4 13420 \N +540936 2025-11-24 17:15:04.661796+00 2025-11-24 17:15:04.661808+00 f t ADELANTO 0.00 5 13420 \N +541257 2025-11-24 18:42:15.216604+00 2025-11-24 18:42:15.216614+00 f t SUBTOTAL 0.00 1 13428 \N +541258 2025-11-24 18:42:15.21862+00 2025-11-24 18:42:15.218627+00 f t COSTO_SERVICIO 0.00 2 13428 \N +541259 2025-11-24 18:42:15.219687+00 2025-11-24 18:42:15.219693+00 f t DESCUENTO 0.00 3 13428 \N +541260 2025-11-24 18:42:15.220625+00 2025-11-24 18:42:15.22063+00 f t TOTAL 0.00 4 13428 \N +541261 2025-11-24 18:42:15.221523+00 2025-11-24 18:42:15.221529+00 f t ADELANTO 0.00 5 13428 \N +541417 2025-11-24 19:53:38.401822+00 2025-11-24 19:53:38.40183+00 f t SUBTOTAL 55000.00 1 13433 \N +541418 2025-11-24 19:53:38.403396+00 2025-11-24 19:53:38.403403+00 f t COSTO_SERVICIO 0.00 2 13433 \N +541419 2025-11-24 19:53:38.404533+00 2025-11-24 19:53:38.404538+00 f t DESCUENTO 0.00 3 13433 \N +541420 2025-11-24 19:53:38.405673+00 2025-11-24 19:53:38.405678+00 f t TOTAL 55000.00 4 13433 \N +541421 2025-11-24 19:53:38.406917+00 2025-11-24 19:53:38.406924+00 f t ADELANTO 11000.00 5 13433 \N +522207 2025-11-20 17:15:21.457621+00 2025-11-20 17:15:21.457629+00 f t SUBTOTAL 46000.00 1 12982 \N +522208 2025-11-20 17:15:21.459085+00 2025-11-20 17:15:21.459091+00 f t COSTO_SERVICIO 0.00 2 12982 \N +522209 2025-11-20 17:15:21.46013+00 2025-11-20 17:15:21.460135+00 f t DESCUENTO 0.00 3 12982 \N +522210 2025-11-20 17:15:21.461067+00 2025-11-20 17:15:21.461072+00 f t TOTAL 46000.00 4 12982 \N +522211 2025-11-20 17:15:21.46197+00 2025-11-20 17:15:21.461975+00 f t ADELANTO 11000.00 5 12982 \N +528967 2025-11-21 19:29:23.117586+00 2025-11-21 19:29:23.117596+00 f t SUBTOTAL 46000.00 1 13150 \N +528968 2025-11-21 19:29:23.120107+00 2025-11-21 19:29:23.120115+00 f t COSTO_SERVICIO 0.00 2 13150 \N +528969 2025-11-21 19:29:23.121247+00 2025-11-21 19:29:23.121252+00 f t DESCUENTO 0.00 3 13150 \N +528970 2025-11-21 19:29:23.122167+00 2025-11-21 19:29:23.122172+00 f t TOTAL 46000.00 4 13150 \N +528971 2025-11-21 19:29:23.123082+00 2025-11-21 19:29:23.123087+00 f t ADELANTO 11000.00 5 13150 \N +522222 2025-11-20 17:16:04.805345+00 2025-11-20 17:16:04.805353+00 f t SUBTOTAL 0.00 1 12989 \N +522223 2025-11-20 17:16:04.807409+00 2025-11-20 17:16:04.807416+00 f t COSTO_SERVICIO 0.00 2 12989 \N +522224 2025-11-20 17:16:04.808601+00 2025-11-20 17:16:04.808607+00 f t DESCUENTO 0.00 3 12989 \N +522225 2025-11-20 17:16:04.809796+00 2025-11-20 17:16:04.809801+00 f t TOTAL 0.00 4 12989 \N +522226 2025-11-20 17:16:04.810989+00 2025-11-20 17:16:04.810994+00 f t ADELANTO 0.00 5 12989 \N +541732 2025-11-24 20:45:38.870069+00 2025-11-24 20:45:38.870076+00 f t SUBTOTAL 54000.00 1 13437 \N +541733 2025-11-24 20:45:38.871722+00 2025-11-24 20:45:38.871728+00 f t COSTO_SERVICIO 0.00 2 13437 \N +541734 2025-11-24 20:45:38.873016+00 2025-11-24 20:45:38.873022+00 f t DESCUENTO 0.00 3 13437 \N +541735 2025-11-24 20:45:38.874187+00 2025-11-24 20:45:38.874193+00 f t TOTAL 54000.00 4 13437 \N +541736 2025-11-24 20:45:38.876592+00 2025-11-24 20:45:38.876598+00 f t ADELANTO 13500.00 5 13437 \N +541887 2025-11-24 21:06:52.53973+00 2025-11-24 21:06:52.539742+00 f t SUBTOTAL 0.00 1 13444 \N +541888 2025-11-24 21:06:52.542324+00 2025-11-24 21:06:52.542336+00 f t COSTO_SERVICIO 0.00 2 13444 \N +541889 2025-11-24 21:06:52.543656+00 2025-11-24 21:06:52.543662+00 f t DESCUENTO 0.00 3 13444 \N +541890 2025-11-24 21:06:52.544768+00 2025-11-24 21:06:52.544774+00 f t TOTAL 0.00 4 13444 \N +541891 2025-11-24 21:06:52.545793+00 2025-11-24 21:06:52.545799+00 f t ADELANTO 0.00 5 13444 \N +542037 2025-11-24 22:00:53.991137+00 2025-11-24 22:00:53.991145+00 f t SUBTOTAL 0.00 1 13448 \N +542038 2025-11-24 22:00:53.992458+00 2025-11-24 22:00:53.992463+00 f t COSTO_SERVICIO 0.00 2 13448 \N +542039 2025-11-24 22:00:53.993512+00 2025-11-24 22:00:53.99352+00 f t DESCUENTO 0.00 3 13448 \N +542040 2025-11-24 22:00:53.994525+00 2025-11-24 22:00:53.99453+00 f t TOTAL 0.00 4 13448 \N +542041 2025-11-24 22:00:53.995505+00 2025-11-24 22:00:53.995515+00 f t ADELANTO 0.00 5 13448 \N +522367 2025-11-20 17:21:56.065035+00 2025-11-20 17:21:56.065041+00 f t SUBTOTAL 54000.00 1 12990 \N +522368 2025-11-20 17:21:56.066435+00 2025-11-20 17:21:56.06644+00 f t COSTO_SERVICIO 0.00 2 12990 \N +522369 2025-11-20 17:21:56.067346+00 2025-11-20 17:21:56.067351+00 f t DESCUENTO 0.00 3 12990 \N +522370 2025-11-20 17:21:56.068198+00 2025-11-20 17:21:56.068203+00 f t TOTAL 54000.00 4 12990 \N +522371 2025-11-20 17:21:56.069073+00 2025-11-20 17:21:56.069078+00 f t ADELANTO 13500.00 5 12990 \N +526172 2025-11-21 11:10:09.57283+00 2025-11-21 11:10:09.57284+00 f t SUBTOTAL 0.00 1 13085 \N +526173 2025-11-21 11:10:09.575075+00 2025-11-21 11:10:09.575086+00 f t COSTO_SERVICIO 0.00 2 13085 \N +526174 2025-11-21 11:10:09.576726+00 2025-11-21 11:10:09.576734+00 f t DESCUENTO 0.00 3 13085 \N +526175 2025-11-21 11:10:09.578184+00 2025-11-21 11:10:09.578193+00 f t TOTAL 0.00 4 13085 \N +526176 2025-11-21 11:10:09.579517+00 2025-11-21 11:10:09.579523+00 f t ADELANTO 0.00 5 13085 \N +538952 2025-11-24 12:08:13.052873+00 2025-11-24 12:08:13.052883+00 f t SUBTOTAL 0.00 1 13379 \N +538953 2025-11-24 12:08:13.055325+00 2025-11-24 12:08:13.055332+00 f t COSTO_SERVICIO 0.00 2 13379 \N +538954 2025-11-24 12:08:13.056719+00 2025-11-24 12:08:13.056725+00 f t DESCUENTO 0.00 3 13379 \N +538955 2025-11-24 12:08:13.058183+00 2025-11-24 12:08:13.058194+00 f t TOTAL 0.00 4 13379 \N +538956 2025-11-24 12:08:13.05945+00 2025-11-24 12:08:13.059455+00 f t ADELANTO 0.00 5 13379 \N +539297 2025-11-24 12:39:12.884812+00 2025-11-24 12:39:12.884819+00 f t SUBTOTAL 0.00 1 13361 \N +539298 2025-11-24 12:39:12.886942+00 2025-11-24 12:39:12.886949+00 f t COSTO_SERVICIO 0.00 2 13361 \N +539299 2025-11-24 12:39:12.88795+00 2025-11-24 12:39:12.887955+00 f t DESCUENTO 0.00 3 13361 \N +522402 2025-11-20 17:37:44.244621+00 2025-11-20 17:37:44.244629+00 f t SUBTOTAL 0.00 1 12991 \N +522403 2025-11-20 17:37:44.246151+00 2025-11-20 17:37:44.246157+00 f t COSTO_SERVICIO 0.00 2 12991 \N +522404 2025-11-20 17:37:44.247074+00 2025-11-20 17:37:44.247079+00 f t DESCUENTO 0.00 3 12991 \N +522405 2025-11-20 17:37:44.247996+00 2025-11-20 17:37:44.248+00 f t TOTAL 0.00 4 12991 \N +522406 2025-11-20 17:37:44.248881+00 2025-11-20 17:37:44.248888+00 f t ADELANTO 0.00 5 12991 \N +539300 2025-11-24 12:39:12.888824+00 2025-11-24 12:39:12.888829+00 f t TOTAL 0.00 4 13361 \N +539301 2025-11-24 12:39:12.88976+00 2025-11-24 12:39:12.889765+00 f t ADELANTO 0.00 5 13361 \N +527147 2025-11-21 14:10:02.733189+00 2025-11-21 14:10:02.733201+00 f t SUBTOTAL 134000.00 1 13104 \N +527148 2025-11-21 14:10:02.7444+00 2025-11-21 14:10:02.744414+00 f t COSTO_SERVICIO 0.00 2 13104 \N +527149 2025-11-21 14:10:02.752352+00 2025-11-21 14:10:02.752366+00 f t DESCUENTO 0.00 3 13104 \N +527150 2025-11-21 14:10:02.759601+00 2025-11-21 14:10:02.759614+00 f t TOTAL 134000.00 4 13104 \N +527151 2025-11-21 14:10:02.769363+00 2025-11-21 14:10:02.769377+00 f t ADELANTO 24000.00 5 13104 \N +522437 2025-11-20 17:40:38.153432+00 2025-11-20 17:40:38.153439+00 f t SUBTOTAL 30000.00 1 12992 \N +522438 2025-11-20 17:40:38.154856+00 2025-11-20 17:40:38.154861+00 f t COSTO_SERVICIO 0.00 2 12992 \N +522439 2025-11-20 17:40:38.1559+00 2025-11-20 17:40:38.155905+00 f t DESCUENTO 0.00 3 12992 \N +522440 2025-11-20 17:40:38.156776+00 2025-11-20 17:40:38.156781+00 f t TOTAL 30000.00 4 12992 \N +522441 2025-11-20 17:40:38.157719+00 2025-11-20 17:40:38.157723+00 f t ADELANTO 30000.00 5 12992 \N +540782 2025-11-24 16:09:38.124809+00 2025-11-24 16:09:38.124818+00 f t SUBTOTAL 78000.00 1 13417 \N +540783 2025-11-24 16:09:38.126398+00 2025-11-24 16:09:38.126404+00 f t COSTO_SERVICIO 0.00 2 13417 \N +540784 2025-11-24 16:09:38.127532+00 2025-11-24 16:09:38.127537+00 f t DESCUENTO 0.00 3 13417 \N +540785 2025-11-24 16:09:38.128441+00 2025-11-24 16:09:38.128447+00 f t TOTAL 78000.00 4 13417 \N +540786 2025-11-24 16:09:38.129333+00 2025-11-24 16:09:38.129338+00 f t ADELANTO 21500.00 5 13417 \N +541097 2025-11-24 17:55:32.495521+00 2025-11-24 17:55:32.495531+00 f t SUBTOTAL 0.00 1 13423 \N +541098 2025-11-24 17:55:32.497793+00 2025-11-24 17:55:32.4978+00 f t COSTO_SERVICIO 0.00 2 13423 \N +541099 2025-11-24 17:55:32.499245+00 2025-11-24 17:55:32.499252+00 f t DESCUENTO 0.00 3 13423 \N +522477 2025-11-20 17:48:20.403904+00 2025-11-20 17:48:20.40391+00 f t SUBTOTAL 30000.00 1 12995 \N +522478 2025-11-20 17:48:20.405262+00 2025-11-20 17:48:20.405268+00 f t COSTO_SERVICIO 0.00 2 12995 \N +522479 2025-11-20 17:48:20.406304+00 2025-11-20 17:48:20.406309+00 f t DESCUENTO 0.00 3 12995 \N +522480 2025-11-20 17:48:20.407393+00 2025-11-20 17:48:20.407398+00 f t TOTAL 30000.00 4 12995 \N +522481 2025-11-20 17:48:20.408295+00 2025-11-20 17:48:20.408301+00 f t ADELANTO 30000.00 5 12995 \N +541100 2025-11-24 17:55:32.500365+00 2025-11-24 17:55:32.500373+00 f t TOTAL 0.00 4 13423 \N +541101 2025-11-24 17:55:32.501504+00 2025-11-24 17:55:32.501509+00 f t ADELANTO 0.00 5 13423 \N +528302 2025-11-21 17:44:00.328369+00 2025-11-21 17:44:00.328377+00 f t SUBTOTAL 78000.00 1 13134 \N +528303 2025-11-21 17:44:00.330147+00 2025-11-21 17:44:00.330153+00 f t COSTO_SERVICIO 0.00 2 13134 \N +528304 2025-11-21 17:44:00.331576+00 2025-11-21 17:44:00.331581+00 f t DESCUENTO 0.00 3 13134 \N +528305 2025-11-21 17:44:00.332818+00 2025-11-21 17:44:00.332825+00 f t TOTAL 78000.00 4 13134 \N +528306 2025-11-21 17:44:00.333972+00 2025-11-21 17:44:00.333978+00 f t ADELANTO 21500.00 5 13134 \N +529477 2025-11-21 21:06:13.910351+00 2025-11-21 21:06:13.910361+00 f t SUBTOTAL 102000.00 1 13163 \N +529478 2025-11-21 21:06:13.912258+00 2025-11-21 21:06:13.912264+00 f t COSTO_SERVICIO 0.00 2 13163 \N +529479 2025-11-21 21:06:13.913456+00 2025-11-21 21:06:13.913461+00 f t DESCUENTO 0.00 3 13163 \N +529480 2025-11-21 21:06:13.914503+00 2025-11-21 21:06:13.914508+00 f t TOTAL 102000.00 4 13163 \N +529481 2025-11-21 21:06:13.915489+00 2025-11-21 21:06:13.915495+00 f t ADELANTO 29500.00 5 13163 \N +529652 2025-11-21 21:36:23.702755+00 2025-11-21 21:36:23.702763+00 f t SUBTOTAL 121000.00 1 13166 \N +529653 2025-11-21 21:36:23.704638+00 2025-11-21 21:36:23.704646+00 f t COSTO_SERVICIO 0.00 2 13166 \N +529654 2025-11-21 21:36:23.706053+00 2025-11-21 21:36:23.706059+00 f t DESCUENTO 0.00 3 13166 \N +529655 2025-11-21 21:36:23.707208+00 2025-11-21 21:36:23.707221+00 f t TOTAL 121000.00 4 13166 \N +529656 2025-11-21 21:36:23.708561+00 2025-11-21 21:36:23.708566+00 f t ADELANTO 26000.00 5 13166 \N +542347 2025-11-24 22:39:59.227917+00 2025-11-24 22:39:59.227927+00 f t SUBTOTAL 78000.00 1 13400 \N +542348 2025-11-24 22:39:59.230206+00 2025-11-24 22:39:59.230216+00 f t COSTO_SERVICIO 0.00 2 13400 \N +542349 2025-11-24 22:39:59.231609+00 2025-11-24 22:39:59.231616+00 f t DESCUENTO 0.00 3 13400 \N +542350 2025-11-24 22:39:59.232863+00 2025-11-24 22:39:59.232872+00 f t TOTAL 78000.00 4 13400 \N +542351 2025-11-24 22:39:59.234241+00 2025-11-24 22:39:59.234248+00 f t ADELANTO 21500.00 5 13400 \N +542742 2025-11-24 23:31:06.853516+00 2025-11-24 23:31:06.853528+00 f t SUBTOTAL 80000.00 1 13467 \N +542743 2025-11-24 23:31:06.856215+00 2025-11-24 23:31:06.856227+00 f t COSTO_SERVICIO 0.00 2 13467 \N +542744 2025-11-24 23:31:06.858389+00 2025-11-24 23:31:06.858401+00 f t DESCUENTO 0.00 3 13467 \N +542745 2025-11-24 23:31:06.860253+00 2025-11-24 23:31:06.860264+00 f t TOTAL 80000.00 4 13467 \N +542746 2025-11-24 23:31:06.861986+00 2025-11-24 23:31:06.861996+00 f t ADELANTO 12000.00 5 13467 \N +529917 2025-11-21 22:38:36.503169+00 2025-11-21 22:38:36.503178+00 f t SUBTOTAL 0.00 1 13171 \N +529918 2025-11-21 22:38:36.50458+00 2025-11-21 22:38:36.504589+00 f t COSTO_SERVICIO 0.00 2 13171 \N +529919 2025-11-21 22:38:36.505986+00 2025-11-21 22:38:36.505992+00 f t DESCUENTO 0.00 3 13171 \N +529920 2025-11-21 22:38:36.507104+00 2025-11-21 22:38:36.507112+00 f t TOTAL 0.00 4 13171 \N +529921 2025-11-21 22:38:36.509409+00 2025-11-21 22:38:36.509416+00 f t ADELANTO 0.00 5 13171 \N +537527 2025-11-24 02:57:31.282759+00 2025-11-24 02:57:31.282766+00 f t SUBTOTAL 82500.00 1 13347 \N +537528 2025-11-24 02:57:31.284349+00 2025-11-24 02:57:31.284355+00 f t COSTO_SERVICIO 0.00 2 13347 \N +537529 2025-11-24 02:57:31.28562+00 2025-11-24 02:57:31.285626+00 f t DESCUENTO 0.00 3 13347 \N +537530 2025-11-24 02:57:31.286772+00 2025-11-24 02:57:31.286778+00 f t TOTAL 82500.00 4 13347 \N +537531 2025-11-24 02:57:31.287763+00 2025-11-24 02:57:31.287769+00 f t ADELANTO 11000.00 5 13347 \N +522662 2025-11-20 17:56:57.937646+00 2025-11-20 17:56:57.937653+00 f t SUBTOTAL 125000.00 1 12997 \N +522663 2025-11-20 17:56:57.942009+00 2025-11-20 17:56:57.942015+00 f t COSTO_SERVICIO 0.00 2 12997 \N +522664 2025-11-20 17:56:57.943239+00 2025-11-20 17:56:57.943245+00 f t DESCUENTO 10100.00 3 12997 \N +522665 2025-11-20 17:56:57.944327+00 2025-11-20 17:56:57.944334+00 f t TOTAL 114900.00 4 12997 \N +522666 2025-11-20 17:56:57.945336+00 2025-11-20 17:56:57.945342+00 f t ADELANTO 30000.00 5 12997 \N +538957 2025-11-24 12:08:21.451766+00 2025-11-24 12:08:21.451773+00 f t SUBTOTAL 54000.00 1 13380 \N +538958 2025-11-24 12:08:21.45369+00 2025-11-24 12:08:21.453696+00 f t COSTO_SERVICIO 0.00 2 13380 \N +538959 2025-11-24 12:08:21.454882+00 2025-11-24 12:08:21.454886+00 f t DESCUENTO 0.00 3 13380 \N +538960 2025-11-24 12:08:21.455829+00 2025-11-24 12:08:21.455836+00 f t TOTAL 54000.00 4 13380 \N +538961 2025-11-24 12:08:21.456828+00 2025-11-24 12:08:21.456835+00 f t ADELANTO 13500.00 5 13380 \N +539137 2025-11-24 12:24:10.047562+00 2025-11-24 12:24:10.04757+00 f t SUBTOTAL 54000.00 1 13384 \N +539138 2025-11-24 12:24:10.049527+00 2025-11-24 12:24:10.049534+00 f t COSTO_SERVICIO 0.00 2 13384 \N +539139 2025-11-24 12:24:10.050778+00 2025-11-24 12:24:10.050784+00 f t DESCUENTO 0.00 3 13384 \N +539140 2025-11-24 12:24:10.051829+00 2025-11-24 12:24:10.051836+00 f t TOTAL 54000.00 4 13384 \N +539141 2025-11-24 12:24:10.052798+00 2025-11-24 12:24:10.052803+00 f t ADELANTO 13500.00 5 13384 \N +526452 2025-11-21 11:37:51.187898+00 2025-11-21 11:37:51.187909+00 f t SUBTOTAL 45000.00 1 13088 \N +526453 2025-11-21 11:37:51.189778+00 2025-11-21 11:37:51.189787+00 f t COSTO_SERVICIO 0.00 2 13088 \N +522682 2025-11-20 18:04:06.20292+00 2025-11-20 18:04:06.202932+00 f t SUBTOTAL 102400.00 1 12996 \N +522683 2025-11-20 18:04:06.205107+00 2025-11-20 18:04:06.205117+00 f t COSTO_SERVICIO 0.00 2 12996 \N +522684 2025-11-20 18:04:06.206926+00 2025-11-20 18:04:06.206936+00 f t DESCUENTO 0.00 3 12996 \N +522685 2025-11-20 18:04:06.20867+00 2025-11-20 18:04:06.208679+00 f t TOTAL 102400.00 4 12996 \N +522686 2025-11-20 18:04:06.210262+00 2025-11-20 18:04:06.210268+00 f t ADELANTO 23400.00 5 12996 \N +526454 2025-11-21 11:37:51.191263+00 2025-11-21 11:37:51.191271+00 f t DESCUENTO 0.00 3 13088 \N +526455 2025-11-21 11:37:51.192519+00 2025-11-21 11:37:51.192524+00 f t TOTAL 45000.00 4 13088 \N +526456 2025-11-21 11:37:51.193547+00 2025-11-21 11:37:51.193552+00 f t ADELANTO 45000.00 5 13088 \N +522692 2025-11-20 18:04:58.61184+00 2025-11-20 18:04:58.61185+00 f t SUBTOTAL 0.00 1 12998 \N +522693 2025-11-20 18:04:58.613195+00 2025-11-20 18:04:58.613201+00 f t COSTO_SERVICIO 0.00 2 12998 \N +522694 2025-11-20 18:04:58.614273+00 2025-11-20 18:04:58.614279+00 f t DESCUENTO 0.00 3 12998 \N +522695 2025-11-20 18:04:58.615313+00 2025-11-20 18:04:58.615319+00 f t TOTAL 0.00 4 12998 \N +522696 2025-11-20 18:04:58.616448+00 2025-11-20 18:04:58.616454+00 f t ADELANTO 0.00 5 12998 \N +526737 2025-11-21 12:31:07.098582+00 2025-11-21 12:31:07.098594+00 f t SUBTOTAL 88000.00 1 13094 \N +526738 2025-11-21 12:31:07.100889+00 2025-11-21 12:31:07.100899+00 f t COSTO_SERVICIO 0.00 2 13094 \N +526739 2025-11-21 12:31:07.102169+00 2025-11-21 12:31:07.102176+00 f t DESCUENTO 0.00 3 13094 \N +526740 2025-11-21 12:31:07.103272+00 2025-11-21 12:31:07.103278+00 f t TOTAL 88000.00 4 13094 \N +526741 2025-11-21 12:31:07.104422+00 2025-11-21 12:31:07.104427+00 f t ADELANTO 13000.00 5 13094 \N +522712 2025-11-20 18:09:52.045705+00 2025-11-20 18:09:52.045714+00 f t SUBTOTAL 0.00 1 12999 \N +522713 2025-11-20 18:09:52.047179+00 2025-11-20 18:09:52.047185+00 f t COSTO_SERVICIO 0.00 2 12999 \N +522714 2025-11-20 18:09:52.048321+00 2025-11-20 18:09:52.048327+00 f t DESCUENTO 0.00 3 12999 \N +522715 2025-11-20 18:09:52.049264+00 2025-11-20 18:09:52.04927+00 f t TOTAL 0.00 4 12999 \N +522716 2025-11-20 18:09:52.050234+00 2025-11-20 18:09:52.050239+00 f t ADELANTO 0.00 5 12999 \N +522717 2025-11-20 18:15:33.465487+00 2025-11-20 18:15:33.465498+00 f t SUBTOTAL 121000.00 1 12994 \N +522718 2025-11-20 18:15:33.467537+00 2025-11-20 18:15:33.467544+00 f t COSTO_SERVICIO 0.00 2 12994 \N +522719 2025-11-20 18:15:33.468816+00 2025-11-20 18:15:33.468822+00 f t DESCUENTO 0.00 3 12994 \N +522720 2025-11-20 18:15:33.469907+00 2025-11-20 18:15:33.469912+00 f t TOTAL 121000.00 4 12994 \N +522721 2025-11-20 18:15:33.470977+00 2025-11-20 18:15:33.470983+00 f t ADELANTO 26000.00 5 12994 \N +527557 2025-11-21 15:30:09.884444+00 2025-11-21 15:30:09.884453+00 f t SUBTOTAL 55000.00 1 13115 \N +527558 2025-11-21 15:30:09.88654+00 2025-11-21 15:30:09.886548+00 f t COSTO_SERVICIO 0.00 2 13115 \N +527559 2025-11-21 15:30:09.888261+00 2025-11-21 15:30:09.888269+00 f t DESCUENTO 0.00 3 13115 \N +527560 2025-11-21 15:30:09.889919+00 2025-11-21 15:30:09.889929+00 f t TOTAL 55000.00 4 13115 \N +527561 2025-11-21 15:30:09.891523+00 2025-11-21 15:30:09.891532+00 f t ADELANTO 11000.00 5 13115 \N +528312 2025-11-21 17:48:18.448398+00 2025-11-21 17:48:18.448407+00 f t SUBTOTAL 0.00 1 13135 \N +528313 2025-11-21 17:48:18.449933+00 2025-11-21 17:48:18.449943+00 f t COSTO_SERVICIO 0.00 2 13135 \N +528314 2025-11-21 17:48:18.451216+00 2025-11-21 17:48:18.451223+00 f t DESCUENTO 0.00 3 13135 \N +528315 2025-11-21 17:48:18.452147+00 2025-11-21 17:48:18.452153+00 f t TOTAL 0.00 4 13135 \N +528316 2025-11-21 17:48:18.453218+00 2025-11-21 17:48:18.453223+00 f t ADELANTO 0.00 5 13135 \N +528642 2025-11-21 18:33:20.056413+00 2025-11-21 18:33:20.056425+00 f t SUBTOTAL 0.00 1 13142 \N +528643 2025-11-21 18:33:20.058034+00 2025-11-21 18:33:20.058044+00 f t COSTO_SERVICIO 0.00 2 13142 \N +528644 2025-11-21 18:33:20.059315+00 2025-11-21 18:33:20.059323+00 f t DESCUENTO 0.00 3 13142 \N +528645 2025-11-21 18:33:20.060529+00 2025-11-21 18:33:20.060534+00 f t TOTAL 0.00 4 13142 \N +528646 2025-11-21 18:33:20.061587+00 2025-11-21 18:33:20.061596+00 f t ADELANTO 0.00 5 13142 \N +522837 2025-11-20 18:29:42.167122+00 2025-11-20 18:29:42.167174+00 f t SUBTOTAL 55000.00 1 13000 \N +522838 2025-11-20 18:29:42.168881+00 2025-11-20 18:29:42.16889+00 f t COSTO_SERVICIO 0.00 2 13000 \N +522839 2025-11-20 18:29:42.170313+00 2025-11-20 18:29:42.170322+00 f t DESCUENTO 0.00 3 13000 \N +522840 2025-11-20 18:29:42.171648+00 2025-11-20 18:29:42.171656+00 f t TOTAL 55000.00 4 13000 \N +522841 2025-11-20 18:29:42.172884+00 2025-11-20 18:29:42.172891+00 f t ADELANTO 11000.00 5 13000 \N +522852 2025-11-20 18:30:33.859016+00 2025-11-20 18:30:33.85903+00 f t SUBTOTAL 0.00 1 13001 \N +522853 2025-11-20 18:30:33.861491+00 2025-11-20 18:30:33.861498+00 f t COSTO_SERVICIO 0.00 2 13001 \N +522854 2025-11-20 18:30:33.862714+00 2025-11-20 18:30:33.862721+00 f t DESCUENTO 0.00 3 13001 \N +522855 2025-11-20 18:30:33.863762+00 2025-11-20 18:30:33.863768+00 f t TOTAL 0.00 4 13001 \N +522856 2025-11-20 18:30:33.864851+00 2025-11-20 18:30:33.864858+00 f t ADELANTO 0.00 5 13001 \N +522882 2025-11-20 18:36:56.319373+00 2025-11-20 18:36:56.319379+00 f t SUBTOTAL 54000.00 1 13002 \N +522883 2025-11-20 18:36:56.32083+00 2025-11-20 18:36:56.320836+00 f t COSTO_SERVICIO 0.00 2 13002 \N +522884 2025-11-20 18:36:56.321937+00 2025-11-20 18:36:56.321943+00 f t DESCUENTO 0.00 3 13002 \N +522885 2025-11-20 18:36:56.32303+00 2025-11-20 18:36:56.323035+00 f t TOTAL 54000.00 4 13002 \N +522886 2025-11-20 18:36:56.324073+00 2025-11-20 18:36:56.324079+00 f t ADELANTO 13500.00 5 13002 \N +536817 2025-11-23 22:38:55.106981+00 2025-11-23 22:38:55.106987+00 f t SUBTOTAL 70000.00 1 13332 \N +536818 2025-11-23 22:38:55.108689+00 2025-11-23 22:38:55.108695+00 f t COSTO_SERVICIO 0.00 2 13332 \N +536819 2025-11-23 22:38:55.110046+00 2025-11-23 22:38:55.110054+00 f t DESCUENTO 0.00 3 13332 \N +536820 2025-11-23 22:38:55.111209+00 2025-11-23 22:38:55.111214+00 f t TOTAL 70000.00 4 13332 \N +536821 2025-11-23 22:38:55.112414+00 2025-11-23 22:38:55.112419+00 f t ADELANTO 19000.00 5 13332 \N +522912 2025-11-20 18:41:53.307177+00 2025-11-20 18:41:53.307189+00 f t SUBTOTAL 46000.00 1 13003 \N +522913 2025-11-20 18:41:53.308843+00 2025-11-20 18:41:53.308855+00 f t COSTO_SERVICIO 0.00 2 13003 \N +522914 2025-11-20 18:41:53.31028+00 2025-11-20 18:41:53.310288+00 f t DESCUENTO 0.00 3 13003 \N +522915 2025-11-20 18:41:53.311604+00 2025-11-20 18:41:53.31161+00 f t TOTAL 46000.00 4 13003 \N +522916 2025-11-20 18:41:53.312785+00 2025-11-20 18:41:53.312791+00 f t ADELANTO 11000.00 5 13003 \N +522927 2025-11-20 18:55:23.841173+00 2025-11-20 18:55:23.841181+00 f t SUBTOTAL 61000.00 1 13004 \N +522928 2025-11-20 18:55:23.843222+00 2025-11-20 18:55:23.843231+00 f t COSTO_SERVICIO 0.00 2 13004 \N +522929 2025-11-20 18:55:23.844822+00 2025-11-20 18:55:23.844831+00 f t DESCUENTO 0.00 3 13004 \N +522930 2025-11-20 18:55:23.846506+00 2025-11-20 18:55:23.846514+00 f t TOTAL 61000.00 4 13004 \N +522931 2025-11-20 18:55:23.847947+00 2025-11-20 18:55:23.847954+00 f t ADELANTO 11000.00 5 13004 \N +522937 2025-11-20 19:05:03.854108+00 2025-11-20 19:05:03.854121+00 f t SUBTOTAL 0.00 1 13005 \N +522938 2025-11-20 19:05:03.857641+00 2025-11-20 19:05:03.857655+00 f t COSTO_SERVICIO 0.00 2 13005 \N +522939 2025-11-20 19:05:03.861155+00 2025-11-20 19:05:03.86117+00 f t DESCUENTO 0.00 3 13005 \N +522940 2025-11-20 19:05:03.863876+00 2025-11-20 19:05:03.863889+00 f t TOTAL 0.00 4 13005 \N +522941 2025-11-20 19:05:03.866161+00 2025-11-20 19:05:03.866174+00 f t ADELANTO 0.00 5 13005 \N +537767 2025-11-24 05:17:25.502202+00 2025-11-24 05:17:25.502212+00 f t SUBTOTAL 46000.00 1 13355 \N +537768 2025-11-24 05:17:25.504034+00 2025-11-24 05:17:25.504044+00 f t COSTO_SERVICIO 0.00 2 13355 \N +537769 2025-11-24 05:17:25.505489+00 2025-11-24 05:17:25.505497+00 f t DESCUENTO 0.00 3 13355 \N +537770 2025-11-24 05:17:25.506753+00 2025-11-24 05:17:25.506762+00 f t TOTAL 46000.00 4 13355 \N +537771 2025-11-24 05:17:25.508087+00 2025-11-24 05:17:25.508093+00 f t ADELANTO 11000.00 5 13355 \N +525297 2025-11-21 01:28:18.408141+00 2025-11-21 01:28:18.40815+00 f t SUBTOTAL 0.00 1 13062 \N +522952 2025-11-20 19:05:42.259498+00 2025-11-20 19:05:42.25951+00 f t SUBTOTAL 121000.00 1 13006 \N +522953 2025-11-20 19:05:42.261259+00 2025-11-20 19:05:42.261269+00 f t COSTO_SERVICIO 0.00 2 13006 \N +522954 2025-11-20 19:05:42.262328+00 2025-11-20 19:05:42.262333+00 f t DESCUENTO 0.00 3 13006 \N +522955 2025-11-20 19:05:42.263336+00 2025-11-20 19:05:42.263342+00 f t TOTAL 121000.00 4 13006 \N +522956 2025-11-20 19:05:42.264505+00 2025-11-20 19:05:42.264513+00 f t ADELANTO 26000.00 5 13006 \N +525298 2025-11-21 01:28:18.409633+00 2025-11-21 01:28:18.409639+00 f t COSTO_SERVICIO 0.00 2 13062 \N +525299 2025-11-21 01:28:18.410671+00 2025-11-21 01:28:18.410676+00 f t DESCUENTO 0.00 3 13062 \N +525300 2025-11-21 01:28:18.411925+00 2025-11-21 01:28:18.411935+00 f t TOTAL 0.00 4 13062 \N +525301 2025-11-21 01:28:18.413232+00 2025-11-21 01:28:18.41324+00 f t ADELANTO 0.00 5 13062 \N +538182 2025-11-24 09:00:32.7969+00 2025-11-24 09:00:32.796912+00 f t SUBTOTAL 0.00 1 13362 \N +538183 2025-11-24 09:00:32.798928+00 2025-11-24 09:00:32.798937+00 f t COSTO_SERVICIO 0.00 2 13362 \N +538184 2025-11-24 09:00:32.800078+00 2025-11-24 09:00:32.800084+00 f t DESCUENTO 0.00 3 13362 \N +538185 2025-11-24 09:00:32.801271+00 2025-11-24 09:00:32.801276+00 f t TOTAL 0.00 4 13362 \N +538186 2025-11-24 09:00:32.802197+00 2025-11-24 09:00:32.802202+00 f t ADELANTO 0.00 5 13362 \N +538582 2025-11-24 10:48:45.850416+00 2025-11-24 10:48:45.850423+00 f t SUBTOTAL 82500.00 1 13371 \N +538583 2025-11-24 10:48:45.852305+00 2025-11-24 10:48:45.852311+00 f t COSTO_SERVICIO 0.00 2 13371 \N +538584 2025-11-24 10:48:45.853626+00 2025-11-24 10:48:45.853632+00 f t DESCUENTO 0.00 3 13371 \N +538585 2025-11-24 10:48:45.854805+00 2025-11-24 10:48:45.85481+00 f t TOTAL 82500.00 4 13371 \N +538586 2025-11-24 10:48:45.855926+00 2025-11-24 10:48:45.855932+00 f t ADELANTO 11000.00 5 13371 \N +522987 2025-11-20 19:09:18.246025+00 2025-11-20 19:09:18.246032+00 f t SUBTOTAL 70000.00 1 13007 \N +522988 2025-11-20 19:09:18.247644+00 2025-11-20 19:09:18.24765+00 f t COSTO_SERVICIO 0.00 2 13007 \N +522989 2025-11-20 19:09:18.248908+00 2025-11-20 19:09:18.248916+00 f t DESCUENTO 0.00 3 13007 \N +522990 2025-11-20 19:09:18.250152+00 2025-11-20 19:09:18.250158+00 f t TOTAL 70000.00 4 13007 \N +522991 2025-11-20 19:09:18.251214+00 2025-11-20 19:09:18.25122+00 f t ADELANTO 19000.00 5 13007 \N +522997 2025-11-20 19:11:24.885252+00 2025-11-20 19:11:24.885261+00 f t SUBTOTAL 0.00 1 13008 \N +522998 2025-11-20 19:11:24.886777+00 2025-11-20 19:11:24.886784+00 f t COSTO_SERVICIO 0.00 2 13008 \N +522999 2025-11-20 19:11:24.887921+00 2025-11-20 19:11:24.887927+00 f t DESCUENTO 0.00 3 13008 \N +523000 2025-11-20 19:11:24.888933+00 2025-11-20 19:11:24.888937+00 f t TOTAL 0.00 4 13008 \N +523001 2025-11-20 19:11:24.889727+00 2025-11-20 19:11:24.889731+00 f t ADELANTO 0.00 5 13008 \N +526747 2025-11-21 12:38:06.658915+00 2025-11-21 12:38:06.658925+00 f t SUBTOTAL 0.00 1 13095 \N +526748 2025-11-21 12:38:06.660407+00 2025-11-21 12:38:06.660415+00 f t COSTO_SERVICIO 0.00 2 13095 \N +526749 2025-11-21 12:38:06.661589+00 2025-11-21 12:38:06.661594+00 f t DESCUENTO 0.00 3 13095 \N +526750 2025-11-21 12:38:06.662591+00 2025-11-21 12:38:06.662597+00 f t TOTAL 0.00 4 13095 \N +526751 2025-11-21 12:38:06.66351+00 2025-11-21 12:38:06.663515+00 f t ADELANTO 0.00 5 13095 \N +523062 2025-11-20 19:14:20.756321+00 2025-11-20 19:14:20.756328+00 f t SUBTOTAL 102000.00 1 13009 \N +523063 2025-11-20 19:14:20.757781+00 2025-11-20 19:14:20.757787+00 f t COSTO_SERVICIO 0.00 2 13009 \N +523064 2025-11-20 19:14:20.75882+00 2025-11-20 19:14:20.758825+00 f t DESCUENTO 0.00 3 13009 \N +523065 2025-11-20 19:14:20.759794+00 2025-11-20 19:14:20.7598+00 f t TOTAL 102000.00 4 13009 \N +523066 2025-11-20 19:14:20.760732+00 2025-11-20 19:14:20.760737+00 f t ADELANTO 26500.00 5 13009 \N +529292 2025-11-21 20:20:04.218967+00 2025-11-21 20:20:04.218979+00 f t SUBTOTAL 54000.00 1 13159 \N +529293 2025-11-21 20:20:04.223513+00 2025-11-21 20:20:04.223528+00 f t COSTO_SERVICIO 0.00 2 13159 \N +529294 2025-11-21 20:20:04.226565+00 2025-11-21 20:20:04.226579+00 f t DESCUENTO 0.00 3 13159 \N +529295 2025-11-21 20:20:04.229022+00 2025-11-21 20:20:04.229035+00 f t TOTAL 54000.00 4 13159 \N +529296 2025-11-21 20:20:04.233756+00 2025-11-21 20:20:04.233771+00 f t ADELANTO 13500.00 5 13159 \N +523157 2025-11-20 19:22:49.490712+00 2025-11-20 19:22:49.490722+00 f t SUBTOTAL 0.00 1 13010 \N +523158 2025-11-20 19:22:49.492428+00 2025-11-20 19:22:49.492436+00 f t COSTO_SERVICIO 0.00 2 13010 \N +523159 2025-11-20 19:22:49.493694+00 2025-11-20 19:22:49.4937+00 f t DESCUENTO 0.00 3 13010 \N +523160 2025-11-20 19:22:49.494572+00 2025-11-20 19:22:49.494577+00 f t TOTAL 0.00 4 13010 \N +523161 2025-11-20 19:22:49.495398+00 2025-11-20 19:22:49.495403+00 f t ADELANTO 0.00 5 13010 \N +529817 2025-11-21 21:52:53.52294+00 2025-11-21 21:52:53.52295+00 f t SUBTOTAL 0.00 1 13168 \N +529818 2025-11-21 21:52:53.524634+00 2025-11-21 21:52:53.524643+00 f t COSTO_SERVICIO 0.00 2 13168 \N +529819 2025-11-21 21:52:53.525832+00 2025-11-21 21:52:53.525838+00 f t DESCUENTO 0.00 3 13168 \N +529820 2025-11-21 21:52:53.526712+00 2025-11-21 21:52:53.526717+00 f t TOTAL 0.00 4 13168 \N +529821 2025-11-21 21:52:53.527643+00 2025-11-21 21:52:53.527648+00 f t ADELANTO 0.00 5 13168 \N +537977 2025-11-24 05:48:38.413163+00 2025-11-24 05:48:38.413174+00 f t SUBTOTAL 20500.00 1 13359 \N +537978 2025-11-24 05:48:38.415187+00 2025-11-24 05:48:38.415194+00 f t COSTO_SERVICIO 0.00 2 13359 \N +537979 2025-11-24 05:48:38.416439+00 2025-11-24 05:48:38.416445+00 f t DESCUENTO 0.00 3 13359 \N +537980 2025-11-24 05:48:38.41774+00 2025-11-24 05:48:38.417745+00 f t TOTAL 20500.00 4 13359 \N +537981 2025-11-24 05:48:38.418863+00 2025-11-24 05:48:38.418868+00 f t ADELANTO 20500.00 5 13359 \N +523262 2025-11-20 19:30:13.640753+00 2025-11-20 19:30:13.640762+00 f t SUBTOTAL 156000.00 1 13011 \N +523263 2025-11-20 19:30:13.642387+00 2025-11-20 19:30:13.642394+00 f t COSTO_SERVICIO 0.00 2 13011 \N +523264 2025-11-20 19:30:13.643642+00 2025-11-20 19:30:13.643649+00 f t DESCUENTO 9200.00 3 13011 \N +523265 2025-11-20 19:30:13.644698+00 2025-11-20 19:30:13.644702+00 f t TOTAL 146800.00 4 13011 \N +523266 2025-11-20 19:30:13.64563+00 2025-11-20 19:30:13.645634+00 f t ADELANTO 43000.00 5 13011 \N +523272 2025-11-20 19:47:05.280512+00 2025-11-20 19:47:05.280521+00 f t SUBTOTAL 0.00 1 13012 \N +523273 2025-11-20 19:47:05.281738+00 2025-11-20 19:47:05.281744+00 f t COSTO_SERVICIO 0.00 2 13012 \N +523274 2025-11-20 19:47:05.282669+00 2025-11-20 19:47:05.282675+00 f t DESCUENTO 0.00 3 13012 \N +523275 2025-11-20 19:47:05.283611+00 2025-11-20 19:47:05.283617+00 f t TOTAL 0.00 4 13012 \N +523276 2025-11-20 19:47:05.284662+00 2025-11-20 19:47:05.284668+00 f t ADELANTO 0.00 5 13012 \N +523282 2025-11-20 19:48:23.785515+00 2025-11-20 19:48:23.785524+00 f t SUBTOTAL 0.00 1 13013 \N +523283 2025-11-20 19:48:23.786944+00 2025-11-20 19:48:23.786951+00 f t COSTO_SERVICIO 0.00 2 13013 \N +523284 2025-11-20 19:48:23.787895+00 2025-11-20 19:48:23.7879+00 f t DESCUENTO 0.00 3 13013 \N +523285 2025-11-20 19:48:23.788784+00 2025-11-20 19:48:23.788789+00 f t TOTAL 0.00 4 13013 \N +523286 2025-11-20 19:48:23.789985+00 2025-11-20 19:48:23.78999+00 f t ADELANTO 0.00 5 13013 \N +527022 2025-11-21 13:37:41.190903+00 2025-11-21 13:37:41.190911+00 f t SUBTOTAL 46000.00 1 13100 \N +527023 2025-11-21 13:37:41.19272+00 2025-11-21 13:37:41.192728+00 f t COSTO_SERVICIO 0.00 2 13100 \N +527024 2025-11-21 13:37:41.193904+00 2025-11-21 13:37:41.193909+00 f t DESCUENTO 0.00 3 13100 \N +527025 2025-11-21 13:37:41.195057+00 2025-11-21 13:37:41.195063+00 f t TOTAL 46000.00 4 13100 \N +527026 2025-11-21 13:37:41.196262+00 2025-11-21 13:37:41.19627+00 f t ADELANTO 11000.00 5 13100 \N +523322 2025-11-20 19:59:34.61977+00 2025-11-20 19:59:34.619777+00 f t SUBTOTAL 54000.00 1 13014 \N +523323 2025-11-20 19:59:34.621111+00 2025-11-20 19:59:34.621117+00 f t COSTO_SERVICIO 0.00 2 13014 \N +523324 2025-11-20 19:59:34.62214+00 2025-11-20 19:59:34.622146+00 f t DESCUENTO 0.00 3 13014 \N +523325 2025-11-20 19:59:34.623022+00 2025-11-20 19:59:34.623027+00 f t TOTAL 54000.00 4 13014 \N +523326 2025-11-20 19:59:34.623943+00 2025-11-20 19:59:34.623948+00 f t ADELANTO 13500.00 5 13014 \N +523332 2025-11-20 20:00:09.374556+00 2025-11-20 20:00:09.37457+00 f t SUBTOTAL 0.00 1 13015 \N +523333 2025-11-20 20:00:09.377097+00 2025-11-20 20:00:09.37711+00 f t COSTO_SERVICIO 0.00 2 13015 \N +523334 2025-11-20 20:00:09.381647+00 2025-11-20 20:00:09.38166+00 f t DESCUENTO 0.00 3 13015 \N +523335 2025-11-20 20:00:09.384445+00 2025-11-20 20:00:09.384458+00 f t TOTAL 0.00 4 13015 \N +523336 2025-11-20 20:00:09.38687+00 2025-11-20 20:00:09.386883+00 f t ADELANTO 0.00 5 13015 \N +523352 2025-11-20 20:15:15.887255+00 2025-11-20 20:15:15.887264+00 f t SUBTOTAL 0.00 1 13017 \N +523353 2025-11-20 20:15:15.888809+00 2025-11-20 20:15:15.888817+00 f t COSTO_SERVICIO 0.00 2 13017 \N +523354 2025-11-20 20:15:15.890036+00 2025-11-20 20:15:15.890048+00 f t DESCUENTO 0.00 3 13017 \N +523355 2025-11-20 20:15:15.891293+00 2025-11-20 20:15:15.8913+00 f t TOTAL 0.00 4 13017 \N +523356 2025-11-20 20:15:15.892662+00 2025-11-20 20:15:15.892667+00 f t ADELANTO 0.00 5 13017 \N +523357 2025-11-20 20:15:35.542972+00 2025-11-20 20:15:35.542981+00 f t SUBTOTAL 13200.00 1 13016 \N +523358 2025-11-20 20:15:35.545015+00 2025-11-20 20:15:35.545022+00 f t COSTO_SERVICIO 0.00 2 13016 \N +523359 2025-11-20 20:15:35.546219+00 2025-11-20 20:15:35.546225+00 f t DESCUENTO 0.00 3 13016 \N +523360 2025-11-20 20:15:35.547266+00 2025-11-20 20:15:35.547271+00 f t TOTAL 13200.00 4 13016 \N +523361 2025-11-20 20:15:35.54849+00 2025-11-20 20:15:35.548499+00 f t ADELANTO 13200.00 5 13016 \N +523397 2025-11-20 20:20:27.687108+00 2025-11-20 20:20:27.687118+00 f t SUBTOTAL 80000.00 1 13018 \N +523398 2025-11-20 20:20:27.688713+00 2025-11-20 20:20:27.688719+00 f t COSTO_SERVICIO 0.00 2 13018 \N +523399 2025-11-20 20:20:27.689716+00 2025-11-20 20:20:27.689723+00 f t DESCUENTO 0.00 3 13018 \N +523400 2025-11-20 20:20:27.690868+00 2025-11-20 20:20:27.690873+00 f t TOTAL 80000.00 4 13018 \N +523401 2025-11-20 20:20:27.692242+00 2025-11-20 20:20:27.692251+00 f t ADELANTO 12000.00 5 13018 \N +523407 2025-11-20 20:28:08.057161+00 2025-11-20 20:28:08.057174+00 f t SUBTOTAL 30000.00 1 12993 \N +523408 2025-11-20 20:28:08.059231+00 2025-11-20 20:28:08.05924+00 f t COSTO_SERVICIO 0.00 2 12993 \N +523409 2025-11-20 20:28:08.060871+00 2025-11-20 20:28:08.060878+00 f t DESCUENTO 0.00 3 12993 \N +523410 2025-11-20 20:28:08.062347+00 2025-11-20 20:28:08.062356+00 f t TOTAL 30000.00 4 12993 \N +523411 2025-11-20 20:28:08.064093+00 2025-11-20 20:28:08.064101+00 f t ADELANTO 30000.00 5 12993 \N +528987 2025-11-21 19:29:41.849736+00 2025-11-21 19:29:41.849744+00 f t SUBTOTAL 30000.00 1 13151 \N +528988 2025-11-21 19:29:41.851273+00 2025-11-21 19:29:41.851278+00 f t COSTO_SERVICIO 0.00 2 13151 \N +528989 2025-11-21 19:29:41.852687+00 2025-11-21 19:29:41.852694+00 f t DESCUENTO 0.00 3 13151 \N +528990 2025-11-21 19:29:41.853816+00 2025-11-21 19:29:41.853822+00 f t TOTAL 30000.00 4 13151 \N +528991 2025-11-21 19:29:41.854953+00 2025-11-21 19:29:41.854959+00 f t ADELANTO 30000.00 5 13151 \N +542207 2025-11-24 22:21:23.520025+00 2025-11-24 22:21:23.520033+00 f t SUBTOTAL 78500.00 1 13454 \N +542208 2025-11-24 22:21:23.522105+00 2025-11-24 22:21:23.522111+00 f t COSTO_SERVICIO 0.00 2 13454 \N +542209 2025-11-24 22:21:23.523348+00 2025-11-24 22:21:23.523355+00 f t DESCUENTO 0.00 3 13454 \N +542210 2025-11-24 22:21:23.524462+00 2025-11-24 22:21:23.524468+00 f t TOTAL 78500.00 4 13454 \N +542211 2025-11-24 22:21:23.525434+00 2025-11-24 22:21:23.525441+00 f t ADELANTO 17500.00 5 13454 \N +523467 2025-11-20 20:36:25.35701+00 2025-11-20 20:36:25.357018+00 f t SUBTOTAL 70000.00 1 13019 \N +523468 2025-11-20 20:36:25.358554+00 2025-11-20 20:36:25.35856+00 f t COSTO_SERVICIO 0.00 2 13019 \N +523469 2025-11-20 20:36:25.359845+00 2025-11-20 20:36:25.35985+00 f t DESCUENTO 0.00 3 13019 \N +523470 2025-11-20 20:36:25.361039+00 2025-11-20 20:36:25.361047+00 f t TOTAL 70000.00 4 13019 \N +523471 2025-11-20 20:36:25.362072+00 2025-11-20 20:36:25.362077+00 f t ADELANTO 19000.00 5 13019 \N +523477 2025-11-20 20:37:12.821472+00 2025-11-20 20:37:12.821481+00 f t SUBTOTAL 0.00 1 13020 \N +523478 2025-11-20 20:37:12.822752+00 2025-11-20 20:37:12.822758+00 f t COSTO_SERVICIO 0.00 2 13020 \N +523479 2025-11-20 20:37:12.823867+00 2025-11-20 20:37:12.823875+00 f t DESCUENTO 0.00 3 13020 \N +523480 2025-11-20 20:37:12.82497+00 2025-11-20 20:37:12.824976+00 f t TOTAL 0.00 4 13020 \N +523481 2025-11-20 20:37:12.8258+00 2025-11-20 20:37:12.825805+00 f t ADELANTO 0.00 5 13020 \N +524187 2025-11-20 22:57:04.866212+00 2025-11-20 22:57:04.866221+00 f t SUBTOTAL 46000.00 1 13041 \N +524188 2025-11-20 22:57:04.867669+00 2025-11-20 22:57:04.867721+00 f t COSTO_SERVICIO 0.00 2 13041 \N +524189 2025-11-20 22:57:04.869362+00 2025-11-20 22:57:04.869372+00 f t DESCUENTO 0.00 3 13041 \N +524190 2025-11-20 22:57:04.870785+00 2025-11-20 22:57:04.870792+00 f t TOTAL 46000.00 4 13041 \N +524191 2025-11-20 22:57:04.872055+00 2025-11-20 22:57:04.872062+00 f t ADELANTO 11000.00 5 13041 \N +548727 2025-11-25 21:39:20.240599+00 2025-11-25 21:39:20.240606+00 f t SUBTOTAL 88000.00 1 13607 \N +548728 2025-11-25 21:39:20.242098+00 2025-11-25 21:39:20.242103+00 f t COSTO_SERVICIO 0.00 2 13607 \N +548729 2025-11-25 21:39:20.243028+00 2025-11-25 21:39:20.243033+00 f t DESCUENTO 0.00 3 13607 \N +548730 2025-11-25 21:39:20.243823+00 2025-11-25 21:39:20.243828+00 f t TOTAL 88000.00 4 13607 \N +548731 2025-11-25 21:39:20.244578+00 2025-11-25 21:39:20.244583+00 f t ADELANTO 13000.00 5 13607 \N +537062 2025-11-23 23:22:37.742538+00 2025-11-23 23:22:37.742547+00 f t SUBTOTAL 0.00 1 13335 \N +537063 2025-11-23 23:22:37.744713+00 2025-11-23 23:22:37.74472+00 f t COSTO_SERVICIO 0.00 2 13335 \N +537064 2025-11-23 23:22:37.746164+00 2025-11-23 23:22:37.746171+00 f t DESCUENTO 0.00 3 13335 \N +537065 2025-11-23 23:22:37.747359+00 2025-11-23 23:22:37.747365+00 f t TOTAL 0.00 4 13335 \N +537066 2025-11-23 23:22:37.74851+00 2025-11-23 23:22:37.748517+00 f t ADELANTO 0.00 5 13335 \N +538392 2025-11-24 09:51:01.095089+00 2025-11-24 09:51:01.095099+00 f t SUBTOTAL 102000.00 1 13366 \N +538393 2025-11-24 09:51:01.097117+00 2025-11-24 09:51:01.097127+00 f t COSTO_SERVICIO 0.00 2 13366 \N +538394 2025-11-24 09:51:01.098479+00 2025-11-24 09:51:01.098486+00 f t DESCUENTO 0.00 3 13366 \N +538395 2025-11-24 09:51:01.099624+00 2025-11-24 09:51:01.099632+00 f t TOTAL 102000.00 4 13366 \N +538396 2025-11-24 09:51:01.100847+00 2025-11-24 09:51:01.100855+00 f t ADELANTO 29500.00 5 13366 \N +526332 2025-11-21 11:25:04.284833+00 2025-11-21 11:25:04.284845+00 f t SUBTOTAL 78000.00 1 13087 \N +526333 2025-11-21 11:25:04.287446+00 2025-11-21 11:25:04.287459+00 f t COSTO_SERVICIO 0.00 2 13087 \N +526334 2025-11-21 11:25:04.28953+00 2025-11-21 11:25:04.289541+00 f t DESCUENTO 0.00 3 13087 \N +526335 2025-11-21 11:25:04.291518+00 2025-11-21 11:25:04.291528+00 f t TOTAL 78000.00 4 13087 \N +526336 2025-11-21 11:25:04.293521+00 2025-11-21 11:25:04.293531+00 f t ADELANTO 21500.00 5 13087 \N +526612 2025-11-21 12:17:47.603233+00 2025-11-21 12:17:47.603243+00 f t SUBTOTAL 0.00 1 13091 \N +526613 2025-11-21 12:17:47.605328+00 2025-11-21 12:17:47.605336+00 f t COSTO_SERVICIO 0.00 2 13091 \N +526614 2025-11-21 12:17:47.606543+00 2025-11-21 12:17:47.606549+00 f t DESCUENTO 0.00 3 13091 \N +526615 2025-11-21 12:17:47.607746+00 2025-11-21 12:17:47.607751+00 f t TOTAL 0.00 4 13091 \N +526616 2025-11-21 12:17:47.608796+00 2025-11-21 12:17:47.608801+00 f t ADELANTO 0.00 5 13091 \N +527297 2025-11-21 14:38:42.711061+00 2025-11-21 14:38:42.711072+00 f t SUBTOTAL 57000.00 1 13106 \N +527298 2025-11-21 14:38:42.712988+00 2025-11-21 14:38:42.712994+00 f t COSTO_SERVICIO 0.00 2 13106 \N +527299 2025-11-21 14:38:42.714213+00 2025-11-21 14:38:42.714223+00 f t DESCUENTO 0.00 3 13106 \N +527300 2025-11-21 14:38:42.715443+00 2025-11-21 14:38:42.715448+00 f t TOTAL 57000.00 4 13106 \N +527301 2025-11-21 14:38:42.716479+00 2025-11-21 14:38:42.716484+00 f t ADELANTO 57000.00 5 13106 \N +540137 2025-11-24 14:22:51.417634+00 2025-11-24 14:22:51.417641+00 f t SUBTOTAL 30000.00 1 13401 \N +540138 2025-11-24 14:22:51.419417+00 2025-11-24 14:22:51.419424+00 f t COSTO_SERVICIO 0.00 2 13401 \N +540139 2025-11-24 14:22:51.420563+00 2025-11-24 14:22:51.420568+00 f t DESCUENTO 0.00 3 13401 \N +540140 2025-11-24 14:22:51.421583+00 2025-11-24 14:22:51.421588+00 f t TOTAL 30000.00 4 13401 \N +540141 2025-11-24 14:22:51.422717+00 2025-11-24 14:22:51.422725+00 f t ADELANTO 30000.00 5 13401 \N +540297 2025-11-24 14:29:33.523823+00 2025-11-24 14:29:33.52383+00 f t SUBTOTAL 53700.00 1 13403 \N +540298 2025-11-24 14:29:33.525705+00 2025-11-24 14:29:33.525712+00 f t COSTO_SERVICIO 0.00 2 13403 \N +540299 2025-11-24 14:29:33.527031+00 2025-11-24 14:29:33.527037+00 f t DESCUENTO 0.00 3 13403 \N +540300 2025-11-24 14:29:33.528209+00 2025-11-24 14:29:33.528214+00 f t TOTAL 53700.00 4 13403 \N +540301 2025-11-24 14:29:33.529251+00 2025-11-24 14:29:33.529257+00 f t ADELANTO 13200.00 5 13403 \N +542217 2025-11-24 22:23:32.436728+00 2025-11-24 22:23:32.436737+00 f t SUBTOTAL 0.00 1 13455 \N +542218 2025-11-24 22:23:32.43808+00 2025-11-24 22:23:32.438089+00 f t COSTO_SERVICIO 0.00 2 13455 \N +542219 2025-11-24 22:23:32.439275+00 2025-11-24 22:23:32.439281+00 f t DESCUENTO 0.00 3 13455 \N +542220 2025-11-24 22:23:32.440344+00 2025-11-24 22:23:32.440349+00 f t TOTAL 0.00 4 13455 \N +542221 2025-11-24 22:23:32.441244+00 2025-11-24 22:23:32.441252+00 f t ADELANTO 0.00 5 13455 \N +529922 2025-11-21 22:38:40.469448+00 2025-11-21 22:38:40.469455+00 f t SUBTOTAL 31500.00 1 13170 \N +529923 2025-11-21 22:38:40.470968+00 2025-11-21 22:38:40.470974+00 f t COSTO_SERVICIO 0.00 2 13170 \N +529924 2025-11-21 22:38:40.47202+00 2025-11-21 22:38:40.472025+00 f t DESCUENTO 0.00 3 13170 \N +529925 2025-11-21 22:38:40.472891+00 2025-11-21 22:38:40.472897+00 f t TOTAL 31500.00 4 13170 \N +529926 2025-11-21 22:38:40.473916+00 2025-11-21 22:38:40.473924+00 f t ADELANTO 31500.00 5 13170 \N +529962 2025-11-21 23:18:52.629725+00 2025-11-21 23:18:52.629733+00 f t SUBTOTAL 54000.00 1 13173 \N +529963 2025-11-21 23:18:52.631565+00 2025-11-21 23:18:52.631572+00 f t COSTO_SERVICIO 0.00 2 13173 \N +529964 2025-11-21 23:18:52.633032+00 2025-11-21 23:18:52.633037+00 f t DESCUENTO 0.00 3 13173 \N +529965 2025-11-21 23:18:52.63418+00 2025-11-21 23:18:52.634185+00 f t TOTAL 54000.00 4 13173 \N +529966 2025-11-21 23:18:52.635306+00 2025-11-21 23:18:52.63531+00 f t ADELANTO 13500.00 5 13173 \N +548737 2025-11-25 21:44:35.614198+00 2025-11-25 21:44:35.614206+00 f t SUBTOTAL 0.00 1 13608 \N +548738 2025-11-25 21:44:35.615506+00 2025-11-25 21:44:35.615512+00 f t COSTO_SERVICIO 0.00 2 13608 \N +548739 2025-11-25 21:44:35.616476+00 2025-11-25 21:44:35.61648+00 f t DESCUENTO 0.00 3 13608 \N +548740 2025-11-25 21:44:35.617375+00 2025-11-25 21:44:35.61738+00 f t TOTAL 0.00 4 13608 \N +548741 2025-11-25 21:44:35.618366+00 2025-11-25 21:44:35.618371+00 f t ADELANTO 0.00 5 13608 \N +530162 2025-11-21 23:26:26.622088+00 2025-11-21 23:26:26.622097+00 f t SUBTOTAL 0.00 1 13174 \N +530163 2025-11-21 23:26:26.623882+00 2025-11-21 23:26:26.623889+00 f t COSTO_SERVICIO 0.00 2 13174 \N +530164 2025-11-21 23:26:26.625274+00 2025-11-21 23:26:26.625284+00 f t DESCUENTO 0.00 3 13174 \N +530165 2025-11-21 23:26:26.62667+00 2025-11-21 23:26:26.626677+00 f t TOTAL 0.00 4 13174 \N +530166 2025-11-21 23:26:26.627963+00 2025-11-21 23:26:26.627969+00 f t ADELANTO 0.00 5 13174 \N +540477 2025-11-24 14:52:06.964723+00 2025-11-24 14:52:06.964732+00 f t SUBTOTAL 124000.00 1 13409 \N +540478 2025-11-24 14:52:06.966482+00 2025-11-24 14:52:06.966489+00 f t COSTO_SERVICIO 0.00 2 13409 \N +540479 2025-11-24 14:52:06.967667+00 2025-11-24 14:52:06.967672+00 f t DESCUENTO 9200.00 3 13409 \N +540480 2025-11-24 14:52:06.968965+00 2025-11-24 14:52:06.968973+00 f t TOTAL 114800.00 4 13409 \N +540481 2025-11-24 14:52:06.970245+00 2025-11-24 14:52:06.970254+00 f t ADELANTO 32500.00 5 13409 \N +540632 2025-11-24 15:30:00.860934+00 2025-11-24 15:30:00.860941+00 f t SUBTOTAL 116000.00 1 13412 \N +540633 2025-11-24 15:30:00.863022+00 2025-11-24 15:30:00.863029+00 f t COSTO_SERVICIO 0.00 2 13412 \N +540634 2025-11-24 15:30:00.864373+00 2025-11-24 15:30:00.864378+00 f t DESCUENTO 9200.00 3 13412 \N +540635 2025-11-24 15:30:00.86576+00 2025-11-24 15:30:00.865766+00 f t TOTAL 106800.00 4 13412 \N +540636 2025-11-24 15:30:00.867396+00 2025-11-24 15:30:00.867406+00 f t ADELANTO 30000.00 5 13412 \N +530232 2025-11-21 23:28:43.940919+00 2025-11-21 23:28:43.940926+00 f t SUBTOTAL 55000.00 1 13175 \N +530233 2025-11-21 23:28:43.942522+00 2025-11-21 23:28:43.94253+00 f t COSTO_SERVICIO 0.00 2 13175 \N +530234 2025-11-21 23:28:43.943865+00 2025-11-21 23:28:43.943871+00 f t DESCUENTO 0.00 3 13175 \N +530235 2025-11-21 23:28:43.945071+00 2025-11-21 23:28:43.945076+00 f t TOTAL 55000.00 4 13175 \N +530236 2025-11-21 23:28:43.946163+00 2025-11-21 23:28:43.946169+00 f t ADELANTO 11000.00 5 13175 \N +542227 2025-11-24 22:26:39.239745+00 2025-11-24 22:26:39.239757+00 f t SUBTOTAL 0.00 1 13456 \N +542228 2025-11-24 22:26:39.241199+00 2025-11-24 22:26:39.241205+00 f t COSTO_SERVICIO 0.00 2 13456 \N +542229 2025-11-24 22:26:39.242552+00 2025-11-24 22:26:39.242558+00 f t DESCUENTO 0.00 3 13456 \N +542230 2025-11-24 22:26:39.243757+00 2025-11-24 22:26:39.243766+00 f t TOTAL 0.00 4 13456 \N +542231 2025-11-24 22:26:39.245056+00 2025-11-24 22:26:39.245064+00 f t ADELANTO 0.00 5 13456 \N +530277 2025-11-21 23:34:03.148476+00 2025-11-21 23:34:03.148485+00 f t SUBTOTAL 54000.00 1 13176 \N +530278 2025-11-21 23:34:03.150273+00 2025-11-21 23:34:03.150279+00 f t COSTO_SERVICIO 0.00 2 13176 \N +530279 2025-11-21 23:34:03.151581+00 2025-11-21 23:34:03.151586+00 f t DESCUENTO 0.00 3 13176 \N +530280 2025-11-21 23:34:03.152715+00 2025-11-21 23:34:03.15272+00 f t TOTAL 54000.00 4 13176 \N +530281 2025-11-21 23:34:03.153721+00 2025-11-21 23:34:03.153727+00 f t ADELANTO 13500.00 5 13176 \N +542982 2025-11-25 00:12:40.10554+00 2025-11-25 00:12:40.105547+00 f t SUBTOTAL 70000.00 1 13473 \N +542983 2025-11-25 00:12:40.107253+00 2025-11-25 00:12:40.10726+00 f t COSTO_SERVICIO 0.00 2 13473 \N +542984 2025-11-25 00:12:40.108562+00 2025-11-25 00:12:40.108568+00 f t DESCUENTO 0.00 3 13473 \N +542985 2025-11-25 00:12:40.110454+00 2025-11-25 00:12:40.110463+00 f t TOTAL 70000.00 4 13473 \N +542986 2025-11-25 00:12:40.111987+00 2025-11-25 00:12:40.111992+00 f t ADELANTO 19000.00 5 13473 \N +543097 2025-11-25 00:22:38.334457+00 2025-11-25 00:22:38.334464+00 f t SUBTOTAL 70000.00 1 13475 \N +543098 2025-11-25 00:22:38.336108+00 2025-11-25 00:22:38.336115+00 f t COSTO_SERVICIO 0.00 2 13475 \N +543099 2025-11-25 00:22:38.337208+00 2025-11-25 00:22:38.337213+00 f t DESCUENTO 0.00 3 13475 \N +543100 2025-11-25 00:22:38.338201+00 2025-11-25 00:22:38.338206+00 f t TOTAL 70000.00 4 13475 \N +543101 2025-11-25 00:22:38.33903+00 2025-11-25 00:22:38.339035+00 f t ADELANTO 19000.00 5 13475 \N +530307 2025-11-21 23:34:44.383538+00 2025-11-21 23:34:44.383548+00 f t SUBTOTAL 20500.00 1 13177 \N +530308 2025-11-21 23:34:44.384988+00 2025-11-21 23:34:44.384993+00 f t COSTO_SERVICIO 0.00 2 13177 \N +530309 2025-11-21 23:34:44.386027+00 2025-11-21 23:34:44.386032+00 f t DESCUENTO 0.00 3 13177 \N +530310 2025-11-21 23:34:44.387078+00 2025-11-21 23:34:44.387083+00 f t TOTAL 20500.00 4 13177 \N +530311 2025-11-21 23:34:44.387957+00 2025-11-21 23:34:44.387965+00 f t ADELANTO 20500.00 5 13177 \N +530317 2025-11-21 23:38:10.956746+00 2025-11-21 23:38:10.956755+00 f t SUBTOTAL 0.00 1 13178 \N +530318 2025-11-21 23:38:10.958128+00 2025-11-21 23:38:10.958134+00 f t COSTO_SERVICIO 0.00 2 13178 \N +530319 2025-11-21 23:38:10.959329+00 2025-11-21 23:38:10.959335+00 f t DESCUENTO 0.00 3 13178 \N +530320 2025-11-21 23:38:10.960589+00 2025-11-21 23:38:10.960596+00 f t TOTAL 0.00 4 13178 \N +530321 2025-11-21 23:38:10.961685+00 2025-11-21 23:38:10.96169+00 f t ADELANTO 0.00 5 13178 \N +530327 2025-11-21 23:59:41.393944+00 2025-11-21 23:59:41.393953+00 f t SUBTOTAL 0.00 1 13179 \N +530328 2025-11-21 23:59:41.395277+00 2025-11-21 23:59:41.395283+00 f t COSTO_SERVICIO 0.00 2 13179 \N +530329 2025-11-21 23:59:41.396232+00 2025-11-21 23:59:41.396237+00 f t DESCUENTO 0.00 3 13179 \N +530330 2025-11-21 23:59:41.397336+00 2025-11-21 23:59:41.397345+00 f t TOTAL 0.00 4 13179 \N +530331 2025-11-21 23:59:41.398369+00 2025-11-21 23:59:41.398377+00 f t ADELANTO 0.00 5 13179 \N +535997 2025-11-23 19:36:02.720596+00 2025-11-23 19:36:02.720609+00 f t SUBTOTAL 54000.00 1 13314 \N +535998 2025-11-23 19:36:02.723416+00 2025-11-23 19:36:02.723431+00 f t COSTO_SERVICIO 0.00 2 13314 \N +535999 2025-11-23 19:36:02.725623+00 2025-11-23 19:36:02.725636+00 f t DESCUENTO 0.00 3 13314 \N +536000 2025-11-23 19:36:02.72798+00 2025-11-23 19:36:02.727992+00 f t TOTAL 54000.00 4 13314 \N +536001 2025-11-23 19:36:02.73008+00 2025-11-23 19:36:02.730088+00 f t ADELANTO 13500.00 5 13314 \N +536587 2025-11-23 21:00:15.042813+00 2025-11-23 21:00:15.042828+00 f t SUBTOTAL 55000.00 1 13327 \N +536588 2025-11-23 21:00:15.047083+00 2025-11-23 21:00:15.047094+00 f t COSTO_SERVICIO 0.00 2 13327 \N +536589 2025-11-23 21:00:15.049528+00 2025-11-23 21:00:15.049541+00 f t DESCUENTO 0.00 3 13327 \N +536590 2025-11-23 21:00:15.052127+00 2025-11-23 21:00:15.05214+00 f t TOTAL 55000.00 4 13327 \N +536591 2025-11-23 21:00:15.05418+00 2025-11-23 21:00:15.054189+00 f t ADELANTO 11000.00 5 13327 \N +530367 2025-11-22 00:05:00.521561+00 2025-11-22 00:05:00.52157+00 f t SUBTOTAL 0.00 1 13181 \N +530368 2025-11-22 00:05:00.523224+00 2025-11-22 00:05:00.523232+00 f t COSTO_SERVICIO 0.00 2 13181 \N +530369 2025-11-22 00:05:00.524431+00 2025-11-22 00:05:00.524437+00 f t DESCUENTO 0.00 3 13181 \N +530370 2025-11-22 00:05:00.525558+00 2025-11-22 00:05:00.525564+00 f t TOTAL 0.00 4 13181 \N +530371 2025-11-22 00:05:00.526625+00 2025-11-22 00:05:00.52663+00 f t ADELANTO 0.00 5 13181 \N +530372 2025-11-22 00:05:10.244848+00 2025-11-22 00:05:10.24486+00 f t SUBTOTAL 55000.00 1 13180 \N +530373 2025-11-22 00:05:10.272718+00 2025-11-22 00:05:10.272732+00 f t COSTO_SERVICIO 0.00 2 13180 \N +530374 2025-11-22 00:05:10.27485+00 2025-11-22 00:05:10.274861+00 f t DESCUENTO 0.00 3 13180 \N +530375 2025-11-22 00:05:10.276435+00 2025-11-22 00:05:10.276444+00 f t TOTAL 55000.00 4 13180 \N +530376 2025-11-22 00:05:10.278851+00 2025-11-22 00:05:10.278859+00 f t ADELANTO 11000.00 5 13180 \N +530402 2025-11-22 00:46:32.852409+00 2025-11-22 00:46:32.852418+00 f t SUBTOTAL 0.00 1 13183 \N +530403 2025-11-22 00:46:32.854152+00 2025-11-22 00:46:32.85416+00 f t COSTO_SERVICIO 0.00 2 13183 \N +530404 2025-11-22 00:46:32.855405+00 2025-11-22 00:46:32.855412+00 f t DESCUENTO 0.00 3 13183 \N +530405 2025-11-22 00:46:32.856434+00 2025-11-22 00:46:32.85644+00 f t TOTAL 0.00 4 13183 \N +530406 2025-11-22 00:46:32.857442+00 2025-11-22 00:46:32.857446+00 f t ADELANTO 0.00 5 13183 \N +530422 2025-11-22 00:47:08.454416+00 2025-11-22 00:47:08.454424+00 f t SUBTOTAL 85000.00 1 13182 \N +530423 2025-11-22 00:47:08.455895+00 2025-11-22 00:47:08.4559+00 f t COSTO_SERVICIO 0.00 2 13182 \N +530424 2025-11-22 00:47:08.45699+00 2025-11-22 00:47:08.456995+00 f t DESCUENTO 0.00 3 13182 \N +530425 2025-11-22 00:47:08.457914+00 2025-11-22 00:47:08.457919+00 f t TOTAL 85000.00 4 13182 \N +530426 2025-11-22 00:47:08.458763+00 2025-11-22 00:47:08.458769+00 f t ADELANTO 15000.00 5 13182 \N +539157 2025-11-24 12:25:33.17767+00 2025-11-24 12:25:33.177677+00 f t SUBTOTAL 53700.00 1 13385 \N +539158 2025-11-24 12:25:33.179348+00 2025-11-24 12:25:33.179354+00 f t COSTO_SERVICIO 0.00 2 13385 \N +539159 2025-11-24 12:25:33.180439+00 2025-11-24 12:25:33.180444+00 f t DESCUENTO 0.00 3 13385 \N +539160 2025-11-24 12:25:33.18142+00 2025-11-24 12:25:33.181425+00 f t TOTAL 53700.00 4 13385 \N +539161 2025-11-24 12:25:33.182359+00 2025-11-24 12:25:33.182364+00 f t ADELANTO 13200.00 5 13385 \N +540152 2025-11-24 14:24:07.325801+00 2025-11-24 14:24:07.325812+00 f t SUBTOTAL 30000.00 1 13402 \N +540153 2025-11-24 14:24:07.328334+00 2025-11-24 14:24:07.328347+00 f t COSTO_SERVICIO 0.00 2 13402 \N +540154 2025-11-24 14:24:07.330581+00 2025-11-24 14:24:07.330595+00 f t DESCUENTO 0.00 3 13402 \N +540155 2025-11-24 14:24:07.332589+00 2025-11-24 14:24:07.332612+00 f t TOTAL 30000.00 4 13402 \N +540156 2025-11-24 14:24:07.334527+00 2025-11-24 14:24:07.334536+00 f t ADELANTO 30000.00 5 13402 \N +530472 2025-11-22 00:50:13.771953+00 2025-11-22 00:50:13.77196+00 f t SUBTOTAL 94000.00 1 13184 \N +530473 2025-11-22 00:50:13.774171+00 2025-11-22 00:50:13.774178+00 f t COSTO_SERVICIO 0.00 2 13184 \N +530474 2025-11-22 00:50:13.775688+00 2025-11-22 00:50:13.775695+00 f t DESCUENTO 0.00 3 13184 \N +530475 2025-11-22 00:50:13.777+00 2025-11-22 00:50:13.777008+00 f t TOTAL 94000.00 4 13184 \N +530476 2025-11-22 00:50:13.778261+00 2025-11-22 00:50:13.778267+00 f t ADELANTO 27000.00 5 13184 \N +540962 2025-11-24 17:19:00.123834+00 2025-11-24 17:19:00.123842+00 f t SUBTOTAL 54000.00 1 13421 \N +540963 2025-11-24 17:19:00.125537+00 2025-11-24 17:19:00.125544+00 f t COSTO_SERVICIO 0.00 2 13421 \N +540964 2025-11-24 17:19:00.126778+00 2025-11-24 17:19:00.126785+00 f t DESCUENTO 0.00 3 13421 \N +540965 2025-11-24 17:19:00.127875+00 2025-11-24 17:19:00.127881+00 f t TOTAL 54000.00 4 13421 \N +540966 2025-11-24 17:19:00.128932+00 2025-11-24 17:19:00.128938+00 f t ADELANTO 13500.00 5 13421 \N +541287 2025-11-24 19:04:01.23468+00 2025-11-24 19:04:01.234688+00 f t SUBTOTAL 70000.00 1 13429 \N +541288 2025-11-24 19:04:01.237137+00 2025-11-24 19:04:01.237148+00 f t COSTO_SERVICIO 0.00 2 13429 \N +541289 2025-11-24 19:04:01.23896+00 2025-11-24 19:04:01.238967+00 f t DESCUENTO 0.00 3 13429 \N +541290 2025-11-24 19:04:01.240537+00 2025-11-24 19:04:01.240544+00 f t TOTAL 70000.00 4 13429 \N +541291 2025-11-24 19:04:01.242116+00 2025-11-24 19:04:01.242125+00 f t ADELANTO 19000.00 5 13429 \N +541442 2025-11-24 19:54:25.33812+00 2025-11-24 19:54:25.338129+00 f t SUBTOTAL 0.00 1 13432 \N +541443 2025-11-24 19:54:25.340413+00 2025-11-24 19:54:25.340421+00 f t COSTO_SERVICIO 0.00 2 13432 \N +541444 2025-11-24 19:54:25.34188+00 2025-11-24 19:54:25.341886+00 f t DESCUENTO 0.00 3 13432 \N +541445 2025-11-24 19:54:25.342892+00 2025-11-24 19:54:25.342924+00 f t TOTAL 0.00 4 13432 \N +541446 2025-11-24 19:54:25.344146+00 2025-11-24 19:54:25.344152+00 f t ADELANTO 0.00 5 13432 \N +541767 2025-11-24 20:58:41.26797+00 2025-11-24 20:58:41.26798+00 f t SUBTOTAL 0.00 1 13441 \N +541768 2025-11-24 20:58:41.270664+00 2025-11-24 20:58:41.270672+00 f t COSTO_SERVICIO 0.00 2 13441 \N +541769 2025-11-24 20:58:41.272058+00 2025-11-24 20:58:41.272063+00 f t DESCUENTO 0.00 3 13441 \N +541770 2025-11-24 20:58:41.273327+00 2025-11-24 20:58:41.273332+00 f t TOTAL 0.00 4 13441 \N +541771 2025-11-24 20:58:41.274325+00 2025-11-24 20:58:41.274331+00 f t ADELANTO 0.00 5 13441 \N +530552 2025-11-22 00:58:30.40009+00 2025-11-22 00:58:30.4001+00 f t SUBTOTAL 0.00 1 13185 \N +530553 2025-11-22 00:58:30.402026+00 2025-11-22 00:58:30.402033+00 f t COSTO_SERVICIO 0.00 2 13185 \N +530554 2025-11-22 00:58:30.403226+00 2025-11-22 00:58:30.403232+00 f t DESCUENTO 0.00 3 13185 \N +530555 2025-11-22 00:58:30.404238+00 2025-11-22 00:58:30.404244+00 f t TOTAL 0.00 4 13185 \N +530556 2025-11-22 00:58:30.405192+00 2025-11-22 00:58:30.405197+00 f t ADELANTO 0.00 5 13185 \N +530582 2025-11-22 01:04:56.619825+00 2025-11-22 01:04:56.619833+00 f t SUBTOTAL 54000.00 1 13186 \N +530583 2025-11-22 01:04:56.621614+00 2025-11-22 01:04:56.621619+00 f t COSTO_SERVICIO 0.00 2 13186 \N +530584 2025-11-22 01:04:56.62332+00 2025-11-22 01:04:56.623325+00 f t DESCUENTO 0.00 3 13186 \N +530585 2025-11-22 01:04:56.62458+00 2025-11-22 01:04:56.624586+00 f t TOTAL 54000.00 4 13186 \N +530586 2025-11-22 01:04:56.62677+00 2025-11-22 01:04:56.626775+00 f t ADELANTO 13500.00 5 13186 \N +530617 2025-11-22 01:17:13.391393+00 2025-11-22 01:17:13.391406+00 f t SUBTOTAL 55000.00 1 13187 \N +530618 2025-11-22 01:17:13.394582+00 2025-11-22 01:17:13.394595+00 f t COSTO_SERVICIO 0.00 2 13187 \N +530619 2025-11-22 01:17:13.396524+00 2025-11-22 01:17:13.396534+00 f t DESCUENTO 0.00 3 13187 \N +530620 2025-11-22 01:17:13.398096+00 2025-11-22 01:17:13.398106+00 f t TOTAL 55000.00 4 13187 \N +530621 2025-11-22 01:17:13.399724+00 2025-11-22 01:17:13.399732+00 f t ADELANTO 11000.00 5 13187 \N +536002 2025-11-23 19:37:00.237502+00 2025-11-23 19:37:00.237511+00 f t SUBTOTAL 218000.00 1 13114 \N +536003 2025-11-23 19:37:00.239731+00 2025-11-23 19:37:00.239744+00 f t COSTO_SERVICIO 0.00 2 13114 \N +536004 2025-11-23 19:37:00.241564+00 2025-11-23 19:37:00.241581+00 f t DESCUENTO 9200.00 3 13114 \N +536005 2025-11-23 19:37:00.243597+00 2025-11-23 19:37:00.243609+00 f t TOTAL 208800.00 4 13114 \N +536006 2025-11-23 19:37:00.245291+00 2025-11-23 19:37:00.2453+00 f t ADELANTO 56500.00 5 13114 \N +548747 2025-11-25 21:54:41.33865+00 2025-11-25 21:54:41.338661+00 f t SUBTOTAL 0.00 1 13609 \N +548748 2025-11-25 21:54:41.34013+00 2025-11-25 21:54:41.340138+00 f t COSTO_SERVICIO 0.00 2 13609 \N +548749 2025-11-25 21:54:41.341256+00 2025-11-25 21:54:41.341261+00 f t DESCUENTO 0.00 3 13609 \N +548750 2025-11-25 21:54:41.342301+00 2025-11-25 21:54:41.342308+00 f t TOTAL 0.00 4 13609 \N +548751 2025-11-25 21:54:41.343328+00 2025-11-25 21:54:41.343334+00 f t ADELANTO 0.00 5 13609 \N +536847 2025-11-23 22:42:10.59765+00 2025-11-23 22:42:10.597661+00 f t SUBTOTAL 0.00 1 13333 \N +536848 2025-11-23 22:42:10.600154+00 2025-11-23 22:42:10.600163+00 f t COSTO_SERVICIO 0.00 2 13333 \N +536849 2025-11-23 22:42:10.602041+00 2025-11-23 22:42:10.60205+00 f t DESCUENTO 0.00 3 13333 \N +536850 2025-11-23 22:42:10.603681+00 2025-11-23 22:42:10.60369+00 f t TOTAL 0.00 4 13333 \N +536851 2025-11-23 22:42:10.605153+00 2025-11-23 22:42:10.605163+00 f t ADELANTO 0.00 5 13333 \N +530657 2025-11-22 01:28:01.68605+00 2025-11-22 01:28:01.686058+00 f t SUBTOTAL 46000.00 1 13188 \N +530658 2025-11-22 01:28:01.687264+00 2025-11-22 01:28:01.68727+00 f t COSTO_SERVICIO 0.00 2 13188 \N +530659 2025-11-22 01:28:01.688274+00 2025-11-22 01:28:01.68828+00 f t DESCUENTO 0.00 3 13188 \N +530660 2025-11-22 01:28:01.689099+00 2025-11-22 01:28:01.689105+00 f t TOTAL 46000.00 4 13188 \N +530661 2025-11-22 01:28:01.689971+00 2025-11-22 01:28:01.689977+00 f t ADELANTO 11000.00 5 13188 \N +549362 2025-11-26 00:27:02.840834+00 2025-11-26 00:27:02.840843+00 f t SUBTOTAL 54000.00 1 13622 \N +549363 2025-11-26 00:27:02.842995+00 2025-11-26 00:27:02.843003+00 f t COSTO_SERVICIO 0.00 2 13622 \N +549364 2025-11-26 00:27:02.844464+00 2025-11-26 00:27:02.844474+00 f t DESCUENTO 0.00 3 13622 \N +549365 2025-11-26 00:27:02.845725+00 2025-11-26 00:27:02.845733+00 f t TOTAL 54000.00 4 13622 \N +549366 2025-11-26 00:27:02.847047+00 2025-11-26 00:27:02.847053+00 f t ADELANTO 13500.00 5 13622 \N +530677 2025-11-22 01:42:35.31975+00 2025-11-22 01:42:35.319759+00 f t SUBTOTAL 0.00 1 13189 \N +530678 2025-11-22 01:42:35.32162+00 2025-11-22 01:42:35.321626+00 f t COSTO_SERVICIO 0.00 2 13189 \N +530679 2025-11-22 01:42:35.322587+00 2025-11-22 01:42:35.322593+00 f t DESCUENTO 0.00 3 13189 \N +530680 2025-11-22 01:42:35.323522+00 2025-11-22 01:42:35.323526+00 f t TOTAL 0.00 4 13189 \N +530681 2025-11-22 01:42:35.324492+00 2025-11-22 01:42:35.324498+00 f t ADELANTO 0.00 5 13189 \N +539497 2025-11-24 13:17:24.294802+00 2025-11-24 13:17:24.294811+00 f t SUBTOTAL 78000.00 1 13390 \N +539498 2025-11-24 13:17:24.296634+00 2025-11-24 13:17:24.296641+00 f t COSTO_SERVICIO 0.00 2 13390 \N +539499 2025-11-24 13:17:24.29803+00 2025-11-24 13:17:24.298037+00 f t DESCUENTO 0.00 3 13390 \N +539500 2025-11-24 13:17:24.29961+00 2025-11-24 13:17:24.299616+00 f t TOTAL 78000.00 4 13390 \N +539501 2025-11-24 13:17:24.300683+00 2025-11-24 13:17:24.300688+00 f t ADELANTO 13000.00 5 13390 \N +530762 2025-11-22 02:18:24.515262+00 2025-11-22 02:18:24.515273+00 f t SUBTOTAL 85000.00 1 13190 \N +530763 2025-11-22 02:18:24.516956+00 2025-11-22 02:18:24.516964+00 f t COSTO_SERVICIO 0.00 2 13190 \N +530764 2025-11-22 02:18:24.518324+00 2025-11-22 02:18:24.518331+00 f t DESCUENTO 0.00 3 13190 \N +530765 2025-11-22 02:18:24.519459+00 2025-11-22 02:18:24.519467+00 f t TOTAL 85000.00 4 13190 \N +530766 2025-11-22 02:18:24.52062+00 2025-11-22 02:18:24.520627+00 f t ADELANTO 15000.00 5 13190 \N +540812 2025-11-24 16:32:12.969999+00 2025-11-24 16:32:12.970011+00 f t SUBTOTAL 0.00 1 13418 \N +540813 2025-11-24 16:32:12.972226+00 2025-11-24 16:32:12.972236+00 f t COSTO_SERVICIO 0.00 2 13418 \N +540814 2025-11-24 16:32:12.974453+00 2025-11-24 16:32:12.974462+00 f t DESCUENTO 0.00 3 13418 \N +540815 2025-11-24 16:32:12.975528+00 2025-11-24 16:32:12.975534+00 f t TOTAL 0.00 4 13418 \N +540816 2025-11-24 16:32:12.976839+00 2025-11-24 16:32:12.976844+00 f t ADELANTO 0.00 5 13418 \N +541602 2025-11-24 20:20:30.268944+00 2025-11-24 20:20:30.268952+00 f t SUBTOTAL 70000.00 1 13435 \N +541603 2025-11-24 20:20:30.271212+00 2025-11-24 20:20:30.271219+00 f t COSTO_SERVICIO 0.00 2 13435 \N +541604 2025-11-24 20:20:30.272459+00 2025-11-24 20:20:30.272465+00 f t DESCUENTO 0.00 3 13435 \N +541605 2025-11-24 20:20:30.273606+00 2025-11-24 20:20:30.273611+00 f t TOTAL 70000.00 4 13435 \N +541606 2025-11-24 20:20:30.274855+00 2025-11-24 20:20:30.27486+00 f t ADELANTO 19000.00 5 13435 \N +542237 2025-11-24 22:36:28.151117+00 2025-11-24 22:36:28.151131+00 f t SUBTOTAL 0.00 1 13457 \N +542238 2025-11-24 22:36:28.15282+00 2025-11-24 22:36:28.15283+00 f t COSTO_SERVICIO 0.00 2 13457 \N +542239 2025-11-24 22:36:28.154268+00 2025-11-24 22:36:28.154277+00 f t DESCUENTO 0.00 3 13457 \N +542240 2025-11-24 22:36:28.15547+00 2025-11-24 22:36:28.155478+00 f t TOTAL 0.00 4 13457 \N +542241 2025-11-24 22:36:28.156525+00 2025-11-24 22:36:28.15653+00 f t ADELANTO 0.00 5 13457 \N +542772 2025-11-24 23:32:11.576208+00 2025-11-24 23:32:11.576221+00 f t SUBTOTAL 0.00 1 13470 \N +542773 2025-11-24 23:32:11.579678+00 2025-11-24 23:32:11.579686+00 f t COSTO_SERVICIO 0.00 2 13470 \N +542774 2025-11-24 23:32:11.581015+00 2025-11-24 23:32:11.581021+00 f t DESCUENTO 0.00 3 13470 \N +542775 2025-11-24 23:32:11.582264+00 2025-11-24 23:32:11.58227+00 f t TOTAL 0.00 4 13470 \N +542776 2025-11-24 23:32:11.583365+00 2025-11-24 23:32:11.583372+00 f t ADELANTO 0.00 5 13470 \N +530902 2025-11-22 02:22:02.897099+00 2025-11-22 02:22:02.897107+00 f t SUBTOTAL 70000.00 1 13192 \N +530903 2025-11-22 02:22:02.89895+00 2025-11-22 02:22:02.898958+00 f t COSTO_SERVICIO 0.00 2 13192 \N +530904 2025-11-22 02:22:02.900572+00 2025-11-22 02:22:02.900579+00 f t DESCUENTO 0.00 3 13192 \N +530905 2025-11-22 02:22:02.902106+00 2025-11-22 02:22:02.902113+00 f t TOTAL 70000.00 4 13192 \N +530906 2025-11-22 02:22:02.903523+00 2025-11-22 02:22:02.903529+00 f t ADELANTO 19000.00 5 13192 \N +530947 2025-11-22 02:23:02.420939+00 2025-11-22 02:23:02.420951+00 f t SUBTOTAL 102000.00 1 13191 \N +530948 2025-11-22 02:23:02.423072+00 2025-11-22 02:23:02.423081+00 f t COSTO_SERVICIO 0.00 2 13191 \N +530949 2025-11-22 02:23:02.424685+00 2025-11-22 02:23:02.424695+00 f t DESCUENTO 0.00 3 13191 \N +530950 2025-11-22 02:23:02.426252+00 2025-11-22 02:23:02.42626+00 f t TOTAL 102000.00 4 13191 \N +530951 2025-11-22 02:23:02.427894+00 2025-11-22 02:23:02.427902+00 f t ADELANTO 29500.00 5 13191 \N +537802 2025-11-24 05:21:12.2834+00 2025-11-24 05:21:12.283408+00 f t SUBTOTAL 70000.00 1 13356 \N +537803 2025-11-24 05:21:12.28522+00 2025-11-24 05:21:12.285226+00 f t COSTO_SERVICIO 0.00 2 13356 \N +537804 2025-11-24 05:21:12.286371+00 2025-11-24 05:21:12.286376+00 f t DESCUENTO 0.00 3 13356 \N +537805 2025-11-24 05:21:12.28738+00 2025-11-24 05:21:12.287385+00 f t TOTAL 70000.00 4 13356 \N +537806 2025-11-24 05:21:12.288479+00 2025-11-24 05:21:12.288484+00 f t ADELANTO 19000.00 5 13356 \N +531017 2025-11-22 02:25:33.553262+00 2025-11-22 02:25:33.55327+00 f t SUBTOTAL 46000.00 1 13193 \N +531018 2025-11-22 02:25:33.555174+00 2025-11-22 02:25:33.55518+00 f t COSTO_SERVICIO 0.00 2 13193 \N +531019 2025-11-22 02:25:33.556335+00 2025-11-22 02:25:33.55634+00 f t DESCUENTO 0.00 3 13193 \N +531020 2025-11-22 02:25:33.557302+00 2025-11-22 02:25:33.557306+00 f t TOTAL 46000.00 4 13193 \N +531021 2025-11-22 02:25:33.558367+00 2025-11-22 02:25:33.558375+00 f t ADELANTO 11000.00 5 13193 \N +531047 2025-11-22 03:44:31.482534+00 2025-11-22 03:44:31.48254+00 f t SUBTOTAL 54000.00 1 13194 \N +531048 2025-11-22 03:44:31.484389+00 2025-11-22 03:44:31.484395+00 f t COSTO_SERVICIO 0.00 2 13194 \N +531049 2025-11-22 03:44:31.485527+00 2025-11-22 03:44:31.485532+00 f t DESCUENTO 0.00 3 13194 \N +531050 2025-11-22 03:44:31.48661+00 2025-11-22 03:44:31.486617+00 f t TOTAL 54000.00 4 13194 \N +531051 2025-11-22 03:44:31.487579+00 2025-11-22 03:44:31.487584+00 f t ADELANTO 13500.00 5 13194 \N +531097 2025-11-22 03:58:26.868395+00 2025-11-22 03:58:26.868402+00 f t SUBTOTAL 54000.00 1 13195 \N +531098 2025-11-22 03:58:26.869862+00 2025-11-22 03:58:26.869867+00 f t COSTO_SERVICIO 0.00 2 13195 \N +531099 2025-11-22 03:58:26.870965+00 2025-11-22 03:58:26.870975+00 f t DESCUENTO 0.00 3 13195 \N +531100 2025-11-22 03:58:26.871941+00 2025-11-22 03:58:26.871946+00 f t TOTAL 54000.00 4 13195 \N +531101 2025-11-22 03:58:26.87279+00 2025-11-22 03:58:26.872795+00 f t ADELANTO 13500.00 5 13195 \N +541612 2025-11-24 20:20:43.788084+00 2025-11-24 20:20:43.788096+00 f t SUBTOTAL 0.00 1 13436 \N +541613 2025-11-24 20:20:43.789591+00 2025-11-24 20:20:43.789598+00 f t COSTO_SERVICIO 0.00 2 13436 \N +531127 2025-11-22 03:59:28.81343+00 2025-11-22 03:59:28.813437+00 f t SUBTOTAL 54000.00 1 13196 \N +531128 2025-11-22 03:59:28.814833+00 2025-11-22 03:59:28.814839+00 f t COSTO_SERVICIO 0.00 2 13196 \N +531129 2025-11-22 03:59:28.815745+00 2025-11-22 03:59:28.815751+00 f t DESCUENTO 0.00 3 13196 \N +531130 2025-11-22 03:59:28.816565+00 2025-11-22 03:59:28.81657+00 f t TOTAL 54000.00 4 13196 \N +531131 2025-11-22 03:59:28.817437+00 2025-11-22 03:59:28.817442+00 f t ADELANTO 13500.00 5 13196 \N +541614 2025-11-24 20:20:43.790607+00 2025-11-24 20:20:43.790614+00 f t DESCUENTO 0.00 3 13436 \N +541615 2025-11-24 20:20:43.791641+00 2025-11-24 20:20:43.791648+00 f t TOTAL 0.00 4 13436 \N +541616 2025-11-24 20:20:43.792621+00 2025-11-24 20:20:43.792626+00 f t ADELANTO 0.00 5 13436 \N +541922 2025-11-24 21:33:00.335094+00 2025-11-24 21:33:00.335104+00 f t SUBTOTAL 70000.00 1 13445 \N +541923 2025-11-24 21:33:00.337017+00 2025-11-24 21:33:00.337027+00 f t COSTO_SERVICIO 0.00 2 13445 \N +541924 2025-11-24 21:33:00.338721+00 2025-11-24 21:33:00.33873+00 f t DESCUENTO 0.00 3 13445 \N +541925 2025-11-24 21:33:00.340047+00 2025-11-24 21:33:00.340056+00 f t TOTAL 70000.00 4 13445 \N +541926 2025-11-24 21:33:00.341276+00 2025-11-24 21:33:00.341284+00 f t ADELANTO 19000.00 5 13445 \N +531187 2025-11-22 04:04:20.975824+00 2025-11-22 04:04:20.975835+00 f t SUBTOTAL 102000.00 1 13197 \N +531188 2025-11-22 04:04:20.977558+00 2025-11-22 04:04:20.977567+00 f t COSTO_SERVICIO 0.00 2 13197 \N +531189 2025-11-22 04:04:20.979003+00 2025-11-22 04:04:20.979012+00 f t DESCUENTO 0.00 3 13197 \N +531190 2025-11-22 04:04:20.980184+00 2025-11-22 04:04:20.980191+00 f t TOTAL 102000.00 4 13197 \N +531191 2025-11-22 04:04:20.981409+00 2025-11-22 04:04:20.981418+00 f t ADELANTO 29500.00 5 13197 \N +531222 2025-11-22 04:09:22.48297+00 2025-11-22 04:09:22.482981+00 f t SUBTOTAL 0.00 1 13198 \N +531223 2025-11-22 04:09:22.484769+00 2025-11-22 04:09:22.484776+00 f t COSTO_SERVICIO 0.00 2 13198 \N +531224 2025-11-22 04:09:22.485978+00 2025-11-22 04:09:22.485984+00 f t DESCUENTO 0.00 3 13198 \N +531225 2025-11-22 04:09:22.487007+00 2025-11-22 04:09:22.487011+00 f t TOTAL 0.00 4 13198 \N +531226 2025-11-22 04:09:22.488038+00 2025-11-22 04:09:22.488043+00 f t ADELANTO 0.00 5 13198 \N +531232 2025-11-22 05:33:36.897674+00 2025-11-22 05:33:36.897682+00 f t SUBTOTAL 0.00 1 13199 \N +531233 2025-11-22 05:33:36.899123+00 2025-11-22 05:33:36.899154+00 f t COSTO_SERVICIO 0.00 2 13199 \N +531234 2025-11-22 05:33:36.900505+00 2025-11-22 05:33:36.900513+00 f t DESCUENTO 0.00 3 13199 \N +531235 2025-11-22 05:33:36.901662+00 2025-11-22 05:33:36.901668+00 f t TOTAL 0.00 4 13199 \N +531236 2025-11-22 05:33:36.902716+00 2025-11-22 05:33:36.902721+00 f t ADELANTO 0.00 5 13199 \N +537572 2025-11-24 03:38:41.904636+00 2025-11-24 03:38:41.904647+00 f t SUBTOTAL 54000.00 1 13348 \N +537573 2025-11-24 03:38:41.906591+00 2025-11-24 03:38:41.906599+00 f t COSTO_SERVICIO 0.00 2 13348 \N +537574 2025-11-24 03:38:41.907803+00 2025-11-24 03:38:41.90781+00 f t DESCUENTO 0.00 3 13348 \N +537575 2025-11-24 03:38:41.908872+00 2025-11-24 03:38:41.908879+00 f t TOTAL 54000.00 4 13348 \N +537576 2025-11-24 03:38:41.909894+00 2025-11-24 03:38:41.909925+00 f t ADELANTO 13500.00 5 13348 \N +531267 2025-11-22 06:01:23.896727+00 2025-11-22 06:01:23.896736+00 f t SUBTOTAL 0.00 1 13200 \N +531268 2025-11-22 06:01:23.898552+00 2025-11-22 06:01:23.898562+00 f t COSTO_SERVICIO 0.00 2 13200 \N +531269 2025-11-22 06:01:23.900051+00 2025-11-22 06:01:23.900094+00 f t DESCUENTO 0.00 3 13200 \N +531270 2025-11-22 06:01:23.901461+00 2025-11-22 06:01:23.901467+00 f t TOTAL 0.00 4 13200 \N +531271 2025-11-22 06:01:23.902664+00 2025-11-22 06:01:23.902669+00 f t ADELANTO 0.00 5 13200 \N +538222 2025-11-24 09:05:05.71843+00 2025-11-24 09:05:05.718442+00 f t SUBTOTAL 46000.00 1 13363 \N +538223 2025-11-24 09:05:05.721013+00 2025-11-24 09:05:05.721023+00 f t COSTO_SERVICIO 0.00 2 13363 \N +538224 2025-11-24 09:05:05.722911+00 2025-11-24 09:05:05.722923+00 f t DESCUENTO 0.00 3 13363 \N +538225 2025-11-24 09:05:05.724912+00 2025-11-24 09:05:05.72492+00 f t TOTAL 46000.00 4 13363 \N +538226 2025-11-24 09:05:05.726656+00 2025-11-24 09:05:05.726664+00 f t ADELANTO 11000.00 5 13363 \N +538812 2025-11-24 11:41:45.560708+00 2025-11-24 11:41:45.560715+00 f t SUBTOTAL 101000.00 1 13376 \N +538813 2025-11-24 11:41:45.56227+00 2025-11-24 11:41:45.562277+00 f t COSTO_SERVICIO 0.00 2 13376 \N +538814 2025-11-24 11:41:45.563464+00 2025-11-24 11:41:45.563472+00 f t DESCUENTO 10100.00 3 13376 \N +538815 2025-11-24 11:41:45.564659+00 2025-11-24 11:41:45.564667+00 f t TOTAL 90900.00 4 13376 \N +538816 2025-11-24 11:41:45.565924+00 2025-11-24 11:41:45.565932+00 f t ADELANTO 22000.00 5 13376 \N +531332 2025-11-22 06:27:53.66057+00 2025-11-22 06:27:53.660578+00 f t SUBTOTAL 55000.00 1 13201 \N +531333 2025-11-22 06:27:53.662391+00 2025-11-22 06:27:53.662398+00 f t COSTO_SERVICIO 0.00 2 13201 \N +531334 2025-11-22 06:27:53.663674+00 2025-11-22 06:27:53.663679+00 f t DESCUENTO 0.00 3 13201 \N +531335 2025-11-22 06:27:53.664932+00 2025-11-22 06:27:53.664938+00 f t TOTAL 55000.00 4 13201 \N +531336 2025-11-22 06:27:53.666029+00 2025-11-22 06:27:53.666035+00 f t ADELANTO 11000.00 5 13201 \N +540327 2025-11-24 14:30:44.568685+00 2025-11-24 14:30:44.568696+00 f t SUBTOTAL 54000.00 1 13404 \N +531342 2025-11-22 08:37:56.810264+00 2025-11-22 08:37:56.810274+00 f t SUBTOTAL 0.00 1 13202 \N +531343 2025-11-22 08:37:56.811762+00 2025-11-22 08:37:56.81177+00 f t COSTO_SERVICIO 0.00 2 13202 \N +531344 2025-11-22 08:37:56.812913+00 2025-11-22 08:37:56.812919+00 f t DESCUENTO 0.00 3 13202 \N +531345 2025-11-22 08:37:56.815566+00 2025-11-22 08:37:56.815572+00 f t TOTAL 0.00 4 13202 \N +531346 2025-11-22 08:37:56.816523+00 2025-11-22 08:37:56.816528+00 f t ADELANTO 0.00 5 13202 \N +540328 2025-11-24 14:30:44.570715+00 2025-11-24 14:30:44.570726+00 f t COSTO_SERVICIO 0.00 2 13404 \N +540329 2025-11-24 14:30:44.572071+00 2025-11-24 14:30:44.57208+00 f t DESCUENTO 0.00 3 13404 \N +540330 2025-11-24 14:30:44.573317+00 2025-11-24 14:30:44.573325+00 f t TOTAL 54000.00 4 13404 \N +540331 2025-11-24 14:30:44.574597+00 2025-11-24 14:30:44.574605+00 f t ADELANTO 13500.00 5 13404 \N +531352 2025-11-22 09:06:34.390402+00 2025-11-22 09:06:34.39041+00 f t SUBTOTAL 0.00 1 13203 \N +531353 2025-11-22 09:06:34.391938+00 2025-11-22 09:06:34.391945+00 f t COSTO_SERVICIO 0.00 2 13203 \N +531354 2025-11-22 09:06:34.39292+00 2025-11-22 09:06:34.392928+00 f t DESCUENTO 0.00 3 13203 \N +531355 2025-11-22 09:06:34.393965+00 2025-11-22 09:06:34.39397+00 f t TOTAL 0.00 4 13203 \N +531356 2025-11-22 09:06:34.394927+00 2025-11-22 09:06:34.394932+00 f t ADELANTO 0.00 5 13203 \N +541307 2025-11-24 19:05:56.043037+00 2025-11-24 19:05:56.043045+00 f t SUBTOTAL 0.00 1 13430 \N +541308 2025-11-24 19:05:56.045555+00 2025-11-24 19:05:56.045563+00 f t COSTO_SERVICIO 0.00 2 13430 \N +541309 2025-11-24 19:05:56.046923+00 2025-11-24 19:05:56.046929+00 f t DESCUENTO 0.00 3 13430 \N +541310 2025-11-24 19:05:56.048912+00 2025-11-24 19:05:56.048918+00 f t TOTAL 0.00 4 13430 \N +541311 2025-11-24 19:05:56.050218+00 2025-11-24 19:05:56.050224+00 f t ADELANTO 0.00 5 13430 \N +531407 2025-11-22 10:50:44.445788+00 2025-11-22 10:50:44.445796+00 f t SUBTOTAL 70000.00 1 13204 \N +531408 2025-11-22 10:50:44.447591+00 2025-11-22 10:50:44.447597+00 f t COSTO_SERVICIO 0.00 2 13204 \N +531409 2025-11-22 10:50:44.448716+00 2025-11-22 10:50:44.448721+00 f t DESCUENTO 0.00 3 13204 \N +531410 2025-11-22 10:50:44.449831+00 2025-11-22 10:50:44.449838+00 f t TOTAL 70000.00 4 13204 \N +531411 2025-11-22 10:50:44.455655+00 2025-11-22 10:50:44.455664+00 f t ADELANTO 19000.00 5 13204 \N +543117 2025-11-25 00:24:12.112998+00 2025-11-25 00:24:12.11301+00 f t SUBTOTAL 0.00 1 13477 \N +543118 2025-11-25 00:24:12.115292+00 2025-11-25 00:24:12.115299+00 f t COSTO_SERVICIO 0.00 2 13477 \N +543119 2025-11-25 00:24:12.116652+00 2025-11-25 00:24:12.116661+00 f t DESCUENTO 0.00 3 13477 \N +543120 2025-11-25 00:24:12.118028+00 2025-11-25 00:24:12.118033+00 f t TOTAL 0.00 4 13477 \N +543121 2025-11-25 00:24:12.118991+00 2025-11-25 00:24:12.118997+00 f t ADELANTO 0.00 5 13477 \N +531597 2025-11-22 11:01:51.814401+00 2025-11-22 11:01:51.814412+00 f t SUBTOTAL 0.00 1 13205 \N +531598 2025-11-22 11:01:51.816503+00 2025-11-22 11:01:51.816511+00 f t COSTO_SERVICIO 0.00 2 13205 \N +531599 2025-11-22 11:01:51.817708+00 2025-11-22 11:01:51.817714+00 f t DESCUENTO 0.00 3 13205 \N +531600 2025-11-22 11:01:51.819012+00 2025-11-22 11:01:51.819019+00 f t TOTAL 0.00 4 13205 \N +531601 2025-11-22 11:01:51.820284+00 2025-11-22 11:01:51.820291+00 f t ADELANTO 0.00 5 13205 \N +531607 2025-11-22 11:03:29.944745+00 2025-11-22 11:03:29.944754+00 f t SUBTOTAL 0.00 1 13206 \N +531608 2025-11-22 11:03:29.94611+00 2025-11-22 11:03:29.946117+00 f t COSTO_SERVICIO 0.00 2 13206 \N +531609 2025-11-22 11:03:29.947164+00 2025-11-22 11:03:29.94718+00 f t DESCUENTO 0.00 3 13206 \N +531610 2025-11-22 11:03:29.948145+00 2025-11-22 11:03:29.948151+00 f t TOTAL 0.00 4 13206 \N +531611 2025-11-22 11:03:29.948945+00 2025-11-22 11:03:29.94895+00 f t ADELANTO 0.00 5 13206 \N +531652 2025-11-22 11:19:58.622909+00 2025-11-22 11:19:58.622916+00 f t SUBTOTAL 78000.00 1 13207 \N +531653 2025-11-22 11:19:58.624364+00 2025-11-22 11:19:58.624369+00 f t COSTO_SERVICIO 0.00 2 13207 \N +531654 2025-11-22 11:19:58.625374+00 2025-11-22 11:19:58.62538+00 f t DESCUENTO 0.00 3 13207 \N +531655 2025-11-22 11:19:58.626295+00 2025-11-22 11:19:58.626301+00 f t TOTAL 78000.00 4 13207 \N +531656 2025-11-22 11:19:58.627248+00 2025-11-22 11:19:58.627254+00 f t ADELANTO 21500.00 5 13207 \N +540662 2025-11-24 15:31:25.352525+00 2025-11-24 15:31:25.352532+00 f t SUBTOTAL 70000.00 1 13413 \N +540663 2025-11-24 15:31:25.354653+00 2025-11-24 15:31:25.354661+00 f t COSTO_SERVICIO 0.00 2 13413 \N +540664 2025-11-24 15:31:25.356119+00 2025-11-24 15:31:25.356125+00 f t DESCUENTO 0.00 3 13413 \N +540665 2025-11-24 15:31:25.357233+00 2025-11-24 15:31:25.357238+00 f t TOTAL 70000.00 4 13413 \N +540666 2025-11-24 15:31:25.35847+00 2025-11-24 15:31:25.358476+00 f t ADELANTO 19000.00 5 13413 \N +541317 2025-11-24 19:36:57.478204+00 2025-11-24 19:36:57.478212+00 f t SUBTOTAL 0.00 1 13431 \N +541318 2025-11-24 19:36:57.47963+00 2025-11-24 19:36:57.479636+00 f t COSTO_SERVICIO 0.00 2 13431 \N +541319 2025-11-24 19:36:57.480592+00 2025-11-24 19:36:57.480598+00 f t DESCUENTO 0.00 3 13431 \N +541320 2025-11-24 19:36:57.481554+00 2025-11-24 19:36:57.481559+00 f t TOTAL 0.00 4 13431 \N +541321 2025-11-24 19:36:57.482629+00 2025-11-24 19:36:57.482638+00 f t ADELANTO 0.00 5 13431 \N +531692 2025-11-22 11:39:13.040037+00 2025-11-22 11:39:13.040043+00 f t SUBTOTAL 54000.00 1 13208 \N +531693 2025-11-22 11:39:13.041567+00 2025-11-22 11:39:13.041573+00 f t COSTO_SERVICIO 0.00 2 13208 \N +531694 2025-11-22 11:39:13.042785+00 2025-11-22 11:39:13.042793+00 f t DESCUENTO 0.00 3 13208 \N +531695 2025-11-22 11:39:13.045467+00 2025-11-22 11:39:13.045476+00 f t TOTAL 54000.00 4 13208 \N +531696 2025-11-22 11:39:13.046756+00 2025-11-22 11:39:13.046764+00 f t ADELANTO 13500.00 5 13208 \N +541787 2025-11-24 20:59:09.69664+00 2025-11-24 20:59:09.696651+00 f t SUBTOTAL 70000.00 1 13442 \N +541788 2025-11-24 20:59:09.698817+00 2025-11-24 20:59:09.698828+00 f t COSTO_SERVICIO 0.00 2 13442 \N +541789 2025-11-24 20:59:09.700428+00 2025-11-24 20:59:09.700437+00 f t DESCUENTO 0.00 3 13442 \N +541790 2025-11-24 20:59:09.701826+00 2025-11-24 20:59:09.701834+00 f t TOTAL 70000.00 4 13442 \N +541791 2025-11-24 20:59:09.703546+00 2025-11-24 20:59:09.703555+00 f t ADELANTO 19000.00 5 13442 \N +531722 2025-11-22 12:43:29.514459+00 2025-11-22 12:43:29.514465+00 f t SUBTOTAL 88000.00 1 13209 \N +531723 2025-11-22 12:43:29.516011+00 2025-11-22 12:43:29.516017+00 f t COSTO_SERVICIO 0.00 2 13209 \N +531724 2025-11-22 12:43:29.517078+00 2025-11-22 12:43:29.517083+00 f t DESCUENTO 0.00 3 13209 \N +531725 2025-11-22 12:43:29.517933+00 2025-11-22 12:43:29.517938+00 f t TOTAL 88000.00 4 13209 \N +531726 2025-11-22 12:43:29.518886+00 2025-11-22 12:43:29.518892+00 f t ADELANTO 13000.00 5 13209 \N +531747 2025-11-22 13:24:18.740349+00 2025-11-22 13:24:18.740357+00 f t SUBTOTAL 0.00 1 13210 \N +531748 2025-11-22 13:24:18.742126+00 2025-11-22 13:24:18.742136+00 f t COSTO_SERVICIO 0.00 2 13210 \N +531749 2025-11-22 13:24:18.743297+00 2025-11-22 13:24:18.743302+00 f t DESCUENTO 0.00 3 13210 \N +531750 2025-11-22 13:24:18.744231+00 2025-11-22 13:24:18.744236+00 f t TOTAL 0.00 4 13210 \N +531751 2025-11-22 13:24:18.745307+00 2025-11-22 13:24:18.745314+00 f t ADELANTO 0.00 5 13210 \N +531782 2025-11-22 13:35:08.157025+00 2025-11-22 13:35:08.157039+00 f t SUBTOTAL 70000.00 1 13211 \N +531783 2025-11-22 13:35:08.159068+00 2025-11-22 13:35:08.159076+00 f t COSTO_SERVICIO 0.00 2 13211 \N +531784 2025-11-22 13:35:08.160715+00 2025-11-22 13:35:08.160727+00 f t DESCUENTO 0.00 3 13211 \N +531785 2025-11-22 13:35:08.162408+00 2025-11-22 13:35:08.162417+00 f t TOTAL 70000.00 4 13211 \N +531786 2025-11-22 13:35:08.163864+00 2025-11-22 13:35:08.163872+00 f t ADELANTO 19000.00 5 13211 \N +543322 2025-11-25 00:40:20.873866+00 2025-11-25 00:40:20.873876+00 f t SUBTOTAL 108000.00 1 13481 \N +536337 2025-11-23 20:13:38.479341+00 2025-11-23 20:13:38.479348+00 f t SUBTOTAL 78000.00 1 13320 \N +536338 2025-11-23 20:13:38.481045+00 2025-11-23 20:13:38.481051+00 f t COSTO_SERVICIO 0.00 2 13320 \N +536339 2025-11-23 20:13:38.482188+00 2025-11-23 20:13:38.482194+00 f t DESCUENTO 0.00 3 13320 \N +536340 2025-11-23 20:13:38.483185+00 2025-11-23 20:13:38.48319+00 f t TOTAL 78000.00 4 13320 \N +536341 2025-11-23 20:13:38.484131+00 2025-11-23 20:13:38.484136+00 f t ADELANTO 13000.00 5 13320 \N +531822 2025-11-22 13:39:38.981305+00 2025-11-22 13:39:38.981317+00 f t SUBTOTAL 55000.00 1 13212 \N +531823 2025-11-22 13:39:38.982946+00 2025-11-22 13:39:38.982954+00 f t COSTO_SERVICIO 0.00 2 13212 \N +531824 2025-11-22 13:39:38.984299+00 2025-11-22 13:39:38.984304+00 f t DESCUENTO 0.00 3 13212 \N +531825 2025-11-22 13:39:38.985477+00 2025-11-22 13:39:38.985486+00 f t TOTAL 55000.00 4 13212 \N +531826 2025-11-22 13:39:38.986837+00 2025-11-22 13:39:38.986845+00 f t ADELANTO 11000.00 5 13212 \N +531842 2025-11-22 13:47:23.643191+00 2025-11-22 13:47:23.643199+00 f t SUBTOTAL 0.00 1 13213 \N +531843 2025-11-22 13:47:23.644996+00 2025-11-22 13:47:23.645001+00 f t COSTO_SERVICIO 0.00 2 13213 \N +531844 2025-11-22 13:47:23.645894+00 2025-11-22 13:47:23.645899+00 f t DESCUENTO 0.00 3 13213 \N +531845 2025-11-22 13:47:23.646706+00 2025-11-22 13:47:23.64671+00 f t TOTAL 0.00 4 13213 \N +531846 2025-11-22 13:47:23.64759+00 2025-11-22 13:47:23.647595+00 f t ADELANTO 0.00 5 13213 \N +531887 2025-11-22 13:55:10.244819+00 2025-11-22 13:55:10.244831+00 f t SUBTOTAL 55000.00 1 13214 \N +531888 2025-11-22 13:55:10.246806+00 2025-11-22 13:55:10.246816+00 f t COSTO_SERVICIO 0.00 2 13214 \N +531889 2025-11-22 13:55:10.24842+00 2025-11-22 13:55:10.248431+00 f t DESCUENTO 0.00 3 13214 \N +531890 2025-11-22 13:55:10.249744+00 2025-11-22 13:55:10.249752+00 f t TOTAL 55000.00 4 13214 \N +531891 2025-11-22 13:55:10.250979+00 2025-11-22 13:55:10.250987+00 f t ADELANTO 11000.00 5 13214 \N +539687 2025-11-24 13:47:36.962456+00 2025-11-24 13:47:36.962463+00 f t SUBTOTAL 70000.00 1 13394 \N +539688 2025-11-24 13:47:36.964171+00 2025-11-24 13:47:36.964176+00 f t COSTO_SERVICIO 0.00 2 13394 \N +539689 2025-11-24 13:47:36.965527+00 2025-11-24 13:47:36.965534+00 f t DESCUENTO 0.00 3 13394 \N +539690 2025-11-24 13:47:36.96685+00 2025-11-24 13:47:36.966857+00 f t TOTAL 70000.00 4 13394 \N +539691 2025-11-24 13:47:36.968199+00 2025-11-24 13:47:36.968207+00 f t ADELANTO 19000.00 5 13394 \N +540672 2025-11-24 15:32:07.772629+00 2025-11-24 15:32:07.772637+00 f t SUBTOTAL 0.00 1 13414 \N +540673 2025-11-24 15:32:07.773967+00 2025-11-24 15:32:07.773974+00 f t COSTO_SERVICIO 0.00 2 13414 \N +540674 2025-11-24 15:32:07.775049+00 2025-11-24 15:32:07.775055+00 f t DESCUENTO 0.00 3 13414 \N +540675 2025-11-24 15:32:07.776005+00 2025-11-24 15:32:07.776011+00 f t TOTAL 0.00 4 13414 \N +540676 2025-11-24 15:32:07.77702+00 2025-11-24 15:32:07.777025+00 f t ADELANTO 0.00 5 13414 \N +541152 2025-11-24 18:02:52.916199+00 2025-11-24 18:02:52.916207+00 f t SUBTOTAL 54000.00 1 13424 \N +541153 2025-11-24 18:02:52.918207+00 2025-11-24 18:02:52.918214+00 f t COSTO_SERVICIO 0.00 2 13424 \N +541154 2025-11-24 18:02:52.919721+00 2025-11-24 18:02:52.919729+00 f t DESCUENTO 0.00 3 13424 \N +541155 2025-11-24 18:02:52.921177+00 2025-11-24 18:02:52.921183+00 f t TOTAL 54000.00 4 13424 \N +541156 2025-11-24 18:02:52.9223+00 2025-11-24 18:02:52.922305+00 f t ADELANTO 13500.00 5 13424 \N +541797 2025-11-24 20:59:37.932062+00 2025-11-24 20:59:37.932073+00 f t SUBTOTAL 0.00 1 13443 \N +541798 2025-11-24 20:59:37.933538+00 2025-11-24 20:59:37.933547+00 f t COSTO_SERVICIO 0.00 2 13443 \N +541799 2025-11-24 20:59:37.934802+00 2025-11-24 20:59:37.93481+00 f t DESCUENTO 0.00 3 13443 \N +541800 2025-11-24 20:59:37.935857+00 2025-11-24 20:59:37.935864+00 f t TOTAL 0.00 4 13443 \N +541801 2025-11-24 20:59:37.936936+00 2025-11-24 20:59:37.936942+00 f t ADELANTO 0.00 5 13443 \N +531987 2025-11-22 14:00:08.586496+00 2025-11-22 14:00:08.58651+00 f t SUBTOTAL 78500.00 1 13215 \N +531988 2025-11-22 14:00:08.589937+00 2025-11-22 14:00:08.589951+00 f t COSTO_SERVICIO 0.00 2 13215 \N +531989 2025-11-22 14:00:08.609108+00 2025-11-22 14:00:08.60912+00 f t DESCUENTO 0.00 3 13215 \N +531990 2025-11-22 14:00:08.618959+00 2025-11-22 14:00:08.618974+00 f t TOTAL 78500.00 4 13215 \N +531991 2025-11-22 14:00:08.626088+00 2025-11-22 14:00:08.626102+00 f t ADELANTO 17500.00 5 13215 \N +543323 2025-11-25 00:40:20.87542+00 2025-11-25 00:40:20.875428+00 f t COSTO_SERVICIO 0.00 2 13481 \N +543324 2025-11-25 00:40:20.876662+00 2025-11-25 00:40:20.876669+00 f t DESCUENTO 9200.00 3 13481 \N +543325 2025-11-25 00:40:20.877562+00 2025-11-25 00:40:20.877566+00 f t TOTAL 98800.00 4 13481 \N +543326 2025-11-25 00:40:20.878453+00 2025-11-25 00:40:20.878458+00 f t ADELANTO 27000.00 5 13481 \N +532077 2025-11-22 14:06:37.006111+00 2025-11-22 14:06:37.006124+00 f t SUBTOTAL 0.00 1 13217 \N +532078 2025-11-22 14:06:37.007939+00 2025-11-22 14:06:37.007948+00 f t COSTO_SERVICIO 0.00 2 13217 \N +532079 2025-11-22 14:06:37.009359+00 2025-11-22 14:06:37.009366+00 f t DESCUENTO 0.00 3 13217 \N +532080 2025-11-22 14:06:37.013564+00 2025-11-22 14:06:37.013573+00 f t TOTAL 0.00 4 13217 \N +532081 2025-11-22 14:06:37.016889+00 2025-11-22 14:06:37.016897+00 f t ADELANTO 0.00 5 13217 \N +536032 2025-11-23 19:39:59.353733+00 2025-11-23 19:39:59.353741+00 f t SUBTOTAL 70000.00 1 13315 \N +536033 2025-11-23 19:39:59.355436+00 2025-11-23 19:39:59.355443+00 f t COSTO_SERVICIO 0.00 2 13315 \N +536034 2025-11-23 19:39:59.356554+00 2025-11-23 19:39:59.35656+00 f t DESCUENTO 0.00 3 13315 \N +536035 2025-11-23 19:39:59.357753+00 2025-11-23 19:39:59.357759+00 f t TOTAL 70000.00 4 13315 \N +536036 2025-11-23 19:39:59.3588+00 2025-11-23 19:39:59.358805+00 f t ADELANTO 19000.00 5 13315 \N +548777 2025-11-25 22:00:03.788712+00 2025-11-25 22:00:03.788725+00 f t SUBTOTAL 78000.00 1 13610 \N +548778 2025-11-25 22:00:03.796123+00 2025-11-25 22:00:03.796136+00 f t COSTO_SERVICIO 0.00 2 13610 \N +548779 2025-11-25 22:00:03.799606+00 2025-11-25 22:00:03.79962+00 f t DESCUENTO 0.00 3 13610 \N +548780 2025-11-25 22:00:03.802788+00 2025-11-25 22:00:03.802802+00 f t TOTAL 78000.00 4 13610 \N +548781 2025-11-25 22:00:03.806791+00 2025-11-25 22:00:03.806805+00 f t ADELANTO 13000.00 5 13610 \N +538032 2025-11-24 06:29:21.487114+00 2025-11-24 06:29:21.487121+00 f t SUBTOTAL 20500.00 1 13360 \N +538033 2025-11-24 06:29:21.488839+00 2025-11-24 06:29:21.488845+00 f t COSTO_SERVICIO 0.00 2 13360 \N +538034 2025-11-24 06:29:21.490385+00 2025-11-24 06:29:21.490394+00 f t DESCUENTO 0.00 3 13360 \N +538035 2025-11-24 06:29:21.49166+00 2025-11-24 06:29:21.491666+00 f t TOTAL 20500.00 4 13360 \N +538036 2025-11-24 06:29:21.492658+00 2025-11-24 06:29:21.492663+00 f t ADELANTO 20500.00 5 13360 \N +539527 2025-11-24 13:33:21.427489+00 2025-11-24 13:33:21.427497+00 f t SUBTOTAL 46000.00 1 13391 \N +539528 2025-11-24 13:33:21.429219+00 2025-11-24 13:33:21.429251+00 f t COSTO_SERVICIO 0.00 2 13391 \N +539529 2025-11-24 13:33:21.430326+00 2025-11-24 13:33:21.430331+00 f t DESCUENTO 0.00 3 13391 \N +539530 2025-11-24 13:33:21.431261+00 2025-11-24 13:33:21.431266+00 f t TOTAL 46000.00 4 13391 \N +539531 2025-11-24 13:33:21.432252+00 2025-11-24 13:33:21.432257+00 f t ADELANTO 11000.00 5 13391 \N +539692 2025-11-24 13:48:13.774412+00 2025-11-24 13:48:13.774419+00 f t SUBTOTAL 55000.00 1 13393 \N +539693 2025-11-24 13:48:13.776404+00 2025-11-24 13:48:13.776411+00 f t COSTO_SERVICIO 0.00 2 13393 \N +539694 2025-11-24 13:48:13.777827+00 2025-11-24 13:48:13.777833+00 f t DESCUENTO 0.00 3 13393 \N +539695 2025-11-24 13:48:13.779064+00 2025-11-24 13:48:13.77907+00 f t TOTAL 55000.00 4 13393 \N +539696 2025-11-24 13:48:13.780131+00 2025-11-24 13:48:13.780137+00 f t ADELANTO 11000.00 5 13393 \N +540017 2025-11-24 14:20:07.12143+00 2025-11-24 14:20:07.121446+00 f t SUBTOTAL 70000.00 1 13399 \N +540018 2025-11-24 14:20:07.1245+00 2025-11-24 14:20:07.124514+00 f t COSTO_SERVICIO 0.00 2 13399 \N +540019 2025-11-24 14:20:07.127195+00 2025-11-24 14:20:07.12721+00 f t DESCUENTO 0.00 3 13399 \N +540020 2025-11-24 14:20:07.129504+00 2025-11-24 14:20:07.129518+00 f t TOTAL 70000.00 4 13399 \N +540021 2025-11-24 14:20:07.131803+00 2025-11-24 14:20:07.131816+00 f t ADELANTO 19000.00 5 13399 \N +532192 2025-11-22 14:07:53.242838+00 2025-11-22 14:07:53.242846+00 f t SUBTOTAL 46000.00 1 13216 \N +532193 2025-11-22 14:07:53.244356+00 2025-11-22 14:07:53.244362+00 f t COSTO_SERVICIO 0.00 2 13216 \N +532194 2025-11-22 14:07:53.245549+00 2025-11-22 14:07:53.245555+00 f t DESCUENTO 0.00 3 13216 \N +532195 2025-11-22 14:07:53.246633+00 2025-11-22 14:07:53.246639+00 f t TOTAL 46000.00 4 13216 \N +532196 2025-11-22 14:07:53.247747+00 2025-11-22 14:07:53.247752+00 f t ADELANTO 11000.00 5 13216 \N +532242 2025-11-22 14:13:49.788663+00 2025-11-22 14:13:49.788669+00 f t SUBTOTAL 108000.00 1 13218 \N +532243 2025-11-22 14:13:49.7903+00 2025-11-22 14:13:49.790306+00 f t COSTO_SERVICIO 0.00 2 13218 \N +532244 2025-11-22 14:13:49.791459+00 2025-11-22 14:13:49.791464+00 f t DESCUENTO 9200.00 3 13218 \N +532245 2025-11-22 14:13:49.792427+00 2025-11-22 14:13:49.792432+00 f t TOTAL 98800.00 4 13218 \N +532246 2025-11-22 14:13:49.793365+00 2025-11-22 14:13:49.79337+00 f t ADELANTO 27000.00 5 13218 \N +532272 2025-11-22 14:17:27.544502+00 2025-11-22 14:17:27.544511+00 f t SUBTOTAL 54000.00 1 13219 \N +532273 2025-11-22 14:17:27.546434+00 2025-11-22 14:17:27.546442+00 f t COSTO_SERVICIO 0.00 2 13219 \N +532274 2025-11-22 14:17:27.54798+00 2025-11-22 14:17:27.547986+00 f t DESCUENTO 0.00 3 13219 \N +532275 2025-11-22 14:17:27.549392+00 2025-11-22 14:17:27.549402+00 f t TOTAL 54000.00 4 13219 \N +532276 2025-11-22 14:17:27.550774+00 2025-11-22 14:17:27.550783+00 f t ADELANTO 13500.00 5 13219 \N +542097 2025-11-24 22:13:37.408482+00 2025-11-24 22:13:37.408491+00 f t SUBTOTAL 0.00 1 13450 \N +542098 2025-11-24 22:13:37.410472+00 2025-11-24 22:13:37.410478+00 f t COSTO_SERVICIO 0.00 2 13450 \N +542099 2025-11-24 22:13:37.411593+00 2025-11-24 22:13:37.411599+00 f t DESCUENTO 0.00 3 13450 \N +542100 2025-11-24 22:13:37.412562+00 2025-11-24 22:13:37.412569+00 f t TOTAL 0.00 4 13450 \N +542101 2025-11-24 22:13:37.413497+00 2025-11-24 22:13:37.413503+00 f t ADELANTO 0.00 5 13450 \N +532337 2025-11-22 14:54:28.620747+00 2025-11-22 14:54:28.62076+00 f t SUBTOTAL 0.00 1 13221 \N +532338 2025-11-22 14:54:28.622732+00 2025-11-22 14:54:28.622742+00 f t COSTO_SERVICIO 0.00 2 13221 \N +532339 2025-11-22 14:54:28.624009+00 2025-11-22 14:54:28.624017+00 f t DESCUENTO 0.00 3 13221 \N +532340 2025-11-22 14:54:28.625114+00 2025-11-22 14:54:28.625122+00 f t TOTAL 0.00 4 13221 \N +532341 2025-11-22 14:54:28.626233+00 2025-11-22 14:54:28.62624+00 f t ADELANTO 0.00 5 13221 \N +532347 2025-11-22 15:40:55.380261+00 2025-11-22 15:40:55.380271+00 f t SUBTOTAL 0.00 1 13222 \N +532348 2025-11-22 15:40:55.381674+00 2025-11-22 15:40:55.381683+00 f t COSTO_SERVICIO 0.00 2 13222 \N +532349 2025-11-22 15:40:55.382777+00 2025-11-22 15:40:55.382783+00 f t DESCUENTO 0.00 3 13222 \N +532350 2025-11-22 15:40:55.384001+00 2025-11-22 15:40:55.384009+00 f t TOTAL 0.00 4 13222 \N +532351 2025-11-22 15:40:55.385293+00 2025-11-22 15:40:55.385301+00 f t ADELANTO 0.00 5 13222 \N +532387 2025-11-22 16:15:09.030073+00 2025-11-22 16:15:09.030087+00 f t SUBTOTAL 70000.00 1 13224 \N +532388 2025-11-22 16:15:09.033467+00 2025-11-22 16:15:09.033481+00 f t COSTO_SERVICIO 0.00 2 13224 \N +532389 2025-11-22 16:15:09.037544+00 2025-11-22 16:15:09.037558+00 f t DESCUENTO 0.00 3 13224 \N +532390 2025-11-22 16:15:09.041227+00 2025-11-22 16:15:09.041242+00 f t TOTAL 70000.00 4 13224 \N +532391 2025-11-22 16:15:09.046499+00 2025-11-22 16:15:09.04651+00 f t ADELANTO 19000.00 5 13224 \N +532417 2025-11-22 16:17:28.02275+00 2025-11-22 16:17:28.022757+00 f t SUBTOTAL 70000.00 1 13225 \N +532418 2025-11-22 16:17:28.024344+00 2025-11-22 16:17:28.02435+00 f t COSTO_SERVICIO 0.00 2 13225 \N +532419 2025-11-22 16:17:28.025661+00 2025-11-22 16:17:28.025667+00 f t DESCUENTO 0.00 3 13225 \N +532420 2025-11-22 16:17:28.026616+00 2025-11-22 16:17:28.026621+00 f t TOTAL 70000.00 4 13225 \N +532421 2025-11-22 16:17:28.027505+00 2025-11-22 16:17:28.02751+00 f t ADELANTO 19000.00 5 13225 \N +532427 2025-11-22 16:22:37.124157+00 2025-11-22 16:22:37.124168+00 f t SUBTOTAL 55000.00 1 13220 \N +532428 2025-11-22 16:22:37.125839+00 2025-11-22 16:22:37.125848+00 f t COSTO_SERVICIO 0.00 2 13220 \N +532429 2025-11-22 16:22:37.127091+00 2025-11-22 16:22:37.1271+00 f t DESCUENTO 0.00 3 13220 \N +532430 2025-11-22 16:22:37.128458+00 2025-11-22 16:22:37.128465+00 f t TOTAL 55000.00 4 13220 \N +532431 2025-11-22 16:22:37.129684+00 2025-11-22 16:22:37.129691+00 f t ADELANTO 11000.00 5 13220 \N +532437 2025-11-22 16:28:36.823757+00 2025-11-22 16:28:36.823766+00 f t SUBTOTAL 0.00 1 13226 \N +532438 2025-11-22 16:28:36.825204+00 2025-11-22 16:28:36.825211+00 f t COSTO_SERVICIO 0.00 2 13226 \N +532439 2025-11-22 16:28:36.82628+00 2025-11-22 16:28:36.826285+00 f t DESCUENTO 0.00 3 13226 \N +532440 2025-11-22 16:28:36.827197+00 2025-11-22 16:28:36.827201+00 f t TOTAL 0.00 4 13226 \N +532441 2025-11-22 16:28:36.82808+00 2025-11-22 16:28:36.828085+00 f t ADELANTO 0.00 5 13226 \N +532447 2025-11-22 16:36:42.524156+00 2025-11-22 16:36:42.524168+00 f t SUBTOTAL 0.00 1 13227 \N +532448 2025-11-22 16:36:42.525737+00 2025-11-22 16:36:42.525747+00 f t COSTO_SERVICIO 0.00 2 13227 \N +532449 2025-11-22 16:36:42.52693+00 2025-11-22 16:36:42.526937+00 f t DESCUENTO 0.00 3 13227 \N +532450 2025-11-22 16:36:42.528157+00 2025-11-22 16:36:42.528163+00 f t TOTAL 0.00 4 13227 \N +532451 2025-11-22 16:36:42.529241+00 2025-11-22 16:36:42.529246+00 f t ADELANTO 0.00 5 13227 \N +532457 2025-11-22 16:37:12.053098+00 2025-11-22 16:37:12.053108+00 f t SUBTOTAL 0.00 1 13228 \N +532458 2025-11-22 16:37:12.054569+00 2025-11-22 16:37:12.054577+00 f t COSTO_SERVICIO 0.00 2 13228 \N +532459 2025-11-22 16:37:12.05582+00 2025-11-22 16:37:12.055826+00 f t DESCUENTO 0.00 3 13228 \N +532460 2025-11-22 16:37:12.056998+00 2025-11-22 16:37:12.057007+00 f t TOTAL 0.00 4 13228 \N +532461 2025-11-22 16:37:12.057976+00 2025-11-22 16:37:12.057985+00 f t ADELANTO 0.00 5 13228 \N +538647 2025-11-24 11:00:03.848278+00 2025-11-24 11:00:03.848293+00 f t SUBTOTAL 0.00 1 13372 \N +538648 2025-11-24 11:00:03.859239+00 2025-11-24 11:00:03.859254+00 f t COSTO_SERVICIO 0.00 2 13372 \N +538649 2025-11-24 11:00:03.862162+00 2025-11-24 11:00:03.862177+00 f t DESCUENTO 0.00 3 13372 \N +538650 2025-11-24 11:00:03.864726+00 2025-11-24 11:00:03.86474+00 f t TOTAL 0.00 4 13372 \N +538651 2025-11-24 11:00:03.86727+00 2025-11-24 11:00:03.867283+00 f t ADELANTO 0.00 5 13372 \N +540522 2025-11-24 15:00:36.652305+00 2025-11-24 15:00:36.652315+00 f t SUBTOTAL 54000.00 1 13410 \N +540523 2025-11-24 15:00:36.654568+00 2025-11-24 15:00:36.654577+00 f t COSTO_SERVICIO 0.00 2 13410 \N +540524 2025-11-24 15:00:36.656107+00 2025-11-24 15:00:36.656114+00 f t DESCUENTO 0.00 3 13410 \N +540525 2025-11-24 15:00:36.657603+00 2025-11-24 15:00:36.657611+00 f t TOTAL 54000.00 4 13410 \N +540526 2025-11-24 15:00:36.658929+00 2025-11-24 15:00:36.658934+00 f t ADELANTO 13500.00 5 13410 \N +532557 2025-11-22 16:40:25.127113+00 2025-11-22 16:40:25.12712+00 f t SUBTOTAL 94000.00 1 13229 \N +532558 2025-11-22 16:40:25.129009+00 2025-11-22 16:40:25.129018+00 f t COSTO_SERVICIO 0.00 2 13229 \N +532559 2025-11-22 16:40:25.130397+00 2025-11-22 16:40:25.130404+00 f t DESCUENTO 0.00 3 13229 \N +532560 2025-11-22 16:40:25.131702+00 2025-11-22 16:40:25.131708+00 f t TOTAL 94000.00 4 13229 \N +532561 2025-11-22 16:40:25.132964+00 2025-11-22 16:40:25.13297+00 f t ADELANTO 24000.00 5 13229 \N +532562 2025-11-22 16:42:42.781361+00 2025-11-22 16:42:42.781371+00 f t SUBTOTAL 70000.00 1 13223 \N +532563 2025-11-22 16:42:42.783229+00 2025-11-22 16:42:42.783235+00 f t COSTO_SERVICIO 0.00 2 13223 \N +532564 2025-11-22 16:42:42.784458+00 2025-11-22 16:42:42.784464+00 f t DESCUENTO 0.00 3 13223 \N +532565 2025-11-22 16:42:42.786242+00 2025-11-22 16:42:42.786248+00 f t TOTAL 70000.00 4 13223 \N +532566 2025-11-22 16:42:42.787274+00 2025-11-22 16:42:42.78728+00 f t ADELANTO 19000.00 5 13223 \N +532597 2025-11-22 16:56:47.385316+00 2025-11-22 16:56:47.385324+00 f t SUBTOTAL 62800.00 1 13230 \N +532598 2025-11-22 16:56:47.387046+00 2025-11-22 16:56:47.387053+00 f t COSTO_SERVICIO 0.00 2 13230 \N +532599 2025-11-22 16:56:47.388408+00 2025-11-22 16:56:47.388414+00 f t DESCUENTO 0.00 3 13230 \N +532600 2025-11-22 16:56:47.389659+00 2025-11-22 16:56:47.389665+00 f t TOTAL 62800.00 4 13230 \N +532601 2025-11-22 16:56:47.390713+00 2025-11-22 16:56:47.390719+00 f t ADELANTO 15800.00 5 13230 \N +542107 2025-11-24 22:16:15.306069+00 2025-11-24 22:16:15.306079+00 f t SUBTOTAL 0.00 1 13451 \N +542108 2025-11-24 22:16:15.30767+00 2025-11-24 22:16:15.30768+00 f t COSTO_SERVICIO 0.00 2 13451 \N +542109 2025-11-24 22:16:15.308922+00 2025-11-24 22:16:15.30893+00 f t DESCUENTO 0.00 3 13451 \N +542110 2025-11-24 22:16:15.310091+00 2025-11-24 22:16:15.310097+00 f t TOTAL 0.00 4 13451 \N +542111 2025-11-24 22:16:15.311318+00 2025-11-24 22:16:15.311323+00 f t ADELANTO 0.00 5 13451 \N +542272 2025-11-24 22:37:16.892779+00 2025-11-24 22:37:16.892787+00 f t SUBTOTAL 34000.00 1 13458 \N +542273 2025-11-24 22:37:16.894741+00 2025-11-24 22:37:16.89475+00 f t COSTO_SERVICIO 0.00 2 13458 \N +542274 2025-11-24 22:37:16.896255+00 2025-11-24 22:37:16.896267+00 f t DESCUENTO 0.00 3 13458 \N +542275 2025-11-24 22:37:16.897793+00 2025-11-24 22:37:16.897799+00 f t TOTAL 34000.00 4 13458 \N +542276 2025-11-24 22:37:16.898934+00 2025-11-24 22:37:16.89894+00 f t ADELANTO 34000.00 5 13458 \N +542652 2025-11-24 23:12:33.216946+00 2025-11-24 23:12:33.216956+00 f t SUBTOTAL 0.00 1 13462 \N +542653 2025-11-24 23:12:33.219269+00 2025-11-24 23:12:33.219278+00 f t COSTO_SERVICIO 0.00 2 13462 \N +532642 2025-11-22 17:05:27.761535+00 2025-11-22 17:05:27.761546+00 f t SUBTOTAL 46000.00 1 13231 \N +532643 2025-11-22 17:05:27.763684+00 2025-11-22 17:05:27.763694+00 f t COSTO_SERVICIO 0.00 2 13231 \N +532644 2025-11-22 17:05:27.765179+00 2025-11-22 17:05:27.765187+00 f t DESCUENTO 0.00 3 13231 \N +532645 2025-11-22 17:05:27.766563+00 2025-11-22 17:05:27.76657+00 f t TOTAL 46000.00 4 13231 \N +532646 2025-11-22 17:05:27.767865+00 2025-11-22 17:05:27.767872+00 f t ADELANTO 11000.00 5 13231 \N +542654 2025-11-24 23:12:33.220749+00 2025-11-24 23:12:33.220757+00 f t DESCUENTO 0.00 3 13462 \N +542655 2025-11-24 23:12:33.221874+00 2025-11-24 23:12:33.22188+00 f t TOTAL 0.00 4 13462 \N +542656 2025-11-24 23:12:33.222875+00 2025-11-24 23:12:33.222881+00 f t ADELANTO 0.00 5 13462 \N +543027 2025-11-25 00:21:14.133183+00 2025-11-25 00:21:14.133191+00 f t SUBTOTAL 0.00 1 13474 \N +543028 2025-11-25 00:21:14.135568+00 2025-11-25 00:21:14.135578+00 f t COSTO_SERVICIO 0.00 2 13474 \N +543029 2025-11-25 00:21:14.136972+00 2025-11-25 00:21:14.136978+00 f t DESCUENTO 0.00 3 13474 \N +543030 2025-11-25 00:21:14.138164+00 2025-11-25 00:21:14.13817+00 f t TOTAL 0.00 4 13474 \N +543031 2025-11-25 00:21:14.139388+00 2025-11-25 00:21:14.139395+00 f t ADELANTO 0.00 5 13474 \N +536352 2025-11-23 20:14:01.227008+00 2025-11-23 20:14:01.227019+00 f t SUBTOTAL 0.00 1 13321 \N +536353 2025-11-23 20:14:01.229735+00 2025-11-23 20:14:01.229743+00 f t COSTO_SERVICIO 0.00 2 13321 \N +536354 2025-11-23 20:14:01.231267+00 2025-11-23 20:14:01.231275+00 f t DESCUENTO 0.00 3 13321 \N +536355 2025-11-23 20:14:01.232738+00 2025-11-23 20:14:01.232746+00 f t TOTAL 0.00 4 13321 \N +536356 2025-11-23 20:14:01.234248+00 2025-11-23 20:14:01.234254+00 f t ADELANTO 0.00 5 13321 \N +536632 2025-11-23 21:21:55.866874+00 2025-11-23 21:21:55.86688+00 f t SUBTOTAL 54000.00 1 13328 \N +536633 2025-11-23 21:21:55.868547+00 2025-11-23 21:21:55.868553+00 f t COSTO_SERVICIO 0.00 2 13328 \N +536634 2025-11-23 21:21:55.869618+00 2025-11-23 21:21:55.869627+00 f t DESCUENTO 0.00 3 13328 \N +536635 2025-11-23 21:21:55.870812+00 2025-11-23 21:21:55.870817+00 f t TOTAL 54000.00 4 13328 \N +536636 2025-11-23 21:21:55.871737+00 2025-11-23 21:21:55.871742+00 f t ADELANTO 13500.00 5 13328 \N +537117 2025-11-24 00:08:29.088727+00 2025-11-24 00:08:29.088734+00 f t SUBTOTAL 150000.00 1 13336 \N +537118 2025-11-24 00:08:29.094329+00 2025-11-24 00:08:29.094346+00 f t COSTO_SERVICIO 0.00 2 13336 \N +537119 2025-11-24 00:08:29.09624+00 2025-11-24 00:08:29.096248+00 f t DESCUENTO 0.00 3 13336 \N +537120 2025-11-24 00:08:29.097604+00 2025-11-24 00:08:29.097611+00 f t TOTAL 150000.00 4 13336 \N +537121 2025-11-24 00:08:29.098921+00 2025-11-24 00:08:29.098927+00 f t ADELANTO 31500.00 5 13336 \N +537602 2025-11-24 03:43:29.118287+00 2025-11-24 03:43:29.118297+00 f t SUBTOTAL 30000.00 1 13349 \N +532697 2025-11-22 17:09:34.075051+00 2025-11-22 17:09:34.075057+00 f t SUBTOTAL 78000.00 1 13232 \N +532698 2025-11-22 17:09:34.076578+00 2025-11-22 17:09:34.076583+00 f t COSTO_SERVICIO 0.00 2 13232 \N +532699 2025-11-22 17:09:34.077665+00 2025-11-22 17:09:34.077671+00 f t DESCUENTO 0.00 3 13232 \N +532700 2025-11-22 17:09:34.078888+00 2025-11-22 17:09:34.078893+00 f t TOTAL 78000.00 4 13232 \N +532701 2025-11-22 17:09:34.079933+00 2025-11-22 17:09:34.079938+00 f t ADELANTO 21500.00 5 13232 \N +537603 2025-11-24 03:43:29.120248+00 2025-11-24 03:43:29.120257+00 f t COSTO_SERVICIO 0.00 2 13349 \N +537604 2025-11-24 03:43:29.121644+00 2025-11-24 03:43:29.12165+00 f t DESCUENTO 0.00 3 13349 \N +537605 2025-11-24 03:43:29.122968+00 2025-11-24 03:43:29.122977+00 f t TOTAL 30000.00 4 13349 \N +537606 2025-11-24 03:43:29.124252+00 2025-11-24 03:43:29.124261+00 f t ADELANTO 30000.00 5 13349 \N +532737 2025-11-22 17:21:08.585923+00 2025-11-22 17:21:08.58593+00 f t SUBTOTAL 54000.00 1 13233 \N +532738 2025-11-22 17:21:08.587599+00 2025-11-22 17:21:08.587604+00 f t COSTO_SERVICIO 0.00 2 13233 \N +532739 2025-11-22 17:21:08.588793+00 2025-11-22 17:21:08.588799+00 f t DESCUENTO 0.00 3 13233 \N +532740 2025-11-22 17:21:08.589958+00 2025-11-22 17:21:08.589964+00 f t TOTAL 54000.00 4 13233 \N +532741 2025-11-22 17:21:08.590964+00 2025-11-22 17:21:08.590969+00 f t ADELANTO 13500.00 5 13233 \N +532754 2025-11-22 17:37:48.170491+00 2025-11-22 17:37:48.170497+00 f t DESCUENTO 0.00 3 13234 \N +532755 2025-11-22 17:37:48.171521+00 2025-11-22 17:37:48.171526+00 f t TOTAL 0.00 4 13234 \N +532756 2025-11-22 17:37:48.17247+00 2025-11-22 17:37:48.172475+00 f t ADELANTO 0.00 5 13234 \N +532757 2025-11-22 17:37:48.196717+00 2025-11-22 17:37:48.196726+00 f t SUBTOTAL 0.00 1 13234 \N +532758 2025-11-22 17:37:48.198503+00 2025-11-22 17:37:48.19851+00 f t COSTO_SERVICIO 0.00 2 13234 \N +532759 2025-11-22 17:37:48.199519+00 2025-11-22 17:37:48.199524+00 f t DESCUENTO 0.00 3 13234 \N +532760 2025-11-22 17:37:48.200438+00 2025-11-22 17:37:48.200444+00 f t TOTAL 0.00 4 13234 \N +532761 2025-11-22 17:37:48.201606+00 2025-11-22 17:37:48.201611+00 f t ADELANTO 0.00 5 13234 \N +539362 2025-11-24 12:40:23.686768+00 2025-11-24 12:40:23.686775+00 f t SUBTOTAL 55000.00 1 13388 \N +539363 2025-11-24 12:40:23.688379+00 2025-11-24 12:40:23.688384+00 f t COSTO_SERVICIO 0.00 2 13388 \N +539364 2025-11-24 12:40:23.689366+00 2025-11-24 12:40:23.689371+00 f t DESCUENTO 0.00 3 13388 \N +539365 2025-11-24 12:40:23.690291+00 2025-11-24 12:40:23.690296+00 f t TOTAL 55000.00 4 13388 \N +539366 2025-11-24 12:40:23.691283+00 2025-11-24 12:40:23.691291+00 f t ADELANTO 11000.00 5 13388 \N +532787 2025-11-22 17:46:41.315769+00 2025-11-22 17:46:41.315776+00 f t SUBTOTAL 55000.00 1 13235 \N +532788 2025-11-22 17:46:41.317412+00 2025-11-22 17:46:41.317419+00 f t COSTO_SERVICIO 0.00 2 13235 \N +532789 2025-11-22 17:46:41.318472+00 2025-11-22 17:46:41.318477+00 f t DESCUENTO 0.00 3 13235 \N +532790 2025-11-22 17:46:41.319505+00 2025-11-22 17:46:41.31951+00 f t TOTAL 55000.00 4 13235 \N +532791 2025-11-22 17:46:41.320647+00 2025-11-22 17:46:41.320652+00 f t ADELANTO 11000.00 5 13235 \N +540357 2025-11-24 14:31:33.428953+00 2025-11-24 14:31:33.428961+00 f t SUBTOTAL 70000.00 1 13405 \N +540358 2025-11-24 14:31:33.431106+00 2025-11-24 14:31:33.431112+00 f t COSTO_SERVICIO 0.00 2 13405 \N +540359 2025-11-24 14:31:33.432269+00 2025-11-24 14:31:33.432275+00 f t DESCUENTO 0.00 3 13405 \N +540360 2025-11-24 14:31:33.433313+00 2025-11-24 14:31:33.433319+00 f t TOTAL 70000.00 4 13405 \N +540361 2025-11-24 14:31:33.43435+00 2025-11-24 14:31:33.434355+00 f t ADELANTO 19000.00 5 13405 \N +540852 2025-11-24 16:35:01.395452+00 2025-11-24 16:35:01.395463+00 f t SUBTOTAL 54000.00 1 13419 \N +540853 2025-11-24 16:35:01.398456+00 2025-11-24 16:35:01.398467+00 f t COSTO_SERVICIO 0.00 2 13419 \N +540854 2025-11-24 16:35:01.400832+00 2025-11-24 16:35:01.400845+00 f t DESCUENTO 0.00 3 13419 \N +540855 2025-11-24 16:35:01.40337+00 2025-11-24 16:35:01.403383+00 f t TOTAL 54000.00 4 13419 \N +540856 2025-11-24 16:35:01.405855+00 2025-11-24 16:35:01.405868+00 f t ADELANTO 13500.00 5 13419 \N +532842 2025-11-22 18:15:33.79427+00 2025-11-22 18:15:33.794277+00 f t SUBTOTAL 70000.00 1 13236 \N +532843 2025-11-22 18:15:33.795706+00 2025-11-22 18:15:33.795711+00 f t COSTO_SERVICIO 0.00 2 13236 \N +532844 2025-11-22 18:15:33.796733+00 2025-11-22 18:15:33.796739+00 f t DESCUENTO 0.00 3 13236 \N +532845 2025-11-22 18:15:33.797671+00 2025-11-22 18:15:33.797677+00 f t TOTAL 70000.00 4 13236 \N +532846 2025-11-22 18:15:33.798606+00 2025-11-22 18:15:33.798612+00 f t ADELANTO 19000.00 5 13236 \N +542402 2025-11-24 22:41:57.735455+00 2025-11-24 22:41:57.735463+00 f t SUBTOTAL 316700.00 1 13459 \N +542403 2025-11-24 22:41:57.752555+00 2025-11-24 22:41:57.752569+00 f t COSTO_SERVICIO 0.00 2 13459 \N +542404 2025-11-24 22:41:57.754592+00 2025-11-24 22:41:57.754601+00 f t DESCUENTO 0.00 3 13459 \N +542405 2025-11-24 22:41:57.755985+00 2025-11-24 22:41:57.755994+00 f t TOTAL 316700.00 4 13459 \N +542406 2025-11-24 22:41:57.757401+00 2025-11-24 22:41:57.757409+00 f t ADELANTO 80200.00 5 13459 \N +532927 2025-11-22 18:31:21.454769+00 2025-11-22 18:31:21.454781+00 f t SUBTOTAL 55000.00 1 13237 \N +532928 2025-11-22 18:31:21.45656+00 2025-11-22 18:31:21.456568+00 f t COSTO_SERVICIO 0.00 2 13237 \N +532929 2025-11-22 18:31:21.457923+00 2025-11-22 18:31:21.457931+00 f t DESCUENTO 0.00 3 13237 \N +532930 2025-11-22 18:31:21.459021+00 2025-11-22 18:31:21.459026+00 f t TOTAL 55000.00 4 13237 \N +532931 2025-11-22 18:31:21.460236+00 2025-11-22 18:31:21.460243+00 f t ADELANTO 11000.00 5 13237 \N +536642 2025-11-23 21:23:30.992224+00 2025-11-23 21:23:30.992233+00 f t SUBTOTAL 0.00 1 13329 \N +536643 2025-11-23 21:23:30.993626+00 2025-11-23 21:23:30.993636+00 f t COSTO_SERVICIO 0.00 2 13329 \N +536644 2025-11-23 21:23:30.995113+00 2025-11-23 21:23:30.995121+00 f t DESCUENTO 0.00 3 13329 \N +536645 2025-11-23 21:23:30.996252+00 2025-11-23 21:23:30.996257+00 f t TOTAL 0.00 4 13329 \N +536646 2025-11-23 21:23:30.997219+00 2025-11-23 21:23:30.997224+00 f t ADELANTO 0.00 5 13329 \N +532997 2025-11-22 18:34:18.922279+00 2025-11-22 18:34:18.922287+00 f t SUBTOTAL 0.00 1 13238 \N +532998 2025-11-22 18:34:18.923968+00 2025-11-22 18:34:18.923974+00 f t COSTO_SERVICIO 0.00 2 13238 \N +532999 2025-11-22 18:34:18.925265+00 2025-11-22 18:34:18.92527+00 f t DESCUENTO 0.00 3 13238 \N +533000 2025-11-22 18:34:18.926328+00 2025-11-22 18:34:18.926333+00 f t TOTAL 0.00 4 13238 \N +533001 2025-11-22 18:34:18.927417+00 2025-11-22 18:34:18.927423+00 f t ADELANTO 0.00 5 13238 \N +537612 2025-11-24 03:45:15.325872+00 2025-11-24 03:45:15.325884+00 f t SUBTOTAL 0.00 1 13350 \N +537613 2025-11-24 03:45:15.327338+00 2025-11-24 03:45:15.327343+00 f t COSTO_SERVICIO 0.00 2 13350 \N +537614 2025-11-24 03:45:15.32849+00 2025-11-24 03:45:15.328495+00 f t DESCUENTO 0.00 3 13350 \N +537615 2025-11-24 03:45:15.329549+00 2025-11-24 03:45:15.329554+00 f t TOTAL 0.00 4 13350 \N +537616 2025-11-24 03:45:15.330568+00 2025-11-24 03:45:15.330573+00 f t ADELANTO 0.00 5 13350 \N +533042 2025-11-22 18:37:40.608685+00 2025-11-22 18:37:40.608695+00 f t SUBTOTAL 46000.00 1 13239 \N +533043 2025-11-22 18:37:40.610393+00 2025-11-22 18:37:40.6104+00 f t COSTO_SERVICIO 0.00 2 13239 \N +533044 2025-11-22 18:37:40.611655+00 2025-11-22 18:37:40.611661+00 f t DESCUENTO 0.00 3 13239 \N +533045 2025-11-22 18:37:40.612938+00 2025-11-22 18:37:40.612948+00 f t TOTAL 46000.00 4 13239 \N +533046 2025-11-22 18:37:40.614246+00 2025-11-22 18:37:40.614252+00 f t ADELANTO 11000.00 5 13239 \N +541012 2025-11-24 17:33:06.832179+00 2025-11-24 17:33:06.83219+00 f t SUBTOTAL 94000.00 1 13422 \N +541013 2025-11-24 17:33:06.834497+00 2025-11-24 17:33:06.834508+00 f t COSTO_SERVICIO 0.00 2 13422 \N +541014 2025-11-24 17:33:06.836584+00 2025-11-24 17:33:06.836593+00 f t DESCUENTO 0.00 3 13422 \N +541015 2025-11-24 17:33:06.838396+00 2025-11-24 17:33:06.838406+00 f t TOTAL 94000.00 4 13422 \N +541016 2025-11-24 17:33:06.84001+00 2025-11-24 17:33:06.840019+00 f t ADELANTO 27000.00 5 13422 \N +533142 2025-11-22 19:03:11.939641+00 2025-11-22 19:03:11.939651+00 f t SUBTOTAL 0.00 1 13240 \N +533143 2025-11-22 19:03:11.941599+00 2025-11-22 19:03:11.941607+00 f t COSTO_SERVICIO 0.00 2 13240 \N +533144 2025-11-22 19:03:11.942911+00 2025-11-22 19:03:11.942916+00 f t DESCUENTO 0.00 3 13240 \N +533145 2025-11-22 19:03:11.944356+00 2025-11-22 19:03:11.944364+00 f t TOTAL 0.00 4 13240 \N +533146 2025-11-22 19:03:11.945458+00 2025-11-22 19:03:11.945463+00 f t ADELANTO 0.00 5 13240 \N +533237 2025-11-22 19:18:43.623669+00 2025-11-22 19:18:43.623677+00 f t SUBTOTAL 0.00 1 13241 \N +533238 2025-11-22 19:18:43.625379+00 2025-11-22 19:18:43.625385+00 f t COSTO_SERVICIO 0.00 2 13241 \N +533239 2025-11-22 19:18:43.626529+00 2025-11-22 19:18:43.626535+00 f t DESCUENTO 0.00 3 13241 \N +533240 2025-11-22 19:18:43.627617+00 2025-11-22 19:18:43.627622+00 f t TOTAL 0.00 4 13241 \N +533241 2025-11-22 19:18:43.628708+00 2025-11-22 19:18:43.628714+00 f t ADELANTO 0.00 5 13241 \N +543417 2025-11-25 00:48:07.23768+00 2025-11-25 00:48:07.23769+00 f t SUBTOTAL 108000.00 1 13482 \N +543418 2025-11-25 00:48:07.239958+00 2025-11-25 00:48:07.23997+00 f t COSTO_SERVICIO 0.00 2 13482 \N +543419 2025-11-25 00:48:07.241793+00 2025-11-25 00:48:07.241802+00 f t DESCUENTO 9200.00 3 13482 \N +536367 2025-11-23 20:28:47.598089+00 2025-11-23 20:28:47.598097+00 f t SUBTOTAL 55000.00 1 13322 \N +536368 2025-11-23 20:28:47.59973+00 2025-11-23 20:28:47.599737+00 f t COSTO_SERVICIO 0.00 2 13322 \N +536369 2025-11-23 20:28:47.600857+00 2025-11-23 20:28:47.600862+00 f t DESCUENTO 0.00 3 13322 \N +536370 2025-11-23 20:28:47.602065+00 2025-11-23 20:28:47.602071+00 f t TOTAL 55000.00 4 13322 \N +536371 2025-11-23 20:28:47.603212+00 2025-11-23 20:28:47.603217+00 f t ADELANTO 11000.00 5 13322 \N +549097 2025-11-25 22:48:04.008072+00 2025-11-25 22:48:04.008081+00 f t SUBTOTAL 55000.00 1 13616 \N +549098 2025-11-25 22:48:04.009954+00 2025-11-25 22:48:04.009961+00 f t COSTO_SERVICIO 0.00 2 13616 \N +549099 2025-11-25 22:48:04.011298+00 2025-11-25 22:48:04.011307+00 f t DESCUENTO 0.00 3 13616 \N +549100 2025-11-25 22:48:04.012503+00 2025-11-25 22:48:04.012509+00 f t TOTAL 55000.00 4 13616 \N +549101 2025-11-25 22:48:04.01373+00 2025-11-25 22:48:04.013736+00 f t ADELANTO 11000.00 5 13616 \N +536902 2025-11-23 23:18:51.756998+00 2025-11-23 23:18:51.757005+00 f t SUBTOTAL 78000.00 1 13334 \N +536903 2025-11-23 23:18:51.75903+00 2025-11-23 23:18:51.759037+00 f t COSTO_SERVICIO 0.00 2 13334 \N +536904 2025-11-23 23:18:51.760375+00 2025-11-23 23:18:51.76038+00 f t DESCUENTO 0.00 3 13334 \N +536905 2025-11-23 23:18:51.761691+00 2025-11-23 23:18:51.761696+00 f t TOTAL 78000.00 4 13334 \N +536906 2025-11-23 23:18:51.762992+00 2025-11-23 23:18:51.762997+00 f t ADELANTO 21500.00 5 13334 \N +533277 2025-11-22 19:23:46.838194+00 2025-11-22 19:23:46.838204+00 f t SUBTOTAL 70000.00 1 13242 \N +533278 2025-11-22 19:23:46.840275+00 2025-11-22 19:23:46.840285+00 f t COSTO_SERVICIO 0.00 2 13242 \N +533279 2025-11-22 19:23:46.841808+00 2025-11-22 19:23:46.841817+00 f t DESCUENTO 0.00 3 13242 \N +533280 2025-11-22 19:23:46.843397+00 2025-11-22 19:23:46.843407+00 f t TOTAL 70000.00 4 13242 \N +533281 2025-11-22 19:23:46.846067+00 2025-11-22 19:23:46.846076+00 f t ADELANTO 19000.00 5 13242 \N +533302 2025-11-22 19:44:17.905618+00 2025-11-22 19:44:17.905627+00 f t SUBTOTAL 0.00 1 13243 \N +533303 2025-11-22 19:44:17.907495+00 2025-11-22 19:44:17.907501+00 f t COSTO_SERVICIO 0.00 2 13243 \N +533304 2025-11-22 19:44:17.908559+00 2025-11-22 19:44:17.908564+00 f t DESCUENTO 0.00 3 13243 \N +533305 2025-11-22 19:44:17.909759+00 2025-11-22 19:44:17.909764+00 f t TOTAL 0.00 4 13243 \N +533306 2025-11-22 19:44:17.91067+00 2025-11-22 19:44:17.910675+00 f t ADELANTO 0.00 5 13243 \N +538667 2025-11-24 11:02:40.915829+00 2025-11-24 11:02:40.915838+00 f t SUBTOTAL 0.00 1 13373 \N +538668 2025-11-24 11:02:40.917873+00 2025-11-24 11:02:40.917879+00 f t COSTO_SERVICIO 0.00 2 13373 \N +538669 2025-11-24 11:02:40.918951+00 2025-11-24 11:02:40.918956+00 f t DESCUENTO 0.00 3 13373 \N +538670 2025-11-24 11:02:40.919964+00 2025-11-24 11:02:40.919969+00 f t TOTAL 0.00 4 13373 \N +538671 2025-11-24 11:02:40.921018+00 2025-11-24 11:02:40.921023+00 f t ADELANTO 0.00 5 13373 \N +533342 2025-11-22 21:08:08.745905+00 2025-11-22 21:08:08.745913+00 f t SUBTOTAL 46000.00 1 13244 \N +533343 2025-11-22 21:08:08.747792+00 2025-11-22 21:08:08.747799+00 f t COSTO_SERVICIO 0.00 2 13244 \N +533344 2025-11-22 21:08:08.749069+00 2025-11-22 21:08:08.749075+00 f t DESCUENTO 0.00 3 13244 \N +533345 2025-11-22 21:08:08.750112+00 2025-11-22 21:08:08.750116+00 f t TOTAL 46000.00 4 13244 \N +533346 2025-11-22 21:08:08.751257+00 2025-11-22 21:08:08.751262+00 f t ADELANTO 11000.00 5 13244 \N +540542 2025-11-24 15:16:25.469217+00 2025-11-24 15:16:25.469226+00 f t SUBTOTAL 0.00 1 13411 \N +540543 2025-11-24 15:16:25.471317+00 2025-11-24 15:16:25.471323+00 f t COSTO_SERVICIO 0.00 2 13411 \N +540544 2025-11-24 15:16:25.472418+00 2025-11-24 15:16:25.472424+00 f t DESCUENTO 0.00 3 13411 \N +540545 2025-11-24 15:16:25.473353+00 2025-11-24 15:16:25.473358+00 f t TOTAL 0.00 4 13411 \N +540546 2025-11-24 15:16:25.474466+00 2025-11-24 15:16:25.474472+00 f t ADELANTO 0.00 5 13411 \N +533447 2025-11-22 21:25:08.846553+00 2025-11-22 21:25:08.846566+00 f t SUBTOTAL 115000.00 1 13245 \N +533448 2025-11-22 21:25:08.848753+00 2025-11-22 21:25:08.848766+00 f t COSTO_SERVICIO 0.00 2 13245 \N +533449 2025-11-22 21:25:08.850486+00 2025-11-22 21:25:08.850494+00 f t DESCUENTO 0.00 3 13245 \N +533450 2025-11-22 21:25:08.851877+00 2025-11-22 21:25:08.851883+00 f t TOTAL 115000.00 4 13245 \N +533451 2025-11-22 21:25:08.853164+00 2025-11-22 21:25:08.85317+00 f t ADELANTO 25000.00 5 13245 \N +542812 2025-11-24 23:32:45.957753+00 2025-11-24 23:32:45.957762+00 f t SUBTOTAL 0.00 1 13469 \N +542813 2025-11-24 23:32:45.959913+00 2025-11-24 23:32:45.959924+00 f t COSTO_SERVICIO 0.00 2 13469 \N +542814 2025-11-24 23:32:45.961263+00 2025-11-24 23:32:45.961269+00 f t DESCUENTO 0.00 3 13469 \N +542815 2025-11-24 23:32:45.96241+00 2025-11-24 23:32:45.962416+00 f t TOTAL 0.00 4 13469 \N +542816 2025-11-24 23:32:45.963358+00 2025-11-24 23:32:45.963363+00 f t ADELANTO 0.00 5 13469 \N +533487 2025-11-22 21:26:18.700505+00 2025-11-22 21:26:18.700511+00 f t SUBTOTAL 46000.00 1 13246 \N +533488 2025-11-22 21:26:18.701963+00 2025-11-22 21:26:18.701969+00 f t COSTO_SERVICIO 0.00 2 13246 \N +533489 2025-11-22 21:26:18.702992+00 2025-11-22 21:26:18.702997+00 f t DESCUENTO 0.00 3 13246 \N +533490 2025-11-22 21:26:18.703907+00 2025-11-22 21:26:18.703912+00 f t TOTAL 46000.00 4 13246 \N +533491 2025-11-22 21:26:18.704773+00 2025-11-22 21:26:18.704778+00 f t ADELANTO 11000.00 5 13246 \N +543147 2025-11-25 00:26:55.354548+00 2025-11-25 00:26:55.354559+00 f t SUBTOTAL 55000.00 1 13478 \N +543148 2025-11-25 00:26:55.356328+00 2025-11-25 00:26:55.356335+00 f t COSTO_SERVICIO 0.00 2 13478 \N +543149 2025-11-25 00:26:55.357723+00 2025-11-25 00:26:55.357729+00 f t DESCUENTO 0.00 3 13478 \N +543150 2025-11-25 00:26:55.358804+00 2025-11-25 00:26:55.358813+00 f t TOTAL 55000.00 4 13478 \N +543151 2025-11-25 00:26:55.359907+00 2025-11-25 00:26:55.359915+00 f t ADELANTO 11000.00 5 13478 \N +543420 2025-11-25 00:48:07.243304+00 2025-11-25 00:48:07.243313+00 f t TOTAL 98800.00 4 13482 \N +543421 2025-11-25 00:48:07.244861+00 2025-11-25 00:48:07.244869+00 f t ADELANTO 27000.00 5 13482 \N +533522 2025-11-22 22:03:08.239211+00 2025-11-22 22:03:08.239219+00 f t SUBTOTAL 54000.00 1 13247 \N +533523 2025-11-22 22:03:08.24085+00 2025-11-22 22:03:08.240856+00 f t COSTO_SERVICIO 0.00 2 13247 \N +533524 2025-11-22 22:03:08.242166+00 2025-11-22 22:03:08.242171+00 f t DESCUENTO 0.00 3 13247 \N +533525 2025-11-22 22:03:08.243385+00 2025-11-22 22:03:08.243392+00 f t TOTAL 54000.00 4 13247 \N +533526 2025-11-22 22:03:08.244583+00 2025-11-22 22:03:08.244591+00 f t ADELANTO 13500.00 5 13247 \N +536062 2025-11-23 19:46:23.232401+00 2025-11-23 19:46:23.232407+00 f t SUBTOTAL 54000.00 1 13316 \N +536063 2025-11-23 19:46:23.234133+00 2025-11-23 19:46:23.234138+00 f t COSTO_SERVICIO 0.00 2 13316 \N +536064 2025-11-23 19:46:23.235201+00 2025-11-23 19:46:23.235206+00 f t DESCUENTO 0.00 3 13316 \N +536065 2025-11-23 19:46:23.237034+00 2025-11-23 19:46:23.237042+00 f t TOTAL 54000.00 4 13316 \N +536066 2025-11-23 19:46:23.238174+00 2025-11-23 19:46:23.238181+00 f t ADELANTO 13500.00 5 13316 \N +533562 2025-11-22 22:06:55.706676+00 2025-11-22 22:06:55.706687+00 f t SUBTOTAL 94000.00 1 13248 \N +533563 2025-11-22 22:06:55.708782+00 2025-11-22 22:06:55.708793+00 f t COSTO_SERVICIO 0.00 2 13248 \N +533564 2025-11-22 22:06:55.710441+00 2025-11-22 22:06:55.710452+00 f t DESCUENTO 0.00 3 13248 \N +533565 2025-11-22 22:06:55.71199+00 2025-11-22 22:06:55.711998+00 f t TOTAL 94000.00 4 13248 \N +533566 2025-11-22 22:06:55.713516+00 2025-11-22 22:06:55.713525+00 f t ADELANTO 27000.00 5 13248 \N +533572 2025-11-22 22:41:21.380985+00 2025-11-22 22:41:21.380994+00 f t SUBTOTAL 0.00 1 13249 \N +533573 2025-11-22 22:41:21.382353+00 2025-11-22 22:41:21.382362+00 f t COSTO_SERVICIO 0.00 2 13249 \N +533574 2025-11-22 22:41:21.383336+00 2025-11-22 22:41:21.383344+00 f t DESCUENTO 0.00 3 13249 \N +533575 2025-11-22 22:41:21.384286+00 2025-11-22 22:41:21.384291+00 f t TOTAL 0.00 4 13249 \N +533576 2025-11-22 22:41:21.385187+00 2025-11-22 22:41:21.385192+00 f t ADELANTO 0.00 5 13249 \N +533652 2025-11-22 22:55:28.394523+00 2025-11-22 22:55:28.394534+00 f t SUBTOTAL 55000.00 1 13250 \N +533653 2025-11-22 22:55:28.39589+00 2025-11-22 22:55:28.395899+00 f t COSTO_SERVICIO 0.00 2 13250 \N +533654 2025-11-22 22:55:28.396785+00 2025-11-22 22:55:28.396793+00 f t DESCUENTO 0.00 3 13250 \N +533655 2025-11-22 22:55:28.397544+00 2025-11-22 22:55:28.397552+00 f t TOTAL 55000.00 4 13250 \N +533656 2025-11-22 22:55:28.398328+00 2025-11-22 22:55:28.398336+00 f t ADELANTO 11000.00 5 13250 \N +540377 2025-11-24 14:36:38.140931+00 2025-11-24 14:36:38.140941+00 f t SUBTOTAL 0.00 1 13406 \N +540378 2025-11-24 14:36:38.143325+00 2025-11-24 14:36:38.143332+00 f t COSTO_SERVICIO 0.00 2 13406 \N +540379 2025-11-24 14:36:38.144695+00 2025-11-24 14:36:38.144702+00 f t DESCUENTO 0.00 3 13406 \N +540380 2025-11-24 14:36:38.145923+00 2025-11-24 14:36:38.14593+00 f t TOTAL 0.00 4 13406 \N +540381 2025-11-24 14:36:38.147051+00 2025-11-24 14:36:38.147056+00 f t ADELANTO 0.00 5 13406 \N +533692 2025-11-22 23:30:47.143202+00 2025-11-22 23:30:47.143217+00 f t SUBTOTAL 70000.00 1 13251 \N +533693 2025-11-22 23:30:47.168536+00 2025-11-22 23:30:47.168545+00 f t COSTO_SERVICIO 0.00 2 13251 \N +533694 2025-11-22 23:30:47.169999+00 2025-11-22 23:30:47.170006+00 f t DESCUENTO 0.00 3 13251 \N +533695 2025-11-22 23:30:47.171161+00 2025-11-22 23:30:47.171167+00 f t TOTAL 70000.00 4 13251 \N +533696 2025-11-22 23:30:47.172531+00 2025-11-22 23:30:47.172544+00 f t ADELANTO 19000.00 5 13251 \N +541502 2025-11-24 20:16:21.659013+00 2025-11-24 20:16:21.65902+00 f t SUBTOTAL 30000.00 1 13434 \N +541503 2025-11-24 20:16:21.660564+00 2025-11-24 20:16:21.66057+00 f t COSTO_SERVICIO 0.00 2 13434 \N +541504 2025-11-24 20:16:21.661662+00 2025-11-24 20:16:21.661668+00 f t DESCUENTO 0.00 3 13434 \N +541505 2025-11-24 20:16:21.662615+00 2025-11-24 20:16:21.662621+00 f t TOTAL 30000.00 4 13434 \N +541506 2025-11-24 20:16:21.663548+00 2025-11-24 20:16:21.663553+00 f t ADELANTO 30000.00 5 13434 \N +533732 2025-11-22 23:49:55.896059+00 2025-11-22 23:49:55.896066+00 f t SUBTOTAL 46000.00 1 13252 \N +533733 2025-11-22 23:49:55.897498+00 2025-11-22 23:49:55.897505+00 f t COSTO_SERVICIO 0.00 2 13252 \N +533734 2025-11-22 23:49:55.898539+00 2025-11-22 23:49:55.898544+00 f t DESCUENTO 0.00 3 13252 \N +533735 2025-11-22 23:49:55.899549+00 2025-11-22 23:49:55.899554+00 f t TOTAL 46000.00 4 13252 \N +533736 2025-11-22 23:49:55.900634+00 2025-11-22 23:49:55.900639+00 f t ADELANTO 11000.00 5 13252 \N +533742 2025-11-23 00:38:22.539618+00 2025-11-23 00:38:22.539626+00 f t SUBTOTAL 0.00 1 13253 \N +533743 2025-11-23 00:38:22.541183+00 2025-11-23 00:38:22.541191+00 f t COSTO_SERVICIO 0.00 2 13253 \N +533744 2025-11-23 00:38:22.542292+00 2025-11-23 00:38:22.542298+00 f t DESCUENTO 0.00 3 13253 \N +533745 2025-11-23 00:38:22.54332+00 2025-11-23 00:38:22.543326+00 f t TOTAL 0.00 4 13253 \N +533746 2025-11-23 00:38:22.544362+00 2025-11-23 00:38:22.54437+00 f t ADELANTO 0.00 5 13253 \N +533777 2025-11-23 01:07:14.719563+00 2025-11-23 01:07:14.719574+00 f t SUBTOTAL 0.00 1 13254 \N +533778 2025-11-23 01:07:14.721616+00 2025-11-23 01:07:14.721626+00 f t COSTO_SERVICIO 0.00 2 13254 \N +533779 2025-11-23 01:07:14.722968+00 2025-11-23 01:07:14.722976+00 f t DESCUENTO 0.00 3 13254 \N +533780 2025-11-23 01:07:14.724257+00 2025-11-23 01:07:14.724265+00 f t TOTAL 0.00 4 13254 \N +533781 2025-11-23 01:07:14.725434+00 2025-11-23 01:07:14.72544+00 f t ADELANTO 0.00 5 13254 \N +542922 2025-11-24 23:39:07.36694+00 2025-11-24 23:39:07.366953+00 f t SUBTOTAL 108000.00 1 13471 \N +542923 2025-11-24 23:39:07.370433+00 2025-11-24 23:39:07.370445+00 f t COSTO_SERVICIO 0.00 2 13471 \N +542924 2025-11-24 23:39:07.372862+00 2025-11-24 23:39:07.372874+00 f t DESCUENTO 9200.00 3 13471 \N +533787 2025-11-23 01:17:05.763977+00 2025-11-23 01:17:05.763987+00 f t SUBTOTAL 0.00 1 13255 \N +533788 2025-11-23 01:17:05.765379+00 2025-11-23 01:17:05.765386+00 f t COSTO_SERVICIO 0.00 2 13255 \N +533789 2025-11-23 01:17:05.766753+00 2025-11-23 01:17:05.766762+00 f t DESCUENTO 0.00 3 13255 \N +533790 2025-11-23 01:17:05.768141+00 2025-11-23 01:17:05.768149+00 f t TOTAL 0.00 4 13255 \N +533791 2025-11-23 01:17:05.769566+00 2025-11-23 01:17:05.769574+00 f t ADELANTO 0.00 5 13255 \N +542925 2025-11-24 23:39:07.375611+00 2025-11-24 23:39:07.375623+00 f t TOTAL 98800.00 4 13471 \N +542926 2025-11-24 23:39:07.37796+00 2025-11-24 23:39:07.377972+00 f t ADELANTO 27000.00 5 13471 \N +543157 2025-11-25 00:31:18.193548+00 2025-11-25 00:31:18.193557+00 f t SUBTOTAL 0.00 1 13479 \N +543158 2025-11-25 00:31:18.194954+00 2025-11-25 00:31:18.194963+00 f t COSTO_SERVICIO 0.00 2 13479 \N +543159 2025-11-25 00:31:18.195979+00 2025-11-25 00:31:18.195984+00 f t DESCUENTO 0.00 3 13479 \N +543160 2025-11-25 00:31:18.196796+00 2025-11-25 00:31:18.196803+00 f t TOTAL 0.00 4 13479 \N +543161 2025-11-25 00:31:18.197622+00 2025-11-25 00:31:18.197627+00 f t ADELANTO 0.00 5 13479 \N +533817 2025-11-23 01:40:26.529818+00 2025-11-23 01:40:26.529825+00 f t SUBTOTAL 30000.00 1 13256 \N +533818 2025-11-23 01:40:26.531307+00 2025-11-23 01:40:26.531313+00 f t COSTO_SERVICIO 0.00 2 13256 \N +533819 2025-11-23 01:40:26.532603+00 2025-11-23 01:40:26.532609+00 f t DESCUENTO 0.00 3 13256 \N +533820 2025-11-23 01:40:26.533768+00 2025-11-23 01:40:26.533773+00 f t TOTAL 30000.00 4 13256 \N +533821 2025-11-23 01:40:26.534738+00 2025-11-23 01:40:26.534742+00 f t ADELANTO 30000.00 5 13256 \N +537142 2025-11-24 00:15:04.839681+00 2025-11-24 00:15:04.839698+00 f t SUBTOTAL 0.00 1 13337 \N +537143 2025-11-24 00:15:04.843168+00 2025-11-24 00:15:04.843178+00 f t COSTO_SERVICIO 0.00 2 13337 \N +537144 2025-11-24 00:15:04.845644+00 2025-11-24 00:15:04.845657+00 f t DESCUENTO 0.00 3 13337 \N +537145 2025-11-24 00:15:04.849843+00 2025-11-24 00:15:04.849853+00 f t TOTAL 0.00 4 13337 \N +537146 2025-11-24 00:15:04.852324+00 2025-11-24 00:15:04.852333+00 f t ADELANTO 0.00 5 13337 \N +537382 2025-11-24 01:48:30.509075+00 2025-11-24 01:48:30.509083+00 f t SUBTOTAL 46000.00 1 13342 \N +537383 2025-11-24 01:48:30.510975+00 2025-11-24 01:48:30.510984+00 f t COSTO_SERVICIO 0.00 2 13342 \N +537384 2025-11-24 01:48:30.512453+00 2025-11-24 01:48:30.512459+00 f t DESCUENTO 0.00 3 13342 \N +537385 2025-11-24 01:48:30.513694+00 2025-11-24 01:48:30.5137+00 f t TOTAL 46000.00 4 13342 \N +537386 2025-11-24 01:48:30.514838+00 2025-11-24 01:48:30.514843+00 f t ADELANTO 11000.00 5 13342 \N +549992 2025-11-26 04:28:04.903364+00 2025-11-26 04:28:04.903372+00 f t SUBTOTAL 55000.00 1 13638 \N +549993 2025-11-26 04:28:04.906089+00 2025-11-26 04:28:04.906099+00 f t COSTO_SERVICIO 0.00 2 13638 \N +549994 2025-11-26 04:28:04.908089+00 2025-11-26 04:28:04.908101+00 f t DESCUENTO 0.00 3 13638 \N +549995 2025-11-26 04:28:04.909886+00 2025-11-26 04:28:04.909929+00 f t TOTAL 55000.00 4 13638 \N +549996 2025-11-26 04:28:04.911737+00 2025-11-26 04:28:04.911747+00 f t ADELANTO 11000.00 5 13638 \N +533897 2025-11-23 02:13:18.885315+00 2025-11-23 02:13:18.885326+00 f t SUBTOTAL 30000.00 1 13257 \N +533898 2025-11-23 02:13:18.888308+00 2025-11-23 02:13:18.888317+00 f t COSTO_SERVICIO 0.00 2 13257 \N +533899 2025-11-23 02:13:18.889536+00 2025-11-23 02:13:18.889542+00 f t DESCUENTO 0.00 3 13257 \N +533900 2025-11-23 02:13:18.890624+00 2025-11-23 02:13:18.890629+00 f t TOTAL 30000.00 4 13257 \N +533901 2025-11-23 02:13:18.891877+00 2025-11-23 02:13:18.891883+00 f t ADELANTO 30000.00 5 13257 \N +533917 2025-11-23 02:43:11.328525+00 2025-11-23 02:43:11.328533+00 f t SUBTOTAL 0.00 1 13258 \N +533918 2025-11-23 02:43:11.330608+00 2025-11-23 02:43:11.330615+00 f t COSTO_SERVICIO 0.00 2 13258 \N +533919 2025-11-23 02:43:11.331916+00 2025-11-23 02:43:11.331924+00 f t DESCUENTO 0.00 3 13258 \N +533920 2025-11-23 02:43:11.333161+00 2025-11-23 02:43:11.333166+00 f t TOTAL 0.00 4 13258 \N +533921 2025-11-23 02:43:11.334403+00 2025-11-23 02:43:11.334408+00 f t ADELANTO 0.00 5 13258 \N +533927 2025-11-23 02:45:54.698454+00 2025-11-23 02:45:54.698463+00 f t SUBTOTAL 0.00 1 13259 \N +533928 2025-11-23 02:45:54.700267+00 2025-11-23 02:45:54.700274+00 f t COSTO_SERVICIO 0.00 2 13259 \N +533929 2025-11-23 02:45:54.701393+00 2025-11-23 02:45:54.701398+00 f t DESCUENTO 0.00 3 13259 \N +533930 2025-11-23 02:45:54.702305+00 2025-11-23 02:45:54.70231+00 f t TOTAL 0.00 4 13259 \N +533931 2025-11-23 02:45:54.703293+00 2025-11-23 02:45:54.703299+00 f t ADELANTO 0.00 5 13259 \N +541197 2025-11-24 18:03:30.099345+00 2025-11-24 18:03:30.099358+00 f t SUBTOTAL 0.00 1 13426 \N +541198 2025-11-24 18:03:30.102098+00 2025-11-24 18:03:30.102106+00 f t COSTO_SERVICIO 0.00 2 13426 \N +541199 2025-11-24 18:03:30.103413+00 2025-11-24 18:03:30.103419+00 f t DESCUENTO 0.00 3 13426 \N +541200 2025-11-24 18:03:30.104784+00 2025-11-24 18:03:30.104791+00 f t TOTAL 0.00 4 13426 \N +541201 2025-11-24 18:03:30.106134+00 2025-11-24 18:03:30.106141+00 f t ADELANTO 0.00 5 13426 \N +534012 2025-11-23 03:19:20.917546+00 2025-11-23 03:19:20.917552+00 f t SUBTOTAL 78000.00 1 13260 \N +534013 2025-11-23 03:19:20.919835+00 2025-11-23 03:19:20.919842+00 f t COSTO_SERVICIO 0.00 2 13260 \N +534014 2025-11-23 03:19:20.921028+00 2025-11-23 03:19:20.921034+00 f t DESCUENTO 0.00 3 13260 \N +534015 2025-11-23 03:19:20.92206+00 2025-11-23 03:19:20.922066+00 f t TOTAL 78000.00 4 13260 \N +534016 2025-11-23 03:19:20.923176+00 2025-11-23 03:19:20.923182+00 f t ADELANTO 21500.00 5 13260 \N +534022 2025-11-23 03:51:57.826514+00 2025-11-23 03:51:57.826523+00 f t SUBTOTAL 0.00 1 13261 \N +534023 2025-11-23 03:51:57.827907+00 2025-11-23 03:51:57.827913+00 f t COSTO_SERVICIO 0.00 2 13261 \N +534024 2025-11-23 03:51:57.829013+00 2025-11-23 03:51:57.829018+00 f t DESCUENTO 0.00 3 13261 \N +534025 2025-11-23 03:51:57.830134+00 2025-11-23 03:51:57.830139+00 f t TOTAL 0.00 4 13261 \N +534026 2025-11-23 03:51:57.831098+00 2025-11-23 03:51:57.831103+00 f t ADELANTO 0.00 5 13261 \N +541982 2025-11-24 21:39:23.781851+00 2025-11-24 21:39:23.781861+00 f t SUBTOTAL 80000.00 1 13446 \N +541983 2025-11-24 21:39:23.783865+00 2025-11-24 21:39:23.783875+00 f t COSTO_SERVICIO 0.00 2 13446 \N +541984 2025-11-24 21:39:23.785041+00 2025-11-24 21:39:23.785049+00 f t DESCUENTO 0.00 3 13446 \N +541985 2025-11-24 21:39:23.786136+00 2025-11-24 21:39:23.786144+00 f t TOTAL 80000.00 4 13446 \N +541986 2025-11-24 21:39:23.787277+00 2025-11-24 21:39:23.787285+00 f t ADELANTO 12000.00 5 13446 \N +542427 2025-11-24 22:46:52.333189+00 2025-11-24 22:46:52.333199+00 f t SUBTOTAL 0.00 1 13460 \N +542428 2025-11-24 22:46:52.336536+00 2025-11-24 22:46:52.336547+00 f t COSTO_SERVICIO 0.00 2 13460 \N +542429 2025-11-24 22:46:52.337894+00 2025-11-24 22:46:52.337916+00 f t DESCUENTO 0.00 3 13460 \N +542430 2025-11-24 22:46:52.338982+00 2025-11-24 22:46:52.338987+00 f t TOTAL 0.00 4 13460 \N +542431 2025-11-24 22:46:52.34014+00 2025-11-24 22:46:52.340149+00 f t ADELANTO 0.00 5 13460 \N +534077 2025-11-23 04:05:13.010168+00 2025-11-23 04:05:13.010177+00 f t SUBTOTAL 0.00 1 13262 \N +534078 2025-11-23 04:05:13.012348+00 2025-11-23 04:05:13.012357+00 f t COSTO_SERVICIO 0.00 2 13262 \N +534079 2025-11-23 04:05:13.013952+00 2025-11-23 04:05:13.01396+00 f t DESCUENTO 0.00 3 13262 \N +534080 2025-11-23 04:05:13.015153+00 2025-11-23 04:05:13.015159+00 f t TOTAL 0.00 4 13262 \N +534081 2025-11-23 04:05:13.016322+00 2025-11-23 04:05:13.016328+00 f t ADELANTO 0.00 5 13262 \N +543547 2025-11-25 01:03:25.745797+00 2025-11-25 01:03:25.745808+00 f t SUBTOTAL 55000.00 1 13485 \N +543548 2025-11-25 01:03:25.747582+00 2025-11-25 01:03:25.747591+00 f t COSTO_SERVICIO 0.00 2 13485 \N +543549 2025-11-25 01:03:25.749037+00 2025-11-25 01:03:25.749047+00 f t DESCUENTO 0.00 3 13485 \N +543550 2025-11-25 01:03:25.750312+00 2025-11-25 01:03:25.750317+00 f t TOTAL 55000.00 4 13485 \N +543551 2025-11-25 01:03:25.751297+00 2025-11-25 01:03:25.751304+00 f t ADELANTO 11000.00 5 13485 \N +534122 2025-11-23 06:25:15.131672+00 2025-11-23 06:25:15.131679+00 f t SUBTOTAL 46000.00 1 13263 \N +534123 2025-11-23 06:25:15.135041+00 2025-11-23 06:25:15.135048+00 f t COSTO_SERVICIO 0.00 2 13263 \N +534124 2025-11-23 06:25:15.136813+00 2025-11-23 06:25:15.136821+00 f t DESCUENTO 0.00 3 13263 \N +534125 2025-11-23 06:25:15.13833+00 2025-11-23 06:25:15.138339+00 f t TOTAL 46000.00 4 13263 \N +534126 2025-11-23 06:25:15.139837+00 2025-11-23 06:25:15.139845+00 f t ADELANTO 11000.00 5 13263 \N +534132 2025-11-23 06:34:09.460925+00 2025-11-23 06:34:09.460936+00 f t SUBTOTAL 0.00 1 13264 \N +534133 2025-11-23 06:34:09.46256+00 2025-11-23 06:34:09.46257+00 f t COSTO_SERVICIO 0.00 2 13264 \N +534134 2025-11-23 06:34:09.463907+00 2025-11-23 06:34:09.463916+00 f t DESCUENTO 0.00 3 13264 \N +534135 2025-11-23 06:34:09.46514+00 2025-11-23 06:34:09.465148+00 f t TOTAL 0.00 4 13264 \N +534136 2025-11-23 06:34:09.466458+00 2025-11-23 06:34:09.466465+00 f t ADELANTO 0.00 5 13264 \N +549422 2025-11-26 00:33:38.578993+00 2025-11-26 00:33:38.579008+00 f t SUBTOTAL 0.00 1 13624 \N +549423 2025-11-26 00:33:38.580443+00 2025-11-26 00:33:38.580449+00 f t COSTO_SERVICIO 0.00 2 13624 \N +549424 2025-11-26 00:33:38.581495+00 2025-11-26 00:33:38.5815+00 f t DESCUENTO 0.00 3 13624 \N +549425 2025-11-26 00:33:38.582595+00 2025-11-26 00:33:38.582602+00 f t TOTAL 0.00 4 13624 \N +549426 2025-11-26 00:33:38.583606+00 2025-11-26 00:33:38.583612+00 f t ADELANTO 0.00 5 13624 \N +534162 2025-11-23 06:49:02.943322+00 2025-11-23 06:49:02.943335+00 f t SUBTOTAL 55000.00 1 13265 \N +534163 2025-11-23 06:49:02.945691+00 2025-11-23 06:49:02.945702+00 f t COSTO_SERVICIO 0.00 2 13265 \N +534164 2025-11-23 06:49:02.947569+00 2025-11-23 06:49:02.947579+00 f t DESCUENTO 0.00 3 13265 \N +534165 2025-11-23 06:49:02.949978+00 2025-11-23 06:49:02.949988+00 f t TOTAL 55000.00 4 13265 \N +534166 2025-11-23 06:49:02.951727+00 2025-11-23 06:49:02.951734+00 f t ADELANTO 11000.00 5 13265 \N +537392 2025-11-24 01:52:04.897193+00 2025-11-24 01:52:04.897206+00 f t SUBTOTAL 0.00 1 13343 \N +537393 2025-11-24 01:52:04.898823+00 2025-11-24 01:52:04.89883+00 f t COSTO_SERVICIO 0.00 2 13343 \N +537394 2025-11-24 01:52:04.899892+00 2025-11-24 01:52:04.899898+00 f t DESCUENTO 0.00 3 13343 \N +537395 2025-11-24 01:52:04.901108+00 2025-11-24 01:52:04.901114+00 f t TOTAL 0.00 4 13343 \N +537396 2025-11-24 01:52:04.902212+00 2025-11-24 01:52:04.902217+00 f t ADELANTO 0.00 5 13343 \N +534192 2025-11-23 08:04:38.401456+00 2025-11-23 08:04:38.401465+00 f t SUBTOTAL 0.00 1 13266 \N +534193 2025-11-23 08:04:38.403193+00 2025-11-23 08:04:38.403201+00 f t COSTO_SERVICIO 0.00 2 13266 \N +534194 2025-11-23 08:04:38.404211+00 2025-11-23 08:04:38.404216+00 f t DESCUENTO 0.00 3 13266 \N +534195 2025-11-23 08:04:38.405172+00 2025-11-23 08:04:38.405178+00 f t TOTAL 0.00 4 13266 \N +534196 2025-11-23 08:04:38.406271+00 2025-11-23 08:04:38.406276+00 f t ADELANTO 0.00 5 13266 \N +540722 2025-11-24 15:39:47.532989+00 2025-11-24 15:39:47.532998+00 f t SUBTOTAL 127500.00 1 13416 \N +534267 2025-11-23 08:08:53.067599+00 2025-11-23 08:08:53.06761+00 f t SUBTOTAL 55000.00 1 13267 \N +534268 2025-11-23 08:08:53.069471+00 2025-11-23 08:08:53.06948+00 f t COSTO_SERVICIO 0.00 2 13267 \N +534269 2025-11-23 08:08:53.071001+00 2025-11-23 08:08:53.071011+00 f t DESCUENTO 0.00 3 13267 \N +534270 2025-11-23 08:08:53.077086+00 2025-11-23 08:08:53.077097+00 f t TOTAL 55000.00 4 13267 \N +534271 2025-11-23 08:08:53.079253+00 2025-11-23 08:08:53.079264+00 f t ADELANTO 11000.00 5 13267 \N +540723 2025-11-24 15:39:47.535011+00 2025-11-24 15:39:47.535022+00 f t COSTO_SERVICIO 0.00 2 13416 \N +540724 2025-11-24 15:39:47.53635+00 2025-11-24 15:39:47.536358+00 f t DESCUENTO 0.00 3 13416 \N +540725 2025-11-24 15:39:47.53768+00 2025-11-24 15:39:47.537689+00 f t TOTAL 127500.00 4 13416 \N +540726 2025-11-24 15:39:47.538943+00 2025-11-24 15:39:47.538951+00 f t ADELANTO 27500.00 5 13416 \N +534307 2025-11-23 10:16:14.623004+00 2025-11-23 10:16:14.623014+00 f t SUBTOTAL 55000.00 1 13268 \N +534308 2025-11-23 10:16:14.624716+00 2025-11-23 10:16:14.624725+00 f t COSTO_SERVICIO 0.00 2 13268 \N +534309 2025-11-23 10:16:14.62593+00 2025-11-23 10:16:14.625938+00 f t DESCUENTO 0.00 3 13268 \N +534310 2025-11-23 10:16:14.627075+00 2025-11-23 10:16:14.627083+00 f t TOTAL 55000.00 4 13268 \N +534311 2025-11-23 10:16:14.62819+00 2025-11-23 10:16:14.628197+00 f t ADELANTO 11000.00 5 13268 \N +534347 2025-11-23 10:21:12.925525+00 2025-11-23 10:21:12.925533+00 f t SUBTOTAL 30000.00 1 13269 \N +534348 2025-11-23 10:21:12.927235+00 2025-11-23 10:21:12.927241+00 f t COSTO_SERVICIO 0.00 2 13269 \N +534349 2025-11-23 10:21:12.928889+00 2025-11-23 10:21:12.928902+00 f t DESCUENTO 0.00 3 13269 \N +534350 2025-11-23 10:21:12.930198+00 2025-11-23 10:21:12.930209+00 f t TOTAL 30000.00 4 13269 \N +534351 2025-11-23 10:21:12.931341+00 2025-11-23 10:21:12.931347+00 f t ADELANTO 30000.00 5 13269 \N +534437 2025-11-23 10:31:52.694519+00 2025-11-23 10:31:52.694526+00 f t SUBTOTAL 55000.00 1 13271 \N +534438 2025-11-23 10:31:52.696161+00 2025-11-23 10:31:52.696168+00 f t COSTO_SERVICIO 0.00 2 13271 \N +534439 2025-11-23 10:31:52.697467+00 2025-11-23 10:31:52.697472+00 f t DESCUENTO 0.00 3 13271 \N +534440 2025-11-23 10:31:52.698432+00 2025-11-23 10:31:52.698437+00 f t TOTAL 55000.00 4 13271 \N +534441 2025-11-23 10:31:52.699474+00 2025-11-23 10:31:52.699479+00 f t ADELANTO 11000.00 5 13271 \N +534447 2025-11-23 11:07:08.471445+00 2025-11-23 11:07:08.471458+00 f t SUBTOTAL 0.00 1 13272 \N +534448 2025-11-23 11:07:08.473193+00 2025-11-23 11:07:08.473205+00 f t COSTO_SERVICIO 0.00 2 13272 \N +534449 2025-11-23 11:07:08.474886+00 2025-11-23 11:07:08.474893+00 f t DESCUENTO 0.00 3 13272 \N +534450 2025-11-23 11:07:08.476336+00 2025-11-23 11:07:08.476344+00 f t TOTAL 0.00 4 13272 \N +534451 2025-11-23 11:07:08.477668+00 2025-11-23 11:07:08.477678+00 f t ADELANTO 0.00 5 13272 \N +537402 2025-11-24 01:57:31.321561+00 2025-11-24 01:57:31.32157+00 f t SUBTOTAL 0.00 1 13344 \N +537403 2025-11-24 01:57:31.323002+00 2025-11-24 01:57:31.323008+00 f t COSTO_SERVICIO 0.00 2 13344 \N +537404 2025-11-24 01:57:31.324164+00 2025-11-24 01:57:31.324171+00 f t DESCUENTO 0.00 3 13344 \N +537405 2025-11-24 01:57:31.325375+00 2025-11-24 01:57:31.325381+00 f t TOTAL 0.00 4 13344 \N +537406 2025-11-24 01:57:31.326471+00 2025-11-24 01:57:31.326483+00 f t ADELANTO 0.00 5 13344 \N +534487 2025-11-23 11:31:25.24615+00 2025-11-23 11:31:25.246157+00 f t SUBTOTAL 78500.00 1 13273 \N +534488 2025-11-23 11:31:25.247585+00 2025-11-23 11:31:25.247591+00 f t COSTO_SERVICIO 0.00 2 13273 \N +534489 2025-11-23 11:31:25.248614+00 2025-11-23 11:31:25.24862+00 f t DESCUENTO 0.00 3 13273 \N +534490 2025-11-23 11:31:25.249621+00 2025-11-23 11:31:25.249626+00 f t TOTAL 78500.00 4 13273 \N +534491 2025-11-23 11:31:25.250597+00 2025-11-23 11:31:25.250602+00 f t ADELANTO 17500.00 5 13273 \N +538872 2025-11-24 11:48:22.235611+00 2025-11-24 11:48:22.23562+00 f t SUBTOTAL 92000.00 1 13377 \N +538873 2025-11-24 11:48:22.237433+00 2025-11-24 11:48:22.237439+00 f t COSTO_SERVICIO 0.00 2 13377 \N +538874 2025-11-24 11:48:22.238635+00 2025-11-24 11:48:22.23864+00 f t DESCUENTO 9200.00 3 13377 \N +538875 2025-11-24 11:48:22.239661+00 2025-11-24 11:48:22.239666+00 f t TOTAL 82800.00 4 13377 \N +538876 2025-11-24 11:48:22.240546+00 2025-11-24 11:48:22.240551+00 f t ADELANTO 22000.00 5 13377 \N +539397 2025-11-24 13:01:48.958624+00 2025-11-24 13:01:48.958633+00 f t SUBTOTAL 0.00 1 13389 \N +539398 2025-11-24 13:01:48.960817+00 2025-11-24 13:01:48.960825+00 f t COSTO_SERVICIO 0.00 2 13389 \N +539399 2025-11-24 13:01:48.962267+00 2025-11-24 13:01:48.962276+00 f t DESCUENTO 0.00 3 13389 \N +539400 2025-11-24 13:01:48.963799+00 2025-11-24 13:01:48.963808+00 f t TOTAL 0.00 4 13389 \N +539401 2025-11-24 13:01:48.965093+00 2025-11-24 13:01:48.9651+00 f t ADELANTO 0.00 5 13389 \N +539737 2025-11-24 13:51:06.836954+00 2025-11-24 13:51:06.836969+00 f t SUBTOTAL 30000.00 1 13395 \N +539738 2025-11-24 13:51:06.840049+00 2025-11-24 13:51:06.840061+00 f t COSTO_SERVICIO 0.00 2 13395 \N +539739 2025-11-24 13:51:06.842041+00 2025-11-24 13:51:06.842053+00 f t DESCUENTO 0.00 3 13395 \N +539740 2025-11-24 13:51:06.843976+00 2025-11-24 13:51:06.843986+00 f t TOTAL 30000.00 4 13395 \N +539741 2025-11-24 13:51:06.845792+00 2025-11-24 13:51:06.845802+00 f t ADELANTO 30000.00 5 13395 \N +534532 2025-11-23 12:08:15.409804+00 2025-11-23 12:08:15.40982+00 f t SUBTOTAL 0.00 1 13275 \N +534533 2025-11-23 12:08:15.411379+00 2025-11-23 12:08:15.411387+00 f t COSTO_SERVICIO 0.00 2 13275 \N +534534 2025-11-23 12:08:15.412734+00 2025-11-23 12:08:15.41274+00 f t DESCUENTO 0.00 3 13275 \N +534535 2025-11-23 12:08:15.41394+00 2025-11-23 12:08:15.413949+00 f t TOTAL 0.00 4 13275 \N +534536 2025-11-23 12:08:15.415119+00 2025-11-23 12:08:15.415147+00 f t ADELANTO 0.00 5 13275 \N +534537 2025-11-23 12:08:25.911807+00 2025-11-23 12:08:25.911818+00 f t SUBTOTAL 55000.00 1 13274 \N +534538 2025-11-23 12:08:25.913693+00 2025-11-23 12:08:25.913701+00 f t COSTO_SERVICIO 0.00 2 13274 \N +534539 2025-11-23 12:08:25.915003+00 2025-11-23 12:08:25.915012+00 f t DESCUENTO 0.00 3 13274 \N +534540 2025-11-23 12:08:25.916308+00 2025-11-23 12:08:25.916316+00 f t TOTAL 55000.00 4 13274 \N +534541 2025-11-23 12:08:25.917469+00 2025-11-23 12:08:25.917476+00 f t ADELANTO 11000.00 5 13274 \N +534547 2025-11-23 12:46:30.174265+00 2025-11-23 12:46:30.174276+00 f t SUBTOTAL 0.00 1 13276 \N +534548 2025-11-23 12:46:30.175822+00 2025-11-23 12:46:30.175832+00 f t COSTO_SERVICIO 0.00 2 13276 \N +534549 2025-11-23 12:46:30.177172+00 2025-11-23 12:46:30.17718+00 f t DESCUENTO 0.00 3 13276 \N +534550 2025-11-23 12:46:30.178476+00 2025-11-23 12:46:30.178485+00 f t TOTAL 0.00 4 13276 \N +534551 2025-11-23 12:46:30.179684+00 2025-11-23 12:46:30.179692+00 f t ADELANTO 0.00 5 13276 \N +540397 2025-11-24 14:41:19.378383+00 2025-11-24 14:41:19.378392+00 f t SUBTOTAL 0.00 1 13407 \N +540398 2025-11-24 14:41:19.380415+00 2025-11-24 14:41:19.380422+00 f t COSTO_SERVICIO 0.00 2 13407 \N +540399 2025-11-24 14:41:19.381481+00 2025-11-24 14:41:19.381487+00 f t DESCUENTO 0.00 3 13407 \N +540400 2025-11-24 14:41:19.382492+00 2025-11-24 14:41:19.382497+00 f t TOTAL 0.00 4 13407 \N +540401 2025-11-24 14:41:19.383317+00 2025-11-24 14:41:19.383322+00 f t ADELANTO 0.00 5 13407 \N +541207 2025-11-24 18:03:38.95354+00 2025-11-24 18:03:38.953549+00 f t SUBTOTAL 0.00 1 13425 \N +541208 2025-11-24 18:03:38.96732+00 2025-11-24 18:03:38.96733+00 f t COSTO_SERVICIO 0.00 2 13425 \N +541209 2025-11-24 18:03:38.969137+00 2025-11-24 18:03:38.969145+00 f t DESCUENTO 0.00 3 13425 \N +541210 2025-11-24 18:03:38.970393+00 2025-11-24 18:03:38.970399+00 f t TOTAL 0.00 4 13425 \N +541211 2025-11-24 18:03:38.971701+00 2025-11-24 18:03:38.971709+00 f t ADELANTO 0.00 5 13425 \N +534587 2025-11-23 12:55:52.536917+00 2025-11-23 12:55:52.53693+00 f t SUBTOTAL 0.00 1 13278 \N +534588 2025-11-23 12:55:52.538719+00 2025-11-23 12:55:52.538728+00 f t COSTO_SERVICIO 0.00 2 13278 \N +534589 2025-11-23 12:55:52.540115+00 2025-11-23 12:55:52.540123+00 f t DESCUENTO 0.00 3 13278 \N +534590 2025-11-23 12:55:52.541412+00 2025-11-23 12:55:52.54142+00 f t TOTAL 0.00 4 13278 \N +534591 2025-11-23 12:55:52.542791+00 2025-11-23 12:55:52.542798+00 f t ADELANTO 0.00 5 13278 \N +534622 2025-11-23 13:31:59.39452+00 2025-11-23 13:31:59.394529+00 f t SUBTOTAL 55000.00 1 13279 \N +534623 2025-11-23 13:31:59.396371+00 2025-11-23 13:31:59.39638+00 f t COSTO_SERVICIO 0.00 2 13279 \N +534624 2025-11-23 13:31:59.39782+00 2025-11-23 13:31:59.397826+00 f t DESCUENTO 0.00 3 13279 \N +534625 2025-11-23 13:31:59.39894+00 2025-11-23 13:31:59.398948+00 f t TOTAL 55000.00 4 13279 \N +534626 2025-11-23 13:31:59.400081+00 2025-11-23 13:31:59.400086+00 f t ADELANTO 11000.00 5 13279 \N +542692 2025-11-24 23:23:42.013536+00 2025-11-24 23:23:42.013544+00 f t SUBTOTAL 46000.00 1 13464 \N +542693 2025-11-24 23:23:42.015573+00 2025-11-24 23:23:42.015581+00 f t COSTO_SERVICIO 0.00 2 13464 \N +542694 2025-11-24 23:23:42.016929+00 2025-11-24 23:23:42.016938+00 f t DESCUENTO 0.00 3 13464 \N +542695 2025-11-24 23:23:42.018195+00 2025-11-24 23:23:42.018204+00 f t TOTAL 46000.00 4 13464 \N +542696 2025-11-24 23:23:42.019433+00 2025-11-24 23:23:42.019439+00 f t ADELANTO 11000.00 5 13464 \N +542832 2025-11-24 23:33:11.992722+00 2025-11-24 23:33:11.99273+00 f t SUBTOTAL 46000.00 1 13468 \N +534667 2025-11-23 13:39:22.28347+00 2025-11-23 13:39:22.283479+00 f t SUBTOTAL 70000.00 1 13280 \N +534668 2025-11-23 13:39:22.285096+00 2025-11-23 13:39:22.285104+00 f t COSTO_SERVICIO 0.00 2 13280 \N +534669 2025-11-23 13:39:22.286261+00 2025-11-23 13:39:22.286266+00 f t DESCUENTO 0.00 3 13280 \N +534670 2025-11-23 13:39:22.287238+00 2025-11-23 13:39:22.287244+00 f t TOTAL 70000.00 4 13280 \N +534671 2025-11-23 13:39:22.288317+00 2025-11-23 13:39:22.288322+00 f t ADELANTO 19000.00 5 13280 \N +534707 2025-11-23 13:44:04.695011+00 2025-11-23 13:44:04.695022+00 f t SUBTOTAL 55000.00 1 13281 \N +534708 2025-11-23 13:44:04.696335+00 2025-11-23 13:44:04.696922+00 f t COSTO_SERVICIO 0.00 2 13281 \N +534709 2025-11-23 13:44:04.697956+00 2025-11-23 13:44:04.697963+00 f t DESCUENTO 0.00 3 13281 \N +534710 2025-11-23 13:44:04.698781+00 2025-11-23 13:44:04.698789+00 f t TOTAL 55000.00 4 13281 \N +534711 2025-11-23 13:44:04.699594+00 2025-11-23 13:44:04.699602+00 f t ADELANTO 11000.00 5 13281 \N +536397 2025-11-23 20:34:22.095885+00 2025-11-23 20:34:22.095895+00 f t SUBTOTAL 55000.00 1 13323 \N +536398 2025-11-23 20:34:22.098164+00 2025-11-23 20:34:22.098174+00 f t COSTO_SERVICIO 0.00 2 13323 \N +536399 2025-11-23 20:34:22.099661+00 2025-11-23 20:34:22.099669+00 f t DESCUENTO 0.00 3 13323 \N +536400 2025-11-23 20:34:22.100974+00 2025-11-23 20:34:22.100982+00 f t TOTAL 55000.00 4 13323 \N +536401 2025-11-23 20:34:22.102337+00 2025-11-23 20:34:22.102345+00 f t ADELANTO 11000.00 5 13323 \N +534747 2025-11-23 13:51:04.03189+00 2025-11-23 13:51:04.0319+00 f t SUBTOTAL 60000.00 1 13282 \N +534748 2025-11-23 13:51:04.034268+00 2025-11-23 13:51:04.034279+00 f t COSTO_SERVICIO 0.00 2 13282 \N +534749 2025-11-23 13:51:04.03594+00 2025-11-23 13:51:04.035949+00 f t DESCUENTO 0.00 3 13282 \N +534750 2025-11-23 13:51:04.037306+00 2025-11-23 13:51:04.037314+00 f t TOTAL 60000.00 4 13282 \N +534751 2025-11-23 13:51:04.039045+00 2025-11-23 13:51:04.039053+00 f t ADELANTO 50000.00 5 13282 \N +539747 2025-11-24 13:52:33.51186+00 2025-11-24 13:52:33.511869+00 f t SUBTOTAL 0.00 1 13396 \N +539748 2025-11-24 13:52:33.513588+00 2025-11-24 13:52:33.513596+00 f t COSTO_SERVICIO 0.00 2 13396 \N +539749 2025-11-24 13:52:33.514755+00 2025-11-24 13:52:33.514761+00 f t DESCUENTO 0.00 3 13396 \N +539750 2025-11-24 13:52:33.516099+00 2025-11-24 13:52:33.516105+00 f t TOTAL 0.00 4 13396 \N +539751 2025-11-24 13:52:33.517364+00 2025-11-24 13:52:33.51737+00 f t ADELANTO 0.00 5 13396 \N +540732 2025-11-24 15:40:04.446655+00 2025-11-24 15:40:04.446669+00 f t SUBTOTAL 70000.00 1 13415 \N +540733 2025-11-24 15:40:04.449793+00 2025-11-24 15:40:04.449806+00 f t COSTO_SERVICIO 0.00 2 13415 \N +540734 2025-11-24 15:40:04.452158+00 2025-11-24 15:40:04.452172+00 f t DESCUENTO 0.00 3 13415 \N +540735 2025-11-24 15:40:04.454315+00 2025-11-24 15:40:04.454328+00 f t TOTAL 70000.00 4 13415 \N +540736 2025-11-24 15:40:04.457842+00 2025-11-24 15:40:04.457856+00 f t ADELANTO 19000.00 5 13415 \N +534867 2025-11-23 13:58:13.110043+00 2025-11-23 13:58:13.11005+00 f t SUBTOTAL 174000.00 1 13283 \N +534868 2025-11-23 13:58:13.111785+00 2025-11-23 13:58:13.111794+00 f t COSTO_SERVICIO 0.00 2 13283 \N +534869 2025-11-23 13:58:13.11298+00 2025-11-23 13:58:13.112985+00 f t DESCUENTO 9200.00 3 13283 \N +534870 2025-11-23 13:58:13.114017+00 2025-11-23 13:58:13.114022+00 f t TOTAL 164800.00 4 13283 \N +534871 2025-11-23 13:58:13.115268+00 2025-11-23 13:58:13.115274+00 f t ADELANTO 40000.00 5 13283 \N +534897 2025-11-23 14:07:41.512919+00 2025-11-23 14:07:41.512925+00 f t SUBTOTAL 54000.00 1 13284 \N +534898 2025-11-23 14:07:41.514456+00 2025-11-23 14:07:41.514462+00 f t COSTO_SERVICIO 0.00 2 13284 \N +534899 2025-11-23 14:07:41.515842+00 2025-11-23 14:07:41.515847+00 f t DESCUENTO 0.00 3 13284 \N +534900 2025-11-23 14:07:41.516935+00 2025-11-23 14:07:41.51694+00 f t TOTAL 54000.00 4 13284 \N +534901 2025-11-23 14:07:41.518066+00 2025-11-23 14:07:41.518078+00 f t ADELANTO 13500.00 5 13284 \N +542702 2025-11-24 23:29:06.99102+00 2025-11-24 23:29:06.991034+00 f t SUBTOTAL 0.00 1 13465 \N +542703 2025-11-24 23:29:06.993367+00 2025-11-24 23:29:06.99338+00 f t COSTO_SERVICIO 0.00 2 13465 \N +542704 2025-11-24 23:29:06.995798+00 2025-11-24 23:29:06.995809+00 f t DESCUENTO 0.00 3 13465 \N +542705 2025-11-24 23:29:06.997692+00 2025-11-24 23:29:06.997703+00 f t TOTAL 0.00 4 13465 \N +534942 2025-11-23 14:44:17.876802+00 2025-11-23 14:44:17.876809+00 f t SUBTOTAL 54000.00 1 13285 \N +534943 2025-11-23 14:44:17.878401+00 2025-11-23 14:44:17.878407+00 f t COSTO_SERVICIO 0.00 2 13285 \N +534944 2025-11-23 14:44:17.879452+00 2025-11-23 14:44:17.879457+00 f t DESCUENTO 0.00 3 13285 \N +534945 2025-11-23 14:44:17.880432+00 2025-11-23 14:44:17.880437+00 f t TOTAL 54000.00 4 13285 \N +534946 2025-11-23 14:44:17.881391+00 2025-11-23 14:44:17.881399+00 f t ADELANTO 13500.00 5 13285 \N +542706 2025-11-24 23:29:06.9999+00 2025-11-24 23:29:06.999911+00 f t ADELANTO 0.00 5 13465 \N +542833 2025-11-24 23:33:11.994558+00 2025-11-24 23:33:11.994564+00 f t COSTO_SERVICIO 0.00 2 13468 \N +542834 2025-11-24 23:33:11.995995+00 2025-11-24 23:33:11.996001+00 f t DESCUENTO 0.00 3 13468 \N +542835 2025-11-24 23:33:11.997239+00 2025-11-24 23:33:11.997248+00 f t TOTAL 46000.00 4 13468 \N +542836 2025-11-24 23:33:11.998708+00 2025-11-24 23:33:11.998713+00 f t ADELANTO 11000.00 5 13468 \N +543277 2025-11-25 00:38:35.19713+00 2025-11-25 00:38:35.197141+00 f t SUBTOTAL 55000.00 1 13480 \N +543278 2025-11-25 00:38:35.199022+00 2025-11-25 00:38:35.199032+00 f t COSTO_SERVICIO 0.00 2 13480 \N +543279 2025-11-25 00:38:35.20272+00 2025-11-25 00:38:35.20273+00 f t DESCUENTO 0.00 3 13480 \N +543280 2025-11-25 00:38:35.204384+00 2025-11-25 00:38:35.204394+00 f t TOTAL 55000.00 4 13480 \N +543281 2025-11-25 00:38:35.205987+00 2025-11-25 00:38:35.205995+00 f t ADELANTO 11000.00 5 13480 \N +537652 2025-11-24 04:07:29.193748+00 2025-11-24 04:07:29.193757+00 f t SUBTOTAL 55000.00 1 13351 \N +537653 2025-11-24 04:07:29.195737+00 2025-11-24 04:07:29.195748+00 f t COSTO_SERVICIO 0.00 2 13351 \N +537654 2025-11-24 04:07:29.197396+00 2025-11-24 04:07:29.197403+00 f t DESCUENTO 0.00 3 13351 \N +537655 2025-11-24 04:07:29.198729+00 2025-11-24 04:07:29.198738+00 f t TOTAL 55000.00 4 13351 \N +537656 2025-11-24 04:07:29.200029+00 2025-11-24 04:07:29.200036+00 f t ADELANTO 11000.00 5 13351 \N +535062 2025-11-23 14:47:30.118727+00 2025-11-23 14:47:30.118735+00 f t SUBTOTAL 46000.00 1 13287 \N +535063 2025-11-23 14:47:30.120616+00 2025-11-23 14:47:30.120623+00 f t COSTO_SERVICIO 0.00 2 13287 \N +535064 2025-11-23 14:47:30.121835+00 2025-11-23 14:47:30.121841+00 f t DESCUENTO 0.00 3 13287 \N +535065 2025-11-23 14:47:30.12341+00 2025-11-23 14:47:30.123417+00 f t TOTAL 46000.00 4 13287 \N +535066 2025-11-23 14:47:30.124527+00 2025-11-23 14:47:30.124532+00 f t ADELANTO 11000.00 5 13287 \N +535072 2025-11-23 14:47:50.278185+00 2025-11-23 14:47:50.278192+00 f t SUBTOTAL 55000.00 1 13286 \N +535073 2025-11-23 14:47:50.280005+00 2025-11-23 14:47:50.280011+00 f t COSTO_SERVICIO 0.00 2 13286 \N +535074 2025-11-23 14:47:50.2815+00 2025-11-23 14:47:50.281506+00 f t DESCUENTO 0.00 3 13286 \N +535075 2025-11-23 14:47:50.282681+00 2025-11-23 14:47:50.282686+00 f t TOTAL 55000.00 4 13286 \N +535076 2025-11-23 14:47:50.283754+00 2025-11-23 14:47:50.283759+00 f t ADELANTO 11000.00 5 13286 \N +535102 2025-11-23 14:50:50.012126+00 2025-11-23 14:50:50.012137+00 f t SUBTOTAL 55000.00 1 13288 \N +535103 2025-11-23 14:50:50.013932+00 2025-11-23 14:50:50.013941+00 f t COSTO_SERVICIO 0.00 2 13288 \N +535104 2025-11-23 14:50:50.015474+00 2025-11-23 14:50:50.015482+00 f t DESCUENTO 0.00 3 13288 \N +535105 2025-11-23 14:50:50.016897+00 2025-11-23 14:50:50.016903+00 f t TOTAL 55000.00 4 13288 \N +535106 2025-11-23 14:50:50.018158+00 2025-11-23 14:50:50.018164+00 f t ADELANTO 11000.00 5 13288 \N +535112 2025-11-23 15:01:15.169038+00 2025-11-23 15:01:15.169046+00 f t SUBTOTAL 0.00 1 13289 \N +535113 2025-11-23 15:01:15.170432+00 2025-11-23 15:01:15.170438+00 f t COSTO_SERVICIO 0.00 2 13289 \N +535114 2025-11-23 15:01:15.171488+00 2025-11-23 15:01:15.171494+00 f t DESCUENTO 0.00 3 13289 \N +535115 2025-11-23 15:01:15.172521+00 2025-11-23 15:01:15.172528+00 f t TOTAL 0.00 4 13289 \N +535116 2025-11-23 15:01:15.173498+00 2025-11-23 15:01:15.173503+00 f t ADELANTO 0.00 5 13289 \N +541697 2025-11-24 20:43:43.093663+00 2025-11-24 20:43:43.09367+00 f t SUBTOTAL 80000.00 1 13438 \N +541698 2025-11-24 20:43:43.095491+00 2025-11-24 20:43:43.095501+00 f t COSTO_SERVICIO 0.00 2 13438 \N +541699 2025-11-24 20:43:43.09686+00 2025-11-24 20:43:43.096869+00 f t DESCUENTO 0.00 3 13438 \N +541700 2025-11-24 20:43:43.098309+00 2025-11-24 20:43:43.098314+00 f t TOTAL 80000.00 4 13438 \N +541701 2025-11-24 20:43:43.099252+00 2025-11-24 20:43:43.099257+00 f t ADELANTO 45000.00 5 13438 \N +542447 2025-11-24 22:49:33.640616+00 2025-11-24 22:49:33.640623+00 f t SUBTOTAL 78000.00 1 13449 \N +542448 2025-11-24 22:49:33.64222+00 2025-11-24 22:49:33.642227+00 f t COSTO_SERVICIO 0.00 2 13449 \N +542449 2025-11-24 22:49:33.643476+00 2025-11-24 22:49:33.643482+00 f t DESCUENTO 0.00 3 13449 \N +542450 2025-11-24 22:49:33.644644+00 2025-11-24 22:49:33.644649+00 f t TOTAL 78000.00 4 13449 \N +542451 2025-11-24 22:49:33.645951+00 2025-11-24 22:49:33.645956+00 f t ADELANTO 21500.00 5 13449 \N +542712 2025-11-24 23:29:55.756666+00 2025-11-24 23:29:55.756675+00 f t SUBTOTAL 0.00 1 13466 \N +542713 2025-11-24 23:29:55.758022+00 2025-11-24 23:29:55.75803+00 f t COSTO_SERVICIO 0.00 2 13466 \N +542714 2025-11-24 23:29:55.759093+00 2025-11-24 23:29:55.759099+00 f t DESCUENTO 0.00 3 13466 \N +542715 2025-11-24 23:29:55.760105+00 2025-11-24 23:29:55.76011+00 f t TOTAL 0.00 4 13466 \N +542716 2025-11-24 23:29:55.761186+00 2025-11-24 23:29:55.761191+00 f t ADELANTO 0.00 5 13466 \N +535242 2025-11-23 15:17:23.624529+00 2025-11-23 15:17:23.624538+00 f t SUBTOTAL 164500.00 1 13290 \N +535243 2025-11-23 15:17:23.630036+00 2025-11-23 15:17:23.630043+00 f t COSTO_SERVICIO 0.00 2 13290 \N +535244 2025-11-23 15:17:23.631582+00 2025-11-23 15:17:23.63159+00 f t DESCUENTO 0.00 3 13290 \N +535245 2025-11-23 15:17:23.632738+00 2025-11-23 15:17:23.632745+00 f t TOTAL 164500.00 4 13290 \N +535246 2025-11-23 15:17:23.633932+00 2025-11-23 15:17:23.633937+00 f t ADELANTO 129500.00 5 13290 \N +535272 2025-11-23 15:54:08.717771+00 2025-11-23 15:54:08.717783+00 f t SUBTOTAL 54000.00 1 13291 \N +535273 2025-11-23 15:54:08.719782+00 2025-11-23 15:54:08.719788+00 f t COSTO_SERVICIO 0.00 2 13291 \N +535274 2025-11-23 15:54:08.721216+00 2025-11-23 15:54:08.721221+00 f t DESCUENTO 0.00 3 13291 \N +535275 2025-11-23 15:54:08.722314+00 2025-11-23 15:54:08.72232+00 f t TOTAL 54000.00 4 13291 \N +535276 2025-11-23 15:54:08.723612+00 2025-11-23 15:54:08.723654+00 f t ADELANTO 13500.00 5 13291 \N +535312 2025-11-23 16:11:18.188285+00 2025-11-23 16:11:18.188292+00 f t SUBTOTAL 46000.00 1 13292 \N +535313 2025-11-23 16:11:18.189916+00 2025-11-23 16:11:18.189922+00 f t COSTO_SERVICIO 0.00 2 13292 \N +535314 2025-11-23 16:11:18.191105+00 2025-11-23 16:11:18.191111+00 f t DESCUENTO 0.00 3 13292 \N +535315 2025-11-23 16:11:18.192104+00 2025-11-23 16:11:18.192113+00 f t TOTAL 46000.00 4 13292 \N +535316 2025-11-23 16:11:18.193193+00 2025-11-23 16:11:18.193199+00 f t ADELANTO 11000.00 5 13292 \N +535322 2025-11-23 16:21:04.142412+00 2025-11-23 16:21:04.142421+00 f t SUBTOTAL 55000.00 1 13277 \N +535323 2025-11-23 16:21:04.144218+00 2025-11-23 16:21:04.144226+00 f t COSTO_SERVICIO 0.00 2 13277 \N +535324 2025-11-23 16:21:04.145824+00 2025-11-23 16:21:04.14583+00 f t DESCUENTO 0.00 3 13277 \N +535325 2025-11-23 16:21:04.147176+00 2025-11-23 16:21:04.147182+00 f t TOTAL 55000.00 4 13277 \N +535326 2025-11-23 16:21:04.148631+00 2025-11-23 16:21:04.148637+00 f t ADELANTO 11000.00 5 13277 \N +537662 2025-11-24 04:20:58.043785+00 2025-11-24 04:20:58.043797+00 f t SUBTOTAL 0.00 1 13352 \N +537663 2025-11-24 04:20:58.045365+00 2025-11-24 04:20:58.045372+00 f t COSTO_SERVICIO 0.00 2 13352 \N +535332 2025-11-23 16:25:01.382287+00 2025-11-23 16:25:01.382302+00 f t SUBTOTAL 0.00 1 13293 \N +535333 2025-11-23 16:25:01.386223+00 2025-11-23 16:25:01.386238+00 f t COSTO_SERVICIO 0.00 2 13293 \N +535334 2025-11-23 16:25:01.38901+00 2025-11-23 16:25:01.38902+00 f t DESCUENTO 0.00 3 13293 \N +535335 2025-11-23 16:25:01.392258+00 2025-11-23 16:25:01.39227+00 f t TOTAL 0.00 4 13293 \N +535336 2025-11-23 16:25:01.396991+00 2025-11-23 16:25:01.397006+00 f t ADELANTO 0.00 5 13293 \N +537664 2025-11-24 04:20:58.046741+00 2025-11-24 04:20:58.046749+00 f t DESCUENTO 0.00 3 13352 \N +537665 2025-11-24 04:20:58.047972+00 2025-11-24 04:20:58.047981+00 f t TOTAL 0.00 4 13352 \N +537666 2025-11-24 04:20:58.048972+00 2025-11-24 04:20:58.048978+00 f t ADELANTO 0.00 5 13352 \N +537882 2025-11-24 05:41:55.882504+00 2025-11-24 05:41:55.882512+00 f t SUBTOTAL 20500.00 1 13357 \N +537883 2025-11-24 05:41:55.88409+00 2025-11-24 05:41:55.884097+00 f t COSTO_SERVICIO 0.00 2 13357 \N +537884 2025-11-24 05:41:55.88513+00 2025-11-24 05:41:55.885136+00 f t DESCUENTO 0.00 3 13357 \N +537885 2025-11-24 05:41:55.886369+00 2025-11-24 05:41:55.886375+00 f t TOTAL 20500.00 4 13357 \N +537886 2025-11-24 05:41:55.88747+00 2025-11-24 05:41:55.887476+00 f t ADELANTO 20500.00 5 13357 \N +539072 2025-11-24 12:20:41.087791+00 2025-11-24 12:20:41.0878+00 f t SUBTOTAL 55000.00 1 13382 \N +539073 2025-11-24 12:20:41.089543+00 2025-11-24 12:20:41.089551+00 f t COSTO_SERVICIO 0.00 2 13382 \N +539074 2025-11-24 12:20:41.090728+00 2025-11-24 12:20:41.090733+00 f t DESCUENTO 0.00 3 13382 \N +539075 2025-11-24 12:20:41.091788+00 2025-11-24 12:20:41.091793+00 f t TOTAL 55000.00 4 13382 \N +539076 2025-11-24 12:20:41.093097+00 2025-11-24 12:20:41.093105+00 f t ADELANTO 11000.00 5 13382 \N +539252 2025-11-24 12:31:12.554607+00 2025-11-24 12:31:12.554614+00 f t SUBTOTAL 55000.00 1 13387 \N +539253 2025-11-24 12:31:12.556613+00 2025-11-24 12:31:12.55662+00 f t COSTO_SERVICIO 0.00 2 13387 \N +539254 2025-11-24 12:31:12.55796+00 2025-11-24 12:31:12.557968+00 f t DESCUENTO 0.00 3 13387 \N +539255 2025-11-24 12:31:12.559061+00 2025-11-24 12:31:12.559067+00 f t TOTAL 55000.00 4 13387 \N +539256 2025-11-24 12:31:12.560586+00 2025-11-24 12:31:12.560591+00 f t ADELANTO 11000.00 5 13387 \N +535397 2025-11-23 17:00:59.101728+00 2025-11-23 17:00:59.101741+00 f t SUBTOTAL 55000.00 1 13294 \N +535398 2025-11-23 17:00:59.103794+00 2025-11-23 17:00:59.103804+00 f t COSTO_SERVICIO 0.00 2 13294 \N +535399 2025-11-23 17:00:59.105654+00 2025-11-23 17:00:59.105663+00 f t DESCUENTO 0.00 3 13294 \N +535400 2025-11-23 17:00:59.107182+00 2025-11-23 17:00:59.107191+00 f t TOTAL 55000.00 4 13294 \N +535401 2025-11-23 17:00:59.108748+00 2025-11-23 17:00:59.108756+00 f t ADELANTO 11000.00 5 13294 \N +535402 2025-11-23 17:01:00.798917+00 2025-11-23 17:01:00.798928+00 f t SUBTOTAL 55000.00 1 13295 \N +535403 2025-11-23 17:01:00.804077+00 2025-11-23 17:01:00.80409+00 f t COSTO_SERVICIO 0.00 2 13295 \N +535404 2025-11-23 17:01:00.806164+00 2025-11-23 17:01:00.806175+00 f t DESCUENTO 0.00 3 13295 \N +535405 2025-11-23 17:01:00.808346+00 2025-11-23 17:01:00.808354+00 f t TOTAL 55000.00 4 13295 \N +535406 2025-11-23 17:01:00.809939+00 2025-11-23 17:01:00.809945+00 f t ADELANTO 11000.00 5 13295 \N +535437 2025-11-23 17:03:22.243273+00 2025-11-23 17:03:22.24328+00 f t SUBTOTAL 55000.00 1 13296 \N +535438 2025-11-23 17:03:22.244792+00 2025-11-23 17:03:22.2448+00 f t COSTO_SERVICIO 0.00 2 13296 \N +535439 2025-11-23 17:03:22.24593+00 2025-11-23 17:03:22.245944+00 f t DESCUENTO 0.00 3 13296 \N +535440 2025-11-23 17:03:22.247022+00 2025-11-23 17:03:22.24703+00 f t TOTAL 55000.00 4 13296 \N +535441 2025-11-23 17:03:22.248133+00 2025-11-23 17:03:22.248138+00 f t ADELANTO 11000.00 5 13296 \N +535447 2025-11-23 17:10:27.443128+00 2025-11-23 17:10:27.44317+00 f t SUBTOTAL 0.00 1 13297 \N +535448 2025-11-23 17:10:27.445074+00 2025-11-23 17:10:27.445085+00 f t COSTO_SERVICIO 0.00 2 13297 \N +535449 2025-11-23 17:10:27.446521+00 2025-11-23 17:10:27.44653+00 f t DESCUENTO 0.00 3 13297 \N +535450 2025-11-23 17:10:27.447889+00 2025-11-23 17:10:27.447895+00 f t TOTAL 0.00 4 13297 \N +535451 2025-11-23 17:10:27.449161+00 2025-11-23 17:10:27.449166+00 f t ADELANTO 0.00 5 13297 \N +535487 2025-11-23 17:13:48.963856+00 2025-11-23 17:13:48.963866+00 f t SUBTOTAL 55000.00 1 13298 \N +535488 2025-11-23 17:13:48.965811+00 2025-11-23 17:13:48.96582+00 f t COSTO_SERVICIO 0.00 2 13298 \N +535489 2025-11-23 17:13:48.967352+00 2025-11-23 17:13:48.967358+00 f t DESCUENTO 0.00 3 13298 \N +535490 2025-11-23 17:13:48.968627+00 2025-11-23 17:13:48.968632+00 f t TOTAL 55000.00 4 13298 \N +535491 2025-11-23 17:13:48.969824+00 2025-11-23 17:13:48.96983+00 f t ADELANTO 11000.00 5 13298 \N +535497 2025-11-23 17:13:54.514091+00 2025-11-23 17:13:54.5141+00 f t SUBTOTAL 0.00 1 13299 \N +535498 2025-11-23 17:13:54.515762+00 2025-11-23 17:13:54.515768+00 f t COSTO_SERVICIO 0.00 2 13299 \N +535499 2025-11-23 17:13:54.516969+00 2025-11-23 17:13:54.516974+00 f t DESCUENTO 0.00 3 13299 \N +535500 2025-11-23 17:13:54.518184+00 2025-11-23 17:13:54.51819+00 f t TOTAL 0.00 4 13299 \N +535501 2025-11-23 17:13:54.519348+00 2025-11-23 17:13:54.519355+00 f t ADELANTO 0.00 5 13299 \N +535532 2025-11-23 18:12:04.189296+00 2025-11-23 18:12:04.189303+00 f t SUBTOTAL 70000.00 1 13300 \N +535533 2025-11-23 18:12:04.191306+00 2025-11-23 18:12:04.191313+00 f t COSTO_SERVICIO 0.00 2 13300 \N +535534 2025-11-23 18:12:04.192782+00 2025-11-23 18:12:04.192792+00 f t DESCUENTO 0.00 3 13300 \N +535535 2025-11-23 18:12:04.194573+00 2025-11-23 18:12:04.194582+00 f t TOTAL 70000.00 4 13300 \N +535536 2025-11-23 18:12:04.196284+00 2025-11-23 18:12:04.196292+00 f t ADELANTO 19000.00 5 13300 \N +535542 2025-11-23 18:22:34.865551+00 2025-11-23 18:22:34.86556+00 f t SUBTOTAL 0.00 1 13301 \N +535543 2025-11-23 18:22:34.866984+00 2025-11-23 18:22:34.866991+00 f t COSTO_SERVICIO 0.00 2 13301 \N +535544 2025-11-23 18:22:34.868002+00 2025-11-23 18:22:34.868008+00 f t DESCUENTO 0.00 3 13301 \N +535545 2025-11-23 18:22:34.868896+00 2025-11-23 18:22:34.868901+00 f t TOTAL 0.00 4 13301 \N +535546 2025-11-23 18:22:34.869987+00 2025-11-23 18:22:34.869992+00 f t ADELANTO 0.00 5 13301 \N +535577 2025-11-23 18:24:32.907571+00 2025-11-23 18:24:32.907582+00 f t SUBTOTAL 0.00 1 13302 \N +535578 2025-11-23 18:24:32.909594+00 2025-11-23 18:24:32.909601+00 f t COSTO_SERVICIO 0.00 2 13302 \N +535579 2025-11-23 18:24:32.910766+00 2025-11-23 18:24:32.910773+00 f t DESCUENTO 0.00 3 13302 \N +535580 2025-11-23 18:24:32.911726+00 2025-11-23 18:24:32.911732+00 f t TOTAL 0.00 4 13302 \N +535581 2025-11-23 18:24:32.913207+00 2025-11-23 18:24:32.913212+00 f t ADELANTO 0.00 5 13302 \N +549137 2025-11-25 22:52:07.064924+00 2025-11-25 22:52:07.064933+00 f t SUBTOTAL 78000.00 1 13615 \N +549138 2025-11-25 22:52:07.066298+00 2025-11-25 22:52:07.066305+00 f t COSTO_SERVICIO 0.00 2 13615 \N +549139 2025-11-25 22:52:07.067322+00 2025-11-25 22:52:07.067331+00 f t DESCUENTO 0.00 3 13615 \N +549140 2025-11-25 22:52:07.068168+00 2025-11-25 22:52:07.068175+00 f t TOTAL 78000.00 4 13615 \N +549141 2025-11-25 22:52:07.068902+00 2025-11-25 22:52:07.068906+00 f t ADELANTO 13000.00 5 13615 \N +535602 2025-11-23 18:34:56.814921+00 2025-11-23 18:34:56.814929+00 f t SUBTOTAL 120000.00 1 13303 \N +535603 2025-11-23 18:34:56.816395+00 2025-11-23 18:34:56.816401+00 f t COSTO_SERVICIO 0.00 2 13303 \N +535604 2025-11-23 18:34:56.817418+00 2025-11-23 18:34:56.817423+00 f t DESCUENTO 0.00 3 13303 \N +535605 2025-11-23 18:34:56.818401+00 2025-11-23 18:34:56.818406+00 f t TOTAL 120000.00 4 13303 \N +535606 2025-11-23 18:34:56.819369+00 2025-11-23 18:34:56.819374+00 f t ADELANTO 10000.00 5 13303 \N +535652 2025-11-23 18:40:33.362822+00 2025-11-23 18:40:33.3629+00 f t SUBTOTAL 0.00 1 13305 \N +535653 2025-11-23 18:40:33.365423+00 2025-11-23 18:40:33.365434+00 f t COSTO_SERVICIO 0.00 2 13305 \N +535654 2025-11-23 18:40:33.36718+00 2025-11-23 18:40:33.36719+00 f t DESCUENTO 0.00 3 13305 \N +535655 2025-11-23 18:40:33.368599+00 2025-11-23 18:40:33.368606+00 f t TOTAL 0.00 4 13305 \N +535656 2025-11-23 18:40:33.369941+00 2025-11-23 18:40:33.369949+00 f t ADELANTO 0.00 5 13305 \N +535667 2025-11-23 18:44:55.714938+00 2025-11-23 18:44:55.714947+00 f t SUBTOTAL 120000.00 1 13304 \N +535668 2025-11-23 18:44:55.71687+00 2025-11-23 18:44:55.716877+00 f t COSTO_SERVICIO 0.00 2 13304 \N +535669 2025-11-23 18:44:55.718562+00 2025-11-23 18:44:55.718572+00 f t DESCUENTO 0.00 3 13304 \N +535670 2025-11-23 18:44:55.720227+00 2025-11-23 18:44:55.720236+00 f t TOTAL 120000.00 4 13304 \N +535671 2025-11-23 18:44:55.721702+00 2025-11-23 18:44:55.721712+00 f t ADELANTO 10000.00 5 13304 \N +535672 2025-11-23 18:46:00.725263+00 2025-11-23 18:46:00.725273+00 f t SUBTOTAL 0.00 1 13270 \N +535673 2025-11-23 18:46:00.727695+00 2025-11-23 18:46:00.727703+00 f t COSTO_SERVICIO 0.00 2 13270 \N +535674 2025-11-23 18:46:00.731498+00 2025-11-23 18:46:00.731506+00 f t DESCUENTO 0.00 3 13270 \N +535675 2025-11-23 18:46:00.733216+00 2025-11-23 18:46:00.733224+00 f t TOTAL 0.00 4 13270 \N +535676 2025-11-23 18:46:00.734691+00 2025-11-23 18:46:00.734698+00 f t ADELANTO 0.00 5 13270 \N +539082 2025-11-24 12:21:37.310827+00 2025-11-24 12:21:37.310837+00 f t SUBTOTAL 0.00 1 13383 \N +535682 2025-11-23 18:46:30.030046+00 2025-11-23 18:46:30.030055+00 f t SUBTOTAL 0.00 1 13306 \N +535683 2025-11-23 18:46:30.031486+00 2025-11-23 18:46:30.031495+00 f t COSTO_SERVICIO 0.00 2 13306 \N +535684 2025-11-23 18:46:30.032736+00 2025-11-23 18:46:30.032745+00 f t DESCUENTO 0.00 3 13306 \N +535685 2025-11-23 18:46:30.034239+00 2025-11-23 18:46:30.034245+00 f t TOTAL 0.00 4 13306 \N +535686 2025-11-23 18:46:30.035269+00 2025-11-23 18:46:30.035275+00 f t ADELANTO 0.00 5 13306 \N +539083 2025-11-24 12:21:37.312147+00 2025-11-24 12:21:37.312153+00 f t COSTO_SERVICIO 0.00 2 13383 \N +539084 2025-11-24 12:21:37.31305+00 2025-11-24 12:21:37.313055+00 f t DESCUENTO 0.00 3 13383 \N +539085 2025-11-24 12:21:37.314005+00 2025-11-24 12:21:37.314011+00 f t TOTAL 0.00 4 13383 \N +539086 2025-11-24 12:21:37.314942+00 2025-11-24 12:21:37.314948+00 f t ADELANTO 0.00 5 13383 \N +542952 2025-11-25 00:01:39.895927+00 2025-11-25 00:01:39.895934+00 f t SUBTOTAL 54000.00 1 13472 \N +542953 2025-11-25 00:01:39.897825+00 2025-11-25 00:01:39.897833+00 f t COSTO_SERVICIO 0.00 2 13472 \N +542954 2025-11-25 00:01:39.900091+00 2025-11-25 00:01:39.900102+00 f t DESCUENTO 0.00 3 13472 \N +542955 2025-11-25 00:01:39.901362+00 2025-11-25 00:01:39.901373+00 f t TOTAL 54000.00 4 13472 \N +542956 2025-11-25 00:01:39.902723+00 2025-11-25 00:01:39.902729+00 f t ADELANTO 13500.00 5 13472 \N +543447 2025-11-25 00:50:50.636333+00 2025-11-25 00:50:50.636344+00 f t SUBTOTAL 82500.00 1 13483 \N +543448 2025-11-25 00:50:50.638258+00 2025-11-25 00:50:50.638267+00 f t COSTO_SERVICIO 0.00 2 13483 \N +543449 2025-11-25 00:50:50.639783+00 2025-11-25 00:50:50.639791+00 f t DESCUENTO 0.00 3 13483 \N +543450 2025-11-25 00:50:50.641271+00 2025-11-25 00:50:50.641279+00 f t TOTAL 82500.00 4 13483 \N +543451 2025-11-25 00:50:50.642447+00 2025-11-25 00:50:50.642454+00 f t ADELANTO 11000.00 5 13483 \N +543657 2025-11-25 01:22:29.276642+00 2025-11-25 01:22:29.276656+00 f t SUBTOTAL 78000.00 1 13487 \N +543658 2025-11-25 01:22:29.27873+00 2025-11-25 01:22:29.278742+00 f t COSTO_SERVICIO 0.00 2 13487 \N +543659 2025-11-25 01:22:29.280631+00 2025-11-25 01:22:29.280641+00 f t DESCUENTO 0.00 3 13487 \N +543660 2025-11-25 01:22:29.282158+00 2025-11-25 01:22:29.282168+00 f t TOTAL 78000.00 4 13487 \N +543661 2025-11-25 01:22:29.28374+00 2025-11-25 01:22:29.283749+00 f t ADELANTO 21500.00 5 13487 \N +549757 2025-11-26 02:30:38.44237+00 2025-11-26 02:30:38.442376+00 f t SUBTOTAL 124000.00 1 13635 \N +549758 2025-11-26 02:30:38.444503+00 2025-11-26 02:30:38.44451+00 f t COSTO_SERVICIO 0.00 2 13635 \N +549759 2025-11-26 02:30:38.44567+00 2025-11-26 02:30:38.445675+00 f t DESCUENTO 9200.00 3 13635 \N +549760 2025-11-26 02:30:38.446799+00 2025-11-26 02:30:38.446804+00 f t TOTAL 114800.00 4 13635 \N +549761 2025-11-26 02:30:38.447796+00 2025-11-26 02:30:38.447801+00 f t ADELANTO 32500.00 5 13635 \N +543672 2025-11-25 01:29:23.709661+00 2025-11-25 01:29:23.709674+00 f t SUBTOTAL 0.00 1 13486 \N +543673 2025-11-25 01:29:23.711733+00 2025-11-25 01:29:23.711741+00 f t COSTO_SERVICIO 0.00 2 13486 \N +543674 2025-11-25 01:29:23.713033+00 2025-11-25 01:29:23.713041+00 f t DESCUENTO 0.00 3 13486 \N +543675 2025-11-25 01:29:23.7141+00 2025-11-25 01:29:23.714107+00 f t TOTAL 0.00 4 13486 \N +543676 2025-11-25 01:29:23.715303+00 2025-11-25 01:29:23.715308+00 f t ADELANTO 0.00 5 13486 \N +543717 2025-11-25 01:31:44.399372+00 2025-11-25 01:31:44.399383+00 f t SUBTOTAL 121000.00 1 13488 \N +543718 2025-11-25 01:31:44.401095+00 2025-11-25 01:31:44.401104+00 f t COSTO_SERVICIO 0.00 2 13488 \N +543719 2025-11-25 01:31:44.402429+00 2025-11-25 01:31:44.402437+00 f t DESCUENTO 0.00 3 13488 \N +543720 2025-11-25 01:31:44.40357+00 2025-11-25 01:31:44.403577+00 f t TOTAL 121000.00 4 13488 \N +543721 2025-11-25 01:31:44.404791+00 2025-11-25 01:31:44.404797+00 f t ADELANTO 26000.00 5 13488 \N +543772 2025-11-25 01:33:32.092582+00 2025-11-25 01:33:32.092591+00 f t SUBTOTAL 55000.00 1 13489 \N +543773 2025-11-25 01:33:32.09426+00 2025-11-25 01:33:32.094267+00 f t COSTO_SERVICIO 0.00 2 13489 \N +543774 2025-11-25 01:33:32.09568+00 2025-11-25 01:33:32.095695+00 f t DESCUENTO 0.00 3 13489 \N +543775 2025-11-25 01:33:32.096791+00 2025-11-25 01:33:32.096796+00 f t TOTAL 55000.00 4 13489 \N +543776 2025-11-25 01:33:32.097881+00 2025-11-25 01:33:32.097889+00 f t ADELANTO 11000.00 5 13489 \N +543822 2025-11-25 01:39:16.397924+00 2025-11-25 01:39:16.397937+00 f t SUBTOTAL 70000.00 1 13490 \N +543823 2025-11-25 01:39:16.39989+00 2025-11-25 01:39:16.3999+00 f t COSTO_SERVICIO 0.00 2 13490 \N +543824 2025-11-25 01:39:16.401445+00 2025-11-25 01:39:16.401454+00 f t DESCUENTO 0.00 3 13490 \N +543825 2025-11-25 01:39:16.402921+00 2025-11-25 01:39:16.40293+00 f t TOTAL 70000.00 4 13490 \N +543826 2025-11-25 01:39:16.404257+00 2025-11-25 01:39:16.404264+00 f t ADELANTO 19000.00 5 13490 \N +543842 2025-11-25 01:40:48.569684+00 2025-11-25 01:40:48.569691+00 f t SUBTOTAL 70000.00 1 13491 \N +543843 2025-11-25 01:40:48.571384+00 2025-11-25 01:40:48.57139+00 f t COSTO_SERVICIO 0.00 2 13491 \N +543844 2025-11-25 01:40:48.572548+00 2025-11-25 01:40:48.572553+00 f t DESCUENTO 0.00 3 13491 \N +543845 2025-11-25 01:40:48.573471+00 2025-11-25 01:40:48.573476+00 f t TOTAL 70000.00 4 13491 \N +543846 2025-11-25 01:40:48.574538+00 2025-11-25 01:40:48.574543+00 f t ADELANTO 19000.00 5 13491 \N +543957 2025-11-25 02:01:06.608683+00 2025-11-25 02:01:06.608694+00 f t SUBTOTAL 0.00 1 13494 \N +543958 2025-11-25 02:01:06.612785+00 2025-11-25 02:01:06.612799+00 f t COSTO_SERVICIO 0.00 2 13494 \N +543959 2025-11-25 02:01:06.616664+00 2025-11-25 02:01:06.616677+00 f t DESCUENTO 0.00 3 13494 \N +543960 2025-11-25 02:01:06.619011+00 2025-11-25 02:01:06.619024+00 f t TOTAL 0.00 4 13494 \N +543961 2025-11-25 02:01:06.620924+00 2025-11-25 02:01:06.620933+00 f t ADELANTO 0.00 5 13494 \N +543997 2025-11-25 02:01:38.131051+00 2025-11-25 02:01:38.131062+00 f t SUBTOTAL 54000.00 1 13495 \N +543998 2025-11-25 02:01:38.135401+00 2025-11-25 02:01:38.135411+00 f t COSTO_SERVICIO 0.00 2 13495 \N +543999 2025-11-25 02:01:38.140797+00 2025-11-25 02:01:38.140807+00 f t DESCUENTO 0.00 3 13495 \N +544000 2025-11-25 02:01:38.142461+00 2025-11-25 02:01:38.14247+00 f t TOTAL 54000.00 4 13495 \N +544001 2025-11-25 02:01:38.143917+00 2025-11-25 02:01:38.143926+00 f t ADELANTO 13500.00 5 13495 \N +544102 2025-11-25 02:03:21.232979+00 2025-11-25 02:03:21.232989+00 f t SUBTOTAL 102000.00 1 13496 \N +544103 2025-11-25 02:03:21.234699+00 2025-11-25 02:03:21.234708+00 f t COSTO_SERVICIO 0.00 2 13496 \N +544104 2025-11-25 02:03:21.235987+00 2025-11-25 02:03:21.235995+00 f t DESCUENTO 0.00 3 13496 \N +544105 2025-11-25 02:03:21.237046+00 2025-11-25 02:03:21.237054+00 f t TOTAL 102000.00 4 13496 \N +544106 2025-11-25 02:03:21.238131+00 2025-11-25 02:03:21.238139+00 f t ADELANTO 29500.00 5 13496 \N +544127 2025-11-25 02:03:42.383094+00 2025-11-25 02:03:42.383102+00 f t SUBTOTAL 70000.00 1 13497 \N +544128 2025-11-25 02:03:42.384557+00 2025-11-25 02:03:42.384563+00 f t COSTO_SERVICIO 0.00 2 13497 \N +544129 2025-11-25 02:03:42.385748+00 2025-11-25 02:03:42.385754+00 f t DESCUENTO 0.00 3 13497 \N +544130 2025-11-25 02:03:42.387203+00 2025-11-25 02:03:42.387209+00 f t TOTAL 70000.00 4 13497 \N +544131 2025-11-25 02:03:42.388224+00 2025-11-25 02:03:42.388229+00 f t ADELANTO 19000.00 5 13497 \N +544137 2025-11-25 02:03:55.734152+00 2025-11-25 02:03:55.734161+00 f t SUBTOTAL 78000.00 1 13493 \N +544138 2025-11-25 02:03:55.735874+00 2025-11-25 02:03:55.735881+00 f t COSTO_SERVICIO 0.00 2 13493 \N +544139 2025-11-25 02:03:55.738366+00 2025-11-25 02:03:55.738373+00 f t DESCUENTO 0.00 3 13493 \N +544140 2025-11-25 02:03:55.739817+00 2025-11-25 02:03:55.739823+00 f t TOTAL 78000.00 4 13493 \N +544141 2025-11-25 02:03:55.741114+00 2025-11-25 02:03:55.74112+00 f t ADELANTO 21500.00 5 13493 \N +548487 2025-11-25 21:11:46.94398+00 2025-11-25 21:11:46.943987+00 f t SUBTOTAL 78000.00 1 13602 \N +548488 2025-11-25 21:11:46.945614+00 2025-11-25 21:11:46.94562+00 f t COSTO_SERVICIO 0.00 2 13602 \N +548489 2025-11-25 21:11:46.946899+00 2025-11-25 21:11:46.946905+00 f t DESCUENTO 0.00 3 13602 \N +548490 2025-11-25 21:11:46.948081+00 2025-11-25 21:11:46.948086+00 f t TOTAL 78000.00 4 13602 \N +548491 2025-11-25 21:11:46.949077+00 2025-11-25 21:11:46.949082+00 f t ADELANTO 21500.00 5 13602 \N +544302 2025-11-25 02:10:08.699752+00 2025-11-25 02:10:08.699764+00 f t SUBTOTAL 46000.00 1 13499 \N +544303 2025-11-25 02:10:08.702074+00 2025-11-25 02:10:08.702087+00 f t COSTO_SERVICIO 0.00 2 13499 \N +544304 2025-11-25 02:10:08.704128+00 2025-11-25 02:10:08.70414+00 f t DESCUENTO 0.00 3 13499 \N +544305 2025-11-25 02:10:08.705792+00 2025-11-25 02:10:08.705802+00 f t TOTAL 46000.00 4 13499 \N +544306 2025-11-25 02:10:08.707424+00 2025-11-25 02:10:08.707434+00 f t ADELANTO 11000.00 5 13499 \N +544327 2025-11-25 02:10:41.976549+00 2025-11-25 02:10:41.976559+00 f t SUBTOTAL 0.00 1 13500 \N +544328 2025-11-25 02:10:41.97875+00 2025-11-25 02:10:41.978761+00 f t COSTO_SERVICIO 0.00 2 13500 \N +544329 2025-11-25 02:10:41.980157+00 2025-11-25 02:10:41.980168+00 f t DESCUENTO 0.00 3 13500 \N +544330 2025-11-25 02:10:41.981383+00 2025-11-25 02:10:41.98139+00 f t TOTAL 0.00 4 13500 \N +544331 2025-11-25 02:10:41.982719+00 2025-11-25 02:10:41.982728+00 f t ADELANTO 0.00 5 13500 \N +544337 2025-11-25 02:30:48.7578+00 2025-11-25 02:30:48.757813+00 f t SUBTOTAL 0.00 1 13501 \N +544338 2025-11-25 02:30:48.759781+00 2025-11-25 02:30:48.759792+00 f t COSTO_SERVICIO 0.00 2 13501 \N +544339 2025-11-25 02:30:48.761487+00 2025-11-25 02:30:48.761499+00 f t DESCUENTO 0.00 3 13501 \N +544340 2025-11-25 02:30:48.762972+00 2025-11-25 02:30:48.762983+00 f t TOTAL 0.00 4 13501 \N +544341 2025-11-25 02:30:48.764951+00 2025-11-25 02:30:48.764959+00 f t ADELANTO 0.00 5 13501 \N +544347 2025-11-25 02:44:17.119104+00 2025-11-25 02:44:17.119112+00 f t SUBTOTAL 46000.00 1 13365 \N +544348 2025-11-25 02:44:17.120684+00 2025-11-25 02:44:17.120691+00 f t COSTO_SERVICIO 0.00 2 13365 \N +544349 2025-11-25 02:44:17.121623+00 2025-11-25 02:44:17.121628+00 f t DESCUENTO 0.00 3 13365 \N +544350 2025-11-25 02:44:17.122515+00 2025-11-25 02:44:17.12252+00 f t TOTAL 46000.00 4 13365 \N +544351 2025-11-25 02:44:17.123326+00 2025-11-25 02:44:17.123331+00 f t ADELANTO 11000.00 5 13365 \N +544442 2025-11-25 03:05:00.163503+00 2025-11-25 03:05:00.163515+00 f t SUBTOTAL 92000.00 1 13502 \N +544443 2025-11-25 03:05:00.165631+00 2025-11-25 03:05:00.165643+00 f t COSTO_SERVICIO 0.00 2 13502 \N +544444 2025-11-25 03:05:00.167302+00 2025-11-25 03:05:00.167312+00 f t DESCUENTO 9200.00 3 13502 \N +544445 2025-11-25 03:05:00.168864+00 2025-11-25 03:05:00.168874+00 f t TOTAL 82800.00 4 13502 \N +544446 2025-11-25 03:05:00.170317+00 2025-11-25 03:05:00.170325+00 f t ADELANTO 22000.00 5 13502 \N +544452 2025-11-25 03:17:55.414627+00 2025-11-25 03:17:55.414636+00 f t SUBTOTAL 0.00 1 13503 \N +544453 2025-11-25 03:17:55.416261+00 2025-11-25 03:17:55.41627+00 f t COSTO_SERVICIO 0.00 2 13503 \N +544454 2025-11-25 03:17:55.417567+00 2025-11-25 03:17:55.417576+00 f t DESCUENTO 0.00 3 13503 \N +544455 2025-11-25 03:17:55.418927+00 2025-11-25 03:17:55.418934+00 f t TOTAL 0.00 4 13503 \N +544456 2025-11-25 03:17:55.420145+00 2025-11-25 03:17:55.420151+00 f t ADELANTO 0.00 5 13503 \N +544462 2025-11-25 04:02:36.032974+00 2025-11-25 04:02:36.032984+00 f t SUBTOTAL 0.00 1 13504 \N +544463 2025-11-25 04:02:36.034631+00 2025-11-25 04:02:36.03464+00 f t COSTO_SERVICIO 0.00 2 13504 \N +544464 2025-11-25 04:02:36.036562+00 2025-11-25 04:02:36.036571+00 f t DESCUENTO 0.00 3 13504 \N +544465 2025-11-25 04:02:36.037923+00 2025-11-25 04:02:36.037935+00 f t TOTAL 0.00 4 13504 \N +544466 2025-11-25 04:02:36.042384+00 2025-11-25 04:02:36.042392+00 f t ADELANTO 0.00 5 13504 \N +544472 2025-11-25 04:41:19.918292+00 2025-11-25 04:41:19.918301+00 f t SUBTOTAL 0.00 1 13505 \N +544473 2025-11-25 04:41:19.919903+00 2025-11-25 04:41:19.919909+00 f t COSTO_SERVICIO 0.00 2 13505 \N +544474 2025-11-25 04:41:19.920977+00 2025-11-25 04:41:19.920983+00 f t DESCUENTO 0.00 3 13505 \N +544475 2025-11-25 04:41:19.921891+00 2025-11-25 04:41:19.921896+00 f t TOTAL 0.00 4 13505 \N +544476 2025-11-25 04:41:19.92296+00 2025-11-25 04:41:19.922965+00 f t ADELANTO 0.00 5 13505 \N +544482 2025-11-25 10:00:39.433359+00 2025-11-25 10:00:39.433368+00 f t SUBTOTAL 0.00 1 13506 \N +544483 2025-11-25 10:00:39.435453+00 2025-11-25 10:00:39.435462+00 f t COSTO_SERVICIO 0.00 2 13506 \N +544484 2025-11-25 10:00:39.43674+00 2025-11-25 10:00:39.436747+00 f t DESCUENTO 0.00 3 13506 \N +544485 2025-11-25 10:00:39.437787+00 2025-11-25 10:00:39.437792+00 f t TOTAL 0.00 4 13506 \N +544486 2025-11-25 10:00:39.438948+00 2025-11-25 10:00:39.438954+00 f t ADELANTO 0.00 5 13506 \N +548847 2025-11-25 22:20:35.998549+00 2025-11-25 22:20:35.998561+00 f t SUBTOTAL 46000.00 1 13611 \N +548848 2025-11-25 22:20:36.000655+00 2025-11-25 22:20:36.000666+00 f t COSTO_SERVICIO 0.00 2 13611 \N +548849 2025-11-25 22:20:36.002413+00 2025-11-25 22:20:36.002423+00 f t DESCUENTO 0.00 3 13611 \N +548850 2025-11-25 22:20:36.004116+00 2025-11-25 22:20:36.004127+00 f t TOTAL 46000.00 4 13611 \N +548851 2025-11-25 22:20:36.005681+00 2025-11-25 22:20:36.005691+00 f t ADELANTO 11000.00 5 13611 \N +544602 2025-11-25 10:06:31.355219+00 2025-11-25 10:06:31.355227+00 f t SUBTOTAL 79000.00 1 13507 \N +544603 2025-11-25 10:06:31.357312+00 2025-11-25 10:06:31.35732+00 f t COSTO_SERVICIO 0.00 2 13507 \N +544604 2025-11-25 10:06:31.358605+00 2025-11-25 10:06:31.358611+00 f t DESCUENTO 0.00 3 13507 \N +544605 2025-11-25 10:06:31.35972+00 2025-11-25 10:06:31.359727+00 f t TOTAL 79000.00 4 13507 \N +544606 2025-11-25 10:06:31.360744+00 2025-11-25 10:06:31.36075+00 f t ADELANTO 17500.00 5 13507 \N +544632 2025-11-25 10:39:18.796289+00 2025-11-25 10:39:18.796297+00 f t SUBTOTAL 55000.00 1 13508 \N +544633 2025-11-25 10:39:18.797837+00 2025-11-25 10:39:18.797848+00 f t COSTO_SERVICIO 0.00 2 13508 \N +544634 2025-11-25 10:39:18.799085+00 2025-11-25 10:39:18.799091+00 f t DESCUENTO 0.00 3 13508 \N +544635 2025-11-25 10:39:18.8003+00 2025-11-25 10:39:18.800307+00 f t TOTAL 55000.00 4 13508 \N +544636 2025-11-25 10:39:18.80154+00 2025-11-25 10:39:18.80155+00 f t ADELANTO 11000.00 5 13508 \N +544792 2025-11-25 10:58:05.206162+00 2025-11-25 10:58:05.20617+00 f t SUBTOTAL 55000.00 1 13509 \N +544793 2025-11-25 10:58:05.209256+00 2025-11-25 10:58:05.209265+00 f t COSTO_SERVICIO 0.00 2 13509 \N +544794 2025-11-25 10:58:05.21089+00 2025-11-25 10:58:05.210898+00 f t DESCUENTO 0.00 3 13509 \N +544795 2025-11-25 10:58:05.212428+00 2025-11-25 10:58:05.212435+00 f t TOTAL 55000.00 4 13509 \N +544796 2025-11-25 10:58:05.213967+00 2025-11-25 10:58:05.213973+00 f t ADELANTO 11000.00 5 13509 \N +544817 2025-11-25 11:04:38.845542+00 2025-11-25 11:04:38.845556+00 f t SUBTOTAL 0.00 1 13510 \N +544818 2025-11-25 11:04:38.848064+00 2025-11-25 11:04:38.848074+00 f t COSTO_SERVICIO 0.00 2 13510 \N +544819 2025-11-25 11:04:38.849706+00 2025-11-25 11:04:38.849714+00 f t DESCUENTO 0.00 3 13510 \N +544820 2025-11-25 11:04:38.851078+00 2025-11-25 11:04:38.851084+00 f t TOTAL 0.00 4 13510 \N +544821 2025-11-25 11:04:38.852329+00 2025-11-25 11:04:38.852335+00 f t ADELANTO 0.00 5 13510 \N +549467 2025-11-26 00:35:48.371437+00 2025-11-26 00:35:48.371444+00 f t SUBTOTAL 55000.00 1 13623 \N +549468 2025-11-26 00:35:48.372914+00 2025-11-26 00:35:48.37292+00 f t COSTO_SERVICIO 0.00 2 13623 \N +549469 2025-11-26 00:35:48.373997+00 2025-11-26 00:35:48.374002+00 f t DESCUENTO 0.00 3 13623 \N +549470 2025-11-26 00:35:48.375059+00 2025-11-26 00:35:48.375064+00 f t TOTAL 55000.00 4 13623 \N +549471 2025-11-26 00:35:48.376002+00 2025-11-26 00:35:48.376009+00 f t ADELANTO 11000.00 5 13623 \N +544827 2025-11-25 11:36:50.725623+00 2025-11-25 11:36:50.725633+00 f t SUBTOTAL 0.00 1 13511 \N +544828 2025-11-25 11:36:50.727368+00 2025-11-25 11:36:50.727376+00 f t COSTO_SERVICIO 0.00 2 13511 \N +544829 2025-11-25 11:36:50.728526+00 2025-11-25 11:36:50.728534+00 f t DESCUENTO 0.00 3 13511 \N +544830 2025-11-25 11:36:50.729518+00 2025-11-25 11:36:50.729524+00 f t TOTAL 0.00 4 13511 \N +544831 2025-11-25 11:36:50.730512+00 2025-11-25 11:36:50.730519+00 f t ADELANTO 0.00 5 13511 \N +544857 2025-11-25 11:48:53.076772+00 2025-11-25 11:48:53.07678+00 f t SUBTOTAL 55000.00 1 13512 \N +544858 2025-11-25 11:48:53.078378+00 2025-11-25 11:48:53.078385+00 f t COSTO_SERVICIO 0.00 2 13512 \N +544859 2025-11-25 11:48:53.079451+00 2025-11-25 11:48:53.07946+00 f t DESCUENTO 0.00 3 13512 \N +544860 2025-11-25 11:48:53.080494+00 2025-11-25 11:48:53.0805+00 f t TOTAL 55000.00 4 13512 \N +544861 2025-11-25 11:48:53.081635+00 2025-11-25 11:48:53.08164+00 f t ADELANTO 11000.00 5 13512 \N +544887 2025-11-25 11:56:28.808051+00 2025-11-25 11:56:28.80806+00 f t SUBTOTAL 0.00 1 13513 \N +544888 2025-11-25 11:56:28.810101+00 2025-11-25 11:56:28.81011+00 f t COSTO_SERVICIO 0.00 2 13513 \N +544889 2025-11-25 11:56:28.811348+00 2025-11-25 11:56:28.811354+00 f t DESCUENTO 0.00 3 13513 \N +544890 2025-11-25 11:56:28.812514+00 2025-11-25 11:56:28.81252+00 f t TOTAL 0.00 4 13513 \N +544891 2025-11-25 11:56:28.813579+00 2025-11-25 11:56:28.813584+00 f t ADELANTO 0.00 5 13513 \N +545037 2025-11-25 12:09:35.234943+00 2025-11-25 12:09:35.234955+00 f t SUBTOTAL 46000.00 1 13514 \N +545038 2025-11-25 12:09:35.236169+00 2025-11-25 12:09:35.236178+00 f t COSTO_SERVICIO 0.00 2 13514 \N +545039 2025-11-25 12:09:35.23707+00 2025-11-25 12:09:35.237078+00 f t DESCUENTO 0.00 3 13514 \N +545040 2025-11-25 12:09:35.23804+00 2025-11-25 12:09:35.238049+00 f t TOTAL 46000.00 4 13514 \N +545041 2025-11-25 12:09:35.238852+00 2025-11-25 12:09:35.23886+00 f t ADELANTO 11000.00 5 13514 \N +545047 2025-11-25 12:15:32.143736+00 2025-11-25 12:15:32.143745+00 f t SUBTOTAL 0.00 1 13515 \N +545048 2025-11-25 12:15:32.146362+00 2025-11-25 12:15:32.14637+00 f t COSTO_SERVICIO 0.00 2 13515 \N +545049 2025-11-25 12:15:32.147798+00 2025-11-25 12:15:32.147808+00 f t DESCUENTO 0.00 3 13515 \N +545050 2025-11-25 12:15:32.149745+00 2025-11-25 12:15:32.149754+00 f t TOTAL 0.00 4 13515 \N +545051 2025-11-25 12:15:32.151321+00 2025-11-25 12:15:32.151329+00 f t ADELANTO 0.00 5 13515 \N +545057 2025-11-25 12:24:23.480755+00 2025-11-25 12:24:23.480764+00 f t SUBTOTAL 0.00 1 13516 \N +545058 2025-11-25 12:24:23.482158+00 2025-11-25 12:24:23.482169+00 f t COSTO_SERVICIO 0.00 2 13516 \N +545059 2025-11-25 12:24:23.483494+00 2025-11-25 12:24:23.483501+00 f t DESCUENTO 0.00 3 13516 \N +545060 2025-11-25 12:24:23.484673+00 2025-11-25 12:24:23.48468+00 f t TOTAL 0.00 4 13516 \N +545061 2025-11-25 12:24:23.485715+00 2025-11-25 12:24:23.485721+00 f t ADELANTO 0.00 5 13516 \N +545062 2025-11-25 12:27:50.496306+00 2025-11-25 12:27:50.496313+00 f t SUBTOTAL 78000.00 1 13492 \N +545063 2025-11-25 12:27:50.498009+00 2025-11-25 12:27:50.498014+00 f t COSTO_SERVICIO 0.00 2 13492 \N +545064 2025-11-25 12:27:50.499533+00 2025-11-25 12:27:50.499539+00 f t DESCUENTO 0.00 3 13492 \N +545065 2025-11-25 12:27:50.500703+00 2025-11-25 12:27:50.500708+00 f t TOTAL 78000.00 4 13492 \N +545066 2025-11-25 12:27:50.501757+00 2025-11-25 12:27:50.501762+00 f t ADELANTO 21500.00 5 13492 \N +545072 2025-11-25 12:29:16.244919+00 2025-11-25 12:29:16.244931+00 f t SUBTOTAL 0.00 1 13517 \N +545073 2025-11-25 12:29:16.246328+00 2025-11-25 12:29:16.246335+00 f t COSTO_SERVICIO 0.00 2 13517 \N +545074 2025-11-25 12:29:16.247504+00 2025-11-25 12:29:16.247511+00 f t DESCUENTO 0.00 3 13517 \N +545075 2025-11-25 12:29:16.248678+00 2025-11-25 12:29:16.248684+00 f t TOTAL 0.00 4 13517 \N +545076 2025-11-25 12:29:16.249577+00 2025-11-25 12:29:16.249582+00 f t ADELANTO 0.00 5 13517 \N +545117 2025-11-25 12:37:45.316102+00 2025-11-25 12:37:45.316115+00 f t SUBTOTAL 0.00 1 13518 \N +545118 2025-11-25 12:37:45.318345+00 2025-11-25 12:37:45.318355+00 f t COSTO_SERVICIO 0.00 2 13518 \N +545119 2025-11-25 12:37:45.319807+00 2025-11-25 12:37:45.319817+00 f t DESCUENTO 0.00 3 13518 \N +545120 2025-11-25 12:37:45.321125+00 2025-11-25 12:37:45.321133+00 f t TOTAL 0.00 4 13518 \N +545121 2025-11-25 12:37:45.322508+00 2025-11-25 12:37:45.322516+00 f t ADELANTO 0.00 5 13518 \N +545177 2025-11-25 12:44:03.011755+00 2025-11-25 12:44:03.011764+00 f t SUBTOTAL 0.00 1 13520 \N +545178 2025-11-25 12:44:03.01348+00 2025-11-25 12:44:03.013487+00 f t COSTO_SERVICIO 0.00 2 13520 \N +545179 2025-11-25 12:44:03.01488+00 2025-11-25 12:44:03.014887+00 f t DESCUENTO 0.00 3 13520 \N +545180 2025-11-25 12:44:03.016321+00 2025-11-25 12:44:03.016328+00 f t TOTAL 0.00 4 13520 \N +545181 2025-11-25 12:44:03.017572+00 2025-11-25 12:44:03.017578+00 f t ADELANTO 0.00 5 13520 \N +545212 2025-11-25 12:52:32.152008+00 2025-11-25 12:52:32.152015+00 f t SUBTOTAL 54000.00 1 13521 \N +545213 2025-11-25 12:52:32.153627+00 2025-11-25 12:52:32.153632+00 f t COSTO_SERVICIO 0.00 2 13521 \N +545214 2025-11-25 12:52:32.154677+00 2025-11-25 12:52:32.154682+00 f t DESCUENTO 0.00 3 13521 \N +545215 2025-11-25 12:52:32.155661+00 2025-11-25 12:52:32.155666+00 f t TOTAL 54000.00 4 13521 \N +545216 2025-11-25 12:52:32.156638+00 2025-11-25 12:52:32.156643+00 f t ADELANTO 13500.00 5 13521 \N +545277 2025-11-25 12:56:00.071213+00 2025-11-25 12:56:00.071222+00 f t SUBTOTAL 99400.00 1 13523 \N +545278 2025-11-25 12:56:00.072893+00 2025-11-25 12:56:00.0729+00 f t COSTO_SERVICIO 0.00 2 13523 \N +545279 2025-11-25 12:56:00.074182+00 2025-11-25 12:56:00.074188+00 f t DESCUENTO 0.00 3 13523 \N +545280 2025-11-25 12:56:00.075367+00 2025-11-25 12:56:00.075373+00 f t TOTAL 99400.00 4 13523 \N +545281 2025-11-25 12:56:00.07647+00 2025-11-25 12:56:00.076475+00 f t ADELANTO 58900.00 5 13523 \N +545307 2025-11-25 12:57:13.043173+00 2025-11-25 12:57:13.043182+00 f t SUBTOTAL 32500.00 1 13524 \N +545308 2025-11-25 12:57:13.044807+00 2025-11-25 12:57:13.044814+00 f t COSTO_SERVICIO 0.00 2 13524 \N +545309 2025-11-25 12:57:13.045982+00 2025-11-25 12:57:13.045988+00 f t DESCUENTO 0.00 3 13524 \N +545310 2025-11-25 12:57:13.046967+00 2025-11-25 12:57:13.046972+00 f t TOTAL 32500.00 4 13524 \N +545311 2025-11-25 12:57:13.047881+00 2025-11-25 12:57:13.047887+00 f t ADELANTO 32500.00 5 13524 \N +545327 2025-11-25 13:13:35.942565+00 2025-11-25 13:13:35.942576+00 f t SUBTOTAL 0.00 1 13526 \N +545328 2025-11-25 13:13:35.94418+00 2025-11-25 13:13:35.944189+00 f t COSTO_SERVICIO 0.00 2 13526 \N +545329 2025-11-25 13:13:35.945491+00 2025-11-25 13:13:35.945498+00 f t DESCUENTO 0.00 3 13526 \N +545330 2025-11-25 13:13:35.946487+00 2025-11-25 13:13:35.946492+00 f t TOTAL 0.00 4 13526 \N +545331 2025-11-25 13:13:35.947421+00 2025-11-25 13:13:35.947426+00 f t ADELANTO 0.00 5 13526 \N +548867 2025-11-25 22:35:43.391298+00 2025-11-25 22:35:43.391308+00 f t SUBTOTAL 0.00 1 13612 \N +548868 2025-11-25 22:35:43.393629+00 2025-11-25 22:35:43.393636+00 f t COSTO_SERVICIO 0.00 2 13612 \N +548869 2025-11-25 22:35:43.395031+00 2025-11-25 22:35:43.395037+00 f t DESCUENTO 0.00 3 13612 \N +548870 2025-11-25 22:35:43.396414+00 2025-11-25 22:35:43.39642+00 f t TOTAL 0.00 4 13612 \N +548871 2025-11-25 22:35:43.397496+00 2025-11-25 22:35:43.397502+00 f t ADELANTO 0.00 5 13612 \N +545417 2025-11-25 13:15:44.172382+00 2025-11-25 13:15:44.172393+00 f t SUBTOTAL 55000.00 1 13527 \N +545418 2025-11-25 13:15:44.174403+00 2025-11-25 13:15:44.174413+00 f t COSTO_SERVICIO 0.00 2 13527 \N +545419 2025-11-25 13:15:44.17597+00 2025-11-25 13:15:44.17598+00 f t DESCUENTO 0.00 3 13527 \N +545420 2025-11-25 13:15:44.17751+00 2025-11-25 13:15:44.17752+00 f t TOTAL 55000.00 4 13527 \N +545421 2025-11-25 13:15:44.179039+00 2025-11-25 13:15:44.179048+00 f t ADELANTO 11000.00 5 13527 \N +545472 2025-11-25 13:36:51.870383+00 2025-11-25 13:36:51.870417+00 f t SUBTOTAL 0.00 1 13529 \N +545473 2025-11-25 13:36:51.875332+00 2025-11-25 13:36:51.875346+00 f t COSTO_SERVICIO 0.00 2 13529 \N +545474 2025-11-25 13:36:51.877028+00 2025-11-25 13:36:51.877037+00 f t DESCUENTO 0.00 3 13529 \N +545475 2025-11-25 13:36:51.878533+00 2025-11-25 13:36:51.878541+00 f t TOTAL 0.00 4 13529 \N +545476 2025-11-25 13:36:51.879833+00 2025-11-25 13:36:51.879841+00 f t ADELANTO 0.00 5 13529 \N +545497 2025-11-25 13:38:11.65116+00 2025-11-25 13:38:11.651593+00 f t SUBTOTAL 0.00 1 13530 \N +545498 2025-11-25 13:38:11.657684+00 2025-11-25 13:38:11.657696+00 f t COSTO_SERVICIO 0.00 2 13530 \N +545499 2025-11-25 13:38:11.659761+00 2025-11-25 13:38:11.659767+00 f t DESCUENTO 0.00 3 13530 \N +545500 2025-11-25 13:38:11.660913+00 2025-11-25 13:38:11.660919+00 f t TOTAL 0.00 4 13530 \N +545501 2025-11-25 13:38:11.662035+00 2025-11-25 13:38:11.662041+00 f t ADELANTO 0.00 5 13530 \N +545502 2025-11-25 13:41:56.745323+00 2025-11-25 13:41:56.74533+00 f t SUBTOTAL 46000.00 1 13525 \N +545503 2025-11-25 13:41:56.74736+00 2025-11-25 13:41:56.747367+00 f t COSTO_SERVICIO 0.00 2 13525 \N +545504 2025-11-25 13:41:56.748477+00 2025-11-25 13:41:56.748485+00 f t DESCUENTO 0.00 3 13525 \N +545505 2025-11-25 13:41:56.749925+00 2025-11-25 13:41:56.749933+00 f t TOTAL 46000.00 4 13525 \N +545506 2025-11-25 13:41:56.751043+00 2025-11-25 13:41:56.751048+00 f t ADELANTO 11000.00 5 13525 \N +545507 2025-11-25 13:42:58.606898+00 2025-11-25 13:42:58.606909+00 f t SUBTOTAL 78000.00 1 13498 \N +545508 2025-11-25 13:42:58.610679+00 2025-11-25 13:42:58.61069+00 f t COSTO_SERVICIO 0.00 2 13498 \N +545509 2025-11-25 13:42:58.612587+00 2025-11-25 13:42:58.612596+00 f t DESCUENTO 0.00 3 13498 \N +545510 2025-11-25 13:42:58.613825+00 2025-11-25 13:42:58.61383+00 f t TOTAL 78000.00 4 13498 \N +545511 2025-11-25 13:42:58.615018+00 2025-11-25 13:42:58.615025+00 f t ADELANTO 21500.00 5 13498 \N +545512 2025-11-25 13:44:49.118065+00 2025-11-25 13:44:49.118072+00 f t SUBTOTAL 46000.00 1 13522 \N +545513 2025-11-25 13:44:49.119849+00 2025-11-25 13:44:49.119859+00 f t COSTO_SERVICIO 0.00 2 13522 \N +545514 2025-11-25 13:44:49.121078+00 2025-11-25 13:44:49.121086+00 f t DESCUENTO 0.00 3 13522 \N +545515 2025-11-25 13:44:49.122571+00 2025-11-25 13:44:49.122579+00 f t TOTAL 46000.00 4 13522 \N +545516 2025-11-25 13:44:49.123695+00 2025-11-25 13:44:49.1237+00 f t ADELANTO 11000.00 5 13522 \N +545557 2025-11-25 13:51:55.640674+00 2025-11-25 13:51:55.64068+00 f t SUBTOTAL 46000.00 1 13531 \N +545558 2025-11-25 13:51:55.642344+00 2025-11-25 13:51:55.64235+00 f t COSTO_SERVICIO 0.00 2 13531 \N +545559 2025-11-25 13:51:55.643455+00 2025-11-25 13:51:55.64346+00 f t DESCUENTO 0.00 3 13531 \N +545560 2025-11-25 13:51:55.644431+00 2025-11-25 13:51:55.644435+00 f t TOTAL 46000.00 4 13531 \N +545561 2025-11-25 13:51:55.645555+00 2025-11-25 13:51:55.64556+00 f t ADELANTO 11000.00 5 13531 \N +545567 2025-11-25 13:55:07.628536+00 2025-11-25 13:55:07.628549+00 f t SUBTOTAL 101000.00 1 13519 \N +545568 2025-11-25 13:55:07.631261+00 2025-11-25 13:55:07.631281+00 f t COSTO_SERVICIO 0.00 2 13519 \N +545569 2025-11-25 13:55:07.633177+00 2025-11-25 13:55:07.633184+00 f t DESCUENTO 10100.00 3 13519 \N +545570 2025-11-25 13:55:07.635148+00 2025-11-25 13:55:07.635158+00 f t TOTAL 90900.00 4 13519 \N +545571 2025-11-25 13:55:07.636806+00 2025-11-25 13:55:07.636813+00 f t ADELANTO 22000.00 5 13519 \N +545622 2025-11-25 14:06:43.305544+00 2025-11-25 14:06:43.305552+00 f t SUBTOTAL 34000.00 1 13532 \N +545623 2025-11-25 14:06:43.307538+00 2025-11-25 14:06:43.307545+00 f t COSTO_SERVICIO 0.00 2 13532 \N +545624 2025-11-25 14:06:43.308942+00 2025-11-25 14:06:43.308947+00 f t DESCUENTO 0.00 3 13532 \N +545625 2025-11-25 14:06:43.310056+00 2025-11-25 14:06:43.310061+00 f t TOTAL 34000.00 4 13532 \N +545626 2025-11-25 14:06:43.31123+00 2025-11-25 14:06:43.311235+00 f t ADELANTO 34000.00 5 13532 \N +545647 2025-11-25 14:09:46.817679+00 2025-11-25 14:09:46.817687+00 f t SUBTOTAL 55000.00 1 13533 \N +545648 2025-11-25 14:09:46.819313+00 2025-11-25 14:09:46.819319+00 f t COSTO_SERVICIO 0.00 2 13533 \N +545649 2025-11-25 14:09:46.820381+00 2025-11-25 14:09:46.820387+00 f t DESCUENTO 0.00 3 13533 \N +545650 2025-11-25 14:09:46.821332+00 2025-11-25 14:09:46.821337+00 f t TOTAL 55000.00 4 13533 \N +545651 2025-11-25 14:09:46.822288+00 2025-11-25 14:09:46.822295+00 f t ADELANTO 11000.00 5 13533 \N +545652 2025-11-25 14:10:30.818274+00 2025-11-25 14:10:30.818282+00 f t SUBTOTAL 46000.00 1 13528 \N +545653 2025-11-25 14:10:30.820388+00 2025-11-25 14:10:30.820395+00 f t COSTO_SERVICIO 0.00 2 13528 \N +545654 2025-11-25 14:10:30.822119+00 2025-11-25 14:10:30.822128+00 f t DESCUENTO 0.00 3 13528 \N +545655 2025-11-25 14:10:30.823295+00 2025-11-25 14:10:30.823301+00 f t TOTAL 46000.00 4 13528 \N +545656 2025-11-25 14:10:30.824468+00 2025-11-25 14:10:30.824479+00 f t ADELANTO 11000.00 5 13528 \N +549797 2025-11-26 03:35:05.404594+00 2025-11-26 03:35:05.404607+00 f t SUBTOTAL 69000.00 1 13636 \N +549798 2025-11-26 03:35:05.407218+00 2025-11-26 03:35:05.40723+00 f t COSTO_SERVICIO 0.00 2 13636 \N +549799 2025-11-26 03:35:05.410387+00 2025-11-26 03:35:05.4104+00 f t DESCUENTO 0.00 3 13636 \N +549800 2025-11-26 03:35:05.41271+00 2025-11-26 03:35:05.412723+00 f t TOTAL 69000.00 4 13636 \N +549801 2025-11-26 03:35:05.415195+00 2025-11-26 03:35:05.415207+00 f t ADELANTO 11000.00 5 13636 \N +547032 2025-11-25 16:43:47.234601+00 2025-11-25 16:43:47.234611+00 f t SUBTOTAL 0.00 1 13563 \N +547033 2025-11-25 16:43:47.236102+00 2025-11-25 16:43:47.236108+00 f t COSTO_SERVICIO 0.00 2 13563 \N +547034 2025-11-25 16:43:47.23719+00 2025-11-25 16:43:47.237195+00 f t DESCUENTO 0.00 3 13563 \N +547035 2025-11-25 16:43:47.238236+00 2025-11-25 16:43:47.23824+00 f t TOTAL 0.00 4 13563 \N +547036 2025-11-25 16:43:47.239199+00 2025-11-25 16:43:47.239204+00 f t ADELANTO 0.00 5 13563 \N +547852 2025-11-25 19:06:03.160494+00 2025-11-25 19:06:03.160506+00 f t SUBTOTAL 46000.00 1 13587 \N +547853 2025-11-25 19:06:03.163137+00 2025-11-25 19:06:03.163148+00 f t COSTO_SERVICIO 0.00 2 13587 \N +547854 2025-11-25 19:06:03.165389+00 2025-11-25 19:06:03.165399+00 f t DESCUENTO 0.00 3 13587 \N +547855 2025-11-25 19:06:03.167741+00 2025-11-25 19:06:03.167752+00 f t TOTAL 46000.00 4 13587 \N +547856 2025-11-25 19:06:03.169968+00 2025-11-25 19:06:03.169979+00 f t ADELANTO 11000.00 5 13587 \N +547972 2025-11-25 19:40:29.591386+00 2025-11-25 19:40:29.591394+00 f t SUBTOTAL 0.00 1 13591 \N +547973 2025-11-25 19:40:29.592736+00 2025-11-25 19:40:29.592743+00 f t COSTO_SERVICIO 0.00 2 13591 \N +547974 2025-11-25 19:40:29.593704+00 2025-11-25 19:40:29.59371+00 f t DESCUENTO 0.00 3 13591 \N +547975 2025-11-25 19:40:29.594709+00 2025-11-25 19:40:29.594714+00 f t TOTAL 0.00 4 13591 \N +547976 2025-11-25 19:40:29.595537+00 2025-11-25 19:40:29.595544+00 f t ADELANTO 0.00 5 13591 \N +549497 2025-11-26 00:40:08.211996+00 2025-11-26 00:40:08.212009+00 f t SUBTOTAL 54000.00 1 13625 \N +549498 2025-11-26 00:40:08.21476+00 2025-11-26 00:40:08.214773+00 f t COSTO_SERVICIO 0.00 2 13625 \N +549499 2025-11-26 00:40:08.217059+00 2025-11-26 00:40:08.21707+00 f t DESCUENTO 0.00 3 13625 \N +549500 2025-11-26 00:40:08.219188+00 2025-11-26 00:40:08.2192+00 f t TOTAL 54000.00 4 13625 \N +549501 2025-11-26 00:40:08.221069+00 2025-11-26 00:40:08.22108+00 f t ADELANTO 13500.00 5 13625 \N +546227 2025-11-25 14:53:32.971187+00 2025-11-25 14:53:32.971197+00 f t SUBTOTAL 55000.00 1 13542 \N +546228 2025-11-25 14:53:32.973184+00 2025-11-25 14:53:32.973191+00 f t COSTO_SERVICIO 0.00 2 13542 \N +546229 2025-11-25 14:53:32.974481+00 2025-11-25 14:53:32.974487+00 f t DESCUENTO 0.00 3 13542 \N +546230 2025-11-25 14:53:32.975808+00 2025-11-25 14:53:32.975813+00 f t TOTAL 55000.00 4 13542 \N +546231 2025-11-25 14:53:32.977154+00 2025-11-25 14:53:32.97716+00 f t ADELANTO 11000.00 5 13542 \N +546342 2025-11-25 15:28:19.549262+00 2025-11-25 15:28:19.549274+00 f t SUBTOTAL 70000.00 1 13545 \N +546343 2025-11-25 15:28:19.551398+00 2025-11-25 15:28:19.551409+00 f t COSTO_SERVICIO 0.00 2 13545 \N +546344 2025-11-25 15:28:19.553276+00 2025-11-25 15:28:19.553287+00 f t DESCUENTO 0.00 3 13545 \N +546345 2025-11-25 15:28:19.55492+00 2025-11-25 15:28:19.554929+00 f t TOTAL 70000.00 4 13545 \N +546346 2025-11-25 15:28:19.556383+00 2025-11-25 15:28:19.556391+00 f t ADELANTO 19000.00 5 13545 \N +547487 2025-11-25 18:00:32.857505+00 2025-11-25 18:00:32.857514+00 f t SUBTOTAL 46000.00 1 13573 \N +547488 2025-11-25 18:00:32.859096+00 2025-11-25 18:00:32.859102+00 f t COSTO_SERVICIO 0.00 2 13573 \N +547489 2025-11-25 18:00:32.860198+00 2025-11-25 18:00:32.860203+00 f t DESCUENTO 0.00 3 13573 \N +547490 2025-11-25 18:00:32.861234+00 2025-11-25 18:00:32.86124+00 f t TOTAL 46000.00 4 13573 \N +547491 2025-11-25 18:00:32.86221+00 2025-11-25 18:00:32.862215+00 f t ADELANTO 11000.00 5 13573 \N +547862 2025-11-25 19:07:26.65227+00 2025-11-25 19:07:26.652279+00 f t SUBTOTAL 0.00 1 13588 \N +547863 2025-11-25 19:07:26.653537+00 2025-11-25 19:07:26.653542+00 f t COSTO_SERVICIO 0.00 2 13588 \N +547864 2025-11-25 19:07:26.654651+00 2025-11-25 19:07:26.654657+00 f t DESCUENTO 0.00 3 13588 \N +547865 2025-11-25 19:07:26.655534+00 2025-11-25 19:07:26.655539+00 f t TOTAL 0.00 4 13588 \N +547866 2025-11-25 19:07:26.65653+00 2025-11-25 19:07:26.656552+00 f t ADELANTO 0.00 5 13588 \N +549507 2025-11-26 00:49:07.297232+00 2025-11-26 00:49:07.297241+00 f t SUBTOTAL 0.00 1 13626 \N +549508 2025-11-26 00:49:07.299043+00 2025-11-26 00:49:07.29905+00 f t COSTO_SERVICIO 0.00 2 13626 \N +549509 2025-11-26 00:49:07.300348+00 2025-11-26 00:49:07.300358+00 f t DESCUENTO 0.00 3 13626 \N +549510 2025-11-26 00:49:07.30156+00 2025-11-26 00:49:07.301567+00 f t TOTAL 0.00 4 13626 \N +549511 2025-11-26 00:49:07.302725+00 2025-11-26 00:49:07.302731+00 f t ADELANTO 0.00 5 13626 \N +546347 2025-11-25 15:28:39.991216+00 2025-11-25 15:28:39.991228+00 f t SUBTOTAL 23000.00 1 13544 \N +546348 2025-11-25 15:28:39.993042+00 2025-11-25 15:28:39.993052+00 f t COSTO_SERVICIO 0.00 2 13544 \N +546349 2025-11-25 15:28:39.994652+00 2025-11-25 15:28:39.994664+00 f t DESCUENTO 0.00 3 13544 \N +546350 2025-11-25 15:28:39.996164+00 2025-11-25 15:28:39.996174+00 f t TOTAL 23000.00 4 13544 \N +546351 2025-11-25 15:28:39.997838+00 2025-11-25 15:28:39.997847+00 f t ADELANTO 5500.00 5 13544 \N +547627 2025-11-25 18:39:52.698037+00 2025-11-25 18:39:52.698044+00 f t SUBTOTAL 120000.00 1 13579 \N +547628 2025-11-25 18:39:52.699695+00 2025-11-25 18:39:52.699702+00 f t COSTO_SERVICIO 0.00 2 13579 \N +547629 2025-11-25 18:39:52.700696+00 2025-11-25 18:39:52.700701+00 f t DESCUENTO 0.00 3 13579 \N +547630 2025-11-25 18:39:52.701595+00 2025-11-25 18:39:52.7016+00 f t TOTAL 120000.00 4 13579 \N +547631 2025-11-25 18:39:52.702513+00 2025-11-25 18:39:52.702518+00 f t ADELANTO 10000.00 5 13579 \N +547987 2025-11-25 19:45:41.031138+00 2025-11-25 19:45:41.031145+00 f t SUBTOTAL 55000.00 1 13592 \N +547988 2025-11-25 19:45:41.032785+00 2025-11-25 19:45:41.03279+00 f t COSTO_SERVICIO 0.00 2 13592 \N +547989 2025-11-25 19:45:41.034012+00 2025-11-25 19:45:41.034021+00 f t DESCUENTO 0.00 3 13592 \N +547990 2025-11-25 19:45:41.035322+00 2025-11-25 19:45:41.035329+00 f t TOTAL 55000.00 4 13592 \N +547991 2025-11-25 19:45:41.036578+00 2025-11-25 19:45:41.036586+00 f t ADELANTO 11000.00 5 13592 \N +548112 2025-11-25 20:19:50.986153+00 2025-11-25 20:19:50.986162+00 f t SUBTOTAL 0.00 1 13596 \N +548113 2025-11-25 20:19:50.988169+00 2025-11-25 20:19:50.988178+00 f t COSTO_SERVICIO 0.00 2 13596 \N +548114 2025-11-25 20:19:50.989229+00 2025-11-25 20:19:50.989235+00 f t DESCUENTO 0.00 3 13596 \N +548115 2025-11-25 20:19:50.990079+00 2025-11-25 20:19:50.990084+00 f t TOTAL 0.00 4 13596 \N +548116 2025-11-25 20:19:50.990992+00 2025-11-25 20:19:50.990997+00 f t ADELANTO 0.00 5 13596 \N +545802 2025-11-25 14:14:21.760775+00 2025-11-25 14:14:21.760784+00 f t SUBTOTAL 0.00 1 13535 \N +545803 2025-11-25 14:14:21.762686+00 2025-11-25 14:14:21.762695+00 f t COSTO_SERVICIO 0.00 2 13535 \N +545804 2025-11-25 14:14:21.763789+00 2025-11-25 14:14:21.763795+00 f t DESCUENTO 0.00 3 13535 \N +545805 2025-11-25 14:14:21.764872+00 2025-11-25 14:14:21.764878+00 f t TOTAL 0.00 4 13535 \N +545806 2025-11-25 14:14:21.76594+00 2025-11-25 14:14:21.765946+00 f t ADELANTO 0.00 5 13535 \N +548897 2025-11-25 22:36:48.794527+00 2025-11-25 22:36:48.794534+00 f t SUBTOTAL 121000.00 1 13613 \N +548898 2025-11-25 22:36:48.796846+00 2025-11-25 22:36:48.796857+00 f t COSTO_SERVICIO 0.00 2 13613 \N +548899 2025-11-25 22:36:48.798071+00 2025-11-25 22:36:48.798076+00 f t DESCUENTO 0.00 3 13613 \N +548900 2025-11-25 22:36:48.798985+00 2025-11-25 22:36:48.79899+00 f t TOTAL 121000.00 4 13613 \N +548901 2025-11-25 22:36:48.799842+00 2025-11-25 22:36:48.799847+00 f t ADELANTO 26000.00 5 13613 \N +549517 2025-11-26 00:51:58.031805+00 2025-11-26 00:51:58.031815+00 f t SUBTOTAL 0.00 1 13627 \N +549518 2025-11-26 00:51:58.033368+00 2025-11-26 00:51:58.033377+00 f t COSTO_SERVICIO 0.00 2 13627 \N +549519 2025-11-26 00:51:58.034564+00 2025-11-26 00:51:58.034569+00 f t DESCUENTO 0.00 3 13627 \N +549520 2025-11-26 00:51:58.035554+00 2025-11-26 00:51:58.035559+00 f t TOTAL 0.00 4 13627 \N +549521 2025-11-26 00:51:58.036465+00 2025-11-26 00:51:58.03647+00 f t ADELANTO 0.00 5 13627 \N +548117 2025-11-25 20:25:21.92195+00 2025-11-25 20:25:21.92196+00 f t SUBTOTAL 0.00 1 13463 \N +548118 2025-11-25 20:25:21.923981+00 2025-11-25 20:25:21.923988+00 f t COSTO_SERVICIO 0.00 2 13463 \N +548119 2025-11-25 20:25:21.924988+00 2025-11-25 20:25:21.924994+00 f t DESCUENTO 0.00 3 13463 \N +548120 2025-11-25 20:25:21.925945+00 2025-11-25 20:25:21.925951+00 f t TOTAL 0.00 4 13463 \N +548121 2025-11-25 20:25:21.92693+00 2025-11-25 20:25:21.926935+00 f t ADELANTO 0.00 5 13463 \N +549212 2025-11-25 23:10:57.70798+00 2025-11-25 23:10:57.707987+00 f t SUBTOTAL 55000.00 1 13618 \N +549213 2025-11-25 23:10:57.709771+00 2025-11-25 23:10:57.709779+00 f t COSTO_SERVICIO 0.00 2 13618 \N +549214 2025-11-25 23:10:57.711056+00 2025-11-25 23:10:57.711064+00 f t DESCUENTO 0.00 3 13618 \N +549215 2025-11-25 23:10:57.712157+00 2025-11-25 23:10:57.712162+00 f t TOTAL 55000.00 4 13618 \N +549216 2025-11-25 23:10:57.713805+00 2025-11-25 23:10:57.71381+00 f t ADELANTO 11000.00 5 13618 \N +549527 2025-11-26 01:05:15.290698+00 2025-11-26 01:05:15.290707+00 f t SUBTOTAL 0.00 1 13628 \N +549528 2025-11-26 01:05:15.292325+00 2025-11-26 01:05:15.292334+00 f t COSTO_SERVICIO 0.00 2 13628 \N +549529 2025-11-26 01:05:15.293645+00 2025-11-26 01:05:15.293653+00 f t DESCUENTO 0.00 3 13628 \N +549530 2025-11-26 01:05:15.295155+00 2025-11-26 01:05:15.295164+00 f t TOTAL 0.00 4 13628 \N +549531 2025-11-26 01:05:15.296414+00 2025-11-26 01:05:15.296422+00 f t ADELANTO 0.00 5 13628 \N +547057 2025-11-25 16:45:04.879046+00 2025-11-25 16:45:04.879061+00 f t SUBTOTAL 0.00 1 13564 \N +547058 2025-11-25 16:45:04.897116+00 2025-11-25 16:45:04.897131+00 f t COSTO_SERVICIO 0.00 2 13564 \N +547059 2025-11-25 16:45:04.900368+00 2025-11-25 16:45:04.900378+00 f t DESCUENTO 0.00 3 13564 \N +547060 2025-11-25 16:45:04.904106+00 2025-11-25 16:45:04.904121+00 f t TOTAL 0.00 4 13564 \N +547061 2025-11-25 16:45:04.918422+00 2025-11-25 16:45:04.918437+00 f t ADELANTO 0.00 5 13564 \N +547637 2025-11-25 18:40:00.703286+00 2025-11-25 18:40:00.703733+00 f t SUBTOTAL 0.00 1 13580 \N +547638 2025-11-25 18:40:00.710553+00 2025-11-25 18:40:00.710562+00 f t COSTO_SERVICIO 0.00 2 13580 \N +547639 2025-11-25 18:40:00.712096+00 2025-11-25 18:40:00.712104+00 f t DESCUENTO 0.00 3 13580 \N +547640 2025-11-25 18:40:00.713568+00 2025-11-25 18:40:00.713576+00 f t TOTAL 0.00 4 13580 \N +547641 2025-11-25 18:40:00.714996+00 2025-11-25 18:40:00.715003+00 f t ADELANTO 0.00 5 13580 \N +547287 2025-11-25 17:35:48.546316+00 2025-11-25 17:35:48.546324+00 f t SUBTOTAL 0.00 1 13569 \N +547288 2025-11-25 17:35:48.547582+00 2025-11-25 17:35:48.547588+00 f t COSTO_SERVICIO 0.00 2 13569 \N +547289 2025-11-25 17:35:48.548519+00 2025-11-25 17:35:48.548524+00 f t DESCUENTO 0.00 3 13569 \N +547290 2025-11-25 17:35:48.54941+00 2025-11-25 17:35:48.549415+00 f t TOTAL 0.00 4 13569 \N +547291 2025-11-25 17:35:48.550337+00 2025-11-25 17:35:48.550344+00 f t ADELANTO 0.00 5 13569 \N +547392 2025-11-25 17:45:30.381811+00 2025-11-25 17:45:30.382406+00 f t SUBTOTAL 0.00 1 13570 \N +547393 2025-11-25 17:45:30.386132+00 2025-11-25 17:45:30.38614+00 f t COSTO_SERVICIO 0.00 2 13570 \N +547394 2025-11-25 17:45:30.38748+00 2025-11-25 17:45:30.387485+00 f t DESCUENTO 0.00 3 13570 \N +547395 2025-11-25 17:45:30.388551+00 2025-11-25 17:45:30.388556+00 f t TOTAL 0.00 4 13570 \N +547396 2025-11-25 17:45:30.389613+00 2025-11-25 17:45:30.389622+00 f t ADELANTO 0.00 5 13570 \N +547647 2025-11-25 18:40:04.401645+00 2025-11-25 18:40:04.40166+00 f t SUBTOTAL 0.00 1 13581 \N +547648 2025-11-25 18:40:04.410012+00 2025-11-25 18:40:04.410026+00 f t COSTO_SERVICIO 0.00 2 13581 \N +547649 2025-11-25 18:40:04.412713+00 2025-11-25 18:40:04.412728+00 f t DESCUENTO 0.00 3 13581 \N +547650 2025-11-25 18:40:04.415469+00 2025-11-25 18:40:04.415481+00 f t TOTAL 0.00 4 13581 \N +547651 2025-11-25 18:40:04.418104+00 2025-11-25 18:40:04.418119+00 f t ADELANTO 0.00 5 13581 \N +549837 2025-11-26 03:41:21.35931+00 2025-11-26 03:41:21.359317+00 f t SUBTOTAL 70000.00 1 13637 \N +549838 2025-11-26 03:41:21.361193+00 2025-11-26 03:41:21.3612+00 f t COSTO_SERVICIO 0.00 2 13637 \N +549839 2025-11-26 03:41:21.362435+00 2025-11-26 03:41:21.362442+00 f t DESCUENTO 0.00 3 13637 \N +549840 2025-11-26 03:41:21.363665+00 2025-11-26 03:41:21.36367+00 f t TOTAL 70000.00 4 13637 \N +549841 2025-11-26 03:41:21.364807+00 2025-11-26 03:41:21.364813+00 f t ADELANTO 19000.00 5 13637 \N +546482 2025-11-25 15:36:00.328404+00 2025-11-25 15:36:00.328415+00 f t SUBTOTAL 46000.00 1 13548 \N +546483 2025-11-25 15:36:00.330736+00 2025-11-25 15:36:00.330746+00 f t COSTO_SERVICIO 0.00 2 13548 \N +546484 2025-11-25 15:36:00.332126+00 2025-11-25 15:36:00.332134+00 f t DESCUENTO 0.00 3 13548 \N +546485 2025-11-25 15:36:00.333334+00 2025-11-25 15:36:00.333341+00 f t TOTAL 46000.00 4 13548 \N +546486 2025-11-25 15:36:00.334672+00 2025-11-25 15:36:00.334681+00 f t ADELANTO 11000.00 5 13548 \N +546832 2025-11-25 16:30:11.925006+00 2025-11-25 16:30:11.925016+00 f t SUBTOTAL 54000.00 1 13556 \N +546833 2025-11-25 16:30:11.927657+00 2025-11-25 16:30:11.927669+00 f t COSTO_SERVICIO 0.00 2 13556 \N +546834 2025-11-25 16:30:11.930226+00 2025-11-25 16:30:11.930239+00 f t DESCUENTO 0.00 3 13556 \N +546835 2025-11-25 16:30:11.932434+00 2025-11-25 16:30:11.932447+00 f t TOTAL 54000.00 4 13556 \N +546836 2025-11-25 16:30:11.934515+00 2025-11-25 16:30:11.934528+00 f t ADELANTO 13500.00 5 13556 \N +547402 2025-11-25 17:50:09.070241+00 2025-11-25 17:50:09.070259+00 f t SUBTOTAL 0.00 1 13571 \N +547403 2025-11-25 17:50:09.07258+00 2025-11-25 17:50:09.072592+00 f t COSTO_SERVICIO 0.00 2 13571 \N +547404 2025-11-25 17:50:09.074514+00 2025-11-25 17:50:09.074528+00 f t DESCUENTO 0.00 3 13571 \N +547405 2025-11-25 17:50:09.076456+00 2025-11-25 17:50:09.076468+00 f t TOTAL 0.00 4 13571 \N +547406 2025-11-25 17:50:09.078585+00 2025-11-25 17:50:09.078596+00 f t ADELANTO 0.00 5 13571 \N +547657 2025-11-25 18:41:29.026934+00 2025-11-25 18:41:29.026943+00 f t SUBTOTAL 0.00 1 13582 \N +547658 2025-11-25 18:41:29.028433+00 2025-11-25 18:41:29.02844+00 f t COSTO_SERVICIO 0.00 2 13582 \N +547659 2025-11-25 18:41:29.029814+00 2025-11-25 18:41:29.029821+00 f t DESCUENTO 0.00 3 13582 \N +547660 2025-11-25 18:41:29.031069+00 2025-11-25 18:41:29.031075+00 f t TOTAL 0.00 4 13582 \N +547661 2025-11-25 18:41:29.032215+00 2025-11-25 18:41:29.032224+00 f t ADELANTO 0.00 5 13582 \N +545827 2025-11-25 14:14:45.820362+00 2025-11-25 14:14:45.820369+00 f t SUBTOTAL 34000.00 1 13536 \N +545828 2025-11-25 14:14:45.821973+00 2025-11-25 14:14:45.82198+00 f t COSTO_SERVICIO 0.00 2 13536 \N +545829 2025-11-25 14:14:45.823063+00 2025-11-25 14:14:45.823069+00 f t DESCUENTO 0.00 3 13536 \N +545830 2025-11-25 14:14:45.823928+00 2025-11-25 14:14:45.823934+00 f t TOTAL 34000.00 4 13536 \N +545831 2025-11-25 14:14:45.82474+00 2025-11-25 14:14:45.824745+00 f t ADELANTO 34000.00 5 13536 \N +547077 2025-11-25 16:45:40.587948+00 2025-11-25 16:45:40.587955+00 f t SUBTOTAL 53700.00 1 13534 \N +547078 2025-11-25 16:45:40.590061+00 2025-11-25 16:45:40.590068+00 f t COSTO_SERVICIO 0.00 2 13534 \N +547079 2025-11-25 16:45:40.591315+00 2025-11-25 16:45:40.591321+00 f t DESCUENTO 0.00 3 13534 \N +547080 2025-11-25 16:45:40.592434+00 2025-11-25 16:45:40.59244+00 f t TOTAL 53700.00 4 13534 \N +547081 2025-11-25 16:45:40.593426+00 2025-11-25 16:45:40.593431+00 f t ADELANTO 13200.00 5 13534 \N +549557 2025-11-26 01:07:21.180601+00 2025-11-26 01:07:21.180607+00 f t SUBTOTAL 70000.00 1 13629 \N +549558 2025-11-26 01:07:21.182433+00 2025-11-26 01:07:21.182439+00 f t COSTO_SERVICIO 0.00 2 13629 \N +549559 2025-11-26 01:07:21.183539+00 2025-11-26 01:07:21.183545+00 f t DESCUENTO 0.00 3 13629 \N +549560 2025-11-26 01:07:21.184803+00 2025-11-26 01:07:21.184808+00 f t TOTAL 70000.00 4 13629 \N +549561 2025-11-26 01:07:21.185782+00 2025-11-26 01:07:21.185787+00 f t ADELANTO 19000.00 5 13629 \N +546392 2025-11-25 15:31:33.230908+00 2025-11-25 15:31:33.230919+00 f t SUBTOTAL 0.00 1 13546 \N +546393 2025-11-25 15:31:33.233493+00 2025-11-25 15:31:33.233504+00 f t COSTO_SERVICIO 0.00 2 13546 \N +546394 2025-11-25 15:31:33.235076+00 2025-11-25 15:31:33.235084+00 f t DESCUENTO 0.00 3 13546 \N +546395 2025-11-25 15:31:33.23653+00 2025-11-25 15:31:33.236538+00 f t TOTAL 0.00 4 13546 \N +546396 2025-11-25 15:31:33.238036+00 2025-11-25 15:31:33.238044+00 f t ADELANTO 0.00 5 13546 \N +546737 2025-11-25 16:24:10.659212+00 2025-11-25 16:24:10.659219+00 f t SUBTOTAL 55000.00 1 13554 \N +546738 2025-11-25 16:24:10.660932+00 2025-11-25 16:24:10.660938+00 f t COSTO_SERVICIO 0.00 2 13554 \N +546739 2025-11-25 16:24:10.661862+00 2025-11-25 16:24:10.661867+00 f t DESCUENTO 0.00 3 13554 \N +546740 2025-11-25 16:24:10.662763+00 2025-11-25 16:24:10.662768+00 f t TOTAL 55000.00 4 13554 \N +546741 2025-11-25 16:24:10.663645+00 2025-11-25 16:24:10.663653+00 f t ADELANTO 11000.00 5 13554 \N +546847 2025-11-25 16:31:09.755376+00 2025-11-25 16:31:09.755384+00 f t SUBTOTAL 55000.00 1 13557 \N +546848 2025-11-25 16:31:09.757098+00 2025-11-25 16:31:09.757105+00 f t COSTO_SERVICIO 0.00 2 13557 \N +546849 2025-11-25 16:31:09.758235+00 2025-11-25 16:31:09.758241+00 f t DESCUENTO 0.00 3 13557 \N +546850 2025-11-25 16:31:09.759554+00 2025-11-25 16:31:09.759563+00 f t TOTAL 55000.00 4 13557 \N +546851 2025-11-25 16:31:09.760824+00 2025-11-25 16:31:09.760832+00 f t ADELANTO 11000.00 5 13557 \N +547532 2025-11-25 18:05:50.56865+00 2025-11-25 18:05:50.568657+00 f t SUBTOTAL 31500.00 1 13574 \N +547533 2025-11-25 18:05:50.570347+00 2025-11-25 18:05:50.570353+00 f t COSTO_SERVICIO 0.00 2 13574 \N +547534 2025-11-25 18:05:50.571569+00 2025-11-25 18:05:50.571574+00 f t DESCUENTO 0.00 3 13574 \N +547535 2025-11-25 18:05:50.572814+00 2025-11-25 18:05:50.572821+00 f t TOTAL 31500.00 4 13574 \N +547536 2025-11-25 18:05:50.574052+00 2025-11-25 18:05:50.57406+00 f t ADELANTO 31500.00 5 13574 \N +549567 2025-11-26 01:12:07.505632+00 2025-11-26 01:12:07.505642+00 f t SUBTOTAL 0.00 1 13630 \N +549568 2025-11-26 01:12:07.507038+00 2025-11-26 01:12:07.507045+00 f t COSTO_SERVICIO 0.00 2 13630 \N +549569 2025-11-26 01:12:07.508126+00 2025-11-26 01:12:07.508132+00 f t DESCUENTO 0.00 3 13630 \N +549570 2025-11-26 01:12:07.509389+00 2025-11-26 01:12:07.509395+00 f t TOTAL 0.00 4 13630 \N +549571 2025-11-26 01:12:07.51043+00 2025-11-26 01:12:07.510443+00 f t ADELANTO 0.00 5 13630 \N +546277 2025-11-25 15:17:48.003537+00 2025-11-25 15:17:48.003552+00 f t SUBTOTAL 55000.00 1 13543 \N +546278 2025-11-25 15:17:48.00551+00 2025-11-25 15:17:48.005521+00 f t COSTO_SERVICIO 0.00 2 13543 \N +546279 2025-11-25 15:17:48.00712+00 2025-11-25 15:17:48.00713+00 f t DESCUENTO 0.00 3 13543 \N +546280 2025-11-25 15:17:48.009517+00 2025-11-25 15:17:48.009525+00 f t TOTAL 55000.00 4 13543 \N +546281 2025-11-25 15:17:48.011259+00 2025-11-25 15:17:48.011267+00 f t ADELANTO 11000.00 5 13543 \N +546967 2025-11-25 16:36:43.113932+00 2025-11-25 16:36:43.113941+00 f t SUBTOTAL 55000.00 1 13560 \N +546968 2025-11-25 16:36:43.115578+00 2025-11-25 16:36:43.115587+00 f t COSTO_SERVICIO 0.00 2 13560 \N +546969 2025-11-25 16:36:43.116703+00 2025-11-25 16:36:43.116709+00 f t DESCUENTO 0.00 3 13560 \N +546970 2025-11-25 16:36:43.118404+00 2025-11-25 16:36:43.11841+00 f t TOTAL 55000.00 4 13560 \N +546971 2025-11-25 16:36:43.11945+00 2025-11-25 16:36:43.119455+00 f t ADELANTO 11000.00 5 13560 \N +547542 2025-11-25 18:07:02.549116+00 2025-11-25 18:07:02.54913+00 f t SUBTOTAL 0.00 1 13575 \N +547543 2025-11-25 18:07:02.550939+00 2025-11-25 18:07:02.550947+00 f t COSTO_SERVICIO 0.00 2 13575 \N +547544 2025-11-25 18:07:02.552338+00 2025-11-25 18:07:02.552345+00 f t DESCUENTO 0.00 3 13575 \N +547545 2025-11-25 18:07:02.554266+00 2025-11-25 18:07:02.554278+00 f t TOTAL 0.00 4 13575 \N +547546 2025-11-25 18:07:02.555969+00 2025-11-25 18:07:02.555976+00 f t ADELANTO 0.00 5 13575 \N +549247 2025-11-25 23:15:56.159421+00 2025-11-25 23:15:56.159428+00 f t SUBTOTAL 55000.00 1 13617 \N +549248 2025-11-25 23:15:56.161172+00 2025-11-25 23:15:56.161179+00 f t COSTO_SERVICIO 0.00 2 13617 \N +549249 2025-11-25 23:15:56.162238+00 2025-11-25 23:15:56.162243+00 f t DESCUENTO 0.00 3 13617 \N +549250 2025-11-25 23:15:56.163289+00 2025-11-25 23:15:56.163296+00 f t TOTAL 55000.00 4 13617 \N +549251 2025-11-25 23:15:56.164287+00 2025-11-25 23:15:56.164293+00 f t ADELANTO 11000.00 5 13617 \N +549577 2025-11-26 01:13:43.216939+00 2025-11-26 01:13:43.21695+00 f t SUBTOTAL 0.00 1 13631 \N +549578 2025-11-26 01:13:43.21844+00 2025-11-26 01:13:43.218448+00 f t COSTO_SERVICIO 0.00 2 13631 \N +549579 2025-11-26 01:13:43.219747+00 2025-11-26 01:13:43.219754+00 f t DESCUENTO 0.00 3 13631 \N +549580 2025-11-26 01:13:43.220836+00 2025-11-26 01:13:43.220842+00 f t TOTAL 0.00 4 13631 \N +549581 2025-11-26 01:13:43.221708+00 2025-11-26 01:13:43.221714+00 f t ADELANTO 0.00 5 13631 \N +546167 2025-11-25 14:44:00.8995+00 2025-11-25 14:44:00.899508+00 f t SUBTOTAL 115000.00 1 13540 \N +546168 2025-11-25 14:44:00.901586+00 2025-11-25 14:44:00.901593+00 f t COSTO_SERVICIO 0.00 2 13540 \N +546169 2025-11-25 14:44:00.90279+00 2025-11-25 14:44:00.902795+00 f t DESCUENTO 0.00 3 13540 \N +546170 2025-11-25 14:44:00.903751+00 2025-11-25 14:44:00.903757+00 f t TOTAL 115000.00 4 13540 \N +546171 2025-11-25 14:44:00.904684+00 2025-11-25 14:44:00.904689+00 f t ADELANTO 25000.00 5 13540 \N +546512 2025-11-25 15:49:00.424209+00 2025-11-25 15:49:00.424216+00 f t SUBTOTAL 54000.00 1 13549 \N +546513 2025-11-25 15:49:00.426522+00 2025-11-25 15:49:00.42653+00 f t COSTO_SERVICIO 0.00 2 13549 \N +546514 2025-11-25 15:49:00.428036+00 2025-11-25 15:49:00.428045+00 f t DESCUENTO 0.00 3 13549 \N +546515 2025-11-25 15:49:00.430159+00 2025-11-25 15:49:00.430165+00 f t TOTAL 54000.00 4 13549 \N +546516 2025-11-25 15:49:00.431553+00 2025-11-25 15:49:00.43156+00 f t ADELANTO 13500.00 5 13549 \N +547552 2025-11-25 18:07:59.147212+00 2025-11-25 18:07:59.147672+00 f t SUBTOTAL 0.00 1 13576 \N +547553 2025-11-25 18:07:59.149727+00 2025-11-25 18:07:59.149736+00 f t COSTO_SERVICIO 0.00 2 13576 \N +547554 2025-11-25 18:07:59.151253+00 2025-11-25 18:07:59.151262+00 f t DESCUENTO 0.00 3 13576 \N +547555 2025-11-25 18:07:59.15252+00 2025-11-25 18:07:59.152528+00 f t TOTAL 0.00 4 13576 \N +547556 2025-11-25 18:07:59.153692+00 2025-11-25 18:07:59.153701+00 f t ADELANTO 0.00 5 13576 \N +547682 2025-11-25 18:44:30.584681+00 2025-11-25 18:44:30.584689+00 f t SUBTOTAL 78000.00 1 13567 \N +547683 2025-11-25 18:44:30.586496+00 2025-11-25 18:44:30.586504+00 f t COSTO_SERVICIO 0.00 2 13567 \N +547684 2025-11-25 18:44:30.587651+00 2025-11-25 18:44:30.587656+00 f t DESCUENTO 0.00 3 13567 \N +547685 2025-11-25 18:44:30.588654+00 2025-11-25 18:44:30.588658+00 f t TOTAL 78000.00 4 13567 \N +547686 2025-11-25 18:44:30.589958+00 2025-11-25 18:44:30.589963+00 f t ADELANTO 13000.00 5 13567 \N +547797 2025-11-25 18:46:22.643431+00 2025-11-25 18:46:22.643442+00 f t SUBTOTAL 46000.00 1 13585 \N +547798 2025-11-25 18:46:22.64477+00 2025-11-25 18:46:22.644776+00 f t COSTO_SERVICIO 0.00 2 13585 \N +547799 2025-11-25 18:46:22.646858+00 2025-11-25 18:46:22.646863+00 f t DESCUENTO 0.00 3 13585 \N +547800 2025-11-25 18:46:22.647771+00 2025-11-25 18:46:22.647776+00 f t TOTAL 46000.00 4 13585 \N +547801 2025-11-25 18:46:22.648689+00 2025-11-25 18:46:22.648696+00 f t ADELANTO 11000.00 5 13585 \N +548167 2025-11-25 20:52:37.36359+00 2025-11-25 20:52:37.363598+00 f t SUBTOTAL 55000.00 1 13597 \N +548168 2025-11-25 20:52:37.365175+00 2025-11-25 20:52:37.36518+00 f t COSTO_SERVICIO 0.00 2 13597 \N +548169 2025-11-25 20:52:37.36626+00 2025-11-25 20:52:37.366266+00 f t DESCUENTO 0.00 3 13597 \N +548170 2025-11-25 20:52:37.367161+00 2025-11-25 20:52:37.367166+00 f t TOTAL 55000.00 4 13597 \N +548171 2025-11-25 20:52:37.367956+00 2025-11-25 20:52:37.36796+00 f t ADELANTO 11000.00 5 13597 \N +549257 2025-11-25 23:24:48.550241+00 2025-11-25 23:24:48.55025+00 f t SUBTOTAL 0.00 1 13619 \N +549258 2025-11-25 23:24:48.551492+00 2025-11-25 23:24:48.551499+00 f t COSTO_SERVICIO 0.00 2 13619 \N +549259 2025-11-25 23:24:48.552441+00 2025-11-25 23:24:48.552446+00 f t DESCUENTO 0.00 3 13619 \N +549260 2025-11-25 23:24:48.553424+00 2025-11-25 23:24:48.553429+00 f t TOTAL 0.00 4 13619 \N +549261 2025-11-25 23:24:48.554262+00 2025-11-25 23:24:48.554267+00 f t ADELANTO 0.00 5 13619 \N +546872 2025-11-25 16:33:53.180489+00 2025-11-25 16:33:53.180498+00 f t SUBTOTAL 0.00 1 13559 \N +546873 2025-11-25 16:33:53.182124+00 2025-11-25 16:33:53.182131+00 f t COSTO_SERVICIO 0.00 2 13559 \N +546874 2025-11-25 16:33:53.183351+00 2025-11-25 16:33:53.183356+00 f t DESCUENTO 0.00 3 13559 \N +546875 2025-11-25 16:33:53.184448+00 2025-11-25 16:33:53.184454+00 f t TOTAL 0.00 4 13559 \N +546876 2025-11-25 16:33:53.185338+00 2025-11-25 16:33:53.185343+00 f t ADELANTO 0.00 5 13559 \N +546987 2025-11-25 16:37:31.016057+00 2025-11-25 16:37:31.016068+00 f t SUBTOTAL 0.00 1 13562 \N +546988 2025-11-25 16:37:31.018527+00 2025-11-25 16:37:31.018535+00 f t COSTO_SERVICIO 0.00 2 13562 \N +546989 2025-11-25 16:37:31.020263+00 2025-11-25 16:37:31.02027+00 f t DESCUENTO 0.00 3 13562 \N +546990 2025-11-25 16:37:31.021511+00 2025-11-25 16:37:31.021517+00 f t TOTAL 0.00 4 13562 \N +546991 2025-11-25 16:37:31.022551+00 2025-11-25 16:37:31.022557+00 f t ADELANTO 0.00 5 13562 \N +547692 2025-11-25 18:44:44.837192+00 2025-11-25 18:44:44.837201+00 f t SUBTOTAL 0.00 1 13583 \N +547693 2025-11-25 18:44:44.838469+00 2025-11-25 18:44:44.838475+00 f t COSTO_SERVICIO 0.00 2 13583 \N +547694 2025-11-25 18:44:44.839516+00 2025-11-25 18:44:44.839522+00 f t DESCUENTO 0.00 3 13583 \N +547695 2025-11-25 18:44:44.840466+00 2025-11-25 18:44:44.840471+00 f t TOTAL 0.00 4 13583 \N +547696 2025-11-25 18:44:44.841269+00 2025-11-25 18:44:44.841275+00 f t ADELANTO 0.00 5 13583 \N +547802 2025-11-25 18:46:25.715152+00 2025-11-25 18:46:25.715162+00 f t SUBTOTAL 0.00 1 13584 \N +547803 2025-11-25 18:46:25.716951+00 2025-11-25 18:46:25.716958+00 f t COSTO_SERVICIO 0.00 2 13584 \N +547804 2025-11-25 18:46:25.717966+00 2025-11-25 18:46:25.717972+00 f t DESCUENTO 0.00 3 13584 \N +547805 2025-11-25 18:46:25.718775+00 2025-11-25 18:46:25.71878+00 f t TOTAL 0.00 4 13584 \N +547806 2025-11-25 18:46:25.719563+00 2025-11-25 18:46:25.719568+00 f t ADELANTO 0.00 5 13584 \N +547812 2025-11-25 18:48:42.435761+00 2025-11-25 18:48:42.435771+00 f t SUBTOTAL 0.00 1 13586 \N +547813 2025-11-25 18:48:42.437231+00 2025-11-25 18:48:42.437239+00 f t COSTO_SERVICIO 0.00 2 13586 \N +547814 2025-11-25 18:48:42.438361+00 2025-11-25 18:48:42.438368+00 f t DESCUENTO 0.00 3 13586 \N +547815 2025-11-25 18:48:42.439274+00 2025-11-25 18:48:42.43928+00 f t TOTAL 0.00 4 13586 \N +547816 2025-11-25 18:48:42.44023+00 2025-11-25 18:48:42.440235+00 f t ADELANTO 0.00 5 13586 \N +547927 2025-11-25 19:09:34.193023+00 2025-11-25 19:09:34.193029+00 f t SUBTOTAL 78000.00 1 13589 \N +547928 2025-11-25 19:09:34.19461+00 2025-11-25 19:09:34.194617+00 f t COSTO_SERVICIO 0.00 2 13589 \N +547929 2025-11-25 19:09:34.196013+00 2025-11-25 19:09:34.196018+00 f t DESCUENTO 0.00 3 13589 \N +547930 2025-11-25 19:09:34.197269+00 2025-11-25 19:09:34.197274+00 f t TOTAL 78000.00 4 13589 \N +547931 2025-11-25 19:09:34.198344+00 2025-11-25 19:09:34.198349+00 f t ADELANTO 21500.00 5 13589 \N +546417 2025-11-25 15:33:36.498822+00 2025-11-25 15:33:36.498833+00 f t SUBTOTAL 54000.00 1 13547 \N +546418 2025-11-25 15:33:36.500575+00 2025-11-25 15:33:36.500583+00 f t COSTO_SERVICIO 0.00 2 13547 \N +546419 2025-11-25 15:33:36.502066+00 2025-11-25 15:33:36.502074+00 f t DESCUENTO 0.00 3 13547 \N +546420 2025-11-25 15:33:36.503283+00 2025-11-25 15:33:36.503291+00 f t TOTAL 54000.00 4 13547 \N +546421 2025-11-25 15:33:36.504468+00 2025-11-25 15:33:36.504476+00 f t ADELANTO 13500.00 5 13547 \N +547112 2025-11-25 16:47:28.568353+00 2025-11-25 16:47:28.568365+00 f t SUBTOTAL 0.00 1 13565 \N +547113 2025-11-25 16:47:28.5705+00 2025-11-25 16:47:28.57051+00 f t COSTO_SERVICIO 0.00 2 13565 \N +547114 2025-11-25 16:47:28.571614+00 2025-11-25 16:47:28.57162+00 f t DESCUENTO 0.00 3 13565 \N +547115 2025-11-25 16:47:28.572576+00 2025-11-25 16:47:28.57258+00 f t TOTAL 0.00 4 13565 \N +547116 2025-11-25 16:47:28.573387+00 2025-11-25 16:47:28.573392+00 f t ADELANTO 0.00 5 13565 \N +548062 2025-11-25 20:08:41.899337+00 2025-11-25 20:08:41.899345+00 f t SUBTOTAL 0.00 1 13594 \N +548063 2025-11-25 20:08:41.900679+00 2025-11-25 20:08:41.900685+00 f t COSTO_SERVICIO 0.00 2 13594 \N +548064 2025-11-25 20:08:41.901622+00 2025-11-25 20:08:41.901627+00 f t DESCUENTO 0.00 3 13594 \N +548065 2025-11-25 20:08:41.902481+00 2025-11-25 20:08:41.902486+00 f t TOTAL 0.00 4 13594 \N +548066 2025-11-25 20:08:41.903442+00 2025-11-25 20:08:41.903447+00 f t ADELANTO 0.00 5 13594 \N +547457 2025-11-25 17:54:09.434308+00 2025-11-25 17:54:09.434319+00 f t SUBTOTAL 108000.00 1 13572 \N +547458 2025-11-25 17:54:09.436881+00 2025-11-25 17:54:09.436892+00 f t COSTO_SERVICIO 0.00 2 13572 \N +547459 2025-11-25 17:54:09.438656+00 2025-11-25 17:54:09.438666+00 f t DESCUENTO 9200.00 3 13572 \N +547460 2025-11-25 17:54:09.440442+00 2025-11-25 17:54:09.440451+00 f t TOTAL 98800.00 4 13572 \N +547461 2025-11-25 17:54:09.441948+00 2025-11-25 17:54:09.441957+00 f t ADELANTO 27000.00 5 13572 \N +546082 2025-11-25 14:26:37.28507+00 2025-11-25 14:26:37.285081+00 f t SUBTOTAL 79000.00 1 13537 \N +546083 2025-11-25 14:26:37.287298+00 2025-11-25 14:26:37.287305+00 f t COSTO_SERVICIO 0.00 2 13537 \N +546084 2025-11-25 14:26:37.288603+00 2025-11-25 14:26:37.28861+00 f t DESCUENTO 0.00 3 13537 \N +546085 2025-11-25 14:26:37.289735+00 2025-11-25 14:26:37.28974+00 f t TOTAL 79000.00 4 13537 \N +546086 2025-11-25 14:26:37.292176+00 2025-11-25 14:26:37.292181+00 f t ADELANTO 17500.00 5 13537 \N +546202 2025-11-25 14:47:47.211796+00 2025-11-25 14:47:47.211804+00 f t SUBTOTAL 70000.00 1 13541 \N +546203 2025-11-25 14:47:47.213438+00 2025-11-25 14:47:47.213444+00 f t COSTO_SERVICIO 0.00 2 13541 \N +546204 2025-11-25 14:47:47.214645+00 2025-11-25 14:47:47.21465+00 f t DESCUENTO 0.00 3 13541 \N +546205 2025-11-25 14:47:47.215635+00 2025-11-25 14:47:47.21564+00 f t TOTAL 70000.00 4 13541 \N +546206 2025-11-25 14:47:47.216742+00 2025-11-25 14:47:47.216747+00 f t ADELANTO 19000.00 5 13541 \N +546547 2025-11-25 15:55:16.590218+00 2025-11-25 15:55:16.590231+00 f t SUBTOTAL 80000.00 1 13550 \N +546548 2025-11-25 15:55:16.592138+00 2025-11-25 15:55:16.592148+00 f t COSTO_SERVICIO 0.00 2 13550 \N +546549 2025-11-25 15:55:16.593485+00 2025-11-25 15:55:16.593494+00 f t DESCUENTO 0.00 3 13550 \N +546550 2025-11-25 15:55:16.594796+00 2025-11-25 15:55:16.594804+00 f t TOTAL 80000.00 4 13550 \N +546551 2025-11-25 15:55:16.596053+00 2025-11-25 15:55:16.596061+00 f t ADELANTO 12000.00 5 13550 \N +546662 2025-11-25 16:02:25.154999+00 2025-11-25 16:02:25.155006+00 f t SUBTOTAL 79000.00 1 13552 \N +546663 2025-11-25 16:02:25.156773+00 2025-11-25 16:02:25.156779+00 f t COSTO_SERVICIO 0.00 2 13552 \N +546664 2025-11-25 16:02:25.158146+00 2025-11-25 16:02:25.158151+00 f t DESCUENTO 0.00 3 13552 \N +546665 2025-11-25 16:02:25.159388+00 2025-11-25 16:02:25.159393+00 f t TOTAL 79000.00 4 13552 \N +546666 2025-11-25 16:02:25.160519+00 2025-11-25 16:02:25.160528+00 f t ADELANTO 17500.00 5 13552 \N +546777 2025-11-25 16:25:44.615736+00 2025-11-25 16:25:44.615746+00 f t SUBTOTAL 79000.00 1 13555 \N +546778 2025-11-25 16:25:44.617777+00 2025-11-25 16:25:44.617783+00 f t COSTO_SERVICIO 0.00 2 13555 \N +546779 2025-11-25 16:25:44.619061+00 2025-11-25 16:25:44.619067+00 f t DESCUENTO 0.00 3 13555 \N +546780 2025-11-25 16:25:44.620057+00 2025-11-25 16:25:44.620062+00 f t TOTAL 79000.00 4 13555 \N +546781 2025-11-25 16:25:44.621356+00 2025-11-25 16:25:44.621362+00 f t ADELANTO 17500.00 5 13555 \N +547012 2025-11-25 16:38:30.772504+00 2025-11-25 16:38:30.77251+00 f t SUBTOTAL 70000.00 1 13561 \N +547013 2025-11-25 16:38:30.774284+00 2025-11-25 16:38:30.77429+00 f t COSTO_SERVICIO 0.00 2 13561 \N +547014 2025-11-25 16:38:30.775555+00 2025-11-25 16:38:30.77556+00 f t DESCUENTO 0.00 3 13561 \N +547015 2025-11-25 16:38:30.77659+00 2025-11-25 16:38:30.776596+00 f t TOTAL 70000.00 4 13561 \N +547016 2025-11-25 16:38:30.777625+00 2025-11-25 16:38:30.77763+00 f t ADELANTO 19000.00 5 13561 \N +548077 2025-11-25 20:16:40.718499+00 2025-11-25 20:16:40.718506+00 f t SUBTOTAL 55000.00 1 13593 \N +548078 2025-11-25 20:16:40.720294+00 2025-11-25 20:16:40.7203+00 f t COSTO_SERVICIO 0.00 2 13593 \N +548079 2025-11-25 20:16:40.721541+00 2025-11-25 20:16:40.721546+00 f t DESCUENTO 0.00 3 13593 \N +548080 2025-11-25 20:16:40.722772+00 2025-11-25 20:16:40.722781+00 f t TOTAL 55000.00 4 13593 \N +548081 2025-11-25 20:16:40.723925+00 2025-11-25 20:16:40.723931+00 f t ADELANTO 11000.00 5 13593 \N +549617 2025-11-26 01:20:25.181434+00 2025-11-26 01:20:25.181444+00 f t SUBTOTAL 0.00 1 13632 \N +549618 2025-11-26 01:20:25.183268+00 2025-11-26 01:20:25.183275+00 f t COSTO_SERVICIO 0.00 2 13632 \N +549619 2025-11-26 01:20:25.1842+00 2025-11-26 01:20:25.184207+00 f t DESCUENTO 0.00 3 13632 \N +549620 2025-11-26 01:20:25.185094+00 2025-11-26 01:20:25.185099+00 f t TOTAL 0.00 4 13632 \N +549621 2025-11-26 01:20:25.185964+00 2025-11-26 01:20:25.185969+00 f t ADELANTO 0.00 5 13632 \N +546092 2025-11-25 14:29:47.905681+00 2025-11-25 14:29:47.90569+00 f t SUBTOTAL 0.00 1 13538 \N +546093 2025-11-25 14:29:47.907215+00 2025-11-25 14:29:47.907222+00 f t COSTO_SERVICIO 0.00 2 13538 \N +546094 2025-11-25 14:29:47.908281+00 2025-11-25 14:29:47.908287+00 f t DESCUENTO 0.00 3 13538 \N +546095 2025-11-25 14:29:47.909242+00 2025-11-25 14:29:47.909247+00 f t TOTAL 0.00 4 13538 \N +546096 2025-11-25 14:29:47.910221+00 2025-11-25 14:29:47.910226+00 f t ADELANTO 0.00 5 13538 \N +546672 2025-11-25 16:12:30.713727+00 2025-11-25 16:12:30.713737+00 f t SUBTOTAL 0.00 1 13553 \N +546673 2025-11-25 16:12:30.715207+00 2025-11-25 16:12:30.715217+00 f t COSTO_SERVICIO 0.00 2 13553 \N +546674 2025-11-25 16:12:30.716373+00 2025-11-25 16:12:30.716379+00 f t DESCUENTO 0.00 3 13553 \N +546675 2025-11-25 16:12:30.717514+00 2025-11-25 16:12:30.717521+00 f t TOTAL 0.00 4 13553 \N +546676 2025-11-25 16:12:30.71871+00 2025-11-25 16:12:30.718715+00 f t ADELANTO 0.00 5 13553 \N +547137 2025-11-25 16:57:05.207288+00 2025-11-25 16:57:05.2073+00 f t SUBTOTAL 13200.00 1 13566 \N +547138 2025-11-25 16:57:05.209439+00 2025-11-25 16:57:05.209449+00 f t COSTO_SERVICIO 0.00 2 13566 \N +547139 2025-11-25 16:57:05.211039+00 2025-11-25 16:57:05.211049+00 f t DESCUENTO 0.00 3 13566 \N +547140 2025-11-25 16:57:05.212369+00 2025-11-25 16:57:05.212378+00 f t TOTAL 13200.00 4 13566 \N +547141 2025-11-25 16:57:05.21387+00 2025-11-25 16:57:05.213879+00 f t ADELANTO 13200.00 5 13566 \N +547247 2025-11-25 17:22:32.80054+00 2025-11-25 17:22:32.800552+00 f t SUBTOTAL 0.00 1 13568 \N +547248 2025-11-25 17:22:32.803774+00 2025-11-25 17:22:32.803781+00 f t COSTO_SERVICIO 0.00 2 13568 \N +547249 2025-11-25 17:22:32.804979+00 2025-11-25 17:22:32.804984+00 f t DESCUENTO 0.00 3 13568 \N +547250 2025-11-25 17:22:32.805981+00 2025-11-25 17:22:32.805986+00 f t TOTAL 0.00 4 13568 \N +547251 2025-11-25 17:22:32.806966+00 2025-11-25 17:22:32.806971+00 f t ADELANTO 0.00 5 13568 \N +547592 2025-11-25 18:27:15.328246+00 2025-11-25 18:27:15.328254+00 f t SUBTOTAL 142000.00 1 13577 \N +547593 2025-11-25 18:27:15.330032+00 2025-11-25 18:27:15.330039+00 f t COSTO_SERVICIO 0.00 2 13577 \N +547594 2025-11-25 18:27:15.331411+00 2025-11-25 18:27:15.331417+00 f t DESCUENTO 0.00 3 13577 \N +547595 2025-11-25 18:27:15.3328+00 2025-11-25 18:27:15.332807+00 f t TOTAL 142000.00 4 13577 \N +547596 2025-11-25 18:27:15.334004+00 2025-11-25 18:27:15.334009+00 f t ADELANTO 98000.00 5 13577 \N +546102 2025-11-25 14:39:30.398128+00 2025-11-25 14:39:30.398137+00 f t SUBTOTAL 0.00 1 13539 \N +546103 2025-11-25 14:39:30.399514+00 2025-11-25 14:39:30.39952+00 f t COSTO_SERVICIO 0.00 2 13539 \N +546104 2025-11-25 14:39:30.400627+00 2025-11-25 14:39:30.400633+00 f t DESCUENTO 0.00 3 13539 \N +546105 2025-11-25 14:39:30.401616+00 2025-11-25 14:39:30.401621+00 f t TOTAL 0.00 4 13539 \N +546106 2025-11-25 14:39:30.402572+00 2025-11-25 14:39:30.402577+00 f t ADELANTO 0.00 5 13539 \N +546677 2025-11-25 16:17:21.543153+00 2025-11-25 16:17:21.54316+00 f t SUBTOTAL 33700.00 1 13551 \N +546678 2025-11-25 16:17:21.54467+00 2025-11-25 16:17:21.544676+00 f t COSTO_SERVICIO 0.00 2 13551 \N +546679 2025-11-25 16:17:21.545717+00 2025-11-25 16:17:21.545722+00 f t DESCUENTO 0.00 3 13551 \N +546680 2025-11-25 16:17:21.546712+00 2025-11-25 16:17:21.546717+00 f t TOTAL 33700.00 4 13551 \N +546681 2025-11-25 16:17:21.547626+00 2025-11-25 16:17:21.54763+00 f t ADELANTO 33700.00 5 13551 \N +547602 2025-11-25 18:30:19.037608+00 2025-11-25 18:30:19.037617+00 f t SUBTOTAL 0.00 1 13578 \N +547603 2025-11-25 18:30:19.039517+00 2025-11-25 18:30:19.039529+00 f t COSTO_SERVICIO 0.00 2 13578 \N +547604 2025-11-25 18:30:19.041303+00 2025-11-25 18:30:19.041312+00 f t DESCUENTO 0.00 3 13578 \N +547605 2025-11-25 18:30:19.042804+00 2025-11-25 18:30:19.042812+00 f t TOTAL 0.00 4 13578 \N +547606 2025-11-25 18:30:19.043948+00 2025-11-25 18:30:19.043956+00 f t ADELANTO 0.00 5 13578 \N +547962 2025-11-25 19:13:26.482238+00 2025-11-25 19:13:26.482245+00 f t SUBTOTAL 80000.00 1 13590 \N +547963 2025-11-25 19:13:26.483967+00 2025-11-25 19:13:26.483973+00 f t COSTO_SERVICIO 0.00 2 13590 \N +547964 2025-11-25 19:13:26.48496+00 2025-11-25 19:13:26.484965+00 f t DESCUENTO 0.00 3 13590 \N +547965 2025-11-25 19:13:26.485895+00 2025-11-25 19:13:26.485913+00 f t TOTAL 80000.00 4 13590 \N +547966 2025-11-25 19:13:26.48702+00 2025-11-25 19:13:26.487025+00 f t ADELANTO 12000.00 5 13590 \N +548092 2025-11-25 20:19:07.590909+00 2025-11-25 20:19:07.590923+00 f t SUBTOTAL 13200.00 1 13595 \N +548093 2025-11-25 20:19:07.593091+00 2025-11-25 20:19:07.593101+00 f t COSTO_SERVICIO 0.00 2 13595 \N +548094 2025-11-25 20:19:07.594829+00 2025-11-25 20:19:07.594836+00 f t DESCUENTO 0.00 3 13595 \N +548095 2025-11-25 20:19:07.596008+00 2025-11-25 20:19:07.596013+00 f t TOTAL 13200.00 4 13595 \N +548096 2025-11-25 20:19:07.597301+00 2025-11-25 20:19:07.597309+00 f t ADELANTO 13200.00 5 13595 \N +548617 2025-11-25 21:19:18.945802+00 2025-11-25 21:19:18.945811+00 f t SUBTOTAL 0.00 1 13601 \N +548618 2025-11-25 21:19:18.947669+00 2025-11-25 21:19:18.947677+00 f t COSTO_SERVICIO 0.00 2 13601 \N +548619 2025-11-25 21:19:18.949172+00 2025-11-25 21:19:18.949179+00 f t DESCUENTO 0.00 3 13601 \N +548620 2025-11-25 21:19:18.950195+00 2025-11-25 21:19:18.950201+00 f t TOTAL 0.00 4 13601 \N +548621 2025-11-25 21:19:18.951308+00 2025-11-25 21:19:18.951314+00 f t ADELANTO 0.00 5 13601 \N +\. + + +-- +-- Data for Name: productos_category; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.productos_category (id, created_at, updated_at, deleted, active, name, description, user_id, group_id, value) FROM stdin; +1 2025-04-15 20:41:42.593652+00 2025-04-15 20:41:42.593661+00 f t Clínica \N \N 1 0 +15 2025-04-15 20:41:42.99225+00 2025-04-15 20:41:42.992256+00 f t Eutanasia \N 1 9 +3 2025-04-15 20:41:42.638017+00 2025-04-15 20:41:42.638022+00 f t Adicionales \N 1 5 +2 2025-04-15 20:41:42.61455+00 2025-04-15 20:41:42.614555+00 f t Vacunación \N 1 1 +7 2025-04-15 20:41:42.711927+00 2025-04-15 20:41:42.711935+00 f t Endocrinología \N 2 8 +19 2025-04-15 20:41:43+00 2025-04-15 20:41:43+00 f f Castración \N 4 10 +17 2025-04-15 20:41:43+00 2025-04-15 20:41:43+00 f f Cardiología \N 4 10 +18 2025-04-15 20:41:43+00 2025-04-15 20:41:43+00 f f Limpieza dental \N 4 10 +8 2025-04-15 20:41:42.719866+00 2025-04-15 20:41:42.719875+00 f t Nutrición \N 2 6 +5 2025-04-15 20:41:42.687383+00 2025-04-15 20:41:42.687388+00 f t Dermatología \N 2 6 +9 2025-04-15 20:41:42.728453+00 2025-04-15 20:41:42.728461+00 f t Cardiología \N 2 6 +11 2025-04-15 20:41:42.752878+00 2025-04-15 20:41:42.752887+00 f t Fisioterapia \N 2 7 +12 2025-04-15 20:41:42.762463+00 2025-04-15 20:41:42.762472+00 f t Eco / Rayos X \N 2 4 +16 2025-04-15 20:41:43.028624+00 2025-04-15 20:41:43.02863+00 f t Cadete muestras \N 3 10 +14 2025-04-15 20:41:42.83871+00 2025-04-15 20:41:42.838718+00 f t Desparasitación \N 1 3 +4 2025-04-15 20:41:42.644899+00 2025-04-15 20:41:42.644905+00 f t Microchip \N 1 7 +10 2025-04-15 20:41:42.744603+00 2025-04-15 20:41:42.744611+00 f t Etología \N 2 9 +6 2025-04-15 20:41:42.701174+00 2025-04-15 20:41:42.701183+00 f f Oftalmologia \N 2 6 +20 2025-09-23 16:20:32.871864+00 2025-09-23 16:20:32.871873+00 f t Nefrología 118 2 7 +21 2025-09-24 13:19:42.040044+00 2025-09-24 13:19:42.040052+00 f t Cremación 110 4 10 +22 2025-10-08 17:56:07.639231+00 2025-10-08 17:56:07.639238+00 f f Derivación 118 4 10 +13 2025-04-15 20:41:42.784601+00 2025-04-15 20:41:42.784608+00 f t Laboratorio \N 3 4 +23 2025-10-27 18:03:38.298984+00 2025-10-27 18:03:38.298991+00 f t Gerontología Atención especializada para mascotas mayores y cuidados paliativos. 118 2 5 +\. + + +-- +-- Data for Name: productos_categoryservice; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.productos_categoryservice (id, created_at, updated_at, deleted, active, category_id, service_id, user_id) FROM stdin; +1 2025-05-09 16:45:15.392944+00 2025-05-09 16:45:15.392955+00 f t 15 82 110 +2 2025-05-09 16:45:21.345847+00 2025-05-09 16:45:21.345857+00 f t 14 82 110 +3 2025-05-09 16:45:26.817719+00 2025-05-09 16:45:26.817729+00 f t 4 82 110 +5 2025-05-09 16:45:40.02238+00 2025-05-09 16:45:40.022392+00 f t 2 82 110 +6 2025-05-09 16:46:29.414737+00 2025-05-09 16:46:29.414746+00 t t 13 146 110 +8 2025-05-09 16:46:50.536363+00 2025-05-09 16:46:50.536372+00 t t 13 82 110 +7 2025-05-09 16:46:40.433603+00 2025-05-09 16:46:40.433611+00 t t 13 93 110 +12 2025-09-10 19:16:32.691679+00 2025-09-10 19:16:32.691686+00 t t 13 82 110 +4 2025-05-09 16:45:33+00 2025-05-09 16:45:33+00 f f 3 82 110 +10 2025-09-10 19:16:10.516807+00 2025-09-10 19:16:10.516814+00 t t 13 146 110 +11 2025-09-10 19:16:16+00 2025-09-10 19:16:16+00 t f 13 93 110 +9 2025-05-23 15:13:52.771746+00 2025-05-23 15:13:52.771754+00 t t 14 89 110 +\. + + +-- +-- Data for Name: productos_discounts; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.productos_discounts (id, created_at, updated_at, deleted, active, discount, from_date, to_date, user_id, service_id) FROM stdin; +\. + + +-- +-- Data for Name: productos_group; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.productos_group (id, created_at, updated_at, deleted, active, name, description, user_id) FROM stdin; +1 2025-04-15 20:41:42.590491+00 2025-04-15 20:41:42.590498+00 f t Clínica \N \N +2 2025-04-15 20:41:42.685379+00 2025-04-15 20:41:42.685384+00 f t Especialidad \N \N +3 2025-04-15 20:41:42.782375+00 2025-04-15 20:41:42.782383+00 f t Laboratorio \N \N +4 2025-04-15 20:41:43.034286+00 2025-04-15 20:41:43.034291+00 f t Derivación \N \N +\. + + +-- +-- Data for Name: productos_prices; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.productos_prices (id, created_at, updated_at, deleted, active, price, professional_fee, from_date, to_date, user_id, service_id, payment_sign, veterinarian_id) FROM stdin; +97 2025-04-15 20:44:28.837021+00 2025-04-15 20:44:28.837027+00 f t 66000.00 55000.00 2025-04-01 \N \N 102 11000.00 \N +101 2025-04-15 20:44:28.876124+00 2025-04-15 20:44:28.876129+00 f t 65000.00 50000.00 2025-04-01 \N \N 107 15000.00 \N +139 2025-04-15 20:44:29.181204+00 2025-04-15 20:44:29.181211+00 t t 30000.00 15000.00 2025-04-01 \N \N 112 15000.00 \N +89 2025-04-15 20:44:28.763943+00 2025-04-15 20:44:28.763948+00 f t 14000.00 10000.00 2025-04-01 2025-05-31 \N 92 4000.00 \N +159 2025-06-02 13:33:52.275902+00 2025-06-02 13:33:52.275913+00 f t 15400.00 11000.00 2025-06-01 \N \N 92 4400.00 \N +87 2025-04-15 20:44:28.748744+00 2025-04-15 20:44:28.748751+00 f t 75000.00 60000.00 2025-04-01 2025-05-31 \N 90 15000.00 \N +160 2025-06-02 13:33:52.28439+00 2025-06-02 13:33:52.284402+00 f t 93750.00 75000.00 2025-06-01 \N \N 90 18750.00 \N +98 2025-04-15 20:44:28.844496+00 2025-04-15 20:44:28.844503+00 f t 95000.00 85000.00 2025-04-01 2025-05-31 \N 103 10000.00 \N +81 2025-04-15 20:44:28.684794+00 2025-04-15 20:44:28.684803+00 f t 46000.00 36500.00 2025-04-01 2025-05-31 \N 84 9500.00 \N +95 2025-04-15 20:44:28.808725+00 2025-04-15 20:44:28.808731+00 t t 45000.00 35000.00 \N 2025-05-31 118 98 45000.00 \N +99 2025-04-15 20:44:28.859491+00 2025-04-15 20:44:28.859497+00 t t 50000.00 42000.00 2025-04-01 2025-05-31 \N 105 8000.00 \N +157 2025-05-12 19:42:29.497061+00 2025-05-12 19:42:29.497068+00 f t 55000.00 11000.00 \N 2025-05-31 118 100 44000.00 \N +79 2025-04-15 20:44:28.65987+00 2025-04-15 20:44:28.659881+00 f t 38500.00 30000.00 2025-04-01 2025-05-31 \N 82 8500.00 \N +96 2025-04-15 20:44:28.81584+00 2025-04-15 20:44:28.815845+00 f t 75000.00 65000.00 \N 2025-05-31 118 99 10000.00 \N +88 2025-04-15 20:44:28.757197+00 2025-04-15 20:44:28.757203+00 f t 7000.00 5000.00 2025-04-01 2025-05-31 \N 91 2000.00 \N +94 2025-04-15 20:44:28.801969+00 2025-04-15 20:44:28.801975+00 t t 70000.00 60000.00 \N 2025-05-31 118 97 10000.00 \N +132 2025-04-15 20:44:29.117068+00 2025-04-15 20:44:29.117073+00 f t 12000.00 9500.00 2025-04-01 2025-05-31 \N 138 2500.00 \N +134 2025-04-15 20:44:29.1362+00 2025-04-15 20:44:29.136206+00 f t 12000.00 9500.00 2025-04-01 2025-05-31 \N 140 2500.00 \N +128 2025-04-15 20:44:29.085058+00 2025-04-15 20:44:29.085063+00 f t 10000.00 8000.00 2025-04-01 2025-05-31 \N 134 2000.00 \N +129 2025-04-15 20:44:29.091666+00 2025-04-15 20:44:29.091671+00 f t 12500.00 10000.00 2025-04-01 2025-05-31 \N 135 2500.00 \N +130 2025-04-15 20:44:29.099904+00 2025-04-15 20:44:29.099912+00 f t 12500.00 10000.00 2025-04-01 2025-05-31 \N 136 2500.00 \N +127 2025-04-15 20:44:29.075957+00 2025-04-15 20:44:29.075962+00 f t 10000.00 8000.00 2025-04-01 2025-05-31 \N 133 2000.00 \N +131 2025-04-15 20:44:29.109922+00 2025-04-15 20:44:29.109928+00 f t 16500.00 14000.00 2025-04-01 2025-05-31 \N 137 2500.00 \N +125 2025-04-15 20:44:29.061207+00 2025-04-15 20:44:29.061212+00 f t 9000.00 7500.00 2025-04-01 2025-05-31 \N 131 1500.00 \N +124 2025-04-15 20:44:29.053248+00 2025-04-15 20:44:29.053253+00 f t 9000.00 7500.00 2025-04-01 2025-05-31 \N 130 1500.00 \N +126 2025-04-15 20:44:29.069403+00 2025-04-15 20:44:29.069408+00 f t 9000.00 7500.00 2025-04-01 2025-05-31 \N 132 1500.00 \N +121 2025-04-15 20:44:29.03225+00 2025-04-15 20:44:29.032256+00 f t 17000.00 13200.00 2025-04-01 2025-05-31 \N 127 3800.00 \N +122 2025-04-15 20:44:29.03884+00 2025-04-15 20:44:29.038845+00 f t 25000.00 21000.00 2025-04-01 2025-05-31 \N 128 4000.00 \N +119 2025-04-15 20:44:29.01709+00 2025-04-15 20:44:29.017096+00 f t 11000.00 9000.00 2025-04-01 2025-05-31 \N 125 2000.00 \N +123 2025-04-15 20:44:29.047282+00 2025-04-15 20:44:29.047289+00 f t 30500.00 25000.00 2025-04-01 2025-05-31 \N 129 5500.00 \N +117 2025-04-15 20:44:28.999033+00 2025-04-15 20:44:28.999041+00 f t 23500.00 19500.00 2025-04-01 2025-05-31 \N 123 4000.00 \N +116 2025-04-15 20:44:28.990404+00 2025-04-15 20:44:28.990409+00 f t 19000.00 15500.00 2025-04-01 2025-05-31 \N 122 3500.00 \N +118 2025-04-15 20:44:29.007072+00 2025-04-15 20:44:29.007078+00 f t 25500.00 21000.00 2025-04-01 2025-05-31 \N 124 4500.00 \N +112 2025-04-15 20:44:28.960678+00 2025-04-15 20:44:28.960683+00 f t 22000.00 18000.00 2025-04-01 2025-05-31 \N 118 4000.00 \N +113 2025-04-15 20:44:28.969095+00 2025-04-15 20:44:28.969103+00 f t 28000.00 23000.00 2025-04-01 2025-05-31 \N 119 5000.00 \N +114 2025-04-15 20:44:28.975583+00 2025-04-15 20:44:28.975588+00 f t 32500.00 27000.00 2025-04-01 2025-05-31 \N 120 5500.00 \N +111 2025-04-15 20:44:28.954365+00 2025-04-15 20:44:28.95437+00 f t 20500.00 17000.00 2025-04-01 2025-05-31 \N 117 3500.00 \N +115 2025-04-15 20:44:28.984239+00 2025-04-15 20:44:28.984245+00 f t 32500.00 27000.00 2025-04-01 2025-05-31 \N 121 5500.00 \N +92 2025-04-15 20:44:28.786676+00 2025-04-15 20:44:28.786682+00 f t 7000.00 5000.00 2025-04-01 2025-05-31 \N 95 2000.00 \N +102 2025-04-15 20:44:28.882898+00 2025-04-15 20:44:28.882903+00 t t 85000.00 70000.00 2025-04-01 2025-05-31 \N 108 50000.00 \N +136 2025-04-15 20:44:29.150664+00 2025-04-15 20:44:29.15067+00 f t 68750.00 55000.00 2025-04-01 2025-05-31 \N 142 13750.00 \N +137 2025-04-15 20:44:29.158721+00 2025-04-15 20:44:29.15873+00 f t 75000.00 60000.00 2025-04-01 2025-05-31 \N 143 15000.00 \N +138 2025-04-15 20:44:29.165129+00 2025-04-15 20:44:29.165134+00 f t 82500.00 65000.00 2025-04-01 2025-05-31 \N 144 17500.00 \N +135 2025-04-15 20:44:29.142338+00 2025-04-15 20:44:29.142346+00 f t 62500.00 50000.00 2025-04-01 2025-05-31 \N 141 12500.00 \N +90 2025-04-15 20:44:28.771555+00 2025-04-15 20:44:28.77156+00 f t 7000.00 5000.00 2025-04-01 2025-05-31 \N 93 2000.00 \N +144 2025-04-15 20:44:29.223767+00 2025-04-15 20:44:29.223776+00 f t 240000.00 220000.00 2025-04-01 2025-05-31 \N 150 0.00 \N +86 2025-04-15 20:44:28.73802+00 2025-04-15 20:44:28.738027+00 f t 14000.00 10000.00 2025-04-01 2025-05-31 \N 89 4000.00 \N +91 2025-04-15 20:44:28.778947+00 2025-04-15 20:44:28.778952+00 f t 7000.00 5000.00 2025-04-01 2025-05-31 \N 94 2000.00 \N +148 2025-04-15 20:44:29.259818+00 2025-04-15 20:44:29.259824+00 f t 305000.00 285000.00 2025-04-01 2025-05-31 \N 154 0.00 \N +149 2025-04-15 20:44:29.268866+00 2025-04-15 20:44:29.268874+00 f t 305000.00 285000.00 2025-04-01 2025-05-31 \N 155 0.00 \N +146 2025-04-15 20:44:29.244478+00 2025-04-15 20:44:29.244487+00 f t 265000.00 245000.00 2025-04-01 2025-05-31 \N 152 0.00 \N +152 2025-04-15 20:44:29.29648+00 2025-04-15 20:44:29.296487+00 f t 280000.00 260000.00 2025-04-01 2025-05-31 \N 158 0.00 \N +153 2025-04-15 20:44:29.304694+00 2025-04-15 20:44:29.304704+00 f t 305000.00 285000.00 2025-04-01 2025-05-31 \N 159 0.00 \N +154 2025-04-15 20:44:29.314841+00 2025-04-15 20:44:29.31485+00 f t 305000.00 285000.00 2025-04-01 2025-05-31 \N 160 0.00 \N +151 2025-04-15 20:44:29.287216+00 2025-04-15 20:44:29.287223+00 f t 275000.00 255000.00 2025-04-01 2025-05-31 \N 157 0.00 \N +155 2025-04-15 20:44:29.324048+00 2025-04-15 20:44:29.324057+00 f t 325000.00 305000.00 2025-04-01 2025-05-31 \N 161 0.00 \N +108 2025-04-15 20:44:28.932916+00 2025-04-15 20:44:28.932921+00 f t 42000.00 0.00 2025-04-01 2025-05-31 \N 114 42000.00 \N +150 2025-04-15 20:44:29.277531+00 2025-04-15 20:44:29.277538+00 f t 325000.00 305000.00 2025-04-01 2025-05-31 \N 156 0.00 \N +158 2025-05-23 19:48:45.838238+00 2025-05-23 19:48:45.838246+00 f t 100.00 10.00 \N 2025-05-31 118 162 90.00 \N +143 2025-04-15 20:44:29.215978+00 2025-04-15 20:44:29.216008+00 f t 295000.00 275000.00 2025-04-01 2025-05-31 \N 149 0.00 \N +141 2025-04-15 20:44:29.198601+00 2025-04-15 20:44:29.198608+00 f t 44000.00 44000.00 2025-04-01 2025-05-31 \N 147 0.00 \N +147 2025-04-15 20:44:29.251375+00 2025-04-15 20:44:29.25138+00 f t 280000.00 260000.00 2025-04-01 2025-05-31 \N 153 0.00 \N +145 2025-04-15 20:44:29.234777+00 2025-04-15 20:44:29.234783+00 f t 250000.00 230000.00 2025-04-01 2025-05-31 \N 151 0.00 \N +107 2025-04-15 20:44:28.923136+00 2025-04-15 20:44:28.923146+00 f t 48000.00 0.00 2025-04-01 2025-05-31 \N 113 48000.00 \N +103 2025-04-15 20:44:28.892302+00 2025-04-15 20:44:28.892308+00 f t 20000.00 0.00 2025-04-01 2025-05-31 \N 109 20000.00 \N +104 2025-04-15 20:44:28.898669+00 2025-04-15 20:44:28.898675+00 f t 38000.00 0.00 2025-04-01 2025-05-31 \N 110 38000.00 \N +105 2025-04-15 20:44:28.906529+00 2025-04-15 20:44:28.906535+00 f t 31000.00 0.00 2025-04-01 2025-05-31 \N 111 31000.00 \N +106 2025-04-15 20:44:28.915847+00 2025-04-15 20:44:28.915854+00 f t 30000.00 15000.00 2025-04-01 2025-05-31 \N 112 15000.00 \N +133 2025-04-15 20:44:29.126511+00 2025-04-15 20:44:29.126517+00 t t 12000.00 9500.00 2025-04-01 2025-05-31 \N 139 2500.00 \N +109 2025-04-15 20:44:28.938598+00 2025-04-15 20:44:28.938604+00 f t 36225.00 0.00 2025-04-01 2025-05-31 \N 115 36225.00 \N +140 2025-04-15 20:44:29.188714+00 2025-04-15 20:44:29.188719+00 f t 12000.00 0.00 2025-04-01 2025-05-31 \N 146 12000.00 \N +82 2025-04-15 20:44:28.69728+00 2025-04-15 20:44:28.697289+00 f t 7500.00 5000.00 2025-04-01 2025-05-31 \N 85 2500.00 \N +85 2025-04-15 20:44:28.727578+00 2025-04-15 20:44:28.727587+00 f t 21000.00 14000.00 2025-04-01 2025-05-31 \N 88 7000.00 \N +83 2025-04-15 20:44:28.708364+00 2025-04-15 20:44:28.70837+00 f t 21000.00 14000.00 2025-04-01 2025-05-31 \N 86 7000.00 \N +84 2025-04-15 20:44:28.718506+00 2025-04-15 20:44:28.718515+00 f t 21000.00 14000.00 2025-04-01 2025-05-31 \N 87 7000.00 \N +156 2025-05-09 19:08:40.747204+00 2025-05-09 19:08:40.747214+00 f t 21000.00 14000.00 \N 2025-05-31 110 163 7000.00 \N +100 2025-04-15 20:44:28.867243+00 2025-04-15 20:44:28.867252+00 t t 57000.00 45000.00 \N 2025-05-31 118 106 12000.00 \N +110 2025-04-15 20:44:28.946162+00 2025-04-15 20:44:28.946168+00 f t 11000.00 0.00 2025-04-01 2025-05-31 \N 116 11000.00 \N +171 2025-06-02 13:33:52.360607+00 2025-06-02 13:33:52.360617+00 f t 7700.00 5500.00 2025-06-01 \N \N 91 2200.00 \N +173 2025-06-02 13:33:52.374823+00 2025-06-02 13:33:52.374832+00 f t 31000.00 25000.00 2025-06-01 \N \N 138 6000.00 \N +174 2025-06-02 13:33:52.381204+00 2025-06-02 13:33:52.381213+00 f t 33000.00 26500.00 2025-06-01 \N \N 140 6500.00 \N +175 2025-06-02 13:33:52.387172+00 2025-06-02 13:33:52.38718+00 f t 34500.00 27500.00 2025-06-01 \N \N 134 7000.00 \N +176 2025-06-02 13:33:52.393947+00 2025-06-02 13:33:52.393959+00 f t 41000.00 33000.00 2025-06-01 \N \N 135 8000.00 \N +177 2025-06-02 13:33:52.40202+00 2025-06-02 13:33:52.402029+00 f t 46900.00 37500.00 2025-06-01 \N \N 136 9400.00 \N +178 2025-06-02 13:33:52.408505+00 2025-06-02 13:33:52.408516+00 f t 33000.00 26500.00 2025-06-01 \N \N 133 6500.00 \N +179 2025-06-02 13:33:52.415446+00 2025-06-02 13:33:52.415477+00 f t 46900.00 37500.00 2025-06-01 \N \N 137 9400.00 \N +180 2025-06-02 13:33:52.422977+00 2025-06-02 13:33:52.422986+00 f t 24000.00 19000.00 2025-06-01 \N \N 131 5000.00 \N +181 2025-06-02 13:33:52.429319+00 2025-06-02 13:33:52.429327+00 f t 24000.00 19000.00 2025-06-01 \N \N 130 5000.00 \N +182 2025-06-02 13:33:52.436172+00 2025-06-02 13:33:52.43618+00 f t 24000.00 19000.00 2025-06-01 \N \N 132 5000.00 \N +120 2025-04-15 20:44:29.025086+00 2025-04-15 20:44:29.025092+00 f t 17000.00 13200.00 2025-04-01 2025-05-31 \N 126 3800.00 \N +183 2025-06-02 13:33:52.443221+00 2025-06-02 13:33:52.443234+00 f t 31500.00 25500.00 2025-06-01 \N \N 126 6000.00 \N +184 2025-06-02 13:33:52.449939+00 2025-06-02 13:33:52.449949+00 f t 31500.00 25500.00 2025-06-01 \N \N 127 6000.00 \N +185 2025-06-02 13:33:52.455685+00 2025-06-02 13:33:52.455697+00 f t 41000.00 33000.00 2025-06-01 \N \N 128 8000.00 \N +186 2025-06-02 13:33:52.462132+00 2025-06-02 13:33:52.462141+00 f t 24000.00 19000.00 2025-06-01 \N \N 125 5000.00 \N +187 2025-06-02 13:33:52.468269+00 2025-06-02 13:33:52.468278+00 f t 41000.00 33000.00 2025-06-01 \N \N 129 8000.00 \N +188 2025-06-02 13:33:52.474598+00 2025-06-02 13:33:52.47461+00 f t 29000.00 23500.00 2025-06-01 \N \N 123 5500.00 \N +189 2025-06-02 13:33:52.481544+00 2025-06-02 13:33:52.481556+00 f t 29000.00 23500.00 2025-06-01 \N \N 122 5500.00 \N +190 2025-06-02 13:33:52.488699+00 2025-06-02 13:33:52.488708+00 f t 29000.00 23500.00 2025-06-01 \N \N 124 5500.00 \N +191 2025-06-02 13:33:52.495212+00 2025-06-02 13:33:52.495241+00 f t 33500.00 27000.00 2025-06-01 \N \N 118 6500.00 \N +192 2025-06-02 13:33:52.502017+00 2025-06-02 13:33:52.502028+00 f t 40500.00 32500.00 2025-06-01 \N \N 119 8000.00 \N +193 2025-06-02 13:33:52.508461+00 2025-06-02 13:33:52.508474+00 f t 40500.00 32500.00 2025-06-01 \N \N 120 8000.00 \N +194 2025-06-02 13:33:52.520626+00 2025-06-02 13:33:52.520636+00 f t 32500.00 26000.00 2025-06-01 \N \N 117 6500.00 \N +195 2025-06-02 13:33:52.528114+00 2025-06-02 13:33:52.528127+00 f t 48000.00 38500.00 2025-06-01 \N \N 121 9500.00 \N +196 2025-06-02 13:33:52.535919+00 2025-06-02 13:33:52.535935+00 f t 7700.00 5500.00 2025-06-01 \N \N 95 2200.00 \N +202 2025-06-02 13:33:52.591018+00 2025-06-02 13:33:52.59103+00 f t 0.00 0.00 2025-06-01 \N \N 145 0.00 \N +203 2025-06-02 13:33:52.598996+00 2025-06-02 13:33:52.599008+00 f t 7700.00 5500.00 2025-06-01 \N \N 93 2200.00 \N +93 2025-04-15 20:44:28.793293+00 2025-04-15 20:44:28.793299+00 f t 16800.00 12000.00 2025-04-01 2025-05-31 \N 96 4800.00 \N +204 2025-06-02 13:33:52.6069+00 2025-06-02 13:33:52.606912+00 f t 16800.00 12000.00 2025-06-01 \N \N 96 4800.00 \N +205 2025-06-02 13:33:52.614311+00 2025-06-02 13:33:52.614323+00 f t 0.00 0.00 2025-06-01 \N \N 150 0.00 \N +206 2025-06-02 13:33:52.621389+00 2025-06-02 13:33:52.6214+00 f t 13000.00 10000.00 2025-06-01 \N \N 89 3000.00 \N +207 2025-06-02 13:33:52.630175+00 2025-06-02 13:33:52.63019+00 f t 7700.00 5500.00 2025-06-01 \N \N 94 2200.00 \N +208 2025-06-02 13:33:52.638317+00 2025-06-02 13:33:52.638331+00 f t 0.00 0.00 2025-06-01 \N \N 154 0.00 \N +209 2025-06-02 13:33:52.645721+00 2025-06-02 13:33:52.645736+00 f t 0.00 0.00 2025-06-01 \N \N 155 0.00 \N +210 2025-06-02 13:33:52.654089+00 2025-06-02 13:33:52.654101+00 f t 0.00 0.00 2025-06-01 \N \N 152 0.00 \N +211 2025-06-02 13:33:52.663225+00 2025-06-02 13:33:52.663235+00 f t 0.00 0.00 2025-06-01 \N \N 158 0.00 \N +212 2025-06-02 13:33:52.669836+00 2025-06-02 13:33:52.669847+00 f t 0.00 0.00 2025-06-01 \N \N 159 0.00 \N +213 2025-06-02 13:33:52.676699+00 2025-06-02 13:33:52.676708+00 f t 0.00 0.00 2025-06-01 \N \N 160 0.00 \N +214 2025-06-02 13:33:52.683005+00 2025-06-02 13:33:52.683014+00 f t 0.00 0.00 2025-06-01 \N \N 157 0.00 \N +215 2025-06-02 13:33:52.690689+00 2025-06-02 13:33:52.690698+00 f t 0.00 0.00 2025-06-01 \N \N 161 0.00 \N +217 2025-06-02 13:33:52.704634+00 2025-06-02 13:33:52.704643+00 f t 0.00 0.00 2025-06-01 \N \N 156 0.00 \N +218 2025-06-02 13:33:52.711625+00 2025-06-02 13:33:52.711636+00 f t 0.00 0.00 2025-06-01 \N \N 162 0.00 \N +142 2025-04-15 20:44:29.20726+00 2025-04-15 20:44:29.207269+00 f t 265000.00 245000.00 2025-04-01 2025-05-31 \N 148 0.00 \N +219 2025-06-02 13:33:52.718369+00 2025-06-02 13:33:52.718382+00 f t 0.00 0.00 2025-06-01 \N \N 148 0.00 \N +220 2025-06-02 13:33:52.724628+00 2025-06-02 13:33:52.724637+00 f t 0.00 0.00 2025-06-01 \N \N 149 0.00 \N +221 2025-06-02 13:33:52.731643+00 2025-06-02 13:33:52.731652+00 f t 0.00 0.00 2025-06-01 \N \N 147 0.00 \N +222 2025-06-02 13:33:52.739042+00 2025-06-02 13:33:52.739051+00 f t 0.00 0.00 2025-06-01 \N \N 153 0.00 \N +223 2025-06-02 13:33:52.74495+00 2025-06-02 13:33:52.744962+00 f t 0.00 0.00 2025-06-01 \N \N 151 0.00 \N +80 2025-04-15 20:44:28.674824+00 2025-04-15 20:44:28.674833+00 f t 25000.00 16000.00 2025-04-01 2025-05-31 \N 83 25000.00 \N +165 2025-06-02 13:33:52.320745+00 2025-06-02 13:33:52.320759+00 f t 61000.00 50000.00 2025-06-03 \N 118 100 11000.00 \N +168 2025-06-02 13:33:52.34177+00 2025-06-02 13:33:52.341781+00 f t 85000.00 75000.00 \N \N 118 99 47500.00 \N +170 2025-06-02 13:33:52.354292+00 2025-06-02 13:33:52.354306+00 f t 11000.00 0.00 2025-09-02 \N 118 116 11000.00 \N +216 2025-06-02 13:33:52.697734+00 2025-06-02 13:33:52.697747+00 f t 52500.00 0.00 2025-07-25 \N 118 114 52500.00 \N +225 2025-06-02 13:33:52.757394+00 2025-06-02 13:33:52.757403+00 f t 20500.00 0.00 2025-07-28 \N 118 109 20500.00 \N +224 2025-06-02 13:33:52.75138+00 2025-06-02 13:33:52.751392+00 f t 52500.00 0.00 2025-07-28 \N 118 113 52500.00 \N +227 2025-06-02 13:33:52.769104+00 2025-06-02 13:33:52.769116+00 f t 31500.00 0.00 2025-07-28 \N 118 111 31500.00 \N +228 2025-06-02 13:33:52.775672+00 2025-06-02 13:33:52.77568+00 f t 32500.00 0.00 2025-07-28 \N 118 112 32500.00 \N +164 2025-06-02 13:33:52.313014+00 2025-06-02 13:33:52.313024+00 t t 49000.00 38000.00 2025-08-01 \N 118 98 49000.00 \N +197 2025-06-02 13:33:52.549756+00 2025-06-02 13:33:52.549768+00 f t 68000.00 55000.00 2025-08-01 \N 118 106 13000.00 \N +229 2025-06-02 13:33:52.7819+00 2025-06-02 13:33:52.781909+00 f t 75000.00 60000.00 2025-08-11 \N 118 108 15000.00 \N +166 2025-06-02 13:33:52.326373+00 2025-06-02 13:33:52.326386+00 f t 72500.00 60000.00 2025-08-18 \N 118 104 72500.00 \N +235 2025-06-02 13:33:52.840101+00 2025-06-02 13:33:52.840111+00 t t 22500.00 15000.00 \N 2025-08-31 118 88 7500.00 \N +162 2025-06-02 13:33:52.298895+00 2025-06-02 13:33:52.298905+00 t t 50000.00 40000.00 \N 2025-08-31 118 84 10000.00 \N +167 2025-06-02 13:33:52.334176+00 2025-06-02 13:33:52.334189+00 t t 42000.00 32500.00 \N 2025-08-31 118 82 9500.00 \N +231 2025-06-02 13:33:52.800914+00 2025-06-02 13:33:52.800923+00 t t 27500.00 18000.00 \N 2025-08-31 118 83 27500.00 \N +238 2025-06-02 13:33:52.869254+00 2025-06-02 13:33:52.869264+00 t t 22500.00 15000.00 \N 2025-08-31 118 163 7500.00 \N +234 2025-06-02 13:33:52.825713+00 2025-06-02 13:33:52.825725+00 t t 7500.00 5500.00 \N 2025-08-31 118 85 2000.00 \N +236 2025-06-02 13:33:52.847069+00 2025-06-02 13:33:52.847079+00 t t 22500.00 15000.00 \N 2025-08-31 118 86 7500.00 \N +233 2025-06-02 13:33:52.818285+00 2025-06-02 13:33:52.818297+00 f t 13200.00 0.00 2025-09-02 \N 118 146 13200.00 \N +161 2025-06-02 13:33:52.291466+00 2025-06-02 13:33:52.291479+00 f t 107000.00 95000.00 2025-09-16 \N 118 103 12000.00 \N +169 2025-06-02 13:33:52.347685+00 2025-06-02 13:33:52.347693+00 f t 60000.00 45000.00 2025-09-23 \N 118 101 60000.00 \N +201 2025-06-02 13:33:52.584837+00 2025-06-02 13:33:52.584851+00 f t 69000.00 55000.00 2025-09-25 \N 118 141 14000.00 \N +198 2025-06-02 13:33:52.561005+00 2025-06-02 13:33:52.56102+00 f t 75000.00 60000.00 2025-09-25 \N 118 142 15000.00 \N +199 2025-06-02 13:33:52.569402+00 2025-06-02 13:33:52.569415+00 f t 81500.00 65000.00 2025-09-25 \N 118 143 16500.00 \N +200 2025-06-02 13:33:52.57675+00 2025-06-02 13:33:52.576763+00 f t 87500.00 70000.00 2025-09-25 \N 118 144 17500.00 \N +163 2025-06-02 13:33:52.306193+00 2025-06-02 13:33:52.306203+00 t t 76000.00 65000.00 2025-08-01 \N 118 97 11000.00 \N +172 2025-06-02 13:33:52.367064+00 2025-06-02 13:33:52.367076+00 t t 33000.00 26500.00 \N 2025-10-26 118 139 6500.00 \N +230 2025-06-02 13:33:52.791685+00 2025-06-02 13:33:52.791698+00 t t 65000.00 54000.00 \N 2025-09-30 118 105 11000.00 \N +239 2025-06-26 14:19:07.788459+00 2025-06-26 14:19:07.788468+00 f t 130000.00 115000.00 2025-06-26 \N 118 164 15000.00 \N +226 2025-06-02 13:33:52.762935+00 2025-06-02 13:33:52.762945+00 f t 34000.00 0.00 2025-07-28 \N 118 110 34000.00 \N +232 2025-06-02 13:33:52.810495+00 2025-06-02 13:33:52.810508+00 f t 52500.00 0.00 2025-07-28 \N 118 115 52500.00 \N +241 2025-08-31 22:43:44.106047+00 2025-08-31 22:43:44.106056+00 f t 55000.00 44000.00 2025-09-01 \N 118 84 11000.00 \N +242 2025-08-31 22:44:46.139123+00 2025-08-31 22:44:46.139191+00 f t 46000.00 35000.00 2025-09-01 \N 118 82 11000.00 \N +243 2025-08-31 22:45:22.299029+00 2025-08-31 22:45:22.299038+00 f t 30000.00 19500.00 2025-09-01 \N 118 83 30000.00 \N +244 2025-08-31 22:47:52.522255+00 2025-08-31 22:47:52.522264+00 f t 8000.00 5500.00 2025-09-01 \N 118 85 2500.00 \N +246 2025-08-31 22:54:54.54438+00 2025-08-31 22:54:54.544387+00 f t 24000.00 16000.00 2025-09-01 \N 118 86 8000.00 \N +247 2025-08-31 22:56:14.08883+00 2025-08-31 22:56:14.088838+00 f t 24000.00 16000.00 2025-09-01 \N 118 163 8000.00 \N +245 2025-08-31 22:54:15.335389+00 2025-08-31 22:54:15.335396+00 f t 24000.00 16000.00 2025-09-01 \N 118 88 8000.00 \N +248 2025-08-31 22:56:37.98129+00 2025-08-31 22:56:37.981298+00 f t 24000.00 16000.00 2025-09-01 \N 118 87 8000.00 \N +237 2025-06-02 13:33:52.861949+00 2025-06-02 13:33:52.861963+00 t t 22500.00 15000.00 \N 2025-08-31 118 87 7500.00 \N +240 2025-07-28 14:35:28.679723+00 2025-07-28 14:35:28.67973+00 f t 87000.00 0.00 2025-09-02 \N 118 165 87000.00 \N +249 2025-09-03 19:00:30.937004+00 2025-09-03 19:00:30.937013+00 f t 78000.00 65000.00 2025-09-03 \N 118 167 13000.00 \N +252 2025-09-24 12:29:20.965487+00 2025-09-24 12:29:20.965494+00 f t 1000.00 0.00 2025-09-24 \N 118 170 1000.00 \N +253 2025-09-24 17:29:05.893653+00 2025-09-24 17:29:05.893661+00 f t 23000.00 17500.00 2025-09-24 \N 118 172 5500.00 \N +254 2025-09-24 17:43:46.232678+00 2025-09-24 17:43:46.232684+00 f t 80000.00 70000.00 2025-09-24 \N 118 173 12000.00 \N +295 2025-09-30 11:32:56.533455+00 2025-09-30 11:32:56.533462+00 f t 24000.00 19000.00 2025-09-30 \N \N 125 5000.00 5 +296 2025-09-30 11:32:57.938202+00 2025-09-30 11:32:57.938211+00 f t 41000.00 33000.00 2025-09-30 \N \N 128 8000.00 5 +301 2025-09-30 11:33:47.431383+00 2025-09-30 11:33:47.431393+00 f t 23000.00 17500.00 2025-09-30 \N \N 172 5500.00 5 +302 2025-09-30 11:33:48.968004+00 2025-09-30 11:33:48.968016+00 f t 24000.00 16000.00 2025-09-30 \N \N 163 8000.00 5 +303 2025-09-30 11:33:50.30321+00 2025-09-30 11:33:50.303217+00 f t 24000.00 16000.00 2025-09-30 \N \N 87 8000.00 5 +304 2025-09-30 11:33:52.53223+00 2025-09-30 11:33:52.532239+00 f t 24000.00 16000.00 2025-09-30 \N \N 88 8000.00 5 +305 2025-09-30 11:33:53.642594+00 2025-09-30 11:33:53.642601+00 f t 24000.00 16000.00 2025-09-30 \N \N 86 8000.00 5 +306 2025-09-30 11:33:55.878287+00 2025-09-30 11:33:55.878297+00 f t 8000.00 5500.00 2025-09-30 \N \N 85 2500.00 5 +307 2025-09-30 11:33:57.345816+00 2025-09-30 11:33:57.345823+00 f t 13200.00 0.00 2025-09-30 \N \N 146 13200.00 5 +309 2025-09-30 11:34:02.248865+00 2025-09-30 11:34:02.248872+00 f t 30000.00 19500.00 2025-09-30 \N \N 83 30000.00 5 +310 2025-09-30 11:34:12.301404+00 2025-09-30 11:34:12.301415+00 f t 87000.00 0.00 2025-09-30 \N \N 165 87000.00 5 +311 2025-09-30 11:34:14.239878+00 2025-09-30 11:34:14.239889+00 f t 52500.00 0.00 2025-09-30 \N \N 115 52500.00 5 +312 2025-09-30 11:34:16.172438+00 2025-09-30 11:34:16.172448+00 f t 52500.00 0.00 2025-09-30 \N \N 113 52500.00 5 +264 2025-09-30 11:31:40.466468+00 2025-09-30 11:31:40.466477+00 t t 49000.00 38000.00 2025-09-30 \N \N 98 49000.00 5 +255 2025-09-30 11:31:18.656507+00 2025-09-30 11:31:18.656518+00 f f 32500.00 0.00 2025-09-30 \N \N 112 32500.00 5 +256 2025-09-30 11:31:21.090538+00 2025-09-30 11:31:21.090548+00 f f 20500.00 0.00 2025-09-30 \N \N 109 20500.00 5 +258 2025-09-30 11:31:25.562875+00 2025-09-30 11:31:25.562884+00 f f 31500.00 0.00 2025-09-30 \N \N 111 31500.00 5 +257 2025-09-30 11:31:24.2258+00 2025-09-30 11:31:24.225808+00 f f 34000.00 0.00 2025-09-30 \N \N 110 34000.00 5 +259 2025-09-30 11:31:29.761156+00 2025-09-30 11:31:29.761167+00 f f 15400.00 11000.00 2025-09-30 \N \N 92 4400.00 5 +260 2025-09-30 11:31:32.268554+00 2025-09-30 11:31:32.268569+00 f f 93750.00 75000.00 2025-09-30 \N \N 90 18750.00 5 +262 2025-09-30 11:31:35.749329+00 2025-09-30 11:31:35.749337+00 f f 107000.00 95000.00 2025-09-30 \N \N 103 12000.00 5 +261 2025-09-30 11:31:34.0832+00 2025-09-30 11:31:34.083212+00 f f 55000.00 44000.00 2025-09-30 \N \N 84 11000.00 5 +265 2025-09-30 11:31:43.115838+00 2025-09-30 11:31:43.115846+00 f f 61000.00 50000.00 2025-09-30 \N \N 100 11000.00 5 +250 2025-09-23 16:13:05.981565+00 2025-09-23 16:13:05.981574+00 t t 39000.00 30000.00 2025-09-23 \N 118 168 39000.00 \N +267 2025-09-30 11:31:48.54852+00 2025-09-30 11:31:48.548527+00 f f 72500.00 60000.00 2025-09-30 \N \N 104 72500.00 5 +268 2025-09-30 11:31:51.234871+00 2025-09-30 11:31:51.234879+00 f f 46000.00 35000.00 2025-09-30 \N \N 82 11000.00 5 +269 2025-09-30 11:31:56.432891+00 2025-09-30 11:31:56.4329+00 f f 60000.00 45000.00 2025-09-30 \N \N 101 60000.00 5 +271 2025-09-30 11:31:59.794374+00 2025-09-30 11:31:59.794381+00 f f 11000.00 0.00 2025-09-30 \N \N 116 11000.00 5 +272 2025-09-30 11:32:02.688722+00 2025-09-30 11:32:02.688736+00 f f 7700.00 5500.00 2025-09-30 \N \N 91 2200.00 5 +274 2025-09-30 11:32:11.165232+00 2025-09-30 11:32:11.165239+00 t f 33000.00 26500.00 \N 2025-10-26 118 139 6500.00 5 +273 2025-09-30 11:32:08.787683+00 2025-09-30 11:32:08.787691+00 f f 1000.00 0.00 2025-09-30 \N \N 170 1000.00 5 +275 2025-09-30 11:32:14.313603+00 2025-09-30 11:32:14.313611+00 f f 31000.00 25000.00 2025-09-30 \N \N 138 6000.00 5 +276 2025-09-30 11:32:16.60888+00 2025-09-30 11:32:16.608888+00 f f 33000.00 26500.00 2025-09-30 \N \N 140 6500.00 5 +278 2025-09-30 11:32:21.684974+00 2025-09-30 11:32:21.68498+00 f f 41000.00 33000.00 2025-09-30 \N \N 135 8000.00 5 +279 2025-09-30 11:32:24.336339+00 2025-09-30 11:32:24.33635+00 f f 46900.00 37500.00 2025-09-30 \N \N 136 9400.00 5 +282 2025-09-30 11:32:30.101001+00 2025-09-30 11:32:30.101011+00 f f 46900.00 37500.00 2025-09-30 \N \N 137 9400.00 5 +280 2025-09-30 11:32:26.771437+00 2025-09-30 11:32:26.771449+00 f f 33000.00 26500.00 2025-09-30 \N \N 133 6500.00 5 +281 2025-09-30 11:32:28.859915+00 2025-09-30 11:32:28.859922+00 f f 29000.00 23500.00 2025-09-30 \N \N 123 5500.00 5 +283 2025-09-30 11:32:32.252767+00 2025-09-30 11:32:32.252774+00 f f 29000.00 23500.00 2025-09-30 \N \N 122 5500.00 5 +284 2025-09-30 11:32:33.334235+00 2025-09-30 11:32:33.334245+00 f f 29000.00 23500.00 2025-09-30 \N \N 124 5500.00 5 +286 2025-09-30 11:32:38.62797+00 2025-09-30 11:32:38.627978+00 f f 40500.00 32500.00 2025-09-30 \N \N 119 8000.00 5 +285 2025-09-30 11:32:36.602655+00 2025-09-30 11:32:36.602662+00 f f 33500.00 27000.00 2025-09-30 \N \N 118 6500.00 5 +287 2025-09-30 11:32:41.450696+00 2025-09-30 11:32:41.450709+00 f f 40500.00 32500.00 2025-09-30 \N \N 120 8000.00 5 +288 2025-09-30 11:32:43.111279+00 2025-09-30 11:32:43.111288+00 f f 32500.00 26000.00 2025-09-30 \N \N 117 6500.00 5 +290 2025-09-30 11:32:46.493989+00 2025-09-30 11:32:46.493996+00 f f 24000.00 19000.00 2025-09-30 \N \N 131 5000.00 5 +289 2025-09-30 11:32:44.926488+00 2025-09-30 11:32:44.926496+00 f f 48000.00 38500.00 2025-09-30 \N \N 121 9500.00 5 +292 2025-09-30 11:32:50.7481+00 2025-09-30 11:32:50.748107+00 f f 24000.00 19000.00 2025-09-30 \N \N 130 5000.00 5 +293 2025-09-30 11:32:52.45018+00 2025-09-30 11:32:52.450186+00 f f 31500.00 25500.00 2025-09-30 \N \N 126 6000.00 5 +291 2025-09-30 11:32:49.499688+00 2025-09-30 11:32:49.499713+00 f f 24000.00 19000.00 2025-09-30 \N \N 132 5000.00 5 +294 2025-09-30 11:32:54.054134+00 2025-09-30 11:32:54.054145+00 f f 31500.00 25500.00 2025-09-30 \N \N 127 6000.00 5 +299 2025-09-30 11:33:10.371945+00 2025-09-30 11:33:10.371957+00 f f 130000.00 115000.00 2025-09-30 \N \N 164 15000.00 5 +297 2025-09-30 11:32:59.877213+00 2025-09-30 11:32:59.87722+00 f f 41000.00 33000.00 2025-09-30 \N \N 129 8000.00 5 +298 2025-09-30 11:33:02.393161+00 2025-09-30 11:33:02.393174+00 f f 7700.00 5500.00 2025-09-30 \N \N 95 2200.00 5 +300 2025-09-30 11:33:15.433366+00 2025-09-30 11:33:15.433374+00 f f 80000.00 70000.00 2025-09-30 \N \N 173 12000.00 5 +266 2025-09-30 11:31:45.633695+00 2025-09-30 11:31:45.633702+00 t f 39000.00 30000.00 2025-09-30 \N \N 168 39000.00 5 +251 2025-09-23 16:22:37.80545+00 2025-09-23 16:22:37.805457+00 t t 60000.00 50000.00 2025-09-23 \N 118 169 60000.00 \N +270 2025-09-30 11:31:58.105968+00 2025-09-30 11:31:58.105981+00 t f 60000.00 50000.00 2025-09-30 \N \N 169 60000.00 5 +308 2025-09-30 11:33:59.781086+00 2025-09-30 11:33:59.781094+00 t t 65000.00 54000.00 \N 2025-09-30 118 105 11000.00 5 +313 2025-09-30 11:34:18.636936+00 2025-09-30 11:34:18.636943+00 f t 52500.00 0.00 2025-09-30 \N \N 114 52500.00 5 +314 2025-09-30 11:34:23.768386+00 2025-09-30 11:34:23.768397+00 f t 7700.00 5500.00 2025-09-30 \N \N 94 2200.00 5 +315 2025-09-30 11:34:26.234252+00 2025-09-30 11:34:26.23426+00 f t 16800.00 12000.00 2025-09-30 \N \N 96 4800.00 5 +316 2025-09-30 11:34:28.073042+00 2025-09-30 11:34:28.073053+00 f t 0.00 0.00 2025-09-30 \N \N 145 0.00 5 +317 2025-09-30 11:34:30.487186+00 2025-09-30 11:34:30.487194+00 f t 7700.00 5500.00 2025-09-30 \N \N 93 2200.00 5 +318 2025-09-30 11:34:33.105638+00 2025-09-30 11:34:33.105648+00 f t 69000.00 55000.00 2025-09-30 \N \N 141 14000.00 5 +319 2025-09-30 11:34:35.077312+00 2025-09-30 11:34:35.077323+00 f t 87500.00 70000.00 2025-09-30 \N \N 144 17500.00 5 +320 2025-09-30 11:34:37.186753+00 2025-09-30 11:34:37.186766+00 f t 75000.00 60000.00 2025-09-30 \N \N 142 15000.00 5 +321 2025-09-30 11:34:40.24578+00 2025-09-30 11:34:40.245788+00 f t 81500.00 65000.00 2025-09-30 \N \N 143 16500.00 5 +324 2025-09-30 16:21:23.165789+00 2025-09-30 16:21:23.165795+00 f t 110.00 110.00 2025-09-30 \N \N 142 16.50 94 +325 2025-09-30 16:21:43.142945+00 2025-09-30 16:21:43.142951+00 f t 150000.00 150000.00 2025-09-30 \N \N 143 22500.00 94 +326 2025-09-30 16:21:52.801393+00 2025-09-30 16:21:52.801404+00 f t 200000.00 200000.00 2025-09-30 \N \N 144 30000.00 94 +327 2025-09-30 16:22:02.353999+00 2025-09-30 16:22:02.35401+00 f t 110000.00 110000.00 2025-09-30 \N \N 141 16500.00 94 +328 2025-09-30 16:22:09.596706+00 2025-09-30 16:22:09.596717+00 f t 200000.00 200000.00 2025-09-30 \N \N 145 30000.00 94 +329 2025-09-30 16:22:38.792327+00 2025-09-30 16:22:38.792333+00 f t 16800.00 12000.00 2025-09-30 \N \N 96 4800.00 94 +330 2025-09-30 16:22:41.890878+00 2025-09-30 16:22:41.890884+00 f t 7700.00 5500.00 2025-09-30 \N \N 94 2200.00 94 +331 2025-09-30 17:03:29.390466+00 2025-09-30 17:03:29.390476+00 f t 107000.00 95000.00 2025-09-30 \N \N 103 12000.00 21 +334 2025-09-30 17:03:45.337059+00 2025-09-30 17:03:45.337069+00 f t 61000.00 50000.00 2025-09-30 \N \N 100 11000.00 21 +336 2025-09-30 17:03:49.566421+00 2025-09-30 17:03:49.566428+00 f t 72500.00 60000.00 2025-09-30 \N \N 104 72500.00 21 +338 2025-09-30 17:04:16.380946+00 2025-09-30 17:04:16.380953+00 f t 45000.00 45000.00 2025-09-30 \N \N 101 6750.00 21 +339 2025-09-30 17:04:41.755257+00 2025-09-30 17:04:41.755266+00 f t 70000.00 70000.00 2025-09-30 \N \N 170 10500.00 21 +347 2025-09-30 17:05:15.028965+00 2025-09-30 17:05:15.028974+00 f t 46900.00 37500.00 2025-09-30 \N \N 137 9400.00 21 +348 2025-09-30 17:05:18.716167+00 2025-09-30 17:05:18.716178+00 f t 29000.00 23500.00 2025-09-30 \N \N 123 5500.00 21 +349 2025-09-30 17:05:21.193909+00 2025-09-30 17:05:21.193916+00 f t 29000.00 23500.00 2025-09-30 \N \N 122 5500.00 21 +350 2025-09-30 17:05:23.501889+00 2025-09-30 17:05:23.501901+00 f t 29000.00 23500.00 2025-09-30 \N \N 124 5500.00 21 +351 2025-09-30 17:05:26.98637+00 2025-09-30 17:05:26.986384+00 f t 33500.00 27000.00 2025-09-30 \N \N 118 6500.00 21 +352 2025-09-30 17:05:28.650986+00 2025-09-30 17:05:28.650994+00 f t 40500.00 32500.00 2025-09-30 \N \N 119 8000.00 21 +353 2025-09-30 17:05:31.322112+00 2025-09-30 17:05:31.32212+00 f t 40500.00 32500.00 2025-09-30 \N \N 120 8000.00 21 +354 2025-09-30 17:05:34.315596+00 2025-09-30 17:05:34.315605+00 f t 32500.00 26000.00 2025-09-30 \N \N 117 6500.00 21 +355 2025-09-30 17:05:36.050252+00 2025-09-30 17:05:36.050261+00 f t 48000.00 38500.00 2025-09-30 \N \N 121 9500.00 21 +356 2025-09-30 17:05:51.256961+00 2025-09-30 17:05:51.256968+00 f t 24000.00 19000.00 2025-09-30 \N \N 131 5000.00 21 +357 2025-09-30 17:05:53.360681+00 2025-09-30 17:05:53.360689+00 f t 24000.00 19000.00 2025-09-30 \N \N 130 5000.00 21 +358 2025-09-30 17:05:55.575321+00 2025-09-30 17:05:55.575339+00 f t 24000.00 19000.00 2025-09-30 \N \N 132 5000.00 21 +359 2025-09-30 17:06:03.920473+00 2025-09-30 17:06:03.920487+00 f t 31500.00 25500.00 2025-09-30 \N \N 127 6000.00 21 +360 2025-09-30 17:06:06.613573+00 2025-09-30 17:06:06.613582+00 f t 41000.00 33000.00 2025-09-30 \N \N 128 8000.00 21 +361 2025-09-30 17:06:09.74145+00 2025-09-30 17:06:09.741465+00 f t 24000.00 19000.00 2025-09-30 \N \N 125 5000.00 21 +362 2025-09-30 17:06:11.169098+00 2025-09-30 17:06:11.169111+00 f t 41000.00 33000.00 2025-09-30 \N \N 129 8000.00 21 +363 2025-09-30 17:06:28.355858+00 2025-09-30 17:06:28.355866+00 f t 8000.00 8000.00 2025-09-30 \N \N 95 1200.00 21 +364 2025-09-30 17:06:31.144085+00 2025-09-30 17:06:31.144093+00 f t 130000.00 115000.00 2025-09-30 \N \N 164 15000.00 21 +365 2025-09-30 17:06:34.271964+00 2025-09-30 17:06:34.271971+00 f t 68000.00 55000.00 2025-09-30 \N \N 106 13000.00 21 +366 2025-09-30 17:06:37.784599+00 2025-09-30 17:06:37.784605+00 f t 80000.00 70000.00 2025-09-30 \N \N 173 12000.00 21 +367 2025-09-30 17:06:39.145251+00 2025-09-30 17:06:39.145258+00 f t 78000.00 65000.00 2025-09-30 \N \N 167 13000.00 21 +372 2025-09-30 17:08:09.956649+00 2025-09-30 17:08:09.956661+00 f t 130000.00 130000.00 2025-09-30 \N \N 145 19500.00 21 +373 2025-09-30 17:08:42.049707+00 2025-09-30 17:08:42.049714+00 f t 10000.00 10000.00 2025-09-30 \N \N 94 1500.00 21 +374 2025-09-30 17:08:54.340487+00 2025-09-30 17:08:54.340495+00 f t 52500.00 0.00 2025-09-30 \N \N 114 52500.00 21 +375 2025-09-30 17:08:56.948958+00 2025-09-30 17:08:56.948966+00 f t 52500.00 0.00 2025-09-30 \N \N 115 52500.00 21 +376 2025-09-30 17:09:00.97844+00 2025-09-30 17:09:00.978451+00 f t 52500.00 0.00 2025-09-30 \N \N 113 52500.00 21 +377 2025-09-30 17:09:05.023668+00 2025-09-30 17:09:05.02368+00 f t 87000.00 0.00 2025-09-30 \N \N 165 87000.00 21 +378 2025-09-30 17:09:08.00128+00 2025-09-30 17:09:08.001288+00 f t 75000.00 60000.00 2025-09-30 \N \N 108 15000.00 21 +380 2025-09-30 17:09:21.960074+00 2025-09-30 17:09:21.960086+00 f t 25000.00 25000.00 2025-09-30 \N \N 83 3750.00 21 +382 2025-09-30 17:09:35.955494+00 2025-09-30 17:09:35.955501+00 f t 15000.00 15000.00 2025-09-30 \N \N 85 2250.00 21 +383 2025-09-30 17:09:57.975826+00 2025-09-30 17:09:57.975836+00 f t 23000.00 17500.00 2025-09-30 \N \N 172 5500.00 21 +385 2025-09-30 19:26:15.024655+00 2025-09-30 19:26:15.024667+00 f t 130000.00 115000.00 2025-09-30 \N \N 164 15000.00 79 +386 2025-09-30 19:26:19.282434+00 2025-09-30 19:26:19.282441+00 f t 80000.00 70000.00 2025-09-30 \N \N 173 12000.00 79 +387 2025-09-30 19:26:22.805829+00 2025-09-30 19:26:22.805834+00 f t 78000.00 65000.00 2025-09-30 \N \N 167 13000.00 79 +388 2025-09-30 19:26:54.172218+00 2025-09-30 19:26:54.172223+00 f t 75000.00 60000.00 2025-09-30 \N \N 108 15000.00 79 +389 2025-10-01 15:53:10.727157+00 2025-10-01 15:53:10.727167+00 f t 107000.00 95000.00 2025-10-01 \N \N 103 12000.00 94 +322 2025-09-30 11:34:47.242346+00 2025-09-30 11:34:47.242354+00 f f 78000.00 65000.00 2025-09-30 \N \N 167 13000.00 5 +335 2025-09-30 17:03:47.765122+00 2025-09-30 17:03:47.765131+00 t t 39000.00 30000.00 2025-09-30 \N \N 168 39000.00 21 +337 2025-09-30 17:03:58.544654+00 2025-09-30 17:03:58.544665+00 t t 60000.00 50000.00 2025-09-30 \N \N 169 60000.00 21 +384 2025-09-30 19:25:26.464157+00 2025-09-30 19:25:26.464163+00 t t 60000.00 50000.00 2025-09-30 \N \N 169 60000.00 79 +340 2025-09-30 17:04:53.387305+00 2025-09-30 17:04:53.387314+00 t t 29000.00 23500.00 2025-10-26 \N 118 139 5500.00 21 +333 2025-09-30 17:03:41.601489+00 2025-09-30 17:03:41.6015+00 t t 57000.00 45000.00 2025-10-01 \N 118 98 57000.00 21 +379 2025-09-30 17:09:10.591111+00 2025-09-30 17:09:10.591125+00 t t 66000.00 55000.00 2025-10-01 \N 118 105 11000.00 21 +341 2025-09-30 17:04:56.786485+00 2025-10-30 09:44:10.428286+00 f f 31000.00 25000.00 2025-09-30 \N \N 138 6000.00 21 +342 2025-09-30 17:05:00.398185+00 2025-10-30 09:44:15.060972+00 f f 33000.00 26500.00 2025-09-30 \N \N 140 6500.00 21 +343 2025-09-30 17:05:03.212121+00 2025-10-30 09:44:18.025775+00 f f 34500.00 27500.00 2025-09-30 \N \N 134 7000.00 21 +344 2025-09-30 17:05:06.163328+00 2025-10-30 09:44:19.858913+00 f f 41000.00 33000.00 2025-09-30 \N \N 135 8000.00 21 +345 2025-09-30 17:05:09.771164+00 2025-10-30 09:44:22.931155+00 f f 46900.00 37500.00 2025-09-30 \N \N 136 9400.00 21 +346 2025-09-30 17:05:11.356531+00 2025-10-30 09:44:25.785701+00 f f 33000.00 26500.00 2025-09-30 \N \N 133 6500.00 21 +368 2025-09-30 17:06:54.367551+00 2025-10-30 09:45:23.384524+00 f t 110000.00 110000.00 2025-09-30 \N \N 142 16500.00 21 +369 2025-09-30 17:07:30.22835+00 2025-10-30 09:45:35.157132+00 f t 130000.00 130000.00 2025-09-30 \N \N 143 19500.00 21 +370 2025-09-30 17:07:49.330856+00 2025-10-30 09:45:56.596648+00 f t 150000.00 150000.00 2025-09-30 \N \N 144 22500.00 21 +371 2025-09-30 17:07:59.35524+00 2025-10-30 09:46:05.297904+00 f t 90000.00 90000.00 2025-09-30 \N \N 141 13500.00 21 +381 2025-09-30 17:09:26.943012+00 2025-10-30 09:46:34.049125+00 f f 13200.00 0.00 2025-09-30 \N \N 146 13200.00 21 +263 2025-09-30 11:31:37.392282+00 2025-09-30 11:31:37.392293+00 t t 76000.00 65000.00 2025-09-30 \N \N 97 11000.00 5 +277 2025-09-30 11:32:19.712659+00 2025-09-30 11:32:19.712671+00 f f 34500.00 27500.00 2025-09-30 \N \N 134 7000.00 5 +390 2025-10-04 10:42:13.479743+00 2025-10-04 10:42:13.47975+00 f t 107000.00 95000.00 2025-10-04 \N \N 103 12000.00 71 +391 2025-10-04 10:42:37.873042+00 2025-10-04 10:42:37.873052+00 f t 93750.00 75000.00 2025-10-04 \N \N 90 18750.00 71 +392 2025-10-04 10:42:56.6136+00 2025-10-04 10:42:56.613606+00 f t 61000.00 50000.00 2025-10-04 \N \N 100 11000.00 71 +394 2025-10-04 10:43:02.800086+00 2025-10-04 10:43:02.800093+00 f t 72500.00 60000.00 2025-10-04 \N \N 104 72500.00 71 +396 2025-10-04 10:43:24.237387+00 2025-10-04 10:43:24.237393+00 f t 60000.00 45000.00 2025-10-04 \N \N 101 60000.00 71 +397 2025-10-04 10:44:14.682494+00 2025-10-04 10:44:14.682501+00 f t 130000.00 115000.00 2025-10-04 \N \N 164 15000.00 71 +398 2025-10-04 10:44:21.261175+00 2025-10-04 10:44:21.261181+00 f t 68000.00 55000.00 2025-10-04 \N \N 106 13000.00 71 +399 2025-10-04 10:44:23.424987+00 2025-10-04 10:44:23.424995+00 f t 80000.00 70000.00 2025-10-04 \N \N 173 12000.00 71 +400 2025-10-04 10:44:27.129773+00 2025-10-04 10:44:27.129792+00 f t 78000.00 65000.00 2025-10-04 \N \N 167 13000.00 71 +436 2025-10-28 00:55:31.1017+00 2025-10-28 00:55:31.101713+00 f t 15000.00 15000.00 2025-10-27 \N \N 93 2250.00 92 +401 2025-10-04 10:44:51.97606+00 2025-10-04 10:44:51.976071+00 f t 75000.00 60000.00 2025-10-04 \N \N 108 15000.00 71 +402 2025-10-08 18:03:03.901111+00 2025-10-08 18:03:03.901122+00 f t 0.00 0.00 2025-10-08 \N 118 174 0.00 \N +403 2025-10-20 02:51:01.088925+00 2025-10-20 02:51:01.088938+00 f t 35000.00 35000.00 2025-10-19 \N \N 92 5250.00 79 +437 2025-10-28 00:55:44.103544+00 2025-10-28 00:56:01.262821+00 f t 140000.00 140000.00 2025-10-27 \N \N 145 21000.00 92 +438 2025-10-28 00:56:14.093317+00 2025-10-28 00:56:14.093325+00 f t 100000.00 100000.00 2025-10-27 \N \N 141 15000.00 92 +440 2025-10-28 00:56:51.585845+00 2025-10-28 00:56:51.585852+00 f t 120000.00 120000.00 2025-10-27 \N \N 143 18000.00 92 +404 2025-10-21 12:51:31.819077+00 2025-10-21 12:51:57.927704+00 f f 8000.00 5500.00 2025-10-21 \N \N 85 2500.00 1 +406 2025-10-21 16:37:46.309924+00 2025-10-21 16:37:46.309933+00 f t 130000.00 115000.00 2025-10-21 \N \N 164 15000.00 82 +439 2025-10-28 00:56:30.997448+00 2025-10-28 00:57:02.557317+00 f t 130000.00 130000.00 2025-10-27 \N \N 144 19500.00 92 +441 2025-10-28 00:57:20.555376+00 2025-10-28 00:57:20.555384+00 f t 110000.00 110000.00 2025-10-27 \N \N 142 16500.00 92 +442 2025-10-28 00:57:30.154365+00 2025-10-28 00:57:30.154373+00 f t 15000.00 15000.00 2025-10-27 \N \N 95 2250.00 92 +411 2025-10-26 11:59:52.638156+00 2025-10-26 11:59:54.151723+00 t t 45000.00 35000.00 2025-10-26 \N \N 98 45000.00 75 +405 2025-10-21 16:37:37.069197+00 2025-10-21 17:02:23.57719+00 f t 107000.00 95000.00 2025-10-21 \N \N 103 12000.00 82 +407 2025-10-22 22:19:38.403471+00 2025-10-22 22:19:56.682715+00 f t 50000.00 50000.00 2025-10-22 \N \N 82 7500.00 1 +408 2025-10-22 22:20:33.46908+00 2025-10-22 22:20:37.534267+00 f t 50000.00 50000.00 2025-10-22 \N \N 82 7500.00 68 +409 2025-10-24 12:52:57.47095+00 2025-10-24 12:52:57.470958+00 f t 23000.00 17500.00 2025-10-24 \N \N 172 5500.00 85 +410 2025-10-25 12:38:39.59529+00 2025-10-25 12:48:04.830006+00 f f 46000.00 35000.00 2025-10-25 \N \N 82 11000.00 2 +395 2025-10-04 10:43:20.459292+00 2025-10-04 10:43:20.459299+00 t t 60000.00 50000.00 2025-10-14 \N 118 169 10000.00 71 +413 2025-10-27 13:56:39.850516+00 2025-10-27 13:56:39.850524+00 f t 29000.00 23500.00 2025-10-27 \N 118 139 5500.00 \N +414 2025-10-27 13:57:16.733327+00 2025-10-27 13:57:16.733333+00 f t 29000.00 23500.00 2025-10-27 \N 118 138 5500.00 \N +415 2025-10-27 13:57:43.451089+00 2025-10-27 13:57:43.451096+00 f t 29000.00 23500.00 2025-10-27 \N 118 140 5500.00 \N +416 2025-10-27 13:58:20.37188+00 2025-10-27 13:58:20.371889+00 f t 33500.00 27000.00 2025-10-27 \N 118 134 6500.00 \N +417 2025-10-27 13:58:48.051325+00 2025-10-27 13:58:48.051336+00 f t 40500.00 32500.00 2025-10-27 \N 118 135 8000.00 \N +418 2025-10-27 13:59:15.106721+00 2025-10-27 13:59:15.10673+00 f t 40500.00 32500.00 2025-10-27 \N 118 136 8000.00 \N +419 2025-10-27 14:03:03.262853+00 2025-10-27 14:03:03.262861+00 f t 32500.00 26000.00 2025-10-27 \N 118 133 6500.00 \N +420 2025-10-27 14:05:00.421168+00 2025-10-27 14:05:00.421178+00 f t 48000.00 38500.00 2025-10-27 \N 118 137 9500.00 \N +421 2025-10-27 14:07:14.909771+00 2025-10-27 14:07:14.909779+00 f t 33000.00 26500.00 2025-10-27 \N 118 122 6500.00 \N +422 2025-10-27 14:07:29.714323+00 2025-10-27 14:07:29.71433+00 f t 33000.00 26500.00 2025-10-27 \N 118 123 6500.00 \N +423 2025-10-27 14:07:45.156419+00 2025-10-27 14:07:45.156427+00 f t 33000.00 26500.00 2025-10-27 \N 118 124 6500.00 \N +424 2025-10-27 14:13:45.642168+00 2025-10-27 14:13:45.642178+00 f t 33000.00 26500.00 2025-10-27 \N 118 117 6500.00 \N +425 2025-10-27 14:28:16.471982+00 2025-10-27 14:28:16.471989+00 f t 34500.00 27500.00 2025-10-27 \N 118 118 7000.00 \N +426 2025-10-27 14:28:37.092631+00 2025-10-27 14:28:37.092638+00 f t 41000.00 27500.00 2025-10-27 \N 118 119 8000.00 \N +427 2025-10-27 14:28:59.636566+00 2025-10-27 14:28:59.636576+00 f t 46900.00 37500.00 2025-10-27 \N 118 120 9400.00 \N +428 2025-10-27 14:29:20.803983+00 2025-10-27 14:29:20.803989+00 f t 46900.00 37500.00 2025-10-27 \N 118 121 9400.00 \N +429 2025-10-27 18:07:20.329606+00 2025-10-27 18:07:20.329614+00 f t 50000.00 40000.00 2025-10-27 \N 118 175 10000.00 \N +430 2025-10-27 19:19:25.971035+00 2025-10-27 19:19:25.971093+00 f t 75000.00 60000.00 2025-10-27 \N 118 176 15000.00 \N +431 2025-10-28 00:52:31.099012+00 2025-10-28 00:52:31.09902+00 f t 30000.00 30000.00 2025-10-27 \N \N 163 4500.00 92 +432 2025-10-28 00:53:01.16004+00 2025-10-28 00:53:01.160051+00 f t 30000.00 30000.00 2025-10-27 \N \N 87 4500.00 92 +433 2025-10-28 00:53:16.936902+00 2025-10-28 00:53:16.936913+00 f t 30000.00 30000.00 2025-10-27 \N \N 86 4500.00 92 +434 2025-10-28 00:53:58.598405+00 2025-10-28 00:53:58.598412+00 f t 30000.00 30000.00 2025-10-27 \N \N 85 4500.00 92 +435 2025-10-28 00:55:17.498656+00 2025-10-28 00:55:17.498664+00 f t 30000.00 30000.00 2025-10-27 \N \N 96 4500.00 92 +444 2025-10-28 01:29:44.587872+00 2025-10-28 01:36:47.774799+00 f t 60000.00 60000.00 2025-10-27 \N \N 87 9000.00 80 +445 2025-10-28 01:30:14.870364+00 2025-10-28 01:36:56.101415+00 f t 50000.00 50000.00 2025-10-27 \N \N 86 7500.00 80 +447 2025-10-28 01:30:54.518837+00 2025-10-28 01:37:08.299104+00 f t 30000.00 30000.00 2025-10-27 \N \N 83 4500.00 80 +448 2025-10-28 01:31:11.967823+00 2025-10-28 01:37:16.163623+00 f t 80000.00 80000.00 2025-10-27 \N \N 96 12000.00 80 +449 2025-10-28 01:31:30.180044+00 2025-10-28 01:37:21.753783+00 f t 110000.00 110000.00 2025-10-27 \N \N 145 16500.00 80 +450 2025-10-28 01:31:45.396788+00 2025-10-28 01:31:45.396798+00 f t 90000.00 90000.00 2025-10-27 \N \N 141 13500.00 80 +451 2025-10-28 01:32:08.677692+00 2025-10-28 01:32:08.677699+00 f t 100000.00 100000.00 2025-10-27 \N \N 144 15000.00 80 +452 2025-10-28 01:32:23.202883+00 2025-10-28 01:32:23.20289+00 f t 95000.00 95000.00 2025-10-27 \N \N 143 14250.00 80 +453 2025-10-28 01:32:34.740348+00 2025-10-28 01:32:34.740356+00 f t 95000.00 95000.00 2025-10-27 \N \N 142 14250.00 80 +454 2025-10-28 01:32:44.225731+00 2025-10-28 01:33:26.980545+00 f t 50000.00 50000.00 2025-10-27 \N \N 95 7500.00 80 +455 2025-10-28 01:33:38.409807+00 2025-10-28 01:33:38.409815+00 f t 41000.00 33000.00 2025-10-27 \N \N 129 8000.00 80 +457 2025-10-28 01:34:47.759914+00 2025-10-28 01:34:47.759922+00 f t 41000.00 33000.00 2025-10-27 \N \N 128 8000.00 80 +456 2025-10-28 01:34:32.919578+00 2025-10-28 01:34:32.919585+00 f t 24000.00 19000.00 2025-10-27 \N \N 125 5000.00 80 +458 2025-10-28 01:34:52.066007+00 2025-10-28 01:34:52.066019+00 f t 31500.00 25500.00 2025-10-27 \N \N 127 6000.00 80 +459 2025-10-28 01:34:55.379107+00 2025-10-28 01:34:55.379114+00 f t 31500.00 25500.00 2025-10-27 \N \N 126 6000.00 80 +460 2025-10-28 01:34:58.39098+00 2025-10-28 01:34:58.390987+00 f t 24000.00 19000.00 2025-10-27 \N \N 132 5000.00 80 +461 2025-10-28 01:35:01.670146+00 2025-10-28 01:35:01.670163+00 f t 24000.00 19000.00 2025-10-27 \N \N 130 5000.00 80 +462 2025-10-28 01:35:05.1822+00 2025-10-28 01:35:05.182214+00 f t 24000.00 19000.00 2025-10-27 \N \N 131 5000.00 80 +463 2025-10-28 01:35:09.658462+00 2025-10-28 01:35:09.658469+00 f t 46900.00 37500.00 2025-10-27 \N \N 121 9400.00 80 +464 2025-10-28 01:35:12.851891+00 2025-10-28 01:35:12.851903+00 f t 33000.00 26500.00 2025-10-27 \N \N 117 6500.00 80 +446 2025-10-28 01:30:31.563548+00 2025-10-28 01:37:02.10981+00 f t 50000.00 50000.00 2025-10-27 \N \N 85 7500.00 80 +412 2025-10-26 11:59:56.23526+00 2025-10-26 11:59:56.23527+00 t t 70000.00 60000.00 2025-10-26 \N \N 97 10000.00 75 +332 2025-09-30 17:03:39.601551+00 2025-09-30 17:03:39.60156+00 t t 82000.00 70000.00 2025-10-29 \N 118 97 12000.00 21 +393 2025-10-04 10:43:00.322136+00 2025-10-04 10:43:00.322141+00 t t 45000.00 35000.00 2025-10-13 \N 118 168 45000.00 71 +465 2025-10-28 01:35:15.537332+00 2025-10-28 01:35:15.53734+00 f t 46900.00 37500.00 2025-10-27 \N \N 120 9400.00 80 +466 2025-10-28 01:35:18.125776+00 2025-10-28 01:35:18.125786+00 f t 41000.00 27500.00 2025-10-27 \N \N 119 8000.00 80 +467 2025-10-28 01:35:20.155169+00 2025-10-28 01:35:20.155176+00 f t 34500.00 27500.00 2025-10-27 \N \N 118 7000.00 80 +468 2025-10-28 01:35:22.573045+00 2025-10-28 01:35:22.573052+00 f t 33000.00 26500.00 2025-10-27 \N \N 124 6500.00 80 +469 2025-10-28 01:35:25.401263+00 2025-10-28 01:35:25.401273+00 f t 33000.00 26500.00 2025-10-27 \N \N 122 6500.00 80 +470 2025-10-28 01:35:27.797719+00 2025-10-28 01:35:27.797726+00 f t 33000.00 26500.00 2025-10-27 \N \N 123 6500.00 80 +471 2025-10-28 01:35:30.012408+00 2025-10-28 01:35:30.012416+00 f t 48000.00 38500.00 2025-10-27 \N \N 137 9500.00 80 +472 2025-10-28 01:35:32.197375+00 2025-10-28 01:35:32.197386+00 f t 32500.00 26000.00 2025-10-27 \N \N 133 6500.00 80 +473 2025-10-28 01:35:35.352717+00 2025-10-28 01:35:35.352725+00 f t 40500.00 32500.00 2025-10-27 \N \N 136 8000.00 80 +474 2025-10-28 01:35:37.100608+00 2025-10-28 01:35:37.100619+00 f t 40500.00 32500.00 2025-10-27 \N \N 135 8000.00 80 +475 2025-10-28 01:35:39.362987+00 2025-10-28 01:35:39.362999+00 f t 33500.00 27000.00 2025-10-27 \N \N 134 6500.00 80 +476 2025-10-28 01:35:41.211822+00 2025-10-28 01:35:41.211829+00 f t 29000.00 23500.00 2025-10-27 \N \N 140 5500.00 80 +477 2025-10-28 01:35:43.137331+00 2025-10-28 01:35:43.137338+00 f t 29000.00 23500.00 2025-10-27 \N \N 138 5500.00 80 +478 2025-10-28 01:35:45.769641+00 2025-10-28 01:35:45.769647+00 f t 29000.00 23500.00 2025-10-27 \N \N 139 5500.00 80 +479 2025-10-28 01:35:49.819543+00 2025-10-28 01:35:49.819551+00 f t 7700.00 5500.00 2025-10-27 \N \N 91 2200.00 80 +480 2025-10-28 01:35:54.345158+00 2025-10-28 01:35:57.623126+00 f f 11000.00 0.00 2025-10-27 \N \N 116 11000.00 80 +481 2025-10-28 01:36:00.615336+00 2025-10-28 01:36:00.615344+00 f t 46000.00 35000.00 2025-10-27 \N \N 82 11000.00 80 +482 2025-10-28 01:36:06.660678+00 2025-10-28 01:36:06.660686+00 f t 55000.00 44000.00 2025-10-27 \N \N 84 11000.00 80 +483 2025-10-28 01:36:13.990653+00 2025-10-28 01:36:16.811264+00 f f 93750.00 75000.00 2025-10-27 \N \N 90 18750.00 80 +484 2025-10-28 01:36:19.055014+00 2025-10-28 01:36:19.055022+00 f t 15400.00 11000.00 2025-10-27 \N \N 92 4400.00 80 +443 2025-10-28 01:29:14.476782+00 2025-10-28 01:36:43.139564+00 f t 50000.00 50000.00 2025-10-27 \N \N 163 7500.00 80 +519 2025-11-04 18:18:44.019487+00 2025-11-04 18:18:57.283447+00 f t 30000.00 30000.00 2025-11-04 \N \N 87 4500.00 97 +520 2025-11-04 18:19:20.592285+00 2025-11-04 18:19:20.592295+00 f t 30000.00 30000.00 2025-11-04 \N \N 163 4500.00 97 +529 2025-11-04 23:49:07.786518+00 2025-11-04 23:49:07.786527+00 f t 29000.00 23500.00 2025-11-04 \N \N 139 5500.00 92 +486 2025-10-28 16:21:02.118627+00 2025-10-28 16:21:26.703925+00 f t 70000.00 70000.00 2025-10-28 \N \N 106 10500.00 90 +487 2025-10-28 16:21:08.63255+00 2025-10-28 16:35:30.430996+00 f t 90000.00 90000.00 2025-10-28 \N \N 167 13500.00 90 +488 2025-10-28 19:52:50.825667+00 2025-10-28 19:52:50.825676+00 f t 88000.00 75000.00 2025-10-28 \N 118 167 13000.00 \N +489 2025-10-28 19:53:56.609803+00 2025-10-28 19:53:56.609811+00 f t 78000.00 65000.00 2025-10-28 \N 118 106 13000.00 \N +490 2025-10-29 15:33:16.329196+00 2025-10-29 15:33:16.329209+00 f t 82000.00 70000.00 2025-10-29 \N 118 97 12000.00 \N +491 2025-10-29 15:34:37.017294+00 2025-10-29 15:34:37.017303+00 f t 57000.00 45000.00 2025-10-29 \N 118 98 57000.00 \N +492 2025-10-29 15:36:40.487215+00 2025-10-29 15:36:40.487223+00 f t 60000.00 10000.00 2025-10-29 \N 118 169 50000.00 \N +493 2025-10-29 15:37:43.075478+00 2025-10-29 15:37:43.075487+00 f t 45000.00 35000.00 2025-10-29 \N 118 168 45000.00 \N +494 2025-10-29 15:39:22.438634+00 2025-10-29 15:39:22.438642+00 f t 66000.00 55000.00 2025-10-29 \N 118 105 11000.00 \N +495 2025-10-30 00:16:18.175159+00 2025-10-30 00:16:18.175168+00 f t 107000.00 95000.00 2025-10-29 \N \N 103 12000.00 120 +496 2025-10-30 00:16:32.466068+00 2025-10-30 00:16:32.466075+00 f t 130000.00 115000.00 2025-10-29 \N \N 164 15000.00 120 +497 2025-10-30 09:42:38.759936+00 2025-10-30 09:42:53.067388+00 f t 25000.00 25000.00 2025-10-30 \N \N 109 3750.00 21 +498 2025-10-30 09:43:02.73109+00 2025-10-30 09:43:07.471091+00 f t 15400.00 15400.00 2025-10-30 \N \N 92 2310.00 21 +499 2025-10-30 09:43:10.899085+00 2025-10-30 09:43:10.899094+00 f t 93750.00 75000.00 2025-10-30 \N \N 90 18750.00 21 +500 2025-10-30 09:44:01.068806+00 2025-10-30 09:44:01.068812+00 f t 7700.00 5500.00 2025-10-30 \N \N 91 2200.00 21 +501 2025-10-30 09:46:18.695921+00 2025-10-30 09:46:18.695928+00 f t 40000.00 40000.00 2025-10-30 \N \N 96 6000.00 21 +502 2025-10-30 09:47:02.125382+00 2025-10-30 09:47:02.125395+00 f t 25000.00 25000.00 2025-10-30 \N \N 86 3750.00 21 +503 2025-10-30 09:47:15.75791+00 2025-10-30 09:47:15.757918+00 f t 25000.00 25000.00 2025-10-30 \N \N 163 3750.00 21 +504 2025-11-03 14:29:27.790737+00 2025-11-03 14:29:27.790745+00 f t 7700.00 5500.00 2025-11-03 \N \N 91 2200.00 94 +505 2025-11-03 14:29:43.927312+00 2025-11-03 14:29:43.92732+00 f t 93750.00 75000.00 2025-11-03 \N \N 90 18750.00 94 +506 2025-11-04 18:15:33.506616+00 2025-11-04 18:15:33.506624+00 f t 32500.00 0.00 2025-11-04 \N \N 112 32500.00 97 +507 2025-11-04 18:16:03.818121+00 2025-11-04 18:16:03.81813+00 f t 20500.00 0.00 2025-11-04 \N \N 109 20500.00 97 +508 2025-11-04 18:16:12.340073+00 2025-11-04 18:16:12.340081+00 f t 34000.00 0.00 2025-11-04 \N \N 110 34000.00 97 +509 2025-11-04 18:16:19.502216+00 2025-11-04 18:16:19.502224+00 f t 31500.00 0.00 2025-11-04 \N \N 111 31500.00 97 +510 2025-11-04 18:16:25.73204+00 2025-11-04 18:16:25.732048+00 f t 93750.00 75000.00 2025-11-04 \N \N 90 18750.00 97 +511 2025-11-04 18:16:36.297152+00 2025-11-04 18:16:36.29716+00 f t 46000.00 35000.00 2025-11-04 \N \N 82 11000.00 97 +512 2025-11-04 18:16:44.73568+00 2025-11-04 18:16:44.735691+00 f t 11000.00 0.00 2025-11-04 \N \N 116 11000.00 97 +513 2025-11-04 18:17:17.620301+00 2025-11-04 18:17:20.904449+00 f f 7700.00 5500.00 2025-11-04 \N \N 95 2200.00 97 +514 2025-11-04 18:17:28.727628+00 2025-11-04 18:17:28.727637+00 f t 7700.00 5500.00 2025-11-04 \N \N 93 2200.00 97 +515 2025-11-04 18:17:48.74633+00 2025-11-04 18:17:56.128462+00 f f 52500.00 0.00 2025-11-04 \N \N 114 52500.00 97 +516 2025-11-04 18:18:02.427827+00 2025-11-04 18:18:07.024499+00 f f 30000.00 19500.00 2025-11-04 \N \N 83 30000.00 97 +517 2025-11-04 18:18:11.295314+00 2025-11-04 18:18:11.295322+00 f t 8000.00 5500.00 2025-11-04 \N \N 85 2500.00 97 +518 2025-11-04 18:18:24.903901+00 2025-11-04 18:18:37.294835+00 f t 30000.00 30000.00 2025-11-04 \N \N 86 4500.00 97 +521 2025-11-04 23:47:56.730611+00 2025-11-04 23:48:01.483931+00 f t 15400.00 11000.00 2025-11-04 \N \N 92 4400.00 92 +522 2025-11-04 23:48:08.104269+00 2025-11-04 23:48:08.104278+00 f t 93750.00 75000.00 2025-11-04 \N \N 90 18750.00 92 +523 2025-11-04 23:48:21.304677+00 2025-11-04 23:48:21.304685+00 f t 55000.00 44000.00 2025-11-04 \N \N 84 11000.00 92 +524 2025-11-04 23:48:26.922909+00 2025-11-04 23:48:26.922916+00 f t 46000.00 35000.00 2025-11-04 \N \N 82 11000.00 92 +525 2025-11-04 23:48:33.251566+00 2025-11-04 23:48:33.251577+00 f t 34000.00 0.00 2025-11-04 \N \N 110 34000.00 92 +526 2025-11-04 23:48:38.186441+00 2025-11-04 23:48:38.18645+00 f t 31500.00 0.00 2025-11-04 \N \N 111 31500.00 92 +527 2025-11-04 23:48:44.659077+00 2025-11-04 23:48:44.659084+00 f t 20500.00 0.00 2025-11-04 \N \N 109 20500.00 92 +528 2025-11-04 23:48:57.882078+00 2025-11-04 23:48:57.882086+00 f t 11000.00 0.00 2025-11-04 \N \N 116 11000.00 92 +530 2025-11-04 23:49:18.226131+00 2025-11-04 23:49:18.226138+00 f t 29000.00 23500.00 2025-11-04 \N \N 138 5500.00 92 +485 2025-10-28 09:37:52.567961+00 2025-11-04 23:49:03.945061+00 f t 15000.00 15000.00 2025-10-28 \N \N 91 2250.00 92 +531 2025-11-04 23:49:30.931829+00 2025-11-04 23:49:30.931837+00 f t 29000.00 23500.00 2025-11-04 \N \N 140 5500.00 92 +532 2025-11-04 23:49:35.372798+00 2025-11-04 23:49:35.372805+00 f t 33500.00 27000.00 2025-11-04 \N \N 134 6500.00 92 +533 2025-11-04 23:49:40.143859+00 2025-11-04 23:49:40.143866+00 f t 40500.00 32500.00 2025-11-04 \N \N 135 8000.00 92 +534 2025-11-04 23:49:45.391913+00 2025-11-04 23:49:45.39192+00 f t 40500.00 32500.00 2025-11-04 \N \N 136 8000.00 92 +535 2025-11-04 23:49:51.739267+00 2025-11-04 23:49:51.739274+00 f t 32500.00 26000.00 2025-11-04 \N \N 133 6500.00 92 +536 2025-11-04 23:49:56.86149+00 2025-11-04 23:49:56.861497+00 f t 48000.00 38500.00 2025-11-04 \N \N 137 9500.00 92 +537 2025-11-04 23:50:00.460619+00 2025-11-04 23:50:00.460627+00 f t 33000.00 26500.00 2025-11-04 \N \N 123 6500.00 92 +538 2025-11-04 23:50:09.778086+00 2025-11-04 23:50:09.7781+00 f t 33000.00 26500.00 2025-11-04 \N \N 122 6500.00 92 +539 2025-11-04 23:50:19.901759+00 2025-11-04 23:50:19.901768+00 f t 33000.00 26500.00 2025-11-04 \N \N 124 6500.00 92 +540 2025-11-04 23:50:28.083122+00 2025-11-04 23:50:28.083129+00 f t 34500.00 27500.00 2025-11-04 \N \N 118 7000.00 92 +541 2025-11-04 23:50:32.700322+00 2025-11-04 23:50:32.70033+00 f t 41000.00 27500.00 2025-11-04 \N \N 119 8000.00 92 +542 2025-11-04 23:50:46.630105+00 2025-11-04 23:50:46.630112+00 f t 46900.00 37500.00 2025-11-04 \N \N 120 9400.00 92 +543 2025-11-04 23:50:53.948723+00 2025-11-04 23:50:53.948732+00 f t 33000.00 26500.00 2025-11-04 \N \N 117 6500.00 92 +544 2025-11-04 23:50:57.578504+00 2025-11-04 23:50:57.578511+00 f t 46900.00 37500.00 2025-11-04 \N \N 121 9400.00 92 +545 2025-11-04 23:51:01.546216+00 2025-11-04 23:51:01.546226+00 f t 24000.00 19000.00 2025-11-04 \N \N 131 5000.00 92 +546 2025-11-04 23:51:04.743349+00 2025-11-04 23:51:04.743356+00 f t 24000.00 19000.00 2025-11-04 \N \N 130 5000.00 92 +547 2025-11-04 23:51:11.166238+00 2025-11-04 23:51:11.166246+00 f t 24000.00 19000.00 2025-11-04 \N \N 132 5000.00 92 +548 2025-11-04 23:51:14.678755+00 2025-11-04 23:51:14.678763+00 f t 31500.00 25500.00 2025-11-04 \N \N 126 6000.00 92 +549 2025-11-04 23:51:18.788715+00 2025-11-04 23:51:19.018879+00 f t 31500.00 25500.00 2025-11-04 \N \N 127 6000.00 92 +550 2025-11-04 23:51:21.753808+00 2025-11-04 23:51:22.038303+00 f t 41000.00 33000.00 2025-11-04 \N \N 128 8000.00 92 +551 2025-11-04 23:51:24.882043+00 2025-11-04 23:51:24.882052+00 f t 24000.00 19000.00 2025-11-04 \N \N 125 5000.00 92 +552 2025-11-04 23:51:27.855238+00 2025-11-04 23:51:27.855246+00 f t 41000.00 33000.00 2025-11-04 \N \N 129 8000.00 92 +553 2025-11-04 23:52:15.041736+00 2025-11-04 23:52:15.041746+00 f t 7700.00 5500.00 2025-11-04 \N \N 94 2200.00 92 +554 2025-11-04 23:52:31.588321+00 2025-11-04 23:52:31.588328+00 f t 52500.00 0.00 2025-11-04 \N \N 114 52500.00 92 +555 2025-11-04 23:52:38.124793+00 2025-11-04 23:52:38.124803+00 f t 52500.00 0.00 2025-11-04 \N \N 115 52500.00 92 +556 2025-11-04 23:52:54.530255+00 2025-11-04 23:52:54.530264+00 f t 52500.00 0.00 2025-11-04 \N \N 113 52500.00 92 +557 2025-11-04 23:53:11.665346+00 2025-11-04 23:53:11.665353+00 f t 87000.00 0.00 2025-11-04 \N \N 165 87000.00 92 +558 2025-11-04 23:53:33.442198+00 2025-11-04 23:53:33.825465+00 f t 30000.00 19500.00 2025-11-04 \N \N 83 30000.00 92 +559 2025-11-04 23:53:43.033713+00 2025-11-04 23:53:45.753728+00 f f 13200.00 0.00 2025-11-04 \N \N 146 13200.00 92 +560 2025-11-04 23:53:52.669248+00 2025-11-04 23:53:52.669256+00 f t 24000.00 16000.00 2025-11-04 \N \N 88 8000.00 92 +323 2025-09-30 11:35:00.838732+00 2025-11-06 14:06:51.471875+00 f t 80000.00 80000.00 2025-09-30 \N \N 106 12000.00 5 +561 2025-11-06 18:13:05.090697+00 2025-11-06 18:13:05.090704+00 f t 85000.00 70000.00 2025-11-06 \N 118 108 15000.00 \N +590 2025-11-16 22:21:23.196309+00 2025-11-16 22:21:23.196315+00 f t 30000.00 19500.00 2025-11-16 \N \N 83 30000.00 101 +591 2025-11-16 22:21:45.338389+00 2025-11-16 22:21:45.338396+00 f t 8000.00 5500.00 2025-11-16 \N \N 85 2500.00 101 +562 2025-11-10 17:14:44.631515+00 2025-11-10 17:14:44.631521+00 f t 12000.00 6500.00 2025-11-10 \N 113 177 12000.00 \N +592 2025-11-16 22:22:02.007927+00 2025-11-16 22:22:02.007935+00 f t 24000.00 16000.00 2025-11-16 \N \N 88 8000.00 101 +593 2025-11-16 22:22:11.918203+00 2025-11-16 22:22:11.918213+00 f t 24000.00 16000.00 2025-11-16 \N \N 86 8000.00 101 +564 2025-11-11 00:30:03.92465+00 2025-11-11 00:30:09.014127+00 f f 12000.00 6500.00 2025-11-10 \N \N 177 12000.00 116 +565 2025-11-11 00:30:12.068478+00 2025-11-11 00:30:14.521082+00 f f 23000.00 17500.00 2025-11-10 \N \N 172 5500.00 116 +566 2025-11-15 21:47:01.092336+00 2025-11-16 22:13:07.087113+00 f t 15000.00 15000.00 2025-11-15 \N \N 95 2250.00 101 +570 2025-11-16 22:14:05.781003+00 2025-11-16 22:14:05.781013+00 f t 24000.00 19000.00 2025-11-16 \N \N 125 5000.00 101 +571 2025-11-16 22:14:14.361193+00 2025-11-16 22:14:14.361203+00 f t 31500.00 25500.00 2025-11-16 \N \N 126 6000.00 101 +572 2025-11-16 22:14:30.386767+00 2025-11-16 22:14:30.386779+00 f t 24000.00 19000.00 2025-11-16 \N \N 132 5000.00 101 +573 2025-11-16 22:14:36.684557+00 2025-11-16 22:14:36.684568+00 f t 24000.00 19000.00 2025-11-16 \N \N 130 5000.00 101 +574 2025-11-16 22:14:41.486942+00 2025-11-16 22:14:41.486948+00 f t 24000.00 19000.00 2025-11-16 \N \N 131 5000.00 101 +575 2025-11-16 22:14:49.239405+00 2025-11-16 22:14:49.239412+00 f t 33000.00 26500.00 2025-11-16 \N \N 117 6500.00 101 +576 2025-11-16 22:15:06.717507+00 2025-11-16 22:15:06.717522+00 f t 33000.00 26500.00 2025-11-16 \N \N 124 6500.00 101 +577 2025-11-16 22:15:10.734456+00 2025-11-16 22:15:10.734465+00 f t 33000.00 26500.00 2025-11-16 \N \N 122 6500.00 101 +578 2025-11-16 22:15:14.670419+00 2025-11-16 22:15:14.670432+00 f t 33000.00 26500.00 2025-11-16 \N \N 123 6500.00 101 +579 2025-11-16 22:15:26.552119+00 2025-11-16 22:15:26.552126+00 f t 32500.00 26000.00 2025-11-16 \N \N 133 6500.00 101 +580 2025-11-16 22:15:38.23753+00 2025-11-16 22:15:38.237541+00 f t 29000.00 23500.00 2025-11-16 \N \N 140 5500.00 101 +581 2025-11-16 22:15:41.843877+00 2025-11-16 22:15:41.843887+00 f t 29000.00 23500.00 2025-11-16 \N \N 138 5500.00 101 +582 2025-11-16 22:15:45.832879+00 2025-11-16 22:15:45.832886+00 f t 29000.00 23500.00 2025-11-16 \N \N 139 5500.00 101 +583 2025-11-16 22:15:50.707282+00 2025-11-16 22:15:50.707292+00 f t 7700.00 5500.00 2025-11-16 \N \N 91 2200.00 101 +584 2025-11-16 22:16:03.182748+00 2025-11-16 22:16:03.182759+00 f t 46000.00 35000.00 2025-11-16 \N \N 82 11000.00 101 +585 2025-11-16 22:16:14.626932+00 2025-11-16 22:16:31.409456+00 f t 20000.00 20000.00 2025-11-16 \N \N 92 3000.00 101 +594 2025-11-16 22:22:17.931213+00 2025-11-16 22:22:17.931223+00 f t 24000.00 16000.00 2025-11-16 \N \N 87 8000.00 101 +586 2025-11-16 22:16:57.51599+00 2025-11-16 22:17:06.064652+00 f t 55000.00 44000.00 2025-11-16 \N \N 84 11000.00 101 +587 2025-11-16 22:18:35.923369+00 2025-11-16 22:18:39.305231+00 f f 75000.00 60000.00 2025-11-16 \N \N 142 15000.00 101 +588 2025-11-16 22:18:48.827343+00 2025-11-16 22:18:48.82735+00 f t 69000.00 55000.00 2025-11-16 \N \N 141 14000.00 101 +567 2025-11-15 21:47:25.731963+00 2025-11-16 22:19:03.764745+00 f t 10000.00 10000.00 2025-11-15 \N \N 93 1500.00 101 +569 2025-11-16 22:12:12.216278+00 2025-11-16 22:19:14.989101+00 f t 20000.00 20000.00 2025-11-16 \N \N 96 3000.00 101 +568 2025-11-15 21:47:34.885946+00 2025-11-16 22:20:56.170141+00 f t 10000.00 10000.00 2025-11-15 \N \N 94 1500.00 101 +589 2025-11-16 22:21:12.291376+00 2025-11-16 22:21:15.719917+00 f f 52500.00 0.00 2025-11-16 \N \N 115 52500.00 101 +595 2025-11-16 22:22:21.607732+00 2025-11-16 22:22:21.60774+00 f t 24000.00 16000.00 2025-11-16 \N \N 163 8000.00 101 +563 2025-11-10 20:17:02.243012+00 2025-11-10 20:17:02.243026+00 f t 120000.00 110000.00 2025-11-18 \N 118 103 10000.00 \N +\. + + +-- +-- Data for Name: productos_service; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.productos_service (id, created_at, updated_at, deleted, active, name, description, payment_sign_required, speciality_id, user_id, duration, category_id, pet_age, pet_gender, pet_type, pet_weight_max, pet_weight_min, modality) FROM stdin; +90 2025-04-15 20:44:28.746565+00 2025-04-15 20:44:28.746576+00 f t Colocación microchip Colocación de microchip de identificación t 70 \N 10 4 ALL ALL ALL 0.00 0.00 onsite +91 2025-04-15 20:44:28.755686+00 2025-04-15 20:44:28.755693+00 f t Corte de garras Recorte de uñas t 70 \N 10 3 ALL ALL ALL 0.00 0.00 onsite +92 2025-04-15 20:44:28.762396+00 2025-04-15 20:44:28.762402+00 f t Certifcados de salud Emisión de certificado de salud para viajes t 70 \N 10 3 ALL ALL ALL 0.00 0.00 onsite +93 2025-04-15 20:44:28.77006+00 2025-04-15 20:44:28.770067+00 f t Extraccion de sangre Extracción de sangre para realizar análisis t 70 \N 10 3 ALL ALL ALL 0.00 0.00 onsite +94 2025-04-15 20:44:28.777594+00 2025-04-15 20:44:28.777599+00 f t Medicion de glucemia Medición de glucemia t 70 \N 10 3 ALL ALL ALL 0.00 0.00 onsite +95 2025-04-15 20:44:28.78475+00 2025-04-15 20:44:28.784757+00 f t Drenaje de sacos Drenaje de sacos t 70 \N 10 3 ALL ALL ALL 0.00 0.00 onsite +96 2025-04-15 20:44:28.791827+00 2025-04-15 20:44:28.791833+00 f t Fluidoterapia Administración de fluidos por vía intravenosa o subcutánea t 70 \N 60 3 ALL ALL ALL 0.00 0.00 onsite +107 2025-04-15 20:44:28.873997+00 2025-04-15 20:44:28.874004+00 t t Ecografía (vet. Mallo) Estudio por ultrasonido para evaluar órganos internos t 41 \N 60 12 ALL ALL ALL 0.00 0.00 onsite +104 2025-04-15 20:44:28.849499+00 2025-04-15 20:44:28.849505+00 f t Consulta etológica Virtual Evaluación y tratamiento de problemas de comportamiento t 34 \N 60 10 ALL ALL ALL 0.00 0.00 onsite +110 2025-04-15 20:44:28.897128+00 2025-04-15 20:44:28.897137+00 f t Análisis de sangre completo con Orina Análisis de sangre y orina completo t 70 \N 1 13 ALL ALL ALL 0.00 0.00 onsite +116 2025-04-15 20:44:28.944788+00 2025-04-15 20:44:28.944795+00 f t Copro - Parasitológico Análisis para detectar presencia de parásitos en materia fecal. t 70 \N 1 13 ALL ALL ALL 0.00 0.00 onsite +113 2025-04-15 20:44:28.921194+00 2025-04-15 20:44:28.921201+00 f t PCR Mycoplasma haemotrópicos (Haemoplasmas) Análisis de sangre especializado t 70 \N 1 13 ALL ALL ALL 0.00 0.00 onsite +114 2025-04-15 20:44:28.93123+00 2025-04-15 20:44:28.931236+00 f t PCR ViLeF - Leucemia Felina Análisis de sangre especializado que detecta la presencia del virus de la leucemia felina t 70 \N 1 13 ALL ALL CAT 0.00 0.00 onsite +112 2025-04-15 20:44:28.912194+00 2025-04-15 20:44:28.912201+00 f t Análisis Prequirúrgico Examen comunmente solicitado previo a cirugías t 70 \N 1 13 ALL ALL ALL 0.00 0.00 onsite +85 2025-04-15 20:44:28.694695+00 2025-04-15 20:44:28.694706+00 f t Vacuna Antirrábica Vacuna antirrábica. Se suma automáticamente una revisión de salud obligatoria t 70 \N 60 2 ALL ALL ALL 0.00 0.00 onsite +124 2025-04-15 20:44:29.005334+00 2025-04-15 20:44:29.005344+00 f t Desparasitación Interna + Externa - Gato (más de 5kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL CAT 100.00 5.00 onsite +123 2025-04-15 20:44:28.99745+00 2025-04-15 20:44:28.997459+00 f t Desparasitación Interna + Externa - Gato (2 a 5kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL CAT 5.00 2.00 onsite +117 2025-04-15 20:44:28.952804+00 2025-04-15 20:44:28.95281+00 f t Desparasitación Interna + Externa - Perro (hasta 10kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 10.00 0.00 onsite +119 2025-04-15 20:44:28.965354+00 2025-04-15 20:44:28.965361+00 f t Desparasitación Interna + Externa - Perro (20 a 30kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 30.00 20.00 onsite +120 2025-04-15 20:44:28.973828+00 2025-04-15 20:44:28.973834+00 f t Desparasitación Interna + Externa - Perro (30 a 40kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 40.00 30.00 onsite +106 2025-04-15 20:44:28.863449+00 2025-04-15 20:44:28.863455+00 f t Ecografía Estudio por ultrasonido para evaluar órganos internos. Consultanos por descuentos abonando en efectivo. t 41 \N 60 12 ALL ALL ALL 0.00 0.00 onsite +118 2025-04-15 20:44:28.958329+00 2025-04-15 20:44:28.958334+00 f t Desparasitación Interna + Externa - Perro (10 a 20kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 20.00 10.00 onsite +126 2025-04-15 20:44:29.023377+00 2025-04-15 20:44:29.023383+00 f t Desparasitación Interna - Perro (10 a 20kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 20.00 10.00 onsite +125 2025-04-15 20:44:29.014977+00 2025-04-15 20:44:29.014985+00 f t Desparasitación Interna - Perro (hasta 10kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 10.00 0.00 onsite +127 2025-04-15 20:44:29.029037+00 2025-04-15 20:44:29.029042+00 f t Desparasitación Interna - Perro (20 a 30kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 30.00 20.00 onsite +100 2025-04-15 20:44:28.820348+00 2025-04-15 20:44:28.820353+00 f t Consulta endocrinológica Diagnóstico y tratamiento de trastornos hormonales y metabólicos. t 72 \N 60 7 ALL ALL ALL 0.00 0.00 onsite +105 2025-04-15 20:44:28.857669+00 2025-04-15 20:44:28.857676+00 f t Sesión de Fisioterapia Terapia física para recuperación funcional y mejora de movilidad. t 78 \N 60 11 ALL ALL ALL 0.00 0.00 onsite +87 2025-04-15 20:44:28.716563+00 2025-04-15 20:44:28.716572+00 f t Vacuna Tos de la perrera Vacuna contra la tos de las perreras. Se suma automáticamente una revisión de salud obligatoria t 70 \N 60 2 ALL ALL DOG 0.00 0.00 onsite +101 2025-04-15 20:44:28.828083+00 2025-04-15 20:44:28.828089+00 f t Consulta virtual de Nutrición Asesoramiento personalizado sobre alimentación y dietas específicas. t 54 \N 60 8 ALL ALL ALL 0.00 0.00 onsite +82 2025-04-15 20:44:28.656473+00 2025-04-15 20:44:28.656486+00 f t Consulta general clínica programada Consulta a domicilio por problemas de salud o chequeo general t 70 \N 60 1 ALL ALL ALL 0.00 0.00 onsite +108 2025-04-15 20:44:28.881584+00 2025-04-15 20:44:28.881589+00 f t Rayos Diagnóstico por imágenes para evaluar huesos, articulaciones y órganos internos. El valor incluye dos vistas. t 6 \N 60 12 ALL ALL ALL 0.00 0.00 onsite +99 2025-04-15 20:44:28.813363+00 2025-04-15 20:44:28.813369+00 f f Consulta oftalmologica Evaluación y diagnóstico de enfermedades y problemas oculares o de visión. t 77 \N 60 6 ALL ALL ALL 0.00 0.00 onsite +122 2025-04-15 20:44:28.988341+00 2025-04-15 20:44:28.988347+00 f t Desparasitación Interna + Externa - Gato (hasta 2kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL CAT 2.00 0.00 onsite +84 2025-04-15 20:44:28.682734+00 2025-04-15 20:44:28.682745+00 f t Consulta clínica de urgencia Consulta a domicilio por problemas de salud urgentes t 70 \N 60 1 ALL ALL ALL 0.00 0.00 onsite +115 2025-04-15 20:44:28.936782+00 2025-04-15 20:44:28.936788+00 f t PCR Leishmania Análisis PCR que detecta la presencia de la enfermedad leishmaniasis en perros t 70 \N 1 13 ALL ALL DOG 0.00 0.00 onsite +97 2025-04-15 20:44:28.800184+00 2025-04-15 20:44:28.80019+00 f t Consulta dermatológica Revisión y diagnóstico de alternaciones de la piel o pelaje t 71 \N 60 5 ALL ALL ALL 0.00 0.00 onsite +89 2025-04-15 20:44:28.736058+00 2025-04-15 20:44:28.736066+00 t f Maniobra de Desparasitación y certificado Administración de antiparasitario t 70 \N 10 3 ALL ALL ALL 0.00 0.00 onsite +83 2025-04-15 20:44:28.672692+00 2025-04-15 20:44:28.672704+00 f t Telemedicina Consulta virtual por problemas de salud o por dudas generales t 70 \N 30 1 ALL ALL ALL 0.00 0.00 onsite +88 2025-04-15 20:44:28.725768+00 2025-04-15 20:44:28.725778+00 f t Vacuna Leucemia Felina Vacuna contra el Virus de la Leucemia Felina. Se suma automáticamente una revisión de salud obligatoria t 70 \N 60 2 ALL ALL CAT 0.00 0.00 onsite +145 2025-04-15 20:44:29.172524+00 2025-04-15 20:44:29.172531+00 f t Eutanasia (más de 40kg) Servicio de eutanasia para perro o gato t 70 \N 60 15 ALL ALL ALL 0.00 0.00 onsite +150 2025-04-15 20:44:29.221812+00 2025-04-15 20:44:29.221818+00 f f Castración Gato Macho Castración de gatos macho. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 19 ALL MALE CAT 0.00 0.00 onsite +102 2025-04-15 20:44:28.834586+00 2025-04-15 20:44:28.834592+00 t f Consulta cardiológica Revisión del sistema cardiovascular a través de ecocardiograma y electrocardiograma t 8 \N 60 9 ALL ALL ALL 0.00 0.00 onsite +138 2025-04-15 20:44:29.115645+00 2025-04-15 20:44:29.115652+00 f t Desparasitación Externa - Gato (hasta 2kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL CAT 2.00 0.00 onsite +154 2025-04-15 20:44:29.258134+00 2025-04-15 20:44:29.258141+00 f f Castración Perro Hembra (20 a 30kg) Castración de perros hembra. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 19 ALL FEMALE DOG 30.00 20.00 onsite +155 2025-04-15 20:44:29.265658+00 2025-04-15 20:44:29.265665+00 f f Castración Perro Hembra (30 a 40kg) Castración de perros hembra. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 19 ALL FEMALE DOG 40.00 30.00 onsite +152 2025-04-15 20:44:29.239947+00 2025-04-15 20:44:29.239953+00 f f Castración Perro Hembra (hasta 10kg) Castración de perros hembra. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 19 ALL FEMALE DOG 10.00 0.00 onsite +158 2025-04-15 20:44:29.294534+00 2025-04-15 20:44:29.294542+00 f f Castración Perro Macho (10 a 20kg) Castración de perros macho. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 19 ALL MALE DOG 20.00 10.00 onsite +159 2025-04-15 20:44:29.302411+00 2025-04-15 20:44:29.302418+00 f f Castración Perro Macho (20 a 30kg) Castración de perros macho. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 19 ALL MALE DOG 30.00 20.00 onsite +160 2025-04-15 20:44:29.31045+00 2025-04-15 20:44:29.310457+00 f f Castración Perro Macho (30 a 40kg) Castración de perros macho. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 19 ALL MALE DOG 40.00 30.00 onsite +157 2025-04-15 20:44:29.285511+00 2025-04-15 20:44:29.285521+00 f f Castración Perro Macho (hasta 10kg) Castración de perros macho. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 19 ALL MALE DOG 10.00 0.00 onsite +161 2025-04-15 20:44:29.321713+00 2025-04-15 20:44:29.321722+00 f f Castración Perro Macho (más de 40kg) Castración de perros macho. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 19 ALL MALE DOG 100.00 40.00 onsite +135 2025-04-15 20:44:29.089227+00 2025-04-15 20:44:29.089234+00 f t Desparasitación Externa - Perro (20 a 30kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 30.00 20.00 onsite +156 2025-04-15 20:44:29.275407+00 2025-04-15 20:44:29.275415+00 f f Castración Perro Hembra (más de 40kg) Castración de perros hembra. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 19 ALL FEMALE DOG 100.00 40.00 onsite +148 2025-04-15 20:44:29.205388+00 2025-04-15 20:44:29.205395+00 f f Limpieza dental (hasta 15kg) Limpieza dental de mascotas hasta 15kg de peso. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 18 ALL ALL ALL 0.00 0.00 onsite +149 2025-04-15 20:44:29.212335+00 2025-04-15 20:44:29.212343+00 f f Limpieza dental (más de 15kg) Limpieza dental de mascotas de más de 15kg de peso. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 18 ALL ALL ALL 0.00 0.00 onsite +147 2025-04-15 20:44:29.196342+00 2025-04-15 20:44:29.196352+00 f f Cardiólogo en veterinaria Revisión del sistema cardiovascular a través de ecocardiograma y electrocardiograma en la clínica Desivet f 8 \N 0 17 ALL ALL ALL 0.00 0.00 onsite +153 2025-04-15 20:44:29.249859+00 2025-04-15 20:44:29.249865+00 f f Castración Perro Hembra (10 a 20kg) Castración de perros hembra. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 19 ALL FEMALE DOG 20.00 10.00 onsite +151 2025-04-15 20:44:29.232422+00 2025-04-15 20:44:29.23243+00 f f Castración Gato Hembra Castración de gatos hembra. Incluye anestesia y procedimiento en un quirófano f 79 \N 0 19 ALL FEMALE CAT 0.00 0.00 onsite +140 2025-04-15 20:44:29.133396+00 2025-04-15 20:44:29.133404+00 f t Desparasitación Externa - Gato (más de 5kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL CAT 100.00 5.00 onsite +134 2025-04-15 20:44:29.081146+00 2025-04-15 20:44:29.081159+00 f t Desparasitación Externa - Perro (10 a 20kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 20.00 10.00 onsite +131 2025-04-15 20:44:29.05983+00 2025-04-15 20:44:29.059836+00 f t Desparasitación Interna - Gato (2 a 5kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL CAT 5.00 2.00 onsite +130 2025-04-15 20:44:29.051297+00 2025-04-15 20:44:29.051305+00 f t Desparasitación Interna - Gato (hasta 2kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL CAT 2.00 0.00 onsite +132 2025-04-15 20:44:29.065998+00 2025-04-15 20:44:29.066004+00 f t Desparasitación Interna - Gato (más de 5kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL CAT 100.00 5.00 onsite +133 2025-04-15 20:44:29.073427+00 2025-04-15 20:44:29.073433+00 f t Desparasitación Externa - Perro (hasta 10kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 10.00 0.00 onsite +136 2025-04-15 20:44:29.098287+00 2025-04-15 20:44:29.098295+00 f t Desparasitación Externa - Perro (30 a 40kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 40.00 30.00 onsite +137 2025-04-15 20:44:29.105809+00 2025-04-15 20:44:29.105817+00 f t Desparasitación Externa - Perro (más de 40kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 100.00 40.00 onsite +128 2025-04-15 20:44:29.036425+00 2025-04-15 20:44:29.03643+00 f t Desparasitación Interna - Perro (30 a 40kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 40.00 30.00 onsite +162 2025-04-21 14:59:32.090962+00 2025-04-21 14:59:32.090971+00 f f Vacunación anual Vacuna antirrábica más vacuna séxtuple (perros) o triple (gatos) f 70 \N 0 2 ALL ALL ALL 0.00 0.00 onsite +146 2025-04-15 20:44:29.186995+00 2025-04-15 20:44:29.187001+00 f t Traslado de muestras Traslado de muestras refrigeradas de tu domicilio al laboratorio t 70 \N 1 16 ALL ALL ALL 0.00 0.00 onsite +111 2025-04-15 20:44:28.905152+00 2025-04-15 20:44:28.905162+00 f t Análisis de sangre completo sin Orina Análisis de sangre completo t 70 \N 1 13 ALL ALL ALL 0.00 0.00 onsite +103 2025-04-15 20:44:28.843155+00 2025-04-15 20:44:28.843161+00 f t Consulta cardiológica Revisión del sistema cardiovascular a través de ecocardiograma y electrocardiograma t 8 \N 60 9 ALL ALL ALL 0.00 0.00 onsite +141 2025-04-15 20:44:29.140304+00 2025-04-15 20:44:29.14031+00 f t Eutanasia (hasta 10kg) Servicio de eutanasia para perro o gato t 70 \N 60 15 ALL ALL ALL 0.00 0.00 onsite +142 2025-04-15 20:44:29.148033+00 2025-04-15 20:44:29.14804+00 f t Eutanasia (10 a 20kg) Servicio de eutanasia para perro o gato t 70 \N 60 15 ALL ALL ALL 0.00 0.00 onsite +143 2025-04-15 20:44:29.157404+00 2025-04-15 20:44:29.15741+00 f t Eutanasia (20 a 30kg) Servicio de eutanasia para perro o gato t 70 \N 60 15 ALL ALL ALL 0.00 0.00 onsite +144 2025-04-15 20:44:29.163557+00 2025-04-15 20:44:29.163563+00 f t Eutanasia (30 a 40kg) Servicio de eutanasia para perro o gato t 70 \N 60 15 ALL ALL ALL 0.00 0.00 onsite +129 2025-04-15 20:44:29.043686+00 2025-04-15 20:44:29.043695+00 f t Desparasitación Interna - Perro (más de 40kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 100.00 40.00 onsite +167 2025-09-03 18:59:51.071215+00 2025-09-03 18:59:51.071222+00 f t Ecografía para hoy Estudio por ultrasonido para evaluar órganos internos. Consultanos por descuento abonando en efectivo. f 41 118 0 12 ALL ALL ALL 99.00 0.00 onsite +164 2025-06-26 14:18:40.030133+00 2025-06-26 14:18:40.030141+00 f t Ecodoppler Estudio por imágenes que utiliza ultrasonido para evaluar el flujo sanguíneo t 8 118 0 9 ALL ALL ALL 99.00 0.00 onsite +98 2025-04-15 20:44:28.806058+00 2025-04-15 20:44:28.806064+00 f t Consulta dermatológica virtual Revisión y diagnóstico virtual de alternaciones de la piel o pelaje t 71 \N 30 5 ALL ALL ALL 0.00 0.00 onsite +109 2025-04-15 20:44:28.890333+00 2025-04-15 20:44:28.890343+00 f t Análisis de sangre Básico Análisis de sangre básico de rutina t 70 \N 1 13 ALL ALL ALL 0.00 0.00 onsite +166 2025-07-28 14:50:16.340482+00 2025-07-28 14:50:16.340491+00 f t Otros estudios de laboratorio Realizamos todos los estudios que tu mascota necesita. Si no encontrás el que estás buscando, escribinos. f 70 118 0 13 ALL ALL ALL 99.00 0.00 onsite +169 2025-09-23 16:21:22.375265+00 2025-09-23 16:21:22.375273+00 f t Consulta nefrológica virtual Consulta virtual para diagnóstico y tratamiento de problemas renales y urinarios t 80 118 0 20 ALL ALL ALL 99.00 0.00 onsite +163 2025-05-09 19:07:43.423586+00 2025-05-09 19:07:43.423596+00 f t Vacuna Triple Felina Vacuna Triple Felina. Se suma automáticamente una revisión de salud obligatoria t 70 110 0 2 ALL ALL CAT 0.00 0.00 onsite +86 2025-04-15 20:44:28.706411+00 2025-04-15 20:44:28.706422+00 f t Vacuna Séxtuple Vacuna séxtuple. Se suma automáticamente una revisión de salud obligatoria t 70 \N 60 2 ALL ALL DOG 0.00 0.00 onsite +165 2025-07-28 14:34:31.752112+00 2025-07-28 14:34:31.752121+00 f t PCR VIF + ViLeF Análisis de sangre que incluye PCR para detectar la presencia de VIF y ViLeF en gatos f 70 118 0 13 ALL ALL CAT 99.00 0.00 onsite +168 2025-09-23 16:12:42.449296+00 2025-09-23 16:12:42.449303+00 f t Consulta endocrinológica virtual Consulta virtual para el diagnóstico y tratamiento de trastornos hormonales y metabólicos. f 72 118 0 7 ALL ALL ALL 99.00 0.00 onsite +170 2025-09-24 12:28:55.028209+00 2025-09-24 12:28:55.028218+00 f t Crematorio Inseparables Servicio de cremación con retiro. t 81 118 0 15 ALL ALL ALL 99.00 0.00 onsite +172 2025-09-24 17:28:29.531261+00 2025-09-24 17:28:29.531268+00 f t Visita de Auxiliar Veterinario Visita de auxiliar veterinario f 74 118 0 1 ALL ALL ALL 99.00 0.00 onsite +139 2025-04-15 20:44:29.122665+00 2025-04-15 20:44:29.122674+00 f t Desparasitación Externa - Gato (2 a 5kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL CAT 5.00 2.00 onsite +171 2025-09-24 17:26:12.640263+00 2025-09-24 17:26:12.64027+00 f f - f 41 110 0 12 ALL ALL ALL 99.00 0.00 onsite +173 2025-09-24 17:42:55.472886+00 2025-09-24 17:42:55.472896+00 f t Ecografía GBA Estudio por ultrasonido para evaluar órganos internos. t 82 118 0 12 ALL ALL ALL 99.00 0.00 onsite +174 2025-10-08 18:02:44.521099+00 2025-10-08 18:02:44.521107+00 f t Derivación Burgess f 83 118 0 22 ALL ALL ALL 99.00 0.00 onsite +121 2025-04-15 20:44:28.982377+00 2025-04-15 20:44:28.982383+00 f t Desparasitación Interna + Externa - Perro (más de 40kg) Antiparasitario en comprimidos, jarabe o pipeta t 70 \N 5 14 ALL ALL DOG 100.00 40.00 onsite +175 2025-10-27 18:06:23.449188+00 2025-10-27 18:06:23.449196+00 f t Consulta gerontológica virtual Evaluación de tu mascota senior a través de videollamada, con foco en mejorar su calidad de vida, prevenir dolencias y acompañar los cambios propios del envejecimiento. f 84 118 0 23 senior ALL ALL 99.00 0.00 onsite +176 2025-10-27 19:17:56.507583+00 2025-10-27 19:17:56.50759+00 f t Consulta gerontológica Evaluación de tu mascota senior en tu casa, con foco en mejorar su calidad de vida, prevenir dolencias y acompañar los cambios propios del envejecimiento. f 84 118 0 23 senior ALL ALL 99.00 0.00 onsite +177 2025-11-10 17:12:41.100561+00 2025-11-10 17:12:41.100566+00 f t Traslado enfemeria Traslado de muestras refrigeradas de tu domicilio al laboratorio. t 74 113 0 \N ALL ALL ALL 99.00 0.00 onsite +\. + + +-- +-- Data for Name: productos_servicecombo; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.productos_servicecombo (id, created_at, updated_at, deleted, active, name, description, discount_percent, discount_fixed, user_id) FROM stdin; +1 2025-05-09 18:46:25.421827+00 2025-05-09 18:46:25.421835+00 f t Multi mascota Multi mascota 10.00 \N 110 +\. + + +-- +-- Data for Name: productos_servicecomboitem; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.productos_servicecomboitem (id, item_type, quantity, category_id, combo_id, service_id, active, created_at, deleted, updated_at, user_id) FROM stdin; +1 Servicio 2 1 1 82 t 2025-05-09 18:47:04.22935+00 f 2025-05-09 18:47:04.22936+00 110 +\. + + +-- +-- Data for Name: solicitudes_paymentreminder; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.solicitudes_paymentreminder (id, created_at, updated_at, deleted, active, scheduled_for, processed_at, status, status_detail, celery_task_id, attempts, payload, last_error, last_response, service_request_id, user_id) FROM stdin; +18 2025-11-23 20:27:50.12454+00 2025-11-23 21:30:00.005566+00 f t 2025-11-23 21:27:50.116431+00 2025-11-23 21:30:00.005566+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1749 \N +1 2025-11-22 01:28:06.939251+00 2025-11-22 02:30:00.002899+00 f t 2025-11-22 02:28:06.930028+00 2025-11-22 02:30:00.002899+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1732 \N +2 2025-11-22 02:30:47.630069+00 2025-11-22 03:35:00.004041+00 f t 2025-11-22 03:30:47.621898+00 2025-11-22 03:35:00.004041+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1733 \N +32 2025-11-24 22:26:39.575943+00 2025-11-24 23:30:00.007879+00 f t 2025-11-24 23:26:39.562438+00 2025-11-24 23:30:00.007879+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1763 \N +3 2025-11-22 11:40:18.626242+00 2025-11-22 12:45:00.003034+00 f t 2025-11-22 12:40:18.617741+00 2025-11-22 12:45:00.003034+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1734 \N +19 2025-11-24 07:23:05.408055+00 2025-11-24 08:25:00.003307+00 f t 2025-11-24 08:23:05.401252+00 2025-11-24 08:25:00.003307+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1750 \N +4 2025-11-22 13:36:26.381635+00 2025-11-22 14:40:00.003395+00 f t 2025-11-22 14:36:26.373059+00 2025-11-22 14:40:00.003395+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1735 \N +5 2025-11-22 14:43:38.59579+00 2025-11-22 15:45:00.006182+00 f t 2025-11-22 15:43:38.589549+00 2025-11-22 15:45:00.006182+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1736 \N +27 2025-11-24 14:28:27.476797+00 2025-11-24 15:30:00.004055+00 f t 2025-11-24 15:28:27.469334+00 2025-11-24 15:30:00.004055+00 sent Recordatorio enviado 1 {"payment_link": ""} {"info": "", "errors": "", "message": null} 1758 \N +6 2025-11-22 15:43:45.873269+00 2025-11-22 16:45:00.003458+00 f t 2025-11-22 16:43:45.866821+00 2025-11-22 16:45:00.003458+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1737 \N +20 2025-11-24 09:57:56.248284+00 2025-11-24 11:00:00.004584+00 f t 2025-11-24 10:57:56.238836+00 2025-11-24 11:00:00.004584+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1751 \N +7 2025-11-22 16:37:12.452097+00 2025-11-22 17:40:00.004018+00 f t 2025-11-22 17:37:12.445176+00 2025-11-22 17:40:00.004018+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1738 \N +8 2025-11-22 17:07:02.406852+00 2025-11-22 18:10:00.004204+00 f t 2025-11-22 18:07:02.399615+00 2025-11-22 18:10:00.004204+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1739 \N +9 2025-11-22 18:28:16.013489+00 2025-11-22 18:31:51.409312+00 f t 2025-11-22 19:28:16.006993+00 2025-11-22 18:31:51.409312+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1740 \N +10 2025-11-22 18:41:25.457043+00 2025-11-22 19:24:55.141793+00 f t 2025-11-22 19:41:25.449966+00 2025-11-22 19:24:55.141793+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1741 \N +11 2025-11-22 22:56:17.80839+00 2025-11-23 00:00:00.003865+00 f t 2025-11-22 23:56:17.800802+00 2025-11-23 00:00:00.003865+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1742 \N +12 2025-11-23 10:23:45.920305+00 2025-11-23 11:25:00.003565+00 f t 2025-11-23 11:23:45.91035+00 2025-11-23 11:25:00.003565+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1743 \N +13 2025-11-23 13:00:11.449569+00 2025-11-23 14:05:00.004369+00 f t 2025-11-23 14:00:11.433409+00 2025-11-23 14:05:00.004369+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1744 \N +14 2025-11-23 13:44:12.94398+00 2025-11-23 14:45:00.003643+00 f t 2025-11-23 14:44:12.934636+00 2025-11-23 14:45:00.003643+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1745 \N +15 2025-11-23 14:51:13.764929+00 2025-11-23 15:55:00.004211+00 f t 2025-11-23 15:51:13.758374+00 2025-11-23 15:55:00.004211+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1746 \N +17 2025-11-23 18:35:40.774027+00 2025-11-23 18:37:44.616007+00 f t 2025-11-23 19:35:40.76772+00 2025-11-23 18:37:44.616007+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1748 \N +21 2025-11-24 13:20:26.218409+00 2025-11-24 14:25:00.003372+00 f t 2025-11-24 14:20:26.206343+00 2025-11-24 14:25:00.003372+00 sent Recordatorio enviado 1 {"payment_link": ""} {"info": "", "errors": "", "message": null} 1752 \N +16 2025-11-23 18:33:57.461535+00 2025-11-23 19:35:00.005549+00 f t 2025-11-23 19:33:57.449898+00 2025-11-23 19:35:00.005549+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1747 \N +28 2025-11-24 15:03:46.311165+00 2025-11-24 16:05:00.004242+00 f t 2025-11-24 16:03:46.30248+00 2025-11-24 16:05:00.004242+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1759 \N +33 2025-11-24 23:11:34.778977+00 2025-11-25 00:15:00.008173+00 f t 2025-11-25 00:11:34.770196+00 2025-11-25 00:15:00.008173+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1764 \N +22 2025-11-24 13:40:20.43611+00 2025-11-24 14:45:00.003072+00 f t 2025-11-24 14:40:20.426874+00 2025-11-24 14:45:00.003072+00 sent Recordatorio enviado 1 {"payment_link": ""} {"info": "", "errors": "", "message": null} 1753 \N +29 2025-11-24 15:03:57.003723+00 2025-11-24 16:05:00.004242+00 f t 2025-11-24 16:03:56.995598+00 2025-11-24 16:05:00.004242+00 sent Recordatorio enviado 1 {"payment_link": ""} {"info": "", "errors": "", "message": null} 1760 \N +23 2025-11-24 13:57:08.957674+00 2025-11-24 15:00:00.004515+00 f t 2025-11-24 14:57:08.944899+00 2025-11-24 15:00:00.004515+00 sent Recordatorio enviado 1 {"payment_link": ""} {"info": "", "errors": "", "message": null} 1754 \N +24 2025-11-24 14:20:10.069876+00 2025-11-24 15:25:00.004199+00 f t 2025-11-24 15:20:10.053804+00 2025-11-24 15:25:00.004199+00 sent Recordatorio enviado 1 {"payment_link": ""} {"info": "", "errors": "", "message": null} 1755 \N +25 2025-11-24 14:22:59.910795+00 2025-11-24 15:25:00.004199+00 f t 2025-11-24 15:22:59.903501+00 2025-11-24 15:25:00.004199+00 sent Recordatorio enviado 1 {"payment_link": ""} {"info": "", "errors": "", "message": null} 1756 \N +30 2025-11-24 20:39:15.703613+00 2025-11-24 21:40:00.006747+00 f t 2025-11-24 21:39:15.689928+00 2025-11-24 21:40:00.006747+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1761 \N +26 2025-11-24 14:27:45.947215+00 2025-11-24 15:30:00.004055+00 f t 2025-11-24 15:27:45.940466+00 2025-11-24 15:30:00.004055+00 sent Recordatorio enviado 1 {"payment_link": ""} {"info": "", "errors": "", "message": null} 1757 \N +31 2025-11-24 22:01:32.978515+00 2025-11-24 22:49:56.749109+00 f t 2025-11-24 23:01:32.960814+00 2025-11-24 22:49:56.749109+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1762 \N +35 2025-11-25 01:35:08.357194+00 2025-11-25 02:40:00.007145+00 f t 2025-11-25 02:35:08.34297+00 2025-11-25 02:40:00.007145+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1766 \N +37 2025-11-25 02:08:31.103512+00 2025-11-25 03:10:00.010224+00 f t 2025-11-25 03:08:31.090135+00 2025-11-25 03:10:00.010224+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1768 \N +34 2025-11-25 01:04:48.569129+00 2025-11-25 02:05:00.00906+00 f t 2025-11-25 02:04:48.555366+00 2025-11-25 02:05:00.00906+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1765 \N +36 2025-11-25 01:43:57.498631+00 2025-11-25 02:45:00.004809+00 f t 2025-11-25 02:43:57.487507+00 2025-11-25 02:45:00.004809+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1767 \N +38 2025-11-25 12:10:13.905756+00 2025-11-25 13:15:00.008957+00 f t 2025-11-25 13:10:13.893477+00 2025-11-25 13:15:00.008957+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1769 \N +39 2025-11-25 12:41:23.597543+00 2025-11-25 13:45:00.010926+00 f t 2025-11-25 13:41:23.589178+00 2025-11-25 13:45:00.010926+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1770 \N +40 2025-11-25 12:53:31.710766+00 2025-11-25 13:55:00.018761+00 f t 2025-11-25 13:53:31.696681+00 2025-11-25 13:55:00.018761+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1771 \N +41 2025-11-25 13:01:26.243967+00 2025-11-25 14:05:00.022009+00 f t 2025-11-25 14:01:26.231233+00 2025-11-25 14:05:00.022009+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1772 \N +43 2025-11-25 13:33:39.214701+00 2025-11-25 14:35:00.003508+00 f t 2025-11-25 14:33:39.199468+00 2025-11-25 14:35:00.003508+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1774 \N +42 2025-11-25 13:17:55.888075+00 2025-11-25 14:20:00.003929+00 f t 2025-11-25 14:17:55.874439+00 2025-11-25 14:20:00.003929+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1773 \N +45 2025-11-25 14:25:26.815764+00 2025-11-25 14:39:15.137644+00 f t 2025-11-25 15:25:26.807699+00 2025-11-25 14:39:15.137644+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1776 \N +44 2025-11-25 14:09:12.672669+00 2025-11-25 14:49:38.405202+00 f t 2025-11-25 15:09:12.660058+00 2025-11-25 14:49:38.405202+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1775 \N +63 2025-11-25 21:19:44.742738+00 2025-11-25 21:20:16.001432+00 f t 2025-11-25 22:19:44.736094+00 2025-11-25 21:20:16.001432+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1794 \N +46 2025-11-25 14:27:37.244818+00 2025-11-25 15:30:00.003418+00 f t 2025-11-25 15:27:37.23483+00 2025-11-25 15:30:00.003418+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1777 \N +47 2025-11-25 14:52:48.628499+00 2025-11-25 15:46:22.664719+00 f t 2025-11-25 15:52:48.621133+00 2025-11-25 15:46:22.664719+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1778 \N +48 2025-11-25 15:26:28.681692+00 2025-11-25 16:30:00.005478+00 f t 2025-11-25 16:26:28.671431+00 2025-11-25 16:30:00.005478+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1779 \N +53 2025-11-25 16:53:53.852105+00 2025-11-25 16:57:10.324674+00 f t 2025-11-25 17:53:53.84034+00 2025-11-25 16:57:10.324674+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1784 \N +49 2025-11-25 15:55:40.374149+00 2025-11-25 17:00:00.008757+00 f t 2025-11-25 16:55:40.361211+00 2025-11-25 17:00:00.008757+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1780 \N +52 2025-11-25 16:38:46.686583+00 2025-11-25 17:03:23.903829+00 f t 2025-11-25 17:38:46.675484+00 2025-11-25 17:03:23.903829+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1783 \N +65 2025-11-25 21:21:46.546734+00 2025-11-25 21:24:05.453272+00 f t 2025-11-25 22:21:46.540138+00 2025-11-25 21:24:05.453272+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1796 \N +50 2025-11-25 16:22:16.145824+00 2025-11-25 17:25:00.0086+00 f t 2025-11-25 17:22:16.136737+00 2025-11-25 17:25:00.0086+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1781 \N +70 2025-11-25 23:47:59.695334+00 2025-11-26 00:50:00.002946+00 f t 2025-11-26 00:47:59.687062+00 2025-11-26 00:50:00.002946+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1801 \N +51 2025-11-25 16:32:58.876084+00 2025-11-25 17:35:00.005689+00 f t 2025-11-25 17:32:58.862053+00 2025-11-25 17:35:00.005689+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1782 \N +61 2025-11-25 20:50:32.537574+00 2025-11-25 21:55:00.003497+00 f t 2025-11-25 21:50:32.530952+00 2025-11-25 21:55:00.003497+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1792 \N +54 2025-11-25 17:25:43.857857+00 2025-11-25 18:30:00.007799+00 f t 2025-11-25 18:25:43.84541+00 2025-11-25 18:30:00.007799+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1785 \N +55 2025-11-25 18:38:27.644813+00 2025-11-25 19:40:00.004182+00 f t 2025-11-25 19:38:27.632485+00 2025-11-25 19:40:00.004182+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1786 \N +57 2025-11-25 19:44:48.472767+00 2025-11-25 19:45:58.630612+00 f t 2025-11-25 20:44:48.465369+00 2025-11-25 19:45:58.630612+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1788 \N +56 2025-11-25 18:50:11.376142+00 2025-11-25 19:55:00.003837+00 f t 2025-11-25 19:50:11.362248+00 2025-11-25 19:55:00.003837+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1787 \N +60 2025-11-25 20:18:35.739726+00 2025-11-25 20:19:16.608098+00 f t 2025-11-25 21:18:35.733823+00 2025-11-25 20:19:16.608098+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1791 \N +62 2025-11-25 21:00:09.046296+00 2025-11-25 21:08:31.355979+00 f t 2025-11-25 22:00:09.035111+00 2025-11-25 21:08:31.355979+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1793 \N +64 2025-11-25 21:21:44.022504+00 2025-11-25 22:25:00.007115+00 f t 2025-11-25 22:21:44.015036+00 2025-11-25 22:25:00.007115+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1795 \N +58 2025-11-25 20:08:42.217925+00 2025-11-25 21:10:00.00336+00 f t 2025-11-25 21:08:42.211766+00 2025-11-25 21:10:00.00336+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1789 \N +59 2025-11-25 20:13:27.871609+00 2025-11-25 21:15:00.004433+00 f t 2025-11-25 21:13:27.863059+00 2025-11-25 21:15:00.004433+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1790 \N +66 2025-11-25 22:22:15.001668+00 2025-11-25 23:25:00.003654+00 f t 2025-11-25 23:22:14.980447+00 2025-11-25 23:25:00.003654+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1797 \N +67 2025-11-25 22:52:30.387152+00 2025-11-25 23:55:00.004+00 f t 2025-11-25 23:52:30.378041+00 2025-11-25 23:55:00.004+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1798 \N +68 2025-11-25 23:17:58.004491+00 2025-11-26 00:20:00.003092+00 f t 2025-11-26 00:17:57.99757+00 2025-11-26 00:20:00.003092+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1799 \N +69 2025-11-25 23:19:29.14105+00 2025-11-26 00:20:00.003092+00 f t 2025-11-26 00:19:29.13396+00 2025-11-26 00:20:00.003092+00 failed No se pudo enviar el recordatorio 1 {"payment_link": ""} 404 {} 1800 \N +71 2025-11-26 00:20:54.434617+00 2025-11-26 00:23:38.497501+00 f t 2025-11-26 01:20:54.427534+00 2025-11-26 00:23:38.497501+00 cancelled Pago registrado antes del recordatorio 0 {"payment_link": ""} {} 1802 \N +\. + + +-- +-- Data for Name: solicitudes_scheduledveterinarianreminder; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.solicitudes_scheduledveterinarianreminder (id, created_at, updated_at, deleted, active, scheduled_for, processed_at, status, status_detail, celery_task_id, attempts, payload, last_error, last_response, user_id, veterinarian_asked_id) FROM stdin; +11 2025-11-22 14:03:41.947384+00 2025-11-22 15:03:41.96842+00 f t 2025-11-22 15:03:41.944613+00 2025-11-22 15:03:41.96842+00 skipped El veterinario ya respondió la consulta. 770906ab-ac8b-49f6-b94a-1273b9a0fc5b 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "10:00:00"]], "request_reason": "Vacunación Se solicitó:Consulta general clínica programada, Vacuna Antirrábica..."} {} \N 2657 +12 2025-11-22 14:03:42.557237+00 2025-11-22 15:03:42.575546+00 f t 2025-11-22 15:03:42.554657+00 2025-11-22 15:03:42.575546+00 skipped El veterinario ya respondió la consulta. cb38da87-ea90-4067-8d93-b0e1d4f95ba8 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "10:00:00"]], "request_reason": "Vacunación Se solicitó:Consulta general clínica programada, Vacuna Antirrábica..."} {} \N 2658 +5 2025-11-22 13:15:43.557299+00 2025-11-22 14:15:43.580667+00 f t 2025-11-22 14:15:43.554054+00 2025-11-22 14:15:43.580667+00 skipped El veterinario ya respondió la consulta. e11dd4c4-baa4-452a-af5a-482849913013 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "15:00:00"]], "request_reason": "Es una gata de interior, queremos chequear su estado de salud porque muy pronto tendremos un BB Se solicitó:Consulta general clínica programada..."} {} \N 2651 +6 2025-11-22 13:15:44.724862+00 2025-11-22 14:15:44.749413+00 f t 2025-11-22 14:15:44.722352+00 2025-11-22 14:15:44.749413+00 skipped El veterinario ya respondió la consulta. ac5e682f-23ed-4551-b38e-0fd1d8c80281 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "15:00:00"]], "request_reason": "Es una gata de interior, queremos chequear su estado de salud porque muy pronto tendremos un BB Se solicitó:Consulta general clínica programada..."} {} \N 2652 +8 2025-11-22 13:15:56.368783+00 2025-11-22 14:15:56.392374+00 f t 2025-11-22 14:15:56.366574+00 2025-11-22 14:15:56.392374+00 skipped El veterinario ya respondió la consulta. a8b14c5e-f51c-4469-b706-0fffa4d5b0c8 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "15:00:00"]], "request_reason": "Es una gata de interior, queremos chequear su estado de salud porque muy pronto tendremos un BB Se solicitó:Consulta general clínica programada..."} {} \N 2654 +9 2025-11-22 13:15:57.341981+00 2025-11-22 14:15:57.364088+00 f t 2025-11-22 14:15:57.339709+00 2025-11-22 14:15:57.364088+00 skipped El veterinario ya respondió la consulta. 66efe330-e1c1-480c-823d-271c7c3f8096 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "15:00:00"]], "request_reason": "Es una gata de interior, queremos chequear su estado de salud porque muy pronto tendremos un BB Se solicitó:Consulta general clínica programada..."} {} \N 2655 +10 2025-11-22 13:16:02.024973+00 2025-11-22 14:16:02.071873+00 f t 2025-11-22 14:16:02.022154+00 2025-11-22 14:16:02.071873+00 skipped El veterinario ya respondió la consulta. 382fdaa2-ce34-4542-8206-db9c112238dd 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "15:00:00"]], "request_reason": "Es una gata de interior, queremos chequear su estado de salud porque muy pronto tendremos un BB Se solicitó:Consulta general clínica programada..."} {} \N 2656 +13 2025-11-22 14:03:43.686184+00 2025-11-22 15:03:43.704099+00 f t 2025-11-22 15:03:43.684103+00 2025-11-22 15:03:43.704099+00 skipped El veterinario ya respondió la consulta. 8fcdaba9-4e58-469f-aa25-20b34fad4b4d 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "10:00:00"]], "request_reason": "Vacunación Se solicitó:Consulta general clínica programada, Vacuna Antirrábica..."} {} \N 2659 +1 2025-11-22 12:19:30.804926+00 2025-11-22 13:19:30.821991+00 f t 2025-11-22 13:19:30.800568+00 2025-11-22 13:19:30.821991+00 skipped El veterinario ya respondió la consulta. 973b2e62-b90e-467d-9376-ac86c63bc09e 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-22T03:00:00+00:00", "13:00:00"]], "request_reason": "Ojo rojo e inflamado Se solicitó:Consulta clínica de urgencia..."} {} \N 2647 +14 2025-11-22 14:03:48.403109+00 2025-11-22 15:03:48.421917+00 f t 2025-11-22 15:03:48.400194+00 2025-11-22 15:03:48.421917+00 skipped El veterinario ya respondió la consulta. ba68bae0-62e1-4b13-8cef-78eae5cf9ec0 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "10:00:00"]], "request_reason": "Vacunación Se solicitó:Consulta general clínica programada, Vacuna Antirrábica..."} {} \N 2660 +2 2025-11-22 12:19:50.742246+00 2025-11-22 13:19:50.760505+00 f t 2025-11-22 13:19:50.739832+00 2025-11-22 13:19:50.760505+00 skipped Otro veterinario ya aceptó la solicitud. 4154ca84-7d46-4fdf-88ce-fafd50628be4 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-22T03:00:00+00:00", "13:00:00"]], "request_reason": "Ojo rojo e inflamado Se solicitó:Consulta clínica de urgencia..."} {} \N 2648 +3 2025-11-22 12:19:51.319933+00 2025-11-22 13:19:51.337831+00 f t 2025-11-22 13:19:51.317609+00 2025-11-22 13:19:51.337831+00 skipped Otro veterinario ya aceptó la solicitud. c0c8a5de-3007-4e32-b61d-605908fa993f 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-22T03:00:00+00:00", "13:00:00"]], "request_reason": "Ojo rojo e inflamado Se solicitó:Consulta clínica de urgencia..."} {} \N 2649 +15 2025-11-22 14:03:49.47249+00 2025-11-22 15:03:49.49627+00 f t 2025-11-22 15:03:49.469928+00 2025-11-22 15:03:49.49627+00 skipped El veterinario ya respondió la consulta. 62f16868-96ab-455a-8241-f1bea82cd51c 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "10:00:00"]], "request_reason": "Vacunación Se solicitó:Consulta general clínica programada, Vacuna Antirrábica..."} {} \N 2661 +16 2025-11-22 14:03:50.464885+00 2025-11-22 15:03:50.484385+00 f t 2025-11-22 15:03:50.462193+00 2025-11-22 15:03:50.484385+00 skipped El veterinario ya respondió la consulta. 4ab1f826-ddbb-42f5-b76d-bf184bb39c36 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "10:00:00"]], "request_reason": "Vacunación Se solicitó:Consulta general clínica programada, Vacuna Antirrábica..."} {} \N 2662 +17 2025-11-22 14:03:55.774789+00 2025-11-22 15:03:55.792192+00 f t 2025-11-22 15:03:55.772519+00 2025-11-22 15:03:55.792192+00 skipped El veterinario ya respondió la consulta. 64ee062c-450e-4265-aa84-ec8b52c8276c 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "10:00:00"]], "request_reason": "Vacunación Se solicitó:Consulta general clínica programada, Vacuna Antirrábica..."} {} \N 2663 +18 2025-11-22 14:03:56.604212+00 2025-11-22 15:03:56.62139+00 f t 2025-11-22 15:03:56.6011+00 2025-11-22 15:03:56.62139+00 skipped El veterinario ya respondió la consulta. b020eb12-db6e-4bec-9a10-759cd6838466 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "10:00:00"]], "request_reason": "Vacunación Se solicitó:Consulta general clínica programada, Vacuna Antirrábica..."} {} \N 2664 +4 2025-11-22 13:15:43.079417+00 2025-11-22 14:15:43.101575+00 f t 2025-11-22 14:15:43.077223+00 2025-11-22 14:15:43.101575+00 skipped El veterinario ya respondió la consulta. 9996fbe2-21c0-4395-a87b-57a0cc8cf0f2 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "15:00:00"]], "request_reason": "Es una gata de interior, queremos chequear su estado de salud porque muy pronto tendremos un BB Se solicitó:Consulta general clínica programada..."} {} \N 2650 +7 2025-11-22 13:15:55.872726+00 2025-11-22 14:15:55.894833+00 f t 2025-11-22 14:15:55.870689+00 2025-11-22 14:15:55.894833+00 skipped El veterinario ya respondió la consulta. da3aaf6e-d9b5-4464-a792-8258e8e9dea3 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "15:00:00"]], "request_reason": "Es una gata de interior, queremos chequear su estado de salud porque muy pronto tendremos un BB Se solicitó:Consulta general clínica programada..."} {} \N 2653 +21 2025-11-22 15:11:57.441082+00 2025-11-22 16:11:57.45854+00 f t 2025-11-22 16:11:57.437977+00 2025-11-22 16:11:57.45854+00 skipped El veterinario ya respondió la consulta. f644af1f-d75b-479f-ab66-dd820e81951e 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-23T03:00:00+00:00", "09:00:00"]], "request_reason": "Hace pis en el sillón cuando siempre hizo en su caja y ayer encontré un poquito de sangre en la arena Se solicitó:Consulta general clínica programada..."} {} \N 2667 +24 2025-11-22 15:12:14.270383+00 2025-11-22 16:12:14.288379+00 f t 2025-11-22 16:12:14.267875+00 2025-11-22 16:12:14.288379+00 skipped El veterinario ya respondió la consulta. 92f2399f-c7fe-4f1b-bc95-d4313a6f2cd8 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-23T03:00:00+00:00", "09:00:00"]], "request_reason": "Hace pis en el sillón cuando siempre hizo en su caja y ayer encontré un poquito de sangre en la arena Se solicitó:Consulta general clínica programada..."} {} \N 2670 +22 2025-11-22 15:11:58.27102+00 2025-11-22 16:11:58.290145+00 f t 2025-11-22 16:11:58.268604+00 2025-11-22 16:11:58.290145+00 skipped El veterinario ya respondió la consulta. 7626dad3-c5a2-4cb5-8ac3-ad48dedb80f7 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-23T03:00:00+00:00", "09:00:00"]], "request_reason": "Hace pis en el sillón cuando siempre hizo en su caja y ayer encontré un poquito de sangre en la arena Se solicitó:Consulta general clínica programada..."} {} \N 2668 +25 2025-11-22 15:12:14.88394+00 2025-11-22 16:12:14.901092+00 f t 2025-11-22 16:12:14.881188+00 2025-11-22 16:12:14.901092+00 skipped El veterinario ya respondió la consulta. b33a2c58-8ef0-4653-8e82-5fd26e9feb88 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-23T03:00:00+00:00", "09:00:00"]], "request_reason": "Hace pis en el sillón cuando siempre hizo en su caja y ayer encontré un poquito de sangre en la arena Se solicitó:Consulta general clínica programada..."} {} \N 2671 +30 2025-11-22 18:54:37.600387+00 2025-11-22 19:54:37.618274+00 f t 2025-11-22 19:54:37.597375+00 2025-11-22 19:54:37.618274+00 skipped El veterinario ya respondió la consulta. 252abb61-2026-451d-a1d3-602418ec9da1 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-26T03:00:00+00:00", "16:00:00"]], "request_reason": "Se un poco más delgada la zona de la cadera y un leve caminar extraño. Se solicitó:Consulta general clínica programada..."} {} \N 2677 +26 2025-11-22 15:12:19.309856+00 2025-11-22 16:12:19.333876+00 f t 2025-11-22 16:12:19.30725+00 2025-11-22 16:12:19.333876+00 skipped El veterinario ya respondió la consulta. e4e0cffc-9ebd-4cc4-a00c-2060fc0ef5da 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-23T03:00:00+00:00", "09:00:00"]], "request_reason": "Hace pis en el sillón cuando siempre hizo en su caja y ayer encontré un poquito de sangre en la arena Se solicitó:Consulta general clínica programada..."} {} \N 2672 +19 2025-11-22 14:41:56.31225+00 2025-11-22 15:41:56.334215+00 f t 2025-11-22 15:41:56.309643+00 2025-11-22 15:41:56.334215+00 skipped El veterinario ya respondió la consulta. b6c8b4a7-5fa9-41da-bb6e-ef1d952bd281 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-22T03:00:00+00:00", "16:00:00"]], "request_reason": "vacunacion anual Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2665 +23 2025-11-22 15:12:13.634382+00 2025-11-22 16:12:13.655766+00 f t 2025-11-22 16:12:13.632311+00 2025-11-22 16:12:13.655766+00 skipped El veterinario ya respondió la consulta. d5b6f873-fff0-40ab-9c70-fd8292f35f57 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-23T03:00:00+00:00", "09:00:00"]], "request_reason": "Hace pis en el sillón cuando siempre hizo en su caja y ayer encontré un poquito de sangre en la arena Se solicitó:Consulta general clínica programada..."} {} \N 2669 +20 2025-11-22 15:11:57.054544+00 2025-11-22 16:11:57.076061+00 f t 2025-11-22 16:11:57.051898+00 2025-11-22 16:11:57.076061+00 skipped El veterinario ya respondió la consulta. 8c956f8d-b6fe-41aa-8ca9-0059f97b66f0 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-23T03:00:00+00:00", "09:00:00"]], "request_reason": "Hace pis en el sillón cuando siempre hizo en su caja y ayer encontré un poquito de sangre en la arena Se solicitó:Consulta general clínica programada..."} {} \N 2666 +28 2025-11-22 17:35:49.047241+00 2025-11-22 18:35:49.071018+00 f t 2025-11-22 18:35:49.04496+00 2025-11-22 18:35:49.071018+00 failed Excepción al reenviar la consulta 1a3ba114-f9cc-4ef4-a8ae-f69798e20a39 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-22T03:00:00+00:00", "16:00:00"]], "request_reason": "Quitarle los puntos de una castración Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2674 +27 2025-11-22 17:35:44.668359+00 2025-11-22 18:35:44.686306+00 f t 2025-11-22 18:35:44.66582+00 2025-11-22 18:35:44.686306+00 failed Excepción al reenviar la consulta 6f9cdfad-eea4-47ee-99df-c813b7efbb35 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-22T03:00:00+00:00", "16:00:00"]], "request_reason": "Quitarle los puntos de una castración Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2673 +29 2025-11-22 18:51:01.282037+00 2025-11-22 19:51:01.303873+00 f t 2025-11-22 19:51:01.279021+00 2025-11-22 19:51:01.303873+00 skipped El veterinario ya respondió la consulta. df135acc-7845-4981-a288-e6890b4e3a5d 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-26T03:00:00+00:00", "16:00:00"]], "request_reason": "Se un poco más delgada la zona de la cadera y un leve caminar extraño. Se solicitó:Consulta general clínica programada..."} {} \N 2676 +31 2025-11-22 18:54:39.118502+00 2025-11-22 19:54:39.137449+00 f t 2025-11-22 19:54:39.115577+00 2025-11-22 19:54:39.137449+00 skipped El veterinario ya respondió la consulta. 7f4ce3e8-7eb1-441e-b070-27e1435f585e 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-26T03:00:00+00:00", "16:00:00"]], "request_reason": "Se un poco más delgada la zona de la cadera y un leve caminar extraño. Se solicitó:Consulta general clínica programada..."} {} \N 2678 +35 2025-11-23 16:23:20.667126+00 2025-11-23 17:23:20.68556+00 f t 2025-11-23 17:23:20.664401+00 2025-11-23 17:23:20.68556+00 skipped El veterinario ya respondió la consulta. 60bd23be-998c-497d-b6b3-dcc9f3401fd7 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "11:00:00"]], "request_reason": "El gato presenta una pequeña herida en el labio superior derecho. Es una herida rosada, que no sangra y que mostrou una pequeña evolución desde que fue observada hace dos o tres semanas. Se solicitó:Consulta general clínica programada..."} {} \N 2682 +38 2025-11-23 20:29:16.590106+00 2025-11-23 21:29:16.610558+00 f t 2025-11-23 21:29:16.587652+00 2025-11-23 21:29:16.610558+00 failed Excepción al reenviar la consulta d030182a-19f2-40f9-bd5f-c9d43b29e5e4 1 {"request_info": "Perro - Macho - 2 años ", "disponibilidad": [["2025-11-23T03:00:00+00:00", "18:30:00"]], "request_reason": "Vomita liquido, parece baba Se solicitó:Consulta clínica de urgencia..."} 'str' object has no attribute 'weekday' {} \N 2687 +32 2025-11-23 16:20:51.740537+00 2025-11-23 17:20:51.764266+00 f t 2025-11-23 17:20:51.736341+00 2025-11-23 17:20:51.764266+00 failed Excepción al reenviar la consulta e9db1403-a8c5-4f4b-98f2-8b30ba31bf22 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-23T03:00:00+00:00", "16:00:00"]], "request_reason": "Muy decaído Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2679 +36 2025-11-23 16:23:46.96742+00 2025-11-23 17:23:46.987539+00 f t 2025-11-23 17:23:46.96479+00 2025-11-23 17:23:46.987539+00 skipped El veterinario ya respondió la consulta. 9a509f89-3712-443e-973f-cb4e22020248 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "11:00:00"]], "request_reason": "El gato presenta una pequeña herida en el labio superior derecho. Es una herida rosada, que no sangra y que mostrou una pequeña evolución desde que fue observada hace dos o tres semanas. Se solicitó:Consulta general clínica programada..."} {} \N 2683 +33 2025-11-23 16:23:01.970089+00 2025-11-23 17:23:01.992269+00 f t 2025-11-23 17:23:01.966574+00 2025-11-23 17:23:01.992269+00 skipped El veterinario ya respondió la consulta. ab87d301-d734-4ed2-aa8d-8fcfd4a5c584 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "11:00:00"]], "request_reason": "El gato presenta una pequeña herida en el labio superior derecho. Es una herida rosada, que no sangra y que mostrou una pequeña evolución desde que fue observada hace dos o tres semanas. Se solicitó:Consulta general clínica programada..."} {} \N 2680 +34 2025-11-23 16:23:02.867396+00 2025-11-23 17:23:02.886422+00 f t 2025-11-23 17:23:02.863034+00 2025-11-23 17:23:02.886422+00 skipped El veterinario ya respondió la consulta. d0882f3a-1751-4586-854b-44af5303cbf5 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "11:00:00"]], "request_reason": "El gato presenta una pequeña herida en el labio superior derecho. Es una herida rosada, que no sangra y que mostrou una pequeña evolución desde que fue observada hace dos o tres semanas. Se solicitó:Consulta general clínica programada..."} {} \N 2681 +39 2025-11-24 12:00:46.663777+00 2025-11-24 13:00:46.683053+00 f t 2025-11-24 13:00:46.660903+00 2025-11-24 13:00:46.683053+00 skipped El veterinario ya respondió la consulta. 4291d682-8df3-42b0-89ae-ea3c58c5f3db 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "13:00:00"]], "request_reason": "Cistitis , molestia al orinar, vómitos Se solicitó:Consulta clínica de urgencia..."} {} \N 2688 +40 2025-11-24 12:00:47.31884+00 2025-11-24 13:00:47.342666+00 f t 2025-11-24 13:00:47.316013+00 2025-11-24 13:00:47.342666+00 skipped El veterinario ya respondió la consulta. c7f2e1af-c247-451f-b786-486db6dc9e75 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "13:00:00"]], "request_reason": "Cistitis , molestia al orinar, vómitos Se solicitó:Consulta clínica de urgencia..."} {} \N 2689 +37 2025-11-23 18:45:57.289042+00 2025-11-23 19:45:57.308777+00 f t 2025-11-23 19:45:57.285389+00 2025-11-23 19:45:57.308777+00 failed Excepción al reenviar la consulta e1e349d8-3357-45ae-9758-1e36eabb611c 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-23T03:00:00+00:00", "17:00:00"]], "request_reason": "Mi perro de 16 años esta con diarrea desde el dia de ayer, y hace cada 3 o 4 hs aprox Se solicitó:Telemedicina..."} 'str' object has no attribute 'weekday' {} \N 2686 +43 2025-11-24 12:03:23.928671+00 2025-11-24 13:03:23.9472+00 f t 2025-11-24 13:03:23.926293+00 2025-11-24 13:03:23.9472+00 skipped El veterinario ya respondió la consulta. ab67fd1f-7b06-4f55-b032-c8717e8e097d 1 {"request_info": "", "disponibilidad": [["2025-11-25T03:00:00+00:00", "14:00:00"]], "request_reason": "Tiene un ojo cerrado, se le juntan lagañas y hace dos días que le cuesta abrirlo o no quiere hacerlo. Se solicitó:..."} {} \N 2692 +41 2025-11-24 12:00:47.949114+00 2025-11-24 13:00:47.966005+00 f t 2025-11-24 13:00:47.945434+00 2025-11-24 13:00:47.966005+00 skipped El veterinario ya respondió la consulta. 2ae3d635-b277-4c01-bd8f-df2b981309e4 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "13:00:00"]], "request_reason": "Cistitis , molestia al orinar, vómitos Se solicitó:Consulta clínica de urgencia..."} {} \N 2690 +42 2025-11-24 12:03:17.38552+00 2025-11-24 13:03:17.405475+00 f t 2025-11-24 13:03:17.383025+00 2025-11-24 13:03:17.405475+00 skipped El veterinario ya respondió la consulta. 36df2295-c49a-4060-ab17-052bac79f500 1 {"request_info": "", "disponibilidad": [["2025-11-25T03:00:00+00:00", "14:00:00"]], "request_reason": "Tiene un ojo cerrado, se le juntan lagañas y hace dos días que le cuesta abrirlo o no quiere hacerlo. Se solicitó:..."} {} \N 2691 +44 2025-11-24 12:03:27.273099+00 2025-11-24 13:03:27.291381+00 f t 2025-11-24 13:03:27.270629+00 2025-11-24 13:03:27.291381+00 skipped El veterinario ya respondió la consulta. eb88b3b2-3a66-4229-90a6-f5dda16a8b87 1 {"request_info": "", "disponibilidad": [["2025-11-25T03:00:00+00:00", "14:00:00"]], "request_reason": "Tiene un ojo cerrado, se le juntan lagañas y hace dos días que le cuesta abrirlo o no quiere hacerlo. Se solicitó:..."} {} \N 2693 +46 2025-11-24 12:27:08.783461+00 2025-11-24 13:27:08.809268+00 f t 2025-11-24 13:27:08.780815+00 2025-11-24 13:27:08.809268+00 skipped El veterinario ya respondió la consulta. d1532772-7b07-4c7b-95ea-b0f255657018 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "13:00:00"]], "request_reason": "Cistitis , molestia al orinar, vómitos Se solicitó:Consulta clínica de urgencia..."} {} \N 2695 +47 2025-11-24 12:27:13.904654+00 2025-11-24 13:27:13.922036+00 f t 2025-11-24 13:27:13.902425+00 2025-11-24 13:27:13.922036+00 skipped El veterinario ya respondió la consulta. 5e03ec82-5a57-4e2d-9e5b-3da0609cbe9f 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "13:00:00"]], "request_reason": "Cistitis , molestia al orinar, vómitos Se solicitó:Consulta clínica de urgencia..."} {} \N 2696 +109 2025-11-25 14:26:12.18362+00 2025-11-25 15:26:12.204886+00 f t 2025-11-25 15:26:12.180942+00 2025-11-25 15:26:12.204886+00 skipped El veterinario ya respondió la consulta. 06b29119-6df6-4ea2-afa2-266323484099 1 {"request_info": "", "disponibilidad": [["2025-12-06T03:00:00+00:00", "10:00:00"]], "request_reason": "Vacunacion anual y desparasitacion int+ext 4kg Se solicitó:..."} {} \N 2759 +45 2025-11-24 12:27:07.510423+00 2025-11-24 13:27:07.536204+00 f t 2025-11-24 13:27:07.507124+00 2025-11-24 13:27:07.536204+00 skipped El veterinario ya respondió la consulta. 1caa5213-d37a-4245-88c7-32756ee7927d 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "13:00:00"]], "request_reason": "Cistitis , molestia al orinar, vómitos Se solicitó:Consulta clínica de urgencia..."} {} \N 2694 +48 2025-11-24 12:27:21.046041+00 2025-11-24 13:27:21.067072+00 f t 2025-11-24 13:27:21.043556+00 2025-11-24 13:27:21.067072+00 skipped El veterinario ya respondió la consulta. aa95b3c5-d0c0-48a1-a9ff-39eb5fd1191e 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "13:00:00"]], "request_reason": "Cistitis , molestia al orinar, vómitos Se solicitó:Consulta clínica de urgencia..."} {} \N 2697 +49 2025-11-24 12:27:21.131341+00 2025-11-24 13:27:21.154745+00 f t 2025-11-24 13:27:21.128834+00 2025-11-24 13:27:21.154745+00 skipped El veterinario ya respondió la consulta. 9a202dca-4818-451b-a884-201f0e7a3a5c 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "13:00:00"]], "request_reason": "Cistitis , molestia al orinar, vómitos Se solicitó:Consulta clínica de urgencia..."} {} \N 2698 +52 2025-11-24 13:41:26.782837+00 2025-11-24 14:41:26.802503+00 f t 2025-11-24 14:41:26.780317+00 2025-11-24 14:41:26.802503+00 skipped El veterinario ya respondió la consulta. 04fab53b-1bc5-4a70-b2c1-111c0dc83f81 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "14:00:00"]], "request_reason": "Eutanasia, no come y no se levanta Se solicitó:Consulta general clínica programada, Eutanasia (20 a 30kg)..."} {} \N 2702 +55 2025-11-24 13:43:17.735911+00 2025-11-24 14:43:17.754725+00 f t 2025-11-24 14:43:17.733847+00 2025-11-24 14:43:17.754725+00 skipped El veterinario ya respondió la consulta. e840cbfe-87be-4dc9-b6e4-b637888952bf 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "14:00:00"]], "request_reason": "Eutanasia, no come y no se levanta Se solicitó:Consulta general clínica programada, Eutanasia (20 a 30kg)..."} {} \N 2705 +53 2025-11-24 13:41:30.053538+00 2025-11-24 14:41:30.072744+00 f t 2025-11-24 14:41:30.050735+00 2025-11-24 14:41:30.072744+00 skipped El veterinario ya respondió la consulta. e4fa0c9f-daea-42c0-9dd0-5892e4ccda54 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "14:00:00"]], "request_reason": "Eutanasia, no come y no se levanta Se solicitó:Consulta general clínica programada, Eutanasia (20 a 30kg)..."} {} \N 2703 +54 2025-11-24 13:41:31.367889+00 2025-11-24 14:41:31.387052+00 f t 2025-11-24 14:41:31.365352+00 2025-11-24 14:41:31.387052+00 skipped El veterinario ya respondió la consulta. 13bdf6ec-3fe5-4999-a3a6-908fc8baaec4 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "14:00:00"]], "request_reason": "Eutanasia, no come y no se levanta Se solicitó:Consulta general clínica programada, Eutanasia (20 a 30kg)..."} {} \N 2704 +59 2025-11-24 14:21:20.515045+00 2025-11-24 15:21:20.537302+00 f t 2025-11-24 15:21:20.512583+00 2025-11-24 15:21:20.537302+00 skipped El veterinario ya respondió la consulta. dc59538c-b4d2-4642-9030-70fa773c7c28 1 {"request_info": "", "disponibilidad": [["2025-11-26T03:00:00+00:00", "17:00:00"]], "request_reason": "Vacunacion anual Se solicitó:..."} {} \N 2709 +56 2025-11-24 14:18:54.739948+00 2025-11-24 15:18:54.759209+00 f t 2025-11-24 15:18:54.737045+00 2025-11-24 15:18:54.759209+00 failed Excepción al reenviar la consulta d3c357f6-2305-412d-846b-ceb80e48266a 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "16:00:00"]], "request_reason": "Ecografia abdominal Se solicitó:Ecografía..."} 'str' object has no attribute 'weekday' {} \N 2706 +57 2025-11-24 14:18:55.775323+00 2025-11-24 15:18:55.799799+00 f t 2025-11-24 15:18:55.772841+00 2025-11-24 15:18:55.799799+00 failed Excepción al reenviar la consulta 18bf4bb8-fa21-4c7d-82cc-810adeade844 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "16:00:00"]], "request_reason": "Ecografia abdominal Se solicitó:Ecografía..."} 'str' object has no attribute 'weekday' {} \N 2707 +58 2025-11-24 14:21:19.712016+00 2025-11-24 15:21:19.731158+00 f t 2025-11-24 15:21:19.709622+00 2025-11-24 15:21:19.731158+00 skipped El veterinario ya respondió la consulta. 920d8987-d0d3-4770-bea7-376acb22d79f 1 {"request_info": "", "disponibilidad": [["2025-11-26T03:00:00+00:00", "17:00:00"]], "request_reason": "Vacunacion anual Se solicitó:..."} {} \N 2708 +60 2025-11-24 14:21:26.540453+00 2025-11-24 15:21:26.560349+00 f t 2025-11-24 15:21:26.538385+00 2025-11-24 15:21:26.560349+00 skipped El veterinario ya respondió la consulta. a487b9f5-dac9-4ade-b14d-8e9ea95080df 1 {"request_info": "", "disponibilidad": [["2025-11-26T03:00:00+00:00", "17:00:00"]], "request_reason": "Vacunacion anual Se solicitó:..."} {} \N 2710 +61 2025-11-24 14:21:27.958849+00 2025-11-24 15:21:27.977702+00 f t 2025-11-24 15:21:27.956631+00 2025-11-24 15:21:27.977702+00 skipped El veterinario ya respondió la consulta. c9aa1641-1230-47f9-8bc7-1b92cae98072 1 {"request_info": "", "disponibilidad": [["2025-11-26T03:00:00+00:00", "17:00:00"]], "request_reason": "Vacunacion anual Se solicitó:..."} {} \N 2711 +62 2025-11-24 14:24:12.671923+00 2025-11-24 15:24:12.695809+00 f t 2025-11-24 15:24:12.668218+00 2025-11-24 15:24:12.695809+00 failed Excepción al reenviar la consulta e336097f-712d-4d45-813c-813bfafae2fe 1 {"request_info": "", "disponibilidad": [["2025-11-25T03:00:00+00:00", "18:00:00"]], "request_reason": "Teleconsulta post estudios Se solicitó:..."} 'str' object has no attribute 'weekday' {} \N 2712 +51 2025-11-24 13:41:25.985134+00 2025-11-24 14:41:26.006417+00 f t 2025-11-24 14:41:25.982675+00 2025-11-24 14:41:26.006417+00 skipped El veterinario ya respondió la consulta. 811cc6ad-48fe-4a00-8af8-e284c887fecf 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "14:00:00"]], "request_reason": "Eutanasia, no come y no se levanta Se solicitó:Consulta general clínica programada, Eutanasia (20 a 30kg)..."} {} \N 2701 +50 2025-11-24 13:41:25.093589+00 2025-11-24 14:41:25.111889+00 f t 2025-11-24 14:41:25.091034+00 2025-11-24 14:41:25.111889+00 skipped El veterinario ya respondió la consulta. ab8c8e84-97f2-4919-9935-e428fb2b56e0 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-24T03:00:00+00:00", "14:00:00"]], "request_reason": "Eutanasia, no come y no se levanta Se solicitó:Consulta general clínica programada, Eutanasia (20 a 30kg)..."} {} \N 2700 +64 2025-11-24 16:37:49.900312+00 2025-11-24 17:37:49.918958+00 f t 2025-11-24 17:37:49.897629+00 2025-11-24 17:37:49.918958+00 skipped El veterinario ya respondió la consulta. 3dcf390b-ed38-4966-a20c-a2f4012cf15f 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "14:00:00"]], "request_reason": "Vacunacion anual Se solicitó:Consulta general clínica programada, Vacuna Antirrábica..."} {} \N 2714 +66 2025-11-24 17:11:36.023195+00 2025-11-24 18:11:36.041465+00 f t 2025-11-24 18:11:36.020259+00 2025-11-24 18:11:36.041465+00 failed Excepción al reenviar la consulta 73d218f6-173e-4f6c-a7f8-54a66e6dc393 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "10:00:00"]], "request_reason": "Tengo un gato con FIV que vomito 3 veces la ultima semana, la ultima anoche. Dejó de comer balanceado seco, esta comiendo comida casera húmeda pero creo que esta bajando de peso y no se si está bien hidratado. \\nNo fue posible meterlo en la transportadora para llevarlo al vet,es un gato rescatado. Se solicitó:Consulta clínica de urgencia..."} 'str' object has no attribute 'weekday' {} \N 2716 +69 2025-11-24 17:11:39.796703+00 2025-11-24 18:11:39.819991+00 f t 2025-11-24 18:11:39.794082+00 2025-11-24 18:11:39.819991+00 failed Excepción al reenviar la consulta 6abd1223-4f60-4a0b-ac45-b2f26cfd72fe 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "10:00:00"]], "request_reason": "Tengo un gato con FIV que vomito 3 veces la ultima semana, la ultima anoche. Dejó de comer balanceado seco, esta comiendo comida casera húmeda pero creo que esta bajando de peso y no se si está bien hidratado. \\nNo fue posible meterlo en la transportadora para llevarlo al vet,es un gato rescatado. Se solicitó:Consulta clínica de urgencia..."} 'str' object has no attribute 'weekday' {} \N 2719 +63 2025-11-24 16:37:49.367313+00 2025-11-24 17:37:49.388225+00 f t 2025-11-24 17:37:49.364104+00 2025-11-24 17:37:49.388225+00 skipped El veterinario ya respondió la consulta. 9eff83fa-d12e-44ee-82e8-4c0f182f714f 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "14:00:00"]], "request_reason": "Vacunacion anual Se solicitó:Consulta general clínica programada, Vacuna Antirrábica..."} {} \N 2713 +65 2025-11-24 16:37:50.471725+00 2025-11-24 17:37:50.492463+00 f t 2025-11-24 17:37:50.468967+00 2025-11-24 17:37:50.492463+00 skipped El veterinario ya respondió la consulta. bb84dd56-609a-4604-850a-2731beba5d2b 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "14:00:00"]], "request_reason": "Vacunacion anual Se solicitó:Consulta general clínica programada, Vacuna Antirrábica..."} {} \N 2715 +67 2025-11-24 17:11:37.626447+00 2025-11-24 18:11:37.64344+00 f t 2025-11-24 18:11:37.623322+00 2025-11-24 18:11:37.64344+00 failed Excepción al reenviar la consulta bb9e14c9-725c-4cd8-a01c-65c6d85da287 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "10:00:00"]], "request_reason": "Tengo un gato con FIV que vomito 3 veces la ultima semana, la ultima anoche. Dejó de comer balanceado seco, esta comiendo comida casera húmeda pero creo que esta bajando de peso y no se si está bien hidratado. \\nNo fue posible meterlo en la transportadora para llevarlo al vet,es un gato rescatado. Se solicitó:Consulta clínica de urgencia..."} 'str' object has no attribute 'weekday' {} \N 2717 +68 2025-11-24 17:11:38.081989+00 2025-11-24 18:11:38.124966+00 f t 2025-11-24 18:11:38.078566+00 2025-11-24 18:11:38.124966+00 failed Excepción al reenviar la consulta 7792de1c-9358-4ca7-baac-15de16003784 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "10:00:00"]], "request_reason": "Tengo un gato con FIV que vomito 3 veces la ultima semana, la ultima anoche. Dejó de comer balanceado seco, esta comiendo comida casera húmeda pero creo que esta bajando de peso y no se si está bien hidratado. \\nNo fue posible meterlo en la transportadora para llevarlo al vet,es un gato rescatado. Se solicitó:Consulta clínica de urgencia..."} 'str' object has no attribute 'weekday' {} \N 2718 +74 2025-11-24 22:02:02.313365+00 2025-11-24 23:02:02.370541+00 f t 2025-11-24 23:02:02.30986+00 2025-11-24 23:02:02.370541+00 skipped El veterinario ya respondió la consulta. 8d109687-feba-4725-8283-6e5a1c655fce 1 {"request_info": "", "disponibilidad": [["2025-12-02T03:00:00+00:00", "15:00:00"]], "request_reason": "Vacunacion anual Se solicitó:..."} {} \N 2724 +70 2025-11-24 20:44:38.611576+00 2025-11-24 21:44:38.660758+00 f t 2025-11-24 21:44:38.608933+00 2025-11-24 21:44:38.660758+00 skipped El veterinario ya respondió la consulta. f288b754-655a-486f-877b-931303129039 1 {"request_info": "", "disponibilidad": [["2025-12-04T03:00:00+00:00", "13:00:00"]], "request_reason": "vacunacion anual Se solicitó:..."} {} \N 2720 +71 2025-11-24 20:45:48.930224+00 2025-11-24 21:45:48.96034+00 f t 2025-11-24 21:45:48.927688+00 2025-11-24 21:45:48.96034+00 skipped Otro veterinario ya aceptó la solicitud. f1693535-da50-47e0-a5bf-727fc6a4636f 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-04T03:00:00+00:00", "13:00:00"]], "request_reason": "vacunacion anual Se solicitó:Consulta general clínica programada, Vacuna Antirrábica..."} {} \N 2721 +75 2025-11-24 22:02:07.114024+00 2025-11-24 23:02:07.136549+00 f t 2025-11-24 23:02:07.110455+00 2025-11-24 23:02:07.136549+00 skipped El veterinario ya respondió la consulta. abd67057-ee9c-47ab-a569-4cc4a370032c 1 {"request_info": "", "disponibilidad": [["2025-12-02T03:00:00+00:00", "15:00:00"]], "request_reason": "Vacunacion anual Se solicitó:..."} {} \N 2725 +76 2025-11-24 22:02:08.99639+00 2025-11-24 23:02:09.022273+00 f t 2025-11-24 23:02:08.992774+00 2025-11-24 23:02:09.022273+00 skipped El veterinario ya respondió la consulta. 429fd2c8-4ee3-4ca4-b934-be7729109e47 1 {"request_info": "", "disponibilidad": [["2025-12-02T03:00:00+00:00", "15:00:00"]], "request_reason": "Vacunacion anual Se solicitó:..."} {} \N 2726 +77 2025-11-24 22:02:12.552156+00 2025-11-24 23:02:12.569968+00 f t 2025-11-24 23:02:12.548598+00 2025-11-24 23:02:12.569968+00 skipped El veterinario ya respondió la consulta. 0bfa7bd1-0c99-4c08-959f-38036549ed8d 1 {"request_info": "", "disponibilidad": [["2025-12-02T03:00:00+00:00", "15:00:00"]], "request_reason": "Vacunacion anual Se solicitó:..."} {} \N 2727 +78 2025-11-24 22:27:56.235654+00 2025-11-24 23:27:56.254319+00 f t 2025-11-24 23:27:56.232566+00 2025-11-24 23:27:56.254319+00 failed Excepción al reenviar la consulta 32143bc5-a904-46e2-9946-38946abe3603 1 {"request_info": "", "disponibilidad": [["2025-11-24T03:00:00+00:00", "20:30:00"]], "request_reason": "Vomitos, decaido, disponible hoy en lo posible, o manana Se solicitó:..."} 'str' object has no attribute 'weekday' {} \N 2728 +79 2025-11-25 12:27:21.128972+00 2025-11-25 13:27:21.173021+00 f t 2025-11-25 13:27:21.125153+00 2025-11-25 13:27:21.173021+00 skipped El veterinario ya respondió la consulta. 575f4cb7-460a-4145-88d4-90d790b580b5 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-01T03:00:00+00:00", "10:00:00"]], "request_reason": "Hola qué tal? Le toca la sextuple y la antirrabica. Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2729 +73 2025-11-24 22:02:00.220703+00 2025-11-24 23:02:00.24142+00 f t 2025-11-24 23:02:00.218128+00 2025-11-24 23:02:00.24142+00 skipped El veterinario ya respondió la consulta. 436fe290-a3cc-41df-a4fb-6c9b1ed0ecf9 1 {"request_info": "", "disponibilidad": [["2025-12-02T03:00:00+00:00", "15:00:00"]], "request_reason": "Vacunacion anual Se solicitó:..."} {} \N 2723 +72 2025-11-24 22:02:00.19502+00 2025-11-24 23:02:00.22388+00 f t 2025-11-24 23:02:00.191347+00 2025-11-24 23:02:00.22388+00 skipped El veterinario ya respondió la consulta. 8a5cde79-11b9-4122-8112-5f74015c2a60 1 {"request_info": "", "disponibilidad": [["2025-12-02T03:00:00+00:00", "15:00:00"]], "request_reason": "Vacunacion anual Se solicitó:..."} {} \N 2722 +81 2025-11-25 12:27:22.207373+00 2025-11-25 13:27:22.224316+00 f t 2025-11-25 13:27:22.204163+00 2025-11-25 13:27:22.224316+00 skipped El veterinario ya respondió la consulta. 04073d78-6022-4542-87e3-0225c27f82f1 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-01T03:00:00+00:00", "10:00:00"]], "request_reason": "Hola qué tal? Le toca la sextuple y la antirrabica. Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2731 +82 2025-11-25 12:27:26.691488+00 2025-11-25 13:27:26.718937+00 f t 2025-11-25 13:27:26.688414+00 2025-11-25 13:27:26.718937+00 skipped El veterinario ya respondió la consulta. ca265b6f-e799-424c-b8ae-25b245c28740 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-01T03:00:00+00:00", "10:00:00"]], "request_reason": "Hola qué tal? Le toca la sextuple y la antirrabica. Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2732 +83 2025-11-25 12:27:27.383484+00 2025-11-25 13:27:27.412406+00 f t 2025-11-25 13:27:27.381137+00 2025-11-25 13:27:27.412406+00 skipped El veterinario ya respondió la consulta. bcadb052-41a9-48d0-8a4f-319e7fc9ff07 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-01T03:00:00+00:00", "10:00:00"]], "request_reason": "Hola qué tal? Le toca la sextuple y la antirrabica. Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2733 +84 2025-11-25 12:27:28.02392+00 2025-11-25 13:27:28.0841+00 f t 2025-11-25 13:27:28.020623+00 2025-11-25 13:27:28.0841+00 skipped El veterinario ya respondió la consulta. 6cb4ed5d-622e-4d79-ad07-95ab6f64172a 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-01T03:00:00+00:00", "10:00:00"]], "request_reason": "Hola qué tal? Le toca la sextuple y la antirrabica. Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2734 +86 2025-11-25 12:27:43.682821+00 2025-11-25 13:27:43.705676+00 f t 2025-11-25 13:27:43.680627+00 2025-11-25 13:27:43.705676+00 skipped El veterinario ya respondió la consulta. f0ec27cd-029d-4e15-b7ad-d898b269cff6 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-01T03:00:00+00:00", "10:00:00"]], "request_reason": "Hola qué tal? Le toca la sextuple y la antirrabica. Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2736 +87 2025-11-25 12:54:33.227133+00 2025-11-25 13:54:33.301943+00 f t 2025-11-25 13:54:33.223798+00 2025-11-25 13:54:33.301943+00 skipped El veterinario ya respondió la consulta. 325990a1-99dc-4a68-883d-e08bc4b2b524 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "Ver su estado general Se solicitó:Consulta general clínica programada, Vacuna Antirrábica, Vacuna Leucemia Felina, Vacuna Triple Felina..."} {} \N 2737 +88 2025-11-25 12:54:33.758279+00 2025-11-25 13:54:33.837745+00 f t 2025-11-25 13:54:33.755781+00 2025-11-25 13:54:33.837745+00 skipped El veterinario ya respondió la consulta. d3bbcfca-ea6d-4d40-bb32-453c2a2b4b42 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "Ver su estado general Se solicitó:Consulta general clínica programada, Vacuna Antirrábica, Vacuna Leucemia Felina, Vacuna Triple Felina..."} {} \N 2738 +89 2025-11-25 12:54:34.886684+00 2025-11-25 13:54:34.931418+00 f t 2025-11-25 13:54:34.884323+00 2025-11-25 13:54:34.931418+00 skipped El veterinario ya respondió la consulta. 9e922d73-34f2-480b-aacd-678eb84cea86 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "Ver su estado general Se solicitó:Consulta general clínica programada, Vacuna Antirrábica, Vacuna Leucemia Felina, Vacuna Triple Felina..."} {} \N 2739 +90 2025-11-25 12:54:41.477153+00 2025-11-25 13:54:41.553811+00 f t 2025-11-25 13:54:41.47467+00 2025-11-25 13:54:41.553811+00 skipped El veterinario ya respondió la consulta. 2d744df1-6440-4478-bd32-3f3ca9293c4e 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "Ver su estado general Se solicitó:Consulta general clínica programada, Vacuna Antirrábica, Vacuna Leucemia Felina, Vacuna Triple Felina..."} {} \N 2740 +91 2025-11-25 12:54:42.225202+00 2025-11-25 13:54:42.277945+00 f t 2025-11-25 13:54:42.222469+00 2025-11-25 13:54:42.277945+00 skipped El veterinario ya respondió la consulta. 83b404a5-0341-4bac-9a6c-7821260d4b06 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "Ver su estado general Se solicitó:Consulta general clínica programada, Vacuna Antirrábica, Vacuna Leucemia Felina, Vacuna Triple Felina..."} {} \N 2741 +92 2025-11-25 12:54:42.907904+00 2025-11-25 13:54:42.970866+00 f t 2025-11-25 13:54:42.905592+00 2025-11-25 13:54:42.970866+00 skipped El veterinario ya respondió la consulta. 1a560ee4-aca9-45ad-878f-d85fa89c3536 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "Ver su estado general Se solicitó:Consulta general clínica programada, Vacuna Antirrábica, Vacuna Leucemia Felina, Vacuna Triple Felina..."} {} \N 2742 +94 2025-11-25 13:18:20.265278+00 2025-11-25 14:18:20.303689+00 f t 2025-11-25 14:18:20.262772+00 2025-11-25 14:18:20.303689+00 failed Excepción al reenviar la consulta eee5a13c-3e38-49fd-af3f-9a5e2f7e25ee 1 {"request_info": "Gato - Hembra - 5 años ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "19:30:00"]], "request_reason": "Desde el 30/7 tiene vomitos esporádicos. Se realizó tratamiento con antiemeticos, antiácidos.\\nTiene 3 ecografias con muestra de gastritis pero aún con vómitos.\\nEn los últimos días más seguidos Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2744 +95 2025-11-25 13:18:26.536291+00 2025-11-25 14:18:26.554139+00 f t 2025-11-25 14:18:26.532857+00 2025-11-25 14:18:26.554139+00 failed Excepción al reenviar la consulta 65adc482-df09-41ca-bce9-66a39ea79ac3 1 {"request_info": "Gato - Hembra - 5 años ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "19:30:00"]], "request_reason": "Desde el 30/7 tiene vomitos esporádicos. Se realizó tratamiento con antiemeticos, antiácidos.\\nTiene 3 ecografias con muestra de gastritis pero aún con vómitos.\\nEn los últimos días más seguidos Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2745 +80 2025-11-25 12:27:21.399056+00 2025-11-25 13:27:21.427283+00 f t 2025-11-25 13:27:21.394135+00 2025-11-25 13:27:21.427283+00 skipped El veterinario ya respondió la consulta. fb62e2cb-24c2-4d0b-b425-d8ce7c845521 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-01T03:00:00+00:00", "10:00:00"]], "request_reason": "Hola qué tal? Le toca la sextuple y la antirrabica. Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2730 +97 2025-11-25 13:19:03.969081+00 2025-11-25 14:19:03.988029+00 f t 2025-11-25 14:19:03.964093+00 2025-11-25 14:19:03.988029+00 skipped El veterinario ya respondió la consulta. 47b28664-37e6-4072-85ac-7d0b0596a779 1 {"request_info": "Gato - Macho - 3 años ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "13:00:00"]], "request_reason": "Vomito 3 veces hoy (2 fueron líquido sin pelos ni plantas? E hizo caca fuera de su arenero 3 veces Se solicitó:Consulta general clínica programada..."} {} \N 2747 +98 2025-11-25 13:19:04.626526+00 2025-11-25 14:19:04.645858+00 f t 2025-11-25 14:19:04.622511+00 2025-11-25 14:19:04.645858+00 skipped El veterinario ya respondió la consulta. 662a079f-f77b-47db-a4f3-785c41175ea0 1 {"request_info": "Gato - Macho - 3 años ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "13:00:00"]], "request_reason": "Vomito 3 veces hoy (2 fueron líquido sin pelos ni plantas? E hizo caca fuera de su arenero 3 veces Se solicitó:Consulta general clínica programada..."} {} \N 2748 +99 2025-11-25 13:19:05.257856+00 2025-11-25 14:19:05.285493+00 f t 2025-11-25 14:19:05.253761+00 2025-11-25 14:19:05.285493+00 skipped El veterinario ya respondió la consulta. 6ac8638a-9924-455e-96c2-9a7b439e110f 1 {"request_info": "Gato - Macho - 3 años ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "13:00:00"]], "request_reason": "Vomito 3 veces hoy (2 fueron líquido sin pelos ni plantas? E hizo caca fuera de su arenero 3 veces Se solicitó:Consulta general clínica programada..."} {} \N 2749 +100 2025-11-25 13:19:06.262979+00 2025-11-25 14:19:06.283464+00 f t 2025-11-25 14:19:06.259394+00 2025-11-25 14:19:06.283464+00 skipped El veterinario ya respondió la consulta. ad285a0c-a791-4f4e-8545-b345b46f9de4 1 {"request_info": "Gato - Macho - 3 años ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "13:00:00"]], "request_reason": "Vomito 3 veces hoy (2 fueron líquido sin pelos ni plantas? E hizo caca fuera de su arenero 3 veces Se solicitó:Consulta general clínica programada..."} {} \N 2750 +101 2025-11-25 13:19:22.602582+00 2025-11-25 14:19:22.620604+00 f t 2025-11-25 14:19:22.599379+00 2025-11-25 14:19:22.620604+00 skipped El veterinario ya respondió la consulta. 480cada1-4696-4e61-afaa-5f0d4cffbaf1 1 {"request_info": "Gato - Macho - 3 años ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "13:00:00"]], "request_reason": "Vomito 3 veces hoy (2 fueron líquido sin pelos ni plantas? E hizo caca fuera de su arenero 3 veces Se solicitó:Consulta general clínica programada..."} {} \N 2751 +102 2025-11-25 13:19:30.158444+00 2025-11-25 14:19:30.177503+00 f t 2025-11-25 14:19:30.153291+00 2025-11-25 14:19:30.177503+00 skipped El veterinario ya respondió la consulta. 6b5eca43-7f25-407e-baef-7050042b7711 1 {"request_info": "Gato - Macho - 3 años ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "13:00:00"]], "request_reason": "Vomito 3 veces hoy (2 fueron líquido sin pelos ni plantas? E hizo caca fuera de su arenero 3 veces Se solicitó:Consulta general clínica programada..."} {} \N 2752 +103 2025-11-25 13:19:30.698127+00 2025-11-25 14:19:30.720221+00 f t 2025-11-25 14:19:30.695133+00 2025-11-25 14:19:30.720221+00 skipped El veterinario ya respondió la consulta. 39a9b9ee-dcb6-4d2e-af00-0abec4fcba01 1 {"request_info": "Gato - Macho - 3 años ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "13:00:00"]], "request_reason": "Vomito 3 veces hoy (2 fueron líquido sin pelos ni plantas? E hizo caca fuera de su arenero 3 veces Se solicitó:Consulta general clínica programada..."} {} \N 2753 +85 2025-11-25 12:27:36.752218+00 2025-11-25 13:27:36.800955+00 f t 2025-11-25 13:27:36.750024+00 2025-11-25 13:27:36.800955+00 skipped El veterinario ya respondió la consulta. ef33274c-ae2c-44e4-930a-943fd587e4b5 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-01T03:00:00+00:00", "10:00:00"]], "request_reason": "Hola qué tal? Le toca la sextuple y la antirrabica. Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2735 +105 2025-11-25 14:09:56.772405+00 2025-11-25 15:09:56.797007+00 f t 2025-11-25 15:09:56.769181+00 2025-11-25 15:09:56.797007+00 skipped El veterinario ya respondió la consulta. c69e90ac-114a-498b-80f1-77938574ab80 1 {"request_info": "Perro - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "17:00:00"]], "request_reason": "estaba indispuesta, y hace unos tres dias esta con mucha perdida, pero ayer no quiso comer, y eso nos esta preocupando, si toma mucha agua, la tocamos y no se queja de ningun dolor Se solicitó:Consulta clínica de urgencia..."} {} \N 2755 +106 2025-11-25 14:09:57.847771+00 2025-11-25 15:09:57.871613+00 f t 2025-11-25 15:09:57.845401+00 2025-11-25 15:09:57.871613+00 skipped El veterinario ya respondió la consulta. bb92eaa0-0a04-4fff-b3f4-03969131e025 1 {"request_info": "Perro - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "17:00:00"]], "request_reason": "estaba indispuesta, y hace unos tres dias esta con mucha perdida, pero ayer no quiso comer, y eso nos esta preocupando, si toma mucha agua, la tocamos y no se queja de ningun dolor Se solicitó:Consulta clínica de urgencia..."} {} \N 2756 +107 2025-11-25 14:11:03.226332+00 2025-11-25 15:11:03.249077+00 f t 2025-11-25 15:11:03.219094+00 2025-11-25 15:11:03.249077+00 skipped El veterinario ya respondió la consulta. b0d05a86-be5e-4e28-9a94-b00c2ca45640 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-04T03:00:00+00:00", "10:00:00"]], "request_reason": "extraccion de sangre perfil 7 Se solicitó:Consulta general clínica programada..."} {} \N 2757 +93 2025-11-25 13:18:18.701406+00 2025-11-25 14:18:18.754352+00 f t 2025-11-25 14:18:18.697277+00 2025-11-25 14:18:18.754352+00 failed Excepción al reenviar la consulta bd9c1451-7679-49b2-b330-cf71db704002 1 {"request_info": "Gato - Hembra - 5 años ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "19:30:00"]], "request_reason": "Desde el 30/7 tiene vomitos esporádicos. Se realizó tratamiento con antiemeticos, antiácidos.\\nTiene 3 ecografias con muestra de gastritis pero aún con vómitos.\\nEn los últimos días más seguidos Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2743 +108 2025-11-25 14:26:11.32453+00 2025-11-25 15:26:11.345372+00 f t 2025-11-25 15:26:11.321498+00 2025-11-25 15:26:11.345372+00 skipped El veterinario ya respondió la consulta. dc0eb16d-aa79-4fef-864d-7d0444c1faf3 1 {"request_info": "", "disponibilidad": [["2025-12-06T03:00:00+00:00", "10:00:00"]], "request_reason": "Vacunacion anual y desparasitacion int+ext 4kg Se solicitó:..."} {} \N 2758 +96 2025-11-25 13:18:27.975358+00 2025-11-25 14:18:27.994469+00 f t 2025-11-25 14:18:27.972777+00 2025-11-25 14:18:27.994469+00 failed Excepción al reenviar la consulta 00a0a2bb-5554-4009-a5de-5a5965d4192c 1 {"request_info": "Gato - Hembra - 5 años ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "19:30:00"]], "request_reason": "Desde el 30/7 tiene vomitos esporádicos. Se realizó tratamiento con antiemeticos, antiácidos.\\nTiene 3 ecografias con muestra de gastritis pero aún con vómitos.\\nEn los últimos días más seguidos Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2746 +119 2025-11-25 15:37:52.332738+00 2025-11-25 16:37:52.352017+00 f t 2025-11-25 16:37:52.329639+00 2025-11-25 16:37:52.352017+00 failed Excepción al reenviar la consulta bfdc687a-c246-43b7-9ace-7583c7975a76 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-27T03:00:00+00:00", "17:30:00"]], "request_reason": "inyeccion sc vit b12, tiene las jeringas dosificadas ya Se solicitó:Visita de Auxiliar Veterinario..."} 'str' object has no attribute 'weekday' {} \N 2769 +112 2025-11-25 14:54:06.385457+00 2025-11-25 15:54:06.408196+00 f t 2025-11-25 15:54:06.381817+00 2025-11-25 15:54:06.408196+00 skipped Otro veterinario ya aceptó la solicitud. 50a31253-211d-4a9e-97ec-a19b034c577d 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "18:00:00"]], "request_reason": "desde ayer a la tarde está con problemas de constipacion\\nY está con vómitos\\nSolo toma agua y como ya le dio una vez le di por recomendación de otra colega Lactulon eso la tranquilizó\\nPero recién le di y lo vomitó Se solicitó:Consulta clínica de urgencia..."} {} \N 2762 +115 2025-11-25 14:54:08.994838+00 2025-11-25 15:54:09.016998+00 f t 2025-11-25 15:54:08.992319+00 2025-11-25 15:54:09.016998+00 skipped Otro veterinario ya aceptó la solicitud. c252c1b1-cda8-48e8-bb06-987c9ce09cd3 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "18:00:00"]], "request_reason": "desde ayer a la tarde está con problemas de constipacion\\nY está con vómitos\\nSolo toma agua y como ya le dio una vez le di por recomendación de otra colega Lactulon eso la tranquilizó\\nPero recién le di y lo vomitó Se solicitó:Consulta clínica de urgencia..."} {} \N 2765 +116 2025-11-25 14:54:14.898137+00 2025-11-25 15:54:14.930523+00 f t 2025-11-25 15:54:14.89559+00 2025-11-25 15:54:14.930523+00 skipped Otro veterinario ya aceptó la solicitud. 6752e7a5-5e99-41e8-804b-7ace90b6122e 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "18:00:00"]], "request_reason": "desde ayer a la tarde está con problemas de constipacion\\nY está con vómitos\\nSolo toma agua y como ya le dio una vez le di por recomendación de otra colega Lactulon eso la tranquilizó\\nPero recién le di y lo vomitó Se solicitó:Consulta clínica de urgencia..."} {} \N 2766 +117 2025-11-25 14:54:15.657059+00 2025-11-25 15:54:15.675807+00 f t 2025-11-25 15:54:15.654732+00 2025-11-25 15:54:15.675807+00 failed Excepción al reenviar la consulta 1591bcc7-de13-4fc2-a6ac-3bd71f936ac7 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "18:00:00"]], "request_reason": "desde ayer a la tarde está con problemas de constipacion\\nY está con vómitos\\nSolo toma agua y como ya le dio una vez le di por recomendación de otra colega Lactulon eso la tranquilizó\\nPero recién le di y lo vomitó Se solicitó:Consulta clínica de urgencia..."} 'str' object has no attribute 'weekday' {} \N 2767 +118 2025-11-25 14:54:23.152399+00 2025-11-25 15:54:23.172614+00 f t 2025-11-25 15:54:23.149285+00 2025-11-25 15:54:23.172614+00 failed Excepción al reenviar la consulta 5696d049-f50c-4353-a2d2-436ad31515df 1 {"request_info": "", "disponibilidad": [["2025-12-03T03:00:00+00:00", "10:00:00"]], "request_reason": "consulta general y extraccion de sangre para control Se solicitó:..."} 'str' object has no attribute 'weekday' {} \N 2768 +104 2025-11-25 14:09:56.136101+00 2025-11-25 15:09:56.152525+00 f t 2025-11-25 15:09:56.13024+00 2025-11-25 15:09:56.152525+00 skipped El veterinario ya respondió la consulta. c50a55bc-4fa2-4986-a87a-3106d9fc2e25 1 {"request_info": "Perro - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "17:00:00"]], "request_reason": "estaba indispuesta, y hace unos tres dias esta con mucha perdida, pero ayer no quiso comer, y eso nos esta preocupando, si toma mucha agua, la tocamos y no se queja de ningun dolor Se solicitó:Consulta clínica de urgencia..."} {} \N 2754 +120 2025-11-25 15:37:52.900551+00 2025-11-25 16:37:52.921757+00 f t 2025-11-25 16:37:52.89756+00 2025-11-25 16:37:52.921757+00 failed Excepción al reenviar la consulta e91ab11c-d331-4995-804b-7041989d03b2 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-27T03:00:00+00:00", "17:30:00"]], "request_reason": "inyeccion sc vit b12, tiene las jeringas dosificadas ya Se solicitó:Visita de Auxiliar Veterinario..."} 'str' object has no attribute 'weekday' {} \N 2770 +110 2025-11-25 14:26:13.281936+00 2025-11-25 15:26:13.30217+00 f t 2025-11-25 15:26:13.279301+00 2025-11-25 15:26:13.30217+00 skipped El veterinario ya respondió la consulta. a0369be3-fa60-4021-9925-106cf8b19d08 1 {"request_info": "", "disponibilidad": [["2025-12-06T03:00:00+00:00", "10:00:00"]], "request_reason": "Vacunacion anual y desparasitacion int+ext 4kg Se solicitó:..."} {} \N 2760 +114 2025-11-25 14:54:08.087455+00 2025-11-25 15:54:08.11282+00 f t 2025-11-25 15:54:08.084207+00 2025-11-25 15:54:08.11282+00 skipped Otro veterinario ya aceptó la solicitud. 8f33f5b8-40fa-4044-80b9-1e8f731ae5c3 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "18:00:00"]], "request_reason": "desde ayer a la tarde está con problemas de constipacion\\nY está con vómitos\\nSolo toma agua y como ya le dio una vez le di por recomendación de otra colega Lactulon eso la tranquilizó\\nPero recién le di y lo vomitó Se solicitó:Consulta clínica de urgencia..."} {} \N 2764 +111 2025-11-25 14:26:16.996809+00 2025-11-25 15:26:17.021143+00 f t 2025-11-25 15:26:16.994693+00 2025-11-25 15:26:17.021143+00 skipped El veterinario ya respondió la consulta. 47104bf9-3a92-449e-a813-c9a87d5f6123 1 {"request_info": "", "disponibilidad": [["2025-12-06T03:00:00+00:00", "10:00:00"]], "request_reason": "Vacunacion anual y desparasitacion int+ext 4kg Se solicitó:..."} {} \N 2761 +113 2025-11-25 14:54:06.906603+00 2025-11-25 15:54:06.925449+00 f t 2025-11-25 15:54:06.903986+00 2025-11-25 15:54:06.925449+00 skipped Otro veterinario ya aceptó la solicitud. 06b25044-9f95-4be4-961e-62a265659d0e 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "18:00:00"]], "request_reason": "desde ayer a la tarde está con problemas de constipacion\\nY está con vómitos\\nSolo toma agua y como ya le dio una vez le di por recomendación de otra colega Lactulon eso la tranquilizó\\nPero recién le di y lo vomitó Se solicitó:Consulta clínica de urgencia..."} {} \N 2763 +122 2025-11-25 16:23:57.670031+00 2025-11-25 17:23:57.72213+00 f t 2025-11-25 17:23:57.667788+00 2025-11-25 17:23:57.72213+00 skipped El veterinario ya respondió la consulta. deef9094-dd19-43d5-9ecc-bd33d796e886 1 {"request_info": "Perro - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "19:30:00"]], "request_reason": "no puede levantarse esta hechas y le cuesta caminar para orinar y comer. Salio que tiene infeccion urinaria esta con tratamiento amoxicilina clavulanico 500 mg 1 cada 12 hs por 12 dias Se solicitó:Consulta clínica de urgencia..."} {} \N 2772 +123 2025-11-25 16:23:58.796473+00 2025-11-25 17:23:58.874282+00 f t 2025-11-25 17:23:58.793673+00 2025-11-25 17:23:58.874282+00 skipped El veterinario ya respondió la consulta. aaa30962-940c-4338-9034-068da0bf4fd0 1 {"request_info": "Perro - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "19:30:00"]], "request_reason": "no puede levantarse esta hechas y le cuesta caminar para orinar y comer. Salio que tiene infeccion urinaria esta con tratamiento amoxicilina clavulanico 500 mg 1 cada 12 hs por 12 dias Se solicitó:Consulta clínica de urgencia..."} {} \N 2773 +124 2025-11-25 16:24:03.023867+00 2025-11-25 17:24:03.106107+00 f t 2025-11-25 17:24:03.020429+00 2025-11-25 17:24:03.106107+00 skipped El veterinario ya respondió la consulta. dc4c5683-fb76-4874-89a5-80b95e6ecbbf 1 {"request_info": "Perro - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "19:30:00"]], "request_reason": "no puede levantarse esta hechas y le cuesta caminar para orinar y comer. Salio que tiene infeccion urinaria esta con tratamiento amoxicilina clavulanico 500 mg 1 cada 12 hs por 12 dias Se solicitó:Consulta clínica de urgencia..."} {} \N 2774 +125 2025-11-25 16:35:06.246906+00 2025-11-25 17:35:06.343845+00 f t 2025-11-25 17:35:06.242707+00 2025-11-25 17:35:06.343845+00 skipped El veterinario ya respondió la consulta. 04a0c1d2-5e20-4e91-8d3a-3204821199ec 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "vacunacion anual para los dos Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2775 +136 2025-11-25 17:35:41.472777+00 2025-11-25 18:35:41.552385+00 f t 2025-11-25 18:35:41.469587+00 2025-11-25 18:35:41.552385+00 failed Excepción al reenviar la consulta 337010a9-02da-4ef8-95e7-6e6fd073f6e9 1 {"request_info": "Perro - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "16:00:00"]], "request_reason": "Esta muy debil, hace dias no come, no toma, casi no camina, pasa por mucho dolor, no tiene fiebre. Se solicitó:Ecografía..."} 'str' object has no attribute 'weekday' {} \N 2787 +128 2025-11-25 16:35:09.470815+00 2025-11-25 17:35:09.520691+00 f t 2025-11-25 17:35:09.466835+00 2025-11-25 17:35:09.520691+00 skipped El veterinario ya respondió la consulta. 66e46c7f-d032-4fc9-97d1-0c177a3824a5 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "vacunacion anual para los dos Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2778 +129 2025-11-25 16:35:14.943793+00 2025-11-25 17:35:14.982325+00 f t 2025-11-25 17:35:14.940273+00 2025-11-25 17:35:14.982325+00 skipped El veterinario ya respondió la consulta. 90a62873-1994-4544-88c0-49e4f6ec1e3f 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "vacunacion anual para los dos Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2779 +130 2025-11-25 16:35:16.650506+00 2025-11-25 17:35:16.693014+00 f t 2025-11-25 17:35:16.647441+00 2025-11-25 17:35:16.693014+00 skipped El veterinario ya respondió la consulta. 3b5139b3-ca9d-4151-af6d-a023460f38cf 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "vacunacion anual para los dos Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2780 +131 2025-11-25 16:35:16.709966+00 2025-11-25 17:35:16.728593+00 f t 2025-11-25 17:35:16.707425+00 2025-11-25 17:35:16.728593+00 skipped El veterinario ya respondió la consulta. aae94983-27b0-4058-9d36-94fea2075464 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "vacunacion anual para los dos Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2781 +132 2025-11-25 16:35:22.224011+00 2025-11-25 17:35:22.241928+00 f t 2025-11-25 17:35:22.221541+00 2025-11-25 17:35:22.241928+00 skipped El veterinario ya respondió la consulta. 9c7a7a8f-cead-4b05-a3dc-9c50994f8262 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "vacunacion anual para los dos Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2782 +134 2025-11-25 16:48:15.431983+00 2025-11-25 17:48:15.484374+00 f t 2025-11-25 17:48:15.429369+00 2025-11-25 17:48:15.484374+00 skipped El veterinario ya respondió la consulta. a52d3549-b008-4991-87ea-f7ff547edff3 1 {"request_info": "Perro - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "15:00:00"]], "request_reason": "13 años no come no hace pis ahora hizo 24hr. Letargo no quiere caminar. Se solicitó:Consulta clínica de urgencia..."} {} \N 2785 +135 2025-11-25 16:48:15.589293+00 2025-11-25 17:48:15.609634+00 f t 2025-11-25 17:48:15.587019+00 2025-11-25 17:48:15.609634+00 skipped El veterinario ya respondió la consulta. 5c577b73-08f7-464c-9bf4-ed5594443369 1 {"request_info": "Perro - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "15:00:00"]], "request_reason": "13 años no come no hace pis ahora hizo 24hr. Letargo no quiere caminar. Se solicitó:Consulta clínica de urgencia..."} {} \N 2786 +121 2025-11-25 16:23:57.044549+00 2025-11-25 17:23:57.112904+00 f t 2025-11-25 17:23:57.041896+00 2025-11-25 17:23:57.112904+00 skipped El veterinario ya respondió la consulta. 16f7a23e-379b-45b6-8d95-4e958f5f5a01 1 {"request_info": "Perro - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "19:30:00"]], "request_reason": "no puede levantarse esta hechas y le cuesta caminar para orinar y comer. Salio que tiene infeccion urinaria esta con tratamiento amoxicilina clavulanico 500 mg 1 cada 12 hs por 12 dias Se solicitó:Consulta clínica de urgencia..."} {} \N 2771 +127 2025-11-25 16:35:08.153562+00 2025-11-25 17:35:08.190435+00 f t 2025-11-25 17:35:08.147195+00 2025-11-25 17:35:08.190435+00 skipped El veterinario ya respondió la consulta. b33afb4d-b37e-402f-b6cd-f4e4e31f3142 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "vacunacion anual para los dos Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2777 +126 2025-11-25 16:35:06.690505+00 2025-11-25 17:35:06.742655+00 f t 2025-11-25 17:35:06.687123+00 2025-11-25 17:35:06.742655+00 skipped El veterinario ya respondió la consulta. ecb1f4b0-cb18-4c46-be7d-3ee66ccd9c4e 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-02T03:00:00+00:00", "17:00:00"]], "request_reason": "vacunacion anual para los dos Se solicitó:Consulta general clínica programada, Vacuna Séxtuple..."} {} \N 2776 +137 2025-11-25 17:35:41.782097+00 2025-11-25 18:35:41.857075+00 f t 2025-11-25 18:35:41.778779+00 2025-11-25 18:35:41.857075+00 failed Excepción al reenviar la consulta 2cf399d3-ef16-459f-adbb-766545d61b6c 1 {"request_info": "Perro - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "16:00:00"]], "request_reason": "Esta muy debil, hace dias no come, no toma, casi no camina, pasa por mucho dolor, no tiene fiebre. Se solicitó:Ecografía..."} 'str' object has no attribute 'weekday' {} \N 2788 +133 2025-11-25 16:48:13.757205+00 2025-11-25 17:48:13.829597+00 f t 2025-11-25 17:48:13.754521+00 2025-11-25 17:48:13.829597+00 skipped El veterinario ya respondió la consulta. f0f4de61-296c-4ce4-b156-ca70a31517b2 1 {"request_info": "Perro - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "15:00:00"]], "request_reason": "13 años no come no hace pis ahora hizo 24hr. Letargo no quiere caminar. Se solicitó:Consulta clínica de urgencia..."} {} \N 2784 +140 2025-11-25 20:16:22.307004+00 2025-11-25 21:16:22.324869+00 f t 2025-11-25 21:16:22.304662+00 2025-11-25 21:16:22.324869+00 skipped El veterinario ya respondió la consulta. 23301b61-33ed-4a3a-a216-8d24cd087281 1 {"request_info": "", "disponibilidad": [["2025-11-25T03:00:00+00:00", "19:00:00"]], "request_reason": "Control post qirurgico, revision general Se solicitó:..."} {} \N 2793 +138 2025-11-25 19:05:45.344429+00 2025-11-25 20:05:45.365024+00 f t 2025-11-25 20:05:45.342062+00 2025-11-25 20:05:45.365024+00 skipped El veterinario ya respondió la consulta. 17286fb6-fb92-4f21-bbdc-9ed67708ef69 1 {"request_info": "Gato - Hembra - 5 años ", "disponibilidad": [["2025-11-26T03:00:00+00:00", "09:00:00"]], "request_reason": "extraccion de sangre perfil general sin orina, pcr vif/vileg y pcr mycoplasma Se solicitó:Visita de Auxiliar Veterinario..."} {} \N 2790 +141 2025-11-25 20:16:22.967241+00 2025-11-25 21:16:22.985076+00 f t 2025-11-25 21:16:22.964822+00 2025-11-25 21:16:22.985076+00 skipped El veterinario ya respondió la consulta. ca0e4c22-c443-436a-bece-91ee6477b367 1 {"request_info": "", "disponibilidad": [["2025-11-25T03:00:00+00:00", "19:00:00"]], "request_reason": "Control post qirurgico, revision general Se solicitó:..."} {} \N 2794 +139 2025-11-25 19:06:24.344055+00 2025-11-25 20:06:24.36623+00 f t 2025-11-25 20:06:24.341222+00 2025-11-25 20:06:24.36623+00 skipped El veterinario ya respondió la consulta. 00e50e1c-0d1f-48f9-9005-6d8cc9fa5c97 1 {"request_info": "Gato - Hembra - 5 años ", "disponibilidad": [["2025-11-26T03:00:00+00:00", "09:00:00"]], "request_reason": "extraccion de sangre perfil general sin orina, pcr vif/vileg y pcr mycoplasma Se solicitó:Consulta general clínica programada..."} {} \N 2791 +147 2025-11-25 23:24:24.9005+00 2025-11-26 00:24:24.9201+00 f t 2025-11-26 00:24:24.897863+00 2025-11-26 00:24:24.9201+00 failed Excepción al reenviar la consulta e6030ad1-6f20-4ec7-9870-0b2557f2eefa 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-27T03:00:00+00:00", "18:00:00"]], "request_reason": "Hola,\\n\\nSiento que mi gata esta rara, no come mucho como lo hacia habitualmente y se ve como con poca energia. Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2803 +148 2025-11-25 23:24:30.935134+00 2025-11-26 00:24:30.957699+00 f t 2025-11-26 00:24:30.932539+00 2025-11-26 00:24:30.957699+00 failed Excepción al reenviar la consulta c38263ab-b667-4b44-96ff-b287aa1133ae 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-27T03:00:00+00:00", "18:00:00"]], "request_reason": "Hola,\\n\\nSiento que mi gata esta rara, no come mucho como lo hacia habitualmente y se ve como con poca energia. Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2804 +149 2025-11-25 23:24:35.672302+00 2025-11-26 00:24:35.690387+00 f t 2025-11-26 00:24:35.669328+00 2025-11-26 00:24:35.690387+00 failed Excepción al reenviar la consulta 70a2ff4c-f176-4ee6-b673-b0f1a7fc3889 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-27T03:00:00+00:00", "18:00:00"]], "request_reason": "Hola,\\n\\nSiento que mi gata esta rara, no come mucho como lo hacia habitualmente y se ve como con poca energia. Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2805 +150 2025-11-25 23:30:25.947014+00 2025-11-26 00:30:25.964414+00 f t 2025-11-26 00:30:25.944692+00 2025-11-26 00:30:25.964414+00 skipped El veterinario ya respondió la consulta. e93f9828-7f0a-4da7-b71c-ec5254667cd0 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "19:30:00"]], "request_reason": "Esta dolorido y sangra de algun lado que no logro ver Se solicitó:Consulta clínica de urgencia..."} {} \N 2806 +142 2025-11-25 20:50:55.2743+00 2025-11-25 21:50:55.294257+00 f t 2025-11-25 21:50:55.271635+00 2025-11-25 21:50:55.294257+00 failed Excepción al reenviar la consulta e98d3467-75a4-402e-ba81-775febf66ea2 1 {"request_info": "", "disponibilidad": [["2025-11-26T03:00:00+00:00", "09:00:00"]], "request_reason": "Extraccion para perfil 7 Se solicitó:..."} 'str' object has no attribute 'weekday' {} \N 2795 +143 2025-11-25 20:51:14.36921+00 2025-11-25 21:51:14.38452+00 f t 2025-11-25 21:51:14.363519+00 2025-11-25 21:51:14.38452+00 failed Excepción al reenviar la consulta 19d2d0f8-73a7-413b-b2f0-e1ed63378234 1 {"request_info": "", "disponibilidad": [["2025-11-26T03:00:00+00:00", "13:00:00"]], "request_reason": "Extraccion para perfil 7 Se solicitó:..."} 'str' object has no attribute 'weekday' {} \N 2796 +151 2025-11-25 23:30:42.763429+00 2025-11-26 00:30:42.781055+00 f t 2025-11-26 00:30:42.760494+00 2025-11-26 00:30:42.781055+00 skipped El veterinario ya respondió la consulta. 4114c894-d112-46ed-b0d4-77be2f8a89fe 1 {"request_info": "Gato - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-11-25T03:00:00+00:00", "14:30:00"]], "request_reason": "Esta dolorido y sangra de algun lado que no logro ver Se solicitó:Consulta clínica de urgencia..."} {} \N 2807 +144 2025-11-25 20:53:06.282691+00 2025-11-25 21:53:06.308779+00 f t 2025-11-25 21:53:06.280004+00 2025-11-25 21:53:06.308779+00 failed Excepción al reenviar la consulta b415090d-1422-4c54-8256-bdd8fb781d52 1 {"request_info": "", "disponibilidad": [["2025-11-26T03:00:00+00:00", "13:00:00"]], "request_reason": "Extraccion para perfil 7 Se solicitó:..."} 'str' object has no attribute 'weekday' {} \N 2797 +145 2025-11-25 20:53:16.654709+00 2025-11-25 21:53:16.673822+00 f t 2025-11-25 21:53:16.652547+00 2025-11-25 21:53:16.673822+00 failed Excepción al reenviar la consulta 4204e419-afdf-4c03-968b-1882ed3c53fa 1 {"request_info": "", "disponibilidad": [["2025-11-26T03:00:00+00:00", "13:00:00"]], "request_reason": "Extraccion para perfil 7 Se solicitó:..."} 'str' object has no attribute 'weekday' {} \N 2798 +152 2025-11-26 00:09:55.176766+00 2025-11-26 01:09:55.200435+00 f t 2025-11-26 01:09:55.173939+00 2025-11-26 01:09:55.200435+00 failed Excepción al reenviar la consulta c6873295-a7c4-42dd-93a9-843b380d1f45 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-03T03:00:00+00:00", "16:00:00"]], "request_reason": "Esta recién castrado y creo q adolorido. Es rescatado. Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2808 +154 2025-11-26 00:09:57.175765+00 2025-11-26 01:09:57.194153+00 f t 2025-11-26 01:09:57.173091+00 2025-11-26 01:09:57.194153+00 skipped El veterinario ya respondió la consulta. c005e113-0cdf-46d9-b573-3d7ad51238b5 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-03T03:00:00+00:00", "16:00:00"]], "request_reason": "Esta recién castrado y creo q adolorido. Es rescatado. Se solicitó:Consulta general clínica programada..."} {} \N 2810 +146 2025-11-25 23:24:18.530783+00 2025-11-26 00:24:18.547026+00 f t 2025-11-26 00:24:18.52729+00 2025-11-26 00:24:18.547026+00 failed Excepción al reenviar la consulta fa465a9a-5a0b-4d9e-90cf-3dcb7c513f81 1 {"request_info": "Gato - Hembra - No se pudo calcular la edad ", "disponibilidad": [["2025-11-27T03:00:00+00:00", "18:00:00"]], "request_reason": "Hola,\\n\\nSiento que mi gata esta rara, no come mucho como lo hacia habitualmente y se ve como con poca energia. Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2802 +153 2025-11-26 00:09:56.714422+00 2025-11-26 01:09:56.732582+00 f t 2025-11-26 01:09:56.711546+00 2025-11-26 01:09:56.732582+00 failed Excepción al reenviar la consulta 93ca5d7d-950f-4b51-9d77-b676fd77f742 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-03T03:00:00+00:00", "16:00:00"]], "request_reason": "Esta recién castrado y creo q adolorido. Es rescatado. Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2809 +155 2025-11-26 00:10:03.448091+00 2025-11-26 01:10:03.5079+00 f t 2025-11-26 01:10:03.438652+00 2025-11-26 01:10:03.5079+00 failed Excepción al reenviar la consulta 5dab6782-f371-489a-8c22-39fde1cb6921 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-03T03:00:00+00:00", "16:00:00"]], "request_reason": "Esta recién castrado y creo q adolorido. Es rescatado. Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2811 +156 2025-11-26 00:10:04.716772+00 2025-11-26 01:10:04.751234+00 f t 2025-11-26 01:10:04.712342+00 2025-11-26 01:10:04.751234+00 failed Excepción al reenviar la consulta 3fe7cd52-d5c1-4f67-9b34-b6d19e8cfa0d 1 {"request_info": "Perro - Macho - No se pudo calcular la edad ", "disponibilidad": [["2025-12-03T03:00:00+00:00", "16:00:00"]], "request_reason": "Esta recién castrado y creo q adolorido. Es rescatado. Se solicitó:Consulta general clínica programada..."} 'str' object has no attribute 'weekday' {} \N 2812 +\. + + +-- +-- Data for Name: solicitudes_servicerequest; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.solicitudes_servicerequest (id, created_at, updated_at, deleted, active, days_requested, state, cart_id, petowner_id, user_id, reason, attended_by_id, date_coordinated, hour_coordinated, pay_number, veterinarian_id, campaign_id) FROM stdin; +213 2025-07-03 20:39:47.132296+00 2025-07-03 20:39:47.132304+00 f t [["2025-07-03", "Noche"], ["2025-07-04", "Mañana"], ["2025-07-04", "Tarde"]] rejected 2945 3546 \N Tercer aplicación de antibiotico \N \N \N \N \N \N +28 2025-05-16 18:50:38.720363+00 2025-05-16 18:50:38.720371+00 t t [["2025-05-16", "Noche"], ["2025-05-19", "Mañana"], ["2025-05-19", "Tarde"]] in_progress_vet 355 1147 \N PRUEBA \N \N \N \N \N \N +25 2025-05-15 16:43:05.173609+00 2025-05-15 16:43:05.173621+00 t t [["2025-05-23", "Mañana"], ["2025-05-23", "Tarde"], ["2025-05-23", "Mañana"]] rejected 308 1094 \N test \N \N \N \N \N \N +620 2025-09-21 21:40:24.238004+00 2025-09-21 21:40:24.238013+00 f t [["2025-09-21", "Noche"], ["2025-09-21", "Tarde"], ["2025-09-21", "Mañana"]] in_progress_vet 7962 9074 \N Empezo a vomitar y esta muy mal 1583 \N \N \N \N \N +9 2025-05-04 16:01:48.745928+00 2025-05-04 16:01:48.745939+00 f t [["2025-05-04", "Mañana"], ["2025-05-04", "Tarde"], ["2025-05-04", "Noche"]] rejected 60 791 \N No come ni toma agua desde ayer \N \N \N \N \N \N +202 2025-07-01 14:09:03.839386+00 2025-07-01 14:09:03.839399+00 f t [] rejected 2806 3719 \N Sin síntomas \N \N \N \N \N \N +1 2025-04-15 22:23:17.690468+00 2025-04-15 22:23:17.690475+00 t t [["2025-04-15", "Mañana"], ["2025-04-16", "Tarde"], ["2025-04-17", "Noche"]] in_progress_vet 1 671 \N \N \N \N \N \N \N \N +2 2025-04-16 21:09:46.311765+00 2025-04-16 21:09:46.311773+00 t t [["2025-04-24", "Mañana"], ["2025-04-23", "Mañana"], ["2025-04-22", "Mañana"]] in_progress_vet 10 683 \N \N \N \N \N \N \N \N +3 2025-04-16 21:33:08.807165+00 2025-04-16 21:33:08.807175+00 t t [["2025-04-18", "Tarde"], ["2025-04-21", "Tarde"], ["2025-04-18", "Tarde"]] in_progress_vet 11 684 \N \N \N \N \N \N \N \N +649 2025-09-23 16:06:39.125737+00 2025-09-23 16:06:39.125747+00 f t [["2025-09-24", "morning"], ["2025-09-24", "afternoon"], ["2025-09-24", "evening"]] Confirmado 8081 4384 1208 \N 1208 2025-09-24 03:00:00+00 19:00:00 R7ZG0QNDJDLJRVDENEXYPO 80 \N +7 2025-04-29 15:15:52.402017+00 2025-04-29 15:15:52.402025+00 t t [["2025-05-03", "Tarde"], ["2025-05-08", "Mañana"], ["2025-05-09", "Noche"]] rejected 36 754 \N Linfoma tipo B, tengo estudios oncologicos \N \N \N \N \N \N +10 2025-05-06 08:02:07.99977+00 2025-05-06 08:02:07.999781+00 f t [["2025-05-06", "Mañana"], ["2025-05-06", "Tarde"], ["2025-05-06", "Noche"]] rejected 84 821 \N Cancer de hígado etapa terminal. Está con mucho dolor y llora mucho \N \N \N \N \N \N +5 2025-04-25 02:27:40.66932+00 2025-04-25 02:27:40.669333+00 f t [["2025-04-24", "Noche"]] rejected 25 728 \N Míos Gabriela Estefanía isla policía de San Pedro y Zárate \N \N \N \N \N \N +652 2025-09-23 19:50:29.817748+00 2025-09-23 19:50:29.817759+00 t t [["2025-09-26", "morning"], ["2025-09-26", "afternoon"], ["2025-09-26", "evening"]] vet_asked 8098 9071 1208 \N \N 2025-09-26 03:00:00+00 09:30:00 \N 1 \N +6 2025-04-26 18:08:00.917397+00 2025-04-26 18:08:00.917406+00 f t [["2025-04-26", "Tarde"], ["2025-04-26", "Tarde"], ["2025-04-26", "Tarde"]] rejected 33 741 \N Mi gata tiene antecedente de tumor de pulmón \nQuiste o tumor en hígado bazo un poco agrandado.\nNoto inflamado su abdomen hace pis fuera de sus piedras se aísla no duenre \N \N \N \N \N \N +8 2025-05-03 23:56:02.525692+00 2025-05-03 23:56:02.525701+00 f t [["2025-05-09", "Tarde"], ["2025-05-08", "Tarde"], ["2025-05-10", "Tarde"]] rejected 58 789 \N Ninguno \N 2025-05-08 03:00:00+00 15:00:00 \N 80 \N +13 2025-05-12 12:31:51.318514+00 2025-05-12 12:31:51.318526+00 f t [["2025-05-12", "Mañana"], ["2025-05-12", "Mañana"], ["2025-05-12", "Mañana"]] rejected 157 927 \N Está tirada vómito sangre \N \N \N \N \N \N +14 2025-05-12 19:24:05.142169+00 2025-05-12 19:24:05.142177+00 t t [["2025-05-13", "Noche"], ["2025-05-14", "Mañana"], ["2025-05-15", "Noche"]] in_progress_pay 172 946 \N Test \N \N \N \N \N \N +17 2025-05-13 17:27:14.265199+00 2025-05-13 17:27:14.26521+00 f t [["2025-05-13", "Tarde"], ["2025-05-13", "Noche"], ["2025-05-14", "Mañana"]] coordinated 215 991 \N Trigo presenta un comportamiento caido, no tiene apetito, y orina y defeca con menos frecuencia. Las ultimas noches estuvo haciendo sus necesidades adentro, cosa que es poco habitual. Hoy apenas se quiere mover, y no quiere tomar agua. \N \N \N \N \N \N +18 2025-05-13 17:33:25.682752+00 2025-05-13 17:33:25.682766+00 f t [["2025-05-14", "Mañana"], ["2025-05-14", "Tarde"], ["2025-05-14", "Noche"]] coordinated 216 992 \N Se estan haciendo los documentos para viaje internacional \N \N \N \N \N \N +21 2025-05-14 02:55:11.926971+00 2025-05-14 02:55:11.926984+00 f t [["2025-05-14", "Mañana"], ["2025-05-14", "Mañana"], ["2025-05-14", "Mañana"]] coordinated 231 1009 \N No podemos lograr que suba de peso y queremos hacerle un chequeo completo. \N \N \N \N \N \N +20 2025-05-14 00:14:53.068655+00 2025-05-14 00:14:53.068665+00 f t [["2025-05-13", "Noche"], ["2025-05-13", "Noche"], ["2025-05-13", "Noche"]] rejected 227 1005 \N Mi gato estuvo una semana y media perdido.\nAhora intenta cagar y no puede. La está quedando se ve que le duele. \nA la palpación no le duele nada. \N \N \N \N \N \N +19 2025-05-13 19:21:26.102575+00 2025-05-13 19:21:26.102587+00 f t [["2025-05-13", "Noche"], ["2025-05-13", "Noche"], ["2025-05-13", "Noche"]] rejected 221 997 \N Síntomas anteriores en primavera mucha tos sin bolas de pelo, se solucionó con corticoides. Ahora con los mismos síntomas pero mucho más agitada. \N \N \N \N \N \N +12 2025-05-09 17:55:33.703994+00 2025-05-09 17:55:33.704005+00 f t [["2025-05-09", "Noche"], ["2025-05-09", "Tarde"], ["2025-05-10", "Mañana"]] rejected 124 884 \N Tiene mucha lagañas ,come muy poco y tiene la vava muy espesa \N \N \N \N \N \N +11 2025-05-07 16:28:55.483287+00 2025-05-07 16:28:55.483296+00 f t [["2025-05-08", "Noche"], ["2025-05-07", "Noche"], ["2025-05-09", "Noche"]] rejected 91 838 \N Necesita su segunda dosis. La primera veterinaria que fui no me agradó. Gracias \N \N \N \N \N \N +22 2025-05-14 17:56:44.98688+00 2025-05-14 17:56:44.98689+00 f t [["2025-05-17", "Noche"], ["2025-05-17", "Tarde"], ["2025-05-18", "Mañana"]] coordinated 252 1033 \N Jade es una perra adulta de 13 años que tiene sobrepeso, ahora esta mucho mas delgada pero le duelen mucho las patas de atrás y le cuesta levantarse y caminar. Come y toma agua normal sin problemas. \nHace unos meses le encontraron unos bultitos en las patas también pero como no se puede realizar cirugía, solo medicaron. Ahora necesito tratarla para el dolor. \N \N \N \N \N \N +23 2025-05-14 22:16:27.905969+00 2025-05-14 22:16:27.905979+00 f t [["2025-05-14", "Noche"], ["2025-05-15", "Mañana"], ["2025-05-15", "Tarde"]] rejected 279 1063 \N Se lastimo una pata y le sangra y no puede apoyarla para caminar \N \N \N \N \N \N +26 2025-05-15 17:40:55.857952+00 2025-05-15 17:40:55.857964+00 f t [["2025-05-15", "Tarde"], ["2025-05-15", "Tarde"], ["2025-05-15", "Noche"]] rejected 310 1097 \N Creo que ingirió decolorante con agua oxigenada vomito y está temblando \N \N \N \N \N \N +24 2025-05-15 14:57:06.414242+00 2025-05-15 14:57:06.414253+00 f t [["2025-05-17", "Mañana"], ["2025-05-19", "Mañana"], ["2025-05-20", "Mañana"]] rejected 301 1086 \N Tiene picazón y en la parte trasera se está pelando \N \N \N \N \N \N +94 2025-06-04 13:39:31.60684+00 2025-06-04 13:39:31.606852+00 f t [["2025-06-11", "Mañana"], ["2025-06-11", "Mañana"], ["2025-06-11", "Mañana"]] rejected 1306 2140 \N test \N \N \N \N \N \N +27 2025-05-16 17:24:07.286214+00 2025-05-16 17:24:07.286223+00 f t [["2025-05-16", "Tarde"], ["2025-05-16", "Tarde"], ["2025-05-16", "Noche"]] coordinated 348 1140 \N Estuvo con una supuesta sistitis hace una semana y media, pero desde ayer se hace pis encima, maúlla de dolor y se lame mucho todo el tiempo \N \N \N \N \N \N +58 2025-05-26 04:54:09.055417+00 2025-05-26 04:54:09.055425+00 f t [["2025-05-27", "Noche"], ["2025-05-28", "Noche"], ["2025-05-29", "Noche"]] rejected 806 1622 \N Controlar \N \N \N \N \N \N +31 2025-05-17 19:39:16.232966+00 2025-05-17 19:39:16.232977+00 f t [["2025-05-18", "Noche"], ["2025-05-19", "Mañana"], ["2025-05-18", "Mañana"]] rejected 394 1187 \N Mi veterinario me recomendó hacer una ecografía abdominal para Negrura ya que está con síntomas de gastritis: estuvo vomitando amarillo/marrón hace unos 3 días, sin o con poco apetito y toma mas que nada agua. Tuvo un poquitito de fiebre y está un poco aletargada. No tiene diarrea, ni muestra dolor. \N \N \N \N \N \N +29 2025-05-17 02:51:48.275026+00 2025-05-17 02:51:48.275038+00 f t [["2025-05-24", "Tarde"], ["2025-05-24", "Noche"], ["2025-05-24", "Tarde"]] rejected 371 1164 \N Es una boxer que hace un año perdió la movilidad de sus patas traseras, pero creo que esta perdiendo las fuerzas de las delanteras, y problemas en la piel \N \N \N \N \N \N +30 2025-05-17 13:41:26.642443+00 2025-05-17 13:41:26.642457+00 f t [["2025-05-18", "Mañana"], ["2025-05-18", "Tarde"], ["2025-05-18", "Noche"]] coordinated 381 1174 \N Teiene en las tetillas unas manchas rojas (parecidas a un hongo) que se lame a cada rato, esto es hace diez dias, pense que se lamia porque le habia llegado su periodo pero cuando veo que no hay sangre por ningun lado, lo que suele pasar, la reviso y veo entre sus pliegues esto que esta creciendo. \N \N \N \N \N \N +143 2025-06-15 23:26:37.856684+00 2025-06-15 23:26:37.856692+00 f t [["2025-06-15", "Noche"], ["2025-06-16", "Mañana"], ["2025-06-16", "Tarde"]] rejected 1908 2778 \N Tos \N \N \N \N \N \N +63 2025-05-27 12:53:24.822177+00 2025-05-27 12:53:24.822189+00 f t [["2025-05-27", "Mañana"], ["2025-05-27", "Tarde"], ["2025-05-27", "Noche"]] coordinated 877 1605 \N Hace 48 horas que no defeca.\nEstá tomando corticoides y antibióticos porque salió de estar internado el jueves pasado.\nTiene una ataxia y parálisis leve del lado izquierdo.\nTengo consulta programada con neuróloga pero como no defeca tengo que consultar a un clínico mientras tanto. \N \N \N \N \N \N +59 2025-05-26 14:43:58.046519+00 2025-05-26 14:43:58.046529+00 f t [["2025-06-06", "Mañana"], ["2025-06-06", "Mañana"], ["2025-06-06", "Mañana"]] coordinated 822 826 \N Vacuna \N \N \N \N \N \N +32 2025-05-18 00:32:06.648602+00 2025-05-18 00:32:06.648611+00 f t [["2025-05-18", "Mañana"], ["2025-05-18", "Tarde"], ["2025-05-18", "Noche"]] coordinated 406 1201 \N Mi gato empezó con unos estornudos ayer, y recién le empezó a lagrimear el ojo izquierdo. Los estornudos son por momentos y algunas veces fuertes. Está medio decaído y sospecho que con fiebre. \N \N \N \N \N \N +33 2025-05-18 01:19:42.826065+00 2025-05-18 01:19:42.826074+00 f t [["2025-05-17", "Noche"], ["2025-05-18", "Mañana"], ["2025-05-18", "Tarde"]] rejected 412 1207 \N Está con vómitos desde la mańana de hoy, decaimiento, no toma líquidos, temperatura 39,3°. \N \N \N \N \N \N +65 2025-05-27 16:07:42.111069+00 2025-05-27 16:07:42.111101+00 f t [["2025-05-30", "Tarde"], ["2025-05-30", "Noche"], ["2025-05-30", "Mañana"]] coordinated 891 1707 \N apenas acaricio lado izquierdo suavemente llora como si le doliera \N \N \N \N \N \N +64 2025-05-27 16:07:31.878251+00 2025-05-27 16:07:31.878262+00 f t [["2025-05-27", "Tarde"], ["2025-05-27", "Noche"], ["2025-05-28", "Mañana"]] coordinated 892 1709 \N hembra preñada a tèrmino \N \N \N \N \N \N +67 2025-05-28 02:38:26.539636+00 2025-05-28 02:38:26.539647+00 f t [["2025-05-29", "Tarde"], ["2025-06-04", "Noche"], ["2025-06-01", "Mañana"]] rejected 931 1751 \N Quiero hacer chequeo general y consultar por vacunas \N \N \N \N \N \N +62 2025-05-27 03:32:12.507794+00 2025-05-27 03:32:12.507806+00 f t [["2025-05-27", "Noche"], ["2025-05-27", "Noche"], ["2025-05-27", "Noche"]] coordinated 866 1682 \N Ningun sintoma, manchita en la nariz \N \N \N \N \N \N +69 2025-05-29 13:01:05.801197+00 2025-05-29 13:01:05.80121+00 f t [["2025-05-29", "Mañana"], ["2025-05-30", "Noche"], ["2025-05-31", "Mañana"]] coordinated 975 1794 \N Respira con ruidos \N \N \N \N \N \N +71 2025-05-29 15:25:35.07442+00 2025-05-29 15:25:35.074429+00 f t [["2025-05-29", "Noche"], ["2025-05-29", "Tarde"], ["2025-05-30", "Mañana"]] coordinated 986 1807 \N El gato presenta multiples intentos de orinar \N \N \N \N \N \N +70 2025-05-29 14:47:33.929746+00 2025-05-29 14:47:33.929767+00 f t [["2025-05-29", "Noche"], ["2025-05-30", "Mañana"], ["2025-05-31", "Mañana"]] coordinated 981 1802 \N Enfermedad terminal hepatica \N \N \N \N \N \N +68 2025-05-28 16:47:02.883163+00 2025-05-28 16:47:02.883177+00 f t [["2025-05-28", "Tarde"], ["2025-05-28", "Noche"], ["2025-05-28", "Noche"]] coordinated 952 1555 \N Está en tratamiento con antibióticos y ha sido complicado darle todas las dosis porque las vomita. Ya llevaba 2 días seguidos bien, y hoy, el tercer día, vomitó la dosis de la mañana (9 am) y recién me di cuenta al mediodía porque no estaba en casa. No sé qué hacer en esos casos. Aparte está comiendo poco directmente del plato, sólo comió porque le di en la boca. \N \N \N \N \N \N +66 2025-05-27 23:09:21.955755+00 2025-05-27 23:09:21.955764+00 f t [["2025-05-27", "Mañana"], ["2025-05-28", "Mañana"], ["2025-05-29", "Tarde"]] rejected 915 1733 \N Mi perro está muy enfermo thce popo sangrado ya no quiere comer está sufriendo \N \N \N \N \N \N +72 2025-05-29 19:36:05.496526+00 2025-05-29 19:36:05.496539+00 f t [["2025-05-30", "Mañana"], ["2025-05-30", "Noche"], ["2025-05-30", "Tarde"]] rejected 999 1819 \N Problema al orinar \N \N \N \N \N \N +73 2025-05-30 12:53:42.097554+00 2025-05-30 12:53:42.097563+00 f t [["2025-06-03", "Tarde"], ["2025-06-03", "Mañana"], ["2025-06-03", "Noche"]] coordinated 1034 1854 \N Hace mucho que no lo vacuno. \N \N \N \N \N \N +74 2025-05-31 07:13:11.230146+00 2025-05-31 07:13:11.230155+00 f t [["2025-05-31", "Tarde"], ["2025-05-31", "Noche"], ["2025-05-31", "Mañana"]] rejected 1082 1907 \N Cistitis, infección urinaria,.irritación o inflamación vaginal.\nTraer guantes ya que es un gato arisco. \N \N \N \N \N \N +76 2025-05-31 18:26:22.747495+00 2025-05-31 18:26:22.747504+00 f t [["2025-05-31", "Noche"], ["2025-05-31", "Tarde"], ["2025-05-31", "Mañana"]] rejected 1109 1934 \N Se peleó con mi otro perro y tiene la mandíbula para adentro, no puede comer ni tomar \N \N \N \N \N \N +75 2025-05-31 18:24:37.447616+00 2025-05-31 18:24:37.44763+00 f t [["2025-05-31", "Noche"], ["2025-06-01", "Tarde"], ["2025-06-01", "Noche"]] rejected 1108 1933 \N Tiene 14 años, no come hace más de 48h ni toma agua. Está con incontinencia, sus estudios de sangre y le dieron bien. Le cuesta pararse y mantenerse en pie \N \N \N \N \N \N +77 2025-05-31 20:52:29.848795+00 2025-05-31 20:52:29.848807+00 f t [["2025-05-31", "Noche"], ["2025-05-31", "Tarde"], ["2025-05-31", "Mañana"]] coordinated 1112 1937 \N Tiene dolor en una pata, no la apoya \N \N \N \N \N \N +57 2025-05-25 16:29:21.135696+00 2025-05-25 16:29:21.135706+00 f t [["2025-05-26", "Mañana"], ["2025-05-26", "Tarde"], ["2025-05-26", "Noche"]] coordinated 776 1589 \N Tiene los ganglios inflamados y dificultades al tragar/comer sus pelets; no ha dejado de hidratarse ni de comer pero si lo siento más bajo de energía y no se si tendrá gripe o algo en un diente; me gustaría un chequeo general \N 2025-05-26 03:00:00+00 14:00:00 \N 91 \N +96 2025-06-05 09:00:00.412184+00 2025-06-05 09:00:00.412194+00 f t [["2025-06-05", "Mañana"], ["2025-06-05", "Noche"], ["2025-06-05", "Noche"]] coordinated 1363 2203 \N Tiene la boca hinchada y llora porque no puede comer ni tomar agua \N \N \N \N \N \N +60 2025-05-26 16:30:01.052772+00 2025-05-26 16:30:01.052782+00 f t [["2025-05-26", "Tarde"], ["2025-05-26", "Noche"], ["2025-05-27", "Tarde"]] coordinated 828 1643 \N Artritis en patas traseras \N \N \N \N \N \N +36 2025-05-18 16:23:17.415012+00 2025-05-18 16:23:17.415022+00 f t [["2025-05-19", "Mañana"], ["2025-05-21", "Mañana"], ["2025-05-23", "Mañana"]] coordinated 444 1239 \N Chequeo general. Se encuentra ansioso y algunas conductas agresivas \N 2025-05-21 03:00:00+00 11:00:00 \N 88 \N +35 2025-05-18 15:12:29.225204+00 2025-05-18 15:12:29.225216+00 f t [["2025-05-18", "Mañana"], ["2025-05-18", "Tarde"], ["2025-05-18", "Mañana"]] rejected 441 1236 \N No \N \N \N \N \N \N +37 2025-05-18 17:11:27.68752+00 2025-05-18 17:11:27.687528+00 f t [["2025-05-18", "Tarde"], ["2025-05-18", "Tarde"], ["2025-05-18", "Mañana"]] rejected 445 1240 \N A ella le diagnosticaron un problema renales terminal desde el año pasado, estuvo con tratamiento y volvió a decaer..le dimos suero el viernes pero desde ese día que no come. Apenas toma agua y ya la veo muy mal. \N \N \N \N \N \N +61 2025-05-26 20:10:53.713821+00 2025-05-26 20:10:53.713829+00 f t [["2025-05-27", "Tarde"], ["2025-05-28", "Tarde"], ["2025-05-29", "Mañana"]] rejected 835 1651 \N Mi perro se está quejando por dolor en sus patitas (huesitos) o columna, no logro identificar que es lo que le duele, pero llora y baja las escaleras de casa muy lento. \N \N \N \N \N \N +34 2025-05-18 11:20:27.274201+00 2025-05-18 11:20:27.274211+00 f t [["2025-05-19", "Tarde"], ["2025-05-20", "Noche"], ["2025-05-22", "Tarde"]] rejected 426 1221 \N Vómitos frecuentes. \N \N \N \N \N \N +39 2025-05-18 21:24:35.558724+00 2025-05-18 21:24:35.558736+00 f t [["2025-05-19", "Mañana"], ["2025-05-19", "Tarde"], ["2025-05-19", "Noche"]] coordinated 455 1249 \N Vómitos y diarrea, casi no come. Se hidrata \nPerra american bully 14 años \N 2025-05-19 03:00:00+00 10:30:00 \N 1 \N +470 2025-08-30 19:05:37.970123+00 2025-08-30 19:05:37.970132+00 f t [["2025-08-30", "evening"]] confirmado 6526 7602 \N \N 1208 2025-08-30 03:00:00+00 19:00:00 46YGOW9M8OQRMZYQ9EXD8J 90 \N +40 2025-05-19 14:25:35.148736+00 2025-05-19 14:25:35.148745+00 f t [["2025-05-19", "Tarde"], ["2025-05-19", "Noche"], ["2025-05-19", "Mañana"]] rejected 473 1268 \N Molestia al caminar, cambio de humor, molestia al orinar, orina fuera de su caja y muy poco. Se mantiene alejado, llora. \N \N \N \N \N \N +41 2025-05-19 16:19:14.82488+00 2025-05-19 16:19:14.82489+00 f t [["2025-05-19", "Tarde"], ["2025-05-19", "Noche"], ["2025-05-19", "Mañana"]] rejected 479 659 \N Milo esta agitado desde ayer a la noche, se lamento las patas y consumió poca agua. Hoy comió pero sigue nervioso y muy agitado. Hace 15 días hicieron control y estaba ok , hicimos un estudio qué la vete falta mirar. No se si será alguna uña encarnada pero esta muy incomodo. \N \N \N \N \N \N +38 2025-05-18 20:25:42.650156+00 2025-05-18 20:25:42.650165+00 f t [["2025-05-18", "Noche"], ["2025-05-19", "Noche"], ["2025-05-20", "Noche"]] rejected 453 1248 \N Comenzó el día de hoy orinar sangré \N \N \N \N \N \N +42 2025-05-20 14:01:04.15658+00 2025-05-20 14:01:04.156592+00 f t [["2025-05-20", "Tarde"], ["2025-05-21", "Tarde"], ["2025-05-22", "Noche"]] coordinated 522 1315 \N Tiene un diagnostico de rinitis. Hace ruido al respirar. Desde ayer además no retiene lo que come, aunque hoy toleró la comida. \N \N \N \N \N \N +43 2025-05-20 18:40:20.301833+00 2025-05-20 18:40:20.301846+00 t t [["2025-05-27", "Mañana"], ["2025-05-27", "Tarde"], ["2025-05-27", "Noche"]] pending 534 266 \N Prueba de Agus para ver si llegan las solicitudes \N \N \N \N \N \N +45 2025-05-21 02:56:43.830184+00 2025-05-21 02:56:43.830196+00 f t [["2025-05-21", "Mañana"], ["2025-05-21", "Tarde"], ["2025-05-21", "Noche"]] coordinated 554 432 \N \N \N \N \N \N \N +46 2025-05-21 12:47:58.604241+00 2025-05-21 12:47:58.60425+00 f t [["2025-05-21", "Noche"], ["2025-05-21", "Tarde"], ["2025-05-21", "Mañana"]] rejected 564 1367 \N Está con una cojera desde ayer . No sé si es dolor de cadera o algo en la pata \N \N \N \N \N \N +47 2025-05-21 13:54:01.309616+00 2025-05-21 13:54:01.309627+00 f t [["2025-05-23", "Tarde"], ["2025-05-23", "Tarde"], ["2025-05-23", "Tarde"]] coordinated 568 1372 \N Tiene una pelotita en la pata derecha y no sabemos el porqué le ha salido. \N \N \N \N \N \N +48 2025-05-21 18:54:10.240736+00 2025-05-21 18:54:10.240746+00 t t [["2025-05-22", "Tarde"], ["2025-05-29", "Tarde"], ["2025-05-23", "Noche"]] pending 590 1396 \N 123 \N \N \N \N \N \N +51 2025-05-23 10:17:46.969001+00 2025-05-23 10:17:46.96901+00 f t [["2025-05-23", "Mañana"], ["2025-05-23", "Tarde"], ["2025-05-23", "Noche"]] rejected 668 1478 \N Obstruccion intestinal, no defeca. Ayer lo lleve a guardia, le dieron un calmante, pero sigue sin hacer caca y llora de dolor, esta muy infalamado \N \N \N \N \N \N +49 2025-05-22 11:30:37.802483+00 2025-05-22 11:30:37.802499+00 f t [["2025-05-22", "Noche"], ["2025-05-22", "Noche"], ["2025-05-23", "Tarde"]] coordinated 623 1430 \N No \N \N \N \N \N \N +52 2025-05-23 13:10:20.826522+00 2025-05-23 13:10:20.82653+00 f t [["2025-05-24", "Mañana"], ["2025-05-24", "Tarde"], ["2025-05-24", "Noche"]] rejected 673 1483 \N El no tuvo nada pero convive con Lilo, toman de la misma agua, comen del mismo plato, duermen juntos, hacen todo juntos. Y según lo que tengo entendido (que es poco al lado del conocimiento de ustedes) deberia desparasitar a los 2 gatos. \N \N \N \N \N \N +50 2025-05-23 07:13:05.320974+00 2025-05-23 07:13:05.320986+00 f t [["2025-05-23", "Mañana"], ["2025-05-23", "Mañana"], ["2025-05-23", "Mañana"]] rejected 667 1477 \N Está nerviosa. Da alaridos. Tengo miedo de que ataque. \N \N \N \N \N \N +53 2025-05-24 15:05:05.997527+00 2025-05-24 15:05:05.997539+00 f t [["2025-05-24", "Tarde"], ["2025-05-24", "Noche"], ["2025-05-25", "Mañana"]] rejected 724 1536 \N Diarrea en forma intermitente de dos semanas de evolución\nSin vómitos ni deterioro del estado general \N \N \N \N \N \N +55 2025-05-25 14:57:35.139649+00 2025-05-25 14:57:35.139659+00 f t [["2025-05-25", "Tarde"], ["2025-05-25", "Noche"], ["2025-05-25", "Mañana"]] rejected 772 1585 \N No orina hace 2 dias y esta muy decaido \N \N \N \N \N \N +54 2025-05-25 10:43:52.061017+00 2025-05-25 10:43:52.061031+00 f t [["2025-05-25", "Mañana"], ["2025-05-25", "Tarde"], ["2025-05-25", "Noche"]] rejected 765 1578 \N Vómitos desde el viernes a la noche \N \N \N \N \N \N +56 2025-05-25 15:43:57.303177+00 2025-05-25 15:43:57.303192+00 f t [["2025-05-25", "Tarde"], ["2025-05-25", "Noche"], ["2025-05-26", "Noche"]] coordinated 773 1586 \N Vomita mucho \N 2025-05-25 03:00:00+00 15:00:00 \N 91 \N +93 2025-06-04 05:41:22.404319+00 2025-06-04 05:41:22.404331+00 f t [["2025-06-04", "Mañana"], ["2025-06-04", "Noche"], ["2025-06-04", "Tarde"]] rejected 1294 2128 \N Se comio unas medias de mi hijo, las vomito y no para de temblar desde entonces \N \N \N \N \N \N +92 2025-06-04 03:58:19.79895+00 2025-06-04 03:58:19.798959+00 f t [["2025-06-04", "Noche"], ["2025-06-05", "Mañana"], ["2025-06-05", "Tarde"]] coordinated 1292 2126 \N Hace un día que le cuesta hacer pis y hace de a poquito. Nunca le había pasado. \N \N \N \N \N \N +130 2025-06-13 16:19:22.946566+00 2025-06-13 16:19:22.946576+00 f t [["2025-06-13", "Mañana"], ["2025-06-13", "Tarde"], ["2025-06-13", "Noche"]] coordinated 1801 2498 \N Está haciendo caca blanda \N 2025-06-13 03:00:00+00 21:00:00 \N 70 \N +79 2025-06-02 00:59:19.882662+00 2025-06-02 00:59:19.88267+00 f t [["2025-06-02", "Mañana"], ["2025-06-02", "Mañana"], ["2025-06-02", "Mañana"]] coordinated 1157 1009 \N Chequeo general. \N \N \N \N \N \N +176 2025-06-26 19:53:44.159849+00 2025-06-26 19:53:44.159859+00 f t [["2025-06-26", "Noche"], ["2025-06-26", "Mañana"], ["2025-06-26", "Tarde"]] rejected 2541 3442 \N Mi perro tiene neumonía y lo tengo que llevar a control mañana y me pidieron que le haga los estudios antes de ir \N \N \N \N \N \N +80 2025-06-02 09:15:35.713457+00 2025-06-02 09:15:35.71347+00 f t [["2025-06-05", "Mañana"], ["2025-06-05", "Tarde"], ["2025-06-05", "Noche"]] coordinated 1176 2003 \N Perdida de la vista\nTos seca \N \N \N \N \N \N +84 2025-06-02 21:00:55.870291+00 2025-06-02 21:00:55.870307+00 f t [["2025-06-04", "Mañana"], ["2025-06-05", "Mañana"], ["2025-06-03", "Mañana"]] coordinated 1215 2046 \N Picazón se rasca mucho \N \N \N \N \N \N +95 2025-06-04 21:10:36.878569+00 2025-06-04 21:10:36.878582+00 f t [["2025-06-07", "Mañana"], ["2025-06-08", "Mañana"], ["2025-06-09", "Noche"]] rejected 1334 2174 \N Mi gato empezó a perder pelo y a presentar lastimaduras este verano. Le hicieron cultivo de hongos y dieron negativos. Dos veces. Ahora comenzó a perder pelo nuevamente. Está con Pervinox y Macril. \N \N \N \N \N \N +82 2025-06-02 13:20:40.921688+00 2025-06-02 13:20:40.921699+00 f t [["2025-06-02", "Noche"], ["2025-06-03", "Noche"], ["2025-06-04", "Noche"]] rejected 1183 2010 \N Temas Renales \N \N \N \N \N \N +83 2025-06-02 19:45:52.454366+00 2025-06-02 19:45:52.454379+00 f t [["2025-06-02", "Noche"], ["2025-06-02", "Tarde"], ["2025-06-02", "Mañana"]] coordinated 1203 2032 \N La pata trasera derecha está flácida o sin fuerzas, sin movimiento y no se puede levantar. Ya tenía previos problemas de cadera. \N \N \N \N \N \N +98 2025-06-05 21:54:58.671133+00 2025-06-05 21:54:58.671146+00 f t [["2025-06-07", "Mañana"], ["2025-06-07", "Tarde"], ["2025-06-09", "Noche"]] coordinated 1386 2234 \N Aplicación de la vacuna anual \N \N \N \N \N \N +99 2025-06-06 01:16:00.593635+00 2025-06-06 01:16:00.593647+00 f t [["2025-06-14", "Tarde"], ["2025-06-15", "Tarde"], ["2025-06-14", "Noche"]] rejected 1393 2241 \N Vomitos bajo peso diarrea no come no toma agua \N \N \N \N \N \N +97 2025-06-05 15:33:20.398437+00 2025-06-05 15:33:20.39849+00 t t [["2025-06-06", "Mañana"], ["2025-06-06", "Mañana"], ["2025-06-09", "Mañana"]] coordinated 1374 2216 \N Miska estuvo internada tiene 20 años esta c antibiótico, suero, \N \N \N \N \N \N +100 2025-06-06 14:48:02.066342+00 2025-06-06 14:48:02.066355+00 f t [["2025-06-06", "Mañana"], ["2025-06-06", "Tarde"], ["2025-06-06", "Noche"]] rejected 1411 2259 \N Cuadro gastrointestinal. Inflamación, vómitos y diarrea. \N \N \N \N \N \N +87 2025-06-03 15:11:07.018588+00 2025-06-03 15:11:07.018598+00 f t [["2025-06-06", "Tarde"], ["2025-06-04", "Tarde"], ["2025-06-07", "Noche"]] coordinated 1251 2084 \N estudio problemas gástricos, se necesita eco abdominal completo \N \N \N \N \N \N +86 2025-06-03 02:20:44.700867+00 2025-06-03 02:20:44.700876+00 f t [["2025-06-06", "Noche"], ["2025-06-05", "Noche"], ["2025-06-04", "Noche"]] rejected 1233 2066 \N Tiene 19 años y esta con mocos y estornudos \N \N \N \N \N \N +85 2025-06-03 00:17:31.658248+00 2025-06-03 00:17:31.65826+00 f t [["2025-06-07", "Tarde"], ["2025-06-14", "Tarde"], ["2025-06-13", "Noche"]] rejected 1225 2056 \N Alergias \N \N \N \N \N \N +88 2025-06-03 18:01:59.601293+00 2025-06-03 18:01:59.601342+00 f t [["2025-06-03", "Noche"], ["2025-06-04", "Tarde"], ["2025-06-05", "Noche"]] rejected 1262 301 \N Tiene una lastimadura en ambos lados de su cara \N \N \N \N \N \N +101 2025-06-07 04:31:41.679097+00 2025-06-07 04:31:41.679107+00 f t [["2025-06-07", "Mañana"], ["2025-06-07", "Tarde"], ["2025-06-07", "Noche"]] rejected 1444 2292 \N Dificultad al orinar \N \N \N \N \N \N +103 2025-06-07 11:30:41.593123+00 2025-06-07 11:30:41.593136+00 f t [["2025-06-07", "Noche"], ["2025-06-07", "Mañana"], ["2025-06-07", "Mañana"]] rejected 1449 2297 \N Hace 3 días no se levanta y apenas tomó agua con mi ayuda;desde anoche solo se queja y se calma si lo acaricio. \N \N \N \N \N \N +90 2025-06-03 22:08:49.784221+00 2025-06-03 22:08:49.78423+00 f t [["2025-06-04", "Mañana"], ["2025-06-07", "Tarde"], ["2025-06-06", "Noche"]] coordinated 1273 2106 \N Vómito con sangre y gusanos \N \N \N \N \N \N +81 2025-06-02 13:02:50.29587+00 2025-06-02 13:02:50.295882+00 t t [["2025-06-11", "Mañana"], ["2025-06-12", "Mañana"], ["2025-06-11", "Mañana"]] pending 1181 2008 \N test \N \N \N \N \N \N +89 2025-06-03 18:55:23.99226+00 2025-06-03 18:55:23.992271+00 t t [["2025-06-11", "Mañana"], ["2025-06-11", "Mañana"], ["2025-06-11", "Mañana"]] rejected 1265 2098 \N test \N \N \N \N \N \N +104 2025-06-07 16:29:32.345855+00 2025-06-07 16:29:32.345868+00 f t [["2025-06-07", "Tarde"], ["2025-06-07", "Tarde"], ["2025-06-07", "Tarde"]] rejected 1466 2314 \N Tengo mi gato de 18 años enfermo. Caga liquido y un poquito con sangre. Lleva 2 dias sin comer. Mi veterinaria me pidió una ecografia. \N \N \N \N \N \N +105 2025-06-07 19:18:01.786781+00 2025-06-07 19:18:01.786796+00 f t [["2025-06-07", "Noche"], ["2025-06-08", "Mañana"], ["2025-06-08", "Tarde"]] rejected 1476 2324 \N Le cuesta levantarse y ya hace días no se levanta ni quiere comer \N \N \N \N \N \N +102 2025-06-07 11:11:20.095814+00 2025-06-07 11:11:20.095826+00 f t [["2025-06-07", "Mañana"], ["2025-06-09", "Tarde"], ["2025-06-10", "Tarde"]] coordinated 1446 2294 \N Hola, nina está lamiéndose mucho su vulva compulsivamente desde hace 1 o 2 meses, pensamos que era el celo pero aún no le ha bajado, le siento la panza dura. De ánimo y de alimentación está bien \N \N \N \N \N \N +106 2025-06-07 21:23:42.928038+00 2025-06-07 21:23:42.928049+00 f t [["2025-06-07", "Noche"], ["2025-06-07", "Noche"], ["2025-06-07", "Noche"]] coordinated 1480 2328 \N Vomitos desde la madrugada \N \N \N \N \N \N +107 2025-06-08 13:05:56.894911+00 2025-06-08 13:05:56.89492+00 f t [["2025-06-08", "Tarde"], ["2025-06-08", "Noche"], ["2025-06-09", "Noche"]] coordinated 1516 2365 \N Tumor mamario lastimado \N \N \N \N \N \N +91 2025-06-03 22:27:00.338769+00 2025-06-03 22:27:00.338778+00 f t [["2025-06-19", "Tarde"], ["2025-06-20", "Tarde"], ["2025-06-19", "Tarde"]] rejected 1274 2107 \N Su Veterinaria de cabecera le mando una Rx coxofemoral para descartar displasia \N \N \N \N \N \N +111 2025-06-08 23:56:29.718345+00 2025-06-08 23:56:29.718353+00 f t [["2025-06-08", "Noche"], ["2025-06-09", "Tarde"], ["2025-06-08", "Tarde"]] rejected 1544 2397 \N Sangre en el\nOído \N \N \N \N \N \N +267 2025-07-13 23:04:58.152989+00 2025-07-13 23:04:58.152998+00 f t [["2025-07-14", "Mañana"], ["2025-07-14", "Tarde"], ["2025-07-14", "Noche"]] rejected 3544 4498 \N Fue operado el miércoles pasado , le colocaron 2 stens, y castrado. Está muy dolorido y no come nada. \N \N \N \N \N \N +131 2025-06-13 17:53:45.561477+00 2025-06-13 17:53:45.561489+00 f t [["2025-06-19", "Noche"], ["2025-06-20", "Tarde"], ["2025-06-21", "Tarde"]] coordinated 1807 2672 \N Tiene tos y no expulsa nada \N \N \N \N \N \N +110 2025-06-08 16:19:42.005624+00 2025-06-08 16:19:42.005637+00 f t [["2025-06-08", "Tarde"], ["2025-06-08", "Noche"], ["2025-06-08", "Mañana"]] rejected 1528 2377 \N Es una perra activa, Ayer se cayó y desde ese momento está quieta, y cada tanto llora\nCreemos que se golpeo algo. Puede caminar, pero la notamos rara\nGracias \N \N \N \N \N \N +109 2025-06-08 15:54:33.980355+00 2025-06-08 15:54:33.980365+00 f t [["2025-06-08", "Tarde"], ["2025-06-08", "Tarde"], ["2025-06-08", "Noche"]] coordinated 1526 2375 \N . Vomitó varias veces ayer y hoy. Es muy posible que sea por intoxicación por crisantemos. No tiene otro síntoma, pero no comió casi nada hoy \N \N \N \N \N \N +108 2025-06-08 14:38:46.135647+00 2025-06-08 14:38:46.135656+00 f t [["2025-06-08", "Tarde"], ["2025-06-09", "Mañana"], ["2025-06-09", "Tarde"]] coordinated 1521 2370 \N Alan tiene 4 días vomitando la bilis en madrugada, no ha perdido el apetito y hace caca normal, pero se levanta de madrugada con ruidos intestinales y vomita la bilis. \N \N \N \N \N \N +177 2025-06-26 23:10:52.237843+00 2025-06-26 23:10:52.237855+00 f t [["2025-07-01", "Noche"], ["2025-07-03", "Noche"], ["2025-07-04", "Noche"]] in_progress_vet 2549 3451 \N Hola. El motivo es chequeo general de salud, de cara a programar la castración \N \N \N \N \N \N +137 2025-06-14 15:10:27.868103+00 2025-06-14 15:10:27.868114+00 f t [["2025-06-14", "Tarde"], ["2025-06-14", "Noche"], ["2025-06-15", "Mañana"]] rejected 1838 2703 \N Hace unos 10 días comenzó con vómitos, diarrea y luego de eso no quiso comer por 2 días, solo tomar agua. Vino un veterinario a domicilio y como tenía fiebre le dio antifebril, analgésicos porque noto que le dolía la cadera y antibióticos para el estómago. Estuvo súper bien, tenía apetito y buen ánimo y ahora otra vez comenzó con los mismos síntomas sobre todo diarrea y está muy decaído. \N \N \N \N \N \N +135 2025-06-14 12:45:45.731714+00 2025-06-14 12:45:45.731724+00 f t [["2025-06-14", "Tarde"], ["2025-06-14", "Mañana"], ["2025-06-14", "Noche"]] rejected 1829 2694 \N Indico el veterinario para ver qué tiene. Ya le hicieron laboratorio. \N \N \N \N \N \N +133 2025-06-13 21:31:53.384305+00 2025-06-13 21:31:53.384314+00 f t [["2025-06-14", "Mañana"], ["2025-06-15", "Mañana"], ["2025-06-16", "Mañana"]] rejected 1812 2677 \N Lo diagnosticaron con principios de artrosis, ahora está con un pata trasera herida. Le agarran calambres. \N \N \N \N \N \N +113 2025-06-09 14:48:37.134448+00 2025-06-09 14:48:37.134458+00 f t [["2025-06-13", "Tarde"], ["2025-06-13", "Tarde"], ["2025-06-13", "Tarde"]] rejected 1569 2423 \N Agitación casi constante y valores altos de enzimas en el último control de sangre \N \N \N \N \N \N +140 2025-06-15 18:34:07.245257+00 2025-06-15 18:34:07.245265+00 f t [["2025-06-15", "Tarde"], ["2025-06-15", "Noche"], ["2025-06-15", "Mañana"]] rejected 1887 2757 \N Casi inmovil. No come. No toma agua \N \N \N \N \N \N +114 2025-06-09 15:37:34.23463+00 2025-06-09 15:37:34.234645+00 f t [["2025-06-14", "Mañana"], ["2025-06-14", "Tarde"], ["2025-06-13", "Noche"]] rejected 1571 2425 \N Gata sorda, que vive con migo desde hacer 3 años, muy arisca con otras personas, intente adoptar otra gata y desde ese momento la gata se volvio muy violentas \N \N \N \N \N \N +141 2025-06-15 20:54:42.322117+00 2025-06-15 20:54:42.322126+00 f t [["2025-06-15", "Noche"], ["2025-06-16", "Tarde"], ["2025-06-17", "Tarde"]] coordinated 1890 2760 \N Hace dos dias que no come casi no toma agua y no se mueve \N \N \N \N \N \N +116 2025-06-10 16:22:48.546785+00 2025-06-10 16:22:48.546797+00 f t [["2025-06-10", "Tarde"], ["2025-06-10", "Noche"], ["2025-06-11", "Tarde"]] coordinated 1638 2498 \N Llego a casa el martes pasado y quiero ver cómo está. Ya tiene una vacuna. Ayer empezó a tener como una lagaña y no sé si es normal \N \N \N \N \N \N +115 2025-06-09 22:18:08.302768+00 2025-06-09 22:18:08.302776+00 f t [["2025-06-10", "Mañana"], ["2025-06-10", "Noche"], ["2025-06-10", "Tarde"]] rejected 1600 2454 \N No come tiene molestia en la boca \N \N \N \N \N \N +144 2025-06-16 03:51:28.171291+00 2025-06-16 03:51:28.1713+00 f t [["2025-06-16", "Mañana"], ["2025-06-16", "Tarde"], ["2025-06-16", "Noche"]] coordinated 1922 2792 \N Está hace varias semanas que le cuesta pararse con las patas de atrás y ahora directamente ni se para, estuvo acostado toda la tarde \N \N \N \N \N \N +117 2025-06-10 20:51:07.42702+00 2025-06-10 20:51:07.427033+00 f t [["2025-06-10", "Noche"], ["2025-06-10", "Mañana"], ["2025-06-10", "Tarde"]] rejected 1653 2513 \N Vómito bilis , moco y pasto se hizo pis y caca encima . Luego durmió y cuando quiso pararse lateralizaba l cabeza y abría mucho las piernas. Ahora no se mueve , tiembla y duerme \N \N \N \N \N \N +118 2025-06-10 22:13:33.239109+00 2025-06-10 22:13:33.239121+00 f t [["2025-06-11", "Noche"], ["2025-06-12", "Mañana"], ["2025-06-12", "Tarde"]] rejected 1656 2516 \N tiene una irritación en el cuello. Asumo que es porque se rasca en el cuello y como no puedo cortarle las uñas se debe lastimar. \N \N \N \N \N \N +112 2025-06-09 11:36:29.666327+00 2025-06-09 11:36:29.666336+00 f t [["2025-06-09", "Tarde"], ["2025-06-10", "Tarde"], ["2025-06-09", "Mañana"]] rejected 1553 2407 \N Boxer macho castrado de 12 años con muy bajo peso por varios motivos, entre ellos, tumor en la base del corazón, problemas hepáticos, etc \N \N \N \N \N \N +148 2025-06-17 19:00:10.093938+00 2025-06-17 19:00:10.093951+00 f t [["2025-06-18", "Mañana"], ["2025-06-18", "Tarde"], ["2025-06-17", "Noche"]] coordinated 2005 2880 \N Vomita mucho, ya debe estar deshidratado y está constipado. Le cuesta mucho hacer caca. Está decaído \N \N \N \N \N \N +150 2025-06-18 22:45:03.349099+00 2025-06-18 22:45:03.349109+00 f t [["2025-06-19", "Noche"], ["2025-06-19", "Tarde"], ["2025-06-20", "Noche"]] coordinated 2063 2943 \N Embarazo \N \N \N \N \N \N +152 2025-06-19 20:11:17.526362+00 2025-06-19 20:11:17.526373+00 f t [["2025-07-09", "Tarde"], ["2025-07-11", "Noche"], ["2025-07-12", "Mañana"]] rejected 2118 3000 \N Quiero hacer un control general, vacunas y aclara dudas sobre una tos leve que tiene \N \N \N \N \N \N +154 2025-06-20 03:11:39.792747+00 2025-06-20 03:11:39.792761+00 f t [["2025-06-23", "Mañana"], ["2025-06-23", "Tarde"], ["2025-06-23", "Noche"]] rejected 2152 3034 \N Análisis de rutina x edad avanzada. \N \N \N \N \N \N +157 2025-06-20 17:28:15.223054+00 2025-06-20 17:28:15.223064+00 f t [["2025-06-20", "Noche"], ["2025-06-20", "Noche"], ["2025-06-20", "Noche"]] coordinated 2170 3052 \N Mi galgo esta haciendo diarrea de sangre. Ya le pasó una vez y necesito antibiótico. Dicen que los galgos son delicados de intestino. \N \N \N \N \N \N +156 2025-06-20 14:37:15.071579+00 2025-06-20 14:37:15.071587+00 f t [["2025-06-20", "Mañana"], ["2025-06-20", "Tarde"], ["2025-06-20", "Noche"]] coordinated 2161 3043 \N Vacunación ,antiparasitaria,y contro \N \N \N \N \N \N +146 2025-06-17 17:32:11.934993+00 2025-06-17 17:32:11.935006+00 f t [["2025-06-26", "Tarde"], ["2025-06-26", "Noche"], ["2025-06-26", "Mañana"]] rejected 1999 2874 \N Vacunacion anual \N \N \N \N \N \N +128 2025-06-13 03:03:30.969316+00 2025-06-13 03:03:30.969331+00 f t [["2025-06-14", "Tarde"], ["2025-06-14", "Noche"], ["2025-06-14", "Mañana"]] coordinated 1771 1164 \N Necesito hacerle un analisis para ver como se encuentra, ya que dejo de moverse con las patas de adelante... para dormirla ya qie esta desmejorando dia a dia. \N \N \N \N \N \N +119 2025-06-11 12:07:10.782358+00 2025-06-11 12:07:10.782368+00 f t [["2025-06-11", "Tarde"], ["2025-06-11", "Tarde"], ["2025-06-11", "Tarde"]] coordinated 1686 1009 \N Está con mucha tos. \N \N \N \N \N \N +129 2025-06-13 13:52:17.513362+00 2025-06-13 13:52:17.513372+00 f t [["2025-06-13", "Tarde"], ["2025-06-14", "Mañana"], ["2025-06-14", "Tarde"]] rejected 1792 2657 \N Tos, mocos \N \N \N \N \N \N +209 2025-07-03 16:05:13.973773+00 2025-07-03 16:05:13.973785+00 f t [["2025-07-03", "Tarde"], ["2025-07-03", "Noche"], ["2025-07-03", "Tarde"]] rejected 2910 3832 \N No come , está muy flaco , heces mal , debilidad , no se puede parae \N \N \N \N \N \N +120 2025-06-11 18:39:50.379078+00 2025-06-11 18:39:50.379086+00 f t [["2025-06-14", "Noche"], ["2025-06-13", "Mañana"], ["2025-06-13", "Noche"]] rejected 1700 2562 \N Castracion \N \N \N \N \N \N +136 2025-06-14 13:06:09.291833+00 2025-06-14 13:06:09.291842+00 f t [["2025-06-14", "Mañana"], ["2025-06-14", "Tarde"], ["2025-06-14", "Noche"]] rejected 1831 2696 \N Vomitos y estado caído. \N \N \N \N \N \N +134 2025-06-13 22:05:54.683598+00 2025-06-13 22:05:54.683611+00 f t [["2025-06-13", "Noche"], ["2025-06-14", "Tarde"], ["2025-06-14", "Noche"]] rejected 1815 2680 \N Mi gato se habia perdido y lo encontramos hace 2 dias lo revisamos y no tenia nada solo estaba sucio. Despues me di cuenta que tenia como quemado no en las patas sino en el extra en tienen un poco mas arriba y uno lo tiene medio quemadito pero ya se lo limpiamos y el otro se ve que se le armo una costa y recien se estaba mordiendo y se la saco creo por eso salio sangre y como que le gotea pero se ve que sigue como lastimada. \N \N \N \N \N \N +132 2025-06-13 18:30:48.090089+00 2025-06-13 18:30:48.090101+00 f t [["2025-06-13", "Noche"], ["2025-06-14", "Mañana"], ["2025-06-14", "Tarde"]] rejected 1809 2674 \N Mi pareja está transitando el 8 mes de embarazo de nuestro primer hijo. El sábado pasado y sin motivo alguno que lo justifique, mi gata me atacó. Luego de un tiempo se calmó, pero ayer jueves volvió a tener un episodio similar solo que agravado por el hecho que no logró calmarse y cada vez que me veía intentaba atacarme o al menos me maullaba de forma nerviosa. \N \N \N \N \N \N +124 2025-06-12 04:04:24.365484+00 2025-06-12 04:04:24.365496+00 f t [["2025-06-13", "Noche"], ["2025-06-14", "Mañana"], ["2025-06-16", "Mañana"]] coordinated 1722 2586 \N Chequeo \N \N \N \N \N \N +139 2025-06-15 17:24:03.562383+00 2025-06-15 17:24:03.562393+00 f t [["2025-06-15", "Tarde"], ["2025-06-15", "Tarde"], ["2025-06-16", "Tarde"]] rejected 1884 2753 \N No se Mueve, grita, y tiene los ojos abiertos \N \N \N \N \N \N +123 2025-06-12 00:13:39.720279+00 2025-06-12 00:13:39.720291+00 f t [["2025-06-11", "Noche"], ["2025-06-11", "Noche"], ["2025-06-11", "Noche"]] rejected 1718 2581 \N Le sangran las encías, es diabetica \N \N \N \N \N \N +122 2025-06-11 22:32:56.115809+00 2025-06-11 22:32:56.115818+00 f t [["2025-06-12", "Noche"], ["2025-06-12", "Tarde"], ["2025-06-12", "Mañana"]] rejected 1710 2573 \N Vómito y diarrea \N \N \N \N \N \N +138 2025-06-15 02:56:18.879877+00 2025-06-15 02:56:18.87989+00 f t [["2025-06-15", "Tarde"], ["2025-06-16", "Tarde"], ["2025-06-16", "Noche"]] coordinated 1863 2732 \N El tema es que hace dos meses lo castraron y desde entonces toma muchísima agua y orina demasiado, no llega a la calle. Descartaron cushing y diabetes pero ya no se qué mas hacer.... \N \N \N \N \N \N +125 2025-06-12 14:35:27.252368+00 2025-06-12 14:35:27.252381+00 f t [["2025-06-13", "Tarde"], ["2025-06-13", "Noche"], ["2025-06-13", "Tarde"]] coordinated 1733 1555 \N Listos los resultados del análisis de orina y uroanálisis. Ahora quiero saber cómo seguir. \N \N \N \N \N \N +142 2025-06-15 21:31:10.043421+00 2025-06-15 21:31:10.04343+00 f t [["2025-06-15", "Noche"], ["2025-06-15", "Noche"], ["2025-06-15", "Noche"]] rejected 1893 2763 \N El gato tiene un problema urinario y está así hace 5 días lo llevé a una veterinaria y le hicieron un sondeo pero no se recuperó, y más dinero no tengo esta es la única opción está muy mal \N \N \N \N \N \N +121 2025-06-11 19:01:36.510074+00 2025-06-11 19:01:36.510087+00 f t [["2025-06-19", "Tarde"], ["2025-06-19", "Mañana"], ["2025-06-19", "Noche"]] coordinated 1705 2567 \N Se rasca mucho y no tiene pulgas \N \N \N \N \N \N +127 2025-06-12 16:44:09.123809+00 2025-06-12 16:44:09.123818+00 f t [["2025-06-12", "Mañana"], ["2025-06-12", "Tarde"], ["2025-06-12", "Noche"]] rejected 1745 2607 \N Malestar en la pata luego de un golpe \N \N \N \N \N \N +126 2025-06-12 15:29:39.37348+00 2025-06-12 15:29:39.373493+00 f t [["2025-06-12", "Tarde"], ["2025-06-12", "Noche"], ["2025-06-13", "Mañana"]] rejected 1739 2601 \N Para castrar \N \N \N \N \N \N +145 2025-06-16 14:13:23.51376+00 2025-06-16 14:13:23.513773+00 f t [["2025-06-16", "Tarde"], ["2025-06-16", "Mañana"], ["2025-06-16", "Noche"]] coordinated 1933 2803 \N no se levanta. No come. \nNo estoy segura si orino afuera, adentro no habia \N \N \N \N \N \N +149 2025-06-18 22:44:22.316886+00 2025-06-18 22:44:22.316898+00 f t [["2025-06-18", "Noche"], ["2025-06-19", "Noche"], ["2025-06-19", "Tarde"]] rejected 2062 2942 \N Mi perro fue castrado el sabado, lo deje un momento solo y se rompio el collar isabelino y se lamio. Esta tomando antibiotico y hasta ayer tomo antiinflamatorio. \N \N \N \N \N \N +153 2025-06-19 22:40:16.133698+00 2025-06-19 22:40:16.133712+00 f t [["2025-06-20", "Tarde"], ["2025-06-20", "Mañana"], ["2025-06-20", "Noche"]] rejected 2125 3007 \N Tuvo convulsiones y necesita ecodopler \N \N \N \N \N \N +151 2025-06-19 11:08:23.727503+00 2025-06-19 11:08:23.727514+00 f t [["2025-06-19", "Mañana"], ["2025-06-19", "Tarde"], ["2025-06-19", "Noche"]] coordinated 2090 2970 \N Le está costando respirar, no durmió nada, el cuerpo está caliente \N \N \N \N \N \N +155 2025-06-20 14:23:35.351674+00 2025-06-20 14:23:35.351688+00 f t [["2025-06-23", "Mañana"], ["2025-06-24", "Mañana"], ["2025-06-25", "Mañana"]] rejected 2160 3042 \N Vacunación / Mudanza \N \N \N \N \N \N +162 2025-06-22 21:12:15.919382+00 2025-06-22 21:12:15.91939+00 f t [["2025-06-22", "Noche"], ["2025-06-22", "Noche"], ["2025-06-22", "Noche"]] rejected 2291 3174 \N Vómito, pillo un poco pero está como q le cuesta mear y no quieren q lo toquen \N \N \N \N \N \N +164 2025-06-23 12:09:08.269287+00 2025-06-23 12:09:08.269295+00 f t [["2025-06-23", "Mañana"], ["2025-06-23", "Tarde"], ["2025-06-23", "Noche"]] rejected 2315 3200 \N vomito, decaido y dificultad para caminar \N \N \N \N \N \N +161 2025-06-22 14:06:12.299088+00 2025-06-22 14:06:12.299099+00 f t [["2025-07-30", "Noche"], ["2025-07-30", "Tarde"], ["2025-07-30", "Mañana"]] coordinated 2273 3156 \N Le notamos una pequeña protuberancia \N \N \N \N \N \N +159 2025-06-20 22:28:53.635176+00 2025-06-20 22:28:53.635187+00 f t [["2025-06-21", "Mañana"], ["2025-06-21", "Noche"], ["2025-06-22", "Tarde"]] coordinated 2192 3074 \N En una ecografía salió una masa en el corazón y es paciente oncólogico \N 2025-06-23 03:00:00+00 22:00:00 \N 82 \N +147 2025-06-17 18:05:18.190009+00 2025-06-17 18:05:18.190017+00 f t [["2025-06-17", "Tarde"], ["2025-06-17", "Noche"], ["2025-06-19", "Mañana"]] rejected 2002 2877 \N Posible lipidosis hepática en gato agresivo \N \N \N \N \N \N +158 2025-06-20 18:18:58.193996+00 2025-06-20 18:18:58.19401+00 f t [["2025-06-21", "Mañana"], ["2025-06-22", "Mañana"], ["2025-06-24", "Mañana"]] coordinated 2172 3054 \N Mi gato tiene la nariz constantemente tapada con mocos, y varias veces al día hace como si se atragantara (son como arcadas). Antes de mudarnos a Argentina, acababa de terminar un tratamiento largo para esto con muchos medicamentos e inhaladores. Su neumonóloga me explicó que tenía una especie de gripe felina. Hicimos el tratamiento, mejoró, pero desde principios de este año volvieron los estornudos y los mocos. En abril lo llevamos al veterinario aquí, le aplicaron un corticosteroide y le recetaron un colirio, pero no vi mucha mejora. \N \N \N \N \N \N +214 2025-07-04 10:41:40.178469+00 2025-07-04 10:41:40.178478+00 f t [["2025-07-04", "Mañana"], ["2025-07-04", "Tarde"], ["2025-07-04", "Noche"]] rejected 2964 3887 \N Estuvo vomitando durante la noche muchas veces y ya no tolera ni el agua que le di dos horas después del último vómito. \N \N \N \N \N \N +168 2025-06-24 22:51:37.276588+00 2025-06-24 22:51:37.2766+00 f t [["2025-06-24", "Noche"], ["2025-06-25", "Noche"], ["2025-06-26", "Noche"]] rejected 2407 3299 \N Decaimiento, falta de apetito, no tiene ganas de tomar agua , esta con templores \N \N \N \N \N \N +170 2025-06-26 00:46:06.590788+00 2025-06-26 00:46:06.590801+00 f t [["2025-06-26", "Noche"], ["2025-06-26", "Tarde"], ["2025-06-26", "Mañana"]] rejected 2483 3380 \N Eco abdominal. Presenta dolor, vómitos. Fue hidratada vía suero \N \N \N \N \N \N +272 2025-07-15 01:15:24.386843+00 2025-07-15 01:15:24.386853+00 f t [["2025-07-18", "Mañana"], ["2025-07-25", "Mañana"], ["2025-07-26", "Mañana"]] coordinated 3615 4573 \N Control \N 2025-09-05 03:00:00+00 09:00:00 \N 73 \N +174 2025-06-26 18:10:25.345761+00 2025-06-26 18:10:25.34577+00 f t [["2025-07-01", "Mañana"], ["2025-07-01", "Tarde"], ["2025-07-01", "Noche"]] rejected 2532 3432 \N Es para ver si estar embarazada \N \N \N \N \N \N +222 2025-07-05 23:36:11.395562+00 2025-07-05 23:36:11.39557+00 f t [["2025-07-06", "Mañana"], ["2025-07-05", "Noche"], ["2025-07-06", "Noche"]] rejected 3060 3990 \N Está hace 2 días con diarrea. No tiene sangre ni vómitos, pero como es persistente quiero chequearlo \N \N \N \N \N \N +220 2025-07-05 22:49:13.003246+00 2025-07-05 22:49:13.003254+00 f t [["2025-07-10", "Mañana"], ["2025-07-11", "Mañana"], ["2025-07-09", "Mañana"]] coordinated 3056 3986 \N Está sano \N \N \N \N \N \N +178 2025-06-27 01:26:05.539913+00 2025-06-27 01:26:05.539924+00 f t [["2025-06-27", "Mañana"], ["2025-06-27", "Tarde"], ["2025-06-27", "Noche"]] coordinated 2556 3458 \N Mi gata no come hace 3 días. Le cambiamos el alimento varias veces pero no hay caso. Solo come alimento húmedo pero muy poquito. Notamos que está tomando mucha agua frecuentemente. Es una gata que siempre comió alimento balanceado excellent, siempre fue de comer mucho y ahora directamente no está comiendo casi nada. Esta castrada, tiene 7 años. Es muy arisca y se estresa mucho con extraños por eso no la podemos llevar a una veterinaria. \N \N \N \N \N \N +181 2025-06-27 13:26:38.649653+00 2025-06-27 13:26:38.649662+00 f t [["2025-06-27", "Mañana"], ["2025-06-27", "Tarde"], ["2025-06-27", "Noche"]] coordinated 2578 3480 \N Hola buenos días, mi nombre es Victoria De Martini, ayer a la madrugada mi perrita hizo caca con mucha sangre y la llevamos tipo 3 am a una clínica veterinaria y nos mandaron a hacerle unos estudios. \nquería saber si ustedes tienen el día de hoy para hacer una ecografía. \N \N \N \N \N \N +184 2025-06-28 01:13:56.740923+00 2025-06-28 01:13:56.740935+00 f t [["2025-06-28", "Tarde"], ["2025-06-28", "Mañana"], ["2025-06-28", "Noche"]] rejected 2602 3508 \N Quiere orinar y no puede . Va al arenero muy seguido. Por momentos hasta 4 veces en un minuto. Después se calma. Estoy afuera todo el día y hoy detecte esos síntomas. Le limpie el arenero que le había puesto hace 5 días y estaba seco abajo cuando normalmente está con olor y arena pegada. \N \N \N \N \N \N +217 2025-07-04 23:45:16.750532+00 2025-07-04 23:45:16.750541+00 f t [["2025-07-04", "Noche"], ["2025-07-04", "Noche"], ["2025-07-04", "Noche"]] coordinated 3000 3927 \N Estuvo con tos. Está caída y hoy no comió salvo cuando me acerqué yo y le di de comer. Mueve bastante la cabeza. \N \N \N \N \N \N +188 2025-06-29 12:16:07.674936+00 2025-06-29 12:16:07.674944+00 f t [["2025-06-29", "Mañana"], ["2025-06-29", "Tarde"], ["2025-06-29", "Noche"]] rejected 2674 3583 \N Mi gato murió y quiero saber a causa de qué \N \N \N \N \N \N +189 2025-06-29 13:01:21.354534+00 2025-06-29 13:01:21.354545+00 f t [["2025-06-29", "Tarde"], ["2025-06-29", "Mañana"], ["2025-06-29", "Noche"]] rejected 2678 3587 \N es un gatito que vive en la cuadra, duerme adentro del edificio pero no se deja agarrar. Hace 3 días está muy tirado, está durmiendo desde el viernes a la noche, si se levantó brevemente comió, tomo agua e hizo pis (ayer por ultima vez). Lo había logrado entrar a mi dpto pero quisimos agarrarlo para ir a una vet y se escapo. Está dentro del domicilio en un espacio común \N \N \N \N \N \N +196 2025-06-30 13:07:55.61283+00 2025-06-30 13:07:55.612839+00 f t [["2025-06-30", "Mañana"], ["2025-06-30", "Tarde"], ["2025-06-30", "Noche"]] coordinated 2735 3645 \N Está estornudando desde ayer y come bastante menos de lo habitual \N \N \N \N \N \N +195 2025-06-30 11:18:51.514615+00 2025-06-30 11:18:51.514661+00 f t [["2025-06-30", "Mañana"], ["2025-06-30", "Mañana"], ["2025-06-30", "Mañana"]] rejected 2730 3639 \N Buen día necesito hacer una eco abdominal comp por dolor . Esta con vomitos y si pueden haer una consulta tambien la acepto \N \N \N \N \N \N +199 2025-07-01 00:37:14.192069+00 2025-07-01 00:37:14.192081+00 f t [["2025-07-01", "Tarde"], ["2025-07-01", "Mañana"], ["2025-07-01", "Noche"]] coordinated 2784 3697 \N La castré el dia sabado 28-jun, la tengo que llevar al chequeo y se me hace imposible meterla en la transportadora. El veterinario me dijo que le tienen que administrar antibióticos y de paso quiero colocarle un collar isabelino \N \N \N \N \N \N +203 2025-07-01 17:53:11.733211+00 2025-07-01 17:53:11.733222+00 f t [["2025-07-02", "Mañana"], ["2025-07-02", "Tarde"], ["2025-07-02", "Noche"]] coordinated 2824 3740 \N Estornuda cada tanto, parece tener los ojos irritados y se le ve el tercer párpado en ambos ojos. \N \N \N \N \N \N +206 2025-07-02 20:44:31.787795+00 2025-07-02 20:44:31.787802+00 f t [["2025-07-02", "Noche"], ["2025-07-03", "Mañana"], ["2025-07-03", "Tarde"]] rejected 2875 3795 \N Hace dos semanas arrancó con problemas para manenerse de pie, las patas traseras las arrastraba. Fui a Veterinaria, le hicimos estudios de sangre, sonde salió una anemia y Urea un poco alta\nUREA\nResultado: 80 VR: 15 - 50 mg/dl\n\nle hicieron test basico de ViLeF y dio negativo, y frostis que tambien dio negativo de Mycoplasma haemofelis (tuvo muchas pulgas).\n\nEl problema que vuelve a camniar mal y nunca le hicimos rayos o algo para seguir indagando la causa del problema. \nQueria tener una segunda opinion. \N \N \N \N \N \N +210 2025-07-03 18:12:26.447715+00 2025-07-03 18:12:26.447723+00 f t [["2025-07-03", "Tarde"], ["2025-07-03", "Noche"], ["2025-07-04", "Mañana"]] coordinated 2926 3848 \N Tiene un cálculo en la vejiga y cada tanto no puede orinar, la semana que viene tengo turno para urología para programar operación, de mientras le venía dando Meloxicam que lo venía desinflamado bien pero desde este martes dejó de hacer efecto, quiero ver la posibilidad de que la inyecten algún antiinflamatorio no corticoide a ver si el efecto le dura algunos días más. \N \N \N \N \N \N +160 2025-06-21 23:26:47.415227+00 2025-06-21 23:26:47.415243+00 f t [["2025-06-21", "Noche"], ["2025-06-22", "Mañana"], ["2025-06-22", "Tarde"]] rejected 2252 3135 \N Diagnosticado y con tratamiento desde los 13 por un soplo y cardiomegalia en el corazón. \nSábado 21/06 no comio en todo el dia, dificultad para respirar, se tambalea al caminar y dificultad para mantenerse parado o acostado \N \N \N \N \N \N +167 2025-06-24 22:46:28.500338+00 2025-06-24 22:46:28.50035+00 f t [["2025-06-27", "Mañana"], ["2025-06-28", "Mañana"], ["2025-06-29", "Mañana"]] rejected 2405 3297 \N Tiene la piel lastimada entre las patas, le genera picazón, se lame y se lastima más. Pensabamos que se lamia la pata por estrés y que por eso tenia lastimado pero tiene la misma herida en la base de su colita, cerca del ano.\nTambién tiene una caspa o algo parecido que mejora cuando la bañamos pero vuelve muy rapido.\nLas lastimaduras le pican mucho mucho. \N \N \N \N \N \N +269 2025-07-14 15:27:08.656921+00 2025-07-14 15:27:08.656932+00 f t [["2025-07-15", "Mañana"], ["2025-07-15", "Tarde"], ["2025-07-14", "Noche"]] rejected 3578 4532 \N No come hace unos días, le cuesta moverse y respirar, suele temblar. \N \N \N \N \N \N +215 2025-07-04 16:19:56.245282+00 2025-07-04 16:19:56.245294+00 f t [["2025-07-04", "Tarde"], ["2025-07-04", "Tarde"], ["2025-07-04", "Noche"]] coordinated 2981 3905 \N Jadea constantemente, tiene problemas de cadera, (displacia) artrosis. Recientemente tuvo problemas gástricos asociados a la vesícula, también tiene incontinencia. \N \N \N \N \N \N +172 2025-06-26 12:25:30.56509+00 2025-06-26 12:25:30.5651+00 f t [["2025-06-26", "Tarde"], ["2025-06-27", "Noche"], ["2025-07-01", "Noche"]] rejected 2512 3411 \N No tiene ningún síntoma. La vacuno siempre, pero el año pasado no se dejó. \N \N \N \N \N \N +173 2025-06-26 17:40:29.99878+00 2025-06-26 17:40:29.998788+00 f t [["2025-06-26", "Tarde"], ["2025-06-26", "Noche"], ["2025-06-27", "Mañana"]] coordinated 2530 3430 \N mi perro esta desganado, no quiere levantarse, tampoco quiere comer. Es un perro muy activo y siempre ladra salta. Es muy raro su comportamiento repentino, tengo miedo que sea algo que no este viendo. no le duele nada fisico por lo que vimos \N \N \N \N \N \N +179 2025-06-27 09:36:30.059781+00 2025-06-27 09:36:30.059789+00 f t [["2025-06-30", "Tarde"], ["2025-06-30", "Noche"], ["2025-06-30", "Tarde"]] in_progress_vet 2566 3468 \N Le falta la última vacuna antirrábica, no le puede poner porque no está acostumbrado a salir a la calle \N \N \N \N \N \N +182 2025-06-27 19:56:29.070904+00 2025-06-27 19:56:29.070912+00 f t [["2025-06-27", "Noche"], ["2025-06-28", "Mañana"], ["2025-06-28", "Tarde"]] rejected 2591 3497 \N Esta muy decaído hace días..no quiere pasear y come poco \N \N \N \N \N \N +218 2025-07-05 10:02:07.473469+00 2025-07-05 10:02:07.473478+00 f t [["2025-07-05", "Mañana"], ["2025-07-05", "Tarde"], ["2025-07-05", "Noche"]] rejected 3012 3940 \N No toma agua no come se estira todo el tiempo y se queja de vez en cuando de dolor no se acuesta ni se sient solo está Parada ya la lleve al veterinario dos veces pero me piden radiografía o eco para ver qué lo tenga nada \N \N \N \N \N \N +277 2025-07-16 01:25:44.902937+00 2025-07-16 01:25:44.902949+00 f t [["2025-07-18", "Noche"], ["2025-07-19", "Tarde"], ["2025-07-18", "Tarde"]] coordinated 3685 4644 \N Dificultad respiratoria \N 2025-07-16 03:00:00+00 17:00:00 \N 70 \N +185 2025-06-28 20:37:32.41766+00 2025-06-28 20:37:32.417669+00 f t [["2025-06-28", "Noche"], ["2025-06-29", "Tarde"], ["2025-06-29", "Noche"]] coordinated 2640 3546 \N Perro con parálisis patas traseras . Perdió una uña y está infestado \N \N \N \N \N \N +190 2025-06-29 14:04:00.745797+00 2025-06-29 14:04:00.745809+00 f t [["2025-06-29", "Mañana"], ["2025-06-29", "Tarde"], ["2025-06-29", "Noche"]] rejected 2681 3590 \N Acabo de adoptar un gatito y hace pis con sangre \N \N \N \N \N \N +191 2025-06-29 15:05:36.040104+00 2025-06-29 15:05:36.040117+00 f t [["2025-06-29", "Noche"], ["2025-06-29", "Tarde"], ["2025-06-29", "Mañana"]] rejected 2683 3592 \N Buen día tiene lastimado el cuello (posible pelea con otro felino) y se le genero una infección con superación y mal olor. \N \N \N \N \N \N +193 2025-06-30 00:03:30.991466+00 2025-06-30 00:03:30.991479+00 f t [["2025-06-30", "Noche"], ["2025-07-02", "Noche"], ["2025-07-01", "Noche"]] rejected 2710 3620 \N Tiene olor fuerte( como a pescado) y tuvo una convulsión. \N \N \N \N \N \N +197 2025-06-30 14:08:56.241464+00 2025-06-30 14:08:56.241472+00 f t [["2025-06-30", "Tarde"], ["2025-06-30", "Noche"], ["2025-07-01", "Mañana"]] rejected 2737 3647 \N Tiene unas lastimaduras en lomo y abdomen \N \N \N \N \N \N +223 2025-07-06 09:30:58.652368+00 2025-07-06 09:30:58.652376+00 f t [["2025-07-06", "Mañana"], ["2025-07-06", "Tarde"], ["2025-07-06", "Mañana"]] rejected 3079 4009 \N Díarrea y vomitos \N \N \N \N \N \N +221 2025-07-05 23:08:20.744419+00 2025-07-05 23:08:20.744427+00 f t [["2025-07-11", "Noche"], ["2025-07-12", "Mañana"], ["2025-07-13", "Mañana"]] coordinated 3058 3988 \N Le tocan las vacunas. \N \N \N \N \N \N +200 2025-07-01 12:50:12.746262+00 2025-07-01 12:50:12.746275+00 f t [["2025-07-02", "Noche"], ["2025-07-07", "Noche"], ["2025-07-08", "Noche"]] coordinated 2797 3710 \N Hace más de 1 año tiene vomitos y está bajando de peso. \nLa vieron varios veterinarios y no saben que tiene. Le recetaron nogastrol pero sigue igual. Los análisis de sangre y ecocardiograma dan bien. \N \N \N \N \N \N +204 2025-07-02 00:17:00.984949+00 2025-07-02 00:17:00.984959+00 f t [["2025-07-01", "Noche"], ["2025-07-01", "Mañana"], ["2025-07-01", "Noche"]] rejected 2837 3754 \N Anoche empezó a quejarse y llorar vómito un poco de la comida, hoy no quiso comer en todo el dia solo tomo agua hizo pis pero se queja mucho es una perra de más de casi 14 años \N \N \N \N \N \N +227 2025-07-07 14:20:32.043737+00 2025-07-07 14:20:32.043748+00 f t [["2025-07-11", "Noche"], ["2025-07-12", "Tarde"], ["2025-07-12", "Noche"]] coordinated 3168 4098 \N Le cuesta levantarse con sus patas traseras \N \N \N \N \N \N +228 2025-07-07 14:50:18.217732+00 2025-07-07 14:50:18.217743+00 f t [["2025-07-07", "Tarde"], ["2025-07-08", "Tarde"], ["2025-07-10", "Tarde"]] coordinated 3171 4101 \N Bulto que supura y creo que han salido gusanitos \N \N \N \N \N \N +207 2025-07-03 02:22:30.812968+00 2025-07-03 02:22:30.812977+00 f t [["2025-07-03", "Mañana"], ["2025-07-03", "Tarde"], ["2025-07-03", "Noche"]] rejected 2889 3812 \N Hace más de un día que no orina \N \N \N \N \N \N +211 2025-07-03 18:23:34.576336+00 2025-07-03 18:23:34.576344+00 f t [["2025-08-01", "Mañana"], ["2025-08-05", "Mañana"], ["2025-07-29", "Mañana"]] coordinated 2927 3849 \N Control renal/ gastro \N \N \N \N \N \N +232 2025-07-07 20:22:03.540416+00 2025-07-07 20:22:03.540428+00 f t [["2025-07-07", "Noche"], ["2025-07-08", "Tarde"], ["2025-07-08", "Noche"]] coordinated 3195 4127 \N Hace 4 5 días dejó de caminar ya le habían diagnosticado tiroides peor no se lle trato por su edad y ahora una pata la tiene dura y las otras no le respondes tiene unas pelotas que tmb dijieron q era de grasa y se nota q sufro porque no puede moverse se le toca pero no le duele \N \N \N \N \N \N +230 2025-07-07 15:41:29.26814+00 2025-07-07 15:41:29.268149+00 f t [["2025-07-08", "Noche"], ["2025-07-10", "Noche"], ["2025-07-11", "Noche"]] rejected 3180 854 \N edad avanzada \N \N \N \N \N \N +235 2025-07-08 02:28:10.960296+00 2025-07-08 02:28:10.960307+00 f t [["2025-07-08", "Noche"], ["2025-07-08", "Noche"], ["2025-07-08", "Noche"]] rejected 3224 4160 \N Alergia, se rasca y rompe la piel \N \N \N \N \N \N +163 2025-06-23 03:25:47.283607+00 2025-06-23 03:25:47.28362+00 f t [["2025-06-23", "Noche"], ["2025-06-28", "Tarde"], ["2025-06-29", "Tarde"]] rejected 2305 3190 \N Cistitis crónica \N \N \N \N \N \N +78 2025-06-01 18:44:53.056556+00 2025-06-01 18:44:53.056566+00 f t [["2025-06-03", "Mañana"], ["2025-06-03", "Tarde"], ["2025-06-03", "Noche"]] rejected 1146 1973 \N Tiene diagnostico reciente de tumor de hipofisis , en tratamiento con endocrinologo con cabergolina y sustitutivo con cortisol. Necesitaria una asesoria veterinaria de tipo paliativa ( manejo del dolor , nutricion) \N \N \N \N \N \N +44 2025-05-21 00:51:18.835262+00 2025-05-21 00:51:18.83527+00 f t [["2025-07-01", "Noche"], ["2025-07-02", "Noche"], ["2025-07-04", "Noche"]] rejected 547 1351 \N Vacunación \N \N \N \N \N \N +169 2025-06-25 15:50:07.423867+00 2025-06-25 15:50:07.423879+00 f t [["2025-06-25", "Noche"], ["2025-06-25", "Tarde"], ["2025-06-25", "Mañana"]] coordinated 2452 3346 \N Diarrea explosiva y abundante \N \N \N \N \N \N +171 2025-06-26 11:46:23.529191+00 2025-06-26 11:46:23.529201+00 f t [["2025-06-26", "Noche"], ["2025-06-26", "Noche"], ["2025-06-27", "Noche"]] coordinated 2510 3409 \N 1 vez en revisión de veterinario recién adoptado, quiero saber también si debo desparacitarlo tiene 2 meses aproximadamente \N \N \N \N \N \N +166 2025-06-24 15:38:33.479445+00 2025-06-24 15:38:33.479453+00 f t [["2025-06-28", "Mañana"], ["2025-06-27", "Noche"], ["2025-06-26", "Tarde"]] rejected 2382 3274 \N preñez \N \N \N \N \N \N +165 2025-06-24 15:11:55.289346+00 2025-06-24 15:11:55.289354+00 f t [["2025-06-25", "Mañana"], ["2025-06-25", "Tarde"], ["2025-06-25", "Noche"]] rejected 2380 3272 \N Él estuvo en terapia por una hiperglucemia, nos recomendaron controlar su diabetes y administrarle insulina. \N \N \N \N \N \N +175 2025-06-26 18:59:42.953091+00 2025-06-26 18:59:42.953103+00 f t [["2025-06-26", "Noche"], ["2025-06-27", "Noche"], ["2025-06-30", "Noche"]] rejected 2537 3438 \N Ella no está castrada poque la adoptamos de grande, y esta menstruando muy abundante, hace días le bajo un montón y tiene inflamada la zona, esta super caída. \nno tengo trasporte y muerde, se estesa mucho al salir. Es viejita.\nCome y toma agua, pero le sigue bajando la menstruación muy abundante y ya es rarisimo. \N \N \N \N \N \N +216 2025-07-04 20:44:19.73459+00 2025-07-04 20:44:19.734598+00 f t [["2025-07-04", "Mañana"], ["2025-07-04", "Tarde"], ["2025-07-04", "Noche"]] coordinated 2992 3918 \N Desde el miércoles tiene falta de apetito y tiembla. Toma agua y hace pis y caca de manera normal \N 2025-07-04 03:00:00+00 21:00:00 \N 79 \N +285 2025-07-17 16:43:20.4683+00 2025-07-17 16:43:20.468312+00 f t [["2025-07-17", "Noche"], ["2025-07-17", "Noche"], ["2025-07-18", "Tarde"]] rejected 3783 4745 \N Vomita lo que come hace dos días, hace poca caca. Su vet sospech que comió algo que está obstruyendo. Solicita RX de torax \N \N \N \N \N \N +180 2025-06-27 12:30:08.97587+00 2025-06-27 12:30:08.975883+00 f t [["2025-06-27", "Mañana"], ["2025-06-27", "Tarde"], ["2025-06-27", "Noche"]] coordinated 2575 3477 \N Consulta \N \N \N \N \N \N +219 2025-07-05 17:52:45.559488+00 2025-07-05 17:52:45.559496+00 f t [["2025-07-05", "Tarde"], ["2025-07-05", "Noche"], ["2025-07-06", "Tarde"]] rejected 3038 3966 \N Boca hinchada \N \N \N \N \N \N +183 2025-06-27 22:06:29.846184+00 2025-06-27 22:06:29.846195+00 f t [["2025-06-28", "Mañana"], ["2025-06-28", "Tarde"], ["2025-06-27", "Noche"]] rejected 2596 3502 \N Cojera pata trasera, con dolorcito. Repentino \N \N \N \N \N \N +187 2025-06-29 00:37:41.867023+00 2025-06-29 00:37:41.867032+00 f t [["2025-06-29", "Tarde"], ["2025-06-29", "Mañana"], ["2025-06-29", "Noche"]] rejected 2655 3564 \N Ya no come, no camina \N \N \N \N \N \N +186 2025-06-28 23:40:32.381323+00 2025-06-28 23:40:32.381332+00 f t [["2025-06-30", "Mañana"], ["2025-06-29", "Tarde"], ["2025-06-29", "Noche"]] coordinated 2651 3560 \N Orden del veterinario de ecografía abdominal por posible Piometra \N \N \N \N \N \N +224 2025-07-06 09:51:11.638542+00 2025-07-06 09:51:11.638553+00 f t [["2025-07-06", "Mañana"], ["2025-07-06", "Tarde"], ["2025-07-06", "Noche"]] rejected 3081 4011 \N Buenas hace dos días vomita parásito tipo fideos blanco solo una vez al día . Pero el tiene apetito y no está desanimado \N \N \N \N \N \N +192 2025-06-29 22:49:08.524169+00 2025-06-29 22:49:08.524183+00 f t [["2025-06-30", "Mañana"], ["2025-06-29", "Noche"], ["2025-06-30", "Tarde"]] rejected 2707 3617 \N Frida tiene displasia de cadera y desde hoy al mediodía no puede pararse más, aparentemente le duele mucho. \N \N \N \N \N \N +225 2025-07-06 15:47:34.099469+00 2025-07-06 15:47:34.099478+00 f t [["2025-07-06", "Mañana"], ["2025-07-06", "Tarde"], ["2025-07-06", "Noche"]] rejected 3105 4035 \N Decaído posibles dolores se queja al tocacle la panza \N \N \N \N \N \N +194 2025-06-30 02:12:48.579722+00 2025-06-30 02:12:48.579773+00 f t [["2025-06-30", "Noche"], ["2025-06-30", "Tarde"], ["2025-06-30", "Mañana"]] coordinated 2719 3546 \N Segunda aplicación de antibiótico de amplio espectro \N \N \N \N \N \N +198 2025-07-01 00:10:35.25716+00 2025-07-01 00:10:35.257169+00 f t [["2025-07-03", "Tarde"], ["2025-07-03", "Mañana"], ["2025-07-03", "Noche"]] coordinated 2780 3692 \N Diarrea, delgadez, pelaje sucio, posible parásitos, \N \N \N \N \N \N +229 2025-07-07 15:39:47.174699+00 2025-07-07 15:39:47.174712+00 t t [["2025-07-09", "Tarde"], ["2025-07-10", "Noche"], ["2025-07-11", "Noche"]] in_progress_vet 3179 4109 \N Le pica el pelo \N \N \N \N \N \N +201 2025-07-01 13:00:22.569595+00 2025-07-01 13:00:22.569608+00 f t [["2025-07-10", "Tarde"], ["2025-07-10", "Mañana"], ["2025-07-10", "Noche"]] coordinated 2799 3712 \N Es hipotiroideo medicado con t4 de 125mg. Quisiéramos hacer una evaluación de la tiroides \N \N \N \N \N \N +205 2025-07-02 17:18:02.787437+00 2025-07-02 17:18:02.787457+00 f t [["2025-07-03", "Tarde"], ["2025-07-05", "Tarde"], ["2025-07-04", "Tarde"]] coordinated 2865 3784 \N El veterinario solicito control cardiólogo porque tuvimos que sedarlo porque tenia una herida en un cachete y su ritmo cardiaco disminuyo, y el oftalmólogo porque tiene inflamados los ojos el veterinario le dio unas gotas pero no vemos cambio y según nos dijeron las pestañas medio que se van hacia adentro \N \N \N \N \N \N +226 2025-07-07 13:23:16.381015+00 2025-07-07 13:23:16.381029+00 f t [["2025-07-08", "Noche"], ["2025-07-10", "Noche"], ["2025-07-12", "Tarde"]] coordinated 3166 4096 \N POSIBILIDAD DE EMBARAZO. QUIERO CORROBORARLO \N \N \N \N \N \N +208 2025-07-03 13:00:13.414362+00 2025-07-03 13:00:13.414374+00 f t [["2025-07-03", "Mañana"], ["2025-07-03", "Tarde"], ["2025-07-04", "Mañana"]] coordinated 2897 3820 \N Con la llegada de otro gato. Almendra empezo a hacer pis (mucho pis) fuera de las piedras y ayer encontre sangre en su caca. Ella ya habia tenido problemas urinarios cuando era pequeña. \N \N \N \N \N \N +233 2025-07-07 22:32:44.994975+00 2025-07-07 22:32:44.994983+00 f t [["2025-07-08", "Tarde"], ["2025-07-09", "Mañana"], ["2025-07-10", "Mañana"]] coordinated 3208 4142 \N Está con pérdida de pelo \N \N \N \N \N \N +212 2025-07-03 19:55:37.665558+00 2025-07-03 19:55:37.665568+00 f t [["2025-07-04", "Tarde"], ["2025-07-04", "Mañana"], ["2025-07-04", "Noche"]] coordinated 2943 3866 \N Gato de 15 años muy decaido, come poco, se levanta lo indispensable. Venia con achaques de la edad pero estos dias deterioro mucho. \N \N \N \N \N \N +231 2025-07-07 16:42:16.83321+00 2025-07-07 16:42:16.833221+00 f t [["2025-07-15", "Tarde"], ["2025-07-12", "Tarde"], ["2025-07-10", "Tarde"]] rejected 3181 4110 \N Placa a domicilio de cadera \N \N \N \N \N \N +236 2025-07-08 11:14:47.245962+00 2025-07-08 11:14:47.24597+00 f t [["2025-07-08", "Mañana"], ["2025-07-08", "Tarde"], ["2025-07-10", "Mañana"]] coordinated 3227 4163 \N Presenta secuelas post síndrome vestibular ocurrido hace ya 2 o 3 años. En este momento Lula ya no controla esfinteres y se vive haciendo sus necesidades encima o en cualquier parte y está como perdida. Ella ya tiene mas de 20 años. De apetito esta bien. Osea la consulta es mas que nada para saber si hay que seguir así o ya no es una vida digna para ella. \N \N \N \N \N \N +313 2025-07-26 15:41:09.499366+00 2025-07-26 15:41:09.499378+00 f t [["2025-07-28", "Mañana"], ["2025-07-28", "Tarde"], ["2025-07-28", "Noche"]] coordinated 4303 313 \N Según mi madre le sintió un bulto en el cuerpo, es una gatita vieja de 11 años aprox \N \N \N \N \N \N +266 2025-07-13 13:07:17.436804+00 2025-07-13 13:07:17.436814+00 f t [["2025-07-14", "Mañana"], ["2025-07-14", "Noche"], ["2025-07-14", "Tarde"]] rejected 3513 4466 \N En abril de este año, nuestro perro empezó a quedarse despierto durante la noche, a tener una respiración irregular y a presentar tos. Entonces, en mayo, le hicimos un ecodoppler y la veterinaria identificó un pequeño defecto en su válvula mitral, por lo que le recetó un medicamento. Empezamos a darle el medicamento y mejoró, pero ahora, en julio, nuestro perro nuevamente está presentando las mismas dificultades. Por eso, nos gustaría saber cómo está y si debemos cambiar la dosis o el medicamento que está tomando. \N \N \N \N \N \N +318 2025-07-27 18:50:43.429089+00 2025-07-27 18:50:43.429099+00 f t [["2025-07-27", "Tarde"], ["2025-07-27", "Noche"], ["2025-07-27", "Mañana"]] coordinated 4361 5348 \N Vomito \N \N \N \N \N \N +270 2025-07-14 17:12:11.48249+00 2025-07-14 17:12:11.482502+00 f t [["2025-07-14", "Tarde"], ["2025-07-14", "Noche"], ["2025-07-16", "Mañana"]] rejected 3584 4538 \N Acabo de notar que logró sacar su sonda. Porfa necesito que vengan a colocarlo otra vez \N \N \N \N \N \N +273 2025-07-15 14:17:48.994881+00 2025-07-15 14:17:48.994889+00 f t [["2025-07-15", "Noche"], ["2025-07-16", "Noche"], ["2025-07-17", "Noche"]] coordinated 3646 4604 \N Vacunación \N 2025-07-16 03:00:00+00 18:30:00 \N 70 \N +275 2025-07-15 17:05:50.808736+00 2025-07-15 17:05:50.808749+00 f t [["2025-07-21", "Tarde"], ["2025-07-22", "Mañana"], ["2025-07-23", "Tarde"]] coordinated 3661 4620 \N La noto muy estresada todo el tiempo, la estresan las cosas normales de la casa y cuando viene alguien se pasa horas escondida cuando se va. \n\nNo sé si es algo de comportamiento pero quiero descartar causas físicas \N \N \N \N \N \N +279 2025-07-16 04:27:01.408992+00 2025-07-16 04:27:01.409002+00 f t [["2025-07-17", "Mañana"], ["2025-07-23", "Tarde"], ["2025-07-24", "Tarde"]] rejected 3692 4651 \N Necesita una placa de cuello y tórax para descartar bronquitis. Tiene posible alergias, no se sabe todavía. Tiene estornudos a veces, a veces tos, a veces inflamación ocular. \N \N \N \N \N \N +283 2025-07-17 13:39:30.465139+00 2025-07-17 13:39:30.465147+00 f t [["2025-07-17", "Mañana"], ["2025-07-17", "Mañana"], ["2025-07-17", "Mañana"]] coordinated 3767 4727 \N Está muy viejita, se escondió no quiere salir ni comer, solo sale toma algo de agua y se vuelve a esconder \N \N \N \N \N \N +281 2025-07-17 02:45:47.929723+00 2025-07-17 02:45:47.929735+00 f t [["2025-07-17", "Mañana"], ["2025-07-17", "Tarde"], ["2025-07-17", "Noche"]] rejected 3753 4714 \N Perro de más de 7 años, ciego, le falla el olfato, se puso agresivo y mordió en reiterada veces !! \N \N \N \N \N \N +288 2025-07-18 13:05:05.905273+00 2025-07-18 13:05:05.905289+00 f t [["2025-07-18", "Mañana"], ["2025-07-18", "Tarde"], ["2025-07-18", "Noche"]] rejected 3818 4785 \N Se comporta raro. Antes de ayer a la noche se despertó tosiendo muy fuerte dos veces, lo bajé de la cama, después de eso se quedó un poco tenso acostado en el piso. Luego de un rato lo volví a subir a la cama y durmió bastante, ayer a la mañana al agarrarlo del pecho para bajarlo maulló fuerte, como si le doliera. Lo llevamos a examinar pero no detectaron nada raro al palparlo ni al auscultarlo. A la noche nuevamente lo agarré y maulló fuerte, y continuó extraño, camina agazapado con los bracitos pegados, la mirada está un poco perdida, no responde a los estímulos de juego habituales, y buscaba apartarse de nosotros y del otro gato. Hoy hasta el momento lo dejamos sin comer, por si hay q sacarle sangre, pero en principio no detectamos que no coma o no vaya al baño. Sin embargo se comporta extraño, está con la cola para abajo siempre cuando antes estaba con la cola siempre arriba. \N \N \N \N \N \N +286 2025-07-17 17:32:16.98388+00 2025-07-17 17:32:16.983889+00 f t [["2025-07-17", "Tarde"], ["2025-07-17", "Noche"], ["2025-07-18", "Mañana"]] rejected 3785 4749 \N Tiene discos pinzados, y artrosis, para lo cual esta siendo tratado. Pero ahora esta con el estomago muy hinchado, y tiene cierta dificultad para respirar \N \N \N \N \N \N +290 2025-07-19 18:35:44.963627+00 2025-07-19 18:35:44.963636+00 f t [["2025-07-19", "Noche"], ["2025-07-20", "Tarde"], ["2025-07-20", "Noche"]] coordinated 3889 4856 \N Tiene cistitis y a pesar de habérsele recetado Meloxivet, no mejoró mucho. \N \N \N \N \N \N +294 2025-07-20 16:10:37.368658+00 2025-07-20 16:10:37.368667+00 f t [["2025-07-25", "Mañana"], ["2025-07-24", "Mañana"], ["2025-07-23", "Mañana"]] coordinated 3952 4920 \N Tiene mucho rascado y se está pelando \N \N \N \N \N \N +298 2025-07-21 14:45:17.639336+00 2025-07-21 14:45:17.639344+00 f t [["2025-07-21", "Tarde"], ["2025-07-22", "Noche"], ["2025-07-24", "Tarde"]] rejected 4024 4992 \N Revisión general. Precisa vacunción. Es muy viejito, está con problemas de movilidad, necesito recomendaciones de qué hacer \N \N \N \N \N \N +292 2025-07-19 23:39:54.241831+00 2025-07-19 23:39:54.241842+00 f t [["2025-07-22", "Mañana"], ["2025-07-22", "Tarde"], ["2025-07-22", "Noche"]] rejected 3906 4874 \N Para un control al no poder sacarlo porque es muy inquieto y llevarlo a UPA muy incómodo \N \N \N \N \N \N +296 2025-07-21 00:32:54.448335+00 2025-07-21 00:32:54.448344+00 f t [["2025-07-21", "Noche"], ["2025-07-22", "Mañana"], ["2025-07-23", "Noche"]] coordinated 3987 4954 \N Vómitos fecaloides recurrentes \N 2025-07-21 03:00:00+00 19:00:00 \N 90 \N +299 2025-07-22 00:14:09.616306+00 2025-07-22 00:14:09.616315+00 f t [["2025-07-22", "Tarde"], ["2025-07-22", "Noche"], ["2025-07-23", "Tarde"]] coordinated 4054 5024 \N Se rasca intensamente los oidos, gira la cabeza para el lado en que le duele. Me muestra los dientes cuando intento limpiar sus orejas y no me lo permite. \N \N \N \N \N \N +301 2025-07-22 21:58:17.013404+00 2025-07-22 21:58:17.013415+00 f t [["2025-08-02", "Mañana"], ["2025-08-02", "Tarde"], ["2025-08-02", "Noche"]] rejected 4105 5076 \N Control de valores de riñon \N \N \N \N \N \N +303 2025-07-23 21:52:12.171485+00 2025-07-23 21:52:12.171493+00 f t [["2025-07-23", "Noche"], ["2025-07-24", "Mañana"], ["2025-07-24", "Tarde"]] rejected 4155 5130 \N Tiene tos hace 1 mes, le hicimos dos radiografías separadas con 10 dias de diferencia y en ambas tiene líquido pleural. Necesitamos una interconsulta con cardiología para ver qué no sea cardiológico el problema y también para asegurarnos que esté en condiciones para una sedación para la punción de ese líquido. \N \N \N \N \N \N +305 2025-07-24 17:22:26.635283+00 2025-07-24 17:22:26.635291+00 f t [["2025-07-26", "Mañana"], ["2025-07-26", "Tarde"], ["2025-07-26", "Noche"]] rejected 4200 5179 \N Por orden medica veterinaria. Inapetencia, otros \N \N \N \N \N \N +321 2025-07-28 16:51:33.973752+00 2025-07-28 16:51:33.973762+00 f t [["2025-07-29", "Mañana"], ["2025-07-31", "Mañana"], ["2025-08-01", "Mañana"]] rejected 4427 5415 \N Vómitos. Diarrea. \N \N \N \N \N \N +255 2025-07-11 01:13:58.803005+00 2025-07-11 01:13:58.803017+00 f t [["2025-07-11", "Noche"], ["2025-07-12", "Noche"], ["2025-07-13", "Mañana"]] rejected 3390 4338 \N Buenas Noches! Me recomendaron hacerle a mi gata una radiografía de tórax ya que no está teniendo una respiración absolutamente normal. \N \N \N \N \N \N +234 2025-07-08 01:59:53.620619+00 2025-07-08 01:59:53.62063+00 f t [["2025-07-08", "Tarde"], ["2025-07-09", "Tarde"], ["2025-07-10", "Tarde"]] rejected 3221 4157 \N Está orinando sangre \N \N \N \N \N \N +237 2025-07-08 13:49:21.126333+00 2025-07-08 13:49:21.126341+00 f t [["2025-07-08", "Noche"], ["2025-07-09", "Noche"], ["2025-07-10", "Noche"]] coordinated 3239 4176 \N Es un gato adulto que necesita control. \N \N \N \N \N \N +238 2025-07-08 14:12:07.63487+00 2025-07-08 14:12:07.634881+00 f t [["2025-07-10", "Mañana"], ["2025-07-11", "Mañana"], ["2025-07-11", "Tarde"]] coordinated 3241 4178 \N Se sospecha de conexion auricular y sufrio 2 sincopes \N 2025-07-11 03:00:00+00 13:00:00 \N 82 \N +282 2025-07-17 07:43:41.976244+00 2025-07-17 07:43:41.976253+00 f t [["2025-07-17", "Mañana"], ["2025-07-17", "Tarde"], ["2025-07-17", "Noche"]] coordinated 3760 4721 \N El perro comenzó con vomitos de comida el día de ayer y luego vómito agua. Le sacamos la comida y el agua \N \N \N \N \N \N +239 2025-07-08 15:42:27.905589+00 2025-07-08 15:42:27.905599+00 f t [["2025-07-10", "Noche"], ["2025-07-10", "Mañana"], ["2025-07-09", "Mañana"]] rejected 3249 4187 \N Es muy miedoso \N \N \N \N \N \N +241 2025-07-08 20:52:34.681516+00 2025-07-08 20:52:34.681524+00 f t [["2025-07-11", "Noche"], ["2025-07-12", "Mañana"], ["2025-07-13", "Tarde"]] coordinated 3264 4202 \N Gata adoptada hace dos semanas con vacuna de rabia ( recientemente) \nControl de su salud \N \N \N \N \N \N +240 2025-07-08 18:01:30.901202+00 2025-07-08 18:01:30.901211+00 f t [["2025-07-08", "Tarde"], ["2025-07-09", "Tarde"], ["2025-07-10", "Tarde"]] rejected 3253 4191 \N necesito hacerle un análisis completo de sangre + eco abdominal + vif vilef. Mi gato esta bien, pero se lame mucho y se rasca y se saca el pelo. Para evaluar si hay alguna otra cosa, o es alergia o alopecia psicogenetica. \N \N \N \N \N \N +242 2025-07-08 22:45:18.107529+00 2025-07-08 22:45:18.107537+00 f t [["2025-07-09", "Tarde"], ["2025-07-09", "Noche"], ["2025-07-09", "Tarde"]] coordinated 3276 4214 \N infeccion urinaria ECOGRAFIA ABDOMINAL \N \N \N \N \N \N +245 2025-07-09 16:59:00.906192+00 2025-07-09 16:59:00.9062+00 f t [["2025-07-09", "Tarde"], ["2025-07-10", "Noche"], ["2025-07-10", "Tarde"]] rejected 3303 4241 \N Hace muy poca pis \N \N \N \N \N \N +247 2025-07-09 22:22:29.224964+00 2025-07-09 22:22:29.224978+00 f t [["2025-07-09", "Noche"], ["2025-07-09", "Noche"], ["2025-07-09", "Noche"]] rejected 3317 4259 \N La perra vomito ayer y no come ni toma.agua. esta muy caída. Tuvo su primer celo hace 3 semanas. La llevamos a veterinario hace dos.dias. le dio un antibiótico y homeoprasol. \N \N \N \N \N \N +249 2025-07-09 23:47:57.294367+00 2025-07-09 23:47:57.294375+00 f t [["2025-07-10", "Mañana"], ["2025-07-09", "Noche"], ["2025-07-10", "Tarde"]] rejected 3324 4266 \N No come, pis con sangre \N \N \N \N \N \N +246 2025-07-09 21:54:17.960339+00 2025-07-09 21:54:17.960348+00 f t [["2025-07-09", "Noche"], ["2025-07-09", "Tarde"], ["2025-07-09", "Mañana"]] coordinated 3316 4256 \N comio pollo de la basura, posiblemente comio otra cosa y estuvo vomitando, con dolor abdominal, le hicimos un analisis de sangre y dieron mal varios valores y nos pidieron una eco. \N 2025-07-09 03:00:00+00 21:00:00 \N 90 \N +248 2025-07-09 23:03:08.005885+00 2025-07-09 23:03:08.005896+00 f t [["2025-07-10", "Mañana"], ["2025-07-11", "Tarde"], ["2025-07-12", "Mañana"]] coordinated 3321 4263 \N Está encerrada en una esquina adentro de un rack de cables y no la podemos sacar. Fue operada hace 2 días y desde ahí no come ni va al baño. Está petrificada y no la podemos sacar. Necesitamos que alguien nos ayude a sacarla de ahí y poder ver cómo está de la cirugía y darle comida y agua \N \N \N \N \N \N +251 2025-07-10 13:23:32.857321+00 2025-07-10 13:23:32.857329+00 f t [["2025-07-10", "Noche"], ["2025-07-10", "Mañana"], ["2025-07-10", "Noche"]] rejected 3351 4292 \N Está llorando y no se puede parar. Creería que no tiene recuperación pero quiero que lo vea un especialista urgente y me de su opinión. Está sufriendo mucho pobre \N \N \N \N \N \N +252 2025-07-10 15:29:13.051782+00 2025-07-10 15:29:13.05179+00 f t [["2025-07-10", "Tarde"], ["2025-07-11", "Mañana"], ["2025-07-10", "Noche"]] coordinated 3361 4305 \N Está vomitando la comida hace tres días, a veces en el vómito se ven los granitos de la comida balanceada y a veces es más diluido. Sus dueños están de viaje y ella está siendo cuidada por familiares, pensamos que puede ser estrés. \N \N \N \N \N \N +250 2025-07-09 23:55:38.376133+00 2025-07-09 23:55:38.376142+00 f t [["2025-07-12", "Mañana"], ["2025-07-12", "Tarde"], ["2025-07-13", "Tarde"]] coordinated 3323 4265 \N Hace un año tuve a ni bebe y desde hace unos 6 meses que viene vomitando mucho. Bajo de peso. \nCambiamos la comida y sigue vomitando. \N \N \N \N \N \N +254 2025-07-10 20:24:04.479765+00 2025-07-10 20:24:04.479777+00 f t [["2025-07-10", "Mañana"], ["2025-07-10", "Tarde"], ["2025-07-10", "Noche"]] coordinated 3379 4322 \N Esta con calmantes orales pero hoy no quiere comer y no le puedo dar sus calmantes. \N \N \N \N \N \N +258 2025-07-11 05:09:21.138804+00 2025-07-11 05:09:21.138813+00 f t [["2025-07-16", "Tarde"], ["2025-07-12", "Tarde"], ["2025-07-11", "Tarde"]] rejected 3398 4346 \N Se rasca mucho las patas el lado de arriba el pecho y parece q le pica la cola!! \N \N \N \N \N \N +257 2025-07-11 04:16:31.320735+00 2025-07-11 04:16:31.320751+00 f t [["2025-07-11", "Mañana"], ["2025-07-11", "Mañana"], ["2025-07-11", "Tarde"]] rejected 3397 4345 \N Se comió una tapitw de la lapicera y le cuesta respirar parece. Está como con arcadas hace 2 horas. Vomitovblanco 2 veces. \N \N \N \N \N \N +256 2025-07-11 02:14:45.361264+00 2025-07-11 02:14:45.361273+00 f t [["2025-07-11", "Tarde"], ["2025-07-12", "Mañana"], ["2025-07-11", "Noche"]] rejected 3394 4342 \N La gatita está estornudando con secreción. Tiene VIF por ende me da miedo que empeore su estado de salud. \N \N \N \N \N \N +253 2025-07-10 18:14:51.074029+00 2025-07-10 18:14:51.074038+00 f t [["2025-07-10", "Noche"], ["2025-07-11", "Mañana"], ["2025-07-11", "Tarde"]] rejected 3373 4317 \N La atropelló un auto el martes por la tarde, estuvo internada y le hicieron todos los estudios pertinentes menos la radiografía. \N \N \N \N \N \N +243 2025-07-08 23:18:52.818914+00 2025-07-08 23:18:52.818924+00 f t [["2025-07-09", "Noche"], ["2025-07-09", "Tarde"], ["2025-07-10", "Noche"]] rejected 3278 4216 \N Radiografia de torax \N \N \N \N \N \N +259 2025-07-11 22:52:55.462039+00 2025-07-11 22:52:55.462048+00 f t [["2025-07-12", "Mañana"], ["2025-07-12", "Tarde"], ["2025-07-11", "Noche"]] rejected 3437 4385 \N Fiebre y decaimientos \N \N \N \N \N \N +260 2025-07-11 22:56:56.409519+00 2025-07-11 22:56:56.409531+00 f t [["2025-07-15", "Mañana"], ["2025-07-15", "Tarde"], ["2025-07-15", "Noche"]] coordinated 3436 4384 \N Perdida de peso \N \N \N \N \N \N +262 2025-07-12 21:24:46.286794+00 2025-07-12 21:24:46.286805+00 f t [["2025-07-12", "Noche"], ["2025-07-13", "Mañana"], ["2025-07-13", "Tarde"]] rejected 3486 4439 \N No esta comiendo hace 48 horas, vómitos espuma blanca hace 24 horas, secreción blanca en geniales. \N \N \N \N \N \N +261 2025-07-12 14:54:14.033245+00 2025-07-12 14:54:14.033254+00 f t [["2025-07-12", "Tarde"], ["2025-07-12", "Noche"], ["2025-07-13", "Mañana"]] rejected 3466 4415 \N Perdida de apetito y vómitos desde hace 48 y Estreñimiento. \N \N \N \N \N \N +264 2025-07-13 00:27:05.846024+00 2025-07-13 00:27:05.846037+00 f t [["2025-07-12", "Noche"], ["2025-07-12", "Tarde"], ["2025-07-12", "Mañana"]] rejected 3495 4448 \N Mi gato de 7 años empezó a actuar medio caído, notamos que pierde unas gotitas de orina con sangre. Primera vez, hasta ayer estuvo normal. \N \N \N \N \N \N +615 2025-09-21 19:46:42.917192+00 2025-09-21 19:46:42.917201+00 f t [["2025-09-25", "evening"]] confirmado 7955 8397 114 \N \N 2025-09-21 03:00:00+00 21:30:00 127030065932 82 \N +263 2025-07-13 00:16:07.766622+00 2025-07-13 00:16:07.766631+00 f t [["2025-07-12", "Noche"], ["2025-07-13", "Mañana"], ["2025-07-12", "Tarde"]] rejected 3492 4445 \N No está comiendo. Hace un sonido extraño al respirar \N \N \N \N \N \N +619 2025-09-21 21:13:43.157511+00 2025-09-21 21:13:43.157523+00 f t [["2025-09-25", "evening"]] confirmado 7955 8397 114 \N 114 2025-09-25 03:00:00+00 21:00:00 127032777030 77 \N +268 2025-07-14 02:32:39.682654+00 2025-07-14 02:32:39.682664+00 f t [["2025-07-16", "Noche"], ["2025-07-14", "Noche"], ["2025-07-17", "Tarde"]] coordinated 3558 4512 \N Necesita vacunacion \N \N \N \N \N \N +271 2025-07-14 21:43:21.250436+00 2025-07-14 21:43:21.250448+00 f t [["2025-07-14", "Mañana"], ["2025-07-15", "Mañana"], ["2025-07-14", "Tarde"]] rejected 3604 4562 \N Se comió la grasa que sacamos de las cañerias \N \N \N \N \N \N +274 2025-07-15 15:58:23.749968+00 2025-07-15 15:58:23.749977+00 f t [["2025-07-15", "Noche"], ["2025-07-16", "Mañana"], ["2025-07-16", "Tarde"]] coordinated 3658 4616 \N Es una paciente renal crónica, de casi 5 años de edad, diagnosticada en el 2021 (sindrome riñon grande-chico) ERC estadio 4 en 2021 con remisión a estadio 2. Toma medicación diaria y dieta renal.Crisis regulares con evolución positiva. última crisis empezó el jueves con vómitos. Hace 2 dias que no defeca, ayer hubo micción. Queremos evaluar cuadro en casa, viendo si es necesario la eutanasia o hay algo paliativo para proceder. \N \N \N \N \N \N +276 2025-07-15 20:32:48.88983+00 2025-07-15 20:32:48.889838+00 f t [["2025-07-17", "Tarde"], ["2025-07-17", "Mañana"], ["2025-07-17", "Noche"]] coordinated 3674 4634 \N Gato se cayó hace una semana, duerme más de lo debido, no está tomando líquidos. Charly apareció el año pasado a casa y no tenemos un estudio de él solo está castrado, es muy miedoso \N \N \N \N \N \N +278 2025-07-16 01:43:06.929816+00 2025-07-16 01:43:06.929827+00 f t [["2025-07-17", "Tarde"], ["2025-07-17", "Noche"], ["2025-07-17", "Mañana"]] coordinated 3686 4645 \N Tiene orden ecografía abdominal \N 2025-07-17 03:00:00+00 13:00:00 \N 90 \N +280 2025-07-17 00:49:22.650968+00 2025-07-17 00:49:22.650979+00 f t [["2025-07-16", "Noche"], ["2025-07-16", "Tarde"], ["2025-07-16", "Mañana"]] rejected 3749 4710 \N Decaimiento, inapetencia, cambios de ánimo, temblor predominio de pelvis, cadera, patas traseras. \N \N \N \N \N \N +284 2025-07-17 14:20:14.037155+00 2025-07-17 14:20:14.037163+00 f t [["2025-07-17", "Noche"], ["2025-07-18", "Mañana"], ["2025-07-18", "Tarde"]] coordinated 3772 4732 \N Diarrea con sangre \N 2025-07-17 03:00:00+00 19:00:00 \N 92 \N +625 2025-09-22 15:07:46.924009+00 2025-09-22 15:07:46.924018+00 f t [["2025-09-22", "afternoon"]] in_progress_vet 8006 8385 \N \N 1583 \N \N \N \N \N +287 2025-07-18 01:14:41.183114+00 2025-07-18 01:14:41.183123+00 f t [["2025-07-18", "Noche"], ["2025-07-21", "Noche"], ["2025-07-22", "Noche"]] coordinated 3807 4774 \N El perro no presenta ningún síntoma raro, pero me gustaría hacer la consulta virtual para ver cómo puedo mejorar el hecho de que se estresa mucho cuando tiene que ir al veterinario y por eso trato de evitarle ese momento. Por ende, al perro le faltan vacunas y quisiera hacerle un chequeo de su salud para ver si está todo bien. Hoy me di cuenta que parece que tiene una pupila dilatada y no sé bien porque puede ser. Es un Border collie de 1 año y medio, gracias \N \N \N \N \N \N +293 2025-07-20 12:54:02.663923+00 2025-07-20 12:54:02.663936+00 f t [["2025-07-20", "Mañana"], ["2025-07-20", "Mañana"], ["2025-07-20", "Mañana"]] rejected 3938 4906 \N Vómitos con sangre, decaimiento, dolor y malestar general. Tiene orden para una ecografia \N \N \N \N \N \N +289 2025-07-18 23:31:56.561661+00 2025-07-18 23:31:56.56167+00 f t [["2025-07-18", "Noche"], ["2025-07-18", "Noche"], ["2025-07-18", "Noche"]] rejected 3849 4816 \N Se descompuso hace un rato \N \N \N \N \N \N +297 2025-07-21 13:51:05.197513+00 2025-07-21 13:51:05.197525+00 f t [["2025-07-23", "Mañana"], ["2025-07-24", "Mañana"], ["2025-07-25", "Mañana"]] coordinated 4021 4989 \N Se rasca y se esta sacando el pelo, tiene colorado podria ser una reaccion alergica, un hongo o alguna otra cosa. \N \N \N \N \N \N +295 2025-07-20 19:26:18.76494+00 2025-07-20 19:26:18.764947+00 f t [["2025-07-20", "Noche"], ["2025-07-20", "Tarde"], ["2025-07-20", "Mañana"]] rejected 3964 4932 \N Le cuesta caminar, renguea, la semana pasada me dijeron que estaba contracturada le inyectaron un relajante, y le dieron unas pastillas, fue a control el jueves y le dieron el alta, pero hoy de nuevo de la nada empezo a renguear \N \N \N \N \N \N +291 2025-07-19 20:28:25.071239+00 2025-07-19 20:28:25.071247+00 f t [["2025-07-22", "Noche"], ["2025-07-22", "Tarde"], ["2025-07-22", "Mañana"]] rejected 3898 4771 \N Recetada por veterinario para control \N \N \N \N \N \N +244 2025-07-09 16:03:00.319646+00 2025-07-09 16:03:00.319653+00 f t [["2025-07-10", "Noche"], ["2025-07-11", "Noche"], ["2025-07-14", "Noche"]] rejected 3301 4239 \N está muy lastimada y con un agujero importante en la zona derecha entre la nariz y el ojo \N \N \N \N \N \N +300 2025-07-22 14:46:39.539764+00 2025-07-22 14:46:39.539772+00 f t [["2025-07-22", "Noche"], ["2025-07-22", "Noche"], ["2025-07-22", "Tarde"]] coordinated 4073 1009 \N Está con vómitos. Desde el domingo ya son 4 veces. \N 2025-07-22 03:00:00+00 14:30:00 \N 91 \N +302 2025-07-23 11:39:07.77001+00 2025-07-23 11:39:07.770019+00 f t [["2025-07-23", "Tarde"], ["2025-07-24", "Tarde"], ["2025-07-25", "Tarde"]] coordinated 4133 5107 \N Tienen dos bolas detectadas y no sabemos de que son \N \N \N \N \N \N +304 2025-07-24 11:31:51.294622+00 2025-07-24 11:31:51.29463+00 f t [["2025-07-24", "Mañana"], ["2025-07-24", "Tarde"], ["2025-07-24", "Noche"]] coordinated 4182 5157 \N La perrita es de un señor mayor, yo soy amiga de la familia. El martes 22 de julio lo ayude a llevar a Saya al veterinario, dónde le indicaron medicamentos para el dolor agudo y suplementos para la vejez, ella ya está ciega y sorda. Pero se sumaron ataques de epilepsias y ya no quiere comer. Su dueño no quiere que sufra \N 2025-07-24 03:00:00+00 13:00:00 \N 88 \N +307 2025-07-25 09:05:15.232969+00 2025-07-25 09:05:15.23298+00 f t [["2025-07-25", "Mañana"], ["2025-07-25", "Tarde"], ["2025-07-25", "Noche"]] coordinated 4236 5218 \N Está teniendo muchos vómitos y falta de apetito \N 2025-07-25 03:00:00+00 11:00:00 \N 1 \N +308 2025-07-25 12:44:42.889727+00 2025-07-25 12:44:42.889739+00 f t [["2025-07-26", "Tarde"], ["2025-07-26", "Mañana"], ["2025-07-26", "Noche"]] rejected 4242 5224 \N Hizo dos veces en diferentes periodos caca con un poco de mocosidad y sangre \N \N \N \N \N \N +314 2025-07-26 16:24:10.224967+00 2025-07-26 16:24:10.224975+00 f t [["2025-07-26", "Tarde"], ["2025-07-27", "Mañana"], ["2025-07-26", "Noche"]] coordinated 4307 5292 \N Viene muy mal estomacalmente, vomita bilis, hace caca sangre \N \N \N \N \N \N +497 2025-09-02 22:26:30.369818+00 2025-09-02 22:26:30.36983+00 f t [["2025-09-04", "Tarde"], ["2025-09-03", "Tarde"], ["2025-09-04", "Noche"]] in_progress_vet 6751 7836 \N Vómitos y falta de apetito 113 \N \N \N \N \N +316 2025-07-27 06:05:23.445383+00 2025-07-27 06:05:23.445396+00 f t [["2025-07-27", "Tarde"], ["2025-07-27", "Noche"], ["2025-07-27", "Mañana"]] rejected 4336 5321 \N Hace más de 10 días que esta rengo de la pata dela terapia izquierda. Le dieron calmante inyectable. Y este martes pasado en la revisión tmb le dieron una inyección más tramado más un antinflamatorio. Hoy no se puede parar \N \N \N \N \N \N +319 2025-07-28 12:06:17.374959+00 2025-07-28 12:06:17.37497+00 f t [["2025-07-28", "Mañana"], ["2025-07-28", "Tarde"], ["2025-07-28", "Noche"]] coordinated 4403 5389 \N Hace 3 días que está comiendo con dificultad. Tiene hambre, pero no le convence la comida. Y entre ayer y hoy vómito 2 veces. Además notamos desde el 1er día una molestia en una oreja que se rasca. Es VIF positivo y come Barf \N \N \N \N \N \N +323 2025-07-28 23:14:07.267396+00 2025-07-28 23:14:07.267407+00 f t [["2025-07-30", "Mañana"], ["2025-07-30", "Tarde"], ["2025-07-30", "Noche"]] coordinated 4457 5446 \N Tiene aproximadamente 14 años, la veo decaída y creo que está teniendo problemas de huesos \N \N \N \N \N \N +326 2025-07-29 13:09:22.598892+00 2025-07-29 13:09:22.598901+00 f t [["2025-07-29", "Tarde"], ["2025-07-30", "Mañana"], ["2025-07-29", "Noche"]] coordinated 4489 5477 \N Esta hace unos días, sin comer, le aplicaron suero. \N \N \N \N \N \N +328 2025-07-29 16:05:15.092055+00 2025-07-29 16:05:15.092068+00 f t [["2025-07-29", "Mañana"], ["2025-07-29", "Tarde"], ["2025-07-30", "Noche"]] rejected 4509 5500 \N Hace 24 hs no se levanta no come, se hizo pis ycaca encima, vomito baba, no se mueve \N \N \N \N \N \N +322 2025-07-28 22:09:13.582739+00 2025-07-28 22:09:13.582747+00 f t [["2025-07-29", "Noche"], ["2025-07-30", "Mañana"], ["2025-07-31", "Tarde"]] rejected 4454 4604 \N Letargo, mirada perdida , perdida de equilibrio \N \N \N \N \N \N +330 2025-07-29 20:02:12.606969+00 2025-07-29 20:02:12.606982+00 f t [["2025-07-30", "Tarde"], ["2025-07-29", "Noche"], ["2025-07-30", "Noche"]] rejected 4524 5516 \N Motivo Ecografia: control por secreción vulgar\nLos hallazgos al momento del estudio sugieren: \nRiñones seniles\nHepatopatia difusa de aspecto metabólico\nEndometritis\nQuistes ovarios\nAdemás hace 3 días que no come, solo toma agua, esta débil, todo el día tirada, mancha con sangre, respira agitada \N \N \N \N \N \N +332 2025-07-30 17:59:31.969978+00 2025-07-30 17:59:31.969991+00 f t [["2025-07-30", "Noche"], ["2025-07-30", "Tarde"], ["2025-07-30", "Mañana"]] rejected 4574 5572 \N Sistitis \N \N \N \N \N \N +334 2025-07-31 15:08:32.206825+00 2025-07-31 15:08:32.206838+00 f t [["2025-07-31", "Noche"], ["2025-08-01", "Mañana"], ["2025-08-01", "Tarde"]] rejected 4629 5629 \N Pelones en los ojos, irritación en la piel, ojos hinchados \N \N \N \N \N \N +338 2025-08-01 14:20:14.206825+00 2025-08-01 14:20:14.206837+00 f t [["2025-08-01", "Noche"], ["2025-08-01", "Tarde"], ["2025-08-02", "Mañana"]] coordinated 4707 5706 \N en ecografías anteriores que le hice por temblores y vomitos le salió este informe: \n\nLos hallazgos ultrasonográficos observados sugieren:\n- Linfopatía pancreaticoduodenal reactiva.\n- Intestino: enteropatía inflamatoria. Abundante contenido gaseoso en colon.\n- La ausencia de notch a nivel de la arteria mesentérica craneal se da en\nenteropatías perdedoras de proteínas. Sugiero correlacionar dicho hallazgo con\nla clínica del paciente.\n- Riñones: hallazgo que puede ser normal en razas toy o darse asociado a\nendocrinopatías.\n\nqueremos repetir la eco para poder mostrarle a la gastroenteróloga \N \N \N \N \N \N +336 2025-08-01 01:01:28.640053+00 2025-08-01 01:01:28.640064+00 f t [["2025-08-07", "Noche"], ["2025-08-08", "Noche"], ["2025-08-09", "Noche"]] coordinated 4670 4774 \N El perro se lo ve bien, pero le faltan esas vacunas ya que no es fácil llevarlo al veterinario porque se pone medio nervioso. Aclaro que es un Border collie de 1 año y medio más que nada por las vacunas. Gracias \N \N \N \N \N \N +340 2025-08-01 21:34:15.743538+00 2025-08-01 21:34:15.743547+00 f t [["2025-08-09", "Mañana"], ["2025-08-10", "Mañana"], ["2025-08-15", "Mañana"]] rejected 4729 5729 \N Se los mandaron de control \N \N \N \N \N \N +342 2025-08-02 05:51:36.961993+00 2025-08-02 05:51:36.962005+00 f t [["2025-08-02", "Tarde"], ["2025-08-02", "Mañana"], ["2025-08-02", "Noche"]] rejected 4750 5751 \N Posible intoxicación. El tercer párpado esta permanente.\nDiarrea y 1 vómito. \N \N \N \N \N \N +344 2025-08-02 14:08:52.134346+00 2025-08-02 14:08:52.134358+00 f t [["2025-08-02", "Tarde"], ["2025-08-02", "Noche"], ["2025-08-03", "Tarde"]] rejected 4758 5759 \N Iniciar tto farmacológico con etólogo \N \N \N \N \N \N +348 2025-08-03 12:42:00.828257+00 2025-08-03 12:42:00.82827+00 f t [["2025-08-04", "Mañana"], ["2025-08-04", "Tarde"], ["2025-08-04", "Noche"]] coordinated 4797 5802 \N Vomito y no recibe alimento tres días \N \N \N \N \N \N +346 2025-08-03 08:16:32.978086+00 2025-08-03 08:16:32.978101+00 f t [["2025-08-03", "Mañana"], ["2025-08-03", "Tarde"], ["2025-08-03", "Noche"]] rejected 4791 5796 \N Vomito y no recibe alimento dos días \N \N \N \N \N \N +350 2025-08-04 11:56:35.081612+00 2025-08-04 11:56:35.081626+00 f t [["2025-08-04", "Mañana"], ["2025-08-04", "Tarde"], ["2025-08-04", "Noche"]] coordinated 4838 5844 \N No tiene apetito, vomita, no come, no camina \N \N \N \N \N \N +349 2025-08-03 20:17:52.689741+00 2025-08-03 20:17:52.68975+00 f t [["2025-08-04", "Noche"], ["2025-08-05", "Mañana"], ["2025-08-05", "Tarde"]] coordinated 4809 5815 \N Hace casi dos semanas le cuesta ir al baño a hacer caca, va al baño como si tuviera ganas, hace el espasmo y todo pero no puede hacer caca. Cada varios día logra hacer y lo que hace es normal pero es poquito para la cantidad de días. Pis hacia normal pero hace días que arranca a hacer pis sentado y se termina parando mientras hace. Lo lleve a la veterinaria hace una semana y me dieron un laxante pero sigue igual. Me dijeron que si seguía así le iba a tener que hacer análisis de orina para ver si tenía una infección por eso ya hago la consulta con el turno para laboratorio \N \N \N \N \N \N +353 2025-08-04 20:31:33.787421+00 2025-08-04 20:31:33.787431+00 f t [["2025-08-04", "Noche"], ["2025-08-04", "Noche"], ["2025-08-05", "Noche"]] coordinated 4880 5889 \N Últimamente no está pudiendo levantarse solo, ni caminar, se paspa porque se hace pis acostado, y se arranca los pañales. Es un labrador de 14 años, muy grandote de cuerpo \N \N \N \N \N \N +357 2025-08-05 21:51:45.460956+00 2025-08-05 21:51:45.460967+00 f t [["2025-08-06", "Mañana"], ["2025-08-06", "Mañana"], ["2025-08-06", "Mañana"]] in_progress_vet 4942 5951 \N Vacunación anual \N \N \N \N \N \N +359 2025-08-06 03:58:13.06828+00 2025-08-06 03:58:13.068292+00 f t [["2025-08-07", "Tarde"], ["2025-08-15", "Noche"], ["2025-08-16", "Tarde"]] rejected 4962 5971 \N Lomo \N \N \N \N \N \N +315 2025-07-26 22:42:46.692153+00 2025-07-26 22:42:46.692161+00 f t [["2025-07-26", "Noche"], ["2025-07-27", "Mañana"], ["2025-07-27", "Tarde"]] rejected 4326 5311 \N Pero de 18 años en fin de vida \N \N \N \N \N \N +310 2025-07-25 16:28:34.078486+00 2025-07-25 16:28:34.078495+00 f t [["2025-08-08", "Tarde"], ["2025-08-01", "Tarde"], ["2025-07-31", "Tarde"]] coordinated 4255 5240 \N Revisión general y vacunación \N 2025-08-01 03:00:00+00 14:30:00 \N 68 \N +306 2025-07-25 00:31:20.555753+00 2025-07-25 00:31:20.555766+00 f t [["2025-07-25", "Noche"], ["2025-07-26", "Tarde"], ["2025-07-26", "Noche"]] rejected 4229 5211 \N Ecografía Abdominal por enzimas hepaticas elevadas \N \N \N \N \N \N +309 2025-07-25 16:26:24.620657+00 2025-07-25 16:26:24.620671+00 f t [["2025-07-26", "Mañana"], ["2025-07-26", "Tarde"], ["2025-07-26", "Noche"]] coordinated 4257 167 \N molestia en los oidos \N \N \N \N \N \N +317 2025-07-27 17:02:35.539002+00 2025-07-27 17:02:35.539011+00 f t [["2025-07-28", "Tarde"], ["2025-07-29", "Tarde"], ["2025-07-30", "Tarde"]] coordinated 4353 5339 \N Tumor de mama avanzado progresivo.\nÚltimo coágulograma cardiología y sangre ya tiene.\nNo quiere trasladarse a clínica para operarse. Necesitamos traslado cirugía y post operatorio. \N \N \N \N \N \N +379 2025-08-10 21:02:48.337475+00 2025-08-10 21:02:48.337488+00 f t [["2025-08-12", "Mañana"], ["2025-08-12", "Tarde"], ["2025-08-12", "Noche"]] payed 5227 562 \N Me gustaria limpiar oidos y cortar las uñas si es necesario 1208 \N \N RD06ZO9W1WZW05V125GP7X \N \N +311 2025-07-26 13:27:07.109012+00 2025-07-26 13:27:07.10902+00 f t [["2025-07-26", "Mañana"], ["2025-07-26", "Tarde"], ["2025-07-26", "Noche"]] coordinated 4291 5278 \N Desde ayer la perra está con vomito y diarrea sin ánimo de comer \N \N \N \N \N \N +382 2025-08-11 23:35:47.29228+00 2025-08-11 23:35:47.292366+00 f t [["2025-08-11", "Noche"], ["2025-08-12", "Mañana"], ["2025-08-12", "Tarde"]] in_progress_vet 5304 6323 \N Abultado en el ano 113 \N \N \N \N \N +320 2025-07-28 15:06:01.711781+00 2025-07-28 15:06:01.711825+00 f t [["2025-07-29", "Tarde"], ["2025-07-29", "Noche"], ["2025-07-29", "Mañana"]] rejected 4410 5397 \N Hola,tiene la oreja izquierda muy inflamada,y se rosa con algo le duele muchisimo. \N \N \N \N \N \N +312 2025-07-26 13:56:08.688844+00 2025-07-26 13:56:08.688852+00 f t [["2025-07-26", "Tarde"], ["2025-07-26", "Noche"], ["2025-07-26", "Mañana"]] coordinated 4294 5281 \N Paciente viejita, antecedentes de melanoma con mandibulectomia hace 2 años, actualmente con sme paraneoplasico ciega. Evolucionó en los últimos 2 meses con deterioro en su cuadro general, desde ayer no se levanta y no come le doy agua en jeringa \N \N \N \N \N \N +324 2025-07-29 00:15:25.405085+00 2025-07-29 00:15:25.405097+00 f t [["2025-07-29", "Mañana"], ["2025-07-29", "Tarde"], ["2025-07-29", "Noche"]] coordinated 4465 5453 \N No se puede levantar y llora. Cua do logra levantarse esta encorbado como gato. \N \N \N \N \N \N +325 2025-07-29 13:06:10.698706+00 2025-07-29 13:06:10.698718+00 f t [["2025-07-29", "Tarde"], ["2025-07-30", "Tarde"], ["2025-07-29", "Mañana"]] coordinated 4491 5480 \N Es un perrito que apareció de la calle, tiene lastimada la piel en algunas partes y está muy desnutrido. \N \N \N \N \N \N +329 2025-07-29 16:26:58.920129+00 2025-07-29 16:26:58.920143+00 f t [["2025-07-29", "Tarde"], ["2025-07-30", "Mañana"], ["2025-07-30", "Mañana"]] rejected 4511 5502 \N Tiene obstrucción en el intestino delgado. Posible linfomona \N \N \N \N \N \N +327 2025-07-29 14:36:11.139421+00 2025-07-29 14:36:11.13943+00 f t [["2025-07-30", "Mañana"], ["2025-07-31", "Mañana"], ["2025-07-30", "Tarde"]] rejected 4495 5484 \N Examen pre quirúrgico \N \N \N \N \N \N +331 2025-07-30 15:45:56.09817+00 2025-07-30 15:45:56.098182+00 f t [["2025-07-30", "Tarde"], ["2025-07-31", "Tarde"], ["2025-07-30", "Noche"]] coordinated 4568 5564 \N Encontré caca con sangre una única vez pero quería saber que podía ser. Por otro lado está mucho más demandante últimamente. Maúlla mucho más y pide atención cuando no solía ser así, me llama la atención \N \N \N \N \N \N +333 2025-07-31 13:59:01.39769+00 2025-07-31 13:59:01.3977+00 f t [["2025-07-31", "Tarde"], ["2025-08-01", "Mañana"], ["2025-07-31", "Mañana"]] coordinated 4625 5625 \N Hace aprox 72 horas esta como con arcadas, no llega a ser vomito y un episodio de diarrea aislado. Toma agua, come (poco), hace pis y se lo ve decaido \N \N \N \N \N \N +335 2025-07-31 18:43:09.969289+00 2025-07-31 18:43:09.969303+00 f t [["2025-08-01", "Mañana"], ["2025-08-04", "Mañana"], ["2025-08-06", "Mañana"]] coordinated 4648 5649 \N Picazón, se rasca el cuello hasta quedar en carne viva. \N \N \N \N \N \N +337 2025-08-01 07:24:42.458585+00 2025-08-01 07:24:42.458596+00 f t [["2025-08-01", "Mañana"], ["2025-08-01", "Mañana"], ["2025-08-02", "Mañana"]] rejected 4685 5685 \N Tiene vómito, diarrea y no quiere comer \N \N \N \N \N \N +339 2025-08-01 18:45:56.930687+00 2025-08-01 18:45:56.930698+00 f t [["2025-08-02", "Mañana"], ["2025-08-02", "Tarde"], ["2025-08-02", "Noche"]] rejected 4722 5722 \N La perra tiene un tumor mamario y el veterinario me pide radiografia de torax urgente por posibles complicaciones respiratorias \N \N \N \N \N \N +341 2025-08-02 02:30:59.823643+00 2025-08-02 02:30:59.823654+00 f t [["2025-08-02", "Mañana"], ["2025-08-02", "Tarde"], ["2025-08-02", "Mañana"]] coordinated 4742 5743 \N Dolor de espalda \N \N \N \N \N \N +345 2025-08-02 15:39:05.579372+00 2025-08-02 15:39:05.579382+00 f t [["2025-08-04", "Noche"], ["2025-08-04", "Noche"], ["2025-08-04", "Noche"]] rejected 4761 5762 \N Tiene parasitos desde muy bebé, son los parasitos blancos muchas veces salen en sus cacas y por momentos no, tiene diarrea constante (hace unos meses lo llevamos al veterinario y le dieron una inyección para algo intestinal que hacia que haga con diarrea. No sirvió de mucho porque al tiempo volvio a hacer de esa forma. Ahora está muy delgado. Come y duerme, cada tanto lo llevo afuera para que camine y se ve un poco mejor. Pero los parasitos no lo dejan tomar peso está muy debil. Tiene 2 años y tampoco estuvo alzado en ningún momento. No sé si es por los parasitos o por otra enfermedad \N \N \N \N \N \N +343 2025-08-02 13:26:59.676275+00 2025-08-02 13:26:59.676285+00 f t [["2025-08-02", "Noche"], ["2025-08-04", "Noche"], ["2025-08-02", "Noche"]] coordinated 4756 5757 \N Fiebre \N \N \N \N \N \N +347 2025-08-03 08:40:28.252267+00 2025-08-03 08:40:28.252278+00 f t [["2025-08-03", "Tarde"], ["2025-08-03", "Mañana"], ["2025-08-03", "Noche"]] coordinated 4794 5799 \N Vómitos constantes \N \N \N \N \N \N +352 2025-08-04 20:12:14.087928+00 2025-08-04 20:12:14.087938+00 f t [["2025-08-04", "Noche"], ["2025-08-05", "Mañana"], ["2025-08-05", "Tarde"]] rejected 4877 5886 \N Hola. Escribo porque Zelda, nuestra gata, está con malestar digestivo y colitis diagnosticada desde hace dos días, pero hoy no ha querido comer ni tomar líquidos, y está un poco dolorida al tocarle la panza y cerca de la cola. Ayer estaba mejor, pero hoy se ve menos activa. ¿Hay posibilidad de que puedan venir a casa a revisarla? Se estresa mucho yendo a clínica. Agradezco mucho si puede ser hoy, avísenme qué horario sería posible. Gracias. \N \N \N \N \N \N +351 2025-08-04 15:48:02.612158+00 2025-08-04 15:48:02.612168+00 f t [["2025-08-05", "Noche"], ["2025-08-05", "Tarde"], ["2025-08-05", "Mañana"]] rejected 4860 5867 \N No tiene vacunas \N \N \N \N \N \N +569 2025-09-15 01:32:33.850705+00 2025-09-15 01:32:33.850714+00 f t [["2025-09-18", "Mañana"], ["2025-09-18", "Mañana"], ["2025-09-18", "Noche"]] rejected 7548 8654 1583 Diabetes 1583 \N \N \N \N \N +354 2025-08-05 01:51:05.094788+00 2025-08-05 01:51:05.094803+00 f t [["2025-08-05", "Mañana"], ["2025-08-05", "Tarde"], ["2025-08-05", "Noche"]] coordinated 4903 5912 \N Hola buenas noches como esta?. Pienso sería necesario realizar una placa a mi perrita. Situacion: consulte con su veterinario quien diagnostico q puede ser muscular o oseo arterial al tocarle su cuello pero solo me ha dado calmantes desde hace una semana. Por eso me gustaria 2da opinion tal vez con estudio/placa. Cuando la lleve a control se estreso tanto q prefirio no tocarla x eso quiero evitar llevarla a algun lado. \nMuchisimas gracias x su atencion \N \N \N \N \N \N +376 2025-08-10 01:54:01.901397+00 2025-08-10 01:54:01.901409+00 f t [["2025-08-09", "Noche"], ["2025-08-10", "Noche"], ["2025-08-10", "Mañana"]] payed 5196 6214 \N No hace pis. Estuvimos en la guardia el martes 30/7. El 31 volvimos y lo medicaron. Mejoró, pero ahora sigue sin poder hacer pis. Tengo los estudios que mandaron a hacerle: eco, radiografía, de sangre y de orina 114 \N \N 30072866008250810 \N \N +355 2025-08-05 11:58:56.512229+00 2025-08-05 11:58:56.512243+00 f t [["2025-08-08", "Noche"], ["2025-08-09", "Tarde"], ["2025-08-11", "Noche"]] coordinated 4916 5925 \N A principios de Julio la vio la veterinaria Vicky porque tenía tos. Todos estos días estuvo bien pero hoy a la mañana comenzó nuevamente con la tos en una oportunidad. Quería si podía nuevamente revisarla. \N 2025-08-09 03:00:00+00 13:00:00 \N 88 \N +378 2025-08-10 20:13:03.120512+00 2025-08-10 20:13:03.120526+00 f t [["2025-08-10", "Noche"], ["2025-08-11", "Tarde"], ["2025-08-11", "Noche"]] rejected 5225 6243 \N Diarrea intensa 1208 \N \N \N \N \N +356 2025-08-05 19:21:43.180539+00 2025-08-05 19:21:43.180548+00 f t [["2025-08-14", "Mañana"], ["2025-08-14", "Tarde"], ["2025-08-15", "Mañana"]] in_progress_vet 4934 5943 \N Simón tiene asma y quiero saber si tiene otras alternativas de tratamiento además de puff que le ha recomendado otra profesional, ya que me es imposible administrarselo. Además quiero que tenga un veterinario de cabecera con el que poder tener un seguimiento \N \N \N \N \N \N +383 2025-08-12 02:30:21.859619+00 2025-08-12 02:30:21.859635+00 f t [["2025-08-12", "Mañana"], ["2025-08-12", "Tarde"], ["2025-08-12", "Noche"]] in_progress_vet 5316 6335 \N Tiene brotes en el cuerpo, principalmente en las patas y la cola, le da mucha picazón y se suele lastimar al rascarse donde se la nota muy dolorida 1208 \N \N \N \N \N +395 2025-08-14 03:02:43.00024+00 2025-08-14 03:02:43.000255+00 f t [["2025-08-14", "Mañana"], ["2025-08-14", "Tarde"], ["2025-08-14", "Noche"]] rejected 5458 6480 \N Mi perrita está con el abdomen completamente rígido, no se quiere mover la lleve a emergencias Panda, me mandaron a mi casa recomendando una eco. 1208 \N \N \N \N \N +386 2025-08-12 13:39:34.682026+00 2025-08-12 13:39:34.682039+00 f t [["2025-08-13", "Tarde"], ["2025-08-17", "Mañana"], ["2025-08-16", "Tarde"]] payed 5339 6358 \N Tiene una parte circular chica sin pelo, que le salio hace unos dias. \nEsta vacunado y desparasitado, lo llevamos este año. 1208 \N \N 61853811 \N \N +389 2025-08-13 11:23:34.190971+00 2025-08-13 11:23:34.190984+00 f t [["2025-08-13", "Mañana"], ["2025-08-14", "Mañana"], ["2025-08-15", "Mañana"]] rejected 5395 6414 \N Estuvo con vomitos y la vete me dio orden para eco para descartar que tenga algo 1208 \N \N \N \N \N +392 2025-08-13 18:17:26.132357+00 2025-08-13 18:17:26.132366+00 f t [["2025-08-18", "Mañana"], ["2025-08-18", "Tarde"], ["2025-08-18", "Noche"]] payed 5436 6456 \N Vacunas anuales 114 \N \N 38439998715 \N \N +414 2025-08-17 14:34:39.345917+00 2025-08-17 14:34:39.345925+00 f t [["2025-08-17", "Mañana"], ["2025-08-17", "Mañana"], ["2025-08-17", "Noche"]] in_progress_vet 5690 6720 \N Tiene los ojos hinchados 114 \N \N \N \N \N +408 2025-08-16 01:00:38.718495+00 2025-08-16 01:00:38.718507+00 f t [["2025-08-18", "Mañana"], ["2025-08-19", "Noche"], ["2025-08-21", "Mañana"]] payed 5607 6635 \N Control general 1208 \N \N 70155852009250816 \N \N +411 2025-08-17 00:36:02.496976+00 2025-08-17 00:36:02.496987+00 f t [["2025-08-17", "Mañana"], ["2025-08-17", "Tarde"], ["2025-08-17", "Noche"]] rejected 5660 6690 \N Obstrucción abdomen 114 \N \N \N \N \N +416 2025-08-18 00:42:01.861406+00 2025-08-18 00:42:01.861416+00 f t [["2025-08-18", "Mañana"], ["2025-08-18", "Tarde"], ["2025-08-18", "Noche"]] in_progress_vet 5721 6688 \N Dolor codo derecho y articulacion del hombro 1208 \N \N \N \N \N +418 2025-08-18 20:58:43.082038+00 2025-08-18 20:58:43.082047+00 f t [["2025-09-06", "Tarde"], ["2025-09-06", "Tarde"], ["2025-09-06", "Noche"]] rejected 5775 6809 \N Es solo para vacunar 113 \N \N \N \N \N +419 2025-08-18 22:18:21.496386+00 2025-08-18 22:18:21.496395+00 f t [["2025-08-25", "Tarde"], ["2025-08-26", "Tarde"], ["2025-08-21", "Noche"]] in_progress_pay 5783 6818 \N Mí vete le indicó una ecografía abdominal. 113 \N \N \N \N \N +422 2025-08-19 12:40:26.030657+00 2025-08-19 12:40:26.030671+00 f t [["2025-08-19", "Mañana"], ["2025-08-19", "Tarde"], ["2025-08-19", "Mañana"]] payed 5818 6853 \N Esta haciendo caca floja y se la ce enferma 1208 \N \N 122367044073 \N \N +421 2025-08-19 11:01:45.376782+00 2025-08-19 11:01:45.376795+00 f t [["2025-08-20", "Mañana"], ["2025-08-21", "Mañana"], ["2025-08-21", "Tarde"]] payed 5810 6845 \N Hola. Necesito hacer electrocardiograma y ecografia abdominal a mi gato de 15 años. El electro es para prequirurgico por carcinoma en su oreja. La eco abdominal es para evaluar alguna posible enfermedad por diarreas intermitentes 1208 \N \N 38507876089 \N \N +426 2025-08-20 04:24:42.400596+00 2025-08-20 04:24:42.400609+00 f t [["2025-08-20", "Mañana"], ["2025-08-20", "Tarde"], ["2025-08-21", "Mañana"]] payed 5884 6925 \N Vomitó unas 4 veces, comió poco, durmió más de lo normal y cuando la alzo y quiero moverla maúlla suave. 1208 \N \N 38519623372 \N \N +428 2025-08-20 21:52:13.715166+00 2025-08-20 21:52:13.715176+00 f t [["2025-08-20", "Mañana"], ["2025-08-20", "Mañana"], ["2025-08-20", "Mañana"]] rejected 5943 6987 \N Cuerpo extraño descartar 114 \N \N \N \N \N +430 2025-08-21 12:46:30.807239+00 2025-08-21 12:46:30.807249+00 f t [["2025-08-21", "Noche"], ["2025-08-21", "Tarde"], ["2025-08-21", "Mañana"]] payed 5971 7015 \N Tiene una infección bucal. 1208 \N \N 67561511 \N \N +432 2025-08-22 21:18:24.620902+00 2025-08-22 21:18:24.620915+00 f t [["2025-08-22", "Mañana"], ["2025-08-22", "Noche"], ["2025-08-23", "Mañana"]] rejected 6051 7112 \N Tos \nSospecha de asma 1583 \N \N \N \N \N +405 2025-08-15 19:13:11.19774+00 2025-08-15 19:13:11.197749+00 t t [["2025-08-19", "Mañana"], ["2025-08-19", "Mañana"], ["2025-08-20", "Mañana"]] pending 5585 6609 \N Tiene pulgas y como no tiene pelaje por algunas partes de su cuerpo me gustaría saber como tratarlo y que se chequee si esta todo bien \N \N \N \N \N \N +434 2025-08-23 02:51:09.09988+00 2025-08-23 02:51:09.099893+00 f t [["2025-08-23", "Mañana"], ["2025-08-24", "Tarde"], ["2025-08-24", "Mañana"]] payed 6070 7131 \N Estuvo con vomitos. 1208 \N \N 123393079700 \N \N +375 2025-08-09 22:41:35.322589+00 2025-08-09 22:41:35.322599+00 f t [["2025-08-11", "Mañana"], ["2025-08-12", "Mañana"], ["2025-08-13", "Mañana"]] payed 5161 6179 \N Ecografía abdominal derivada por la Dra. Daniela Ordoñez 1208 \N \N a8bad879-208d-4087-b0a5-4af147961da8 \N \N +387 2025-08-12 18:21:53.072168+00 2025-08-12 18:21:53.072183+00 f t [["2025-08-12", "Tarde"], ["2025-08-12", "Noche"], ["2025-08-13", "Mañana"]] rejected 5353 6371 \N Saco turno por derivación de la médica clínica. Hoy le encontraron dos tumores, uno en el hígado y el otro el la vesícula. \nEs un perro grande y no puede golpearse ni hacer esfuerzo por riesgo de una hemorragia interna por eso necesitamos realizarlo a domicilio 114 \N \N \N \N \N +380 2025-08-11 16:40:34.490054+00 2025-08-11 16:40:34.490064+00 f t [["2025-08-11", "Noche"], ["2025-08-13", "Noche"], ["2025-08-16", "Mañana"]] payed 5265 6282 \N Tiene una inflamacion en su colmillo derecho. Le solicitaron una RX de maxilar superior colmillo derecho. Ya hable por wa. Tengo orden. 1208 \N \N 121377657983 \N \N +447 2025-08-25 03:14:05.53195+00 2025-08-25 03:14:05.531965+00 f t [["2025-08-25", "Mañana"], ["2025-08-25", "Tarde"], ["2025-08-25", "Mañana"]] payed 6179 7243 \N Milo hizo caca con sangre 1208 \N \N 123607813780 \N \N +358 2025-08-06 00:44:26.49172+00 2025-08-06 00:44:26.491732+00 f t [["2025-08-22", "Tarde"], ["2025-08-18", "Tarde"], ["2025-08-12", "Tarde"]] coordinated 4958 5967 \N Chequeo general: corte de uñas, revisión bucal, información sobre chip. \N \N \N \N \N \N +360 2025-08-06 13:47:52.948078+00 2025-08-06 13:47:52.94809+00 f t [["2025-08-13", "Mañana"], ["2025-08-13", "Tarde"], ["2025-08-14", "Mañana"]] coordinated 4976 5985 \N Adopte el gatito y tengo que vacunarlo \N \N \N \N \N \N +361 2025-08-06 14:41:12.474198+00 2025-08-06 14:41:12.474207+00 f t [["2025-08-07", "Tarde"], ["2025-08-08", "Mañana"], ["2025-08-08", "Mañana"]] coordinated 4978 5987 \N Ayer fue operada de dos mastocitomas, el cirujano pidio control post cirugia (herida y estado general) en 48hs. \N \N \N \N \N \N +362 2025-08-06 17:35:04.490425+00 2025-08-06 17:35:04.490439+00 f t [["2025-08-07", "Tarde"], ["2025-08-08", "Tarde"], ["2025-08-09", "Mañana"]] coordinated 4988 5997 \N Le pica y le duele la oreja derecha muchísimo, le intenté limpiar pero sigue con lo mismo hace 2 días \N \N \N \N \N \N +364 2025-08-07 03:44:19.555092+00 2025-08-07 03:44:19.555103+00 f t [["2025-08-07", "Mañana"], ["2025-08-07", "Tarde"], ["2025-08-07", "Noche"]] in_progress_vet 5033 2792 \N Está sin ánimos de pararse. Desde el medio día que no lo hace. Tampoco tiene ganas de comer y se hizo pis encima dos veces. Ya habían venido a revisarlo por dolores en la columna \N \N \N \N \N \N +363 2025-08-06 18:27:56.89211+00 2025-08-06 18:27:56.892118+00 f t [["2025-08-07", "Tarde"], ["2025-08-07", "Noche"], ["2025-08-12", "Tarde"]] in_progress_vet 4993 5024 \N Tiene otitis y no se deja tratar, el perro es muy agresivo y tiene mucha fuerza. Me recetaron mepromazin pero aún asi me es imposible tratarlo. \N \N \N \N \N \N +384 2025-08-12 10:29:54.955332+00 2025-08-12 10:29:54.955346+00 f t [["2025-08-12", "Tarde"], ["2025-08-12", "Noche"], ["2025-08-12", "Mañana"]] rejected 5326 6345 \N Mi perra despertó 6:00am y empezó a temblar como si tuviera frío, pensé que quizá quería vomitar porque normalmente cuando se pone así es por eso; le di agua, le di su snacks y todo tranqui; la subí a la cama pero empezó a temblar y a jadear. Está acostada boca abajo como en síntomas de dolor de estómago. Pero no sé si sea realmente eso. 1208 \N \N \N \N \N +1331 2025-10-31 21:46:21.976684+00 2025-10-31 21:46:21.976693+00 f t [["2025-10-31", "Tarde"], ["2025-11-01", "Mañana"], ["2025-11-02", "Tarde"]] rejected 11110 12089 1208 chequeo y vacunacion triple felina 1208 2025-11-01 03:00:00+00 11:00:00 \N \N \N +365 2025-08-07 16:18:35.493118+00 2025-08-07 16:18:35.493133+00 f t [["2025-08-07", "Tarde"], ["2025-08-08", "Noche"], ["2025-08-07", "Noche"]] rejected 5057 6072 \N Esta con vómitos, no come ni toma agua. \N \N \N \N \N \N +390 2025-08-13 15:02:02.206099+00 2025-08-13 15:02:02.206111+00 f t [["2025-08-18", "Noche"], ["2025-08-18", "Noche"], ["2025-08-18", "Noche"]] completed 5418 6437 \N Chequeos generales 1208 2025-08-18 03:00:00+00 20:30:00 0000000 80 \N +396 2025-08-14 04:42:37.469909+00 2025-08-14 04:42:37.469918+00 f t [["2025-08-14", "Mañana"], ["2025-08-14", "Tarde"], ["2025-08-14", "Noche"]] in_progress_vet 5465 6487 \N Parpado lastimado 1208 \N \N \N \N \N +393 2025-08-13 22:05:31.51407+00 2025-08-13 22:05:31.51408+00 f t [["2025-08-13", "Noche"], ["2025-08-14", "Mañana"], ["2025-08-14", "Tarde"]] rejected 5444 6464 \N El gato no esta defecando 114 \N \N \N \N \N +406 2025-08-15 20:29:23.153429+00 2025-08-15 20:29:23.153442+00 f t [["2025-08-15", "Noche"], ["2025-08-15", "Tarde"], ["2025-08-15", "Mañana"]] payed 5590 6614 \N Mi gata hace 2 días disminuyó su interés por el alimento balanceado, al punto de casi no comerlo. También come poco de su alimento húmedo, pude hacerle comer de a poco atún. Tiene apetito porque me pide comida, pero cuando le acerco el plato, no lo quiere comer. 114 \N \N 121961857411 \N \N +398 2025-08-14 15:31:48.496763+00 2025-08-14 15:31:48.496776+00 f t [["2025-08-22", "Tarde"], ["2025-08-25", "Tarde"], ["2025-08-26", "Tarde"]] in_progress_vet 5487 6509 \N La consulta principal es hacerle los estudios de vif y vilef a Arya (11 años) y Amelie (13 años), y ver cómo seguir, a partir de la siguiente situación: tenemos tres gatos: Barrabás de 14 años, Amelie de 13 años y Arya de 11 años. Barrabás tuvo dos convulsiones en un período de 45 días, cuando sucedió la primera lo llevamos a la veterinaria y empezamos una serie de estudios de ecografía, sangre (+vif y vilef), ecocardiograma, radiografía y todo había dado bien. El neurólogo sospechó de epilepsia y nos indicó gabapentina. Hace una semana Arya tuvo un episodio similar pero no mostraba sospechas de epilepsia ni cuestiones neurológicas, y tenemos que hacer el mismo recorrido que hicimos para Barrabás para ver qué pudo ser. \nAnoche la clínica nos mandó después de dos meses un informe que indica que Barrabás dio reactivo a vilef, aunque en la devolución nos habían dicho que salió todo bien. Vale aclarar que hace cuatro años le habíamos hecho este estudio y había salido no reactivo, y que ninguno de los tres gatos salió nunca a la calle, son gatos de casa. Entonces necesitamos consulta clínica y estudios de sangre de vif y vilef para Arya y Amelie. 114 \N \N \N \N \N +399 2025-08-14 16:21:46.721952+00 2025-08-14 16:21:46.721966+00 f t [["2025-08-14", "Tarde"], ["2025-08-14", "Noche"], ["2025-08-14", "Mañana"]] payed 5497 6520 \N Está muy flaca, come muy poco y se le está haciendo unas lagañas en los ojos. Viene de dos mudanzas seguidas 114 \N \N 122342508314 \N \N +403 2025-08-15 14:45:51.010356+00 2025-08-15 14:45:51.010369+00 f t [["2025-08-15", "Mañana"], ["2025-08-15", "Tarde"], ["2025-08-15", "Noche"]] rejected 5564 6588 \N Abdomen agudo. Mucho dolor. Obstruccion 114 \N \N \N \N \N +409 2025-08-16 15:13:51.327898+00 2025-08-16 15:13:51.327906+00 f t [["2025-08-16", "Noche"], ["2025-08-16", "Tarde"], ["2025-08-16", "Mañana"]] in_progress_vet 5634 6662 \N Desde que volvió hace un día y medio de su corte y baño presenta problemas en el ano. Se lame, le dificultades sentarse y tiene un bulto de un costado. Esta noche no durmio 1208 \N \N \N \N \N +412 2025-08-17 10:04:11.182511+00 2025-08-17 10:04:11.182583+00 f t [["2025-08-17", "Mañana"], ["2025-08-17", "Tarde"], ["2025-08-17", "Noche"]] payed 5680 6710 \N Enfermedad terminal 114 \N \N WGRXJE27G0LKV61ON7MYQL \N \N +366 2025-08-07 23:19:30.245229+00 2025-08-07 23:19:30.245241+00 f t [["2025-08-16", "Tarde"], ["2025-08-16", "Mañana"], ["2025-08-16", "Noche"]] rejected 5074 6090 \N agresivo \N \N \N \N \N \N +372 2025-08-09 03:28:40.164722+00 2025-08-09 03:28:40.164734+00 f t [["2025-08-09", "Noche"], ["2025-08-09", "Tarde"], ["2025-08-10", "Tarde"]] payed 5158 6176 \N Esta en muy mal estado, muy flaco. Lo rescate hace 1 día y quería una consulta para saber que tiene y como sanarlo 1208 \N \N 9d065be3-7454-4e5c-abdd-ce569b6826a0 \N \N +367 2025-08-08 12:16:43.74326+00 2025-08-08 12:16:43.743269+00 f t [["2025-08-09", "Tarde"], ["2025-08-10", "Tarde"], ["2025-08-11", "Noche"]] in_progress_vet 5100 6116 \N Insuficiencia renal + miocardiopatía. Nuestro gato estuvo internado 72 horas, lo recuperaron, empezó a comer y a beber, le están dando medicamentos. Es necesario hacerle una ecografía abdominal de los riñones para ver si hay cálculos u otros problemas. \N \N \N \N \N \N +374 2025-08-09 14:18:42.985745+00 2025-08-09 14:18:42.985757+00 f t [["2025-08-09", "Noche"], ["2025-08-09", "Tarde"], ["2025-08-09", "Mañana"]] payed 5173 6191 \N Lo necesita anualmenfe 1208 \N \N 121129170013 \N \N +368 2025-08-08 13:16:27.657301+00 2025-08-08 13:16:27.65731+00 f t [["2025-08-08", "Mañana"], ["2025-08-08", "Tarde"], ["2025-08-08", "Noche"]] in_progress_vet 5102 6118 \N No se quiere acostar/sentar porque le duele \N \N \N \N \N \N +622 2025-09-22 13:49:17.829504+00 2025-09-22 13:49:17.829512+00 f t [["2025-09-26", "evening"]] confirmado 7996 9108 1583 \N 1583 2025-09-26 03:00:00+00 18:30:00 1843674579 92 \N +377 2025-08-10 14:58:35.009067+00 2025-08-10 14:58:35.009079+00 f t [["2025-08-10", "Tarde"], ["2025-08-10", "Tarde"], ["2025-08-10", "Noche"]] payed 5208 6225 \N Tiene un problema renal crónico se queja de dolor le cuesta caminar y se queda quietito debajo de la estufa ayer y anteayer recibió suero intradermico y demás medicación 1208 \N \N WY7ZEPN6Q5VL6RG4NQ0M51 \N \N +388 2025-08-12 19:15:26.125343+00 2025-08-12 19:15:26.125366+00 f t [["2025-08-12", "Noche"], ["2025-08-12", "Mañana"], ["2025-08-12", "Tarde"]] payed 5357 6375 \N Tiene inflamada la boca y la pera y esta dolorida 1208 \N \N 121505083129 \N \N +370 2025-08-08 14:54:03.620303+00 2025-08-08 14:54:03.620317+00 f t [["2025-08-08", "Tarde"], ["2025-08-08", "Noche"], ["2025-08-09", "Mañana"]] rejected 5115 6131 \N Le duele intentar acostarse 114 \N \N \N \N \N +369 2025-08-08 14:32:02.3908+00 2025-08-08 14:32:02.390813+00 f t [["2025-08-12", "Tarde"], ["2025-08-11", "Tarde"], ["2025-08-12", "Noche"]] rejected 5112 6128 \N Tiene tos cada vez más seguido y se escucha ruiditos o silbar el pecho 114 \N \N \N \N \N +381 2025-08-11 20:25:53.288945+00 2025-08-11 20:25:53.288959+00 f t [["2025-08-12", "Noche"], ["2025-08-13", "Noche"], ["2025-08-14", "Noche"]] in_progress_vet 5280 6299 \N Esta con mocos hace varios meses. Tiene una infección en boca que se trató el año pasado, pero volvio 113 \N \N \N \N \N +385 2025-08-12 12:35:13.294701+00 2025-08-12 12:35:13.294716+00 f t [["2025-08-12", "Noche"], ["2025-08-12", "Tarde"], ["2025-08-12", "Mañana"]] payed 5335 6354 \N Desde ayer presenta una diarrea, se lo ve muy molesto y no come. 1208 \N \N 121982768458 \N \N +371 2025-08-09 00:44:53.841483+00 2025-08-09 00:44:53.841493+00 f t [["2025-08-09", "Mañana"], ["2025-08-09", "Tarde"], ["2025-08-09", "Noche"]] rejected 5150 4071 \N Vomito, desestabilidad al caminar. Pis con sangre 1208 \N \N \N \N \N +401 2025-08-15 00:12:07.565034+00 2025-08-15 00:12:07.565047+00 f t [["2025-08-15", "Noche"], ["2025-08-16", "Mañana"], ["2025-08-17", "Mañana"]] in_progress_vet 5533 6557 \N Posible síndrome de cushing y glóbulos blancos extremadamente altos (70.000), insuficiencia cardiaca 114 \N \N \N \N \N +373 2025-08-09 06:17:15.394012+00 2025-08-09 06:17:15.394025+00 f t [["2025-08-09", "Tarde"], ["2025-08-09", "Noche"], ["2025-08-09", "Mañana"]] payed 5161 6179 \N Fiebre. Poco apetito. Caca con sangre. 1208 \N \N 3000c0da-1003-4309-94de-fff32ffe3e19 \N \N +397 2025-08-14 05:26:27.038919+00 2025-08-14 05:26:27.038933+00 f t [["2025-08-22", "Tarde"], ["2025-08-23", "Tarde"], ["2025-08-24", "Tarde"]] in_progress_vet 5467 6489 \N Ciro es un caniche de 11 años. Nunca le realizamos un análisis de sangre y este año tuvo una gripe muy fuerte, tos, mocos y le llevo tiempo recuperarse. Nos sugirieron por la edad que le hagamos el análisis. \nAdemás tiene diagnosticado artritis en su columna y cada tanto tiene algún episodio de dolor. 1208 \N \N \N \N \N +391 2025-08-13 16:48:05.66478+00 2025-08-13 16:48:05.664794+00 f t [["2025-08-20", "Tarde"], ["2025-08-18", "Tarde"], ["2025-08-21", "Tarde"]] completed 5428 6447 \N Picazón que no cede con el antipulgas aplicado 114 2025-08-18 03:00:00+00 16:00:00 122138950296. 80 \N +394 2025-08-13 23:00:54.148494+00 2025-08-13 23:00:54.148504+00 f t [["2025-08-13", "Noche"], ["2025-08-14", "Mañana"], ["2025-08-14", "Tarde"]] in_progress_vet 5445 6465 \N Problemas de movilidad, junto con descompostura Y decaimiento general. 114 \N \N \N \N \N +400 2025-08-14 16:26:11.307783+00 2025-08-14 16:26:11.307797+00 f t [["2025-08-14", "Tarde"], ["2025-08-14", "Tarde"], ["2025-08-14", "Noche"]] rejected 5500 6523 \N mi perra se comió un mueble de madera e hizo caca con sangre 114 \N \N \N \N \N +404 2025-08-15 16:41:14.975722+00 2025-08-15 16:41:14.975735+00 f t [["2025-08-16", "Tarde"], ["2025-08-16", "Mañana"], ["2025-08-18", "Noche"]] payed 5577 4732 \N Se le rompió un dientito delantero pero no sabemos cómo ya que no lo vimos golpearse o morder nada duro 114 \N \N 38464538402 \N \N +413 2025-08-17 13:21:33.473955+00 2025-08-17 13:21:33.473969+00 f t [["2025-08-17", "Mañana"], ["2025-08-17", "Mañana"], ["2025-08-17", "Tarde"]] rejected 5687 6717 \N 3 días sin comer, toma much agua y orina más seguido. Esta muy débil y le cuesta pararse y caminar, respira más rapido 114 \N \N \N \N \N +407 2025-08-15 22:11:00.910257+00 2025-08-15 22:11:00.910267+00 f t [["2025-08-15", "Noche"], ["2025-08-16", "Mañana"], ["2025-08-17", "Mañana"]] rejected 5595 6621 \N Tiene una infección en la pierna izquierda toda la pierna roja con pus le cuelga la piel y la tiene muy inflamada 114 \N \N \N \N \N +410 2025-08-17 00:32:01.428591+00 2025-08-17 00:32:01.428605+00 f t [["2025-08-16", "Noche"], ["2025-08-17", "Mañana"], ["2025-08-17", "Tarde"]] in_progress_vet 5658 6688 \N Crash estaba jugando con otro perro y empezó a llorar y a levantar la para derecha. Ahora está acostado sin querer moverse y le duele el hombro al moverselo. Tiene dolor 114 \N \N \N \N \N +415 2025-08-17 18:18:11.757762+00 2025-08-17 18:18:11.757774+00 f t [["2025-08-17", "Mañana"], ["2025-08-17", "Tarde"], ["2025-08-17", "Noche"]] payed 5700 6730 \N Perra encontrada en la calle. Con sangre en la.zona de la oreja/cuello y la pata. Esta rengueando, no puede caminar casi 114 \N \N 122697221048 \N \N +417 2025-08-18 19:36:51.51978+00 2025-08-18 19:36:51.519789+00 f t [["2025-08-22", "Tarde"], ["2025-08-22", "Mañana"], ["2025-08-22", "Noche"]] in_progress_vet 5770 6804 \N Repentino erizado de pelaje y enojo , eventual desconocimiento de dueños (2 episodios) el segundo más leve. Al día de hoy normal . ( no sale del domicilio y gral mente es tranquila ). Es asustadiza y arisca para traslado 113 \N \N \N \N \N +424 2025-08-19 21:25:37.131096+00 2025-08-19 21:25:37.131106+00 f t [["2025-08-20", "Mañana"], ["2025-08-20", "Tarde"], ["2025-08-19", "Noche"]] in_progress_vet 5855 6893 \N Heces con sangre con mucosidad 1208 \N \N \N \N \N +448 2025-08-25 13:33:09.897469+00 2025-08-25 13:33:09.897481+00 f t [["2025-08-25", "Tarde"], ["2025-08-26", "Tarde"], ["2025-08-26", "Mañana"]] payed 6196 7259 \N Da vueltas en la batea para orinar y maulla. Da la impresion como si le costara. 1208 \N \N 123605590452 \N \N +445 2025-08-24 19:27:25.781357+00 2025-08-24 19:27:25.781367+00 f t [["2025-08-24", "Mañana"], ["2025-08-24", "Tarde"], ["2025-08-24", "Noche"]] rejected 6137 7202 \N No apoya la pata trasera izquierda. 1208 \N \N \N \N \N +420 2025-08-19 05:45:47.578959+00 2025-08-19 05:45:47.578972+00 f t [["2025-08-19", "Noche"], ["2025-08-20", "Noche"], ["2025-08-22", "Noche"]] rejected 5805 6840 \N Se rasca y come parte del pelo en muslo trasero, ya la lleve, le hicieron exámenes y esta derivó en un cirugía para sacarle 4 dientes (nada q ver) pero en teoría era ese el malestar del animal. Ya pasaron unos meses se recuperó de la cx pero el cuadro dermatólogo empeoró severamente pese a corticoides análisis y estudios varios q obvio entre eso y la cirugía costaron un dinero muy importante ( el cual no sería un problema en sí) pero el animal empeoró en lo dermatológico a mi criterio en un 60 a 70 %. Por lo cual necesito un buen especialista q me dé un diagnostique x fuera del consumo de corticoides, pase bastante con él animal y cual se estresa enormemente y necesito compencia absoluta y sinceridad en el examen clínico y diagnóstico, la prueba y error ya no va más, x eso acudo a la profesionalidad de este lugar! 1208 \N \N \N \N \N +425 2025-08-19 21:31:42.271457+00 2025-08-19 21:31:42.271466+00 f t [["2025-08-20", "Mañana"], ["2025-08-20", "Tarde"], ["2025-08-20", "Noche"]] in_progress_vet 5857 6770 \N Hace una semana está con dificultad para respirar debido a mucha mucosidad en las vías respiratorias, tiene lagañas. 1208 \N \N \N \N \N +443 2025-08-24 14:07:04.756379+00 2025-08-24 14:07:04.756389+00 f t [["2025-08-24", "Mañana"], ["2025-08-24", "Tarde"], ["2025-08-24", "Noche"]] in_progress_vet 6128 7191 \N Aparenta dolor, no come, no toma agua y casi no se mueve 114 \N \N \N \N \N +427 2025-08-20 13:06:01.669221+00 2025-08-20 13:06:01.66923+00 f t [["2025-08-21", "Noche"], ["2025-08-20", "Noche"], ["2025-08-22", "Noche"]] payed 5894 6935 \N hace pis muy seguido .. se hace el q hace y no hace mucho o a penas unas gotitas ... como una sistitis 1208 \N \N 123036960922 \N \N +429 2025-08-21 00:29:09.755329+00 2025-08-21 00:29:09.755343+00 t t [["2025-08-21", "Noche"], ["2025-08-21", "Mañana"], ["2025-08-21", "Noche"]] in_progress_vet 5952 6997 \N Infección bucal 1208 \N \N \N \N \N +450 2025-08-25 16:41:58.42355+00 2025-08-25 16:41:58.423559+00 f t [["2025-08-25", "Tarde"], ["2025-08-25", "Noche"], ["2025-08-26", "Mañana"]] rejected 6212 7275 \N Estuvo con vomitos la semana pasada, mejoró, hoy volvió a vomitar y esta muy flaco. Toma agua y hace pis pero come poco y no hace caca. 1583 \N \N \N \N \N +454 2025-08-26 13:13:06.980114+00 2025-08-26 13:13:06.980128+00 f t [["2025-08-26", "Mañana"], ["2025-08-27", "Mañana"], ["2025-08-28", "Mañana"]] payed 6251 7319 \N Vomitó sangre 1208 \N \N 123194172133 \N \N +452 2025-08-26 03:40:02.840631+00 2025-08-26 03:40:02.840645+00 f t [["2025-08-26", "Mañana"], ["2025-08-26", "Noche"], ["2025-08-27", "Noche"]] payed 6238 7305 \N Vacunas anuales, y un chequeo general, está con vómitos constantes 1208 \N \N 11053005008250826 \N \N +431 2025-08-22 15:53:22.716972+00 2025-08-22 15:53:22.71698+00 f t [["2025-08-27", "Noche"], ["2025-08-27", "Tarde"], ["2025-08-27", "Mañana"]] payed 6029 7084 \N Hace ruido al tragar, ver subpatita izquierda 1583 \N \N Brubank \N \N +435 2025-08-23 14:05:32.390371+00 2025-08-23 14:05:32.39038+00 f t [["2025-08-23", "Tarde"], ["2025-08-23", "Mañana"], ["2025-08-23", "Noche"]] rejected 6081 7142 \N No puede posar con la pata delantera no sé qué tiene 1208 \N \N \N \N \N +433 2025-08-22 21:38:11.902444+00 2025-08-22 21:38:11.902457+00 f t [["2025-08-22", "Noche"], ["2025-08-23", "Mañana"], ["2025-08-23", "Noche"]] in_progress_vet 6054 7115 \N Estreñimiento en 10 dias solo defecó una vez habiendo tomado Felilax. Decaimiento 113 \N \N \N \N \N +436 2025-08-23 14:44:42.515322+00 2025-08-23 14:44:42.515331+00 f t [["2025-08-23", "Mañana"], ["2025-08-23", "Tarde"], ["2025-08-23", "Noche"]] rejected 6086 7147 \N No puede pararse. Su problema está en la pata trasera derecha. 1208 \N \N \N \N \N +437 2025-08-23 19:37:13.33564+00 2025-08-23 19:37:13.335649+00 f t [["2025-08-23", "Noche"], ["2025-08-24", "Mañana"], ["2025-08-24", "Tarde"]] payed 6094 7157 \N Hace un tiempo tiene unas lesiones q se las atribuimos a como se rasca, pero ahora nos dimos cuenta q tiene una lesión muy grande pareciera d tanto lamerse 1208 \N \N XJ8G7V95EZQ3G08M2EMPYR \N \N +456 2025-08-28 13:30:03.611715+00 2025-08-28 13:30:03.611729+00 f t [["2025-08-29", "Mañana"], ["2025-08-29", "Tarde"], ["2025-08-29", "Tarde"]] confirmado 6342 999 \N Vomitos recurrentes 1208 2025-08-29 03:00:00+00 09:00:00 38619447696 14 \N +458 2025-08-28 15:43:07.869769+00 2025-08-28 15:43:07.869778+00 f t [["2025-08-28", "evening"]] in_progress_pay 6365 7436 \N \N \N 2025-08-28 03:00:00+00 19:00:00 123447935491 80 \N +460 2025-08-28 20:09:45.216186+00 2025-08-28 20:09:45.216198+00 f t [["2025-08-28", "Noche"], ["2025-08-29", "Noche"], ["2025-08-30", "Noche"]] in_progress_vet 6381 7453 \N Vómitos. Bulimia. Vómito con pequeño coágulo de sangre 114 \N \N \N \N \N +438 2025-08-23 20:41:25.910038+00 2025-08-23 20:41:25.910051+00 f t [["2025-08-23", "Noche"], ["2025-08-23", "Mañana"], ["2025-08-23", "Tarde"]] rejected 6091 7153 \N Mucha diarrea desde ayer a la tarde 114 \N \N \N \N \N +442 2025-08-24 12:39:24.163765+00 2025-08-24 12:39:24.163774+00 f t [["2025-08-24", "Mañana"], ["2025-08-24", "Tarde"], ["2025-08-24", "Noche"]] in_progress_vet 6124 7187 \N Tiene la oreja infectada 114 \N \N \N \N \N +439 2025-08-24 01:11:00.180429+00 2025-08-24 01:11:00.180441+00 f t [["2025-08-24", "Mañana"], ["2025-08-24", "Mañana"], ["2025-08-24", "Tarde"]] in_progress_vet 6112 7175 \N Con dolor y posee espondilosis 114 \N \N \N \N \N +441 2025-08-24 11:27:23.691261+00 2025-08-24 11:27:23.691276+00 f t [["2025-08-24", "Mañana"], ["2025-08-24", "Tarde"], ["2025-08-24", "Noche"]] in_progress_vet 6120 7183 \N Constipación, letargo, patas y nariz frías, encías palidas 114 \N \N \N \N \N +462 2025-08-29 10:49:06.225006+00 2025-08-29 10:49:06.22502+00 f t [["2025-08-29", "Mañana"], ["2025-08-29", "Tarde"], ["2025-08-29", "Noche"]] rejected 6409 7480 \N Vomita desde ayer a la noche 114 \N \N \N \N \N +440 2025-08-24 10:09:19.036921+00 2025-08-24 10:09:19.036931+00 f t [["2025-08-24", "Mañana"], ["2025-08-25", "Mañana"], ["2025-08-26", "Mañana"]] rejected 6119 7182 \N Perro con diarrea con sangre y vomitos 114 \N \N \N \N \N +444 2025-08-24 15:46:30.455469+00 2025-08-24 15:46:30.455478+00 f t [["2025-08-24", "Tarde"], ["2025-08-24", "Tarde"], ["2025-08-24", "Noche"]] rejected 6130 7193 \N Al llegar ayer del parque note que caminaba más lento de lo normal, y al subir las escaleras le costó.\nSe acostó y al pararse para comer cojea de su pata trasera izquierda, no la apoya. 114 \N \N \N \N \N +471 2025-08-30 19:22:06.2973+00 2025-08-30 19:22:06.297313+00 f t [["2025-08-30", "evening"]] confirmado 6526 7602 \N \N \N 2025-08-30 03:00:00+00 19:30:00 46YGOW9M8OQRMZYQ9EXD8J 90 \N +478 2025-08-31 19:57:22.608854+00 2025-08-31 19:57:22.608864+00 f t [["2025-08-31", "evening"]] in_progress_vet 6587 7664 \N \N 114 \N \N \N \N \N +423 2025-08-19 18:49:01.35518+00 2025-08-19 18:49:01.35519+00 f t [["2025-08-20", "Noche"], ["2025-08-21", "Noche"], ["2025-08-19", "Noche"]] in_progress_vet 5847 6885 \N Jason tiene un osteoma en mentón y una miocardiopatía hipertrófica diagnosticada hace un año que actualmente es avanzada. Está en tratamiento con atenolol 6.25 mg c/12 hs, furosemida 4 mg c/12 hs y clopidogrel 18.75 mg c/24 hs. Presentó 2 internaciones por edema agudo de pulmón en noviembre del 2024 y julio del 2025 (externado hace 3 semanas). Previo a la última internación lo llevé a un control veterinario porque lo notaba que se lamía y rascaba, por lo que se estaba lastimando, le aplicarion tribiotic inyectable. Esa misma noche se descompensó y quedó internado por edema agudo de pulmón. Hace unos días comenzó de nuevo con lamido y rascado excesivo, por lo que se generó algunas lesiones en piel, principalmente en 2 regiones del tórax que le rasuraron en la guardia. El domingo y el lunes estuvo con un poco de náuseas y presentó 2 vómitos. La consulta es principalmente por el lamido excesivo y las heridas. Y también por las náuseas, ya que viene teniendo episodios similares una vez al mes desde abril. Por otro lado, el día de hoy le palpé algo redondeado en la región entre la mandíbula y el cuello del lado derecho. 1208 \N \N \N \N \N +499 2025-09-02 23:25:50.005488+00 2025-09-02 23:25:50.005498+00 f t [["2025-09-03", "Tarde"], ["2025-09-04", "Tarde"], ["2025-09-04", "Noche"]] payed 6756 7841 \N Diarrea crónica 113 \N \N 0TGD-915E-ACAT \N \N +449 2025-08-25 14:55:42.633064+00 2025-08-25 14:55:42.633079+00 f t [["2025-08-25", "Mañana"], ["2025-08-25", "Mañana"], ["2025-08-25", "Noche"]] in_progress_pay 6201 7264 \N Es un perrito rescatado que tiene severos problemas tales como: sarna, nutrición, maltratado 1583 2025-08-25 03:00:00+00 19:00:00 \N 21 \N +446 2025-08-25 00:00:57.694438+00 2025-08-25 00:00:57.69445+00 f t [["2025-08-24", "Noche"], ["2025-08-24", "Noche"], ["2025-08-24", "Noche"]] rejected 6161 7225 \N Mató a un murciélago 1208 \N \N \N \N \N +459 2025-08-28 17:46:40.015721+00 2025-08-28 17:46:40.015732+00 f t [["2025-08-29", "afternoon"]] rejected 6375 7443 1583 \N 1583 \N \N \N \N \N +1216 2025-10-26 18:38:58.014723+00 2025-10-26 18:38:58.014731+00 f t [["2025-10-26", "afternoon"]] Confirmado 10558 10716 114 Revisión por sangre al defecar 114 2025-10-26 03:00:00+00 16:00:00 71211613 114 \N +451 2025-08-26 01:31:47.491843+00 2025-08-26 01:31:47.491857+00 f t [["2025-08-26", "Mañana"], ["2025-08-26", "Mañana"], ["2025-08-26", "Mañana"]] in_progress_vet 6189 6987 \N 🩻 radiografía de cuello y tórax 1208 \N \N \N \N \N +455 2025-08-27 16:14:57.770296+00 2025-08-27 16:14:57.77036+00 f t [["2025-08-29", "Noche"], ["2025-09-01", "Noche"], ["2025-09-02", "Noche"]] in_progress_pay 6297 7367 \N Recuperado de la calle. Aprox un año. Solo está csstrado 1583 \N \N \N \N \N +464 2025-08-29 16:09:40.580533+00 2025-08-29 16:09:40.580545+00 f t [["2025-08-30", "Mañana"], ["2025-08-29", "Noche"], ["2025-08-30", "Tarde"]] in_progress_vet 6443 7515 \N Nuestra veterinaria de confianza nos pide estudios de ecografia abdominal y radiografía de torax 114 \N \N \N \N \N +457 2025-08-28 14:09:10.762879+00 2025-08-28 14:09:10.762893+00 f t [["2025-08-28", "Noche"], ["2025-08-28", "Tarde"], ["2025-08-29", "Tarde"]] confirmado 6360 7432 \N Problemas para pararse y desplazarse 1208 2025-08-28 03:00:00+00 19:00:00 123447854521 91 \N +461 2025-08-28 21:39:31.583737+00 2025-08-28 21:39:31.58375+00 f t [["2025-08-29", "morning"]] coordinated 6389 5342 \N \N 1583 2025-08-29 03:00:00+00 08:00:00 \N 68 \N +466 2025-08-30 16:25:01.877313+00 2025-08-30 16:25:01.877328+00 f t [["2025-08-30", "Noche"], ["2025-08-31", "Mañana"], ["2025-08-31", "Tarde"]] confirmado 6506 7583 \N Ecogradia y laboratorio por vomito rojizo 1208 2025-08-30 03:00:00+00 17:00:00 38649770680 90 \N +463 2025-08-29 11:31:56.59238+00 2025-08-29 11:31:56.592392+00 f t [["2025-08-29", "Mañana"], ["2025-08-30", "Tarde"], ["2025-08-29", "Tarde"]] in_progress_vet 6412 7483 \N Vómito con un poco de sangre\nNo está comiendo 114 \N \N \N \N \N +465 2025-08-30 10:46:49.212704+00 2025-08-30 10:46:49.212718+00 f t [["2025-08-30", "Mañana"], ["2025-08-30", "Tarde"], ["2025-08-30", "Noche"]] confirmado 6482 7559 \N Hace 2 semanas dejo de caminar. Tiene 15 años. Ahora presenta un problema en la piel. Se le salió el pelo en el cuello. Tipo parche caliente. Usa pañal no puede caminar. Y creo que tiene una fistula en el ano. Se queja y grita 1208 2025-08-30 03:00:00+00 10:30:00 124223271900 1 \N +453 2025-08-26 04:04:10.177453+00 2025-08-26 04:04:10.177467+00 f t [["2025-08-27", "Tarde"], ["2025-08-28", "Tarde"], ["2025-08-29", "Tarde"]] payed 6239 7306 \N Bianca tiene 11 anos, esta ciega y tiene un problema en la coluna, Roma medicamento diariamente. La llevava en una clínica y además de no me gustar el atendimento ella si estresa muchísimo. Entonces necesito hacer el acompañamiento de Bianca y sabe como está su estado de salud. 1208 \N \N 123713556609 \N \N +468 2025-08-30 17:39:08.743474+00 2025-08-30 17:39:08.743484+00 f t [["2025-08-30", "Noche"], ["2025-08-31", "Mañana"], ["2025-09-01", "Mañana"]] payed 6520 7596 \N Cronos no está queriendo comer hace unos días, le estamos dando paté recovery diluido con una jeringa. No lo podemos llevar al vete porque está muy débil y se agita mucho y se hace pis cuando intentamos meterlo en el canil. 1208 \N \N 38651148378 \N \N +469 2025-08-30 18:04:33.759038+00 2025-08-30 18:04:33.759047+00 f t [["2025-08-30", "Mañana"], ["2025-08-30", "Tarde"], ["2025-08-30", "Noche"]] confirmado 6521 7597 \N No come, no quiere tomar agua, no tiene movilidad, está acostado y su panza está inflamada, se orina y llora todo el día. 1208 2025-08-31 03:00:00+00 09:00:00 124279289348 68 \N +472 2025-08-30 19:42:35.994436+00 2025-08-30 19:42:35.994444+00 f t [["2025-09-01", "afternoon"], ["2025-09-01", "morning"], ["2025-09-01", "evening"]] payed 6528 7606 \N \N 1208 \N \N 124275107302 \N \N +467 2025-08-30 16:56:03.137336+00 2025-08-30 16:56:03.137345+00 f t [["2025-09-01", "Tarde"], ["2025-09-03", "Tarde"], ["2025-09-04", "Tarde"]] payed 6514 7591 \N Alergia en la piel, bulto en axila 1208 \N \N 123736893617 \N \N +474 2025-08-31 15:40:00.631286+00 2025-08-31 15:40:00.6313+00 f t [["2025-08-31", "Tarde"], ["2025-09-01", "Mañana"], ["2025-09-02", "Mañana"]] rejected 6571 7648 \N Diarrea y vómito 114 \N \N \N \N \N +476 2025-08-31 17:47:26.068115+00 2025-08-31 17:47:26.068125+00 f t [["2025-09-05", "Tarde"], ["2025-09-05", "Mañana"], ["2025-09-04", "Noche"]] in_progress_vet 6581 7658 \N Plan de vacunacion 114 \N \N \N \N \N +477 2025-08-31 19:02:12.78643+00 2025-08-31 19:02:12.78644+00 f t [["2025-08-31", "Noche"], ["2025-08-31", "Noche"], ["2025-08-31", "Noche"]] in_progress_vet 6584 7661 \N El perro hace caca con un poco de sangre y vomito tambien 114 \N \N \N \N \N +475 2025-08-31 15:51:13.850146+00 2025-08-31 15:51:13.850156+00 f t [["2025-08-31", "Tarde"], ["2025-08-31", "Noche"], ["2025-09-01", "Mañana"]] payed 6576 7653 \N Problemas de movilidad. Aparentemente lesión en pata delantera derecha. Cadera caída. Esta echado porque cuando se para no lo puede hacer porque le duele. 114 2025-08-31 03:00:00+00 16:00:00 123809992327 92 \N +473 2025-08-31 15:39:45.612044+00 2025-08-31 15:39:45.612054+00 f t [["2025-09-02", "Mañana"], ["2025-09-06", "Tarde"], ["2025-09-05", "Noche"]] rejected 6565 5925 \N Tengo orden médica de la veterinaria Victoria Gonzalez del 9/8 para hacer RX Torax (dice entre paréntesis Y y V-D) por lo que entendía.\nTos presistente. No es la primera vez que presenta esos episodios. Ella ya la.atendió dos veces en lo que va en los últimos dos tres meses. La opción no me deja poner rayos. 114 \N \N \N \N \N +498 2025-09-02 23:09:34.686737+00 2025-09-02 23:09:34.68675+00 f t [["2025-09-04", "Tarde"], ["2025-09-05", "Tarde"], ["2025-09-06", "Tarde"]] in_progress_vet 6756 7841 \N Diarrea crónica 113 \N \N \N \N \N +681 2025-09-25 06:12:35.146222+00 2025-09-25 06:12:35.146234+00 f t [["2025-09-25", "Mañana"], ["2025-09-25", "Tarde"], ["2025-09-25", "Noche"]] rejected 8216 9311 \N Aparentemente tos perruna o algo similar. 1208 \N \N \N \N \N +503 2025-09-03 13:26:05.366413+00 2025-09-03 13:26:05.366424+00 f t [["2025-09-03", "Tarde"], ["2025-09-03", "Mañana"], ["2025-09-03", "Noche"]] confirmado 6801 7886 \N Sangrado de nariz, no se levanta de la cama, tiene el cuerpo duro. Tiene 11 años ya 1208 2025-09-03 03:00:00+00 12:00:00 124710324104 1 \N +502 2025-09-03 10:59:20.623261+00 2025-09-03 10:59:20.623273+00 f t [["2025-09-03", "Mañana"], ["2025-09-03", "Tarde"], ["2025-09-03", "Noche"]] rejected 6792 7877 \N Debilidad 1208 \N \N \N \N \N +505 2025-09-03 15:25:06.233919+00 2025-09-03 15:25:06.233929+00 f t [["2025-09-03", "Tarde"], ["2025-09-03", "Noche"], ["2025-09-04", "Noche"]] rejected 6809 7893 \N Vacunación anual 1208 \N \N \N \N \N +507 2025-09-03 17:55:42.579899+00 2025-09-03 17:55:42.579908+00 f t [["2025-09-03", "Noche"], ["2025-09-04", "Tarde"], ["2025-09-05", "Mañana"]] in_progress_vet 6823 7909 \N stitch está con diarrea + quiero vacunarlo 1208 \N \N \N \N \N +509 2025-09-03 22:58:10.928549+00 2025-09-03 22:58:10.92856+00 f t [["2025-09-13", "Tarde"], ["2025-09-06", "Tarde"], ["2025-09-07", "Tarde"]] rejected 6853 7939 \N Le salio una especie de grano con un tamaño fuera de lo normal en la zona de sus partes íntimas 1208 \N \N \N \N \N +511 2025-09-04 13:15:51.098195+00 2025-09-04 13:15:51.098206+00 f t [["2025-09-07", "Mañana"], ["2025-09-07", "Tarde"], ["2025-09-07", "Mañana"]] in_progress_vet 6881 88 \N Vacunación y control anual 1208 \N \N \N \N \N +518 2025-09-05 12:25:06.639965+00 2025-09-05 12:25:06.639973+00 f t [["2025-09-05", "Tarde"], ["2025-09-05", "Noche"], ["2025-09-05", "Mañana"]] payed 6947 8030 \N No sé puede levantar y llora. Ya una vez me habían dicho que podía ser problemas de cadera 1583 2025-09-05 03:00:00+00 11:00:00 124423882979 1 \N +515 2025-09-04 15:25:46.87996+00 2025-09-04 15:25:46.87997+00 f t [["2025-09-09", "morning"], ["2025-09-09", "afternoon"], ["2025-09-09", "evening"]] confirmado 6893 7367 \N \N 1208 2025-09-09 03:00:00+00 20:30:00 124849821652 80 \N +513 2025-09-04 14:56:25.669962+00 2025-09-04 14:56:25.669971+00 f t [["2025-09-12", "Mañana"], ["2025-09-12", "Tarde"], ["2025-09-15", "Mañana"]] rejected 6890 7974 \N Analisis de sangre para cirugia por rotura de ligamentos 1208 \N \N \N \N \N +516 2025-09-04 19:12:25.741071+00 2025-09-04 19:12:25.74108+00 f t [["2025-09-05", "Mañana"], ["2025-09-05", "Tarde"], ["2025-09-05", "Noche"]] in_progress_vet 6914 7997 \N hace 3 semanas lo operaron y en el medio de mude, su Vet me queda super lejos y debemos sacarle los puntos (extracción de un lipoma) queria saber si uds lo hacían 1583 \N \N \N \N \N +519 2025-09-05 14:09:18.741218+00 2025-09-05 14:09:18.741232+00 f t [["2025-09-06", "Mañana"], ["2025-09-06", "Tarde"], ["2025-09-06", "Noche"]] rejected 6954 8038 \N Nacho está entrando en una edad adulta quiero tener un examen de sangre para saber cómo está 1208 \N \N \N \N \N +520 2025-09-05 20:40:57.411125+00 2025-09-05 20:40:57.411161+00 f t [["2025-09-08", "Mañana"], ["2025-09-08", "Tarde"], ["2025-09-08", "Noche"]] rejected 6983 8069 \N Tiene un tema en la piel de enrojecimiento y picor y se lastima.\nLe estoy dando desde hace 12 dias antibioticos PYO Derm plus 500 medio comprimido 2 veces al dia.\nOmeoprazol y corticoides por si es alergia prednisolona 5mg pero ya lo estoy terminando..El tema que sigue con la piel colorada y eventualmente se rasca. Temo que cuando termine con los corticoides vuelta a estar cmo en un principio y el tema sin resolver 1208 \N \N \N \N \N +521 2025-09-06 02:32:20.827856+00 2025-09-06 02:32:20.827865+00 f t [["2025-09-06", "Mañana"], ["2025-09-06", "Tarde"], ["2025-09-06", "Noche"]] rejected 7002 7997 \N PERFIL 7 DE RAPELA 1208 \N \N \N \N \N +522 2025-09-06 02:35:24.423521+00 2025-09-06 02:35:24.423531+00 f t [["2025-09-06", "Mañana"], ["2025-09-06", "Tarde"], ["2025-09-06", "Noche"]] rejected 7002 7997 \N ECOGRAFIA ABDOMINAL CONTROL GENERAL 1208 \N \N \N \N \N +523 2025-09-06 02:37:09.450962+00 2025-09-06 02:37:09.45097+00 f t [["2025-09-06", "Mañana"], ["2025-09-06", "Tarde"], ["2025-09-06", "Noche"]] rejected 7002 7997 \N SOLICITO RX L-L Y D-V DE TORAX PARA CONTROL 1208 \N \N \N \N \N +525 2025-09-06 14:22:13.852904+00 2025-09-06 14:22:13.852913+00 f t [["2025-09-06", "Noche"], ["2025-09-06", "Tarde"], ["2025-09-06", "Tarde"]] confirmado 7016 8102 \N Sufrió ataques y ahora no se levanta del piso y no come 1208 2025-09-06 03:00:00+00 15:00:00 125133504606 21 \N +526 2025-09-06 16:21:33.015898+00 2025-09-06 16:21:33.015907+00 f t [["2025-09-06", "Tarde"], ["2025-09-06", "Tarde"], ["2025-09-06", "Noche"]] confirmado 7022 8109 \N Thor tuvo cistitis mejoró en las otras oportunidades pero ahora con los mismos medicamentos no mejora. Lo llevé al veterinario y me recomendó que le haga una ecografía para ver si tiene cálculos. 1208 2025-09-06 03:00:00+00 16:00:00 124599722785 90 \N +527 2025-09-06 16:36:49.229426+00 2025-09-06 16:36:49.229436+00 f t [["2025-09-06", "Tarde"], ["2025-09-07", "Tarde"], ["2025-09-06", "Noche"]] rejected 7026 8113 \N Vomitó con sangre 3 veces 1208 \N \N \N \N \N +528 2025-09-06 19:01:38.228235+00 2025-09-06 19:01:38.228245+00 f t [["2025-09-12", "Noche"], ["2025-09-12", "Noche"], ["2025-09-12", "Noche"]] in_progress_vet 7030 8117 \N Consulta general 1208 \N \N \N \N \N +524 2025-09-06 03:52:54.94521+00 2025-09-06 03:52:54.94522+00 f t [["2025-09-08", "Noche"], ["2025-09-12", "Noche"], ["2025-09-08", "Tarde"]] rejected 7005 8091 \N Chequeo general \nCorte de uñas 1208 \N \N \N \N \N +530 2025-09-07 17:10:11.255874+00 2025-09-07 17:10:11.255888+00 f t [["2025-09-07", "Tarde"], ["2025-09-07", "Tarde"], ["2025-09-07", "Tarde"]] in_progress_vet 7067 8154 \N Tiene mocos y no quiere comer. Hace 4 días está tomando meloxicam porque le costaba levantarse , luego le apareció u a la gata verdosa en un ojo y hoy no quiere comer y toma agua pero le caen mocos de la nariz . Por eso necesitamos un medico a domicilio 114 \N \N \N \N \N +529 2025-09-07 11:06:04.572268+00 2025-09-07 11:06:04.572282+00 f t [["2025-09-10", "Mañana"], ["2025-09-10", "Mañana"], ["2025-09-10", "Tarde"]] payed 7056 8143 \N La gata realiza una tos muy seguida, no vomita pelos ni nada, tengo la sospecha que puede ser asma u otra cosa. Ella está bien pero en el día lo hace 4 veces aproximadamente. 114 2025-09-07 03:00:00+00 12:00:00 38764432090 80 \N +531 2025-09-07 19:35:26.047773+00 2025-09-07 19:35:26.047782+00 f t [["2025-09-07", "Tarde"], ["2025-09-07", "Noche"], ["2025-09-07", "Noche"]] rejected 7074 8162 \N Le note pus en el pene 114 \N \N \N \N \N +711 2025-09-26 18:07:07.90442+00 2025-09-26 18:07:07.904431+00 f t [["2025-09-26", "evening"]] Confirmado 8349 9435 1583 \N 1583 2025-09-26 03:00:00+00 19:00:00 127079514897 114 \N +483 2025-09-01 19:39:26.193836+00 2025-09-01 19:39:26.193845+00 f t [["2025-09-03", "Mañana"], ["2025-09-04", "Mañana"], ["2025-09-05", "Mañana"]] rejected 6663 7744 \N Hola, que tal!! Les comento que el gatito hace ruido al respirar y tiene mocos.\nAgradecería una visita a domicilio en el corto plazo y en cualquier horario que tengan disponible.\nAgradezco sus comentarios.\nCariños, Eugenia 114 \N \N \N \N \N +482 2025-09-01 17:00:14.88643+00 2025-09-01 17:00:14.886445+00 f t [["2025-09-05", "Mañana"], ["2025-09-03", "Tarde"], ["2025-09-02", "Tarde"]] in_progress_vet 6650 7731 \N Pre quirúrgico 114 \N \N \N \N \N +495 2025-09-02 19:05:55.305743+00 2025-09-02 19:05:55.305759+00 f t [["2025-09-02", "Noche"], ["2025-09-03", "Noche"], ["2025-09-04", "Noche"]] confirmado 6737 7820 \N Mi perro tiene diarrea desde hace dos días, sospechamos que pudo haber tragado un hueso. 1583 2025-09-02 03:00:00+00 20:00:00 75907962 80 \N +487 2025-09-02 00:01:20.49094+00 2025-09-02 00:01:20.490952+00 f t [["2025-09-06", "Tarde"], ["2025-09-05", "Noche"], ["2025-09-06", "Mañana"]] in_progress_vet 6686 7769 \N Tiene un soplo, y mucha taquicardia. El veterinario nos derivo al cardiologo, y le pidio ecocardiograma 1208 \N \N \N \N \N +494 2025-09-02 18:40:19.905079+00 2025-09-02 18:40:19.90509+00 f t [["2025-09-02", "Noche"], ["2025-09-03", "Tarde"], ["2025-09-03", "Noche"]] rejected 6740 301 1583 Tiene una gran infección en el oído izquierdo 1583 \N \N \N \N \N +616 2025-09-21 20:37:45.312392+00 2025-09-21 20:37:45.312404+00 f t [["2025-09-23", "afternoon"]] confirmado 7958 523 114 \N 114 2025-09-23 03:00:00+00 12:00:00 126487206145 68 \N +842 2025-10-04 15:37:30.26463+00 2025-10-04 15:37:30.264638+00 f t [["2025-10-04", "Tarde"], ["2025-10-05", "Tarde"], ["2025-10-09", "Tarde"]] coordinated 8852 9994 1208 Está haciendo pis fuera de su arenero y hay que cortarle las uñas porque no se deja 1208 2025-10-04 03:00:00+00 16:30:00 \N \N \N +484 2025-09-01 20:00:47.952446+00 2025-09-01 20:00:47.952458+00 f t [["2025-09-04", "Mañana"], ["2025-09-04", "Tarde"], ["2025-09-04", "Noche"]] in_progress_vet 6666 7748 \N Tiene una protuberancia abajo de la cola y también algo similiar en la zona del ano, se lame porque evidentemente le molesta una de ellas y además le sangra un poco 114 \N \N \N \N \N +481 2025-09-01 15:57:57.249742+00 2025-09-01 15:57:57.249751+00 f t [["2025-09-01", "Noche"], ["2025-09-02", "Tarde"], ["2025-09-03", "Tarde"]] payed 6648 1025 \N We need to make a regular annual vaccination, a triple vaccine and a vaccine against rabies. \N 2025-09-09 03:00:00+00 19:30:00 124492424702 80 \N +490 2025-09-02 15:14:06.071187+00 2025-09-02 15:14:06.071198+00 f t [["2025-09-03", "morning"], ["2025-09-03", "afternoon"], ["2025-09-03", "evening"]] confirmado 6718 6885 \N \N 1208 2025-09-03 03:00:00+00 14:00:00 124587931264 82 \N +485 2025-09-01 20:50:29.531244+00 2025-09-01 20:50:29.531255+00 f t [["2025-09-02", "Noche"], ["2025-09-03", "Noche"], ["2025-09-04", "Noche"]] rejected 6671 7753 \N Tengo mi perrita que no puede caminar 114 \N \N \N \N \N +501 2025-09-03 00:34:51.686147+00 2025-09-03 00:34:51.686159+00 f t [["2025-09-15", "Mañana"], ["2025-09-15", "Tarde"], ["2025-09-16", "Tarde"]] confirmado 6768 7853 \N Control por pequeño soplo. 1208 2025-09-15 03:00:00+00 13:30:00 124161928389 82 \N +486 2025-09-01 23:18:33.280901+00 2025-09-01 23:18:33.28091+00 f t [["2025-09-02", "Noche"], ["2025-09-02", "Noche"], ["2025-09-02", "Noche"]] confirmado 6681 7763 \N Mi gata tiene una herida que no se le cicatriza le aplicamos desinfectantes que nos dijeron otros veterinarios pero al ser grande tampoco se la puede trasladar porque es arisca. Y se rasca entonces nunca se le cura 1208 2025-09-02 03:00:00+00 17:00:00 38687302422 94 \N +488 2025-09-02 14:41:10.515576+00 2025-09-02 14:41:10.51559+00 f t [["2025-09-05", "Noche"], ["2025-09-04", "Mañana"], ["2025-09-08", "Noche"]] in_progress_vet 6714 7797 \N Hola buenos días! Quería una consulta ya que a mi gata le salio un bultito en la parte de arriba de su patita 1208 \N \N \N \N \N +504 2025-09-03 14:00:12.355347+00 2025-09-03 14:00:12.355359+00 f t [["2025-09-03", "morning"], ["2025-09-03", "afternoon"], ["2025-09-03", "evening"]] confirmado 6805 5189 \N \N 1208 2025-09-03 03:00:00+00 18:00:00 76408098 68 \N +506 2025-09-03 16:51:55.440675+00 2025-09-03 16:51:55.440688+00 f t [["2025-09-03", "morning"], ["2025-09-03", "afternoon"], ["2025-09-03", "evening"]] in_progress_vet 6737 7820 \N \N 1208 \N \N \N \N \N +500 2025-09-02 23:41:10.510656+00 2025-09-02 23:41:10.510668+00 f t [["2025-09-03", "Noche"], ["2025-09-04", "Noche"], ["2025-09-05", "Noche"]] rejected 6758 7843 \N Mi gato tiene un glaucoma en su ojo izquierdo por una pelea con otro gato hace unos años. Siempre se mantuvo bien y el siguió con su vida tranquilo. Ahora le empezó a molestar de nuevo, lo llevamos a revisión y tiene 36 de presión. Nos dieron unas gotas para ponerle, pero desde que está con medicación se esconde todo el día en la cama tapado y casi no come. Necesito una segunda opinión si tener que estresarlo por sacarlo de casa. 1208 \N \N \N \N \N +508 2025-09-03 22:13:41.656918+00 2025-09-03 22:13:41.656926+00 f t [["2025-09-09", "Mañana"], ["2025-09-09", "Tarde"], ["2025-09-09", "Noche"]] rejected 6850 7936 \N Control 113 \N \N \N \N \N +510 2025-09-04 11:37:03.677749+00 2025-09-04 11:37:03.677765+00 f t [["2025-09-04", "Mañana"], ["2025-09-04", "Tarde"], ["2025-09-05", "Noche"]] rejected 6879 7965 \N Raquel se tragó una gomita 1208 \N \N \N \N \N +492 2025-09-02 16:21:04.572956+00 2025-09-02 16:21:04.572965+00 f t [["2025-09-27", "morning"], ["2025-09-27", "afternoon"], ["2025-09-27", "evening"]] in_progress_vet 6729 4255 \N \N 1208 \N \N \N \N \N +491 2025-09-02 15:38:18.217226+00 2025-09-02 15:38:18.21724+00 f t [["2025-09-03", "Tarde"], ["2025-09-03", "Noche"], ["2025-09-04", "Mañana"]] rejected 6721 7803 \N Parece resfriado por momentos y tiene molestia en los dientes. Quiero ver si esta ok para que le hagan limpieza/ extracción si es necesario. 1208 \N \N \N \N \N +489 2025-09-02 15:03:02.569234+00 2025-09-02 15:03:02.569246+00 f t [["2025-09-05", "Noche"], ["2025-09-05", "Noche"], ["2025-09-05", "Noche"]] rejected 6716 7799 \N Arritmia y soplo. 1208 \N \N \N \N \N +512 2025-09-04 14:14:02.91232+00 2025-09-04 14:14:02.912332+00 f t [["2025-09-05", "morning"], ["2025-09-05", "afternoon"], ["2025-09-05", "evening"]] in_progress_vet 6888 6869 \N \N 1208 \N \N \N \N \N +514 2025-09-04 15:19:38.983351+00 2025-09-04 15:19:38.983359+00 t t [["2025-09-04", "Tarde"], ["2025-09-04", "Mañana"], ["2025-09-04", "Noche"]] in_progress_vet 6891 7975 \N Vomitos 1583 \N \N \N \N \N +517 2025-09-04 23:55:46.089151+00 2025-09-04 23:55:46.089161+00 f t [["2025-09-04", "Noche"], ["2025-09-04", "Noche"], ["2025-09-04", "Noche"]] in_progress_vet 6925 8008 \N Estornudo y lagrimeo, fatiga y poco animo 113 \N \N \N \N \N +493 2025-09-02 17:41:03.677912+00 2025-09-02 17:41:03.677925+00 f t [["2025-09-09", "morning"], ["2025-09-09", "afternoon"], ["2025-09-09", "evening"]] confirmado 6736 7818 \N \N 1208 2025-09-09 03:00:00+00 20:00:00 124051201035 70 \N +496 2025-09-02 19:56:03.432961+00 2025-09-02 19:56:03.432971+00 f t [["2025-09-02", "morning"], ["2025-09-02", "afternoon"], ["2025-09-02", "evening"]] confirmado 6745 7827 \N \N 1208 2025-09-02 03:00:00+00 21:00:00 124072312283 80 \N +611 2025-09-21 19:23:37.559982+00 2025-09-21 19:23:37.559994+00 f t [["2025-09-22", "evening"]] vet_accepted 7950 9064 114 \N 114 2025-09-22 03:00:00+00 18:00:00 126468636769 92 \N +532 2025-09-08 04:11:38.742267+00 2025-09-08 04:11:38.742276+00 f t [["2025-09-09", "Noche"], ["2025-09-10", "Noche"], ["2025-09-11", "Noche"]] in_progress_vet 7088 8178 \N Hola, buenas tardes. Mi nombre es Andrea, tengo un pitbull de 11 meses llamado Rocco que está en tratamiento dermatológico.\nLlevamos ya más de 6–7 meses con este tema y, por ahora, está comiendo alimento hipoalergénico. Sin embargo, todavía no tenemos certeza de la causa de su problema.\nMe gustaría consultar si podríamos coordinar una cita de nutrición y trabajar en conjunto con el tratamiento dermatológico, para evaluar si conviene continuar con este alimento o si podemos comenzar a descartar opciones. 1583 \N \N \N \N \N +572 2025-09-16 15:15:48.094311+00 2025-09-16 15:15:48.09432+00 f t [["2025-09-16", "Tarde"], ["2025-09-16", "Mañana"], ["2025-09-16", "Noche"]] in_progress_vet 7615 8724 \N La vengo paseando (corto pero demostraba voluntad de salir así que salíamos), con dificultad xq tiene algo degenerativo de la columna y ya rengueaba mucho y se caía un montón. Ayer creo que fue su último paseo porque la terminamos trayendo a UPA y no quiso cenar y ya hoy no la pude parar. Le estoy dando agua con un vasito xq como que no sostiene la cabeza para tomar sola de su plato. No sé si haya algo para ayudarla o no. 1583 \N \N \N \N \N +565 2025-09-13 22:47:32.801837+00 2025-09-13 22:47:32.801846+00 f t [["2025-09-13", "Noche"], ["2025-09-14", "Mañana"], ["2025-09-14", "Tarde"]] rejected 7508 8610 \N Lleva más de 24hs sin ingerir alimentos. En principio ya tiene más de 14 años y es de raza grande de tamaño. Está cieguito. Solo está tomando agua de forma asistida y está muy decaido 114 \N \N \N \N \N +567 2025-09-14 10:55:07.486262+00 2025-09-14 10:55:07.486272+00 f t [["2025-09-14", "Tarde"], ["2025-09-14", "Noche"], ["2025-09-14", "Mañana"]] rejected 7520 8622 \N Desde ayer (sábado) se despertó con vómitos amarillos, sin apetito, decaída. Cuando se acuesta se la ve temblando, se nota que algo le duele, si se levantaba jadeaba por momentos. Sigue sin querer comer hasta ahora, está en ayunas, solo le ofrezco agua en poca cantidad.\nLlamé a todos lados, no consigo que vengan a domicilio, no tengo como llevarla a un veterinario ya que no cuento con transporte.\nAnoche se acostó al lado de mí cama y no se mueve de ahí, quedó recostada y sigue temblando. 114 \N \N \N \N \N +617 2025-09-21 20:44:06.549892+00 2025-09-21 20:44:06.549902+00 f t [["2025-09-22", "evening"]] confirmado 7959 9071 114 \N 114 2025-09-22 03:00:00+00 20:00:00 127045347086 92 \N +574 2025-09-17 16:06:20.351044+00 2025-09-17 16:06:20.351056+00 f t [["2025-09-17", "Tarde"], ["2025-09-17", "Tarde"], ["2025-09-17", "Noche"]] in_progress_vet 7672 8788 \N perra recién rescatada con 9 cachorros 1583 \N \N \N \N \N +571 2025-09-16 11:43:54.998937+00 2025-09-16 11:43:54.998947+00 f t [["2025-09-16", "Mañana"], ["2025-09-16", "Tarde"], ["2025-09-16", "Noche"]] confirmado 7607 8716 \N Está decaído. No quiere levantarse y en él es nada normal..Es Golden. Y siempre inquieto 1208 2025-09-16 03:00:00+00 11:00:00 126382185160 1 \N +866 2025-10-06 13:29:12.88043+00 2025-10-06 13:29:12.880438+00 t t [["2025-10-06", "afternoon"]] pending 8970 8958 \N \N \N \N \N \N \N \N +584 2025-09-19 02:09:58.887299+00 2025-09-19 02:09:58.887308+00 f t [["2025-10-02", "Mañana"], ["2025-10-02", "Tarde"], ["2025-10-02", "Noche"]] in_progress_vet 7788 8907 \N Chequeo general 1583 \N \N \N \N \N +578 2025-09-18 11:34:33.100421+00 2025-09-18 11:34:33.100431+00 f t [["2025-09-18", "Mañana"], ["2025-09-19", "Mañana"], ["2025-09-20", "Mañana"]] in_progress_vet 7730 8849 \N Conjuntivitis en un ojo 1208 \N \N \N \N \N +580 2025-09-18 13:34:23.553617+00 2025-09-18 13:34:23.553627+00 f t [["2025-09-18", "Noche"], ["2025-09-20", "Noche"], ["2025-09-19", "Noche"]] in_progress_vet 7737 822 \N Milo estuvo sintiendose medio decaido porque comió unas flores (las vimos en la caca). \nAhora le esta costando hacer pis. Hace gotitas, muchisimas veces al dia. 1208 \N \N \N \N \N +576 2025-09-18 10:40:55.216703+00 2025-09-18 10:40:55.216713+00 f t [["2025-09-18", "Tarde"], ["2025-09-18", "Noche"], ["2025-09-20", "Noche"]] rejected 7726 8845 \N Eco control tiene orden 1208 \N \N \N \N \N +588 2025-09-19 17:52:00.709769+00 2025-09-19 17:52:00.709778+00 f t [["2025-09-30", "morning"]] confirmado 7829 8947 \N \N 1583 2025-09-30 03:00:00+00 10:00:00 126801013818 1 \N +586 2025-09-19 14:46:02.49062+00 2025-09-19 14:46:02.490634+00 f t [["2025-09-22", "Mañana"], ["2025-09-19", "Tarde"], ["2025-09-20", "Tarde"]] in_progress_vet 7810 8929 \N Consulta por vómitos el día jueves. Dieta por 18hs.\nViernes 19, continua con vómitos. Fue nuevamente a consulta, donde le dieron suero y solicitud de ecografia 1583 \N \N \N \N \N +582 2025-09-18 19:10:15.323043+00 2025-09-18 19:10:15.323055+00 f t [["2025-09-23", "Tarde"], ["2025-09-23", "Noche"], ["2025-09-24", "Noche"]] confirmado 7762 7909 113 es para vacunación anual (antirrábica y séxtuple) 113 2025-09-23 03:00:00+00 18:30:00 126248518383 92 \N +589 2025-09-19 17:52:02.692393+00 2025-09-19 17:52:02.692405+00 t t [["2025-09-30", "morning"]] pending 7829 8947 \N \N \N \N \N \N \N \N +591 2025-09-19 20:08:59.332802+00 2025-09-19 20:08:59.332814+00 f t [["2025-09-20", "morning"], ["2025-09-20", "afternoon"], ["2025-09-20", "evening"]] confirmado 7841 8958 1208 \N 1208 2025-09-20 03:00:00+00 11:00:00 126821432082 70 \N +593 2025-09-19 20:58:08.508214+00 2025-09-19 20:58:08.508228+00 f t [["2025-09-20", "morning"], ["2025-09-20", "afternoon"], ["2025-09-20", "evening"]] confirmado 7847 8964 1208 \N 1208 2025-09-20 03:00:00+00 10:00:00 126825098890 70 \N +595 2025-09-19 22:45:23.289957+00 2025-09-19 22:45:23.289966+00 f t [["2025-09-20", "morning"], ["2025-09-20", "afternoon"], ["2025-09-20", "evening"]] confirmado 7855 8973 1208 \N 1208 2025-09-20 03:00:00+00 11:00:00 126843074020 68 \N +597 2025-09-19 23:22:58.473365+00 2025-09-19 23:22:58.473374+00 f t [["2025-09-22", "morning"], ["2025-09-22", "afternoon"], ["2025-09-22", "evening"]] confirmado 7860 3981 1208 \N 1208 2025-09-22 03:00:00+00 18:30:00 126292937355 92 \N +599 2025-09-20 10:36:24.592957+00 2025-09-20 10:36:24.592966+00 f t [["2025-09-20", "Mañana"], ["2025-09-20", "Tarde"], ["2025-09-20", "Noche"]] rejected 7875 8992 \N Tiene patologías cardíacas toma pimodem 5 mg cada 12 hs y contal 30 cada 12 hs vino con toxoplasmosis de criadero lo veo caído y necesito un chequeo general y análisis de sangre completo para saber si tiene el paracito activo también leí las contraindicaciones del contal y coinciden casi todas quiero saber con un análisis completo si aún lo debe tomar 1208 \N \N \N \N \N +601 2025-09-20 13:28:28.521524+00 2025-09-20 13:28:28.521532+00 f t [["2025-09-20", "Mañana"], ["2025-09-20", "Tarde"], ["2025-09-20", "Noche"]] rejected 7882 8998 \N Buen día, indio está desde ayer sin ganas de caminar, parece que es algo d euns para pero no estamos seguros. 1208 \N \N \N \N \N +614 2025-09-21 19:41:20.235989+00 2025-09-21 19:41:20.235999+00 f t [["2025-09-22", "afternoon"]] confirmado 7934 9049 114 \N 114 2025-09-22 03:00:00+00 15:30:00 127030830674 21 \N +564 2025-09-13 21:29:06.257645+00 2025-09-13 21:29:06.257654+00 f t [["2025-09-13", "Noche"], ["2025-09-13", "Noche"], ["2025-09-13", "Noche"]] in_progress_vet 7501 8602 \N Está apagado, cojeando y le cuesta pararse o moverse, tuvo diarrea 114 \N \N \N \N \N +533 2025-09-08 10:37:14.343427+00 2025-09-08 10:37:14.343439+00 f t [["2025-09-10", "Noche"], ["2025-09-09", "Noche"], ["2025-09-11", "Noche"]] in_progress_vet 7092 8182 \N Vacunacion 1583 \N \N \N \N \N +534 2025-09-08 10:52:14.303269+00 2025-09-08 10:52:14.303277+00 f t [["2025-09-08", "Mañana"], ["2025-09-08", "Tarde"], ["2025-09-08", "Noche"]] in_progress_vet 7093 8183 \N Tiene un hueco con sangre en la cola 1583 \N \N \N \N \N +535 2025-09-08 13:38:04.660803+00 2025-09-08 13:38:04.660813+00 f t [["2025-09-09", "Mañana"], ["2025-09-09", "Tarde"], ["2025-09-10", "Mañana"]] in_progress_vet 7100 8190 \N Hola, ayer entró un Murciélago a casa y temo que haya tenido contacto con Dickens 1583 \N \N \N \N \N +544 2025-09-09 14:40:21.94914+00 2025-09-09 14:40:21.949149+00 f t [["2025-09-09", "Noche"], ["2025-09-10", "Tarde"], ["2025-09-10", "Mañana"]] confirmado 7196 8287 \N Dolor intenso, suponemos qué proviene de una bola de supuestamente benigna en la axila derecha, pero se le ha expandido a la pata y cuello. 1208 2025-09-09 03:00:00+00 21:00:00 81798687 80 \N +536 2025-09-08 17:38:21.505033+00 2025-09-08 17:38:21.505041+00 f t [["2025-09-09", "Mañana"], ["2025-09-10", "Mañana"], ["2025-09-11", "Mañana"]] in_progress_vet 7118 8210 \N Diarrea y vómitos 114 \N \N \N \N \N +539 2025-09-09 01:05:20.395768+00 2025-09-09 01:05:20.395781+00 f t [["2025-09-13", "Mañana"], ["2025-09-13", "Tarde"], ["2025-09-13", "Noche"]] in_progress_vet 7157 8248 \N Hola quería averiguar para castracion de gatos y si lo hacen un sábado.\nGracias 1208 \N \N \N \N \N +537 2025-09-08 19:25:47.183174+00 2025-09-08 19:25:47.1832+00 f t [["2025-09-08", "Noche"], ["2025-09-09", "Mañana"], ["2025-09-08", "Noche"]] payed 7126 8218 \N Parto 1583 2025-09-08 03:00:00+00 19:00:00 125400618538 90 \N +538 2025-09-08 23:51:33.562421+00 2025-09-08 23:51:33.562431+00 f t [["2025-09-08", "Noche"], ["2025-09-08", "Tarde"], ["2025-09-08", "Mañana"]] rejected 7146 8237 \N Toto es un bichon frise que está por cumplir 9 años. Aun es juguetón y muy alegre. Hoy ha cambiado por completo. Algo le duele al moverse y se queja, camina muy lento, no se puede subir al sillon ni a la cama. Estuvo todo el dia en su camita del piso y cuando se mueve hace un leve llantito. Daría la impresión que le duele la columna o las patitas de atras. 114 \N \N \N \N \N +543 2025-09-09 13:56:32.793826+00 2025-09-09 13:56:32.793835+00 f t [["2025-09-09", "Mañana"], ["2025-09-09", "Tarde"], ["2025-09-09", "Noche"]] confirmado 7187 8278 \N Mi gato no esta comiendo y vomita 1208 2025-09-09 03:00:00+00 19:30:00 125497364466 92 \N +542 2025-09-09 10:11:06.809362+00 2025-09-09 10:11:06.809373+00 f t [["2025-09-09", "Mañana"], ["2025-09-09", "Tarde"], ["2025-09-09", "Noche"]] in_progress_vet 7184 8275 \N Tiene ligamentos posterior roto y tienen que operarla.\nSolicitan EV cardiologica. EKG + ecocardiograma. Todo pre quirúrgico. \nTe puedo enviar foto de la orden para evitar errores y saber costos precisos 1208 \N \N \N \N \N +541 2025-09-09 03:00:25.593007+00 2025-09-09 03:00:25.593015+00 f t [["2025-09-09", "Mañana"], ["2025-09-09", "Mañana"], ["2025-09-09", "Mañana"]] rejected 7165 8256 \N Se puso muy agresiva repentinamente, no me apuedo acercar, sin que me intente atacar a mi a su a otra dueña. Estar en el mismo espacio es casi imposible. Todo bastante repentino. En el proceso de sus intentos de ataque ha tenido las pupilas dilatadas y se orino 2 veces 1208 \N \N \N \N \N +540 2025-09-09 01:08:39.497233+00 2025-09-09 01:08:39.497242+00 f t [["2025-09-09", "Mañana"], ["2025-09-09", "Tarde"], ["2025-09-08", "Noche"]] rejected 7159 8250 \N Tengo una orden para rx de la pata trasera izquierda 1208 \N \N \N \N \N +545 2025-09-09 15:01:14.245968+00 2025-09-09 15:01:14.245977+00 f t [["2025-09-09", "Tarde"], ["2025-09-09", "Mañana"], ["2025-09-09", "Noche"]] in_progress_vet 7185 8276 \N esta respirando mal , muy agitado desde anoche con un chillido. 1583 \N \N \N \N \N +546 2025-09-09 18:31:34.119847+00 2025-09-09 18:31:34.119857+00 f t [["2025-09-09", "Noche"], ["2025-09-09", "Tarde"], ["2025-09-09", "Mañana"]] rejected 7211 8302 \N Se le murieron las piernas, no tiene fuerza ni para pararse. Se lo ve decaído y con un ojo con conjuntivitis 1208 \N \N \N \N \N +547 2025-09-10 08:51:08.652549+00 2025-09-10 08:51:08.652558+00 f t [["2025-09-10", "Mañana"], ["2025-09-10", "Noche"], ["2025-09-10", "Mañana"]] in_progress_vet 7245 8338 \N No come hace 2 días y recién vomitó 1208 \N \N \N \N \N +548 2025-09-10 17:41:48.241785+00 2025-09-10 17:41:48.241793+00 f t [["2025-09-10", "Noche"], ["2025-09-11", "Noche"], ["2025-09-11", "Tarde"]] payed 7274 8368 \N Llora y lo tocamos y llora más aún 1208 \N \N 125118838419 \N \N +549 2025-09-10 19:51:25.85189+00 2025-09-10 19:51:25.851899+00 f t [["2025-09-12", "Tarde"], ["2025-09-12", "Tarde"], ["2025-09-12", "Tarde"]] in_progress_vet 7290 8385 \N Mi gato no esta pudiendo maullar, abre la boca y no tiene sonido y babea lo cual no hacia habitualmente. El lunes lo encontramos con letargo, la mirada perdida y babeando, por lo cual llamamos a su medico de cabecera e identifico que tenia una infeccion urinaria, con lo cual ahora esta tomando un mio relajante, pero no sabemos el motivo de la falta de voz y queremos descartar otros temas. Adicionalmente adoptamos un nuevo gatito hace 7 dias lo cual lo estreso de sobre manera a Chardonnay que le gruñe todo el tiempo y ya no quiere dormir conmigo y se aleja todo el tiempo. Me gustaria saber si la Eco se puede hacer sin anestesia. O de ser si o si con anestesia aprovechar para hacer analisis de sangre ya que tiene 11 años de edad Chardonnay. 1583 \N \N \N \N \N +551 2025-09-10 21:10:50.436096+00 2025-09-10 21:10:50.436107+00 f t [["2025-09-10", "Noche"], ["2025-09-10", "Tarde"], ["2025-09-10", "Mañana"]] payed 7300 8397 \N Arcadas desde las 14hs, impulso de comer pasto, hojas, todo lo que este a su paso, ruidos estomacales. 1583 2025-09-10 03:00:00+00 21:30:00 . 79 \N +552 2025-09-10 21:33:18.13055+00 2025-09-10 21:33:18.130564+00 f t [["2025-09-11", "Mañana"], ["2025-09-11", "Noche"], ["2025-09-10", "Noche"]] payed 7303 8400 \N El gatito esta con vómitos y queremos saber que este bien. 1583 \N \N 125162393821 \N \N +550 2025-09-10 20:08:24.962995+00 2025-09-10 20:08:24.963005+00 f t [["2025-09-11", "Tarde"], ["2025-09-12", "Tarde"], ["2025-09-13", "Mañana"]] coordinated 7295 8390 \N Está con un cuadro de gastroenteritis y come muy poco hace unos días. Tiene hecho un análisis de sangre que está ok y en la eco le salió una sombra en el estómago que hay que seguir de cerca para ver si lo evacua. La consulta sería para ver cómo está en estado general, ya que come poco y tememos que derive en una lipodosis hepática. 1583 \N \N 680d026d-ded8-446b-8196-4be67846bfe3 \N \N +553 2025-09-11 15:13:01.553806+00 2025-09-11 15:13:01.553818+00 f t [["2025-09-15", "Noche"], ["2025-09-16", "Noche"], ["2025-09-18", "Noche"]] in_progress_vet 7347 8445 \N Lo tengo que vacunar pero es muy difícil trasladarlo 1583 \N \N \N \N \N +554 2025-09-11 18:23:56.839828+00 2025-09-11 18:23:56.839837+00 f t [["2025-09-11", "Mañana"], ["2025-09-11", "Tarde"], ["2025-09-11", "Noche"]] in_progress_vet 7358 8458 \N Vomitos 1583 \N \N \N \N \N +650 2025-09-23 16:07:53.822913+00 2025-09-23 16:07:53.822926+00 f t [["2025-09-28", "morning"]] vet_accepted 8082 4433 1583 \N 1583 2025-09-28 03:00:00+00 11:00:00 127259584226 80 \N +555 2025-09-11 23:00:50.479772+00 2025-09-11 23:00:50.479781+00 f t [["2025-09-12", "Noche"], ["2025-09-11", "Noche"], ["2025-09-12", "Noche"]] rejected 7374 8474 \N Está con mucho dolor 114 \N \N \N \N \N +563 2025-09-13 17:01:01.503025+00 2025-09-13 17:01:01.503038+00 f t [["2025-09-13", "Noche"], ["2025-09-13", "Tarde"], ["2025-09-14", "Tarde"]] confirmado 7482 8583 \N Tiene el ojo completamente cerrado ,con secreción . No sé queja directamente,pero hace 14 horas que está asi 1208 2025-09-14 03:00:00+00 11:00:00 126071194612 80 \N +556 2025-09-12 01:00:04.770745+00 2025-09-12 01:00:04.770758+00 f t [["2025-09-12", "Mañana"], ["2025-09-12", "Tarde"], ["2025-09-12", "Noche"]] payed 7385 8486 \N Ojo lastimado, parece que otro gato lo arañó. Parece lagrimal dañado 1583 \N \N , \N \N +557 2025-09-12 16:35:04.414811+00 2025-09-12 16:35:04.414823+00 f t [["2025-09-12", "Tarde"], ["2025-09-12", "Noche"], ["2025-09-13", "Mañana"]] in_progress_vet 7424 8524 \N Estreñimiento 1208 \N \N \N \N \N +566 2025-09-13 23:36:48.889387+00 2025-09-13 23:36:48.889398+00 f t [["2025-10-04", "Mañana"], ["2025-10-04", "Tarde"], ["2025-10-04", "Noche"]] rejected 7510 8612 \N Adopte a mi perra en diciembre y es muy miedosa. Estamos trabajando con un adiestrador su conducta pero necesito que venga alguien para ayudarme con las vacunas pero no se deja manipular por nadie asique se las tengo que dar yo 114 \N \N \N \N \N +579 2025-09-18 12:40:08.468516+00 2025-09-18 12:40:08.468528+00 f t [["2025-09-18", "Noche"], ["2025-09-18", "Tarde"], ["2025-09-19", "Mañana"]] rejected 7736 8854 \N Tiene una herida en la pata y está hinchada 1208 \N \N \N \N \N +558 2025-09-12 16:56:46.330533+00 2025-09-12 16:56:46.330543+00 f t [["2025-09-12", "Tarde"], ["2025-09-12", "Tarde"], ["2025-09-12", "Tarde"]] rejected 7426 8526 \N Aparentemente tiene algo en la cadera no se puede parar ya hoy y Sta inflamado su estómago, si apetito no se fue ella come y toma agua solo q no se puede levantar 1208 \N \N \N \N \N +568 2025-09-15 00:02:13.678727+00 2025-09-15 00:02:13.678741+00 f t [["2025-09-18", "Noche"], ["2025-09-19", "Tarde"], ["2025-09-22", "Tarde"]] in_progress_vet 7543 8649 \N control 1583 \N \N \N \N \N +562 2025-09-13 13:17:32.543303+00 2025-09-13 13:17:32.543312+00 f t [["2025-09-13", "Mañana"], ["2025-09-13", "Tarde"], ["2025-09-13", "Noche"]] confirmado 7476 8577 \N Decaimiento de 48 hs de evolución. Disminución de la ingesta de líquidos y comida 1208 2025-09-13 03:00:00+00 12:30:00 125481950725 80 \N +559 2025-09-12 22:04:25.886179+00 2025-09-12 22:04:25.88619+00 f t [["2025-09-15", "Tarde"], ["2025-09-16", "Tarde"], ["2025-09-17", "Tarde"]] in_progress_vet 7442 8543 \N Rengue con la pata izquierda pero no se ve lastimada como a Fiama 1208 \N \N \N \N \N +561 2025-09-13 12:03:27.719825+00 2025-09-13 12:03:27.719835+00 f t [["2025-09-13", "Mañana"], ["2025-09-14", "Mañana"], ["2025-09-14", "Tarde"]] rejected 7470 8571 \N Descartar obstruccion 1208 \N \N \N \N \N +560 2025-09-12 22:51:00.749425+00 2025-09-12 22:51:00.749434+00 f t [["2025-09-12", "Noche"], ["2025-09-12", "Noche"], ["2025-09-12", "Noche"]] rejected 7446 8547 \N Vomito 5 veces y no come 1208 \N \N \N \N \N +573 2025-09-16 23:44:24.880685+00 2025-09-16 23:44:24.880694+00 f t [["2025-09-23", "Noche"], ["2025-09-25", "Noche"], ["2025-09-24", "Noche"]] in_progress_vet 7652 8767 \N Consulta general por su edad (13 años) 1208 \N \N \N \N \N +570 2025-09-16 10:58:41.763424+00 2025-09-16 10:58:41.763434+00 f t [["2025-09-16", "Tarde"], ["2025-09-16", "Tarde"], ["2025-09-16", "Tarde"]] confirmado 7605 8714 \N Está vomitando 1208 2025-09-16 03:00:00+00 12:00:00 125828574365 1 \N +575 2025-09-18 01:44:15.053631+00 2025-09-18 01:44:15.05364+00 f t [["2025-09-18", "Tarde"], ["2025-09-18", "Tarde"], ["2025-09-18", "Tarde"]] in_progress_vet 7707 8826 \N Hola! Hoy mí veterinaria me sugirió hacer una ecografía para mí gata, porque ha estado vomitando. Es posible agendar para este jueves por favor? 1208 \N \N \N \N \N +581 2025-09-18 18:33:56.703624+00 2025-09-18 18:33:56.703633+00 f t [["2025-09-18", "Tarde"], ["2025-09-18", "Noche"], ["2025-09-18", "Mañana"]] in_progress_vet 7759 8879 \N No tiene apetito desde ayer, vomita lo poco que come y a veces vomita con un tono amarillento 1208 \N \N \N \N \N +577 2025-09-18 10:41:16.983502+00 2025-09-18 10:41:16.983512+00 f t [["2025-09-18", "Mañana"], ["2025-09-18", "Noche"], ["2025-09-19", "Mañana"]] rejected 7724 8843 \N Está muy decaída, casi no quiere comer, con colitis intensa desde ayer y hoy vi sangre en la deposición 1208 \N \N \N \N \N +583 2025-09-18 22:56:12.193805+00 2025-09-18 22:56:12.193814+00 f t [["2025-09-18", "Noche"], ["2025-09-19", "Mañana"], ["2025-09-19", "Noche"]] payed 7777 8896 \N Hernia peria anal 113 2025-09-19 03:00:00+00 17:30:00 88761566 90 \N +4 2025-04-20 11:55:04.8726+00 2025-04-20 11:55:04.872613+00 f t [["2025-04-20", "Mañana"], ["2025-04-21", "Mañana"], ["2025-04-21", "Tarde"]] rejected 18 701 \N \N \N 2025-10-10 03:00:00+00 08:00:00 \N 1 \N +587 2025-09-19 17:49:17.457178+00 2025-09-19 17:49:17.457187+00 t t [["2025-09-30", "morning"]] payed 7829 8947 1583 \N 1583 2025-09-30 03:00:00+00 10:00:00 126801013818 1 \N +590 2025-09-19 19:24:36.207157+00 2025-09-19 19:24:36.207166+00 f t [["2025-09-19", "evening"]] confirmado 7838 470 1583 \N 1583 2025-09-19 03:00:00+00 18:00:00 126261133125 1 \N +585 2025-09-19 10:49:43.000815+00 2025-09-19 10:49:43.000828+00 f t [["2025-09-19", "Mañana"], ["2025-09-19", "Tarde"], ["2025-09-19", "Noche"]] confirmado 7799 8918 1583 Ayer vomito y tuvo diarrea. Pasó mal la noche y pareciera tener mucho dolor de panza 1583 2025-09-19 03:00:00+00 19:00:00 126821982910 1 \N +596 2025-09-19 23:17:15.657364+00 2025-09-19 23:17:15.657374+00 f t [["2025-09-19", "Noche"], ["2025-09-19", "Noche"], ["2025-09-19", "Tarde"]] rejected 7859 8977 \N Tiene una latimadura con pus abajo del brazo que se la descubrí ahora, y está temblando por momentos.\n\n*Info aparte: el esta medicado con un tratamiento por convulsiones 1208 \N \N \N \N \N +592 2025-09-19 20:28:06.778007+00 2025-09-19 20:28:06.778019+00 f t [["2025-09-20", "Mañana"], ["2025-09-20", "Tarde"], ["2025-09-20", "Noche"]] confirmado 7843 8961 1208 Es una gatita que encontré en la calle, está internada pero no tienen servicio de ecografía. Está en mal estados. Le hicimos análisis de sangre pero me recomendaron hacerle una eco 1208 2025-09-20 03:00:00+00 18:00:00 126842703730 90 \N +600 2025-09-20 13:05:40.636986+00 2025-09-20 13:05:40.636999+00 f t [["2025-09-20", "morning"], ["2025-09-20", "afternoon"], ["2025-09-20", "evening"]] confirmado 7880 6788 1208 \N 1208 2025-09-20 03:00:00+00 11:30:00 126894210674 100 \N +602 2025-09-20 14:51:00.54349+00 2025-09-20 14:51:00.543498+00 f t [["2025-09-20", "Tarde"], ["2025-09-20", "Noche"], ["2025-09-21", "Mañana"]] in_progress_vet 7886 9002 \N El gato vomito y entre el vomito había sangre 1208 \N \N \N \N \N +594 2025-09-19 20:58:08.513898+00 2025-09-19 20:58:08.513911+00 f t [["2025-09-20", "morning"], ["2025-09-20", "afternoon"], ["2025-09-20", "evening"]] rejected 7847 8964 \N \N 1208 \N \N \N \N \N +610 2025-09-21 19:14:19.56809+00 2025-09-21 19:14:19.568103+00 f t [["2025-09-23", "afternoon"]] confirmado 7945 2234 114 \N 114 2025-09-23 03:00:00+00 16:00:00 127038335118 113 \N +603 2025-09-20 15:56:25.257233+00 2025-09-20 15:56:25.257243+00 f t [["2025-10-01", "morning"], ["2025-10-01", "afternoon"], ["2025-10-01", "evening"]] confirmado 7892 5733 1208 \N 1208 2025-10-01 03:00:00+00 16:00:00 126912746336 68 \N +598 2025-09-20 01:49:59.92587+00 2025-09-20 01:49:59.925879+00 f t [["2025-09-19", "Noche"], ["2025-09-20", "Mañana"], ["2025-09-20", "Tarde"]] rejected 7868 8985 \N Camba tiene 10 años, tiene artrosis y mucho dolor articular. No quiere acostarse y jadea mucho. El domingo pasado le dieron una inyección de tramadol con meloxican. Y esta semana tomando pregabalina, pero actualmente no quiere acostarse además de que cuando jadea hace un ruido raro. 1208 \N \N \N \N \N +1076 2025-10-17 21:05:08.214691+00 2025-10-17 21:05:08.214704+00 t t [["2025-10-17", "morning"], ["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] pending 9928 10901 \N \N \N \N \N \N \N \N +608 2025-09-21 07:45:15.590937+00 2025-09-21 07:45:15.590949+00 f t [["2025-09-21", "Mañana"], ["2025-09-21", "Tarde"], ["2025-09-21", "Noche"]] rejected 7922 9037 \N Vómitos e intestinos inflamados 114 \N \N \N \N \N +607 2025-09-20 22:51:16.600098+00 2025-09-20 22:51:16.600107+00 f t [["2025-09-20", "Noche"], ["2025-09-20", "Mañana"], ["2025-09-21", "Tarde"]] rejected 7910 9025 \N Necesito realizarle una ecografia 114 \N \N \N \N \N +626 2025-09-22 15:27:18.793842+00 2025-09-22 15:27:18.793852+00 f t [["2025-09-23", "afternoon"]] confirmado 8010 9120 1583 \N 1583 2025-09-23 03:00:00+00 13:30:00 38942639724 90 \N +604 2025-09-20 16:36:03.771013+00 2025-09-20 16:36:03.771022+00 f t [["2025-09-20", "Noche"], ["2025-09-20", "Mañana"], ["2025-09-20", "Tarde"]] confirmado 7893 9008 1208 Tiene lastimado en su cole, con sangrado, por pelea con otros gatos 1208 2025-09-20 03:00:00+00 17:30:00 ORD6LEN87WKG1Y8Y2M1Y30 91 \N +605 2025-09-20 18:07:43.424711+00 2025-09-20 18:07:43.424723+00 f t [["2025-09-20", "Noche"], ["2025-09-20", "Tarde"], ["2025-09-21", "Mañana"]] in_progress_vet 7895 9010 \N En varias oportunidades vomitó amarillo y hace 2 días no come nada 1208 \N \N \N \N \N +618 2025-09-21 20:55:58.06418+00 2025-09-21 20:55:58.064195+00 f t [["2025-09-25", "evening"]] confirmado 7955 8397 114 \N 114 2025-09-25 03:00:00+00 20:30:00 127030065932 90 \N +612 2025-09-21 19:25:33.756834+00 2025-09-21 19:25:33.756844+00 f t [["2025-09-22", "Noche"], ["2025-09-23", "Mañana"], ["2025-09-24", "Mañana"]] rejected 7949 9063 \N No puede hacer pis 114 \N \N \N \N \N +660 2025-09-24 00:32:26.081563+00 2025-09-24 00:32:26.081572+00 f t [["2025-09-25", "morning"]] Confirmado 8120 9109 113 \N 113 2025-09-24 03:00:00+00 09:30:00 127302156190 113 \N +613 2025-09-21 19:27:32.593138+00 2025-09-21 19:27:32.593147+00 f t [["2025-09-22", "Noche"], ["2025-09-21", "Noche"], ["2025-09-21", "Noche"]] in_progress_vet 7946 9060 \N Le lagrimea bastante el ojo izquierdo y lo entrecierra bastante, y el derecho le lagrimea un poco también 1583 \N \N \N \N \N +621 2025-09-22 10:02:15.836374+00 2025-09-22 10:02:15.836384+00 f t [["2025-09-22", "Mañana"], ["2025-09-22", "Mañana"], ["2025-09-22", "Noche"]] confirmado 7984 9096 1583 Hace 3 dias que no ingiere agua, ni alimento, apenas si le puedo mojar la boca. NO logra sostenerse sobre sus patas traseras, tiene los ojos hundidos . 1583 2025-09-22 03:00:00+00 11:00:00 126556195261 113 \N +606 2025-09-20 22:27:46.10942+00 2025-09-20 22:27:46.109428+00 f t [["2025-09-21", "Tarde"], ["2025-09-21", "Mañana"], ["2025-09-21", "Noche"]] confirmado 7908 9023 114 Decaimiento, perdida de peso, heces blandas. Gato no sumiso, caracter fuerte. 114 2025-09-21 03:00:00+00 12:00:00 126445430143 68 \N +265 2025-07-13 09:38:52.845677+00 2025-07-13 09:38:52.845689+00 f t [["2025-07-13", "Mañana"], ["2025-07-13", "Noche"], ["2025-07-13", "Tarde"]] rejected 3508 4461 \N Hace una semana tiene alguna que otra vez vomitó apenas come. Esporádicos. Ayer vomitó luego de comer varias veces . Luego poco apetito y decaimiento. \N \N \N \N \N \N +624 2025-09-22 14:19:00.966799+00 2025-09-22 14:19:00.966808+00 f t [["2025-09-23", "evening"]] confirmado 7999 8237 1583 \N 1583 2025-09-23 03:00:00+00 18:00:00 naranjaX 84 \N +609 2025-09-21 12:46:13.19167+00 2025-09-21 12:46:13.191683+00 f t [["2025-09-21", "Tarde"], ["2025-09-22", "Noche"], ["2025-09-23", "Noche"]] confirmado 7927 9042 114 Vomita los trocitos húmedos (optimun) apenas come lo vomita enteros. Dos días que pasa lo mismo.\nAdemás quisiera que al hacer la visita la desparaciten. 114 2025-09-22 03:00:00+00 19:30:00 127005704356 92 \N +623 2025-09-22 13:55:28.860898+00 2025-09-22 13:55:28.860907+00 f t [["2025-09-22", "Tarde"], ["2025-09-22", "Noche"], ["2025-09-22", "Mañana"]] confirmado 7997 9109 1583 No puede orinar , cuando está acostada se orina y creo que tiene inflamado el sector donde orina 1583 2025-09-22 03:00:00+00 12:00:00 126567689701 113 \N +627 2025-09-22 15:34:59.892409+00 2025-09-22 15:34:59.892418+00 f t [["2025-09-22", "afternoon"]] confirmado 8006 8385 1583 \N 1583 2025-09-23 03:00:00+00 17:00:00 50068389010250922 113 \N +628 2025-09-22 15:51:37.128247+00 2025-09-22 15:51:37.128255+00 f t [["2025-09-23", "afternoon"]] confirmado 7984 9096 1583 \N 1583 2025-09-23 03:00:00+00 13:00:00 127133252950 113 \N +629 2025-09-22 16:22:37.430413+00 2025-09-22 16:22:37.430422+00 f t [["2025-09-23", "morning"]] confirmado 8014 8639 1583 \N 1583 2025-09-23 03:00:00+00 09:30:00 30176867009250922 80 \N +630 2025-09-22 16:39:33.8726+00 2025-09-22 16:39:33.872608+00 f t [["2025-09-24", "evening"]] confirmado 8017 9126 1583 \N 1583 2025-09-24 03:00:00+00 18:30:00 127139188656 92 \N +631 2025-09-22 17:21:20.291857+00 2025-09-22 17:21:20.291866+00 f t [["2025-09-25", "morning"]] confirmado 8023 167 1583 \N 1583 2025-09-25 03:00:00+00 10:30:00 Z6OLMDN3XO1LMXRW9E7RQ5 88 \N +632 2025-09-22 17:47:25.801125+00 2025-09-22 17:47:25.801133+00 f t [["2025-09-22", "afternoon"]] confirmado 8024 7443 1583 \N 1583 2025-09-22 03:00:00+00 16:00:00 ORD6LEN87VVOWEPP2M1Y30 80 \N +635 2025-09-22 19:43:02.139654+00 2025-09-22 19:43:02.139663+00 t t [["2025-09-24", "afternoon"]] pending 8031 9137 \N \N \N \N \N \N \N \N +636 2025-09-22 19:43:02.146764+00 2025-09-22 19:43:02.146773+00 f t [["2025-09-24", "afternoon"]] confirmado 8031 9137 1583 \N 1583 2025-09-24 03:00:00+00 15:00:00 127157032904 1 \N +637 2025-09-22 19:54:42.430755+00 2025-09-22 19:54:42.430765+00 f t [["2025-09-24", "afternoon"]] confirmado 8031 9137 1583 \N 1583 2025-09-24 03:00:00+00 13:00:00 127157032904 1 \N +638 2025-09-22 20:02:48.759611+00 2025-09-22 20:02:48.75962+00 f t [["2025-09-22", "evening"]] payed 8033 822 1583 \N 1583 2025-09-22 03:00:00+00 18:30:00 126600766649 89 \N +633 2025-09-22 18:55:50.057852+00 2025-09-22 18:55:50.057861+00 f t [["2025-09-23", "morning"]] payed 8028 2484 1583 \N 1583 2025-09-23 03:00:00+00 10:30:00 91163802 1 \N +639 2025-09-22 23:35:56.127599+00 2025-09-22 23:35:56.127612+00 f t [["2025-09-22", "evening"], ["2025-09-22", "afternoon"]] confirmado 8047 9151 114 \N 114 2025-09-22 03:00:00+00 17:00:00 38945287034 80 \N +634 2025-09-22 19:42:10.492976+00 2025-09-22 19:42:10.492987+00 f t [["2025-09-24", "Noche"], ["2025-09-25", "Mañana"], ["2025-09-24", "Noche"]] confirmado 8029 9135 114 Quería consultar x oftalmológica ya q tiene los ojos q le lloran mucho y hay uno q lo tiene como mas inchado 114 2025-09-24 03:00:00+00 20:00:00 38946290426 80 \N +640 2025-09-23 00:22:00.972693+00 2025-09-23 00:22:00.972701+00 f t [["2025-09-28", "afternoon"]] confirmado 8052 9157 114 \N 114 2025-09-26 03:00:00+00 12:00:00 126631640347 1 \N +712 2025-09-26 18:24:10.138307+00 2025-09-26 18:24:10.138316+00 f t [["2025-09-27", "afternoon"]] Confirmado 8351 9437 1583 \N 1583 2025-09-27 03:00:00+00 14:00:00 127640643062 92 \N +653 2025-09-23 19:53:23.160255+00 2025-09-23 19:53:23.160266+00 f t [["2025-09-26", "morning"], ["2025-09-26", "afternoon"], ["2025-09-26", "evening"]] Confirmado 8098 9071 1208 \N 1208 2025-09-26 03:00:00+00 09:30:00 126722301095 1 \N +648 2025-09-23 16:01:07.062232+00 2025-09-23 16:01:07.062243+00 f t [["2025-09-24", "morning"], ["2025-09-24", "afternoon"], ["2025-09-24", "evening"]] rejected 8081 4384 1208 \N \N 2025-09-24 03:00:00+00 19:00:00 \N 80 \N +642 2025-09-23 10:22:30.253508+00 2025-09-23 10:22:30.253517+00 f t [["2025-10-02", "Tarde"], ["2025-10-02", "Noche"], ["2025-10-03", "Tarde"]] confirmado 8063 9168 \N Vomita seguido, día por medio. Ya le cambié la comida y no se si tiene algún problema gastrointestinal. Come, toma agua y tiene su rutina normal pero no sube de peso nunca. Quisiera saber si está bien así. 1208 2025-09-25 03:00:00+00 19:00:00 127241139910 70 \N +641 2025-09-23 05:50:42.530836+00 2025-09-23 05:50:42.530847+00 f t [["2025-09-24", "Noche"], ["2025-09-25", "Noche"], ["2025-09-26", "Noche"]] rejected 8060 9165 \N Heces muy duras, le cuesta hacer, y tiene tos como para vomitar a diario. Vomita a veces. De ánimo está bien. 1208 \N \N \N \N \N +644 2025-09-23 14:04:18.538558+00 2025-09-23 14:04:18.538567+00 f t [["2025-09-23", "Tarde"], ["2025-09-23", "Mañana"], ["2025-09-23", "Noche"]] rejected 8077 9182 \N Rengueo y dificultades para caminar 1208 \N \N \N \N \N +643 2025-09-23 12:08:26.693774+00 2025-09-23 12:08:26.693786+00 f t [["2025-09-23", "Noche"], ["2025-09-24", "Noche"], ["2025-09-25", "Noche"]] confirmado 8071 9176 1208 Un ojo le supura y se le forma una lagaña larga, líquida y amarilla. 1208 2025-09-23 03:00:00+00 19:30:00 126678700227 70 \N +15 2025-05-13 13:04:16.397415+00 2025-05-13 13:04:16.397424+00 f t [["2025-05-17", "Mañana"], ["2025-05-14", "Noche"], ["2025-05-15", "Noche"]] rejected 203 979 \N Hola, mi perro a desmejorado bastante en las ultimas semanas. No se puede levantar, le cuesta mucho moverse, se lo ve muy desmejorado. \N \N \N \N \N \N +16 2025-05-13 14:16:05.645246+00 2025-05-13 14:16:05.645255+00 f t [["2025-05-14", "Mañana"], ["2025-05-15", "Mañana"], ["2025-05-16", "Mañana"]] rejected 207 983 \N tuvo erlichia, se curo pero no le suben las plaquetas y lo lleve al hematologo y me dipio que le haga electro, ecocardiograma, ecografia abdominal y analisis de orina que no encuentro en el listado. \N 2025-05-15 03:00:00+00 10:00:00 \N 82 \N +651 2025-09-23 16:20:05.602603+00 2025-09-23 16:20:05.602618+00 f t [["2025-09-23", "morning"], ["2025-09-23", "afternoon"], ["2025-09-23", "evening"]] Confirmado 8085 6788 1208 \N 1208 2025-09-23 03:00:00+00 19:30:00 126695096903 92 \N +646 2025-09-23 15:29:55.610911+00 2025-09-23 15:29:55.610919+00 f t [["2025-09-29", "morning"], ["2025-09-29", "afternoon"], ["2025-09-29", "evening"]] rejected 8024 7443 1208 \N \N 2025-09-29 03:00:00+00 17:00:00 46YGOW9M8WR8LVPQ9EXD8J 100 \N +645 2025-09-23 15:26:36.744219+00 2025-09-23 15:26:36.744231+00 f t [["2025-09-29", "morning"], ["2025-09-29", "afternoon"], ["2025-09-29", "evening"]] Confirmado 8024 7443 1208 \N 1208 2025-09-29 03:00:00+00 18:00:00 46YGOW9M8WR8LVPQ9EXD8J 90 \N +654 2025-09-23 19:57:30.942349+00 2025-09-23 19:57:30.942358+00 f t [["2025-09-26", "morning"], ["2025-09-26", "afternoon"], ["2025-09-26", "evening"]] Confirmado 8098 9071 1208 \N 1208 2025-09-26 03:00:00+00 11:00:00 126722301095 100 \N +656 2025-09-23 20:40:40.264562+00 2025-09-23 20:40:40.264572+00 f t [["2025-10-01", "morning"]] Confirmado 8098 9071 1583 \N 1583 2025-10-01 03:00:00+00 10:00:00 127287734174 82 \N +658 2025-09-24 00:12:55.349096+00 2025-09-24 00:12:55.349104+00 f t [["2025-09-26", "afternoon"]] Confirmado 8118 9219 113 \N 113 2025-09-25 03:00:00+00 17:30:00 127313995656 88 \N +647 2025-09-23 15:32:40.376198+00 2025-09-23 15:32:40.376207+00 f t [["2025-09-29", "morning"], ["2025-09-29", "afternoon"], ["2025-09-29", "evening"]] Confirmado 8024 7443 1208 \N 1208 2025-09-29 03:00:00+00 17:00:00 46YGOW9M8WR8LVPQ9EXD8J 100 \N +661 2025-09-24 00:39:55.757011+00 2025-09-24 00:39:55.757022+00 f t [["2025-09-24", "evening"]] Confirmado 8121 9220 113 \N 113 2025-09-23 03:00:00+00 20:30:00 126750966585 92 \N +657 2025-09-23 23:16:47.709936+00 2025-09-23 23:16:47.709945+00 f t [["2025-09-25", "Noche"], ["2025-09-26", "Mañana"], ["2025-09-25", "Tarde"]] Confirmado 8109 9210 113 Desde que es bebé Ramón tiene episodios que parecen de granuloma eosinofilico (los análisis de sangre no reflejan eso) y ahora está con el labio inflamado 113 2025-09-25 03:00:00+00 17:00:00 127319277346 1 \N +659 2025-09-24 00:20:27.797755+00 2025-09-24 00:20:27.797764+00 f t [["2025-10-02", "afternoon"]] Confirmado 8119 6358 113 \N 113 2025-10-01 03:00:00+00 16:30:00 127317242994 75 \N +665 2025-09-24 14:34:26.438368+00 2025-09-24 14:34:26.438377+00 f t [["2025-09-24", "morning"], ["2025-09-24", "afternoon"], ["2025-09-24", "evening"]] Confirmado 8120 9109 1208 \N 1208 2025-09-24 03:00:00+00 13:00:00 127367614300 100 \N +663 2025-09-24 12:06:36.808743+00 2025-09-24 12:06:36.808754+00 f t [["2025-09-24", "Tarde"], ["2025-09-26", "Tarde"], ["2025-09-28", "Tarde"]] rejected 8137 9236 \N Tiene derrea con sangre hace 1 dia 1208 \N \N \N \N \N +666 2025-09-24 14:59:48.116865+00 2025-09-24 14:59:48.116874+00 f t [["2025-09-25", "morning"], ["2025-09-25", "afternoon"], ["2025-09-25", "evening"]] Confirmado 8147 822 1208 \N 1208 2025-09-25 03:00:00+00 16:30:00 126813712633 89 \N +664 2025-09-24 12:40:15.347681+00 2025-09-24 12:40:15.347693+00 f t [["2025-09-27", "Noche"], ["2025-09-26", "Noche"], ["2025-09-27", "Tarde"]] Confirmado 8140 9239 \N Hara una semana y media encontre sangre en el arenero y hoy nuevamente encontre heces con sangre.\nTengo 3 gatas. Sospecho que es la mayor pero realmente no estoy seguro de cual es. Me gustaria analizar las heces para saber de que se trata y como solucionarlo. Gracias 1208 2025-09-24 03:00:00+00 20:00:00 126811528187 92 \N +662 2025-09-24 00:46:42.561725+00 2025-09-24 00:46:42.561732+00 t t [["2025-09-24", "evening"]] vet_asked 8121 9220 113 \N \N 2025-09-23 03:00:00+00 21:30:00 \N 95 \N +669 2025-09-24 17:20:59.788587+00 2025-09-24 17:20:59.788596+00 f t [["2025-09-25", "evening"]] Confirmado 8157 9254 1583 \N 1583 2025-09-24 03:00:00+00 21:30:00 brubank 90 \N +668 2025-09-24 17:18:00.1564+00 2025-09-24 17:18:00.156409+00 f t [["2025-09-23", "morning"], ["2025-09-23", "afternoon"], ["2025-09-23", "evening"]] Confirmado 8121 9220 1208 \N 1208 2025-09-23 03:00:00+00 20:00:00 126797636803 95 \N +667 2025-09-24 16:45:52.527099+00 2025-09-24 16:45:52.527106+00 f t [["2025-09-26", "morning"], ["2025-09-26", "afternoon"], ["2025-09-26", "evening"]] Confirmado 8155 8275 1208 \N 1208 2025-09-26 03:00:00+00 08:30:00 127386713758 85 \N +670 2025-09-24 17:30:17.38264+00 2025-09-24 17:30:17.382648+00 f t [["2025-09-25", "morning"], ["2025-09-25", "afternoon"], ["2025-09-25", "evening"]] Confirmado 8120 9109 1208 \N 1208 2025-09-25 03:00:00+00 08:30:00 127386982984 103 \N +676 2025-09-24 19:31:12.293072+00 2025-09-24 19:31:12.293081+00 f t [["2025-09-24", "evening"]] Confirmado 8180 9276 1583 \N 1583 2025-09-24 03:00:00+00 18:00:00 127401816658 1 \N +1780 2025-11-25 15:55:40.351635+00 2025-11-25 15:55:40.351643+00 f t [["2025-12-05", "morning"], ["2025-12-05", "afternoon"], ["2025-12-05", "evening"]] payed 13551 12857 1208 perfil 7 1208 2025-12-05 03:00:00+00 10:30:00 39803050963 \N \N +671 2025-09-24 17:52:29.626357+00 2025-09-24 17:52:29.626365+00 f t [["2025-09-24", "morning"], ["2025-09-24", "afternoon"], ["2025-09-24", "evening"]] Confirmado 8162 9137 1208 \N 1208 2025-09-24 03:00:00+00 16:00:00 127393664868 100 \N +672 2025-09-24 17:56:19.897504+00 2025-09-24 17:56:19.897516+00 t t [["2025-09-24", "morning"], ["2025-09-24", "afternoon"], ["2025-09-24", "evening"]] vet_asked 8162 9137 1208 \N 1208 2025-09-24 03:00:00+00 16:00:00 127393664868 100 \N +678 2025-09-24 21:15:08.124004+00 2025-09-24 21:15:08.124018+00 f t [["2025-09-24", "Noche"], ["2025-09-24", "Tarde"], ["2025-09-24", "Mañana"]] Confirmado 8194 9290 1583 Esta resfriado hace varios dias, hoy ya no comió, parece q estornudó sangre. Está decaído. 1583 2025-09-24 03:00:00+00 19:30:00 127418612520 70 \N +673 2025-09-24 17:58:19.737791+00 2025-09-24 17:58:19.737798+00 f t [["2025-09-24", "morning"], ["2025-09-24", "afternoon"], ["2025-09-24", "evening"]] payed 8162 9137 1208 \N 1208 2025-09-24 03:00:00+00 16:00:00 127393664868 100 \N +694 2025-09-25 17:31:31.238592+00 2025-09-25 17:31:31.238601+00 f t [["2025-09-29", "morning"], ["2025-09-29", "afternoon"], ["2025-09-29", "evening"]] Confirmado 8253 7187 1208 \N 1208 2025-09-29 03:00:00+00 19:30:00 93027074 92 \N +713 2025-09-26 19:38:19.696949+00 2025-09-26 19:38:19.696958+00 f t [["2025-09-28", "morning"], ["2025-09-28", "afternoon"], ["2025-09-28", "evening"]] Confirmado 8357 9443 1583 \N 1583 2025-09-28 03:00:00+00 11:00:00 D4RO172VE00DMM7VNKJ3QE 82 \N +750 2025-09-30 11:31:50.777485+00 2025-09-30 11:31:50.777496+00 f t [["2025-09-30", "Tarde"], ["2025-09-30", "Noche"], ["2025-10-01", "Mañana"]] Confirmado 8568 873 \N Se doblo la pata delantera izquierda y no puede pisar. Tiene inflamado en la articulación. Es perro macho y la dirección es mexico 4134 depto b caballito 1208 2025-09-30 03:00:00+00 15:00:00 95796943 1 \N +682 2025-09-25 13:35:10.043742+00 2025-09-25 13:35:10.043756+00 f t [["2025-09-25", "morning"], ["2025-09-25", "afternoon"], ["2025-09-25", "evening"]] Confirmado 8120 9109 1208 \N 1208 2025-09-25 03:00:00+00 12:30:00 126924860427 113 \N +716 2025-09-26 22:33:00.272357+00 2025-09-26 22:33:00.272366+00 f t [["2025-09-27", "Mañana"], ["2025-09-27", "Tarde"], ["2025-09-27", "Mañana"]] Confirmado 8365 9451 1208 Tiene una tos rara. Como q quiere vomitar algo pero no . 1208 2025-09-27 03:00:00+00 13:00:00 127681450426 80 \N +685 2025-09-25 14:50:46.19995+00 2025-09-25 14:50:46.199959+00 f t [["2025-09-25", "morning"], ["2025-09-25", "evening"], ["2025-09-25", "afternoon"]] Confirmado 8237 167 1208 \N 1208 2025-09-25 03:00:00+00 13:00:00 Z6OLMDN3XO63JYW69E7RQ5 100 \N +688 2025-09-25 15:53:21.100104+00 2025-09-25 15:53:21.100113+00 f t [["2025-09-27", "morning"], ["2025-09-27", "afternoon"], ["2025-09-27", "evening"]] payed 8174 9270 1208 \N 1208 2025-09-27 03:00:00+00 10:00:00 0V1JXON1DGZL3LDP9Z64EL 112 \N +706 2025-09-26 14:47:33.348479+00 2025-09-26 14:47:33.34849+00 f t [["2025-10-01", "afternoon"]] Confirmado 8328 6905 1583 \N 1583 2025-10-01 03:00:00+00 17:00:00 WY7ZEPN6QE84LR1WNQ0M51 1 \N +719 2025-09-27 12:42:41.943903+00 2025-09-27 12:42:41.943914+00 f t [["2025-09-27", "morning"], ["2025-09-27", "afternoon"], ["2025-09-27", "evening"]] Confirmado 8382 9109 1208 \N 1208 2025-09-27 03:00:00+00 13:00:00 127156424395 113 \N +691 2025-09-25 16:20:50.220633+00 2025-09-25 16:20:50.220641+00 f t [["2025-09-25", "morning"], ["2025-09-25", "afternoon"], ["2025-09-25", "evening"]] Confirmado 8186 9282 1208 \N 1208 2025-09-25 03:00:00+00 21:00:00 30151584010250925 90 \N +753 2025-09-30 15:17:19.415206+00 2025-09-30 15:17:19.415215+00 f t [["2025-10-02", "morning"], ["2025-10-02", "afternoon"], ["2025-10-02", "evening"]] Confirmado 8592 9670 \N \N 1208 2025-10-02 03:00:00+00 08:00:00 128077733444 104 \N +722 2025-09-27 17:01:22.562119+00 2025-09-27 17:01:22.562128+00 f t [["2025-09-29", "morning"], ["2025-09-29", "afternoon"], ["2025-09-29", "evening"]] Confirmado 8407 9491 1208 \N 1208 2025-09-29 03:00:00+00 09:00:00 127179569391 112 \N +761 2025-09-30 17:02:23.586656+00 2025-09-30 17:02:23.586663+00 f t [["2025-10-07", "morning"], ["2025-10-07", "afternoon"], ["2025-10-07", "evening"]] Confirmado 8602 7528 1208 \N 1208 2025-10-07 03:00:00+00 10:00:00 D4RO172VEGPMYMDDNKJ3QE 82 \N +697 2025-09-25 19:40:10.729829+00 2025-09-25 19:40:10.72984+00 f t [["2025-09-26", "afternoon"]] Confirmado 8263 9353 1583 \N 1583 2025-09-26 03:00:00+00 13:00:00 127525289488 1 \N +725 2025-09-27 17:06:53.554937+00 2025-09-27 17:06:53.554945+00 f t [["2025-10-02", "morning"], ["2025-10-02", "afternoon"], ["2025-10-02", "evening"]] payed 8407 9491 1208 \N 1208 2025-10-02 03:00:00+00 08:00:00 127179569391 112 \N +747 2025-09-30 00:07:59.002851+00 2025-09-30 00:07:59.00286+00 f t [["2025-10-02", "afternoon"]] vet_accepted 8564 9644 114 \N 114 2025-10-01 03:00:00+00 16:00:00 127437183029 88 \N +728 2025-09-27 19:58:07.159069+00 2025-09-27 19:58:07.159078+00 f t [["2025-09-27", "Noche"], ["2025-09-27", "Tarde"], ["2025-09-27", "Mañana"]] rejected 8412 9496 \N Falta de apetito, decaimiento. Orina normal, casi no defeca. Comió hoy a la mañana después de un día sin comer. 114 \N \N \N \N \N +700 2025-09-25 23:47:02.936398+00 2025-09-25 23:47:02.936411+00 f t [["2025-09-26", "evening"]] Confirmado 8283 3553 113 \N 113 2025-09-26 03:00:00+00 19:30:00 126994269255 68 \N +764 2025-09-30 19:48:35.232477+00 2025-09-30 19:48:35.232487+00 f t [["2025-10-01", "afternoon"]] Confirmado 8612 9687 1583 \N 1583 2025-10-01 03:00:00+00 14:00:00 39031674090 91 \N +703 2025-09-26 13:26:02.159696+00 2025-09-26 13:26:02.15971+00 f t [["2025-09-29", "Mañana"], ["2025-09-29", "Tarde"], ["2025-09-29", "Noche"]] Confirmado 8318 9407 1583 Se genero heridas y como le pican se rasca y empeora 1583 2025-09-27 03:00:00+00 13:00:00 127615511112 113 \N +731 2025-09-28 15:31:48.742367+00 2025-09-28 15:31:48.742378+00 f t [["2025-09-28", "Noche"], ["2025-09-29", "Noche"], ["2025-09-28", "Tarde"]] Confirmado 8442 9526 114 Parece tener una infección en el oído.Se rasca,tiene la oreja roja y se la lleva para atrás. 114 2025-09-28 03:00:00+00 20:00:00 127844350960 70 \N +734 2025-09-28 19:16:20.476577+00 2025-09-28 19:16:20.476586+00 f t [["2025-09-28", "morning"]] Confirmado 8467 9551 114 \N 114 2025-09-28 03:00:00+00 11:30:00 127263015405 80 \N +740 2025-09-29 13:23:36.782573+00 2025-09-29 13:23:36.782582+00 t t [["2025-09-29", "Mañana"], ["2025-09-29", "Tarde"], ["2025-09-29", "Noche"]] pending 8512 9593 \N No puede pisar, tiene la pata dada vuelta \N \N \N \N \N \N +737 2025-09-29 00:36:22.913234+00 2025-09-29 00:36:22.913242+00 t t [["2025-09-29", "Mañana"], ["2025-09-29", "Tarde"], ["2025-09-29", "Noche"]] in_progress_vet 8486 9570 \N Labrador de 16 años. Ya no se levanta por sus propios medios, estuvo con vómitos y diarrea desde ayer, lo veo mal. Ya no es vida para el animal, no me interesa que viva un tiempo más si va a estar sufriendo. 1583 \N \N \N \N \N +709 2025-09-26 16:40:59.794767+00 2025-09-26 16:40:59.794777+00 f t [["2025-09-26", "afternoon"]] Confirmado 8340 7201 1583 \N 1583 2025-09-26 03:00:00+00 17:00:00 L18MKX9R7443KJ8V9O6WYV 70 \N +743 2025-09-29 23:18:48.237705+00 2025-09-29 23:18:48.237716+00 f t [["2025-09-30", "afternoon"]] coordinated 8557 9638 114 \N 114 2025-09-30 03:00:00+00 15:00:00 127983233476 90 \N +701 2025-09-26 01:04:57.297823+00 2025-09-26 01:04:57.297837+00 f t [["2025-09-26", "Mañana"], ["2025-09-26", "Mañana"], ["2025-09-27", "Mañana"]] rejected 8287 9376 1583 NO VE 1583 \N \N \N \N \N +710 2025-09-26 17:14:38.860456+00 2025-09-26 17:14:38.860465+00 f t [["2025-09-27", "afternoon"]] Confirmado 8344 9430 1583 \N 1583 2025-09-27 03:00:00+00 13:00:00 naranjaX 1 \N +674 2025-09-24 18:25:28.219051+00 2025-09-24 18:25:28.219061+00 f t [["2025-09-25", "morning"]] Confirmado 8174 9270 1583 \N 1583 2025-09-25 03:00:00+00 08:30:00 R7ZG0QNDJDEYED5GNEXYPO 80 \N +675 2025-09-24 19:26:59.157611+00 2025-09-24 19:26:59.157619+00 t t [["2025-09-24", "evening"]] in_progress_vet 8180 9276 \N \N 1583 \N \N \N \N \N +748 2025-09-30 00:35:45.784536+00 2025-09-30 00:35:45.784545+00 f t [["2025-09-30", "Mañana"], ["2025-09-30", "Tarde"], ["2025-09-30", "Noche"]] Confirmado 8567 9647 1208 Acumula liquido pleural, le hicieron 2 punciones ya (ayer y hoy) 1208 2025-09-30 03:00:00+00 14:00:00 128048755994 82 \N +683 2025-09-25 13:40:28.228724+00 2025-09-25 13:40:28.228733+00 f t [["2025-09-25", "morning"], ["2025-09-25", "afternoon"], ["2025-09-25", "evening"]] Confirmado 8230 3656 1208 \N 1208 2025-09-25 03:00:00+00 16:00:00 127490199516 88 \N +692 2025-09-25 16:26:52.578139+00 2025-09-25 16:26:52.578147+00 f t [["2025-09-29", "morning"], ["2025-09-29", "afternoon"], ["2025-09-29", "evening"]] Confirmado 8248 2732 1208 \N 1208 2025-09-29 03:00:00+00 17:30:00 92961849 98 \N +686 2025-09-25 15:14:58.466718+00 2025-09-25 15:14:58.466728+00 t t [["2025-09-25", "morning"], ["2025-09-25", "afternoon"], ["2025-09-25", "evening"]] pending 8238 9331 \N \N \N \N \N \N \N \N +1169 2025-10-23 14:28:24.045405+00 2025-10-23 14:28:24.045413+00 f t [["2025-10-23", "morning"]] Confirmado 10351 10764 1583 Consulta post estudios 1583 2025-10-23 03:00:00+00 11:30:00 39350192304 80 \N +717 2025-09-26 23:50:25.771275+00 2025-09-26 23:50:25.771284+00 f t [["2025-09-26", "morning"], ["2025-09-26", "afternoon"], ["2025-09-26", "evening"]] Confirmado 8374 9459 1208 \N 1208 2025-09-27 03:00:00+00 14:00:00 38994990387 68 \N +714 2025-09-26 22:30:42.272229+00 2025-09-26 22:30:42.27224+00 f t [["2025-09-26", "Noche"], ["2025-09-27", "Mañana"], ["2025-09-28", "Tarde"]] rejected 8363 9449 \N Aparición extraña de un globo blanquecino adentro del ojo 1208 \N \N \N \N \N +689 2025-09-25 16:00:07.080587+00 2025-09-25 16:00:07.0806+00 f t [["2025-09-27", "morning"], ["2025-09-27", "afternoon"], ["2025-09-27", "evening"]] Confirmado 8174 9270 1208 \N 1208 2025-09-27 03:00:00+00 11:30:00 0V1JXON1DGZL3LDP9Z64EL 100 \N +751 2025-09-30 13:25:41.68495+00 2025-09-30 13:25:41.684959+00 f t [["2025-09-30", "morning"], ["2025-09-30", "afternoon"], ["2025-09-30", "evening"]] payed 8589 264 \N \N 1208 2025-09-30 03:00:00+00 14:30:00 127488396771 68 \N +744 2025-09-29 23:24:39.860195+00 2025-09-29 23:24:39.860208+00 f t [["2025-10-04", "afternoon"]] Confirmado 8559 9640 114 \N 114 2025-10-04 03:00:00+00 14:00:00 39020086904 70 \N +698 2025-09-25 21:51:53.71665+00 2025-09-25 21:51:53.716662+00 f t [["2025-09-30", "afternoon"]] Confirmado 8272 9362 1583 \N 1583 2025-09-30 03:00:00+00 14:00:00 126979720877 84 \N +679 2025-09-25 02:30:42.032663+00 2025-09-25 02:30:42.032672+00 f t [["2025-09-25", "Noche"], ["2025-09-25", "Noche"], ["2025-09-25", "Noche"]] Confirmado 8212 9307 1208 Vomita las croquetas 1208 2025-09-25 03:00:00+00 20:30:00 126952135961 92 \N +1172 2025-10-23 15:05:23.454778+00 2025-10-23 15:05:23.454786+00 f t [["2025-10-28", "morning"]] Confirmado 10354 10716 1583 Ecocardiograma 1583 2025-10-28 03:00:00+00 12:00:00 69316650 82 \N +723 2025-09-27 17:03:38.066232+00 2025-09-27 17:03:38.06624+00 f t [["2025-09-30", "morning"], ["2025-09-30", "afternoon"], ["2025-09-30", "evening"]] Confirmado 8407 9491 1208 \N 1208 2025-09-30 03:00:00+00 09:00:00 127179569391 112 \N +695 2025-09-25 17:43:06.392239+00 2025-09-25 17:43:06.392251+00 f t [["2025-09-25", "evening"]] Confirmado 8256 9345 1583 \N 1583 2025-09-25 03:00:00+00 21:00:00 santander s/c 92 \N +726 2025-09-27 17:07:49.973548+00 2025-09-27 17:07:49.973559+00 f t [["2025-10-03", "morning"], ["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] Confirmado 8407 9491 1208 \N 1208 2025-10-03 03:00:00+00 09:00:00 127179569391 112 \N +720 2025-09-27 15:43:42.606663+00 2025-09-27 15:43:42.606674+00 f t [["2025-09-27", "Tarde"], ["2025-09-27", "Tarde"], ["2025-09-27", "Tarde"]] Confirmado 8402 9486 1208 está con molestias. Desde anoche se muestra muy inquieto, se mueve de un lado a otro, busca esconderse debajo de los muebles y le cuesta encontrar una posición para descansar. Hoy después de comer también siguió igual, 1208 2025-09-27 03:00:00+00 16:00:00 RD06ZO9W1JRP7E3725GP7X 114 \N +754 2025-09-30 15:23:36.571456+00 2025-09-30 15:23:36.571464+00 f t [["2025-09-30", "morning"], ["2025-09-30", "afternoon"], ["2025-09-30", "evening"]] Confirmado 8593 9671 1208 \N 1208 2025-09-30 03:00:00+00 19:00:00 128063332902 85 \N +756 2025-09-30 16:00:44.011851+00 2025-09-30 16:00:44.011864+00 f t [["2025-09-30", "Mañana"], ["2025-09-30", "Tarde"], ["2025-09-30", "Noche"]] Confirmado 8596 9674 \N Despues de un estiramiento de columna hacia atras, jugando con la pelota en el parque, dejo de jugar al momento, desde ahi no camino normal, le cuesta y ya no corre 1583 2025-09-30 03:00:00+00 18:00:00 128074598596 1 \N +707 2025-09-26 15:17:57.893593+00 2025-09-26 15:17:57.893602+00 f t [["2025-09-26", "afternoon"]] Confirmado 8330 822 1583 \N 1583 2025-09-26 03:00:00+00 16:30:00 127060277679 84 \N +732 2025-09-28 17:00:43.250103+00 2025-09-28 17:00:43.250117+00 f t [["2025-09-28", "Noche"], ["2025-12-30", "Noche"], ["2025-12-30", "Tarde"]] Confirmado 8454 9538 114 Llora mucho. Creemos que le duele la panza, la columna o los dientes... 114 2025-09-28 03:00:00+00 19:00:00 30022661012250928 114 \N +729 2025-09-28 03:26:31.353216+00 2025-09-28 03:26:31.353225+00 f t [["2025-09-28", "Tarde"], ["2025-09-28", "Noche"], ["2025-09-28", "Mañana"]] Confirmado 8425 9509 114 Empezó en el día de ayer a estar decaida, dejó de comer, solo toma agua, hoy sigue igual, vomito 2 veces como flema amarilla. Si la sacamos a pasear vuelve a estar con la energía de siempre. Hace 1 semana se murió una cachorrita que teníamos hace 3 meses con la cual jugaba mucho, nunca nos dijeron en el hospital el motivo exacto solo que era algo viral. Nose si puede estar triste por la ausencia de la misma o también tenga algo que se pueda haber contagiado. 114 2025-09-28 03:00:00+00 14:30:00 76V4MR2ZPQL4RG709DEZOL 94 \N +735 2025-09-28 21:48:42.658293+00 2025-09-28 21:48:42.658302+00 t t [["2025-09-28", "Noche"], ["2025-09-29", "Mañana"], ["2025-09-29", "Tarde"]] pending 8477 9561 \N Panza inflamada \N \N \N \N \N \N +759 2025-09-30 16:35:12.225324+00 2025-09-30 16:35:12.225337+00 f t [["2025-09-30", "afternoon"]] Confirmado 8600 9678 1583 \N 1583 2025-09-30 03:00:00+00 17:00:00 127513710773 90 \N +738 2025-09-29 12:50:55.501585+00 2025-09-29 12:50:55.501593+00 f t [["2025-10-01", "morning"]] Confirmado 8506 822 1583 \N 1583 2025-10-01 03:00:00+00 09:30:00 127925529536 115 \N +741 2025-09-29 14:25:00.469412+00 2025-09-29 14:25:00.469425+00 t t [["2025-09-29", "afternoon"]] pending 8520 9601 \N \N \N \N \N \N \N \N +762 2025-09-30 17:52:52.322188+00 2025-09-30 17:52:52.322197+00 t t [["2025-10-01", "morning"], ["2025-10-01", "afternoon"], ["2025-10-01", "evening"]] coordinated 8605 9682 \N \N \N 2025-10-01 03:00:00+00 15:00:00 \N \N \N +1119 2025-10-20 18:01:37.158664+00 2025-10-20 18:01:37.158676+00 t t [["2025-10-21", "morning"]] coordinated 10124 11168 1583 Vacunacion anual, arisco 1583 2025-10-21 03:00:00+00 11:00:00 \N \N \N +693 2025-09-25 16:35:13.576155+00 2025-09-25 16:35:13.576165+00 f t [["2025-09-27", "morning"], ["2025-09-27", "afternoon"], ["2025-09-27", "evening"]] Confirmado 8249 6788 1208 \N 1208 2025-09-27 03:00:00+00 15:00:00 127503234818 92 \N +677 2025-09-24 19:51:32.303261+00 2025-09-24 19:51:32.30327+00 f t [["2025-09-24", "evening"]] Confirmado 8186 9282 1583 \N 1583 2025-09-24 03:00:00+00 21:00:00 10234933010250924 80 \N +680 2025-09-25 04:49:33.610176+00 2025-09-25 04:49:33.610187+00 f t [["2025-09-25", "Noche"], ["2025-09-25", "Noche"], ["2025-09-25", "Noche"]] payed 8215 9310 1208 Diarrea tuvo los días viernes por la noche y sábado. Vómito solo el viernes.\nLunes empezó a comer pollo hervido. Miércoles tuvo diarrea nuevamente. \nEstá muy débil la perra, sumada a su edad y a su tutor que tiene colocado en una de sus patas traseras. 1208 2025-09-25 03:00:00+00 20:00:00 127482584376 92 \N +684 2025-09-25 14:17:01.943969+00 2025-09-25 14:17:01.943983+00 f t [["2025-10-02", "morning"], ["2025-10-02", "afternoon"], ["2025-10-02", "evening"]] payed 8232 9326 1208 \N 1208 2025-10-02 03:00:00+00 12:00:00 126929317161 75 \N +715 2025-09-26 22:32:00.205458+00 2025-09-26 22:32:00.20547+00 f t [["2025-09-26", "morning"], ["2025-09-26", "afternoon"], ["2025-09-26", "evening"]] Confirmado 8366 9071 1208 \N 1208 2025-09-26 03:00:00+00 21:00:00 127673414328 92 \N +724 2025-09-27 17:04:40.833252+00 2025-09-27 17:04:40.833261+00 f t [["2025-10-01", "morning"], ["2025-10-01", "afternoon"], ["2025-10-01", "evening"]] Confirmado 8407 9491 1208 \N 1208 2025-10-01 03:00:00+00 09:00:00 127179569391 112 \N +718 2025-09-26 23:51:50.060704+00 2025-09-26 23:51:50.060713+00 f t [["2025-10-07", "Mañana"], ["2025-10-07", "Noche"], ["2025-10-07", "Mañana"]] vet_asked 8373 9458 1208 Come bien, toma agua, hace caca bien pero adelgazo mucho\nEs alérgico a las pulgas y estuvo con pulgas. 1208 2025-10-07 03:00:00+00 10:00:00 127681450426 14 \N +752 2025-09-30 13:56:32.52291+00 2025-09-30 13:56:32.522918+00 f t [["2025-09-30", "Tarde"], ["2025-10-01", "Noche"], ["2025-10-02", "Noche"]] Confirmado 8590 9668 \N no come 1583 2025-09-30 03:00:00+00 17:00:00 30717420698 113 \N +687 2025-09-25 15:14:58.664756+00 2025-09-25 15:14:58.664765+00 f t [["2025-09-25", "morning"], ["2025-09-25", "afternoon"], ["2025-09-25", "evening"]] Confirmado 8238 9331 1208 \N 1208 2025-09-25 03:00:00+00 18:30:00 126936046075 88 \N +721 2025-09-27 16:56:30.467188+00 2025-09-27 16:56:30.467202+00 f t [["2025-09-28", "morning"], ["2025-09-28", "afternoon"], ["2025-09-28", "evening"]] Confirmado 8407 9491 1208 \N 1208 2025-09-28 03:00:00+00 12:00:00 127179569391 112 \N +755 2025-09-30 15:25:05.329713+00 2025-09-30 15:25:05.329729+00 f t [["2025-09-30", "morning"], ["2025-09-30", "afternoon"], ["2025-09-30", "evening"]] Confirmado 8593 9671 1208 \N 1208 2025-10-01 03:00:00+00 09:00:00 128063332902 100 \N +690 2025-09-25 16:17:25.477629+00 2025-09-25 16:17:25.477638+00 f t [["2025-09-27", "Mañana"], ["2025-09-27", "Tarde"], ["2025-09-27", "Noche"]] Confirmado 8247 9340 1583 Vino una veterinaria a domicilio y nos dijo que estaba débil, quizas anímico y por la edad (16) puede que tenga algún problema en riñones o algo. No comió por un día pero ahora si de a poco, también le dio suero. Queremos descartar/detectar cualquier posibile problema 1583 2025-09-27 03:00:00+00 09:00:00 127521209104 85 \N +727 2025-09-27 17:21:06.992323+00 2025-09-27 17:21:06.992334+00 f t [["2025-10-04", "Tarde"], ["2025-10-05", "Tarde"], ["2025-09-28", "Noche"]] rejected 8409 9493 \N Vacunacion antirrabica y triple felina 1208 \N \N \N \N \N +749 2025-09-30 08:33:39.369881+00 2025-09-30 08:33:39.369894+00 f t [["2025-10-02", "Mañana"], ["2025-10-03", "Mañana"], ["2025-10-04", "Tarde"]] Confirmado 8581 9660 \N Vomitos de bilis más o menos frecuentes 1208 2025-09-30 03:00:00+00 19:30:00 127500605255 92 \N +696 2025-09-25 17:52:12.524575+00 2025-09-25 17:52:12.524588+00 f t [["2025-09-25", "Tarde"], ["2025-09-26", "Tarde"], ["2025-09-25", "Noche"]] Confirmado 8254 9344 1583 Tiene la nariz muy tapada y está respirando muy mal! También le tenemos que dar otra vacuna 1583 2025-09-25 03:00:00+00 19:30:00 127525289488 2 \N +757 2025-09-30 16:23:04.067669+00 2025-09-30 16:23:04.067682+00 f t [["2025-10-04", "afternoon"]] Confirmado 8598 9676 1583 \N 1583 2025-10-03 03:00:00+00 15:00:00 128074886246 68 \N +699 2025-09-25 21:55:47.493674+00 2025-09-25 21:55:47.493686+00 t t [["2025-10-01", "afternoon"]] in_progress_pay 8272 9362 1583 \N 1583 2025-09-30 03:00:00+00 15:00:00 \N 84 \N +702 2025-09-26 02:13:23.994487+00 2025-09-26 02:13:23.994496+00 f t [["2025-09-26", "Mañana"], ["2025-09-26", "Tarde"], ["2025-09-26", "Noche"]] in_progress_vet 8291 9380 \N Control clínico. 1583 \N \N \N \N \N +733 2025-09-28 17:59:07.834153+00 2025-09-28 17:59:07.834166+00 f t [["2025-09-28", "Tarde"], ["2025-09-28", "Mañana"], ["2025-09-28", "Noche"]] Confirmado 8458 9542 114 Amaneció con problemas para caminar 114 2024-09-28 03:00:00+00 17:00:00 30022661012250928 21 \N +760 2025-09-30 16:40:41.679285+00 2025-09-30 16:40:41.679297+00 f t [["2025-10-02", "morning"], ["2025-10-02", "afternoon"], ["2025-10-02", "evening"]] Confirmado 8592 9670 1208 \N 1208 2025-10-02 03:00:00+00 09:30:00 128077733444 100 \N +730 2025-09-28 10:01:06.464513+00 2025-09-28 10:01:06.464522+00 f t [["2025-10-01", "Noche"], ["2025-10-02", "Noche"], ["2025-10-03", "Noche"]] Confirmado 8430 9514 114 mi gatito toby de 3 años presenta arcadas, vomita saliva, ayer vomitó un poquito de saliva con sangre. Tambien noto que le cuesta comer, al masticar se le escucha raro y come poquito cuando antes era de buen comer y con los dientes rompia normalmente el alimento balanceado. es un gatito que lamentablemente no se deja tocar por extraños por lo cual le podria mandar videos si me lo indica. \N 2025-09-28 03:00:00+00 19:30:00 127823762086 68 \N +708 2025-09-26 15:45:00.933965+00 2025-09-26 15:45:00.933975+00 f t [["2025-09-26", "afternoon"]] Confirmado 8332 9419 1583 \N 1583 2025-09-26 03:00:00+00 14:00:00 38987929905 113 \N +705 2025-09-26 14:35:13.869856+00 2025-09-26 14:35:13.869865+00 f t [["2025-09-29", "Tarde"], ["2025-09-29", "Noche"], ["2025-09-30", "Tarde"]] Confirmado 8323 9412 1583 Hace 2 años que no lo pude llevar a ningún veterinario, preciso hacerle todos los chequeos y vacunación correspondiente, tengo su libretita de la última vez que lo lleve y las vacunas que le dieron 1583 2025-09-27 03:00:00+00 11:00:00 0V1JXON1DGGE036V9Z64EL 80 \N +739 2025-09-29 13:02:10.995562+00 2025-09-29 13:02:10.995574+00 f t [["2025-09-29", "afternoon"]] Confirmado 8510 5342 1583 \N 1583 2025-09-29 03:00:00+00 15:00:00 127363186453 68 \N +742 2025-09-29 14:25:04.954171+00 2025-09-29 14:25:04.954186+00 f t [["2025-09-29", "afternoon"]] Confirmado 8520 9601 1583 \N 1583 2025-09-29 03:00:00+00 16:00:00 127935012100 89 \N +736 2025-09-28 22:44:12.424927+00 2025-09-28 22:44:12.424935+00 f t [["2025-09-29", "Tarde"], ["2025-09-29", "Noche"], ["2025-09-30", "Mañana"]] Confirmado 8484 9568 1583 Vomitos 1583 2025-09-29 03:00:00+00 12:30:00 127374673729 113 \N +745 2025-09-29 23:35:36.335438+00 2025-09-29 23:35:36.335446+00 f t [["2025-10-01", "afternoon"]] coordinated 8560 9641 114 \N \N 2025-10-01 03:00:00+00 15:30:00 127424725533 82 \N +758 2025-09-30 16:31:52.906646+00 2025-09-30 16:31:52.906657+00 f t [["2025-10-01", "Noche"], ["2025-10-02", "Tarde"], ["2025-10-01", "Noche"]] Confirmado 8599 9677 1583 Soplo,tos 1583 2025-10-03 03:00:00+00 16:00:00 128083857380 82 \N +779 2025-10-01 16:09:16.713492+00 2025-10-01 16:09:16.713501+00 f t [["2025-10-03", "morning"], ["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] Confirmado 8687 8676 1208 \N 1208 2025-10-03 03:00:00+00 14:00:00 128210747134 84 \N +809 2025-10-02 21:04:52.806786+00 2025-10-02 21:04:52.806794+00 f t [["2025-10-07", "afternoon"]] Confirmado 8745 9126 1583 \N 1583 2025-10-07 03:00:00+00 15:00:00 128381493826 82 \N +955 2025-10-10 16:52:45.916453+00 2025-10-10 16:52:45.91646+00 f t [["2025-10-10", "afternoon"], ["2025-10-10", "evening"]] coordinated 9333 10436 1583 Ecografia abdominal 1583 2025-10-10 03:00:00+00 17:00:00 \N \N \N +819 2025-10-03 13:51:33.2993+00 2025-10-03 13:51:33.299313+00 f t [["2025-10-04", "afternoon"]] Confirmado 8797 4255 1583 \N 1583 2025-10-04 03:00:00+00 15:30:00 L18MKX9R78OXQ84O9O6WYV 88 \N +782 2025-10-01 18:09:02.038082+00 2025-10-01 18:09:02.038097+00 f t [["2025-10-07", "morning"], ["2025-10-07", "afternoon"], ["2025-10-07", "evening"]] Confirmado 8693 9772 \N \N 1208 2025-10-07 03:00:00+00 20:30:00 127656010185 92 \N +763 2025-09-30 17:58:42.47285+00 2025-09-30 17:58:42.472858+00 f t [["2025-10-01", "morning"], ["2025-10-01", "afternoon"], ["2025-10-01", "evening"]] Confirmado 8605 9682 1208 \N 1208 2025-10-01 03:00:00+00 15:00:00 128094519670 88 \N +765 2025-09-30 20:03:01.288153+00 2025-09-30 20:03:01.288167+00 f t [["2025-10-01", "morning"], ["2025-10-01", "afternoon"], ["2025-10-01", "evening"]] rejected 8617 9693 \N \N 1208 \N \N \N \N \N +860 2025-10-05 19:16:21.282056+00 2025-10-05 19:16:21.282065+00 f t [["2025-10-05", "afternoon"]] vet_accepted 8926 1381 114 Evacuar dudas de la ecografía 114 2025-10-05 03:00:00+00 17:30:00 128165244275 1 \N +861 2025-10-05 19:39:28.839645+00 2025-10-05 19:39:28.839653+00 f t [["2025-10-06", "afternoon"]] vet_accepted 8929 10054 114 Extracción de Sangre \N 2025-10-06 03:00:00+00 14:00:00 000 79 \N +785 2025-10-01 21:49:15.981148+00 2025-10-01 21:49:15.981158+00 f t [["2025-10-01", "evening"]] Confirmado 8699 9668 1583 \N 1583 2025-10-01 03:00:00+00 19:00:00 30717420698 100 \N +800 2025-10-02 18:41:17.745829+00 2025-10-02 18:41:17.745838+00 f t [["2025-10-04", "Mañana"], ["2025-10-06", "Mañana"], ["2025-10-08", "Mañana"]] Confirmado 8732 9882 1583 Tiene un tumor en el labio inferior, que le van a extraer. 1583 2025-10-04 03:00:00+00 09:00:00 98493852 100 \N +791 2025-10-02 13:59:29.130749+00 2025-10-02 13:59:29.130758+00 f t [["2025-10-02", "morning"], ["2025-10-02", "afternoon"], ["2025-10-02", "evening"]] Confirmado 8707 9727 1208 \N 1208 2025-10-02 03:00:00+00 17:00:00 128327343688 100 \N +812 2025-10-02 22:51:40.249109+00 2025-10-02 22:51:40.249118+00 f t [["2025-10-06", "Tarde"], ["2025-10-07", "Tarde"], ["2025-10-09", "Tarde"]] Confirmado 8752 9899 1583 Es más que nada para descartar glucemia alta por un cambio de comportamiento repentino ante mis otros gatos antes de consultar con etología. 113 2025-10-06 03:00:00+00 17:00:00 TID11C83C8586 79 \N +822 2025-10-03 14:32:39.772234+00 2025-10-03 14:32:39.772244+00 f t [["2025-10-09", "morning"]] vet_accepted 8752 9899 1583 \N 1583 2025-10-09 03:00:00+00 10:00:00 0 100 \N +817 2025-10-03 03:44:18.92476+00 2025-10-03 03:44:18.92477+00 t t [["2025-10-03", "Mañana"], ["2025-10-03", "Noche"], ["2025-10-03", "Tarde"]] pending 8772 9919 \N No tiene equilibrio, se cae, tiene protuberâncias en en el abdomen \N \N \N \N \N \N +797 2025-10-02 16:50:06.144369+00 2025-10-02 16:50:06.144383+00 f t [["2025-10-07", "morning"], ["2025-10-07", "afternoon"], ["2025-10-07", "evening"]] Confirmado 8724 7201 \N \N 1208 2025-10-07 03:00:00+00 11:00:00 JMQKYZ9QO0EQJ4V82V50P3 98 \N +794 2025-10-02 15:38:25.298059+00 2025-10-02 15:38:25.298067+00 f t [["2025-10-03", "morning"], ["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] Confirmado 8713 9496 \N \N 1208 2025-10-03 03:00:00+00 18:30:00 127786344467 21 \N +788 2025-10-02 13:21:20.40943+00 2025-10-02 13:21:20.409443+00 f t [["2025-10-03", "morning"], ["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] Confirmado 8702 8455 \N \N 1208 2025-10-10 03:00:00+00 20:00:00 128366746312 79 \N +834 2025-10-03 21:26:59.866778+00 2025-10-03 21:26:59.866789+00 f t [["2025-10-03", "Noche"], ["2025-10-03", "Noche"], ["2025-10-03", "Noche"]] rejected 8829 9972 1208 Está con vomitos 1208 2025-10-03 03:00:00+00 20:30:00 \N 1 \N +862 2025-10-05 20:00:15.59236+00 2025-10-05 20:00:15.592367+00 f t [["2025-10-06", "afternoon"]] Confirmado 8931 10067 114 Consulta cardiologica 114 2025-10-06 03:00:00+00 17:00:00 128748914546 82 \N +803 2025-10-02 19:31:36.329255+00 2025-10-02 19:31:36.329266+00 f t [["2025-10-10", "morning"]] Confirmado 8739 9641 1583 \N 1583 2025-10-10 03:00:00+00 10:30:00 128367891606 67 \N +831 2025-10-03 19:39:26.560585+00 2025-10-03 19:39:26.560593+00 f t [["2025-10-06", "Noche"], ["2025-10-06", "Tarde"], ["2025-10-06", "Mañana"]] Confirmado 8819 9963 1208 Adoptada hace tres semanas. Tiene las vacunas vencidas. 1208 2025-10-06 03:00:00+00 16:00:00 39082292971 113 \N +806 2025-10-02 19:45:35.083907+00 2025-10-02 19:45:35.083919+00 f t [["2025-11-01", "morning"]] Confirmado 8739 9641 1583 \N 1583 2025-11-01 03:00:00+00 10:30:00 128367891606 67 \N +825 2025-10-03 15:56:16.012355+00 2025-10-03 15:56:16.012364+00 f t [["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] rejected 8807 9952 1583 Alergia 1583 2025-10-03 03:00:00+00 18:00:00 \N \N \N +836 2025-10-03 22:28:51.986403+00 2025-10-03 22:28:51.986411+00 f t [["2025-10-03", "morning"], ["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] Confirmado 8768 1381 1208 ecografia abdominal 1208 2025-10-04 03:00:00+00 17:00:00 127966865505 90 \N +814 2025-10-03 01:52:25.962222+00 2025-10-03 01:52:25.962234+00 f t [["2025-10-04", "Noche"], ["2025-10-11", "Mañana"], ["2025-10-14", "Noche"]] rejected 8763 9911 1208 Salvador hace un tiempo no va a veterinarios porque esta bien, pero vi que le salio un huevo como en la columna, de todos modos no se queja y hace vida normal, hace caca, pis todo normal, tampoco le duele cuando se lo tocas. Quisiera tambien que revisen tema vacunas y si necesita algun desparasitante, ya que como es arisco a salir de casa, no lo he podido llevar a ningun lado. 1583 \N \N \N \N \N +828 2025-10-03 17:40:46.496953+00 2025-10-03 17:40:46.496961+00 f t [["2025-10-06", "morning"]] rejected 8810 9955 1583 Vacunacion anual para perro y gato 1583 2025-10-06 03:00:00+00 11:00:00 \N 88 \N +838 2025-10-04 08:49:25.109852+00 2025-10-04 08:49:25.10986+00 f t [["2025-10-04", "Mañana"], ["2025-10-04", "Tarde"], ["2025-10-04", "Noche"]] rejected 8844 9986 1208 vomito y apatía 1208 2025-10-04 03:00:00+00 13:00:00 \N \N \N +840 2025-10-04 14:50:29.003325+00 2025-10-04 14:50:29.003334+00 f t [["2025-10-04", "Tarde"], ["2025-10-05", "Mañana"], ["2025-10-06", "Mañana"]] Confirmado 8849 9991 1208 Estuvo con vómitos, para mí desde que compré su nueva bolsa de alimentos, vomita una vez por semana. Y no es que vomita pelo sino el balanceado. Es pro plan purina adulto, el que comió siempre. 1208 2025-10-04 03:00:00+00 14:30:00 128041411487 88 \N +844 2025-10-04 15:58:29.731238+00 2025-10-04 15:58:29.731246+00 f t [["2025-10-06", "morning"], ["2025-10-06", "afternoon"], ["2025-10-06", "evening"]] vet_accepted 8857 9759 1208 vacunacion anual a los dos 1208 2025-10-06 03:00:00+00 10:00:00 128044741601 80 \N +818 2025-10-03 12:34:09.629633+00 2025-10-03 12:34:09.629642+00 f t [["2025-10-03", "Mañana"], ["2025-10-03", "Tarde"], ["2025-10-03", "Noche"]] Confirmado 8785 9932 1583 Cookie cayó de la escalera por la madrugada y no está firmando la pata en el piso..está salteando 1583 2025-10-03 03:00:00+00 14:00:00 98570177 114 \N +766 2025-09-30 20:54:58.362489+00 2025-09-30 20:54:58.362502+00 f t [["2025-10-01", "morning"]] Confirmado 8624 9700 1583 \N 1583 2025-10-01 03:00:00+00 11:00:00 128104169470 1 \N +780 2025-10-01 17:22:44.847042+00 2025-10-01 17:22:44.847054+00 t t [["2025-10-06", "afternoon"], ["2025-10-06", "morning"], ["2025-10-06", "evening"]] payed 8689 9769 \N \N 1208 2025-10-06 03:00:00+00 16:00:00 PDX4OGNY1385JLRY20L6EY \N \N +767 2025-09-30 22:54:41.86232+00 2025-09-30 22:54:41.862329+00 f t [["2025-10-02", "Mañana"], ["2025-09-30", "Noche"], ["2025-10-01", "Tarde"]] vet_accepted 8632 9710 113 Mi gata tiene alergia ambiental y ya empezo a tener nuevamente por la estacion lastimaduras y tiene la boca hinchada en este momento 113 2025-10-01 03:00:00+00 18:30:00 128129163912 97 \N +841 2025-10-04 15:36:25.492076+00 2025-10-04 15:36:25.492084+00 f t [["2025-10-07", "morning"], ["2025-10-07", "afternoon"], ["2025-10-07", "evening"]] vet_accepted 8854 9861 1208 extraccion de sangre perfil geronte felino 1208 2025-10-07 03:00:00+00 16:00:00 1885810915 113 \N +850 2025-10-04 20:14:26.519668+00 2025-10-04 20:14:26.519676+00 f t [["2025-10-07", "morning"], ["2025-10-07", "afternoon"], ["2025-10-07", "evening"]] Confirmado 8878 9991 1208 estudios de laboratorio 1208 2025-10-07 03:00:00+00 14:00:00 128077548603 100 \N +1723 2025-11-21 17:42:32.423997+00 2025-11-21 17:42:32.424008+00 f t [["2025-12-03", "afternoon"]] rejected 13134 14068 1583 Vacunacion anual 1583 2025-12-03 03:00:00+00 16:00:00 \N 96 \N +792 2025-10-02 14:04:58.954083+00 2025-10-02 14:04:58.954092+00 t t [["2025-10-02", "morning"], ["2025-10-02", "afternoon"], ["2025-10-02", "evening"]] coordinated 8708 8854 \N \N \N 2025-10-02 03:00:00+00 16:00:00 \N \N \N +746 2025-09-29 23:53:42.002851+00 2025-09-29 23:53:42.002859+00 f t [["2025-10-01", "afternoon"]] in_progress_vet 8563 1555 114 \N 114 2025-10-01 03:00:00+00 16:00:00 0000 \N \N +789 2025-10-02 13:36:23.996698+00 2025-10-02 13:36:23.99671+00 f t [["2025-10-03", "morning"], ["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] Confirmado 8705 9861 \N \N 1208 2025-10-03 03:00:00+00 17:00:00 127772732857 113 \N +820 2025-10-03 14:07:28.298815+00 2025-10-03 14:07:28.298823+00 f t [["2025-10-04", "morning"]] Confirmado 8745 9126 1583 \N 1583 2025-10-04 03:00:00+00 09:30:00 127898794273 84 \N +826 2025-10-03 16:07:10.477248+00 2025-10-03 16:07:10.477258+00 f t [["2025-10-15", "afternoon"]] Confirmado 8808 9953 1583 Ecografia abdominal 1583 2025-10-15 03:00:00+00 15:30:00 Z4K6DVN0DZ34R87M95J8LQ 117 \N +798 2025-10-02 17:26:27.577086+00 2025-10-02 17:26:27.577096+00 f t [["2025-10-03", "morning"], ["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] Confirmado 8727 8958 \N \N 1208 2025-10-03 03:00:00+00 19:00:00 128362602732 70 \N +786 2025-10-01 23:07:09.19388+00 2025-10-01 23:07:09.193897+00 f t [["2025-10-02", "afternoon"]] vet_accepted 8700 9514 113 \N 113 2025-10-02 03:00:00+00 20:00:00 127700996579 68 \N +783 2025-10-01 19:10:56.608976+00 2025-10-01 19:10:56.608988+00 f t [["2025-10-01", "afternoon"], ["2025-10-01", "evening"]] in_progress_vet 8698 9779 1583 \N 1583 2025-10-01 03:00:00+00 20:00:00 \N \N \N +804 2025-10-02 19:42:12.958032+00 2025-10-02 19:42:12.958041+00 f t [["2025-10-18", "morning"]] Confirmado 8739 9641 1583 \N 1583 2025-10-18 03:00:00+00 10:30:00 128367891606 67 \N +815 2025-10-03 01:53:51.319963+00 2025-10-03 01:53:51.319972+00 f t [["2025-10-03", "Noche"], ["2025-10-03", "Mañana"], ["2025-10-03", "Tarde"]] Confirmado 8768 1381 1583 Tita está constipada no va al baño hace tres días 1583 2025-10-03 03:00:00+00 17:00:00 128474519378 1 \N +795 2025-10-02 16:06:06.566707+00 2025-10-02 16:06:06.566719+00 f t [["2025-10-02", "afternoon"]] vet_accepted 8718 9644 1583 \N 1583 2025-10-02 03:00:00+00 16:30:00 39059103184 100 \N +823 2025-10-03 15:32:41.61139+00 2025-10-03 15:32:41.611399+00 f t [["2025-10-04", "morning"]] Confirmado 8805 8854 1583 Extraccion para analisis 1583 2025-10-06 03:00:00+00 10:00:00 127934892683 112 \N +829 2025-10-03 18:58:01.112839+00 2025-10-03 18:58:01.112847+00 f t [["2025-10-03", "morning"], ["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] Confirmado 8818 8583 1208 \N 1208 2025-10-03 03:00:00+00 18:00:00 12636639991 82 \N +832 2025-10-03 20:12:42.649456+00 2025-10-03 20:12:42.649464+00 f t [["2025-10-06", "morning"], ["2025-10-06", "afternoon"], ["2025-10-06", "evening"]] Confirmado 8821 9668 1208 eco abdominal derivacion de vete clinica 1208 2025-10-07 03:00:00+00 14:30:00 30093229009251004 103 \N +807 2025-10-02 20:10:11.865212+00 2025-10-02 20:10:11.865225+00 f t [["2025-10-03", "morning"]] Confirmado 8740 9889 1583 \N 1583 2025-10-03 03:00:00+00 11:00:00 128376147230 1 \N +801 2025-10-02 18:46:05.567398+00 2025-10-02 18:46:05.567407+00 t t [["2025-10-03", "Mañana"], ["2025-10-03", "Noche"], ["2025-10-06", "Mañana"]] in_progress_pay 8733 9883 \N Una pequeña erupción arriba del ojo que no parece grave pero quiero controlar 1583 2025-10-03 03:00:00+00 10:00:00 \N 88 \N +835 2025-10-03 21:47:49.249902+00 2025-10-03 21:47:49.249913+00 f t [["2025-10-04", "afternoon"], ["2025-10-04", "morning"], ["2025-10-04", "evening"]] Confirmado 8830 822 1208 placas derivada de su veterinario 1208 2025-10-04 03:00:00+00 10:00:00 128520374956 84 \N +813 2025-10-02 23:10:18.525147+00 2025-10-02 23:10:18.525159+00 f t [["2025-10-03", "Mañana"], ["2025-10-02", "Noche"], ["2025-10-03", "Tarde"]] rejected 8753 9900 1208 Vomitos 113 2025-10-03 03:00:00+00 16:30:00 \N \N \N +839 2025-10-04 12:47:13.580938+00 2025-10-04 12:47:13.580948+00 f t [["2025-10-08", "morning"], ["2025-10-08", "afternoon"], ["2025-10-08", "evening"]] vet_accepted 8810 9955 1208 vacunacion anual para 2 1208 2025-10-08 03:00:00+00 11:00:00 128020659897 68 \N +843 2025-10-04 15:46:31.699593+00 2025-10-04 15:46:31.699601+00 f t [["2025-10-07", "morning"], ["2025-10-07", "afternoon"], ["2025-10-07", "evening"]] Confirmado 8854 9861 1208 perfil geronte felino 1208 2025-10-07 03:00:00+00 17:00:00 128023174769 100 \N +846 2025-10-04 17:22:11.575538+00 2025-10-04 17:22:11.575546+00 f t [["2025-10-06", "morning"], ["2025-10-06", "afternoon"], ["2025-10-06", "evening"]] Confirmado 8826 9969 1208 coproparasitologico 1208 2025-10-06 03:00:00+00 09:00:00 128058188131 100 \N +845 2025-10-04 17:09:09.803342+00 2025-10-04 17:09:09.80335+00 f t [["2025-10-06", "morning"], ["2025-10-06", "afternoon"], ["2025-10-06", "evening"]] Confirmado 8860 10000 1208 aplicacion de tribiotic sc 1208 2025-10-06 03:00:00+00 17:30:00 39093167470 1 \N +847 2025-10-04 18:57:20.546345+00 2025-10-04 18:57:20.546353+00 f t [["2025-10-08", "morning"], ["2025-10-08", "afternoon"], ["2025-10-08", "evening"]] Confirmado 8866 10006 1208 se contagio pulgas pero de tanto rascarse se hizo una herida detrás de la oreja y desparacitacion 1208 2025-10-08 03:00:00+00 17:00:00 128072162523 80 \N +837 2025-10-04 01:06:33.658618+00 2025-10-04 01:06:33.658626+00 f t [["2025-10-11", "Tarde"], ["2025-10-11", "Noche"], ["2025-10-11", "Mañana"]] rejected 8839 9981 1208 Hay q hacerle control laboratorio ver fémur intervenido x fractura hace 12 años... limpieza bucal 1208 \N \N \N \N \N +881 2025-10-06 23:28:46.862366+00 2025-10-06 23:28:46.862374+00 f t [["2025-10-06", "evening"]] Confirmado 9035 10165 114 No se especificó motivo de consulta. se solicitó: Telemedicina... 114 2025-10-06 03:00:00+00 20:00:00 128337784051 91 \N +777 2025-10-01 15:35:34.867223+00 2025-10-01 15:35:34.867232+00 f t [["2025-10-01", "afternoon"]] Confirmado 8679 1109 1583 \N 1583 2025-10-01 03:00:00+00 15:00:00 127648447947 1 \N +808 2025-10-02 20:37:25.484569+00 2025-10-02 20:37:25.484581+00 t t [["2025-10-03", "afternoon"]] in_progress_pay 8744 9893 \N \N 1583 2025-10-08 03:00:00+00 18:00:00 \N 21 \N +768 2025-09-30 23:51:35.641151+00 2025-09-30 23:51:35.641165+00 t t [["2025-10-06", "afternoon"]] in_progress_vet 8636 9712 \N \N 1583 \N \N \N \N \N +776 2025-10-01 15:31:36.239786+00 2025-10-01 15:31:36.239797+00 f t [["2025-10-04", "Tarde"], ["2025-10-04", "Mañana"], ["2025-10-04", "Noche"]] Confirmado 8676 9758 \N Es un ovejero alemán de 13 años, le cuesta moverse, cada día se mueve un poco menos. Camina por la casa pero esta muy débil, no quiere comer su alimento, solo si se lo mezclo con pollo u algún sobrecito. Tiene muchos dolores en la cadera baja, cuando se acuesta llora, le lagrimean mucho los ojos. Por la edad ya tiene artrosis, y en su última visita al veterinario en Junio estaban empezando las molestias pero con los meses empeoro. 1208 2025-10-02 03:00:00+00 10:00:00 128208907574 94 \N +781 2025-10-01 17:31:07.159658+00 2025-10-01 17:31:07.159673+00 f t [["2025-10-06", "morning"], ["2025-10-06", "afternoon"], ["2025-10-06", "evening"]] Confirmado 8689 9769 1208 \N 1208 2025-10-06 03:00:00+00 16:00:00 PDX4OGNY1385JLRY20L6EY 89 \N +769 2025-09-30 23:52:34.542445+00 2025-09-30 23:52:34.542458+00 f t [["2025-10-06", "afternoon"]] Confirmado 8636 9712 113 \N 113 2025-10-06 03:00:00+00 17:00:00 RD06ZO9W17PP5JQK25GP7X 98 \N +773 2025-10-01 12:26:17.79754+00 2025-10-01 12:26:17.797555+00 f t [["2025-10-01", "Noche"], ["2025-10-02", "Noche"], ["2025-10-02", "Tarde"]] Confirmado 8668 9750 \N Diarrea y vómito 1208 2025-10-01 03:00:00+00 20:00:00 127626990697 70 \N +778 2025-10-01 15:55:18.15843+00 2025-10-01 15:55:18.158439+00 f t [["2025-10-02", "Mañana"], ["2025-10-03", "Mañana"], ["2025-10-03", "Tarde"]] Confirmado 8682 9763 \N Tony está estornudando y con mocos hace 3 días aproximadamente 1208 2025-10-02 03:00:00+00 11:00:00 39044399372 88 \N +811 2025-10-02 22:15:14.133237+00 2025-10-02 22:15:14.133246+00 f t [["2025-10-06", "Tarde"], ["2025-10-07", "Tarde"], ["2025-10-08", "Tarde"]] Confirmado 8749 9896 \N Vacunas anuales 113 2025-10-06 03:00:00+00 16:00:00 Z0KV87948PYOWPOQ2PEYDX 88 \N +810 2025-10-02 21:49:22.386972+00 2025-10-02 21:49:22.386981+00 f t [["2025-10-04", "afternoon"]] Confirmado 8747 8168 1583 \N 1583 2025-10-04 03:00:00+00 15:30:00 128441981752 92 \N +770 2025-10-01 00:06:20.076754+00 2025-10-01 00:06:20.076766+00 f t [["2025-10-02", "afternoon"]] Confirmado 8639 9716 113 \N 113 2025-10-01 03:00:00+00 16:00:00 127566904479 114 \N +816 2025-10-03 01:53:56.603916+00 2025-10-03 01:53:56.603929+00 t t [["2025-10-03", "Mañana"], ["2025-10-03", "Mañana"], ["2025-10-03", "Mañana"]] coordinated 8767 9915 \N Está dolorida, no bebe, se queja, come muy poco, le cuesta caminar 1583 2025-10-03 03:00:00+00 16:00:00 \N \N \N +784 2025-10-01 19:37:17.397558+00 2025-10-01 19:37:17.397571+00 f t [["2025-10-01", "evening"]] vet_accepted 8697 6893 1583 \N 1583 2025-10-01 03:00:00+00 21:00:00 WY7ZEPN6Q4ZM6GEONQ0M51 70 \N +771 2025-10-01 01:34:41.493675+00 2025-10-01 01:34:41.493684+00 f t [["2025-10-01", "Noche"], ["2025-10-01", "Noche"], ["2025-10-01", "Noche"]] Confirmado 8648 9727 \N Control para un perro rescatado \nYa tiene todos los estudios hechos 1208 2025-10-01 03:00:00+00 18:00:00 128190536284 88 \N +772 2025-10-01 12:12:52.942959+00 2025-10-01 12:12:52.942968+00 f t [["2025-10-01", "Noche"], ["2025-10-01", "Tarde"], ["2025-10-03", "Mañana"]] Confirmado 8666 9748 \N -1-Le molesta mucho la oreja derecha, se la rasca todo el tiempo y sacude mucho a cabeza,2- estuvo tosiendo por la mañana y parece como si estuviera resfriada pero no le vi mocos. 3-la ultima vete que la reviso me pidio una radiografia de la columna porque reacciona cuando se le acaricia el lomo. Si tienen equipo de rx estaria bueno que lo lleven para hacerselo tambien. 1208 2025-10-01 03:00:00+00 19:00:00 128198561216 70 \N +827 2025-10-03 16:25:25.250605+00 2025-10-03 16:25:25.250612+00 f t [["2025-10-04", "afternoon"], ["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] Confirmado 8809 9954 1583 Consulta general 1583 2025-10-03 03:00:00+00 18:00:00 127924046981 94 \N +790 2025-10-02 13:57:46.341628+00 2025-10-02 13:57:46.341636+00 f t [["2025-10-02", "morning"], ["2025-10-02", "afternoon"], ["2025-10-02", "evening"]] Confirmado 8707 9727 1208 \N 1208 2025-10-02 03:00:00+00 16:30:00 128327343688 88 \N +824 2025-10-03 15:35:39.342527+00 2025-10-03 15:35:39.342535+00 t t [["2025-10-06", "morning"]] coordinated 8805 8854 1583 Control Cardiologico quirurgico 1583 2025-10-06 03:00:00+00 10:00:00 \N \N \N +774 2025-10-01 15:26:48.366972+00 2025-10-01 15:26:48.366983+00 f t [["2025-10-04", "morning"]] in_progress_pay 8677 9759 \N \N 1583 2025-10-04 03:00:00+00 12:00:00 \N 80 \N +793 2025-10-02 14:05:52.38437+00 2025-10-02 14:05:52.384379+00 f t [["2025-10-02", "morning"], ["2025-10-02", "afternoon"], ["2025-10-02", "evening"]] Confirmado 8708 8854 1208 \N 1208 2025-10-02 03:00:00+00 20:00:00 128336314148 92 \N +796 2025-10-02 16:36:16.811937+00 2025-10-02 16:36:16.811949+00 f t [["2025-10-02", "afternoon"]] Confirmado 8720 405 1583 \N 1583 2025-10-02 03:00:00+00 18:00:00 128353416354 1 \N +775 2025-10-01 15:28:02.644487+00 2025-10-01 15:28:02.6445+00 f t [["2025-10-04", "morning"], ["2025-10-04", "afternoon"], ["2025-10-04", "evening"]] Confirmado 8678 667 \N \N 1208 2025-10-04 03:00:00+00 13:00:00 00 80 \N +799 2025-10-02 17:30:21.391503+00 2025-10-02 17:30:21.391512+00 f t [["2025-10-03", "morning"], ["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] Confirmado 8728 745 1208 \N 1208 2025-10-09 03:00:00+00 19:30:00 127798277531 91 \N +830 2025-10-03 19:22:02.677997+00 2025-10-03 19:22:02.678006+00 f t [["2025-10-06", "morning"]] Confirmado 8805 8854 1583 Analisis de sangre Perfil 7 con orina, brucella, total 1583 2025-10-06 03:00:00+00 11:00:00 0 100 \N +802 2025-10-02 18:56:01.732863+00 2025-10-02 18:56:01.732876+00 f t [["2025-10-03", "Mañana"], ["2025-10-06", "Noche"], ["2025-10-06", "Tarde"]] Confirmado 8735 9885 \N Creemos que tiene mastitis 1208 2025-10-03 03:00:00+00 09:30:00 127800786417 113 \N +833 2025-10-03 21:06:19.449439+00 2025-10-03 21:06:19.449447+00 f t [["2025-10-03", "morning"], ["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] coordinated 8826 9969 1208 Inicio con deposiciones blandas hace 4 dias , hoy ya diarreicas con presencia de moco sin sangre 1208 2025-10-03 03:00:00+00 19:30:00 128525179304 89 \N +821 2025-10-03 14:16:56.598905+00 2025-10-03 14:16:56.598917+00 f t [["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] rejected 8800 9946 1583 Ecografia 1583 2025-10-06 03:00:00+00 11:00:00 \N 5 \N +805 2025-10-02 19:44:02.401696+00 2025-10-02 19:44:02.401707+00 f t [["2025-10-25", "morning"]] Confirmado 8739 9641 1583 \N 1583 2025-10-25 03:00:00+00 10:30:00 128367891606 67 \N +787 2025-10-02 13:03:55.373171+00 2025-10-02 13:03:55.373184+00 f t [["2025-10-03", "morning"], ["2025-10-03", "afternoon"], ["2025-10-03", "evening"]] rejected 8701 9856 \N \N 1208 2025-10-03 03:00:00+00 18:00:00 \N 70 \N +848 2025-10-04 20:13:35.150182+00 2025-10-04 20:13:35.15019+00 f t [["2025-10-07", "morning"], ["2025-10-07", "afternoon"], ["2025-10-07", "evening"]] Confirmado 8849 9991 1208 extraccion de sangre 1208 2025-10-07 03:00:00+00 13:00:00 128077548603 88 \N +1068 2025-10-17 15:43:18.791151+00 2025-10-17 15:43:18.791161+00 f t [["2025-10-21", "afternoon"]] Confirmado 9897 10957 1583 Consulta cardiologica y toma de presion 1583 2025-10-21 03:00:00+00 13:30:00 Modo 82 \N +849 2025-10-04 20:13:56.92971+00 2025-10-04 20:13:56.929718+00 f t [["2025-10-07", "morning"], ["2025-10-07", "afternoon"], ["2025-10-07", "evening"]] Confirmado 8877 9991 1208 ecografia abdominal 1208 2025-10-07 03:00:00+00 13:00:00 128077548603 90 \N +1170 2025-10-23 14:41:14.208234+00 2025-10-23 14:41:14.208243+00 f t [["2025-10-23", "Tarde"], ["2025-10-23", "Mañana"], ["2025-10-23", "Tarde"]] rejected 10352 11385 1583 No hace caca y está toda inchada 1583 \N \N \N \N \N +882 2025-10-06 23:33:00.016202+00 2025-10-06 23:33:00.016212+00 f t [["2025-10-07", "morning"]] vet_accepted 9037 7528 114 control por estornudos continuos 114 2025-10-07 03:00:00+00 09:30:00 128874659804 68 \N +852 2025-10-05 00:09:52.004921+00 2025-10-05 00:09:52.004933+00 f t [["2025-10-04", "Noche"], ["2025-10-05", "Mañana"], ["2025-10-05", "Tarde"]] rejected 8885 10023 114 Picadura de abeja en la pata. Ahora está pisando con dificultad. 114 2025-10-05 03:00:00+00 12:30:00 \N \N \N +851 2025-10-04 21:59:39.793978+00 2025-10-04 21:59:39.79399+00 f t [["2025-10-07", "Tarde"], ["2025-10-07", "Noche"], ["2025-10-07", "Tarde"]] rejected 8873 10013 114 Buenas tardes es una perrita de la calle q los vecinos les damos de comer , yo la entré a mi casa hace unos días xq esta hechada y le cuesta caminar tiene una infección con pus y un agujero cerca de las tetas , comer come muy poco, tiene mucho olor a podrido y necesito que vengan a verla ya q no tengo como llevarla 114 2025-10-07 03:00:00+00 15:00:00 \N 21 \N +856 2025-10-05 14:15:45.371934+00 2025-10-05 14:15:45.371947+00 f t [["2025-10-05", "Tarde"], ["2025-10-05", "Tarde"], ["2025-10-05", "Noche"]] rejected 8910 10048 114 Sultán tiene 16 años, hace dos días perdió la movilidad de las patas de atrás, no come y no toma líquidos. \nA veces se queja de dolor. Tiene poca visión o nula. 114 \N \N \N \N \N +859 2025-10-05 17:46:28.110856+00 2025-10-05 17:46:28.110864+00 f t [["2025-10-05", "Noche"], ["2025-10-06", "Mañana"], ["2025-10-05", "Tarde"]] Confirmado 8922 10060 114 Aparente abseso en el cachete derecho. 114 2025-10-06 03:00:00+00 09:00:00 000 68 \N +857 2025-10-05 14:58:19.261771+00 2025-10-05 14:58:19.261779+00 f t [["2025-10-05", "afternoon"]] vet_accepted 8914 10052 114 Dos vacunaciones anuales y una desparacitación 114 2025-10-05 03:00:00+00 15:00:00 70131137011251005 70 \N +855 2025-10-05 08:18:18.805012+00 2025-10-05 08:18:18.80502+00 f t [["2025-10-05", "Mañana"], ["2025-10-05", "Tarde"], ["2025-10-05", "Noche"]] Confirmado 8901 10039 114 Orina seguido y con un poco de sangre 114 2025-10-05 03:00:00+00 17:30:00 128716204688 114 \N +858 2025-10-05 15:36:15.688925+00 2025-10-05 15:36:15.688934+00 f t [["2025-10-06", "Mañana"], ["2025-10-06", "Tarde"], ["2025-10-06", "Noche"]] Confirmado 8916 10054 114 Necesito hacerle este estudio para ver la posibilidad de dormir a la perra para hacerle una tomografía computada y una laparoscopia. Ya tiene estudios de sangre. 114 2025-10-06 03:00:00+00 19:00:00 55482309 82 \N +863 2025-10-05 20:18:18.675288+00 2025-10-05 20:18:18.675298+00 f t [["2025-10-06", "evening"]] Confirmado 8932 10068 114 Sacar los puntos y quitarle una Vía 114 2025-10-06 03:00:00+00 20:00:00 R7ZG0QNDJQM4K4MENEXYPO 70 \N +854 2025-10-05 04:11:31.727579+00 2025-10-05 04:11:31.727588+00 f t [["2025-10-05", "Noche"], ["2025-10-06", "Noche"], ["2025-10-06", "Tarde"]] vet_accepted 8893 10031 114 Ojo hinchado y colorado 114 2025-10-05 03:00:00+00 14:00:00 1887762953 92 \N +870 2025-10-06 14:44:37.009779+00 2025-10-06 14:44:37.009786+00 f t [["2025-10-08", "morning"], ["2025-10-08", "afternoon"]] Confirmado 8983 10114 1583 Se rasca permanentemente y no tiene pulgas se lastimó el lomo y lo tiene muy nervioso \N 2025-10-08 03:00:00+00 14:30:00 39113357360 75 \N +865 2025-10-06 12:05:12.415679+00 2025-10-06 12:05:12.415687+00 f t [["2025-10-06", "Mañana"], ["2025-10-06", "Tarde"], ["2025-10-06", "Noche"]] Confirmado 8967 10103 1583 Es callejero, está muy flaco, tiene dificultades para orinar, le lleva mucho tiempo y hace poco, parece que tiene pulgas y parasitos 1583 2025-10-06 03:00:00+00 13:00:00 128256371049 1 \N +864 2025-10-05 21:45:05.160023+00 2025-10-05 21:45:05.160032+00 t t [["2025-10-05", "Noche"], ["2025-10-05", "Noche"], ["2025-10-05", "Noche"]] coordinated 8935 10071 1583 Le cuesta levantarse, bebe mucha agua.\nSe orinó encima y no se levanta 1583 2025-10-06 03:00:00+00 14:00:00 \N \N \N +869 2025-10-06 13:58:16.661518+00 2025-10-06 13:58:16.661528+00 f t [["2025-10-07", "morning"]] Confirmado 8974 9239 1583 Coproparasitologico\nCoprocultivo 1583 2025-10-07 03:00:00+00 10:00:00 128263356893 100 \N +868 2025-10-06 13:58:15.049994+00 2025-10-06 13:58:15.050002+00 t t [["2025-10-07", "morning"]] pending 8973 9239 \N \N \N \N \N \N \N \N +867 2025-10-06 13:29:15.795456+00 2025-10-06 13:29:15.795468+00 f t [["2025-10-06", "afternoon"]] vet_accepted 8971 8958 1583 Extraccion de puntos 1583 2025-10-06 03:00:00+00 14:00:00 128263356893 114 \N +872 2025-10-06 15:29:44.540135+00 2025-10-06 15:29:44.540145+00 f t [["2025-10-06", "afternoon"]] Confirmado 8987 7443 1583 Consulta post estudios 1583 2025-10-06 03:00:00+00 15:00:00 3D5W612EJEKXR16O9GXYVR 80 \N +871 2025-10-06 15:26:48.875971+00 2025-10-06 15:26:48.87598+00 f t [["2025-10-07", "afternoon"]] Confirmado 8986 10119 1583 Ecografia abdominal 1583 2025-10-07 03:00:00+00 13:00:00 128282302511 5 \N +873 2025-10-06 15:56:21.716232+00 2025-10-06 15:56:21.71624+00 f t [["2025-10-06", "afternoon"], ["2025-10-06", "evening"]] Confirmado 8991 10123 1583 Revisar alimentacion por sobrepeso 1583 2025-10-06 03:00:00+00 19:00:00 128852345002 21 \N +874 2025-10-06 16:52:57.896525+00 2025-10-06 16:52:57.896532+00 f t [["2025-10-06", "afternoon"], ["2025-10-07", "afternoon"], ["2025-10-08", "afternoon"]] Confirmado 8997 10039 114 Ecografía Abdominal \N 2025-10-06 03:00:00+00 17:30:00 128289184835 90 \N +875 2025-10-06 17:04:19.776671+00 2025-10-06 17:04:19.776682+00 f t [["2025-10-08", "afternoon"], ["2025-10-08", "morning"], ["2025-10-08", "evening"]] vet_accepted 8999 340 1583 Control general 1583 2025-10-08 03:00:00+00 09:30:00 128305627705 68 \N +876 2025-10-06 17:36:26.616292+00 2025-10-06 17:36:26.6163+00 f t [["2025-10-06", "afternoon"], ["2025-10-06", "evening"]] Confirmado 9002 10133 1583 3ra dosis de Sextuple 1583 2025-10-07 03:00:00+00 18:30:00 NranjaX 92 \N +877 2025-10-06 19:25:42.217538+00 2025-10-06 19:25:42.217547+00 f t [["2025-10-08", "afternoon"], ["2025-10-08", "evening"]] Confirmado 9012 10142 1583 Vacunacion anual y desparasitaaacion interna y externa 1583 2025-10-08 03:00:00+00 19:30:00 30542022008251006 92 \N +918 2025-10-08 15:53:08.354312+00 2025-10-08 15:53:08.354321+00 f t [["2025-10-09", "morning"], ["2025-10-09", "afternoon"], ["2025-10-09", "evening"]] coordinated 9161 10275 1583 Eco abdominal 1583 2025-10-09 03:00:00+00 11:00:00 \N \N \N +988 2025-10-13 14:37:07.404146+00 2025-10-13 14:37:07.404159+00 f t [["2025-10-15", "morning"]] Confirmado 9523 7306 1583 Extraccion 1583 2025-10-16 03:00:00+00 16:30:00 129957707796 112 \N +883 2025-10-06 23:40:45.327625+00 2025-10-06 23:40:45.327634+00 f t [["2025-10-15", "afternoon"]] vet_accepted 9040 7529 114 Vacunación Antirrábica + Vacunación anual. 114 2025-10-15 03:00:00+00 16:00:00 39116777108 89 \N +880 2025-10-06 22:32:56.784843+00 2025-10-06 22:32:56.784857+00 f t [["2025-10-10", "Noche"], ["2025-10-10", "Noche"], ["2025-10-10", "Noche"]] Confirmado 9033 10163 114 Vacunacion Anual 114 2025-10-10 03:00:00+00 19:30:00 128339908463 92 \N +878 2025-10-06 19:54:42.953083+00 2025-10-06 19:54:42.953091+00 f t [["2025-10-06", "Noche"], ["2025-10-08", "Noche"], ["2025-10-09", "Noche"]] Confirmado 9015 10146 114 La veo que está flaca, y que no respira muy bien! 114 2025-10-06 03:00:00+00 20:00:00 39119808933 92 \N +879 2025-10-06 20:06:58.503478+00 2025-10-06 20:06:58.503486+00 f t [["2025-10-09", "evening"]] Confirmado 9019 123 1583 Control clinico y drenaje de glandulas, plicacion atrosan 1583 2025-10-09 03:00:00+00 19:00:00 pack3visitas 1 \N +884 2025-10-07 06:10:29.250871+00 2025-10-07 06:10:29.25088+00 f t [["2025-10-07", "Noche"], ["2025-10-10", "Mañana"], ["2025-10-10", "Tarde"]] Confirmado 9056 10184 1208 Respiracion agitada/especie de soplido. Ataque de tos a la noche 1208 2025-10-07 03:00:00+00 20:00:00 128403085487 79 \N +885 2025-10-07 11:46:53.850148+00 2025-10-07 11:46:53.850157+00 f t [["2025-10-07", "Mañana"], ["2025-10-07", "Mañana"], ["2025-10-07", "Tarde"]] Confirmado 9065 10193 1208 Vómitos blancos y amarillos desde ayer, vomitó a la noche, está inquieto y parece tener dolor abdominal 1208 2025-10-07 03:00:00+00 14:00:00 790000969 1 \N +891 2025-10-07 14:26:25.82738+00 2025-10-07 14:26:25.827387+00 f t [["2025-10-07", "afternoon"]] Confirmado 9081 8854 1583 Teleconsulta post estudios 1583 2025-10-07 03:00:00+00 15:00:00 128981528692 92 \N +886 2025-10-07 12:43:20.729801+00 2025-10-07 12:43:20.729808+00 f t [["2025-10-07", "Noche"], ["2025-10-07", "Mañana"], ["2025-10-07", "Tarde"]] rejected 9067 10195 1208 Necesito que un veterinario le suministre suero más protector gástrico y renal\nTambién alguna vitamina estimulante del apetito.\nNo la llevo a veterinaria por cuadro de stress muy grande. Tiene casi 19 años y no quiere comer 1208 2025-10-07 03:00:00+00 12:00:00 \N 88 \N +889 2025-10-07 13:46:31.940459+00 2025-10-07 13:46:31.94047+00 f t [["2025-10-10", "Mañana"], ["2025-10-10", "Tarde"], ["2025-10-11", "Mañana"]] Confirmado 9075 10203 1208 me derivaron a un especialista, para tratamiento.- 1208 2025-10-10 03:00:00+00 11:00:00 100000004397517 115 \N +894 2025-10-07 16:02:51.281158+00 2025-10-07 16:02:51.281167+00 t t [["2025-10-07", "Tarde"], ["2025-10-07", "Mañana"], ["2025-10-07", "Noche"]] pending 9085 10212 \N Tiene mocos y resfrio \N \N \N \N \N \N +893 2025-10-07 15:37:23.587229+00 2025-10-07 15:37:23.587237+00 f t [["2025-10-07", "Mañana"], ["2025-10-07", "Tarde"], ["2025-10-07", "Noche"]] in_progress_vet 9084 10211 1208 Encias blancas, letargico 1208 \N \N \N \N \N +895 2025-10-07 16:03:34.827411+00 2025-10-07 16:03:34.827419+00 t t [["2025-10-07", "Tarde"], ["2025-10-07", "Mañana"], ["2025-10-07", "Noche"]] pending 9085 10212 \N Tiene mocos y resfrio \N \N \N \N \N \N +897 2025-10-07 16:37:51.858031+00 2025-10-07 16:37:51.858042+00 f t [["2025-10-07", "afternoon"]] Confirmado 9086 10213 1583 Rdiografia 1583 2025-10-07 03:00:00+00 16:30:00 Brubaank 84 \N +887 2025-10-07 13:12:51.963923+00 2025-10-07 13:12:51.963932+00 f t [["2025-10-07", "Tarde"], ["2025-10-08", "Noche"], ["2025-10-09", "Noche"]] rejected 9070 10198 1208 Mi gatita ya esta grande, está dejando de comer y se encuentra muy caída. Le cuesta estar parada y movilizarse. 1208 2025-10-07 03:00:00+00 19:00:00 \N 1 \N +892 2025-10-07 14:56:19.400108+00 2025-10-07 14:56:19.400121+00 f t [["2025-10-14", "Noche"], ["2025-10-15", "Noche"], ["2025-10-16", "Noche"]] rejected 9082 10209 1208 Chequeo general y vacunación 1208 2025-10-14 03:00:00+00 20:00:00 \N 89 \N +898 2025-10-07 19:09:50.036619+00 2025-10-07 19:09:50.03663+00 f t [["2025-10-08", "Tarde"], ["2025-10-08", "Mañana"], ["2025-10-09", "Mañana"]] Confirmado 9092 10219 1583 Aparente dolor abdominal , le cuesta pararse , a veces renguea, toma muchisimo liquido , orina mucho , come poco -. 1583 2025-10-09 03:00:00+00 09:30:00 Santander 103 \N +888 2025-10-07 13:37:02.918017+00 2025-10-07 13:37:02.91803+00 f t [["2025-10-08", "Mañana"], ["2025-10-08", "Mañana"], ["2025-10-08", "Mañana"]] Confirmado 9053 9310 1208 Hace una semana fue chequeado por una diarrea. Con dieta recomendada mejoró.\nEl tema es que ahora anda débil , le cuesta pararse , ya casi no se levanta de su cama, pierde el equilibrio. Se levanta a tomar agua , baja a hacer pis pero en brazos y solo la dejo en el suelo para que orine. 1208 2025-10-09 03:00:00+00 19:30:00 39136468083 92 \N +899 2025-10-07 19:30:56.538311+00 2025-10-07 19:30:56.538321+00 f t [["2025-10-07", "afternoon"]] Confirmado 9095 10193 1583 Retirno Perfil 7 con glucosa 1583 2025-10-07 03:00:00+00 16:30:00 79006915 100 \N +890 2025-10-07 14:24:32.568098+00 2025-10-07 14:24:32.568108+00 t t [["2025-10-07", "afternoon"], ["2025-10-07", "evening"]] coordinated 9080 10208 1583 Consulta General, disponible todo el dia \N 2025-10-07 03:00:00+00 15:00:00 \N \N \N +901 2025-10-07 20:46:42.354442+00 2025-10-07 20:46:42.354454+00 f t [["2025-10-13", "evening"]] Confirmado 9101 6034 1583 Control 1583 2025-10-13 03:00:00+00 19:30:00 128461516215 75 \N +900 2025-10-07 20:08:46.669204+00 2025-10-07 20:08:46.669215+00 t t [["2025-10-07", "evening"]] coordinated 9099 10225 1583 Miasis, no come, no se levanta 1583 2025-10-07 03:00:00+00 18:00:00 \N \N \N +896 2025-10-07 16:06:52.524402+00 2025-10-07 16:06:52.524414+00 t t [["2025-10-07", "Tarde"], ["2025-10-07", "Mañana"], ["2025-10-07", "Noche"]] coordinated 9085 10212 1583 Tiene mocos y resfrio 1583 2025-10-07 03:00:00+00 17:00:00 \N \N \N +904 2025-10-07 21:37:02.791617+00 2025-10-07 21:37:02.79163+00 f t [["2025-10-24", "afternoon"]] Confirmado 9108 160 1583 Inyectable 1583 2025-10-24 03:00:00+00 15:00:00 57644976 89 \N +905 2025-10-07 21:43:00.270324+00 2025-10-07 21:43:00.270332+00 f t [["2025-10-31", "afternoon"]] vet_accepted 9110 160 1583 Inyectable 2/4 1583 2025-10-31 03:00:00+00 15:00:00 Pagado 89 \N +906 2025-10-07 21:44:27.06216+00 2025-10-07 21:44:27.062169+00 f t [["2025-11-07", "afternoon"]] vet_accepted 9111 160 1583 Inyectaable 3/10 1583 2025-11-07 03:00:00+00 15:00:00 0 89 \N +907 2025-10-07 21:46:04.666818+00 2025-10-07 21:46:04.666827+00 f t [["2025-11-14", "afternoon"]] vet_accepted 9112 160 1583 Inyectable 4/10 1583 2025-11-14 03:00:00+00 15:00:00 0 89 \N +902 2025-10-07 20:57:56.96197+00 2025-10-07 20:57:56.961982+00 t t [["2025-10-08", "afternoon"]] pending 9103 10208 \N \N \N \N \N \N \N \N +903 2025-10-07 20:57:59.4969+00 2025-10-07 20:57:59.49691+00 f t [["2025-10-08", "afternoon"]] Confirmado 9104 10208 1583 ecografia abdominal 1583 2025-10-10 03:00:00+00 15:30:00 Modo 90 \N +1795 2025-11-25 21:21:44.004958+00 2025-11-25 21:21:44.004965+00 f t [["2025-11-26", "morning"]] rejected 13604 11644 1583 \N 1583 2025-11-26 12:00:00+00 09:00:00 \N \N \N +922 2025-10-08 18:56:27.500816+00 2025-10-08 18:56:27.500823+00 f t [["2025-10-09", "morning"], ["2025-10-09", "afternoon"], ["2025-10-09", "evening"]] Confirmado 9175 10287 1208 extraccion rapela perfil 5 1208 2025-10-09 03:00:00+00 09:30:00 128585906469 100 \N +916 2025-10-08 15:25:00.006811+00 2025-10-08 15:25:00.00682+00 f t [["2025-10-08", "afternoon"], ["2025-10-08", "evening"]] Confirmado 9158 631 1583 amanecion con le contorno del ojo izquierdo rojo. 1583 2025-10-08 03:00:00+00 17:00:00 128566117583 80 \N +909 2025-10-08 00:17:04.617377+00 2025-10-08 00:17:04.617387+00 f t [["2025-10-08", "Mañana"], ["2025-10-08", "Tarde"], ["2025-10-08", "Noche"]] Confirmado 9120 10239 1208 Orden para una ecografia 1208 2025-10-08 03:00:00+00 19:00:00 128546688563 90 \N +910 2025-10-08 00:42:17.733115+00 2025-10-08 00:42:17.733124+00 f t [["2025-10-08", "Tarde"], ["2025-10-10", "Tarde"], ["2025-10-09", "Noche"]] Confirmado 9124 10243 1208 Pérdida de movilidad patas traseras 1208 2025-10-08 03:00:00+00 16:00:00 Z4K6DVNODZYE7Z8495J8LQ 1 \N +912 2025-10-08 14:06:05.835946+00 2025-10-08 14:06:05.835956+00 f t [["2025-10-08", "morning"], ["2025-10-08", "afternoon"], ["2025-10-08", "evening"]] payed 9150 9861 1208 traslado de muestra 1208 2025-10-08 03:00:00+00 11:00:00 1897616570 100 \N +919 2025-10-08 17:26:51.002135+00 2025-10-08 17:26:51.002144+00 f t [["2025-10-10", "afternoon"], ["2025-10-10", "morning"], ["2025-10-10", "evening"]] Confirmado 9167 10281 1208 Extraccion rapela, perfil 7, t4 libre y tsh 1208 2025-10-10 03:00:00+00 19:30:00 128573563569 85 \N +920 2025-10-08 17:30:02.294143+00 2025-10-08 17:30:02.294437+00 f t [["2025-10-11", "morning"], ["2025-10-11", "afternoon"], ["2025-10-11", "evening"]] Confirmado 9168 10281 1208 extraccion rapela perfil 7, tsh y t4 libre 1208 2025-10-11 03:00:00+00 08:30:00 128573563569 100 \N +913 2025-10-08 14:17:48.357377+00 2025-10-08 14:17:48.357386+00 f t [["2025-10-08", "morning"]] Confirmado 9151 10054 1583 Analisis de sangre y coagulograma 1583 2025-10-08 03:00:00+00 11:00:00 0 100 \N +911 2025-10-08 09:30:15.855629+00 2025-10-08 09:30:15.855638+00 f t [["2025-10-09", "Tarde"], ["2025-10-09", "Mañana"], ["2025-10-09", "Noche"]] Confirmado 9140 10259 1208 Buen día. Perro adulto casi 14 años (labrador) ya no se para ni vale por sus propios medios y sufre. No controla esfínteres. 1208 2025-10-09 03:00:00+00 11:00:00 129113720612 21 \N +923 2025-10-08 18:58:24.556513+00 2025-10-08 18:58:24.556521+00 f t [["2025-10-09", "afternoon"], ["2025-10-10", "morning"], ["2025-10-10", "afternoon"]] rejected 9176 266 118 No se especificó motivo de consulta. se solicitó: ... \N 2025-10-08 03:00:00+00 15:00:00 \N 118 \N +908 2025-10-07 23:35:12.926351+00 2025-10-07 23:35:12.92636+00 f t [["2025-10-07", "Noche"], ["2025-10-08", "Mañana"], ["2025-10-09", "Mañana"]] in_progress_pay 9116 10235 113 No para de vomitar 113 2025-10-07 03:00:00+00 21:00:00 \N 88 \N +921 2025-10-08 18:54:16.035312+00 2025-10-08 18:54:16.035321+00 f t [["2025-10-09", "morning"], ["2025-10-09", "afternoon"], ["2025-10-09", "evening"]] Confirmado 9174 10287 1208 extraccion rapela perfil 5 1208 2025-10-09 03:00:00+00 08:30:00 128585906469 85 \N +924 2025-10-08 18:59:28.710812+00 2025-10-08 18:59:28.710822+00 f t [["2025-10-09", "afternoon"]] Confirmado 9177 10288 1583 Vacuncion anual 1583 2025-10-09 03:00:00+00 15:00:00 128588477237 1 \N +925 2025-10-08 19:31:34.658123+00 2025-10-08 19:31:34.658131+00 f t [["2025-10-08", "Noche"], ["2025-10-09", "Mañana"], ["2025-10-10", "Mañana"]] Confirmado 9180 10291 1583 Tengo que darle la 3er dosis de la triple felina y la ultima vez que la lleve al veterinario semestres demasiado 1583 2025-10-10 03:00:00+00 10:00:00 129164503536 114 \N +914 2025-10-08 14:46:48.244804+00 2025-10-08 14:46:48.244814+00 f t [["2025-10-08", "Noche"], ["2025-10-08", "Noche"], ["2025-10-08", "Noche"]] Confirmado 9154 10271 1583 Sintomas de vomitos y tumor 1583 2025-10-08 03:00:00+00 18:00:00 brubank 114 \N +917 2025-10-08 15:32:44.780118+00 2025-10-08 15:32:44.780131+00 f t [["2025-10-09", "morning"]] Confirmado 9160 9991 1583 Teleconsula post estudios 1583 2025-10-09 03:00:00+00 09:00:00 128561246245 88 \N +926 2025-10-08 19:41:24.314656+00 2025-10-08 19:41:24.314665+00 t t [["2025-10-08", "afternoon"], ["2025-10-08", "evening"]] coordinated 9183 10294 1583 Ecografia abdominal por vomitos, sospecha que se trago algo 1583 2025-10-08 03:00:00+00 20:00:00 \N \N \N +930 2025-10-08 20:18:50.269525+00 2025-10-08 20:18:50.269533+00 f t [["2025-10-14", "afternoon"]] Confirmado 9188 409 1583 Control 1583 2025-10-14 03:00:00+00 14:30:00 129167404416 68 \N +928 2025-10-08 20:13:20.134915+00 2025-10-08 20:13:20.134927+00 f t [["2025-10-08", "afternoon"], ["2025-10-08", "evening"]] vet_accepted 9186 10297 1583 Ecografia abdominal 1583 2025-10-09 03:00:00+00 19:00:00 1LMP68NKJED3KV7D2R70EV 90 \N +929 2025-10-08 20:17:09.004042+00 2025-10-08 20:17:09.00405+00 f t [["2025-10-08", "Noche"], ["2025-10-08", "Noche"], ["2025-10-08", "Noche"]] Confirmado 9187 10298 1583 Esta hinchado en patas delanteras y cabeza 1583 2025-10-08 03:00:00+00 18:30:00 129171908266 79 \N +931 2025-10-08 23:14:36.874878+00 2025-10-08 23:14:36.87489+00 f t [["2025-10-08", "evening"]] Confirmado 9204 10314 113 Ecografia abdominal 113 2025-10-08 03:00:00+00 22:00:00 129188691480 90 \N +932 2025-10-08 23:44:33.407836+00 2025-10-08 23:44:33.407843+00 f t [["2025-10-08", "evening"]] Confirmado 9206 10316 113 Vacunacion anual+ corte de garras + certificado de salud 113 2025-10-09 03:00:00+00 21:00:00 58802126. 89 \N +933 2025-10-09 14:20:08.992239+00 2025-10-09 14:20:08.99225+00 f t [["2025-10-09", "morning"], ["2025-10-09", "afternoon"], ["2025-10-09", "evening"]] Confirmado 9233 10342 1208 Llora y no saben por que, parece que le cuesta orinar y ahora vomito 2 veces 1208 2025-10-09 03:00:00+00 15:00:00 Z4K6DVNODYGZ5DQM95J8LQ 89 \N +927 2025-10-08 19:45:26.786262+00 2025-10-08 19:45:26.786272+00 f t [["2025-10-13", "Mañana"], ["2025-10-13", "Tarde"], ["2025-10-14", "Mañana"]] Confirmado 9182 10293 1583 Vacuncion anual 1583 2025-10-13 03:00:00+00 11:00:00 128708087627 80 \N +935 2025-10-09 18:06:38.075623+00 2025-10-09 18:06:38.075631+00 t t [["2025-10-11", "afternoon"], ["2025-10-11", "evening"]] in_progress_vet 9246 10356 1583 \N 1583 \N \N \N \N \N +937 2025-10-09 18:10:28.250857+00 2025-10-09 18:10:28.250866+00 f t [["2025-10-14", "afternoon"]] Confirmado 9248 10006 1583 Rayos 1583 2025-10-14 03:00:00+00 14:00:00 128721097201 84 \N +934 2025-10-09 18:06:29.613643+00 2025-10-09 18:06:29.613652+00 f t [["2025-10-14", "morning"], ["2025-10-14", "afternoon"], ["2025-10-14", "evening"]] Confirmado 9245 10355 1208 extraccion rapela perfil general completo con orina mas calcio ionizado y relacion proteinuria/creatinuria 1208 2025-10-14 03:00:00+00 10:00:00 Z0KV87948E85QKJD2PEYDX 104 \N +915 2025-10-08 15:11:43.195755+00 2025-10-08 15:11:43.195772+00 f t [["2025-10-10", "morning"], ["2025-10-10", "afternoon"], ["2025-10-10", "evening"]] vet_accepted 9156 8854 1208 \N 1208 2025-10-10 03:00:00+00 17:00:00 128554159745 92 \N +941 2025-10-09 20:49:09.455794+00 2025-10-09 20:49:09.455804+00 t t [["2025-10-09", "evening"]] coordinated 9262 9861 1583 Consulta post estudios 1583 2025-10-09 03:00:00+00 21:00:00 \N \N \N +1016 2025-10-14 20:47:31.512968+00 2025-10-14 20:47:31.51298+00 t t [["2025-10-16", "afternoon"]] in_progress_pay 9647 10726 1583 Test de moquillo. ciego, desnutrido, rescatado de la calle 1583 2025-10-16 03:00:00+00 10:00:00 \N 80 \N +980 2025-10-13 04:47:14.078811+00 2025-10-13 04:47:14.07882+00 f t [["2025-10-18", "Mañana"], ["2025-10-26", "Mañana"], ["2025-10-17", "Mañana"]] rejected 9490 10586 1583 Castracion 1583 \N \N \N \N \N +936 2025-10-09 18:10:19.957273+00 2025-10-09 18:10:19.957281+00 f t [["2025-10-14", "morning"], ["2025-10-14", "afternoon"], ["2025-10-14", "evening"]] Confirmado 9247 10355 1208 extraccion rapela perfil general completo con orina mas calcio ionizado y relacion proteinuria/creatinuria 1208 2025-10-14 03:00:00+00 11:00:00 Z0KV87948E85QKJD2PEYDX 100 \N +992 2025-10-13 15:23:34.83216+00 2025-10-13 15:23:34.83217+00 f t [["2025-10-14", "afternoon"]] Confirmado 9540 345 1583 Vacunacion anual 1583 2025-10-14 03:00:00+00 16:00:00 129187749385 70 \N +1024 2025-10-15 14:34:15.159922+00 2025-10-15 14:34:15.15993+00 f t [["2025-10-16", "morning"]] Confirmado 9691 7306 1583 Prequirurgico, trigliceridos y orina 1583 2025-10-16 03:00:00+00 12:30:00 0 100 \N +1229 2025-10-27 16:12:25.884322+00 2025-10-27 16:12:25.884331+00 f t [["2025-10-27", "afternoon"], ["2025-10-27", "evening"]] vet_accepted 10602 11610 1583 no quiere comer, desde ayer, toma agua pero se escondió bajo la cama y está distinto, 1583 2025-10-27 03:00:00+00 18:00:00 LOEJVV9JZYE8341Z2QMDBOG 1 \N +1066 2025-10-17 14:40:24.224957+00 2025-10-17 14:40:24.224968+00 f t [["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] Confirmado 9863 10927 1583 Vacunaaacion anual felino, disponible Viernes de 9 a 18 o sabado de 9 a 16 1583 2025-10-17 03:00:00+00 16:00:00 130291557528 80 \N +956 2025-10-10 22:59:04.849365+00 2025-10-10 22:59:04.849376+00 f t [["2025-10-11", "afternoon"]] Confirmado 9355 10429 114 Revisión de tratamiento de los ojos 114 2025-10-11 03:00:00+00 14:30:00 128862179659 88 \N +960 2025-10-10 23:43:24.546597+00 2025-10-10 23:43:24.546606+00 f t [["2025-10-10", "evening"]] Confirmado 9353 10456 114 Diarrea y Vomitos continuos 114 2025-10-10 03:00:00+00 21:30:00 128891320917 68 \N +989 2025-10-13 14:41:26.354102+00 2025-10-13 14:41:26.354111+00 f t [["2025-10-13", "afternoon"], ["2025-10-13", "evening"]] Confirmado 9525 10616 1583 estornuda mucho, tiene mal aliento y le cuesta tragar (aunque sigue comiendo bien) 1583 2025-10-13 03:00:00+00 18:00:00 1LMP68NKJEW8807P2R7OEV 114 \N +952 2025-10-10 16:03:02.157048+00 2025-10-10 16:03:02.157059+00 f t [["2025-10-10", "afternoon"], ["2025-10-10", "evening"]] coordinated 9325 10428 1583 Consulta general 1583 2025-10-10 03:00:00+00 17:00:00 \N \N \N +964 2025-10-11 18:33:39.801482+00 2025-10-11 18:33:39.801491+00 f t [["2025-10-11", "morning"], ["2025-10-11", "afternoon"], ["2025-10-11", "evening"]] Confirmado 9400 73 1208 derivacion por vete maria luisa, continua con vomitos. Come y vomita 1208 2025-10-11 03:00:00+00 19:00:00 0 118 \N +984 2025-10-13 13:43:54.6651+00 2025-10-13 13:43:54.665108+00 f t [["2025-10-14", "afternoon"]] Confirmado 9514 10608 1583 Ecogafia abdominal, disponible martes todo el dia 1583 2025-10-14 03:00:00+00 16:00:00 Santander 90 \N +1028 2025-10-15 17:04:38.733119+00 2025-10-15 17:04:38.733129+00 f t [["2025-10-15", "evening"]] Confirmado 9709 10784 1583 Consulta Clinica 1583 2025-10-15 03:00:00+00 18:00:00 0 68 \N +996 2025-10-13 18:59:04.070581+00 2025-10-13 18:59:04.070593+00 f t [["2025-10-17", "evening"]] payed 9560 123 1583 Ecografia 1583 2025-10-17 03:00:00+00 18:30:00 39202193670 90 \N +1020 2025-10-15 13:47:15.12036+00 2025-10-15 13:47:15.120368+00 f t [["2025-10-15", "morning"], ["2025-10-15", "afternoon"], ["2025-10-15", "evening"]] rejected 9684 10763 1208 vacunacion anual 1208 2025-10-15 03:00:00+00 16:00:00 \N 88 \N +976 2025-10-12 20:31:01.383405+00 2025-10-12 20:31:01.383416+00 t t [["2025-10-13", "evening"], ["2025-10-16", "morning"], ["2025-10-14", "evening"]] vet_accepted 9467 123 114 Ecografia \N 2025-10-17 03:00:00+00 18:30:00 39202193670 90 \N +972 2025-10-12 19:55:11.642705+00 2025-10-12 19:55:11.642713+00 f t [["2025-10-18", "afternoon"]] vet_accepted 9460 10560 114 Vacunación Anual + Chequeo 114 2025-10-18 03:00:00+00 14:00:00 129658267050 92 \N +968 2025-10-12 18:53:12.267562+00 2025-10-12 18:53:12.267571+00 f t [["2025-10-13", "Mañana"], ["2025-10-14", "Mañana"], ["2025-10-13", "Tarde"]] Confirmado 9453 10554 114 Tiene estornudos esporádicos, y estos últimos días presentó algunos temas de respiración \N 2025-10-14 03:00:00+00 18:00:00 129668893072 113 \N +1000 2025-10-14 00:08:24.618256+00 2025-10-14 00:08:24.618265+00 f t [["2025-10-14", "evening"]] vet_accepted 9585 4604 114 Ecografía Abdominal 114 2025-10-13 03:00:00+00 20:30:00 129242913523 90 \N +1032 2025-10-15 19:07:43.130468+00 2025-10-15 19:07:43.130476+00 f t [["2025-10-17", "morning"], ["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] Confirmado 9720 10795 1208 control general 1208 2025-10-17 03:00:00+00 17:30:00 130056037704 96 \N +1035 2025-10-15 22:56:39.596178+00 2025-10-15 22:56:39.596188+00 f t [["2025-10-16", "morning"]] rejected 9744 233 113 vomitos, de comienzo de hoy 113 2025-10-16 03:00:00+00 09:00:00 67REZ8NPW6GE1R8194KVGO 88 \N +1039 2025-10-16 13:52:49.33028+00 2025-10-16 13:52:49.330289+00 f t [["2025-10-17", "morning"], ["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] Confirmado 9786 8918 1208 Boxer, tiene como "pelones" sin pelo. No parece molesto pero no es normal. También tiene algo en la oreja por lo que siempre me indicaron unas gotas (punta orejas) y no logra sanar bien.toma regularmente apoquel 1208 2025-10-17 03:00:00+00 18:00:00 JMQKYZ9QOVY3MR1P2V50P3 75 \N +1008 2025-10-14 17:19:19.385531+00 2025-10-14 17:19:19.385539+00 f t [["2025-10-21", "morning"]] Confirmado 9627 10707 1583 Prequirurgico 1583 2025-10-21 03:00:00+00 09:30:00 0 100 \N +1004 2025-10-14 14:34:42.236223+00 2025-10-14 14:34:42.236235+00 f t [["2025-10-17", "morning"], ["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] rejected 9613 10700 1208 extraccion de sangre 1208 2025-10-17 03:00:00+00 17:30:00 \N 89 \N +1012 2025-10-14 18:32:02.053845+00 2025-10-14 18:32:02.05386+00 f t [["2025-10-15", "morning"], ["2025-10-15", "afternoon"], ["2025-10-15", "evening"]] Confirmado 9636 10203 1208 analisis de orina con cistocentesis 1208 2025-10-15 03:00:00+00 08:00:00 100000004523263 80 \N +1042 2025-10-16 15:35:33.681205+00 2025-10-16 15:35:33.681216+00 f t [["2025-10-16", "morning"], ["2025-10-16", "afternoon"], ["2025-10-16", "evening"]] Confirmado 9794 10865 1208 ecografia abdominal 1208 2025-10-16 03:00:00+00 17:00:00 129510136135 90 \N +1048 2025-10-16 19:04:37.764362+00 2025-10-16 19:04:37.764371+00 f t [["2025-10-17", "morning"], ["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] Confirmado 9810 10880 1208 Extraccion de asngre perfil 7 sin glucosa+ PCR vif-vilef 1208 2025-10-17 03:00:00+00 18:00:00 30255737017251016 100 \N +1045 2025-10-16 17:59:03.904408+00 2025-10-16 17:59:03.904417+00 f t [["2025-10-17", "afternoon"]] Confirmado 9807 10879 1583 Consulta por problema en la rodilĺa 1583 2025-10-17 03:00:00+00 16:30:00 129602836427 107 \N +1052 2025-10-16 21:27:40.260807+00 2025-10-16 21:27:40.260815+00 f t [["2025-10-17", "morning"]] payed 9820 10613 1583 Hace dias no come, n o toma agua, ecografia hecha. Lo antes posible 1583 2025-10-17 03:00:00+00 10:00:00 0 \N \N +1055 2025-10-16 23:13:14.968121+00 2025-10-16 23:13:14.968129+00 f t [["2025-10-16", "evening"]] vet_accepted 9836 10901 113 Ecografia abdominal 113 2025-10-17 03:00:00+00 12:30:00 129648256149 103 \N +1122 2025-10-20 19:34:11.905667+00 2025-10-20 19:34:11.905675+00 f t [["2025-10-22", "morning"]] Confirmado 10136 9310 1583 Consulta post estudios 1583 2025-10-22 03:00:00+00 10:00:00 130644821828 92 \N +990 2025-10-13 14:56:45.062129+00 2025-10-13 14:56:45.062139+00 f t [["2025-10-14", "Tarde"], ["2025-10-16", "Tarde"], ["2025-10-21", "Tarde"]] Confirmado 9532 10624 1583 Quiero hacerle un chequeo general. 1583 2025-10-14 03:00:00+00 14:00:00 naranjaX 1 \N +1021 2025-10-15 14:17:37.316148+00 2025-10-15 14:17:37.316157+00 f t [["2025-10-15", "morning"], ["2025-10-15", "afternoon"], ["2025-10-15", "evening"]] vet_asked 9685 10764 1208 eco abdominal de urgencia 1208 2025-10-15 03:00:00+00 20:00:00 39242789045 90 \N +953 2025-10-10 16:10:51.806308+00 2025-10-10 16:10:51.806316+00 f t [["2025-10-10", "Noche"], ["2025-10-13", "Noche"], ["2025-10-13", "Mañana"]] Confirmado 9326 10429 114 Tiene un ojo con desprendimiento de retina y hoy amaneció muy hinchado y supurando , se nota que le duele por qué no se levanta, no es muy sociable con los humanos pero en casa se deja tocar 114 2025-10-10 03:00:00+00 15:00:00 128843284981 88 \N +957 2025-10-10 23:08:00.978341+00 2025-10-10 23:08:00.978352+00 f t [["2025-10-11", "afternoon"]] Confirmado 9356 4255 114 No se especificó motivo de consulta. se solicitó: ... 114 2025-10-11 03:00:00+00 13:30:00 76V4MR2ZP4KJZ4EL9DEZOL 88 \N +939 2025-10-09 19:26:12.282166+00 2025-10-09 19:26:12.282174+00 f t [["2025-10-09", "Noche"], ["2025-10-10", "Mañana"], ["2025-10-10", "Tarde"]] Confirmado 9253 10361 1583 Ecografia abdominal 1583 2025-10-10 03:00:00+00 18:00:00 RD06ZO9W1R1ZZKV125GP7X 90 \N +1025 2025-10-15 14:46:55.07353+00 2025-10-15 14:46:55.073539+00 f t [["2025-10-16", "morning"]] Confirmado 9694 123 1583 Muestra de sangre 1583 2025-10-16 03:00:00+00 10:00:00 0 100 \N +938 2025-10-09 18:31:43.322244+00 2025-10-09 18:31:43.322253+00 f t [["2025-10-13", "morning"], ["2025-10-13", "afternoon"], ["2025-10-13", "evening"]] Confirmado 9250 10358 1208 Aplicación de micro chip para ambos gatos para viajar al exterior 1208 2025-10-14 03:00:00+00 19:30:00 129307789986 91 \N +1029 2025-10-15 17:40:10.990461+00 2025-10-15 17:40:10.990473+00 f t [["2025-10-15", "Tarde"], ["2025-10-15", "Noche"], ["2025-10-16", "Mañana"]] rejected 9712 10787 1208 tiene 17 años, es un caniche toy, está muy deteriorado y envejecido, tiene artrosis y demencia. hace 2 días que le está costando caminar y no duerme del dolor, y cada vez está peor. Hoy ya no se puede parar directamente y no lo podemos dejar solo. 1208 2025-10-15 03:00:00+00 19:00:00 \N 88 \N +961 2025-10-10 23:50:12.337958+00 2025-10-10 23:50:12.337969+00 f t [["2025-10-11", "Mañana"], ["2025-10-11", "Mañana"], ["2025-10-11", "Mañana"]] rejected 9360 10461 1208 Pierde el equilibrio en la pata trasera y se tambalea y se le puso la cara de costado , hoy amaneció así 1208 2025-10-11 03:00:00+00 11:00:00 \N 74 \N +965 2025-10-11 19:28:29.797764+00 2025-10-11 19:28:29.797772+00 f t [["2025-10-12", "morning"], ["2025-10-12", "afternoon"], ["2025-10-12", "evening"]] Confirmado 9403 10504 1208 Es para drenar una glándula perianal que está obstruida e inflamada 1208 2025-10-12 03:00:00+00 17:00:00 128996033115 91 \N +993 2025-10-13 16:19:12.664438+00 2025-10-13 16:19:12.664446+00 f t [["2025-10-13", "afternoon"]] Confirmado 9545 9126 1583 Constulta post estudios 1583 2025-10-13 03:00:00+00 18:00:00 129193944617 92 \N +997 2025-10-13 19:55:11.315358+00 2025-10-13 19:55:11.315367+00 f t [["2025-10-13", "evening"]] Confirmado 9562 10650 1583 Drako comio ibuprofeno, revision de analisis 1583 2025-10-13 03:00:00+00 18:30:00 129221193629 115 \N +1033 2025-10-15 19:13:46.830632+00 2025-10-15 19:13:46.830644+00 f t [["2025-10-21", "morning"], ["2025-10-21", "afternoon"], ["2025-10-21", "evening"]] payed 9722 10355 1208 extraccion de sangre para calcio ionizado y glucosa 1208 2025-10-21 03:00:00+00 09:30:00 0 104 \N +973 2025-10-12 20:07:19.617277+00 2025-10-12 20:07:19.617285+00 f t [["2025-10-12", "evening"]] Confirmado 9461 7501 114 Vacunación Anual 114 2025-10-12 03:00:00+00 18:30:00 39202500799 70 \N +969 2025-10-12 19:04:39.564314+00 2025-10-12 19:04:39.564322+00 f t [["2025-10-12", "afternoon"]] Confirmado 9454 10555 114 Estornudos constantes 114 2025-10-12 03:00:00+00 16:00:00 39202500799 92 \N +1017 2025-10-15 00:21:00.967584+00 2025-10-15 00:21:00.967592+00 f t [["2025-10-15", "Tarde"], ["2025-10-15", "Tarde"], ["2025-10-15", "Tarde"]] Confirmado 9661 10740 1208 necesitamos que vengan a verla, porque tiene un problema en la columna y esta con mucho dolor 1208 2025-10-15 03:00:00+00 18:00:00 129431866187 88 \N +981 2025-10-13 12:04:50.655102+00 2025-10-13 12:04:50.655112+00 f t [["2025-10-13", "Mañana"], ["2025-10-13", "Tarde"], ["2025-10-13", "Mañana"]] Confirmado 9504 10600 1583 Irritacion en el cuello 1583 2025-10-13 03:00:00+00 12:00:00 cuenta DNI 1 \N +1001 2025-10-14 00:13:24.321739+00 2025-10-14 00:13:24.321749+00 f t [["2025-10-21", "afternoon"]] vet_accepted 9586 10672 114 Vacunación Anual 114 2025-10-20 03:00:00+00 18:00:00 JMQKYZ9QQV8YWE0V2V50P3 113 \N +1005 2025-10-14 15:09:41.683489+00 2025-10-14 15:09:41.683498+00 f t [["2025-10-14", "morning"], ["2025-10-14", "afternoon"], ["2025-10-14", "evening"]] Confirmado 9618 3692 1208 continua con diarrea 1208 2025-10-14 03:00:00+00 19:00:00 129888577558 74 \N +1040 2025-10-16 14:02:31.323797+00 2025-10-16 14:02:31.323809+00 f t [["2025-10-16", "morning"], ["2025-10-16", "afternoon"], ["2025-10-16", "evening"]] Confirmado 9784 2174 1208 Los dos fueron castrados y hay que sacarles la via 1208 2025-10-16 03:00:00+00 14:00:00 129574955877 104 \N +977 2025-10-12 20:35:03.594277+00 2025-10-12 20:35:03.594293+00 f t [["2025-10-16", "morning"]] Confirmado 9468 123 114 Extracción de Sangre 114 2025-10-16 03:00:00+00 08:00:00 000 104 \N +1009 2025-10-14 17:22:41.333551+00 2025-10-14 17:22:41.333559+00 f t [["2025-10-21", "morning"]] Confirmado 9629 10707 1583 Control cardiologico prequirugico 1583 2025-10-21 03:00:00+00 10:00:00 0 82 \N +1013 2025-10-14 18:32:57.718783+00 2025-10-14 18:32:57.718795+00 f t [["2025-10-15", "morning"], ["2025-10-15", "afternoon"], ["2025-10-15", "evening"]] Confirmado 9637 10203 1208 analisis de orina con UPC 1208 2025-10-15 03:00:00+00 09:00:00 100000004523263 100 \N +1043 2025-10-16 16:10:16.766095+00 2025-10-16 16:10:16.766104+00 f t [["2025-10-16", "Noche"], ["2025-10-17", "Noche"], ["2025-10-18", "Tarde"]] Confirmado 9795 10867 1583 Sangrado en las heces en el día de hoy ...no manifiesta dolor ni desgano...repuse el alimento habitual el sábado luego comenzó con heces de consistencia liviana y hoy sangrado 1583 2025-10-16 03:00:00+00 18:30:00 130170008929 94 \N +985 2025-10-13 14:01:47.021459+00 2025-10-13 14:01:47.02147+00 f t [["2025-10-15", "morning"]] Confirmado 9519 123 1583 Estudios cardiologicos 1583 2025-10-15 03:00:00+00 09:00:00 39202193670 82 \N +1036 2025-10-16 02:36:31.92087+00 2025-10-16 02:36:31.920879+00 f t [["2025-10-24", "Mañana"], ["2025-11-07", "Mañana"], ["2025-11-14", "Mañana"]] Confirmado 9760 10832 1208 Tiene como caspa y necesito le corten uñas 1208 2025-10-24 03:00:00+00 19:00:00 129601947279 70 \N +1049 2025-10-16 19:32:07.44894+00 2025-10-16 19:32:07.448949+00 f t [["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] Confirmado 9812 3866 1583 Problemas para defecar 1583 2025-10-17 03:00:00+00 18:30:00 130188571450 70 \N +1046 2025-10-16 18:34:48.523262+00 2025-10-16 18:34:48.523274+00 t t [["2025-10-16", "afternoon"]] in_progress_pay 9808 3866 1583 Diificultad para hacer caca 1583 2025-10-16 03:00:00+00 20:00:00 \N 1 \N +942 2025-10-09 21:11:42.865776+00 2025-10-09 21:11:42.865786+00 f t [["2025-10-10", "Mañana"], ["2025-10-10", "Tarde"], ["2025-10-10", "Noche"]] coordinated 9263 10369 1583 Siente molestias en la garganta y tiene secreciones en los ojos. 1583 2025-10-10 03:00:00+00 11:00:00 \N \N \N +962 2025-10-11 00:19:35.344822+00 2025-10-11 00:19:35.344835+00 f t [["2025-10-11", "Mañana"], ["2025-10-11", "Tarde"], ["2025-10-11", "Noche"]] Confirmado 9364 10465 1208 La gatita se cortó la patita aparentemente es profundo pero ya no sangra. 1208 2025-10-11 03:00:00+00 12:00:00 128942569585 1 \N +940 2025-10-09 20:11:21.830948+00 2025-10-09 20:11:21.830959+00 t t [["2025-10-10", "morning"], ["2025-10-10", "afternoon"], ["2025-10-10", "evening"]] coordinated 9256 8378 1583 control, disponible todo el dia 1583 2025-10-10 03:00:00+00 14:00:00 \N \N \N +1026 2025-10-15 14:57:21.445577+00 2025-10-15 14:57:21.445586+00 f t [["2025-10-16", "afternoon"]] Confirmado 9697 10773 1583 Rascado inusual 1583 2025-10-15 03:00:00+00 17:00:00 129445138719 80 \N +954 2025-10-10 16:48:17.159353+00 2025-10-10 16:48:17.159361+00 f t [["2025-10-10", "afternoon"], ["2025-10-10", "evening"]] Confirmado 9332 10435 1583 Consulta general 1583 2025-10-10 03:00:00+00 19:00:00 129419249962 114 \N +987 2025-10-13 14:29:51.599405+00 2025-10-13 14:29:51.599412+00 f t [["2025-10-14", "morning"]] Confirmado 9522 10615 1583 Cosnulta general 1583 2025-10-15 03:00:00+00 18:00:00 cuenta DNI 70 \N +1018 2025-10-15 01:34:55.925395+00 2025-10-15 01:34:55.925403+00 f t [["2025-10-15", "Mañana"], ["2025-10-14", "Noche"], ["2025-10-15", "Tarde"]] rejected 9664 10743 1208 Vómitos 1208 2025-10-15 03:00:00+00 11:00:00 \N 88 \N +966 2025-10-11 22:38:59.105333+00 2025-10-11 22:38:59.105343+00 f t [["2025-10-11", "Noche"], ["2025-10-11", "Tarde"], ["2025-10-11", "Mañana"]] rejected 9408 10509 114 Dolor persistente de oído 114 \N \N \N \N \N +1034 2025-10-15 19:14:25.692198+00 2025-10-15 19:14:25.692207+00 f t [["2025-10-21", "morning"], ["2025-10-21", "afternoon"], ["2025-10-21", "evening"]] Confirmado 9724 10355 1208 extraccion de sangre para calcio ionizado y glucosa 1208 2025-10-21 03:00:00+00 10:30:00 0 100 \N +958 2025-10-10 23:26:13.011374+00 2025-10-10 23:26:13.011385+00 f t [["2025-10-10", "afternoon"]] Confirmado 9358 10459 114 Falta de apetito y vomitos, presenta débilidad 114 2025-10-10 03:00:00+00 17:30:00 128846517643 21 \N +986 2025-10-13 14:14:20.274231+00 2025-10-13 14:14:20.274243+00 f t [["2025-10-13", "Tarde"], ["2025-10-13", "Mañana"], ["2025-10-13", "Noche"]] Confirmado 9520 10613 1583 No come, no mueve bien sus patas de atrás, está haciendo cosas que nunca hizo como hacer sus necesidades fuera de su baño. 1583 2025-10-14 03:00:00+00 12:30:00 62229179 114 \N +1022 2025-10-15 14:17:55.025894+00 2025-10-15 14:17:55.025901+00 t t [["2025-10-16", "afternoon"]] coordinated 9686 10765 1583 Ecograafia abdominal 1583 2025-10-16 03:00:00+00 15:30:00 \N \N \N +994 2025-10-13 16:47:03.180089+00 2025-10-13 16:47:03.180099+00 f t [["2025-10-13", "Tarde"], ["2025-10-14", "Mañana"], ["2025-10-14", "Tarde"]] coordinated 9546 10636 1583 Zarzita anda vomitando. Necesito hacerle un chequeo gral para saber todo, y necesito desparasitarla ya q este an̈o no lo pude hacer todavía 1583 2025-10-13 03:00:00+00 19:00:00 129209531017 1 \N +1030 2025-10-15 17:41:56.600186+00 2025-10-15 17:41:56.600202+00 f t [["2025-10-16", "Mañana"], ["2025-10-16", "Tarde"], ["2025-10-16", "Noche"]] rejected 9713 10788 1208 Hola, como estas? Mi perra esta hace unos dias con mucha diarrea y no esta queriendo comer, solo quiere comer los sachecitos de comida tipo pedigree. 1208 \N \N \N \N \N +1002 2025-10-14 00:48:14.519751+00 2025-10-14 00:48:14.51976+00 f t [["2025-10-14", "Noche"], ["2025-10-14", "Tarde"], ["2025-10-14", "Mañana"]] rejected 9589 10675 1208 Tiene las patas hinchadas y dificultad para respirar 1208 2025-10-14 03:00:00+00 19:00:00 \N 21 \N +853 2025-10-05 03:35:08.575867+00 2025-10-05 03:35:08.575879+00 f t [["2025-10-05", "Mañana"], ["2025-10-05", "Tarde"], ["2025-10-05", "Noche"]] coordinated 8890 10028 114 Se cayó y no apoya bien la patita derecha. 114 2025-10-05 03:00:00+00 13:30:00 \N \N \N +1041 2025-10-16 15:25:42.356006+00 2025-10-16 15:25:42.356015+00 f t [["2025-10-16", "morning"], ["2025-10-16", "afternoon"], ["2025-10-16", "evening"]] Confirmado 9792 10863 1208 tiene problemas en las patas traseras, debilidad, ahora grita de dolor y no puede caminar, ya estuvo en tratamiento: Con Prednisona 20 dos veces por día y tramadol un cuarto cada 12 hs 1208 2025-10-16 03:00:00+00 15:00:00 130165053746 1 \N +1037 2025-10-16 09:33:58.542725+00 2025-10-16 09:33:58.542734+00 f t [["2025-10-16", "Tarde"], ["2025-10-17", "Tarde"], ["2025-10-21", "Noche"]] rejected 9766 10838 1208 Vomitos frecuente 1208 2025-10-16 03:00:00+00 17:00:00 \N \N \N +998 2025-10-13 23:52:43.007112+00 2025-10-13 23:52:43.007122+00 f t [["2025-10-16", "afternoon"]] payed 9582 9430 114 Corte de Garras 114 2025-10-16 03:00:00+00 14:00:00 9e6563e1-72cf-4372-af6e-9a41fff496eb 104 \N +970 2025-10-12 19:32:40.873036+00 2025-10-12 19:32:40.873045+00 f t [["2025-10-12", "afternoon"]] vet_accepted 9458 10559 114 Dolor al orinar 114 2025-10-12 03:00:00+00 15:00:00 fca9fd86ed9143f2b46fc3f068e2fc96 92 \N +1047 2025-10-16 18:50:26.56813+00 2025-10-16 18:50:26.56814+00 f t [["2025-10-17", "morning"], ["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] Confirmado 9809 10880 1208 extraccion de sangre perfil 7 + PCR vif vilef 1208 2025-10-17 03:00:00+00 16:00:00 30255737017251016 96 \N +974 2025-10-12 20:17:01.16425+00 2025-10-12 20:17:01.164259+00 f t [["2025-10-12", "afternoon"]] Confirmado 9464 710 114 Inquieta, presenta dolor abdominal y diarrea 114 2025-10-12 03:00:00+00 13:00:00 61473890 78 \N +978 2025-10-12 21:37:32.055109+00 2025-10-12 21:37:32.055118+00 t t [["2025-10-12", "Noche"], ["2025-10-12", "Tarde"], ["2025-10-12", "Mañana"]] coordinated 9471 10567 1583 Intenta vomitar y no puede, jadea mucho. 1583 2025-10-13 03:00:00+00 11:00:00 \N \N \N +1014 2025-10-14 18:44:02.387029+00 2025-10-14 18:44:02.38704+00 f t [["2025-10-15", "afternoon"], ["2025-10-15", "evening"]] Confirmado 9639 10613 1583 Ecografia abdominal 1583 2025-10-15 03:00:00+00 18:00:00 63067747 90 \N +1050 2025-10-16 20:50:11.796858+00 2025-10-16 20:50:11.796866+00 f t [["2025-10-20", "morning"]] Confirmado 9817 10886 1583 Lo noto hace varios dias muy inquieto con maullidos muuuy frecuentes y mas sobre las hs de descanso, pide comida 1583 2025-10-20 03:00:00+00 10:00:00 L18MKX9R7JQ858119O6WYV 1 \N +982 2025-10-13 12:48:31.907355+00 2025-10-13 12:48:31.907369+00 f t [["2025-10-13", "afternoon"]] Confirmado 9508 9435 1583 Problema de la cadera, disponible todo el di 1583 2025-10-13 03:00:00+00 14:00:00 MP 114 \N +1006 2025-10-14 15:54:05.158745+00 2025-10-14 15:54:05.158754+00 f t [["2025-10-16", "morning"]] Confirmado 9621 10707 1583 Consulta general por castracion y extraccion de sangre 1583 2025-10-21 03:00:00+00 09:00:00 129903801246 68 \N +1010 2025-10-14 18:09:16.872839+00 2025-10-14 18:09:16.872851+00 f t [["2025-10-14", "Tarde"], ["2025-10-14", "Mañana"], ["2025-10-14", "Noche"]] Confirmado 9632 10716 1208 El perro esta con vomitos desde hace 3 dias. Lo que come no lo puede retener. Hace poca caca, de color oscura. Le cambiamos la dieta a pollo pero la cosa no mejora. 1208 2025-10-14 03:00:00+00 18:00:00 63064364 114 \N +1015 2025-10-14 20:13:38.337712+00 2025-10-14 20:13:38.337722+00 t t [["2025-10-16", "afternoon"]] coordinated 9642 8918 1583 Boxer, tiene como "pelones" sin pelo. No parece molesto pero no es normal. También tiene algo en la oreja por lo que siempre me indicaron unas gotas (punta orejas) y no logra sanar bien.toma regularmente apoquel 1583 2025-10-16 03:00:00+00 17:00:00 \N \N \N +951 2025-10-10 15:56:22.552144+00 2025-10-10 15:56:22.552153+00 f t [["2025-10-10", "afternoon"], ["2025-10-10", "evening"]] in_progress_pay 9323 10426 1583 Herida, posible absceso abierto 1583 2025-10-10 03:00:00+00 17:00:00 \N 94 \N +947 2025-10-10 13:00:15.116369+00 2025-10-10 13:00:15.116378+00 t t [["2025-10-10", "morning"]] coordinated 9299 10403 1583 Ecografia abdominal 1583 2025-10-10 03:00:00+00 14:00:00 \N \N \N +944 2025-10-10 00:46:40.15189+00 2025-10-10 00:46:40.151898+00 f t [["2025-10-10", "Mañana"], ["2025-10-11", "Tarde"], ["2025-10-09", "Tarde"]] in_progress_pay 9276 10381 1583 Tiene mucha tos que la hace agitar, le diagnosticaron bronquitis , tomo antibiótico, corticoide y paff y así y todo sigue igual 1583 2025-10-11 03:00:00+00 15:00:00 \N 70 \N +943 2025-10-09 23:55:06.884125+00 2025-10-09 23:55:06.884134+00 f t [["2025-10-09", "evening"]] Confirmado 9275 765 113 tiene mal la oreja y cómo no puede caminar, 113 2025-10-10 03:00:00+00 12:30:00 129341149848 88 \N +1023 2025-10-15 14:23:26.620557+00 2025-10-15 14:23:26.620568+00 t t [["2025-10-16", "morning"]] coordinated 9688 10765 1583 Extraccion coagulograma 1583 2025-10-16 03:00:00+00 09:00:00 \N \N \N +1027 2025-10-15 16:42:36.714855+00 2025-10-15 16:42:36.714865+00 t t [["2025-10-20", "afternoon"]] coordinated 9705 6176 1583 Alergias, disponible la semana del 20/10 despues dde las 14hs, 1583 2025-10-20 03:00:00+00 14:00:00 \N \N \N +959 2025-10-10 23:37:26.962035+00 2025-10-10 23:37:26.962043+00 f t [["2025-10-10", "afternoon"]] Confirmado 9359 10460 114 Ecografía Abdominal 114 2025-10-10 03:00:00+00 16:00:00 39183572304 90 \N +945 2025-10-10 12:23:10.580762+00 2025-10-10 12:23:10.580773+00 f t [["2025-10-10", "afternoon"], ["2025-10-10", "morning"]] Confirmado 9295 73 1583 Vomitos de hace 3 dias 1583 2025-10-10 03:00:00+00 14:00:00 Brubaank 114 \N +995 2025-10-13 16:47:03.184452+00 2025-10-13 16:47:03.184465+00 f t [["2025-10-13", "afternoon"]] vet_accepted 9548 8378 1583 Control \N 2025-10-13 03:00:00+00 18:00:00 foto 68 \N +991 2025-10-13 15:19:58.122776+00 2025-10-13 15:19:58.122789+00 t t [["2025-10-14", "afternoon"]] in_progress_pay 9539 10631 1583 Consulta por perdinda de peso y bulto de hace 1 semana 1583 2025-10-14 03:00:00+00 15:00:00 \N 113 \N +963 2025-10-11 00:58:26.630441+00 2025-10-11 00:58:26.63045+00 f t [["2025-10-11", "Mañana"], ["2025-10-12", "Mañana"], ["2025-10-11", "Tarde"]] rejected 9365 10467 1208 No puede levantarse y está muy tirada.casi no come.tiene mucha artrosis. Tose cuando bebe agua 1208 2025-10-11 03:00:00+00 11:00:00 \N \N \N +1031 2025-10-15 18:45:40.522585+00 2025-10-15 18:45:40.522596+00 f t [["2025-10-20", "morning"], ["2025-10-20", "afternoon"], ["2025-10-20", "evening"]] Confirmado 9718 10793 1208 vacunacion anual 1208 2025-10-21 03:00:00+00 11:00:00 46YGOW9M8K5R463Y9EXD8J 21 \N +948 2025-10-10 13:00:40.314596+00 2025-10-10 13:00:40.314605+00 t t [["2025-10-10", "Noche"], ["2025-10-11", "Tarde"], ["2025-10-11", "Mañana"]] coordinated 9296 10400 1583 Tiene unos granos en la cruz y cuello\nCaída de pelo y está decaido \nHace unos 10 días le pusimos antiparasitario nex gard combo 1583 2025-10-10 03:00:00+00 18:00:00 \N \N \N +967 2025-10-12 12:44:58.068772+00 2025-10-12 12:44:58.06878+00 f t [["2025-10-12", "Mañana"], ["2025-10-12", "Tarde"], ["2025-10-12", "Noche"]] Confirmado 9433 10534 114 El perro no puede mover sus patas traseras, hasta ayer estaba bien 114 2025-10-12 03:00:00+00 12:00:00 129061301847 78 \N +949 2025-10-10 13:29:23.818782+00 2025-10-10 13:29:23.81879+00 t t [["2025-10-10", "afternoon"], ["2025-10-10", "evening"]] coordinated 9311 10414 1583 Ecografia abdominal 1583 2025-10-10 03:00:00+00 16:00:00 \N \N \N +999 2025-10-14 00:05:18.465086+00 2025-10-14 00:05:18.465095+00 f t [["2025-10-14", "evening"]] Confirmado 9584 10671 114 ecografía abdominal 114 2025-10-13 03:00:00+00 20:30:00 30921609009251013 90 \N +1038 2025-10-16 13:08:22.381994+00 2025-10-16 13:08:22.382002+00 f t [["2025-10-17", "morning"], ["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] Confirmado 9781 10853 1208 medicion de presion y chequeo 1208 2025-10-17 03:00:00+00 12:00:00 67REZ8NPW6GE1R8194KVGO 1 \N +979 2025-10-13 04:46:20.308247+00 2025-10-13 04:46:20.308259+00 f t [["2025-10-13", "Mañana"], ["2025-10-14", "Mañana"], ["2025-10-15", "Mañana"]] coordinated 9491 10587 1583 Tiene temblores, vomito amarillo con espuma, sangrado y a veces sangrado marrón, ojo con derrame, orejas y hocico fríos. 1583 2025-10-13 03:00:00+00 12:00:00 \N \N \N +946 2025-10-10 12:50:33.615183+00 2025-10-10 12:50:33.615191+00 f t [["2025-10-10", "afternoon"], ["2025-10-10", "evening"]] Confirmado 9297 10401 1583 linfoma avanzado 1583 2025-10-10 03:00:00+00 14:00:00 129394665788 1 \N +971 2025-10-12 19:54:26.724978+00 2025-10-12 19:54:26.724986+00 f t [["2025-10-12", "afternoon"]] Confirmado 9459 10560 114 Revisión de vulto y lastimadura en la cola 114 2025-10-12 03:00:00+00 14:00:00 129658267050 92 \N +975 2025-10-12 20:24:09.004525+00 2025-10-12 20:24:09.004533+00 f t [["2025-10-12", "evening"], ["2025-10-12", "afternoon"]] Confirmado 9466 10564 114 Miasis 114 2025-10-12 03:00:00+00 17:30:00 129078756353 92 \N +1011 2025-10-14 18:26:50.131035+00 2025-10-14 18:26:50.131043+00 f t [["2025-10-15", "evening"]] Confirmado 9635 9861 1583 Control post estudios 1583 2025-10-15 03:00:00+00 20:30:00 3D5W612EJZ4Q656L9GXYVR 113 \N +950 2025-10-10 14:49:46.733891+00 2025-10-10 14:49:46.7339+00 f t [["2025-10-10", "afternoon"], ["2025-10-10", "evening"]] Confirmado 9317 10420 1583 Consulta clinica, artrosis, se cayo y se le inflamo la pata. 1583 2025-10-10 03:00:00+00 16:00:00 MP 70 \N +1003 2025-10-14 14:25:31.370989+00 2025-10-14 14:25:31.370997+00 f t [["2025-10-17", "morning"], ["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] Confirmado 9612 10698 1208 extraccion de sangre prequirurgico 1208 2025-10-17 03:00:00+00 15:00:00 PDX4OGNY1P7O3KMV20L6EY 82 \N +1007 2025-10-14 16:43:43.462225+00 2025-10-14 16:43:43.462234+00 f t [["2025-10-14", "morning"], ["2025-10-14", "afternoon"], ["2025-10-14", "evening"]] Confirmado 9624 10709 1208 \N 1208 2025-10-16 03:00:00+00 13:00:00 129264583165 114 \N +983 2025-10-13 13:10:15.406551+00 2025-10-13 13:10:15.40656+00 f t [["2025-10-16", "morning"]] Confirmado 9509 4987 1583 Consulta post estudios 1583 2025-10-16 03:00:00+00 09:00:00 67REZ8NPW658RX4494KVGO 100 \N +1044 2025-10-16 16:31:02.714284+00 2025-10-16 16:31:02.714299+00 f t [["2025-10-16", "morning"], ["2025-10-16", "afternoon"], ["2025-10-16", "evening"]] Confirmado 9798 10870 1208 ayer la vacunaron con tercera dosis y estaba muy decaída por la noche, temblando. La llevo a la clinica, esta un poco mejor pero sigue algo decaida 1208 2025-10-16 03:00:00+00 15:00:00 130172464350 88 \N +1019 2025-10-15 11:07:33.812853+00 2025-10-15 11:07:33.812863+00 f t [["2025-10-16", "Mañana"], ["2025-10-16", "Tarde"], ["2025-10-16", "Noche"]] rejected 9679 10758 1208 Necesito prequirurgico para limpieza de dientes. Es sangre y electro. 1208 \N \N \N \N \N +1053 2025-10-16 21:52:13.124699+00 2025-10-16 21:52:13.124711+00 f t [["2025-10-18", "morning"]] Confirmado 9823 619 1583 Vomitos recurrentes 1583 2025-10-18 03:00:00+00 09:00:00 130281259738 80 \N +1120 2025-10-20 18:04:57.915235+00 2025-10-20 18:04:57.915243+00 t t [["2025-10-27", "morning"]] coordinated 10126 11123 1583 Alergia de hace un par de semanas en las 4 patas, Disponible hoy todo el dia, sino hasta las 15hs cualquier dia 1583 2025-10-21 03:00:00+00 10:00:00 \N \N \N +1065 2025-10-17 13:51:18.105145+00 2025-10-17 13:51:18.105155+00 f t [["2025-10-17", "afternoon"], ["2025-10-17", "evening"], ["2025-10-17", "morning"]] Confirmado 9892 10613 1583 Dolor, tiene ecografia hecha 1583 2025-10-17 03:00:00+00 12:00:00 0 21 \N +1060 2025-10-17 13:27:30.361459+00 2025-10-17 13:27:30.361472+00 t t [["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] in_progress_pay 9883 710 1583 No quiere comer, desde ayer que está caída, camina muy lento o le cuesta caminar y creemos que tiene fiebre 1583 2025-10-17 03:00:00+00 15:00:00 \N 88 \N +1051 2025-10-16 21:19:24.457942+00 2025-10-16 21:19:24.45795+00 f t [["2025-10-19", "afternoon"]] Confirmado 9819 2211 1583 La gata eta flaca 1583 2025-10-19 03:00:00+00 10:00:00 30-71742069-8. 80 \N +1064 2025-10-17 13:45:08.749884+00 2025-10-17 13:45:08.749896+00 f t [["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] Confirmado 9891 10953 1583 Vacuna sextuple 1583 2025-10-17 03:00:00+00 16:00:00 130291705286 68 \N +1056 2025-10-17 00:11:55.360244+00 2025-10-17 00:11:55.360252+00 f t [["2025-10-17", "evening"]] Confirmado 9846 10911 113 Vomitos a repeticion, paciente con temperamento- teleconsulta \N 2025-10-16 03:00:00+00 21:30:00 30-71742069-8. 80 \N +1067 2025-10-17 15:37:54.974776+00 2025-10-17 15:37:54.974786+00 f t [["2025-10-21", "morning"], ["2025-10-21", "afternoon"]] Confirmado 9896 10957 1583 Rayos 1583 2025-10-21 03:00:00+00 14:00:00 Modo 84 \N +1057 2025-10-17 02:16:23.074146+00 2025-10-17 02:16:23.074155+00 f t [["2025-10-18", "afternoon"]] vet_accepted 9859 10911 113 Revision por vomitos repetitivos 113 2025-10-17 03:00:00+00 16:30:00 129660019413 80 \N +1070 2025-10-17 16:29:03.604942+00 2025-10-17 16:29:03.604949+00 f t [["2025-10-17", "Mañana"], ["2025-10-17", "Tarde"], ["2025-10-17", "Noche"]] Confirmado 9903 10963 1583 Es una Golden viejita, está caída y no está comiendo 1583 2025-10-17 03:00:00+00 18:00:00 ORD6LEN87YXZPZ0Y2M1Y30 1 \N +1059 2025-10-17 12:37:47.149753+00 2025-10-17 12:37:47.149762+00 f t [["2025-10-18", "morning"]] Confirmado 9887 10951 1583 Vacuna coronavirus por viaje 1583 2025-10-18 03:00:00+00 10:00:00 46YGOW9M8K4GEJJQ9EXD8J 113 \N +1054 2025-10-16 22:24:43.748775+00 2025-10-16 22:24:43.748788+00 f t [["2025-10-16", "evening"]] Confirmado 9830 10895 113 Alergia, se queda con la boca abierta, estornuda mucho 113 2025-10-17 03:00:00+00 13:30:00 XJ8G7V95EW5EZOMRZEMPYR 68 \N +1058 2025-10-17 03:41:06.729043+00 2025-10-17 03:41:06.729052+00 f t [["2025-10-22", "Noche"], ["2025-10-22", "Tarde"], ["2025-10-22", "Mañana"]] Confirmado 9869 10933 1583 segunda dosis de sextuple. disponible el 22/10 todo el dia 1583 2025-10-22 03:00:00+00 12:30:00 130280193618 1 \N +1072 2025-10-17 18:41:15.233649+00 2025-10-17 18:41:15.233657+00 t t [["2025-10-17", "evening"], ["2025-10-17", "afternoon"]] coordinated 9916 10976 1583 Bebe rescatado de la calle, 1 mes 1583 2025-10-17 03:00:00+00 19:00:00 \N \N \N +1069 2025-10-17 16:13:08.743193+00 2025-10-17 16:13:08.743201+00 t t [["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] coordinated 9900 10960 1583 Paciente con historial clinico, esta en tratamiento,, se solicitaa revision del animal, revision de los estudios y seguimiento del caso, problema renal, Disponible en cualquier momento 1583 2025-10-17 03:00:00+00 18:00:00 \N \N \N +1063 2025-10-17 13:45:03.394338+00 2025-10-17 13:45:03.394353+00 t t [["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] pending 9890 10953 \N \N \N \N \N \N \N \N +1062 2025-10-17 13:45:03.145979+00 2025-10-17 13:45:03.145994+00 t t [["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] pending 9890 10953 \N \N \N \N \N \N \N \N +1061 2025-10-17 13:45:02.327699+00 2025-10-17 13:45:02.32771+00 t t [["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] pending 9889 10953 \N \N \N \N \N \N \N \N +1073 2025-10-17 19:48:27.357766+00 2025-10-17 19:48:27.357774+00 f t [["2025-10-24", "morning"], ["2025-10-24", "afternoon"], ["2025-10-24", "evening"]] Confirmado 9921 266 1208 control post cx y extraccion de puntos 1208 2025-10-24 03:00:00+00 08:00:00 0 68 \N +1071 2025-10-17 17:47:03.749802+00 2025-10-17 17:47:03.749811+00 f t [["2025-10-20", "Tarde"], ["2025-10-21", "Tarde"], ["2025-10-23", "Tarde"]] rejected 9909 10969 1583 Bosque Noki test Vilef (se puede vacunar?), convive co un positivo. Bosque vilef positivo, consulta por estornudos\n2025-10-20 - Tarde\n2025-10-21 - Tarde\n2025-10-23 - Tarde 1583 2025-10-20 03:00:00+00 14:00:00 \N 1 \N +1074 2025-10-17 20:08:32.723202+00 2025-10-17 20:08:32.72321+00 f t [["2025-10-18", "morning"], ["2025-10-18", "afternoon"], ["2025-10-18", "evening"]] Confirmado 9924 9310 1208 extraccion de sangre perfil 7 + orina completa 1208 2025-10-18 03:00:00+00 09:00:00 129764579787 85 \N +1077 2025-10-17 21:46:53.096466+00 2025-10-17 21:46:53.096473+00 f t [["2025-10-18", "morning"], ["2025-10-18", "afternoon"], ["2025-10-18", "evening"]] Confirmado 9931 9310 1208 extraccion de sangre perfil 7 + orina 1208 2025-10-18 03:00:00+00 10:00:00 129764579787 100 \N +1078 2025-10-17 22:17:01.374592+00 2025-10-17 22:17:01.374606+00 f t [["2025-10-18", "morning"], ["2025-10-18", "afternoon"], ["2025-10-18", "evening"]] Confirmado 9934 10963 1208 perfil 7 1208 2025-10-18 03:00:00+00 08:00:00 R7ZG0QNDJ1DX58PDNEXYPO 100 \N +1079 2025-10-17 22:23:27.859338+00 2025-10-17 22:23:27.85935+00 f t [["2025-10-17", "morning"], ["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] Confirmado 9935 10963 1208 ecografia abdominal de urgencia 1208 2025-10-17 03:00:00+00 21:00:00 Z0KV87948E311GMQ2PEYDX 90 \N +1075 2025-10-17 21:05:04.67051+00 2025-10-17 21:05:04.670522+00 f t [["2025-10-17", "morning"], ["2025-10-17", "afternoon"], ["2025-10-17", "evening"]] Confirmado 9927 10901 1208 Hoy le hicieron una eco y lo está para nada bien , quiero que sus últimos momentos sean de paz tranquilidad amor y que no sufra . Que tenga el menor dolor 1208 2025-10-17 03:00:00+00 20:30:00 129777379659 113 \N +1081 2025-10-18 00:12:35.010172+00 2025-10-18 00:12:35.010202+00 f t [["2025-10-19", "morning"], ["2025-10-19", "afternoon"], ["2025-10-19", "evening"]] Confirmado 9946 4255 1208 inyectable artrosan 1208 2025-10-18 03:00:00+00 13:00:00 R7ZG0QNDJ1DDPXDENEXYPO 88 \N +1083 2025-10-18 01:36:20.854201+00 2025-10-18 01:36:20.85421+00 f t [["2025-10-20", "Mañana"], ["2025-10-20", "Mañana"], ["2025-10-23", "Mañana"]] rejected 9956 11008 1208 Chequeo general 1208 2025-10-20 03:00:00+00 10:00:00 \N 88 \N +1080 2025-10-17 23:45:27.969967+00 2025-10-17 23:45:27.969978+00 f t [["2025-10-22", "Tarde"], ["2025-10-22", "Tarde"], ["2025-10-22", "Noche"]] Confirmado 9940 10993 1208 Vacuna desactualizada 1208 2025-10-22 03:00:00+00 16:00:00 10137053017251018 94 \N +1084 2025-10-18 01:48:53.427631+00 2025-10-18 01:48:53.427645+00 f t [["2025-10-17", "Noche"], ["2025-10-19", "Noche"], ["2025-10-20", "Noche"]] rejected 9957 11009 1208 Quiero saber si hacen castracion 1208 \N \N \N \N \N +1082 2025-10-18 01:31:14.564539+00 2025-10-18 01:31:14.56455+00 f t [["2025-10-20", "Mañana"], ["2025-10-21", "Mañana"], ["2025-10-22", "Mañana"]] rejected 9955 11007 1208 Análisis de sangre 1208 \N \N \N \N \N +1116 2025-10-20 15:15:52.636202+00 2025-10-20 15:15:52.63621+00 t t [["2025-10-20", "afternoon"]] pending 10109 11155 \N \N \N \N \N \N \N \N +1103 2025-10-19 21:56:28.313634+00 2025-10-19 21:56:28.313645+00 t t [["2025-10-19", "Noche"], ["2025-10-19", "Mañana"], ["2025-10-19", "Tarde"]] coordinated 10045 11093 1583 Material fecal líquida, negra, mucha cantidad , decaimiento, vómito 1583 2025-10-20 03:00:00+00 12:00:00 \N \N \N +1104 2025-10-20 03:56:13.651205+00 2025-10-20 03:56:13.651217+00 t t [["2025-10-20", "Mañana"], ["2025-10-20", "Mañana"], ["2025-10-20", "Tarde"]] coordinated 10067 11115 1583 Sr trago un hueso 1583 2025-10-20 03:00:00+00 11:00:00 \N \N \N +1105 2025-10-20 11:09:53.995501+00 2025-10-20 11:09:53.995511+00 t t [["2025-10-27", "Mañana"], ["2025-10-28", "Mañana"], ["2025-10-29", "Tarde"]] in_progress_vet 10075 11123 1583 Imitación en las patas traseras y molestias en las mismas 1583 \N \N \N \N \N +1217 2025-10-26 18:50:27.474311+00 2025-10-26 18:50:27.474321+00 f t [["2025-10-26", "afternoon"]] Confirmado 10559 11575 114 Vomitos con un poco de sangre 114 2025-10-26 03:00:00+00 14:00:00 130781723253 94 \N +1086 2025-10-18 13:12:23.802132+00 2025-10-18 13:12:23.802142+00 f t [["2025-10-18", "morning"], ["2025-10-18", "afternoon"], ["2025-10-18", "evening"]] rejected 9972 11024 1208 se le cayo un colmillo, Lo vio un veterinario este mes, porque tenía un aliento muy fuerte, y me dijo que estaba ok. \nSe puede asustar o estresar y se pone a la defensiva, hacer receta previa para gabapentina 1208 2025-10-19 03:00:00+00 10:00:00 \N 88 \N +1088 2025-10-18 15:41:48.013572+00 2025-10-18 15:41:48.013581+00 f t [["2025-10-18", "Noche"], ["2025-10-18", "Tarde"], ["2025-10-19", "Mañana"]] Confirmado 9977 11029 1208 Artrosis , muy dolorida , no come 17 años 1208 2025-10-18 03:00:00+00 14:30:00 129850171143 88 \N +1089 2025-10-18 16:16:37.797755+00 2025-10-18 16:16:37.797763+00 f t [["2025-10-18", "morning"], ["2025-10-18", "afternoon"], ["2025-10-18", "evening"]] Confirmado 9982 5189 1208 posibles estornudos inversos 1208 2025-10-18 03:00:00+00 19:00:00 66095556 68 \N +1085 2025-10-18 10:52:02.798815+00 2025-10-18 10:52:02.799182+00 f t [["2025-10-18", "Mañana"], ["2025-10-18", "Tarde"], ["2025-10-18", "Mañana"]] rejected 9966 11018 1208 Desde anoche no camina bien volvió del baño y se tiro en la cama para no volver a levantarse hoy a la mañana llegue del trabajo 7 am lo lleve en brazos hasta la calle para que haga sus necesidades las cuales hizo bien pero orino menos de lo normal y al caminar un poco lo hacía con dificultad 1208 2025-10-18 03:00:00+00 12:00:00 \N \N \N +1092 2025-10-18 17:26:46.621912+00 2025-10-18 17:26:46.621921+00 f t [["2025-10-18", "morning"], ["2025-10-18", "afternoon"], ["2025-10-18", "evening"]] Confirmado 9988 11038 1208 ecografia abbdominal de urgencia 1208 2025-10-18 03:00:00+00 20:00:00 129860113707 90 \N +1094 2025-10-18 21:25:53.814011+00 2025-10-18 21:25:53.81402+00 f t [["2025-10-18", "Noche"], ["2025-10-18", "Mañana"], ["2025-10-18", "Tarde"]] rejected 10004 11054 114 Hace dos dias le puse pipeta frontline y ahora en esa zona se rasco y arranco el pelo 114 2025-10-19 03:00:00+00 12:00:00 \N \N \N +1091 2025-10-18 17:16:15.23003+00 2025-10-18 17:16:15.230043+00 f t [["2025-10-20", "Noche"], ["2025-10-21", "Noche"], ["2025-10-23", "Tarde"]] vet_asked 9985 11035 1208 Hola! Quisiera agendar un chequeo general de salud y poner al día la vacunación anual de mi perro. 1208 2025-10-20 03:00:00+00 20:30:00 39291549533 99 \N +1087 2025-10-18 14:48:51.374376+00 2025-10-18 14:48:51.374387+00 f t [["2025-10-20", "Noche"], ["2025-10-21", "Noche"], ["2025-10-22", "Noche"]] rejected 9975 11027 1208 Tiene las muelas de arriba de ambos lados muy podridas, y problemas en la columna lumbar. \nPitbull, recetar gabap, no es malo pero si nervioso 1208 2025-10-20 03:00:00+00 20:00:00 \N 91 \N +1090 2025-10-18 16:36:28.126793+00 2025-10-18 16:36:28.126802+00 f t [["2025-10-16", "morning"], ["2025-10-16", "afternoon"], ["2025-10-16", "evening"]] Confirmado 9984 10863 1208 inseparables 1208 2025-10-16 03:00:00+00 16:00:00 129824594295 95 \N +1093 2025-10-18 18:33:22.644315+00 2025-10-18 18:33:22.644324+00 f t [["2025-10-18", "Mañana"], ["2025-10-18", "Tarde"], ["2025-10-18", "Noche"]] rejected 9993 11043 1208 La perra está con dolores fuertes por un tumor cerca de la vejiga y otros órganos.\nEl oncólogo nos recomendó darle un analgésico porque recién la va a ver el martes y no hace urgencias. 1208 2025-10-18 03:00:00+00 19:00:00 \N \N \N +1095 2025-10-19 14:13:00.296847+00 2025-10-19 14:13:00.296856+00 f t [["2025-10-20", "evening"]] Confirmado 10014 10895 114 Estornudos, mocos y Lagrimeos 114 2025-10-20 03:00:00+00 20:30:00 76V4MRZZ7LLQ657Q8NDEZOL 68 \N +1096 2025-10-19 14:19:04.375699+00 2025-10-19 14:19:04.375712+00 f t [["2025-10-19", "afternoon"]] Confirmado 10011 10927 114 Diarrea con sangre 114 2025-10-19 03:00:00+00 14:00:00 130526141910 1 \N +1097 2025-10-19 14:47:36.386878+00 2025-10-19 14:47:36.38689+00 f t [["2025-10-19", "Mañana"], ["2025-10-19", "Tarde"], ["2025-10-19", "Noche"]] rejected 10027 11077 114 Tiene las patas hinchadas y se queja de dolor 114 2025-10-19 03:00:00+00 15:00:00 \N 114 \N +1098 2025-10-19 14:59:29.163063+00 2025-10-19 14:59:29.163073+00 f t [["2025-10-19", "Mañana"], ["2025-10-19", "Tarde"], ["2025-10-19", "Noche"]] rejected 10028 11078 114 Vómitos y decaimiento 114 2025-10-19 03:00:00+00 13:00:00 \N \N \N +1099 2025-10-19 15:50:47.834712+00 2025-10-19 15:50:47.834724+00 f t [["2025-10-19", "Tarde"], ["2025-10-19", "Mañana"], ["2025-10-19", "Noche"]] coordinated 10031 11081 114 Picazon o dolor en pata derecha trasera ( almohadón) 114 2025-10-19 03:00:00+00 14:30:00 129965369415 88 \N +1100 2025-10-19 17:24:11.424097+00 2025-10-19 17:24:11.424106+00 f t [["2025-11-03", "evening"]] Confirmado 10035 7501 114 Desparacitasión interna y externa + Certificado de Salud 114 2025-11-03 03:00:00+00 18:30:00 0000000000000 70 \N +1102 2025-10-19 19:47:40.599646+00 2025-10-19 19:47:40.599658+00 f t [["2025-10-21", "afternoon"]] Confirmado 10041 11081 114 Revisión de la pata trasera 114 2025-10-21 03:00:00+00 17:30:00 130555914342 88 \N +1101 2025-10-19 18:36:04.374356+00 2025-10-19 18:36:04.374375+00 t t [["2025-10-19", "Noche"], ["2025-10-20", "Mañana"], ["2025-10-20", "Tarde"]] coordinated 10037 11086 114 Se peleó con mí otro perro y tiene algunas heridas no tan grandes, pero está dolorido 114 2025-10-20 03:00:00+00 10:30:00 \N \N \N +1106 2025-10-20 11:31:48.039448+00 2025-10-20 11:31:48.039457+00 t t [["2025-10-20", "Tarde"], ["2025-10-20", "Noche"], ["2025-10-21", "Mañana"]] coordinated 10077 11125 1583 Hola, quiero averiguar por el servicio de Ecografía en el día, tengo la orden de su veterinario.\nGatita de casi 2 años con VILEF+, vomitó varias veces a las 5 de la mañana, vomitó plástico que había tragado y el Dr. quiere ver si expulsó todo y si no quedó en su sistema digestivo. 1583 2025-10-20 03:00:00+00 16:00:00 \N \N \N +1110 2025-10-20 13:13:36.589787+00 2025-10-20 13:13:36.589796+00 f t [["2025-10-21", "afternoon"]] Confirmado 10087 11134 1583 Vacunacion anual y corte de garras de ambos gatitos 1583 2025-10-21 03:00:00+00 17:30:00 39306430758 88 \N +1107 2025-10-20 12:25:06.802159+00 2025-10-20 12:25:06.802168+00 t t [["2025-10-20", "morning"], ["2025-10-20", "afternoon"]] in_progress_pay 10084 11132 1583 consulta clinica 1583 2025-10-20 03:00:00+00 15:00:00 \N 114 \N +1108 2025-10-20 12:40:20.568557+00 2025-10-20 12:40:20.568567+00 t t [["2025-10-20", "Mañana"], ["2025-10-20", "Tarde"], ["2025-10-20", "Noche"]] coordinated 10082 11130 1583 Le habían salido unos hongos (o eso parecía) le hice tratamiento con la crema dermomax.. se le secó y se hicieron cascaritas, se las estuvo quitando y ahora tiene lastimado en la zona del lomo 1583 2025-10-20 03:00:00+00 17:00:00 \N \N \N +1263 2025-10-28 20:21:41.896124+00 2025-10-28 20:21:41.896133+00 f t [["2025-11-07", "morning"], ["2025-11-07", "afternoon"], ["2025-11-07", "evening"]] Confirmado 10769 11720 1208 \N 1208 2025-11-08 03:00:00+00 10:30:00 JMQKYZ9QQW338EYP9V50P3 100 \N +1109 2025-10-20 12:57:48.207886+00 2025-10-20 12:57:48.207898+00 f t [["2025-10-20", "evening"]] Confirmado 10086 439 1583 Tiene mal la patita derecha, hace un par de semanas, disponible cualquier dia despues de las 18h 1583 2025-10-20 03:00:00+00 19:30:00 Z6OLMDN3VMX6JO562E7RQ5 70 \N +1117 2025-10-20 15:15:53.419099+00 2025-10-20 15:15:53.419108+00 t t [["2025-10-20", "afternoon"]] in_progress_pay 10110 11155 1583 Consulta clinica, entre 14 y 16hs disponible 1583 2025-10-20 03:00:00+00 14:00:00 \N 21 \N +1111 2025-10-20 13:29:19.423847+00 2025-10-20 13:29:19.423858+00 f t [["2025-10-20", "Tarde"], ["2025-10-20", "Noche"], ["2025-10-21", "Mañana"]] Confirmado 10093 11140 1583 Ecocardiograma 1583 2025-10-21 03:00:00+00 17:30:00 RD06ZO9WV81WMO01N5GP7X 82 \N +1181 2025-10-23 21:17:38.01378+00 2025-10-23 21:17:38.013787+00 t t [["2025-10-27", "morning"]] in_progress_pay 10378 10793 1583 Extraccion para prequirurgico 1583 2025-10-25 03:00:00+00 09:00:00 \N 112 \N +1112 2025-10-20 13:30:09.798173+00 2025-10-20 13:30:09.798181+00 t t [["2025-10-20", "Tarde"], ["2025-10-20", "Noche"], ["2025-10-21", "Mañana"]] coordinated 10091 11138 1583 No orina. Se lame los genitales y llora 1583 2025-10-20 03:00:00+00 15:00:00 \N \N \N +1114 2025-10-20 14:30:45.675789+00 2025-10-20 14:30:45.675798+00 f t [["2025-10-20", "afternoon"], ["2025-10-20", "evening"]] vet_accepted 10105 11152 1583 Ecografia abdominal por vomitos 1583 2025-10-20 03:00:00+00 16:00:00 39307782187 90 \N +1115 2025-10-20 15:05:11.619258+00 2025-10-20 15:05:11.619267+00 f t [["2025-10-21", "morning"]] Confirmado 10108 11152 1583 Extraccion para perfil completo 1583 2025-10-21 03:00:00+00 09:00:00 39309164656 112 \N +1121 2025-10-20 18:40:42.313265+00 2025-10-20 18:40:42.313274+00 f t [["2025-10-21", "morning"]] Confirmado 10129 11172 114 Gata con perdida de pelaje, presenta comezón e irritabilidad 114 2025-10-21 03:00:00+00 11:00:00 130555914342 114 \N +1124 2025-10-20 19:43:17.993773+00 2025-10-20 19:43:17.993781+00 f t [["2025-10-20", "afternoon"], ["2025-10-20", "evening"]] Confirmado 10138 11180 1583 Consulta general, en lo posible hoy 1583 2025-10-20 03:00:00+00 17:30:00 LOEJWV9JZYZYLP082QMD0G 88 \N +1113 2025-10-20 13:31:40.182009+00 2025-10-20 13:31:40.182018+00 f t [["2025-10-21", "Mañana"], ["2025-10-21", "Tarde"], ["2025-10-22", "Mañana"]] Confirmado 10089 11136 1583 Consulta por granos para valentina, y saber si esta castrado o no Figaro 1583 2025-10-21 03:00:00+00 11:00:00 17881031 94 \N +1118 2025-10-20 15:46:50.069678+00 2025-10-20 15:46:50.069691+00 f t [["2025-10-21", "morning"]] Confirmado 10115 11152 1583 Perfil completo \N 2025-10-21 03:00:00+00 10:00:00 0 100 \N +1125 2025-10-20 20:18:36.641135+00 2025-10-20 20:18:36.641147+00 f t [["2025-10-20", "evening"], ["2025-10-20", "afternoon"]] Confirmado 10140 10203 1583 Consulta sobre procedimientos 1583 2025-10-20 03:00:00+00 17:30:00 0 115 \N +1123 2025-10-20 19:40:13.028883+00 2025-10-20 19:40:13.028893+00 f t [["2025-10-24", "afternoon"]] Confirmado 10137 11179 114 Ecografía de Ojos 114 2025-10-24 03:00:00+00 17:30:00 00000000 90 \N +1127 2025-10-20 23:17:28.516778+00 2025-10-20 23:17:28.516788+00 f t [["2025-10-24", "morning"]] Confirmado 10154 11194 114 Chequeo Clínico 114 2025-10-24 03:00:00+00 09:00:00 130677657082 80 \N +1126 2025-10-20 23:17:15.786334+00 2025-10-20 23:17:15.786346+00 f t [["2025-10-20", "Mañana"], ["2025-10-20", "Tarde"], ["2025-10-20", "Noche"]] coordinated 10152 11193 114 Ha vomitado en el día 4 veces ahora volvió a vomitar y el vomito era rosado con trazos de sangre no ha comido en todo el día 114 2025-10-21 03:00:00+00 10:00:00 \N \N \N +1130 2025-10-21 11:35:23.596018+00 2025-10-21 11:35:23.596027+00 f t [["2025-10-21", "Mañana"], ["2025-10-21", "Tarde"], ["2025-10-21", "Noche"]] rejected 10172 11213 1208 Vomitos persistentes desde las 20 hrs de ayer hasta ahora, no quiere agua 1208 2025-10-21 03:00:00+00 11:00:00 \N \N \N +1128 2025-10-21 00:14:40.647335+00 2025-10-21 00:14:40.647343+00 f t [["2025-10-22", "afternoon"]] Confirmado 10157 11198 114 Consulta endocrinologa 114 2025-10-21 03:00:00+00 15:30:00 D4RO172VZ8Z6MQ6RNKJ3QE 98 \N +1131 2025-10-21 11:54:23.575386+00 2025-10-21 11:54:23.575396+00 f t [["2025-10-21", "Mañana"], ["2025-10-21", "Tarde"], ["2025-10-21", "Noche"]] rejected 10174 11215 1208 Se siente mal y está vomitando, no come ni toma agua desde ayer y está muy decaída 1208 \N \N \N \N \N +1133 2025-10-21 14:30:12.338603+00 2025-10-21 14:30:12.338615+00 f t [["2025-10-22", "morning"], ["2025-10-22", "afternoon"], ["2025-10-22", "evening"]] Confirmado 10188 10764 1208 extraccion de sangre perfil 7 1208 2025-10-22 03:00:00+00 10:00:00 39322371633 112 \N +1135 2025-10-21 14:43:48.866023+00 2025-10-21 14:43:48.866032+00 f t [["2025-10-22", "morning"], ["2025-10-22", "afternoon"], ["2025-10-22", "evening"]] Confirmado 10192 10764 1208 perfil 7 1208 2025-10-22 03:00:00+00 11:00:00 39322371633 100 \N +1132 2025-10-21 13:10:40.498802+00 2025-10-21 13:10:40.498811+00 f t [["2025-10-21", "Mañana"], ["2025-10-21", "Tarde"], ["2025-10-22", "Mañana"]] Confirmado 10180 11221 1208 En un mes mi gato desarrollo un nivel 4 de insuficiencia renal. Tengo estudios de sangre y orina al día y esta con tratamiento de ringer lactato y medicación 1208 2025-10-21 03:00:00+00 19:00:00 39322752195 115 \N +1136 2025-10-21 14:55:09.834713+00 2025-10-21 14:55:09.834726+00 f t [["2025-10-21", "Mañana"], ["2025-10-21", "Tarde"], ["2025-10-21", "Tarde"]] rejected 10193 11232 1583 Roko esta perfecto 1583 \N \N \N \N \N +1137 2025-10-21 15:22:40.935425+00 2025-10-21 15:22:40.935432+00 f t [["2025-10-24", "afternoon"]] Confirmado 10194 11234 1583 No puede mover las patas de atras 1583 2025-10-24 03:00:00+00 18:00:00 130178495685 99 \N +1134 2025-10-21 14:40:14.309213+00 2025-10-21 14:40:14.309226+00 f t [["2025-10-23", "morning"]] Confirmado 10190 11230 1583 Extraccion para hemograma completo 1583 2025-10-23 03:00:00+00 08:00:00 130758786470 104 \N +1138 2025-10-21 15:33:46.493393+00 2025-10-21 15:33:46.493401+00 f t [["2025-10-23", "morning"]] Confirmado 10196 11230 1583 No se especificó motivo de consulta. se solicitó: ... 1583 2025-10-23 03:00:00+00 10:00:00 0 100 \N +1140 2025-10-21 16:36:20.385091+00 2025-10-21 16:36:20.3851+00 f t [["2025-10-21", "Tarde"], ["2025-10-21", "Tarde"], ["2025-10-22", "Tarde"]] payed 10159 8577 1208 Vacunacion 1208 2025-10-22 03:00:00+00 20:00:00 39326868812 80 \N +402 2025-08-15 13:34:50.798471+00 2025-08-15 13:34:50.798486+00 f t [["2025-08-16", "Mañana"], ["2025-08-16", "Tarde"], ["2025-08-16", "Noche"]] rejected 5560 6584 1583 Control post ingesta virulana + vómitos 1583 \N \N \N \N \N +1139 2025-10-21 15:51:33.216799+00 2025-10-21 15:51:33.216811+00 f t [["2025-10-28", "Mañana"], ["2025-10-29", "Mañana"], ["2025-10-30", "Mañana"]] rejected 10198 11237 1583 Tiene la glándula salival tapada 1583 \N \N \N \N \N +479 2025-08-31 20:37:09.608085+00 2025-08-31 20:37:09.608704+00 f t [["2025-09-01", "Mañana"], ["2025-09-01", "Tarde"], ["2025-09-01", "Noche"]] rejected 6576 7653 1583 Cadera caída pata derecha delantera sin apoyo 1583 \N \N \N \N \N +480 2025-08-31 21:15:28.765979+00 2025-08-31 21:15:28.765988+00 f t [["2025-08-31", "Tarde"], ["2025-08-31", "Mañana"], ["2025-08-31", "Noche"]] rejected 6597 7679 1583 Vomitos hace 3 días. Hoy vomitó sangre 2 veces. Un poco caiducha, pero no tanto y con apetito. Sospecho por envenenamiento 1583 \N \N \N \N \N +1509 2025-11-10 13:46:28.908595+00 2025-11-10 13:46:28.908606+00 f t [["2025-11-10", "afternoon"]] Confirmado 11903 12684 1583 Muestra de sangre 1583 2025-11-10 03:00:00+00 17:30:00 0 100 \N +1159 2025-10-22 18:39:42.50226+00 2025-10-22 18:39:42.502272+00 f t [["2025-10-27", "Mañana"], ["2025-10-24", "Mañana"], ["2025-10-28", "Mañana"]] Confirmado 10304 4176 1208 Por solicitud medica 1208 2025-10-28 03:00:00+00 14:00:00 130347340051 84 \N +1160 2025-10-22 18:52:07.68452+00 2025-10-22 18:52:07.684531+00 f t [["2025-10-28", "Mañana"], ["2025-10-27", "Mañana"], ["2025-10-29", "Mañana"]] rejected 10305 4176 1208 Por su edad y porque nunca se le hizo un análisis de sangre y orina, el medico solicito esto. 1208 \N \N \N \N \N +655 2025-09-23 20:40:38.607046+00 2025-09-23 20:40:38.607056+00 f t [["2025-10-01", "morning"]] rejected 8098 9071 1583 \N 1583 \N \N \N \N \N +704 2025-09-26 14:23:16.02228+00 2025-09-26 14:23:16.022291+00 f t [["2025-09-26", "Mañana"], ["2025-09-26", "Tarde"], ["2025-09-26", "Noche"]] rejected 8321 9410 1583 Mi perro comío piedras sanitarias de gatos y las vi en la caca, dos veces que hizo las largo. Fue ayer. Estoy preocupada por que tenga más. 1583 \N \N \N \N \N +1141 2025-10-21 16:44:30.074454+00 2025-10-21 16:44:30.074464+00 f t [["2025-10-22", "morning"], ["2025-10-22", "afternoon"], ["2025-10-22", "evening"]] Confirmado 10200 11240 1208 chequeo general 1208 2025-10-22 03:00:00+00 10:00:00 68026718 88 \N +1218 2025-10-26 18:58:04.497624+00 2025-10-26 18:58:04.497632+00 f t [["2025-10-31", "afternoon"]] Confirmado 10560 11517 114 Chequeo y revisión de resultados de la radiografía 114 2025-10-31 03:00:00+00 16:00:00 00000 114 \N +1145 2025-10-21 19:25:33.514616+00 2025-10-21 19:25:33.514625+00 f t [["2025-10-22", "morning"], ["2025-10-22", "afternoon"], ["2025-10-22", "evening"]] Confirmado 10219 8577 1208 vacunacion anual 1208 2025-10-22 03:00:00+00 20:00:00 39326868812 80 \N +1129 2025-10-21 01:32:48.940333+00 2025-10-21 01:32:48.940341+00 f t [["2025-11-03", "Noche"], ["2025-11-04", "Noche"], ["2025-11-05", "Noche"]] rejected 10162 11203 1208 Tiene mucha caspa 1208 2025-11-03 03:00:00+00 20:00:00 \N 70 \N +1147 2025-10-21 19:54:01.178203+00 2025-10-21 19:54:01.178214+00 f t [["2025-10-24", "afternoon"], ["2025-10-24", "morning"]] Confirmado 10223 11269 1583 Dicponible viernes de 10-17hs. no camina mucho y una lesión en la pata trasera, colorado picadura piel. 1583 2025-10-24 03:00:00+00 10:00:00 ORD6LEN8PE8DRD3ONM1Y30 78 \N +1144 2025-10-21 19:05:08.517897+00 2025-10-21 19:05:08.517907+00 f t [["2025-10-21", "afternoon"], ["2025-10-21", "evening"]] rejected 10217 11261 1583 Grune de la nada y no se deja tocar, la nariz le gotea y esta muy decaído, toma antibioticos hace 2 semanas por cistitis 1583 2025-10-21 03:00:00+00 19:00:00 \N 1 \N +1142 2025-10-21 17:46:45.681244+00 2025-10-21 17:46:45.681257+00 f t [["2025-10-22", "morning"], ["2025-10-22", "afternoon"], ["2025-10-22", "evening"]] Confirmado 10210 1082 1208 consulta dermatologica 1208 2025-10-24 03:00:00+00 10:00:00 130792272710 75 \N +1143 2025-10-21 18:34:38.325067+00 2025-10-21 18:34:38.325075+00 f t [["2025-10-22", "morning"], ["2025-10-22", "afternoon"], ["2025-10-22", "evening"]] Confirmado 10213 11255 1208 vacunacion anual 1208 2025-10-22 03:00:00+00 19:00:00 WY7ZEPN6MLXJ6RLW2Q0M51 88 \N +1149 2025-10-21 20:55:35.857363+00 2025-10-21 20:55:35.857371+00 f t [["2025-10-23", "morning"]] Confirmado 10234 11278 1583 Deterinar si es o no cushing 1583 2025-10-22 03:00:00+00 16:30:00 0V1JXON1LKVJPK1PNZ64EL 98 \N +1154 2025-10-22 12:25:08.185227+00 2025-10-22 12:25:08.185241+00 f t [["2025-10-22", "morning"], ["2025-10-22", "afternoon"], ["2025-10-22", "evening"]] Confirmado 10278 11321 1208 vacunacion anual 1208 2025-10-22 03:00:00+00 18:00:00 130870008342 91 \N +1152 2025-10-22 00:58:10.949499+00 2025-10-22 00:58:10.94951+00 f t [["2025-10-24", "Tarde"], ["2025-10-22", "Tarde"], ["2025-10-23", "Tarde"]] Confirmado 10260 11302 1208 Vomita liquido casi todas más mañanas 1208 2025-10-22 03:00:00+00 18:30:00 130876614304 88 \N +1146 2025-10-21 19:35:06.082292+00 2025-10-21 19:35:06.0823+00 f t [["2025-10-30", "morning"]] rejected 10222 11264 1583 se mudó mi novia entonces le tiene miedo, a veces muerde 1583 2025-10-30 03:00:00+00 10:00:00 \N 105 \N +1151 2025-10-21 22:11:34.363809+00 2025-10-21 22:11:34.363817+00 f t [["2025-10-23", "Tarde"], ["2025-10-24", "Tarde"], ["2025-10-25", "Mañana"]] Confirmado 10238 510 113 Vómitos\nLas primeras veces con visible cantidad de pelos; en las siguientes veces, el vómito blanco con algo de espuma y hasta sin color.\nSe alimenta poco, duerme mucho más de lo habitual. 113 2025-10-22 03:00:00+00 14:00:00 130888399134 21 \N +1150 2025-10-21 21:49:22.731703+00 2025-10-21 21:49:22.731712+00 f t [["2025-10-21", "Mañana"], ["2025-10-21", "Tarde"], ["2025-10-21", "Tarde"]] rejected 10236 11279 1583 Mi perro empezó a sentir dolor en sus patas de atrás (o eso creo por qué al tocarlo se enoja o llora) tiembla y le cuesta moverse 1583 2025-10-21 03:00:00+00 20:00:00 \N \N \N +1155 2025-10-22 15:44:17.117846+00 2025-10-22 15:44:17.117855+00 f t [["2025-10-22", "evening"], ["2025-10-22", "afternoon"]] vet_accepted 10290 10716 1583 Ecografia abdominal 1583 2025-10-22 03:00:00+00 16:00:00 68724145 5 \N +1148 2025-10-21 19:59:12.957853+00 2025-10-21 19:59:12.957865+00 f t [["2025-10-23", "morning"]] rejected 10225 11268 1583 Extraccion de sangre 1583 2025-10-23 12:00:00+00 09:00:00 \N 112 \N +1157 2025-10-22 16:30:14.225925+00 2025-10-22 16:30:14.225934+00 f t [["2025-10-22", "morning"], ["2025-10-22", "afternoon"], ["2025-10-22", "evening"]] Confirmado 10297 5479 1208 tengo una gata con cistitis comencé con ciprofloxacina 1208 2025-10-22 03:00:00+00 14:30:00 68716845 114 \N +1156 2025-10-22 16:26:29.064972+00 2025-10-22 16:26:29.064982+00 f t [["2025-10-22", "morning"], ["2025-10-22", "afternoon"], ["2025-10-22", "evening"]] rejected 10296 523 1208 inflamacion y enrojecimiento de testiculos, se lame mucho 1208 2025-10-22 03:00:00+00 20:00:00 \N \N \N +1158 2025-10-22 17:26:10.961768+00 2025-10-22 17:26:10.96178+00 f t [["2025-10-24", "morning"], ["2025-10-24", "afternoon"], ["2025-10-24", "evening"]] Confirmado 10300 10243 1208 resultado de los estudios y Peke ha tenido una involucion muy notable pese a continuar medicado 1208 2025-10-24 03:00:00+00 17:30:00 JMQKYZ9QQWP156P69V50P3 1 \N +1161 2025-10-22 19:13:18.509019+00 2025-10-22 19:13:18.509031+00 f t [["2025-10-22", "Tarde"], ["2025-10-22", "Tarde"], ["2025-10-22", "Mañana"]] rejected 10309 11348 1583 Perra que parió y está jadeando mucho. 1583 \N \N \N \N \N +1153 2025-10-22 08:17:23.277246+00 2025-10-22 08:17:23.277254+00 f t [["2025-10-24", "Tarde"], ["2025-10-28", "Tarde"], ["2025-10-27", "Tarde"]] rejected 10274 11067 1208 Stress y alergia 1208 \N \N \N \N \N +1196 2025-10-24 23:08:31.42727+00 2025-10-24 23:08:31.427279+00 f t [["2025-10-24", "Tarde"], ["2025-10-24", "Mañana"], ["2025-10-24", "Tarde"]] rejected 10464 11477 1208 Vomitos 1208 2025-10-24 03:00:00+00 21:00:00 \N \N \N +1401 2025-11-04 18:26:24.175446+00 2025-11-04 18:26:24.175459+00 f t [["2025-11-05", "afternoon"], ["2025-11-05", "evening"]] vet_accepted 11400 12370 1583 Ecografia abdominal 1583 2025-11-05 03:00:00+00 16:00:00 Modo 90 \N +1264 2025-10-28 20:45:56.340035+00 2025-10-28 20:45:56.340046+00 f t [["2025-10-28", "evening"]] vet_accepted 10770 11759 1583 Hace gotitas de pis, quiere hacer pero no le sale 1583 2025-10-28 23:00:00+00 20:00:00 131628645322 1 \N +1313 2025-10-30 23:43:13.696251+00 2025-10-30 23:43:13.696259+00 f t [["2025-11-24", "afternoon"], ["2025-11-24", "evening"]] Confirmado 11024 9641 113 4art sesion 113 2025-11-24 03:00:00+00 19:30:00 0000000 67 \N +1168 2025-10-23 13:16:23.184592+00 2025-10-23 13:16:23.184602+00 f t [["2025-10-23", "morning"], ["2025-10-23", "afternoon"], ["2025-10-23", "evening"]] rejected 10346 11381 1208 esta orinando poquito y seguido hoy noté que orina mas rojizo como que con sangre 1208 2025-10-23 03:00:00+00 19:00:00 \N \N \N +1166 2025-10-22 23:06:26.415085+00 2025-10-22 23:06:26.415094+00 f t [["2025-10-22", "Tarde"], ["2025-10-23", "Tarde"], ["2025-10-24", "Tarde"]] Confirmado 10324 11361 1208 Encontré un gatito bebé en la calle y lo voy a adoptar y quisiera bebehacerle un chequeo, desparasitarlo , vacunas, etc.\nMuchas gracias! 1208 2025-10-23 03:00:00+00 20:00:00 130364496851 92 \N +1163 2025-10-22 19:56:17.742058+00 2025-10-22 19:56:17.742067+00 f t [["2025-10-27", "morning"], ["2025-10-27", "afternoon"], ["2025-10-27", "evening"]] Confirmado 10312 4176 1208 extraccion de sangre perfil completo con orina 1208 2025-10-27 03:00:00+00 10:00:00 130364496851 100 \N +1164 2025-10-22 19:57:40.470178+00 2025-10-22 19:57:40.47019+00 f t [["2025-10-27", "morning"], ["2025-10-27", "evening"], ["2025-10-27", "afternoon"]] payed 10313 4176 1208 extraccion de sangre perfil completo con orina 1208 2025-10-27 03:00:00+00 10:00:00 130364496851 100 \N +1167 2025-10-23 00:02:06.411224+00 2025-10-23 00:02:06.411232+00 f t [["2025-10-28", "morning"], ["2025-10-28", "afternoon"], ["2025-10-28", "evening"]] vet_accepted 10325 4176 1208 extraccion de sangre perfil general completo con orina 1208 2025-10-27 03:00:00+00 09:30:00 91169615185 112 \N +1165 2025-10-22 22:47:34.089916+00 2025-10-22 22:47:34.089924+00 f t [["2025-10-22", "Tarde"], ["2025-10-22", "Tarde"], ["2025-10-22", "Mañana"]] rejected 10323 11359 113 No quiso orinar hoy por la tarde a pesar de ir a su arenero \N 2025-10-22 03:00:00+00 20:30:00 \N \N \N +1171 2025-10-23 14:48:11.452277+00 2025-10-23 14:48:11.452287+00 f t [["2025-10-24", "morning"]] Confirmado 10353 10716 1583 Extraccino para prequirurgico 1583 2025-10-24 03:00:00+00 10:00:00 69329188 112 \N +1173 2025-10-23 15:17:18.144805+00 2025-10-23 15:17:18.144817+00 f t [["2025-10-24", "morning"]] Confirmado 10356 10716 1583 Muestra para prequirugico 1583 2025-10-24 03:00:00+00 12:00:00 0 100 \N +1177 2025-10-23 19:07:46.8445+00 2025-10-23 19:07:46.844511+00 f t [["2025-10-31", "morning"], ["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] Confirmado 10371 11321 1208 consulta cardiologica 1208 2025-10-31 03:00:00+00 16:00:00 130454216011 82 \N +1178 2025-10-23 19:09:25.302127+00 2025-10-23 19:09:25.302135+00 f t [["2025-10-31", "morning"], ["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] Confirmado 10372 11321 1208 placas x3 1208 2025-10-31 03:00:00+00 18:30:00 130454216011 84 \N +1180 2025-10-23 20:19:21.898039+00 2025-10-23 20:19:21.898048+00 f t [["2025-10-23", "afternoon"]] Confirmado 10376 11387 1583 Muestra para perfil 7 1583 2025-10-23 03:00:00+00 18:00:00 131048115120 100 \N +1179 2025-10-23 20:05:38.292416+00 2025-10-23 20:05:38.292426+00 f t [["2025-10-23", "Tarde"], ["2025-10-24", "Mañana"], ["2025-10-24", "Tarde"]] Confirmado 10374 11178 1583 Vomitos desde hoy 1583 2025-10-24 03:00:00+00 16:30:00 130475316481 80 \N +1183 2025-10-23 22:20:03.732346+00 2025-10-23 22:20:03.73236+00 f t [["2025-10-30", "morning"], ["2025-10-30", "afternoon"], ["2025-10-30", "evening"]] Confirmado 10381 11393 1208 placas x2 1208 2025-10-30 03:00:00+00 14:00:00 R7ZG0QNDWPVMR1E09EXYPO 84 \N +1175 2025-10-23 17:16:23.230441+00 2025-10-23 17:16:23.230452+00 t t [["2025-10-24", "Tarde"], ["2025-10-27", "Tarde"], ["2025-10-28", "Tarde"]] vet_asked 10361 11393 1208 cardiologia 1208 2025-10-30 03:00:00+00 16:00:00 R7ZG0QNDWPVMR1E09EXYPO 82 \N +1185 2025-10-23 22:49:50.293666+00 2025-10-23 22:49:50.293675+00 f t [["2025-10-30", "morning"], ["2025-10-30", "afternoon"], ["2025-10-30", "evening"]] Confirmado 10386 11393 1208 consulta cardiologica 1208 2025-10-30 03:00:00+00 16:00:00 R7ZG0QNDWPVMR1E09EXYPO 82 \N +1184 2025-10-23 22:23:00.801042+00 2025-10-23 22:23:00.801051+00 t t [["2025-10-30", "morning"], ["2025-10-30", "afternoon"], ["2025-10-30", "evening"]] payed 10382 11393 1208 placas x2 1208 2025-10-30 03:00:00+00 14:00:00 R7ZG0QNDWPVMR1E09EXYPO 84 \N +1182 2025-10-23 21:18:38.712925+00 2025-10-23 21:18:38.712933+00 t t [["2025-10-27", "morning"]] in_progress_vet 10379 10793 1583 Control cardiologico 1583 2025-10-27 12:00:00+00 09:00:00 \N \N \N +1188 2025-10-24 13:59:53.414116+00 2025-10-24 13:59:53.414124+00 f t [["2025-10-24", "afternoon"]] Confirmado 10423 11447 1583 Le cuesta levantarse y no quiere comer 1583 2025-10-24 03:00:00+00 12:30:00 69958871 113 \N +1187 2025-10-24 12:23:07.301828+00 2025-10-24 12:23:07.301837+00 f t [["2025-10-24", "Tarde"], ["2025-10-24", "Tarde"], ["2025-10-24", "Mañana"]] Confirmado 10416 2084 1583 Tener un perfil completo antes de darle su primer vacuna. 1583 2025-10-25 03:00:00+00 09:00:00 70003969 112 \N +1189 2025-10-24 15:05:20.883512+00 2025-10-24 15:05:20.883521+00 f t [["2025-10-24", "afternoon"]] Confirmado 10427 2084 1583 Muestra para Perfil Completo 1583 2025-10-24 03:00:00+00 16:00:00 0 100 \N +1186 2025-10-24 11:58:26.58069+00 2025-10-24 11:58:26.580701+00 f t [["2025-10-24", "morning"], ["2025-10-24", "afternoon"]] Confirmado 10412 9928 1583 Vacunacion anual. 1583 2025-10-25 03:00:00+00 14:00:00 130556904951 94 \N +1190 2025-10-24 15:13:48.168019+00 2025-10-24 15:13:48.168027+00 f t [["2025-10-24", "afternoon"], ["2025-10-24", "evening"]] Confirmado 10428 8869 1583 Mi perro está viejito ,Moncho, y tuvo una convulsión anoche. 1583 2025-10-24 03:00:00+00 17:00:00 131142853986 113 \N +1162 2025-10-22 19:34:55.129324+00 2025-10-22 19:34:55.129331+00 f t [["2025-10-24", "morning"], ["2025-10-24", "afternoon"], ["2025-10-24", "evening"]] Confirmado 10311 6905 1208 extraccion de sangre perfil prequirurgico 1208 2025-10-29 03:00:00+00 09:00:00 1LMP68NKVMDM7E0452R7OEV 1 \N +1191 2025-10-24 17:54:44.812078+00 2025-10-24 17:54:44.812086+00 f t [["2025-10-29", "morning"], ["2025-10-29", "afternoon"], ["2025-10-29", "evening"]] Confirmado 10443 6905 1208 extraccion de sangre perfil prequirurgico 1208 2025-10-29 03:00:00+00 10:30:00 1LMP68NKVMDM7E0452R7OEV 100 \N +1270 2025-10-28 23:33:21.236233+00 2025-10-28 23:33:21.236241+00 f t [["2025-10-29", "Mañana"], ["2025-10-30", "Mañana"], ["2025-10-30", "Tarde"]] in_progress_vet 10794 11780 113 Hace unos dias tiene la pancita un poco hinchada cerca de las patas traseras 113 2025-10-30 03:00:00+00 10:00:00 \N \N \N +1453 2025-11-06 18:59:17.213894+00 2025-11-06 18:59:17.213906+00 f t [["2025-11-07", "morning"], ["2025-11-07", "afternoon"], ["2025-11-07", "evening"]] Confirmado 11585 12287 1208 muestra de orina 1208 2025-11-07 03:00:00+00 10:00:00 132160976405 100 \N +1249 2025-10-28 15:01:29.793082+00 2025-10-28 15:01:29.793091+00 f t [["2025-11-08", "morning"], ["2025-11-08", "afternoon"], ["2025-11-08", "evening"]] Confirmado 10720 11720 1208 extraccion de sangre perfil 7 + tigliceridos + t4 total + AOC Y UPC 1208 2025-11-07 03:00:00+00 19:00:00 JMQKYZ9QQW338EYP9V50P3 85 \N +1258 2025-10-28 18:02:16.232701+00 2025-10-28 18:02:16.232711+00 f t [["2025-10-29", "Mañana"], ["2025-10-30", "Mañana"], ["2025-10-31", "Mañana"]] Confirmado 10751 11745 1583 A veces vomita. Como mucho pasto. Desanimada. Se levanta y le cuesta caminar. Es una pit Bull. Tiene fuerzas. Pero se lave debil 1583 2025-10-29 03:00:00+00 10:00:00 131018180679 68 \N +1221 2025-10-27 12:42:30.968128+00 2025-10-27 12:42:30.968136+00 f t [["2025-10-27", "evening"]] Confirmado 10577 920 1583 Gato rescatado, parece que va a perder un ojo, diarrea 1583 2025-10-27 03:00:00+00 19:00:00 131457298214 70 \N +1193 2025-10-24 20:35:25.420967+00 2025-10-24 20:35:25.420978+00 f t [["2025-10-24", "morning"], ["2025-10-24", "afternoon"], ["2025-10-24", "evening"]] Confirmado 10451 11035 1208 perfil general completo sin orina + pcr erlichia 1208 2025-10-25 03:00:00+00 08:00:00 130591824969 100 \N +1192 2025-10-24 18:53:55.517753+00 2025-10-24 18:53:55.517761+00 f t [["2025-10-24", "afternoon"], ["2025-10-24", "evening"]] rejected 10445 11463 1583 Ayer se corto una almoadilla mi gato y el vendaje parece molestarle 1583 2025-10-24 03:00:00+00 19:00:00 \N 1 \N +1301 2025-10-30 14:38:39.072929+00 2025-10-30 14:38:39.072937+00 f t [["2025-10-30", "afternoon"]] Confirmado 10976 11966 1583 No pued ehacer pis, tiene estudios hechos 1583 2025-10-30 03:00:00+00 14:00:00 131832221744 74 \N +1219 2025-10-26 19:18:22.684827+00 2025-10-26 19:18:22.684835+00 f t [["2025-11-15", "morning"]] Confirmado 10561 11576 114 Desparacitación interna+externa y Vacunación anual 114 2025-11-15 03:00:00+00 11:00:00 131366815446 74 \N +1225 2025-10-27 14:54:21.670575+00 2025-10-27 14:54:21.670587+00 f t [["2025-10-27", "evening"]] Confirmado 10592 10052 1583 Vacunación Anual+ Desparasitación interna y externa 1583 2025-10-27 03:00:00+00 19:00:00 30717420698 85 \N +1261 2025-10-28 20:00:17.118069+00 2025-10-28 20:00:17.118081+00 f t [["2025-10-29", "morning"]] Confirmado 10764 9991 1583 Extraccion de sangre 1583 2025-11-10 03:00:00+00 09:00:00 Santander 104 \N +1228 2025-10-27 15:41:50.274522+00 2025-10-27 15:41:50.274531+00 f t [["2025-10-31", "morning"]] Confirmado 10599 797 1583 Extraccion de sangre 1583 2025-10-31 03:00:00+00 09:00:00 3D5W612E6LG1XR1G2GXYVR 104 \N +1257 2025-10-28 17:56:56.799464+00 2025-10-28 17:56:56.799474+00 f t [["2025-10-31", "morning"], ["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] vet_accepted 10750 1100 1208 vacunacion anual 1208 2025-10-31 03:00:00+00 19:30:00 S25H-M60Y-MK8F 92 \N +1231 2025-10-27 17:13:19.022589+00 2025-10-27 17:13:19.0226+00 f t [["2025-10-30", "afternoon"]] Confirmado 10612 11616 1583 Muestra para perfil completo con orina \N 2025-10-30 03:00:00+00 16:00:00 0 100 \N +1234 2025-10-27 18:25:37.47616+00 2025-10-27 18:25:37.476169+00 f t [["2025-10-27", "afternoon"]] Confirmado 10624 11035 114 Revisión de Resultados del análisis 114 2025-10-27 03:00:00+00 15:30:00 46YGOW9M1D544768NEXD8J 99 \N +1265 2025-10-28 20:55:58.598645+00 2025-10-28 20:55:58.598653+00 f t [["2025-10-28", "evening"]] Confirmado 10774 541 1583 Consulta post estudios 1583 2025-10-28 03:00:00+00 19:30:00 131035343475 80 \N +1241 2025-10-27 21:13:29.040427+00 2025-10-27 21:13:29.040436+00 f t [["2025-10-31", "morning"]] Confirmado 10645 11648 114 Revisión por Otitis 114 2025-10-31 03:00:00+00 10:00:00 JMQKYZ9QQW74V8KR9V50P3 1 \N +1236 2025-10-27 20:06:56.037249+00 2025-10-27 20:06:56.037261+00 f t [["2025-10-27", "Tarde"], ["2025-10-27", "Mañana"], ["2025-10-27", "Tarde"]] rejected 10632 11635 114 Se comio un hilo de chorizo 114 2025-10-27 03:00:00+00 19:00:00 \N \N \N +1238 2025-10-27 21:06:58.174508+00 2025-10-27 21:06:58.174518+00 f t [["2025-10-28", "Tarde"], ["2025-10-28", "Tarde"], ["2025-10-28", "Mañana"]] rejected 10640 11645 114 No sabe socializar, necesito precios de castración 114 \N \N \N \N \N +1267 2025-10-28 21:03:14.952995+00 2025-10-28 21:03:14.953004+00 f t [["2025-10-29", "morning"], ["2025-10-29", "afternoon"], ["2025-10-29", "evening"]] Confirmado 10778 11765 1583 Vacunacion anual 1583 2025-10-29 03:00:00+00 12:00:00 caja de ahorro 330455180/1 92 \N +1247 2025-10-28 12:47:56.960867+00 2025-10-28 12:47:56.960876+00 f t [["2025-10-31", "Mañana"], ["2025-11-01", "Mañana"], ["2025-11-03", "Mañana"]] Confirmado 10684 11685 1208 Control. Vacuna triple y antirrábica. 1208 2025-10-31 03:00:00+00 10:00:00 130989888015 80 \N +1245 2025-10-28 00:14:28.204454+00 2025-10-28 00:14:28.204462+00 f t [["2025-10-29", "morning"]] Confirmado 10662 11302 114 No se especificó motivo de consulta. se solicitó: Traslado de muestras... \N 2025-10-28 03:00:00+00 08:00:00 130916752867 100 \N +1243 2025-10-27 23:07:27.663332+00 2025-10-27 23:07:27.663342+00 f t [["2025-10-27", "Mañana"], ["2025-10-27", "Tarde"], ["2025-10-27", "Tarde"]] Confirmado 10655 11658 114 La perrita tiene un bulto en las mamas grande. Ahora no está comiendo, si toma agua. Pero esta tirada y le cuesta mucho caminar (si toma agua) la noto muy agitada por momentos 114 2025-10-28 03:00:00+00 16:30:00 71962369 88 \N +1274 2025-10-29 13:05:27.234663+00 2025-10-29 13:05:27.234673+00 f t [["2025-10-29", "morning"], ["2025-10-29", "afternoon"], ["2025-10-29", "evening"]] Confirmado 10838 10259 1208 inseparables 1208 2025-10-29 03:00:00+00 10:30:00 131693764208 95 \N +1251 2025-10-28 15:19:12.579304+00 2025-10-28 15:19:12.579316+00 f t [["2025-10-28", "morning"], ["2025-10-28", "afternoon"], ["2025-10-28", "evening"]] Confirmado 10723 11722 1208 consulta cardiologica 1208 2025-10-29 03:00:00+00 15:00:00 131595608638 82 \N +1253 2025-10-28 15:57:54.909719+00 2025-10-28 15:57:54.909728+00 f t [["2025-11-07", "morning"]] Confirmado 10730 9712 1583 Extraccion para perfil tiroideo 1583 2025-11-07 12:00:00+00 09:00:00 LOEJVV9JZYJW1MLR2QMD0G 112 \N +1278 2025-10-29 14:17:53.842425+00 2025-10-29 14:17:53.842434+00 f t [["2025-10-30", "afternoon"], ["2025-10-30", "evening"], ["2025-10-30", "morning"]] Confirmado 10846 47 1583 Se rasca y se lastima 1583 2025-10-30 03:00:00+00 10:00:00 39421319433 80 \N +1255 2025-10-28 16:37:17.664703+00 2025-10-28 16:37:17.664713+00 f t [["2025-10-30", "morning"], ["2025-10-30", "afternoon"], ["2025-10-30", "evening"]] Confirmado 10738 11732 1208 vacunacion anual 1208 2025-10-30 03:00:00+00 18:00:00 131602557670 68 \N +1276 2025-10-29 13:29:42.226405+00 2025-10-29 13:29:42.226415+00 f t [["2025-11-06", "Tarde"], ["2025-11-13", "Tarde"], ["2025-11-20", "Tarde"]] Confirmado 10840 11825 1208 Gata tricolor pelo largo, tiene caspa, quisiera un análisis de sangre para chequeo general, tiene sus vacunas al dia. 1208 2025-11-06 03:00:00+00 17:00:00 131148817641 1 \N +1194 2025-10-24 21:23:43.6003+00 2025-10-24 21:23:43.600309+00 f t [["2025-10-27", "morning"], ["2025-10-27", "afternoon"], ["2025-10-27", "evening"]] Confirmado 10455 123 1208 teleconsulta 1208 2025-10-27 03:00:00+00 19:00:00 39370054339 1 \N +1248 2025-10-28 13:59:15.102555+00 2025-10-28 13:59:15.102564+00 f t [["2025-10-29", "morning"], ["2025-10-29", "afternoon"], ["2025-10-29", "evening"]] rejected 10714 9165 1208 \N 1208 \N \N \N \N \N +1510 2025-11-10 14:21:02.549029+00 2025-11-10 14:21:02.549041+00 f t [["2025-11-10", "afternoon"]] vet_accepted 11908 7243 1583 vacunacion triple felina, corte de garras. disponible hasta las 14:30hs, sino manana mismo horario 1583 2025-11-10 03:00:00+00 13:00:00 132658437315 1 \N +1195 2025-10-24 22:54:03.727516+00 2025-10-24 22:54:03.727528+00 f t [["2025-10-26", "morning"], ["2025-10-26", "afternoon"], ["2025-10-26", "evening"]] Confirmado 10463 8168 1208 vacunacion anual 1208 2025-10-26 03:00:00+00 16:00:00 131198088068 92 \N +1402 2025-11-04 18:58:55.7976+00 2025-11-04 18:58:55.797609+00 f t [["2025-11-07", "morning"], ["2025-11-07", "afternoon"]] Confirmado 11407 12377 1583 vacunacion anual y corte de garras, disponible entre 10-12:30 o despues de las 15hs 1583 2025-11-07 03:00:00+00 10:00:00 70376586007251104 94 \N +1174 2025-10-23 15:21:18.420764+00 2025-10-23 15:21:18.420784+00 f t [["2025-10-23", "Tarde"], ["2025-10-23", "Tarde"], ["2025-10-23", "Mañana"]] vet_accepted 10355 11387 1208 No come. Le cuesta defecar y vomito amarillo 1208 2025-10-23 03:00:00+00 16:30:00 130433464353 1 \N +1259 2025-10-28 19:24:47.868547+00 2025-10-28 19:24:47.868558+00 f t [["2025-10-29", "morning"]] Confirmado 10760 9682 1583 Vacunacion antirrabica \N 2025-10-29 03:00:00+00 19:00:00 131617727012 1 \N +1250 2025-10-28 15:02:25.919277+00 2025-10-28 15:02:25.919285+00 f t [["2025-11-08", "morning"], ["2025-11-08", "afternoon"], ["2025-11-08", "evening"]] Confirmado 10722 11720 1208 cardiologico x2 1208 2025-11-07 03:00:00+00 18:00:00 JMQKYZ9QQW338EYP9V50P3 82 \N +1262 2025-10-28 20:19:27.761573+00 2025-10-28 20:19:27.761583+00 f t [["2025-10-29", "afternoon"], ["2025-10-29", "evening"]] Confirmado 10767 11658 1583 Ecografia abdominal 1583 2025-10-30 03:00:00+00 14:00:00 72434654 90 \N +1226 2025-10-27 15:03:15.795651+00 2025-10-27 15:03:15.79566+00 f t [["2025-10-27", "evening"]] Confirmado 10595 9239 1583 consulta post estudios. 1583 2025-10-27 03:00:00+00 21:00:00 130879361591 92 \N +1212 2025-10-25 23:25:26.690898+00 2025-10-25 23:25:26.690911+00 f t [["2025-10-26", "Mañana"], ["2025-10-27", "Mañana"], ["2025-10-28", "Mañana"]] in_progress_pay 10524 11539 114 Empezó el día viernes a la tarde con estornudos, hoy sábado los estornudos son menos pero se le agrego un tic como si fuera a estornudar qué suele ser más obvio mientras duerme, sigue teniendo apetito y tomando agua. 114 2025-10-26 03:00:00+00 11:30:00 \N 89 \N +1222 2025-10-27 13:21:13.496807+00 2025-10-27 13:21:13.496819+00 f t [["2025-10-31", "Mañana"], ["2025-10-31", "Tarde"], ["2025-10-31", "Tarde"]] Confirmado 10579 11591 1583 Estudio cardiologico requirurgico 1583 2025-10-31 03:00:00+00 17:30:00 71732136 82 \N +1235 2025-10-27 19:07:24.200264+00 2025-10-27 19:07:24.200272+00 f t [["2025-11-02", "afternoon"]] Confirmado 10629 11632 114 Vacunación anual 114 2025-11-02 03:00:00+00 16:00:00 Z0KV87940GM3ZWGQNPEYDX 92 \N +1272 2025-10-29 12:22:09.661396+00 2025-10-29 12:22:09.661408+00 f t [["2025-10-29", "Mañana"], ["2025-10-29", "Tarde"], ["2025-10-29", "Tarde"]] Confirmado 10831 11818 1208 Es un perro de gran apetito pero ayer no quiso comer y le cuesta (o no quiere) pararse. Hay que insistirle mucho y ayudarla para que no se resbale. Parece dolerle la cadera 1208 2025-10-29 03:00:00+00 12:00:00 131699085022 1 \N +1232 2025-10-27 18:01:45.609262+00 2025-10-27 18:01:45.609274+00 f t [["2025-10-27", "afternoon"], ["2025-10-27", "evening"]] Confirmado 10619 541 1583 Consulta general 1583 2025-10-27 03:00:00+00 20:00:00 130901893063 80 \N +1275 2025-10-29 13:09:22.487673+00 2025-10-29 13:09:22.487686+00 f t [["2025-10-29", "morning"], ["2025-10-29", "afternoon"], ["2025-10-29", "evening"]] Confirmado 10839 11780 1208 Hace unos dias tiene la pancita un poco hinchada cerca de las patas traseras, esta bien de animo 1208 2025-10-29 03:00:00+00 16:00:00 131108714131 96 \N +1239 2025-10-27 21:10:55.654253+00 2025-10-27 21:10:55.654267+00 f t [["2025-10-28", "Tarde"], ["2025-10-28", "Tarde"], ["2025-10-29", "Tarde"]] Confirmado 10639 11644 114 Hola, la gata tiene algun problema urinario, comenzo a ir muy seguido a las piedritas y vi unas gotitas de sangre en la orina 114 2025-10-29 03:00:00+00 19:30:00 130933288311 92 \N +1266 2025-10-28 20:58:38.26682+00 2025-10-28 20:58:38.266829+00 f t [["2025-10-30", "afternoon"]] Confirmado 10775 10707 1583 Consulta post estudios 1583 2025-10-30 03:00:00+00 16:00:00 131704402966 68 \N +1246 2025-10-28 04:43:39.815638+00 2025-10-28 04:43:39.815647+00 f t [["2025-10-28", "Tarde"], ["2025-10-28", "Tarde"], ["2025-10-28", "Mañana"]] rejected 10690 11691 1208 no se encuentra físicamente en Buenos Aires\nViajo junto a mis papas al extranjero y estando allá hizo un mal movimiento salto demasiado y se lastimó la columna\nFue tratado con analgésicos y aines durante dos meses y venía mejorando\nPero hace 4 día nuevamente sin haber hecho ningún movimiento empezó nuevamente con impotencia funcional y se le agregó incontinencia urinaria y fecal\nSe consulto nuevamente con los veterinarios de la zona y el tratamiento fue el mismo analgésico y vitaminas\nQuiero una segunda opinión\nTenemos la radiografías\nTiene 5 años 1208 \N \N \N \N \N +1242 2025-10-27 23:02:32.576596+00 2025-10-27 23:02:32.576604+00 f t [["2025-10-29", "evening"]] Confirmado 10657 11659 114 Chequeo 114 2025-10-29 03:00:00+00 19:00:00 00000 92 \N +1271 2025-10-29 01:49:44.637052+00 2025-10-29 01:49:44.637062+00 f t [["2025-11-04", "Tarde"], ["2025-10-30", "Mañana"], ["2025-11-03", "Tarde"]] rejected 10812 11798 1208 Picazón , caída del pelo, lastimaduras 1208 \N \N \N \N \N +1244 2025-10-27 23:51:11.705666+00 2025-10-27 23:51:11.705675+00 f t [["2025-10-28", "afternoon"]] Confirmado 10658 541 114 Ecografía Abdominal 114 2025-10-28 03:00:00+00 15:00:00 130938960337 90 \N +1289 2025-10-29 20:27:09.88184+00 2025-10-29 20:27:09.881847+00 f t [["2025-11-07", "morning"]] Confirmado 10895 11825 1583 Muestra para perfil completo sin orina 1583 2025-11-07 03:00:00+00 10:00:00 0 85 \N +1288 2025-10-29 20:27:09.667677+00 2025-10-29 20:27:09.667685+00 f t [["2025-11-07", "morning"]] rejected 10895 11825 1583 \N 1583 2025-11-07 12:00:00+00 09:00:00 \N \N \N +1254 2025-10-28 16:23:28.077329+00 2025-10-28 16:23:28.077337+00 f t [["2025-11-07", "morning"]] payed 10735 9712 1583 Muestra para perfil tiroideo 2 1583 2025-11-07 03:00:00+00 10:00:00 0 100 \N +1256 2025-10-28 17:29:56.540971+00 2025-10-28 17:29:56.54098+00 f t [["2025-11-03", "Tarde"], ["2025-11-05", "Tarde"], ["2025-11-07", "Tarde"]] in_progress_vet 10742 11736 1583 Tiene dificultades para caminar, 1583 \N \N \N \N \N +1252 2025-10-28 15:44:12.540868+00 2025-10-28 15:44:12.540877+00 f t [["2025-10-31", "morning"], ["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] Confirmado 10727 4176 1208 control cardiologico para dos 1208 2025-11-04 03:00:00+00 11:30:00 131603051884 82 \N +1352 2025-11-01 18:12:47.830219+00 2025-11-01 18:12:47.830232+00 f t [["2025-11-04", "morning"], ["2025-11-04", "afternoon"], ["2025-11-04", "evening"]] Confirmado 11209 12093 1208 consulta cardiologica 1208 2025-11-04 03:00:00+00 13:30:00 131517632409 82 \N +1197 2025-10-25 07:31:47.170945+00 2025-10-25 07:31:47.170955+00 f t [["2025-10-25", "Mañana"], ["2025-10-26", "Tarde"], ["2025-10-27", "Mañana"]] rejected 10477 11491 1208 Tiene tos 1208 \N \N \N \N \N +1214 2025-10-26 16:21:52.510495+00 2025-10-26 16:21:52.510503+00 f t [["2025-10-26", "Mañana"], ["2025-10-26", "Tarde"], ["2025-10-26", "Tarde"]] Confirmado 10545 11560 114 Dolor en la pata trasera 114 2025-10-26 03:00:00+00 14:00:00 71242068 70 \N +1309 2025-10-30 22:53:42.927069+00 2025-10-30 22:53:42.927076+00 f t [["2025-10-31", "morning"], ["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] Confirmado 11017 11977 1208 perfil 7 1208 2025-10-31 03:00:00+00 10:00:00 131265748825 85 \N +1200 2025-10-25 13:38:29.526625+00 2025-10-25 13:38:29.526635+00 f t [["2025-10-27", "morning"], ["2025-10-27", "afternoon"], ["2025-10-27", "evening"]] Confirmado 10488 11302 1208 ecografia abdominal 1208 2025-10-27 03:00:00+00 16:00:00 131247472324 90 \N +1206 2025-10-25 17:18:24.929779+00 2025-10-25 17:18:24.929787+00 f t [["2025-10-25", "morning"], ["2025-10-25", "afternoon"], ["2025-10-25", "evening"]] vet_accepted 10505 11447 1208 ecografia abdominal de urgencia 1208 2025-10-26 03:00:00+00 14:00:00 Z6OLMDN3VM1LZ8Y62E7RQ5 118 \N +1207 2025-10-25 17:36:57.567456+00 2025-10-25 17:36:57.567466+00 f t [["2025-10-29", "morning"], ["2025-10-29", "afternoon"], ["2025-10-29", "evening"]] Confirmado 10506 11517 1208 Radiología 1208 2025-10-30 03:00:00+00 15:00:00 Z4K6DVNOWO6XD61E25J8LQ 84 \N +1199 2025-10-25 12:15:08.862409+00 2025-10-25 12:15:08.862418+00 f t [["2025-10-25", "morning"], ["2025-10-25", "afternoon"], ["2025-10-25", "evening"]] Confirmado 10482 11447 1208 no mejoro, vomitos 1208 2025-10-25 03:00:00+00 11:00:00 70635861 113 \N +1201 2025-10-25 13:39:41.36174+00 2025-10-25 13:39:41.361749+00 f t [["2025-10-27", "morning"], ["2025-10-27", "afternoon"], ["2025-10-27", "evening"]] Confirmado 10489 11302 1208 extraccion de sangre perfil general completo con orina + upc 1208 2025-10-27 03:00:00+00 15:30:00 131247472324 112 \N +1215 2025-10-26 18:00:43.852996+00 2025-10-26 18:00:43.853004+00 f t [["2025-10-26", "Tarde"], ["2025-10-26", "Mañana"], ["2025-10-26", "Tarde"]] rejected 10554 11570 114 No come ni toma agua 114 2025-10-26 03:00:00+00 15:30:00 \N 94 \N +1202 2025-10-25 13:41:45.168165+00 2025-10-25 13:41:45.168176+00 f t [["2025-10-27", "morning"], ["2025-10-27", "afternoon"], ["2025-10-27", "evening"]] Confirmado 10490 11302 1208 extraccion de sangre perfil general completo con orina + upc 1208 2025-10-27 03:00:00+00 17:00:00 131247472324 100 \N +1211 2025-10-25 22:43:27.314417+00 2025-10-25 22:43:27.314426+00 f t [["2025-11-01", "Mañana"], ["2025-11-02", "Mañana"], ["2025-11-02", "Tarde"]] in_progress_vet 10501 11513 1583 Gatito macho rescatado, adulto, con problemas en la boca y una hernia en el diafragma que no se puede operar. Convive con otro gato y nunca hicimos virales 1583 \N \N \N \N \N +1273 2025-10-29 12:59:38.748334+00 2025-10-29 12:59:38.748343+00 t t [["2025-10-29", "morning"], ["2025-10-29", "afternoon"], ["2025-10-29", "evening"]] payed 10837 10259 1208 inseparables 1208 2025-10-29 03:00:00+00 10:30:00 131693764208 95 \N +1204 2025-10-25 14:48:08.361118+00 2025-10-25 14:48:08.361128+00 f t [["2025-10-25", "morning"], ["2025-10-25", "afternoon"], ["2025-10-25", "evening"]] Confirmado 10497 11447 1208 extraccion de sangre perfl general completo sin orina 1208 2025-10-25 03:00:00+00 14:00:00 70684448 100 \N +1269 2025-10-28 21:56:35.679363+00 2025-10-28 21:56:35.679375+00 f t [["2025-10-28", "evening"]] rejected 10786 11772 1583 No se puede levantar, esta de buen animo 1583 2025-10-29 03:00:00+00 09:00:00 \N \N \N +1268 2025-10-28 21:56:32.734747+00 2025-10-28 21:56:32.734756+00 f t [["2025-10-28", "evening"]] rejected 10785 11772 1583 \N 1583 2025-10-28 23:00:00+00 20:00:00 \N \N \N +1223 2025-10-27 13:46:37.200312+00 2025-10-27 13:46:37.20032+00 f t [["2025-10-30", "morning"]] Confirmado 10581 11264 1583 Consulta etologica 1583 2025-10-30 03:00:00+00 11:30:00 130870771261 105 \N +1230 2025-10-27 16:57:51.908669+00 2025-10-27 16:57:51.908678+00 f t [["2025-10-30", "morning"]] vet_accepted 10608 11616 1583 Consulta general y extraccion para analisis de control con orina 1583 2025-10-30 03:00:00+00 15:00:00 Santander 88 \N +1227 2025-10-27 15:08:24.81827+00 2025-10-27 15:08:24.818279+00 f t [["2025-10-27", "Tarde"], ["2025-10-27", "Mañana"], ["2025-10-27", "Tarde"]] rejected 10590 11600 1583 El fin de semana se pelio con otro gato y desde ayer esta tirado en mi cama, no quiere comer. Se hizo pis sobre mi alcochado, le cuesta mucho ponerse de pie. Si toma agua cuando le acerco una tasa. 1583 2025-10-27 03:00:00+00 14:00:00 \N \N \N +1203 2025-10-25 13:47:27.269816+00 2025-10-25 13:47:27.269825+00 f t [["2025-10-25", "Tarde"], ["2025-10-27", "Tarde"], ["2025-10-28", "Tarde"]] Confirmado 10491 11503 1208 Vómitos Frecuentes 1208 2025-10-25 03:00:00+00 15:00:00 PDX4OGNYGR781E74N0L6EY 94 \N +1198 2025-10-25 09:02:14.381365+00 2025-10-25 09:02:14.381374+00 f t [["2025-10-25", "Mañana"], ["2025-10-25", "Tarde"], ["2025-10-25", "Tarde"]] rejected 10479 11494 1208 Está con un poco de diarrea desde hace unos pocos días. Desde ayer a la tarde noche, no puede levantarse, como si tuviese paralizado una parte de su cuerpo, la zona de las patas o cadera. Tiene 16 años 1208 2025-10-25 03:00:00+00 14:30:00 \N 113 \N +1233 2025-10-27 18:12:17.198141+00 2025-10-27 18:12:17.198149+00 f t [["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] Confirmado 10621 11591 1583 Vacunacion anual 1583 2025-10-31 03:00:00+00 16:30:00 71759526 68 \N +1210 2025-10-25 22:24:42.229785+00 2025-10-25 22:24:42.229796+00 f t [["2025-10-25", "Tarde"], ["2025-10-25", "Tarde"], ["2025-10-25", "Mañana"]] rejected 10516 11529 114 Se le abrió la glándula que tiene al lado del ano la tiene al rojo vivo 114 \N \N \N \N \N +1208 2025-10-25 18:19:42.88871+00 2025-10-25 18:19:42.888719+00 f t [["2025-10-27", "Tarde"], ["2025-10-27", "Mañana"], ["2025-10-27", "Tarde"]] rejected 10500 11512 1208 Se arranca el pelo y se rasca mucho 1208 \N \N \N \N \N +1205 2025-10-25 15:37:30.495639+00 2025-10-25 15:37:30.495647+00 f t [["2025-10-25", "morning"], ["2025-10-25", "afternoon"], ["2025-10-25", "evening"]] rejected 10502 11514 1208 necesita realizarle una sedacion para trasladar a su gato, es muy agresivo 1208 2025-10-25 03:00:00+00 16:00:00 \N \N \N +1209 2025-10-25 18:23:25.497372+00 2025-10-25 18:23:25.497381+00 f t [["2025-10-25", "Mañana"], ["2025-10-25", "Tarde"], ["2025-10-25", "Tarde"]] rejected 10508 11519 1208 Hace más de 24 hs que no orina 1208 2025-10-25 03:00:00+00 16:30:00 \N \N \N +1240 2025-10-27 21:13:25.978902+00 2025-10-27 21:13:25.97891+00 t t [["2025-10-31", "morning"]] pending 10644 11648 \N \N \N 2025-10-31 12:00:00+00 09:00:00 \N \N \N +1237 2025-10-27 20:43:59.896965+00 2025-10-27 20:43:59.896977+00 f t [["2025-10-27", "Tarde"], ["2025-10-27", "Tarde"], ["2025-10-27", "Mañana"]] Confirmado 10635 11639 114 Tiene como una especie de cortecito en la zona cercana al ano 114 2025-10-27 03:00:00+00 19:00:00 131508975940 21 \N +1350 2025-11-01 16:46:25.276784+00 2025-11-01 16:46:25.276793+00 f t [["2025-11-01", "Tarde"], ["2025-11-01", "Mañana"], ["2025-11-01", "Tarde"]] rejected 11203 12186 1208 Diagnóstico de leucemia 1208 \N \N \N \N \N +1556 2025-11-12 17:20:33.709812+00 2025-11-12 17:20:33.709819+00 f t [["2025-11-11", "morning"]] Confirmado 12157 11855 1583 No se especificó motivo de consulta. se solicitó: ... \N 2025-11-11 12:00:00+00 09:00:00 0 100 \N +1341 2025-11-01 13:06:26.799981+00 2025-11-01 13:06:26.79999+00 f t [["2025-11-01", "Mañana"], ["2025-11-01", "Tarde"], ["2025-11-01", "Tarde"]] Confirmado 11173 12155 1208 Ojo Lagrimoso, poco apetito, letargo y estornudos 1208 2025-11-02 03:00:00+00 12:00:00 39473468135 80 \N +1351 2025-11-01 16:55:31.077395+00 2025-11-01 16:55:31.077404+00 f t [["2025-11-04", "morning"], ["2025-11-04", "afternoon"], ["2025-11-04", "evening"]] Confirmado 11206 274 1208 quiere realizar una limpieza dental a su mascota, desea saber costos de la intervencion y las recetas para hacer dichos estudios 1208 2025-11-05 03:00:00+00 19:00:00 132115498374 92 \N +1277 2025-10-29 13:33:45.430745+00 2025-10-29 13:33:45.430754+00 f t [["2025-10-30", "Mañana"], ["2025-10-30", "Tarde"], ["2025-10-30", "Tarde"]] rejected 10833 11821 1208 Vómitos, come poco, toma poca agua, sospecha de insuficiencia renal crónica.\nPuede tomar el turno todo el dia 1208 2025-10-30 03:00:00+00 09:30:00 \N 104 \N +1279 2025-10-29 14:45:54.050176+00 2025-10-29 14:45:54.050185+00 f t [["2025-11-06", "Mañana"], ["2025-11-06", "Tarde"], ["2025-11-06", "Tarde"]] rejected 10847 9655 1583 LA CONSULTA ES POR CONTROL Y PROXIMO VIAJE. 1583 \N \N \N \N \N +1303 2025-10-30 16:13:05.678472+00 2025-10-30 16:13:05.67848+00 f t [["2025-10-31", "morning"], ["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] Confirmado 10985 11955 1208 perfil 4 + orina completa 1208 2025-10-31 03:00:00+00 10:30:00 131835746172 100 \N +1280 2025-10-29 15:12:44.011931+00 2025-10-29 15:12:44.01194+00 f t [["2025-10-31", "morning"], ["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] Confirmado 10854 11840 1208 comenzar con vacunacion. \nCualquier día de Martes a Viernes a partir de las 15hs 1208 2025-11-04 03:00:00+00 15:30:00 WGRXJE27DEP3PGMLN7MYQL 21 \N +1302 2025-10-30 16:12:27.068163+00 2025-10-30 16:12:27.068172+00 f t [["2025-11-05", "Tarde"], ["2025-11-04", "Tarde"], ["2025-11-06", "Tarde"]] in_progress_pay 10982 11973 1208 Le faltan las vacunas x su edad y debe ser revisado para posterior castracion por clínica 1208 2025-11-04 03:00:00+00 17:00:00 \N 1 \N +1329 2025-10-31 20:08:24.541079+00 2025-10-31 20:08:24.541087+00 f t [["2025-11-03", "morning"], ["2025-11-03", "afternoon"], ["2025-11-03", "evening"]] vet_accepted 11105 12084 1208 extraccion de sangre pcr vif/vilef y en lo posible medicion de presion 1208 2025-11-03 03:00:00+00 11:30:00 132011669606 1 \N +1307 2025-10-30 21:25:57.008437+00 2025-10-30 21:25:57.008448+00 f t [["2025-10-30", "afternoon"], ["2025-10-30", "evening"]] Confirmado 11013 2582 113 Hoy tuve un episodio con mis dos perros. Se pelearon entre ellos, a uno de los dos lo llevé inmediatamente a la veterinaria porque tenía cortes en la cara y sangraba mucho.\nEl otro (apolo) estaba bien sin cortes visibles ni sangraba.\nAcabo de llegar y veo que en el cuello si tiene lastimado, tiene sangre en la herida propia de la lastimadura pero no cae sangre ni chorrea. Necesito si puede venir un veterinario a verlo y evaluar si es para coser o si le dan antibiótico y calmantes en caso de que no 113 2025-10-30 03:00:00+00 20:30:00 73724938 92 \N +1355 2025-11-01 21:37:04.104675+00 2025-11-01 21:37:04.105046+00 f t [["2025-11-01", "Tarde"], ["2025-11-02", "Mañana"], ["2025-11-02", "Tarde"]] rejected 11228 12209 114 Encontré una gata con dos crias y hace unos pocos días uno de ellos se siente mal, esta decaido y sufre como si le doliera algo, creo que son parásitos.\nNo tuve Tiempo por trabajo de llevarlos. 114 \N \N \N \N \N +1320 2025-10-31 14:51:43.410412+00 2025-10-31 14:51:43.410419+00 f t [["2025-11-07", "afternoon"]] coordinated 11075 11855 1583 Ecografia abdominal 1583 2025-11-04 03:00:00+00 18:00:00 naranjaX 90 \N +1705 2025-11-20 19:05:04.179528+00 2025-11-20 19:05:04.179543+00 f t [["2025-11-20", "afternoon"]] rejected 13005 12999 1583 \N 1583 2025-11-20 18:00:00+00 15:00:00 \N \N \N +1310 2025-10-30 23:30:53.623864+00 2025-10-30 23:30:53.623872+00 f t [["2025-11-03", "afternoon"]] Confirmado 11020 9641 113 4 sesiones de fisioterapia 113 2025-11-03 03:00:00+00 15:00:00 131296118451 67 \N +1317 2025-10-31 13:43:21.205401+00 2025-10-31 13:43:21.20541+00 f t [["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] rejected 11066 12050 1583 Desparasitacion int + ext 4kg y vacunacion anual 1583 2025-10-31 03:00:00+00 13:30:00 \N \N \N +1314 2025-10-31 00:55:35.874102+00 2025-10-31 00:55:35.874113+00 f t [["2025-10-31", "Mañana"], ["2025-10-31", "Tarde"], ["2025-11-01", "Tarde"]] rejected 11030 12015 1583 Vomito mucho el domingo, fuimos a la guardia. Le dieron durante estos días, inyecciones para los vómitos para Dolor abdominal y antibióticos (porque en el laboratorio dieron un poco altos los glóbulos blancos y la urea) 1583 \N \N \N \N \N +1370 2025-11-03 14:29:32.181028+00 2025-11-03 14:29:32.181036+00 f t [["2025-11-03", "evening"]] Confirmado 11277 11851 1583 Consulta de control 1583 2025-11-03 03:00:00+00 21:00:00 naranjaX 68 \N +1332 2025-10-31 21:49:48.997964+00 2025-10-31 21:49:48.997976+00 f t [["2025-11-01", "Tarde"], ["2025-11-01", "Mañana"], ["2025-11-03", "Mañana"]] rejected 11113 12093 1208 Le duele mucho la pata, posible artrosis? 1208 \N \N \N \N \N +1335 2025-10-31 22:46:58.958532+00 2025-10-31 22:46:58.958543+00 f t [["2025-11-03", "morning"], ["2025-11-03", "afternoon"], ["2025-11-03", "evening"]] Confirmado 11120 11302 1208 telemedicina para revision de estudios 1208 2025-11-03 03:00:00+00 20:00:00 131426871747 88 \N +1344 2025-11-01 14:48:59.772529+00 2025-11-01 14:48:59.772537+00 f t [["2025-11-01", "morning"], ["2025-11-01", "afternoon"]] vet_accepted 11189 12172 1208 Se le torcio una garra 1208 2025-11-01 03:00:00+00 15:00:00 132101160598 92 \N +1323 2025-10-31 16:22:32.220322+00 2025-10-31 16:22:32.220329+00 f t [["2025-11-05", "afternoon"]] rejected 11086 10870 1583 Ultima dosis de sextuple 1583 2025-11-05 18:00:00+00 15:00:00 \N 88 \N +1347 2025-11-01 15:44:22.248489+00 2025-11-01 15:44:22.248501+00 f t [["2025-11-05", "morning"], ["2025-11-05", "afternoon"], ["2025-11-05", "evening"]] Confirmado 11195 10870 1208 Ultima dosis de sextuple 1208 2025-11-05 03:00:00+00 17:00:00 131475221479 88 \N +1338 2025-11-01 12:42:49.246628+00 2025-11-01 12:42:49.246637+00 f t [["2025-11-01", "morning"], ["2025-11-01", "afternoon"], ["2025-11-01", "evening"]] Confirmado 11171 11855 1208 al parecer está con mucho dolor y quiero que lo vea nuevamente la misma doctora que ya lo vio quizás tenga que recetarle algún calmante 1208 2025-11-01 03:00:00+00 17:00:00 131481197997 114 \N +1326 2025-10-31 17:13:48.607253+00 2025-10-31 17:13:48.607264+00 f t [["2025-11-01", "morning"], ["2025-11-01", "afternoon"], ["2025-11-01", "evening"]] rejected 11095 3002 1583 Colocacion microchip,y extraccion para teste leishmania. disponible todo el dia. 1583 2025-11-01 03:00:00+00 10:00:00 \N 70 \N +1306 2025-10-30 17:44:41.972369+00 2025-10-30 17:44:41.972378+00 f t [["2025-10-30", "afternoon"], ["2025-10-30", "evening"]] rejected 10994 11984 1583 Tiene sarpillido todo el cuerpo rojo \N 2025-10-30 03:00:00+00 15:00:00 \N 80 \N +1291 2025-10-29 23:03:41.210674+00 2025-10-29 23:03:41.210683+00 f t [["2025-11-01", "Tarde"], ["2025-11-01", "Mañana"], ["2025-10-31", "Tarde"]] Confirmado 10910 11894 1583 Es un gato q no se deja agarrar, no puedo meterlo en la transportadora. Hace varias semanas q tiene una tos seca, pense q era de pelos pero no vomita ni saca nada 1583 2025-11-01 03:00:00+00 10:00:00 BBVA 114 \N +1281 2025-10-29 15:14:41.449841+00 2025-10-29 15:14:41.449853+00 f t [["2025-10-30", "afternoon"], ["2025-10-30", "evening"]] Confirmado 10855 11745 1583 Ecografia abdominal 1583 2025-10-31 03:00:00+00 08:00:00 131711990370 103 \N +1474 2025-11-07 19:15:52.292254+00 2025-11-07 19:15:52.292264+00 f t [["2025-11-10", "morning"]] in_progress_pay 11685 12325 1583 Teleconsulta posta estudios 1583 2025-11-10 03:00:00+00 11:00:00 \N 114 \N +1348 2025-11-01 16:21:51.939194+00 2025-11-01 16:21:51.939202+00 f t [["2025-11-01", "morning"], ["2025-11-01", "afternoon"], ["2025-11-01", "evening"]] Confirmado 11201 2211 1208 recien vomito con sangre 1208 2025-11-01 03:00:00+00 16:00:00 10175317007251101 92 \N +1333 2025-10-31 21:55:26.749644+00 2025-10-31 21:55:26.749653+00 f t [["2025-11-01", "Mañana"], ["2025-11-02", "Tarde"], ["2025-11-03", "Mañana"]] Confirmado 11115 12093 1208 Dolor de patas, posible artrosis por vejez 1208 2025-11-01 03:00:00+00 11:00:00 131427041769 80 \N +1354 2025-11-01 19:50:42.110065+00 2025-11-01 19:50:42.110336+00 f t [["2025-11-01", "morning"], ["2025-11-01", "afternoon"], ["2025-11-01", "evening"]] Confirmado 11217 11851 1208 Tele consulta para revisión de análisis 1208 2025-11-01 03:00:00+00 19:30:00 76V4MR2Z7I7K7REGNDEZOL 68 \N +1282 2025-10-29 16:05:29.109065+00 2025-10-29 16:05:29.109077+00 f t [["2025-10-29", "morning"], ["2025-10-29", "afternoon"], ["2025-10-29", "evening"]] Confirmado 10864 11818 1208 perfil 7 1208 2025-10-29 03:00:00+00 14:00:00 131716325274 100 \N +1342 2025-11-01 13:31:13.911196+00 2025-11-01 13:31:13.911205+00 f t [["2025-11-01", "morning"], ["2025-11-01", "afternoon"], ["2025-11-01", "evening"]] vet_accepted 11178 12160 1208 Hace 3/4 días el gato vomita todo lo que come, está más flaco 1208 2025-11-01 03:00:00+00 14:00:00 WGRXJE27DQGJX0WJN7MYQL 78 \N +1324 2025-10-31 16:58:57.931001+00 2025-10-31 16:58:57.93101+00 f t [["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] in_progress_pay 11088 12067 1583 tiene un lugar con menos pelito y se rasca, vacunacion anual para ambas gatitas 1583 2025-11-01 03:00:00+00 14:00:00 \N 1 \N +1304 2025-10-30 16:36:10.532905+00 2025-10-30 16:36:10.532913+00 f t [["2025-10-30", "afternoon"], ["2025-10-30", "evening"]] Confirmado 10986 9435 1583 Consulta general 1583 2025-10-31 03:00:00+00 17:30:00 MP 114 \N +1287 2025-10-29 18:30:30.085588+00 2025-10-29 18:30:30.0856+00 f t [["2025-11-05", "morning"], ["2025-11-05", "afternoon"], ["2025-11-05", "evening"]] rejected 10876 9769 1208 vacuna triple felina + corte de garras 1208 2025-11-05 03:00:00+00 16:30:00 \N 89 \N +1285 2025-10-29 17:55:04.561125+00 2025-10-29 17:55:04.56114+00 f t [["2025-10-29", "morning"], ["2025-10-29", "afternoon"], ["2025-10-29", "evening"]] rejected 10871 11856 1208 Tiene sarna y parásitos, 2 meses 1208 2025-10-29 03:00:00+00 17:00:00 \N \N \N +1439 2025-11-06 14:23:30.692774+00 2025-11-06 14:23:30.692781+00 f t [["2025-11-06", "morning"]] Confirmado 11554 12453 1583 Cremacion 1583 2025-11-06 03:00:00+00 10:00:00 132119478891 95 \N +1290 2025-10-29 21:38:31.191049+00 2025-10-29 21:38:31.191059+00 f t [["2025-10-29", "Tarde"], ["2025-10-31", "Tarde"], ["2025-10-30", "Mañana"]] rejected 10900 11884 1583 Chequeo general 1583 2025-10-30 03:00:00+00 14:30:00 \N 68 \N +1286 2025-10-29 18:05:48.139781+00 2025-10-29 18:05:48.139792+00 f t [["2025-10-29", "Tarde"], ["2025-10-29", "Tarde"], ["2025-10-29", "Mañana"]] Confirmado 10872 11857 1208 No camina , no se mueve casi nada y no come hace 2 días 1208 2025-10-29 03:00:00+00 17:30:00 131140037281 92 \N +1311 2025-10-30 23:34:52.952856+00 2025-10-30 23:34:52.952864+00 f t [["2025-11-10", "afternoon"]] Confirmado 11021 9641 113 Sesione de fisio 2/4 \N 2025-11-10 18:00:00+00 15:00:00 000000 67 \N +1283 2025-10-29 16:16:51.477632+00 2025-10-29 16:16:51.477641+00 f t [["2025-10-31", "morning"], ["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] Confirmado 10867 11851 1208 GATA AGRESIVA, busca veterinario con experiencia y receta de gabapentina\nBajo mucho de peso, control general y extraccion de sangre 1208 2025-10-31 03:00:00+00 19:30:00 131759609216 68 \N +1284 2025-10-29 17:13:47.715118+00 2025-10-29 17:13:47.715126+00 f t [["2025-10-29", "evening"], ["2025-10-29", "afternoon"]] vet_accepted 10870 11855 1583 Le cuesta caminar, dolor abdominal 1583 2025-10-29 03:00:00+00 18:00:00 131725442364 114 \N +1315 2025-10-31 12:31:07.580388+00 2025-10-31 12:31:07.580396+00 f t [["2025-11-10", "morning"]] Confirmado 11063 9991 1583 Muetra de sangre 1583 2025-11-10 03:00:00+00 10:00:00 0 100 \N +1318 2025-10-31 14:14:41.480354+00 2025-10-31 14:14:41.480362+00 f t [["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] Confirmado 11071 8869 1583 Eutanasia 1583 2025-10-31 03:00:00+00 18:30:00 131358259777 85 \N +1321 2025-10-31 14:53:48.174173+00 2025-10-31 14:53:48.174183+00 f t [["2025-11-08", "morning"]] Confirmado 11076 11855 1583 Rayos x2 1583 2025-11-08 03:00:00+00 08:30:00 naranjaX 84 \N +1308 2025-10-30 22:30:19.796136+00 2025-10-30 22:30:19.796147+00 f t [["2025-10-30", "Tarde"], ["2025-10-31", "Tarde"], ["2025-11-01", "Tarde"]] rejected 11016 12005 113 Estornudos recurrentes y de paso vacunarla. No sé bien cómo es el servicio de ustedes. \N 2025-10-31 03:00:00+00 10:30:00 \N 14 \N +1327 2025-10-31 17:16:22.450874+00 2025-10-31 17:16:22.450885+00 f t [["2025-11-03", "Mañana"], ["2025-11-01", "Tarde"], ["2025-11-01", "Tarde"]] rejected 11094 12073 1208 Rx de columna cervival bajo /C4 C7, 1208 \N \N \N \N \N +1336 2025-10-31 23:03:43.851774+00 2025-10-31 23:03:43.851783+00 f t [["2025-10-31", "Tarde"], ["2025-11-01", "Mañana"], ["2025-11-02", "Mañana"]] rejected 11124 12105 1208 Evacuación con sangre y vomito 1208 2025-11-01 03:00:00+00 10:00:00 \N \N \N +1339 2025-11-01 12:50:51.681065+00 2025-11-01 12:50:51.681074+00 f t [["2025-11-01", "morning"], ["2025-11-01", "afternoon"], ["2025-11-01", "evening"]] Confirmado 11147 12121 1208 No come, se mueve poco y camina raro, esta como si tuviera algo en la garganta. Es una gata que no se deja agarrar, ahora se siente tan mal que se deja agarrr 1208 2025-11-01 03:00:00+00 11:00:00 L18MKX9RX17EKV719O6WYV 1 \N +1293 2025-10-30 01:01:24.552941+00 2025-10-30 01:01:24.55295+00 f t [["2025-10-30", "Mañana"], ["2025-10-30", "Tarde"], ["2025-10-30", "Tarde"]] rejected 10927 11911 1208 Desde hace unas horas tiene baba en la boca,no come ni toma agua aún ofreciéndole pollito que es lo que más le gusta,se lo nota apático y retraido 1208 2025-10-30 03:00:00+00 17:00:00 \N \N \N +1334 2025-10-31 22:41:10.177253+00 2025-10-31 22:41:10.177262+00 f t [["2025-10-31", "Tarde"], ["2025-11-01", "Mañana"], ["2025-11-01", "Tarde"]] rejected 11118 12099 1208 Chequeo general y vacuna antirrábica 1208 \N \N \N \N \N +1299 2025-10-30 13:34:22.626645+00 2025-10-30 13:34:22.626655+00 f t [["2025-10-31", "Tarde"], ["2025-10-31", "Tarde"], ["2025-10-31", "Mañana"]] rejected 10966 11956 1208 Tiene hinchado la zona de la cola. 1208 \N \N \N \N \N +1359 2025-11-02 18:54:47.743654+00 2025-11-02 18:54:47.743663+00 t t [["2025-11-11", "afternoon"], ["2025-11-11", "evening"]] pending 11253 12236 \N \N \N \N \N \N \N \N +1296 2025-10-30 12:07:17.981688+00 2025-10-30 12:07:17.981697+00 f t [["2025-10-31", "Tarde"], ["2025-10-31", "Tarde"], ["2025-10-31", "Mañana"]] Confirmado 10959 11946 1208 La adopte ayer , y se queda en el sillon , no quiere comer, hoy hizo pis y caca bien 1208 2025-10-30 03:00:00+00 18:00:00 131759609216 1 \N +1292 2025-10-29 23:47:40.525164+00 2025-10-29 23:47:40.525172+00 f t [["2025-11-01", "morning"], ["2025-11-01", "afternoon"], ["2025-11-01", "evening"]] Confirmado 10917 11851 1208 perfil completo sin orina 1208 2025-11-01 03:00:00+00 09:00:00 131759609216 100 \N +1459 2025-11-06 21:23:23.211708+00 2025-11-06 21:23:23.211719+00 f t [["2025-11-07", "morning"]] Confirmado 11597 11825 1583 Extraccion de sangre para perfil completo sin orina 1583 2025-11-07 03:00:00+00 08:30:00 0 85 \N +1364 2025-11-03 12:52:09.855035+00 2025-11-03 12:52:09.855048+00 t t [["2025-11-04", "morning"], ["2025-11-04", "afternoon"]] pending 11268 11955 \N \N \N \N \N \N \N \N +1297 2025-10-30 13:06:35.732522+00 2025-10-30 13:06:35.732531+00 f t [["2025-10-30", "Tarde"], ["2025-10-31", "Mañana"], ["2025-10-31", "Tarde"]] Confirmado 10964 11952 1208 VACUNACION Y CONTROL CLINICO 1208 2025-10-31 03:00:00+00 20:00:00 131824448124 80 \N +1298 2025-10-30 13:32:47.636173+00 2025-10-30 13:32:47.636181+00 f t [["2025-10-31", "morning"], ["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] Confirmado 10967 11955 1208 DERIVADO DE RAPELA.\nPerfil 4 + orina completa 1208 2025-10-31 03:00:00+00 09:00:00 131835746172 85 \N +1300 2025-10-30 14:25:28.837828+00 2025-10-30 14:25:28.837836+00 f t [["2025-10-30", "morning"], ["2025-10-30", "afternoon"], ["2025-10-30", "evening"]] Confirmado 10973 11962 1208 Corte de garras\npuede hoy o mañana, todo el dia 1208 2025-10-30 03:00:00+00 17:00:00 131854248066 104 \N +1305 2025-10-30 16:41:10.342617+00 2025-10-30 16:41:10.342628+00 f t [["2025-10-31", "morning"], ["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] Confirmado 10987 11977 1208 DERIVADO RAPELA\npara mañana o sabado, por la mañana 1208 2025-10-31 03:00:00+00 08:00:00 131265748825 85 \N +1294 2025-10-30 08:33:01.360513+00 2025-10-30 08:33:01.360522+00 f t [["2025-10-30", "Mañana"], ["2025-10-30", "Tarde"], ["2025-10-30", "Tarde"]] in_progress_pay 10953 11938 1208 Perrita tiene vómito y diarrea 1208 2025-10-30 03:00:00+00 11:30:00 \N 80 \N +1312 2025-10-30 23:41:38.747326+00 2025-10-30 23:41:38.747334+00 f t [["2025-11-17", "evening"], ["2025-11-17", "afternoon"]] Confirmado 11022 9641 113 3era sesiones 113 2025-11-17 03:00:00+00 17:00:00 00000000 67 \N +1295 2025-10-30 10:59:40.476095+00 2025-10-30 10:59:40.476104+00 f t [["2025-10-31", "Tarde"], ["2025-11-01", "Tarde"], ["2025-11-02", "Tarde"]] Confirmado 10957 11943 1208 Está extremadamente llorona, pero no parece dolerle nada, es... Emocional, quiere estar pegada a nosotros, si la acariciamos se calma, si nos alejamos más de un metro comienzan los lamentos. Es como que tuviera las emociones a full... Puede ser celo? cuando no estamos llora incluso con aullido basset (la escuchan en la Base Marambio) 1208 2025-10-31 03:00:00+00 17:00:00 RD06ZO9WVV87V4YDXN5GP7X 1 \N +1260 2025-10-28 19:40:55.461827+00 2025-10-28 19:40:55.461839+00 f t [["2025-10-28", "Mañana"], ["2025-10-28", "Tarde"], ["2025-10-28", "Tarde"]] Confirmado 10762 11398 1583 Diarrea y vomito con sangre 1583 2025-10-28 03:00:00+00 19:00:00 Brubaank 90 \N +1316 2025-10-31 13:06:37.376275+00 2025-10-31 13:06:37.376286+00 f t [["2025-11-12", "morning"], ["2025-11-12", "afternoon"]] rejected 11064 10764 1583 Ecografia abdominal, en el dia lo mas temprano posible 1583 2025-11-12 03:00:00+00 10:00:00 \N \N \N +1325 2025-10-31 17:07:07.740093+00 2025-10-31 17:07:07.740102+00 f t [["2025-11-01", "Tarde"], ["2025-11-03", "Mañana"], ["2025-11-03", "Tarde"]] rejected 11089 12068 1583 Reuma 1583 \N \N \N \N \N +1322 2025-10-31 15:19:07.996563+00 2025-10-31 15:19:07.996575+00 f t [["2025-10-31", "afternoon"]] Confirmado 11081 12061 1583 Nutricion 1583 2025-10-31 03:00:00+00 12:30:00 LOEJWV9JZ0YXMO832QMD0G 21 \N +1319 2025-10-31 14:17:33.697511+00 2025-10-31 14:17:33.69752+00 f t [["2025-10-31", "evening"], ["2025-10-31", "afternoon"]] Confirmado 11072 11503 1583 Ecografia abdominal 1583 2025-10-31 03:00:00+00 17:00:00 D4RO172VZ18W4YW0NKJ3QE 90 \N +1328 2025-10-31 17:16:31.625374+00 2025-10-31 17:16:31.625386+00 f t [["2025-11-05", "morning"]] rejected 11096 9641 1583 consulta de nutricion 1583 2025-11-05 03:00:00+00 09:00:00 \N 21 \N +1340 2025-11-01 13:05:24.622629+00 2025-11-01 13:05:24.622637+00 f t [["2025-11-01", "morning"], ["2025-11-01", "afternoon"], ["2025-11-01", "evening"]] Confirmado 11175 5249 1208 debe adminitrarle 10mg de dexametasona inyectable, paciente con cancer terminal 1208 2025-11-01 03:00:00+00 13:00:00 131483519731 68 \N +1337 2025-11-01 01:53:27.789132+00 2025-11-01 01:53:27.789141+00 f t [["2025-11-01", "Mañana"], ["2025-11-01", "Tarde"], ["2025-11-02", "Mañana"]] rejected 11139 12121 1208 No come, se mueve poco y camina raro 1208 2025-11-01 03:00:00+00 11:00:00 \N \N \N +1343 2025-11-01 13:48:13.774493+00 2025-11-01 13:48:13.774506+00 f t [["2025-11-01", "Tarde"], ["2025-11-01", "Mañana"], ["2025-11-01", "Tarde"]] rejected 11179 12161 1208 Tiene cistitis 1208 \N \N \N \N \N +1349 2025-11-01 16:45:54.128033+00 2025-11-01 16:45:54.128042+00 f t [["2025-11-05", "morning"], ["2025-11-05", "afternoon"], ["2025-11-05", "evening"]] Confirmado 11205 9769 1208 triple felina + corte de garras a los dos 1208 2025-11-05 03:00:00+00 16:30:00 R7ZG0QNDW0J3O1GG9EXYPO 89 \N +1345 2025-11-01 15:05:55.175664+00 2025-11-01 15:05:55.175673+00 f t [["2025-11-01", "Mañana"], ["2025-11-01", "Tarde"], ["2025-11-01", "Tarde"]] rejected 11191 12174 1208 Es un maltés de 12 años que hoy empezó con vómitos y está temblando, no quiso comer ni levantarse de la cama. Siempre está activo, es muy raro que no se quiera levantar. Los vómitos son en mayor cantidad que lo habitual 1208 2025-11-01 03:00:00+00 15:30:00 \N \N \N +1346 2025-11-01 15:09:43.434593+00 2025-11-01 15:09:43.434601+00 f t [["2025-11-01", "Tarde"], ["2025-11-01", "Tarde"], ["2025-11-01", "Mañana"]] rejected 11192 12175 1208 pus en el útero 1208 2025-11-01 03:00:00+00 15:00:00 \N \N \N +1457 2025-11-06 20:50:26.325653+00 2025-11-06 20:50:26.325662+00 f t [["2025-11-07", "afternoon"], ["2025-11-07", "evening"]] vet_accepted 11594 6033 1583 2 vacunacion anual de felinos 1583 2025-11-13 03:00:00+00 20:30:00 MP 80 \N +1357 2025-11-01 23:07:53.409999+00 2025-11-01 23:07:53.410007+00 f t [["2025-11-02", "morning"], ["2025-11-02", "afternoon"], ["2025-11-02", "evening"]] Confirmado 11232 3002 1208 vacunacion + microchip 1208 2025-11-02 03:00:00+00 11:00:00 39466403423 70 \N +1419 2025-11-05 16:36:46.412597+00 2025-11-05 16:36:46.412605+00 f t [["2025-11-06", "morning"], ["2025-11-06", "afternoon"], ["2025-11-06", "evening"]] Confirmado 11474 12325 1208 perfil 7 1208 2025-11-06 03:00:00+00 15:30:00 132600955350 100 \N +1403 2025-11-04 19:20:17.91281+00 2025-11-04 19:20:17.912822+00 f t [["2025-11-05", "morning"], ["2025-11-05", "afternoon"], ["2025-11-05", "evening"]] Confirmado 11408 12087 1208 Mi perra tiene 15 años y tiene un bulto en la vejiga. Esta con tratamiento de tramado, y meloxicam, Esta con un poco de perdidas y la noto decaida 1208 2025-11-05 03:00:00+00 18:00:00 132482752478 94 \N +1450 2025-11-06 16:47:10.600106+00 2025-11-06 16:47:10.600113+00 f t [["2025-11-10", "morning"], ["2025-11-10", "afternoon"], ["2025-11-10", "evening"]] Confirmado 11572 274 1208 consulta cardiologica precirugia 1208 2025-11-11 03:00:00+00 16:00:00 132165063733 82 \N +1358 2025-11-02 17:51:24.551546+00 2025-11-02 17:51:24.551554+00 f t [["2025-11-02", "Tarde"], ["2025-11-02", "Tarde"], ["2025-11-02", "Mañana"]] Confirmado 11248 6688 114 Crash está con carraspeo como si le molestase la garganta y a veces vomita blanco y transparente, le molesta la garganta 114 2025-11-02 03:00:00+00 17:00:00 132225807538 92 \N +1356 2025-11-01 22:24:56.763784+00 2025-11-01 22:24:56.763796+00 f t [["2025-11-01", "Tarde"], ["2025-11-02", "Mañana"], ["2025-11-02", "Tarde"]] rejected 11231 12213 114 Tenemos un perro san bernardo, con cálculos uretrales y vesicales, necesitamos un dr para colocar zonda 114 \N \N \N \N \N +1557 2025-11-12 17:35:50.986146+00 2025-11-12 17:35:50.986155+00 f t [["2025-11-12", "morning"], ["2025-11-12", "afternoon"], ["2025-11-12", "evening"]] Confirmado 12158 13037 1208 perfil 7 1208 2025-11-12 03:00:00+00 15:30:00 0 100 \N +1411 2025-11-05 12:10:40.775483+00 2025-11-05 12:10:40.775491+00 f t [["2025-11-07", "Tarde"], ["2025-11-07", "Tarde"], ["2025-11-12", "Tarde"]] Confirmado 11452 12422 1208 Está perdiendo demasiado pelo y la piel hirritada. Además empezó a hacer pis en cualquier lado 1208 2025-11-07 03:00:00+00 17:00:00 132606334428 1 \N +1662 2025-11-19 12:00:42.176621+00 2025-11-19 12:00:42.176633+00 f t [["2025-11-19", "Tarde"], ["2025-11-20", "Mañana"], ["2025-11-19", "Mañana"]] Confirmado 12809 13744 1208 Hace 3/4 días q no quiere comer o come poquito, está con vómitos. 1208 2025-11-19 03:00:00+00 15:00:00 0 91 \N +1460 2025-11-06 21:26:21.620955+00 2025-11-06 21:26:21.620965+00 f t [["2025-11-07", "afternoon"], ["2025-11-07", "evening"]] vet_accepted 11598 9670 1583 Ecografia abdomial 1583 2025-11-07 03:00:00+00 20:00:00 132793383916 90 \N +1416 2025-11-05 15:05:14.473444+00 2025-11-05 15:05:14.473453+00 f t [["2025-11-06", "morning"], ["2025-11-06", "afternoon"], ["2025-11-06", "evening"]] vet_accepted 11468 12438 1208 vacunacion anual 1208 2025-11-05 03:00:00+00 14:00:00 131999645885 80 \N +1469 2025-11-07 14:16:34.666177+00 2025-11-07 14:16:34.666185+00 f t [["2025-11-10", "morning"]] Confirmado 11656 1734 1583 No se especificó motivo de consulta. seMuetras para perfil general completo sin orina 1583 2025-11-10 03:00:00+00 11:30:00 0 100 \N +1664 2025-11-19 12:39:31.344788+00 2025-11-19 12:39:31.344796+00 f t [["2025-11-19", "Mañana"], ["2025-11-19", "Tarde"], ["2025-11-19", "Tarde"]] rejected 12818 13754 1208 Parece q esta estrenido\nXq nopuede acer parece \nSu necesidad 1208 2025-11-19 03:00:00+00 14:00:00 \N 94 \N +1464 2025-11-07 04:55:07.668829+00 2025-11-07 04:55:07.668837+00 f t [["2025-11-07", "Tarde"], ["2025-11-08", "Mañana"], ["2025-11-10", "Mañana"]] rejected 11623 12578 1583 Orina mucho, adelgazada, come poca comida seca, pide solo sobrecitos de comida húmeda, vomita casi todos los días, poca cantidad 1583 2025-11-07 03:00:00+00 15:00:00 \N \N \N +1424 2025-11-05 19:50:31.144614+00 2025-11-05 19:50:31.144622+00 f t [["2025-11-06", "afternoon"]] Confirmado 11486 12451 1583 Vacunacion anual y desparasitacion interna y externa, 4,5kg, felino 1583 2025-11-06 03:00:00+00 17:00:00 132031959273 68 \N +1454 2025-11-06 19:57:33.488132+00 2025-11-06 19:57:33.488139+00 f t [["2025-11-07", "afternoon"], ["2025-11-07", "morning"], ["2025-11-07", "evening"]] Confirmado 11587 123 1208 vacunacion anual y corte de garras 1208 2025-11-12 03:00:00+00 18:30:00 39544320216 1 \N +1475 2025-11-07 21:38:39.079296+00 2025-11-07 21:38:39.079306+00 f t [["2025-11-08", "morning"], ["2025-11-08", "afternoon"], ["2025-11-08", "evening"]] Confirmado 11693 12287 1208 volvemos a enviar muestra de orina 1208 2025-11-08 03:00:00+00 10:00:00 132935774420 100 \N +1429 2025-11-05 21:06:16.618127+00 2025-11-05 21:06:16.618138+00 f t [["2025-11-06", "afternoon"]] Confirmado 11495 12459 1583 Alergia en la piel , enrojecida , se rasca mucho esta molesto y esta inquieto 1583 2025-11-06 03:00:00+00 10:00:00 132640990140 75 \N +1480 2025-11-08 12:27:38.944274+00 2025-11-08 12:27:38.944283+00 f t [["2025-11-08", "Tarde"], ["2025-11-08", "Mañana"], ["2025-11-08", "Tarde"]] rejected 11733 12684 1208 Mi perra esta con tos y algo de falta de apetito 1208 2025-11-08 03:00:00+00 11:30:00 \N \N \N +1440 2025-11-06 14:41:00.477595+00 2025-11-06 14:41:00.477603+00 f t [["2025-11-06", "morning"], ["2025-11-06", "afternoon"], ["2025-11-06", "evening"]] Confirmado 11556 3981 1208 El gato tiene los mismos síntomas y lesiones en la piel x los q consulté 2 veces (última consulta 19 septiembre 1208 2025-11-06 03:00:00+00 18:00:00 132727396216 92 \N +1490 2025-11-08 19:35:14.267261+00 2025-11-08 19:35:14.267269+00 f t [["2025-11-10", "afternoon"], ["2025-11-10", "evening"], ["2025-11-10", "morning"]] Confirmado 11782 11855 1208 control de estudios complementarios 1208 2025-11-10 03:00:00+00 19:00:00 133052430882 114 \N +1435 2025-11-06 03:29:41.44866+00 2025-11-06 03:29:41.448669+00 f t [["2025-11-07", "Tarde"], ["2025-11-11", "Tarde"], ["2025-11-12", "Tarde"]] Confirmado 11521 11481 1208 Vacunas 1208 2025-11-11 03:00:00+00 15:00:00 132143626367 1 \N +1495 2025-11-09 14:55:45.670428+00 2025-11-09 14:55:45.67044+00 f t [["2025-11-09", "Mañana"], ["2025-11-09", "Tarde"], ["2025-11-09", "Tarde"]] rejected 11835 12783 114 Se le arrancaron dos uñas cuando se les enganchó. 114 2025-11-09 03:00:00+00 13:30:00 \N \N \N +1500 2025-11-09 19:43:30.234021+00 2025-11-09 19:43:30.234029+00 f t [["2025-11-10", "afternoon"]] Confirmado 11855 12803 114 Ecografía Abdominal 114 2025-11-10 03:00:00+00 15:30:00 86VRPQ2GMD7E7K302GLY0M 90 \N +1505 2025-11-09 20:10:07.909356+00 2025-11-09 20:10:07.909366+00 f t [["2025-11-09", "evening"]] Confirmado 11863 12810 114 Dolor por displacia cervical y artitris 114 2025-11-09 03:00:00+00 19:30:00 132555285131 99 \N +1425 2025-11-05 19:53:12.369149+00 2025-11-05 19:53:12.36916+00 f t [["2025-11-07", "morning"], ["2025-11-07", "afternoon"], ["2025-11-07", "evening"]] Confirmado 11487 12446 1208 extraccion de sangre por pcr vif / vilef 1208 2025-11-07 03:00:00+00 12:00:00 132627912526 100 \N +1555 2025-11-12 17:10:10.439931+00 2025-11-12 17:10:10.43994+00 f t [["2025-11-12", "afternoon"], ["2025-11-12", "evening"]] rejected 12155 13095 1583 Vomito hoy, consulta general 1583 2025-11-12 03:00:00+00 17:00:00 \N 1 \N +1361 2025-11-02 19:44:29.793883+00 2025-11-02 19:44:29.793892+00 f t [["2025-12-07", "afternoon"], ["2025-12-07", "morning"]] Confirmado 11256 3002 114 Certificado anual + Desparacitación interna y externa 114 2025-12-07 03:00:00+00 11:00:00 39476542573 70 \N +1496 2025-11-09 15:03:52.134548+00 2025-11-09 15:03:52.134557+00 f t [["2025-11-09", "Mañana"], ["2025-11-09", "Tarde"], ["2025-11-09", "Tarde"]] rejected 11836 12785 114 Urgencia, caída del 8 pido y pecho comprimido 114 2025-11-09 03:00:00+00 15:30:00 \N \N \N +1366 2025-11-03 13:53:39.237534+00 2025-11-03 13:53:39.237542+00 f t [["2025-11-04", "morning"]] Confirmado 11271 12252 1583 2 Vacunacion anual y despesrasitacion felina int y ext para 5 y 8kg, disponible de manana 8:30h 1583 2025-11-04 03:00:00+00 08:30:00 132379639534 80 \N +1446 2025-11-06 16:33:24.915288+00 2025-11-06 16:33:24.915296+00 f t [["2025-11-06", "Tarde"], ["2025-11-06", "Tarde"], ["2025-11-07", "Mañana"]] vet_accepted 11566 12531 1583 Mucho dolor abdominal, vomito y diarrea 1583 2025-11-06 03:00:00+00 17:00:00 132147061611 103 \N +1363 2025-11-03 10:13:35.588372+00 2025-11-03 10:13:35.588383+00 f t [["2025-11-03", "Mañana"], ["2025-11-03", "Tarde"], ["2025-11-03", "Tarde"]] rejected 11266 12248 1583 Está con cistitis y cálculos. Le pusieron una sonda y se la tuvieron que quitar al segundo día porque se la dobló. No toma liquido desde ayer a las 11 am. Comió un poquiti a las 11 am de ayer y loego otro poquito a las 20hs. A la 1.30 am vomitó. Le recetaron uroflogin pero no pude administrar la ultima dosis. Hace poco pis y con mucha sangre. 1583 \N \N \N \N \N +1365 2025-11-03 12:52:14.090332+00 2025-11-03 12:52:14.09034+00 f t [["2025-11-04", "morning"], ["2025-11-04", "afternoon"]] coordinated 11269 11955 1583 Ecografia abdominal, idealmente de manana, el dia que se pueda 1583 2025-11-04 03:00:00+00 10:00:00 \N \N \N +1623 2025-11-16 19:12:18.831647+00 2025-11-16 19:12:18.831656+00 f t [["2025-11-17", "afternoon"]] vet_accepted 12508 13451 114 Vacunación anual 114 2025-11-21 03:00:00+00 19:00:00 0V1JXON1LDOLJRJPNZ64EL 88 \N +1451 2025-11-06 17:25:57.943972+00 2025-11-06 17:25:57.94398+00 f t [["2025-11-07", "Mañana"], ["2025-11-07", "Tarde"], ["2025-11-07", "Tarde"]] vet_accepted 11576 11503 1583 Sigue con vómitos recurrentes. Ha dejado de comer y de beber 1583 2025-11-07 03:00:00+00 10:00:00 8D0Q619L0Y1EKOELN7JZ5R 1 \N +1362 2025-11-02 19:51:42.351367+00 2025-11-02 19:51:42.351376+00 f t [["2025-11-06", "Mañana"], ["2025-11-06", "Tarde"], ["2025-11-06", "Tarde"]] Confirmado 11255 12237 1583 Vacunacion 1583 2025-11-05 03:00:00+00 18:30:00 131700184695 70 \N +1404 2025-11-04 19:42:38.815111+00 2025-11-04 19:42:38.815118+00 f t [["2025-11-06", "morning"]] Confirmado 11411 12380 1583 Chequeo general 1583 2025-11-06 03:00:00+00 10:00:00 131904694719 80 \N +1455 2025-11-06 20:23:09.242068+00 2025-11-06 20:23:09.242075+00 f t [["2025-11-07", "morning"]] Confirmado 11589 12527 1583 Extraccion para perfil general completo con orina, upc, calcio, fosforo, ionograma serico 1583 2025-11-07 03:00:00+00 09:00:00 Santander 88 \N +1511 2025-11-10 14:37:55.567865+00 2025-11-10 14:37:55.567874+00 f t [["2025-11-26", "Tarde"], ["2025-11-27", "Tarde"], ["2025-11-15", "Tarde"]] vet_accepted 11909 12857 1583 Revisión general por diarrea constante. Por otro lado, suele aparecer aparecerle en patas y cuello zonas sin pelo, después se le va, pero el tema es frecuente. 1583 2025-11-14 03:00:00+00 16:00:00 39602354633 1 \N +1412 2025-11-05 13:09:32.923255+00 2025-11-05 13:09:32.923264+00 f t [["2025-11-05", "morning"], ["2025-11-05", "afternoon"], ["2025-11-05", "evening"]] Confirmado 11457 12364 1208 pcr vif/ivilef 1208 2025-11-05 03:00:00+00 13:30:00 ORD6LEN8PQ6MPK5ONM1Y30 100 \N +1658 2025-11-18 20:10:28.717963+00 2025-11-18 20:10:28.717975+00 f t [["2025-11-22", "afternoon"]] Confirmado 12734 13648 1583 No se especificó motivo de consulta. se solicitó: ... \N 2025-11-22 03:00:00+00 12:30:00 WY7ZEPN6MQ7LXEOQ2Q0M51 82 \N +1516 2025-11-10 19:53:51.164899+00 2025-11-10 19:53:51.164906+00 f t [["2025-11-13", "afternoon"]] Confirmado 11942 12866 1583 Control cardiologico prequirurgico 1583 2025-11-13 03:00:00+00 15:00:00 132704210009 82 \N +1420 2025-11-05 16:37:47.57985+00 2025-11-05 16:37:47.579859+00 f t [["2025-11-06", "morning"], ["2025-11-06", "afternoon"], ["2025-11-06", "evening"]] Confirmado 11475 12325 1208 ecografia abdominal 1208 2025-11-06 03:00:00+00 14:00:00 0 90 \N +1461 2025-11-06 23:02:17.752741+00 2025-11-06 23:02:17.75275+00 f t [["2025-11-07", "morning"], ["2025-11-07", "afternoon"], ["2025-11-07", "evening"]] Confirmado 11605 12361 113 Extraccion para prequierugicos 113 2025-11-07 03:00:00+00 14:30:00 XJ8G7V5SDJ4E5PMW9EMPYR 85 \N +1470 2025-11-07 15:16:07.219224+00 2025-11-07 15:16:07.219232+00 f t [["2025-11-08", "morning"]] Confirmado 11660 11644 1583 Muestra de orina para urocultivo 1583 2025-11-08 03:00:00+00 11:00:00 132279312239 100 \N +1465 2025-11-07 12:21:07.611069+00 2025-11-07 12:21:07.611078+00 f t [["2025-11-07", "afternoon"]] Confirmado 11641 12361 1583 Muetra de prequirurgico 1583 2025-11-07 03:00:00+00 15:00:00 0 100 \N +1430 2025-11-05 21:28:12.708318+00 2025-11-05 21:28:12.708326+00 f t [["2025-09-12", "afternoon"]] vet_accepted 11496 10559 1583 Dolor al orinar. 1583 2025-09-12 03:00:00+00 15:30:00 naranjaX 92 \N +1434 2025-11-06 03:00:14.857419+00 2025-11-06 03:00:14.857429+00 f t [["2025-11-06", "Mañana"], ["2025-11-07", "Mañana"], ["2025-11-08", "Mañana"]] rejected 11520 12486 1208 Tiene algo en la parte del ano que hace que derrame gotitas de sangre 1208 \N \N \N \N \N +1441 2025-11-06 15:46:23.52147+00 2025-11-06 15:46:23.521479+00 f t [["2025-11-06", "afternoon"]] Confirmado 11560 12361 1583 Ecografia abdominal 1583 2025-11-06 03:00:00+00 16:00:00 PDX4OGNYGJVQDVKVN0L6EY 90 \N +1486 2025-11-08 17:26:38.512076+00 2025-11-08 17:26:38.512087+00 f t [["2025-11-08", "morning"], ["2025-11-08", "afternoon"], ["2025-11-08", "evening"]] Confirmado 11768 12721 1208 hace unos días que comenzó con tos y con poco apetito 1208 2025-11-08 03:00:00+00 15:30:00 0 80 \N +1481 2025-11-08 12:29:56.967305+00 2025-11-08 12:29:56.967316+00 f t [["2025-11-10", "morning"], ["2025-11-10", "afternoon"], ["2025-11-10", "evening"]] Confirmado 11734 3430 1208 2 placas 1208 2025-11-11 03:00:00+00 14:00:00 133041470734 84 \N +1491 2025-11-08 19:48:53.914466+00 2025-11-08 19:48:53.914477+00 f t [["2025-11-10", "morning"], ["2025-11-10", "afternoon"], ["2025-11-10", "evening"]] Confirmado 11783 12446 1208 pcr vif 1208 2025-11-10 03:00:00+00 20:00:00 0 94 \N +1501 2025-11-09 19:43:49.289025+00 2025-11-09 19:43:49.289033+00 f t [["2025-11-10", "afternoon"]] vet_accepted 11856 12803 114 Extracción de sangre (Perfil General Completo sin Orina) 114 2025-11-10 03:00:00+00 17:00:00 000000 112 \N +1367 2025-11-03 13:59:32.974221+00 2025-11-03 13:59:32.97423+00 f t [["2025-11-07", "afternoon"]] Confirmado 11272 6885 1583 consulta cardiologica de control 1583 2025-11-07 03:00:00+00 17:00:00 131711023615 82 \N +1447 2025-11-06 16:39:54.265966+00 2025-11-06 16:39:54.26598+00 f t [["2025-11-10", "morning"], ["2025-11-10", "afternoon"], ["2025-11-10", "evening"]] Confirmado 11567 274 1208 perfil general completo con orina 1208 2025-11-11 03:00:00+00 08:30:00 132752057880 85 \N +1506 2025-11-10 01:38:23.925967+00 2025-11-10 01:38:23.925975+00 f t [["2025-11-10", "Tarde"], ["2025-11-11", "Mañana"], ["2025-11-12", "Mañana"]] Confirmado 11872 12819 1583 Perro y gato con picazon en la cola, se rascan. disponible hoy a la mananao manana a la manana 1583 2025-11-10 03:00:00+00 18:00:00 Santander 88 \N +1442 2025-11-06 15:50:41.759586+00 2025-11-06 15:50:41.759595+00 f t [["2025-11-10", "morning"], ["2025-11-10", "afternoon"], ["2025-11-10", "evening"]] Confirmado 11561 4512 1208 vacunas sextuple para los dos 1208 2025-11-10 03:00:00+00 20:00:00 39543014871 68 \N +1431 2025-11-06 00:49:27.422493+00 2025-11-06 00:49:27.422507+00 f t [["2025-11-10", "Mañana"], ["2025-11-10", "Tarde"], ["2025-11-10", "Tarde"]] rejected 11509 12472 1208 No tiene ningún síntoma solo quiero hacerle el examen por prevención. 1208 \N \N \N \N \N +1452 2025-11-06 18:24:07.591666+00 2025-11-06 18:24:07.591678+00 f t [["2025-11-08", "morning"], ["2025-11-08", "afternoon"], ["2025-11-08", "evening"]] Confirmado 11581 8455 1208 vacuna leucemia felina + antirrabica 1208 2025-11-08 03:00:00+00 15:00:00 0 79 \N +1512 2025-11-10 15:19:32.09082+00 2025-11-10 15:19:32.090828+00 f t [["2025-11-10", "Tarde"], ["2025-11-10", "Tarde"], ["2025-11-11", "Mañana"]] rejected 11916 12865 1583 Sarpullido e inflamación zona cuello 1583 \N \N \N \N \N +1421 2025-11-05 18:09:49.586621+00 2025-11-05 18:09:49.586633+00 f t [["2025-11-06", "morning"], ["2025-11-06", "afternoon"], ["2025-11-06", "evening"]] Confirmado 11479 12446 1208 extraccion de sangre pcr vif/vilef 1208 2025-11-07 03:00:00+00 12:00:00 132627912526 94 \N +1369 2025-11-03 14:15:37.94968+00 2025-11-03 14:15:37.949688+00 f t [["2025-11-04", "morning"], ["2025-11-04", "afternoon"]] Confirmado 11276 12255 1583 Aulla mucho por celo 1583 2025-11-04 03:00:00+00 11:00:00 132314021682 80 \N +1413 2025-11-05 13:22:52.253021+00 2025-11-05 13:22:52.253029+00 f t [["2025-11-05", "Mañana"], ["2025-11-06", "Mañana"], ["2025-11-05", "Tarde"]] rejected 11459 12428 1208 Reacción alérgica, trae mucho comezón e inflamación en la cara. 1208 \N \N \N \N \N +1410 2025-11-04 23:36:50.038969+00 2025-11-04 23:36:50.038976+00 f t [["2025-11-04", "evening"]] rejected 11433 12155 113 Revision del paciente 113 2025-11-04 03:00:00+00 21:00:00 \N \N \N +1558 2025-11-12 17:46:28.520115+00 2025-11-12 17:46:28.520128+00 f t [["2025-11-13", "afternoon"]] Confirmado 12159 13097 1583 Rayos 1583 2025-11-13 03:00:00+00 17:00:00 132958332475 84 \N +1456 2025-11-06 20:32:06.364602+00 2025-11-06 20:32:06.364611+00 f t [["2025-11-07", "afternoon"], ["2025-11-07", "evening"]] Confirmado 11591 12527 1583 Ecografia abdominal 1583 2025-11-07 03:00:00+00 15:00:00 Santander 90 \N +1213 2025-10-25 23:31:02.379035+00 2025-10-25 23:31:02.379045+00 f t [["2025-10-26", "Mañana"], ["2025-10-25", "Tarde"], ["2025-10-26", "Tarde"]] in_progress_vet 10525 11541 114 Le duele la para delantera y llora al apoyarla 114 2025-10-26 03:00:00+00 14:00:00 \N \N \N +1426 2025-11-05 20:07:57.199879+00 2025-11-05 20:07:57.199891+00 f t [["2025-11-06", "morning"]] Confirmado 11489 12453 1583 No se especificó motivo de consulta. se solicitó: ... \N 2025-11-06 03:00:00+00 10:00:00 132626878202 113 \N +1517 2025-11-10 19:54:40.761945+00 2025-11-10 19:54:40.761952+00 f t [["2025-11-12", "afternoon"]] Confirmado 11943 12866 1583 Muetra prequirurgico 1583 2025-11-12 03:00:00+00 11:00:00 0 100 \N +1471 2025-11-07 16:44:45.484546+00 2025-11-07 16:44:45.484553+00 f t [["2025-11-24", "afternoon"]] Confirmado 11666 10358 1583 -Mulan: desparasitacion, certificado de lectura de microchip, certificado de salud\n-Mushu: Vacunacion antirrabica 1583 2025-11-24 03:00:00+00 14:00:00 132292687841 91 \N +1436 2025-11-06 12:18:52.348949+00 2025-11-06 12:18:52.348958+00 f t [["2025-11-06", "Mañana"], ["2025-11-06", "Tarde"], ["2025-11-06", "Tarde"]] Confirmado 11542 12510 1208 Se encuentra muy caido y bajo de energias, no tiene apetito y duerme mucho 1208 2025-11-06 03:00:00+00 13:00:00 132122263539 101 \N +1466 2025-11-07 12:40:31.378233+00 2025-11-07 12:40:31.378241+00 f t [["2025-11-07", "afternoon"], ["2025-11-07", "evening"]] Confirmado 11644 11180 1583 Consulta post estudios 1583 2025-11-07 03:00:00+00 19:00:00 86VRPQ2GMD0JG7YY2GLY0M 88 \N +1522 2025-11-10 23:40:42.619799+00 2025-11-10 23:40:42.619809+00 f t [["2025-11-11", "afternoon"]] vet_accepted 11980 11855 114 Extracción de Sangre para Perfil 7 sin orina 114 2025-11-11 03:00:00+00 14:00:00 132728231967 85 \N +1477 2025-11-07 22:40:21.558784+00 2025-11-07 22:40:21.558795+00 f t [["2025-11-07", "morning"], ["2025-11-07", "afternoon"], ["2025-11-07", "evening"]] Confirmado 11705 6358 1208 mi gato defeco 2 veces normal pero sigue haciendo fuerza e hizo un poco liquido. El normalmente hace bien de cuerpo pero es un gato grande y complicado de actitud 1208 2025-11-07 03:00:00+00 20:30:00 39568606177 68 \N +1368 2025-11-03 14:03:43.198457+00 2025-11-03 14:03:43.198465+00 f t [["2025-11-03", "afternoon"], ["2025-11-03", "evening"]] Confirmado 11274 10559 1583 Dos gatos con cistitis 1583 2025-11-03 03:00:00+00 16:00:00 naranjaX 88 \N +1482 2025-11-08 13:24:03.71257+00 2025-11-08 13:24:03.712579+00 f t [["2025-11-08", "Mañana"], ["2025-11-08", "Tarde"], ["2025-11-08", "Tarde"]] rejected 11738 12689 1208 Está atravesando una especie de neumonía hace unos días pero creemos que tiene un tumor maligno. Está con toda medicación posible pero no repunta y está cada vez más tirado. No quiere comer 1208 2025-11-08 03:00:00+00 14:00:00 \N 1 \N +1405 2025-11-04 19:47:45.967007+00 2025-11-04 19:47:45.967016+00 f t [["2025-11-04", "afternoon"], ["2025-11-04", "evening"]] Confirmado 11412 12381 1583 Operada de tumor, no se levanta, esta decaida desde ayer 1583 2025-11-04 03:00:00+00 19:00:00 132495118348 1 \N +1487 2025-11-08 18:23:16.960398+00 2025-11-08 18:23:16.960405+00 f t [["2025-11-09", "Mañana"], ["2025-11-09", "Tarde"], ["2025-11-09", "Tarde"]] rejected 11770 12723 1208 Tiene el cuello duro y le duele agacharse 1208 2025-11-09 03:00:00+00 10:00:00 \N \N \N +1492 2025-11-08 19:50:02.680598+00 2025-11-08 19:50:02.680614+00 f t [["2025-11-11", "morning"], ["2025-11-11", "afternoon"], ["2025-11-11", "evening"]] Confirmado 11784 12446 1208 pcr vif 1208 2025-11-11 03:00:00+00 11:30:00 0 100 \N +1497 2025-11-09 19:29:42.525481+00 2025-11-09 19:29:42.525488+00 f t [["2025-11-09", "morning"]] Confirmado 11852 12802 114 Revisión por falta de apetito y decaimiento 114 2025-11-09 03:00:00+00 11:00:00 132529639527 88 \N +1502 2025-11-09 19:58:26.310939+00 2025-11-09 19:58:26.310948+00 f t [["2025-11-09", "evening"]] Confirmado 11860 12807 114 Piel Irritada 114 2025-11-09 03:00:00+00 18:00:00 82174413 92 \N +1493 2025-11-09 01:27:29.379804+00 2025-11-09 01:27:29.379812+00 f t [["2025-11-10", "Tarde"], ["2025-11-10", "Tarde"], ["2025-11-11", "Tarde"]] vet_accepted 11749 12702 114 Chequeo por agitación y mucho apetito 114 2025-11-10 03:00:00+00 18:30:00 133138531922 92 \N +1371 2025-11-03 14:35:42.978272+00 2025-11-03 14:35:42.97828+00 f t [["2025-11-06", "evening"]] Confirmado 11278 7529 1583 Vacunacion tos de las perreras 1583 2025-11-06 03:00:00+00 19:00:00 36152366602 89 \N +1630 2025-11-17 15:09:58.099448+00 2025-11-17 15:09:58.099461+00 f t [["2025-11-18", "afternoon"]] Confirmado 12559 13490 1583 Muestra de sangre 1583 2025-11-18 03:00:00+00 17:00:00 0 100 \N +1462 2025-11-07 00:58:10.362287+00 2025-11-07 00:58:10.362295+00 f t [["2025-11-07", "Mañana"], ["2025-11-10", "Mañana"], ["2025-11-11", "Mañana"]] rejected 11610 12563 1583 Ya no se puede parar, respira con dificultad. No come y se hace encima 1583 \N \N \N \N \N +1467 2025-11-07 12:55:48.975646+00 2025-11-07 12:55:48.975657+00 f t [["2025-11-07", "Mañana"], ["2025-11-07", "Tarde"], ["2025-11-07", "Tarde"]] rejected 11647 12601 1583 Le empezo a picar todo el cuerpo y tiene la cara hinchada 1583 \N \N \N \N \N +1409 2025-11-04 22:48:23.25349+00 2025-11-04 22:48:23.253497+00 f t [["2025-11-05", "evening"]] rejected 11430 12325 113 Extraccion 113 2025-11-05 03:00:00+00 18:30:00 \N 85 \N +1478 2025-11-07 23:11:07.225557+00 2025-11-07 23:11:07.22557+00 f t [["2025-11-08", "Mañana"], ["2025-11-08", "Tarde"], ["2025-11-08", "Tarde"]] rejected 11708 12657 1208 No come, toma agua y está bastante flaco 1208 2025-11-08 03:00:00+00 09:00:00 \N \N \N +1406 2025-11-04 19:55:59.290502+00 2025-11-04 19:55:59.29051+00 f t [["2025-11-05", "morning"]] vet_accepted 11415 12383 1583 Vomitos, tiene estudios hechos 1583 2025-11-04 03:00:00+00 18:00:00 131893352719 1 \N +1503 2025-11-09 19:59:29.663262+00 2025-11-09 19:59:29.66327+00 f t [["2025-11-11", "Mañana"], ["2025-11-12", "Tarde"], ["2025-11-13", "Tarde"]] Confirmado 11857 12804 1583 Está peleando mucho con el otro gato. Fueron creados juntos y desde que mudamos para Argentina (hace 5 meses) empezaron las peleas y están insoportables. 1583 2025-11-11 03:00:00+00 15:00:00 MP 105 \N +1520 2025-11-10 20:19:10.616592+00 2025-11-10 20:19:10.616602+00 f t [["2025-11-10", "Tarde"], ["2025-11-11", "Tarde"], ["2025-11-11", "Tarde"]] rejected 11951 12899 114 No sé quiere levantar! 114 2025-11-10 03:00:00+00 19:00:00 \N \N \N +1472 2025-11-07 17:18:01.035962+00 2025-11-07 17:18:01.035975+00 f t [["2025-11-07", "afternoon"], ["2025-11-07", "evening"]] rejected 11670 12621 1583 Ecografia adominal de urgencia, lo antes posible 1583 2025-11-07 03:00:00+00 18:00:00 \N \N \N +1789 2025-11-25 20:08:42.203099+00 2025-11-25 20:08:42.203108+00 f t [["2025-11-27", "afternoon"], ["2025-11-27", "evening"], ["2025-11-27", "morning"]] rejected 13594 14531 1583 Consulta cardiologica 1583 \N \N \N \N \N +1507 2025-11-10 04:00:25.263514+00 2025-11-10 04:00:25.263527+00 f t [["2025-11-10", "Mañana"], ["2025-11-10", "Tarde"], ["2025-11-10", "Tarde"]] rejected 11881 12829 1583 Tumor en el estómago, no come hace dos días, no toma agua, se desmaya 1583 \N \N \N \N \N +1414 2025-11-05 14:27:39.667897+00 2025-11-05 14:27:39.667905+00 f t [["2025-11-05", "morning"], ["2025-11-05", "afternoon"], ["2025-11-05", "evening"]] Confirmado 11462 12432 1208 consulta cardiologica de urgencia lo operan el sabado 1208 2025-11-06 03:00:00+00 12:00:00 132600044768 82 \N +1422 2025-11-05 18:57:00.996876+00 2025-11-05 18:57:00.996885+00 f t [["2025-11-11", "morning"], ["2025-11-11", "afternoon"], ["2025-11-11", "evening"]] Confirmado 11481 12441 1208 perfil prequirurgico 1208 2025-11-11 03:00:00+00 11:30:00 132620609558 100 \N +1513 2025-11-10 15:20:44.498831+00 2025-11-10 15:20:44.49886+00 f t [["2025-11-10", "Tarde"], ["2025-11-10", "Tarde"], ["2025-11-11", "Mañana"]] rejected 11916 12865 1583 Sarpullido e inflamación zona cuello 1583 \N \N \N \N \N +1483 2025-11-08 14:12:14.150406+00 2025-11-08 14:12:14.150416+00 f t [["2025-11-09", "Mañana"], ["2025-11-09", "Tarde"], ["2025-11-09", "Tarde"]] rejected 11744 12696 1208 Es un gato rescatado de la calle 1208 \N \N \N \N \N +1488 2025-11-08 18:39:26.472178+00 2025-11-08 18:39:26.472185+00 f t [["2025-11-09", "morning"], ["2025-11-09", "afternoon"], ["2025-11-09", "evening"]] Confirmado 11776 12527 1208 control de estudios y paciente 1208 2025-11-09 03:00:00+00 10:00:00 81651940 88 \N +1523 2025-11-10 23:48:45.576857+00 2025-11-10 23:48:45.576866+00 f t [["2025-11-10", "afternoon"]] Confirmado 11981 12930 114 Diarrea de Color Negro 114 2025-11-10 18:00:00+00 15:00:00 133285610292 68 \N +1432 2025-11-06 00:54:14.591362+00 2025-11-06 00:54:14.59137+00 f t [["2025-11-10", "Mañana"], ["2025-11-10", "Tarde"], ["2025-11-10", "Tarde"]] Confirmado 11510 12474 1208 No tiene ningún síntoma es preventivo. 1208 2025-11-10 03:00:00+00 10:30:00 132729277424 70 \N +1437 2025-11-06 12:49:27.894605+00 2025-11-06 12:49:27.894615+00 f t [["2025-11-06", "morning"], ["2025-11-06", "afternoon"], ["2025-11-06", "evening"]] rejected 11546 12361 1208 ecografia abdominal de urgencia 1208 \N \N \N \N \N +1427 2025-11-05 20:39:47.600715+00 2025-11-05 20:39:47.600723+00 f t [["2025-11-06", "Tarde"], ["2025-11-06", "Mañana"], ["2025-11-06", "Tarde"]] vet_accepted 11491 12455 1583 Vacunacion anual. 1583 2025-11-06 03:00:00+00 18:00:00 MP 68 \N +1443 2025-11-06 16:06:11.316585+00 2025-11-06 16:06:11.316595+00 f t [["2025-11-11", "morning"], ["2025-11-11", "afternoon"], ["2025-11-11", "evening"]] Confirmado 11562 12474 1208 pcr vilef 1208 2025-11-11 03:00:00+00 09:00:00 132729277424 100 \N +1448 2025-11-06 16:42:54.065278+00 2025-11-06 16:42:54.065286+00 f t [["2025-11-10", "morning"], ["2025-11-10", "afternoon"], ["2025-11-10", "evening"]] rejected 11569 274 1208 perfil general completo con orina 1208 \N \N \N \N \N +1498 2025-11-09 19:32:15.398582+00 2025-11-09 19:32:15.398589+00 f t [["2025-11-09", "evening"]] Confirmado 11853 12802 114 Ecografía Abdominal 114 2025-11-09 03:00:00+00 19:30:00 132544042079 90 \N +1528 2025-11-11 14:17:04.885699+00 2025-11-11 14:17:04.885707+00 t t [["2025-11-13", "afternoon"]] pending 12019 12684 \N \N \N 2025-11-13 18:00:00+00 15:00:00 \N \N \N +1530 2025-11-11 14:17:52.548183+00 2025-11-11 14:17:52.548192+00 f t [["2025-11-11", "morning"], ["2025-11-11", "afternoon"], ["2025-11-11", "evening"]] Confirmado 12021 10879 1208 Perrita geronte, con apetito disminuido casi nulo 1208 2025-11-11 03:00:00+00 18:00:00 133409404126 107 \N +1533 2025-11-11 15:12:33.592+00 2025-11-11 15:12:33.592012+00 f t [["2025-11-12", "Tarde"], ["2025-11-12", "Tarde"], ["2025-11-12", "Mañana"]] Confirmado 12029 12976 1208 Deposiciones con signos de parásitos 1208 2025-11-13 03:00:00+00 09:00:00 132817438453 80 \N +1518 2025-11-10 19:57:34.688884+00 2025-11-10 19:57:34.689177+00 f t [["2025-11-15", "afternoon"]] Confirmado 11944 12866 1583 Consulta post estudios para limpieza dental \N 2025-11-12 03:00:00+00 14:00:00 39626152385 92 \N +1539 2025-11-11 20:49:57.72436+00 2025-11-11 20:49:57.72437+00 f t [["2025-12-02", "afternoon"]] Confirmado 12057 12851 1583 vacunacion antirrabica 1583 2025-12-02 18:00:00+00 15:00:00 0 89 \N +1394 2025-11-04 15:34:32.324615+00 2025-11-04 15:34:32.324625+00 f t [["2025-11-06", "Tarde"], ["2025-11-06", "Mañana"], ["2025-11-06", "Tarde"]] rejected 11381 12355 1583 Vacunacion anual para 4 perros 1583 2025-11-06 03:00:00+00 17:00:00 \N 1 \N +1372 2025-11-03 15:13:23.659867+00 2025-11-03 15:13:23.659876+00 f t [["2025-11-25", "evening"]] rejected 11283 12260 1583 Vacunacion anual 1583 2025-11-25 03:00:00+00 18:30:00 39487238170 89 \N +1407 2025-11-04 20:34:08.291855+00 2025-11-04 20:34:08.291864+00 f t [["2025-11-04", "Tarde"], ["2025-11-05", "Mañana"], ["2025-11-05", "Tarde"]] rejected 11418 12387 1583 Vómitos . Muy caído.y muy dura la panza 1583 \N \N \N \N \N +1353 2025-11-01 19:06:32.46578+00 2025-11-01 19:06:32.465788+00 f t [["2025-11-03", "Tarde"], ["2025-11-03", "Mañana"], ["2025-11-03", "Tarde"]] rejected 11213 12194 1208 Controlar 1208 2025-11-03 03:00:00+00 13:00:00 \N \N \N +1377 2025-11-03 18:16:25.016654+00 2025-11-03 18:16:25.016667+00 f t [["2025-11-04", "afternoon"]] vet_accepted 11310 11616 1583 Ecografia abdominal 1583 2025-11-04 18:00:00+00 15:00:00 Santander 90 \N +1376 2025-11-03 18:07:35.733198+00 2025-11-03 18:07:35.733206+00 f t [["2025-11-03", "afternoon"], ["2025-11-03", "evening"]] Confirmado 11309 12287 1583 Orina con sangre hace dos dias 1583 2025-11-03 03:00:00+00 18:00:00 132344980262 88 \N +1382 2025-11-03 19:30:17.323827+00 2025-11-03 19:30:17.323836+00 f t [["2025-11-03", "evening"]] vet_accepted 11319 12295 114 Eutanasia 114 2025-11-03 03:00:00+00 18:00:00 132350158164 1 \N +1378 2025-11-03 18:22:24.690636+00 2025-11-03 18:22:24.690646+00 f t [["2025-11-03", "evening"]] Confirmado 11313 11745 1583 Consulta post estudios \N 2025-11-03 03:00:00+00 20:30:00 132346508164 68 \N +1375 2025-11-03 17:51:52.610782+00 2025-11-03 17:51:52.610791+00 f t [["2025-11-04", "Tarde"], ["2025-11-04", "Tarde"], ["2025-11-05", "Mañana"]] rejected 11305 12282 114 Ecografía ocular 114 \N \N \N \N \N +1380 2025-11-03 19:01:59.956632+00 2025-11-03 19:01:59.95664+00 t t [["2025-11-06", "evening"]] pending 11315 8854 \N \N \N 2025-11-06 23:00:00+00 20:00:00 \N \N \N +1373 2025-11-03 16:46:30.315564+00 2025-11-03 16:46:30.315574+00 f t [["2025-11-03", "afternoon"], ["2025-11-03", "evening"]] rejected 11297 12172 114 Revisión de garra en mal estado 114 2025-11-03 03:00:00+00 18:00:00 \N 1 \N +1381 2025-11-03 19:02:04.8261+00 2025-11-03 19:02:04.826108+00 f t [["2025-11-06", "evening"]] vet_accepted 11316 8854 114 Revisión de Resultados 114 2025-11-06 03:00:00+00 18:30:00 131749170651 98 \N +1374 2025-11-03 17:50:44.869345+00 2025-11-03 17:50:44.869357+00 f t [["2025-11-03", "Tarde"], ["2025-11-03", "Tarde"], ["2025-11-04", "Mañana"]] Confirmado 11304 12281 114 Tiene más de 11 años y está ciego, pero ahora ya no se mueve casi, está acostado, no quiere comer y toma agua cuando le damos con jeringa nomás. 114 2025-11-03 03:00:00+00 18:00:00 39490419552 21 \N +1220 2025-10-26 20:16:02.594532+00 2025-10-26 20:16:02.594544+00 f t [["2025-10-26", "Tarde"], ["2025-10-27", "Mañana"], ["2025-10-28", "Tarde"]] rejected 10565 11580 1583 No puede pisar con la pata derecha de atras y se arrastra 1583 2025-10-27 03:00:00+00 15:00:00 \N \N \N +1176 2025-10-23 17:29:21.657094+00 2025-10-23 17:29:21.657103+00 f t [["2025-10-24", "morning"], ["2025-10-24", "afternoon"], ["2025-10-24", "evening"]] Confirmado 10365 11393 1208 tiene una alergía que no sabemos a qué. Se le hincha el labio de abajo y ahora encima tiene la patita pelada. La veterinaria le dio corticoides hace 15 días y me dijo que le de una segunda dosis en estos días. 1208 2025-10-24 03:00:00+00 13:00:00 LOEJWV9JZYGG66582QMD0G 114 \N +1384 2025-11-03 23:56:59.808189+00 2025-11-03 23:56:59.808197+00 f t [["2025-11-03", "evening"]] Confirmado 11334 12295 114 Cremación 114 2025-11-03 03:00:00+00 20:00:00 132386940858 95 \N +1383 2025-11-03 20:01:15.089412+00 2025-11-03 20:01:15.089424+00 f t [["2025-11-04", "morning"]] Confirmado 11321 10707 1583 Traslado de muestras 1583 2025-11-04 03:00:00+00 10:00:00 132388449542 100 \N +1389 2025-11-04 14:08:21.984656+00 2025-11-04 14:08:21.98467+00 f t [["2025-11-07", "Tarde"], ["2025-11-07", "Mañana"], ["2025-11-07", "Tarde"]] rejected 11367 12341 1208 Hace un mes no podía hacer pis y mi veterinario me recomendó hacerle una eco, tuvo puesta una sonda 1208 \N \N \N \N \N +1379 2025-11-03 18:40:43.128762+00 2025-11-03 18:40:43.128771+00 f t [["2025-11-04", "Tarde"], ["2025-11-04", "Tarde"], ["2025-11-03", "Tarde"]] rejected 11314 12291 114 Apatia y falta de apetito 114 2025-11-04 03:00:00+00 15:00:00 \N \N \N +1386 2025-11-04 03:15:48.282457+00 2025-11-04 03:15:48.282469+00 f t [["2025-11-04", "Mañana"], ["2025-11-05", "Mañana"], ["2025-11-06", "Mañana"]] rejected 11350 12325 1208 Está decaído, vomito los doguis enteros varias veces y se queda echado sin moverse, siendo que es un perro muy imperativo 1208 2025-11-04 03:00:00+00 12:00:00 a9a8df87-1ddc-47f1-9b29-706c4ea9e233 114 \N +1392 2025-11-04 15:33:24.37427+00 2025-11-04 15:33:24.374279+00 f t [["2025-11-04", "morning"], ["2025-11-04", "afternoon"], ["2025-11-04", "evening"]] Confirmado 11383 12325 1208 Está decaído, vomito los doguis enteros varias veces y se queda echado sin moverse, siendo que es un perro muy imperativo 1208 2025-11-04 03:00:00+00 13:00:00 0 114 \N +1387 2025-11-04 13:13:44.819217+00 2025-11-04 13:13:44.819226+00 f t [["2025-11-04", "morning"], ["2025-11-04", "evening"], ["2025-11-04", "afternoon"]] Confirmado 11363 10142 1208 certificado de salud y desparacitacion 1208 2025-11-29 03:00:00+00 14:00:00 50228408007251104 92 \N +1385 2025-11-04 01:08:42.352906+00 2025-11-04 01:08:42.352915+00 f t [["2025-11-03", "Tarde"], ["2025-11-03", "Mañana"], ["2025-11-03", "Tarde"]] rejected 11340 6588 1208 Taquipnea 1208 \N \N \N \N \N +1391 2025-11-04 14:48:03.800711+00 2025-11-04 14:48:03.800722+00 f t [["2025-11-04", "morning"], ["2025-11-04", "afternoon"], ["2025-11-04", "evening"]] Confirmado 11374 7396 1208 notamos que le salio desde la cola algo como si fuera pus,\nPuede todo el dia hasta las 19:30hs 1208 2025-11-04 03:00:00+00 14:00:00 131860626689 114 \N +1393 2025-11-04 15:34:32.019926+00 2025-11-04 15:34:32.019934+00 f t [["2025-11-04", "Tarde"], ["2025-11-05", "Tarde"], ["2025-11-06", "Tarde"]] rejected 11382 12356 1583 Se solicita para una biopsia \nPerfil plus +\nCoalgulograma TP, KPTT\nNo se si es el mismo valor\nVilef y vif ya los tiene hechos 1583 \N \N \N \N \N +1390 2025-11-04 14:34:26.722855+00 2025-11-04 14:34:26.722871+00 f t [["2025-11-04", "morning"], ["2025-11-04", "afternoon"], ["2025-11-04", "evening"]] rejected 11370 12345 1208 CONSULTA ONLINE\n Tiene un sarpullido arriba de la pierna trasera izquierda hacia la zona pélvica, se rasca y lame todo el tiempo 1208 2025-11-04 03:00:00+00 19:30:00 \N 92 \N +1388 2025-11-04 13:47:01.846509+00 2025-11-04 13:47:01.846517+00 f t [["2025-11-04", "morning"], ["2025-11-04", "afternoon"], ["2025-11-04", "evening"]] rejected 11366 11955 1208 ecografia abdominal programada 1208 \N \N \N \N \N +1538 2025-11-11 20:35:23.676952+00 2025-11-11 20:35:23.67696+00 f t [["2025-11-12", "morning"]] Confirmado 12053 12968 1583 Extraccion de sangre para perfil 7 y vif vilef pcr 1583 2025-11-13 03:00:00+00 13:00:00 133457045228 112 \N +1400 2025-11-04 17:30:17.079809+00 2025-11-04 17:30:17.079823+00 f t [["2025-11-05", "morning"]] Confirmado 11395 11745 1583 Radiografia 1583 2025-11-05 03:00:00+00 11:00:00 0 118 \N +1398 2025-11-04 17:09:12.7469+00 2025-11-04 17:09:12.746908+00 f t [["2025-11-04", "morning"], ["2025-11-04", "afternoon"], ["2025-11-04", "evening"]] Confirmado 11392 12364 1208 extraccion de sangre para PCR VIF y ViLeF\npuede entre las 10:30 hs y 12:30 hs. 1208 2025-11-05 03:00:00+00 12:00:00 ORD6LEN8PQ6MPK5ONM1Y30 68 \N +1569 2025-11-13 00:58:28.693308+00 2025-11-13 00:58:28.693317+00 f t [["2025-12-18", "Mañana"], ["2025-12-18", "Tarde"], ["2025-12-18", "Tarde"]] rejected 12201 8819 1208 Clinica,revacunacion y análisis de sangre 1208 \N \N \N \N \N +1519 2025-11-10 20:17:55.820975+00 2025-11-10 20:17:55.821191+00 f t [["2025-11-13", "Mañana"], ["2025-11-11", "Mañana"], ["2025-11-14", "Tarde"]] rejected 11950 12898 114 Análisis de laboratorio y orina ,completo para detectar estado general y ver si tiene Cushing 114 \N \N \N \N \N +1444 2025-11-06 16:15:56.711814+00 2025-11-06 16:15:56.711821+00 f t [["2025-11-07", "afternoon"]] in_progress_pay 11564 12528 1583 Vacunacion anual y despasrasitacion 1583 2025-11-07 18:00:00+00 15:00:00 \N 114 \N +1396 2025-11-04 16:32:50.905892+00 2025-11-04 16:32:50.905904+00 f t [["2025-11-07", "morning"]] Confirmado 11387 7277 1583 posible extraccion para erlichia, encontro una garrapata muerta 1583 2025-11-07 03:00:00+00 10:00:00 131869978593 68 \N +1395 2025-11-04 16:17:44.473308+00 2025-11-04 16:17:44.473317+00 f t [["2025-11-05", "afternoon"], ["2025-11-05", "evening"], ["2025-11-05", "morning"]] Confirmado 11386 12361 1583 Dificultad para mover las patas traseras 1583 2025-11-05 03:00:00+00 18:30:00 L18MKX9RX1E131XK9O6WYVV 70 \N +1408 2025-11-04 20:37:23.004155+00 2025-11-04 20:37:23.004164+00 f t [["2025-11-05", "Tarde"], ["2025-11-06", "Tarde"], ["2025-11-07", "Tarde"]] Confirmado 11419 12388 1583 Consulta general de estado de salud y vacunas anuales y desparasitacion interna y externa para 29kg 1583 2025-11-05 03:00:00+00 16:00:00 132498394646 88 \N +1458 2025-11-06 21:08:08.345551+00 2025-11-06 21:08:08.345563+00 f t [["2025-11-07", "morning"]] Confirmado 11596 12527 1583 Muestra para perfil general completo con orina, upc, calcio, fosforo, ionograma serico 1583 2025-11-07 03:00:00+00 12:00:00 0 100 \N +1631 2025-11-17 15:32:25.153759+00 2025-11-17 15:32:25.153767+00 f t [["2025-11-18", "morning"]] rejected 12564 13436 1583 \N 1583 2025-11-18 12:00:00+00 09:00:00 \N \N \N +1397 2025-11-04 17:04:51.882761+00 2025-11-04 17:04:51.88277+00 f t [["2025-11-07", "morning"]] Confirmado 11390 7277 1583 Muestra de sangre para Erlichia 1583 2025-11-07 03:00:00+00 11:00:00 0 100 \N +1463 2025-11-07 01:41:29.812268+00 2025-11-07 01:41:29.812276+00 f t [["2025-11-08", "Mañana"], ["2025-11-09", "Mañana"], ["2025-11-07", "Tarde"]] in_progress_pay 11612 12566 1583 Coproparasitologico 1583 2025-11-10 03:00:00+00 13:00:00 \N 100 \N +1399 2025-11-04 17:29:00.600412+00 2025-11-04 17:29:00.600421+00 f t [["2025-11-05", "morning"]] Confirmado 11394 11745 1583 Ecocardiograma 1583 2025-11-05 12:00:00+00 09:00:00 0 118 \N +1423 2025-11-05 18:59:19.986436+00 2025-11-05 18:59:19.986445+00 f t [["2025-11-11", "morning"], ["2025-11-11", "afternoon"], ["2025-11-11", "evening"]] Confirmado 11483 12441 1208 consulta cardiologica para castracion 1208 2025-11-11 03:00:00+00 12:00:00 132620609558 82 \N +1484 2025-11-08 15:26:05.706662+00 2025-11-08 15:26:05.706671+00 f t [["2025-11-10", "morning"], ["2025-11-10", "afternoon"], ["2025-11-10", "evening"]] Confirmado 11753 12684 1208 Chequeo por tos seca y extracción de sangre. 1208 2025-11-10 03:00:00+00 16:00:00 133167803892 114 \N +1415 2025-11-05 14:36:37.944722+00 2025-11-05 14:36:37.94473+00 f t [["2025-11-06", "morning"]] vet_accepted 11464 12433 1583 Disponible manana o el viernes hasta las 14hs.3 consultas por caida de pelo, tiene pipeta, viven en departamento 1583 2025-11-06 03:00:00+00 10:00:00 Santander 88 \N +1473 2025-11-07 18:18:45.720292+00 2025-11-07 18:18:45.720301+00 f t [["2025-11-07", "Tarde"], ["2025-11-08", "Tarde"], ["2025-11-08", "Mañana"]] Confirmado 11673 12624 1208 Rubi: posible infeccion urinaria, hoy la vio orinar varias veces\nRoko: vacunas anuales 1208 2025-11-08 03:00:00+00 18:00:00 80750631 114 \N +1468 2025-11-07 13:26:37.623861+00 2025-11-07 13:26:37.623868+00 f t [["2025-11-10", "morning"]] vet_accepted 11649 1734 1583 Extraccino para perfil general completo, disponible lunes o martes en la manana 1583 2025-11-10 03:00:00+00 09:00:00 132873173996 88 \N +1418 2025-11-05 16:33:53.387482+00 2025-11-05 16:33:53.387494+00 f t [["2025-11-06", "morning"], ["2025-11-06", "afternoon"], ["2025-11-06", "evening"]] Confirmado 11473 12325 1208 extraccion de sangre perfil 7 1208 2025-11-06 03:00:00+00 13:30:00 132600955350 104 \N +1428 2025-11-05 21:06:16.118458+00 2025-11-05 21:06:16.118466+00 t t [["2025-11-06", "afternoon"]] pending 11494 12459 \N \N \N 2025-11-06 18:00:00+00 15:00:00 \N \N \N +1479 2025-11-08 01:56:24.807365+00 2025-11-08 01:56:24.807376+00 f t [["2025-11-19", "Mañana"], ["2025-11-19", "Tarde"], ["2025-11-19", "Tarde"]] in_progress_vet 11721 8819 1208 Consulta.extraciion .revacunacion 1208 \N \N \N \N \N +1514 2025-11-10 15:31:29.321515+00 2025-11-10 15:31:29.321525+00 f t [["2025-11-10", "Tarde"], ["2025-11-11", "Tarde"], ["2025-11-12", "Mañana"]] Confirmado 11917 12866 1583 Extraccion prequirurgico 1583 2025-11-11 03:00:00+00 11:00:00 132704210009 116 \N +1433 2025-11-06 01:31:21.401767+00 2025-11-06 01:31:21.401775+00 f t [["2025-11-06", "Tarde"], ["2025-11-06", "Mañana"], ["2025-11-06", "Tarde"]] rejected 11513 12478 1208 Está con diarrea con sangre 1208 \N \N \N \N \N +1438 2025-11-06 13:35:01.457954+00 2025-11-06 13:35:01.457967+00 f t [["2025-11-06", "Mañana"], ["2025-11-06", "Tarde"], ["2025-11-06", "Tarde"]] rejected 11551 12516 1208 Vomitos 1208 2025-11-06 03:00:00+00 15:00:00 \N \N \N +1489 2025-11-08 19:11:23.095493+00 2025-11-08 19:11:23.095501+00 f t [["2025-11-10", "morning"], ["2025-11-10", "afternoon"], ["2025-11-10", "evening"]] Confirmado 11780 12624 1208 aplicacion de medicacion 1208 2025-11-10 03:00:00+00 13:30:00 81670188 114 \N +1494 2025-11-09 13:44:30.607368+00 2025-11-09 13:44:30.607377+00 f t [["2025-11-12", "Mañana"], ["2025-11-13", "Mañana"], ["2025-11-14", "Mañana"]] rejected 11825 12773 114 Perdida casi total del apetito. Se podrá realizar revisión y análisis de sangre? Traer bozal porque no es dócil. 114 \N \N \N \N \N +1449 2025-11-06 16:46:22.012469+00 2025-11-06 16:46:22.012478+00 f t [["2025-11-10", "morning"], ["2025-11-10", "afternoon"], ["2025-11-10", "evening"]] Confirmado 11571 274 1208 perfil general completo con orina 1208 2025-11-11 03:00:00+00 09:00:00 132752057880 100 \N +1499 2025-11-09 19:42:58.794081+00 2025-11-09 19:42:58.794089+00 f t [["2025-11-09", "afternoon"]] Confirmado 11854 12803 114 Vomitos continuos 114 2025-11-09 03:00:00+00 12:30:00 Z0KV87940KWW858DNPEYDX 80 \N +1504 2025-11-09 20:03:48.387226+00 2025-11-09 20:03:48.387235+00 f t [["2025-11-10", "afternoon"]] Confirmado 11861 9712 114 Resultados del estudio 114 2025-11-10 03:00:00+00 15:30:00 00000000 98 \N +1663 2025-11-19 12:05:43.753319+00 2025-11-19 12:05:43.753328+00 f t [["2025-11-19", "Mañana"], ["2025-11-19", "Tarde"], ["2025-11-19", "Tarde"]] rejected 12813 13744 1208 Pérdida de apetito, vómitos, diarrea. Hace 3/4 días q come poquito y hace 1 día q no come. 1208 \N \N \N \N \N +1709 2025-11-20 21:28:27.401904+00 2025-11-20 21:28:27.401916+00 f t [["2025-11-21", "afternoon"], ["2025-11-21", "evening"]] Confirmado 13029 11644 1583 Ecografia abdominal por hematuria 1583 2025-11-21 03:00:00+00 18:00:00 134035541659 90 \N +1527 2025-11-11 13:54:49.816427+00 2025-11-11 13:54:49.816438+00 f t [["2025-11-11", "morning"], ["2025-11-11", "afternoon"], ["2025-11-11", "evening"]] Confirmado 12018 12802 1208 perfi general completo s/orina 1208 2025-11-11 03:00:00+00 13:30:00 132791097701 100 \N +1616 2025-11-15 19:14:04.443307+00 2025-11-15 19:14:04.443315+00 f t [["2025-11-15", "Tarde"], ["2025-11-15", "Mañana"], ["2025-11-15", "Tarde"]] vet_accepted 12468 13408 1208 Tiene 17 años tiene diagnóstico de enfermedad renal en este momento está con un absceso en la cara necesitaría ayuda para tratar el absceso 1208 2025-11-15 03:00:00+00 17:30:00 39684872393 1 \N +1559 2025-11-12 18:08:26.540675+00 2025-11-12 18:08:26.540683+00 f t [["2025-11-12", "evening"], ["2025-11-12", "afternoon"]] Confirmado 12160 11855 1583 Teleconsulta post estudios 1583 2025-11-12 03:00:00+00 20:00:00 133571852974 92 \N +1570 2025-11-13 13:15:33.678414+00 2025-11-13 13:15:33.678423+00 f t [["2025-11-13", "morning"], ["2025-11-13", "afternoon"], ["2025-11-13", "evening"]] Confirmado 12225 13162 1208 El tuvo un complejo respiratorio felino de chiquito, tiene vacunas al día y seguimiento constante pero se encuentra con bastante moco y tos hace 48hs 1208 2025-11-13 03:00:00+00 15:00:00 133076120611 2 \N +1562 2025-11-12 20:05:56.174431+00 2025-11-12 20:05:56.174439+00 f t [["2025-11-12", "morning"], ["2025-11-12", "afternoon"], ["2025-11-12", "evening"]] Confirmado 12173 13088 1208 No come hace 3/4 días, tiene movilidad reducida 1208 2025-11-12 03:00:00+00 17:30:00 0 113 \N +1532 2025-11-11 14:54:45.858185+00 2025-11-11 14:54:45.858193+00 f t [["2025-11-20", "Mañana"], ["2025-11-14", "Tarde"], ["2025-11-18", "Mañana"]] rejected 12026 12972 1583 Buenos días hace unos meses mí perra la diagnósticaron con cáncer de pulmón, le hable a su veterinario pero nunca me contesta. Y la perra tose mucho y está sufriendo. Decidimos hacerle la eutanasia. Ella ya tiene 14 años. Quiero asesoramiento. Gracias 1583 2025-11-11 03:00:00+00 17:00:00 \N 1 \N +1521 2025-11-10 20:44:17.806612+00 2025-11-10 20:44:17.80662+00 f t [["2025-11-12", "Tarde"], ["2025-11-13", "Tarde"], ["2025-11-14", "Tarde"]] rejected 11957 12907 114 Nos dieron una orden de rx por problemas respiratorios. Posible enfermedad autoinmune. 114 \N \N \N \N \N +1692 2025-11-19 23:55:53.097098+00 2025-11-19 23:55:53.09711+00 f t [["2025-11-19", "evening"]] Confirmado 12920 13855 113 Lesion en lomo \N 2025-11-19 03:00:00+00 21:30:00 133922628793 1 \N +1529 2025-11-11 14:17:07.768079+00 2025-11-11 14:17:07.768092+00 f t [["2025-11-13", "afternoon"], ["2025-11-13", "morning"], ["2025-11-13", "evening"]] Confirmado 12020 12684 1583 Aplicar analgésico y antibiótico y control post estudios 1583 2025-11-12 03:00:00+00 19:30:00 132810031147 114 \N +1531 2025-11-11 14:29:10.08741+00 2025-11-11 14:29:10.087418+00 f t [["2025-11-11", "morning"], ["2025-11-11", "afternoon"], ["2025-11-11", "evening"]] Confirmado 12022 12968 1208 desde aproximadamente un mes que noto que se agita y estornuda mucho, tambien empezo a roncar cuando duerme que nunca lo hizo previamente 1208 2025-11-11 03:00:00+00 16:30:00 133416800968 1 \N +1567 2025-11-12 22:31:53.914024+00 2025-11-12 22:31:53.914032+00 f t [["2025-11-14", "Tarde"], ["2025-11-15", "Mañana"], ["2025-11-16", "Tarde"]] Confirmado 12191 13127 1208 Queremos hacerle una radiografía porque renguea de una pata. 1208 2025-11-15 03:00:00+00 09:00:00 133615156362 84 \N +1536 2025-11-11 19:40:46.528231+00 2025-11-11 19:40:46.528241+00 f t [["2025-11-11", "evening"]] Confirmado 12047 4774 1583 Teleconsulta de nutricion. Canino, está sintiéndose mal con la comida 1583 2025-11-11 03:00:00+00 21:00:00 Santander 79 \N +1632 2025-11-17 15:32:28.169299+00 2025-11-17 15:32:28.169307+00 f t [["2025-11-18", "morning"]] Confirmado 12565 13436 1583 Extraccion de sangre 1583 2025-11-18 03:00:00+00 08:30:00 L0EJVV9JZL51LXZZ2QMD0G 85 \N +1573 2025-11-13 14:33:26.065331+00 2025-11-13 14:33:26.065339+00 f t [["2025-11-13", "Mañana"], ["2025-11-13", "Tarde"], ["2025-11-13", "Tarde"]] Confirmado 12233 12946 1583 Encuentro que anda muy chillona 1583 2025-11-14 03:00:00+00 20:30:00 10146978008251113 70 \N +1643 2025-11-17 23:13:23.552762+00 2025-11-17 23:13:23.552771+00 f t [["2025-11-18", "afternoon"]] Confirmado 12630 13565 114 No se especificó motivo de consulta. se solicitó: Consulta general clínica programada... 114 2025-11-18 03:00:00+00 13:30:00 133642846293 114 \N +1534 2025-11-11 18:24:47.54427+00 2025-11-11 18:24:47.544279+00 f t [["2025-11-11", "morning"], ["2025-11-11", "afternoon"], ["2025-11-11", "evening"]] rejected 12040 12810 1208 deben colocarle b12 una vitamina y una analgésico aparte, se los da su vete pero se encuentra de vacaciones, por eso necesitan la consulta 1208 2025-11-11 03:00:00+00 20:00:00 \N \N \N +1535 2025-11-11 19:10:03.777426+00 2025-11-11 19:10:03.77744+00 f t [["2025-11-13", "Tarde"], ["2025-11-14", "Tarde"], ["2025-11-12", "Tarde"]] Confirmado 12044 12991 1208 Tengo la gatita hace una semana tiene dos meses aprox y solo le hicieron la primera desparasitacion. Además me gustaría que la vean y me digan que más debo hacer con ella 1208 2025-11-12 03:00:00+00 16:00:00 133441616092 68 \N +1537 2025-11-11 20:32:45.752059+00 2025-11-11 20:32:45.752067+00 f t [["2025-11-12", "afternoon"], ["2025-11-12", "evening"], ["2025-11-12", "morning"]] rejected 12052 12999 1583 felino agresivo, problemas para caminar, tratamiento previo, decaida 1583 2025-11-12 03:00:00+00 17:30:00 \N 1 \N +1565 2025-11-12 21:11:15.852633+00 2025-11-12 21:11:15.852641+00 f t [["2025-11-13", "Tarde"], ["2025-11-14", "Tarde"], ["2025-11-17", "Tarde"]] vet_accepted 12181 13117 1583 Es un gatito de más de 15 años, dejó de comer balanceado y ya no come ni siquiera comida húmeda. Muy desganado. 1583 2025-11-13 03:00:00+00 15:00:00 D4RO172VZEP8O8L1NKJ3QE 1 \N +1524 2025-11-11 03:03:13.0644+00 2025-11-11 03:03:13.064417+00 f t [["2025-11-14", "Tarde"], ["2025-11-14", "Tarde"], ["2025-11-14", "Mañana"]] rejected 11993 12942 1208 Mí gato no para de estornudar desde hace tres días, pensé que pasaría pero ahora es más frecuente 1208 2025-11-14 03:00:00+00 18:00:00 \N 92 \N +1575 2025-11-13 16:17:29.663769+00 2025-11-13 16:17:29.663778+00 f t [["2025-11-14", "morning"], ["2025-11-14", "afternoon"], ["2025-11-14", "evening"]] Confirmado 12243 384 1583 Está con mucha tos y hace poco la note unas pelotita parte trasera de la piernitas y en la panza, disponible todo el dia 1583 2025-11-14 03:00:00+00 10:00:00 133711189110 68 \N +1581 2025-11-13 18:29:24.636851+00 2025-11-13 18:29:24.636859+00 f t [["2025-11-15", "Mañana"], ["2025-11-16", "Mañana"], ["2025-11-14", "Mañana"]] in_progress_vet 12256 13194 1583 plan de vacunacion 4 visitas 1583 \N \N \N \N \N +1578 2025-11-13 16:57:42.360281+00 2025-11-13 16:57:42.36029+00 f t [["2025-11-14", "Mañana"], ["2025-11-15", "Tarde"], ["2025-11-14", "Tarde"]] rejected 12249 13185 1208 Insuficiencia renal cronica 1208 \N \N \N \N \N +1515 2025-11-10 16:40:11.540715+00 2025-11-10 16:40:11.540727+00 f t [["2025-11-25", "Tarde"], ["2025-11-27", "Tarde"], ["2025-11-20", "Tarde"]] vet_accepted 11925 12875 1583 Vacunacion anual 1583 2025-12-16 03:00:00+00 19:00:00 cuenta DNI 88 \N +1540 2025-11-11 21:19:37.987506+00 2025-11-11 21:19:37.987513+00 f t [["2025-11-13", "afternoon"]] Confirmado 12061 12968 1583 Muestra para perfil 7 y vif vilef pcr 1583 2025-11-13 03:00:00+00 17:00:00 0 100 \N +1560 2025-11-12 18:36:32.400398+00 2025-11-12 18:36:32.400406+00 f t [["2025-11-13", "morning"], ["2025-11-13", "afternoon"], ["2025-11-13", "evening"]] Confirmado 12165 13037 1208 ecografia abdominal 1208 2025-11-13 03:00:00+00 19:30:00 0 90 \N +1617 2025-11-15 19:49:40.198338+00 2025-11-15 19:49:40.19835+00 f t [["2025-11-20", "morning"], ["2025-11-20", "afternoon"], ["2025-11-20", "evening"]] Confirmado 12471 12857 1208 ecografia abdominal 1208 2025-11-20 03:00:00+00 20:00:00 39684718891 90 \N +1571 2025-11-13 13:26:30.156638+00 2025-11-13 13:26:30.156646+00 f t [["2025-11-13", "morning"], ["2025-11-13", "afternoon"], ["2025-11-13", "evening"]] Confirmado 12227 11855 1208 eutanasia 1208 2025-11-13 03:00:00+00 21:00:00 133669600688 92 \N +1563 2025-11-12 20:32:26.406855+00 2025-11-12 20:32:26.406864+00 f t [["2025-11-15", "afternoon"], ["2025-11-15", "morning"]] Confirmado 12174 13103 113 Ecografia abdominal 113 2025-11-17 03:00:00+00 09:00:00 39643541381 103 \N +1576 2025-11-13 16:23:16.609717+00 2025-11-13 16:23:16.609726+00 f t [["2025-11-13", "Tarde"], ["2025-11-14", "Mañana"], ["2025-11-13", "Tarde"]] rejected 12241 13177 1583 Ecografía, abdominal caca con sangre, urgente 1583 2025-11-13 03:00:00+00 16:00:00 \N \N \N +1541 2025-11-11 22:31:05.113286+00 2025-11-11 22:31:05.113298+00 f t [["2025-11-11", "evening"]] Confirmado 12072 12810 113 Dolor por displacia cervical y artitris 113 2025-11-11 03:00:00+00 20:00:00 132861032979 92 \N +1619 2025-11-16 02:25:24.452273+00 2025-11-16 02:25:24.452283+00 f t [["2025-11-18", "Mañana"], ["2025-11-19", "Tarde"], ["2025-11-20", "Tarde"]] rejected 12483 13422 113 esta decaido 113 2025-11-18 03:00:00+00 11:00:00 \N 114 \N +1566 2025-11-12 21:51:49.390244+00 2025-11-12 21:51:49.390255+00 f t [["2025-11-13", "morning"]] Confirmado 12188 7528 1583 Teleconsulta post estudio 1583 2025-11-13 03:00:00+00 12:00:00 133599282892 80 \N +1624 2025-11-16 20:23:24.373779+00 2025-11-16 20:23:24.373788+00 f t [["2025-11-17", "morning"]] Confirmado 12513 13457 114 4 Vacunaciones Anuales y 4 desparasitaciones internas + externas para gatos de 3 entre 2 a 5 kg 114 2025-11-17 03:00:00+00 11:30:00 134109161328 88 \N +1584 2025-11-13 19:24:21.870317+00 2025-11-13 19:24:21.870324+00 f t [["2025-11-14", "afternoon"], ["2025-11-14", "evening"]] rejected 12261 13200 1583 Eco abdominal lo antes posible 1583 2025-11-14 03:00:00+00 14:00:00 \N 90 \N +1590 2025-11-14 01:33:15.523907+00 2025-11-14 01:33:15.523916+00 f t [["2025-11-14", "Mañana"], ["2025-11-14", "Tarde"], ["2025-11-15", "Mañana"]] vet_accepted 12307 13248 1583 No está comiendo, de hecho come muy poquito.... Agua toma lo normal de la canilla. \N 2025-11-14 03:00:00+00 15:00:00 133203562943 74 \N +1568 2025-11-13 00:00:47.064137+00 2025-11-13 00:00:47.06415+00 f t [["2025-11-17", "morning"], ["2025-11-17", "afternoon"], ["2025-11-17", "evening"]] Confirmado 12194 274 1208 limpieza dental 1208 2025-11-16 03:00:00+00 11:00:00 133615386458 92 \N +1644 2025-11-18 00:04:21.600463+00 2025-11-18 00:04:21.600472+00 f t [["2025-11-22", "evening"]] Confirmado 12638 13573 114 Chequeo para Limpieza de dientes 114 2025-11-21 03:00:00+00 18:30:00 88405386 70 \N +1593 2025-11-14 11:18:43.636846+00 2025-11-14 11:18:43.636853+00 f t [["2025-11-14", "Tarde"], ["2025-11-15", "Tarde"], ["2025-11-16", "Mañana"]] rejected 12330 13241 1583 Perra viene de una inflamacion tratada con meloxicam pero ante ciertos movimientos le vomvió la renguera. Pareciera q tiene algo mal curado. Rx descatraron fractura 1583 \N \N \N \N \N +1582 2025-11-13 18:46:49.353694+00 2025-11-13 18:46:49.353702+00 f t [["2025-11-13", "Tarde"], ["2025-11-13", "Tarde"], ["2025-11-14", "Mañana"]] rejected 12259 12952 1583 Recién le tembló la cabeza y no pudo mover las patas traseras. Estuvo un rstito asi y se le pasó. No quiero llevarla a una guardia para que no se estrese. Ahora esta dormida y respira 30 veces por minuto. 1583 \N \N \N \N \N +1579 2025-11-13 17:05:39.88098+00 2025-11-13 17:05:39.880992+00 f t [["2025-11-13", "Tarde"], ["2025-11-13", "Tarde"], ["2025-11-14", "Tarde"]] Confirmado 12251 13188 1583 Dejo de comer su comida. 1583 2025-11-14 03:00:00+00 14:00:00 133104594193 94 \N +1588 2025-11-14 00:57:58.076451+00 2025-11-14 00:57:58.07646+00 f t [["2025-11-13", "Tarde"], ["2025-11-13", "Tarde"], ["2025-11-13", "Mañana"]] rejected 12300 13239 1583 No orina hace 48hs 1583 \N \N \N \N \N +1592 2025-11-14 03:24:13.770652+00 2025-11-14 03:24:13.77066+00 f t [["2025-11-14", "Mañana"], ["2025-11-14", "Tarde"], ["2025-11-14", "Tarde"]] Confirmado 12320 13262 1583 Se raaca mucho creo q tiene alguna alergia fuerte 1583 2025-11-14 03:00:00+00 12:00:00 30075205008251114 68 \N +1596 2025-11-14 13:42:57.536324+00 2025-11-14 13:42:57.536332+00 f t [["2025-11-14", "morning"], ["2025-11-14", "afternoon"]] Confirmado 12346 12803 1583 Muestra Perfil General Completo sin Orina 1583 2025-11-14 03:00:00+00 09:30:00 0 100 \N +1597 2025-11-14 13:47:51.272103+00 2025-11-14 13:47:51.27211+00 f t [["2025-11-18", "afternoon"]] Confirmado 12347 13290 1583 Rayos 1583 2025-11-18 03:00:00+00 15:30:00 Link MP 84 \N +1594 2025-11-14 11:53:19.879278+00 2025-11-14 11:53:19.879287+00 f t [["2025-11-14", "afternoon"], ["2025-11-14", "evening"]] Confirmado 12334 12684 1583 Aplicacion de inyectable 1583 2025-11-14 03:00:00+00 19:00:00 133817130306 114 \N +1589 2025-11-14 01:08:03.157791+00 2025-11-14 01:08:03.157799+00 f t [["2025-11-14", "Mañana"], ["2025-11-16", "Mañana"], ["2025-11-15", "Tarde"]] rejected 12301 13241 1583 Adopté galga y me dieron una radiografia de hace 1 mes. Me dijeron que todavia tenia algo de inflamacion y que le habian dado Meloxicam. Desde hace 4 dias esta en mi casa y luego de un par de paseos y usar el sillon, volvió a renguear. 1583 \N \N \N \N \N +1595 2025-11-14 12:33:36.21528+00 2025-11-14 12:33:36.215289+00 f t [["2025-11-14", "Tarde"], ["2025-11-15", "Mañana"], ["2025-11-17", "Tarde"]] rejected 12340 13283 1583 Hace 2 días que no hace pis y caca, tiene un parche de calor, no nos deja tocarlo, no quiere salir, no lo puedo trasladar 1583 2025-11-14 03:00:00+00 13:00:00 \N 68 \N +1598 2025-11-14 14:12:06.861693+00 2025-11-14 14:12:06.861704+00 f t [["2025-11-14", "Tarde"], ["2025-11-14", "Tarde"], ["2025-11-14", "Mañana"]] vet_accepted 12348 13291 1583 Ecografia abdominal por vomitos, disponible hoy, sabado o lunes luego de las 11hs 1583 2025-11-15 03:00:00+00 17:30:00 39666341719 90 \N +1574 2025-11-13 15:36:12.935544+00 2025-11-13 15:36:12.935554+00 f t [["2025-11-17", "morning"], ["2025-11-17", "afternoon"], ["2025-11-17", "evening"]] vet_accepted 12238 308 1208 tengo un gato que esta orinando mucho. Me gustaría arreglar una consulta y los analisis especialmente sangre a domicilio. 1208 2025-11-17 03:00:00+00 15:00:00 133114746019 101 \N +1734 2025-11-22 11:40:18.608678+00 2025-11-22 11:40:18.60869+00 f t [["2025-11-25", "Mañana"], ["2025-11-26", "Mañana"], ["2025-11-27", "Mañana"]] rejected 13208 14143 1208 Vacunación 1208 2025-11-25 03:00:00+00 10:00:00 \N 88 \N +1548 2025-11-12 14:03:41.359764+00 2025-11-12 14:03:41.359777+00 f t [["2025-11-13", "morning"], ["2025-11-13", "afternoon"], ["2025-11-13", "evening"]] vet_accepted 12127 13071 1208 vacunacion anual 1208 2025-11-13 03:00:00+00 16:00:00 133542787454 1 \N +1553 2025-11-12 15:38:10.863553+00 2025-11-12 15:38:10.863562+00 f t [["2025-11-12", "afternoon"], ["2025-11-12", "evening"]] Confirmado 12140 10707 1583 Aplicacion tribiotic y control post quirurgico 1583 2025-11-13 03:00:00+00 18:00:00 132966787405 68 \N +1542 2025-11-11 22:46:15.760012+00 2025-11-11 22:46:15.760021+00 t t [["2025-11-12", "afternoon"]] Confirmado 12073 13016 113 Ecografia abdominal 113 2025-11-12 03:00:00+00 15:00:00 132862637295 90 \N +1544 2025-11-12 01:08:08.55299+00 2025-11-12 01:08:08.552999+00 f t [["2025-11-12", "Tarde"], ["2025-11-12", "Tarde"], ["2025-11-13", "Mañana"]] rejected 12088 13030 1208 Empezo a orinar por todos lados pero se esconde y esta muy quieto como si tuviera dolor infeccion urinaria creo 1208 2025-11-12 03:00:00+00 15:00:00 \N 91 \N +1697 2025-11-20 16:20:30.494583+00 2025-11-20 16:20:30.494591+00 f t [["2025-11-28", "morning"]] Confirmado 12978 13437 1583 Extraccion de sangre para perfil completo 1583 2025-11-28 03:00:00+00 11:00:00 134017546041 88 \N +1508 2025-11-10 13:02:52.70027+00 2025-11-10 13:02:52.700279+00 f t [["2025-11-10", "Mañana"], ["2025-11-10", "Tarde"], ["2025-11-10", "Tarde"]] vet_accepted 11902 12851 1583 vacunacion anual, desparasitacion int + ext para 7kg, corte de unas 1583 2025-11-10 03:00:00+00 16:00:00 39601899956 89 \N +1543 2025-11-11 23:50:23.706403+00 2025-11-11 23:50:23.706412+00 f t [["2025-11-12", "morning"]] Confirmado 12084 13016 113 Ecografia 113 2025-11-12 03:00:00+00 11:00:00 132862637295 5 \N +1561 2025-11-12 19:31:44.852183+00 2025-11-12 19:31:44.852191+00 f t [["2025-11-15", "Tarde"], ["2025-11-15", "Mañana"], ["2025-11-16", "Tarde"]] vet_asked 12167 13103 1583 Extraccion apra perfil general completo con orina + perfil lipidico sin glucosa + vit b12 + D + a la orina solo upc 1583 2025-11-14 03:00:00+00 13:00:00 \N 112 \N +1445 2025-11-06 16:16:02.210409+00 2025-11-06 16:16:02.210424+00 f t [["2025-11-06", "Tarde"], ["2025-11-06", "Tarde"], ["2025-11-07", "Tarde"]] vet_accepted 11563 12527 1583 Tiene dos días comiendo poco y teniendo problemas para caminar, es un perro de 16 años, ciego 1583 2025-11-06 03:00:00+00 16:00:00 Santander 88 \N +1756 2025-11-24 14:22:59.894565+00 2025-11-24 14:22:59.894572+00 f t [["2025-11-25", "morning"], ["2025-11-25", "afternoon"], ["2025-11-25", "evening"]] Confirmado 13402 13490 1583 Teleconsulta post estudios 1583 2025-11-25 03:00:00+00 21:00:00 MP 68 \N +1564 2025-11-12 20:57:08.832981+00 2025-11-12 20:57:08.83299+00 f t [["2025-11-17", "Mañana"], ["2025-11-18", "Mañana"], ["2025-11-20", "Mañana"]] rejected 12179 13114 1583 no toma agua, no come, vomito y tuvo diarrea y esta escondida durante el dia 1583 2025-11-13 03:00:00+00 11:00:00 \N \N \N +1546 2025-11-12 12:41:43.53037+00 2025-11-12 12:41:43.530379+00 f t [["2025-11-12", "morning"], ["2025-11-12", "afternoon"], ["2025-11-12", "evening"]] Confirmado 12116 11255 1208 vomito y deposiciones con sangre 1208 2025-11-12 03:00:00+00 15:00:00 133534415026 88 \N +1572 2025-11-13 14:28:55.22106+00 2025-11-13 14:28:55.221073+00 f t [["2025-11-13", "morning"], ["2025-11-13", "afternoon"], ["2025-11-13", "evening"]] Confirmado 12232 13168 1208 Vacunacion antirrabica con urgencia, perro pitbull mordio a un niño en la calle, se lo pide el medico 1208 2025-11-13 03:00:00+00 17:30:00 PDX4OGNYG1WME06RN0L6EY 21 \N +1554 2025-11-12 16:32:36.524515+00 2025-11-12 16:32:36.524523+00 f t [["2025-11-12", "afternoon"], ["2025-11-12", "evening"]] rejected 12148 13088 1583 No come hace 4 días, y tiene problemas de movilidad severos. Est tomando Tramadol, Omeprazol, Prednisolona 1583 2025-11-12 03:00:00+00 16:00:00 \N 113 \N +1545 2025-11-12 01:37:55.854399+00 2025-11-12 01:37:55.854408+00 f t [["2025-11-12", "Mañana"], ["2025-11-12", "Tarde"], ["2025-11-12", "Tarde"]] Confirmado 12094 13037 1208 Mi perra está un poco desanimada y lo único que note es que hizo un poco de heces oscuras 1208 2025-11-12 03:00:00+00 13:00:00 0 1 \N +1577 2025-11-13 16:53:22.715174+00 2025-11-13 16:53:22.715182+00 f t [["2025-11-13", "morning"], ["2025-11-13", "afternoon"], ["2025-11-13", "evening"]] Confirmado 12248 13183 1208 Gusanos en materia fecal e inflamacion en ano, quiere receta de atp ya que tiene otros gatos. 1208 2025-11-13 03:00:00+00 14:00:00 133092717371 80 \N +1550 2025-11-12 14:45:51.899643+00 2025-11-12 14:45:51.899651+00 f t [["2025-11-14", "morning"]] Confirmado 12134 12810 1583 Ecografia abdominal 1583 2025-11-14 03:00:00+00 09:00:00 132942131801 103 \N +1549 2025-11-12 14:22:52.945559+00 2025-11-12 14:22:52.945567+00 f t [["2025-11-12", "afternoon"]] rejected 12129 13073 1583 Ecografia abdominal, disponible despues de las 15hs cualquier dia 1583 2025-11-12 03:00:00+00 15:00:00 \N \N \N +1547 2025-11-12 13:26:46.204932+00 2025-11-12 13:26:46.204941+00 f t [["2025-11-22", "Mañana"], ["2025-11-22", "Tarde"], ["2025-11-22", "Tarde"]] vet_accepted 12123 12977 1208 control y vacunacion anual para perro y gato 1208 2025-11-22 03:00:00+00 10:00:00 84561212 80 \N +1586 2025-11-13 20:37:10.997525+00 2025-11-13 20:37:10.997536+00 f t [["2025-11-17", "morning"], ["2025-11-17", "afternoon"], ["2025-11-17", "evening"]] Confirmado 12268 308 1208 extraccion de sangre perfil general completo con orina, hay que ver si se suma alguna determinacion 1208 2025-11-17 03:00:00+00 16:00:00 133114746019 100 \N +1551 2025-11-12 15:21:00.567393+00 2025-11-12 15:21:00.567402+00 f t [["2025-11-13", "afternoon"], ["2025-11-13", "morning"], ["2025-11-13", "evening"]] Confirmado 12138 10291 1583 la escucho como resfriada o con moco 1583 2025-11-14 03:00:00+00 16:00:00 132945941727 114 \N +1417 2025-11-05 15:52:24.231903+00 2025-11-05 15:52:24.231912+00 f t [["2025-11-10", "morning"], ["2025-11-10", "afternoon"], ["2025-11-10", "evening"]] vet_accepted 11471 12441 1208 extraccion de sangre para prequirurgico por castracion\nNecesita gabapentina, gato complicado 1208 2025-11-12 03:00:00+00 18:00:00 132620609558 68 \N +1591 2025-11-14 01:50:02.496476+00 2025-11-14 01:50:02.496489+00 f t [["2025-11-14", "Mañana"], ["2025-11-14", "Tarde"], ["2025-11-14", "Tarde"]] rejected 12311 8819 1583 Vomitos 1583 \N \N \N \N \N +1583 2025-11-13 19:09:34.334043+00 2025-11-13 19:09:34.334052+00 f t [["2025-11-13", "evening"], ["2025-11-13", "afternoon"]] Confirmado 12260 12287 1583 Teleconsulta post estudios 1583 2025-11-14 03:00:00+00 12:30:00 133828070702 80 \N +1613 2025-11-15 17:25:31.083031+00 2025-11-15 17:25:31.08304+00 f t [["2025-11-15", "morning"], ["2025-11-15", "afternoon"], ["2025-11-15", "evening"]] Confirmado 12458 13399 1208 Mí madrina tiene un gato de unos 7 años castrado ,no come desde ayer si toma agua pero necesitaría que vayan a domicilio, a mí madrina muchas veces le dije que no le de carne picada ni dulce de leche ni manteca pero es complicado con una persona mayor 1208 2025-11-16 03:00:00+00 13:00:00 133998426504 70 \N +1665 2025-11-19 12:57:01.719996+00 2025-11-19 12:57:01.720005+00 f t [["2025-11-19", "morning"], ["2025-11-19", "afternoon"], ["2025-11-19", "evening"]] Confirmado 12822 7443 1208 muestra de orina 1208 2025-11-19 03:00:00+00 11:00:00 0 100 \N +1587 2025-11-13 22:51:40.873363+00 2025-11-13 22:51:40.873371+00 f t [["2025-11-13", "Tarde"], ["2025-11-14", "Mañana"], ["2025-11-14", "Tarde"]] vet_accepted 12278 13215 114 El día de hoy no quiso comer nada, y desde hace unos dias empezó a caminar mas lento, y ayer que lo llevé a la peluquería ya se tambaleaba, y hoy estuvo acostado casi todo el día, tiene mas de 12 años, es una cruza entre caniche y salchicha 114 2025-11-14 03:00:00+00 17:30:00 133747839322 21 \N +1652 2025-11-18 17:14:06.27702+00 2025-11-18 17:14:06.277029+00 f t [["2025-11-18", "morning"], ["2025-11-18", "afternoon"], ["2025-11-18", "evening"]] vet_accepted 12701 9712 1208 Se fatiga muy rápido al caminar 1208 2025-11-19 03:00:00+00 16:00:00 0 91 \N +1633 2025-11-17 16:25:03.817935+00 2025-11-17 16:25:03.817946+00 f t [["2025-11-17", "afternoon"], ["2025-11-17", "evening"]] in_progress_pay 12571 313 1583 Consulta, vomitos palidez, posible eutanasia 1583 2025-11-17 03:00:00+00 19:30:00 \N 70 \N +1671 2025-11-19 13:41:22.368021+00 2025-11-19 13:41:22.368031+00 t t [["2025-11-20", "Mañana"], ["2025-11-19", "Tarde"], ["2025-11-21", "Mañana"]] in_progress_vet 12834 13771 1583 Se ve que quiso trepar una pared.. tirò algunas maderas y tiene lastimado el lomo. Era escapista la adoptamos y la cuidamos mucho. Pero esta dolorida y lastimada. 1583 \N \N \N \N \N +1714 2025-11-21 12:41:08.119586+00 2025-11-21 12:41:08.119595+00 f t [["2025-11-22", "Tarde"], ["2025-11-21", "Tarde"], ["2025-11-21", "Tarde"]] Confirmado 13096 13993 1583 Inflamación y secresión de mucosa de color turbio en ojo izquierdo 1583 2025-11-21 03:00:00+00 11:30:00 3D5W612E6JE3J0GG2GXYVR 70 \N +1708 2025-11-20 21:26:38.021813+00 2025-11-20 21:26:38.021824+00 f t [["2025-11-20", "evening"]] rejected 13027 13958 1583 Diarrea con sangre desde hoy 1583 2025-11-20 03:00:00+00 21:00:00 \N 79 \N +1735 2025-11-22 13:36:26.360379+00 2025-11-22 13:36:26.360389+00 f t [["2025-11-22", "Mañana"], ["2025-11-22", "Mañana"], ["2025-11-22", "Tarde"]] rejected 13211 14147 1208 vacunacion sextuple 1208 2025-11-22 03:00:00+00 14:00:00 \N \N \N +1672 2025-11-19 13:54:07.010515+00 2025-11-19 13:54:07.010524+00 f t [["2025-11-19", "Tarde"], ["2025-11-20", "Mañana"], ["2025-11-21", "Mañana"]] in_progress_pay 12836 13771 1583 Se lastimo ayer trepandose. Pero tiene el costado del lomo lastimado y con dolor. 1583 2025-11-19 03:00:00+00 12:00:00 \N 94 \N +1599 2025-11-14 15:16:37.579806+00 2025-11-14 15:16:37.579815+00 f t [["2025-11-14", "Tarde"], ["2025-11-14", "Tarde"], ["2025-11-14", "Mañana"]] vet_accepted 12356 8397 1583 Hace 3 dias se robo dos osobucos crudos, dejo los huevos, su materia fecal estaba bien, hasta hoy. Tiene diarre con gotas de sangre. 1583 2025-11-14 03:00:00+00 17:00:00 133834573184 68 \N +1636 2025-11-17 17:01:58.224051+00 2025-11-17 17:01:58.224059+00 f t [["2025-11-28", "Mañana"], ["2025-11-29", "Mañana"], ["2025-11-30", "Mañana"]] in_progress_pay 12578 13512 1583 Vacunación anual 1583 2025-11-28 03:00:00+00 10:00:00 \N 1 \N +1525 2025-11-11 10:44:40.248721+00 2025-11-11 10:44:40.249271+00 f t [["2025-11-11", "Tarde"], ["2025-11-12", "Tarde"], ["2025-11-12", "Tarde"]] rejected 12002 12952 1208 La noto más delgada desde hace un mes. Hoy se despertó con unos maullidos graves, estaba como perdida. Se le pasó cuando la empecé a acariciar. 1208 2025-11-11 03:00:00+00 18:00:00 \N \N \N +1667 2025-11-19 13:13:37.866744+00 2025-11-19 13:13:37.866752+00 f t [["2025-11-19", "Tarde"], ["2025-11-20", "Mañana"], ["2025-11-21", "Mañana"]] Confirmado 12829 13766 1208 Presentó un cuadro de vomitos el Lunes por la tarde. Ayer se hizo visita al veterinario, presentaba fiebre. Se le inyectó un antibiótico. Se ordenó Ecografia de Utero 1208 2025-11-19 03:00:00+00 18:00:00 0 90 \N +1655 2025-11-18 19:52:46.838775+00 2025-11-18 19:52:46.838787+00 f t [["2025-11-21", "afternoon"], ["2025-11-21", "evening"]] vet_accepted 12725 13661 1583 vómitos, se pone muy molesta cuando hace pis 1583 2025-11-18 03:00:00+00 20:30:00 134372093292 68 \N +1762 2025-11-24 22:01:32.949232+00 2025-11-24 22:01:32.949243+00 f t [["2025-12-02", "afternoon"]] Confirmado 13449 14387 1583 Vacunacion anual 2 caninos 1583 2025-12-02 03:00:00+00 16:00:00 135117108972 114 \N +1645 2025-11-18 00:10:34.83822+00 2025-11-18 00:10:34.838228+00 f t [["2025-11-19", "afternoon"]] Confirmado 12639 12696 114 Incontinencia, vomitos y fiebre luego de Castración 114 2025-11-19 18:00:00+00 15:00:00 134250625542 114 \N +1620 2025-11-16 13:52:38.186502+00 2025-11-16 13:52:38.186514+00 f t [["2025-11-17", "Mañana"], ["2025-11-17", "Tarde"], ["2025-11-16", "Tarde"]] Confirmado 12489 6770 114 Mi perrito está con picazón y con un bulto en los dientes. 114 2025-11-18 03:00:00+00 19:00:00 39707134735 96 \N +1476 2025-11-07 21:54:08.14959+00 2025-11-07 21:54:08.149599+00 f t [["2025-11-10", "morning"], ["2025-11-10", "afternoon"], ["2025-11-10", "evening"]] vet_accepted 11694 12644 1208 chqueo general, cachorro de 3 meses y primer vacuna 1208 2025-11-10 03:00:00+00 18:00:00 133005256982 1 \N +1680 2025-11-19 18:30:13.191702+00 2025-11-19 18:30:13.191714+00 f t [["2025-11-26", "Tarde"], ["2025-11-28", "Tarde"], ["2025-12-02", "Tarde"]] Confirmado 12874 13809 1583 Consulta general para ver como esta su salud. 1583 2025-11-26 03:00:00+00 17:00:00 XJ8G7V95DE5JE1PR9EMPYR 68 \N +1639 2025-11-17 19:09:21.8292+00 2025-11-17 19:09:21.829208+00 f t [["2025-11-18", "afternoon"], ["2025-11-18", "evening"]] Confirmado 12597 2234 1583 Consulta post estudios, y chequeo general \N 2025-11-19 03:00:00+00 18:30:00 133605433321 70 \N +1614 2025-11-15 18:15:56.196942+00 2025-11-15 18:15:56.196951+00 f t [["2025-11-18", "morning"], ["2025-11-18", "afternoon"], ["2025-11-18", "evening"]] vet_accepted 12461 13402 1208 Note que tiene una pelota en la panza nose que será. Se estresa y se asusta cuando va al vete 1208 2025-11-19 03:00:00+00 18:00:00 39684565424 101 \N +1650 2025-11-18 14:55:11.042895+00 2025-11-18 14:55:11.042904+00 t t [["2025-11-18", "morning"], ["2025-11-18", "afternoon"], ["2025-11-18", "evening"]] in_progress_pay 12684 9712 1208 Se fatiga muy rápido al caminar 1208 2025-11-19 03:00:00+00 16:00:00 \N 80 \N +1659 2025-11-18 21:28:10.500382+00 2025-11-18 21:28:10.500393+00 f t [["2025-11-20", "afternoon"]] Confirmado 12736 10559 1583 Muetras de orina para orina completa y upc para los dos gatitos 1583 2025-11-20 03:00:00+00 14:00:00 naranjaX 100 \N +1660 2025-11-18 21:39:50.682105+00 2025-11-18 21:39:50.682114+00 f t [["2025-11-18", "Tarde"], ["2025-11-19", "Mañana"], ["2025-11-19", "Tarde"]] Confirmado 12741 13674 1583 Ecografia abdominal 1583 2025-11-18 03:00:00+00 22:00:00 134383924390 90 \N +1600 2025-11-14 16:27:32.242808+00 2025-11-14 16:27:32.242816+00 f t [["2025-11-14", "evening"]] Confirmado 12360 12527 1583 Nefrologia 1583 2025-11-14 03:00:00+00 18:00:00 86249351 115 \N +1642 2025-11-17 21:32:11.811927+00 2025-11-17 21:32:11.811935+00 f t [["2025-12-03", "Mañana"], ["2025-12-03", "Tarde"], ["2025-12-03", "Tarde"]] Confirmado 12614 13544 1583 Consulta cardiologica 1583 2025-12-03 03:00:00+00 14:00:00 Modo 82 \N +1618 2025-11-15 20:17:44.274576+00 2025-11-15 20:17:44.274585+00 f t [["2025-11-22", "morning"], ["2025-11-22", "afternoon"], ["2025-11-22", "evening"]] vet_accepted 12473 11659 1208 comenzar con vacunacion 1208 2025-11-22 03:00:00+00 15:00:00 1465964047 92 \N +1679 2025-11-19 17:46:50.215621+00 2025-11-19 17:46:50.215631+00 f t [["2025-11-19", "Tarde"], ["2025-11-19", "Tarde"], ["2025-11-19", "Mañana"]] rejected 12868 27 1583 Dairrea con un poquito de sangre 1583 2025-11-20 03:00:00+00 14:30:00 \N 79 \N +1668 2025-11-19 13:13:58.595786+00 2025-11-19 13:13:58.595794+00 f t [["2025-11-19", "morning"], ["2025-11-19", "afternoon"], ["2025-11-19", "evening"]] in_progress_pay 12830 13767 1208 vacunacion anual 1208 2025-11-28 03:00:00+00 13:00:00 \N 21 \N +1615 2025-11-15 18:27:22.811385+00 2025-11-15 18:27:22.811394+00 f t [["2025-11-16", "morning"], ["2025-11-16", "afternoon"], ["2025-11-16", "evening"]] Confirmado 12462 12810 1208 aplicacion de medicacion inyectable 1208 2025-11-16 03:00:00+00 08:00:00 133377356067 70 \N +1628 2025-11-17 13:34:58.370944+00 2025-11-17 13:34:58.370956+00 f t [["2025-11-17", "afternoon"], ["2025-11-17", "evening"]] rejected 12551 6802 1583 Ecografia abdominal, disponible hoy 1583 2025-11-17 03:00:00+00 16:00:00 \N \N \N +1648 2025-11-18 06:36:32.350832+00 2025-11-18 06:36:32.350846+00 f t [["2025-11-18", "Mañana"], ["2025-11-18", "Tarde"], ["2025-11-18", "Tarde"]] rejected 12665 13599 1208 Tiene una uña encarnada,tiene olor feo tiene infección necesito ayuda urgente no quiero que empeore o le siga doliendo 1208 2025-11-19 03:00:00+00 19:00:00 \N 96 \N +1621 2025-11-16 14:20:15.585493+00 2025-11-16 14:20:15.585502+00 f t [["2025-11-16", "morning"], ["2025-11-16", "afternoon"], ["2025-11-16", "evening"]] Confirmado 12494 13436 114 Dificultades para orinar, posible deshidratación 114 2025-11-16 03:00:00+00 14:00:00 XJ8G7V95DEMXDWJM9EMPYR 92 \N +1656 2025-11-18 19:56:43.431762+00 2025-11-18 19:56:43.431774+00 f t [["2025-11-22", "morning"]] Confirmado 12727 13663 1583 Extraccion para prequirurgico, revision por otitis y para limpieza dental 1583 2025-11-23 03:00:00+00 18:00:00 133850422863 92 \N +1625 2025-11-17 12:45:54.620671+00 2025-11-17 12:45:54.620679+00 f t [["2025-11-18", "afternoon"]] Confirmado 12542 13290 1583 Re toma de rayos 1583 2025-11-18 18:00:00+00 15:00:00 0 84 \N +1676 2025-11-19 14:49:19.438417+00 2025-11-19 14:49:19.43843+00 f t [["2025-11-24", "morning"]] Confirmado 12846 13663 1583 Muestra para prquirugico 1583 2025-11-24 03:00:00+00 09:00:00 0 100 \N +1637 2025-11-17 17:08:41.432461+00 2025-11-17 17:08:41.432472+00 f t [["2025-11-18", "morning"]] vet_accepted 12583 13436 1583 Muestra para Perfil 7 + Analisis de sangre completo 1583 2025-11-18 03:00:00+00 12:00:00 L0EJVV9JZL51LXZZ2QMD0G 100 \N +1681 2025-11-19 18:51:54.311378+00 2025-11-19 18:51:54.311386+00 f t [["2025-11-19", "Tarde"], ["2025-11-19", "Tarde"], ["2025-11-19", "Mañana"]] rejected 12877 13813 1583 Ecografia abdominal 1583 2025-11-19 03:00:00+00 20:00:00 \N \N \N +1666 2025-11-19 13:04:53.840403+00 2025-11-19 13:04:53.840412+00 f t [["2025-11-27", "Mañana"], ["2025-11-27", "Tarde"], ["2025-11-27", "Tarde"]] Confirmado 12826 13762 1208 Vacunacion triple felina. puede todo el dia 1208 2025-11-27 03:00:00+00 11:00:00 0 80 \N +1634 2025-11-17 16:36:26.240064+00 2025-11-17 16:36:26.240072+00 f t [["2025-11-18", "afternoon"]] payed 12572 12325 1583 No se especificó motivo de consulta. se solicitó: ... 1583 2025-11-18 03:00:00+00 14:30:00 86VRPQ2GMV4O1RRJ2GLY0M 82 \N +1673 2025-11-19 14:27:23.714094+00 2025-11-19 14:27:23.714105+00 f t [["2025-11-19", "afternoon"], ["2025-11-19", "evening"]] Confirmado 12840 13646 1583 Ecografia abdominal 1583 2025-11-19 03:00:00+00 19:00:00 MP 90 \N +1640 2025-11-17 20:02:47.52668+00 2025-11-17 20:02:47.526691+00 f t [["2025-11-18", "Tarde"], ["2025-11-19", "Tarde"], ["2025-11-20", "Tarde"]] rejected 12605 13537 1583 Es un perrito que se le escapó a la persona que lo estaba cuidando . Y me lo devolvió muy maltratado . Se le lastimo una patita que nosotros se la estamos desinfectando . Pero la verdad me lo devolvió muy mal 1583 2025-11-18 03:00:00+00 17:00:00 \N \N \N +1646 2025-11-18 00:14:16.139831+00 2025-11-18 00:14:16.139838+00 f t [["2025-11-19", "morning"]] Confirmado 12641 12810 114 medicacion inyectable 114 2025-11-18 03:00:00+00 08:00:00 134248959262 70 \N +1677 2025-11-19 16:23:19.840432+00 2025-11-19 16:23:19.84044+00 f t [["2025-11-19", "afternoon"], ["2025-11-19", "evening"]] Confirmado 12861 13658 1583 Linfoma temrinal, dificultad para caminar, segunda opinion para tratamiento. \N 2025-11-19 03:00:00+00 20:30:00 13386268361 70 \N +1653 2025-11-18 18:48:33.199209+00 2025-11-18 18:48:33.199219+00 f t [["2025-11-18", "Tarde"], ["2025-11-18", "Tarde"], ["2025-11-19", "Tarde"]] Confirmado 12713 13646 1583 letargico, no puede caminar mucho pero alerta, toma agua, comio muy poquito, hizo pis y caca. 1583 2025-11-18 03:00:00+00 19:00:00 MP 79 \N +1682 2025-11-19 18:52:23.934514+00 2025-11-19 18:52:23.934525+00 f t [["2025-11-19", "afternoon"]] Confirmado 12878 13744 1583 Muestra de sangre para perfil 7 + t4 1583 2025-11-19 03:00:00+00 18:00:00 133880692417 100 \N +1683 2025-11-19 18:58:55.365975+00 2025-11-19 18:58:55.365984+00 f t [["2025-11-20", "morning"], ["2025-11-20", "afternoon"], ["2025-11-20", "evening"]] Confirmado 12880 13352 1208 fluidoterapia endovenosa 1208 2025-11-20 03:00:00+00 10:30:00 133879580779 121 \N +1684 2025-11-19 19:01:21.332798+00 2025-11-19 19:01:21.332807+00 f t [["2025-11-21", "morning"], ["2025-11-21", "afternoon"], ["2025-11-21", "evening"]] Confirmado 12881 13352 1208 fluidoterapia endovenosa 1208 2025-11-21 03:00:00+00 10:00:00 133879580779 70 \N +1685 2025-11-19 19:01:46.622081+00 2025-11-19 19:01:46.622089+00 f t [["2025-11-22", "morning"], ["2025-11-22", "afternoon"], ["2025-11-22", "evening"]] Confirmado 12882 13352 1208 fluidoterapia endovenosa 1208 2025-11-22 03:00:00+00 10:00:00 133879580779 70 \N +1686 2025-11-19 19:02:30.044573+00 2025-11-19 19:02:30.044581+00 f t [["2025-11-26", "Tarde"], ["2025-11-27", "Tarde"], ["2025-11-27", "Tarde"]] Confirmado 12876 13812 1583 Ecografia abdominal por calculos renales 1583 2025-11-26 03:00:00+00 14:00:00 67REZ8NPQWO7R60R94KVGO 90 \N +1688 2025-11-19 20:10:33.392193+00 2025-11-19 20:10:33.392202+00 f t [["2025-11-20", "afternoon"]] Confirmado 12889 13709 1583 Vacunacion anual 1583 2025-11-20 03:00:00+00 12:00:00 134507402324 1 \N +1649 2025-11-18 10:53:56.288023+00 2025-11-18 10:53:56.288031+00 f t [["2025-11-18", "Mañana"], ["2025-11-19", "Mañana"], ["2025-11-20", "Mañana"]] vet_accepted 12675 13610 1208 voy a salir de viaje con la gata para el Brasil próximo mes, 18/12\nAntirrabica, certificado de salud y desparacitacion interna y externa 1208 2025-11-24 03:00:00+00 19:00:00 134378106642 1 \N +1610 2025-11-15 01:50:45.258764+00 2025-11-15 01:50:45.258774+00 f t [["2025-11-15", "Tarde"], ["2025-11-15", "Tarde"], ["2025-11-16", "Tarde"]] Confirmado 12413 13352 1208 Mi perro fue dado de alta luego de estar internado por una nefrectomia. Me indicaron que tenga un control clínico el día de hoy para chequear que todo estuviera bien 1208 2025-11-16 03:00:00+00 11:00:00 0 80 \N +1601 2025-11-14 16:34:36.802367+00 2025-11-14 16:34:36.802375+00 f t [["2025-11-19", "afternoon"]] Confirmado 12361 13305 1583 Toma de presion 1583 2025-11-19 03:00:00+00 15:30:00 86246768 113 \N +1669 2025-11-19 13:18:59.62045+00 2025-11-19 13:18:59.620458+00 f t [["2025-11-19", "morning"], ["2025-11-19", "afternoon"], ["2025-11-19", "evening"]] Confirmado 12832 13661 1208 muestra de orina 1208 2025-11-19 03:00:00+00 12:00:00 0 100 \N +1609 2025-11-14 22:04:17.665956+00 2025-11-14 22:04:17.665968+00 f t [["2025-12-13", "morning"], ["2025-12-13", "afternoon"], ["2025-12-13", "evening"]] Confirmado 12390 13329 1208 vacunacion anual 1208 2025-12-13 03:00:00+00 10:00:00 0 80 \N +1612 2025-11-15 16:17:40.188279+00 2025-11-15 16:17:40.188289+00 f t [["2025-11-15", "morning"], ["2025-11-15", "afternoon"], ["2025-11-15", "evening"]] rejected 12454 13395 1208 vacunacion antirrabica marca bagovac, otra le han dado reacciones adversas 1208 2025-11-17 03:00:00+00 17:00:00 \N 1 \N +1485 2025-11-08 17:15:20.855789+00 2025-11-08 17:15:20.855799+00 f t [["2025-11-10", "Tarde"], ["2025-11-10", "Tarde"], ["2025-11-11", "Tarde"]] vet_accepted 11766 12718 1208 Mi mamá tiene una perra de 18 años que no se puede levantar desde hace un día. A principio de año comenzó a tener dificultades con las patas de atrás pero con Artrin y acupuntura mejoró mucho. El tema es que tiene una pata muy lastimada porque se auto lesiona y cuesta mucho curarle la herida. 1208 2025-11-08 03:00:00+00 16:00:00 0 68 \N +1647 2025-11-18 01:17:40.214408+00 2025-11-18 01:17:40.214421+00 f t [["2025-12-01", "Mañana"], ["2025-12-05", "Mañana"], ["2025-11-28", "Mañana"]] rejected 12647 13580 1208 Lo quiero castrar 1208 \N \N \N \N \N +1654 2025-11-18 19:51:40.684688+00 2025-11-18 19:51:40.684701+00 f t [["2025-11-18", "Tarde"], ["2025-11-19", "Tarde"], ["2025-11-19", "Tarde"]] rejected 12723 13658 1583 Linfoma termina, no se puede mover 1583 2025-11-18 03:00:00+00 19:00:00 \N \N \N +1603 2025-11-14 16:57:25.225767+00 2025-11-14 16:57:25.225778+00 f t [["2025-11-14", "evening"]] Confirmado 12363 10193 1583 Pata hinchada, temblor, poca movilidad. 1583 2025-11-14 23:00:00+00 20:00:00 MP 1 \N +1602 2025-11-14 16:43:26.179155+00 2025-11-14 16:43:26.17918+00 t t [["2025-11-14", "afternoon"], ["2025-11-14", "evening"]] in_progress_pay 12362 10193 1583 Pata hinchada, temblor, poca movilidad. 1583 2025-11-14 03:00:00+00 18:00:00 \N 1 \N +1604 2025-11-14 17:50:04.485865+00 2025-11-14 17:50:04.48588+00 f t [["2025-11-16", "Mañana"], ["2025-11-17", "Mañana"], ["2025-11-18", "Mañana"]] rejected 12368 13310 1583 Me solicitan analisis de sangre completo para la limpieza dental 1583 \N \N \N \N \N +1611 2025-11-15 11:19:11.335781+00 2025-11-15 11:19:11.335791+00 f t [["2025-11-18", "Tarde"], ["2025-11-19", "Tarde"], ["2025-11-20", "Tarde"]] Confirmado 12427 13367 1208 vacunacion anual para dos 1208 2025-11-17 03:00:00+00 17:30:00 2021089487 96 \N +1605 2025-11-14 18:01:17.658301+00 2025-11-14 18:01:17.658312+00 f t [["2025-11-15", "morning"], ["2025-11-15", "afternoon"], ["2025-11-15", "evening"]] coordinated 12371 12160 1583 Ecografia abdominal 1583 2025-11-15 03:00:00+00 18:00:00 RD06ZO9WV1L4LKZ1N5GP7X 90 \N +1622 2025-11-16 14:38:13.259874+00 2025-11-16 14:38:13.259882+00 f t [["2025-11-19", "Tarde"], ["2025-11-19", "Tarde"], ["2025-11-19", "Mañana"]] Confirmado 12495 13437 114 Vacunación anual 114 2025-11-19 03:00:00+00 16:00:00 133469985133 88 \N +1626 2025-11-17 13:13:06.433024+00 2025-11-17 13:13:06.433036+00 f t [] rejected 12547 13490 1583 Esta gatita vive desde siempre en la Embajada de Chile en Argentina, debe tener entre unos 12 a 15 años, es una gatita que no es sociable con las personas, pero conmigo si, le doy de comer, pero esta sobre peso y siento que por su edad puede ser algo mas, como también hay días que pasa sin levantarse para comer y beber agua.\n-La gatita no ha sido vacunada nunca, por eso agregue lo básico de inyecciones. 1583 \N \N \N \N \N +1678 2025-11-19 16:47:47.462069+00 2025-11-19 16:47:47.462077+00 f t [["2025-11-21", "morning"]] Confirmado 12864 1734 1583 Consulta post estudios 1583 2025-11-21 12:00:00+00 09:00:00 134479101444 92 \N +1629 2025-11-17 13:43:22.699549+00 2025-11-17 13:43:22.699561+00 f t [["2025-11-18", "afternoon"]] Confirmado 12552 13436 114 No se especificó motivo de consulta. se solicitó: Ecografía... 114 2025-11-18 18:00:00+00 15:00:00 LOEJWV9JZL51LXZZ2QMD0G 90 \N +1661 2025-11-19 02:06:38.538717+00 2025-11-19 02:06:38.538727+00 f t [["2025-11-19", "Tarde"], ["2025-11-19", "Tarde"], ["2025-11-19", "Mañana"]] rejected 12775 13709 1208 vacunacion anual 1208 2025-11-20 03:00:00+00 11:30:00 \N 80 \N +1606 2025-11-14 19:41:03.125337+00 2025-11-14 19:41:03.12537+00 t t [["2025-11-15", "morning"]] in_progress_pay 12380 12160 1583 No se especificó motivo de consulta. se solicitó: ... 1583 2025-11-15 03:00:00+00 10:00:00 \N 78 \N +1607 2025-11-14 19:41:33.632627+00 2025-11-14 19:41:33.632638+00 t t [["2025-11-15", "morning"]] pending 12381 12160 \N \N \N 2025-11-15 12:00:00+00 09:00:00 \N \N \N +1608 2025-11-14 19:49:52.193962+00 2025-11-14 19:49:52.193971+00 f t [["2025-11-15", "morning"]] Confirmado 12382 12810 1583 revision de radiografia, por dolor cervical 1583 2025-11-15 03:00:00+00 09:30:00 133872006888 70 \N +1635 2025-11-17 16:38:49.292492+00 2025-11-17 16:38:49.292499+00 f t [["2025-11-19", "afternoon"]] Confirmado 12573 12325 1583 Consulta post estudios 1583 2025-11-19 03:00:00+00 12:00:00 WY7ZEPN6MQ178PE42Q0M51 114 \N +1690 2025-11-19 20:53:56.504928+00 2025-11-19 20:53:56.504936+00 f t [["2025-11-20", "morning"], ["2025-11-20", "afternoon"]] Confirmado 12901 9712 1583 Muestra de orina para analisis fisico-quimico-sedimento, y relacion creatinina en orina \N 2025-11-20 03:00:00+00 12:00:00 PDX4OGNYG1Z08WR4N0L6EY 100 \N +1638 2025-11-17 18:25:01.605994+00 2025-11-17 18:25:01.606006+00 f t [["2025-11-17", "afternoon"]] vet_accepted 12590 12696 114 Incontinencia, vomitos y fiebre luego de Castración 114 2025-11-17 03:00:00+00 17:30:00 1133604588893 114 \N +1651 2025-11-18 15:33:20.412977+00 2025-11-18 15:33:20.41299+00 f t [["2025-11-21", "Mañana"], ["2025-11-21", "Tarde"], ["2025-11-21", "Tarde"]] Confirmado 12681 5951 1583 Vacunacion anual antirrábica y corte de garras 1583 2025-11-22 03:00:00+00 10:00:00 cuenta DNI\\ 99 \N +1657 2025-11-18 20:07:17.922788+00 2025-11-18 20:07:17.922796+00 f t [["2025-11-20", "morning"]] rejected 12732 811 1583 REvision general y extraccion de sangre 1583 2025-11-20 12:00:00+00 09:00:00 \N \N \N +1775 2025-11-25 14:09:12.648174+00 2025-11-25 14:09:12.648183+00 f t [["2025-11-25", "morning"], ["2025-11-25", "afternoon"], ["2025-11-25", "evening"]] Confirmado 13533 14472 1208 estaba indispuesta, y hace unos tres dias esta con mucha perdida, pero ayer no quiso comer, y eso nos esta preocupando, si toma mucha agua, la tocamos y no se queja de ningun dolor 1208 2025-11-25 03:00:00+00 17:00:00 135185242622 68 \N +1670 2025-11-19 13:37:14.43627+00 2025-11-19 13:37:14.436282+00 f t [["2025-11-24", "Tarde"], ["2025-11-24", "Tarde"], ["2025-11-24", "Mañana"]] Confirmado 12833 12455 1208 Viajo con mi gata y necesito el certificado de viaje. La cita esta programada para < 10 dias del vuelo 1208 2025-11-24 03:00:00+00 15:00:00 MP 91 \N +1752 2025-11-24 13:20:26.197569+00 2025-11-24 13:20:26.197577+00 f t [["2025-11-24", "Mañana"], ["2025-11-24", "Tarde"], ["2025-11-24", "Tarde"]] rejected 13390 14332 1583 Ecografia abdominal 1583 2025-11-24 03:00:00+00 16:00:00 \N \N \N +1769 2025-11-25 12:10:13.880063+00 2025-11-25 12:10:13.880075+00 f t [["2025-12-02", "Tarde"], ["2025-12-02", "Noche"], ["2025-12-01", "Tarde"]] Confirmado 13514 393 1208 Desde el 30/7 tiene vomitos esporádicos. Se realizó tratamiento con antiemeticos, antiácidos.\nTiene 3 ecografias con muestra de gastritis pero aún con vómitos.\nEn los últimos días más seguidos 1208 2025-11-25 03:00:00+00 19:30:00 135200080834 91 \N +1710 2025-11-20 23:41:58.548301+00 2025-11-20 23:41:58.54831+00 f t [["2025-11-21", "morning"], ["2025-11-21", "afternoon"]] rejected 13046 13976 113 Revison con analisis de sangre 113 2025-11-21 03:00:00+00 13:00:00 \N \N \N +1791 2025-11-25 20:18:35.726612+00 2025-11-25 20:18:35.726619+00 f t [["2025-11-28", "morning"]] payed 13595 1734 1583 Muetras para coproparasitologico 1583 2025-11-28 03:00:00+00 11:00:00 134612904611 \N \N +1687 2025-11-19 19:21:52.366856+00 2025-11-19 19:21:52.366864+00 f t [["2025-11-26", "Mañana"], ["2025-11-26", "Tarde"], ["2025-11-27", "Tarde"]] Confirmado 12886 13820 1583 Precisamos hacer estudios pre quirurgicos electrocardiograma y eco cardiograma 1583 2025-11-26 03:00:00+00 16:00:00 134511621986 82 \N +1716 2025-11-21 13:35:16.912241+00 2025-11-21 13:35:16.912251+00 f t [["2025-11-21", "Mañana"], ["2025-11-21", "Tarde"], ["2025-11-21", "Tarde"]] rejected 13099 14030 1583 Quiero averiguar por castracion, no me aparece la opcion 1583 \N \N \N \N \N +1794 2025-11-25 21:19:44.728644+00 2025-11-25 21:19:44.728651+00 f t [["2025-11-26", "afternoon"]] payed 13603 14506 1583 Muetra para perfil 7 1583 2025-11-26 03:00:00+00 16:00:00 0 \N \N +1720 2025-11-21 15:51:29.441412+00 2025-11-21 15:51:29.441421+00 f t [["2025-11-25", "afternoon"], ["2025-11-25", "evening"]] Confirmado 13118 14050 1583 Vacunacion anual dos caninos, Hembra reactiva, tendra bozal, no muerde solo ladra 1583 2025-11-25 03:00:00+00 19:00:00 134126721967 80 \N +1580 2025-11-13 17:33:29.293901+00 2025-11-13 17:33:29.293909+00 f t [["2025-11-17", "morning"], ["2025-11-17", "afternoon"], ["2025-11-17", "evening"]] rejected 12253 13191 1208 consulta cardiologica prequirurgicos para castracion 1208 2025-11-17 03:00:00+00 14:30:00 \N \N \N +1728 2025-11-21 20:50:00.090979+00 2025-11-21 20:50:00.090991+00 f t [["2025-11-24", "morning"], ["2025-11-24", "afternoon"], ["2025-11-24", "evening"]] rejected 13162 79 1208 control cardologico 1208 2025-11-24 03:00:00+00 11:00:00 \N \N \N +1740 2025-11-22 18:28:15.998327+00 2025-11-22 18:28:15.998335+00 f t [["2025-11-23", "morning"], ["2025-11-23", "afternoon"], ["2025-11-23", "evening"]] Confirmado 13237 14055 1208 Verruga en el cuello, sufrio algun tipo de herida y florecio con secreciones leves 1208 2025-11-23 03:00:00+00 10:30:00 0 80 \N +1674 2025-11-19 14:29:29.824279+00 2025-11-19 14:29:29.82429+00 f t [["2025-11-19", "afternoon"], ["2025-11-19", "morning"], ["2025-11-19", "evening"]] vet_accepted 12842 10880 1208 vacunacion anual 1208 2025-12-03 03:00:00+00 14:00:00 70085828010251119 74 \N +1736 2025-11-22 14:43:38.581849+00 2025-11-22 14:43:38.581858+00 f t [["2025-11-23", "Mañana"], ["2025-11-23", "Mañana"], ["2025-11-23", "Mañana"]] vet_accepted 13220 14157 1208 Hace pis en el sillón cuando siempre hizo en su caja y ayer encontré un poquito de sangre en la arena 1208 2025-11-23 03:00:00+00 09:00:00 134245171723 80 \N +1746 2025-11-23 14:51:13.750301+00 2025-11-23 14:51:13.75031+00 f t [["2025-11-24", "Tarde"], ["2025-11-24", "Tarde"], ["2025-11-24", "Tarde"]] Confirmado 13287 14229 1583 El gato presenta una pequeña herida en el labio superior derecho. Es una herida rosada, que no sangra y que mostrou una pequeña evolución desde que fue observada hace dos o tres semanas. 1583 2025-11-24 03:00:00+00 11:00:00 1LMP68NKVVJGYO3D2R7OEV 80 \N +1675 2025-11-19 14:48:54.938271+00 2025-11-19 14:48:54.93828+00 f t [["2025-11-19", "morning"], ["2025-11-19", "afternoon"], ["2025-11-19", "evening"]] Confirmado 12845 703 1208 viene con diarreas liquidas intermitentes hace unos dias 1208 2025-11-19 03:00:00+00 16:00:00 0 114 \N +1641 2025-11-17 21:21:41.467777+00 2025-11-17 21:21:41.467784+00 f t [["2025-12-03", "Tarde"], ["2025-12-03", "Tarde"], ["2025-12-03", "Mañana"]] in_progress_pay 12611 13544 1583 Extraccion para prequirugico de India\nExtraccion para perfil general completo y pcr vif vilef para Pandora 1583 2025-12-03 03:00:00+00 13:00:00 \N 68 \N +1724 2025-11-21 19:31:40.958667+00 2025-11-21 19:31:40.958677+00 f t [["2025-11-21", "morning"], ["2025-11-21", "afternoon"], ["2025-11-21", "evening"]] rejected 13152 266 1208 esta con el ojo rojo hace unos dias 1208 2025-11-25 03:00:00+00 16:00:00 0 68 \N +1763 2025-11-24 22:26:39.550189+00 2025-11-24 22:26:39.550198+00 f t [["2025-11-25", "morning"], ["2025-11-25", "afternoon"], ["2025-11-25", "evening"]] rejected 13456 456 1583 Vomitos, decaido, disponible hoy en lo posible, o manana 1583 2025-11-24 03:00:00+00 20:30:00 \N \N \N +1757 2025-11-24 14:27:45.932045+00 2025-11-24 14:27:45.932053+00 f t [] Confirmado 13365 14306 1583 Tengo un gato con FIV que vomito 3 veces la ultima semana, la ultima anoche. Dejó de comer balanceado seco, esta comiendo comida casera húmeda pero creo que esta bajando de peso y no se si está bien hidratado. \nNo fue posible meterlo en la transportadora para llevarlo al vet,es un gato rescatado. 1583 2025-11-25 03:00:00+00 20:00:00 Santander 80 \N +1773 2025-11-25 13:17:55.862466+00 2025-11-25 13:17:55.862477+00 f t [["2025-11-25", "Tarde"], ["2025-12-02", "Tarde"], ["2025-12-02", "Tarde"]] rejected 13527 14466 1208 A uno de mis perros se le encarno una uña y es muy miedoso para dejar acercarme a cortarsela. Queria saber si existia la posibilidad de darle un sedante y que vengan ustedes a cortarle la uña y revisarlo. Vivo en capilla del señor 1208 \N \N \N \N \N +1760 2025-11-24 15:03:56.983114+00 2025-11-24 15:03:56.983123+00 f t [["2025-11-25", "Tarde"], ["2025-11-25", "Tarde"], ["2025-11-25", "Mañana"]] vet_accepted 13410 14350 1583 Vacunacion anual 1583 2025-11-25 03:00:00+00 14:00:00 134471725805 21 \N +1766 2025-11-25 01:35:08.331562+00 2025-11-25 01:35:08.331571+00 f t [["2025-11-25", "Mañana"], ["2025-11-25", "Mañana"], ["2025-11-25", "Mañana"]] rejected 13489 14427 1208 Vómitos amarillos dificultad para moverse no toma agua hace 6 horas 1208 \N \N \N \N \N +1731 2025-11-22 01:18:34.747312+00 2025-11-22 01:18:34.747323+00 f t [["2025-11-22", "Mañana"], ["2025-11-22", "Tarde"], ["2025-11-22", "Tarde"]] rejected 13187 14119 1208 Ojo rojo e inflamado 1208 2025-11-22 03:00:00+00 13:00:00 \N 1 \N +1711 2025-11-21 01:57:52.764258+00 2025-11-21 01:57:52.764269+00 f t [["2025-11-21", "Tarde"], ["2025-11-21", "Mañana"], ["2025-11-21", "Tarde"]] rejected 13063 13993 1583 Inflamación y secreción de mucosas color turbio en el ojo izquierdo. 1583 \N \N \N \N \N +1737 2025-11-22 15:43:45.859194+00 2025-11-22 15:43:45.859206+00 f t [["2025-11-22", "morning"], ["2025-11-22", "afternoon"], ["2025-11-22", "evening"]] rejected 13223 14147 1208 vacunacion sextuple 1208 2025-11-24 03:00:00+00 11:00:00 \N \N \N +1689 2025-11-19 20:23:47.592794+00 2025-11-19 20:23:47.592802+00 f t [["2025-11-19", "Mañana"], ["2025-11-19", "Tarde"], ["2025-11-19", "Tarde"]] vet_accepted 12890 13824 1583 Le salió un huesito en la encia 1583 2025-11-20 03:00:00+00 09:00:00 134514109798 1 \N +1764 2025-11-24 23:11:34.761601+00 2025-11-24 23:11:34.76161+00 f t [["2025-11-25", "evening"], ["2025-11-25", "afternoon"]] in_progress_pay 13463 9712 1583 Teleconsulta post estudios 1583 2025-11-26 03:00:00+00 20:30:00 \N 106 \N +1721 2025-11-21 16:04:04.037102+00 2025-11-21 16:04:04.037114+00 f t [["2025-11-21", "Tarde"], ["2025-11-22", "Tarde"], ["2025-11-23", "Tarde"]] vet_accepted 13119 1098 1208 Le acabo de ver pelada la cabecita en la parte interna de la oreja. 1208 2025-11-21 03:00:00+00 17:00:00 39762556134 1 \N +1778 2025-11-25 14:52:48.613204+00 2025-11-25 14:52:48.613216+00 f t [["2025-11-25", "morning"], ["2025-11-25", "afternoon"], ["2025-11-25", "evening"]] Confirmado 13542 14482 1208 desde ayer a la tarde está con problemas de constipacion\nY está con vómitos\nSolo toma agua y como ya le dio una vez le di por recomendación de otra colega Lactulon eso la tranquilizó\nPero recién le di y lo vomitó 1208 2025-11-25 03:00:00+00 18:00:00 135192607000 114 \N +1770 2025-11-25 12:41:22.752318+00 2025-11-25 12:41:22.752327+00 f t [["2025-11-25", "morning"], ["2025-11-25", "afternoon"], ["2025-11-25", "evening"]] Confirmado 13519 277 1208 Vomito 3 veces hoy (2 fueron líquido sin pelos ni plantas? E hizo caca fuera de su arenero 3 veces 1208 2025-11-25 03:00:00+00 13:00:00 0 114 \N +1717 2025-11-21 13:47:26.864063+00 2025-11-21 13:47:26.864071+00 f t [["2025-11-22", "morning"], ["2025-11-22", "afternoon"], ["2025-11-22", "evening"]] rejected 13101 14033 1583 Eutanasia por carcinoma en la boca, disponible sabado o domingo por la tarde 1583 2025-11-22 03:00:00+00 15:00:00 \N 92 \N +1585 2025-11-13 20:21:13.905895+00 2025-11-13 20:21:13.905903+00 f t [["2025-11-14", "afternoon"], ["2025-11-14", "evening"]] vet_accepted 12266 418 1583 2 vacunacion anual, felino y canino. 1583 2025-11-14 03:00:00+00 16:00:00 19352765 1 \N +1777 2025-11-25 14:27:37.223425+00 2025-11-25 14:27:37.223433+00 f t [["2025-12-03", "Mañana"], ["2025-12-03", "Mañana"], ["2025-12-03", "Tarde"]] Confirmado 13534 14473 1583 consulta general y extraccion de sangre para control 1583 2025-11-26 03:00:00+00 16:00:00 Santander 113 \N +1729 2025-11-21 22:41:31.074423+00 2025-11-21 22:41:31.074432+00 f t [["2025-11-22", "Mañana"], ["2025-11-24", "Mañana"], ["2025-11-25", "Mañana"]] rejected 13170 14100 1208 Control 1208 \N \N \N \N \N +1783 2025-11-25 16:38:46.664149+00 2025-11-25 16:38:46.664158+00 f t [["2025-12-01", "Tarde"], ["2025-12-02", "Tarde"], ["2025-12-03", "Tarde"]] Confirmado 13560 14499 1583 13 años no come no hace pis ahora hizo 24hr. Letargo no quiere caminar. 1583 2025-11-25 03:00:00+00 15:00:00 135206531918 21 \N +1725 2025-11-21 19:49:41.369961+00 2025-11-21 19:49:41.36997+00 f t [["2025-11-21", "morning"], ["2025-11-21", "afternoon"], ["2025-11-21", "evening"]] rejected 13156 14089 1208 Mi perrito esta teniendo dificultades para sentarse, hace un rato despertó y tampoco se podia subir de la cama. Lo revisé y no le vi nada. tiene 8 meses 1208 2025-11-21 03:00:00+00 18:00:00 \N \N \N +1772 2025-11-25 13:01:26.221513+00 2025-11-25 13:01:26.221522+00 f t [["2025-11-25", "morning"], ["2025-11-25", "afternoon"], ["2025-11-25", "evening"]] payed 13525 274 1208 orina pendiente 1208 \N \N 0 \N \N +1741 2025-11-22 18:41:25.441822+00 2025-11-22 18:41:25.441833+00 f t [["2025-11-26", "Tarde"], ["2025-11-26", "Tarde"], ["2025-11-26", "Tarde"]] Confirmado 13239 14175 1208 Se un poco más delgada la zona de la cadera y un leve caminar extraño. 1208 2025-11-26 03:00:00+00 16:00:00 134268727047 88 \N +1767 2025-11-25 01:43:57.476908+00 2025-11-25 01:43:57.476916+00 f t [["2025-12-01", "Mañana"], ["2025-12-01", "Mañana"], ["2025-12-01", "Tarde"]] rejected 13492 14431 1208 Hola qué tal? Le toca la sextuple y la antirrabica. 1208 2025-12-01 03:00:00+00 10:00:00 \N 88 \N +1785 2025-11-25 17:25:43.833993+00 2025-11-25 17:25:43.834394+00 f t [["2025-11-25", "Tarde"], ["2025-11-25", "Tarde"], ["2025-11-25", "Tarde"]] Confirmado 13567 14506 1583 Esta muy debil, hace dias no come, no toma, casi no camina, pasa por mucho dolor, no tiene fiebre. 1583 2025-11-26 03:00:00+00 16:00:00 135218415218 5 \N +1787 2025-11-25 18:50:11.348628+00 2025-11-25 18:50:11.348642+00 f t [["2025-11-26", "morning"], ["2025-11-26", "afternoon"], ["2025-11-26", "evening"]] rejected 13587 393 1208 extraccion de sangre perfil general sin orina, pcr vif/vileg y pcr mycoplasma 1208 2025-11-26 03:00:00+00 09:00:00 \N 88 \N +1747 2025-11-23 18:33:57.438902+00 2025-11-23 18:33:57.43891+00 f t [["2025-11-24", "evening"]] rejected 13303 9712 1583 Consulta cardiologica y toma de presion 1583 2025-11-24 03:00:00+00 19:00:00 \N 82 \N +1792 2025-11-25 20:50:32.52322+00 2025-11-25 20:50:32.523228+00 f t [["2025-11-26", "morning"]] rejected 13598 14506 1583 Extraccion para perfil 7 1583 2025-11-26 03:00:00+00 13:00:00 \N \N \N +1758 2025-11-24 14:28:27.461003+00 2025-11-24 14:28:27.461012+00 t t [] pending 13365 14306 \N Tengo un gato con FIV que vomito 3 veces la ultima semana, la ultima anoche. Dejó de comer balanceado seco, esta comiendo comida casera húmeda pero creo que esta bajando de peso y no se si está bien hidratado. \nNo fue posible meterlo en la transportadora para llevarlo al vet,es un gato rescatado. \N \N \N \N \N \N +1743 2025-11-23 10:23:45.900513+00 2025-11-23 10:23:45.900525+00 f t [["2025-11-23", "Mañana"], ["2025-11-23", "Mañana"], ["2025-11-23", "Mañana"]] rejected 13270 14209 1583 Mi perro de 16 años esta con diarrea desde el dia de ayer, y hace cada 3 o 4 hs aprox 1583 2025-11-23 03:00:00+00 17:00:00 \N \N \N +1330 2025-10-31 20:32:55.345082+00 2025-10-31 20:32:55.34509+00 f t [["2025-10-31", "morning"], ["2025-10-31", "afternoon"], ["2025-10-31", "evening"]] coordinated 11108 12087 1208 15 años y tiene un bulto en la vejiga. Esta con tratamiento de tramado, y meloxicam\nEsta con un poco de perdidas y la noto decaida 1208 2025-10-04 03:00:00+00 15:00:00 \N 1 \N +1753 2025-11-24 13:40:20.418397+00 2025-11-24 13:40:20.418408+00 t t [["2025-11-24", "afternoon"], ["2025-11-24", "evening"], ["2025-11-24", "morning"]] in_progress_pay 13393 14336 1583 Eutanasia, no come y no se levanta 1583 2025-11-24 03:00:00+00 14:00:00 \N 2 \N +1702 2025-11-20 17:49:16.862647+00 2025-11-20 17:49:16.862654+00 f t [["2025-12-18", "morning"]] vet_accepted 12996 10953 1583 Certificado de salud, desparasitacio int+ext 20-30kg canino 1583 2025-12-18 03:00:00+00 11:00:00 134615204454 80 \N +1742 2025-11-22 22:56:17.791656+00 2025-11-22 22:56:17.791666+00 f t [["2025-11-23", "Mañana"], ["2025-11-23", "Tarde"], ["2025-11-23", "Tarde"]] rejected 13250 12952 1583 Es una gatita cardíaca, recientemente medicada. Sigue teniendo episodios de mareo y apetito selectivo. 1583 \N \N \N \N \N +1701 2025-11-20 17:47:42.010489+00 2025-11-20 17:47:42.010497+00 f t [["2025-11-20", "afternoon"], ["2025-11-20", "evening"]] vet_accepted 12995 13661 1583 Consulta post estudios 1583 2025-11-20 03:00:00+00 18:00:00 82916194 68 \N +1691 2025-11-19 21:00:14.944409+00 2025-11-19 21:00:14.944424+00 f t [["2025-11-19", "Tarde"], ["2025-11-19", "Tarde"], ["2025-11-19", "Mañana"]] rejected 12903 13837 1583 Babea con sangre y está desorientado 1583 2025-11-19 03:00:00+00 20:00:00 \N \N \N +1695 2025-11-20 11:34:00.929199+00 2025-11-20 11:34:00.929212+00 f t [["2025-11-20", "Tarde"], ["2025-11-21", "Tarde"], ["2025-11-22", "Mañana"]] rejected 12947 13884 1583 Creo que mi gato tiene cistitis. Tuvo el año pasado con hematuria, esta vez no la presenta pero está haciendo en otros lugares (cama, sillon). Ha hecho en las piedritas porque estan amarillas, pero hoy se subio al sillon y trato de hacer con dificultad. 1583 \N \N \N \N \N +1699 2025-11-20 16:37:53.301684+00 2025-11-20 16:37:53.301692+00 f t [["2025-11-20", "afternoon"], ["2025-11-20", "evening"]] rejected 12982 13920 1583 Consulta general, disponible hasta las 20h 1583 2025-11-26 03:00:00+00 18:30:00 \N 70 \N +1627 2025-11-17 13:27:10.597204+00 2025-11-17 13:27:10.597213+00 f t [["2025-11-18", "Tarde"], ["2025-11-19", "Mañana"], ["2025-11-18", "Tarde"]] Confirmado 12550 13490 1583 Gatita poco sociable, darle gabapentina, vive hace años en embajada, no ha recibido vacunas ni desparasitación, creo que es hembra por que tengo una gatita que tiene su tamaño, le doy alimento pero esta sobre peso y debe ser por que no ha tenido desparasitación, camina con dificultad pero por su edad al parecer, lagrimea y bota mocos por lo que debe estar resfriada o con alergia, de preferencia necesito una veterinaria Mujer con los hombre no se da. 1583 2025-11-18 03:00:00+00 14:00:00 133579055797 68 \N +1712 2025-11-21 11:18:10.983317+00 2025-11-21 11:18:10.983326+00 f t [["2025-11-21", "Mañana"], ["2025-11-21", "Tarde"], ["2025-11-21", "Tarde"]] Confirmado 13086 14017 1583 Consulta cardiologica urgente por arritmia 1583 2025-11-21 03:00:00+00 14:00:00 13408370330 82 \N +1754 2025-11-24 13:57:08.933618+00 2025-11-24 13:57:08.933629+00 f t [["2025-11-24", "afternoon"]] Confirmado 13397 14336 1583 Eutanasia 1583 2025-11-26 03:00:00+00 20:30:00 134445546123 70 \N +1703 2025-11-20 18:08:46.129497+00 2025-11-20 18:08:46.129508+00 f t [["2025-11-20", "afternoon"], ["2025-11-20", "evening"]] rejected 12994 12999 1583 Eutanasia 1583 2025-11-20 03:00:00+00 18:00:00 134017742255 121 \N +1360 2025-11-02 18:54:48.996449+00 2025-11-02 18:54:48.996457+00 f t [["2025-11-11", "afternoon"], ["2025-11-11", "evening"]] Confirmado 11254 12236 114 Perdida de pelo en abdomen y zona cercana al inicio de la cola 114 2025-11-20 03:00:00+00 17:30:00 133988561993 88 \N +1696 2025-11-20 13:01:00.019578+00 2025-11-20 13:01:00.019589+00 f t [["2025-11-25", "Mañana"], ["2025-11-25", "Tarde"], ["2025-11-25", "Tarde"]] rejected 12954 12968 1583 Prequirurgico cardiologico, disponible todo el dia 1583 2025-11-25 03:00:00+00 11:00:00 \N 82 \N +1693 2025-11-20 01:16:01.755065+00 2025-11-20 01:16:01.755075+00 f t [["2025-11-25", "Tarde"], ["2025-11-25", "Mañana"], ["2025-11-25", "Tarde"]] rejected 12926 13861 1583 Nos mudamos de departamento a casa, Bob nunca salió del departamento y jamás lo vacunaron 1583 \N \N \N \N \N +1694 2025-11-20 11:26:25.744242+00 2025-11-20 11:26:25.744251+00 f t [["2025-11-26", "Mañana"], ["2025-11-26", "Tarde"], ["2025-11-26", "Tarde"]] vet_accepted 12946 13882 1583 Vacunacion anual, desparasitacion int+ext 5kg 1583 2025-11-26 03:00:00+00 10:00:00 133986194933 80 \N +1722 2025-11-21 16:09:08.236194+00 2025-11-21 16:09:08.236203+00 f t [["2025-11-23", "Tarde"], ["2025-11-23", "Tarde"], ["2025-11-21", "Tarde"]] Confirmado 13122 14055 1208 Verruga en el cuello, sufrio algun tipo de herida y florecio con secreciones leves 1208 2025-11-21 03:00:00+00 20:00:00 134133661357 80 \N +1526 2025-11-11 13:27:19.187574+00 2025-11-11 13:27:19.187583+00 f t [["2025-11-11", "morning"], ["2025-11-11", "afternoon"], ["2025-11-11", "evening"]] vet_accepted 12014 12802 1208 extraccion perfil general completo sin orina 1208 2025-11-11 03:00:00+00 12:00:00 132791097701 88 \N +1698 2025-11-20 16:22:04.891917+00 2025-11-20 16:22:04.891927+00 f t [["2025-11-20", "afternoon"]] Confirmado 12980 13916 114 Problemas urinarios y rengueo en la pata 114 2025-11-20 03:00:00+00 16:30:00 134612590444 121 \N +1224 2025-10-27 14:02:56.282933+00 2025-10-27 14:02:56.282942+00 f t [["2025-10-27", "afternoon"], ["2025-10-27", "evening"]] rejected 10584 10555 1583 Colocacion de suero 15min. 3 visitas dia por medio 1583 2025-10-28 03:00:00+00 10:00:00 \N \N \N +1732 2025-11-22 01:28:06.918801+00 2025-11-22 01:28:06.918811+00 f t [["2025-11-21", "Mañana"], ["2025-11-22", "Tarde"], ["2025-11-29", "Tarde"]] rejected 13188 346 1208 prueba 1208 \N \N \N \N \N +1744 2025-11-23 13:00:11.416021+00 2025-11-23 13:00:11.416034+00 f t [["2025-11-23", "Tarde"], ["2025-11-23", "Tarde"], ["2025-11-23", "Noche"]] rejected 13277 14217 1583 Muy decaído 1583 2025-11-23 03:00:00+00 16:00:00 \N \N \N +1700 2025-11-20 17:43:20.137746+00 2025-11-20 17:43:20.137755+00 f t [["2025-11-20", "afternoon"], ["2025-11-20", "evening"]] vet_accepted 12993 7443 1583 Consulta post estudios 1583 2025-11-20 03:00:00+00 17:00:00 3D5W612E6JQ83MRG2GXYVR 80 \N +1748 2025-11-23 18:35:40.759927+00 2025-11-23 18:35:40.759936+00 f t [["2025-11-24", "evening"]] coordinated 13304 9712 1583 Consulta cardiologica y toma de presion 1583 2025-11-24 03:00:00+00 19:00:00 Redlink 82 \N +1704 2025-11-20 18:52:06.796005+00 2025-11-20 18:52:06.796016+00 f t [["2025-11-26", "afternoon"]] vet_accepted 13004 4848 114 Consulta endocrinologa 114 2025-11-26 03:00:00+00 18:00:00 7712001378 98 \N +1718 2025-11-21 15:01:35.39981+00 2025-11-21 15:01:35.399821+00 f t [["2025-12-13", "afternoon"]] rejected 13113 14045 1583 vacunacino anual 1583 2025-12-13 18:00:00+00 15:00:00 \N 91 \N +1738 2025-11-22 16:37:12.434904+00 2025-11-22 16:37:12.434915+00 f t [["2025-11-22", "morning"], ["2025-11-22", "afternoon"], ["2025-11-22", "evening"]] rejected 13228 14164 1208 esta con estornudos hace unos dias 1208 \N \N \N \N \N +1750 2025-11-24 07:23:05.390389+00 2025-11-24 07:23:05.3904+00 f t [["2025-11-24", "Mañana"], ["2025-11-24", "Mañana"], ["2025-11-24", "Tarde"]] in_progress_pay 13361 14301 1583 Cistitis , molestia al orinar, vómitos 1583 2025-11-24 03:00:00+00 13:00:00 \N 118 \N +1706 2025-11-20 19:05:09.150852+00 2025-11-20 19:05:09.15086+00 f t [["2025-11-20", "afternoon"]] Confirmado 13006 12999 1583 Eutanasia 1583 2025-11-20 03:00:00+00 18:00:00 134017742255 121 \N +1739 2025-11-22 17:07:02.389299+00 2025-11-22 17:07:02.389312+00 f t [["2025-11-22", "Tarde"], ["2025-11-22", "Tarde"], ["2025-11-22", "Tarde"]] rejected 13231 14168 1208 Quitarle los puntos de una castración 1208 2025-11-22 03:00:00+00 16:00:00 \N \N \N +1776 2025-11-25 14:25:26.798694+00 2025-11-25 14:25:26.798707+00 f t [["2025-12-06", "morning"], ["2025-12-06", "afternoon"], ["2025-12-06", "evening"]] Confirmado 13537 14476 1583 Vacunacion anual y desparasitacion int+ext 4kg 1583 2025-12-06 03:00:00+00 10:00:00 135186947892 1 \N +1552 2025-11-12 15:29:55.220458+00 2025-11-12 15:29:55.220466+00 f t [["2025-11-13", "morning"], ["2025-11-13", "afternoon"], ["2025-11-13", "evening"]] vet_accepted 12139 3054 1208 Tiene una bolita cerca de las mamas y queremos hacer una consulta 1208 2025-11-13 03:00:00+00 17:00:00 132978350997 68 \N +1781 2025-11-25 16:22:16.12793+00 2025-11-25 16:22:16.127945+00 f t [["2025-11-25", "morning"], ["2025-11-25", "afternoon"], ["2025-11-25", "evening"]] in_progress_vet 13554 14493 1208 no puede levantarse esta hechas y le cuesta caminar para orinar y comer. Salio que tiene infeccion urinaria esta con tratamiento amoxicilina clavulanico 500 mg 1 cada 12 hs por 12 dias 1208 2025-11-25 03:00:00+00 19:30:00 \N \N \N +1707 2025-11-20 20:14:24.61274+00 2025-11-20 20:14:24.612748+00 f t [["2025-12-04", "afternoon"]] Confirmado 13016 13437 1583 Muestra de sangre para perfil completo con orina y upc 1583 2025-12-04 03:00:00+00 15:00:00 0 100 \N +1784 2025-11-25 16:53:53.829415+00 2025-11-25 16:53:53.829423+00 f t [["2025-11-27", "morning"]] payed 13566 14473 1583 Muestra de sangre para perfil 7 1583 2025-11-27 12:00:00+00 09:00:00 0 \N \N +1713 2025-11-21 12:30:19.541318+00 2025-11-21 12:30:19.54133+00 f t [["2025-11-21", "afternoon"], ["2025-11-21", "evening"]] Confirmado 13094 14017 1583 Ecografia abdominal urgencia 1583 2025-11-21 03:00:00+00 15:00:00 8D0Q619L0O4ZZGXVN7JZ5R 90 \N +1774 2025-11-25 13:33:39.189125+00 2025-11-25 13:33:39.189134+00 f t [["2025-12-04", "morning"], ["2025-12-04", "afternoon"], ["2025-12-04", "evening"]] Confirmado 13528 12857 1208 extraccion de sangre perfil 7 1208 2025-12-04 03:00:00+00 10:00:00 39803050963 1 \N +1779 2025-11-25 15:26:28.662801+00 2025-11-25 15:26:28.66281+00 f t [["2025-11-25", "morning"], ["2025-11-25", "afternoon"], ["2025-11-25", "evening"]] rejected 13544 14484 1208 inyeccion sc vit b12, tiene las jeringas dosificadas ya 1208 2025-11-27 03:00:00+00 17:30:00 \N \N \N +1715 2025-11-21 12:56:31.014119+00 2025-11-21 12:56:31.01413+00 f t [["2025-11-21", "afternoon"], ["2025-11-21", "evening"]] Confirmado 13097 9712 1583 Ecografia abdominal 1583 2025-11-22 03:00:00+00 20:00:00 Redlink 90 \N +1727 2025-11-21 20:47:41.907215+00 2025-11-21 20:47:41.907224+00 f t [["2025-11-22", "morning"], ["2025-11-22", "afternoon"], ["2025-11-22", "evening"]] Confirmado 13161 79 1208 perfil 5 + glucosa + t4 libre y total 1208 2025-11-22 03:00:00+00 10:30:00 0 100 \N +1788 2025-11-25 19:44:48.45636+00 2025-11-25 19:44:48.456367+00 f t [["2025-11-25", "evening"]] Confirmado 13592 12810 1583 No puede caminar 1583 2025-11-25 03:00:00+00 22:00:00 134609320145 70 \N +1730 2025-11-21 23:37:21.218992+00 2025-11-21 23:37:21.219+00 f t [["2025-11-22", "Tarde"], ["2025-11-22", "Tarde"], ["2025-11-22", "Mañana"]] rejected 13176 14107 1208 Le toca vacunarse contra la antirrabica 1208 \N \N \N \N \N +1745 2025-11-23 13:44:12.924319+00 2025-11-23 13:44:12.924331+00 f t [["2025-11-23", "Tarde"], ["2025-11-23", "Tarde"], ["2025-11-23", "Tarde"]] rejected 13281 14217 1583 Está muy decaído 1583 \N \N \N \N \N +1786 2025-11-25 18:38:27.621811+00 2025-11-25 18:38:27.62182+00 f t [["2025-11-26", "afternoon"], ["2025-11-26", "evening"]] rejected 13579 13663 1583 Prequiruegico cardiologico 1583 \N \N \N \N \N +1749 2025-11-23 20:27:50.106663+00 2025-11-23 20:27:50.106671+00 f t [["2025-11-30", "afternoon"], ["2025-11-30", "evening"]] rejected 13322 4774 1583 Vomita liquido, parece baba 1583 2025-11-23 03:00:00+00 18:30:00 \N \N \N +1793 2025-11-25 21:00:08.990876+00 2025-11-25 21:00:08.990888+00 f t [["2025-11-26", "afternoon"]] Confirmado 13600 14506 1583 Extraccion para perfil 7 1583 2025-11-26 03:00:00+00 13:00:00 135234697204 112 \N +1782 2025-11-25 16:32:58.852237+00 2025-11-25 16:32:58.852246+00 f t [["2025-12-02", "morning"], ["2025-12-02", "afternoon"], ["2025-12-02", "evening"]] Confirmado 13558 14497 1208 vacunacion anual para los dos 1208 2025-12-02 03:00:00+00 17:00:00 0 94 \N +1719 2025-11-21 15:16:32.77671+00 2025-11-21 15:16:32.77672+00 f t [["2025-11-26", "morning"]] coordinated 13114 14046 1583 3 vacunas anuales felinos\n3 desparasitaciones int+ext 6kg, 4kg, 8 kg\nDisponibilidad Miércoles y viernes de 9 a 11hs 1583 2025-12-03 03:00:00+00 09:00:00 134988032674 94 \N +1759 2025-11-24 15:03:46.293182+00 2025-11-24 15:03:46.293192+00 t t [["2025-11-25", "Tarde"], ["2025-11-25", "Tarde"], ["2025-11-25", "Mañana"]] pending 13410 14350 \N Hola tengo que ponerle las vacunas para viajar a uruguay \N \N \N \N \N \N +1796 2025-11-25 21:21:46.532924+00 2025-11-25 21:21:46.532931+00 f t [["2025-11-26", "morning"]] Confirmado 13605 11644 1583 Teleconsulta post estudios 1583 2025-11-26 03:00:00+00 11:00:00 134619986903 92 \N +1790 2025-11-25 20:13:27.853024+00 2025-11-25 20:13:27.853035+00 f t [["2025-11-25", "afternoon"], ["2025-11-25", "evening"]] in_progress_pay 13593 14530 1583 Control post qirurgico, revision general 1583 2025-11-25 03:00:00+00 19:00:00 \N 1 \N +1751 2025-11-24 09:57:56.227477+00 2025-11-24 09:57:56.227491+00 f t [["2025-11-25", "Mañana"], ["2025-11-25", "Mañana"], ["2025-11-25", "Mañana"]] rejected 13367 14308 1583 Tiene un ojo cerrado, se le juntan lagañas y hace dos días que le cuesta abrirlo o no quiere hacerlo. 1583 2025-11-25 03:00:00+00 14:00:00 \N 114 \N +1761 2025-11-24 20:39:15.68066+00 2025-11-24 20:39:15.680669+00 f t [["2025-12-04", "afternoon"]] Confirmado 13437 648 1583 vacunacion anual 1583 2025-12-04 03:00:00+00 13:00:00 135118970068 121 \N +1733 2025-11-22 02:30:47.611835+00 2025-11-22 02:30:47.611848+00 f t [["2025-11-25", "Tarde"], ["2025-11-25", "Tarde"], ["2025-11-25", "Tarde"]] Confirmado 13193 14127 1208 Es una gata de interior, queremos chequear su estado de salud porque muy pronto tendremos un BB 1208 2025-11-25 03:00:00+00 15:00:00 39772692145 114 \N +1755 2025-11-24 14:20:10.041354+00 2025-11-24 14:20:10.041366+00 f t [["2025-11-26", "afternoon"], ["2025-11-26", "evening"]] Confirmado 13400 14164 1583 Vacunacion anual 1583 2025-11-26 03:00:00+00 17:00:00 134502379695 89 \N +1768 2025-11-25 02:08:31.076323+00 2025-11-25 02:08:31.076337+00 f t [["2025-12-05", "Tarde"], ["2025-12-04", "Tarde"], ["2025-12-02", "Tarde"]] Confirmado 13498 14438 1208 Ver su estado general 1208 2025-12-02 03:00:00+00 17:00:00 134563453015 1 \N +1771 2025-11-25 12:53:31.685299+00 2025-11-25 12:53:31.685311+00 f t [["2025-11-25", "morning"], ["2025-11-25", "afternoon"], ["2025-11-25", "evening"]] rejected 13522 456 1208 consulta hoy 1208 \N \N \N \N \N +1765 2025-11-25 01:04:48.54275+00 2025-11-25 01:04:48.542763+00 f t [["2025-11-24", "Noche"], ["2025-11-24", "Noche"], ["2025-11-24", "Noche"]] rejected 13485 14422 1208 Vómitos color café \nNo come nada por si sola hace 1 semana \nLe damos comida con jeringa\nNo tolera el agua si con jeringa \nHizo caca color negro oscuro con mucosidad 1208 \N \N \N \N \N +1726 2025-11-21 20:07:56.347123+00 2025-11-21 20:07:56.347162+00 f t [["2025-11-22", "morning"], ["2025-11-22", "afternoon"], ["2025-11-22", "evening"]] vet_accepted 13157 79 1208 extraccion de sangre perfil 5 + glucosa + t4 total y libre 1208 2025-11-22 03:00:00+00 09:30:00 0 112 \N +1797 2025-11-25 22:22:14.946356+00 2025-11-25 22:22:14.94687+00 f t [["2025-11-27", "Mañana"], ["2025-11-28", "Mañana"], ["2025-11-29", "Mañana"]] payed 13611 14542 113 Hola,\n\nSiento que mi gata esta rara, no come mucho como lo hacia habitualmente y se ve como con poca energia. 113 2025-11-27 03:00:00+00 18:00:00 135255017068 \N \N +1800 2025-11-25 23:19:29.125305+00 2025-11-25 23:19:29.125314+00 f t [["2025-11-25", "Noche"], ["2025-11-26", "Mañana"], ["2025-11-27", "Mañana"]] pending 13618 14551 \N Hace caca con sangre \N \N \N \N \N \N +1798 2025-11-25 22:52:30.366039+00 2025-11-25 22:52:30.36605+00 f t [["2025-11-27", "Mañana"], ["2025-11-27", "Mañana"], ["2025-11-27", "Tarde"]] coordinated 13615 14499 113 Indicado por Dra. 113 2025-11-26 03:00:00+00 16:00:00 \N \N \N +1801 2025-11-25 23:47:59.677336+00 2025-11-25 23:47:59.677349+00 f t [["2025-12-03", "Noche"], ["2025-12-03", "Noche"], ["2025-12-03", "Noche"]] coordinated 13620 14530 113 Esta recién castrado y creo q adolorido. Es rescatado. 113 2025-12-03 03:00:00+00 16:00:00 \N \N \N +1799 2025-11-25 23:17:57.988983+00 2025-11-25 23:17:57.988993+00 f t [["2025-11-25", "Noche"], ["2025-11-25", "Noche"], ["2025-11-25", "Noche"]] in_progress_pay 13617 14550 113 Esta dolorido y sangra de algun lado que no logro ver 113 2025-11-25 03:00:00+00 14:30:00 \N 68 \N +1802 2025-11-26 00:20:54.418611+00 2025-11-26 00:20:54.418622+00 f t [["2025-11-29", "afternoon"]] Confirmado 13621 10193 113 Toma de muestra 113 2025-11-29 03:00:00+00 16:00:00 79006687 1 \N +\. + + +-- +-- Data for Name: solicitudes_servicerequest_tags; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.solicitudes_servicerequest_tags (id, servicerequest_id, tag_id) FROM stdin; +1 1132 1 +2 1133 1 +3 1134 1 +4 1135 1 +5 1136 1 +6 1137 1 +7 1138 1 +8 1139 1 +9 1140 1 +10 1141 1 +11 1142 1 +12 1143 1 +13 1144 1 +14 1145 1 +15 1146 1 +16 1147 1 +17 1148 1 +18 1149 1 +19 1150 1 +20 1151 1 +21 1152 1 +22 1153 1 +23 1154 1 +24 1155 1 +25 1156 1 +26 1157 1 +27 1158 1 +28 1159 1 +29 1160 1 +30 1161 1 +31 1162 1 +32 1163 1 +33 1164 1 +34 1165 1 +35 1166 1 +36 1167 1 +37 1168 1 +38 1169 1 +39 1170 1 +40 1171 1 +41 1172 1 +42 1173 1 +43 1174 1 +44 1175 1 +45 1176 1 +46 1177 1 +47 1178 1 +48 1179 1 +49 1180 1 +50 1181 1 +51 1182 1 +52 1183 1 +53 1184 1 +54 1185 1 +55 1186 1 +56 1187 1 +57 1188 1 +58 1189 1 +59 1190 1 +60 1191 1 +61 1192 1 +62 1193 1 +63 1194 1 +64 1195 1 +65 1196 1 +66 1197 1 +67 1198 1 +68 1199 1 +69 1200 1 +70 1201 1 +71 1202 1 +72 1203 1 +73 1204 1 +74 1205 1 +75 1206 1 +76 1207 1 +77 1208 1 +78 1209 1 +79 1210 1 +80 1211 1 +81 1212 1 +82 1213 1 +83 1214 1 +84 1215 1 +85 1216 1 +86 1217 1 +87 1218 1 +88 1219 1 +89 1220 1 +90 1221 1 +91 1222 1 +92 1223 1 +93 1224 1 +94 1225 1 +95 1226 1 +96 1227 1 +97 1228 1 +98 1229 1 +99 1230 1 +100 1231 1 +101 1232 1 +102 1233 1 +103 1234 1 +104 1235 1 +105 1236 1 +106 1237 1 +107 1238 1 +108 1239 1 +109 1240 1 +110 1241 1 +111 1242 1 +112 1243 1 +113 1244 1 +114 1245 1 +115 1246 1 +116 1247 1 +117 1248 1 +118 1249 1 +119 1250 1 +120 1251 1 +121 1252 1 +122 1253 1 +123 1254 1 +124 1255 1 +125 1256 1 +126 1257 1 +127 1258 1 +128 1259 1 +129 1260 1 +130 1261 1 +131 1262 1 +132 1263 1 +133 1264 1 +134 1265 1 +135 1266 1 +136 1267 1 +137 1268 1 +138 1269 1 +139 1270 1 +140 1271 1 +141 1272 1 +142 1273 1 +143 1274 1 +144 1275 1 +145 1276 1 +146 1277 1 +147 1278 1 +148 1279 1 +149 1280 1 +150 1281 1 +151 1282 1 +152 1283 1 +153 1284 1 +154 1285 1 +155 1286 1 +156 1287 1 +157 1288 1 +158 1289 1 +159 1290 1 +160 1291 1 +161 1292 1 +162 1293 1 +163 1294 1 +164 1295 1 +165 1296 1 +166 1297 1 +167 1298 1 +168 1299 1 +169 1300 1 +170 1301 1 +171 1302 1 +172 1303 1 +173 1304 1 +174 1305 1 +175 1306 1 +176 1307 1 +177 1308 1 +178 1309 1 +179 1310 1 +180 1311 1 +181 1312 1 +182 1313 1 +183 1314 1 +184 1315 1 +185 1316 1 +186 1317 1 +187 1318 1 +188 1319 1 +189 1320 1 +190 1321 1 +191 1322 1 +192 1323 1 +193 1324 1 +194 1325 1 +195 1326 1 +196 1327 1 +197 1328 1 +198 1329 1 +199 1330 1 +200 1331 1 +201 1332 1 +202 1333 1 +203 1334 1 +204 1335 1 +205 1336 1 +206 1337 1 +207 1338 1 +208 1339 1 +209 1340 1 +210 1341 1 +211 1342 1 +212 1343 1 +213 1344 1 +214 1345 1 +215 1346 1 +216 1347 1 +217 1348 1 +218 1349 1 +219 1350 1 +220 1351 1 +221 1352 1 +222 1353 1 +223 1354 1 +224 1355 1 +225 1356 1 +226 1357 1 +227 1358 1 +228 1359 1 +229 1360 1 +230 1361 1 +231 1362 1 +232 1363 1 +233 1364 1 +234 1365 1 +235 1366 1 +236 1367 1 +237 1368 1 +238 1369 1 +239 1370 1 +240 1371 1 +241 1372 1 +242 1373 1 +243 1374 1 +244 1375 1 +245 1376 1 +246 1377 1 +247 1378 1 +248 1379 1 +249 1380 1 +250 1381 1 +251 1382 1 +252 1383 1 +253 1384 1 +254 1385 1 +255 1386 1 +256 1387 1 +257 1388 1 +258 1389 1 +259 1390 1 +260 1391 1 +261 1392 1 +262 1393 1 +263 1394 1 +264 1395 1 +265 1396 1 +266 1397 1 +267 1398 1 +268 1399 1 +269 1400 1 +270 1401 1 +271 1402 1 +272 1403 1 +273 1404 1 +274 1405 1 +275 1406 1 +276 1407 1 +277 1408 1 +278 1409 1 +279 1410 1 +280 1411 1 +281 1412 1 +282 1413 1 +283 1414 1 +284 1415 1 +285 1416 1 +286 1417 1 +287 1418 1 +288 1419 1 +289 1420 1 +290 1421 1 +291 1422 1 +292 1423 1 +293 1424 1 +294 1425 1 +295 1426 1 +296 1427 1 +297 1428 1 +298 1429 1 +299 1430 1 +300 1431 1 +301 1432 1 +302 1433 1 +303 1434 1 +304 1435 1 +305 1436 1 +306 1437 1 +307 1438 1 +308 1439 1 +309 1440 1 +310 1441 1 +311 1442 1 +312 1443 1 +313 1444 1 +314 1445 1 +315 1446 1 +316 1447 1 +317 1448 1 +318 1449 1 +319 1450 1 +320 1451 1 +321 1452 1 +322 1453 1 +323 1454 1 +324 1455 1 +325 1456 1 +326 1457 1 +327 1458 1 +328 1459 1 +329 1460 1 +330 1461 1 +331 1462 1 +332 1463 1 +333 1464 1 +334 1465 1 +335 1466 1 +336 1467 1 +337 1468 1 +338 1469 1 +339 1470 1 +340 1471 1 +341 1472 1 +342 1473 1 +343 1474 1 +344 1475 1 +345 1476 1 +346 1477 1 +347 1478 1 +348 1479 1 +349 1480 1 +350 1481 1 +351 1482 1 +352 1483 1 +353 1484 1 +354 1485 1 +355 1486 1 +356 1487 1 +357 1488 1 +358 1489 1 +359 1490 1 +360 1491 1 +361 1492 1 +362 1493 1 +363 1494 1 +364 1495 1 +365 1496 1 +366 1497 1 +367 1498 1 +368 1499 1 +369 1500 1 +370 1501 1 +371 1502 1 +372 1503 1 +373 1504 1 +374 1505 1 +375 1506 1 +376 1507 1 +377 1508 1 +378 1509 1 +379 1510 1 +380 1511 1 +381 1514 1 +382 1515 1 +383 1516 1 +384 1517 1 +385 1518 1 +386 1519 1 +387 1520 1 +388 1521 1 +389 1522 1 +390 1523 1 +391 1524 1 +392 1525 1 +393 1526 1 +394 1527 1 +395 1528 1 +396 1529 1 +397 1530 1 +398 1531 1 +399 1532 1 +400 1533 1 +401 1534 1 +402 1535 1 +403 1536 1 +404 1537 1 +405 1538 1 +406 1539 1 +407 1540 1 +408 1541 1 +409 1542 1 +410 1543 1 +411 1544 1 +412 1545 1 +413 1546 1 +414 1547 1 +415 1548 1 +416 1549 1 +417 1550 1 +418 1551 1 +419 1552 1 +420 1553 1 +421 1554 1 +422 1555 1 +423 1556 1 +424 1557 1 +425 1558 1 +426 1559 1 +427 1560 1 +428 1561 1 +429 1562 1 +430 1563 1 +431 1564 1 +432 1565 1 +433 1566 1 +434 1567 1 +435 1568 1 +436 1569 1 +437 1570 1 +438 1571 1 +439 1572 1 +440 1573 1 +441 1574 1 +442 1575 1 +443 1576 1 +444 1577 1 +445 1578 1 +446 1579 1 +447 1580 1 +448 1581 1 +449 1582 1 +450 1583 1 +451 1584 1 +452 1585 1 +453 1586 1 +454 1587 1 +455 1588 1 +456 1589 1 +457 1590 1 +458 1591 1 +459 1592 1 +460 1593 1 +461 1594 1 +462 1595 1 +463 1596 1 +464 1597 1 +465 1598 1 +466 1599 1 +467 1600 1 +468 1601 1 +469 1602 1 +470 1603 1 +471 1604 1 +472 1605 1 +473 1606 1 +474 1607 1 +475 1608 1 +476 1609 1 +477 1610 1 +478 1611 1 +479 1612 1 +480 1613 1 +481 1614 1 +482 1615 1 +483 1616 1 +484 1617 1 +485 1618 1 +486 1619 1 +487 1620 1 +488 1621 1 +489 1622 1 +490 1623 1 +491 1624 1 +492 1625 1 +493 1626 1 +494 1627 1 +495 1628 1 +496 1629 1 +497 1630 1 +498 1631 1 +499 1632 1 +500 1633 1 +501 1634 1 +502 1635 1 +503 1636 1 +504 1637 1 +505 1638 1 +506 1639 1 +507 1640 1 +508 1641 1 +509 1642 1 +510 1643 1 +511 1644 1 +512 1645 1 +513 1646 1 +514 1647 1 +515 1648 1 +516 1649 1 +517 1650 1 +518 1651 1 +519 1652 1 +520 1653 1 +521 1654 1 +522 1655 1 +523 1656 1 +524 1657 1 +525 1658 1 +526 1659 1 +527 1660 1 +528 1661 1 +529 1662 1 +530 1663 1 +531 1664 1 +532 1665 1 +533 1666 1 +534 1667 1 +535 1668 1 +536 1669 1 +537 1670 1 +538 1671 1 +539 1672 1 +540 1673 1 +541 1674 1 +542 1675 1 +543 1676 1 +544 1677 1 +545 1678 1 +546 1679 1 +547 1680 1 +548 1681 1 +549 1682 1 +550 1683 1 +551 1684 1 +552 1685 1 +553 1686 1 +554 1687 1 +555 1688 1 +556 1689 1 +557 1690 1 +558 1691 1 +559 1692 1 +560 1693 1 +561 1694 1 +562 1695 1 +563 1696 1 +564 1697 1 +565 1698 1 +566 1699 1 +567 1700 1 +568 1701 1 +569 1702 1 +570 1703 1 +571 1704 1 +572 1705 1 +573 1706 1 +574 1707 1 +575 1708 1 +576 1709 1 +577 1710 1 +578 1711 1 +579 1712 1 +580 1713 1 +581 1714 1 +582 1715 1 +583 1716 1 +584 1717 1 +585 1718 1 +586 1719 1 +587 1720 1 +588 1721 1 +589 1722 1 +590 1723 1 +591 1724 1 +592 1725 1 +593 1726 1 +594 1727 1 +595 1728 1 +596 1729 1 +597 1730 1 +598 1731 1 +599 1732 1 +600 1733 1 +601 1734 1 +602 1735 1 +603 1736 1 +604 1737 1 +605 1738 1 +606 1739 1 +607 1740 1 +608 1741 1 +609 1742 1 +610 1743 1 +611 1744 1 +612 1745 1 +613 1746 1 +614 1747 1 +615 1748 1 +616 1749 1 +617 1750 1 +618 1751 1 +619 1752 1 +620 1753 1 +621 1754 1 +622 1755 1 +623 1756 1 +624 1761 1 +625 1762 1 +626 1763 1 +627 1764 1 +628 1765 1 +629 1766 1 +630 1767 1 +631 1768 1 +632 1769 1 +633 1770 1 +634 1771 1 +635 1772 1 +636 1773 1 +637 1774 1 +638 1775 1 +639 1776 1 +640 1777 1 +641 1778 1 +642 1779 1 +643 1780 1 +644 1781 1 +645 1782 1 +646 1783 1 +647 1784 1 +648 1785 1 +649 1786 1 +650 1787 1 +651 1788 1 +652 1789 1 +653 1790 1 +654 1791 1 +655 1792 1 +656 1793 1 +657 1794 1 +658 1795 1 +659 1796 1 +660 1797 1 +661 1798 1 +662 1799 1 +663 1800 1 +664 1801 1 +665 1802 1 +\. + + +-- +-- Data for Name: solicitudes_servicerequeststatehistory; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.solicitudes_servicerequeststatehistory (id, created_at, updated_at, deleted, active, state, additional_data, service_request_id, user_id) FROM stdin; +1 2025-04-16 17:54:11.427397+00 2025-04-16 17:54:11.42741+00 f t in_progress_vet 1 113 +2 2025-04-16 21:37:16.233558+00 2025-04-16 21:37:16.233569+00 f t in_progress_vet 2 113 +3 2025-04-16 21:38:02.951056+00 2025-04-16 21:38:02.951065+00 f t in_progress_vet 3 113 +4 2025-04-20 14:43:59.586748+00 2025-04-20 14:43:59.586757+00 f t in_progress_vet 4 114 +5 2025-04-25 12:34:14.788705+00 2025-04-25 12:34:14.788717+00 f t in_progress_vet 5 112 +6 2025-04-25 12:35:06.464261+00 2025-04-25 12:35:06.464274+00 f t in_progress_pay 5 \N +7 2025-04-25 12:37:31.341519+00 2025-04-25 12:37:31.341533+00 f t in_progress_pay 5 \N +8 2025-04-26 16:21:57.102408+00 2025-04-26 16:21:57.102419+00 f t in_progress_pay 5 \N +9 2025-04-26 16:23:58.983647+00 2025-04-26 16:23:58.983656+00 f t rejected D-Provincia 5 114 +10 2025-04-26 16:25:00.000362+00 2025-04-26 16:25:00.000371+00 f t rejected D-Provincia 5 114 +11 2025-04-26 18:11:22.74983+00 2025-04-26 18:11:22.749844+00 f t in_progress_vet 6 114 +12 2025-04-29 16:02:52.590028+00 2025-04-29 16:02:52.590039+00 f t rejected D-Zona Peligrosa 7 110 +13 2025-05-04 14:02:20.055519+00 2025-05-04 14:02:20.055533+00 f t in_progress_vet 8 114 +14 2025-05-04 14:18:52.149988+00 2025-05-04 14:18:52.15+00 f t coordinated Turno confirmado para 2025-05-08 a las 15:00 8 114 +15 2025-05-04 14:19:07.929823+00 2025-05-04 14:19:07.929831+00 f t in_progress_pay 8 \N +16 2025-05-04 14:35:24.867316+00 2025-05-04 14:35:24.867326+00 f t in_progress_pay 8 \N +17 2025-05-04 15:42:20.324825+00 2025-05-04 15:42:20.324835+00 f t in_progress_pay 8 \N +18 2025-05-05 15:09:35.729368+00 2025-05-05 15:09:35.729378+00 f t rejected D-Provincia 9 110 +19 2025-05-06 12:35:54.431028+00 2025-05-06 12:35:54.431038+00 f t in_progress_vet 10 112 +20 2025-05-06 19:26:16.457811+00 2025-05-06 19:26:16.457826+00 f t rejected D-Emergencia 10 113 +21 2025-05-06 19:31:08.440916+00 2025-05-06 19:31:08.440926+00 f t rejected D-Sin Turno 6 111 +22 2025-05-06 19:32:39.284802+00 2025-05-06 19:32:39.284815+00 f t rejected D-Precio 8 111 +23 2025-05-08 12:22:12.475108+00 2025-05-08 12:22:12.475122+00 f t in_progress_vet 11 111 +24 2025-05-09 20:49:46.150019+00 2025-05-09 20:49:46.150033+00 f t in_progress_vet 12 113 +25 2025-05-12 12:51:26.67049+00 2025-05-12 12:51:26.670504+00 f t in_progress_vet 13 112 +26 2025-05-12 17:15:30.558269+00 2025-05-12 17:15:30.558282+00 f t rejected D-Emergencia 13 112 +27 2025-05-12 19:27:25.511839+00 2025-05-12 19:27:25.511852+00 f t in_progress_pay 14 \N +28 2025-05-13 13:09:56.044418+00 2025-05-13 13:09:56.044431+00 f t in_progress_vet 15 112 +29 2025-05-13 14:12:11.286044+00 2025-05-13 14:12:11.286058+00 f t in_progress_pay 15 \N +30 2025-05-13 15:05:36.284944+00 2025-05-13 15:05:36.284957+00 f t in_progress_vet 16 112 +31 2025-05-13 18:23:44.185013+00 2025-05-13 18:23:44.185024+00 f t in_progress_vet 17 113 +32 2025-05-13 18:24:39.796506+00 2025-05-13 18:24:39.79652+00 f t in_progress_vet 18 113 +33 2025-05-13 18:53:20.329201+00 2025-05-13 18:53:20.329213+00 f t coordinated Turno confirmado para 2025-05-15 a las 10:00 16 112 +34 2025-05-13 19:06:14.280411+00 2025-05-13 19:06:14.280423+00 f t in_progress_pay 17 \N +35 2025-05-13 19:08:28.226593+00 2025-05-13 19:08:28.226606+00 f t coordinated Turno confirmado para 2025-05-13 a las 18:00 17 113 +36 2025-05-13 19:31:33.543551+00 2025-05-13 19:31:33.543569+00 f t in_progress_vet 19 112 +37 2025-05-14 12:51:16.157431+00 2025-05-14 12:51:16.157445+00 f t in_progress_vet 20 112 +38 2025-05-14 12:51:42.826129+00 2025-05-14 12:51:42.826143+00 f t in_progress_vet 21 112 +39 2025-05-14 14:02:52.860168+00 2025-05-14 14:02:52.860182+00 f t rejected D-Tiempo de respuestas 20 112 +40 2025-05-14 14:03:15.546939+00 2025-05-14 14:03:15.546953+00 f t rejected D-Abandono Bot 19 112 +41 2025-05-14 20:11:22.544232+00 2025-05-14 20:11:22.544247+00 f t in_progress_vet 22 112 +42 2025-05-15 12:07:13.286568+00 2025-05-15 12:07:13.28658+00 f t rejected D-Tiempo de respuestas 12 112 +43 2025-05-15 12:07:46.419863+00 2025-05-15 12:07:46.419873+00 f t rejected D-Precio 11 112 +44 2025-05-15 12:09:16.027633+00 2025-05-15 12:09:16.027642+00 f t in_progress_vet 23 112 +45 2025-05-15 14:10:37.54856+00 2025-05-15 14:10:37.548568+00 f t rejected D-Tiempo de respuestas 23 112 +46 2025-05-15 16:21:18.181054+00 2025-05-15 16:21:18.181066+00 f t in_progress_vet 24 113 +47 2025-05-15 17:44:08.696349+00 2025-05-15 17:44:08.69636+00 f t in_progress_vet 26 112 +48 2025-05-15 18:47:25.997579+00 2025-05-15 18:47:25.997592+00 f t rejected D-Emergencia 26 113 +49 2025-05-15 18:47:52.217042+00 2025-05-15 18:47:52.217054+00 f t in_progress_vet 25 113 +50 2025-05-15 22:17:55.661996+00 2025-05-15 22:17:55.662039+00 f t rejected D-Abandono Bot 24 113 +51 2025-05-15 22:18:08.676097+00 2025-05-15 22:18:08.676108+00 f t rejected D-Averiguando / Desconocido 25 113 +52 2025-05-16 17:38:54.69769+00 2025-05-16 17:38:54.697706+00 f t in_progress_vet 27 112 +53 2025-05-16 18:56:31.768998+00 2025-05-16 18:56:31.769007+00 f t in_progress_vet 28 118 +54 2025-05-17 17:16:53.432102+00 2025-05-17 17:16:53.432115+00 f t in_progress_vet 30 114 +55 2025-05-17 17:17:22.516475+00 2025-05-17 17:17:22.516487+00 f t in_progress_vet 29 114 +56 2025-05-17 20:15:56.90946+00 2025-05-17 20:15:56.909473+00 f t in_progress_vet 31 114 +57 2025-05-17 20:49:00.002777+00 2025-05-17 20:49:00.00279+00 f t rejected D-Provincia 31 114 +58 2025-05-17 20:49:36.291179+00 2025-05-17 20:49:36.291193+00 f t rejected D-Abandono Bot 29 114 +59 2025-05-18 14:21:52.233413+00 2025-05-18 14:21:52.233425+00 f t in_progress_vet 34 114 +60 2025-05-18 14:33:20.662593+00 2025-05-18 14:33:20.662606+00 f t in_progress_vet 32 114 +61 2025-05-18 14:40:27.453133+00 2025-05-18 14:40:27.453148+00 f t in_progress_vet 33 114 +62 2025-05-18 15:14:59.147301+00 2025-05-18 15:14:59.147314+00 f t in_progress_vet 35 114 +63 2025-05-18 15:46:29.890191+00 2025-05-18 15:46:29.890201+00 f t coordinated Turno confirmado para 2025-05-18 a las 16:00 32 114 +64 2025-05-18 16:24:39.001908+00 2025-05-18 16:24:39.001919+00 f t in_progress_vet 36 114 +65 2025-05-18 16:45:09.632367+00 2025-05-18 16:45:09.632381+00 f t coordinated Turno confirmado para 2025-05-21 a las 11:00 36 114 +66 2025-05-18 16:45:23.290105+00 2025-05-18 16:45:23.290119+00 f t rejected D-Emergencia 35 114 +67 2025-05-18 17:14:13.57238+00 2025-05-18 17:14:13.572394+00 f t in_progress_vet 37 114 +68 2025-05-18 17:47:01.509916+00 2025-05-18 17:47:01.509928+00 f t rejected D-Emergencia 37 114 +69 2025-05-18 20:27:28.961257+00 2025-05-18 20:27:28.961267+00 f t in_progress_vet 38 114 +70 2025-05-18 21:45:17.583524+00 2025-05-18 21:45:17.583534+00 f t rejected D-Averiguando / Desconocido 34 114 +71 2025-05-19 12:21:58.153459+00 2025-05-19 12:21:58.15347+00 f t in_progress_vet 39 112 +72 2025-05-19 13:05:23.924271+00 2025-05-19 13:05:23.924287+00 f t coordinated Turno confirmado para 2025-05-19 a las 10:30 39 112 +73 2025-05-19 14:26:20.821693+00 2025-05-19 14:26:20.821708+00 f t in_progress_vet 40 112 +74 2025-05-19 16:00:49.221748+00 2025-05-19 16:00:49.221764+00 f t rejected D-Sin Turno 40 112 +75 2025-05-19 17:49:43.238146+00 2025-05-19 17:49:43.238159+00 f t in_progress_vet 41 113 +76 2025-05-19 18:30:26.444505+00 2025-05-19 18:30:26.444518+00 f t rejected D-Emergencia 41 113 +77 2025-05-19 18:30:51.426668+00 2025-05-19 18:30:51.426681+00 f t rejected D-Provincia 38 113 +78 2025-05-20 12:11:45.57781+00 2025-05-20 12:11:45.577824+00 f t rejected D-Emergencia 33 112 +79 2025-05-20 14:35:37.521558+00 2025-05-20 14:35:37.521567+00 f t in_progress_vet 42 112 +80 2025-05-21 12:08:07.861043+00 2025-05-21 12:08:07.861057+00 f t in_progress_vet 44 112 +81 2025-05-21 12:08:16.731822+00 2025-05-21 12:08:16.731834+00 f t in_progress_vet 45 112 +82 2025-05-21 13:00:03.57044+00 2025-05-21 13:00:03.570457+00 f t in_progress_vet 46 112 +83 2025-05-21 14:16:15.696885+00 2025-05-21 14:16:15.696896+00 f t rejected D-Averiguando / Desconocido 46 112 +84 2025-05-21 14:16:32.567705+00 2025-05-21 14:16:32.567716+00 f t in_progress_vet 47 112 +85 2025-05-22 12:26:22.441365+00 2025-05-22 12:26:22.441373+00 f t in_progress_vet 49 112 +86 2025-05-22 13:02:11.205035+00 2025-05-22 13:02:11.205044+00 f t in_progress_pay 49 \N +87 2025-05-22 14:09:04.201499+00 2025-05-22 14:09:04.201513+00 f t in_progress_pay 49 \N +88 2025-05-23 12:47:29.964135+00 2025-05-23 12:47:29.964145+00 f t in_progress_vet 50 112 +89 2025-05-23 12:52:15.277893+00 2025-05-23 12:52:15.277902+00 f t in_progress_vet 51 112 +90 2025-05-23 13:26:02.923285+00 2025-05-23 13:26:02.923294+00 f t in_progress_vet 52 112 +91 2025-05-23 13:35:36.375951+00 2025-05-23 13:35:36.37596+00 f t rejected D-Emergencia 51 111 +92 2025-05-23 21:17:49.022148+00 2025-05-23 21:17:49.022158+00 f t rejected D-Precio 52 113 +93 2025-05-23 21:39:55.162259+00 2025-05-23 21:39:55.162269+00 f t rejected D-Abandono Bot 50 113 +94 2025-05-24 15:07:48.082499+00 2025-05-24 15:07:48.082511+00 f t in_progress_vet 53 114 +95 2025-05-24 17:37:16.585249+00 2025-05-24 17:37:16.585258+00 f t rejected D-Sin Turno 53 114 +96 2025-05-25 14:23:57.457137+00 2025-05-25 14:23:57.457148+00 f t in_progress_vet 54 114 +97 2025-05-25 14:58:25.863432+00 2025-05-25 14:58:25.863441+00 f t in_progress_vet 55 114 +98 2025-05-25 15:06:11.891678+00 2025-05-25 15:06:11.891687+00 f t rejected D-Emergencia 55 114 +99 2025-05-25 15:10:57.66769+00 2025-05-25 15:10:57.6677+00 f t rejected D-Emergencia 54 114 +100 2025-05-25 15:45:36.710546+00 2025-05-25 15:45:36.71056+00 f t in_progress_vet 56 114 +101 2025-05-25 16:07:15.365395+00 2025-05-25 16:07:15.365406+00 f t coordinated Turno confirmado para 2025-05-25 a las 15:00 56 114 +102 2025-05-25 16:30:14.092202+00 2025-05-25 16:30:14.092216+00 f t in_progress_vet 57 114 +103 2025-05-26 14:54:40.417452+00 2025-05-26 14:54:40.417481+00 f t in_progress_vet 59 111 +104 2025-05-26 15:36:25.218808+00 2025-05-26 15:36:25.218818+00 f t coordinated Turno confirmado para 2025-05-26 a las 14:00 57 111 +105 2025-05-26 17:12:51.424876+00 2025-05-26 17:12:51.424887+00 f t in_progress_vet 58 113 +106 2025-05-26 17:29:48.25664+00 2025-05-26 17:29:48.256649+00 f t rejected D-Provincia 58 113 +107 2025-05-26 17:31:53.780117+00 2025-05-26 17:31:53.780129+00 f t in_progress_vet 60 113 +108 2025-05-26 20:45:14.400737+00 2025-05-26 20:45:14.400749+00 f t in_progress_vet 61 113 +109 2025-05-27 12:31:11.609412+00 2025-05-27 12:31:11.609422+00 f t in_progress_vet 62 112 +110 2025-05-27 13:31:35.91059+00 2025-05-27 13:31:35.910605+00 f t in_progress_vet 63 112 +111 2025-05-27 13:42:45.420945+00 2025-05-27 13:42:45.420955+00 f t in_progress_pay 63 \N +112 2025-05-27 14:01:42.832073+00 2025-05-27 14:01:42.832087+00 f t rejected D-Averiguando / Desconocido 61 112 +113 2025-05-27 16:09:55.3123+00 2025-05-27 16:09:55.312326+00 f t in_progress_vet 64 112 +114 2025-05-27 16:15:17.874073+00 2025-05-27 16:15:17.874082+00 f t in_progress_vet 65 112 +115 2025-05-27 18:04:47.754037+00 2025-05-27 18:04:47.754046+00 f t rejected D-Emergencia 64 113 +116 2025-05-27 23:24:17.09521+00 2025-05-27 23:24:17.095231+00 f t in_progress_vet 66 113 +117 2025-05-28 12:24:32.100838+00 2025-05-28 12:24:32.100849+00 f t in_progress_vet 67 1026 +118 2025-05-28 16:40:16.984844+00 2025-05-28 16:40:16.984898+00 f t rejected D-Averiguando / Desconocido 67 1026 +119 2025-05-28 16:49:32.216936+00 2025-05-28 16:49:32.216948+00 f t in_progress_vet 68 113 +120 2025-05-29 13:01:42.015805+00 2025-05-29 13:01:42.01582+00 f t in_progress_vet 69 1026 +121 2025-05-29 13:32:20.342714+00 2025-05-29 13:32:20.342726+00 f t in_progress_pay 69 \N +122 2025-05-29 13:32:32.605336+00 2025-05-29 13:32:32.605349+00 f t in_progress_pay 69 \N +123 2025-05-29 15:00:22.35354+00 2025-05-29 15:00:22.353553+00 f t in_progress_vet 70 1026 +124 2025-05-29 15:39:32.087866+00 2025-05-29 15:39:32.087876+00 f t in_progress_vet 71 1026 +125 2025-05-29 20:11:46.891585+00 2025-05-29 20:11:46.891597+00 f t in_progress_vet 72 1026 +126 2025-05-29 20:42:51.640652+00 2025-05-29 20:42:51.640661+00 f t rejected D-Averiguando / Desconocido 66 1026 +127 2025-05-29 22:59:46.86378+00 2025-05-29 22:59:46.863791+00 f t rejected D-Abandono Bot 72 113 +128 2025-05-30 12:55:24.904554+00 2025-05-30 12:55:24.904567+00 f t in_progress_vet 73 1026 +129 2025-06-01 14:22:00.185738+00 2025-06-01 14:22:00.185752+00 f t rejected D-Sin Turno 74 114 +130 2025-06-01 14:24:17.290161+00 2025-06-01 14:24:17.29017+00 f t rejected D-Averiguando / Desconocido 76 114 +131 2025-06-01 14:25:01.342973+00 2025-06-01 14:25:01.342988+00 f t rejected D-Emergencia 75 114 +132 2025-06-01 14:25:05.001779+00 2025-06-01 14:25:05.001792+00 f t rejected D-Emergencia 75 114 +133 2025-06-01 14:27:40.391461+00 2025-06-01 14:27:40.391473+00 f t in_progress_vet 77 114 +134 2025-06-01 19:24:26.924071+00 2025-06-01 19:24:26.924085+00 f t in_progress_vet 78 114 +135 2025-06-02 12:12:05.594302+00 2025-06-02 12:12:05.594317+00 f t in_progress_vet 79 1026 +136 2025-06-02 12:12:44.874549+00 2025-06-02 12:12:44.874563+00 f t in_progress_vet 80 1026 +137 2025-06-02 14:13:17.656721+00 2025-06-02 14:13:17.65673+00 f t in_progress_vet 82 1026 +138 2025-06-02 19:50:07.296408+00 2025-06-02 19:50:07.296418+00 f t in_progress_vet 83 1026 +139 2025-06-02 20:10:45.427747+00 2025-06-02 20:10:45.427792+00 f t rejected D-Emergencia 82 1026 +140 2025-06-02 21:01:26.953125+00 2025-06-02 21:01:26.953139+00 f t in_progress_vet 84 114 +141 2025-06-02 23:36:14.893307+00 2025-06-02 23:36:14.893318+00 f t rejected D-Averiguando / Desconocido 84 114 +142 2025-06-03 12:11:00.007629+00 2025-06-03 12:11:00.007643+00 f t in_progress_vet 86 1026 +143 2025-06-03 12:11:07.431195+00 2025-06-03 12:11:07.431204+00 f t in_progress_vet 85 1026 +144 2025-06-03 15:14:29.146405+00 2025-06-03 15:14:29.146414+00 f t in_progress_vet 87 1026 +145 2025-06-03 15:58:59.512105+00 2025-06-03 15:58:59.512114+00 f t rejected D-Averiguando / Desconocido 86 1026 +146 2025-06-03 18:30:25.197471+00 2025-06-03 18:30:25.197481+00 f t in_progress_vet 88 1026 +147 2025-06-03 19:16:57.703211+00 2025-06-03 19:16:57.703221+00 f t rejected D-Averiguando / Desconocido 85 1026 +148 2025-06-03 21:43:40.722817+00 2025-06-03 21:43:40.722826+00 f t rejected D-Abandono Bot 89 114 +149 2025-06-03 21:44:25.499532+00 2025-06-03 21:44:25.499545+00 f t rejected D-Abandono Bot 88 114 +150 2025-06-03 22:12:56.95493+00 2025-06-03 22:12:56.954939+00 f t in_progress_vet 90 114 +151 2025-06-03 22:35:39.624157+00 2025-06-03 22:35:39.624167+00 f t in_progress_vet 91 114 +152 2025-06-04 12:24:12.512855+00 2025-06-04 12:24:12.512871+00 f t in_progress_vet 93 1026 +153 2025-06-04 12:25:35.406533+00 2025-06-04 12:25:35.406543+00 f t in_progress_vet 92 1026 +154 2025-06-04 13:39:34.10178+00 2025-06-04 13:39:34.101795+00 f t rejected D-Emergencia 93 1026 +155 2025-06-04 20:45:52.129466+00 2025-06-04 20:45:52.129481+00 f t rejected D-Abandono Bot 94 114 +156 2025-06-04 21:16:22.132673+00 2025-06-04 21:16:22.132688+00 f t in_progress_vet 95 114 +157 2025-06-05 12:17:23.658027+00 2025-06-05 12:17:23.658038+00 f t in_progress_vet 96 1026 +158 2025-06-05 17:09:36.788547+00 2025-06-05 17:09:36.78856+00 f t in_progress_vet 97 1026 +159 2025-06-05 21:38:23.264756+00 2025-06-05 21:38:23.264772+00 f t rejected D-Abandono Bot 95 114 +160 2025-06-05 22:00:02.987273+00 2025-06-05 22:00:02.98729+00 f t in_progress_vet 98 114 +161 2025-06-06 12:19:48.427864+00 2025-06-06 12:19:48.427879+00 f t in_progress_vet 99 1026 +162 2025-06-06 14:33:52.774606+00 2025-06-06 14:33:52.774615+00 f t rejected D-Precio 99 1026 +163 2025-06-06 14:54:59.273261+00 2025-06-06 14:54:59.273311+00 f t in_progress_vet 100 1026 +164 2025-06-06 19:20:27.318188+00 2025-06-06 19:20:27.318202+00 f t rejected D-Averiguando / Desconocido 100 1026 +165 2025-06-07 14:18:11.033741+00 2025-06-07 14:18:11.033755+00 f t in_progress_vet 101 114 +166 2025-06-07 14:22:36.085258+00 2025-06-07 14:22:36.08527+00 f t in_progress_vet 103 114 +167 2025-06-07 14:30:41.200729+00 2025-06-07 14:30:41.200743+00 f t in_progress_vet 102 114 +168 2025-06-07 16:30:04.824811+00 2025-06-07 16:30:04.824825+00 f t in_progress_vet 104 114 +169 2025-06-07 17:14:33.62651+00 2025-06-07 17:14:33.626542+00 f t rejected D-Emergencia 101 114 +170 2025-06-07 17:14:54.971844+00 2025-06-07 17:14:54.971864+00 f t rejected D-Sin Turno 103 114 +171 2025-06-07 19:19:27.80386+00 2025-06-07 19:19:27.803871+00 f t in_progress_vet 105 114 +172 2025-06-07 20:12:04.30817+00 2025-06-07 20:12:04.308184+00 f t rejected D-Emergencia 104 114 +173 2025-06-07 21:20:00.268847+00 2025-06-07 21:20:00.268857+00 f t rejected D-Abandono Bot 105 114 +174 2025-06-07 21:24:07.47668+00 2025-06-07 21:24:07.476689+00 f t in_progress_vet 106 114 +175 2025-06-08 15:13:57.787983+00 2025-06-08 15:13:57.787993+00 f t in_progress_vet 107 114 +176 2025-06-08 15:14:07.853258+00 2025-06-08 15:14:07.85327+00 f t in_progress_vet 108 114 +177 2025-06-08 15:58:01.131576+00 2025-06-08 15:58:01.131588+00 f t in_progress_vet 109 114 +178 2025-06-08 16:26:19.954282+00 2025-06-08 16:26:19.954294+00 f t in_progress_vet 110 114 +179 2025-06-08 16:47:50.070424+00 2025-06-08 16:47:50.070435+00 f t rejected D-Emergencia 110 114 +180 2025-06-08 19:28:50.139901+00 2025-06-08 19:28:50.13991+00 f t rejected D-Abandono Bot 91 114 +181 2025-06-09 13:22:43.640844+00 2025-06-09 13:22:43.640853+00 f t in_progress_vet 111 1026 +182 2025-06-09 13:23:00.301882+00 2025-06-09 13:23:00.301896+00 f t in_progress_vet 112 1026 +183 2025-06-09 14:50:38.551439+00 2025-06-09 14:50:38.551452+00 f t in_progress_vet 113 1026 +184 2025-06-09 20:35:26.497254+00 2025-06-09 20:35:26.497264+00 f t in_progress_vet 114 114 +185 2025-06-09 20:49:40.128629+00 2025-06-09 20:49:40.128642+00 f t rejected D-Emergencia 111 114 +186 2025-06-09 22:26:40.441681+00 2025-06-09 22:26:40.441689+00 f t rejected D-Precio 113 114 +187 2025-06-09 22:33:19.803166+00 2025-06-09 22:33:19.803175+00 f t in_progress_vet 115 114 +188 2025-06-10 00:22:10.106865+00 2025-06-10 00:22:10.106875+00 f t rejected D-Abandono Bot 114 114 +189 2025-06-10 16:25:01.300668+00 2025-06-10 16:25:01.300748+00 f t in_progress_vet 116 1026 +190 2025-06-10 16:52:36.713124+00 2025-06-10 16:52:36.713133+00 f t coordinated Turno confirmado para 2025-06-10 a las 17:30 116 1026 +191 2025-06-10 18:40:42.972+00 2025-06-10 18:40:42.97201+00 f t rejected D-Zona Peligrosa 115 1026 +192 2025-06-10 21:25:16.214446+00 2025-06-10 21:25:16.214482+00 f t in_progress_vet 117 114 +193 2025-06-10 23:05:00.067792+00 2025-06-10 23:05:00.067805+00 f t in_progress_vet 118 114 +194 2025-06-11 00:24:37.259577+00 2025-06-11 00:24:37.260009+00 f t rejected D-Emergencia 117 114 +195 2025-06-11 13:26:21.798764+00 2025-06-11 13:26:21.798777+00 f t in_progress_vet 119 1026 +196 2025-06-11 19:16:59.508077+00 2025-06-11 19:16:59.508087+00 f t in_progress_vet 121 1026 +197 2025-06-11 19:19:01.487992+00 2025-06-11 19:19:01.488006+00 f t in_progress_vet 120 1026 +198 2025-06-11 20:43:24.963808+00 2025-06-11 20:43:24.963822+00 f t rejected D-Abandono Bot 118 114 +199 2025-06-11 23:01:25.275217+00 2025-06-11 23:01:25.275227+00 f t in_progress_vet 122 114 +200 2025-06-11 23:34:20.001992+00 2025-06-11 23:34:20.002002+00 f t rejected D-Precio 120 114 +201 2025-06-12 00:27:10.88811+00 2025-06-12 00:27:10.888118+00 f t in_progress_vet 123 114 +202 2025-06-12 13:00:07.361323+00 2025-06-12 13:00:07.361335+00 f t in_progress_vet 124 1026 +203 2025-06-12 15:02:10.214793+00 2025-06-12 15:02:10.214805+00 f t in_progress_vet 125 1026 +204 2025-06-12 15:20:36.949874+00 2025-06-12 15:20:36.949884+00 f t rejected D-Emergencia 123 1026 +205 2025-06-12 15:21:13.744792+00 2025-06-12 15:21:13.744801+00 f t rejected D-Averiguando / Desconocido 122 1026 +206 2025-06-12 16:53:47.28841+00 2025-06-12 16:53:47.288424+00 f t in_progress_vet 127 1026 +207 2025-06-12 16:53:54.283648+00 2025-06-12 16:53:54.28366+00 f t in_progress_vet 126 1026 +208 2025-06-12 21:20:07.431515+00 2025-06-12 21:20:07.431529+00 f t rejected D-Provincia 127 114 +209 2025-06-12 21:23:09.691583+00 2025-06-12 21:23:09.691594+00 f t rejected D-Precio 112 1026 +210 2025-06-12 21:23:23.961172+00 2025-06-12 21:23:23.961183+00 f t rejected D-Precio 126 1026 +211 2025-06-13 13:31:52.028767+00 2025-06-13 13:31:52.028781+00 f t in_progress_vet 128 1026 +212 2025-06-13 14:25:52.100496+00 2025-06-13 14:25:52.100508+00 f t in_progress_vet 129 1026 +213 2025-06-13 15:23:12.677065+00 2025-06-13 15:23:12.677074+00 f t rejected D-Averiguando / Desconocido 129 1026 +214 2025-06-13 16:35:14.224454+00 2025-06-13 16:35:14.224464+00 f t in_progress_vet 130 1026 +215 2025-06-13 17:59:04.693429+00 2025-06-13 17:59:04.693441+00 f t in_progress_vet 131 1026 +216 2025-06-13 18:26:32.255888+00 2025-06-13 18:26:32.255902+00 f t coordinated Turno confirmado para 2025-06-20 a las 15:00 131 1026 +217 2025-06-13 18:32:44.188882+00 2025-06-13 18:32:44.188895+00 f t in_progress_vet 132 1026 +218 2025-06-13 20:55:03.255262+00 2025-06-13 20:55:03.255276+00 f t coordinated Turno confirmado para 2025-06-13 a las 21:00 130 1026 +219 2025-06-14 14:03:09.613293+00 2025-06-14 14:03:09.613302+00 f t in_progress_vet 133 114 +220 2025-06-14 14:06:04.813097+00 2025-06-14 14:06:04.813106+00 f t in_progress_vet 134 114 +221 2025-06-14 14:07:26.100013+00 2025-06-14 14:07:26.100028+00 f t in_progress_vet 135 114 +222 2025-06-14 14:55:39.534661+00 2025-06-14 14:55:39.53467+00 f t in_progress_vet 136 114 +223 2025-06-14 15:53:53.094063+00 2025-06-14 15:53:53.094077+00 f t rejected D-Provincia 137 114 +224 2025-06-14 15:56:52.048673+00 2025-06-14 15:56:52.048686+00 f t rejected D-Emergencia 136 114 +225 2025-06-14 15:58:17.125315+00 2025-06-14 15:58:17.12533+00 f t rejected D-Provincia 135 114 +226 2025-06-14 17:53:09.132128+00 2025-06-14 17:53:09.132136+00 f t rejected D-Abandono Bot 133 114 +227 2025-06-14 17:53:21.721506+00 2025-06-14 17:53:21.721517+00 f t rejected D-Abandono Bot 134 114 +228 2025-06-14 20:18:27.421327+00 2025-06-14 20:18:27.421338+00 f t rejected D-Sin Turno 132 114 +229 2025-06-15 14:23:04.491339+00 2025-06-15 14:23:04.491372+00 f t in_progress_vet 138 114 +230 2025-06-15 17:29:23.110453+00 2025-06-15 17:29:23.110466+00 f t in_progress_vet 139 114 +231 2025-06-15 18:43:33.998317+00 2025-06-15 18:43:33.998325+00 f t rejected D-Emergencia 139 114 +232 2025-06-15 18:43:41.505946+00 2025-06-15 18:43:41.505954+00 f t in_progress_vet 140 114 +233 2025-06-15 20:06:27.725544+00 2025-06-15 20:06:27.725557+00 f t rejected D-Emergencia 140 114 +234 2025-06-15 20:55:20.228573+00 2025-06-15 20:55:20.228584+00 f t in_progress_vet 141 114 +235 2025-06-15 21:04:50.236564+00 2025-06-15 21:04:50.236576+00 f t rejected D-Emergencia 141 114 +236 2025-06-15 21:41:21.414529+00 2025-06-15 21:41:21.414541+00 f t in_progress_vet 142 114 +237 2025-06-15 21:46:24.414145+00 2025-06-15 21:46:24.414154+00 f t rejected D-Emergencia 142 114 +238 2025-06-16 14:18:10.848003+00 2025-06-16 14:18:10.848011+00 f t in_progress_vet 145 113 +239 2025-06-16 14:52:52.342717+00 2025-06-16 14:52:52.342726+00 f t in_progress_vet 144 113 +240 2025-06-16 15:28:25.789107+00 2025-06-16 15:28:25.789116+00 f t rejected D-Tiempo de respuestas 143 113 +241 2025-06-17 18:04:20.347462+00 2025-06-17 18:04:20.347471+00 f t in_progress_vet 146 1026 +242 2025-06-17 18:11:48.523418+00 2025-06-17 18:11:48.52344+00 f t in_progress_vet 147 1026 +243 2025-06-17 19:59:25.968257+00 2025-06-17 19:59:25.968273+00 f t in_progress_vet 148 1026 +244 2025-06-18 22:56:24.005477+00 2025-06-18 22:56:24.005494+00 f t in_progress_vet 149 113 +245 2025-06-18 23:05:13.783659+00 2025-06-18 23:05:13.783673+00 f t in_progress_vet 150 113 +246 2025-06-18 23:31:17.935651+00 2025-06-18 23:31:17.935664+00 f t rejected D-Abandono Bot 149 113 +247 2025-06-19 12:52:03.358963+00 2025-06-19 12:52:03.358977+00 f t in_progress_vet 151 1026 +248 2025-06-19 13:08:11.376208+00 2025-06-19 13:08:11.37622+00 f t in_progress_pay 151 \N +249 2025-06-19 20:35:37.315577+00 2025-06-19 20:35:37.315588+00 f t in_progress_vet 152 113 +250 2025-06-19 22:15:04.241546+00 2025-06-19 22:15:04.24156+00 f t rejected D-Abandono Bot 152 113 +251 2025-06-20 14:26:38.112604+00 2025-06-20 14:26:38.112617+00 f t in_progress_vet 153 114 +252 2025-06-20 14:37:37.822409+00 2025-06-20 14:37:37.822439+00 f t in_progress_vet 154 114 +253 2025-06-20 14:40:54.269598+00 2025-06-20 14:40:54.269609+00 f t in_progress_vet 155 114 +254 2025-06-20 14:42:43.9505+00 2025-06-20 14:42:43.95051+00 f t in_progress_vet 156 114 +255 2025-06-20 15:24:39.726168+00 2025-06-20 15:24:39.72618+00 f t in_progress_pay 156 \N +256 2025-06-20 15:24:41.328737+00 2025-06-20 15:24:41.328748+00 f t in_progress_pay 156 \N +257 2025-06-20 15:26:24.178734+00 2025-06-20 15:26:24.178775+00 f t in_progress_pay 156 \N +258 2025-06-20 15:44:36.599045+00 2025-06-20 15:44:36.599056+00 f t rejected D-Emergencia 153 114 +259 2025-06-20 17:06:47.120117+00 2025-06-20 17:06:47.120127+00 f t rejected D-Averiguando / Desconocido 154 114 +260 2025-06-20 17:32:01.58629+00 2025-06-20 17:32:01.586302+00 f t in_progress_vet 157 114 +261 2025-06-20 18:20:49.179206+00 2025-06-20 18:20:49.179222+00 f t in_progress_vet 158 114 +262 2025-06-20 19:23:18.770372+00 2025-06-20 19:23:18.770383+00 f t rejected D-Abandono Bot 155 114 +263 2025-06-21 14:36:58.135715+00 2025-06-21 14:36:58.135725+00 f t in_progress_vet 159 114 +264 2025-06-22 14:06:17.27123+00 2025-06-22 14:06:17.27124+00 f t in_progress_vet 160 114 +265 2025-06-22 14:49:29.016481+00 2025-06-22 14:49:29.01649+00 f t in_progress_vet 161 114 +266 2025-06-22 15:33:48.096129+00 2025-06-22 15:33:48.096138+00 f t rejected D-Averiguando / Desconocido 160 114 +267 2025-06-22 21:39:34.544941+00 2025-06-22 21:39:34.54495+00 f t in_progress_vet 162 114 +268 2025-06-22 21:57:29.094185+00 2025-06-22 21:57:29.094198+00 f t rejected D-Emergencia 162 114 +269 2025-06-23 12:35:07.52495+00 2025-06-23 12:35:07.524964+00 f t in_progress_vet 163 1026 +270 2025-06-23 12:36:27.954774+00 2025-06-23 12:36:27.954784+00 f t in_progress_vet 164 1026 +271 2025-06-23 15:58:51.101099+00 2025-06-23 15:58:51.101109+00 f t rejected D-Emergencia 164 1026 +272 2025-06-23 15:59:16.2534+00 2025-06-23 15:59:16.253411+00 f t rejected D-Provincia 163 1026 +273 2025-06-24 14:51:03.980036+00 2025-06-24 14:51:03.980051+00 f t coordinated Turno confirmado para 2025-06-23 a las 22:00 159 1026 +274 2025-06-24 14:51:32.575049+00 2025-06-24 14:51:32.575058+00 f t rejected D-Averiguando / Desconocido 147 1026 +275 2025-06-24 14:52:41.862619+00 2025-06-24 14:52:41.862628+00 f t rejected D-Averiguando / Desconocido 146 1026 +276 2025-06-24 14:53:13.201837+00 2025-06-24 14:53:13.201849+00 f t rejected D-Provincia 78 1026 +277 2025-06-24 14:54:28.939022+00 2025-06-24 14:54:28.939036+00 f t rejected D-Precio 44 1026 +278 2025-06-24 15:13:34.372719+00 2025-06-24 15:13:34.372733+00 f t in_progress_vet 165 1026 +279 2025-06-24 15:50:25.476928+00 2025-06-24 15:50:25.476937+00 f t in_progress_vet 166 1026 +280 2025-06-24 18:29:28.286191+00 2025-06-24 18:29:28.286204+00 f t rejected D-Provincia 166 1026 +281 2025-06-24 18:29:57.417664+00 2025-06-24 18:29:57.417682+00 f t rejected D-Sin Turno 165 1026 +282 2025-06-24 22:55:25.496119+00 2025-06-24 22:55:25.496128+00 f t in_progress_vet 167 113 +283 2025-06-24 23:02:57.461832+00 2025-06-24 23:02:57.461844+00 f t in_progress_vet 168 113 +284 2025-06-24 23:41:38.218762+00 2025-06-24 23:41:38.218774+00 f t rejected D-Emergencia 168 113 +285 2025-06-25 15:55:27.882785+00 2025-06-25 15:55:27.882795+00 f t in_progress_vet 169 1026 +286 2025-06-25 21:54:23.241245+00 2025-06-25 21:54:23.241255+00 f t rejected D-Sin Turno 167 113 +287 2025-06-26 11:59:55.201284+00 2025-06-26 11:59:55.201294+00 f t in_progress_vet 171 1026 +288 2025-06-26 11:59:55.389676+00 2025-06-26 11:59:55.389691+00 f t in_progress_vet 171 1026 +289 2025-06-26 12:00:24.877825+00 2025-06-26 12:00:24.877839+00 f t in_progress_vet 170 1026 +290 2025-06-26 12:32:50.913337+00 2025-06-26 12:32:50.913347+00 f t in_progress_vet 172 1026 +291 2025-06-26 16:55:56.414271+00 2025-06-26 16:55:56.414283+00 f t rejected D-Tiempo de respuestas 170 1026 +292 2025-06-26 16:56:07.521+00 2025-06-26 16:56:07.52101+00 f t rejected D-Averiguando / Desconocido 172 1026 +293 2025-06-26 18:05:29.20601+00 2025-06-26 18:05:29.206022+00 f t in_progress_vet 173 113 +294 2025-06-26 18:39:08.958355+00 2025-06-26 18:39:08.958368+00 f t in_progress_vet 174 1026 +295 2025-06-26 18:42:08.279412+00 2025-06-26 18:42:08.279424+00 f t rejected D-Provincia 174 1026 +296 2025-06-26 19:56:50.251921+00 2025-06-26 19:56:50.25193+00 f t in_progress_vet 175 113 +297 2025-06-26 19:59:48.599709+00 2025-06-26 19:59:48.59972+00 f t in_progress_vet 176 1026 +298 2025-06-26 20:06:51.240665+00 2025-06-26 20:06:51.240679+00 f t rejected D-Provincia 176 1026 +299 2025-06-26 23:13:57.664116+00 2025-06-26 23:13:57.664124+00 f t in_progress_vet 177 113 +300 2025-06-26 23:25:36.898953+00 2025-06-26 23:25:36.898962+00 f t rejected D-Abandono Bot 175 113 +301 2025-06-27 12:18:51.769597+00 2025-06-27 12:18:51.769608+00 f t in_progress_vet 178 1026 +302 2025-06-27 12:19:23.101489+00 2025-06-27 12:19:23.101499+00 f t in_progress_vet 179 1026 +303 2025-06-27 12:35:39.887025+00 2025-06-27 12:35:39.887035+00 f t in_progress_vet 180 1026 +304 2025-06-27 13:30:59.073623+00 2025-06-27 13:30:59.073632+00 f t in_progress_vet 181 1026 +305 2025-06-27 15:04:06.392144+00 2025-06-27 15:04:06.392183+00 f t coordinated Turno confirmado para 2025-08-10 a las 18:00 180 1026 +306 2025-06-27 20:47:32.577766+00 2025-06-27 20:47:32.577776+00 f t rejected D-Averiguando / Desconocido 182 1026 +307 2025-06-27 23:03:01.271712+00 2025-06-27 23:03:01.27174+00 f t rejected D-Sin Turno 183 113 +308 2025-06-28 14:35:56.774153+00 2025-06-28 14:35:56.774165+00 f t in_progress_vet 184 114 +309 2025-06-28 15:00:03.709808+00 2025-06-28 15:00:03.709824+00 f t rejected D-Emergencia 184 114 +310 2025-06-28 20:42:37.275288+00 2025-06-28 20:42:37.275297+00 f t in_progress_vet 185 114 +311 2025-06-29 15:00:54.724739+00 2025-06-29 15:00:54.724748+00 f t in_progress_vet 186 114 +312 2025-06-29 15:01:48.633764+00 2025-06-29 15:01:48.633775+00 f t in_progress_vet 187 114 +313 2025-06-29 15:06:11.201473+00 2025-06-29 15:06:11.201485+00 f t in_progress_vet 191 114 +314 2025-06-29 15:12:00.258676+00 2025-06-29 15:12:00.258685+00 f t in_progress_vet 190 114 +315 2025-06-29 15:25:57.619331+00 2025-06-29 15:25:57.61934+00 f t in_progress_vet 189 114 +316 2025-06-29 15:29:21.970487+00 2025-06-29 15:29:21.970496+00 f t in_progress_vet 188 114 +317 2025-06-29 16:27:45.135418+00 2025-06-29 16:27:45.135427+00 f t rejected D-Falta de servicio 188 114 +318 2025-06-29 16:31:43.519178+00 2025-06-29 16:31:43.519187+00 f t rejected D-Emergencia 190 114 +319 2025-06-29 16:47:14.140996+00 2025-06-29 16:47:14.141004+00 f t rejected D-Emergencia 189 114 +320 2025-06-29 20:53:03.513291+00 2025-06-29 20:53:03.513304+00 f t rejected D-Abandono Bot 187 114 +321 2025-06-29 21:31:53.101472+00 2025-06-29 21:31:53.101485+00 f t rejected D-Emergencia 191 114 +322 2025-06-30 12:05:55.91122+00 2025-06-30 12:05:55.911232+00 f t in_progress_vet 193 1026 +323 2025-06-30 12:07:23.59539+00 2025-06-30 12:07:23.595399+00 f t in_progress_vet 192 1026 +324 2025-06-30 12:12:41.381703+00 2025-06-30 12:12:41.381712+00 f t rejected D-Emergencia 192 1026 +325 2025-06-30 12:13:00.08084+00 2025-06-30 12:13:00.08085+00 f t rejected D-Emergencia 193 1026 +326 2025-06-30 12:21:29.957784+00 2025-06-30 12:21:29.957796+00 f t in_progress_vet 194 1026 +327 2025-06-30 12:23:13.903901+00 2025-06-30 12:23:13.903911+00 f t in_progress_vet 195 1026 +328 2025-06-30 13:13:29.895565+00 2025-06-30 13:13:29.895575+00 f t in_progress_vet 196 1026 +329 2025-06-30 15:31:14.057715+00 2025-06-30 15:31:14.057725+00 f t rejected D-Provincia 195 1026 +330 2025-06-30 23:16:47.798289+00 2025-06-30 23:16:47.798299+00 f t in_progress_vet 197 113 +331 2025-07-01 00:20:00.106672+00 2025-07-01 00:20:00.106686+00 f t in_progress_vet 198 113 +332 2025-07-01 00:20:13.233088+00 2025-07-01 00:20:13.233098+00 f t rejected D-No dimos respuesta 197 113 +333 2025-07-01 12:05:56.351818+00 2025-07-01 12:05:56.351831+00 f t in_progress_vet 199 1026 +334 2025-07-01 13:03:37.538343+00 2025-07-01 13:03:37.538351+00 f t in_progress_vet 200 1026 +335 2025-07-01 13:04:52.502513+00 2025-07-01 13:04:52.502523+00 f t in_progress_vet 201 1026 +336 2025-07-01 14:10:50.65177+00 2025-07-01 14:10:50.65178+00 f t in_progress_vet 202 1026 +337 2025-07-01 14:58:29.968892+00 2025-07-01 14:58:29.968907+00 f t rejected D-Averiguando / Desconocido 202 1026 +338 2025-07-01 17:54:26.477255+00 2025-07-01 17:54:26.477267+00 f t in_progress_vet 203 113 +339 2025-07-02 13:52:03.491042+00 2025-07-02 13:52:03.491052+00 f t in_progress_vet 204 1026 +340 2025-07-02 17:50:13.814775+00 2025-07-02 17:50:13.814786+00 f t in_progress_vet 205 1208 +341 2025-07-02 21:03:29.982941+00 2025-07-02 21:03:29.982954+00 f t in_progress_vet 206 1026 +342 2025-07-02 21:44:36.001737+00 2025-07-02 21:44:36.001746+00 f t rejected D-Abandono Bot 204 113 +343 2025-07-02 22:18:05.20549+00 2025-07-02 22:18:05.2055+00 f t rejected D-No dimos respuesta 206 113 +344 2025-07-03 12:22:56.580124+00 2025-07-03 12:22:56.580134+00 f t in_progress_vet 207 1026 +345 2025-07-03 13:11:30.597817+00 2025-07-03 13:11:30.597826+00 f t in_progress_vet 208 1026 +346 2025-07-03 13:11:45.624865+00 2025-07-03 13:11:45.624875+00 f t rejected D-Emergencia 207 1026 +347 2025-07-03 16:13:01.467091+00 2025-07-03 16:13:01.467102+00 f t in_progress_vet 209 1026 +348 2025-07-03 16:44:38.25086+00 2025-07-03 16:44:38.250869+00 f t rejected D-Emergencia 209 1026 +349 2025-07-03 18:29:23.986739+00 2025-07-03 18:29:23.986754+00 f t in_progress_vet 211 1026 +350 2025-07-03 18:30:46.499184+00 2025-07-03 18:30:46.499196+00 f t in_progress_vet 210 1026 +351 2025-07-03 20:01:11.279981+00 2025-07-03 20:01:11.27999+00 f t in_progress_vet 212 113 +352 2025-07-03 21:52:54.327631+00 2025-07-03 21:52:54.327639+00 f t in_progress_vet 213 113 +353 2025-07-03 23:09:11.435736+00 2025-07-03 23:09:11.435745+00 f t rejected D-Abandono Bot 213 113 +354 2025-07-04 12:32:59.486422+00 2025-07-04 12:32:59.486435+00 f t in_progress_vet 214 1026 +355 2025-07-04 12:46:09.06083+00 2025-07-04 12:46:09.060843+00 f t rejected D-Emergencia 214 1026 +356 2025-07-04 16:30:22.15173+00 2025-07-04 16:30:22.151739+00 f t in_progress_vet 215 1026 +357 2025-07-04 20:56:00.361629+00 2025-07-04 20:56:00.361639+00 f t in_progress_vet 216 1026 +358 2025-07-04 20:56:06.544631+00 2025-07-04 20:56:06.544641+00 f t in_progress_pay 216 \N +359 2025-07-04 21:06:31.256088+00 2025-07-04 21:06:31.256101+00 f t coordinated Turno confirmado para 2025-07-04 a las 21:00 216 1026 +360 2025-07-05 00:09:21.224734+00 2025-07-05 00:09:21.224743+00 f t in_progress_vet 217 113 +361 2025-07-05 14:11:18.196158+00 2025-07-05 14:11:18.196167+00 f t in_progress_vet 218 114 +362 2025-07-05 14:33:26.95236+00 2025-07-05 14:33:26.952373+00 f t rejected D-Provincia 218 114 +363 2025-07-05 17:57:21.236919+00 2025-07-05 17:57:21.236931+00 f t in_progress_vet 219 114 +364 2025-07-05 21:17:06.264943+00 2025-07-05 21:17:06.264952+00 f t rejected D-Provincia 219 114 +365 2025-07-06 14:21:30.414632+00 2025-07-06 14:21:30.414645+00 f t in_progress_vet 220 114 +366 2025-07-06 14:28:17.911162+00 2025-07-06 14:28:17.911171+00 f t in_progress_vet 221 114 +367 2025-07-06 14:57:49.722644+00 2025-07-06 14:57:49.722659+00 f t in_progress_vet 224 114 +368 2025-07-06 15:06:58.190156+00 2025-07-06 15:06:58.190163+00 f t in_progress_vet 223 114 +369 2025-07-06 15:26:46.921109+00 2025-07-06 15:26:46.921118+00 f t in_progress_vet 222 114 +370 2025-07-06 15:32:08.703578+00 2025-07-06 15:32:08.703588+00 f t rejected D-Provincia 222 114 +371 2025-07-06 17:02:41.005145+00 2025-07-06 17:02:41.005155+00 f t in_progress_vet 225 114 +372 2025-07-06 18:16:14.464868+00 2025-07-06 18:16:14.464878+00 f t rejected D-Provincia 224 114 +373 2025-07-06 20:30:27.526992+00 2025-07-06 20:30:27.527004+00 f t rejected D-Sin Turno 225 114 +374 2025-07-06 20:31:13.19302+00 2025-07-06 20:31:13.193032+00 f t rejected D-Emergencia 223 114 +375 2025-07-06 20:31:13.49478+00 2025-07-06 20:31:13.494787+00 f t rejected D-Emergencia 223 114 +376 2025-07-06 20:31:15.619611+00 2025-07-06 20:31:15.61962+00 f t rejected D-Emergencia 223 114 +377 2025-07-06 20:31:15.844934+00 2025-07-06 20:31:15.844943+00 f t rejected D-Emergencia 223 114 +378 2025-07-07 14:22:03.162706+00 2025-07-07 14:22:03.162716+00 f t in_progress_vet 226 114 +379 2025-07-07 14:24:54.617678+00 2025-07-07 14:24:54.617687+00 f t in_progress_vet 227 114 +380 2025-07-07 14:59:35.179096+00 2025-07-07 14:59:35.17911+00 f t in_progress_vet 228 114 +381 2025-07-07 16:05:25.074163+00 2025-07-07 16:05:25.074172+00 f t in_progress_vet 229 114 +382 2025-07-07 16:15:17.976639+00 2025-07-07 16:15:17.976648+00 f t in_progress_vet 230 114 +383 2025-07-07 16:54:59.311783+00 2025-07-07 16:54:59.311792+00 f t in_progress_vet 231 113 +384 2025-07-07 21:06:23.399429+00 2025-07-07 21:06:23.399441+00 f t in_progress_vet 232 113 +385 2025-07-07 22:41:55.924981+00 2025-07-07 22:41:55.92499+00 f t in_progress_vet 233 113 +386 2025-07-07 23:17:24.33226+00 2025-07-07 23:17:24.332268+00 f t rejected D-Abandono Bot 230 113 +387 2025-07-08 00:22:10.53293+00 2025-07-08 00:22:10.532942+00 f t rejected D-Precio 231 113 +388 2025-07-08 12:21:25.850508+00 2025-07-08 12:21:25.850519+00 f t in_progress_vet 236 1026 +389 2025-07-08 12:24:59.911182+00 2025-07-08 12:24:59.91119+00 f t in_progress_vet 235 1026 +390 2025-07-08 12:25:53.444909+00 2025-07-08 12:25:53.444919+00 f t in_progress_vet 234 1026 +391 2025-07-08 14:12:39.87061+00 2025-07-08 14:12:39.870623+00 f t in_progress_vet 238 1026 +392 2025-07-08 14:12:47.788999+00 2025-07-08 14:12:47.789007+00 f t in_progress_vet 237 1026 +393 2025-07-08 14:24:30.58026+00 2025-07-08 14:24:30.58027+00 f t rejected D-Emergencia 234 1026 +394 2025-07-08 15:46:50.648564+00 2025-07-08 15:46:50.648573+00 f t in_progress_vet 239 1026 +395 2025-07-08 17:36:21.73952+00 2025-07-08 17:36:21.73953+00 f t coordinated Turno confirmado para 2025-07-11 a las 13:00 238 1026 +396 2025-07-08 18:09:38.882199+00 2025-07-08 18:09:38.882208+00 f t in_progress_vet 240 113 +397 2025-07-08 20:45:55.556454+00 2025-07-08 20:45:55.556462+00 f t rejected D-Medios de pago 235 1026 +398 2025-07-08 20:46:12.732708+00 2025-07-08 20:46:12.732718+00 f t rejected D-Averiguando / Desconocido 239 1026 +399 2025-07-08 21:08:06.008418+00 2025-07-08 21:08:06.008428+00 f t in_progress_vet 241 113 +400 2025-07-08 22:56:29.911007+00 2025-07-08 22:56:29.91102+00 f t in_progress_vet 242 113 +401 2025-07-08 23:04:44.517023+00 2025-07-08 23:04:44.517031+00 f t rejected D-Provincia 240 113 +402 2025-07-08 23:33:33.379511+00 2025-07-08 23:33:33.379522+00 f t in_progress_vet 243 1208 +403 2025-07-08 23:34:54.77841+00 2025-07-08 23:34:54.778422+00 f t in_progress_pay 243 \N +404 2025-07-09 16:04:05.274149+00 2025-07-09 16:04:05.27416+00 f t in_progress_vet 244 114 +405 2025-07-09 17:00:29.351806+00 2025-07-09 17:00:29.351819+00 f t in_progress_vet 245 114 +406 2025-07-09 17:10:02.628835+00 2025-07-09 17:10:02.628849+00 f t rejected D-Provincia 245 114 +407 2025-07-09 22:09:44.288193+00 2025-07-09 22:09:44.288206+00 f t in_progress_vet 246 114 +408 2025-07-10 12:05:32.887382+00 2025-07-10 12:05:32.887395+00 f t in_progress_vet 247 1026 +409 2025-07-10 12:06:31.696065+00 2025-07-10 12:06:31.696078+00 f t rejected D-Emergencia 247 1026 +410 2025-07-10 12:08:31.055639+00 2025-07-10 12:08:31.055652+00 f t in_progress_vet 248 1026 +411 2025-07-10 12:12:24.68479+00 2025-07-10 12:12:24.6848+00 f t in_progress_vet 249 1026 +412 2025-07-10 12:13:13.138886+00 2025-07-10 12:13:13.138895+00 f t rejected D-Emergencia 249 1026 +413 2025-07-10 12:14:11.634391+00 2025-07-10 12:14:11.634399+00 f t in_progress_vet 250 1026 +414 2025-07-10 12:48:56.869962+00 2025-07-10 12:48:56.86997+00 f t coordinated Turno confirmado para 2025-07-09 a las 21:00 246 1026 +415 2025-07-10 13:26:17.76156+00 2025-07-10 13:26:17.761568+00 f t in_progress_vet 251 1026 +416 2025-07-10 14:16:00.539579+00 2025-07-10 14:16:00.539588+00 f t rejected D-Emergencia 251 1026 +417 2025-07-10 15:33:21.640221+00 2025-07-10 15:33:21.640232+00 f t in_progress_vet 252 1026 +418 2025-07-10 16:30:52.242524+00 2025-07-10 16:30:52.24254+00 f t in_progress_pay 250 \N +419 2025-07-10 18:24:32.840313+00 2025-07-10 18:24:32.840322+00 f t in_progress_vet 253 1026 +420 2025-07-10 20:37:02.487117+00 2025-07-10 20:37:02.487169+00 f t in_progress_vet 254 1026 +421 2025-07-11 12:30:48.015191+00 2025-07-11 12:30:48.0152+00 f t in_progress_vet 256 1026 +422 2025-07-11 12:35:04.519517+00 2025-07-11 12:35:04.519533+00 f t in_progress_vet 257 1026 +423 2025-07-11 12:35:48.598534+00 2025-07-11 12:35:48.598544+00 f t in_progress_vet 258 1026 +424 2025-07-11 12:35:48.693018+00 2025-07-11 12:35:48.693027+00 f t in_progress_vet 258 1026 +425 2025-07-11 12:48:08.684756+00 2025-07-11 12:48:08.684767+00 f t in_progress_vet 255 1026 +426 2025-07-11 13:27:03.430468+00 2025-07-11 13:27:03.430481+00 f t rejected D-Emergencia 257 1026 +427 2025-07-11 13:27:03.478102+00 2025-07-11 13:27:03.478114+00 f t rejected D-Emergencia 257 1026 +428 2025-07-11 15:08:46.76982+00 2025-07-11 15:08:46.769833+00 f t rejected D-Emergencia 256 1026 +429 2025-07-11 16:06:44.112194+00 2025-07-11 16:06:44.112203+00 f t rejected D-Precio 258 1026 +430 2025-07-11 16:06:44.190197+00 2025-07-11 16:06:44.190205+00 f t rejected D-Precio 258 1026 +431 2025-07-11 16:07:05.836619+00 2025-07-11 16:07:05.836629+00 f t rejected D-Averiguando / Desconocido 253 1026 +432 2025-07-11 16:07:16.287679+00 2025-07-11 16:07:16.287688+00 f t rejected D-Sin Turno 243 1026 +433 2025-07-11 22:58:55.075997+00 2025-07-11 22:58:55.076006+00 f t in_progress_vet 259 113 +434 2025-07-11 23:01:33.162543+00 2025-07-11 23:01:33.162552+00 f t in_progress_vet 260 113 +435 2025-07-11 23:22:17.981978+00 2025-07-11 23:22:17.981987+00 f t rejected D-Sin Turno 259 113 +436 2025-07-12 14:56:29.615096+00 2025-07-12 14:56:29.615105+00 f t in_progress_vet 261 114 +437 2025-07-12 16:05:32.450148+00 2025-07-12 16:05:32.450158+00 f t rejected D-Emergencia 261 114 +438 2025-07-13 12:36:00.39805+00 2025-07-13 12:36:00.398061+00 f t in_progress_vet 263 1208 +439 2025-07-13 12:37:14.707496+00 2025-07-13 12:37:14.707509+00 f t in_progress_vet 264 1208 +440 2025-07-13 12:40:48.786806+00 2025-07-13 12:40:48.786818+00 f t rejected D-Emergencia 262 1208 +441 2025-07-13 13:08:08.415471+00 2025-07-13 13:08:08.415482+00 f t in_progress_vet 266 1208 +442 2025-07-13 13:09:34.536165+00 2025-07-13 13:09:34.536174+00 f t in_progress_vet 265 1208 +443 2025-07-13 14:06:09.774015+00 2025-07-13 14:06:09.774024+00 f t rejected D-Sin Turno 266 1208 +444 2025-07-13 14:06:09.828204+00 2025-07-13 14:06:09.828213+00 f t rejected D-Sin Turno 266 1208 +445 2025-07-13 15:27:10.201633+00 2025-07-13 15:27:10.201646+00 f t rejected D-Emergencia 264 114 +446 2025-07-13 16:04:59.790223+00 2025-07-13 16:04:59.790237+00 f t rejected D-Emergencia 263 1208 +447 2025-07-14 12:28:34.995343+00 2025-07-14 12:28:34.995354+00 f t in_progress_vet 267 1026 +448 2025-07-14 12:29:34.459639+00 2025-07-14 12:29:34.459647+00 f t rejected D-Emergencia 267 1026 +449 2025-07-14 12:30:33.106124+00 2025-07-14 12:30:33.106135+00 f t in_progress_vet 268 1026 +450 2025-07-14 13:51:24.604365+00 2025-07-14 13:51:24.60438+00 f t in_progress_pay 268 \N +451 2025-07-14 15:37:19.833779+00 2025-07-14 15:37:19.833788+00 f t in_progress_vet 269 1026 +452 2025-07-14 16:08:25.360802+00 2025-07-14 16:08:25.36081+00 f t rejected D-Emergencia 269 1026 +453 2025-07-14 17:15:14.458541+00 2025-07-14 17:15:14.458551+00 f t in_progress_vet 270 113 +454 2025-07-14 18:56:30.144754+00 2025-07-14 18:56:30.144763+00 f t rejected D-Emergencia 270 1026 +455 2025-07-14 21:44:23.652229+00 2025-07-14 21:44:23.652245+00 f t in_progress_vet 271 113 +456 2025-07-15 00:26:35.130904+00 2025-07-15 00:26:35.130914+00 f t rejected D-Abandono Bot 271 113 +457 2025-07-15 12:31:23.933829+00 2025-07-15 12:31:23.933842+00 f t in_progress_vet 272 1026 +458 2025-07-15 14:51:53.03553+00 2025-07-15 14:51:53.035542+00 f t in_progress_vet 273 1026 +459 2025-07-15 14:53:49.007374+00 2025-07-15 14:53:49.007383+00 f t coordinated Turno confirmado para 2025-07-16 a las 18:30 273 1026 +460 2025-07-15 15:59:28.186363+00 2025-07-15 15:59:28.186374+00 f t in_progress_vet 274 1026 +461 2025-07-15 17:29:15.482176+00 2025-07-15 17:29:15.482186+00 f t in_progress_vet 275 1026 +462 2025-07-15 18:04:47.529617+00 2025-07-15 18:04:47.529631+00 f t rejected D-Sin Turno 255 1026 +463 2025-07-15 21:24:21.810369+00 2025-07-15 21:24:21.810382+00 f t coordinated Turno confirmado para 2025-09-05 a las 09:00 272 1026 +464 2025-07-16 12:24:44.614432+00 2025-07-16 12:24:44.61444+00 f t in_progress_vet 277 1026 +465 2025-07-16 12:28:31.440761+00 2025-07-16 12:28:31.440774+00 f t in_progress_vet 278 1026 +466 2025-07-16 12:28:42.676317+00 2025-07-16 12:28:42.676327+00 f t in_progress_vet 279 1026 +467 2025-07-16 13:46:19.973498+00 2025-07-16 13:46:19.973513+00 f t coordinated Turno confirmado para 2025-07-17 a las 13:00 278 1026 +468 2025-07-16 14:50:36.617381+00 2025-07-16 14:50:36.61739+00 f t coordinated Turno confirmado para 2025-07-16 a las 17:00 277 1026 +469 2025-07-17 12:18:30.209376+00 2025-07-17 12:18:30.209385+00 f t in_progress_vet 280 1026 +470 2025-07-17 12:18:30.27865+00 2025-07-17 12:18:30.278659+00 f t in_progress_vet 280 1026 +471 2025-07-17 12:27:12.291097+00 2025-07-17 12:27:12.291107+00 f t in_progress_vet 281 1026 +472 2025-07-17 12:27:24.222883+00 2025-07-17 12:27:24.222894+00 f t rejected D-Averiguando / Desconocido 279 1026 +473 2025-07-17 12:27:37.203677+00 2025-07-17 12:27:37.203687+00 f t in_progress_vet 282 1026 +474 2025-07-17 12:30:24.98131+00 2025-07-17 12:30:24.98132+00 f t rejected D-Emergencia 280 1026 +475 2025-07-17 13:44:43.269556+00 2025-07-17 13:44:43.269569+00 f t in_progress_vet 283 1026 +476 2025-07-17 14:23:06.838245+00 2025-07-17 14:23:06.838259+00 f t in_progress_vet 284 1026 +477 2025-07-17 14:32:36.875109+00 2025-07-17 14:32:36.875121+00 f t coordinated Turno confirmado para 2025-07-17 a las 19:00 284 1026 +478 2025-07-17 15:19:50.888154+00 2025-07-17 15:19:50.888167+00 f t rejected D-Averiguando / Desconocido 281 1026 +479 2025-07-17 17:29:04.394286+00 2025-07-17 17:29:04.394301+00 f t rejected D-Provincia 285 1208 +480 2025-07-17 17:49:20.58909+00 2025-07-17 17:49:20.5891+00 f t in_progress_vet 286 1208 +481 2025-07-17 17:49:20.71614+00 2025-07-17 17:49:20.71615+00 f t in_progress_vet 286 1208 +482 2025-07-17 19:28:38.343945+00 2025-07-17 19:28:38.343958+00 f t rejected D-Abandono Bot 286 1208 +483 2025-07-18 13:11:51.003237+00 2025-07-18 13:11:51.003251+00 f t in_progress_vet 287 1026 +484 2025-07-18 13:12:23.10534+00 2025-07-18 13:12:23.105353+00 f t in_progress_vet 288 1026 +485 2025-07-18 18:43:45.724668+00 2025-07-18 18:43:45.72468+00 f t rejected D-Sin Turno 288 1026 +486 2025-07-19 12:51:25.800535+00 2025-07-19 12:51:25.800546+00 f t in_progress_vet 289 1208 +487 2025-07-19 18:39:51.769191+00 2025-07-19 18:39:51.769201+00 f t in_progress_vet 290 114 +488 2025-07-20 12:11:26.072153+00 2025-07-20 12:11:26.072163+00 f t in_progress_vet 291 1208 +489 2025-07-20 12:11:50.457868+00 2025-07-20 12:11:50.457877+00 f t in_progress_vet 292 1208 +490 2025-07-20 13:55:00.936979+00 2025-07-20 13:55:00.936991+00 f t in_progress_vet 293 1208 +491 2025-07-20 14:26:13.140671+00 2025-07-20 14:26:13.14068+00 f t rejected D-Tiempo de respuestas 293 1208 +492 2025-07-20 16:28:50.914563+00 2025-07-20 16:28:50.914571+00 f t in_progress_vet 294 1208 +493 2025-07-20 16:55:40.973424+00 2025-07-20 16:55:40.973435+00 f t rejected D-Abandono Bot 289 1208 +494 2025-07-20 19:28:14.513476+00 2025-07-20 19:28:14.513485+00 f t in_progress_vet 295 1208 +495 2025-07-21 12:43:53.43124+00 2025-07-21 12:43:53.431248+00 f t in_progress_vet 296 1026 +496 2025-07-21 14:22:28.295593+00 2025-07-21 14:22:28.295605+00 f t in_progress_vet 297 1026 +497 2025-07-21 14:47:36.438977+00 2025-07-21 14:47:36.438988+00 f t in_progress_vet 298 1026 +498 2025-07-21 15:12:15.609449+00 2025-07-21 15:12:15.609459+00 f t rejected D-Averiguando / Desconocido 298 1026 +499 2025-07-21 16:35:08.091085+00 2025-07-21 16:35:08.091095+00 f t rejected D-Emergencia 295 1026 +500 2025-07-21 16:35:41.724551+00 2025-07-21 16:35:41.724562+00 f t rejected D-Medios de pago 292 1026 +501 2025-07-21 16:36:30.161017+00 2025-07-21 16:36:30.161026+00 f t rejected D-Sin Turno 291 1026 +502 2025-07-21 16:36:58.711216+00 2025-07-21 16:36:58.711225+00 f t rejected D-Averiguando / Desconocido 244 1026 +503 2025-07-21 16:57:47.124087+00 2025-07-21 16:57:47.1241+00 f t coordinated Turno confirmado para 2025-07-21 a las 19:00 296 1026 +504 2025-07-22 12:28:52.059809+00 2025-07-22 12:28:52.059818+00 f t in_progress_vet 299 1026 +505 2025-07-22 14:53:29.84294+00 2025-07-22 14:53:29.842948+00 f t in_progress_vet 300 1026 +506 2025-07-22 15:12:25.549028+00 2025-07-22 15:12:25.549036+00 f t coordinated Turno confirmado para 2025-07-22 a las 14:30 300 1026 +507 2025-07-22 22:36:01.148518+00 2025-07-22 22:36:01.148533+00 f t in_progress_vet 301 113 +508 2025-07-23 12:17:57.957299+00 2025-07-23 12:17:57.957313+00 f t in_progress_vet 302 1026 +509 2025-07-23 13:30:14.613661+00 2025-07-23 13:30:14.613671+00 f t coordinated Turno confirmado para 2025-07-23 a las 20:00 302 1026 +510 2025-07-23 19:52:31.217919+00 2025-07-23 19:52:31.217929+00 f t rejected D-Averiguando / Desconocido 301 1026 +511 2025-07-23 22:00:55.596349+00 2025-07-23 22:00:55.596363+00 f t in_progress_vet 303 1208 +512 2025-07-23 22:01:07.765223+00 2025-07-23 22:01:07.765237+00 f t rejected D-Emergencia 303 1208 +513 2025-07-24 12:23:14.722121+00 2025-07-24 12:23:14.722134+00 f t in_progress_vet 304 1026 +514 2025-07-24 13:06:10.658103+00 2025-07-24 13:06:10.658113+00 f t coordinated Turno confirmado para 2025-07-24 a las 13:00 304 1026 +515 2025-07-24 17:23:09.923751+00 2025-07-24 17:23:09.923763+00 f t in_progress_vet 305 1208 +516 2025-07-24 18:56:46.420233+00 2025-07-24 18:56:46.42024+00 f t rejected D-Falta de servicio 305 1208 +517 2025-07-25 12:19:17.380855+00 2025-07-25 12:19:17.380867+00 f t in_progress_vet 306 1026 +518 2025-07-25 12:20:45.802488+00 2025-07-25 12:20:45.802502+00 f t in_progress_vet 307 1026 +519 2025-07-25 12:46:53.487649+00 2025-07-25 12:46:53.487656+00 f t in_progress_vet 308 1026 +520 2025-07-25 13:33:18.987282+00 2025-07-25 13:33:18.987292+00 f t coordinated Turno confirmado para 2025-07-25 a las 11:00 307 1026 +521 2025-07-25 13:53:56.272621+00 2025-07-25 13:53:56.27263+00 f t rejected D-Zona Peligrosa 308 1026 +522 2025-07-25 17:53:51.117223+00 2025-07-25 17:53:51.117231+00 f t in_progress_vet 309 1026 +523 2025-07-25 18:06:17.2035+00 2025-07-25 18:06:17.203509+00 f t in_progress_vet 310 1026 +524 2025-07-25 18:06:53.699599+00 2025-07-25 18:06:53.699609+00 f t coordinated Turno confirmado para 2025-08-01 a las 14:30 310 1026 +525 2025-07-25 18:31:34.556793+00 2025-07-25 18:31:34.556804+00 f t rejected D-Averiguando / Desconocido 306 1026 +526 2025-07-26 13:44:33.186549+00 2025-07-26 13:44:33.186563+00 f t in_progress_vet 311 1208 +527 2025-07-26 14:03:03.388452+00 2025-07-26 14:03:03.388464+00 f t in_progress_vet 312 1208 +528 2025-07-26 14:03:03.529321+00 2025-07-26 14:03:03.529333+00 f t in_progress_vet 312 1208 +529 2025-07-26 15:48:13.634881+00 2025-07-26 15:48:13.634894+00 f t in_progress_vet 313 1208 +530 2025-07-26 16:57:33.377016+00 2025-07-26 16:57:33.377025+00 f t in_progress_vet 314 1208 +531 2025-07-27 13:47:48.132067+00 2025-07-27 13:47:48.132076+00 f t in_progress_vet 315 1208 +532 2025-07-27 13:53:36.38505+00 2025-07-27 13:53:36.385062+00 f t rejected D-Tiempo de respuestas 315 1208 +533 2025-07-27 15:07:40.377006+00 2025-07-27 15:07:40.377019+00 f t in_progress_vet 316 1208 +534 2025-07-27 15:14:52.110052+00 2025-07-27 15:14:52.110062+00 f t rejected D-Emergencia 316 1208 +535 2025-07-27 17:19:03.897969+00 2025-07-27 17:19:03.897981+00 f t in_progress_vet 317 1208 +536 2025-07-27 19:00:14.723822+00 2025-07-27 19:00:14.723835+00 f t in_progress_vet 318 1208 +537 2025-07-28 13:11:01.208192+00 2025-07-28 13:11:01.208207+00 f t in_progress_vet 319 1026 +538 2025-07-28 15:06:35.287989+00 2025-07-28 15:06:35.287999+00 f t in_progress_vet 320 1026 +539 2025-07-28 15:23:19.864199+00 2025-07-28 15:23:19.86421+00 f t rejected D-Sin Turno 320 1026 +540 2025-07-28 16:53:18.901425+00 2025-07-28 16:53:18.901433+00 f t in_progress_vet 321 1026 +541 2025-07-28 17:02:24.470534+00 2025-07-28 17:02:24.470544+00 f t rejected D-Sin Turno 321 1026 +542 2025-07-29 12:05:06.926065+00 2025-07-29 12:05:06.926081+00 f t in_progress_vet 322 1026 +543 2025-07-29 12:05:20.500313+00 2025-07-29 12:05:20.500325+00 f t in_progress_vet 323 1026 +544 2025-07-29 12:05:27.526783+00 2025-07-29 12:05:27.526795+00 f t in_progress_vet 324 1026 +545 2025-07-29 13:09:49.262151+00 2025-07-29 13:09:49.26216+00 f t in_progress_vet 326 1026 +546 2025-07-29 13:23:01.471531+00 2025-07-29 13:23:01.471543+00 f t in_progress_vet 325 1026 +547 2025-07-29 15:15:01.680592+00 2025-07-29 15:15:01.680607+00 f t coordinated Turno confirmado para 2025-07-29 a las 17:00 326 1026 +548 2025-07-29 15:31:28.868802+00 2025-07-29 15:31:28.868815+00 f t in_progress_vet 327 1026 +549 2025-07-29 16:07:59.254313+00 2025-07-29 16:07:59.254323+00 f t rejected D-Emergencia 328 1026 +550 2025-07-29 16:31:52.815933+00 2025-07-29 16:31:52.815942+00 f t in_progress_vet 329 1208 +551 2025-07-29 18:01:48.692528+00 2025-07-29 18:01:48.692541+00 f t rejected D-Provincia 329 1208 +552 2025-07-29 18:19:17.986188+00 2025-07-29 18:19:17.986197+00 f t rejected D-Averiguando / Desconocido 322 1026 +553 2025-07-29 18:19:28.400669+00 2025-07-29 18:19:28.400682+00 f t rejected D-Sin Turno 327 1026 +554 2025-07-29 20:28:14.71809+00 2025-07-29 20:28:14.718099+00 f t rejected D-Emergencia 330 1026 +555 2025-07-30 16:58:58.963489+00 2025-07-30 16:58:58.963498+00 f t in_progress_vet 331 1208 +556 2025-07-30 18:27:48.427505+00 2025-07-30 18:27:48.427516+00 f t in_progress_vet 332 1208 +557 2025-07-30 19:40:01.230389+00 2025-07-30 19:40:01.230402+00 f t rejected D-Abandono Bot 332 1208 +558 2025-07-31 14:22:38.867924+00 2025-07-31 14:22:38.867933+00 f t in_progress_vet 333 1026 +559 2025-07-31 15:10:46.454165+00 2025-07-31 15:10:46.454178+00 f t in_progress_vet 334 1026 +560 2025-07-31 16:21:01.9273+00 2025-07-31 16:21:01.927316+00 f t rejected D-Sin Turno 334 1026 +561 2025-07-31 18:54:11.600531+00 2025-07-31 18:54:11.600545+00 f t in_progress_vet 335 1208 +562 2025-08-01 12:23:31.820694+00 2025-08-01 12:23:31.820707+00 f t in_progress_vet 336 1026 +563 2025-08-01 13:24:16.264839+00 2025-08-01 13:24:16.264849+00 f t rejected D-Emergencia 337 1026 +564 2025-08-01 14:36:12.361202+00 2025-08-01 14:36:12.361213+00 f t in_progress_vet 338 1026 +565 2025-08-01 17:48:58.018107+00 2025-08-01 17:48:58.018119+00 f t coordinated Turno confirmado para 2025-08-01 a las 20:00 338 1026 +566 2025-08-01 20:16:17.911875+00 2025-08-01 20:16:17.911889+00 f t in_progress_pay 336 \N +567 2025-08-01 22:25:13.479904+00 2025-08-01 22:25:13.479918+00 f t rejected D-Sin Turno 339 113 +568 2025-08-01 22:25:21.699375+00 2025-08-01 22:25:21.699385+00 f t rejected D-Sin Turno 340 113 +569 2025-08-02 12:11:43.195444+00 2025-08-02 12:11:43.195453+00 f t in_progress_vet 341 1208 +570 2025-08-02 12:11:59.798135+00 2025-08-02 12:11:59.798146+00 f t in_progress_vet 342 1208 +571 2025-08-02 13:38:46.665984+00 2025-08-02 13:38:46.665993+00 f t in_progress_vet 343 1208 +572 2025-08-02 14:20:02.4517+00 2025-08-02 14:20:02.451713+00 f t in_progress_vet 344 1208 +573 2025-08-02 15:08:45.348519+00 2025-08-02 15:08:45.348531+00 f t rejected D-Abandono Bot 342 1208 +574 2025-08-02 15:44:13.093331+00 2025-08-02 15:44:13.093341+00 f t in_progress_vet 345 1208 +575 2025-08-02 18:08:49.600201+00 2025-08-02 18:08:49.60021+00 f t rejected D-Averiguando / Desconocido 345 1208 +576 2025-08-02 19:57:46.201716+00 2025-08-02 19:57:46.201728+00 f t rejected D-Abandono Bot 344 1208 +577 2025-08-03 12:31:49.105225+00 2025-08-03 12:31:49.105239+00 f t in_progress_vet 346 1208 +578 2025-08-03 12:32:02.234167+00 2025-08-03 12:32:02.234181+00 f t in_progress_vet 347 1208 +579 2025-08-03 12:45:13.2104+00 2025-08-03 12:45:13.210409+00 f t in_progress_vet 348 1208 +580 2025-08-03 15:45:54.269929+00 2025-08-03 15:45:54.269939+00 f t rejected D-Averiguando / Desconocido 346 1208 +581 2025-08-04 12:07:13.211765+00 2025-08-04 12:07:13.211823+00 f t in_progress_vet 350 1026 +582 2025-08-04 12:08:45.538145+00 2025-08-04 12:08:45.538155+00 f t in_progress_vet 349 1026 +583 2025-08-04 13:55:16.334193+00 2025-08-04 13:55:16.334202+00 f t rejected D-Averiguando / Desconocido 349 1026 +584 2025-08-04 16:35:12.957822+00 2025-08-04 16:35:12.957833+00 f t in_progress_vet 351 1208 +585 2025-08-04 21:02:36.250725+00 2025-08-04 21:02:36.250737+00 f t in_progress_vet 353 1026 +586 2025-08-04 21:36:44.60501+00 2025-08-04 21:36:44.605023+00 f t in_progress_vet 352 1208 +587 2025-08-04 22:09:38.461743+00 2025-08-04 22:09:38.461755+00 f t rejected D-Abandono Bot 352 1208 +588 2025-08-04 23:36:30.679684+00 2025-08-04 23:36:30.679696+00 f t rejected D-Abandono Bot 351 1208 +589 2025-08-05 12:08:10.41348+00 2025-08-05 12:08:10.413493+00 f t in_progress_vet 354 1026 +590 2025-08-05 12:09:28.34279+00 2025-08-05 12:09:28.342803+00 f t in_progress_vet 355 1026 +591 2025-08-05 13:20:05.94951+00 2025-08-05 13:20:05.949527+00 f t coordinated Turno confirmado para 2025-08-09 a las 13:00 355 1026 +592 2025-08-05 20:03:47.83931+00 2025-08-05 20:03:47.83932+00 f t in_progress_vet 356 113 +593 2025-08-05 22:42:12.401946+00 2025-08-05 22:42:12.401957+00 f t in_progress_vet 357 113 +594 2025-08-06 12:09:06.241451+00 2025-08-06 12:09:06.241462+00 f t in_progress_vet 358 114 +595 2025-08-06 12:35:48.367611+00 2025-08-06 12:35:48.367621+00 f t in_progress_vet 359 114 +596 2025-08-06 13:48:16.365794+00 2025-08-06 13:48:16.365803+00 f t in_progress_vet 360 114 +597 2025-08-06 14:41:41.54015+00 2025-08-06 14:41:41.54016+00 f t in_progress_vet 361 114 +598 2025-08-06 17:36:50.847495+00 2025-08-06 17:36:50.847509+00 f t in_progress_vet 362 114 +599 2025-08-06 17:46:05.284423+00 2025-08-06 17:46:05.284434+00 f t rejected D-Abandono Bot 359 114 +600 2025-08-07 14:30:13.039121+00 2025-08-07 14:30:13.039178+00 f t in_progress_vet 364 113 +601 2025-08-07 14:32:03.402285+00 2025-08-07 14:32:03.402298+00 f t in_progress_vet 363 113 +602 2025-08-07 16:47:49.463689+00 2025-08-07 16:47:49.463701+00 f t in_progress_vet 365 114 +603 2025-08-07 17:19:58.750804+00 2025-08-07 17:19:58.750817+00 f t rejected D-Emergencia 365 114 +604 2025-08-07 23:23:47.44526+00 2025-08-07 23:23:47.445271+00 f t in_progress_vet 366 114 +605 2025-08-08 00:06:29.818101+00 2025-08-08 00:06:29.818114+00 f t rejected D-Abandono Bot 366 114 +606 2025-08-08 12:19:11.685399+00 2025-08-08 12:19:11.68541+00 f t in_progress_vet 367 114 +607 2025-08-08 13:44:26.750631+00 2025-08-08 13:44:26.750644+00 f t in_progress_vet 368 114 +608 2025-08-08 14:32:04.746242+00 2025-08-08 14:32:04.746256+00 f t pending 369 \N +609 2025-08-08 14:38:08.472104+00 2025-08-08 14:38:08.472116+00 f t in_progress_vet 369 114 +610 2025-08-08 14:54:05.991754+00 2025-08-08 14:54:05.991769+00 f t pending 370 \N +611 2025-08-08 14:58:45.146929+00 2025-08-08 14:58:45.146938+00 f t in_progress_vet 370 114 +612 2025-08-08 16:20:31.892377+00 2025-08-08 16:20:31.892389+00 f t rejected D-Emergencia 370 114 +613 2025-08-08 21:16:45.422399+00 2025-08-08 21:16:45.422414+00 f t rejected D-Abandono Bot 369 114 +614 2025-08-09 00:44:56.086305+00 2025-08-09 00:44:56.086315+00 f t pending 371 \N +615 2025-08-09 03:28:42.606717+00 2025-08-09 03:28:42.606728+00 f t pending 372 \N +616 2025-08-09 06:17:17.575485+00 2025-08-09 06:17:17.575496+00 f t pending 373 \N +617 2025-08-09 12:39:25.449657+00 2025-08-09 12:39:25.449668+00 f t rejected D-Averiguando / Desconocido 371 1208 +618 2025-08-09 12:49:11.776296+00 2025-08-09 12:49:11.776309+00 f t in_progress_vet 372 1208 +619 2025-08-09 12:51:05.995891+00 2025-08-09 12:51:05.995902+00 f t in_progress_vet 373 1208 +620 2025-08-09 14:18:45.475787+00 2025-08-09 14:18:45.475799+00 f t pending 374 \N +621 2025-08-09 14:25:07.18905+00 2025-08-09 14:25:07.189061+00 f t in_progress_vet 374 1208 +622 2025-08-09 22:41:37.6765+00 2025-08-09 22:41:37.67651+00 f t pending 375 \N +623 2025-08-10 01:54:03.977681+00 2025-08-10 01:54:03.977692+00 f t pending 376 \N +624 2025-08-10 12:46:22.818765+00 2025-08-10 12:46:22.818778+00 f t in_progress_vet 376 114 +625 2025-08-10 13:00:32.274543+00 2025-08-10 13:00:32.274556+00 f t in_progress_vet 375 1208 +626 2025-08-10 14:58:37.591121+00 2025-08-10 14:58:37.591178+00 f t pending 377 \N +627 2025-08-10 16:33:34.672692+00 2025-08-10 16:33:34.672706+00 f t in_progress_vet 377 1208 +628 2025-08-10 20:13:05.772652+00 2025-08-10 20:13:05.772669+00 f t pending 378 \N +629 2025-08-10 20:13:19.303965+00 2025-08-10 20:13:19.303978+00 f t in_progress_vet 378 1208 +630 2025-08-10 21:02:50.331105+00 2025-08-10 21:02:50.331119+00 f t pending 379 \N +631 2025-08-11 13:00:34.476698+00 2025-08-11 13:00:34.476714+00 f t in_progress_vet 379 1208 +632 2025-08-11 13:01:03.469495+00 2025-08-11 13:01:03.46951+00 f t rejected D-Derivado 378 1208 +633 2025-08-11 16:40:36.851302+00 2025-08-11 16:40:36.851312+00 f t pending 380 \N +634 2025-08-11 17:09:42.095339+00 2025-08-11 17:09:42.095352+00 f t in_progress_vet 380 1208 +635 2025-08-11 20:25:55.589896+00 2025-08-11 20:25:55.589911+00 f t pending 381 \N +636 2025-08-11 22:39:41.522538+00 2025-08-11 22:39:41.522549+00 f t in_progress_vet 381 113 +637 2025-08-11 23:35:49.466428+00 2025-08-11 23:35:49.466441+00 f t pending 382 \N +638 2025-08-11 23:39:05.179457+00 2025-08-11 23:39:05.179472+00 f t in_progress_vet 382 113 +639 2025-08-12 02:30:23.855084+00 2025-08-12 02:30:23.855097+00 f t pending 383 \N +640 2025-08-12 10:29:57.271293+00 2025-08-12 10:29:57.27131+00 f t pending 384 \N +641 2025-08-12 12:34:17.955534+00 2025-08-12 12:34:17.955552+00 f t in_progress_vet 383 1208 +642 2025-08-12 12:34:29.699244+00 2025-08-12 12:34:29.699255+00 f t in_progress_vet 384 1208 +643 2025-08-12 12:35:15.917566+00 2025-08-12 12:35:15.91758+00 f t pending 385 \N +644 2025-08-12 12:41:33.994703+00 2025-08-12 12:41:33.994717+00 f t in_progress_vet 385 1208 +645 2025-08-12 13:39:37.191923+00 2025-08-12 13:39:37.191937+00 f t pending 386 \N +646 2025-08-12 13:52:29.437359+00 2025-08-12 13:52:29.437372+00 f t in_progress_vet 386 1208 +647 2025-08-12 15:51:28.851955+00 2025-08-12 15:51:28.851964+00 f t rejected D-Emergencia 384 1208 +648 2025-08-12 18:21:56.794128+00 2025-08-12 18:21:56.794141+00 f t pending 387 \N +649 2025-08-12 18:22:15.250851+00 2025-08-12 18:22:15.25086+00 f t in_progress_vet 387 114 +650 2025-08-12 18:38:18.207368+00 2025-08-12 18:38:18.207379+00 f t rejected D-Falta de servicio 387 114 +651 2025-08-12 19:15:29.303483+00 2025-08-12 19:15:29.303524+00 f t pending 388 \N +652 2025-08-12 19:15:49.510191+00 2025-08-12 19:15:49.510204+00 f t in_progress_vet 388 1208 +653 2025-08-13 11:23:35.678697+00 2025-08-13 11:23:35.678796+00 f t pending 389 \N +654 2025-08-13 12:51:51.658779+00 2025-08-13 12:51:51.658792+00 f t in_progress_vet 389 1208 +655 2025-08-13 15:02:03.71944+00 2025-08-13 15:02:03.719463+00 f t pending 390 \N +656 2025-08-13 15:27:11.060365+00 2025-08-13 15:27:11.060428+00 f t in_progress_vet 390 1208 +657 2025-08-13 16:12:47.785888+00 2025-08-13 16:12:47.785898+00 f t rejected D-Abandono Bot 389 1208 +658 2025-08-13 16:48:06.950849+00 2025-08-13 16:48:06.950865+00 f t pending 391 \N +659 2025-08-13 16:49:00.835656+00 2025-08-13 16:49:00.835667+00 f t in_progress_vet 391 114 +660 2025-08-13 18:17:27.514161+00 2025-08-13 18:17:27.514175+00 f t pending 392 \N +661 2025-08-13 18:17:43.776821+00 2025-08-13 18:17:43.776835+00 f t in_progress_vet 392 114 +662 2025-08-13 18:21:53.65218+00 2025-08-13 18:21:53.652189+00 f t coordinated Turno confirmado para 2025-08-18 a las 20:30 390 114 +663 2025-08-13 18:24:06.145024+00 2025-08-13 18:24:06.145038+00 f t coordinated Turno confirmado para 2025-08-18 a las 20:30 390 114 +664 2025-08-13 18:24:13.058982+00 2025-08-13 18:24:13.060321+00 f t completed 390 \N +665 2025-08-13 18:31:32.403906+00 2025-08-13 18:31:32.403915+00 f t coordinated Turno confirmado para 2025-08-18 a las 16:00 391 114 +666 2025-08-13 18:31:34.836572+00 2025-08-13 18:31:34.836588+00 f t completed 391 \N +667 2025-08-13 22:05:32.887666+00 2025-08-13 22:05:32.887677+00 f t pending 393 \N +668 2025-08-13 22:06:39.353975+00 2025-08-13 22:06:39.353988+00 f t in_progress_vet 393 114 +669 2025-08-13 22:45:02.681309+00 2025-08-13 22:45:02.681324+00 f t rejected D-Emergencia 393 114 +670 2025-08-13 23:00:55.537617+00 2025-08-13 23:00:55.53763+00 f t pending 394 \N +671 2025-08-13 23:02:33.748932+00 2025-08-13 23:02:33.748942+00 f t in_progress_vet 394 114 +672 2025-08-14 03:02:44.479546+00 2025-08-14 03:02:44.479559+00 f t pending 395 \N +673 2025-08-14 04:42:39.01623+00 2025-08-14 04:42:39.016245+00 f t pending 396 \N +674 2025-08-14 05:26:28.447804+00 2025-08-14 05:26:28.447816+00 f t pending 397 \N +675 2025-08-14 12:25:19.459962+00 2025-08-14 12:25:19.459973+00 f t in_progress_vet 395 1208 +676 2025-08-14 12:32:40.400927+00 2025-08-14 12:32:40.40094+00 f t in_progress_vet 396 1208 +677 2025-08-14 12:32:51.511938+00 2025-08-14 12:32:51.511951+00 f t in_progress_vet 397 1208 +678 2025-08-14 13:11:00.903686+00 2025-08-14 13:11:00.903698+00 f t rejected D-Abandono Bot 395 1208 +679 2025-08-14 15:31:49.917497+00 2025-08-14 15:31:49.917507+00 f t pending 398 \N +680 2025-08-14 16:21:48.198446+00 2025-08-14 16:21:48.198457+00 f t pending 399 \N +681 2025-08-14 16:22:29.493355+00 2025-08-14 16:22:29.493366+00 f t in_progress_vet 399 114 +682 2025-08-14 16:26:12.685057+00 2025-08-14 16:26:12.685072+00 f t pending 400 \N +683 2025-08-14 16:26:32.050509+00 2025-08-14 16:26:32.050522+00 f t in_progress_vet 400 114 +684 2025-08-14 17:48:26.215892+00 2025-08-14 17:48:26.215902+00 f t in_progress_vet 398 114 +685 2025-08-14 22:48:36.525906+00 2025-08-14 22:48:36.525921+00 f t rejected D-Abandono Bot 400 114 +686 2025-08-15 00:12:08.859808+00 2025-08-15 00:12:08.859823+00 f t pending 401 \N +687 2025-08-15 13:34:52.359085+00 2025-08-15 13:34:52.3591+00 f t pending 402 \N +688 2025-08-15 14:45:52.41905+00 2025-08-15 14:45:52.419065+00 f t pending 403 \N +689 2025-08-15 16:07:41.772151+00 2025-08-15 16:07:41.772161+00 f t in_progress_vet 401 114 +690 2025-08-15 16:41:16.424577+00 2025-08-15 16:41:16.424588+00 f t pending 404 \N +691 2025-08-15 16:59:09.093531+00 2025-08-15 16:59:09.093541+00 f t in_progress_vet 404 114 +692 2025-08-15 19:13:12.536976+00 2025-08-15 19:13:12.536989+00 f t pending 405 \N +693 2025-08-15 20:29:24.97897+00 2025-08-15 20:29:24.978984+00 f t pending 406 \N +694 2025-08-15 20:37:14.183278+00 2025-08-15 20:37:14.183293+00 f t in_progress_vet 406 114 +695 2025-08-15 22:11:02.477481+00 2025-08-15 22:11:02.477493+00 f t pending 407 \N +696 2025-08-15 22:21:29.349522+00 2025-08-15 22:21:29.349536+00 f t in_progress_vet 407 114 +697 2025-08-15 23:55:54.912469+00 2025-08-15 23:55:54.912478+00 f t in_progress_vet 403 114 +698 2025-08-15 23:56:04.146458+00 2025-08-15 23:56:04.146471+00 f t rejected D-Emergencia 403 114 +699 2025-08-15 23:59:26.436615+00 2025-08-15 23:59:26.436625+00 f t rejected D-Precio 407 114 +700 2025-08-16 01:00:40.779181+00 2025-08-16 01:00:40.779197+00 f t pending 408 \N +701 2025-08-16 12:15:21.497319+00 2025-08-16 12:15:21.497329+00 f t in_progress_vet 408 1208 +702 2025-08-16 15:13:52.696834+00 2025-08-16 15:13:52.696846+00 f t pending 409 \N +703 2025-08-16 15:23:35.946559+00 2025-08-16 15:23:35.94657+00 f t in_progress_vet 409 1208 +704 2025-08-17 00:32:02.794546+00 2025-08-17 00:32:02.794561+00 f t pending 410 \N +705 2025-08-17 00:36:03.966668+00 2025-08-17 00:36:03.966682+00 f t pending 411 \N +706 2025-08-17 10:04:12.817774+00 2025-08-17 10:04:12.817784+00 f t pending 412 \N +707 2025-08-17 12:28:38.754762+00 2025-08-17 12:28:38.754771+00 f t in_progress_vet 410 114 +708 2025-08-17 12:32:41.647676+00 2025-08-17 12:32:41.647685+00 f t in_progress_vet 411 114 +709 2025-08-17 12:33:16.903404+00 2025-08-17 12:33:16.903415+00 f t in_progress_vet 412 114 +710 2025-08-17 12:45:06.557515+00 2025-08-17 12:45:06.557531+00 f t rejected D-Emergencia 411 114 +711 2025-08-17 13:21:34.802437+00 2025-08-17 13:21:34.802446+00 f t pending 413 \N +712 2025-08-17 13:24:25.399837+00 2025-08-17 13:24:25.39985+00 f t in_progress_vet 413 114 +713 2025-08-17 14:34:40.677925+00 2025-08-17 14:34:40.677938+00 f t pending 414 \N +714 2025-08-17 14:36:33.321774+00 2025-08-17 14:36:33.321784+00 f t rejected D-Emergencia 413 114 +715 2025-08-17 14:36:43.979765+00 2025-08-17 14:36:43.979778+00 f t in_progress_vet 414 114 +716 2025-08-17 18:18:13.079632+00 2025-08-17 18:18:13.079648+00 f t pending 415 \N +717 2025-08-17 18:19:00.920709+00 2025-08-17 18:19:00.920718+00 f t in_progress_vet 415 114 +718 2025-08-18 00:42:03.433104+00 2025-08-18 00:42:03.433116+00 f t pending 416 \N +719 2025-08-18 12:29:13.664867+00 2025-08-18 12:29:13.664876+00 f t in_progress_vet 416 1208 +720 2025-08-18 19:36:53.350891+00 2025-08-18 19:36:53.350901+00 f t pending 417 \N +721 2025-08-18 20:52:00.238715+00 2025-08-18 20:52:00.238726+00 f t in_progress_vet 417 113 +722 2025-08-18 20:58:44.625041+00 2025-08-18 20:58:44.625051+00 f t pending 418 \N +723 2025-08-18 22:11:41.499888+00 2025-08-18 22:11:41.499896+00 f t rejected D-Abandono Bot 418 113 +724 2025-08-18 22:18:22.977219+00 2025-08-18 22:18:22.977234+00 f t pending 419 \N +725 2025-08-18 22:27:23.296985+00 2025-08-18 22:27:23.296998+00 f t in_progress_vet 419 113 +726 2025-08-18 22:45:53.484877+00 2025-08-18 22:45:53.484886+00 f t in_progress_pay 419 \N +727 2025-08-19 05:45:49.060957+00 2025-08-19 05:45:49.060973+00 f t pending 420 \N +728 2025-08-19 11:01:46.772633+00 2025-08-19 11:01:46.772643+00 f t pending 421 \N +729 2025-08-19 12:40:27.349117+00 2025-08-19 12:40:27.349134+00 f t pending 422 \N +730 2025-08-19 12:43:49.086651+00 2025-08-19 12:43:49.08666+00 f t in_progress_vet 420 1208 +731 2025-08-19 12:44:01.889351+00 2025-08-19 12:44:01.889364+00 f t in_progress_vet 421 1208 +732 2025-08-19 12:44:12.175081+00 2025-08-19 12:44:12.175092+00 f t in_progress_vet 422 1208 +733 2025-08-19 18:49:03.675494+00 2025-08-19 18:49:03.675509+00 f t pending 423 \N +734 2025-08-19 19:39:30.582605+00 2025-08-19 19:39:30.582619+00 f t rejected D-Abandono Bot 420 1208 +735 2025-08-19 21:25:38.552166+00 2025-08-19 21:25:38.552178+00 f t pending 424 \N +736 2025-08-19 21:26:43.188867+00 2025-08-19 21:26:43.188879+00 f t in_progress_vet 424 1208 +737 2025-08-19 21:31:24.694886+00 2025-08-19 21:31:24.694901+00 f t in_progress_vet 423 1208 +738 2025-08-19 21:31:43.719941+00 2025-08-19 21:31:43.719952+00 f t pending 425 \N +739 2025-08-19 21:38:12.916623+00 2025-08-19 21:38:12.916633+00 f t in_progress_vet 425 1208 +740 2025-08-20 04:24:43.907523+00 2025-08-20 04:24:43.907534+00 f t pending 426 \N +741 2025-08-20 12:20:44.328635+00 2025-08-20 12:20:44.328647+00 f t in_progress_vet 426 1208 +742 2025-08-20 13:06:03.553165+00 2025-08-20 13:06:03.55318+00 f t pending 427 \N +743 2025-08-20 13:23:32.096869+00 2025-08-20 13:23:32.096883+00 f t in_progress_vet 427 1208 +744 2025-08-20 21:52:16.298952+00 2025-08-20 21:52:16.298963+00 f t pending 428 \N +745 2025-08-20 21:55:23.728891+00 2025-08-20 21:55:23.728901+00 f t in_progress_vet 428 114 +746 2025-08-20 23:27:10.056894+00 2025-08-20 23:27:10.056911+00 f t rejected D-Emergencia 428 114 +747 2025-08-21 00:29:12.616912+00 2025-08-21 00:29:12.616924+00 f t pending 429 \N +748 2025-08-21 12:37:18.790006+00 2025-08-21 12:37:18.790019+00 f t in_progress_vet 429 1208 +749 2025-08-21 12:46:34.72239+00 2025-08-21 12:46:34.722404+00 f t pending 430 \N +750 2025-08-21 13:19:09.647182+00 2025-08-21 13:19:09.647194+00 f t in_progress_vet 430 1208 +751 2025-08-22 15:53:25.863881+00 2025-08-22 15:53:25.863895+00 f t pending 431 \N +752 2025-08-22 15:56:50.963892+00 2025-08-22 15:56:50.963906+00 f t in_progress_vet 431 1583 +753 2025-08-22 17:35:41.072042+00 2025-08-22 17:35:41.072057+00 f t in_progress_pay 431 \N +754 2025-08-22 17:36:21.970994+00 2025-08-22 17:36:21.971004+00 f t coordinated Turno confirmado para 2025-08-27 a las 11:00 431 1583 +755 2025-08-22 17:36:36.22727+00 2025-08-22 17:36:36.227283+00 f t payed 431 1583 +756 2025-08-22 21:18:27.811765+00 2025-08-22 21:18:27.81178+00 f t pending 432 \N +757 2025-08-22 21:22:02.302342+00 2025-08-22 21:22:02.302356+00 f t in_progress_vet 432 1583 +758 2025-08-22 21:38:15.172171+00 2025-08-22 21:38:15.172186+00 f t pending 433 \N +759 2025-08-22 22:01:34.644359+00 2025-08-22 22:01:34.644375+00 f t in_progress_vet 433 113 +760 2025-08-22 22:22:44.435216+00 2025-08-22 22:22:44.43523+00 f t rejected D-Medios de pago 432 1583 +761 2025-08-23 02:51:12.829739+00 2025-08-23 02:51:12.829749+00 f t pending 434 \N +762 2025-08-23 12:07:31.796628+00 2025-08-23 12:07:31.796641+00 f t in_progress_vet 434 1208 +763 2025-08-23 14:00:57.1343+00 2025-08-23 14:00:57.13431+00 f t payed 434 1208 +764 2025-08-23 14:05:34.902449+00 2025-08-23 14:05:34.902463+00 f t pending 435 \N +765 2025-08-23 14:14:09.473974+00 2025-08-23 14:14:09.473985+00 f t in_progress_vet 435 1208 +766 2025-08-23 14:44:45.347895+00 2025-08-23 14:44:45.347905+00 f t pending 436 \N +767 2025-08-23 14:45:23.848714+00 2025-08-23 14:45:23.848727+00 f t in_progress_vet 436 1208 +768 2025-08-23 15:22:06.766353+00 2025-08-23 15:22:06.766367+00 f t rejected D-Averiguando / Desconocido 435 1208 +769 2025-08-23 16:05:36.796967+00 2025-08-23 16:05:36.796982+00 f t rejected D-Derivado 436 1208 +770 2025-08-23 19:37:16.134684+00 2025-08-23 19:37:16.134695+00 f t pending 437 \N +771 2025-08-23 19:38:59.047343+00 2025-08-23 19:38:59.047355+00 f t in_progress_vet 437 1208 +772 2025-08-23 19:54:12.175919+00 2025-08-23 19:54:12.175928+00 f t payed 437 1208 +773 2025-08-23 20:41:28.526858+00 2025-08-23 20:41:28.526869+00 f t pending 438 \N +774 2025-08-24 01:11:03.140274+00 2025-08-24 01:11:03.140291+00 f t pending 439 \N +775 2025-08-24 10:09:22.925637+00 2025-08-24 10:09:22.92565+00 f t pending 440 \N +776 2025-08-24 11:27:26.381006+00 2025-08-24 11:27:26.381021+00 f t pending 441 \N +777 2025-08-24 12:37:19.718975+00 2025-08-24 12:37:19.718984+00 f t in_progress_vet 438 114 +778 2025-08-24 12:37:36.812476+00 2025-08-24 12:37:36.812485+00 f t rejected D-Emergencia 438 114 +779 2025-08-24 12:39:27.047257+00 2025-08-24 12:39:27.047269+00 f t pending 442 \N +780 2025-08-24 12:40:11.606234+00 2025-08-24 12:40:11.606246+00 f t in_progress_vet 442 114 +781 2025-08-24 13:22:16.870207+00 2025-08-24 13:22:16.870219+00 f t in_progress_vet 439 114 +782 2025-08-24 13:22:30.511368+00 2025-08-24 13:22:30.511383+00 f t in_progress_vet 440 114 +783 2025-08-24 13:58:53.429413+00 2025-08-24 13:58:53.429424+00 f t in_progress_vet 441 114 +784 2025-08-24 14:07:07.250956+00 2025-08-24 14:07:07.25097+00 f t pending 443 \N +785 2025-08-24 14:10:03.925196+00 2025-08-24 14:10:03.925211+00 f t rejected D-Emergencia 440 114 +786 2025-08-24 14:10:23.98751+00 2025-08-24 14:10:23.987519+00 f t in_progress_vet 443 114 +787 2025-08-24 15:46:33.575092+00 2025-08-24 15:46:33.575103+00 f t pending 444 \N +788 2025-08-24 17:41:56.533141+00 2025-08-24 17:41:56.533151+00 f t in_progress_vet 444 114 +789 2025-08-24 17:42:08.264667+00 2025-08-24 17:42:08.264676+00 f t rejected D-Emergencia 444 114 +790 2025-08-24 19:27:28.377423+00 2025-08-24 19:27:28.377434+00 f t pending 445 \N +791 2025-08-25 00:01:01.09364+00 2025-08-25 00:01:01.093658+00 f t pending 446 \N +792 2025-08-25 03:14:08.173665+00 2025-08-25 03:14:08.173677+00 f t pending 447 \N +793 2025-08-25 12:30:32.468427+00 2025-08-25 12:30:32.468442+00 f t in_progress_vet 445 1208 +794 2025-08-25 12:46:10.163588+00 2025-08-25 12:46:10.1636+00 f t in_progress_vet 446 1208 +795 2025-08-25 12:56:31.571745+00 2025-08-25 12:56:31.571756+00 f t in_progress_vet 447 1208 +796 2025-08-25 13:33:13.181496+00 2025-08-25 13:33:13.181509+00 f t pending 448 \N +797 2025-08-25 13:34:01.41459+00 2025-08-25 13:34:01.4146+00 f t in_progress_vet 448 1208 +798 2025-08-25 13:58:06.434575+00 2025-08-25 13:58:06.434588+00 f t payed 448 1208 +799 2025-08-25 13:58:21.588471+00 2025-08-25 13:58:21.588481+00 f t rejected D-Averiguando / Desconocido 445 1208 +800 2025-08-25 14:14:57.000844+00 2025-08-25 14:14:57.000858+00 f t payed 447 1208 +801 2025-08-25 14:55:46.60866+00 2025-08-25 14:55:46.608692+00 f t pending 449 \N +802 2025-08-25 15:23:01.386359+00 2025-08-25 15:23:01.386369+00 f t in_progress_vet 449 1583 +803 2025-08-25 15:42:19.233389+00 2025-08-25 15:42:19.233401+00 f t coordinated Turno confirmado para 2025-08-25 a las 19:00 449 1583 +804 2025-08-25 15:46:20.124732+00 2025-08-25 15:46:20.124749+00 f t in_progress_pay 449 \N +805 2025-08-25 15:50:44.834585+00 2025-08-25 15:50:44.834599+00 f t rejected D-Derivado 446 1208 +806 2025-08-25 16:42:00.855344+00 2025-08-25 16:42:00.855359+00 f t pending 450 \N +807 2025-08-25 16:45:04.725845+00 2025-08-25 16:45:04.727789+00 f t in_progress_vet 450 1583 +808 2025-08-25 20:54:00.912169+00 2025-08-25 20:54:00.91218+00 f t rejected D-Emergencia 450 1583 +809 2025-08-26 01:31:51.069307+00 2025-08-26 01:31:51.06932+00 f t pending 451 \N +810 2025-08-26 03:40:06.286501+00 2025-08-26 03:40:06.286516+00 f t pending 452 \N +811 2025-08-26 04:04:12.839287+00 2025-08-26 04:04:12.839297+00 f t pending 453 \N +812 2025-08-26 12:14:31.503592+00 2025-08-26 12:14:31.503607+00 f t in_progress_vet 451 1208 +813 2025-08-26 12:14:44.764489+00 2025-08-26 12:14:44.764504+00 f t in_progress_vet 452 1208 +814 2025-08-26 12:14:57.808646+00 2025-08-26 12:14:57.808657+00 f t in_progress_vet 453 1208 +815 2025-08-26 13:13:09.820615+00 2025-08-26 13:13:09.820626+00 f t pending 454 \N +816 2025-08-26 13:16:48.947037+00 2025-08-26 13:16:48.947046+00 f t in_progress_vet 454 1208 +817 2025-08-26 13:37:33.288138+00 2025-08-26 13:37:33.288148+00 f t payed 452 1208 +818 2025-08-26 14:08:18.975621+00 2025-08-26 14:08:18.975633+00 f t payed 454 1208 +819 2025-08-27 16:15:00.704691+00 2025-08-27 16:15:00.704708+00 f t pending 455 \N +820 2025-08-27 16:17:28.385687+00 2025-08-27 16:17:28.385701+00 f t in_progress_vet 455 1583 +821 2025-08-27 16:41:16.463073+00 2025-08-27 16:41:16.463087+00 f t in_progress_pay 455 \N +822 2025-08-28 13:30:08.960184+00 2025-08-28 13:30:08.960202+00 f t pending 456 \N +823 2025-08-28 13:34:44.844168+00 2025-08-28 13:34:44.84418+00 f t in_progress_vet 456 1208 +824 2025-08-28 14:09:15.331097+00 2025-08-28 14:09:15.33111+00 f t pending 457 \N +825 2025-08-28 14:10:20.228455+00 2025-08-28 14:10:20.228468+00 f t in_progress_vet 457 1208 +826 2025-08-28 14:11:39.322832+00 2025-08-28 14:11:39.322854+00 f t coordinated Turno confirmado para 2025-08-28 a las 15:00 457 1208 +827 2025-08-28 14:42:58.667633+00 2025-08-28 14:42:58.667647+00 f t in_progress_pay 456 \N +828 2025-08-28 14:44:14.679967+00 2025-08-28 14:44:14.679976+00 f t coordinated Turno confirmado para 2025-08-29 a las 09:00 456 1208 +829 2025-08-28 14:45:47.502048+00 2025-08-28 14:45:47.502059+00 f t payed 456 1208 +830 2025-08-28 14:53:44.676594+00 2025-08-28 14:53:44.676606+00 f t coordinated Turno confirmado para 2025-08-29 a las 09:00 456 1208 +831 2025-08-28 14:53:44.724011+00 2025-08-28 14:53:44.724022+00 f t confirmado 456 \N +832 2025-08-28 14:55:39.660349+00 2025-08-28 14:55:39.660359+00 f t in_progress_pay 457 \N +833 2025-08-28 15:01:07.842394+00 2025-08-28 15:01:07.842407+00 f t payed 457 1208 +834 2025-08-28 15:01:31.895105+00 2025-08-28 15:01:31.895118+00 f t confirmado 457 \N +835 2025-08-28 15:01:31.9918+00 2025-08-28 15:01:31.991811+00 f t confirmado 457 \N +836 2025-08-28 15:01:31.836976+00 2025-08-28 15:01:31.836989+00 f t coordinated Turno confirmado para 2025-08-28 a las 19:00 457 1208 +837 2025-08-28 15:43:10.768274+00 2025-08-28 15:43:10.768288+00 f t pending 458 \N +838 2025-08-28 15:44:49.432295+00 2025-08-28 15:44:49.432308+00 f t coordinated Turno confirmado para 2025-08-28 a las 19:00 458 1583 +839 2025-08-28 15:45:08.219425+00 2025-08-28 15:45:08.219436+00 f t in_progress_pay 458 \N +840 2025-08-28 15:46:16.136495+00 2025-08-28 15:46:16.136503+00 f t payed 458 1583 +841 2025-08-28 16:00:37.582841+00 2025-08-28 16:00:37.582854+00 f t coordinated Turno confirmado para 2025-08-28 a las 19:00 458 1583 +842 2025-08-28 16:00:37.624399+00 2025-08-28 16:00:37.624417+00 f t confirmado 458 \N +843 2025-08-28 16:00:54.626509+00 2025-08-28 16:00:54.626519+00 f t in_progress_pay 458 \N +844 2025-08-28 17:46:42.583886+00 2025-08-28 17:46:42.583897+00 f t pending 459 \N +845 2025-08-28 20:09:48.698878+00 2025-08-28 20:09:48.698894+00 f t pending 460 \N +846 2025-08-28 20:10:54.843509+00 2025-08-28 20:10:54.843519+00 f t in_progress_vet 460 114 +847 2025-08-28 20:11:04.894865+00 2025-08-28 20:11:04.89488+00 f t in_progress_vet 460 1583 +848 2025-08-28 21:39:34.54856+00 2025-08-28 21:39:34.548572+00 f t pending 461 \N +849 2025-08-28 21:40:06.686078+00 2025-08-28 21:40:06.686092+00 f t in_progress_vet 461 1583 +850 2025-08-28 21:40:55.055436+00 2025-08-28 21:40:55.055445+00 f t in_progress_pay 461 \N +851 2025-08-28 21:42:10.134973+00 2025-08-28 21:42:10.134983+00 f t coordinated Turno confirmado para 2025-08-29 a las 08:00 461 1583 +852 2025-08-29 10:49:09.466906+00 2025-08-29 10:49:09.466918+00 f t pending 462 \N +853 2025-08-29 11:31:59.335069+00 2025-08-29 11:31:59.335083+00 f t pending 463 \N +854 2025-08-29 12:26:41.953466+00 2025-08-29 12:26:41.953479+00 f t in_progress_vet 463 114 +855 2025-08-29 15:41:10.506435+00 2025-08-29 15:41:10.506446+00 f t rejected D-Emergencia 462 114 +856 2025-08-29 16:09:44.224905+00 2025-08-29 16:09:44.224914+00 f t pending 464 \N +857 2025-08-29 16:10:13.363513+00 2025-08-29 16:10:13.36353+00 f t in_progress_vet 464 114 +858 2025-08-30 10:46:52.298134+00 2025-08-30 10:46:52.298146+00 f t pending 465 \N +859 2025-08-30 12:05:42.438816+00 2025-08-30 12:05:42.438829+00 f t in_progress_vet 465 1208 +860 2025-08-30 12:46:55.639836+00 2025-08-30 12:46:55.639848+00 f t in_progress_pay 465 \N +861 2025-08-30 12:53:22.229961+00 2025-08-30 12:53:22.229971+00 f t payed 465 1208 +862 2025-08-30 12:53:49.354857+00 2025-08-30 12:53:49.35487+00 f t coordinated Turno confirmado para 2025-08-30 a las 10:30 465 1208 +863 2025-08-30 12:53:49.460652+00 2025-08-30 12:53:49.460662+00 f t confirmado 465 \N +864 2025-08-30 16:25:06.478534+00 2025-08-30 16:25:06.478545+00 f t pending 466 \N +865 2025-08-30 16:37:02.508528+00 2025-08-30 16:37:02.508543+00 f t in_progress_vet 466 1208 +866 2025-08-30 16:45:10.132355+00 2025-08-30 16:45:10.132366+00 f t payed 466 1208 +867 2025-08-30 16:45:27.536345+00 2025-08-30 16:45:27.536359+00 f t coordinated Turno confirmado para 2025-08-30 a las 17:00 466 1208 +868 2025-08-30 16:45:27.559387+00 2025-08-30 16:45:27.559396+00 f t confirmado 466 \N +869 2025-08-30 16:56:06.454543+00 2025-08-30 16:56:06.454558+00 f t pending 467 \N +870 2025-08-30 16:58:41.311256+00 2025-08-30 16:58:41.311266+00 f t in_progress_vet 467 1208 +871 2025-08-30 17:39:11.809888+00 2025-08-30 17:39:11.809899+00 f t pending 468 \N +872 2025-08-30 18:04:36.614017+00 2025-08-30 18:04:36.614028+00 f t pending 469 \N +873 2025-08-30 18:34:37.293131+00 2025-08-30 18:34:37.293141+00 f t in_progress_vet 468 1208 +874 2025-08-30 18:34:46.159582+00 2025-08-30 18:34:46.159592+00 f t in_progress_vet 469 1208 +875 2025-08-30 19:05:40.822698+00 2025-08-30 19:05:40.822709+00 f t pending 470 \N +876 2025-08-30 19:05:46.175102+00 2025-08-30 19:05:46.175116+00 f t in_progress_vet 470 1208 +877 2025-08-30 19:09:11.519241+00 2025-08-30 19:09:11.51925+00 f t payed 468 1208 +878 2025-08-30 19:20:52.24685+00 2025-08-30 19:20:52.246861+00 f t payed 470 1208 +879 2025-08-30 19:21:05.325683+00 2025-08-30 19:21:05.325696+00 f t coordinated Turno confirmado para 2025-08-30 a las 19:00 470 1208 +880 2025-08-30 19:21:05.376638+00 2025-08-30 19:21:05.376652+00 f t confirmado 470 \N +881 2025-08-30 19:22:08.986957+00 2025-08-30 19:22:08.986971+00 f t pending 471 \N +882 2025-08-30 19:22:45.64434+00 2025-08-30 19:22:45.644349+00 f t payed 471 1208 +883 2025-08-30 19:23:23.746456+00 2025-08-30 19:23:23.746465+00 f t coordinated Turno confirmado para 2025-08-30 a las 19:30 471 1208 +884 2025-08-30 19:23:23.792933+00 2025-08-30 19:23:23.792947+00 f t confirmado 471 \N +885 2025-08-30 19:42:38.68142+00 2025-08-30 19:42:38.681431+00 f t pending 472 \N +886 2025-08-30 19:42:41.997598+00 2025-08-30 19:42:41.997607+00 f t in_progress_vet 472 1208 +887 2025-08-30 19:46:53.846906+00 2025-08-30 19:46:53.846916+00 f t in_progress_pay 467 \N +888 2025-08-30 19:52:10.671055+00 2025-08-30 19:52:10.671064+00 f t in_progress_pay 472 \N +889 2025-08-30 20:22:34.806754+00 2025-08-30 20:22:34.807195+00 f t payed 453 1208 +890 2025-08-30 20:26:47.128266+00 2025-08-30 20:26:47.129873+00 f t payed 472 1208 +891 2025-08-30 20:26:50.709765+00 2025-08-30 20:26:50.71099+00 f t payed 472 1208 +892 2025-08-30 20:26:52.79264+00 2025-08-30 20:26:52.793551+00 f t payed 472 1208 +893 2025-08-30 20:46:06.364823+00 2025-08-30 20:46:06.364835+00 f t payed 467 1208 +894 2025-08-30 20:53:33.440475+00 2025-08-30 20:53:33.440485+00 f t payed 469 1208 +895 2025-08-30 20:53:47.523451+00 2025-08-30 20:53:47.52346+00 f t coordinated Turno confirmado para 2025-08-31 a las 09:00 469 1208 +896 2025-08-30 20:53:47.647014+00 2025-08-30 20:53:47.647029+00 f t confirmado 469 \N +897 2025-08-31 15:39:48.866731+00 2025-08-31 15:39:48.866747+00 f t pending 473 \N +898 2025-08-31 15:40:04.756576+00 2025-08-31 15:40:04.756594+00 f t pending 474 \N +899 2025-08-31 15:40:30.174079+00 2025-08-31 15:40:30.174088+00 f t in_progress_vet 473 114 +900 2025-08-31 15:40:38.742463+00 2025-08-31 15:40:38.742472+00 f t in_progress_vet 474 114 +901 2025-08-31 15:51:16.979444+00 2025-08-31 15:51:16.979454+00 f t pending 475 \N +902 2025-08-31 15:51:51.135721+00 2025-08-31 15:51:51.13573+00 f t in_progress_vet 475 114 +903 2025-08-31 17:47:29.337296+00 2025-08-31 17:47:29.33731+00 f t pending 476 \N +904 2025-08-31 17:52:05.701402+00 2025-08-31 17:52:05.701411+00 f t rejected D-Emergencia 474 114 +905 2025-08-31 17:52:26.902874+00 2025-08-31 17:52:26.902884+00 f t rejected D-Provincia 473 114 +906 2025-08-31 17:52:40.363785+00 2025-08-31 17:52:40.363793+00 f t in_progress_vet 476 114 +907 2025-08-31 19:02:15.58733+00 2025-08-31 19:02:15.587341+00 f t pending 477 \N +908 2025-08-31 19:57:26.669014+00 2025-08-31 19:57:26.669024+00 f t pending 478 \N +909 2025-08-31 19:57:30.419278+00 2025-08-31 19:57:30.419291+00 f t in_progress_vet 478 114 +910 2025-08-31 20:32:26.164632+00 2025-08-31 20:32:26.164641+00 f t in_progress_vet 477 114 +911 2025-08-31 20:33:14.548475+00 2025-08-31 20:33:14.548486+00 f t coordinated Turno confirmado para 2025-08-31 a las 16:00 475 114 +912 2025-08-31 20:34:08.000753+00 2025-08-31 20:34:08.000768+00 f t payed 475 114 +913 2025-08-31 20:37:12.551094+00 2025-08-31 20:37:12.5519+00 f t pending 479 \N +914 2025-08-31 21:15:31.547752+00 2025-08-31 21:15:31.547768+00 f t pending 480 \N +915 2025-09-01 15:58:00.43388+00 2025-09-01 15:58:00.433902+00 f t pending 481 \N +916 2025-09-01 17:00:24.66384+00 2025-09-01 17:00:24.663856+00 f t pending 482 \N +917 2025-09-01 17:09:11.738673+00 2025-09-01 17:09:11.738684+00 f t in_progress_vet 482 114 +918 2025-09-01 19:39:29.209585+00 2025-09-01 19:39:29.209601+00 f t pending 483 \N +919 2025-09-01 19:40:40.785154+00 2025-09-01 19:40:40.785166+00 f t in_progress_vet 483 114 +920 2025-09-01 20:00:51.945271+00 2025-09-01 20:00:51.945287+00 f t pending 484 \N +921 2025-09-01 20:05:58.152111+00 2025-09-01 20:05:58.15212+00 f t coordinated Turno confirmado para 2025-09-09 a las 19:30 481 1583 +922 2025-09-01 20:06:08.604452+00 2025-09-01 20:06:08.604463+00 f t in_progress_vet 484 114 +923 2025-09-01 20:06:34.010546+00 2025-09-01 20:06:34.010558+00 f t payed 481 1583 +924 2025-09-01 20:50:32.959861+00 2025-09-01 20:50:32.959872+00 f t pending 485 \N +925 2025-09-01 21:10:39.64891+00 2025-09-01 21:10:39.64892+00 f t in_progress_vet 485 114 +926 2025-09-01 21:10:54.786683+00 2025-09-01 21:10:54.786693+00 f t rejected D-Provincia 485 114 +927 2025-09-01 23:18:35.740936+00 2025-09-01 23:18:35.740947+00 f t pending 486 \N +928 2025-09-02 00:01:24.148176+00 2025-09-02 00:01:24.148191+00 f t pending 487 \N +929 2025-09-02 00:03:33.334423+00 2025-09-02 00:03:33.334433+00 f t rejected D-Emergencia 483 114 +930 2025-09-02 12:57:40.344798+00 2025-09-02 12:57:40.344813+00 f t in_progress_vet 486 1208 +931 2025-09-02 12:57:48.954803+00 2025-09-02 12:57:48.954818+00 f t in_progress_vet 487 1208 +932 2025-09-02 14:41:14.616483+00 2025-09-02 14:41:14.616495+00 f t pending 488 \N +933 2025-09-02 14:46:23.648308+00 2025-09-02 14:46:23.648317+00 f t in_progress_vet 488 1208 +934 2025-09-02 15:03:06.529436+00 2025-09-02 15:03:06.529448+00 f t pending 489 \N +935 2025-09-02 15:05:41.314493+00 2025-09-02 15:05:41.314507+00 f t in_progress_vet 489 1208 +936 2025-09-02 15:14:10.134177+00 2025-09-02 15:14:10.134188+00 f t pending 490 \N +937 2025-09-02 15:14:13.421041+00 2025-09-02 15:14:13.421054+00 f t in_progress_vet 490 1208 +938 2025-09-02 15:14:41.823747+00 2025-09-02 15:14:41.823759+00 f t coordinated Turno confirmado para 2025-09-03 a las 14:00 490 1208 +939 2025-09-02 15:15:22.671354+00 2025-09-02 15:15:22.671368+00 f t payed 490 1208 +940 2025-09-02 15:16:46.470713+00 2025-09-02 15:16:46.470728+00 f t coordinated Turno confirmado para 2025-09-03 a las 14:00 490 1208 +941 2025-09-02 15:16:46.519994+00 2025-09-02 15:16:46.520008+00 f t confirmado 490 \N +942 2025-09-02 15:38:23.981278+00 2025-09-02 15:38:23.981289+00 f t pending 491 \N +943 2025-09-02 15:45:10.111246+00 2025-09-02 15:45:10.111256+00 f t in_progress_vet 491 1208 +944 2025-09-02 16:21:08.421794+00 2025-09-02 16:21:08.42181+00 f t pending 492 \N +945 2025-09-02 16:21:11.931598+00 2025-09-02 16:21:11.931607+00 f t in_progress_vet 492 1208 +946 2025-09-02 16:51:59.17983+00 2025-09-02 16:51:59.179845+00 f t rejected D-Averiguando / Desconocido 491 1208 +947 2025-09-02 16:52:17.985217+00 2025-09-02 16:52:17.985228+00 f t rejected D-Averiguando / Desconocido 489 1208 +948 2025-09-02 16:57:02.372303+00 2025-09-02 16:57:02.372317+00 f t payed 486 1208 +949 2025-09-02 16:57:33.111686+00 2025-09-02 16:57:33.111704+00 f t coordinated Turno confirmado para 2025-09-02 a las 17:00 486 1208 +950 2025-09-02 16:57:33.154802+00 2025-09-02 16:57:33.154817+00 f t confirmado 486 \N +951 2025-09-02 17:41:08.762209+00 2025-09-02 17:41:08.762225+00 f t pending 493 \N +952 2025-09-02 17:41:12.851949+00 2025-09-02 17:41:12.851959+00 f t in_progress_vet 493 1208 +953 2025-09-02 17:44:03.486713+00 2025-09-02 17:44:03.486727+00 f t payed 493 1208 +954 2025-09-02 17:44:25.166662+00 2025-09-02 17:44:25.166673+00 f t coordinated Turno confirmado para 2025-09-09 a las 20:00 493 1208 +955 2025-09-02 17:44:25.208775+00 2025-09-02 17:44:25.208786+00 f t confirmado 493 \N +956 2025-09-02 18:40:23.444015+00 2025-09-02 18:40:23.444026+00 f t pending 494 \N +957 2025-09-02 19:05:58.580683+00 2025-09-02 19:05:58.580696+00 f t pending 495 \N +958 2025-09-02 19:16:29.265647+00 2025-09-02 19:16:29.265656+00 f t in_progress_vet 495 1583 +959 2025-09-02 19:16:58.464902+00 2025-09-02 19:16:58.464915+00 f t in_progress_vet 495 1583 +960 2025-09-02 19:56:07.354845+00 2025-09-02 19:56:07.354857+00 f t pending 496 \N +961 2025-09-02 19:56:25.787162+00 2025-09-02 19:56:25.787173+00 f t in_progress_vet 496 1208 +962 2025-09-02 19:57:44.263473+00 2025-09-02 19:57:44.263483+00 f t payed 496 1208 +963 2025-09-02 19:58:14.115421+00 2025-09-02 19:58:14.11543+00 f t confirmado 496 \N +964 2025-09-02 19:58:14.125989+00 2025-09-02 19:58:14.126003+00 f t confirmado 496 \N +965 2025-09-02 19:58:14.081253+00 2025-09-02 19:58:14.081267+00 f t coordinated Turno confirmado para 2025-09-02 a las 21:00 496 1208 +966 2025-09-02 20:16:15.592305+00 2025-09-02 20:16:15.592321+00 f t coordinated Turno confirmado para 2025-09-02 a las 20:00 495 1583 +967 2025-09-02 20:16:25.405722+00 2025-09-02 20:16:25.405736+00 f t in_progress_pay 495 \N +968 2025-09-02 20:16:59.095872+00 2025-09-02 20:16:59.095886+00 f t payed 495 1583 +969 2025-09-02 20:20:22.76324+00 2025-09-02 20:20:22.763252+00 f t confirmado 495 \N +970 2025-09-02 20:20:22.786035+00 2025-09-02 20:20:22.786049+00 f t confirmado 495 \N +971 2025-09-02 20:20:22.719998+00 2025-09-02 20:20:22.720012+00 f t coordinated Turno confirmado para 2025-09-02 a las 20:00 495 110 +972 2025-09-02 22:26:33.109832+00 2025-09-02 22:26:33.109843+00 f t pending 497 \N +973 2025-09-02 22:30:28.894811+00 2025-09-02 22:30:28.894824+00 f t in_progress_vet 497 113 +974 2025-09-02 23:09:37.270956+00 2025-09-02 23:09:37.270977+00 f t pending 498 \N +975 2025-09-02 23:25:52.423674+00 2025-09-02 23:25:52.423685+00 f t pending 499 \N +976 2025-09-02 23:27:35.34305+00 2025-09-02 23:27:35.34306+00 f t in_progress_vet 498 113 +977 2025-09-02 23:41:12.893853+00 2025-09-02 23:41:12.893863+00 f t pending 500 \N +978 2025-09-03 00:16:44.639419+00 2025-09-03 00:16:44.639428+00 f t in_progress_vet 499 113 +979 2025-09-03 00:34:54.220484+00 2025-09-03 00:34:54.220498+00 f t pending 501 \N +980 2025-09-03 00:47:41.093802+00 2025-09-03 00:47:41.093813+00 f t payed 499 113 +981 2025-09-03 10:59:23.317775+00 2025-09-03 10:59:23.317788+00 f t pending 502 \N +982 2025-09-03 12:31:16.109181+00 2025-09-03 12:31:16.109195+00 f t in_progress_vet 500 1208 +983 2025-09-03 12:33:02.528889+00 2025-09-03 12:33:02.5289+00 f t in_progress_vet 501 1208 +984 2025-09-03 12:35:05.350843+00 2025-09-03 12:35:05.350855+00 f t in_progress_vet 502 1208 +985 2025-09-03 12:36:44.403076+00 2025-09-03 12:36:44.403085+00 f t in_progress_vet 502 1208 +986 2025-09-03 13:19:36.492742+00 2025-09-03 13:19:36.492753+00 f t in_progress_pay 501 \N +987 2025-09-03 13:26:08.70915+00 2025-09-03 13:26:08.709162+00 f t pending 503 \N +988 2025-09-03 13:27:38.71885+00 2025-09-03 13:27:38.71886+00 f t in_progress_vet 503 1208 +989 2025-09-03 13:47:26.703574+00 2025-09-03 13:47:26.703587+00 f t payed 501 1208 +990 2025-09-03 13:47:49.038203+00 2025-09-03 13:47:49.038213+00 f t coordinated Turno confirmado para 2025-09-15 a las 13:30 501 1208 +991 2025-09-03 13:47:49.073077+00 2025-09-03 13:47:49.073092+00 f t confirmado 501 \N +992 2025-09-03 13:59:30.347807+00 2025-09-03 13:59:30.347821+00 f t in_progress_pay 503 \N +993 2025-09-03 14:00:18.153374+00 2025-09-03 14:00:18.153385+00 f t pending 504 \N +994 2025-09-03 14:01:40.128566+00 2025-09-03 14:01:40.128575+00 f t in_progress_vet 504 1208 +995 2025-09-03 14:03:13.315671+00 2025-09-03 14:03:13.315681+00 f t payed 504 1208 +996 2025-09-03 14:03:58.421111+00 2025-09-03 14:03:58.421121+00 f t coordinated Turno confirmado para 2025-09-03 a las 18:00 504 1208 +997 2025-09-03 14:03:58.460077+00 2025-09-03 14:03:58.460091+00 f t confirmado 504 \N +998 2025-09-03 14:09:09.256397+00 2025-09-03 14:09:09.256413+00 f t payed 503 1208 +999 2025-09-03 14:17:35.996321+00 2025-09-03 14:17:35.996329+00 f t coordinated Turno confirmado para 2025-09-03 a las 12:00 503 1208 +1000 2025-09-03 14:17:36.040621+00 2025-09-03 14:17:36.040638+00 f t confirmado 503 \N +1001 2025-09-03 14:24:20.305805+00 2025-09-03 14:24:20.305815+00 f t rejected D-Emergencia 502 1208 +1002 2025-09-03 15:25:11.558815+00 2025-09-03 15:25:11.55883+00 f t pending 505 \N +1003 2025-09-03 15:27:56.829975+00 2025-09-03 15:27:56.829983+00 f t in_progress_vet 505 1208 +1004 2025-09-03 16:51:58.68297+00 2025-09-03 16:51:58.68298+00 f t pending 506 \N +1005 2025-09-03 16:52:02.523358+00 2025-09-03 16:52:02.523372+00 f t in_progress_vet 506 1208 +1006 2025-09-03 17:08:08.080947+00 2025-09-03 17:08:08.080961+00 f t rejected D-Averiguando / Desconocido 500 1208 +1007 2025-09-03 17:08:42.945356+00 2025-09-03 17:08:42.945365+00 f t rejected D-Averiguando / Desconocido 505 1208 +1008 2025-09-03 17:55:46.3008+00 2025-09-03 17:55:46.300814+00 f t pending 507 \N +1009 2025-09-03 17:56:45.025947+00 2025-09-03 17:56:45.025956+00 f t in_progress_vet 507 1208 +1010 2025-09-03 22:13:44.519634+00 2025-09-03 22:13:44.519647+00 f t pending 508 \N +1011 2025-09-03 22:49:49.405891+00 2025-09-03 22:49:49.405899+00 f t in_progress_vet 508 113 +1012 2025-09-03 22:58:13.933899+00 2025-09-03 22:58:13.933911+00 f t pending 509 \N +1013 2025-09-04 11:37:07.168142+00 2025-09-04 11:37:07.168159+00 f t pending 510 \N +1014 2025-09-04 12:12:50.234344+00 2025-09-04 12:12:50.234354+00 f t in_progress_vet 509 1208 +1015 2025-09-04 12:16:56.313253+00 2025-09-04 12:16:56.313267+00 f t in_progress_vet 510 1208 +1016 2025-09-04 13:15:54.239555+00 2025-09-04 13:15:54.239569+00 f t pending 511 \N +1017 2025-09-04 13:47:20.398235+00 2025-09-04 13:47:20.398246+00 f t rejected D-Precio 508 1208 +1018 2025-09-04 13:47:38.905646+00 2025-09-04 13:47:38.905656+00 f t rejected D-Averiguando / Desconocido 509 1208 +1019 2025-09-04 13:47:57.366632+00 2025-09-04 13:47:57.366641+00 f t rejected D-Tiempo de respuestas 510 1208 +1020 2025-09-04 13:48:22.741482+00 2025-09-04 13:48:22.741492+00 f t in_progress_vet 511 1208 +1021 2025-09-04 14:14:06.183062+00 2025-09-04 14:14:06.183072+00 f t pending 512 \N +1022 2025-09-04 14:14:10.143014+00 2025-09-04 14:14:10.143023+00 f t in_progress_vet 512 1208 +1023 2025-09-04 14:56:29.27795+00 2025-09-04 14:56:29.277961+00 f t pending 513 \N +1024 2025-09-04 14:56:42.519357+00 2025-09-04 14:56:42.519369+00 f t in_progress_vet 513 1208 +1025 2025-09-04 15:19:41.865295+00 2025-09-04 15:19:41.86531+00 f t pending 514 \N +1026 2025-09-04 15:23:30.879178+00 2025-09-04 15:23:30.879188+00 f t in_progress_vet 514 1583 +1027 2025-09-04 15:25:50.214209+00 2025-09-04 15:25:50.214222+00 f t pending 515 \N +1028 2025-09-04 15:25:56.408417+00 2025-09-04 15:25:56.408427+00 f t in_progress_vet 515 1208 +1029 2025-09-04 15:29:53.69992+00 2025-09-04 15:29:53.699931+00 f t payed 515 1208 +1030 2025-09-04 15:30:27.698091+00 2025-09-04 15:30:27.6981+00 f t coordinated Turno confirmado para 2025-09-09 a las 20:30 515 1208 +1031 2025-09-04 15:30:27.726286+00 2025-09-04 15:30:27.726295+00 f t confirmado 515 \N +1032 2025-09-04 16:56:48.123491+00 2025-09-04 16:56:48.123513+00 f t rejected D-Precio 513 1208 +1033 2025-09-04 19:12:28.852952+00 2025-09-04 19:12:28.852963+00 f t pending 516 \N +1034 2025-09-04 19:19:45.251548+00 2025-09-04 19:19:45.251558+00 f t in_progress_vet 516 1583 +1035 2025-09-04 23:55:49.05942+00 2025-09-04 23:55:49.059432+00 f t pending 517 \N +1036 2025-09-05 00:02:59.482999+00 2025-09-05 00:02:59.483008+00 f t in_progress_vet 517 113 +1037 2025-09-05 12:25:10.557266+00 2025-09-05 12:25:10.55728+00 f t pending 518 \N +1038 2025-09-05 12:27:59.182292+00 2025-09-05 12:27:59.182302+00 f t in_progress_vet 518 1583 +1127 2025-09-10 12:07:15.550192+00 2025-09-10 12:07:15.550201+00 f t in_progress_vet 547 1208 +1039 2025-09-05 12:38:08.513242+00 2025-09-05 12:38:08.513251+00 f t coordinated Turno confirmado para 2025-09-05 a las 11:00 518 1583 +1040 2025-09-05 12:38:19.744847+00 2025-09-05 12:38:19.744857+00 f t in_progress_pay 518 \N +1041 2025-09-05 12:39:02.010139+00 2025-09-05 12:39:02.010154+00 f t payed 518 1583 +1042 2025-09-05 14:09:21.835983+00 2025-09-05 14:09:21.835994+00 f t pending 519 \N +1043 2025-09-05 16:22:22.835882+00 2025-09-05 16:22:22.835891+00 f t in_progress_vet 519 1208 +1044 2025-09-05 19:10:34.517824+00 2025-09-05 19:10:34.517837+00 f t rejected D-Precio 519 1208 +1045 2025-09-05 20:41:00.010313+00 2025-09-05 20:41:00.010327+00 f t pending 520 \N +1046 2025-09-05 20:42:58.228144+00 2025-09-05 20:42:58.228157+00 f t in_progress_vet 520 1208 +1047 2025-09-05 21:25:20.891588+00 2025-09-05 21:25:20.891612+00 f t rejected D-Derivado 520 1208 +1048 2025-09-06 02:32:23.692214+00 2025-09-06 02:32:23.692224+00 f t pending 521 \N +1049 2025-09-06 02:35:27.664376+00 2025-09-06 02:35:27.664387+00 f t pending 522 \N +1050 2025-09-06 02:37:12.426768+00 2025-09-06 02:37:12.426778+00 f t pending 523 \N +1051 2025-09-06 03:52:58.403009+00 2025-09-06 03:52:58.403019+00 f t pending 524 \N +1052 2025-09-06 12:19:12.531913+00 2025-09-06 12:19:12.531924+00 f t in_progress_vet 521 1208 +1053 2025-09-06 12:19:33.068525+00 2025-09-06 12:19:33.068539+00 f t rejected D-Averiguando / Desconocido 522 1208 +1054 2025-09-06 12:19:33.160219+00 2025-09-06 12:19:33.160233+00 f t rejected D-Averiguando / Desconocido 522 1208 +1055 2025-09-06 12:37:42.572379+00 2025-09-06 12:37:42.572388+00 f t in_progress_vet 524 1208 +1056 2025-09-06 12:37:55.2866+00 2025-09-06 12:37:55.286609+00 f t rejected D-Averiguando / Desconocido 523 1208 +1057 2025-09-06 14:22:17.221285+00 2025-09-06 14:22:17.2213+00 f t pending 525 \N +1058 2025-09-06 14:22:42.633453+00 2025-09-06 14:22:42.633465+00 f t in_progress_vet 525 1208 +1059 2025-09-06 15:12:56.878647+00 2025-09-06 15:12:56.878656+00 f t rejected D-Derivado 521 1208 +1060 2025-09-06 15:29:59.383904+00 2025-09-06 15:29:59.383917+00 f t in_progress_pay 525 \N +1061 2025-09-06 15:46:00.704049+00 2025-09-06 15:46:00.704059+00 f t payed 525 1208 +1062 2025-09-06 15:47:37.066259+00 2025-09-06 15:47:37.066273+00 f t coordinated Turno confirmado para 2025-09-06 a las 15:00 525 1208 +1063 2025-09-06 15:47:37.103319+00 2025-09-06 15:47:37.103333+00 f t confirmado 525 \N +1064 2025-09-06 16:21:36.857878+00 2025-09-06 16:21:36.857889+00 f t pending 526 \N +1065 2025-09-06 16:28:47.6705+00 2025-09-06 16:28:47.670509+00 f t in_progress_vet 526 1208 +1066 2025-09-06 16:36:53.00699+00 2025-09-06 16:36:53.007001+00 f t pending 527 \N +1067 2025-09-06 16:50:31.743496+00 2025-09-06 16:50:31.743511+00 f t in_progress_vet 527 1208 +1068 2025-09-06 17:01:36.19492+00 2025-09-06 17:01:36.194933+00 f t in_progress_pay 526 \N +1069 2025-09-06 17:17:36.521742+00 2025-09-06 17:17:36.521754+00 f t payed 526 1208 +1070 2025-09-06 17:19:15.699836+00 2025-09-06 17:19:15.699847+00 f t coordinated Turno confirmado para 2025-09-06 a las 16:00 526 1208 +1071 2025-09-06 17:19:15.726683+00 2025-09-06 17:19:15.726693+00 f t confirmado 526 \N +1072 2025-09-06 17:21:47.711483+00 2025-09-06 17:21:47.711492+00 f t rejected D-Abandono Bot 527 1208 +1073 2025-09-06 19:01:41.455542+00 2025-09-06 19:01:41.455553+00 f t pending 528 \N +1074 2025-09-06 19:04:01.852846+00 2025-09-06 19:04:01.85286+00 f t in_progress_vet 528 1208 +1075 2025-09-06 19:10:53.275362+00 2025-09-06 19:10:53.275371+00 f t rejected D-Averiguando / Desconocido 524 1208 +1076 2025-09-07 11:06:07.687977+00 2025-09-07 11:06:07.687992+00 f t pending 529 \N +1077 2025-09-07 17:10:14.64373+00 2025-09-07 17:10:14.643746+00 f t pending 530 \N +1078 2025-09-07 17:12:20.934601+00 2025-09-07 17:12:20.934611+00 f t in_progress_vet 530 114 +1079 2025-09-07 19:07:53.044672+00 2025-09-07 19:07:53.044682+00 f t in_progress_vet 529 114 +1080 2025-09-07 19:08:24.927937+00 2025-09-07 19:08:24.927949+00 f t coordinated Turno confirmado para 2025-09-07 a las 12:00 529 114 +1081 2025-09-07 19:09:06.080375+00 2025-09-07 19:09:06.080385+00 f t payed 529 114 +1082 2025-09-07 19:35:29.086676+00 2025-09-07 19:35:29.086686+00 f t pending 531 \N +1083 2025-09-07 20:12:57.162673+00 2025-09-07 20:12:57.162683+00 f t rejected D-Sin Turno 531 114 +1084 2025-09-08 04:11:41.560377+00 2025-09-08 04:11:41.560388+00 f t pending 532 \N +1085 2025-09-08 10:37:17.671609+00 2025-09-08 10:37:17.671625+00 f t pending 533 \N +1086 2025-09-08 10:52:17.010548+00 2025-09-08 10:52:17.010562+00 f t pending 534 \N +1087 2025-09-08 12:32:58.594917+00 2025-09-08 12:32:58.594931+00 f t in_progress_vet 532 1583 +1088 2025-09-08 12:40:29.315006+00 2025-09-08 12:40:29.315017+00 f t in_progress_vet 533 1583 +1089 2025-09-08 12:44:08.596392+00 2025-09-08 12:44:08.596401+00 f t in_progress_vet 534 1583 +1090 2025-09-08 13:38:07.431932+00 2025-09-08 13:38:07.431942+00 f t pending 535 \N +1091 2025-09-08 13:53:13.106956+00 2025-09-08 13:53:13.10697+00 f t in_progress_vet 535 1583 +1092 2025-09-08 17:38:25.049456+00 2025-09-08 17:38:25.049471+00 f t pending 536 \N +1093 2025-09-08 17:38:59.976173+00 2025-09-08 17:38:59.976181+00 f t in_progress_vet 536 114 +1094 2025-09-08 19:25:50.419194+00 2025-09-08 19:25:50.419209+00 f t pending 537 \N +1095 2025-09-08 19:26:12.698232+00 2025-09-08 19:26:12.698266+00 f t in_progress_vet 537 1583 +1096 2025-09-08 19:31:56.283186+00 2025-09-08 19:31:56.283201+00 f t coordinated Turno confirmado para 2025-09-08 a las 19:00 537 1583 +1097 2025-09-08 20:03:56.771808+00 2025-09-08 20:03:56.771816+00 f t payed 537 1583 +1098 2025-09-08 23:51:36.464613+00 2025-09-08 23:51:36.464625+00 f t pending 538 \N +1099 2025-09-09 00:19:19.103366+00 2025-09-09 00:19:19.103376+00 f t rejected D-Emergencia 538 114 +1100 2025-09-09 01:05:23.185735+00 2025-09-09 01:05:23.18575+00 f t pending 539 \N +1101 2025-09-09 01:08:43.090632+00 2025-09-09 01:08:43.090644+00 f t pending 540 \N +1102 2025-09-09 03:00:29.690207+00 2025-09-09 03:00:29.690217+00 f t pending 541 \N +1103 2025-09-09 10:11:09.637178+00 2025-09-09 10:11:09.637188+00 f t pending 542 \N +1104 2025-09-09 12:27:05.644724+00 2025-09-09 12:27:05.644737+00 f t in_progress_vet 539 1208 +1105 2025-09-09 12:27:25.518051+00 2025-09-09 12:27:25.518063+00 f t in_progress_vet 540 1208 +1106 2025-09-09 12:28:09.614214+00 2025-09-09 12:28:09.614225+00 f t in_progress_vet 541 1208 +1107 2025-09-09 12:32:09.11767+00 2025-09-09 12:32:09.117682+00 f t in_progress_vet 542 1208 +1108 2025-09-09 12:49:07.967553+00 2025-09-09 12:49:07.967565+00 f t rejected D-Averiguando / Desconocido 541 1208 +1109 2025-09-09 13:56:36.261594+00 2025-09-09 13:56:36.261605+00 f t pending 543 \N +1110 2025-09-09 13:58:42.094516+00 2025-09-09 13:58:42.094527+00 f t in_progress_vet 543 1208 +1111 2025-09-09 13:59:39.135588+00 2025-09-09 13:59:39.135599+00 f t in_progress_pay 543 \N +1112 2025-09-09 14:17:56.381114+00 2025-09-09 14:17:56.381124+00 f t payed 543 1208 +1113 2025-09-09 14:20:59.919423+00 2025-09-09 14:20:59.919436+00 f t coordinated Turno confirmado para 2025-09-09 a las 19:30 543 1208 +1114 2025-09-09 14:21:00.041354+00 2025-09-09 14:21:00.041369+00 f t confirmado 543 \N +1115 2025-09-09 14:40:26.020144+00 2025-09-09 14:40:26.020154+00 f t pending 544 \N +1116 2025-09-09 14:41:12.589706+00 2025-09-09 14:41:12.589715+00 f t in_progress_vet 544 1208 +1117 2025-09-09 15:01:17.841082+00 2025-09-09 15:01:17.841093+00 f t pending 545 \N +1118 2025-09-09 15:06:56.137558+00 2025-09-09 15:06:56.137569+00 f t in_progress_vet 545 1583 +1119 2025-09-09 15:09:42.355257+00 2025-09-09 15:09:42.355269+00 f t payed 544 1208 +1120 2025-09-09 15:27:25.509253+00 2025-09-09 15:27:25.509266+00 f t coordinated Turno confirmado para 2025-09-09 a las 21:00 544 1208 +1121 2025-09-09 15:27:25.546611+00 2025-09-09 15:27:25.546623+00 f t confirmado 544 \N +1122 2025-09-09 16:48:45.87996+00 2025-09-09 16:48:45.879969+00 f t rejected D-Abandono Bot 540 1208 +1123 2025-09-09 18:31:37.133527+00 2025-09-09 18:31:37.133539+00 f t pending 546 \N +1124 2025-09-09 18:35:42.284724+00 2025-09-09 18:35:42.284738+00 f t in_progress_vet 546 1208 +1125 2025-09-09 19:27:42.420223+00 2025-09-09 19:27:42.420234+00 f t rejected D-Emergencia 546 1208 +1126 2025-09-10 08:51:11.673163+00 2025-09-10 08:51:11.673174+00 f t pending 547 \N +1128 2025-09-10 17:41:51.650589+00 2025-09-10 17:41:51.650606+00 f t pending 548 \N +1129 2025-09-10 17:48:17.743801+00 2025-09-10 17:48:17.743814+00 f t in_progress_vet 548 1208 +1130 2025-09-10 18:10:42.67656+00 2025-09-10 18:10:42.676568+00 f t payed 548 1208 +1131 2025-09-10 19:51:28.914446+00 2025-09-10 19:51:28.914457+00 f t pending 549 \N +1132 2025-09-10 20:08:27.879293+00 2025-09-10 20:08:27.879303+00 f t pending 550 \N +1133 2025-09-10 20:09:03.257138+00 2025-09-10 20:09:03.257152+00 f t in_progress_vet 549 1583 +1134 2025-09-10 20:13:39.28395+00 2025-09-10 20:13:39.28396+00 f t in_progress_vet 550 1583 +1135 2025-09-10 21:10:53.988696+00 2025-09-10 21:10:53.988707+00 f t pending 551 \N +1136 2025-09-10 21:24:24.545612+00 2025-09-10 21:24:24.545625+00 f t in_progress_vet 551 1583 +1137 2025-09-10 21:33:20.836034+00 2025-09-10 21:33:20.836045+00 f t pending 552 \N +1138 2025-09-10 21:38:46.541077+00 2025-09-10 21:38:46.541087+00 f t in_progress_vet 552 1583 +1139 2025-09-10 21:54:19.577945+00 2025-09-10 21:54:19.577953+00 f t coordinated Turno confirmado para 2025-09-10 a las 21:30 551 1583 +1140 2025-09-10 21:55:09.10523+00 2025-09-10 21:55:09.10524+00 f t payed 551 1583 +1141 2025-09-10 23:39:30.657932+00 2025-09-10 23:39:30.657942+00 f t payed 552 113 +1142 2025-09-10 23:52:36.326943+00 2025-09-10 23:52:36.326953+00 f t payed 550 113 +1143 2025-09-10 23:52:52.6567+00 2025-09-10 23:52:52.656709+00 f t coordinated Turno confirmado para 2025-09-11 a las 18:30 550 113 +1144 2025-09-11 15:13:05.587867+00 2025-09-11 15:13:05.587877+00 f t pending 553 \N +1145 2025-09-11 16:09:20.930813+00 2025-09-11 16:09:20.930823+00 f t in_progress_vet 553 1583 +1146 2025-09-11 18:23:59.752017+00 2025-09-11 18:23:59.752027+00 f t pending 554 \N +1147 2025-09-11 18:54:35.186759+00 2025-09-11 18:54:35.186768+00 f t in_progress_vet 554 1583 +1148 2025-09-11 23:00:53.898401+00 2025-09-11 23:00:53.898413+00 f t pending 555 \N +1149 2025-09-12 00:01:37.0564+00 2025-09-12 00:01:37.056409+00 f t rejected D-Zona Peligrosa 555 114 +1150 2025-09-12 01:00:09.158887+00 2025-09-12 01:00:09.158902+00 f t pending 556 \N +1151 2025-09-12 12:26:10.631915+00 2025-09-12 12:26:10.631927+00 f t in_progress_vet 556 1583 +1152 2025-09-12 13:02:13.564685+00 2025-09-12 13:02:13.564697+00 f t payed 556 1583 +1153 2025-09-12 16:35:08.145525+00 2025-09-12 16:35:08.14554+00 f t pending 557 \N +1154 2025-09-12 16:36:10.899412+00 2025-09-12 16:36:10.899422+00 f t in_progress_vet 557 1208 +1155 2025-09-12 16:56:49.402422+00 2025-09-12 16:56:49.402433+00 f t pending 558 \N +1156 2025-09-12 17:04:13.141753+00 2025-09-12 17:04:13.141765+00 f t in_progress_vet 558 1208 +1157 2025-09-12 19:27:47.161771+00 2025-09-12 19:27:47.161779+00 f t rejected D-Emergencia 558 1208 +1158 2025-09-12 22:04:28.737573+00 2025-09-12 22:04:28.737587+00 f t pending 559 \N +1159 2025-09-12 22:08:40.223703+00 2025-09-12 22:08:40.223712+00 f t in_progress_vet 559 1208 +1160 2025-09-12 22:51:04.35147+00 2025-09-12 22:51:04.351481+00 f t pending 560 \N +1161 2025-09-13 02:52:00.766407+00 2025-09-13 02:52:00.766416+00 f t rejected D-Emergencia 560 1208 +1162 2025-09-13 12:03:30.368245+00 2025-09-13 12:03:30.368257+00 f t pending 561 \N +1163 2025-09-13 12:14:20.978263+00 2025-09-13 12:14:20.978278+00 f t in_progress_vet 561 1208 +1164 2025-09-13 13:17:36.279511+00 2025-09-13 13:17:36.27952+00 f t pending 562 \N +1165 2025-09-13 13:18:34.668108+00 2025-09-13 13:18:34.668116+00 f t in_progress_vet 562 1208 +1166 2025-09-13 13:44:14.045017+00 2025-09-13 13:44:14.04503+00 f t in_progress_pay 562 \N +1167 2025-09-13 14:31:37.586815+00 2025-09-13 14:31:37.586823+00 f t payed 562 1208 +1168 2025-09-13 14:32:18.857291+00 2025-09-13 14:32:18.8573+00 f t coordinated Turno confirmado para 2025-09-13 a las 12:30 562 1208 +1169 2025-09-13 14:32:18.892737+00 2025-09-13 14:32:18.892747+00 f t confirmado 562 \N +1170 2025-09-13 15:32:08.916454+00 2025-09-13 15:32:08.916462+00 f t rejected D-Tiempo de respuestas 561 1208 +1171 2025-09-13 17:01:05.703657+00 2025-09-13 17:01:05.703676+00 f t pending 563 \N +1172 2025-09-13 17:13:57.671904+00 2025-09-13 17:13:57.671913+00 f t in_progress_vet 563 1208 +1173 2025-09-13 18:42:12.296153+00 2025-09-13 18:42:12.296166+00 f t in_progress_pay 563 \N +1174 2025-09-13 19:03:49.90162+00 2025-09-13 19:03:49.901628+00 f t payed 563 1208 +1175 2025-09-13 19:16:42.197673+00 2025-09-13 19:16:42.197683+00 f t coordinated Turno confirmado para 2025-09-14 a las 11:00 563 1208 +1176 2025-09-13 19:16:42.230565+00 2025-09-13 19:16:42.230585+00 f t confirmado 563 \N +1177 2025-09-13 21:29:08.961077+00 2025-09-13 21:29:08.961092+00 f t pending 564 \N +1178 2025-09-13 22:47:36.214686+00 2025-09-13 22:47:36.214696+00 f t pending 565 \N +1179 2025-09-13 23:36:51.496625+00 2025-09-13 23:36:51.496636+00 f t pending 566 \N +1180 2025-09-14 10:55:11.016591+00 2025-09-14 10:55:11.016602+00 f t pending 567 \N +1181 2025-09-14 12:04:27.257156+00 2025-09-14 12:04:27.257167+00 f t in_progress_vet 564 114 +1182 2025-09-14 12:08:59.129218+00 2025-09-14 12:08:59.129226+00 f t in_progress_vet 567 114 +1183 2025-09-14 12:33:20.897797+00 2025-09-14 12:33:20.897807+00 f t rejected D-Provincia 565 114 +1184 2025-09-14 12:35:27.325367+00 2025-09-14 12:35:27.325377+00 f t in_progress_vet 566 114 +1185 2025-09-14 18:01:50.759168+00 2025-09-14 18:01:50.75929+00 f t rejected D-Averiguando / Desconocido 566 114 +1186 2025-09-14 18:02:22.4385+00 2025-09-14 18:02:22.438513+00 f t rejected D-Emergencia 567 114 +1187 2025-09-15 00:02:16.144471+00 2025-09-15 00:02:16.144481+00 f t pending 568 \N +1188 2025-09-15 01:32:36.824485+00 2025-09-15 01:32:36.824497+00 f t pending 569 \N +1189 2025-09-15 12:25:47.336679+00 2025-09-15 12:25:47.336691+00 f t in_progress_vet 568 1583 +1190 2025-09-16 10:58:43.777456+00 2025-09-16 10:58:43.777471+00 f t pending 570 \N +1191 2025-09-16 11:43:57.084101+00 2025-09-16 11:43:57.08411+00 f t pending 571 \N +1192 2025-09-16 12:28:17.894858+00 2025-09-16 12:28:17.894873+00 f t in_progress_vet 570 1208 +1193 2025-09-16 12:28:31.615795+00 2025-09-16 12:28:31.615807+00 f t in_progress_vet 571 1208 +1194 2025-09-16 13:17:12.434921+00 2025-09-16 13:17:12.434934+00 f t in_progress_pay 570 \N +1195 2025-09-16 13:17:33.619272+00 2025-09-16 13:17:33.619281+00 f t in_progress_pay 571 \N +1196 2025-09-16 13:23:22.162002+00 2025-09-16 13:23:22.16201+00 f t payed 571 1208 +1197 2025-09-16 13:23:48.659358+00 2025-09-16 13:23:48.659371+00 f t coordinated Turno confirmado para 2025-09-16 a las 11:00 571 1208 +1198 2025-09-16 13:23:48.695104+00 2025-09-16 13:23:48.695118+00 f t confirmado 571 \N +1199 2025-09-16 13:27:56.375288+00 2025-09-16 13:27:56.376054+00 f t payed 570 1208 +1200 2025-09-16 13:29:43.03032+00 2025-09-16 13:29:43.031068+00 f t coordinated Turno confirmado para 2025-09-16 a las 12:00 570 1208 +1201 2025-09-16 13:29:43.207117+00 2025-09-16 13:29:43.210144+00 f t confirmado 570 \N +1202 2025-09-16 15:15:50.631687+00 2025-09-16 15:15:50.631697+00 f t pending 572 \N +1203 2025-09-16 15:36:27.782285+00 2025-09-16 15:36:27.782299+00 f t in_progress_vet 572 1583 +1204 2025-09-16 23:44:26.753294+00 2025-09-16 23:44:26.753304+00 f t pending 573 \N +1205 2025-09-17 12:16:19.091443+00 2025-09-17 12:16:19.091459+00 f t in_progress_vet 573 1208 +1206 2025-09-17 16:06:22.850762+00 2025-09-17 16:06:22.850773+00 f t pending 574 \N +1207 2025-09-17 16:25:53.009539+00 2025-09-17 16:25:53.009552+00 f t in_progress_vet 574 1583 +1208 2025-09-18 01:44:16.729498+00 2025-09-18 01:44:16.729509+00 f t pending 575 \N +1209 2025-09-18 10:40:56.91697+00 2025-09-18 10:40:56.916984+00 f t pending 576 \N +1210 2025-09-18 10:41:19.234551+00 2025-09-18 10:41:19.234565+00 f t pending 577 \N +1211 2025-09-18 11:34:34.817435+00 2025-09-18 11:34:34.817445+00 f t pending 578 \N +1212 2025-09-18 12:16:20.096773+00 2025-09-18 12:16:20.096783+00 f t in_progress_vet 575 1208 +1213 2025-09-18 12:19:11.512663+00 2025-09-18 12:19:11.512674+00 f t in_progress_vet 576 1208 +1214 2025-09-18 12:20:17.106748+00 2025-09-18 12:20:17.106758+00 f t in_progress_vet 577 1208 +1215 2025-09-18 12:30:42.613891+00 2025-09-18 12:30:42.613899+00 f t in_progress_vet 578 1208 +1216 2025-09-18 12:40:10.886122+00 2025-09-18 12:40:10.886136+00 f t pending 579 \N +1217 2025-09-18 12:54:05.602207+00 2025-09-18 12:54:05.602217+00 f t in_progress_vet 579 1208 +1218 2025-09-18 13:20:48.865109+00 2025-09-18 13:20:48.865121+00 f t rejected D-Averiguando / Desconocido 577 1208 +1219 2025-09-18 13:34:25.638248+00 2025-09-18 13:34:25.638259+00 f t pending 580 \N +1220 2025-09-18 13:46:53.200271+00 2025-09-18 13:46:53.200283+00 f t in_progress_vet 580 1208 +1221 2025-09-18 15:02:51.501501+00 2025-09-18 15:02:51.501511+00 f t rejected D-Tiempo de respuestas 576 1208 +1222 2025-09-18 18:09:31.239334+00 2025-09-18 18:09:31.239349+00 f t rejected D-Averiguando / Desconocido 579 1208 +1223 2025-09-18 18:33:58.720944+00 2025-09-18 18:33:58.720966+00 f t pending 581 \N +1224 2025-09-18 18:37:05.729005+00 2025-09-18 18:37:05.729015+00 f t in_progress_vet 581 1208 +1225 2025-09-18 19:10:16.958272+00 2025-09-18 19:10:16.958283+00 f t pending 582 \N +1226 2025-09-18 22:56:13.805778+00 2025-09-18 22:56:13.805789+00 f t pending 583 \N +1227 2025-09-18 22:59:41.993643+00 2025-09-18 22:59:41.993656+00 f t in_progress_vet 583 113 +1228 2025-09-18 23:28:33.141709+00 2025-09-18 23:28:33.141721+00 f t coordinated Turno confirmado para 2025-09-19 a las 17:30 583 113 +1229 2025-09-18 23:59:33.711254+00 2025-09-18 23:59:33.711265+00 f t payed 583 113 +1230 2025-09-19 02:10:00.552896+00 2025-09-19 02:10:00.552907+00 f t pending 584 \N +1231 2025-09-19 10:49:44.748947+00 2025-09-19 10:49:44.748957+00 f t pending 585 \N +1232 2025-09-19 12:08:20.318056+00 2025-09-19 12:08:20.318068+00 f t in_progress_vet 585 1583 +1233 2025-09-19 12:50:35.716049+00 2025-09-19 12:50:35.716059+00 f t in_progress_vet 584 1583 +1234 2025-09-19 14:46:04.216316+00 2025-09-19 14:46:04.216327+00 f t pending 586 \N +1235 2025-09-19 15:24:21.557275+00 2025-09-19 15:24:21.557286+00 f t in_progress_vet 586 1583 +1236 2025-09-19 15:26:42.189673+00 2025-09-19 15:26:42.189681+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 08:00:00 4 110 +1237 2025-09-19 15:28:43.475684+00 2025-09-19 15:28:43.475698+00 f t in_progress_pay 4 116 +1238 2025-09-19 15:29:53.021795+00 2025-09-19 15:29:53.021805+00 f t rejected D-Abandono Bot 4 110 +1239 2025-09-19 16:05:07.378368+00 2025-09-19 16:05:07.378382+00 f t in_progress_vet 582 113 +1240 2025-09-19 16:34:21.586615+00 2025-09-19 16:34:21.586623+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 18:30:00 582 113 +1241 2025-09-19 17:02:17.134669+00 2025-09-19 17:02:17.134684+00 f t in_progress_pay 582 139 +1242 2025-09-19 17:02:35.081434+00 2025-09-19 17:02:35.081449+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 582 113 +1243 2025-09-19 17:04:07.813196+00 2025-09-19 17:04:07.813224+00 f t in_progress_pay 582 139 +1244 2025-09-19 17:04:23.000693+00 2025-09-19 17:04:23.000708+00 f t in_progress_pay 582 139 +1245 2025-09-19 17:06:53.080533+00 2025-09-19 17:06:53.080547+00 f t in_progress_pay 582 139 +1246 2025-09-19 17:23:38.301736+00 2025-09-19 17:23:38.301748+00 f t confirmado 582 \N +1247 2025-09-19 17:23:38.277237+00 2025-09-19 17:23:38.277247+00 f t payed 582 113 +1248 2025-09-19 17:49:17.462928+00 2025-09-19 17:49:17.462939+00 f t pending 587 \N +1249 2025-09-19 17:49:27.451503+00 2025-09-19 17:49:27.451515+00 f t in_progress_vet 587 1583 +1250 2025-09-19 17:52:00.713934+00 2025-09-19 17:52:00.713943+00 f t pending 588 \N +1251 2025-09-19 17:52:02.698068+00 2025-09-19 17:52:02.698083+00 f t pending 589 \N +1252 2025-09-19 17:52:44.03373+00 2025-09-19 17:52:44.033746+00 f t vet_asked Veterinario asignado: Ponce Lisandro 587 1583 +1253 2025-09-19 17:53:00.954267+00 2025-09-19 17:53:00.954276+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 10:00:00 587 1583 +1254 2025-09-19 17:55:25.547833+00 2025-09-19 17:55:25.547841+00 f t payed 587 1583 +1255 2025-09-19 18:02:42.95962+00 2025-09-19 18:02:42.95963+00 f t in_progress_vet 588 1583 +1256 2025-09-19 18:54:03.628457+00 2025-09-19 18:54:03.628471+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 10:00:00 588 1583 +1257 2025-09-19 18:57:34.636426+00 2025-09-19 18:57:34.636435+00 f t in_progress_pay 588 116 +1258 2025-09-19 18:59:48.702908+00 2025-09-19 18:59:48.702916+00 f t confirmado 588 \N +1259 2025-09-19 18:59:48.683005+00 2025-09-19 18:59:48.683014+00 f t payed 588 1583 +1260 2025-09-19 19:24:36.211538+00 2025-09-19 19:24:36.211547+00 f t pending 590 \N +1261 2025-09-19 19:24:44.822898+00 2025-09-19 19:24:44.82291+00 f t in_progress_vet 590 1583 +1262 2025-09-19 19:25:06.65735+00 2025-09-19 19:25:06.65736+00 f t coordinated Solicitud coordinada para 2025-09-19 a las 18:00:00 590 1583 +1263 2025-09-19 19:25:36.835072+00 2025-09-19 19:25:36.835082+00 f t coordinated Solicitud coordinada para 2025-09-19 a las 18:00:00 590 1583 +1264 2025-09-19 19:25:46.500974+00 2025-09-19 19:25:46.500987+00 f t vet_asked Veterinario asignado: Ponce Lisandro 590 1583 +1265 2025-09-19 19:26:27.915406+00 2025-09-19 19:26:27.915416+00 f t confirmado 590 \N +1266 2025-09-19 19:26:27.893719+00 2025-09-19 19:26:27.893728+00 f t payed 590 1583 +1267 2025-09-19 19:58:45.122592+00 2025-09-19 19:58:45.1226+00 f t coordinated Solicitud coordinada para 2025-09-19 a las 19:00:00 585 1583 +1268 2025-09-19 19:58:53.174111+00 2025-09-19 19:58:53.174121+00 f t coordinated Solicitud coordinada para 2025-09-19 a las 19:00:00 585 1583 +1269 2025-09-19 19:59:02.950905+00 2025-09-19 19:59:02.950916+00 f t vet_asked Veterinario asignado: Ponce Lisandro 585 1583 +1270 2025-09-19 19:59:09.325957+00 2025-09-19 19:59:09.325966+00 f t confirmado 585 \N +1271 2025-09-19 19:59:09.305382+00 2025-09-19 19:59:09.305391+00 f t payed 585 1583 +1272 2025-09-19 20:08:59.337884+00 2025-09-19 20:08:59.337894+00 f t pending 591 \N +1273 2025-09-19 20:09:06.006535+00 2025-09-19 20:09:06.006548+00 f t in_progress_vet 591 1208 +1274 2025-09-19 20:28:06.78378+00 2025-09-19 20:28:06.78379+00 f t pending 592 \N +1275 2025-09-19 20:42:10.281307+00 2025-09-19 20:42:10.281319+00 f t vet_asked Veterinario asignado: Palladino Martín 591 1208 +1276 2025-09-19 20:46:46.607202+00 2025-09-19 20:46:46.60721+00 f t coordinated Solicitud coordinada para 2025-09-20 a las 11:00:00 591 1208 +1277 2025-09-19 20:48:01.615984+00 2025-09-19 20:48:01.615998+00 f t in_progress_pay 591 122 +1278 2025-09-19 20:48:12.988071+00 2025-09-19 20:48:12.98808+00 f t coordinated Solicitud coordinada para 2025-09-20 a las 11:00:00 591 1208 +1279 2025-09-19 20:51:22.523561+00 2025-09-19 20:51:22.523569+00 f t confirmado 591 \N +1280 2025-09-19 20:51:22.501292+00 2025-09-19 20:51:22.501301+00 f t payed 591 1208 +1281 2025-09-19 20:58:08.519406+00 2025-09-19 20:58:08.519419+00 f t pending 593 \N +1282 2025-09-19 20:58:08.523653+00 2025-09-19 20:58:08.523667+00 f t pending 594 \N +1283 2025-09-19 20:58:41.857634+00 2025-09-19 20:58:41.857648+00 f t in_progress_vet 593 1208 +1284 2025-09-19 21:01:38.087311+00 2025-09-19 21:01:38.087324+00 f t in_progress_vet 592 1208 +1285 2025-09-19 22:05:03.405374+00 2025-09-19 22:05:03.405391+00 f t vet_asked Veterinario asignado: Palladino Martín 593 1208 +1286 2025-09-19 22:05:15.965916+00 2025-09-19 22:05:15.96593+00 f t coordinated Solicitud coordinada para 2025-09-20 a las 10:00:00 593 1208 +1287 2025-09-19 22:11:58.707354+00 2025-09-19 22:11:58.707363+00 f t confirmado 593 \N +1288 2025-09-19 22:11:58.686564+00 2025-09-19 22:11:58.686573+00 f t payed 593 1208 +1289 2025-09-19 22:27:32.228971+00 2025-09-19 22:27:32.228979+00 f t vet_asked Veterinario asignado: di Risio Daniela 592 1208 +1290 2025-09-19 22:27:51.53078+00 2025-09-19 22:27:51.530788+00 f t coordinated Solicitud coordinada para 2025-09-20 a las 18:00:00 592 1208 +1291 2025-09-19 22:29:22.774427+00 2025-09-19 22:29:22.774435+00 f t confirmado 592 \N +1292 2025-09-19 22:29:22.754267+00 2025-09-19 22:29:22.754277+00 f t payed 592 1208 +1293 2025-09-19 22:45:23.296338+00 2025-09-19 22:45:23.296349+00 f t pending 595 \N +1294 2025-09-19 22:45:52.941649+00 2025-09-19 22:45:52.941658+00 f t in_progress_vet 595 1208 +1295 2025-09-19 22:46:07.491815+00 2025-09-19 22:46:07.491826+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 595 1208 +1296 2025-09-19 22:46:14.957434+00 2025-09-19 22:46:14.957444+00 f t coordinated Solicitud coordinada para 2025-09-20 a las 11:00:00 595 1208 +1297 2025-09-19 22:47:13.115858+00 2025-09-19 22:47:13.115867+00 f t confirmado 595 \N +1298 2025-09-19 22:47:13.094203+00 2025-09-19 22:47:13.094213+00 f t payed 595 1208 +1299 2025-09-19 23:17:15.661524+00 2025-09-19 23:17:15.661531+00 f t pending 596 \N +1300 2025-09-19 23:22:58.477493+00 2025-09-19 23:22:58.477506+00 f t pending 597 \N +1301 2025-09-19 23:23:03.592278+00 2025-09-19 23:23:03.59229+00 f t in_progress_vet 597 1208 +1302 2025-09-19 23:24:29.607918+00 2025-09-19 23:24:29.607928+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 597 1208 +1303 2025-09-19 23:24:38.648387+00 2025-09-19 23:24:38.648396+00 f t coordinated Solicitud coordinada para 2025-09-22 a las 18:30:00 597 1208 +1304 2025-09-19 23:25:23.045207+00 2025-09-19 23:25:23.045214+00 f t confirmado 597 \N +1305 2025-09-19 23:25:23.026828+00 2025-09-19 23:25:23.026838+00 f t payed 597 1208 +1306 2025-09-19 23:27:06.341583+00 2025-09-19 23:27:06.341593+00 f t in_progress_vet 596 1208 +1307 2025-09-20 01:49:59.930109+00 2025-09-20 01:49:59.930117+00 f t pending 598 \N +1308 2025-09-20 10:36:24.601216+00 2025-09-20 10:36:24.601228+00 f t pending 599 \N +1309 2025-09-20 12:16:33.205112+00 2025-09-20 12:16:33.205125+00 f t in_progress_vet 598 1208 +1310 2025-09-20 12:27:29.306087+00 2025-09-20 12:27:29.306097+00 f t in_progress_vet 599 1208 +1311 2025-09-20 12:30:05.647831+00 2025-09-20 12:30:05.647848+00 f t rejected D-Emergencia 599 1208 +1312 2025-09-20 13:05:40.642718+00 2025-09-20 13:05:40.642728+00 f t pending 600 \N +1313 2025-09-20 13:06:11.926137+00 2025-09-20 13:06:11.926147+00 f t in_progress_vet 600 1208 +1314 2025-09-20 13:09:41.480012+00 2025-09-20 13:09:41.480025+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 600 1208 +1315 2025-09-20 13:12:41.918315+00 2025-09-20 13:12:41.918324+00 f t coordinated Solicitud coordinada para 2025-09-20 a las 11:30:00 600 1208 +1316 2025-09-20 13:12:41.943297+00 2025-09-20 13:12:41.943305+00 f t coordinated Solicitud coordinada para 2025-09-20 a las 11:30:00 600 1208 +1317 2025-09-20 13:16:19.877826+00 2025-09-20 13:16:19.877833+00 f t confirmado 600 \N +1318 2025-09-20 13:16:19.857558+00 2025-09-20 13:16:19.857566+00 f t payed 600 1208 +1319 2025-09-20 13:28:28.526294+00 2025-09-20 13:28:28.526303+00 f t pending 601 \N +1320 2025-09-20 13:35:20.302586+00 2025-09-20 13:35:20.302595+00 f t in_progress_vet 601 1208 +1321 2025-09-20 14:51:00.547981+00 2025-09-20 14:51:00.54799+00 f t pending 602 \N +1322 2025-09-20 14:54:37.790359+00 2025-09-20 14:54:37.79037+00 f t in_progress_vet 602 1208 +1323 2025-09-20 15:56:25.262031+00 2025-09-20 15:56:25.262041+00 f t pending 603 \N +1324 2025-09-20 15:56:35.962375+00 2025-09-20 15:56:35.962387+00 f t in_progress_vet 603 1208 +1325 2025-09-20 16:01:41.475996+00 2025-09-20 16:01:41.476008+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 603 1208 +1326 2025-09-20 16:08:33.225541+00 2025-09-20 16:08:33.22555+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 16:00:00 603 1208 +1327 2025-09-20 16:10:54.623701+00 2025-09-20 16:10:54.623709+00 f t confirmado 603 \N +1328 2025-09-20 16:10:54.597765+00 2025-09-20 16:10:54.597778+00 f t payed 603 1208 +1329 2025-09-20 16:14:20.924658+00 2025-09-20 16:14:20.924667+00 f t rejected D-Averiguando / Desconocido 601 1208 +1330 2025-09-20 16:17:24.081124+00 2025-09-20 16:17:24.081138+00 f t rejected D-Abandono Bot 598 1208 +1331 2025-09-20 16:26:12.673744+00 2025-09-20 16:26:12.673754+00 f t rejected D-Averiguando / Desconocido 594 1208 +1332 2025-09-20 16:26:33.711593+00 2025-09-20 16:26:33.711603+00 f t rejected D-Abandono Bot 596 1208 +1333 2025-09-20 16:36:03.776398+00 2025-09-20 16:36:03.776413+00 f t pending 604 \N +1334 2025-09-20 16:41:38.523888+00 2025-09-20 16:41:38.523896+00 f t in_progress_vet 604 1208 +1335 2025-09-20 16:45:05.750528+00 2025-09-20 16:45:05.750542+00 f t vet_asked Veterinario asignado: Szczurek Verónica Carolina 604 1208 +1336 2025-09-20 16:45:15.475839+00 2025-09-20 16:45:15.475851+00 f t coordinated Solicitud coordinada para 2025-09-20 a las 17:30:00 604 1208 +1337 2025-09-20 17:10:47.129414+00 2025-09-20 17:10:47.129425+00 f t confirmado 604 \N +1338 2025-09-20 17:10:47.108819+00 2025-09-20 17:10:47.108829+00 f t payed 604 1208 +1339 2025-09-20 18:07:43.431242+00 2025-09-20 18:07:43.431257+00 f t pending 605 \N +1340 2025-09-20 18:12:12.182015+00 2025-09-20 18:12:12.182027+00 f t in_progress_vet 605 1208 +1341 2025-09-20 22:27:46.114114+00 2025-09-20 22:27:46.114124+00 f t pending 606 \N +1342 2025-09-20 22:51:16.605155+00 2025-09-20 22:51:16.605165+00 f t pending 607 \N +1343 2025-09-21 07:45:15.597554+00 2025-09-21 07:45:15.597567+00 f t pending 608 \N +1344 2025-09-21 12:04:12.600233+00 2025-09-21 12:04:12.600244+00 f t in_progress_vet 606 114 +1345 2025-09-21 12:13:43.751443+00 2025-09-21 12:13:43.751453+00 f t in_progress_vet 607 114 +1346 2025-09-21 12:46:13.199054+00 2025-09-21 12:46:13.199068+00 f t pending 609 \N +1347 2025-09-21 12:47:18.187062+00 2025-09-21 12:47:18.187073+00 f t in_progress_vet 609 114 +1348 2025-09-21 19:01:40.252359+00 2025-09-21 19:01:40.252375+00 f t rejected D-Emergencia 608 114 +1349 2025-09-21 19:01:54.194234+00 2025-09-21 19:01:54.194244+00 f t rejected D-Emergencia 607 114 +1350 2025-09-21 19:03:14.378745+00 2025-09-21 19:03:14.378758+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 606 114 +1351 2025-09-21 19:03:25.067416+00 2025-09-21 19:03:25.067424+00 f t coordinated Solicitud coordinada para 2025-09-21 a las 12:00:00 606 114 +1352 2025-09-21 19:05:54.990594+00 2025-09-21 19:05:54.990605+00 f t coordinated Solicitud coordinada para 2025-09-21 a las 12:00:00 606 114 +1353 2025-09-21 19:06:41.166669+00 2025-09-21 19:06:41.16668+00 f t confirmado 606 \N +1354 2025-09-21 19:06:41.142837+00 2025-09-21 19:06:41.14285+00 f t payed 606 114 +1355 2025-09-21 19:06:46.327924+00 2025-09-21 19:06:46.327934+00 f t rejected D-Abandono Bot 265 110 +1356 2025-09-21 19:14:19.573704+00 2025-09-21 19:14:19.573717+00 f t pending 610 \N +1357 2025-09-21 19:16:41.659234+00 2025-09-21 19:16:41.659245+00 f t in_progress_vet 610 114 +1358 2025-09-21 19:16:47.791659+00 2025-09-21 19:16:47.79167+00 f t vet_asked Veterinario asignado: Castro Guadalupe 610 114 +1359 2025-09-21 19:17:36.806596+00 2025-09-21 19:17:36.806604+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 16:00:00 610 114 +1360 2025-09-21 19:18:11.840509+00 2025-09-21 19:18:11.840518+00 f t payed 610 114 +1361 2025-09-21 19:19:11.781877+00 2025-09-21 19:19:11.781886+00 f t confirmado 610 \N +1362 2025-09-21 19:19:11.760648+00 2025-09-21 19:19:11.760656+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 16:00:00 610 114 +1363 2025-09-21 19:23:37.564836+00 2025-09-21 19:23:37.564848+00 f t pending 611 \N +1364 2025-09-21 19:23:42.756764+00 2025-09-21 19:23:42.756772+00 f t in_progress_vet 611 114 +1365 2025-09-21 19:25:33.760874+00 2025-09-21 19:25:33.760884+00 f t pending 612 \N +1366 2025-09-21 19:26:32.08699+00 2025-09-21 19:26:32.087+00 f t coordinated Solicitud coordinada para 2025-09-22 a las 18:00:00 611 114 +1367 2025-09-21 19:27:32.598669+00 2025-09-21 19:27:32.598681+00 f t pending 613 \N +1368 2025-09-21 19:27:37.02399+00 2025-09-21 19:27:37.023999+00 f t payed 611 114 +1369 2025-09-21 19:27:49.761594+00 2025-09-21 19:27:49.761604+00 f t confirmado 611 \N +1370 2025-09-21 19:27:50.454506+00 2025-09-21 19:27:50.454516+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 611 114 +1371 2025-09-21 19:27:53.089121+00 2025-09-21 19:27:53.089129+00 f t coordinated Solicitud coordinada para 2025-09-22 a las 18:00:00 611 114 +1372 2025-09-21 19:31:36.306785+00 2025-09-21 19:31:36.306794+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 609 114 +1373 2025-09-21 19:34:43.72211+00 2025-09-21 19:34:43.72212+00 f t payed 609 114 +1374 2025-09-21 19:36:32.067681+00 2025-09-21 19:36:32.067692+00 f t confirmado 609 \N +1375 2025-09-21 19:36:32.046918+00 2025-09-21 19:36:32.046926+00 f t coordinated Solicitud coordinada para 2025-09-22 a las 19:30:00 609 114 +1376 2025-09-21 19:41:20.239838+00 2025-09-21 19:41:20.239848+00 f t pending 614 \N +1377 2025-09-21 19:41:24.752583+00 2025-09-21 19:41:24.752595+00 f t in_progress_vet 614 114 +1378 2025-09-21 19:41:31.470939+00 2025-09-21 19:41:31.470953+00 f t vet_asked Veterinario asignado: Laura Gorostegui Maria 614 114 +1379 2025-09-21 19:43:04.08678+00 2025-09-21 19:43:04.08679+00 f t payed 614 114 +1380 2025-09-21 19:43:18.940413+00 2025-09-21 19:43:18.940422+00 f t confirmado 614 \N +1381 2025-09-21 19:43:18.917073+00 2025-09-21 19:43:18.917083+00 f t coordinated Solicitud coordinada para 2025-09-22 a las 15:30:00 614 114 +1382 2025-09-21 19:46:42.921572+00 2025-09-21 19:46:42.921582+00 f t pending 615 \N +1383 2025-09-21 19:47:07.485573+00 2025-09-21 19:47:07.485583+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 615 114 +1384 2025-09-21 19:48:08.111328+00 2025-09-21 19:48:08.111337+00 f t payed 615 114 +1385 2025-09-21 19:48:24.613486+00 2025-09-21 19:48:24.613498+00 f t confirmado 615 \N +1386 2025-09-21 19:48:24.587102+00 2025-09-21 19:48:24.587113+00 f t coordinated Solicitud coordinada para 2025-09-21 a las 21:30:00 615 114 +1387 2025-09-21 20:01:17.650018+00 2025-09-21 20:01:17.650026+00 f t in_progress_vet 612 114 +1388 2025-09-21 20:37:45.317955+00 2025-09-21 20:37:45.317968+00 f t pending 616 \N +1389 2025-09-21 20:38:00.687542+00 2025-09-21 20:38:00.687552+00 f t in_progress_vet 616 114 +1390 2025-09-21 20:38:32.829594+00 2025-09-21 20:38:32.829607+00 f t vet_accepted 611 139 +1391 2025-09-21 20:38:48.438763+00 2025-09-21 20:38:48.438772+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 616 114 +1392 2025-09-21 20:39:59.303464+00 2025-09-21 20:39:59.303473+00 f t payed 616 114 +1393 2025-09-21 20:40:12.826626+00 2025-09-21 20:40:12.82664+00 f t confirmado 616 \N +1394 2025-09-21 20:40:12.777212+00 2025-09-21 20:40:12.777225+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 12:00:00 616 114 +1395 2025-09-21 20:44:06.556846+00 2025-09-21 20:44:06.556859+00 f t pending 617 \N +1396 2025-09-21 20:44:24.986875+00 2025-09-21 20:44:24.986887+00 f t in_progress_vet 617 114 +1397 2025-09-21 20:45:28.913847+00 2025-09-21 20:45:28.913856+00 f t payed 617 114 +1398 2025-09-21 20:45:44.651269+00 2025-09-21 20:45:44.651278+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 617 114 +1399 2025-09-21 20:46:02.906962+00 2025-09-21 20:46:02.906972+00 f t confirmado 617 \N +1400 2025-09-21 20:46:02.8766+00 2025-09-21 20:46:02.87661+00 f t coordinated Solicitud coordinada para 2025-09-22 a las 20:00:00 617 114 +1401 2025-09-21 20:55:58.069263+00 2025-09-21 20:55:58.069273+00 f t pending 618 \N +1402 2025-09-21 20:56:03.434125+00 2025-09-21 20:56:03.434138+00 f t in_progress_vet 618 114 +1403 2025-09-21 20:56:35.040929+00 2025-09-21 20:56:35.040938+00 f t vet_asked Veterinario asignado: di Risio Daniela 618 114 +1404 2025-09-21 20:59:21.654935+00 2025-09-21 20:59:21.654949+00 f t payed 618 114 +1405 2025-09-21 20:59:41.483063+00 2025-09-21 20:59:41.483072+00 f t confirmado 618 \N +1406 2025-09-21 20:59:41.451675+00 2025-09-21 20:59:41.451687+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 20:30:00 618 114 +1407 2025-09-21 21:13:43.162891+00 2025-09-21 21:13:43.162904+00 f t pending 619 \N +1408 2025-09-21 21:13:47.957813+00 2025-09-21 21:13:47.957826+00 f t in_progress_vet 619 114 +1409 2025-09-21 21:15:25.361338+00 2025-09-21 21:15:25.361348+00 f t payed 619 114 +1410 2025-09-21 21:15:41.625048+00 2025-09-21 21:15:41.625061+00 f t vet_asked Veterinario asignado: de Caroli Gabriela 619 114 +1411 2025-09-21 21:15:57.588599+00 2025-09-21 21:15:57.588609+00 f t confirmado 619 \N +1412 2025-09-21 21:15:57.562888+00 2025-09-21 21:15:57.562897+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 21:00:00 619 114 +1413 2025-09-21 21:32:27.122356+00 2025-09-21 21:32:27.122366+00 f t rejected D-Emergencia 612 114 +1414 2025-09-21 21:40:24.242213+00 2025-09-21 21:40:24.242222+00 f t pending 620 \N +1415 2025-09-22 10:02:15.842519+00 2025-09-22 10:02:15.842528+00 f t pending 621 \N +1416 2025-09-22 12:09:07.717461+00 2025-09-22 12:09:07.717474+00 f t in_progress_vet 613 1583 +1417 2025-09-22 12:15:27.547683+00 2025-09-22 12:15:27.547693+00 f t in_progress_vet 620 1583 +1418 2025-09-22 12:46:02.493299+00 2025-09-22 12:46:02.493308+00 f t in_progress_vet 621 1583 +1419 2025-09-22 13:16:11.423887+00 2025-09-22 13:16:11.4239+00 f t vet_asked Veterinario asignado: Castro Guadalupe 621 1583 +1420 2025-09-22 13:16:19.221865+00 2025-09-22 13:16:19.221876+00 f t coordinated Solicitud coordinada para 2025-09-22 a las 11:00:00 621 1583 +1421 2025-09-22 13:17:04.475081+00 2025-09-22 13:17:04.475089+00 f t confirmado 621 \N +1422 2025-09-22 13:17:04.456352+00 2025-09-22 13:17:04.456361+00 f t payed 621 1583 +1423 2025-09-22 13:49:17.833886+00 2025-09-22 13:49:17.833898+00 f t pending 622 \N +1424 2025-09-22 13:49:22.721013+00 2025-09-22 13:49:22.721023+00 f t in_progress_vet 622 1583 +1425 2025-09-22 13:49:45.08423+00 2025-09-22 13:49:45.084238+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 622 1583 +1426 2025-09-22 13:49:52.858917+00 2025-09-22 13:49:52.858927+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 18:30:00 622 1583 +1427 2025-09-22 13:50:29.825518+00 2025-09-22 13:50:29.825527+00 f t confirmado 622 \N +1428 2025-09-22 13:50:29.803939+00 2025-09-22 13:50:29.803947+00 f t payed 622 1583 +1429 2025-09-22 13:55:28.864569+00 2025-09-22 13:55:28.864577+00 f t pending 623 \N +1430 2025-09-22 14:19:00.971251+00 2025-09-22 14:19:00.971261+00 f t pending 624 \N +1431 2025-09-22 14:19:08.599668+00 2025-09-22 14:19:08.599677+00 f t in_progress_vet 624 1583 +1432 2025-09-22 14:19:17.110397+00 2025-09-22 14:19:17.11041+00 f t vet_asked Veterinario asignado: Campo Silvia 624 1583 +1433 2025-09-22 14:19:26.080051+00 2025-09-22 14:19:26.080061+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 18:00:00 624 1583 +1434 2025-09-22 14:21:52.19761+00 2025-09-22 14:21:52.197621+00 f t confirmado 624 \N +1435 2025-09-22 14:21:52.168751+00 2025-09-22 14:21:52.168762+00 f t payed 624 1583 +1436 2025-09-22 14:53:53.402103+00 2025-09-22 14:53:53.402112+00 f t in_progress_vet 623 1583 +1437 2025-09-22 14:56:23.6126+00 2025-09-22 14:56:23.612611+00 f t vet_asked Veterinario asignado: Castro Guadalupe 623 1583 +1438 2025-09-22 14:56:32.157809+00 2025-09-22 14:56:32.157818+00 f t coordinated Solicitud coordinada para 2025-09-22 a las 12:00:00 623 1583 +1439 2025-09-22 14:57:04.908075+00 2025-09-22 14:57:04.90809+00 f t confirmado 623 \N +1440 2025-09-22 14:57:04.871719+00 2025-09-22 14:57:04.871732+00 f t payed 623 1583 +1441 2025-09-22 15:07:46.928972+00 2025-09-22 15:07:46.928982+00 f t pending 625 \N +1442 2025-09-22 15:07:52.185105+00 2025-09-22 15:07:52.185114+00 f t in_progress_vet 625 1583 +1443 2025-09-22 15:27:18.798924+00 2025-09-22 15:27:18.798934+00 f t pending 626 \N +1444 2025-09-22 15:27:38.432293+00 2025-09-22 15:27:38.43231+00 f t in_progress_vet 626 1583 +1445 2025-09-22 15:28:08.282444+00 2025-09-22 15:28:08.282452+00 f t vet_asked Veterinario asignado: di Risio Daniela 626 1583 +1446 2025-09-22 15:28:17.34541+00 2025-09-22 15:28:17.345418+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 13:30:00 626 1583 +1447 2025-09-22 15:29:12.74851+00 2025-09-22 15:29:12.748519+00 f t confirmado 626 \N +1448 2025-09-22 15:29:12.726214+00 2025-09-22 15:29:12.726223+00 f t payed 626 1583 +1449 2025-09-22 15:34:59.897051+00 2025-09-22 15:34:59.897061+00 f t pending 627 \N +1450 2025-09-22 15:35:06.883409+00 2025-09-22 15:35:06.883422+00 f t in_progress_vet 627 1583 +1451 2025-09-22 15:35:20.665666+00 2025-09-22 15:35:20.665676+00 f t vet_asked Veterinario asignado: Castro Guadalupe 627 1583 +1452 2025-09-22 15:35:29.465333+00 2025-09-22 15:35:29.465344+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 17:00:00 627 1583 +1453 2025-09-22 15:36:17.65653+00 2025-09-22 15:36:17.656543+00 f t confirmado 627 \N +1454 2025-09-22 15:36:17.633422+00 2025-09-22 15:36:17.633434+00 f t payed 627 1583 +1455 2025-09-22 15:51:37.132557+00 2025-09-22 15:51:37.132568+00 f t pending 628 \N +1456 2025-09-22 15:51:42.231581+00 2025-09-22 15:51:42.23159+00 f t in_progress_vet 628 1583 +1457 2025-09-22 15:51:47.444569+00 2025-09-22 15:51:47.444579+00 f t vet_asked Veterinario asignado: Castro Guadalupe 628 1583 +1458 2025-09-22 15:52:22.30327+00 2025-09-22 15:52:22.303279+00 f t payed 628 1583 +1459 2025-09-22 15:54:40.901556+00 2025-09-22 15:54:40.901568+00 f t confirmado 628 \N +1460 2025-09-22 15:54:40.876542+00 2025-09-22 15:54:40.876553+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 13:00:00 628 1583 +1461 2025-09-22 16:22:37.435325+00 2025-09-22 16:22:37.435335+00 f t pending 629 \N +1462 2025-09-22 16:22:42.192724+00 2025-09-22 16:22:42.192733+00 f t in_progress_vet 629 1583 +1463 2025-09-22 16:22:58.622063+00 2025-09-22 16:22:58.622074+00 f t vet_asked Veterinario asignado: Palummo Mariana 629 1583 +1464 2025-09-22 16:23:06.39206+00 2025-09-22 16:23:06.392068+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 09:30:00 629 1583 +1465 2025-09-22 16:25:02.47335+00 2025-09-22 16:25:02.473365+00 f t confirmado 629 \N +1466 2025-09-22 16:25:02.391276+00 2025-09-22 16:25:02.391292+00 f t payed 629 1583 +1467 2025-09-22 16:39:33.877184+00 2025-09-22 16:39:33.877193+00 f t pending 630 \N +1468 2025-09-22 16:39:42.050522+00 2025-09-22 16:39:42.05053+00 f t in_progress_vet 630 1583 +1469 2025-09-22 16:39:54.113236+00 2025-09-22 16:39:54.113245+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 630 1583 +1470 2025-09-22 16:40:03.514329+00 2025-09-22 16:40:03.514341+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 18:30:00 630 1583 +1471 2025-09-22 16:40:34.640802+00 2025-09-22 16:40:34.640811+00 f t confirmado 630 \N +1472 2025-09-22 16:40:34.617116+00 2025-09-22 16:40:34.617125+00 f t payed 630 1583 +1473 2025-09-22 17:21:20.295912+00 2025-09-22 17:21:20.295922+00 f t pending 631 \N +1474 2025-09-22 17:21:25.445376+00 2025-09-22 17:21:25.445388+00 f t in_progress_vet 631 1583 +1475 2025-09-22 17:21:38.837536+00 2025-09-22 17:21:38.837548+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 631 1583 +1476 2025-09-22 17:21:46.055725+00 2025-09-22 17:21:46.055733+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 10:30:00 631 1583 +1477 2025-09-22 17:22:18.000256+00 2025-09-22 17:22:18.000268+00 f t confirmado 631 \N +1478 2025-09-22 17:22:17.974348+00 2025-09-22 17:22:17.974357+00 f t payed 631 1583 +1479 2025-09-22 17:47:25.805319+00 2025-09-22 17:47:25.805328+00 f t pending 632 \N +1480 2025-09-22 17:47:32.838825+00 2025-09-22 17:47:32.838837+00 f t in_progress_vet 632 1583 +1481 2025-09-22 17:55:34.440597+00 2025-09-22 17:55:34.44061+00 f t vet_asked Veterinario asignado: Palummo Mariana 632 1583 +1482 2025-09-22 17:55:40.985951+00 2025-09-22 17:55:40.985959+00 f t coordinated Solicitud coordinada para 2025-09-22 a las 16:00:00 632 1583 +1483 2025-09-22 17:56:48.950918+00 2025-09-22 17:56:48.950928+00 f t confirmado 632 \N +1484 2025-09-22 17:56:48.929255+00 2025-09-22 17:56:48.929264+00 f t payed 632 1583 +1485 2025-09-22 18:55:50.062091+00 2025-09-22 18:55:50.0621+00 f t pending 633 \N +1486 2025-09-22 18:56:04.005638+00 2025-09-22 18:56:04.005647+00 f t in_progress_vet 633 1583 +1487 2025-09-22 19:42:10.49789+00 2025-09-22 19:42:10.4979+00 f t pending 634 \N +1488 2025-09-22 19:42:22.740459+00 2025-09-22 19:42:22.740468+00 f t in_progress_vet 634 114 +1489 2025-09-22 19:43:02.143814+00 2025-09-22 19:43:02.143824+00 f t pending 635 \N +1490 2025-09-22 19:43:02.150238+00 2025-09-22 19:43:02.150248+00 f t pending 636 \N +1491 2025-09-22 19:43:09.889312+00 2025-09-22 19:43:09.88932+00 f t in_progress_vet 636 1583 +1492 2025-09-22 19:51:38.801788+00 2025-09-22 19:51:38.801797+00 f t vet_asked Veterinario asignado: Ponce Lisandro 636 1583 +1493 2025-09-22 19:52:29.269253+00 2025-09-22 19:52:29.269264+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 15:00:00 636 1583 +1494 2025-09-22 19:53:34.083799+00 2025-09-22 19:53:34.083808+00 f t confirmado 636 \N +1495 2025-09-22 19:53:34.062634+00 2025-09-22 19:53:34.062644+00 f t payed 636 1583 +1496 2025-09-22 19:54:42.434546+00 2025-09-22 19:54:42.434561+00 f t pending 637 \N +1497 2025-09-22 19:54:51.726501+00 2025-09-22 19:54:51.726515+00 f t in_progress_vet 637 1583 +1498 2025-09-22 19:55:07.043173+00 2025-09-22 19:55:07.043188+00 f t vet_asked Veterinario asignado: Ponce Lisandro 637 1583 +1499 2025-09-22 19:55:14.544294+00 2025-09-22 19:55:14.544305+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 13:00:00 637 1583 +1500 2025-09-22 19:55:38.856807+00 2025-09-22 19:55:38.856816+00 f t confirmado 637 \N +1501 2025-09-22 19:55:38.832572+00 2025-09-22 19:55:38.832581+00 f t payed 637 1583 +1502 2025-09-22 20:02:48.769925+00 2025-09-22 20:02:48.769935+00 f t pending 638 \N +1503 2025-09-22 20:02:54.556185+00 2025-09-22 20:02:54.556193+00 f t in_progress_vet 638 1583 +1504 2025-09-22 20:03:21.030781+00 2025-09-22 20:03:21.03079+00 f t vet_asked Veterinario asignado: Dubowik Katerina 638 1583 +1505 2025-09-22 20:03:31.895639+00 2025-09-22 20:03:31.89565+00 f t coordinated Solicitud coordinada para 2025-09-22 a las 18:30:00 638 1583 +1506 2025-09-22 20:03:58.495715+00 2025-09-22 20:03:58.495724+00 f t confirmado 638 \N +1507 2025-09-22 20:03:58.474917+00 2025-09-22 20:03:58.47493+00 f t payed 638 1583 +1508 2025-09-22 20:04:03.761987+00 2025-09-22 20:04:03.761997+00 f t payed 638 1583 +1509 2025-09-22 20:07:59.26437+00 2025-09-22 20:07:59.264379+00 f t vet_asked Veterinario asignado: Ponce Lisandro 633 1583 +1510 2025-09-22 20:08:18.358195+00 2025-09-22 20:08:18.358206+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 10:30:00 633 1583 +1511 2025-09-22 20:09:30.955745+00 2025-09-22 20:09:30.955753+00 f t confirmado 633 \N +1512 2025-09-22 20:09:30.936115+00 2025-09-22 20:09:30.936124+00 f t payed 633 1583 +1513 2025-09-22 20:09:36.355964+00 2025-09-22 20:09:36.355973+00 f t payed 633 1583 +1514 2025-09-22 20:09:40.667605+00 2025-09-22 20:09:40.66762+00 f t payed 633 1583 +1515 2025-09-22 20:09:43.598117+00 2025-09-22 20:09:43.598127+00 f t payed 633 1583 +1516 2025-09-22 20:09:43.946116+00 2025-09-22 20:09:43.946124+00 f t payed 633 1583 +1517 2025-09-22 23:35:56.13372+00 2025-09-22 23:35:56.13373+00 f t pending 639 \N +1518 2025-09-22 23:36:01.364114+00 2025-09-22 23:36:01.364122+00 f t in_progress_vet 639 114 +1519 2025-09-22 23:38:29.74425+00 2025-09-22 23:38:29.74426+00 f t payed 639 114 +1520 2025-09-22 23:38:55.567916+00 2025-09-22 23:38:55.567926+00 f t vet_asked Veterinario asignado: Palummo Mariana 639 114 +1521 2025-09-22 23:39:13.562292+00 2025-09-22 23:39:13.562303+00 f t confirmado 639 \N +1522 2025-09-22 23:39:13.538313+00 2025-09-22 23:39:13.538322+00 f t coordinated Solicitud coordinada para 2025-09-22 a las 17:00:00 639 114 +1523 2025-09-22 23:42:05.706846+00 2025-09-22 23:42:05.706855+00 f t vet_asked Veterinario asignado: Palummo Mariana 634 114 +1524 2025-09-22 23:43:02.070173+00 2025-09-22 23:43:02.070184+00 f t payed 634 114 +1525 2025-09-22 23:43:40.634985+00 2025-09-22 23:43:40.634996+00 f t confirmado 634 \N +1526 2025-09-22 23:43:40.612965+00 2025-09-22 23:43:40.612973+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 20:00:00 634 114 +1527 2025-09-23 00:22:00.97773+00 2025-09-23 00:22:00.977743+00 f t pending 640 \N +1528 2025-09-23 00:22:19.38854+00 2025-09-23 00:22:19.388548+00 f t in_progress_vet 640 114 +1529 2025-09-23 00:22:31.731926+00 2025-09-23 00:22:31.731938+00 f t vet_asked Veterinario asignado: Ponce Lisandro 640 114 +1530 2025-09-23 00:24:07.263115+00 2025-09-23 00:24:07.263124+00 f t payed 640 114 +1531 2025-09-23 00:24:25.266227+00 2025-09-23 00:24:25.266236+00 f t confirmado 640 \N +1532 2025-09-23 00:24:25.242353+00 2025-09-23 00:24:25.242361+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 12:00:00 640 114 +1533 2025-09-23 05:50:42.536298+00 2025-09-23 05:50:42.536313+00 f t pending 641 \N +1534 2025-09-23 10:22:30.258874+00 2025-09-23 10:22:30.258883+00 f t pending 642 \N +1535 2025-09-23 12:08:26.69981+00 2025-09-23 12:08:26.699824+00 f t pending 643 \N +1536 2025-09-23 12:16:58.555811+00 2025-09-23 12:16:58.55582+00 f t in_progress_vet 641 1208 +1537 2025-09-23 12:25:10.18056+00 2025-09-23 12:25:10.180569+00 f t in_progress_vet 642 1208 +1538 2025-09-23 12:26:31.737094+00 2025-09-23 12:26:31.737106+00 f t in_progress_vet 643 1208 +1539 2025-09-23 13:04:48.986391+00 2025-09-23 13:04:48.9864+00 f t vet_asked Veterinario asignado: Palladino Martín 643 1208 +1540 2025-09-23 13:05:00.351185+00 2025-09-23 13:05:00.351197+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 19:30:00 643 1208 +1541 2025-09-23 13:12:38.831351+00 2025-09-23 13:12:38.831367+00 f t confirmado 643 \N +1542 2025-09-23 13:12:38.808039+00 2025-09-23 13:12:38.808047+00 f t payed 643 1208 +1543 2025-09-23 13:40:15.816231+00 2025-09-23 13:40:15.816242+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 19:00:00 642 1208 +1544 2025-09-23 13:57:14.978421+00 2025-09-23 13:57:14.97843+00 f t in_progress_pay 642 122 +1545 2025-09-23 14:00:38.950764+00 2025-09-23 14:00:38.950776+00 f t in_progress_pay 642 122 +1546 2025-09-23 14:01:14.903351+00 2025-09-23 14:01:14.903361+00 f t in_progress_pay 642 122 +1547 2025-09-23 14:01:20.555525+00 2025-09-23 14:01:20.555536+00 f t confirmado 642 \N +1548 2025-09-23 14:01:20.532274+00 2025-09-23 14:01:20.532283+00 f t payed 642 1208 +1549 2025-09-23 14:04:18.543646+00 2025-09-23 14:04:18.543657+00 f t pending 644 \N +1550 2025-09-23 14:21:16.745344+00 2025-09-23 14:21:16.745357+00 f t in_progress_vet 644 1208 +1551 2025-09-23 15:13:57.049886+00 2025-09-23 15:13:57.049899+00 f t rejected D-Abandono Bot 15 110 +1552 2025-09-23 15:14:12.515361+00 2025-09-23 15:14:12.515371+00 f t rejected D-Abandono Bot 16 110 +1553 2025-09-23 15:26:36.747998+00 2025-09-23 15:26:36.748005+00 f t pending 645 \N +1554 2025-09-23 15:26:46.418361+00 2025-09-23 15:26:46.418371+00 f t in_progress_vet 645 1208 +1555 2025-09-23 15:28:03.534946+00 2025-09-23 15:28:03.534954+00 f t coordinated Solicitud coordinada para 2025-09-29 a las 18:00:00 645 1208 +1556 2025-09-23 15:28:07.604169+00 2025-09-23 15:28:07.604184+00 f t vet_asked Veterinario asignado: di Risio Daniela 645 1208 +1557 2025-09-23 15:28:28.829246+00 2025-09-23 15:28:28.829258+00 f t Confirmado 645 \N +1558 2025-09-23 15:28:28.802114+00 2025-09-23 15:28:28.802125+00 f t payed 645 1208 +1559 2025-09-23 15:29:55.614236+00 2025-09-23 15:29:55.614249+00 f t pending 646 \N +1560 2025-09-23 15:30:28.089388+00 2025-09-23 15:30:28.089399+00 f t coordinated Solicitud coordinada para 2025-09-29 a las 17:00:00 646 1208 +1561 2025-09-23 15:30:37.786164+00 2025-09-23 15:30:37.786175+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 646 1208 +1562 2025-09-23 15:30:57.910393+00 2025-09-23 15:30:57.910405+00 f t payed 646 1208 +1563 2025-09-23 15:32:07.104565+00 2025-09-23 15:32:07.104574+00 f t rejected D-Averiguando / Desconocido 646 1208 +1564 2025-09-23 15:32:40.379637+00 2025-09-23 15:32:40.379645+00 f t pending 647 \N +1565 2025-09-23 15:32:45.493955+00 2025-09-23 15:32:45.493964+00 f t in_progress_vet 647 1208 +1566 2025-09-23 15:33:29.076777+00 2025-09-23 15:33:29.076785+00 f t coordinated Solicitud coordinada para 2025-09-29 a las 17:00:00 647 1208 +1567 2025-09-23 15:33:36.008688+00 2025-09-23 15:33:36.008696+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 647 1208 +1568 2025-09-23 15:33:57.276239+00 2025-09-23 15:33:57.276247+00 f t payed 647 1208 +1569 2025-09-23 15:42:29.146929+00 2025-09-23 15:42:29.14694+00 f t Confirmado 647 \N +1570 2025-09-23 15:42:29.11373+00 2025-09-23 15:42:29.113742+00 f t coordinated Solicitud coordinada para 2025-09-29 a las 17:00:00 647 110 +1571 2025-09-23 16:01:07.068318+00 2025-09-23 16:01:07.068332+00 f t pending 648 \N +1572 2025-09-23 16:02:38.152987+00 2025-09-23 16:02:38.152997+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 19:00:00 648 1208 +1573 2025-09-23 16:03:47.982915+00 2025-09-23 16:03:47.982923+00 f t vet_asked Veterinario asignado: Palummo Mariana 648 1208 +1574 2025-09-23 16:04:40.632873+00 2025-09-23 16:04:40.632883+00 f t rejected D-Averiguando / Desconocido 648 1208 +1575 2025-09-23 16:04:57.431079+00 2025-09-23 16:04:57.431089+00 f t rejected D-Abandono Bot 641 1208 +1576 2025-09-23 16:06:39.13024+00 2025-09-23 16:06:39.130251+00 f t pending 649 \N +1577 2025-09-23 16:06:44.39032+00 2025-09-23 16:06:44.390331+00 f t in_progress_vet 649 1208 +1578 2025-09-23 16:07:27.600826+00 2025-09-23 16:07:27.600834+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 19:00:00 649 1208 +1579 2025-09-23 16:07:53.828759+00 2025-09-23 16:07:53.828772+00 f t pending 650 \N +1580 2025-09-23 16:07:55.279154+00 2025-09-23 16:07:55.279163+00 f t vet_asked Veterinario asignado: Palummo Mariana 649 1208 +1581 2025-09-23 16:08:00.328779+00 2025-09-23 16:08:00.328793+00 f t in_progress_vet 650 1583 +1582 2025-09-23 16:08:20.599247+00 2025-09-23 16:08:20.599255+00 f t coordinated Solicitud coordinada para 2025-09-28 a las 11:00:00 650 1583 +1583 2025-09-23 16:08:34.448371+00 2025-09-23 16:08:34.44838+00 f t Confirmado 649 \N +1584 2025-09-23 16:08:34.427932+00 2025-09-23 16:08:34.427941+00 f t payed 649 1208 +1585 2025-09-23 16:08:55.67804+00 2025-09-23 16:08:55.678049+00 f t payed 650 1583 +1586 2025-09-23 16:09:07.881568+00 2025-09-23 16:09:07.881576+00 f t Confirmado 650 \N +1587 2025-09-23 16:09:08.573135+00 2025-09-23 16:09:08.573148+00 f t vet_asked Veterinario asignado: Palummo Mariana 650 1583 +1588 2025-09-23 16:09:17.516601+00 2025-09-23 16:09:17.516609+00 f t vet_accepted 650 1583 +1589 2025-09-23 16:18:49.263232+00 2025-09-23 16:18:49.26324+00 f t rejected D-Averiguando / Desconocido 644 1208 +1590 2025-09-23 16:20:05.612643+00 2025-09-23 16:20:05.612662+00 f t pending 651 \N +1591 2025-09-23 16:20:12.483738+00 2025-09-23 16:20:12.48375+00 f t in_progress_vet 651 1208 +1592 2025-09-23 16:22:02.889897+00 2025-09-23 16:22:02.889905+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 19:30:00 651 1208 +1593 2025-09-23 16:22:08.728761+00 2025-09-23 16:22:08.728769+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 651 1208 +1594 2025-09-23 16:22:32.550006+00 2025-09-23 16:22:32.550014+00 f t Confirmado 651 \N +1595 2025-09-23 16:22:32.530629+00 2025-09-23 16:22:32.53064+00 f t payed 651 1208 +1596 2025-09-23 19:50:29.822941+00 2025-09-23 19:50:29.822953+00 f t pending 652 \N +1597 2025-09-23 19:51:58.119905+00 2025-09-23 19:51:58.119915+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 09:30:00 652 1208 +1598 2025-09-23 19:52:15.0336+00 2025-09-23 19:52:15.033631+00 f t vet_asked Veterinario asignado: Ponce Lisandro 652 1208 +1599 2025-09-23 19:53:23.165424+00 2025-09-23 19:53:23.165437+00 f t pending 653 \N +1600 2025-09-23 19:53:27.327875+00 2025-09-23 19:53:27.327883+00 f t in_progress_vet 653 1208 +1601 2025-09-23 19:53:53.937695+00 2025-09-23 19:53:53.937703+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 09:30:00 653 1208 +1602 2025-09-23 19:55:56.506201+00 2025-09-23 19:55:56.506213+00 f t vet_asked Veterinario asignado: Ponce Lisandro 653 1208 +1603 2025-09-23 19:57:02.737501+00 2025-09-23 19:57:02.737512+00 f t Confirmado 653 \N +1604 2025-09-23 19:57:02.708244+00 2025-09-23 19:57:02.708256+00 f t payed 653 1208 +1605 2025-09-23 19:57:30.946738+00 2025-09-23 19:57:30.94675+00 f t pending 654 \N +1606 2025-09-23 19:57:41.088126+00 2025-09-23 19:57:41.088136+00 f t in_progress_vet 654 1208 +1607 2025-09-23 19:59:13.04481+00 2025-09-23 19:59:13.044821+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 11:00:00 654 1208 +1608 2025-09-23 19:59:21.467325+00 2025-09-23 19:59:21.467337+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 654 1208 +1609 2025-09-23 19:59:43.140149+00 2025-09-23 19:59:43.140159+00 f t Confirmado 654 \N +1610 2025-09-23 19:59:43.115296+00 2025-09-23 19:59:43.115305+00 f t payed 654 1208 +1611 2025-09-23 20:40:38.612482+00 2025-09-23 20:40:38.612494+00 f t pending 655 \N +1612 2025-09-23 20:40:40.268029+00 2025-09-23 20:40:40.268039+00 f t pending 656 \N +1613 2025-09-23 20:40:45.001287+00 2025-09-23 20:40:45.001298+00 f t in_progress_vet 656 1583 +1614 2025-09-23 20:41:14.224463+00 2025-09-23 20:41:14.224471+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 10:00:00 656 1583 +1615 2025-09-23 20:41:20.868829+00 2025-09-23 20:41:20.868837+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 10:00:00 656 1583 +1616 2025-09-23 20:41:26.106338+00 2025-09-23 20:41:26.10635+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 656 1583 +1617 2025-09-23 20:41:27.428309+00 2025-09-23 20:41:27.42832+00 f t vet_accepted 656 1583 +1618 2025-09-23 20:41:27.441159+00 2025-09-23 20:41:27.44117+00 f t in_progress_pay 656 1583 +1619 2025-09-23 20:42:08.961456+00 2025-09-23 20:42:08.961464+00 f t Confirmado 656 \N +1620 2025-09-23 20:42:08.936712+00 2025-09-23 20:42:08.936721+00 f t payed 656 1583 +1621 2025-09-23 23:16:47.714735+00 2025-09-23 23:16:47.714745+00 f t pending 657 \N +1622 2025-09-24 00:04:24.172183+00 2025-09-24 00:04:24.172192+00 f t in_progress_vet 657 113 +1623 2025-09-24 00:06:45.205905+00 2025-09-24 00:06:45.205915+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 18:30:00 657 113 +1624 2025-09-24 00:06:59.815477+00 2025-09-24 00:06:59.815485+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 657 113 +1625 2025-09-24 00:07:01.117306+00 2025-09-24 00:07:01.117313+00 f t vet_accepted 657 113 +1626 2025-09-24 00:07:01.129805+00 2025-09-24 00:07:01.129816+00 f t in_progress_pay 657 113 +1627 2025-09-24 00:12:55.353133+00 2025-09-24 00:12:55.353141+00 f t pending 658 \N +1628 2025-09-24 00:12:59.862414+00 2025-09-24 00:12:59.862421+00 f t in_progress_vet 658 113 +1629 2025-09-24 00:15:13.925501+00 2025-09-24 00:15:13.925511+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 17:30:00 658 113 +1630 2025-09-24 00:15:23.184198+00 2025-09-24 00:15:23.184207+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 658 113 +1631 2025-09-24 00:17:27.888105+00 2025-09-24 00:17:27.888112+00 f t Confirmado 658 \N +1632 2025-09-24 00:17:27.868115+00 2025-09-24 00:17:27.868123+00 f t payed 658 113 +1633 2025-09-24 00:20:27.805211+00 2025-09-24 00:20:27.805221+00 f t pending 659 \N +1634 2025-09-24 00:20:32.597369+00 2025-09-24 00:20:32.597377+00 f t in_progress_vet 659 113 +1635 2025-09-24 00:20:50.089741+00 2025-09-24 00:20:50.089749+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 16:30:00 659 113 +1636 2025-09-24 00:21:25.820021+00 2025-09-24 00:21:25.820031+00 f t vet_asked Veterinario asignado: Kumabe Paula 659 113 +1637 2025-09-24 00:22:55.24294+00 2025-09-24 00:22:55.242948+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 16:30:00 659 113 +1638 2025-09-24 00:23:00.583643+00 2025-09-24 00:23:00.583655+00 f t vet_asked Veterinario asignado: Kumabe Paula 659 113 +1639 2025-09-24 00:23:03.169917+00 2025-09-24 00:23:03.169926+00 f t vet_accepted 659 113 +1640 2025-09-24 00:23:03.181282+00 2025-09-24 00:23:03.181291+00 f t in_progress_pay 659 113 +1641 2025-09-24 00:32:26.085644+00 2025-09-24 00:32:26.085652+00 f t pending 660 \N +1642 2025-09-24 00:32:30.141694+00 2025-09-24 00:32:30.141702+00 f t in_progress_vet 660 113 +1643 2025-09-24 00:32:38.565468+00 2025-09-24 00:32:38.565475+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 09:30:00 660 113 +1644 2025-09-24 00:32:43.433761+00 2025-09-24 00:32:43.433772+00 f t vet_asked Veterinario asignado: Castro Guadalupe 660 113 +1645 2025-09-24 00:34:05.895868+00 2025-09-24 00:34:05.895879+00 f t Confirmado 660 \N +1646 2025-09-24 00:34:05.873105+00 2025-09-24 00:34:05.873117+00 f t payed 660 113 +1647 2025-09-24 00:39:55.76117+00 2025-09-24 00:39:55.76118+00 f t pending 661 \N +1648 2025-09-24 00:40:00.83074+00 2025-09-24 00:40:00.830752+00 f t in_progress_vet 661 113 +1649 2025-09-24 00:40:10.999655+00 2025-09-24 00:40:10.999666+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 20:30:00 661 113 +1650 2025-09-24 00:43:18.843078+00 2025-09-24 00:43:18.84309+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 661 113 +1651 2025-09-24 00:44:13.325379+00 2025-09-24 00:44:13.325388+00 f t Confirmado 661 \N +1652 2025-09-24 00:44:13.304834+00 2025-09-24 00:44:13.304842+00 f t payed 661 113 +1653 2025-09-24 00:46:42.56545+00 2025-09-24 00:46:42.565463+00 f t pending 662 \N +1654 2025-09-24 00:46:54.784654+00 2025-09-24 00:46:54.784664+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 21:30:00 662 113 +1655 2025-09-24 00:48:34.943428+00 2025-09-24 00:48:34.943438+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 17:00:00 657 113 +1656 2025-09-24 00:48:54.62842+00 2025-09-24 00:48:54.628428+00 f t vet_asked Veterinario asignado: Ponce Lisandro 657 113 +1657 2025-09-24 00:51:16.111361+00 2025-09-24 00:51:16.111369+00 f t vet_accepted 657 113 +1658 2025-09-24 00:51:16.123418+00 2025-09-24 00:51:16.123427+00 f t in_progress_pay 657 113 +1659 2025-09-24 00:55:07.5315+00 2025-09-24 00:55:07.531512+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 21:30:00 662 113 +1660 2025-09-24 00:55:25.353895+00 2025-09-24 00:55:25.353903+00 f t vet_asked Veterinario asignado: Inseparables Crematorio 662 113 +1661 2025-09-24 00:55:27.582323+00 2025-09-24 00:55:27.582331+00 f t vet_accepted 662 113 +1662 2025-09-24 00:55:27.593375+00 2025-09-24 00:55:27.593384+00 f t in_progress_pay 662 113 +1663 2025-09-24 00:57:00.167454+00 2025-09-24 00:57:00.167462+00 f t Confirmado 657 \N +1664 2025-09-24 00:57:00.140319+00 2025-09-24 00:57:00.140331+00 f t payed 657 113 +1665 2025-09-24 00:57:51.867192+00 2025-09-24 00:57:51.867202+00 f t Confirmado 659 \N +1666 2025-09-24 00:57:51.842505+00 2025-09-24 00:57:51.842515+00 f t payed 659 113 +1667 2025-09-24 12:06:36.814558+00 2025-09-24 12:06:36.814569+00 f t pending 663 \N +1668 2025-09-24 12:13:11.150845+00 2025-09-24 12:13:11.150857+00 f t in_progress_vet 663 1208 +1669 2025-09-24 12:40:15.352111+00 2025-09-24 12:40:15.352119+00 f t pending 664 \N +1670 2025-09-24 12:53:04.765102+00 2025-09-24 12:53:04.76511+00 f t in_progress_vet 664 1208 +1671 2025-09-24 14:34:26.441962+00 2025-09-24 14:34:26.441971+00 f t pending 665 \N +1672 2025-09-24 14:34:52.512365+00 2025-09-24 14:34:52.512373+00 f t in_progress_vet 665 1208 +1673 2025-09-24 14:35:09.310269+00 2025-09-24 14:35:09.310281+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 13:00:00 665 1208 +1674 2025-09-24 14:35:17.136384+00 2025-09-24 14:35:17.136398+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 665 1208 +1675 2025-09-24 14:36:47.083497+00 2025-09-24 14:36:47.083505+00 f t Confirmado 665 \N +1676 2025-09-24 14:36:47.066094+00 2025-09-24 14:36:47.066102+00 f t payed 665 1208 +1677 2025-09-24 14:39:21.463781+00 2025-09-24 14:39:21.463792+00 f t rejected D-Emergencia 663 1208 +1678 2025-09-24 14:40:17.134682+00 2025-09-24 14:40:17.134692+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 20:00:00 664 1208 +1679 2025-09-24 14:59:48.120799+00 2025-09-24 14:59:48.120809+00 f t pending 666 \N +1680 2025-09-24 14:59:52.793528+00 2025-09-24 14:59:52.793538+00 f t in_progress_vet 666 1208 +1681 2025-09-24 15:00:10.157181+00 2025-09-24 15:00:10.157194+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 16:30:00 666 1208 +1682 2025-09-24 15:01:04.387854+00 2025-09-24 15:01:04.387863+00 f t vet_asked Veterinario asignado: Dubowik Katerina 666 1208 +1683 2025-09-24 15:02:17.270769+00 2025-09-24 15:02:17.270777+00 f t Confirmado 666 \N +1684 2025-09-24 15:02:17.250771+00 2025-09-24 15:02:17.250779+00 f t payed 666 1208 +1685 2025-09-24 15:54:01.457254+00 2025-09-24 15:54:01.457263+00 f t vet_accepted 664 139 +1686 2025-09-24 15:54:01.466731+00 2025-09-24 15:54:01.466741+00 f t in_progress_pay 664 139 +1687 2025-09-24 16:25:04.954725+00 2025-09-24 16:25:04.954741+00 f t Confirmado 664 \N +1688 2025-09-24 16:25:04.898541+00 2025-09-24 16:25:04.898554+00 f t payed 664 1208 +1689 2025-09-24 16:45:52.531432+00 2025-09-24 16:45:52.531441+00 f t pending 667 \N +1690 2025-09-24 16:48:39.854425+00 2025-09-24 16:48:39.854438+00 f t in_progress_vet 667 1208 +1691 2025-09-24 16:50:16.44013+00 2025-09-24 16:50:16.44014+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 08:30:00 667 1208 +1692 2025-09-24 16:54:28.796041+00 2025-09-24 16:54:28.79605+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 667 1208 +1693 2025-09-24 17:16:57.18042+00 2025-09-24 17:16:57.180429+00 f t vet_asked Veterinario asignado: Inseparables Crematorio 662 1208 +1694 2025-09-24 17:18:00.161998+00 2025-09-24 17:18:00.162008+00 f t pending 668 \N +1695 2025-09-24 17:18:05.184038+00 2025-09-24 17:18:05.184049+00 f t in_progress_vet 668 1208 +1696 2025-09-24 17:18:24.159435+00 2025-09-24 17:18:24.159443+00 f t coordinated Solicitud coordinada para 2025-09-23 a las 20:00:00 668 1208 +1697 2025-09-24 17:18:30.893155+00 2025-09-24 17:18:30.893163+00 f t vet_asked Veterinario asignado: Inseparables Crematorio 668 1208 +1698 2025-09-24 17:20:59.79217+00 2025-09-24 17:20:59.792177+00 f t pending 669 \N +1699 2025-09-24 17:21:09.05203+00 2025-09-24 17:21:09.052037+00 f t in_progress_vet 669 1583 +1700 2025-09-24 17:21:23.640379+00 2025-09-24 17:21:23.640387+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 21:30:00 669 1583 +1701 2025-09-24 17:21:44.922386+00 2025-09-24 17:21:44.922394+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 21:30:00 669 1583 +1702 2025-09-24 17:25:10.697678+00 2025-09-24 17:25:10.69769+00 f t vet_asked Veterinario asignado: di Risio Daniela 669 1583 +1703 2025-09-24 17:25:13.034935+00 2025-09-24 17:25:13.034945+00 f t vet_accepted 669 1583 +1704 2025-09-24 17:25:13.045381+00 2025-09-24 17:25:13.045391+00 f t in_progress_pay 669 1583 +1705 2025-09-24 17:26:14.507329+00 2025-09-24 17:26:14.507337+00 f t Confirmado 669 \N +1706 2025-09-24 17:26:14.488492+00 2025-09-24 17:26:14.488505+00 f t payed 669 1583 +1707 2025-09-24 17:26:14.48387+00 2025-09-24 17:26:14.483879+00 f t payed 669 1583 +1708 2025-09-24 17:26:29.897923+00 2025-09-24 17:26:29.897931+00 f t Confirmado 668 \N +1709 2025-09-24 17:26:29.879287+00 2025-09-24 17:26:29.879295+00 f t payed 668 1208 +1710 2025-09-24 17:30:17.404385+00 2025-09-24 17:30:17.404395+00 f t pending 670 \N +1711 2025-09-24 17:30:22.821132+00 2025-09-24 17:30:22.821142+00 f t in_progress_vet 670 1208 +1712 2025-09-24 17:30:31.838095+00 2025-09-24 17:30:31.838102+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 08:30:00 670 1208 +1713 2025-09-24 17:32:52.478651+00 2025-09-24 17:32:52.47866+00 f t Confirmado 667 \N +1714 2025-09-24 17:32:52.457277+00 2025-09-24 17:32:52.457285+00 f t payed 667 1208 +1715 2025-09-24 17:35:15.159118+00 2025-09-24 17:35:15.159126+00 f t vet_asked Veterinario asignado: Osso Virginia 670 1208 +1716 2025-09-24 17:38:48.906186+00 2025-09-24 17:38:48.906197+00 f t Confirmado 670 \N +1717 2025-09-24 17:38:48.881709+00 2025-09-24 17:38:48.881718+00 f t payed 670 1208 +1718 2025-09-24 17:52:29.630321+00 2025-09-24 17:52:29.63033+00 f t pending 671 \N +1719 2025-09-24 17:52:38.107961+00 2025-09-24 17:52:38.10797+00 f t in_progress_vet 671 1208 +1720 2025-09-24 17:52:57.176915+00 2025-09-24 17:52:57.176922+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 16:00:00 671 1208 +1721 2025-09-24 17:53:25.994608+00 2025-09-24 17:53:25.994617+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 671 1208 +1722 2025-09-24 17:55:02.940025+00 2025-09-24 17:55:02.940038+00 f t Confirmado 671 \N +1723 2025-09-24 17:55:02.874359+00 2025-09-24 17:55:02.874373+00 f t payed 671 1208 +1724 2025-09-24 17:56:19.900623+00 2025-09-24 17:56:19.900631+00 f t pending 672 \N +1725 2025-09-24 17:56:25.67796+00 2025-09-24 17:56:25.677968+00 f t in_progress_vet 672 1208 +1726 2025-09-24 17:56:35.747502+00 2025-09-24 17:56:35.74751+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 16:00:00 672 1208 +1727 2025-09-24 17:57:03.465102+00 2025-09-24 17:57:03.465113+00 f t payed 672 1208 +1728 2025-09-24 17:57:20.757267+00 2025-09-24 17:57:20.757276+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 672 1208 +1729 2025-09-24 17:58:19.741194+00 2025-09-24 17:58:19.741203+00 f t pending 673 \N +1730 2025-09-24 17:58:37.647633+00 2025-09-24 17:58:37.64764+00 f t in_progress_vet 673 1208 +1731 2025-09-24 17:59:07.44815+00 2025-09-24 17:59:07.448157+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 16:00:00 673 1208 +1732 2025-09-24 17:59:16.974499+00 2025-09-24 17:59:16.974508+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 673 1208 +1733 2025-09-24 17:59:40.418716+00 2025-09-24 17:59:40.418725+00 f t payed 673 1208 +1734 2025-09-24 18:25:28.223274+00 2025-09-24 18:25:28.223286+00 f t pending 674 \N +1735 2025-09-24 18:25:35.087386+00 2025-09-24 18:25:35.087396+00 f t in_progress_vet 674 1583 +1736 2025-09-24 18:26:05.356331+00 2025-09-24 18:26:05.356339+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 08:30:00 674 1583 +1737 2025-09-24 18:26:05.35628+00 2025-09-24 18:26:05.35629+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 08:30:00 674 1583 +1738 2025-09-24 18:26:34.601982+00 2025-09-24 18:26:34.601992+00 f t vet_asked Veterinario asignado: Palummo Mariana 674 1583 +1739 2025-09-24 18:26:35.677301+00 2025-09-24 18:26:35.677311+00 f t vet_accepted 674 1583 +1740 2025-09-24 18:26:35.688935+00 2025-09-24 18:26:35.688948+00 f t in_progress_pay 674 1583 +1741 2025-09-24 18:27:30.040178+00 2025-09-24 18:27:30.040186+00 f t Confirmado 674 \N +1742 2025-09-24 18:27:30.017395+00 2025-09-24 18:27:30.017406+00 f t payed 674 1583 +1743 2025-09-24 19:27:56.641234+00 2025-09-24 19:27:56.641244+00 f t in_progress_vet 675 1583 +1744 2025-09-24 19:27:56.636786+00 2025-09-24 19:27:56.636795+00 f t in_progress_vet 675 1583 +1745 2025-09-24 19:31:12.296554+00 2025-09-24 19:31:12.296565+00 f t pending 676 \N +1746 2025-09-24 19:31:17.463725+00 2025-09-24 19:31:17.463733+00 f t in_progress_vet 676 1583 +1747 2025-09-24 19:33:40.295185+00 2025-09-24 19:33:40.295192+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 18:00:00 676 1583 +1748 2025-09-24 19:33:48.797381+00 2025-09-24 19:33:48.797393+00 f t vet_asked Veterinario asignado: Ponce Lisandro 676 1583 +1749 2025-09-24 19:33:51.881878+00 2025-09-24 19:33:51.881886+00 f t vet_accepted 676 1583 +1750 2025-09-24 19:33:51.890645+00 2025-09-24 19:33:51.890654+00 f t in_progress_pay 676 1583 +1751 2025-09-24 19:35:33.98874+00 2025-09-24 19:35:33.98875+00 f t Confirmado 676 \N +1752 2025-09-24 19:35:33.964517+00 2025-09-24 19:35:33.964528+00 f t payed 676 1583 +1753 2025-09-24 19:51:32.309085+00 2025-09-24 19:51:32.3091+00 f t pending 677 \N +1754 2025-09-24 19:51:37.151286+00 2025-09-24 19:51:37.1513+00 f t in_progress_vet 677 1583 +1755 2025-09-24 19:51:46.769774+00 2025-09-24 19:51:46.769786+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 21:00:00 677 1583 +1756 2025-09-24 19:52:05.994442+00 2025-09-24 19:52:05.994456+00 f t vet_asked Veterinario asignado: Palummo Mariana 677 1583 +1757 2025-09-24 19:52:10.623932+00 2025-09-24 19:52:10.623942+00 f t vet_asked Veterinario asignado: Palummo Mariana 677 1583 +1758 2025-09-24 19:52:11.842131+00 2025-09-24 19:52:11.84214+00 f t vet_accepted 677 1583 +1759 2025-09-24 19:52:11.85345+00 2025-09-24 19:52:11.85346+00 f t in_progress_pay 677 1583 +1760 2025-09-24 19:52:32.153914+00 2025-09-24 19:52:32.153922+00 f t Confirmado 677 \N +1761 2025-09-24 19:52:32.131449+00 2025-09-24 19:52:32.131459+00 f t payed 677 1583 +1762 2025-09-24 21:15:08.130672+00 2025-09-24 21:15:08.130689+00 f t pending 678 \N +1763 2025-09-24 21:16:26.0024+00 2025-09-24 21:16:26.002412+00 f t in_progress_vet 678 1583 +1764 2025-09-24 21:17:49.177336+00 2025-09-24 21:17:49.177344+00 f t coordinated Solicitud coordinada para 2025-09-24 a las 19:30:00 678 1583 +1765 2025-09-24 21:40:23.704922+00 2025-09-24 21:40:23.704934+00 f t vet_asked Veterinario asignado: Palladino Martín 678 1583 +1766 2025-09-24 21:40:25.732361+00 2025-09-24 21:40:25.732369+00 f t vet_accepted 678 1583 +1767 2025-09-24 21:40:25.742373+00 2025-09-24 21:40:25.742382+00 f t in_progress_pay 678 1583 +1768 2025-09-24 21:40:36.30742+00 2025-09-24 21:40:36.307428+00 f t Confirmado 678 \N +1769 2025-09-24 21:40:36.289246+00 2025-09-24 21:40:36.289255+00 f t payed 678 1583 +1770 2025-09-25 02:30:42.036744+00 2025-09-25 02:30:42.036753+00 f t pending 679 \N +1771 2025-09-25 04:49:33.615258+00 2025-09-25 04:49:33.615269+00 f t pending 680 \N +1772 2025-09-25 06:12:35.152018+00 2025-09-25 06:12:35.152031+00 f t pending 681 \N +1773 2025-09-25 12:10:30.639902+00 2025-09-25 12:10:30.639913+00 f t in_progress_vet 679 1208 +1774 2025-09-25 12:10:41.820342+00 2025-09-25 12:10:41.820353+00 f t in_progress_vet 680 1208 +1775 2025-09-25 12:10:50.63615+00 2025-09-25 12:10:50.63616+00 f t in_progress_vet 681 1208 +1776 2025-09-25 13:08:04.634737+00 2025-09-25 13:08:04.634747+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 20:00:00 680 1208 +1777 2025-09-25 13:08:12.854814+00 2025-09-25 13:08:12.854827+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 680 1208 +1778 2025-09-25 13:11:25.043853+00 2025-09-25 13:11:25.043861+00 f t Confirmado 680 \N +1779 2025-09-25 13:11:25.020279+00 2025-09-25 13:11:25.020289+00 f t payed 680 1208 +1780 2025-09-25 13:11:32.071327+00 2025-09-25 13:11:32.071337+00 f t payed 680 1208 +1781 2025-09-25 13:35:10.049374+00 2025-09-25 13:35:10.049387+00 f t pending 682 \N +1782 2025-09-25 13:35:14.333495+00 2025-09-25 13:35:14.333504+00 f t in_progress_vet 682 1208 +1783 2025-09-25 13:35:27.510949+00 2025-09-25 13:35:27.510958+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 12:30:00 682 1208 +1784 2025-09-25 13:35:33.810677+00 2025-09-25 13:35:33.81069+00 f t vet_asked Veterinario asignado: Castro Guadalupe 682 1208 +1785 2025-09-25 13:37:00.493423+00 2025-09-25 13:37:00.493434+00 f t Confirmado 682 \N +1786 2025-09-25 13:37:00.464806+00 2025-09-25 13:37:00.464816+00 f t payed 682 1208 +1787 2025-09-25 13:40:28.233397+00 2025-09-25 13:40:28.233408+00 f t pending 683 \N +1788 2025-09-25 13:40:32.982391+00 2025-09-25 13:40:32.982399+00 f t in_progress_vet 683 1208 +1789 2025-09-25 14:17:01.959594+00 2025-09-25 14:17:01.959608+00 f t pending 684 \N +1790 2025-09-25 14:17:07.722027+00 2025-09-25 14:17:07.722039+00 f t in_progress_vet 684 1208 +1791 2025-09-25 14:18:35.765681+00 2025-09-25 14:18:35.765689+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 12:00:00 684 1208 +1792 2025-09-25 14:18:40.73276+00 2025-09-25 14:18:40.732769+00 f t vet_asked Veterinario asignado: Kumabe Paula 684 1208 +1793 2025-09-25 14:19:49.694429+00 2025-09-25 14:19:49.694438+00 f t Confirmado 684 \N +1794 2025-09-25 14:19:49.674158+00 2025-09-25 14:19:49.674168+00 f t payed 684 1208 +1795 2025-09-25 14:20:05.67684+00 2025-09-25 14:20:05.676855+00 f t payed 684 1208 +1796 2025-09-25 14:31:31.903196+00 2025-09-25 14:31:31.903208+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 16:00:00 683 1208 +1797 2025-09-25 14:31:42.333606+00 2025-09-25 14:31:42.333614+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 683 1208 +1798 2025-09-25 14:31:55.767344+00 2025-09-25 14:31:55.767353+00 f t Confirmado 683 \N +1799 2025-09-25 14:31:55.742311+00 2025-09-25 14:31:55.742323+00 f t payed 683 1208 +1800 2025-09-25 14:50:46.20629+00 2025-09-25 14:50:46.206301+00 f t pending 685 \N +1801 2025-09-25 14:50:51.782994+00 2025-09-25 14:50:51.783006+00 f t in_progress_vet 685 1208 +1802 2025-09-25 14:56:10.306628+00 2025-09-25 14:56:10.306639+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 13:00:00 685 1208 +1803 2025-09-25 14:56:31.904195+00 2025-09-25 14:56:31.904204+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 685 1208 +1804 2025-09-25 14:57:29.378012+00 2025-09-25 14:57:29.378023+00 f t Confirmado 685 \N +1805 2025-09-25 14:57:29.356272+00 2025-09-25 14:57:29.356283+00 f t payed 685 1208 +1806 2025-09-25 15:14:58.471093+00 2025-09-25 15:14:58.471102+00 f t pending 686 \N +1807 2025-09-25 15:14:58.669377+00 2025-09-25 15:14:58.669387+00 f t pending 687 \N +1808 2025-09-25 15:15:03.6239+00 2025-09-25 15:15:03.623914+00 f t in_progress_vet 687 1208 +1809 2025-09-25 15:15:16.046647+00 2025-09-25 15:15:16.046655+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 18:30:00 687 1208 +1810 2025-09-25 15:20:26.029357+00 2025-09-25 15:20:26.029367+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 687 1208 +1811 2025-09-25 15:25:25.050937+00 2025-09-25 15:25:25.050948+00 f t Confirmado 687 \N +1812 2025-09-25 15:25:25.025971+00 2025-09-25 15:25:25.025981+00 f t payed 687 1208 +1813 2025-09-25 15:53:21.108854+00 2025-09-25 15:53:21.108868+00 f t pending 688 \N +1814 2025-09-25 15:53:26.393288+00 2025-09-25 15:53:26.393298+00 f t in_progress_vet 688 1208 +1815 2025-09-25 15:54:01.552283+00 2025-09-25 15:54:01.552291+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 10:00:00 688 1208 +1816 2025-09-25 15:54:34.209027+00 2025-09-25 15:54:34.209035+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 688 1208 +1817 2025-09-25 15:56:50.704852+00 2025-09-25 15:56:50.704859+00 f t Confirmado 688 \N +1818 2025-09-25 15:56:50.684342+00 2025-09-25 15:56:50.684354+00 f t payed 688 1208 +1819 2025-09-25 15:57:04.149706+00 2025-09-25 15:57:04.149718+00 f t payed 688 1208 +1820 2025-09-25 16:00:07.087876+00 2025-09-25 16:00:07.087893+00 f t pending 689 \N +1821 2025-09-25 16:00:12.313892+00 2025-09-25 16:00:12.313905+00 f t in_progress_vet 689 1208 +1822 2025-09-25 16:00:22.515719+00 2025-09-25 16:00:22.51573+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 11:30:00 689 1208 +1823 2025-09-25 16:00:44.701176+00 2025-09-25 16:00:44.701188+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 689 1208 +1824 2025-09-25 16:01:15.008826+00 2025-09-25 16:01:15.00884+00 f t Confirmado 689 \N +1825 2025-09-25 16:01:14.976167+00 2025-09-25 16:01:14.976178+00 f t payed 689 1208 +1826 2025-09-25 16:17:25.481759+00 2025-09-25 16:17:25.481769+00 f t pending 690 \N +1827 2025-09-25 16:20:50.225606+00 2025-09-25 16:20:50.225615+00 f t pending 691 \N +1828 2025-09-25 16:20:54.988251+00 2025-09-25 16:20:54.988259+00 f t in_progress_vet 691 1208 +1829 2025-09-25 16:21:07.037275+00 2025-09-25 16:21:07.037286+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 21:00:00 691 1208 +1830 2025-09-25 16:21:28.853657+00 2025-09-25 16:21:28.853667+00 f t vet_asked Veterinario asignado: di Risio Daniela 691 1208 +1831 2025-09-25 16:22:07.240632+00 2025-09-25 16:22:07.24064+00 f t Confirmado 691 \N +1832 2025-09-25 16:22:07.221086+00 2025-09-25 16:22:07.221098+00 f t payed 691 1208 +1833 2025-09-25 16:26:52.582003+00 2025-09-25 16:26:52.582011+00 f t pending 692 \N +1834 2025-09-25 16:26:57.448386+00 2025-09-25 16:26:57.448398+00 f t in_progress_vet 692 1208 +1835 2025-09-25 16:27:04.191315+00 2025-09-25 16:27:04.191323+00 f t in_progress_vet 692 1208 +1836 2025-09-25 16:27:24.478079+00 2025-09-25 16:27:24.478088+00 f t coordinated Solicitud coordinada para 2025-09-29 a las 17:30:00 692 1208 +1837 2025-09-25 16:27:39.913962+00 2025-09-25 16:27:39.913974+00 f t vet_asked Veterinario asignado: Vecino Carolina 692 1208 +1838 2025-09-25 16:27:58.036322+00 2025-09-25 16:27:58.036334+00 f t Confirmado 692 \N +1839 2025-09-25 16:27:58.013654+00 2025-09-25 16:27:58.013663+00 f t payed 692 1208 +1840 2025-09-25 16:35:13.582205+00 2025-09-25 16:35:13.58222+00 f t pending 693 \N +1841 2025-09-25 16:35:18.848124+00 2025-09-25 16:35:18.848136+00 f t in_progress_vet 693 1208 +1842 2025-09-25 16:35:31.792911+00 2025-09-25 16:35:31.792922+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 15:00:00 693 1208 +1843 2025-09-25 16:35:59.783165+00 2025-09-25 16:35:59.783175+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 693 1208 +1844 2025-09-25 16:38:36.901819+00 2025-09-25 16:38:36.901832+00 f t Confirmado 693 \N +1845 2025-09-25 16:38:36.872557+00 2025-09-25 16:38:36.87257+00 f t payed 693 1208 +1846 2025-09-25 16:39:53.88758+00 2025-09-25 16:39:53.887591+00 f t in_progress_vet 690 1583 +1847 2025-09-25 16:44:35.50799+00 2025-09-25 16:44:35.508003+00 f t rejected D-Abandono Bot 681 1208 +1848 2025-09-25 17:31:31.24704+00 2025-09-25 17:31:31.247051+00 f t pending 694 \N +1849 2025-09-25 17:31:36.740059+00 2025-09-25 17:31:36.74007+00 f t in_progress_vet 694 1208 +1850 2025-09-25 17:31:56.986015+00 2025-09-25 17:31:56.986025+00 f t coordinated Solicitud coordinada para 2025-09-29 a las 19:30:00 694 1208 +1851 2025-09-25 17:33:15.442817+00 2025-09-25 17:33:15.442829+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 694 1208 +1852 2025-09-25 17:34:19.626581+00 2025-09-25 17:34:19.626595+00 f t Confirmado 694 \N +1853 2025-09-25 17:34:19.594504+00 2025-09-25 17:34:19.594516+00 f t payed 694 1208 +1854 2025-09-25 17:42:08.21+00 2025-09-25 17:42:08.210008+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 20:30:00 679 1208 +1855 2025-09-25 17:42:34.69425+00 2025-09-25 17:42:34.694262+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 679 1208 +1856 2025-09-25 17:43:06.397408+00 2025-09-25 17:43:06.397421+00 f t pending 695 \N +1857 2025-09-25 17:43:11.515217+00 2025-09-25 17:43:11.515229+00 f t in_progress_vet 695 1583 +1858 2025-09-25 17:43:18.737457+00 2025-09-25 17:43:18.737466+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 21:00:00 695 1583 +1859 2025-09-25 17:43:55.416925+00 2025-09-25 17:43:55.416936+00 f t Confirmado 679 \N +1860 2025-09-25 17:43:55.391891+00 2025-09-25 17:43:55.3919+00 f t payed 679 1208 +1861 2025-09-25 17:44:45.091234+00 2025-09-25 17:44:45.091247+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 695 1583 +1862 2025-09-25 17:44:46.644555+00 2025-09-25 17:44:46.644567+00 f t vet_accepted 695 1583 +1863 2025-09-25 17:44:46.663571+00 2025-09-25 17:44:46.66358+00 f t in_progress_pay 695 1583 +1864 2025-09-25 17:45:24.174408+00 2025-09-25 17:45:24.174419+00 f t Confirmado 695 \N +1865 2025-09-25 17:45:24.151342+00 2025-09-25 17:45:24.151355+00 f t payed 695 1583 +1866 2025-09-25 17:52:12.529909+00 2025-09-25 17:52:12.529922+00 f t pending 696 \N +1867 2025-09-25 17:56:59.086964+00 2025-09-25 17:56:59.086974+00 f t in_progress_vet 696 1583 +1868 2025-09-25 17:57:16.705381+00 2025-09-25 17:57:16.705389+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 20:00:00 696 1583 +1869 2025-09-25 18:58:10.505723+00 2025-09-25 18:58:10.505731+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 09:00:00 690 1583 +1870 2025-09-25 19:04:11.453188+00 2025-09-25 19:04:11.453198+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 690 1583 +1871 2025-09-25 19:04:12.30135+00 2025-09-25 19:04:12.301362+00 f t vet_accepted 690 1583 +1872 2025-09-25 19:04:12.313569+00 2025-09-25 19:04:12.313581+00 f t in_progress_pay 690 1583 +1873 2025-09-25 19:04:22.718211+00 2025-09-25 19:04:22.718224+00 f t Confirmado 690 \N +1874 2025-09-25 19:04:22.690487+00 2025-09-25 19:04:22.690496+00 f t payed 690 1583 +1875 2025-09-25 19:40:10.735914+00 2025-09-25 19:40:10.735926+00 f t pending 697 \N +1876 2025-09-25 19:40:15.717677+00 2025-09-25 19:40:15.717689+00 f t in_progress_vet 697 1583 +1877 2025-09-25 19:40:26.944972+00 2025-09-25 19:40:26.944981+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 13:00:00 697 1583 +1878 2025-09-25 19:41:29.177322+00 2025-09-25 19:41:29.177331+00 f t vet_asked Veterinario asignado: Ponce Lisandro 697 1583 +1879 2025-09-25 19:41:30.028467+00 2025-09-25 19:41:30.028484+00 f t vet_accepted 697 1583 +1880 2025-09-25 19:41:30.03897+00 2025-09-25 19:41:30.038981+00 f t in_progress_pay 697 1583 +1881 2025-09-25 19:42:13.77611+00 2025-09-25 19:42:13.776117+00 f t Confirmado 697 \N +1882 2025-09-25 19:42:13.754847+00 2025-09-25 19:42:13.754855+00 f t payed 697 1583 +1883 2025-09-25 19:45:00.268367+00 2025-09-25 19:45:00.268375+00 f t coordinated Solicitud coordinada para 2025-09-25 a las 19:30:00 696 1583 +1884 2025-09-25 19:45:07.03453+00 2025-09-25 19:45:07.03454+00 f t vet_asked Veterinario asignado: Delfino Gerardo 696 1583 +1885 2025-09-25 19:45:08.311648+00 2025-09-25 19:45:08.311662+00 f t vet_accepted 696 1583 +1886 2025-09-25 19:45:08.326454+00 2025-09-25 19:45:08.326464+00 f t in_progress_pay 696 1583 +1887 2025-09-25 19:45:27.966611+00 2025-09-25 19:45:27.96662+00 f t Confirmado 696 \N +1888 2025-09-25 19:45:27.944096+00 2025-09-25 19:45:27.944105+00 f t payed 696 1583 +1889 2025-09-25 21:51:53.721823+00 2025-09-25 21:51:53.721877+00 f t pending 698 \N +1890 2025-09-25 21:52:02.52748+00 2025-09-25 21:52:02.527494+00 f t in_progress_vet 698 1583 +1891 2025-09-25 21:52:17.068158+00 2025-09-25 21:52:17.068168+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 14:00:00 698 1583 +1892 2025-09-25 21:52:31.157182+00 2025-09-25 21:52:31.157191+00 f t vet_asked Veterinario asignado: Campo Silvia 698 1583 +1893 2025-09-25 21:52:32.222814+00 2025-09-25 21:52:32.222823+00 f t vet_accepted 698 1583 +1894 2025-09-25 21:52:32.233691+00 2025-09-25 21:52:32.233702+00 f t in_progress_pay 698 1583 +1895 2025-09-25 21:53:37.592895+00 2025-09-25 21:53:37.592905+00 f t Confirmado 698 \N +1896 2025-09-25 21:53:37.570217+00 2025-09-25 21:53:37.570227+00 f t payed 698 1583 +1897 2025-09-25 21:55:47.498043+00 2025-09-25 21:55:47.498055+00 f t pending 699 \N +1898 2025-09-25 21:55:54.704779+00 2025-09-25 21:55:54.704788+00 f t in_progress_vet 699 1583 +1899 2025-09-25 22:00:39.257791+00 2025-09-25 22:00:39.2578+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 15:00:00 699 1583 +1900 2025-09-25 22:01:00.962418+00 2025-09-25 22:01:00.962429+00 f t vet_asked Veterinario asignado: Campo Silvia 699 1583 +1901 2025-09-25 22:01:01.884146+00 2025-09-25 22:01:01.884159+00 f t vet_accepted 699 1583 +1902 2025-09-25 22:01:01.904917+00 2025-09-25 22:01:01.904928+00 f t in_progress_pay 699 1583 +1903 2025-09-25 23:47:02.94153+00 2025-09-25 23:47:02.941543+00 f t pending 700 \N +1904 2025-09-25 23:47:13.843926+00 2025-09-25 23:47:13.843938+00 f t in_progress_vet 700 113 +1905 2025-09-25 23:47:24.29623+00 2025-09-25 23:47:24.296239+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 19:30:00 700 113 +1906 2025-09-25 23:47:47.518126+00 2025-09-25 23:47:47.518136+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 700 113 +1907 2025-09-25 23:47:50.943119+00 2025-09-25 23:47:50.943172+00 f t vet_accepted 700 113 +1908 2025-09-25 23:47:50.954449+00 2025-09-25 23:47:50.954462+00 f t in_progress_pay 700 113 +1909 2025-09-25 23:51:06.799667+00 2025-09-25 23:51:06.799678+00 f t Confirmado 700 \N +1910 2025-09-25 23:51:06.772285+00 2025-09-25 23:51:06.772294+00 f t payed 700 113 +1911 2025-09-26 01:04:57.304121+00 2025-09-26 01:04:57.304131+00 f t pending 701 \N +1912 2025-09-26 02:13:23.999923+00 2025-09-26 02:13:23.999946+00 f t pending 702 \N +1913 2025-09-26 12:24:18.486991+00 2025-09-26 12:24:18.487001+00 f t in_progress_vet 702 1583 +1914 2025-09-26 13:26:02.16727+00 2025-09-26 13:26:02.167285+00 f t pending 703 \N +1915 2025-09-26 13:56:08.332947+00 2025-09-26 13:56:08.332959+00 f t in_progress_vet 703 1583 +1916 2025-09-26 13:56:41.085534+00 2025-09-26 13:56:41.085542+00 f t coordinated Solicitud coordinada para 2025-09-29 a las 17:00:00 703 1583 +1917 2025-09-26 14:23:16.029089+00 2025-09-26 14:23:16.029103+00 f t pending 704 \N +1918 2025-09-26 14:29:00.457754+00 2025-09-26 14:29:00.457766+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 13:00:00 703 1583 +1919 2025-09-26 14:29:06.726621+00 2025-09-26 14:29:06.72663+00 f t vet_asked Veterinario asignado: Castro Guadalupe 703 1583 +1920 2025-09-26 14:29:07.503691+00 2025-09-26 14:29:07.503701+00 f t vet_accepted 703 1583 +1921 2025-09-26 14:29:07.516281+00 2025-09-26 14:29:07.516292+00 f t in_progress_pay 703 1583 +1922 2025-09-26 14:29:51.07693+00 2025-09-26 14:29:51.076938+00 f t Confirmado 703 \N +1923 2025-09-26 14:29:51.056764+00 2025-09-26 14:29:51.056773+00 f t payed 703 1583 +1924 2025-09-26 14:35:13.875655+00 2025-09-26 14:35:13.875665+00 f t pending 705 \N +1925 2025-09-26 14:47:33.353544+00 2025-09-26 14:47:33.353556+00 f t pending 706 \N +1926 2025-09-26 14:47:38.196266+00 2025-09-26 14:47:38.196276+00 f t in_progress_vet 706 1583 +1927 2025-09-26 14:47:45.833965+00 2025-09-26 14:47:45.833976+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 17:00:00 706 1583 +1928 2025-09-26 14:47:54.172676+00 2025-09-26 14:47:54.172685+00 f t vet_asked Veterinario asignado: Ponce Lisandro 706 1583 +1929 2025-09-26 14:47:54.925181+00 2025-09-26 14:47:54.925193+00 f t vet_accepted 706 1583 +1930 2025-09-26 14:47:54.936693+00 2025-09-26 14:47:54.936706+00 f t in_progress_pay 706 1583 +1931 2025-09-26 14:49:03.880533+00 2025-09-26 14:49:03.880543+00 f t Confirmado 706 \N +1932 2025-09-26 14:49:03.85892+00 2025-09-26 14:49:03.85893+00 f t payed 706 1583 +1933 2025-09-26 15:17:57.899317+00 2025-09-26 15:17:57.899327+00 f t pending 707 \N +1934 2025-09-26 15:18:03.254787+00 2025-09-26 15:18:03.2548+00 f t in_progress_vet 707 1583 +1935 2025-09-26 15:18:13.287216+00 2025-09-26 15:18:13.287227+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 16:30:00 707 1583 +1936 2025-09-26 15:18:24.171329+00 2025-09-26 15:18:24.171341+00 f t vet_asked Veterinario asignado: Campo Silvia 707 1583 +1937 2025-09-26 15:20:46.555811+00 2025-09-26 15:20:46.555819+00 f t Confirmado 707 \N +1938 2025-09-26 15:20:46.536778+00 2025-09-26 15:20:46.53679+00 f t payed 707 1583 +1939 2025-09-26 15:45:00.93908+00 2025-09-26 15:45:00.939094+00 f t pending 708 \N +1940 2025-09-26 15:46:41.947797+00 2025-09-26 15:46:41.947809+00 f t in_progress_vet 708 1583 +1941 2025-09-26 15:46:51.939012+00 2025-09-26 15:46:51.939019+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 14:00:00 708 1583 +1942 2025-09-26 15:46:58.379489+00 2025-09-26 15:46:58.3795+00 f t vet_asked Veterinario asignado: Castro Guadalupe 708 1583 +1943 2025-09-26 15:46:59.036684+00 2025-09-26 15:46:59.036693+00 f t vet_accepted 708 1583 +1944 2025-09-26 15:46:59.046137+00 2025-09-26 15:46:59.046147+00 f t in_progress_pay 708 1583 +1945 2025-09-26 15:47:34.620882+00 2025-09-26 15:47:34.620891+00 f t Confirmado 708 \N +1946 2025-09-26 15:47:34.599321+00 2025-09-26 15:47:34.599334+00 f t payed 708 1583 +1947 2025-09-26 16:34:05.430603+00 2025-09-26 16:34:05.430612+00 f t in_progress_vet 705 1583 +1948 2025-09-26 16:34:43.421228+00 2025-09-26 16:34:43.421237+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 11:00:00 705 1583 +1949 2025-09-26 16:35:22.987822+00 2025-09-26 16:35:22.987831+00 f t vet_asked Veterinario asignado: Palummo Mariana 705 1583 +1950 2025-09-26 16:35:23.722306+00 2025-09-26 16:35:23.722319+00 f t vet_accepted 705 1583 +1951 2025-09-26 16:35:23.733992+00 2025-09-26 16:35:23.734002+00 f t in_progress_pay 705 1583 +1952 2025-09-26 16:40:59.800101+00 2025-09-26 16:40:59.800112+00 f t pending 709 \N +1953 2025-09-26 16:41:10.805546+00 2025-09-26 16:41:10.805559+00 f t in_progress_vet 709 1583 +1954 2025-09-26 16:41:23.934845+00 2025-09-26 16:41:23.934854+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 17:00:00 709 1583 +1955 2025-09-26 16:41:40.446344+00 2025-09-26 16:41:40.446352+00 f t vet_asked Veterinario asignado: Palladino Martín 709 1583 +1956 2025-09-26 16:41:41.169725+00 2025-09-26 16:41:41.169733+00 f t vet_accepted 709 1583 +1957 2025-09-26 16:41:41.179119+00 2025-09-26 16:41:41.179128+00 f t in_progress_pay 709 1583 +1958 2025-09-26 16:41:52.86836+00 2025-09-26 16:41:52.868372+00 f t Confirmado 709 \N +1959 2025-09-26 16:41:52.848856+00 2025-09-26 16:41:52.848867+00 f t payed 709 1583 +1960 2025-09-26 16:45:27.976181+00 2025-09-26 16:45:27.976193+00 f t Confirmado 705 \N +1961 2025-09-26 16:45:27.952976+00 2025-09-26 16:45:27.952985+00 f t payed 705 1583 +1962 2025-09-26 17:14:38.864471+00 2025-09-26 17:14:38.86448+00 f t pending 710 \N +1963 2025-09-26 17:14:43.95212+00 2025-09-26 17:14:43.952132+00 f t in_progress_vet 710 1583 +1964 2025-09-26 17:14:50.943764+00 2025-09-26 17:14:50.943772+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 13:00:00 710 1583 +1965 2025-09-26 17:15:06.575839+00 2025-09-26 17:15:06.575852+00 f t vet_asked Veterinario asignado: Ponce Lisandro 710 1583 +1966 2025-09-26 17:15:08.015474+00 2025-09-26 17:15:08.015486+00 f t vet_accepted 710 1583 +1967 2025-09-26 17:15:08.033692+00 2025-09-26 17:15:08.033705+00 f t in_progress_pay 710 1583 +1968 2025-09-26 17:16:23.960932+00 2025-09-26 17:16:23.960941+00 f t Confirmado 710 \N +1969 2025-09-26 17:16:23.935719+00 2025-09-26 17:16:23.935727+00 f t payed 710 1583 +1970 2025-09-26 18:07:07.911822+00 2025-09-26 18:07:07.911833+00 f t pending 711 \N +1971 2025-09-26 18:07:18.515773+00 2025-09-26 18:07:18.51578+00 f t in_progress_vet 711 1583 +1972 2025-09-26 18:07:27.20375+00 2025-09-26 18:07:27.203762+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 19:00:00 711 1583 +1973 2025-09-26 18:08:38.208179+00 2025-09-26 18:08:38.208191+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 711 1583 +1974 2025-09-26 18:08:39.117581+00 2025-09-26 18:08:39.11759+00 f t vet_accepted 711 1583 +1975 2025-09-26 18:08:39.129168+00 2025-09-26 18:08:39.129178+00 f t in_progress_pay 711 1583 +1976 2025-09-26 18:09:20.697589+00 2025-09-26 18:09:20.697601+00 f t Confirmado 711 \N +1977 2025-09-26 18:09:20.675757+00 2025-09-26 18:09:20.675766+00 f t payed 711 1583 +1978 2025-09-26 18:24:10.142525+00 2025-09-26 18:24:10.142539+00 f t pending 712 \N +1979 2025-09-26 18:24:16.423988+00 2025-09-26 18:24:16.423998+00 f t in_progress_vet 712 1583 +1980 2025-09-26 18:24:33.835872+00 2025-09-26 18:24:33.835879+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 14:00:00 712 1583 +1981 2025-09-26 18:24:52.518344+00 2025-09-26 18:24:52.518354+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 712 1583 +1982 2025-09-26 18:24:53.304083+00 2025-09-26 18:24:53.304095+00 f t vet_accepted 712 1583 +1983 2025-09-26 18:24:53.314834+00 2025-09-26 18:24:53.314843+00 f t in_progress_pay 712 1583 +1984 2025-09-26 18:28:06.771062+00 2025-09-26 18:28:06.771075+00 f t Confirmado 712 \N +1985 2025-09-26 18:28:06.738784+00 2025-09-26 18:28:06.738796+00 f t payed 712 1583 +1986 2025-09-26 19:38:19.701439+00 2025-09-26 19:38:19.701447+00 f t pending 713 \N +1987 2025-09-26 19:39:03.67344+00 2025-09-26 19:39:03.673452+00 f t in_progress_vet 713 1583 +1988 2025-09-26 19:39:12.510805+00 2025-09-26 19:39:12.510813+00 f t coordinated Solicitud coordinada para 2025-09-28 a las 11:00:00 713 1583 +1989 2025-09-26 19:40:01.50353+00 2025-09-26 19:40:01.503544+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 713 1583 +1990 2025-09-26 19:40:04.743992+00 2025-09-26 19:40:04.744007+00 f t vet_accepted 713 1583 +1991 2025-09-26 19:40:04.778784+00 2025-09-26 19:40:04.778799+00 f t in_progress_pay 713 1583 +1992 2025-09-26 19:40:32.949871+00 2025-09-26 19:40:32.949885+00 f t Confirmado 713 \N +1993 2025-09-26 19:40:32.918407+00 2025-09-26 19:40:32.91842+00 f t payed 713 1583 +1994 2025-09-26 22:30:42.278002+00 2025-09-26 22:30:42.278016+00 f t pending 714 \N +1995 2025-09-26 22:32:00.210655+00 2025-09-26 22:32:00.210669+00 f t pending 715 \N +1996 2025-09-26 22:32:05.475592+00 2025-09-26 22:32:05.475605+00 f t in_progress_vet 715 1208 +1997 2025-09-26 22:32:16.582032+00 2025-09-26 22:32:16.582042+00 f t coordinated Solicitud coordinada para 2025-09-26 a las 21:00:00 715 1208 +1998 2025-09-26 22:32:39.874238+00 2025-09-26 22:32:39.874252+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 715 1208 +1999 2025-09-26 22:33:00.276062+00 2025-09-26 22:33:00.276072+00 f t pending 716 \N +2000 2025-09-26 22:33:48.444924+00 2025-09-26 22:33:48.444933+00 f t Confirmado 715 \N +2001 2025-09-26 22:33:48.418256+00 2025-09-26 22:33:48.418265+00 f t payed 715 1208 +2002 2025-09-26 22:38:36.891234+00 2025-09-26 22:38:36.891246+00 f t in_progress_vet 714 1208 +2003 2025-09-26 22:46:18.562461+00 2025-09-26 22:46:18.56247+00 f t in_progress_vet 716 1208 +2004 2025-09-26 23:50:25.775531+00 2025-09-26 23:50:25.77554+00 f t pending 717 \N +2005 2025-09-26 23:50:44.257739+00 2025-09-26 23:50:44.257747+00 f t in_progress_vet 717 1208 +2006 2025-09-26 23:51:07.721552+00 2025-09-26 23:51:07.721564+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 14:00:00 717 1208 +2007 2025-09-26 23:51:50.064956+00 2025-09-26 23:51:50.064965+00 f t pending 718 \N +2008 2025-09-26 23:52:20.5589+00 2025-09-26 23:52:20.558913+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 717 1208 +2009 2025-09-26 23:53:59.083342+00 2025-09-26 23:53:59.083351+00 f t Confirmado 717 \N +2010 2025-09-26 23:53:59.059152+00 2025-09-26 23:53:59.059162+00 f t payed 717 1208 +2011 2025-09-27 00:03:21.974863+00 2025-09-27 00:03:21.974872+00 f t in_progress_vet 718 1208 +2012 2025-09-27 00:05:45.434687+00 2025-09-27 00:05:45.434694+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 12:00:00 718 1208 +2013 2025-09-27 00:06:15.889902+00 2025-09-27 00:06:15.889916+00 f t rejected D-Abandono Bot 714 1208 +2014 2025-09-27 00:14:05.7164+00 2025-09-27 00:14:05.716411+00 f t payed 718 1208 +2015 2025-09-27 00:19:16.421895+00 2025-09-27 00:19:16.421904+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 13:00:00 716 1208 +2016 2025-09-27 00:19:29.051083+00 2025-09-27 00:19:29.051092+00 f t vet_asked Veterinario asignado: Palummo Mariana 716 1208 +2017 2025-09-27 00:19:51.581219+00 2025-09-27 00:19:51.581228+00 f t Confirmado 716 \N +2018 2025-09-27 00:19:51.561294+00 2025-09-27 00:19:51.561302+00 f t payed 716 1208 +2019 2025-09-27 00:32:25.797589+00 2025-09-27 00:32:25.797601+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 10:00:00 718 1208 +2020 2025-09-27 00:32:31.339049+00 2025-09-27 00:32:31.339059+00 f t Confirmado 718 \N +2021 2025-09-27 00:32:32.08287+00 2025-09-27 00:32:32.082885+00 f t vet_asked Veterinario asignado: Caravello Esteban 718 1208 +2022 2025-09-27 12:42:41.94888+00 2025-09-27 12:42:41.94889+00 f t pending 719 \N +2023 2025-09-27 12:42:47.058865+00 2025-09-27 12:42:47.058874+00 f t in_progress_vet 719 1208 +2024 2025-09-27 12:43:04.391874+00 2025-09-27 12:43:04.391881+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 13:00:00 719 1208 +2025 2025-09-27 12:43:11.307456+00 2025-09-27 12:43:11.307467+00 f t vet_asked Veterinario asignado: Castro Guadalupe 719 1208 +2026 2025-09-27 12:44:19.472212+00 2025-09-27 12:44:19.472221+00 f t Confirmado 719 \N +2027 2025-09-27 12:44:19.450679+00 2025-09-27 12:44:19.450688+00 f t payed 719 1208 +2028 2025-09-27 15:43:42.614098+00 2025-09-27 15:43:42.614114+00 f t pending 720 \N +2029 2025-09-27 15:54:37.872225+00 2025-09-27 15:54:37.872237+00 f t in_progress_vet 720 1208 +2030 2025-09-27 16:56:30.472395+00 2025-09-27 16:56:30.472407+00 f t pending 721 \N +2031 2025-09-27 16:56:35.394001+00 2025-09-27 16:56:35.394014+00 f t in_progress_vet 721 1208 +2032 2025-09-27 16:58:12.401338+00 2025-09-27 16:58:12.401347+00 f t coordinated Solicitud coordinada para 2025-09-28 a las 12:00:00 721 1208 +2033 2025-09-27 16:58:17.900162+00 2025-09-27 16:58:17.900171+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 721 1208 +2034 2025-09-27 16:59:17.697214+00 2025-09-27 16:59:17.697224+00 f t Confirmado 721 \N +2035 2025-09-27 16:59:17.67718+00 2025-09-27 16:59:17.67719+00 f t payed 721 1208 +2036 2025-09-27 17:01:22.566054+00 2025-09-27 17:01:22.566064+00 f t pending 722 \N +2037 2025-09-27 17:01:31.28219+00 2025-09-27 17:01:31.282203+00 f t in_progress_vet 722 1208 +2038 2025-09-27 17:01:41.491736+00 2025-09-27 17:01:41.491744+00 f t coordinated Solicitud coordinada para 2025-09-29 a las 09:00:00 722 1208 +2039 2025-09-27 17:02:00.774673+00 2025-09-27 17:02:00.774684+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 722 1208 +2040 2025-09-27 17:02:13.695727+00 2025-09-27 17:02:13.695738+00 f t Confirmado 722 \N +2041 2025-09-27 17:02:13.672268+00 2025-09-27 17:02:13.672276+00 f t payed 722 1208 +2042 2025-09-27 17:03:38.070933+00 2025-09-27 17:03:38.070945+00 f t pending 723 \N +2043 2025-09-27 17:03:42.886071+00 2025-09-27 17:03:42.88608+00 f t in_progress_vet 723 1208 +2044 2025-09-27 17:03:52.924238+00 2025-09-27 17:03:52.924246+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 09:00:00 723 1208 +2045 2025-09-27 17:04:08.588371+00 2025-09-27 17:04:08.58838+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 723 1208 +2046 2025-09-27 17:04:40.836856+00 2025-09-27 17:04:40.836868+00 f t pending 724 \N +2047 2025-09-27 17:04:45.160855+00 2025-09-27 17:04:45.160864+00 f t in_progress_vet 724 1208 +2048 2025-09-27 17:06:17.535961+00 2025-09-27 17:06:17.535969+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 09:00:00 724 1208 +2049 2025-09-27 17:06:30.076489+00 2025-09-27 17:06:30.076498+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 724 1208 +2050 2025-09-27 17:06:53.558343+00 2025-09-27 17:06:53.558352+00 f t pending 725 \N +2051 2025-09-27 17:06:58.108934+00 2025-09-27 17:06:58.108941+00 f t in_progress_vet 725 1208 +2052 2025-09-27 17:07:17.825223+00 2025-09-27 17:07:17.825263+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 08:00:00 725 1208 +2053 2025-09-27 17:07:22.450399+00 2025-09-27 17:07:22.450408+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 725 1208 +2054 2025-09-27 17:07:49.977011+00 2025-09-27 17:07:49.97702+00 f t pending 726 \N +2055 2025-09-27 17:07:54.473665+00 2025-09-27 17:07:54.473675+00 f t in_progress_vet 726 1208 +2056 2025-09-27 17:08:21.125053+00 2025-09-27 17:08:21.125064+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 09:00:00 726 1208 +2057 2025-09-27 17:08:44.834404+00 2025-09-27 17:08:44.834413+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 726 1208 +2058 2025-09-27 17:09:03.962356+00 2025-09-27 17:09:03.962369+00 f t Confirmado 723 \N +2059 2025-09-27 17:09:03.917984+00 2025-09-27 17:09:03.917997+00 f t payed 723 1208 +2060 2025-09-27 17:09:18.350247+00 2025-09-27 17:09:18.350255+00 f t Confirmado 724 \N +2061 2025-09-27 17:09:18.331247+00 2025-09-27 17:09:18.331257+00 f t payed 724 1208 +2062 2025-09-27 17:09:34.749584+00 2025-09-27 17:09:34.749595+00 f t Confirmado 725 \N +2063 2025-09-27 17:09:34.727427+00 2025-09-27 17:09:34.727439+00 f t payed 725 1208 +2064 2025-09-27 17:09:35.639664+00 2025-09-27 17:09:35.639676+00 f t payed 725 1208 +2065 2025-09-27 17:09:48.830295+00 2025-09-27 17:09:48.830305+00 f t Confirmado 726 \N +2066 2025-09-27 17:09:48.782685+00 2025-09-27 17:09:48.782698+00 f t payed 726 1208 +2067 2025-09-27 17:21:06.997159+00 2025-09-27 17:21:06.99717+00 f t pending 727 \N +2068 2025-09-27 17:24:24.231784+00 2025-09-27 17:24:24.231797+00 f t in_progress_vet 727 1208 +2069 2025-09-27 17:24:41.562177+00 2025-09-27 17:24:41.562185+00 f t coordinated Solicitud coordinada para 2025-09-27 a las 16:00:00 720 1208 +2070 2025-09-27 17:24:49.795506+00 2025-09-27 17:24:49.795515+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 720 1208 +2071 2025-09-27 17:29:45.826916+00 2025-09-27 17:29:45.826929+00 f t Confirmado 720 \N +2072 2025-09-27 17:29:45.802987+00 2025-09-27 17:29:45.802998+00 f t payed 720 1208 +2073 2025-09-27 19:58:07.164952+00 2025-09-27 19:58:07.164963+00 f t pending 728 \N +2074 2025-09-28 03:26:31.357609+00 2025-09-28 03:26:31.35762+00 f t pending 729 \N +2075 2025-09-28 10:01:06.471353+00 2025-09-28 10:01:06.471367+00 f t pending 730 \N +2076 2025-09-28 12:09:29.859966+00 2025-09-28 12:09:29.859976+00 f t in_progress_vet 728 114 +2077 2025-09-28 12:13:08.212933+00 2025-09-28 12:13:08.212945+00 f t in_progress_vet 729 114 +2078 2025-09-28 12:17:29.185127+00 2025-09-28 12:17:29.185139+00 f t coordinated Solicitud coordinada para 2024-10-01 a las 19:30:00 730 114 +2079 2025-09-28 13:35:22.810231+00 2025-09-28 13:35:22.81024+00 f t rejected D-Emergencia 728 114 +2080 2025-09-28 13:44:29.474378+00 2025-09-28 13:44:29.47439+00 f t rejected D-Abandono Bot 727 114 +2081 2025-09-28 15:31:48.746664+00 2025-09-28 15:31:48.746673+00 f t pending 731 \N +2082 2025-09-28 15:33:50.018506+00 2025-09-28 15:33:50.018517+00 f t in_progress_vet 731 114 +2083 2025-09-28 15:34:33.229597+00 2025-09-28 15:34:33.229605+00 f t coordinated Solicitud coordinada para 2025-09-28 a las 18:00:00 731 114 +2084 2025-09-28 15:34:49.085904+00 2025-09-28 15:34:49.085916+00 f t vet_asked Veterinario asignado: Palladino Martín 731 114 +2085 2025-09-28 17:00:43.266807+00 2025-09-28 17:00:43.266822+00 f t pending 732 \N +2086 2025-09-28 17:02:57.024565+00 2025-09-28 17:02:57.024577+00 f t in_progress_vet 732 114 +2087 2025-09-28 17:03:19.736067+00 2025-09-28 17:03:19.736075+00 f t coordinated Solicitud coordinada para 2025-09-28 a las 20:30:00 732 114 +2088 2025-09-28 17:59:07.841627+00 2025-09-28 17:59:07.841642+00 f t pending 733 \N +2089 2025-09-28 18:01:54.412864+00 2025-09-28 18:01:54.412874+00 f t in_progress_vet 733 114 +2090 2025-09-28 18:02:21.797426+00 2025-09-28 18:02:21.797555+00 f t coordinated Solicitud coordinada para 2024-09-28 a las 17:00:00 733 114 +2091 2025-09-28 18:02:33.645653+00 2025-09-28 18:02:33.645666+00 f t vet_asked Veterinario asignado: Lorenzo Camila 733 114 +2092 2025-09-28 18:52:59.845299+00 2025-09-28 18:52:59.845307+00 f t vet_accepted 731 122 +2093 2025-09-28 18:52:59.855276+00 2025-09-28 18:52:59.855286+00 f t in_progress_pay 731 122 +2094 2025-09-28 18:53:05.729484+00 2025-09-28 18:53:05.729496+00 f t vet_accepted 731 122 +2095 2025-09-28 18:53:05.745297+00 2025-09-28 18:53:05.74531+00 f t in_progress_pay 731 122 +2096 2025-09-28 18:53:42.593876+00 2025-09-28 18:53:42.593891+00 f t vet_accepted 730 122 +2097 2025-09-28 18:53:42.605848+00 2025-09-28 18:53:42.605861+00 f t in_progress_pay 730 122 +2098 2025-09-28 18:53:54.899511+00 2025-09-28 18:53:54.899524+00 f t vet_accepted 731 122 +2099 2025-09-28 18:53:54.921418+00 2025-09-28 18:53:54.921431+00 f t in_progress_pay 731 122 +2100 2025-09-28 18:53:59.150337+00 2025-09-28 18:53:59.150346+00 f t vet_accepted 731 122 +2101 2025-09-28 18:53:59.16016+00 2025-09-28 18:53:59.160172+00 f t in_progress_pay 731 122 +2102 2025-09-28 18:55:00.303218+00 2025-09-28 18:55:00.303229+00 f t vet_asked Veterinario asignado: Laura Gorostegui Maria 733 114 +2103 2025-09-28 18:55:03.538612+00 2025-09-28 18:55:03.538626+00 f t vet_accepted 733 114 +2104 2025-09-28 18:55:03.582545+00 2025-09-28 18:55:03.582558+00 f t in_progress_pay 733 114 +2105 2025-09-28 18:55:16.988907+00 2025-09-28 18:55:16.988919+00 f t coordinated Solicitud coordinada para 2024-09-28 a las 17:00:00 733 114 +2106 2025-09-28 18:55:23.10029+00 2025-09-28 18:55:23.100302+00 f t vet_asked Veterinario asignado: Laura Gorostegui Maria 733 114 +2107 2025-09-28 18:55:44.96487+00 2025-09-28 18:55:44.96488+00 f t Confirmado 733 \N +2108 2025-09-28 18:55:44.937947+00 2025-09-28 18:55:44.937957+00 f t payed 733 114 +2109 2025-09-28 18:58:49.9832+00 2025-09-28 18:58:49.983209+00 f t coordinated Solicitud coordinada para 2025-09-28 a las 19:00:00 732 114 +2110 2025-09-28 18:59:04.806078+00 2025-09-28 18:59:04.806088+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 732 114 +2111 2025-09-28 18:59:28.788644+00 2025-09-28 18:59:28.788653+00 f t Confirmado 732 \N +2112 2025-09-28 18:59:28.761044+00 2025-09-28 18:59:28.761053+00 f t payed 732 114 +2113 2025-09-28 19:03:01.410073+00 2025-09-28 19:03:01.410082+00 f t coordinated Solicitud coordinada para 2025-09-28 a las 14:30:00 729 114 +2114 2025-09-28 19:03:26.615037+00 2025-09-28 19:03:26.615051+00 f t vet_asked Veterinario asignado: Lorenzo Camila 729 114 +2115 2025-09-28 19:04:13.797353+00 2025-09-28 19:04:13.797361+00 f t Confirmado 729 \N +2116 2025-09-28 19:04:13.776301+00 2025-09-28 19:04:13.77631+00 f t payed 729 114 +2117 2025-09-28 19:06:08.134936+00 2025-09-28 19:06:08.134945+00 f t coordinated Solicitud coordinada para 2025-09-28 a las 20:00:00 731 114 +2118 2025-09-28 19:06:16.702841+00 2025-09-28 19:06:16.70285+00 f t Confirmado 731 \N +2119 2025-09-28 19:06:16.683511+00 2025-09-28 19:06:16.68352+00 f t payed 731 114 +2120 2025-09-28 19:07:51.52854+00 2025-09-28 19:07:51.528547+00 f t coordinated Solicitud coordinada para 2025-09-28 a las 20:00:00 730 114 +2121 2025-09-28 19:08:05.360552+00 2025-09-28 19:08:05.360562+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 730 114 +2122 2025-09-28 19:08:42.781764+00 2025-09-28 19:08:42.781774+00 f t Confirmado 730 \N +2123 2025-09-28 19:08:42.7622+00 2025-09-28 19:08:42.762211+00 f t payed 730 114 +2124 2025-09-28 19:10:06.677411+00 2025-09-28 19:10:06.677423+00 f t Confirmado 730 \N +2125 2025-09-28 19:10:06.648357+00 2025-09-28 19:10:06.648369+00 f t coordinated Solicitud coordinada para 2025-09-28 a las 19:30:00 730 114 +2126 2025-09-28 19:16:20.481471+00 2025-09-28 19:16:20.481481+00 f t pending 734 \N +2127 2025-09-28 19:16:32.622101+00 2025-09-28 19:16:32.622111+00 f t in_progress_vet 734 114 +2128 2025-09-28 19:16:44.554411+00 2025-09-28 19:16:44.554422+00 f t coordinated Solicitud coordinada para 2025-09-28 a las 11:30:00 734 114 +2129 2025-09-28 19:17:21.2808+00 2025-09-28 19:17:21.280809+00 f t vet_asked Veterinario asignado: Palummo Mariana 734 114 +2130 2025-09-28 19:17:52.574533+00 2025-09-28 19:17:52.574543+00 f t Confirmado 734 \N +2131 2025-09-28 19:17:52.554503+00 2025-09-28 19:17:52.554512+00 f t payed 734 114 +2132 2025-09-28 21:48:42.66369+00 2025-09-28 21:48:42.663701+00 f t pending 735 \N +2133 2025-09-28 22:44:12.429619+00 2025-09-28 22:44:12.429631+00 f t pending 736 \N +2134 2025-09-29 00:36:22.917262+00 2025-09-29 00:36:22.91727+00 f t pending 737 \N +2135 2025-09-29 12:50:55.506569+00 2025-09-29 12:50:55.506584+00 f t pending 738 \N +2136 2025-09-29 12:51:02.995863+00 2025-09-29 12:51:02.995879+00 f t in_progress_vet 738 1583 +2137 2025-09-29 12:51:18.596938+00 2025-09-29 12:51:18.596949+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 09:30:00 738 1583 +2138 2025-09-29 12:51:36.218287+00 2025-09-29 12:51:36.218296+00 f t vet_asked Veterinario asignado: Levisman Damián 738 1583 +2139 2025-09-29 12:51:38.180828+00 2025-09-29 12:51:38.180839+00 f t vet_accepted 738 1583 +2140 2025-09-29 12:51:38.191037+00 2025-09-29 12:51:38.191046+00 f t in_progress_pay 738 1583 +2141 2025-09-29 12:52:24.14985+00 2025-09-29 12:52:24.149861+00 f t Confirmado 738 \N +2142 2025-09-29 12:52:24.121798+00 2025-09-29 12:52:24.12181+00 f t payed 738 1583 +2143 2025-09-29 13:02:11.000438+00 2025-09-29 13:02:11.00055+00 f t pending 739 \N +2144 2025-09-29 13:02:18.197101+00 2025-09-29 13:02:18.197114+00 f t in_progress_vet 739 1583 +2145 2025-09-29 13:02:26.93179+00 2025-09-29 13:02:26.931801+00 f t coordinated Solicitud coordinada para 2025-09-29 a las 15:00:00 739 1583 +2146 2025-09-29 13:02:47.070819+00 2025-09-29 13:02:47.070828+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 739 1583 +2147 2025-09-29 13:02:50.976467+00 2025-09-29 13:02:50.976478+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 739 1583 +2148 2025-09-29 13:02:51.827388+00 2025-09-29 13:02:51.827398+00 f t vet_accepted 739 1583 +2149 2025-09-29 13:02:51.842506+00 2025-09-29 13:02:51.842521+00 f t in_progress_pay 739 1583 +2150 2025-09-29 13:03:19.485615+00 2025-09-29 13:03:19.485627+00 f t Confirmado 739 \N +2151 2025-09-29 13:03:19.455506+00 2025-09-29 13:03:19.455521+00 f t payed 739 1583 +2152 2025-09-29 13:23:36.786805+00 2025-09-29 13:23:36.786815+00 f t pending 740 \N +2153 2025-09-29 13:41:57.948657+00 2025-09-29 13:41:57.948666+00 f t in_progress_vet 737 1583 +2154 2025-09-29 13:59:16.355553+00 2025-09-29 13:59:16.355566+00 f t in_progress_vet 736 1583 +2155 2025-09-29 14:25:00.474601+00 2025-09-29 14:25:00.474611+00 f t pending 741 \N +2156 2025-09-29 14:25:04.961313+00 2025-09-29 14:25:04.96133+00 f t pending 742 \N +2157 2025-09-29 14:25:13.834942+00 2025-09-29 14:25:13.834954+00 f t in_progress_vet 742 1583 +2158 2025-09-29 14:25:28.96814+00 2025-09-29 14:25:28.968149+00 f t coordinated Solicitud coordinada para 2025-09-29 a las 16:00:00 742 1583 +2159 2025-09-29 14:27:15.414144+00 2025-09-29 14:27:15.414155+00 f t vet_asked Veterinario asignado: Dubowik Katerina 742 1583 +2160 2025-09-29 14:28:18.512952+00 2025-09-29 14:28:18.512963+00 f t Confirmado 742 \N +2161 2025-09-29 14:28:18.485968+00 2025-09-29 14:28:18.48598+00 f t payed 742 1583 +2162 2025-09-29 14:36:06.904798+00 2025-09-29 14:36:06.904807+00 f t coordinated Solicitud coordinada para 2025-09-29 a las 12:30:00 736 1583 +2163 2025-09-29 14:41:37.955698+00 2025-09-29 14:41:37.955707+00 f t vet_asked Veterinario asignado: Castro Guadalupe 736 1583 +2164 2025-09-29 14:41:39.369166+00 2025-09-29 14:41:39.369178+00 f t vet_accepted 736 1583 +2165 2025-09-29 14:41:39.382272+00 2025-09-29 14:41:39.382282+00 f t in_progress_pay 736 1583 +2166 2025-09-29 14:42:21.822475+00 2025-09-29 14:42:21.822488+00 f t Confirmado 736 \N +2167 2025-09-29 14:42:21.797064+00 2025-09-29 14:42:21.797074+00 f t payed 736 1583 +2168 2025-09-29 23:18:48.24389+00 2025-09-29 23:18:48.243902+00 f t pending 743 \N +2169 2025-09-29 23:19:14.443828+00 2025-09-29 23:19:14.443837+00 f t in_progress_vet 743 114 +2170 2025-09-29 23:19:33.449498+00 2025-09-29 23:19:33.449509+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 15:00:00 743 114 +2171 2025-09-29 23:19:43.823556+00 2025-09-29 23:19:43.823567+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 15:00:00 743 114 +2172 2025-09-29 23:20:17.595671+00 2025-09-29 23:20:17.59568+00 f t payed 743 114 +2173 2025-09-29 23:20:23.005712+00 2025-09-29 23:20:23.005725+00 f t Confirmado 743 \N +2174 2025-09-29 23:20:23.846939+00 2025-09-29 23:20:23.847025+00 f t vet_asked Veterinario asignado: di Risio Daniela 743 114 +2175 2025-09-29 23:20:28.418871+00 2025-09-29 23:20:28.41888+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 15:00:00 743 114 +2176 2025-09-29 23:24:39.865464+00 2025-09-29 23:24:39.865479+00 f t pending 744 \N +2177 2025-09-29 23:25:21.994909+00 2025-09-29 23:25:21.99492+00 f t in_progress_vet 744 114 +2178 2025-09-29 23:27:12.559594+00 2025-09-29 23:27:12.559604+00 f t payed 744 114 +2179 2025-09-29 23:27:36.944154+00 2025-09-29 23:27:36.944165+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 14:00:00 744 114 +2180 2025-09-29 23:28:01.958236+00 2025-09-29 23:28:01.958251+00 f t Confirmado 744 \N +2181 2025-09-29 23:28:02.704256+00 2025-09-29 23:28:02.704267+00 f t vet_asked Veterinario asignado: Palladino Martín 744 114 +2182 2025-09-29 23:28:07.129474+00 2025-09-29 23:28:07.129482+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 14:00:00 744 114 +2183 2025-09-29 23:35:36.339535+00 2025-09-29 23:35:36.339544+00 f t pending 745 \N +2184 2025-09-29 23:37:28.442323+00 2025-09-29 23:37:28.442336+00 f t payed 745 114 +2185 2025-09-29 23:37:57.560308+00 2025-09-29 23:37:57.560317+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 15:30:00 745 114 +2186 2025-09-29 23:38:04.250202+00 2025-09-29 23:38:04.250211+00 f t Confirmado 745 \N +2187 2025-09-29 23:38:04.930887+00 2025-09-29 23:38:04.930898+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 745 114 +2188 2025-09-29 23:38:09.338616+00 2025-09-29 23:38:09.33863+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 15:30:00 745 114 +2189 2025-09-29 23:53:42.008106+00 2025-09-29 23:53:42.008116+00 f t pending 746 \N +2190 2025-09-29 23:53:47.623959+00 2025-09-29 23:53:47.623971+00 f t in_progress_vet 746 114 +2191 2025-09-29 23:57:12.953636+00 2025-09-29 23:57:12.953647+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 16:00:00 746 114 +2192 2025-09-30 00:02:15.655067+00 2025-09-30 00:02:15.655078+00 f t payed 746 114 +2193 2025-09-30 00:02:32.063872+00 2025-09-30 00:02:32.063883+00 f t Confirmado 746 \N +2194 2025-09-30 00:02:32.850165+00 2025-09-30 00:02:32.850174+00 f t vet_asked Veterinario asignado: Christophersen Ana 746 114 +2195 2025-09-30 00:02:35.276605+00 2025-09-30 00:02:35.276616+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 16:00:00 746 114 +2196 2025-09-30 00:07:59.006792+00 2025-09-30 00:07:59.006801+00 f t pending 747 \N +2197 2025-09-30 00:08:33.655181+00 2025-09-30 00:08:33.65519+00 f t in_progress_vet 747 114 +2198 2025-09-30 00:10:55.700831+00 2025-09-30 00:10:55.700841+00 f t payed 747 114 +2199 2025-09-30 00:11:13.734062+00 2025-09-30 00:11:13.734075+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 16:00:00 747 114 +2200 2025-09-30 00:11:29.695303+00 2025-09-30 00:11:29.695316+00 f t Confirmado 747 \N +2201 2025-09-30 00:11:30.433704+00 2025-09-30 00:11:30.433714+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 747 114 +2202 2025-09-30 00:11:32.831278+00 2025-09-30 00:11:32.831286+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 16:00:00 747 114 +2203 2025-09-30 00:35:45.791726+00 2025-09-30 00:35:45.791738+00 f t pending 748 \N +2204 2025-09-30 08:33:39.375736+00 2025-09-30 08:33:39.37575+00 f t pending 749 \N +2205 2025-09-30 11:31:50.782689+00 2025-09-30 11:31:50.782699+00 f t pending 750 \N +2206 2025-09-30 12:17:55.857149+00 2025-09-30 12:17:55.857164+00 f t in_progress_vet 748 1208 +2207 2025-09-30 12:21:14.697769+00 2025-09-30 12:21:14.697782+00 f t in_progress_vet 749 1208 +2208 2025-09-30 12:41:28.262332+00 2025-09-30 12:41:28.262344+00 f t in_progress_vet 750 1208 +2209 2025-09-30 12:56:35.707816+00 2025-09-30 12:56:35.707825+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 14:00:00 748 1208 +2210 2025-09-30 12:56:40.909589+00 2025-09-30 12:56:40.909598+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 748 1208 +2211 2025-09-30 12:56:57.81526+00 2025-09-30 12:56:57.815268+00 f t Confirmado 748 \N +2212 2025-09-30 12:56:57.796319+00 2025-09-30 12:56:57.796329+00 f t payed 748 1208 +2213 2025-09-30 13:25:41.689066+00 2025-09-30 13:25:41.689078+00 f t pending 751 \N +2214 2025-09-30 13:25:46.669624+00 2025-09-30 13:25:46.669632+00 f t in_progress_vet 751 1208 +2215 2025-09-30 13:27:37.128059+00 2025-09-30 13:27:37.128067+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 14:30:00 751 1208 +2216 2025-09-30 13:35:06.564132+00 2025-09-30 13:35:06.564144+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 15:00:00 750 1208 +2217 2025-09-30 13:56:32.526672+00 2025-09-30 13:56:32.526681+00 f t pending 752 \N +2218 2025-09-30 13:59:08.174289+00 2025-09-30 13:59:08.1743+00 f t in_progress_vet 752 1583 +2219 2025-09-30 14:04:21.491435+00 2025-09-30 14:04:21.491444+00 f t vet_accepted 751 126 +2220 2025-09-30 14:04:21.502597+00 2025-09-30 14:04:21.502606+00 f t in_progress_pay 751 126 +2221 2025-09-30 14:10:11.859854+00 2025-09-30 14:10:11.859864+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 17:00:00 752 1583 +2222 2025-09-30 14:10:32.34321+00 2025-09-30 14:10:32.343222+00 f t Confirmado 751 \N +2223 2025-09-30 14:10:32.31956+00 2025-09-30 14:10:32.319572+00 f t payed 751 1208 +2224 2025-09-30 14:10:45.328032+00 2025-09-30 14:10:45.328041+00 f t payed 751 1208 +2225 2025-09-30 14:14:37.278725+00 2025-09-30 14:14:37.278738+00 f t vet_accepted 752 1774 +2226 2025-09-30 14:14:37.289842+00 2025-09-30 14:14:37.289851+00 f t in_progress_pay 752 1774 +2227 2025-09-30 14:16:14.044146+00 2025-09-30 14:16:14.044154+00 f t vet_accepted 752 1774 +2228 2025-09-30 14:16:14.053606+00 2025-09-30 14:16:14.053615+00 f t in_progress_pay 752 1774 +2229 2025-09-30 14:18:50.861728+00 2025-09-30 14:18:50.86174+00 f t vet_accepted 752 1774 +2230 2025-09-30 14:18:50.875933+00 2025-09-30 14:18:50.875946+00 f t in_progress_pay 752 1774 +2231 2025-09-30 14:23:47.163074+00 2025-09-30 14:23:47.163082+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 19:30:00 749 1208 +2232 2025-09-30 14:24:54.196626+00 2025-09-30 14:24:54.196635+00 f t Confirmado 752 \N +2233 2025-09-30 14:24:54.171577+00 2025-09-30 14:24:54.171588+00 f t payed 752 1583 +2234 2025-09-30 14:30:44.347704+00 2025-09-30 14:30:44.347712+00 f t Confirmado 744 \N +2235 2025-09-30 14:30:44.323492+00 2025-09-30 14:30:44.3235+00 f t vet_accepted 744 122 +2236 2025-09-30 14:43:18.801902+00 2025-09-30 14:43:18.801911+00 f t vet_accepted 750 116 +2237 2025-09-30 14:43:18.811697+00 2025-09-30 14:43:18.81171+00 f t in_progress_pay 750 116 +2238 2025-09-30 15:07:55.823521+00 2025-09-30 15:07:55.82353+00 f t Confirmado 750 \N +2239 2025-09-30 15:07:55.795043+00 2025-09-30 15:07:55.795052+00 f t payed 750 1208 +2240 2025-09-30 15:17:19.420325+00 2025-09-30 15:17:19.420335+00 f t pending 753 \N +2241 2025-09-30 15:17:25.612557+00 2025-09-30 15:17:25.612565+00 f t in_progress_vet 753 1208 +2242 2025-09-30 15:18:18.709393+00 2025-09-30 15:18:18.709401+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 10:00:00 753 1208 +2243 2025-09-30 15:23:36.576106+00 2025-09-30 15:23:36.576116+00 f t pending 754 \N +2244 2025-09-30 15:23:42.144833+00 2025-09-30 15:23:42.144841+00 f t in_progress_vet 754 1208 +2245 2025-09-30 15:23:51.700797+00 2025-09-30 15:23:51.700805+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 19:00:00 754 1208 +2246 2025-09-30 15:24:34.365925+00 2025-09-30 15:24:34.365934+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 754 1208 +2247 2025-09-30 15:25:05.351567+00 2025-09-30 15:25:05.351582+00 f t pending 755 \N +2248 2025-09-30 15:25:10.90264+00 2025-09-30 15:25:10.902652+00 f t in_progress_vet 755 1208 +2249 2025-09-30 15:26:49.183322+00 2025-09-30 15:26:49.183334+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 09:00:00 755 1208 +2250 2025-09-30 15:26:53.027495+00 2025-09-30 15:26:53.027503+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 09:00:00 755 1208 +2251 2025-09-30 15:26:54.793877+00 2025-09-30 15:26:54.793886+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 09:00:00 755 1208 +2252 2025-09-30 15:26:55.251187+00 2025-09-30 15:26:55.251196+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 09:00:00 755 1208 +2253 2025-09-30 15:26:55.564924+00 2025-09-30 15:26:55.564934+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 09:00:00 755 1208 +2254 2025-09-30 15:26:55.62779+00 2025-09-30 15:26:55.627797+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 09:00:00 755 1208 +2255 2025-09-30 15:27:23.181611+00 2025-09-30 15:27:23.18162+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 755 1208 +2256 2025-09-30 15:35:11.797335+00 2025-09-30 15:35:11.797348+00 f t Confirmado 754 \N +2257 2025-09-30 15:35:11.768935+00 2025-09-30 15:35:11.768947+00 f t payed 754 1208 +2258 2025-09-30 15:35:47.97204+00 2025-09-30 15:35:47.972049+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 755 1208 +2259 2025-09-30 15:36:12.944257+00 2025-09-30 15:36:12.944265+00 f t Confirmado 755 \N +2260 2025-09-30 15:36:12.922051+00 2025-09-30 15:36:12.922064+00 f t payed 755 1208 +2261 2025-09-30 15:46:47.345916+00 2025-09-30 15:46:47.345925+00 f t vet_accepted 749 139 +2262 2025-09-30 15:46:47.356615+00 2025-09-30 15:46:47.356625+00 f t in_progress_pay 749 139 +2263 2025-09-30 15:50:54.149328+00 2025-09-30 15:50:54.149342+00 f t Confirmado 749 \N +2264 2025-09-30 15:50:54.117673+00 2025-09-30 15:50:54.117685+00 f t payed 749 1208 +2265 2025-09-30 16:00:44.019066+00 2025-09-30 16:00:44.01908+00 f t pending 756 \N +2266 2025-09-30 16:01:53.655099+00 2025-09-30 16:01:53.655111+00 f t in_progress_vet 756 1583 +2267 2025-09-30 16:02:26.169698+00 2025-09-30 16:02:26.169707+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 17:00:00 756 1583 +2268 2025-09-30 16:05:39.20624+00 2025-09-30 16:05:39.20625+00 f t payed 756 1583 +2269 2025-09-30 16:09:44.167647+00 2025-09-30 16:09:44.167656+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 18:00:00 756 1583 +2270 2025-09-30 16:11:05.654188+00 2025-09-30 16:11:05.654203+00 f t Confirmado 756 \N +2271 2025-09-30 16:11:05.629103+00 2025-09-30 16:11:05.629116+00 f t vet_accepted 756 116 +2272 2025-09-30 16:23:04.075912+00 2025-09-30 16:23:04.075929+00 f t pending 757 \N +2273 2025-09-30 16:24:16.589255+00 2025-09-30 16:24:16.589264+00 f t in_progress_vet 757 1583 +2274 2025-09-30 16:24:30.69278+00 2025-09-30 16:24:30.69279+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 15:00:00 757 1583 +2275 2025-09-30 16:24:39.266399+00 2025-09-30 16:24:39.266412+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 757 1583 +2276 2025-09-30 16:26:02.832089+00 2025-09-30 16:26:02.8321+00 f t Confirmado 757 \N +2277 2025-09-30 16:26:02.804768+00 2025-09-30 16:26:02.804778+00 f t payed 757 1583 +2278 2025-09-30 16:31:52.911829+00 2025-09-30 16:31:52.911838+00 f t pending 758 \N +2279 2025-09-30 16:35:11.667662+00 2025-09-30 16:35:11.667671+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 08:00:00 753 1208 +2280 2025-09-30 16:35:12.231591+00 2025-09-30 16:35:12.231605+00 f t pending 759 \N +2281 2025-09-30 16:36:11.256692+00 2025-09-30 16:36:11.256706+00 f t vet_accepted 753 1855 +2282 2025-09-30 16:36:11.272907+00 2025-09-30 16:36:11.272918+00 f t in_progress_pay 753 1855 +2283 2025-09-30 16:36:20.166565+00 2025-09-30 16:36:20.166577+00 f t in_progress_vet 759 1583 +2284 2025-09-30 16:36:27.280684+00 2025-09-30 16:36:27.280695+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 17:00:00 759 1583 +2285 2025-09-30 16:36:40.018987+00 2025-09-30 16:36:40.018998+00 f t vet_asked Veterinario asignado: di Risio Daniela 759 1583 +2286 2025-09-30 16:36:43.469441+00 2025-09-30 16:36:43.469455+00 f t vet_asked Veterinario asignado: di Risio Daniela 759 1583 +2287 2025-09-30 16:36:44.276861+00 2025-09-30 16:36:44.27687+00 f t vet_accepted 759 1583 +2288 2025-09-30 16:36:44.286472+00 2025-09-30 16:36:44.286482+00 f t in_progress_pay 759 1583 +2289 2025-09-30 16:36:58.966517+00 2025-09-30 16:36:58.96653+00 f t Confirmado 759 \N +2290 2025-09-30 16:36:58.938592+00 2025-09-30 16:36:58.938601+00 f t payed 759 1583 +2291 2025-09-30 16:39:54.232051+00 2025-09-30 16:39:54.23206+00 f t in_progress_vet 758 1583 +2292 2025-09-30 16:40:41.683458+00 2025-09-30 16:40:41.683468+00 f t pending 760 \N +2293 2025-09-30 16:40:46.12705+00 2025-09-30 16:40:46.127059+00 f t in_progress_vet 760 1208 +2294 2025-09-30 16:40:58.54037+00 2025-09-30 16:40:58.540378+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 09:30:00 760 1208 +2295 2025-09-30 16:42:19.339936+00 2025-09-30 16:42:19.339949+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 760 1208 +2296 2025-09-30 16:42:45.190551+00 2025-09-30 16:42:45.19056+00 f t Confirmado 760 \N +2297 2025-09-30 16:42:45.161966+00 2025-09-30 16:42:45.161975+00 f t payed 760 1208 +2298 2025-09-30 16:43:59.735937+00 2025-09-30 16:43:59.735946+00 f t Confirmado 753 \N +2299 2025-09-30 16:43:59.715333+00 2025-09-30 16:43:59.715342+00 f t payed 753 1208 +2300 2025-09-30 16:44:54.594326+00 2025-09-30 16:44:54.594338+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 20:00:00 758 1583 +2301 2025-09-30 17:02:23.591526+00 2025-09-30 17:02:23.591536+00 f t pending 761 \N +2302 2025-09-30 17:08:30.868705+00 2025-09-30 17:08:30.868713+00 f t in_progress_vet 761 1208 +2303 2025-09-30 17:08:53.570886+00 2025-09-30 17:08:53.570894+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 10:00:00 761 1208 +2304 2025-09-30 17:08:57.265584+00 2025-09-30 17:08:57.265596+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 761 1208 +2305 2025-09-30 17:09:15.453525+00 2025-09-30 17:09:15.453533+00 f t Confirmado 761 \N +2306 2025-09-30 17:09:15.430989+00 2025-09-30 17:09:15.430999+00 f t payed 761 1208 +2307 2025-09-30 17:26:42.524001+00 2025-09-30 17:26:42.52401+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 16:00:00 758 1583 +2308 2025-09-30 17:27:33.080925+00 2025-09-30 17:27:33.080938+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 758 1583 +2309 2025-09-30 17:27:34.026692+00 2025-09-30 17:27:34.026704+00 f t vet_accepted 758 1583 +2310 2025-09-30 17:27:34.041198+00 2025-09-30 17:27:34.041212+00 f t in_progress_pay 758 1583 +2311 2025-09-30 17:27:57.629811+00 2025-09-30 17:27:57.629825+00 f t Confirmado 758 \N +2312 2025-09-30 17:27:57.601169+00 2025-09-30 17:27:57.601178+00 f t payed 758 1583 +2313 2025-09-30 17:52:52.326052+00 2025-09-30 17:52:52.326064+00 f t pending 762 \N +2314 2025-09-30 17:54:19.572219+00 2025-09-30 17:54:19.572286+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 15:00:00 762 1208 +2315 2025-09-30 17:57:54.416598+00 2025-09-30 17:57:54.416606+00 f t vet_accepted 747 134 +2316 2025-09-30 17:58:42.477019+00 2025-09-30 17:58:42.477029+00 f t pending 763 \N +2317 2025-09-30 17:58:54.16733+00 2025-09-30 17:58:54.167341+00 f t in_progress_vet 763 1208 +2318 2025-09-30 17:59:04.132493+00 2025-09-30 17:59:04.132504+00 f t coordinated Solicitud coordinada para 2025-09-30 a las 15:00:00 763 1208 +2319 2025-09-30 18:02:51.974933+00 2025-09-30 18:02:51.974942+00 f t vet_accepted 763 134 +2320 2025-09-30 18:02:51.998824+00 2025-09-30 18:02:51.998834+00 f t in_progress_pay 763 134 +2321 2025-09-30 18:06:15.629033+00 2025-09-30 18:06:15.629044+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 15:00:00 763 1208 +2322 2025-09-30 18:06:27.428361+00 2025-09-30 18:06:27.42837+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 763 1208 +2323 2025-09-30 18:59:09.634394+00 2025-09-30 18:59:09.634408+00 f t vet_accepted 763 134 +2324 2025-09-30 18:59:09.648565+00 2025-09-30 18:59:09.64858+00 f t in_progress_pay 763 134 +2325 2025-09-30 19:19:50.261793+00 2025-09-30 19:19:50.261801+00 f t Confirmado 763 \N +2326 2025-09-30 19:19:50.24174+00 2025-09-30 19:19:50.241748+00 f t payed 763 1208 +2327 2025-09-30 19:48:35.237492+00 2025-09-30 19:48:35.237503+00 f t pending 764 \N +2328 2025-09-30 19:48:44.868763+00 2025-09-30 19:48:44.868776+00 f t in_progress_vet 764 1583 +2329 2025-09-30 19:48:52.916897+00 2025-09-30 19:48:52.916908+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 14:00:00 764 1583 +2330 2025-09-30 19:49:32.608394+00 2025-09-30 19:49:32.608404+00 f t vet_asked Veterinario asignado: Szczurek Verónica Carolina 764 1583 +2331 2025-09-30 19:49:39.43568+00 2025-09-30 19:49:39.435689+00 f t Confirmado 764 \N +2332 2025-09-30 19:49:39.415394+00 2025-09-30 19:49:39.415404+00 f t payed 764 1583 +2333 2025-09-30 20:03:01.294231+00 2025-09-30 20:03:01.294246+00 f t pending 765 \N +2334 2025-09-30 20:03:06.63996+00 2025-09-30 20:03:06.63997+00 f t in_progress_vet 765 1208 +2335 2025-09-30 20:54:58.367604+00 2025-09-30 20:54:58.367619+00 f t pending 766 \N +2336 2025-09-30 20:55:03.539942+00 2025-09-30 20:55:03.539957+00 f t in_progress_vet 766 1583 +2337 2025-09-30 20:55:11.631046+00 2025-09-30 20:55:11.631058+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 11:00:00 766 1583 +2338 2025-09-30 20:55:59.416754+00 2025-09-30 20:55:59.416764+00 f t vet_asked Veterinario asignado: Ponce Lisandro 766 1583 +2339 2025-09-30 20:56:23.511936+00 2025-09-30 20:56:23.511946+00 f t Confirmado 766 \N +2340 2025-09-30 20:56:23.489012+00 2025-09-30 20:56:23.489022+00 f t payed 766 1583 +2341 2025-09-30 22:54:41.866716+00 2025-09-30 22:54:41.866725+00 f t pending 767 \N +2342 2025-09-30 23:13:59.832436+00 2025-09-30 23:13:59.832449+00 f t in_progress_vet 767 113 +2343 2025-09-30 23:14:31.722901+00 2025-09-30 23:14:31.722909+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 18:00:00 767 113 +2344 2025-09-30 23:23:22.09369+00 2025-09-30 23:23:22.093699+00 f t vet_asked Veterinario asignado: Giangreco Marcelo Gastón 767 113 +2345 2025-09-30 23:23:28.612815+00 2025-09-30 23:23:28.612828+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 18:30:00 767 113 +2346 2025-09-30 23:23:36.202591+00 2025-09-30 23:23:36.202605+00 f t vet_asked Veterinario asignado: Giangreco Marcelo Gastón 767 113 +2347 2025-09-30 23:30:49.093801+00 2025-09-30 23:30:49.093811+00 f t vet_asked Veterinario asignado: Guasco Nicolás 767 113 +2348 2025-09-30 23:31:54.220839+00 2025-09-30 23:31:54.220847+00 f t Confirmado 767 \N +2349 2025-09-30 23:31:54.198012+00 2025-09-30 23:31:54.198021+00 f t payed 767 113 +2350 2025-09-30 23:32:11.678397+00 2025-09-30 23:32:11.678443+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 18:30:00 767 113 +2351 2025-09-30 23:32:18.625237+00 2025-09-30 23:32:18.62525+00 f t Confirmado 767 \N +2352 2025-09-30 23:32:19.686707+00 2025-09-30 23:32:19.686723+00 f t vet_asked Veterinario asignado: Giangreco Marcelo Gastón 767 113 +2353 2025-09-30 23:32:27.487108+00 2025-09-30 23:32:27.487121+00 f t vet_accepted 767 113 +2354 2025-09-30 23:51:35.646711+00 2025-09-30 23:51:35.646725+00 f t pending 768 \N +2355 2025-09-30 23:51:45.948751+00 2025-09-30 23:51:45.948764+00 f t in_progress_vet 768 1583 +2356 2025-09-30 23:52:34.547762+00 2025-09-30 23:52:34.547776+00 f t pending 769 \N +2357 2025-09-30 23:52:37.474265+00 2025-09-30 23:52:37.474274+00 f t in_progress_vet 769 113 +2358 2025-09-30 23:52:52.377671+00 2025-09-30 23:52:52.377681+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 17:00:00 769 113 +2359 2025-09-30 23:57:10.162533+00 2025-09-30 23:57:10.162548+00 f t vet_asked Veterinario asignado: Vecino Carolina 769 113 +2360 2025-09-30 23:57:19.829555+00 2025-09-30 23:57:19.829566+00 f t vet_asked Veterinario asignado: Vecino Carolina 769 113 +2361 2025-09-30 23:58:12.846381+00 2025-09-30 23:58:12.846396+00 f t vet_accepted 769 113 +2362 2025-09-30 23:58:12.857341+00 2025-09-30 23:58:12.857356+00 f t in_progress_pay 769 113 +2363 2025-09-30 23:59:07.03863+00 2025-09-30 23:59:07.038642+00 f t Confirmado 769 \N +2364 2025-09-30 23:59:07.006773+00 2025-09-30 23:59:07.006784+00 f t payed 769 113 +2365 2025-10-01 00:06:20.081316+00 2025-10-01 00:06:20.081325+00 f t pending 770 \N +2366 2025-10-01 00:06:26.089237+00 2025-10-01 00:06:26.089249+00 f t in_progress_vet 770 113 +2367 2025-10-01 00:06:36.213475+00 2025-10-01 00:06:36.213486+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 16:00:00 770 113 +2368 2025-10-01 00:08:03.833237+00 2025-10-01 00:08:03.833248+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 16:00:00 770 113 +2369 2025-10-01 00:10:21.425144+00 2025-10-01 00:10:21.425159+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 770 113 +2370 2025-10-01 00:11:28.941378+00 2025-10-01 00:11:28.941386+00 f t vet_accepted 770 113 +2371 2025-10-01 00:11:28.95145+00 2025-10-01 00:11:28.95146+00 f t in_progress_pay 770 113 +2372 2025-10-01 00:11:35.659591+00 2025-10-01 00:11:35.659604+00 f t Confirmado 770 \N +2373 2025-10-01 00:11:35.630175+00 2025-10-01 00:11:35.630185+00 f t payed 770 113 +2374 2025-10-01 01:34:41.498283+00 2025-10-01 01:34:41.498292+00 f t pending 771 \N +2375 2025-10-01 12:11:09.79955+00 2025-10-01 12:11:09.799561+00 f t in_progress_vet 771 1208 +2376 2025-10-01 12:12:52.949926+00 2025-10-01 12:12:52.949938+00 f t pending 772 \N +2377 2025-10-01 12:26:17.80413+00 2025-10-01 12:26:17.804141+00 f t pending 773 \N +2378 2025-10-01 12:42:49.068941+00 2025-10-01 12:42:49.068952+00 f t in_progress_vet 772 1208 +2379 2025-10-01 12:42:59.240289+00 2025-10-01 12:42:59.240301+00 f t in_progress_vet 773 1208 +2380 2025-10-01 13:08:01.655069+00 2025-10-01 13:08:01.655083+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 18:00:00 771 1208 +2381 2025-10-01 13:14:16.592769+00 2025-10-01 13:14:16.592779+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 19:00:00 772 1208 +2382 2025-10-01 13:22:56.752339+00 2025-10-01 13:22:56.752348+00 f t vet_accepted 772 122 +2383 2025-10-01 13:22:56.767632+00 2025-10-01 13:22:56.767647+00 f t in_progress_pay 772 122 +2384 2025-10-01 13:23:20.080107+00 2025-10-01 13:23:20.080119+00 f t vet_accepted 771 134 +2385 2025-10-01 13:23:20.090434+00 2025-10-01 13:23:20.090443+00 f t in_progress_pay 771 134 +2386 2025-10-01 13:33:23.85742+00 2025-10-01 13:33:23.857431+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 20:00:00 773 1208 +2387 2025-10-01 13:34:57.454374+00 2025-10-01 13:34:57.454384+00 f t vet_accepted 773 122 +2388 2025-10-01 13:34:57.46664+00 2025-10-01 13:34:57.466652+00 f t in_progress_pay 773 122 +2389 2025-10-01 13:53:02.50561+00 2025-10-01 13:53:02.505625+00 f t Confirmado 771 \N +2390 2025-10-01 13:53:02.439901+00 2025-10-01 13:53:02.439915+00 f t payed 771 1208 +2391 2025-10-01 14:05:30.874539+00 2025-10-01 14:05:30.874552+00 f t Confirmado 773 \N +2392 2025-10-01 14:05:30.829174+00 2025-10-01 14:05:30.829186+00 f t payed 773 1208 +2393 2025-10-01 15:07:38.246919+00 2025-10-01 15:07:38.24693+00 f t Confirmado 772 \N +2394 2025-10-01 15:07:38.203655+00 2025-10-01 15:07:38.203666+00 f t payed 772 1208 +2395 2025-10-01 15:10:52.158385+00 2025-10-01 15:10:52.158398+00 f t rejected D-Emergencia 765 1208 +2396 2025-10-01 15:26:48.373282+00 2025-10-01 15:26:48.373294+00 f t pending 774 \N +2397 2025-10-01 15:26:54.866196+00 2025-10-01 15:26:54.866207+00 f t in_progress_vet 774 1583 +2398 2025-10-01 15:27:06.316872+00 2025-10-01 15:27:06.316884+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 12:00:00 774 1583 +2399 2025-10-01 15:28:02.649494+00 2025-10-01 15:28:02.649506+00 f t pending 775 \N +2400 2025-10-01 15:28:09.242044+00 2025-10-01 15:28:09.242054+00 f t in_progress_vet 775 1208 +2401 2025-10-01 15:28:18.993596+00 2025-10-01 15:28:18.993606+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 13:00:00 775 1208 +2402 2025-10-01 15:28:57.549482+00 2025-10-01 15:28:57.549491+00 f t vet_accepted 775 128 +2403 2025-10-01 15:28:57.566188+00 2025-10-01 15:28:57.566198+00 f t in_progress_pay 775 128 +2404 2025-10-01 15:31:36.244712+00 2025-10-01 15:31:36.244722+00 f t pending 776 \N +2405 2025-10-01 15:32:12.997334+00 2025-10-01 15:32:12.997348+00 f t in_progress_vet 776 1208 +2406 2025-10-01 15:35:34.872772+00 2025-10-01 15:35:34.872783+00 f t pending 777 \N +2407 2025-10-01 15:35:40.829749+00 2025-10-01 15:35:40.829761+00 f t in_progress_vet 777 1583 +2408 2025-10-01 15:36:37.078933+00 2025-10-01 15:36:37.078942+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 14:00:00 777 1583 +2409 2025-10-01 15:38:44.722613+00 2025-10-01 15:38:44.722624+00 f t vet_accepted 774 128 +2410 2025-10-01 15:38:44.73835+00 2025-10-01 15:38:44.738364+00 f t in_progress_pay 774 128 +2411 2025-10-01 15:43:29.339283+00 2025-10-01 15:43:29.339296+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 15:00:00 777 1583 +2412 2025-10-01 15:43:42.392695+00 2025-10-01 15:43:42.392704+00 f t vet_asked Veterinario asignado: Ponce Lisandro 777 1583 +2413 2025-10-01 15:46:19.028005+00 2025-10-01 15:46:19.028014+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 10:00:00 776 1208 +2414 2025-10-01 15:48:21.427345+00 2025-10-01 15:48:21.427355+00 f t Confirmado 775 \N +2415 2025-10-01 15:48:21.383489+00 2025-10-01 15:48:21.383501+00 f t payed 775 1208 +2416 2025-10-01 15:48:55.382271+00 2025-10-01 15:48:55.382281+00 f t vet_accepted 776 142 +2417 2025-10-01 15:48:55.395601+00 2025-10-01 15:48:55.395614+00 f t in_progress_pay 776 142 +2418 2025-10-01 15:55:18.163507+00 2025-10-01 15:55:18.163517+00 f t pending 778 \N +2419 2025-10-01 15:55:59.147511+00 2025-10-01 15:55:59.14752+00 f t in_progress_vet 778 1208 +2420 2025-10-01 16:09:16.717359+00 2025-10-01 16:09:16.717368+00 f t pending 779 \N +2421 2025-10-01 16:09:25.219957+00 2025-10-01 16:09:25.219966+00 f t in_progress_vet 779 1208 +2422 2025-10-01 16:09:45.774909+00 2025-10-01 16:09:45.774916+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 14:00:00 779 1208 +2423 2025-10-01 16:10:45.164598+00 2025-10-01 16:10:45.16461+00 f t vet_asked Veterinario asignado: Campo Silvia 779 1208 +2424 2025-10-01 16:11:05.506971+00 2025-10-01 16:11:05.506982+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 10:00:00 778 1208 +2425 2025-10-01 16:21:00.110215+00 2025-10-01 16:21:00.110229+00 f t Confirmado 779 \N +2426 2025-10-01 16:21:00.06103+00 2025-10-01 16:21:00.061043+00 f t payed 779 1208 +2427 2025-10-01 16:27:28.944849+00 2025-10-01 16:27:28.944859+00 f t vet_accepted 778 134 +2428 2025-10-01 16:27:28.960132+00 2025-10-01 16:27:28.960153+00 f t in_progress_pay 778 134 +2429 2025-10-01 16:28:37.263332+00 2025-10-01 16:28:37.263345+00 f t Confirmado 776 \N +2430 2025-10-01 16:28:37.218186+00 2025-10-01 16:28:37.218206+00 f t payed 776 1208 +2431 2025-10-01 16:28:54.407359+00 2025-10-01 16:28:54.407371+00 f t Confirmado 777 \N +2432 2025-10-01 16:28:54.36753+00 2025-10-01 16:28:54.367542+00 f t payed 777 1583 +2433 2025-10-01 16:49:53.860629+00 2025-10-01 16:49:53.860642+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 11:00:00 778 1208 +2434 2025-10-01 16:53:35.841961+00 2025-10-01 16:53:35.841969+00 f t Confirmado 778 \N +2435 2025-10-01 16:53:35.801095+00 2025-10-01 16:53:35.801103+00 f t payed 778 1208 +2436 2025-10-01 17:22:44.852398+00 2025-10-01 17:22:44.852412+00 f t pending 780 \N +2437 2025-10-01 17:22:49.765423+00 2025-10-01 17:22:49.765436+00 f t in_progress_vet 780 1208 +2438 2025-10-01 17:22:58.732246+00 2025-10-01 17:22:58.732256+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 16:00:00 780 1208 +2439 2025-10-01 17:29:31.019273+00 2025-10-01 17:29:31.019282+00 f t payed 780 1208 +2440 2025-10-01 17:31:07.169+00 2025-10-01 17:31:07.169017+00 f t pending 781 \N +2441 2025-10-01 17:31:13.060822+00 2025-10-01 17:31:13.060838+00 f t in_progress_vet 781 1208 +2442 2025-10-01 17:31:20.954592+00 2025-10-01 17:31:20.954603+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 16:00:00 781 1208 +2443 2025-10-01 17:33:58.33472+00 2025-10-01 17:33:58.334733+00 f t vet_asked Veterinario asignado: Dubowik Katerina 781 1208 +2444 2025-10-01 17:34:16.408183+00 2025-10-01 17:34:16.408197+00 f t Confirmado 781 \N +2445 2025-10-01 17:34:16.348884+00 2025-10-01 17:34:16.348894+00 f t payed 781 1208 +2446 2025-10-01 18:09:02.064789+00 2025-10-01 18:09:02.064805+00 f t pending 782 \N +2447 2025-10-01 18:09:08.746944+00 2025-10-01 18:09:08.746957+00 f t in_progress_vet 782 1208 +2448 2025-10-01 18:09:16.872862+00 2025-10-01 18:09:16.872876+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 20:30:00 782 1208 +2449 2025-10-01 18:13:42.256803+00 2025-10-01 18:13:42.256813+00 f t vet_accepted 782 139 +2450 2025-10-01 18:13:42.269699+00 2025-10-01 18:13:42.269708+00 f t in_progress_pay 782 139 +2451 2025-10-01 18:20:52.662827+00 2025-10-01 18:20:52.662842+00 f t Confirmado 782 \N +2452 2025-10-01 18:20:52.615607+00 2025-10-01 18:20:52.615621+00 f t payed 782 1208 +2453 2025-10-01 19:10:56.613215+00 2025-10-01 19:10:56.613228+00 f t pending 783 \N +2454 2025-10-01 19:11:01.367719+00 2025-10-01 19:11:01.367732+00 f t in_progress_vet 783 1583 +2455 2025-10-01 19:11:12.350123+00 2025-10-01 19:11:12.350134+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 20:00:00 783 1583 +2456 2025-10-01 19:12:30.985061+00 2025-10-01 19:12:30.985073+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 783 1583 +2457 2025-10-01 19:37:17.402896+00 2025-10-01 19:37:17.402909+00 f t pending 784 \N +2458 2025-10-01 19:37:33.054521+00 2025-10-01 19:37:33.054534+00 f t in_progress_vet 784 1583 +2459 2025-10-01 19:37:42.284941+00 2025-10-01 19:37:42.284949+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 21:00:00 784 1583 +2460 2025-10-01 19:45:04.824866+00 2025-10-01 19:45:04.824878+00 f t payed 784 1583 +2461 2025-10-01 20:05:18.522067+00 2025-10-01 20:05:18.522079+00 f t Confirmado 784 \N +2462 2025-10-01 20:05:19.925477+00 2025-10-01 20:05:19.925487+00 f t vet_asked Veterinario asignado: Palladino Martín 784 1583 +2463 2025-10-01 20:05:20.763788+00 2025-10-01 20:05:20.7638+00 f t vet_accepted 784 1583 +2464 2025-10-01 21:49:15.988564+00 2025-10-01 21:49:15.988577+00 f t pending 785 \N +2465 2025-10-01 21:49:21.146562+00 2025-10-01 21:49:21.146571+00 f t in_progress_vet 785 1583 +2466 2025-10-01 21:49:46.043641+00 2025-10-01 21:49:46.04365+00 f t coordinated Solicitud coordinada para 2025-10-01 a las 19:00:00 785 1583 +2467 2025-10-01 21:49:54.707359+00 2025-10-01 21:49:54.707371+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 785 1583 +2468 2025-10-01 21:49:55.4604+00 2025-10-01 21:49:55.46041+00 f t vet_accepted 785 1583 +2469 2025-10-01 21:49:55.473527+00 2025-10-01 21:49:55.473536+00 f t in_progress_pay 785 1583 +2470 2025-10-01 21:50:46.950366+00 2025-10-01 21:50:46.950375+00 f t Confirmado 785 \N +2471 2025-10-01 21:50:46.904407+00 2025-10-01 21:50:46.904416+00 f t payed 785 1583 +2472 2025-10-01 23:07:09.20069+00 2025-10-01 23:07:09.200701+00 f t pending 786 \N +2473 2025-10-01 23:07:16.682711+00 2025-10-01 23:07:16.682723+00 f t in_progress_vet 786 113 +2474 2025-10-01 23:07:28.329073+00 2025-10-01 23:07:28.329084+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 19:30:00 786 113 +2475 2025-10-01 23:47:53.031043+00 2025-10-01 23:47:53.031054+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 786 113 +2476 2025-10-01 23:47:55.635664+00 2025-10-01 23:47:55.635676+00 f t vet_accepted 786 113 +2477 2025-10-01 23:47:55.647957+00 2025-10-01 23:47:55.647966+00 f t in_progress_pay 786 113 +2478 2025-10-01 23:48:28.763348+00 2025-10-01 23:48:28.763357+00 f t Confirmado 786 \N +2479 2025-10-01 23:48:28.725037+00 2025-10-01 23:48:28.725048+00 f t payed 786 113 +2480 2025-10-01 23:48:58.827778+00 2025-10-01 23:48:58.827794+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 20:00:00 786 113 +2481 2025-10-02 13:03:55.378501+00 2025-10-02 13:03:55.378512+00 f t pending 787 \N +2482 2025-10-02 13:04:02.063919+00 2025-10-02 13:04:02.063933+00 f t in_progress_vet 787 1208 +2483 2025-10-02 13:04:15.894335+00 2025-10-02 13:04:15.894345+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 18:00:00 787 1208 +2484 2025-10-02 13:21:20.41548+00 2025-10-02 13:21:20.415494+00 f t pending 788 \N +2485 2025-10-02 13:22:15.571092+00 2025-10-02 13:22:15.571102+00 f t in_progress_vet 788 1208 +2486 2025-10-02 13:36:24.003022+00 2025-10-02 13:36:24.00304+00 f t pending 789 \N +2487 2025-10-02 13:36:31.188059+00 2025-10-02 13:36:31.188071+00 f t in_progress_vet 789 1208 +2488 2025-10-02 13:37:10.640699+00 2025-10-02 13:37:10.640708+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 18:00:00 789 1208 +2489 2025-10-02 13:40:46.182763+00 2025-10-02 13:40:46.182774+00 f t vet_accepted 787 122 +2490 2025-10-02 13:40:46.196929+00 2025-10-02 13:40:46.196942+00 f t in_progress_pay 787 122 +2491 2025-10-02 13:50:53.389182+00 2025-10-02 13:50:53.389191+00 f t vet_accepted 789 1774 +2492 2025-10-02 13:50:53.400645+00 2025-10-02 13:50:53.400654+00 f t in_progress_pay 789 1774 +2493 2025-10-02 13:57:46.345961+00 2025-10-02 13:57:46.345973+00 f t pending 790 \N +2494 2025-10-02 13:57:51.483794+00 2025-10-02 13:57:51.483802+00 f t in_progress_vet 790 1208 +2495 2025-10-02 13:58:56.243196+00 2025-10-02 13:58:56.243207+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 16:30:00 790 1208 +2496 2025-10-02 13:59:05.991037+00 2025-10-02 13:59:05.991046+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 790 1208 +2497 2025-10-02 13:59:29.134884+00 2025-10-02 13:59:29.134892+00 f t pending 791 \N +2498 2025-10-02 13:59:34.886918+00 2025-10-02 13:59:34.886927+00 f t in_progress_vet 791 1208 +2499 2025-10-02 14:02:39.722623+00 2025-10-02 14:02:39.722634+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 17:00:00 791 1208 +2500 2025-10-02 14:02:52.592752+00 2025-10-02 14:02:52.59276+00 f t vet_asked Veterinario asignado: Campo Silvia 791 1208 +2501 2025-10-02 14:02:56.76072+00 2025-10-02 14:02:56.760731+00 f t vet_accepted 791 1208 +2502 2025-10-02 14:02:56.771467+00 2025-10-02 14:02:56.771476+00 f t in_progress_pay 791 1208 +2503 2025-10-02 14:03:19.572244+00 2025-10-02 14:03:19.572253+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 791 1208 +2504 2025-10-02 14:04:58.957776+00 2025-10-02 14:04:58.957784+00 f t pending 792 \N +2505 2025-10-02 14:05:14.677498+00 2025-10-02 14:05:14.677506+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 16:00:00 792 1208 +2506 2025-10-02 14:05:52.387802+00 2025-10-02 14:05:52.38781+00 f t pending 793 \N +2507 2025-10-02 14:05:56.792174+00 2025-10-02 14:05:56.792183+00 f t in_progress_vet 793 1208 +2508 2025-10-02 14:06:17.981895+00 2025-10-02 14:06:17.981906+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 15:00:00 793 1208 +2509 2025-10-02 14:12:28.23581+00 2025-10-02 14:12:28.235821+00 f t Confirmado 790 \N +2510 2025-10-02 14:12:28.2042+00 2025-10-02 14:12:28.204209+00 f t payed 790 1208 +2511 2025-10-02 14:12:42.160565+00 2025-10-02 14:12:42.160573+00 f t Confirmado 791 \N +2512 2025-10-02 14:12:42.131548+00 2025-10-02 14:12:42.131559+00 f t payed 791 1208 +2513 2025-10-02 14:56:32.952603+00 2025-10-02 14:56:32.952611+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 20:00:00 793 1208 +2514 2025-10-02 14:56:45.638811+00 2025-10-02 14:56:45.63882+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 793 1208 +2515 2025-10-02 15:02:18.333546+00 2025-10-02 15:02:18.333554+00 f t Confirmado 793 \N +2516 2025-10-02 15:02:18.303941+00 2025-10-02 15:02:18.30395+00 f t payed 793 1208 +2517 2025-10-02 15:09:59.351746+00 2025-10-02 15:09:59.351754+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 17:00:00 789 1208 +2518 2025-10-02 15:11:54.772317+00 2025-10-02 15:11:54.772334+00 f t Confirmado 789 \N +2519 2025-10-02 15:11:54.743867+00 2025-10-02 15:11:54.743876+00 f t payed 789 1208 +2520 2025-10-02 15:38:25.302253+00 2025-10-02 15:38:25.302264+00 f t pending 794 \N +2521 2025-10-02 15:38:31.003224+00 2025-10-02 15:38:31.003232+00 f t in_progress_vet 794 1208 +2522 2025-10-02 15:40:39.224726+00 2025-10-02 15:40:39.224734+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 18:30:00 794 1208 +2523 2025-10-02 15:51:11.265592+00 2025-10-02 15:51:11.265602+00 f t vet_accepted 794 124 +2524 2025-10-02 15:51:11.276085+00 2025-10-02 15:51:11.276094+00 f t in_progress_pay 794 124 +2525 2025-10-02 16:06:06.571377+00 2025-10-02 16:06:06.571387+00 f t pending 795 \N +2526 2025-10-02 16:06:12.660159+00 2025-10-02 16:06:12.660169+00 f t in_progress_vet 795 1583 +2527 2025-10-02 16:06:22.272282+00 2025-10-02 16:06:22.272289+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 16:30:00 795 1583 +2528 2025-10-02 16:07:51.885864+00 2025-10-02 16:07:51.885872+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 795 1583 +2529 2025-10-02 16:08:03.675395+00 2025-10-02 16:08:03.675404+00 f t vet_accepted 795 1583 +2530 2025-10-02 16:08:03.685927+00 2025-10-02 16:08:03.685936+00 f t in_progress_pay 795 1583 +2531 2025-10-02 16:09:03.939402+00 2025-10-02 16:09:03.939412+00 f t payed 795 1583 +2532 2025-10-02 16:16:41.09318+00 2025-10-02 16:16:41.093189+00 f t Confirmado 795 \N +2533 2025-10-02 16:16:42.176706+00 2025-10-02 16:16:42.176718+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 795 121 +2534 2025-10-02 16:16:44.340012+00 2025-10-02 16:16:44.340023+00 f t vet_accepted 795 121 +2535 2025-10-02 16:36:16.816792+00 2025-10-02 16:36:16.8168+00 f t pending 796 \N +2536 2025-10-02 16:36:25.347438+00 2025-10-02 16:36:25.347447+00 f t in_progress_vet 796 1583 +2537 2025-10-02 16:36:48.727218+00 2025-10-02 16:36:48.727227+00 f t coordinated Solicitud coordinada para 2025-10-02 a las 18:00:00 796 1583 +2538 2025-10-02 16:50:06.155635+00 2025-10-02 16:50:06.15565+00 f t pending 797 \N +2539 2025-10-02 16:50:12.723557+00 2025-10-02 16:50:12.723565+00 f t in_progress_vet 797 1208 +2540 2025-10-02 16:50:22.262787+00 2025-10-02 16:50:22.262795+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 11:00:00 797 1208 +2541 2025-10-02 17:01:43.793086+00 2025-10-02 17:01:43.793099+00 f t vet_asked Veterinario asignado: Ponce Lisandro 796 1583 +2542 2025-10-02 17:01:54.258355+00 2025-10-02 17:01:54.258365+00 f t vet_accepted 796 1583 +2543 2025-10-02 17:01:54.270769+00 2025-10-02 17:01:54.270779+00 f t in_progress_pay 796 1583 +2544 2025-10-02 17:02:20.777224+00 2025-10-02 17:02:20.777232+00 f t vet_accepted 797 148 +2545 2025-10-02 17:02:20.788437+00 2025-10-02 17:02:20.788447+00 f t in_progress_pay 797 148 +2546 2025-10-02 17:02:28.420792+00 2025-10-02 17:02:28.420799+00 f t Confirmado 796 \N +2547 2025-10-02 17:02:28.389541+00 2025-10-02 17:02:28.38955+00 f t payed 796 1583 +2548 2025-10-02 17:05:30.257275+00 2025-10-02 17:05:30.257283+00 f t Confirmado 797 \N +2549 2025-10-02 17:05:30.224954+00 2025-10-02 17:05:30.224963+00 f t payed 797 1208 +2550 2025-10-02 17:24:01.117949+00 2025-10-02 17:24:01.117958+00 f t Confirmado 794 \N +2551 2025-10-02 17:24:01.081599+00 2025-10-02 17:24:01.081608+00 f t payed 794 1208 +2552 2025-10-02 17:26:27.582046+00 2025-10-02 17:26:27.582055+00 f t pending 798 \N +2553 2025-10-02 17:26:33.184693+00 2025-10-02 17:26:33.184706+00 f t in_progress_vet 798 1208 +2554 2025-10-02 17:27:08.84279+00 2025-10-02 17:27:08.842801+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 19:00:00 798 1208 +2555 2025-10-02 17:30:21.395708+00 2025-10-02 17:30:21.395718+00 f t pending 799 \N +2556 2025-10-02 17:30:26.191092+00 2025-10-02 17:30:26.1911+00 f t in_progress_vet 799 1208 +2557 2025-10-02 17:30:39.618298+00 2025-10-02 17:30:39.618305+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 19:00:00 799 1208 +2558 2025-10-02 17:46:18.553507+00 2025-10-02 17:46:18.553519+00 f t vet_accepted 798 122 +2559 2025-10-02 17:46:18.563453+00 2025-10-02 17:46:18.563461+00 f t in_progress_pay 798 122 +2560 2025-10-02 18:07:47.492718+00 2025-10-02 18:07:47.492726+00 f t vet_accepted 799 138 +2561 2025-10-02 18:07:47.504029+00 2025-10-02 18:07:47.504038+00 f t in_progress_pay 799 138 +2562 2025-10-02 18:38:27.993704+00 2025-10-02 18:38:27.993715+00 f t Confirmado 798 \N +2563 2025-10-02 18:38:27.961788+00 2025-10-02 18:38:27.961799+00 f t payed 798 1208 +2564 2025-10-02 18:41:17.750129+00 2025-10-02 18:41:17.750137+00 f t pending 800 \N +2565 2025-10-02 18:46:05.572+00 2025-10-02 18:46:05.572009+00 f t pending 801 \N +2566 2025-10-02 18:47:53.529639+00 2025-10-02 18:47:53.529651+00 f t in_progress_vet 801 1583 +2567 2025-10-02 18:47:59.44894+00 2025-10-02 18:47:59.448949+00 f t in_progress_vet 800 1583 +2568 2025-10-02 18:48:56.956098+00 2025-10-02 18:48:56.956105+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 10:00:00 801 1583 +2569 2025-10-02 18:50:13.116689+00 2025-10-02 18:50:13.116701+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 10:00:00 800 1583 +2570 2025-10-02 18:50:15.42412+00 2025-10-02 18:50:15.424128+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 19:30:00 799 1208 +2571 2025-10-02 18:55:03.534931+00 2025-10-02 18:55:03.534944+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 19:30:00 799 1208 +2572 2025-10-02 18:55:18.876869+00 2025-10-02 18:55:18.876878+00 f t vet_asked Veterinario asignado: Szczurek Verónica Carolina 799 1208 +2573 2025-10-02 18:56:01.737674+00 2025-10-02 18:56:01.737686+00 f t pending 802 \N +2574 2025-10-02 18:56:14.727341+00 2025-10-02 18:56:14.72735+00 f t Confirmado 799 \N +2575 2025-10-02 18:56:14.687299+00 2025-10-02 18:56:14.687309+00 f t payed 799 1208 +2576 2025-10-02 18:57:49.347853+00 2025-10-02 18:57:49.347866+00 f t in_progress_vet 802 1208 +2577 2025-10-02 18:59:32.071605+00 2025-10-02 18:59:32.071617+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 09:30:00 802 1208 +2578 2025-10-02 18:59:49.872717+00 2025-10-02 18:59:49.872727+00 f t vet_accepted 801 134 +2579 2025-10-02 18:59:49.884568+00 2025-10-02 18:59:49.884578+00 f t in_progress_pay 801 134 +2580 2025-10-02 19:00:56.715296+00 2025-10-02 19:00:56.715306+00 f t vet_accepted 802 1774 +2581 2025-10-02 19:00:56.728032+00 2025-10-02 19:00:56.728042+00 f t in_progress_pay 802 1774 +2582 2025-10-02 19:08:26.43747+00 2025-10-02 19:08:26.437477+00 f t Confirmado 802 \N +2583 2025-10-02 19:08:26.409752+00 2025-10-02 19:08:26.409762+00 f t payed 802 1208 +2584 2025-10-02 19:12:21.144122+00 2025-10-02 19:12:21.14413+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 20:00:00 788 1208 +2585 2025-10-02 19:19:20.413108+00 2025-10-02 19:19:20.413118+00 f t vet_accepted 788 129 +2586 2025-10-02 19:19:20.424921+00 2025-10-02 19:19:20.424932+00 f t in_progress_pay 788 129 +2587 2025-10-02 19:21:06.127789+00 2025-10-02 19:21:06.127798+00 f t Confirmado 788 \N +2588 2025-10-02 19:21:06.090476+00 2025-10-02 19:21:06.090485+00 f t payed 788 1208 +2589 2025-10-02 19:31:36.333916+00 2025-10-02 19:31:36.333927+00 f t pending 803 \N +2590 2025-10-02 19:33:04.701964+00 2025-10-02 19:33:04.701978+00 f t in_progress_vet 803 1583 +2673 2025-10-03 13:11:11.306043+00 2025-10-03 13:11:11.306053+00 f t in_progress_vet 818 1583 +2591 2025-10-02 19:33:20.76886+00 2025-10-02 19:33:20.768869+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 10:30:00 803 1583 +2592 2025-10-02 19:38:08.738396+00 2025-10-02 19:38:08.738407+00 f t vet_asked Veterinario asignado: Medvuidenur Yanina 803 1583 +2593 2025-10-02 19:38:09.615895+00 2025-10-02 19:38:09.615903+00 f t vet_accepted 803 1583 +2594 2025-10-02 19:38:09.625739+00 2025-10-02 19:38:09.625747+00 f t in_progress_pay 803 1583 +2595 2025-10-02 19:39:03.144523+00 2025-10-02 19:39:03.144536+00 f t Confirmado 803 \N +2596 2025-10-02 19:39:03.094513+00 2025-10-02 19:39:03.094525+00 f t payed 803 1583 +2597 2025-10-02 19:42:12.968303+00 2025-10-02 19:42:12.968317+00 f t pending 804 \N +2598 2025-10-02 19:42:22.148097+00 2025-10-02 19:42:22.148105+00 f t in_progress_vet 804 1583 +2599 2025-10-02 19:42:31.392287+00 2025-10-02 19:42:31.392294+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 10:30:00 804 1583 +2600 2025-10-02 19:42:49.265638+00 2025-10-02 19:42:49.26565+00 f t vet_asked Veterinario asignado: Medvuidenur Yanina 804 1583 +2601 2025-10-02 19:42:49.95665+00 2025-10-02 19:42:49.956658+00 f t vet_accepted 804 1583 +2602 2025-10-02 19:42:49.96731+00 2025-10-02 19:42:49.967318+00 f t in_progress_pay 804 1583 +2603 2025-10-02 19:43:10.15115+00 2025-10-02 19:43:10.15116+00 f t Confirmado 804 \N +2604 2025-10-02 19:43:10.12271+00 2025-10-02 19:43:10.122719+00 f t payed 804 1583 +2605 2025-10-02 19:44:02.405476+00 2025-10-02 19:44:02.405485+00 f t pending 805 \N +2606 2025-10-02 19:44:08.496862+00 2025-10-02 19:44:08.496871+00 f t in_progress_vet 805 1583 +2607 2025-10-02 19:44:17.707356+00 2025-10-02 19:44:17.707363+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 10:30:00 805 1583 +2608 2025-10-02 19:44:36.043629+00 2025-10-02 19:44:36.043638+00 f t vet_asked Veterinario asignado: Medvuidenur Yanina 805 1583 +2609 2025-10-02 19:44:36.741061+00 2025-10-02 19:44:36.741069+00 f t vet_accepted 805 1583 +2610 2025-10-02 19:44:36.75137+00 2025-10-02 19:44:36.751378+00 f t in_progress_pay 805 1583 +2611 2025-10-02 19:44:45.602226+00 2025-10-02 19:44:45.602234+00 f t Confirmado 805 \N +2612 2025-10-02 19:44:45.574733+00 2025-10-02 19:44:45.574742+00 f t payed 805 1583 +2613 2025-10-02 19:45:35.088362+00 2025-10-02 19:45:35.088373+00 f t pending 806 \N +2614 2025-10-02 19:45:39.441257+00 2025-10-02 19:45:39.441265+00 f t in_progress_vet 806 1583 +2615 2025-10-02 19:45:53.48732+00 2025-10-02 19:45:53.487331+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 10:30:00 806 1583 +2616 2025-10-02 19:46:09.467696+00 2025-10-02 19:46:09.467705+00 f t vet_asked Veterinario asignado: Medvuidenur Yanina 806 1583 +2617 2025-10-02 19:46:10.088811+00 2025-10-02 19:46:10.08882+00 f t vet_accepted 806 1583 +2618 2025-10-02 19:46:10.099392+00 2025-10-02 19:46:10.099401+00 f t in_progress_pay 806 1583 +2619 2025-10-02 19:46:19.452248+00 2025-10-02 19:46:19.452256+00 f t Confirmado 806 \N +2620 2025-10-02 19:46:19.42035+00 2025-10-02 19:46:19.420358+00 f t payed 806 1583 +2621 2025-10-02 20:00:05.530621+00 2025-10-02 20:00:05.530635+00 f t rejected D-Abandono Bot 787 1208 +2622 2025-10-02 20:10:11.870318+00 2025-10-02 20:10:11.870331+00 f t pending 807 \N +2623 2025-10-02 20:10:17.89874+00 2025-10-02 20:10:17.898753+00 f t in_progress_vet 807 1583 +2624 2025-10-02 20:10:28.07058+00 2025-10-02 20:10:28.070588+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 11:00:00 807 1583 +2625 2025-10-02 20:20:48.292374+00 2025-10-02 20:20:48.292383+00 f t vet_asked Veterinario asignado: Ponce Lisandro 807 1583 +2626 2025-10-02 20:25:00.900951+00 2025-10-02 20:25:00.90096+00 f t Confirmado 807 \N +2627 2025-10-02 20:25:00.863849+00 2025-10-02 20:25:00.863861+00 f t payed 807 1583 +2628 2025-10-02 20:37:25.489246+00 2025-10-02 20:37:25.489255+00 f t pending 808 \N +2629 2025-10-02 20:37:30.396525+00 2025-10-02 20:37:30.396534+00 f t in_progress_vet 808 1583 +2630 2025-10-02 20:37:54.828202+00 2025-10-02 20:37:54.828209+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 16:30:00 808 1583 +2631 2025-10-02 20:41:32.092944+00 2025-10-02 20:41:32.092957+00 f t vet_accepted 808 124 +2632 2025-10-02 20:41:32.120929+00 2025-10-02 20:41:32.120941+00 f t in_progress_pay 808 124 +2633 2025-10-02 20:58:30.731001+00 2025-10-02 20:58:30.731008+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 18:00:00 808 1583 +2634 2025-10-02 21:04:52.810454+00 2025-10-02 21:04:52.810462+00 f t pending 809 \N +2635 2025-10-02 21:05:04.368234+00 2025-10-02 21:05:04.368248+00 f t in_progress_vet 809 1583 +2636 2025-10-02 21:05:13.160691+00 2025-10-02 21:05:13.160699+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 15:00:00 809 1583 +2637 2025-10-02 21:05:32.693178+00 2025-10-02 21:05:32.693187+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 809 1583 +2638 2025-10-02 21:05:33.275817+00 2025-10-02 21:05:33.275826+00 f t vet_accepted 809 1583 +2639 2025-10-02 21:05:33.293703+00 2025-10-02 21:05:33.293711+00 f t in_progress_pay 809 1583 +2640 2025-10-02 21:06:01.010079+00 2025-10-02 21:06:01.010088+00 f t Confirmado 809 \N +2641 2025-10-02 21:06:00.982441+00 2025-10-02 21:06:00.982452+00 f t payed 809 1583 +2642 2025-10-02 21:36:27.17723+00 2025-10-02 21:36:27.177238+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 18:00:00 808 1583 +2643 2025-10-02 21:49:22.392264+00 2025-10-02 21:49:22.392274+00 f t pending 810 \N +2644 2025-10-02 21:49:29.321979+00 2025-10-02 21:49:29.321988+00 f t in_progress_vet 810 1583 +2645 2025-10-02 21:49:49.685486+00 2025-10-02 21:49:49.685494+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 15:30:00 810 1583 +2646 2025-10-02 22:15:14.137406+00 2025-10-02 22:15:14.137417+00 f t pending 811 \N +2647 2025-10-02 22:51:40.25331+00 2025-10-02 22:51:40.253318+00 f t pending 812 \N +2648 2025-10-02 23:06:48.922575+00 2025-10-02 23:06:48.922588+00 f t in_progress_vet 812 113 +2649 2025-10-02 23:10:18.529854+00 2025-10-02 23:10:18.529865+00 f t pending 813 \N +2650 2025-10-02 23:34:05.518408+00 2025-10-02 23:34:05.518419+00 f t in_progress_vet 811 113 +2651 2025-10-02 23:34:16.352216+00 2025-10-02 23:34:16.352225+00 f t in_progress_vet 813 113 +2652 2025-10-02 23:37:23.381013+00 2025-10-02 23:37:23.381024+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 16:00:00 811 113 +2653 2025-10-02 23:38:33.704274+00 2025-10-02 23:38:33.704283+00 f t vet_accepted 811 134 +2654 2025-10-02 23:38:33.713771+00 2025-10-02 23:38:33.713779+00 f t in_progress_pay 811 134 +2655 2025-10-02 23:41:40.828465+00 2025-10-02 23:41:40.828476+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 17:00:00 812 113 +2656 2025-10-03 00:21:33.186567+00 2025-10-03 00:21:33.186575+00 f t Confirmado 811 \N +2657 2025-10-03 00:21:33.15469+00 2025-10-03 00:21:33.154699+00 f t payed 811 113 +2658 2025-10-03 01:52:25.967426+00 2025-10-03 01:52:25.967438+00 f t pending 814 \N +2659 2025-10-03 01:53:51.324179+00 2025-10-03 01:53:51.324187+00 f t pending 815 \N +2660 2025-10-03 01:53:56.608204+00 2025-10-03 01:53:56.608214+00 f t pending 816 \N +2661 2025-10-03 03:44:18.93034+00 2025-10-03 03:44:18.930349+00 f t pending 817 \N +2662 2025-10-03 12:14:04.031767+00 2025-10-03 12:14:04.03178+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 09:00:00 800 1583 +2663 2025-10-03 12:14:13.073717+00 2025-10-03 12:14:13.073727+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 800 1583 +2664 2025-10-03 12:14:47.349081+00 2025-10-03 12:14:47.349088+00 f t Confirmado 800 \N +2665 2025-10-03 12:14:47.31311+00 2025-10-03 12:14:47.313119+00 f t payed 800 1583 +2666 2025-10-03 12:34:09.633919+00 2025-10-03 12:34:09.633929+00 f t pending 818 \N +2667 2025-10-03 12:40:42.229275+00 2025-10-03 12:40:42.229287+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 810 1583 +2668 2025-10-03 12:40:43.224131+00 2025-10-03 12:40:43.224139+00 f t vet_accepted 810 1583 +2669 2025-10-03 12:40:43.234341+00 2025-10-03 12:40:43.234351+00 f t in_progress_pay 810 1583 +2670 2025-10-03 12:41:56.430707+00 2025-10-03 12:41:56.430715+00 f t Confirmado 810 \N +2671 2025-10-03 12:41:56.395876+00 2025-10-03 12:41:56.395885+00 f t payed 810 1583 +2672 2025-10-03 13:11:02.958799+00 2025-10-03 13:11:02.95881+00 f t in_progress_vet 814 1583 +2674 2025-10-03 13:12:00.569349+00 2025-10-03 13:12:00.569358+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 16:00:00 818 1583 +2675 2025-10-03 13:22:53.320967+00 2025-10-03 13:22:53.320977+00 f t in_progress_vet 816 1583 +2676 2025-10-03 13:23:04.927921+00 2025-10-03 13:23:04.92793+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 16:00:00 816 1583 +2677 2025-10-03 13:28:18.087904+00 2025-10-03 13:28:18.087913+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 14:00:00 818 1583 +2678 2025-10-03 13:28:48.176458+00 2025-10-03 13:28:48.176468+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 818 1583 +2679 2025-10-03 13:28:51.197538+00 2025-10-03 13:28:51.197546+00 f t Confirmado 818 \N +2680 2025-10-03 13:28:51.167119+00 2025-10-03 13:28:51.167145+00 f t payed 818 1583 +2681 2025-10-03 13:41:43.314418+00 2025-10-03 13:41:43.314429+00 f t in_progress_vet 815 1583 +2682 2025-10-03 13:41:58.325407+00 2025-10-03 13:41:58.325415+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 13:00:00 815 1583 +2683 2025-10-03 13:51:33.30303+00 2025-10-03 13:51:33.303039+00 f t pending 819 \N +2684 2025-10-03 13:51:49.275567+00 2025-10-03 13:51:49.275578+00 f t in_progress_vet 819 1583 +2685 2025-10-03 13:51:56.384022+00 2025-10-03 13:51:56.384029+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 15:30:00 819 1583 +2686 2025-10-03 13:52:02.026393+00 2025-10-03 13:52:02.026402+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 819 1583 +2687 2025-10-03 13:52:02.631655+00 2025-10-03 13:52:02.631663+00 f t vet_accepted 819 1583 +2688 2025-10-03 13:52:02.64526+00 2025-10-03 13:52:02.645271+00 f t in_progress_pay 819 1583 +2689 2025-10-03 13:59:28.135344+00 2025-10-03 13:59:28.135352+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 819 1583 +2690 2025-10-03 13:59:30.590282+00 2025-10-03 13:59:30.590291+00 f t vet_accepted 819 1583 +2691 2025-10-03 13:59:30.600723+00 2025-10-03 13:59:30.600732+00 f t in_progress_pay 819 1583 +2692 2025-10-03 13:59:53.952515+00 2025-10-03 13:59:53.952527+00 f t Confirmado 819 \N +2693 2025-10-03 13:59:53.918758+00 2025-10-03 13:59:53.918767+00 f t payed 819 1583 +2694 2025-10-03 14:07:28.306316+00 2025-10-03 14:07:28.306327+00 f t pending 820 \N +2695 2025-10-03 14:07:33.191838+00 2025-10-03 14:07:33.191847+00 f t in_progress_vet 820 1583 +2696 2025-10-03 14:07:39.968965+00 2025-10-03 14:07:39.968973+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 09:30:00 820 1583 +2697 2025-10-03 14:08:00.293127+00 2025-10-03 14:08:00.293137+00 f t vet_asked Veterinario asignado: Campo Silvia 820 1583 +2698 2025-10-03 14:08:00.984094+00 2025-10-03 14:08:00.984103+00 f t vet_accepted 820 1583 +2699 2025-10-03 14:08:00.997608+00 2025-10-03 14:08:00.997617+00 f t in_progress_pay 820 1583 +2700 2025-10-03 14:08:28.71141+00 2025-10-03 14:08:28.711418+00 f t Confirmado 820 \N +2701 2025-10-03 14:08:28.684243+00 2025-10-03 14:08:28.684252+00 f t payed 820 1583 +2702 2025-10-03 14:16:56.604149+00 2025-10-03 14:16:56.604163+00 f t pending 821 \N +2703 2025-10-03 14:17:28.877755+00 2025-10-03 14:17:28.877764+00 f t in_progress_vet 821 1583 +2704 2025-10-03 14:19:04.346894+00 2025-10-03 14:19:04.346903+00 f t vet_asked Veterinario asignado: Henjes María José 812 1583 +2705 2025-10-03 14:19:40.706232+00 2025-10-03 14:19:40.706241+00 f t Confirmado 812 \N +2706 2025-10-03 14:19:40.668933+00 2025-10-03 14:19:40.668942+00 f t payed 812 1583 +2707 2025-10-03 14:31:33.489811+00 2025-10-03 14:31:33.489823+00 f t vet_accepted 808 124 +2708 2025-10-03 14:31:33.504416+00 2025-10-03 14:31:33.504425+00 f t in_progress_pay 808 124 +2709 2025-10-03 14:32:39.776077+00 2025-10-03 14:32:39.776084+00 f t pending 822 \N +2710 2025-10-03 14:32:44.507521+00 2025-10-03 14:32:44.507529+00 f t in_progress_vet 822 1583 +2711 2025-10-03 14:32:54.22039+00 2025-10-03 14:32:54.220401+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 10:00:00 822 1583 +2712 2025-10-03 14:33:19.130815+00 2025-10-03 14:33:19.130823+00 f t payed 822 1583 +2713 2025-10-03 14:33:26.667444+00 2025-10-03 14:33:26.667451+00 f t Confirmado 822 \N +2714 2025-10-03 14:33:27.837305+00 2025-10-03 14:33:27.837315+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 822 1583 +2715 2025-10-03 14:33:32.057274+00 2025-10-03 14:33:32.057283+00 f t vet_accepted 822 1583 +2716 2025-10-03 14:36:15.651838+00 2025-10-03 14:36:15.651847+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 16:30:00 813 1583 +2717 2025-10-03 14:41:55.82197+00 2025-10-03 14:41:55.821978+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 17:00:00 815 1583 +2718 2025-10-03 14:43:46.462813+00 2025-10-03 14:43:46.462822+00 f t vet_asked Veterinario asignado: Ponce Lisandro 815 1583 +2719 2025-10-03 15:05:10.442938+00 2025-10-03 15:05:10.442947+00 f t vet_accepted 786 126 +2720 2025-10-03 15:05:37.15974+00 2025-10-03 15:05:37.159748+00 f t rejected Solicitud rechazada por Usuario no especificado 783 \N +2721 2025-10-03 15:05:37.165634+00 2025-10-03 15:05:37.165642+00 f t in_progress_vet 783 \N +2722 2025-10-03 15:08:02.127554+00 2025-10-03 15:08:02.127563+00 f t Confirmado 815 \N +2723 2025-10-03 15:08:02.097502+00 2025-10-03 15:08:02.09751+00 f t payed 815 1583 +2724 2025-10-03 15:32:41.615638+00 2025-10-03 15:32:41.615648+00 f t pending 823 \N +2725 2025-10-03 15:32:57.866672+00 2025-10-03 15:32:57.866685+00 f t in_progress_vet 823 1583 +2726 2025-10-03 15:33:06.602364+00 2025-10-03 15:33:06.602372+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 09:00:00 823 1583 +2727 2025-10-03 15:35:39.346223+00 2025-10-03 15:35:39.346233+00 f t pending 824 \N +2728 2025-10-03 15:35:56.582171+00 2025-10-03 15:35:56.582179+00 f t in_progress_vet 824 1583 +2729 2025-10-03 15:36:34.976815+00 2025-10-03 15:36:34.976823+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 10:00:00 824 1583 +2730 2025-10-03 15:56:16.015891+00 2025-10-03 15:56:16.015899+00 f t pending 825 \N +2731 2025-10-03 15:56:47.1862+00 2025-10-03 15:56:47.186207+00 f t in_progress_vet 825 1583 +2732 2025-10-03 15:56:57.240292+00 2025-10-03 15:56:57.240299+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 18:00:00 825 1583 +2733 2025-10-03 16:07:10.482354+00 2025-10-03 16:07:10.482364+00 f t pending 826 \N +2734 2025-10-03 16:07:28.345975+00 2025-10-03 16:07:28.345985+00 f t in_progress_vet 826 1583 +2735 2025-10-03 16:07:36.906245+00 2025-10-03 16:07:36.906254+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 15:30:00 826 1583 +2736 2025-10-03 16:25:25.254356+00 2025-10-03 16:25:25.254363+00 f t pending 827 \N +2737 2025-10-03 16:25:44.997361+00 2025-10-03 16:25:44.997369+00 f t in_progress_vet 827 1583 +2738 2025-10-03 16:25:53.341008+00 2025-10-03 16:25:53.341016+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 18:00:00 827 1583 +2739 2025-10-03 17:01:31.541868+00 2025-10-03 17:01:31.54188+00 f t vet_asked Veterinario asignado: Lorenzo Camila 827 1583 +2740 2025-10-03 17:01:32.889952+00 2025-10-03 17:01:32.889963+00 f t vet_accepted 827 1583 +2741 2025-10-03 17:01:32.903636+00 2025-10-03 17:01:32.903647+00 f t in_progress_pay 827 1583 +2742 2025-10-03 17:03:11.375453+00 2025-10-03 17:03:11.375462+00 f t Confirmado 827 \N +2743 2025-10-03 17:03:11.347791+00 2025-10-03 17:03:11.347801+00 f t payed 827 1583 +2744 2025-10-03 17:25:29.828905+00 2025-10-03 17:25:29.828913+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 11:00:00 821 1583 +2745 2025-10-03 17:25:34.403209+00 2025-10-03 17:25:34.403218+00 f t vet_asked Veterinario asignado: Della Bianca Paola 821 1583 +2746 2025-10-03 17:25:36.185953+00 2025-10-03 17:25:36.185961+00 f t vet_accepted 821 1583 +2747 2025-10-03 17:25:36.199053+00 2025-10-03 17:25:36.199062+00 f t in_progress_pay 821 1583 +2748 2025-10-03 17:40:46.500745+00 2025-10-03 17:40:46.500756+00 f t pending 828 \N +2749 2025-10-03 17:41:12.122612+00 2025-10-03 17:41:12.122624+00 f t in_progress_vet 828 1583 +2750 2025-10-03 17:43:16.46431+00 2025-10-03 17:43:16.464319+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 11:00:00 828 1583 +2751 2025-10-03 17:44:02.802414+00 2025-10-03 17:44:02.802424+00 f t vet_accepted 828 134 +2752 2025-10-03 17:44:02.820094+00 2025-10-03 17:44:02.820103+00 f t in_progress_pay 828 134 +2753 2025-10-03 17:59:35.637678+00 2025-10-03 17:59:35.637686+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 10:00:00 823 1583 +2754 2025-10-03 18:00:26.469166+00 2025-10-03 18:00:26.469181+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 823 1583 +2755 2025-10-03 18:00:27.900218+00 2025-10-03 18:00:27.90023+00 f t vet_accepted 823 1583 +2756 2025-10-03 18:00:27.921587+00 2025-10-03 18:00:27.921602+00 f t in_progress_pay 823 1583 +2757 2025-10-03 18:16:20.242622+00 2025-10-03 18:16:20.242632+00 f t vet_asked Veterinario asignado: Grilli Adrian 826 1583 +2758 2025-10-03 18:17:46.222717+00 2025-10-03 18:17:46.222726+00 f t Confirmado 826 \N +2759 2025-10-03 18:17:46.184385+00 2025-10-03 18:17:46.184394+00 f t payed 826 1583 +2760 2025-10-03 18:35:53.812094+00 2025-10-03 18:35:53.812103+00 f t Confirmado 823 \N +2761 2025-10-03 18:35:53.781941+00 2025-10-03 18:35:53.78195+00 f t payed 823 1583 +2762 2025-10-03 18:58:01.117585+00 2025-10-03 18:58:01.117594+00 f t pending 829 \N +2763 2025-10-03 18:58:46.361666+00 2025-10-03 18:58:46.361674+00 f t in_progress_vet 829 1208 +2764 2025-10-03 18:59:00.407943+00 2025-10-03 18:59:00.40795+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 18:00:00 829 1208 +2765 2025-10-03 18:59:13.349913+00 2025-10-03 18:59:13.349921+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 829 1208 +2766 2025-10-03 19:06:55.560557+00 2025-10-03 19:06:55.560566+00 f t Confirmado 829 \N +2767 2025-10-03 19:06:55.527755+00 2025-10-03 19:06:55.527766+00 f t payed 829 1208 +2768 2025-10-03 19:22:02.683932+00 2025-10-03 19:22:02.683947+00 f t pending 830 \N +2769 2025-10-03 19:24:00.715313+00 2025-10-03 19:24:00.715321+00 f t in_progress_vet 830 1583 +2770 2025-10-03 19:24:28.299442+00 2025-10-03 19:24:28.299451+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 11:00:00 830 1583 +2771 2025-10-03 19:24:42.721289+00 2025-10-03 19:24:42.721298+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 830 1583 +2772 2025-10-03 19:24:43.374139+00 2025-10-03 19:24:43.374147+00 f t vet_accepted 830 1583 +2773 2025-10-03 19:24:43.384291+00 2025-10-03 19:24:43.3843+00 f t in_progress_pay 830 1583 +2774 2025-10-03 19:24:59.286169+00 2025-10-03 19:24:59.28618+00 f t Confirmado 830 \N +2775 2025-10-03 19:24:59.257154+00 2025-10-03 19:24:59.257162+00 f t payed 830 1583 +2776 2025-10-03 19:39:26.564296+00 2025-10-03 19:39:26.564305+00 f t pending 831 \N +2777 2025-10-03 19:49:08.200125+00 2025-10-03 19:49:08.200134+00 f t in_progress_vet 831 1208 +2778 2025-10-03 20:12:42.653373+00 2025-10-03 20:12:42.653383+00 f t pending 832 \N +2779 2025-10-03 20:13:03.547997+00 2025-10-03 20:13:03.548012+00 f t in_progress_vet 832 1208 +2780 2025-10-03 20:13:12.762339+00 2025-10-03 20:13:12.762348+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 16:00:00 832 1208 +2781 2025-10-03 20:44:55.549864+00 2025-10-03 20:44:55.549872+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 16:00:00 831 1208 +2782 2025-10-03 20:49:15.545906+00 2025-10-03 20:49:15.545915+00 f t vet_accepted 831 1774 +2783 2025-10-03 20:49:15.559831+00 2025-10-03 20:49:15.559839+00 f t in_progress_pay 831 1774 +2784 2025-10-03 21:06:19.453247+00 2025-10-03 21:06:19.453255+00 f t pending 833 \N +2785 2025-10-03 21:07:19.333843+00 2025-10-03 21:07:19.333852+00 f t in_progress_vet 833 1208 +2786 2025-10-03 21:07:28.239548+00 2025-10-03 21:07:28.239555+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 20:30:00 833 1208 +2787 2025-10-03 21:10:59.12498+00 2025-10-03 21:10:59.124989+00 f t vet_accepted 833 135 +2788 2025-10-03 21:10:59.140431+00 2025-10-03 21:10:59.140444+00 f t in_progress_pay 833 135 +2789 2025-10-03 21:26:59.87177+00 2025-10-03 21:26:59.871783+00 f t pending 834 \N +2790 2025-10-03 21:33:31.393481+00 2025-10-03 21:33:31.39349+00 f t in_progress_vet 834 1208 +2791 2025-10-03 21:40:02.587018+00 2025-10-03 21:40:02.587032+00 f t Confirmado 833 \N +2792 2025-10-03 21:40:02.522563+00 2025-10-03 21:40:02.522577+00 f t payed 833 1208 +2793 2025-10-03 21:40:18.514055+00 2025-10-03 21:40:18.514063+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 19:30:00 833 1208 +2794 2025-10-03 21:47:49.254334+00 2025-10-03 21:47:49.254343+00 f t pending 835 \N +2795 2025-10-03 21:48:05.088682+00 2025-10-03 21:48:05.088691+00 f t in_progress_vet 835 1208 +2796 2025-10-03 21:48:13.17209+00 2025-10-03 21:48:13.172097+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 10:00:00 835 1208 +2797 2025-10-03 21:48:21.555579+00 2025-10-03 21:48:21.555591+00 f t vet_asked Veterinario asignado: Campo Silvia 835 1208 +2798 2025-10-03 21:48:43.347932+00 2025-10-03 21:48:43.347941+00 f t Confirmado 835 \N +2799 2025-10-03 21:48:43.319074+00 2025-10-03 21:48:43.319082+00 f t payed 835 1208 +2800 2025-10-03 21:50:48.496405+00 2025-10-03 21:50:48.496413+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 20:30:00 834 1208 +2801 2025-10-03 22:28:51.990194+00 2025-10-03 22:28:51.990203+00 f t pending 836 \N +2802 2025-10-03 22:29:10.921239+00 2025-10-03 22:29:10.921252+00 f t in_progress_vet 836 1208 +2803 2025-10-03 22:29:20.132657+00 2025-10-03 22:29:20.132664+00 f t coordinated Solicitud coordinada para 2025-10-03 a las 20:00:00 836 1208 +2804 2025-10-03 22:37:41.339342+00 2025-10-03 22:37:41.339351+00 f t vet_accepted 834 116 +2805 2025-10-03 22:37:41.3501+00 2025-10-03 22:37:41.350109+00 f t in_progress_pay 834 116 +2806 2025-10-03 22:41:12.096394+00 2025-10-03 22:41:12.096402+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 17:00:00 836 1208 +2807 2025-10-03 22:57:17.166925+00 2025-10-03 22:57:17.166935+00 f t Confirmado 831 \N +2808 2025-10-03 22:57:17.11358+00 2025-10-03 22:57:17.113589+00 f t payed 831 1208 +2809 2025-10-03 23:01:48.874627+00 2025-10-03 23:01:48.874637+00 f t vet_asked Veterinario asignado: di Risio Daniela 836 1208 +2810 2025-10-03 23:02:44.195532+00 2025-10-03 23:02:44.19554+00 f t Confirmado 836 \N +2811 2025-10-03 23:02:44.161029+00 2025-10-03 23:02:44.161039+00 f t payed 836 1208 +2812 2025-10-03 23:08:06.748199+00 2025-10-03 23:08:06.748208+00 f t rejected D-Averiguando / Desconocido 834 1208 +2813 2025-10-04 00:13:06.324772+00 2025-10-04 00:13:06.324781+00 f t rejected D-Abandono Bot 821 1208 +2814 2025-10-04 00:13:27.144079+00 2025-10-04 00:13:27.144089+00 f t rejected D-Abandono Bot 825 1208 +2815 2025-10-04 01:06:33.662868+00 2025-10-04 01:06:33.662877+00 f t pending 837 \N +2816 2025-10-04 08:49:25.114473+00 2025-10-04 08:49:25.114481+00 f t pending 838 \N +2817 2025-10-04 12:15:23.197648+00 2025-10-04 12:15:23.197661+00 f t in_progress_vet 837 1208 +2818 2025-10-04 12:24:45.529117+00 2025-10-04 12:24:45.529127+00 f t in_progress_vet 838 1208 +2819 2025-10-04 12:38:53.13881+00 2025-10-04 12:38:53.138818+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 13:00:00 838 1208 +2820 2025-10-04 12:44:20.092005+00 2025-10-04 12:44:20.092022+00 f t rejected D-Abandono Bot 813 1208 +2821 2025-10-04 12:44:29.244816+00 2025-10-04 12:44:29.244827+00 f t rejected D-Abandono Bot 814 1208 +2822 2025-10-04 12:46:49.735732+00 2025-10-04 12:46:49.735741+00 f t rejected D-Averiguando / Desconocido 828 1208 +2823 2025-10-04 12:47:13.58541+00 2025-10-04 12:47:13.585419+00 f t pending 839 \N +2824 2025-10-04 12:47:43.245918+00 2025-10-04 12:47:43.245927+00 f t in_progress_vet 839 1208 +2825 2025-10-04 12:47:52.727007+00 2025-10-04 12:47:52.727015+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 11:00:00 839 1208 +2826 2025-10-04 12:50:16.705885+00 2025-10-04 12:50:16.705897+00 f t payed 839 1208 +2827 2025-10-04 12:50:51.016852+00 2025-10-04 12:50:51.01686+00 f t Confirmado 839 \N +2828 2025-10-04 12:50:52.227615+00 2025-10-04 12:50:52.227625+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 839 1208 +2829 2025-10-04 13:02:47.392621+00 2025-10-04 13:02:47.39263+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 14:30:00 832 1208 +2830 2025-10-04 13:03:09.882274+00 2025-10-04 13:03:09.882283+00 f t vet_asked Veterinario asignado: Osso Virginia 832 1208 +2831 2025-10-04 13:06:54.583289+00 2025-10-04 13:06:54.5833+00 f t vet_accepted 839 126 +2832 2025-10-04 13:23:12.167327+00 2025-10-04 13:23:12.167335+00 f t Confirmado 832 \N +2833 2025-10-04 13:23:12.140925+00 2025-10-04 13:23:12.140933+00 f t payed 832 1208 +2834 2025-10-04 14:50:29.007546+00 2025-10-04 14:50:29.007555+00 f t pending 840 \N +2835 2025-10-04 14:56:53.213199+00 2025-10-04 14:56:53.213207+00 f t in_progress_vet 840 1208 +2836 2025-10-04 14:57:10.908503+00 2025-10-04 14:57:10.908511+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 14:00:00 840 1208 +2837 2025-10-04 15:01:06.12664+00 2025-10-04 15:01:06.126649+00 f t vet_accepted 840 134 +2838 2025-10-04 15:01:06.140087+00 2025-10-04 15:01:06.140097+00 f t in_progress_pay 840 134 +2839 2025-10-04 15:36:25.497233+00 2025-10-04 15:36:25.497245+00 f t pending 841 \N +2840 2025-10-04 15:36:55.325597+00 2025-10-04 15:36:55.325606+00 f t in_progress_vet 841 1208 +2841 2025-10-04 15:37:03.959853+00 2025-10-04 15:37:03.959861+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 16:00:00 841 1208 +2842 2025-10-04 15:37:30.2679+00 2025-10-04 15:37:30.267908+00 f t pending 842 \N +2843 2025-10-04 15:38:55.483426+00 2025-10-04 15:38:55.483435+00 f t payed 841 1208 +2844 2025-10-04 15:39:19.709547+00 2025-10-04 15:39:19.709556+00 f t Confirmado 841 \N +2845 2025-10-04 15:39:20.727613+00 2025-10-04 15:39:20.727626+00 f t vet_asked Veterinario asignado: Castro Guadalupe 841 1208 +2846 2025-10-04 15:46:31.703598+00 2025-10-04 15:46:31.703608+00 f t pending 843 \N +2847 2025-10-04 15:46:46.885352+00 2025-10-04 15:46:46.885362+00 f t in_progress_vet 843 1208 +2848 2025-10-04 15:46:56.890921+00 2025-10-04 15:46:56.890929+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 17:00:00 843 1208 +2849 2025-10-04 15:47:24.659083+00 2025-10-04 15:47:24.659095+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 843 1208 +2850 2025-10-04 15:47:39.056141+00 2025-10-04 15:47:39.05615+00 f t Confirmado 843 \N +2851 2025-10-04 15:47:39.029539+00 2025-10-04 15:47:39.029547+00 f t payed 843 1208 +2852 2025-10-04 15:49:55.950583+00 2025-10-04 15:49:55.950593+00 f t rejected D-No dimos respuesta 838 1208 +2853 2025-10-04 15:51:17.805148+00 2025-10-04 15:51:17.805159+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 14:30:00 840 1208 +2854 2025-10-04 15:52:19.458915+00 2025-10-04 15:52:19.458923+00 f t Confirmado 840 \N +2855 2025-10-04 15:52:19.427506+00 2025-10-04 15:52:19.427513+00 f t payed 840 1208 +2856 2025-10-04 15:52:36.682989+00 2025-10-04 15:52:36.682998+00 f t in_progress_vet 842 1208 +2857 2025-10-04 15:58:29.735376+00 2025-10-04 15:58:29.735385+00 f t pending 844 \N +2858 2025-10-04 15:58:46.269538+00 2025-10-04 15:58:46.269547+00 f t in_progress_vet 844 1208 +2859 2025-10-04 15:58:57.987035+00 2025-10-04 15:58:57.987046+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 10:00:00 844 1208 +2860 2025-10-04 16:05:51.118239+00 2025-10-04 16:05:51.118249+00 f t payed 844 1208 +2861 2025-10-04 16:06:06.413086+00 2025-10-04 16:06:06.413094+00 f t Confirmado 844 \N +2862 2025-10-04 16:06:07.521938+00 2025-10-04 16:06:07.521953+00 f t vet_asked Veterinario asignado: Palummo Mariana 844 1208 +2863 2025-10-04 16:12:02.469686+00 2025-10-04 16:12:02.469694+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 16:30:00 842 1208 +2864 2025-10-04 17:09:09.807574+00 2025-10-04 17:09:09.807582+00 f t pending 845 \N +2865 2025-10-04 17:09:29.49346+00 2025-10-04 17:09:29.493469+00 f t in_progress_vet 845 1208 +2866 2025-10-04 17:09:48.158732+00 2025-10-04 17:09:48.158743+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 17:00:00 845 1208 +2867 2025-10-04 17:17:40.062057+00 2025-10-04 17:17:40.062066+00 f t vet_accepted 845 116 +2868 2025-10-04 17:17:40.075049+00 2025-10-04 17:17:40.075058+00 f t in_progress_pay 845 116 +2869 2025-10-04 17:18:48.284822+00 2025-10-04 17:18:48.28483+00 f t vet_accepted 844 128 +2870 2025-10-04 17:22:11.579608+00 2025-10-04 17:22:11.579618+00 f t pending 846 \N +2871 2025-10-04 17:22:25.848016+00 2025-10-04 17:22:25.848025+00 f t in_progress_vet 846 1208 +2872 2025-10-04 17:22:33.986891+00 2025-10-04 17:22:33.986898+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 09:00:00 846 1208 +2873 2025-10-04 17:22:43.431613+00 2025-10-04 17:22:43.43162+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 846 1208 +2874 2025-10-04 17:28:10.145159+00 2025-10-04 17:28:10.145168+00 f t Confirmado 846 \N +2875 2025-10-04 17:28:10.108421+00 2025-10-04 17:28:10.10843+00 f t payed 846 1208 +2876 2025-10-04 18:35:42.522587+00 2025-10-04 18:35:42.522598+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 17:30:00 845 1208 +2877 2025-10-04 18:35:48.896231+00 2025-10-04 18:35:48.89624+00 f t Confirmado 845 \N +2878 2025-10-04 18:35:48.869209+00 2025-10-04 18:35:48.869218+00 f t payed 845 1208 +2879 2025-10-04 18:57:20.55048+00 2025-10-04 18:57:20.550489+00 f t pending 847 \N +2880 2025-10-04 18:58:06.649588+00 2025-10-04 18:58:06.649596+00 f t in_progress_vet 847 1208 +2881 2025-10-04 18:58:18.396416+00 2025-10-04 18:58:18.396425+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 17:00:00 847 1208 +2882 2025-10-04 19:06:40.349007+00 2025-10-04 19:06:40.349015+00 f t vet_accepted 847 128 +2883 2025-10-04 19:06:40.363384+00 2025-10-04 19:06:40.363393+00 f t in_progress_pay 847 128 +2884 2025-10-04 19:34:13.397307+00 2025-10-04 19:34:13.397314+00 f t Confirmado 847 \N +2885 2025-10-04 19:34:13.3689+00 2025-10-04 19:34:13.368908+00 f t payed 847 1208 +2886 2025-10-04 19:39:55.934504+00 2025-10-04 19:39:55.934514+00 f t rejected D-Averiguando / Desconocido 837 1208 +2887 2025-10-04 20:13:35.154614+00 2025-10-04 20:13:35.154622+00 f t pending 848 \N +2888 2025-10-04 20:13:56.933237+00 2025-10-04 20:13:56.933245+00 f t pending 849 \N +2889 2025-10-04 20:14:26.523122+00 2025-10-04 20:14:26.523148+00 f t pending 850 \N +2890 2025-10-04 20:15:22.251542+00 2025-10-04 20:15:22.25155+00 f t in_progress_vet 848 1208 +2891 2025-10-04 20:15:29.866512+00 2025-10-04 20:15:29.866521+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 13:00:00 848 1208 +2892 2025-10-04 20:16:26.821572+00 2025-10-04 20:16:26.82158+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 848 1208 +2893 2025-10-04 20:16:49.248613+00 2025-10-04 20:16:49.248622+00 f t in_progress_vet 849 1208 +2894 2025-10-04 20:17:04.492387+00 2025-10-04 20:17:04.492398+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 13:00:00 849 1208 +2895 2025-10-04 20:17:38.03954+00 2025-10-04 20:17:38.039547+00 f t in_progress_vet 850 1208 +2896 2025-10-04 20:17:59.144119+00 2025-10-04 20:17:59.144129+00 f t vet_asked Veterinario asignado: di Risio Daniela 849 1208 +2897 2025-10-04 20:18:32.026586+00 2025-10-04 20:18:32.026593+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 14:00:00 850 1208 +2898 2025-10-04 20:18:44.502827+00 2025-10-04 20:18:44.502841+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 850 1208 +2899 2025-10-04 20:20:42.783468+00 2025-10-04 20:20:42.783476+00 f t Confirmado 848 \N +2900 2025-10-04 20:20:42.74643+00 2025-10-04 20:20:42.746438+00 f t payed 848 1208 +2901 2025-10-04 20:20:55.889257+00 2025-10-04 20:20:55.889265+00 f t Confirmado 849 \N +2902 2025-10-04 20:20:55.846766+00 2025-10-04 20:20:55.846775+00 f t payed 849 1208 +2903 2025-10-04 20:21:07.835383+00 2025-10-04 20:21:07.835391+00 f t Confirmado 850 \N +2904 2025-10-04 20:21:07.796286+00 2025-10-04 20:21:07.796296+00 f t payed 850 1208 +2905 2025-10-04 21:59:39.798854+00 2025-10-04 21:59:39.798864+00 f t pending 851 \N +2906 2025-10-05 00:09:52.009783+00 2025-10-05 00:09:52.009793+00 f t pending 852 \N +2907 2025-10-05 03:35:08.579677+00 2025-10-05 03:35:08.579689+00 f t pending 853 \N +2908 2025-10-05 04:11:31.731881+00 2025-10-05 04:11:31.73189+00 f t pending 854 \N +2909 2025-10-05 08:18:18.808955+00 2025-10-05 08:18:18.808963+00 f t pending 855 \N +2910 2025-10-05 12:04:00.041234+00 2025-10-05 12:04:00.041245+00 f t in_progress_vet 852 114 +2911 2025-10-05 12:04:27.447545+00 2025-10-05 12:04:27.447553+00 f t coordinated Solicitud coordinada para 2025-10-05 a las 12:30:00 852 114 +2912 2025-10-05 12:11:44.090012+00 2025-10-05 12:11:44.090021+00 f t in_progress_vet 854 114 +2913 2025-10-05 12:12:08.362102+00 2025-10-05 12:12:08.362112+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 19:30:00 854 114 +2914 2025-10-05 12:38:53.72991+00 2025-10-05 12:38:53.729918+00 f t in_progress_vet 853 114 +2915 2025-10-05 12:40:04.355115+00 2025-10-05 12:40:04.355487+00 f t coordinated Solicitud coordinada para 2025-10-05 a las 13:30:00 853 114 +2916 2025-10-05 12:42:59.084141+00 2025-10-05 12:42:59.084151+00 f t in_progress_vet 855 114 +2917 2025-10-05 12:45:24.562991+00 2025-10-05 12:45:24.562998+00 f t coordinated Solicitud coordinada para 2025-10-05 a las 13:30:00 855 114 +2918 2025-10-05 12:55:03.999256+00 2025-10-05 12:55:03.999268+00 f t coordinated Solicitud coordinada para 2025-10-05 a las 19:30:00 854 114 +2919 2025-10-05 13:08:27.782129+00 2025-10-05 13:08:27.782138+00 f t in_progress_vet 851 114 +2920 2025-10-05 13:08:46.281581+00 2025-10-05 13:08:46.281589+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 15:00:00 851 114 +2921 2025-10-05 13:09:32.273544+00 2025-10-05 13:09:32.273556+00 f t vet_accepted 854 139 +2922 2025-10-05 13:09:32.284334+00 2025-10-05 13:09:32.284344+00 f t in_progress_pay 854 139 +2923 2025-10-05 13:38:35.413231+00 2025-10-05 13:38:35.41324+00 f t rejected D-Emergencia 852 114 +2924 2025-10-05 14:11:24.304186+00 2025-10-05 14:11:24.304196+00 f t vet_accepted 841 1774 +2925 2025-10-05 14:15:45.377459+00 2025-10-05 14:15:45.377469+00 f t pending 856 \N +2926 2025-10-05 14:17:37.224573+00 2025-10-05 14:17:37.224583+00 f t in_progress_vet 856 114 +2927 2025-10-05 14:58:19.266024+00 2025-10-05 14:58:19.266034+00 f t pending 857 \N +2928 2025-10-05 15:36:15.692402+00 2025-10-05 15:36:15.69241+00 f t pending 858 \N +2929 2025-10-05 16:20:11.266129+00 2025-10-05 16:20:11.266138+00 f t in_progress_vet 858 114 +2930 2025-10-05 16:20:36.646809+00 2025-10-05 16:20:36.646817+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 19:00:00 858 114 +2931 2025-10-05 16:40:13.279926+00 2025-10-05 16:40:13.279934+00 f t vet_accepted 851 124 +2932 2025-10-05 16:40:13.291047+00 2025-10-05 16:40:13.291057+00 f t in_progress_pay 851 124 +2933 2025-10-05 17:02:05.860765+00 2025-10-05 17:02:05.860777+00 f t rejected D-Emergencia 851 114 +2934 2025-10-05 17:03:43.890794+00 2025-10-05 17:03:43.890806+00 f t rejected D-Emergencia 856 114 +2935 2025-10-05 17:03:53.0927+00 2025-10-05 17:03:53.092708+00 f t in_progress_vet 857 114 +2936 2025-10-05 17:46:28.11502+00 2025-10-05 17:46:28.115028+00 f t pending 859 \N +2937 2025-10-05 17:50:57.772437+00 2025-10-05 17:50:57.772446+00 f t in_progress_vet 859 114 +2938 2025-10-05 17:52:01.459039+00 2025-10-05 17:52:01.459048+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 17:00:00 859 114 +2939 2025-10-05 17:52:13.514138+00 2025-10-05 17:52:13.514146+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 12:00:00 859 114 +2940 2025-10-05 18:04:45.320776+00 2025-10-05 18:04:45.320784+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 09:00:00 859 114 +2941 2025-10-05 18:20:37.259026+00 2025-10-05 18:20:37.259035+00 f t vet_accepted 859 128 +2942 2025-10-05 18:20:37.270888+00 2025-10-05 18:20:37.270897+00 f t in_progress_pay 859 128 +2943 2025-10-05 19:16:21.286264+00 2025-10-05 19:16:21.286272+00 f t pending 860 \N +2944 2025-10-05 19:16:58.238253+00 2025-10-05 19:16:58.238261+00 f t in_progress_vet 860 114 +2945 2025-10-05 19:17:14.657833+00 2025-10-05 19:17:14.657843+00 f t coordinated Solicitud coordinada para 2025-10-05 a las 17:30:00 860 114 +2946 2025-10-05 19:18:42.831296+00 2025-10-05 19:18:42.831306+00 f t payed 860 114 +2947 2025-10-05 19:18:54.357948+00 2025-10-05 19:18:54.357961+00 f t Confirmado 860 \N +2948 2025-10-05 19:18:55.304207+00 2025-10-05 19:18:55.304218+00 f t vet_asked Veterinario asignado: Ponce Lisandro 860 114 +2949 2025-10-05 19:19:02.371546+00 2025-10-05 19:19:02.371557+00 f t vet_accepted 860 114 +2950 2025-10-05 19:20:14.053228+00 2025-10-05 19:20:14.053237+00 f t coordinated Solicitud coordinada para 2025-10-05 a las 17:30:00 860 114 +2951 2025-10-05 19:27:49.663048+00 2025-10-05 19:27:49.663058+00 f t payed 857 114 +2952 2025-10-05 19:28:11.410889+00 2025-10-05 19:28:11.410897+00 f t coordinated Solicitud coordinada para 2025-10-05 a las 15:00:00 857 114 +2953 2025-10-05 19:28:23.441509+00 2025-10-05 19:28:23.441517+00 f t Confirmado 857 \N +2954 2025-10-05 19:28:24.443986+00 2025-10-05 19:28:24.443996+00 f t vet_asked Veterinario asignado: Palladino Martín 857 114 +2955 2025-10-05 19:28:25.472787+00 2025-10-05 19:28:25.472797+00 f t vet_accepted 857 114 +2956 2025-10-05 19:33:19.493076+00 2025-10-05 19:33:19.493085+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 859 114 +2957 2025-10-05 19:33:23.097367+00 2025-10-05 19:33:23.097375+00 f t vet_accepted 859 114 +2958 2025-10-05 19:33:23.109915+00 2025-10-05 19:33:23.109924+00 f t in_progress_pay 859 114 +2959 2025-10-05 19:33:49.353683+00 2025-10-05 19:33:49.353692+00 f t Confirmado 859 \N +2960 2025-10-05 19:33:49.326119+00 2025-10-05 19:33:49.326127+00 f t payed 859 114 +2961 2025-10-05 19:34:51.315867+00 2025-10-05 19:34:51.315876+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 855 114 +2962 2025-10-05 19:34:52.71685+00 2025-10-05 19:34:52.716858+00 f t vet_accepted 855 114 +2963 2025-10-05 19:34:52.729805+00 2025-10-05 19:34:52.729817+00 f t in_progress_pay 855 114 +2964 2025-10-05 19:34:55.632044+00 2025-10-05 19:34:55.632055+00 f t coordinated Solicitud coordinada para 2025-10-05 a las 17:30:00 855 114 +2965 2025-10-05 19:35:26.407487+00 2025-10-05 19:35:26.407493+00 f t Confirmado 855 \N +2966 2025-10-05 19:35:26.370199+00 2025-10-05 19:35:26.370207+00 f t payed 855 114 +2967 2025-10-05 19:37:50.304218+00 2025-10-05 19:37:50.30423+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 858 114 +2968 2025-10-05 19:37:53.04434+00 2025-10-05 19:37:53.044348+00 f t vet_accepted 858 114 +2969 2025-10-05 19:37:53.05565+00 2025-10-05 19:37:53.055658+00 f t in_progress_pay 858 114 +2970 2025-10-05 19:37:57.219695+00 2025-10-05 19:37:57.219706+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 19:00:00 858 114 +2971 2025-10-05 19:38:38.947945+00 2025-10-05 19:38:38.947953+00 f t Confirmado 858 \N +2972 2025-10-05 19:38:38.918781+00 2025-10-05 19:38:38.91879+00 f t payed 858 114 +2973 2025-10-05 19:39:28.845356+00 2025-10-05 19:39:28.845366+00 f t pending 861 \N +2974 2025-10-05 19:41:26.452381+00 2025-10-05 19:41:26.45239+00 f t payed 861 114 +2975 2025-10-05 19:41:43.886431+00 2025-10-05 19:41:43.886443+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 14:00:00 861 114 +2976 2025-10-05 19:42:58.305482+00 2025-10-05 19:42:58.305491+00 f t Confirmado 861 \N +2977 2025-10-05 19:42:59.099+00 2025-10-05 19:42:59.099011+00 f t vet_asked Veterinario asignado: Henjes María José 861 114 +2978 2025-10-05 19:43:01.290482+00 2025-10-05 19:43:01.290492+00 f t vet_accepted 861 114 +2979 2025-10-05 19:43:12.286938+00 2025-10-05 19:43:12.286947+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 14:00:00 861 114 +2980 2025-10-05 19:52:47.639803+00 2025-10-05 19:52:47.639813+00 f t vet_asked Veterinario asignado: Campo Silvia 854 114 +2981 2025-10-05 19:52:56.509689+00 2025-10-05 19:52:56.509697+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 854 114 +2982 2025-10-05 19:52:57.832147+00 2025-10-05 19:52:57.832158+00 f t vet_accepted 854 114 +2983 2025-10-05 19:52:57.890843+00 2025-10-05 19:52:57.890855+00 f t in_progress_pay 854 114 +2984 2025-10-05 19:53:51.665232+00 2025-10-05 19:53:51.66524+00 f t Confirmado 854 \N +2985 2025-10-05 19:53:51.63388+00 2025-10-05 19:53:51.633889+00 f t payed 854 114 +2986 2025-10-05 19:54:03.913399+00 2025-10-05 19:54:03.913411+00 f t coordinated Solicitud coordinada para 2025-10-05 a las 14:00:00 854 114 +2987 2025-10-05 20:00:15.596224+00 2025-10-05 20:00:15.596233+00 f t pending 862 \N +2988 2025-10-05 20:00:38.756547+00 2025-10-05 20:00:38.756556+00 f t in_progress_vet 862 114 +2989 2025-10-05 20:01:16.073495+00 2025-10-05 20:01:16.073506+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 17:00:00 862 114 +2990 2025-10-05 20:01:35.077428+00 2025-10-05 20:01:35.077437+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 862 114 +2991 2025-10-05 20:01:39.418583+00 2025-10-05 20:01:39.418593+00 f t vet_accepted 862 114 +2992 2025-10-05 20:01:39.429524+00 2025-10-05 20:01:39.429567+00 f t in_progress_pay 862 114 +2993 2025-10-05 20:04:40.264817+00 2025-10-05 20:04:40.264829+00 f t Confirmado 862 \N +2994 2025-10-05 20:04:40.234266+00 2025-10-05 20:04:40.234274+00 f t payed 862 114 +2995 2025-10-05 20:18:18.679601+00 2025-10-05 20:18:18.679612+00 f t pending 863 \N +2996 2025-10-05 20:18:37.255938+00 2025-10-05 20:18:37.255947+00 f t in_progress_vet 863 114 +2997 2025-10-05 20:19:18.516323+00 2025-10-05 20:19:18.516331+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 20:00:00 863 114 +2998 2025-10-05 20:19:50.277728+00 2025-10-05 20:19:50.277738+00 f t vet_asked Veterinario asignado: Palladino Martín 863 114 +2999 2025-10-05 20:19:52.789912+00 2025-10-05 20:19:52.789921+00 f t vet_accepted 863 114 +3000 2025-10-05 20:19:52.802368+00 2025-10-05 20:19:52.802377+00 f t in_progress_pay 863 114 +3001 2025-10-05 20:20:21.545029+00 2025-10-05 20:20:21.545037+00 f t Confirmado 863 \N +3002 2025-10-05 20:20:21.515966+00 2025-10-05 20:20:21.515978+00 f t payed 863 114 +3003 2025-10-05 21:19:05.958396+00 2025-10-05 21:19:05.958405+00 f t vet_accepted 854 139 +3004 2025-10-05 21:45:05.16549+00 2025-10-05 21:45:05.165501+00 f t pending 864 \N +3005 2025-10-05 23:07:00.855388+00 2025-10-05 23:07:00.855396+00 f t rejected Solicitud rechazada por Usuario no especificado 746 \N +3006 2025-10-05 23:07:00.861607+00 2025-10-05 23:07:00.861615+00 f t in_progress_vet 746 \N +3007 2025-10-06 12:05:12.42112+00 2025-10-06 12:05:12.421132+00 f t pending 865 \N +3008 2025-10-06 12:09:20.704876+00 2025-10-06 12:09:20.704884+00 f t in_progress_vet 864 1583 +3009 2025-10-06 12:09:30.562276+00 2025-10-06 12:09:30.562284+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 14:00:00 864 1583 +3010 2025-10-06 12:16:56.030415+00 2025-10-06 12:16:56.030424+00 f t in_progress_vet 865 1583 +3011 2025-10-06 12:17:06.061998+00 2025-10-06 12:17:06.062006+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 13:00:00 865 1583 +3012 2025-10-06 13:07:06.462376+00 2025-10-06 13:07:06.462385+00 f t vet_asked Veterinario asignado: Ponce Lisandro 865 1583 +3013 2025-10-06 13:07:07.198801+00 2025-10-06 13:07:07.198813+00 f t vet_accepted 865 1583 +3014 2025-10-06 13:07:07.211964+00 2025-10-06 13:07:07.211974+00 f t in_progress_pay 865 1583 +3015 2025-10-06 13:07:43.134746+00 2025-10-06 13:07:43.134755+00 f t Confirmado 865 \N +3016 2025-10-06 13:07:43.097594+00 2025-10-06 13:07:43.097604+00 f t payed 865 1583 +3017 2025-10-06 13:29:12.889956+00 2025-10-06 13:29:12.889968+00 f t pending 866 \N +3018 2025-10-06 13:29:15.799389+00 2025-10-06 13:29:15.799398+00 f t pending 867 \N +3019 2025-10-06 13:29:56.497522+00 2025-10-06 13:29:56.497531+00 f t in_progress_vet 867 1583 +3020 2025-10-06 13:33:17.933469+00 2025-10-06 13:33:17.933477+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 16:00:00 867 1583 +3021 2025-10-06 13:58:15.05519+00 2025-10-06 13:58:15.0552+00 f t pending 868 \N +3022 2025-10-06 13:58:16.664768+00 2025-10-06 13:58:16.664776+00 f t pending 869 \N +3023 2025-10-06 14:01:06.872806+00 2025-10-06 14:01:06.872815+00 f t in_progress_vet 869 1583 +3024 2025-10-06 14:01:14.843185+00 2025-10-06 14:01:14.843196+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 10:00:00 869 1583 +3025 2025-10-06 14:01:32.830789+00 2025-10-06 14:01:32.830797+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 869 1583 +3026 2025-10-06 14:01:33.581971+00 2025-10-06 14:01:33.581984+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 869 1583 +3027 2025-10-06 14:01:34.984575+00 2025-10-06 14:01:34.984588+00 f t vet_accepted 869 1583 +3028 2025-10-06 14:01:34.996071+00 2025-10-06 14:01:34.996082+00 f t in_progress_pay 869 1583 +3029 2025-10-06 14:03:35.05571+00 2025-10-06 14:03:35.055719+00 f t Confirmado 869 \N +3030 2025-10-06 14:44:37.013587+00 2025-10-06 14:44:37.013599+00 f t pending 870 \N +3031 2025-10-06 14:45:18.857011+00 2025-10-06 14:45:18.857018+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 14:30:00 870 1583 +3032 2025-10-06 14:53:57.633518+00 2025-10-06 14:53:57.633526+00 f t vet_asked Veterinario asignado: Kumabe Paula 870 1583 +3033 2025-10-06 14:53:59.599202+00 2025-10-06 14:53:59.599214+00 f t vet_accepted 870 1583 +3034 2025-10-06 14:53:59.612627+00 2025-10-06 14:53:59.612637+00 f t in_progress_pay 870 1583 +3035 2025-10-06 15:10:09.407254+00 2025-10-06 15:10:09.407262+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 14:00:00 867 1583 +3036 2025-10-06 15:10:17.381935+00 2025-10-06 15:10:17.381945+00 f t payed 867 1583 +3037 2025-10-06 15:10:29.039186+00 2025-10-06 15:10:29.039195+00 f t Confirmado 867 \N +3038 2025-10-06 15:10:30.14491+00 2025-10-06 15:10:30.144921+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 867 1583 +3039 2025-10-06 15:10:30.884978+00 2025-10-06 15:10:30.884988+00 f t vet_accepted 867 1583 +3040 2025-10-06 15:19:59.8208+00 2025-10-06 15:19:59.820814+00 f t Confirmado 870 \N +3041 2025-10-06 15:19:59.788643+00 2025-10-06 15:19:59.788651+00 f t payed 870 1583 +3042 2025-10-06 15:26:48.880199+00 2025-10-06 15:26:48.880207+00 f t pending 871 \N +3043 2025-10-06 15:27:12.121888+00 2025-10-06 15:27:12.121897+00 f t in_progress_vet 871 1583 +3044 2025-10-06 15:27:19.475913+00 2025-10-06 15:27:19.475924+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 13:00:00 871 1583 +3045 2025-10-06 15:29:44.544123+00 2025-10-06 15:29:44.544132+00 f t pending 872 \N +3046 2025-10-06 15:29:57.19027+00 2025-10-06 15:29:57.190279+00 f t in_progress_vet 872 1583 +3047 2025-10-06 15:30:04.004124+00 2025-10-06 15:30:04.004136+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 15:00:00 872 1583 +3048 2025-10-06 15:30:08.343827+00 2025-10-06 15:30:08.343839+00 f t vet_asked Veterinario asignado: Campo Silvia 872 1583 +3049 2025-10-06 15:31:55.699983+00 2025-10-06 15:31:55.699995+00 f t vet_asked Veterinario asignado: Palummo Mariana 872 1583 +3050 2025-10-06 15:31:56.531926+00 2025-10-06 15:31:56.531939+00 f t vet_accepted 872 1583 +3051 2025-10-06 15:31:56.546691+00 2025-10-06 15:31:56.5467+00 f t in_progress_pay 872 1583 +3052 2025-10-06 15:32:11.361071+00 2025-10-06 15:32:11.361079+00 f t Confirmado 872 \N +3053 2025-10-06 15:32:11.327281+00 2025-10-06 15:32:11.32729+00 f t payed 872 1583 +3054 2025-10-06 15:56:21.719793+00 2025-10-06 15:56:21.719802+00 f t pending 873 \N +3055 2025-10-06 15:57:09.70208+00 2025-10-06 15:57:09.702092+00 f t in_progress_vet 873 1583 +3056 2025-10-06 15:57:33.596335+00 2025-10-06 15:57:33.596344+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 18:00:00 873 1583 +3057 2025-10-06 16:04:24.080797+00 2025-10-06 16:04:24.080806+00 f t vet_accepted 873 124 +3058 2025-10-06 16:04:24.097493+00 2025-10-06 16:04:24.097506+00 f t in_progress_pay 873 124 +3059 2025-10-06 16:14:49.046266+00 2025-10-06 16:14:49.046278+00 f t vet_asked Veterinario asignado: Della Bianca Paola 871 1583 +3060 2025-10-06 16:14:49.670307+00 2025-10-06 16:14:49.670316+00 f t vet_accepted 871 1583 +3061 2025-10-06 16:14:49.682188+00 2025-10-06 16:14:49.682201+00 f t in_progress_pay 871 1583 +3062 2025-10-06 16:15:23.263541+00 2025-10-06 16:15:23.263552+00 f t Confirmado 871 \N +3063 2025-10-06 16:15:23.228937+00 2025-10-06 16:15:23.228949+00 f t payed 871 1583 +3064 2025-10-06 16:19:28.059705+00 2025-10-06 16:19:28.059717+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 19:00:00 873 1583 +3065 2025-10-06 16:19:50.280659+00 2025-10-06 16:19:50.280671+00 f t vet_asked Veterinario asignado: Laura Gorostegui Maria 873 1583 +3066 2025-10-06 16:19:52.036942+00 2025-10-06 16:19:52.03695+00 f t vet_accepted 873 1583 +3067 2025-10-06 16:19:52.049115+00 2025-10-06 16:19:52.049125+00 f t in_progress_pay 873 1583 +3068 2025-10-06 16:20:18.780741+00 2025-10-06 16:20:18.780748+00 f t Confirmado 873 \N +3069 2025-10-06 16:20:18.747942+00 2025-10-06 16:20:18.747953+00 f t payed 873 1583 +3070 2025-10-06 16:52:57.900802+00 2025-10-06 16:52:57.90081+00 f t pending 874 \N +3071 2025-10-06 16:53:29.322744+00 2025-10-06 16:53:29.322752+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 17:30:00 874 114 +3072 2025-10-06 17:04:19.785378+00 2025-10-06 17:04:19.78539+00 f t pending 875 \N +3073 2025-10-06 17:04:40.354661+00 2025-10-06 17:04:40.354671+00 f t in_progress_vet 875 1583 +3074 2025-10-06 17:04:49.722969+00 2025-10-06 17:04:49.722984+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 11:00:00 875 1583 +3075 2025-10-06 17:05:25.139328+00 2025-10-06 17:05:25.139336+00 f t vet_asked Veterinario asignado: di Risio Daniela 874 114 +3076 2025-10-06 17:05:28.424328+00 2025-10-06 17:05:28.424337+00 f t vet_accepted 874 114 +3077 2025-10-06 17:05:28.445272+00 2025-10-06 17:05:28.445281+00 f t in_progress_pay 874 114 +3078 2025-10-06 17:06:27.281394+00 2025-10-06 17:06:27.281403+00 f t Confirmado 874 \N +3079 2025-10-06 17:06:27.246132+00 2025-10-06 17:06:27.246142+00 f t payed 874 114 +3080 2025-10-06 17:36:26.620312+00 2025-10-06 17:36:26.62032+00 f t pending 876 \N +3081 2025-10-06 17:38:29.792072+00 2025-10-06 17:38:29.792081+00 f t in_progress_vet 876 1583 +3082 2025-10-06 18:25:39.237733+00 2025-10-06 18:25:39.237743+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 20:00:00 876 1583 +3083 2025-10-06 19:14:46.521739+00 2025-10-06 19:14:46.521746+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 09:30:00 875 1583 +3084 2025-10-06 19:15:18.324815+00 2025-10-06 19:15:18.324825+00 f t payed 875 1583 +3085 2025-10-06 19:15:45.345782+00 2025-10-06 19:15:45.345794+00 f t Confirmado 875 \N +3086 2025-10-06 19:15:46.720049+00 2025-10-06 19:15:46.720064+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 875 1583 +3087 2025-10-06 19:15:47.552461+00 2025-10-06 19:15:47.55247+00 f t vet_accepted 875 1583 +3088 2025-10-06 19:19:44.746972+00 2025-10-06 19:19:44.746981+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 18:30:00 876 1583 +3089 2025-10-06 19:19:55.399791+00 2025-10-06 19:19:55.3998+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 876 1583 +3090 2025-10-06 19:19:56.195015+00 2025-10-06 19:19:56.195024+00 f t vet_accepted 876 1583 +3091 2025-10-06 19:19:56.207357+00 2025-10-06 19:19:56.207366+00 f t in_progress_pay 876 1583 +3092 2025-10-06 19:20:45.07655+00 2025-10-06 19:20:45.076559+00 f t Confirmado 876 \N +3093 2025-10-06 19:20:45.039294+00 2025-10-06 19:20:45.039306+00 f t payed 876 1583 +3094 2025-10-06 19:25:42.221685+00 2025-10-06 19:25:42.221695+00 f t pending 877 \N +3095 2025-10-06 19:26:00.803494+00 2025-10-06 19:26:00.803503+00 f t in_progress_vet 877 1583 +3096 2025-10-06 19:26:27.549261+00 2025-10-06 19:26:27.54927+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 16:00:00 877 1583 +3097 2025-10-06 19:37:26.510661+00 2025-10-06 19:37:26.510673+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 19:30:00 877 1583 +3098 2025-10-06 19:38:08.376876+00 2025-10-06 19:38:08.376888+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 877 1583 +3099 2025-10-06 19:43:31.542281+00 2025-10-06 19:43:31.54229+00 f t Confirmado 877 \N +3100 2025-10-06 19:43:31.502268+00 2025-10-06 19:43:31.502276+00 f t payed 877 1583 +3101 2025-10-06 19:54:42.957019+00 2025-10-06 19:54:42.957028+00 f t pending 878 \N +3102 2025-10-06 19:55:02.394962+00 2025-10-06 19:55:02.394975+00 f t in_progress_vet 878 114 +3103 2025-10-06 19:55:49.588301+00 2025-10-06 19:55:49.58831+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 20:00:00 878 114 +3104 2025-10-06 20:06:58.507805+00 2025-10-06 20:06:58.507813+00 f t pending 879 \N +3105 2025-10-06 20:07:14.248846+00 2025-10-06 20:07:14.248854+00 f t in_progress_vet 879 1583 +3106 2025-10-06 20:07:23.052886+00 2025-10-06 20:07:23.052905+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 19:00:00 879 1583 +3107 2025-10-06 20:08:38.385309+00 2025-10-06 20:08:38.385317+00 f t vet_asked Veterinario asignado: Ponce Lisandro 879 1583 +3108 2025-10-06 20:09:01.391337+00 2025-10-06 20:09:01.39135+00 f t Confirmado 879 \N +3109 2025-10-06 20:09:01.348816+00 2025-10-06 20:09:01.348825+00 f t payed 879 1583 +3110 2025-10-06 20:40:29.072442+00 2025-10-06 20:40:29.072451+00 f t vet_accepted 878 134 +3111 2025-10-06 20:40:29.085742+00 2025-10-06 20:40:29.085752+00 f t in_progress_pay 878 134 +3112 2025-10-06 22:32:56.791218+00 2025-10-06 22:32:56.791228+00 f t pending 880 \N +3113 2025-10-06 22:40:41.712273+00 2025-10-06 22:40:41.712287+00 f t in_progress_vet 880 114 +3114 2025-10-06 22:40:58.073529+00 2025-10-06 22:40:58.073626+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 19:30:00 880 114 +3115 2025-10-06 23:22:08.71889+00 2025-10-06 23:22:08.718901+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 880 114 +3116 2025-10-06 23:22:14.274576+00 2025-10-06 23:22:14.274585+00 f t vet_accepted 880 114 +3117 2025-10-06 23:22:14.288918+00 2025-10-06 23:22:14.288927+00 f t in_progress_pay 880 114 +3118 2025-10-06 23:22:30.566933+00 2025-10-06 23:22:30.566946+00 f t Confirmado 880 \N +3119 2025-10-06 23:22:30.514363+00 2025-10-06 23:22:30.514377+00 f t payed 880 114 +3120 2025-10-06 23:24:19.932746+00 2025-10-06 23:24:19.932755+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 878 114 +3121 2025-10-06 23:24:27.378602+00 2025-10-06 23:24:27.378611+00 f t vet_accepted 878 114 +3122 2025-10-06 23:24:27.390756+00 2025-10-06 23:24:27.390765+00 f t in_progress_pay 878 114 +3123 2025-10-06 23:25:13.044073+00 2025-10-06 23:25:13.044082+00 f t Confirmado 878 \N +3124 2025-10-06 23:25:13.006444+00 2025-10-06 23:25:13.006458+00 f t payed 878 114 +3125 2025-10-06 23:28:46.867507+00 2025-10-06 23:28:46.867521+00 f t pending 881 \N +3126 2025-10-06 23:29:42.212333+00 2025-10-06 23:29:42.212342+00 f t in_progress_vet 881 114 +3127 2025-10-06 23:29:58.966021+00 2025-10-06 23:29:58.96603+00 f t coordinated Solicitud coordinada para 2025-10-06 a las 20:00:00 881 114 +3128 2025-10-06 23:30:27.89378+00 2025-10-06 23:30:27.893794+00 f t vet_asked Veterinario asignado: Szczurek Verónica Carolina 881 114 +3129 2025-10-06 23:30:29.94129+00 2025-10-06 23:30:29.9413+00 f t vet_accepted 881 114 +3130 2025-10-06 23:30:29.964075+00 2025-10-06 23:30:29.964088+00 f t in_progress_pay 881 114 +3131 2025-10-06 23:31:04.511826+00 2025-10-06 23:31:04.511841+00 f t Confirmado 881 \N +3132 2025-10-06 23:31:04.468199+00 2025-10-06 23:31:04.468212+00 f t payed 881 114 +3133 2025-10-06 23:33:00.021559+00 2025-10-06 23:33:00.021599+00 f t pending 882 \N +3134 2025-10-06 23:33:12.986044+00 2025-10-06 23:33:12.986053+00 f t in_progress_vet 882 114 +3135 2025-10-06 23:33:41.51652+00 2025-10-06 23:33:41.516532+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 09:30:00 882 114 +3136 2025-10-06 23:34:23.070814+00 2025-10-06 23:34:23.070826+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 882 114 +3137 2025-10-06 23:34:24.036117+00 2025-10-06 23:34:24.036125+00 f t vet_accepted 882 114 +3138 2025-10-06 23:34:24.04855+00 2025-10-06 23:34:24.048566+00 f t in_progress_pay 882 114 +3139 2025-10-06 23:34:54.130267+00 2025-10-06 23:34:54.130277+00 f t Confirmado 882 \N +3140 2025-10-06 23:34:54.097375+00 2025-10-06 23:34:54.097384+00 f t payed 882 114 +3141 2025-10-06 23:40:45.334353+00 2025-10-06 23:40:45.334366+00 f t pending 883 \N +3142 2025-10-06 23:41:07.556453+00 2025-10-06 23:41:07.556461+00 f t in_progress_vet 883 114 +3143 2025-10-06 23:41:45.017199+00 2025-10-06 23:41:45.017211+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 16:00:00 883 114 +3144 2025-10-06 23:43:59.135973+00 2025-10-06 23:43:59.135985+00 f t payed 883 114 +3145 2025-10-06 23:47:41.49894+00 2025-10-06 23:47:41.498948+00 f t Confirmado 883 \N +3146 2025-10-06 23:47:42.422415+00 2025-10-06 23:47:42.422426+00 f t vet_asked Veterinario asignado: Dubowik Katerina 883 114 +3147 2025-10-06 23:47:45.6461+00 2025-10-06 23:47:45.646109+00 f t vet_accepted 883 114 +3148 2025-10-07 06:10:29.254916+00 2025-10-07 06:10:29.254924+00 f t pending 884 \N +3149 2025-10-07 11:46:53.85457+00 2025-10-07 11:46:53.854578+00 f t pending 885 \N +3150 2025-10-07 12:20:35.763249+00 2025-10-07 12:20:35.763261+00 f t in_progress_vet 884 1208 +3151 2025-10-07 12:21:01.152734+00 2025-10-07 12:21:01.152743+00 f t in_progress_vet 885 1208 +3152 2025-10-07 12:32:01.317493+00 2025-10-07 12:32:01.317501+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 20:00:00 884 1208 +3153 2025-10-07 12:34:09.267686+00 2025-10-07 12:34:09.267693+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 20:00:00 884 1208 +3154 2025-10-07 12:39:22.454416+00 2025-10-07 12:39:22.454426+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 12:00:00 885 1208 +3155 2025-10-07 12:43:20.734018+00 2025-10-07 12:43:20.734027+00 f t pending 886 \N +3156 2025-10-07 12:47:38.508647+00 2025-10-07 12:47:38.508659+00 f t in_progress_vet 886 1208 +3157 2025-10-07 12:48:01.153371+00 2025-10-07 12:48:01.15338+00 f t vet_accepted 884 129 +3158 2025-10-07 12:48:01.164344+00 2025-10-07 12:48:01.164352+00 f t in_progress_pay 884 129 +3159 2025-10-07 12:54:13.462797+00 2025-10-07 12:54:13.462804+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 12:00:00 886 1208 +3160 2025-10-07 12:54:27.354692+00 2025-10-07 12:54:27.3547+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 886 1208 +3161 2025-10-07 12:54:28.553078+00 2025-10-07 12:54:28.553086+00 f t vet_accepted 886 1208 +3162 2025-10-07 12:54:28.564181+00 2025-10-07 12:54:28.564189+00 f t in_progress_pay 886 1208 +3163 2025-10-07 13:12:51.968891+00 2025-10-07 13:12:51.9689+00 f t pending 887 \N +3164 2025-10-07 13:22:05.915236+00 2025-10-07 13:22:05.915245+00 f t in_progress_vet 887 1208 +3165 2025-10-07 13:22:22.353137+00 2025-10-07 13:22:22.353144+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 19:00:00 887 1208 +3166 2025-10-07 13:22:29.973166+00 2025-10-07 13:22:29.973175+00 f t vet_accepted 885 116 +3167 2025-10-07 13:22:29.984561+00 2025-10-07 13:22:29.98457+00 f t in_progress_pay 885 116 +3168 2025-10-07 13:22:41.017381+00 2025-10-07 13:22:41.017389+00 f t vet_accepted 860 116 +3169 2025-10-07 13:25:38.181206+00 2025-10-07 13:25:38.181214+00 f t vet_accepted 887 116 +3170 2025-10-07 13:25:38.191256+00 2025-10-07 13:25:38.191266+00 f t in_progress_pay 887 116 +3171 2025-10-07 13:27:06.161091+00 2025-10-07 13:27:06.161101+00 f t vet_asked Veterinario asignado: Henjes María José 884 1208 +3172 2025-10-07 13:27:20.052889+00 2025-10-07 13:27:20.052901+00 f t Confirmado 884 \N +3173 2025-10-07 13:27:20.019511+00 2025-10-07 13:27:20.01952+00 f t payed 884 1208 +3174 2025-10-07 13:36:26.30294+00 2025-10-07 13:36:26.302947+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 14:00:00 885 1208 +3175 2025-10-07 13:37:02.923211+00 2025-10-07 13:37:02.92322+00 f t pending 888 \N +3176 2025-10-07 13:38:10.812937+00 2025-10-07 13:38:10.81295+00 f t in_progress_vet 888 1208 +3177 2025-10-07 13:42:40.394512+00 2025-10-07 13:42:40.39452+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 18:30:00 888 1208 +3178 2025-10-07 13:46:31.945638+00 2025-10-07 13:46:31.945647+00 f t pending 889 \N +3179 2025-10-07 13:47:25.00669+00 2025-10-07 13:47:25.006703+00 f t in_progress_vet 889 1208 +3180 2025-10-07 13:56:14.22307+00 2025-10-07 13:56:14.223078+00 f t Confirmado 885 \N +3181 2025-10-07 13:56:14.191104+00 2025-10-07 13:56:14.191112+00 f t payed 885 1208 +3182 2025-10-07 13:57:36.623338+00 2025-10-07 13:57:36.623345+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 10:00:00 888 1208 +3183 2025-10-07 14:17:29.502845+00 2025-10-07 14:17:29.502854+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 10:00:00 889 1583 +3184 2025-10-07 14:24:32.5734+00 2025-10-07 14:24:32.57341+00 f t pending 890 \N +3185 2025-10-07 14:25:08.529789+00 2025-10-07 14:25:08.529801+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 13:00:00 890 1583 +3186 2025-10-07 14:25:14.618737+00 2025-10-07 14:25:14.618745+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 15:00:00 890 1583 +3187 2025-10-07 14:26:25.831183+00 2025-10-07 14:26:25.83119+00 f t pending 891 \N +3188 2025-10-07 14:26:42.545191+00 2025-10-07 14:26:42.545199+00 f t in_progress_vet 891 1583 +3189 2025-10-07 14:26:48.809282+00 2025-10-07 14:26:48.809292+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 15:00:00 891 1583 +3190 2025-10-07 14:27:17.180936+00 2025-10-07 14:27:17.180945+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 891 1583 +3191 2025-10-07 14:27:18.573807+00 2025-10-07 14:27:18.573816+00 f t vet_accepted 891 1583 +3192 2025-10-07 14:27:18.585015+00 2025-10-07 14:27:18.585023+00 f t in_progress_pay 891 1583 +3193 2025-10-07 14:27:53.360897+00 2025-10-07 14:27:53.360908+00 f t Confirmado 891 \N +3194 2025-10-07 14:27:53.32992+00 2025-10-07 14:27:53.329928+00 f t payed 891 1583 +3195 2025-10-07 14:54:05.619607+00 2025-10-07 14:54:05.619614+00 f t rejected D-Averiguando / Desconocido 886 1208 +3196 2025-10-07 14:56:19.405548+00 2025-10-07 14:56:19.405558+00 f t pending 892 \N +3197 2025-10-07 15:22:49.315471+00 2025-10-07 15:22:49.315481+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 11:00:00 889 1208 +3198 2025-10-07 15:37:23.591228+00 2025-10-07 15:37:23.591236+00 f t pending 893 \N +3199 2025-10-07 16:02:51.286076+00 2025-10-07 16:02:51.286087+00 f t pending 894 \N +3200 2025-10-07 16:03:34.831747+00 2025-10-07 16:03:34.831756+00 f t pending 895 \N +3201 2025-10-07 16:06:52.529659+00 2025-10-07 16:06:52.529672+00 f t pending 896 \N +3202 2025-10-07 16:12:53.802041+00 2025-10-07 16:12:53.80205+00 f t in_progress_vet 896 1583 +3203 2025-10-07 16:13:30.113591+00 2025-10-07 16:13:30.113599+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 17:00:00 896 1583 +3204 2025-10-07 16:19:48.335899+00 2025-10-07 16:19:48.335908+00 f t in_progress_vet 893 1208 +3205 2025-10-07 16:37:51.863116+00 2025-10-07 16:37:51.863155+00 f t pending 897 \N +3206 2025-10-07 16:38:07.052035+00 2025-10-07 16:38:07.052045+00 f t in_progress_vet 897 1583 +3207 2025-10-07 16:38:13.859986+00 2025-10-07 16:38:13.859996+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 16:30:00 897 1583 +3208 2025-10-07 16:39:00.341857+00 2025-10-07 16:39:00.341866+00 f t vet_asked Veterinario asignado: Campo Silvia 897 1583 +3209 2025-10-07 16:39:01.409868+00 2025-10-07 16:39:01.409877+00 f t vet_accepted 897 1583 +3210 2025-10-07 16:39:01.429755+00 2025-10-07 16:39:01.429767+00 f t in_progress_pay 897 1583 +3211 2025-10-07 16:39:24.643999+00 2025-10-07 16:39:24.644011+00 f t Confirmado 897 \N +3212 2025-10-07 16:39:24.607626+00 2025-10-07 16:39:24.607637+00 f t payed 897 1583 +3213 2025-10-07 16:39:40.770825+00 2025-10-07 16:39:40.770837+00 f t vet_asked Veterinario asignado: Levisman Damián 889 1208 +3214 2025-10-07 16:40:59.130302+00 2025-10-07 16:40:59.130316+00 f t Confirmado 889 \N +3215 2025-10-07 16:40:59.093168+00 2025-10-07 16:40:59.093181+00 f t payed 889 1208 +3216 2025-10-07 16:59:41.472082+00 2025-10-07 16:59:41.472091+00 f t rejected D-Emergencia 887 1208 +3217 2025-10-07 17:00:32.266877+00 2025-10-07 17:00:32.266887+00 f t in_progress_vet 892 1208 +3218 2025-10-07 17:24:06.270252+00 2025-10-07 17:24:06.270266+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 20:00:00 892 1208 +3219 2025-10-07 17:25:07.405004+00 2025-10-07 17:25:07.405014+00 f t vet_accepted 892 135 +3220 2025-10-07 17:25:07.419532+00 2025-10-07 17:25:07.419544+00 f t in_progress_pay 892 135 +3221 2025-10-07 18:19:46.48475+00 2025-10-07 18:19:46.484763+00 f t rejected D-Averiguando / Desconocido 892 1208 +3222 2025-10-07 19:09:50.042061+00 2025-10-07 19:09:50.042071+00 f t pending 898 \N +3223 2025-10-07 19:11:35.906744+00 2025-10-07 19:11:35.906753+00 f t in_progress_vet 898 1583 +3224 2025-10-07 19:11:42.605256+00 2025-10-07 19:11:42.605264+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 10:00:00 898 1583 +3225 2025-10-07 19:23:46.629884+00 2025-10-07 19:23:46.629896+00 f t vet_asked Veterinario asignado: Osso Virginia 898 1583 +3226 2025-10-07 19:23:47.383532+00 2025-10-07 19:23:47.38354+00 f t vet_accepted 898 1583 +3227 2025-10-07 19:23:47.400736+00 2025-10-07 19:23:47.400745+00 f t in_progress_pay 898 1583 +3228 2025-10-07 19:23:55.653201+00 2025-10-07 19:23:55.653212+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 09:30:00 898 1583 +3229 2025-10-07 19:24:18.591507+00 2025-10-07 19:24:18.591516+00 f t Confirmado 898 \N +3230 2025-10-07 19:24:18.557997+00 2025-10-07 19:24:18.558011+00 f t payed 898 1583 +3231 2025-10-07 19:27:48.486619+00 2025-10-07 19:27:48.48663+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 888 1208 +3232 2025-10-07 19:30:56.542569+00 2025-10-07 19:30:56.54258+00 f t pending 899 \N +3233 2025-10-07 19:31:36.914954+00 2025-10-07 19:31:36.914966+00 f t in_progress_vet 899 1583 +3234 2025-10-07 19:31:46.693868+00 2025-10-07 19:31:46.693876+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 16:30:00 899 1583 +3235 2025-10-07 19:31:53.548157+00 2025-10-07 19:31:53.548165+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 899 1583 +3236 2025-10-07 19:31:54.31747+00 2025-10-07 19:31:54.317481+00 f t vet_accepted 899 1583 +3237 2025-10-07 19:31:54.33452+00 2025-10-07 19:31:54.33453+00 f t in_progress_pay 899 1583 +3238 2025-10-07 19:32:37.349188+00 2025-10-07 19:32:37.3492+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 19:30:00 888 1208 +3239 2025-10-07 19:32:47.471285+00 2025-10-07 19:32:47.471295+00 f t Confirmado 899 \N +3240 2025-10-07 19:32:47.437565+00 2025-10-07 19:32:47.437577+00 f t payed 899 1583 +3241 2025-10-07 19:33:21.420583+00 2025-10-07 19:33:21.420595+00 f t Confirmado 888 \N +3242 2025-10-07 19:33:21.380635+00 2025-10-07 19:33:21.380648+00 f t payed 888 1208 +3243 2025-10-07 20:08:46.674957+00 2025-10-07 20:08:46.67497+00 f t pending 900 \N +3244 2025-10-07 20:09:40.959557+00 2025-10-07 20:09:40.959565+00 f t in_progress_vet 900 1583 +3245 2025-10-07 20:09:48.778736+00 2025-10-07 20:09:48.778747+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 18:00:00 900 1583 +3246 2025-10-07 20:46:42.359518+00 2025-10-07 20:46:42.35953+00 f t pending 901 \N +3247 2025-10-07 20:46:54.664841+00 2025-10-07 20:46:54.66485+00 f t in_progress_vet 901 1583 +3248 2025-10-07 20:47:03.766824+00 2025-10-07 20:47:03.766835+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 19:30:00 901 1583 +3249 2025-10-07 20:50:33.094266+00 2025-10-07 20:50:33.094276+00 f t vet_asked Veterinario asignado: Kumabe Paula 901 1583 +3250 2025-10-07 20:50:33.828549+00 2025-10-07 20:50:33.828557+00 f t vet_accepted 901 1583 +3251 2025-10-07 20:50:33.840694+00 2025-10-07 20:50:33.840703+00 f t in_progress_pay 901 1583 +3252 2025-10-07 20:51:35.854342+00 2025-10-07 20:51:35.854351+00 f t Confirmado 901 \N +3253 2025-10-07 20:51:35.817205+00 2025-10-07 20:51:35.817214+00 f t payed 901 1583 +3254 2025-10-07 20:57:56.966777+00 2025-10-07 20:57:56.966786+00 f t pending 902 \N +3255 2025-10-07 20:57:59.502359+00 2025-10-07 20:57:59.502374+00 f t pending 903 \N +3256 2025-10-07 20:58:16.735418+00 2025-10-07 20:58:16.735427+00 f t in_progress_vet 903 1583 +3257 2025-10-07 20:59:18.454384+00 2025-10-07 20:59:18.454396+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 10:00:00 903 1583 +3258 2025-10-07 21:37:02.797179+00 2025-10-07 21:37:02.79719+00 f t pending 904 \N +3259 2025-10-07 21:37:30.359492+00 2025-10-07 21:37:30.359501+00 f t in_progress_vet 904 1583 +3260 2025-10-07 21:37:39.581442+00 2025-10-07 21:37:39.58145+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 15:00:00 904 1583 +3261 2025-10-07 21:37:59.343109+00 2025-10-07 21:37:59.343119+00 f t vet_asked Veterinario asignado: Dubowik Katerina 904 1583 +3262 2025-10-07 21:38:00.358289+00 2025-10-07 21:38:00.358303+00 f t vet_accepted 904 1583 +3263 2025-10-07 21:38:00.373693+00 2025-10-07 21:38:00.373706+00 f t in_progress_pay 904 1583 +3264 2025-10-07 21:38:21.16472+00 2025-10-07 21:38:21.16473+00 f t Confirmado 904 \N +3265 2025-10-07 21:38:21.135863+00 2025-10-07 21:38:21.135872+00 f t payed 904 1583 +3266 2025-10-07 21:43:00.275013+00 2025-10-07 21:43:00.275022+00 f t pending 905 \N +3267 2025-10-07 21:43:13.27704+00 2025-10-07 21:43:13.277052+00 f t in_progress_vet 905 1583 +3268 2025-10-07 21:43:19.81743+00 2025-10-07 21:43:19.817437+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 15:00:00 905 1583 +3269 2025-10-07 21:43:37.542551+00 2025-10-07 21:43:37.542559+00 f t payed 905 1583 +3270 2025-10-07 21:43:45.617274+00 2025-10-07 21:43:45.617282+00 f t Confirmado 905 \N +3271 2025-10-07 21:43:46.857659+00 2025-10-07 21:43:46.857671+00 f t vet_asked Veterinario asignado: Dubowik Katerina 905 1583 +3272 2025-10-07 21:43:47.555898+00 2025-10-07 21:43:47.555906+00 f t vet_accepted 905 1583 +3273 2025-10-07 21:44:27.065495+00 2025-10-07 21:44:27.065504+00 f t pending 906 \N +3274 2025-10-07 21:44:43.105651+00 2025-10-07 21:44:43.10566+00 f t in_progress_vet 906 1583 +3275 2025-10-07 21:44:51.803332+00 2025-10-07 21:44:51.803344+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 15:00:00 906 1583 +3276 2025-10-07 21:44:59.250722+00 2025-10-07 21:44:59.25073+00 f t payed 906 1583 +3277 2025-10-07 21:45:21.267501+00 2025-10-07 21:45:21.267509+00 f t Confirmado 906 \N +3278 2025-10-07 21:45:22.518253+00 2025-10-07 21:45:22.518261+00 f t vet_asked Veterinario asignado: Dubowik Katerina 906 1583 +3279 2025-10-07 21:45:30.106238+00 2025-10-07 21:45:30.106247+00 f t vet_asked Veterinario asignado: Dubowik Katerina 906 1583 +3280 2025-10-07 21:45:31.083574+00 2025-10-07 21:45:31.083583+00 f t vet_accepted 906 1583 +3281 2025-10-07 21:46:04.671044+00 2025-10-07 21:46:04.671055+00 f t pending 907 \N +3282 2025-10-07 21:46:18.967028+00 2025-10-07 21:46:18.967036+00 f t in_progress_vet 907 1583 +3283 2025-10-07 21:46:39.786022+00 2025-10-07 21:46:39.786033+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 15:00:00 907 1583 +3284 2025-10-07 21:46:52.056815+00 2025-10-07 21:46:52.056824+00 f t payed 907 1583 +3285 2025-10-07 21:46:59.744242+00 2025-10-07 21:46:59.74425+00 f t Confirmado 907 \N +3286 2025-10-07 21:47:00.911048+00 2025-10-07 21:47:00.911059+00 f t vet_asked Veterinario asignado: Dubowik Katerina 907 1583 +3287 2025-10-07 21:47:01.916169+00 2025-10-07 21:47:01.916184+00 f t vet_accepted 907 1583 +3288 2025-10-07 21:52:04.07644+00 2025-10-07 21:52:04.076449+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 15:30:00 903 1583 +3289 2025-10-07 21:52:25.141581+00 2025-10-07 21:52:25.141591+00 f t vet_asked Veterinario asignado: di Risio Daniela 903 1583 +3290 2025-10-07 21:52:26.005926+00 2025-10-07 21:52:26.005936+00 f t vet_accepted 903 1583 +3291 2025-10-07 21:52:26.019214+00 2025-10-07 21:52:26.019224+00 f t in_progress_pay 903 1583 +3292 2025-10-07 21:54:43.847058+00 2025-10-07 21:54:43.847071+00 f t Confirmado 903 \N +3293 2025-10-07 21:54:43.813089+00 2025-10-07 21:54:43.813097+00 f t payed 903 1583 +3294 2025-10-07 23:35:12.930655+00 2025-10-07 23:35:12.930664+00 f t pending 908 \N +3295 2025-10-07 23:37:10.063227+00 2025-10-07 23:37:10.063235+00 f t in_progress_vet 908 113 +3296 2025-10-07 23:37:24.417552+00 2025-10-07 23:37:24.417561+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 21:00:00 908 113 +3297 2025-10-08 00:17:04.623631+00 2025-10-08 00:17:04.623647+00 f t pending 909 \N +3298 2025-10-08 00:42:17.738169+00 2025-10-08 00:42:17.738178+00 f t pending 910 \N +3299 2025-10-08 09:30:15.860244+00 2025-10-08 09:30:15.860256+00 f t pending 911 \N +3300 2025-10-08 12:10:34.565043+00 2025-10-08 12:10:34.565053+00 f t in_progress_vet 909 1208 +3301 2025-10-08 12:10:56.328724+00 2025-10-08 12:10:56.328732+00 f t in_progress_vet 910 1208 +3302 2025-10-08 12:11:29.771102+00 2025-10-08 12:11:29.771112+00 f t in_progress_vet 911 1208 +3303 2025-10-08 12:41:13.438487+00 2025-10-08 12:41:13.438499+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 18:00:00 911 1208 +3304 2025-10-08 12:41:33.007509+00 2025-10-08 12:41:33.007519+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 19:00:00 911 1208 +3305 2025-10-08 12:45:11.499174+00 2025-10-08 12:45:11.499186+00 f t vet_accepted 911 124 +3306 2025-10-08 12:45:11.510792+00 2025-10-08 12:45:11.510803+00 f t in_progress_pay 911 124 +3307 2025-10-08 14:06:05.841652+00 2025-10-08 14:06:05.841663+00 f t pending 912 \N +3308 2025-10-08 14:06:18.403096+00 2025-10-08 14:06:18.403107+00 f t in_progress_vet 912 1208 +3309 2025-10-08 14:06:27.740474+00 2025-10-08 14:06:27.740482+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 11:00:00 912 1208 +3310 2025-10-08 14:07:14.834731+00 2025-10-08 14:07:14.834744+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 912 1208 +3311 2025-10-08 14:07:59.656786+00 2025-10-08 14:07:59.656795+00 f t payed 912 1208 +3312 2025-10-08 14:11:00.299447+00 2025-10-08 14:11:00.299458+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 19:00:00 909 1208 +3313 2025-10-08 14:11:05.954906+00 2025-10-08 14:11:05.954918+00 f t vet_asked Veterinario asignado: di Risio Daniela 909 1208 +3314 2025-10-08 14:11:35.772153+00 2025-10-08 14:11:35.772164+00 f t Confirmado 909 \N +3315 2025-10-08 14:11:35.729356+00 2025-10-08 14:11:35.729369+00 f t payed 909 1208 +3316 2025-10-08 14:17:48.361786+00 2025-10-08 14:17:48.361796+00 f t pending 913 \N +3317 2025-10-08 14:18:57.290336+00 2025-10-08 14:18:57.290345+00 f t in_progress_vet 913 1583 +3318 2025-10-08 14:19:04.853852+00 2025-10-08 14:19:04.853862+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 11:00:00 913 1583 +3319 2025-10-08 14:19:18.989102+00 2025-10-08 14:19:18.989114+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 913 1583 +3320 2025-10-08 14:19:19.802862+00 2025-10-08 14:19:19.802871+00 f t vet_accepted 913 1583 +3321 2025-10-08 14:19:19.815116+00 2025-10-08 14:19:19.815124+00 f t in_progress_pay 913 1583 +3322 2025-10-08 14:19:38.605948+00 2025-10-08 14:19:38.605956+00 f t Confirmado 913 \N +3323 2025-10-08 14:19:38.571917+00 2025-10-08 14:19:38.571925+00 f t payed 913 1583 +3324 2025-10-08 14:21:10.703632+00 2025-10-08 14:21:10.703641+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 11:00:00 911 1208 +3325 2025-10-08 14:22:04.438356+00 2025-10-08 14:22:04.438368+00 f t Confirmado 911 \N +3326 2025-10-08 14:22:04.40118+00 2025-10-08 14:22:04.401189+00 f t payed 911 1208 +3327 2025-10-08 14:34:12.118557+00 2025-10-08 14:34:12.118565+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 19:00:00 910 1208 +3328 2025-10-08 14:35:59.736438+00 2025-10-08 14:35:59.736447+00 f t vet_accepted 908 134 +3329 2025-10-08 14:35:59.76996+00 2025-10-08 14:35:59.769968+00 f t in_progress_pay 908 134 +3330 2025-10-08 14:36:21.168026+00 2025-10-08 14:36:21.168039+00 f t vet_accepted 910 116 +3331 2025-10-08 14:36:21.182806+00 2025-10-08 14:36:21.182818+00 f t in_progress_pay 910 116 +3332 2025-10-08 14:46:48.250326+00 2025-10-08 14:46:48.250339+00 f t pending 914 \N +3333 2025-10-08 14:52:30.706755+00 2025-10-08 14:52:30.706767+00 f t in_progress_vet 914 1583 +3334 2025-10-08 14:52:43.950067+00 2025-10-08 14:52:43.950075+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 20:00:00 914 1583 +3335 2025-10-08 15:11:43.201301+00 2025-10-08 15:11:43.201312+00 f t pending 915 \N +3336 2025-10-08 15:11:49.176718+00 2025-10-08 15:11:49.176729+00 f t in_progress_vet 915 1208 +3337 2025-10-08 15:12:30.966476+00 2025-10-08 15:12:30.966487+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 17:00:00 915 1208 +3338 2025-10-08 15:13:17.895853+00 2025-10-08 15:13:17.895863+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 914 1583 +3339 2025-10-08 15:13:24.50948+00 2025-10-08 15:13:24.50949+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 18:00:00 914 1583 +3340 2025-10-08 15:15:10.307882+00 2025-10-08 15:15:10.307892+00 f t payed 915 1208 +3341 2025-10-08 15:15:25.995676+00 2025-10-08 15:15:25.995689+00 f t Confirmado 915 \N +3342 2025-10-08 15:15:27.131123+00 2025-10-08 15:15:27.131163+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 915 1208 +3343 2025-10-08 15:17:43.95013+00 2025-10-08 15:17:43.950139+00 f t Confirmado 914 \N +3344 2025-10-08 15:17:43.91506+00 2025-10-08 15:17:43.915068+00 f t payed 914 1583 +3345 2025-10-08 15:25:00.01332+00 2025-10-08 15:25:00.013331+00 f t pending 916 \N +3346 2025-10-08 15:25:32.096712+00 2025-10-08 15:25:32.09672+00 f t in_progress_vet 916 1583 +3347 2025-10-08 15:25:40.803887+00 2025-10-08 15:25:40.803898+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 16:00:00 916 1583 +3348 2025-10-08 15:26:42.383896+00 2025-10-08 15:26:42.383904+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 17:00:00 916 1583 +3349 2025-10-08 15:29:46.361968+00 2025-10-08 15:29:46.361978+00 f t vet_asked Veterinario asignado: Inseparables Crematorio 916 1583 +3350 2025-10-08 15:32:44.785783+00 2025-10-08 15:32:44.785797+00 f t pending 917 \N +3351 2025-10-08 15:33:41.07435+00 2025-10-08 15:33:41.074358+00 f t in_progress_vet 917 1583 +3352 2025-10-08 15:33:46.328879+00 2025-10-08 15:33:46.328889+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 09:00:00 917 1583 +3353 2025-10-08 15:33:55.357398+00 2025-10-08 15:33:55.357407+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 917 1583 +3354 2025-10-08 15:34:37.697403+00 2025-10-08 15:34:37.697415+00 f t Confirmado 917 \N +3355 2025-10-08 15:34:37.666102+00 2025-10-08 15:34:37.66611+00 f t payed 917 1583 +3356 2025-10-08 15:38:21.729184+00 2025-10-08 15:38:21.729192+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 16:00:00 910 1208 +3357 2025-10-08 15:53:08.359687+00 2025-10-08 15:53:08.359698+00 f t pending 918 \N +3358 2025-10-08 15:53:20.746246+00 2025-10-08 15:53:20.746257+00 f t in_progress_vet 918 1583 +3359 2025-10-08 15:53:29.216805+00 2025-10-08 15:53:29.216821+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 11:00:00 918 1583 +3360 2025-10-08 16:04:43.777119+00 2025-10-08 16:04:43.777132+00 f t vet_asked Veterinario asignado: Palummo Mariana 916 1583 +3361 2025-10-08 16:05:11.451609+00 2025-10-08 16:05:11.451619+00 f t Confirmado 916 \N +3362 2025-10-08 16:05:11.407888+00 2025-10-08 16:05:11.407901+00 f t payed 916 1583 +3363 2025-10-08 16:29:11.133806+00 2025-10-08 16:29:11.133815+00 f t Confirmado 910 \N +3364 2025-10-08 16:29:11.100908+00 2025-10-08 16:29:11.100917+00 f t payed 910 1208 +3365 2025-10-08 17:26:51.006114+00 2025-10-08 17:26:51.006123+00 f t pending 919 \N +3366 2025-10-08 17:28:27.804761+00 2025-10-08 17:28:27.804769+00 f t in_progress_vet 919 1208 +3367 2025-10-08 17:28:38.37228+00 2025-10-08 17:28:38.372288+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 19:30:00 919 1208 +3368 2025-10-08 17:30:02.304504+00 2025-10-08 17:30:02.304518+00 f t pending 920 \N +3369 2025-10-08 17:30:24.432279+00 2025-10-08 17:30:24.432288+00 f t in_progress_vet 920 1208 +3370 2025-10-08 17:30:40.557256+00 2025-10-08 17:30:40.557264+00 f t coordinated Solicitud coordinada para 2025-10-11 a las 08:30:00 920 1208 +3371 2025-10-08 17:30:52.509639+00 2025-10-08 17:30:52.509646+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 920 1208 +3372 2025-10-08 17:31:31.359154+00 2025-10-08 17:31:31.359163+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 919 1208 +3373 2025-10-08 17:40:36.353351+00 2025-10-08 17:40:36.35336+00 f t Confirmado 919 \N +3374 2025-10-08 17:40:36.317835+00 2025-10-08 17:40:36.31785+00 f t payed 919 1208 +3375 2025-10-08 17:40:48.389423+00 2025-10-08 17:40:48.389433+00 f t Confirmado 920 \N +3376 2025-10-08 17:40:48.35925+00 2025-10-08 17:40:48.359261+00 f t payed 920 1208 +3377 2025-10-08 18:27:54.753669+00 2025-10-08 18:27:54.753676+00 f t coordinated Solicitud coordinada para 2025-10-07 a las 09:30:00 882 114 +3378 2025-10-08 18:54:16.039049+00 2025-10-08 18:54:16.039056+00 f t pending 921 \N +3379 2025-10-08 18:55:51.370253+00 2025-10-08 18:55:51.370261+00 f t in_progress_vet 921 1208 +3380 2025-10-08 18:55:57.108422+00 2025-10-08 18:55:57.10843+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 08:30:00 921 1208 +3381 2025-10-08 18:56:27.504542+00 2025-10-08 18:56:27.504549+00 f t pending 922 \N +3382 2025-10-08 18:56:40.752555+00 2025-10-08 18:56:40.752564+00 f t in_progress_vet 922 1208 +3383 2025-10-08 18:56:53.1541+00 2025-10-08 18:56:53.154108+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 09:30:00 922 1208 +3384 2025-10-08 18:57:19.211878+00 2025-10-08 18:57:19.211887+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 922 1208 +3385 2025-10-08 18:58:24.560938+00 2025-10-08 18:58:24.560947+00 f t pending 923 \N +3386 2025-10-08 18:59:01.37646+00 2025-10-08 18:59:01.376468+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 15:00:00 923 118 +3387 2025-10-08 18:59:19.015301+00 2025-10-08 18:59:19.015309+00 f t vet_asked Veterinario asignado: Burgess Clínica 923 118 +3388 2025-10-08 18:59:24.34487+00 2025-10-08 18:59:24.344879+00 f t vet_accepted 923 118 +3389 2025-10-08 18:59:24.360796+00 2025-10-08 18:59:24.360808+00 f t in_progress_pay 923 118 +3390 2025-10-08 18:59:28.714415+00 2025-10-08 18:59:28.714424+00 f t pending 924 \N +3391 2025-10-08 18:59:45.52005+00 2025-10-08 18:59:45.520058+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 921 1208 +3392 2025-10-08 18:59:46.835096+00 2025-10-08 18:59:46.835105+00 f t in_progress_vet 924 1583 +3393 2025-10-08 19:00:11.08608+00 2025-10-08 19:00:11.086088+00 f t rejected D-Derivado 923 118 +3394 2025-10-08 19:00:12.620245+00 2025-10-08 19:00:12.620253+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 15:00:00 924 1583 +3477 2025-10-09 16:19:35.163715+00 2025-10-09 16:19:35.163724+00 f t payed 927 1583 +3395 2025-10-08 19:06:09.219446+00 2025-10-08 19:06:09.219455+00 f t vet_asked Veterinario asignado: Ponce Lisandro 924 1583 +3396 2025-10-08 19:06:09.823387+00 2025-10-08 19:06:09.823397+00 f t vet_accepted 924 1583 +3397 2025-10-08 19:06:09.835581+00 2025-10-08 19:06:09.835589+00 f t in_progress_pay 924 1583 +3398 2025-10-08 19:08:09.346347+00 2025-10-08 19:08:09.346355+00 f t Confirmado 921 \N +3399 2025-10-08 19:08:09.320579+00 2025-10-08 19:08:09.320587+00 f t payed 921 1208 +3400 2025-10-08 19:08:22.275572+00 2025-10-08 19:08:22.275579+00 f t Confirmado 922 \N +3401 2025-10-08 19:08:22.250187+00 2025-10-08 19:08:22.250195+00 f t payed 922 1208 +3402 2025-10-08 19:11:10.905079+00 2025-10-08 19:11:10.905087+00 f t Confirmado 924 \N +3403 2025-10-08 19:11:10.872022+00 2025-10-08 19:11:10.872032+00 f t payed 924 1583 +3404 2025-10-08 19:31:34.662369+00 2025-10-08 19:31:34.662377+00 f t pending 925 \N +3405 2025-10-08 19:32:17.521447+00 2025-10-08 19:32:17.521455+00 f t in_progress_vet 925 1583 +3406 2025-10-08 19:32:59.269503+00 2025-10-08 19:32:59.269511+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 10:00:00 925 1583 +3407 2025-10-08 19:38:36.204302+00 2025-10-08 19:38:36.204311+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 925 1583 +3408 2025-10-08 19:41:24.318777+00 2025-10-08 19:41:24.318786+00 f t pending 926 \N +3409 2025-10-08 19:42:05.285293+00 2025-10-08 19:42:05.285301+00 f t in_progress_vet 926 1583 +3410 2025-10-08 19:42:14.692424+00 2025-10-08 19:42:14.692436+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 20:00:00 926 1583 +3411 2025-10-08 19:45:26.789865+00 2025-10-08 19:45:26.789874+00 f t pending 927 \N +3412 2025-10-08 19:56:32.70478+00 2025-10-08 19:56:32.70479+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 10:00:00 925 1583 +3413 2025-10-08 19:56:45.960926+00 2025-10-08 19:56:45.960935+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 925 1583 +3414 2025-10-08 19:56:46.666382+00 2025-10-08 19:56:46.666389+00 f t vet_accepted 925 1583 +3415 2025-10-08 19:56:46.676368+00 2025-10-08 19:56:46.676377+00 f t in_progress_pay 925 1583 +3416 2025-10-08 19:56:54.061428+00 2025-10-08 19:56:54.061436+00 f t Confirmado 925 \N +3417 2025-10-08 19:56:54.027461+00 2025-10-08 19:56:54.027473+00 f t payed 925 1583 +3418 2025-10-08 20:13:20.138592+00 2025-10-08 20:13:20.138601+00 f t pending 928 \N +3419 2025-10-08 20:14:08.020585+00 2025-10-08 20:14:08.020593+00 f t in_progress_vet 928 1583 +3420 2025-10-08 20:17:09.009346+00 2025-10-08 20:17:09.009356+00 f t pending 929 \N +3421 2025-10-08 20:18:50.273999+00 2025-10-08 20:18:50.274009+00 f t pending 930 \N +3422 2025-10-08 20:20:16.27777+00 2025-10-08 20:20:16.277778+00 f t in_progress_vet 930 1583 +3423 2025-10-08 20:20:23.067188+00 2025-10-08 20:20:23.067195+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 14:30:00 930 1583 +3424 2025-10-08 20:20:48.355072+00 2025-10-08 20:20:48.355082+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 930 1583 +3425 2025-10-08 20:20:49.03261+00 2025-10-08 20:20:49.032618+00 f t vet_accepted 930 1583 +3426 2025-10-08 20:20:49.044081+00 2025-10-08 20:20:49.044089+00 f t in_progress_pay 930 1583 +3427 2025-10-08 20:20:56.742551+00 2025-10-08 20:20:56.742562+00 f t Confirmado 930 \N +3428 2025-10-08 20:20:56.703034+00 2025-10-08 20:20:56.703042+00 f t payed 930 1583 +3429 2025-10-08 20:41:38.052065+00 2025-10-08 20:41:38.052073+00 f t in_progress_vet 929 1583 +3430 2025-10-08 20:41:46.759936+00 2025-10-08 20:41:46.759944+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 20:00:00 929 1583 +3431 2025-10-08 20:45:46.455288+00 2025-10-08 20:45:46.455297+00 f t vet_asked Veterinario asignado: Henjes María José 929 1583 +3432 2025-10-08 20:45:47.861309+00 2025-10-08 20:45:47.861319+00 f t vet_accepted 929 1583 +3433 2025-10-08 20:45:47.87721+00 2025-10-08 20:45:47.877219+00 f t in_progress_pay 929 1583 +3434 2025-10-08 20:49:17.485538+00 2025-10-08 20:49:17.485546+00 f t payed 928 1583 +3435 2025-10-08 20:49:50.615203+00 2025-10-08 20:49:50.61521+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 19:00:00 928 1583 +3436 2025-10-08 20:50:04.726705+00 2025-10-08 20:50:04.726716+00 f t Confirmado 928 \N +3437 2025-10-08 20:50:07.643404+00 2025-10-08 20:50:07.643415+00 f t vet_asked Veterinario asignado: di Risio Daniela 928 1583 +3438 2025-10-08 20:50:08.744194+00 2025-10-08 20:50:08.744206+00 f t vet_accepted 928 1583 +3439 2025-10-08 20:54:47.66816+00 2025-10-08 20:54:47.668167+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 18:30:00 929 1583 +3440 2025-10-08 20:55:09.468901+00 2025-10-08 20:55:09.468911+00 f t vet_asked Veterinario asignado: Henjes María José 929 1583 +3441 2025-10-08 20:55:10.255784+00 2025-10-08 20:55:10.255795+00 f t vet_accepted 929 1583 +3442 2025-10-08 20:55:10.270558+00 2025-10-08 20:55:10.270567+00 f t in_progress_pay 929 1583 +3443 2025-10-08 20:55:17.711984+00 2025-10-08 20:55:17.711992+00 f t Confirmado 929 \N +3444 2025-10-08 20:55:17.683171+00 2025-10-08 20:55:17.68318+00 f t payed 929 1583 +3445 2025-10-08 23:14:36.880113+00 2025-10-08 23:14:36.880123+00 f t pending 931 \N +3446 2025-10-08 23:14:52.284716+00 2025-10-08 23:14:52.284725+00 f t in_progress_vet 931 113 +3447 2025-10-08 23:15:11.439061+00 2025-10-08 23:15:11.439069+00 f t coordinated Solicitud coordinada para 2025-10-08 a las 22:00:00 931 113 +3448 2025-10-08 23:15:56.647793+00 2025-10-08 23:15:56.647801+00 f t vet_asked Veterinario asignado: di Risio Daniela 931 113 +3449 2025-10-08 23:16:36.03285+00 2025-10-08 23:16:36.032859+00 f t vet_asked Veterinario asignado: di Risio Daniela 931 113 +3450 2025-10-08 23:17:32.603914+00 2025-10-08 23:17:32.603925+00 f t vet_asked Veterinario asignado: di Risio Daniela 931 113 +3451 2025-10-08 23:18:21.198014+00 2025-10-08 23:18:21.198023+00 f t Confirmado 931 \N +3452 2025-10-08 23:18:21.168316+00 2025-10-08 23:18:21.168326+00 f t payed 931 113 +3453 2025-10-08 23:44:33.412171+00 2025-10-08 23:44:33.412183+00 f t pending 932 \N +3454 2025-10-08 23:45:04.343421+00 2025-10-08 23:45:04.343435+00 f t in_progress_vet 932 113 +3455 2025-10-08 23:52:09.129066+00 2025-10-08 23:52:09.129077+00 f t vet_accepted 861 129 +3456 2025-10-08 23:56:06.65829+00 2025-10-08 23:56:06.658298+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 21:00:00 932 113 +3457 2025-10-08 23:57:29.85631+00 2025-10-08 23:57:29.856318+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 932 113 +3458 2025-10-08 23:57:30.929259+00 2025-10-08 23:57:30.929269+00 f t vet_accepted 932 113 +3459 2025-10-08 23:57:30.940112+00 2025-10-08 23:57:30.940122+00 f t in_progress_pay 932 113 +3460 2025-10-09 00:02:42.481304+00 2025-10-09 00:02:42.481313+00 f t vet_asked Veterinario asignado: Dubowik Katerina 932 113 +3461 2025-10-09 00:04:54.395817+00 2025-10-09 00:04:54.395826+00 f t vet_accepted 932 135 +3462 2025-10-09 00:04:54.408429+00 2025-10-09 00:04:54.408438+00 f t in_progress_pay 932 135 +3463 2025-10-09 00:20:05.177352+00 2025-10-09 00:20:05.177368+00 f t Confirmado 932 \N +3464 2025-10-09 00:20:05.08444+00 2025-10-09 00:20:05.084453+00 f t payed 932 113 +3465 2025-10-09 14:20:08.997199+00 2025-10-09 14:20:08.99721+00 f t pending 933 \N +3466 2025-10-09 14:21:02.232417+00 2025-10-09 14:21:02.232429+00 f t in_progress_vet 933 1208 +3467 2025-10-09 14:21:45.641237+00 2025-10-09 14:21:45.641244+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 15:00:00 933 1208 +3468 2025-10-09 14:27:29.324866+00 2025-10-09 14:27:29.324876+00 f t vet_accepted 933 135 +3469 2025-10-09 14:27:29.336392+00 2025-10-09 14:27:29.336401+00 f t in_progress_pay 933 135 +3470 2025-10-09 14:37:41.570032+00 2025-10-09 14:37:41.570043+00 f t Confirmado 933 \N +3471 2025-10-09 14:37:41.541161+00 2025-10-09 14:37:41.54117+00 f t payed 933 1208 +3472 2025-10-09 16:03:30.132836+00 2025-10-09 16:03:30.132843+00 f t in_progress_vet 927 1583 +3473 2025-10-09 16:03:45.412457+00 2025-10-09 16:03:45.412465+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 11:00:00 927 1583 +3474 2025-10-09 16:04:45.195298+00 2025-10-09 16:04:45.195311+00 f t vet_accepted 927 128 +3475 2025-10-09 16:04:45.208006+00 2025-10-09 16:04:45.208016+00 f t in_progress_pay 927 128 +3476 2025-10-09 16:19:35.200219+00 2025-10-09 16:19:35.200228+00 f t Confirmado 927 \N +3478 2025-10-09 18:06:29.618255+00 2025-10-09 18:06:29.618264+00 f t pending 934 \N +3479 2025-10-09 18:06:38.078946+00 2025-10-09 18:06:38.078954+00 f t pending 935 \N +3480 2025-10-09 18:07:05.899951+00 2025-10-09 18:07:05.899961+00 f t in_progress_vet 935 1583 +3481 2025-10-09 18:07:06.892+00 2025-10-09 18:07:06.892009+00 f t in_progress_vet 934 1208 +3482 2025-10-09 18:08:58.662071+00 2025-10-09 18:08:58.662079+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 10:00:00 934 1208 +3483 2025-10-09 18:09:38.936554+00 2025-10-09 18:09:38.936562+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 934 1208 +3484 2025-10-09 18:10:19.961292+00 2025-10-09 18:10:19.9613+00 f t pending 936 \N +3485 2025-10-09 18:10:28.256715+00 2025-10-09 18:10:28.256724+00 f t pending 937 \N +3486 2025-10-09 18:10:50.044227+00 2025-10-09 18:10:50.044235+00 f t in_progress_vet 936 1208 +3487 2025-10-09 18:10:57.996014+00 2025-10-09 18:10:57.996022+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 11:00:00 936 1208 +3488 2025-10-09 18:12:07.353911+00 2025-10-09 18:12:07.353918+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 936 1208 +3489 2025-10-09 18:12:33.653283+00 2025-10-09 18:12:33.653295+00 f t in_progress_vet 937 1583 +3490 2025-10-09 18:15:16.194921+00 2025-10-09 18:15:16.194928+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 14:00:00 937 1583 +3491 2025-10-09 18:31:43.326377+00 2025-10-09 18:31:43.326385+00 f t pending 938 \N +3492 2025-10-09 18:32:27.2499+00 2025-10-09 18:32:27.249908+00 f t in_progress_vet 938 1208 +3493 2025-10-09 19:06:15.563087+00 2025-10-09 19:06:15.563096+00 f t vet_asked Veterinario asignado: Campo Silvia 937 1583 +3494 2025-10-09 19:06:16.346647+00 2025-10-09 19:06:16.346656+00 f t vet_accepted 937 1583 +3495 2025-10-09 19:06:16.358563+00 2025-10-09 19:06:16.358572+00 f t in_progress_pay 937 1583 +3496 2025-10-09 19:06:52.250555+00 2025-10-09 19:06:52.250564+00 f t Confirmado 937 \N +3497 2025-10-09 19:06:52.22231+00 2025-10-09 19:06:52.222321+00 f t payed 937 1583 +3498 2025-10-09 19:25:23.799395+00 2025-10-09 19:25:23.799403+00 f t Confirmado 934 \N +3499 2025-10-09 19:25:23.754609+00 2025-10-09 19:25:23.754616+00 f t payed 934 1208 +3500 2025-10-09 19:25:37.16542+00 2025-10-09 19:25:37.165431+00 f t Confirmado 936 \N +3501 2025-10-09 19:25:37.133556+00 2025-10-09 19:25:37.133567+00 f t payed 936 1208 +3502 2025-10-09 19:26:12.285999+00 2025-10-09 19:26:12.286008+00 f t pending 939 \N +3503 2025-10-09 19:28:54.441702+00 2025-10-09 19:28:54.441711+00 f t in_progress_vet 939 1583 +3504 2025-10-09 19:29:01.882276+00 2025-10-09 19:29:01.882286+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 21:00:00 939 1583 +3505 2025-10-09 20:01:55.809521+00 2025-10-09 20:01:55.809529+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 19:30:00 938 1208 +3506 2025-10-09 20:02:14.839683+00 2025-10-09 20:02:14.839695+00 f t vet_asked Veterinario asignado: Szczurek Verónica Carolina 938 1208 +3507 2025-10-09 20:08:38.130964+00 2025-10-09 20:08:38.13099+00 f t vet_accepted 915 139 +3508 2025-10-09 20:11:21.835178+00 2025-10-09 20:11:21.83519+00 f t pending 940 \N +3509 2025-10-09 20:11:37.493546+00 2025-10-09 20:11:37.493554+00 f t in_progress_vet 940 1583 +3510 2025-10-09 20:49:09.460607+00 2025-10-09 20:49:09.460615+00 f t pending 941 \N +3511 2025-10-09 20:49:52.168354+00 2025-10-09 20:49:52.168362+00 f t in_progress_vet 941 1583 +3512 2025-10-09 20:51:08.346399+00 2025-10-09 20:51:08.346407+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 21:00:00 941 1583 +3513 2025-10-09 20:51:58.185092+00 2025-10-09 20:51:58.185099+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 14:00:00 940 1583 +3514 2025-10-09 20:57:36.692122+00 2025-10-09 20:57:36.692129+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 18:00:00 939 1583 +3515 2025-10-09 20:57:40.705733+00 2025-10-09 20:57:40.705741+00 f t vet_asked Veterinario asignado: di Risio Daniela 939 1583 +3516 2025-10-09 20:57:42.165767+00 2025-10-09 20:57:42.165774+00 f t vet_accepted 939 1583 +3517 2025-10-09 20:57:42.175911+00 2025-10-09 20:57:42.17592+00 f t in_progress_pay 939 1583 +3518 2025-10-09 20:58:29.665581+00 2025-10-09 20:58:29.665589+00 f t Confirmado 939 \N +3519 2025-10-09 20:58:29.638728+00 2025-10-09 20:58:29.638736+00 f t payed 939 1583 +3520 2025-10-09 21:11:42.869784+00 2025-10-09 21:11:42.869792+00 f t pending 942 \N +3521 2025-10-09 21:16:27.979521+00 2025-10-09 21:16:27.97953+00 f t in_progress_vet 942 1583 +3522 2025-10-09 21:16:35.733443+00 2025-10-09 21:16:35.733451+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 11:00:00 942 1583 +3523 2025-10-09 22:21:38.777378+00 2025-10-09 22:21:38.777385+00 f t Confirmado 938 \N +3524 2025-10-09 22:21:38.750075+00 2025-10-09 22:21:38.750083+00 f t payed 938 1208 +3525 2025-10-09 23:55:06.888484+00 2025-10-09 23:55:06.888493+00 f t pending 943 \N +3526 2025-10-09 23:55:28.678+00 2025-10-09 23:55:28.678007+00 f t in_progress_vet 943 113 +3527 2025-10-09 23:55:40.918917+00 2025-10-09 23:55:40.918924+00 f t coordinated Solicitud coordinada para 2025-10-09 a las 21:00:00 943 113 +3528 2025-10-10 00:03:54.308769+00 2025-10-10 00:03:54.308781+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 12:30:00 943 113 +3529 2025-10-10 00:04:16.425803+00 2025-10-10 00:04:16.425811+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 943 113 +3530 2025-10-10 00:05:29.496815+00 2025-10-10 00:05:29.496823+00 f t Confirmado 943 \N +3531 2025-10-10 00:05:29.461409+00 2025-10-10 00:05:29.461422+00 f t payed 943 113 +3532 2025-10-10 00:46:40.155925+00 2025-10-10 00:46:40.155933+00 f t pending 944 \N +3533 2025-10-10 09:36:44.890937+00 2025-10-10 09:36:44.890948+00 f t vet_accepted 882 126 +3534 2025-10-10 12:19:53.68015+00 2025-10-10 12:19:53.680158+00 f t in_progress_vet 944 1583 +3535 2025-10-10 12:20:06.421177+00 2025-10-10 12:20:06.421188+00 f t coordinated Solicitud coordinada para 2025-10-11 a las 15:00:00 944 1583 +3536 2025-10-10 12:23:10.585257+00 2025-10-10 12:23:10.585269+00 f t pending 945 \N +3537 2025-10-10 12:23:40.992172+00 2025-10-10 12:23:40.99218+00 f t in_progress_vet 945 1583 +3538 2025-10-10 12:23:51.309372+00 2025-10-10 12:23:51.30938+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 14:00:00 945 1583 +3539 2025-10-10 12:46:15.930305+00 2025-10-10 12:46:15.930314+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 945 1583 +3540 2025-10-10 12:50:33.619683+00 2025-10-10 12:50:33.61969+00 f t pending 946 \N +3541 2025-10-10 12:50:56.539338+00 2025-10-10 12:50:56.539346+00 f t in_progress_vet 946 1583 +3542 2025-10-10 12:51:05.757753+00 2025-10-10 12:51:05.75776+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 14:00:00 946 1583 +3543 2025-10-10 13:00:15.120173+00 2025-10-10 13:00:15.12018+00 f t pending 947 \N +3544 2025-10-10 13:00:40.318517+00 2025-10-10 13:00:40.318526+00 f t pending 948 \N +3545 2025-10-10 13:01:02.793227+00 2025-10-10 13:01:02.793235+00 f t in_progress_vet 947 1583 +3546 2025-10-10 13:02:36.482743+00 2025-10-10 13:02:36.482751+00 f t in_progress_vet 948 1583 +3547 2025-10-10 13:02:44.160737+00 2025-10-10 13:02:44.160746+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 18:00:00 948 1583 +3548 2025-10-10 13:11:56.71535+00 2025-10-10 13:11:56.715359+00 f t Confirmado 945 \N +3549 2025-10-10 13:11:56.683861+00 2025-10-10 13:11:56.683869+00 f t payed 945 1583 +3550 2025-10-10 13:29:23.822619+00 2025-10-10 13:29:23.822626+00 f t pending 949 \N +3551 2025-10-10 13:29:41.294329+00 2025-10-10 13:29:41.294336+00 f t in_progress_vet 949 1583 +3552 2025-10-10 13:29:49.974443+00 2025-10-10 13:29:49.97445+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 16:00:00 949 1583 +3553 2025-10-10 13:38:49.028741+00 2025-10-10 13:38:49.028749+00 f t vet_accepted 946 142 +3554 2025-10-10 13:38:49.040826+00 2025-10-10 13:38:49.040834+00 f t in_progress_pay 946 142 +3555 2025-10-10 14:02:15.817304+00 2025-10-10 14:02:15.817315+00 f t vet_asked Veterinario asignado: Ponce Lisandro 946 1583 +3556 2025-10-10 14:02:16.553962+00 2025-10-10 14:02:16.55397+00 f t vet_accepted 946 1583 +3557 2025-10-10 14:02:16.565196+00 2025-10-10 14:02:16.565205+00 f t in_progress_pay 946 1583 +3558 2025-10-10 14:03:43.523718+00 2025-10-10 14:03:43.523726+00 f t Confirmado 946 \N +3559 2025-10-10 14:03:43.488492+00 2025-10-10 14:03:43.488502+00 f t payed 946 1583 +3560 2025-10-10 14:26:38.294749+00 2025-10-10 14:26:38.294757+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 14:00:00 947 1583 +3561 2025-10-10 14:49:46.73749+00 2025-10-10 14:49:46.737499+00 f t pending 950 \N +3562 2025-10-10 14:51:13.371245+00 2025-10-10 14:51:13.371256+00 f t in_progress_vet 950 1583 +3563 2025-10-10 14:51:19.457494+00 2025-10-10 14:51:19.457502+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 18:00:00 950 1583 +3564 2025-10-10 15:17:30.974116+00 2025-10-10 15:17:30.974123+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 16:00:00 950 1583 +3565 2025-10-10 15:17:36.461403+00 2025-10-10 15:17:36.461411+00 f t vet_asked Veterinario asignado: Palladino Martín 950 1583 +3566 2025-10-10 15:17:37.145583+00 2025-10-10 15:17:37.145592+00 f t vet_asked Veterinario asignado: Palladino Martín 950 1583 +3567 2025-10-10 15:17:38.017282+00 2025-10-10 15:17:38.01729+00 f t vet_accepted 950 1583 +3568 2025-10-10 15:17:38.041595+00 2025-10-10 15:17:38.041606+00 f t in_progress_pay 950 1583 +3569 2025-10-10 15:17:54.620179+00 2025-10-10 15:17:54.620191+00 f t Confirmado 950 \N +3570 2025-10-10 15:17:54.588639+00 2025-10-10 15:17:54.588651+00 f t payed 950 1583 +3571 2025-10-10 15:56:22.556136+00 2025-10-10 15:56:22.556145+00 f t pending 951 \N +3572 2025-10-10 15:56:56.913774+00 2025-10-10 15:56:56.913786+00 f t in_progress_vet 951 1583 +3573 2025-10-10 15:57:03.018655+00 2025-10-10 15:57:03.018663+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 17:00:00 951 1583 +3574 2025-10-10 16:03:02.163068+00 2025-10-10 16:03:02.163081+00 f t pending 952 \N +3575 2025-10-10 16:03:30.877908+00 2025-10-10 16:03:30.877917+00 f t in_progress_vet 952 1583 +3576 2025-10-10 16:03:39.326+00 2025-10-10 16:03:39.326008+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 15:00:00 952 1583 +3577 2025-10-10 16:03:44.515511+00 2025-10-10 16:03:44.515521+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 17:00:00 952 1583 +3578 2025-10-10 16:10:51.811178+00 2025-10-10 16:10:51.811187+00 f t pending 953 \N +3579 2025-10-10 16:13:31.608012+00 2025-10-10 16:13:31.608025+00 f t in_progress_vet 953 114 +3580 2025-10-10 16:14:03.372526+00 2025-10-10 16:14:03.372537+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 20:00:00 953 114 +3581 2025-10-10 16:42:47.034043+00 2025-10-10 16:42:47.034051+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 953 114 +3582 2025-10-10 16:42:47.751357+00 2025-10-10 16:42:47.751369+00 f t vet_accepted 953 114 +3583 2025-10-10 16:42:47.766622+00 2025-10-10 16:42:47.766633+00 f t in_progress_pay 953 114 +3584 2025-10-10 16:42:54.4653+00 2025-10-10 16:42:54.465307+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 15:00:00 953 114 +3585 2025-10-10 16:44:30.27238+00 2025-10-10 16:44:30.272388+00 f t Confirmado 953 \N +3586 2025-10-10 16:44:30.244458+00 2025-10-10 16:44:30.244466+00 f t payed 953 114 +3587 2025-10-10 16:48:17.168949+00 2025-10-10 16:48:17.168957+00 f t pending 954 \N +3588 2025-10-10 16:49:45.26621+00 2025-10-10 16:49:45.266218+00 f t vet_accepted 951 142 +3589 2025-10-10 16:49:45.276826+00 2025-10-10 16:49:45.276835+00 f t in_progress_pay 951 142 +3590 2025-10-10 16:50:16.204975+00 2025-10-10 16:50:16.204983+00 f t in_progress_vet 954 1583 +3591 2025-10-10 16:50:29.376248+00 2025-10-10 16:50:29.376258+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 19:00:00 954 1583 +3592 2025-10-10 16:52:45.920464+00 2025-10-10 16:52:45.920474+00 f t pending 955 \N +3593 2025-10-10 16:53:00.955954+00 2025-10-10 16:53:00.955964+00 f t in_progress_vet 955 1583 +3594 2025-10-10 16:53:08.087838+00 2025-10-10 16:53:08.087845+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 17:00:00 955 1583 +3595 2025-10-10 16:59:06.009075+00 2025-10-10 16:59:06.009083+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 954 1583 +3596 2025-10-10 16:59:06.73711+00 2025-10-10 16:59:06.737118+00 f t vet_accepted 954 1583 +3597 2025-10-10 16:59:06.747733+00 2025-10-10 16:59:06.747741+00 f t in_progress_pay 954 1583 +3598 2025-10-10 17:00:02.03824+00 2025-10-10 17:00:02.038255+00 f t Confirmado 954 \N +3599 2025-10-10 17:00:01.950503+00 2025-10-10 17:00:01.950515+00 f t payed 954 1583 +3600 2025-10-10 22:59:04.854024+00 2025-10-10 22:59:04.854033+00 f t pending 956 \N +3601 2025-10-10 23:00:14.378582+00 2025-10-10 23:00:14.378594+00 f t in_progress_vet 956 114 +3602 2025-10-10 23:00:32.848621+00 2025-10-10 23:00:32.848632+00 f t coordinated Solicitud coordinada para 2025-10-11 a las 14:30:00 956 114 +3603 2025-10-10 23:04:33.388395+00 2025-10-10 23:04:33.388405+00 f t coordinated Solicitud coordinada para 2025-10-11 a las 14:30:00 956 114 +3604 2025-10-10 23:06:09.130496+00 2025-10-10 23:06:09.130506+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 956 114 +3605 2025-10-10 23:06:10.089534+00 2025-10-10 23:06:10.089544+00 f t vet_accepted 956 114 +3606 2025-10-10 23:06:10.101735+00 2025-10-10 23:06:10.101744+00 f t in_progress_pay 956 114 +3607 2025-10-10 23:06:26.709987+00 2025-10-10 23:06:26.709998+00 f t Confirmado 956 \N +3608 2025-10-10 23:06:26.678728+00 2025-10-10 23:06:26.678736+00 f t payed 956 114 +3609 2025-10-10 23:08:00.98253+00 2025-10-10 23:08:00.982542+00 f t pending 957 \N +3610 2025-10-10 23:08:23.083832+00 2025-10-10 23:08:23.083839+00 f t in_progress_vet 957 114 +3611 2025-10-10 23:08:54.729932+00 2025-10-10 23:08:54.72994+00 f t coordinated Solicitud coordinada para 2025-10-11 a las 13:30:00 957 114 +3612 2025-10-10 23:09:33.91637+00 2025-10-10 23:09:33.916381+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 957 114 +3613 2025-10-10 23:09:36.055488+00 2025-10-10 23:09:36.055498+00 f t vet_accepted 957 114 +3614 2025-10-10 23:09:36.072054+00 2025-10-10 23:09:36.072065+00 f t in_progress_pay 957 114 +3615 2025-10-10 23:11:59.682478+00 2025-10-10 23:11:59.682486+00 f t Confirmado 957 \N +3616 2025-10-10 23:11:59.654707+00 2025-10-10 23:11:59.654715+00 f t payed 957 114 +3617 2025-10-10 23:26:13.015514+00 2025-10-10 23:26:13.015522+00 f t pending 958 \N +3618 2025-10-10 23:26:39.78778+00 2025-10-10 23:26:39.787791+00 f t in_progress_vet 958 114 +3619 2025-10-10 23:28:07.806753+00 2025-10-10 23:28:07.80676+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 17:30:00 958 114 +3620 2025-10-10 23:28:34.62309+00 2025-10-10 23:28:34.623099+00 f t vet_asked Veterinario asignado: Laura Gorostegui Maria 958 114 +3621 2025-10-10 23:28:36.281115+00 2025-10-10 23:28:36.281123+00 f t vet_accepted 958 114 +3622 2025-10-10 23:28:36.292579+00 2025-10-10 23:28:36.292589+00 f t in_progress_pay 958 114 +3623 2025-10-10 23:29:15.307419+00 2025-10-10 23:29:15.307427+00 f t Confirmado 958 \N +3624 2025-10-10 23:29:15.270385+00 2025-10-10 23:29:15.270394+00 f t payed 958 114 +3625 2025-10-10 23:37:26.965933+00 2025-10-10 23:37:26.965941+00 f t pending 959 \N +3626 2025-10-10 23:38:17.603526+00 2025-10-10 23:38:17.603535+00 f t in_progress_vet 959 114 +3627 2025-10-10 23:39:14.727822+00 2025-10-10 23:39:14.72783+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 16:00:00 959 114 +3628 2025-10-10 23:39:40.872538+00 2025-10-10 23:39:40.872547+00 f t vet_asked Veterinario asignado: di Risio Daniela 959 114 +3629 2025-10-10 23:39:43.96123+00 2025-10-10 23:39:43.961238+00 f t vet_accepted 959 114 +3630 2025-10-10 23:39:43.973084+00 2025-10-10 23:39:43.973093+00 f t in_progress_pay 959 114 +3631 2025-10-10 23:40:24.328612+00 2025-10-10 23:40:24.32862+00 f t Confirmado 959 \N +3632 2025-10-10 23:40:24.296725+00 2025-10-10 23:40:24.296734+00 f t payed 959 114 +3633 2025-10-10 23:43:24.550876+00 2025-10-10 23:43:24.550886+00 f t pending 960 \N +3634 2025-10-10 23:43:47.267124+00 2025-10-10 23:43:47.26717+00 f t in_progress_vet 960 114 +3635 2025-10-10 23:44:21.724965+00 2025-10-10 23:44:21.724976+00 f t coordinated Solicitud coordinada para 2025-10-10 a las 21:30:00 960 114 +3636 2025-10-10 23:45:09.642706+00 2025-10-10 23:45:09.642714+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 960 114 +3637 2025-10-10 23:45:11.613971+00 2025-10-10 23:45:11.61398+00 f t vet_accepted 960 114 +3638 2025-10-10 23:45:11.62502+00 2025-10-10 23:45:11.625029+00 f t in_progress_pay 960 114 +3639 2025-10-10 23:46:06.584228+00 2025-10-10 23:46:06.584237+00 f t Confirmado 960 \N +3640 2025-10-10 23:46:06.55557+00 2025-10-10 23:46:06.555577+00 f t payed 960 114 +3641 2025-10-10 23:50:12.353011+00 2025-10-10 23:50:12.353022+00 f t pending 961 \N +3642 2025-10-11 00:19:35.350287+00 2025-10-11 00:19:35.350299+00 f t pending 962 \N +3643 2025-10-11 00:58:26.635478+00 2025-10-11 00:58:26.635492+00 f t pending 963 \N +3644 2025-10-11 12:11:28.541315+00 2025-10-11 12:11:28.54133+00 f t in_progress_vet 963 1208 +3645 2025-10-11 12:11:41.697518+00 2025-10-11 12:11:41.697531+00 f t coordinated Solicitud coordinada para 2025-10-11 a las 11:00:00 963 1208 +3646 2025-10-11 12:12:37.172717+00 2025-10-11 12:12:37.172725+00 f t in_progress_vet 961 1208 +3647 2025-10-11 12:17:45.51723+00 2025-10-11 12:17:45.51724+00 f t coordinated Solicitud coordinada para 2025-10-11 a las 10:30:00 961 1208 +3648 2025-10-11 12:17:52.140318+00 2025-10-11 12:17:52.140329+00 f t coordinated Solicitud coordinada para 2025-10-11 a las 11:00:00 961 1208 +3649 2025-10-11 12:22:30.41956+00 2025-10-11 12:22:30.419569+00 f t in_progress_vet 962 1208 +3650 2025-10-11 12:28:56.001788+00 2025-10-11 12:28:56.001799+00 f t coordinated Solicitud coordinada para 2025-10-11 a las 12:00:00 962 1208 +3651 2025-10-11 12:34:44.847171+00 2025-10-11 12:34:44.84718+00 f t vet_accepted 961 132 +3652 2025-10-11 12:34:44.858348+00 2025-10-11 12:34:44.858358+00 f t in_progress_pay 961 132 +3653 2025-10-11 12:48:20.272151+00 2025-10-11 12:48:20.272161+00 f t vet_accepted 962 116 +3654 2025-10-11 12:48:20.286015+00 2025-10-11 12:48:20.286024+00 f t in_progress_pay 962 116 +3655 2025-10-11 13:23:46.494373+00 2025-10-11 13:23:46.494387+00 f t rejected D-Emergencia 961 1208 +3656 2025-10-11 13:26:57.59365+00 2025-10-11 13:26:57.59366+00 f t Confirmado 962 \N +3657 2025-10-11 13:26:57.562375+00 2025-10-11 13:26:57.562386+00 f t payed 962 1208 +3658 2025-10-11 15:01:20.860619+00 2025-10-11 15:01:20.861182+00 f t rejected D-Tiempo de respuestas 963 1208 +3659 2025-10-11 18:33:39.805828+00 2025-10-11 18:33:39.805845+00 f t pending 964 \N +3660 2025-10-11 18:34:03.110858+00 2025-10-11 18:34:03.110873+00 f t in_progress_vet 964 1208 +3661 2025-10-11 18:34:11.533137+00 2025-10-11 18:34:11.533146+00 f t coordinated Solicitud coordinada para 2025-10-11 a las 19:00:00 964 1208 +3662 2025-10-11 18:35:47.018073+00 2025-10-11 18:35:47.018082+00 f t vet_asked Veterinario asignado: Burgess Clínica 964 1208 +3663 2025-10-11 18:36:00.777054+00 2025-10-11 18:36:00.777067+00 f t Confirmado 964 \N +3664 2025-10-11 18:36:00.73879+00 2025-10-11 18:36:00.7388+00 f t payed 964 1208 +3665 2025-10-11 19:28:29.80193+00 2025-10-11 19:28:29.801942+00 f t pending 965 \N +3666 2025-10-11 19:29:00.316334+00 2025-10-11 19:29:00.316343+00 f t in_progress_vet 965 1208 +3667 2025-10-11 19:29:17.089507+00 2025-10-11 19:29:17.089515+00 f t coordinated Solicitud coordinada para 2025-10-12 a las 17:00:00 965 1208 +3668 2025-10-11 19:29:43.889698+00 2025-10-11 19:29:43.889705+00 f t coordinated Solicitud coordinada para 2025-10-12 a las 17:00:00 965 1208 +3669 2025-10-11 19:33:40.413994+00 2025-10-11 19:33:40.414009+00 f t vet_accepted 965 138 +3670 2025-10-11 19:33:40.425868+00 2025-10-11 19:33:40.425878+00 f t in_progress_pay 965 138 +3671 2025-10-11 20:19:26.271927+00 2025-10-11 20:19:26.271936+00 f t Confirmado 965 \N +3672 2025-10-11 20:19:26.2431+00 2025-10-11 20:19:26.24311+00 f t payed 965 1208 +3673 2025-10-11 22:38:59.110144+00 2025-10-11 22:38:59.110154+00 f t pending 966 \N +3674 2025-10-12 12:44:58.073675+00 2025-10-12 12:44:58.073685+00 f t pending 967 \N +3675 2025-10-12 12:48:01.477646+00 2025-10-12 12:48:01.47766+00 f t in_progress_vet 967 114 +3676 2025-10-12 12:48:13.561205+00 2025-10-12 12:48:13.561214+00 f t coordinated Solicitud coordinada para 2025-10-12 a las 12:00:00 967 114 +3677 2025-10-12 12:48:22.658981+00 2025-10-12 12:48:22.658992+00 f t vet_asked Veterinario asignado: Christophersen Ana 967 114 +3678 2025-10-12 18:53:12.272558+00 2025-10-12 18:53:12.272568+00 f t pending 968 \N +3679 2025-10-12 18:56:13.521896+00 2025-10-12 18:56:13.521908+00 f t rejected D-Emergencia 966 114 +3680 2025-10-12 19:04:39.56853+00 2025-10-12 19:04:39.568539+00 f t pending 969 \N +3681 2025-10-12 19:05:01.013329+00 2025-10-12 19:05:01.013339+00 f t in_progress_vet 969 114 +3682 2025-10-12 19:05:26.218375+00 2025-10-12 19:05:26.218384+00 f t coordinated Solicitud coordinada para 2025-10-12 a las 16:00:00 969 114 +3683 2025-10-12 19:10:31.180264+00 2025-10-12 19:10:31.180275+00 f t vet_asked Veterinario asignado: Gilbert Javier 967 114 +3684 2025-10-12 19:10:32.110013+00 2025-10-12 19:10:32.110023+00 f t vet_accepted 967 114 +3685 2025-10-12 19:10:32.124189+00 2025-10-12 19:10:32.124199+00 f t in_progress_pay 967 114 +3686 2025-10-12 19:11:25.815753+00 2025-10-12 19:11:25.815762+00 f t Confirmado 967 \N +3687 2025-10-12 19:11:25.785117+00 2025-10-12 19:11:25.785191+00 f t payed 967 114 +3688 2025-10-12 19:11:44.924929+00 2025-10-12 19:11:44.924938+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 969 114 +3689 2025-10-12 19:11:46.061085+00 2025-10-12 19:11:46.061095+00 f t vet_accepted 969 114 +3690 2025-10-12 19:11:46.073849+00 2025-10-12 19:11:46.073861+00 f t in_progress_pay 969 114 +3691 2025-10-12 19:14:31.588555+00 2025-10-12 19:14:31.588568+00 f t Confirmado 969 \N +3692 2025-10-12 19:14:31.557908+00 2025-10-12 19:14:31.557918+00 f t payed 969 114 +3693 2025-10-12 19:14:58.875867+00 2025-10-12 19:14:58.875875+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 18:00:00 968 114 +3694 2025-10-12 19:15:32.44839+00 2025-10-12 19:15:32.448399+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 968 114 +3695 2025-10-12 19:25:44.804984+00 2025-10-12 19:25:44.804994+00 f t vet_asked Veterinario asignado: Castro Guadalupe 968 114 +3696 2025-10-12 19:26:30.545155+00 2025-10-12 19:26:30.545166+00 f t vet_accepted 968 1774 +3697 2025-10-12 19:26:30.555927+00 2025-10-12 19:26:30.555936+00 f t in_progress_pay 968 1774 +3698 2025-10-12 19:32:40.876761+00 2025-10-12 19:32:40.876769+00 f t pending 970 \N +3699 2025-10-12 19:32:56.95297+00 2025-10-12 19:32:56.952981+00 f t in_progress_vet 970 114 +3700 2025-10-12 19:33:20.045739+00 2025-10-12 19:33:20.045748+00 f t coordinated Solicitud coordinada para 2025-10-12 a las 15:00:00 970 114 +3701 2025-10-12 19:33:37.048706+00 2025-10-12 19:33:37.04872+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 970 114 +3702 2025-10-12 19:33:37.914334+00 2025-10-12 19:33:37.914346+00 f t vet_accepted 970 114 +3703 2025-10-12 19:33:37.934799+00 2025-10-12 19:33:37.934812+00 f t in_progress_pay 970 114 +3704 2025-10-12 19:44:59.24874+00 2025-10-12 19:44:59.248748+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 18:00:00 968 114 +3705 2025-10-12 19:48:43.586692+00 2025-10-12 19:48:43.586701+00 f t vet_asked Veterinario asignado: Castro Guadalupe 968 114 +3706 2025-10-12 19:48:44.531906+00 2025-10-12 19:48:44.531919+00 f t vet_accepted 968 114 +3707 2025-10-12 19:48:44.544336+00 2025-10-12 19:48:44.544348+00 f t in_progress_pay 968 114 +3708 2025-10-12 19:49:20.162586+00 2025-10-12 19:49:20.162598+00 f t Confirmado 968 \N +3709 2025-10-12 19:49:20.129437+00 2025-10-12 19:49:20.129449+00 f t payed 968 114 +3710 2025-10-12 19:54:26.728859+00 2025-10-12 19:54:26.728869+00 f t pending 971 \N +3711 2025-10-12 19:55:11.646389+00 2025-10-12 19:55:11.646399+00 f t pending 972 \N +3712 2025-10-12 19:56:09.914934+00 2025-10-12 19:56:09.914942+00 f t in_progress_vet 971 114 +3713 2025-10-12 19:57:18.050298+00 2025-10-12 19:57:18.050307+00 f t coordinated Solicitud coordinada para 2025-10-12 a las 14:00:00 971 114 +3714 2025-10-12 19:57:32.953213+00 2025-10-12 19:57:32.953226+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 971 114 +3715 2025-10-12 19:57:33.569619+00 2025-10-12 19:57:33.569628+00 f t vet_accepted 971 114 +3716 2025-10-12 19:57:33.58722+00 2025-10-12 19:57:33.587228+00 f t in_progress_pay 971 114 +3717 2025-10-12 19:58:08.20993+00 2025-10-12 19:58:08.209941+00 f t Confirmado 971 \N +3718 2025-10-12 19:58:08.178631+00 2025-10-12 19:58:08.178643+00 f t payed 971 114 +3719 2025-10-12 19:58:21.062226+00 2025-10-12 19:58:21.062237+00 f t in_progress_vet 972 114 +3720 2025-10-12 19:58:47.691515+00 2025-10-12 19:58:47.691524+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 14:00:00 972 114 +3721 2025-10-12 19:59:54.605813+00 2025-10-12 19:59:54.605826+00 f t payed 972 114 +3722 2025-10-12 20:00:08.717195+00 2025-10-12 20:00:08.717211+00 f t Confirmado 972 \N +3723 2025-10-12 20:00:10.756596+00 2025-10-12 20:00:10.756611+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 972 114 +3724 2025-10-12 20:00:11.151744+00 2025-10-12 20:00:11.151755+00 f t vet_accepted 972 114 +3725 2025-10-12 20:07:19.621797+00 2025-10-12 20:07:19.621808+00 f t pending 973 \N +3726 2025-10-12 20:07:42.192197+00 2025-10-12 20:07:42.192206+00 f t in_progress_vet 973 114 +3727 2025-10-12 20:08:50.543057+00 2025-10-12 20:08:50.543066+00 f t coordinated Solicitud coordinada para 2025-10-12 a las 18:30:00 973 114 +3728 2025-10-12 20:09:19.846159+00 2025-10-12 20:09:19.846168+00 f t vet_asked Veterinario asignado: Palladino Martín 973 114 +3729 2025-10-12 20:09:20.944284+00 2025-10-12 20:09:20.944293+00 f t vet_accepted 973 114 +3730 2025-10-12 20:09:20.957532+00 2025-10-12 20:09:20.957545+00 f t in_progress_pay 973 114 +3731 2025-10-12 20:13:36.603751+00 2025-10-12 20:13:36.60376+00 f t Confirmado 973 \N +3732 2025-10-12 20:13:36.570731+00 2025-10-12 20:13:36.57074+00 f t payed 973 114 +3733 2025-10-12 20:17:01.168414+00 2025-10-12 20:17:01.168425+00 f t pending 974 \N +3734 2025-10-12 20:17:26.873197+00 2025-10-12 20:17:26.873205+00 f t in_progress_vet 974 114 +3735 2025-10-12 20:17:52.312922+00 2025-10-12 20:17:52.312929+00 f t coordinated Solicitud coordinada para 2025-10-12 a las 13:00:00 974 114 +3736 2025-10-12 20:19:29.872305+00 2025-10-12 20:19:29.872314+00 f t vet_asked Veterinario asignado: Gilbert Javier 974 114 +3737 2025-10-12 20:19:32.319429+00 2025-10-12 20:19:32.319437+00 f t vet_accepted 974 114 +3738 2025-10-12 20:19:32.329476+00 2025-10-12 20:19:32.329485+00 f t in_progress_pay 974 114 +3739 2025-10-12 20:19:53.099454+00 2025-10-12 20:19:53.099463+00 f t vet_asked Veterinario asignado: Gilbert Javier 974 114 +3740 2025-10-12 20:19:53.988703+00 2025-10-12 20:19:53.988713+00 f t vet_accepted 974 114 +3741 2025-10-12 20:19:54.001897+00 2025-10-12 20:19:54.001906+00 f t in_progress_pay 974 114 +3742 2025-10-12 20:20:24.217863+00 2025-10-12 20:20:24.217871+00 f t Confirmado 974 \N +3743 2025-10-12 20:20:24.191348+00 2025-10-12 20:20:24.191357+00 f t payed 974 114 +3744 2025-10-12 20:24:09.008457+00 2025-10-12 20:24:09.008465+00 f t pending 975 \N +3745 2025-10-12 20:24:42.590104+00 2025-10-12 20:24:42.590111+00 f t in_progress_vet 975 114 +3746 2025-10-12 20:25:12.656962+00 2025-10-12 20:25:12.656973+00 f t coordinated Solicitud coordinada para 2025-10-12 a las 17:30:00 975 114 +3747 2025-10-12 20:25:23.805005+00 2025-10-12 20:25:23.805014+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 975 114 +3748 2025-10-12 20:25:33.25541+00 2025-10-12 20:25:33.255423+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 975 114 +3749 2025-10-12 20:25:34.269762+00 2025-10-12 20:25:34.269772+00 f t vet_accepted 975 114 +3750 2025-10-12 20:25:34.281558+00 2025-10-12 20:25:34.281567+00 f t in_progress_pay 975 114 +3751 2025-10-12 20:27:05.869381+00 2025-10-12 20:27:05.86939+00 f t Confirmado 975 \N +3752 2025-10-12 20:27:05.84105+00 2025-10-12 20:27:05.841059+00 f t payed 975 114 +3753 2025-10-12 20:31:01.389565+00 2025-10-12 20:31:01.389576+00 f t pending 976 \N +3754 2025-10-12 20:33:38.679814+00 2025-10-12 20:33:38.679822+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 18:30:00 976 114 +3755 2025-10-12 20:33:43.759809+00 2025-10-12 20:33:43.759819+00 f t vet_asked Veterinario asignado: di Risio Daniela 976 114 +3756 2025-10-12 20:33:46.113992+00 2025-10-12 20:33:46.114005+00 f t vet_accepted 976 114 +3757 2025-10-12 20:33:46.13658+00 2025-10-12 20:33:46.136594+00 f t in_progress_pay 976 114 +3758 2025-10-12 20:34:27.48438+00 2025-10-12 20:34:27.484389+00 f t Confirmado 976 \N +3759 2025-10-12 20:34:27.455+00 2025-10-12 20:34:27.455008+00 f t payed 976 114 +3760 2025-10-12 20:35:03.604884+00 2025-10-12 20:35:03.6049+00 f t pending 977 \N +3761 2025-10-12 20:35:11.044634+00 2025-10-12 20:35:11.044643+00 f t in_progress_vet 977 114 +3762 2025-10-12 20:35:57.354598+00 2025-10-12 20:35:57.354607+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 08:00:00 977 114 +3763 2025-10-12 20:37:39.596061+00 2025-10-12 20:37:39.59607+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 977 114 +3764 2025-10-12 20:37:40.762218+00 2025-10-12 20:37:40.762227+00 f t vet_accepted 977 114 +3765 2025-10-12 20:37:40.773639+00 2025-10-12 20:37:40.773648+00 f t in_progress_pay 977 114 +3766 2025-10-12 20:38:58.573412+00 2025-10-12 20:38:58.57342+00 f t Confirmado 977 \N +3767 2025-10-12 20:38:58.538443+00 2025-10-12 20:38:58.538452+00 f t payed 977 114 +3768 2025-10-12 21:37:32.059455+00 2025-10-12 21:37:32.059464+00 f t pending 978 \N +3769 2025-10-13 04:46:20.314088+00 2025-10-13 04:46:20.314103+00 f t pending 979 \N +3770 2025-10-13 04:47:14.082977+00 2025-10-13 04:47:14.082987+00 f t pending 980 \N +3771 2025-10-13 12:04:50.659675+00 2025-10-13 12:04:50.659684+00 f t pending 981 \N +3772 2025-10-13 12:11:37.823205+00 2025-10-13 12:11:37.823214+00 f t in_progress_vet 978 1583 +3773 2025-10-13 12:11:48.058107+00 2025-10-13 12:11:48.058116+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 11:00:00 978 1583 +3774 2025-10-13 12:12:50.819412+00 2025-10-13 12:12:50.819426+00 f t in_progress_vet 979 1583 +3775 2025-10-13 12:13:14.480612+00 2025-10-13 12:13:14.48062+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 12:00:00 979 1583 +3776 2025-10-13 12:15:55.600024+00 2025-10-13 12:15:55.600035+00 f t in_progress_vet 981 1583 +3777 2025-10-13 12:16:08.614376+00 2025-10-13 12:16:08.614387+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 12:00:00 981 1583 +3778 2025-10-13 12:48:31.913857+00 2025-10-13 12:48:31.913871+00 f t pending 982 \N +3779 2025-10-13 12:48:45.694071+00 2025-10-13 12:48:45.694084+00 f t in_progress_vet 982 1583 +3780 2025-10-13 12:48:53.066316+00 2025-10-13 12:48:53.066326+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 12:00:00 982 1583 +3781 2025-10-13 13:10:15.4116+00 2025-10-13 13:10:15.41161+00 f t pending 983 \N +3782 2025-10-13 13:10:38.552808+00 2025-10-13 13:10:38.552819+00 f t in_progress_vet 983 1583 +3783 2025-10-13 13:10:46.652855+00 2025-10-13 13:10:46.652863+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 09:00:00 983 1583 +3784 2025-10-13 13:11:10.730543+00 2025-10-13 13:11:10.730555+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 983 1583 +3785 2025-10-13 13:12:03.316866+00 2025-10-13 13:12:03.316877+00 f t Confirmado 983 \N +3786 2025-10-13 13:12:03.277708+00 2025-10-13 13:12:03.277719+00 f t payed 983 1583 +3787 2025-10-13 13:23:50.182745+00 2025-10-13 13:23:50.182754+00 f t vet_asked Veterinario asignado: Ponce Lisandro 981 1583 +3788 2025-10-13 13:26:16.554572+00 2025-10-13 13:26:16.554582+00 f t vet_asked Veterinario asignado: Ponce Lisandro 981 1583 +3789 2025-10-13 13:26:17.232466+00 2025-10-13 13:26:17.232475+00 f t vet_accepted 981 1583 +3790 2025-10-13 13:26:17.244038+00 2025-10-13 13:26:17.244047+00 f t in_progress_pay 981 1583 +3791 2025-10-13 13:27:04.382012+00 2025-10-13 13:27:04.382021+00 f t Confirmado 981 \N +3792 2025-10-13 13:27:04.346063+00 2025-10-13 13:27:04.346072+00 f t payed 981 1583 +3793 2025-10-13 13:43:54.669884+00 2025-10-13 13:43:54.669897+00 f t pending 984 \N +3794 2025-10-13 13:44:11.736731+00 2025-10-13 13:44:11.736749+00 f t in_progress_vet 984 1583 +3795 2025-10-13 13:44:19.753461+00 2025-10-13 13:44:19.753474+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 16:00:00 984 1583 +3796 2025-10-13 14:01:47.027545+00 2025-10-13 14:01:47.027556+00 f t pending 985 \N +3797 2025-10-13 14:01:59.291362+00 2025-10-13 14:01:59.291373+00 f t in_progress_vet 985 1583 +3798 2025-10-13 14:02:04.7123+00 2025-10-13 14:02:04.712311+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 09:00:00 985 1583 +3959 2025-10-14 14:37:25.540952+00 2025-10-14 14:37:25.54096+00 f t vet_accepted 1004 1208 +3799 2025-10-13 14:02:13.966213+00 2025-10-13 14:02:13.966221+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 985 1583 +3800 2025-10-13 14:02:18.444629+00 2025-10-13 14:02:18.444637+00 f t vet_accepted 985 1583 +3801 2025-10-13 14:02:18.458589+00 2025-10-13 14:02:18.4586+00 f t in_progress_pay 985 1583 +3802 2025-10-13 14:03:09.717201+00 2025-10-13 14:03:09.717209+00 f t Confirmado 985 \N +3803 2025-10-13 14:03:09.681913+00 2025-10-13 14:03:09.681924+00 f t payed 985 1583 +3804 2025-10-13 14:09:07.81401+00 2025-10-13 14:09:07.81402+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 982 1583 +3805 2025-10-13 14:09:08.993017+00 2025-10-13 14:09:08.993027+00 f t vet_accepted 982 1583 +3806 2025-10-13 14:09:09.005653+00 2025-10-13 14:09:09.005664+00 f t in_progress_pay 982 1583 +3807 2025-10-13 14:09:17.624135+00 2025-10-13 14:09:17.624143+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 14:00:00 982 1583 +3808 2025-10-13 14:09:26.222097+00 2025-10-13 14:09:26.222105+00 f t Confirmado 982 \N +3809 2025-10-13 14:09:26.196574+00 2025-10-13 14:09:26.196584+00 f t payed 982 1583 +3810 2025-10-13 14:14:20.278429+00 2025-10-13 14:14:20.278439+00 f t pending 986 \N +3811 2025-10-13 14:29:51.603534+00 2025-10-13 14:29:51.603543+00 f t pending 987 \N +3812 2025-10-13 14:30:07.715734+00 2025-10-13 14:30:07.715743+00 f t in_progress_vet 987 1583 +3813 2025-10-13 14:30:15.310714+00 2025-10-13 14:30:15.310723+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 09:00:00 987 1583 +3814 2025-10-13 14:37:07.408502+00 2025-10-13 14:37:07.408511+00 f t pending 988 \N +3815 2025-10-13 14:37:17.906252+00 2025-10-13 14:37:17.906264+00 f t in_progress_vet 988 1583 +3816 2025-10-13 14:37:25.29208+00 2025-10-13 14:37:25.292087+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 09:00:00 988 1583 +3817 2025-10-13 14:39:45.044981+00 2025-10-13 14:39:45.044989+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 09:00:00 988 1583 +3818 2025-10-13 14:41:26.35817+00 2025-10-13 14:41:26.35818+00 f t pending 989 \N +3819 2025-10-13 14:41:55.401731+00 2025-10-13 14:41:55.401741+00 f t in_progress_vet 989 1583 +3820 2025-10-13 14:42:12.742204+00 2025-10-13 14:42:12.742217+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 14:00:00 989 1583 +3821 2025-10-13 14:53:03.6706+00 2025-10-13 14:53:03.670612+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 18:00:00 989 1583 +3822 2025-10-13 14:53:51.097232+00 2025-10-13 14:53:51.097245+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 989 1583 +3823 2025-10-13 14:53:51.700872+00 2025-10-13 14:53:51.700881+00 f t vet_accepted 989 1583 +3824 2025-10-13 14:53:51.715571+00 2025-10-13 14:53:51.715585+00 f t in_progress_pay 989 1583 +3825 2025-10-13 14:54:30.623109+00 2025-10-13 14:54:30.623122+00 f t Confirmado 989 \N +3826 2025-10-13 14:54:30.581741+00 2025-10-13 14:54:30.581751+00 f t payed 989 1583 +3827 2025-10-13 14:56:45.066312+00 2025-10-13 14:56:45.066322+00 f t pending 990 \N +3828 2025-10-13 14:59:11.083566+00 2025-10-13 14:59:11.083575+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 18:00:00 987 1583 +3829 2025-10-13 14:59:56.718407+00 2025-10-13 14:59:56.71842+00 f t vet_asked Veterinario asignado: Palladino Martín 987 1583 +3830 2025-10-13 14:59:57.363481+00 2025-10-13 14:59:57.363494+00 f t vet_accepted 987 1583 +3831 2025-10-13 14:59:57.380978+00 2025-10-13 14:59:57.38099+00 f t in_progress_pay 987 1583 +3832 2025-10-13 15:00:11.661678+00 2025-10-13 15:00:11.661692+00 f t Confirmado 987 \N +3833 2025-10-13 15:00:11.598569+00 2025-10-13 15:00:11.598585+00 f t payed 987 1583 +3834 2025-10-13 15:19:58.127555+00 2025-10-13 15:19:58.127565+00 f t pending 991 \N +3835 2025-10-13 15:20:24.139749+00 2025-10-13 15:20:24.139761+00 f t in_progress_vet 991 1583 +3836 2025-10-13 15:20:29.746497+00 2025-10-13 15:20:29.746505+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 15:00:00 991 1583 +3837 2025-10-13 15:23:34.836284+00 2025-10-13 15:23:34.836295+00 f t pending 992 \N +3838 2025-10-13 15:23:51.203091+00 2025-10-13 15:23:51.203098+00 f t in_progress_vet 992 1583 +3839 2025-10-13 15:23:57.46363+00 2025-10-13 15:23:57.463638+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 16:00:00 992 1583 +3840 2025-10-13 15:23:59.888646+00 2025-10-13 15:23:59.888658+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 992 1583 +3841 2025-10-13 15:29:53.766665+00 2025-10-13 15:29:53.766676+00 f t in_progress_vet 990 1583 +3842 2025-10-13 15:30:01.691204+00 2025-10-13 15:30:01.691216+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 16:00:00 990 1583 +3843 2025-10-13 15:35:09.883779+00 2025-10-13 15:35:09.883791+00 f t vet_accepted 990 134 +3844 2025-10-13 15:35:09.900293+00 2025-10-13 15:35:09.900306+00 f t in_progress_pay 990 134 +3845 2025-10-13 15:36:29.989722+00 2025-10-13 15:36:29.989731+00 f t vet_accepted 991 1774 +3846 2025-10-13 15:36:30.002691+00 2025-10-13 15:36:30.002701+00 f t in_progress_pay 991 1774 +3847 2025-10-13 15:38:21.963663+00 2025-10-13 15:38:21.963672+00 f t vet_asked Veterinario asignado: Palladino Martín 992 1583 +3848 2025-10-13 15:38:22.676743+00 2025-10-13 15:38:22.676752+00 f t vet_accepted 992 1583 +3849 2025-10-13 15:38:22.689489+00 2025-10-13 15:38:22.689499+00 f t in_progress_pay 992 1583 +3850 2025-10-13 15:39:02.832149+00 2025-10-13 15:39:02.832168+00 f t Confirmado 992 \N +3851 2025-10-13 15:39:02.746184+00 2025-10-13 15:39:02.746198+00 f t payed 992 1583 +3852 2025-10-13 15:54:54.117126+00 2025-10-13 15:54:54.117135+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 14:00:00 990 1583 +3853 2025-10-13 15:55:10.1203+00 2025-10-13 15:55:10.120314+00 f t vet_asked Veterinario asignado: Ponce Lisandro 990 1583 +3854 2025-10-13 15:55:10.76677+00 2025-10-13 15:55:10.766784+00 f t vet_accepted 990 1583 +3855 2025-10-13 15:55:10.786605+00 2025-10-13 15:55:10.786619+00 f t in_progress_pay 990 1583 +3856 2025-10-13 15:56:50.696049+00 2025-10-13 15:56:50.696062+00 f t Confirmado 990 \N +3857 2025-10-13 15:56:50.639691+00 2025-10-13 15:56:50.639701+00 f t payed 990 1583 +3858 2025-10-13 16:19:12.668357+00 2025-10-13 16:19:12.668368+00 f t pending 993 \N +3859 2025-10-13 16:19:49.004758+00 2025-10-13 16:19:49.004769+00 f t in_progress_vet 993 1583 +3860 2025-10-13 16:19:58.268148+00 2025-10-13 16:19:58.268157+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 18:00:00 993 1583 +3861 2025-10-13 16:20:14.874794+00 2025-10-13 16:20:14.874803+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 993 1583 +3862 2025-10-13 16:20:15.598518+00 2025-10-13 16:20:15.598527+00 f t vet_accepted 993 1583 +3863 2025-10-13 16:20:15.609956+00 2025-10-13 16:20:15.609968+00 f t in_progress_pay 993 1583 +3864 2025-10-13 16:24:29.102995+00 2025-10-13 16:24:29.103008+00 f t Confirmado 993 \N +3865 2025-10-13 16:24:29.059877+00 2025-10-13 16:24:29.059885+00 f t payed 993 1583 +3866 2025-10-13 16:47:03.185066+00 2025-10-13 16:47:03.185077+00 f t pending 994 \N +3867 2025-10-13 16:47:03.188332+00 2025-10-13 16:47:03.188342+00 f t pending 995 \N +3868 2025-10-13 16:47:31.389503+00 2025-10-13 16:47:31.389511+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 18:00:00 995 1583 +3869 2025-10-13 16:47:38.167604+00 2025-10-13 16:47:38.167614+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 18:00:00 995 1583 +3870 2025-10-13 16:49:25.437977+00 2025-10-13 16:49:25.437987+00 f t in_progress_vet 986 1583 +3871 2025-10-13 16:49:32.844149+00 2025-10-13 16:49:32.844158+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 20:00:00 986 1583 +3872 2025-10-13 16:52:45.154409+00 2025-10-13 16:52:45.154418+00 f t in_progress_vet 994 1583 +3873 2025-10-13 16:53:07.626345+00 2025-10-13 16:53:07.626354+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 18:00:00 994 1583 +3874 2025-10-13 16:57:01.533113+00 2025-10-13 16:57:01.533125+00 f t vet_asked Veterinario asignado: di Risio Daniela 984 1583 +3875 2025-10-13 16:57:02.193578+00 2025-10-13 16:57:02.19359+00 f t vet_accepted 984 1583 +3876 2025-10-13 16:57:02.210136+00 2025-10-13 16:57:02.210149+00 f t in_progress_pay 984 1583 +3877 2025-10-13 16:57:15.059729+00 2025-10-13 16:57:15.059738+00 f t Confirmado 984 \N +3878 2025-10-13 16:57:15.022453+00 2025-10-13 16:57:15.022467+00 f t payed 984 1583 +3879 2025-10-13 17:48:37.394562+00 2025-10-13 17:48:37.394571+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 12:30:00 986 1583 +3880 2025-10-13 17:48:49.118676+00 2025-10-13 17:48:49.118685+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 986 1583 +3881 2025-10-13 17:48:49.8175+00 2025-10-13 17:48:49.81751+00 f t vet_accepted 986 1583 +3882 2025-10-13 17:48:49.830293+00 2025-10-13 17:48:49.830307+00 f t in_progress_pay 986 1583 +3883 2025-10-13 17:49:13.709278+00 2025-10-13 17:49:13.709287+00 f t Confirmado 986 \N +3884 2025-10-13 17:49:13.665108+00 2025-10-13 17:49:13.665121+00 f t payed 986 1583 +3885 2025-10-13 18:30:51.609672+00 2025-10-13 18:30:51.609683+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 18:30:00 976 1583 +3886 2025-10-13 18:30:55.679421+00 2025-10-13 18:30:55.679431+00 f t vet_asked Veterinario asignado: di Risio Daniela 976 1583 +3887 2025-10-13 18:30:56.332405+00 2025-10-13 18:30:56.332416+00 f t vet_accepted 976 1583 +3888 2025-10-13 18:48:00.270371+00 2025-10-13 18:48:00.27038+00 f t payed 994 1583 +3889 2025-10-13 18:48:37.507669+00 2025-10-13 18:48:37.507682+00 f t Confirmado 994 \N +3890 2025-10-13 18:48:38.924459+00 2025-10-13 18:48:38.92447+00 f t vet_asked Veterinario asignado: Ponce Lisandro 994 1583 +3891 2025-10-13 18:48:39.669644+00 2025-10-13 18:48:39.669657+00 f t vet_accepted 994 1583 +3892 2025-10-13 18:48:45.867081+00 2025-10-13 18:48:45.86709+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 19:00:00 994 1583 +3893 2025-10-13 18:59:04.075345+00 2025-10-13 18:59:04.075357+00 f t pending 996 \N +3894 2025-10-13 18:59:22.363012+00 2025-10-13 18:59:22.363025+00 f t in_progress_vet 996 1583 +3895 2025-10-13 18:59:28.399327+00 2025-10-13 18:59:28.399336+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 18:30:00 996 1583 +3896 2025-10-13 18:59:31.722781+00 2025-10-13 18:59:31.722793+00 f t vet_asked Veterinario asignado: Campo Silvia 996 1583 +3897 2025-10-13 18:59:45.599683+00 2025-10-13 18:59:45.599695+00 f t vet_accepted 944 122 +3898 2025-10-13 18:59:45.616652+00 2025-10-13 18:59:45.616665+00 f t in_progress_pay 944 122 +3899 2025-10-13 18:59:55.214495+00 2025-10-13 18:59:55.214505+00 f t vet_asked Veterinario asignado: di Risio Daniela 996 1583 +3900 2025-10-13 18:59:56.738716+00 2025-10-13 18:59:56.738726+00 f t vet_accepted 996 1583 +3901 2025-10-13 18:59:56.750704+00 2025-10-13 18:59:56.750715+00 f t in_progress_pay 996 1583 +3902 2025-10-13 19:00:10.883876+00 2025-10-13 19:00:10.883893+00 f t payed 996 1583 +3903 2025-10-13 19:55:11.321149+00 2025-10-13 19:55:11.321159+00 f t pending 997 \N +3904 2025-10-13 19:56:48.470271+00 2025-10-13 19:56:48.470281+00 f t in_progress_vet 997 1583 +3905 2025-10-13 19:56:55.394149+00 2025-10-13 19:56:55.394157+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 18:30:00 997 1583 +3906 2025-10-13 19:57:06.767126+00 2025-10-13 19:57:06.767156+00 f t vet_asked Veterinario asignado: Levisman Damián 997 1583 +3907 2025-10-13 19:57:08.410363+00 2025-10-13 19:57:08.410375+00 f t vet_accepted 997 1583 +3908 2025-10-13 19:57:08.427264+00 2025-10-13 19:57:08.427276+00 f t in_progress_pay 997 1583 +3909 2025-10-13 20:18:57.215505+00 2025-10-13 20:18:57.215515+00 f t payed 995 1583 +3910 2025-10-13 20:19:18.146398+00 2025-10-13 20:19:18.146412+00 f t Confirmado 995 \N +3911 2025-10-13 20:19:19.898212+00 2025-10-13 20:19:19.898225+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 995 1583 +3912 2025-10-13 20:19:21.110412+00 2025-10-13 20:19:21.110422+00 f t vet_accepted 995 1583 +3913 2025-10-13 20:27:39.752479+00 2025-10-13 20:27:39.752488+00 f t Confirmado 997 \N +3914 2025-10-13 20:27:39.720551+00 2025-10-13 20:27:39.720562+00 f t payed 997 1583 +3915 2025-10-13 23:52:43.01147+00 2025-10-13 23:52:43.011479+00 f t pending 998 \N +3916 2025-10-13 23:53:15.348906+00 2025-10-13 23:53:15.348915+00 f t in_progress_vet 998 114 +3917 2025-10-13 23:53:59.03392+00 2025-10-13 23:53:59.033928+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 14:00:00 998 114 +3918 2025-10-13 23:56:08.916455+00 2025-10-13 23:56:08.916466+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 998 114 +3919 2025-10-13 23:56:10.061527+00 2025-10-13 23:56:10.061536+00 f t vet_accepted 998 114 +3920 2025-10-13 23:56:10.074223+00 2025-10-13 23:56:10.074233+00 f t in_progress_pay 998 114 +3921 2025-10-13 23:56:22.19836+00 2025-10-13 23:56:22.19837+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 998 114 +3922 2025-10-13 23:56:28.153151+00 2025-10-13 23:56:28.153159+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 998 114 +3923 2025-10-13 23:56:29.257029+00 2025-10-13 23:56:29.257039+00 f t vet_accepted 998 114 +3924 2025-10-13 23:56:29.268668+00 2025-10-13 23:56:29.268679+00 f t in_progress_pay 998 114 +3925 2025-10-14 00:05:18.469355+00 2025-10-14 00:05:18.469365+00 f t pending 999 \N +3926 2025-10-14 00:05:31.283018+00 2025-10-14 00:05:31.283029+00 f t in_progress_vet 999 114 +3927 2025-10-14 00:05:53.834305+00 2025-10-14 00:05:53.834313+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 20:30:00 999 114 +3928 2025-10-14 00:06:22.683927+00 2025-10-14 00:06:22.683938+00 f t vet_asked Veterinario asignado: di Risio Daniela 999 114 +3929 2025-10-14 00:06:24.136549+00 2025-10-14 00:06:24.136558+00 f t vet_accepted 999 114 +3930 2025-10-14 00:06:24.151386+00 2025-10-14 00:06:24.151395+00 f t in_progress_pay 999 114 +3931 2025-10-14 00:06:46.814825+00 2025-10-14 00:06:46.814838+00 f t Confirmado 999 \N +3932 2025-10-14 00:06:46.779676+00 2025-10-14 00:06:46.779688+00 f t payed 999 114 +3933 2025-10-14 00:08:24.622847+00 2025-10-14 00:08:24.622861+00 f t pending 1000 \N +3934 2025-10-14 00:09:16.201904+00 2025-10-14 00:09:16.201913+00 f t in_progress_vet 1000 114 +3935 2025-10-14 00:09:39.35103+00 2025-10-14 00:09:39.351041+00 f t coordinated Solicitud coordinada para 2025-10-13 a las 20:30:00 1000 114 +3936 2025-10-14 00:10:12.259814+00 2025-10-14 00:10:12.259823+00 f t payed 1000 114 +3937 2025-10-14 00:10:26.992337+00 2025-10-14 00:10:26.992346+00 f t Confirmado 1000 \N +3938 2025-10-14 00:10:27.990737+00 2025-10-14 00:10:27.990747+00 f t vet_asked Veterinario asignado: di Risio Daniela 1000 114 +3939 2025-10-14 00:10:29.251791+00 2025-10-14 00:10:29.251804+00 f t vet_accepted 1000 114 +3940 2025-10-14 00:13:24.325928+00 2025-10-14 00:13:24.325938+00 f t pending 1001 \N +3941 2025-10-14 00:13:46.970559+00 2025-10-14 00:13:46.970572+00 f t in_progress_vet 1001 114 +3942 2025-10-14 00:14:33.577353+00 2025-10-14 00:14:33.577362+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 18:00:00 1001 114 +3943 2025-10-14 00:15:34.463818+00 2025-10-14 00:15:34.463829+00 f t payed 1001 114 +3944 2025-10-14 00:17:41.588916+00 2025-10-14 00:17:41.588928+00 f t Confirmado 1001 \N +3945 2025-10-14 00:17:42.923001+00 2025-10-14 00:17:42.923017+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1001 114 +3946 2025-10-14 00:17:44.058006+00 2025-10-14 00:17:44.058015+00 f t vet_accepted 1001 114 +3947 2025-10-14 00:48:14.525008+00 2025-10-14 00:48:14.525019+00 f t pending 1002 \N +3948 2025-10-14 12:10:03.431445+00 2025-10-14 12:10:03.431461+00 f t in_progress_vet 1002 1208 +3949 2025-10-14 13:23:41.342571+00 2025-10-14 13:23:41.342593+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 19:00:00 1002 1208 +3950 2025-10-14 13:36:44.233478+00 2025-10-14 13:36:44.233491+00 f t vet_accepted 1002 124 +3951 2025-10-14 13:36:44.247003+00 2025-10-14 13:36:44.247015+00 f t in_progress_pay 1002 124 +3952 2025-10-14 14:25:31.375095+00 2025-10-14 14:25:31.375105+00 f t pending 1003 \N +3953 2025-10-14 14:25:58.487439+00 2025-10-14 14:25:58.48745+00 f t in_progress_vet 1003 1208 +3954 2025-10-14 14:26:07.516034+00 2025-10-14 14:26:07.516043+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 10:00:00 1003 1208 +3955 2025-10-14 14:34:42.243699+00 2025-10-14 14:34:42.243714+00 f t pending 1004 \N +3956 2025-10-14 14:36:34.337223+00 2025-10-14 14:36:34.337232+00 f t in_progress_vet 1004 1208 +3957 2025-10-14 14:36:53.897795+00 2025-10-14 14:36:53.897803+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 17:30:00 1004 1208 +3958 2025-10-14 14:37:24.305492+00 2025-10-14 14:37:24.305502+00 f t vet_asked Veterinario asignado: Dubowik Katerina 1004 1208 +3960 2025-10-14 14:37:25.554109+00 2025-10-14 14:37:25.554118+00 f t in_progress_pay 1004 1208 +3961 2025-10-14 15:09:41.688526+00 2025-10-14 15:09:41.688536+00 f t pending 1005 \N +3962 2025-10-14 15:10:02.12599+00 2025-10-14 15:10:02.126004+00 f t in_progress_vet 1005 1208 +3963 2025-10-14 15:10:09.451079+00 2025-10-14 15:10:09.451087+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 19:00:00 1005 1208 +3964 2025-10-14 15:10:34.156736+00 2025-10-14 15:10:34.156746+00 f t vet_asked Veterinario asignado: Robatto Javier 1005 1208 +3965 2025-10-14 15:13:54.961166+00 2025-10-14 15:13:54.961175+00 f t Confirmado 1005 \N +3966 2025-10-14 15:13:54.926709+00 2025-10-14 15:13:54.92672+00 f t payed 1005 1208 +3967 2025-10-14 15:21:24.785045+00 2025-10-14 15:21:24.785054+00 f t rejected D-Falta de servicio 1002 1208 +3968 2025-10-14 15:52:35.168655+00 2025-10-14 15:52:35.168664+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 15:00:00 1003 1208 +3969 2025-10-14 15:53:15.406273+00 2025-10-14 15:53:15.406283+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1003 1208 +3970 2025-10-14 15:54:05.165957+00 2025-10-14 15:54:05.16597+00 f t pending 1006 \N +3971 2025-10-14 15:54:31.033841+00 2025-10-14 15:54:31.033853+00 f t in_progress_vet 1006 1583 +3972 2025-10-14 15:54:43.459663+00 2025-10-14 15:54:43.45967+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 09:30:00 1006 1583 +3973 2025-10-14 16:01:21.915884+00 2025-10-14 16:01:21.915897+00 f t Confirmado 1003 \N +3974 2025-10-14 16:01:21.873573+00 2025-10-14 16:01:21.873581+00 f t payed 1003 1208 +3975 2025-10-14 16:43:43.466086+00 2025-10-14 16:43:43.466095+00 f t pending 1007 \N +3976 2025-10-14 16:53:56.51442+00 2025-10-14 16:53:56.514432+00 f t in_progress_vet 1007 1208 +3977 2025-10-14 16:55:07.487498+00 2025-10-14 16:55:07.487508+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 13:00:00 1007 1208 +3978 2025-10-14 17:17:15.922485+00 2025-10-14 17:17:15.922496+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 09:00:00 1006 1583 +3979 2025-10-14 17:17:30.243234+00 2025-10-14 17:17:30.243246+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1006 1583 +3980 2025-10-14 17:17:31.023243+00 2025-10-14 17:17:31.023255+00 f t vet_accepted 1006 1583 +3981 2025-10-14 17:17:31.037888+00 2025-10-14 17:17:31.037896+00 f t in_progress_pay 1006 1583 +3982 2025-10-14 17:18:54.311178+00 2025-10-14 17:18:54.311187+00 f t Confirmado 1006 \N +3983 2025-10-14 17:18:54.266359+00 2025-10-14 17:18:54.266369+00 f t payed 1006 1583 +3984 2025-10-14 17:19:19.389019+00 2025-10-14 17:19:19.389028+00 f t pending 1008 \N +3985 2025-10-14 17:20:28.435898+00 2025-10-14 17:20:28.435907+00 f t in_progress_vet 1008 1583 +3986 2025-10-14 17:20:36.199629+00 2025-10-14 17:20:36.199638+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 09:30:00 1008 1583 +3987 2025-10-14 17:21:33.425819+00 2025-10-14 17:21:33.425829+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1008 1583 +3988 2025-10-14 17:21:34.09731+00 2025-10-14 17:21:34.097322+00 f t vet_accepted 1008 1583 +3989 2025-10-14 17:21:34.110742+00 2025-10-14 17:21:34.110752+00 f t in_progress_pay 1008 1583 +3990 2025-10-14 17:21:49.201005+00 2025-10-14 17:21:49.201013+00 f t Confirmado 1008 \N +3991 2025-10-14 17:21:49.172942+00 2025-10-14 17:21:49.172951+00 f t payed 1008 1583 +3992 2025-10-14 17:22:41.337103+00 2025-10-14 17:22:41.337111+00 f t pending 1009 \N +3993 2025-10-14 17:23:36.29845+00 2025-10-14 17:23:36.298458+00 f t in_progress_vet 1009 1583 +3994 2025-10-14 17:23:42.398443+00 2025-10-14 17:23:42.398451+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 10:00:00 1009 1583 +3995 2025-10-14 17:23:50.713964+00 2025-10-14 17:23:50.713973+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1009 1583 +3996 2025-10-14 17:23:51.368308+00 2025-10-14 17:23:51.368322+00 f t vet_accepted 1009 1583 +3997 2025-10-14 17:23:51.384403+00 2025-10-14 17:23:51.384415+00 f t in_progress_pay 1009 1583 +3998 2025-10-14 17:24:02.581387+00 2025-10-14 17:24:02.581398+00 f t Confirmado 1009 \N +3999 2025-10-14 17:24:02.539533+00 2025-10-14 17:24:02.539545+00 f t payed 1009 1583 +4000 2025-10-14 17:49:10.924603+00 2025-10-14 17:49:10.924611+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1007 1208 +4001 2025-10-14 17:56:32.126314+00 2025-10-14 17:56:32.126323+00 f t Confirmado 1007 \N +4002 2025-10-14 17:56:32.093565+00 2025-10-14 17:56:32.093576+00 f t payed 1007 1208 +4003 2025-10-14 18:09:16.879798+00 2025-10-14 18:09:16.879812+00 f t pending 1010 \N +4004 2025-10-14 18:10:21.725227+00 2025-10-14 18:10:21.725239+00 f t in_progress_vet 1010 1208 +4005 2025-10-14 18:12:16.67588+00 2025-10-14 18:12:16.675888+00 f t coordinated Solicitud coordinada para 2025-10-14 a las 18:00:00 1010 1208 +4006 2025-10-14 18:20:22.857768+00 2025-10-14 18:20:22.857779+00 f t rejected D-Precio 1004 1208 +4007 2025-10-14 18:26:50.135232+00 2025-10-14 18:26:50.135241+00 f t pending 1011 \N +4008 2025-10-14 18:28:16.641991+00 2025-10-14 18:28:16.642+00 f t in_progress_vet 1011 1583 +4009 2025-10-14 18:28:29.901864+00 2025-10-14 18:28:29.901872+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1010 1208 +4010 2025-10-14 18:28:34.252618+00 2025-10-14 18:28:34.252628+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 20:30:00 1011 1583 +4011 2025-10-14 18:28:54.629026+00 2025-10-14 18:28:54.629039+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1011 1583 +4012 2025-10-14 18:28:55.303283+00 2025-10-14 18:28:55.303293+00 f t vet_accepted 1011 1583 +4013 2025-10-14 18:28:55.316162+00 2025-10-14 18:28:55.316171+00 f t in_progress_pay 1011 1583 +4014 2025-10-14 18:29:17.346748+00 2025-10-14 18:29:17.346758+00 f t Confirmado 1011 \N +4015 2025-10-14 18:29:17.317858+00 2025-10-14 18:29:17.317866+00 f t payed 1011 1583 +4016 2025-10-14 18:32:02.06201+00 2025-10-14 18:32:02.062025+00 f t pending 1012 \N +4017 2025-10-14 18:32:28.458322+00 2025-10-14 18:32:28.458329+00 f t in_progress_vet 1012 1208 +4018 2025-10-14 18:32:37.666705+00 2025-10-14 18:32:37.666713+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 08:00:00 1012 1208 +4019 2025-10-14 18:32:57.724413+00 2025-10-14 18:32:57.724425+00 f t pending 1013 \N +4020 2025-10-14 18:33:11.743611+00 2025-10-14 18:33:11.743622+00 f t in_progress_vet 1013 1208 +4021 2025-10-14 18:33:19.471089+00 2025-10-14 18:33:19.471097+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 09:00:00 1013 1208 +4022 2025-10-14 18:39:18.516452+00 2025-10-14 18:39:18.516461+00 f t vet_asked Veterinario asignado: Palummo Mariana 1012 1208 +4023 2025-10-14 18:39:47.278753+00 2025-10-14 18:39:47.278761+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1013 1208 +4024 2025-10-14 18:44:02.392983+00 2025-10-14 18:44:02.392995+00 f t pending 1014 \N +4025 2025-10-14 18:44:22.169808+00 2025-10-14 18:44:22.169816+00 f t in_progress_vet 1014 1583 +4026 2025-10-14 18:44:27.242979+00 2025-10-14 18:44:27.24299+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 18:00:00 1014 1583 +4027 2025-10-14 18:44:45.812568+00 2025-10-14 18:44:45.81258+00 f t vet_asked Veterinario asignado: di Risio Daniela 1014 1583 +4028 2025-10-14 18:44:46.447982+00 2025-10-14 18:44:46.44799+00 f t vet_accepted 1014 1583 +4029 2025-10-14 18:44:46.459652+00 2025-10-14 18:44:46.459661+00 f t in_progress_pay 1014 1583 +4030 2025-10-14 18:45:51.570387+00 2025-10-14 18:45:51.570396+00 f t Confirmado 1014 \N +4031 2025-10-14 18:45:51.539809+00 2025-10-14 18:45:51.539818+00 f t payed 1014 1583 +4032 2025-10-14 18:46:36.270267+00 2025-10-14 18:46:36.270274+00 f t Confirmado 1010 \N +4033 2025-10-14 18:46:36.240982+00 2025-10-14 18:46:36.240991+00 f t payed 1010 1208 +4034 2025-10-14 18:50:29.683599+00 2025-10-14 18:50:29.683608+00 f t Confirmado 1012 \N +4035 2025-10-14 18:50:29.652458+00 2025-10-14 18:50:29.65247+00 f t payed 1012 1208 +4036 2025-10-14 18:50:42.992134+00 2025-10-14 18:50:42.992142+00 f t Confirmado 1013 \N +4037 2025-10-14 18:50:42.962773+00 2025-10-14 18:50:42.962783+00 f t payed 1013 1208 +4038 2025-10-14 20:13:38.341645+00 2025-10-14 20:13:38.341654+00 f t pending 1015 \N +4039 2025-10-14 20:14:04.258757+00 2025-10-14 20:14:04.25877+00 f t in_progress_vet 1015 1583 +4040 2025-10-14 20:15:11.214765+00 2025-10-14 20:15:11.214773+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 17:00:00 1015 1583 +4041 2025-10-14 20:47:31.517611+00 2025-10-14 20:47:31.517621+00 f t pending 1016 \N +4042 2025-10-14 20:48:03.322497+00 2025-10-14 20:48:03.32251+00 f t in_progress_vet 1016 1583 +4043 2025-10-14 20:48:11.360662+00 2025-10-14 20:48:11.360673+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 10:00:00 1016 1583 +4044 2025-10-14 20:48:52.931086+00 2025-10-14 20:48:52.931098+00 f t vet_accepted 1016 128 +4045 2025-10-14 20:48:52.947877+00 2025-10-14 20:48:52.94789+00 f t in_progress_pay 1016 128 +4046 2025-10-15 00:21:00.973+00 2025-10-15 00:21:00.973011+00 f t pending 1017 \N +4047 2025-10-15 01:34:55.930749+00 2025-10-15 01:34:55.930758+00 f t pending 1018 \N +4048 2025-10-15 11:07:33.818582+00 2025-10-15 11:07:33.818593+00 f t pending 1019 \N +4049 2025-10-15 12:24:06.524064+00 2025-10-15 12:24:06.524072+00 f t in_progress_vet 1017 1208 +4050 2025-10-15 12:28:22.356502+00 2025-10-15 12:28:22.356511+00 f t in_progress_vet 1018 1208 +4051 2025-10-15 12:29:21.739412+00 2025-10-15 12:29:21.739421+00 f t in_progress_vet 1019 1208 +4052 2025-10-15 12:42:07.233418+00 2025-10-15 12:42:07.233427+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 11:00:00 1018 1208 +4053 2025-10-15 12:43:33.073915+00 2025-10-15 12:43:33.073924+00 f t vet_accepted 1018 134 +4054 2025-10-15 12:43:33.085434+00 2025-10-15 12:43:33.085442+00 f t in_progress_pay 1018 134 +4055 2025-10-15 12:49:49.992139+00 2025-10-15 12:49:49.992147+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 17:30:00 1017 1208 +4056 2025-10-15 12:50:14.199876+00 2025-10-15 12:50:14.199887+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 18:00:00 1017 1208 +4057 2025-10-15 12:51:14.221859+00 2025-10-15 12:51:14.221873+00 f t vet_accepted 1017 134 +4058 2025-10-15 12:51:14.236764+00 2025-10-15 12:51:14.236774+00 f t in_progress_pay 1017 134 +4059 2025-10-15 12:59:34.333349+00 2025-10-15 12:59:34.333362+00 f t rejected D-Precio 1019 1208 +4060 2025-10-15 13:33:01.331613+00 2025-10-15 13:33:01.331625+00 f t Confirmado 1017 \N +4061 2025-10-15 13:33:01.289423+00 2025-10-15 13:33:01.289436+00 f t payed 1017 1208 +4062 2025-10-15 13:47:15.125177+00 2025-10-15 13:47:15.125186+00 f t pending 1020 \N +4063 2025-10-15 13:47:29.666663+00 2025-10-15 13:47:29.666672+00 f t in_progress_vet 1020 1208 +4064 2025-10-15 13:51:49.006894+00 2025-10-15 13:51:49.006901+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 16:00:00 1020 1208 +4065 2025-10-15 13:52:37.991595+00 2025-10-15 13:52:37.991604+00 f t vet_accepted 1020 134 +4066 2025-10-15 13:52:38.005301+00 2025-10-15 13:52:38.005313+00 f t in_progress_pay 1020 134 +4067 2025-10-15 14:17:37.320575+00 2025-10-15 14:17:37.320584+00 f t pending 1021 \N +4068 2025-10-15 14:17:53.215891+00 2025-10-15 14:17:53.215903+00 f t in_progress_vet 1021 1208 +4069 2025-10-15 14:17:55.032922+00 2025-10-15 14:17:55.032931+00 f t pending 1022 \N +4070 2025-10-15 14:19:08.317952+00 2025-10-15 14:19:08.317963+00 f t in_progress_vet 1022 1583 +4071 2025-10-15 14:19:19.770647+00 2025-10-15 14:19:19.770657+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 15:00:00 1022 1583 +4072 2025-10-15 14:19:40.688754+00 2025-10-15 14:19:40.688762+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 15:30:00 1022 1583 +4073 2025-10-15 14:21:08.791758+00 2025-10-15 14:21:08.791769+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 20:00:00 1021 1208 +4074 2025-10-15 14:22:03.202778+00 2025-10-15 14:22:03.202789+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 20:00:00 1021 1208 +4075 2025-10-15 14:23:26.624246+00 2025-10-15 14:23:26.624254+00 f t pending 1023 \N +4076 2025-10-15 14:23:42.799892+00 2025-10-15 14:23:42.799905+00 f t in_progress_vet 1023 1583 +4077 2025-10-15 14:23:49.717846+00 2025-10-15 14:23:49.717854+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 09:00:00 1023 1583 +4078 2025-10-15 14:24:42.363081+00 2025-10-15 14:24:42.363089+00 f t payed 1021 1208 +4079 2025-10-15 14:25:45.388629+00 2025-10-15 14:25:45.388641+00 f t Confirmado 1021 \N +4080 2025-10-15 14:25:46.549359+00 2025-10-15 14:25:46.549369+00 f t vet_asked Veterinario asignado: di Risio Daniela 1021 1208 +4081 2025-10-15 14:31:14.083056+00 2025-10-15 14:31:14.083068+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 16:30:00 988 1583 +4082 2025-10-15 14:31:20.227712+00 2025-10-15 14:31:20.227723+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 988 1583 +4083 2025-10-15 14:31:21.539984+00 2025-10-15 14:31:21.539993+00 f t vet_accepted 988 1583 +4084 2025-10-15 14:31:21.554293+00 2025-10-15 14:31:21.554302+00 f t in_progress_pay 988 1583 +4085 2025-10-15 14:31:42.598026+00 2025-10-15 14:31:42.598034+00 f t Confirmado 988 \N +4086 2025-10-15 14:31:42.563253+00 2025-10-15 14:31:42.563262+00 f t payed 988 1583 +4087 2025-10-15 14:34:15.164374+00 2025-10-15 14:34:15.164383+00 f t pending 1024 \N +4088 2025-10-15 14:34:30.463411+00 2025-10-15 14:34:30.463425+00 f t in_progress_vet 1024 1583 +4089 2025-10-15 14:35:45.654143+00 2025-10-15 14:35:45.654153+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 11:30:00 1024 1583 +4090 2025-10-15 14:35:50.559668+00 2025-10-15 14:35:50.559675+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 12:30:00 1024 1583 +4091 2025-10-15 14:36:10.196951+00 2025-10-15 14:36:10.196961+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1024 1583 +4092 2025-10-15 14:36:10.804439+00 2025-10-15 14:36:10.804446+00 f t vet_accepted 1024 1583 +4093 2025-10-15 14:36:10.816234+00 2025-10-15 14:36:10.816243+00 f t in_progress_pay 1024 1583 +4094 2025-10-15 14:36:22.268034+00 2025-10-15 14:36:22.268042+00 f t Confirmado 1024 \N +4095 2025-10-15 14:36:22.237376+00 2025-10-15 14:36:22.237389+00 f t payed 1024 1583 +4096 2025-10-15 14:46:55.077853+00 2025-10-15 14:46:55.077863+00 f t pending 1025 \N +4097 2025-10-15 14:47:39.130235+00 2025-10-15 14:47:39.130246+00 f t in_progress_vet 1025 1583 +4098 2025-10-15 14:47:46.417495+00 2025-10-15 14:47:46.417506+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 10:00:00 1025 1583 +4099 2025-10-15 14:49:26.097375+00 2025-10-15 14:49:26.097386+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1025 1583 +4100 2025-10-15 14:49:26.737217+00 2025-10-15 14:49:26.737225+00 f t vet_accepted 1025 1583 +4101 2025-10-15 14:49:26.755574+00 2025-10-15 14:49:26.755583+00 f t in_progress_pay 1025 1583 +4102 2025-10-15 14:50:17.195373+00 2025-10-15 14:50:17.195381+00 f t Confirmado 1025 \N +4103 2025-10-15 14:50:17.163948+00 2025-10-15 14:50:17.163956+00 f t payed 1025 1583 +4104 2025-10-15 14:57:21.449503+00 2025-10-15 14:57:21.449513+00 f t pending 1026 \N +4105 2025-10-15 14:57:43.158492+00 2025-10-15 14:57:43.1585+00 f t in_progress_vet 1026 1583 +4106 2025-10-15 15:03:15.337721+00 2025-10-15 15:03:15.337731+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 17:00:00 1026 1583 +4107 2025-10-15 15:08:16.999152+00 2025-10-15 15:08:16.999163+00 f t vet_asked Veterinario asignado: Palummo Mariana 1026 1583 +4108 2025-10-15 15:08:17.788704+00 2025-10-15 15:08:17.788715+00 f t vet_accepted 1026 1583 +4109 2025-10-15 15:08:17.803243+00 2025-10-15 15:08:17.803256+00 f t in_progress_pay 1026 1583 +4110 2025-10-15 15:09:54.94513+00 2025-10-15 15:09:54.945138+00 f t Confirmado 1026 \N +4111 2025-10-15 15:09:54.910898+00 2025-10-15 15:09:54.910908+00 f t payed 1026 1583 +4112 2025-10-15 15:14:49.588221+00 2025-10-15 15:14:49.58823+00 f t rejected D-Averiguando / Desconocido 1018 1208 +4113 2025-10-15 16:42:36.719541+00 2025-10-15 16:42:36.719551+00 f t pending 1027 \N +4114 2025-10-15 16:43:07.361161+00 2025-10-15 16:43:07.36117+00 f t in_progress_vet 1027 1583 +4115 2025-10-15 16:43:18.277486+00 2025-10-15 16:43:18.277494+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 14:00:00 1027 1583 +4116 2025-10-15 17:04:38.740176+00 2025-10-15 17:04:38.740186+00 f t pending 1028 \N +4117 2025-10-15 17:05:53.345689+00 2025-10-15 17:05:53.345701+00 f t in_progress_vet 1028 1583 +4118 2025-10-15 17:06:01.16418+00 2025-10-15 17:06:01.164192+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 18:00:00 1028 1583 +4119 2025-10-15 17:07:23.590237+00 2025-10-15 17:07:23.590249+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1028 1583 +4120 2025-10-15 17:07:24.283243+00 2025-10-15 17:07:24.283254+00 f t vet_accepted 1028 1583 +4121 2025-10-15 17:07:24.297711+00 2025-10-15 17:07:24.297723+00 f t in_progress_pay 1028 1583 +4122 2025-10-15 17:08:10.429292+00 2025-10-15 17:08:10.429301+00 f t Confirmado 1028 \N +4123 2025-10-15 17:08:10.400458+00 2025-10-15 17:08:10.400467+00 f t payed 1028 1583 +4124 2025-10-15 17:34:39.730978+00 2025-10-15 17:34:39.730991+00 f t rejected D-Abandono Bot 1020 1208 +4125 2025-10-15 17:40:10.996449+00 2025-10-15 17:40:10.996463+00 f t pending 1029 \N +4126 2025-10-15 17:41:56.603728+00 2025-10-15 17:41:56.603737+00 f t pending 1030 \N +4127 2025-10-15 17:45:23.205002+00 2025-10-15 17:45:23.205012+00 f t in_progress_vet 1029 1208 +4128 2025-10-15 17:45:39.704804+00 2025-10-15 17:45:39.704816+00 f t in_progress_vet 1030 1208 +4129 2025-10-15 17:52:55.192044+00 2025-10-15 17:52:55.192052+00 f t coordinated Solicitud coordinada para 2025-10-15 a las 19:00:00 1029 1208 +4130 2025-10-15 17:54:15.820135+00 2025-10-15 17:54:15.820143+00 f t vet_accepted 1029 134 +4131 2025-10-15 17:54:15.832464+00 2025-10-15 17:54:15.832474+00 f t in_progress_pay 1029 134 +4132 2025-10-15 18:22:06.558341+00 2025-10-15 18:22:06.558353+00 f t rejected D-Precio 1029 1208 +4133 2025-10-15 18:45:40.527904+00 2025-10-15 18:45:40.527914+00 f t pending 1031 \N +4134 2025-10-15 18:46:00.090504+00 2025-10-15 18:46:00.090516+00 f t in_progress_vet 1031 1208 +4135 2025-10-15 18:46:09.606492+00 2025-10-15 18:46:09.606499+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 11:00:00 1031 1208 +4136 2025-10-15 18:53:04.344545+00 2025-10-15 18:53:04.344555+00 f t vet_accepted 1031 124 +4137 2025-10-15 18:53:04.36046+00 2025-10-15 18:53:04.360471+00 f t in_progress_pay 1031 124 +4138 2025-10-15 19:07:43.1347+00 2025-10-15 19:07:43.134709+00 f t pending 1032 \N +4139 2025-10-15 19:07:58.737062+00 2025-10-15 19:07:58.737071+00 f t in_progress_vet 1032 1208 +4140 2025-10-15 19:09:13.257982+00 2025-10-15 19:09:13.257991+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 17:30:00 1032 1208 +4141 2025-10-15 19:13:46.834509+00 2025-10-15 19:13:46.834519+00 f t pending 1033 \N +4142 2025-10-15 19:14:08.447465+00 2025-10-15 19:14:08.447473+00 f t in_progress_vet 1033 1208 +4143 2025-10-15 19:14:25.695647+00 2025-10-15 19:14:25.695656+00 f t pending 1034 \N +4144 2025-10-15 19:14:46.505997+00 2025-10-15 19:14:46.506005+00 f t in_progress_vet 1034 1208 +4145 2025-10-15 19:14:59.706545+00 2025-10-15 19:14:59.706553+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 10:30:00 1034 1208 +4146 2025-10-15 19:15:19.013553+00 2025-10-15 19:15:19.013563+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1034 1208 +4147 2025-10-15 19:15:56.027626+00 2025-10-15 19:15:56.027638+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 09:30:00 1033 1208 +4148 2025-10-15 19:15:59.779316+00 2025-10-15 19:15:59.779325+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 1033 1208 +4149 2025-10-15 19:20:43.93431+00 2025-10-15 19:20:43.93432+00 f t Confirmado 1033 \N +4150 2025-10-15 19:20:43.898815+00 2025-10-15 19:20:43.898827+00 f t payed 1033 1208 +4151 2025-10-15 19:20:45.602382+00 2025-10-15 19:20:45.602391+00 f t payed 1033 1208 +4152 2025-10-15 19:20:57.33061+00 2025-10-15 19:20:57.33062+00 f t Confirmado 1034 \N +4153 2025-10-15 19:20:57.299554+00 2025-10-15 19:20:57.299563+00 f t payed 1034 1208 +4154 2025-10-15 20:10:21.537639+00 2025-10-15 20:10:21.537651+00 f t vet_asked Veterinario asignado: Fernandez Gaston 1032 1208 +4155 2025-10-15 20:10:26.413305+00 2025-10-15 20:10:26.413318+00 f t Confirmado 1032 \N +4156 2025-10-15 20:10:26.378824+00 2025-10-15 20:10:26.378835+00 f t payed 1032 1208 +4157 2025-10-15 21:37:31.605155+00 2025-10-15 21:37:31.605163+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 11:00:00 1031 1583 +4158 2025-10-15 21:38:26.260687+00 2025-10-15 21:38:26.260696+00 f t Confirmado 1031 \N +4159 2025-10-15 21:38:26.228234+00 2025-10-15 21:38:26.228243+00 f t payed 1031 1583 +4160 2025-10-15 22:56:39.600034+00 2025-10-15 22:56:39.600042+00 f t pending 1035 \N +4161 2025-10-15 22:57:13.966327+00 2025-10-15 22:57:13.966336+00 f t in_progress_vet 1035 113 +4162 2025-10-15 22:57:40.848672+00 2025-10-15 22:57:40.848682+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 09:00:00 1035 113 +4163 2025-10-15 23:45:32.946477+00 2025-10-15 23:45:32.946486+00 f t vet_accepted 1035 134 +4164 2025-10-15 23:45:32.960518+00 2025-10-15 23:45:32.960527+00 f t in_progress_pay 1035 134 +4165 2025-10-16 02:36:31.924727+00 2025-10-16 02:36:31.924736+00 f t pending 1036 \N +4166 2025-10-16 09:33:58.547213+00 2025-10-16 09:33:58.547227+00 f t pending 1037 \N +4167 2025-10-16 12:11:05.425658+00 2025-10-16 12:11:05.425672+00 f t rejected D-Tiempo de respuestas 1030 1208 +4168 2025-10-16 12:23:12.633433+00 2025-10-16 12:23:12.633444+00 f t in_progress_vet 1036 1208 +4169 2025-10-16 12:23:20.193+00 2025-10-16 12:23:20.193008+00 f t in_progress_vet 1037 1208 +4170 2025-10-16 12:30:22.432061+00 2025-10-16 12:30:22.432068+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 10:00:00 1036 1208 +4171 2025-10-16 12:35:20.070624+00 2025-10-16 12:35:20.070635+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 17:00:00 1037 1208 +4172 2025-10-16 13:08:22.386272+00 2025-10-16 13:08:22.386281+00 f t pending 1038 \N +4173 2025-10-16 13:08:32.248607+00 2025-10-16 13:08:32.248618+00 f t in_progress_vet 1038 1208 +4174 2025-10-16 13:13:02.427113+00 2025-10-16 13:13:02.427122+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 12:00:00 1038 1208 +4175 2025-10-16 13:17:22.565436+00 2025-10-16 13:17:22.565444+00 f t rejected D-Averiguando / Desconocido 1035 1208 +4176 2025-10-16 13:20:06.150901+00 2025-10-16 13:20:06.15091+00 f t payed 1035 1208 +4177 2025-10-16 13:25:43.426978+00 2025-10-16 13:25:43.426987+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1038 1208 +4178 2025-10-16 13:26:05.913405+00 2025-10-16 13:26:05.913416+00 f t Confirmado 1038 \N +4179 2025-10-16 13:26:05.869404+00 2025-10-16 13:26:05.869417+00 f t payed 1038 1208 +4180 2025-10-16 13:28:04.814142+00 2025-10-16 13:28:04.81415+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 19:00:00 1036 1208 +4181 2025-10-16 13:47:55.566043+00 2025-10-16 13:47:55.566051+00 f t rejected D-Averiguando / Desconocido 1035 1208 +4182 2025-10-16 13:52:49.334472+00 2025-10-16 13:52:49.334484+00 f t pending 1039 \N +4183 2025-10-16 13:53:11.31597+00 2025-10-16 13:53:11.315978+00 f t in_progress_vet 1039 1208 +4184 2025-10-16 13:53:32.362092+00 2025-10-16 13:53:32.362101+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 18:00:00 1039 1208 +4185 2025-10-16 13:55:07.675966+00 2025-10-16 13:55:07.675975+00 f t vet_asked Veterinario asignado: Kumabe Paula 1039 1208 +4186 2025-10-16 13:55:13.435353+00 2025-10-16 13:55:13.435362+00 f t Confirmado 1039 \N +4187 2025-10-16 13:55:13.407662+00 2025-10-16 13:55:13.407671+00 f t payed 1039 1208 +4188 2025-10-16 14:02:31.331444+00 2025-10-16 14:02:31.331455+00 f t pending 1040 \N +4189 2025-10-16 14:05:52.192755+00 2025-10-16 14:05:52.192765+00 f t in_progress_vet 1040 1208 +4190 2025-10-16 14:05:59.544467+00 2025-10-16 14:05:59.544476+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 18:00:00 1040 1208 +4191 2025-10-16 14:25:03.503546+00 2025-10-16 14:25:03.50356+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 14:00:00 1040 1208 +4192 2025-10-16 14:25:51.764732+00 2025-10-16 14:25:51.765281+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 1040 1208 +4193 2025-10-16 15:04:07.747177+00 2025-10-16 15:04:07.747187+00 f t vet_accepted 1036 122 +4194 2025-10-16 15:04:07.760766+00 2025-10-16 15:04:07.76078+00 f t in_progress_pay 1036 122 +4195 2025-10-16 15:25:42.360311+00 2025-10-16 15:25:42.360319+00 f t pending 1041 \N +4196 2025-10-16 15:26:35.882668+00 2025-10-16 15:26:35.882675+00 f t in_progress_vet 1041 1208 +4197 2025-10-16 15:27:22.098262+00 2025-10-16 15:27:22.09827+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 15:00:00 1041 1208 +4198 2025-10-16 15:28:59.217228+00 2025-10-16 15:28:59.217236+00 f t vet_accepted 1041 116 +4199 2025-10-16 15:28:59.230688+00 2025-10-16 15:28:59.230698+00 f t in_progress_pay 1041 116 +4200 2025-10-16 15:35:33.685423+00 2025-10-16 15:35:33.685432+00 f t pending 1042 \N +4201 2025-10-16 15:37:18.095519+00 2025-10-16 15:37:18.09553+00 f t in_progress_vet 1042 1208 +4202 2025-10-16 15:37:26.41686+00 2025-10-16 15:37:26.416868+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 17:00:00 1042 1208 +4203 2025-10-16 15:37:49.678115+00 2025-10-16 15:37:49.678124+00 f t vet_asked Veterinario asignado: di Risio Daniela 1042 1208 +4204 2025-10-16 15:39:18.203008+00 2025-10-16 15:39:18.203018+00 f t Confirmado 1040 \N +4205 2025-10-16 15:39:18.171005+00 2025-10-16 15:39:18.171014+00 f t payed 1040 1208 +4206 2025-10-16 15:40:36.592294+00 2025-10-16 15:40:36.592302+00 f t Confirmado 1042 \N +4207 2025-10-16 15:40:36.56509+00 2025-10-16 15:40:36.565098+00 f t payed 1042 1208 +4208 2025-10-16 16:10:16.771266+00 2025-10-16 16:10:16.77128+00 f t pending 1043 \N +4209 2025-10-16 16:10:38.795263+00 2025-10-16 16:10:38.795272+00 f t in_progress_vet 1043 1583 +4210 2025-10-16 16:12:42.34651+00 2025-10-16 16:12:42.346517+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 16:00:00 1043 1583 +4211 2025-10-16 16:15:00.251018+00 2025-10-16 16:15:00.251028+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 18:30:00 1043 1583 +4212 2025-10-16 16:16:02.788075+00 2025-10-16 16:16:02.788087+00 f t vet_accepted 1043 124 +4213 2025-10-16 16:16:02.801285+00 2025-10-16 16:16:02.801295+00 f t in_progress_pay 1043 124 +4214 2025-10-16 16:25:42.853852+00 2025-10-16 16:25:42.85386+00 f t Confirmado 1041 \N +4215 2025-10-16 16:25:42.821241+00 2025-10-16 16:25:42.821252+00 f t payed 1041 1208 +4216 2025-10-16 16:31:02.720296+00 2025-10-16 16:31:02.720307+00 f t pending 1044 \N +4217 2025-10-16 16:31:52.83683+00 2025-10-16 16:31:52.836842+00 f t in_progress_vet 1044 1208 +4218 2025-10-16 16:32:02.716746+00 2025-10-16 16:32:02.716758+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 15:00:00 1044 1208 +4219 2025-10-16 16:36:06.562065+00 2025-10-16 16:36:06.562075+00 f t vet_accepted 1044 134 +4220 2025-10-16 16:36:06.575689+00 2025-10-16 16:36:06.575699+00 f t in_progress_pay 1044 134 +4221 2025-10-16 16:39:20.980537+00 2025-10-16 16:39:20.980547+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1043 1583 +4222 2025-10-16 16:40:14.512333+00 2025-10-16 16:40:14.512342+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1043 1583 +4223 2025-10-16 16:40:15.763805+00 2025-10-16 16:40:15.763816+00 f t vet_accepted 1043 1583 +4224 2025-10-16 16:40:15.77603+00 2025-10-16 16:40:15.776039+00 f t in_progress_pay 1043 1583 +4225 2025-10-16 16:40:33.124106+00 2025-10-16 16:40:33.124117+00 f t Confirmado 1043 \N +4226 2025-10-16 16:40:33.084656+00 2025-10-16 16:40:33.084671+00 f t payed 1043 1583 +4227 2025-10-16 17:04:03.638964+00 2025-10-16 17:04:03.638972+00 f t Confirmado 1044 \N +4228 2025-10-16 17:04:03.607676+00 2025-10-16 17:04:03.607688+00 f t payed 1044 1208 +4229 2025-10-16 17:40:20.111253+00 2025-10-16 17:40:20.111266+00 f t rejected D-Abandono Bot 1037 1208 +4230 2025-10-16 17:59:04.048258+00 2025-10-16 17:59:04.048271+00 f t pending 1045 \N +4231 2025-10-16 17:59:32.54077+00 2025-10-16 17:59:32.540778+00 f t in_progress_vet 1045 1583 +4232 2025-10-16 17:59:41.768362+00 2025-10-16 17:59:41.768371+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 16:30:00 1045 1583 +4233 2025-10-16 17:59:48.261892+00 2025-10-16 17:59:48.2619+00 f t vet_asked Veterinario asignado: Herrera Daniela 1045 1583 +4234 2025-10-16 17:59:49.566396+00 2025-10-16 17:59:49.566404+00 f t vet_accepted 1045 1583 +4235 2025-10-16 17:59:49.578153+00 2025-10-16 17:59:49.578161+00 f t in_progress_pay 1045 1583 +4236 2025-10-16 18:02:53.627764+00 2025-10-16 18:02:53.627773+00 f t vet_asked Veterinario asignado: Palladino Martín 1036 1208 +4237 2025-10-16 18:04:01.657216+00 2025-10-16 18:04:01.657229+00 f t Confirmado 1036 \N +4238 2025-10-16 18:04:01.61368+00 2025-10-16 18:04:01.613689+00 f t payed 1036 1208 +4239 2025-10-16 18:34:48.527249+00 2025-10-16 18:34:48.527257+00 f t pending 1046 \N +4240 2025-10-16 18:35:16.187343+00 2025-10-16 18:35:16.187353+00 f t in_progress_vet 1046 1583 +4241 2025-10-16 18:35:30.472024+00 2025-10-16 18:35:30.472033+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 20:00:00 1046 1583 +4242 2025-10-16 18:39:54.937452+00 2025-10-16 18:39:54.937462+00 f t vet_accepted 1046 116 +4243 2025-10-16 18:39:54.950251+00 2025-10-16 18:39:54.950259+00 f t in_progress_pay 1046 116 +4244 2025-10-16 18:50:26.572249+00 2025-10-16 18:50:26.572258+00 f t pending 1047 \N +4245 2025-10-16 18:50:45.440436+00 2025-10-16 18:50:45.440444+00 f t in_progress_vet 1047 1208 +4246 2025-10-16 18:53:06.129162+00 2025-10-16 18:53:06.129174+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 16:00:00 1047 1208 +4247 2025-10-16 18:53:35.647651+00 2025-10-16 18:53:35.64766+00 f t vet_asked Veterinario asignado: Fernandez Gaston 1047 1208 +4248 2025-10-16 19:02:42.039334+00 2025-10-16 19:02:42.039342+00 f t Confirmado 1047 \N +4249 2025-10-16 19:02:42.003467+00 2025-10-16 19:02:42.003481+00 f t payed 1047 1208 +4250 2025-10-16 19:04:37.768392+00 2025-10-16 19:04:37.768403+00 f t pending 1048 \N +4251 2025-10-16 19:05:02.989549+00 2025-10-16 19:05:02.989564+00 f t in_progress_vet 1048 1208 +4252 2025-10-16 19:05:09.742015+00 2025-10-16 19:05:09.742024+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 18:00:00 1048 1208 +4253 2025-10-16 19:07:04.343841+00 2025-10-16 19:07:04.343851+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1048 1208 +4254 2025-10-16 19:07:10.002238+00 2025-10-16 19:07:10.002251+00 f t Confirmado 1048 \N +4255 2025-10-16 19:07:09.967052+00 2025-10-16 19:07:09.967062+00 f t payed 1048 1208 +4256 2025-10-16 19:32:07.452918+00 2025-10-16 19:32:07.452928+00 f t pending 1049 \N +4257 2025-10-16 19:33:40.924045+00 2025-10-16 19:33:40.924053+00 f t in_progress_vet 1049 1583 +4258 2025-10-16 19:33:47.021191+00 2025-10-16 19:33:47.0212+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 18:30:00 1049 1583 +4259 2025-10-16 19:34:03.143394+00 2025-10-16 19:34:03.143403+00 f t vet_asked Veterinario asignado: Palladino Martín 1049 1583 +4260 2025-10-16 19:34:03.85267+00 2025-10-16 19:34:03.852684+00 f t vet_accepted 1049 1583 +4261 2025-10-16 19:34:03.868446+00 2025-10-16 19:34:03.868458+00 f t in_progress_pay 1049 1583 +4262 2025-10-16 19:34:22.717798+00 2025-10-16 19:34:22.717806+00 f t Confirmado 1049 \N +4263 2025-10-16 19:34:22.685758+00 2025-10-16 19:34:22.685767+00 f t payed 1049 1583 +4264 2025-10-16 19:35:28.529819+00 2025-10-16 19:35:28.529829+00 f t Confirmado 1045 \N +4265 2025-10-16 19:35:28.495454+00 2025-10-16 19:35:28.495465+00 f t payed 1045 1583 +4266 2025-10-16 20:50:11.800787+00 2025-10-16 20:50:11.800795+00 f t pending 1050 \N +4267 2025-10-16 20:51:02.236184+00 2025-10-16 20:51:02.236192+00 f t in_progress_vet 1050 1583 +4268 2025-10-16 20:51:09.328121+00 2025-10-16 20:51:09.328128+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 10:00:00 1050 1583 +4269 2025-10-16 21:19:24.462362+00 2025-10-16 21:19:24.462371+00 f t pending 1051 \N +4270 2025-10-16 21:19:41.071073+00 2025-10-16 21:19:41.071083+00 f t in_progress_vet 1051 1583 +4271 2025-10-16 21:19:49.719663+00 2025-10-16 21:19:49.719671+00 f t coordinated Solicitud coordinada para 2025-10-19 a las 10:00:00 1051 1583 +4272 2025-10-16 21:21:10.324345+00 2025-10-16 21:21:10.324354+00 f t vet_accepted 1051 128 +4273 2025-10-16 21:21:10.33754+00 2025-10-16 21:21:10.337549+00 f t in_progress_pay 1051 128 +4274 2025-10-16 21:27:40.264413+00 2025-10-16 21:27:40.264422+00 f t pending 1052 \N +4275 2025-10-16 21:28:09.603827+00 2025-10-16 21:28:09.60386+00 f t in_progress_vet 1052 1583 +4276 2025-10-16 21:28:14.590067+00 2025-10-16 21:28:14.590075+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 10:00:00 1052 1583 +4277 2025-10-16 21:28:49.922216+00 2025-10-16 21:28:49.922226+00 f t payed 1052 1583 +4278 2025-10-16 21:30:57.027173+00 2025-10-16 21:30:57.027199+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1050 1583 +4279 2025-10-16 21:30:57.741941+00 2025-10-16 21:30:57.74195+00 f t vet_accepted 1050 1583 +4280 2025-10-16 21:30:57.754171+00 2025-10-16 21:30:57.754181+00 f t in_progress_pay 1050 1583 +4281 2025-10-16 21:31:08.41791+00 2025-10-16 21:31:08.417921+00 f t Confirmado 1050 \N +4282 2025-10-16 21:31:08.384615+00 2025-10-16 21:31:08.384627+00 f t payed 1050 1583 +4283 2025-10-16 21:52:13.129426+00 2025-10-16 21:52:13.129438+00 f t pending 1053 \N +4284 2025-10-16 21:52:25.891311+00 2025-10-16 21:52:25.89132+00 f t in_progress_vet 1053 1583 +4285 2025-10-16 21:52:32.908843+00 2025-10-16 21:52:32.908851+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 09:00:00 1053 1583 +4286 2025-10-16 22:24:43.753227+00 2025-10-16 22:24:43.75324+00 f t pending 1054 \N +4287 2025-10-16 22:28:00.464329+00 2025-10-16 22:28:00.464338+00 f t in_progress_vet 1054 113 +4288 2025-10-16 22:28:20.181411+00 2025-10-16 22:28:20.181418+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 20:30:00 1054 113 +4289 2025-10-16 23:13:14.971979+00 2025-10-16 23:13:14.971988+00 f t pending 1055 \N +4290 2025-10-16 23:13:32.250558+00 2025-10-16 23:13:32.250566+00 f t in_progress_vet 1055 113 +4291 2025-10-16 23:13:50.877131+00 2025-10-16 23:13:50.877139+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 20:30:00 1055 113 +4292 2025-10-16 23:56:30.002648+00 2025-10-16 23:56:30.002658+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 12:30:00 1055 113 +4293 2025-10-17 00:04:52.945058+00 2025-10-17 00:04:52.945067+00 f t payed 1055 113 +4294 2025-10-17 00:05:00.713043+00 2025-10-17 00:05:00.713053+00 f t Confirmado 1055 \N +4295 2025-10-17 00:05:04.142886+00 2025-10-17 00:05:04.142902+00 f t vet_asked Veterinario asignado: Osso Virginia 1055 113 +4296 2025-10-17 00:07:56.087684+00 2025-10-17 00:07:56.087692+00 f t vet_accepted 1055 113 +4297 2025-10-17 00:11:55.364593+00 2025-10-17 00:11:55.364602+00 f t pending 1056 \N +4298 2025-10-17 00:12:28.420177+00 2025-10-17 00:12:28.420186+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 21:30:00 1056 113 +4299 2025-10-17 00:21:12.70782+00 2025-10-17 00:21:12.70783+00 f t vet_accepted 1056 128 +4300 2025-10-17 00:21:12.722538+00 2025-10-17 00:21:12.722547+00 f t in_progress_pay 1056 128 +4301 2025-10-17 00:27:59.030619+00 2025-10-17 00:27:59.030629+00 f t Confirmado 1051 \N +4302 2025-10-17 00:27:58.996972+00 2025-10-17 00:27:58.99698+00 f t payed 1051 113 +4303 2025-10-17 00:29:44.656997+00 2025-10-17 00:29:44.657006+00 f t Confirmado 1056 \N +4304 2025-10-17 00:29:44.626207+00 2025-10-17 00:29:44.626215+00 f t payed 1056 113 +4305 2025-10-17 02:16:23.078656+00 2025-10-17 02:16:23.078668+00 f t pending 1057 \N +4306 2025-10-17 02:16:50.711843+00 2025-10-17 02:16:50.711853+00 f t in_progress_vet 1057 113 +4307 2025-10-17 02:17:00.835754+00 2025-10-17 02:17:00.835765+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 16:30:00 1057 113 +4308 2025-10-17 02:18:50.796311+00 2025-10-17 02:18:50.79632+00 f t payed 1057 113 +4309 2025-10-17 03:41:06.733714+00 2025-10-17 03:41:06.733723+00 f t pending 1058 \N +4310 2025-10-17 12:06:27.29736+00 2025-10-17 12:06:27.297368+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 13:00:00 1054 1583 +4311 2025-10-17 12:37:47.153527+00 2025-10-17 12:37:47.153539+00 f t pending 1059 \N +4312 2025-10-17 12:38:45.599874+00 2025-10-17 12:38:45.599881+00 f t in_progress_vet 1059 1583 +4313 2025-10-17 12:38:50.681895+00 2025-10-17 12:38:50.681903+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 10:00:00 1059 1583 +4314 2025-10-17 12:43:20.925365+00 2025-10-17 12:43:20.925375+00 f t vet_accepted 1059 1774 +4315 2025-10-17 12:43:20.937615+00 2025-10-17 12:43:20.937626+00 f t in_progress_pay 1059 1774 +4316 2025-10-17 12:51:46.441705+00 2025-10-17 12:51:46.441713+00 f t in_progress_vet 1058 1583 +4317 2025-10-17 12:51:54.281563+00 2025-10-17 12:51:54.281572+00 f t vet_accepted 1053 128 +4318 2025-10-17 12:51:54.292631+00 2025-10-17 12:51:54.292642+00 f t in_progress_pay 1053 128 +4319 2025-10-17 12:51:56.161667+00 2025-10-17 12:51:56.161676+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 16:00:00 1058 1583 +4320 2025-10-17 12:52:34.071919+00 2025-10-17 12:52:34.071926+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 11:00:00 1058 1583 +4321 2025-10-17 12:55:32.343353+00 2025-10-17 12:55:32.343363+00 f t vet_accepted 1058 116 +4322 2025-10-17 12:55:32.355616+00 2025-10-17 12:55:32.355625+00 f t in_progress_pay 1058 116 +4323 2025-10-17 13:01:32.905723+00 2025-10-17 13:01:32.905731+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 13:30:00 1054 1583 +4324 2025-10-17 13:01:55.360091+00 2025-10-17 13:01:55.360101+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1054 1583 +4325 2025-10-17 13:01:56.010873+00 2025-10-17 13:01:56.010881+00 f t vet_accepted 1054 1583 +4326 2025-10-17 13:01:56.022794+00 2025-10-17 13:01:56.022802+00 f t in_progress_pay 1054 1583 +4327 2025-10-17 13:02:01.321924+00 2025-10-17 13:02:01.321935+00 f t Confirmado 1054 \N +4328 2025-10-17 13:02:01.272818+00 2025-10-17 13:02:01.272827+00 f t payed 1054 1583 +4329 2025-10-17 13:12:06.795382+00 2025-10-17 13:12:06.795389+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 12:30:00 1058 1583 +4330 2025-10-17 13:12:20.086968+00 2025-10-17 13:12:20.086979+00 f t Confirmado 1058 \N +4331 2025-10-17 13:12:20.047381+00 2025-10-17 13:12:20.047393+00 f t payed 1058 1583 +4332 2025-10-17 13:22:39.237285+00 2025-10-17 13:22:39.237293+00 f t Confirmado 1053 \N +4333 2025-10-17 13:22:39.20463+00 2025-10-17 13:22:39.204639+00 f t payed 1053 1583 +4334 2025-10-17 13:27:30.365893+00 2025-10-17 13:27:30.365902+00 f t pending 1060 \N +4335 2025-10-17 13:27:47.970102+00 2025-10-17 13:27:47.970109+00 f t in_progress_vet 1060 1583 +4336 2025-10-17 13:27:54.983633+00 2025-10-17 13:27:54.983641+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 15:00:00 1060 1583 +4337 2025-10-17 13:33:57.892171+00 2025-10-17 13:33:57.89218+00 f t Confirmado 1057 \N +4338 2025-10-17 13:33:59.466358+00 2025-10-17 13:33:59.466368+00 f t vet_asked Veterinario asignado: Palummo Mariana 1057 1583 +4339 2025-10-17 13:34:00.271903+00 2025-10-17 13:34:00.271912+00 f t vet_accepted 1057 1583 +4340 2025-10-17 13:39:36.243724+00 2025-10-17 13:39:36.243731+00 f t Confirmado 1059 \N +4341 2025-10-17 13:39:36.211785+00 2025-10-17 13:39:36.211793+00 f t payed 1059 1583 +4342 2025-10-17 13:45:02.340007+00 2025-10-17 13:45:02.340022+00 f t pending 1061 \N +4343 2025-10-17 13:45:03.15318+00 2025-10-17 13:45:03.153195+00 f t pending 1062 \N +4344 2025-10-17 13:45:03.402376+00 2025-10-17 13:45:03.402392+00 f t pending 1063 \N +4345 2025-10-17 13:45:08.754583+00 2025-10-17 13:45:08.754593+00 f t pending 1064 \N +4346 2025-10-17 13:46:00.092484+00 2025-10-17 13:46:00.092497+00 f t in_progress_vet 1064 1583 +4347 2025-10-17 13:46:08.031182+00 2025-10-17 13:46:08.031193+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 16:00:00 1064 1583 +4348 2025-10-17 13:51:18.109845+00 2025-10-17 13:51:18.109855+00 f t pending 1065 \N +4349 2025-10-17 13:51:49.819268+00 2025-10-17 13:51:49.819277+00 f t in_progress_vet 1065 1583 +4350 2025-10-17 13:51:56.256619+00 2025-10-17 13:51:56.256631+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 14:00:00 1065 1583 +4351 2025-10-17 13:52:56.894427+00 2025-10-17 13:52:56.894437+00 f t vet_accepted 1065 124 +4352 2025-10-17 13:52:56.912051+00 2025-10-17 13:52:56.912061+00 f t in_progress_pay 1065 124 +4353 2025-10-17 13:54:48.883381+00 2025-10-17 13:54:48.88339+00 f t vet_accepted 1064 126 +4354 2025-10-17 13:54:48.896167+00 2025-10-17 13:54:48.896176+00 f t in_progress_pay 1064 126 +4355 2025-10-17 13:58:04.612798+00 2025-10-17 13:58:04.612807+00 f t vet_accepted 1060 134 +4356 2025-10-17 13:58:04.627854+00 2025-10-17 13:58:04.627869+00 f t in_progress_pay 1060 134 +4357 2025-10-17 14:00:19.194384+00 2025-10-17 14:00:19.194394+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 12:00:00 1065 1583 +4358 2025-10-17 14:00:35.872065+00 2025-10-17 14:00:35.872079+00 f t Confirmado 1065 \N +4359 2025-10-17 14:00:35.803265+00 2025-10-17 14:00:35.803274+00 f t payed 1065 1583 +4360 2025-10-17 14:40:24.229957+00 2025-10-17 14:40:24.229971+00 f t pending 1066 \N +4361 2025-10-17 14:40:52.802758+00 2025-10-17 14:40:52.802766+00 f t in_progress_vet 1066 1583 +4362 2025-10-17 14:40:58.422743+00 2025-10-17 14:40:58.42275+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 18:00:00 1066 1583 +4363 2025-10-17 14:41:03.375988+00 2025-10-17 14:41:03.375998+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 16:00:00 1066 1583 +4364 2025-10-17 14:42:03.163755+00 2025-10-17 14:42:03.163766+00 f t vet_accepted 1066 128 +4365 2025-10-17 14:42:03.177575+00 2025-10-17 14:42:03.177588+00 f t in_progress_pay 1066 128 +4366 2025-10-17 14:50:57.682023+00 2025-10-17 14:50:57.682038+00 f t Confirmado 1066 \N +4367 2025-10-17 14:50:57.637154+00 2025-10-17 14:50:57.637164+00 f t payed 1066 1583 +4368 2025-10-17 14:53:32.239882+00 2025-10-17 14:53:32.239893+00 f t Confirmado 1064 \N +4369 2025-10-17 14:53:32.198251+00 2025-10-17 14:53:32.198263+00 f t payed 1064 1583 +4370 2025-10-17 15:37:54.979292+00 2025-10-17 15:37:54.979303+00 f t pending 1067 \N +4371 2025-10-17 15:40:43.360666+00 2025-10-17 15:40:43.360675+00 f t in_progress_vet 1067 1583 +4372 2025-10-17 15:40:49.758922+00 2025-10-17 15:40:49.75893+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 14:00:00 1067 1583 +4373 2025-10-17 15:40:58.241431+00 2025-10-17 15:40:58.241439+00 f t vet_asked Veterinario asignado: Campo Silvia 1067 1583 +4374 2025-10-17 15:40:59.133174+00 2025-10-17 15:40:59.133183+00 f t vet_accepted 1067 1583 +4375 2025-10-17 15:40:59.155892+00 2025-10-17 15:40:59.1559+00 f t in_progress_pay 1067 1583 +4376 2025-10-17 15:42:48.224614+00 2025-10-17 15:42:48.224622+00 f t Confirmado 1067 \N +4377 2025-10-17 15:42:48.196666+00 2025-10-17 15:42:48.196675+00 f t payed 1067 1583 +4378 2025-10-17 15:43:18.794425+00 2025-10-17 15:43:18.794431+00 f t pending 1068 \N +4379 2025-10-17 15:44:05.982519+00 2025-10-17 15:44:05.982528+00 f t in_progress_vet 1068 1583 +4380 2025-10-17 15:44:12.55027+00 2025-10-17 15:44:12.55028+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 13:30:00 1068 1583 +4381 2025-10-17 15:44:29.885906+00 2025-10-17 15:44:29.885917+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1068 1583 +4382 2025-10-17 15:44:31.376044+00 2025-10-17 15:44:31.376054+00 f t vet_accepted 1068 1583 +4383 2025-10-17 15:44:31.38938+00 2025-10-17 15:44:31.389389+00 f t in_progress_pay 1068 1583 +4384 2025-10-17 15:44:40.35818+00 2025-10-17 15:44:40.358189+00 f t Confirmado 1068 \N +4385 2025-10-17 15:44:40.328195+00 2025-10-17 15:44:40.328204+00 f t payed 1068 1583 +4386 2025-10-17 16:13:08.747652+00 2025-10-17 16:13:08.74766+00 f t pending 1069 \N +4387 2025-10-17 16:14:44.623559+00 2025-10-17 16:14:44.623571+00 f t in_progress_vet 1069 1583 +4388 2025-10-17 16:14:52.404278+00 2025-10-17 16:14:52.404288+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 18:00:00 1069 1583 +4389 2025-10-17 16:29:03.60904+00 2025-10-17 16:29:03.609049+00 f t pending 1070 \N +4390 2025-10-17 16:31:29.169286+00 2025-10-17 16:31:29.169299+00 f t in_progress_vet 1070 1583 +4391 2025-10-17 16:31:39.23945+00 2025-10-17 16:31:39.239458+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 18:00:00 1070 1583 +4392 2025-10-17 16:34:42.574204+00 2025-10-17 16:34:42.574212+00 f t vet_accepted 1070 116 +4393 2025-10-17 16:34:42.584976+00 2025-10-17 16:34:42.584984+00 f t in_progress_pay 1070 116 +4394 2025-10-17 16:41:01.766021+00 2025-10-17 16:41:01.766031+00 f t Confirmado 1070 \N +4395 2025-10-17 16:41:01.731127+00 2025-10-17 16:41:01.73117+00 f t payed 1070 1583 +4396 2025-10-17 17:47:03.753868+00 2025-10-17 17:47:03.753877+00 f t pending 1071 \N +4397 2025-10-17 17:48:29.581258+00 2025-10-17 17:48:29.581267+00 f t in_progress_vet 1071 1583 +4398 2025-10-17 17:48:55.250428+00 2025-10-17 17:48:55.250436+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 14:00:00 1071 1583 +4399 2025-10-17 18:30:55.327048+00 2025-10-17 18:30:55.327057+00 f t vet_accepted 1071 116 +4400 2025-10-17 18:30:55.340502+00 2025-10-17 18:30:55.340515+00 f t in_progress_pay 1071 116 +4401 2025-10-17 18:41:15.237427+00 2025-10-17 18:41:15.237435+00 f t pending 1072 \N +4402 2025-10-17 18:45:30.575399+00 2025-10-17 18:45:30.575408+00 f t in_progress_vet 1072 1583 +4403 2025-10-17 18:46:11.770814+00 2025-10-17 18:46:11.770822+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 19:00:00 1072 1583 +4404 2025-10-17 19:48:27.361736+00 2025-10-17 19:48:27.361745+00 f t pending 1073 \N +4405 2025-10-17 19:48:46.030989+00 2025-10-17 19:48:46.031001+00 f t in_progress_vet 1073 1208 +4406 2025-10-17 19:48:54.937077+00 2025-10-17 19:48:54.937084+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 08:00:00 1073 1208 +4407 2025-10-17 19:52:01.054199+00 2025-10-17 19:52:01.054207+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1073 1208 +4408 2025-10-17 20:08:32.726802+00 2025-10-17 20:08:32.72681+00 f t pending 1074 \N +4409 2025-10-17 20:08:51.902217+00 2025-10-17 20:08:51.902225+00 f t in_progress_vet 1074 1208 +4410 2025-10-17 20:09:32.482569+00 2025-10-17 20:09:32.482578+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 09:00:00 1074 1208 +4411 2025-10-17 20:31:29.204684+00 2025-10-17 20:31:29.204692+00 f t Confirmado 1073 \N +4412 2025-10-17 20:31:29.176372+00 2025-10-17 20:31:29.17638+00 f t payed 1073 1208 +4413 2025-10-17 21:05:04.67864+00 2025-10-17 21:05:04.678663+00 f t pending 1075 \N +4414 2025-10-17 21:05:08.219674+00 2025-10-17 21:05:08.219687+00 f t pending 1076 \N +4415 2025-10-17 21:14:01.021221+00 2025-10-17 21:14:01.02123+00 f t in_progress_vet 1075 1208 +4416 2025-10-17 21:21:43.104673+00 2025-10-17 21:21:43.104685+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 20:00:00 1075 1208 +4417 2025-10-17 21:22:28.863673+00 2025-10-17 21:22:28.86368+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 19:00:00 1075 1208 +4418 2025-10-17 21:26:36.563587+00 2025-10-17 21:26:36.563599+00 f t vet_accepted 1075 1774 +4419 2025-10-17 21:26:36.577874+00 2025-10-17 21:26:36.577888+00 f t in_progress_pay 1075 1774 +4420 2025-10-17 21:46:53.100324+00 2025-10-17 21:46:53.100333+00 f t pending 1077 \N +4421 2025-10-17 21:47:07.76885+00 2025-10-17 21:47:07.768858+00 f t in_progress_vet 1077 1208 +4422 2025-10-17 21:47:29.695594+00 2025-10-17 21:47:29.695602+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 10:00:00 1077 1208 +4423 2025-10-17 21:47:35.410202+00 2025-10-17 21:47:35.410212+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1077 1208 +4424 2025-10-17 21:49:46.434564+00 2025-10-17 21:49:46.434574+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1074 1208 +4425 2025-10-17 21:49:53.840191+00 2025-10-17 21:49:53.840199+00 f t Confirmado 1074 \N +4426 2025-10-17 21:49:53.808149+00 2025-10-17 21:49:53.808159+00 f t payed 1074 1208 +4427 2025-10-17 21:50:06.557824+00 2025-10-17 21:50:06.557834+00 f t Confirmado 1077 \N +4428 2025-10-17 21:50:06.517492+00 2025-10-17 21:50:06.517501+00 f t payed 1077 1208 +4429 2025-10-17 22:02:35.643021+00 2025-10-17 22:02:35.64303+00 f t rejected D-Precio 1075 1208 +4430 2025-10-17 22:02:47.670408+00 2025-10-17 22:02:47.67042+00 f t rejected D-Averiguando / Desconocido 1071 1208 +4431 2025-10-17 22:17:01.381285+00 2025-10-17 22:17:01.381301+00 f t pending 1078 \N +4432 2025-10-17 22:17:16.605314+00 2025-10-17 22:17:16.605322+00 f t in_progress_vet 1078 1208 +4433 2025-10-17 22:17:24.175469+00 2025-10-17 22:17:24.175478+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 08:00:00 1078 1208 +4434 2025-10-17 22:17:40.827834+00 2025-10-17 22:17:40.827843+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1078 1208 +4435 2025-10-17 22:21:50.726366+00 2025-10-17 22:21:50.726374+00 f t Confirmado 1078 \N +4436 2025-10-17 22:21:50.696942+00 2025-10-17 22:21:50.69695+00 f t payed 1078 1208 +4437 2025-10-17 22:23:27.863628+00 2025-10-17 22:23:27.86364+00 f t pending 1079 \N +4438 2025-10-17 22:25:38.240831+00 2025-10-17 22:25:38.240838+00 f t in_progress_vet 1079 1208 +4439 2025-10-17 22:27:25.234319+00 2025-10-17 22:27:25.234327+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 21:00:00 1079 1208 +4440 2025-10-17 22:28:11.172591+00 2025-10-17 22:28:11.1726+00 f t vet_asked Veterinario asignado: di Risio Daniela 1079 1208 +4441 2025-10-17 22:30:43.415332+00 2025-10-17 22:30:43.41534+00 f t Confirmado 1079 \N +4442 2025-10-17 22:30:43.386629+00 2025-10-17 22:30:43.386638+00 f t payed 1079 1208 +4443 2025-10-17 22:54:58.655775+00 2025-10-17 22:54:58.655784+00 f t coordinated Solicitud coordinada para 2025-10-17 a las 20:30:00 1075 1208 +4444 2025-10-17 22:55:13.520534+00 2025-10-17 22:55:13.520542+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1075 1208 +4445 2025-10-17 22:56:38.271739+00 2025-10-17 22:56:38.271748+00 f t Confirmado 1075 \N +4446 2025-10-17 22:56:38.231087+00 2025-10-17 22:56:38.231096+00 f t payed 1075 1208 +4447 2025-10-17 23:45:27.974116+00 2025-10-17 23:45:27.974135+00 f t pending 1080 \N +4448 2025-10-17 23:48:13.714119+00 2025-10-17 23:48:13.714128+00 f t in_progress_vet 1080 1208 +4449 2025-10-18 00:12:35.015564+00 2025-10-18 00:12:35.015574+00 f t pending 1081 \N +4450 2025-10-18 00:12:51.379076+00 2025-10-18 00:12:51.379105+00 f t in_progress_vet 1081 1208 +4451 2025-10-18 00:13:00.802134+00 2025-10-18 00:13:00.802237+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 13:00:00 1081 1208 +4452 2025-10-18 00:18:10.810786+00 2025-10-18 00:18:10.8108+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1081 1208 +4453 2025-10-18 00:18:24.301746+00 2025-10-18 00:18:24.301755+00 f t Confirmado 1081 \N +4454 2025-10-18 00:18:24.254551+00 2025-10-18 00:18:24.254562+00 f t payed 1081 1208 +4455 2025-10-18 01:31:14.570264+00 2025-10-18 01:31:14.570278+00 f t pending 1082 \N +4456 2025-10-18 01:36:20.859922+00 2025-10-18 01:36:20.859932+00 f t pending 1083 \N +4457 2025-10-18 01:48:53.436433+00 2025-10-18 01:48:53.436447+00 f t pending 1084 \N +4458 2025-10-18 10:52:02.809397+00 2025-10-18 10:52:02.809409+00 f t pending 1085 \N +4459 2025-10-18 12:10:34.955854+00 2025-10-18 12:10:34.955867+00 f t in_progress_vet 1082 1208 +4460 2025-10-18 12:10:43.431089+00 2025-10-18 12:10:43.431098+00 f t in_progress_vet 1083 1208 +4461 2025-10-18 12:10:52.867089+00 2025-10-18 12:10:52.8671+00 f t in_progress_vet 1084 1208 +4462 2025-10-18 12:11:24.968648+00 2025-10-18 12:11:24.968663+00 f t in_progress_vet 1085 1208 +4463 2025-10-18 12:41:49.12707+00 2025-10-18 12:41:49.127082+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 12:00:00 1085 1208 +4464 2025-10-18 13:12:23.806109+00 2025-10-18 13:12:23.806118+00 f t pending 1086 \N +4465 2025-10-18 13:13:16.678598+00 2025-10-18 13:13:16.678606+00 f t in_progress_vet 1086 1208 +4466 2025-10-18 14:16:51.358299+00 2025-10-18 14:16:51.358307+00 f t coordinated Solicitud coordinada para 2025-10-19 a las 10:00:00 1086 1208 +4467 2025-10-18 14:20:30.246034+00 2025-10-18 14:20:30.246043+00 f t vet_accepted 1086 134 +4468 2025-10-18 14:20:30.258414+00 2025-10-18 14:20:30.258426+00 f t in_progress_pay 1086 134 +4469 2025-10-18 14:48:51.378989+00 2025-10-18 14:48:51.378998+00 f t pending 1087 \N +4470 2025-10-18 15:01:51.695418+00 2025-10-18 15:01:51.695428+00 f t in_progress_vet 1087 1208 +4471 2025-10-18 15:02:06.733748+00 2025-10-18 15:02:06.733758+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 20:00:00 1087 1208 +4472 2025-10-18 15:19:57.417416+00 2025-10-18 15:19:57.417428+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 10:00:00 1083 1208 +4473 2025-10-18 15:20:45.369296+00 2025-10-18 15:20:45.369308+00 f t vet_accepted 1083 134 +4474 2025-10-18 15:20:45.385188+00 2025-10-18 15:20:45.385201+00 f t in_progress_pay 1083 134 +4475 2025-10-18 15:31:01.846647+00 2025-10-18 15:31:01.846658+00 f t vet_asked Veterinario asignado: Szczurek Verónica Carolina 1087 1208 +4476 2025-10-18 15:31:02.867241+00 2025-10-18 15:31:02.867254+00 f t vet_accepted 1087 1208 +4477 2025-10-18 15:31:02.882721+00 2025-10-18 15:31:02.882731+00 f t in_progress_pay 1087 1208 +4478 2025-10-18 15:41:48.018103+00 2025-10-18 15:41:48.018111+00 f t pending 1088 \N +4479 2025-10-18 15:43:15.638766+00 2025-10-18 15:43:15.638774+00 f t in_progress_vet 1088 1208 +4480 2025-10-18 15:43:36.491432+00 2025-10-18 15:43:36.491441+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 14:30:00 1088 1208 +4481 2025-10-18 15:44:24.575757+00 2025-10-18 15:44:24.575769+00 f t vet_accepted 1088 134 +4482 2025-10-18 15:44:24.590358+00 2025-10-18 15:44:24.59037+00 f t in_progress_pay 1088 134 +4483 2025-10-18 16:01:38.629526+00 2025-10-18 16:01:38.629539+00 f t rejected D-Averiguando / Desconocido 1086 1208 +4484 2025-10-18 16:09:05.720314+00 2025-10-18 16:09:05.720324+00 f t Confirmado 1088 \N +4485 2025-10-18 16:09:05.685569+00 2025-10-18 16:09:05.685582+00 f t payed 1088 1208 +4486 2025-10-18 16:14:35.238137+00 2025-10-18 16:14:35.238148+00 f t rejected D-Averiguando / Desconocido 1083 1208 +4487 2025-10-18 16:16:37.803089+00 2025-10-18 16:16:37.8031+00 f t pending 1089 \N +4488 2025-10-18 16:17:01.550603+00 2025-10-18 16:17:01.55062+00 f t in_progress_vet 1089 1208 +4489 2025-10-18 16:18:13.631003+00 2025-10-18 16:18:13.63101+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 19:00:00 1089 1208 +4490 2025-10-18 16:18:43.358363+00 2025-10-18 16:18:43.358372+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1089 1208 +4491 2025-10-18 16:18:53.753474+00 2025-10-18 16:18:53.753484+00 f t Confirmado 1089 \N +4492 2025-10-18 16:18:53.721759+00 2025-10-18 16:18:53.721769+00 f t payed 1089 1208 +4493 2025-10-18 16:23:57.439312+00 2025-10-18 16:23:57.439325+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 16:00:00 1080 1208 +4494 2025-10-18 16:24:04.294753+00 2025-10-18 16:24:04.294763+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1080 1208 +4495 2025-10-18 16:24:19.416159+00 2025-10-18 16:24:19.416171+00 f t Confirmado 1080 \N +4496 2025-10-18 16:24:19.378414+00 2025-10-18 16:24:19.378424+00 f t payed 1080 1208 +4497 2025-10-18 16:32:24.362295+00 2025-10-18 16:32:24.362307+00 f t rejected D-Abandono Bot 1084 1208 +4498 2025-10-18 16:33:11.539003+00 2025-10-18 16:33:11.539014+00 f t rejected D-Abandono Bot 1085 1208 +4499 2025-10-18 16:36:28.131732+00 2025-10-18 16:36:28.131741+00 f t pending 1090 \N +4500 2025-10-18 16:36:39.989073+00 2025-10-18 16:36:39.989083+00 f t in_progress_vet 1090 1208 +4501 2025-10-18 16:37:40.798235+00 2025-10-18 16:37:40.798243+00 f t coordinated Solicitud coordinada para 2025-10-16 a las 16:00:00 1090 1208 +4502 2025-10-18 17:16:15.234604+00 2025-10-18 17:16:15.234613+00 f t pending 1091 \N +4503 2025-10-18 17:23:46.455072+00 2025-10-18 17:23:46.455081+00 f t in_progress_vet 1091 1208 +4504 2025-10-18 17:26:46.626065+00 2025-10-18 17:26:46.626074+00 f t pending 1092 \N +4505 2025-10-18 17:27:07.538389+00 2025-10-18 17:27:07.538401+00 f t in_progress_vet 1092 1208 +4506 2025-10-18 17:27:14.702381+00 2025-10-18 17:27:14.702389+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 20:00:00 1092 1208 +4507 2025-10-18 17:27:26.403879+00 2025-10-18 17:27:26.403889+00 f t vet_asked Veterinario asignado: di Risio Daniela 1092 1208 +4508 2025-10-18 17:29:14.774962+00 2025-10-18 17:29:14.774971+00 f t Confirmado 1092 \N +4509 2025-10-18 17:29:14.737505+00 2025-10-18 17:29:14.737514+00 f t payed 1092 1208 +4510 2025-10-18 17:32:47.666797+00 2025-10-18 17:32:47.666806+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 20:30:00 1091 1208 +4511 2025-10-18 17:34:07.687368+00 2025-10-18 17:34:07.687377+00 f t rejected D-Abandono Bot 1082 1208 +4512 2025-10-18 18:33:22.648484+00 2025-10-18 18:33:22.648494+00 f t pending 1093 \N +4513 2025-10-18 20:28:25.776064+00 2025-10-18 20:28:25.776076+00 f t in_progress_vet 1093 1208 +4514 2025-10-18 20:28:39.355255+00 2025-10-18 20:28:39.355263+00 f t coordinated Solicitud coordinada para 2025-10-18 a las 19:00:00 1093 1208 +4515 2025-10-18 20:33:27.221339+00 2025-10-18 20:33:27.22135+00 f t rejected D-Abandono Bot 1087 1208 +4516 2025-10-18 21:08:39.356919+00 2025-10-18 21:08:39.356929+00 f t payed 1091 1208 +4517 2025-10-18 21:08:56.213816+00 2025-10-18 21:08:56.213825+00 f t Confirmado 1091 \N +4518 2025-10-18 21:08:56.969017+00 2025-10-18 21:08:56.969027+00 f t vet_asked Veterinario asignado: Memed Nestor 1091 1208 +4519 2025-10-18 21:11:35.308811+00 2025-10-18 21:11:35.30882+00 f t vet_asked Veterinario asignado: Inseparables Crematorio 1090 1208 +4520 2025-10-18 21:13:32.791636+00 2025-10-18 21:13:32.791648+00 f t Confirmado 1090 \N +4521 2025-10-18 21:13:32.745862+00 2025-10-18 21:13:32.745873+00 f t payed 1090 1208 +4522 2025-10-18 21:25:53.819105+00 2025-10-18 21:25:53.819118+00 f t pending 1094 \N +4523 2025-10-19 12:08:10.216106+00 2025-10-19 12:08:10.216115+00 f t rejected D-Emergencia 1093 114 +4524 2025-10-19 12:23:02.279956+00 2025-10-19 12:23:02.279969+00 f t in_progress_vet 1094 114 +4525 2025-10-19 12:23:29.845097+00 2025-10-19 12:23:29.845105+00 f t coordinated Solicitud coordinada para 2025-10-19 a las 12:00:00 1094 114 +4526 2025-10-19 13:23:41.968267+00 2025-10-19 13:23:41.96828+00 f t rejected D-Averiguando / Desconocido 1094 114 +4527 2025-10-19 14:13:00.301124+00 2025-10-19 14:13:00.301133+00 f t pending 1095 \N +4528 2025-10-19 14:14:06.922962+00 2025-10-19 14:14:06.922971+00 f t in_progress_vet 1095 114 +4529 2025-10-19 14:14:59.357116+00 2025-10-19 14:14:59.357124+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 20:30:00 1095 114 +4530 2025-10-19 14:15:44.009155+00 2025-10-19 14:15:44.009164+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1095 114 +4531 2025-10-19 14:15:44.977957+00 2025-10-19 14:15:44.977969+00 f t vet_accepted 1095 114 +4532 2025-10-19 14:15:44.994079+00 2025-10-19 14:15:44.994091+00 f t in_progress_pay 1095 114 +4533 2025-10-19 14:16:32.667911+00 2025-10-19 14:16:32.667919+00 f t Confirmado 1095 \N +4534 2025-10-19 14:16:32.640458+00 2025-10-19 14:16:32.640467+00 f t payed 1095 114 +4535 2025-10-19 14:19:04.380773+00 2025-10-19 14:19:04.380783+00 f t pending 1096 \N +4536 2025-10-19 14:19:33.110153+00 2025-10-19 14:19:33.110165+00 f t in_progress_vet 1096 114 +4537 2025-10-19 14:20:09.805209+00 2025-10-19 14:20:09.805222+00 f t coordinated Solicitud coordinada para 2025-10-19 a las 14:00:00 1096 114 +4538 2025-10-19 14:21:08.35886+00 2025-10-19 14:21:08.358871+00 f t coordinated Solicitud coordinada para 2025-10-19 a las 14:00:00 1096 114 +4539 2025-10-19 14:21:44.654134+00 2025-10-19 14:21:44.654147+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1096 114 +4540 2025-10-19 14:21:46.060007+00 2025-10-19 14:21:46.060016+00 f t vet_accepted 1096 114 +4541 2025-10-19 14:21:46.071776+00 2025-10-19 14:21:46.071785+00 f t in_progress_pay 1096 114 +4542 2025-10-19 14:24:13.118465+00 2025-10-19 14:24:13.118474+00 f t Confirmado 1096 \N +4543 2025-10-19 14:24:13.086991+00 2025-10-19 14:24:13.087001+00 f t payed 1096 114 +4544 2025-10-19 14:47:36.391431+00 2025-10-19 14:47:36.39144+00 f t pending 1097 \N +4545 2025-10-19 14:49:04.38801+00 2025-10-19 14:49:04.388022+00 f t in_progress_vet 1097 114 +4546 2025-10-19 14:49:21.988721+00 2025-10-19 14:49:21.988729+00 f t coordinated Solicitud coordinada para 2025-10-19 a las 15:00:00 1097 114 +4547 2025-10-19 14:49:28.081389+00 2025-10-19 14:49:28.081398+00 f t coordinated Solicitud coordinada para 2025-10-19 a las 15:00:00 1097 114 +4548 2025-10-19 14:49:52.286984+00 2025-10-19 14:49:52.286997+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1097 114 +4549 2025-10-19 14:59:29.167467+00 2025-10-19 14:59:29.167478+00 f t pending 1098 \N +4550 2025-10-19 15:01:49.086437+00 2025-10-19 15:01:49.086448+00 f t in_progress_vet 1098 114 +4551 2025-10-19 15:02:05.27695+00 2025-10-19 15:02:05.27696+00 f t coordinated Solicitud coordinada para 2025-10-19 a las 13:00:00 1098 114 +4552 2025-10-19 15:25:56.387782+00 2025-10-19 15:25:56.387795+00 f t rejected D-Averiguando / Desconocido 1098 114 +4553 2025-10-19 15:50:47.838837+00 2025-10-19 15:50:47.838849+00 f t pending 1099 \N +4554 2025-10-19 15:51:30.126683+00 2025-10-19 15:51:30.126696+00 f t in_progress_vet 1099 114 +4555 2025-10-19 15:51:44.550537+00 2025-10-19 15:51:44.550548+00 f t coordinated Solicitud coordinada para 2025-10-19 a las 15:00:00 1099 114 +4556 2025-10-19 17:01:24.927734+00 2025-10-19 17:01:24.927747+00 f t vet_accepted 1099 1781 +4557 2025-10-19 17:01:24.946216+00 2025-10-19 17:01:24.946226+00 f t in_progress_pay 1099 1781 +4558 2025-10-19 17:19:00.687085+00 2025-10-19 17:19:00.687099+00 f t rejected D-Abandono Bot 1097 114 +4559 2025-10-19 17:19:23.057626+00 2025-10-19 17:19:23.057635+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1099 114 +4560 2025-10-19 17:19:24.153458+00 2025-10-19 17:19:24.153467+00 f t vet_accepted 1099 114 +4561 2025-10-19 17:19:24.166163+00 2025-10-19 17:19:24.166173+00 f t in_progress_pay 1099 114 +4562 2025-10-19 17:20:31.851115+00 2025-10-19 17:20:31.851123+00 f t Confirmado 1099 \N +4563 2025-10-19 17:20:31.822671+00 2025-10-19 17:20:31.822679+00 f t payed 1099 114 +4564 2025-10-19 17:20:50.755424+00 2025-10-19 17:20:50.755433+00 f t coordinated Solicitud coordinada para 2025-10-19 a las 14:30:00 1099 114 +4565 2025-10-19 17:21:42.717725+00 2025-10-19 17:21:42.717733+00 f t coordinated Solicitud coordinada para 2025-10-19 a las 14:30:00 1099 114 +4566 2025-10-19 17:24:11.428334+00 2025-10-19 17:24:11.428347+00 f t pending 1100 \N +4567 2025-10-19 17:24:29.800388+00 2025-10-19 17:24:29.800398+00 f t in_progress_vet 1100 114 +4568 2025-10-19 17:24:51.874001+00 2025-10-19 17:24:51.87401+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 18:30:00 1100 114 +4569 2025-10-19 17:25:13.645553+00 2025-10-19 17:25:13.645565+00 f t vet_asked Veterinario asignado: Palladino Martín 1100 114 +4570 2025-10-19 17:25:14.680968+00 2025-10-19 17:25:14.680982+00 f t vet_accepted 1100 114 +4571 2025-10-19 17:25:14.705073+00 2025-10-19 17:25:14.705087+00 f t in_progress_pay 1100 114 +4572 2025-10-19 17:27:05.902924+00 2025-10-19 17:27:05.902934+00 f t Confirmado 1100 \N +4573 2025-10-19 17:27:05.855501+00 2025-10-19 17:27:05.85551+00 f t payed 1100 114 +4574 2025-10-19 18:36:04.380317+00 2025-10-19 18:36:04.38033+00 f t pending 1101 \N +4575 2025-10-19 18:42:15.444357+00 2025-10-19 18:42:15.444368+00 f t in_progress_vet 1101 114 +4576 2025-10-19 18:42:40.022711+00 2025-10-19 18:42:40.022722+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 10:30:00 1101 114 +4577 2025-10-19 19:47:40.604318+00 2025-10-19 19:47:40.604331+00 f t pending 1102 \N +4578 2025-10-19 19:47:57.237086+00 2025-10-19 19:47:57.237097+00 f t in_progress_vet 1102 114 +4579 2025-10-19 19:48:21.160804+00 2025-10-19 19:48:21.160811+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 17:30:00 1102 114 +4580 2025-10-19 19:48:28.058763+00 2025-10-19 19:48:28.058772+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1102 114 +4581 2025-10-19 19:48:29.327838+00 2025-10-19 19:48:29.327848+00 f t vet_accepted 1102 114 +4582 2025-10-19 19:48:29.343249+00 2025-10-19 19:48:29.343261+00 f t in_progress_pay 1102 114 +4583 2025-10-19 19:49:13.021538+00 2025-10-19 19:49:13.02155+00 f t Confirmado 1102 \N +4584 2025-10-19 19:49:12.982241+00 2025-10-19 19:49:12.982252+00 f t payed 1102 114 +4585 2025-10-19 21:56:28.319327+00 2025-10-19 21:56:28.319337+00 f t pending 1103 \N +4586 2025-10-20 03:56:13.655746+00 2025-10-20 03:56:13.655758+00 f t pending 1104 \N +4587 2025-10-20 11:09:54.001947+00 2025-10-20 11:09:54.001956+00 f t pending 1105 \N +4588 2025-10-20 11:31:48.043906+00 2025-10-20 11:31:48.043915+00 f t pending 1106 \N +4589 2025-10-20 11:57:44.986239+00 2025-10-20 11:57:44.986249+00 f t in_progress_vet 1103 1583 +4590 2025-10-20 11:57:54.248674+00 2025-10-20 11:57:54.248682+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 12:00:00 1103 1583 +4591 2025-10-20 11:58:41.42567+00 2025-10-20 11:58:41.425682+00 f t in_progress_vet 1104 1583 +4592 2025-10-20 11:59:33.116652+00 2025-10-20 11:59:33.116661+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 11:00:00 1104 1583 +4593 2025-10-20 12:01:28.443981+00 2025-10-20 12:01:28.443992+00 f t in_progress_vet 1105 1583 +4594 2025-10-20 12:04:03.737162+00 2025-10-20 12:04:03.737174+00 f t in_progress_vet 1106 1583 +4595 2025-10-20 12:04:11.351305+00 2025-10-20 12:04:11.351314+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 16:00:00 1106 1583 +4596 2025-10-20 12:25:06.808513+00 2025-10-20 12:25:06.808527+00 f t pending 1107 \N +4597 2025-10-20 12:40:20.57307+00 2025-10-20 12:40:20.57308+00 f t pending 1108 \N +4598 2025-10-20 12:57:48.213154+00 2025-10-20 12:57:48.213165+00 f t pending 1109 \N +4599 2025-10-20 12:58:36.652353+00 2025-10-20 12:58:36.652364+00 f t in_progress_vet 1109 1583 +4600 2025-10-20 12:58:43.082899+00 2025-10-20 12:58:43.08291+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 18:00:00 1109 1583 +4601 2025-10-20 13:13:36.595069+00 2025-10-20 13:13:36.595079+00 f t pending 1110 \N +4602 2025-10-20 13:14:05.764112+00 2025-10-20 13:14:05.764124+00 f t in_progress_vet 1110 1583 +4603 2025-10-20 13:14:12.544722+00 2025-10-20 13:14:12.54473+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 17:30:00 1110 1583 +4604 2025-10-20 13:14:41.428577+00 2025-10-20 13:14:41.428586+00 f t vet_asked Veterinario asignado: Delfino Gerardo 1110 1583 +4605 2025-10-20 13:29:19.428756+00 2025-10-20 13:29:19.428766+00 f t pending 1111 \N +4606 2025-10-20 13:30:09.802233+00 2025-10-20 13:30:09.802245+00 f t pending 1112 \N +4607 2025-10-20 13:31:40.186175+00 2025-10-20 13:31:40.186185+00 f t pending 1113 \N +4608 2025-10-20 13:34:18.475763+00 2025-10-20 13:34:18.475772+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1110 1583 +4609 2025-10-20 13:34:19.337062+00 2025-10-20 13:34:19.337071+00 f t vet_accepted 1110 1583 +4610 2025-10-20 13:34:19.351262+00 2025-10-20 13:34:19.351272+00 f t in_progress_pay 1110 1583 +4611 2025-10-20 13:35:58.812798+00 2025-10-20 13:35:58.812807+00 f t in_progress_vet 1113 1583 +4612 2025-10-20 13:36:10.435304+00 2025-10-20 13:36:10.435312+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 11:00:00 1113 1583 +4613 2025-10-20 13:50:08.921139+00 2025-10-20 13:50:08.921152+00 f t in_progress_vet 1112 1583 +4614 2025-10-20 13:50:18.080724+00 2025-10-20 13:50:18.080733+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 15:00:00 1112 1583 +4615 2025-10-20 13:53:41.801013+00 2025-10-20 13:53:41.801022+00 f t Confirmado 1110 \N +4616 2025-10-20 13:53:41.752558+00 2025-10-20 13:53:41.752566+00 f t payed 1110 1583 +4617 2025-10-20 14:22:43.153724+00 2025-10-20 14:22:43.153731+00 f t in_progress_vet 1107 1583 +4618 2025-10-20 14:22:50.937806+00 2025-10-20 14:22:50.937816+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 15:00:00 1107 1583 +4619 2025-10-20 14:25:05.937848+00 2025-10-20 14:25:05.937858+00 f t vet_accepted 1107 1781 +4620 2025-10-20 14:25:05.953554+00 2025-10-20 14:25:05.953565+00 f t in_progress_pay 1107 1781 +4621 2025-10-20 14:30:45.679969+00 2025-10-20 14:30:45.679979+00 f t pending 1114 \N +4622 2025-10-20 14:31:05.540028+00 2025-10-20 14:31:05.540039+00 f t in_progress_vet 1114 1583 +4623 2025-10-20 14:31:15.487882+00 2025-10-20 14:31:15.487893+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 16:00:00 1114 1583 +4624 2025-10-20 14:36:27.316121+00 2025-10-20 14:36:27.316133+00 f t in_progress_vet 1108 1583 +4625 2025-10-20 14:36:35.799014+00 2025-10-20 14:36:35.799023+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 17:00:00 1108 1583 +4626 2025-10-20 14:40:32.70953+00 2025-10-20 14:40:32.709537+00 f t in_progress_vet 1111 1583 +4627 2025-10-20 14:48:27.332335+00 2025-10-20 14:48:27.332347+00 f t payed 1114 1583 +4628 2025-10-20 14:48:33.587357+00 2025-10-20 14:48:33.587365+00 f t Confirmado 1114 \N +4629 2025-10-20 14:48:34.449016+00 2025-10-20 14:48:34.449027+00 f t vet_asked Veterinario asignado: di Risio Daniela 1114 1583 +4630 2025-10-20 14:48:35.757609+00 2025-10-20 14:48:35.757618+00 f t vet_accepted 1114 1583 +4631 2025-10-20 15:02:32.724889+00 2025-10-20 15:02:32.724897+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1113 1583 +4632 2025-10-20 15:02:33.379782+00 2025-10-20 15:02:33.379791+00 f t vet_accepted 1113 1583 +4633 2025-10-20 15:02:33.393825+00 2025-10-20 15:02:33.393834+00 f t in_progress_pay 1113 1583 +4634 2025-10-20 15:03:20.04063+00 2025-10-20 15:03:20.040639+00 f t Confirmado 1113 \N +4635 2025-10-20 15:03:20.005128+00 2025-10-20 15:03:20.005137+00 f t payed 1113 1583 +4636 2025-10-20 15:05:11.623638+00 2025-10-20 15:05:11.62365+00 f t pending 1115 \N +4637 2025-10-20 15:05:29.205502+00 2025-10-20 15:05:29.205513+00 f t in_progress_vet 1115 1583 +4638 2025-10-20 15:05:36.132711+00 2025-10-20 15:05:36.13272+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 09:00:00 1115 1583 +4639 2025-10-20 15:15:52.640677+00 2025-10-20 15:15:52.640687+00 f t pending 1116 \N +4640 2025-10-20 15:15:53.42343+00 2025-10-20 15:15:53.423443+00 f t pending 1117 \N +4641 2025-10-20 15:16:19.010011+00 2025-10-20 15:16:19.010019+00 f t in_progress_vet 1117 1583 +4642 2025-10-20 15:16:24.989133+00 2025-10-20 15:16:24.989142+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 14:00:00 1117 1583 +4643 2025-10-20 15:17:44.918654+00 2025-10-20 15:17:44.918663+00 f t vet_accepted 1117 124 +4644 2025-10-20 15:17:44.933196+00 2025-10-20 15:17:44.933205+00 f t in_progress_pay 1117 124 +4645 2025-10-20 15:44:24.753554+00 2025-10-20 15:44:24.753565+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1115 1583 +4646 2025-10-20 15:44:25.575322+00 2025-10-20 15:44:25.575331+00 f t vet_accepted 1115 1583 +4647 2025-10-20 15:44:25.609904+00 2025-10-20 15:44:25.609919+00 f t in_progress_pay 1115 1583 +4648 2025-10-20 15:44:55.957345+00 2025-10-20 15:44:55.957354+00 f t Confirmado 1115 \N +4649 2025-10-20 15:44:55.919886+00 2025-10-20 15:44:55.919895+00 f t payed 1115 1583 +4650 2025-10-20 15:46:50.075095+00 2025-10-20 15:46:50.075113+00 f t pending 1118 \N +4651 2025-10-20 15:47:04.248752+00 2025-10-20 15:47:04.248763+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 10:00:00 1118 1583 +4652 2025-10-20 15:47:32.281061+00 2025-10-20 15:47:32.28107+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1118 1583 +4653 2025-10-20 15:47:33.011834+00 2025-10-20 15:47:33.011842+00 f t vet_accepted 1118 1583 +4654 2025-10-20 15:47:33.025924+00 2025-10-20 15:47:33.025933+00 f t in_progress_pay 1118 1583 +4655 2025-10-20 15:47:40.031282+00 2025-10-20 15:47:40.031294+00 f t Confirmado 1118 \N +4656 2025-10-20 15:47:39.988766+00 2025-10-20 15:47:39.988779+00 f t payed 1118 1583 +4657 2025-10-20 16:24:42.383191+00 2025-10-20 16:24:42.383202+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 17:30:00 1111 1583 +4658 2025-10-20 16:24:58.632562+00 2025-10-20 16:24:58.632572+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1111 1583 +4659 2025-10-20 16:24:59.294784+00 2025-10-20 16:24:59.294796+00 f t vet_accepted 1111 1583 +4660 2025-10-20 16:24:59.308263+00 2025-10-20 16:24:59.308274+00 f t in_progress_pay 1111 1583 +4661 2025-10-20 16:25:20.075989+00 2025-10-20 16:25:20.075999+00 f t Confirmado 1111 \N +4662 2025-10-20 16:25:20.04444+00 2025-10-20 16:25:20.044453+00 f t payed 1111 1583 +4663 2025-10-20 16:46:34.479981+00 2025-10-20 16:46:34.479988+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 19:30:00 1109 1583 +4664 2025-10-20 16:46:50.113136+00 2025-10-20 16:46:50.113147+00 f t vet_asked Veterinario asignado: Palladino Martín 1109 1583 +4665 2025-10-20 16:46:50.801129+00 2025-10-20 16:46:50.801138+00 f t vet_accepted 1109 1583 +4666 2025-10-20 16:46:50.814782+00 2025-10-20 16:46:50.814791+00 f t in_progress_pay 1109 1583 +4667 2025-10-20 16:50:08.11896+00 2025-10-20 16:50:08.118967+00 f t Confirmado 1109 \N +4668 2025-10-20 16:50:08.089489+00 2025-10-20 16:50:08.089504+00 f t payed 1109 1583 +4669 2025-10-20 18:01:37.164106+00 2025-10-20 18:01:37.16412+00 f t pending 1119 \N +4670 2025-10-20 18:01:51.386981+00 2025-10-20 18:01:51.386993+00 f t in_progress_vet 1119 1583 +4671 2025-10-20 18:01:57.737821+00 2025-10-20 18:01:57.737831+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 11:00:00 1119 1583 +4672 2025-10-20 18:04:57.919042+00 2025-10-20 18:04:57.919052+00 f t pending 1120 \N +4673 2025-10-20 18:09:47.059686+00 2025-10-20 18:09:47.059697+00 f t in_progress_vet 1120 1583 +4674 2025-10-20 18:13:57.709833+00 2025-10-20 18:13:57.709846+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 10:00:00 1120 1583 +4675 2025-10-20 18:40:42.317737+00 2025-10-20 18:40:42.317747+00 f t pending 1121 \N +4676 2025-10-20 18:44:07.009717+00 2025-10-20 18:44:07.009728+00 f t in_progress_vet 1121 114 +4677 2025-10-20 18:44:29.197826+00 2025-10-20 18:44:29.197834+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 11:00:00 1121 114 +4678 2025-10-20 18:46:20.60502+00 2025-10-20 18:46:20.605032+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1121 114 +4679 2025-10-20 18:46:21.547742+00 2025-10-20 18:46:21.547751+00 f t vet_accepted 1121 114 +4680 2025-10-20 18:46:21.560632+00 2025-10-20 18:46:21.560642+00 f t in_progress_pay 1121 114 +4681 2025-10-20 18:46:52.902571+00 2025-10-20 18:46:52.902583+00 f t Confirmado 1121 \N +4682 2025-10-20 18:46:52.867801+00 2025-10-20 18:46:52.86781+00 f t payed 1121 114 +4683 2025-10-20 19:34:11.91043+00 2025-10-20 19:34:11.910444+00 f t pending 1122 \N +4684 2025-10-20 19:34:24.024413+00 2025-10-20 19:34:24.024427+00 f t in_progress_vet 1122 1583 +4685 2025-10-20 19:34:30.038279+00 2025-10-20 19:34:30.038289+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 10:00:00 1122 1583 +4686 2025-10-20 19:34:48.348608+00 2025-10-20 19:34:48.348619+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1122 1583 +4687 2025-10-20 19:34:48.824882+00 2025-10-20 19:34:48.824891+00 f t vet_accepted 1122 1583 +4688 2025-10-20 19:34:48.852404+00 2025-10-20 19:34:48.852415+00 f t in_progress_pay 1122 1583 +4689 2025-10-20 19:35:01.971534+00 2025-10-20 19:35:01.971548+00 f t Confirmado 1122 \N +4690 2025-10-20 19:35:01.897455+00 2025-10-20 19:35:01.897469+00 f t payed 1122 1583 +4691 2025-10-20 19:40:13.03402+00 2025-10-20 19:40:13.03403+00 f t pending 1123 \N +4692 2025-10-20 19:43:08.903844+00 2025-10-20 19:43:08.903854+00 f t in_progress_vet 1123 114 +4693 2025-10-20 19:43:17.997564+00 2025-10-20 19:43:17.997573+00 f t pending 1124 \N +4694 2025-10-20 19:43:22.038579+00 2025-10-20 19:43:22.038587+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 17:30:00 1123 114 +4695 2025-10-20 19:43:44.014655+00 2025-10-20 19:43:44.014664+00 f t in_progress_vet 1124 1583 +4696 2025-10-20 19:43:58.332284+00 2025-10-20 19:43:58.332293+00 f t vet_asked Veterinario asignado: di Risio Daniela 1123 114 +4697 2025-10-20 19:43:59.312511+00 2025-10-20 19:43:59.31252+00 f t vet_accepted 1123 114 +4698 2025-10-20 19:43:59.326934+00 2025-10-20 19:43:59.326946+00 f t in_progress_pay 1123 114 +4699 2025-10-20 19:44:11.76934+00 2025-10-20 19:44:11.769349+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 20:00:00 1124 1583 +4700 2025-10-20 19:48:47.281829+00 2025-10-20 19:48:47.281838+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1124 1583 +4701 2025-10-20 19:48:48.288266+00 2025-10-20 19:48:48.28828+00 f t vet_accepted 1124 1583 +4702 2025-10-20 19:48:48.305512+00 2025-10-20 19:48:48.305521+00 f t in_progress_pay 1124 1583 +4703 2025-10-20 19:52:46.855655+00 2025-10-20 19:52:46.855663+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 17:30:00 1124 1583 +4704 2025-10-20 19:52:54.155595+00 2025-10-20 19:52:54.155606+00 f t Confirmado 1124 \N +4705 2025-10-20 19:52:54.115306+00 2025-10-20 19:52:54.115319+00 f t payed 1124 1583 +4706 2025-10-20 20:18:36.646247+00 2025-10-20 20:18:36.646258+00 f t pending 1125 \N +4707 2025-10-20 20:18:58.926176+00 2025-10-20 20:18:58.926187+00 f t in_progress_vet 1125 1583 +4708 2025-10-20 20:19:11.744464+00 2025-10-20 20:19:11.744472+00 f t coordinated Solicitud coordinada para 2025-10-20 a las 17:30:00 1125 1583 +4709 2025-10-20 20:19:28.890926+00 2025-10-20 20:19:28.890934+00 f t vet_asked Veterinario asignado: Levisman Damián 1125 1583 +4710 2025-10-20 20:19:30.356042+00 2025-10-20 20:19:30.356053+00 f t vet_accepted 1125 1583 +4711 2025-10-20 20:19:30.371732+00 2025-10-20 20:19:30.371744+00 f t in_progress_pay 1125 1583 +4712 2025-10-20 20:19:45.695494+00 2025-10-20 20:19:45.695503+00 f t Confirmado 1125 \N +4713 2025-10-20 20:19:45.665922+00 2025-10-20 20:19:45.665932+00 f t payed 1125 1583 +4714 2025-10-20 22:52:05.33275+00 2025-10-20 22:52:05.332761+00 f t Confirmado 1123 \N +4715 2025-10-20 22:52:05.291783+00 2025-10-20 22:52:05.291795+00 f t payed 1123 114 +4716 2025-10-20 23:17:15.790944+00 2025-10-20 23:17:15.790954+00 f t pending 1126 \N +4717 2025-10-20 23:17:28.520646+00 2025-10-20 23:17:28.520655+00 f t pending 1127 \N +4718 2025-10-20 23:19:33.880741+00 2025-10-20 23:19:33.880752+00 f t in_progress_vet 1127 114 +4719 2025-10-20 23:19:55.985951+00 2025-10-20 23:19:55.985963+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 09:00:00 1127 114 +4720 2025-10-20 23:20:15.986047+00 2025-10-20 23:20:15.986055+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 09:00:00 1127 114 +4721 2025-10-20 23:20:42.538051+00 2025-10-20 23:20:42.53806+00 f t vet_asked Veterinario asignado: Palummo Mariana 1127 114 +4722 2025-10-20 23:20:43.540899+00 2025-10-20 23:20:43.540908+00 f t vet_accepted 1127 114 +4723 2025-10-20 23:20:43.554735+00 2025-10-20 23:20:43.554745+00 f t in_progress_pay 1127 114 +4724 2025-10-20 23:21:23.401035+00 2025-10-20 23:21:23.401043+00 f t Confirmado 1127 \N +4725 2025-10-20 23:21:23.370579+00 2025-10-20 23:21:23.370591+00 f t payed 1127 114 +4726 2025-10-20 23:21:42.386591+00 2025-10-20 23:21:42.387203+00 f t in_progress_vet 1126 114 +4727 2025-10-20 23:23:15.349054+00 2025-10-20 23:23:15.349268+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 10:00:00 1126 114 +4728 2025-10-21 00:14:40.651474+00 2025-10-21 00:14:40.651483+00 f t pending 1128 \N +4729 2025-10-21 00:14:47.177337+00 2025-10-21 00:14:47.17735+00 f t in_progress_vet 1128 114 +4730 2025-10-21 00:16:24.665114+00 2025-10-21 00:16:24.665124+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 15:30:00 1128 114 +4731 2025-10-21 00:17:05.090302+00 2025-10-21 00:17:05.090313+00 f t payed 1128 114 +4732 2025-10-21 00:18:16.551383+00 2025-10-21 00:18:16.551394+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 15:30:00 1128 114 +4733 2025-10-21 00:19:32.904287+00 2025-10-21 00:19:32.904301+00 f t vet_asked Veterinario asignado: Vecino Carolina 1128 114 +4734 2025-10-21 00:19:34.044291+00 2025-10-21 00:19:34.0443+00 f t vet_accepted 1128 114 +4735 2025-10-21 00:20:07.036606+00 2025-10-21 00:20:07.036616+00 f t Confirmado 1128 \N +4736 2025-10-21 00:20:06.995502+00 2025-10-21 00:20:06.995515+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 15:30:00 1128 114 +4737 2025-10-21 01:32:48.945099+00 2025-10-21 01:32:48.945109+00 f t pending 1129 \N +4738 2025-10-21 11:35:23.600153+00 2025-10-21 11:35:23.600162+00 f t pending 1130 \N +4739 2025-10-21 11:54:23.580029+00 2025-10-21 11:54:23.580041+00 f t pending 1131 \N +4740 2025-10-21 12:10:22.72021+00 2025-10-21 12:10:22.720219+00 f t in_progress_vet 1130 1208 +4741 2025-10-21 12:10:52.438879+00 2025-10-21 12:10:52.438891+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 11:00:00 1130 1208 +4742 2025-10-21 12:17:23.083602+00 2025-10-21 12:17:23.083611+00 f t rejected D-Emergencia 1130 1208 +4743 2025-10-21 12:17:31.32925+00 2025-10-21 12:17:31.32926+00 f t in_progress_vet 1129 1208 +4744 2025-10-21 12:17:39.607967+00 2025-10-21 12:17:39.607979+00 f t in_progress_vet 1131 1208 +4745 2025-10-21 12:36:24.335295+00 2025-10-21 12:36:24.335306+00 f t rejected D-Emergencia 1131 1208 +4746 2025-10-21 13:10:40.503289+00 2025-10-21 13:10:40.5033+00 f t pending 1132 \N +4747 2025-10-21 13:35:44.602048+00 2025-10-21 13:35:44.60206+00 f t in_progress_vet 1132 1208 +4748 2025-10-21 14:20:06.448344+00 2025-10-21 14:20:06.448358+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 19:00:00 1132 1208 +4749 2025-10-21 14:30:12.344192+00 2025-10-21 14:30:12.344202+00 f t pending 1133 \N +4750 2025-10-21 14:30:25.972508+00 2025-10-21 14:30:25.972517+00 f t in_progress_vet 1133 1208 +4751 2025-10-21 14:37:33.345807+00 2025-10-21 14:37:33.345818+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 10:00:00 1133 1208 +4752 2025-10-21 14:37:39.2779+00 2025-10-21 14:37:39.277911+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1133 1208 +4753 2025-10-21 14:40:14.315427+00 2025-10-21 14:40:14.31544+00 f t pending 1134 \N +4754 2025-10-21 14:43:46.896817+00 2025-10-21 14:43:46.896827+00 f t in_progress_vet 1134 1583 +4755 2025-10-21 14:43:48.870644+00 2025-10-21 14:43:48.870654+00 f t pending 1135 \N +4756 2025-10-21 14:43:54.255631+00 2025-10-21 14:43:54.255642+00 f t coordinated Solicitud coordinada para 2025-10-23 a las 08:00:00 1134 1583 +4757 2025-10-21 14:43:58.411917+00 2025-10-21 14:43:58.411927+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 1134 1583 +4758 2025-10-21 14:43:59.006647+00 2025-10-21 14:43:59.006655+00 f t vet_accepted 1134 1583 +4759 2025-10-21 14:43:59.018988+00 2025-10-21 14:43:59.018997+00 f t in_progress_pay 1134 1583 +4760 2025-10-21 14:44:01.663585+00 2025-10-21 14:44:01.663598+00 f t in_progress_vet 1135 1208 +4761 2025-10-21 14:44:10.079156+00 2025-10-21 14:44:10.079164+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 11:00:00 1135 1208 +4762 2025-10-21 14:44:27.688705+00 2025-10-21 14:44:27.688715+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1135 1208 +4763 2025-10-21 14:44:56.885952+00 2025-10-21 14:44:56.88596+00 f t Confirmado 1135 \N +4764 2025-10-21 14:44:56.85646+00 2025-10-21 14:44:56.856469+00 f t payed 1135 1208 +4765 2025-10-21 14:45:19.593418+00 2025-10-21 14:45:19.593432+00 f t Confirmado 1133 \N +4766 2025-10-21 14:45:19.551896+00 2025-10-21 14:45:19.551909+00 f t payed 1133 1208 +4767 2025-10-21 14:55:09.840186+00 2025-10-21 14:55:09.840199+00 f t pending 1136 \N +4768 2025-10-21 14:57:03.159503+00 2025-10-21 14:57:03.159512+00 f t rejected D-Provincia 1136 1583 +4934 2025-10-22 18:52:38.51355+00 2025-10-22 18:52:38.513559+00 f t in_progress_vet 1160 1208 +4769 2025-10-21 14:58:38.367769+00 2025-10-21 14:58:38.367782+00 f t vet_asked Veterinario asignado: Levisman Damián 1132 1208 +4770 2025-10-21 14:59:04.251576+00 2025-10-21 14:59:04.251592+00 f t Confirmado 1132 \N +4771 2025-10-21 14:59:04.211791+00 2025-10-21 14:59:04.2118+00 f t payed 1132 1208 +4772 2025-10-21 15:00:06.575295+00 2025-10-21 15:00:06.57531+00 f t rejected D-Provincia 1136 1583 +4773 2025-10-21 15:22:36.258084+00 2025-10-21 15:22:36.258092+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 20:00:00 1129 1208 +4774 2025-10-21 15:22:40.939223+00 2025-10-21 15:22:40.939236+00 f t pending 1137 \N +4775 2025-10-21 15:23:11.162294+00 2025-10-21 15:23:11.162304+00 f t in_progress_vet 1137 1583 +4776 2025-10-21 15:23:17.891302+00 2025-10-21 15:23:17.891314+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 18:00:00 1137 1583 +4777 2025-10-21 15:23:22.027714+00 2025-10-21 15:23:22.027726+00 f t vet_asked Veterinario asignado: Memed Nestor 1137 1583 +4778 2025-10-21 15:23:22.645631+00 2025-10-21 15:23:22.64564+00 f t vet_accepted 1137 1583 +4779 2025-10-21 15:23:22.659403+00 2025-10-21 15:23:22.659413+00 f t in_progress_pay 1137 1583 +4780 2025-10-21 15:23:48.490081+00 2025-10-21 15:23:48.49009+00 f t Confirmado 1137 \N +4781 2025-10-21 15:23:48.458754+00 2025-10-21 15:23:48.458766+00 f t payed 1137 1583 +4782 2025-10-21 15:28:54.568338+00 2025-10-21 15:28:54.568347+00 f t Confirmado 1134 \N +4783 2025-10-21 15:28:54.528944+00 2025-10-21 15:28:54.528953+00 f t payed 1134 1583 +4784 2025-10-21 15:33:46.498319+00 2025-10-21 15:33:46.498331+00 f t pending 1138 \N +4785 2025-10-21 15:33:56.456126+00 2025-10-21 15:33:56.456138+00 f t in_progress_vet 1138 1583 +4786 2025-10-21 15:34:07.654928+00 2025-10-21 15:34:07.654936+00 f t coordinated Solicitud coordinada para 2025-10-23 a las 10:00:00 1138 1583 +4787 2025-10-21 15:34:12.275038+00 2025-10-21 15:34:12.275047+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1138 1583 +4788 2025-10-21 15:34:13.418991+00 2025-10-21 15:34:13.419+00 f t vet_accepted 1138 1583 +4789 2025-10-21 15:34:13.441325+00 2025-10-21 15:34:13.441338+00 f t in_progress_pay 1138 1583 +4790 2025-10-21 15:34:54.3167+00 2025-10-21 15:34:54.316709+00 f t Confirmado 1138 \N +4791 2025-10-21 15:34:54.279356+00 2025-10-21 15:34:54.279369+00 f t payed 1138 1583 +4792 2025-10-21 15:51:33.22173+00 2025-10-21 15:51:33.221744+00 f t pending 1139 \N +4793 2025-10-21 15:54:45.828139+00 2025-10-21 15:54:45.828149+00 f t in_progress_vet 1139 1583 +4794 2025-10-21 16:36:20.389036+00 2025-10-21 16:36:20.389045+00 f t pending 1140 \N +4795 2025-10-21 16:36:42.541617+00 2025-10-21 16:36:42.541627+00 f t in_progress_vet 1140 1208 +4796 2025-10-21 16:44:30.079238+00 2025-10-21 16:44:30.079249+00 f t pending 1141 \N +4797 2025-10-21 16:44:36.304486+00 2025-10-21 16:44:36.304495+00 f t in_progress_vet 1141 1208 +4798 2025-10-21 16:45:18.481373+00 2025-10-21 16:45:18.481382+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 17:00:00 1140 1208 +4799 2025-10-21 16:48:41.199637+00 2025-10-21 16:48:41.19965+00 f t rejected D-Abandono Bot 402 1583 +4800 2025-10-21 16:49:43.146884+00 2025-10-21 16:49:43.146893+00 f t rejected D-Abandono Bot 459 1583 +4801 2025-10-21 16:53:08.084322+00 2025-10-21 16:53:08.084331+00 f t rejected D-Tiempo de respuestas 479 1583 +4802 2025-10-21 16:55:16.278074+00 2025-10-21 16:55:16.278082+00 f t rejected D-Emergencia 480 1583 +4803 2025-10-21 16:57:35.452364+00 2025-10-21 16:57:35.452376+00 f t rejected D-No dimos respuesta 494 1583 +4804 2025-10-21 16:58:18.935592+00 2025-10-21 16:58:18.935601+00 f t rejected D-Tiempo de respuestas 569 1583 +4805 2025-10-21 17:12:23.910028+00 2025-10-21 17:12:23.910036+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 10:00:00 1141 1208 +4806 2025-10-21 17:23:52.54421+00 2025-10-21 17:23:52.544223+00 f t vet_accepted 1141 134 +4807 2025-10-21 17:23:52.558577+00 2025-10-21 17:23:52.558585+00 f t in_progress_pay 1141 134 +4808 2025-10-21 17:40:21.670776+00 2025-10-21 17:40:21.670785+00 f t rejected D-Abandono Bot 655 1583 +4809 2025-10-21 17:40:51.363587+00 2025-10-21 17:40:51.363597+00 f t rejected D-Falta de servicio 701 1583 +4810 2025-10-21 17:41:18.384367+00 2025-10-21 17:41:18.384377+00 f t rejected D-Abandono Bot 704 1583 +4811 2025-10-21 17:41:53.642984+00 2025-10-21 17:41:53.642994+00 f t rejected D-Abandono Bot 980 1583 +4812 2025-10-21 17:46:45.685909+00 2025-10-21 17:46:45.685922+00 f t pending 1142 \N +4813 2025-10-21 17:47:13.014459+00 2025-10-21 17:47:13.014469+00 f t in_progress_vet 1142 1208 +4814 2025-10-21 18:18:59.444524+00 2025-10-21 18:18:59.444536+00 f t Confirmado 1141 \N +4815 2025-10-21 18:18:59.41118+00 2025-10-21 18:18:59.41119+00 f t payed 1141 1208 +4816 2025-10-21 18:28:58.242027+00 2025-10-21 18:28:58.242037+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 10:00:00 1142 1208 +4817 2025-10-21 18:34:38.32937+00 2025-10-21 18:34:38.329379+00 f t pending 1143 \N +4818 2025-10-21 18:34:49.462607+00 2025-10-21 18:34:49.462616+00 f t in_progress_vet 1143 1208 +4819 2025-10-21 18:34:58.269923+00 2025-10-21 18:34:58.269932+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 20:00:00 1143 1208 +4820 2025-10-21 18:36:19.136624+00 2025-10-21 18:36:19.136634+00 f t vet_accepted 1143 134 +4821 2025-10-21 18:36:19.149358+00 2025-10-21 18:36:19.149367+00 f t in_progress_pay 1143 134 +4822 2025-10-21 18:42:16.913411+00 2025-10-21 18:42:16.913419+00 f t vet_accepted 1129 122 +4823 2025-10-21 18:42:16.923992+00 2025-10-21 18:42:16.924001+00 f t in_progress_pay 1129 122 +4824 2025-10-21 19:05:08.522912+00 2025-10-21 19:05:08.522926+00 f t pending 1144 \N +4825 2025-10-21 19:06:08.482562+00 2025-10-21 19:06:08.482571+00 f t in_progress_vet 1144 1583 +4826 2025-10-21 19:06:14.779084+00 2025-10-21 19:06:14.779092+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 19:00:00 1144 1583 +4827 2025-10-21 19:20:22.570102+00 2025-10-21 19:20:22.57011+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 20:00:00 1140 1208 +4828 2025-10-21 19:20:32.982478+00 2025-10-21 19:20:32.982489+00 f t vet_asked Veterinario asignado: Palummo Mariana 1140 1208 +4829 2025-10-21 19:20:38.884486+00 2025-10-21 19:20:38.884497+00 f t payed 1140 1208 +4830 2025-10-21 19:25:33.518102+00 2025-10-21 19:25:33.518111+00 f t pending 1145 \N +4831 2025-10-21 19:25:44.063376+00 2025-10-21 19:25:44.063385+00 f t in_progress_vet 1145 1208 +4832 2025-10-21 19:26:14.539504+00 2025-10-21 19:26:14.539516+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 20:00:00 1145 1208 +4833 2025-10-21 19:26:52.431215+00 2025-10-21 19:26:52.431227+00 f t vet_asked Veterinario asignado: Palummo Mariana 1145 1208 +4834 2025-10-21 19:27:07.349496+00 2025-10-21 19:27:07.349504+00 f t Confirmado 1145 \N +4835 2025-10-21 19:27:07.307223+00 2025-10-21 19:27:07.307237+00 f t payed 1145 1208 +4836 2025-10-21 19:32:20.145306+00 2025-10-21 19:32:20.145315+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1144 1583 +4837 2025-10-21 19:32:21.037377+00 2025-10-21 19:32:21.037389+00 f t vet_accepted 1144 1583 +4838 2025-10-21 19:32:21.054356+00 2025-10-21 19:32:21.05437+00 f t in_progress_pay 1144 1583 +4839 2025-10-21 19:35:06.086916+00 2025-10-21 19:35:06.086926+00 f t pending 1146 \N +4840 2025-10-21 19:37:14.922678+00 2025-10-21 19:37:14.92269+00 f t in_progress_vet 1146 1583 +4841 2025-10-21 19:37:22.968525+00 2025-10-21 19:37:22.968536+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 10:00:00 1146 1583 +4842 2025-10-21 19:37:34.69485+00 2025-10-21 19:37:34.694859+00 f t vet_asked Veterinario asignado: Passio Laura 1146 1583 +4843 2025-10-21 19:37:35.612945+00 2025-10-21 19:37:35.612954+00 f t vet_accepted 1146 1583 +4844 2025-10-21 19:37:35.624455+00 2025-10-21 19:37:35.624466+00 f t in_progress_pay 1146 1583 +4845 2025-10-21 19:39:49.676101+00 2025-10-21 19:39:49.676111+00 f t rejected D-Abandono Bot 1129 1208 +4846 2025-10-21 19:54:01.182423+00 2025-10-21 19:54:01.182433+00 f t pending 1147 \N +4847 2025-10-21 19:54:37.611065+00 2025-10-21 19:54:37.611074+00 f t in_progress_vet 1147 1583 +4848 2025-10-21 19:54:47.321259+00 2025-10-21 19:54:47.321268+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 10:00:00 1147 1583 +4849 2025-10-21 19:59:12.962765+00 2025-10-21 19:59:12.962779+00 f t pending 1148 \N +4850 2025-10-21 19:59:24.423477+00 2025-10-21 19:59:24.423486+00 f t in_progress_vet 1148 1583 +4851 2025-10-21 20:06:15.267625+00 2025-10-21 20:06:15.267634+00 f t vet_asked Veterinario asignado: Gilbert Javier 1147 1583 +4852 2025-10-21 20:06:16.013744+00 2025-10-21 20:06:16.013753+00 f t vet_accepted 1147 1583 +4853 2025-10-21 20:06:16.025205+00 2025-10-21 20:06:16.02522+00 f t in_progress_pay 1147 1583 +4854 2025-10-21 20:16:22.19889+00 2025-10-21 20:16:22.198898+00 f t Confirmado 1147 \N +4855 2025-10-21 20:16:22.164476+00 2025-10-21 20:16:22.164485+00 f t payed 1147 1583 +4856 2025-10-21 20:33:45.334209+00 2025-10-21 20:33:45.334218+00 f t rejected D-Tiempo de respuestas 1144 1583 +4857 2025-10-21 20:34:02.317685+00 2025-10-21 20:34:02.317694+00 f t rejected D-Abandono Bot 1139 1583 +4858 2025-10-21 20:55:35.861681+00 2025-10-21 20:55:35.861691+00 f t pending 1149 \N +4859 2025-10-21 21:35:09.029837+00 2025-10-21 21:35:09.029846+00 f t in_progress_vet 1149 1583 +4860 2025-10-21 21:35:18.890307+00 2025-10-21 21:35:18.890316+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 16:30:00 1149 1583 +4861 2025-10-21 21:36:39.447881+00 2025-10-21 21:36:39.447891+00 f t vet_asked Veterinario asignado: Vecino Carolina 1149 1583 +4862 2025-10-21 21:36:40.233911+00 2025-10-21 21:36:40.23392+00 f t vet_accepted 1149 1583 +4863 2025-10-21 21:36:40.245582+00 2025-10-21 21:36:40.24559+00 f t in_progress_pay 1149 1583 +4864 2025-10-21 21:37:10.397446+00 2025-10-21 21:37:10.397455+00 f t vet_asked Veterinario asignado: Kumabe Paula 1142 1583 +4865 2025-10-21 21:37:10.952469+00 2025-10-21 21:37:10.952478+00 f t vet_accepted 1142 1583 +4866 2025-10-21 21:37:10.965221+00 2025-10-21 21:37:10.965232+00 f t in_progress_pay 1142 1583 +4867 2025-10-21 21:37:20.86464+00 2025-10-21 21:37:20.864648+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1148 1583 +4868 2025-10-21 21:37:21.767281+00 2025-10-21 21:37:21.767289+00 f t vet_accepted 1148 1583 +4869 2025-10-21 21:49:22.735532+00 2025-10-21 21:49:22.735541+00 f t pending 1150 \N +4870 2025-10-21 21:58:34.650314+00 2025-10-21 21:58:34.650323+00 f t in_progress_vet 1150 1583 +4871 2025-10-21 21:58:40.988947+00 2025-10-21 21:58:40.988957+00 f t coordinated Solicitud coordinada para 2025-10-21 a las 20:00:00 1150 1583 +4872 2025-10-21 22:11:34.370052+00 2025-10-21 22:11:34.370066+00 f t pending 1151 \N +4873 2025-10-21 22:22:47.516435+00 2025-10-21 22:22:47.516444+00 f t in_progress_vet 1151 113 +4874 2025-10-21 23:25:38.757514+00 2025-10-21 23:25:38.757521+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 17:00:00 1151 113 +4875 2025-10-22 00:02:58.715738+00 2025-10-22 00:02:58.71575+00 f t Confirmado 1142 \N +4876 2025-10-22 00:02:58.677894+00 2025-10-22 00:02:58.677906+00 f t payed 1142 1208 +4877 2025-10-22 00:06:40.802674+00 2025-10-22 00:06:40.802682+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 19:00:00 1143 1208 +4878 2025-10-22 00:07:02.210724+00 2025-10-22 00:07:02.210736+00 f t Confirmado 1143 \N +4879 2025-10-22 00:07:02.15257+00 2025-10-22 00:07:02.152581+00 f t payed 1143 1208 +4880 2025-10-22 00:17:09.462552+00 2025-10-22 00:17:09.462562+00 f t Confirmado 1149 \N +4881 2025-10-22 00:17:09.42861+00 2025-10-22 00:17:09.428621+00 f t payed 1149 1583 +4882 2025-10-22 00:58:10.95358+00 2025-10-22 00:58:10.95359+00 f t pending 1152 \N +4883 2025-10-22 08:17:23.282373+00 2025-10-22 08:17:23.282385+00 f t pending 1153 \N +4884 2025-10-22 12:05:21.062845+00 2025-10-22 12:05:21.062854+00 f t in_progress_vet 1152 1208 +4885 2025-10-22 12:05:34.221195+00 2025-10-22 12:05:34.221205+00 f t in_progress_vet 1153 1208 +4886 2025-10-22 12:25:08.190323+00 2025-10-22 12:25:08.190334+00 f t pending 1154 \N +4887 2025-10-22 12:25:29.979394+00 2025-10-22 12:25:29.979404+00 f t in_progress_vet 1154 1208 +4888 2025-10-22 12:25:49.079751+00 2025-10-22 12:25:49.079764+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 18:00:00 1154 1208 +4889 2025-10-22 12:29:00.743051+00 2025-10-22 12:29:00.74306+00 f t vet_accepted 1154 138 +4890 2025-10-22 12:29:00.756648+00 2025-10-22 12:29:00.756661+00 f t in_progress_pay 1154 138 +4891 2025-10-22 13:07:17.826823+00 2025-10-22 13:07:17.826833+00 f t Confirmado 1154 \N +4892 2025-10-22 13:07:17.785822+00 2025-10-22 13:07:17.785831+00 f t payed 1154 1208 +4893 2025-10-22 13:18:58.32801+00 2025-10-22 13:18:58.32802+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 18:30:00 1152 1208 +4894 2025-10-22 13:21:30.474612+00 2025-10-22 13:21:30.474626+00 f t vet_accepted 1152 134 +4895 2025-10-22 13:21:30.486275+00 2025-10-22 13:21:30.486285+00 f t in_progress_pay 1152 134 +4896 2025-10-22 14:04:40.618882+00 2025-10-22 14:04:40.61889+00 f t Confirmado 1152 \N +4897 2025-10-22 14:04:40.588295+00 2025-10-22 14:04:40.588304+00 f t payed 1152 1208 +4898 2025-10-22 14:22:39.782587+00 2025-10-22 14:22:39.782599+00 f t rejected D-Abandono Bot 1146 1583 +4899 2025-10-22 15:24:25.315341+00 2025-10-22 15:24:25.315355+00 f t vet_asked Veterinario asignado: Laura Gorostegui Maria 1151 1583 +4900 2025-10-22 15:24:25.972326+00 2025-10-22 15:24:25.972337+00 f t vet_accepted 1151 1583 +4901 2025-10-22 15:24:25.986808+00 2025-10-22 15:24:25.986821+00 f t in_progress_pay 1151 1583 +4902 2025-10-22 15:24:31.530272+00 2025-10-22 15:24:31.530284+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 14:00:00 1151 1583 +4903 2025-10-22 15:26:09.055448+00 2025-10-22 15:26:09.055457+00 f t Confirmado 1151 \N +4904 2025-10-22 15:26:09.028157+00 2025-10-22 15:26:09.028166+00 f t payed 1151 1583 +4905 2025-10-22 15:28:30.049598+00 2025-10-22 15:28:30.049608+00 f t rejected D-Abandono Bot 1150 1583 +4906 2025-10-22 15:44:17.122312+00 2025-10-22 15:44:17.122321+00 f t pending 1155 \N +4907 2025-10-22 15:44:54.79583+00 2025-10-22 15:44:54.795839+00 f t in_progress_vet 1155 1583 +4908 2025-10-22 15:45:25.359216+00 2025-10-22 15:45:25.359225+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 16:00:00 1155 1583 +4909 2025-10-22 16:11:07.370278+00 2025-10-22 16:11:07.370289+00 f t rejected D-Tiempo de respuestas 1148 1583 +4910 2025-10-22 16:26:29.069276+00 2025-10-22 16:26:29.069289+00 f t pending 1156 \N +4911 2025-10-22 16:26:56.020487+00 2025-10-22 16:26:56.020497+00 f t in_progress_vet 1156 1208 +4912 2025-10-22 16:28:19.565854+00 2025-10-22 16:28:19.565862+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 20:00:00 1156 1208 +4913 2025-10-22 16:30:14.230706+00 2025-10-22 16:30:14.230715+00 f t pending 1157 \N +4914 2025-10-22 16:30:36.249319+00 2025-10-22 16:30:36.249328+00 f t in_progress_vet 1157 1208 +4915 2025-10-22 16:30:49.303594+00 2025-10-22 16:30:49.303602+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 14:30:00 1157 1208 +4916 2025-10-22 16:55:27.344109+00 2025-10-22 16:55:27.344118+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1157 1208 +4917 2025-10-22 17:03:32.074105+00 2025-10-22 17:03:32.074113+00 f t Confirmado 1157 \N +4918 2025-10-22 17:03:32.042852+00 2025-10-22 17:03:32.042861+00 f t payed 1157 1208 +4919 2025-10-22 17:05:44.603714+00 2025-10-22 17:05:44.603723+00 f t payed 1155 1583 +4920 2025-10-22 17:05:53.166763+00 2025-10-22 17:05:53.166776+00 f t Confirmado 1155 \N +4921 2025-10-22 17:05:54.010662+00 2025-10-22 17:05:54.010674+00 f t vet_asked Veterinario asignado: Della Bianca Paola 1155 1583 +4922 2025-10-22 17:05:54.896745+00 2025-10-22 17:05:54.896755+00 f t vet_accepted 1155 1583 +4923 2025-10-22 17:26:10.966985+00 2025-10-22 17:26:10.966999+00 f t pending 1158 \N +4924 2025-10-22 17:29:18.486686+00 2025-10-22 17:29:18.486695+00 f t in_progress_vet 1158 1208 +4925 2025-10-22 17:29:27.782464+00 2025-10-22 17:29:27.782471+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 17:30:00 1158 1208 +4926 2025-10-22 17:34:58.057735+00 2025-10-22 17:34:58.057744+00 f t rejected D-Emergencia 1156 1208 +4927 2025-10-22 17:46:29.594366+00 2025-10-22 17:46:29.594374+00 f t vet_accepted 1158 116 +4928 2025-10-22 17:46:29.605106+00 2025-10-22 17:46:29.605114+00 f t in_progress_pay 1158 116 +4929 2025-10-22 18:02:18.53185+00 2025-10-22 18:02:18.531862+00 f t Confirmado 1158 \N +4930 2025-10-22 18:02:18.491093+00 2025-10-22 18:02:18.491105+00 f t payed 1158 1208 +4931 2025-10-22 18:39:42.506316+00 2025-10-22 18:39:42.506326+00 f t pending 1159 \N +4932 2025-10-22 18:41:22.978079+00 2025-10-22 18:41:22.978089+00 f t in_progress_vet 1159 1208 +4933 2025-10-22 18:52:07.689276+00 2025-10-22 18:52:07.689289+00 f t pending 1160 \N +4935 2025-10-22 19:13:18.513854+00 2025-10-22 19:13:18.513864+00 f t pending 1161 \N +4936 2025-10-22 19:16:26.052399+00 2025-10-22 19:16:26.05241+00 f t in_progress_vet 1161 1583 +4937 2025-10-22 19:34:55.133539+00 2025-10-22 19:34:55.133548+00 f t pending 1162 \N +4938 2025-10-22 19:35:17.608884+00 2025-10-22 19:35:17.608897+00 f t in_progress_vet 1162 1208 +4939 2025-10-22 19:35:45.142963+00 2025-10-22 19:35:45.142971+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 09:00:00 1162 1208 +4940 2025-10-22 19:56:17.747363+00 2025-10-22 19:56:17.747374+00 f t pending 1163 \N +4941 2025-10-22 19:56:36.34427+00 2025-10-22 19:56:36.34428+00 f t in_progress_vet 1163 1208 +4942 2025-10-22 19:56:55.94725+00 2025-10-22 19:56:55.947261+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 10:00:00 1163 1208 +4943 2025-10-22 19:57:25.724266+00 2025-10-22 19:57:25.724275+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1163 1208 +4944 2025-10-22 19:57:40.474221+00 2025-10-22 19:57:40.474235+00 f t pending 1164 \N +4945 2025-10-22 19:57:55.118379+00 2025-10-22 19:57:55.118392+00 f t in_progress_vet 1164 1208 +4946 2025-10-22 19:58:07.71683+00 2025-10-22 19:58:07.716838+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 10:00:00 1164 1208 +4947 2025-10-22 19:58:22.33479+00 2025-10-22 19:58:22.334798+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1164 1208 +4948 2025-10-22 20:07:33.247403+00 2025-10-22 20:07:33.247417+00 f t rejected D-Emergencia 1161 1583 +4949 2025-10-22 20:34:53.324779+00 2025-10-22 20:34:53.324787+00 f t rejected D-Tiempo de respuestas 1153 1583 +4950 2025-10-22 22:47:34.095241+00 2025-10-22 22:47:34.095252+00 f t pending 1165 \N +4951 2025-10-22 22:55:42.534847+00 2025-10-22 22:55:42.534863+00 f t coordinated Solicitud coordinada para 2025-10-22 a las 20:30:00 1165 113 +4952 2025-10-22 23:05:28.066059+00 2025-10-22 23:05:28.066067+00 f t coordinated Solicitud coordinada para 2025-10-28 a las 14:00:00 1159 1208 +4953 2025-10-22 23:05:31.922232+00 2025-10-22 23:05:31.922242+00 f t vet_asked Veterinario asignado: Campo Silvia 1159 1208 +4954 2025-10-22 23:06:26.418773+00 2025-10-22 23:06:26.418782+00 f t pending 1166 \N +4955 2025-10-22 23:08:59.124237+00 2025-10-22 23:08:59.124246+00 f t Confirmado 1159 \N +4956 2025-10-22 23:08:59.085576+00 2025-10-22 23:08:59.085585+00 f t payed 1159 1208 +4957 2025-10-22 23:09:11.072547+00 2025-10-22 23:09:11.072568+00 f t in_progress_vet 1166 1208 +4958 2025-10-22 23:18:46.676426+00 2025-10-22 23:18:46.676437+00 f t coordinated Solicitud coordinada para 2025-10-23 a las 20:30:00 1166 1208 +4959 2025-10-22 23:18:55.770535+00 2025-10-22 23:18:55.770544+00 f t coordinated Solicitud coordinada para 2025-10-23 a las 20:00:00 1166 1208 +4960 2025-10-22 23:24:15.850257+00 2025-10-22 23:24:15.850267+00 f t vet_accepted 1166 139 +4961 2025-10-22 23:24:15.863604+00 2025-10-22 23:24:15.863613+00 f t in_progress_pay 1166 139 +4962 2025-10-22 23:26:35.398544+00 2025-10-22 23:26:35.398553+00 f t vet_accepted 1162 116 +4963 2025-10-22 23:26:35.411506+00 2025-10-22 23:26:35.411516+00 f t in_progress_pay 1162 116 +4964 2025-10-22 23:52:01.079194+00 2025-10-22 23:52:01.079203+00 f t Confirmado 1166 \N +4965 2025-10-22 23:52:01.043856+00 2025-10-22 23:52:01.043864+00 f t payed 1166 1208 +4966 2025-10-23 00:02:06.415655+00 2025-10-23 00:02:06.415664+00 f t pending 1167 \N +4967 2025-10-23 00:02:23.631403+00 2025-10-23 00:02:23.631411+00 f t in_progress_vet 1167 1208 +4968 2025-10-23 00:03:50.560257+00 2025-10-23 00:03:50.56027+00 f t rejected D-Averiguando / Desconocido 1160 1208 +4969 2025-10-23 00:05:33.417474+00 2025-10-23 00:05:33.417482+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 09:30:00 1167 1208 +4970 2025-10-23 00:06:32.012492+00 2025-10-23 00:06:32.012505+00 f t payed 1167 1208 +4971 2025-10-23 00:06:44.306268+00 2025-10-23 00:06:44.306279+00 f t Confirmado 1167 \N +4972 2025-10-23 00:06:45.168812+00 2025-10-23 00:06:45.168824+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1167 1208 +4973 2025-10-23 00:11:27.280838+00 2025-10-23 00:11:27.280846+00 f t Confirmado 1163 \N +4974 2025-10-23 00:11:27.254751+00 2025-10-23 00:11:27.254759+00 f t payed 1163 1208 +4975 2025-10-23 00:13:40.085356+00 2025-10-23 00:13:40.085368+00 f t payed 1164 1208 +4976 2025-10-23 11:57:07.04145+00 2025-10-23 11:57:07.04146+00 f t vet_accepted 1167 1645 +4977 2025-10-23 13:16:23.188674+00 2025-10-23 13:16:23.188686+00 f t pending 1168 \N +4978 2025-10-23 13:16:42.223604+00 2025-10-23 13:16:42.223613+00 f t in_progress_vet 1168 1208 +4979 2025-10-23 13:29:11.300018+00 2025-10-23 13:29:11.300026+00 f t coordinated Solicitud coordinada para 2025-10-23 a las 19:00:00 1168 1208 +4980 2025-10-23 14:28:24.049757+00 2025-10-23 14:28:24.049767+00 f t pending 1169 \N +4981 2025-10-23 14:28:34.74612+00 2025-10-23 14:28:34.746129+00 f t in_progress_vet 1169 1583 +4982 2025-10-23 14:28:43.725588+00 2025-10-23 14:28:43.725595+00 f t coordinated Solicitud coordinada para 2025-10-23 a las 11:30:00 1169 1583 +4983 2025-10-23 14:28:56.977174+00 2025-10-23 14:28:56.977183+00 f t vet_asked Veterinario asignado: Palummo Mariana 1169 1583 +4984 2025-10-23 14:28:57.708127+00 2025-10-23 14:28:57.708137+00 f t vet_accepted 1169 1583 +4985 2025-10-23 14:28:57.719649+00 2025-10-23 14:28:57.719659+00 f t in_progress_pay 1169 1583 +4986 2025-10-23 14:30:49.000402+00 2025-10-23 14:30:49.000411+00 f t Confirmado 1169 \N +4987 2025-10-23 14:30:48.96455+00 2025-10-23 14:30:48.964563+00 f t payed 1169 1583 +4988 2025-10-23 14:41:14.212807+00 2025-10-23 14:41:14.212819+00 f t pending 1170 \N +4989 2025-10-23 14:48:11.457434+00 2025-10-23 14:48:11.457444+00 f t pending 1171 \N +4990 2025-10-23 14:48:31.804191+00 2025-10-23 14:48:31.8042+00 f t in_progress_vet 1171 1583 +4991 2025-10-23 14:48:37.398116+00 2025-10-23 14:48:37.398127+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 10:00:00 1171 1583 +4992 2025-10-23 14:51:22.525172+00 2025-10-23 14:51:22.525182+00 f t in_progress_vet 1170 1583 +4993 2025-10-23 15:04:23.4265+00 2025-10-23 15:04:23.42651+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1171 1583 +4994 2025-10-23 15:04:24.089184+00 2025-10-23 15:04:24.089193+00 f t vet_accepted 1171 1583 +4995 2025-10-23 15:04:24.104045+00 2025-10-23 15:04:24.104056+00 f t in_progress_pay 1171 1583 +4996 2025-10-23 15:05:23.459703+00 2025-10-23 15:05:23.459712+00 f t pending 1172 \N +4997 2025-10-23 15:05:32.642794+00 2025-10-23 15:05:32.642802+00 f t in_progress_vet 1172 1583 +4998 2025-10-23 15:05:40.990337+00 2025-10-23 15:05:40.990346+00 f t coordinated Solicitud coordinada para 2025-10-28 a las 12:00:00 1172 1583 +4999 2025-10-23 15:05:45.08671+00 2025-10-23 15:05:45.086719+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1172 1583 +5000 2025-10-23 15:05:45.746984+00 2025-10-23 15:05:45.74702+00 f t vet_accepted 1172 1583 +5001 2025-10-23 15:05:45.76129+00 2025-10-23 15:05:45.761299+00 f t in_progress_pay 1172 1583 +5002 2025-10-23 15:06:05.411076+00 2025-10-23 15:06:05.411085+00 f t Confirmado 1172 \N +5003 2025-10-23 15:06:05.377754+00 2025-10-23 15:06:05.377762+00 f t payed 1172 1583 +5004 2025-10-23 15:06:27.433925+00 2025-10-23 15:06:27.433939+00 f t rejected D-Emergencia 1168 1208 +5005 2025-10-23 15:16:00.203638+00 2025-10-23 15:16:00.203651+00 f t Confirmado 1171 \N +5006 2025-10-23 15:16:00.161943+00 2025-10-23 15:16:00.161958+00 f t payed 1171 1583 +5007 2025-10-23 15:17:18.15022+00 2025-10-23 15:17:18.150232+00 f t pending 1173 \N +5008 2025-10-23 15:17:35.032501+00 2025-10-23 15:17:35.032512+00 f t in_progress_vet 1173 1583 +5009 2025-10-23 15:17:44.013574+00 2025-10-23 15:17:44.01359+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 12:00:00 1173 1583 +5010 2025-10-23 15:17:50.54317+00 2025-10-23 15:17:50.54319+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1173 1583 +5011 2025-10-23 15:17:51.512387+00 2025-10-23 15:17:51.512399+00 f t vet_accepted 1173 1583 +5012 2025-10-23 15:17:51.5262+00 2025-10-23 15:17:51.52621+00 f t in_progress_pay 1173 1583 +5013 2025-10-23 15:18:05.762836+00 2025-10-23 15:18:05.762845+00 f t Confirmado 1173 \N +5014 2025-10-23 15:18:05.721121+00 2025-10-23 15:18:05.721138+00 f t payed 1173 1583 +5015 2025-10-23 15:21:18.427015+00 2025-10-23 15:21:18.427065+00 f t pending 1174 \N +5016 2025-10-23 15:25:14.821434+00 2025-10-23 15:25:14.82145+00 f t in_progress_vet 1174 1208 +5017 2025-10-23 15:26:06.805045+00 2025-10-23 15:26:06.805054+00 f t coordinated Solicitud coordinada para 2025-10-23 a las 16:00:00 1174 1208 +5018 2025-10-23 15:32:36.32511+00 2025-10-23 15:32:36.325119+00 f t vet_accepted 1174 116 +5019 2025-10-23 15:32:36.335882+00 2025-10-23 15:32:36.335891+00 f t in_progress_pay 1174 116 +5020 2025-10-23 15:55:20.213198+00 2025-10-23 15:55:20.213207+00 f t coordinated Solicitud coordinada para 2025-10-23 a las 16:30:00 1174 1208 +5021 2025-10-23 15:58:49.647377+00 2025-10-23 15:58:49.647385+00 f t Confirmado 1174 \N +5022 2025-10-23 15:58:49.616002+00 2025-10-23 15:58:49.616012+00 f t payed 1174 1208 +5023 2025-10-23 16:55:39.421291+00 2025-10-23 16:55:39.421299+00 f t rejected D-Averiguando / Desconocido 1165 1208 +5024 2025-10-23 17:16:23.234445+00 2025-10-23 17:16:23.234458+00 f t pending 1175 \N +5025 2025-10-23 17:18:21.082802+00 2025-10-23 17:18:21.082811+00 f t in_progress_vet 1175 1208 +5026 2025-10-23 17:29:21.660843+00 2025-10-23 17:29:21.660851+00 f t pending 1176 \N +5027 2025-10-23 17:29:51.325089+00 2025-10-23 17:29:51.325098+00 f t in_progress_vet 1176 1208 +5028 2025-10-23 17:30:06.822429+00 2025-10-23 17:30:06.822441+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 14:30:00 1176 1208 +5029 2025-10-23 17:50:37.482468+00 2025-10-23 17:50:37.482476+00 f t vet_accepted 1176 1781 +5030 2025-10-23 17:50:37.49274+00 2025-10-23 17:50:37.492749+00 f t in_progress_pay 1176 1781 +5031 2025-10-23 17:57:29.513592+00 2025-10-23 17:57:29.513604+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 13:00:00 1176 1208 +5032 2025-10-23 18:11:33.464892+00 2025-10-23 18:11:33.4649+00 f t Confirmado 1176 \N +5033 2025-10-23 18:11:33.433122+00 2025-10-23 18:11:33.43313+00 f t payed 1176 1208 +5034 2025-10-23 19:07:46.849396+00 2025-10-23 19:07:46.849407+00 f t pending 1177 \N +5035 2025-10-23 19:08:00.673165+00 2025-10-23 19:08:00.673175+00 f t in_progress_vet 1177 1208 +5036 2025-10-23 19:08:11.201225+00 2025-10-23 19:08:11.201233+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 16:00:00 1177 1208 +5037 2025-10-23 19:08:23.268142+00 2025-10-23 19:08:23.268155+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1177 1208 +5038 2025-10-23 19:09:25.30572+00 2025-10-23 19:09:25.305729+00 f t pending 1178 \N +5039 2025-10-23 19:09:40.446111+00 2025-10-23 19:09:40.446119+00 f t in_progress_vet 1178 1208 +5040 2025-10-23 19:09:50.414102+00 2025-10-23 19:09:50.41411+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 18:30:00 1178 1208 +5041 2025-10-23 19:10:08.690272+00 2025-10-23 19:10:08.690281+00 f t vet_asked Veterinario asignado: Campo Silvia 1178 1208 +5042 2025-10-23 19:14:32.121876+00 2025-10-23 19:14:32.121888+00 f t Confirmado 1177 \N +5043 2025-10-23 19:14:32.093719+00 2025-10-23 19:14:32.093728+00 f t payed 1177 1208 +5044 2025-10-23 19:14:43.465334+00 2025-10-23 19:14:43.465341+00 f t Confirmado 1178 \N +5045 2025-10-23 19:14:43.4387+00 2025-10-23 19:14:43.438711+00 f t payed 1178 1208 +5046 2025-10-23 20:05:38.296728+00 2025-10-23 20:05:38.296738+00 f t pending 1179 \N +5047 2025-10-23 20:07:26.430491+00 2025-10-23 20:07:26.4305+00 f t in_progress_vet 1179 1583 +5048 2025-10-23 20:13:27.453549+00 2025-10-23 20:13:27.453557+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 10:00:00 1179 1583 +5049 2025-10-23 20:19:21.90253+00 2025-10-23 20:19:21.902539+00 f t pending 1180 \N +5050 2025-10-23 20:19:35.628824+00 2025-10-23 20:19:35.628833+00 f t in_progress_vet 1180 1583 +5051 2025-10-23 20:19:42.801334+00 2025-10-23 20:19:42.801342+00 f t coordinated Solicitud coordinada para 2025-10-23 a las 18:00:00 1180 1583 +5052 2025-10-23 20:19:51.965302+00 2025-10-23 20:19:51.965312+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1180 1583 +5053 2025-10-23 20:19:52.612994+00 2025-10-23 20:19:52.613005+00 f t vet_accepted 1180 1583 +5054 2025-10-23 20:19:52.625839+00 2025-10-23 20:19:52.625851+00 f t in_progress_pay 1180 1583 +5055 2025-10-23 20:20:15.678981+00 2025-10-23 20:20:15.678988+00 f t Confirmado 1180 \N +5056 2025-10-23 20:20:15.651971+00 2025-10-23 20:20:15.651979+00 f t payed 1180 1583 +5057 2025-10-23 21:17:38.018578+00 2025-10-23 21:17:38.018587+00 f t pending 1181 \N +5058 2025-10-23 21:17:50.933221+00 2025-10-23 21:17:50.933232+00 f t in_progress_vet 1181 1583 +5059 2025-10-23 21:18:03.161956+00 2025-10-23 21:18:03.161964+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 09:00:00 1181 1583 +5060 2025-10-23 21:18:38.716628+00 2025-10-23 21:18:38.716636+00 f t pending 1182 \N +5061 2025-10-23 21:18:53.949342+00 2025-10-23 21:18:53.949353+00 f t in_progress_vet 1182 1583 +5062 2025-10-23 21:19:20.175939+00 2025-10-23 21:19:20.175948+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1181 1583 +5063 2025-10-23 21:19:20.962496+00 2025-10-23 21:19:20.962505+00 f t vet_accepted 1181 1583 +5064 2025-10-23 21:19:20.974052+00 2025-10-23 21:19:20.97406+00 f t in_progress_pay 1181 1583 +5065 2025-10-23 21:22:53.231188+00 2025-10-23 21:22:53.231196+00 f t coordinated Solicitud coordinada para 2025-10-23 a las 20:00:00 1179 1583 +5066 2025-10-23 21:49:24.750298+00 2025-10-23 21:49:24.750306+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 11:00:00 1179 1583 +5067 2025-10-23 21:50:06.317608+00 2025-10-23 21:50:06.317618+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 16:30:00 1179 1583 +5068 2025-10-23 21:52:33.720628+00 2025-10-23 21:52:33.72064+00 f t vet_asked Veterinario asignado: Palummo Mariana 1179 1583 +5069 2025-10-23 21:52:34.335233+00 2025-10-23 21:52:34.335242+00 f t vet_accepted 1179 1583 +5070 2025-10-23 21:52:34.346217+00 2025-10-23 21:52:34.346227+00 f t in_progress_pay 1179 1583 +5071 2025-10-23 21:54:03.334775+00 2025-10-23 21:54:03.334787+00 f t Confirmado 1179 \N +5072 2025-10-23 21:54:03.300152+00 2025-10-23 21:54:03.300163+00 f t payed 1179 1583 +5073 2025-10-23 22:19:00.121891+00 2025-10-23 22:19:00.121901+00 f t payed 1175 1208 +5074 2025-10-23 22:19:12.476954+00 2025-10-23 22:19:12.476962+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 16:00:00 1175 1208 +5075 2025-10-23 22:19:27.437886+00 2025-10-23 22:19:27.437895+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1175 1208 +5076 2025-10-23 22:20:03.741437+00 2025-10-23 22:20:03.741452+00 f t pending 1183 \N +5077 2025-10-23 22:20:17.449512+00 2025-10-23 22:20:17.449526+00 f t in_progress_vet 1183 1208 +5078 2025-10-23 22:20:26.610417+00 2025-10-23 22:20:26.610425+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 14:00:00 1183 1208 +5079 2025-10-23 22:20:38.71434+00 2025-10-23 22:20:38.714349+00 f t vet_asked Veterinario asignado: Campo Silvia 1183 1208 +5080 2025-10-23 22:20:49.508369+00 2025-10-23 22:20:49.508378+00 f t Confirmado 1183 \N +5081 2025-10-23 22:20:49.481545+00 2025-10-23 22:20:49.481553+00 f t payed 1183 1208 +5082 2025-10-23 22:23:00.80592+00 2025-10-23 22:23:00.80593+00 f t pending 1184 \N +5083 2025-10-23 22:26:56.993054+00 2025-10-23 22:26:56.993061+00 f t in_progress_vet 1184 1208 +5084 2025-10-23 22:27:17.604578+00 2025-10-23 22:27:17.604586+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 14:00:00 1184 1208 +5085 2025-10-23 22:27:34.949733+00 2025-10-23 22:27:34.949744+00 f t vet_asked Veterinario asignado: Campo Silvia 1184 1208 +5086 2025-10-23 22:27:57.53518+00 2025-10-23 22:27:57.535189+00 f t payed 1184 1208 +5087 2025-10-23 22:49:50.297972+00 2025-10-23 22:49:50.297981+00 f t pending 1185 \N +5088 2025-10-23 22:50:04.356762+00 2025-10-23 22:50:04.356776+00 f t in_progress_vet 1185 1208 +5089 2025-10-23 22:50:15.961487+00 2025-10-23 22:50:15.961497+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 16:00:00 1185 1208 +5090 2025-10-23 22:50:57.082119+00 2025-10-23 22:50:57.082128+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1185 1208 +5091 2025-10-23 22:51:34.28672+00 2025-10-23 22:51:34.28673+00 f t Confirmado 1185 \N +5092 2025-10-23 22:51:34.255944+00 2025-10-23 22:51:34.255952+00 f t payed 1185 1208 +5093 2025-10-24 11:58:26.58597+00 2025-10-24 11:58:26.585983+00 f t pending 1186 \N +5094 2025-10-24 12:00:00.918846+00 2025-10-24 12:00:00.918855+00 f t in_progress_vet 1186 1583 +5095 2025-10-24 12:23:07.305931+00 2025-10-24 12:23:07.30594+00 f t pending 1187 \N +5096 2025-10-24 12:46:19.589764+00 2025-10-24 12:46:19.589773+00 f t in_progress_vet 1187 1583 +5097 2025-10-24 12:49:19.634939+00 2025-10-24 12:49:19.634947+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 09:00:00 1187 1583 +5098 2025-10-24 12:51:17.389553+00 2025-10-24 12:51:17.389561+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 15:00:00 1186 1583 +5099 2025-10-24 13:11:32.808016+00 2025-10-24 13:11:32.808027+00 f t rejected D-Abandono Bot 1170 1583 +5100 2025-10-24 13:59:53.418188+00 2025-10-24 13:59:53.418197+00 f t pending 1188 \N +5101 2025-10-24 14:00:34.108882+00 2025-10-24 14:00:34.108894+00 f t in_progress_vet 1188 1583 +5102 2025-10-24 14:00:41.402044+00 2025-10-24 14:00:41.402052+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 12:30:00 1188 1583 +5103 2025-10-24 14:01:04.305667+00 2025-10-24 14:01:04.305679+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1188 1583 +5104 2025-10-24 14:01:05.208427+00 2025-10-24 14:01:05.20844+00 f t vet_accepted 1188 1583 +5105 2025-10-24 14:01:05.222153+00 2025-10-24 14:01:05.222164+00 f t in_progress_pay 1188 1583 +5106 2025-10-24 14:04:51.523344+00 2025-10-24 14:04:51.523355+00 f t Confirmado 1188 \N +5107 2025-10-24 14:04:51.487547+00 2025-10-24 14:04:51.487559+00 f t payed 1188 1583 +5108 2025-10-24 14:55:38.233147+00 2025-10-24 14:55:38.233155+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1187 1583 +5109 2025-10-24 14:55:38.883559+00 2025-10-24 14:55:38.883567+00 f t vet_accepted 1187 1583 +5110 2025-10-24 14:55:38.894028+00 2025-10-24 14:55:38.894037+00 f t in_progress_pay 1187 1583 +5111 2025-10-24 14:56:20.262846+00 2025-10-24 14:56:20.262855+00 f t Confirmado 1187 \N +5112 2025-10-24 14:56:20.225965+00 2025-10-24 14:56:20.225974+00 f t payed 1187 1583 +5113 2025-10-24 15:05:20.888488+00 2025-10-24 15:05:20.888499+00 f t pending 1189 \N +5114 2025-10-24 15:07:22.59989+00 2025-10-24 15:07:22.599901+00 f t in_progress_vet 1189 1583 +5115 2025-10-24 15:07:28.469283+00 2025-10-24 15:07:28.469291+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 16:00:00 1189 1583 +5116 2025-10-24 15:07:35.121927+00 2025-10-24 15:07:35.121937+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1189 1583 +5117 2025-10-24 15:07:36.39109+00 2025-10-24 15:07:36.391098+00 f t vet_accepted 1189 1583 +5118 2025-10-24 15:07:36.401674+00 2025-10-24 15:07:36.401683+00 f t in_progress_pay 1189 1583 +5119 2025-10-24 15:07:58.416371+00 2025-10-24 15:07:58.416378+00 f t Confirmado 1189 \N +5120 2025-10-24 15:07:58.388113+00 2025-10-24 15:07:58.388125+00 f t payed 1189 1583 +5121 2025-10-24 15:13:48.173924+00 2025-10-24 15:13:48.173935+00 f t pending 1190 \N +5122 2025-10-24 15:14:03.856198+00 2025-10-24 15:14:03.856207+00 f t in_progress_vet 1190 1583 +5123 2025-10-24 15:14:10.521032+00 2025-10-24 15:14:10.52104+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 16:00:00 1190 1583 +5124 2025-10-24 15:28:03.872493+00 2025-10-24 15:28:03.872502+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1186 1583 +5125 2025-10-24 15:28:04.463756+00 2025-10-24 15:28:04.463769+00 f t vet_accepted 1186 1583 +5126 2025-10-24 15:28:04.475777+00 2025-10-24 15:28:04.475791+00 f t in_progress_pay 1186 1583 +5127 2025-10-24 15:28:14.706125+00 2025-10-24 15:28:14.706134+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 14:00:00 1186 1583 +5128 2025-10-24 15:28:52.358411+00 2025-10-24 15:28:52.358419+00 f t Confirmado 1186 \N +5129 2025-10-24 15:28:52.31941+00 2025-10-24 15:28:52.319421+00 f t payed 1186 1583 +5130 2025-10-24 15:32:12.639705+00 2025-10-24 15:32:12.639713+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 17:00:00 1190 1583 +5131 2025-10-24 15:32:16.320242+00 2025-10-24 15:32:16.320251+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1190 1583 +5132 2025-10-24 15:32:16.976624+00 2025-10-24 15:32:16.976633+00 f t vet_accepted 1190 1583 +5133 2025-10-24 15:32:16.987943+00 2025-10-24 15:32:16.987956+00 f t in_progress_pay 1190 1583 +5134 2025-10-24 15:32:35.461025+00 2025-10-24 15:32:35.461034+00 f t Confirmado 1190 \N +5135 2025-10-24 15:32:35.426269+00 2025-10-24 15:32:35.426277+00 f t payed 1190 1583 +5136 2025-10-24 17:53:56.968274+00 2025-10-24 17:53:56.968282+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 09:00:00 1162 1208 +5137 2025-10-24 17:54:06.085275+00 2025-10-24 17:54:06.085283+00 f t Confirmado 1162 \N +5138 2025-10-24 17:54:06.048403+00 2025-10-24 17:54:06.048411+00 f t payed 1162 1208 +5139 2025-10-24 17:54:44.815835+00 2025-10-24 17:54:44.815844+00 f t pending 1191 \N +5140 2025-10-24 17:55:05.227999+00 2025-10-24 17:55:05.228014+00 f t in_progress_vet 1191 1208 +5141 2025-10-24 17:55:13.247015+00 2025-10-24 17:55:13.247024+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 11:00:00 1191 1208 +5142 2025-10-24 17:55:27.942168+00 2025-10-24 17:55:27.942176+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1191 1208 +5143 2025-10-24 17:56:10.83768+00 2025-10-24 17:56:10.837687+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 10:30:00 1191 1208 +5144 2025-10-24 17:56:15.937373+00 2025-10-24 17:56:15.937381+00 f t Confirmado 1191 \N +5145 2025-10-24 17:56:15.909055+00 2025-10-24 17:56:15.909065+00 f t payed 1191 1208 +5146 2025-10-24 18:53:55.521981+00 2025-10-24 18:53:55.521989+00 f t pending 1192 \N +5147 2025-10-24 18:54:15.805177+00 2025-10-24 18:54:15.805186+00 f t in_progress_vet 1192 1583 +5148 2025-10-24 18:54:24.804441+00 2025-10-24 18:54:24.804449+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 19:00:00 1192 1583 +5149 2025-10-24 18:56:49.592683+00 2025-10-24 18:56:49.592693+00 f t vet_accepted 1192 116 +5150 2025-10-24 18:56:49.604313+00 2025-10-24 18:56:49.604321+00 f t in_progress_pay 1192 116 +5151 2025-10-24 20:35:25.4247+00 2025-10-24 20:35:25.424709+00 f t pending 1193 \N +5152 2025-10-24 20:36:03.493309+00 2025-10-24 20:36:03.493318+00 f t in_progress_vet 1193 1208 +5153 2025-10-24 20:39:27.052354+00 2025-10-24 20:39:27.052361+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 08:00:00 1193 1208 +5154 2025-10-24 20:39:48.90964+00 2025-10-24 20:39:48.909649+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1193 1208 +5155 2025-10-24 20:40:05.212279+00 2025-10-24 20:40:05.212294+00 f t Confirmado 1193 \N +5156 2025-10-24 20:40:05.151967+00 2025-10-24 20:40:05.151982+00 f t payed 1193 1208 +5157 2025-10-24 21:23:43.60412+00 2025-10-24 21:23:43.604129+00 f t pending 1194 \N +5158 2025-10-24 21:23:54.962765+00 2025-10-24 21:23:54.962774+00 f t in_progress_vet 1194 1208 +5159 2025-10-24 21:24:02.779159+00 2025-10-24 21:24:02.779169+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 19:00:00 1194 1208 +5160 2025-10-24 21:30:11.831309+00 2025-10-24 21:30:11.831321+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1194 1208 +5161 2025-10-24 21:30:29.008349+00 2025-10-24 21:30:29.008359+00 f t Confirmado 1194 \N +5162 2025-10-24 21:30:28.97662+00 2025-10-24 21:30:28.976629+00 f t payed 1194 1208 +5163 2025-10-24 22:54:03.7322+00 2025-10-24 22:54:03.732214+00 f t pending 1195 \N +5164 2025-10-24 22:58:40.793326+00 2025-10-24 22:58:40.79334+00 f t in_progress_vet 1195 1208 +5165 2025-10-24 22:58:51.337116+00 2025-10-24 22:58:51.337127+00 f t coordinated Solicitud coordinada para 2025-10-26 a las 16:00:00 1195 1208 +5166 2025-10-24 23:06:40.801426+00 2025-10-24 23:06:40.801436+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1195 1208 +5167 2025-10-24 23:07:06.622618+00 2025-10-24 23:07:06.622631+00 f t Confirmado 1195 \N +5168 2025-10-24 23:07:06.569228+00 2025-10-24 23:07:06.569242+00 f t payed 1195 1208 +5169 2025-10-24 23:08:31.431299+00 2025-10-24 23:08:31.431311+00 f t pending 1196 \N +5170 2025-10-24 23:08:56.284372+00 2025-10-24 23:08:56.284384+00 f t in_progress_vet 1196 1208 +5171 2025-10-24 23:12:23.841889+00 2025-10-24 23:12:23.841897+00 f t coordinated Solicitud coordinada para 2025-10-24 a las 21:00:00 1196 1208 +5172 2025-10-24 23:47:01.691058+00 2025-10-24 23:47:01.691067+00 f t rejected D-Sin Turno 1196 1208 +5173 2025-10-25 07:31:47.175257+00 2025-10-25 07:31:47.175267+00 f t pending 1197 \N +5174 2025-10-25 09:02:14.386208+00 2025-10-25 09:02:14.38622+00 f t pending 1198 \N +5175 2025-10-25 12:07:14.246677+00 2025-10-25 12:07:14.246689+00 f t rejected D-Averiguando / Desconocido 1197 1208 +5176 2025-10-25 12:10:15.598322+00 2025-10-25 12:10:15.598337+00 f t in_progress_vet 1198 1208 +5177 2025-10-25 12:15:08.867269+00 2025-10-25 12:15:08.86728+00 f t pending 1199 \N +5178 2025-10-25 12:16:02.57938+00 2025-10-25 12:16:02.57939+00 f t in_progress_vet 1199 1208 +5179 2025-10-25 12:20:01.807436+00 2025-10-25 12:20:01.807448+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 12:00:00 1198 1208 +5180 2025-10-25 13:28:22.190404+00 2025-10-25 13:28:22.190414+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 14:30:00 1198 1208 +5181 2025-10-25 13:28:35.137326+00 2025-10-25 13:28:35.137335+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1198 1208 +5182 2025-10-25 13:36:52.386083+00 2025-10-25 13:36:52.386094+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 11:00:00 1199 1208 +5183 2025-10-25 13:36:57.089339+00 2025-10-25 13:36:57.089347+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1199 1208 +5184 2025-10-25 13:37:01.522326+00 2025-10-25 13:37:01.52234+00 f t Confirmado 1199 \N +5185 2025-10-25 13:37:01.471091+00 2025-10-25 13:37:01.471105+00 f t payed 1199 1208 +5186 2025-10-25 13:38:29.532356+00 2025-10-25 13:38:29.532365+00 f t pending 1200 \N +5187 2025-10-25 13:38:46.823249+00 2025-10-25 13:38:46.823258+00 f t in_progress_vet 1200 1208 +5188 2025-10-25 13:38:57.612194+00 2025-10-25 13:38:57.612202+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 16:00:00 1200 1208 +5189 2025-10-25 13:39:18.21292+00 2025-10-25 13:39:18.21293+00 f t vet_asked Veterinario asignado: di Risio Daniela 1200 1208 +5190 2025-10-25 13:39:41.365013+00 2025-10-25 13:39:41.365021+00 f t pending 1201 \N +5191 2025-10-25 13:40:21.036884+00 2025-10-25 13:40:21.036896+00 f t in_progress_vet 1201 1208 +5192 2025-10-25 13:40:32.020214+00 2025-10-25 13:40:32.020222+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 15:30:00 1201 1208 +5193 2025-10-25 13:41:12.866128+00 2025-10-25 13:41:12.866137+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1201 1208 +5194 2025-10-25 13:41:45.171883+00 2025-10-25 13:41:45.171892+00 f t pending 1202 \N +5195 2025-10-25 13:42:09.278981+00 2025-10-25 13:42:09.278994+00 f t in_progress_vet 1202 1208 +5196 2025-10-25 13:42:27.805957+00 2025-10-25 13:42:27.805964+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 17:00:00 1202 1208 +5197 2025-10-25 13:42:44.380464+00 2025-10-25 13:42:44.380473+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1202 1208 +5198 2025-10-25 13:47:27.273968+00 2025-10-25 13:47:27.273976+00 f t pending 1203 \N +5199 2025-10-25 13:51:03.255427+00 2025-10-25 13:51:03.255436+00 f t in_progress_vet 1203 1208 +5200 2025-10-25 14:01:50.073682+00 2025-10-25 14:01:50.07369+00 f t Confirmado 1200 \N +5201 2025-10-25 14:01:50.043251+00 2025-10-25 14:01:50.04326+00 f t payed 1200 1208 +5202 2025-10-25 14:02:58.178817+00 2025-10-25 14:02:58.178825+00 f t Confirmado 1201 \N +5203 2025-10-25 14:02:58.146698+00 2025-10-25 14:02:58.146707+00 f t payed 1201 1208 +5204 2025-10-25 14:03:09.911542+00 2025-10-25 14:03:09.911549+00 f t Confirmado 1202 \N +5205 2025-10-25 14:03:09.87984+00 2025-10-25 14:03:09.879849+00 f t payed 1202 1208 +5206 2025-10-25 14:48:08.366088+00 2025-10-25 14:48:08.366098+00 f t pending 1204 \N +5207 2025-10-25 14:48:29.550377+00 2025-10-25 14:48:29.550385+00 f t in_progress_vet 1204 1208 +5208 2025-10-25 14:48:42.54041+00 2025-10-25 14:48:42.540419+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 14:00:00 1204 1208 +5209 2025-10-25 14:48:59.043634+00 2025-10-25 14:48:59.043643+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1204 1208 +5210 2025-10-25 14:51:10.643027+00 2025-10-25 14:51:10.643036+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 15:00:00 1203 1208 +5211 2025-10-25 14:54:05.595327+00 2025-10-25 14:54:05.595337+00 f t vet_accepted 1203 142 +5212 2025-10-25 14:54:05.610269+00 2025-10-25 14:54:05.610281+00 f t in_progress_pay 1203 142 +5213 2025-10-25 15:01:55.406222+00 2025-10-25 15:01:55.406231+00 f t Confirmado 1204 \N +5214 2025-10-25 15:01:55.358746+00 2025-10-25 15:01:55.358755+00 f t payed 1204 1208 +5215 2025-10-25 15:37:30.500529+00 2025-10-25 15:37:30.500538+00 f t pending 1205 \N +5216 2025-10-25 15:38:45.982042+00 2025-10-25 15:38:45.982052+00 f t in_progress_vet 1205 1208 +5217 2025-10-25 15:38:56.40071+00 2025-10-25 15:38:56.400718+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 16:00:00 1205 1208 +5218 2025-10-25 15:49:34.894626+00 2025-10-25 15:49:34.894638+00 f t Confirmado 1203 \N +5219 2025-10-25 15:49:34.865106+00 2025-10-25 15:49:34.865115+00 f t payed 1203 1208 +5220 2025-10-25 16:00:53.07473+00 2025-10-25 16:00:53.074738+00 f t rejected D-Averiguando / Desconocido 1198 1208 +5221 2025-10-25 16:01:03.849922+00 2025-10-25 16:01:03.849933+00 f t rejected D-Averiguando / Desconocido 1192 1208 +5222 2025-10-25 17:18:24.936459+00 2025-10-25 17:18:24.936472+00 f t pending 1206 \N +5223 2025-10-25 17:18:44.443389+00 2025-10-25 17:18:44.443399+00 f t in_progress_vet 1206 1208 +5224 2025-10-25 17:18:51.699742+00 2025-10-25 17:18:51.699755+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 20:00:00 1206 1208 +5225 2025-10-25 17:19:25.994682+00 2025-10-25 17:19:25.994694+00 f t vet_asked Veterinario asignado: di Risio Daniela 1206 1208 +5226 2025-10-25 17:19:45.913392+00 2025-10-25 17:19:45.913401+00 f t Confirmado 1206 \N +5227 2025-10-25 17:19:45.87509+00 2025-10-25 17:19:45.875104+00 f t payed 1206 1208 +5228 2025-10-25 17:36:57.571815+00 2025-10-25 17:36:57.571825+00 f t pending 1207 \N +5229 2025-10-25 17:37:12.010587+00 2025-10-25 17:37:12.010594+00 f t in_progress_vet 1207 1208 +5230 2025-10-25 17:50:38.221043+00 2025-10-25 17:50:38.221051+00 f t coordinated Solicitud coordinada para 2025-10-26 a las 14:00:00 1206 1208 +5231 2025-10-25 17:51:00.773228+00 2025-10-25 17:51:00.773241+00 f t vet_asked Veterinario asignado: Burgess Clínica 1206 1208 +5232 2025-10-25 18:19:42.893021+00 2025-10-25 18:19:42.893032+00 f t pending 1208 \N +5233 2025-10-25 18:23:25.502059+00 2025-10-25 18:23:25.502072+00 f t pending 1209 \N +5234 2025-10-25 18:24:58.500217+00 2025-10-25 18:24:58.500226+00 f t in_progress_vet 1209 1208 +5235 2025-10-25 18:25:14.449538+00 2025-10-25 18:25:14.449546+00 f t coordinated Solicitud coordinada para 2025-10-25 a las 16:30:00 1209 1208 +5236 2025-10-25 18:30:36.327577+00 2025-10-25 18:30:36.32759+00 f t in_progress_vet 1208 1208 +5237 2025-10-25 18:57:59.473744+00 2025-10-25 18:57:59.473753+00 f t rejected D-Precio 1208 1208 +5238 2025-10-25 19:26:46.782076+00 2025-10-25 19:26:46.782085+00 f t rejected D-Tiempo de respuestas 1205 1208 +5239 2025-10-25 19:50:12.537651+00 2025-10-25 19:50:12.537661+00 f t rejected D-Emergencia 1209 1208 +5240 2025-10-25 22:24:42.234352+00 2025-10-25 22:24:42.234362+00 f t pending 1210 \N +5241 2025-10-25 22:43:27.320909+00 2025-10-25 22:43:27.320918+00 f t pending 1211 \N +5242 2025-10-25 23:25:26.695568+00 2025-10-25 23:25:26.695579+00 f t pending 1212 \N +5243 2025-10-25 23:31:02.383787+00 2025-10-25 23:31:02.383796+00 f t pending 1213 \N +5244 2025-10-26 12:08:12.69316+00 2025-10-26 12:08:12.693168+00 f t in_progress_vet 1210 114 +5245 2025-10-26 12:16:27.857364+00 2025-10-26 12:16:27.857374+00 f t rejected D-Emergencia 1210 114 +5246 2025-10-26 12:18:13.407267+00 2025-10-26 12:18:13.40728+00 f t in_progress_vet 1212 114 +5247 2025-10-26 12:43:11.542328+00 2025-10-26 12:43:11.542336+00 f t coordinated Solicitud coordinada para 2025-10-26 a las 14:00:00 1212 114 +5248 2025-10-26 12:43:19.310899+00 2025-10-26 12:43:19.31091+00 f t coordinated Solicitud coordinada para 2025-10-26 a las 11:30:00 1212 114 +5249 2025-10-26 12:44:59.098934+00 2025-10-26 12:44:59.098947+00 f t in_progress_vet 1213 114 +5250 2025-10-26 12:45:17.265693+00 2025-10-26 12:45:17.265701+00 f t coordinated Solicitud coordinada para 2025-10-26 a las 14:00:00 1213 114 +5251 2025-10-26 12:46:11.170989+00 2025-10-26 12:46:11.170998+00 f t vet_accepted 1212 135 +5252 2025-10-26 12:46:11.182655+00 2025-10-26 12:46:11.182667+00 f t in_progress_pay 1212 135 +5253 2025-10-26 16:21:52.514224+00 2025-10-26 16:21:52.514233+00 f t pending 1214 \N +5254 2025-10-26 16:22:39.330205+00 2025-10-26 16:22:39.330213+00 f t in_progress_vet 1214 114 +5255 2025-10-26 16:23:03.371622+00 2025-10-26 16:23:03.37163+00 f t coordinated Solicitud coordinada para 2025-10-26 a las 15:00:00 1214 114 +5256 2025-10-26 18:00:43.857393+00 2025-10-26 18:00:43.857403+00 f t pending 1215 \N +5257 2025-10-26 18:01:02.215911+00 2025-10-26 18:01:02.215924+00 f t in_progress_vet 1215 114 +5258 2025-10-26 18:01:27.219979+00 2025-10-26 18:01:27.219987+00 f t coordinated Solicitud coordinada para 2025-10-26 a las 15:30:00 1215 114 +5259 2025-10-26 18:01:44.282001+00 2025-10-26 18:01:44.282009+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1215 114 +5260 2025-10-26 18:29:11.512901+00 2025-10-26 18:29:11.512909+00 f t coordinated Solicitud coordinada para 2025-10-26 a las 14:00:00 1214 114 +5261 2025-10-26 18:29:22.073455+00 2025-10-26 18:29:22.073463+00 f t vet_asked Veterinario asignado: Palladino Martín 1214 114 +5262 2025-10-26 18:29:23.606796+00 2025-10-26 18:29:23.606805+00 f t vet_accepted 1214 114 +5263 2025-10-26 18:29:23.620216+00 2025-10-26 18:29:23.620225+00 f t in_progress_pay 1214 114 +5264 2025-10-26 18:30:07.991268+00 2025-10-26 18:30:07.991281+00 f t Confirmado 1214 \N +5265 2025-10-26 18:30:07.957348+00 2025-10-26 18:30:07.957358+00 f t payed 1214 114 +5266 2025-10-26 18:30:31.016734+00 2025-10-26 18:30:31.016745+00 f t rejected D-Abandono Bot 1212 114 +5267 2025-10-26 18:38:58.01875+00 2025-10-26 18:38:58.018758+00 f t pending 1216 \N +5268 2025-10-26 18:39:15.554577+00 2025-10-26 18:39:15.554586+00 f t in_progress_vet 1216 114 +5269 2025-10-26 18:39:38.713737+00 2025-10-26 18:39:38.713748+00 f t coordinated Solicitud coordinada para 2025-10-26 a las 16:00:00 1216 114 +5270 2025-10-26 18:40:32.840898+00 2025-10-26 18:40:32.840906+00 f t coordinated Solicitud coordinada para 2025-10-26 a las 16:00:00 1216 114 +5271 2025-10-26 18:41:01.458344+00 2025-10-26 18:41:01.458353+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1216 114 +5272 2025-10-26 18:41:02.459759+00 2025-10-26 18:41:02.459772+00 f t vet_accepted 1216 114 +5273 2025-10-26 18:41:02.476399+00 2025-10-26 18:41:02.476412+00 f t in_progress_pay 1216 114 +5274 2025-10-26 18:41:43.564973+00 2025-10-26 18:41:43.564981+00 f t Confirmado 1216 \N +5275 2025-10-26 18:41:43.537421+00 2025-10-26 18:41:43.537432+00 f t payed 1216 114 +5276 2025-10-26 18:50:27.478114+00 2025-10-26 18:50:27.478122+00 f t pending 1217 \N +5277 2025-10-26 18:50:42.333149+00 2025-10-26 18:50:42.333158+00 f t in_progress_vet 1217 114 +5278 2025-10-26 18:51:03.099193+00 2025-10-26 18:51:03.099204+00 f t coordinated Solicitud coordinada para 2025-10-26 a las 14:00:00 1217 114 +5279 2025-10-26 18:51:17.403891+00 2025-10-26 18:51:17.403901+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1217 114 +5280 2025-10-26 18:51:18.630756+00 2025-10-26 18:51:18.630767+00 f t vet_accepted 1217 114 +5281 2025-10-26 18:51:18.644+00 2025-10-26 18:51:18.644015+00 f t in_progress_pay 1217 114 +5282 2025-10-26 18:52:04.104667+00 2025-10-26 18:52:04.104676+00 f t Confirmado 1217 \N +5283 2025-10-26 18:52:04.069359+00 2025-10-26 18:52:04.069368+00 f t payed 1217 114 +5284 2025-10-26 18:57:24.962012+00 2025-10-26 18:57:24.96202+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 15:00:00 1207 114 +5285 2025-10-26 18:58:04.501542+00 2025-10-26 18:58:04.501552+00 f t pending 1218 \N +5286 2025-10-26 19:01:45.474702+00 2025-10-26 19:01:45.474711+00 f t in_progress_vet 1218 114 +5287 2025-10-26 19:01:58.706553+00 2025-10-26 19:01:58.706561+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 16:00:00 1218 114 +5288 2025-10-26 19:02:15.578747+00 2025-10-26 19:02:15.578758+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1218 114 +5289 2025-10-26 19:02:16.777724+00 2025-10-26 19:02:16.777735+00 f t vet_accepted 1218 114 +5290 2025-10-26 19:02:16.790809+00 2025-10-26 19:02:16.790818+00 f t in_progress_pay 1218 114 +5291 2025-10-26 19:02:46.435597+00 2025-10-26 19:02:46.435606+00 f t Confirmado 1218 \N +5292 2025-10-26 19:02:46.404087+00 2025-10-26 19:02:46.404099+00 f t payed 1218 114 +5293 2025-10-26 19:03:20.254663+00 2025-10-26 19:03:20.254674+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 15:00:00 1207 114 +5294 2025-10-26 19:03:59.737948+00 2025-10-26 19:03:59.737958+00 f t vet_asked Veterinario asignado: Campo Silvia 1207 114 +5295 2025-10-26 19:04:01.016644+00 2025-10-26 19:04:01.016658+00 f t vet_accepted 1207 114 +5296 2025-10-26 19:04:01.030111+00 2025-10-26 19:04:01.030123+00 f t in_progress_pay 1207 114 +5297 2025-10-26 19:04:06.606694+00 2025-10-26 19:04:06.606708+00 f t vet_asked Veterinario asignado: Campo Silvia 1207 114 +5298 2025-10-26 19:04:07.579959+00 2025-10-26 19:04:07.579972+00 f t vet_accepted 1207 114 +5299 2025-10-26 19:04:07.594593+00 2025-10-26 19:04:07.594606+00 f t in_progress_pay 1207 114 +5300 2025-10-26 19:04:31.059247+00 2025-10-26 19:04:31.059256+00 f t Confirmado 1207 \N +5301 2025-10-26 19:04:31.028772+00 2025-10-26 19:04:31.028781+00 f t payed 1207 114 +5302 2025-10-26 19:18:22.688993+00 2025-10-26 19:18:22.689001+00 f t pending 1219 \N +5303 2025-10-26 19:18:47.839215+00 2025-10-26 19:18:47.839225+00 f t in_progress_vet 1219 114 +5304 2025-10-26 19:18:56.340018+00 2025-10-26 19:18:56.340027+00 f t coordinated Solicitud coordinada para 2025-11-15 a las 11:00:00 1219 114 +5305 2025-10-26 19:19:18.008548+00 2025-10-26 19:19:18.00856+00 f t vet_asked Veterinario asignado: Robatto Javier 1219 114 +5306 2025-10-26 19:19:19.236942+00 2025-10-26 19:19:19.236951+00 f t vet_accepted 1219 114 +5307 2025-10-26 19:19:19.246684+00 2025-10-26 19:19:19.246692+00 f t in_progress_pay 1219 114 +5308 2025-10-26 19:23:08.330413+00 2025-10-26 19:23:08.330422+00 f t Confirmado 1219 \N +5309 2025-10-26 19:23:08.2923+00 2025-10-26 19:23:08.292309+00 f t payed 1219 114 +5310 2025-10-26 19:34:45.14579+00 2025-10-26 19:34:45.145799+00 f t vet_accepted 1213 \N +5311 2025-10-26 19:34:45.157072+00 2025-10-26 19:34:45.15708+00 f t in_progress_pay 1213 \N +5312 2025-10-26 19:49:42.714762+00 2025-10-26 19:49:42.714771+00 f t rejected D-Sin Turno 1215 114 +5313 2025-10-26 20:16:02.598685+00 2025-10-26 20:16:02.598695+00 f t pending 1220 \N +5314 2025-10-27 08:23:11.566908+00 2025-10-27 08:23:11.566916+00 f t vet_accepted 1174 \N +5315 2025-10-27 12:22:42.427658+00 2025-10-27 12:22:42.427668+00 f t in_progress_vet 1220 1583 +5316 2025-10-27 12:23:18.143584+00 2025-10-27 12:23:18.143595+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 15:00:00 1220 1583 +5317 2025-10-27 12:27:07.289588+00 2025-10-27 12:27:07.289598+00 f t in_progress_vet 1211 1583 +5318 2025-10-27 12:41:17.732523+00 2025-10-27 12:41:17.732534+00 f t rejected D-Provincia 1220 1583 +5319 2025-10-27 12:42:30.971864+00 2025-10-27 12:42:30.971874+00 f t pending 1221 \N +5320 2025-10-27 12:43:23.869745+00 2025-10-27 12:43:23.869755+00 f t in_progress_vet 1221 1583 +5321 2025-10-27 12:43:43.726811+00 2025-10-27 12:43:43.726819+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 19:00:00 1221 1583 +5322 2025-10-27 12:46:25.91266+00 2025-10-27 12:46:25.91267+00 f t vet_accepted 1221 \N +5323 2025-10-27 12:46:25.923863+00 2025-10-27 12:46:25.923872+00 f t in_progress_pay 1221 \N +5324 2025-10-27 13:21:13.501978+00 2025-10-27 13:21:13.501991+00 f t pending 1222 \N +5325 2025-10-27 13:25:17.303231+00 2025-10-27 13:25:17.303243+00 f t Confirmado 1221 \N +5326 2025-10-27 13:25:17.268465+00 2025-10-27 13:25:17.268477+00 f t payed 1221 1583 +5327 2025-10-27 13:28:07.062063+00 2025-10-27 13:28:07.062073+00 f t in_progress_vet 1222 1583 +5328 2025-10-27 13:46:37.205371+00 2025-10-27 13:46:37.20538+00 f t pending 1223 \N +5329 2025-10-27 13:46:49.749978+00 2025-10-27 13:46:49.749986+00 f t in_progress_vet 1223 1583 +5330 2025-10-27 13:46:55.03862+00 2025-10-27 13:46:55.038632+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 11:30:00 1223 1583 +5331 2025-10-27 13:54:23.834898+00 2025-10-27 13:54:23.834908+00 f t vet_asked Veterinario asignado: Passio Laura 1223 1583 +5332 2025-10-27 13:54:24.556073+00 2025-10-27 13:54:24.556082+00 f t vet_accepted 1223 1583 +5333 2025-10-27 13:54:24.567833+00 2025-10-27 13:54:24.567842+00 f t in_progress_pay 1223 1583 +5334 2025-10-27 13:57:00.978658+00 2025-10-27 13:57:00.978671+00 f t Confirmado 1223 \N +5335 2025-10-27 13:57:00.934311+00 2025-10-27 13:57:00.934324+00 f t payed 1223 1583 +5336 2025-10-27 14:02:56.28855+00 2025-10-27 14:02:56.288563+00 f t pending 1224 \N +5337 2025-10-27 14:03:12.840429+00 2025-10-27 14:03:12.840438+00 f t in_progress_vet 1224 1583 +5338 2025-10-27 14:03:19.131768+00 2025-10-27 14:03:19.131779+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 13:00:00 1224 1583 +5339 2025-10-27 14:54:21.676031+00 2025-10-27 14:54:21.67604+00 f t pending 1225 \N +5340 2025-10-27 14:54:44.511319+00 2025-10-27 14:54:44.51133+00 f t in_progress_vet 1225 1583 +5341 2025-10-27 14:54:44.698373+00 2025-10-27 14:54:44.698383+00 f t in_progress_vet 1225 1583 +5342 2025-10-27 14:54:44.704135+00 2025-10-27 14:54:44.704149+00 f t in_progress_vet 1225 1583 +5343 2025-10-27 14:55:01.461194+00 2025-10-27 14:55:01.461206+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 19:00:00 1225 1583 +5344 2025-10-27 14:55:11.714652+00 2025-10-27 14:55:11.714661+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1225 1583 +5345 2025-10-27 14:55:12.382546+00 2025-10-27 14:55:12.382555+00 f t vet_accepted 1225 1583 +5346 2025-10-27 14:55:12.396834+00 2025-10-27 14:55:12.396845+00 f t in_progress_pay 1225 1583 +5347 2025-10-27 14:55:14.681412+00 2025-10-27 14:55:14.681425+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1225 1583 +5348 2025-10-27 14:57:02.892213+00 2025-10-27 14:57:02.892221+00 f t Confirmado 1225 \N +5349 2025-10-27 14:57:02.846613+00 2025-10-27 14:57:02.846622+00 f t payed 1225 1583 +5350 2025-10-27 15:03:15.80002+00 2025-10-27 15:03:15.800029+00 f t pending 1226 \N +5351 2025-10-27 15:03:51.36119+00 2025-10-27 15:03:51.361199+00 f t in_progress_vet 1226 1583 +5352 2025-10-27 15:04:14.290041+00 2025-10-27 15:04:14.290051+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 21:00:00 1226 1583 +5353 2025-10-27 15:04:42.06957+00 2025-10-27 15:04:42.069579+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1226 1583 +5354 2025-10-27 15:04:42.809984+00 2025-10-27 15:04:42.809994+00 f t vet_accepted 1226 1583 +5355 2025-10-27 15:04:42.821487+00 2025-10-27 15:04:42.821496+00 f t in_progress_pay 1226 1583 +5356 2025-10-27 15:05:03.909394+00 2025-10-27 15:05:03.909407+00 f t Confirmado 1226 \N +5357 2025-10-27 15:05:03.804547+00 2025-10-27 15:05:03.804562+00 f t payed 1226 1583 +5358 2025-10-27 15:08:24.822583+00 2025-10-27 15:08:24.822593+00 f t pending 1227 \N +5359 2025-10-27 15:16:14.586841+00 2025-10-27 15:16:14.586855+00 f t in_progress_vet 1227 1583 +5360 2025-10-27 15:16:23.566773+00 2025-10-27 15:16:23.566782+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 14:00:00 1227 1583 +5361 2025-10-27 15:41:50.2788+00 2025-10-27 15:41:50.278812+00 f t pending 1228 \N +5362 2025-10-27 15:42:02.759425+00 2025-10-27 15:42:02.759436+00 f t in_progress_vet 1228 1583 +5363 2025-10-27 15:42:12.540522+00 2025-10-27 15:42:12.540533+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 09:00:00 1228 1583 +5364 2025-10-27 15:57:14.741289+00 2025-10-27 15:57:14.741298+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 1228 1583 +5365 2025-10-27 15:57:15.409676+00 2025-10-27 15:57:15.409687+00 f t vet_accepted 1228 1583 +5366 2025-10-27 15:57:15.422912+00 2025-10-27 15:57:15.422921+00 f t in_progress_pay 1228 1583 +5367 2025-10-27 16:01:44.402772+00 2025-10-27 16:01:44.402781+00 f t Confirmado 1228 \N +5368 2025-10-27 16:01:44.368827+00 2025-10-27 16:01:44.368836+00 f t payed 1228 1583 +5369 2025-10-27 16:12:25.888342+00 2025-10-27 16:12:25.888351+00 f t pending 1229 \N +5370 2025-10-27 16:13:28.785741+00 2025-10-27 16:13:28.785749+00 f t in_progress_vet 1229 1583 +5371 2025-10-27 16:13:40.212806+00 2025-10-27 16:13:40.212814+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 14:00:00 1229 1583 +5372 2025-10-27 16:15:06.296441+00 2025-10-27 16:15:06.296451+00 f t vet_accepted 1229 \N +5373 2025-10-27 16:15:06.316205+00 2025-10-27 16:15:06.316219+00 f t in_progress_pay 1229 \N +5374 2025-10-27 16:16:19.113168+00 2025-10-27 16:16:19.113178+00 f t vet_accepted 1229 \N +5375 2025-10-27 16:16:19.124617+00 2025-10-27 16:16:19.124629+00 f t in_progress_pay 1229 \N +5376 2025-10-27 16:33:54.554164+00 2025-10-27 16:33:54.554172+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 18:00:00 1229 1583 +5377 2025-10-27 16:34:25.999668+00 2025-10-27 16:34:25.999677+00 f t Confirmado 1229 \N +5378 2025-10-27 16:34:25.965211+00 2025-10-27 16:34:25.965224+00 f t payed 1229 1583 +5379 2025-10-27 16:44:25.340238+00 2025-10-27 16:44:25.340247+00 f t rejected D-Tiempo de respuestas 1227 1583 +5380 2025-10-27 16:57:51.912109+00 2025-10-27 16:57:51.912117+00 f t pending 1230 \N +5381 2025-10-27 16:58:28.352834+00 2025-10-27 16:58:28.352843+00 f t in_progress_vet 1230 1583 +5382 2025-10-27 16:58:36.756309+00 2025-10-27 16:58:36.756317+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 10:00:00 1230 1583 +5383 2025-10-27 17:01:20.0546+00 2025-10-27 17:01:20.05461+00 f t vet_accepted 1230 \N +5384 2025-10-27 17:01:20.071282+00 2025-10-27 17:01:20.071294+00 f t in_progress_pay 1230 \N +5385 2025-10-27 17:09:20.713342+00 2025-10-27 17:09:20.713354+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 15:00:00 1230 1583 +5386 2025-10-27 17:10:10.06254+00 2025-10-27 17:10:10.062554+00 f t Confirmado 1230 \N +5387 2025-10-27 17:10:10.009396+00 2025-10-27 17:10:10.009408+00 f t payed 1230 1583 +5388 2025-10-27 17:13:19.026965+00 2025-10-27 17:13:19.026977+00 f t pending 1231 \N +5389 2025-10-27 17:13:43.086998+00 2025-10-27 17:13:43.087007+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 16:00:00 1231 1583 +5390 2025-10-27 17:13:53.730893+00 2025-10-27 17:13:53.730901+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1231 1583 +5391 2025-10-27 17:13:54.471596+00 2025-10-27 17:13:54.471608+00 f t vet_accepted 1231 1583 +5392 2025-10-27 17:13:54.487248+00 2025-10-27 17:13:54.487257+00 f t in_progress_pay 1231 1583 +5393 2025-10-27 17:14:27.781505+00 2025-10-27 17:14:27.781513+00 f t Confirmado 1231 \N +5394 2025-10-27 17:14:27.749708+00 2025-10-27 17:14:27.749722+00 f t payed 1231 1583 +5395 2025-10-27 17:49:46.647554+00 2025-10-27 17:49:46.647564+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 17:30:00 1222 1583 +5396 2025-10-27 17:49:50.397685+00 2025-10-27 17:49:50.397695+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1222 1583 +5397 2025-10-27 17:49:52.360868+00 2025-10-27 17:49:52.360877+00 f t vet_accepted 1222 1583 +5398 2025-10-27 17:49:52.372165+00 2025-10-27 17:49:52.372178+00 f t in_progress_pay 1222 1583 +5399 2025-10-27 17:50:12.481477+00 2025-10-27 17:50:12.481486+00 f t Confirmado 1222 \N +5400 2025-10-27 17:50:12.423629+00 2025-10-27 17:50:12.423641+00 f t payed 1222 1583 +5401 2025-10-27 18:01:45.614012+00 2025-10-27 18:01:45.614024+00 f t pending 1232 \N +5402 2025-10-27 18:01:55.204415+00 2025-10-27 18:01:55.204428+00 f t in_progress_vet 1232 1583 +5403 2025-10-27 18:02:02.902533+00 2025-10-27 18:02:02.902546+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 19:00:00 1232 1583 +5404 2025-10-27 18:06:17.913707+00 2025-10-27 18:06:17.913717+00 f t vet_accepted 1232 \N +5405 2025-10-27 18:06:17.926535+00 2025-10-27 18:06:17.926545+00 f t in_progress_pay 1232 \N +5406 2025-10-27 18:09:53.260615+00 2025-10-27 18:09:53.260626+00 f t vet_asked Veterinario asignado: Palummo Mariana 1232 1583 +5407 2025-10-27 18:09:54.0101+00 2025-10-27 18:09:54.01011+00 f t vet_accepted 1232 1583 +5408 2025-10-27 18:09:54.022863+00 2025-10-27 18:09:54.022875+00 f t in_progress_pay 1232 1583 +5409 2025-10-27 18:12:17.202128+00 2025-10-27 18:12:17.202136+00 f t pending 1233 \N +5410 2025-10-27 18:12:28.80601+00 2025-10-27 18:12:28.806022+00 f t in_progress_vet 1233 1583 +5411 2025-10-27 18:12:40.112214+00 2025-10-27 18:12:40.112222+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 16:30:00 1233 1583 +5412 2025-10-27 18:14:17.158642+00 2025-10-27 18:14:17.158651+00 f t vet_accepted 1233 \N +5413 2025-10-27 18:14:17.171052+00 2025-10-27 18:14:17.171064+00 f t in_progress_pay 1233 \N +5414 2025-10-27 18:25:37.480795+00 2025-10-27 18:25:37.480804+00 f t pending 1234 \N +5415 2025-10-27 18:25:58.339472+00 2025-10-27 18:25:58.339484+00 f t in_progress_vet 1234 114 +5416 2025-10-27 18:26:12.360153+00 2025-10-27 18:26:12.360166+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 20:00:00 1232 1583 +5417 2025-10-27 18:26:21.972206+00 2025-10-27 18:26:21.972217+00 f t vet_asked Veterinario asignado: Palummo Mariana 1232 1583 +5418 2025-10-27 18:26:22.711084+00 2025-10-27 18:26:22.711093+00 f t vet_accepted 1232 1583 +5419 2025-10-27 18:26:22.72137+00 2025-10-27 18:26:22.721379+00 f t in_progress_pay 1232 1583 +5420 2025-10-27 18:26:47.520453+00 2025-10-27 18:26:47.520464+00 f t Confirmado 1232 \N +5421 2025-10-27 18:26:47.486016+00 2025-10-27 18:26:47.486028+00 f t payed 1232 1583 +5422 2025-10-27 18:35:36.834046+00 2025-10-27 18:35:36.834054+00 f t Confirmado 1233 \N +5423 2025-10-27 18:35:36.802414+00 2025-10-27 18:35:36.802423+00 f t payed 1233 1583 +5424 2025-10-27 19:07:24.205338+00 2025-10-27 19:07:24.205349+00 f t pending 1235 \N +5425 2025-10-27 19:09:55.509057+00 2025-10-27 19:09:55.509067+00 f t in_progress_vet 1235 114 +5426 2025-10-27 19:12:01.819336+00 2025-10-27 19:12:01.819352+00 f t coordinated Solicitud coordinada para 2025-11-02 a las 16:00:00 1235 114 +5427 2025-10-27 19:12:17.637821+00 2025-10-27 19:12:17.637836+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1235 114 +5428 2025-10-27 19:12:19.014311+00 2025-10-27 19:12:19.014328+00 f t vet_accepted 1235 114 +5429 2025-10-27 19:12:19.027985+00 2025-10-27 19:12:19.027997+00 f t in_progress_pay 1235 114 +5430 2025-10-27 19:12:58.651552+00 2025-10-27 19:12:58.651561+00 f t Confirmado 1235 \N +5431 2025-10-27 19:12:58.610202+00 2025-10-27 19:12:58.610215+00 f t payed 1235 114 +5432 2025-10-27 19:21:28.112838+00 2025-10-27 19:21:28.112848+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 15:30:00 1234 114 +5433 2025-10-27 19:21:44.213198+00 2025-10-27 19:21:44.213208+00 f t vet_asked Veterinario asignado: Memed Nestor 1234 114 +5434 2025-10-27 19:21:46.198036+00 2025-10-27 19:21:46.198049+00 f t vet_accepted 1234 114 +5435 2025-10-27 19:21:46.211995+00 2025-10-27 19:21:46.212008+00 f t in_progress_pay 1234 114 +5436 2025-10-27 19:24:28.467503+00 2025-10-27 19:24:28.467514+00 f t Confirmado 1234 \N +5437 2025-10-27 19:24:28.435093+00 2025-10-27 19:24:28.435102+00 f t payed 1234 114 +5438 2025-10-27 19:34:06.41009+00 2025-10-27 19:34:06.410099+00 f t coordinated Solicitud coordinada para 2025-10-28 a las 10:00:00 1224 1583 +5439 2025-10-27 20:06:56.043201+00 2025-10-27 20:06:56.043211+00 f t pending 1236 \N +5440 2025-10-27 20:09:03.485385+00 2025-10-27 20:09:03.486901+00 f t in_progress_vet 1236 114 +5441 2025-10-27 20:09:04.923204+00 2025-10-27 20:09:04.924644+00 f t in_progress_vet 1236 114 +5442 2025-10-27 20:12:35.030015+00 2025-10-27 20:12:35.030026+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 19:00:00 1236 114 +5443 2025-10-27 20:19:17.771717+00 2025-10-27 20:19:17.77173+00 f t vet_accepted 1229 \N +5444 2025-10-27 20:43:59.90281+00 2025-10-27 20:43:59.902819+00 f t pending 1237 \N +5445 2025-10-27 20:45:21.137495+00 2025-10-27 20:45:21.137504+00 f t in_progress_vet 1237 114 +5446 2025-10-27 20:45:37.806444+00 2025-10-27 20:45:37.806453+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 18:30:00 1237 114 +5447 2025-10-27 21:06:58.180995+00 2025-10-27 21:06:58.181006+00 f t pending 1238 \N +5448 2025-10-27 21:10:55.661698+00 2025-10-27 21:10:55.661714+00 f t pending 1239 \N +5449 2025-10-27 21:13:25.984013+00 2025-10-27 21:13:25.984023+00 f t pending 1240 \N +5450 2025-10-27 21:13:29.044082+00 2025-10-27 21:13:29.044089+00 f t pending 1241 \N +5451 2025-10-27 21:15:50.351455+00 2025-10-27 21:15:50.351464+00 f t in_progress_vet 1241 114 +5452 2025-10-27 21:16:35.344728+00 2025-10-27 21:16:35.344738+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 10:00:00 1241 114 +5453 2025-10-27 21:16:54.960201+00 2025-10-27 21:16:54.960215+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1241 114 +5454 2025-10-27 21:16:55.93877+00 2025-10-27 21:16:55.938781+00 f t vet_accepted 1241 114 +5455 2025-10-27 21:16:55.951437+00 2025-10-27 21:16:55.951446+00 f t in_progress_pay 1241 114 +5456 2025-10-27 21:17:33.255453+00 2025-10-27 21:17:33.255463+00 f t Confirmado 1241 \N +5457 2025-10-27 21:17:33.220127+00 2025-10-27 21:17:33.220141+00 f t payed 1241 114 +5458 2025-10-27 21:33:29.236359+00 2025-10-27 21:33:29.236368+00 f t in_progress_vet 1239 114 +5459 2025-10-27 22:23:54.803267+00 2025-10-27 22:23:54.803277+00 f t coordinated Solicitud coordinada para 2025-10-28 a las 16:00:00 1239 114 +5460 2025-10-27 22:39:54.391608+00 2025-10-27 22:39:54.391618+00 f t coordinated Solicitud coordinada para 2025-10-28 a las 18:00:00 1239 114 +5461 2025-10-27 23:02:32.582583+00 2025-10-27 23:02:32.582591+00 f t pending 1242 \N +5462 2025-10-27 23:04:40.152627+00 2025-10-27 23:04:40.152636+00 f t in_progress_vet 1242 114 +5463 2025-10-27 23:04:59.590148+00 2025-10-27 23:04:59.590156+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 19:00:00 1242 114 +5464 2025-10-27 23:05:55.990367+00 2025-10-27 23:05:55.990383+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1242 114 +5465 2025-10-27 23:05:57.35772+00 2025-10-27 23:05:57.357732+00 f t vet_accepted 1242 114 +5466 2025-10-27 23:05:57.370464+00 2025-10-27 23:05:57.370475+00 f t in_progress_pay 1242 114 +5467 2025-10-27 23:06:06.058368+00 2025-10-27 23:06:06.058381+00 f t Confirmado 1242 \N +5468 2025-10-27 23:06:06.007155+00 2025-10-27 23:06:06.007187+00 f t payed 1242 114 +5469 2025-10-27 23:07:27.671061+00 2025-10-27 23:07:27.671072+00 f t pending 1243 \N +5470 2025-10-27 23:11:22.071875+00 2025-10-27 23:11:22.071887+00 f t in_progress_vet 1243 114 +5471 2025-10-27 23:11:47.171426+00 2025-10-27 23:11:47.171439+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 20:30:00 1243 114 +5472 2025-10-27 23:13:37.560694+00 2025-10-27 23:13:37.560704+00 f t vet_accepted 1243 \N +5473 2025-10-27 23:13:37.578389+00 2025-10-27 23:13:37.5784+00 f t in_progress_pay 1243 \N +5474 2025-10-27 23:13:51.33502+00 2025-10-27 23:13:51.33503+00 f t vet_accepted 1243 \N +5475 2025-10-27 23:13:51.351205+00 2025-10-27 23:13:51.351227+00 f t in_progress_pay 1243 \N +5476 2025-10-27 23:20:14.445609+00 2025-10-27 23:20:14.445617+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 19:30:00 1239 114 +5477 2025-10-27 23:20:25.10519+00 2025-10-27 23:20:25.105203+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1239 114 +5478 2025-10-27 23:20:26.250021+00 2025-10-27 23:20:26.25003+00 f t vet_accepted 1239 114 +5479 2025-10-27 23:20:26.261862+00 2025-10-27 23:20:26.261871+00 f t in_progress_pay 1239 114 +5480 2025-10-27 23:20:34.829965+00 2025-10-27 23:20:34.829973+00 f t Confirmado 1239 \N +5481 2025-10-27 23:20:34.795348+00 2025-10-27 23:20:34.79536+00 f t payed 1239 114 +5482 2025-10-27 23:20:57.686048+00 2025-10-27 23:20:57.686058+00 f t rejected D-Sin Turno 1236 114 +5483 2025-10-27 23:21:13.348446+00 2025-10-27 23:21:13.348459+00 f t rejected D-Averiguando / Desconocido 1238 114 +5484 2025-10-27 23:26:49.006711+00 2025-10-27 23:26:49.006721+00 f t rejected Solicitud rechazada por Usuario no especificado 1243 \N +5485 2025-10-27 23:26:49.014201+00 2025-10-27 23:26:49.01421+00 f t in_progress_vet 1243 \N +5486 2025-10-27 23:45:07.36259+00 2025-10-27 23:45:07.362597+00 f t coordinated Solicitud coordinada para 2025-10-28 a las 16:30:00 1243 114 +5487 2025-10-27 23:45:15.600612+00 2025-10-27 23:45:15.60062+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1243 114 +5488 2025-10-27 23:45:17.966178+00 2025-10-27 23:45:17.966187+00 f t vet_accepted 1243 114 +5489 2025-10-27 23:45:17.976652+00 2025-10-27 23:45:17.97666+00 f t in_progress_pay 1243 114 +5490 2025-10-27 23:46:31.157036+00 2025-10-27 23:46:31.157046+00 f t Confirmado 1243 \N +5491 2025-10-27 23:46:31.118062+00 2025-10-27 23:46:31.118071+00 f t payed 1243 114 +5492 2025-10-27 23:51:11.710526+00 2025-10-27 23:51:11.710535+00 f t pending 1244 \N +5493 2025-10-27 23:53:22.105857+00 2025-10-27 23:53:22.105867+00 f t in_progress_vet 1244 114 +5494 2025-10-27 23:53:25.88505+00 2025-10-27 23:53:25.885058+00 f t coordinated Solicitud coordinada para 2025-10-28 a las 15:00:00 1244 114 +5495 2025-10-27 23:53:44.451727+00 2025-10-27 23:53:44.451736+00 f t vet_asked Veterinario asignado: di Risio Daniela 1244 114 +5496 2025-10-27 23:53:45.705778+00 2025-10-27 23:53:45.705786+00 f t vet_accepted 1244 114 +5497 2025-10-27 23:53:45.716037+00 2025-10-27 23:53:45.716046+00 f t in_progress_pay 1244 114 +5498 2025-10-27 23:54:17.402495+00 2025-10-27 23:54:17.402504+00 f t Confirmado 1244 \N +5499 2025-10-27 23:54:17.375582+00 2025-10-27 23:54:17.375592+00 f t payed 1244 114 +5583 2025-10-28 18:09:57.806599+00 2025-10-28 18:09:57.806609+00 f t payed 1258 1583 +5500 2025-10-27 23:56:10.132054+00 2025-10-27 23:56:10.132063+00 f t coordinated Solicitud coordinada para 2025-10-27 a las 19:00:00 1237 114 +5501 2025-10-27 23:56:31.561091+00 2025-10-27 23:56:31.5611+00 f t vet_asked Veterinario asignado: Laura Gorostegui Maria 1237 114 +5502 2025-10-27 23:56:33.189385+00 2025-10-27 23:56:33.189394+00 f t vet_accepted 1237 114 +5503 2025-10-27 23:56:33.200246+00 2025-10-27 23:56:33.200255+00 f t in_progress_pay 1237 114 +5504 2025-10-27 23:57:16.22125+00 2025-10-27 23:57:16.221258+00 f t Confirmado 1237 \N +5505 2025-10-27 23:57:16.188989+00 2025-10-27 23:57:16.188998+00 f t payed 1237 114 +5506 2025-10-28 00:14:28.208785+00 2025-10-28 00:14:28.208795+00 f t pending 1245 \N +5507 2025-10-28 00:14:48.718778+00 2025-10-28 00:14:48.718786+00 f t coordinated Solicitud coordinada para 2025-10-28 a las 08:00:00 1245 114 +5508 2025-10-28 00:15:28.53367+00 2025-10-28 00:15:28.533679+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1245 114 +5509 2025-10-28 00:15:30.135767+00 2025-10-28 00:15:30.135775+00 f t vet_accepted 1245 114 +5510 2025-10-28 00:15:30.150394+00 2025-10-28 00:15:30.150404+00 f t in_progress_pay 1245 114 +5511 2025-10-28 00:16:18.489896+00 2025-10-28 00:16:18.489909+00 f t Confirmado 1245 \N +5512 2025-10-28 00:16:18.455895+00 2025-10-28 00:16:18.455907+00 f t payed 1245 114 +5513 2025-10-28 04:43:39.820567+00 2025-10-28 04:43:39.820577+00 f t pending 1246 \N +5514 2025-10-28 12:14:27.461522+00 2025-10-28 12:14:27.461535+00 f t in_progress_vet 1246 1208 +5515 2025-10-28 12:47:56.965745+00 2025-10-28 12:47:56.965755+00 f t pending 1247 \N +5516 2025-10-28 13:17:26.133958+00 2025-10-28 13:17:26.133967+00 f t in_progress_vet 1247 1208 +5517 2025-10-28 13:17:39.676839+00 2025-10-28 13:17:39.676847+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 10:00:00 1247 1208 +5518 2025-10-28 13:30:37.824504+00 2025-10-28 13:30:37.824512+00 f t rejected D-Derivado 1246 1208 +5519 2025-10-28 13:33:14.916734+00 2025-10-28 13:33:14.916743+00 f t vet_accepted 1247 128 +5520 2025-10-28 13:33:14.928751+00 2025-10-28 13:33:14.928764+00 f t in_progress_pay 1247 128 +5521 2025-10-28 13:59:15.10757+00 2025-10-28 13:59:15.107579+00 f t pending 1248 \N +5522 2025-10-28 13:59:39.761403+00 2025-10-28 13:59:39.761413+00 f t in_progress_vet 1248 1208 +5523 2025-10-28 14:16:36.634117+00 2025-10-28 14:16:36.634126+00 f t Confirmado 1247 \N +5524 2025-10-28 14:16:36.578656+00 2025-10-28 14:16:36.578668+00 f t payed 1247 1208 +5525 2025-10-28 15:01:29.797563+00 2025-10-28 15:01:29.797574+00 f t pending 1249 \N +5526 2025-10-28 15:02:25.922914+00 2025-10-28 15:02:25.922923+00 f t pending 1250 \N +5527 2025-10-28 15:02:40.441116+00 2025-10-28 15:02:40.441125+00 f t in_progress_vet 1250 1208 +5528 2025-10-28 15:02:54.153311+00 2025-10-28 15:02:54.153326+00 f t in_progress_vet 1249 1208 +5529 2025-10-28 15:19:12.583119+00 2025-10-28 15:19:12.583147+00 f t pending 1251 \N +5530 2025-10-28 15:19:24.302468+00 2025-10-28 15:19:24.30248+00 f t in_progress_vet 1251 1208 +5531 2025-10-28 15:44:12.545452+00 2025-10-28 15:44:12.545461+00 f t pending 1252 \N +5532 2025-10-28 15:44:27.163759+00 2025-10-28 15:44:27.163769+00 f t in_progress_vet 1252 1208 +5533 2025-10-28 15:57:54.913972+00 2025-10-28 15:57:54.91398+00 f t pending 1253 \N +5534 2025-10-28 15:58:19.412507+00 2025-10-28 15:58:19.412516+00 f t in_progress_vet 1253 1583 +5535 2025-10-28 16:00:36.039185+00 2025-10-28 16:00:36.039194+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 15:00:00 1251 1208 +5536 2025-10-28 16:00:41.393183+00 2025-10-28 16:00:41.393192+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1251 1208 +5537 2025-10-28 16:00:52.550279+00 2025-10-28 16:00:52.550288+00 f t Confirmado 1251 \N +5538 2025-10-28 16:00:52.523071+00 2025-10-28 16:00:52.523079+00 f t payed 1251 1208 +5539 2025-10-28 16:15:36.480417+00 2025-10-28 16:15:36.480426+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1253 1583 +5540 2025-10-28 16:15:37.232327+00 2025-10-28 16:15:37.232336+00 f t vet_accepted 1253 1583 +5541 2025-10-28 16:15:37.244961+00 2025-10-28 16:15:37.244971+00 f t in_progress_pay 1253 1583 +5542 2025-10-28 16:17:27.971395+00 2025-10-28 16:17:27.971403+00 f t Confirmado 1253 \N +5543 2025-10-28 16:17:27.938535+00 2025-10-28 16:17:27.938545+00 f t payed 1253 1583 +5544 2025-10-28 16:23:28.081912+00 2025-10-28 16:23:28.081922+00 f t pending 1254 \N +5545 2025-10-28 16:23:44.274322+00 2025-10-28 16:23:44.274335+00 f t in_progress_vet 1254 1583 +5546 2025-10-28 16:23:54.279846+00 2025-10-28 16:23:54.279854+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 10:00:00 1254 1583 +5547 2025-10-28 16:24:02.179208+00 2025-10-28 16:24:02.179223+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1254 1583 +5548 2025-10-28 16:24:02.804379+00 2025-10-28 16:24:02.804392+00 f t vet_accepted 1254 1583 +5549 2025-10-28 16:24:02.818252+00 2025-10-28 16:24:02.818262+00 f t in_progress_pay 1254 1583 +5550 2025-10-28 16:24:13.536148+00 2025-10-28 16:24:13.536155+00 f t Confirmado 1254 \N +5551 2025-10-28 16:24:13.507951+00 2025-10-28 16:24:13.507958+00 f t payed 1254 1583 +5552 2025-10-28 16:24:14.904367+00 2025-10-28 16:24:14.904376+00 f t payed 1254 1583 +5553 2025-10-28 16:37:17.669827+00 2025-10-28 16:37:17.669888+00 f t pending 1255 \N +5554 2025-10-28 16:37:28.5269+00 2025-10-28 16:37:28.52691+00 f t in_progress_vet 1255 1208 +5555 2025-10-28 16:37:36.857+00 2025-10-28 16:37:36.857009+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 16:30:00 1255 1208 +5556 2025-10-28 16:40:03.473285+00 2025-10-28 16:40:03.473298+00 f t vet_accepted 1255 \N +5557 2025-10-28 16:40:03.493515+00 2025-10-28 16:40:03.493531+00 f t in_progress_pay 1255 \N +5558 2025-10-28 16:40:06.759592+00 2025-10-28 16:40:06.759602+00 f t rejected Solicitud rechazada por Usuario no especificado 1255 \N +5559 2025-10-28 16:40:06.769004+00 2025-10-28 16:40:06.769013+00 f t in_progress_vet 1255 \N +5560 2025-10-28 17:29:56.546005+00 2025-10-28 17:29:56.546016+00 f t pending 1256 \N +5561 2025-10-28 17:30:18.001475+00 2025-10-28 17:30:18.001485+00 f t in_progress_vet 1256 1583 +5562 2025-10-28 17:31:08.450787+00 2025-10-28 17:31:08.450797+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 11:30:00 1252 1208 +5563 2025-10-28 17:31:11.379564+00 2025-10-28 17:31:11.37958+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1252 1208 +5564 2025-10-28 17:32:25.70785+00 2025-10-28 17:32:25.70786+00 f t Confirmado 1252 \N +5565 2025-10-28 17:32:25.672372+00 2025-10-28 17:32:25.672383+00 f t payed 1252 1208 +5566 2025-10-28 17:40:40.543939+00 2025-10-28 17:40:40.54395+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 18:00:00 1255 1208 +5567 2025-10-28 17:40:51.748534+00 2025-10-28 17:40:51.748545+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1255 1208 +5568 2025-10-28 17:48:39.556913+00 2025-10-28 17:48:39.556923+00 f t Confirmado 1255 \N +5569 2025-10-28 17:48:39.520762+00 2025-10-28 17:48:39.520771+00 f t payed 1255 1208 +5570 2025-10-28 17:56:56.803665+00 2025-10-28 17:56:56.803676+00 f t pending 1257 \N +5571 2025-10-28 18:00:07.993256+00 2025-10-28 18:00:07.993272+00 f t in_progress_vet 1257 1208 +5572 2025-10-28 18:00:48.40214+00 2025-10-28 18:00:48.402151+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 19:30:00 1257 1208 +5573 2025-10-28 18:01:08.848897+00 2025-10-28 18:01:08.84891+00 f t payed 1257 1208 +5574 2025-10-28 18:01:26.192116+00 2025-10-28 18:01:26.192125+00 f t Confirmado 1257 \N +5575 2025-10-28 18:01:26.975574+00 2025-10-28 18:01:26.975585+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1257 1208 +5576 2025-10-28 18:02:16.236892+00 2025-10-28 18:02:16.236902+00 f t pending 1258 \N +5577 2025-10-28 18:02:35.574434+00 2025-10-28 18:02:35.574444+00 f t in_progress_vet 1258 1583 +5578 2025-10-28 18:02:52.144862+00 2025-10-28 18:02:52.144871+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 10:00:00 1258 1583 +5579 2025-10-28 18:06:53.701061+00 2025-10-28 18:06:53.701071+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1258 1583 +5580 2025-10-28 18:06:54.758854+00 2025-10-28 18:06:54.758864+00 f t vet_accepted 1258 1583 +5581 2025-10-28 18:06:54.770699+00 2025-10-28 18:06:54.770712+00 f t in_progress_pay 1258 1583 +5582 2025-10-28 18:09:57.838865+00 2025-10-28 18:09:57.838876+00 f t Confirmado 1258 \N +5584 2025-10-28 18:13:57.220587+00 2025-10-28 18:13:57.220596+00 f t rejected D-Abandono Bot 1248 1208 +5585 2025-10-28 18:32:07.715778+00 2025-10-28 18:32:07.715787+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 18:00:00 1249 1208 +5586 2025-10-28 18:32:42.430478+00 2025-10-28 18:32:42.430487+00 f t vet_accepted 1249 \N +5587 2025-10-28 18:32:42.443006+00 2025-10-28 18:32:42.443016+00 f t in_progress_pay 1249 \N +5588 2025-10-28 18:32:44.415892+00 2025-10-28 18:32:44.415902+00 f t rejected Solicitud rechazada por Usuario no especificado 1249 \N +5589 2025-10-28 18:32:44.423121+00 2025-10-28 18:32:44.423153+00 f t in_progress_vet 1249 \N +5590 2025-10-28 19:24:47.873468+00 2025-10-28 19:24:47.873479+00 f t pending 1259 \N +5591 2025-10-28 19:25:11.87075+00 2025-10-28 19:25:11.870758+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 19:00:00 1259 1583 +5592 2025-10-28 19:25:59.294758+00 2025-10-28 19:25:59.294768+00 f t vet_accepted 1259 \N +5593 2025-10-28 19:25:59.305865+00 2025-10-28 19:25:59.305876+00 f t in_progress_pay 1259 \N +5594 2025-10-28 19:36:22.625937+00 2025-10-28 19:36:22.625948+00 f t Confirmado 1259 \N +5595 2025-10-28 19:36:22.592022+00 2025-10-28 19:36:22.592032+00 f t payed 1259 1583 +5596 2025-10-28 19:40:55.468428+00 2025-10-28 19:40:55.468442+00 f t pending 1260 \N +5597 2025-10-28 19:41:10.866318+00 2025-10-28 19:41:10.866328+00 f t in_progress_vet 1260 1583 +5598 2025-10-28 19:42:36.293038+00 2025-10-28 19:42:36.29305+00 f t coordinated Solicitud coordinada para 2025-10-28 a las 20:00:00 1260 1583 +5599 2025-10-28 19:45:26.599165+00 2025-10-28 19:45:26.599174+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 18:00:00 1250 1208 +5600 2025-10-28 19:45:32.296868+00 2025-10-28 19:45:32.296878+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1250 1208 +5601 2025-10-28 19:45:48.667042+00 2025-10-28 19:45:48.667051+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 19:00:00 1249 1208 +5602 2025-10-28 19:45:53.784401+00 2025-10-28 19:45:53.784411+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1249 1208 +5603 2025-10-28 19:46:46.071595+00 2025-10-28 19:46:46.071608+00 f t vet_asked Veterinario asignado: di Risio Daniela 1260 1583 +5604 2025-10-28 19:46:49.354158+00 2025-10-28 19:46:49.35417+00 f t vet_accepted 1260 1583 +5605 2025-10-28 19:46:49.36625+00 2025-10-28 19:46:49.36626+00 f t in_progress_pay 1260 1583 +5606 2025-10-28 19:46:54.895707+00 2025-10-28 19:46:54.895715+00 f t coordinated Solicitud coordinada para 2025-10-28 a las 19:00:00 1260 1583 +5607 2025-10-28 19:51:00.106803+00 2025-10-28 19:51:00.106815+00 f t Confirmado 1250 \N +5608 2025-10-28 19:51:00.062185+00 2025-10-28 19:51:00.062196+00 f t payed 1250 1208 +5609 2025-10-28 19:51:17.457586+00 2025-10-28 19:51:17.457595+00 f t Confirmado 1249 \N +5610 2025-10-28 19:51:17.426223+00 2025-10-28 19:51:17.426234+00 f t payed 1249 1208 +5611 2025-10-28 20:00:17.124191+00 2025-10-28 20:00:17.124203+00 f t pending 1261 \N +5612 2025-10-28 20:02:48.530906+00 2025-10-28 20:02:48.530915+00 f t in_progress_vet 1261 1583 +5613 2025-10-28 20:03:56.801528+00 2025-10-28 20:03:56.801536+00 f t Confirmado 1260 \N +5614 2025-10-28 20:03:56.771614+00 2025-10-28 20:03:56.771624+00 f t payed 1260 1583 +5615 2025-10-28 20:05:58.574175+00 2025-10-28 20:05:58.574184+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 09:00:00 1261 1583 +5616 2025-10-28 20:19:27.766294+00 2025-10-28 20:19:27.766307+00 f t pending 1262 \N +5617 2025-10-28 20:19:40.919042+00 2025-10-28 20:19:40.919052+00 f t in_progress_vet 1262 1583 +5618 2025-10-28 20:19:52.067901+00 2025-10-28 20:19:52.067909+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 11:00:00 1262 1583 +5619 2025-10-28 20:21:41.899571+00 2025-10-28 20:21:41.89958+00 f t pending 1263 \N +5620 2025-10-28 20:22:08.306922+00 2025-10-28 20:22:08.306932+00 f t in_progress_vet 1263 1208 +5621 2025-10-28 20:22:19.256182+00 2025-10-28 20:22:19.256191+00 f t coordinated Solicitud coordinada para 2025-11-08 a las 10:30:00 1263 1208 +5622 2025-10-28 20:22:33.356395+00 2025-10-28 20:22:33.356404+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1263 1208 +5623 2025-10-28 20:25:56.208043+00 2025-10-28 20:25:56.208055+00 f t Confirmado 1263 \N +5624 2025-10-28 20:25:56.176974+00 2025-10-28 20:25:56.176983+00 f t payed 1263 1208 +5625 2025-10-28 20:45:56.34415+00 2025-10-28 20:45:56.344161+00 f t pending 1264 \N +5626 2025-10-28 20:46:11.081177+00 2025-10-28 20:46:11.081186+00 f t in_progress_vet 1264 1583 +5627 2025-10-28 20:49:45.200262+00 2025-10-28 20:49:45.200274+00 f t vet_accepted 1264 \N +5628 2025-10-28 20:49:45.214625+00 2025-10-28 20:49:45.214639+00 f t in_progress_pay 1264 \N +5629 2025-10-28 20:50:00.039292+00 2025-10-28 20:50:00.039302+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 14:00:00 1262 1583 +5630 2025-10-28 20:50:03.189365+00 2025-10-28 20:50:03.18938+00 f t vet_asked Veterinario asignado: di Risio Daniela 1262 1583 +5631 2025-10-28 20:50:03.696161+00 2025-10-28 20:50:03.696177+00 f t vet_accepted 1262 1583 +5632 2025-10-28 20:50:03.74999+00 2025-10-28 20:50:03.750005+00 f t in_progress_pay 1262 1583 +5633 2025-10-28 20:50:15.63743+00 2025-10-28 20:50:15.637437+00 f t Confirmado 1262 \N +5634 2025-10-28 20:50:15.607718+00 2025-10-28 20:50:15.607731+00 f t payed 1262 1583 +5635 2025-10-28 20:50:55.417741+00 2025-10-28 20:50:55.417751+00 f t vet_accepted 1264 \N +5636 2025-10-28 20:50:55.430291+00 2025-10-28 20:50:55.430302+00 f t in_progress_pay 1264 \N +5637 2025-10-28 20:55:58.602956+00 2025-10-28 20:55:58.602967+00 f t pending 1265 \N +5638 2025-10-28 20:56:09.030187+00 2025-10-28 20:56:09.030199+00 f t in_progress_vet 1265 1583 +5639 2025-10-28 20:56:13.243667+00 2025-10-28 20:56:13.243675+00 f t coordinated Solicitud coordinada para 2025-10-28 a las 19:30:00 1265 1583 +5640 2025-10-28 20:56:19.146488+00 2025-10-28 20:56:19.146499+00 f t vet_asked Veterinario asignado: Palummo Mariana 1265 1583 +5641 2025-10-28 20:56:19.7753+00 2025-10-28 20:56:19.775309+00 f t vet_accepted 1265 1583 +5642 2025-10-28 20:56:19.787383+00 2025-10-28 20:56:19.787396+00 f t in_progress_pay 1265 1583 +5643 2025-10-28 20:56:40.045347+00 2025-10-28 20:56:40.04536+00 f t Confirmado 1265 \N +5644 2025-10-28 20:56:40.004355+00 2025-10-28 20:56:40.004365+00 f t payed 1265 1583 +5645 2025-10-28 20:58:38.271081+00 2025-10-28 20:58:38.271091+00 f t pending 1266 \N +5646 2025-10-28 20:59:14.272136+00 2025-10-28 20:59:14.272145+00 f t in_progress_vet 1266 1583 +5647 2025-10-28 20:59:19.86232+00 2025-10-28 20:59:19.862331+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 16:00:00 1266 1583 +5648 2025-10-28 20:59:25.738276+00 2025-10-28 20:59:25.738285+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1266 1583 +5649 2025-10-28 20:59:26.956855+00 2025-10-28 20:59:26.956865+00 f t vet_accepted 1266 1583 +5650 2025-10-28 20:59:26.968898+00 2025-10-28 20:59:26.968908+00 f t in_progress_pay 1266 1583 +5651 2025-10-28 21:03:14.957821+00 2025-10-28 21:03:14.95783+00 f t pending 1267 \N +5652 2025-10-28 21:03:37.347233+00 2025-10-28 21:03:37.347243+00 f t in_progress_vet 1267 1583 +5653 2025-10-28 21:03:48.357574+00 2025-10-28 21:03:48.357582+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 12:00:00 1267 1583 +5654 2025-10-28 21:11:09.37722+00 2025-10-28 21:11:09.377229+00 f t Confirmado 1264 \N +5655 2025-10-28 21:11:09.349522+00 2025-10-28 21:11:09.349531+00 f t payed 1264 1583 +5656 2025-10-28 21:12:28.735332+00 2025-10-28 21:12:28.735341+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 1261 1583 +5657 2025-10-28 21:12:29.538425+00 2025-10-28 21:12:29.538435+00 f t vet_accepted 1261 1583 +5658 2025-10-28 21:12:29.550367+00 2025-10-28 21:12:29.55038+00 f t in_progress_pay 1261 1583 +5659 2025-10-28 21:42:40.813728+00 2025-10-28 21:42:40.81374+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1267 1583 +5660 2025-10-28 21:42:41.633868+00 2025-10-28 21:42:41.633878+00 f t vet_accepted 1267 1583 +5661 2025-10-28 21:42:41.643956+00 2025-10-28 21:42:41.643965+00 f t in_progress_pay 1267 1583 +5662 2025-10-28 21:44:42.702933+00 2025-10-28 21:44:42.702944+00 f t vet_accepted 1212 \N +5663 2025-10-28 21:44:42.713967+00 2025-10-28 21:44:42.713977+00 f t in_progress_pay 1212 \N +5664 2025-10-28 21:49:02.02812+00 2025-10-28 21:49:02.028136+00 f t Confirmado 1267 \N +5665 2025-10-28 21:49:01.970909+00 2025-10-28 21:49:01.970924+00 f t payed 1267 1583 +5666 2025-10-28 21:56:32.739751+00 2025-10-28 21:56:32.739759+00 f t pending 1268 \N +5667 2025-10-28 21:56:35.684316+00 2025-10-28 21:56:35.684329+00 f t pending 1269 \N +5668 2025-10-28 21:57:05.698157+00 2025-10-28 21:57:05.698167+00 f t in_progress_vet 1269 1583 +5669 2025-10-28 21:57:20.315153+00 2025-10-28 21:57:20.315163+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 09:00:00 1269 1583 +5670 2025-10-28 23:33:21.239894+00 2025-10-28 23:33:21.239902+00 f t pending 1270 \N +5671 2025-10-28 23:34:08.530614+00 2025-10-28 23:34:08.530623+00 f t in_progress_vet 1270 113 +5672 2025-10-28 23:34:26.319804+00 2025-10-28 23:34:26.319814+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 10:00:00 1270 113 +5673 2025-10-28 23:44:14.65531+00 2025-10-28 23:44:14.655323+00 f t vet_accepted 1270 \N +5674 2025-10-28 23:44:14.66962+00 2025-10-28 23:44:14.669639+00 f t in_progress_pay 1270 \N +5675 2025-10-28 23:44:15.733111+00 2025-10-28 23:44:15.733121+00 f t rejected Solicitud rechazada por Usuario no especificado 1270 \N +5676 2025-10-28 23:44:15.741053+00 2025-10-28 23:44:15.741062+00 f t in_progress_vet 1270 \N +5677 2025-10-28 23:44:18.786246+00 2025-10-28 23:44:18.786256+00 f t vet_accepted 1270 \N +5678 2025-10-28 23:44:18.796933+00 2025-10-28 23:44:18.796942+00 f t in_progress_pay 1270 \N +5679 2025-10-28 23:44:20.04863+00 2025-10-28 23:44:20.048639+00 f t rejected Solicitud rechazada por Usuario no especificado 1270 \N +5680 2025-10-28 23:44:20.056433+00 2025-10-28 23:44:20.056444+00 f t in_progress_vet 1270 \N +5681 2025-10-29 01:49:44.640981+00 2025-10-29 01:49:44.640991+00 f t pending 1271 \N +5682 2025-10-29 01:51:36.143866+00 2025-10-29 01:51:36.143877+00 f t vet_accepted 1270 \N +5683 2025-10-29 01:51:36.15732+00 2025-10-29 01:51:36.157333+00 f t in_progress_pay 1270 \N +5684 2025-10-29 01:52:17.658034+00 2025-10-29 01:52:17.658046+00 f t rejected Solicitud rechazada por Usuario no especificado 1270 \N +5685 2025-10-29 01:52:17.66678+00 2025-10-29 01:52:17.666788+00 f t in_progress_vet 1270 \N +5686 2025-10-29 12:13:23.387451+00 2025-10-29 12:13:23.387463+00 f t in_progress_vet 1271 1208 +5687 2025-10-29 12:22:09.667599+00 2025-10-29 12:22:09.667609+00 f t pending 1272 \N +5688 2025-10-29 12:22:58.673494+00 2025-10-29 12:22:58.673504+00 f t in_progress_vet 1272 1208 +5689 2025-10-29 12:29:43.858802+00 2025-10-29 12:29:43.858811+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 10:30:00 1272 1208 +5690 2025-10-29 12:31:05.244026+00 2025-10-29 12:31:05.244037+00 f t vet_accepted 1272 \N +5691 2025-10-29 12:31:05.255619+00 2025-10-29 12:31:05.255629+00 f t in_progress_pay 1272 \N +5692 2025-10-29 12:31:05.544661+00 2025-10-29 12:31:05.54467+00 f t vet_accepted 1264 \N +5693 2025-10-29 12:47:45.955227+00 2025-10-29 12:47:45.955237+00 f t rejected Solicitud rechazada por Usuario no especificado 1272 \N +5694 2025-10-29 12:47:45.963854+00 2025-10-29 12:47:45.963862+00 f t in_progress_vet 1272 \N +5695 2025-10-29 12:59:38.752119+00 2025-10-29 12:59:38.752129+00 f t pending 1273 \N +5696 2025-10-29 12:59:51.236608+00 2025-10-29 12:59:51.236622+00 f t in_progress_vet 1273 1208 +5697 2025-10-29 13:00:01.996202+00 2025-10-29 13:00:01.996217+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 10:30:00 1273 1208 +5698 2025-10-29 13:02:20.237415+00 2025-10-29 13:02:20.237425+00 f t vet_asked Veterinario asignado: Inseparables Crematorio 1273 1208 +5699 2025-10-29 13:02:34.107993+00 2025-10-29 13:02:34.108005+00 f t payed 1273 1208 +5700 2025-10-29 13:05:27.238823+00 2025-10-29 13:05:27.238834+00 f t pending 1274 \N +5701 2025-10-29 13:06:09.577269+00 2025-10-29 13:06:09.577279+00 f t in_progress_vet 1274 1208 +5702 2025-10-29 13:06:16.513794+00 2025-10-29 13:06:16.513805+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 10:30:00 1274 1208 +5703 2025-10-29 13:06:34.542345+00 2025-10-29 13:06:34.542354+00 f t vet_asked Veterinario asignado: Inseparables Crematorio 1274 1208 +5704 2025-10-29 13:06:52.8791+00 2025-10-29 13:06:52.87911+00 f t Confirmado 1274 \N +5705 2025-10-29 13:06:52.843353+00 2025-10-29 13:06:52.843366+00 f t payed 1274 1208 +5706 2025-10-29 13:09:22.492226+00 2025-10-29 13:09:22.492239+00 f t pending 1275 \N +5707 2025-10-29 13:09:58.14807+00 2025-10-29 13:09:58.148078+00 f t in_progress_vet 1275 1208 +5708 2025-10-29 13:10:46.827203+00 2025-10-29 13:10:46.827211+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 13:00:00 1275 1208 +5709 2025-10-29 13:12:07.414577+00 2025-10-29 13:12:07.414587+00 f t vet_asked Veterinario asignado: Fernandez Gaston 1275 1208 +5710 2025-10-29 13:29:42.231582+00 2025-10-29 13:29:42.231592+00 f t pending 1276 \N +5711 2025-10-29 13:30:29.188697+00 2025-10-29 13:30:29.188706+00 f t in_progress_vet 1276 1208 +5712 2025-10-29 13:33:45.43495+00 2025-10-29 13:33:45.434958+00 f t pending 1277 \N +5713 2025-10-29 13:33:58.624531+00 2025-10-29 13:33:58.624541+00 f t in_progress_vet 1277 1208 +5714 2025-10-29 13:48:12.32291+00 2025-10-29 13:48:12.322919+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 12:00:00 1272 1208 +5715 2025-10-29 13:48:24.407724+00 2025-10-29 13:48:24.407733+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1272 1208 +5716 2025-10-29 13:48:29.676277+00 2025-10-29 13:48:29.676285+00 f t Confirmado 1272 \N +5717 2025-10-29 13:48:29.642187+00 2025-10-29 13:48:29.642197+00 f t payed 1272 1208 +5718 2025-10-29 14:02:14.533277+00 2025-10-29 14:02:14.533285+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 16:00:00 1275 1208 +5719 2025-10-29 14:02:23.826955+00 2025-10-29 14:02:23.826964+00 f t vet_asked Veterinario asignado: Fernandez Gaston 1275 1208 +5720 2025-10-29 14:06:13.144239+00 2025-10-29 14:06:13.144248+00 f t Confirmado 1275 \N +5721 2025-10-29 14:06:13.115441+00 2025-10-29 14:06:13.11545+00 f t payed 1275 1208 +5722 2025-10-29 14:07:28.638076+00 2025-10-29 14:07:28.638086+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 19:00:00 1276 1208 +5723 2025-10-29 14:17:53.846762+00 2025-10-29 14:17:53.846771+00 f t pending 1278 \N +5724 2025-10-29 14:18:11.504326+00 2025-10-29 14:18:11.504339+00 f t in_progress_vet 1278 1583 +5725 2025-10-29 14:18:18.197178+00 2025-10-29 14:18:18.197187+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 10:00:00 1278 1583 +5726 2025-10-29 14:21:38.188211+00 2025-10-29 14:21:38.18822+00 f t rejected D-Tiempo de respuestas 1269 1583 +5727 2025-10-29 14:21:48.878078+00 2025-10-29 14:21:48.878091+00 f t rejected D-Tiempo de respuestas 1268 1583 +5728 2025-10-29 14:22:25.249382+00 2025-10-29 14:22:25.249393+00 f t vet_accepted 1278 128 +5729 2025-10-29 14:22:25.263633+00 2025-10-29 14:22:25.263643+00 f t in_progress_pay 1278 128 +5730 2025-10-29 14:25:46.258532+00 2025-10-29 14:25:46.258541+00 f t Confirmado 1266 \N +5731 2025-10-29 14:25:46.221504+00 2025-10-29 14:25:46.221516+00 f t payed 1266 1583 +5732 2025-10-29 14:45:54.054975+00 2025-10-29 14:45:54.054985+00 f t pending 1279 \N +5733 2025-10-29 14:46:09.801831+00 2025-10-29 14:46:09.801841+00 f t in_progress_vet 1279 1583 +5734 2025-10-29 14:51:21.173773+00 2025-10-29 14:51:21.173786+00 f t Confirmado 1278 \N +5735 2025-10-29 14:51:21.134886+00 2025-10-29 14:51:21.134898+00 f t payed 1278 1583 +5736 2025-10-29 15:12:44.016645+00 2025-10-29 15:12:44.016656+00 f t pending 1280 \N +5737 2025-10-29 15:13:05.438293+00 2025-10-29 15:13:05.438306+00 f t in_progress_vet 1280 1208 +5738 2025-10-29 15:14:41.45438+00 2025-10-29 15:14:41.454393+00 f t pending 1281 \N +5739 2025-10-29 15:15:04.906389+00 2025-10-29 15:15:04.906401+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 09:30:00 1277 1208 +5740 2025-10-29 15:15:40.105204+00 2025-10-29 15:15:40.105213+00 f t in_progress_vet 1281 1583 +5741 2025-10-29 15:20:51.439187+00 2025-10-29 15:20:51.439196+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 1277 1208 +5742 2025-10-29 15:22:17.912306+00 2025-10-29 15:22:17.912315+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 16:00:00 1280 1208 +5743 2025-10-29 15:31:51.419541+00 2025-10-29 15:31:51.419552+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 08:00:00 1281 1583 +5744 2025-10-29 15:32:13.544775+00 2025-10-29 15:32:13.544783+00 f t vet_asked Veterinario asignado: Osso Virginia 1281 1583 +5745 2025-10-29 15:32:14.203246+00 2025-10-29 15:32:14.203256+00 f t vet_accepted 1281 1583 +5746 2025-10-29 15:32:14.217814+00 2025-10-29 15:32:14.217824+00 f t in_progress_pay 1281 1583 +5747 2025-10-29 15:32:26.72657+00 2025-10-29 15:32:26.726579+00 f t Confirmado 1281 \N +5748 2025-10-29 15:32:26.697369+00 2025-10-29 15:32:26.697378+00 f t payed 1281 1583 +5749 2025-10-29 15:41:38.748381+00 2025-10-29 15:41:38.74839+00 f t rejected Solicitud rechazada por Usuario no especificado 1213 \N +5750 2025-10-29 15:41:38.757423+00 2025-10-29 15:41:38.757432+00 f t in_progress_vet 1213 \N +5751 2025-10-29 15:44:52.122163+00 2025-10-29 15:44:52.122175+00 f t vet_accepted 1276 \N +5752 2025-10-29 15:44:52.136088+00 2025-10-29 15:44:52.136101+00 f t in_progress_pay 1276 \N +5753 2025-10-29 16:05:29.114566+00 2025-10-29 16:05:29.114579+00 f t pending 1282 \N +5754 2025-10-29 16:06:13.118493+00 2025-10-29 16:06:13.118505+00 f t in_progress_vet 1282 1208 +5755 2025-10-29 16:06:21.851024+00 2025-10-29 16:06:21.851032+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 14:00:00 1282 1208 +5756 2025-10-29 16:06:34.53866+00 2025-10-29 16:06:34.538672+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1282 1208 +5757 2025-10-29 16:07:56.137984+00 2025-10-29 16:07:56.137998+00 f t Confirmado 1282 \N +5758 2025-10-29 16:07:56.098164+00 2025-10-29 16:07:56.098176+00 f t payed 1282 1208 +5759 2025-10-29 16:16:51.482662+00 2025-10-29 16:16:51.482673+00 f t pending 1283 \N +5760 2025-10-29 16:16:57.948475+00 2025-10-29 16:16:57.948487+00 f t in_progress_vet 1283 1208 +5761 2025-10-29 16:17:44.9294+00 2025-10-29 16:17:44.929408+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 19:30:00 1283 1208 +5762 2025-10-29 16:23:30.150349+00 2025-10-29 16:23:30.150359+00 f t vet_accepted 1276 \N +5763 2025-10-29 16:23:30.165918+00 2025-10-29 16:23:30.165929+00 f t in_progress_pay 1276 \N +5764 2025-10-29 16:42:18.793013+00 2025-10-29 16:42:18.793022+00 f t rejected D-Averiguando / Desconocido 1277 1208 +5765 2025-10-29 16:59:55.134317+00 2025-10-29 16:59:55.134327+00 f t rejected D-Abandono Bot 1279 1583 +5766 2025-10-29 17:06:59.869423+00 2025-10-29 17:06:59.869433+00 f t vet_accepted 1280 124 +5767 2025-10-29 17:06:59.882976+00 2025-10-29 17:06:59.882988+00 f t in_progress_pay 1280 124 +5768 2025-10-29 17:13:47.719408+00 2025-10-29 17:13:47.719416+00 f t pending 1284 \N +5769 2025-10-29 17:14:27.981695+00 2025-10-29 17:14:27.981705+00 f t in_progress_vet 1284 1583 +5770 2025-10-29 17:14:48.229448+00 2025-10-29 17:14:48.229457+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 18:00:00 1284 1583 +5771 2025-10-29 17:28:11.651223+00 2025-10-29 17:28:11.651233+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1284 1583 +5772 2025-10-29 17:28:12.272497+00 2025-10-29 17:28:12.272507+00 f t vet_accepted 1284 1583 +5773 2025-10-29 17:28:12.290238+00 2025-10-29 17:28:12.290252+00 f t in_progress_pay 1284 1583 +5774 2025-10-29 17:29:33.988986+00 2025-10-29 17:29:33.988997+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 15:30:00 1280 1208 +5775 2025-10-29 17:29:47.563064+00 2025-10-29 17:29:47.563072+00 f t Confirmado 1280 \N +5776 2025-10-29 17:29:47.530683+00 2025-10-29 17:29:47.53069+00 f t payed 1280 1208 +5777 2025-10-29 17:30:10.465816+00 2025-10-29 17:30:10.465826+00 f t Confirmado 1284 \N +5778 2025-10-29 17:30:10.430649+00 2025-10-29 17:30:10.430659+00 f t payed 1284 1583 +5779 2025-10-29 17:55:04.571386+00 2025-10-29 17:55:04.571403+00 f t pending 1285 \N +5780 2025-10-29 17:55:21.663475+00 2025-10-29 17:55:21.663485+00 f t in_progress_vet 1285 1208 +5781 2025-10-29 17:55:30.061764+00 2025-10-29 17:55:30.061773+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 17:00:00 1285 1208 +5782 2025-10-29 17:58:11.809747+00 2025-10-29 17:58:11.809756+00 f t rejected D-Abandono Bot 1285 1208 +5783 2025-10-29 18:05:44.155418+00 2025-10-29 18:05:44.15543+00 f t vet_accepted 1283 126 +5784 2025-10-29 18:05:44.17379+00 2025-10-29 18:05:44.173804+00 f t in_progress_pay 1283 126 +5785 2025-10-29 18:05:48.146132+00 2025-10-29 18:05:48.146159+00 f t pending 1286 \N +5786 2025-10-29 18:07:40.30965+00 2025-10-29 18:07:40.309658+00 f t in_progress_vet 1286 1208 +5787 2025-10-29 18:07:51.942876+00 2025-10-29 18:07:51.942884+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 17:00:00 1286 1208 +5788 2025-10-29 18:30:30.093014+00 2025-10-29 18:30:30.093028+00 f t pending 1287 \N +5789 2025-10-29 18:32:36.450826+00 2025-10-29 18:32:36.450838+00 f t vet_accepted 1286 \N +5790 2025-10-29 18:32:36.466741+00 2025-10-29 18:32:36.46675+00 f t in_progress_pay 1286 \N +5791 2025-10-29 18:36:04.471974+00 2025-10-29 18:36:04.471987+00 f t in_progress_vet 1287 1208 +5792 2025-10-29 18:36:11.982837+00 2025-10-29 18:36:11.982848+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 16:30:00 1287 1208 +5793 2025-10-29 18:37:05.981077+00 2025-10-29 18:37:05.981089+00 f t vet_asked Veterinario asignado: Dubowik Katerina 1287 1208 +5794 2025-10-29 18:49:15.849364+00 2025-10-29 18:49:15.849374+00 f t rejected D-Abandono Bot 1287 1208 +5795 2025-10-29 18:49:28.284794+00 2025-10-29 18:49:28.284803+00 f t coordinated Solicitud coordinada para 2025-10-29 a las 17:30:00 1286 1208 +5796 2025-10-29 18:50:46.256963+00 2025-10-29 18:50:46.256972+00 f t Confirmado 1286 \N +5797 2025-10-29 18:50:46.223644+00 2025-10-29 18:50:46.223654+00 f t payed 1286 1208 +5798 2025-10-29 18:52:17.056937+00 2025-10-29 18:52:17.056949+00 f t vet_accepted 1284 \N +5799 2025-10-29 18:52:33.131211+00 2025-10-29 18:52:33.131223+00 f t vet_accepted 1284 \N +5800 2025-10-29 19:35:48.347685+00 2025-10-29 19:35:48.347693+00 f t rejected D-Emergencia 1224 1583 +5801 2025-10-29 19:36:39.805921+00 2025-10-29 19:36:39.805934+00 f t rejected D-Abandono Bot 1271 1583 +5802 2025-10-29 19:45:59.26345+00 2025-10-29 19:45:59.263461+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 17:00:00 1276 1583 +5803 2025-10-29 20:03:11.594096+00 2025-10-29 20:03:11.594105+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1276 1583 +5804 2025-10-29 20:03:12.196377+00 2025-10-29 20:03:12.196386+00 f t vet_accepted 1276 1583 +5805 2025-10-29 20:03:12.209209+00 2025-10-29 20:03:12.209218+00 f t in_progress_pay 1276 1583 +5806 2025-10-29 20:26:33.477835+00 2025-10-29 20:26:33.477843+00 f t Confirmado 1276 \N +5807 2025-10-29 20:26:33.444831+00 2025-10-29 20:26:33.444839+00 f t payed 1276 1583 +5808 2025-10-29 20:27:09.673002+00 2025-10-29 20:27:09.673011+00 f t pending 1288 \N +5809 2025-10-29 20:27:09.885427+00 2025-10-29 20:27:09.885436+00 f t pending 1289 \N +5810 2025-10-29 20:27:24.238947+00 2025-10-29 20:27:24.238957+00 f t in_progress_vet 1289 1583 +5811 2025-10-29 20:27:31.419459+00 2025-10-29 20:27:31.419467+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 10:00:00 1289 1583 +5812 2025-10-29 20:27:38.616109+00 2025-10-29 20:27:38.616118+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1289 1583 +5813 2025-10-29 20:27:39.236839+00 2025-10-29 20:27:39.236852+00 f t vet_accepted 1289 1583 +5814 2025-10-29 20:27:39.248639+00 2025-10-29 20:27:39.248647+00 f t in_progress_pay 1289 1583 +5815 2025-10-29 20:27:41.419677+00 2025-10-29 20:27:41.419687+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1289 1583 +5816 2025-10-29 20:27:50.896727+00 2025-10-29 20:27:50.896734+00 f t Confirmado 1289 \N +5817 2025-10-29 20:27:50.870723+00 2025-10-29 20:27:50.870731+00 f t payed 1289 1583 +5818 2025-10-29 20:46:35.666056+00 2025-10-29 20:46:35.666065+00 f t rejected D-Sin seguimiento 1288 1583 +5819 2025-10-29 21:38:31.195245+00 2025-10-29 21:38:31.195258+00 f t pending 1290 \N +5820 2025-10-29 21:39:05.815285+00 2025-10-29 21:39:05.815295+00 f t in_progress_vet 1290 1583 +5821 2025-10-29 21:39:31.286264+00 2025-10-29 21:39:31.286272+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 11:00:00 1290 1583 +5822 2025-10-29 21:45:25.204801+00 2025-10-29 21:45:25.204811+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1290 1583 +5823 2025-10-29 21:45:25.962153+00 2025-10-29 21:45:25.962162+00 f t vet_accepted 1290 1583 +5824 2025-10-29 21:45:25.975059+00 2025-10-29 21:45:25.975073+00 f t in_progress_pay 1290 1583 +5825 2025-10-29 21:45:34.802839+00 2025-10-29 21:45:34.802848+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 14:30:00 1290 1583 +5826 2025-10-29 22:31:23.834249+00 2025-10-29 22:31:23.834258+00 f t vet_accepted 1284 \N +5827 2025-10-29 22:50:52.761111+00 2025-10-29 22:50:52.76112+00 f t rejected D-Abandono Bot 1290 1583 +5828 2025-10-29 23:03:41.214725+00 2025-10-29 23:03:41.214733+00 f t pending 1291 \N +5829 2025-10-29 23:04:50.045404+00 2025-10-29 23:04:50.045413+00 f t in_progress_vet 1291 1583 +5830 2025-10-29 23:08:00.256249+00 2025-10-29 23:08:00.256257+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 10:00:00 1291 1583 +5831 2025-10-29 23:14:44.040823+00 2025-10-29 23:14:44.040833+00 f t vet_accepted 1291 \N +5832 2025-10-29 23:14:44.055629+00 2025-10-29 23:14:44.055639+00 f t in_progress_pay 1291 \N +5833 2025-10-29 23:25:07.702438+00 2025-10-29 23:25:07.702449+00 f t vet_accepted 1291 \N +5834 2025-10-29 23:25:07.717563+00 2025-10-29 23:25:07.717575+00 f t in_progress_pay 1291 \N +5835 2025-10-29 23:47:40.52965+00 2025-10-29 23:47:40.529659+00 f t pending 1292 \N +5836 2025-10-29 23:48:17.404105+00 2025-10-29 23:48:17.404113+00 f t in_progress_vet 1292 1208 +5837 2025-10-29 23:48:25.02583+00 2025-10-29 23:48:25.025839+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 09:00:00 1292 1208 +5838 2025-10-29 23:48:37.333298+00 2025-10-29 23:48:37.333308+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1292 1208 +5839 2025-10-29 23:52:23.59274+00 2025-10-29 23:52:23.592751+00 f t Confirmado 1292 \N +5840 2025-10-29 23:52:23.56536+00 2025-10-29 23:52:23.565372+00 f t payed 1292 1208 +5841 2025-10-29 23:52:36.622448+00 2025-10-29 23:52:36.622457+00 f t Confirmado 1283 \N +5842 2025-10-29 23:52:36.597584+00 2025-10-29 23:52:36.597593+00 f t payed 1283 1208 +5843 2025-10-30 01:01:24.560288+00 2025-10-30 01:01:24.560299+00 f t pending 1293 \N +5844 2025-10-30 01:30:08.453268+00 2025-10-30 01:30:08.453277+00 f t vet_accepted 1284 \N +5845 2025-10-30 08:33:01.365025+00 2025-10-30 08:33:01.365035+00 f t pending 1294 \N +5846 2025-10-30 10:59:40.480272+00 2025-10-30 10:59:40.480281+00 f t pending 1295 \N +5847 2025-10-30 11:13:00.15563+00 2025-10-30 11:13:00.15564+00 f t vet_accepted 1257 139 +5848 2025-10-30 12:07:17.985471+00 2025-10-30 12:07:17.985479+00 f t pending 1296 \N +5849 2025-10-30 12:09:06.335653+00 2025-10-30 12:09:06.335662+00 f t vet_accepted 1230 \N +5850 2025-10-30 12:09:56.353837+00 2025-10-30 12:09:56.353845+00 f t in_progress_vet 1293 1208 +5851 2025-10-30 12:10:15.724457+00 2025-10-30 12:10:15.724468+00 f t in_progress_vet 1294 1208 +5852 2025-10-30 12:12:20.34368+00 2025-10-30 12:12:20.343693+00 f t in_progress_vet 1295 1208 +5853 2025-10-30 12:12:36.982514+00 2025-10-30 12:12:36.982527+00 f t in_progress_vet 1296 1208 +5854 2025-10-30 12:35:17.421332+00 2025-10-30 12:35:17.421341+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 17:00:00 1293 1208 +5855 2025-10-30 12:39:23.787262+00 2025-10-30 12:39:23.787269+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 11:00:00 1294 1208 +5856 2025-10-30 12:39:28.715326+00 2025-10-30 12:39:28.715333+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 11:30:00 1294 1208 +5857 2025-10-30 12:40:49.888178+00 2025-10-30 12:40:49.888189+00 f t vet_accepted 1294 \N +5858 2025-10-30 12:40:49.902647+00 2025-10-30 12:40:49.902657+00 f t in_progress_pay 1294 \N +5859 2025-10-30 12:51:33.951734+00 2025-10-30 12:51:33.951741+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 17:00:00 1295 1208 +5860 2025-10-30 12:52:34.266167+00 2025-10-30 12:52:34.266176+00 f t vet_accepted 1295 \N +5861 2025-10-30 12:52:34.277863+00 2025-10-30 12:52:34.277877+00 f t in_progress_pay 1295 \N +5862 2025-10-30 12:57:14.481873+00 2025-10-30 12:57:14.481882+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 18:00:00 1296 1208 +5863 2025-10-30 12:59:31.329527+00 2025-10-30 12:59:31.329536+00 f t vet_accepted 1296 \N +5864 2025-10-30 12:59:31.34113+00 2025-10-30 12:59:31.341139+00 f t in_progress_pay 1296 \N +5865 2025-10-30 13:06:35.736362+00 2025-10-30 13:06:35.736371+00 f t pending 1297 \N +5866 2025-10-30 13:07:18.783337+00 2025-10-30 13:07:18.783347+00 f t in_progress_vet 1297 1208 +5867 2025-10-30 13:11:16.611636+00 2025-10-30 13:11:16.611644+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 19:00:00 1297 1208 +5868 2025-10-30 13:14:26.98528+00 2025-10-30 13:14:26.985288+00 f t rejected D-Averiguando / Desconocido 1294 1208 +5869 2025-10-30 13:15:03.878047+00 2025-10-30 13:15:03.878062+00 f t vet_accepted 1297 128 +5870 2025-10-30 13:15:03.91518+00 2025-10-30 13:15:03.915197+00 f t in_progress_pay 1297 128 +5871 2025-10-30 13:32:47.640188+00 2025-10-30 13:32:47.640199+00 f t pending 1298 \N +5872 2025-10-30 13:34:22.631223+00 2025-10-30 13:34:22.631232+00 f t pending 1299 \N +5873 2025-10-30 13:36:21.05166+00 2025-10-30 13:36:21.05167+00 f t in_progress_vet 1298 1208 +5874 2025-10-30 13:36:29.076506+00 2025-10-30 13:36:29.076513+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 09:00:00 1298 1208 +5875 2025-10-30 13:37:05.327694+00 2025-10-30 13:37:05.327703+00 f t in_progress_vet 1299 1208 +5876 2025-10-30 14:02:08.542849+00 2025-10-30 14:02:08.542859+00 f t vet_accepted 1291 \N +5877 2025-10-30 14:02:08.555796+00 2025-10-30 14:02:08.555805+00 f t in_progress_pay 1291 \N +5878 2025-10-30 14:02:18.197716+00 2025-10-30 14:02:18.197727+00 f t vet_accepted 1291 \N +5879 2025-10-30 14:02:18.208678+00 2025-10-30 14:02:18.208687+00 f t in_progress_pay 1291 \N +5880 2025-10-30 14:16:08.459104+00 2025-10-30 14:16:08.459114+00 f t rejected D-Tiempo de respuestas 1293 1208 +5881 2025-10-30 14:16:27.420044+00 2025-10-30 14:16:27.420053+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1298 1208 +5882 2025-10-30 14:25:28.842479+00 2025-10-30 14:25:28.842489+00 f t pending 1300 \N +5883 2025-10-30 14:25:48.507952+00 2025-10-30 14:25:48.507964+00 f t in_progress_vet 1300 1208 +5884 2025-10-30 14:27:39.160612+00 2025-10-30 14:27:39.160624+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 17:00:00 1300 1208 +5885 2025-10-30 14:38:39.076856+00 2025-10-30 14:38:39.076872+00 f t pending 1301 \N +5886 2025-10-30 14:39:30.260975+00 2025-10-30 14:39:30.260983+00 f t in_progress_vet 1301 1583 +5887 2025-10-30 14:39:30.269275+00 2025-10-30 14:39:30.269284+00 f t in_progress_vet 1301 1583 +5888 2025-10-30 14:39:44.504302+00 2025-10-30 14:39:44.504311+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 14:00:00 1301 1583 +5889 2025-10-30 14:39:51.890748+00 2025-10-30 14:39:51.89076+00 f t vet_asked Veterinario asignado: Robatto Javier 1301 1583 +5890 2025-10-30 14:39:52.774886+00 2025-10-30 14:39:52.774895+00 f t vet_accepted 1301 1583 +5891 2025-10-30 14:39:52.786147+00 2025-10-30 14:39:52.786156+00 f t in_progress_pay 1301 1583 +5892 2025-10-30 14:42:59.539212+00 2025-10-30 14:42:59.539226+00 f t rejected D-Provincia 1299 1208 +5893 2025-10-30 14:57:58.288064+00 2025-10-30 14:57:58.288074+00 f t Confirmado 1296 \N +5894 2025-10-30 14:57:58.261347+00 2025-10-30 14:57:58.261357+00 f t payed 1296 1208 +5895 2025-10-30 15:06:26.566827+00 2025-10-30 15:06:26.566835+00 f t Confirmado 1301 \N +5896 2025-10-30 15:06:26.539262+00 2025-10-30 15:06:26.53927+00 f t payed 1301 1583 +5897 2025-10-30 15:11:12.573428+00 2025-10-30 15:11:12.573436+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 20:00:00 1297 1208 +5898 2025-10-30 15:11:33.027572+00 2025-10-30 15:11:33.027585+00 f t Confirmado 1297 \N +5899 2025-10-30 15:11:32.988378+00 2025-10-30 15:11:32.98839+00 f t payed 1297 1208 +5900 2025-10-30 16:12:13.793611+00 2025-10-30 16:12:13.793622+00 f t Confirmado 1298 \N +5901 2025-10-30 16:12:13.760384+00 2025-10-30 16:12:13.760396+00 f t payed 1298 1208 +5902 2025-10-30 16:12:27.073055+00 2025-10-30 16:12:27.073067+00 f t pending 1302 \N +5903 2025-10-30 16:13:05.682132+00 2025-10-30 16:13:05.682141+00 f t pending 1303 \N +5904 2025-10-30 16:13:41.692668+00 2025-10-30 16:13:41.692676+00 f t in_progress_vet 1303 1208 +5905 2025-10-30 16:14:21.567311+00 2025-10-30 16:14:21.567319+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 10:30:00 1303 1208 +5906 2025-10-30 16:14:45.144858+00 2025-10-30 16:14:45.144867+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1303 1208 +5907 2025-10-30 16:16:45.368151+00 2025-10-30 16:16:45.368162+00 f t Confirmado 1303 \N +5908 2025-10-30 16:16:45.339802+00 2025-10-30 16:16:45.33981+00 f t payed 1303 1208 +5909 2025-10-30 16:17:11.993871+00 2025-10-30 16:17:11.99388+00 f t in_progress_vet 1302 1208 +5910 2025-10-30 16:29:30.676303+00 2025-10-30 16:29:30.67631+00 f t Confirmado 1295 \N +5911 2025-10-30 16:29:30.646946+00 2025-10-30 16:29:30.646956+00 f t payed 1295 1208 +5912 2025-10-30 16:36:10.536908+00 2025-10-30 16:36:10.536917+00 f t pending 1304 \N +5913 2025-10-30 16:36:22.505348+00 2025-10-30 16:36:22.505357+00 f t in_progress_vet 1304 1583 +5914 2025-10-30 16:36:31.175527+00 2025-10-30 16:36:31.175535+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 16:00:00 1304 1583 +5915 2025-10-30 16:41:10.346357+00 2025-10-30 16:41:10.346365+00 f t pending 1305 \N +5916 2025-10-30 16:43:29.184387+00 2025-10-30 16:43:29.184396+00 f t in_progress_vet 1305 1208 +5917 2025-10-30 16:43:43.361199+00 2025-10-30 16:43:43.361208+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 09:00:00 1305 1208 +5918 2025-10-30 17:02:02.624944+00 2025-10-30 17:02:02.624952+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 17:00:00 1302 1208 +5919 2025-10-30 17:10:34.145624+00 2025-10-30 17:10:34.145633+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 17:30:00 1304 1583 +5920 2025-10-30 17:10:39.940968+00 2025-10-30 17:10:39.940978+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1304 1583 +5921 2025-10-30 17:10:40.412732+00 2025-10-30 17:10:40.412741+00 f t vet_accepted 1304 1583 +5922 2025-10-30 17:10:40.424542+00 2025-10-30 17:10:40.424552+00 f t in_progress_pay 1304 1583 +5923 2025-10-30 17:42:19.866655+00 2025-10-30 17:42:19.866667+00 f t vet_accepted 1302 \N +5924 2025-10-30 17:42:19.881378+00 2025-10-30 17:42:19.881388+00 f t in_progress_pay 1302 \N +5925 2025-10-30 17:44:41.976032+00 2025-10-30 17:44:41.97604+00 f t pending 1306 \N +5926 2025-10-30 17:45:10.099859+00 2025-10-30 17:45:10.099867+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 15:00:00 1306 1583 +5927 2025-10-30 17:56:00.184204+00 2025-10-30 17:56:00.184216+00 f t vet_asked Veterinario asignado: Palummo Mariana 1306 1583 +5928 2025-10-30 17:56:00.830267+00 2025-10-30 17:56:00.830276+00 f t vet_accepted 1306 1583 +5929 2025-10-30 17:56:00.842886+00 2025-10-30 17:56:00.842896+00 f t in_progress_pay 1306 1583 +5930 2025-10-30 18:16:41.158564+00 2025-10-30 18:16:41.158574+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 1300 1208 +5931 2025-10-30 18:42:00.039766+00 2025-10-30 18:42:00.039777+00 f t Confirmado 1300 \N +5932 2025-10-30 18:42:00.007339+00 2025-10-30 18:42:00.007348+00 f t payed 1300 1208 +5933 2025-10-30 19:15:26.605127+00 2025-10-30 19:15:26.605136+00 f t rejected D-Abandono Bot 1306 1583 +5934 2025-10-30 19:16:13.085509+00 2025-10-30 19:16:13.085517+00 f t Confirmado 1291 \N +5935 2025-10-30 19:16:13.055841+00 2025-10-30 19:16:13.05585+00 f t payed 1291 1583 +5936 2025-10-30 19:42:32.968792+00 2025-10-30 19:42:32.968803+00 f t Confirmado 1304 \N +5937 2025-10-30 19:42:32.929531+00 2025-10-30 19:42:32.929539+00 f t payed 1304 1583 +5938 2025-10-30 21:18:02.719274+00 2025-10-30 21:18:02.719283+00 f t vet_accepted 1302 \N +5939 2025-10-30 21:18:02.734997+00 2025-10-30 21:18:02.735008+00 f t in_progress_pay 1302 \N +5940 2025-10-30 21:25:57.014883+00 2025-10-30 21:25:57.014892+00 f t pending 1307 \N +5941 2025-10-30 21:26:27.423996+00 2025-10-30 21:26:27.424004+00 f t in_progress_vet 1307 113 +5942 2025-10-30 21:26:38.424891+00 2025-10-30 21:26:38.424898+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 19:00:00 1307 113 +5943 2025-10-30 22:26:47.270394+00 2025-10-30 22:26:47.270402+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1307 113 +5944 2025-10-30 22:27:19.950334+00 2025-10-30 22:27:19.950341+00 f t coordinated Solicitud coordinada para 2025-10-30 a las 20:30:00 1307 113 +5945 2025-10-30 22:27:32.096178+00 2025-10-30 22:27:32.096188+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1307 113 +5946 2025-10-30 22:27:33.398426+00 2025-10-30 22:27:33.398435+00 f t vet_accepted 1307 113 +5947 2025-10-30 22:27:33.41003+00 2025-10-30 22:27:33.41004+00 f t in_progress_pay 1307 113 +5948 2025-10-30 22:28:05.102372+00 2025-10-30 22:28:05.102384+00 f t Confirmado 1307 \N +5949 2025-10-30 22:28:05.066793+00 2025-10-30 22:28:05.066806+00 f t payed 1307 113 +5950 2025-10-30 22:30:19.802009+00 2025-10-30 22:30:19.802021+00 f t pending 1308 \N +5951 2025-10-30 22:34:59.285964+00 2025-10-30 22:34:59.285973+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 10:30:00 1308 113 +5952 2025-10-30 22:35:18.114262+00 2025-10-30 22:35:18.11427+00 f t vet_accepted 1308 \N +5953 2025-10-30 22:35:18.144258+00 2025-10-30 22:35:18.144268+00 f t in_progress_pay 1308 \N +5954 2025-10-30 22:35:20.071878+00 2025-10-30 22:35:20.07189+00 f t rejected Solicitud rechazada por Usuario no especificado 1308 \N +5955 2025-10-30 22:35:20.081812+00 2025-10-30 22:35:20.081822+00 f t in_progress_vet 1308 \N +5956 2025-10-30 22:52:22.519585+00 2025-10-30 22:52:22.519595+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 08:00:00 1305 1208 +5957 2025-10-30 22:52:30.112934+00 2025-10-30 22:52:30.112982+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 1305 1208 +5958 2025-10-30 22:52:32.082418+00 2025-10-30 22:52:32.082427+00 f t vet_accepted 1305 1208 +5959 2025-10-30 22:52:32.095905+00 2025-10-30 22:52:32.095913+00 f t in_progress_pay 1305 1208 +5960 2025-10-30 22:52:36.964708+00 2025-10-30 22:52:36.964716+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1305 1208 +5961 2025-10-30 22:52:58.219203+00 2025-10-30 22:52:58.219212+00 f t Confirmado 1305 \N +5962 2025-10-30 22:52:58.192669+00 2025-10-30 22:52:58.192677+00 f t payed 1305 1208 +5963 2025-10-30 22:53:42.931892+00 2025-10-30 22:53:42.931904+00 f t pending 1309 \N +5964 2025-10-30 22:56:48.048969+00 2025-10-30 22:56:48.048978+00 f t in_progress_vet 1309 1208 +5965 2025-10-30 22:57:34.555515+00 2025-10-30 22:57:34.555525+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 10:00:00 1309 1208 +5966 2025-10-30 22:57:46.524584+00 2025-10-30 22:57:46.524594+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1309 1208 +5967 2025-10-30 22:57:54.694972+00 2025-10-30 22:57:54.694983+00 f t Confirmado 1309 \N +5968 2025-10-30 22:57:54.662542+00 2025-10-30 22:57:54.662553+00 f t payed 1309 1208 +5969 2025-10-30 22:58:07.126171+00 2025-10-30 22:58:07.126184+00 f t vet_accepted 1308 \N +5970 2025-10-30 22:58:07.142871+00 2025-10-30 22:58:07.142885+00 f t in_progress_pay 1308 \N +5971 2025-10-30 23:25:26.86618+00 2025-10-30 23:25:26.866188+00 f t vet_accepted 1294 \N +5972 2025-10-30 23:25:26.878004+00 2025-10-30 23:25:26.878014+00 f t in_progress_pay 1294 \N +5973 2025-10-30 23:30:54.240608+00 2025-10-30 23:30:54.240621+00 f t pending 1310 \N +5974 2025-10-30 23:31:10.082157+00 2025-10-30 23:31:10.082166+00 f t in_progress_vet 1310 113 +5975 2025-10-30 23:31:15.994766+00 2025-10-30 23:31:15.994774+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 15:00:00 1310 113 +5976 2025-10-30 23:31:33.985133+00 2025-10-30 23:31:33.985141+00 f t vet_asked Veterinario asignado: Medvuidenur Yanina 1310 113 +5977 2025-10-30 23:31:35.489671+00 2025-10-30 23:31:35.489679+00 f t vet_accepted 1310 113 +5978 2025-10-30 23:31:35.501735+00 2025-10-30 23:31:35.501744+00 f t in_progress_pay 1310 113 +5979 2025-10-30 23:32:04.614046+00 2025-10-30 23:32:04.614057+00 f t Confirmado 1310 \N +5980 2025-10-30 23:32:04.581928+00 2025-10-30 23:32:04.581937+00 f t payed 1310 113 +5981 2025-10-30 23:34:52.957837+00 2025-10-30 23:34:52.957845+00 f t pending 1311 \N +5982 2025-10-30 23:35:20.72284+00 2025-10-30 23:35:20.722849+00 f t vet_asked Veterinario asignado: Medvuidenur Yanina 1311 113 +5983 2025-10-30 23:35:21.742065+00 2025-10-30 23:35:21.742073+00 f t vet_accepted 1311 113 +5984 2025-10-30 23:35:21.752888+00 2025-10-30 23:35:21.752896+00 f t in_progress_pay 1311 113 +5985 2025-10-30 23:35:35.564234+00 2025-10-30 23:35:35.564245+00 f t Confirmado 1311 \N +5986 2025-10-30 23:35:35.525969+00 2025-10-30 23:35:35.525981+00 f t payed 1311 113 +5987 2025-10-30 23:41:38.75243+00 2025-10-30 23:41:38.752438+00 f t pending 1312 \N +5988 2025-10-30 23:42:00.684333+00 2025-10-30 23:42:00.684344+00 f t in_progress_vet 1312 113 +5989 2025-10-30 23:42:15.672203+00 2025-10-30 23:42:15.672213+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 17:00:00 1312 113 +5990 2025-10-30 23:42:33.477501+00 2025-10-30 23:42:33.477511+00 f t vet_asked Veterinario asignado: Medvuidenur Yanina 1312 113 +5991 2025-10-30 23:42:35.023686+00 2025-10-30 23:42:35.023697+00 f t vet_accepted 1312 113 +5992 2025-10-30 23:42:35.037369+00 2025-10-30 23:42:35.037378+00 f t in_progress_pay 1312 113 +5993 2025-10-30 23:42:44.39138+00 2025-10-30 23:42:44.391389+00 f t Confirmado 1312 \N +5994 2025-10-30 23:42:44.358661+00 2025-10-30 23:42:44.358669+00 f t payed 1312 113 +5995 2025-10-30 23:43:13.701342+00 2025-10-30 23:43:13.701356+00 f t pending 1313 \N +5996 2025-10-30 23:43:28.562618+00 2025-10-30 23:43:28.562628+00 f t in_progress_vet 1313 113 +5997 2025-10-30 23:43:38.903509+00 2025-10-30 23:43:38.903518+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 19:30:00 1313 113 +5998 2025-10-30 23:43:58.640499+00 2025-10-30 23:43:58.640511+00 f t vet_asked Veterinario asignado: Medvuidenur Yanina 1313 113 +5999 2025-10-30 23:43:59.972798+00 2025-10-30 23:43:59.972809+00 f t vet_accepted 1313 113 +6000 2025-10-30 23:43:59.989047+00 2025-10-30 23:43:59.98906+00 f t in_progress_pay 1313 113 +6001 2025-10-30 23:44:08.895726+00 2025-10-30 23:44:08.895734+00 f t Confirmado 1313 \N +6002 2025-10-30 23:44:08.86562+00 2025-10-30 23:44:08.865629+00 f t payed 1313 113 +6003 2025-10-31 00:55:35.879533+00 2025-10-31 00:55:35.879542+00 f t pending 1314 \N +6004 2025-10-31 11:58:55.188445+00 2025-10-31 11:58:55.188453+00 f t in_progress_vet 1314 1583 +6005 2025-10-31 12:26:07.168289+00 2025-10-31 12:26:07.168297+00 f t Confirmado 1261 \N +6006 2025-10-31 12:26:07.139667+00 2025-10-31 12:26:07.139676+00 f t payed 1261 1583 +6007 2025-10-31 12:31:08.334298+00 2025-10-31 12:31:08.334307+00 f t pending 1315 \N +6008 2025-10-31 12:31:21.603513+00 2025-10-31 12:31:21.603522+00 f t in_progress_vet 1315 1583 +6009 2025-10-31 12:31:27.332271+00 2025-10-31 12:31:27.332281+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 10:00:00 1315 1583 +6010 2025-10-31 12:31:32.672723+00 2025-10-31 12:31:32.672731+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1315 1583 +6011 2025-10-31 12:31:33.285096+00 2025-10-31 12:31:33.285105+00 f t vet_accepted 1315 1583 +6012 2025-10-31 12:31:33.296416+00 2025-10-31 12:31:33.296425+00 f t in_progress_pay 1315 1583 +6013 2025-10-31 12:31:43.518177+00 2025-10-31 12:31:43.518185+00 f t Confirmado 1315 \N +6014 2025-10-31 12:31:43.491562+00 2025-10-31 12:31:43.491572+00 f t payed 1315 1583 +6015 2025-10-31 13:06:37.955643+00 2025-10-31 13:06:37.955653+00 f t pending 1316 \N +6016 2025-10-31 13:06:53.081692+00 2025-10-31 13:06:53.081704+00 f t in_progress_vet 1316 1583 +6017 2025-10-31 13:07:01.383038+00 2025-10-31 13:07:01.383052+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 10:00:00 1316 1583 +6018 2025-10-31 13:43:21.210202+00 2025-10-31 13:43:21.21021+00 f t pending 1317 \N +6019 2025-10-31 13:43:50.960798+00 2025-10-31 13:43:50.960807+00 f t in_progress_vet 1317 1583 +6020 2025-10-31 13:43:57.374093+00 2025-10-31 13:43:57.374101+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 13:30:00 1317 1583 +6021 2025-10-31 14:14:41.48753+00 2025-10-31 14:14:41.487539+00 f t pending 1318 \N +6022 2025-10-31 14:14:50.965583+00 2025-10-31 14:14:50.965593+00 f t in_progress_vet 1318 1583 +6023 2025-10-31 14:14:56.424448+00 2025-10-31 14:14:56.424458+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 18:30:00 1318 1583 +6024 2025-10-31 14:15:01.347704+00 2025-10-31 14:15:01.347718+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1318 1583 +6025 2025-10-31 14:15:02.125592+00 2025-10-31 14:15:02.125608+00 f t vet_accepted 1318 1583 +6026 2025-10-31 14:15:02.164115+00 2025-10-31 14:15:02.16413+00 f t in_progress_pay 1318 1583 +6027 2025-10-31 14:15:05.15181+00 2025-10-31 14:15:05.151824+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1318 1583 +6028 2025-10-31 14:15:24.83645+00 2025-10-31 14:15:24.836458+00 f t Confirmado 1318 \N +6029 2025-10-31 14:15:24.808082+00 2025-10-31 14:15:24.808092+00 f t payed 1318 1583 +6030 2025-10-31 14:17:34.392996+00 2025-10-31 14:17:34.393004+00 f t pending 1319 \N +6031 2025-10-31 14:17:47.144269+00 2025-10-31 14:17:47.144283+00 f t in_progress_vet 1319 1583 +6032 2025-10-31 14:17:53.941524+00 2025-10-31 14:17:53.941531+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 17:00:00 1319 1583 +6033 2025-10-31 14:18:28.940998+00 2025-10-31 14:18:28.941006+00 f t vet_asked Veterinario asignado: di Risio Daniela 1319 1583 +6034 2025-10-31 14:45:05.250694+00 2025-10-31 14:45:05.250709+00 f t rejected D-Averiguando / Desconocido 1317 1583 +6035 2025-10-31 14:51:43.41511+00 2025-10-31 14:51:43.415122+00 f t pending 1320 \N +6036 2025-10-31 14:51:53.490989+00 2025-10-31 14:51:53.490997+00 f t in_progress_vet 1320 1583 +6037 2025-10-31 14:52:19.809033+00 2025-10-31 14:52:19.809042+00 f t vet_asked Veterinario asignado: di Risio Daniela 1320 1583 +6038 2025-10-31 14:52:20.479842+00 2025-10-31 14:52:20.47985+00 f t vet_accepted 1320 1583 +6039 2025-10-31 14:52:20.492854+00 2025-10-31 14:52:20.492864+00 f t in_progress_pay 1320 1583 +6040 2025-10-31 14:52:43.842071+00 2025-10-31 14:52:43.842078+00 f t Confirmado 1320 \N +6041 2025-10-31 14:52:43.815626+00 2025-10-31 14:52:43.815637+00 f t payed 1320 1583 +6042 2025-10-31 14:53:48.180292+00 2025-10-31 14:53:48.180303+00 f t pending 1321 \N +6043 2025-10-31 14:54:07.05269+00 2025-10-31 14:54:07.0527+00 f t in_progress_vet 1321 1583 +6044 2025-10-31 14:54:21.998174+00 2025-10-31 14:54:21.998181+00 f t coordinated Solicitud coordinada para 2025-11-08 a las 08:30:00 1321 1583 +6045 2025-10-31 14:54:29.000774+00 2025-10-31 14:54:29.000783+00 f t vet_asked Veterinario asignado: Campo Silvia 1321 1583 +6046 2025-10-31 14:54:29.981316+00 2025-10-31 14:54:29.981325+00 f t vet_accepted 1321 1583 +6047 2025-10-31 14:54:29.992684+00 2025-10-31 14:54:29.992692+00 f t in_progress_pay 1321 1583 +6048 2025-10-31 14:54:46.75266+00 2025-10-31 14:54:46.752668+00 f t Confirmado 1321 \N +6049 2025-10-31 14:54:46.727015+00 2025-10-31 14:54:46.727024+00 f t payed 1321 1583 +6050 2025-10-31 15:14:39.322519+00 2025-10-31 15:14:39.322532+00 f t rejected D-Emergencia 1316 1583 +6051 2025-10-31 15:19:08.002669+00 2025-10-31 15:19:08.002679+00 f t pending 1322 \N +6052 2025-10-31 15:19:28.923192+00 2025-10-31 15:19:28.923201+00 f t in_progress_vet 1322 1583 +6053 2025-10-31 15:19:35.440889+00 2025-10-31 15:19:35.440896+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 12:30:00 1322 1583 +6054 2025-10-31 15:19:41.384366+00 2025-10-31 15:19:41.384375+00 f t vet_asked Veterinario asignado: Laura Gorostegui Maria 1322 1583 +6055 2025-10-31 15:19:42.044202+00 2025-10-31 15:19:42.044214+00 f t vet_accepted 1322 1583 +6056 2025-10-31 15:19:42.055705+00 2025-10-31 15:19:42.055714+00 f t in_progress_pay 1322 1583 +6057 2025-10-31 15:19:58.835016+00 2025-10-31 15:19:58.835024+00 f t Confirmado 1322 \N +6058 2025-10-31 15:19:58.80971+00 2025-10-31 15:19:58.809718+00 f t payed 1322 1583 +6059 2025-10-31 15:45:47.167153+00 2025-10-31 15:45:47.167165+00 f t Confirmado 1319 \N +6060 2025-10-31 15:45:47.14065+00 2025-10-31 15:45:47.140658+00 f t payed 1319 1583 +6061 2025-10-31 16:22:32.89424+00 2025-10-31 16:22:32.894249+00 f t pending 1323 \N +6062 2025-10-31 16:22:50.476893+00 2025-10-31 16:22:50.476902+00 f t in_progress_vet 1323 1583 +6063 2025-10-31 16:23:04.794713+00 2025-10-31 16:23:04.794722+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1323 1583 +6064 2025-10-31 16:23:05.401859+00 2025-10-31 16:23:05.401867+00 f t vet_accepted 1323 1583 +6065 2025-10-31 16:23:05.413285+00 2025-10-31 16:23:05.413295+00 f t in_progress_pay 1323 1583 +6066 2025-10-31 16:53:20.108043+00 2025-10-31 16:53:20.108052+00 f t rejected D-Sin Turno 1308 1583 +6067 2025-10-31 16:58:57.935481+00 2025-10-31 16:58:57.935489+00 f t pending 1324 \N +6068 2025-10-31 16:59:25.592893+00 2025-10-31 16:59:25.592902+00 f t in_progress_vet 1324 1583 +6069 2025-10-31 16:59:33.691611+00 2025-10-31 16:59:33.691619+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 16:00:00 1324 1583 +6070 2025-10-31 16:59:54.978136+00 2025-10-31 16:59:54.978143+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 18:00:00 1324 1583 +6071 2025-10-31 17:00:49.168415+00 2025-10-31 17:00:49.168424+00 f t vet_accepted 1324 \N +6072 2025-10-31 17:00:49.182728+00 2025-10-31 17:00:49.182737+00 f t in_progress_pay 1324 \N +6073 2025-10-31 17:07:07.746676+00 2025-10-31 17:07:07.746685+00 f t pending 1325 \N +6074 2025-10-31 17:10:15.79162+00 2025-10-31 17:10:15.791629+00 f t in_progress_vet 1325 1583 +6075 2025-10-31 17:11:26.311763+00 2025-10-31 17:11:26.311771+00 f t rejected D-Provincia 1325 1583 +6076 2025-10-31 17:13:48.613509+00 2025-10-31 17:13:48.613518+00 f t pending 1326 \N +6077 2025-10-31 17:14:02.481283+00 2025-10-31 17:14:02.481294+00 f t in_progress_vet 1326 1583 +6078 2025-10-31 17:14:24.401941+00 2025-10-31 17:14:24.401951+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 10:00:00 1326 1583 +6079 2025-10-31 17:16:22.457156+00 2025-10-31 17:16:22.45717+00 f t pending 1327 \N +6080 2025-10-31 17:16:31.630199+00 2025-10-31 17:16:31.63021+00 f t pending 1328 \N +6081 2025-10-31 17:16:42.890895+00 2025-10-31 17:16:42.890904+00 f t in_progress_vet 1328 1583 +6082 2025-10-31 17:16:47.201472+00 2025-10-31 17:16:47.201482+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 09:00:00 1328 1583 +6083 2025-10-31 17:18:24.692123+00 2025-10-31 17:18:24.692133+00 f t in_progress_vet 1327 1208 +6084 2025-10-31 17:35:00.997447+00 2025-10-31 17:35:00.997459+00 f t rejected D-Provincia 1327 1208 +6085 2025-10-31 18:12:33.545607+00 2025-10-31 18:12:33.545618+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 14:00:00 1324 1583 +6086 2025-10-31 18:32:20.607261+00 2025-10-31 18:32:20.607272+00 f t vet_accepted 1206 1879 +6087 2025-10-31 18:37:16.801688+00 2025-10-31 18:37:16.8017+00 f t vet_accepted 1326 \N +6088 2025-10-31 18:37:16.81503+00 2025-10-31 18:37:16.815039+00 f t in_progress_pay 1326 \N +6089 2025-10-31 18:48:53.66922+00 2025-10-31 18:48:53.669229+00 f t vet_accepted 1324 \N +6090 2025-10-31 18:48:53.680573+00 2025-10-31 18:48:53.680581+00 f t in_progress_pay 1324 \N +6091 2025-10-31 20:08:24.545713+00 2025-10-31 20:08:24.545722+00 f t pending 1329 \N +6092 2025-10-31 20:08:53.390681+00 2025-10-31 20:08:53.390689+00 f t in_progress_vet 1329 1208 +6093 2025-10-31 20:10:23.272938+00 2025-10-31 20:10:23.272947+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 11:30:00 1329 1208 +6094 2025-10-31 20:12:28.921553+00 2025-10-31 20:12:28.921562+00 f t vet_accepted 1329 \N +6095 2025-10-31 20:12:28.934181+00 2025-10-31 20:12:28.934189+00 f t in_progress_pay 1329 \N +6096 2025-10-31 20:12:49.076349+00 2025-10-31 20:12:49.076367+00 f t rejected D-Emergencia 1314 1583 +6097 2025-10-31 20:32:55.350339+00 2025-10-31 20:32:55.35035+00 f t pending 1330 \N +6098 2025-10-31 20:33:49.391963+00 2025-10-31 20:33:49.391971+00 f t in_progress_vet 1330 1208 +6099 2025-10-31 20:34:43.355837+00 2025-10-31 20:34:43.355845+00 f t coordinated Solicitud coordinada para 2025-10-31 a las 19:00:00 1330 1208 +6100 2025-10-31 20:41:01.023949+00 2025-10-31 20:41:01.023961+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1330 1208 +6101 2025-10-31 20:56:58.673972+00 2025-10-31 20:56:58.673981+00 f t vet_accepted 1328 124 +6102 2025-10-31 20:56:58.685691+00 2025-10-31 20:56:58.6857+00 f t in_progress_pay 1328 124 +6103 2025-10-31 21:19:12.905543+00 2025-10-31 21:19:12.905553+00 f t rejected D-Averiguando / Desconocido 1324 1208 +6104 2025-10-31 21:36:23.875956+00 2025-10-31 21:36:23.875966+00 f t vet_accepted 1329 \N +6105 2025-10-31 21:36:23.887747+00 2025-10-31 21:36:23.887755+00 f t in_progress_pay 1329 \N +6106 2025-10-31 21:46:21.982741+00 2025-10-31 21:46:21.98275+00 f t pending 1331 \N +6107 2025-10-31 21:47:37.478989+00 2025-10-31 21:47:37.478997+00 f t Confirmado 1329 \N +6108 2025-10-31 21:47:37.451445+00 2025-10-31 21:47:37.451453+00 f t payed 1329 1208 +6109 2025-10-31 21:49:18.351271+00 2025-10-31 21:49:18.351284+00 f t in_progress_vet 1331 1208 +6110 2025-10-31 21:49:49.003086+00 2025-10-31 21:49:49.003094+00 f t pending 1332 \N +6111 2025-10-31 21:55:26.754824+00 2025-10-31 21:55:26.754833+00 f t pending 1333 \N +6112 2025-10-31 22:05:56.010893+00 2025-10-31 22:05:56.010905+00 f t in_progress_vet 1333 1208 +6113 2025-10-31 22:06:20.823254+00 2025-10-31 22:06:20.823266+00 f t rejected D-Abandono Bot 1332 1208 +6114 2025-10-31 22:15:40.482704+00 2025-10-31 22:15:40.482712+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 11:00:00 1333 1208 +6115 2025-10-31 22:17:47.769044+00 2025-10-31 22:17:47.769056+00 f t vet_accepted 1333 128 +6116 2025-10-31 22:17:47.785945+00 2025-10-31 22:17:47.785958+00 f t in_progress_pay 1333 128 +6117 2025-10-31 22:25:07.265366+00 2025-10-31 22:25:07.265377+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 11:00:00 1331 1208 +6118 2025-10-31 22:41:10.182188+00 2025-10-31 22:41:10.182197+00 f t pending 1334 \N +6119 2025-10-31 22:42:03.50946+00 2025-10-31 22:42:03.509469+00 f t in_progress_vet 1334 1208 +6120 2025-10-31 22:46:59.544476+00 2025-10-31 22:46:59.544485+00 f t pending 1335 \N +6121 2025-10-31 22:47:19.578114+00 2025-10-31 22:47:19.578122+00 f t in_progress_vet 1335 1208 +6122 2025-10-31 22:47:28.023988+00 2025-10-31 22:47:28.023996+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 20:00:00 1335 1208 +6123 2025-10-31 22:48:40.551238+00 2025-10-31 22:48:40.551249+00 f t vet_accepted 1335 \N +6124 2025-10-31 22:48:40.564014+00 2025-10-31 22:48:40.564023+00 f t in_progress_pay 1335 \N +6125 2025-10-31 23:00:29.749153+00 2025-10-31 23:00:29.749162+00 f t Confirmado 1333 \N +6126 2025-10-31 23:00:29.719275+00 2025-10-31 23:00:29.719287+00 f t payed 1333 1208 +6127 2025-10-31 23:03:43.856877+00 2025-10-31 23:03:43.856888+00 f t pending 1336 \N +6128 2025-10-31 23:08:52.95824+00 2025-10-31 23:08:52.958249+00 f t in_progress_vet 1336 1208 +6129 2025-10-31 23:18:20.728467+00 2025-10-31 23:18:20.728477+00 f t rejected D-Averiguando / Desconocido 1328 1208 +6130 2025-10-31 23:19:04.26876+00 2025-10-31 23:19:04.268769+00 f t Confirmado 1335 \N +6131 2025-10-31 23:19:04.234925+00 2025-10-31 23:19:04.234934+00 f t payed 1335 1208 +6132 2025-10-31 23:34:03.07246+00 2025-10-31 23:34:03.072469+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 10:00:00 1336 1208 +6133 2025-11-01 01:53:27.794343+00 2025-11-01 01:53:27.794352+00 f t pending 1337 \N +6134 2025-11-01 12:30:12.776253+00 2025-11-01 12:30:12.776264+00 f t in_progress_vet 1337 1208 +6135 2025-11-01 12:42:49.251901+00 2025-11-01 12:42:49.251911+00 f t pending 1338 \N +6136 2025-11-01 12:45:06.087664+00 2025-11-01 12:45:06.087674+00 f t in_progress_vet 1338 1208 +6137 2025-11-01 12:45:13.129189+00 2025-11-01 12:45:13.129197+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 17:00:00 1338 1208 +6138 2025-11-01 12:46:31.084288+00 2025-11-01 12:46:31.084296+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 11:00:00 1337 1208 +6139 2025-11-01 12:50:51.685372+00 2025-11-01 12:50:51.685379+00 f t pending 1339 \N +6140 2025-11-01 12:55:14.099238+00 2025-11-01 12:55:14.099247+00 f t in_progress_vet 1339 1208 +6141 2025-11-01 12:56:34.859821+00 2025-11-01 12:56:34.859829+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 11:00:00 1339 1208 +6142 2025-11-01 12:57:17.27227+00 2025-11-01 12:57:17.272278+00 f t vet_accepted 1339 \N +6143 2025-11-01 12:57:17.284901+00 2025-11-01 12:57:17.28491+00 f t in_progress_pay 1339 \N +6144 2025-11-01 13:05:24.628987+00 2025-11-01 13:05:24.628995+00 f t pending 1340 \N +6145 2025-11-01 13:06:26.804418+00 2025-11-01 13:06:26.804426+00 f t pending 1341 \N +6146 2025-11-01 13:07:57.007816+00 2025-11-01 13:07:57.007824+00 f t in_progress_vet 1340 1208 +6147 2025-11-01 13:09:51.441574+00 2025-11-01 13:09:51.441582+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 13:00:00 1340 1208 +6148 2025-11-01 13:11:04.234111+00 2025-11-01 13:11:04.23412+00 f t vet_accepted 1338 \N +6149 2025-11-01 13:11:04.247991+00 2025-11-01 13:11:04.247999+00 f t in_progress_pay 1338 \N +6150 2025-11-01 13:14:17.893787+00 2025-11-01 13:14:17.893796+00 f t in_progress_vet 1341 1208 +6151 2025-11-01 13:14:37.921785+00 2025-11-01 13:14:37.921797+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 12:00:00 1341 1208 +6152 2025-11-01 13:22:36.400426+00 2025-11-01 13:22:36.400435+00 f t vet_accepted 1340 126 +6153 2025-11-01 13:22:36.415589+00 2025-11-01 13:22:36.415599+00 f t in_progress_pay 1340 126 +6154 2025-11-01 13:24:39.604194+00 2025-11-01 13:24:39.604202+00 f t Confirmado 1339 \N +6155 2025-11-01 13:24:39.825663+00 2025-11-01 13:24:39.825672+00 f t payed 1339 1208 +6156 2025-11-01 13:24:39.57728+00 2025-11-01 13:24:39.577288+00 f t payed 1339 1208 +6157 2025-11-01 13:27:22.260511+00 2025-11-01 13:27:22.260519+00 f t rejected D-Averiguando / Desconocido 1337 1208 +6158 2025-11-01 13:31:13.915751+00 2025-11-01 13:31:13.915761+00 f t pending 1342 \N +6159 2025-11-01 13:31:22.85131+00 2025-11-01 13:31:22.851321+00 f t in_progress_vet 1342 1208 +6160 2025-11-01 13:35:20.954464+00 2025-11-01 13:35:20.954473+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 14:00:00 1342 1208 +6161 2025-11-01 13:42:33.292931+00 2025-11-01 13:42:33.292945+00 f t vet_accepted 1342 \N +6162 2025-11-01 13:42:33.311322+00 2025-11-01 13:42:33.311331+00 f t in_progress_pay 1342 \N +6163 2025-11-01 13:48:13.781329+00 2025-11-01 13:48:13.781341+00 f t pending 1343 \N +6164 2025-11-01 14:03:49.567937+00 2025-11-01 14:03:49.567945+00 f t rejected D-Averiguando / Desconocido 1343 1208 +6165 2025-11-01 14:07:16.247221+00 2025-11-01 14:07:16.24723+00 f t rejected D-Abandono Bot 1330 1208 +6166 2025-11-01 14:21:15.75979+00 2025-11-01 14:21:15.759799+00 f t Confirmado 1340 \N +6167 2025-11-01 14:21:15.729042+00 2025-11-01 14:21:15.729051+00 f t payed 1340 1208 +6168 2025-11-01 14:22:30.138391+00 2025-11-01 14:22:30.138403+00 f t rejected D-Abandono Bot 1336 1208 +6169 2025-11-01 14:27:45.472086+00 2025-11-01 14:27:45.472093+00 f t Confirmado 1342 \N +6170 2025-11-01 14:27:45.446433+00 2025-11-01 14:27:45.446441+00 f t payed 1342 1208 +6171 2025-11-01 14:48:59.779008+00 2025-11-01 14:48:59.779018+00 f t pending 1344 \N +6172 2025-11-01 14:56:49.12848+00 2025-11-01 14:56:49.128489+00 f t in_progress_vet 1344 1208 +6173 2025-11-01 14:57:01.577788+00 2025-11-01 14:57:01.577797+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 15:00:00 1344 1208 +6174 2025-11-01 14:57:20.939088+00 2025-11-01 14:57:20.939097+00 f t rejected D-Abandono Bot 1331 1208 +6175 2025-11-01 15:05:55.181779+00 2025-11-01 15:05:55.181789+00 f t pending 1345 \N +6176 2025-11-01 15:09:43.440055+00 2025-11-01 15:09:43.440063+00 f t pending 1346 \N +6177 2025-11-01 15:14:00.819975+00 2025-11-01 15:14:00.819985+00 f t in_progress_vet 1345 1208 +6178 2025-11-01 15:14:09.056256+00 2025-11-01 15:14:09.056267+00 f t in_progress_vet 1346 1208 +6179 2025-11-01 15:17:41.743425+00 2025-11-01 15:17:41.743434+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 15:00:00 1346 1208 +6180 2025-11-01 15:18:39.622099+00 2025-11-01 15:18:39.622106+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 15:30:00 1345 1208 +6181 2025-11-01 15:44:22.254073+00 2025-11-01 15:44:22.254084+00 f t pending 1347 \N +6182 2025-11-01 15:44:48.297098+00 2025-11-01 15:44:48.297106+00 f t rejected D-Averiguando / Desconocido 1323 1208 +6183 2025-11-01 15:44:58.93965+00 2025-11-01 15:44:58.939658+00 f t in_progress_vet 1347 1208 +6184 2025-11-01 15:45:06.831218+00 2025-11-01 15:45:06.831227+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 17:00:00 1347 1208 +6185 2025-11-01 15:45:17.533214+00 2025-11-01 15:45:17.533222+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1347 1208 +6186 2025-11-01 15:48:57.757484+00 2025-11-01 15:48:57.757495+00 f t Confirmado 1347 \N +6187 2025-11-01 15:48:57.726842+00 2025-11-01 15:48:57.72685+00 f t payed 1347 1208 +6188 2025-11-01 15:52:53.406856+00 2025-11-01 15:52:53.406868+00 f t Confirmado 1338 \N +6189 2025-11-01 15:52:53.374609+00 2025-11-01 15:52:53.374622+00 f t payed 1338 1208 +6190 2025-11-01 16:08:55.009744+00 2025-11-01 16:08:55.009753+00 f t rejected D-Abandono Bot 1341 1208 +6191 2025-11-01 16:20:04.166166+00 2025-11-01 16:20:04.16618+00 f t payed 1344 1208 +6192 2025-11-01 16:20:32.737228+00 2025-11-01 16:20:32.737236+00 f t Confirmado 1344 \N +6193 2025-11-01 16:20:33.926339+00 2025-11-01 16:20:33.926349+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1344 1208 +6194 2025-11-01 16:21:51.946636+00 2025-11-01 16:21:51.946644+00 f t pending 1348 \N +6195 2025-11-01 16:22:05.228168+00 2025-11-01 16:22:05.228181+00 f t in_progress_vet 1348 1208 +6196 2025-11-01 16:23:32.30066+00 2025-11-01 16:23:32.300667+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 16:00:00 1348 1208 +6197 2025-11-01 16:31:16.935834+00 2025-11-01 16:31:16.935844+00 f t vet_accepted 1344 \N +6198 2025-11-01 16:32:30.560184+00 2025-11-01 16:32:30.560193+00 f t vet_accepted 1348 \N +6199 2025-11-01 16:32:30.571374+00 2025-11-01 16:32:30.571383+00 f t in_progress_pay 1348 \N +6200 2025-11-01 16:45:54.715535+00 2025-11-01 16:45:54.715547+00 f t pending 1349 \N +6201 2025-11-01 16:46:10.207508+00 2025-11-01 16:46:10.207516+00 f t in_progress_vet 1349 1208 +6202 2025-11-01 16:46:25.281576+00 2025-11-01 16:46:25.281584+00 f t pending 1350 \N +6203 2025-11-01 16:46:53.361613+00 2025-11-01 16:46:53.361621+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 16:30:00 1349 1208 +6204 2025-11-01 16:47:08.43648+00 2025-11-01 16:47:08.43649+00 f t vet_asked Veterinario asignado: Dubowik Katerina 1349 1208 +6205 2025-11-01 16:49:58.330323+00 2025-11-01 16:49:58.330331+00 f t Confirmado 1349 \N +6206 2025-11-01 16:49:58.293175+00 2025-11-01 16:49:58.293188+00 f t payed 1349 1208 +6207 2025-11-01 16:52:52.067922+00 2025-11-01 16:52:52.067934+00 f t in_progress_vet 1350 1208 +6208 2025-11-01 16:53:11.296073+00 2025-11-01 16:53:11.296081+00 f t rejected D-Provincia 1345 1208 +6209 2025-11-01 16:55:31.081925+00 2025-11-01 16:55:31.081933+00 f t pending 1351 \N +6210 2025-11-01 16:56:08.823185+00 2025-11-01 16:56:08.823194+00 f t in_progress_vet 1351 1208 +6211 2025-11-01 16:56:24.494308+00 2025-11-01 16:56:24.494317+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 19:00:00 1351 1208 +6212 2025-11-01 17:04:28.694026+00 2025-11-01 17:04:28.694034+00 f t rejected D-Abandono Bot 1326 1208 +6213 2025-11-01 17:20:19.145312+00 2025-11-01 17:20:19.14532+00 f t Confirmado 1348 \N +6214 2025-11-01 17:20:19.11865+00 2025-11-01 17:20:19.118662+00 f t payed 1348 1208 +6215 2025-11-01 17:47:47.317419+00 2025-11-01 17:47:47.317428+00 f t rejected D-Abandono Bot 1346 1208 +6216 2025-11-01 17:47:58.626645+00 2025-11-01 17:47:58.626655+00 f t rejected D-Averiguando / Desconocido 1350 1208 +6217 2025-11-01 17:48:10.948773+00 2025-11-01 17:48:10.948782+00 f t rejected D-Averiguando / Desconocido 1334 1208 +6218 2025-11-01 18:12:47.836509+00 2025-11-01 18:12:47.836519+00 f t pending 1352 \N +6219 2025-11-01 18:16:08.917562+00 2025-11-01 18:16:08.917571+00 f t in_progress_vet 1352 1208 +6220 2025-11-01 18:16:22.165718+00 2025-11-01 18:16:22.165725+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 13:30:00 1352 1208 +6221 2025-11-01 18:16:33.946062+00 2025-11-01 18:16:33.94607+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1352 1208 +6222 2025-11-01 18:24:21.336171+00 2025-11-01 18:24:21.33618+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1351 1208 +6223 2025-11-01 18:26:47.392238+00 2025-11-01 18:26:47.392248+00 f t Confirmado 1352 \N +6224 2025-11-01 18:26:47.364205+00 2025-11-01 18:26:47.364213+00 f t payed 1352 1208 +6225 2025-11-01 18:55:01.720944+00 2025-11-01 18:55:01.720959+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 19:00:00 1351 1208 +6226 2025-11-01 18:55:25.32573+00 2025-11-01 18:55:25.325738+00 f t Confirmado 1351 \N +6227 2025-11-01 18:55:25.299281+00 2025-11-01 18:55:25.29929+00 f t payed 1351 1208 +6228 2025-11-01 19:06:32.470944+00 2025-11-01 19:06:32.470953+00 f t pending 1353 \N +6229 2025-11-01 19:43:07.355874+00 2025-11-01 19:43:07.356121+00 f t in_progress_vet 1353 1208 +6230 2025-11-01 19:43:29.667417+00 2025-11-01 19:43:29.667427+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 13:00:00 1353 1208 +6231 2025-11-01 19:50:42.117747+00 2025-11-01 19:50:42.117763+00 f t pending 1354 \N +6232 2025-11-01 19:50:59.103565+00 2025-11-01 19:50:59.103581+00 f t in_progress_vet 1354 1208 +6233 2025-11-01 19:51:09.801589+00 2025-11-01 19:51:09.801733+00 f t coordinated Solicitud coordinada para 2025-11-01 a las 19:30:00 1354 1208 +6234 2025-11-01 19:52:07.436169+00 2025-11-01 19:52:07.436183+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1354 1208 +6235 2025-11-01 19:52:32.426796+00 2025-11-01 19:52:32.426805+00 f t Confirmado 1354 \N +6236 2025-11-01 19:52:32.39647+00 2025-11-01 19:52:32.39648+00 f t payed 1354 1208 +6237 2025-11-01 21:24:40.7619+00 2025-11-01 21:24:40.761913+00 f t vet_accepted 1342 \N +6238 2025-11-01 21:37:04.117982+00 2025-11-01 21:37:04.117994+00 f t pending 1355 \N +6239 2025-11-01 22:24:56.771397+00 2025-11-01 22:24:56.771406+00 f t pending 1356 \N +6240 2025-11-01 23:07:53.414698+00 2025-11-01 23:07:53.414707+00 f t pending 1357 \N +6241 2025-11-01 23:09:13.977+00 2025-11-01 23:09:13.97701+00 f t in_progress_vet 1357 1208 +6242 2025-11-01 23:11:01.783745+00 2025-11-01 23:11:01.783753+00 f t coordinated Solicitud coordinada para 2025-11-02 a las 11:00:00 1357 1208 +6243 2025-11-01 23:11:17.897433+00 2025-11-01 23:11:17.897441+00 f t vet_asked Veterinario asignado: Palladino Martín 1357 1208 +6244 2025-11-01 23:16:10.825371+00 2025-11-01 23:16:10.82538+00 f t Confirmado 1357 \N +6245 2025-11-01 23:16:10.794593+00 2025-11-01 23:16:10.794601+00 f t payed 1357 1208 +6246 2025-11-02 12:27:38.603663+00 2025-11-02 12:27:38.603672+00 f t coordinated Solicitud coordinada para 2025-11-02 a las 11:30:00 1341 114 +6247 2025-11-02 15:15:40.593433+00 2025-11-02 15:15:40.593445+00 f t rejected D-Emergencia 1355 114 +6248 2025-11-02 16:54:45.90649+00 2025-11-02 16:54:45.906501+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 18:00:00 1320 114 +6249 2025-11-02 17:51:24.55638+00 2025-11-02 17:51:24.556389+00 f t pending 1358 \N +6250 2025-11-02 18:35:27.704922+00 2025-11-02 18:35:27.704931+00 f t in_progress_vet 1358 114 +6251 2025-11-02 18:35:45.137802+00 2025-11-02 18:35:45.137818+00 f t coordinated Solicitud coordinada para 2025-11-02 a las 16:30:00 1358 114 +6252 2025-11-02 18:54:47.74841+00 2025-11-02 18:54:47.74842+00 f t pending 1359 \N +6253 2025-11-02 18:54:49.000855+00 2025-11-02 18:54:49.000865+00 f t pending 1360 \N +6254 2025-11-02 18:57:07.011201+00 2025-11-02 18:57:07.01121+00 f t in_progress_vet 1360 114 +6255 2025-11-02 18:57:23.874518+00 2025-11-02 18:57:23.874527+00 f t coordinated Solicitud coordinada para 2025-02-11 a las 18:30:00 1360 114 +6256 2025-11-02 19:01:09.36667+00 2025-11-02 19:01:09.36668+00 f t coordinated Solicitud coordinada para 2025-11-02 a las 17:00:00 1358 114 +6257 2025-11-02 19:01:18.416348+00 2025-11-02 19:01:18.416358+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1358 114 +6258 2025-11-02 19:01:19.887528+00 2025-11-02 19:01:19.887537+00 f t vet_accepted 1358 114 +6259 2025-11-02 19:01:19.899118+00 2025-11-02 19:01:19.899128+00 f t in_progress_pay 1358 114 +6260 2025-11-02 19:01:39.013483+00 2025-11-02 19:01:39.013491+00 f t Confirmado 1358 \N +6261 2025-11-02 19:01:38.986424+00 2025-11-02 19:01:38.986432+00 f t payed 1358 114 +6262 2025-11-02 19:02:01.601642+00 2025-11-02 19:02:01.601653+00 f t rejected D-Abandono Bot 1356 114 +6263 2025-11-02 19:03:15.758456+00 2025-11-02 19:03:15.758468+00 f t coordinated Solicitud coordinada para 2025-11-02 a las 12:00:00 1341 114 +6264 2025-11-02 19:03:27.929268+00 2025-11-02 19:03:27.929276+00 f t vet_asked Veterinario asignado: Palummo Mariana 1341 114 +6265 2025-11-02 19:03:29.512402+00 2025-11-02 19:03:29.512412+00 f t vet_accepted 1341 114 +6266 2025-11-02 19:03:29.52581+00 2025-11-02 19:03:29.525823+00 f t in_progress_pay 1341 114 +6267 2025-11-02 19:04:40.232539+00 2025-11-02 19:04:40.232552+00 f t Confirmado 1341 \N +6268 2025-11-02 19:04:40.200002+00 2025-11-02 19:04:40.200011+00 f t payed 1341 114 +6269 2025-11-02 19:06:45.641665+00 2025-11-02 19:06:45.641673+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 18:30:00 1360 114 +6270 2025-11-02 19:44:29.798471+00 2025-11-02 19:44:29.798479+00 f t pending 1361 \N +6271 2025-11-02 19:49:09.491102+00 2025-11-02 19:49:09.491111+00 f t in_progress_vet 1361 114 +6272 2025-11-02 19:49:26.736061+00 2025-11-02 19:49:26.736069+00 f t coordinated Solicitud coordinada para 2025-12-07 a las 11:00:00 1361 114 +6273 2025-11-02 19:49:42.067227+00 2025-11-02 19:49:42.067235+00 f t vet_asked Veterinario asignado: Palladino Martín 1361 114 +6274 2025-11-02 19:49:42.840543+00 2025-11-02 19:49:42.840552+00 f t vet_accepted 1361 114 +6275 2025-11-02 19:49:42.852966+00 2025-11-02 19:49:42.852975+00 f t in_progress_pay 1361 114 +6276 2025-11-02 19:51:42.357363+00 2025-11-02 19:51:42.357373+00 f t pending 1362 \N +6277 2025-11-02 19:55:05.084214+00 2025-11-02 19:55:05.084326+00 f t Confirmado 1361 \N +6278 2025-11-02 19:55:05.026391+00 2025-11-02 19:55:05.026406+00 f t payed 1361 114 +6279 2025-11-03 10:13:35.59463+00 2025-11-03 10:13:35.59464+00 f t pending 1363 \N +6280 2025-11-03 12:09:00.587944+00 2025-11-03 12:09:00.587956+00 f t rejected D-Precio 1360 1583 +6281 2025-11-03 12:09:23.777554+00 2025-11-03 12:09:23.777565+00 f t in_progress_vet 1362 1583 +6282 2025-11-03 12:10:14.984427+00 2025-11-03 12:10:14.984436+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 10:00:00 1362 1583 +6283 2025-11-03 12:52:10.499805+00 2025-11-03 12:52:10.499815+00 f t pending 1364 \N +6284 2025-11-03 12:52:14.094655+00 2025-11-03 12:52:14.094666+00 f t pending 1365 \N +6285 2025-11-03 12:52:31.493347+00 2025-11-03 12:52:31.493355+00 f t in_progress_vet 1365 1583 +6286 2025-11-03 12:52:36.862328+00 2025-11-03 12:52:36.862337+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 10:00:00 1365 1583 +6287 2025-11-03 13:21:52.545795+00 2025-11-03 13:21:52.545806+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 18:30:00 1362 1583 +6288 2025-11-03 13:21:58.254682+00 2025-11-03 13:21:58.254692+00 f t vet_asked Veterinario asignado: Palladino Martín 1362 1583 +6289 2025-11-03 13:21:58.956511+00 2025-11-03 13:21:58.95652+00 f t vet_accepted 1362 1583 +6290 2025-11-03 13:21:58.966989+00 2025-11-03 13:21:58.966999+00 f t in_progress_pay 1362 1583 +6291 2025-11-03 13:22:28.482719+00 2025-11-03 13:22:28.482726+00 f t Confirmado 1362 \N +6292 2025-11-03 13:22:28.450027+00 2025-11-03 13:22:28.450035+00 f t payed 1362 1583 +6293 2025-11-03 13:53:39.24214+00 2025-11-03 13:53:39.242148+00 f t pending 1366 \N +6294 2025-11-03 13:54:22.140729+00 2025-11-03 13:54:22.140737+00 f t in_progress_vet 1366 1583 +6295 2025-11-03 13:54:26.849879+00 2025-11-03 13:54:26.849891+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 08:30:00 1366 1583 +6296 2025-11-03 13:56:17.342844+00 2025-11-03 13:56:17.342853+00 f t vet_accepted 1366 \N +6297 2025-11-03 13:56:17.355056+00 2025-11-03 13:56:17.355064+00 f t in_progress_pay 1366 \N +6298 2025-11-03 13:56:34.555126+00 2025-11-03 13:56:34.555149+00 f t rejected D-Emergencia 1363 1583 +6299 2025-11-03 13:56:35.80136+00 2025-11-03 13:56:35.801369+00 f t vet_accepted 1366 \N +6300 2025-11-03 13:56:35.815398+00 2025-11-03 13:56:35.815408+00 f t in_progress_pay 1366 \N +6301 2025-11-03 13:56:44.431554+00 2025-11-03 13:56:44.431567+00 f t vet_accepted 1366 \N +6302 2025-11-03 13:56:44.453014+00 2025-11-03 13:56:44.453023+00 f t in_progress_pay 1366 \N +6303 2025-11-03 13:56:44.483176+00 2025-11-03 13:56:44.483185+00 f t vet_accepted 1366 \N +6304 2025-11-03 13:56:44.502587+00 2025-11-03 13:56:44.502598+00 f t in_progress_pay 1366 \N +6305 2025-11-03 13:57:07.096769+00 2025-11-03 13:57:07.096779+00 f t vet_accepted 1366 \N +6306 2025-11-03 13:57:07.111611+00 2025-11-03 13:57:07.111621+00 f t in_progress_pay 1366 \N +6307 2025-11-03 13:57:07.170264+00 2025-11-03 13:57:07.170274+00 f t vet_accepted 1366 \N +6308 2025-11-03 13:57:07.185938+00 2025-11-03 13:57:07.18595+00 f t in_progress_pay 1366 \N +6309 2025-11-03 13:59:32.981863+00 2025-11-03 13:59:32.981873+00 f t pending 1367 \N +6310 2025-11-03 13:59:46.388508+00 2025-11-03 13:59:46.388517+00 f t in_progress_vet 1367 1583 +6311 2025-11-03 13:59:51.922784+00 2025-11-03 13:59:51.922792+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 17:00:00 1367 1583 +6312 2025-11-03 13:59:55.436691+00 2025-11-03 13:59:55.4367+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1367 1583 +6313 2025-11-03 13:59:56.122141+00 2025-11-03 13:59:56.12215+00 f t vet_accepted 1367 1583 +6314 2025-11-03 13:59:56.133535+00 2025-11-03 13:59:56.133545+00 f t in_progress_pay 1367 1583 +6315 2025-11-03 14:00:15.819405+00 2025-11-03 14:00:15.819413+00 f t Confirmado 1367 \N +6316 2025-11-03 14:00:15.78585+00 2025-11-03 14:00:15.785859+00 f t payed 1367 1583 +6317 2025-11-03 14:03:43.763434+00 2025-11-03 14:03:43.763448+00 f t pending 1368 \N +6318 2025-11-03 14:04:17.116418+00 2025-11-03 14:04:17.116426+00 f t in_progress_vet 1368 1583 +6319 2025-11-03 14:04:23.496147+00 2025-11-03 14:04:23.496156+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 16:00:00 1368 1583 +6320 2025-11-03 14:15:37.954536+00 2025-11-03 14:15:37.954544+00 f t pending 1369 \N +6321 2025-11-03 14:16:23.250335+00 2025-11-03 14:16:23.250343+00 f t in_progress_vet 1369 1583 +6322 2025-11-03 14:17:21.57589+00 2025-11-03 14:17:21.575898+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 11:00:00 1369 1583 +6323 2025-11-03 14:26:47.613448+00 2025-11-03 14:26:47.613457+00 f t vet_accepted 1366 \N +6324 2025-11-03 14:26:47.627152+00 2025-11-03 14:26:47.627164+00 f t in_progress_pay 1366 \N +6325 2025-11-03 14:27:06.465188+00 2025-11-03 14:27:06.465196+00 f t vet_accepted 1369 \N +6326 2025-11-03 14:27:06.4773+00 2025-11-03 14:27:06.477309+00 f t in_progress_pay 1369 \N +6327 2025-11-03 14:29:32.187059+00 2025-11-03 14:29:32.187069+00 f t pending 1370 \N +6328 2025-11-03 14:29:59.518583+00 2025-11-03 14:29:59.518592+00 f t in_progress_vet 1370 1583 +6329 2025-11-03 14:30:05.922672+00 2025-11-03 14:30:05.922682+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 21:00:00 1370 1583 +6330 2025-11-03 14:30:13.834941+00 2025-11-03 14:30:13.834954+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1370 1583 +6331 2025-11-03 14:30:14.730002+00 2025-11-03 14:30:14.730011+00 f t vet_accepted 1370 1583 +6332 2025-11-03 14:30:14.743236+00 2025-11-03 14:30:14.743246+00 f t in_progress_pay 1370 1583 +6333 2025-11-03 14:30:35.077408+00 2025-11-03 14:30:35.077419+00 f t Confirmado 1370 \N +6334 2025-11-03 14:30:35.043348+00 2025-11-03 14:30:35.043361+00 f t payed 1370 1583 +6335 2025-11-03 14:35:42.985374+00 2025-11-03 14:35:42.985384+00 f t pending 1371 \N +6336 2025-11-03 14:35:55.528571+00 2025-11-03 14:35:55.528585+00 f t in_progress_vet 1371 1583 +6337 2025-11-03 14:36:00.926173+00 2025-11-03 14:36:00.92618+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 19:00:00 1371 1583 +6338 2025-11-03 14:36:06.437976+00 2025-11-03 14:36:06.437985+00 f t vet_asked Veterinario asignado: Dubowik Katerina 1371 1583 +6339 2025-11-03 14:36:07.196966+00 2025-11-03 14:36:07.196975+00 f t vet_accepted 1371 1583 +6340 2025-11-03 14:36:07.208407+00 2025-11-03 14:36:07.208415+00 f t in_progress_pay 1371 1583 +6341 2025-11-03 14:36:35.063848+00 2025-11-03 14:36:35.063857+00 f t Confirmado 1371 \N +6342 2025-11-03 14:36:35.036738+00 2025-11-03 14:36:35.036748+00 f t payed 1371 1583 +6343 2025-11-03 14:38:43.603451+00 2025-11-03 14:38:43.60346+00 f t vet_accepted 1369 \N +6344 2025-11-03 14:38:43.61445+00 2025-11-03 14:38:43.614459+00 f t in_progress_pay 1369 \N +6345 2025-11-03 14:38:46.485295+00 2025-11-03 14:38:46.485304+00 f t vet_accepted 1366 \N +6346 2025-11-03 14:38:46.49805+00 2025-11-03 14:38:46.498064+00 f t in_progress_pay 1366 \N +6347 2025-11-03 14:38:47.645294+00 2025-11-03 14:38:47.645302+00 f t vet_accepted 1366 \N +6348 2025-11-03 14:38:47.656855+00 2025-11-03 14:38:47.656866+00 f t in_progress_pay 1366 \N +6349 2025-11-03 14:43:39.623572+00 2025-11-03 14:43:39.623581+00 f t vet_accepted 1368 \N +6350 2025-11-03 14:43:39.635366+00 2025-11-03 14:43:39.635375+00 f t in_progress_pay 1368 \N +6351 2025-11-03 15:04:02.011404+00 2025-11-03 15:04:02.011418+00 f t Confirmado 1368 \N +6352 2025-11-03 15:04:01.954439+00 2025-11-03 15:04:01.95445+00 f t payed 1368 1583 +6353 2025-11-03 15:13:23.665795+00 2025-11-03 15:13:23.665805+00 f t pending 1372 \N +6354 2025-11-03 15:13:37.136703+00 2025-11-03 15:13:37.136711+00 f t in_progress_vet 1372 1583 +6355 2025-11-03 15:13:41.193362+00 2025-11-03 15:13:41.19337+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 18:30:00 1372 1583 +6356 2025-11-03 15:17:37.117809+00 2025-11-03 15:17:37.117818+00 f t vet_accepted 1372 \N +6357 2025-11-03 15:17:37.136427+00 2025-11-03 15:17:37.136438+00 f t in_progress_pay 1372 \N +6358 2025-11-03 15:37:22.252192+00 2025-11-03 15:37:22.252201+00 f t vet_asked Veterinario asignado: Dubowik Katerina 1372 1583 +6359 2025-11-03 15:37:22.9288+00 2025-11-03 15:37:22.928808+00 f t vet_accepted 1372 1583 +6360 2025-11-03 15:37:22.942121+00 2025-11-03 15:37:22.94213+00 f t in_progress_pay 1372 1583 +6361 2025-11-03 15:37:36.760036+00 2025-11-03 15:37:36.760049+00 f t Confirmado 1372 \N +6362 2025-11-03 15:37:36.715803+00 2025-11-03 15:37:36.715815+00 f t payed 1372 1583 +6363 2025-11-03 15:41:12.893145+00 2025-11-03 15:41:12.893157+00 f t Confirmado 1369 \N +6364 2025-11-03 15:41:12.859567+00 2025-11-03 15:41:12.859577+00 f t payed 1369 1583 +6365 2025-11-03 15:59:39.596905+00 2025-11-03 15:59:39.596915+00 f t rejected D-Abandono Bot 1353 1583 +6366 2025-11-03 16:46:30.320546+00 2025-11-03 16:46:30.320554+00 f t pending 1373 \N +6367 2025-11-03 16:46:44.004015+00 2025-11-03 16:46:44.004025+00 f t in_progress_vet 1373 114 +6368 2025-11-03 16:47:00.054975+00 2025-11-03 16:47:00.054986+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 18:00:00 1373 114 +6369 2025-11-03 17:29:07.819446+00 2025-11-03 17:29:07.819456+00 f t vet_accepted 1373 \N +6370 2025-11-03 17:29:07.832672+00 2025-11-03 17:29:07.832682+00 f t in_progress_pay 1373 \N +6371 2025-11-03 17:50:44.874785+00 2025-11-03 17:50:44.874793+00 f t pending 1374 \N +6372 2025-11-03 17:51:11.265192+00 2025-11-03 17:51:11.265201+00 f t in_progress_vet 1374 114 +6373 2025-11-03 17:51:52.615761+00 2025-11-03 17:51:52.615771+00 f t pending 1375 \N +6374 2025-11-03 17:52:54.302249+00 2025-11-03 17:52:54.302256+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 18:00:00 1374 114 +6375 2025-11-03 17:53:55.846361+00 2025-11-03 17:53:55.84637+00 f t vet_accepted 1374 \N +6376 2025-11-03 17:53:55.859906+00 2025-11-03 17:53:55.859915+00 f t in_progress_pay 1374 \N +6377 2025-11-03 17:53:57.081064+00 2025-11-03 17:53:57.081074+00 f t rejected Solicitud rechazada por Usuario no especificado 1374 \N +6378 2025-11-03 17:53:57.089112+00 2025-11-03 17:53:57.08912+00 f t in_progress_vet 1374 \N +6379 2025-11-03 17:59:02.70511+00 2025-11-03 17:59:02.705124+00 f t in_progress_vet 1375 114 +6380 2025-11-03 18:07:35.748573+00 2025-11-03 18:07:35.748582+00 f t pending 1376 \N +6381 2025-11-03 18:08:14.660183+00 2025-11-03 18:08:14.660194+00 f t in_progress_vet 1376 1583 +6382 2025-11-03 18:08:28.142445+00 2025-11-03 18:08:28.142453+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 18:00:00 1376 1583 +6383 2025-11-03 18:15:34.727366+00 2025-11-03 18:15:34.727379+00 f t vet_accepted 1376 \N +6384 2025-11-03 18:15:34.745421+00 2025-11-03 18:15:34.745436+00 f t in_progress_pay 1376 \N +6385 2025-11-03 18:16:25.02216+00 2025-11-03 18:16:25.022172+00 f t pending 1377 \N +6386 2025-11-03 18:16:46.358116+00 2025-11-03 18:16:46.358126+00 f t in_progress_vet 1377 1583 +6387 2025-11-03 18:17:32.432525+00 2025-11-03 18:17:32.432535+00 f t rejected D-Averiguando / Desconocido 1373 114 +6388 2025-11-03 18:22:25.262209+00 2025-11-03 18:22:25.262219+00 f t pending 1378 \N +6389 2025-11-03 18:32:53.301717+00 2025-11-03 18:32:53.301729+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 20:30:00 1378 1583 +6390 2025-11-03 18:33:01.175284+00 2025-11-03 18:33:01.175296+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1378 1583 +6391 2025-11-03 18:33:01.89112+00 2025-11-03 18:33:01.89115+00 f t vet_accepted 1378 1583 +6392 2025-11-03 18:33:01.91435+00 2025-11-03 18:33:01.91436+00 f t in_progress_pay 1378 1583 +6393 2025-11-03 18:36:13.161843+00 2025-11-03 18:36:13.161854+00 f t payed 1377 1583 +6394 2025-11-03 18:37:16.00062+00 2025-11-03 18:37:16.000628+00 f t Confirmado 1377 \N +6395 2025-11-03 18:37:17.59667+00 2025-11-03 18:37:17.596681+00 f t vet_asked Veterinario asignado: di Risio Daniela 1377 1583 +6396 2025-11-03 18:37:18.344611+00 2025-11-03 18:37:18.344618+00 f t vet_accepted 1377 1583 +6397 2025-11-03 18:40:43.1344+00 2025-11-03 18:40:43.134411+00 f t pending 1379 \N +6398 2025-11-03 18:41:26.580334+00 2025-11-03 18:41:26.580343+00 f t vet_accepted 1373 \N +6399 2025-11-03 18:41:26.593976+00 2025-11-03 18:41:26.593986+00 f t in_progress_pay 1373 \N +6400 2025-11-03 18:42:17.074082+00 2025-11-03 18:42:17.07409+00 f t Confirmado 1376 \N +6401 2025-11-03 18:42:17.045621+00 2025-11-03 18:42:17.045629+00 f t payed 1376 1583 +6402 2025-11-03 18:46:37.782058+00 2025-11-03 18:46:37.782071+00 f t in_progress_vet 1379 114 +6403 2025-11-03 18:47:21.490511+00 2025-11-03 18:47:21.490519+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 17:30:00 1379 114 +6404 2025-11-03 18:47:21.933687+00 2025-11-03 18:47:21.9337+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 15:00:00 1379 1583 +6405 2025-11-03 18:49:10.301865+00 2025-11-03 18:49:10.301874+00 f t Confirmado 1378 \N +6406 2025-11-03 18:49:10.265429+00 2025-11-03 18:49:10.265441+00 f t payed 1378 1583 +6407 2025-11-03 18:56:03.558955+00 2025-11-03 18:56:03.558967+00 f t rejected D-Provincia 1375 114 +6408 2025-11-03 18:56:29.617047+00 2025-11-03 18:56:29.617056+00 f t rejected D-Averiguando / Desconocido 1373 114 +6409 2025-11-03 19:02:00.547721+00 2025-11-03 19:02:00.54773+00 f t pending 1380 \N +6410 2025-11-03 19:02:04.831863+00 2025-11-03 19:02:04.831873+00 f t pending 1381 \N +6411 2025-11-03 19:03:47.167175+00 2025-11-03 19:03:47.167183+00 f t in_progress_vet 1381 114 +6412 2025-11-03 19:03:53.926943+00 2025-11-03 19:03:53.92695+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 18:30:00 1381 114 +6413 2025-11-03 19:07:30.678717+00 2025-11-03 19:07:30.678727+00 f t payed 1381 114 +6414 2025-11-03 19:22:12.206977+00 2025-11-03 19:22:12.206986+00 f t coordinated Solicitud coordinada para 2025-10-04 a las 15:00:00 1330 114 +6415 2025-11-03 19:30:17.329351+00 2025-11-03 19:30:17.329359+00 f t pending 1382 \N +6416 2025-11-03 19:51:32.971489+00 2025-11-03 19:51:32.971498+00 f t in_progress_vet 1382 114 +6417 2025-11-03 20:01:15.719166+00 2025-11-03 20:01:15.719175+00 f t pending 1383 \N +6418 2025-11-03 20:01:50.010329+00 2025-11-03 20:01:50.010338+00 f t in_progress_vet 1383 1583 +6419 2025-11-03 20:01:54.605054+00 2025-11-03 20:01:54.605062+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 10:00:00 1383 1583 +6420 2025-11-03 20:02:01.138947+00 2025-11-03 20:02:01.138958+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1383 1583 +6421 2025-11-03 20:02:01.948922+00 2025-11-03 20:02:01.948935+00 f t vet_accepted 1383 1583 +6422 2025-11-03 20:02:01.973536+00 2025-11-03 20:02:01.97355+00 f t in_progress_pay 1383 1583 +6423 2025-11-03 23:06:40.830176+00 2025-11-03 23:06:40.830188+00 f t Confirmado 1366 \N +6424 2025-11-03 23:06:40.78321+00 2025-11-03 23:06:40.783222+00 f t payed 1366 114 +6425 2025-11-03 23:10:54.569704+00 2025-11-03 23:10:54.569713+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 18:00:00 1382 114 +6426 2025-11-03 23:12:11.102471+00 2025-11-03 23:12:11.102483+00 f t payed 1382 114 +6427 2025-11-03 23:12:53.136193+00 2025-11-03 23:12:53.136203+00 f t Confirmado 1382 \N +6428 2025-11-03 23:12:54.818956+00 2025-11-03 23:12:54.818966+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1382 114 +6429 2025-11-03 23:12:56.217475+00 2025-11-03 23:12:56.217485+00 f t vet_accepted 1382 114 +6430 2025-11-03 23:15:14.579718+00 2025-11-03 23:15:14.579728+00 f t Confirmado 1381 \N +6431 2025-11-03 23:15:17.123922+00 2025-11-03 23:15:17.123932+00 f t vet_asked Veterinario asignado: Vecino Carolina 1381 114 +6432 2025-11-03 23:15:18.324887+00 2025-11-03 23:15:18.324896+00 f t vet_accepted 1381 114 +6433 2025-11-03 23:15:58.857009+00 2025-11-03 23:15:58.857022+00 f t vet_asked Veterinario asignado: Laura Gorostegui Maria 1374 114 +6434 2025-11-03 23:16:00.093149+00 2025-11-03 23:16:00.093159+00 f t vet_accepted 1374 114 +6435 2025-11-03 23:16:00.107055+00 2025-11-03 23:16:00.107068+00 f t in_progress_pay 1374 114 +6436 2025-11-03 23:16:35.537782+00 2025-11-03 23:16:35.537792+00 f t Confirmado 1374 \N +6437 2025-11-03 23:16:35.509273+00 2025-11-03 23:16:35.509285+00 f t payed 1374 114 +6438 2025-11-03 23:56:59.813365+00 2025-11-03 23:56:59.813374+00 f t pending 1384 \N +6439 2025-11-03 23:57:37.954772+00 2025-11-03 23:57:37.954781+00 f t in_progress_vet 1384 114 +6440 2025-11-03 23:58:04.844514+00 2025-11-03 23:58:04.844528+00 f t vet_asked Veterinario asignado: Inseparables Crematorio 1384 114 +6441 2025-11-03 23:58:06.045433+00 2025-11-03 23:58:06.045442+00 f t vet_accepted 1384 114 +6442 2025-11-03 23:58:06.064235+00 2025-11-03 23:58:06.064244+00 f t in_progress_pay 1384 114 +6443 2025-11-03 23:58:11.952989+00 2025-11-03 23:58:11.952998+00 f t coordinated Solicitud coordinada para 2025-11-03 a las 20:00:00 1384 114 +6444 2025-11-03 23:59:08.736862+00 2025-11-03 23:59:08.736869+00 f t Confirmado 1384 \N +6445 2025-11-03 23:59:08.707956+00 2025-11-03 23:59:08.707966+00 f t payed 1384 114 +6446 2025-11-04 00:13:03.285405+00 2025-11-04 00:13:03.285416+00 f t Confirmado 1383 \N +6447 2025-11-04 00:13:03.256745+00 2025-11-04 00:13:03.256754+00 f t payed 1383 114 +6448 2025-11-04 01:08:42.359198+00 2025-11-04 01:08:42.359206+00 f t pending 1385 \N +6449 2025-11-04 03:15:48.288247+00 2025-11-04 03:15:48.288257+00 f t pending 1386 \N +6450 2025-11-04 12:09:14.267446+00 2025-11-04 12:09:14.267457+00 f t in_progress_vet 1385 1208 +6451 2025-11-04 12:09:23.120319+00 2025-11-04 12:09:23.120329+00 f t in_progress_vet 1386 1208 +6452 2025-11-04 12:18:11.692813+00 2025-11-04 12:18:11.692821+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 11:00:00 1386 1208 +6453 2025-11-04 13:13:45.892129+00 2025-11-04 13:13:45.892143+00 f t pending 1387 \N +6454 2025-11-04 13:14:15.151232+00 2025-11-04 13:14:15.151243+00 f t in_progress_vet 1387 1208 +6455 2025-11-04 13:47:01.852372+00 2025-11-04 13:47:01.852381+00 f t pending 1388 \N +6456 2025-11-04 13:47:24.772055+00 2025-11-04 13:47:24.772063+00 f t in_progress_vet 1388 1208 +6457 2025-11-04 14:08:21.989748+00 2025-11-04 14:08:21.989756+00 f t pending 1389 \N +6458 2025-11-04 14:09:41.268652+00 2025-11-04 14:09:41.268661+00 f t in_progress_vet 1389 1208 +6459 2025-11-04 14:18:51.366061+00 2025-11-04 14:18:51.366069+00 f t rejected D-Averiguando / Desconocido 1389 1208 +6460 2025-11-04 14:19:08.001391+00 2025-11-04 14:19:08.001403+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1386 1208 +6461 2025-11-04 14:31:07.337511+00 2025-11-04 14:31:07.33752+00 f t rejected D-Sin Turno 1379 1583 +6462 2025-11-04 14:34:26.727847+00 2025-11-04 14:34:26.727856+00 f t pending 1390 \N +6463 2025-11-04 14:34:49.544916+00 2025-11-04 14:34:49.544926+00 f t in_progress_vet 1390 1208 +6464 2025-11-04 14:36:17.519966+00 2025-11-04 14:36:17.519974+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 19:30:00 1390 1208 +6465 2025-11-04 14:40:05.984179+00 2025-11-04 14:40:05.98419+00 f t vet_accepted 1390 \N +6466 2025-11-04 14:40:06.009896+00 2025-11-04 14:40:06.009924+00 f t in_progress_pay 1390 \N +6467 2025-11-04 14:48:03.809432+00 2025-11-04 14:48:03.809444+00 f t pending 1391 \N +6468 2025-11-04 14:49:08.68923+00 2025-11-04 14:49:08.689243+00 f t in_progress_vet 1391 1208 +6469 2025-11-04 15:00:35.8248+00 2025-11-04 15:00:35.824811+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 18:00:00 1391 1208 +6470 2025-11-04 15:05:00.122876+00 2025-11-04 15:05:00.122884+00 f t coordinated Solicitud coordinada para 2025-11-29 a las 14:00:00 1387 1208 +6471 2025-11-04 15:05:11.466587+00 2025-11-04 15:05:11.466597+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1387 1208 +6472 2025-11-04 15:31:30.919351+00 2025-11-04 15:31:30.919361+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1391 1208 +6473 2025-11-04 15:33:24.379213+00 2025-11-04 15:33:24.379225+00 f t pending 1392 \N +6474 2025-11-04 15:33:53.421345+00 2025-11-04 15:33:53.421356+00 f t in_progress_vet 1392 1208 +6475 2025-11-04 15:34:00.057965+00 2025-11-04 15:34:00.057975+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 13:00:00 1392 1208 +6476 2025-11-04 15:34:10.920607+00 2025-11-04 15:34:10.920619+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1392 1208 +6477 2025-11-04 15:34:32.025029+00 2025-11-04 15:34:32.025038+00 f t pending 1393 \N +6478 2025-11-04 15:34:32.329443+00 2025-11-04 15:34:32.329451+00 f t pending 1394 \N +6479 2025-11-04 15:34:47.411785+00 2025-11-04 15:34:47.411793+00 f t Confirmado 1392 \N +6480 2025-11-04 15:34:47.38171+00 2025-11-04 15:34:47.381719+00 f t payed 1392 1208 +6481 2025-11-04 15:34:50.700264+00 2025-11-04 15:34:50.700274+00 f t in_progress_vet 1394 1583 +6482 2025-11-04 15:35:01.351319+00 2025-11-04 15:35:01.351331+00 f t in_progress_vet 1393 1583 +6483 2025-11-04 15:39:58.612827+00 2025-11-04 15:39:58.612836+00 f t Confirmado 1387 \N +6484 2025-11-04 15:39:58.576378+00 2025-11-04 15:39:58.576387+00 f t payed 1387 1208 +6485 2025-11-04 15:43:01.614572+00 2025-11-04 15:43:01.61459+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 17:00:00 1394 1583 +6486 2025-11-04 15:44:48.123558+00 2025-11-04 15:44:48.123569+00 f t vet_accepted 1394 \N +6487 2025-11-04 15:44:48.13622+00 2025-11-04 15:44:48.13623+00 f t in_progress_pay 1394 \N +6488 2025-11-04 15:47:07.838765+00 2025-11-04 15:47:07.838774+00 f t rejected D-Abandono Bot 1385 1208 +6489 2025-11-04 15:50:04.784386+00 2025-11-04 15:50:04.784398+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 14:00:00 1391 1208 +6490 2025-11-04 15:50:22.193098+00 2025-11-04 15:50:22.193108+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1391 1208 +6491 2025-11-04 15:50:36.922736+00 2025-11-04 15:50:36.922745+00 f t Confirmado 1391 \N +6492 2025-11-04 15:50:36.892721+00 2025-11-04 15:50:36.892733+00 f t payed 1391 1208 +6493 2025-11-04 15:59:06.083995+00 2025-11-04 15:59:06.084005+00 f t rejected D-Sin Turno 1393 1583 +6494 2025-11-04 16:10:36.929629+00 2025-11-04 16:10:36.929638+00 f t rejected D-Averiguando / Desconocido 1390 1208 +6495 2025-11-04 16:17:44.478004+00 2025-11-04 16:17:44.478015+00 f t pending 1395 \N +6496 2025-11-04 16:19:06.150949+00 2025-11-04 16:19:06.150963+00 f t in_progress_vet 1395 1583 +6497 2025-11-04 16:19:17.07156+00 2025-11-04 16:19:17.071569+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 14:00:00 1395 1583 +6498 2025-11-04 16:32:50.912526+00 2025-11-04 16:32:50.912538+00 f t pending 1396 \N +6499 2025-11-04 16:33:43.481549+00 2025-11-04 16:33:43.481558+00 f t in_progress_vet 1396 1583 +6500 2025-11-04 16:33:49.738426+00 2025-11-04 16:33:49.738435+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 10:00:00 1396 1583 +6501 2025-11-04 16:35:16.569338+00 2025-11-04 16:35:16.569348+00 f t vet_accepted 1396 \N +6502 2025-11-04 16:35:16.582343+00 2025-11-04 16:35:16.582352+00 f t in_progress_pay 1396 \N +6503 2025-11-04 16:48:46.190282+00 2025-11-04 16:48:46.190292+00 f t vet_asked Veterinario asignado: Palladino Martín 1395 1583 +6504 2025-11-04 16:48:48.64666+00 2025-11-04 16:48:48.646714+00 f t vet_accepted 1395 1583 +6505 2025-11-04 16:48:48.660677+00 2025-11-04 16:48:48.660689+00 f t in_progress_pay 1395 1583 +6506 2025-11-04 17:03:31.211527+00 2025-11-04 17:03:31.211536+00 f t Confirmado 1396 \N +6507 2025-11-04 17:03:31.178443+00 2025-11-04 17:03:31.178452+00 f t payed 1396 1583 +6508 2025-11-04 17:04:51.888107+00 2025-11-04 17:04:51.88812+00 f t pending 1397 \N +6509 2025-11-04 17:05:11.27492+00 2025-11-04 17:05:11.274932+00 f t in_progress_vet 1397 1583 +6510 2025-11-04 17:05:16.7842+00 2025-11-04 17:05:16.784208+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 11:00:00 1397 1583 +6511 2025-11-04 17:05:23.98323+00 2025-11-04 17:05:23.983239+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1397 1583 +6512 2025-11-04 17:05:24.594372+00 2025-11-04 17:05:24.594384+00 f t vet_accepted 1397 1583 +6513 2025-11-04 17:05:24.609199+00 2025-11-04 17:05:24.609208+00 f t in_progress_pay 1397 1583 +6514 2025-11-04 17:05:33.831298+00 2025-11-04 17:05:33.831306+00 f t Confirmado 1397 \N +6515 2025-11-04 17:05:33.802926+00 2025-11-04 17:05:33.802937+00 f t payed 1397 1583 +6516 2025-11-04 17:09:12.751647+00 2025-11-04 17:09:12.751656+00 f t pending 1398 \N +6517 2025-11-04 17:10:02.161637+00 2025-11-04 17:10:02.161653+00 f t in_progress_vet 1398 1208 +6518 2025-11-04 17:10:13.853617+00 2025-11-04 17:10:13.853625+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 11:00:00 1398 1208 +6519 2025-11-04 17:10:59.355335+00 2025-11-04 17:10:59.355348+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 18:30:00 1395 1583 +6520 2025-11-04 17:13:41.989991+00 2025-11-04 17:13:41.989999+00 f t Confirmado 1395 \N +6521 2025-11-04 17:13:41.957668+00 2025-11-04 17:13:41.957678+00 f t payed 1395 1583 +6522 2025-11-04 17:25:17.618329+00 2025-11-04 17:25:17.618338+00 f t rejected D-Averiguando / Desconocido 1388 1208 +6523 2025-11-04 17:29:00.605393+00 2025-11-04 17:29:00.605402+00 f t pending 1399 \N +6524 2025-11-04 17:29:37.881286+00 2025-11-04 17:29:37.881296+00 f t in_progress_vet 1399 1583 +6525 2025-11-04 17:29:45.126466+00 2025-11-04 17:29:45.126478+00 f t vet_asked Veterinario asignado: Burgess Clínica 1399 1583 +6526 2025-11-04 17:29:45.729046+00 2025-11-04 17:29:45.729056+00 f t vet_accepted 1399 1583 +6527 2025-11-04 17:29:45.740974+00 2025-11-04 17:29:45.740983+00 f t in_progress_pay 1399 1583 +6528 2025-11-04 17:29:59.67122+00 2025-11-04 17:29:59.671229+00 f t Confirmado 1399 \N +6529 2025-11-04 17:29:59.642466+00 2025-11-04 17:29:59.642476+00 f t payed 1399 1583 +6530 2025-11-04 17:30:17.086127+00 2025-11-04 17:30:17.086139+00 f t pending 1400 \N +6531 2025-11-04 17:30:28.865099+00 2025-11-04 17:30:28.865111+00 f t in_progress_vet 1400 1583 +6532 2025-11-04 17:30:34.581201+00 2025-11-04 17:30:34.581213+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 11:00:00 1400 1583 +6533 2025-11-04 17:30:39.16801+00 2025-11-04 17:30:39.16802+00 f t vet_asked Veterinario asignado: Burgess Clínica 1400 1583 +6534 2025-11-04 17:30:39.744764+00 2025-11-04 17:30:39.744778+00 f t vet_accepted 1400 1583 +6535 2025-11-04 17:30:39.757919+00 2025-11-04 17:30:39.757929+00 f t in_progress_pay 1400 1583 +6536 2025-11-04 17:30:50.867741+00 2025-11-04 17:30:50.867751+00 f t Confirmado 1400 \N +6537 2025-11-04 17:30:50.833604+00 2025-11-04 17:30:50.833613+00 f t payed 1400 1583 +6538 2025-11-04 18:26:24.182362+00 2025-11-04 18:26:24.182375+00 f t pending 1401 \N +6539 2025-11-04 18:26:37.905559+00 2025-11-04 18:26:37.905569+00 f t in_progress_vet 1401 1583 +6540 2025-11-04 18:26:52.292759+00 2025-11-04 18:26:52.292767+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 16:00:00 1401 1583 +6541 2025-11-04 18:40:36.382287+00 2025-11-04 18:40:36.382299+00 f t payed 1401 1583 +6542 2025-11-04 18:42:31.17962+00 2025-11-04 18:42:31.179629+00 f t Confirmado 1401 \N +6543 2025-11-04 18:42:32.809429+00 2025-11-04 18:42:32.809439+00 f t vet_asked Veterinario asignado: di Risio Daniela 1401 1583 +6544 2025-11-04 18:42:33.533133+00 2025-11-04 18:42:33.533142+00 f t vet_accepted 1401 1583 +6545 2025-11-04 18:58:55.802685+00 2025-11-04 18:58:55.802694+00 f t pending 1402 \N +6546 2025-11-04 18:59:34.681438+00 2025-11-04 18:59:34.681447+00 f t in_progress_vet 1402 1583 +6547 2025-11-04 18:59:44.13805+00 2025-11-04 18:59:44.138058+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 10:00:00 1402 1583 +6548 2025-11-04 19:01:32.028045+00 2025-11-04 19:01:32.028054+00 f t vet_accepted 1402 142 +6549 2025-11-04 19:01:32.040011+00 2025-11-04 19:01:32.040021+00 f t in_progress_pay 1402 142 +6550 2025-11-04 19:12:03.883439+00 2025-11-04 19:12:03.883447+00 f t Confirmado 1402 \N +6551 2025-11-04 19:12:03.852113+00 2025-11-04 19:12:03.852123+00 f t payed 1402 1583 +6552 2025-11-04 19:20:17.918272+00 2025-11-04 19:20:17.918283+00 f t pending 1403 \N +6553 2025-11-04 19:21:21.8885+00 2025-11-04 19:21:21.888512+00 f t in_progress_vet 1403 1208 +6554 2025-11-04 19:21:29.734861+00 2025-11-04 19:21:29.734869+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 18:00:00 1403 1208 +6555 2025-11-04 19:22:05.361308+00 2025-11-04 19:22:05.36132+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1403 1208 +6556 2025-11-04 19:25:27.082886+00 2025-11-04 19:25:27.082894+00 f t Confirmado 1403 \N +6557 2025-11-04 19:25:27.052774+00 2025-11-04 19:25:27.052786+00 f t payed 1403 1208 +6558 2025-11-04 19:42:38.819832+00 2025-11-04 19:42:38.819842+00 f t pending 1404 \N +6559 2025-11-04 19:42:50.727027+00 2025-11-04 19:42:50.727037+00 f t in_progress_vet 1404 1583 +6560 2025-11-04 19:42:55.126077+00 2025-11-04 19:42:55.126085+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 10:00:00 1404 1583 +6561 2025-11-04 19:47:45.972327+00 2025-11-04 19:47:45.972337+00 f t pending 1405 \N +6562 2025-11-04 19:48:07.437716+00 2025-11-04 19:48:07.437729+00 f t in_progress_vet 1405 1583 +6563 2025-11-04 19:48:16.469546+00 2025-11-04 19:48:16.469553+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 20:00:00 1405 1583 +6564 2025-11-04 19:49:11.854238+00 2025-11-04 19:49:11.854247+00 f t vet_accepted 1405 \N +6565 2025-11-04 19:49:11.867779+00 2025-11-04 19:49:11.867789+00 f t in_progress_pay 1405 \N +6566 2025-11-04 19:49:11.955109+00 2025-11-04 19:49:11.955117+00 f t vet_accepted 1394 \N +6567 2025-11-04 19:49:11.969717+00 2025-11-04 19:49:11.969726+00 f t in_progress_pay 1394 \N +6568 2025-11-04 19:55:59.295417+00 2025-11-04 19:55:59.295425+00 f t pending 1406 \N +6569 2025-11-04 19:56:24.317031+00 2025-11-04 19:56:24.317043+00 f t in_progress_vet 1406 1583 +6570 2025-11-04 19:56:28.398431+00 2025-11-04 19:56:28.398438+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 11:00:00 1406 1583 +6571 2025-11-04 19:56:54.602484+00 2025-11-04 19:56:54.602494+00 f t vet_accepted 1406 \N +6572 2025-11-04 19:56:54.614463+00 2025-11-04 19:56:54.614471+00 f t in_progress_pay 1406 \N +6573 2025-11-04 19:56:56.1181+00 2025-11-04 19:56:56.118108+00 f t rejected Solicitud rechazada por Usuario no especificado 1406 \N +6574 2025-11-04 19:56:56.127093+00 2025-11-04 19:56:56.127101+00 f t in_progress_vet 1406 \N +6575 2025-11-04 19:58:42.660076+00 2025-11-04 19:58:42.660084+00 f t vet_accepted 1406 \N +6576 2025-11-04 19:58:42.671279+00 2025-11-04 19:58:42.671289+00 f t in_progress_pay 1406 \N +6577 2025-11-04 20:06:14.829272+00 2025-11-04 20:06:14.82928+00 f t rejected D-Abandono Bot 1394 1583 +6578 2025-11-04 20:25:48.913044+00 2025-11-04 20:25:48.913053+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1406 1583 +6579 2025-11-04 20:25:49.541901+00 2025-11-04 20:25:49.54191+00 f t vet_accepted 1406 1583 +6580 2025-11-04 20:25:49.553425+00 2025-11-04 20:25:49.553433+00 f t in_progress_pay 1406 1583 +6581 2025-11-04 20:26:29.372565+00 2025-11-04 20:26:29.372573+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 18:00:00 1406 1583 +6582 2025-11-04 20:32:10.612588+00 2025-11-04 20:32:10.612598+00 f t Confirmado 1406 \N +6583 2025-11-04 20:32:10.578904+00 2025-11-04 20:32:10.578912+00 f t payed 1406 1583 +6584 2025-11-04 20:34:08.297996+00 2025-11-04 20:34:08.298007+00 f t pending 1407 \N +6585 2025-11-04 20:37:23.00914+00 2025-11-04 20:37:23.009148+00 f t pending 1408 \N +6586 2025-11-04 20:46:02.351056+00 2025-11-04 20:46:02.351066+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 19:00:00 1405 1583 +6587 2025-11-04 20:50:28.224237+00 2025-11-04 20:50:28.224245+00 f t Confirmado 1405 \N +6588 2025-11-04 20:50:28.189077+00 2025-11-04 20:50:28.189086+00 f t payed 1405 1583 +6589 2025-11-04 20:53:00.567218+00 2025-11-04 20:53:00.567227+00 f t vet_accepted 1404 \N +6590 2025-11-04 20:53:00.578942+00 2025-11-04 20:53:00.578952+00 f t in_progress_pay 1404 \N +6591 2025-11-04 20:53:27.568478+00 2025-11-04 20:53:27.568491+00 f t in_progress_vet 1408 1583 +6592 2025-11-04 20:54:15.93893+00 2025-11-04 20:54:15.938939+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 16:00:00 1408 1583 +6593 2025-11-04 20:58:08.87229+00 2025-11-04 20:58:08.872304+00 f t vet_accepted 1408 \N +6594 2025-11-04 20:58:08.890059+00 2025-11-04 20:58:08.890068+00 f t in_progress_pay 1408 \N +6595 2025-11-04 20:58:19.331608+00 2025-11-04 20:58:19.331617+00 f t vet_accepted 1404 \N +6596 2025-11-04 20:58:19.34401+00 2025-11-04 20:58:19.34402+00 f t in_progress_pay 1404 \N +6597 2025-11-04 20:59:53.025827+00 2025-11-04 20:59:53.025836+00 f t vet_accepted 1406 \N +6598 2025-11-04 21:13:32.344528+00 2025-11-04 21:13:32.344536+00 f t Confirmado 1408 \N +6599 2025-11-04 21:13:32.301251+00 2025-11-04 21:13:32.301512+00 f t payed 1408 1583 +6600 2025-11-04 21:53:08.831402+00 2025-11-04 21:53:08.831411+00 f t Confirmado 1404 \N +6601 2025-11-04 21:53:08.800956+00 2025-11-04 21:53:08.800968+00 f t payed 1404 1583 +6602 2025-11-04 22:48:23.258081+00 2025-11-04 22:48:23.258097+00 f t pending 1409 \N +6603 2025-11-04 22:49:05.121565+00 2025-11-04 22:49:05.121574+00 f t in_progress_vet 1409 113 +6604 2025-11-04 22:49:19.605412+00 2025-11-04 22:49:19.605421+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 18:30:00 1409 113 +6605 2025-11-04 22:49:49.109861+00 2025-11-04 22:49:49.109869+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1409 113 +6606 2025-11-04 23:36:50.043568+00 2025-11-04 23:36:50.043577+00 f t pending 1410 \N +6607 2025-11-04 23:39:33.635461+00 2025-11-04 23:39:33.635469+00 f t in_progress_vet 1410 113 +6608 2025-11-04 23:39:42.03437+00 2025-11-04 23:39:42.034382+00 f t coordinated Solicitud coordinada para 2025-11-04 a las 21:00:00 1410 113 +6609 2025-11-05 06:02:55.252377+00 2025-11-05 06:02:55.25239+00 f t vet_accepted 1174 \N +6610 2025-11-05 10:19:05.193087+00 2025-11-05 10:19:05.193097+00 f t vet_accepted 1324 \N +6611 2025-11-05 10:19:05.206949+00 2025-11-05 10:19:05.206958+00 f t in_progress_pay 1324 \N +6612 2025-11-05 10:44:14.860323+00 2025-11-05 10:44:14.860332+00 f t vet_accepted 1398 126 +6613 2025-11-05 10:44:14.873268+00 2025-11-05 10:44:14.873278+00 f t in_progress_pay 1398 126 +6614 2025-11-05 12:10:40.782052+00 2025-11-05 12:10:40.782063+00 f t pending 1411 \N +6615 2025-11-05 12:42:49.68279+00 2025-11-05 12:42:49.682799+00 f t in_progress_vet 1411 1208 +6616 2025-11-05 13:09:32.928241+00 2025-11-05 13:09:32.928252+00 f t pending 1412 \N +6617 2025-11-05 13:09:52.937085+00 2025-11-05 13:09:52.937095+00 f t in_progress_vet 1412 1208 +6618 2025-11-05 13:10:01.85941+00 2025-11-05 13:10:01.859423+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 13:30:00 1412 1208 +6619 2025-11-05 13:10:18.726322+00 2025-11-05 13:10:18.726331+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1412 1208 +6620 2025-11-05 13:22:17.711457+00 2025-11-05 13:22:17.711466+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 12:00:00 1398 1208 +6621 2025-11-05 13:22:27.603028+00 2025-11-05 13:22:27.603041+00 f t Confirmado 1398 \N +6622 2025-11-05 13:22:27.568236+00 2025-11-05 13:22:27.568246+00 f t payed 1398 1208 +6623 2025-11-05 13:22:41.341011+00 2025-11-05 13:22:41.341022+00 f t Confirmado 1412 \N +6624 2025-11-05 13:22:41.304832+00 2025-11-05 13:22:41.304844+00 f t payed 1412 1208 +6625 2025-11-05 13:22:52.258233+00 2025-11-05 13:22:52.258242+00 f t pending 1413 \N +6626 2025-11-05 13:27:20.312408+00 2025-11-05 13:27:20.312418+00 f t in_progress_vet 1413 1208 +6627 2025-11-05 13:39:45.467701+00 2025-11-05 13:39:45.467709+00 f t rejected D-Emergencia 1413 1208 +6628 2025-11-05 14:13:30.221104+00 2025-11-05 14:13:30.221112+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 17:00:00 1411 1208 +6629 2025-11-05 14:14:17.180766+00 2025-11-05 14:14:17.180776+00 f t vet_accepted 1411 \N +6630 2025-11-05 14:14:17.194125+00 2025-11-05 14:14:17.194134+00 f t in_progress_pay 1411 \N +6631 2025-11-05 14:23:14.16658+00 2025-11-05 14:23:14.166589+00 f t rejected D-Emergencia 1407 1583 +6632 2025-11-05 14:27:39.673203+00 2025-11-05 14:27:39.673215+00 f t pending 1414 \N +6633 2025-11-05 14:28:03.769868+00 2025-11-05 14:28:03.769876+00 f t in_progress_vet 1414 1208 +6634 2025-11-05 14:36:37.94992+00 2025-11-05 14:36:37.949929+00 f t pending 1415 \N +6635 2025-11-05 14:37:43.749042+00 2025-11-05 14:37:43.749051+00 f t in_progress_vet 1415 1583 +6636 2025-11-05 14:37:52.848379+00 2025-11-05 14:37:52.848391+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 10:00:00 1415 1583 +6637 2025-11-05 14:38:28.275476+00 2025-11-05 14:38:28.275486+00 f t vet_accepted 1415 \N +6638 2025-11-05 14:38:28.29126+00 2025-11-05 14:38:28.29127+00 f t in_progress_pay 1415 \N +6639 2025-11-05 14:38:29.933938+00 2025-11-05 14:38:29.933947+00 f t rejected Solicitud rechazada por Usuario no especificado 1415 \N +6640 2025-11-05 14:38:29.942271+00 2025-11-05 14:38:29.942279+00 f t in_progress_vet 1415 \N +6641 2025-11-05 14:40:09.668889+00 2025-11-05 14:40:09.668898+00 f t vet_accepted 1415 \N +6642 2025-11-05 14:40:09.682289+00 2025-11-05 14:40:09.682297+00 f t in_progress_pay 1415 \N +6643 2025-11-05 15:05:14.479585+00 2025-11-05 15:05:14.4796+00 f t pending 1416 \N +6644 2025-11-05 15:06:28.762875+00 2025-11-05 15:06:28.762888+00 f t in_progress_vet 1416 1208 +6645 2025-11-05 15:10:35.336155+00 2025-11-05 15:10:35.336164+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 14:00:00 1416 1208 +6646 2025-11-05 15:19:50.797804+00 2025-11-05 15:19:50.797817+00 f t vet_accepted 1416 \N +6647 2025-11-05 15:19:50.81346+00 2025-11-05 15:19:50.81347+00 f t in_progress_pay 1416 \N +6648 2025-11-05 15:35:43.784971+00 2025-11-05 15:35:43.784979+00 f t Confirmado 1415 \N +6649 2025-11-05 15:35:43.753531+00 2025-11-05 15:35:43.753544+00 f t payed 1415 1583 +6650 2025-11-05 15:36:32.406394+00 2025-11-05 15:36:32.406403+00 f t vet_accepted 1415 \N +6651 2025-11-05 15:52:24.238405+00 2025-11-05 15:52:24.238419+00 f t pending 1417 \N +6652 2025-11-05 15:54:12.722299+00 2025-11-05 15:54:12.722312+00 f t in_progress_vet 1417 1208 +6732 2025-11-05 20:23:29.439684+00 2025-11-05 20:23:29.439695+00 f t Confirmado 1424 \N +6653 2025-11-05 15:55:14.724423+00 2025-11-05 15:55:14.724432+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 10:30:00 1417 1208 +6654 2025-11-05 15:55:15.125556+00 2025-11-05 15:55:15.125563+00 f t coordinated Solicitud coordinada para 2025-11-05 a las 10:30:00 1417 1208 +6655 2025-11-05 16:14:42.856054+00 2025-11-05 16:14:42.856065+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 12:00:00 1414 1208 +6656 2025-11-05 16:14:48.133749+00 2025-11-05 16:14:48.133758+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1414 1208 +6657 2025-11-05 16:15:01.060704+00 2025-11-05 16:15:01.060716+00 f t Confirmado 1414 \N +6658 2025-11-05 16:15:01.022237+00 2025-11-05 16:15:01.02225+00 f t payed 1414 1208 +6659 2025-11-05 16:28:51.452519+00 2025-11-05 16:28:51.452529+00 f t rejected D-Abandono Bot 1410 1583 +6660 2025-11-05 16:33:26.813413+00 2025-11-05 16:33:26.813425+00 f t rejected D-Averiguando / Desconocido 1409 1208 +6661 2025-11-05 16:33:53.394319+00 2025-11-05 16:33:53.39433+00 f t pending 1418 \N +6662 2025-11-05 16:34:30.321148+00 2025-11-05 16:34:30.321156+00 f t in_progress_vet 1418 1208 +6663 2025-11-05 16:34:42.202306+00 2025-11-05 16:34:42.202314+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 14:00:00 1418 1208 +6664 2025-11-05 16:34:59.897807+00 2025-11-05 16:34:59.897816+00 f t vet_asked Veterinario asignado: Frontini Maria Paz 1418 1208 +6665 2025-11-05 16:36:46.418746+00 2025-11-05 16:36:46.418756+00 f t pending 1419 \N +6666 2025-11-05 16:36:59.635685+00 2025-11-05 16:36:59.635695+00 f t in_progress_vet 1419 1208 +6667 2025-11-05 16:37:08.70629+00 2025-11-05 16:37:08.706301+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 15:30:00 1419 1208 +6668 2025-11-05 16:37:21.812788+00 2025-11-05 16:37:21.812797+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1419 1208 +6669 2025-11-05 16:37:47.584941+00 2025-11-05 16:37:47.584953+00 f t pending 1420 \N +6670 2025-11-05 16:38:56.111729+00 2025-11-05 16:38:56.111738+00 f t in_progress_vet 1420 1208 +6671 2025-11-05 16:39:09.270502+00 2025-11-05 16:39:09.270511+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 14:00:00 1420 1208 +6672 2025-11-05 16:39:38.920958+00 2025-11-05 16:39:38.920967+00 f t vet_asked Veterinario asignado: di Risio Daniela 1420 1208 +6673 2025-11-05 16:39:52.792527+00 2025-11-05 16:39:52.792535+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 13:30:00 1418 1208 +6674 2025-11-05 16:41:42.193073+00 2025-11-05 16:41:42.193083+00 f t Confirmado 1420 \N +6675 2025-11-05 16:41:42.159731+00 2025-11-05 16:41:42.15974+00 f t payed 1420 1208 +6676 2025-11-05 16:42:32.615009+00 2025-11-05 16:42:32.615017+00 f t Confirmado 1419 \N +6677 2025-11-05 16:42:32.586304+00 2025-11-05 16:42:32.586314+00 f t payed 1419 1208 +6678 2025-11-05 16:42:44.330348+00 2025-11-05 16:42:44.330357+00 f t Confirmado 1418 \N +6679 2025-11-05 16:42:44.295001+00 2025-11-05 16:42:44.295009+00 f t payed 1418 1208 +6680 2025-11-05 17:05:10.160853+00 2025-11-05 17:05:10.160861+00 f t Confirmado 1411 \N +6681 2025-11-05 17:05:10.126953+00 2025-11-05 17:05:10.126963+00 f t payed 1411 1208 +6682 2025-11-05 17:43:13.994806+00 2025-11-05 17:43:13.994814+00 f t Confirmado 1416 \N +6683 2025-11-05 17:43:13.961747+00 2025-11-05 17:43:13.961755+00 f t payed 1416 1208 +6684 2025-11-05 18:09:49.591707+00 2025-11-05 18:09:49.591717+00 f t pending 1421 \N +6685 2025-11-05 18:10:07.718495+00 2025-11-05 18:10:07.718508+00 f t in_progress_vet 1421 1208 +6686 2025-11-05 18:10:16.894744+00 2025-11-05 18:10:16.894754+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 13:00:00 1421 1208 +6687 2025-11-05 18:28:46.479291+00 2025-11-05 18:28:46.4793+00 f t vet_accepted 1416 \N +6688 2025-11-05 18:55:24.514074+00 2025-11-05 18:55:24.514086+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 10:00:00 1417 1208 +6689 2025-11-05 18:55:31.636032+00 2025-11-05 18:55:31.636041+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1417 1208 +6690 2025-11-05 18:57:01.003201+00 2025-11-05 18:57:01.00321+00 f t pending 1422 \N +6691 2025-11-05 18:58:32.911945+00 2025-11-05 18:58:32.911957+00 f t in_progress_vet 1422 1208 +6692 2025-11-05 18:58:48.0335+00 2025-11-05 18:58:48.033508+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 11:30:00 1422 1208 +6693 2025-11-05 18:59:03.473604+00 2025-11-05 18:59:03.473614+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1422 1208 +6694 2025-11-05 18:59:19.990819+00 2025-11-05 18:59:19.990827+00 f t pending 1423 \N +6695 2025-11-05 18:59:34.633383+00 2025-11-05 18:59:34.633391+00 f t in_progress_vet 1423 1208 +6696 2025-11-05 18:59:41.310096+00 2025-11-05 18:59:41.310107+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 12:00:00 1423 1208 +6697 2025-11-05 18:59:51.89375+00 2025-11-05 18:59:51.89376+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1423 1208 +6698 2025-11-05 19:01:45.241836+00 2025-11-05 19:01:45.241844+00 f t Confirmado 1417 \N +6699 2025-11-05 19:01:45.204787+00 2025-11-05 19:01:45.204813+00 f t payed 1417 1208 +6700 2025-11-05 19:01:56.737387+00 2025-11-05 19:01:56.7374+00 f t Confirmado 1422 \N +6701 2025-11-05 19:01:56.706155+00 2025-11-05 19:01:56.706165+00 f t payed 1422 1208 +6702 2025-11-05 19:02:08.921446+00 2025-11-05 19:02:08.921454+00 f t Confirmado 1423 \N +6703 2025-11-05 19:02:08.892388+00 2025-11-05 19:02:08.892397+00 f t payed 1423 1208 +6704 2025-11-05 19:42:32.257232+00 2025-11-05 19:42:32.257241+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 12:00:00 1421 1208 +6705 2025-11-05 19:42:46.40759+00 2025-11-05 19:42:46.407601+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1421 1208 +6706 2025-11-05 19:50:31.149747+00 2025-11-05 19:50:31.149756+00 f t pending 1424 \N +6707 2025-11-05 19:51:03.286953+00 2025-11-05 19:51:03.286962+00 f t in_progress_vet 1424 1583 +6708 2025-11-05 19:51:47.021384+00 2025-11-05 19:51:47.021393+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 16:00:00 1424 1583 +6709 2025-11-05 19:52:27.796338+00 2025-11-05 19:52:27.796348+00 f t vet_accepted 1424 \N +6710 2025-11-05 19:52:27.80951+00 2025-11-05 19:52:27.809519+00 f t in_progress_pay 1424 \N +6711 2025-11-05 19:52:30.827807+00 2025-11-05 19:52:30.827818+00 f t rejected Solicitud rechazada por Usuario no especificado 1424 \N +6712 2025-11-05 19:52:30.837146+00 2025-11-05 19:52:30.837154+00 f t in_progress_vet 1424 \N +6713 2025-11-05 19:53:11.221644+00 2025-11-05 19:53:11.221654+00 f t vet_accepted 1424 \N +6714 2025-11-05 19:53:11.234753+00 2025-11-05 19:53:11.234762+00 f t in_progress_pay 1424 \N +6715 2025-11-05 19:53:12.373463+00 2025-11-05 19:53:12.373475+00 f t pending 1425 \N +6716 2025-11-05 19:53:30.640079+00 2025-11-05 19:53:30.640087+00 f t in_progress_vet 1425 1208 +6717 2025-11-05 19:53:39.052933+00 2025-11-05 19:53:39.052942+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 12:00:00 1425 1208 +6718 2025-11-05 19:53:44.152561+00 2025-11-05 19:53:44.15257+00 f t vet_accepted 1415 \N +6719 2025-11-05 19:53:54.434591+00 2025-11-05 19:53:54.434604+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1425 1208 +6720 2025-11-05 19:54:27.010745+00 2025-11-05 19:54:27.010753+00 f t Confirmado 1425 \N +6721 2025-11-05 19:54:26.982161+00 2025-11-05 19:54:26.98217+00 f t payed 1425 1208 +6722 2025-11-05 19:57:22.147276+00 2025-11-05 19:57:22.147285+00 f t Confirmado 1421 \N +6723 2025-11-05 19:57:22.112863+00 2025-11-05 19:57:22.112872+00 f t payed 1421 1208 +6724 2025-11-05 20:07:57.204584+00 2025-11-05 20:07:57.204593+00 f t pending 1426 \N +6725 2025-11-05 20:08:07.935497+00 2025-11-05 20:08:07.935508+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 10:00:00 1426 1583 +6726 2025-11-05 20:08:20.606147+00 2025-11-05 20:08:20.606161+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1426 1583 +6727 2025-11-05 20:08:21.916663+00 2025-11-05 20:08:21.916672+00 f t vet_accepted 1426 1583 +6728 2025-11-05 20:08:21.932351+00 2025-11-05 20:08:21.932361+00 f t in_progress_pay 1426 1583 +6729 2025-11-05 20:08:46.355555+00 2025-11-05 20:08:46.355563+00 f t Confirmado 1426 \N +6730 2025-11-05 20:08:46.325524+00 2025-11-05 20:08:46.325532+00 f t payed 1426 1583 +6731 2025-11-05 20:23:14.39856+00 2025-11-05 20:23:14.39857+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 17:00:00 1424 1583 +6733 2025-11-05 20:23:29.406595+00 2025-11-05 20:23:29.406609+00 f t payed 1424 1583 +6734 2025-11-05 20:39:47.606885+00 2025-11-05 20:39:47.606894+00 f t pending 1427 \N +6735 2025-11-05 20:40:24.306045+00 2025-11-05 20:40:24.306057+00 f t in_progress_vet 1427 1583 +6736 2025-11-05 20:40:35.272091+00 2025-11-05 20:40:35.272099+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 16:00:00 1427 1583 +6737 2025-11-05 20:56:13.582224+00 2025-11-05 20:56:13.582235+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1427 1583 +6738 2025-11-05 20:56:14.155218+00 2025-11-05 20:56:14.155227+00 f t vet_accepted 1427 1583 +6739 2025-11-05 20:56:14.168391+00 2025-11-05 20:56:14.168402+00 f t in_progress_pay 1427 1583 +6740 2025-11-05 20:56:21.618951+00 2025-11-05 20:56:21.618963+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 18:00:00 1427 1583 +6741 2025-11-05 20:56:54.640967+00 2025-11-05 20:56:54.640974+00 f t vet_accepted 1427 126 +6742 2025-11-05 20:56:54.655264+00 2025-11-05 20:56:54.655275+00 f t in_progress_pay 1427 126 +6743 2025-11-05 21:02:57.40559+00 2025-11-05 21:02:57.405602+00 f t Confirmado 1427 \N +6744 2025-11-05 21:02:57.362822+00 2025-11-05 21:02:57.362834+00 f t payed 1427 1583 +6745 2025-11-05 21:06:16.143538+00 2025-11-05 21:06:16.143549+00 f t pending 1428 \N +6746 2025-11-05 21:06:16.622661+00 2025-11-05 21:06:16.62267+00 f t pending 1429 \N +6747 2025-11-05 21:07:56.259845+00 2025-11-05 21:07:56.259856+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 18:00:00 1427 1583 +6748 2025-11-05 21:11:10.350335+00 2025-11-05 21:11:10.350347+00 f t vet_accepted 1372 \N +6749 2025-11-05 21:20:47.041518+00 2025-11-05 21:20:47.041527+00 f t in_progress_vet 1429 1583 +6750 2025-11-05 21:20:51.175053+00 2025-11-05 21:20:51.17506+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 10:00:00 1429 1583 +6751 2025-11-05 21:20:53.695106+00 2025-11-05 21:20:53.695118+00 f t vet_asked Veterinario asignado: Kumabe Paula 1429 1583 +6752 2025-11-05 21:20:54.308591+00 2025-11-05 21:20:54.3086+00 f t vet_accepted 1429 1583 +6753 2025-11-05 21:20:54.324992+00 2025-11-05 21:20:54.325002+00 f t in_progress_pay 1429 1583 +6754 2025-11-05 21:21:08.777002+00 2025-11-05 21:21:08.777009+00 f t Confirmado 1429 \N +6755 2025-11-05 21:21:08.74826+00 2025-11-05 21:21:08.748274+00 f t payed 1429 1583 +6756 2025-11-05 21:28:12.713059+00 2025-11-05 21:28:12.71307+00 f t pending 1430 \N +6757 2025-11-05 21:28:28.699442+00 2025-11-05 21:28:28.699451+00 f t in_progress_vet 1430 1583 +6758 2025-11-05 21:28:54.780163+00 2025-11-05 21:28:54.780171+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1430 1583 +6759 2025-11-05 21:28:55.311529+00 2025-11-05 21:28:55.311541+00 f t vet_accepted 1430 1583 +6760 2025-11-05 21:28:55.32317+00 2025-11-05 21:28:55.32318+00 f t in_progress_pay 1430 1583 +6761 2025-11-05 21:29:36.849922+00 2025-11-05 21:29:36.84993+00 f t payed 1430 1583 +6762 2025-11-05 21:31:10.223043+00 2025-11-05 21:31:10.223054+00 f t Confirmado 1430 \N +6763 2025-11-05 21:31:16.313639+00 2025-11-05 21:31:16.313647+00 f t coordinated Solicitud coordinada para 2025-09-12 a las 15:30:00 1430 1583 +6764 2025-11-05 21:31:23.835106+00 2025-11-05 21:31:23.835116+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1430 1583 +6765 2025-11-05 21:31:24.46471+00 2025-11-05 21:31:24.464719+00 f t vet_accepted 1430 1583 +6766 2025-11-06 00:44:27.199412+00 2025-11-06 00:44:27.199424+00 f t vet_accepted 1264 \N +6767 2025-11-06 00:49:27.429969+00 2025-11-06 00:49:27.429983+00 f t pending 1431 \N +6768 2025-11-06 00:54:14.598312+00 2025-11-06 00:54:14.598323+00 f t pending 1432 \N +6769 2025-11-06 01:31:21.409449+00 2025-11-06 01:31:21.409462+00 f t pending 1433 \N +6770 2025-11-06 03:00:14.866056+00 2025-11-06 03:00:14.86607+00 f t pending 1434 \N +6771 2025-11-06 03:29:41.455611+00 2025-11-06 03:29:41.455621+00 f t pending 1435 \N +6772 2025-11-06 12:13:57.945405+00 2025-11-06 12:13:57.945414+00 f t in_progress_vet 1431 1208 +6773 2025-11-06 12:14:32.643004+00 2025-11-06 12:14:32.643013+00 f t in_progress_vet 1433 1208 +6774 2025-11-06 12:14:46.338725+00 2025-11-06 12:14:46.338734+00 f t in_progress_vet 1434 1208 +6775 2025-11-06 12:14:57.022881+00 2025-11-06 12:14:57.02289+00 f t in_progress_vet 1435 1208 +6776 2025-11-06 12:18:52.355437+00 2025-11-06 12:18:52.355446+00 f t pending 1436 \N +6777 2025-11-06 12:29:35.790019+00 2025-11-06 12:29:35.790029+00 f t in_progress_vet 1436 1208 +6778 2025-11-06 12:29:42.852401+00 2025-11-06 12:29:42.852411+00 f t in_progress_vet 1432 1208 +6779 2025-11-06 12:29:54.999109+00 2025-11-06 12:29:54.99912+00 f t rejected D-Averiguando / Desconocido 1431 1208 +6780 2025-11-06 12:49:27.900519+00 2025-11-06 12:49:27.900531+00 f t pending 1437 \N +6781 2025-11-06 12:49:46.198081+00 2025-11-06 12:49:46.19809+00 f t in_progress_vet 1437 1208 +6782 2025-11-06 12:53:44.695897+00 2025-11-06 12:53:44.695906+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 10:30:00 1432 1208 +6783 2025-11-06 12:55:09.737151+00 2025-11-06 12:55:09.737159+00 f t rejected D-Emergencia 1433 1208 +6784 2025-11-06 13:14:51.331539+00 2025-11-06 13:14:51.331547+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 16:00:00 1435 1208 +6785 2025-11-06 13:22:00.78181+00 2025-11-06 13:22:00.781818+00 f t vet_accepted 1435 \N +6786 2025-11-06 13:22:00.7951+00 2025-11-06 13:22:00.795109+00 f t in_progress_pay 1435 \N +6787 2025-11-06 13:26:49.018327+00 2025-11-06 13:26:49.018336+00 f t rejected D-Provincia 1434 1208 +6788 2025-11-06 13:35:01.465457+00 2025-11-06 13:35:01.465471+00 f t pending 1438 \N +6789 2025-11-06 13:36:55.66197+00 2025-11-06 13:36:55.661982+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 14:00:00 1436 1208 +6790 2025-11-06 13:37:04.865069+00 2025-11-06 13:37:04.865077+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 13:00:00 1436 1208 +6791 2025-11-06 13:55:35.218984+00 2025-11-06 13:55:35.218993+00 f t in_progress_vet 1438 1208 +6792 2025-11-06 14:02:00.448195+00 2025-11-06 14:02:00.448203+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 15:00:00 1438 1208 +6793 2025-11-06 14:09:59.742574+00 2025-11-06 14:09:59.742583+00 f t vet_asked Veterinario asignado: Prack Marcela 1436 1208 +6794 2025-11-06 14:10:15.101571+00 2025-11-06 14:10:15.101579+00 f t Confirmado 1436 \N +6795 2025-11-06 14:10:15.066993+00 2025-11-06 14:10:15.067003+00 f t payed 1436 1208 +6796 2025-11-06 14:23:30.697803+00 2025-11-06 14:23:30.697811+00 f t pending 1439 \N +6797 2025-11-06 14:25:48.506855+00 2025-11-06 14:25:48.506862+00 f t in_progress_vet 1439 1583 +6798 2025-11-06 14:25:56.177267+00 2025-11-06 14:25:56.177276+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 10:00:00 1439 1583 +6799 2025-11-06 14:26:01.308158+00 2025-11-06 14:26:01.308167+00 f t vet_asked Veterinario asignado: Inseparables Crematorio 1439 1583 +6800 2025-11-06 14:26:01.879852+00 2025-11-06 14:26:01.87986+00 f t vet_accepted 1439 1583 +6801 2025-11-06 14:26:01.894338+00 2025-11-06 14:26:01.894347+00 f t in_progress_pay 1439 1583 +6802 2025-11-06 14:26:26.83359+00 2025-11-06 14:26:26.833599+00 f t Confirmado 1439 \N +6803 2025-11-06 14:26:26.804185+00 2025-11-06 14:26:26.804193+00 f t payed 1439 1583 +6804 2025-11-06 14:40:06.510356+00 2025-11-06 14:40:06.510368+00 f t rejected D-Emergencia 1438 1208 +6805 2025-11-06 14:41:00.483805+00 2025-11-06 14:41:00.483815+00 f t pending 1440 \N +6806 2025-11-06 14:41:21.852174+00 2025-11-06 14:41:21.852183+00 f t in_progress_vet 1440 1208 +6807 2025-11-06 14:41:33.558886+00 2025-11-06 14:41:33.558896+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 18:00:00 1440 1208 +6808 2025-11-06 14:41:52.930573+00 2025-11-06 14:41:52.930586+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1440 1208 +6809 2025-11-06 14:42:07.223726+00 2025-11-06 14:42:07.223733+00 f t Confirmado 1440 \N +6810 2025-11-06 14:42:07.191939+00 2025-11-06 14:42:07.191948+00 f t payed 1440 1208 +6811 2025-11-06 15:46:14.583428+00 2025-11-06 15:46:14.583437+00 f t rejected D-Averiguando / Desconocido 1437 1208 +6812 2025-11-06 15:46:23.528999+00 2025-11-06 15:46:23.529012+00 f t pending 1441 \N +6813 2025-11-06 15:46:59.920905+00 2025-11-06 15:46:59.920913+00 f t in_progress_vet 1441 1583 +6814 2025-11-06 15:47:05.805039+00 2025-11-06 15:47:05.805047+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 16:00:00 1441 1583 +6815 2025-11-06 15:47:11.070719+00 2025-11-06 15:47:11.070729+00 f t vet_asked Veterinario asignado: di Risio Daniela 1441 1583 +6816 2025-11-06 15:47:11.828586+00 2025-11-06 15:47:11.828598+00 f t vet_accepted 1441 1583 +6817 2025-11-06 15:47:11.844751+00 2025-11-06 15:47:11.844764+00 f t in_progress_pay 1441 1583 +6818 2025-11-06 15:48:07.727908+00 2025-11-06 15:48:07.727916+00 f t Confirmado 1441 \N +6819 2025-11-06 15:48:19.352183+00 2025-11-06 15:48:19.352191+00 f t vet_accepted 1427 126 +6820 2025-11-06 15:50:41.764942+00 2025-11-06 15:50:41.76495+00 f t pending 1442 \N +6821 2025-11-06 15:54:09.647349+00 2025-11-06 15:54:09.647359+00 f t in_progress_vet 1442 1208 +6822 2025-11-06 15:54:22.417203+00 2025-11-06 15:54:22.417211+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 20:00:00 1442 1208 +6823 2025-11-06 16:04:05.880176+00 2025-11-06 16:04:05.880184+00 f t vet_accepted 1442 \N +6824 2025-11-06 16:04:05.89418+00 2025-11-06 16:04:05.894189+00 f t in_progress_pay 1442 \N +6825 2025-11-06 16:05:00.342167+00 2025-11-06 16:05:00.342174+00 f t vet_asked Veterinario asignado: Palladino Martín 1432 1208 +6826 2025-11-06 16:06:11.321841+00 2025-11-06 16:06:11.321848+00 f t pending 1443 \N +6827 2025-11-06 16:06:23.999502+00 2025-11-06 16:06:23.999511+00 f t in_progress_vet 1443 1208 +6828 2025-11-06 16:06:31.100967+00 2025-11-06 16:06:31.100976+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 09:00:00 1443 1208 +6829 2025-11-06 16:06:45.43444+00 2025-11-06 16:06:45.434451+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1443 1208 +6830 2025-11-06 16:12:42.225213+00 2025-11-06 16:12:42.225221+00 f t Confirmado 1432 \N +6831 2025-11-06 16:12:42.185884+00 2025-11-06 16:12:42.185892+00 f t payed 1432 1208 +6832 2025-11-06 16:12:53.389029+00 2025-11-06 16:12:53.389036+00 f t Confirmado 1443 \N +6833 2025-11-06 16:12:53.358787+00 2025-11-06 16:12:53.358796+00 f t payed 1443 1208 +6834 2025-11-06 16:15:56.719595+00 2025-11-06 16:15:56.719607+00 f t pending 1444 \N +6835 2025-11-06 16:16:02.217733+00 2025-11-06 16:16:02.217743+00 f t pending 1445 \N +6836 2025-11-06 16:16:21.793249+00 2025-11-06 16:16:21.793259+00 f t in_progress_vet 1445 1583 +6837 2025-11-06 16:16:54.237731+00 2025-11-06 16:16:54.237738+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 16:00:00 1445 1583 +6838 2025-11-06 16:18:15.270606+00 2025-11-06 16:18:15.270616+00 f t vet_accepted 1445 \N +6839 2025-11-06 16:18:15.285744+00 2025-11-06 16:18:15.285755+00 f t in_progress_pay 1445 \N +6840 2025-11-06 16:18:32.827126+00 2025-11-06 16:18:32.827153+00 f t in_progress_vet 1444 1583 +6841 2025-11-06 16:28:08.416673+00 2025-11-06 16:28:08.416681+00 f t vet_accepted 1445 \N +6842 2025-11-06 16:28:08.429466+00 2025-11-06 16:28:08.429475+00 f t in_progress_pay 1445 \N +6843 2025-11-06 16:29:08.850657+00 2025-11-06 16:29:08.850667+00 f t vet_accepted 1445 \N +6844 2025-11-06 16:29:08.862539+00 2025-11-06 16:29:08.862547+00 f t in_progress_pay 1445 \N +6845 2025-11-06 16:33:24.920273+00 2025-11-06 16:33:24.920281+00 f t pending 1446 \N +6846 2025-11-06 16:39:06.650479+00 2025-11-06 16:39:06.650488+00 f t in_progress_vet 1446 1583 +6847 2025-11-06 16:39:54.270845+00 2025-11-06 16:39:54.270857+00 f t pending 1447 \N +6848 2025-11-06 16:40:02.743274+00 2025-11-06 16:40:02.743308+00 f t coordinated Solicitud coordinada para 2025-11-06 a las 17:00:00 1446 1583 +6849 2025-11-06 16:40:11.877694+00 2025-11-06 16:40:11.877704+00 f t in_progress_vet 1447 1208 +6850 2025-11-06 16:40:21.019326+00 2025-11-06 16:40:21.019335+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 08:30:00 1447 1208 +6851 2025-11-06 16:42:22.143067+00 2025-11-06 16:42:22.143076+00 f t vet_accepted 1446 \N +6852 2025-11-06 16:42:22.156925+00 2025-11-06 16:42:22.156934+00 f t in_progress_pay 1446 \N +6853 2025-11-06 16:42:54.07115+00 2025-11-06 16:42:54.071163+00 f t pending 1448 \N +6854 2025-11-06 16:44:01.331445+00 2025-11-06 16:44:01.331457+00 f t in_progress_vet 1448 1208 +6855 2025-11-06 16:46:02.617542+00 2025-11-06 16:46:02.617551+00 f t rejected D-Averiguando / Desconocido 1448 1208 +6856 2025-11-06 16:46:22.018064+00 2025-11-06 16:46:22.018076+00 f t pending 1449 \N +6857 2025-11-06 16:46:38.626608+00 2025-11-06 16:46:38.62662+00 f t in_progress_vet 1449 1208 +6858 2025-11-06 16:47:10.605875+00 2025-11-06 16:47:10.605887+00 f t pending 1450 \N +6859 2025-11-06 16:47:36.084788+00 2025-11-06 16:47:36.084799+00 f t in_progress_vet 1450 1208 +6860 2025-11-06 16:47:49.974544+00 2025-11-06 16:47:49.974552+00 f t vet_accepted 1444 \N +6861 2025-11-06 16:47:49.989058+00 2025-11-06 16:47:49.989067+00 f t in_progress_pay 1444 \N +6862 2025-11-06 16:52:00.700836+00 2025-11-06 16:52:00.700844+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 15:00:00 1435 1208 +6863 2025-11-06 16:54:06.844948+00 2025-11-06 16:54:06.84496+00 f t Confirmado 1435 \N +6864 2025-11-06 16:54:06.804083+00 2025-11-06 16:54:06.804094+00 f t payed 1435 1208 +6865 2025-11-06 16:56:07.096147+00 2025-11-06 16:56:07.096154+00 f t Confirmado 1446 \N +6866 2025-11-06 16:56:07.059686+00 2025-11-06 16:56:07.059699+00 f t payed 1446 1583 +6867 2025-11-06 17:25:05.585187+00 2025-11-06 17:25:05.585198+00 f t Confirmado 1445 \N +6868 2025-11-06 17:25:05.535744+00 2025-11-06 17:25:05.535758+00 f t payed 1445 1583 +6869 2025-11-06 17:25:57.949578+00 2025-11-06 17:25:57.949587+00 f t pending 1451 \N +6870 2025-11-06 17:51:46.260868+00 2025-11-06 17:51:46.260877+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 08:30:00 1447 1208 +6871 2025-11-06 17:51:50.822565+00 2025-11-06 17:51:50.822573+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1447 1208 +6872 2025-11-06 17:52:21.461184+00 2025-11-06 17:52:21.461195+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 10:00:00 1449 1208 +6873 2025-11-06 17:52:38.616209+00 2025-11-06 17:52:38.616217+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1449 1208 +6874 2025-11-06 17:53:52.764429+00 2025-11-06 17:53:52.764437+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 15:00:00 1450 1208 +6875 2025-11-06 18:17:42.098212+00 2025-11-06 18:17:42.098222+00 f t Confirmado 1447 \N +6876 2025-11-06 18:17:42.064246+00 2025-11-06 18:17:42.064255+00 f t payed 1447 1208 +6877 2025-11-06 18:18:01.357458+00 2025-11-06 18:18:01.357467+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 09:00:00 1449 1208 +6878 2025-11-06 18:18:08.041151+00 2025-11-06 18:18:08.041159+00 f t Confirmado 1449 \N +6879 2025-11-06 18:18:08.012408+00 2025-11-06 18:18:08.012419+00 f t payed 1449 1208 +6880 2025-11-06 18:24:07.60223+00 2025-11-06 18:24:07.60224+00 f t pending 1452 \N +6881 2025-11-06 18:24:22.651329+00 2025-11-06 18:24:22.651339+00 f t in_progress_vet 1452 1208 +6882 2025-11-06 18:24:29.712222+00 2025-11-06 18:24:29.712232+00 f t coordinated Solicitud coordinada para 2025-11-08 a las 15:00:00 1452 1208 +6883 2025-11-06 18:25:35.519679+00 2025-11-06 18:25:35.519687+00 f t vet_asked Veterinario asignado: Henjes María José 1452 1208 +6884 2025-11-06 18:31:06.40776+00 2025-11-06 18:31:06.40777+00 f t vet_accepted 1442 \N +6885 2025-11-06 18:31:06.42585+00 2025-11-06 18:31:06.425859+00 f t in_progress_pay 1442 \N +6886 2025-11-06 18:36:10.635419+00 2025-11-06 18:36:10.63543+00 f t Confirmado 1442 \N +6887 2025-11-06 18:36:10.588085+00 2025-11-06 18:36:10.588098+00 f t payed 1442 1208 +6888 2025-11-06 18:41:33.060646+00 2025-11-06 18:41:33.060656+00 f t Confirmado 1452 \N +6889 2025-11-06 18:41:33.02207+00 2025-11-06 18:41:33.022084+00 f t payed 1452 1208 +6890 2025-11-06 18:59:17.220548+00 2025-11-06 18:59:17.22056+00 f t pending 1453 \N +6891 2025-11-06 19:01:34.388878+00 2025-11-06 19:01:34.388887+00 f t in_progress_vet 1453 1208 +6892 2025-11-06 19:04:30.658271+00 2025-11-06 19:04:30.658279+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 10:00:00 1453 1208 +6893 2025-11-06 19:04:55.876127+00 2025-11-06 19:04:55.876138+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1453 1208 +6894 2025-11-06 19:05:13.680271+00 2025-11-06 19:05:13.680279+00 f t Confirmado 1453 \N +6895 2025-11-06 19:05:13.648636+00 2025-11-06 19:05:13.648645+00 f t payed 1453 1208 +6896 2025-11-06 19:28:46.110458+00 2025-11-06 19:28:46.110465+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 16:00:00 1450 1208 +6897 2025-11-06 19:28:51.217324+00 2025-11-06 19:28:51.217332+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1450 1208 +6898 2025-11-06 19:28:57.996487+00 2025-11-06 19:28:57.996499+00 f t Confirmado 1450 \N +6899 2025-11-06 19:28:57.966732+00 2025-11-06 19:28:57.966739+00 f t payed 1450 1208 +6900 2025-11-06 19:57:33.492753+00 2025-11-06 19:57:33.492763+00 f t pending 1454 \N +6901 2025-11-06 19:57:51.354165+00 2025-11-06 19:57:51.354177+00 f t in_progress_vet 1454 1208 +6902 2025-11-06 20:23:09.246421+00 2025-11-06 20:23:09.246432+00 f t pending 1455 \N +6903 2025-11-06 20:23:47.092141+00 2025-11-06 20:23:47.09215+00 f t in_progress_vet 1455 1583 +6904 2025-11-06 20:23:52.968307+00 2025-11-06 20:23:52.968318+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 09:00:00 1455 1583 +6905 2025-11-06 20:32:06.369825+00 2025-11-06 20:32:06.369833+00 f t pending 1456 \N +6906 2025-11-06 20:32:17.792+00 2025-11-06 20:32:17.792012+00 f t in_progress_vet 1456 1583 +6907 2025-11-06 20:32:25.866746+00 2025-11-06 20:32:25.866755+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 16:00:00 1456 1583 +6908 2025-11-06 20:50:26.332158+00 2025-11-06 20:50:26.332168+00 f t pending 1457 \N +6909 2025-11-06 20:51:04.037966+00 2025-11-06 20:51:04.037975+00 f t in_progress_vet 1457 1583 +6910 2025-11-06 20:51:14.751955+00 2025-11-06 20:51:14.751964+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 16:00:00 1457 1583 +6911 2025-11-06 20:53:26.781236+00 2025-11-06 20:53:26.781249+00 f t vet_accepted 1457 \N +6912 2025-11-06 20:53:26.794367+00 2025-11-06 20:53:26.794377+00 f t in_progress_pay 1457 \N +6913 2025-11-06 21:01:09.509927+00 2025-11-06 21:01:09.509938+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 20:30:00 1457 1583 +6914 2025-11-06 21:04:22.833632+00 2025-11-06 21:04:22.833641+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1455 1583 +6915 2025-11-06 21:04:23.446167+00 2025-11-06 21:04:23.446174+00 f t vet_accepted 1455 1583 +6916 2025-11-06 21:04:23.459791+00 2025-11-06 21:04:23.459799+00 f t in_progress_pay 1455 1583 +6917 2025-11-06 21:04:37.97247+00 2025-11-06 21:04:37.97248+00 f t Confirmado 1455 \N +6918 2025-11-06 21:04:37.943421+00 2025-11-06 21:04:37.943429+00 f t payed 1455 1583 +6919 2025-11-06 21:08:08.352328+00 2025-11-06 21:08:08.352339+00 f t pending 1458 \N +6920 2025-11-06 21:08:28.986223+00 2025-11-06 21:08:28.986235+00 f t in_progress_vet 1458 1583 +6921 2025-11-06 21:08:34.720686+00 2025-11-06 21:08:34.720694+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 12:00:00 1458 1583 +6922 2025-11-06 21:08:44.597596+00 2025-11-06 21:08:44.597605+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1458 1583 +6923 2025-11-06 21:08:45.246516+00 2025-11-06 21:08:45.246525+00 f t vet_accepted 1458 1583 +6924 2025-11-06 21:08:45.259642+00 2025-11-06 21:08:45.259651+00 f t in_progress_pay 1458 1583 +6925 2025-11-06 21:08:56.495547+00 2025-11-06 21:08:56.495555+00 f t Confirmado 1458 \N +6926 2025-11-06 21:08:56.465566+00 2025-11-06 21:08:56.465578+00 f t payed 1458 1583 +6927 2025-11-06 21:11:56.525161+00 2025-11-06 21:11:56.525169+00 f t in_progress_vet 1451 1583 +6928 2025-11-06 21:12:05.990962+00 2025-11-06 21:12:05.99097+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 10:00:00 1451 1583 +6929 2025-11-06 21:13:04.560014+00 2025-11-06 21:13:04.560025+00 f t rejected D-Abandono Bot 1444 1583 +6930 2025-11-06 21:13:06.466982+00 2025-11-06 21:13:06.466994+00 f t vet_accepted 1451 \N +6931 2025-11-06 21:13:06.480568+00 2025-11-06 21:13:06.480577+00 f t in_progress_pay 1451 \N +6932 2025-11-06 21:16:27.863342+00 2025-11-06 21:16:27.86335+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 20:30:00 1457 1583 +6933 2025-11-06 21:23:23.218421+00 2025-11-06 21:23:23.218434+00 f t pending 1459 \N +6934 2025-11-06 21:24:05.082739+00 2025-11-06 21:24:05.082748+00 f t in_progress_vet 1459 1583 +6935 2025-11-06 21:24:12.320217+00 2025-11-06 21:24:12.320224+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 10:00:00 1459 1583 +6936 2025-11-06 21:26:22.454936+00 2025-11-06 21:26:22.454945+00 f t pending 1460 \N +6937 2025-11-06 21:26:35.75312+00 2025-11-06 21:26:35.75313+00 f t in_progress_vet 1460 1583 +6938 2025-11-06 21:26:42.044392+00 2025-11-06 21:26:42.044399+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 18:00:00 1460 1583 +6939 2025-11-06 21:35:15.751478+00 2025-11-06 21:35:15.751486+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 08:30:00 1459 1583 +6940 2025-11-06 21:35:23.583204+00 2025-11-06 21:35:23.583216+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1459 1583 +6941 2025-11-06 21:35:57.444971+00 2025-11-06 21:35:57.444979+00 f t vet_accepted 1459 1583 +6942 2025-11-06 21:35:57.458338+00 2025-11-06 21:35:57.458348+00 f t in_progress_pay 1459 1583 +6943 2025-11-06 21:36:04.651853+00 2025-11-06 21:36:04.651864+00 f t Confirmado 1459 \N +6944 2025-11-06 21:36:04.617979+00 2025-11-06 21:36:04.617988+00 f t payed 1459 1583 +6945 2025-11-06 21:40:43.314693+00 2025-11-06 21:40:43.314702+00 f t Confirmado 1451 \N +6946 2025-11-06 21:40:43.272565+00 2025-11-06 21:40:43.272578+00 f t payed 1451 1583 +6947 2025-11-06 22:22:43.909431+00 2025-11-06 22:22:43.90944+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 20:00:00 1460 1583 +6948 2025-11-06 22:23:03.179579+00 2025-11-06 22:23:03.179595+00 f t payed 1460 1583 +6949 2025-11-06 22:23:14.439253+00 2025-11-06 22:23:14.439261+00 f t Confirmado 1460 \N +6950 2025-11-06 22:23:15.440363+00 2025-11-06 22:23:15.44038+00 f t vet_asked Veterinario asignado: di Risio Daniela 1460 1583 +6951 2025-11-06 22:23:16.208104+00 2025-11-06 22:23:16.208115+00 f t vet_accepted 1460 1583 +6952 2025-11-06 22:30:08.435031+00 2025-11-06 22:30:08.435042+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 15:00:00 1456 1583 +6953 2025-11-06 22:30:11.751427+00 2025-11-06 22:30:11.751438+00 f t vet_asked Veterinario asignado: di Risio Daniela 1456 1583 +6954 2025-11-06 22:30:12.345577+00 2025-11-06 22:30:12.345589+00 f t vet_accepted 1456 1583 +6955 2025-11-06 22:30:12.360709+00 2025-11-06 22:30:12.360718+00 f t in_progress_pay 1456 1583 +6956 2025-11-06 22:30:23.049031+00 2025-11-06 22:30:23.049042+00 f t Confirmado 1456 \N +6957 2025-11-06 22:30:23.021666+00 2025-11-06 22:30:23.021678+00 f t payed 1456 1583 +6958 2025-11-06 22:43:12.51551+00 2025-11-06 22:43:12.51552+00 f t vet_accepted 1451 \N +6959 2025-11-06 23:02:17.757665+00 2025-11-06 23:02:17.757675+00 f t pending 1461 \N +6960 2025-11-06 23:02:38.062746+00 2025-11-06 23:02:38.062755+00 f t in_progress_vet 1461 113 +6961 2025-11-06 23:02:45.367275+00 2025-11-06 23:02:45.367285+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 12:00:00 1461 113 +6962 2025-11-07 00:36:53.726675+00 2025-11-07 00:36:53.726686+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1461 113 +6963 2025-11-07 00:36:55.537769+00 2025-11-07 00:36:55.53778+00 f t vet_accepted 1461 113 +6964 2025-11-07 00:36:55.553756+00 2025-11-07 00:36:55.553766+00 f t in_progress_pay 1461 113 +6965 2025-11-07 00:38:11.061215+00 2025-11-07 00:38:11.061224+00 f t payed 1461 113 +6966 2025-11-07 00:58:10.367456+00 2025-11-07 00:58:10.367466+00 f t pending 1462 \N +6967 2025-11-07 01:41:29.817511+00 2025-11-07 01:41:29.81752+00 f t pending 1463 \N +6968 2025-11-07 01:55:10.577073+00 2025-11-07 01:55:10.577081+00 f t vet_accepted 1229 \N +6969 2025-11-07 04:55:07.674005+00 2025-11-07 04:55:07.674014+00 f t pending 1464 \N +6970 2025-11-07 12:10:10.892019+00 2025-11-07 12:10:10.892034+00 f t in_progress_vet 1464 1583 +6971 2025-11-07 12:10:29.295222+00 2025-11-07 12:10:29.295231+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 15:00:00 1464 1583 +6972 2025-11-07 12:17:48.233617+00 2025-11-07 12:17:48.233624+00 f t Confirmado 1461 \N +6973 2025-11-07 12:17:48.201908+00 2025-11-07 12:17:48.201919+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 14:30:00 1461 1583 +6974 2025-11-07 12:21:07.61692+00 2025-11-07 12:21:07.616929+00 f t pending 1465 \N +6975 2025-11-07 12:21:25.962807+00 2025-11-07 12:21:25.962816+00 f t in_progress_vet 1465 1583 +6976 2025-11-07 12:21:32.447757+00 2025-11-07 12:21:32.447765+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 15:00:00 1465 1583 +6977 2025-11-07 12:21:40.151533+00 2025-11-07 12:21:40.151542+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1465 1583 +6978 2025-11-07 12:21:40.728303+00 2025-11-07 12:21:40.728312+00 f t vet_accepted 1465 1583 +6979 2025-11-07 12:21:40.741164+00 2025-11-07 12:21:40.741173+00 f t in_progress_pay 1465 1583 +6980 2025-11-07 12:22:10.670973+00 2025-11-07 12:22:10.670981+00 f t Confirmado 1465 \N +6981 2025-11-07 12:22:10.641195+00 2025-11-07 12:22:10.641203+00 f t payed 1465 1583 +6982 2025-11-07 12:33:46.843931+00 2025-11-07 12:33:46.84394+00 f t in_progress_vet 1463 1583 +6983 2025-11-07 12:40:32.176783+00 2025-11-07 12:40:32.176792+00 f t pending 1466 \N +6984 2025-11-07 12:55:48.98342+00 2025-11-07 12:55:48.98343+00 f t pending 1467 \N +6985 2025-11-07 12:56:49.26924+00 2025-11-07 12:56:49.269251+00 f t in_progress_vet 1466 1583 +6986 2025-11-07 13:13:04.502919+00 2025-11-07 13:13:04.50293+00 f t in_progress_vet 1467 1583 +6987 2025-11-07 13:26:37.630682+00 2025-11-07 13:26:37.630693+00 f t pending 1468 \N +6988 2025-11-07 13:26:53.762625+00 2025-11-07 13:26:53.762633+00 f t in_progress_vet 1468 1583 +6989 2025-11-07 13:26:59.191822+00 2025-11-07 13:26:59.191829+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 09:00:00 1468 1583 +6990 2025-11-07 13:33:07.12945+00 2025-11-07 13:33:07.129461+00 f t vet_accepted 1468 \N +6991 2025-11-07 13:33:07.150852+00 2025-11-07 13:33:07.150863+00 f t in_progress_pay 1468 \N +6992 2025-11-07 13:33:09.285708+00 2025-11-07 13:33:09.285717+00 f t rejected Solicitud rechazada por Usuario no especificado 1468 \N +6993 2025-11-07 13:33:09.295716+00 2025-11-07 13:33:09.295724+00 f t in_progress_vet 1468 \N +6994 2025-11-07 13:36:49.611602+00 2025-11-07 13:36:49.611611+00 f t Confirmado 1457 \N +6995 2025-11-07 13:36:49.575175+00 2025-11-07 13:36:49.575185+00 f t payed 1457 1583 +6996 2025-11-07 13:38:30.755445+00 2025-11-07 13:38:30.755455+00 f t vet_accepted 1468 \N +6997 2025-11-07 13:38:30.779261+00 2025-11-07 13:38:30.77927+00 f t in_progress_pay 1468 \N +6998 2025-11-07 13:46:47.112571+00 2025-11-07 13:46:47.112583+00 f t rejected D-Abandono Bot 1462 1583 +6999 2025-11-07 14:11:21.962438+00 2025-11-07 14:11:21.96245+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 18:00:00 1466 1583 +7000 2025-11-07 14:15:05.957809+00 2025-11-07 14:15:05.957825+00 f t Confirmado 1468 \N +7001 2025-11-07 14:15:05.827664+00 2025-11-07 14:15:05.827683+00 f t payed 1468 1583 +7002 2025-11-07 14:16:34.677059+00 2025-11-07 14:16:34.67707+00 f t pending 1469 \N +7003 2025-11-07 14:17:40.82737+00 2025-11-07 14:17:40.827381+00 f t in_progress_vet 1469 1583 +7004 2025-11-07 14:18:54.59584+00 2025-11-07 14:18:54.595851+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 11:30:00 1469 1583 +7005 2025-11-07 14:19:07.994602+00 2025-11-07 14:19:07.994612+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1469 1583 +7006 2025-11-07 14:19:08.620494+00 2025-11-07 14:19:08.620504+00 f t vet_accepted 1469 1583 +7007 2025-11-07 14:19:08.641675+00 2025-11-07 14:19:08.641686+00 f t in_progress_pay 1469 1583 +7008 2025-11-07 14:19:48.868317+00 2025-11-07 14:19:48.868325+00 f t Confirmado 1469 \N +7009 2025-11-07 14:19:48.823793+00 2025-11-07 14:19:48.823807+00 f t payed 1469 1583 +7010 2025-11-07 15:16:07.226432+00 2025-11-07 15:16:07.226445+00 f t pending 1470 \N +7011 2025-11-07 15:16:20.338609+00 2025-11-07 15:16:20.338617+00 f t in_progress_vet 1470 1583 +7012 2025-11-07 15:17:51.491526+00 2025-11-07 15:17:51.491534+00 f t coordinated Solicitud coordinada para 2025-11-08 a las 11:00:00 1470 1583 +7013 2025-11-07 15:17:56.820953+00 2025-11-07 15:17:56.820962+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1470 1583 +7014 2025-11-07 15:17:57.474662+00 2025-11-07 15:17:57.474674+00 f t vet_accepted 1470 1583 +7015 2025-11-07 15:17:57.488721+00 2025-11-07 15:17:57.488731+00 f t in_progress_pay 1470 1583 +7016 2025-11-07 15:18:19.69598+00 2025-11-07 15:18:19.695987+00 f t Confirmado 1470 \N +7017 2025-11-07 15:18:19.669345+00 2025-11-07 15:18:19.669353+00 f t payed 1470 1583 +7018 2025-11-07 15:32:49.114037+00 2025-11-07 15:32:49.114046+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1466 1583 +7019 2025-11-07 15:32:49.736235+00 2025-11-07 15:32:49.736246+00 f t vet_accepted 1466 1583 +7020 2025-11-07 15:32:49.749286+00 2025-11-07 15:32:49.749296+00 f t in_progress_pay 1466 1583 +7021 2025-11-07 16:33:55.564013+00 2025-11-07 16:33:55.564022+00 f t rejected D-Sin Turno 1464 1583 +7022 2025-11-07 16:44:46.278089+00 2025-11-07 16:44:46.2781+00 f t pending 1471 \N +7023 2025-11-07 16:45:52.141939+00 2025-11-07 16:45:52.141948+00 f t in_progress_vet 1471 1583 +7024 2025-11-07 16:45:56.589195+00 2025-11-07 16:45:56.589203+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 14:00:00 1471 1583 +7025 2025-11-07 16:46:02.126047+00 2025-11-07 16:46:02.126057+00 f t vet_asked Veterinario asignado: Szczurek Veronica Carolina 1471 1583 +7026 2025-11-07 16:46:02.781842+00 2025-11-07 16:46:02.781851+00 f t vet_accepted 1471 1583 +7027 2025-11-07 16:46:02.796408+00 2025-11-07 16:46:02.796418+00 f t in_progress_pay 1471 1583 +7028 2025-11-07 16:48:18.169152+00 2025-11-07 16:48:18.169165+00 f t Confirmado 1471 \N +7029 2025-11-07 16:48:18.121034+00 2025-11-07 16:48:18.121043+00 f t payed 1471 1583 +7030 2025-11-07 16:51:48.832775+00 2025-11-07 16:51:48.832787+00 f t rejected D-Abandono Bot 1467 1583 +7031 2025-11-07 17:18:01.041938+00 2025-11-07 17:18:01.041951+00 f t pending 1472 \N +7032 2025-11-07 17:18:17.590642+00 2025-11-07 17:18:17.590651+00 f t in_progress_vet 1472 1583 +7033 2025-11-07 17:18:26.356042+00 2025-11-07 17:18:26.356052+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 18:00:00 1472 1583 +7034 2025-11-07 17:38:34.203805+00 2025-11-07 17:38:34.203813+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 18:30:00 1454 1208 +7035 2025-11-07 17:38:41.395771+00 2025-11-07 17:38:41.395781+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1454 1208 +7036 2025-11-07 17:38:58.697337+00 2025-11-07 17:38:58.697348+00 f t Confirmado 1454 \N +7037 2025-11-07 17:38:58.658615+00 2025-11-07 17:38:58.658625+00 f t payed 1454 1208 +7038 2025-11-07 18:11:18.125175+00 2025-11-07 18:11:18.125185+00 f t rejected D-Sin Turno 1472 1583 +7039 2025-11-07 18:18:45.726478+00 2025-11-07 18:18:45.72649+00 f t pending 1473 \N +7040 2025-11-07 18:24:36.982607+00 2025-11-07 18:24:36.982619+00 f t in_progress_vet 1473 1208 +7041 2025-11-07 18:40:14.692266+00 2025-11-07 18:40:14.692275+00 f t coordinated Solicitud coordinada para 2025-11-08 a las 18:30:00 1473 1208 +7042 2025-11-07 18:45:08.188524+00 2025-11-07 18:45:08.188532+00 f t vet_accepted 1468 \N +7043 2025-11-07 18:59:54.649055+00 2025-11-07 18:59:54.649062+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 13:00:00 1463 1583 +7044 2025-11-07 19:00:00.348107+00 2025-11-07 19:00:00.348116+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1463 1583 +7045 2025-11-07 19:00:01.006639+00 2025-11-07 19:00:01.006648+00 f t vet_accepted 1463 1583 +7046 2025-11-07 19:00:01.021817+00 2025-11-07 19:00:01.02183+00 f t in_progress_pay 1463 1583 +7047 2025-11-07 19:15:52.297211+00 2025-11-07 19:15:52.29722+00 f t pending 1474 \N +7048 2025-11-07 19:16:04.081897+00 2025-11-07 19:16:04.081907+00 f t in_progress_vet 1474 1583 +7049 2025-11-07 19:16:08.161164+00 2025-11-07 19:16:08.161174+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 11:00:00 1474 1583 +7050 2025-11-07 19:16:13.798894+00 2025-11-07 19:16:13.798903+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1474 1583 +7051 2025-11-07 19:16:14.455457+00 2025-11-07 19:16:14.455469+00 f t vet_accepted 1474 1583 +7052 2025-11-07 19:16:14.469161+00 2025-11-07 19:16:14.46917+00 f t in_progress_pay 1474 1583 +7053 2025-11-07 19:38:35.178715+00 2025-11-07 19:38:35.178722+00 f t coordinated Solicitud coordinada para 2025-11-08 a las 18:00:00 1473 1208 +7054 2025-11-07 19:39:48.802895+00 2025-11-07 19:39:48.802909+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1473 1208 +7055 2025-11-07 19:39:54.436438+00 2025-11-07 19:39:54.436447+00 f t Confirmado 1473 \N +7056 2025-11-07 19:39:54.402725+00 2025-11-07 19:39:54.402735+00 f t payed 1473 1208 +7057 2025-11-07 19:59:19.687496+00 2025-11-07 19:59:19.687503+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 19:00:00 1466 1583 +7058 2025-11-07 19:59:56.824775+00 2025-11-07 19:59:56.824783+00 f t Confirmado 1466 \N +7059 2025-11-07 19:59:56.79807+00 2025-11-07 19:59:56.798079+00 f t payed 1466 1583 +7060 2025-11-07 21:38:39.085014+00 2025-11-07 21:38:39.085023+00 f t pending 1475 \N +7061 2025-11-07 21:42:17.172938+00 2025-11-07 21:42:17.172947+00 f t in_progress_vet 1475 1208 +7062 2025-11-07 21:42:39.684364+00 2025-11-07 21:42:39.684373+00 f t coordinated Solicitud coordinada para 2025-11-08 a las 10:00:00 1475 1208 +7063 2025-11-07 21:42:47.697779+00 2025-11-07 21:42:47.697791+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1475 1208 +7064 2025-11-07 21:43:21.333628+00 2025-11-07 21:43:21.333639+00 f t Confirmado 1475 \N +7065 2025-11-07 21:43:21.306211+00 2025-11-07 21:43:21.30622+00 f t payed 1475 1208 +7066 2025-11-07 21:54:08.15524+00 2025-11-07 21:54:08.155248+00 f t pending 1476 \N +7067 2025-11-07 21:57:53.698384+00 2025-11-07 21:57:53.698395+00 f t in_progress_vet 1476 1208 +7068 2025-11-07 21:58:04.331212+00 2025-11-07 21:58:04.331223+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 17:00:00 1476 1208 +7069 2025-11-07 22:00:38.735903+00 2025-11-07 22:00:38.735916+00 f t vet_accepted 1476 \N +7070 2025-11-07 22:00:38.750304+00 2025-11-07 22:00:38.750313+00 f t in_progress_pay 1476 \N +7071 2025-11-07 22:40:21.565541+00 2025-11-07 22:40:21.565551+00 f t pending 1477 \N +7072 2025-11-07 22:41:07.207617+00 2025-11-07 22:41:07.207626+00 f t in_progress_vet 1477 1208 +7073 2025-11-07 22:41:43.039482+00 2025-11-07 22:41:43.03949+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 20:00:00 1477 1208 +7074 2025-11-07 23:04:15.132935+00 2025-11-07 23:04:15.132946+00 f t coordinated Solicitud coordinada para 2025-11-07 a las 20:30:00 1477 1208 +7075 2025-11-07 23:05:21.76654+00 2025-11-07 23:05:21.766548+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1477 1208 +7076 2025-11-07 23:05:33.020909+00 2025-11-07 23:05:33.020918+00 f t Confirmado 1477 \N +7077 2025-11-07 23:05:32.990872+00 2025-11-07 23:05:32.99088+00 f t payed 1477 1208 +7078 2025-11-07 23:11:07.232245+00 2025-11-07 23:11:07.232254+00 f t pending 1478 \N +7079 2025-11-07 23:11:50.859671+00 2025-11-07 23:11:50.859679+00 f t in_progress_vet 1478 1208 +7080 2025-11-07 23:12:03.03348+00 2025-11-07 23:12:03.033489+00 f t coordinated Solicitud coordinada para 2025-11-08 a las 09:00:00 1478 1208 +7081 2025-11-07 23:57:56.678412+00 2025-11-07 23:57:56.678423+00 f t rejected D-Provincia 1478 1208 +7082 2025-11-08 01:35:05.473078+00 2025-11-08 01:35:05.473092+00 f t vet_accepted 1406 \N +7083 2025-11-08 01:56:24.812752+00 2025-11-08 01:56:24.812761+00 f t pending 1479 \N +7084 2025-11-08 03:06:25.377404+00 2025-11-08 03:06:25.377413+00 f t vet_accepted 1329 \N +7085 2025-11-08 12:11:32.20583+00 2025-11-08 12:11:32.205843+00 f t in_progress_vet 1479 1208 +7086 2025-11-08 12:27:38.949334+00 2025-11-08 12:27:38.949344+00 f t pending 1480 \N +7087 2025-11-08 12:29:56.973998+00 2025-11-08 12:29:56.974008+00 f t pending 1481 \N +7088 2025-11-08 12:30:21.879245+00 2025-11-08 12:30:21.879255+00 f t in_progress_vet 1481 1208 +7089 2025-11-08 12:37:43.957586+00 2025-11-08 12:37:43.957595+00 f t in_progress_vet 1480 1208 +7090 2025-11-08 13:24:03.719106+00 2025-11-08 13:24:03.719114+00 f t pending 1482 \N +7091 2025-11-08 13:36:35.015891+00 2025-11-08 13:36:35.0159+00 f t in_progress_vet 1482 1208 +7092 2025-11-08 13:37:28.493361+00 2025-11-08 13:37:28.493368+00 f t coordinated Solicitud coordinada para 2025-11-08 a las 11:30:00 1480 1208 +7093 2025-11-08 14:03:30.024973+00 2025-11-08 14:03:30.024981+00 f t coordinated Solicitud coordinada para 2025-11-08 a las 14:00:00 1482 1208 +7094 2025-11-08 14:04:49.430575+00 2025-11-08 14:04:49.430584+00 f t vet_accepted 1482 \N +7095 2025-11-08 14:04:49.44385+00 2025-11-08 14:04:49.443859+00 f t in_progress_pay 1482 \N +7096 2025-11-08 14:12:14.156953+00 2025-11-08 14:12:14.156966+00 f t pending 1483 \N +7097 2025-11-08 14:25:12.913129+00 2025-11-08 14:25:12.913137+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 18:00:00 1476 1208 +7098 2025-11-08 14:25:19.107471+00 2025-11-08 14:25:19.107482+00 f t Confirmado 1476 \N +7099 2025-11-08 14:25:19.072647+00 2025-11-08 14:25:19.072656+00 f t payed 1476 1208 +7100 2025-11-08 14:27:12.950749+00 2025-11-08 14:27:12.950758+00 f t in_progress_vet 1483 1208 +7101 2025-11-08 14:27:24.729225+00 2025-11-08 14:27:24.729235+00 f t rejected D-Averiguando / Desconocido 1483 1208 +7102 2025-11-08 15:21:31.648496+00 2025-11-08 15:21:31.648505+00 f t rejected D-Averiguando / Desconocido 1482 1208 +7103 2025-11-08 15:25:50.737896+00 2025-11-08 15:25:50.737906+00 f t rejected D-Averiguando / Desconocido 1480 1208 +7104 2025-11-08 15:26:05.713558+00 2025-11-08 15:26:05.71362+00 f t pending 1484 \N +7105 2025-11-08 15:26:41.881374+00 2025-11-08 15:26:41.881382+00 f t in_progress_vet 1484 1208 +7106 2025-11-08 15:26:51.443089+00 2025-11-08 15:26:51.443097+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 09:00:00 1484 1208 +7107 2025-11-08 16:05:00.660925+00 2025-11-08 16:05:00.660937+00 f t vet_accepted 1482 \N +7108 2025-11-08 16:05:00.677091+00 2025-11-08 16:05:00.6771+00 f t in_progress_pay 1482 \N +7109 2025-11-08 16:16:31.557142+00 2025-11-08 16:16:31.557151+00 f t rejected D-Abandono Bot 1482 1208 +7110 2025-11-08 17:15:20.863991+00 2025-11-08 17:15:20.864001+00 f t pending 1485 \N +7111 2025-11-08 17:26:38.517244+00 2025-11-08 17:26:38.517252+00 f t pending 1486 \N +7112 2025-11-08 17:27:27.107946+00 2025-11-08 17:27:27.107959+00 f t in_progress_vet 1486 1208 +7113 2025-11-08 17:34:12.303759+00 2025-11-08 17:34:12.303772+00 f t in_progress_vet 1485 1208 +7114 2025-11-08 17:47:52.336162+00 2025-11-08 17:47:52.33617+00 f t coordinated Solicitud coordinada para 2025-11-08 a las 15:30:00 1486 1208 +7115 2025-11-08 17:48:11.669615+00 2025-11-08 17:48:11.669628+00 f t vet_asked Veterinario asignado: Palummo Mariana 1486 1208 +7116 2025-11-08 17:48:16.954285+00 2025-11-08 17:48:16.954292+00 f t Confirmado 1486 \N +7117 2025-11-08 17:48:16.928428+00 2025-11-08 17:48:16.928436+00 f t payed 1486 1208 +7118 2025-11-08 17:55:17.362196+00 2025-11-08 17:55:17.362204+00 f t coordinated Solicitud coordinada para 2025-11-08 a las 16:00:00 1485 1208 +7119 2025-11-08 18:01:15.626225+00 2025-11-08 18:01:15.626234+00 f t vet_accepted 1485 \N +7120 2025-11-08 18:01:15.640208+00 2025-11-08 18:01:15.64022+00 f t in_progress_pay 1485 \N +7121 2025-11-08 18:03:21.622152+00 2025-11-08 18:03:21.622159+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 14:00:00 1481 1208 +7122 2025-11-08 18:03:33.872599+00 2025-11-08 18:03:33.872607+00 f t vet_asked Veterinario asignado: Campo Silvia 1481 1208 +7123 2025-11-08 18:03:48.854139+00 2025-11-08 18:03:48.854151+00 f t Confirmado 1481 \N +7124 2025-11-08 18:03:48.824715+00 2025-11-08 18:03:48.824725+00 f t payed 1481 1208 +7125 2025-11-08 18:22:11.357134+00 2025-11-08 18:22:11.357142+00 f t Confirmado 1485 \N +7126 2025-11-08 18:22:11.328194+00 2025-11-08 18:22:11.328203+00 f t payed 1485 1208 +7127 2025-11-08 18:23:16.965728+00 2025-11-08 18:23:16.965757+00 f t pending 1487 \N +7128 2025-11-08 18:24:27.016945+00 2025-11-08 18:24:27.016956+00 f t in_progress_vet 1487 1208 +7129 2025-11-08 18:28:06.09605+00 2025-11-08 18:28:06.096061+00 f t coordinated Solicitud coordinada para 2025-11-09 a las 10:00:00 1487 1208 +7130 2025-11-08 18:39:26.478139+00 2025-11-08 18:39:26.478147+00 f t pending 1488 \N +7131 2025-11-08 18:39:38.839705+00 2025-11-08 18:39:38.839712+00 f t in_progress_vet 1488 1208 +7132 2025-11-08 18:39:46.466808+00 2025-11-08 18:39:46.46682+00 f t coordinated Solicitud coordinada para 2025-11-09 a las 10:00:00 1488 1208 +7133 2025-11-08 18:39:54.488003+00 2025-11-08 18:39:54.488012+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1488 1208 +7134 2025-11-08 18:52:45.265739+00 2025-11-08 18:52:45.265748+00 f t vet_accepted 1485 \N +7135 2025-11-08 19:11:23.10064+00 2025-11-08 19:11:23.100649+00 f t pending 1489 \N +7136 2025-11-08 19:11:53.519986+00 2025-11-08 19:11:53.519994+00 f t in_progress_vet 1489 1208 +7137 2025-11-08 19:12:01.169426+00 2025-11-08 19:12:01.169434+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 13:30:00 1489 1208 +7138 2025-11-08 19:12:14.29163+00 2025-11-08 19:12:14.291639+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1489 1208 +7139 2025-11-08 19:14:30.211782+00 2025-11-08 19:14:30.211789+00 f t Confirmado 1489 \N +7140 2025-11-08 19:14:30.181796+00 2025-11-08 19:14:30.181804+00 f t payed 1489 1208 +7141 2025-11-08 19:15:39.137068+00 2025-11-08 19:15:39.137079+00 f t Confirmado 1488 \N +7142 2025-11-08 19:15:39.102966+00 2025-11-08 19:15:39.102974+00 f t payed 1488 1208 +7143 2025-11-08 19:35:14.274415+00 2025-11-08 19:35:14.274428+00 f t pending 1490 \N +7144 2025-11-08 19:35:32.621026+00 2025-11-08 19:35:32.621034+00 f t in_progress_vet 1490 1208 +7145 2025-11-08 19:36:35.774926+00 2025-11-08 19:36:35.774934+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 19:00:00 1490 1208 +7146 2025-11-08 19:36:44.277015+00 2025-11-08 19:36:44.277027+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1490 1208 +7147 2025-11-08 19:39:05.470659+00 2025-11-08 19:39:05.47067+00 f t Confirmado 1490 \N +7148 2025-11-08 19:39:05.430193+00 2025-11-08 19:39:05.430201+00 f t payed 1490 1208 +7149 2025-11-08 19:48:53.920887+00 2025-11-08 19:48:53.9209+00 f t pending 1491 \N +7150 2025-11-08 19:49:04.552928+00 2025-11-08 19:49:04.552939+00 f t in_progress_vet 1491 1208 +7151 2025-11-08 19:49:12.98826+00 2025-11-08 19:49:12.988268+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 20:00:00 1491 1208 +7152 2025-11-08 19:49:27.853159+00 2025-11-08 19:49:27.853168+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1491 1208 +7153 2025-11-08 19:49:45.957034+00 2025-11-08 19:49:45.957045+00 f t Confirmado 1491 \N +7154 2025-11-08 19:49:45.923558+00 2025-11-08 19:49:45.923566+00 f t payed 1491 1208 +7155 2025-11-08 19:50:02.688704+00 2025-11-08 19:50:02.688715+00 f t pending 1492 \N +7156 2025-11-08 19:50:13.039565+00 2025-11-08 19:50:13.039574+00 f t in_progress_vet 1492 1208 +7157 2025-11-08 19:50:20.182061+00 2025-11-08 19:50:20.182069+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 11:30:00 1492 1208 +7158 2025-11-08 19:50:42.909486+00 2025-11-08 19:50:42.909494+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1492 1208 +7159 2025-11-08 19:50:47.921504+00 2025-11-08 19:50:47.921515+00 f t Confirmado 1492 \N +7160 2025-11-08 19:50:47.891929+00 2025-11-08 19:50:47.891937+00 f t payed 1492 1208 +7161 2025-11-08 20:14:29.488544+00 2025-11-08 20:14:29.488553+00 f t rejected D-Provincia 1487 1208 +7162 2025-11-09 01:27:29.385686+00 2025-11-09 01:27:29.385696+00 f t pending 1493 \N +7163 2025-11-09 12:35:37.967864+00 2025-11-09 12:35:37.967871+00 f t in_progress_vet 1493 114 +7164 2025-11-09 12:35:55.909944+00 2025-11-09 12:35:55.909953+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 18:30:00 1493 114 +7165 2025-11-09 12:36:25.262591+00 2025-11-09 12:36:25.2626+00 f t vet_accepted 1493 \N +7166 2025-11-09 12:36:25.275293+00 2025-11-09 12:36:25.275303+00 f t in_progress_pay 1493 \N +7167 2025-11-09 12:36:26.830121+00 2025-11-09 12:36:26.830132+00 f t rejected Solicitud rechazada por Usuario no especificado 1493 \N +7168 2025-11-09 12:36:26.83872+00 2025-11-09 12:36:26.838728+00 f t in_progress_vet 1493 \N +7169 2025-11-09 12:43:09.108876+00 2025-11-09 12:43:09.108885+00 f t vet_accepted 1493 \N +7170 2025-11-09 12:43:09.127407+00 2025-11-09 12:43:09.127421+00 f t in_progress_pay 1493 \N +7171 2025-11-09 13:09:36.196552+00 2025-11-09 13:09:36.196559+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 10:00:00 1484 114 +7172 2025-11-09 13:44:30.614823+00 2025-11-09 13:44:30.614832+00 f t pending 1494 \N +7173 2025-11-09 13:45:36.441769+00 2025-11-09 13:45:36.441777+00 f t in_progress_vet 1494 114 +7174 2025-11-09 14:55:15.543563+00 2025-11-09 14:55:15.543572+00 f t vet_accepted 1493 \N +7175 2025-11-09 14:55:15.557284+00 2025-11-09 14:55:15.557292+00 f t in_progress_pay 1493 \N +7176 2025-11-09 14:55:45.676875+00 2025-11-09 14:55:45.676883+00 f t pending 1495 \N +7177 2025-11-09 14:57:56.489771+00 2025-11-09 14:57:56.489784+00 f t rejected D-Provincia 1494 114 +7178 2025-11-09 14:58:25.03555+00 2025-11-09 14:58:25.03556+00 f t in_progress_vet 1495 114 +7179 2025-11-09 15:00:46.261096+00 2025-11-09 15:00:46.261103+00 f t coordinated Solicitud coordinada para 2025-11-09 a las 13:30:00 1495 114 +7180 2025-11-09 15:03:52.143049+00 2025-11-09 15:03:52.143061+00 f t pending 1496 \N +7181 2025-11-09 15:05:59.321991+00 2025-11-09 15:05:59.322001+00 f t in_progress_vet 1496 114 +7182 2025-11-09 15:06:15.751524+00 2025-11-09 15:06:15.751534+00 f t coordinated Solicitud coordinada para 2025-11-09 a las 15:30:00 1496 114 +7183 2025-11-09 15:39:33.654851+00 2025-11-09 15:39:33.65486+00 f t rejected D-Emergencia 1495 114 +7184 2025-11-09 19:29:42.53012+00 2025-11-09 19:29:42.530127+00 f t pending 1497 \N +7185 2025-11-09 19:30:11.205892+00 2025-11-09 19:30:11.205901+00 f t in_progress_vet 1497 114 +7186 2025-11-09 19:30:25.405427+00 2025-11-09 19:30:25.405435+00 f t coordinated Solicitud coordinada para 2025-11-09 a las 11:00:00 1497 114 +7187 2025-11-09 19:31:07.350417+00 2025-11-09 19:31:07.350428+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1497 114 +7188 2025-11-09 19:31:08.305343+00 2025-11-09 19:31:08.305355+00 f t vet_accepted 1497 114 +7189 2025-11-09 19:31:08.321+00 2025-11-09 19:31:08.32101+00 f t in_progress_pay 1497 114 +7190 2025-11-09 19:31:17.045988+00 2025-11-09 19:31:17.045996+00 f t Confirmado 1497 \N +7191 2025-11-09 19:31:17.019332+00 2025-11-09 19:31:17.019341+00 f t payed 1497 114 +7192 2025-11-09 19:32:15.40354+00 2025-11-09 19:32:15.403548+00 f t pending 1498 \N +7193 2025-11-09 19:32:21.833225+00 2025-11-09 19:32:21.833233+00 f t in_progress_vet 1498 114 +7194 2025-11-09 19:32:39.652082+00 2025-11-09 19:32:39.652089+00 f t coordinated Solicitud coordinada para 2025-11-09 a las 19:30:00 1498 114 +7195 2025-11-09 19:32:58.848454+00 2025-11-09 19:32:58.848461+00 f t vet_asked Veterinario asignado: di Risio Daniela 1498 114 +7196 2025-11-09 19:33:00.635307+00 2025-11-09 19:33:00.635315+00 f t vet_accepted 1498 114 +7197 2025-11-09 19:33:00.648928+00 2025-11-09 19:33:00.648941+00 f t in_progress_pay 1498 114 +7198 2025-11-09 19:33:20.375217+00 2025-11-09 19:33:20.375226+00 f t Confirmado 1498 \N +7199 2025-11-09 19:33:20.346857+00 2025-11-09 19:33:20.346866+00 f t payed 1498 114 +7200 2025-11-09 19:42:58.798723+00 2025-11-09 19:42:58.798731+00 f t pending 1499 \N +7201 2025-11-09 19:43:30.239052+00 2025-11-09 19:43:30.239063+00 f t pending 1500 \N +7202 2025-11-09 19:43:49.293354+00 2025-11-09 19:43:49.293363+00 f t pending 1501 \N +7203 2025-11-09 19:44:33.098659+00 2025-11-09 19:44:33.098667+00 f t in_progress_vet 1499 114 +7204 2025-11-09 19:44:42.677959+00 2025-11-09 19:44:42.677967+00 f t coordinated Solicitud coordinada para 2025-11-09 a las 12:30:00 1499 114 +7205 2025-11-09 19:45:16.990811+00 2025-11-09 19:45:16.99082+00 f t vet_asked Veterinario asignado: Palummo Mariana 1499 114 +7206 2025-11-09 19:45:18.015268+00 2025-11-09 19:45:18.015281+00 f t vet_accepted 1499 114 +7207 2025-11-09 19:45:18.036398+00 2025-11-09 19:45:18.036411+00 f t in_progress_pay 1499 114 +7208 2025-11-09 19:45:26.441912+00 2025-11-09 19:45:26.441922+00 f t Confirmado 1499 \N +7209 2025-11-09 19:45:26.409011+00 2025-11-09 19:45:26.409023+00 f t payed 1499 114 +7210 2025-11-09 19:46:10.819648+00 2025-11-09 19:46:10.819657+00 f t in_progress_vet 1500 114 +7211 2025-11-09 19:46:37.000102+00 2025-11-09 19:46:37.000113+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 15:30:00 1500 114 +7212 2025-11-09 19:46:56.253446+00 2025-11-09 19:46:56.253454+00 f t vet_asked Veterinario asignado: di Risio Daniela 1500 114 +7213 2025-11-09 19:46:57.350575+00 2025-11-09 19:46:57.350587+00 f t vet_accepted 1500 114 +7214 2025-11-09 19:46:57.36561+00 2025-11-09 19:46:57.36562+00 f t in_progress_pay 1500 114 +7215 2025-11-09 19:47:37.2593+00 2025-11-09 19:47:37.259307+00 f t Confirmado 1500 \N +7216 2025-11-09 19:47:37.231671+00 2025-11-09 19:47:37.231679+00 f t payed 1500 114 +7217 2025-11-09 19:48:24.656136+00 2025-11-09 19:48:24.656146+00 f t in_progress_vet 1501 114 +7218 2025-11-09 19:48:39.415469+00 2025-11-09 19:48:39.415477+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 17:00:00 1501 114 +7219 2025-11-09 19:50:33.071145+00 2025-11-09 19:50:33.071165+00 f t payed 1501 114 +7220 2025-11-09 19:51:29.263893+00 2025-11-09 19:51:29.263902+00 f t Confirmado 1501 \N +7221 2025-11-09 19:51:30.211313+00 2025-11-09 19:51:30.211326+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1501 114 +7222 2025-11-09 19:51:31.811309+00 2025-11-09 19:51:31.811318+00 f t vet_accepted 1501 114 +7223 2025-11-09 19:58:26.316844+00 2025-11-09 19:58:26.316854+00 f t pending 1502 \N +7224 2025-11-09 19:58:45.898421+00 2025-11-09 19:58:45.898434+00 f t in_progress_vet 1502 114 +7225 2025-11-09 19:58:56.24183+00 2025-11-09 19:58:56.241837+00 f t coordinated Solicitud coordinada para 2025-11-09 a las 18:00:00 1502 114 +7226 2025-11-09 19:59:15.706514+00 2025-11-09 19:59:15.706522+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1502 114 +7227 2025-11-09 19:59:16.75594+00 2025-11-09 19:59:16.755948+00 f t vet_accepted 1502 114 +7228 2025-11-09 19:59:16.768979+00 2025-11-09 19:59:16.768988+00 f t in_progress_pay 1502 114 +7229 2025-11-09 19:59:20.791877+00 2025-11-09 19:59:20.791888+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1502 114 +7230 2025-11-09 19:59:29.66931+00 2025-11-09 19:59:29.669319+00 f t pending 1503 \N +7231 2025-11-09 19:59:34.114896+00 2025-11-09 19:59:34.114909+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1502 114 +7232 2025-11-09 19:59:35.245433+00 2025-11-09 19:59:35.245441+00 f t vet_accepted 1502 114 +7233 2025-11-09 19:59:35.259629+00 2025-11-09 19:59:35.259637+00 f t in_progress_pay 1502 114 +7234 2025-11-09 20:00:39.066848+00 2025-11-09 20:00:39.06686+00 f t Confirmado 1502 \N +7235 2025-11-09 20:00:39.02419+00 2025-11-09 20:00:39.024201+00 f t payed 1502 114 +7236 2025-11-09 20:03:49.154555+00 2025-11-09 20:03:49.154564+00 f t pending 1504 \N +7237 2025-11-09 20:03:54.988269+00 2025-11-09 20:03:54.988281+00 f t in_progress_vet 1504 114 +7238 2025-11-09 20:04:36.212738+00 2025-11-09 20:04:36.212746+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 15:30:00 1504 114 +7239 2025-11-09 20:04:52.65353+00 2025-11-09 20:04:52.653538+00 f t vet_asked Veterinario asignado: Vecino Carolina 1504 114 +7240 2025-11-09 20:04:53.58519+00 2025-11-09 20:04:53.585202+00 f t vet_accepted 1504 114 +7241 2025-11-09 20:04:53.599059+00 2025-11-09 20:04:53.599071+00 f t in_progress_pay 1504 114 +7242 2025-11-09 20:06:12.409836+00 2025-11-09 20:06:12.409844+00 f t Confirmado 1504 \N +7243 2025-11-09 20:06:12.382198+00 2025-11-09 20:06:12.382206+00 f t payed 1504 114 +7244 2025-11-09 20:10:07.917332+00 2025-11-09 20:10:07.917346+00 f t pending 1505 \N +7245 2025-11-09 20:10:30.215738+00 2025-11-09 20:10:30.215747+00 f t in_progress_vet 1505 114 +7246 2025-11-09 20:10:40.304697+00 2025-11-09 20:10:40.304707+00 f t coordinated Solicitud coordinada para 2025-11-09 a las 19:30:00 1505 114 +7247 2025-11-09 20:12:21.781459+00 2025-11-09 20:12:21.781468+00 f t vet_asked Veterinario asignado: Memed Nestor 1505 114 +7248 2025-11-09 20:12:22.779794+00 2025-11-09 20:12:22.779801+00 f t vet_accepted 1505 114 +7249 2025-11-09 20:12:22.793149+00 2025-11-09 20:12:22.793158+00 f t in_progress_pay 1505 114 +7250 2025-11-09 20:13:38.888151+00 2025-11-09 20:13:38.888159+00 f t Confirmado 1505 \N +7251 2025-11-09 20:13:38.861167+00 2025-11-09 20:13:38.861177+00 f t payed 1505 114 +7252 2025-11-09 20:14:56.364913+00 2025-11-09 20:14:56.364923+00 f t Confirmado 1493 \N +7253 2025-11-09 20:14:56.322968+00 2025-11-09 20:14:56.32298+00 f t payed 1493 114 +7254 2025-11-09 20:21:24.376329+00 2025-11-09 20:21:24.37634+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 16:00:00 1484 114 +7255 2025-11-09 20:21:54.719216+00 2025-11-09 20:21:54.719223+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1484 114 +7256 2025-11-09 20:21:55.841041+00 2025-11-09 20:21:55.84105+00 f t vet_accepted 1484 114 +7257 2025-11-09 20:21:55.856836+00 2025-11-09 20:21:55.856849+00 f t in_progress_pay 1484 114 +7258 2025-11-09 20:22:21.972918+00 2025-11-09 20:22:21.972928+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 16:00:00 1484 114 +7259 2025-11-09 20:25:50.000125+00 2025-11-09 20:25:50.000134+00 f t Confirmado 1484 \N +7260 2025-11-09 20:25:49.971228+00 2025-11-09 20:25:49.971236+00 f t payed 1484 114 +7261 2025-11-10 01:03:37.305166+00 2025-11-10 01:03:37.305175+00 f t vet_accepted 1493 \N +7262 2025-11-10 01:38:23.931763+00 2025-11-10 01:38:23.931773+00 f t pending 1506 \N +7263 2025-11-10 04:00:25.269674+00 2025-11-10 04:00:25.269685+00 f t pending 1507 \N +7264 2025-11-10 11:57:59.571875+00 2025-11-10 11:57:59.571887+00 f t in_progress_vet 1503 1583 +7265 2025-11-10 11:58:12.085027+00 2025-11-10 11:58:12.085036+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 16:00:00 1503 1583 +7266 2025-11-10 12:00:04.940319+00 2025-11-10 12:00:04.940333+00 f t in_progress_vet 1506 1583 +7267 2025-11-10 12:00:41.032378+00 2025-11-10 12:00:41.032386+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 11:30:00 1506 1583 +7268 2025-11-10 12:03:35.883328+00 2025-11-10 12:03:35.883336+00 f t vet_accepted 1506 \N +7269 2025-11-10 12:03:35.897567+00 2025-11-10 12:03:35.897576+00 f t in_progress_pay 1506 \N +7270 2025-11-10 12:03:37.481337+00 2025-11-10 12:03:37.481345+00 f t rejected Solicitud rechazada por Usuario no especificado 1506 \N +7271 2025-11-10 12:03:37.49031+00 2025-11-10 12:03:37.490318+00 f t in_progress_vet 1506 \N +7272 2025-11-10 12:05:29.613811+00 2025-11-10 12:05:29.613819+00 f t in_progress_vet 1507 1583 +7273 2025-11-10 12:05:52.253742+00 2025-11-10 12:05:52.253751+00 f t vet_accepted 1506 \N +7274 2025-11-10 12:05:52.267913+00 2025-11-10 12:05:52.267923+00 f t in_progress_pay 1506 \N +7275 2025-11-10 12:47:42.861334+00 2025-11-10 12:47:42.861343+00 f t rejected D-Sin Turno 1496 1583 +7276 2025-11-10 13:02:52.705527+00 2025-11-10 13:02:52.705536+00 f t pending 1508 \N +7277 2025-11-10 13:46:28.914616+00 2025-11-10 13:46:28.914627+00 f t pending 1509 \N +7278 2025-11-10 13:46:47.458456+00 2025-11-10 13:46:47.458467+00 f t in_progress_vet 1509 1583 +7279 2025-11-10 13:46:57.467603+00 2025-11-10 13:46:57.467614+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 17:30:00 1509 1583 +7280 2025-11-10 13:47:04.308381+00 2025-11-10 13:47:04.308394+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1509 1583 +7281 2025-11-10 13:47:05.096792+00 2025-11-10 13:47:05.096802+00 f t vet_accepted 1509 1583 +7282 2025-11-10 13:47:05.113184+00 2025-11-10 13:47:05.113194+00 f t in_progress_pay 1509 1583 +7283 2025-11-10 13:47:21.180285+00 2025-11-10 13:47:21.180293+00 f t Confirmado 1509 \N +7284 2025-11-10 13:47:21.152697+00 2025-11-10 13:47:21.152705+00 f t payed 1509 1583 +7285 2025-11-10 13:51:18.030405+00 2025-11-10 13:51:18.030415+00 f t in_progress_vet 1508 1583 +7286 2025-11-10 13:51:25.214139+00 2025-11-10 13:51:25.21415+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 16:00:00 1508 1583 +7287 2025-11-10 13:54:23.421478+00 2025-11-10 13:54:23.421486+00 f t vet_accepted 1508 \N +7288 2025-11-10 13:54:23.434545+00 2025-11-10 13:54:23.434555+00 f t in_progress_pay 1508 \N +7289 2025-11-10 13:54:59.951006+00 2025-11-10 13:54:59.951016+00 f t vet_accepted 1508 \N +7290 2025-11-10 13:54:59.96804+00 2025-11-10 13:54:59.968053+00 f t in_progress_pay 1508 \N +7291 2025-11-10 13:55:29.989853+00 2025-11-10 13:55:29.989861+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 15:00:00 1503 1583 +7292 2025-11-10 13:55:42.769427+00 2025-11-10 13:55:42.769436+00 f t vet_asked Veterinario asignado: Passio Laura 1503 1583 +7293 2025-11-10 13:55:43.414279+00 2025-11-10 13:55:43.414287+00 f t vet_accepted 1503 1583 +7294 2025-11-10 13:55:43.427233+00 2025-11-10 13:55:43.427245+00 f t in_progress_pay 1503 1583 +7295 2025-11-10 13:55:46.139146+00 2025-11-10 13:55:46.139157+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1503 1583 +7296 2025-11-10 13:55:51.856105+00 2025-11-10 13:55:51.856118+00 f t vet_asked Veterinario asignado: Passio Laura 1503 1583 +7297 2025-11-10 13:55:52.573142+00 2025-11-10 13:55:52.573151+00 f t vet_accepted 1503 1583 +7298 2025-11-10 13:55:52.585862+00 2025-11-10 13:55:52.58587+00 f t in_progress_pay 1503 1583 +7299 2025-11-10 13:56:08.290325+00 2025-11-10 13:56:08.290337+00 f t Confirmado 1503 \N +7300 2025-11-10 13:56:08.254155+00 2025-11-10 13:56:08.254166+00 f t payed 1503 1583 +7301 2025-11-10 14:21:02.558273+00 2025-11-10 14:21:02.558336+00 f t pending 1510 \N +7302 2025-11-10 14:21:40.458746+00 2025-11-10 14:21:40.458755+00 f t in_progress_vet 1510 1583 +7303 2025-11-10 14:21:47.442083+00 2025-11-10 14:21:47.44209+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 13:00:00 1510 1583 +7304 2025-11-10 14:28:55.188992+00 2025-11-10 14:28:55.189002+00 f t vet_accepted 1510 \N +7305 2025-11-10 14:28:55.202877+00 2025-11-10 14:28:55.202889+00 f t in_progress_pay 1510 \N +7306 2025-11-10 14:37:55.574145+00 2025-11-10 14:37:55.574155+00 f t pending 1511 \N +7307 2025-11-10 14:42:39.252082+00 2025-11-10 14:42:39.252092+00 f t in_progress_vet 1511 1583 +7308 2025-11-10 14:44:48.798879+00 2025-11-10 14:44:48.798894+00 f t Confirmado 1508 \N +7309 2025-11-10 14:44:48.7324+00 2025-11-10 14:44:48.73241+00 f t payed 1508 1583 +7310 2025-11-10 14:53:11.593619+00 2025-11-10 14:53:11.59363+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 16:00:00 1511 1583 +7311 2025-11-10 14:54:56.676845+00 2025-11-10 14:54:56.676853+00 f t vet_accepted 1510 \N +7312 2025-11-10 14:54:56.676702+00 2025-11-10 14:54:56.676711+00 f t vet_accepted 1511 \N +7313 2025-11-10 14:54:56.690044+00 2025-11-10 14:54:56.690054+00 f t in_progress_pay 1510 \N +7314 2025-11-10 14:54:56.690103+00 2025-11-10 14:54:56.690111+00 f t in_progress_pay 1511 \N +7315 2025-11-10 15:04:11.483048+00 2025-11-10 15:04:11.483059+00 f t Confirmado 1510 \N +7316 2025-11-10 15:04:11.439904+00 2025-11-10 15:04:11.439917+00 f t payed 1510 1583 +7317 2025-11-10 15:08:33.070628+00 2025-11-10 15:08:33.070637+00 f t Confirmado 1511 \N +7318 2025-11-10 15:08:39.618201+00 2025-11-10 15:08:39.618209+00 f t payed 1511 1583 +7319 2025-11-10 15:19:32.09655+00 2025-11-10 15:19:32.09656+00 f t pending 1512 \N +7320 2025-11-10 15:20:44.505684+00 2025-11-10 15:20:44.505694+00 f t pending 1513 \N +7321 2025-11-10 15:30:08.455534+00 2025-11-10 15:30:08.455543+00 f t vet_accepted 1511 \N +7322 2025-11-10 15:31:29.327203+00 2025-11-10 15:31:29.327212+00 f t pending 1514 \N +7323 2025-11-10 15:36:39.078464+00 2025-11-10 15:36:39.078474+00 f t in_progress_vet 1514 1583 +7324 2025-11-10 15:37:12.75567+00 2025-11-10 15:37:12.755678+00 f t in_progress_vet 1513 1583 +7325 2025-11-10 15:37:24.926839+00 2025-11-10 15:37:24.926847+00 f t rejected D-Sin seguimiento 1512 1583 +7326 2025-11-10 15:52:35.663442+00 2025-11-10 15:52:35.663452+00 f t rejected D-Abandono Bot 1507 1583 +7327 2025-11-10 16:22:49.023098+00 2025-11-10 16:22:49.023108+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 18:00:00 1506 1583 +7328 2025-11-10 16:24:59.305623+00 2025-11-10 16:24:59.305631+00 f t Confirmado 1506 \N +7329 2025-11-10 16:24:59.267972+00 2025-11-10 16:24:59.267984+00 f t payed 1506 1583 +7330 2025-11-10 16:40:11.549776+00 2025-11-10 16:40:11.54979+00 f t pending 1515 \N +7331 2025-11-10 16:40:32.689674+00 2025-11-10 16:40:32.689686+00 f t in_progress_vet 1515 1583 +7332 2025-11-10 16:40:58.417806+00 2025-11-10 16:40:58.417813+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 16:00:00 1515 1583 +7333 2025-11-10 17:44:28.35265+00 2025-11-10 17:44:28.352659+00 f t rejected D-Emergencia 1372 1583 +7334 2025-11-10 17:44:40.445618+00 2025-11-10 17:44:40.445629+00 f t rejected D-Emergencia 1372 1583 +7335 2025-11-10 18:58:32.198369+00 2025-11-10 18:58:32.198378+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 11:00:00 1514 1583 +7336 2025-11-10 19:53:51.169756+00 2025-11-10 19:53:51.169763+00 f t pending 1516 \N +7337 2025-11-10 19:54:05.179772+00 2025-11-10 19:54:05.179779+00 f t in_progress_vet 1516 1583 +7338 2025-11-10 19:54:08.650208+00 2025-11-10 19:54:08.650219+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 15:00:00 1516 1583 +7339 2025-11-10 19:54:13.756076+00 2025-11-10 19:54:13.756091+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1516 1583 +7340 2025-11-10 19:54:14.459564+00 2025-11-10 19:54:14.459573+00 f t vet_accepted 1516 1583 +7341 2025-11-10 19:54:14.474993+00 2025-11-10 19:54:14.475003+00 f t in_progress_pay 1516 1583 +7342 2025-11-10 19:54:40.780509+00 2025-11-10 19:54:40.780526+00 f t pending 1517 \N +7343 2025-11-10 19:54:53.642926+00 2025-11-10 19:54:53.642948+00 f t in_progress_vet 1517 1583 +7344 2025-11-10 19:54:59.127116+00 2025-11-10 19:54:59.127159+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 11:00:00 1517 1583 +7345 2025-11-10 19:56:12.349988+00 2025-11-10 19:56:12.350023+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1517 1583 +7346 2025-11-10 19:56:18.525273+00 2025-11-10 19:56:18.525285+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1517 1583 +7347 2025-11-10 19:56:20.271016+00 2025-11-10 19:56:20.271027+00 f t vet_accepted 1517 1583 +7348 2025-11-10 19:56:20.284727+00 2025-11-10 19:56:20.284736+00 f t in_progress_pay 1517 1583 +7349 2025-11-10 19:57:34.699836+00 2025-11-10 19:57:34.69985+00 f t pending 1518 \N +7350 2025-11-10 19:58:19.723634+00 2025-11-10 19:58:19.723647+00 f t coordinated Solicitud coordinada para 2025-11-15 a las 15:00:00 1518 1583 +7351 2025-11-10 19:58:25.709616+00 2025-11-10 19:58:25.709634+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1518 1583 +7352 2025-11-10 19:58:27.044201+00 2025-11-10 19:58:27.044219+00 f t vet_accepted 1518 1583 +7353 2025-11-10 19:58:27.058512+00 2025-11-10 19:58:27.058524+00 f t in_progress_pay 1518 1583 +7354 2025-11-10 20:17:55.830322+00 2025-11-10 20:17:55.830332+00 f t pending 1519 \N +7355 2025-11-10 20:19:10.625099+00 2025-11-10 20:19:10.625109+00 f t pending 1520 \N +7356 2025-11-10 20:19:53.628345+00 2025-11-10 20:19:53.628357+00 f t in_progress_vet 1519 114 +7357 2025-11-10 20:20:38.969605+00 2025-11-10 20:20:38.969614+00 f t in_progress_vet 1520 114 +7358 2025-11-10 20:20:56.165776+00 2025-11-10 20:20:56.165784+00 f t coordinated Solicitud coordinada para 2025-11-10 a las 19:00:00 1520 114 +7359 2025-11-10 20:44:17.811911+00 2025-11-10 20:44:17.811921+00 f t pending 1521 \N +7360 2025-11-10 20:45:15.423786+00 2025-11-10 20:45:15.423795+00 f t in_progress_vet 1521 114 +7361 2025-11-10 21:36:32.268659+00 2025-11-10 21:36:32.268669+00 f t rejected D-Averiguando / Desconocido 1520 114 +7362 2025-11-10 22:34:05.767398+00 2025-11-10 22:34:05.767407+00 f t rejected D-Averiguando / Desconocido 1519 114 +7363 2025-11-10 23:11:05.083535+00 2025-11-10 23:11:05.083545+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 18:00:00 1417 114 +7364 2025-11-10 23:14:49.06992+00 2025-11-10 23:14:49.069929+00 f t Confirmado 1516 \N +7365 2025-11-10 23:14:49.0434+00 2025-11-10 23:14:49.043408+00 f t payed 1516 1583 +7366 2025-11-10 23:15:00.148428+00 2025-11-10 23:15:00.148436+00 f t Confirmado 1517 \N +7367 2025-11-10 23:15:00.110257+00 2025-11-10 23:15:00.110271+00 f t payed 1517 1583 +7368 2025-11-10 23:15:58.041298+00 2025-11-10 23:15:58.041307+00 f t vet_asked Veterinario asignado: Gallardo Juan Manuel 1514 1583 +7369 2025-11-10 23:15:58.74835+00 2025-11-10 23:15:58.748358+00 f t vet_accepted 1514 1583 +7370 2025-11-10 23:15:58.759449+00 2025-11-10 23:15:58.759458+00 f t in_progress_pay 1514 1583 +7371 2025-11-10 23:16:12.412237+00 2025-11-10 23:16:12.412245+00 f t Confirmado 1514 \N +7372 2025-11-10 23:16:12.38183+00 2025-11-10 23:16:12.381838+00 f t payed 1514 1583 +7373 2025-11-10 23:31:15.172751+00 2025-11-10 23:31:15.172759+00 f t rejected D-Abandono Bot 1513 1583 +7374 2025-11-10 23:40:42.625681+00 2025-11-10 23:40:42.625691+00 f t pending 1522 \N +7375 2025-11-10 23:41:07.791885+00 2025-11-10 23:41:07.791897+00 f t in_progress_vet 1522 114 +7376 2025-11-10 23:41:14.182849+00 2025-11-10 23:41:14.182858+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 14:00:00 1522 114 +7377 2025-11-10 23:42:41.883461+00 2025-11-10 23:42:41.883471+00 f t payed 1522 114 +7378 2025-11-10 23:42:54.411895+00 2025-11-10 23:42:54.411904+00 f t Confirmado 1522 \N +7379 2025-11-10 23:42:56.027235+00 2025-11-10 23:42:56.027248+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1522 114 +7380 2025-11-10 23:42:57.254279+00 2025-11-10 23:42:57.254291+00 f t vet_accepted 1522 114 +7381 2025-11-10 23:43:03.188877+00 2025-11-10 23:43:03.188888+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1522 114 +7382 2025-11-10 23:43:04.232035+00 2025-11-10 23:43:04.232049+00 f t vet_accepted 1522 114 +7383 2025-11-10 23:48:45.58382+00 2025-11-10 23:48:45.583829+00 f t pending 1523 \N +7384 2025-11-10 23:48:53.209357+00 2025-11-10 23:48:53.209373+00 f t in_progress_vet 1523 114 +7464 2025-11-11 19:12:54.92282+00 2025-11-11 19:12:54.922833+00 f t in_progress_pay 1534 \N +7385 2025-11-10 23:50:18.061059+00 2025-11-10 23:50:18.061361+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1523 114 +7386 2025-11-10 23:50:19.423505+00 2025-11-10 23:50:19.423939+00 f t vet_accepted 1523 114 +7387 2025-11-10 23:50:19.468442+00 2025-11-10 23:50:19.468469+00 f t in_progress_pay 1523 114 +7388 2025-11-10 23:50:54.814165+00 2025-11-10 23:50:54.814176+00 f t Confirmado 1523 \N +7389 2025-11-10 23:50:54.769568+00 2025-11-10 23:50:54.77026+00 f t payed 1523 114 +7390 2025-11-11 00:09:38.280838+00 2025-11-11 00:09:38.280867+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 20:30:00 1457 114 +7391 2025-11-11 03:03:13.071969+00 2025-11-11 03:03:13.071979+00 f t pending 1524 \N +7392 2025-11-11 10:44:40.257429+00 2025-11-11 10:44:40.257439+00 f t pending 1525 \N +7393 2025-11-11 12:18:26.095225+00 2025-11-11 12:18:26.095237+00 f t in_progress_vet 1524 1208 +7394 2025-11-11 13:17:24.026864+00 2025-11-11 13:17:24.026874+00 f t in_progress_vet 1525 1208 +7395 2025-11-11 13:22:38.121298+00 2025-11-11 13:22:38.121305+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 18:00:00 1524 1208 +7396 2025-11-11 13:25:33.647407+00 2025-11-11 13:25:33.647417+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 17:00:00 1525 1208 +7397 2025-11-11 13:27:19.193291+00 2025-11-11 13:27:19.193301+00 f t pending 1526 \N +7398 2025-11-11 13:28:11.669304+00 2025-11-11 13:28:11.669311+00 f t in_progress_vet 1526 1208 +7399 2025-11-11 13:28:22.842026+00 2025-11-11 13:28:22.842033+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 11:30:00 1526 1208 +7400 2025-11-11 13:45:10.159911+00 2025-11-11 13:45:10.159922+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 12:00:00 1526 1208 +7401 2025-11-11 13:45:54.144456+00 2025-11-11 13:45:54.144464+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1526 1208 +7402 2025-11-11 13:46:26.883266+00 2025-11-11 13:46:26.883272+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 18:00:00 1525 1208 +7403 2025-11-11 13:46:54.293747+00 2025-11-11 13:46:54.293755+00 f t vet_accepted 1526 \N +7404 2025-11-11 13:46:54.306747+00 2025-11-11 13:46:54.306756+00 f t in_progress_pay 1526 \N +7405 2025-11-11 13:46:59.776591+00 2025-11-11 13:46:59.7766+00 f t vet_accepted 1525 \N +7406 2025-11-11 13:46:59.788463+00 2025-11-11 13:46:59.788472+00 f t in_progress_pay 1525 \N +7407 2025-11-11 13:47:01.55816+00 2025-11-11 13:47:01.558168+00 f t rejected Solicitud rechazada por Usuario no especificado 1525 \N +7408 2025-11-11 13:47:01.567242+00 2025-11-11 13:47:01.56725+00 f t in_progress_vet 1525 \N +7409 2025-11-11 13:54:49.822439+00 2025-11-11 13:54:49.822451+00 f t pending 1527 \N +7410 2025-11-11 13:55:18.281111+00 2025-11-11 13:55:18.28112+00 f t in_progress_vet 1527 1208 +7411 2025-11-11 13:55:25.270345+00 2025-11-11 13:55:25.270358+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 13:30:00 1527 1208 +7412 2025-11-11 13:55:40.147927+00 2025-11-11 13:55:40.147939+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1527 1208 +7413 2025-11-11 13:56:10.109835+00 2025-11-11 13:56:10.109845+00 f t Confirmado 1526 \N +7414 2025-11-11 13:56:10.074399+00 2025-11-11 13:56:10.074408+00 f t payed 1526 1208 +7415 2025-11-11 13:56:19.897485+00 2025-11-11 13:56:19.897493+00 f t Confirmado 1527 \N +7416 2025-11-11 13:56:19.871071+00 2025-11-11 13:56:19.87108+00 f t payed 1527 1208 +7417 2025-11-11 14:17:04.89405+00 2025-11-11 14:17:04.894064+00 f t pending 1528 \N +7418 2025-11-11 14:17:07.774869+00 2025-11-11 14:17:07.774883+00 f t pending 1529 \N +7419 2025-11-11 14:17:17.356644+00 2025-11-11 14:17:17.356652+00 f t in_progress_vet 1529 1583 +7420 2025-11-11 14:17:24.116681+00 2025-11-11 14:17:24.116691+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 10:00:00 1529 1583 +7421 2025-11-11 14:17:53.387571+00 2025-11-11 14:17:53.387582+00 f t pending 1530 \N +7422 2025-11-11 14:18:48.415873+00 2025-11-11 14:18:48.415883+00 f t in_progress_vet 1530 1208 +7423 2025-11-11 14:19:10.624703+00 2025-11-11 14:19:10.624712+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 16:00:00 1530 1208 +7424 2025-11-11 14:29:10.093431+00 2025-11-11 14:29:10.093442+00 f t pending 1531 \N +7425 2025-11-11 14:29:48.116915+00 2025-11-11 14:29:48.11693+00 f t in_progress_vet 1531 1208 +7426 2025-11-11 14:37:59.562191+00 2025-11-11 14:37:59.5622+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 16:00:00 1531 1208 +7427 2025-11-11 14:43:17.892049+00 2025-11-11 14:43:17.892058+00 f t vet_accepted 1531 \N +7428 2025-11-11 14:43:17.906068+00 2025-11-11 14:43:17.906076+00 f t in_progress_pay 1531 \N +7429 2025-11-11 14:54:45.86309+00 2025-11-11 14:54:45.863099+00 f t pending 1532 \N +7430 2025-11-11 14:55:08.44751+00 2025-11-11 14:55:08.447521+00 f t in_progress_vet 1532 1583 +7431 2025-11-11 14:57:08.733951+00 2025-11-11 14:57:08.733961+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 17:00:00 1532 1583 +7432 2025-11-11 15:09:34.153546+00 2025-11-11 15:09:34.153556+00 f t vet_accepted 1532 \N +7433 2025-11-11 15:09:34.168126+00 2025-11-11 15:09:34.168136+00 f t in_progress_pay 1532 \N +7434 2025-11-11 15:12:33.59788+00 2025-11-11 15:12:33.597892+00 f t pending 1533 \N +7435 2025-11-11 15:18:46.894796+00 2025-11-11 15:18:46.894806+00 f t rejected D-Abandono Bot 1524 1208 +7436 2025-11-11 15:19:23.836163+00 2025-11-11 15:19:23.836175+00 f t in_progress_vet 1533 1208 +7437 2025-11-11 15:58:36.952024+00 2025-11-11 15:58:36.952033+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 12:00:00 1533 1208 +7438 2025-11-11 16:00:22.879293+00 2025-11-11 16:00:22.879305+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 19:30:00 1529 1583 +7439 2025-11-11 16:01:13.590572+00 2025-11-11 16:01:13.590584+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1529 1583 +7440 2025-11-11 16:01:14.177985+00 2025-11-11 16:01:14.177997+00 f t vet_accepted 1529 1583 +7441 2025-11-11 16:01:14.194936+00 2025-11-11 16:01:14.194945+00 f t in_progress_pay 1529 1583 +7442 2025-11-11 16:01:27.13901+00 2025-11-11 16:01:27.139021+00 f t Confirmado 1529 \N +7443 2025-11-11 16:01:27.103106+00 2025-11-11 16:01:27.103116+00 f t payed 1529 1583 +7444 2025-11-11 16:14:02.83051+00 2025-11-11 16:14:02.830521+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 16:30:00 1531 1208 +7445 2025-11-11 16:14:38.105446+00 2025-11-11 16:14:38.105454+00 f t Confirmado 1531 \N +7446 2025-11-11 16:14:38.073435+00 2025-11-11 16:14:38.073444+00 f t payed 1531 1208 +7447 2025-11-11 16:31:42.749166+00 2025-11-11 16:31:42.749174+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 18:00:00 1530 1208 +7448 2025-11-11 16:31:49.781189+00 2025-11-11 16:31:49.781197+00 f t vet_asked Veterinario asignado: Herrera Daniela 1530 1208 +7449 2025-11-11 16:39:51.336371+00 2025-11-11 16:39:51.336378+00 f t Confirmado 1530 \N +7450 2025-11-11 16:39:51.309667+00 2025-11-11 16:39:51.309676+00 f t payed 1530 1208 +7451 2025-11-11 17:09:07.095299+00 2025-11-11 17:09:07.095307+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 09:00:00 1533 1208 +7452 2025-11-11 17:09:17.827719+00 2025-11-11 17:09:17.827727+00 f t vet_asked Veterinario asignado: Palummo Mariana 1533 1208 +7453 2025-11-11 17:15:13.302522+00 2025-11-11 17:15:13.302532+00 f t Confirmado 1533 \N +7454 2025-11-11 17:15:13.247392+00 2025-11-11 17:15:13.247403+00 f t payed 1533 1208 +7455 2025-11-11 17:58:11.602943+00 2025-11-11 17:58:11.602952+00 f t rejected D-Averiguando / Desconocido 1525 1208 +7456 2025-11-11 18:24:47.548921+00 2025-11-11 18:24:47.548931+00 f t pending 1534 \N +7457 2025-11-11 18:25:32.565439+00 2025-11-11 18:25:32.565449+00 f t in_progress_vet 1534 1208 +7458 2025-11-11 18:32:42.404211+00 2025-11-11 18:32:42.404221+00 f t rejected D-Abandono Bot 1532 1583 +7459 2025-11-11 18:35:51.697338+00 2025-11-11 18:35:51.697348+00 f t rejected D-Abandono Bot 1521 1583 +7460 2025-11-11 19:10:03.82159+00 2025-11-11 19:10:03.821609+00 f t pending 1535 \N +7461 2025-11-11 19:12:00.428068+00 2025-11-11 19:12:00.428078+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 19:00:00 1534 1208 +7462 2025-11-11 19:12:30.520135+00 2025-11-11 19:12:30.520145+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 20:00:00 1534 1208 +7463 2025-11-11 19:12:54.908119+00 2025-11-11 19:12:54.908133+00 f t vet_accepted 1534 \N +7465 2025-11-11 19:12:56.797533+00 2025-11-11 19:12:56.797541+00 f t rejected Solicitud rechazada por Usuario no especificado 1534 \N +7466 2025-11-11 19:12:56.805841+00 2025-11-11 19:12:56.805906+00 f t in_progress_vet 1534 \N +7467 2025-11-11 19:14:56.555261+00 2025-11-11 19:14:56.55527+00 f t in_progress_vet 1535 1208 +7468 2025-11-11 19:16:59.237579+00 2025-11-11 19:16:59.237588+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 16:00:00 1535 1208 +7469 2025-11-11 19:19:25.977355+00 2025-11-11 19:19:25.977368+00 f t vet_accepted 1535 \N +7470 2025-11-11 19:19:25.991582+00 2025-11-11 19:19:25.991591+00 f t in_progress_pay 1535 \N +7471 2025-11-11 19:19:28.268849+00 2025-11-11 19:19:28.268856+00 f t rejected Solicitud rechazada por Usuario no especificado 1535 \N +7472 2025-11-11 19:19:28.276669+00 2025-11-11 19:19:28.276676+00 f t in_progress_vet 1535 \N +7473 2025-11-11 19:19:32.282906+00 2025-11-11 19:19:32.282915+00 f t vet_accepted 1535 \N +7474 2025-11-11 19:19:32.294266+00 2025-11-11 19:19:32.294276+00 f t in_progress_pay 1535 \N +7475 2025-11-11 19:29:32.866447+00 2025-11-11 19:29:32.866455+00 f t Confirmado 1535 \N +7476 2025-11-11 19:29:32.838841+00 2025-11-11 19:29:32.83885+00 f t payed 1535 1208 +7477 2025-11-11 19:40:46.535973+00 2025-11-11 19:40:46.535984+00 f t pending 1536 \N +7478 2025-11-11 19:41:24.868252+00 2025-11-11 19:41:24.86826+00 f t in_progress_vet 1536 1583 +7479 2025-11-11 19:41:30.013764+00 2025-11-11 19:41:30.013772+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 21:00:00 1536 1583 +7480 2025-11-11 19:41:40.601006+00 2025-11-11 19:41:40.601014+00 f t vet_asked Veterinario asignado: Henjes María José 1536 1583 +7481 2025-11-11 19:41:41.203844+00 2025-11-11 19:41:41.203853+00 f t vet_accepted 1536 1583 +7482 2025-11-11 19:41:41.21487+00 2025-11-11 19:41:41.214879+00 f t in_progress_pay 1536 1583 +7483 2025-11-11 19:41:54.846793+00 2025-11-11 19:41:54.846801+00 f t Confirmado 1536 \N +7484 2025-11-11 19:41:54.819531+00 2025-11-11 19:41:54.81954+00 f t payed 1536 1583 +7485 2025-11-11 20:00:06.512356+00 2025-11-11 20:00:06.512374+00 f t vet_accepted 1524 \N +7486 2025-11-11 20:00:06.547992+00 2025-11-11 20:00:06.548007+00 f t in_progress_pay 1524 \N +7487 2025-11-11 20:27:24.990127+00 2025-11-11 20:27:24.990136+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 14:00:00 1518 1583 +7488 2025-11-11 20:27:49.789788+00 2025-11-11 20:27:49.789799+00 f t Confirmado 1518 \N +7489 2025-11-11 20:27:49.762685+00 2025-11-11 20:27:49.762695+00 f t payed 1518 1583 +7490 2025-11-11 20:32:45.756712+00 2025-11-11 20:32:45.756719+00 f t pending 1537 \N +7491 2025-11-11 20:33:49.788509+00 2025-11-11 20:33:49.788517+00 f t in_progress_vet 1537 1583 +7492 2025-11-11 20:35:23.680928+00 2025-11-11 20:35:23.680935+00 f t pending 1538 \N +7493 2025-11-11 20:49:57.730086+00 2025-11-11 20:49:57.730095+00 f t pending 1539 \N +7494 2025-11-11 20:50:10.557437+00 2025-11-11 20:50:10.557446+00 f t in_progress_vet 1539 1583 +7495 2025-11-11 20:50:36.643202+00 2025-11-11 20:50:36.643211+00 f t vet_asked Veterinario asignado: Dubowik Katerina 1539 1583 +7496 2025-11-11 20:50:37.317208+00 2025-11-11 20:50:37.317216+00 f t vet_accepted 1539 1583 +7497 2025-11-11 20:50:37.328119+00 2025-11-11 20:50:37.328127+00 f t in_progress_pay 1539 1583 +7498 2025-11-11 20:51:18.113664+00 2025-11-11 20:51:18.113672+00 f t Confirmado 1539 \N +7499 2025-11-11 20:51:18.088057+00 2025-11-11 20:51:18.088065+00 f t payed 1539 1583 +7500 2025-11-11 21:00:09.076255+00 2025-11-11 21:00:09.076271+00 f t in_progress_vet 1538 1583 +7501 2025-11-11 21:01:49.686537+00 2025-11-11 21:01:49.686545+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 17:30:00 1537 1583 +7502 2025-11-11 21:01:54.399243+00 2025-11-11 21:01:54.399251+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1537 1583 +7503 2025-11-11 21:01:55.824233+00 2025-11-11 21:01:55.824243+00 f t vet_accepted 1537 1583 +7504 2025-11-11 21:01:55.837304+00 2025-11-11 21:01:55.837313+00 f t in_progress_pay 1537 1583 +7505 2025-11-11 21:18:46.578223+00 2025-11-11 21:18:46.578231+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 13:00:00 1538 1583 +7506 2025-11-11 21:18:51.262119+00 2025-11-11 21:18:51.26213+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1538 1583 +7507 2025-11-11 21:18:51.855297+00 2025-11-11 21:18:51.855307+00 f t vet_accepted 1538 1583 +7508 2025-11-11 21:18:51.866899+00 2025-11-11 21:18:51.866908+00 f t in_progress_pay 1538 1583 +7509 2025-11-11 21:19:05.149292+00 2025-11-11 21:19:05.149301+00 f t Confirmado 1538 \N +7510 2025-11-11 21:19:05.115253+00 2025-11-11 21:19:05.115265+00 f t payed 1538 1583 +7511 2025-11-11 21:19:37.991725+00 2025-11-11 21:19:37.991733+00 f t pending 1540 \N +7512 2025-11-11 21:19:55.29825+00 2025-11-11 21:19:55.298259+00 f t in_progress_vet 1540 1583 +7513 2025-11-11 21:20:01.911752+00 2025-11-11 21:20:01.911767+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 17:00:00 1540 1583 +7514 2025-11-11 21:20:12.185441+00 2025-11-11 21:20:12.18545+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1540 1583 +7515 2025-11-11 21:20:12.972545+00 2025-11-11 21:20:12.972554+00 f t vet_accepted 1540 1583 +7516 2025-11-11 21:20:12.985538+00 2025-11-11 21:20:12.985547+00 f t in_progress_pay 1540 1583 +7517 2025-11-11 21:20:24.420741+00 2025-11-11 21:20:24.420751+00 f t Confirmado 1540 \N +7518 2025-11-11 21:20:24.390087+00 2025-11-11 21:20:24.390099+00 f t payed 1540 1583 +7519 2025-11-11 21:24:46.576108+00 2025-11-11 21:24:46.576118+00 f t rejected D-Emergencia 1537 1583 +7520 2025-11-11 21:57:43.809987+00 2025-11-11 21:57:43.809995+00 f t rejected D-Abandono Bot 1534 1583 +7521 2025-11-11 21:58:16.872752+00 2025-11-11 21:58:16.87276+00 f t rejected D-Abandono Bot 1524 1583 +7522 2025-11-11 22:31:05.119896+00 2025-11-11 22:31:05.119922+00 f t pending 1541 \N +7523 2025-11-11 22:31:26.636499+00 2025-11-11 22:31:26.636507+00 f t in_progress_vet 1541 113 +7524 2025-11-11 22:31:31.067772+00 2025-11-11 22:31:31.067779+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 20:00:00 1541 113 +7525 2025-11-11 22:31:51.751324+00 2025-11-11 22:31:51.751337+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1541 113 +7526 2025-11-11 22:31:52.774876+00 2025-11-11 22:31:52.774886+00 f t vet_accepted 1541 113 +7527 2025-11-11 22:31:52.788673+00 2025-11-11 22:31:52.788682+00 f t in_progress_pay 1541 113 +7528 2025-11-11 22:32:39.385659+00 2025-11-11 22:32:39.385668+00 f t Confirmado 1541 \N +7529 2025-11-11 22:32:39.359773+00 2025-11-11 22:32:39.359782+00 f t payed 1541 113 +7530 2025-11-11 22:46:15.764751+00 2025-11-11 22:46:15.764759+00 f t pending 1542 \N +7531 2025-11-11 22:46:33.343041+00 2025-11-11 22:46:33.34305+00 f t in_progress_vet 1542 113 +7532 2025-11-11 22:46:37.773483+00 2025-11-11 22:46:37.773493+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 15:00:00 1542 113 +7533 2025-11-11 22:47:00.27102+00 2025-11-11 22:47:00.271033+00 f t vet_asked Veterinario asignado: di Risio Daniela 1542 113 +7534 2025-11-11 22:47:03.264676+00 2025-11-11 22:47:03.264685+00 f t vet_accepted 1542 113 +7535 2025-11-11 22:47:03.277876+00 2025-11-11 22:47:03.277888+00 f t in_progress_pay 1542 113 +7536 2025-11-11 22:47:56.760104+00 2025-11-11 22:47:56.760116+00 f t Confirmado 1542 \N +7537 2025-11-11 22:47:56.733863+00 2025-11-11 22:47:56.733873+00 f t payed 1542 113 +7538 2025-11-11 23:50:23.710572+00 2025-11-11 23:50:23.71058+00 f t pending 1543 \N +7539 2025-11-11 23:50:36.201414+00 2025-11-11 23:50:36.201421+00 f t in_progress_vet 1543 113 +7540 2025-11-11 23:50:44.686307+00 2025-11-11 23:50:44.686317+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 11:00:00 1543 113 +7541 2025-11-11 23:51:16.715802+00 2025-11-11 23:51:16.715811+00 f t vet_asked Veterinario asignado: Della Bianca Paola 1543 113 +7542 2025-11-11 23:51:17.78309+00 2025-11-11 23:51:17.783098+00 f t vet_accepted 1543 113 +7543 2025-11-11 23:51:17.794972+00 2025-11-11 23:51:17.79498+00 f t in_progress_pay 1543 113 +7544 2025-11-11 23:52:12.980809+00 2025-11-11 23:52:12.98082+00 f t Confirmado 1543 \N +7545 2025-11-11 23:52:12.949187+00 2025-11-11 23:52:12.949199+00 f t payed 1543 113 +7546 2025-11-12 01:08:08.562311+00 2025-11-12 01:08:08.562324+00 f t pending 1544 \N +7547 2025-11-12 01:37:55.860223+00 2025-11-12 01:37:55.860232+00 f t pending 1545 \N +7548 2025-11-12 12:16:25.317735+00 2025-11-12 12:16:25.317745+00 f t in_progress_vet 1544 1208 +7549 2025-11-12 12:16:45.944301+00 2025-11-12 12:16:45.944311+00 f t in_progress_vet 1545 1208 +7550 2025-11-12 12:25:42.435893+00 2025-11-12 12:25:42.4359+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 15:00:00 1544 1208 +7551 2025-11-12 12:30:30.789316+00 2025-11-12 12:30:30.789325+00 f t vet_accepted 1544 138 +7552 2025-11-12 12:30:30.80124+00 2025-11-12 12:30:30.801249+00 f t in_progress_pay 1544 138 +7553 2025-11-12 12:31:45.693841+00 2025-11-12 12:31:45.693848+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 13:00:00 1545 1208 +7554 2025-11-12 12:32:28.424796+00 2025-11-12 12:32:28.424804+00 f t vet_accepted 1545 \N +7555 2025-11-12 12:32:28.444949+00 2025-11-12 12:32:28.444959+00 f t in_progress_pay 1545 \N +7556 2025-11-12 12:38:29.494487+00 2025-11-12 12:38:29.494499+00 f t rejected D-Averiguando / Desconocido 1544 1208 +7557 2025-11-12 12:41:43.53498+00 2025-11-12 12:41:43.53499+00 f t pending 1546 \N +7558 2025-11-12 12:42:10.014045+00 2025-11-12 12:42:10.014056+00 f t in_progress_vet 1546 1208 +7559 2025-11-12 12:42:38.744306+00 2025-11-12 12:42:38.744314+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 15:00:00 1546 1208 +7560 2025-11-12 12:54:42.937741+00 2025-11-12 12:54:42.93775+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1546 1208 +7561 2025-11-12 13:25:11.267096+00 2025-11-12 13:25:11.267104+00 f t Confirmado 1546 \N +7562 2025-11-12 13:25:11.226615+00 2025-11-12 13:25:11.226625+00 f t payed 1546 1208 +7563 2025-11-12 13:26:46.210706+00 2025-11-12 13:26:46.210715+00 f t pending 1547 \N +7564 2025-11-12 13:35:10.789518+00 2025-11-12 13:35:10.789527+00 f t in_progress_vet 1547 1208 +7565 2025-11-12 13:35:27.300015+00 2025-11-12 13:35:27.300024+00 f t Confirmado 1545 \N +7566 2025-11-12 13:35:27.271718+00 2025-11-12 13:35:27.271728+00 f t payed 1545 1208 +7567 2025-11-12 14:03:41.366532+00 2025-11-12 14:03:41.366546+00 f t pending 1548 \N +7568 2025-11-12 14:05:19.623838+00 2025-11-12 14:05:19.623847+00 f t in_progress_vet 1548 1208 +7569 2025-11-12 14:05:53.74107+00 2025-11-12 14:05:53.741079+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 16:00:00 1548 1208 +7570 2025-11-12 14:07:06.594669+00 2025-11-12 14:07:06.594678+00 f t vet_accepted 1548 \N +7571 2025-11-12 14:07:06.612211+00 2025-11-12 14:07:06.612224+00 f t in_progress_pay 1548 \N +7572 2025-11-12 14:14:41.303239+00 2025-11-12 14:14:41.303247+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 10:00:00 1547 1208 +7573 2025-11-12 14:19:37.382419+00 2025-11-12 14:19:37.382429+00 f t vet_accepted 1547 \N +7574 2025-11-12 14:19:37.4027+00 2025-11-12 14:19:37.40271+00 f t in_progress_pay 1547 \N +7575 2025-11-12 14:22:52.951584+00 2025-11-12 14:22:52.951595+00 f t pending 1549 \N +7576 2025-11-12 14:23:14.858666+00 2025-11-12 14:23:14.858679+00 f t in_progress_vet 1549 1583 +7577 2025-11-12 14:23:18.682709+00 2025-11-12 14:23:18.682717+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 15:00:00 1549 1583 +7578 2025-11-12 14:29:21.757675+00 2025-11-12 14:29:21.757684+00 f t Confirmado 1548 \N +7579 2025-11-12 14:29:21.724187+00 2025-11-12 14:29:21.724196+00 f t payed 1548 1208 +7580 2025-11-12 14:45:51.905023+00 2025-11-12 14:45:51.905031+00 f t pending 1550 \N +7581 2025-11-12 14:46:08.320706+00 2025-11-12 14:46:08.320714+00 f t in_progress_vet 1550 1583 +7582 2025-11-12 14:46:12.349046+00 2025-11-12 14:46:12.349054+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 09:00:00 1550 1583 +7583 2025-11-12 14:46:17.832424+00 2025-11-12 14:46:17.832433+00 f t vet_asked Veterinario asignado: Osso Virginia 1550 1583 +7584 2025-11-12 14:46:18.904149+00 2025-11-12 14:46:18.904158+00 f t vet_accepted 1550 1583 +7585 2025-11-12 14:46:18.918522+00 2025-11-12 14:46:18.918532+00 f t in_progress_pay 1550 1583 +7586 2025-11-12 15:16:58.567653+00 2025-11-12 15:16:58.567663+00 f t Confirmado 1550 \N +7587 2025-11-12 15:16:58.530107+00 2025-11-12 15:16:58.530121+00 f t payed 1550 1583 +7588 2025-11-12 15:21:01.385464+00 2025-11-12 15:21:01.385475+00 f t pending 1551 \N +7589 2025-11-12 15:21:20.389243+00 2025-11-12 15:21:20.389252+00 f t in_progress_vet 1551 1583 +7590 2025-11-12 15:21:33.288298+00 2025-11-12 15:21:33.288306+00 f t coordinated Solicitud coordinada para 2025-11-11 a las 16:00:00 1551 1583 +7591 2025-11-12 15:23:11.081207+00 2025-11-12 15:23:11.081219+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1551 1583 +7592 2025-11-12 15:23:11.706473+00 2025-11-12 15:23:11.706483+00 f t vet_accepted 1551 1583 +7593 2025-11-12 15:23:11.719068+00 2025-11-12 15:23:11.719077+00 f t in_progress_pay 1551 1583 +7594 2025-11-12 15:26:13.133376+00 2025-11-12 15:26:13.133389+00 f t Confirmado 1547 \N +7595 2025-11-12 15:26:13.082557+00 2025-11-12 15:26:13.082566+00 f t payed 1547 1208 +7596 2025-11-12 15:27:56.585736+00 2025-11-12 15:27:56.58575+00 f t rejected D-Abandono Bot 1549 1583 +7597 2025-11-12 15:27:59.399357+00 2025-11-12 15:27:59.399366+00 f t vet_accepted 1547 \N +7598 2025-11-12 15:29:55.225655+00 2025-11-12 15:29:55.225667+00 f t pending 1552 \N +7599 2025-11-12 15:35:28.464215+00 2025-11-12 15:35:28.464223+00 f t in_progress_vet 1552 1208 +7600 2025-11-12 15:38:10.869025+00 2025-11-12 15:38:10.869034+00 f t pending 1553 \N +7601 2025-11-12 15:38:36.086635+00 2025-11-12 15:38:36.086644+00 f t in_progress_vet 1553 1583 +7602 2025-11-12 15:38:42.978495+00 2025-11-12 15:38:42.978505+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 17:00:00 1553 1583 +7603 2025-11-12 15:43:31.096445+00 2025-11-12 15:43:31.096456+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 16:00:00 1551 1583 +7604 2025-11-12 15:43:55.127861+00 2025-11-12 15:43:55.12787+00 f t payed 1551 1583 +7605 2025-11-12 15:43:55.255833+00 2025-11-12 15:43:55.255845+00 f t payed 1551 1583 +7606 2025-11-12 15:46:34.271899+00 2025-11-12 15:46:34.271907+00 f t Confirmado 1551 \N +7607 2025-11-12 15:46:34.243832+00 2025-11-12 15:46:34.24384+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 16:00:00 1551 1583 +7608 2025-11-12 15:47:56.297376+00 2025-11-12 15:47:56.297385+00 f t vet_accepted 1553 \N +7609 2025-11-12 15:47:56.310503+00 2025-11-12 15:47:56.310511+00 f t in_progress_pay 1553 \N +7610 2025-11-12 15:53:46.366724+00 2025-11-12 15:53:46.366735+00 f t vet_accepted 1417 126 +7611 2025-11-12 16:32:36.530644+00 2025-11-12 16:32:36.530653+00 f t pending 1554 \N +7612 2025-11-12 16:32:57.446121+00 2025-11-12 16:32:57.446129+00 f t in_progress_vet 1554 1583 +7613 2025-11-12 16:33:04.814917+00 2025-11-12 16:33:04.814928+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 16:00:00 1554 1583 +7614 2025-11-12 16:46:39.357796+00 2025-11-12 16:46:39.357811+00 f t vet_accepted 1554 \N +7615 2025-11-12 16:46:39.375373+00 2025-11-12 16:46:39.375386+00 f t in_progress_pay 1554 \N +7616 2025-11-12 16:56:37.155277+00 2025-11-12 16:56:37.155285+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 17:00:00 1552 1208 +7617 2025-11-12 16:57:25.890134+00 2025-11-12 16:57:25.890144+00 f t vet_accepted 1552 \N +7618 2025-11-12 16:57:25.905449+00 2025-11-12 16:57:25.905459+00 f t in_progress_pay 1552 \N +7619 2025-11-12 16:57:27.777007+00 2025-11-12 16:57:27.777014+00 f t rejected Solicitud rechazada por Usuario no especificado 1552 \N +7620 2025-11-12 16:57:27.785057+00 2025-11-12 16:57:27.785064+00 f t in_progress_vet 1552 \N +7621 2025-11-12 17:08:13.413365+00 2025-11-12 17:08:13.413377+00 f t vet_accepted 1552 \N +7622 2025-11-12 17:08:13.429003+00 2025-11-12 17:08:13.429018+00 f t in_progress_pay 1552 \N +7623 2025-11-12 17:10:10.445357+00 2025-11-12 17:10:10.445366+00 f t pending 1555 \N +7624 2025-11-12 17:10:32.599696+00 2025-11-12 17:10:32.599707+00 f t in_progress_vet 1555 1583 +7625 2025-11-12 17:10:41.323558+00 2025-11-12 17:10:41.32357+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 17:00:00 1555 1583 +7626 2025-11-12 17:14:25.645288+00 2025-11-12 17:14:25.645298+00 f t vet_accepted 1552 \N +7627 2025-11-12 17:14:25.660552+00 2025-11-12 17:14:25.660561+00 f t in_progress_pay 1552 \N +7628 2025-11-12 17:20:33.714695+00 2025-11-12 17:20:33.714703+00 f t pending 1556 \N +7629 2025-11-12 17:20:46.789786+00 2025-11-12 17:20:46.789795+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1556 1583 +7630 2025-11-12 17:20:47.421566+00 2025-11-12 17:20:47.421575+00 f t vet_accepted 1556 1583 +7631 2025-11-12 17:20:47.436944+00 2025-11-12 17:20:47.436957+00 f t in_progress_pay 1556 1583 +7632 2025-11-12 17:21:00.921144+00 2025-11-12 17:21:00.921152+00 f t Confirmado 1556 \N +7633 2025-11-12 17:21:00.889083+00 2025-11-12 17:21:00.889091+00 f t payed 1556 1583 +7634 2025-11-12 17:23:36.680747+00 2025-11-12 17:23:36.680757+00 f t vet_accepted 1548 \N +7635 2025-11-12 17:23:43.166789+00 2025-11-12 17:23:43.166799+00 f t vet_accepted 1555 \N +7636 2025-11-12 17:23:43.181327+00 2025-11-12 17:23:43.181336+00 f t in_progress_pay 1555 \N +7637 2025-11-12 17:35:50.99107+00 2025-11-12 17:35:50.991079+00 f t pending 1557 \N +7638 2025-11-12 17:36:01.365455+00 2025-11-12 17:36:01.365464+00 f t in_progress_vet 1557 1208 +7639 2025-11-12 17:36:12.100492+00 2025-11-12 17:36:12.1005+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 15:30:00 1557 1208 +7640 2025-11-12 17:36:25.48352+00 2025-11-12 17:36:25.483531+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1557 1208 +7641 2025-11-12 17:37:35.623184+00 2025-11-12 17:37:35.623192+00 f t Confirmado 1557 \N +7642 2025-11-12 17:37:35.597219+00 2025-11-12 17:37:35.597231+00 f t payed 1557 1208 +7643 2025-11-12 17:38:40.148424+00 2025-11-12 17:38:40.148434+00 f t rejected D-Precio 1555 1583 +7644 2025-11-12 17:46:28.526042+00 2025-11-12 17:46:28.526055+00 f t pending 1558 \N +7645 2025-11-12 17:46:38.012655+00 2025-11-12 17:46:38.012664+00 f t in_progress_vet 1558 1583 +7646 2025-11-12 17:46:47.842561+00 2025-11-12 17:46:47.842569+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 17:00:00 1558 1583 +7647 2025-11-12 17:46:56.721265+00 2025-11-12 17:46:56.721274+00 f t vet_asked Veterinario asignado: Campo Silvia 1558 1583 +7648 2025-11-12 17:46:57.476755+00 2025-11-12 17:46:57.476765+00 f t vet_accepted 1558 1583 +7649 2025-11-12 17:46:57.491423+00 2025-11-12 17:46:57.491432+00 f t in_progress_pay 1558 1583 +7650 2025-11-12 17:47:16.698872+00 2025-11-12 17:47:16.698879+00 f t Confirmado 1558 \N +7651 2025-11-12 17:47:16.668709+00 2025-11-12 17:47:16.668717+00 f t payed 1558 1583 +7652 2025-11-12 18:08:26.545825+00 2025-11-12 18:08:26.54584+00 f t pending 1559 \N +7653 2025-11-12 18:08:41.186148+00 2025-11-12 18:08:41.186156+00 f t in_progress_vet 1559 1583 +7654 2025-11-12 18:08:47.06602+00 2025-11-12 18:08:47.066037+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 20:00:00 1559 1583 +7655 2025-11-12 18:12:23.77427+00 2025-11-12 18:12:23.774279+00 f t vet_accepted 1559 \N +7656 2025-11-12 18:12:23.787851+00 2025-11-12 18:12:23.78786+00 f t in_progress_pay 1559 \N +7657 2025-11-12 18:23:39.30155+00 2025-11-12 18:23:39.301559+00 f t Confirmado 1559 \N +7658 2025-11-12 18:23:39.273514+00 2025-11-12 18:23:39.273522+00 f t payed 1559 1583 +7659 2025-11-12 18:33:35.724955+00 2025-11-12 18:33:35.724963+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 18:00:00 1553 1583 +7660 2025-11-12 18:36:32.405292+00 2025-11-12 18:36:32.405303+00 f t pending 1560 \N +7661 2025-11-12 18:36:46.783709+00 2025-11-12 18:36:46.783719+00 f t in_progress_vet 1560 1208 +7662 2025-11-12 18:36:53.98015+00 2025-11-12 18:36:53.980159+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 19:30:00 1560 1208 +7663 2025-11-12 18:37:05.611728+00 2025-11-12 18:37:05.611741+00 f t vet_asked Veterinario asignado: di Risio Daniela 1560 1208 +7664 2025-11-12 18:37:15.089633+00 2025-11-12 18:37:15.089639+00 f t Confirmado 1560 \N +7665 2025-11-12 18:37:15.064121+00 2025-11-12 18:37:15.06413+00 f t payed 1560 1208 +7666 2025-11-12 18:41:57.701285+00 2025-11-12 18:41:57.701291+00 f t Confirmado 1553 \N +7667 2025-11-12 18:41:57.671383+00 2025-11-12 18:41:57.671394+00 f t payed 1553 1583 +7668 2025-11-12 19:31:44.856939+00 2025-11-12 19:31:44.856947+00 f t pending 1561 \N +7669 2025-11-12 19:35:23.561914+00 2025-11-12 19:35:23.561923+00 f t in_progress_vet 1561 1583 +7670 2025-11-12 19:47:19.406565+00 2025-11-12 19:47:19.406575+00 f t vet_accepted 1554 \N +7671 2025-11-12 19:47:19.420844+00 2025-11-12 19:47:19.420853+00 f t in_progress_pay 1554 \N +7672 2025-11-12 20:05:44.295385+00 2025-11-12 20:05:44.295394+00 f t rejected D-Averiguando / Desconocido 1554 1208 +7673 2025-11-12 20:05:56.179005+00 2025-11-12 20:05:56.179014+00 f t pending 1562 \N +7674 2025-11-12 20:06:42.048049+00 2025-11-12 20:06:42.048059+00 f t in_progress_vet 1562 1208 +7675 2025-11-12 20:06:58.96866+00 2025-11-12 20:06:58.968671+00 f t coordinated Solicitud coordinada para 2025-11-12 a las 17:30:00 1562 1208 +7676 2025-11-12 20:07:07.127017+00 2025-11-12 20:07:07.12703+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1562 1208 +7677 2025-11-12 20:07:15.567817+00 2025-11-12 20:07:15.567827+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1562 1208 +7678 2025-11-12 20:11:07.329513+00 2025-11-12 20:11:07.329525+00 f t Confirmado 1562 \N +7679 2025-11-12 20:11:07.297758+00 2025-11-12 20:11:07.297766+00 f t payed 1562 1208 +7680 2025-11-12 20:23:19.848374+00 2025-11-12 20:23:19.848381+00 f t Confirmado 1552 \N +7681 2025-11-12 20:23:19.821871+00 2025-11-12 20:23:19.82188+00 f t payed 1552 1208 +7682 2025-11-12 20:32:26.411666+00 2025-11-12 20:32:26.411674+00 f t pending 1563 \N +7683 2025-11-12 20:32:40.94218+00 2025-11-12 20:32:40.942189+00 f t in_progress_vet 1563 113 +7684 2025-11-12 20:32:50.418385+00 2025-11-12 20:32:50.418393+00 f t coordinated Solicitud coordinada para 2025-11-15 a las 14:00:00 1563 113 +7685 2025-11-12 20:57:08.838349+00 2025-11-12 20:57:08.838358+00 f t pending 1564 \N +7686 2025-11-12 21:00:09.684657+00 2025-11-12 21:00:09.68467+00 f t in_progress_vet 1564 1583 +7687 2025-11-12 21:11:15.857915+00 2025-11-12 21:11:15.857923+00 f t pending 1565 \N +7688 2025-11-12 21:14:41.991986+00 2025-11-12 21:14:41.991996+00 f t in_progress_vet 1565 1583 +7689 2025-11-12 21:15:21.658552+00 2025-11-12 21:15:21.658561+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 15:00:00 1565 1583 +7690 2025-11-12 21:17:24.175246+00 2025-11-12 21:17:24.175254+00 f t vet_accepted 1565 \N +7691 2025-11-12 21:17:24.192538+00 2025-11-12 21:17:24.192551+00 f t in_progress_pay 1565 \N +7692 2025-11-12 21:35:46.029608+00 2025-11-12 21:35:46.029617+00 f t Confirmado 1565 \N +7693 2025-11-12 21:35:45.995455+00 2025-11-12 21:35:45.995467+00 f t payed 1565 1583 +7694 2025-11-12 21:51:50.179939+00 2025-11-12 21:51:50.179948+00 f t pending 1566 \N +7695 2025-11-12 21:52:00.642245+00 2025-11-12 21:52:00.642253+00 f t in_progress_vet 1566 1583 +7696 2025-11-12 21:52:06.998722+00 2025-11-12 21:52:06.99873+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 12:00:00 1566 1583 +7697 2025-11-12 21:52:12.859712+00 2025-11-12 21:52:12.85972+00 f t vet_asked Veterinario asignado: Palummo Mariana 1566 1583 +7698 2025-11-12 21:52:13.447352+00 2025-11-12 21:52:13.447361+00 f t vet_accepted 1566 1583 +7699 2025-11-12 21:52:13.461041+00 2025-11-12 21:52:13.46105+00 f t in_progress_pay 1566 1583 +7700 2025-11-12 21:52:31.842997+00 2025-11-12 21:52:31.843008+00 f t Confirmado 1566 \N +7701 2025-11-12 21:52:31.8125+00 2025-11-12 21:52:31.812509+00 f t payed 1566 1583 +7702 2025-11-12 21:59:48.377915+00 2025-11-12 21:59:48.377924+00 f t vet_accepted 1508 \N +7703 2025-11-12 22:03:47.183348+00 2025-11-12 22:03:47.18336+00 f t vet_accepted 1554 \N +7704 2025-11-12 22:03:47.200815+00 2025-11-12 22:03:47.200827+00 f t in_progress_pay 1554 \N +7705 2025-11-12 22:22:48.851978+00 2025-11-12 22:22:48.851985+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 11:00:00 1564 1583 +7706 2025-11-12 22:29:39.476764+00 2025-11-12 22:29:39.476772+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 09:00:00 1561 1583 +7707 2025-11-12 22:31:53.919722+00 2025-11-12 22:31:53.919731+00 f t pending 1567 \N +7708 2025-11-12 22:33:17.961841+00 2025-11-12 22:33:17.961849+00 f t in_progress_vet 1567 1208 +7709 2025-11-12 22:34:59.47009+00 2025-11-12 22:34:59.470099+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 13:00:00 1561 1583 +7710 2025-11-12 23:02:29.745216+00 2025-11-12 23:02:29.745225+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1561 1583 +7711 2025-11-12 23:26:25.425547+00 2025-11-12 23:26:25.425558+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 09:00:00 1563 1583 +7712 2025-11-12 23:26:28.508913+00 2025-11-12 23:26:28.508922+00 f t vet_asked Veterinario asignado: Osso Virginia 1563 1583 +7713 2025-11-12 23:26:29.594728+00 2025-11-12 23:26:29.594736+00 f t vet_accepted 1563 1583 +7714 2025-11-12 23:26:29.606476+00 2025-11-12 23:26:29.606484+00 f t in_progress_pay 1563 1583 +7715 2025-11-12 23:27:27.332603+00 2025-11-12 23:27:27.332611+00 f t Confirmado 1563 \N +7716 2025-11-12 23:27:27.305274+00 2025-11-12 23:27:27.305283+00 f t payed 1563 1583 +7717 2025-11-12 23:47:42.872806+00 2025-11-12 23:47:42.872813+00 f t coordinated Solicitud coordinada para 2025-11-15 a las 09:00:00 1567 1208 +7718 2025-11-12 23:47:45.366299+00 2025-11-12 23:47:45.366307+00 f t vet_asked Veterinario asignado: Campo Silvia 1567 1208 +7719 2025-11-12 23:55:04.6647+00 2025-11-12 23:55:04.664711+00 f t Confirmado 1567 \N +7720 2025-11-12 23:55:04.575891+00 2025-11-12 23:55:04.575906+00 f t payed 1567 1208 +7721 2025-11-13 00:00:47.071356+00 2025-11-13 00:00:47.071371+00 f t pending 1568 \N +7722 2025-11-13 00:01:08.433482+00 2025-11-13 00:01:08.433492+00 f t in_progress_vet 1568 1208 +7723 2025-11-13 00:01:19.444108+00 2025-11-13 00:01:19.444119+00 f t coordinated Solicitud coordinada para 2025-11-16 a las 11:00:00 1568 1208 +7724 2025-11-13 00:01:43.580361+00 2025-11-13 00:01:43.58037+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1568 1208 +7725 2025-11-13 00:04:09.791285+00 2025-11-13 00:04:09.791294+00 f t Confirmado 1568 \N +7726 2025-11-13 00:04:09.764045+00 2025-11-13 00:04:09.764053+00 f t payed 1568 1208 +7727 2025-11-13 00:35:30.081683+00 2025-11-13 00:35:30.081691+00 f t vet_accepted 1445 \N +7728 2025-11-13 00:58:28.699498+00 2025-11-13 00:58:28.699507+00 f t pending 1569 \N +7729 2025-11-13 01:59:26.392628+00 2025-11-13 01:59:26.392636+00 f t vet_accepted 1457 128 +7730 2025-11-13 08:40:17.959343+00 2025-11-13 08:40:17.959352+00 f t vet_accepted 1324 \N +7731 2025-11-13 08:40:17.973127+00 2025-11-13 08:40:17.973136+00 f t in_progress_pay 1324 \N +7732 2025-11-13 12:12:57.31041+00 2025-11-13 12:12:57.310419+00 f t in_progress_vet 1569 1208 +7733 2025-11-13 13:02:11.085518+00 2025-11-13 13:02:11.085529+00 f t rejected D-Averiguando / Desconocido 1569 1208 +7734 2025-11-13 13:15:33.684381+00 2025-11-13 13:15:33.684391+00 f t pending 1570 \N +7735 2025-11-13 13:17:58.304389+00 2025-11-13 13:17:58.304398+00 f t in_progress_vet 1570 1208 +7736 2025-11-13 13:19:04.336703+00 2025-11-13 13:19:04.336716+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 15:00:00 1570 1208 +7737 2025-11-13 13:26:30.161512+00 2025-11-13 13:26:30.161522+00 f t pending 1571 \N +7738 2025-11-13 13:26:41.460828+00 2025-11-13 13:26:41.460837+00 f t in_progress_vet 1571 1208 +7739 2025-11-13 13:26:49.917029+00 2025-11-13 13:26:49.917037+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 21:00:00 1571 1208 +7740 2025-11-13 13:31:45.746675+00 2025-11-13 13:31:45.746688+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1571 1208 +7741 2025-11-13 13:37:15.577786+00 2025-11-13 13:37:15.577793+00 f t Confirmado 1571 \N +7742 2025-11-13 13:37:15.547243+00 2025-11-13 13:37:15.547261+00 f t payed 1571 1208 +7743 2025-11-13 14:05:16.556832+00 2025-11-13 14:05:16.556841+00 f t vet_accepted 1570 \N +7744 2025-11-13 14:05:16.570025+00 2025-11-13 14:05:16.570034+00 f t in_progress_pay 1570 \N +7745 2025-11-13 14:06:10.159576+00 2025-11-13 14:06:10.159585+00 f t vet_accepted 1570 \N +7746 2025-11-13 14:06:10.171797+00 2025-11-13 14:06:10.171806+00 f t in_progress_pay 1570 \N +7747 2025-11-13 14:28:55.225906+00 2025-11-13 14:28:55.225914+00 f t pending 1572 \N +7748 2025-11-13 14:29:29.268978+00 2025-11-13 14:29:29.268987+00 f t in_progress_vet 1572 1208 +7749 2025-11-13 14:29:37.702246+00 2025-11-13 14:29:37.702254+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 17:00:00 1572 1208 +7750 2025-11-13 14:32:32.999715+00 2025-11-13 14:32:32.999724+00 f t vet_accepted 1572 124 +7751 2025-11-13 14:32:33.012154+00 2025-11-13 14:32:33.012163+00 f t in_progress_pay 1572 124 +7752 2025-11-13 14:33:26.071048+00 2025-11-13 14:33:26.071057+00 f t pending 1573 \N +7753 2025-11-13 14:33:48.880034+00 2025-11-13 14:33:48.880043+00 f t in_progress_vet 1573 1583 +7754 2025-11-13 14:34:17.404778+00 2025-11-13 14:34:17.404785+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 15:00:00 1573 1583 +7755 2025-11-13 14:55:01.578457+00 2025-11-13 14:55:01.578469+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 20:30:00 1573 1583 +7756 2025-11-13 14:55:26.460702+00 2025-11-13 14:55:26.460711+00 f t rejected D-Falta de servicio 1564 1583 +7757 2025-11-13 15:00:26.258141+00 2025-11-13 15:00:26.258149+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 17:30:00 1572 1208 +7758 2025-11-13 15:00:51.499884+00 2025-11-13 15:00:51.499892+00 f t Confirmado 1572 \N +7759 2025-11-13 15:00:51.467836+00 2025-11-13 15:00:51.467845+00 f t payed 1572 1208 +7760 2025-11-13 15:04:30.217714+00 2025-11-13 15:04:30.217724+00 f t vet_asked Veterinario asignado: Palladino Martín 1573 1583 +7761 2025-11-13 15:04:31.027098+00 2025-11-13 15:04:31.02711+00 f t vet_accepted 1573 1583 +7762 2025-11-13 15:04:31.04579+00 2025-11-13 15:04:31.045804+00 f t in_progress_pay 1573 1583 +7763 2025-11-13 15:06:43.190309+00 2025-11-13 15:06:43.19032+00 f t Confirmado 1573 \N +7764 2025-11-13 15:06:43.160734+00 2025-11-13 15:06:43.160743+00 f t payed 1573 1583 +7765 2025-11-13 15:11:40.288207+00 2025-11-13 15:11:40.288218+00 f t Confirmado 1570 \N +7766 2025-11-13 15:11:40.260298+00 2025-11-13 15:11:40.260306+00 f t payed 1570 1208 +7767 2025-11-13 15:32:49.583353+00 2025-11-13 15:32:49.583363+00 f t coordinated Solicitud coordinada para 2025-12-16 a las 19:00:00 1515 1583 +7768 2025-11-13 15:33:37.555477+00 2025-11-13 15:33:37.555486+00 f t vet_accepted 1515 \N +7769 2025-11-13 15:33:37.567295+00 2025-11-13 15:33:37.567303+00 f t in_progress_pay 1515 \N +7770 2025-11-13 15:33:38.626162+00 2025-11-13 15:33:38.62617+00 f t rejected Solicitud rechazada por Usuario no especificado 1515 \N +7771 2025-11-13 15:33:38.634758+00 2025-11-13 15:33:38.634767+00 f t in_progress_vet 1515 \N +7772 2025-11-13 15:35:40.88207+00 2025-11-13 15:35:40.882078+00 f t vet_accepted 1515 \N +7773 2025-11-13 15:35:40.894127+00 2025-11-13 15:35:40.894141+00 f t in_progress_pay 1515 \N +7774 2025-11-13 15:36:12.94022+00 2025-11-13 15:36:12.940228+00 f t pending 1574 \N +7775 2025-11-13 15:36:43.490723+00 2025-11-13 15:36:43.490734+00 f t in_progress_vet 1574 1208 +7776 2025-11-13 15:36:52.170752+00 2025-11-13 15:36:52.17076+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 15:00:00 1574 1208 +7777 2025-11-13 15:38:38.579321+00 2025-11-13 15:38:38.57933+00 f t vet_accepted 1565 \N +7778 2025-11-13 15:39:12.070032+00 2025-11-13 15:39:12.070042+00 f t rejected D-Sin seguimiento 1554 1583 +7779 2025-11-13 15:59:10.310034+00 2025-11-13 15:59:10.310044+00 f t vet_accepted 1574 \N +7780 2025-11-13 15:59:10.327165+00 2025-11-13 15:59:10.327176+00 f t in_progress_pay 1574 \N +7781 2025-11-13 16:17:29.66877+00 2025-11-13 16:17:29.668778+00 f t pending 1575 \N +7782 2025-11-13 16:18:09.760385+00 2025-11-13 16:18:09.760396+00 f t in_progress_vet 1575 1583 +7783 2025-11-13 16:18:22.81371+00 2025-11-13 16:18:22.813717+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 10:00:00 1575 1583 +7784 2025-11-13 16:23:16.618876+00 2025-11-13 16:23:16.618889+00 f t pending 1576 \N +7785 2025-11-13 16:23:32.649478+00 2025-11-13 16:23:32.649486+00 f t in_progress_vet 1576 1583 +7786 2025-11-13 16:30:34.370367+00 2025-11-13 16:30:34.370375+00 f t vet_accepted 1515 \N +7787 2025-11-13 16:30:34.385581+00 2025-11-13 16:30:34.385591+00 f t in_progress_pay 1515 \N +7788 2025-11-13 16:32:27.327978+00 2025-11-13 16:32:27.327986+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 16:00:00 1576 1583 +7789 2025-11-13 16:53:22.720002+00 2025-11-13 16:53:22.720011+00 f t pending 1577 \N +7790 2025-11-13 16:55:12.055377+00 2025-11-13 16:55:12.055386+00 f t in_progress_vet 1577 1208 +7791 2025-11-13 16:57:42.364978+00 2025-11-13 16:57:42.364988+00 f t pending 1578 \N +7792 2025-11-13 16:58:08.692828+00 2025-11-13 16:58:08.692838+00 f t in_progress_vet 1578 1208 +7793 2025-11-13 17:05:39.886381+00 2025-11-13 17:05:39.88639+00 f t pending 1579 \N +7794 2025-11-13 17:06:27.515236+00 2025-11-13 17:06:27.515245+00 f t in_progress_vet 1579 1583 +7795 2025-11-13 17:06:54.069+00 2025-11-13 17:06:54.06901+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 16:00:00 1579 1583 +7796 2025-11-13 17:09:00.932488+00 2025-11-13 17:09:00.932499+00 f t vet_accepted 1579 \N +7797 2025-11-13 17:09:00.949265+00 2025-11-13 17:09:00.949278+00 f t in_progress_pay 1579 \N +7798 2025-11-13 17:09:51.967409+00 2025-11-13 17:09:51.967417+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 14:00:00 1577 1208 +7799 2025-11-13 17:09:59.724376+00 2025-11-13 17:09:59.724386+00 f t vet_asked Veterinario asignado: Palummo Mariana 1577 1208 +7800 2025-11-13 17:10:12.532057+00 2025-11-13 17:10:12.532072+00 f t Confirmado 1577 \N +7801 2025-11-13 17:10:12.487796+00 2025-11-13 17:10:12.487808+00 f t payed 1577 1208 +7802 2025-11-13 17:15:24.557905+00 2025-11-13 17:15:24.557913+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 19:00:00 1579 1583 +7803 2025-11-13 17:33:29.298653+00 2025-11-13 17:33:29.298662+00 f t pending 1580 \N +7804 2025-11-13 17:34:45.377925+00 2025-11-13 17:34:45.377939+00 f t in_progress_vet 1580 1208 +7805 2025-11-13 17:42:12.908124+00 2025-11-13 17:42:12.908167+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 14:30:00 1580 1208 +7806 2025-11-13 18:18:48.080489+00 2025-11-13 18:18:48.080498+00 f t Confirmado 1515 \N +7807 2025-11-13 18:18:48.042009+00 2025-11-13 18:18:48.042019+00 f t payed 1515 1583 +7808 2025-11-13 18:27:25.201366+00 2025-11-13 18:27:25.201379+00 f t vet_accepted 1575 126 +7809 2025-11-13 18:27:25.214136+00 2025-11-13 18:27:25.214144+00 f t in_progress_pay 1575 126 +7810 2025-11-13 18:29:24.642434+00 2025-11-13 18:29:24.642443+00 f t pending 1581 \N +7811 2025-11-13 18:29:39.813782+00 2025-11-13 18:29:39.813794+00 f t in_progress_vet 1581 1583 +7812 2025-11-13 18:40:13.053167+00 2025-11-13 18:40:13.053175+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 14:00:00 1579 1583 +7813 2025-11-13 18:43:16.466056+00 2025-11-13 18:43:16.466067+00 f t Confirmado 1575 \N +7814 2025-11-13 18:43:16.430193+00 2025-11-13 18:43:16.4302+00 f t payed 1575 1583 +7815 2025-11-13 18:46:49.358616+00 2025-11-13 18:46:49.358625+00 f t pending 1582 \N +7816 2025-11-13 18:57:30.716058+00 2025-11-13 18:57:30.716067+00 f t Confirmado 1579 \N +7817 2025-11-13 18:57:30.68745+00 2025-11-13 18:57:30.687459+00 f t payed 1579 1583 +7818 2025-11-13 19:03:51.692846+00 2025-11-13 19:03:51.692854+00 f t rejected D-Sin Turno 1576 1583 +7819 2025-11-13 19:04:57.796825+00 2025-11-13 19:04:57.796833+00 f t in_progress_vet 1582 1583 +7820 2025-11-13 19:09:34.340496+00 2025-11-13 19:09:34.340506+00 f t pending 1583 \N +7821 2025-11-13 19:09:50.358533+00 2025-11-13 19:09:50.358542+00 f t in_progress_vet 1583 1583 +7822 2025-11-13 19:09:56.139497+00 2025-11-13 19:09:56.139507+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 20:00:00 1583 1583 +7823 2025-11-13 19:24:21.875883+00 2025-11-13 19:24:21.875892+00 f t pending 1584 \N +7824 2025-11-13 19:24:34.264473+00 2025-11-13 19:24:34.264485+00 f t in_progress_vet 1584 1583 +7825 2025-11-13 19:24:44.032683+00 2025-11-13 19:24:44.03269+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 14:00:00 1584 1583 +7826 2025-11-13 19:46:05.644933+00 2025-11-13 19:46:05.644946+00 f t vet_asked Veterinario asignado: di Risio Daniela 1584 1583 +7827 2025-11-13 19:46:06.342914+00 2025-11-13 19:46:06.342925+00 f t vet_accepted 1584 1583 +7828 2025-11-13 19:46:06.356021+00 2025-11-13 19:46:06.356029+00 f t in_progress_pay 1584 1583 +7829 2025-11-13 20:03:39.502582+00 2025-11-13 20:03:39.502591+00 f t rejected D-Averiguando / Desconocido 1582 1208 +7830 2025-11-13 20:03:54.199283+00 2025-11-13 20:03:54.199293+00 f t rejected D-Provincia 1580 1208 +7831 2025-11-13 20:21:13.911044+00 2025-11-13 20:21:13.911054+00 f t pending 1585 \N +7832 2025-11-13 20:21:28.55768+00 2025-11-13 20:21:28.557688+00 f t in_progress_vet 1585 1583 +7833 2025-11-13 20:21:35.678807+00 2025-11-13 20:21:35.678815+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 16:00:00 1585 1583 +7834 2025-11-13 20:22:47.023929+00 2025-11-13 20:22:47.023939+00 f t vet_accepted 1585 \N +7835 2025-11-13 20:22:47.035835+00 2025-11-13 20:22:47.035843+00 f t in_progress_pay 1585 \N +7836 2025-11-13 20:37:11.002956+00 2025-11-13 20:37:11.002965+00 f t pending 1586 \N +7837 2025-11-13 20:37:40.18912+00 2025-11-13 20:37:40.189129+00 f t in_progress_vet 1586 1208 +7838 2025-11-13 20:37:48.846066+00 2025-11-13 20:37:48.846074+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 16:00:00 1586 1208 +7839 2025-11-13 20:38:03.961869+00 2025-11-13 20:38:03.961878+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1586 1208 +7840 2025-11-13 20:38:20.326472+00 2025-11-13 20:38:20.326482+00 f t Confirmado 1586 \N +7841 2025-11-13 20:38:20.295112+00 2025-11-13 20:38:20.295125+00 f t payed 1586 1208 +7842 2025-11-13 20:38:34.273766+00 2025-11-13 20:38:34.273775+00 f t Confirmado 1574 \N +7843 2025-11-13 20:38:34.236144+00 2025-11-13 20:38:34.236156+00 f t payed 1574 1208 +7844 2025-11-13 20:40:27.71267+00 2025-11-13 20:40:27.712678+00 f t Confirmado 1585 \N +7845 2025-11-13 20:40:27.668186+00 2025-11-13 20:40:27.668195+00 f t payed 1585 1583 +7846 2025-11-13 20:47:13.275456+00 2025-11-13 20:47:13.275464+00 f t rejected D-Provincia 1578 1208 +7847 2025-11-13 22:51:40.878751+00 2025-11-13 22:51:40.878761+00 f t pending 1587 \N +7848 2025-11-13 22:52:20.495832+00 2025-11-13 22:52:20.495841+00 f t in_progress_vet 1587 114 +7849 2025-11-13 22:52:44.914295+00 2025-11-13 22:52:44.914303+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 10:00:00 1587 114 +7850 2025-11-13 22:53:57.443015+00 2025-11-13 22:53:57.443027+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1587 114 +7851 2025-11-13 23:19:00.922262+00 2025-11-13 23:19:00.922269+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 17:30:00 1587 114 +7852 2025-11-13 23:19:20.002988+00 2025-11-13 23:19:20.002996+00 f t vet_asked Veterinario asignado: Laura Gorostegui Maria 1587 114 +7853 2025-11-13 23:19:21.18013+00 2025-11-13 23:19:21.180142+00 f t vet_accepted 1587 114 +7854 2025-11-13 23:19:21.194098+00 2025-11-13 23:19:21.194109+00 f t in_progress_pay 1587 114 +7855 2025-11-13 23:19:41.115444+00 2025-11-13 23:19:41.115452+00 f t Confirmado 1587 \N +7856 2025-11-13 23:19:41.086538+00 2025-11-13 23:19:41.086547+00 f t payed 1587 114 +7857 2025-11-14 00:57:58.081901+00 2025-11-14 00:57:58.081909+00 f t pending 1588 \N +7858 2025-11-14 01:08:03.164004+00 2025-11-14 01:08:03.164014+00 f t pending 1589 \N +7859 2025-11-14 01:33:15.53079+00 2025-11-14 01:33:15.530798+00 f t pending 1590 \N +7860 2025-11-14 01:50:02.515396+00 2025-11-14 01:50:02.515412+00 f t pending 1591 \N +7861 2025-11-14 03:24:13.775788+00 2025-11-14 03:24:13.775796+00 f t pending 1592 \N +7862 2025-11-14 11:18:43.641847+00 2025-11-14 11:18:43.641859+00 f t pending 1593 \N +7863 2025-11-14 11:53:19.884215+00 2025-11-14 11:53:19.884225+00 f t pending 1594 \N +7864 2025-11-14 11:53:38.425167+00 2025-11-14 11:53:38.425176+00 f t in_progress_vet 1594 1583 +7865 2025-11-14 11:54:50.870473+00 2025-11-14 11:54:50.87048+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 19:00:00 1594 1583 +7866 2025-11-14 11:54:56.131434+00 2025-11-14 11:54:56.131442+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1594 1583 +7867 2025-11-14 11:54:56.702974+00 2025-11-14 11:54:56.702983+00 f t vet_accepted 1594 1583 +7868 2025-11-14 11:54:56.715735+00 2025-11-14 11:54:56.715743+00 f t in_progress_pay 1594 1583 +7869 2025-11-14 11:57:50.981342+00 2025-11-14 11:57:50.981351+00 f t in_progress_vet 1589 1583 +7870 2025-11-14 12:06:58.431909+00 2025-11-14 12:06:58.431923+00 f t rejected D-Tiempo de respuestas 1584 1583 +7871 2025-11-14 12:14:27.922532+00 2025-11-14 12:14:27.922539+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 15:00:00 1590 1583 +7872 2025-11-14 12:19:47.305852+00 2025-11-14 12:19:47.305865+00 f t rejected D-Sin seguimiento 1588 1583 +7873 2025-11-14 12:20:10.418594+00 2025-11-14 12:20:10.418603+00 f t rejected D-Averiguando / Desconocido 1593 1583 +7874 2025-11-14 12:21:41.710022+00 2025-11-14 12:21:41.710035+00 f t rejected D-Averiguando / Desconocido 1591 1583 +7875 2025-11-14 12:21:54.969138+00 2025-11-14 12:21:54.969148+00 f t in_progress_vet 1592 1583 +7958 2025-11-14 16:44:42.874573+00 2025-11-14 16:44:42.874583+00 f t vet_accepted 1602 \N +7876 2025-11-14 12:22:01.642468+00 2025-11-14 12:22:01.64248+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 16:00:00 1592 1583 +7877 2025-11-14 12:30:42.497409+00 2025-11-14 12:30:42.49742+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1592 1583 +7878 2025-11-14 12:30:43.118848+00 2025-11-14 12:30:43.118856+00 f t vet_accepted 1592 1583 +7879 2025-11-14 12:30:43.134306+00 2025-11-14 12:30:43.134316+00 f t in_progress_pay 1592 1583 +7880 2025-11-14 12:33:36.221331+00 2025-11-14 12:33:36.22134+00 f t pending 1595 \N +7881 2025-11-14 12:34:55.492458+00 2025-11-14 12:34:55.492466+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 12:00:00 1592 1583 +7882 2025-11-14 12:35:05.921472+00 2025-11-14 12:35:05.92148+00 f t Confirmado 1592 \N +7883 2025-11-14 12:35:05.883358+00 2025-11-14 12:35:05.883368+00 f t payed 1592 1583 +7884 2025-11-14 12:38:15.015573+00 2025-11-14 12:38:15.015582+00 f t vet_accepted 1590 \N +7885 2025-11-14 12:38:15.0288+00 2025-11-14 12:38:15.028809+00 f t in_progress_pay 1590 \N +7886 2025-11-14 12:45:51.949252+00 2025-11-14 12:45:51.94926+00 f t in_progress_vet 1595 1583 +7887 2025-11-14 12:46:04.496808+00 2025-11-14 12:46:04.496819+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 14:00:00 1595 1583 +7888 2025-11-14 13:22:55.548893+00 2025-11-14 13:22:55.548901+00 f t Confirmado 1590 \N +7889 2025-11-14 13:22:55.516712+00 2025-11-14 13:22:55.516723+00 f t payed 1590 1583 +7890 2025-11-14 13:42:57.541804+00 2025-11-14 13:42:57.541813+00 f t pending 1596 \N +7891 2025-11-14 13:43:25.541915+00 2025-11-14 13:43:25.541927+00 f t in_progress_vet 1596 1583 +7892 2025-11-14 13:43:30.510915+00 2025-11-14 13:43:30.510923+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 09:30:00 1596 1583 +7893 2025-11-14 13:43:37.711815+00 2025-11-14 13:43:37.711826+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1596 1583 +7894 2025-11-14 13:43:38.592473+00 2025-11-14 13:43:38.592485+00 f t vet_accepted 1596 1583 +7895 2025-11-14 13:43:38.607371+00 2025-11-14 13:43:38.607383+00 f t in_progress_pay 1596 1583 +7896 2025-11-14 13:43:51.210587+00 2025-11-14 13:43:51.210598+00 f t Confirmado 1596 \N +7897 2025-11-14 13:43:51.182007+00 2025-11-14 13:43:51.182015+00 f t payed 1596 1583 +7898 2025-11-14 13:47:51.276924+00 2025-11-14 13:47:51.276936+00 f t pending 1597 \N +7899 2025-11-14 13:48:00.444255+00 2025-11-14 13:48:00.444263+00 f t in_progress_vet 1597 1583 +7900 2025-11-14 13:48:01.389859+00 2025-11-14 13:48:01.389872+00 f t in_progress_vet 1597 1583 +7901 2025-11-14 13:48:07.054471+00 2025-11-14 13:48:07.054478+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 15:30:00 1597 1583 +7902 2025-11-14 13:48:13.805209+00 2025-11-14 13:48:13.805221+00 f t vet_asked Veterinario asignado: Campo Silvia 1597 1583 +7903 2025-11-14 13:48:14.470306+00 2025-11-14 13:48:14.470315+00 f t vet_accepted 1597 1583 +7904 2025-11-14 13:48:14.490867+00 2025-11-14 13:48:14.490876+00 f t in_progress_pay 1597 1583 +7905 2025-11-14 13:48:41.558176+00 2025-11-14 13:48:41.558184+00 f t Confirmado 1597 \N +7906 2025-11-14 13:48:41.528931+00 2025-11-14 13:48:41.528939+00 f t payed 1597 1583 +7907 2025-11-14 14:02:53.872029+00 2025-11-14 14:02:53.872036+00 f t Confirmado 1594 \N +7908 2025-11-14 14:02:53.842048+00 2025-11-14 14:02:53.842057+00 f t payed 1594 1583 +7909 2025-11-14 14:12:06.868707+00 2025-11-14 14:12:06.86872+00 f t pending 1598 \N +7910 2025-11-14 14:19:42.995718+00 2025-11-14 14:19:42.995727+00 f t in_progress_vet 1598 1583 +7911 2025-11-14 14:19:50.368162+00 2025-11-14 14:19:50.368169+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 18:00:00 1598 1583 +7912 2025-11-14 14:43:05.408124+00 2025-11-14 14:43:05.408137+00 f t rejected D-Emergencia 1589 1583 +7913 2025-11-14 14:49:06.86199+00 2025-11-14 14:49:06.862+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 13:00:00 1595 1583 +7914 2025-11-14 14:50:08.812585+00 2025-11-14 14:50:08.812597+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1595 1583 +7915 2025-11-14 14:50:09.689897+00 2025-11-14 14:50:09.68991+00 f t vet_accepted 1595 1583 +7916 2025-11-14 14:50:09.711022+00 2025-11-14 14:50:09.711035+00 f t in_progress_pay 1595 1583 +7917 2025-11-14 14:53:07.926489+00 2025-11-14 14:53:07.9265+00 f t rejected D-Emergencia 1595 1583 +7918 2025-11-14 15:09:14.950811+00 2025-11-14 15:09:14.95082+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 12:30:00 1583 1583 +7919 2025-11-14 15:09:50.322297+00 2025-11-14 15:09:50.322308+00 f t vet_accepted 1583 \N +7920 2025-11-14 15:09:50.337403+00 2025-11-14 15:09:50.337413+00 f t in_progress_pay 1583 \N +7921 2025-11-14 15:16:37.58639+00 2025-11-14 15:16:37.586401+00 f t pending 1599 \N +7922 2025-11-14 15:16:42.734456+00 2025-11-14 15:16:42.734468+00 f t Confirmado 1583 \N +7923 2025-11-14 15:16:42.685789+00 2025-11-14 15:16:42.685798+00 f t payed 1583 1583 +7924 2025-11-14 15:22:10.258072+00 2025-11-14 15:22:10.25808+00 f t coordinated Solicitud coordinada para 2025-11-15 a las 17:30:00 1598 1583 +7925 2025-11-14 15:22:15.190485+00 2025-11-14 15:22:15.190497+00 f t payed 1598 1583 +7926 2025-11-14 15:22:21.143495+00 2025-11-14 15:22:21.143502+00 f t Confirmado 1598 \N +7927 2025-11-14 15:22:22.338199+00 2025-11-14 15:22:22.338213+00 f t vet_asked Veterinario asignado: di Risio Daniela 1598 1583 +7928 2025-11-14 15:22:23.104396+00 2025-11-14 15:22:23.104405+00 f t vet_accepted 1598 1583 +7929 2025-11-14 15:28:59.585308+00 2025-11-14 15:28:59.585318+00 f t in_progress_vet 1599 1583 +7930 2025-11-14 15:46:07.328524+00 2025-11-14 15:46:07.328532+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 17:00:00 1599 1583 +7931 2025-11-14 15:47:31.091676+00 2025-11-14 15:47:31.091688+00 f t vet_accepted 1599 \N +7932 2025-11-14 15:47:31.105136+00 2025-11-14 15:47:31.105145+00 f t in_progress_pay 1599 \N +7933 2025-11-14 15:47:32.046138+00 2025-11-14 15:47:32.046146+00 f t rejected Solicitud rechazada por Usuario no especificado 1599 \N +7934 2025-11-14 15:47:32.054619+00 2025-11-14 15:47:32.054627+00 f t in_progress_vet 1599 \N +7935 2025-11-14 15:53:28.742219+00 2025-11-14 15:53:28.742229+00 f t vet_accepted 1599 \N +7936 2025-11-14 15:53:28.756103+00 2025-11-14 15:53:28.756114+00 f t in_progress_pay 1599 \N +7937 2025-11-14 16:08:20.628758+00 2025-11-14 16:08:20.62877+00 f t Confirmado 1599 \N +7938 2025-11-14 16:08:20.598839+00 2025-11-14 16:08:20.598848+00 f t payed 1599 1583 +7939 2025-11-14 16:27:32.248247+00 2025-11-14 16:27:32.248257+00 f t pending 1600 \N +7940 2025-11-14 16:28:01.158038+00 2025-11-14 16:28:01.158048+00 f t in_progress_vet 1600 1583 +7941 2025-11-14 16:28:07.937255+00 2025-11-14 16:28:07.937263+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 18:00:00 1600 1583 +7942 2025-11-14 16:28:12.93252+00 2025-11-14 16:28:12.932528+00 f t vet_asked Veterinario asignado: Levisman Damián 1600 1583 +7943 2025-11-14 16:28:13.649961+00 2025-11-14 16:28:13.64997+00 f t vet_accepted 1600 1583 +7944 2025-11-14 16:28:13.661727+00 2025-11-14 16:28:13.661736+00 f t in_progress_pay 1600 1583 +7945 2025-11-14 16:28:33.318411+00 2025-11-14 16:28:33.318419+00 f t Confirmado 1600 \N +7946 2025-11-14 16:28:33.288808+00 2025-11-14 16:28:33.288818+00 f t payed 1600 1583 +7947 2025-11-14 16:34:36.807184+00 2025-11-14 16:34:36.807193+00 f t pending 1601 \N +7948 2025-11-14 16:34:50.697178+00 2025-11-14 16:34:50.697187+00 f t in_progress_vet 1601 1583 +7949 2025-11-14 16:34:56.05105+00 2025-11-14 16:34:56.051058+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 15:30:00 1601 1583 +7950 2025-11-14 16:35:02.42453+00 2025-11-14 16:35:02.424544+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1601 1583 +7951 2025-11-14 16:35:03.348859+00 2025-11-14 16:35:03.348874+00 f t vet_accepted 1601 1583 +7952 2025-11-14 16:35:03.385231+00 2025-11-14 16:35:03.385246+00 f t in_progress_pay 1601 1583 +7953 2025-11-14 16:35:28.685672+00 2025-11-14 16:35:28.685684+00 f t Confirmado 1601 \N +7954 2025-11-14 16:35:28.652931+00 2025-11-14 16:35:28.652941+00 f t payed 1601 1583 +7955 2025-11-14 16:43:27.072124+00 2025-11-14 16:43:27.072134+00 f t pending 1602 \N +7956 2025-11-14 16:43:44.448484+00 2025-11-14 16:43:44.448494+00 f t in_progress_vet 1602 1583 +7957 2025-11-14 16:44:06.332509+00 2025-11-14 16:44:06.332517+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 18:00:00 1602 1583 +7959 2025-11-14 16:44:42.888451+00 2025-11-14 16:44:42.88846+00 f t in_progress_pay 1602 \N +7960 2025-11-14 16:57:25.231393+00 2025-11-14 16:57:25.231401+00 f t pending 1603 \N +7961 2025-11-14 16:58:17.151641+00 2025-11-14 16:58:17.151651+00 f t in_progress_vet 1603 1583 +7962 2025-11-14 16:58:24.375814+00 2025-11-14 16:58:24.375822+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1603 1583 +7963 2025-11-14 16:58:25.327794+00 2025-11-14 16:58:25.327802+00 f t vet_accepted 1603 1583 +7964 2025-11-14 16:58:25.339787+00 2025-11-14 16:58:25.339795+00 f t in_progress_pay 1603 1583 +7965 2025-11-14 16:58:42.242209+00 2025-11-14 16:58:42.242217+00 f t Confirmado 1603 \N +7966 2025-11-14 16:58:42.213893+00 2025-11-14 16:58:42.213903+00 f t payed 1603 1583 +7967 2025-11-14 17:50:04.500242+00 2025-11-14 17:50:04.500259+00 f t pending 1604 \N +7968 2025-11-14 17:50:45.814814+00 2025-11-14 17:50:45.814822+00 f t in_progress_vet 1604 1583 +7969 2025-11-14 18:01:01.193209+00 2025-11-14 18:01:01.193219+00 f t rejected D-Averiguando / Desconocido 1604 1583 +7970 2025-11-14 18:01:17.66456+00 2025-11-14 18:01:17.664572+00 f t pending 1605 \N +7971 2025-11-14 18:01:36.232724+00 2025-11-14 18:01:36.232733+00 f t in_progress_vet 1605 1583 +7972 2025-11-14 18:01:43.291821+00 2025-11-14 18:01:43.29183+00 f t coordinated Solicitud coordinada para 2025-11-14 a las 15:00:00 1605 1583 +7973 2025-11-14 18:35:38.708082+00 2025-11-14 18:35:38.708091+00 f t payed 1605 1583 +7974 2025-11-14 18:35:42.401212+00 2025-11-14 18:35:42.40122+00 f t Confirmado 1605 \N +7975 2025-11-14 18:35:43.750976+00 2025-11-14 18:35:43.75099+00 f t vet_asked Veterinario asignado: di Risio Daniela 1605 1583 +7976 2025-11-14 18:35:44.410884+00 2025-11-14 18:35:44.410892+00 f t vet_accepted 1605 1583 +7977 2025-11-14 18:35:53.836051+00 2025-11-14 18:35:53.83606+00 f t coordinated Solicitud coordinada para 2025-11-15 a las 18:00:00 1605 1583 +7978 2025-11-14 19:41:03.132955+00 2025-11-14 19:41:03.132966+00 f t pending 1606 \N +7979 2025-11-14 19:41:33.637081+00 2025-11-14 19:41:33.63709+00 f t pending 1607 \N +7980 2025-11-14 19:41:47.414888+00 2025-11-14 19:41:47.414898+00 f t in_progress_vet 1606 1583 +7981 2025-11-14 19:42:23.83065+00 2025-11-14 19:42:23.830659+00 f t coordinated Solicitud coordinada para 2025-11-15 a las 10:00:00 1606 1583 +7982 2025-11-14 19:43:09.765986+00 2025-11-14 19:43:09.765998+00 f t vet_asked Veterinario asignado: Gilbert Javier 1606 1583 +7983 2025-11-14 19:43:11.250267+00 2025-11-14 19:43:11.250279+00 f t vet_accepted 1606 1583 +7984 2025-11-14 19:43:11.268688+00 2025-11-14 19:43:11.268697+00 f t in_progress_pay 1606 1583 +7985 2025-11-14 19:49:52.198598+00 2025-11-14 19:49:52.198607+00 f t pending 1608 \N +7986 2025-11-14 19:50:21.887456+00 2025-11-14 19:50:21.887465+00 f t in_progress_vet 1608 1583 +7987 2025-11-14 19:55:18.398245+00 2025-11-14 19:55:18.398257+00 f t coordinated Solicitud coordinada para 2025-11-15 a las 09:30:00 1608 1583 +7988 2025-11-14 19:55:39.387603+00 2025-11-14 19:55:39.387612+00 f t vet_asked Veterinario asignado: Palladino Martín 1608 1583 +7989 2025-11-14 19:55:40.030703+00 2025-11-14 19:55:40.030712+00 f t vet_accepted 1608 1583 +7990 2025-11-14 19:55:40.042685+00 2025-11-14 19:55:40.042694+00 f t in_progress_pay 1608 1583 +7991 2025-11-14 20:23:29.256554+00 2025-11-14 20:23:29.256566+00 f t vet_accepted 1599 \N +7992 2025-11-14 21:43:14.435186+00 2025-11-14 21:43:14.435198+00 f t Confirmado 1608 \N +7993 2025-11-14 21:43:14.399996+00 2025-11-14 21:43:14.400009+00 f t payed 1608 1583 +7994 2025-11-14 22:04:17.671646+00 2025-11-14 22:04:17.671656+00 f t pending 1609 \N +7995 2025-11-14 22:04:46.990309+00 2025-11-14 22:04:46.990318+00 f t in_progress_vet 1609 1208 +7996 2025-11-14 22:04:58.835497+00 2025-11-14 22:04:58.835511+00 f t coordinated Solicitud coordinada para 2025-12-13 a las 10:00:00 1609 1208 +7997 2025-11-14 22:07:51.100543+00 2025-11-14 22:07:51.100553+00 f t vet_accepted 1609 \N +7998 2025-11-14 22:07:51.113377+00 2025-11-14 22:07:51.113387+00 f t in_progress_pay 1609 \N +7999 2025-11-15 01:50:45.264686+00 2025-11-15 01:50:45.264697+00 f t pending 1610 \N +8000 2025-11-15 11:19:11.341153+00 2025-11-15 11:19:11.341162+00 f t pending 1611 \N +8001 2025-11-15 12:15:12.586152+00 2025-11-15 12:15:12.586168+00 f t vet_accepted 1446 \N +8002 2025-11-15 12:21:52.97119+00 2025-11-15 12:21:52.9712+00 f t in_progress_vet 1610 1208 +8003 2025-11-15 12:22:08.867686+00 2025-11-15 12:22:08.867696+00 f t in_progress_vet 1611 1208 +8004 2025-11-15 12:56:11.046472+00 2025-11-15 12:56:11.04648+00 f t coordinated Solicitud coordinada para 2025-11-15 a las 14:00:00 1610 1208 +8005 2025-11-15 13:04:37.741229+00 2025-11-15 13:04:37.741238+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 17:30:00 1611 1208 +8006 2025-11-15 16:17:40.194361+00 2025-11-15 16:17:40.19437+00 f t pending 1612 \N +8007 2025-11-15 17:25:31.08891+00 2025-11-15 17:25:31.088921+00 f t pending 1613 \N +8008 2025-11-15 17:26:16.483919+00 2025-11-15 17:26:16.48393+00 f t in_progress_vet 1613 1208 +8009 2025-11-15 17:26:30.257462+00 2025-11-15 17:26:30.257474+00 f t coordinated Solicitud coordinada para 2025-11-15 a las 16:00:00 1613 1208 +8010 2025-11-15 17:28:25.891244+00 2025-11-15 17:28:25.891255+00 f t in_progress_vet 1612 1208 +8011 2025-11-15 17:49:19.045197+00 2025-11-15 17:49:19.045208+00 f t coordinated Solicitud coordinada para 2025-11-16 a las 11:00:00 1610 1208 +8012 2025-11-15 17:49:24.591208+00 2025-11-15 17:49:24.591221+00 f t vet_asked Veterinario asignado: Palummo Mariana 1610 1208 +8013 2025-11-15 17:58:01.574417+00 2025-11-15 17:58:01.574426+00 f t Confirmado 1610 \N +8014 2025-11-15 17:58:01.532472+00 2025-11-15 17:58:01.532498+00 f t payed 1610 1208 +8015 2025-11-15 18:15:56.202229+00 2025-11-15 18:15:56.202238+00 f t pending 1614 \N +8016 2025-11-15 18:24:26.217263+00 2025-11-15 18:24:26.217272+00 f t in_progress_vet 1614 1208 +8017 2025-11-15 18:27:22.81617+00 2025-11-15 18:27:22.816179+00 f t pending 1615 \N +8018 2025-11-15 18:27:38.495327+00 2025-11-15 18:27:38.49534+00 f t in_progress_vet 1615 1208 +8019 2025-11-15 18:28:03.991452+00 2025-11-15 18:28:03.991464+00 f t coordinated Solicitud coordinada para 2025-11-16 a las 08:00:00 1615 1208 +8020 2025-11-15 18:28:21.159553+00 2025-11-15 18:28:21.159561+00 f t vet_asked Veterinario asignado: Palladino Martín 1615 1208 +8021 2025-11-15 18:28:33.778585+00 2025-11-15 18:28:33.778596+00 f t Confirmado 1615 \N +8022 2025-11-15 18:28:33.747541+00 2025-11-15 18:28:33.747551+00 f t payed 1615 1208 +8023 2025-11-15 19:07:43.848343+00 2025-11-15 19:07:43.848354+00 f t rejected D-Abandono Bot 1611 1208 +8024 2025-11-15 19:07:54.882995+00 2025-11-15 19:07:54.883004+00 f t rejected D-Abandono Bot 1609 1208 +8025 2025-11-15 19:14:04.449129+00 2025-11-15 19:14:04.449138+00 f t pending 1616 \N +8026 2025-11-15 19:15:22.484589+00 2025-11-15 19:15:22.484597+00 f t Confirmado 1609 \N +8027 2025-11-15 19:15:22.45051+00 2025-11-15 19:15:22.450519+00 f t payed 1609 1208 +8028 2025-11-15 19:16:54.543805+00 2025-11-15 19:16:54.543813+00 f t in_progress_vet 1616 1208 +8029 2025-11-15 19:34:24.885075+00 2025-11-15 19:34:24.885082+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 17:00:00 1612 1208 +8030 2025-11-15 19:35:15.253475+00 2025-11-15 19:35:15.253484+00 f t vet_accepted 1612 \N +8031 2025-11-15 19:35:15.267715+00 2025-11-15 19:35:15.267725+00 f t in_progress_pay 1612 \N +8032 2025-11-15 19:37:41.727333+00 2025-11-15 19:37:41.727341+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 18:00:00 1614 1208 +8033 2025-11-15 19:44:04.09553+00 2025-11-15 19:44:04.095538+00 f t coordinated Solicitud coordinada para 2025-11-15 a las 17:30:00 1616 1208 +8034 2025-11-15 19:44:46.181687+00 2025-11-15 19:44:46.181699+00 f t vet_accepted 1614 \N +8035 2025-11-15 19:44:46.19827+00 2025-11-15 19:44:46.198282+00 f t in_progress_pay 1614 \N +8036 2025-11-15 19:49:40.204007+00 2025-11-15 19:49:40.204019+00 f t pending 1617 \N +8037 2025-11-15 19:49:54.313589+00 2025-11-15 19:49:54.313597+00 f t in_progress_vet 1617 1208 +8038 2025-11-15 19:50:02.147603+00 2025-11-15 19:50:02.147616+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 20:00:00 1617 1208 +8039 2025-11-15 19:50:26.079764+00 2025-11-15 19:50:26.079772+00 f t vet_asked Veterinario asignado: di Risio Daniela 1617 1208 +8040 2025-11-15 20:01:07.103713+00 2025-11-15 20:01:07.103728+00 f t vet_accepted 1616 \N +8041 2025-11-15 20:01:07.126236+00 2025-11-15 20:01:07.126249+00 f t in_progress_pay 1616 \N +8042 2025-11-15 20:06:51.143074+00 2025-11-15 20:06:51.143082+00 f t coordinated Solicitud coordinada para 2025-11-16 a las 13:00:00 1613 1208 +8043 2025-11-15 20:06:57.80798+00 2025-11-15 20:06:57.807988+00 f t vet_asked Veterinario asignado: Palladino Martín 1613 1208 +8044 2025-11-15 20:08:30.217792+00 2025-11-15 20:08:30.217801+00 f t Confirmado 1614 \N +8045 2025-11-15 20:08:30.181228+00 2025-11-15 20:08:30.181237+00 f t payed 1614 1208 +8046 2025-11-15 20:12:47.458123+00 2025-11-15 20:12:47.458135+00 f t Confirmado 1616 \N +8047 2025-11-15 20:12:47.421371+00 2025-11-15 20:12:47.421383+00 f t payed 1616 1208 +8048 2025-11-15 20:17:02.329021+00 2025-11-15 20:17:02.329031+00 f t Confirmado 1613 \N +8049 2025-11-15 20:17:02.28801+00 2025-11-15 20:17:02.288024+00 f t payed 1613 1208 +8050 2025-11-15 20:17:44.280642+00 2025-11-15 20:17:44.280652+00 f t pending 1618 \N +8051 2025-11-15 20:18:00.761908+00 2025-11-15 20:18:00.76192+00 f t in_progress_vet 1618 1208 +8052 2025-11-15 20:18:09.0277+00 2025-11-15 20:18:09.027709+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 15:00:00 1618 1208 +8053 2025-11-15 20:18:54.525802+00 2025-11-15 20:18:54.525811+00 f t payed 1618 1208 +8054 2025-11-15 20:19:08.746547+00 2025-11-15 20:19:08.746557+00 f t Confirmado 1618 \N +8055 2025-11-15 20:19:09.791925+00 2025-11-15 20:19:09.791936+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1618 1208 +8056 2025-11-15 20:24:01.258834+00 2025-11-15 20:24:01.258845+00 f t Confirmado 1617 \N +8057 2025-11-15 20:24:01.225276+00 2025-11-15 20:24:01.225286+00 f t payed 1617 1208 +8058 2025-11-15 20:39:32.136652+00 2025-11-15 20:39:32.136661+00 f t rejected D-Abandono Bot 1612 1208 +8059 2025-11-15 23:05:23.11813+00 2025-11-15 23:05:23.118139+00 f t vet_accepted 1616 \N +8060 2025-11-15 23:12:31.882493+00 2025-11-15 23:12:31.882502+00 f t vet_accepted 1574 \N +8061 2025-11-16 00:05:58.631496+00 2025-11-16 00:05:58.63151+00 f t vet_accepted 1485 \N +8062 2025-11-16 02:25:24.460131+00 2025-11-16 02:25:24.46014+00 f t pending 1619 \N +8063 2025-11-16 12:28:59.294927+00 2025-11-16 12:28:59.294937+00 f t in_progress_vet 1619 113 +8064 2025-11-16 13:52:38.192897+00 2025-11-16 13:52:38.192908+00 f t pending 1620 \N +8065 2025-11-16 14:10:43.532636+00 2025-11-16 14:10:43.532645+00 f t in_progress_vet 1620 114 +8066 2025-11-16 14:20:15.59168+00 2025-11-16 14:20:15.59169+00 f t pending 1621 \N +8067 2025-11-16 14:20:51.378688+00 2025-11-16 14:20:51.378699+00 f t in_progress_vet 1621 114 +8068 2025-11-16 14:21:15.561269+00 2025-11-16 14:21:15.56128+00 f t coordinated Solicitud coordinada para 2025-11-13 a las 13:30:00 1621 114 +8069 2025-11-16 14:23:52.152611+00 2025-11-16 14:23:52.15262+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 11:00:00 1619 114 +8070 2025-11-16 14:24:11.952435+00 2025-11-16 14:24:11.952443+00 f t vet_accepted 1619 \N +8071 2025-11-16 14:24:11.968279+00 2025-11-16 14:24:11.96829+00 f t in_progress_pay 1619 \N +8072 2025-11-16 14:24:14.52871+00 2025-11-16 14:24:14.528719+00 f t rejected Solicitud rechazada por Usuario no especificado 1619 \N +8073 2025-11-16 14:24:14.539695+00 2025-11-16 14:24:14.539707+00 f t in_progress_vet 1619 \N +8074 2025-11-16 14:24:17.19053+00 2025-11-16 14:24:17.190539+00 f t vet_accepted 1619 \N +8075 2025-11-16 14:24:17.204879+00 2025-11-16 14:24:17.204888+00 f t in_progress_pay 1619 \N +8076 2025-11-16 14:24:19.251314+00 2025-11-16 14:24:19.251323+00 f t rejected Solicitud rechazada por Usuario no especificado 1619 \N +8077 2025-11-16 14:24:19.259551+00 2025-11-16 14:24:19.259561+00 f t in_progress_vet 1619 \N +8078 2025-11-16 14:25:20.242693+00 2025-11-16 14:25:20.242701+00 f t coordinated Solicitud coordinada para 2025-11-16 a las 16:00:00 1620 114 +8079 2025-11-16 14:25:35.951796+00 2025-11-16 14:25:35.951807+00 f t vet_accepted 1620 \N +8080 2025-11-16 14:25:35.966141+00 2025-11-16 14:25:35.96615+00 f t in_progress_pay 1620 \N +8081 2025-11-16 14:25:37.66261+00 2025-11-16 14:25:37.66262+00 f t rejected Solicitud rechazada por Usuario no especificado 1620 \N +8082 2025-11-16 14:25:37.671724+00 2025-11-16 14:25:37.671733+00 f t in_progress_vet 1620 \N +8083 2025-11-16 14:25:38.83657+00 2025-11-16 14:25:38.836579+00 f t vet_accepted 1619 \N +8084 2025-11-16 14:25:38.849712+00 2025-11-16 14:25:38.849722+00 f t in_progress_pay 1619 \N +8085 2025-11-16 14:27:00.653419+00 2025-11-16 14:27:00.653427+00 f t coordinated Solicitud coordinada para 2025-11-16 a las 13:30:00 1621 114 +8086 2025-11-16 14:27:01.532319+00 2025-11-16 14:27:01.532334+00 f t vet_accepted 1621 \N +8087 2025-11-16 14:27:01.55199+00 2025-11-16 14:27:01.552001+00 f t in_progress_pay 1621 \N +8088 2025-11-16 14:27:24.192232+00 2025-11-16 14:27:24.19224+00 f t rejected Solicitud rechazada por Usuario no especificado 1621 \N +8089 2025-11-16 14:27:24.200716+00 2025-11-16 14:27:24.200724+00 f t in_progress_vet 1621 \N +8090 2025-11-16 14:38:13.265954+00 2025-11-16 14:38:13.265963+00 f t pending 1622 \N +8091 2025-11-16 14:38:31.559544+00 2025-11-16 14:38:31.559556+00 f t in_progress_vet 1622 114 +8092 2025-11-16 14:38:46.399012+00 2025-11-16 14:38:46.399021+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 16:00:00 1622 114 +8093 2025-11-16 14:39:12.282495+00 2025-11-16 14:39:12.282503+00 f t vet_accepted 1622 \N +8094 2025-11-16 14:39:12.295392+00 2025-11-16 14:39:12.295401+00 f t in_progress_pay 1622 \N +8095 2025-11-16 17:27:03.388378+00 2025-11-16 17:27:03.388393+00 f t vet_asked Veterinario asignado: Fernandez Gaston 1611 1208 +8096 2025-11-16 17:30:03.83576+00 2025-11-16 17:30:03.835775+00 f t Confirmado 1611 \N +8097 2025-11-16 17:30:03.740712+00 2025-11-16 17:30:03.740726+00 f t payed 1611 1208 +8098 2025-11-16 19:12:18.837193+00 2025-11-16 19:12:18.837202+00 f t pending 1623 \N +8099 2025-11-16 19:12:33.890996+00 2025-11-16 19:12:33.891005+00 f t in_progress_vet 1623 114 +8100 2025-11-16 19:13:04.423253+00 2025-11-16 19:13:04.423265+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 19:00:00 1623 114 +8101 2025-11-16 19:24:14.13512+00 2025-11-16 19:24:14.135153+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 19:00:00 1623 114 +8102 2025-11-16 19:25:26.678808+00 2025-11-16 19:25:26.678817+00 f t payed 1623 114 +8103 2025-11-16 19:25:36.14962+00 2025-11-16 19:25:36.149631+00 f t Confirmado 1623 \N +8104 2025-11-16 19:25:37.090954+00 2025-11-16 19:25:37.090964+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1623 114 +8105 2025-11-16 19:25:38.095228+00 2025-11-16 19:25:38.095237+00 f t vet_accepted 1623 114 +8106 2025-11-16 19:30:49.919715+00 2025-11-16 19:30:49.919726+00 f t Confirmado 1622 \N +8107 2025-11-16 19:30:49.887651+00 2025-11-16 19:30:49.887661+00 f t payed 1622 114 +8108 2025-11-16 19:31:15.265965+00 2025-11-16 19:31:15.265979+00 f t rejected D-Averiguando / Desconocido 1619 114 +8109 2025-11-16 19:32:26.294054+00 2025-11-16 19:32:26.294062+00 f t coordinated Solicitud coordinada para 2025-11-16 a las 14:00:00 1621 114 +8110 2025-11-16 19:32:42.038089+00 2025-11-16 19:32:42.038097+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1621 114 +8111 2025-11-16 19:32:43.065392+00 2025-11-16 19:32:43.0654+00 f t vet_accepted 1621 114 +8112 2025-11-16 19:32:43.078287+00 2025-11-16 19:32:43.078297+00 f t in_progress_pay 1621 114 +8113 2025-11-16 19:33:50.823847+00 2025-11-16 19:33:50.823856+00 f t Confirmado 1621 \N +8114 2025-11-16 19:33:50.793191+00 2025-11-16 19:33:50.7932+00 f t payed 1621 114 +8115 2025-11-16 20:23:24.378223+00 2025-11-16 20:23:24.378233+00 f t pending 1624 \N +8116 2025-11-16 20:25:44.572801+00 2025-11-16 20:25:44.572811+00 f t in_progress_vet 1624 114 +8117 2025-11-16 20:25:54.309945+00 2025-11-16 20:25:54.309953+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 11:30:00 1624 114 +8118 2025-11-16 20:29:02.639847+00 2025-11-16 20:29:02.639855+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1624 114 +8119 2025-11-16 20:29:03.878374+00 2025-11-16 20:29:03.878383+00 f t vet_accepted 1624 114 +8120 2025-11-16 20:29:03.891049+00 2025-11-16 20:29:03.891063+00 f t in_progress_pay 1624 114 +8121 2025-11-16 20:29:46.201108+00 2025-11-16 20:29:46.201116+00 f t Confirmado 1624 \N +8122 2025-11-16 20:29:46.14209+00 2025-11-16 20:29:46.1421+00 f t payed 1624 114 +8123 2025-11-16 21:21:29.630732+00 2025-11-16 21:21:29.630742+00 f t vet_accepted 1590 \N +8124 2025-11-16 21:24:14.43729+00 2025-11-16 21:24:14.437299+00 f t vet_accepted 1587 \N +8125 2025-11-16 21:27:07.12589+00 2025-11-16 21:27:07.125899+00 f t vet_accepted 1444 \N +8126 2025-11-16 21:27:07.14106+00 2025-11-16 21:27:07.14107+00 f t in_progress_pay 1444 \N +8127 2025-11-16 22:28:02.122235+00 2025-11-16 22:28:02.122244+00 f t vet_accepted 1515 \N +8128 2025-11-17 12:24:37.608868+00 2025-11-17 12:24:37.60888+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 16:00:00 1620 1583 +8129 2025-11-17 12:45:54.626107+00 2025-11-17 12:45:54.626115+00 f t pending 1625 \N +8130 2025-11-17 12:46:09.266366+00 2025-11-17 12:46:09.266373+00 f t in_progress_vet 1625 1583 +8131 2025-11-17 12:46:15.931904+00 2025-11-17 12:46:15.931912+00 f t vet_asked Veterinario asignado: Campo Silvia 1625 1583 +8132 2025-11-17 12:46:16.523481+00 2025-11-17 12:46:16.52349+00 f t vet_accepted 1625 1583 +8133 2025-11-17 12:46:16.53519+00 2025-11-17 12:46:16.535199+00 f t in_progress_pay 1625 1583 +8134 2025-11-17 12:46:29.02128+00 2025-11-17 12:46:29.021289+00 f t Confirmado 1625 \N +8135 2025-11-17 12:46:28.986439+00 2025-11-17 12:46:28.986452+00 f t payed 1625 1583 +8136 2025-11-17 13:13:06.43909+00 2025-11-17 13:13:06.439099+00 f t pending 1626 \N +8137 2025-11-17 13:14:48.221534+00 2025-11-17 13:14:48.221543+00 f t in_progress_vet 1626 1583 +8138 2025-11-17 13:27:10.602622+00 2025-11-17 13:27:10.602632+00 f t pending 1627 \N +8139 2025-11-17 13:32:01.966104+00 2025-11-17 13:32:01.966118+00 f t rejected D-Averiguando / Desconocido 1626 1583 +8140 2025-11-17 13:32:16.974295+00 2025-11-17 13:32:16.974309+00 f t in_progress_vet 1627 1583 +8141 2025-11-17 13:34:58.37995+00 2025-11-17 13:34:58.379964+00 f t pending 1628 \N +8142 2025-11-17 13:35:18.138254+00 2025-11-17 13:35:18.138264+00 f t in_progress_vet 1628 1583 +8143 2025-11-17 13:35:23.883967+00 2025-11-17 13:35:23.883976+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 16:00:00 1628 1583 +8144 2025-11-17 13:43:22.706386+00 2025-11-17 13:43:22.706404+00 f t pending 1629 \N +8145 2025-11-17 13:43:38.161601+00 2025-11-17 13:43:38.161609+00 f t in_progress_vet 1629 114 +8146 2025-11-17 13:44:13.032253+00 2025-11-17 13:44:13.032265+00 f t vet_asked Veterinario asignado: di Risio Daniela 1629 114 +8147 2025-11-17 13:44:14.255396+00 2025-11-17 13:44:14.255408+00 f t vet_accepted 1629 114 +8148 2025-11-17 13:44:14.277729+00 2025-11-17 13:44:14.277742+00 f t in_progress_pay 1629 114 +8149 2025-11-17 13:44:33.690887+00 2025-11-17 13:44:33.690897+00 f t Confirmado 1629 \N +8150 2025-11-17 13:44:33.650521+00 2025-11-17 13:44:33.650533+00 f t payed 1629 114 +8151 2025-11-17 13:45:44.57559+00 2025-11-17 13:45:44.575598+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 14:00:00 1627 1583 +8152 2025-11-17 13:48:39.681216+00 2025-11-17 13:48:39.681225+00 f t vet_accepted 1627 \N +8153 2025-11-17 13:48:39.694363+00 2025-11-17 13:48:39.694372+00 f t in_progress_pay 1627 \N +8154 2025-11-17 13:48:41.588447+00 2025-11-17 13:48:41.588458+00 f t rejected Solicitud rechazada por Usuario no especificado 1627 \N +8155 2025-11-17 13:48:41.599917+00 2025-11-17 13:48:41.599928+00 f t in_progress_vet 1627 \N +8156 2025-11-17 13:48:43.033055+00 2025-11-17 13:48:43.033066+00 f t vet_accepted 1627 \N +8157 2025-11-17 13:48:43.045411+00 2025-11-17 13:48:43.04542+00 f t in_progress_pay 1627 \N +8158 2025-11-17 13:48:45.457601+00 2025-11-17 13:48:45.45761+00 f t rejected Solicitud rechazada por Usuario no especificado 1627 \N +8159 2025-11-17 13:48:45.466373+00 2025-11-17 13:48:45.466384+00 f t in_progress_vet 1627 \N +8160 2025-11-17 13:48:52.149998+00 2025-11-17 13:48:52.150007+00 f t vet_accepted 1627 \N +8161 2025-11-17 13:48:52.163077+00 2025-11-17 13:48:52.163086+00 f t in_progress_pay 1627 \N +8162 2025-11-17 13:48:53.742108+00 2025-11-17 13:48:53.742116+00 f t rejected Solicitud rechazada por Usuario no especificado 1627 \N +8163 2025-11-17 13:48:53.751616+00 2025-11-17 13:48:53.751625+00 f t in_progress_vet 1627 \N +8164 2025-11-17 13:52:50.011351+00 2025-11-17 13:52:50.011364+00 f t vet_accepted 1627 \N +8165 2025-11-17 13:52:50.027582+00 2025-11-17 13:52:50.027591+00 f t in_progress_pay 1627 \N +8166 2025-11-17 13:56:44.943106+00 2025-11-17 13:56:44.943115+00 f t vet_asked Veterinario asignado: Fernandez Gaston 1620 1583 +8167 2025-11-17 13:56:45.612098+00 2025-11-17 13:56:45.612107+00 f t vet_accepted 1620 1583 +8168 2025-11-17 13:56:45.625965+00 2025-11-17 13:56:45.625974+00 f t in_progress_pay 1620 1583 +8169 2025-11-17 13:57:01.686727+00 2025-11-17 13:57:01.686736+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 19:30:00 1620 1583 +8170 2025-11-17 14:55:42.707969+00 2025-11-17 14:55:42.707982+00 f t Confirmado 1627 \N +8171 2025-11-17 14:55:42.669596+00 2025-11-17 14:55:42.669605+00 f t payed 1627 1583 +8172 2025-11-17 15:09:58.104708+00 2025-11-17 15:09:58.104717+00 f t pending 1630 \N +8173 2025-11-17 15:10:14.743664+00 2025-11-17 15:10:14.743676+00 f t in_progress_vet 1630 1583 +8174 2025-11-17 15:10:24.804783+00 2025-11-17 15:10:24.80479+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 17:00:00 1630 1583 +8175 2025-11-17 15:10:39.849224+00 2025-11-17 15:10:39.849232+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1630 1583 +8176 2025-11-17 15:10:40.566832+00 2025-11-17 15:10:40.566844+00 f t vet_accepted 1630 1583 +8177 2025-11-17 15:10:40.580054+00 2025-11-17 15:10:40.580063+00 f t in_progress_pay 1630 1583 +8178 2025-11-17 15:10:53.382011+00 2025-11-17 15:10:53.382019+00 f t Confirmado 1630 \N +8179 2025-11-17 15:10:53.353876+00 2025-11-17 15:10:53.353885+00 f t payed 1630 1583 +8180 2025-11-17 15:32:25.159767+00 2025-11-17 15:32:25.159775+00 f t pending 1631 \N +8181 2025-11-17 15:32:28.174537+00 2025-11-17 15:32:28.174546+00 f t pending 1632 \N +8182 2025-11-17 15:34:23.923708+00 2025-11-17 15:34:23.923719+00 f t in_progress_vet 1632 1583 +8183 2025-11-17 15:34:26.381355+00 2025-11-17 15:34:26.381362+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 09:00:00 1632 1583 +8184 2025-11-17 15:59:22.582289+00 2025-11-17 15:59:22.582297+00 f t rejected D-Sin seguimiento 1631 1583 +8185 2025-11-17 16:02:56.149038+00 2025-11-17 16:02:56.149051+00 f t rejected D-Sin Turno 1628 1583 +8186 2025-11-17 16:25:03.830918+00 2025-11-17 16:25:03.830936+00 f t pending 1633 \N +8187 2025-11-17 16:25:33.553482+00 2025-11-17 16:25:33.55349+00 f t in_progress_vet 1633 1583 +8188 2025-11-17 16:25:41.737168+00 2025-11-17 16:25:41.737177+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 16:00:00 1633 1583 +8189 2025-11-17 16:36:26.245166+00 2025-11-17 16:36:26.245175+00 f t pending 1634 \N +8190 2025-11-17 16:36:32.945797+00 2025-11-17 16:36:32.945805+00 f t in_progress_vet 1634 1583 +8191 2025-11-17 16:36:41.252772+00 2025-11-17 16:36:41.252781+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 14:30:00 1634 1583 +8192 2025-11-17 16:36:47.862318+00 2025-11-17 16:36:47.862326+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1634 1583 +8193 2025-11-17 16:36:48.536077+00 2025-11-17 16:36:48.536086+00 f t vet_accepted 1634 1583 +8194 2025-11-17 16:36:48.554017+00 2025-11-17 16:36:48.554028+00 f t in_progress_pay 1634 1583 +8195 2025-11-17 16:37:34.594534+00 2025-11-17 16:37:34.594543+00 f t Confirmado 1634 \N +8196 2025-11-17 16:37:34.563269+00 2025-11-17 16:37:34.56328+00 f t payed 1634 1583 +8197 2025-11-17 16:37:36.637884+00 2025-11-17 16:37:36.637892+00 f t payed 1634 1583 +8198 2025-11-17 16:38:49.297133+00 2025-11-17 16:38:49.29714+00 f t pending 1635 \N +8199 2025-11-17 16:38:59.755679+00 2025-11-17 16:38:59.755687+00 f t in_progress_vet 1635 1583 +8200 2025-11-17 16:39:05.799541+00 2025-11-17 16:39:05.799552+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 12:00:00 1635 1583 +8201 2025-11-17 16:39:10.994937+00 2025-11-17 16:39:10.994949+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1635 1583 +8202 2025-11-17 16:39:11.786633+00 2025-11-17 16:39:11.786641+00 f t vet_accepted 1635 1583 +8203 2025-11-17 16:39:11.801009+00 2025-11-17 16:39:11.801018+00 f t in_progress_pay 1635 1583 +8204 2025-11-17 16:40:07.366272+00 2025-11-17 16:40:07.366287+00 f t Confirmado 1635 \N +8205 2025-11-17 16:40:07.306184+00 2025-11-17 16:40:07.306194+00 f t payed 1635 1583 +8206 2025-11-17 17:01:58.230658+00 2025-11-17 17:01:58.230671+00 f t pending 1636 \N +8207 2025-11-17 17:05:49.325696+00 2025-11-17 17:05:49.325708+00 f t in_progress_vet 1636 1583 +8208 2025-11-17 17:07:33.967119+00 2025-11-17 17:07:33.967152+00 f t coordinated Solicitud coordinada para 2025-11-28 a las 10:00:00 1636 1583 +8209 2025-11-17 17:08:41.438174+00 2025-11-17 17:08:41.438187+00 f t pending 1637 \N +8210 2025-11-17 17:09:48.887206+00 2025-11-17 17:09:48.887216+00 f t in_progress_vet 1637 1583 +8211 2025-11-17 17:09:56.018431+00 2025-11-17 17:09:56.018439+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 08:30:00 1637 1583 +8212 2025-11-17 17:13:34.438301+00 2025-11-17 17:13:34.438311+00 f t payed 1637 1583 +8213 2025-11-17 17:13:55.016358+00 2025-11-17 17:13:55.016366+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 08:30:00 1632 1583 +8214 2025-11-17 17:14:05.87801+00 2025-11-17 17:14:05.878053+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1632 1583 +8215 2025-11-17 17:14:06.528302+00 2025-11-17 17:14:06.52831+00 f t vet_accepted 1632 1583 +8216 2025-11-17 17:14:06.543622+00 2025-11-17 17:14:06.543634+00 f t in_progress_pay 1632 1583 +8217 2025-11-17 17:14:59.201173+00 2025-11-17 17:14:59.201181+00 f t vet_asked Veterinario asignado: Battimo Totino Antonella 1632 1583 +8218 2025-11-17 17:14:59.884649+00 2025-11-17 17:14:59.884657+00 f t vet_accepted 1632 1583 +8219 2025-11-17 17:14:59.899589+00 2025-11-17 17:14:59.899599+00 f t in_progress_pay 1632 1583 +8220 2025-11-17 17:15:09.247091+00 2025-11-17 17:15:09.247104+00 f t Confirmado 1632 \N +8221 2025-11-17 17:15:09.189878+00 2025-11-17 17:15:09.18989+00 f t payed 1632 1583 +8222 2025-11-17 17:15:52.381108+00 2025-11-17 17:15:52.381119+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 12:00:00 1637 1583 +8223 2025-11-17 17:16:00.677047+00 2025-11-17 17:16:00.677056+00 f t Confirmado 1637 \N +8224 2025-11-17 17:16:03.507056+00 2025-11-17 17:16:03.507069+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1637 1583 +8225 2025-11-17 17:16:04.941885+00 2025-11-17 17:16:04.941897+00 f t vet_accepted 1637 1583 +8226 2025-11-17 17:49:55.359587+00 2025-11-17 17:49:55.359596+00 f t vet_accepted 1636 \N +8227 2025-11-17 17:49:55.374499+00 2025-11-17 17:49:55.374511+00 f t in_progress_pay 1636 \N +8228 2025-11-17 17:50:38.194183+00 2025-11-17 17:50:38.194191+00 f t vet_accepted 1587 \N +8229 2025-11-17 18:08:47.385887+00 2025-11-17 18:08:47.385898+00 f t vet_accepted 1633 \N +8230 2025-11-17 18:08:47.401019+00 2025-11-17 18:08:47.401029+00 f t in_progress_pay 1633 \N +8231 2025-11-17 18:08:48.944552+00 2025-11-17 18:08:48.944564+00 f t rejected Solicitud rechazada por Usuario no especificado 1633 \N +8232 2025-11-17 18:08:48.954555+00 2025-11-17 18:08:48.954565+00 f t in_progress_vet 1633 \N +8233 2025-11-17 18:10:29.187802+00 2025-11-17 18:10:29.187814+00 f t vet_accepted 1633 \N +8234 2025-11-17 18:10:29.2058+00 2025-11-17 18:10:29.205814+00 f t in_progress_pay 1633 \N +8235 2025-11-17 18:12:52.299195+00 2025-11-17 18:12:52.299203+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 19:30:00 1633 1583 +8236 2025-11-17 18:25:01.614505+00 2025-11-17 18:25:01.614516+00 f t pending 1638 \N +8237 2025-11-17 18:27:19.794917+00 2025-11-17 18:27:19.794925+00 f t in_progress_vet 1638 114 +8238 2025-11-17 18:27:48.519919+00 2025-11-17 18:27:48.519926+00 f t coordinated Solicitud coordinada para 2025-11-17 a las 17:30:00 1638 114 +8239 2025-11-17 18:30:26.665153+00 2025-11-17 18:30:26.665162+00 f t payed 1638 114 +8240 2025-11-17 18:30:45.223171+00 2025-11-17 18:30:45.22318+00 f t Confirmado 1638 \N +8241 2025-11-17 18:30:47.984467+00 2025-11-17 18:30:47.984476+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1638 114 +8242 2025-11-17 18:30:49.242827+00 2025-11-17 18:30:49.242837+00 f t vet_accepted 1638 114 +8243 2025-11-17 19:06:53.737373+00 2025-11-17 19:06:53.737381+00 f t rejected D-Abandono Bot 1636 1583 +8244 2025-11-17 19:09:21.835549+00 2025-11-17 19:09:21.835561+00 f t pending 1639 \N +8245 2025-11-17 19:10:15.38048+00 2025-11-17 19:10:15.380488+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 16:00:00 1639 1583 +8246 2025-11-17 19:33:40.942961+00 2025-11-17 19:33:40.942968+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 19:00:00 1620 1583 +8247 2025-11-17 19:33:57.384239+00 2025-11-17 19:33:57.384251+00 f t Confirmado 1620 \N +8248 2025-11-17 19:33:57.351181+00 2025-11-17 19:33:57.351195+00 f t payed 1620 1583 +8249 2025-11-17 19:56:29.732815+00 2025-11-17 19:56:29.732823+00 f t vet_accepted 1636 \N +8250 2025-11-17 19:56:29.748213+00 2025-11-17 19:56:29.748226+00 f t in_progress_pay 1636 \N +8251 2025-11-17 20:02:47.532622+00 2025-11-17 20:02:47.532632+00 f t pending 1640 \N +8252 2025-11-17 20:19:11.770779+00 2025-11-17 20:19:11.770787+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 18:30:00 1639 1583 +8253 2025-11-17 20:19:16.701516+00 2025-11-17 20:19:16.701524+00 f t vet_asked Veterinario asignado: Palladino Martín 1639 1583 +8254 2025-11-17 20:19:17.400108+00 2025-11-17 20:19:17.400116+00 f t vet_accepted 1639 1583 +8255 2025-11-17 20:19:17.412038+00 2025-11-17 20:19:17.412047+00 f t in_progress_pay 1639 1583 +8256 2025-11-17 20:25:30.746447+00 2025-11-17 20:25:30.746455+00 f t Confirmado 1639 \N +8257 2025-11-17 20:25:30.715903+00 2025-11-17 20:25:30.715912+00 f t payed 1639 1583 +8258 2025-11-17 21:21:41.473479+00 2025-11-17 21:21:41.473493+00 f t pending 1641 \N +8259 2025-11-17 21:32:11.819063+00 2025-11-17 21:32:11.819075+00 f t pending 1642 \N +8260 2025-11-17 21:43:09.771609+00 2025-11-17 21:43:09.771619+00 f t vet_accepted 1614 \N +8261 2025-11-17 23:13:23.55762+00 2025-11-17 23:13:23.557631+00 f t pending 1643 \N +8262 2025-11-17 23:17:46.892014+00 2025-11-17 23:17:46.892024+00 f t in_progress_vet 1643 114 +8263 2025-11-17 23:36:28.541702+00 2025-11-17 23:36:28.541712+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 13:30:00 1643 114 +8264 2025-11-17 23:56:53.669639+00 2025-11-17 23:56:53.669648+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1643 114 +8265 2025-11-17 23:56:54.62606+00 2025-11-17 23:56:54.626072+00 f t vet_accepted 1643 114 +8266 2025-11-17 23:56:54.645756+00 2025-11-17 23:56:54.645769+00 f t in_progress_pay 1643 114 +8267 2025-11-18 00:01:18.303041+00 2025-11-18 00:01:18.303051+00 f t Confirmado 1643 \N +8268 2025-11-18 00:01:18.269708+00 2025-11-18 00:01:18.26972+00 f t payed 1643 114 +8269 2025-11-18 00:04:21.60503+00 2025-11-18 00:04:21.605037+00 f t pending 1644 \N +8270 2025-11-18 00:05:06.059751+00 2025-11-18 00:05:06.059764+00 f t in_progress_vet 1644 114 +8271 2025-11-18 00:05:40.501694+00 2025-11-18 00:05:40.501702+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 18:30:00 1644 114 +8272 2025-11-18 00:06:19.198534+00 2025-11-18 00:06:19.198543+00 f t vet_asked Veterinario asignado: Palladino Martín 1644 114 +8273 2025-11-18 00:06:20.779482+00 2025-11-18 00:06:20.779491+00 f t vet_accepted 1644 114 +8274 2025-11-18 00:06:20.793136+00 2025-11-18 00:06:20.793148+00 f t in_progress_pay 1644 114 +8275 2025-11-18 00:07:34.866126+00 2025-11-18 00:07:34.866134+00 f t Confirmado 1644 \N +8276 2025-11-18 00:07:34.839748+00 2025-11-18 00:07:34.839756+00 f t payed 1644 114 +8277 2025-11-18 00:10:34.84297+00 2025-11-18 00:10:34.842977+00 f t pending 1645 \N +8278 2025-11-18 00:11:13.452973+00 2025-11-18 00:11:13.452981+00 f t in_progress_vet 1645 114 +8279 2025-11-18 00:11:33.889858+00 2025-11-18 00:11:33.889866+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1645 114 +8280 2025-11-18 00:11:34.851799+00 2025-11-18 00:11:34.851808+00 f t vet_accepted 1645 114 +8281 2025-11-18 00:11:34.866822+00 2025-11-18 00:11:34.866831+00 f t in_progress_pay 1645 114 +8282 2025-11-18 00:11:49.87761+00 2025-11-18 00:11:49.877617+00 f t Confirmado 1645 \N +8283 2025-11-18 00:11:49.852054+00 2025-11-18 00:11:49.852066+00 f t payed 1645 114 +8284 2025-11-18 00:14:16.144761+00 2025-11-18 00:14:16.144769+00 f t pending 1646 \N +8285 2025-11-18 00:14:41.661082+00 2025-11-18 00:14:41.661091+00 f t in_progress_vet 1646 114 +8286 2025-11-18 00:14:56.097332+00 2025-11-18 00:14:56.09734+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 08:00:00 1646 114 +8287 2025-11-18 00:15:09.175991+00 2025-11-18 00:15:09.176+00 f t vet_asked Veterinario asignado: Palladino Martín 1646 114 +8288 2025-11-18 00:15:10.173297+00 2025-11-18 00:15:10.173308+00 f t vet_accepted 1646 114 +8289 2025-11-18 00:15:10.19487+00 2025-11-18 00:15:10.194879+00 f t in_progress_pay 1646 114 +8290 2025-11-18 00:15:24.111912+00 2025-11-18 00:15:24.111924+00 f t Confirmado 1646 \N +8291 2025-11-18 00:15:24.081296+00 2025-11-18 00:15:24.081308+00 f t payed 1646 114 +8292 2025-11-18 01:17:40.221305+00 2025-11-18 01:17:40.221317+00 f t pending 1647 \N +8293 2025-11-18 05:24:11.608392+00 2025-11-18 05:24:11.608411+00 f t vet_accepted 1476 \N +8294 2025-11-18 06:36:32.358071+00 2025-11-18 06:36:32.35808+00 f t pending 1648 \N +8295 2025-11-18 10:53:56.293394+00 2025-11-18 10:53:56.293401+00 f t pending 1649 \N +8296 2025-11-18 12:56:57.849171+00 2025-11-18 12:56:57.849181+00 f t in_progress_vet 1647 1208 +8297 2025-11-18 12:57:13.286155+00 2025-11-18 12:57:13.286164+00 f t in_progress_vet 1648 1208 +8298 2025-11-18 12:57:52.375154+00 2025-11-18 12:57:52.375163+00 f t in_progress_vet 1649 1208 +8299 2025-11-18 14:55:11.052137+00 2025-11-18 14:55:11.052151+00 f t pending 1650 \N +8300 2025-11-18 14:55:24.439938+00 2025-11-18 14:55:24.439947+00 f t in_progress_vet 1640 1583 +8301 2025-11-18 14:55:33.838646+00 2025-11-18 14:55:33.838661+00 f t in_progress_vet 1650 1208 +8302 2025-11-18 14:55:36.258669+00 2025-11-18 14:55:36.258677+00 f t in_progress_vet 1641 1583 +8303 2025-11-18 14:55:42.913061+00 2025-11-18 14:55:42.91307+00 f t in_progress_vet 1642 1583 +8304 2025-11-18 14:57:03.663912+00 2025-11-18 14:57:03.663924+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 17:00:00 1640 1583 +8305 2025-11-18 14:57:49.564077+00 2025-11-18 14:57:49.564084+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 16:00:00 1650 1208 +8306 2025-11-18 15:00:08.690938+00 2025-11-18 15:00:08.690953+00 f t vet_asked Veterinario asignado: Palummo Mariana 1650 1208 +8307 2025-11-18 15:00:11.802799+00 2025-11-18 15:00:11.802814+00 f t vet_accepted 1650 1208 +8308 2025-11-18 15:00:11.837464+00 2025-11-18 15:00:11.837482+00 f t in_progress_pay 1650 1208 +8309 2025-11-18 15:33:20.420934+00 2025-11-18 15:33:20.420943+00 f t pending 1651 \N +8310 2025-11-18 15:40:59.487532+00 2025-11-18 15:40:59.487541+00 f t in_progress_vet 1651 1583 +8311 2025-11-18 15:41:29.280325+00 2025-11-18 15:41:29.280335+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 10:00:00 1651 1583 +8312 2025-11-18 15:41:54.424038+00 2025-11-18 15:41:54.424046+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 18:00:00 1651 1583 +8313 2025-11-18 15:42:39.684187+00 2025-11-18 15:42:39.684195+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 10:00:00 1651 1583 +8314 2025-11-18 15:58:49.377856+00 2025-11-18 15:58:49.377866+00 f t coordinated Solicitud coordinada para 2025-12-03 a las 14:00:00 1642 1583 +8315 2025-11-18 16:00:50.702235+00 2025-11-18 16:00:50.702244+00 f t vet_accepted 1642 \N +8316 2025-11-18 16:00:50.714598+00 2025-11-18 16:00:50.714606+00 f t in_progress_pay 1642 \N +8317 2025-11-18 16:04:14.676175+00 2025-11-18 16:04:14.676183+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 10:00:00 1651 1583 +8318 2025-11-18 16:04:20.01584+00 2025-11-18 16:04:20.015848+00 f t vet_asked Veterinario asignado: Memed Nestor 1651 1583 +8319 2025-11-18 16:04:20.714953+00 2025-11-18 16:04:20.714962+00 f t vet_accepted 1651 1583 +8320 2025-11-18 16:04:20.726594+00 2025-11-18 16:04:20.726602+00 f t in_progress_pay 1651 1583 +8321 2025-11-18 16:20:23.541731+00 2025-11-18 16:20:23.541737+00 f t Confirmado 1651 \N +8322 2025-11-18 16:20:23.507429+00 2025-11-18 16:20:23.507437+00 f t payed 1651 1583 +8323 2025-11-18 16:39:20.230059+00 2025-11-18 16:39:20.230068+00 f t vet_accepted 1642 \N +8324 2025-11-18 16:39:20.244442+00 2025-11-18 16:39:20.244451+00 f t in_progress_pay 1642 \N +8325 2025-11-18 16:39:56.394398+00 2025-11-18 16:39:56.394406+00 f t vet_accepted 1642 \N +8326 2025-11-18 16:39:56.407296+00 2025-11-18 16:39:56.407306+00 f t in_progress_pay 1642 \N +8327 2025-11-18 16:47:04.299228+00 2025-11-18 16:47:04.299236+00 f t coordinated Solicitud coordinada para 2025-12-03 a las 13:00:00 1641 1583 +8328 2025-11-18 17:11:23.960003+00 2025-11-18 17:11:23.960011+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 17:30:00 1648 1208 +8329 2025-11-18 17:14:06.28261+00 2025-11-18 17:14:06.282623+00 f t pending 1652 \N +8330 2025-11-18 17:14:43.563448+00 2025-11-18 17:14:43.563456+00 f t in_progress_vet 1652 1208 +8331 2025-11-18 17:15:18.580548+00 2025-11-18 17:15:18.580558+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 16:00:00 1652 1208 +8332 2025-11-18 17:16:15.036928+00 2025-11-18 17:16:15.036937+00 f t vet_accepted 1652 \N +8333 2025-11-18 17:16:15.049623+00 2025-11-18 17:16:15.049632+00 f t in_progress_pay 1652 \N +8334 2025-11-18 17:16:17.409497+00 2025-11-18 17:16:17.409508+00 f t rejected Solicitud rechazada por Usuario no especificado 1652 \N +8335 2025-11-18 17:16:17.418511+00 2025-11-18 17:16:17.418522+00 f t in_progress_vet 1652 \N +8336 2025-11-18 17:18:09.986571+00 2025-11-18 17:18:09.986581+00 f t vet_accepted 1652 \N +8337 2025-11-18 17:18:10.006807+00 2025-11-18 17:18:10.006818+00 f t in_progress_pay 1652 \N +8338 2025-11-18 17:19:19.696445+00 2025-11-18 17:19:19.696453+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 19:00:00 1649 1208 +8339 2025-11-18 17:50:10.607107+00 2025-11-18 17:50:10.607187+00 f t Confirmado 1652 \N +8340 2025-11-18 17:50:10.544499+00 2025-11-18 17:50:10.544509+00 f t payed 1652 1208 +8341 2025-11-18 18:15:04.235808+00 2025-11-18 18:15:04.235824+00 f t vet_accepted 1641 \N +8342 2025-11-18 18:15:04.277233+00 2025-11-18 18:15:04.277248+00 f t in_progress_pay 1641 \N +8343 2025-11-18 18:28:42.489858+00 2025-11-18 18:28:42.489867+00 f t rejected D-Precio 1641 1583 +8344 2025-11-18 18:48:33.204668+00 2025-11-18 18:48:33.204677+00 f t pending 1653 \N +8345 2025-11-18 18:57:57.476395+00 2025-11-18 18:57:57.476405+00 f t in_progress_vet 1653 1583 +8346 2025-11-18 19:04:57.497597+00 2025-11-18 19:04:57.497606+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 19:00:00 1653 1583 +8347 2025-11-18 19:09:18.136136+00 2025-11-18 19:09:18.136148+00 f t vet_accepted 1653 \N +8348 2025-11-18 19:09:18.153366+00 2025-11-18 19:09:18.153375+00 f t in_progress_pay 1653 \N +8349 2025-11-18 19:16:25.779534+00 2025-11-18 19:16:25.779546+00 f t Confirmado 1653 \N +8350 2025-11-18 19:16:26.843689+00 2025-11-18 19:16:26.843698+00 f t payed 1653 1583 +8351 2025-11-18 19:16:25.732254+00 2025-11-18 19:16:25.732265+00 f t payed 1653 1583 +8352 2025-11-18 19:34:24.43093+00 2025-11-18 19:34:24.430939+00 f t rejected D-Abandono Bot 1640 1583 +8353 2025-11-18 19:51:40.689859+00 2025-11-18 19:51:40.689869+00 f t pending 1654 \N +8354 2025-11-18 19:52:46.843432+00 2025-11-18 19:52:46.843446+00 f t pending 1655 \N +8355 2025-11-18 19:53:12.703572+00 2025-11-18 19:53:12.703581+00 f t in_progress_vet 1655 1583 +8356 2025-11-18 19:53:21.472323+00 2025-11-18 19:53:21.472331+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 17:00:00 1655 1583 +8357 2025-11-18 19:54:47.498607+00 2025-11-18 19:54:47.498617+00 f t vet_accepted 1655 \N +8358 2025-11-18 19:54:47.512559+00 2025-11-18 19:54:47.512569+00 f t in_progress_pay 1655 \N +8359 2025-11-18 19:56:43.437852+00 2025-11-18 19:56:43.437864+00 f t pending 1656 \N +8360 2025-11-18 19:57:15.568341+00 2025-11-18 19:57:15.568349+00 f t in_progress_vet 1656 1583 +8361 2025-11-18 19:57:20.739804+00 2025-11-18 19:57:20.739811+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 09:00:00 1656 1583 +8362 2025-11-18 19:58:16.907833+00 2025-11-18 19:58:16.907843+00 f t in_progress_vet 1654 1583 +8363 2025-11-18 19:59:25.505624+00 2025-11-18 19:59:25.505634+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 19:00:00 1654 1583 +8364 2025-11-18 20:07:17.930156+00 2025-11-18 20:07:17.930169+00 f t pending 1657 \N +8365 2025-11-18 20:07:33.075093+00 2025-11-18 20:07:33.075105+00 f t in_progress_vet 1657 1583 +8366 2025-11-18 20:10:28.725317+00 2025-11-18 20:10:28.725327+00 f t pending 1658 \N +8367 2025-11-18 20:10:38.559783+00 2025-11-18 20:10:38.559793+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 12:30:00 1658 1583 +8368 2025-11-18 20:10:45.967529+00 2025-11-18 20:10:45.967538+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1658 1583 +8369 2025-11-18 20:10:46.683545+00 2025-11-18 20:10:46.683557+00 f t vet_accepted 1658 1583 +8370 2025-11-18 20:10:46.701197+00 2025-11-18 20:10:46.701206+00 f t in_progress_pay 1658 1583 +8371 2025-11-18 20:11:26.580006+00 2025-11-18 20:11:26.580017+00 f t Confirmado 1658 \N +8372 2025-11-18 20:11:26.542474+00 2025-11-18 20:11:26.542483+00 f t payed 1658 1583 +8373 2025-11-18 20:28:19.392959+00 2025-11-18 20:28:19.392967+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 20:30:00 1655 1583 +8374 2025-11-18 20:36:42.689705+00 2025-11-18 20:36:42.689713+00 f t vet_accepted 1655 \N +8375 2025-11-18 20:36:42.701298+00 2025-11-18 20:36:42.701306+00 f t in_progress_pay 1655 \N +8376 2025-11-18 21:02:25.994973+00 2025-11-18 21:02:25.994987+00 f t rejected D-Precio 1657 1583 +8377 2025-11-18 21:05:04.415723+00 2025-11-18 21:05:04.415738+00 f t Confirmado 1655 \N +8378 2025-11-18 21:05:04.347443+00 2025-11-18 21:05:04.347458+00 f t payed 1655 1583 +8379 2025-11-18 21:25:32.801736+00 2025-11-18 21:25:32.801745+00 f t vet_accepted 1649 \N +8380 2025-11-18 21:25:32.815679+00 2025-11-18 21:25:32.815687+00 f t in_progress_pay 1649 \N +8381 2025-11-18 21:28:10.506728+00 2025-11-18 21:28:10.506748+00 f t pending 1659 \N +8382 2025-11-18 21:28:48.165133+00 2025-11-18 21:28:48.165145+00 f t in_progress_vet 1659 1583 +8383 2025-11-18 21:28:53.729224+00 2025-11-18 21:28:53.729233+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 14:00:00 1659 1583 +8384 2025-11-18 21:28:59.840392+00 2025-11-18 21:28:59.840401+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1659 1583 +8385 2025-11-18 21:29:00.524695+00 2025-11-18 21:29:00.524703+00 f t vet_accepted 1659 1583 +8386 2025-11-18 21:29:00.536937+00 2025-11-18 21:29:00.536946+00 f t in_progress_pay 1659 1583 +8387 2025-11-18 21:30:05.972527+00 2025-11-18 21:30:05.972633+00 f t Confirmado 1659 \N +8388 2025-11-18 21:30:05.908102+00 2025-11-18 21:30:05.908116+00 f t payed 1659 1583 +8389 2025-11-18 21:39:50.687437+00 2025-11-18 21:39:50.687445+00 f t pending 1660 \N +8390 2025-11-18 21:46:22.802149+00 2025-11-18 21:46:22.802161+00 f t Confirmado 1649 \N +8391 2025-11-18 21:46:22.766464+00 2025-11-18 21:46:22.766472+00 f t payed 1649 1583 +8392 2025-11-18 21:51:47.167569+00 2025-11-18 21:51:47.167578+00 f t vet_asked Veterinario asignado: Fernandez Gaston 1648 1583 +8393 2025-11-18 21:51:47.878707+00 2025-11-18 21:51:47.87872+00 f t vet_accepted 1648 1583 +8394 2025-11-18 21:51:47.894439+00 2025-11-18 21:51:47.89445+00 f t in_progress_pay 1648 1583 +8395 2025-11-18 21:51:58.954449+00 2025-11-18 21:51:58.954459+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 19:00:00 1648 1583 +8396 2025-11-18 21:54:24.615632+00 2025-11-18 21:54:24.61564+00 f t coordinated Solicitud coordinada para 2025-11-23 a las 18:00:00 1656 1583 +8397 2025-11-18 21:54:31.952215+00 2025-11-18 21:54:31.952226+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1656 1583 +8398 2025-11-18 21:54:32.551856+00 2025-11-18 21:54:32.551866+00 f t vet_accepted 1656 1583 +8399 2025-11-18 21:54:32.565489+00 2025-11-18 21:54:32.5655+00 f t in_progress_pay 1656 1583 +8400 2025-11-18 22:02:23.403458+00 2025-11-18 22:02:23.403472+00 f t in_progress_vet 1660 1583 +8401 2025-11-18 22:04:34.333228+00 2025-11-18 22:04:34.333237+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 20:00:00 1660 1583 +8402 2025-11-18 22:13:52.637657+00 2025-11-18 22:13:52.63767+00 f t vet_accepted 1510 \N +8403 2025-11-18 22:24:46.079489+00 2025-11-18 22:24:46.079499+00 f t coordinated Solicitud coordinada para 2025-11-18 a las 22:00:00 1660 1583 +8404 2025-11-18 22:24:50.19845+00 2025-11-18 22:24:50.198463+00 f t vet_asked Veterinario asignado: di Risio Daniela 1660 1583 +8405 2025-11-18 22:24:50.805488+00 2025-11-18 22:24:50.805499+00 f t vet_accepted 1660 1583 +8406 2025-11-18 22:24:50.818906+00 2025-11-18 22:24:50.818916+00 f t in_progress_pay 1660 1583 +8407 2025-11-18 22:26:32.320632+00 2025-11-18 22:26:32.32064+00 f t Confirmado 1660 \N +8408 2025-11-18 22:26:32.294745+00 2025-11-18 22:26:32.294753+00 f t payed 1660 1583 +8409 2025-11-19 01:47:35.361077+00 2025-11-19 01:47:35.361089+00 f t vet_accepted 1649 \N +8410 2025-11-19 02:06:38.546187+00 2025-11-19 02:06:38.546196+00 f t pending 1661 \N +8411 2025-11-19 02:29:05.812084+00 2025-11-19 02:29:05.812093+00 f t Confirmado 1642 \N +8412 2025-11-19 02:29:05.777508+00 2025-11-19 02:29:05.777517+00 f t payed 1642 1583 +8413 2025-11-19 12:00:42.183559+00 2025-11-19 12:00:42.183569+00 f t pending 1662 \N +8414 2025-11-19 12:05:43.759382+00 2025-11-19 12:05:43.759391+00 f t pending 1663 \N +8415 2025-11-19 12:19:09.884855+00 2025-11-19 12:19:09.884868+00 f t in_progress_vet 1661 1208 +8416 2025-11-19 12:19:32.513516+00 2025-11-19 12:19:32.513524+00 f t in_progress_vet 1662 1208 +8417 2025-11-19 12:39:31.350646+00 2025-11-19 12:39:31.350655+00 f t pending 1664 \N +8418 2025-11-19 12:48:52.68411+00 2025-11-19 12:48:52.684118+00 f t rejected D-Averiguando / Desconocido 1663 1208 +8419 2025-11-19 12:49:00.389314+00 2025-11-19 12:49:00.389323+00 f t in_progress_vet 1664 1208 +8420 2025-11-19 12:49:42.613148+00 2025-11-19 12:49:42.613159+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 15:00:00 1662 1208 +8421 2025-11-19 12:51:49.753156+00 2025-11-19 12:51:49.753165+00 f t vet_accepted 1662 138 +8422 2025-11-19 12:51:49.766865+00 2025-11-19 12:51:49.766876+00 f t in_progress_pay 1662 138 +8423 2025-11-19 12:57:01.731048+00 2025-11-19 12:57:01.731059+00 f t pending 1665 \N +8424 2025-11-19 12:58:48.624261+00 2025-11-19 12:58:48.62427+00 f t in_progress_vet 1665 1208 +8425 2025-11-19 12:58:59.962844+00 2025-11-19 12:58:59.962851+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 11:00:00 1665 1208 +8426 2025-11-19 12:59:10.927409+00 2025-11-19 12:59:10.927419+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1665 1208 +8427 2025-11-19 12:59:26.259247+00 2025-11-19 12:59:26.259255+00 f t Confirmado 1665 \N +8428 2025-11-19 12:59:26.226562+00 2025-11-19 12:59:26.226571+00 f t payed 1665 1208 +8429 2025-11-19 13:04:53.84617+00 2025-11-19 13:04:53.846184+00 f t pending 1666 \N +8430 2025-11-19 13:09:23.865049+00 2025-11-19 13:09:23.865058+00 f t in_progress_vet 1666 1208 +8431 2025-11-19 13:12:03.186715+00 2025-11-19 13:12:03.186728+00 f t vet_accepted 1633 122 +8432 2025-11-19 13:12:03.205834+00 2025-11-19 13:12:03.205846+00 f t in_progress_pay 1633 122 +8433 2025-11-19 13:13:37.874419+00 2025-11-19 13:13:37.874429+00 f t pending 1667 \N +8434 2025-11-19 13:13:58.600504+00 2025-11-19 13:13:58.600513+00 f t pending 1668 \N +8435 2025-11-19 13:14:27.15061+00 2025-11-19 13:14:27.150622+00 f t in_progress_vet 1668 1208 +8436 2025-11-19 13:18:59.626962+00 2025-11-19 13:18:59.626975+00 f t pending 1669 \N +8437 2025-11-19 13:20:11.777471+00 2025-11-19 13:20:11.777482+00 f t in_progress_vet 1669 1208 +8438 2025-11-19 13:20:19.805063+00 2025-11-19 13:20:19.805072+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 12:00:00 1669 1208 +8439 2025-11-19 13:20:29.490742+00 2025-11-19 13:20:29.490754+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1669 1208 +8440 2025-11-19 13:20:39.804447+00 2025-11-19 13:20:39.804455+00 f t Confirmado 1669 \N +8441 2025-11-19 13:20:39.776225+00 2025-11-19 13:20:39.776234+00 f t payed 1669 1208 +8442 2025-11-19 13:28:53.266753+00 2025-11-19 13:28:53.266763+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 11:30:00 1661 1208 +8443 2025-11-19 13:30:25.673654+00 2025-11-19 13:30:25.673664+00 f t vet_accepted 1661 \N +8444 2025-11-19 13:30:25.690958+00 2025-11-19 13:30:25.690968+00 f t in_progress_pay 1661 \N +8445 2025-11-19 13:33:49.929658+00 2025-11-19 13:33:49.929669+00 f t Confirmado 1662 \N +8446 2025-11-19 13:33:49.900981+00 2025-11-19 13:33:49.900991+00 f t payed 1662 1208 +8447 2025-11-19 13:37:14.442876+00 2025-11-19 13:37:14.442885+00 f t pending 1670 \N +8448 2025-11-19 13:41:22.37406+00 2025-11-19 13:41:22.374069+00 f t pending 1671 \N +8449 2025-11-19 13:50:48.720545+00 2025-11-19 13:50:48.720553+00 f t in_progress_vet 1667 1208 +8450 2025-11-19 13:53:46.400068+00 2025-11-19 13:53:46.40008+00 f t in_progress_vet 1670 1208 +8451 2025-11-19 13:54:07.016628+00 2025-11-19 13:54:07.016638+00 f t pending 1672 \N +8452 2025-11-19 13:54:43.148318+00 2025-11-19 13:54:43.14833+00 f t rejected D-Averiguando / Desconocido 1647 1208 +8453 2025-11-19 13:54:50.545542+00 2025-11-19 13:54:50.545551+00 f t rejected D-Averiguando / Desconocido 1648 1208 +8454 2025-11-19 14:22:00.586617+00 2025-11-19 14:22:00.586625+00 f t coordinated Solicitud coordinada para 2025-11-28 a las 13:00:00 1668 1208 +8455 2025-11-19 14:22:51.006279+00 2025-11-19 14:22:51.006288+00 f t vet_accepted 1668 \N +8456 2025-11-19 14:22:51.018828+00 2025-11-19 14:22:51.018838+00 f t in_progress_pay 1668 \N +8457 2025-11-19 14:22:53.106287+00 2025-11-19 14:22:53.106294+00 f t rejected Solicitud rechazada por Usuario no especificado 1668 \N +8458 2025-11-19 14:22:53.114548+00 2025-11-19 14:22:53.114558+00 f t in_progress_vet 1668 \N +8459 2025-11-19 14:23:36.936134+00 2025-11-19 14:23:36.936144+00 f t vet_accepted 1668 \N +8460 2025-11-19 14:23:36.950933+00 2025-11-19 14:23:36.950944+00 f t in_progress_pay 1668 \N +8461 2025-11-19 14:24:38.986396+00 2025-11-19 14:24:38.986405+00 f t in_progress_vet 1672 1583 +8462 2025-11-19 14:24:46.174094+00 2025-11-19 14:24:46.174105+00 f t in_progress_vet 1671 1583 +8463 2025-11-19 14:25:04.114878+00 2025-11-19 14:25:04.11492+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 17:00:00 1667 1208 +8464 2025-11-19 14:27:23.719535+00 2025-11-19 14:27:23.719544+00 f t pending 1673 \N +8465 2025-11-19 14:27:38.251851+00 2025-11-19 14:27:38.251875+00 f t in_progress_vet 1673 1583 +8466 2025-11-19 14:27:44.763651+00 2025-11-19 14:27:44.763659+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 16:00:00 1673 1583 +8467 2025-11-19 14:29:26.136678+00 2025-11-19 14:29:26.136689+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 12:00:00 1672 1583 +8468 2025-11-19 14:29:30.675635+00 2025-11-19 14:29:30.675647+00 f t pending 1674 \N +8469 2025-11-19 14:29:44.979344+00 2025-11-19 14:29:44.979353+00 f t in_progress_vet 1674 1208 +8470 2025-11-19 14:29:54.12687+00 2025-11-19 14:29:54.126882+00 f t vet_accepted 1672 \N +8471 2025-11-19 14:29:54.143221+00 2025-11-19 14:29:54.143234+00 f t in_progress_pay 1672 \N +8472 2025-11-19 14:29:55.61865+00 2025-11-19 14:29:55.618658+00 f t rejected Solicitud rechazada por Usuario no especificado 1672 \N +8473 2025-11-19 14:29:55.626665+00 2025-11-19 14:29:55.626674+00 f t in_progress_vet 1672 \N +8474 2025-11-19 14:30:49.885564+00 2025-11-19 14:30:49.885575+00 f t coordinated Solicitud coordinada para 2025-12-03 a las 14:00:00 1674 1208 +8475 2025-11-19 14:34:49.312861+00 2025-11-19 14:34:49.31287+00 f t vet_accepted 1672 \N +8476 2025-11-19 14:34:49.32749+00 2025-11-19 14:34:49.3275+00 f t in_progress_pay 1672 \N +8477 2025-11-19 14:36:59.781616+00 2025-11-19 14:36:59.781625+00 f t vet_accepted 1674 \N +8478 2025-11-19 14:36:59.797061+00 2025-11-19 14:36:59.797074+00 f t in_progress_pay 1674 \N +8479 2025-11-19 14:45:56.847831+00 2025-11-19 14:45:56.847842+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 14:00:00 1664 1208 +8480 2025-11-19 14:46:59.624331+00 2025-11-19 14:46:59.624341+00 f t Confirmado 1656 \N +8481 2025-11-19 14:46:59.597059+00 2025-11-19 14:46:59.597068+00 f t payed 1656 1583 +8482 2025-11-19 14:48:54.943416+00 2025-11-19 14:48:54.943428+00 f t pending 1675 \N +8483 2025-11-19 14:49:14.169104+00 2025-11-19 14:49:14.169113+00 f t in_progress_vet 1675 1208 +8484 2025-11-19 14:49:19.444971+00 2025-11-19 14:49:19.444983+00 f t pending 1676 \N +8485 2025-11-19 14:49:32.857019+00 2025-11-19 14:49:32.857029+00 f t in_progress_vet 1676 1583 +8486 2025-11-19 14:49:36.293372+00 2025-11-19 14:49:36.29338+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 09:00:00 1676 1583 +8487 2025-11-19 14:49:45.698619+00 2025-11-19 14:49:45.698629+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1676 1583 +8488 2025-11-19 14:49:46.388545+00 2025-11-19 14:49:46.388554+00 f t vet_accepted 1676 1583 +8489 2025-11-19 14:49:46.401522+00 2025-11-19 14:49:46.401532+00 f t in_progress_pay 1676 1583 +8490 2025-11-19 14:49:56.465235+00 2025-11-19 14:49:56.465244+00 f t Confirmado 1676 \N +8491 2025-11-19 14:49:56.43324+00 2025-11-19 14:49:56.433251+00 f t payed 1676 1583 +8492 2025-11-19 14:54:02.345358+00 2025-11-19 14:54:02.34537+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 17:00:00 1675 1208 +8493 2025-11-19 14:55:43.395358+00 2025-11-19 14:55:43.395367+00 f t vet_accepted 1675 \N +8494 2025-11-19 14:55:43.409375+00 2025-11-19 14:55:43.409384+00 f t in_progress_pay 1675 \N +8495 2025-11-19 14:58:44.047333+00 2025-11-19 14:58:44.047341+00 f t rejected D-Sin seguimiento 1654 1583 +8496 2025-11-19 15:17:37.336091+00 2025-11-19 15:17:37.336104+00 f t vet_accepted 1672 \N +8497 2025-11-19 15:17:37.348953+00 2025-11-19 15:17:37.348962+00 f t in_progress_pay 1672 \N +8498 2025-11-19 15:21:10.735548+00 2025-11-19 15:21:10.735556+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 16:00:00 1675 1208 +8499 2025-11-19 15:21:17.073704+00 2025-11-19 15:21:17.073716+00 f t Confirmado 1675 \N +8500 2025-11-19 15:21:17.039424+00 2025-11-19 15:21:17.039436+00 f t payed 1675 1208 +8501 2025-11-19 15:26:08.213927+00 2025-11-19 15:26:08.213939+00 f t rejected D-Precio 1672 1583 +8502 2025-11-19 15:32:32.033346+00 2025-11-19 15:32:32.033353+00 f t coordinated Solicitud coordinada para 2025-11-27 a las 11:00:00 1666 1208 +8503 2025-11-19 15:33:25.904322+00 2025-11-19 15:33:25.904334+00 f t vet_accepted 1666 \N +8504 2025-11-19 15:33:25.919234+00 2025-11-19 15:33:25.91925+00 f t in_progress_pay 1666 \N +8505 2025-11-19 15:47:08.755314+00 2025-11-19 15:47:08.755323+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 19:00:00 1673 1583 +8506 2025-11-19 15:47:15.082657+00 2025-11-19 15:47:15.082666+00 f t vet_asked Veterinario asignado: di Risio Daniela 1673 1583 +8507 2025-11-19 15:47:15.699127+00 2025-11-19 15:47:15.699168+00 f t vet_accepted 1673 1583 +8508 2025-11-19 15:47:15.713649+00 2025-11-19 15:47:15.71366+00 f t in_progress_pay 1673 1583 +8509 2025-11-19 15:50:39.555363+00 2025-11-19 15:50:39.555373+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1664 1208 +8510 2025-11-19 15:52:31.7404+00 2025-11-19 15:52:31.74041+00 f t Confirmado 1666 \N +8511 2025-11-19 15:52:31.709281+00 2025-11-19 15:52:31.709291+00 f t payed 1666 1208 +8512 2025-11-19 15:59:21.452322+00 2025-11-19 15:59:21.452331+00 f t vet_asked Veterinario asignado: di Risio Daniela 1667 1208 +8513 2025-11-19 15:59:32.769161+00 2025-11-19 15:59:32.769174+00 f t rejected D-Emergencia 1664 1208 +8514 2025-11-19 16:09:58.8825+00 2025-11-19 16:09:58.882509+00 f t Confirmado 1673 \N +8515 2025-11-19 16:09:58.853866+00 2025-11-19 16:09:58.853879+00 f t payed 1673 1583 +8516 2025-11-19 16:23:19.846359+00 2025-11-19 16:23:19.846367+00 f t pending 1677 \N +8517 2025-11-19 16:24:29.693906+00 2025-11-19 16:24:29.693914+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 17:00:00 1677 1583 +8518 2025-11-19 16:47:47.466829+00 2025-11-19 16:47:47.466837+00 f t pending 1678 \N +8519 2025-11-19 16:48:03.10241+00 2025-11-19 16:48:03.102418+00 f t in_progress_vet 1678 1583 +8520 2025-11-19 16:48:15.937185+00 2025-11-19 16:48:15.937195+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1678 1583 +8521 2025-11-19 16:48:17.364734+00 2025-11-19 16:48:17.364742+00 f t vet_accepted 1678 1583 +8522 2025-11-19 16:48:17.377517+00 2025-11-19 16:48:17.377526+00 f t in_progress_pay 1678 1583 +8523 2025-11-19 16:48:40.245904+00 2025-11-19 16:48:40.245912+00 f t Confirmado 1678 \N +8524 2025-11-19 16:48:40.218487+00 2025-11-19 16:48:40.218497+00 f t payed 1678 1583 +8525 2025-11-19 16:49:59.655834+00 2025-11-19 16:49:59.655842+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 18:00:00 1667 1208 +8526 2025-11-19 16:50:06.579368+00 2025-11-19 16:50:06.579378+00 f t Confirmado 1667 \N +8527 2025-11-19 16:50:06.535678+00 2025-11-19 16:50:06.535691+00 f t payed 1667 1208 +8528 2025-11-19 16:58:29.108087+00 2025-11-19 16:58:29.108095+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 20:30:00 1677 1583 +8529 2025-11-19 16:58:33.603111+00 2025-11-19 16:58:33.60312+00 f t vet_asked Veterinario asignado: Palladino Martín 1677 1583 +8530 2025-11-19 16:58:34.270029+00 2025-11-19 16:58:34.270038+00 f t vet_accepted 1677 1583 +8531 2025-11-19 16:58:34.282251+00 2025-11-19 16:58:34.28226+00 f t in_progress_pay 1677 1583 +8532 2025-11-19 17:07:30.155025+00 2025-11-19 17:07:30.155038+00 f t Confirmado 1677 \N +8533 2025-11-19 17:07:30.114756+00 2025-11-19 17:07:30.114765+00 f t payed 1677 1583 +8534 2025-11-19 17:25:49.040429+00 2025-11-19 17:25:49.040437+00 f t rejected D-Abandono Bot 1661 1208 +8535 2025-11-19 17:34:26.665849+00 2025-11-19 17:34:26.665861+00 f t Confirmado 1674 \N +8536 2025-11-19 17:34:26.62626+00 2025-11-19 17:34:26.626268+00 f t payed 1674 1208 +8537 2025-11-19 17:46:50.222652+00 2025-11-19 17:46:50.222662+00 f t pending 1679 \N +8538 2025-11-19 18:06:05.832751+00 2025-11-19 18:06:05.832762+00 f t in_progress_vet 1679 1583 +8539 2025-11-19 18:08:26.818092+00 2025-11-19 18:08:26.8181+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 19:00:00 1679 1583 +8540 2025-11-19 18:08:41.253949+00 2025-11-19 18:08:41.253958+00 f t vet_accepted 1679 \N +8541 2025-11-19 18:08:41.265679+00 2025-11-19 18:08:41.265691+00 f t in_progress_pay 1679 \N +8542 2025-11-19 18:08:43.348572+00 2025-11-19 18:08:43.34858+00 f t rejected Solicitud rechazada por Usuario no especificado 1679 \N +8543 2025-11-19 18:08:43.35651+00 2025-11-19 18:08:43.356517+00 f t in_progress_vet 1679 \N +8544 2025-11-19 18:10:40.413305+00 2025-11-19 18:10:40.413313+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 17:00:00 1670 1583 +8545 2025-11-19 18:30:13.198424+00 2025-11-19 18:30:13.198434+00 f t pending 1680 \N +8546 2025-11-19 18:32:27.16984+00 2025-11-19 18:32:27.169849+00 f t in_progress_vet 1680 1583 +8547 2025-11-19 18:45:44.973433+00 2025-11-19 18:45:44.973443+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 15:00:00 1680 1583 +8548 2025-11-19 18:47:12.584832+00 2025-11-19 18:47:12.584844+00 f t vet_accepted 1680 \N +8549 2025-11-19 18:47:12.599093+00 2025-11-19 18:47:12.599102+00 f t in_progress_pay 1680 \N +8550 2025-11-19 18:47:34.427412+00 2025-11-19 18:47:34.42742+00 f t vet_asked Veterinario asignado: Szczurek Veronica Carolina 1670 1583 +8551 2025-11-19 18:47:35.113569+00 2025-11-19 18:47:35.113578+00 f t vet_accepted 1670 1583 +8552 2025-11-19 18:47:35.126108+00 2025-11-19 18:47:35.12612+00 f t in_progress_pay 1670 1583 +8553 2025-11-19 18:48:16.626987+00 2025-11-19 18:48:16.626995+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 15:00:00 1670 1583 +8554 2025-11-19 18:51:54.316422+00 2025-11-19 18:51:54.316432+00 f t pending 1681 \N +8555 2025-11-19 18:52:05.227033+00 2025-11-19 18:52:05.227041+00 f t in_progress_vet 1681 1583 +8556 2025-11-19 18:52:23.93992+00 2025-11-19 18:52:23.939932+00 f t pending 1682 \N +8557 2025-11-19 18:52:41.394614+00 2025-11-19 18:52:41.394623+00 f t in_progress_vet 1682 1583 +8558 2025-11-19 18:52:48.594241+00 2025-11-19 18:52:48.594251+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 18:00:00 1682 1583 +8559 2025-11-19 18:52:55.597075+00 2025-11-19 18:52:55.597083+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1682 1583 +8560 2025-11-19 18:52:56.207049+00 2025-11-19 18:52:56.207057+00 f t vet_accepted 1682 1583 +8561 2025-11-19 18:52:56.221782+00 2025-11-19 18:52:56.221795+00 f t in_progress_pay 1682 1583 +8562 2025-11-19 18:53:14.874913+00 2025-11-19 18:53:14.874921+00 f t Confirmado 1682 \N +8563 2025-11-19 18:53:14.846097+00 2025-11-19 18:53:14.846109+00 f t payed 1682 1583 +8564 2025-11-19 18:56:22.481104+00 2025-11-19 18:56:22.481112+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 14:30:00 1679 1583 +8565 2025-11-19 18:56:28.74557+00 2025-11-19 18:56:28.745578+00 f t vet_asked Veterinario asignado: Henjes María José 1679 1583 +8566 2025-11-19 18:56:30.415521+00 2025-11-19 18:56:30.415529+00 f t vet_accepted 1679 1583 +8567 2025-11-19 18:56:30.428609+00 2025-11-19 18:56:30.428618+00 f t in_progress_pay 1679 1583 +8568 2025-11-19 18:57:40.994241+00 2025-11-19 18:57:40.99425+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 20:00:00 1681 1583 +8569 2025-11-19 18:58:55.370284+00 2025-11-19 18:58:55.370292+00 f t pending 1683 \N +8570 2025-11-19 18:59:17.062456+00 2025-11-19 18:59:17.062464+00 f t in_progress_vet 1683 1208 +8571 2025-11-19 18:59:25.021118+00 2025-11-19 18:59:25.021137+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 10:30:00 1683 1208 +8572 2025-11-19 19:00:11.357415+00 2025-11-19 19:00:11.357428+00 f t vet_asked Veterinario asignado: Goncalves Tomas Ignacio 1683 1208 +8573 2025-11-19 19:01:00.172004+00 2025-11-19 19:01:00.172017+00 f t Confirmado 1683 \N +8574 2025-11-19 19:01:00.135936+00 2025-11-19 19:01:00.135946+00 f t payed 1683 1208 +8575 2025-11-19 19:01:21.337696+00 2025-11-19 19:01:21.337709+00 f t pending 1684 \N +8576 2025-11-19 19:01:33.42765+00 2025-11-19 19:01:33.427657+00 f t in_progress_vet 1684 1208 +8577 2025-11-19 19:01:46.626225+00 2025-11-19 19:01:46.626234+00 f t pending 1685 \N +8578 2025-11-19 19:02:04.410767+00 2025-11-19 19:02:04.41078+00 f t in_progress_vet 1685 1208 +8579 2025-11-19 19:02:30.051072+00 2025-11-19 19:02:30.051081+00 f t pending 1686 \N +8580 2025-11-19 19:02:35.425489+00 2025-11-19 19:02:35.425499+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 10:00:00 1684 1208 +8581 2025-11-19 19:02:44.336099+00 2025-11-19 19:02:44.336108+00 f t vet_asked Veterinario asignado: Palladino Martín 1684 1208 +8582 2025-11-19 19:02:45.046697+00 2025-11-19 19:02:45.046708+00 f t rejected D-Sin Turno 1679 1583 +8583 2025-11-19 19:02:57.465038+00 2025-11-19 19:02:57.465046+00 f t Confirmado 1684 \N +8584 2025-11-19 19:02:57.433687+00 2025-11-19 19:02:57.433696+00 f t payed 1684 1208 +8585 2025-11-19 19:03:14.312465+00 2025-11-19 19:03:14.312473+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 10:00:00 1685 1208 +8586 2025-11-19 19:03:36.746446+00 2025-11-19 19:03:36.746455+00 f t vet_asked Veterinario asignado: Palladino Martín 1685 1208 +8587 2025-11-19 19:03:42.261606+00 2025-11-19 19:03:42.261616+00 f t Confirmado 1685 \N +8588 2025-11-19 19:03:42.229411+00 2025-11-19 19:03:42.229419+00 f t payed 1685 1208 +8589 2025-11-19 19:04:39.214421+00 2025-11-19 19:04:39.214432+00 f t in_progress_vet 1686 1583 +8590 2025-11-19 19:07:47.310732+00 2025-11-19 19:07:47.31074+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 17:00:00 1670 1583 +8591 2025-11-19 19:08:35.896792+00 2025-11-19 19:08:35.896799+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 15:00:00 1670 1583 +8592 2025-11-19 19:09:26.893292+00 2025-11-19 19:09:26.893305+00 f t Confirmado 1670 \N +8593 2025-11-19 19:09:26.845114+00 2025-11-19 19:09:26.845122+00 f t payed 1670 1583 +8594 2025-11-19 19:12:58.824941+00 2025-11-19 19:12:58.82495+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 17:00:00 1680 1583 +8595 2025-11-19 19:14:35.305179+00 2025-11-19 19:14:35.30519+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 16:00:00 1686 1583 +8596 2025-11-19 19:20:03.778597+00 2025-11-19 19:20:03.77861+00 f t vet_accepted 1641 \N +8597 2025-11-19 19:20:03.812047+00 2025-11-19 19:20:03.812061+00 f t in_progress_pay 1641 \N +8598 2025-11-19 19:20:34.394639+00 2025-11-19 19:20:34.394649+00 f t vet_accepted 1680 126 +8599 2025-11-19 19:20:34.407533+00 2025-11-19 19:20:34.407542+00 f t in_progress_pay 1680 126 +8600 2025-11-19 19:21:52.371898+00 2025-11-19 19:21:52.371906+00 f t pending 1687 \N +8601 2025-11-19 19:22:38.992555+00 2025-11-19 19:22:38.992565+00 f t in_progress_vet 1687 1583 +8602 2025-11-19 19:23:36.246427+00 2025-11-19 19:23:36.246436+00 f t vet_accepted 1680 \N +8603 2025-11-19 19:23:36.265024+00 2025-11-19 19:23:36.265034+00 f t in_progress_pay 1680 \N +8604 2025-11-19 19:27:13.422379+00 2025-11-19 19:27:13.422386+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 13:00:00 1687 1583 +8605 2025-11-19 19:34:51.802709+00 2025-11-19 19:34:51.802722+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 16:00:00 1686 1583 +8606 2025-11-19 19:41:02.521399+00 2025-11-19 19:41:02.521407+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 14:00:00 1686 1583 +8607 2025-11-19 19:46:48.642839+00 2025-11-19 19:46:48.642851+00 f t vet_asked Veterinario asignado: di Risio Daniela 1686 1583 +8608 2025-11-19 19:46:49.401311+00 2025-11-19 19:46:49.401319+00 f t vet_accepted 1686 1583 +8609 2025-11-19 19:46:49.413482+00 2025-11-19 19:46:49.41349+00 f t in_progress_pay 1686 1583 +8610 2025-11-19 19:46:54.118853+00 2025-11-19 19:46:54.118864+00 f t Confirmado 1686 \N +8611 2025-11-19 19:46:54.091519+00 2025-11-19 19:46:54.091528+00 f t payed 1686 1583 +8612 2025-11-19 19:58:08.321782+00 2025-11-19 19:58:08.321791+00 f t rejected D-Abandono Bot 1668 1208 +8613 2025-11-19 20:02:30.276644+00 2025-11-19 20:02:30.276653+00 f t vet_accepted 1680 \N +8614 2025-11-19 20:02:30.290988+00 2025-11-19 20:02:30.290997+00 f t in_progress_pay 1680 \N +8615 2025-11-19 20:04:22.595069+00 2025-11-19 20:04:22.595077+00 f t rejected D-Emergencia 1681 1583 +8616 2025-11-19 20:10:33.397156+00 2025-11-19 20:10:33.397169+00 f t pending 1688 \N +8617 2025-11-19 20:11:23.051803+00 2025-11-19 20:11:23.051815+00 f t in_progress_vet 1688 1583 +8618 2025-11-19 20:11:34.032653+00 2025-11-19 20:11:34.032663+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 12:00:00 1688 1583 +8619 2025-11-19 20:12:32.799526+00 2025-11-19 20:12:32.799536+00 f t vet_accepted 1688 \N +8620 2025-11-19 20:12:32.814032+00 2025-11-19 20:12:32.81404+00 f t in_progress_pay 1688 \N +8621 2025-11-19 20:12:34.77523+00 2025-11-19 20:12:34.775239+00 f t rejected Solicitud rechazada por Usuario no especificado 1688 \N +8622 2025-11-19 20:12:34.783644+00 2025-11-19 20:12:34.783652+00 f t in_progress_vet 1688 \N +8623 2025-11-19 20:13:47.621007+00 2025-11-19 20:13:47.621018+00 f t vet_accepted 1688 \N +8624 2025-11-19 20:13:47.634455+00 2025-11-19 20:13:47.634464+00 f t in_progress_pay 1688 \N +8625 2025-11-19 20:23:47.598826+00 2025-11-19 20:23:47.598834+00 f t pending 1689 \N +8626 2025-11-19 20:25:26.977721+00 2025-11-19 20:25:26.97773+00 f t vet_accepted 1687 \N +8627 2025-11-19 20:25:26.993459+00 2025-11-19 20:25:26.99347+00 f t in_progress_pay 1687 \N +8628 2025-11-19 20:51:55.215665+00 2025-11-19 20:51:55.215673+00 f t Confirmado 1688 \N +8629 2025-11-19 20:51:55.185244+00 2025-11-19 20:51:55.185252+00 f t payed 1688 1583 +8630 2025-11-19 20:53:56.510136+00 2025-11-19 20:53:56.510145+00 f t pending 1690 \N +8631 2025-11-19 21:00:14.960466+00 2025-11-19 21:00:14.960481+00 f t pending 1691 \N +8632 2025-11-19 21:00:51.77949+00 2025-11-19 21:00:51.779498+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 12:00:00 1690 1583 +8633 2025-11-19 21:00:57.657959+00 2025-11-19 21:00:57.657968+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1690 1583 +8634 2025-11-19 21:00:58.336724+00 2025-11-19 21:00:58.336732+00 f t vet_accepted 1690 1583 +8635 2025-11-19 21:00:58.349954+00 2025-11-19 21:00:58.349963+00 f t in_progress_pay 1690 1583 +8636 2025-11-19 21:02:25.070022+00 2025-11-19 21:02:25.07003+00 f t Confirmado 1690 \N +8637 2025-11-19 21:02:25.03826+00 2025-11-19 21:02:25.038275+00 f t payed 1690 1583 +8638 2025-11-19 21:09:19.875798+00 2025-11-19 21:09:19.875807+00 f t in_progress_vet 1691 1583 +8639 2025-11-19 21:09:27.569637+00 2025-11-19 21:09:27.569646+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 20:00:00 1691 1583 +8640 2025-11-19 21:14:55.278127+00 2025-11-19 21:14:55.278136+00 f t in_progress_vet 1689 1583 +8641 2025-11-19 21:15:02.079437+00 2025-11-19 21:15:02.079449+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 09:00:00 1689 1583 +8642 2025-11-19 21:18:32.26355+00 2025-11-19 21:18:32.263563+00 f t vet_accepted 1689 \N +8643 2025-11-19 21:18:32.277486+00 2025-11-19 21:18:32.277498+00 f t in_progress_pay 1689 \N +8644 2025-11-19 21:19:14.759397+00 2025-11-19 21:19:14.759406+00 f t rejected D-Emergencia 1691 1583 +8645 2025-11-19 21:21:54.506983+00 2025-11-19 21:21:54.506991+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 16:00:00 1687 1583 +8646 2025-11-19 21:22:06.161135+00 2025-11-19 21:22:06.161146+00 f t Confirmado 1687 \N +8647 2025-11-19 21:22:06.121804+00 2025-11-19 21:22:06.121817+00 f t payed 1687 1583 +8648 2025-11-19 21:38:11.822509+00 2025-11-19 21:38:11.822518+00 f t Confirmado 1689 \N +8649 2025-11-19 21:38:11.795385+00 2025-11-19 21:38:11.795393+00 f t payed 1689 1583 +8650 2025-11-19 23:55:53.102588+00 2025-11-19 23:55:53.102598+00 f t pending 1692 \N +8651 2025-11-19 23:56:12.410023+00 2025-11-19 23:56:12.41003+00 f t coordinated Solicitud coordinada para 2025-11-19 a las 21:30:00 1692 113 +8652 2025-11-20 00:15:46.157455+00 2025-11-20 00:15:46.157464+00 f t vet_accepted 1680 \N +8653 2025-11-20 00:15:46.170984+00 2025-11-20 00:15:46.170992+00 f t in_progress_pay 1680 \N +8654 2025-11-20 00:18:05.402625+00 2025-11-20 00:18:05.402637+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1692 113 +8655 2025-11-20 00:18:06.642462+00 2025-11-20 00:18:06.642476+00 f t vet_accepted 1692 113 +8656 2025-11-20 00:18:06.657263+00 2025-11-20 00:18:06.657273+00 f t in_progress_pay 1692 113 +8657 2025-11-20 00:22:05.25942+00 2025-11-20 00:22:05.259428+00 f t Confirmado 1692 \N +8658 2025-11-20 00:22:06.823737+00 2025-11-20 00:22:06.823746+00 f t payed 1692 113 +8659 2025-11-20 00:22:05.229591+00 2025-11-20 00:22:05.229601+00 f t payed 1692 113 +8660 2025-11-20 01:16:01.762267+00 2025-11-20 01:16:01.762277+00 f t pending 1693 \N +8661 2025-11-20 02:59:27.846922+00 2025-11-20 02:59:27.846931+00 f t vet_accepted 1689 \N +8662 2025-11-20 11:26:25.749752+00 2025-11-20 11:26:25.74976+00 f t pending 1694 \N +8663 2025-11-20 11:34:00.936276+00 2025-11-20 11:34:00.936289+00 f t pending 1695 \N +8664 2025-11-20 13:01:00.026726+00 2025-11-20 13:01:00.026738+00 f t pending 1696 \N +8665 2025-11-20 14:15:35.037703+00 2025-11-20 14:15:35.037711+00 f t in_progress_vet 1693 1583 +8666 2025-11-20 14:24:21.029612+00 2025-11-20 14:24:21.029621+00 f t in_progress_vet 1694 1583 +8667 2025-11-20 14:24:47.524534+00 2025-11-20 14:24:47.524544+00 f t in_progress_vet 1695 1583 +8668 2025-11-20 14:25:21.929224+00 2025-11-20 14:25:21.929233+00 f t in_progress_vet 1696 1583 +8669 2025-11-20 14:30:43.866706+00 2025-11-20 14:30:43.866714+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 10:00:00 1694 1583 +8670 2025-11-20 14:31:30.900511+00 2025-11-20 14:31:30.900522+00 f t vet_accepted 1694 \N +8671 2025-11-20 14:31:30.913739+00 2025-11-20 14:31:30.913751+00 f t in_progress_pay 1694 \N +8672 2025-11-20 14:34:00.385238+00 2025-11-20 14:34:00.385248+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 11:00:00 1696 1583 +8673 2025-11-20 14:35:26.615964+00 2025-11-20 14:35:26.615972+00 f t Confirmado 1694 \N +8674 2025-11-20 14:35:26.584422+00 2025-11-20 14:35:26.584433+00 f t payed 1694 1583 +8675 2025-11-20 14:41:43.288365+00 2025-11-20 14:41:43.288373+00 f t rejected D-Provincia 1693 1583 +8676 2025-11-20 14:54:59.89184+00 2025-11-20 14:54:59.89185+00 f t vet_accepted 1696 \N +8677 2025-11-20 14:54:59.907027+00 2025-11-20 14:54:59.907036+00 f t in_progress_pay 1696 \N +8678 2025-11-20 15:01:21.114396+00 2025-11-20 15:01:21.114403+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 17:30:00 1360 114 +8679 2025-11-20 15:01:30.666867+00 2025-11-20 15:01:30.666876+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1360 114 +8680 2025-11-20 15:01:31.87169+00 2025-11-20 15:01:31.871699+00 f t vet_accepted 1360 114 +8681 2025-11-20 15:01:31.884948+00 2025-11-20 15:01:31.884956+00 f t in_progress_pay 1360 114 +8682 2025-11-20 15:03:11.897959+00 2025-11-20 15:03:11.89797+00 f t Confirmado 1360 \N +8683 2025-11-20 15:03:11.861803+00 2025-11-20 15:03:11.861814+00 f t payed 1360 114 +8684 2025-11-20 15:10:27.771548+00 2025-11-20 15:10:27.771559+00 f t Confirmado 1680 \N +8685 2025-11-20 15:10:27.740595+00 2025-11-20 15:10:27.740604+00 f t payed 1680 1583 +8686 2025-11-20 15:31:45.743439+00 2025-11-20 15:31:45.743451+00 f t rejected D-Precio 1696 1583 +8687 2025-11-20 16:11:55.639111+00 2025-11-20 16:11:55.63912+00 f t vet_accepted 1694 \N +8688 2025-11-20 16:20:30.501463+00 2025-11-20 16:20:30.501472+00 f t pending 1697 \N +8689 2025-11-20 16:21:04.307546+00 2025-11-20 16:21:04.307554+00 f t in_progress_vet 1697 1583 +8690 2025-11-20 16:22:04.897181+00 2025-11-20 16:22:04.89719+00 f t pending 1698 \N +8691 2025-11-20 16:22:18.475591+00 2025-11-20 16:22:18.475603+00 f t in_progress_vet 1698 114 +8692 2025-11-20 16:26:09.419618+00 2025-11-20 16:26:09.419625+00 f t coordinated Solicitud coordinada para 2025-11-28 a las 11:00:00 1697 1583 +8693 2025-11-20 16:26:15.355574+00 2025-11-20 16:26:15.355584+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 16:30:00 1698 114 +8694 2025-11-20 16:26:33.190082+00 2025-11-20 16:26:33.190091+00 f t vet_asked Veterinario asignado: Goncalves Tomas Ignacio 1698 114 +8695 2025-11-20 16:26:34.526957+00 2025-11-20 16:26:34.526966+00 f t vet_accepted 1698 114 +8696 2025-11-20 16:26:34.540853+00 2025-11-20 16:26:34.540863+00 f t in_progress_pay 1698 114 +8697 2025-11-20 16:28:20.262408+00 2025-11-20 16:28:20.262415+00 f t Confirmado 1698 \N +8698 2025-11-20 16:28:20.233978+00 2025-11-20 16:28:20.233986+00 f t payed 1698 114 +8699 2025-11-20 16:37:53.30788+00 2025-11-20 16:37:53.307889+00 f t pending 1699 \N +8700 2025-11-20 16:38:15.216365+00 2025-11-20 16:38:15.216378+00 f t in_progress_vet 1699 1583 +8701 2025-11-20 16:38:30.768212+00 2025-11-20 16:38:30.768223+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 15:00:00 1699 1583 +8702 2025-11-20 16:38:38.853328+00 2025-11-20 16:38:38.853335+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 15:00:00 1699 1583 +8703 2025-11-20 16:41:11.50679+00 2025-11-20 16:41:11.506798+00 f t vet_accepted 1699 124 +8704 2025-11-20 16:41:11.520835+00 2025-11-20 16:41:11.520846+00 f t in_progress_pay 1699 124 +8705 2025-11-20 16:45:52.989456+00 2025-11-20 16:45:52.989467+00 f t vet_asked Veterinario asignado: Gonzalez Maria Victoria 1697 1583 +8706 2025-11-20 16:45:54.892557+00 2025-11-20 16:45:54.892566+00 f t vet_accepted 1697 1583 +8707 2025-11-20 16:45:54.904156+00 2025-11-20 16:45:54.904164+00 f t in_progress_pay 1697 1583 +8708 2025-11-20 16:48:12.173194+00 2025-11-20 16:48:12.173202+00 f t vet_accepted 1699 \N +8709 2025-11-20 16:48:12.185292+00 2025-11-20 16:48:12.185301+00 f t in_progress_pay 1699 \N +8710 2025-11-20 16:56:44.060157+00 2025-11-20 16:56:44.060164+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 15:00:00 1699 1583 +8711 2025-11-20 17:14:53.607046+00 2025-11-20 17:14:53.607056+00 f t vet_asked Veterinario asignado: Palladino Martín 1699 1583 +8712 2025-11-20 17:14:54.292708+00 2025-11-20 17:14:54.292716+00 f t vet_accepted 1699 1583 +8713 2025-11-20 17:14:54.30528+00 2025-11-20 17:14:54.305289+00 f t in_progress_pay 1699 1583 +8714 2025-11-20 17:15:08.551556+00 2025-11-20 17:15:08.551566+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 18:30:00 1699 1583 +8715 2025-11-20 17:43:20.142629+00 2025-11-20 17:43:20.142637+00 f t pending 1700 \N +8716 2025-11-20 17:43:37.931424+00 2025-11-20 17:43:37.931435+00 f t in_progress_vet 1700 1583 +8717 2025-11-20 17:47:42.015617+00 2025-11-20 17:47:42.015626+00 f t pending 1701 \N +8718 2025-11-20 17:47:58.244139+00 2025-11-20 17:47:58.244147+00 f t in_progress_vet 1701 1583 +8719 2025-11-20 17:48:05.037505+00 2025-11-20 17:48:05.037512+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 20:00:00 1701 1583 +8720 2025-11-20 17:48:10.919597+00 2025-11-20 17:48:10.91961+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1701 1583 +8721 2025-11-20 17:48:11.537401+00 2025-11-20 17:48:11.537409+00 f t vet_accepted 1701 1583 +8722 2025-11-20 17:48:11.5497+00 2025-11-20 17:48:11.549709+00 f t in_progress_pay 1701 1583 +8723 2025-11-20 17:49:17.655711+00 2025-11-20 17:49:17.655719+00 f t pending 1702 \N +8724 2025-11-20 17:50:03.994295+00 2025-11-20 17:50:03.994306+00 f t in_progress_vet 1702 1583 +8725 2025-11-20 17:50:17.216737+00 2025-11-20 17:50:17.216744+00 f t coordinated Solicitud coordinada para 2025-12-18 a las 11:00:00 1702 1583 +8726 2025-11-20 17:50:17.589855+00 2025-11-20 17:50:17.589863+00 f t coordinated Solicitud coordinada para 2025-12-18 a las 11:00:00 1702 1583 +8727 2025-11-20 17:51:34.957946+00 2025-11-20 17:51:34.957958+00 f t vet_accepted 1702 \N +8728 2025-11-20 17:51:34.970781+00 2025-11-20 17:51:34.970791+00 f t in_progress_pay 1702 \N +8729 2025-11-20 17:53:45.054851+00 2025-11-20 17:53:45.054862+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 17:00:00 1700 1583 +8730 2025-11-20 17:54:06.207589+00 2025-11-20 17:54:06.2076+00 f t payed 1700 1583 +8731 2025-11-20 17:54:37.264315+00 2025-11-20 17:54:37.264325+00 f t Confirmado 1700 \N +8732 2025-11-20 17:54:38.87438+00 2025-11-20 17:54:38.874393+00 f t vet_asked Veterinario asignado: Palummo Mariana 1700 1583 +8733 2025-11-20 17:54:39.557042+00 2025-11-20 17:54:39.55705+00 f t vet_accepted 1700 1583 +8734 2025-11-20 18:04:37.0392+00 2025-11-20 18:04:37.039208+00 f t Confirmado 1702 \N +8735 2025-11-20 18:04:37.004068+00 2025-11-20 18:04:37.004077+00 f t payed 1702 1583 +8736 2025-11-20 18:08:46.137057+00 2025-11-20 18:08:46.137067+00 f t pending 1703 \N +8737 2025-11-20 18:09:03.404854+00 2025-11-20 18:09:03.404871+00 f t in_progress_vet 1703 1583 +8738 2025-11-20 18:09:13.294448+00 2025-11-20 18:09:13.294459+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 19:00:00 1703 1583 +8739 2025-11-20 18:42:00.235663+00 2025-11-20 18:42:00.235677+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 18:00:00 1703 1583 +8740 2025-11-20 18:43:09.845971+00 2025-11-20 18:43:09.845981+00 f t vet_asked Veterinario asignado: Goncalves Tomas Ignacio 1703 1583 +8741 2025-11-20 18:43:10.853194+00 2025-11-20 18:43:10.853203+00 f t vet_accepted 1703 1583 +8742 2025-11-20 18:43:10.867231+00 2025-11-20 18:43:10.867241+00 f t in_progress_pay 1703 1583 +8743 2025-11-20 18:52:06.805327+00 2025-11-20 18:52:06.80534+00 f t pending 1704 \N +8744 2025-11-20 18:55:03.341422+00 2025-11-20 18:55:03.341439+00 f t in_progress_vet 1704 114 +8745 2025-11-20 18:55:14.895037+00 2025-11-20 18:55:14.895046+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 18:00:00 1704 114 +8746 2025-11-20 18:55:29.963791+00 2025-11-20 18:55:29.963799+00 f t payed 1704 114 +8747 2025-11-20 18:57:46.629437+00 2025-11-20 18:57:46.629445+00 f t Confirmado 1704 \N +8748 2025-11-20 18:57:48.985666+00 2025-11-20 18:57:48.985677+00 f t vet_asked Veterinario asignado: Vecino Carolina 1704 114 +8749 2025-11-20 18:57:50.166544+00 2025-11-20 18:57:50.166555+00 f t vet_accepted 1704 114 +8750 2025-11-20 19:04:01.634982+00 2025-11-20 19:04:01.634996+00 f t payed 1703 1583 +8751 2025-11-20 19:04:28.772131+00 2025-11-20 19:04:28.77214+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 18:00:00 1703 1583 +8752 2025-11-20 19:04:29.064946+00 2025-11-20 19:04:29.064954+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 18:00:00 1703 1583 +8753 2025-11-20 19:04:35.456779+00 2025-11-20 19:04:35.456789+00 f t vet_asked Veterinario asignado: Goncalves Tomas Ignacio 1703 1583 +8754 2025-11-20 19:04:36.257808+00 2025-11-20 19:04:36.257818+00 f t vet_accepted 1703 1583 +8755 2025-11-20 19:05:04.190941+00 2025-11-20 19:05:04.190955+00 f t pending 1705 \N +8756 2025-11-20 19:05:09.15688+00 2025-11-20 19:05:09.15689+00 f t pending 1706 \N +8757 2025-11-20 19:05:21.564369+00 2025-11-20 19:05:21.56438+00 f t in_progress_vet 1706 1583 +8758 2025-11-20 19:05:28.36126+00 2025-11-20 19:05:28.361272+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 18:00:00 1706 1583 +8759 2025-11-20 19:05:34.29144+00 2025-11-20 19:05:34.291448+00 f t vet_asked Veterinario asignado: Goncalves Tomas Ignacio 1706 1583 +8760 2025-11-20 19:05:34.898254+00 2025-11-20 19:05:34.898262+00 f t vet_accepted 1706 1583 +8761 2025-11-20 19:05:34.910487+00 2025-11-20 19:05:34.910498+00 f t in_progress_pay 1706 1583 +8762 2025-11-20 19:05:53.228799+00 2025-11-20 19:05:53.228808+00 f t Confirmado 1706 \N +8763 2025-11-20 19:05:53.042169+00 2025-11-20 19:05:53.042182+00 f t payed 1706 1583 +8764 2025-11-20 19:06:09.864768+00 2025-11-20 19:06:09.864777+00 f t rejected D-Sin seguimiento 1705 1583 +8765 2025-11-20 19:06:22.210647+00 2025-11-20 19:06:22.210659+00 f t rejected D-Sin seguimiento 1703 1583 +8766 2025-11-20 19:08:26.756461+00 2025-11-20 19:08:26.75647+00 f t Confirmado 1701 \N +8767 2025-11-20 19:08:26.729099+00 2025-11-20 19:08:26.729108+00 f t payed 1701 1583 +8768 2025-11-20 19:08:41.640318+00 2025-11-20 19:08:41.640326+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 18:00:00 1701 1583 +8769 2025-11-20 20:04:54.546488+00 2025-11-20 20:04:54.546501+00 f t Confirmado 1697 \N +8770 2025-11-20 20:04:54.505179+00 2025-11-20 20:04:54.505192+00 f t payed 1697 1583 +8771 2025-11-20 20:14:24.617569+00 2025-11-20 20:14:24.61758+00 f t pending 1707 \N +8772 2025-11-20 20:15:06.349437+00 2025-11-20 20:15:06.34945+00 f t in_progress_vet 1707 1583 +8773 2025-11-20 20:15:22.360031+00 2025-11-20 20:15:22.360039+00 f t coordinated Solicitud coordinada para 2025-12-04 a las 15:00:00 1707 1583 +8856 2025-11-21 15:17:42.298466+00 2025-11-21 15:17:42.298474+00 f t in_progress_vet 1719 1583 +8774 2025-11-20 20:15:29.683335+00 2025-11-20 20:15:29.683345+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1707 1583 +8775 2025-11-20 20:15:30.358726+00 2025-11-20 20:15:30.358736+00 f t vet_accepted 1707 1583 +8776 2025-11-20 20:15:30.371913+00 2025-11-20 20:15:30.371926+00 f t in_progress_pay 1707 1583 +8777 2025-11-20 20:15:42.117482+00 2025-11-20 20:15:42.117494+00 f t Confirmado 1707 \N +8778 2025-11-20 20:15:42.085064+00 2025-11-20 20:15:42.085074+00 f t payed 1707 1583 +8779 2025-11-20 21:26:38.026911+00 2025-11-20 21:26:38.02692+00 f t pending 1708 \N +8780 2025-11-20 21:26:51.491359+00 2025-11-20 21:26:51.491367+00 f t in_progress_vet 1708 1583 +8781 2025-11-20 21:28:27.407333+00 2025-11-20 21:28:27.407346+00 f t pending 1709 \N +8782 2025-11-20 21:28:57.355742+00 2025-11-20 21:28:57.355751+00 f t in_progress_vet 1709 1583 +8783 2025-11-20 21:29:04.525322+00 2025-11-20 21:29:04.525331+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 14:00:00 1709 1583 +8784 2025-11-20 21:31:36.364825+00 2025-11-20 21:31:36.364833+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 18:00:00 1709 1583 +8785 2025-11-20 21:31:44.998068+00 2025-11-20 21:31:44.998077+00 f t vet_asked Veterinario asignado: di Risio Daniela 1709 1583 +8786 2025-11-20 21:31:45.647712+00 2025-11-20 21:31:45.647722+00 f t vet_accepted 1709 1583 +8787 2025-11-20 21:31:45.660238+00 2025-11-20 21:31:45.660247+00 f t in_progress_pay 1709 1583 +8788 2025-11-20 21:36:58.418334+00 2025-11-20 21:36:58.418341+00 f t Confirmado 1709 \N +8789 2025-11-20 21:36:58.39369+00 2025-11-20 21:36:58.393698+00 f t payed 1709 1583 +8790 2025-11-20 21:39:14.607351+00 2025-11-20 21:39:14.607359+00 f t coordinated Solicitud coordinada para 2025-11-20 a las 21:00:00 1708 1583 +8791 2025-11-20 21:39:19.206998+00 2025-11-20 21:39:19.207007+00 f t vet_asked Veterinario asignado: Henjes María José 1708 1583 +8792 2025-11-20 21:39:19.834574+00 2025-11-20 21:39:19.834583+00 f t vet_accepted 1708 1583 +8793 2025-11-20 21:39:19.84763+00 2025-11-20 21:39:19.847641+00 f t in_progress_pay 1708 1583 +8794 2025-11-20 22:36:16.809269+00 2025-11-20 22:36:16.809278+00 f t rejected D-Abandono Bot 1708 1583 +8795 2025-11-20 23:25:23.202865+00 2025-11-20 23:25:23.202874+00 f t vet_accepted 1652 \N +8796 2025-11-20 23:41:58.552892+00 2025-11-20 23:41:58.5529+00 f t pending 1710 \N +8797 2025-11-20 23:42:48.639397+00 2025-11-20 23:42:48.639406+00 f t in_progress_vet 1710 113 +8798 2025-11-20 23:43:05.951637+00 2025-11-20 23:43:05.951645+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 21:30:00 1710 113 +8799 2025-11-20 23:43:34.951862+00 2025-11-20 23:43:34.951872+00 f t vet_accepted 1710 \N +8800 2025-11-20 23:43:34.963956+00 2025-11-20 23:43:34.963965+00 f t in_progress_pay 1710 \N +8801 2025-11-20 23:43:36.544377+00 2025-11-20 23:43:36.54439+00 f t rejected Solicitud rechazada por Usuario no especificado 1710 \N +8802 2025-11-20 23:43:36.55664+00 2025-11-20 23:43:36.556648+00 f t in_progress_vet 1710 \N +8803 2025-11-21 00:22:37.661502+00 2025-11-21 00:22:37.661511+00 f t vet_accepted 1702 \N +8804 2025-11-21 01:13:59.198191+00 2025-11-21 01:13:59.1982+00 f t vet_accepted 1702 \N +8805 2025-11-21 01:57:52.769903+00 2025-11-21 01:57:52.769912+00 f t pending 1711 \N +8806 2025-11-21 11:18:10.989599+00 2025-11-21 11:18:10.989607+00 f t pending 1712 \N +8807 2025-11-21 12:04:38.217548+00 2025-11-21 12:04:38.217556+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 13:00:00 1710 1583 +8808 2025-11-21 12:06:43.546617+00 2025-11-21 12:06:43.546626+00 f t vet_accepted 1701 126 +8809 2025-11-21 12:10:57.875193+00 2025-11-21 12:10:57.875203+00 f t rejected D-Provincia 1710 1583 +8810 2025-11-21 12:15:39.136002+00 2025-11-21 12:15:39.136011+00 f t in_progress_vet 1711 1583 +8811 2025-11-21 12:15:51.950303+00 2025-11-21 12:15:51.950312+00 f t in_progress_vet 1712 1583 +8812 2025-11-21 12:17:05.116339+00 2025-11-21 12:17:05.116351+00 f t rejected D-Sin seguimiento 1695 1583 +8813 2025-11-21 12:18:33.679707+00 2025-11-21 12:18:33.679715+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 16:00:00 1712 1583 +8814 2025-11-21 12:29:31.384557+00 2025-11-21 12:29:31.384565+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 14:00:00 1712 1583 +8815 2025-11-21 12:29:34.539357+00 2025-11-21 12:29:34.539369+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1712 1583 +8816 2025-11-21 12:29:35.133275+00 2025-11-21 12:29:35.133284+00 f t vet_accepted 1712 1583 +8817 2025-11-21 12:29:35.14537+00 2025-11-21 12:29:35.145379+00 f t in_progress_pay 1712 1583 +8818 2025-11-21 12:29:52.480994+00 2025-11-21 12:29:52.481003+00 f t Confirmado 1712 \N +8819 2025-11-21 12:29:52.452577+00 2025-11-21 12:29:52.4526+00 f t payed 1712 1583 +8820 2025-11-21 12:30:19.547289+00 2025-11-21 12:30:19.547302+00 f t pending 1713 \N +8821 2025-11-21 12:30:46.191469+00 2025-11-21 12:30:46.191476+00 f t in_progress_vet 1713 1583 +8822 2025-11-21 12:31:01.598917+00 2025-11-21 12:31:01.598929+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 15:00:00 1713 1583 +8823 2025-11-21 12:41:08.124888+00 2025-11-21 12:41:08.124897+00 f t pending 1714 \N +8824 2025-11-21 12:56:31.021454+00 2025-11-21 12:56:31.021467+00 f t pending 1715 \N +8825 2025-11-21 12:56:55.717773+00 2025-11-21 12:56:55.717782+00 f t in_progress_vet 1715 1583 +8826 2025-11-21 12:57:14.085055+00 2025-11-21 12:57:14.085063+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 17:00:00 1715 1583 +8827 2025-11-21 12:58:28.674094+00 2025-11-21 12:58:28.674107+00 f t vet_accepted 1715 \N +8828 2025-11-21 12:58:28.688648+00 2025-11-21 12:58:28.68866+00 f t in_progress_pay 1715 \N +8829 2025-11-21 12:58:31.198708+00 2025-11-21 12:58:31.198715+00 f t rejected Solicitud rechazada por Usuario no especificado 1715 \N +8830 2025-11-21 12:58:31.206979+00 2025-11-21 12:58:31.206988+00 f t in_progress_vet 1715 \N +8831 2025-11-21 12:59:28.117768+00 2025-11-21 12:59:28.117777+00 f t in_progress_vet 1714 1583 +8832 2025-11-21 12:59:40.872406+00 2025-11-21 12:59:40.872416+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 13:00:00 1714 1583 +8833 2025-11-21 13:01:30.318516+00 2025-11-21 13:01:30.318525+00 f t rejected D-Sin seguimiento 1711 1583 +8834 2025-11-21 13:10:06.924507+00 2025-11-21 13:10:06.924521+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 11:30:00 1714 1583 +8835 2025-11-21 13:10:16.768625+00 2025-11-21 13:10:16.768637+00 f t vet_asked Veterinario asignado: Palladino Martín 1714 1583 +8836 2025-11-21 13:10:17.540833+00 2025-11-21 13:10:17.540841+00 f t vet_accepted 1714 1583 +8837 2025-11-21 13:10:17.552943+00 2025-11-21 13:10:17.552951+00 f t in_progress_pay 1714 1583 +8838 2025-11-21 13:20:54.576453+00 2025-11-21 13:20:54.576462+00 f t Confirmado 1714 \N +8839 2025-11-21 13:20:54.549883+00 2025-11-21 13:20:54.549891+00 f t payed 1714 1583 +8840 2025-11-21 13:35:16.9181+00 2025-11-21 13:35:16.918113+00 f t pending 1716 \N +8841 2025-11-21 13:40:50.890468+00 2025-11-21 13:40:50.890477+00 f t in_progress_vet 1716 1583 +8842 2025-11-21 13:47:26.868685+00 2025-11-21 13:47:26.868695+00 f t pending 1717 \N +8843 2025-11-21 13:48:08.742031+00 2025-11-21 13:48:08.742039+00 f t in_progress_vet 1717 1583 +8844 2025-11-21 13:48:17.401035+00 2025-11-21 13:48:17.401042+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 15:00:00 1717 1583 +8845 2025-11-21 13:49:25.170806+00 2025-11-21 13:49:25.170815+00 f t vet_accepted 1717 \N +8846 2025-11-21 13:49:25.183582+00 2025-11-21 13:49:25.183591+00 f t in_progress_pay 1717 \N +8847 2025-11-21 13:49:35.694099+00 2025-11-21 13:49:35.694107+00 f t rejected D-Averiguando / Desconocido 1716 1583 +8848 2025-11-21 14:45:48.859574+00 2025-11-21 14:45:48.859587+00 f t rejected D-Sin seguimiento 1699 1583 +8849 2025-11-21 15:01:35.405889+00 2025-11-21 15:01:35.405901+00 f t pending 1718 \N +8850 2025-11-21 15:01:51.523491+00 2025-11-21 15:01:51.5235+00 f t in_progress_vet 1718 1583 +8851 2025-11-21 15:07:47.852681+00 2025-11-21 15:07:47.852691+00 f t vet_accepted 1718 \N +8852 2025-11-21 15:07:47.867188+00 2025-11-21 15:07:47.867197+00 f t in_progress_pay 1718 \N +8853 2025-11-21 15:07:53.190329+00 2025-11-21 15:07:53.190342+00 f t vet_accepted 1718 \N +8854 2025-11-21 15:07:53.202886+00 2025-11-21 15:07:53.202898+00 f t in_progress_pay 1718 \N +8855 2025-11-21 15:16:32.782081+00 2025-11-21 15:16:32.782093+00 f t pending 1719 \N +8857 2025-11-21 15:18:08.511788+00 2025-11-21 15:18:08.511795+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 09:00:00 1719 1583 +8858 2025-11-21 15:51:29.449338+00 2025-11-21 15:51:29.449348+00 f t pending 1720 \N +8859 2025-11-21 15:52:07.072025+00 2025-11-21 15:52:07.072036+00 f t in_progress_vet 1720 1583 +8860 2025-11-21 15:54:01.797843+00 2025-11-21 15:54:01.797852+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 16:00:00 1720 1583 +8861 2025-11-21 15:54:41.614005+00 2025-11-21 15:54:41.614014+00 f t vet_accepted 1720 \N +8862 2025-11-21 15:54:41.628054+00 2025-11-21 15:54:41.628063+00 f t in_progress_pay 1720 \N +8863 2025-11-21 16:04:04.044202+00 2025-11-21 16:04:04.044215+00 f t pending 1721 \N +8864 2025-11-21 16:09:08.241714+00 2025-11-21 16:09:08.241723+00 f t pending 1722 \N +8865 2025-11-21 16:19:36.072678+00 2025-11-21 16:19:36.072692+00 f t vet_asked Veterinario asignado: di Risio Daniela 1713 1583 +8866 2025-11-21 16:19:36.751381+00 2025-11-21 16:19:36.751391+00 f t vet_accepted 1713 1583 +8867 2025-11-21 16:19:36.76459+00 2025-11-21 16:19:36.764599+00 f t in_progress_pay 1713 1583 +8868 2025-11-21 16:22:02.507225+00 2025-11-21 16:22:02.507238+00 f t Confirmado 1713 \N +8869 2025-11-21 16:22:02.465218+00 2025-11-21 16:22:02.465229+00 f t payed 1713 1583 +8870 2025-11-21 16:23:28.417966+00 2025-11-21 16:23:28.417976+00 f t in_progress_vet 1721 1208 +8871 2025-11-21 16:23:51.646094+00 2025-11-21 16:23:51.646102+00 f t in_progress_vet 1722 1208 +8872 2025-11-21 16:34:43.868909+00 2025-11-21 16:34:43.868917+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 20:00:00 1722 1208 +8873 2025-11-21 16:37:01.758294+00 2025-11-21 16:37:01.758305+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 20:00:00 1715 1583 +8874 2025-11-21 16:37:05.392112+00 2025-11-21 16:37:05.392121+00 f t vet_asked Veterinario asignado: di Risio Daniela 1715 1583 +8875 2025-11-21 16:37:06.089365+00 2025-11-21 16:37:06.089372+00 f t vet_accepted 1715 1583 +8876 2025-11-21 16:37:06.104884+00 2025-11-21 16:37:06.104893+00 f t in_progress_pay 1715 1583 +8877 2025-11-21 16:37:19.965746+00 2025-11-21 16:37:19.965755+00 f t Confirmado 1715 \N +8878 2025-11-21 16:37:19.93876+00 2025-11-21 16:37:19.93877+00 f t payed 1715 1583 +8879 2025-11-21 16:37:55.434631+00 2025-11-21 16:37:55.434639+00 f t vet_accepted 1722 \N +8880 2025-11-21 16:37:55.446809+00 2025-11-21 16:37:55.446818+00 f t in_progress_pay 1722 \N +8881 2025-11-21 16:40:32.211127+00 2025-11-21 16:40:32.211158+00 f t vet_accepted 1719 142 +8882 2025-11-21 16:40:32.225507+00 2025-11-21 16:40:32.225516+00 f t in_progress_pay 1719 142 +8883 2025-11-21 16:42:37.278487+00 2025-11-21 16:42:37.278496+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 19:00:00 1720 1583 +8884 2025-11-21 16:43:20.96138+00 2025-11-21 16:43:20.961388+00 f t Confirmado 1720 \N +8885 2025-11-21 16:43:20.92635+00 2025-11-21 16:43:20.926359+00 f t payed 1720 1583 +8886 2025-11-21 17:20:36.302332+00 2025-11-21 17:20:36.30234+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 17:00:00 1721 1208 +8887 2025-11-21 17:21:01.985638+00 2025-11-21 17:21:01.985651+00 f t vet_accepted 1721 \N +8888 2025-11-21 17:21:02.004136+00 2025-11-21 17:21:02.00415+00 f t in_progress_pay 1721 \N +8889 2025-11-21 17:42:32.431778+00 2025-11-21 17:42:32.431791+00 f t pending 1723 \N +8890 2025-11-21 17:42:43.102369+00 2025-11-21 17:42:43.102381+00 f t in_progress_vet 1723 1583 +8891 2025-11-21 17:42:48.69129+00 2025-11-21 17:42:48.691298+00 f t coordinated Solicitud coordinada para 2025-12-03 a las 16:00:00 1723 1583 +8892 2025-11-21 17:42:54.795907+00 2025-11-21 17:42:54.795916+00 f t vet_asked Veterinario asignado: Fernandez Gaston 1723 1583 +8893 2025-11-21 17:42:55.451568+00 2025-11-21 17:42:55.451577+00 f t vet_accepted 1723 1583 +8894 2025-11-21 17:42:55.464163+00 2025-11-21 17:42:55.464173+00 f t in_progress_pay 1723 1583 +8895 2025-11-21 18:03:18.406326+00 2025-11-21 18:03:18.406335+00 f t vet_accepted 1722 \N +8896 2025-11-21 18:03:18.41946+00 2025-11-21 18:03:18.419469+00 f t in_progress_pay 1722 \N +8897 2025-11-21 18:04:05.889834+00 2025-11-21 18:04:05.889841+00 f t Confirmado 1721 \N +8898 2025-11-21 18:04:05.859568+00 2025-11-21 18:04:05.859577+00 f t payed 1721 1208 +8899 2025-11-21 18:07:36.244539+00 2025-11-21 18:07:36.244548+00 f t Confirmado 1722 \N +8900 2025-11-21 18:07:36.214775+00 2025-11-21 18:07:36.214786+00 f t payed 1722 1208 +8901 2025-11-21 18:33:59.061086+00 2025-11-21 18:33:59.061095+00 f t rejected D-Averiguando / Desconocido 1717 1583 +8902 2025-11-21 19:31:40.963912+00 2025-11-21 19:31:40.963924+00 f t pending 1724 \N +8903 2025-11-21 19:32:46.969565+00 2025-11-21 19:32:46.969578+00 f t in_progress_vet 1724 1208 +8904 2025-11-21 19:32:58.189753+00 2025-11-21 19:32:58.189763+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 16:00:00 1724 1208 +8905 2025-11-21 19:33:12.295186+00 2025-11-21 19:33:12.295194+00 f t vet_asked Veterinario asignado: Ordóñez Daniela 1724 1208 +8906 2025-11-21 19:33:17.210288+00 2025-11-21 19:33:17.210296+00 f t Confirmado 1724 \N +8907 2025-11-21 19:33:17.182092+00 2025-11-21 19:33:17.182103+00 f t payed 1724 1208 +8908 2025-11-21 19:49:41.374508+00 2025-11-21 19:49:41.374517+00 f t pending 1725 \N +8909 2025-11-21 19:52:38.40454+00 2025-11-21 19:52:38.40455+00 f t in_progress_vet 1725 1208 +8910 2025-11-21 19:52:56.934971+00 2025-11-21 19:52:56.934979+00 f t coordinated Solicitud coordinada para 2025-11-21 a las 18:00:00 1725 1208 +8911 2025-11-21 20:07:56.352328+00 2025-11-21 20:07:56.352338+00 f t pending 1726 \N +8912 2025-11-21 20:08:15.056024+00 2025-11-21 20:08:15.056032+00 f t in_progress_vet 1726 1208 +8913 2025-11-21 20:08:27.303517+00 2025-11-21 20:08:27.303525+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 09:30:00 1726 1208 +8914 2025-11-21 20:20:25.385757+00 2025-11-21 20:20:25.38577+00 f t vet_accepted 1721 \N +8915 2025-11-21 20:33:03.447802+00 2025-11-21 20:33:03.447813+00 f t vet_accepted 1726 \N +8916 2025-11-21 20:33:03.462402+00 2025-11-21 20:33:03.462413+00 f t in_progress_pay 1726 \N +8917 2025-11-21 20:47:41.912479+00 2025-11-21 20:47:41.91249+00 f t pending 1727 \N +8918 2025-11-21 20:47:59.847188+00 2025-11-21 20:47:59.8472+00 f t in_progress_vet 1727 1208 +8919 2025-11-21 20:48:06.369509+00 2025-11-21 20:48:06.36952+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 10:30:00 1727 1208 +8920 2025-11-21 20:49:21.298324+00 2025-11-21 20:49:21.298332+00 f t vet_asked Veterinario asignado: Laboratorio Rapela 1727 1208 +8921 2025-11-21 20:50:00.097006+00 2025-11-21 20:50:00.09702+00 f t pending 1728 \N +8922 2025-11-21 20:51:02.625947+00 2025-11-21 20:51:02.62596+00 f t in_progress_vet 1728 1208 +8923 2025-11-21 20:51:24.26172+00 2025-11-21 20:51:24.261728+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 11:00:00 1728 1208 +8924 2025-11-21 21:19:48.862242+00 2025-11-21 21:19:48.862257+00 f t Confirmado 1726 \N +8925 2025-11-21 21:19:48.80895+00 2025-11-21 21:19:48.808964+00 f t payed 1726 1208 +8926 2025-11-21 21:21:31.490828+00 2025-11-21 21:21:31.490838+00 f t Confirmado 1727 \N +8927 2025-11-21 21:21:31.460682+00 2025-11-21 21:21:31.460692+00 f t payed 1727 1208 +8928 2025-11-21 22:41:31.079827+00 2025-11-21 22:41:31.079835+00 f t pending 1729 \N +8929 2025-11-21 23:02:44.192217+00 2025-11-21 23:02:44.192228+00 f t vet_accepted 1526 \N +8930 2025-11-21 23:37:21.2247+00 2025-11-21 23:37:21.224709+00 f t pending 1730 \N +8931 2025-11-22 01:18:34.753924+00 2025-11-22 01:18:34.753935+00 f t pending 1731 \N +8932 2025-11-22 01:28:06.942131+00 2025-11-22 01:28:06.942139+00 f t pending 1732 \N +8933 2025-11-22 02:30:47.632819+00 2025-11-22 02:30:47.632829+00 f t pending 1733 \N +8934 2025-11-22 06:37:27.131732+00 2025-11-22 06:37:27.131742+00 f t vet_accepted 1726 \N +8935 2025-11-22 07:43:54.034612+00 2025-11-22 07:43:54.034621+00 f t vet_accepted 1587 \N +8936 2025-11-22 10:54:02.692352+00 2025-11-22 10:54:02.692362+00 f t vet_accepted 1548 \N +8937 2025-11-22 11:40:18.628721+00 2025-11-22 11:40:18.628728+00 f t pending 1734 \N +8938 2025-11-22 12:06:38.099424+00 2025-11-22 12:06:38.099433+00 f t in_progress_vet 1729 1208 +8939 2025-11-22 12:06:48.84545+00 2025-11-22 12:06:48.845459+00 f t in_progress_vet 1730 1208 +8940 2025-11-22 12:06:58.690798+00 2025-11-22 12:06:58.690811+00 f t in_progress_vet 1731 1208 +8941 2025-11-22 12:19:20.736662+00 2025-11-22 12:19:20.73667+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 13:00:00 1731 1208 +8942 2025-11-22 12:19:45.565709+00 2025-11-22 12:19:45.565718+00 f t vet_accepted 1731 \N +8943 2025-11-22 12:19:45.578868+00 2025-11-22 12:19:45.578878+00 f t in_progress_pay 1731 \N +8944 2025-11-22 12:20:33.900929+00 2025-11-22 12:20:33.900938+00 f t in_progress_vet 1732 1208 +8945 2025-11-22 12:20:45.382551+00 2025-11-22 12:20:45.382564+00 f t rejected D-Averiguando / Desconocido 1732 1208 +8946 2025-11-22 12:20:57.125174+00 2025-11-22 12:20:57.125189+00 f t in_progress_vet 1733 1208 +8947 2025-11-22 12:21:05.320725+00 2025-11-22 12:21:05.320735+00 f t in_progress_vet 1734 1208 +8948 2025-11-22 13:04:45.656127+00 2025-11-22 13:04:45.656135+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 16:00:00 1733 1208 +8949 2025-11-22 13:14:42.561855+00 2025-11-22 13:14:42.561865+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 11:00:00 1733 1208 +8950 2025-11-22 13:14:50.773067+00 2025-11-22 13:14:50.773075+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 15:00:00 1733 1208 +8951 2025-11-22 13:17:48.586833+00 2025-11-22 13:17:48.586842+00 f t vet_accepted 1733 \N +8952 2025-11-22 13:17:48.600852+00 2025-11-22 13:17:48.60086+00 f t in_progress_pay 1733 \N +8953 2025-11-22 13:36:26.384229+00 2025-11-22 13:36:26.384237+00 f t pending 1735 \N +8954 2025-11-22 13:52:27.857685+00 2025-11-22 13:52:27.857695+00 f t in_progress_vet 1735 1208 +8955 2025-11-22 13:52:40.967349+00 2025-11-22 13:52:40.967361+00 f t rejected D-Averiguando / Desconocido 1728 1208 +8956 2025-11-22 14:01:40.738441+00 2025-11-22 14:01:40.73845+00 f t rejected D-Averiguando / Desconocido 1730 1208 +8957 2025-11-22 14:03:36.158098+00 2025-11-22 14:03:36.158108+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 10:00:00 1734 1208 +8958 2025-11-22 14:04:00.830197+00 2025-11-22 14:04:00.83021+00 f t vet_accepted 1734 \N +8959 2025-11-22 14:04:00.845105+00 2025-11-22 14:04:00.845114+00 f t in_progress_pay 1734 \N +8960 2025-11-22 14:08:03.337304+00 2025-11-22 14:08:03.337315+00 f t vet_accepted 1733 \N +8961 2025-11-22 14:08:03.35594+00 2025-11-22 14:08:03.355952+00 f t in_progress_pay 1733 \N +8962 2025-11-22 14:41:49.340185+00 2025-11-22 14:41:49.340193+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 16:00:00 1735 1208 +8963 2025-11-22 14:43:38.598133+00 2025-11-22 14:43:38.59814+00 f t pending 1736 \N +8964 2025-11-22 14:44:54.414014+00 2025-11-22 14:44:54.414023+00 f t in_progress_vet 1736 1208 +8965 2025-11-22 15:11:48.823721+00 2025-11-22 15:11:48.823729+00 f t coordinated Solicitud coordinada para 2025-11-23 a las 09:00:00 1736 1208 +8966 2025-11-22 15:12:24.40656+00 2025-11-22 15:12:24.406571+00 f t vet_accepted 1736 \N +8967 2025-11-22 15:12:24.42644+00 2025-11-22 15:12:24.426449+00 f t in_progress_pay 1736 \N +8968 2025-11-22 15:27:31.237658+00 2025-11-22 15:27:31.237669+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 15:00:00 1735 1208 +8969 2025-11-22 15:42:39.869354+00 2025-11-22 15:42:39.869365+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 14:00:00 1735 1208 +8970 2025-11-22 15:43:45.875482+00 2025-11-22 15:43:45.875489+00 f t pending 1737 \N +8971 2025-11-22 15:44:02.572283+00 2025-11-22 15:44:02.572309+00 f t in_progress_vet 1737 1208 +8972 2025-11-22 15:44:34.479077+00 2025-11-22 15:44:34.479085+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 11:00:00 1737 1208 +8973 2025-11-22 16:15:32.2563+00 2025-11-22 16:15:32.256309+00 f t Confirmado 1733 \N +8974 2025-11-22 16:15:32.212705+00 2025-11-22 16:15:32.212717+00 f t payed 1733 1208 +8975 2025-11-22 16:22:57.114285+00 2025-11-22 16:22:57.114294+00 f t Confirmado 1736 \N +8976 2025-11-22 16:22:57.078242+00 2025-11-22 16:22:57.078249+00 f t payed 1736 1208 +8977 2025-11-22 16:37:12.454957+00 2025-11-22 16:37:12.454965+00 f t pending 1738 \N +8978 2025-11-22 16:37:27.574323+00 2025-11-22 16:37:27.574332+00 f t in_progress_vet 1738 1208 +8979 2025-11-22 16:42:04.07886+00 2025-11-22 16:42:04.078874+00 f t rejected D-Abandono Bot 1725 1208 +8980 2025-11-22 16:42:25.216646+00 2025-11-22 16:42:25.216655+00 f t rejected D-Averiguando / Desconocido 1735 1208 +8981 2025-11-22 16:48:39.994965+00 2025-11-22 16:48:39.994976+00 f t vet_accepted 1736 \N +8982 2025-11-22 17:07:02.409728+00 2025-11-22 17:07:02.409736+00 f t pending 1739 \N +8983 2025-11-22 17:12:38.169406+00 2025-11-22 17:12:38.169416+00 f t rejected D-Abandono Bot 1731 1208 +8984 2025-11-22 17:35:26.564513+00 2025-11-22 17:35:26.564522+00 f t in_progress_vet 1739 1208 +8985 2025-11-22 17:35:35.762339+00 2025-11-22 17:35:35.76235+00 f t coordinated Solicitud coordinada para 2025-11-22 a las 16:00:00 1739 1208 +8986 2025-11-22 18:15:30.983938+00 2025-11-22 18:15:30.983952+00 f t rejected D-Emergencia 1739 1208 +8987 2025-11-22 18:19:20.752969+00 2025-11-22 18:19:20.752977+00 f t rejected D-Averiguando / Desconocido 1737 1208 +8988 2025-11-22 18:28:16.015975+00 2025-11-22 18:28:16.015982+00 f t pending 1740 \N +8989 2025-11-22 18:28:48.341307+00 2025-11-22 18:28:48.341316+00 f t in_progress_vet 1740 1208 +8990 2025-11-22 18:28:56.777218+00 2025-11-22 18:28:56.777226+00 f t coordinated Solicitud coordinada para 2025-11-23 a las 10:30:00 1740 1208 +8991 2025-11-22 18:31:32.375528+00 2025-11-22 18:31:32.375536+00 f t vet_asked Veterinario asignado: Palummo Mariana 1740 1208 +8992 2025-11-22 18:31:50.765861+00 2025-11-22 18:31:50.765868+00 f t Confirmado 1740 \N +8993 2025-11-22 18:31:50.722434+00 2025-11-22 18:31:50.722446+00 f t payed 1740 1208 +8994 2025-11-22 18:41:25.45962+00 2025-11-22 18:41:25.459628+00 f t pending 1741 \N +8995 2025-11-22 18:46:08.835935+00 2025-11-22 18:46:08.835942+00 f t in_progress_vet 1741 1208 +8996 2025-11-22 18:50:48.899708+00 2025-11-22 18:50:48.899716+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 16:00:00 1741 1208 +8997 2025-11-22 18:57:46.872224+00 2025-11-22 18:57:46.872232+00 f t vet_accepted 1741 \N +8998 2025-11-22 18:57:46.885649+00 2025-11-22 18:57:46.885657+00 f t in_progress_pay 1741 \N +8999 2025-11-22 19:10:54.007453+00 2025-11-22 19:10:54.007461+00 f t rejected D-Averiguando / Desconocido 1729 1208 +9000 2025-11-22 19:14:41.761486+00 2025-11-22 19:14:41.761498+00 f t vet_accepted 1741 \N +9001 2025-11-22 19:14:41.775536+00 2025-11-22 19:14:41.775545+00 f t in_progress_pay 1741 \N +9002 2025-11-22 19:14:43.340327+00 2025-11-22 19:14:43.340336+00 f t vet_accepted 1741 \N +9003 2025-11-22 19:14:43.351825+00 2025-11-22 19:14:43.351833+00 f t in_progress_pay 1741 \N +9004 2025-11-22 19:24:54.058843+00 2025-11-22 19:24:54.05885+00 f t Confirmado 1741 \N +9005 2025-11-22 19:24:54.020323+00 2025-11-22 19:24:54.020336+00 f t payed 1741 1208 +9006 2025-11-22 19:36:16.38771+00 2025-11-22 19:36:16.387718+00 f t rejected D-Averiguando / Desconocido 1734 1208 +9007 2025-11-22 22:56:17.81087+00 2025-11-22 22:56:17.810878+00 f t pending 1742 \N +9008 2025-11-23 00:20:00.957734+00 2025-11-23 00:20:00.957747+00 f t vet_accepted 1552 \N +9009 2025-11-23 01:35:26.08934+00 2025-11-23 01:35:26.089351+00 f t vet_accepted 1668 \N +9010 2025-11-23 01:35:26.104653+00 2025-11-23 01:35:26.104662+00 f t in_progress_pay 1668 \N +9011 2025-11-23 01:45:28.951828+00 2025-11-23 01:45:28.951836+00 f t vet_accepted 1674 \N +9012 2025-11-23 10:23:45.922817+00 2025-11-23 10:23:45.922828+00 f t pending 1743 \N +9013 2025-11-23 13:00:11.460869+00 2025-11-23 13:00:11.460885+00 f t pending 1744 \N +9014 2025-11-23 13:44:12.947274+00 2025-11-23 13:44:12.947285+00 f t pending 1745 \N +9015 2025-11-23 14:51:13.76751+00 2025-11-23 14:51:13.76752+00 f t pending 1746 \N +9016 2025-11-23 16:15:03.408513+00 2025-11-23 16:15:03.408532+00 f t in_progress_vet 1742 1583 +9017 2025-11-23 16:15:13.528021+00 2025-11-23 16:15:13.528033+00 f t in_progress_vet 1743 1583 +9018 2025-11-23 16:15:20.464058+00 2025-11-23 16:15:20.464072+00 f t in_progress_vet 1744 1583 +9019 2025-11-23 16:15:33.546672+00 2025-11-23 16:15:33.546681+00 f t rejected D-Sin seguimiento 1745 1583 +9020 2025-11-23 16:15:43.509318+00 2025-11-23 16:15:43.50933+00 f t in_progress_vet 1746 1583 +9021 2025-11-23 16:20:44.112812+00 2025-11-23 16:20:44.112822+00 f t coordinated Solicitud coordinada para 2025-11-23 a las 16:00:00 1744 1583 +9185 2025-11-25 12:27:53.530406+00 2025-11-25 12:27:53.530417+00 f t vet_accepted 1767 \N +9022 2025-11-23 16:21:59.748636+00 2025-11-23 16:21:59.748644+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 11:00:00 1746 1583 +9023 2025-11-23 16:23:21.774008+00 2025-11-23 16:23:21.774016+00 f t vet_accepted 1746 \N +9024 2025-11-23 16:23:21.78788+00 2025-11-23 16:23:21.78789+00 f t in_progress_pay 1746 \N +9025 2025-11-23 16:26:24.65649+00 2025-11-23 16:26:24.656502+00 f t vet_accepted 1746 \N +9026 2025-11-23 16:26:24.674991+00 2025-11-23 16:26:24.675004+00 f t in_progress_pay 1746 \N +9027 2025-11-23 16:32:59.413122+00 2025-11-23 16:32:59.413135+00 f t rejected D-Emergencia 1744 1583 +9028 2025-11-23 16:33:40.862944+00 2025-11-23 16:33:40.862957+00 f t vet_accepted 1618 139 +9029 2025-11-23 16:44:03.851675+00 2025-11-23 16:44:03.851686+00 f t Confirmado 1746 \N +9030 2025-11-23 16:44:03.802628+00 2025-11-23 16:44:03.802636+00 f t payed 1746 1583 +9031 2025-11-23 18:27:05.293827+00 2025-11-23 18:27:05.29384+00 f t rejected D-Abandono Bot 1718 1583 +9032 2025-11-23 18:33:57.464926+00 2025-11-23 18:33:57.464935+00 f t pending 1747 \N +9033 2025-11-23 18:34:13.981829+00 2025-11-23 18:34:13.981841+00 f t in_progress_vet 1747 1583 +9034 2025-11-23 18:34:19.116214+00 2025-11-23 18:34:19.116226+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 19:00:00 1747 1583 +9035 2025-11-23 18:34:24.476877+00 2025-11-23 18:34:24.476886+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1747 1583 +9036 2025-11-23 18:34:25.576327+00 2025-11-23 18:34:25.576337+00 f t vet_accepted 1747 1583 +9037 2025-11-23 18:34:25.59208+00 2025-11-23 18:34:25.59209+00 f t in_progress_pay 1747 1583 +9038 2025-11-23 18:34:38.991862+00 2025-11-23 18:34:38.991872+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1747 1583 +9039 2025-11-23 18:34:39.968082+00 2025-11-23 18:34:39.968094+00 f t vet_accepted 1747 1583 +9040 2025-11-23 18:34:39.9829+00 2025-11-23 18:34:39.982909+00 f t in_progress_pay 1747 1583 +9041 2025-11-23 18:35:26.168464+00 2025-11-23 18:35:26.168474+00 f t rejected D-Sin seguimiento 1747 1583 +9042 2025-11-23 18:35:40.776269+00 2025-11-23 18:35:40.776276+00 f t pending 1748 \N +9043 2025-11-23 18:35:56.072893+00 2025-11-23 18:35:56.072903+00 f t in_progress_vet 1748 1583 +9044 2025-11-23 18:36:01.2287+00 2025-11-23 18:36:01.228708+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 19:00:00 1748 1583 +9045 2025-11-23 18:37:06.631418+00 2025-11-23 18:37:06.631487+00 f t vet_asked Veterinario asignado: Alcasena Nicolas 1748 1583 +9046 2025-11-23 18:37:07.813816+00 2025-11-23 18:37:07.813825+00 f t vet_accepted 1748 1583 +9047 2025-11-23 18:37:07.830691+00 2025-11-23 18:37:07.830703+00 f t in_progress_pay 1748 1583 +9048 2025-11-23 18:37:43.851384+00 2025-11-23 18:37:43.851395+00 f t Confirmado 1748 \N +9049 2025-11-23 18:37:43.799614+00 2025-11-23 18:37:43.799623+00 f t payed 1748 1583 +9050 2025-11-23 18:45:50.899875+00 2025-11-23 18:45:50.899883+00 f t coordinated Solicitud coordinada para 2025-11-23 a las 17:00:00 1743 1583 +9051 2025-11-23 19:18:11.292836+00 2025-11-23 19:18:11.292847+00 f t vet_asked Veterinario asignado: Lorenzo Camila 1719 1583 +9052 2025-11-23 19:18:12.282064+00 2025-11-23 19:18:12.282076+00 f t vet_accepted 1719 1583 +9053 2025-11-23 19:18:12.297859+00 2025-11-23 19:18:12.29787+00 f t in_progress_pay 1719 1583 +9054 2025-11-23 19:22:09.215023+00 2025-11-23 19:22:09.215029+00 f t Confirmado 1719 \N +9055 2025-11-23 19:22:09.159414+00 2025-11-23 19:22:09.159427+00 f t payed 1719 1583 +9056 2025-11-23 19:35:20.77387+00 2025-11-23 19:35:20.77388+00 f t coordinated Solicitud coordinada para 2025-12-03 a las 09:00:00 1719 1583 +9057 2025-11-23 19:44:56.310659+00 2025-11-23 19:44:56.310676+00 f t rejected D-Abandono Bot 1743 1583 +9058 2025-11-23 20:27:50.127467+00 2025-11-23 20:27:50.127474+00 f t pending 1749 \N +9059 2025-11-23 20:28:40.246639+00 2025-11-23 20:28:40.246649+00 f t in_progress_vet 1749 1583 +9060 2025-11-23 20:29:08.500353+00 2025-11-23 20:29:08.500364+00 f t coordinated Solicitud coordinada para 2025-11-23 a las 18:30:00 1749 1583 +9061 2025-11-23 23:53:33.229732+00 2025-11-23 23:53:33.229745+00 f t vet_accepted 1718 \N +9062 2025-11-23 23:53:33.246694+00 2025-11-23 23:53:33.246703+00 f t in_progress_pay 1718 \N +9063 2025-11-24 02:28:19.608377+00 2025-11-24 02:28:19.608386+00 f t vet_accepted 1672 \N +9064 2025-11-24 02:28:19.622696+00 2025-11-24 02:28:19.622706+00 f t in_progress_pay 1672 \N +9065 2025-11-24 04:53:04.303738+00 2025-11-24 04:53:04.303753+00 f t vet_accepted 1585 \N +9066 2025-11-24 07:23:05.410574+00 2025-11-24 07:23:05.410581+00 f t pending 1750 \N +9067 2025-11-24 08:33:46.875022+00 2025-11-24 08:33:46.875034+00 f t vet_accepted 1599 \N +9068 2025-11-24 09:57:56.251326+00 2025-11-24 09:57:56.251339+00 f t pending 1751 \N +9069 2025-11-24 11:53:55.152972+00 2025-11-24 11:53:55.15298+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 19:00:00 1748 1583 +9070 2025-11-24 11:59:51.771513+00 2025-11-24 11:59:51.771521+00 f t in_progress_vet 1750 1583 +9071 2025-11-24 12:00:18.286173+00 2025-11-24 12:00:18.286188+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 13:00:00 1750 1583 +9072 2025-11-24 12:02:46.705344+00 2025-11-24 12:02:46.705353+00 f t in_progress_vet 1751 1583 +9073 2025-11-24 12:03:00.381586+00 2025-11-24 12:03:00.381596+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 14:00:00 1751 1583 +9074 2025-11-24 12:04:00.974483+00 2025-11-24 12:04:00.974491+00 f t vet_accepted 1751 \N +9075 2025-11-24 12:04:00.987654+00 2025-11-24 12:04:00.987662+00 f t in_progress_pay 1751 \N +9076 2025-11-24 12:20:26.379862+00 2025-11-24 12:20:26.379871+00 f t rejected D-Precio 1751 1583 +9077 2025-11-24 12:20:36.384253+00 2025-11-24 12:20:36.384273+00 f t vet_accepted 1641 \N +9078 2025-11-24 12:20:36.399762+00 2025-11-24 12:20:36.399772+00 f t in_progress_pay 1641 \N +9079 2025-11-24 12:26:11.390053+00 2025-11-24 12:26:11.390064+00 f t rejected D-Abandono Bot 1718 1583 +9080 2025-11-24 12:26:29.790844+00 2025-11-24 12:26:29.790853+00 f t rejected D-Abandono Bot 1723 1583 +9081 2025-11-24 12:26:39.197153+00 2025-11-24 12:26:39.197163+00 f t rejected D-Abandono Bot 1738 1583 +9082 2025-11-24 12:27:10.123421+00 2025-11-24 12:27:10.123429+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1750 1583 +9083 2025-11-24 12:31:56.987554+00 2025-11-24 12:31:56.987565+00 f t vet_accepted 1750 \N +9084 2025-11-24 12:31:57.001084+00 2025-11-24 12:31:57.001092+00 f t in_progress_pay 1750 \N +9085 2025-11-24 12:39:18.325178+00 2025-11-24 12:39:18.325187+00 f t vet_asked Veterinario asignado: Burgess Clínica 1750 1583 +9086 2025-11-24 12:39:20.083844+00 2025-11-24 12:39:20.083855+00 f t vet_accepted 1750 1583 +9087 2025-11-24 12:39:20.096217+00 2025-11-24 12:39:20.096226+00 f t in_progress_pay 1750 1583 +9088 2025-11-24 13:20:26.221248+00 2025-11-24 13:20:26.221256+00 f t pending 1752 \N +9089 2025-11-24 13:38:54.87403+00 2025-11-24 13:38:54.874039+00 f t in_progress_vet 1752 1583 +9090 2025-11-24 13:40:20.438751+00 2025-11-24 13:40:20.438758+00 f t pending 1753 \N +9091 2025-11-24 13:40:55.667732+00 2025-11-24 13:40:55.667741+00 f t in_progress_vet 1753 1583 +9092 2025-11-24 13:41:06.35355+00 2025-11-24 13:41:06.353558+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 14:00:00 1753 1583 +9093 2025-11-24 13:41:41.305542+00 2025-11-24 13:41:41.305552+00 f t vet_accepted 1753 \N +9094 2025-11-24 13:41:41.319575+00 2025-11-24 13:41:41.319584+00 f t in_progress_pay 1753 \N +9095 2025-11-24 13:41:43.769917+00 2025-11-24 13:41:43.769925+00 f t rejected Solicitud rechazada por Usuario no especificado 1753 \N +9096 2025-11-24 13:41:43.779561+00 2025-11-24 13:41:43.779573+00 f t in_progress_vet 1753 \N +9097 2025-11-24 13:54:22.978902+00 2025-11-24 13:54:22.978915+00 f t vet_accepted 1753 \N +9098 2025-11-24 13:54:22.998491+00 2025-11-24 13:54:22.998503+00 f t in_progress_pay 1753 \N +9099 2025-11-24 13:57:08.962126+00 2025-11-24 13:57:08.96214+00 f t pending 1754 \N +9100 2025-11-24 13:58:38.885746+00 2025-11-24 13:58:38.885753+00 f t in_progress_vet 1754 1583 +9101 2025-11-24 13:58:42.910276+00 2025-11-24 13:58:42.910285+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 14:00:00 1754 1583 +9102 2025-11-24 14:00:56.733654+00 2025-11-24 14:00:56.733663+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 14:00:00 1754 1583 +9186 2025-11-25 12:27:53.542962+00 2025-11-25 12:27:53.542971+00 f t in_progress_pay 1767 \N +9103 2025-11-24 14:18:06.81019+00 2025-11-24 14:18:06.810202+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 16:00:00 1752 1583 +9104 2025-11-24 14:20:10.074566+00 2025-11-24 14:20:10.07458+00 f t pending 1755 \N +9105 2025-11-24 14:20:26.345156+00 2025-11-24 14:20:26.345168+00 f t in_progress_vet 1755 1583 +9106 2025-11-24 14:20:34.123488+00 2025-11-24 14:20:34.123496+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 17:00:00 1755 1583 +9107 2025-11-24 14:22:59.913554+00 2025-11-24 14:22:59.913561+00 f t pending 1756 \N +9108 2025-11-24 14:23:12.776069+00 2025-11-24 14:23:12.77608+00 f t in_progress_vet 1756 1583 +9109 2025-11-24 14:23:53.392756+00 2025-11-24 14:23:53.392764+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 18:00:00 1756 1583 +9110 2025-11-24 14:27:45.949743+00 2025-11-24 14:27:45.94975+00 f t pending 1757 \N +9111 2025-11-24 14:28:27.479737+00 2025-11-24 14:28:27.479746+00 f t pending 1758 \N +9112 2025-11-24 14:33:56.787329+00 2025-11-24 14:33:56.787339+00 f t vet_accepted 1755 \N +9113 2025-11-24 14:33:56.80232+00 2025-11-24 14:33:56.802331+00 f t in_progress_pay 1755 \N +9114 2025-11-24 14:36:13.282759+00 2025-11-24 14:36:13.282768+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 13:00:00 1756 1583 +9115 2025-11-24 15:03:46.314221+00 2025-11-24 15:03:46.314229+00 f t pending 1759 \N +9116 2025-11-24 15:03:57.006812+00 2025-11-24 15:03:57.006822+00 f t pending 1760 \N +9117 2025-11-24 16:32:38.753416+00 2025-11-24 16:32:38.753426+00 f t in_progress_vet 1757 1583 +9118 2025-11-24 16:32:58.277006+00 2025-11-24 16:32:58.277022+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 16:00:00 1757 1583 +9119 2025-11-24 16:37:29.453409+00 2025-11-24 16:37:29.453417+00 f t in_progress_vet 1760 1583 +9120 2025-11-24 16:37:43.251856+00 2025-11-24 16:37:43.251864+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 14:00:00 1760 1583 +9121 2025-11-24 17:11:28.179931+00 2025-11-24 17:11:28.17994+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 10:00:00 1757 1583 +9122 2025-11-24 17:30:12.125533+00 2025-11-24 17:30:12.125547+00 f t vet_accepted 1760 \N +9123 2025-11-24 17:30:12.148566+00 2025-11-24 17:30:12.148579+00 f t in_progress_pay 1760 \N +9124 2025-11-24 17:30:31.512624+00 2025-11-24 17:30:31.512633+00 f t vet_accepted 1760 \N +9125 2025-11-24 17:30:31.526444+00 2025-11-24 17:30:31.526499+00 f t in_progress_pay 1760 \N +9126 2025-11-24 17:32:53.303234+00 2025-11-24 17:32:53.303243+00 f t vet_accepted 1760 \N +9127 2025-11-24 17:32:53.319468+00 2025-11-24 17:32:53.319477+00 f t in_progress_pay 1760 \N +9128 2025-11-24 17:38:27.425081+00 2025-11-24 17:38:27.425093+00 f t rejected D-Sin Turno 1724 1583 +9129 2025-11-24 17:49:43.833863+00 2025-11-24 17:49:43.833869+00 f t Confirmado 1760 \N +9130 2025-11-24 17:49:43.791507+00 2025-11-24 17:49:43.791516+00 f t payed 1760 1583 +9131 2025-11-24 18:38:23.345148+00 2025-11-24 18:38:23.34516+00 f t vet_accepted 1756 \N +9132 2025-11-24 18:38:23.361843+00 2025-11-24 18:38:23.361852+00 f t in_progress_pay 1756 \N +9133 2025-11-24 19:59:15.38728+00 2025-11-24 19:59:15.387288+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 20:00:00 1756 1583 +9134 2025-11-24 20:39:15.706865+00 2025-11-24 20:39:15.706873+00 f t pending 1761 \N +9135 2025-11-24 20:43:55.302596+00 2025-11-24 20:43:55.302605+00 f t in_progress_vet 1761 1583 +9136 2025-11-24 20:44:05.573256+00 2025-11-24 20:44:05.573267+00 f t coordinated Solicitud coordinada para 2025-12-04 a las 13:00:00 1761 1583 +9137 2025-11-24 20:45:01.696165+00 2025-11-24 20:45:01.696176+00 f t vet_accepted 1761 \N +9138 2025-11-24 20:45:01.739046+00 2025-11-24 20:45:01.739062+00 f t in_progress_pay 1761 \N +9139 2025-11-24 20:45:21.751243+00 2025-11-24 20:45:21.751255+00 f t vet_accepted 1761 \N +9140 2025-11-24 20:45:21.773265+00 2025-11-24 20:45:21.773281+00 f t in_progress_pay 1761 \N +9141 2025-11-24 20:47:36.143637+00 2025-11-24 20:47:36.143645+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 10:00:00 1757 1583 +9142 2025-11-24 21:34:31.017547+00 2025-11-24 21:34:31.017556+00 f t vet_accepted 1515 \N +9143 2025-11-24 21:44:42.507416+00 2025-11-24 21:44:42.507425+00 f t vet_accepted 1636 \N +9144 2025-11-24 21:44:42.522255+00 2025-11-24 21:44:42.522266+00 f t in_progress_pay 1636 \N +9145 2025-11-24 22:01:32.981333+00 2025-11-24 22:01:32.981341+00 f t pending 1762 \N +9146 2025-11-24 22:01:48.468888+00 2025-11-24 22:01:48.468899+00 f t in_progress_vet 1762 1583 +9147 2025-11-24 22:01:52.007959+00 2025-11-24 22:01:52.007969+00 f t coordinated Solicitud coordinada para 2025-12-02 a las 15:00:00 1762 1583 +9148 2025-11-24 22:02:59.618961+00 2025-11-24 22:02:59.618977+00 f t vet_accepted 1762 \N +9149 2025-11-24 22:02:59.641342+00 2025-11-24 22:02:59.641352+00 f t in_progress_pay 1762 \N +9150 2025-11-24 22:04:27.452475+00 2025-11-24 22:04:27.452486+00 f t coordinated Solicitud coordinada para 2025-12-02 a las 16:00:00 1762 1583 +9151 2025-11-24 22:13:30.810658+00 2025-11-24 22:13:30.810667+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 21:00:00 1756 1583 +9152 2025-11-24 22:19:14.287802+00 2025-11-24 22:19:14.287808+00 f t Confirmado 1756 \N +9153 2025-11-24 22:19:14.234818+00 2025-11-24 22:19:14.234827+00 f t payed 1756 1583 +9154 2025-11-24 22:26:39.579331+00 2025-11-24 22:26:39.57934+00 f t pending 1763 \N +9155 2025-11-24 22:27:41.295265+00 2025-11-24 22:27:41.295276+00 f t in_progress_vet 1763 1583 +9156 2025-11-24 22:27:49.87996+00 2025-11-24 22:27:49.879968+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 20:30:00 1763 1583 +9157 2025-11-24 22:40:15.420714+00 2025-11-24 22:40:15.420724+00 f t Confirmado 1755 \N +9158 2025-11-24 22:40:15.365+00 2025-11-24 22:40:15.365013+00 f t payed 1755 1583 +9159 2025-11-24 22:49:55.777942+00 2025-11-24 22:49:55.777949+00 f t Confirmado 1762 \N +9160 2025-11-24 22:49:55.728305+00 2025-11-24 22:49:55.728314+00 f t payed 1762 1583 +9161 2025-11-24 22:56:07.008297+00 2025-11-24 22:56:07.008306+00 f t rejected D-Averiguando / Desconocido 1763 1583 +9162 2025-11-24 22:58:32.593552+00 2025-11-24 22:58:32.593564+00 f t rejected D-Emergencia 1749 1583 +9163 2025-11-24 23:00:50.854847+00 2025-11-24 23:00:50.854854+00 f t Confirmado 1761 \N +9164 2025-11-24 23:00:50.805361+00 2025-11-24 23:00:50.80537+00 f t payed 1761 1583 +9165 2025-11-24 23:11:34.781769+00 2025-11-24 23:11:34.781777+00 f t pending 1764 \N +9166 2025-11-24 23:11:52.630891+00 2025-11-24 23:11:52.630901+00 f t in_progress_vet 1764 1583 +9167 2025-11-24 23:12:00.075259+00 2025-11-24 23:12:00.075272+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 19:00:00 1764 1583 +9168 2025-11-25 01:04:48.57219+00 2025-11-25 01:04:48.572202+00 f t pending 1765 \N +9169 2025-11-25 01:14:32.32982+00 2025-11-25 01:14:32.329834+00 f t vet_accepted 1655 \N +9170 2025-11-25 01:35:08.361932+00 2025-11-25 01:35:08.361949+00 f t pending 1766 \N +9171 2025-11-25 01:43:57.502083+00 2025-11-25 01:43:57.502096+00 f t pending 1767 \N +9172 2025-11-25 02:08:31.107385+00 2025-11-25 02:08:31.107399+00 f t pending 1768 \N +9173 2025-11-25 02:44:02.309891+00 2025-11-25 02:44:02.309926+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 20:00:00 1757 1583 +9174 2025-11-25 02:44:07.061469+00 2025-11-25 02:44:07.061479+00 f t vet_asked Veterinario asignado: Palummo Mariana 1757 1583 +9175 2025-11-25 02:44:07.724752+00 2025-11-25 02:44:07.724762+00 f t vet_accepted 1757 1583 +9176 2025-11-25 02:44:07.739374+00 2025-11-25 02:44:07.739387+00 f t in_progress_pay 1757 1583 +9177 2025-11-25 02:44:25.178361+00 2025-11-25 02:44:25.178369+00 f t Confirmado 1757 \N +9178 2025-11-25 02:44:25.140277+00 2025-11-25 02:44:25.140287+00 f t payed 1757 1583 +9179 2025-11-25 12:10:13.909597+00 2025-11-25 12:10:13.909607+00 f t pending 1769 \N +9180 2025-11-25 12:18:08.860524+00 2025-11-25 12:18:08.860536+00 f t in_progress_vet 1769 1208 +9181 2025-11-25 12:23:21.33164+00 2025-11-25 12:23:21.33165+00 f t in_progress_vet 1765 1208 +9182 2025-11-25 12:23:40.835201+00 2025-11-25 12:23:40.835211+00 f t in_progress_vet 1766 1208 +9183 2025-11-25 12:26:59.200639+00 2025-11-25 12:26:59.200648+00 f t in_progress_vet 1767 1208 +9184 2025-11-25 12:27:12.446726+00 2025-11-25 12:27:12.446737+00 f t coordinated Solicitud coordinada para 2025-12-01 a las 10:00:00 1767 1208 +9187 2025-11-25 12:41:23.599821+00 2025-11-25 12:41:23.599829+00 f t pending 1770 \N +9188 2025-11-25 12:41:35.622235+00 2025-11-25 12:41:35.622247+00 f t in_progress_vet 1770 1208 +9189 2025-11-25 12:41:45.964331+00 2025-11-25 12:41:45.964341+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 13:00:00 1770 1208 +9190 2025-11-25 12:45:52.993+00 2025-11-25 12:45:52.993013+00 f t in_progress_vet 1768 1208 +9191 2025-11-25 12:53:31.713859+00 2025-11-25 12:53:31.713869+00 f t pending 1771 \N +9192 2025-11-25 12:53:43.331914+00 2025-11-25 12:53:43.331922+00 f t in_progress_vet 1771 1208 +9193 2025-11-25 12:54:25.365694+00 2025-11-25 12:54:25.365701+00 f t coordinated Solicitud coordinada para 2025-12-02 a las 17:00:00 1768 1208 +9194 2025-11-25 12:54:51.063335+00 2025-11-25 12:54:51.063344+00 f t vet_accepted 1768 \N +9195 2025-11-25 12:54:51.080698+00 2025-11-25 12:54:51.080708+00 f t in_progress_pay 1768 \N +9196 2025-11-25 12:54:53.824295+00 2025-11-25 12:54:53.824307+00 f t rejected Solicitud rechazada por Usuario no especificado 1768 \N +9197 2025-11-25 12:54:53.833418+00 2025-11-25 12:54:53.833426+00 f t in_progress_vet 1768 \N +9198 2025-11-25 12:55:46.262123+00 2025-11-25 12:55:46.262133+00 f t vet_accepted 1768 \N +9199 2025-11-25 12:55:46.280868+00 2025-11-25 12:55:46.280878+00 f t in_progress_pay 1768 \N +9200 2025-11-25 13:01:26.247207+00 2025-11-25 13:01:26.247217+00 f t pending 1772 \N +9201 2025-11-25 13:17:55.891264+00 2025-11-25 13:17:55.891275+00 f t pending 1773 \N +9202 2025-11-25 13:18:10.843128+00 2025-11-25 13:18:10.843138+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 19:30:00 1769 1208 +9203 2025-11-25 13:19:10.29306+00 2025-11-25 13:19:10.293714+00 f t vet_accepted 1770 \N +9204 2025-11-25 13:19:10.312188+00 2025-11-25 13:19:10.312201+00 f t in_progress_pay 1770 \N +9205 2025-11-25 13:19:12.655276+00 2025-11-25 13:19:12.655286+00 f t rejected Solicitud rechazada por Usuario no especificado 1770 \N +9206 2025-11-25 13:19:12.666708+00 2025-11-25 13:19:12.66672+00 f t in_progress_vet 1770 \N +9207 2025-11-25 13:20:08.481856+00 2025-11-25 13:20:08.481871+00 f t in_progress_vet 1772 1208 +9208 2025-11-25 13:20:14.288996+00 2025-11-25 13:20:14.289009+00 f t vet_accepted 1770 \N +9209 2025-11-25 13:20:14.307277+00 2025-11-25 13:20:14.307286+00 f t in_progress_pay 1770 \N +9210 2025-11-25 13:21:01.691836+00 2025-11-25 13:21:01.69227+00 f t in_progress_vet 1773 1208 +9211 2025-11-25 13:24:49.650246+00 2025-11-25 13:24:49.650255+00 f t rejected D-Provincia 1773 1208 +9212 2025-11-25 13:33:39.217602+00 2025-11-25 13:33:39.217612+00 f t pending 1774 \N +9213 2025-11-25 13:33:53.059495+00 2025-11-25 13:33:53.059506+00 f t in_progress_vet 1774 1208 +9214 2025-11-25 13:36:26.390421+00 2025-11-25 13:36:26.390431+00 f t Confirmado 1768 \N +9215 2025-11-25 13:36:26.334468+00 2025-11-25 13:36:26.33448+00 f t payed 1768 1208 +9216 2025-11-25 13:48:53.986458+00 2025-11-25 13:48:53.986476+00 f t vet_accepted 1760 \N +9217 2025-11-25 14:01:22.775421+00 2025-11-25 14:01:22.775434+00 f t rejected D-Averiguando / Desconocido 1771 1208 +9218 2025-11-25 14:01:59.806236+00 2025-11-25 14:01:59.806253+00 f t rejected D-Abandono Bot 1765 1208 +9219 2025-11-25 14:02:26.659625+00 2025-11-25 14:02:26.659648+00 f t rejected D-Abandono Bot 1766 1208 +9220 2025-11-25 14:09:12.675542+00 2025-11-25 14:09:12.675551+00 f t pending 1775 \N +9221 2025-11-25 14:09:30.809555+00 2025-11-25 14:09:30.809565+00 f t in_progress_vet 1775 1208 +9222 2025-11-25 14:09:38.896634+00 2025-11-25 14:09:38.896644+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 17:00:00 1775 1208 +9223 2025-11-25 14:10:53.715559+00 2025-11-25 14:10:53.715714+00 f t coordinated Solicitud coordinada para 2025-12-04 a las 10:00:00 1774 1208 +9224 2025-11-25 14:10:57.249932+00 2025-11-25 14:10:57.250453+00 f t vet_accepted 1775 126 +9225 2025-11-25 14:10:57.269272+00 2025-11-25 14:10:57.26928+00 f t in_progress_pay 1775 126 +9226 2025-11-25 14:15:02.30519+00 2025-11-25 14:15:02.305746+00 f t vet_accepted 1774 \N +9227 2025-11-25 14:15:02.358907+00 2025-11-25 14:15:02.361339+00 f t in_progress_pay 1774 \N +9228 2025-11-25 14:25:26.819126+00 2025-11-25 14:25:26.819138+00 f t pending 1776 \N +9229 2025-11-25 14:25:54.463922+00 2025-11-25 14:25:54.463931+00 f t in_progress_vet 1776 1583 +9230 2025-11-25 14:26:03.650508+00 2025-11-25 14:26:03.650521+00 f t coordinated Solicitud coordinada para 2025-12-06 a las 10:00:00 1776 1583 +9231 2025-11-25 14:26:34.270886+00 2025-11-25 14:26:34.270897+00 f t vet_accepted 1776 \N +9232 2025-11-25 14:26:34.28419+00 2025-11-25 14:26:34.284202+00 f t in_progress_pay 1776 \N +9233 2025-11-25 14:27:37.24808+00 2025-11-25 14:27:37.248088+00 f t pending 1777 \N +9234 2025-11-25 14:28:13.018428+00 2025-11-25 14:28:13.01844+00 f t in_progress_vet 1777 1583 +9235 2025-11-25 14:39:14.284064+00 2025-11-25 14:39:14.284073+00 f t Confirmado 1776 \N +9236 2025-11-25 14:39:14.233265+00 2025-11-25 14:39:14.233276+00 f t payed 1776 1583 +9237 2025-11-25 14:40:30.669361+00 2025-11-25 14:40:30.669369+00 f t Confirmado 1770 \N +9238 2025-11-25 14:40:30.612538+00 2025-11-25 14:40:30.612552+00 f t payed 1770 1208 +9239 2025-11-25 14:49:27.478221+00 2025-11-25 14:49:27.478228+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 20:30:00 1764 1583 +9240 2025-11-25 14:49:37.570479+00 2025-11-25 14:49:37.570485+00 f t Confirmado 1775 \N +9241 2025-11-25 14:49:37.52796+00 2025-11-25 14:49:37.527972+00 f t payed 1775 1208 +9242 2025-11-25 14:50:59.205512+00 2025-11-25 14:50:59.205521+00 f t coordinated Solicitud coordinada para 2025-12-03 a las 10:00:00 1777 1583 +9243 2025-11-25 14:52:48.631208+00 2025-11-25 14:52:48.631216+00 f t pending 1778 \N +9244 2025-11-25 14:53:18.590003+00 2025-11-25 14:53:18.590012+00 f t in_progress_vet 1778 1208 +9245 2025-11-25 14:53:46.694055+00 2025-11-25 14:53:46.694066+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 16:00:00 1778 1208 +9246 2025-11-25 14:53:59.650725+00 2025-11-25 14:53:59.650734+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 18:00:00 1778 1208 +9247 2025-11-25 15:26:28.685162+00 2025-11-25 15:26:28.685173+00 f t pending 1779 \N +9248 2025-11-25 15:27:43.994677+00 2025-11-25 15:27:43.994686+00 f t in_progress_vet 1779 1208 +9249 2025-11-25 15:37:29.630839+00 2025-11-25 15:37:29.630847+00 f t coordinated Solicitud coordinada para 2025-11-27 a las 18:00:00 1779 1208 +9250 2025-11-25 15:37:41.130159+00 2025-11-25 15:37:41.130168+00 f t coordinated Solicitud coordinada para 2025-11-27 a las 17:30:00 1779 1208 +9251 2025-11-25 15:39:01.021691+00 2025-11-25 15:39:01.021704+00 f t vet_asked Veterinario asignado: Oviedo Maria Luisa 1778 1208 +9252 2025-11-25 15:46:21.697811+00 2025-11-25 15:46:21.697817+00 f t Confirmado 1778 \N +9253 2025-11-25 15:46:21.653949+00 2025-11-25 15:46:21.653962+00 f t payed 1778 1208 +9254 2025-11-25 15:50:49.881709+00 2025-11-25 15:50:49.881718+00 f t rejected D-Emergencia 1752 1583 +9255 2025-11-25 15:51:14.646096+00 2025-11-25 15:51:14.646109+00 f t rejected D-Abandono Bot 1742 1583 +9256 2025-11-25 15:55:40.377379+00 2025-11-25 15:55:40.37739+00 f t pending 1780 \N +9257 2025-11-25 15:55:50.452162+00 2025-11-25 15:55:50.452171+00 f t in_progress_vet 1780 1208 +9258 2025-11-25 15:56:00.512889+00 2025-11-25 15:56:00.512901+00 f t coordinated Solicitud coordinada para 2025-12-05 a las 11:30:00 1780 1208 +9259 2025-11-25 15:59:34.095763+00 2025-11-25 15:59:34.095773+00 f t coordinated Solicitud coordinada para 2025-12-05 a las 10:30:00 1780 1208 +9260 2025-11-25 16:05:52.51275+00 2025-11-25 16:05:52.512759+00 f t vet_accepted 1777 \N +9261 2025-11-25 16:05:52.530407+00 2025-11-25 16:05:52.530421+00 f t in_progress_pay 1777 \N +9262 2025-11-25 16:07:43.042879+00 2025-11-25 16:07:43.04289+00 f t vet_asked Veterinario asignado: Szczurek Veronica Carolina 1769 1208 +9263 2025-11-25 16:12:48.657404+00 2025-11-25 16:12:48.657412+00 f t Confirmado 1769 \N +9264 2025-11-25 16:12:48.604421+00 2025-11-25 16:12:48.604434+00 f t payed 1769 1208 +9265 2025-11-25 16:22:16.14903+00 2025-11-25 16:22:16.149041+00 f t pending 1781 \N +9266 2025-11-25 16:22:47.535808+00 2025-11-25 16:22:47.53582+00 f t in_progress_vet 1781 1208 +9267 2025-11-25 16:23:51.171958+00 2025-11-25 16:23:51.171966+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 19:30:00 1781 1208 +9268 2025-11-25 16:24:07.089706+00 2025-11-25 16:24:07.089715+00 f t vet_accepted 1781 \N +9269 2025-11-25 16:24:07.106802+00 2025-11-25 16:24:07.106815+00 f t in_progress_pay 1781 \N +9270 2025-11-25 16:24:09.087235+00 2025-11-25 16:24:09.087243+00 f t rejected Solicitud rechazada por Usuario no especificado 1781 \N +9271 2025-11-25 16:24:09.096128+00 2025-11-25 16:24:09.096136+00 f t in_progress_vet 1781 \N +9272 2025-11-25 16:32:58.879965+00 2025-11-25 16:32:58.879979+00 f t pending 1782 \N +9273 2025-11-25 16:33:23.619258+00 2025-11-25 16:33:23.619268+00 f t in_progress_vet 1782 1208 +9274 2025-11-25 16:33:32.762206+00 2025-11-25 16:33:32.762214+00 f t coordinated Solicitud coordinada para 2025-12-02 a las 17:00:00 1782 1208 +9275 2025-11-25 16:35:22.161656+00 2025-11-25 16:35:22.161666+00 f t vet_accepted 1782 \N +9276 2025-11-25 16:35:22.176617+00 2025-11-25 16:35:22.176629+00 f t in_progress_pay 1782 \N +9277 2025-11-25 16:35:24.83861+00 2025-11-25 16:35:24.838619+00 f t rejected Solicitud rechazada por Usuario no especificado 1782 \N +9278 2025-11-25 16:35:24.848765+00 2025-11-25 16:35:24.848773+00 f t in_progress_vet 1782 \N +9279 2025-11-25 16:35:44.048512+00 2025-11-25 16:35:44.048525+00 f t vet_accepted 1782 \N +9280 2025-11-25 16:35:44.06654+00 2025-11-25 16:35:44.06655+00 f t in_progress_pay 1782 \N +9281 2025-11-25 16:38:46.689221+00 2025-11-25 16:38:46.689229+00 f t pending 1783 \N +9282 2025-11-25 16:40:01.299513+00 2025-11-25 16:40:01.299529+00 f t in_progress_vet 1783 1583 +9283 2025-11-25 16:42:34.636157+00 2025-11-25 16:42:34.636167+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 16:00:00 1777 1583 +9284 2025-11-25 16:42:43.188327+00 2025-11-25 16:42:43.188337+00 f t vet_asked Veterinario asignado: Castro Guadalupe 1777 1583 +9285 2025-11-25 16:42:44.040736+00 2025-11-25 16:42:44.040751+00 f t vet_accepted 1777 1583 +9286 2025-11-25 16:42:44.056783+00 2025-11-25 16:42:44.056793+00 f t in_progress_pay 1777 1583 +9287 2025-11-25 16:48:08.429743+00 2025-11-25 16:48:08.429754+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 15:00:00 1783 1583 +9288 2025-11-25 16:48:51.590226+00 2025-11-25 16:48:51.590234+00 f t Confirmado 1777 \N +9289 2025-11-25 16:48:51.542953+00 2025-11-25 16:48:51.542962+00 f t payed 1777 1583 +9290 2025-11-25 16:51:45.238834+00 2025-11-25 16:51:45.238843+00 f t vet_accepted 1783 \N +9291 2025-11-25 16:51:45.255421+00 2025-11-25 16:51:45.25543+00 f t in_progress_pay 1783 \N +9292 2025-11-25 16:53:53.855236+00 2025-11-25 16:53:53.855244+00 f t pending 1784 \N +9293 2025-11-25 16:54:19.280356+00 2025-11-25 16:54:19.280364+00 f t in_progress_vet 1784 1583 +9294 2025-11-25 16:57:10.307222+00 2025-11-25 16:57:10.307235+00 f t payed 1784 1583 +9295 2025-11-25 17:03:22.582615+00 2025-11-25 17:03:22.582622+00 f t Confirmado 1783 \N +9296 2025-11-25 17:03:22.54049+00 2025-11-25 17:03:22.5405+00 f t payed 1783 1583 +9297 2025-11-25 17:15:47.226218+00 2025-11-25 17:15:47.226224+00 f t Confirmado 1774 \N +9298 2025-11-25 17:15:47.178382+00 2025-11-25 17:15:47.178391+00 f t payed 1774 1208 +9299 2025-11-25 17:16:08.383905+00 2025-11-25 17:16:08.383915+00 f t payed 1780 1208 +9300 2025-11-25 17:16:34.995738+00 2025-11-25 17:16:34.99575+00 f t payed 1772 1208 +9301 2025-11-25 17:25:43.860507+00 2025-11-25 17:25:43.860515+00 f t pending 1785 \N +9302 2025-11-25 17:26:49.024449+00 2025-11-25 17:26:49.02446+00 f t in_progress_vet 1785 1583 +9303 2025-11-25 17:27:00.342544+00 2025-11-25 17:27:00.342552+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 19:00:00 1785 1583 +9304 2025-11-25 17:35:32.638338+00 2025-11-25 17:35:32.638348+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 16:00:00 1785 1583 +9305 2025-11-25 18:20:46.3497+00 2025-11-25 18:20:46.349709+00 f t rejected D-No dimos respuesta 1779 1208 +9306 2025-11-25 18:38:27.647373+00 2025-11-25 18:38:27.647382+00 f t pending 1786 \N +9307 2025-11-25 18:39:45.482677+00 2025-11-25 18:39:45.482686+00 f t in_progress_vet 1786 1583 +9308 2025-11-25 18:43:57.693329+00 2025-11-25 18:43:57.693337+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 16:00:00 1785 1583 +9309 2025-11-25 18:44:02.331539+00 2025-11-25 18:44:02.331554+00 f t vet_asked Veterinario asignado: Della Bianca Paola 1785 1583 +9310 2025-11-25 18:44:04.792934+00 2025-11-25 18:44:04.792943+00 f t vet_accepted 1785 1583 +9311 2025-11-25 18:44:04.809791+00 2025-11-25 18:44:04.8098+00 f t in_progress_pay 1785 1583 +9312 2025-11-25 18:47:51.321665+00 2025-11-25 18:47:51.321673+00 f t rejected D-Abandono Bot 1767 1208 +9313 2025-11-25 18:50:11.38025+00 2025-11-25 18:50:11.380263+00 f t pending 1787 \N +9314 2025-11-25 18:50:57.946255+00 2025-11-25 18:50:57.946265+00 f t in_progress_vet 1787 1208 +9315 2025-11-25 18:53:31.501972+00 2025-11-25 18:53:31.50198+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 11:30:00 1754 1583 +9316 2025-11-25 18:53:39.278653+00 2025-11-25 18:53:39.27866+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 16:00:00 1754 1583 +9317 2025-11-25 18:53:47.945483+00 2025-11-25 18:53:47.945491+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 20:30:00 1754 1583 +9318 2025-11-25 18:53:55.999251+00 2025-11-25 18:53:55.999263+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 20:30:00 1754 1583 +9319 2025-11-25 18:54:02.64257+00 2025-11-25 18:54:02.642579+00 f t vet_asked Veterinario asignado: Palladino Martín 1754 1583 +9320 2025-11-25 18:54:03.385561+00 2025-11-25 18:54:03.385574+00 f t vet_accepted 1754 1583 +9321 2025-11-25 18:54:03.403869+00 2025-11-25 18:54:03.403883+00 f t in_progress_pay 1754 1583 +9322 2025-11-25 18:55:49.426042+00 2025-11-25 18:55:49.426048+00 f t Confirmado 1754 \N +9323 2025-11-25 18:55:49.388205+00 2025-11-25 18:55:49.388215+00 f t payed 1754 1583 +9324 2025-11-25 18:58:18.54279+00 2025-11-25 18:58:18.542798+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 09:00:00 1787 1208 +9325 2025-11-25 19:01:15.748696+00 2025-11-25 19:01:15.748703+00 f t Confirmado 1785 \N +9326 2025-11-25 19:01:15.706657+00 2025-11-25 19:01:15.706668+00 f t payed 1785 1583 +9327 2025-11-25 19:06:44.888111+00 2025-11-25 19:06:44.888122+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 20:30:00 1764 1583 +9328 2025-11-25 19:12:27.078313+00 2025-11-25 19:12:27.078324+00 f t vet_accepted 1787 134 +9329 2025-11-25 19:12:27.090413+00 2025-11-25 19:12:27.090422+00 f t in_progress_pay 1787 134 +9330 2025-11-25 19:44:48.475942+00 2025-11-25 19:44:48.475952+00 f t pending 1788 \N +9331 2025-11-25 19:45:00.109328+00 2025-11-25 19:45:00.109337+00 f t in_progress_vet 1788 1583 +9332 2025-11-25 19:45:11.077403+00 2025-11-25 19:45:11.077411+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 20:00:00 1788 1583 +9333 2025-11-25 19:45:16.916478+00 2025-11-25 19:45:16.916486+00 f t coordinated Solicitud coordinada para 2025-11-24 a las 20:00:00 1788 1583 +9334 2025-11-25 19:45:21.970635+00 2025-11-25 19:45:21.970646+00 f t vet_asked Veterinario asignado: Palladino Martín 1788 1583 +9335 2025-11-25 19:45:22.876545+00 2025-11-25 19:45:22.876553+00 f t vet_accepted 1788 1583 +9336 2025-11-25 19:45:22.890629+00 2025-11-25 19:45:22.890639+00 f t in_progress_pay 1788 1583 +9337 2025-11-25 19:45:29.514541+00 2025-11-25 19:45:29.51455+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 22:00:00 1788 1583 +9338 2025-11-25 19:45:57.903745+00 2025-11-25 19:45:57.903751+00 f t Confirmado 1788 \N +9339 2025-11-25 19:45:57.866585+00 2025-11-25 19:45:57.866594+00 f t payed 1788 1583 +9340 2025-11-25 20:01:29.215244+00 2025-11-25 20:01:29.215253+00 f t rejected D-Averiguando / Desconocido 1787 1208 +9341 2025-11-25 20:08:42.22046+00 2025-11-25 20:08:42.220467+00 f t pending 1789 \N +9342 2025-11-25 20:09:01.367609+00 2025-11-25 20:09:01.367623+00 f t in_progress_vet 1789 1583 +9343 2025-11-25 20:13:27.874373+00 2025-11-25 20:13:27.87438+00 f t pending 1790 \N +9344 2025-11-25 20:14:39.668469+00 2025-11-25 20:14:39.668477+00 f t in_progress_vet 1790 1583 +9345 2025-11-25 20:14:50.476136+00 2025-11-25 20:14:50.476144+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 19:00:00 1790 1583 +9346 2025-11-25 20:16:29.212788+00 2025-11-25 20:16:29.212797+00 f t vet_accepted 1790 \N +9347 2025-11-25 20:16:29.22655+00 2025-11-25 20:16:29.22656+00 f t in_progress_pay 1790 \N +9348 2025-11-25 20:18:35.741917+00 2025-11-25 20:18:35.741923+00 f t pending 1791 \N +9349 2025-11-25 20:18:48.284129+00 2025-11-25 20:18:48.284139+00 f t in_progress_vet 1791 1583 +9350 2025-11-25 20:18:55.660366+00 2025-11-25 20:18:55.660374+00 f t coordinated Solicitud coordinada para 2025-11-28 a las 11:00:00 1791 1583 +9351 2025-11-25 20:19:16.596187+00 2025-11-25 20:19:16.596196+00 f t payed 1791 1583 +9352 2025-11-25 20:26:13.380618+00 2025-11-25 20:26:13.380626+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 20:30:00 1764 1583 +9353 2025-11-25 20:26:21.866452+00 2025-11-25 20:26:21.866462+00 f t coordinated Solicitud coordinada para 2025-11-27 a las 20:30:00 1764 1583 +9354 2025-11-25 20:26:28.132406+00 2025-11-25 20:26:28.132414+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 20:30:00 1764 1583 +9355 2025-11-25 20:26:34.924066+00 2025-11-25 20:26:34.924076+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 15:00:00 1764 1583 +9356 2025-11-25 20:26:44.80096+00 2025-11-25 20:26:44.800967+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 11:00:00 1764 1583 +9357 2025-11-25 20:27:08.381453+00 2025-11-25 20:27:08.381461+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 19:00:00 1764 1583 +9358 2025-11-25 20:27:20.00994+00 2025-11-25 20:27:20.009948+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 20:30:00 1764 1583 +9359 2025-11-25 20:50:32.540381+00 2025-11-25 20:50:32.540391+00 f t pending 1792 \N +9360 2025-11-25 20:50:43.845211+00 2025-11-25 20:50:43.845219+00 f t in_progress_vet 1792 1583 +9361 2025-11-25 20:50:46.218132+00 2025-11-25 20:50:46.218144+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 09:00:00 1792 1583 +9362 2025-11-25 20:51:03.697086+00 2025-11-25 20:51:03.697096+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 13:00:00 1792 1583 +9363 2025-11-25 20:59:56.202163+00 2025-11-25 20:59:56.202171+00 f t rejected D-Sin seguimiento 1792 1583 +9364 2025-11-25 21:00:09.064364+00 2025-11-25 21:00:09.064379+00 f t pending 1793 \N +9365 2025-11-25 21:00:28.000936+00 2025-11-25 21:00:28.000948+00 f t in_progress_vet 1793 1583 +9366 2025-11-25 21:00:33.379593+00 2025-11-25 21:00:33.379602+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 13:00:00 1793 1583 +9367 2025-11-25 21:00:37.403658+00 2025-11-25 21:00:37.403666+00 f t vet_asked Veterinario asignado: Tisato Tedesco Nicolás 1793 1583 +9368 2025-11-25 21:00:38.00867+00 2025-11-25 21:00:38.008679+00 f t vet_accepted 1793 1583 +9369 2025-11-25 21:00:38.022456+00 2025-11-25 21:00:38.022465+00 f t in_progress_pay 1793 1583 +9370 2025-11-25 21:02:08.257658+00 2025-11-25 21:02:08.25767+00 f t rejected D-Averiguando / Desconocido 1786 1583 +9371 2025-11-25 21:02:28.678901+00 2025-11-25 21:02:28.678909+00 f t rejected D-Averiguando / Desconocido 1789 1583 +9372 2025-11-25 21:08:30.499932+00 2025-11-25 21:08:30.499942+00 f t Confirmado 1793 \N +9373 2025-11-25 21:08:30.449553+00 2025-11-25 21:08:30.449563+00 f t payed 1793 1583 +9374 2025-11-25 21:12:41.375894+00 2025-11-25 21:12:41.375903+00 f t rejected D-Abandono Bot 1790 1583 +9375 2025-11-25 21:19:44.745341+00 2025-11-25 21:19:44.745349+00 f t pending 1794 \N +9376 2025-11-25 21:19:57.188737+00 2025-11-25 21:19:57.188745+00 f t in_progress_vet 1794 1583 +9377 2025-11-25 21:20:02.165697+00 2025-11-25 21:20:02.165709+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 16:00:00 1794 1583 +9378 2025-11-25 21:20:15.988314+00 2025-11-25 21:20:15.988322+00 f t payed 1794 1583 +9379 2025-11-25 21:20:58.696912+00 2025-11-25 21:20:58.696923+00 f t Confirmado 1782 \N +9380 2025-11-25 21:20:58.647256+00 2025-11-25 21:20:58.647268+00 f t payed 1782 1208 +9381 2025-11-25 21:21:44.02514+00 2025-11-25 21:21:44.025149+00 f t pending 1795 \N +9382 2025-11-25 21:21:46.549+00 2025-11-25 21:21:46.549007+00 f t pending 1796 \N +9383 2025-11-25 21:21:58.90731+00 2025-11-25 21:21:58.907318+00 f t in_progress_vet 1796 1583 +9384 2025-11-25 21:22:04.166458+00 2025-11-25 21:22:04.166466+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 11:00:00 1796 1583 +9385 2025-11-25 21:22:13.281824+00 2025-11-25 21:22:13.281835+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 13:00:00 1796 1583 +9386 2025-11-25 21:22:22.007978+00 2025-11-25 21:22:22.007986+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 19:30:00 1796 1583 +9387 2025-11-25 21:23:28.901006+00 2025-11-25 21:23:28.901015+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 11:00:00 1796 1583 +9388 2025-11-25 21:23:36.585949+00 2025-11-25 21:23:36.585957+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 19:00:00 1796 1583 +9389 2025-11-25 21:23:39.974473+00 2025-11-25 21:23:39.974481+00 f t vet_asked Veterinario asignado: Martinez Mara Leila 1796 1583 +9390 2025-11-25 21:23:40.736265+00 2025-11-25 21:23:40.736275+00 f t vet_accepted 1796 1583 +9391 2025-11-25 21:23:40.750022+00 2025-11-25 21:23:40.750031+00 f t in_progress_pay 1796 1583 +9392 2025-11-25 21:23:46.314268+00 2025-11-25 21:23:46.314276+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 11:00:00 1796 1583 +9393 2025-11-25 21:24:04.45144+00 2025-11-25 21:24:04.451447+00 f t Confirmado 1796 \N +9394 2025-11-25 21:24:04.409671+00 2025-11-25 21:24:04.409681+00 f t payed 1796 1583 +9395 2025-11-25 21:24:13.771719+00 2025-11-25 21:24:13.771727+00 f t rejected D-Averiguando / Desconocido 1795 1583 +9396 2025-11-25 21:29:32.773516+00 2025-11-25 21:29:32.773525+00 f t vet_accepted 1790 \N +9397 2025-11-25 21:29:32.786682+00 2025-11-25 21:29:32.786691+00 f t in_progress_pay 1790 \N +9398 2025-11-25 21:51:35.551607+00 2025-11-25 21:51:35.551618+00 f t vet_asked Veterinario asignado: Palmieri Ursula 1764 1583 +9399 2025-11-25 21:51:36.239023+00 2025-11-25 21:51:36.239032+00 f t vet_accepted 1764 1583 +9400 2025-11-25 21:51:36.251516+00 2025-11-25 21:51:36.251524+00 f t in_progress_pay 1764 1583 +9401 2025-11-25 22:22:15.005486+00 2025-11-25 22:22:15.005497+00 f t pending 1797 \N +9402 2025-11-25 22:52:30.390168+00 2025-11-25 22:52:30.390176+00 f t pending 1798 \N +9403 2025-11-25 23:17:58.007184+00 2025-11-25 23:17:58.007192+00 f t pending 1799 \N +9404 2025-11-25 23:19:29.143855+00 2025-11-25 23:19:29.143866+00 f t pending 1800 \N +9405 2025-11-25 23:23:54.248717+00 2025-11-25 23:23:54.248727+00 f t in_progress_vet 1797 113 +9406 2025-11-25 23:24:12.461324+00 2025-11-25 23:24:12.461333+00 f t coordinated Solicitud coordinada para 2025-11-27 a las 18:00:00 1797 113 +9407 2025-11-25 23:29:24.364317+00 2025-11-25 23:29:24.364327+00 f t in_progress_vet 1798 113 +9408 2025-11-25 23:29:39.53379+00 2025-11-25 23:29:39.5338+00 f t coordinated Solicitud coordinada para 2025-11-26 a las 16:00:00 1798 113 +9409 2025-11-25 23:29:55.075171+00 2025-11-25 23:29:55.07518+00 f t in_progress_vet 1799 113 +9410 2025-11-25 23:30:05.663915+00 2025-11-25 23:30:05.663928+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 21:00:00 1799 113 +9411 2025-11-25 23:30:19.020429+00 2025-11-25 23:30:19.02044+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 19:30:00 1799 113 +9412 2025-11-25 23:30:34.62167+00 2025-11-25 23:30:34.621681+00 f t coordinated Solicitud coordinada para 2025-11-25 a las 14:30:00 1799 113 +9413 2025-11-25 23:35:41.935137+00 2025-11-25 23:35:41.935146+00 f t vet_accepted 1799 \N +9414 2025-11-25 23:35:41.948201+00 2025-11-25 23:35:41.94821+00 f t in_progress_pay 1799 \N +9415 2025-11-25 23:47:59.698237+00 2025-11-25 23:47:59.698248+00 f t pending 1801 \N +9416 2025-11-26 00:09:33.668781+00 2025-11-26 00:09:33.668794+00 f t in_progress_vet 1801 113 +9417 2025-11-26 00:09:48.339219+00 2025-11-26 00:09:48.33923+00 f t coordinated Solicitud coordinada para 2025-12-03 a las 16:00:00 1801 113 +9418 2025-11-26 00:15:04.505374+00 2025-11-26 00:15:04.505387+00 f t payed 1797 113 +9419 2025-11-26 00:20:54.436909+00 2025-11-26 00:20:54.436915+00 f t pending 1802 \N +9420 2025-11-26 00:21:07.114784+00 2025-11-26 00:21:07.114795+00 f t in_progress_vet 1802 113 +9421 2025-11-26 00:21:10.032264+00 2025-11-26 00:21:10.032272+00 f t vet_accepted 1799 \N +9422 2025-11-26 00:21:10.045436+00 2025-11-26 00:21:10.045448+00 f t in_progress_pay 1799 \N +9423 2025-11-26 00:21:16.080437+00 2025-11-26 00:21:16.080445+00 f t coordinated Solicitud coordinada para 2025-11-29 a las 16:00:00 1802 113 +9424 2025-11-26 00:21:22.32643+00 2025-11-26 00:21:22.326439+00 f t vet_asked Veterinario asignado: Ponce Lisandro 1802 113 +9425 2025-11-26 00:21:23.400439+00 2025-11-26 00:21:23.400451+00 f t vet_accepted 1802 113 +9426 2025-11-26 00:21:23.416731+00 2025-11-26 00:21:23.416743+00 f t in_progress_pay 1802 113 +9427 2025-11-26 00:23:37.703017+00 2025-11-26 00:23:37.703026+00 f t Confirmado 1802 \N +9428 2025-11-26 00:23:37.66245+00 2025-11-26 00:23:37.662459+00 f t payed 1802 113 +9429 2025-11-26 02:29:20.642983+00 2025-11-26 02:29:20.642992+00 f t vet_accepted 1799 \N +9430 2025-11-26 02:29:20.656061+00 2025-11-26 02:29:20.65607+00 f t in_progress_pay 1799 \N +\. + + +-- +-- Data for Name: solicitudes_veterinarianasked; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.solicitudes_veterinarianasked (id, date_asked, date_answered, accepted, service_request_id, veterinarian_id) FROM stdin; +137 2025-09-19 16:46:40.562435+00 2025-09-19 17:02:17.143563+00 t 582 92 +139 2025-09-19 18:54:48.28882+00 2025-09-19 18:57:34.642872+00 t 588 1 +197 2025-09-23 19:52:15.044932+00 \N f 652 1 +199 2025-09-23 19:59:21.47491+00 \N f 654 100 +201 2025-09-24 00:06:54.881873+00 \N f 657 14 +203 2025-09-24 00:06:59.822779+00 \N f 657 92 +205 2025-09-24 00:21:25.827909+00 \N f 659 75 +207 2025-09-24 00:43:18.856978+00 \N f 661 92 +209 2025-09-24 00:55:25.362868+00 \N f 662 95 +211 2025-09-24 14:40:28.155733+00 2025-09-24 15:54:01.471504+00 t 664 92 +213 2025-09-24 16:54:28.804868+00 \N f 667 85 +215 2025-09-24 17:25:10.707765+00 \N f 669 90 +217 2025-09-24 17:53:26.001603+00 \N f 671 100 +219 2025-09-24 17:59:16.981528+00 \N f 673 100 +221 2025-09-24 19:33:48.806626+00 \N f 676 1 +223 2025-09-24 21:18:05.122609+00 \N f 678 72 +225 2025-09-24 21:18:11.189542+00 \N f 678 80 +227 2025-09-25 13:08:12.863264+00 \N f 680 92 +229 2025-09-25 14:18:40.741201+00 \N f 684 75 +231 2025-09-25 14:56:31.911399+00 \N f 685 100 +233 2025-09-25 15:54:34.216573+00 \N f 688 112 +235 2025-09-25 16:21:28.86079+00 \N f 691 90 +237 2025-09-25 16:35:59.793683+00 \N f 693 92 +239 2025-09-25 17:42:34.705485+00 \N f 679 92 +241 2025-09-25 17:57:59.320871+00 \N f 696 2 +189 2025-09-23 13:38:50.097276+00 2025-09-23 13:57:14.985204+00 t 642 70 +243 2025-09-25 19:04:11.461694+00 \N f 690 85 +245 2025-09-25 21:52:31.165774+00 \N f 698 84 +247 2025-09-25 23:47:47.528506+00 \N f 700 68 +249 2025-09-26 13:56:58.364127+00 \N f 703 70 +251 2025-09-26 14:47:54.180154+00 \N f 706 1 +253 2025-09-26 15:46:58.388071+00 \N f 708 113 +255 2025-09-26 16:41:40.454615+00 \N f 709 70 +257 2025-09-26 18:08:38.216117+00 \N f 711 114 +259 2025-09-26 19:40:01.532343+00 \N f 713 82 +261 2025-09-26 23:52:20.566326+00 \N f 717 68 +263 2025-09-27 00:32:32.096806+00 \N f 718 14 +265 2025-09-27 16:58:17.909593+00 \N f 721 112 +267 2025-09-27 17:04:08.597044+00 \N f 723 112 +269 2025-09-27 17:07:22.457208+00 \N f 725 112 +271 2025-09-27 17:24:49.8039+00 \N f 720 114 +277 2025-09-28 15:34:44.292409+00 \N f 731 92 +279 2025-09-28 15:34:55.394019+00 \N f 731 70 +281 2025-09-28 17:03:43.028271+00 \N f 732 68 +283 2025-09-28 17:06:29.477933+00 \N f 732 101 +285 2025-09-28 18:02:30.240188+00 \N f 733 21 +287 2025-09-28 18:02:37.296299+00 \N f 733 94 +275 2025-09-28 12:18:09.295444+00 2025-09-28 18:53:42.611746+00 t 730 70 +273 2025-09-28 12:17:55.10247+00 2025-09-28 18:53:42.611746+00 f 730 92 +289 2025-09-28 19:17:21.287097+00 \N f 734 80 +291 2025-09-29 13:02:47.07975+00 \N f 739 68 +293 2025-09-29 14:41:37.96412+00 \N f 736 113 +299 2025-09-30 12:56:40.91991+00 \N f 748 82 +303 2025-09-30 14:10:24.377628+00 2025-09-30 14:18:50.882295+00 f 752 92 +295 2025-09-29 23:28:02.7181+00 2025-09-30 14:30:45.40967+00 t 744 70 +301 2025-09-30 13:35:24.03068+00 2025-09-30 14:43:18.817271+00 t 750 1 +307 2025-09-30 15:24:34.377637+00 \N f 754 85 +305 2025-09-30 14:23:58.579259+00 2025-09-30 15:46:47.36157+00 f 749 80 +309 2025-09-30 16:02:38.306089+00 2025-09-30 16:11:06.533834+00 f 756 14 +311 2025-09-30 16:02:48.481256+00 2025-09-30 16:11:06.533834+00 f 756 88 +313 2025-09-30 16:24:39.276878+00 \N f 757 68 +315 2025-09-30 16:36:40.028354+00 \N f 759 90 +317 2025-09-30 17:08:57.275046+00 \N f 761 82 +319 2025-09-30 17:54:41.5586+00 \N f 762 88 +321 2025-09-30 17:54:55.533258+00 \N f 762 92 +323 2025-09-30 17:55:08.993222+00 \N f 762 91 +325 2025-09-30 19:49:32.617712+00 \N f 764 91 +327 2025-09-30 23:14:41.987612+00 \N f 767 2 +329 2025-09-30 23:14:47.563+00 \N f 767 9 +331 2025-09-30 23:14:54.060111+00 \N f 767 70 +333 2025-10-01 00:07:57.489848+00 \N f 770 114 +343 2025-10-01 13:19:52.601312+00 2025-10-01 13:22:56.773708+00 t 772 70 +339 2025-10-01 13:19:28.57371+00 2025-10-01 13:22:56.773708+00 f 772 89 +341 2025-10-01 13:19:37.809287+00 2025-10-01 13:22:56.773708+00 f 772 92 +335 2025-10-01 13:08:42.201757+00 2025-10-01 13:23:20.09484+00 t 771 88 +337 2025-10-01 13:08:59.542711+00 2025-10-01 13:23:20.09484+00 f 771 92 +345 2025-10-01 13:33:46.362197+00 2025-10-01 13:34:57.47132+00 f 773 92 +347 2025-10-01 13:33:55.496233+00 2025-10-01 13:34:57.47132+00 f 773 1 +349 2025-10-01 15:33:21.549839+00 2025-10-01 15:38:44.744303+00 t 774 80 +353 2025-10-01 15:39:49.144285+00 \N f 777 1 +355 2025-10-01 15:46:35.997366+00 2025-10-01 15:48:55.401557+00 t 776 94 +351 2025-10-01 15:37:31.203441+00 2025-10-01 15:51:20.567884+00 f 777 94 +359 2025-10-01 16:12:47.087524+00 2025-10-01 16:27:28.965889+00 t 778 88 +361 2025-10-01 16:13:05.711835+00 2025-10-01 16:27:28.965889+00 f 778 94 +363 2025-10-01 16:13:45.259508+00 2025-10-01 16:27:28.965889+00 f 778 9 +357 2025-10-01 16:12:28.66983+00 2025-10-01 16:27:28.965889+00 f 778 113 +365 2025-10-01 17:33:58.34561+00 \N f 781 89 +369 2025-10-01 19:11:37.385383+00 2025-10-01 19:57:02.22464+00 f 783 91 +373 2025-10-01 21:49:54.716977+00 \N f 785 100 +377 2025-10-02 13:05:31.471443+00 2025-10-02 13:40:46.202813+00 t 787 70 +375 2025-10-02 13:05:00.89089+00 2025-10-02 13:40:46.202813+00 f 787 88 +379 2025-10-02 13:37:23.03237+00 2025-10-02 13:50:53.405837+00 f 789 89 +381 2025-10-02 13:37:58.28308+00 2025-10-02 13:50:53.405837+00 f 789 9 +383 2025-10-02 13:38:19.386147+00 2025-10-02 13:50:53.405837+00 f 789 92 +385 2025-10-02 13:38:30.105041+00 2025-10-02 13:50:53.405837+00 f 789 80 +387 2025-10-02 13:59:05.999463+00 \N f 790 88 +389 2025-10-02 14:03:19.579424+00 \N f 791 100 +391 2025-10-02 14:06:51.144033+00 \N f 793 88 +393 2025-10-02 14:07:10.550371+00 \N f 793 92 +397 2025-10-02 14:07:30.381189+00 \N f 793 91 +395 2025-10-02 14:07:17.351213+00 2025-10-02 14:28:14.468206+00 f 793 80 +401 2025-10-02 16:41:47.060145+00 \N f 796 1 +399 2025-10-02 15:41:20.797201+00 2025-10-02 15:51:11.280235+00 f 794 94 +403 2025-10-02 16:42:07.066257+00 \N f 796 2 +405 2025-10-02 17:27:53.889219+00 2025-10-02 17:46:18.567333+00 t 798 70 +406 2025-10-02 17:32:33.666186+00 2025-10-02 18:07:47.508482+00 t 799 91 +1429 2025-10-25 17:19:26.010557+00 2025-10-31 18:32:20.623426+00 f 1206 90 +408 2025-10-02 18:49:27.464325+00 2025-10-02 18:59:49.890334+00 f 801 68 +371 2025-10-01 19:11:56.497163+00 2025-10-02 19:01:17.089079+00 f 783 113 +367 2025-10-01 19:11:30.447533+00 2025-10-02 19:20:54.449926+00 f 783 79 +297 2025-09-30 00:02:32.860399+00 2025-10-05 23:07:00.853558+00 f 746 71 +198 2025-09-23 19:55:56.515599+00 \N f 653 1 +200 2025-09-23 20:41:26.116419+00 \N f 656 82 +142 2025-09-19 20:42:10.29175+00 2025-09-19 20:45:45.893631+00 t 591 70 +202 2025-09-24 00:06:56.403715+00 \N f 657 2 +204 2025-09-24 00:15:23.192022+00 \N f 658 88 +206 2025-09-24 00:32:43.441547+00 \N f 660 113 +208 2025-09-24 00:48:54.637851+00 \N f 657 1 +210 2025-09-24 14:35:17.14584+00 \N f 665 100 +212 2025-09-24 15:01:04.395933+00 \N f 666 89 +214 2025-09-24 17:18:30.899465+00 \N f 668 95 +216 2025-09-24 17:35:15.16737+00 \N f 670 103 +158 2025-09-21 19:27:50.467756+00 2025-09-21 20:38:32.844257+00 t 611 92 +218 2025-09-24 17:57:20.767049+00 \N f 672 100 +220 2025-09-24 18:26:34.6112+00 \N f 674 80 +8 2025-04-20 14:44:16.322488+00 2025-09-19 15:28:43.484473+00 f 4 89 +10 2025-04-20 14:44:48.420699+00 2025-09-19 15:28:43.484473+00 f 4 91 +11 2025-04-20 16:40:48.373954+00 2025-09-19 15:28:43.484473+00 f 4 94 +12 2025-04-20 16:40:51.422326+00 2025-09-19 15:28:43.484473+00 f 4 70 +9 2025-04-20 14:44:26.215015+00 2025-09-19 15:28:43.484473+00 f 4 1 +222 2025-09-24 19:52:06.004985+00 \N f 677 80 +224 2025-09-24 21:18:09.775964+00 \N f 678 70 +226 2025-09-24 21:18:15.427946+00 \N f 678 1 +228 2025-09-25 13:35:33.820809+00 \N f 682 113 +230 2025-09-25 14:31:42.341837+00 \N f 683 88 +232 2025-09-25 15:20:26.037075+00 \N f 687 88 +234 2025-09-25 16:00:44.715571+00 \N f 689 100 +236 2025-09-25 16:27:39.922179+00 \N f 692 98 +238 2025-09-25 17:33:15.453167+00 \N f 694 92 +240 2025-09-25 17:44:45.102586+00 \N f 695 92 +242 2025-09-25 17:58:00.588644+00 \N f 696 70 +244 2025-09-25 19:41:29.185561+00 \N f 697 1 +246 2025-09-25 22:01:00.973913+00 \N f 699 84 +248 2025-09-26 13:56:53.525765+00 \N f 703 92 +250 2025-09-26 14:29:06.737859+00 \N f 703 113 +252 2025-09-26 15:18:24.180969+00 \N f 707 84 +254 2025-09-26 16:35:22.99478+00 \N f 705 80 +256 2025-09-26 17:15:06.590307+00 \N f 710 1 +258 2025-09-26 18:24:52.52737+00 \N f 712 92 +260 2025-09-26 22:32:39.88419+00 \N f 715 92 +262 2025-09-27 00:19:29.058777+00 \N f 716 80 +264 2025-09-27 12:43:11.315302+00 \N f 719 113 +266 2025-09-27 17:02:00.784571+00 \N f 722 112 +268 2025-09-27 17:06:30.084445+00 \N f 724 112 +270 2025-09-27 17:08:44.842327+00 \N f 726 112 +278 2025-09-28 15:34:49.09401+00 \N f 731 70 +280 2025-09-28 15:35:00.684199+00 \N f 731 1 +282 2025-09-28 17:03:48.824638+00 \N f 732 114 +284 2025-09-28 17:06:38.397151+00 \N f 732 91 +286 2025-09-28 18:02:33.658881+00 \N f 733 94 +272 2025-09-28 12:17:43.321815+00 2025-09-28 18:53:42.611746+00 f 730 89 +274 2025-09-28 12:18:02.656155+00 2025-09-28 18:53:42.611746+00 f 730 68 +276 2025-09-28 12:18:15.007241+00 2025-09-28 18:53:42.611746+00 f 730 80 +288 2025-09-28 19:03:26.628636+00 \N f 729 94 +290 2025-09-29 12:51:36.227409+00 \N f 738 115 +292 2025-09-29 14:27:15.429372+00 \N f 742 89 +294 2025-09-29 23:20:23.859715+00 \N f 743 90 +296 2025-09-29 23:38:04.944737+00 \N f 745 82 +300 2025-09-30 13:28:49.087419+00 2025-09-30 14:04:21.506979+00 t 751 68 +302 2025-09-30 14:10:22.824485+00 2025-09-30 14:14:37.294277+00 t 752 113 +348 2025-10-01 15:28:47.326308+00 2025-10-01 15:28:57.571022+00 t 775 80 +350 2025-10-01 15:37:25.562956+00 \N f 777 88 +304 2025-09-30 14:10:25.163507+00 2025-09-30 14:18:50.882295+00 f 752 70 +308 2025-09-30 15:27:23.191697+00 \N f 755 100 +306 2025-09-30 15:07:05.772826+00 2025-09-30 15:46:47.36157+00 t 749 92 +312 2025-09-30 16:02:53.8774+00 2025-09-30 16:11:06.533834+00 t 756 1 +310 2025-09-30 16:02:40.344533+00 2025-09-30 16:11:06.533834+00 f 756 2 +314 2025-09-30 16:35:33.071943+00 2025-09-30 16:36:11.279438+00 t 753 104 +316 2025-09-30 16:42:19.3481+00 \N f 760 100 +318 2025-09-30 17:27:33.091074+00 \N f 758 82 +320 2025-09-30 17:54:50.927566+00 \N f 762 80 +322 2025-09-30 17:54:59.793025+00 \N f 762 70 +298 2025-09-30 00:11:30.444643+00 2025-09-30 17:57:54.448634+00 t 747 88 +324 2025-09-30 17:59:48.0949+00 2025-09-30 18:02:52.005825+00 t 763 88 +326 2025-09-30 20:55:59.425989+00 \N f 766 1 +328 2025-09-30 23:14:46.660242+00 \N f 767 97 +330 2025-09-30 23:14:52.822101+00 \N f 767 92 +332 2025-09-30 23:57:10.176466+00 \N f 769 98 +352 2025-10-01 15:37:36.108495+00 \N f 777 74 +340 2025-10-01 13:19:33.484569+00 2025-10-01 13:22:56.773708+00 f 772 88 +342 2025-10-01 13:19:46.206308+00 2025-10-01 13:22:56.773708+00 f 772 68 +344 2025-10-01 13:20:01.094685+00 2025-10-01 13:22:56.773708+00 f 772 91 +334 2025-10-01 13:08:41.192715+00 2025-10-01 13:23:20.09484+00 f 771 14 +336 2025-10-01 13:08:50.235228+00 2025-10-01 13:23:20.09484+00 f 771 94 +338 2025-10-01 13:09:08.504897+00 2025-10-01 13:23:20.09484+00 f 771 80 +346 2025-10-01 13:33:48.449431+00 2025-10-01 13:34:57.47132+00 t 773 70 +354 2025-10-01 15:46:34.332742+00 2025-10-01 15:48:55.401557+00 f 776 21 +356 2025-10-01 16:10:45.180561+00 \N f 779 84 +372 2025-10-01 19:39:53.842754+00 \N f 784 70 +358 2025-10-01 16:12:35.277131+00 2025-10-01 16:27:28.965889+00 f 778 89 +362 2025-10-01 16:13:11.691088+00 2025-10-01 16:27:28.965889+00 f 778 68 +364 2025-10-01 16:15:10.519771+00 2025-10-01 16:27:28.965889+00 f 778 91 +360 2025-10-01 16:12:53.470441+00 2025-10-01 16:27:28.965889+00 f 778 79 +366 2025-10-01 18:12:35.834702+00 2025-10-01 18:13:42.274466+00 t 782 92 +376 2025-10-02 13:05:15.108623+00 2025-10-02 13:40:46.202813+00 f 787 80 +368 2025-10-01 19:11:36.536378+00 2025-10-02 13:41:16.908071+00 f 783 70 +378 2025-10-02 13:37:21.748007+00 2025-10-02 13:50:53.405837+00 t 789 113 +380 2025-10-02 13:37:57.734077+00 2025-10-02 13:50:53.405837+00 f 789 88 +382 2025-10-02 13:38:11.978615+00 2025-10-02 13:50:53.405837+00 f 789 94 +384 2025-10-02 13:38:21.019407+00 2025-10-02 13:50:53.405837+00 f 789 68 +386 2025-10-02 13:38:39.141393+00 2025-10-02 13:50:53.405837+00 f 789 91 +388 2025-10-02 14:02:52.600305+00 \N f 791 84 +390 2025-10-02 14:06:46.075425+00 \N f 793 89 +392 2025-10-02 14:06:57.243522+00 \N f 793 68 +396 2025-10-02 14:07:22.477436+00 \N f 793 1 +394 2025-10-02 14:07:15.201724+00 2025-10-02 14:36:47.954549+00 f 793 70 +398 2025-10-02 15:41:19.999004+00 2025-10-02 15:51:11.280235+00 t 794 21 +400 2025-10-02 16:07:51.892997+00 \N f 795 100 +402 2025-10-02 16:41:47.931206+00 \N f 796 70 +404 2025-10-02 16:51:21.819741+00 2025-10-02 17:02:20.793398+00 t 797 98 +374 2025-10-01 23:08:38.603951+00 2025-10-03 15:05:10.455717+00 t 786 68 +370 2025-10-01 19:11:44.488773+00 2025-10-03 15:05:37.157828+00 f 783 68 +411 2025-10-02 18:58:43.003071+00 2025-10-02 18:59:49.890334+00 t 801 88 +409 2025-10-02 18:49:37.437875+00 2025-10-02 18:59:49.890334+00 f 801 91 +410 2025-10-02 18:58:42.255095+00 2025-10-02 18:59:49.890334+00 f 801 89 +407 2025-10-02 18:49:26.891785+00 2025-10-02 18:59:49.890334+00 f 801 72 +412 2025-10-02 18:59:53.034284+00 2025-10-02 19:00:56.732847+00 t 802 113 +413 2025-10-02 18:59:53.729904+00 2025-10-02 19:00:56.732847+00 f 802 89 +414 2025-10-02 18:59:58.91674+00 2025-10-02 19:00:56.732847+00 f 802 88 +415 2025-10-02 19:00:00.775822+00 2025-10-02 19:00:56.732847+00 f 802 79 +416 2025-10-02 19:00:12.277198+00 2025-10-02 19:00:56.732847+00 f 802 68 +417 2025-10-02 19:12:35.603194+00 2025-10-02 19:19:20.429407+00 t 788 79 +418 2025-10-02 19:38:08.746211+00 \N f 803 67 +419 2025-10-02 19:42:49.281895+00 \N f 804 67 +420 2025-10-02 19:44:36.051548+00 \N f 805 67 +421 2025-10-02 19:46:09.47555+00 \N f 806 67 +422 2025-10-02 20:11:00.961+00 \N f 807 1 +424 2025-10-02 20:11:15.984451+00 \N f 807 94 +423 2025-10-02 20:11:04.924125+00 2025-10-02 20:11:52.549203+00 f 807 91 +425 2025-10-02 20:38:14.806973+00 2025-10-02 20:41:32.12798+00 t 808 21 +479 2025-10-03 21:07:55.927472+00 2025-10-03 21:10:59.146375+00 f 833 2 +481 2025-10-03 21:08:04.635063+00 2025-10-03 21:10:59.146375+00 f 833 88 +428 2025-10-02 21:05:32.701266+00 \N f 809 82 +429 2025-10-02 23:37:35.502601+00 2025-10-02 23:38:33.721357+00 t 811 88 +430 2025-10-02 23:37:40.802297+00 2025-10-02 23:38:33.721357+00 f 811 78 +431 2025-10-02 23:37:41.925576+00 2025-10-02 23:38:33.721357+00 f 811 89 +432 2025-10-02 23:37:48.709677+00 2025-10-02 23:38:33.721357+00 f 811 9 +433 2025-10-02 23:37:58.577197+00 2025-10-02 23:38:33.721357+00 f 811 68 +434 2025-10-02 23:41:50.052673+00 \N f 812 113 +435 2025-10-02 23:41:52.093217+00 \N f 812 79 +436 2025-10-03 12:14:13.08063+00 \N f 800 100 +437 2025-10-03 12:40:42.238857+00 \N f 810 92 +438 2025-10-03 13:12:14.489136+00 \N f 818 71 +439 2025-10-03 13:12:18.809574+00 \N f 818 79 +440 2025-10-03 13:12:28.150072+00 \N f 818 72 +441 2025-10-03 13:12:37.657572+00 \N f 818 114 +442 2025-10-03 13:23:16.578152+00 \N f 816 89 +443 2025-10-03 13:23:17.23353+00 \N f 816 88 +444 2025-10-03 13:23:22.18558+00 \N f 816 79 +445 2025-10-03 13:23:29.745132+00 \N f 816 1 +446 2025-10-03 13:42:09.862993+00 \N f 815 88 +447 2025-10-03 13:42:10.807499+00 \N f 815 2 +448 2025-10-03 13:42:11.62741+00 \N f 815 14 +451 2025-10-03 13:52:02.036397+00 \N f 819 88 +452 2025-10-03 14:08:00.302174+00 \N f 820 84 +426 2025-10-02 20:38:22.390457+00 2025-10-03 14:31:33.511538+00 f 808 94 +427 2025-10-02 20:38:33.885402+00 2025-10-03 14:31:33.511538+00 f 808 1 +453 2025-10-03 14:33:27.86108+00 \N f 822 100 +449 2025-10-03 13:43:33.163482+00 2025-10-03 14:36:46.845215+00 f 815 70 +450 2025-10-03 13:43:33.717441+00 2025-10-03 14:40:17.235514+00 f 815 80 +454 2025-10-03 14:42:08.311993+00 \N f 815 94 +455 2025-10-03 14:42:10.064739+00 \N f 815 92 +456 2025-10-03 14:42:14.037118+00 \N f 815 1 +457 2025-10-03 14:42:15.708882+00 \N f 815 101 +458 2025-10-03 15:33:25.070531+00 \N f 823 66 +459 2025-10-03 15:33:25.554402+00 \N f 823 106 +460 2025-10-03 15:33:26.035188+00 \N f 823 83 +461 2025-10-03 15:37:23.8751+00 \N f 824 82 +462 2025-10-03 16:01:35.091784+00 \N f 825 88 +463 2025-10-03 16:01:36.521322+00 \N f 825 2 +465 2025-10-03 16:01:45.668679+00 \N f 825 1 +466 2025-10-03 16:01:46.041769+00 \N f 825 74 +467 2025-10-03 16:27:33.497552+00 \N f 827 21 +468 2025-10-03 16:27:34.554089+00 \N f 827 94 +464 2025-10-03 16:01:40.433766+00 2025-10-03 16:57:43.792934+00 f 825 94 +469 2025-10-03 17:25:34.410173+00 \N f 821 5 +471 2025-10-03 17:43:29.604627+00 2025-10-03 17:44:02.8251+00 t 828 88 +470 2025-10-03 17:43:27.725773+00 2025-10-03 17:44:02.8251+00 f 828 89 +472 2025-10-03 17:43:33.601615+00 2025-10-03 17:44:02.8251+00 f 828 68 +473 2025-10-03 17:43:37.645704+00 2025-10-03 17:44:02.8251+00 f 828 114 +474 2025-10-03 18:00:26.483329+00 \N f 823 112 +475 2025-10-03 18:16:20.251477+00 \N f 826 117 +476 2025-10-03 18:59:13.358021+00 \N f 829 82 +477 2025-10-03 19:24:42.728722+00 \N f 830 100 +478 2025-10-03 20:45:04.592063+00 2025-10-03 20:49:15.564195+00 t 831 113 +480 2025-10-03 21:07:56.625011+00 2025-10-03 21:10:59.146375+00 t 833 89 +482 2025-10-03 21:08:05.107509+00 2025-10-03 21:10:59.146375+00 f 833 9 +483 2025-10-03 21:08:06.688048+00 2025-10-03 21:10:59.146375+00 f 833 79 +484 2025-10-03 21:08:14.311489+00 2025-10-03 21:10:59.146375+00 f 833 92 +485 2025-10-03 21:08:15.630505+00 2025-10-03 21:10:59.146375+00 f 833 68 +486 2025-10-03 21:08:34.971951+00 2025-10-03 21:10:59.146375+00 f 833 91 +487 2025-10-03 21:48:21.564301+00 \N f 835 84 +494 2025-10-03 22:30:02.184802+00 \N f 836 90 +492 2025-10-03 21:51:56.184381+00 2025-10-03 22:37:41.354273+00 t 834 1 +488 2025-10-03 21:51:28.036335+00 2025-10-03 22:37:41.354273+00 f 834 14 +489 2025-10-03 21:51:32.88506+00 2025-10-03 22:37:41.354273+00 f 834 88 +490 2025-10-03 21:51:40.807778+00 2025-10-03 22:37:41.354273+00 f 834 94 +491 2025-10-03 21:51:46.820728+00 2025-10-03 22:37:41.354273+00 f 834 70 +493 2025-10-03 21:52:00.392493+00 2025-10-03 22:37:41.354273+00 f 834 74 +495 2025-10-04 12:39:44.334376+00 \N f 838 14 +496 2025-10-04 12:39:45.628477+00 \N f 838 88 +497 2025-10-04 12:39:52.750959+00 \N f 838 94 +498 2025-10-04 12:39:56.87677+00 \N f 838 70 +501 2025-10-04 13:03:09.890314+00 \N f 832 103 +500 2025-10-04 12:50:52.246096+00 2025-10-04 13:06:54.596573+00 t 839 68 +504 2025-10-04 14:58:14.233126+00 2025-10-04 15:01:06.144681+00 t 840 88 +502 2025-10-04 14:58:12.738487+00 2025-10-04 15:01:06.144681+00 f 840 14 +503 2025-10-04 14:58:13.637981+00 2025-10-04 15:01:06.144681+00 f 840 2 +505 2025-10-04 14:58:21.30494+00 2025-10-04 15:01:06.144681+00 f 840 79 +506 2025-10-04 14:58:25.578623+00 2025-10-04 15:01:06.144681+00 f 840 94 +507 2025-10-04 14:58:32.728425+00 2025-10-04 15:01:06.144681+00 f 840 92 +508 2025-10-04 14:58:37.96934+00 2025-10-04 15:01:06.144681+00 f 840 80 +509 2025-10-04 14:58:39.840402+00 2025-10-04 15:01:06.144681+00 f 840 1 +510 2025-10-04 14:58:47.876717+00 2025-10-04 15:01:06.144681+00 f 840 91 +499 2025-10-04 12:40:01.030744+00 2025-10-04 15:06:22.621747+00 f 838 80 +513 2025-10-04 15:47:24.669299+00 \N f 843 100 +1431 2025-10-25 18:27:09.98153+00 \N f 1209 96 +516 2025-10-04 16:13:12.043711+00 2025-10-04 17:22:48.200404+00 f 842 94 +517 2025-10-04 16:13:17.967547+00 2025-10-05 13:09:14.158158+00 f 842 92 +512 2025-10-04 15:39:20.750284+00 2025-10-05 14:11:24.319677+00 t 841 113 +511 2025-10-04 15:37:38.602908+00 2025-10-05 14:11:24.319677+00 f 841 71 +515 2025-10-04 16:13:11.846216+00 2025-10-23 10:37:12.004698+00 f 842 21 +520 2025-10-04 16:48:12.728706+00 \N f 842 2 +524 2025-10-04 17:10:45.208261+00 2025-10-04 17:17:40.079275+00 t 845 1 +521 2025-10-04 17:10:27.520471+00 2025-10-04 17:17:40.079275+00 f 845 88 +522 2025-10-04 17:10:29.126509+00 2025-10-04 17:17:40.079275+00 f 845 94 +523 2025-10-04 17:10:44.32653+00 2025-10-04 17:17:40.079275+00 f 845 80 +525 2025-10-04 17:10:45.866119+00 2025-10-04 17:17:40.079275+00 f 845 74 +519 2025-10-04 16:13:30.017325+00 2025-10-04 17:17:53.544866+00 f 842 1 +514 2025-10-04 16:06:07.54481+00 2025-10-04 17:18:48.298919+00 t 844 80 +526 2025-10-04 17:22:43.4384+00 \N f 846 100 +532 2025-10-04 19:06:07.739979+00 2025-10-04 19:06:40.368561+00 t 847 80 +527 2025-10-04 19:05:33.064026+00 2025-10-04 19:06:40.368561+00 f 847 89 +528 2025-10-04 19:05:41.950764+00 2025-10-04 19:06:40.368561+00 f 847 88 +529 2025-10-04 19:05:43.661268+00 2025-10-04 19:06:40.368561+00 f 847 9 +530 2025-10-04 19:05:50.291091+00 2025-10-04 19:06:40.368561+00 f 847 79 +531 2025-10-04 19:05:59.078503+00 2025-10-04 19:06:40.368561+00 f 847 68 +533 2025-10-04 19:06:14.226619+00 2025-10-04 19:06:40.368561+00 f 847 91 +518 2025-10-04 16:13:22.488184+00 2025-10-04 19:56:32.275231+00 f 842 70 +534 2025-10-04 20:16:26.830884+00 \N f 848 88 +535 2025-10-04 20:17:59.150452+00 \N f 849 90 +536 2025-10-04 20:18:44.520562+00 \N f 850 100 +537 2025-10-05 12:04:48.5963+00 \N f 852 89 +538 2025-10-05 12:04:57.093573+00 \N f 852 88 +539 2025-10-05 12:05:04.335309+00 \N f 852 88 +540 2025-10-05 12:05:24.536178+00 \N f 852 92 +541 2025-10-05 12:06:15.783938+00 \N f 852 68 +542 2025-10-05 12:06:21.400301+00 \N f 852 70 +543 2025-10-05 12:40:40.563169+00 \N f 853 99 +545 2025-10-05 12:45:31.528424+00 \N f 855 114 +546 2025-10-05 12:45:36.897515+00 \N f 855 1 +547 2025-10-05 12:45:41.692961+00 \N f 855 70 +550 2025-10-05 12:55:18.100733+00 2025-10-05 13:09:32.288523+00 t 854 92 +593 2025-10-06 20:08:38.393617+00 \N f 879 1 +592 2025-10-06 19:57:27.103378+00 2025-10-06 20:40:29.090189+00 t 878 88 +590 2025-10-06 19:56:11.008629+00 2025-10-06 20:40:29.090189+00 f 878 92 +553 2025-10-05 16:20:42.588663+00 \N f 858 82 +551 2025-10-05 13:08:54.193037+00 2025-10-05 16:40:13.295773+00 t 851 21 +552 2025-10-05 13:08:59.305478+00 2025-10-05 16:40:13.295773+00 f 851 94 +556 2025-10-05 18:04:24.571816+00 2025-10-05 18:20:37.275638+00 t 859 80 +554 2025-10-05 17:53:39.953833+00 2025-10-05 18:20:37.275638+00 f 859 68 +555 2025-10-05 17:54:05.657216+00 2025-10-05 18:20:37.275638+00 f 859 114 +557 2025-10-05 18:05:07.618537+00 2025-10-05 18:20:37.275638+00 f 859 88 +558 2025-10-05 18:06:19.87291+00 2025-10-05 18:20:37.275638+00 f 859 91 +559 2025-10-05 18:06:29.930427+00 2025-10-05 18:20:37.275638+00 f 859 89 +561 2025-10-05 19:28:24.466706+00 \N f 857 70 +564 2025-10-05 20:01:35.08403+00 \N f 862 82 +565 2025-10-05 20:19:50.286614+00 \N f 863 70 +548 2025-10-05 12:54:48.641124+00 2025-10-05 21:19:05.971475+00 f 854 91 +549 2025-10-05 12:54:56.801826+00 2025-10-05 21:19:05.971475+00 f 854 80 +563 2025-10-05 19:52:47.64982+00 2025-10-05 21:19:05.971475+00 f 854 84 +566 2025-10-06 12:09:37.711194+00 \N f 864 96 +567 2025-10-06 12:12:56.146791+00 \N f 842 85 +568 2025-10-06 12:17:57.25101+00 \N f 865 2 +569 2025-10-06 12:17:57.773981+00 \N f 865 88 +570 2025-10-06 12:18:02.07351+00 \N f 865 1 +571 2025-10-06 14:01:32.838184+00 \N f 869 100 +572 2025-10-06 14:53:57.640844+00 \N f 870 75 +573 2025-10-06 15:10:30.162565+00 \N f 867 114 +574 2025-10-06 15:27:39.292288+00 \N f 871 5 +575 2025-10-06 15:27:40.41518+00 \N f 871 90 +576 2025-10-06 15:30:08.355382+00 \N f 872 84 +577 2025-10-06 15:31:55.710292+00 \N f 872 80 +578 2025-10-06 16:00:19.371475+00 2025-10-06 16:04:24.105135+00 t 873 21 +579 2025-10-06 16:53:50.671852+00 \N f 874 90 +580 2025-10-06 17:06:29.122602+00 \N f 875 68 +581 2025-10-06 18:26:08.080108+00 \N f 876 88 +582 2025-10-06 18:26:12.340473+00 \N f 876 92 +583 2025-10-06 18:26:13.816498+00 \N f 876 70 +584 2025-10-06 18:26:20.023695+00 \N f 876 91 +585 2025-10-06 19:27:07.307187+00 \N f 877 79 +586 2025-10-06 19:27:10.011763+00 \N f 877 94 +587 2025-10-06 19:27:18.80575+00 \N f 877 92 +588 2025-10-06 19:27:23.597631+00 \N f 877 2 +589 2025-10-06 19:27:25.584725+00 \N f 877 88 +591 2025-10-06 19:56:17.340509+00 2025-10-06 20:40:29.090189+00 f 878 68 +594 2025-10-06 22:41:10.873242+00 \N f 880 92 +595 2025-10-06 22:41:16.529289+00 \N f 880 1 +596 2025-10-06 23:30:27.905073+00 \N f 881 91 +598 2025-10-06 23:47:42.451205+00 \N f 883 89 +599 2025-10-07 12:35:21.906893+00 2025-10-07 12:48:01.168606+00 f 884 113 +604 2025-10-07 12:35:55.705098+00 2025-10-07 12:48:01.168606+00 t 884 79 +600 2025-10-07 12:35:27.712497+00 2025-10-07 12:48:01.168606+00 f 884 71 +601 2025-10-07 12:35:33.478973+00 2025-10-07 12:48:01.168606+00 f 884 89 +602 2025-10-07 12:35:45.374725+00 2025-10-07 12:48:01.168606+00 f 884 88 +603 2025-10-07 12:35:50.547255+00 2025-10-07 12:48:01.168606+00 f 884 9 +605 2025-10-07 12:36:07.255077+00 2025-10-07 12:48:01.168606+00 f 884 94 +606 2025-10-07 12:36:17.747104+00 2025-10-07 12:48:01.168606+00 f 884 68 +607 2025-10-07 12:36:31.244966+00 2025-10-07 12:48:01.168606+00 f 884 91 +615 2025-10-07 12:54:22.191927+00 \N f 886 14 +616 2025-10-07 12:54:24.245871+00 \N f 886 2 +617 2025-10-07 12:54:27.361227+00 \N f 886 88 +618 2025-10-07 12:54:43.363201+00 \N f 886 80 +619 2025-10-07 12:54:45.484424+00 \N f 886 1 +613 2025-10-07 12:40:50.776803+00 2025-10-07 13:22:29.988793+00 t 885 1 +608 2025-10-07 12:40:19.371723+00 2025-10-07 13:22:29.988793+00 f 885 14 +609 2025-10-07 12:40:20.951397+00 2025-10-07 13:22:29.988793+00 f 885 71 +610 2025-10-07 12:40:28.775629+00 2025-10-07 13:22:29.988793+00 f 885 88 +611 2025-10-07 12:40:34.808403+00 2025-10-07 13:22:29.988793+00 f 885 70 +612 2025-10-07 12:40:40.575479+00 2025-10-07 13:22:29.988793+00 f 885 80 +614 2025-10-07 12:40:56.635871+00 2025-10-07 13:22:29.988793+00 f 885 101 +560 2025-10-05 19:18:55.337461+00 2025-10-07 13:22:41.031298+00 t 860 1 +624 2025-10-07 13:22:56.906101+00 2025-10-07 13:25:38.19603+00 t 887 1 +620 2025-10-07 13:22:38.598524+00 2025-10-07 13:25:38.19603+00 f 887 88 +621 2025-10-07 13:22:45.160481+00 2025-10-07 13:25:38.19603+00 f 887 92 +622 2025-10-07 13:22:46.562274+00 2025-10-07 13:25:38.19603+00 f 887 70 +562 2025-10-05 19:42:59.117007+00 2025-10-08 23:52:09.145667+00 t 861 79 +597 2025-10-06 23:34:23.079102+00 2025-10-10 09:36:44.904974+00 t 882 68 +544 2025-10-05 12:40:45.423401+00 2025-10-16 14:22:59.455365+00 f 853 113 +1432 2025-10-26 12:43:35.700217+00 2025-10-26 12:46:11.187553+00 t 1212 89 +1446 2025-10-26 18:01:47.676369+00 \N f 1215 94 +623 2025-10-07 13:22:55.677518+00 2025-10-07 13:25:38.19603+00 f 887 80 +625 2025-10-07 13:42:51.287594+00 \N f 888 92 +626 2025-10-07 13:57:53.329232+00 \N f 888 21 +627 2025-10-07 13:57:53.984122+00 \N f 888 70 +628 2025-10-07 14:25:27.968305+00 \N f 890 2 +629 2025-10-07 14:26:54.419879+00 \N f 891 84 +630 2025-10-07 14:27:17.188165+00 \N f 891 92 +631 2025-10-07 15:25:26.486681+00 \N f 889 115 +632 2025-10-07 16:16:21.608444+00 \N f 896 108 +633 2025-10-07 16:16:22.427604+00 \N f 896 109 +634 2025-10-07 16:16:23.824036+00 \N f 896 110 +635 2025-10-07 16:16:24.253977+00 \N f 896 107 +636 2025-10-07 16:39:00.35005+00 \N f 897 84 +640 2025-10-07 17:25:01.940705+00 \N f 888 71 +641 2025-10-07 17:25:05.192237+00 \N f 888 2 +637 2025-10-07 17:24:20.509854+00 2025-10-07 17:25:07.425228+00 t 892 89 +638 2025-10-07 17:24:20.789157+00 2025-10-07 17:25:07.425228+00 f 892 9 +639 2025-10-07 17:24:22.244485+00 2025-10-07 17:25:07.425228+00 f 892 79 +642 2025-10-07 19:14:02.094483+00 \N f 898 103 +643 2025-10-07 19:31:53.557367+00 \N f 899 100 +644 2025-10-07 20:50:33.102454+00 \N f 901 75 +645 2025-10-07 20:59:40.883277+00 \N f 903 90 +646 2025-10-07 21:37:59.350801+00 \N f 904 89 +647 2025-10-07 21:43:46.882839+00 \N f 905 89 +648 2025-10-07 21:45:22.538051+00 \N f 906 89 +649 2025-10-07 21:47:00.935789+00 \N f 907 89 +658 2025-10-08 12:41:42.3306+00 2025-10-08 12:45:11.515712+00 t 911 21 +659 2025-10-08 12:41:44.045283+00 2025-10-08 12:45:11.515712+00 f 911 70 +660 2025-10-08 14:07:14.84484+00 \N f 912 100 +661 2025-10-08 14:11:05.965047+00 \N f 909 90 +662 2025-10-08 14:19:19.003507+00 \N f 913 100 +652 2025-10-07 23:38:01.838511+00 2025-10-08 14:35:59.775008+00 t 908 88 +650 2025-10-07 23:37:53.006926+00 2025-10-08 14:35:59.775008+00 f 908 89 +651 2025-10-07 23:37:59.430994+00 2025-10-08 14:35:59.775008+00 f 908 78 +653 2025-10-07 23:38:12.997691+00 2025-10-08 14:35:59.775008+00 f 908 92 +654 2025-10-07 23:38:17.790662+00 2025-10-08 14:35:59.775008+00 f 908 68 +655 2025-10-07 23:38:46.893163+00 2025-10-08 14:35:59.775008+00 f 908 91 +656 2025-10-07 23:44:39.298405+00 2025-10-08 14:35:59.775008+00 f 908 71 +657 2025-10-07 23:44:40.738251+00 2025-10-08 14:35:59.775008+00 f 908 113 +667 2025-10-08 14:34:39.929979+00 2025-10-08 14:36:21.188385+00 t 910 1 +663 2025-10-08 14:34:26.065763+00 2025-10-08 14:36:21.188385+00 f 910 88 +664 2025-10-08 14:34:31.797364+00 2025-10-08 14:36:21.188385+00 f 910 92 +665 2025-10-08 14:34:37.466045+00 2025-10-08 14:36:21.188385+00 f 910 70 +666 2025-10-08 14:34:38.457224+00 2025-10-08 14:36:21.188385+00 f 910 80 +668 2025-10-08 14:53:36.317304+00 \N f 914 89 +669 2025-10-08 14:53:36.910061+00 \N f 914 9 +670 2025-10-08 14:53:41.520185+00 \N f 914 94 +671 2025-10-08 14:53:43.797893+00 \N f 914 92 +672 2025-10-08 14:53:45.718221+00 \N f 914 114 +673 2025-10-08 14:54:41.456181+00 \N f 914 1 +675 2025-10-08 15:26:16.949988+00 \N f 916 96 +676 2025-10-08 15:26:17.521915+00 \N f 916 87 +677 2025-10-08 15:29:46.373258+00 \N f 916 95 +678 2025-10-08 15:33:55.364232+00 \N f 917 88 +679 2025-10-08 16:04:43.787188+00 \N f 916 80 +680 2025-10-08 17:30:52.516466+00 \N f 920 100 +681 2025-10-08 17:31:31.367671+00 \N f 919 85 +682 2025-10-08 18:57:19.218331+00 \N f 922 100 +683 2025-10-08 18:59:19.022178+00 \N f 923 118 +684 2025-10-08 18:59:45.527903+00 \N f 921 85 +685 2025-10-08 19:00:45.836716+00 \N f 924 89 +686 2025-10-08 19:00:46.573618+00 \N f 924 88 +687 2025-10-08 19:00:51.340318+00 \N f 924 94 +688 2025-10-08 19:00:55.320161+00 \N f 924 1 +689 2025-10-08 19:00:57.599226+00 \N f 924 91 +690 2025-10-08 19:35:48.35597+00 \N f 925 1 +691 2025-10-08 19:35:53.398054+00 \N f 925 101 +692 2025-10-08 19:36:00.301711+00 \N f 925 114 +693 2025-10-08 19:42:40.304886+00 \N f 926 90 +694 2025-10-08 19:42:41.835983+00 \N f 926 3 +695 2025-10-08 20:20:48.361587+00 \N f 930 68 +696 2025-10-08 20:43:20.855498+00 \N f 929 79 +697 2025-10-08 20:43:23.427849+00 \N f 929 68 +698 2025-10-08 20:43:26.080982+00 \N f 929 70 +699 2025-10-08 20:43:27.942804+00 \N f 929 1 +700 2025-10-08 20:43:32.752003+00 \N f 929 91 +701 2025-10-08 20:43:37.468562+00 \N f 929 89 +702 2025-10-08 20:50:07.671697+00 \N f 928 90 +703 2025-10-08 23:15:54.107554+00 \N f 931 90 +706 2025-10-08 23:57:16.664816+00 2025-10-09 00:04:54.41503+00 t 932 89 +710 2025-10-08 23:57:29.864582+00 2025-10-09 00:04:54.41503+00 f 932 92 +711 2025-10-08 23:57:49.437979+00 2025-10-09 00:04:54.41503+00 f 932 80 +704 2025-10-08 23:57:10.561446+00 2025-10-09 00:04:54.41503+00 f 932 71 +705 2025-10-08 23:57:14.971089+00 2025-10-09 00:04:54.41503+00 f 932 2 +707 2025-10-08 23:57:21.258951+00 2025-10-09 00:04:54.41503+00 f 932 9 +708 2025-10-08 23:57:22.953194+00 2025-10-09 00:04:54.41503+00 f 932 79 +709 2025-10-08 23:57:27.828329+00 2025-10-09 00:04:54.41503+00 f 932 94 +712 2025-10-08 23:57:50.994085+00 2025-10-09 00:04:54.41503+00 f 932 1 +715 2025-10-09 14:22:01.368865+00 2025-10-09 14:27:29.340646+00 t 933 89 +713 2025-10-09 14:21:57.879007+00 2025-10-09 14:27:29.340646+00 f 933 71 +714 2025-10-09 14:21:59.855911+00 2025-10-09 14:27:29.340646+00 f 933 2 +716 2025-10-09 14:22:06.099912+00 2025-10-09 14:27:29.340646+00 f 933 9 +717 2025-10-09 14:22:14.640473+00 2025-10-09 14:27:29.340646+00 f 933 94 +718 2025-10-09 14:22:25.576504+00 2025-10-09 14:27:29.340646+00 f 933 1 +720 2025-10-09 16:04:17.431804+00 2025-10-09 16:04:45.212509+00 t 927 80 +719 2025-10-09 16:04:11.490906+00 2025-10-09 16:04:45.212509+00 f 927 1 +721 2025-10-09 16:04:24.113679+00 2025-10-09 16:04:45.212509+00 f 927 21 +722 2025-10-09 16:04:26.770987+00 2025-10-09 16:04:45.212509+00 f 927 9 +723 2025-10-09 18:09:38.945382+00 \N f 934 104 +724 2025-10-09 18:12:07.361938+00 \N f 936 100 +725 2025-10-09 19:06:15.570683+00 \N f 937 84 +726 2025-10-09 19:29:25.425368+00 \N f 939 90 +727 2025-10-09 19:40:21.298508+00 \N f 939 3 +728 2025-10-09 20:02:14.849555+00 \N f 938 91 +674 2025-10-08 15:15:27.153025+00 2025-10-09 20:08:38.157348+00 t 915 92 +729 2025-10-09 20:51:30.358353+00 \N f 941 113 +732 2025-10-09 21:17:29.763748+00 \N f 942 71 +733 2025-10-09 21:17:30.161565+00 \N f 942 2 +734 2025-10-09 23:56:11.286676+00 \N f 943 89 +735 2025-10-09 23:56:17.388301+00 \N f 943 88 +736 2025-10-09 23:56:21.802159+00 \N f 943 92 +731 2025-10-09 21:17:09.822248+00 2025-10-23 10:37:04.043555+00 f 942 21 +1447 2025-10-26 18:01:53.158614+00 \N f 1215 21 +737 2025-10-09 23:56:26.632819+00 \N f 943 68 +738 2025-10-09 23:56:28.689543+00 \N f 943 70 +730 2025-10-09 20:52:29.809183+00 2025-10-10 09:44:34.544288+00 f 940 68 +743 2025-10-10 12:24:44.048317+00 \N f 945 89 +744 2025-10-10 12:24:46.235982+00 \N f 945 88 +745 2025-10-10 12:24:57.702045+00 \N f 945 114 +832 2025-10-13 12:20:36.174134+00 2025-10-13 20:28:29.019511+00 f 979 68 +749 2025-10-10 13:02:52.32904+00 \N f 948 113 +748 2025-10-10 12:51:49.291483+00 2025-10-10 13:38:49.045367+00 t 946 94 +746 2025-10-10 12:51:33.714914+00 2025-10-10 13:38:49.045367+00 f 946 1 +747 2025-10-10 12:51:39.117474+00 2025-10-10 13:38:49.045367+00 f 946 70 +750 2025-10-10 14:26:44.007687+00 \N f 947 117 +751 2025-10-10 14:51:31.951446+00 \N f 950 21 +752 2025-10-10 14:51:34.079427+00 \N f 950 92 +753 2025-10-10 14:51:34.591464+00 \N f 950 70 +1448 2025-10-26 18:29:22.080389+00 \N f 1214 70 +759 2025-10-10 16:07:23.384205+00 \N f 952 1 +760 2025-10-10 16:14:14.030147+00 \N f 953 88 +761 2025-10-10 16:14:26.577408+00 \N f 953 21 +762 2025-10-10 16:14:37.150488+00 \N f 953 70 +763 2025-10-10 16:14:42.857953+00 \N f 953 1 +764 2025-10-10 16:26:46.034097+00 2025-10-10 16:49:45.281127+00 t 951 94 +755 2025-10-10 15:57:44.661847+00 2025-10-10 16:49:45.281127+00 f 951 89 +756 2025-10-10 15:57:46.395874+00 2025-10-10 16:49:45.281127+00 f 951 79 +757 2025-10-10 15:57:58.342118+00 2025-10-10 16:49:45.281127+00 f 951 91 +765 2025-10-10 16:26:47.450389+00 2025-10-10 16:49:45.281127+00 f 951 92 +766 2025-10-10 16:26:48.962893+00 2025-10-10 16:49:45.281127+00 f 951 70 +767 2025-10-10 16:27:10.245114+00 2025-10-10 16:49:45.281127+00 f 951 80 +768 2025-10-10 16:50:52.986629+00 \N f 954 113 +769 2025-10-10 16:51:12.112287+00 \N f 954 114 +770 2025-10-10 16:51:12.121989+00 \N f 954 80 +771 2025-10-10 16:53:29.80269+00 \N f 955 90 +772 2025-10-10 23:06:09.140699+00 \N f 956 88 +773 2025-10-10 23:09:33.924776+00 \N f 957 88 +774 2025-10-10 23:28:34.632421+00 \N f 958 21 +775 2025-10-10 23:39:40.880427+00 \N f 959 90 +776 2025-10-10 23:45:09.649423+00 \N f 960 68 +777 2025-10-11 12:12:23.557593+00 \N f 963 113 +778 2025-10-11 12:12:24.791251+00 \N f 963 68 +788 2025-10-11 12:18:59.463948+00 2025-10-11 12:34:44.862765+00 t 961 74 +779 2025-10-11 12:18:12.448336+00 2025-10-11 12:34:44.862765+00 f 961 14 +780 2025-10-11 12:18:17.26513+00 2025-10-11 12:34:44.862765+00 f 961 89 +781 2025-10-11 12:18:18.667597+00 2025-10-11 12:34:44.862765+00 f 961 88 +782 2025-10-11 12:18:30.18564+00 2025-10-11 12:34:44.862765+00 f 961 79 +783 2025-10-11 12:18:34.528038+00 2025-10-11 12:34:44.862765+00 f 961 94 +784 2025-10-11 12:18:36.490538+00 2025-10-11 12:34:44.862765+00 f 961 94 +785 2025-10-11 12:18:49.502387+00 2025-10-11 12:34:44.862765+00 f 961 70 +786 2025-10-11 12:18:49.939097+00 2025-10-11 12:34:44.862765+00 f 961 80 +787 2025-10-11 12:18:51.742201+00 2025-10-11 12:34:44.862765+00 f 961 1 +789 2025-10-11 12:19:00.899814+00 2025-10-11 12:34:44.862765+00 f 961 91 +794 2025-10-11 12:29:21.693837+00 2025-10-11 12:48:20.291404+00 t 962 1 +790 2025-10-11 12:29:09.879695+00 2025-10-11 12:48:20.291404+00 f 962 14 +791 2025-10-11 12:29:10.636699+00 2025-10-11 12:48:20.291404+00 f 962 71 +792 2025-10-11 12:29:15.136621+00 2025-10-11 12:48:20.291404+00 f 962 88 +793 2025-10-11 12:29:21.09836+00 2025-10-11 12:48:20.291404+00 f 962 80 +795 2025-10-11 18:35:47.028014+00 \N f 964 118 +804 2025-10-11 19:32:57.594033+00 2025-10-11 19:33:40.430196+00 t 965 91 +796 2025-10-11 19:32:10.030908+00 2025-10-11 19:33:40.430196+00 f 965 89 +797 2025-10-11 19:32:10.760962+00 2025-10-11 19:33:40.430196+00 f 965 88 +798 2025-10-11 19:32:22.423475+00 2025-10-11 19:33:40.430196+00 f 965 9 +799 2025-10-11 19:32:23.195271+00 2025-10-11 19:33:40.430196+00 f 965 79 +800 2025-10-11 19:32:40.438127+00 2025-10-11 19:33:40.430196+00 f 965 94 +801 2025-10-11 19:32:42.886245+00 2025-10-11 19:33:40.430196+00 f 965 92 +802 2025-10-11 19:32:47.229695+00 2025-10-11 19:33:40.430196+00 f 965 68 +803 2025-10-11 19:32:55.214862+00 2025-10-11 19:33:40.430196+00 f 965 80 +805 2025-10-11 19:33:05.513335+00 2025-10-11 19:33:40.430196+00 f 965 70 +806 2025-10-12 12:48:22.666462+00 \N f 967 71 +807 2025-10-12 12:48:30.984928+00 \N f 967 71 +808 2025-10-12 12:48:42.906949+00 \N f 967 80 +809 2025-10-12 12:53:15.169554+00 \N f 967 70 +810 2025-10-12 13:05:16.022027+00 \N f 967 1 +811 2025-10-12 19:10:31.18855+00 \N f 967 78 +812 2025-10-12 19:11:44.934952+00 \N f 969 92 +816 2025-10-12 19:15:55.203194+00 2025-10-12 19:26:30.559706+00 t 968 113 +813 2025-10-12 19:15:32.456797+00 2025-10-12 19:26:30.559706+00 f 968 68 +814 2025-10-12 19:15:37.64277+00 2025-10-12 19:26:30.559706+00 f 968 68 +815 2025-10-12 19:15:45.910801+00 2025-10-12 19:26:30.559706+00 f 968 91 +817 2025-10-12 19:33:37.058424+00 \N f 970 92 +818 2025-10-12 19:57:32.962018+00 \N f 971 92 +819 2025-10-12 20:00:10.802678+00 \N f 972 92 +820 2025-10-12 20:09:19.853845+00 \N f 973 70 +821 2025-10-12 20:19:29.878735+00 \N f 974 78 +822 2025-10-12 20:25:23.811389+00 \N f 975 85 +823 2025-10-12 20:25:33.263836+00 \N f 975 92 +824 2025-10-12 20:33:43.767865+00 \N f 976 90 +825 2025-10-12 20:37:39.603883+00 \N f 977 104 +826 2025-10-13 12:16:30.741623+00 \N f 981 14 +827 2025-10-13 12:16:32.472716+00 \N f 981 100 +828 2025-10-13 12:16:49.033106+00 \N f 981 80 +829 2025-10-13 12:16:49.537032+00 \N f 981 1 +830 2025-10-13 12:17:45.918197+00 \N f 981 88 +833 2025-10-13 12:20:56.640195+00 \N f 978 1 +834 2025-10-13 12:20:57.087243+00 \N f 978 80 +835 2025-10-13 12:21:07.037818+00 \N f 978 94 +836 2025-10-13 12:21:12.576825+00 \N f 978 88 +837 2025-10-13 12:44:12.259835+00 \N f 981 94 +838 2025-10-13 12:44:20.776904+00 \N f 981 72 +839 2025-10-13 12:49:23.682071+00 \N f 982 114 +840 2025-10-13 13:11:10.737593+00 \N f 983 100 +841 2025-10-13 13:11:10.820462+00 \N f 983 100 +842 2025-10-13 13:44:45.256077+00 \N f 984 90 +843 2025-10-13 14:02:13.973061+00 \N f 985 82 +844 2025-10-13 14:30:44.902963+00 \N f 987 92 +845 2025-10-13 14:30:46.95785+00 \N f 987 70 +846 2025-10-13 14:37:42.140832+00 \N f 988 112 +847 2025-10-13 14:37:42.525914+00 \N f 988 106 +739 2025-10-10 12:20:17.783053+00 2025-10-13 18:59:45.623233+00 f 944 21 +831 2025-10-13 12:20:34.00505+00 2025-10-16 14:22:54.782697+00 f 979 113 +758 2025-10-10 16:07:20.364994+00 2025-10-19 19:02:51.931827+00 f 952 114 +848 2025-10-13 14:37:43.800103+00 \N f 988 104 +849 2025-10-13 14:42:34.371687+00 \N f 989 114 +850 2025-10-13 14:42:34.412056+00 \N f 989 92 +851 2025-10-13 14:42:37.053005+00 \N f 989 1 +852 2025-10-13 14:42:42.060326+00 \N f 989 91 +855 2025-10-13 15:23:59.898224+00 \N f 992 85 +856 2025-10-13 15:25:19.291572+00 \N f 992 70 +861 2025-10-13 15:30:34.695328+00 2025-10-13 15:35:09.905916+00 t 990 88 +857 2025-10-13 15:30:19.784539+00 2025-10-13 15:35:09.905916+00 f 990 94 +858 2025-10-13 15:30:22.711446+00 2025-10-13 15:35:09.905916+00 f 990 80 +859 2025-10-13 15:30:23.772811+00 2025-10-13 15:35:09.905916+00 f 990 1 +860 2025-10-13 15:30:29.989365+00 2025-10-13 15:35:09.905916+00 f 990 92 +854 2025-10-13 15:20:42.245929+00 2025-10-13 15:36:30.008156+00 t 991 113 +853 2025-10-13 15:20:42.18358+00 2025-10-13 15:36:30.008156+00 f 991 91 +862 2025-10-13 16:20:14.887041+00 \N f 993 92 +863 2025-10-13 16:48:58.419893+00 \N f 995 68 +864 2025-10-13 16:50:03.599982+00 \N f 986 94 +865 2025-10-13 16:50:05.735068+00 \N f 986 21 +866 2025-10-13 16:50:13.081179+00 \N f 986 114 +867 2025-10-13 16:50:13.261754+00 \N f 986 70 +869 2025-10-13 16:50:18.484964+00 \N f 986 70 +871 2025-10-13 16:53:31.436125+00 \N f 994 1 +872 2025-10-13 16:53:32.479832+00 \N f 994 74 +873 2025-10-13 18:59:31.732396+00 \N f 996 84 +754 2025-10-10 15:16:05.886054+00 2025-10-13 18:59:45.623233+00 t 944 70 +740 2025-10-10 12:20:18.847362+00 2025-10-13 18:59:45.623233+00 f 944 94 +741 2025-10-10 12:20:20.319013+00 2025-10-13 18:59:45.623233+00 f 944 92 +742 2025-10-10 12:20:24.676471+00 2025-10-13 18:59:45.623233+00 f 944 2 +874 2025-10-13 18:59:55.221818+00 \N f 996 90 +875 2025-10-13 19:57:06.778502+00 \N f 997 115 +876 2025-10-13 23:56:08.926404+00 \N f 998 104 +877 2025-10-13 23:56:22.205561+00 \N f 998 85 +878 2025-10-14 00:06:22.691197+00 \N f 999 90 +879 2025-10-14 00:10:28.014304+00 \N f 1000 90 +880 2025-10-14 00:17:42.946755+00 \N f 1001 113 +881 2025-10-14 13:23:58.238716+00 2025-10-14 13:36:44.251887+00 t 1002 21 +882 2025-10-14 13:24:03.768537+00 2025-10-14 13:36:44.251887+00 f 1002 92 +883 2025-10-14 13:24:05.030207+00 2025-10-14 13:36:44.251887+00 f 1002 70 +884 2025-10-14 13:24:17.528568+00 2025-10-14 13:36:44.251887+00 f 1002 1 +885 2025-10-14 14:37:24.316655+00 \N f 1004 89 +886 2025-10-14 14:37:44.783064+00 \N f 1004 88 +887 2025-10-14 14:37:45.788168+00 \N f 1004 9 +888 2025-10-14 14:37:47.362848+00 \N f 1004 79 +889 2025-10-14 14:37:59.12912+00 \N f 1004 94 +890 2025-10-14 14:38:02.902066+00 \N f 1004 68 +891 2025-10-14 14:38:11.085158+00 \N f 1004 91 +892 2025-10-14 15:10:34.167416+00 \N f 1005 74 +893 2025-10-14 15:53:15.413771+00 \N f 1003 82 +894 2025-10-14 15:56:34.389496+00 \N f 1006 114 +895 2025-10-14 15:56:49.625515+00 \N f 1006 68 +896 2025-10-14 15:56:57.347086+00 \N f 1006 79 +897 2025-10-14 16:55:34.442329+00 \N f 1007 71 +898 2025-10-14 16:55:35.164162+00 \N f 1007 2 +899 2025-10-14 16:55:36.408072+00 \N f 1007 89 +900 2025-10-14 16:55:46.392639+00 \N f 1007 79 +901 2025-10-14 16:55:49.314452+00 \N f 1007 9 +902 2025-10-14 16:56:04.018618+00 \N f 1007 114 +903 2025-10-14 16:56:04.347245+00 \N f 1007 92 +904 2025-10-14 16:56:11.918583+00 \N f 1007 70 +905 2025-10-14 16:56:30.242171+00 \N f 1007 101 +906 2025-10-14 16:56:35.976395+00 \N f 1007 1 +907 2025-10-14 17:21:33.433866+00 \N f 1008 100 +908 2025-10-14 17:23:50.721021+00 \N f 1009 82 +909 2025-10-14 17:31:35.954577+00 \N f 1004 92 +910 2025-10-14 17:31:40.825097+00 \N f 1004 114 +911 2025-10-14 17:31:42.222214+00 \N f 1004 70 +912 2025-10-14 18:13:12.104762+00 \N f 1010 89 +913 2025-10-14 18:13:14.313503+00 \N f 1010 88 +914 2025-10-14 18:13:22.111016+00 \N f 1010 68 +915 2025-10-14 18:13:24.616024+00 \N f 1010 114 +916 2025-10-14 18:13:34.051806+00 \N f 1010 1 +917 2025-10-14 18:13:36.513237+00 2025-10-14 18:14:32.114764+00 f 1010 91 +918 2025-10-14 18:28:54.637048+00 \N f 1011 113 +919 2025-10-14 18:39:18.531875+00 \N f 1012 80 +920 2025-10-14 18:39:47.286205+00 \N f 1013 100 +921 2025-10-14 18:44:45.821906+00 \N f 1014 90 +922 2025-10-14 20:15:18.089966+00 \N f 1015 75 +924 2025-10-14 20:48:40.732201+00 2025-10-14 20:48:52.953894+00 t 1016 80 +923 2025-10-14 20:48:40.658328+00 2025-10-14 20:48:52.953894+00 f 1016 68 +925 2025-10-14 20:48:41.308316+00 2025-10-14 20:48:52.953894+00 f 1016 114 +926 2025-10-14 20:48:42.961068+00 2025-10-14 20:48:52.953894+00 f 1016 70 +927 2025-10-14 20:48:43.711424+00 2025-10-14 20:48:52.953894+00 f 1016 92 +928 2025-10-14 20:48:46.021367+00 2025-10-14 20:48:52.953894+00 f 1016 72 +933 2025-10-15 12:42:42.60743+00 2025-10-15 12:43:33.089597+00 t 1018 88 +929 2025-10-15 12:42:18.491785+00 2025-10-15 12:43:33.089597+00 f 1018 14 +930 2025-10-15 12:42:18.812163+00 2025-10-15 12:43:33.089597+00 f 1018 71 +931 2025-10-15 12:42:25.301509+00 2025-10-15 12:43:33.089597+00 f 1018 78 +932 2025-10-15 12:42:37.53828+00 2025-10-15 12:43:33.089597+00 f 1018 2 +934 2025-10-15 12:42:52.842745+00 2025-10-15 12:43:33.089597+00 f 1018 70 +935 2025-10-15 12:42:53.221373+00 2025-10-15 12:43:33.089597+00 f 1018 80 +936 2025-10-15 12:42:54.398799+00 2025-10-15 12:43:33.089597+00 f 1018 1 +939 2025-10-15 12:50:33.558285+00 2025-10-15 12:51:14.242135+00 t 1017 88 +937 2025-10-15 12:50:31.214607+00 2025-10-15 12:51:14.242135+00 f 1017 71 +938 2025-10-15 12:50:32.336007+00 2025-10-15 12:51:14.242135+00 f 1017 78 +940 2025-10-15 12:50:59.939615+00 2025-10-15 12:51:14.242135+00 f 1017 1 +943 2025-10-15 13:52:09.486417+00 2025-10-15 13:52:38.009852+00 t 1020 88 +941 2025-10-15 13:52:02.44628+00 2025-10-15 13:52:38.009852+00 f 1020 14 +942 2025-10-15 13:52:03.463773+00 2025-10-15 13:52:38.009852+00 f 1020 71 +944 2025-10-15 13:52:17.199428+00 2025-10-15 13:52:38.009852+00 f 1020 1 +945 2025-10-15 13:52:22.065262+00 2025-10-15 13:52:38.009852+00 f 1020 101 +946 2025-10-15 14:20:02.241551+00 \N f 1022 3 +947 2025-10-15 14:20:02.246933+00 \N f 1022 90 +948 2025-10-15 14:24:11.56213+00 \N f 1023 112 +949 2025-10-15 14:24:11.729661+00 \N f 1023 106 +950 2025-10-15 14:24:12.762249+00 \N f 1023 104 +951 2025-10-15 14:25:46.571699+00 \N f 1021 90 +952 2025-10-15 14:36:10.205507+00 \N f 1024 100 +953 2025-10-15 14:49:26.108132+00 \N f 1025 100 +954 2025-10-15 15:08:17.00903+00 \N f 1026 80 +955 2025-10-15 16:43:39.434267+00 \N f 1027 75 +956 2025-10-15 17:07:23.597409+00 \N f 1028 68 +1435 2025-10-26 12:44:17.240601+00 2025-10-28 21:44:42.718102+00 f 1212 68 +959 2025-10-15 17:53:44.902829+00 2025-10-15 17:54:15.839076+00 t 1029 88 +957 2025-10-15 17:53:42.317447+00 2025-10-15 17:54:15.839076+00 f 1029 89 +958 2025-10-15 17:53:44.296975+00 2025-10-15 17:54:15.839076+00 f 1029 97 +960 2025-10-15 17:53:52.160531+00 2025-10-15 17:54:15.839076+00 f 1029 92 +961 2025-10-15 17:53:52.936546+00 2025-10-15 17:54:15.839076+00 f 1029 68 +962 2025-10-15 17:53:59.821713+00 2025-10-15 17:54:15.839076+00 f 1029 114 +963 2025-10-15 17:54:02.350324+00 2025-10-15 17:54:15.839076+00 f 1029 70 +964 2025-10-15 17:54:03.914036+00 2025-10-15 17:54:15.839076+00 f 1029 80 +965 2025-10-15 17:54:11.18791+00 2025-10-15 17:54:15.839076+00 f 1029 1 +966 2025-10-15 17:54:17.087609+00 \N f 1029 91 +969 2025-10-15 18:46:47.517808+00 2025-10-15 18:53:04.365736+00 t 1031 21 +967 2025-10-15 18:46:41.31812+00 2025-10-15 18:53:04.365736+00 f 1031 97 +968 2025-10-15 18:46:42.027971+00 2025-10-15 18:53:04.365736+00 f 1031 9 +970 2025-10-15 18:46:52.753968+00 2025-10-15 18:53:04.365736+00 f 1031 92 +971 2025-10-15 18:46:53.220653+00 2025-10-15 18:53:04.365736+00 f 1031 70 +972 2025-10-15 19:15:19.022688+00 \N f 1034 100 +973 2025-10-15 19:15:59.787177+00 \N f 1033 104 +974 2025-10-15 20:10:21.54622+00 \N f 1032 96 +979 2025-10-15 22:58:20.07887+00 2025-10-15 23:45:32.965554+00 t 1035 88 +975 2025-10-15 22:57:56.334207+00 2025-10-15 23:45:32.965554+00 f 1035 113 +976 2025-10-15 22:58:04.808722+00 2025-10-15 23:45:32.965554+00 f 1035 71 +977 2025-10-15 22:58:11.985074+00 2025-10-15 23:45:32.965554+00 f 1035 89 +978 2025-10-15 22:58:18.317454+00 2025-10-15 23:45:32.965554+00 f 1035 79 +981 2025-10-16 13:25:43.43503+00 \N f 1038 1 +983 2025-10-16 13:55:07.68651+00 \N f 1039 75 +984 2025-10-16 14:06:47.118444+00 \N f 1040 85 +985 2025-10-16 14:06:48.8615+00 \N f 1040 104 +986 2025-10-16 14:06:53.782403+00 \N f 1040 111 +987 2025-10-16 14:06:57.329469+00 \N f 1040 106 +988 2025-10-16 14:07:04.123789+00 \N f 1040 112 +982 2025-10-16 13:28:25.712109+00 2025-10-16 15:04:07.765917+00 t 1036 70 +980 2025-10-16 12:30:30.940771+00 2025-10-16 15:04:07.765917+00 f 1036 75 +993 2025-10-16 15:27:54.750699+00 2025-10-16 15:28:59.235494+00 t 1041 1 +989 2025-10-16 15:27:42.531537+00 2025-10-16 15:28:59.235494+00 f 1041 88 +990 2025-10-16 15:27:43.983626+00 2025-10-16 15:28:59.235494+00 f 1041 94 +991 2025-10-16 15:27:46.660919+00 2025-10-16 15:28:59.235494+00 f 1041 92 +992 2025-10-16 15:27:51.311982+00 2025-10-16 15:28:59.235494+00 f 1041 70 +994 2025-10-16 15:27:54.841946+00 2025-10-16 15:28:59.235494+00 f 1041 80 +995 2025-10-16 15:37:49.684842+00 \N f 1042 90 +996 2025-10-16 16:12:53.375051+00 2025-10-16 16:16:02.80654+00 t 1043 21 +997 2025-10-16 16:12:53.676249+00 2025-10-16 16:16:02.80654+00 f 1043 94 +998 2025-10-16 16:32:27.799641+00 2025-10-16 16:36:06.580803+00 t 1044 88 +999 2025-10-16 16:32:28.309375+00 2025-10-16 16:36:06.580803+00 f 1044 94 +1000 2025-10-16 16:32:40.387319+00 2025-10-16 16:36:06.580803+00 f 1044 1 +1001 2025-10-16 16:32:42.148542+00 2025-10-16 16:36:06.580803+00 f 1044 101 +1002 2025-10-16 17:59:48.268976+00 \N f 1045 107 +1004 2025-10-16 18:38:50.27517+00 2025-10-16 18:39:54.955072+00 t 1046 1 +1003 2025-10-16 18:38:35.504543+00 2025-10-16 18:39:54.955072+00 f 1046 94 +1005 2025-10-16 18:44:41.680295+00 \N f 1046 70 +1006 2025-10-16 18:53:35.655506+00 \N f 1047 96 +1007 2025-10-16 19:07:04.352106+00 \N f 1048 100 +1008 2025-10-16 19:34:03.151309+00 \N f 1049 70 +1009 2025-10-16 20:51:30.659835+00 \N f 1050 94 +1010 2025-10-16 20:51:31.256822+00 \N f 1050 70 +1011 2025-10-16 20:51:33.695028+00 \N f 1050 1 +1012 2025-10-16 20:51:36.97528+00 \N f 1050 74 +1016 2025-10-16 21:20:32.844384+00 2025-10-16 21:21:10.34165+00 t 1051 80 +1013 2025-10-16 21:20:14.840617+00 2025-10-16 21:21:10.34165+00 f 1051 97 +1014 2025-10-16 21:20:20.070566+00 2025-10-16 21:21:10.34165+00 f 1051 9 +1015 2025-10-16 21:20:22.769373+00 2025-10-16 21:21:10.34165+00 f 1051 79 +1017 2025-10-16 21:28:33.730261+00 \N f 1052 70 +1018 2025-10-16 21:28:35.038688+00 \N f 1052 92 +1019 2025-10-16 21:28:35.868079+00 \N f 1052 94 +1025 2025-10-16 22:28:53.359279+00 \N f 1054 89 +1026 2025-10-16 22:28:58.627065+00 \N f 1054 78 +1027 2025-10-16 22:29:32.316917+00 \N f 1054 88 +1028 2025-10-16 22:29:37.091238+00 \N f 1054 79 +1029 2025-10-16 22:46:22.577534+00 \N f 1054 68 +1030 2025-10-16 22:46:25.15178+00 \N f 1054 70 +1031 2025-10-16 22:46:28.050205+00 \N f 1054 106 +1033 2025-10-16 22:47:13.236648+00 \N f 1054 8 +1034 2025-10-16 22:47:20.595273+00 \N f 1054 1 +1035 2025-10-16 23:27:49.370691+00 \N f 1055 113 +1036 2025-10-16 23:56:40.933122+00 \N f 1055 103 +1038 2025-10-17 00:20:34.411722+00 2025-10-17 00:21:12.727449+00 t 1056 80 +1037 2025-10-17 00:20:32.049564+00 2025-10-17 00:21:12.727449+00 f 1056 70 +1039 2025-10-17 00:20:37.127393+00 2025-10-17 00:21:12.727449+00 f 1056 1 +1032 2025-10-16 22:46:34.38885+00 2025-10-17 00:21:29.629827+00 f 1054 80 +1040 2025-10-17 02:17:28.736421+00 \N f 1057 80 +1041 2025-10-17 12:08:12.249455+00 \N f 1054 91 +1042 2025-10-17 12:10:17.600576+00 \N f 1054 2 +1046 2025-10-17 12:40:20.970581+00 2025-10-17 12:43:20.942167+00 t 1059 113 +1047 2025-10-17 12:40:21.080846+00 2025-10-17 12:43:20.942167+00 f 1059 2 +1048 2025-10-17 12:40:23.899667+00 2025-10-17 12:43:20.942167+00 f 1059 78 +1049 2025-10-17 12:40:28.141211+00 2025-10-17 12:43:20.942167+00 f 1059 9 +1050 2025-10-17 12:40:32.755785+00 2025-10-17 12:43:20.942167+00 f 1059 92 +1051 2025-10-17 12:40:35.245565+00 2025-10-17 12:43:20.942167+00 f 1059 70 +1043 2025-10-17 12:19:17.337586+00 2025-10-17 12:51:54.297219+00 t 1053 80 +1020 2025-10-16 21:53:46.066599+00 2025-10-17 12:51:54.297219+00 f 1053 1 +1021 2025-10-16 21:53:51.119451+00 2025-10-17 12:51:54.297219+00 f 1053 88 +1022 2025-10-16 21:53:52.9665+00 2025-10-17 12:51:54.297219+00 f 1053 2 +1023 2025-10-16 21:53:56.360671+00 2025-10-17 12:51:54.297219+00 f 1053 14 +1024 2025-10-16 21:55:50.041067+00 2025-10-17 12:51:54.297219+00 f 1053 70 +1044 2025-10-17 12:19:18.368142+00 2025-10-17 12:51:54.297219+00 f 1053 72 +1045 2025-10-17 12:19:24.863887+00 2025-10-17 12:51:54.297219+00 f 1053 78 +1054 2025-10-17 12:53:18.381358+00 2025-10-17 12:55:32.360033+00 t 1058 1 +1052 2025-10-17 12:53:13.173288+00 2025-10-17 12:55:32.360033+00 f 1058 94 +1053 2025-10-17 12:53:15.450793+00 2025-10-17 12:55:32.360033+00 f 1058 80 +1055 2025-10-17 12:53:26.804307+00 2025-10-17 12:55:32.360033+00 f 1058 14 +1056 2025-10-17 12:53:28.046313+00 2025-10-17 12:55:32.360033+00 f 1058 2 +1442 2025-10-26 16:23:22.556088+00 \N f 1214 92 +1449 2025-10-26 18:41:01.465637+00 \N f 1216 114 +1452 2025-10-26 19:03:59.745932+00 \N f 1207 84 +1062 2025-10-17 13:52:17.3443+00 2025-10-17 13:52:56.919686+00 f 1065 2 +1058 2025-10-17 13:46:56.476402+00 2025-10-17 13:54:48.900938+00 f 1064 97 +1059 2025-10-17 13:46:57.755459+00 2025-10-17 13:54:48.900938+00 f 1064 78 +1057 2025-10-17 13:28:07.706193+00 2025-10-17 13:58:04.633014+00 t 1060 88 +1064 2025-10-17 13:52:19.8267+00 2025-10-17 13:52:56.919686+00 t 1065 21 +1063 2025-10-17 13:52:17.392772+00 2025-10-17 13:52:56.919686+00 f 1065 9 +1065 2025-10-17 13:52:24.794388+00 2025-10-17 13:52:56.919686+00 f 1065 92 +1066 2025-10-17 13:52:27.102339+00 2025-10-17 13:52:56.919686+00 f 1065 70 +1069 2025-10-17 13:53:17.973079+00 2025-10-17 13:54:48.900938+00 t 1064 68 +1060 2025-10-17 13:47:15.921893+00 2025-10-17 13:54:48.900938+00 f 1064 71 +1061 2025-10-17 13:47:18.984137+00 2025-10-17 13:54:48.900938+00 f 1064 2 +1067 2025-10-17 13:53:07.867374+00 2025-10-17 13:54:48.900938+00 f 1064 88 +1068 2025-10-17 13:53:08.228268+00 2025-10-17 13:54:48.900938+00 f 1064 79 +1070 2025-10-17 13:53:23.051214+00 2025-10-17 13:54:48.900938+00 f 1064 91 +1071 2025-10-17 14:41:37.206024+00 2025-10-17 14:42:03.183831+00 t 1066 80 +1072 2025-10-17 14:41:44.056936+00 2025-10-17 14:42:03.183831+00 f 1066 88 +1073 2025-10-17 14:41:46.808205+00 2025-10-17 14:42:03.183831+00 f 1066 2 +1074 2025-10-17 14:41:47.228391+00 2025-10-17 14:42:03.183831+00 f 1066 14 +1075 2025-10-17 14:41:54.453683+00 2025-10-17 14:42:03.183831+00 f 1066 2 +1076 2025-10-17 14:42:01.070096+00 2025-10-17 14:42:03.183831+00 f 1066 92 +1077 2025-10-17 15:40:58.249225+00 \N f 1067 84 +1078 2025-10-17 15:44:29.89413+00 \N f 1068 82 +1079 2025-10-17 16:16:36.137173+00 \N f 1069 21 +1080 2025-10-17 16:16:39.465382+00 \N f 1069 92 +1081 2025-10-17 16:16:40.444215+00 \N f 1069 70 +1082 2025-10-17 16:16:46.071196+00 \N f 1069 6 +1083 2025-10-17 16:16:52.196989+00 \N f 1069 97 +1084 2025-10-17 16:34:10.109033+00 2025-10-17 16:34:42.590149+00 t 1070 1 +1085 2025-10-17 16:34:12.970985+00 2025-10-17 16:34:42.590149+00 f 1070 70 +1086 2025-10-17 16:34:15.973696+00 2025-10-17 16:34:42.590149+00 f 1070 14 +1087 2025-10-17 16:34:29.259048+00 2025-10-17 16:34:42.590149+00 f 1070 2 +1088 2025-10-17 16:47:08.211194+00 \N f 1069 2 +1089 2025-10-17 17:19:55.625469+00 \N f 1069 9 +1090 2025-10-17 17:57:29.37427+00 2025-10-17 18:30:55.346599+00 t 1071 1 +1091 2025-10-17 17:57:37.172509+00 2025-10-17 18:30:55.346599+00 f 1071 80 +1092 2025-10-17 17:57:48.371835+00 2025-10-17 18:30:55.346599+00 f 1071 88 +1093 2025-10-17 18:01:16.051126+00 2025-10-17 18:30:55.346599+00 f 1071 92 +1094 2025-10-17 18:01:16.575974+00 2025-10-17 18:30:55.346599+00 f 1071 70 +1095 2025-10-17 18:46:31.868754+00 \N f 1072 21 +1096 2025-10-17 18:49:27.139651+00 \N f 1072 80 +1097 2025-10-17 18:49:27.481302+00 \N f 1072 1 +1098 2025-10-17 18:52:35.300795+00 \N f 1072 70 +1099 2025-10-17 19:52:01.062122+00 \N f 1073 68 +1100 2025-10-17 20:12:36.236036+00 \N f 1074 104 +1101 2025-10-17 21:22:36.008007+00 2025-10-17 21:26:36.583523+00 t 1075 113 +1102 2025-10-17 21:47:35.417788+00 \N f 1077 100 +1103 2025-10-17 21:49:46.44367+00 \N f 1074 85 +1104 2025-10-17 22:17:40.836212+00 \N f 1078 100 +1105 2025-10-17 22:28:11.179447+00 \N f 1079 90 +1106 2025-10-18 00:18:10.820772+00 \N f 1081 88 +1107 2025-10-18 12:42:17.098879+00 \N f 1085 94 +1108 2025-10-18 12:42:18.831765+00 \N f 1085 70 +1109 2025-10-18 12:42:27.821772+00 \N f 1085 1 +1112 2025-10-18 14:17:08.392842+00 2025-10-18 14:20:30.266439+00 t 1086 88 +1110 2025-10-18 14:17:02.947696+00 2025-10-18 14:20:30.266439+00 f 1086 14 +1111 2025-10-18 14:17:04.327778+00 2025-10-18 14:20:30.266439+00 f 1086 89 +1113 2025-10-18 14:17:14.667739+00 2025-10-18 14:20:30.266439+00 f 1086 92 +1114 2025-10-18 14:17:14.772082+00 2025-10-18 14:20:30.266439+00 f 1086 70 +1115 2025-10-18 14:17:23.240023+00 2025-10-18 14:20:30.266439+00 f 1086 1 +1116 2025-10-18 14:17:24.332851+00 2025-10-18 14:20:30.266439+00 f 1086 74 +1117 2025-10-18 14:17:24.965488+00 2025-10-18 14:20:30.266439+00 f 1086 91 +1118 2025-10-18 15:20:17.014716+00 2025-10-18 15:20:45.392742+00 t 1083 88 +1119 2025-10-18 15:20:17.021232+00 2025-10-18 15:20:45.392742+00 f 1083 89 +1120 2025-10-18 15:20:18.425746+00 2025-10-18 15:20:45.392742+00 f 1083 9 +1121 2025-10-18 15:20:26.283386+00 2025-10-18 15:20:45.392742+00 f 1083 79 +1122 2025-10-18 15:20:28.51087+00 2025-10-18 15:20:45.392742+00 f 1083 94 +1123 2025-10-18 15:20:36.624136+00 2025-10-18 15:20:45.392742+00 f 1083 94 +1124 2025-10-18 15:20:45.32725+00 2025-10-18 15:20:45.392742+00 f 1083 92 +1125 2025-10-18 15:20:45.919946+00 \N f 1083 68 +1126 2025-10-18 15:21:04.301476+00 \N f 1083 80 +1127 2025-10-18 15:21:09.142234+00 \N f 1083 91 +1128 2025-10-18 15:30:58.807534+00 \N f 1087 113 +1129 2025-10-18 15:31:01.864043+00 \N f 1087 91 +1132 2025-10-18 15:43:57.50071+00 2025-10-18 15:44:24.596399+00 t 1088 88 +1130 2025-10-18 15:43:55.518349+00 2025-10-18 15:44:24.596399+00 f 1088 89 +1131 2025-10-18 15:43:56.363106+00 2025-10-18 15:44:24.596399+00 f 1088 78 +1133 2025-10-18 15:44:08.793853+00 2025-10-18 15:44:24.596399+00 f 1088 68 +1134 2025-10-18 15:44:14.196895+00 2025-10-18 15:44:24.596399+00 f 1088 70 +1135 2025-10-18 15:44:19.583458+00 2025-10-18 15:44:24.596399+00 f 1088 91 +1136 2025-10-18 16:18:43.365654+00 \N f 1089 68 +1137 2025-10-18 16:24:04.302998+00 \N f 1080 94 +1138 2025-10-18 17:27:26.413146+00 \N f 1092 90 +1139 2025-10-18 17:32:55.537278+00 \N f 1091 99 +1140 2025-10-18 20:30:35.344287+00 \N f 1093 71 +1141 2025-10-18 20:30:35.652832+00 \N f 1093 89 +1142 2025-10-18 20:30:36.086568+00 \N f 1093 9 +1143 2025-10-18 20:30:37.308493+00 \N f 1093 79 +1144 2025-10-18 20:30:51.72944+00 \N f 1093 94 +1145 2025-10-18 20:30:56.484011+00 \N f 1093 92 +1146 2025-10-18 20:31:06.499737+00 \N f 1093 1 +1147 2025-10-18 21:11:35.318531+00 \N f 1090 95 +1148 2025-10-19 12:23:45.280332+00 \N f 1094 88 +1149 2025-10-19 13:00:06.482457+00 \N f 1094 92 +1150 2025-10-19 13:00:17.600277+00 \N f 1094 80 +1151 2025-10-19 13:00:24.472346+00 \N f 1094 1 +1152 2025-10-19 14:15:44.016386+00 \N f 1095 68 +1153 2025-10-19 14:21:44.66571+00 \N f 1096 1 +1154 2025-10-19 14:49:52.295315+00 \N f 1097 114 +1155 2025-10-19 14:49:57.973473+00 \N f 1097 114 +1156 2025-10-19 14:50:06.267738+00 \N f 1097 1 +1157 2025-10-19 14:50:15.29119+00 \N f 1097 101 +1158 2025-10-19 14:50:22.042344+00 \N f 1097 91 +1159 2025-10-19 15:02:24.950859+00 \N f 1098 71 +1160 2025-10-19 15:02:39.713462+00 \N f 1098 89 +1161 2025-10-19 15:02:46.398977+00 \N f 1098 78 +1162 2025-10-19 15:02:57.271222+00 \N f 1098 79 +1163 2025-10-19 15:03:14.557795+00 \N f 1098 91 +1164 2025-10-19 15:04:50.999872+00 \N f 1098 72 +1165 2025-10-19 15:05:06.225381+00 \N f 1098 113 +1166 2025-10-19 15:10:29.223889+00 \N f 1098 88 +1168 2025-10-19 16:00:41.97865+00 2025-10-19 17:01:24.951015+00 t 1099 114 +1167 2025-10-19 15:51:58.454518+00 2025-10-19 17:01:24.951015+00 f 1099 88 +1443 2025-10-26 16:23:30.738552+00 \N f 1214 68 +1450 2025-10-26 18:51:17.410529+00 \N f 1217 94 +1169 2025-10-19 16:00:54.417348+00 2025-10-19 17:01:24.951015+00 f 1099 89 +1170 2025-10-19 16:01:03.061375+00 2025-10-19 17:01:24.951015+00 f 1099 91 +1171 2025-10-19 17:25:13.653641+00 \N f 1100 70 +1172 2025-10-19 18:42:48.27088+00 \N f 1101 94 +1173 2025-10-19 19:48:28.065836+00 \N f 1102 88 +1174 2025-10-20 12:04:18.015271+00 \N f 1106 90 +1175 2025-10-20 12:04:18.723523+00 \N f 1106 3 +1176 2025-10-20 12:59:09.236852+00 \N f 1109 70 +1177 2025-10-20 13:14:41.435568+00 \N f 1110 2 +1178 2025-10-20 13:15:58.039656+00 \N f 1110 14 +1179 2025-10-20 13:16:02.90551+00 \N f 1110 80 +1180 2025-10-20 13:16:05.288761+00 \N f 1110 88 +1181 2025-10-20 13:36:17.930473+00 \N f 1113 94 +1182 2025-10-20 13:50:36.175051+00 \N f 1112 2 +1183 2025-10-20 13:50:37.388542+00 \N f 1112 70 +1184 2025-10-20 13:50:37.844349+00 \N f 1112 1 +1187 2025-10-20 14:23:19.652729+00 2025-10-20 14:25:05.959219+00 t 1107 114 +1185 2025-10-20 14:23:17.349246+00 2025-10-20 14:25:05.959219+00 f 1107 92 +1186 2025-10-20 14:23:17.488279+00 2025-10-20 14:25:05.959219+00 f 1107 68 +1188 2025-10-20 14:23:29.660628+00 2025-10-20 14:25:05.959219+00 f 1107 80 +1189 2025-10-20 14:23:31.817577+00 2025-10-20 14:25:05.959219+00 f 1107 70 +1190 2025-10-20 14:31:44.062308+00 \N f 1114 90 +1191 2025-10-20 14:36:51.538043+00 \N f 1108 75 +1192 2025-10-20 15:06:33.807162+00 \N f 1115 106 +1193 2025-10-20 15:06:41.590971+00 \N f 1115 112 +1195 2025-10-20 15:16:41.776964+00 2025-10-20 15:17:44.938517+00 t 1117 21 +1194 2025-10-20 15:16:40.599385+00 2025-10-20 15:17:44.938517+00 f 1117 94 +1196 2025-10-20 15:47:32.288931+00 \N f 1118 100 +1197 2025-10-20 16:24:58.640755+00 \N f 1111 82 +1198 2025-10-20 18:02:33.952988+00 \N f 1119 70 +1199 2025-10-20 18:02:34.850369+00 \N f 1119 1 +1200 2025-10-20 18:02:36.304596+00 \N f 1119 92 +1201 2025-10-20 18:02:42.030569+00 \N f 1119 2 +1202 2025-10-20 18:14:32.432953+00 \N f 1120 94 +1203 2025-10-20 18:46:20.614718+00 \N f 1121 114 +1204 2025-10-20 19:34:48.356423+00 \N f 1122 92 +1205 2025-10-20 19:43:58.339286+00 \N f 1123 90 +1206 2025-10-20 19:44:45.340474+00 \N f 1124 70 +1207 2025-10-20 19:44:47.514646+00 \N f 1124 74 +1208 2025-10-20 19:44:51.529914+00 \N f 1124 88 +1209 2025-10-20 19:44:53.801631+00 \N f 1124 2 +1210 2025-10-20 19:45:00.801268+00 \N f 1124 2 +1211 2025-10-20 19:45:03.946175+00 \N f 1124 14 +1212 2025-10-20 19:45:30.059063+00 \N f 1124 94 +1213 2025-10-20 20:19:28.902192+00 \N f 1125 115 +1214 2025-10-20 23:20:42.55086+00 \N f 1127 80 +1215 2025-10-20 23:23:25.571305+00 \N f 1126 108 +1216 2025-10-20 23:23:40.058945+00 \N f 1126 109 +1217 2025-10-20 23:23:46.319653+00 \N f 1126 107 +1218 2025-10-20 23:23:54.21025+00 \N f 1126 110 +1219 2025-10-21 00:19:32.92414+00 \N f 1128 98 +1220 2025-10-21 12:11:08.123997+00 \N f 1130 71 +1221 2025-10-21 12:11:08.840698+00 \N f 1130 2 +1222 2025-10-21 12:11:10.59742+00 \N f 1130 89 +1223 2025-10-21 12:11:17.111107+00 \N f 1130 78 +1224 2025-10-21 12:11:17.812818+00 \N f 1130 88 +1225 2025-10-21 12:11:22.146319+00 \N f 1130 79 +1226 2025-10-21 12:11:29.088074+00 \N f 1130 92 +1227 2025-10-21 12:11:29.994957+00 \N f 1130 68 +1228 2025-10-21 12:11:34.434014+00 \N f 1130 114 +1229 2025-10-21 12:11:38.818256+00 \N f 1130 80 +1230 2025-10-21 12:11:43.536631+00 \N f 1130 91 +1231 2025-10-21 14:20:13.58293+00 \N f 1132 115 +1232 2025-10-21 14:37:39.287245+00 \N f 1133 112 +1233 2025-10-21 14:43:58.419519+00 \N f 1134 104 +1234 2025-10-21 14:44:27.696762+00 \N f 1135 100 +1241 2025-10-21 15:23:22.035787+00 \N f 1137 99 +1242 2025-10-21 15:34:12.282961+00 \N f 1138 100 +1244 2025-10-21 17:12:32.437142+00 2025-10-21 17:23:52.56353+00 t 1141 88 +1243 2025-10-21 17:12:30.865468+00 2025-10-21 17:23:52.56353+00 f 1141 14 +1245 2025-10-21 17:12:36.361725+00 2025-10-21 17:23:52.56353+00 f 1141 94 +1246 2025-10-21 17:12:43.019687+00 2025-10-21 17:23:52.56353+00 f 1141 80 +1247 2025-10-21 17:12:50.62195+00 2025-10-21 17:23:52.56353+00 f 1141 1 +1248 2025-10-21 17:12:55.65796+00 2025-10-21 17:23:52.56353+00 f 1141 101 +1249 2025-10-21 18:29:05.873689+00 \N f 1142 75 +1252 2025-10-21 18:35:34.716119+00 2025-10-21 18:36:19.15424+00 t 1143 88 +1250 2025-10-21 18:35:29.06137+00 2025-10-21 18:36:19.15424+00 f 1143 2 +1251 2025-10-21 18:35:29.790971+00 2025-10-21 18:36:19.15424+00 f 1143 89 +1253 2025-10-21 18:35:35.746134+00 2025-10-21 18:36:19.15424+00 f 1143 9 +1254 2025-10-21 18:35:40.633331+00 2025-10-21 18:36:19.15424+00 f 1143 79 +1255 2025-10-21 18:35:48.318248+00 2025-10-21 18:36:19.15424+00 f 1143 70 +1256 2025-10-21 18:35:48.805372+00 2025-10-21 18:36:19.15424+00 f 1143 92 +1257 2025-10-21 18:35:55.724153+00 2025-10-21 18:36:19.15424+00 f 1143 91 +1258 2025-10-21 18:35:57.163884+00 2025-10-21 18:36:19.15424+00 f 1143 1 +1239 2025-10-21 15:22:55.849946+00 2025-10-21 18:42:16.928099+00 t 1129 70 +1235 2025-10-21 15:22:44.203103+00 2025-10-21 18:42:16.928099+00 f 1129 14 +1236 2025-10-21 15:22:45.107472+00 2025-10-21 18:42:16.928099+00 f 1129 2 +1237 2025-10-21 15:22:48.989465+00 2025-10-21 18:42:16.928099+00 f 1129 97 +1238 2025-10-21 15:22:54.601315+00 2025-10-21 18:42:16.928099+00 f 1129 94 +1240 2025-10-21 15:22:56.671083+00 2025-10-21 18:42:16.928099+00 f 1129 1 +1259 2025-10-21 19:06:29.104141+00 \N f 1144 88 +1260 2025-10-21 19:06:29.979958+00 \N f 1144 14 +1261 2025-10-21 19:06:35.380179+00 \N f 1144 94 +1262 2025-10-21 19:06:39.645275+00 \N f 1144 1 +1263 2025-10-21 19:06:40.873371+00 \N f 1144 74 +1264 2025-10-21 19:20:32.990553+00 \N f 1140 80 +1265 2025-10-21 19:26:52.439549+00 \N f 1145 80 +1266 2025-10-21 19:37:34.702922+00 \N f 1146 105 +1268 2025-10-21 19:55:00.865553+00 \N f 1147 78 +1269 2025-10-21 19:55:09.000699+00 \N f 1147 79 +1270 2025-10-21 19:55:09.068216+00 \N f 1147 9 +1271 2025-10-21 19:55:15.748884+00 \N f 1147 80 +1267 2025-10-21 19:55:00.15093+00 2025-10-21 20:00:05.310119+00 f 1147 97 +1272 2025-10-21 20:00:38.886396+00 \N f 1148 106 +1273 2025-10-21 20:00:39.138557+00 \N f 1148 112 +1274 2025-10-21 20:00:39.835469+00 \N f 1148 83 +1275 2025-10-21 21:36:39.455726+00 \N f 1149 98 +1276 2025-10-21 21:59:02.054337+00 \N f 1150 1 +1277 2025-10-21 21:59:08.938578+00 \N f 1150 97 +1278 2025-10-21 21:59:10.250591+00 \N f 1150 2 +1280 2025-10-21 22:17:22.892838+00 \N f 1150 94 +1281 2025-10-21 22:17:24.301861+00 \N f 1150 72 +1282 2025-10-21 22:21:18.153081+00 2025-10-21 22:48:49.732222+00 f 1150 70 +1444 2025-10-26 16:23:36.349859+00 \N f 1214 114 +1279 2025-10-21 22:17:13.762644+00 2025-10-21 22:24:03.867944+00 f 1150 21 +1283 2025-10-21 23:25:49.021769+00 \N f 1151 94 +1284 2025-10-21 23:26:52.019476+00 \N f 1151 21 +1291 2025-10-22 12:26:39.365904+00 2025-10-22 12:29:00.762062+00 t 1154 91 +1285 2025-10-22 12:26:15.918646+00 2025-10-22 12:29:00.762062+00 f 1154 89 +1286 2025-10-22 12:26:16.622822+00 2025-10-22 12:29:00.762062+00 f 1154 88 +1287 2025-10-22 12:26:23.653125+00 2025-10-22 12:29:00.762062+00 f 1154 92 +1288 2025-10-22 12:26:29.094285+00 2025-10-22 12:29:00.762062+00 f 1154 80 +1289 2025-10-22 12:26:30.624739+00 2025-10-22 12:29:00.762062+00 f 1154 1 +1290 2025-10-22 12:26:34.916112+00 2025-10-22 12:29:00.762062+00 f 1154 74 +1293 2025-10-22 13:19:22.005816+00 2025-10-22 13:21:30.490539+00 t 1152 88 +1292 2025-10-22 13:19:20.545589+00 2025-10-22 13:21:30.490539+00 f 1152 89 +1294 2025-10-22 13:19:23.134984+00 2025-10-22 13:21:30.490539+00 f 1152 79 +1295 2025-10-22 13:19:34.269455+00 2025-10-22 13:21:30.490539+00 f 1152 92 +1296 2025-10-22 13:19:39.238447+00 2025-10-22 13:21:30.490539+00 f 1152 114 +1297 2025-10-22 13:19:46.342585+00 2025-10-22 13:21:30.490539+00 f 1152 1 +1298 2025-10-22 13:19:47.500757+00 2025-10-22 13:21:30.490539+00 f 1152 91 +1299 2025-10-22 15:45:30.226432+00 \N f 1155 5 +1300 2025-10-22 15:45:31.745417+00 \N f 1155 90 +1301 2025-10-22 16:28:38.581834+00 \N f 1156 68 +1302 2025-10-22 16:33:57.711554+00 \N f 1157 89 +1303 2025-10-22 16:33:59.059905+00 \N f 1157 78 +1304 2025-10-22 16:34:01.942606+00 \N f 1157 88 +1305 2025-10-22 16:34:04.267669+00 \N f 1157 9 +1306 2025-10-22 16:34:16.634539+00 \N f 1157 68 +1307 2025-10-22 16:34:17.101756+00 \N f 1157 114 +1308 2025-10-22 16:34:27.231483+00 \N f 1157 91 +1309 2025-10-22 16:41:31.189622+00 \N f 1157 97 +1310 2025-10-22 16:41:35.814141+00 \N f 1157 79 +1311 2025-10-22 17:30:20.185123+00 2025-10-22 17:46:29.609311+00 t 1158 1 +1313 2025-10-22 19:57:25.732843+00 \N f 1163 100 +1314 2025-10-22 19:58:22.341727+00 \N f 1164 100 +1315 2025-10-22 22:55:48.968419+00 \N f 1165 87 +1316 2025-10-22 22:55:54.19422+00 \N f 1165 96 +1317 2025-10-22 23:05:31.929706+00 \N f 1159 84 +1321 2025-10-22 23:19:08.722644+00 2025-10-22 23:24:15.868075+00 t 1166 92 +1318 2025-10-22 23:19:02.868792+00 2025-10-22 23:24:15.868075+00 f 1166 88 +1319 2025-10-22 23:19:03.906278+00 2025-10-22 23:24:15.868075+00 f 1166 79 +1320 2025-10-22 23:19:07.664477+00 2025-10-22 23:24:15.868075+00 f 1166 94 +1322 2025-10-22 23:19:10.136918+00 2025-10-22 23:24:15.868075+00 f 1166 70 +1323 2025-10-22 23:19:16.90293+00 2025-10-22 23:24:15.868075+00 f 1166 1 +1324 2025-10-22 23:19:20.854745+00 2025-10-22 23:24:15.868075+00 f 1166 91 +1312 2025-10-22 19:36:22.194036+00 2025-10-22 23:26:35.416302+00 t 1162 1 +1325 2025-10-23 00:06:45.190417+00 2025-10-23 11:57:07.054206+00 t 1167 112 +1326 2025-10-23 13:29:19.48375+00 \N f 1168 70 +1327 2025-10-23 13:41:23.290933+00 \N f 1168 21 +1328 2025-10-23 14:28:56.985098+00 \N f 1169 80 +1329 2025-10-23 14:48:49.781738+00 \N f 1171 112 +1330 2025-10-23 14:48:50.531328+00 \N f 1171 106 +1331 2025-10-23 15:05:45.095844+00 \N f 1172 82 +1332 2025-10-23 15:17:50.550199+00 \N f 1173 100 +1345 2025-10-23 15:28:14.958826+00 2025-10-23 15:32:36.340043+00 t 1174 1 +1366 2025-10-23 19:08:23.278383+00 \N f 1177 82 +1361 2025-10-23 17:31:14.496742+00 2025-10-23 17:50:37.497033+00 t 1176 114 +1349 2025-10-23 17:30:31.553359+00 2025-10-23 17:50:37.497033+00 f 1176 14 +1350 2025-10-23 17:30:32.472992+00 2025-10-23 17:50:37.497033+00 f 1176 113 +1351 2025-10-23 17:30:33.800236+00 2025-10-23 17:50:37.497033+00 f 1176 71 +1352 2025-10-23 17:30:42.527454+00 2025-10-23 17:50:37.497033+00 f 1176 89 +1353 2025-10-23 17:30:44.87818+00 2025-10-23 17:50:37.497033+00 f 1176 96 +1354 2025-10-23 17:30:51.265805+00 2025-10-23 17:50:37.497033+00 f 1176 97 +1355 2025-10-23 17:30:51.833155+00 2025-10-23 17:50:37.497033+00 f 1176 78 +1356 2025-10-23 17:30:52.935682+00 2025-10-23 17:50:37.497033+00 f 1176 88 +1357 2025-10-23 17:30:59.03424+00 2025-10-23 17:50:37.497033+00 f 1176 79 +1358 2025-10-23 17:31:03.56993+00 2025-10-23 17:50:37.497033+00 f 1176 94 +1359 2025-10-23 17:31:05.477159+00 2025-10-23 17:50:37.497033+00 f 1176 92 +1360 2025-10-23 17:31:13.061119+00 2025-10-23 17:50:37.497033+00 f 1176 68 +1362 2025-10-23 17:31:20.499253+00 2025-10-23 17:50:37.497033+00 f 1176 1 +1363 2025-10-23 17:31:25.01367+00 2025-10-23 17:50:37.497033+00 f 1176 101 +1364 2025-10-23 17:31:25.828128+00 2025-10-23 17:50:37.497033+00 f 1176 74 +1365 2025-10-23 17:31:32.00889+00 2025-10-23 17:50:37.497033+00 f 1176 91 +1367 2025-10-23 19:10:08.697703+00 \N f 1178 84 +1368 2025-10-23 20:19:51.972342+00 \N f 1180 100 +1369 2025-10-23 21:18:14.37379+00 \N f 1181 111 +1370 2025-10-23 21:18:15.381515+00 \N f 1181 104 +1371 2025-10-23 21:18:16.321357+00 \N f 1181 85 +1372 2025-10-23 21:18:20.444988+00 \N f 1181 112 +1373 2025-10-23 21:18:21.505297+00 \N f 1181 106 +1374 2025-10-23 21:23:18.943836+00 \N f 1179 1 +1376 2025-10-23 21:23:31.06795+00 \N f 1179 21 +1377 2025-10-23 21:23:35.971338+00 \N f 1179 96 +1378 2025-10-23 21:23:45.682952+00 \N f 1179 113 +1375 2025-10-23 21:23:21.155263+00 2025-10-23 21:24:01.68446+00 f 1179 80 +1379 2025-10-23 21:24:11.330945+00 \N f 1179 88 +1380 2025-10-23 21:49:29.755202+00 \N f 1179 14 +1381 2025-10-23 22:19:27.451984+00 \N f 1175 82 +1382 2025-10-23 22:20:38.721662+00 \N f 1183 84 +1383 2025-10-23 22:27:34.95803+00 \N f 1184 84 +1384 2025-10-23 22:50:57.091614+00 \N f 1185 82 +1385 2025-10-24 12:51:34.483995+00 \N f 1186 94 +1386 2025-10-24 12:51:35.299114+00 \N f 1186 21 +1387 2025-10-24 13:09:29.453972+00 \N f 1186 2 +1388 2025-10-24 14:01:04.317114+00 \N f 1188 113 +1389 2025-10-24 14:55:38.240807+00 \N f 1187 112 +1390 2025-10-24 15:07:35.128917+00 \N f 1189 100 +1391 2025-10-24 15:14:50.747268+00 \N f 1190 113 +1392 2025-10-24 15:15:14.772444+00 \N f 1190 92 +1393 2025-10-24 15:15:19.284655+00 \N f 1190 70 +1394 2025-10-24 15:16:41.862673+00 \N f 1190 97 +1395 2025-10-24 15:16:44.241134+00 \N f 1190 88 +1396 2025-10-24 15:16:47.86872+00 \N f 1190 9 +1397 2025-10-24 17:55:27.950202+00 \N f 1191 100 +1403 2025-10-24 18:56:04.656831+00 2025-10-24 18:56:49.60876+00 t 1192 1 +1398 2025-10-24 18:55:11.798135+00 2025-10-24 18:56:49.60876+00 f 1192 2 +1399 2025-10-24 18:55:13.998892+00 2025-10-24 18:56:49.60876+00 f 1192 89 +1400 2025-10-24 18:55:29.340638+00 2025-10-24 18:56:49.60876+00 f 1192 88 +1401 2025-10-24 18:55:52.784911+00 2025-10-24 18:56:49.60876+00 f 1192 92 +1402 2025-10-24 18:56:01.498325+00 2025-10-24 18:56:49.60876+00 f 1192 70 +1404 2025-10-24 18:56:11.139315+00 2025-10-24 18:56:49.60876+00 f 1192 91 +1405 2025-10-24 20:39:48.917823+00 \N f 1193 100 +1406 2025-10-24 21:30:11.845372+00 \N f 1194 1 +1407 2025-10-24 23:06:40.80942+00 \N f 1195 92 +1409 2025-10-25 12:20:22.163735+00 \N f 1198 113 +1410 2025-10-25 12:20:39.173548+00 \N f 1198 87 +1411 2025-10-25 12:20:41.429163+00 \N f 1198 68 +1412 2025-10-25 13:36:57.096887+00 \N f 1199 113 +1413 2025-10-25 13:39:18.220781+00 \N f 1200 90 +1414 2025-10-25 13:41:12.874655+00 \N f 1201 112 +1415 2025-10-25 13:42:44.387492+00 \N f 1202 100 +1416 2025-10-25 14:48:59.055583+00 \N f 1204 100 +1424 2025-10-25 14:52:55.025999+00 2025-10-25 14:54:05.625653+00 t 1203 94 +1417 2025-10-25 14:51:42.311599+00 2025-10-25 14:54:05.625653+00 f 1203 1 +1418 2025-10-25 14:51:50.771999+00 2025-10-25 14:54:05.625653+00 f 1203 2 +1419 2025-10-25 14:51:59.044549+00 2025-10-25 14:54:05.625653+00 f 1203 14 +1420 2025-10-25 14:52:14.105274+00 2025-10-25 14:54:05.625653+00 f 1203 70 +1421 2025-10-25 14:52:18.014427+00 2025-10-25 14:54:05.625653+00 f 1203 74 +1422 2025-10-25 14:52:30.988138+00 2025-10-25 14:54:05.625653+00 f 1203 80 +1423 2025-10-25 14:52:43.724008+00 2025-10-25 14:54:05.625653+00 f 1203 88 +1425 2025-10-25 15:41:47.424677+00 \N f 1205 2 +1426 2025-10-25 15:42:03.036086+00 \N f 1205 9 +1427 2025-10-25 15:42:11.564466+00 \N f 1205 70 +1428 2025-10-25 15:42:30.809236+00 \N f 1205 97 +1445 2025-10-26 18:01:44.288981+00 \N f 1215 94 +1451 2025-10-26 19:02:15.591416+00 \N f 1218 114 +1453 2025-10-26 19:19:18.017236+00 \N f 1219 74 +1441 2025-10-26 12:46:10.863373+00 2025-10-26 19:34:45.161545+00 f 1213 68 +1438 2025-10-26 12:45:31.673759+00 2025-10-26 19:34:45.161545+00 f 1213 113 +1439 2025-10-26 12:45:58.091674+00 2025-10-26 19:34:45.161545+00 f 1213 80 +1408 2025-10-24 23:12:36.534163+00 2025-10-26 21:43:20.80513+00 f 1196 99 +1454 2025-10-27 12:24:49.877457+00 \N f 1220 99 +1456 2025-10-27 12:24:54.742733+00 2025-10-27 12:37:15.040642+00 f 1220 70 +1481 2025-10-27 17:13:53.739448+00 \N f 1231 100 +1458 2025-10-27 12:43:57.134235+00 2025-10-27 12:46:25.928453+00 t 1221 70 +1457 2025-10-27 12:43:52.900269+00 2025-10-27 12:46:25.928453+00 f 1221 1 +1459 2025-10-27 12:44:00.005142+00 2025-10-27 12:46:25.928453+00 f 1221 68 +1460 2025-10-27 12:44:01.728207+00 2025-10-27 12:46:25.928453+00 f 1221 99 +1461 2025-10-27 12:44:10.213971+00 2025-10-27 12:46:25.928453+00 f 1221 97 +1455 2025-10-27 12:24:51.617642+00 2025-10-27 12:55:13.820573+00 f 1220 68 +1462 2025-10-27 13:54:23.843733+00 \N f 1223 105 +1463 2025-10-27 14:03:55.659623+00 \N f 1224 104 +1464 2025-10-27 14:03:57.289515+00 \N f 1224 112 +1465 2025-10-27 14:55:11.722334+00 \N f 1225 92 +1466 2025-10-27 14:55:14.68988+00 \N f 1225 85 +1467 2025-10-27 15:04:42.078231+00 \N f 1226 92 +1468 2025-10-27 15:17:43.742233+00 \N f 1227 2 +1469 2025-10-27 15:18:15.287233+00 \N f 1227 21 +1470 2025-10-27 15:42:52.481289+00 \N f 1228 85 +1471 2025-10-27 15:43:10.752455+00 \N f 1228 104 +1472 2025-10-27 15:43:19.61264+00 \N f 1228 106 +1473 2025-10-27 16:14:46.329007+00 2025-10-27 16:15:06.326475+00 t 1229 1 +1498 2025-10-27 20:45:51.216784+00 \N f 1237 21 +1499 2025-10-27 20:45:57.316862+00 \N f 1237 94 +1480 2025-10-27 17:00:31.365053+00 2025-10-27 17:01:20.07751+00 t 1230 88 +1333 2025-10-23 15:27:12.758706+00 2025-11-05 06:02:55.269284+00 f 1174 113 +1334 2025-10-23 15:27:13.483225+00 2025-11-05 06:02:55.269284+00 f 1174 71 +1335 2025-10-23 15:27:18.484886+00 2025-11-05 06:02:55.269284+00 f 1174 2 +1336 2025-10-23 15:27:26.973304+00 2025-11-05 06:02:55.269284+00 f 1174 89 +1482 2025-10-27 17:49:50.406018+00 \N f 1222 82 +1484 2025-10-27 18:02:49.415906+00 2025-10-27 18:06:17.932644+00 t 1232 92 +1483 2025-10-27 18:02:32.201512+00 2025-10-27 18:06:17.932644+00 f 1232 94 +1485 2025-10-27 18:03:03.309132+00 2025-10-27 18:06:17.932644+00 f 1232 88 +1486 2025-10-27 18:03:18.198108+00 2025-10-27 18:06:17.932644+00 f 1232 80 +1487 2025-10-27 18:03:22.515206+00 2025-10-27 18:06:17.932644+00 f 1232 70 +1488 2025-10-27 18:13:55.825927+00 2025-10-27 18:14:17.176419+00 t 1233 68 +1489 2025-10-27 18:13:57.254276+00 2025-10-27 18:14:17.176419+00 f 1233 70 +1490 2025-10-27 18:14:11.164436+00 2025-10-27 18:14:17.176419+00 f 1233 80 +1491 2025-10-27 19:12:17.653743+00 \N f 1235 92 +1492 2025-10-27 19:21:44.220804+00 \N f 1234 99 +1495 2025-10-27 19:39:53.537477+00 \N f 1224 9 +1496 2025-10-27 19:40:04.312599+00 \N f 1224 2 +1497 2025-10-27 20:12:42.912165+00 \N f 1236 117 +1494 2025-10-27 19:39:40.523297+00 2025-10-27 20:49:06.212768+00 f 1224 21 +1500 2025-10-27 21:16:54.968377+00 \N f 1241 1 +1493 2025-10-27 19:35:28.892571+00 2025-10-27 22:11:57.797527+00 f 1224 70 +1501 2025-10-27 22:24:09.206655+00 \N f 1239 88 +1502 2025-10-27 22:40:13.39306+00 \N f 1239 92 +1503 2025-10-27 23:05:56.000414+00 \N f 1242 92 +1476 2025-10-27 16:59:46.197777+00 2025-10-30 12:09:06.356804+00 f 1230 9 +1474 2025-10-27 16:15:32.877726+00 2025-11-07 01:55:10.595858+00 f 1229 88 +1475 2025-10-27 16:15:56.212399+00 2025-11-07 01:55:10.595858+00 f 1229 94 +1504 2025-10-27 23:12:30.400339+00 2025-10-27 23:13:51.356077+00 f 1243 68 +1505 2025-10-27 23:12:40.746253+00 2025-10-27 23:13:51.356077+00 f 1243 70 +1506 2025-10-27 23:12:51.715794+00 2025-10-27 23:13:37.583098+00 f 1243 114 +1507 2025-10-27 23:14:06.388039+00 2025-10-27 23:43:30.327985+00 f 1243 92 +1508 2025-10-27 23:45:15.607664+00 \N f 1243 88 +1509 2025-10-27 23:53:44.459159+00 \N f 1244 90 +1510 2025-10-28 00:15:28.540129+00 \N f 1245 100 +1514 2025-10-28 13:32:58.813652+00 2025-10-28 13:33:14.934644+00 t 1247 80 +1511 2025-10-28 13:32:14.674446+00 2025-10-28 13:33:14.934644+00 f 1247 2 +1512 2025-10-28 13:32:21.171382+00 2025-10-28 13:33:14.934644+00 f 1247 14 +1513 2025-10-28 13:32:37.165901+00 2025-10-28 13:33:14.934644+00 f 1247 88 +1515 2025-10-28 13:33:00.501618+00 2025-10-28 13:33:14.934644+00 f 1247 1 +1516 2025-10-28 15:59:37.397374+00 \N f 1253 106 +1517 2025-10-28 15:59:37.550078+00 \N f 1253 112 +1518 2025-10-28 16:00:41.401342+00 \N f 1251 82 +1519 2025-10-28 16:24:02.190853+00 \N f 1254 100 +1520 2025-10-28 16:39:53.958691+00 2025-10-28 16:40:03.503518+00 f 1255 113 +1521 2025-10-28 16:40:09.50027+00 \N f 1255 68 +1522 2025-10-28 17:31:11.389786+00 \N f 1252 82 +1524 2025-10-28 18:03:17.783296+00 \N f 1258 113 +1525 2025-10-28 18:03:22.843723+00 \N f 1258 68 +1526 2025-10-28 18:32:20.878365+00 2025-10-28 18:32:42.447453+00 f 1249 85 +1527 2025-10-28 18:32:21.298322+00 2025-10-28 18:32:42.447453+00 f 1249 104 +1528 2025-10-28 18:32:21.944153+00 2025-10-28 18:32:42.447453+00 f 1249 116 +1529 2025-10-28 18:32:26.794443+00 2025-10-28 18:32:42.447453+00 f 1249 111 +1530 2025-10-28 18:32:28.579497+00 2025-10-28 18:32:42.447453+00 f 1249 106 +1531 2025-10-28 18:32:33.021831+00 2025-10-28 18:32:42.447453+00 f 1249 112 +1532 2025-10-28 19:25:48.385492+00 2025-10-28 19:25:59.31013+00 t 1259 1 +1533 2025-10-28 19:25:54.927675+00 2025-10-28 19:25:59.31013+00 f 1259 88 +1534 2025-10-28 19:26:28.68221+00 \N f 1259 92 +1535 2025-10-28 19:26:57.860599+00 \N f 1259 14 +1537 2025-10-28 19:44:11.669467+00 \N f 1260 90 +1539 2025-10-28 19:45:32.305569+00 \N f 1250 82 +1538 2025-10-28 19:44:28.927692+00 2025-10-28 19:45:54.803854+00 f 1260 119 +1536 2025-10-28 19:44:10.456638+00 2025-10-28 19:53:01.389743+00 f 1260 5 +1540 2025-10-28 20:06:26.416151+00 \N f 1261 104 +1541 2025-10-28 20:06:28.012102+00 \N f 1261 112 +1543 2025-10-28 20:20:54.771995+00 \N f 1262 90 +1544 2025-10-28 20:20:55.285779+00 \N f 1262 5 +1545 2025-10-28 20:20:56.337269+00 2025-10-28 20:21:12.480093+00 f 1262 119 +1546 2025-10-28 20:22:33.364512+00 \N f 1263 100 +1547 2025-10-28 20:46:52.347507+00 2025-10-28 20:49:45.220213+00 t 1264 1 +1554 2025-10-28 21:04:15.74838+00 2025-10-29 00:08:45.324612+00 f 1267 70 +1571 2025-10-28 23:44:01.584741+00 2025-10-29 01:51:36.162941+00 f 1270 79 +1551 2025-10-28 20:56:19.156376+00 \N f 1265 80 +1552 2025-10-28 20:59:25.74568+00 \N f 1266 68 +1553 2025-10-28 21:04:11.919709+00 \N f 1267 1 +1555 2025-10-28 21:04:27.036438+00 \N f 1267 21 +1556 2025-10-28 21:04:49.753147+00 \N f 1267 94 +1542 2025-10-28 20:06:32.493093+00 2025-10-28 21:07:03.268538+00 f 1261 106 +1557 2025-10-28 21:29:12.66898+00 \N f 1267 9 +1558 2025-10-28 21:29:17.559202+00 \N f 1267 79 +1559 2025-10-28 21:29:22.87966+00 \N f 1267 80 +1560 2025-10-28 21:29:40.226838+00 \N f 1267 92 +1434 2025-10-26 12:44:09.375352+00 2025-10-28 21:44:42.718102+00 f 1212 92 +1433 2025-10-26 12:43:55.113966+00 2025-10-28 21:44:42.718102+00 f 1212 88 +1436 2025-10-26 12:44:26.547457+00 2025-10-28 21:44:42.718102+00 f 1212 80 +1437 2025-10-26 12:44:32.412754+00 2025-10-28 21:44:42.718102+00 f 1212 1 +1561 2025-10-28 21:57:40.817889+00 \N f 1269 21 +1562 2025-10-28 21:57:46.754911+00 \N f 1269 94 +1572 2025-10-28 23:44:08.949233+00 2025-10-29 01:51:36.162941+00 f 1270 94 +1573 2025-10-28 23:44:13.291998+00 2025-10-29 01:51:36.162941+00 f 1270 92 +1563 2025-10-28 23:34:34.629288+00 2025-10-29 01:51:36.162941+00 f 1270 113 +1564 2025-10-28 23:34:40.349527+00 2025-10-29 01:51:36.162941+00 f 1270 14 +1565 2025-10-28 23:34:44.373111+00 2025-10-29 01:51:36.162941+00 f 1270 71 +1566 2025-10-28 23:34:49.269789+00 2025-10-29 01:51:36.162941+00 f 1270 89 +1567 2025-10-28 23:34:54.784161+00 2025-10-29 01:51:36.162941+00 f 1270 97 +1568 2025-10-28 23:34:58.897594+00 2025-10-29 01:51:36.162941+00 f 1270 78 +1582 2025-10-29 12:30:51.054013+00 2025-10-29 12:31:05.260647+00 f 1272 78 +1583 2025-10-29 12:30:57.801818+00 2025-10-29 12:31:05.260647+00 f 1272 80 +1577 2025-10-29 12:29:49.773794+00 2025-10-29 12:31:05.260647+00 f 1272 14 +1578 2025-10-29 12:29:52.374114+00 2025-10-29 12:31:05.260647+00 f 1272 2 +1579 2025-10-29 12:30:15.645061+00 2025-10-29 12:31:05.260647+00 f 1272 101 +1581 2025-10-29 12:30:39.650323+00 2025-10-29 12:31:05.260647+00 f 1272 88 +1584 2025-10-29 12:31:22.305739+00 \N f 1272 71 +1580 2025-10-29 12:30:17.166595+00 2025-10-29 12:31:05.260647+00 f 1272 1 +1569 2025-10-28 23:43:59.794221+00 2025-10-29 01:51:36.162941+00 f 1270 88 +1570 2025-10-28 23:44:00.734592+00 2025-10-29 01:51:36.162941+00 f 1270 9 +1574 2025-10-28 23:44:15.468255+00 2025-10-29 01:51:36.162941+00 f 1270 99 +1575 2025-10-28 23:44:22.464826+00 2025-10-29 01:51:36.162941+00 f 1270 68 +1576 2025-10-28 23:44:24.310806+00 2025-10-29 01:51:36.162941+00 f 1270 114 +1585 2025-10-29 13:02:20.245141+00 \N f 1273 95 +1586 2025-10-29 13:06:34.550314+00 \N f 1274 95 +1587 2025-10-29 13:12:07.423071+00 \N f 1275 96 +1593 2025-10-29 14:19:45.403529+00 2025-10-29 14:22:25.268681+00 t 1278 80 +1589 2025-10-29 14:18:48.522006+00 2025-10-29 14:22:25.268681+00 f 1278 2 +1590 2025-10-29 14:19:04.960743+00 2025-10-29 14:22:25.268681+00 f 1278 9 +1591 2025-10-29 14:19:15.421898+00 2025-10-29 14:22:25.268681+00 f 1278 68 +1592 2025-10-29 14:19:36.734419+00 2025-10-29 14:22:25.268681+00 f 1278 88 +1594 2025-10-29 15:15:11.298215+00 \N f 1277 85 +1595 2025-10-29 15:15:11.536587+00 \N f 1277 104 +1596 2025-10-29 15:15:12.516874+00 \N f 1277 116 +1597 2025-10-29 15:15:13.548867+00 \N f 1277 111 +1598 2025-10-29 15:15:20.02647+00 \N f 1277 106 +1599 2025-10-29 15:15:20.217161+00 \N f 1277 112 +1602 2025-10-29 15:32:13.552964+00 \N f 1281 103 +1440 2025-10-26 12:46:05.535671+00 2025-10-26 19:34:45.161545+00 f 1213 114 +1588 2025-10-29 14:09:32.076525+00 2025-10-29 15:44:52.141607+00 t 1276 96 +1603 2025-10-29 16:06:34.548886+00 \N f 1282 100 +1606 2025-10-29 16:18:39.770975+00 2025-10-29 18:05:44.18039+00 t 1283 68 +1604 2025-10-29 16:18:19.403328+00 2025-10-29 18:05:44.18039+00 f 1283 2 +1523 2025-10-28 18:01:26.999939+00 2025-10-30 11:13:00.171205+00 t 1257 92 +1548 2025-10-28 20:46:54.00098+00 2025-11-06 00:44:27.214486+00 f 1264 80 +1549 2025-10-28 20:46:56.189835+00 2025-11-06 00:44:27.214486+00 f 1264 70 +1550 2025-10-28 20:47:16.84144+00 2025-11-06 00:44:27.214486+00 f 1264 88 +1601 2025-10-29 15:23:19.129457+00 2025-10-29 17:06:59.887697+00 t 1280 21 +1600 2025-10-29 15:23:05.299771+00 2025-10-29 17:06:59.887697+00 f 1280 94 +1658 2025-10-30 13:36:42.883732+00 \N f 1298 85 +1605 2025-10-29 16:18:28.480675+00 2025-10-29 18:05:44.18039+00 f 1283 9 +1607 2025-10-29 16:18:46.495821+00 2025-10-29 18:05:44.18039+00 f 1283 70 +1608 2025-10-29 16:19:07.970706+00 2025-10-29 18:05:44.18039+00 f 1283 88 +1609 2025-10-29 16:19:10.78073+00 2025-10-29 18:05:44.18039+00 f 1283 89 +1610 2025-10-29 16:19:24.216015+00 2025-10-29 18:05:44.18039+00 f 1283 91 +1659 2025-10-30 13:36:43.628369+00 \N f 1298 104 +1660 2025-10-30 13:36:43.88079+00 \N f 1298 116 +1616 2025-10-29 18:13:27.041685+00 2025-10-29 18:32:36.471993+00 t 1286 92 +1614 2025-10-29 18:13:07.375754+00 2025-10-29 18:32:36.471993+00 f 1286 68 +1615 2025-10-29 18:13:12.028981+00 2025-10-29 18:32:36.471993+00 f 1286 70 +1617 2025-10-29 18:13:41.967109+00 2025-10-29 18:32:36.471993+00 f 1286 113 +1618 2025-10-29 18:37:05.990624+00 \N f 1287 89 +1613 2025-10-29 17:16:29.886196+00 2025-10-29 18:52:17.071451+00 t 1284 114 +1661 2025-10-30 13:36:48.69841+00 \N f 1298 111 +1662 2025-10-30 13:36:50.406617+00 \N f 1298 106 +1663 2025-10-30 13:36:50.589972+00 \N f 1298 112 +1685 2025-10-30 21:26:49.633506+00 \N f 1307 113 +1619 2025-10-29 19:48:25.816578+00 \N f 1276 1 +1620 2025-10-29 19:48:50.851066+00 \N f 1276 70 +1621 2025-10-29 19:48:51.606198+00 \N f 1276 80 +1622 2025-10-29 19:48:59.206515+00 2025-10-29 19:49:06.947943+00 f 1276 88 +1623 2025-10-29 20:27:38.6226+00 \N f 1289 100 +1624 2025-10-29 20:27:41.427528+00 \N f 1289 85 +1625 2025-10-29 21:41:11.277173+00 \N f 1290 68 +1626 2025-10-29 21:41:13.249922+00 \N f 1290 70 +1627 2025-10-29 21:41:20.441292+00 \N f 1290 79 +1628 2025-10-29 21:41:48.109748+00 \N f 1290 113 +1629 2025-10-29 21:41:55.880349+00 \N f 1290 114 +1686 2025-10-30 21:27:09.163964+00 \N f 1307 89 +1687 2025-10-30 21:27:10.696097+00 \N f 1307 96 +1633 2025-10-29 23:08:48.223819+00 2025-10-29 23:14:44.060505+00 t 1291 114 +1630 2025-10-29 23:08:30.00798+00 2025-10-30 14:02:18.212973+00 f 1291 70 +1631 2025-10-29 23:08:38.929489+00 2025-10-30 14:02:18.212973+00 f 1291 92 +1632 2025-10-29 23:08:46.576071+00 2025-10-30 14:02:18.212973+00 f 1291 68 +1688 2025-10-30 21:28:58.759356+00 \N f 1307 92 +1634 2025-10-29 23:48:37.341461+00 \N f 1292 100 +1611 2025-10-29 17:16:05.670247+00 2025-10-30 01:30:08.468752+00 f 1284 70 +1612 2025-10-29 17:16:18.390761+00 2025-10-30 01:30:08.468752+00 f 1284 92 +1477 2025-10-27 16:59:55.809815+00 2025-10-30 12:09:06.356804+00 f 1230 68 +1478 2025-10-27 17:00:00.682148+00 2025-10-30 12:09:06.356804+00 f 1230 70 +1479 2025-10-27 17:00:18.426099+00 2025-10-30 12:09:06.356804+00 f 1230 78 +1635 2025-10-30 12:35:44.204848+00 \N f 1293 96 +1636 2025-10-30 12:35:55.599397+00 \N f 1293 87 +1640 2025-10-30 12:40:12.708696+00 2025-10-30 12:40:49.907215+00 t 1294 80 +1692 2025-10-30 23:31:33.991065+00 \N f 1310 67 +1693 2025-10-30 23:35:20.73317+00 \N f 1311 67 +1694 2025-10-30 23:42:33.484628+00 \N f 1312 67 +1695 2025-10-30 23:43:58.650025+00 \N f 1313 67 +1696 2025-10-31 12:31:32.679253+00 \N f 1315 100 +1697 2025-10-31 13:08:00.67731+00 \N f 1316 90 +1645 2025-10-30 12:51:44.410656+00 2025-10-30 12:52:34.282998+00 t 1295 1 +1646 2025-10-30 12:51:58.876052+00 2025-10-30 12:52:34.282998+00 f 1295 21 +1647 2025-10-30 12:52:13.243412+00 2025-10-30 12:52:34.282998+00 f 1295 92 +1648 2025-10-30 12:52:14.280178+00 2025-10-30 12:52:34.282998+00 f 1295 70 +1649 2025-10-30 12:57:51.319637+00 2025-10-30 12:59:31.345042+00 t 1296 1 +1650 2025-10-30 12:58:14.410777+00 2025-10-30 12:59:31.345042+00 f 1296 70 +1651 2025-10-30 12:58:29.029925+00 2025-10-30 12:59:31.345042+00 f 1296 92 +1655 2025-10-30 13:13:43.544996+00 2025-10-30 13:15:03.927639+00 t 1297 80 +1652 2025-10-30 13:11:57.578039+00 2025-10-30 13:15:03.927639+00 f 1297 1 +1653 2025-10-30 13:12:12.70539+00 2025-10-30 13:15:03.927639+00 f 1297 71 +1654 2025-10-30 13:13:31.450313+00 2025-10-30 13:15:03.927639+00 f 1297 70 +1656 2025-10-30 13:13:56.237077+00 2025-10-30 13:15:03.927639+00 f 1297 88 +1657 2025-10-30 13:14:09.725195+00 2025-10-30 13:15:03.927639+00 f 1297 101 +1664 2025-10-30 14:27:56.787683+00 \N f 1300 85 +1665 2025-10-30 14:27:57.283519+00 \N f 1300 104 +1667 2025-10-30 14:28:02.507994+00 \N f 1300 111 +1668 2025-10-30 14:28:03.60756+00 \N f 1300 106 +1669 2025-10-30 14:28:04.236701+00 \N f 1300 112 +1670 2025-10-30 14:39:51.898807+00 \N f 1301 74 +1671 2025-10-30 16:14:45.154206+00 \N f 1303 100 +1672 2025-10-30 16:36:40.154851+00 \N f 1304 114 +1673 2025-10-30 16:43:58.142492+00 \N f 1305 85 +1674 2025-10-30 16:43:58.623868+00 \N f 1305 104 +1676 2025-10-30 16:44:00.117228+00 \N f 1305 111 +1677 2025-10-30 16:44:04.637198+00 \N f 1305 106 +1678 2025-10-30 16:44:05.177855+00 \N f 1305 112 +1679 2025-10-30 17:37:42.041834+00 2025-10-30 17:42:19.885924+00 t 1302 1 +1699 2025-10-31 13:44:32.870883+00 \N f 1317 2 +1698 2025-10-31 13:44:20.916399+00 2025-10-31 13:48:28.675742+00 f 1317 70 +1691 2025-10-30 22:57:46.533325+00 \N f 1309 85 +1684 2025-10-30 17:56:00.1925+00 \N f 1306 80 +1675 2025-10-30 16:43:59.280968+00 2025-10-30 18:24:29.509697+00 f 1305 116 +1666 2025-10-30 14:27:57.791988+00 2025-10-30 18:27:13.641768+00 f 1300 116 +1680 2025-10-30 17:37:54.539185+00 2025-10-30 21:18:02.74095+00 f 1302 2 +1681 2025-10-30 17:38:04.852953+00 2025-10-30 21:18:02.74095+00 f 1302 70 +1682 2025-10-30 17:38:23.394275+00 2025-10-30 21:18:02.74095+00 f 1302 88 +1683 2025-10-30 17:38:43.659578+00 2025-10-30 21:18:02.74095+00 f 1302 94 +1689 2025-10-30 22:35:08.674888+00 2025-10-30 22:58:07.150159+00 t 1308 14 +1690 2025-10-30 22:35:17.002192+00 2025-10-30 22:58:07.150159+00 f 1308 97 +1637 2025-10-30 12:39:38.109053+00 2025-10-30 23:25:26.882157+00 f 1294 2 +1638 2025-10-30 12:39:54.071489+00 2025-10-30 23:25:26.882157+00 f 1294 68 +1639 2025-10-30 12:40:01.262489+00 2025-10-30 23:25:26.882157+00 f 1294 70 +1641 2025-10-30 12:40:20.510501+00 2025-10-30 23:25:26.882157+00 f 1294 78 +1642 2025-10-30 12:40:35.07343+00 2025-10-30 23:25:26.882157+00 f 1294 88 +1643 2025-10-30 12:40:40.937483+00 2025-10-30 23:25:26.882157+00 f 1294 89 +1644 2025-10-30 12:40:53.170495+00 2025-10-30 23:25:26.882157+00 f 1294 91 +1700 2025-10-31 14:15:01.362068+00 \N f 1318 113 +1701 2025-10-31 14:15:05.176553+00 \N f 1318 85 +1702 2025-10-31 14:18:28.950272+00 \N f 1319 90 +1703 2025-10-31 14:18:31.541946+00 \N f 1319 90 +1704 2025-10-31 14:52:19.816513+00 \N f 1320 90 +1705 2025-10-31 14:54:29.008486+00 \N f 1321 84 +1706 2025-10-31 15:19:41.390703+00 \N f 1322 21 +1707 2025-10-31 16:23:04.801973+00 \N f 1323 88 +1708 2025-10-31 17:00:17.424053+00 2025-10-31 17:00:49.187121+00 t 1324 1 +1711 2025-10-31 17:24:16.590124+00 2025-10-31 20:56:58.69+00 t 1328 21 +1430 2025-10-25 17:51:00.79517+00 2025-10-31 18:32:20.623426+00 t 1206 118 +1709 2025-10-31 17:14:52.203674+00 2025-10-31 18:37:16.819403+00 t 1326 70 +1710 2025-10-31 17:14:57.007221+00 2025-10-31 18:37:16.819403+00 f 1326 92 +1712 2025-10-31 20:11:23.134305+00 2025-10-31 20:12:28.938182+00 t 1329 1 +1715 2025-10-31 20:40:20.343327+00 \N f 1330 1 +1714 2025-10-31 20:36:14.237415+00 2025-10-31 21:08:40.317875+00 f 1330 94 +1723 2025-10-31 22:17:04.771539+00 2025-10-31 22:17:47.791435+00 t 1333 80 +1717 2025-10-31 22:16:02.567483+00 2025-10-31 22:17:47.791435+00 f 1333 1 +1718 2025-10-31 22:16:09.204747+00 2025-10-31 22:17:47.791435+00 f 1333 2 +1719 2025-10-31 22:16:22.467203+00 2025-10-31 22:17:47.791435+00 f 1333 68 +1720 2025-10-31 22:16:31.574614+00 2025-10-31 22:17:47.791435+00 f 1333 70 +1721 2025-10-31 22:16:49.448848+00 2025-10-31 22:17:47.791435+00 f 1333 78 +1722 2025-10-31 22:16:54.388024+00 2025-10-31 22:17:47.791435+00 f 1333 79 +1724 2025-10-31 22:17:22.756184+00 2025-10-31 22:17:47.791435+00 f 1333 88 +1725 2025-10-31 22:17:28.326105+00 2025-10-31 22:17:47.791435+00 f 1333 89 +1726 2025-10-31 22:17:37.340349+00 2025-10-31 22:17:47.791435+00 f 1333 91 +1727 2025-10-31 22:25:20.530048+00 \N f 1331 1 +1729 2025-10-31 22:25:38.608036+00 \N f 1331 80 +1730 2025-10-31 22:25:50.676273+00 2025-10-31 22:26:22.116449+00 f 1331 101 +1728 2025-10-31 22:25:30.007999+00 2025-10-31 22:27:13.766914+00 f 1331 70 +1731 2025-10-31 22:47:53.947209+00 2025-10-31 22:48:40.568031+00 t 1335 88 +1732 2025-10-31 23:37:30.064599+00 \N f 1336 14 +1734 2025-10-31 23:37:49.309774+00 \N f 1336 80 +1735 2025-10-31 23:38:00.318195+00 \N f 1336 88 +1733 2025-10-31 23:37:42.920362+00 2025-10-31 23:56:54.256273+00 f 1336 70 +1737 2025-11-01 12:56:47.950608+00 2025-11-01 12:57:17.290074+00 t 1339 1 +1738 2025-11-01 12:57:03.638066+00 2025-11-01 12:57:17.290074+00 f 1339 14 +1741 2025-11-01 12:57:37.594097+00 2025-11-01 12:57:47.532345+00 f 1339 80 +1742 2025-11-01 12:57:47.733485+00 \N f 1339 88 +1743 2025-11-01 12:57:58.694026+00 \N f 1339 89 +1744 2025-11-01 12:58:08.390502+00 \N f 1339 91 +1745 2025-11-01 12:58:18.078473+00 \N f 1339 92 +1740 2025-11-01 12:57:27.730395+00 2025-11-01 13:09:45.695907+00 f 1339 74 +1736 2025-11-01 12:45:51.045272+00 2025-11-01 13:11:04.252728+00 t 1338 114 +1756 2025-11-01 13:14:52.522193+00 \N f 1341 1 +1758 2025-11-01 13:15:14.847023+00 \N f 1341 71 +1759 2025-11-01 13:15:24.462036+00 \N f 1341 79 +1760 2025-11-01 13:15:29.059507+00 \N f 1341 80 +1761 2025-11-01 13:15:42.461357+00 \N f 1341 89 +1762 2025-11-01 13:16:29.068329+00 \N f 1341 92 +1763 2025-11-01 13:16:35.255812+00 \N f 1341 94 +1747 2025-11-01 13:10:22.631002+00 2025-11-01 13:22:36.420642+00 t 1340 68 +1746 2025-11-01 13:10:10.633126+00 2025-11-01 13:22:36.420642+00 f 1340 9 +1748 2025-11-01 13:10:28.815823+00 2025-11-01 13:22:36.420642+00 f 1340 70 +1749 2025-11-01 13:10:38.042568+00 2025-11-01 13:22:36.420642+00 f 1340 71 +1750 2025-11-01 13:10:52.429419+00 2025-11-01 13:22:36.420642+00 f 1340 78 +1751 2025-11-01 13:11:02.933398+00 2025-11-01 13:22:36.420642+00 f 1340 79 +1752 2025-11-01 13:11:10.228722+00 2025-11-01 13:22:36.420642+00 f 1340 80 +1753 2025-11-01 13:11:20.628216+00 2025-11-01 13:22:36.420642+00 f 1340 88 +1754 2025-11-01 13:11:28.303346+00 2025-11-01 13:22:36.420642+00 f 1340 89 +1755 2025-11-01 13:11:36.853432+00 2025-11-01 13:22:36.420642+00 f 1340 91 +1739 2025-11-01 12:57:17.574942+00 2025-11-01 13:22:46.97476+00 f 1339 70 +1757 2025-11-01 13:15:06.455638+00 2025-11-01 13:26:33.695525+00 f 1341 70 +1770 2025-11-01 13:36:46.662432+00 2025-11-01 13:42:33.31624+00 t 1342 78 +1807 2025-11-03 12:11:12.900541+00 \N f 1362 70 +1791 2025-11-01 23:11:17.9051+00 \N f 1357 70 +1792 2025-11-02 12:27:52.508066+00 \N f 1341 88 +1793 2025-11-02 12:28:17.029069+00 \N f 1341 68 +1794 2025-11-02 12:28:23.167324+00 \N f 1341 114 +1795 2025-11-02 18:35:59.167767+00 \N f 1358 88 +1796 2025-11-02 18:36:08.762086+00 \N f 1358 92 +1772 2025-11-01 15:17:50.509828+00 \N f 1346 103 +1773 2025-11-01 15:17:51.12289+00 \N f 1346 117 +1774 2025-11-01 15:18:48.714647+00 \N f 1345 99 +1775 2025-11-01 15:18:50.370695+00 2025-11-01 15:27:26.386464+00 f 1345 68 +1776 2025-11-01 15:45:17.540671+00 \N f 1347 88 +1797 2025-11-02 18:36:17.985668+00 \N f 1358 114 +1777 2025-11-01 16:19:58.179769+00 2025-11-01 16:31:16.948738+00 t 1344 92 +1778 2025-11-01 16:23:41.779945+00 2025-11-01 16:32:30.575244+00 t 1348 92 +1779 2025-11-01 16:23:46.737449+00 2025-11-01 16:32:30.575244+00 f 1348 68 +1780 2025-11-01 16:23:51.728453+00 2025-11-01 16:32:30.575244+00 f 1348 70 +1781 2025-11-01 16:24:07.564173+00 2025-11-01 16:32:30.575244+00 f 1348 9 +1782 2025-11-01 16:24:28.351288+00 2025-11-01 16:32:30.575244+00 f 1348 71 +1783 2025-11-01 16:24:44.233799+00 2025-11-01 16:32:30.575244+00 f 1348 79 +1784 2025-11-01 16:24:50.390433+00 2025-11-01 16:32:30.575244+00 f 1348 80 +1785 2025-11-01 16:25:12.120205+00 2025-11-01 16:32:30.575244+00 f 1348 88 +1786 2025-11-01 16:25:17.530039+00 2025-11-01 16:32:30.575244+00 f 1348 89 +1787 2025-11-01 16:47:08.443173+00 \N f 1349 89 +1788 2025-11-01 18:00:45.353659+00 \N f 1351 92 +1789 2025-11-01 18:16:33.95276+00 \N f 1352 82 +1790 2025-11-01 19:52:07.44766+00 \N f 1354 68 +1764 2025-11-01 13:35:48.30945+00 2025-11-01 21:24:40.786472+00 f 1342 68 +1765 2025-11-01 13:36:06.528977+00 2025-11-01 21:24:40.786472+00 f 1342 71 +1766 2025-11-01 13:36:18.341434+00 2025-11-01 21:24:40.786472+00 f 1342 79 +1767 2025-11-01 13:36:23.238188+00 2025-11-01 21:24:40.786472+00 f 1342 70 +1768 2025-11-01 13:36:35.789241+00 2025-11-01 21:24:40.786472+00 f 1342 80 +1769 2025-11-01 13:36:45.581562+00 2025-11-01 21:24:40.786472+00 f 1342 88 +1771 2025-11-01 13:36:51.962699+00 2025-11-01 21:24:40.786472+00 f 1342 89 +1798 2025-11-02 18:36:23.454825+00 \N f 1358 70 +1799 2025-11-02 18:36:31.340361+00 \N f 1358 1 +1800 2025-11-02 18:36:36.283044+00 \N f 1358 80 +1801 2025-11-02 18:57:58.712137+00 \N f 1360 89 +1802 2025-11-02 18:58:17.768627+00 \N f 1360 92 +1803 2025-11-02 18:58:28.268674+00 \N f 1360 70 +1804 2025-11-02 19:08:03.800523+00 \N f 1360 80 +1805 2025-11-02 19:49:42.073589+00 \N f 1361 70 +1806 2025-11-03 12:10:58.56179+00 \N f 1362 2 +1808 2025-11-03 12:11:19.479187+00 \N f 1362 21 +1809 2025-11-03 13:55:15.361673+00 \N f 1366 1 +1811 2025-11-03 13:55:35.880009+00 \N f 1366 80 +1812 2025-11-03 13:55:39.333366+00 \N f 1366 80 +1813 2025-11-03 13:55:46.287523+00 \N f 1366 14 +1814 2025-11-03 13:56:04.829948+00 \N f 1366 94 +1815 2025-11-03 13:59:55.44502+00 \N f 1367 82 +1716 2025-10-31 20:50:27.119882+00 2025-11-07 16:52:19.528131+00 f 1330 113 +1816 2025-11-03 14:05:00.041876+00 2025-11-03 14:43:39.638928+00 f 1368 68 +1713 2025-10-31 20:35:44.80196+00 2025-11-24 17:32:08.989791+00 f 1330 21 +1810 2025-11-03 13:55:31.465503+00 2025-11-03 14:13:50.614718+00 f 1366 70 +1821 2025-11-03 14:21:14.096565+00 2025-11-03 14:27:06.481271+00 t 1369 80 +1823 2025-11-03 14:30:13.843406+00 \N f 1370 68 +1824 2025-11-03 14:36:06.446175+00 \N f 1371 89 +1820 2025-11-03 14:21:12.408927+00 2025-11-03 14:38:43.61886+00 f 1369 1 +1822 2025-11-03 14:21:15.418838+00 2025-11-03 14:38:43.61886+00 f 1369 70 +1819 2025-11-03 14:05:33.33803+00 2025-11-03 14:43:39.638928+00 t 1368 88 +1817 2025-11-03 14:05:10.321538+00 2025-11-03 14:43:39.638928+00 f 1368 79 +1818 2025-11-03 14:05:16.613406+00 2025-11-03 14:43:39.638928+00 f 1368 9 +1828 2025-11-03 15:17:01.554658+00 2025-11-03 15:17:37.14166+00 t 1372 89 +1898 2025-11-04 19:57:05.812255+00 2025-11-08 01:35:05.498564+00 f 1406 88 +1899 2025-11-04 19:57:15.677722+00 2025-11-08 01:35:05.498564+00 f 1406 91 +1900 2025-11-04 19:57:27.514305+00 2025-11-08 01:35:05.498564+00 f 1406 94 +1834 2025-11-03 17:28:55.758187+00 2025-11-03 17:29:07.837375+00 t 1373 1 +1881 2025-11-04 17:29:45.134129+00 \N f 1399 118 +1882 2025-11-04 17:30:39.174793+00 \N f 1400 118 +1883 2025-11-04 18:27:53.171952+00 \N f 1401 90 +1835 2025-11-03 17:53:32.596159+00 2025-11-03 17:53:55.8648+00 f 1374 94 +1836 2025-11-03 17:53:51.373649+00 2025-11-03 17:53:55.8648+00 f 1374 21 +1839 2025-11-03 18:09:26.501628+00 2025-11-03 18:15:34.751201+00 t 1376 88 +1837 2025-11-03 18:09:08.561595+00 2025-11-03 18:15:34.751201+00 f 1376 68 +1838 2025-11-03 18:09:18.841819+00 2025-11-03 18:15:34.751201+00 f 1376 80 +1840 2025-11-03 18:09:39.258517+00 2025-11-03 18:15:34.751201+00 f 1376 91 +1841 2025-11-03 18:09:50.31437+00 2025-11-03 18:15:34.751201+00 f 1376 94 +1842 2025-11-03 18:17:20.414167+00 \N f 1377 90 +1843 2025-11-03 18:33:01.184969+00 \N f 1378 68 +1829 2025-11-03 16:48:02.958237+00 2025-11-03 18:41:26.59853+00 f 1373 92 +1830 2025-11-03 17:28:14.682745+00 2025-11-03 18:41:26.59853+00 f 1373 88 +1831 2025-11-03 17:28:28.212354+00 2025-11-03 18:41:26.59853+00 f 1373 114 +1832 2025-11-03 17:28:35.267259+00 2025-11-03 18:41:26.59853+00 f 1373 70 +1833 2025-11-03 17:28:48.153662+00 2025-11-03 18:41:26.59853+00 f 1373 80 +1844 2025-11-03 20:02:01.146506+00 \N f 1383 100 +1845 2025-11-03 23:12:54.859655+00 \N f 1382 1 +1846 2025-11-03 23:15:17.149573+00 \N f 1381 98 +1847 2025-11-03 23:58:04.856448+00 \N f 1384 95 +1848 2025-11-04 12:18:40.07335+00 \N f 1386 21 +1850 2025-11-04 12:18:59.014196+00 \N f 1386 71 +1851 2025-11-04 12:19:41.153858+00 \N f 1386 114 +1849 2025-11-04 12:18:50.582009+00 2025-11-04 12:49:04.423221+00 f 1386 70 +1854 2025-11-04 14:37:17.315898+00 2025-11-04 14:40:06.020021+00 t 1390 92 +1852 2025-11-04 14:36:56.510087+00 2025-11-04 14:40:06.020021+00 f 1390 68 +1853 2025-11-04 14:37:02.825785+00 2025-11-04 14:40:06.020021+00 f 1390 80 +1855 2025-11-04 14:37:25.552843+00 2025-11-04 14:40:06.020021+00 f 1390 88 +1857 2025-11-04 15:01:06.669649+00 \N f 1391 71 +1858 2025-11-04 15:01:30.816642+00 \N f 1391 92 +1859 2025-11-04 15:01:33.993001+00 \N f 1391 114 +1856 2025-11-04 15:00:59.836367+00 2025-11-04 15:05:08.974956+00 f 1391 70 +1860 2025-11-04 15:05:11.480165+00 \N f 1387 92 +1861 2025-11-04 15:34:10.929338+00 \N f 1392 114 +1862 2025-11-04 15:43:27.285524+00 2025-11-04 15:44:48.143533+00 t 1394 1 +1906 2025-11-04 22:49:49.117351+00 \N f 1409 85 +1907 2025-11-04 22:52:20.323457+00 \N f 1409 104 +1865 2025-11-04 16:19:46.898427+00 \N f 1395 2 +1866 2025-11-04 16:19:53.735824+00 \N f 1395 21 +1867 2025-11-04 16:19:56.900286+00 \N f 1395 70 +1868 2025-11-04 16:34:07.267309+00 2025-11-04 16:35:16.587628+00 t 1396 68 +1869 2025-11-04 16:34:10.082361+00 2025-11-04 16:35:16.587628+00 f 1396 70 +1870 2025-11-04 16:34:26.778423+00 2025-11-04 16:35:16.587628+00 f 1396 78 +1871 2025-11-04 16:34:58.120004+00 2025-11-04 16:35:16.587628+00 f 1396 80 +1872 2025-11-04 17:05:23.99093+00 \N f 1397 100 +1885 2025-11-04 19:00:34.453582+00 2025-11-04 19:01:32.044568+00 t 1402 94 +1884 2025-11-04 19:00:29.224166+00 2025-11-04 19:01:32.044568+00 f 1402 21 +1886 2025-11-04 19:22:05.369089+00 \N f 1403 94 +1893 2025-11-04 19:48:46.162613+00 2025-11-04 19:49:11.873432+00 t 1405 1 +1894 2025-11-04 19:48:55.840572+00 2025-11-04 19:49:11.873432+00 f 1405 70 +1895 2025-11-04 19:49:07.338576+00 2025-11-04 19:49:11.873432+00 f 1405 80 +1863 2025-11-04 15:43:30.892186+00 2025-11-04 19:49:11.974167+00 f 1394 80 +1864 2025-11-04 15:43:33.606947+00 2025-11-04 19:49:11.974167+00 f 1394 70 +1896 2025-11-04 19:49:12.02161+00 \N f 1405 74 +1887 2025-11-04 19:45:25.279485+00 2025-11-04 20:58:19.348645+00 f 1404 68 +1909 2025-11-04 22:52:37.927197+00 \N f 1409 111 +1910 2025-11-04 22:52:52.412355+00 \N f 1409 106 +1911 2025-11-04 22:53:03.968483+00 \N f 1409 112 +1908 2025-11-04 22:52:26.490924+00 2025-11-04 22:53:12.469355+00 f 1409 116 +1912 2025-11-04 23:39:52.11542+00 \N f 1410 89 +1891 2025-11-04 19:45:54.814393+00 2025-11-04 20:53:00.582953+00 t 1404 80 +1337 2025-10-23 15:27:33.010544+00 2025-11-05 06:02:55.269284+00 f 1174 96 +1905 2025-11-04 20:57:31.236904+00 2025-11-04 20:58:08.894957+00 t 1408 88 +1901 2025-11-04 20:54:49.360595+00 2025-11-04 20:58:08.894957+00 f 1408 1 +1902 2025-11-04 20:56:59.304939+00 2025-11-04 20:58:08.894957+00 f 1408 80 +1903 2025-11-04 20:57:00.213327+00 2025-11-04 20:58:08.894957+00 f 1408 70 +1904 2025-11-04 20:57:19.700754+00 2025-11-04 20:58:08.894957+00 f 1408 94 +1888 2025-11-04 19:45:30.666957+00 2025-11-04 20:58:19.348645+00 f 1404 70 +1889 2025-11-04 19:45:35.445724+00 2025-11-04 20:58:19.348645+00 f 1404 79 +1890 2025-11-04 19:45:35.893108+00 2025-11-04 20:58:19.348645+00 f 1404 79 +1892 2025-11-04 19:45:59.713116+00 2025-11-04 20:58:19.348645+00 f 1404 88 +1897 2025-11-04 19:56:47.775955+00 2025-11-04 20:59:53.042509+00 t 1406 1 +1338 2025-10-23 15:27:39.677396+00 2025-11-05 06:02:55.269284+00 f 1174 78 +1339 2025-10-23 15:27:39.74666+00 2025-11-05 06:02:55.269284+00 f 1174 88 +1340 2025-10-23 15:27:44.902619+00 2025-11-05 06:02:55.269284+00 f 1174 9 +1341 2025-10-23 15:27:45.758386+00 2025-11-05 06:02:55.269284+00 f 1174 79 +1342 2025-10-23 15:27:59.40272+00 2025-11-05 06:02:55.269284+00 f 1174 94 +1343 2025-10-23 15:28:01.179431+00 2025-11-05 06:02:55.269284+00 f 1174 92 +1344 2025-10-23 15:28:07.294496+00 2025-11-05 06:02:55.269284+00 f 1174 68 +1346 2025-10-23 15:28:15.272601+00 2025-11-05 06:02:55.269284+00 f 1174 101 +1347 2025-10-23 15:28:16.224309+00 2025-11-05 06:02:55.269284+00 f 1174 74 +1348 2025-10-23 15:28:22.046002+00 2025-11-05 06:02:55.269284+00 f 1174 91 +1876 2025-11-04 17:15:36.520099+00 2025-11-05 10:44:14.877642+00 f 1398 78 +1825 2025-11-03 15:15:17.652609+00 2025-11-05 21:11:10.36914+00 f 1372 68 +1826 2025-11-03 15:16:46.232383+00 2025-11-05 21:11:10.36914+00 f 1372 70 +1827 2025-11-03 15:16:49.045157+00 2025-11-05 21:11:10.36914+00 f 1372 79 +1874 2025-11-04 17:15:15.973013+00 2025-11-05 10:44:14.877642+00 t 1398 68 +1877 2025-11-04 17:15:48.710699+00 2025-11-05 10:44:14.877642+00 f 1398 79 +1878 2025-11-04 17:15:58.492421+00 2025-11-05 10:44:14.877642+00 f 1398 80 +1879 2025-11-04 17:16:10.792985+00 2025-11-05 10:44:14.877642+00 f 1398 89 +1880 2025-11-04 17:16:12.913467+00 2025-11-05 10:44:14.877642+00 f 1398 88 +1873 2025-11-04 17:14:53.054295+00 2025-11-05 10:44:14.877642+00 f 1398 2 +1875 2025-11-04 17:15:27.696914+00 2025-11-05 10:44:14.877642+00 f 1398 71 +1913 2025-11-05 13:10:18.733648+00 \N f 1412 100 +1914 2025-11-05 14:13:53.449195+00 2025-11-05 14:14:17.198733+00 t 1411 1 +1915 2025-11-05 14:14:12.635858+00 2025-11-05 14:14:17.198733+00 f 1411 70 +1916 2025-11-05 14:14:15.990879+00 2025-11-05 14:14:17.198733+00 f 1411 71 +1961 2025-11-06 13:37:41.501394+00 \N f 1436 9 +1962 2025-11-06 13:37:51.496851+00 \N f 1436 70 +1963 2025-11-06 13:37:59.948995+00 \N f 1436 71 +1964 2025-11-06 13:38:15.252468+00 \N f 1436 79 +1920 2025-11-05 14:38:41.704872+00 2025-11-05 14:40:09.68692+00 t 1415 88 +1965 2025-11-06 13:38:24.422171+00 \N f 1436 80 +1966 2025-11-06 13:38:34.194035+00 \N f 1436 89 +1967 2025-11-06 13:38:49.125062+00 \N f 1436 92 +1968 2025-11-06 13:38:57.076335+00 \N f 1436 101 +1924 2025-11-05 15:11:50.167673+00 2025-11-05 15:19:50.818706+00 t 1416 80 +1969 2025-11-06 13:39:15.633332+00 \N f 1436 94 +1970 2025-11-06 14:02:08.600797+00 \N f 1438 117 +1971 2025-11-06 14:02:10.677532+00 \N f 1438 103 +1972 2025-11-06 14:26:01.316512+00 \N f 1439 95 +1973 2025-11-06 14:41:52.938337+00 \N f 1440 92 +1974 2025-11-06 15:47:11.080974+00 \N f 1441 90 +1948 2025-11-05 20:52:57.405592+00 2025-11-06 15:48:19.366623+00 f 1427 88 +1949 2025-11-05 20:53:06.559674+00 2025-11-06 15:48:19.366623+00 f 1427 89 +1932 2025-11-05 16:14:48.141748+00 \N f 1414 82 +1933 2025-11-05 16:34:59.905636+00 \N f 1418 104 +1934 2025-11-05 16:37:21.820852+00 \N f 1419 100 +1935 2025-11-05 16:39:38.930062+00 \N f 1420 90 +1936 2025-11-05 18:23:39.89865+00 \N f 1421 1 +1937 2025-11-05 18:23:59.169014+00 \N f 1421 14 +1938 2025-11-05 18:24:24.023687+00 \N f 1421 94 +1922 2025-11-05 15:11:06.011683+00 2025-11-05 18:28:46.493805+00 f 1416 1 +1923 2025-11-05 15:11:33.876725+00 2025-11-05 18:28:46.493805+00 f 1416 79 +1925 2025-11-05 15:14:02.828996+00 2025-11-05 18:28:46.493805+00 f 1416 88 +1926 2025-11-05 15:14:17.579508+00 2025-11-05 18:28:46.493805+00 f 1416 94 +1939 2025-11-05 18:59:03.481212+00 \N f 1422 100 +1940 2025-11-05 18:59:51.90197+00 \N f 1423 82 +1950 2025-11-05 20:53:14.648889+00 2025-11-06 15:48:19.366623+00 f 1427 80 +1975 2025-11-06 16:03:47.974773+00 2025-11-06 16:04:05.898849+00 t 1442 68 +1976 2025-11-06 16:05:00.350554+00 \N f 1432 70 +1941 2025-11-05 19:52:14.476927+00 2025-11-05 19:53:11.241646+00 t 1424 68 +1942 2025-11-05 19:52:19.371729+00 2025-11-05 19:53:11.241646+00 f 1424 70 +1943 2025-11-05 19:52:23.673742+00 2025-11-05 19:53:11.241646+00 f 1424 79 +1944 2025-11-05 19:52:39.87055+00 2025-11-05 19:53:11.241646+00 f 1424 88 +1917 2025-11-05 14:38:16.968002+00 2025-11-05 19:53:44.170218+00 f 1415 1 +1918 2025-11-05 14:38:18.808952+00 2025-11-05 19:53:44.170218+00 f 1415 80 +1919 2025-11-05 14:38:22.336823+00 2025-11-05 19:53:44.170218+00 f 1415 70 +1921 2025-11-05 14:38:44.657338+00 2025-11-05 19:53:44.170218+00 f 1415 94 +1945 2025-11-05 19:53:54.44554+00 \N f 1425 100 +1946 2025-11-05 20:08:20.613348+00 \N f 1426 113 +1947 2025-11-05 20:52:51.810657+00 2025-11-05 20:56:54.660309+00 t 1427 68 +1991 2025-11-06 16:41:05.701219+00 \N f 1447 112 +1985 2025-11-06 16:40:12.981449+00 2025-11-06 16:42:22.161495+00 t 1446 103 +1951 2025-11-05 21:06:39.188835+00 \N f 1429 75 +1952 2025-11-05 21:28:54.786876+00 \N f 1430 92 +1953 2025-11-06 12:54:44.583396+00 \N f 1432 21 +1955 2025-11-06 13:15:10.77082+00 2025-11-06 13:22:00.799884+00 t 1435 1 +1954 2025-11-06 13:15:02.674548+00 2025-11-06 13:22:00.799884+00 f 1435 2 +1956 2025-11-06 13:15:18.372872+00 2025-11-06 13:22:00.799884+00 f 1435 14 +1957 2025-11-06 13:15:28.06542+00 2025-11-06 13:22:00.799884+00 f 1435 70 +1958 2025-11-06 13:15:39.9884+00 2025-11-06 13:22:00.799884+00 f 1435 94 +1959 2025-11-06 13:15:49.182826+00 2025-11-06 13:22:00.799884+00 f 1435 97 +1960 2025-11-06 13:37:34.313144+00 \N f 1436 2 +1977 2025-11-06 16:06:45.442085+00 \N f 1443 100 +1994 2025-11-06 16:47:06.954981+00 2025-11-16 21:27:07.147041+00 f 1444 21 +1980 2025-11-06 16:17:40.66472+00 2025-11-06 16:18:15.291717+00 t 1445 88 +1988 2025-11-06 16:40:57.686787+00 2025-11-06 16:43:52.013037+00 f 1447 104 +1989 2025-11-06 16:40:57.867827+00 2025-11-06 18:33:02.448724+00 f 1447 116 +1993 2025-11-06 16:46:57.116159+00 2025-11-06 16:47:49.994222+00 t 1444 114 +2001 2025-11-06 20:51:47.175699+00 2025-11-13 01:59:26.407158+00 f 1457 1 +2002 2025-11-06 20:51:54.309198+00 2025-11-13 01:59:26.407158+00 f 1457 70 +1986 2025-11-06 16:40:14.666088+00 2025-11-15 12:15:12.624206+00 f 1446 117 +1987 2025-11-06 16:40:57.097934+00 \N f 1447 85 +1990 2025-11-06 16:40:59.809243+00 \N f 1447 111 +1992 2025-11-06 16:41:05.777883+00 2025-11-06 17:24:46.54154+00 f 1447 106 +1995 2025-11-06 17:52:38.640954+00 \N f 1449 100 +1996 2025-11-06 17:54:00.533747+00 \N f 1450 120 +1997 2025-11-06 18:25:35.526681+00 \N f 1452 79 +1998 2025-11-06 19:04:55.884418+00 \N f 1453 100 +1999 2025-11-06 19:28:51.224492+00 \N f 1450 82 +2000 2025-11-06 20:32:35.771393+00 \N f 1456 90 +2003 2025-11-06 20:52:09.86569+00 2025-11-06 20:53:26.799019+00 t 1457 80 +1982 2025-11-06 16:19:30.852831+00 2025-11-16 21:27:07.147041+00 f 1444 80 +1983 2025-11-06 16:19:31.467808+00 2025-11-16 21:27:07.147041+00 f 1444 1 +2004 2025-11-06 21:04:22.840528+00 \N f 1455 88 +2005 2025-11-06 21:08:44.608073+00 \N f 1458 100 +2010 2025-11-06 21:24:26.496034+00 \N f 1459 85 +2006 2025-11-06 21:12:31.711401+00 2025-11-06 21:13:06.484855+00 t 1451 1 +1927 2025-11-05 15:55:58.520104+00 2025-11-12 15:53:46.380045+00 t 1417 68 +1928 2025-11-05 15:57:04.830359+00 2025-11-12 15:53:46.380045+00 f 1417 71 +1929 2025-11-05 15:57:23.783629+00 2025-11-12 15:53:46.380045+00 f 1417 80 +2012 2025-11-06 21:24:28.624846+00 \N f 1459 106 +2011 2025-11-06 21:24:26.769565+00 2025-11-06 21:24:42.263796+00 f 1459 104 +2014 2025-11-06 21:27:16.453868+00 \N f 1460 90 +2013 2025-11-06 21:27:12.582253+00 2025-11-06 21:43:12.216273+00 f 1460 5 +2007 2025-11-06 21:12:31.85768+00 2025-11-06 22:43:12.530952+00 f 1451 80 +1930 2025-11-05 15:57:34.249816+00 2025-11-12 15:53:46.380045+00 f 1417 89 +1978 2025-11-06 16:17:30.233875+00 2025-11-13 00:35:30.096974+00 f 1445 68 +1979 2025-11-06 16:17:36.572614+00 2025-11-13 00:35:30.096974+00 f 1445 80 +1981 2025-11-06 16:18:04.457627+00 2025-11-13 00:35:30.096974+00 f 1445 89 +2008 2025-11-06 21:12:37.507499+00 2025-11-06 22:43:12.530952+00 f 1451 94 +2009 2025-11-06 21:12:41.587806+00 2025-11-06 22:43:12.530952+00 f 1451 88 +2015 2025-11-06 23:02:56.703437+00 \N f 1461 85 +2016 2025-11-06 23:03:10.15551+00 2025-11-06 23:03:28.096739+00 f 1461 104 +2017 2025-11-06 23:04:15.618503+00 \N f 1461 111 +2018 2025-11-06 23:04:28.157192+00 \N f 1461 106 +2019 2025-11-07 12:11:05.896664+00 \N f 1464 1 +2021 2025-11-07 12:11:10.823458+00 \N f 1464 21 +2022 2025-11-07 12:21:40.15926+00 \N f 1465 100 +2023 2025-11-07 12:21:44.435871+00 \N f 1465 85 +2080 2025-11-08 18:39:54.495267+00 \N f 1488 88 +2041 2025-11-07 22:00:12.880641+00 2025-11-18 05:24:11.622645+00 f 1476 2 +2043 2025-11-07 22:00:47.109072+00 2025-11-18 05:24:11.622645+00 f 1476 70 +2044 2025-11-07 22:00:55.45322+00 2025-11-18 05:24:11.622645+00 f 1476 74 +2045 2025-11-07 22:01:05.262879+00 2025-11-18 05:24:11.622645+00 f 1476 79 +2028 2025-11-07 13:33:07.960529+00 2025-11-07 13:38:30.783765+00 t 1468 88 +2081 2025-11-08 19:12:14.299061+00 \N f 1489 114 +2082 2025-11-08 19:36:44.287081+00 \N f 1490 114 +2029 2025-11-07 14:11:40.242564+00 \N f 1466 88 +2030 2025-11-07 14:19:08.004568+00 \N f 1469 100 +2031 2025-11-07 14:37:11.433176+00 \N f 1464 94 +2032 2025-11-07 15:17:56.828198+00 \N f 1470 100 +2020 2025-11-07 12:11:06.475043+00 2025-11-07 16:11:40.446025+00 f 1464 70 +2033 2025-11-07 16:46:02.135701+00 \N f 1471 91 +2034 2025-11-07 17:18:45.315199+00 \N f 1472 90 +2035 2025-11-07 17:38:41.403053+00 \N f 1454 1 +2036 2025-11-07 18:40:47.430879+00 \N f 1473 70 +2037 2025-11-07 18:41:14.653649+00 \N f 1473 114 +2024 2025-11-07 13:32:34.85122+00 2025-11-07 18:45:08.209928+00 f 1468 68 +2025 2025-11-07 13:32:37.727793+00 2025-11-07 18:45:08.209928+00 f 1468 9 +2026 2025-11-07 13:32:42.866207+00 2025-11-07 18:45:08.209928+00 f 1468 70 +2027 2025-11-07 13:33:01.080863+00 2025-11-07 18:45:08.209928+00 f 1468 89 +2038 2025-11-07 19:00:00.356783+00 \N f 1463 100 +2039 2025-11-07 19:16:13.806348+00 \N f 1474 114 +2040 2025-11-07 21:42:47.705182+00 \N f 1475 100 +2042 2025-11-07 22:00:21.476854+00 2025-11-07 22:00:38.754716+00 t 1476 1 +2046 2025-11-07 23:05:21.773387+00 \N f 1477 68 +2049 2025-11-07 23:13:06.122009+00 \N f 1478 99 +2050 2025-11-07 23:13:17.788642+00 \N f 1478 96 +2048 2025-11-07 23:12:59.374778+00 2025-11-07 23:20:48.562499+00 f 1478 92 +2047 2025-11-07 23:12:53.431259+00 2025-11-08 00:55:43.451561+00 f 1478 70 +2051 2025-11-08 13:50:43.640254+00 \N f 1480 2 +2052 2025-11-08 13:50:58.251583+00 \N f 1480 70 +2053 2025-11-08 13:51:08.977065+00 \N f 1480 71 +2054 2025-11-08 13:51:22.761635+00 \N f 1480 79 +2056 2025-11-08 13:51:44.088991+00 \N f 1480 89 +2057 2025-11-08 13:52:03.815533+00 \N f 1480 92 +2058 2025-11-08 13:52:12.930416+00 \N f 1480 94 +2059 2025-11-08 13:52:30.355792+00 \N f 1480 101 +2060 2025-11-08 14:03:41.435506+00 2025-11-08 14:04:49.449195+00 t 1482 1 +2083 2025-11-08 19:49:27.860121+00 \N f 1491 94 +2084 2025-11-08 19:50:42.916924+00 \N f 1492 100 +2055 2025-11-08 13:51:34.06543+00 2025-11-08 14:05:05.862653+00 f 1480 80 +2064 2025-11-08 15:29:38.934081+00 \N f 1484 2 +2065 2025-11-08 15:30:19.273006+00 \N f 1484 79 +2067 2025-11-08 15:30:42.439206+00 \N f 1484 89 +2066 2025-11-08 15:30:29.018898+00 2025-11-08 15:30:42.504404+00 f 1484 80 +2068 2025-11-08 15:30:57.506222+00 \N f 1484 94 +2061 2025-11-08 14:03:51.724867+00 2025-11-08 16:05:00.684515+00 f 1482 70 +2062 2025-11-08 14:03:58.910459+00 2025-11-08 16:05:00.684515+00 f 1482 80 +2063 2025-11-08 14:04:09.282936+00 2025-11-08 16:05:00.684515+00 f 1482 88 +2069 2025-11-08 15:31:17.35753+00 2025-11-08 16:54:32.011444+00 f 1484 101 +2070 2025-11-08 17:48:11.678922+00 \N f 1486 80 +2072 2025-11-08 17:55:46.111539+00 2025-11-08 18:01:15.645695+00 t 1485 68 +2098 2025-11-09 19:32:58.854492+00 \N f 1498 90 +2099 2025-11-09 19:45:16.999546+00 \N f 1499 80 +2100 2025-11-09 19:46:56.261102+00 \N f 1500 90 +2101 2025-11-09 19:51:30.248506+00 \N f 1501 112 +2102 2025-11-09 19:59:15.714802+00 \N f 1502 92 +2103 2025-11-09 19:59:20.800903+00 \N f 1502 85 +2078 2025-11-08 18:03:33.878955+00 \N f 1481 84 +2079 2025-11-08 18:28:22.402642+00 \N f 1487 21 +2104 2025-11-09 20:04:52.660478+00 \N f 1504 98 +2105 2025-11-09 20:12:21.788605+00 \N f 1505 99 +2085 2025-11-09 12:36:05.93799+00 2025-11-10 01:03:37.324052+00 f 1493 113 +2087 2025-11-09 12:36:31.632723+00 2025-11-09 12:43:09.133909+00 t 1493 92 +2086 2025-11-09 12:36:20.950586+00 2025-11-10 01:03:37.324052+00 f 1493 88 +2088 2025-11-09 13:11:21.113834+00 \N f 1484 88 +2090 2025-11-09 13:11:39.648248+00 \N f 1484 114 +2089 2025-11-09 13:11:32.785966+00 2025-11-09 13:15:41.60649+00 f 1484 68 +2091 2025-11-09 15:01:09.600496+00 \N f 1495 113 +2092 2025-11-09 15:01:26.215023+00 \N f 1495 88 +2094 2025-11-09 15:01:56.945599+00 \N f 1495 114 +2095 2025-11-09 15:06:24.109703+00 \N f 1496 90 +2096 2025-11-09 15:06:30.739004+00 2025-11-09 15:35:12.33971+00 f 1496 119 +2093 2025-11-09 15:01:45.067469+00 2025-11-09 15:50:47.496123+00 f 1495 92 +2097 2025-11-09 19:31:07.358194+00 \N f 1497 88 +2111 2025-11-10 12:03:59.873712+00 2025-11-10 12:05:52.272563+00 t 1506 88 +2112 2025-11-10 13:47:04.322126+00 \N f 1509 100 +2106 2025-11-10 12:03:23.504087+00 2025-11-10 12:05:52.272563+00 f 1506 68 +2110 2025-11-10 12:03:50.696503+00 2025-11-10 12:05:52.272563+00 f 1506 80 +2107 2025-11-10 12:03:24.298504+00 2025-11-10 12:05:52.272563+00 f 1506 70 +2108 2025-11-10 12:03:27.950325+00 2025-11-10 12:05:52.272563+00 f 1506 78 +2109 2025-11-10 12:03:46.354013+00 2025-11-10 12:05:52.272563+00 f 1506 79 +2116 2025-11-10 13:54:04.37944+00 2025-11-10 13:54:23.439389+00 t 1508 89 +2118 2025-11-10 13:55:42.776806+00 \N f 1503 105 +2119 2025-11-10 13:55:46.148724+00 \N f 1503 85 +2120 2025-11-10 14:28:35.027578+00 2025-11-10 14:28:55.209044+00 t 1510 1 +2071 2025-11-08 17:55:41.11627+00 2025-11-16 00:05:58.653027+00 f 1485 9 +2073 2025-11-08 17:55:53.544291+00 2025-11-16 00:05:58.653027+00 f 1485 70 +2074 2025-11-08 17:56:11.155868+00 2025-11-16 00:05:58.653027+00 f 1485 79 +2075 2025-11-08 17:56:23.228359+00 2025-11-16 00:05:58.653027+00 f 1485 89 +2121 2025-11-10 14:53:24.761537+00 2025-11-10 14:54:56.696433+00 t 1511 1 +2123 2025-11-10 19:20:11.486149+00 \N f 1514 79 +2124 2025-11-10 19:20:17.239429+00 \N f 1514 88 +2125 2025-11-10 19:20:21.852613+00 \N f 1514 89 +2122 2025-11-10 19:18:36.857037+00 2025-11-10 19:25:13.451559+00 f 1514 70 +2126 2025-11-10 19:51:47.537549+00 \N f 1514 85 +2127 2025-11-10 19:52:02.97817+00 \N f 1514 112 +2129 2025-11-10 19:52:33.814252+00 \N f 1514 104 +2130 2025-11-10 19:54:13.763773+00 \N f 1516 82 +2131 2025-11-10 19:56:12.360754+00 \N f 1517 82 +2132 2025-11-10 19:56:18.532907+00 \N f 1517 100 +2133 2025-11-10 19:58:25.716574+00 \N f 1518 92 +2134 2025-11-10 20:21:33.623039+00 \N f 1520 92 +2136 2025-11-10 20:21:50.152082+00 \N f 1520 114 +2135 2025-11-10 20:21:42.380459+00 2025-11-10 20:53:44.864492+00 f 1520 68 +2128 2025-11-10 19:52:27.297147+00 2025-11-10 22:51:45.353673+00 f 1514 106 +2137 2025-11-10 23:15:58.048432+00 \N f 1514 116 +2138 2025-11-10 23:42:56.065101+00 \N f 1522 85 +2139 2025-11-10 23:50:18.080387+00 \N f 1523 68 +2143 2025-11-11 13:28:37.080926+00 2025-11-11 13:46:54.311243+00 t 1526 88 +2144 2025-11-11 13:46:45.466787+00 2025-11-11 13:46:59.793801+00 f 1525 70 +2145 2025-11-11 13:46:51.499884+00 2025-11-11 13:46:59.793801+00 f 1525 79 +2146 2025-11-11 13:47:00.677435+00 2025-11-11 13:47:31.575463+00 f 1525 80 +2147 2025-11-11 13:55:40.155545+00 \N f 1527 100 +2148 2025-11-11 14:17:36.347115+00 \N f 1529 114 +2149 2025-11-11 14:19:36.698193+00 \N f 1530 107 +2150 2025-11-11 14:42:01.625651+00 2025-11-11 14:43:17.910776+00 t 1531 1 +2151 2025-11-11 14:42:11.76517+00 2025-11-11 14:43:17.910776+00 f 1531 68 +2152 2025-11-11 14:42:23.471197+00 2025-11-11 14:43:17.910776+00 f 1531 80 +2153 2025-11-11 14:42:31.404427+00 2025-11-11 14:43:17.910776+00 f 1531 88 +2154 2025-11-11 14:42:37.729652+00 2025-11-11 14:43:17.910776+00 f 1531 89 +2155 2025-11-11 14:42:51.221005+00 2025-11-11 14:43:17.910776+00 f 1531 97 +2156 2025-11-11 14:42:58.554823+00 2025-11-11 14:43:17.910776+00 f 1531 91 +2158 2025-11-11 15:02:42.237636+00 \N f 1525 2 +2159 2025-11-11 15:03:14.066846+00 \N f 1525 88 +2160 2025-11-11 15:03:28.484482+00 \N f 1525 94 +2161 2025-11-11 15:03:54.901301+00 \N f 1525 91 +2157 2025-11-11 14:57:17.472872+00 2025-11-11 15:09:34.173696+00 t 1532 1 +2162 2025-11-11 15:58:46.70056+00 \N f 1533 1 +2163 2025-11-11 15:59:58.472237+00 \N f 1533 21 +2164 2025-11-11 16:01:07.139028+00 \N f 1533 80 +2165 2025-11-11 16:01:17.266749+00 \N f 1533 101 +2166 2025-11-11 16:01:25.827629+00 \N f 1533 114 +2190 2025-11-12 12:27:43.602161+00 2025-11-12 12:30:30.805647+00 t 1544 91 +2167 2025-11-11 19:12:48.902208+00 2025-11-11 19:12:54.92872+00 f 1534 70 +2168 2025-11-11 19:13:01.808781+00 \N f 1534 92 +2169 2025-11-11 19:13:02.241602+00 \N f 1534 99 +2191 2025-11-12 12:28:13.200452+00 2025-11-12 12:30:30.805647+00 f 1544 113 +2189 2025-11-12 12:27:38.613804+00 2025-11-12 12:30:30.805647+00 f 1544 68 +2192 2025-11-12 12:31:55.342863+00 2025-11-12 12:32:28.45078+00 t 1545 1 +2193 2025-11-12 12:32:21.586796+00 2025-11-12 12:32:28.45078+00 f 1545 68 +2195 2025-11-12 12:32:45.441187+00 \N f 1545 89 +2171 2025-11-11 19:18:37.745087+00 2025-11-11 19:19:32.298611+00 t 1535 68 +2170 2025-11-11 19:18:23.849836+00 2025-11-11 19:19:32.298611+00 f 1535 1 +2172 2025-11-11 19:18:45.016729+00 2025-11-11 19:19:32.298611+00 f 1535 70 +2173 2025-11-11 19:18:53.748117+00 2025-11-11 19:19:32.298611+00 f 1535 80 +2174 2025-11-11 19:19:03.555713+00 2025-11-11 19:19:32.298611+00 f 1535 88 +2175 2025-11-11 19:19:19.473394+00 2025-11-11 19:19:32.298611+00 f 1535 89 +2176 2025-11-11 19:19:21.263982+00 2025-11-11 19:19:32.298611+00 f 1535 91 +2177 2025-11-11 19:20:39.541622+00 2025-11-11 19:39:36.654656+00 f 1534 113 +2178 2025-11-11 19:41:40.607285+00 \N f 1536 79 +2141 2025-11-11 13:23:48.009309+00 2025-11-11 20:00:06.567475+00 t 1524 92 +2140 2025-11-11 13:23:34.960927+00 2025-11-11 20:00:06.567475+00 f 1524 70 +2142 2025-11-11 13:25:04.816525+00 2025-11-11 20:00:06.567475+00 f 1524 99 +2179 2025-11-11 20:50:36.649528+00 \N f 1539 89 +2180 2025-11-11 21:01:13.212474+00 \N f 1538 106 +2181 2025-11-11 21:01:13.538983+00 \N f 1538 112 +2182 2025-11-11 21:01:25.74917+00 \N f 1538 111 +2184 2025-11-11 21:01:54.406031+00 \N f 1537 1 +2185 2025-11-11 21:20:12.192485+00 \N f 1540 100 +2183 2025-11-11 21:01:27.26912+00 2025-11-11 21:41:58.307327+00 f 1538 104 +2186 2025-11-11 22:31:51.759359+00 \N f 1541 92 +2187 2025-11-11 22:47:00.279411+00 \N f 1542 90 +2188 2025-11-11 23:51:16.722216+00 \N f 1543 5 +2196 2025-11-12 12:32:51.887983+00 \N f 1545 88 +2197 2025-11-12 12:33:02.582008+00 \N f 1545 91 +2194 2025-11-12 12:32:30.386848+00 2025-11-12 12:33:05.927884+00 f 1545 80 +2198 2025-11-12 12:42:55.545284+00 \N f 1546 88 +2199 2025-11-12 14:06:50.497306+00 2025-11-12 14:07:06.61861+00 t 1548 1 +2200 2025-11-12 14:07:10.810228+00 2025-11-22 10:54:02.713833+00 f 1548 21 +2209 2025-11-12 14:19:20.802865+00 2025-11-12 14:19:37.41061+00 t 1547 80 +2216 2025-11-12 16:33:14.867267+00 2025-11-12 16:46:39.380957+00 t 1554 113 +2217 2025-11-12 16:33:19.666418+00 2025-11-12 22:03:47.206198+00 f 1554 68 +2212 2025-11-12 14:23:47.312312+00 \N f 1549 90 +2213 2025-11-12 14:46:17.840146+00 \N f 1550 103 +2214 2025-11-12 15:23:11.089341+00 \N f 1551 114 +2205 2025-11-12 14:18:31.772623+00 2025-11-12 15:27:59.413245+00 f 1547 2 +2206 2025-11-12 14:18:43.594206+00 2025-11-12 15:27:59.413245+00 f 1547 68 +2207 2025-11-12 14:19:06.075256+00 2025-11-12 15:27:59.413245+00 f 1547 79 +2208 2025-11-12 14:19:11.981092+00 2025-11-12 15:27:59.413245+00 f 1547 70 +2210 2025-11-12 14:19:35.909244+00 2025-11-12 15:27:59.413245+00 f 1547 88 +2211 2025-11-12 14:19:44.848542+00 2025-11-12 15:27:59.413245+00 f 1547 89 +2215 2025-11-12 15:38:58.799781+00 2025-11-12 15:47:56.315341+00 t 1553 68 +1931 2025-11-05 15:57:37.990854+00 2025-11-12 15:53:46.380045+00 f 1417 88 +2218 2025-11-12 16:56:52.449541+00 2025-11-23 00:20:00.978051+00 f 1552 2 +2219 2025-11-12 16:57:03.367689+00 2025-11-12 17:08:13.434339+00 t 1552 68 +2220 2025-11-12 16:57:17.917282+00 2025-11-23 00:20:00.978051+00 f 1552 70 +2221 2025-11-12 16:57:19.392847+00 2025-11-23 00:20:00.978051+00 f 1552 71 +2223 2025-11-12 16:57:35.342928+00 2025-11-23 00:20:00.978051+00 f 1552 79 +2222 2025-11-12 16:57:32.863097+00 2025-11-23 00:20:00.978051+00 f 1552 78 +2201 2025-11-12 14:07:23.939008+00 2025-11-22 10:54:02.713833+00 f 1548 74 +2202 2025-11-12 14:07:33.10063+00 2025-11-22 10:54:02.713833+00 f 1548 80 +2203 2025-11-12 14:07:47.998403+00 2025-11-22 10:54:02.713833+00 f 1548 88 +2204 2025-11-12 14:07:57.294103+00 2025-11-22 10:54:02.713833+00 f 1548 94 +2224 2025-11-12 16:57:49.276825+00 2025-11-23 00:20:00.978051+00 f 1552 89 +2318 2025-11-14 15:46:16.96653+00 2025-11-24 08:33:46.889741+00 f 1599 89 +2319 2025-11-14 15:46:25.39869+00 2025-11-24 08:33:46.889741+00 f 1599 70 +2230 2025-11-12 17:20:46.797195+00 \N f 1556 100 +2227 2025-11-12 17:11:03.025734+00 2025-11-12 17:23:43.18596+00 t 1555 1 +2228 2025-11-12 17:11:16.228146+00 2025-11-12 17:23:43.18596+00 f 1555 80 +2229 2025-11-12 17:11:26.477232+00 2025-11-12 17:23:43.18596+00 f 1555 70 +2231 2025-11-12 17:36:25.492181+00 \N f 1557 100 +2232 2025-11-12 17:46:56.728108+00 \N f 1558 84 +2274 2025-11-13 15:38:26.342474+00 2025-11-13 15:59:10.332043+00 t 1574 101 +2236 2025-11-12 18:09:21.930311+00 2025-11-12 18:12:23.79275+00 t 1559 92 +2233 2025-11-12 18:09:08.496138+00 2025-11-12 18:12:23.79275+00 f 1559 113 +2234 2025-11-12 18:09:09.802556+00 2025-11-12 18:12:23.79275+00 f 1559 89 +2235 2025-11-12 18:09:15.21174+00 2025-11-12 18:12:23.79275+00 f 1559 79 +2237 2025-11-12 18:09:29.539725+00 2025-11-12 18:12:23.79275+00 f 1559 80 +2238 2025-11-12 18:09:31.210368+00 2025-11-12 18:12:23.79275+00 f 1559 1 +2239 2025-11-12 18:37:05.620518+00 \N f 1560 90 +2240 2025-11-12 20:07:07.137911+00 \N f 1562 113 +2241 2025-11-12 20:33:46.310554+00 \N f 1563 90 +2242 2025-11-12 20:33:52.127288+00 \N f 1563 119 +2244 2025-11-12 20:52:52.67136+00 \N f 1563 103 +2245 2025-11-12 21:15:47.125508+00 2025-11-12 21:17:24.198648+00 t 1565 1 +2301 2025-11-14 12:14:43.230157+00 2025-11-16 21:21:29.644007+00 f 1590 87 +2302 2025-11-14 12:14:47.860348+00 2025-11-16 21:21:29.644007+00 f 1590 96 +2248 2025-11-12 21:52:12.868872+00 \N f 1566 80 +2113 2025-11-10 13:53:38.320669+00 2025-11-12 21:59:48.392458+00 f 1508 80 +2114 2025-11-10 13:53:43.962255+00 2025-11-12 21:59:48.392458+00 f 1508 92 +2115 2025-11-10 13:53:48.327092+00 2025-11-12 21:59:48.392458+00 f 1508 94 +2117 2025-11-10 13:54:07.30739+00 2025-11-12 21:59:48.392458+00 f 1508 79 +2249 2025-11-12 22:23:06.894141+00 \N f 1564 96 +2250 2025-11-12 22:30:13.820164+00 \N f 1561 112 +2251 2025-11-12 23:47:45.374122+00 \N f 1567 84 +2252 2025-11-13 00:01:43.588632+00 \N f 1568 92 +2243 2025-11-12 20:33:57.234994+00 2025-11-13 00:25:43.020664+00 f 1563 5 +2296 2025-11-13 22:53:36.661699+00 2025-11-16 21:24:14.452198+00 t 1587 21 +2262 2025-11-13 13:31:45.755567+00 \N f 1571 92 +2253 2025-11-13 13:19:14.620421+00 2025-11-13 14:05:16.574154+00 t 1570 2 +2225 2025-11-12 16:58:00.198576+00 2025-11-23 00:20:00.978051+00 f 1552 88 +2226 2025-11-12 16:58:07.295871+00 2025-11-23 00:20:00.978051+00 f 1552 80 +2254 2025-11-13 13:19:33.349854+00 2025-11-13 14:06:10.176063+00 f 1570 68 +2255 2025-11-13 13:19:49.333684+00 2025-11-13 14:06:10.176063+00 f 1570 78 +2256 2025-11-13 13:19:55.711371+00 2025-11-13 14:06:10.176063+00 f 1570 79 +2257 2025-11-13 13:20:08.83962+00 2025-11-13 14:06:10.176063+00 f 1570 80 +2258 2025-11-13 13:20:26.071498+00 2025-11-13 14:06:10.176063+00 f 1570 88 +2259 2025-11-13 13:20:31.251372+00 2025-11-13 14:06:10.176063+00 f 1570 89 +2260 2025-11-13 13:20:32.656369+00 2025-11-13 14:06:10.176063+00 f 1570 89 +2261 2025-11-13 13:20:46.361994+00 2025-11-13 14:06:10.176063+00 f 1570 91 +2263 2025-11-13 14:31:50.975219+00 2025-11-13 14:32:33.016737+00 t 1572 21 +2264 2025-11-13 14:32:03.74832+00 2025-11-13 14:32:33.016737+00 f 1572 94 +2265 2025-11-13 14:35:06.357308+00 \N f 1573 114 +2267 2025-11-13 14:35:09.710727+00 2025-11-13 14:36:12.082384+00 f 1573 80 +2266 2025-11-13 14:35:07.144133+00 2025-11-13 14:36:24.631304+00 f 1573 70 +2268 2025-11-13 14:36:49.603405+00 \N f 1573 9 +2269 2025-11-13 14:36:58.849893+00 \N f 1573 2 +2284 2025-11-13 16:32:33.621587+00 \N f 1576 90 +2283 2025-11-13 16:32:32.482308+00 2025-11-13 16:45:33.100902+00 f 1576 5 +2272 2025-11-13 15:33:31.931068+00 2025-11-13 15:35:40.898537+00 t 1515 88 +2246 2025-11-12 21:15:48.810295+00 2025-11-13 15:38:38.595582+00 f 1565 70 +2247 2025-11-12 21:15:56.406527+00 2025-11-13 15:38:38.595582+00 f 1565 94 +2288 2025-11-13 17:07:45.650468+00 2025-11-13 17:09:00.954912+00 t 1579 94 +2285 2025-11-13 17:07:18.172543+00 2025-11-13 17:09:00.954912+00 f 1579 80 +2286 2025-11-13 17:07:19.416036+00 2025-11-13 17:09:00.954912+00 f 1579 1 +2287 2025-11-13 17:07:20.152724+00 2025-11-13 17:09:00.954912+00 f 1579 70 +2289 2025-11-13 17:09:59.731899+00 \N f 1577 80 +2277 2025-11-13 16:18:48.135452+00 2025-11-13 18:27:25.218835+00 t 1575 68 +2278 2025-11-13 16:18:49.768256+00 2025-11-13 18:27:25.218835+00 f 1575 79 +2279 2025-11-13 16:18:49.862181+00 2025-11-13 18:27:25.218835+00 f 1575 9 +2280 2025-11-13 16:19:09.12554+00 2025-11-13 18:27:25.218835+00 f 1575 2 +2281 2025-11-13 16:19:14.353801+00 2025-11-13 18:27:25.218835+00 f 1575 89 +2282 2025-11-13 16:19:18.374768+00 2025-11-13 18:27:25.218835+00 f 1575 91 +2290 2025-11-13 17:43:50.974394+00 2025-11-13 18:33:17.302547+00 f 1580 120 +2293 2025-11-13 19:27:53.322448+00 \N f 1584 90 +2294 2025-11-13 20:21:57.091334+00 2025-11-13 20:22:47.040013+00 t 1585 1 +2295 2025-11-13 20:38:03.969836+00 \N f 1586 100 +2292 2025-11-13 19:27:51.844062+00 2025-11-14 03:02:54.438199+00 f 1584 5 +2299 2025-11-14 11:54:56.138092+00 \N f 1594 114 +2303 2025-11-14 12:25:37.86333+00 \N f 1592 88 +2304 2025-11-14 12:25:39.598885+00 \N f 1592 68 +2305 2025-11-14 12:25:46.422633+00 \N f 1592 79 +2306 2025-11-14 12:26:01.174216+00 \N f 1592 89 +2300 2025-11-14 12:14:38.938351+00 2025-11-14 12:38:15.033344+00 t 1590 74 +2297 2025-11-13 22:53:57.452845+00 2025-11-22 07:43:54.048792+00 f 1587 94 +2298 2025-11-13 22:54:01.325166+00 2025-11-22 07:43:54.048792+00 f 1587 94 +2307 2025-11-14 12:46:31.444333+00 \N f 1595 68 +2308 2025-11-14 12:46:35.742555+00 \N f 1595 79 +2309 2025-11-14 12:46:40.725184+00 \N f 1595 80 +2310 2025-11-14 12:50:18.070827+00 \N f 1595 89 +2311 2025-11-14 12:50:20.757986+00 \N f 1595 94 +2312 2025-11-14 13:43:37.719535+00 \N f 1596 100 +2313 2025-11-14 13:48:13.81292+00 \N f 1597 84 +2314 2025-11-14 14:19:56.376547+00 \N f 1598 5 +2315 2025-11-14 14:19:57.120986+00 \N f 1598 90 +2316 2025-11-14 15:09:36.924292+00 2025-11-14 15:09:50.343356+00 t 1583 80 +2291 2025-11-13 19:10:16.611811+00 2025-11-14 15:09:50.343356+00 f 1583 88 +2317 2025-11-14 15:09:52.517133+00 \N f 1583 91 +2270 2025-11-13 15:33:23.706024+00 2025-11-24 21:34:31.038734+00 f 1515 1 +2271 2025-11-13 15:33:25.133838+00 2025-11-24 21:34:31.038734+00 f 1515 80 +2276 2025-11-13 15:39:01.560701+00 2025-11-15 23:12:31.898001+00 f 1574 70 +2273 2025-11-13 15:37:48.732972+00 2025-11-15 23:12:31.898001+00 f 1574 2 +2323 2025-11-14 15:48:05.911439+00 2025-11-14 15:53:28.760671+00 t 1599 68 +2275 2025-11-13 15:38:40.698774+00 2025-11-15 23:12:31.898001+00 f 1574 114 +2320 2025-11-14 15:46:38.906578+00 2025-11-24 08:33:46.889741+00 f 1599 79 +2326 2025-11-14 16:28:12.940016+00 \N f 1600 115 +2327 2025-11-14 16:35:02.453824+00 \N f 1601 113 +2328 2025-11-14 16:44:16.560354+00 2025-11-14 16:44:42.893051+00 t 1602 1 +2329 2025-11-14 16:58:24.387005+00 \N f 1603 1 +2330 2025-11-14 18:02:06.607653+00 \N f 1605 90 +2331 2025-11-14 19:43:09.774013+00 \N f 1606 78 +2332 2025-11-14 19:50:32.243025+00 \N f 1608 70 +2333 2025-11-14 19:50:38.237401+00 \N f 1608 87 +2334 2025-11-14 19:50:45.874278+00 \N f 1608 99 +2414 2025-11-17 17:49:44.074748+00 2025-11-24 21:44:42.526816+00 f 1636 9 +2415 2025-11-17 17:49:51.9292+00 2025-11-24 21:44:42.526816+00 f 1636 21 +2416 2025-11-17 17:50:15.363353+00 2025-11-24 21:44:42.526816+00 f 1636 74 +2338 2025-11-14 22:06:53.651167+00 2025-11-14 22:07:51.119053+00 t 1609 80 +2335 2025-11-14 22:06:23.724557+00 2025-11-14 22:07:51.119053+00 f 1609 2 +2336 2025-11-14 22:06:36.275699+00 2025-11-14 22:07:51.119053+00 f 1609 70 +2337 2025-11-14 22:06:42.87+00 2025-11-14 22:07:51.119053+00 f 1609 71 +2339 2025-11-14 22:07:16.922033+00 2025-11-14 22:07:51.119053+00 f 1609 114 +2340 2025-11-15 13:05:09.422499+00 \N f 1611 96 +2341 2025-11-15 13:06:46.880059+00 \N f 1610 2 +2343 2025-11-15 13:07:21.412138+00 \N f 1610 71 +2345 2025-11-15 13:07:52.594958+00 \N f 1610 114 +2344 2025-11-15 13:07:32.092846+00 2025-11-15 13:18:04.458949+00 f 1610 80 +2342 2025-11-15 13:07:14.653712+00 2025-11-15 13:23:49.956261+00 f 1610 70 +2347 2025-11-15 17:27:53.947472+00 \N f 1613 114 +2349 2025-11-15 17:28:10.213412+00 \N f 1613 92 +2350 2025-11-15 18:28:21.167974+00 \N f 1615 70 +2346 2025-11-15 17:27:20.528621+00 2025-11-15 18:59:39.42646+00 f 1613 70 +2355 2025-11-15 19:34:59.792217+00 2025-11-15 19:35:15.273307+00 t 1612 1 +2351 2025-11-15 19:34:31.482264+00 2025-11-15 19:35:15.273307+00 f 1612 14 +2352 2025-11-15 19:34:36.581678+00 2025-11-15 19:35:15.273307+00 f 1612 2 +2353 2025-11-15 19:34:43.966306+00 2025-11-15 19:35:15.273307+00 f 1612 88 +2354 2025-11-15 19:34:58.295292+00 2025-11-15 19:35:15.273307+00 f 1612 80 +2356 2025-11-15 19:35:12.167923+00 2025-11-15 19:35:15.273307+00 f 1612 94 +2357 2025-11-15 19:35:20.075702+00 \N f 1612 101 +2364 2025-11-15 19:38:42.790584+00 2025-11-15 19:44:46.203618+00 t 1614 101 +2408 2025-11-17 16:26:21.178344+00 2025-11-19 13:12:03.2124+00 f 1633 121 +2409 2025-11-17 16:26:29.722109+00 2025-11-19 13:12:03.2124+00 f 1633 114 +2372 2025-11-15 20:19:09.819771+00 2025-11-23 16:33:40.878503+00 t 1618 92 +2321 2025-11-14 15:46:46.566628+00 2025-11-24 08:33:46.889741+00 f 1599 88 +2322 2025-11-14 15:47:25.223806+00 2025-11-24 08:33:46.889741+00 f 1599 121 +2324 2025-11-14 15:51:35.082353+00 2025-11-24 08:33:46.889741+00 f 1599 2 +2365 2025-11-15 19:50:09.436161+00 \N f 1617 85 +2366 2025-11-15 19:50:26.087603+00 \N f 1617 90 +2367 2025-11-15 19:58:58.768974+00 2025-11-15 20:01:07.133477+00 t 1616 1 +2383 2025-11-16 14:25:30.701139+00 2025-11-16 14:25:35.9707+00 f 1620 113 +2368 2025-11-15 19:59:14.785443+00 2025-11-15 23:05:23.132714+00 f 1616 80 +2369 2025-11-15 19:59:20.748416+00 2025-11-15 23:05:23.132714+00 f 1616 88 +2370 2025-11-15 19:59:28.119844+00 2025-11-15 23:05:23.132714+00 f 1616 94 +2371 2025-11-15 19:59:44.487505+00 2025-11-15 23:05:23.132714+00 f 1616 101 +2076 2025-11-08 17:57:04.551904+00 2025-11-16 00:05:58.653027+00 f 1485 91 +2077 2025-11-08 17:57:10.326045+00 2025-11-16 00:05:58.653027+00 f 1485 94 +2381 2025-11-16 14:24:33.522591+00 2025-11-16 14:25:38.854141+00 t 1619 114 +2382 2025-11-16 14:24:38.705255+00 2025-11-16 14:25:38.854141+00 f 1619 80 +2377 2025-11-16 14:24:02.963121+00 2025-11-16 14:25:38.854141+00 f 1619 88 +2378 2025-11-16 14:24:11.341822+00 2025-11-16 14:25:38.854141+00 f 1619 107 +2405 2025-11-17 15:10:39.858083+00 \N f 1630 100 +2379 2025-11-16 14:24:18.195405+00 2025-11-16 14:25:38.854141+00 f 1619 92 +2380 2025-11-16 14:24:27.128692+00 2025-11-16 14:25:38.854141+00 f 1619 68 +2373 2025-11-16 14:21:27.94482+00 2025-11-16 14:27:01.557695+00 f 1621 89 +2374 2025-11-16 14:21:37.137041+00 2025-11-16 14:27:01.557695+00 f 1621 88 +2375 2025-11-16 14:21:47.691104+00 2025-11-16 14:27:01.557695+00 f 1621 92 +2376 2025-11-16 14:21:57.502367+00 2025-11-16 14:27:01.557695+00 f 1621 1 +2384 2025-11-16 14:38:57.966439+00 2025-11-16 14:39:12.300027+00 t 1622 88 +2385 2025-11-16 14:39:07.516559+00 2025-11-16 14:39:12.300027+00 f 1622 92 +2386 2025-11-16 14:39:13.923266+00 \N f 1622 68 +2387 2025-11-16 14:39:19.867485+00 \N f 1622 114 +2388 2025-11-16 14:43:21.89386+00 \N f 1621 80 +2348 2025-11-15 17:28:00.862803+00 2025-11-16 18:01:42.814123+00 f 1613 68 +2389 2025-11-16 19:25:37.118844+00 \N f 1623 88 +2390 2025-11-16 19:34:36.236034+00 \N f 1620 88 +2391 2025-11-16 19:34:50.974562+00 \N f 1620 92 +2392 2025-11-16 20:29:02.649117+00 \N f 1624 88 +1984 2025-11-06 16:19:31.946572+00 2025-11-16 21:27:07.147041+00 f 1444 70 +2393 2025-11-17 12:25:22.308812+00 \N f 1620 96 +2394 2025-11-17 12:46:15.939492+00 \N f 1625 84 +2395 2025-11-17 13:38:00.538511+00 \N f 1628 90 +2396 2025-11-17 13:44:13.041862+00 \N f 1629 90 +2406 2025-11-17 15:34:35.505462+00 \N f 1632 104 +2407 2025-11-17 15:34:44.822992+00 \N f 1632 85 +2410 2025-11-17 16:36:47.870046+00 \N f 1634 82 +2411 2025-11-17 16:39:11.005364+00 \N f 1635 114 +2412 2025-11-17 17:16:03.553977+00 \N f 1637 100 +2413 2025-11-17 17:49:41.959062+00 2025-11-17 17:49:55.380111+00 t 1636 1 +2358 2025-11-15 19:37:51.284185+00 2025-11-17 21:43:09.787699+00 f 1614 2 +2359 2025-11-15 19:37:59.196101+00 2025-11-17 21:43:09.787699+00 f 1614 9 +2417 2025-11-17 18:08:40.974606+00 2025-11-17 18:10:29.211816+00 t 1633 70 +2398 2025-11-17 13:46:21.32633+00 2025-11-17 13:52:50.032324+00 t 1627 68 +2404 2025-11-17 13:48:45.454892+00 2025-11-17 13:52:50.032324+00 f 1627 89 +2402 2025-11-17 13:48:30.460411+00 2025-11-17 13:52:50.032324+00 f 1627 91 +2403 2025-11-17 13:48:35.971001+00 2025-11-17 13:52:50.032324+00 f 1627 88 +2397 2025-11-17 13:46:15.369821+00 2025-11-17 13:52:50.032324+00 f 1627 9 +2399 2025-11-17 13:46:26.639095+00 2025-11-17 13:52:50.032324+00 f 1627 70 +2400 2025-11-17 13:46:42.012303+00 2025-11-17 13:52:50.032324+00 f 1627 78 +2401 2025-11-17 13:46:50.826524+00 2025-11-17 13:52:50.032324+00 f 1627 80 +2418 2025-11-17 18:30:48.004774+00 \N f 1638 114 +2419 2025-11-17 19:10:29.938989+00 \N f 1639 99 +2325 2025-11-14 15:53:04.395586+00 2025-11-24 08:33:46.889741+00 f 1599 78 +2420 2025-11-17 19:21:22.234056+00 2025-11-17 19:35:42.225695+00 f 1639 70 +2421 2025-11-17 19:38:09.571752+00 2025-11-17 19:44:04.083098+00 f 1639 68 +2360 2025-11-15 19:38:09.155451+00 2025-11-17 21:43:09.787699+00 f 1614 71 +2361 2025-11-15 19:38:17.593727+00 2025-11-17 21:43:09.787699+00 f 1614 79 +2362 2025-11-15 19:38:26.703299+00 2025-11-17 21:43:09.787699+00 f 1614 80 +2363 2025-11-15 19:38:33.825818+00 2025-11-17 21:43:09.787699+00 f 1614 94 +2422 2025-11-17 23:56:53.67954+00 \N f 1643 114 +2423 2025-11-18 00:06:19.205833+00 \N f 1644 70 +2424 2025-11-18 00:11:33.896233+00 \N f 1645 114 +2425 2025-11-18 00:15:09.184399+00 \N f 1646 70 +2426 2025-11-18 14:58:36.865991+00 \N f 1650 1 +2427 2025-11-18 14:59:11.952402+00 \N f 1640 79 +2429 2025-11-18 14:59:26.24214+00 \N f 1650 2 +2430 2025-11-18 14:59:27.220847+00 \N f 1640 80 +2431 2025-11-18 14:59:47.122147+00 \N f 1640 89 +2432 2025-11-18 15:00:01.712176+00 \N f 1640 94 +2433 2025-11-18 15:00:04.469979+00 \N f 1650 79 +2435 2025-11-18 15:00:08.713902+00 \N f 1650 80 +2436 2025-11-18 15:00:21.511599+00 \N f 1650 80 +2437 2025-11-18 15:00:41.712418+00 \N f 1650 88 +2438 2025-11-18 15:00:52.027433+00 \N f 1650 91 +2434 2025-11-18 15:00:07.228003+00 2025-11-18 15:01:29.974731+00 f 1640 91 +2439 2025-11-18 15:42:04.079041+00 \N f 1651 99 +2440 2025-11-18 15:42:49.48394+00 \N f 1651 70 +2441 2025-11-18 15:43:07.057318+00 \N f 1651 113 +2442 2025-11-18 15:59:31.002087+00 2025-11-18 16:00:50.71897+00 t 1642 82 +2443 2025-11-18 15:59:31.236253+00 2025-11-18 16:39:56.411749+00 f 1642 120 +2449 2025-11-18 17:11:40.968132+00 \N f 1648 96 +2455 2025-11-18 17:16:31.000263+00 2025-11-18 17:18:10.012464+00 t 1652 91 +2495 2025-11-19 14:22:33.348405+00 2025-11-23 01:35:26.109407+00 f 1668 71 +2496 2025-11-19 14:22:45.276872+00 2025-11-23 01:35:26.109407+00 f 1668 101 +2498 2025-11-19 14:23:01.124156+00 2025-11-23 01:35:26.109407+00 f 1668 2 +2502 2025-11-19 14:31:23.893978+00 2025-11-23 01:45:28.966181+00 f 1674 87 +2504 2025-11-19 14:31:42.053253+00 2025-11-23 01:45:28.966181+00 f 1674 96 +2445 2025-11-18 16:47:47.237179+00 2025-11-24 12:20:36.40451+00 f 1641 70 +2444 2025-11-18 16:47:44.514994+00 2025-11-18 18:15:04.286556+00 t 1641 68 +2450 2025-11-18 17:15:32.044027+00 2025-11-20 23:25:23.217347+00 f 1652 2 +2451 2025-11-18 17:15:39.661777+00 2025-11-20 23:25:23.217347+00 f 1652 1 +2452 2025-11-18 17:15:55.97216+00 2025-11-20 23:25:23.217347+00 f 1652 70 +2453 2025-11-18 17:16:07.339112+00 2025-11-20 23:25:23.217347+00 f 1652 79 +2467 2025-11-18 19:05:33.078709+00 2025-11-18 19:09:18.158568+00 t 1653 79 +2464 2025-11-18 19:05:10.097225+00 2025-11-18 19:09:18.158568+00 f 1653 89 +2465 2025-11-18 19:05:17.372376+00 2025-11-18 19:09:18.158568+00 f 1653 91 +2466 2025-11-18 19:05:30.469297+00 2025-11-18 19:09:18.158568+00 f 1653 88 +2468 2025-11-18 19:05:46.300981+00 2025-11-18 19:09:18.158568+00 f 1653 68 +2469 2025-11-18 19:05:49.258924+00 2025-11-18 19:09:18.158568+00 f 1653 70 +2428 2025-11-18 14:59:23.127191+00 2025-11-18 19:13:48.090104+00 f 1640 68 +2470 2025-11-18 19:53:46.613111+00 2025-11-18 19:54:47.516936+00 t 1655 68 +2484 2025-11-19 12:51:07.405842+00 2025-11-19 12:51:49.771989+00 t 1662 91 +2472 2025-11-18 19:57:28.182123+00 \N f 1656 92 +2473 2025-11-18 20:10:45.976409+00 \N f 1658 82 +2457 2025-11-18 17:21:59.316614+00 2025-11-18 21:25:32.820523+00 t 1649 1 +2478 2025-11-19 12:50:08.780531+00 2025-11-19 12:51:49.771989+00 f 1662 68 +2479 2025-11-19 12:50:13.426128+00 2025-11-19 12:51:49.771989+00 f 1662 70 +2480 2025-11-19 12:50:29.002013+00 2025-11-19 12:51:49.771989+00 f 1662 80 +2481 2025-11-19 12:50:37.493502+00 2025-11-19 12:51:49.771989+00 f 1662 79 +2482 2025-11-19 12:50:48.427917+00 2025-11-19 12:51:49.771989+00 f 1662 88 +2483 2025-11-19 12:50:59.672264+00 2025-11-19 12:51:49.771989+00 f 1662 89 +2474 2025-11-18 21:28:59.847808+00 \N f 1659 100 +2475 2025-11-18 22:04:43.416169+00 \N f 1660 90 +2458 2025-11-18 17:22:07.019608+00 2025-11-19 01:47:35.376219+00 f 1649 2 +2459 2025-11-18 17:22:26.722854+00 2025-11-19 01:47:35.376219+00 f 1649 70 +2460 2025-11-18 17:22:33.899269+00 2025-11-19 01:47:35.376219+00 f 1649 92 +2461 2025-11-18 17:22:58.702209+00 2025-11-19 01:47:35.376219+00 f 1649 80 +2462 2025-11-18 17:23:10.596024+00 2025-11-19 01:47:35.376219+00 f 1649 88 +2463 2025-11-18 17:23:24.764326+00 2025-11-19 01:47:35.376219+00 f 1649 101 +2485 2025-11-19 12:51:15.710175+00 2025-11-19 12:51:49.771989+00 f 1662 94 +2476 2025-11-19 12:49:53.003704+00 2025-11-19 12:51:49.771989+00 f 1662 2 +2477 2025-11-19 12:49:53.400321+00 2025-11-19 12:51:49.771989+00 f 1662 2 +2486 2025-11-19 12:59:10.936262+00 \N f 1665 100 +2487 2025-11-19 13:20:29.499918+00 \N f 1669 100 +2491 2025-11-19 13:30:14.458515+00 2025-11-19 13:30:25.697905+00 t 1661 80 +2488 2025-11-19 13:29:42.489277+00 2025-11-19 13:30:25.697905+00 f 1661 1 +2489 2025-11-19 13:29:50.654535+00 2025-11-19 13:30:25.697905+00 f 1661 2 +2490 2025-11-19 13:30:04.671095+00 2025-11-19 13:30:25.697905+00 f 1661 68 +2492 2025-11-19 13:30:23.453881+00 2025-11-19 13:30:25.697905+00 f 1661 88 +2493 2025-11-19 13:30:25.86094+00 \N f 1661 89 +2494 2025-11-19 13:30:37.424709+00 \N f 1661 91 +2500 2025-11-19 14:27:57.122651+00 \N f 1673 90 +2513 2025-11-19 14:55:02.598334+00 2025-11-19 14:55:43.413871+00 t 1675 114 +2497 2025-11-19 14:22:49.052029+00 2025-11-19 14:23:36.955894+00 t 1668 21 +2471 2025-11-18 19:53:49.736603+00 2025-11-25 01:14:32.353061+00 f 1655 79 +2499 2025-11-19 14:25:14.362032+00 \N f 1667 90 +2501 2025-11-19 14:29:48.064755+00 2025-11-19 14:34:49.33222+00 t 1672 94 +2503 2025-11-19 14:31:28.887125+00 2025-11-19 14:36:59.802026+00 t 1674 74 +2505 2025-11-19 14:46:06.533117+00 \N f 1664 21 +2506 2025-11-19 14:46:08.177544+00 \N f 1664 94 +2507 2025-11-19 14:49:45.707291+00 \N f 1676 100 +2508 2025-11-19 14:54:10.590567+00 2025-11-19 14:55:43.413871+00 f 1675 2 +2509 2025-11-19 14:54:19.835574+00 2025-11-19 14:55:43.413871+00 f 1675 70 +2510 2025-11-19 14:54:30.654387+00 2025-11-19 14:55:43.413871+00 f 1675 71 +2511 2025-11-19 14:54:40.404093+00 2025-11-19 14:55:43.413871+00 f 1675 80 +2512 2025-11-19 14:54:51.106241+00 2025-11-19 14:55:43.413871+00 f 1675 101 +2517 2025-11-19 15:33:03.323205+00 2025-11-19 15:33:25.923903+00 t 1666 80 +2514 2025-11-19 15:32:44.79348+00 2025-11-19 15:33:25.923903+00 f 1666 2 +2515 2025-11-19 15:32:55.904292+00 2025-11-19 15:33:25.923903+00 f 1666 79 +2516 2025-11-19 15:33:00.350548+00 2025-11-19 15:33:25.923903+00 f 1666 68 +2518 2025-11-19 15:33:11.542336+00 2025-11-19 15:33:25.923903+00 f 1666 71 +2519 2025-11-19 15:33:28.656289+00 \N f 1666 78 +2520 2025-11-19 15:33:30.639553+00 \N f 1666 88 +2521 2025-11-19 15:33:42.549265+00 \N f 1666 91 +2522 2025-11-19 16:33:42.503755+00 \N f 1677 92 +2523 2025-11-19 16:33:45.812816+00 \N f 1677 89 +2524 2025-11-19 16:33:51.271828+00 \N f 1677 94 +2525 2025-11-19 16:34:10.017014+00 \N f 1677 79 +2527 2025-11-19 16:48:15.944442+00 \N f 1678 92 +2526 2025-11-19 16:38:31.330599+00 2025-11-19 16:50:18.237287+00 f 1677 70 +2529 2025-11-19 18:08:39.35663+00 2025-11-19 18:08:41.269783+00 f 1679 94 +2528 2025-11-19 18:08:34.789947+00 2025-11-19 18:08:41.269783+00 f 1679 79 +2531 2025-11-19 18:10:51.403238+00 \N f 1670 91 +2533 2025-11-19 18:14:18.247657+00 \N f 1679 89 +2532 2025-11-19 18:13:51.442124+00 2025-11-19 18:14:31.526364+00 f 1679 101 +2530 2025-11-19 18:08:41.35824+00 2025-11-19 18:29:59.907511+00 f 1679 92 +2534 2025-11-19 18:45:57.203085+00 2025-11-19 18:47:12.603976+00 t 1680 68 +2583 2025-11-20 18:57:49.026589+00 \N f 1704 98 +2584 2025-11-20 19:05:34.301127+00 \N f 1706 121 +2537 2025-11-19 18:52:55.604896+00 \N f 1682 100 +2538 2025-11-19 18:58:02.358256+00 \N f 1681 90 +2539 2025-11-19 19:00:11.373821+00 \N f 1683 121 +2540 2025-11-19 19:02:44.344739+00 \N f 1684 70 +2541 2025-11-19 19:03:36.754382+00 \N f 1685 70 +2585 2025-11-20 20:15:29.691152+00 \N f 1707 100 +2587 2025-11-20 21:27:24.467802+00 \N f 1708 89 +2588 2025-11-20 21:27:35.668692+00 \N f 1708 88 +2543 2025-11-19 19:35:05.132753+00 \N f 1686 90 +2544 2025-11-19 19:35:19.996221+00 \N f 1686 5 +2589 2025-11-20 21:27:44.858624+00 \N f 1708 79 +2590 2025-11-20 21:27:49.319063+00 \N f 1708 78 +2591 2025-11-20 21:29:36.43667+00 \N f 1709 90 +2586 2025-11-20 21:27:10.975675+00 2025-11-20 22:43:08.643626+00 f 1708 1 +2546 2025-11-19 20:13:36.970062+00 2025-11-19 20:13:47.638581+00 t 1688 1 +2545 2025-11-19 20:12:26.015116+00 2025-11-19 20:13:47.638581+00 f 1688 80 +2542 2025-11-19 19:27:33.563842+00 2025-11-19 20:25:26.998008+00 t 1687 82 +2547 2025-11-19 21:00:57.666713+00 \N f 1690 100 +2548 2025-11-19 21:09:53.840245+00 \N f 1691 94 +2550 2025-11-19 21:10:15.232711+00 \N f 1691 80 +2551 2025-11-19 21:10:17.380197+00 \N f 1691 89 +2549 2025-11-19 21:09:57.028282+00 2025-11-19 21:17:28.885199+00 f 1691 92 +2553 2025-11-19 21:16:38.476635+00 2025-11-19 21:18:32.282436+00 t 1689 1 +2552 2025-11-19 21:10:25.351229+00 2025-11-19 21:34:29.837629+00 f 1691 70 +2554 2025-11-19 23:56:23.302912+00 \N f 1692 113 +2555 2025-11-19 23:56:31.694695+00 \N f 1692 89 +2556 2025-11-19 23:56:37.559793+00 \N f 1692 93 +2557 2025-11-19 23:56:46.004767+00 \N f 1692 109 +2558 2025-11-19 23:56:52.154668+00 \N f 1692 88 +2535 2025-11-19 18:46:03.700558+00 2025-11-20 00:15:46.17661+00 f 1680 92 +2536 2025-11-19 18:46:05.901054+00 2025-11-20 00:15:46.17661+00 f 1680 79 +2559 2025-11-20 00:18:05.411667+00 \N f 1692 1 +2561 2025-11-20 14:31:14.579089+00 2025-11-20 14:31:30.91846+00 t 1694 80 +2454 2025-11-18 17:16:18.293416+00 2025-11-20 23:25:23.217347+00 f 1652 80 +2456 2025-11-18 17:16:49.315304+00 2025-11-20 23:25:23.217347+00 f 1652 88 +2565 2025-11-20 14:41:05.183249+00 2025-11-20 14:54:59.912058+00 t 1696 82 +2564 2025-11-20 14:41:04.303745+00 2025-11-20 14:54:59.912058+00 f 1696 120 +2566 2025-11-20 15:01:30.676768+00 \N f 1360 88 +2560 2025-11-20 14:31:09.581862+00 2025-11-20 16:11:55.654119+00 f 1694 79 +2562 2025-11-20 14:31:15.17622+00 2025-11-20 16:11:55.654119+00 f 1694 70 +2563 2025-11-20 14:31:19.778586+00 2025-11-20 16:11:55.654119+00 f 1694 88 +2567 2025-11-20 16:26:19.437727+00 \N f 1697 88 +2568 2025-11-20 16:26:33.197757+00 \N f 1698 121 +2571 2025-11-20 16:40:28.425245+00 2025-11-20 16:41:11.5265+00 t 1699 21 +2569 2025-11-20 16:40:14.059555+00 2025-11-20 16:48:12.190052+00 f 1699 70 +2570 2025-11-20 16:40:22.007913+00 2025-11-20 16:48:12.190052+00 f 1699 97 +2572 2025-11-20 16:40:29.974724+00 2025-11-20 16:48:12.190052+00 f 1699 9 +2573 2025-11-20 16:40:59.97498+00 2025-11-20 16:48:12.190052+00 f 1699 121 +2576 2025-11-20 17:51:22.231246+00 2025-11-20 17:51:34.975412+00 t 1702 80 +2578 2025-11-20 17:54:38.89577+00 \N f 1700 80 +2579 2025-11-20 18:09:39.816381+00 \N f 1703 1 +2580 2025-11-20 18:10:03.976939+00 \N f 1703 121 +2581 2025-11-20 18:16:15.832251+00 \N f 1703 70 +2582 2025-11-20 18:16:33.61633+00 2025-11-20 18:35:24.922464+00 f 1703 97 +2592 2025-11-20 23:43:17.250599+00 2025-11-20 23:43:34.968417+00 f 1710 113 +2593 2025-11-20 23:43:17.86371+00 2025-11-20 23:43:34.968417+00 f 1710 14 +2594 2025-11-20 23:43:24.343307+00 2025-11-20 23:43:34.968417+00 f 1710 2 +2596 2025-11-20 23:43:33.085641+00 2025-11-20 23:43:34.968417+00 f 1710 96 +2595 2025-11-20 23:43:29.344676+00 2025-11-20 23:43:34.968417+00 f 1710 89 +2607 2025-11-21 13:48:36.795519+00 2025-11-21 13:49:25.188192+00 t 1717 92 +2575 2025-11-20 17:51:17.863778+00 2025-11-21 01:13:59.213173+00 f 1702 79 +2577 2025-11-20 17:51:27.478295+00 2025-11-21 01:13:59.213173+00 f 1702 88 +2597 2025-11-21 12:04:49.962068+00 2025-11-21 12:06:34.484282+00 f 1710 68 +2574 2025-11-20 17:48:10.927656+00 2025-11-21 12:06:43.5609+00 t 1701 68 +2598 2025-11-21 12:18:38.161427+00 \N f 1712 82 +2600 2025-11-21 12:31:15.855787+00 \N f 1713 90 +2608 2025-11-21 13:48:41.165853+00 2025-11-21 13:49:25.188192+00 f 1717 91 +2601 2025-11-21 12:58:20.147233+00 2025-11-21 12:58:28.694076+00 f 1715 90 +2602 2025-11-21 13:00:19.117906+00 \N f 1714 1 +2603 2025-11-21 13:03:27.866954+00 \N f 1714 21 +2605 2025-11-21 13:03:45.056167+00 \N f 1714 94 +2606 2025-11-21 13:03:51.624334+00 \N f 1714 121 +2604 2025-11-21 13:03:32.436418+00 2025-11-21 13:06:54.040843+00 f 1714 70 +2609 2025-11-21 13:48:43.422212+00 2025-11-21 13:49:25.188192+00 f 1717 89 +2610 2025-11-21 13:49:00.820976+00 2025-11-21 13:49:25.188192+00 f 1717 88 +2611 2025-11-21 13:49:06.580261+00 2025-11-21 13:49:25.188192+00 f 1717 79 +2613 2025-11-21 15:05:37.092266+00 2025-11-21 15:07:47.872336+00 t 1718 91 +2619 2025-11-21 15:54:15.784399+00 2025-11-21 15:54:41.632446+00 f 1720 91 +2620 2025-11-21 15:54:56.797073+00 \N f 1720 88 +2446 2025-11-18 16:47:54.74748+00 2025-11-24 12:20:36.40451+00 f 1641 80 +2447 2025-11-18 16:48:05.857419+00 2025-11-24 12:20:36.40451+00 f 1641 79 +2618 2025-11-21 15:54:12.009155+00 2025-11-21 15:54:41.632446+00 t 1720 80 +2629 2025-11-21 16:37:43.63318+00 2025-11-21 16:37:55.451481+00 t 1722 80 +2599 2025-11-21 12:18:42.061604+00 2025-11-21 18:22:41.998303+00 f 1712 120 +2612 2025-11-21 15:05:33.007003+00 2025-11-23 23:53:33.252055+00 f 1718 94 +2614 2025-11-21 15:06:06.928713+00 2025-11-23 23:53:33.252055+00 f 1718 79 +2616 2025-11-21 15:20:09.66799+00 2025-11-21 16:40:32.230661+00 t 1719 94 +2615 2025-11-21 15:19:43.704085+00 2025-11-21 16:40:32.230661+00 f 1719 1 +2617 2025-11-21 15:20:14.874398+00 2025-11-21 16:40:32.230661+00 f 1719 80 +2621 2025-11-21 16:26:05.351823+00 2025-11-21 16:40:32.230661+00 f 1719 21 +2622 2025-11-21 16:26:14.402289+00 2025-11-21 16:40:32.230661+00 f 1719 70 +2623 2025-11-21 16:36:11.385651+00 2025-11-21 18:03:18.424296+00 f 1722 2 +2624 2025-11-21 16:36:21.153916+00 2025-11-21 18:03:18.424296+00 f 1722 9 +2625 2025-11-21 16:36:29.312934+00 2025-11-21 18:03:18.424296+00 f 1722 68 +2448 2025-11-18 16:48:11.595806+00 2025-11-24 12:20:36.40451+00 f 1641 88 +2630 2025-11-21 17:20:49.706978+00 2025-11-21 17:21:02.011811+00 t 1721 1 +2673 2025-11-22 17:35:44.662606+00 \N f 1739 92 +2634 2025-11-21 17:42:54.804835+00 \N f 1723 96 +2626 2025-11-21 16:36:39.259677+00 2025-11-21 18:03:18.424296+00 f 1722 70 +2627 2025-11-21 16:37:24.891389+00 2025-11-21 18:03:18.424296+00 f 1722 78 +2628 2025-11-21 16:37:33.768838+00 2025-11-21 18:03:18.424296+00 f 1722 79 +2635 2025-11-21 19:33:12.301726+00 \N f 1724 68 +2636 2025-11-21 19:53:20.93937+00 \N f 1725 113 +2637 2025-11-21 19:53:33.495483+00 \N f 1725 91 +2674 2025-11-22 17:35:49.043073+00 \N f 1739 87 +2631 2025-11-21 17:20:56.079067+00 2025-11-21 20:20:25.402611+00 f 1721 2 +2632 2025-11-21 17:21:17.351908+00 2025-11-21 20:20:25.402611+00 f 1721 74 +2633 2025-11-21 17:21:36.016613+00 2025-11-21 20:20:25.402611+00 f 1721 88 +2675 2025-11-22 18:31:32.383971+00 \N f 1740 80 +2643 2025-11-21 20:09:24.51788+00 2025-11-21 20:33:03.467223+00 t 1726 112 +2676 2025-11-22 18:51:01.276327+00 2025-11-22 18:57:46.890027+00 t 1741 88 +2644 2025-11-21 20:49:21.305878+00 \N f 1727 100 +2645 2025-11-21 20:51:49.861725+00 \N f 1728 82 +2646 2025-11-21 20:51:50.398844+00 2025-11-22 00:33:36.531852+00 f 1728 120 +2638 2025-11-21 20:09:12.594784+00 2025-11-22 06:37:27.146795+00 f 1726 104 +2639 2025-11-21 20:09:12.648852+00 2025-11-22 06:37:27.146795+00 f 1726 85 +2640 2025-11-21 20:09:13.316156+00 2025-11-22 06:37:27.146795+00 f 1726 116 +2641 2025-11-21 20:09:14.600387+00 2025-11-22 06:37:27.146795+00 f 1726 111 +2642 2025-11-21 20:09:23.416008+00 2025-11-22 06:37:27.146795+00 f 1726 106 +2647 2025-11-22 12:19:30.795502+00 2025-11-22 12:19:45.58319+00 t 1731 1 +2648 2025-11-22 12:19:50.737236+00 \N f 1731 70 +2649 2025-11-22 12:19:51.315106+00 \N f 1731 94 +2656 2025-11-22 13:16:02.019048+00 2025-11-22 13:17:48.605484+00 t 1733 114 +2677 2025-11-22 18:54:37.593878+00 2025-11-22 19:14:43.355899+00 f 1741 94 +2678 2025-11-22 18:54:39.112994+00 2025-11-22 19:14:43.355899+00 f 1741 2 +2679 2025-11-23 16:20:51.731583+00 \N f 1744 94 +2661 2025-11-22 14:03:49.467973+00 2025-11-22 14:04:00.850063+00 t 1734 88 +2657 2025-11-22 14:03:41.942141+00 2025-11-22 14:04:00.850063+00 f 1734 1 +2658 2025-11-22 14:03:42.552252+00 2025-11-22 14:04:00.850063+00 f 1734 2 +2659 2025-11-22 14:03:43.682065+00 2025-11-22 14:04:00.850063+00 f 1734 14 +2660 2025-11-22 14:03:48.39752+00 2025-11-22 14:04:00.850063+00 f 1734 80 +2662 2025-11-22 14:03:50.460232+00 2025-11-22 14:04:00.850063+00 f 1734 94 +2663 2025-11-22 14:03:55.770521+00 2025-11-22 14:04:00.850063+00 f 1734 101 +2664 2025-11-22 14:03:56.598997+00 2025-11-22 14:04:00.850063+00 f 1734 114 +2650 2025-11-22 13:15:43.074654+00 2025-11-22 14:08:03.362453+00 f 1733 1 +2651 2025-11-22 13:15:43.550569+00 2025-11-22 14:08:03.362453+00 f 1733 2 +2652 2025-11-22 13:15:44.720213+00 2025-11-22 14:08:03.362453+00 f 1733 78 +2653 2025-11-22 13:15:55.868777+00 2025-11-22 14:08:03.362453+00 f 1733 80 +2654 2025-11-22 13:15:56.364329+00 2025-11-22 14:08:03.362453+00 f 1733 88 +2655 2025-11-22 13:15:57.337813+00 2025-11-22 14:08:03.362453+00 f 1733 101 +2665 2025-11-22 14:41:56.307437+00 2025-11-22 14:46:08.921406+00 f 1735 70 +2668 2025-11-22 15:11:58.266773+00 2025-11-22 15:12:24.43105+00 t 1736 80 +2681 2025-11-23 16:23:02.858555+00 2025-11-23 16:23:21.792495+00 t 1746 80 +2709 2025-11-24 14:21:20.509787+00 2025-11-24 14:33:56.807102+00 t 1755 89 +2680 2025-11-23 16:23:01.961849+00 2025-11-23 16:26:24.681773+00 f 1746 79 +2666 2025-11-22 15:11:57.0488+00 2025-11-22 16:48:40.014953+00 f 1736 68 +2667 2025-11-22 15:11:57.43604+00 2025-11-22 16:48:40.014953+00 f 1736 71 +2669 2025-11-22 15:12:13.630031+00 2025-11-22 16:48:40.014953+00 f 1736 81 +2670 2025-11-22 15:12:14.265493+00 2025-11-22 16:48:40.014953+00 f 1736 91 +2671 2025-11-22 15:12:14.879017+00 2025-11-22 16:48:40.014953+00 f 1736 94 +2672 2025-11-22 15:12:19.30454+00 2025-11-22 16:48:40.014953+00 f 1736 114 +2682 2025-11-23 16:23:20.662159+00 2025-11-23 16:26:24.681773+00 f 1746 88 +2683 2025-11-23 16:23:46.962275+00 2025-11-23 16:26:24.681773+00 f 1746 78 +2684 2025-11-23 18:34:24.485804+00 \N f 1747 82 +2685 2025-11-23 18:37:06.641377+00 \N f 1748 82 +2686 2025-11-23 18:45:57.282612+00 \N f 1743 94 +2687 2025-11-23 20:29:16.584802+00 \N f 1749 68 +2691 2025-11-24 12:03:17.380397+00 2025-11-24 12:04:00.992414+00 t 1751 114 +2692 2025-11-24 12:03:23.923838+00 2025-11-24 12:04:00.992414+00 f 1751 88 +2693 2025-11-24 12:03:27.268642+00 2025-11-24 12:04:00.992414+00 f 1751 1 +2708 2025-11-24 14:21:19.70763+00 2025-11-24 14:33:56.807102+00 f 1755 88 +2696 2025-11-24 12:27:10.131893+00 2025-11-24 12:31:57.006233+00 t 1750 92 +2688 2025-11-24 12:00:46.656434+00 2025-11-24 12:31:57.006233+00 f 1750 1 +2689 2025-11-24 12:00:47.313451+00 2025-11-24 12:31:57.006233+00 f 1750 78 +2690 2025-11-24 12:00:47.94207+00 2025-11-24 12:31:57.006233+00 f 1750 79 +2694 2025-11-24 12:27:07.504082+00 2025-11-24 12:31:57.006233+00 f 1750 80 +2695 2025-11-24 12:27:08.778236+00 2025-11-24 12:31:57.006233+00 f 1750 88 +2697 2025-11-24 12:27:21.041563+00 2025-11-24 12:31:57.006233+00 f 1750 101 +2698 2025-11-24 12:27:21.126415+00 2025-11-24 12:31:57.006233+00 f 1750 114 +2699 2025-11-24 12:39:18.333939+00 \N f 1750 118 +2710 2025-11-24 14:21:26.536259+00 2025-11-24 14:33:56.807102+00 f 1755 119 +2711 2025-11-24 14:21:27.954506+00 2025-11-24 14:33:56.807102+00 f 1755 114 +2705 2025-11-24 13:43:17.732076+00 2025-11-24 13:54:23.00754+00 t 1753 2 +2701 2025-11-24 13:41:25.980709+00 2025-11-24 13:54:23.00754+00 f 1753 21 +2702 2025-11-24 13:41:26.778501+00 2025-11-24 13:54:23.00754+00 f 1753 80 +2703 2025-11-24 13:41:30.048034+00 2025-11-24 13:54:23.00754+00 f 1753 94 +2704 2025-11-24 13:41:31.36323+00 2025-11-24 13:54:23.00754+00 f 1753 88 +2700 2025-11-24 13:41:25.087793+00 2025-11-24 13:54:23.00754+00 f 1753 1 +2706 2025-11-24 14:18:54.732508+00 \N f 1752 90 +2707 2025-11-24 14:18:55.770553+00 \N f 1752 119 +2716 2025-11-24 17:11:36.017277+00 \N f 1757 79 +2717 2025-11-24 17:11:37.620682+00 \N f 1757 88 +2719 2025-11-24 17:11:39.791039+00 \N f 1757 94 +2714 2025-11-24 16:37:49.895059+00 2025-11-24 17:30:12.155672+00 t 1760 21 +2718 2025-11-24 17:11:38.075762+00 2025-11-24 19:58:58.28597+00 f 1757 80 +2712 2025-11-24 14:24:12.665221+00 2025-11-24 18:38:23.366397+00 t 1756 68 +2720 2025-11-24 20:44:38.603252+00 2025-11-24 20:45:01.748042+00 t 1761 121 +2721 2025-11-24 20:45:48.925558+00 \N f 1761 2 +2725 2025-11-24 22:02:07.107646+00 2025-11-24 22:02:59.645967+00 t 1762 114 +2722 2025-11-24 22:02:00.188561+00 2025-11-24 22:02:59.645967+00 f 1762 88 +2723 2025-11-24 22:02:00.215745+00 2025-11-24 22:02:59.645967+00 f 1762 79 +2724 2025-11-24 22:02:02.3073+00 2025-11-24 22:02:59.645967+00 f 1762 68 +2726 2025-11-24 22:02:08.989765+00 2025-11-24 22:02:59.645967+00 f 1762 101 +2713 2025-11-24 16:37:49.359938+00 2025-11-25 13:48:54.014288+00 f 1760 2 +2715 2025-11-24 16:37:50.465632+00 2025-11-25 13:48:54.014288+00 f 1760 94 +2727 2025-11-24 22:02:12.544678+00 2025-11-24 22:02:59.645967+00 f 1762 91 +2728 2025-11-24 22:27:56.228141+00 \N f 1763 118 +2734 2025-11-25 12:27:28.018001+00 2025-11-25 12:27:53.546939+00 t 1767 88 +2729 2025-11-25 12:27:21.119721+00 2025-11-25 12:27:53.546939+00 f 1767 2 +2730 2025-11-25 12:27:21.391027+00 2025-11-25 12:27:53.546939+00 f 1767 78 +2731 2025-11-25 12:27:22.20077+00 2025-11-25 12:27:53.546939+00 f 1767 79 +2732 2025-11-25 12:27:26.686103+00 2025-11-25 12:27:53.546939+00 f 1767 80 +2733 2025-11-25 12:27:27.378798+00 2025-11-25 12:27:53.546939+00 f 1767 81 +2735 2025-11-25 12:27:36.748155+00 2025-11-25 12:27:53.546939+00 f 1767 101 +2736 2025-11-25 12:27:43.678876+00 2025-11-25 12:27:53.546939+00 f 1767 114 +2802 2025-11-25 23:24:18.523204+00 \N f 1797 1 +2803 2025-11-25 23:24:24.895595+00 \N f 1797 80 +2804 2025-11-25 23:24:30.929789+00 \N f 1797 121 +2805 2025-11-25 23:24:35.666177+00 \N f 1797 71 +2737 2025-11-25 12:54:33.218559+00 2025-11-25 12:55:46.28598+00 t 1768 1 +2738 2025-11-25 12:54:33.753848+00 2025-11-25 12:55:46.28598+00 f 1768 2 +2739 2025-11-25 12:54:34.882089+00 2025-11-25 12:55:46.28598+00 f 1768 74 +2740 2025-11-25 12:54:41.472009+00 2025-11-25 12:55:46.28598+00 f 1768 80 +2741 2025-11-25 12:54:42.220104+00 2025-11-25 12:55:46.28598+00 f 1768 88 +2742 2025-11-25 12:54:42.903821+00 2025-11-25 12:55:46.28598+00 f 1768 94 +2743 2025-11-25 13:18:18.688745+00 \N f 1769 9 +2744 2025-11-25 13:18:20.256903+00 \N f 1769 79 +2745 2025-11-25 13:18:26.526871+00 \N f 1769 89 +2746 2025-11-25 13:18:27.970457+00 \N f 1769 91 +2807 2025-11-25 23:30:42.757794+00 2025-11-25 23:35:41.952037+00 t 1799 68 +2782 2025-11-25 16:35:22.219364+00 2025-11-25 16:35:44.074047+00 t 1782 94 +2775 2025-11-25 16:35:06.238197+00 2025-11-25 16:35:44.074047+00 f 1782 21 +2776 2025-11-25 16:35:06.683686+00 2025-11-25 16:35:44.074047+00 f 1782 2 +2777 2025-11-25 16:35:08.138792+00 2025-11-25 16:35:44.074047+00 f 1782 74 +2753 2025-11-25 13:19:30.69208+00 2025-11-25 13:20:14.313073+00 t 1770 114 +2747 2025-11-25 13:19:03.957956+00 2025-11-25 13:20:14.313073+00 f 1770 1 +2748 2025-11-25 13:19:04.611582+00 2025-11-25 13:20:14.313073+00 f 1770 2 +2749 2025-11-25 13:19:05.247067+00 2025-11-25 13:20:14.313073+00 f 1770 68 +2750 2025-11-25 13:19:06.250152+00 2025-11-25 13:20:14.313073+00 f 1770 80 +2751 2025-11-25 13:19:22.594892+00 2025-11-25 13:20:14.313073+00 f 1770 88 +2752 2025-11-25 13:19:30.145508+00 2025-11-25 13:20:14.313073+00 f 1770 101 +2754 2025-11-25 14:09:56.123436+00 2025-11-25 14:10:57.273504+00 t 1775 68 +2755 2025-11-25 14:09:56.762076+00 2025-11-25 14:10:57.273504+00 f 1775 91 +2756 2025-11-25 14:09:57.842654+00 2025-11-25 14:10:57.273504+00 f 1775 113 +2757 2025-11-25 14:11:03.205311+00 2025-11-25 14:15:02.54061+00 t 1774 1 +2761 2025-11-25 14:26:16.992713+00 2025-11-25 14:26:34.289076+00 t 1776 1 +2758 2025-11-25 14:26:11.316891+00 2025-11-25 14:26:34.289076+00 f 1776 88 +2759 2025-11-25 14:26:12.178726+00 2025-11-25 14:26:34.289076+00 f 1776 70 +2760 2025-11-25 14:26:13.275561+00 2025-11-25 14:26:34.289076+00 f 1776 80 +2762 2025-11-25 14:54:06.378889+00 \N f 1778 68 +2763 2025-11-25 14:54:06.901762+00 \N f 1778 79 +2764 2025-11-25 14:54:08.081989+00 \N f 1778 80 +2765 2025-11-25 14:54:08.990004+00 \N f 1778 89 +2766 2025-11-25 14:54:14.893+00 \N f 1778 91 +2767 2025-11-25 14:54:15.652541+00 \N f 1778 114 +2769 2025-11-25 15:37:52.327123+00 \N f 1779 104 +2770 2025-11-25 15:37:52.895732+00 \N f 1779 106 +2768 2025-11-25 14:54:23.146933+00 2025-11-25 16:05:52.536973+00 t 1777 87 +2778 2025-11-25 16:35:09.4633+00 2025-11-25 16:35:44.074047+00 f 1782 79 +2771 2025-11-25 16:23:57.039503+00 2025-11-25 16:24:07.112392+00 f 1781 9 +2773 2025-11-25 16:23:58.791235+00 2025-11-25 16:24:07.112392+00 f 1781 89 +2774 2025-11-25 16:24:03.017668+00 2025-11-25 16:24:07.112392+00 f 1781 94 +2772 2025-11-25 16:23:57.665994+00 2025-11-25 16:24:07.112392+00 f 1781 79 +2779 2025-11-25 16:35:14.937313+00 2025-11-25 16:35:44.074047+00 f 1782 80 +2780 2025-11-25 16:35:16.644514+00 2025-11-25 16:35:44.074047+00 f 1782 88 +2781 2025-11-25 16:35:16.705278+00 2025-11-25 16:35:44.074047+00 f 1782 91 +2783 2025-11-25 16:42:43.196575+00 \N f 1777 113 +2785 2025-11-25 16:48:15.427462+00 2025-11-25 16:51:45.26006+00 t 1783 21 +2784 2025-11-25 16:48:13.751094+00 2025-11-25 16:51:45.26006+00 f 1783 1 +2786 2025-11-25 16:48:15.584992+00 2025-11-25 16:51:45.26006+00 f 1783 94 +2787 2025-11-25 17:35:41.464221+00 \N f 1785 90 +2788 2025-11-25 17:35:41.77382+00 2025-11-25 18:37:29.47492+00 f 1785 5 +2789 2025-11-25 18:54:02.652779+00 \N f 1754 70 +2791 2025-11-25 19:06:24.338801+00 2025-11-25 19:12:27.095729+00 t 1787 88 +2790 2025-11-25 19:05:45.339928+00 2025-11-25 19:12:27.095729+00 f 1787 106 +2792 2025-11-25 19:45:21.977757+00 \N f 1788 70 +2794 2025-11-25 20:16:22.962739+00 2025-11-25 20:16:29.231533+00 t 1790 1 +2808 2025-11-26 00:09:55.170859+00 \N f 1801 2 +2795 2025-11-25 20:50:55.269046+00 \N f 1792 106 +2796 2025-11-25 20:51:14.36099+00 \N f 1792 112 +2797 2025-11-25 20:53:06.277097+00 \N f 1792 114 +2798 2025-11-25 20:53:16.650565+00 \N f 1792 88 +2799 2025-11-25 21:00:37.41165+00 \N f 1793 112 +2800 2025-11-25 21:23:39.981597+00 \N f 1796 92 +2793 2025-11-25 20:16:22.302335+00 2025-11-25 21:29:32.791108+00 f 1790 94 +2801 2025-11-25 21:51:35.561761+00 \N f 1764 106 +2809 2025-11-26 00:09:56.709366+00 \N f 1801 21 +2811 2025-11-26 00:10:03.433385+00 \N f 1801 88 +2812 2025-11-26 00:10:04.708875+00 \N f 1801 94 +2813 2025-11-26 00:21:22.334909+00 \N f 1802 1 +2810 2025-11-26 00:09:57.171247+00 2025-11-26 00:29:54.213022+00 f 1801 80 +2806 2025-11-25 23:30:25.942496+00 2025-11-26 02:29:20.660769+00 f 1799 99 +\. + + +-- +-- Data for Name: spatial_ref_sys; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spatial_ref_sys (srid, auth_name, auth_srid, srtext, proj4text) FROM stdin; +\. + + +-- +-- Data for Name: storage_filestorage; Type: TABLE DATA; Schema: public; Owner: mariano +-- + +COPY public.storage_filestorage (id, created_at, updated_at, deleted, active, name, file, object_id, content_type_id, user_id, description) FROM stdin; +1 2025-06-20 02:16:23.953586+00 2025-06-20 02:16:23.953599+00 f t ECO OLIVA PEPA SIN PARTICULARIDADES AMAR JUN 25.pdf uploads/ECO_OLIVA_PEPA_SIN_PARTICULARIDADES_AMAR_JUN_25_ri4DR7Q.pdf 987 22 1180 +2 2025-06-20 02:17:26.39428+00 2025-06-20 02:17:26.394292+00 f t 200101010004140001ABD.JPG uploads/200101010004140001ABD_qnc6rCN.JPG 987 22 1180 +3 2025-06-20 02:17:26.627214+00 2025-06-20 02:17:26.627231+00 f t 200101010004280002ABD.JPG uploads/200101010004280002ABD_5DmcJO5.JPG 987 22 1180 +4 2025-06-20 02:17:26.681104+00 2025-06-20 02:17:26.681118+00 f t 200101010004490003ABD.JPG uploads/200101010004490003ABD_jSw1yDX.JPG 987 22 1180 +5 2025-06-20 02:17:26.70193+00 2025-06-20 02:17:26.701942+00 f t 200101010008530012ABD.JPG uploads/200101010008530012ABD_rgPW1TH.JPG 987 22 1180 +6 2025-06-20 02:17:26.713223+00 2025-06-20 02:17:26.713238+00 f t 200101010008010010ABD.JPG uploads/200101010008010010ABD_DWrJgpM.JPG 987 22 1180 +7 2025-06-20 02:17:26.737195+00 2025-06-20 02:17:26.737208+00 f t 200101010006400008ABD.JPG uploads/200101010006400008ABD_jrl1Zfc.JPG 987 22 1180 +8 2025-06-20 02:17:26.766606+00 2025-06-20 02:17:26.766617+00 f t 200101010005350005ABD.JPG uploads/200101010005350005ABD_n2l0GoV.JPG 987 22 1180 +9 2025-06-20 02:17:26.766817+00 2025-06-20 02:17:26.766827+00 f t 200101010006190007ABD.JPG uploads/200101010006190007ABD_TihyOtt.JPG 987 22 1180 +10 2025-06-20 02:17:26.820417+00 2025-06-20 02:17:26.820429+00 f t 200101010005100004ABD.JPG uploads/200101010005100004ABD_Ftd2nby.JPG 987 22 1180 +11 2025-06-20 02:17:26.837209+00 2025-06-20 02:17:26.83722+00 f t 200101010006000006ABD.JPG uploads/200101010006000006ABD_qo2eBI9.JPG 987 22 1180 +12 2025-06-20 02:17:26.867991+00 2025-06-20 02:17:26.868001+00 f t 200101010008340011ABD.JPG uploads/200101010008340011ABD_ajiI0kK.JPG 987 22 1180 +13 2025-06-20 02:17:26.942067+00 2025-06-20 02:17:26.942076+00 f t ECO OLIVA PEPA SIN PARTICULARIDADES AMAR JUN 25.pdf uploads/ECO_OLIVA_PEPA_SIN_PARTICULARIDADES_AMAR_JUN_25_xx5jynQ.pdf 987 22 1180 +14 2025-06-29 18:01:37.480252+00 2025-06-29 18:01:37.480263+00 f t eco de martini roma san marcos AMAR jun 25.pdf uploads/eco_de_martini_roma_san_marcos_AMAR__jun_25_RrsGfRc.pdf 1034 22 114 +15 2025-06-29 18:21:46.989104+00 2025-06-29 18:21:46.989113+00 f t eco farfan pampa amar jun 25.pdf uploads/eco_farfan_pampa_amar__jun_25_zNMXRn2.pdf 1035 22 114 +23 2025-07-01 23:57:39.662487+00 2025-07-01 23:57:39.662496+00 f t V1339996 (3).pdf uploads/V1339996_3_NHUzpOP.pdf 1080 22 113 +17 2025-06-29 18:27:22.243674+00 2025-06-29 18:27:22.243684+00 t t eco de martini roma san marcos AMAR jun 25.pdf uploads/eco_de_martini_roma_san_marcos_AMAR__jun_25_CHPCGeW.pdf 1592 21 114 +18 2025-06-29 18:27:35.699981+00 2025-06-29 18:27:35.699993+00 t t eco de martini roma san marcos AMAR jun 25.pdf uploads/eco_de_martini_roma_san_marcos_AMAR__jun_25_2K6mbNu.pdf 1592 21 114 +16 2025-06-29 18:27:03.941508+00 2025-06-29 18:27:03.941517+00 t t eco de martini roma san marcos AMAR jun 25.pdf uploads/eco_de_martini_roma_san_marcos_AMAR__jun_25_iUJ1t7K.pdf 1592 21 114 +19 2025-06-29 18:30:19.897511+00 2025-06-29 18:30:19.897523+00 f t eco de martini roma san marcos AMAR jun 25.pdf uploads/eco_de_martini_roma_san_marcos_AMAR__jun_25_oCc2q1D.pdf 1592 21 114 Ecografía de Roma +20 2025-06-29 18:32:20.151642+00 2025-06-29 18:32:20.151652+00 f t eco rempel feliz santa clara jun 25.pdf uploads/eco_rempel_feliz_santa_clara_jun_25_QBL7qY0.pdf 1036 22 114 +21 2025-06-29 18:34:15.521022+00 2025-06-29 18:34:15.52103+00 f t eco rempel feliz santa clara jun 25.pdf uploads/eco_rempel_feliz_santa_clara_jun_25_jMHIUbd.pdf 1604 21 114 +22 2025-07-01 23:56:35.40567+00 2025-07-01 23:56:35.40568+00 f t V1339997 (2).pdf uploads/V1339997_2_jbo1N2j.pdf 1079 22 113 +25 2025-07-02 16:40:38.018532+00 2025-07-02 16:40:38.018542+00 f t eco-blue-meredocx-21432-abaf3cd5-643e-48ca-a1f4-96b7f6b8e6d5.pdf uploads/eco-blue-meredocx-21432-abaf3cd5-643e-48ca-a1f4-96b7f6b8e6d5_zm3G1SQ.pdf 1614 21 113 +26 2025-07-02 16:40:43.678665+00 2025-07-02 16:40:43.678674+00 f t Pedido_868753pdf-21432-752d007c-2fb8-49ea-9b1b-b068d7b554d8.pdf uploads/Pedido_868753pdf-21432-752d007c-2fb8-49ea-9b1b-b068d7b554d8_a3A58XG.pdf 1614 21 113 +31 2025-07-02 19:33:17.907963+00 2025-07-02 19:33:17.907971+00 f t DT706642_2025-01-27-08-57-10-064 (1).PDF uploads/DT706642_2025-01-27-08-57-10-064_1_ytCZ2yB.PDF 1083 22 1026 +28 2025-07-02 16:40:59.939474+00 2025-07-02 16:40:59.939483+00 f t Pedido_868753pdf-21432-752d007c-2fb8-49ea-9b1b-b068d7b554d8.pdf uploads/Pedido_868753pdf-21432-752d007c-2fb8-49ea-9b1b-b068d7b554d8_9gt7Ha1.pdf 1614 21 113 +29 2025-07-02 16:41:00.109407+00 2025-07-02 16:41:00.109419+00 t t eco-blue-meredocx-21432-abaf3cd5-643e-48ca-a1f4-96b7f6b8e6d5.pdf uploads/eco-blue-meredocx-21432-abaf3cd5-643e-48ca-a1f4-96b7f6b8e6d5_9b15k9Y.pdf 1614 21 113 +27 2025-07-02 16:40:44.173154+00 2025-07-02 16:40:44.173163+00 t t eco-blue-meredocx-21432-abaf3cd5-643e-48ca-a1f4-96b7f6b8e6d5.pdf uploads/eco-blue-meredocx-21432-abaf3cd5-643e-48ca-a1f4-96b7f6b8e6d5_ORFqSko.pdf 1614 21 113 +24 2025-07-02 16:40:37.46989+00 2025-07-02 16:40:37.469898+00 t t Pedido_868753pdf-21432-752d007c-2fb8-49ea-9b1b-b068d7b554d8.pdf uploads/Pedido_868753pdf-21432-752d007c-2fb8-49ea-9b1b-b068d7b554d8_XYdSAfE.pdf 1614 21 113 +30 2025-07-02 18:35:48.337955+00 2025-07-02 18:35:48.337963+00 f t DT716385_2025-02-04-11-25-26-356.PDF uploads/DT716385_2025-02-04-11-25-26-356_tqAQm2E.PDF 1082 22 1026 +32 2025-07-02 19:33:24.437464+00 2025-07-02 19:33:24.437473+00 f t DT706642_2025-01-27-08-57-10-064 (1).PDF uploads/DT706642_2025-01-27-08-57-10-064_1_EZ0POmI.PDF 1083 22 1026 +33 2025-07-02 19:33:24.739286+00 2025-07-02 19:33:24.739295+00 f t DT706642_2025-01-27-08-57-10-064 (1).PDF uploads/DT706642_2025-01-27-08-57-10-064_1_ifKBXIk.PDF 1083 22 1026 +34 2025-07-02 19:37:22.053485+00 2025-07-02 19:37:22.053493+00 f t LEAL. CLOE (1).docx uploads/LEAL._CLOE_1_4WJ1yqP.docx 1084 22 1026 +35 2025-07-02 19:39:48.222485+00 2025-07-02 19:39:48.222494+00 f t GARCIA. PANCHA (1).docx uploads/GARCIA._PANCHA_1_llDzcOV.docx 1085 22 1026 +36 2025-07-02 19:41:56.321458+00 2025-07-02 19:41:56.321469+00 f t SAIN. ESPERANZA (1).docx uploads/SAIN._ESPERANZA_1_xgTuw1X.docx 1086 22 1026 +37 2025-07-02 19:43:20.434723+00 2025-07-02 19:43:20.435886+00 f t MENDOZA. TAMA (1).docx uploads/MENDOZA._TAMA_1_P1QqGYn.docx 1087 22 1026 +38 2025-07-02 19:49:50.593778+00 2025-07-02 19:49:50.593786+00 f t 6-6-25. BECERRA. NEON (1).docx uploads/6-6-25._BECERRA._NEON_1_EItq9UU.docx 1088 22 1026 +39 2025-07-02 19:49:52.428621+00 2025-07-02 19:49:52.428629+00 f t 6-6-25. BECERRA. NEON (1).docx uploads/6-6-25._BECERRA._NEON_1_0TALB09.docx 1088 22 1026 +40 2025-07-02 23:08:35.749976+00 2025-07-02 23:08:35.749986+00 f t Correa-Pepepdf-21432-0950e116-27dc-4747-b448-d48d9d0c2d10.pdf uploads/Correa-Pepepdf-21432-0950e116-27dc-4747-b448-d48d9d0c2d10_ME4YYRV.pdf 1089 22 113 +41 2025-07-02 23:08:46.559495+00 2025-07-02 23:08:46.559509+00 f t Correa-Pepepdf-21432-0950e116-27dc-4747-b448-d48d9d0c2d10.pdf uploads/Correa-Pepepdf-21432-0950e116-27dc-4747-b448-d48d9d0c2d10_rGfgVtW.pdf 1089 22 113 +42 2025-07-03 19:58:34.722344+00 2025-07-03 19:58:34.722353+00 f t DT879248_2025-07-03-07-41-31-090.PDF uploads/DT879248_2025-07-03-07-41-31-090_BAoIv3m.PDF 1095 22 1026 +43 2025-07-04 14:09:06.142978+00 2025-07-04 14:09:06.142987+00 f t WhatsApp Image 2025-07-04 at 10.59.34 AM.jpeg uploads/WhatsApp_Image_2025-07-04_at_10.59.34_AM_K10RMiU.jpeg 1100 22 148 +44 2025-07-04 14:09:06.184917+00 2025-07-04 14:09:06.184927+00 f t WhatsApp Image 2025-07-04 at 10.59.14 AM.jpeg uploads/WhatsApp_Image_2025-07-04_at_10.59.14_AM_Sglke42.jpeg 1100 22 148 +45 2025-07-04 14:09:06.263218+00 2025-07-04 14:09:06.263226+00 f t WhatsApp Image 2025-07-04 at 10.59.34 AM.jpeg uploads/WhatsApp_Image_2025-07-04_at_10.59.34_AM_hnNRR3h.jpeg 1100 22 148 +46 2025-07-04 20:14:48.587848+00 2025-07-04 20:14:48.587858+00 f t DT864803_2025-06-21-12-24-03-914.PDF uploads/DT864803_2025-06-21-12-24-03-914_B81brOd.PDF 1103 22 1026 +47 2025-07-04 20:16:16.877573+00 2025-07-04 20:16:16.877587+00 f t DT864818_2025-06-19-06-39-03-758.PDF uploads/DT864818_2025-06-19-06-39-03-758_ZmYimm1.PDF 1104 22 1026 +48 2025-07-04 20:18:18.108411+00 2025-07-04 20:18:18.10842+00 f t DT868753_2025-06-23-09-55-56-260.PDF uploads/DT868753_2025-06-23-09-55-56-260_vjFZyqM.PDF 1105 22 1026 +49 2025-07-04 20:20:36.523069+00 2025-07-04 20:20:36.523077+00 f t Pedido_789274.pdf uploads/Pedido_789274_0QQpZXf.pdf 1106 22 1026 +50 2025-07-04 20:22:25.786778+00 2025-07-04 20:22:25.786786+00 f t DT795773_2025-05-03-09-25-47-549.PDF uploads/DT795773_2025-05-03-09-25-47-549_x4lrTNf.PDF 1107 22 1026 +51 2025-07-04 20:24:10.233232+00 2025-07-04 20:24:10.233244+00 f t DT802049_2025-04-24-05-52-27-089.PDF uploads/DT802049_2025-04-24-05-52-27-089_B40P0BF.PDF 1108 22 1026 +52 2025-07-04 20:25:34.699741+00 2025-07-04 20:25:34.699754+00 f t DT825929_2025-05-14-11-39-40-947.PDF uploads/DT825929_2025-05-14-11-39-40-947_c5QFHiY.PDF 1109 22 1026 +53 2025-07-04 20:26:56.434798+00 2025-07-04 20:26:56.434809+00 f t Amora (1).pdf uploads/Amora_1_iUvUljb.pdf 1110 22 1026 +54 2025-07-04 20:31:11.485768+00 2025-07-04 20:31:11.485777+00 f t eco ponzinibibio lara amar jun 25.pdf uploads/eco_ponzinibibio_lara__amar_jun_25_bZxbqVp.pdf 1111 22 1026 +55 2025-07-04 20:40:00.113243+00 2025-07-04 20:40:00.113251+00 f t eco amor punky amar jun 25.pdf uploads/eco_amor_punky__amar__jun_25_tobq4hl.pdf 1112 22 1026 +56 2025-07-05 19:12:41.435087+00 2025-07-05 19:12:41.435099+00 f t Pedido_716452.pdf uploads/Pedido_716452_chb1rfc.pdf 1118 22 114 +57 2025-07-11 19:03:04.778759+00 2025-07-11 19:03:04.778768+00 f t V1342117 (1).pdf uploads/V1342117_1_1YriseY.pdf 1574 21 1026 +58 2025-07-11 19:17:12.841938+00 2025-07-11 19:17:12.841946+00 f t Pedido_880409.pdf uploads/Pedido_880409_yeNxrNk.pdf 1173 22 113 +59 2025-07-11 19:17:54.643185+00 2025-07-11 19:17:54.643196+00 f t Pedido_880392.pdf uploads/Pedido_880392_ljEcYXW.pdf 1174 22 113 +60 2025-07-11 19:21:27.530436+00 2025-07-11 19:21:27.530446+00 f t Pedido_879248.pdf uploads/Pedido_879248_Pg6HLKL.pdf 1633 21 113 +61 2025-07-11 19:25:47.529018+00 2025-07-11 19:25:47.529027+00 f t V1339996.pdf uploads/V1339996_A9mL0P6.pdf 1584 21 113 +62 2025-07-11 19:26:38.459025+00 2025-07-11 19:26:38.459033+00 f t V1339997.pdf uploads/V1339997_tGjjfjR.pdf 1583 21 113 +63 2025-07-11 19:34:01.903057+00 2025-07-11 19:34:01.903069+00 f t V1342117.pdf uploads/V1342117_YG1084N.pdf 1175 22 113 +64 2025-07-11 19:35:36.144143+00 2025-07-11 19:35:36.144151+00 f t BASSO. ELOY (1).docx uploads/BASSO._ELOY_1_JKkKYjw.docx 1176 22 1026 +65 2025-07-11 19:36:52.340969+00 2025-07-11 19:36:52.340978+00 f t eco ferrari lila amar jul 25.pdf uploads/eco_ferrari_lila_amar_jul_25_BajBI6w.pdf 1177 22 1026 +66 2025-07-11 19:37:38.818181+00 2025-07-11 19:37:38.818192+00 f t eco paolillo mayco honorio amar jul 25.pdf uploads/eco_paolillo_mayco_honorio_amar__jul_25_5IgY9Yj.pdf 1178 22 1026 +67 2025-07-11 19:38:05.759401+00 2025-07-11 19:38:05.759417+00 f t eco cuevas rocco farmacota amar jul 25.pdf uploads/eco_cuevas_rocco_farmacota_amar__jul_25_M6uniIo.pdf 1179 22 1026 +68 2025-07-11 19:38:52.38397+00 2025-07-11 19:38:52.383979+00 f t eco barboza paky CVQ amar jul 25.pdf uploads/eco_barboza_paky_CVQ_amar_jul_25_nIGojk7.pdf 1180 22 1026 +69 2025-07-11 19:41:00.751298+00 2025-07-11 19:41:00.751306+00 f t ECO bruchmann elena tellechea AMAR jul 25.pdf uploads/ECO_bruchmann_elena_tellechea_AMAR__jul_25_ee36JXo.pdf 1181 22 1026 +70 2025-07-11 19:41:49.445703+00 2025-07-11 19:41:49.445712+00 f t eco herrera anouk amar jul 25.pdf uploads/eco_herrera_anouk_amar_jul_25_7jZrQ49.pdf 1182 22 1026 +71 2025-07-11 19:42:25.014425+00 2025-07-11 19:42:25.014434+00 f t eco echazarreta kimba amar jul 25.pdf uploads/eco_echazarreta_kimba_amar_jul_25_QbfO4eq.pdf 1183 22 1026 +72 2025-07-11 19:46:15.071157+00 2025-07-11 19:46:15.071169+00 f t STOFENMARCHER. HARVEY (1).docx uploads/STOFENMARCHER._HARVEY_1_OjBODTy.docx 1184 22 1026 +73 2025-07-11 19:46:15.075156+00 2025-07-11 19:46:15.075164+00 f t STOFENMARCHER. HARVEY (1).docx uploads/STOFENMARCHER._HARVEY_1_i5OqCQx.docx 1184 22 1026 +74 2025-07-14 13:29:43.207907+00 2025-07-14 13:29:43.207917+00 f t eco fiaño simon amar may 25.pdf uploads/eco_fiaño_simon_amar_may_25_3Uv4p7X.pdf 1194 22 1026 +75 2025-07-14 13:37:48.832964+00 2025-07-14 13:37:48.832973+00 f t eco bidart serena amar lisandro may 25.pdf uploads/eco_bidart_serena_amar_lisandro_may_25_zXQCKp8.pdf 1195 22 1026 +76 2025-07-14 13:38:46.708388+00 2025-07-14 13:38:46.708397+00 f t eco muscilli pardito amar may 25.pdf uploads/eco__muscilli_pardito_amar_may_25_YKgFRTe.pdf 1196 22 1026 +77 2025-07-14 13:39:46.35502+00 2025-07-14 13:39:46.355029+00 f t eco luconi chano amar may 25.pdf uploads/eco_luconi_chano_amar_may_25_myIawxA.pdf 1197 22 1026 +78 2025-07-14 13:42:30.794748+00 2025-07-14 13:42:30.794757+00 f t eco Lorenzo sila erlich may 25.pdf uploads/eco_Lorenzo_sila_erlich_may_25_ZKzMve5.pdf 1198 22 1026 +79 2025-07-14 13:45:15.301+00 2025-07-14 13:45:15.301008+00 f t eco toledo akiles amar jun 24.pdf uploads/eco_toledo_akiles_amar_jun_24_82WF1KT.pdf 1199 22 1026 +80 2025-07-14 13:49:36.889523+00 2025-07-14 13:49:36.889531+00 f t eco milroy onix amar may 25.pdf uploads/eco_milroy_onix_amar_may_25_a559V0k.pdf 1200 22 1026 +81 2025-07-14 13:50:39.304809+00 2025-07-14 13:50:39.304821+00 f t eco famular frida amar abr 25.pdf uploads/eco__famular_frida_amar_abr_25_fBQzkQz.pdf 1201 22 1026 +82 2025-07-14 19:45:23.510003+00 2025-07-14 19:45:23.510016+00 f t eco sandoval negro amar may 25.pdf uploads/eco_sandoval_negro_amar_may_25_XhwY4PA.pdf 1203 22 113 +83 2025-07-14 20:22:57.550102+00 2025-07-14 20:22:57.550111+00 f t eco caino gato Bastet amar may 25 (1).pdf uploads/eco_caino_gato_Bastet__amar_may_25_1_KjCenZN.pdf 1204 22 113 +84 2025-07-15 12:43:15.975775+00 2025-07-15 12:43:15.975785+00 f t eco terlesqui manchita amar jul 25.pdf uploads/eco_terlesqui_manchita_amar__jul_25_90HwTZy.pdf 1207 22 1026 +85 2025-07-16 12:40:19.107757+00 2025-07-16 12:40:19.107767+00 f t eco navarro nina GESTACIONAL AMAR jul 25.pdf uploads/eco_navarro_nina_GESTACIONAL_AMAR__jul_25_xPgehpo.pdf 1219 22 1026 +86 2025-07-16 16:16:06.176241+00 2025-07-16 16:16:06.176251+00 f t V1343408.pdf uploads/V1343408_9mzbKjw.pdf 1220 22 1026 +87 2025-07-17 12:36:07.532025+00 2025-07-17 12:36:07.532034+00 f t eco modelli benito amar jul 25.pdf uploads/eco_modelli_benito_amar__jul_25_JrVcXVY.pdf 1222 22 1026 +88 2025-07-17 13:20:38.667017+00 2025-07-17 13:20:38.667026+00 f t eco modelli benito amar jul 25.pdf uploads/eco_modelli_benito_amar__jul_25_hjimL1g.pdf 1741 21 1026 +90 2025-07-17 14:53:14.021445+00 2025-07-17 14:53:14.021454+00 t t INFORME ECOGRAFICO.pdf uploads/INFORME_ECOGRAFICO_IiLPtic.pdf 1223 22 118 +93 2025-07-18 13:17:40.018311+00 2025-07-18 13:17:40.018322+00 f t V1341985.pdf uploads/V1341985_pgA7cUu.pdf 1769 21 1026 +89 2025-07-17 14:50:40.862472+00 2025-07-17 14:50:40.862485+00 t t INFORME ECOGRAFICO.pdf uploads/INFORME_ECOGRAFICO_mgcseDH.pdf 1223 22 118 +91 2025-07-17 14:55:41.814267+00 2025-07-17 14:55:41.814276+00 f t INFORME ECOGRAFICO.pdf uploads/INFORME_ECOGRAFICO_i3bpFzO.pdf 1223 22 118 +92 2025-07-18 13:16:51.722449+00 2025-07-18 13:16:51.722459+00 f t V1341985.pdf uploads/V1341985_hpjL5IX.pdf 1233 22 1026 +94 2025-07-18 13:18:44.619757+00 2025-07-18 13:18:44.619767+00 f t V1341985 (1).pdf uploads/V1341985_1_PLRj8Pa.pdf 1234 22 1026 +95 2025-07-18 13:19:10.602234+00 2025-07-18 13:19:10.602243+00 f t V1341985 (1).pdf uploads/V1341985_1_nc6aXQr.pdf 1796 21 1026 +96 2025-07-19 13:34:43.537417+00 2025-07-19 13:34:43.53743+00 f t V1343471.pdf uploads/V1343471_ArQmLwg.pdf 1239 22 1208 +97 2025-07-19 13:43:18.907738+00 2025-07-19 13:43:18.907747+00 f t V1343470.pdf uploads/V1343470_XFcplsA.pdf 1240 22 1208 +98 2025-07-19 13:43:18.999234+00 2025-07-19 13:43:18.999243+00 f t V1343469.pdf uploads/V1343469_eefBYnT.pdf 1240 22 1208 +99 2025-07-19 13:45:46.966373+00 2025-07-19 13:45:46.966383+00 f t V1343470.pdf uploads/V1343470_mRbkTac.pdf 1769 21 1208 +100 2025-07-19 13:46:07.333933+00 2025-07-19 13:46:07.333946+00 t t V1343470.pdf uploads/V1343470_Qib40Zs.pdf 1769 21 1208 +101 2025-07-19 13:47:33.730117+00 2025-07-19 13:47:33.730126+00 f t V1343492.pdf uploads/V1343492_QC2blek.pdf 1241 22 1208 +102 2025-07-19 13:48:06.575848+00 2025-07-19 13:48:06.57586+00 f t V1343492.pdf uploads/V1343492_TZ62Eyp.pdf 1804 21 1208 +103 2025-07-22 14:23:26.217198+00 2025-07-22 14:23:26.217207+00 f t eco baez colito amar jul 25.pdf uploads/eco_baez_colito_amar_jul_25_PFgK7Im.pdf 1251 22 1026 +104 2025-07-22 14:24:19.898255+00 2025-07-22 14:24:19.898265+00 f t eco baez colito amar jul 25.pdf uploads/eco_baez_colito_amar_jul_25_A9PojuS.pdf 1837 21 1026 +105 2025-07-22 14:25:14.623836+00 2025-07-22 14:25:14.623844+00 f t eco carrizo beto amar leocan jul 25.pdf uploads/eco_carrizo_beto_amar_leocan_jul_25_9t2cg6P.pdf 1252 22 1026 +106 2025-07-22 14:25:39.337195+00 2025-07-22 14:25:39.337204+00 f t eco carrizo beto amar leocan jul 25.pdf uploads/eco_carrizo_beto_amar_leocan_jul_25_YvVYzyE.pdf 1836 21 1026 +107 2025-07-22 18:04:13.153335+00 2025-07-22 18:04:13.153345+00 f t eco villa felipe cilap f amar jul 25.pdf uploads/eco_villa_felipe_cilap_f_amar__jul_25_YbMJsFg.pdf 1254 22 1026 +108 2025-07-22 18:04:13.401761+00 2025-07-22 18:04:13.401768+00 f t eco villa felipe cilap f amar jul 25.pdf uploads/eco_villa_felipe_cilap_f_amar__jul_25_35v8Z7K.pdf 1254 22 1026 +109 2025-07-22 18:04:26.516495+00 2025-07-22 18:04:26.516507+00 f t eco villa felipe cilap f amar jul 25.pdf uploads/eco_villa_felipe_cilap_f_amar__jul_25_bEYj4Lj.pdf 1809 21 1026 +110 2025-07-23 12:30:52.575453+00 2025-07-23 12:30:52.575467+00 f t V1344443.pdf uploads/V1344443_2BC3HjE.pdf 1256 22 1026 +111 2025-07-23 12:31:09.594097+00 2025-07-23 12:31:09.594106+00 f t V1344443.pdf uploads/V1344443_yboKrC3.pdf 1770 21 1026 +112 2025-07-23 14:07:03.452612+00 2025-07-23 14:07:03.452625+00 f t eco rodrigo almendra amar jul 25.pdf uploads/eco_rodrigo_almendra_amar_jul_25_xXIH3OF.pdf 1257 22 1026 +113 2025-07-23 14:07:21.334204+00 2025-07-23 14:07:21.334213+00 f t eco rodrigo almendra amar jul 25.pdf uploads/eco_rodrigo_almendra_amar_jul_25_6K3qPtv.pdf 1812 21 1026 +114 2025-07-24 14:21:36.136892+00 2025-07-24 14:21:36.1369+00 f t V1344489.pdf uploads/V1344489_ehXfr5n.pdf 1268 22 1026 +115 2025-07-24 14:21:50.656124+00 2025-07-24 14:21:50.656135+00 f t V1344489.pdf uploads/V1344489_6UPvzrt.pdf 1847 21 1026 +116 2025-07-24 14:43:58.3693+00 2025-07-24 14:43:58.369312+00 f t V1344490.pdf uploads/V1344490_XDYWA2T.pdf 1269 22 1026 +117 2025-07-24 14:44:18.875851+00 2025-07-24 14:44:18.875863+00 f t V1344490.pdf uploads/V1344490_OgaOt8N.pdf 1827 21 1026 +118 2025-07-25 00:05:04.697502+00 2025-07-25 00:05:04.697516+00 f t V1344498.pdf uploads/V1344498_aBIQyAO.pdf 1270 22 1208 +119 2025-07-25 00:05:28.980216+00 2025-07-25 00:05:28.980229+00 f t V1344498.pdf uploads/V1344498_zROoeyO.pdf 1855 21 1208 +120 2025-07-25 13:26:00.647374+00 2025-07-25 13:26:00.647382+00 f t eco amrstrong beaux amar jul 25.pdf uploads/eco_amrstrong_beaux_amar_jul_25_RrYVgQO.pdf 1272 22 1026 +121 2025-07-25 13:26:21.690907+00 2025-07-25 13:26:21.690916+00 f t eco amrstrong beaux amar jul 25.pdf uploads/eco_amrstrong_beaux_amar_jul_25_2MPw5ni.pdf 1861 21 1026 +122 2025-07-25 13:26:44.145527+00 2025-07-25 13:26:44.145537+00 f t eco luna amanda amar jul 25.pdf uploads/eco_luna_amanda_amar_jul_25_zNGklsI.pdf 1273 22 1026 +123 2025-07-25 13:26:58.187522+00 2025-07-25 13:26:58.187534+00 f t eco luna amanda amar jul 25.pdf uploads/eco_luna_amanda_amar_jul_25_J3G7dtI.pdf 1857 21 1026 +124 2025-07-25 13:27:14.718841+00 2025-07-25 13:27:14.718849+00 f t eco bengolea nilo amar jul 25.pdf uploads/eco_bengolea_nilo_amar_jul_25_lbdnwvK.pdf 1274 22 1026 +125 2025-07-25 13:27:32.609473+00 2025-07-25 13:27:32.609481+00 f t eco luna amanda amar jul 25.pdf uploads/eco_luna_amanda_amar_jul_25_J7Spgum.pdf 1872 21 1026 +126 2025-07-26 15:04:41.737035+00 2025-07-26 15:04:41.737045+00 f t V1344498 (1).pdf uploads/V1344498_1_6J6ieWK.pdf 1270 22 1208 +127 2025-07-28 14:23:24.814032+00 2025-07-28 14:23:24.81404+00 f t V1345414.pdf uploads/V1345414_POsRekx.pdf 1300 22 1026 +128 2025-07-28 14:23:40.841568+00 2025-07-28 14:23:40.841576+00 f t V1345414.pdf uploads/V1345414_Ku0BvUu.pdf 1874 21 1026 +129 2025-07-28 22:09:33.247522+00 2025-07-28 22:09:33.247532+00 f t V1344498 (1).pdf uploads/V1344498_1_a987u7P.pdf 1301 22 113 +130 2025-07-30 14:02:04.338945+00 2025-07-30 14:02:04.338962+00 f t V1345719.pdf uploads/V1345719_4zgiVWx.pdf 1332 22 1026 +131 2025-07-30 18:46:15.909131+00 2025-07-30 18:46:15.909144+00 f t eco rivas sam amar jul 25.pdf uploads/eco_rivas_sam_amar__jul_25_au3H4em.pdf 1336 22 1026 +132 2025-07-30 18:46:40.005795+00 2025-07-30 18:46:40.005807+00 f t eco rivas sam amar jul 25.pdf uploads/eco_rivas_sam_amar__jul_25_8HqlDAb.pdf 1820 21 1026 +133 2025-07-30 18:47:12.378698+00 2025-07-30 18:47:12.37871+00 f t eco nottoli amy amar jul 25.pdf uploads/eco_nottoli_amy_amar_jul_25_rxB1LSC.pdf 1337 22 1026 +134 2025-07-30 18:47:23.022143+00 2025-07-30 18:47:23.022151+00 f t eco nottoli amy amar jul 25.pdf uploads/eco_nottoli_amy_amar_jul_25_aaLroDF.pdf 1915 21 1026 +135 2025-07-30 18:48:19.15481+00 2025-07-30 18:48:19.154818+00 f t eco milone mimu santone amar jul 25.pdf uploads/eco_milone_mimu_santone_amar_jul_25_y6FZUiM.pdf 1338 22 1026 +136 2025-07-30 18:48:31.320861+00 2025-07-30 18:48:31.320875+00 f t eco milone mimu santone amar jul 25.pdf uploads/eco_milone_mimu_santone_amar_jul_25_7cSuQGC.pdf 1858 21 1026 +137 2025-07-30 19:02:47.578458+00 2025-07-30 19:02:47.578471+00 f t V1345414 (1).pdf uploads/V1345414_1_n3YWFf1.pdf 1874 21 1026 +138 2025-07-30 19:03:44.554708+00 2025-07-30 19:03:44.554719+00 f t V1345717.pdf uploads/V1345717_kRWuclk.pdf 1654 21 1026 +139 2025-07-30 19:05:59.59823+00 2025-07-30 19:05:59.598243+00 f t V1345491.pdf uploads/V1345491_7c5IDcu.pdf 1339 22 1026 +140 2025-07-30 19:06:16.886425+00 2025-07-30 19:06:16.886433+00 f t V1345491.pdf uploads/V1345491_GpFn7Zp.pdf 1863 21 1026 +141 2025-07-30 20:24:10.415678+00 2025-07-30 20:24:10.415691+00 f t V1345487.pdf uploads/V1345487_5SLTHHd.pdf 1341 22 1208 +142 2025-07-31 13:02:35.620605+00 2025-07-31 13:02:35.620617+00 f t eco Henriques pibito amar jul 25.pdf uploads/eco_Henriques_pibito_amar_jul_25_Dnylv7g.pdf 1342 22 1026 +143 2025-07-31 13:02:46.301875+00 2025-07-31 13:02:46.301885+00 f t eco Henriques pibito amar jul 25.pdf uploads/eco_Henriques_pibito_amar_jul_25_l2dfBHN.pdf 1942 21 1026 +144 2025-07-31 19:40:22.965245+00 2025-07-31 19:40:22.965309+00 f t V1345718.pdf uploads/V1345718_5FBAyu7.pdf 1343 22 1208 +145 2025-07-31 19:40:53.676041+00 2025-07-31 19:40:53.676051+00 f t V1345758.pdf uploads/V1345758_iyGClbH.pdf 1344 22 1208 +146 2025-07-31 19:41:51.709272+00 2025-07-31 19:41:51.709297+00 f t V1345757.pdf uploads/V1345757_BQTMKBa.pdf 1345 22 1208 +147 2025-07-31 19:51:42.931085+00 2025-07-31 19:51:42.931094+00 f t eco gianmarco logan amar jul 25 (1).pdf uploads/eco_gianmarco_logan_amar__jul_25_1_Fg4MP6T.pdf 1346 22 1026 +148 2025-07-31 19:51:58.791858+00 2025-07-31 19:51:58.791873+00 f t eco gianmarco logan amar jul 25 (1).pdf uploads/eco_gianmarco_logan_amar__jul_25_1_xRwBpWW.pdf 1859 21 1026 +149 2025-07-31 19:55:38.436547+00 2025-07-31 19:55:38.436555+00 f t eco dato moka amar jul 25.pdf uploads/eco_dato_moka_amar_jul_25_IvKUOuI.pdf 1347 22 1026 +150 2025-07-31 19:55:56.436597+00 2025-07-31 19:55:56.43661+00 f t eco dato moka amar jul 25.pdf uploads/eco_dato_moka_amar_jul_25_8i9dDp1.pdf 1933 21 1026 +151 2025-07-31 19:56:54.584787+00 2025-07-31 19:56:54.584795+00 f t eco frangoudis dana amar jul 25.pdf uploads/eco_frangoudis_dana_amar_jul_25_aeDzKx0.pdf 1348 22 1026 +152 2025-07-31 19:57:08.449414+00 2025-07-31 19:57:08.44943+00 f t eco frangoudis dana amar jul 25.pdf uploads/eco_frangoudis_dana_amar_jul_25_nnECgu1.pdf 1940 21 1026 +153 2025-07-31 19:58:48.324474+00 2025-07-31 19:58:48.324482+00 f t eco travieso koi centro pet Amar jul 25 (1).pdf uploads/eco_travieso_koi_centro_pet_Amar_jul__25_1_7mtllyR.pdf 1349 22 1026 +154 2025-07-31 19:59:03.340688+00 2025-07-31 19:59:03.340698+00 f t eco travieso koi centro pet Amar jul 25 (1).pdf uploads/eco_travieso_koi_centro_pet_Amar_jul__25_1_goUIYYw.pdf 1830 21 1026 +155 2025-07-31 20:00:19.761504+00 2025-07-31 20:00:19.761513+00 f t eco villa felipe cilap f amar jul 25 (1).pdf uploads/eco_villa_felipe_cilap_f_amar__jul_25_1_9reAatW.pdf 1350 22 1026 +156 2025-07-31 20:00:30.925485+00 2025-07-31 20:00:30.925498+00 f t eco villa felipe cilap f amar jul 25 (1).pdf uploads/eco_villa_felipe_cilap_f_amar__jul_25_1_uCzyF4Q.pdf 1818 21 1026 +157 2025-07-31 20:01:11.154378+00 2025-07-31 20:01:11.154388+00 f t eco Rincon coco amar jul 25.pdf uploads/eco_Rincon_coco_amar__jul_25_peyx9zS.pdf 1351 22 1026 +158 2025-07-31 20:01:21.789847+00 2025-07-31 20:01:21.789861+00 f t eco Rincon coco amar jul 25.pdf uploads/eco_Rincon_coco_amar__jul_25_ptNhuWo.pdf 1806 21 1026 +159 2025-07-31 20:17:29.526435+00 2025-07-31 20:17:29.526449+00 f t eco Rincon coco amar jul 25.pdf uploads/eco_Rincon_coco_amar__jul_25_LzqKHOr.pdf 1806 21 1026 +160 2025-07-31 20:18:33.978889+00 2025-07-31 20:18:33.978901+00 f t eco vergara ventarron amar jul 25.pdf uploads/eco_vergara_ventarron_amar_jul_25_sd4wRTH.pdf 1352 22 1026 +161 2025-07-31 20:19:03.564773+00 2025-07-31 20:19:03.564787+00 f t eco vergara ventarron amar jul 25.pdf uploads/eco_vergara_ventarron_amar_jul_25_VLcsDUV.pdf 1785 21 1026 +162 2025-07-31 20:19:42.556022+00 2025-07-31 20:19:42.556031+00 f t ECO zylber melba amar jul 25.pdf uploads/ECO_zylber_melba_amar__jul_25_4ptjyGo.pdf 1353 22 1026 +163 2025-08-01 13:10:02.751348+00 2025-08-01 13:10:02.751363+00 f t V1345785.pdf uploads/V1345785_sfGU1GX.pdf 1376 22 1026 +164 2025-08-01 13:10:14.192643+00 2025-08-01 13:10:14.192653+00 f t V1345785.pdf uploads/V1345785_Ev2gfPi.pdf 1935 21 1026 +165 2025-08-01 13:19:34.432911+00 2025-08-01 13:19:34.432923+00 f t V1345786 (1).pdf uploads/V1345786_1_iH7b6XP.pdf 1377 22 1026 +166 2025-08-01 13:19:52.046707+00 2025-08-01 13:19:52.046716+00 f t V1345786 (1).pdf uploads/V1345786_1_tZPbuhx.pdf 1932 21 1026 +167 2025-08-01 13:46:50.712361+00 2025-08-01 13:46:50.71237+00 f t eco rusticano ivan amar mascotas jul 25.pdf uploads/eco_rusticano_ivan_amar_mascotas_jul_25_xkFTxsV.pdf 1382 22 1026 +168 2025-08-01 13:47:04.77369+00 2025-08-01 13:47:04.773703+00 f t eco rusticano ivan amar mascotas jul 25.pdf uploads/eco_rusticano_ivan_amar_mascotas_jul_25_itqwOA3.pdf 1920 21 1026 +169 2025-08-02 13:02:37.710267+00 2025-08-02 13:02:37.710293+00 f t eco ibaceTa arya amar ago 25.pdf uploads/eco_ibaceTa_arya_amar__ago_25_A89BQrN.pdf 1390 22 1208 +170 2025-08-02 13:08:13.88734+00 2025-08-02 13:08:13.887441+00 f t eco comerci bemjamin amar ago 25.pdf uploads/eco_comerci_bemjamin_amar_ago_25_5QhLeYK.pdf 1391 22 1208 +171 2025-08-02 13:19:45.919344+00 2025-08-02 13:19:45.919356+00 f t eco maidana lola amar ago 25.pdf uploads/eco_maidana_lola_amar_ago_25_JFumnq0.pdf 1392 22 1208 +172 2025-08-03 12:19:33.632317+00 2025-08-03 12:19:33.632331+00 f t eco crocco brisa amar ago 2025.pdf uploads/eco_crocco_brisa_amar_ago_2025_eqjlDiA.pdf 1400 22 1208 +173 2025-08-05 13:00:22.584829+00 2025-08-05 13:00:22.584845+00 f t V1345746.pdf uploads/V1345746_gxZlhHF.pdf 1418 22 1026 +174 2025-08-05 13:00:37.16397+00 2025-08-05 13:00:37.163985+00 f t V1345746.pdf uploads/V1345746_NSHZR19.pdf 1937 21 1026 +175 2025-08-05 13:01:56.351031+00 2025-08-05 13:01:56.351044+00 f t V1346917.pdf uploads/V1346917_SCSpaq7.pdf 1419 22 1026 +176 2025-08-05 13:02:06.597401+00 2025-08-05 13:02:06.597415+00 f t V1346917.pdf uploads/V1346917_1w2Fpcz.pdf 1957 21 1026 +177 2025-08-08 15:36:53.073416+00 2025-08-08 15:36:53.073424+00 f t Captura desde 2025-08-07 14-50-53.png uploads/Captura_desde_2025-08-07_14-50-53_s0cQNWx.png 1434 22 121 AAA +178 2025-08-08 20:18:20.578777+00 2025-08-08 20:18:20.578791+00 f t V1346687.pdf uploads/V1346687_rBTKACw.pdf 1435 22 113 +179 2025-08-08 20:34:24.359262+00 2025-08-08 20:34:24.359276+00 f t V1345415.pdf uploads/V1345415_k9l0mTJ.pdf 1436 22 113 +180 2025-08-08 20:44:43.596628+00 2025-08-08 20:44:43.596638+00 f t DT847826_2025-06-23-04-17-29-081PDF-21432-6b582194-536b-4cf1-9a88-068b0c5b0883.pdf uploads/DT847826_2025-06-23-04-17-29-081PDF-21432-6b582194-536b-4cf1-9a88-068b0c5b0883_GWupHjM.pdf 1437 22 113 +181 2025-08-08 20:44:43.784594+00 2025-08-08 20:44:43.784604+00 f t DT847828_2025-06-23-04-18-10-599PDF-21432-e53f4207-0a49-444f-ae78-6269217f5c02.pdf uploads/DT847828_2025-06-23-04-18-10-599PDF-21432-e53f4207-0a49-444f-ae78-6269217f5c02_aEYmdI0.pdf 1437 22 113 +182 2025-08-08 20:46:17.181533+00 2025-08-08 20:46:17.181543+00 f t Pedido_849229.pdf uploads/Pedido_849229_MGCAMrm.pdf 1438 22 113 +183 2025-08-08 20:47:52.201111+00 2025-08-08 20:47:52.201121+00 f t DT847826_2025-06-23-04-17-29-081PDF-21432-6b582194-536b-4cf1-9a88-068b0c5b0883.pdf uploads/DT847826_2025-06-23-04-17-29-081PDF-21432-6b582194-536b-4cf1-9a88-068b0c5b0883_Qdd1SIL.pdf 1439 22 113 +184 2025-08-08 20:47:52.622105+00 2025-08-08 20:47:52.622113+00 f t DT847828_2025-06-23-04-18-10-599PDF-21432-e53f4207-0a49-444f-ae78-6269217f5c02.pdf uploads/DT847828_2025-06-23-04-18-10-599PDF-21432-e53f4207-0a49-444f-ae78-6269217f5c02_Q8dV1HZ.pdf 1439 22 113 +185 2025-08-12 14:32:59.139218+00 2025-08-12 14:32:59.139233+00 f t V1347612.pdf uploads/V1347612_tBVwZrU.pdf 1458 22 1208 +186 2025-08-12 14:35:33.167124+00 2025-08-12 14:35:33.167212+00 f t V1348626.pdf uploads/V1348626_0N2bzfk.pdf 1458 22 1208 +187 2025-08-12 14:38:50.526831+00 2025-08-12 14:38:50.526842+00 f t V1348627.pdf uploads/V1348627_ALKZ3Jl.pdf 1459 22 1208 +188 2025-08-12 14:38:50.871773+00 2025-08-12 14:38:50.871783+00 f t V1347611.pdf uploads/V1347611_ljXHhRM.pdf 1459 22 1208 +189 2025-08-12 14:45:26.032691+00 2025-08-12 14:45:26.032706+00 f t V1348623.pdf uploads/V1348623_1o34hPa.pdf 1460 22 1208 +190 2025-08-13 19:22:57.580111+00 2025-08-13 19:22:57.580127+00 f t eco gonzalez atun amar ago 25.pdf uploads/eco_gonzalez_atun_amar_ago_25_owAywTP.pdf 1466 22 1208 +191 2025-08-13 19:24:53.452516+00 2025-08-13 19:24:53.452527+00 f t V1348649.pdf uploads/V1348649_MdprR8K.pdf 1467 22 1208 +192 2025-08-13 19:29:40.973533+00 2025-08-13 19:29:40.973547+00 f t eco da rocha shiro amar ago 25.pdf uploads/eco_da_rocha_shiro_amar_ago_25_7Ccl10a.pdf 1468 22 1208 +193 2025-08-13 19:30:32.313354+00 2025-08-13 19:30:32.313364+00 f t eco da rocha gerart amar ago 25.pdf uploads/eco_da_rocha_gerart_amar_ago_25_aTfjOF1.pdf 1469 22 1208 +194 2025-08-16 16:25:45.483263+00 2025-08-16 16:25:45.483277+00 f t eco Marvaldi archie amar ago 25.pdf uploads/eco_Marvaldi_archie_amar_ago_25_Y5inMic.pdf 1477 22 1208 +195 2025-08-16 17:38:00.915092+00 2025-08-16 17:38:00.915102+00 f t eco molinari orion amar ago 25.pdf uploads/eco_molinari_orion_amar_ago_25_BJuTYlo.pdf 1478 22 1208 +196 2025-08-19 16:43:41.593396+00 2025-08-19 16:43:41.593405+00 f t V1345157.pdf uploads/V1345157_5BsrfuM.pdf 1503 22 1208 +197 2025-08-19 19:02:10.03922+00 2025-08-19 19:02:10.039233+00 f t eco diaz shaby amar ago 25.pdf uploads/eco_diaz_shaby_amar_ago_25_Xgi5FN1.pdf 1504 22 1208 +198 2025-08-19 19:02:13.945945+00 2025-08-19 19:02:13.945959+00 f t eco diaz shaby amar ago 25.pdf uploads/eco_diaz_shaby_amar_ago_25_z7N3SCO.pdf 1504 22 1208 +199 2025-08-19 19:05:44.497693+00 2025-08-19 19:05:44.497701+00 f t eco miranda titan amar ago 25.pdf uploads/eco_miranda_titan_amar_ago_25_0AJkPPH.pdf 1505 22 1208 +200 2025-08-19 19:08:58.789153+00 2025-08-19 19:08:58.789162+00 f t V1345116.pdf uploads/V1345116_aSQzA81.pdf 1506 22 1208 +201 2025-08-19 19:08:59.145635+00 2025-08-19 19:08:59.145644+00 f t V1345115.pdf uploads/V1345115_hDEZQG4.pdf 1506 22 1208 +202 2025-08-21 16:37:24.587289+00 2025-08-21 16:37:24.587303+00 f t eco dimare franchu amar ago 25.pdf uploads/eco_dimare_franchu_amar_ago_25_8om2gXU.pdf 1524 22 1208 +203 2025-08-21 16:38:40.895421+00 2025-08-21 16:38:40.895429+00 f t eco dimare franchu amar ago 25.pdf uploads/eco_dimare_franchu_amar_ago_25_Y8rjnH8.pdf 1525 22 1208 +204 2025-08-21 18:12:24.19879+00 2025-08-21 18:12:24.198798+00 f t v1349703.pdf uploads/v1349703_WBKsmey.pdf 1526 22 1208 +205 2025-08-26 15:11:37.722786+00 2025-08-26 15:11:37.722799+00 f t eco barbera nala amar ago 25.pdf uploads/eco_barbera_nala_amar_ago_25_mOV7hYK.pdf 1542 22 1208 +521 2025-10-23 14:07:51.132048+00 2025-10-23 14:07:51.132057+00 f t V1359935.pdf uploads/V1359935.pdf 2149 22 1583 +523 2025-10-23 19:42:03.917264+00 2025-10-23 19:42:03.917278+00 f t V1360009.pdf uploads/V1360009_YGzYAvh.pdf 2909 21 1583 +206 2025-08-26 15:13:00.428673+00 2025-08-26 15:13:00.428687+00 f t eco darriba pochoclo amar ago 25.pdf uploads/eco_darriba_pochoclo_amar_ago_25_wNIcZXP.pdf 1543 22 1208 +208 2025-08-26 15:14:03.286194+00 2025-08-26 15:14:03.286208+00 f t eco pereira toyo amar ago 25.pdf uploads/eco_pereira_toyo_amar_ago_25_0c3Z6hI.pdf 1544 22 1208 +207 2025-08-26 15:14:02.756329+00 2025-08-26 15:14:02.756342+00 t t eco pereira toyo amar ago 25.pdf uploads/eco_pereira_toyo_amar_ago_25_wa4erIm.pdf 1544 22 1208 +209 2025-08-26 15:15:19.716165+00 2025-08-26 15:15:19.716178+00 f t eco crino camerun amar ago 25.pdf uploads/eco_crino_camerun_amar_ago_25_JqFh7lN.pdf 1545 22 1208 +210 2025-08-26 15:36:25.336607+00 2025-08-26 15:36:25.33662+00 f t V1349792.pdf uploads/V1349792_1CSMRMk.pdf 1546 22 1208 +211 2025-08-26 16:10:39.707401+00 2025-08-26 16:10:39.707414+00 f t V1349725.pdf uploads/V1349725_FnhPeiq.pdf 1547 22 1208 +212 2025-08-26 16:47:58.859285+00 2025-08-26 16:47:58.859296+00 f t V1349741.pdf uploads/V1349741_xNN9jYa.pdf 1548 22 1208 +213 2025-08-27 13:26:13.845379+00 2025-08-27 13:26:13.845392+00 f t eco Montari osvaldo amar ago 25.pdf uploads/eco_Montari_osvaldo_amar_ago_25_L7mthJ2.pdf 1557 22 1208 +214 2025-08-27 13:28:09.203934+00 2025-08-27 13:28:09.203943+00 f t eco gomez mojito amar ago 25.pdf uploads/eco_gomez_mojito_amar_ago_25_hOBlCdI.pdf 1558 22 1208 +215 2025-08-28 21:56:35.853983+00 2025-08-28 21:56:35.853993+00 f t centello_2.jpg uploads/centello_2_D3HwKnZ.jpg 1568 22 148 +216 2025-08-28 21:56:36.167787+00 2025-08-28 21:56:36.167798+00 f t 1000001613.png uploads/1000001613_RF7K9dr.png 1568 22 148 +217 2025-08-28 21:56:36.375871+00 2025-08-28 21:56:36.375884+00 f t analisis.pdf uploads/analisis_59S9Hvz.pdf 1568 22 148 +218 2025-09-04 18:28:13.112699+00 2025-09-04 18:28:13.112707+00 f t V1350695.pdf uploads/V1350695_GLx2vai.pdf 1650 22 1208 +219 2025-09-04 18:31:56.127285+00 2025-09-04 18:31:56.127293+00 f t V1350658.pdf uploads/V1350658_EacnxrA.pdf 1651 22 1208 +220 2025-09-04 18:49:52.008182+00 2025-09-04 18:49:52.008191+00 f t eco viachelav misty amar sep 25.pdf uploads/eco_viachelav_misty_amar_sep_25_TfYzzgq.pdf 1652 22 1208 +221 2025-09-05 20:08:58.094577+00 2025-09-05 20:08:58.094588+00 f t V1351163.pdf uploads/V1351163_9x5AVic.pdf 1653 22 1208 +222 2025-09-09 16:22:12.191001+00 2025-09-09 16:22:12.191011+00 f t eco careri rumba amar ago 25.pdf uploads/eco_careri_rumba_amar_ago_25_Qd659r1.pdf 1674 22 1208 +223 2025-09-09 16:25:15.757383+00 2025-09-09 16:25:15.757392+00 f t eco pillet alfonsina amar ago 25.pdf uploads/eco_pillet_alfonsina_amar_ago_25_9O1Cy0b.pdf 1675 22 1208 +224 2025-09-09 16:26:33.841931+00 2025-09-09 16:26:33.84194+00 f t eco pillet aramis amar ago 25.pdf uploads/eco_pillet_aramis_amar_ago_25_ZwMh8v8.pdf 1676 22 1208 +225 2025-09-09 16:27:35.256014+00 2025-09-09 16:27:35.256023+00 f t eco altman mus amar ago 25.pdf uploads/eco_altman_mus_amar_ago_25_ubtJgyz.pdf 1677 22 1208 +226 2025-09-09 16:28:51.784619+00 2025-09-09 16:28:51.78463+00 f t eco droz olivia amar ago 25.pdf uploads/eco_droz_olivia_amar_ago_25_alzYKAI.pdf 1678 22 1208 +227 2025-09-09 16:29:44.172926+00 2025-09-09 16:29:44.17294+00 f t eco lopez brownie amar ago 25.pdf uploads/eco_lopez_brownie_amar_ago_25_iddRR4x.pdf 1679 22 1208 +228 2025-09-09 17:02:33.218332+00 2025-09-09 17:02:33.218345+00 f t V1350044.pdf uploads/V1350044_PheRvOs.pdf 1680 22 1583 +229 2025-09-09 17:02:33.44404+00 2025-09-09 17:02:33.444049+00 f t V1352324.pdf uploads/V1352324_moNNELR.pdf 1680 22 1583 +230 2025-09-09 17:04:02.574607+00 2025-09-09 17:04:02.574616+00 f t V1350624.pdf uploads/V1350624_I2wBykx.pdf 1681 22 1583 +231 2025-09-10 13:36:33.613954+00 2025-09-10 13:36:33.613963+00 f t V1352359.pdf uploads/V1352359_rK7KZ6f.pdf 1689 22 1208 +232 2025-09-10 13:42:41.454002+00 2025-09-10 13:42:41.454009+00 f t V1351046.pdf uploads/V1351046_KtkEw9s.pdf 1690 22 1208 +233 2025-09-11 12:26:05.078528+00 2025-09-11 12:26:05.078538+00 f t V1352696.pdf uploads/V1352696_vUzqbfX.pdf 1713 22 1583 +247 2025-09-16 18:26:10.389127+00 2025-09-16 18:26:10.389135+00 t t 704.pdf uploads/704_B8rMTxz.pdf 1738 22 1208 +234 2025-09-11 17:27:11.854979+00 2025-09-11 17:27:11.854992+00 t t V1352697.pdf uploads/V1352697_YMZSpfC.pdf 1436 22 114 +235 2025-09-11 19:34:55.354396+00 2025-09-11 19:34:55.354405+00 f t V1352697Milo.pdf uploads/V1352697Milo_dteVG83.pdf 1716 22 1583 +236 2025-09-11 19:34:55.542236+00 2025-09-11 19:34:55.542244+00 f t V1352698Ali.pdf uploads/V1352698Ali_Xx5D58t.pdf 1716 22 1583 +237 2025-09-12 16:14:58.624671+00 2025-09-12 16:14:58.624684+00 f t V1352688.pdf uploads/V1352688_jvIc3ta.pdf 1718 22 1583 +238 2025-09-12 16:15:00.813376+00 2025-09-12 16:15:00.813393+00 f t V1352687.pdf uploads/V1352687_F9ExfEe.pdf 1718 22 1583 +239 2025-09-12 16:15:01.343592+00 2025-09-12 16:15:01.343602+00 f t V1352688.pdf uploads/V1352688_No6Mzpo.pdf 1718 22 1583 +240 2025-09-12 16:15:01.658173+00 2025-09-12 16:15:01.658185+00 f t V1352687.pdf uploads/V1352687_odkMQvJ.pdf 1718 22 1583 +241 2025-09-14 22:52:58.892054+00 2025-09-14 22:52:58.892064+00 f t Olivia Piriz.docx.pdf uploads/Olivia_Piriz.docx_zz77vC5.pdf 1726 22 1367 +242 2025-09-14 22:56:13.449228+00 2025-09-14 22:56:13.449237+00 f t Amar Mascotas Ecografía Fiona Corigliano .docx (1).pdf uploads/Amar_Mascotas_Ecografía_Fiona_Corigliano_.docx_1_TPp4FdW.pdf 1727 22 1367 +243 2025-09-15 12:11:36.994081+00 2025-09-15 12:11:36.994091+00 f t Olivia Piriz.docx.pdf uploads/Olivia_Piriz.docx_CpwcFli.pdf 2487 21 1583 +248 2025-09-16 18:27:52.035912+00 2025-09-16 18:27:52.03592+00 f t V1349726.pdf uploads/V1349726.pdf 1739 22 1208 +244 2025-09-15 12:11:38.456054+00 2025-09-15 12:11:38.456067+00 t t Olivia Piriz.docx.pdf uploads/Olivia_Piriz.docx_Rj6bRWa.pdf 2487 21 1583 +245 2025-09-15 12:29:34.509485+00 2025-09-15 12:29:34.509495+00 f t V1353198.pdf uploads/V1353198_CdlIJtE.pdf 1728 22 1583 +246 2025-09-16 18:26:10.010549+00 2025-09-16 18:26:10.010558+00 f t 704.pdf uploads/704.pdf 1738 22 1208 +249 2025-09-16 18:59:43.484074+00 2025-09-16 18:59:43.484084+00 f t V1351140.pdf uploads/V1351140.pdf 1740 22 1208 +250 2025-09-16 19:11:34.36368+00 2025-09-16 19:11:34.363688+00 f t V1351055.pdf uploads/V1351055.pdf 1741 22 1208 +251 2025-09-16 19:12:10.528551+00 2025-09-16 19:12:10.52856+00 f t V1351055 (1) (1).pdf uploads/V1351055_1_1.pdf 1742 22 1208 +252 2025-09-16 19:58:15.090171+00 2025-09-16 19:58:15.090179+00 f t V1353154.pdf uploads/V1353154.pdf 1743 22 1583 +254 2025-09-17 16:54:07.750804+00 2025-09-17 16:54:07.750817+00 f t V1353198 (1).pdf uploads/V1353198_1_Wjcocnm.pdf 2437 21 1208 +253 2025-09-17 16:54:03.465703+00 2025-09-17 16:54:03.465717+00 t t V1353198 (1).pdf uploads/V1353198_1.pdf 2437 21 1208 +255 2025-09-17 16:54:28.836224+00 2025-09-17 16:54:28.836233+00 f t V1353198 (1).pdf uploads/V1353198_1_3UUvmM7.pdf 2437 21 1208 +256 2025-09-17 16:55:14.703434+00 2025-09-17 16:55:14.703443+00 f t V1354444.pdf uploads/V1354444.pdf 1750 22 1208 +257 2025-09-18 14:40:57.520566+00 2025-09-18 14:40:57.520576+00 f t V1355008.pdf uploads/V1355008.pdf 1762 22 1583 +258 2025-09-18 17:37:17.261824+00 2025-09-18 17:37:17.261838+00 f t WhatsApp Image 2025-09-18 at 2.48.08 AM (8).jpeg uploads/WhatsApp_Image_2025-09-18_at_2.48.08_AM_8.jpeg 1765 22 1583 +259 2025-09-18 17:37:17.448494+00 2025-09-18 17:37:17.448505+00 f t WhatsApp Image 2025-09-18 at 2.48.08 AM (7).jpeg uploads/WhatsApp_Image_2025-09-18_at_2.48.08_AM_7.jpeg 1765 22 1583 +260 2025-09-18 17:37:17.534877+00 2025-09-18 17:37:17.534887+00 f t WhatsApp Image 2025-09-18 at 2.48.08 AM (1).jpeg uploads/WhatsApp_Image_2025-09-18_at_2.48.08_AM_1.jpeg 1765 22 1583 +261 2025-09-18 17:37:17.590554+00 2025-09-18 17:37:17.590566+00 f t WhatsApp Image 2025-09-18 at 2.48.08 AM (5).jpeg uploads/WhatsApp_Image_2025-09-18_at_2.48.08_AM_5.jpeg 1765 22 1583 +262 2025-09-18 17:37:17.692918+00 2025-09-18 17:37:17.692927+00 f t WhatsApp Image 2025-09-18 at 2.48.08 AM.jpeg uploads/WhatsApp_Image_2025-09-18_at_2.48.08_AM.jpeg 1765 22 1583 +263 2025-09-18 17:37:17.725269+00 2025-09-18 17:37:17.725282+00 f t WhatsApp Image 2025-09-18 at 2.48.08 AM (9).jpeg uploads/WhatsApp_Image_2025-09-18_at_2.48.08_AM_9.jpeg 1765 22 1583 +264 2025-09-18 17:37:17.725618+00 2025-09-18 17:37:17.725626+00 f t WhatsApp Image 2025-09-18 at 2.48.08 AM (4).jpeg uploads/WhatsApp_Image_2025-09-18_at_2.48.08_AM_4.jpeg 1765 22 1583 +265 2025-09-18 17:37:17.750026+00 2025-09-18 17:37:17.750038+00 f t WhatsApp Image 2025-09-18 at 2.48.08 AM (2).jpeg uploads/WhatsApp_Image_2025-09-18_at_2.48.08_AM_2.jpeg 1765 22 1583 +266 2025-09-18 17:37:17.771808+00 2025-09-18 17:37:17.77182+00 f t WhatsApp Image 2025-09-18 at 2.48.08 AM (3).jpeg uploads/WhatsApp_Image_2025-09-18_at_2.48.08_AM_3.jpeg 1765 22 1583 +267 2025-09-18 17:37:17.774528+00 2025-09-18 17:37:17.774539+00 f t WhatsApp Image 2025-09-18 at 2.48.08 AM (6).jpeg uploads/WhatsApp_Image_2025-09-18_at_2.48.08_AM_6.jpeg 1765 22 1583 +268 2025-09-18 17:37:18.081185+00 2025-09-18 17:37:18.081197+00 f t eco belziti coqioto amar sep 25.pdf uploads/eco_belziti_coqioto_amar_sep_25.pdf 1765 22 1583 +269 2025-09-18 17:41:02.229389+00 2025-09-18 17:41:02.229401+00 f t eco alvarez chardonnay amar sep 25.pdf uploads/eco_alvarez_chardonnay_amar_sep_25.pdf 1766 22 1208 +270 2025-09-18 17:42:56.797095+00 2025-09-18 17:42:56.797107+00 f t eco maggi tontina amar sep 25.pdf uploads/eco_maggi_tontina_amar_sep_25.pdf 1767 22 1208 +271 2025-09-18 17:53:52.037442+00 2025-09-18 17:53:52.037454+00 f t eco leiva tropical amar 25.pdf uploads/eco_leiva_tropical_amar_25.pdf 1768 22 1208 +272 2025-09-18 18:01:01.600973+00 2025-09-18 18:01:01.600981+00 f t eco greggi trasvacio natan amar sep 25.pdf uploads/eco_greggi_trasvacio_natan_amar_sep_25.pdf 1769 22 1208 +273 2025-09-18 21:42:48.564493+00 2025-09-18 21:42:48.564504+00 f t V1355036.pdf uploads/V1355036.pdf 1770 22 1583 +274 2025-09-18 21:42:48.639432+00 2025-09-18 21:42:48.639439+00 f t V1355036.pdf uploads/V1355036_b3SgXKa.pdf 1770 22 1583 +275 2025-09-19 12:52:02.074584+00 2025-09-19 12:52:02.074597+00 f t eco leiva funny amar sep 25.pdf uploads/eco_leiva_funny_amar_sep_25.pdf 1777 22 1583 +276 2025-09-19 13:00:53.625611+00 2025-09-19 13:00:53.625628+00 f t eco galanski pocho amar SEP 25.pdf uploads/eco_galanski_pocho_amar_SEP_25.pdf 1778 22 1583 +277 2025-09-19 13:01:51.065478+00 2025-09-19 13:01:51.065489+00 f t eco spadoni vita amar sep 25.pdf uploads/eco_spadoni_vita_amar_sep_25.pdf 1779 22 1583 +278 2025-09-19 13:01:51.114326+00 2025-09-19 13:01:51.114339+00 f t eco spadoni vita amar sep 25.pdf uploads/eco_spadoni_vita_amar_sep_25_7GAlwup.pdf 1779 22 1583 +279 2025-09-19 13:02:43.716388+00 2025-09-19 13:02:43.716396+00 f t eco catania niels amar sep 25.pdf uploads/eco_catania_niels_amar_sep_25.pdf 1780 22 1583 +280 2025-09-19 13:03:25.921605+00 2025-09-19 13:03:25.921613+00 f t eco catania mina amar sep 25.pdf uploads/eco_catania_mina_amar_sep_25.pdf 1781 22 1583 +281 2025-09-20 16:32:19.61966+00 2025-09-20 16:32:19.619674+00 f t eco leiva funny amar sep 25.pdf uploads/eco_leiva_funny_amar_sep_25_Duo6g0h.pdf 1786 22 1208 +282 2025-09-20 16:35:13.234648+00 2025-09-20 16:35:13.23466+00 f t murray joaqui amar sep 25.pdf uploads/murray_joaqui_amar_sep_25.pdf 1787 22 1208 +283 2025-09-20 16:35:53.963754+00 2025-09-20 16:35:53.963764+00 f t eco caramelo osho amar sep 25.pdf uploads/eco_caramelo_osho_amar_sep__25.pdf 1788 22 1208 +284 2025-09-20 17:24:32.449809+00 2025-09-20 17:24:32.449823+00 f t V1355038.pdf uploads/V1355038.pdf 1789 22 1208 +285 2025-09-20 17:24:57.264658+00 2025-09-20 17:24:57.264667+00 f t V1355037.pdf uploads/V1355037.pdf 1790 22 1208 +286 2025-09-23 16:53:24.769751+00 2025-09-23 16:53:24.769762+00 f t V1355066.pdf uploads/V1355066.pdf 1814 22 1208 +287 2025-09-24 14:30:19.563559+00 2025-09-24 14:30:19.563568+00 f t V1347735.pdf uploads/V1347735.pdf 1823 22 1208 +288 2025-09-25 16:20:34.404731+00 2025-09-25 16:20:34.404743+00 f t Catalina Coldeira.docx.pdf uploads/Catalina_Coldeira.docx.pdf 1824 22 1367 +289 2025-09-25 16:57:13.009465+00 2025-09-25 16:57:13.009474+00 f t V1355717.pdf uploads/V1355717.pdf 1825 22 1208 +290 2025-09-25 16:58:19.518995+00 2025-09-25 16:58:19.519004+00 f t V1355719.pdf uploads/V1355719.pdf 1826 22 1208 +291 2025-09-25 16:58:54.051645+00 2025-09-25 16:58:54.051655+00 f t V1355718.pdf uploads/V1355718.pdf 1827 22 1208 +292 2025-09-25 16:59:57.657529+00 2025-09-25 16:59:57.657537+00 f t V1355039.pdf uploads/V1355039.pdf 1829 22 1208 +293 2025-09-26 12:22:33.769381+00 2025-09-26 12:22:33.769391+00 f t WhatsApp Image 2025-09-26 at 1.49.12 AM.jpeg uploads/WhatsApp_Image_2025-09-26_at_1.49.12_AM.jpeg 1844 22 1583 +294 2025-09-26 12:22:33.992146+00 2025-09-26 12:22:33.992157+00 f t WhatsApp Image 2025-09-26 at 1.49.11 AM (4).jpeg uploads/WhatsApp_Image_2025-09-26_at_1.49.11_AM_4.jpeg 1844 22 1583 +295 2025-09-26 12:22:34.027761+00 2025-09-26 12:22:34.027774+00 f t WhatsApp Image 2025-09-26 at 1.49.11 AM (8).jpeg uploads/WhatsApp_Image_2025-09-26_at_1.49.11_AM_8.jpeg 1844 22 1583 +296 2025-09-26 12:22:34.041165+00 2025-09-26 12:22:34.041178+00 f t WhatsApp Image 2025-09-26 at 1.49.11 AM (7).jpeg uploads/WhatsApp_Image_2025-09-26_at_1.49.11_AM_7.jpeg 1844 22 1583 +297 2025-09-26 12:22:34.083605+00 2025-09-26 12:22:34.083616+00 f t WhatsApp Image 2025-09-26 at 1.49.11 AM (1).jpeg uploads/WhatsApp_Image_2025-09-26_at_1.49.11_AM_1.jpeg 1844 22 1583 +298 2025-09-26 12:22:34.115666+00 2025-09-26 12:22:34.115681+00 f t WhatsApp Image 2025-09-26 at 1.49.11 AM (2).jpeg uploads/WhatsApp_Image_2025-09-26_at_1.49.11_AM_2.jpeg 1844 22 1583 +299 2025-09-26 12:22:34.122716+00 2025-09-26 12:22:34.122781+00 f t WhatsApp Image 2025-09-26 at 1.49.11 AM.jpeg uploads/WhatsApp_Image_2025-09-26_at_1.49.11_AM.jpeg 1844 22 1583 +300 2025-09-26 12:22:34.139626+00 2025-09-26 12:22:34.139637+00 f t WhatsApp Image 2025-09-26 at 1.49.11 AM (6).jpeg uploads/WhatsApp_Image_2025-09-26_at_1.49.11_AM_6.jpeg 1844 22 1583 +301 2025-09-26 12:22:34.15635+00 2025-09-26 12:22:34.156363+00 f t WhatsApp Image 2025-09-26 at 1.49.10 AM.jpeg uploads/WhatsApp_Image_2025-09-26_at_1.49.10_AM.jpeg 1844 22 1583 +302 2025-09-26 12:22:34.217348+00 2025-09-26 12:22:34.217358+00 f t WhatsApp Image 2025-09-26 at 1.49.11 AM (3).jpeg uploads/WhatsApp_Image_2025-09-26_at_1.49.11_AM_3.jpeg 1844 22 1583 +303 2025-09-26 12:22:34.271176+00 2025-09-26 12:22:34.271185+00 f t WhatsApp Image 2025-09-26 at 1.49.11 AM (5).jpeg uploads/WhatsApp_Image_2025-09-26_at_1.49.11_AM_5.jpeg 1844 22 1583 +304 2025-09-26 12:22:34.451939+00 2025-09-26 12:22:34.451948+00 f t eco sosa simona amar sep 25.pdf uploads/eco__sosa_simona_amar_sep_25.pdf 1844 22 1583 +305 2025-09-26 12:30:21.350995+00 2025-09-26 12:30:21.35101+00 f t WhatsApp Image 2025-09-26 at 2.16.02 AM.jpeg uploads/WhatsApp_Image_2025-09-26_at_2.16.02_AM.jpeg 1845 22 1583 +306 2025-09-26 12:30:21.399827+00 2025-09-26 12:30:21.399842+00 f t WhatsApp Image 2025-09-26 at 2.16.01 AM (2).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.16.01_AM_2.jpeg 1845 22 1583 +307 2025-09-26 12:30:21.425676+00 2025-09-26 12:30:21.425685+00 f t WhatsApp Image 2025-09-26 at 2.16.01 AM (1).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.16.01_AM_1.jpeg 1845 22 1583 +308 2025-09-26 12:30:21.434801+00 2025-09-26 12:30:21.434812+00 f t WhatsApp Image 2025-09-26 at 2.16.00 AM.jpeg uploads/WhatsApp_Image_2025-09-26_at_2.16.00_AM.jpeg 1845 22 1583 +309 2025-09-26 12:30:21.471741+00 2025-09-26 12:30:21.471751+00 f t WhatsApp Image 2025-09-26 at 2.16.01 AM (4).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.16.01_AM_4.jpeg 1845 22 1583 +310 2025-09-26 12:30:21.621311+00 2025-09-26 12:30:21.621321+00 f t WhatsApp Image 2025-09-26 at 2.16.01 AM (3).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.16.01_AM_3.jpeg 1845 22 1583 +311 2025-09-26 12:30:21.626221+00 2025-09-26 12:30:21.626232+00 f t WhatsApp Image 2025-09-26 at 2.16.01 AM.jpeg uploads/WhatsApp_Image_2025-09-26_at_2.16.01_AM.jpeg 1845 22 1583 +312 2025-09-26 12:30:21.875723+00 2025-09-26 12:30:21.875733+00 f t eco sanzo leif amar sep 25.pdf uploads/eco_sanzo_leif__amar_sep_25.pdf 1845 22 1583 +313 2025-09-26 12:32:53.493061+00 2025-09-26 12:32:53.49307+00 f t WhatsApp Image 2025-09-26 at 2.33.54 AM (9).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.54_AM_9.jpeg 1846 22 1583 +314 2025-09-26 12:32:53.78507+00 2025-09-26 12:32:53.785084+00 f t WhatsApp Image 2025-09-26 at 2.33.54 AM (8).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.54_AM_8.jpeg 1846 22 1583 +315 2025-09-26 12:32:53.796361+00 2025-09-26 12:32:53.796378+00 f t WhatsApp Image 2025-09-26 at 2.33.54 AM (3).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.54_AM_3.jpeg 1846 22 1583 +316 2025-09-26 12:32:53.829559+00 2025-09-26 12:32:53.829571+00 f t WhatsApp Image 2025-09-26 at 2.33.54 AM (2).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.54_AM_2.jpeg 1846 22 1583 +317 2025-09-26 12:32:53.838336+00 2025-09-26 12:32:53.838347+00 f t WhatsApp Image 2025-09-26 at 2.33.54 AM.jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.54_AM.jpeg 1846 22 1583 +318 2025-09-26 12:32:53.886506+00 2025-09-26 12:32:53.886517+00 f t WhatsApp Image 2025-09-26 at 2.33.53 AM.jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.53_AM.jpeg 1846 22 1583 +319 2025-09-26 12:32:53.944863+00 2025-09-26 12:32:53.944875+00 f t WhatsApp Image 2025-09-26 at 2.33.54 AM (4).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.54_AM_4.jpeg 1846 22 1583 +320 2025-09-26 12:32:53.988978+00 2025-09-26 12:32:53.988991+00 f t WhatsApp Image 2025-09-26 at 2.33.54 AM (1).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.54_AM_1.jpeg 1846 22 1583 +321 2025-09-26 12:32:54.000349+00 2025-09-26 12:32:54.000359+00 f t WhatsApp Image 2025-09-26 at 2.33.53 AM (1).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.53_AM_1.jpeg 1846 22 1583 +322 2025-09-26 12:32:54.043956+00 2025-09-26 12:32:54.043968+00 f t WhatsApp Image 2025-09-26 at 2.33.54 AM (6).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.54_AM_6.jpeg 1846 22 1583 +323 2025-09-26 12:32:54.050318+00 2025-09-26 12:32:54.050333+00 f t WhatsApp Image 2025-09-26 at 2.33.53 AM (2).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.53_AM_2.jpeg 1846 22 1583 +324 2025-09-26 12:32:54.051335+00 2025-09-26 12:32:54.051346+00 f t eco sanzo burton amar sep 25.pdf uploads/eco_sanzo_burton_amar_sep_25.pdf 1846 22 1583 +325 2025-09-26 12:32:54.095645+00 2025-09-26 12:32:54.095658+00 f t WhatsApp Image 2025-09-26 at 2.33.54 AM (5).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.54_AM_5.jpeg 1846 22 1583 +326 2025-09-26 12:32:54.098054+00 2025-09-26 12:32:54.098062+00 f t WhatsApp Image 2025-09-26 at 2.33.54 AM (7).jpeg uploads/WhatsApp_Image_2025-09-26_at_2.33.54_AM_7.jpeg 1846 22 1583 +327 2025-09-26 12:36:59.842257+00 2025-09-26 12:36:59.842265+00 f t Informe_moreno_2025-09-24 (1).pdf uploads/Informe_moreno_2025-09-24_1.pdf 1847 22 1583 +328 2025-09-26 18:01:30.394864+00 2025-09-26 18:01:30.394874+00 f t V1355061.pdf uploads/V1355061.pdf 1851 22 1583 +329 2025-09-26 21:57:19.494257+00 2025-09-26 21:57:19.494266+00 f t V1355767.pdf uploads/V1355767.pdf 1852 22 1583 +330 2025-09-29 15:36:19.800666+00 2025-09-29 15:36:19.800681+00 f t V1356605.pdf uploads/V1356605.pdf 1874 22 1583 +331 2025-09-29 15:40:12.503812+00 2025-09-29 15:40:12.503826+00 f t V1356604.pdf uploads/V1356604.pdf 1875 22 1583 +332 2025-09-29 15:45:33.464402+00 2025-09-29 15:45:33.464415+00 f t V1355768.pdf uploads/V1355768.pdf 1876 22 1583 +333 2025-09-30 15:18:42.944929+00 2025-09-30 15:18:42.944942+00 f t eco lagger luke amar sep 25.pdf uploads/eco_lagger_luke_amar_sep_25.pdf 1879 22 1583 +334 2025-10-02 14:12:46.876195+00 2025-10-02 14:12:46.876204+00 f t WhatsApp Image 2025-10-02 at 11.11.14 AM.jpeg uploads/WhatsApp_Image_2025-10-02_at_11.11.14_AM.jpeg 1936 22 148 +335 2025-10-02 14:19:41.53498+00 2025-10-02 14:19:41.534993+00 f t WhatsApp Image 2025-10-02 at 11.18.13 AM.jpeg uploads/WhatsApp_Image_2025-10-02_at_11.18.13_AM.jpeg 1937 22 148 +336 2025-10-02 14:19:41.553814+00 2025-10-02 14:19:41.553826+00 f t WhatsApp Image 2025-10-02 at 11.17.33 AM.jpeg uploads/WhatsApp_Image_2025-10-02_at_11.17.33_AM.jpeg 1937 22 148 +337 2025-10-03 18:50:32.766906+00 2025-10-03 18:50:32.766916+00 f t V1357007.pdf uploads/V1357007.pdf 1958 22 1583 +338 2025-10-03 18:51:55.339425+00 2025-10-03 18:51:55.339435+00 f t V1355740.pdf uploads/V1355740.pdf 1959 22 1583 +339 2025-10-03 18:58:25.902746+00 2025-10-03 18:58:25.902754+00 f t V1357030.pdf uploads/V1357030.pdf 1960 22 1583 +340 2025-10-03 18:59:12.470342+00 2025-10-03 18:59:12.47035+00 f t V1357029.pdf uploads/V1357029.pdf 1961 22 1583 +341 2025-10-03 19:12:35.426046+00 2025-10-03 19:12:35.426057+00 f t V1356892.pdf uploads/V1356892.pdf 1962 22 1208 +342 2025-10-03 19:27:43.663989+00 2025-10-03 19:27:43.663997+00 f t V1356841.pdf uploads/V1356841.pdf 1963 22 1583 +343 2025-10-06 14:15:09.192451+00 2025-10-06 14:15:09.192465+00 f t V1357073.pdf uploads/V1357073.pdf 1980 22 1583 +344 2025-10-06 17:21:30.010609+00 2025-10-06 17:21:30.01062+00 f t eco mazzeo tita amar oct 25.pdf uploads/eco_mazzeo_tita_amar_oct_25.pdf 1981 22 1583 +345 2025-10-07 14:11:49.571355+00 2025-10-07 14:11:49.571364+00 f t V1357083.pdf uploads/V1357083.pdf 1991 22 1583 +346 2025-10-08 00:49:52.694185+00 2025-10-08 00:49:52.694195+00 f t Berta Infante.docx.pdf uploads/Berta_Infante.docx.pdf 1995 22 1367 +347 2025-10-08 13:24:58.952+00 2025-10-08 13:15:18.543039+00 f t 200101010006020001ABD.JPG uploads/200101010006020001ABD.JPG 1997 22 1180 Archivo adjunto al reporte 1997 +348 2025-10-08 13:24:59.536+00 2025-10-08 13:15:18.852157+00 f t 200101010006220002ABD.JPG uploads/200101010006220002ABD.JPG 1997 22 1180 Archivo adjunto al reporte 1997 +349 2025-10-08 13:24:59.835+00 2025-10-08 13:15:19.163663+00 f t 200101010007180003ABD.JPG uploads/200101010007180003ABD.JPG 1997 22 1180 Archivo adjunto al reporte 1997 +350 2025-10-08 13:25:00.15+00 2025-10-08 13:15:19.475223+00 f t 200101010007340004ABD.JPG uploads/200101010007340004ABD.JPG 1997 22 1180 Archivo adjunto al reporte 1997 +351 2025-10-08 13:25:00.459+00 2025-10-08 13:15:19.851323+00 f t 200101010008010005ABD.JPG uploads/200101010008010005ABD.JPG 1997 22 1180 Archivo adjunto al reporte 1997 +352 2025-10-08 13:25:00.832+00 2025-10-08 13:15:20.170449+00 f t 200101010008210006ABD.JPG uploads/200101010008210006ABD.JPG 1997 22 1180 Archivo adjunto al reporte 1997 +353 2025-10-08 13:25:01.156+00 2025-10-08 13:15:20.527171+00 f t 200101010008300007ABD.JPG uploads/200101010008300007ABD.JPG 1997 22 1180 Archivo adjunto al reporte 1997 +354 2025-10-08 13:25:01.514+00 2025-10-08 13:15:20.880298+00 f t 200101010011040008ABD.JPG uploads/200101010011040008ABD.JPG 1997 22 1180 Archivo adjunto al reporte 1997 +355 2025-10-08 13:25:01.866+00 2025-10-08 13:15:21.20242+00 f t 200101010011260009ABD.JPG uploads/200101010011260009ABD.JPG 1997 22 1180 Archivo adjunto al reporte 1997 +356 2025-10-08 13:25:02.186+00 2025-10-08 13:15:21.778835+00 f t eco nizza merluza amar oct 25.pdf uploads/eco_nizza_merluza_amar___oct_25.pdf 1997 22 1180 Archivo adjunto al reporte 1997 +357 2025-10-08 14:24:25.533477+00 2025-10-08 14:24:25.533485+00 f t V1357840.pdf uploads/V1357840.pdf 1998 22 1583 +358 2025-10-08 14:46:16.474007+00 2025-10-08 14:46:16.474016+00 f t V1357084.pdf uploads/V1357084.pdf 2000 22 1583 +359 2025-10-08 15:59:09.729791+00 2025-10-08 15:59:09.729801+00 f t V1357083.pdf uploads/V1357083_zE12oVG.pdf 2754 21 1208 +360 2025-10-08 18:24:01.111157+00 2025-10-08 18:24:01.111167+00 f t Berta Infante.docx.pdf uploads/Berta_Infante.docx_em1tbg6.pdf 2625 21 1208 +361 2025-10-09 03:36:59.933+00 2025-10-09 03:27:18.891981+00 f t 200101010004200001ABD.JPG uploads/200101010004200001ABD.JPG 2007 22 1180 Archivo adjunto al reporte 2007 +362 2025-10-09 03:37:00.576+00 2025-10-09 03:27:19.232964+00 f t 200101010005030002ABD.JPG uploads/200101010005030002ABD.JPG 2007 22 1180 Archivo adjunto al reporte 2007 +363 2025-10-09 03:37:00.949+00 2025-10-09 03:27:19.600002+00 f t 200101010005390003ABD.JPG uploads/200101010005390003ABD.JPG 2007 22 1180 Archivo adjunto al reporte 2007 +364 2025-10-09 03:37:01.279+00 2025-10-09 03:27:19.921953+00 f t 200101010005460004ABD.JPG uploads/200101010005460004ABD.JPG 2007 22 1180 Archivo adjunto al reporte 2007 +365 2025-10-09 03:37:01.604+00 2025-10-09 03:27:20.263719+00 f t 200101010005550005ABD.JPG uploads/200101010005550005ABD.JPG 2007 22 1180 Archivo adjunto al reporte 2007 +366 2025-10-09 03:37:01.944+00 2025-10-09 03:27:20.598933+00 f t 200101010006090006ABD.JPG uploads/200101010006090006ABD.JPG 2007 22 1180 Archivo adjunto al reporte 2007 +367 2025-10-09 03:37:02.383+00 2025-10-09 03:27:21.027667+00 f t 200101010006530007ABD.JPG uploads/200101010006530007ABD.JPG 2007 22 1180 Archivo adjunto al reporte 2007 +368 2025-10-09 03:37:02.792+00 2025-10-09 03:27:21.44474+00 f t 200101010007120009ABD.JPG uploads/200101010007120009ABD.JPG 2007 22 1180 Archivo adjunto al reporte 2007 +369 2025-10-09 03:37:03.123+00 2025-10-09 03:27:21.770947+00 f t 200101010008590010ABD.JPG uploads/200101010008590010ABD.JPG 2007 22 1180 Archivo adjunto al reporte 2007 +522 2025-10-23 14:09:37.951339+00 2025-10-23 14:09:37.951349+00 f t V1354488.pdf uploads/V1354488_FUiRLPz.pdf 2893 21 1583 +370 2025-10-09 03:37:03.509+00 2025-10-09 03:27:22.156682+00 f t 200101010009590012ABD.JPG uploads/200101010009590012ABD.JPG 2007 22 1180 Archivo adjunto al reporte 2007 +371 2025-10-09 03:37:03.918+00 2025-10-09 03:27:22.750196+00 f t eco sanchez panchita amar oct 25.pdf uploads/eco_sanchez_panchita_amar_oct_25.pdf 2007 22 1180 Archivo adjunto al reporte 2007 +372 2025-10-09 04:13:23.88+00 2025-10-09 04:03:42.539028+00 f t 200101010002460002ABD.JPG uploads/200101010002460002ABD.JPG 2008 22 1180 Archivo adjunto al reporte 2008 +373 2025-10-09 04:13:24.288+00 2025-10-09 04:03:42.932814+00 f t 200101010002560003ABD.JPG uploads/200101010002560003ABD.JPG 2008 22 1180 Archivo adjunto al reporte 2008 +374 2025-10-09 04:13:24.697+00 2025-10-09 04:03:43.345117+00 f t 200101010003230004ABD.JPG uploads/200101010003230004ABD.JPG 2008 22 1180 Archivo adjunto al reporte 2008 +375 2025-10-09 04:13:25.107+00 2025-10-09 04:03:43.754537+00 f t 200101010004020005ABD.JPG uploads/200101010004020005ABD.JPG 2008 22 1180 Archivo adjunto al reporte 2008 +376 2025-10-09 04:13:25.518+00 2025-10-09 04:03:44.160093+00 f t 200101010006490008ABD.JPG uploads/200101010006490008ABD.JPG 2008 22 1180 Archivo adjunto al reporte 2008 +377 2025-10-09 04:13:25.927+00 2025-10-09 04:03:44.564916+00 f t 200101010007000009ABD.JPG uploads/200101010007000009ABD.JPG 2008 22 1180 Archivo adjunto al reporte 2008 +378 2025-10-09 04:13:26.336+00 2025-10-09 04:03:44.974813+00 f t 200101010007060010ABD.JPG uploads/200101010007060010ABD.JPG 2008 22 1180 Archivo adjunto al reporte 2008 +379 2025-10-09 04:13:26.746+00 2025-10-09 04:03:45.383688+00 f t 200101010007470011ABD.JPG uploads/200101010007470011ABD.JPG 2008 22 1180 Archivo adjunto al reporte 2008 +380 2025-10-09 04:13:27.155+00 2025-10-09 04:03:45.795449+00 f t 200101010009500013ABD.JPG uploads/200101010009500013ABD.JPG 2008 22 1180 Archivo adjunto al reporte 2008 +381 2025-10-09 04:13:27.566+00 2025-10-09 04:03:46.323289+00 f t ECO FRIDA LUZ AMAR OCT 25.pdf uploads/ECO_FRIDA_LUZ_AMAR_OCT_25.pdf 2008 22 1180 Archivo adjunto al reporte 2008 +382 2025-10-11 03:25:32.343+00 2025-10-11 03:15:49.992691+00 f t 200101010004240001ABD.JPG uploads/200101010004240001ABD.JPG 2026 22 1180 Archivo adjunto al reporte 2026 +383 2025-10-11 03:25:32.992+00 2025-10-11 03:15:50.326371+00 f t 200101010004410002ABD.JPG uploads/200101010004410002ABD.JPG 2026 22 1180 Archivo adjunto al reporte 2026 +384 2025-10-11 03:25:33.369+00 2025-10-11 03:15:50.713568+00 f t 200101010006310004ABD.JPG uploads/200101010006310004ABD.JPG 2026 22 1180 Archivo adjunto al reporte 2026 +385 2025-10-11 03:25:33.778+00 2025-10-11 03:15:51.122365+00 f t 200101010007190005ABD.JPG uploads/200101010007190005ABD.JPG 2026 22 1180 Archivo adjunto al reporte 2026 +386 2025-10-11 03:25:34.191+00 2025-10-11 03:15:51.527059+00 f t 200101010007440006ABD.JPG uploads/200101010007440006ABD.JPG 2026 22 1180 Archivo adjunto al reporte 2026 +387 2025-10-11 03:25:34.595+00 2025-10-11 03:15:51.944762+00 f t 200101010007510007ABD.JPG uploads/200101010007510007ABD.JPG 2026 22 1180 Archivo adjunto al reporte 2026 +388 2025-10-11 03:25:34.937+00 2025-10-11 03:15:52.283867+00 f t 200101010008420009ABD.JPG uploads/200101010008420009ABD.JPG 2026 22 1180 Archivo adjunto al reporte 2026 +389 2025-10-11 03:25:35.277+00 2025-10-11 03:15:52.607229+00 f t 200101010011400010ABD.JPG uploads/200101010011400010ABD.JPG 2026 22 1180 Archivo adjunto al reporte 2026 +390 2025-10-11 03:25:35.6+00 2025-10-11 03:15:52.929424+00 f t 200101010013250011ABD.JPG uploads/200101010013250011ABD.JPG 2026 22 1180 Archivo adjunto al reporte 2026 +391 2025-10-11 03:25:36.032+00 2025-10-11 03:15:53.361825+00 f t 200101010014200012ABD.JPG uploads/200101010014200012ABD.JPG 2026 22 1180 Archivo adjunto al reporte 2026 +392 2025-10-11 03:25:36.353+00 2025-10-11 03:15:53.69107+00 f t 200101010015150013ABD.JPG uploads/200101010015150013ABD.JPG 2026 22 1180 Archivo adjunto al reporte 2026 +393 2025-10-11 03:25:36.748+00 2025-10-11 03:15:54.083659+00 f t 200101010017070015ABD.JPG uploads/200101010017070015ABD.JPG 2026 22 1180 Archivo adjunto al reporte 2026 +394 2025-10-11 03:25:37.157+00 2025-10-11 03:15:54.612717+00 f t eco berrueta funky amar oct 25.pdf uploads/eco_berrueta_funky_amar_oct_25.pdf 2026 22 1180 Archivo adjunto al reporte 2026 +395 2025-10-11 03:36:55.457+00 2025-10-11 03:27:12.824998+00 f t 200101010006050003ABD.JPG uploads/200101010006050003ABD.JPG 2027 22 1180 Archivo adjunto al reporte 2027 +396 2025-10-11 03:36:55.888+00 2025-10-11 03:27:13.21088+00 f t 200101010006460004ABD.JPG uploads/200101010006460004ABD.JPG 2027 22 1180 Archivo adjunto al reporte 2027 +397 2025-10-11 03:36:56.299+00 2025-10-11 03:27:13.624715+00 f t 200101010007190005ABD.JPG uploads/200101010007190005ABD_bfSEwBn.JPG 2027 22 1180 Archivo adjunto al reporte 2027 +398 2025-10-11 03:36:56.706+00 2025-10-11 03:27:14.037352+00 f t 200101010008580008ABD.JPG uploads/200101010008580008ABD.JPG 2027 22 1180 Archivo adjunto al reporte 2027 +399 2025-10-11 03:36:57.12+00 2025-10-11 03:27:14.448509+00 f t 200101010009140009ABD.JPG uploads/200101010009140009ABD.JPG 2027 22 1180 Archivo adjunto al reporte 2027 +400 2025-10-11 03:36:57.45+00 2025-10-11 03:27:14.787226+00 f t 200101010009540010ABD.JPG uploads/200101010009540010ABD.JPG 2027 22 1180 Archivo adjunto al reporte 2027 +401 2025-10-11 03:36:57.834+00 2025-10-11 03:27:15.174845+00 f t 200101010010060011ABD.JPG uploads/200101010010060011ABD.JPG 2027 22 1180 Archivo adjunto al reporte 2027 +402 2025-10-11 03:36:58.171+00 2025-10-11 03:27:15.509797+00 f t 200101010011190012ABD.JPG uploads/200101010011190012ABD.JPG 2027 22 1180 Archivo adjunto al reporte 2027 +403 2025-10-11 03:36:58.518+00 2025-10-11 03:27:15.84403+00 f t 200101010013060014ABD.JPG uploads/200101010013060014ABD.JPG 2027 22 1180 Archivo adjunto al reporte 2027 +404 2025-10-11 03:36:58.847+00 2025-10-11 03:27:16.175909+00 f t 200101010013540015ABD.JPG uploads/200101010013540015ABD.JPG 2027 22 1180 Archivo adjunto al reporte 2027 +405 2025-10-11 03:36:59.172+00 2025-10-11 03:27:16.709566+00 f t eco barbaro joaquin amar oct 25.pdf uploads/eco_barbaro_joaquin_amar_oct_25.pdf 2027 22 1180 Archivo adjunto al reporte 2027 +406 2025-10-11 04:37:13.393+00 2025-10-11 04:27:30.70834+00 f t 200101010004540001ABD.JPG uploads/200101010004540001ABD.JPG 2028 22 1180 Archivo adjunto al reporte 2028 +407 2025-10-11 04:37:13.744+00 2025-10-11 04:27:31.041349+00 f t 200101010005480002ABD.JPG uploads/200101010005480002ABD.JPG 2028 22 1180 Archivo adjunto al reporte 2028 +408 2025-10-11 04:37:14.106+00 2025-10-11 04:27:31.4022+00 f t 200101010006180003ABD.JPG uploads/200101010006180003ABD.JPG 2028 22 1180 Archivo adjunto al reporte 2028 +409 2025-10-11 04:37:14.516+00 2025-10-11 04:27:31.80926+00 f t 200101010006410004ABD.JPG uploads/200101010006410004ABD.JPG 2028 22 1180 Archivo adjunto al reporte 2028 +410 2025-10-11 04:37:14.926+00 2025-10-11 04:27:32.227667+00 f t 200101010008070005ABD.JPG uploads/200101010008070005ABD.JPG 2028 22 1180 Archivo adjunto al reporte 2028 +411 2025-10-11 04:37:15.335+00 2025-10-11 04:27:32.636102+00 f t 200101010008240007ABD.JPG uploads/200101010008240007ABD.JPG 2028 22 1180 Archivo adjunto al reporte 2028 +412 2025-10-11 04:37:15.668+00 2025-10-11 04:27:32.966714+00 f t 200101010009370008ABD.JPG uploads/200101010009370008ABD.JPG 2028 22 1180 Archivo adjunto al reporte 2028 +413 2025-10-11 04:37:16.053+00 2025-10-11 04:27:33.34362+00 f t 200101010010500010ABD.JPG uploads/200101010010500010ABD.JPG 2028 22 1180 Archivo adjunto al reporte 2028 +414 2025-10-11 04:37:16.462+00 2025-10-11 04:27:33.88235+00 f t eco schulze marina amar oct 25.pdf uploads/eco_schulze_marina_amar_oct_25.pdf 2028 22 1180 Archivo adjunto al reporte 2028 +415 2025-10-14 01:55:27.045+00 2025-10-14 01:45:42.60784+00 f t 200101010005160001ABD.JPG uploads/200101010005160001ABD.JPG 2065 22 1180 Archivo adjunto al reporte 2065 +416 2025-10-14 01:55:27.615+00 2025-10-14 01:45:42.940215+00 f t 200101010006110002ABD.JPG uploads/200101010006110002ABD.JPG 2065 22 1180 Archivo adjunto al reporte 2065 +417 2025-10-14 01:55:27.946+00 2025-10-14 01:45:43.270284+00 f t 200101010006250003ABD.JPG uploads/200101010006250003ABD.JPG 2065 22 1180 Archivo adjunto al reporte 2065 +418 2025-10-14 01:55:28.273+00 2025-10-14 01:45:43.586856+00 f t 200101010007230004ABD.JPG uploads/200101010007230004ABD.JPG 2065 22 1180 Archivo adjunto al reporte 2065 +419 2025-10-14 01:55:28.593+00 2025-10-14 01:45:43.914455+00 f t 200101010009010005ABD.JPG uploads/200101010009010005ABD.JPG 2065 22 1180 Archivo adjunto al reporte 2065 +420 2025-10-14 01:55:28.924+00 2025-10-14 01:45:44.239712+00 f t 200101010009170006ABD.JPG uploads/200101010009170006ABD.JPG 2065 22 1180 Archivo adjunto al reporte 2065 +421 2025-10-14 01:55:29.247+00 2025-10-14 01:45:44.564458+00 f t 200101010011150008ABD.JPG uploads/200101010011150008ABD.JPG 2065 22 1180 Archivo adjunto al reporte 2065 +422 2025-10-14 01:55:29.571+00 2025-10-14 01:45:44.893782+00 f t 200101010011550009ABD.JPG uploads/200101010011550009ABD.JPG 2065 22 1180 Archivo adjunto al reporte 2065 +423 2025-10-14 01:55:29.901+00 2025-10-14 01:45:45.216141+00 f t 200101010012570010ABD.JPG uploads/200101010012570010ABD.JPG 2065 22 1180 Archivo adjunto al reporte 2065 +424 2025-10-14 01:55:30.222+00 2025-10-14 01:45:45.656287+00 f t eco lezama pejerrey amar oct 25.pdf uploads/eco_lezama_pejerrey_amar_oct_25.pdf 2065 22 1180 Archivo adjunto al reporte 2065 +425 2025-10-14 03:27:38.947+00 2025-10-14 03:17:54.257109+00 f t 200101010004020001ABD.JPG uploads/200101010004020001ABD.JPG 2068 22 1180 Archivo adjunto al reporte 2068 +426 2025-10-14 03:27:39.325+00 2025-10-14 03:17:54.608086+00 f t 200101010005200002ABD.JPG uploads/200101010005200002ABD.JPG 2068 22 1180 Archivo adjunto al reporte 2068 +427 2025-10-14 03:27:39.675+00 2025-10-14 03:17:54.968282+00 f t 200101010006400003ABD.JPG uploads/200101010006400003ABD.JPG 2068 22 1180 Archivo adjunto al reporte 2068 +428 2025-10-14 03:27:40.023+00 2025-10-14 03:17:55.297636+00 f t 200101010007180004ABD.JPG uploads/200101010007180004ABD.JPG 2068 22 1180 Archivo adjunto al reporte 2068 +429 2025-10-14 03:27:40.888+00 2025-10-14 03:17:56.158723+00 f t 200101010008470005ABD.JPG uploads/200101010008470005ABD.JPG 2068 22 1180 Archivo adjunto al reporte 2068 +430 2025-10-14 03:27:41.277+00 2025-10-14 03:17:56.540674+00 f t 200101010008520006ABD.JPG uploads/200101010008520006ABD.JPG 2068 22 1180 Archivo adjunto al reporte 2068 +431 2025-10-14 03:27:41.678+00 2025-10-14 03:17:56.944764+00 f t 200101010009080007ABD.JPG uploads/200101010009080007ABD.JPG 2068 22 1180 Archivo adjunto al reporte 2068 +432 2025-10-14 03:27:43.087+00 2025-10-14 03:17:58.37385+00 f t 200101010010010008ABD.JPG uploads/200101010010010008ABD.JPG 2068 22 1180 Archivo adjunto al reporte 2068 +433 2025-10-14 03:27:43.504+00 2025-10-14 03:17:58.788808+00 f t 200101010011550009ABD.JPG uploads/200101010011550009ABD_9NdaPQl.JPG 2068 22 1180 Archivo adjunto al reporte 2068 +434 2025-10-14 03:27:43.887+00 2025-10-14 03:17:59.15679+00 f t 200101010012270010ABD.JPG uploads/200101010012270010ABD.JPG 2068 22 1180 Archivo adjunto al reporte 2068 +435 2025-10-14 03:27:44.221+00 2025-10-14 03:17:59.70731+00 f t eco calvosa duna amar petandfood oct 25.pdf uploads/eco_calvosa_duna_amar_petandfood_oct_25.pdf 2068 22 1180 Archivo adjunto al reporte 2068 +436 2025-10-14 14:09:52.552682+00 2025-10-14 14:09:52.55269+00 f t V1358631.pdf uploads/V1358631.pdf 2069 22 1583 +437 2025-10-14 16:23:11.128399+00 2025-10-14 16:23:11.128407+00 f t WhatsApp-Image-2025-09-02-at-120514-PMjpeg-21432-138085f2-6430-467e-b03b-75fcddd282dc.pdf uploads/WhatsApp-Image-2025-09-02-at-120514-PMjpeg-21432-138085f2-6430-467e-b03b-75fcddd282dc.pdf 2071 22 1583 +438 2025-10-14 16:40:43.277436+00 2025-10-14 16:40:43.277444+00 f t V1357875 (1) (1).pdf uploads/V1357875_1_1.pdf 2072 22 1583 +439 2025-10-15 02:39:55.829+00 2025-10-15 02:30:10.584454+00 f t 200101010002530001ABD.JPG uploads/200101010002530001ABD.JPG 2078 22 1180 Archivo adjunto al reporte 2078 +440 2025-10-15 02:39:56.429+00 2025-10-15 02:30:10.923092+00 f t 200101010003160002ABD.JPG uploads/200101010003160002ABD.JPG 2078 22 1180 Archivo adjunto al reporte 2078 +441 2025-10-15 02:39:56.764+00 2025-10-15 02:30:11.256961+00 f t 200101010003330003ABD.JPG uploads/200101010003330003ABD.JPG 2078 22 1180 Archivo adjunto al reporte 2078 +442 2025-10-15 02:39:57.097+00 2025-10-15 02:30:11.590716+00 f t 200101010004210004ABD.JPG uploads/200101010004210004ABD.JPG 2078 22 1180 Archivo adjunto al reporte 2078 +443 2025-10-15 02:39:57.431+00 2025-10-15 02:30:11.932348+00 f t 200101010004330005ABD.JPG uploads/200101010004330005ABD.JPG 2078 22 1180 Archivo adjunto al reporte 2078 +444 2025-10-15 02:39:57.772+00 2025-10-15 02:30:12.289251+00 f t 200101010004500006ABD.JPG uploads/200101010004500006ABD.JPG 2078 22 1180 Archivo adjunto al reporte 2078 +445 2025-10-15 02:39:58.131+00 2025-10-15 02:30:12.627515+00 f t 200101010005130007ABD.JPG uploads/200101010005130007ABD.JPG 2078 22 1180 Archivo adjunto al reporte 2078 +446 2025-10-15 02:39:58.466+00 2025-10-15 02:30:12.957746+00 f t 200101010007120008ABD.JPG uploads/200101010007120008ABD.JPG 2078 22 1180 Archivo adjunto al reporte 2078 +447 2025-10-15 02:39:58.797+00 2025-10-15 02:30:13.295691+00 f t 200101010007450009ABD.JPG uploads/200101010007450009ABD.JPG 2078 22 1180 Archivo adjunto al reporte 2078 +448 2025-10-15 02:39:59.137+00 2025-10-15 02:30:13.856768+00 f t eco cancellieri mei amar oct 25.pdf uploads/eco_cancellieri_mei_amar_oct_25.pdf 2078 22 1180 Archivo adjunto al reporte 2078 +449 2025-10-15 12:47:48.365237+00 2025-10-15 12:47:48.365246+00 f t V1358603.pdf uploads/V1358603.pdf 2080 22 1208 +450 2025-10-15 17:44:15.617212+00 2025-10-15 17:44:15.617221+00 f t V1358688.pdf uploads/V1358688.pdf 2082 22 1208 +451 2025-10-15 20:46:41.418645+00 2025-10-15 20:46:41.418656+00 f t LARA NOIR.pdf uploads/LARA_NOIR.pdf 2083 22 1583 +452 2025-10-15 20:46:42.011624+00 2025-10-15 20:46:42.011634+00 f t LARA NOIR.pdf uploads/LARA_NOIR_c50a2um.pdf 2083 22 1583 +453 2025-10-16 03:02:44.221+00 2025-10-16 02:52:57.663739+00 f t 200101010003500001ABD.JPG uploads/200101010003500001ABD.JPG 2085 22 1180 Archivo adjunto al reporte 2085 +454 2025-10-16 03:02:44.804+00 2025-10-16 02:52:58.006357+00 f t 200101010005130003ABD.JPG uploads/200101010005130003ABD.JPG 2085 22 1180 Archivo adjunto al reporte 2085 +455 2025-10-16 03:02:45.146+00 2025-10-16 02:52:58.33677+00 f t 200101010005380004ABD.JPG uploads/200101010005380004ABD.JPG 2085 22 1180 Archivo adjunto al reporte 2085 +456 2025-10-16 03:02:45.479+00 2025-10-16 02:52:58.672041+00 f t 200101010007200005ABD.JPG uploads/200101010007200005ABD.JPG 2085 22 1180 Archivo adjunto al reporte 2085 +457 2025-10-16 03:02:45.813+00 2025-10-16 02:52:59.002276+00 f t 200101010008100006ABD.JPG uploads/200101010008100006ABD.JPG 2085 22 1180 Archivo adjunto al reporte 2085 +458 2025-10-16 03:02:46.143+00 2025-10-16 02:52:59.324745+00 f t 200101010009050008ABD.JPG uploads/200101010009050008ABD.JPG 2085 22 1180 Archivo adjunto al reporte 2085 +459 2025-10-16 03:02:46.467+00 2025-10-16 02:52:59.658084+00 f t 200101010009410009ABD.JPG uploads/200101010009410009ABD.JPG 2085 22 1180 Archivo adjunto al reporte 2085 +460 2025-10-16 03:02:46.957+00 2025-10-16 02:53:00.151664+00 f t 200101010012090011ABD.JPG uploads/200101010012090011ABD.JPG 2085 22 1180 Archivo adjunto al reporte 2085 +461 2025-10-16 03:02:47.291+00 2025-10-16 02:53:00.610008+00 f t eco garcia bendaham tucci amar oct 25.pdf uploads/eco_garcia_bendaham_tucci_amar_oct_25.pdf 2085 22 1180 Archivo adjunto al reporte 2085 +462 2025-10-16 03:29:15.202+00 2025-10-16 03:19:28.388998+00 f t 200101010002390001ABD.JPG uploads/200101010002390001ABD.JPG 2086 22 1180 Archivo adjunto al reporte 2086 +463 2025-10-16 03:29:15.545+00 2025-10-16 03:19:28.718706+00 f t 200101010002500002ABD.JPG uploads/200101010002500002ABD.JPG 2086 22 1180 Archivo adjunto al reporte 2086 +464 2025-10-16 03:29:15.874+00 2025-10-16 03:19:29.055973+00 f t 200101010003260003ABD.JPG uploads/200101010003260003ABD.JPG 2086 22 1180 Archivo adjunto al reporte 2086 +465 2025-10-16 03:29:16.212+00 2025-10-16 03:19:29.3894+00 f t 200101010004340004ABD.JPG uploads/200101010004340004ABD.JPG 2086 22 1180 Archivo adjunto al reporte 2086 +466 2025-10-16 03:29:16.545+00 2025-10-16 03:19:29.727638+00 f t 200101010005300005ABD.JPG uploads/200101010005300005ABD.JPG 2086 22 1180 Archivo adjunto al reporte 2086 +467 2025-10-16 03:29:16.883+00 2025-10-16 03:19:30.056855+00 f t 200101010005460006ABD.JPG uploads/200101010005460006ABD.JPG 2086 22 1180 Archivo adjunto al reporte 2086 +468 2025-10-16 03:29:17.211+00 2025-10-16 03:19:30.390475+00 f t 200101010005580007ABD.JPG uploads/200101010005580007ABD.JPG 2086 22 1180 Archivo adjunto al reporte 2086 +469 2025-10-16 03:29:17.546+00 2025-10-16 03:19:30.72081+00 f t 200101010007380008ABD.JPG uploads/200101010007380008ABD.JPG 2086 22 1180 Archivo adjunto al reporte 2086 +470 2025-10-16 03:29:17.876+00 2025-10-16 03:19:31.052294+00 f t 200101010008110009ABD.JPG uploads/200101010008110009ABD.JPG 2086 22 1180 Archivo adjunto al reporte 2086 +471 2025-10-16 03:29:18.209+00 2025-10-16 03:19:31.507424+00 f t eco iuro paz amar oct 25.pdf uploads/eco_iuro_paz_amar_oct_25.pdf 2086 22 1180 Archivo adjunto al reporte 2086 +472 2025-10-17 02:09:37.197+00 2025-10-17 01:59:50.239613+00 f t 200101010004000002ABD.JPG uploads/200101010004000002ABD.JPG 2100 22 1180 Archivo adjunto al reporte 2100 +473 2025-10-17 02:09:37.811+00 2025-10-17 01:59:50.607509+00 f t 200101010004230003ABD.JPG uploads/200101010004230003ABD.JPG 2100 22 1180 Archivo adjunto al reporte 2100 +474 2025-10-17 02:09:38.179+00 2025-10-17 01:59:50.973517+00 f t 200101010005050004ABD.JPG uploads/200101010005050004ABD.JPG 2100 22 1180 Archivo adjunto al reporte 2100 +475 2025-10-17 02:09:38.508+00 2025-10-17 01:59:51.300369+00 f t 200101010006410006ABD.JPG uploads/200101010006410006ABD.JPG 2100 22 1180 Archivo adjunto al reporte 2100 +476 2025-10-17 02:09:38.939+00 2025-10-17 01:59:51.726812+00 f t 200101010007510009ABD.JPG uploads/200101010007510009ABD.JPG 2100 22 1180 Archivo adjunto al reporte 2100 +477 2025-10-17 02:09:39.346+00 2025-10-17 01:59:52.138649+00 f t 200101010008190010ABD.JPG uploads/200101010008190010ABD.JPG 2100 22 1180 Archivo adjunto al reporte 2100 +478 2025-10-17 02:09:39.692+00 2025-10-17 01:59:52.485068+00 f t 200101010009190011ABD.JPG uploads/200101010009190011ABD.JPG 2100 22 1180 Archivo adjunto al reporte 2100 +479 2025-10-17 02:09:40.063+00 2025-10-17 01:59:52.870367+00 f t 200101010009380012ABD.JPG uploads/200101010009380012ABD.JPG 2100 22 1180 Archivo adjunto al reporte 2100 +480 2025-10-17 02:09:40.472+00 2025-10-17 01:59:53.496204+00 f t eco carballo tito amar oct 25.pdf uploads/eco_carballo_tito_amar_oct_25.pdf 2100 22 1180 Archivo adjunto al reporte 2100 +481 2025-10-17 12:56:26.293207+00 2025-10-17 12:56:26.293216+00 f t V1354489.pdf uploads/V1354489.pdf 2104 22 1583 +482 2025-10-17 13:04:53.887347+00 2025-10-17 13:04:53.887356+00 f t V1354488.pdf uploads/V1354488.pdf 2105 22 1583 +483 2025-10-17 13:04:55.047362+00 2025-10-17 13:04:55.047373+00 f t V1354488.pdf uploads/V1354488_JybfeRI.pdf 2105 22 1583 +484 2025-10-18 06:19:22.559+00 2025-10-18 06:09:35.038825+00 f t 200101010004540001ABD.JPG uploads/200101010004540001ABD_eaBi1GE.JPG 2117 22 1180 Archivo adjunto al reporte 2117 +485 2025-10-18 06:19:23.227+00 2025-10-18 06:09:35.488634+00 f t 200101010005270002ABD.JPG uploads/200101010005270002ABD.JPG 2117 22 1180 Archivo adjunto al reporte 2117 +486 2025-10-18 06:19:23.666+00 2025-10-18 06:09:35.932945+00 f t 200101010005450003ABD.JPG uploads/200101010005450003ABD.JPG 2117 22 1180 Archivo adjunto al reporte 2117 +487 2025-10-18 06:19:24.114+00 2025-10-18 06:09:36.346266+00 f t 200101010007190005ABD.JPG uploads/200101010007190005ABD_h9URM2f.JPG 2117 22 1180 Archivo adjunto al reporte 2117 +488 2025-10-18 06:19:24.526+00 2025-10-18 06:09:36.772638+00 f t 200101010008040006ABD.JPG uploads/200101010008040006ABD.JPG 2117 22 1180 Archivo adjunto al reporte 2117 +489 2025-10-18 06:19:24.948+00 2025-10-18 06:09:37.183299+00 f t 200101010008120007ABD.JPG uploads/200101010008120007ABD.JPG 2117 22 1180 Archivo adjunto al reporte 2117 +490 2025-10-18 06:19:25.363+00 2025-10-18 06:09:37.597517+00 f t 200101010008180008ABD.JPG uploads/200101010008180008ABD.JPG 2117 22 1180 Archivo adjunto al reporte 2117 +491 2025-10-18 06:19:25.77+00 2025-10-18 06:09:37.98642+00 f t 200101010009290011ABD.JPG uploads/200101010009290011ABD.JPG 2117 22 1180 Archivo adjunto al reporte 2117 +492 2025-10-18 06:19:26.155+00 2025-10-18 06:09:38.396931+00 f t 200101010014350012ABD.JPG uploads/200101010014350012ABD.JPG 2117 22 1180 Archivo adjunto al reporte 2117 +493 2025-10-18 06:19:26.575+00 2025-10-18 06:09:38.792343+00 f t 200101010016260014ABD.JPG uploads/200101010016260014ABD.JPG 2117 22 1180 Archivo adjunto al reporte 2117 +494 2025-10-18 06:19:26.967+00 2025-10-18 06:09:39.211027+00 f t 200101010017260015ABD.JPG uploads/200101010017260015ABD.JPG 2117 22 1180 Archivo adjunto al reporte 2117 +495 2025-10-18 06:19:27.384+00 2025-10-18 06:09:39.696453+00 f t eco BILO PUINSY AMAR OCT 25.pdf uploads/eco_BILO_PUINSY_AMAR_OCT_25.pdf 2117 22 1180 Archivo adjunto al reporte 2117 +496 2025-10-18 06:33:16.535+00 2025-10-18 06:23:29.12594+00 f t 200101010002540001ABD.JPG uploads/200101010002540001ABD.JPG 2118 22 1180 Archivo adjunto al reporte 2118 +497 2025-10-18 06:33:17.472+00 2025-10-18 06:23:29.96082+00 f t 200101010003050002ABD.JPG uploads/200101010003050002ABD.JPG 2118 22 1180 Archivo adjunto al reporte 2118 +498 2025-10-18 06:33:18.221+00 2025-10-18 06:23:31.204489+00 f t 200101010003370003ABD.JPG uploads/200101010003370003ABD.JPG 2118 22 1180 Archivo adjunto al reporte 2118 +499 2025-10-18 06:33:19.59+00 2025-10-18 06:23:32.916723+00 f t 200101010004120004ABD.JPG uploads/200101010004120004ABD.JPG 2118 22 1180 Archivo adjunto al reporte 2118 +500 2025-10-18 06:33:21.169+00 2025-10-18 06:23:34.094088+00 f t 200101010004440005ABD.JPG uploads/200101010004440005ABD.JPG 2118 22 1180 Archivo adjunto al reporte 2118 +501 2025-10-18 06:33:22.343+00 2025-10-18 06:23:35.179701+00 f t 200101010004530006ABD.JPG uploads/200101010004530006ABD.JPG 2118 22 1180 Archivo adjunto al reporte 2118 +502 2025-10-18 06:33:23.435+00 2025-10-18 06:23:36.193115+00 f t 200101010007500008ABD.JPG uploads/200101010007500008ABD.JPG 2118 22 1180 Archivo adjunto al reporte 2118 +503 2025-10-18 06:33:24.445+00 2025-10-18 06:23:37.061705+00 f t 200101010009200009ABD.JPG uploads/200101010009200009ABD.JPG 2118 22 1180 Archivo adjunto al reporte 2118 +504 2025-10-18 06:33:25.326+00 2025-10-18 06:23:37.993622+00 f t 200101010010230011ABD.JPG uploads/200101010010230011ABD.JPG 2118 22 1180 Archivo adjunto al reporte 2118 +505 2025-10-18 06:33:26.231+00 2025-10-18 06:23:39.138869+00 f t eco 2 garcia pancha amar oct 25.pdf uploads/eco_2_garcia_pancha__amar_oct_25.pdf 2118 22 1180 Archivo adjunto al reporte 2118 +506 2025-10-18 21:17:24.596818+00 2025-10-18 21:17:24.596832+00 f t V1360013.pdf uploads/V1360013.pdf 2930 21 1208 +507 2025-10-18 21:17:28.784299+00 2025-10-18 21:17:28.784309+00 f t V1360013.pdf uploads/V1360013_Fj7akiU.pdf 2930 21 1208 +508 2025-10-19 04:28:16.528+00 2025-10-19 04:18:28.460685+00 f t 200101010005060001ABD.JPG uploads/200101010005060001ABD.JPG 2119 22 1180 Archivo adjunto al reporte 2119 +509 2025-10-19 04:28:17.104+00 2025-10-19 04:18:28.795672+00 f t 200101010005470002ABD.JPG uploads/200101010005470002ABD.JPG 2119 22 1180 Archivo adjunto al reporte 2119 +510 2025-10-19 04:28:17.429+00 2025-10-19 04:18:29.103322+00 f t 200101010006500003ABD.JPG uploads/200101010006500003ABD.JPG 2119 22 1180 Archivo adjunto al reporte 2119 +511 2025-10-19 04:28:17.743+00 2025-10-19 04:18:29.430227+00 f t 200101010007300004ABD.JPG uploads/200101010007300004ABD.JPG 2119 22 1180 Archivo adjunto al reporte 2119 +512 2025-10-19 04:28:18.064+00 2025-10-19 04:18:29.757174+00 f t 200101010010100005ABD.JPG uploads/200101010010100005ABD.JPG 2119 22 1180 Archivo adjunto al reporte 2119 +513 2025-10-19 04:28:18.393+00 2025-10-19 04:18:30.086751+00 f t 200101010013320006ABD.JPG uploads/200101010013320006ABD.JPG 2119 22 1180 Archivo adjunto al reporte 2119 +514 2025-10-19 04:28:18.726+00 2025-10-19 04:18:30.418449+00 f t 200101010015070007ABD.JPG uploads/200101010015070007ABD.JPG 2119 22 1180 Archivo adjunto al reporte 2119 +515 2025-10-19 04:28:19.052+00 2025-10-19 04:18:30.738562+00 f t 200101010016420009ABD.JPG uploads/200101010016420009ABD.JPG 2119 22 1180 Archivo adjunto al reporte 2119 +516 2025-10-19 04:28:19.375+00 2025-10-19 04:18:31.281969+00 f t eco drivet nina amar oct 25.pdf uploads/eco_drivet_nina_amar_oct_25.pdf 2119 22 1180 Archivo adjunto al reporte 2119 +517 2025-10-20 14:11:07.344235+00 2025-10-20 14:11:07.344243+00 f t V1360009.pdf uploads/V1360009.pdf 2122 22 1583 Parcial +518 2025-10-20 17:34:37.447528+00 2025-10-20 17:34:37.44754+00 f t V1360017 (1).pdf uploads/V1360017_1.pdf 2124 22 1583 +519 2025-10-21 13:56:45.538354+00 2025-10-21 13:56:45.538369+00 f t eco momesso monono amar oct 25.pdf uploads/eco__momesso_monono_amar_oct_25.pdf 2139 22 1208 +520 2025-10-22 12:29:11.963395+00 2025-10-22 12:29:11.963404+00 f t V1360080.pdf uploads/V1360080.pdf 2144 22 1208 +524 2025-10-24 14:34:18.531252+00 2025-10-24 14:34:18.531261+00 f t V1359973.pdf uploads/V1359973.pdf 2154 22 1583 +525 2025-10-24 18:12:41.761938+00 2025-10-24 18:12:41.761947+00 f t V1359903 (1).pdf uploads/V1359903_1.pdf 2158 22 1583 +526 2025-10-24 19:52:40.798775+00 2025-10-24 19:52:40.798785+00 f t V1359231.pdf uploads/V1359231.pdf 2160 22 1208 +527 2025-10-25 19:23:21.187852+00 2025-10-25 19:23:21.187864+00 f t V1359242.pdf uploads/V1359242.pdf 2170 22 1208 +528 2025-10-26 04:48:56.02+00 2025-10-26 04:39:02.178337+00 f t 200101010006500003VAS.JPG uploads/200101010006500003VAS.JPG 2175 22 1180 Archivo adjunto al reporte 2175 +529 2025-10-26 04:48:56.632+00 2025-10-26 04:39:02.521658+00 f t 200101010007310004VAS.JPG uploads/200101010007310004VAS.JPG 2175 22 1180 Archivo adjunto al reporte 2175 +530 2025-10-26 04:48:56.965+00 2025-10-26 04:39:02.872582+00 f t 200101010014320004VAS.JPG uploads/200101010014320004VAS.JPG 2175 22 1180 Archivo adjunto al reporte 2175 +531 2025-10-26 04:48:57.316+00 2025-10-26 04:39:03.210559+00 f t 200101010019480005VAS.JPG uploads/200101010019480005VAS.JPG 2175 22 1180 Archivo adjunto al reporte 2175 +532 2025-10-26 04:48:57.653+00 2025-10-26 04:39:03.551018+00 f t 200101010022430006VAS.JPG uploads/200101010022430006VAS.JPG 2175 22 1180 Archivo adjunto al reporte 2175 +533 2025-10-26 04:48:57.995+00 2025-10-26 04:39:03.889108+00 f t 200101010029010007VAS.JPG uploads/200101010029010007VAS.JPG 2175 22 1180 Archivo adjunto al reporte 2175 +534 2025-10-26 04:48:58.331+00 2025-10-26 04:39:04.222812+00 f t 200101010029330008VAS.JPG uploads/200101010029330008VAS.JPG 2175 22 1180 Archivo adjunto al reporte 2175 +535 2025-10-26 04:48:58.667+00 2025-10-26 04:39:04.744181+00 f t eco ocular zalazar darcy amar oct 25.pdf uploads/eco_ocular_zalazar_darcy_amar_oct_25.pdf 2175 22 1180 Archivo adjunto al reporte 2175 +536 2025-10-27 12:11:37.616897+00 2025-10-27 12:11:37.616905+00 f t V1360832.pdf uploads/V1360832.pdf 2184 22 1583 +537 2025-10-27 12:18:08.401553+00 2025-10-27 12:18:08.401561+00 f t V1360855.pdf uploads/V1360855.pdf 2185 22 1583 +538 2025-10-27 12:37:07.123494+00 2025-10-27 12:37:07.123502+00 f t V1360836.pdf uploads/V1360836.pdf 2186 22 1583 +539 2025-10-28 12:26:55.171091+00 2025-10-28 12:26:55.171105+00 f t IMG_20251028_092357.jpg uploads/IMG_20251028_092357.jpg 2193 22 1071 Analisis perfil gral sangre +540 2025-10-28 12:26:55.636959+00 2025-10-28 12:26:55.636972+00 f t IMG_20251028_092449.jpg uploads/IMG_20251028_092449.jpg 2193 22 1071 Analisis perfil gral sangre +541 2025-10-28 12:26:55.734452+00 2025-10-28 12:26:55.734461+00 f t IMG_20251028_092532.jpg uploads/IMG_20251028_092532.jpg 2193 22 1071 Analisis perfil gral sangre +542 2025-10-28 14:06:27.917613+00 2025-10-28 14:06:27.91762+00 f t V1360073.pdf uploads/V1360073.pdf 2194 22 1583 +543 2025-10-28 15:30:04.059631+00 2025-10-28 15:30:04.059649+00 f t V1360874.pdf uploads/V1360874.pdf 2195 22 1208 +544 2025-10-28 15:30:30.221254+00 2025-10-28 15:30:30.221262+00 f t V1360875.pdf uploads/V1360875.pdf 2196 22 1208 +545 2025-10-28 16:31:59.533347+00 2025-10-28 16:31:59.533358+00 f t V1360894.pdf uploads/V1360894.pdf 2197 22 1208 +546 2025-10-28 16:32:02.629513+00 2025-10-28 16:32:02.629526+00 f t V1360894.pdf uploads/V1360894_KFnq1mB.pdf 2197 22 1208 +547 2025-10-29 02:29:35.311+00 2025-10-29 02:19:39.273256+00 f t 200101010002480001ABD.JPG uploads/200101010002480001ABD.JPG 2206 22 1180 Archivo adjunto al reporte 2206 +548 2025-10-29 02:29:36+00 2025-10-29 02:19:39.638681+00 f t 200101010003160002ABD.JPG uploads/200101010003160002ABD_KjRxDee.JPG 2206 22 1180 Archivo adjunto al reporte 2206 +549 2025-10-29 02:29:36.409+00 2025-10-29 02:19:40.059965+00 f t 200101010004280003ABD.JPG uploads/200101010004280003ABD.JPG 2206 22 1180 Archivo adjunto al reporte 2206 +550 2025-10-29 02:29:36.819+00 2025-10-29 02:19:40.470898+00 f t 200101010005040004ABD.JPG uploads/200101010005040004ABD.JPG 2206 22 1180 Archivo adjunto al reporte 2206 +551 2025-10-29 02:29:37.233+00 2025-10-29 02:19:40.873499+00 f t 200101010005380005ABD.JPG uploads/200101010005380005ABD.JPG 2206 22 1180 Archivo adjunto al reporte 2206 +552 2025-10-29 02:29:37.563+00 2025-10-29 02:19:41.208579+00 f t 200101010006300006ABD.JPG uploads/200101010006300006ABD.JPG 2206 22 1180 Archivo adjunto al reporte 2206 +553 2025-10-29 02:29:37.896+00 2025-10-29 02:19:41.549855+00 f t 200101010006430007ABD.JPG uploads/200101010006430007ABD.JPG 2206 22 1180 Archivo adjunto al reporte 2206 +554 2025-10-29 02:29:38.243+00 2025-10-29 02:19:41.89169+00 f t 200101010007200008ABD.JPG uploads/200101010007200008ABD.JPG 2206 22 1180 Archivo adjunto al reporte 2206 +555 2025-10-29 02:29:38.662+00 2025-10-29 02:19:42.307777+00 f t 200101010008130009ABD.JPG uploads/200101010008130009ABD.JPG 2206 22 1180 Archivo adjunto al reporte 2206 +556 2025-10-29 02:29:39.072+00 2025-10-29 02:19:42.721102+00 f t 200101010008460010ABD.JPG uploads/200101010008460010ABD.JPG 2206 22 1180 Archivo adjunto al reporte 2206 +557 2025-10-29 02:29:39.437+00 2025-10-29 02:19:43.090743+00 f t 200101010010150012ABD.JPG uploads/200101010010150012ABD.JPG 2206 22 1180 Archivo adjunto al reporte 2206 +558 2025-10-29 02:29:39.789+00 2025-10-29 02:19:43.662736+00 f t eco mendoza mia amar oct 25.pdf uploads/eco_mendoza_mia_amar_oct_25.pdf 2206 22 1180 Archivo adjunto al reporte 2206 +559 2025-10-29 22:48:46.921583+00 2025-10-29 22:48:46.921593+00 f t V1361038.pdf uploads/V1361038.pdf 2209 22 1583 +560 2025-10-31 03:01:38.861+00 2025-10-31 03:01:45.280167+00 f t 200101010004100002ABD.JPG uploads/200101010004100002ABD.JPG 2218 22 1180 Archivo adjunto al reporte 2218 +561 2025-10-31 03:01:39.471+00 2025-10-31 03:01:45.619177+00 f t 200101010004280003ABD.JPG uploads/200101010004280003ABD_G8PzurK.JPG 2218 22 1180 Archivo adjunto al reporte 2218 +562 2025-10-31 03:01:39.804+00 2025-10-31 03:01:45.935174+00 f t 200101010005340004ABD.JPG uploads/200101010005340004ABD.JPG 2218 22 1180 Archivo adjunto al reporte 2218 +563 2025-10-31 03:01:40.117+00 2025-10-31 03:01:46.240137+00 f t 200101010006350006ABD.JPG uploads/200101010006350006ABD.JPG 2218 22 1180 Archivo adjunto al reporte 2218 +564 2025-10-31 03:01:40.423+00 2025-10-31 03:01:46.553187+00 f t 200101010006500007ABD.JPG uploads/200101010006500007ABD.JPG 2218 22 1180 Archivo adjunto al reporte 2218 +565 2025-10-31 03:01:40.738+00 2025-10-31 03:01:46.88697+00 f t 200101010007210008ABD.JPG uploads/200101010007210008ABD.JPG 2218 22 1180 Archivo adjunto al reporte 2218 +566 2025-10-31 03:01:41.074+00 2025-10-31 03:01:47.237078+00 f t 200101010007590009ABD.JPG uploads/200101010007590009ABD.JPG 2218 22 1180 Archivo adjunto al reporte 2218 +567 2025-10-31 03:01:41.42+00 2025-10-31 03:01:47.568333+00 f t 200101010009000011ABD.JPG uploads/200101010009000011ABD.JPG 2218 22 1180 Archivo adjunto al reporte 2218 +568 2025-10-31 03:01:41.752+00 2025-10-31 03:01:47.897316+00 f t 200101010009200012ABD.JPG uploads/200101010009200012ABD.JPG 2218 22 1180 Archivo adjunto al reporte 2218 +569 2025-10-31 03:01:42.082+00 2025-10-31 03:01:48.448609+00 f t eco ardemagni perla amar oct 25.pdf uploads/eco__ardemagni_perla_amar_oct_25.pdf 2218 22 1180 Archivo adjunto al reporte 2218 +570 2025-10-31 12:35:55.368693+00 2025-10-31 12:35:55.368701+00 f t V1361046.pdf uploads/V1361046.pdf 2219 22 1583 +571 2025-10-31 15:42:41.456185+00 2025-10-31 15:42:41.456193+00 f t Hatha Minici.docx.pdf uploads/Hatha_Minici.docx.pdf 2224 22 1367 +572 2025-10-31 15:42:43.313605+00 2025-10-31 15:42:43.313613+00 f t Hatha Minici.docx.pdf uploads/Hatha_Minici.docx_tzUFt3X.pdf 2224 22 1367 +573 2025-10-31 19:47:20.396493+00 2025-10-31 19:47:20.396501+00 f t VD304.pdf uploads/VD304.pdf 2227 22 1208 +574 2025-11-01 17:53:56.692644+00 2025-11-01 17:53:56.692654+00 f t V1361074.pdf uploads/V1361074.pdf 2225 22 1208 +575 2025-11-01 17:58:24.893032+00 2025-11-01 17:58:24.893041+00 f t V1361078.pdf uploads/V1361078.pdf 2248 22 1208 +576 2025-11-01 18:00:25.261181+00 2025-11-01 18:00:25.261191+00 f t V1361079.pdf uploads/V1361079.pdf 2249 22 1208 +577 2025-11-03 17:11:30.236074+00 2025-11-03 17:11:30.236083+00 f t V1361064.pdf uploads/V1361064.pdf 2280 22 1583 +578 2025-11-04 03:27:25.091+00 2025-11-04 03:27:28.42119+00 f t 200101010004050001ABD.JPG uploads/200101010004050001ABD.JPG 2283 22 1180 Archivo adjunto al reporte 2283 +579 2025-11-04 03:27:25.682+00 2025-11-04 03:27:28.744148+00 f t 200101010005270003ABD.JPG uploads/200101010005270003ABD.JPG 2283 22 1180 Archivo adjunto al reporte 2283 +580 2025-11-04 03:27:26.004+00 2025-11-04 03:27:29.106921+00 f t 200101010005560004ABD.JPG uploads/200101010005560004ABD.JPG 2283 22 1180 Archivo adjunto al reporte 2283 +581 2025-11-04 03:27:26.368+00 2025-11-04 03:27:29.429997+00 f t 200101010006170005ABD.JPG uploads/200101010006170005ABD.JPG 2283 22 1180 Archivo adjunto al reporte 2283 +582 2025-11-04 03:27:26.694+00 2025-11-04 03:27:29.782719+00 f t 200101010006430006ABD.JPG uploads/200101010006430006ABD.JPG 2283 22 1180 Archivo adjunto al reporte 2283 +583 2025-11-04 03:27:27.043+00 2025-11-04 03:27:30.126412+00 f t 200101010007370007ABD.JPG uploads/200101010007370007ABD.JPG 2283 22 1180 Archivo adjunto al reporte 2283 +584 2025-11-04 03:27:27.391+00 2025-11-04 03:27:30.461721+00 f t 200101010007510008ABD.JPG uploads/200101010007510008ABD.JPG 2283 22 1180 Archivo adjunto al reporte 2283 +585 2025-11-04 03:27:27.723+00 2025-11-04 03:27:30.789104+00 f t 200101010009050009ABD.JPG uploads/200101010009050009ABD.JPG 2283 22 1180 Archivo adjunto al reporte 2283 +586 2025-11-04 03:27:28.059+00 2025-11-04 03:27:31.369837+00 f t eco lariguet melania amar nov 25.pdf uploads/eco_lariguet_melania_amar_nov_25.pdf 2283 22 1180 Archivo adjunto al reporte 2283 +587 2025-11-05 02:56:58.273+00 2025-11-05 02:57:01.095713+00 f t 200101010003070001ABD.JPG uploads/200101010003070001ABD.JPG 2292 22 1180 Archivo adjunto al reporte 2292 +588 2025-11-05 02:56:58.987+00 2025-11-05 02:57:01.48257+00 f t 200101010003480002ABD.JPG uploads/200101010003480002ABD.JPG 2292 22 1180 Archivo adjunto al reporte 2292 +589 2025-11-05 02:56:59.397+00 2025-11-05 02:57:01.897664+00 f t 200101010004420003ABD.JPG uploads/200101010004420003ABD.JPG 2292 22 1180 Archivo adjunto al reporte 2292 +590 2025-11-05 02:56:59.806+00 2025-11-05 02:57:02.298622+00 f t 200101010004560004ABD.JPG uploads/200101010004560004ABD.JPG 2292 22 1180 Archivo adjunto al reporte 2292 +591 2025-11-05 02:57:00.155+00 2025-11-05 02:57:02.655227+00 f t 200101010007050006ABD.JPG uploads/200101010007050006ABD.JPG 2292 22 1180 Archivo adjunto al reporte 2292 +592 2025-11-05 02:57:00.489+00 2025-11-05 02:57:02.978514+00 f t 200101010007440007ABD.JPG uploads/200101010007440007ABD.JPG 2292 22 1180 Archivo adjunto al reporte 2292 +593 2025-11-05 02:57:00.831+00 2025-11-05 02:57:03.326825+00 f t 200101010008140008ABD.JPG uploads/200101010008140008ABD.JPG 2292 22 1180 Archivo adjunto al reporte 2292 +594 2025-11-05 02:57:01.241+00 2025-11-05 02:57:03.733644+00 f t 200101010008490009ABD.JPG uploads/200101010008490009ABD.JPG 2292 22 1180 Archivo adjunto al reporte 2292 +595 2025-11-05 02:57:01.649+00 2025-11-05 02:57:04.36748+00 f t eco eugui ona amar nov 25.pdf uploads/eco_eugui_ona_amar_nov_25.pdf 2292 22 1180 Archivo adjunto al reporte 2292 +596 2025-11-05 04:40:54.538+00 2025-11-05 04:40:57.017002+00 f t 200101010002150001ABD.JPG uploads/200101010002150001ABD.JPG 2293 22 1180 Archivo adjunto al reporte 2293 +597 2025-11-05 04:40:54.945+00 2025-11-05 04:40:57.394378+00 f t 200101010002330002ABD.JPG uploads/200101010002330002ABD.JPG 2293 22 1180 Archivo adjunto al reporte 2293 +598 2025-11-05 04:40:55.357+00 2025-11-05 04:40:57.797177+00 f t 200101010003140004ABD.JPG uploads/200101010003140004ABD.JPG 2293 22 1180 Archivo adjunto al reporte 2293 +599 2025-11-05 04:40:55.764+00 2025-11-05 04:40:58.215392+00 f t 200101010003360005ABD.JPG uploads/200101010003360005ABD.JPG 2293 22 1180 Archivo adjunto al reporte 2293 +600 2025-11-05 04:40:56.119+00 2025-11-05 04:40:58.568413+00 f t 200101010004210007ABD.JPG uploads/200101010004210007ABD.JPG 2293 22 1180 Archivo adjunto al reporte 2293 +601 2025-11-05 04:40:56.481+00 2025-11-05 04:40:58.917617+00 f t 200101010004280008ABD.JPG uploads/200101010004280008ABD.JPG 2293 22 1180 Archivo adjunto al reporte 2293 +602 2025-11-05 04:40:56.891+00 2025-11-05 04:40:59.342882+00 f t 200101010004480009ABD.JPG uploads/200101010004480009ABD.JPG 2293 22 1180 Archivo adjunto al reporte 2293 +603 2025-11-05 04:40:57.303+00 2025-11-05 04:40:59.735614+00 f t 200101010005010010ABD.JPG uploads/200101010005010010ABD.JPG 2293 22 1180 Archivo adjunto al reporte 2293 +604 2025-11-05 04:40:57.703+00 2025-11-05 04:41:00.141967+00 f t 200101010005420012ABD.JPG uploads/200101010005420012ABD.JPG 2293 22 1180 Archivo adjunto al reporte 2293 +605 2025-11-05 04:40:58.12+00 2025-11-05 04:41:00.562841+00 f t 200101010006100013ABD.JPG uploads/200101010006100013ABD.JPG 2293 22 1180 Archivo adjunto al reporte 2293 +606 2025-11-05 04:40:58.529+00 2025-11-05 04:41:01.101691+00 f t eco cestari cielo amar nov 25.pdf uploads/eco_cestari_cielo_amar_nov_25.pdf 2293 22 1180 Archivo adjunto al reporte 2293 +607 2025-11-05 05:33:55.831+00 2025-11-05 05:33:58.528483+00 f t 200101010008040001ABD.JPG uploads/200101010008040001ABD.JPG 2294 22 1180 Archivo adjunto al reporte 2294 +608 2025-11-05 05:33:56.519+00 2025-11-05 05:33:58.928573+00 f t 200101010008530002ABD.JPG uploads/200101010008530002ABD.JPG 2294 22 1180 Archivo adjunto al reporte 2294 +609 2025-11-05 05:33:56.927+00 2025-11-05 05:33:59.332329+00 f t 200101010010540005ABD.JPG uploads/200101010010540005ABD.JPG 2294 22 1180 Archivo adjunto al reporte 2294 +610 2025-11-05 05:33:57.336+00 2025-11-05 05:33:59.752484+00 f t 200101010011540006ABD.JPG uploads/200101010011540006ABD.JPG 2294 22 1180 Archivo adjunto al reporte 2294 +611 2025-11-05 05:33:57.745+00 2025-11-05 05:34:00.146252+00 f t 200101010013490007ABD.JPG uploads/200101010013490007ABD.JPG 2294 22 1180 Archivo adjunto al reporte 2294 +612 2025-11-05 05:33:58.156+00 2025-11-05 05:34:00.561364+00 f t 200101010014320008ABD.JPG uploads/200101010014320008ABD.JPG 2294 22 1180 Archivo adjunto al reporte 2294 +613 2025-11-05 05:33:58.564+00 2025-11-05 05:34:00.965401+00 f t 200101010016090009ABD.JPG uploads/200101010016090009ABD.JPG 2294 22 1180 Archivo adjunto al reporte 2294 +614 2025-11-05 05:33:58.974+00 2025-11-05 05:34:01.372416+00 f t 200101010018510012ABD.JPG uploads/200101010018510012ABD.JPG 2294 22 1180 Archivo adjunto al reporte 2294 +615 2025-11-05 05:33:59.388+00 2025-11-05 05:34:01.963061+00 f t eco romero mael amar nov 25.pdf uploads/eco_romero_mael_amar_nov_25.pdf 2294 22 1180 Archivo adjunto al reporte 2294 +616 2025-11-07 00:33:09.568183+00 2025-11-07 00:33:09.568192+00 f t Tina Briceño.docx.pdf uploads/Tina_Briceño.docx.pdf 2301 22 1367 +617 2025-11-07 06:54:27.288+00 2025-11-07 06:54:29.013856+00 f t 200101010004380001ABD.JPG uploads/200101010004380001ABD.JPG 2302 22 1180 Archivo adjunto al reporte 2302 +618 2025-11-07 06:54:27.869+00 2025-11-07 06:54:29.348741+00 f t 200101010006270002ABD.JPG uploads/200101010006270002ABD.JPG 2302 22 1180 Archivo adjunto al reporte 2302 +619 2025-11-07 06:54:28.202+00 2025-11-07 06:54:29.679675+00 f t 200101010007190004ABD.JPG uploads/200101010007190004ABD.JPG 2302 22 1180 Archivo adjunto al reporte 2302 +620 2025-11-07 06:54:28.533+00 2025-11-07 06:54:30.005661+00 f t 200101010007540005ABD.JPG uploads/200101010007540005ABD.JPG 2302 22 1180 Archivo adjunto al reporte 2302 +621 2025-11-07 06:54:28.86+00 2025-11-07 06:54:30.336656+00 f t 200101010008230006ABD.JPG uploads/200101010008230006ABD.JPG 2302 22 1180 Archivo adjunto al reporte 2302 +622 2025-11-07 06:54:29.19+00 2025-11-07 06:54:30.669342+00 f t 200101010009050008ABD.JPG uploads/200101010009050008ABD_gfFpWDK.JPG 2302 22 1180 Archivo adjunto al reporte 2302 +623 2025-11-07 06:54:29.523+00 2025-11-07 06:54:30.993257+00 f t 200101010011560011ABD.JPG uploads/200101010011560011ABD.JPG 2302 22 1180 Archivo adjunto al reporte 2302 +624 2025-11-07 06:54:29.846+00 2025-11-07 06:54:31.323193+00 f t 200101010012160012ABD.JPG uploads/200101010012160012ABD.JPG 2302 22 1180 Archivo adjunto al reporte 2302 +625 2025-11-07 06:54:30.176+00 2025-11-07 06:54:31.651758+00 f t 200101010012340013ABD.JPG uploads/200101010012340013ABD.JPG 2302 22 1180 Archivo adjunto al reporte 2302 +626 2025-11-07 06:54:30.505+00 2025-11-07 06:54:31.968922+00 f t 200101010013450014ABD.JPG uploads/200101010013450014ABD.JPG 2302 22 1180 Archivo adjunto al reporte 2302 +627 2025-11-07 06:54:30.822+00 2025-11-07 06:54:32.289931+00 f t 200101010014450015ABD.JPG uploads/200101010014450015ABD.JPG 2302 22 1180 Archivo adjunto al reporte 2302 +628 2025-11-07 06:54:31.142+00 2025-11-07 06:54:32.621114+00 f t 200101010015330016ABD.JPG uploads/200101010015330016ABD.JPG 2302 22 1180 Archivo adjunto al reporte 2302 +629 2025-11-07 06:54:31.475+00 2025-11-07 06:54:33.066734+00 f t eco de cruz rosi amar nov 25.pdf uploads/eco__de_cruz_rosi_amar_nov_25.pdf 2302 22 1180 Archivo adjunto al reporte 2302 +630 2025-11-07 08:07:17.394+00 2025-11-07 08:07:18.839295+00 f t 200101010003040001ABD.JPG uploads/200101010003040001ABD.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +631 2025-11-07 08:07:17.737+00 2025-11-07 08:07:19.185781+00 f t 200101010003340002ABD.JPG uploads/200101010003340002ABD.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +632 2025-11-07 08:07:18.083+00 2025-11-07 08:07:19.523387+00 f t 200101010003450003ABD.JPG uploads/200101010003450003ABD.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +633 2025-11-07 08:07:18.42+00 2025-11-07 08:07:19.854839+00 f t 200101010005050004ABD.JPG uploads/200101010005050004ABD_JiXzRug.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +634 2025-11-07 08:07:18.752+00 2025-11-07 08:07:20.178891+00 f t 200101010005240005ABD.JPG uploads/200101010005240005ABD.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +635 2025-11-07 08:07:19.077+00 2025-11-07 08:07:20.50403+00 f t 200101010005430006ABD.JPG uploads/200101010005430006ABD.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +636 2025-11-07 08:07:19.4+00 2025-11-07 08:07:20.835421+00 f t 200101010006120007ABD.JPG uploads/200101010006120007ABD.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +637 2025-11-07 08:07:19.733+00 2025-11-07 08:07:21.164665+00 f t 200101010006400008ABD.JPG uploads/200101010006400008ABD_vjgeCgD.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +638 2025-11-07 08:07:20.065+00 2025-11-07 08:07:21.498017+00 f t 200101010007260010ABD.JPG uploads/200101010007260010ABD.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +639 2025-11-07 08:07:20.395+00 2025-11-07 08:07:21.830493+00 f t 200101010007550011ABD.JPG uploads/200101010007550011ABD.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +640 2025-11-07 08:07:20.727+00 2025-11-07 08:07:22.159245+00 f t 200101010008440012ABD.JPG uploads/200101010008440012ABD.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +641 2025-11-07 08:07:21.056+00 2025-11-07 08:07:22.500076+00 f t 200101010009360014ABD.JPG uploads/200101010009360014ABD.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +642 2025-11-07 08:07:21.398+00 2025-11-07 08:07:22.837678+00 f t 200101010010470015ABD.JPG uploads/200101010010470015ABD.JPG 2303 22 1180 Archivo adjunto al reporte 2303 +643 2025-11-07 08:07:21.734+00 2025-11-07 08:07:23.285296+00 f t eco fernandez shake amar nov 25.pdf uploads/eco_fernandez_shake_amar__nov_25.pdf 2303 22 1180 Archivo adjunto al reporte 2303 +644 2025-11-07 15:52:52.983301+00 2025-11-07 15:52:52.983312+00 f t V1363211.pdf uploads/V1363211.pdf 3144 21 1583 +645 2025-11-07 16:25:07.333192+00 2025-11-07 16:25:07.333201+00 f t WhatsApp Image 2025-11-07 at 13.21.19.jpeg uploads/WhatsApp_Image_2025-11-07_at_13.21.19.jpeg 2306 22 148 +646 2025-11-08 04:45:57.849+00 2025-11-08 04:45:58.983907+00 f t 200101010004500001ABD.JPG uploads/200101010004500001ABD.JPG 2313 22 1180 Archivo adjunto al reporte 2313 +647 2025-11-08 04:45:58.46+00 2025-11-08 04:45:59.334667+00 f t 200101010005230002ABD.JPG uploads/200101010005230002ABD.JPG 2313 22 1180 Archivo adjunto al reporte 2313 +648 2025-11-08 04:45:58.809+00 2025-11-08 04:45:59.677812+00 f t 200101010006060004ABD.JPG uploads/200101010006060004ABD.JPG 2313 22 1180 Archivo adjunto al reporte 2313 +649 2025-11-08 04:45:59.155+00 2025-11-08 04:46:00.022206+00 f t 200101010007040005SMP.JPG uploads/200101010007040005SMP.JPG 2313 22 1180 Archivo adjunto al reporte 2313 +650 2025-11-08 04:45:59.498+00 2025-11-08 04:46:00.374113+00 f t 200101010010410006ABD.JPG uploads/200101010010410006ABD.JPG 2313 22 1180 Archivo adjunto al reporte 2313 +651 2025-11-08 04:45:59.848+00 2025-11-08 04:46:00.719636+00 f t 200101010011250007ABD.JPG uploads/200101010011250007ABD.JPG 2313 22 1180 Archivo adjunto al reporte 2313 +652 2025-11-08 04:46:00.192+00 2025-11-08 04:46:01.059076+00 f t 200101010011420008ABD.JPG uploads/200101010011420008ABD.JPG 2313 22 1180 Archivo adjunto al reporte 2313 +653 2025-11-08 04:46:00.534+00 2025-11-08 04:46:01.405677+00 f t 200101010012170009ABD.JPG uploads/200101010012170009ABD.JPG 2313 22 1180 Archivo adjunto al reporte 2313 +654 2025-11-08 04:46:00.88+00 2025-11-08 04:46:01.754344+00 f t 200101010012440010ABD.JPG uploads/200101010012440010ABD.JPG 2313 22 1180 Archivo adjunto al reporte 2313 +655 2025-11-08 04:46:01.231+00 2025-11-08 04:46:02.106299+00 f t 200101010013080011ABD.JPG uploads/200101010013080011ABD.JPG 2313 22 1180 Archivo adjunto al reporte 2313 +656 2025-11-08 04:46:01.581+00 2025-11-08 04:46:02.55766+00 f t eco mendes estrella amar nov 25.pdf uploads/eco_mendes__estrella_amar_nov_25.pdf 2313 22 1180 Archivo adjunto al reporte 2313 +657 2025-11-08 15:41:07.940922+00 2025-11-08 15:41:07.940931+00 f t V1363265.pdf uploads/V1363265.pdf 2316 22 1208 +658 2025-11-08 15:46:24.751294+00 2025-11-08 15:46:24.751306+00 f t V1363263.pdf uploads/V1363263.pdf 2317 22 1208 +659 2025-11-08 15:51:22.941857+00 2025-11-08 15:51:22.94187+00 f t V1363264.pdf uploads/V1363264.pdf 2318 22 1208 +660 2025-11-08 15:52:42.756572+00 2025-11-08 15:52:42.756582+00 f t V1363267.pdf uploads/V1363267.pdf 2319 22 1208 +661 2025-11-08 15:59:14.676019+00 2025-11-08 15:59:14.676027+00 f t V1363266.pdf uploads/V1363266.pdf 2320 22 1208 +662 2025-11-10 04:38:28.301+00 2025-11-10 04:38:27.990436+00 f t 200101010004530001ABD.JPG uploads/200101010004530001ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +663 2025-11-10 04:38:28.893+00 2025-11-10 04:38:28.319072+00 f t 200101010005370002ABD.JPG uploads/200101010005370002ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +664 2025-11-10 04:38:29.219+00 2025-11-10 04:38:28.66215+00 f t 200101010006080003ABD.JPG uploads/200101010006080003ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +665 2025-11-10 04:38:29.569+00 2025-11-10 04:38:28.995764+00 f t 200101010006210004ABD.JPG uploads/200101010006210004ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +666 2025-11-10 04:38:29.896+00 2025-11-10 04:38:29.329125+00 f t 200101010007480006ABD.JPG uploads/200101010007480006ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +667 2025-11-10 04:38:30.228+00 2025-11-10 04:38:29.652243+00 f t 200101010008290007ABD.JPG uploads/200101010008290007ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +668 2025-11-10 04:38:30.552+00 2025-11-10 04:38:29.977196+00 f t 200101010009370008ABD.JPG uploads/200101010009370008ABD_gu1vIZV.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +669 2025-11-10 04:38:30.878+00 2025-11-10 04:38:30.311988+00 f t 200101010010050009ABD.JPG uploads/200101010010050009ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +670 2025-11-10 04:38:31.212+00 2025-11-10 04:38:30.634352+00 f t 200101010011020010ABD.JPG uploads/200101010011020010ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +671 2025-11-10 04:38:31.532+00 2025-11-10 04:38:30.966342+00 f t 200101010012320012ABD.JPG uploads/200101010012320012ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +672 2025-11-10 04:38:31.867+00 2025-11-10 04:38:31.297773+00 f t 200101010014360015ABD.JPG uploads/200101010014360015ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +673 2025-11-10 04:38:32.198+00 2025-11-10 04:38:31.622823+00 f t 200101010015450016ABD.JPG uploads/200101010015450016ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +674 2025-11-10 04:38:32.524+00 2025-11-10 04:38:31.954266+00 f t 200101010016180017ABD.JPG uploads/200101010016180017ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +675 2025-11-10 04:38:32.855+00 2025-11-10 04:38:32.283326+00 f t 200101010016530019ABD.JPG uploads/200101010016530019ABD.JPG 2324 22 1180 Archivo adjunto al reporte 2324 +676 2025-11-10 04:38:33.183+00 2025-11-10 04:38:32.732674+00 f t eco pozzi juanfer amar nov 25.pdf uploads/eco_pozzi_juanfer_amar_nov_25.pdf 2324 22 1180 Archivo adjunto al reporte 2324 +677 2025-11-11 04:38:45.963+00 2025-11-11 04:38:45.111692+00 f t 200101010003300001ABD.JPG uploads/200101010003300001ABD.JPG 2325 22 1180 Archivo adjunto al reporte 2325 +678 2025-11-11 04:38:47.449+00 2025-11-11 04:38:46.22243+00 f t 200101010003540002ABD.JPG uploads/200101010003540002ABD.JPG 2325 22 1180 Archivo adjunto al reporte 2325 +679 2025-11-11 04:38:48.133+00 2025-11-11 04:38:46.887894+00 f t 200101010006500003ABD.JPG uploads/200101010006500003ABD_TNwhuzw.JPG 2325 22 1180 Archivo adjunto al reporte 2325 +680 2025-11-11 04:38:48.688+00 2025-11-11 04:38:48.563573+00 f t 200101010007100004ABD.JPG uploads/200101010007100004ABD.JPG 2325 22 1180 Archivo adjunto al reporte 2325 +681 2025-11-11 04:38:50.396+00 2025-11-11 04:38:49.72224+00 f t 200101010008010005ABD.JPG uploads/200101010008010005ABD_e3SSSSd.JPG 2325 22 1180 Archivo adjunto al reporte 2325 +682 2025-11-11 04:38:51.553+00 2025-11-11 04:38:51.182834+00 f t 200101010008360006ABD.JPG uploads/200101010008360006ABD.JPG 2325 22 1180 Archivo adjunto al reporte 2325 +683 2025-11-11 04:38:52.972+00 2025-11-11 04:38:52.303344+00 f t 200101010008470007ABD.JPG uploads/200101010008470007ABD.JPG 2325 22 1180 Archivo adjunto al reporte 2325 +684 2025-11-11 04:38:54.102+00 2025-11-11 04:38:53.237057+00 f t 200101010009180008ABD.JPG uploads/200101010009180008ABD.JPG 2325 22 1180 Archivo adjunto al reporte 2325 +685 2025-11-11 04:38:55.027+00 2025-11-11 04:38:54.892682+00 f t eco palamara mika amar nov 25.pdf uploads/eco_palamara_mika_amar_nov_25.pdf 2325 22 1180 Archivo adjunto al reporte 2325 +686 2025-11-11 14:09:50.130699+00 2025-11-11 14:09:50.130708+00 f t V1363049.pdf uploads/V1363049.pdf 2326 22 1583 +687 2025-11-11 14:11:05.64161+00 2025-11-11 14:11:05.641619+00 f t V1363069.pdf uploads/V1363069.pdf 2327 22 1583 +688 2025-11-11 14:12:42.800485+00 2025-11-11 14:12:42.800494+00 f t V1363284.pdf uploads/V1363284.pdf 2328 22 1583 +689 2025-11-12 17:22:20.338478+00 2025-11-12 17:22:20.338487+00 f t V1363804.pdf uploads/V1363804.pdf 2338 22 1583 +690 2025-11-12 17:25:31.823226+00 2025-11-12 17:25:31.82324+00 f t V1363802.pdf uploads/V1363802.pdf 2339 22 1583 +691 2025-11-12 17:27:43.270443+00 2025-11-12 17:27:43.270456+00 f t V1363803.pdf uploads/V1363803.pdf 2340 22 1583 +692 2025-11-12 17:29:26.392796+00 2025-11-12 17:29:26.392805+00 f t V1363267.pdf uploads/V1363267_bskCxai.pdf 3039 21 1583 +693 2025-11-12 17:29:31.776577+00 2025-11-12 17:29:31.776585+00 t t V1363267.pdf uploads/V1363267_MhVqXVg.pdf 3039 21 1583 +694 2025-11-12 17:31:29.632033+00 2025-11-12 17:31:29.632042+00 f t V1363801.pdf uploads/V1363801.pdf 2341 22 1583 +695 2025-11-13 14:00:24.275879+00 2025-11-13 14:00:24.275891+00 f t V1362983.pdf uploads/V1362983.pdf 3140 21 1208 +696 2025-11-13 14:04:23.486905+00 2025-11-13 14:04:23.486913+00 f t V1363838.pdf uploads/V1363838.pdf 2348 22 1208 +697 2025-11-13 14:49:31.925122+00 2025-11-13 14:49:31.925131+00 f t V1363282.pdf uploads/V1363282.pdf 2349 22 1583 +698 2025-11-14 13:44:19.258355+00 2025-11-14 13:44:19.258364+00 f t V1363068.pdf uploads/V1363068.pdf 2359 22 1583 +699 2025-11-14 17:01:15.451063+00 2025-11-14 17:01:15.451073+00 f t Braco Alfuso.docx.pdf uploads/Braco_Alfuso.docx.pdf 2361 22 1367 +700 2025-11-14 17:58:16.681469+00 2025-11-14 17:58:16.681479+00 f t V1363805.pdf uploads/V1363805.pdf 2362 22 1208 +701 2025-11-14 20:21:57.065701+00 2025-11-14 20:21:57.06571+00 f t V1363855.pdf uploads/V1363855.pdf 2363 22 1208 +702 2025-11-17 15:18:48.382881+00 2025-11-17 15:18:48.382894+00 f t eco borges toquinho amar nov 25.pdf uploads/eco_borges_toquinho_amar_nov_25.pdf 2394 22 1583 +703 2025-11-17 15:18:49.323703+00 2025-11-17 15:18:49.323714+00 f t Eco Borges Toquino Amar nov 2025 Img.pdf uploads/Eco_Borges_Toquino_Amar_nov_2025_Img.pdf 2394 22 1583 +704 2025-11-17 15:23:06.364863+00 2025-11-17 15:23:06.364872+00 f t eco bettendorf ringo amar nov 25.pdf uploads/eco_bettendorf_ringo_amar_nov_25.pdf 2396 22 1583 +705 2025-11-17 15:23:07.283771+00 2025-11-17 15:23:07.283779+00 f t Eco Bettendorf ringo amar nov 25 IMG.pdf uploads/Eco_Bettendorf_ringo_amar_nov_25_IMG.pdf 2396 22 1583 +706 2025-11-17 15:55:58.345133+00 2025-11-17 15:55:58.345143+00 f t Chela Verardo.docx.pdf uploads/Chela_Verardo.docx.pdf 2397 22 1367 +707 2025-11-19 04:06:43.181+00 2025-11-19 04:06:35.615358+00 f t 200101010003450001ABD.JPG uploads/200101010003450001ABD.JPG 2399 22 1180 Archivo adjunto al reporte 2399 +708 2025-11-19 04:06:43.783+00 2025-11-19 04:06:35.956609+00 f t 200101010004240002ABD.JPG uploads/200101010004240002ABD.JPG 2399 22 1180 Archivo adjunto al reporte 2399 +709 2025-11-19 04:06:44.124+00 2025-11-19 04:06:36.274061+00 f t 200101010004460003ABD.JPG uploads/200101010004460003ABD.JPG 2399 22 1180 Archivo adjunto al reporte 2399 +710 2025-11-19 04:06:44.435+00 2025-11-19 04:06:36.610289+00 f t 200101010005050004ABD.JPG uploads/200101010005050004ABD_Q8IRQvm.JPG 2399 22 1180 Archivo adjunto al reporte 2399 +711 2025-11-19 04:06:44.774+00 2025-11-19 04:06:36.935184+00 f t 200101010005580005ABD.JPG uploads/200101010005580005ABD.JPG 2399 22 1180 Archivo adjunto al reporte 2399 +712 2025-11-19 04:06:45.097+00 2025-11-19 04:06:37.262154+00 f t 200101010006520006ABD.JPG uploads/200101010006520006ABD.JPG 2399 22 1180 Archivo adjunto al reporte 2399 +713 2025-11-19 04:06:45.423+00 2025-11-19 04:06:37.587244+00 f t 200101010008300008ABD.JPG uploads/200101010008300008ABD.JPG 2399 22 1180 Archivo adjunto al reporte 2399 +714 2025-11-19 04:06:45.749+00 2025-11-19 04:06:37.912451+00 f t 200101010009080009ABD.JPG uploads/200101010009080009ABD.JPG 2399 22 1180 Archivo adjunto al reporte 2399 +715 2025-11-19 04:06:46.08+00 2025-11-19 04:06:38.471921+00 f t eco esquivel nala desimone nov 25.pdf uploads/eco_esquivel_nala_desimone_nov_25.pdf 2399 22 1180 Archivo adjunto al reporte 2399 +716 2025-11-19 06:35:06.096+00 2025-11-19 06:34:58.455752+00 f t 200101010002360001ABD.JPG uploads/200101010002360001ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +717 2025-11-19 06:35:06.703+00 2025-11-19 06:34:58.78806+00 f t 200101010003060002ABD.JPG uploads/200101010003060002ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +718 2025-11-19 06:35:07.03+00 2025-11-19 06:34:59.119874+00 f t 200101010003430003ABD.JPG uploads/200101010003430003ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +719 2025-11-19 06:35:07.362+00 2025-11-19 06:34:59.456885+00 f t 200101010004150004ABD.JPG uploads/200101010004150004ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +720 2025-11-19 06:35:07.703+00 2025-11-19 06:34:59.786072+00 f t 200101010004580005ABD.JPG uploads/200101010004580005ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +721 2025-11-19 06:35:08.022+00 2025-11-19 06:35:00.122391+00 f t 200101010005070006ABD.JPG uploads/200101010005070006ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +722 2025-11-19 06:35:08.367+00 2025-11-19 06:35:00.467713+00 f t 200101010005460007ABD.JPG uploads/200101010005460007ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +723 2025-11-19 06:35:08.707+00 2025-11-19 06:35:00.803579+00 f t 200101010006310008ABD.JPG uploads/200101010006310008ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +724 2025-11-19 06:35:09.044+00 2025-11-19 06:35:01.152871+00 f t 200101010006410009ABD.JPG uploads/200101010006410009ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +725 2025-11-19 06:35:09.398+00 2025-11-19 06:35:01.508165+00 f t 200101010007320010ABD.JPG uploads/200101010007320010ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +726 2025-11-19 06:35:09.762+00 2025-11-19 06:35:01.92032+00 f t 200101010008170011ABD.JPG uploads/200101010008170011ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +727 2025-11-19 06:35:10.167+00 2025-11-19 06:35:02.293195+00 f t 200101010010170014ABD.JPG uploads/200101010010170014ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +728 2025-11-19 06:35:10.543+00 2025-11-19 06:35:02.671406+00 f t 200101010013010015ABD.JPG uploads/200101010013010015ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +729 2025-11-19 06:35:10.916+00 2025-11-19 06:35:03.02226+00 f t 200101010014140016ABD.JPG uploads/200101010014140016ABD.JPG 2400 22 1180 Archivo adjunto al reporte 2400 +730 2025-11-19 06:35:11.267+00 2025-11-19 06:35:03.560309+00 f t eco musaber mizu amar nov 25.pdf uploads/eco_musaber_mizu_amar_nov_25.pdf 2400 22 1180 Archivo adjunto al reporte 2400 +731 2025-11-19 14:11:17.504497+00 2025-11-19 14:11:17.504506+00 f t VU43224.pdf uploads/VU43224.pdf 2402 22 1583 +732 2025-11-19 14:15:05.067957+00 2025-11-19 14:15:05.067972+00 f t V1364033.pdf uploads/V1364033.pdf 3128 21 1583 +733 2025-11-20 06:11:26.703+00 2025-11-20 06:11:18.228634+00 f t 200101010002390001ABD.JPG uploads/200101010002390001ABD_5dbO4PJ.JPG 2416 22 1180 Archivo adjunto al reporte 2416 +734 2025-11-20 06:11:27.435+00 2025-11-20 06:11:18.641607+00 f t 200101010003070002ABD.JPG uploads/200101010003070002ABD.JPG 2416 22 1180 Archivo adjunto al reporte 2416 +735 2025-11-20 06:11:27.827+00 2025-11-20 06:11:19.031493+00 f t 200101010003310003ABD.JPG uploads/200101010003310003ABD.JPG 2416 22 1180 Archivo adjunto al reporte 2416 +736 2025-11-20 06:11:28.24+00 2025-11-20 06:11:19.43693+00 f t 200101010003570004ABD.JPG uploads/200101010003570004ABD.JPG 2416 22 1180 Archivo adjunto al reporte 2416 +737 2025-11-20 06:11:28.648+00 2025-11-20 06:11:19.838279+00 f t 200101010004250005ABD.JPG uploads/200101010004250005ABD.JPG 2416 22 1180 Archivo adjunto al reporte 2416 +738 2025-11-20 06:11:29.057+00 2025-11-20 06:11:20.252972+00 f t 200101010005160006ABD.JPG uploads/200101010005160006ABD.JPG 2416 22 1180 Archivo adjunto al reporte 2416 +739 2025-11-20 06:11:29.386+00 2025-11-20 06:11:20.578354+00 f t 200101010005310007ABD.JPG uploads/200101010005310007ABD.JPG 2416 22 1180 Archivo adjunto al reporte 2416 +740 2025-11-20 06:11:29.775+00 2025-11-20 06:11:20.971325+00 f t 200101010006030008ABD.JPG uploads/200101010006030008ABD.JPG 2416 22 1180 Archivo adjunto al reporte 2416 +741 2025-11-20 06:11:30.112+00 2025-11-20 06:11:21.304472+00 f t 200101010006310009ABD.JPG uploads/200101010006310009ABD.JPG 2416 22 1180 Archivo adjunto al reporte 2416 +742 2025-11-20 06:11:30.489+00 2025-11-20 06:11:21.7934+00 f t eco blutrach lola amar nov 25.pdf uploads/eco__blutrach_lola_amar_nov_25.pdf 2416 22 1180 Archivo adjunto al reporte 2416 +743 2025-11-20 06:35:05.094+00 2025-11-20 06:34:56.283551+00 f t 200101010004370001ABD.JPG uploads/200101010004370001ABD.JPG 2417 22 1180 Archivo adjunto al reporte 2417 +744 2025-11-20 06:35:05.502+00 2025-11-20 06:34:56.67857+00 f t 200101010005010002ABD.JPG uploads/200101010005010002ABD.JPG 2417 22 1180 Archivo adjunto al reporte 2417 +745 2025-11-20 06:35:05.912+00 2025-11-20 06:34:57.087037+00 f t 200101010005310003ABD.JPG uploads/200101010005310003ABD.JPG 2417 22 1180 Archivo adjunto al reporte 2417 +746 2025-11-20 06:35:06.321+00 2025-11-20 06:34:57.496428+00 f t 200101010005490004ABD.JPG uploads/200101010005490004ABD.JPG 2417 22 1180 Archivo adjunto al reporte 2417 +747 2025-11-20 06:35:06.73+00 2025-11-20 06:34:57.895967+00 f t 200101010006170005ABD.JPG uploads/200101010006170005ABD_hpztG98.JPG 2417 22 1180 Archivo adjunto al reporte 2417 +748 2025-11-20 06:35:07.139+00 2025-11-20 06:34:58.31469+00 f t 200101010007440006ABD.JPG uploads/200101010007440006ABD_AOVz0Xw.JPG 2417 22 1180 Archivo adjunto al reporte 2417 +749 2025-11-20 06:35:07.549+00 2025-11-20 06:34:58.71604+00 f t 200101010008150007ABD.JPG uploads/200101010008150007ABD.JPG 2417 22 1180 Archivo adjunto al reporte 2417 +750 2025-11-20 06:35:07.961+00 2025-11-20 06:34:59.122957+00 f t 200101010009470008ABD.JPG uploads/200101010009470008ABD.JPG 2417 22 1180 Archivo adjunto al reporte 2417 +751 2025-11-20 06:35:08.369+00 2025-11-20 06:34:59.528242+00 f t 200101010010510009ABD.JPG uploads/200101010010510009ABD.JPG 2417 22 1180 Archivo adjunto al reporte 2417 +752 2025-11-20 06:35:08.779+00 2025-11-20 06:35:00.074352+00 f t eco kozak baddy a amr nov 25.pdf uploads/eco_kozak_baddy_a_amr_nov_25.pdf 2417 22 1180 Archivo adjunto al reporte 2417 +753 2025-11-20 17:28:37.699542+00 2025-11-20 17:28:37.69955+00 f t V1365575.pdf uploads/V1365575.pdf 2420 22 1583 +754 2025-11-20 17:29:47.399927+00 2025-11-20 17:29:47.399937+00 f t V1365574.pdf uploads/V1365574.pdf 3318 21 1583 +755 2025-11-21 02:43:07.06+00 2025-11-21 02:42:57.7809+00 f t 200101010004140001ABD.JPG uploads/200101010004140001ABD_S9vGyBE.JPG 2427 22 1180 Archivo adjunto al reporte 2427 +756 2025-11-21 02:43:07.828+00 2025-11-21 02:42:58.222696+00 f t 200101010005110002ABD.JPG uploads/200101010005110002ABD.JPG 2427 22 1180 Archivo adjunto al reporte 2427 +757 2025-11-21 02:43:08.182+00 2025-11-21 02:42:58.576932+00 f t 200101010005210003ABD.JPG uploads/200101010005210003ABD.JPG 2427 22 1180 Archivo adjunto al reporte 2427 +758 2025-11-21 02:43:08.593+00 2025-11-21 02:42:58.98974+00 f t 200101010007070004VAS.JPG uploads/200101010007070004VAS.JPG 2427 22 1180 Archivo adjunto al reporte 2427 +759 2025-11-21 02:43:09.002+00 2025-11-21 02:42:59.40394+00 f t 200101010010220005ABD.JPG uploads/200101010010220005ABD.JPG 2427 22 1180 Archivo adjunto al reporte 2427 +760 2025-11-21 02:43:09.336+00 2025-11-21 02:42:59.734018+00 f t 200101010012080006ABD.JPG uploads/200101010012080006ABD.JPG 2427 22 1180 Archivo adjunto al reporte 2427 +761 2025-11-21 02:43:09.718+00 2025-11-21 02:43:00.122261+00 f t 200101010012410008ABD.JPG uploads/200101010012410008ABD.JPG 2427 22 1180 Archivo adjunto al reporte 2427 +762 2025-11-21 02:43:10.127+00 2025-11-21 02:43:00.694706+00 f t eco valentini dantes amar nov 25.pdf uploads/eco_valentini_dantes_amar_nov_25.pdf 2427 22 1180 Archivo adjunto al reporte 2427 +763 2025-11-21 12:41:02.154192+00 2025-11-21 12:41:02.154205+00 f t V1364926.pdf uploads/V1364926.pdf 2428 22 1583 +764 2025-11-21 19:22:15.680599+00 2025-11-21 19:22:15.680607+00 f t V1363802.pdf uploads/V1363802_vSwFKKF.pdf 3222 21 1583 +765 2025-11-22 05:53:33.034+00 2025-11-22 05:53:23.27922+00 f t 200101010004200001ABD.JPG uploads/200101010004200001ABD_kDJd8dX.JPG 2431 22 1180 Archivo adjunto al reporte 2431 +766 2025-11-22 05:53:33.618+00 2025-11-22 05:53:23.609771+00 f t 200101010004490002ABD.JPG uploads/200101010004490002ABD.JPG 2431 22 1180 Archivo adjunto al reporte 2431 +767 2025-11-22 05:53:33.952+00 2025-11-22 05:53:23.930961+00 f t 200101010009460004ABD.JPG uploads/200101010009460004ABD.JPG 2431 22 1180 Archivo adjunto al reporte 2431 +768 2025-11-22 05:53:34.267+00 2025-11-22 05:53:24.257283+00 f t 200101010014020007ABD.JPG uploads/200101010014020007ABD.JPG 2431 22 1180 Archivo adjunto al reporte 2431 +769 2025-11-22 05:53:34.593+00 2025-11-22 05:53:24.572975+00 f t 200101010014260008ABD.JPG uploads/200101010014260008ABD.JPG 2431 22 1180 Archivo adjunto al reporte 2431 +770 2025-11-22 05:53:34.908+00 2025-11-22 05:53:24.894055+00 f t 200101010014350009ABD.JPG uploads/200101010014350009ABD.JPG 2431 22 1180 Archivo adjunto al reporte 2431 +771 2025-11-22 05:53:35.232+00 2025-11-22 05:53:25.208246+00 f t 200101010014490010ABD.JPG uploads/200101010014490010ABD.JPG 2431 22 1180 Archivo adjunto al reporte 2431 +772 2025-11-22 05:53:35.543+00 2025-11-22 05:53:25.541789+00 f t 200101010016180011ABD.JPG uploads/200101010016180011ABD.JPG 2431 22 1180 Archivo adjunto al reporte 2431 +773 2025-11-22 05:53:35.882+00 2025-11-22 05:53:25.871591+00 f t 200101010017000012ABD.JPG uploads/200101010017000012ABD.JPG 2431 22 1180 Archivo adjunto al reporte 2431 +774 2025-11-22 05:53:36.208+00 2025-11-22 05:53:26.374876+00 f t eco rousseaux kiki amar nov 25.pdf uploads/eco_rousseaux_kiki_amar_nov_25.pdf 2431 22 1180 Archivo adjunto al reporte 2431 +775 2025-11-22 07:05:25.052+00 2025-11-22 07:05:15.030586+00 f t 200101010002460002ABD.JPG uploads/200101010002460002ABD_qqNgwJ1.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +776 2025-11-22 07:05:25.41+00 2025-11-22 07:05:15.373271+00 f t 200101010003120003ABD.JPG uploads/200101010003120003ABD.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +777 2025-11-22 07:05:25.751+00 2025-11-22 07:05:15.717132+00 f t 200101010003320004ABD.JPG uploads/200101010003320004ABD.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +778 2025-11-22 07:05:26.095+00 2025-11-22 07:05:16.042597+00 f t 200101010004210005ABD.JPG uploads/200101010004210005ABD.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +779 2025-11-22 07:05:26.419+00 2025-11-22 07:05:16.373058+00 f t 200101010006100006ABD.JPG uploads/200101010006100006ABD.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +780 2025-11-22 07:05:26.751+00 2025-11-22 07:05:16.704332+00 f t 200101010007270008ABD.JPG uploads/200101010007270008ABD.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +781 2025-11-22 07:05:27.082+00 2025-11-22 07:05:17.030647+00 f t 200101010007500009ABD.JPG uploads/200101010007500009ABD.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +782 2025-11-22 07:05:27.409+00 2025-11-22 07:05:17.370809+00 f t 200101010008080010ABD.JPG uploads/200101010008080010ABD.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +783 2025-11-22 07:05:27.748+00 2025-11-22 07:05:17.703109+00 f t 200101010009000012ABD.JPG uploads/200101010009000012ABD.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +784 2025-11-22 07:05:28.08+00 2025-11-22 07:05:18.033753+00 f t 200101010009300013ABD.JPG uploads/200101010009300013ABD.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +785 2025-11-22 07:05:28.411+00 2025-11-22 07:05:18.36539+00 f t 200101010009590014ABD.JPG uploads/200101010009590014ABD.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +786 2025-11-22 07:05:28.742+00 2025-11-22 07:05:18.701959+00 f t 200101010012450015ABD.JPG uploads/200101010012450015ABD.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +787 2025-11-22 07:05:29.077+00 2025-11-22 07:05:19.034621+00 f t 200101010013230016ABD.JPG uploads/200101010013230016ABD.JPG 2432 22 1180 Archivo adjunto al reporte 2432 +788 2025-11-22 07:05:29.413+00 2025-11-22 07:05:19.494428+00 f t eco motta pedro amar nov 25.pdf uploads/eco_motta_pedro_amar_nov_25.pdf 2432 22 1180 Archivo adjunto al reporte 2432 +789 2025-11-23 02:18:30.358+00 2025-11-23 02:18:20.144897+00 f t 200101010002220001ABD.JPG uploads/200101010002220001ABD.JPG 2435 22 1180 Archivo adjunto al reporte 2435 +790 2025-11-23 02:18:31.014+00 2025-11-23 02:18:20.488875+00 f t 200101010002320002ABD.JPG uploads/200101010002320002ABD.JPG 2435 22 1180 Archivo adjunto al reporte 2435 +791 2025-11-23 02:18:31.359+00 2025-11-23 02:18:20.829282+00 f t 200101010002590003ABD.JPG uploads/200101010002590003ABD.JPG 2435 22 1180 Archivo adjunto al reporte 2435 +792 2025-11-23 02:18:31.791+00 2025-11-23 02:18:21.255524+00 f t 200101010003130004ABD.JPG uploads/200101010003130004ABD.JPG 2435 22 1180 Archivo adjunto al reporte 2435 +793 2025-11-23 02:18:32.201+00 2025-11-23 02:18:21.660011+00 f t 200101010003240005ABD.JPG uploads/200101010003240005ABD.JPG 2435 22 1180 Archivo adjunto al reporte 2435 +794 2025-11-23 02:18:32.609+00 2025-11-23 02:18:22.069895+00 f t 200101010003400006ABD.JPG uploads/200101010003400006ABD.JPG 2435 22 1180 Archivo adjunto al reporte 2435 +795 2025-11-23 02:18:33.02+00 2025-11-23 02:18:22.487944+00 f t 200101010004140007ABD.JPG uploads/200101010004140007ABD.JPG 2435 22 1180 Archivo adjunto al reporte 2435 +796 2025-11-23 02:18:33.428+00 2025-11-23 02:18:22.900143+00 f t 200101010004360008ABD.JPG uploads/200101010004360008ABD.JPG 2435 22 1180 Archivo adjunto al reporte 2435 +797 2025-11-23 02:18:33.837+00 2025-11-23 02:18:23.296309+00 f t 200101010006340009ABD.JPG uploads/200101010006340009ABD.JPG 2435 22 1180 Archivo adjunto al reporte 2435 +798 2025-11-23 02:18:34.25+00 2025-11-23 02:18:23.715019+00 f t 200101010007000010ABD.JPG uploads/200101010007000010ABD.JPG 2435 22 1180 Archivo adjunto al reporte 2435 +799 2025-11-23 02:18:34.658+00 2025-11-23 02:18:24.121011+00 f t 200101010009430011ABD.JPG uploads/200101010009430011ABD.JPG 2435 22 1180 Archivo adjunto al reporte 2435 +800 2025-11-23 02:18:35.071+00 2025-11-23 02:18:24.661801+00 f t eco baliño malena amar nov 25.pdf uploads/eco_baliño_malena_amar__nov_25.pdf 2435 22 1180 Archivo adjunto al reporte 2435 +801 2025-11-24 14:10:32.835872+00 2025-11-24 14:10:32.835881+00 f t V1365552 (2).pdf uploads/V1365552_2.pdf 3296 21 1583 +802 2025-11-25 16:36:20.107083+00 2025-11-25 16:36:20.107096+00 f t 2503056_Munru_251125132210.pdf uploads/2503056_Munru_251125132210.pdf 2450 22 1583 +\. + + +-- +-- Name: afip_authticket_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_authticket_id_seq', 1, true); + + +-- +-- Name: afip_clientvatcondition_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_clientvatcondition_id_seq', 11, true); + + +-- +-- Name: afip_concepttype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_concepttype_id_seq', 3, true); + + +-- +-- Name: afip_currencytype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_currencytype_id_seq', 49, true); + + +-- +-- Name: afip_documenttype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_documenttype_id_seq', 36, true); + + +-- +-- Name: afip_observation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_observation_id_seq', 1, false); + + +-- +-- Name: afip_optional_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_optional_id_seq', 1, false); + + +-- +-- Name: afip_optionaltype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_optionaltype_id_seq', 24, true); + + +-- +-- Name: afip_pointofsales_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_pointofsales_id_seq', 1, true); + + +-- +-- Name: afip_receipt_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_receipt_id_seq', 961, true); + + +-- +-- Name: afip_receipt_related_receipts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_receipt_related_receipts_id_seq', 1, false); + + +-- +-- Name: afip_receiptentry_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_receiptentry_id_seq', 961, true); + + +-- +-- Name: afip_receiptpdf_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_receiptpdf_id_seq', 961, true); + + +-- +-- Name: afip_receipttype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_receipttype_id_seq', 36, true); + + +-- +-- Name: afip_receiptvalidation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_receiptvalidation_id_seq', 961, true); + + +-- +-- Name: afip_receiptvalidation_observations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_receiptvalidation_observations_id_seq', 1, false); + + +-- +-- Name: afip_tax_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_tax_id_seq', 1, false); + + +-- +-- Name: afip_taxpayer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_taxpayer_id_seq', 1, true); + + +-- +-- Name: afip_taxtype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_taxtype_id_seq', 11, true); + + +-- +-- Name: afip_vat_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_vat_id_seq', 961, true); + + +-- +-- Name: afip_vattype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.afip_vattype_id_seq', 6, true); + + +-- +-- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.auth_group_id_seq', 21, true); + + +-- +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 920, true); + + +-- +-- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.auth_permission_id_seq', 324, true); + + +-- +-- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.auth_user_groups_id_seq', 899, true); + + +-- +-- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.auth_user_id_seq', 2280, true); + + +-- +-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.auth_user_user_permissions_id_seq', 1266, true); + + +-- +-- Name: common_apikey_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_apikey_id_seq', 1, true); + + +-- +-- Name: common_browserpushsubscription_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_browserpushsubscription_id_seq', 1, false); + + +-- +-- Name: common_campaign_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_campaign_id_seq', 12, true); + + +-- +-- Name: common_groupstudy_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_groupstudy_id_seq', 1, false); + + +-- +-- Name: common_individualturnfeegroup_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_individualturnfeegroup_id_seq', 3, true); + + +-- +-- Name: common_individualturnfeegroupmembership_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_individualturnfeegroupmembership_id_seq', 2, true); + + +-- +-- Name: common_locality_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_locality_id_seq', 1, false); + + +-- +-- Name: common_medication_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_medication_id_seq', 1192, true); + + +-- +-- Name: common_medicationgeneralname_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_medicationgeneralname_id_seq', 25, true); + + +-- +-- Name: common_medicationpresentation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_medicationpresentation_id_seq', 37, true); + + +-- +-- Name: common_medictaiontype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_medictaiontype_id_seq', 3, true); + + +-- +-- Name: common_neighborhood_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_neighborhood_id_seq', 162, true); + + +-- +-- Name: common_petbreed_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_petbreed_id_seq', 67, true); + + +-- +-- Name: common_province_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_province_id_seq', 1, false); + + +-- +-- Name: common_specialty_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_specialty_id_seq', 84, true); + + +-- +-- Name: common_study_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_study_id_seq', 12, true); + + +-- +-- Name: common_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_tag_id_seq', 1, true); + + +-- +-- Name: common_vaccine_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.common_vaccine_id_seq', 9, true); + + +-- +-- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.django_admin_log_id_seq', 471, true); + + +-- +-- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.django_content_type_id_seq', 81, true); + + +-- +-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.django_migrations_id_seq', 194, true); + + +-- +-- Name: mascotas_availability_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_availability_id_seq', 390, true); + + +-- +-- Name: mascotas_followupimage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_followupimage_id_seq', 1, false); + + +-- +-- Name: mascotas_pet_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_pet_id_seq', 12005, true); + + +-- +-- Name: mascotas_petowner_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_petowner_id_seq', 14573, true); + + +-- +-- Name: mascotas_petowner_tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_petowner_tags_id_seq', 1, false); + + +-- +-- Name: mascotas_petstudy_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_petstudy_id_seq', 39, true); + + +-- +-- Name: mascotas_petstudyfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_petstudyfile_id_seq', 1, false); + + +-- +-- Name: mascotas_petvaccine_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_petvaccine_id_seq', 173, true); + + +-- +-- Name: mascotas_privatenote_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_privatenote_id_seq', 99, true); + + +-- +-- Name: mascotas_unavailability_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_unavailability_id_seq', 50, true); + + +-- +-- Name: mascotas_veterinarian_coverage_areas_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_veterinarian_coverage_areas_id_seq', 1, false); + + +-- +-- Name: mascotas_veterinarian_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_veterinarian_id_seq', 121, true); + + +-- +-- Name: mascotas_veterinarian_neighborhood_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_veterinarian_neighborhood_id_seq', 4166, true); + + +-- +-- Name: mascotas_veterinarian_specialization_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_veterinarian_specialization_id_seq', 397, true); + + +-- +-- Name: mascotas_veterinariancoveragearea_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_veterinariancoveragearea_id_seq', 1, false); + + +-- +-- Name: mascotas_vetvisit_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_vetvisit_id_seq', 3390, true); + + +-- +-- Name: mascotas_vetvisit_pets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_vetvisit_pets_id_seq', 915, true); + + +-- +-- Name: mascotas_vetvisitfollowup_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_vetvisitfollowup_id_seq', 1, false); + + +-- +-- Name: mascotas_vetvisitpetreason_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_vetvisitpetreason_id_seq', 3458, true); + + +-- +-- Name: mascotas_vetvisitreport_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.mascotas_vetvisitreport_id_seq', 2450, true); + + +-- +-- Name: payments_mercadopagoaccount_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.payments_mercadopagoaccount_id_seq', 1, false); + + +-- +-- Name: payments_mercadopagonotification_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.payments_mercadopagonotification_id_seq', 1, false); + + +-- +-- Name: productos_cart_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.productos_cart_id_seq', 13638, true); + + +-- +-- Name: productos_cartitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.productos_cartitem_id_seq', 90420, true); + + +-- +-- Name: productos_cartpetreason_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.productos_cartpetreason_id_seq', 381, true); + + +-- +-- Name: productos_cartresumeitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.productos_cartresumeitem_id_seq', 549996, true); + + +-- +-- Name: productos_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.productos_category_id_seq', 23, true); + + +-- +-- Name: productos_categoryservice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.productos_categoryservice_id_seq', 12, true); + + +-- +-- Name: productos_discounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.productos_discounts_id_seq', 1, false); + + +-- +-- Name: productos_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.productos_group_id_seq', 4, true); + + +-- +-- Name: productos_prices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.productos_prices_id_seq', 595, true); + + +-- +-- Name: productos_service_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.productos_service_id_seq', 177, true); + + +-- +-- Name: productos_servicecombo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.productos_servicecombo_id_seq', 1, true); + + +-- +-- Name: productos_servicecomboitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.productos_servicecomboitem_id_seq', 1, true); + + +-- +-- Name: solicitudes_paymentreminder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.solicitudes_paymentreminder_id_seq', 71, true); + + +-- +-- Name: solicitudes_scheduledveterinarianreminder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.solicitudes_scheduledveterinarianreminder_id_seq', 156, true); + + +-- +-- Name: solicitudes_servicerequest_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.solicitudes_servicerequest_id_seq', 1802, true); + + +-- +-- Name: solicitudes_servicerequest_tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.solicitudes_servicerequest_tags_id_seq', 665, true); + + +-- +-- Name: solicitudes_servicerequeststatehistory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.solicitudes_servicerequeststatehistory_id_seq', 9430, true); + + +-- +-- Name: solicitudes_veterinarianasked_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.solicitudes_veterinarianasked_id_seq', 2813, true); + + +-- +-- Name: storage_filestorage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: mariano +-- + +SELECT pg_catalog.setval('public.storage_filestorage_id_seq', 802, true); + + +-- +-- Name: afip_authticket afip_authticket_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_authticket + ADD CONSTRAINT afip_authticket_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_clientvatcondition afip_clientvatcondition_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_clientvatcondition + ADD CONSTRAINT afip_clientvatcondition_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_concepttype afip_concepttype_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_concepttype + ADD CONSTRAINT afip_concepttype_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_currencytype afip_currencytype_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_currencytype + ADD CONSTRAINT afip_currencytype_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_documenttype afip_documenttype_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_documenttype + ADD CONSTRAINT afip_documenttype_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_observation afip_observation_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_observation + ADD CONSTRAINT afip_observation_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_optional afip_optional_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_optional + ADD CONSTRAINT afip_optional_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_optionaltype afip_optionaltype_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_optionaltype + ADD CONSTRAINT afip_optionaltype_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_pointofsales afip_pointofsales_number_owner_id_730d8180_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_pointofsales + ADD CONSTRAINT afip_pointofsales_number_owner_id_730d8180_uniq UNIQUE (number, owner_id); + + +-- +-- Name: afip_pointofsales afip_pointofsales_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_pointofsales + ADD CONSTRAINT afip_pointofsales_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_receipt afip_receipt_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipt + ADD CONSTRAINT afip_receipt_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_receipt afip_receipt_point_of_sales_id_receip_6a7c4af7_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipt + ADD CONSTRAINT afip_receipt_point_of_sales_id_receip_6a7c4af7_uniq UNIQUE (point_of_sales_id, receipt_type_id, receipt_number); + + +-- +-- Name: afip_receipt_related_receipts afip_receipt_related_rec_from_receipt_id_to_recei_2754db5a_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipt_related_receipts + ADD CONSTRAINT afip_receipt_related_rec_from_receipt_id_to_recei_2754db5a_uniq UNIQUE (from_receipt_id, to_receipt_id); + + +-- +-- Name: afip_receipt_related_receipts afip_receipt_related_receipts_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipt_related_receipts + ADD CONSTRAINT afip_receipt_related_receipts_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_receiptentry afip_receiptentry_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptentry + ADD CONSTRAINT afip_receiptentry_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_receiptpdf afip_receiptpdf_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptpdf + ADD CONSTRAINT afip_receiptpdf_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_receiptpdf afip_receiptpdf_receipt_id_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptpdf + ADD CONSTRAINT afip_receiptpdf_receipt_id_key UNIQUE (receipt_id); + + +-- +-- Name: afip_receipttype afip_receipttype_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipttype + ADD CONSTRAINT afip_receipttype_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_receiptvalidation_observations afip_receiptvalidation_o_receiptvalidation_id_obs_23cb2e0f_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptvalidation_observations + ADD CONSTRAINT afip_receiptvalidation_o_receiptvalidation_id_obs_23cb2e0f_uniq UNIQUE (receiptvalidation_id, observation_id); + + +-- +-- Name: afip_receiptvalidation_observations afip_receiptvalidation_observations_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptvalidation_observations + ADD CONSTRAINT afip_receiptvalidation_observations_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_receiptvalidation afip_receiptvalidation_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptvalidation + ADD CONSTRAINT afip_receiptvalidation_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_receiptvalidation afip_receiptvalidation_receipt_id_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptvalidation + ADD CONSTRAINT afip_receiptvalidation_receipt_id_key UNIQUE (receipt_id); + + +-- +-- Name: afip_tax afip_tax_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_tax + ADD CONSTRAINT afip_tax_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_taxpayer afip_taxpayer_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_taxpayer + ADD CONSTRAINT afip_taxpayer_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_taxtype afip_taxtype_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_taxtype + ADD CONSTRAINT afip_taxtype_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_vat afip_vat_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_vat + ADD CONSTRAINT afip_vat_pkey PRIMARY KEY (id); + + +-- +-- Name: afip_vattype afip_vattype_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_vattype + ADD CONSTRAINT afip_vattype_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_group auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_group + ADD CONSTRAINT auth_group_name_key UNIQUE (name); + + +-- +-- Name: auth_group_permissions auth_group_permissions_group_id_permission_id_0cd325b0_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_group_permissions + ADD CONSTRAINT auth_group_permissions_group_id_permission_id_0cd325b0_uniq UNIQUE (group_id, permission_id); + + +-- +-- Name: auth_group_permissions auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_group_permissions + ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_group auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_group + ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_permission auth_permission_content_type_id_codename_01ab375a_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_permission + ADD CONSTRAINT auth_permission_content_type_id_codename_01ab375a_uniq UNIQUE (content_type_id, codename); + + +-- +-- Name: auth_permission auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_permission + ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_user_groups auth_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_user_groups + ADD CONSTRAINT auth_user_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_user_groups auth_user_groups_user_id_group_id_94350c0c_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_user_groups + ADD CONSTRAINT auth_user_groups_user_id_group_id_94350c0c_uniq UNIQUE (user_id, group_id); + + +-- +-- Name: auth_user auth_user_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_user + ADD CONSTRAINT auth_user_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_user_user_permissions auth_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_user_user_permissions + ADD CONSTRAINT auth_user_user_permissions_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_permission_id_14a6b632_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_user_user_permissions + ADD CONSTRAINT auth_user_user_permissions_user_id_permission_id_14a6b632_uniq UNIQUE (user_id, permission_id); + + +-- +-- Name: auth_user auth_user_username_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_user + ADD CONSTRAINT auth_user_username_key UNIQUE (username); + + +-- +-- Name: authtoken_token authtoken_token_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.authtoken_token + ADD CONSTRAINT authtoken_token_pkey PRIMARY KEY (key); + + +-- +-- Name: authtoken_token authtoken_token_user_id_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.authtoken_token + ADD CONSTRAINT authtoken_token_user_id_key UNIQUE (user_id); + + +-- +-- Name: common_apikey common_apikey_key_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_apikey + ADD CONSTRAINT common_apikey_key_key UNIQUE (key); + + +-- +-- Name: common_apikey common_apikey_name_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_apikey + ADD CONSTRAINT common_apikey_name_key UNIQUE (name); + + +-- +-- Name: common_apikey common_apikey_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_apikey + ADD CONSTRAINT common_apikey_pkey PRIMARY KEY (id); + + +-- +-- Name: common_browserpushsubscription common_browserpushsubscription_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_browserpushsubscription + ADD CONSTRAINT common_browserpushsubscription_pkey PRIMARY KEY (id); + + +-- +-- Name: common_campaign common_campaign_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_campaign + ADD CONSTRAINT common_campaign_pkey PRIMARY KEY (id); + + +-- +-- Name: common_groupstudy common_groupstudy_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_groupstudy + ADD CONSTRAINT common_groupstudy_pkey PRIMARY KEY (id); + + +-- +-- Name: common_individualturnfeegroup common_individualturnfeegroup_name_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_individualturnfeegroup + ADD CONSTRAINT common_individualturnfeegroup_name_key UNIQUE (name); + + +-- +-- Name: common_individualturnfeegroup common_individualturnfeegroup_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_individualturnfeegroup + ADD CONSTRAINT common_individualturnfeegroup_pkey PRIMARY KEY (id); + + +-- +-- Name: common_individualturnfeegroupmembership common_individualturnfeegroupmembership_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_individualturnfeegroupmembership + ADD CONSTRAINT common_individualturnfeegroupmembership_pkey PRIMARY KEY (id); + + +-- +-- Name: common_individualturnfeegroupmembership common_individualturnfeegroupmembership_veterinarian_id_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_individualturnfeegroupmembership + ADD CONSTRAINT common_individualturnfeegroupmembership_veterinarian_id_key UNIQUE (veterinarian_id); + + +-- +-- Name: common_locality common_locality_name_province_id_4a96b078_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_locality + ADD CONSTRAINT common_locality_name_province_id_4a96b078_uniq UNIQUE (name, province_id); + + +-- +-- Name: common_locality common_locality_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_locality + ADD CONSTRAINT common_locality_pkey PRIMARY KEY (id); + + +-- +-- Name: common_medication common_medication_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_medication + ADD CONSTRAINT common_medication_pkey PRIMARY KEY (id); + + +-- +-- Name: common_medicationgeneralname common_medicationgeneralname_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_medicationgeneralname + ADD CONSTRAINT common_medicationgeneralname_pkey PRIMARY KEY (id); + + +-- +-- Name: common_medicationpresentation common_medicationpresentation_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_medicationpresentation + ADD CONSTRAINT common_medicationpresentation_pkey PRIMARY KEY (id); + + +-- +-- Name: common_medicationtype common_medictaiontype_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_medicationtype + ADD CONSTRAINT common_medictaiontype_pkey PRIMARY KEY (id); + + +-- +-- Name: common_neighborhood common_neighborhood_name_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_neighborhood + ADD CONSTRAINT common_neighborhood_name_key UNIQUE (name); + + +-- +-- Name: common_neighborhood common_neighborhood_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_neighborhood + ADD CONSTRAINT common_neighborhood_pkey PRIMARY KEY (id); + + +-- +-- Name: common_petbreed common_petbreed_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_petbreed + ADD CONSTRAINT common_petbreed_pkey PRIMARY KEY (id); + + +-- +-- Name: common_province common_province_name_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_province + ADD CONSTRAINT common_province_name_key UNIQUE (name); + + +-- +-- Name: common_province common_province_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_province + ADD CONSTRAINT common_province_pkey PRIMARY KEY (id); + + +-- +-- Name: common_specialty common_specialty_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_specialty + ADD CONSTRAINT common_specialty_pkey PRIMARY KEY (id); + + +-- +-- Name: common_study common_study_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_study + ADD CONSTRAINT common_study_pkey PRIMARY KEY (id); + + +-- +-- Name: common_tag common_tag_name_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_tag + ADD CONSTRAINT common_tag_name_key UNIQUE (name); + + +-- +-- Name: common_tag common_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_tag + ADD CONSTRAINT common_tag_pkey PRIMARY KEY (id); + + +-- +-- Name: common_vaccine common_vaccine_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_vaccine + ADD CONSTRAINT common_vaccine_pkey PRIMARY KEY (id); + + +-- +-- Name: comprobantes_receiptpayproof comprobantes_receiptpayproof_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.comprobantes_receiptpayproof + ADD CONSTRAINT comprobantes_receiptpayproof_pkey PRIMARY KEY (id); + + +-- +-- Name: django_admin_log django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.django_admin_log + ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id); + + +-- +-- Name: django_content_type django_content_type_app_label_model_76bd3d3b_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.django_content_type + ADD CONSTRAINT django_content_type_app_label_model_76bd3d3b_uniq UNIQUE (app_label, model); + + +-- +-- Name: django_content_type django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.django_content_type + ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id); + + +-- +-- Name: django_migrations django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.django_migrations + ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id); + + +-- +-- Name: django_session django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.django_session + ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key); + + +-- +-- Name: mascotas_availability mascotas_availability_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_availability + ADD CONSTRAINT mascotas_availability_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_followupimage mascotas_followupimage_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_followupimage + ADD CONSTRAINT mascotas_followupimage_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_pet mascotas_pet_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_pet + ADD CONSTRAINT mascotas_pet_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_petowner mascotas_petowner_email_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petowner + ADD CONSTRAINT mascotas_petowner_email_key UNIQUE (email); + + +-- +-- Name: mascotas_petowner mascotas_petowner_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petowner + ADD CONSTRAINT mascotas_petowner_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_petowner_tags mascotas_petowner_tags_petowner_id_tag_id_a48c5d1a_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petowner_tags + ADD CONSTRAINT mascotas_petowner_tags_petowner_id_tag_id_a48c5d1a_uniq UNIQUE (petowner_id, tag_id); + + +-- +-- Name: mascotas_petowner_tags mascotas_petowner_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petowner_tags + ADD CONSTRAINT mascotas_petowner_tags_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_petstudy mascotas_petstudy_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petstudy + ADD CONSTRAINT mascotas_petstudy_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_petstudyfile mascotas_petstudyfile_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petstudyfile + ADD CONSTRAINT mascotas_petstudyfile_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_petvaccine mascotas_petvaccine_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petvaccine + ADD CONSTRAINT mascotas_petvaccine_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_privatenote mascotas_privatenote_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_privatenote + ADD CONSTRAINT mascotas_privatenote_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_unavailability mascotas_unavailability_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_unavailability + ADD CONSTRAINT mascotas_unavailability_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_veterinarian mascotas_veterinarian_alias_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian + ADD CONSTRAINT mascotas_veterinarian_alias_key UNIQUE (alias); + + +-- +-- Name: mascotas_veterinarian_coverage_areas mascotas_veterinarian_co_veterinarian_id_veterina_5f952fbe_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian_coverage_areas + ADD CONSTRAINT mascotas_veterinarian_co_veterinarian_id_veterina_5f952fbe_uniq UNIQUE (veterinarian_id, veterinariancoveragearea_id); + + +-- +-- Name: mascotas_veterinarian_coverage_areas mascotas_veterinarian_coverage_areas_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian_coverage_areas + ADD CONSTRAINT mascotas_veterinarian_coverage_areas_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_veterinarian_neighborhood mascotas_veterinarian_ne_veterinarian_id_neighbor_53ae0d98_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian_neighborhood + ADD CONSTRAINT mascotas_veterinarian_ne_veterinarian_id_neighbor_53ae0d98_uniq UNIQUE (veterinarian_id, neighborhood_id); + + +-- +-- Name: mascotas_veterinarian_neighborhood mascotas_veterinarian_neighborhood_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian_neighborhood + ADD CONSTRAINT mascotas_veterinarian_neighborhood_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_veterinarian mascotas_veterinarian_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian + ADD CONSTRAINT mascotas_veterinarian_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_veterinarian_specialization mascotas_veterinarian_sp_veterinarian_id_specialt_42646816_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian_specialization + ADD CONSTRAINT mascotas_veterinarian_sp_veterinarian_id_specialt_42646816_uniq UNIQUE (veterinarian_id, specialty_id); + + +-- +-- Name: mascotas_veterinarian_specialization mascotas_veterinarian_specialization_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian_specialization + ADD CONSTRAINT mascotas_veterinarian_specialization_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_veterinariancoveragearea mascotas_veterinariancoveragearea_name_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinariancoveragearea + ADD CONSTRAINT mascotas_veterinariancoveragearea_name_key UNIQUE (name); + + +-- +-- Name: mascotas_veterinariancoveragearea mascotas_veterinariancoveragearea_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinariancoveragearea + ADD CONSTRAINT mascotas_veterinariancoveragearea_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_vetvisit mascotas_vetvisit_afip_receipt_id_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit + ADD CONSTRAINT mascotas_vetvisit_afip_receipt_id_key UNIQUE (afip_receipt_id); + + +-- +-- Name: mascotas_vetvisit_pets mascotas_vetvisit_pets_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit_pets + ADD CONSTRAINT mascotas_vetvisit_pets_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_vetvisit_pets mascotas_vetvisit_pets_vetvisit_id_pet_id_4eddaeb5_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit_pets + ADD CONSTRAINT mascotas_vetvisit_pets_vetvisit_id_pet_id_4eddaeb5_uniq UNIQUE (vetvisit_id, pet_id); + + +-- +-- Name: mascotas_vetvisit mascotas_vetvisit_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit + ADD CONSTRAINT mascotas_vetvisit_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_vetvisit mascotas_vetvisit_service_request_id_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit + ADD CONSTRAINT mascotas_vetvisit_service_request_id_key UNIQUE (service_request_id); + + +-- +-- Name: mascotas_vetvisitfollowup mascotas_vetvisitfollowup_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitfollowup + ADD CONSTRAINT mascotas_vetvisitfollowup_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_vetvisitpetreason mascotas_vetvisitpetreason_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitpetreason + ADD CONSTRAINT mascotas_vetvisitpetreason_pkey PRIMARY KEY (id); + + +-- +-- Name: mascotas_vetvisitpetreason mascotas_vetvisitpetreason_visit_id_pet_id_1dcfe61d_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitpetreason + ADD CONSTRAINT mascotas_vetvisitpetreason_visit_id_pet_id_1dcfe61d_uniq UNIQUE (visit_id, pet_id); + + +-- +-- Name: mascotas_vetvisitreport mascotas_vetvisitreport_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitreport + ADD CONSTRAINT mascotas_vetvisitreport_pkey PRIMARY KEY (id); + + +-- +-- Name: payments_mercadopagoaccount payments_mercadopagoaccount_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.payments_mercadopagoaccount + ADD CONSTRAINT payments_mercadopagoaccount_pkey PRIMARY KEY (id); + + +-- +-- Name: payments_mercadopagoaccount payments_mercadopagoaccount_seller_id_key; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.payments_mercadopagoaccount + ADD CONSTRAINT payments_mercadopagoaccount_seller_id_key UNIQUE (seller_id); + + +-- +-- Name: payments_mercadopagonotification payments_mercadopagonotification_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.payments_mercadopagonotification + ADD CONSTRAINT payments_mercadopagonotification_pkey PRIMARY KEY (id); + + +-- +-- Name: productos_cart productos_cart_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cart + ADD CONSTRAINT productos_cart_pkey PRIMARY KEY (id); + + +-- +-- Name: productos_cartitem productos_cartitem_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartitem + ADD CONSTRAINT productos_cartitem_pkey PRIMARY KEY (id); + + +-- +-- Name: productos_cartpetreason productos_cartpetreason_cart_id_pet_id_de897ee8_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartpetreason + ADD CONSTRAINT productos_cartpetreason_cart_id_pet_id_de897ee8_uniq UNIQUE (cart_id, pet_id); + + +-- +-- Name: productos_cartpetreason productos_cartpetreason_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartpetreason + ADD CONSTRAINT productos_cartpetreason_pkey PRIMARY KEY (id); + + +-- +-- Name: productos_cartresumeitem productos_cartresumeitem_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartresumeitem + ADD CONSTRAINT productos_cartresumeitem_pkey PRIMARY KEY (id); + + +-- +-- Name: productos_category productos_category_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_category + ADD CONSTRAINT productos_category_pkey PRIMARY KEY (id); + + +-- +-- Name: productos_categoryservice productos_categoryservice_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_categoryservice + ADD CONSTRAINT productos_categoryservice_pkey PRIMARY KEY (id); + + +-- +-- Name: productos_discounts productos_discounts_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_discounts + ADD CONSTRAINT productos_discounts_pkey PRIMARY KEY (id); + + +-- +-- Name: productos_group productos_group_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_group + ADD CONSTRAINT productos_group_pkey PRIMARY KEY (id); + + +-- +-- Name: productos_prices productos_prices_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_prices + ADD CONSTRAINT productos_prices_pkey PRIMARY KEY (id); + + +-- +-- Name: productos_service productos_service_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_service + ADD CONSTRAINT productos_service_pkey PRIMARY KEY (id); + + +-- +-- Name: productos_servicecombo productos_servicecombo_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_servicecombo + ADD CONSTRAINT productos_servicecombo_pkey PRIMARY KEY (id); + + +-- +-- Name: productos_servicecomboitem productos_servicecomboitem_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_servicecomboitem + ADD CONSTRAINT productos_servicecomboitem_pkey PRIMARY KEY (id); + + +-- +-- Name: solicitudes_paymentreminder solicitudes_paymentreminder_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_paymentreminder + ADD CONSTRAINT solicitudes_paymentreminder_pkey PRIMARY KEY (id); + + +-- +-- Name: solicitudes_scheduledveterinarianreminder solicitudes_scheduledveterinarianreminder_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_scheduledveterinarianreminder + ADD CONSTRAINT solicitudes_scheduledveterinarianreminder_pkey PRIMARY KEY (id); + + +-- +-- Name: solicitudes_servicerequest_tags solicitudes_servicereque_servicerequest_id_tag_id_9679c655_uniq; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequest_tags + ADD CONSTRAINT solicitudes_servicereque_servicerequest_id_tag_id_9679c655_uniq UNIQUE (servicerequest_id, tag_id); + + +-- +-- Name: solicitudes_servicerequest solicitudes_servicerequest_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequest + ADD CONSTRAINT solicitudes_servicerequest_pkey PRIMARY KEY (id); + + +-- +-- Name: solicitudes_servicerequest_tags solicitudes_servicerequest_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequest_tags + ADD CONSTRAINT solicitudes_servicerequest_tags_pkey PRIMARY KEY (id); + + +-- +-- Name: solicitudes_servicerequeststatehistory solicitudes_servicerequeststatehistory_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequeststatehistory + ADD CONSTRAINT solicitudes_servicerequeststatehistory_pkey PRIMARY KEY (id); + + +-- +-- Name: solicitudes_veterinarianasked solicitudes_veterinarianasked_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_veterinarianasked + ADD CONSTRAINT solicitudes_veterinarianasked_pkey PRIMARY KEY (id); + + +-- +-- Name: storage_filestorage storage_filestorage_pkey; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.storage_filestorage + ADD CONSTRAINT storage_filestorage_pkey PRIMARY KEY (id); + + +-- +-- Name: common_individualturnfeegroupmembership unique_individual_turn_fee_group_veterinarian; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_individualturnfeegroupmembership + ADD CONSTRAINT unique_individual_turn_fee_group_veterinarian UNIQUE (group_id, veterinarian_id); + + +-- +-- Name: common_browserpushsubscription unique_user_push_subscription; Type: CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_browserpushsubscription + ADD CONSTRAINT unique_user_push_subscription UNIQUE (user_id, endpoint); + + +-- +-- Name: afip_authticket_owner_id_d709e1fd; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_authticket_owner_id_d709e1fd ON public.afip_authticket USING btree (owner_id); + + +-- +-- Name: afip_optional_optional_type_id_220064e9; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_optional_optional_type_id_220064e9 ON public.afip_optional USING btree (optional_type_id); + + +-- +-- Name: afip_optional_receipt_id_77239d93; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_optional_receipt_id_77239d93 ON public.afip_optional USING btree (receipt_id); + + +-- +-- Name: afip_pointofsales_owner_id_2185f335; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_pointofsales_owner_id_2185f335 ON public.afip_pointofsales USING btree (owner_id); + + +-- +-- Name: afip_receipt_client_vat_condition_id_f89cf8bd; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_receipt_client_vat_condition_id_f89cf8bd ON public.afip_receipt USING btree (client_vat_condition_id); + + +-- +-- Name: afip_receipt_concept_id_88affb9e; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_receipt_concept_id_88affb9e ON public.afip_receipt USING btree (concept_id); + + +-- +-- Name: afip_receipt_currency_id_ba710e7f; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_receipt_currency_id_ba710e7f ON public.afip_receipt USING btree (currency_id); + + +-- +-- Name: afip_receipt_document_type_id_5f650fda; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_receipt_document_type_id_5f650fda ON public.afip_receipt USING btree (document_type_id); + + +-- +-- Name: afip_receipt_point_of_sales_id_3c16f2cb; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_receipt_point_of_sales_id_3c16f2cb ON public.afip_receipt USING btree (point_of_sales_id); + + +-- +-- Name: afip_receipt_receipt_type_id_a24164e5; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_receipt_receipt_type_id_a24164e5 ON public.afip_receipt USING btree (receipt_type_id); + + +-- +-- Name: afip_receipt_related_receipts_from_receipt_id_b0ce1fdf; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_receipt_related_receipts_from_receipt_id_b0ce1fdf ON public.afip_receipt_related_receipts USING btree (from_receipt_id); + + +-- +-- Name: afip_receipt_related_receipts_to_receipt_id_b4d9e7dd; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_receipt_related_receipts_to_receipt_id_b4d9e7dd ON public.afip_receipt_related_receipts USING btree (to_receipt_id); + + +-- +-- Name: afip_receiptentry_receipt_id_fad00d23; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_receiptentry_receipt_id_fad00d23 ON public.afip_receiptentry USING btree (receipt_id); + + +-- +-- Name: afip_receiptentry_vat_id_91e23412; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_receiptentry_vat_id_91e23412 ON public.afip_receiptentry USING btree (vat_id); + + +-- +-- Name: afip_receiptvalidation_obs_receiptvalidation_id_467ed15a; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_receiptvalidation_obs_receiptvalidation_id_467ed15a ON public.afip_receiptvalidation_observations USING btree (receiptvalidation_id); + + +-- +-- Name: afip_receiptvalidation_observations_observation_id_f6af4427; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_receiptvalidation_observations_observation_id_f6af4427 ON public.afip_receiptvalidation_observations USING btree (observation_id); + + +-- +-- Name: afip_tax_receipt_id_dfbe504b; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_tax_receipt_id_dfbe504b ON public.afip_tax USING btree (receipt_id); + + +-- +-- Name: afip_tax_tax_type_id_1cb1340c; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_tax_tax_type_id_1cb1340c ON public.afip_tax USING btree (tax_type_id); + + +-- +-- Name: afip_vat_receipt_id_852703b3; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_vat_receipt_id_852703b3 ON public.afip_vat USING btree (receipt_id); + + +-- +-- Name: afip_vat_vat_type_id_81bdb5b9; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX afip_vat_vat_type_id_81bdb5b9 ON public.afip_vat USING btree (vat_type_id); + + +-- +-- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX auth_group_name_a6ea08ec_like ON public.auth_group USING btree (name varchar_pattern_ops); + + +-- +-- Name: auth_group_permissions_group_id_b120cbf9; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX auth_group_permissions_group_id_b120cbf9 ON public.auth_group_permissions USING btree (group_id); + + +-- +-- Name: auth_group_permissions_permission_id_84c5c92e; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX auth_group_permissions_permission_id_84c5c92e ON public.auth_group_permissions USING btree (permission_id); + + +-- +-- Name: auth_permission_content_type_id_2f476e4b; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX auth_permission_content_type_id_2f476e4b ON public.auth_permission USING btree (content_type_id); + + +-- +-- Name: auth_user_groups_group_id_97559544; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX auth_user_groups_group_id_97559544 ON public.auth_user_groups USING btree (group_id); + + +-- +-- Name: auth_user_groups_user_id_6a12ed8b; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX auth_user_groups_user_id_6a12ed8b ON public.auth_user_groups USING btree (user_id); + + +-- +-- Name: auth_user_user_permissions_permission_id_1fbb5f2c; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX auth_user_user_permissions_permission_id_1fbb5f2c ON public.auth_user_user_permissions USING btree (permission_id); + + +-- +-- Name: auth_user_user_permissions_user_id_a95ead1b; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX auth_user_user_permissions_user_id_a95ead1b ON public.auth_user_user_permissions USING btree (user_id); + + +-- +-- Name: auth_user_username_6821ab7c_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX auth_user_username_6821ab7c_like ON public.auth_user USING btree (username varchar_pattern_ops); + + +-- +-- Name: authtoken_token_key_10f0b77e_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX authtoken_token_key_10f0b77e_like ON public.authtoken_token USING btree (key varchar_pattern_ops); + + +-- +-- Name: common_apikey_key_1202faaf_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_apikey_key_1202faaf_like ON public.common_apikey USING btree (key varchar_pattern_ops); + + +-- +-- Name: common_apikey_name_42490eda_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_apikey_name_42490eda_like ON public.common_apikey USING btree (name varchar_pattern_ops); + + +-- +-- Name: common_browserpushsubscription_user_id_7e09bb30; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_browserpushsubscription_user_id_7e09bb30 ON public.common_browserpushsubscription USING btree (user_id); + + +-- +-- Name: common_campaign_user_id_a46005b7; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_campaign_user_id_a46005b7 ON public.common_campaign USING btree (user_id); + + +-- +-- Name: common_groupstudy_user_id_749b9ccc; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_groupstudy_user_id_749b9ccc ON public.common_groupstudy USING btree (user_id); + + +-- +-- Name: common_individualturnfeegroup_name_8c069885_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_individualturnfeegroup_name_8c069885_like ON public.common_individualturnfeegroup USING btree (name varchar_pattern_ops); + + +-- +-- Name: common_individualturnfeegroup_user_id_995ce424; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_individualturnfeegroup_user_id_995ce424 ON public.common_individualturnfeegroup USING btree (user_id); + + +-- +-- Name: common_individualturnfeegroupmembership_group_id_67b8a435; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_individualturnfeegroupmembership_group_id_67b8a435 ON public.common_individualturnfeegroupmembership USING btree (group_id); + + +-- +-- Name: common_locality_province_id_9b296d47; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_locality_province_id_9b296d47 ON public.common_locality USING btree (province_id); + + +-- +-- Name: common_locality_user_id_ffde8e19; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_locality_user_id_ffde8e19 ON public.common_locality USING btree (user_id); + + +-- +-- Name: common_medication_group_id_df0ff802; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_medication_group_id_df0ff802 ON public.common_medication USING btree (group_id); + + +-- +-- Name: common_medication_medication_type_id_42f3c960; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_medication_medication_type_id_42f3c960 ON public.common_medication USING btree (medication_type_id); + + +-- +-- Name: common_medication_presentation_id_b1d48131; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_medication_presentation_id_b1d48131 ON public.common_medication USING btree (presentation_id); + + +-- +-- Name: common_medication_user_id_154d54d6; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_medication_user_id_154d54d6 ON public.common_medication USING btree (user_id); + + +-- +-- Name: common_medicationgeneralname_medication_type_id_da757b4a; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_medicationgeneralname_medication_type_id_da757b4a ON public.common_medicationgeneralname USING btree (medication_type_id); + + +-- +-- Name: common_medicationgeneralname_user_id_71754911; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_medicationgeneralname_user_id_71754911 ON public.common_medicationgeneralname USING btree (user_id); + + +-- +-- Name: common_medicationpresentation_user_id_ba7cc92e; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_medicationpresentation_user_id_ba7cc92e ON public.common_medicationpresentation USING btree (user_id); + + +-- +-- Name: common_medictaiontype_user_id_5308fd10; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_medictaiontype_user_id_5308fd10 ON public.common_medicationtype USING btree (user_id); + + +-- +-- Name: common_neighborhood_coverage_area_0ac60ae9_id; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_neighborhood_coverage_area_0ac60ae9_id ON public.common_neighborhood USING gist (coverage_area); + + +-- +-- Name: common_neighborhood_name_68d6022b_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_neighborhood_name_68d6022b_like ON public.common_neighborhood USING btree (name varchar_pattern_ops); + + +-- +-- Name: common_neighborhood_user_id_8044d32d; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_neighborhood_user_id_8044d32d ON public.common_neighborhood USING btree (user_id); + + +-- +-- Name: common_petbreed_user_id_83cb0fd5; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_petbreed_user_id_83cb0fd5 ON public.common_petbreed USING btree (user_id); + + +-- +-- Name: common_province_name_a36c180d_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_province_name_a36c180d_like ON public.common_province USING btree (name varchar_pattern_ops); + + +-- +-- Name: common_province_user_id_fbc09627; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_province_user_id_fbc09627 ON public.common_province USING btree (user_id); + + +-- +-- Name: common_specialty_user_id_f7aa9f70; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_specialty_user_id_f7aa9f70 ON public.common_specialty USING btree (user_id); + + +-- +-- Name: common_study_group_study_id_9fc09f05; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_study_group_study_id_9fc09f05 ON public.common_study USING btree (group_study_id); + + +-- +-- Name: common_study_user_id_26c05a70; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_study_user_id_26c05a70 ON public.common_study USING btree (user_id); + + +-- +-- Name: common_tag_name_bdfe8b78_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_tag_name_bdfe8b78_like ON public.common_tag USING btree (name varchar_pattern_ops); + + +-- +-- Name: common_tag_user_id_a5700599; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_tag_user_id_a5700599 ON public.common_tag USING btree (user_id); + + +-- +-- Name: common_vaccine_user_id_17a58c7c; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX common_vaccine_user_id_17a58c7c ON public.common_vaccine USING btree (user_id); + + +-- +-- Name: django_admin_log_content_type_id_c4bce8eb; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX django_admin_log_content_type_id_c4bce8eb ON public.django_admin_log USING btree (content_type_id); + + +-- +-- Name: django_admin_log_user_id_c564eba6; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX django_admin_log_user_id_c564eba6 ON public.django_admin_log USING btree (user_id); + + +-- +-- Name: django_session_expire_date_a5c62663; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX django_session_expire_date_a5c62663 ON public.django_session USING btree (expire_date); + + +-- +-- Name: django_session_session_key_c0390e0f_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX django_session_session_key_c0390e0f_like ON public.django_session USING btree (session_key varchar_pattern_ops); + + +-- +-- Name: mascotas_availability_user_id_971e7046; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_availability_user_id_971e7046 ON public.mascotas_availability USING btree (user_id); + + +-- +-- Name: mascotas_availability_veterinarian_id_b05720a6; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_availability_veterinarian_id_b05720a6 ON public.mascotas_availability USING btree (veterinarian_id); + + +-- +-- Name: mascotas_followupimage_follow_up_id_d85bb816; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_followupimage_follow_up_id_d85bb816 ON public.mascotas_followupimage USING btree (follow_up_id); + + +-- +-- Name: mascotas_followupimage_user_id_22e7ba97; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_followupimage_user_id_22e7ba97 ON public.mascotas_followupimage USING btree (user_id); + + +-- +-- Name: mascotas_pet_breed_id_fa4e88cc; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_pet_breed_id_fa4e88cc ON public.mascotas_pet USING btree (breed_id); + + +-- +-- Name: mascotas_pet_owner_id_48bece20; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_pet_owner_id_48bece20 ON public.mascotas_pet USING btree (owner_id); + + +-- +-- Name: mascotas_pet_user_id_ce5a96db; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_pet_user_id_ce5a96db ON public.mascotas_pet USING btree (user_id); + + +-- +-- Name: mascotas_petowner_alias_b602bca2; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petowner_alias_b602bca2 ON public.mascotas_petowner USING btree (alias); + + +-- +-- Name: mascotas_petowner_alias_b602bca2_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petowner_alias_b602bca2_like ON public.mascotas_petowner USING btree (alias varchar_pattern_ops); + + +-- +-- Name: mascotas_petowner_campaing_id_6276311e; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petowner_campaing_id_6276311e ON public.mascotas_petowner USING btree (campaign_id); + + +-- +-- Name: mascotas_petowner_email_6c6454a4_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petowner_email_6c6454a4_like ON public.mascotas_petowner USING btree (email varchar_pattern_ops); + + +-- +-- Name: mascotas_petowner_neighborhood_id_7ff919d0; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petowner_neighborhood_id_7ff919d0 ON public.mascotas_petowner USING btree (neighborhood_id); + + +-- +-- Name: mascotas_petowner_tags_petowner_id_bdf49c35; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petowner_tags_petowner_id_bdf49c35 ON public.mascotas_petowner_tags USING btree (petowner_id); + + +-- +-- Name: mascotas_petowner_tags_tag_id_22e17ae3; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petowner_tags_tag_id_22e17ae3 ON public.mascotas_petowner_tags USING btree (tag_id); + + +-- +-- Name: mascotas_petowner_user_id_8a9e77b9; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petowner_user_id_8a9e77b9 ON public.mascotas_petowner USING btree (user_id); + + +-- +-- Name: mascotas_petstudy_pet_id_1d0f5d7f; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petstudy_pet_id_1d0f5d7f ON public.mascotas_petstudy USING btree (pet_id); + + +-- +-- Name: mascotas_petstudy_pet_owner_id_fc4711fc; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petstudy_pet_owner_id_fc4711fc ON public.mascotas_petstudy USING btree (pet_owner_id); + + +-- +-- Name: mascotas_petstudy_study_type_id_a7041330; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petstudy_study_type_id_a7041330 ON public.mascotas_petstudy USING btree (study_type_id); + + +-- +-- Name: mascotas_petstudy_user_id_b7e74644; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petstudy_user_id_b7e74644 ON public.mascotas_petstudy USING btree (user_id); + + +-- +-- Name: mascotas_petstudyfile_study_id_0d33bd85; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petstudyfile_study_id_0d33bd85 ON public.mascotas_petstudyfile USING btree (study_id); + + +-- +-- Name: mascotas_petstudyfile_user_id_d13934a7; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petstudyfile_user_id_d13934a7 ON public.mascotas_petstudyfile USING btree (user_id); + + +-- +-- Name: mascotas_petvaccine_pet_id_ea10adb8; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petvaccine_pet_id_ea10adb8 ON public.mascotas_petvaccine USING btree (pet_id); + + +-- +-- Name: mascotas_petvaccine_pet_owner_id_dcb8d272; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petvaccine_pet_owner_id_dcb8d272 ON public.mascotas_petvaccine USING btree (pet_owner_id); + + +-- +-- Name: mascotas_petvaccine_user_id_50f8fb89; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petvaccine_user_id_50f8fb89 ON public.mascotas_petvaccine USING btree (user_id); + + +-- +-- Name: mascotas_petvaccine_vaccine_id_4e53e1d9; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_petvaccine_vaccine_id_4e53e1d9 ON public.mascotas_petvaccine USING btree (vaccine_id); + + +-- +-- Name: mascotas_privatenote_pet_owner_id_b9a10142; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_privatenote_pet_owner_id_b9a10142 ON public.mascotas_privatenote USING btree (pet_owner_id); + + +-- +-- Name: mascotas_privatenote_vet_visit_id_05975fa9; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_privatenote_vet_visit_id_05975fa9 ON public.mascotas_privatenote USING btree (vet_visit_id); + + +-- +-- Name: mascotas_unavailability_user_id_c8c6ead1; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_unavailability_user_id_c8c6ead1 ON public.mascotas_unavailability USING btree (user_id); + + +-- +-- Name: mascotas_unavailability_veterinarian_id_40a587d3; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_unavailability_veterinarian_id_40a587d3 ON public.mascotas_unavailability USING btree (veterinarian_id); + + +-- +-- Name: mascotas_veterinarian_alias_6b2c416f_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinarian_alias_6b2c416f_like ON public.mascotas_veterinarian USING btree (alias varchar_pattern_ops); + + +-- +-- Name: mascotas_veterinarian_cove_veterinariancoveragearea_i_ee484283; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinarian_cove_veterinariancoveragearea_i_ee484283 ON public.mascotas_veterinarian_coverage_areas USING btree (veterinariancoveragearea_id); + + +-- +-- Name: mascotas_veterinarian_coverage_areas_veterinarian_id_449036a4; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinarian_coverage_areas_veterinarian_id_449036a4 ON public.mascotas_veterinarian_coverage_areas USING btree (veterinarian_id); + + +-- +-- Name: mascotas_veterinarian_neighborhood_neighborhood_id_7e314d0f; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinarian_neighborhood_neighborhood_id_7e314d0f ON public.mascotas_veterinarian_neighborhood USING btree (neighborhood_id); + + +-- +-- Name: mascotas_veterinarian_neighborhood_veterinarian_id_ae73ddbc; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinarian_neighborhood_veterinarian_id_ae73ddbc ON public.mascotas_veterinarian_neighborhood USING btree (veterinarian_id); + + +-- +-- Name: mascotas_veterinarian_specialization_specialty_id_d9420b45; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinarian_specialization_specialty_id_d9420b45 ON public.mascotas_veterinarian_specialization USING btree (specialty_id); + + +-- +-- Name: mascotas_veterinarian_specialization_veterinarian_id_39ec40da; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinarian_specialization_veterinarian_id_39ec40da ON public.mascotas_veterinarian_specialization USING btree (veterinarian_id); + + +-- +-- Name: mascotas_veterinarian_user_id_2513edbc; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinarian_user_id_2513edbc ON public.mascotas_veterinarian USING btree (user_id); + + +-- +-- Name: mascotas_veterinariancoveragearea_locality_id_9be554b5; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinariancoveragearea_locality_id_9be554b5 ON public.mascotas_veterinariancoveragearea USING btree (locality_id); + + +-- +-- Name: mascotas_veterinariancoveragearea_name_20c8fa0c_like; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinariancoveragearea_name_20c8fa0c_like ON public.mascotas_veterinariancoveragearea USING btree (name varchar_pattern_ops); + + +-- +-- Name: mascotas_veterinariancoveragearea_polygon_23fef76d_id; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinariancoveragearea_polygon_23fef76d_id ON public.mascotas_veterinariancoveragearea USING gist (polygon); + + +-- +-- Name: mascotas_veterinariancoveragearea_province_id_9c4f285b; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinariancoveragearea_province_id_9c4f285b ON public.mascotas_veterinariancoveragearea USING btree (province_id); + + +-- +-- Name: mascotas_veterinariancoveragearea_user_id_03f8be84; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_veterinariancoveragearea_user_id_03f8be84 ON public.mascotas_veterinariancoveragearea USING btree (user_id); + + +-- +-- Name: mascotas_vetvisit_owner_id_01ab9bbe; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisit_owner_id_01ab9bbe ON public.mascotas_vetvisit USING btree (owner_id); + + +-- +-- Name: mascotas_vetvisit_pet_id_4aa0c991; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisit_pet_id_4aa0c991 ON public.mascotas_vetvisit USING btree (pet_id); + + +-- +-- Name: mascotas_vetvisit_pets_pet_id_b8de2810; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisit_pets_pet_id_b8de2810 ON public.mascotas_vetvisit_pets USING btree (pet_id); + + +-- +-- Name: mascotas_vetvisit_pets_vetvisit_id_bf7b1efa; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisit_pets_vetvisit_id_bf7b1efa ON public.mascotas_vetvisit_pets USING btree (vetvisit_id); + + +-- +-- Name: mascotas_vetvisit_user_id_d997ad63; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisit_user_id_d997ad63 ON public.mascotas_vetvisit USING btree (user_id); + + +-- +-- Name: mascotas_vetvisit_veterinarian_id_68244937; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisit_veterinarian_id_68244937 ON public.mascotas_vetvisit USING btree (veterinarian_id); + + +-- +-- Name: mascotas_vetvisitfollowup_pet_id_ab11eefe; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisitfollowup_pet_id_ab11eefe ON public.mascotas_vetvisitfollowup USING btree (pet_id); + + +-- +-- Name: mascotas_vetvisitfollowup_user_id_ee35759b; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisitfollowup_user_id_ee35759b ON public.mascotas_vetvisitfollowup USING btree (user_id); + + +-- +-- Name: mascotas_vetvisitfollowup_visit_id_7dcea933; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisitfollowup_visit_id_7dcea933 ON public.mascotas_vetvisitfollowup USING btree (visit_id); + + +-- +-- Name: mascotas_vetvisitpetreason_pet_id_20898cf4; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisitpetreason_pet_id_20898cf4 ON public.mascotas_vetvisitpetreason USING btree (pet_id); + + +-- +-- Name: mascotas_vetvisitpetreason_user_id_dd0c6b8d; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisitpetreason_user_id_dd0c6b8d ON public.mascotas_vetvisitpetreason USING btree (user_id); + + +-- +-- Name: mascotas_vetvisitpetreason_visit_id_60ced563; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisitpetreason_visit_id_60ced563 ON public.mascotas_vetvisitpetreason USING btree (visit_id); + + +-- +-- Name: mascotas_vetvisitreport_owner_id_1c9eb5b4; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisitreport_owner_id_1c9eb5b4 ON public.mascotas_vetvisitreport USING btree (owner_id); + + +-- +-- Name: mascotas_vetvisitreport_pet_id_4705bddc; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisitreport_pet_id_4705bddc ON public.mascotas_vetvisitreport USING btree (pet_id); + + +-- +-- Name: mascotas_vetvisitreport_user_id_78338828; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisitreport_user_id_78338828 ON public.mascotas_vetvisitreport USING btree (user_id); + + +-- +-- Name: mascotas_vetvisitreport_vet_id_a8555aa0; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisitreport_vet_id_a8555aa0 ON public.mascotas_vetvisitreport USING btree (vet_id); + + +-- +-- Name: mascotas_vetvisitreport_visit_id_1cf8a1b1; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX mascotas_vetvisitreport_visit_id_1cf8a1b1 ON public.mascotas_vetvisitreport USING btree (visit_id); + + +-- +-- Name: payments_mercadopagoaccount_user_id_d69fae5a; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX payments_mercadopagoaccount_user_id_d69fae5a ON public.payments_mercadopagoaccount USING btree (user_id); + + +-- +-- Name: payments_mercadopagoaccount_veterinarian_id_60c4d520; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX payments_mercadopagoaccount_veterinarian_id_60c4d520 ON public.payments_mercadopagoaccount USING btree (veterinarian_id); + + +-- +-- Name: payments_mercadopagonotification_user_id_cd4191f2; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX payments_mercadopagonotification_user_id_cd4191f2 ON public.payments_mercadopagonotification USING btree (user_id); + + +-- +-- Name: productos_cart_petowner_id_17265ba8; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_cart_petowner_id_17265ba8 ON public.productos_cart USING btree (petowner_id); + + +-- +-- Name: productos_cart_user_id_29a2f436; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_cart_user_id_29a2f436 ON public.productos_cart USING btree (user_id); + + +-- +-- Name: productos_cart_veterinarian_id_f5151a2d; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_cart_veterinarian_id_f5151a2d ON public.productos_cart USING btree (veterinarian_id); + + +-- +-- Name: productos_cartitem_cart_id_1dd851c4; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_cartitem_cart_id_1dd851c4 ON public.productos_cartitem USING btree (cart_id); + + +-- +-- Name: productos_cartitem_pet_id_51b94120; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_cartitem_pet_id_51b94120 ON public.productos_cartitem USING btree (pet_id); + + +-- +-- Name: productos_cartitem_service_id_f66feceb; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_cartitem_service_id_f66feceb ON public.productos_cartitem USING btree (service_id); + + +-- +-- Name: productos_cartitem_user_id_6ee43726; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_cartitem_user_id_6ee43726 ON public.productos_cartitem USING btree (user_id); + + +-- +-- Name: productos_cartpetreason_cart_id_f8ecb6a7; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_cartpetreason_cart_id_f8ecb6a7 ON public.productos_cartpetreason USING btree (cart_id); + + +-- +-- Name: productos_cartpetreason_pet_id_f76ce088; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_cartpetreason_pet_id_f76ce088 ON public.productos_cartpetreason USING btree (pet_id); + + +-- +-- Name: productos_cartpetreason_user_id_d4eba506; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_cartpetreason_user_id_d4eba506 ON public.productos_cartpetreason USING btree (user_id); + + +-- +-- Name: productos_cartresumeitem_cart_id_325cd39b; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_cartresumeitem_cart_id_325cd39b ON public.productos_cartresumeitem USING btree (cart_id); + + +-- +-- Name: productos_cartresumeitem_user_id_d28b9f71; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_cartresumeitem_user_id_d28b9f71 ON public.productos_cartresumeitem USING btree (user_id); + + +-- +-- Name: productos_category_group_id_394f5a13; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_category_group_id_394f5a13 ON public.productos_category USING btree (group_id); + + +-- +-- Name: productos_category_user_id_185f4c0e; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_category_user_id_185f4c0e ON public.productos_category USING btree (user_id); + + +-- +-- Name: productos_categoryservice_category_id_ed33217e; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_categoryservice_category_id_ed33217e ON public.productos_categoryservice USING btree (category_id); + + +-- +-- Name: productos_categoryservice_service_id_54081886; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_categoryservice_service_id_54081886 ON public.productos_categoryservice USING btree (service_id); + + +-- +-- Name: productos_categoryservice_user_id_28227975; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_categoryservice_user_id_28227975 ON public.productos_categoryservice USING btree (user_id); + + +-- +-- Name: productos_discounts_service_id_9006355a; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_discounts_service_id_9006355a ON public.productos_discounts USING btree (service_id); + + +-- +-- Name: productos_discounts_user_id_45499d97; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_discounts_user_id_45499d97 ON public.productos_discounts USING btree (user_id); + + +-- +-- Name: productos_group_user_id_d1a81355; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_group_user_id_d1a81355 ON public.productos_group USING btree (user_id); + + +-- +-- Name: productos_prices_service_id_520c8547; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_prices_service_id_520c8547 ON public.productos_prices USING btree (service_id); + + +-- +-- Name: productos_prices_user_id_f4a7cb39; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_prices_user_id_f4a7cb39 ON public.productos_prices USING btree (user_id); + + +-- +-- Name: productos_prices_veterinarian_id_a2d705b2; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_prices_veterinarian_id_a2d705b2 ON public.productos_prices USING btree (veterinarian_id); + + +-- +-- Name: productos_service_category_id_2f6c75f8; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_service_category_id_2f6c75f8 ON public.productos_service USING btree (category_id); + + +-- +-- Name: productos_service_speciality_id_fcf88d81; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_service_speciality_id_fcf88d81 ON public.productos_service USING btree (speciality_id); + + +-- +-- Name: productos_service_user_id_5c4d0af4; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_service_user_id_5c4d0af4 ON public.productos_service USING btree (user_id); + + +-- +-- Name: productos_servicecombo_user_id_89889500; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_servicecombo_user_id_89889500 ON public.productos_servicecombo USING btree (user_id); + + +-- +-- Name: productos_servicecomboitem_category_id_ba983d5e; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_servicecomboitem_category_id_ba983d5e ON public.productos_servicecomboitem USING btree (category_id); + + +-- +-- Name: productos_servicecomboitem_combo_id_2a1537cc; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_servicecomboitem_combo_id_2a1537cc ON public.productos_servicecomboitem USING btree (combo_id); + + +-- +-- Name: productos_servicecomboitem_service_id_e956d6a5; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_servicecomboitem_service_id_e956d6a5 ON public.productos_servicecomboitem USING btree (service_id); + + +-- +-- Name: productos_servicecomboitem_user_id_1fcca42f; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX productos_servicecomboitem_user_id_1fcca42f ON public.productos_servicecomboitem USING btree (user_id); + + +-- +-- Name: solicitudes_paymentreminder_service_request_id_96b7dc5a; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_paymentreminder_service_request_id_96b7dc5a ON public.solicitudes_paymentreminder USING btree (service_request_id); + + +-- +-- Name: solicitudes_paymentreminder_user_id_2a1abe4e; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_paymentreminder_user_id_2a1abe4e ON public.solicitudes_paymentreminder USING btree (user_id); + + +-- +-- Name: solicitudes_scheduledveter_veterinarian_asked_id_1455e6a5; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_scheduledveter_veterinarian_asked_id_1455e6a5 ON public.solicitudes_scheduledveterinarianreminder USING btree (veterinarian_asked_id); + + +-- +-- Name: solicitudes_scheduledveterinarianreminder_user_id_c4f5c13f; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_scheduledveterinarianreminder_user_id_c4f5c13f ON public.solicitudes_scheduledveterinarianreminder USING btree (user_id); + + +-- +-- Name: solicitudes_servicerequest_attended_by_id_b3adc112; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_servicerequest_attended_by_id_b3adc112 ON public.solicitudes_servicerequest USING btree (attended_by_id); + + +-- +-- Name: solicitudes_servicerequest_campaign_id_b1ebe927; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_servicerequest_campaign_id_b1ebe927 ON public.solicitudes_servicerequest USING btree (campaign_id); + + +-- +-- Name: solicitudes_servicerequest_cart_id_e64f1f7f; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_servicerequest_cart_id_e64f1f7f ON public.solicitudes_servicerequest USING btree (cart_id); + + +-- +-- Name: solicitudes_servicerequest_petowner_id_caba92e2; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_servicerequest_petowner_id_caba92e2 ON public.solicitudes_servicerequest USING btree (petowner_id); + + +-- +-- Name: solicitudes_servicerequest_service_request_id_1f346f63; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_servicerequest_service_request_id_1f346f63 ON public.solicitudes_servicerequeststatehistory USING btree (service_request_id); + + +-- +-- Name: solicitudes_servicerequest_tags_servicerequest_id_22006a8d; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_servicerequest_tags_servicerequest_id_22006a8d ON public.solicitudes_servicerequest_tags USING btree (servicerequest_id); + + +-- +-- Name: solicitudes_servicerequest_tags_tag_id_7137f3b2; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_servicerequest_tags_tag_id_7137f3b2 ON public.solicitudes_servicerequest_tags USING btree (tag_id); + + +-- +-- Name: solicitudes_servicerequest_user_id_a51ceaad; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_servicerequest_user_id_a51ceaad ON public.solicitudes_servicerequest USING btree (user_id); + + +-- +-- Name: solicitudes_servicerequest_veterinarian_id_f1971af2; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_servicerequest_veterinarian_id_f1971af2 ON public.solicitudes_servicerequest USING btree (veterinarian_id); + + +-- +-- Name: solicitudes_servicerequeststatehistory_user_id_27af1f31; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_servicerequeststatehistory_user_id_27af1f31 ON public.solicitudes_servicerequeststatehistory USING btree (user_id); + + +-- +-- Name: solicitudes_state_19ea48_idx; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_state_19ea48_idx ON public.solicitudes_servicerequest USING btree (state); + + +-- +-- Name: solicitudes_veterinarianasked_service_request_id_9215ee9e; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_veterinarianasked_service_request_id_9215ee9e ON public.solicitudes_veterinarianasked USING btree (service_request_id); + + +-- +-- Name: solicitudes_veterinarianasked_veterinarian_id_97950454; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX solicitudes_veterinarianasked_veterinarian_id_97950454 ON public.solicitudes_veterinarianasked USING btree (veterinarian_id); + + +-- +-- Name: storage_filestorage_content_type_id_f3950634; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX storage_filestorage_content_type_id_f3950634 ON public.storage_filestorage USING btree (content_type_id); + + +-- +-- Name: storage_filestorage_user_id_2588dce9; Type: INDEX; Schema: public; Owner: mariano +-- + +CREATE INDEX storage_filestorage_user_id_2588dce9 ON public.storage_filestorage USING btree (user_id); + + +-- +-- Name: afip_authticket afip_authticket_owner_id_d709e1fd_fk_afip_taxpayer_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_authticket + ADD CONSTRAINT afip_authticket_owner_id_d709e1fd_fk_afip_taxpayer_id FOREIGN KEY (owner_id) REFERENCES public.afip_taxpayer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_optional afip_optional_optional_type_id_220064e9_fk_afip_optionaltype_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_optional + ADD CONSTRAINT afip_optional_optional_type_id_220064e9_fk_afip_optionaltype_id FOREIGN KEY (optional_type_id) REFERENCES public.afip_optionaltype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_optional afip_optional_receipt_id_77239d93_fk_afip_receipt_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_optional + ADD CONSTRAINT afip_optional_receipt_id_77239d93_fk_afip_receipt_id FOREIGN KEY (receipt_id) REFERENCES public.afip_receipt(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_pointofsales afip_pointofsales_owner_id_2185f335_fk_afip_taxpayer_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_pointofsales + ADD CONSTRAINT afip_pointofsales_owner_id_2185f335_fk_afip_taxpayer_id FOREIGN KEY (owner_id) REFERENCES public.afip_taxpayer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receipt afip_receipt_client_vat_condition_f89cf8bd_fk_afip_clie; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipt + ADD CONSTRAINT afip_receipt_client_vat_condition_f89cf8bd_fk_afip_clie FOREIGN KEY (client_vat_condition_id) REFERENCES public.afip_clientvatcondition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receipt afip_receipt_concept_id_88affb9e_fk_afip_concepttype_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipt + ADD CONSTRAINT afip_receipt_concept_id_88affb9e_fk_afip_concepttype_id FOREIGN KEY (concept_id) REFERENCES public.afip_concepttype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receipt afip_receipt_currency_id_ba710e7f_fk_afip_currencytype_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipt + ADD CONSTRAINT afip_receipt_currency_id_ba710e7f_fk_afip_currencytype_id FOREIGN KEY (currency_id) REFERENCES public.afip_currencytype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receipt afip_receipt_document_type_id_5f650fda_fk_afip_documenttype_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipt + ADD CONSTRAINT afip_receipt_document_type_id_5f650fda_fk_afip_documenttype_id FOREIGN KEY (document_type_id) REFERENCES public.afip_documenttype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receipt afip_receipt_point_of_sales_id_3c16f2cb_fk_afip_pointofsales_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipt + ADD CONSTRAINT afip_receipt_point_of_sales_id_3c16f2cb_fk_afip_pointofsales_id FOREIGN KEY (point_of_sales_id) REFERENCES public.afip_pointofsales(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receipt afip_receipt_receipt_type_id_a24164e5_fk_afip_receipttype_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipt + ADD CONSTRAINT afip_receipt_receipt_type_id_a24164e5_fk_afip_receipttype_id FOREIGN KEY (receipt_type_id) REFERENCES public.afip_receipttype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receipt_related_receipts afip_receipt_related_from_receipt_id_b0ce1fdf_fk_afip_rece; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipt_related_receipts + ADD CONSTRAINT afip_receipt_related_from_receipt_id_b0ce1fdf_fk_afip_rece FOREIGN KEY (from_receipt_id) REFERENCES public.afip_receipt(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receipt_related_receipts afip_receipt_related_to_receipt_id_b4d9e7dd_fk_afip_rece; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receipt_related_receipts + ADD CONSTRAINT afip_receipt_related_to_receipt_id_b4d9e7dd_fk_afip_rece FOREIGN KEY (to_receipt_id) REFERENCES public.afip_receipt(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receiptentry afip_receiptentry_receipt_id_fad00d23_fk_afip_receipt_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptentry + ADD CONSTRAINT afip_receiptentry_receipt_id_fad00d23_fk_afip_receipt_id FOREIGN KEY (receipt_id) REFERENCES public.afip_receipt(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receiptentry afip_receiptentry_vat_id_91e23412_fk_afip_vattype_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptentry + ADD CONSTRAINT afip_receiptentry_vat_id_91e23412_fk_afip_vattype_id FOREIGN KEY (vat_id) REFERENCES public.afip_vattype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receiptpdf afip_receiptpdf_receipt_id_aecec92a_fk_afip_receipt_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptpdf + ADD CONSTRAINT afip_receiptpdf_receipt_id_aecec92a_fk_afip_receipt_id FOREIGN KEY (receipt_id) REFERENCES public.afip_receipt(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receiptvalidation_observations afip_receiptvalidati_observation_id_f6af4427_fk_afip_obse; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptvalidation_observations + ADD CONSTRAINT afip_receiptvalidati_observation_id_f6af4427_fk_afip_obse FOREIGN KEY (observation_id) REFERENCES public.afip_observation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receiptvalidation_observations afip_receiptvalidati_receiptvalidation_id_467ed15a_fk_afip_rece; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptvalidation_observations + ADD CONSTRAINT afip_receiptvalidati_receiptvalidation_id_467ed15a_fk_afip_rece FOREIGN KEY (receiptvalidation_id) REFERENCES public.afip_receiptvalidation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_receiptvalidation afip_receiptvalidation_receipt_id_8dcb508f_fk_afip_receipt_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_receiptvalidation + ADD CONSTRAINT afip_receiptvalidation_receipt_id_8dcb508f_fk_afip_receipt_id FOREIGN KEY (receipt_id) REFERENCES public.afip_receipt(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_tax afip_tax_receipt_id_dfbe504b_fk_afip_receipt_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_tax + ADD CONSTRAINT afip_tax_receipt_id_dfbe504b_fk_afip_receipt_id FOREIGN KEY (receipt_id) REFERENCES public.afip_receipt(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_tax afip_tax_tax_type_id_1cb1340c_fk_afip_taxtype_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_tax + ADD CONSTRAINT afip_tax_tax_type_id_1cb1340c_fk_afip_taxtype_id FOREIGN KEY (tax_type_id) REFERENCES public.afip_taxtype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_vat afip_vat_receipt_id_852703b3_fk_afip_receipt_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_vat + ADD CONSTRAINT afip_vat_receipt_id_852703b3_fk_afip_receipt_id FOREIGN KEY (receipt_id) REFERENCES public.afip_receipt(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: afip_vat afip_vat_vat_type_id_81bdb5b9_fk_afip_vattype_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.afip_vat + ADD CONSTRAINT afip_vat_vat_type_id_81bdb5b9_fk_afip_vattype_id FOREIGN KEY (vat_type_id) REFERENCES public.afip_vattype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_group_permissions auth_group_permissio_permission_id_84c5c92e_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_group_permissions + ADD CONSTRAINT auth_group_permissio_permission_id_84c5c92e_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_group_permissions auth_group_permissions_group_id_b120cbf9_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_group_permissions + ADD CONSTRAINT auth_group_permissions_group_id_b120cbf9_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_permission auth_permission_content_type_id_2f476e4b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_permission + ADD CONSTRAINT auth_permission_content_type_id_2f476e4b_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_user_groups auth_user_groups_group_id_97559544_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_user_groups + ADD CONSTRAINT auth_user_groups_group_id_97559544_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_user_groups auth_user_groups_user_id_6a12ed8b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_user_groups + ADD CONSTRAINT auth_user_groups_user_id_6a12ed8b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_user_user_permissions auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_user_user_permissions + ADD CONSTRAINT auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.auth_user_user_permissions + ADD CONSTRAINT auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: authtoken_token authtoken_token_user_id_35299eff_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.authtoken_token + ADD CONSTRAINT authtoken_token_user_id_35299eff_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_browserpushsubscription common_browserpushsubscription_user_id_7e09bb30_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_browserpushsubscription + ADD CONSTRAINT common_browserpushsubscription_user_id_7e09bb30_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_campaign common_campaign_user_id_a46005b7_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_campaign + ADD CONSTRAINT common_campaign_user_id_a46005b7_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_groupstudy common_groupstudy_user_id_749b9ccc_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_groupstudy + ADD CONSTRAINT common_groupstudy_user_id_749b9ccc_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_individualturnfeegroupmembership common_individualtur_group_id_67b8a435_fk_common_in; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_individualturnfeegroupmembership + ADD CONSTRAINT common_individualtur_group_id_67b8a435_fk_common_in FOREIGN KEY (group_id) REFERENCES public.common_individualturnfeegroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_individualturnfeegroupmembership common_individualtur_veterinarian_id_d7c346e0_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_individualturnfeegroupmembership + ADD CONSTRAINT common_individualtur_veterinarian_id_d7c346e0_fk_mascotas_ FOREIGN KEY (veterinarian_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_individualturnfeegroup common_individualturnfeegroup_user_id_995ce424_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_individualturnfeegroup + ADD CONSTRAINT common_individualturnfeegroup_user_id_995ce424_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_locality common_locality_province_id_9b296d47_fk_common_province_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_locality + ADD CONSTRAINT common_locality_province_id_9b296d47_fk_common_province_id FOREIGN KEY (province_id) REFERENCES public.common_province(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_locality common_locality_user_id_ffde8e19_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_locality + ADD CONSTRAINT common_locality_user_id_ffde8e19_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_medication common_medication_group_id_df0ff802_fk_common_me; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_medication + ADD CONSTRAINT common_medication_group_id_df0ff802_fk_common_me FOREIGN KEY (group_id) REFERENCES public.common_medicationgeneralname(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_medication common_medication_medication_type_id_42f3c960_fk_common_me; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_medication + ADD CONSTRAINT common_medication_medication_type_id_42f3c960_fk_common_me FOREIGN KEY (medication_type_id) REFERENCES public.common_medicationtype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_medication common_medication_presentation_id_b1d48131_fk_common_me; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_medication + ADD CONSTRAINT common_medication_presentation_id_b1d48131_fk_common_me FOREIGN KEY (presentation_id) REFERENCES public.common_medicationpresentation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_medication common_medication_user_id_154d54d6_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_medication + ADD CONSTRAINT common_medication_user_id_154d54d6_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_medicationgeneralname common_medicationgen_medication_type_id_da757b4a_fk_common_me; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_medicationgeneralname + ADD CONSTRAINT common_medicationgen_medication_type_id_da757b4a_fk_common_me FOREIGN KEY (medication_type_id) REFERENCES public.common_medicationtype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_medicationgeneralname common_medicationgeneralname_user_id_71754911_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_medicationgeneralname + ADD CONSTRAINT common_medicationgeneralname_user_id_71754911_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_medicationpresentation common_medicationpresentation_user_id_ba7cc92e_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_medicationpresentation + ADD CONSTRAINT common_medicationpresentation_user_id_ba7cc92e_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_medicationtype common_medictaiontype_user_id_5308fd10_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_medicationtype + ADD CONSTRAINT common_medictaiontype_user_id_5308fd10_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_neighborhood common_neighborhood_user_id_8044d32d_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_neighborhood + ADD CONSTRAINT common_neighborhood_user_id_8044d32d_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_petbreed common_petbreed_user_id_83cb0fd5_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_petbreed + ADD CONSTRAINT common_petbreed_user_id_83cb0fd5_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_province common_province_user_id_fbc09627_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_province + ADD CONSTRAINT common_province_user_id_fbc09627_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_specialty common_specialty_user_id_f7aa9f70_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_specialty + ADD CONSTRAINT common_specialty_user_id_f7aa9f70_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_study common_study_group_study_id_9fc09f05_fk_common_groupstudy_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_study + ADD CONSTRAINT common_study_group_study_id_9fc09f05_fk_common_groupstudy_id FOREIGN KEY (group_study_id) REFERENCES public.common_groupstudy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_study common_study_user_id_26c05a70_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_study + ADD CONSTRAINT common_study_user_id_26c05a70_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_tag common_tag_user_id_a5700599_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_tag + ADD CONSTRAINT common_tag_user_id_a5700599_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: common_vaccine common_vaccine_user_id_17a58c7c_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.common_vaccine + ADD CONSTRAINT common_vaccine_user_id_17a58c7c_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: django_admin_log django_admin_log_content_type_id_c4bce8eb_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.django_admin_log + ADD CONSTRAINT django_admin_log_content_type_id_c4bce8eb_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: django_admin_log django_admin_log_user_id_c564eba6_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.django_admin_log + ADD CONSTRAINT django_admin_log_user_id_c564eba6_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_availability mascotas_availabilit_veterinarian_id_b05720a6_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_availability + ADD CONSTRAINT mascotas_availabilit_veterinarian_id_b05720a6_fk_mascotas_ FOREIGN KEY (veterinarian_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_availability mascotas_availability_user_id_971e7046_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_availability + ADD CONSTRAINT mascotas_availability_user_id_971e7046_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_followupimage mascotas_followupima_follow_up_id_d85bb816_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_followupimage + ADD CONSTRAINT mascotas_followupima_follow_up_id_d85bb816_fk_mascotas_ FOREIGN KEY (follow_up_id) REFERENCES public.mascotas_vetvisitfollowup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_followupimage mascotas_followupimage_user_id_22e7ba97_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_followupimage + ADD CONSTRAINT mascotas_followupimage_user_id_22e7ba97_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_pet mascotas_pet_breed_id_fa4e88cc_fk_common_petbreed_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_pet + ADD CONSTRAINT mascotas_pet_breed_id_fa4e88cc_fk_common_petbreed_id FOREIGN KEY (breed_id) REFERENCES public.common_petbreed(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_pet mascotas_pet_owner_id_48bece20_fk_mascotas_petowner_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_pet + ADD CONSTRAINT mascotas_pet_owner_id_48bece20_fk_mascotas_petowner_id FOREIGN KEY (owner_id) REFERENCES public.mascotas_petowner(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_pet mascotas_pet_user_id_ce5a96db_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_pet + ADD CONSTRAINT mascotas_pet_user_id_ce5a96db_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petowner mascotas_petowner_campaign_id_4851521a_fk_common_campaign_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petowner + ADD CONSTRAINT mascotas_petowner_campaign_id_4851521a_fk_common_campaign_id FOREIGN KEY (campaign_id) REFERENCES public.common_campaign(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petowner mascotas_petowner_neighborhood_id_7ff919d0_fk_common_ne; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petowner + ADD CONSTRAINT mascotas_petowner_neighborhood_id_7ff919d0_fk_common_ne FOREIGN KEY (neighborhood_id) REFERENCES public.common_neighborhood(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petowner_tags mascotas_petowner_ta_petowner_id_bdf49c35_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petowner_tags + ADD CONSTRAINT mascotas_petowner_ta_petowner_id_bdf49c35_fk_mascotas_ FOREIGN KEY (petowner_id) REFERENCES public.mascotas_petowner(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petowner_tags mascotas_petowner_tags_tag_id_22e17ae3_fk_common_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petowner_tags + ADD CONSTRAINT mascotas_petowner_tags_tag_id_22e17ae3_fk_common_tag_id FOREIGN KEY (tag_id) REFERENCES public.common_tag(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petowner mascotas_petowner_user_id_8a9e77b9_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petowner + ADD CONSTRAINT mascotas_petowner_user_id_8a9e77b9_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petstudy mascotas_petstudy_pet_id_1d0f5d7f_fk_mascotas_pet_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petstudy + ADD CONSTRAINT mascotas_petstudy_pet_id_1d0f5d7f_fk_mascotas_pet_id FOREIGN KEY (pet_id) REFERENCES public.mascotas_pet(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petstudy mascotas_petstudy_pet_owner_id_fc4711fc_fk_mascotas_petowner_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petstudy + ADD CONSTRAINT mascotas_petstudy_pet_owner_id_fc4711fc_fk_mascotas_petowner_id FOREIGN KEY (pet_owner_id) REFERENCES public.mascotas_petowner(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petstudy mascotas_petstudy_study_type_id_a7041330_fk_common_study_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petstudy + ADD CONSTRAINT mascotas_petstudy_study_type_id_a7041330_fk_common_study_id FOREIGN KEY (study_type_id) REFERENCES public.common_study(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petstudy mascotas_petstudy_user_id_b7e74644_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petstudy + ADD CONSTRAINT mascotas_petstudy_user_id_b7e74644_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petstudyfile mascotas_petstudyfile_study_id_0d33bd85_fk_mascotas_petstudy_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petstudyfile + ADD CONSTRAINT mascotas_petstudyfile_study_id_0d33bd85_fk_mascotas_petstudy_id FOREIGN KEY (study_id) REFERENCES public.mascotas_petstudy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petstudyfile mascotas_petstudyfile_user_id_d13934a7_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petstudyfile + ADD CONSTRAINT mascotas_petstudyfile_user_id_d13934a7_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petvaccine mascotas_petvaccine_pet_id_ea10adb8_fk_mascotas_pet_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petvaccine + ADD CONSTRAINT mascotas_petvaccine_pet_id_ea10adb8_fk_mascotas_pet_id FOREIGN KEY (pet_id) REFERENCES public.mascotas_pet(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petvaccine mascotas_petvaccine_pet_owner_id_dcb8d272_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petvaccine + ADD CONSTRAINT mascotas_petvaccine_pet_owner_id_dcb8d272_fk_mascotas_ FOREIGN KEY (pet_owner_id) REFERENCES public.mascotas_petowner(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petvaccine mascotas_petvaccine_user_id_50f8fb89_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petvaccine + ADD CONSTRAINT mascotas_petvaccine_user_id_50f8fb89_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_petvaccine mascotas_petvaccine_vaccine_id_4e53e1d9_fk_common_vaccine_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_petvaccine + ADD CONSTRAINT mascotas_petvaccine_vaccine_id_4e53e1d9_fk_common_vaccine_id FOREIGN KEY (vaccine_id) REFERENCES public.common_vaccine(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_privatenote mascotas_privatenote_pet_owner_id_b9a10142_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_privatenote + ADD CONSTRAINT mascotas_privatenote_pet_owner_id_b9a10142_fk_mascotas_ FOREIGN KEY (pet_owner_id) REFERENCES public.mascotas_petowner(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_privatenote mascotas_privatenote_vet_visit_id_05975fa9_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_privatenote + ADD CONSTRAINT mascotas_privatenote_vet_visit_id_05975fa9_fk_mascotas_ FOREIGN KEY (vet_visit_id) REFERENCES public.mascotas_vetvisit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_unavailability mascotas_unavailabil_veterinarian_id_40a587d3_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_unavailability + ADD CONSTRAINT mascotas_unavailabil_veterinarian_id_40a587d3_fk_mascotas_ FOREIGN KEY (veterinarian_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_unavailability mascotas_unavailability_user_id_c8c6ead1_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_unavailability + ADD CONSTRAINT mascotas_unavailability_user_id_c8c6ead1_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_veterinariancoveragearea mascotas_veterinaria_locality_id_9be554b5_fk_common_lo; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinariancoveragearea + ADD CONSTRAINT mascotas_veterinaria_locality_id_9be554b5_fk_common_lo FOREIGN KEY (locality_id) REFERENCES public.common_locality(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_veterinarian_neighborhood mascotas_veterinaria_neighborhood_id_7e314d0f_fk_common_ne; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian_neighborhood + ADD CONSTRAINT mascotas_veterinaria_neighborhood_id_7e314d0f_fk_common_ne FOREIGN KEY (neighborhood_id) REFERENCES public.common_neighborhood(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_veterinariancoveragearea mascotas_veterinaria_province_id_9c4f285b_fk_common_pr; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinariancoveragearea + ADD CONSTRAINT mascotas_veterinaria_province_id_9c4f285b_fk_common_pr FOREIGN KEY (province_id) REFERENCES public.common_province(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_veterinarian_specialization mascotas_veterinaria_specialty_id_d9420b45_fk_common_sp; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian_specialization + ADD CONSTRAINT mascotas_veterinaria_specialty_id_d9420b45_fk_common_sp FOREIGN KEY (specialty_id) REFERENCES public.common_specialty(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_veterinariancoveragearea mascotas_veterinaria_user_id_03f8be84_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinariancoveragearea + ADD CONSTRAINT mascotas_veterinaria_user_id_03f8be84_fk_auth_user FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_veterinarian_specialization mascotas_veterinaria_veterinarian_id_39ec40da_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian_specialization + ADD CONSTRAINT mascotas_veterinaria_veterinarian_id_39ec40da_fk_mascotas_ FOREIGN KEY (veterinarian_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_veterinarian_coverage_areas mascotas_veterinaria_veterinarian_id_449036a4_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian_coverage_areas + ADD CONSTRAINT mascotas_veterinaria_veterinarian_id_449036a4_fk_mascotas_ FOREIGN KEY (veterinarian_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_veterinarian_neighborhood mascotas_veterinaria_veterinarian_id_ae73ddbc_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian_neighborhood + ADD CONSTRAINT mascotas_veterinaria_veterinarian_id_ae73ddbc_fk_mascotas_ FOREIGN KEY (veterinarian_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_veterinarian_coverage_areas mascotas_veterinaria_veterinariancoverage_ee484283_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian_coverage_areas + ADD CONSTRAINT mascotas_veterinaria_veterinariancoverage_ee484283_fk_mascotas_ FOREIGN KEY (veterinariancoveragearea_id) REFERENCES public.mascotas_veterinariancoveragearea(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_veterinarian mascotas_veterinarian_user_id_2513edbc_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_veterinarian + ADD CONSTRAINT mascotas_veterinarian_user_id_2513edbc_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisit mascotas_vetvisit_afip_receipt_id_5a769c3d_fk_afip_receipt_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit + ADD CONSTRAINT mascotas_vetvisit_afip_receipt_id_5a769c3d_fk_afip_receipt_id FOREIGN KEY (afip_receipt_id) REFERENCES public.afip_receipt(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisit mascotas_vetvisit_owner_id_01ab9bbe_fk_mascotas_petowner_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit + ADD CONSTRAINT mascotas_vetvisit_owner_id_01ab9bbe_fk_mascotas_petowner_id FOREIGN KEY (owner_id) REFERENCES public.mascotas_petowner(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisit_pets mascotas_vetvisit_pe_vetvisit_id_bf7b1efa_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit_pets + ADD CONSTRAINT mascotas_vetvisit_pe_vetvisit_id_bf7b1efa_fk_mascotas_ FOREIGN KEY (vetvisit_id) REFERENCES public.mascotas_vetvisit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisit mascotas_vetvisit_pet_id_4aa0c991_fk_mascotas_pet_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit + ADD CONSTRAINT mascotas_vetvisit_pet_id_4aa0c991_fk_mascotas_pet_id FOREIGN KEY (pet_id) REFERENCES public.mascotas_pet(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisit_pets mascotas_vetvisit_pets_pet_id_b8de2810_fk_mascotas_pet_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit_pets + ADD CONSTRAINT mascotas_vetvisit_pets_pet_id_b8de2810_fk_mascotas_pet_id FOREIGN KEY (pet_id) REFERENCES public.mascotas_pet(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisit mascotas_vetvisit_service_request_id_efa11a62_fk_solicitud; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit + ADD CONSTRAINT mascotas_vetvisit_service_request_id_efa11a62_fk_solicitud FOREIGN KEY (service_request_id) REFERENCES public.solicitudes_servicerequest(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisit mascotas_vetvisit_user_id_d997ad63_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit + ADD CONSTRAINT mascotas_vetvisit_user_id_d997ad63_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisit mascotas_vetvisit_veterinarian_id_68244937_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisit + ADD CONSTRAINT mascotas_vetvisit_veterinarian_id_68244937_fk_mascotas_ FOREIGN KEY (veterinarian_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisitfollowup mascotas_vetvisitfol_visit_id_7dcea933_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitfollowup + ADD CONSTRAINT mascotas_vetvisitfol_visit_id_7dcea933_fk_mascotas_ FOREIGN KEY (visit_id) REFERENCES public.mascotas_vetvisit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisitfollowup mascotas_vetvisitfollowup_pet_id_ab11eefe_fk_mascotas_pet_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitfollowup + ADD CONSTRAINT mascotas_vetvisitfollowup_pet_id_ab11eefe_fk_mascotas_pet_id FOREIGN KEY (pet_id) REFERENCES public.mascotas_pet(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisitfollowup mascotas_vetvisitfollowup_user_id_ee35759b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitfollowup + ADD CONSTRAINT mascotas_vetvisitfollowup_user_id_ee35759b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisitpetreason mascotas_vetvisitpet_visit_id_60ced563_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitpetreason + ADD CONSTRAINT mascotas_vetvisitpet_visit_id_60ced563_fk_mascotas_ FOREIGN KEY (visit_id) REFERENCES public.mascotas_vetvisit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisitpetreason mascotas_vetvisitpetreason_pet_id_20898cf4_fk_mascotas_pet_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitpetreason + ADD CONSTRAINT mascotas_vetvisitpetreason_pet_id_20898cf4_fk_mascotas_pet_id FOREIGN KEY (pet_id) REFERENCES public.mascotas_pet(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisitpetreason mascotas_vetvisitpetreason_user_id_dd0c6b8d_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitpetreason + ADD CONSTRAINT mascotas_vetvisitpetreason_user_id_dd0c6b8d_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisitreport mascotas_vetvisitrep_owner_id_1c9eb5b4_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitreport + ADD CONSTRAINT mascotas_vetvisitrep_owner_id_1c9eb5b4_fk_mascotas_ FOREIGN KEY (owner_id) REFERENCES public.mascotas_petowner(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisitreport mascotas_vetvisitrep_vet_id_a8555aa0_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitreport + ADD CONSTRAINT mascotas_vetvisitrep_vet_id_a8555aa0_fk_mascotas_ FOREIGN KEY (vet_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisitreport mascotas_vetvisitrep_visit_id_1cf8a1b1_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitreport + ADD CONSTRAINT mascotas_vetvisitrep_visit_id_1cf8a1b1_fk_mascotas_ FOREIGN KEY (visit_id) REFERENCES public.mascotas_vetvisit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisitreport mascotas_vetvisitreport_pet_id_4705bddc_fk_mascotas_pet_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitreport + ADD CONSTRAINT mascotas_vetvisitreport_pet_id_4705bddc_fk_mascotas_pet_id FOREIGN KEY (pet_id) REFERENCES public.mascotas_pet(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: mascotas_vetvisitreport mascotas_vetvisitreport_user_id_78338828_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.mascotas_vetvisitreport + ADD CONSTRAINT mascotas_vetvisitreport_user_id_78338828_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: payments_mercadopagonotification payments_mercadopago_user_id_cd4191f2_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.payments_mercadopagonotification + ADD CONSTRAINT payments_mercadopago_user_id_cd4191f2_fk_auth_user FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: payments_mercadopagoaccount payments_mercadopago_veterinarian_id_60c4d520_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.payments_mercadopagoaccount + ADD CONSTRAINT payments_mercadopago_veterinarian_id_60c4d520_fk_mascotas_ FOREIGN KEY (veterinarian_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: payments_mercadopagoaccount payments_mercadopagoaccount_user_id_d69fae5a_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.payments_mercadopagoaccount + ADD CONSTRAINT payments_mercadopagoaccount_user_id_d69fae5a_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_cart productos_cart_petowner_id_17265ba8_fk_mascotas_petowner_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cart + ADD CONSTRAINT productos_cart_petowner_id_17265ba8_fk_mascotas_petowner_id FOREIGN KEY (petowner_id) REFERENCES public.mascotas_petowner(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_cart productos_cart_user_id_29a2f436_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cart + ADD CONSTRAINT productos_cart_user_id_29a2f436_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_cart productos_cart_veterinarian_id_f5151a2d_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cart + ADD CONSTRAINT productos_cart_veterinarian_id_f5151a2d_fk_mascotas_ FOREIGN KEY (veterinarian_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_cartitem productos_cartitem_cart_id_1dd851c4_fk_productos_cart_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartitem + ADD CONSTRAINT productos_cartitem_cart_id_1dd851c4_fk_productos_cart_id FOREIGN KEY (cart_id) REFERENCES public.productos_cart(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_cartitem productos_cartitem_pet_id_51b94120_fk_mascotas_pet_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartitem + ADD CONSTRAINT productos_cartitem_pet_id_51b94120_fk_mascotas_pet_id FOREIGN KEY (pet_id) REFERENCES public.mascotas_pet(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_cartitem productos_cartitem_service_id_f66feceb_fk_productos_service_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartitem + ADD CONSTRAINT productos_cartitem_service_id_f66feceb_fk_productos_service_id FOREIGN KEY (service_id) REFERENCES public.productos_service(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_cartitem productos_cartitem_user_id_6ee43726_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartitem + ADD CONSTRAINT productos_cartitem_user_id_6ee43726_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_cartpetreason productos_cartpetreason_cart_id_f8ecb6a7_fk_productos_cart_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartpetreason + ADD CONSTRAINT productos_cartpetreason_cart_id_f8ecb6a7_fk_productos_cart_id FOREIGN KEY (cart_id) REFERENCES public.productos_cart(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_cartpetreason productos_cartpetreason_pet_id_f76ce088_fk_mascotas_pet_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartpetreason + ADD CONSTRAINT productos_cartpetreason_pet_id_f76ce088_fk_mascotas_pet_id FOREIGN KEY (pet_id) REFERENCES public.mascotas_pet(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_cartpetreason productos_cartpetreason_user_id_d4eba506_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartpetreason + ADD CONSTRAINT productos_cartpetreason_user_id_d4eba506_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_cartresumeitem productos_cartresumeitem_cart_id_325cd39b_fk_productos_cart_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartresumeitem + ADD CONSTRAINT productos_cartresumeitem_cart_id_325cd39b_fk_productos_cart_id FOREIGN KEY (cart_id) REFERENCES public.productos_cart(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_cartresumeitem productos_cartresumeitem_user_id_d28b9f71_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_cartresumeitem + ADD CONSTRAINT productos_cartresumeitem_user_id_d28b9f71_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_category productos_category_group_id_394f5a13_fk_productos_group_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_category + ADD CONSTRAINT productos_category_group_id_394f5a13_fk_productos_group_id FOREIGN KEY (group_id) REFERENCES public.productos_group(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_category productos_category_user_id_185f4c0e_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_category + ADD CONSTRAINT productos_category_user_id_185f4c0e_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_categoryservice productos_categoryse_category_id_ed33217e_fk_productos; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_categoryservice + ADD CONSTRAINT productos_categoryse_category_id_ed33217e_fk_productos FOREIGN KEY (category_id) REFERENCES public.productos_category(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_categoryservice productos_categoryse_service_id_54081886_fk_productos; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_categoryservice + ADD CONSTRAINT productos_categoryse_service_id_54081886_fk_productos FOREIGN KEY (service_id) REFERENCES public.productos_service(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_categoryservice productos_categoryservice_user_id_28227975_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_categoryservice + ADD CONSTRAINT productos_categoryservice_user_id_28227975_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_discounts productos_discounts_service_id_9006355a_fk_productos_service_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_discounts + ADD CONSTRAINT productos_discounts_service_id_9006355a_fk_productos_service_id FOREIGN KEY (service_id) REFERENCES public.productos_service(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_discounts productos_discounts_user_id_45499d97_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_discounts + ADD CONSTRAINT productos_discounts_user_id_45499d97_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_group productos_group_user_id_d1a81355_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_group + ADD CONSTRAINT productos_group_user_id_d1a81355_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_prices productos_prices_service_id_520c8547_fk_productos_service_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_prices + ADD CONSTRAINT productos_prices_service_id_520c8547_fk_productos_service_id FOREIGN KEY (service_id) REFERENCES public.productos_service(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_prices productos_prices_user_id_f4a7cb39_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_prices + ADD CONSTRAINT productos_prices_user_id_f4a7cb39_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_prices productos_prices_veterinarian_id_a2d705b2_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_prices + ADD CONSTRAINT productos_prices_veterinarian_id_a2d705b2_fk_mascotas_ FOREIGN KEY (veterinarian_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_service productos_service_category_id_2f6c75f8_fk_productos_category_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_service + ADD CONSTRAINT productos_service_category_id_2f6c75f8_fk_productos_category_id FOREIGN KEY (category_id) REFERENCES public.productos_category(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_service productos_service_speciality_id_fcf88d81_fk_common_specialty_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_service + ADD CONSTRAINT productos_service_speciality_id_fcf88d81_fk_common_specialty_id FOREIGN KEY (speciality_id) REFERENCES public.common_specialty(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_service productos_service_user_id_5c4d0af4_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_service + ADD CONSTRAINT productos_service_user_id_5c4d0af4_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_servicecomboitem productos_servicecom_category_id_ba983d5e_fk_productos; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_servicecomboitem + ADD CONSTRAINT productos_servicecom_category_id_ba983d5e_fk_productos FOREIGN KEY (category_id) REFERENCES public.productos_category(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_servicecomboitem productos_servicecom_combo_id_2a1537cc_fk_productos; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_servicecomboitem + ADD CONSTRAINT productos_servicecom_combo_id_2a1537cc_fk_productos FOREIGN KEY (combo_id) REFERENCES public.productos_servicecombo(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_servicecomboitem productos_servicecom_service_id_e956d6a5_fk_productos; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_servicecomboitem + ADD CONSTRAINT productos_servicecom_service_id_e956d6a5_fk_productos FOREIGN KEY (service_id) REFERENCES public.productos_service(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_servicecombo productos_servicecombo_user_id_89889500_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_servicecombo + ADD CONSTRAINT productos_servicecombo_user_id_89889500_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: productos_servicecomboitem productos_servicecomboitem_user_id_1fcca42f_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.productos_servicecomboitem + ADD CONSTRAINT productos_servicecomboitem_user_id_1fcca42f_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_paymentreminder solicitudes_paymentr_service_request_id_96b7dc5a_fk_solicitud; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_paymentreminder + ADD CONSTRAINT solicitudes_paymentr_service_request_id_96b7dc5a_fk_solicitud FOREIGN KEY (service_request_id) REFERENCES public.solicitudes_servicerequest(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_paymentreminder solicitudes_paymentreminder_user_id_2a1abe4e_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_paymentreminder + ADD CONSTRAINT solicitudes_paymentreminder_user_id_2a1abe4e_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_scheduledveterinarianreminder solicitudes_schedule_user_id_c4f5c13f_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_scheduledveterinarianreminder + ADD CONSTRAINT solicitudes_schedule_user_id_c4f5c13f_fk_auth_user FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_scheduledveterinarianreminder solicitudes_schedule_veterinarian_asked_i_1455e6a5_fk_solicitud; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_scheduledveterinarianreminder + ADD CONSTRAINT solicitudes_schedule_veterinarian_asked_i_1455e6a5_fk_solicitud FOREIGN KEY (veterinarian_asked_id) REFERENCES public.solicitudes_veterinarianasked(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_servicerequest solicitudes_servicer_attended_by_id_b3adc112_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequest + ADD CONSTRAINT solicitudes_servicer_attended_by_id_b3adc112_fk_auth_user FOREIGN KEY (attended_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_servicerequest solicitudes_servicer_campaign_id_b1ebe927_fk_common_ca; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequest + ADD CONSTRAINT solicitudes_servicer_campaign_id_b1ebe927_fk_common_ca FOREIGN KEY (campaign_id) REFERENCES public.common_campaign(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_servicerequest solicitudes_servicer_cart_id_e64f1f7f_fk_productos; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequest + ADD CONSTRAINT solicitudes_servicer_cart_id_e64f1f7f_fk_productos FOREIGN KEY (cart_id) REFERENCES public.productos_cart(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_servicerequest solicitudes_servicer_petowner_id_caba92e2_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequest + ADD CONSTRAINT solicitudes_servicer_petowner_id_caba92e2_fk_mascotas_ FOREIGN KEY (petowner_id) REFERENCES public.mascotas_petowner(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_servicerequeststatehistory solicitudes_servicer_service_request_id_1f346f63_fk_solicitud; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequeststatehistory + ADD CONSTRAINT solicitudes_servicer_service_request_id_1f346f63_fk_solicitud FOREIGN KEY (service_request_id) REFERENCES public.solicitudes_servicerequest(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_servicerequest_tags solicitudes_servicer_servicerequest_id_22006a8d_fk_solicitud; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequest_tags + ADD CONSTRAINT solicitudes_servicer_servicerequest_id_22006a8d_fk_solicitud FOREIGN KEY (servicerequest_id) REFERENCES public.solicitudes_servicerequest(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_servicerequest_tags solicitudes_servicer_tag_id_7137f3b2_fk_common_ta; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequest_tags + ADD CONSTRAINT solicitudes_servicer_tag_id_7137f3b2_fk_common_ta FOREIGN KEY (tag_id) REFERENCES public.common_tag(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_servicerequeststatehistory solicitudes_servicer_user_id_27af1f31_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequeststatehistory + ADD CONSTRAINT solicitudes_servicer_user_id_27af1f31_fk_auth_user FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_servicerequest solicitudes_servicer_veterinarian_id_f1971af2_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequest + ADD CONSTRAINT solicitudes_servicer_veterinarian_id_f1971af2_fk_mascotas_ FOREIGN KEY (veterinarian_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_servicerequest solicitudes_servicerequest_user_id_a51ceaad_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_servicerequest + ADD CONSTRAINT solicitudes_servicerequest_user_id_a51ceaad_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_veterinarianasked solicitudes_veterina_service_request_id_9215ee9e_fk_solicitud; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_veterinarianasked + ADD CONSTRAINT solicitudes_veterina_service_request_id_9215ee9e_fk_solicitud FOREIGN KEY (service_request_id) REFERENCES public.solicitudes_servicerequest(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: solicitudes_veterinarianasked solicitudes_veterina_veterinarian_id_97950454_fk_mascotas_; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.solicitudes_veterinarianasked + ADD CONSTRAINT solicitudes_veterina_veterinarian_id_97950454_fk_mascotas_ FOREIGN KEY (veterinarian_id) REFERENCES public.mascotas_veterinarian(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: storage_filestorage storage_filestorage_content_type_id_f3950634_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.storage_filestorage + ADD CONSTRAINT storage_filestorage_content_type_id_f3950634_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: storage_filestorage storage_filestorage_user_id_2588dce9_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: mariano +-- + +ALTER TABLE ONLY public.storage_filestorage + ADD CONSTRAINT storage_filestorage_user_id_2588dce9_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: SCHEMA public; Type: ACL; Schema: -; Owner: postgres +-- + +REVOKE USAGE ON SCHEMA public FROM PUBLIC; +GRANT ALL ON SCHEMA public TO PUBLIC; + + +-- +-- PostgreSQL database dump complete +-- + + diff --git a/cfg/amar/soleprint/.env b/cfg/amar/soleprint/.env new file mode 100644 index 0000000..5436253 --- /dev/null +++ b/cfg/amar/soleprint/.env @@ -0,0 +1,35 @@ +# ============================================================================= +# SOLEPRINT - Amar Room Configuration +# ============================================================================= + +# ============================================================================= +# DEPLOYMENT +# ============================================================================= +DEPLOYMENT_NAME=amar_soleprint + +# ============================================================================= +# NETWORK (shared with amar) +# ============================================================================= +NETWORK_NAME=soleprint_network + +# ============================================================================= +# PATHS +# ============================================================================= +SOLEPRINT_BARE_PATH=/home/mariano/wdir/spr/gen + +# ============================================================================= +# PORTS +# ============================================================================= +SOLEPRINT_PORT=12000 +ARTERY_PORT=12001 +ATLAS_PORT=12002 +STATION_PORT=12003 + +# ============================================================================= +# DATABASE (amar's DB for station tools) +# ============================================================================= +DB_HOST=amar_db +DB_PORT=5432 +DB_NAME=amarback +DB_USER=postgres +DB_PASSWORD=localdev123 diff --git a/cfg/amar/soleprint/docker-compose.yml b/cfg/amar/soleprint/docker-compose.yml new file mode 100644 index 0000000..645d49b --- /dev/null +++ b/cfg/amar/soleprint/docker-compose.yml @@ -0,0 +1,34 @@ +# Soleprint Services - Docker Compose +# +# Runs soleprint hub as a single service +# Artery, atlas, station are accessed via path-based routing +# +# Usage: +# cd mainroom/soleprint && docker compose up -d + +services: + soleprint: + build: + context: ${SOLEPRINT_BARE_PATH} + dockerfile: Dockerfile + container_name: ${DEPLOYMENT_NAME}_soleprint + volumes: + - ${SOLEPRINT_BARE_PATH}:/app + ports: + - "${SOLEPRINT_PORT}:8000" + env_file: + - .env + environment: + # For single-port mode, all subsystems are internal routes + - ARTERY_EXTERNAL_URL=/artery + - ATLAS_EXTERNAL_URL=/atlas + - STATION_EXTERNAL_URL=/station + networks: + - default + # Use run.py for single-port bare-metal mode + command: uvicorn run:app --host 0.0.0.0 --port 8000 --reload + +networks: + default: + external: true + name: ${NETWORK_NAME} diff --git a/mainroom/soleprint/.env b/mainroom/soleprint/.env index 6b945ac..bb3ba23 100644 --- a/mainroom/soleprint/.env +++ b/mainroom/soleprint/.env @@ -11,7 +11,7 @@ NETWORK_NAME=soleprint_network # PATHS # ============================================================================= # Path to generated soleprint (gen/ folder) -SOLEPRINT_BARE_PATH=/tmp/soleprint-deploy +SOLEPRINT_BARE_PATH=/home/mariano/wdir/spr/gen # ============================================================================= # PORTS @@ -25,6 +25,7 @@ STATION_PORT=12003 # DATABASE (for station tools that need DB access) # ============================================================================= # These are passed to station container when orchestrated with managed room +# Leave empty for standalone soleprint; set in room config (e.g., cfg/amar/) DB_HOST= DB_PORT=5432 DB_NAME= diff --git a/mainroom/soleprint/ctrl/README.md b/mainroom/soleprint/ctrl/README.md deleted file mode 100644 index ff4a7eb..0000000 --- a/mainroom/soleprint/ctrl/README.md +++ /dev/null @@ -1,157 +0,0 @@ -# Soleprint Control Scripts - -Control scripts for managing soleprint services via systemd (alternative to Docker deployment). - -## Structure - -``` -ctrl/ -├── .env.soleprint # Shared configuration -├── local/ # Scripts run from developer machine -│ ├── commit.sh # Commit changes across all repos -│ ├── deploy.sh # Full deployment workflow -│ ├── init.sh # Initial sync to server -│ ├── push.sh # Deploy to server (all by default) -│ └── status.sh # Git status of all repos -└── server/ # Scripts run on server - ├── install-deps.sh # Install Python deps (all by default) - ├── restart.sh # Restart services (all by default) - ├── setup-cert.sh # Setup SSL certificate - ├── setup-nginx.sh # Create nginx config - └── setup-service.sh # Create systemd service -``` - -## Configuration - -Edit `.env.soleprint` to configure: - -```bash -# Deployment -DEPLOY_SERVER=mariano@mcrn.ar -DEPLOY_REMOTE_PATH=~/soleprint - -# Local paths -SOLEPRINT_BARE_PATH=/home/mariano/soleprint - -# Server paths -SERVER_USER=mariano -SERVER_SOLEPRINT_PATH=/home/mariano/soleprint -SERVER_VENV_BASE=/home/mariano/venvs -``` - -## Design Principle - -**All services are the default.** No flags needed for common operations. - -```bash -./push.sh # Deploys all (default) -./push.sh artery # Deploy only artery (when needed) -``` - -See `DESIGN_SOLEPRINT.md` for detailed philosophy. - -## Local Scripts - -### commit.sh -```bash -./local/commit.sh "Your commit message" -``` - -### status.sh -```bash -./local/status.sh -``` - -### push.sh -```bash -./local/push.sh # Push all services (default) -./local/push.sh artery # Push only artery -``` - -### deploy.sh -```bash -./local/deploy.sh -# Then restart on server: -# ssh mariano@mcrn.ar 'bash ~/soleprint/ctrl/server/restart.sh' -``` - -### init.sh -```bash -./local/init.sh # Initial full sync (run once) -``` - -## Server Scripts - -### restart.sh -```bash -sudo ./server/restart.sh # Restart all (default) -sudo ./server/restart.sh artery # Restart only artery -``` - -### install-deps.sh -```bash -./server/install-deps.sh # Install all (default) -./server/install-deps.sh artery # Install only artery -``` - -### setup-service.sh -```bash -sudo ./server/setup-service.sh soleprint 12000 main:app -sudo ./server/setup-service.sh artery 12001 main:app -``` - -### setup-nginx.sh -```bash -sudo ./server/setup-nginx.sh artery artery.mcrn.ar 12001 -``` - -### setup-cert.sh -```bash -sudo ./server/setup-cert.sh artery.mcrn.ar -``` - -## Deployment Workflow - -### Initial Setup (once) - -Local: -```bash -cd ctrl/local -./init.sh -``` - -Server: -```bash -cd ~/soleprint/ctrl/server -./install-deps.sh -sudo ./setup-service.sh soleprint 12000 main:app -sudo ./setup-service.sh artery 12001 main:app -sudo ./setup-service.sh album 12002 main:app -sudo ./setup-service.sh ward 12003 main:app -sudo ./setup-nginx.sh soleprint soleprint.mcrn.ar 12000 -sudo ./setup-nginx.sh artery artery.mcrn.ar 12001 -sudo ./setup-nginx.sh album album.mcrn.ar 12002 -sudo ./setup-nginx.sh ward ward.mcrn.ar 12003 -``` - -### Regular Updates - -Local: -```bash -cd ctrl/local -./commit.sh "Update feature X" -./deploy.sh -``` - -Server: -```bash -sudo ~/soleprint/ctrl/server/restart.sh -``` - -## Room vs Soleprint Control - -- **core_room/ctrl/** - Manages full room (amar + soleprint) via Docker -- **soleprint/ctrl/** - Manages soleprint services via systemd - -This directory provides systemd-based deployment as an alternative to Docker. -For full room orchestration with Docker, use `core_room/ctrl/`. diff --git a/mainroom/soleprint/ctrl/local/commit.sh b/mainroom/soleprint/ctrl/local/commit.sh deleted file mode 100755 index ff553cf..0000000 --- a/mainroom/soleprint/ctrl/local/commit.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash -# Commit changes across all repos with the same message -# Usage: ./commit.sh "commit message" - -set -e - -MSG="${1:?Usage: $0 \"commit message\"}" - -# Find soleprint bare metal directory from SOLEPRINT_BARE_PATH or default -SOLEPRINT_DIR="${SOLEPRINT_BARE_PATH:-/home/mariano/soleprint}" -REPOS=("$SOLEPRINT_DIR" "$SOLEPRINT_DIR/artery" "$SOLEPRINT_DIR/album" "$SOLEPRINT_DIR/ward") - -for repo in "${REPOS[@]}"; do - name=$(basename "$repo") - [ "$repo" = "$SOLEPRINT_DIR" ] && name="soleprint" - - if [ ! -d "$repo/.git" ]; then - echo "=== $name: not a git repo, skipping ===" - continue - fi - - cd "$repo" - - if git diff --quiet && git diff --cached --quiet && [ -z "$(git ls-files --others --exclude-standard)" ]; then - echo "=== $name: nothing to commit ===" - continue - fi - - echo "=== $name ===" - git add -A - git commit -m "$MSG" -done - -echo "Done!" diff --git a/mainroom/soleprint/ctrl/local/deploy.sh b/mainroom/soleprint/ctrl/local/deploy.sh deleted file mode 100755 index e386060..0000000 --- a/mainroom/soleprint/ctrl/local/deploy.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash -# Push all to server (run locally) -# Usage: ./deploy.sh -# Then run restart on server as admin - -set -e - -SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" -CTRL_DIR="$(cd "$SCRIPT_DIR/../.." && pwd)" - -# Load configuration -source "$CTRL_DIR/.env.soleprint" 2>/dev/null || true -REMOTE="${DEPLOY_SERVER:-mariano@mcrn.ar}" - -echo "=== Pushing all ===" -"$SCRIPT_DIR/push.sh" - -echo "" -echo "=== Push complete ===" -echo "Now restart services on server:" -echo " ssh $REMOTE 'sudo systemctl restart soleprint artery atlas station'" -echo "" -echo "# Or restart specific service:" -echo "# ssh $REMOTE 'sudo systemctl restart artery'" diff --git a/mainroom/soleprint/ctrl/local/init.sh b/mainroom/soleprint/ctrl/local/init.sh deleted file mode 100755 index 9d469eb..0000000 --- a/mainroom/soleprint/ctrl/local/init.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -# Initial full sync of soleprint to server -# Run once to setup, then use push.sh for updates - -set -e - -# Load configuration -CTRL_DIR="$(cd "$(dirname "$0")/../.." SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" pwd)" -source "$CTRL_DIR/.env.soleprint" 2>/dev/null || true - -SOLEPRINT_DIR="${SOLEPRINT_BARE_PATH:-/home/mariano/soleprint}" -REMOTE="${DEPLOY_SERVER:-mariano@mcrn.ar}" -REMOTE_DIR="${DEPLOY_REMOTE_PATH:-~/soleprint}" - -echo "=== Initial sync of soleprint ===" -echo "From: $SOLEPRINT_DIR" -echo "To: $REMOTE:$REMOTE_DIR" - -rsync -avz \ - --filter=':- .gitignore' \ - --exclude '.git' \ - --exclude '.env' \ - "$SOLEPRINT_DIR/" "$REMOTE:$REMOTE_DIR/" - -echo "" -echo "Done! Now on server run:" -echo " cd ~/soleprint" -echo " # Use core_room/soleprint/tools/server/setup-*.sh scripts for initial setup" diff --git a/mainroom/soleprint/ctrl/local/push.sh b/mainroom/soleprint/ctrl/local/push.sh deleted file mode 100755 index 89921a9..0000000 --- a/mainroom/soleprint/ctrl/local/push.sh +++ /dev/null @@ -1,66 +0,0 @@ -#!/bin/bash -# Deploy repos via rsync -# Usage: ./push.sh [target] -# Example: ./push.sh (deploys all: soleprint, artery, atlas, station) -# ./push.sh artery (deploys only artery) -# ./push.sh soleprint (deploys only soleprint root, no sub-repos) - -set -e - -TARGET="${1:-all}" - -# Load configuration -SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" -CTRL_DIR="$(cd "$SCRIPT_DIR/../.." && pwd)" -source "$CTRL_DIR/.env.soleprint" 2>/dev/null || true - -SOLEPRINT_DIR="${SOLEPRINT_BARE_PATH:-/home/mariano/wdir/spr/gen}" -REMOTE="${DEPLOY_SERVER:-mariano@mcrn.ar}" -REMOTE_BASE="${DEPLOY_REMOTE_PATH:-~/soleprint}" - -# Handle all (default) -if [ "$TARGET" = "all" ]; then - echo "=== Deploying all services ===" - for target in soleprint artery atlas station; do - "$0" "$target" - echo "" - done - echo "=== All done ===" - exit 0 -fi - -if [ "$TARGET" = "soleprint" ]; then - # Push only root files (no sub-repos) - echo "=== Deploying soleprint (root only) ===" - rsync -avz \ - --filter=':- .gitignore' \ - --exclude '.git' \ - --exclude '.env' \ - --exclude '.venv' \ - --exclude 'artery/' \ - --exclude 'atlas/' \ - --exclude 'station/' \ - "$SOLEPRINT_DIR/" "$REMOTE:$REMOTE_BASE/" - echo "Done!" - exit 0 -fi - -LOCAL_DIR="$SOLEPRINT_DIR/$TARGET" -REMOTE_DIR="$REMOTE_BASE/$TARGET" - -if [ ! -d "$LOCAL_DIR" ]; then - echo "Error: $LOCAL_DIR does not exist" - exit 1 -fi - -echo "=== Deploying $TARGET ===" -echo "From: $LOCAL_DIR" -echo "To: $REMOTE:$REMOTE_DIR" - -rsync -avz \ - --filter=':- .gitignore' \ - --exclude '.git' \ - --exclude '.env' \ - "$LOCAL_DIR/" "$REMOTE:$REMOTE_DIR/" - -echo "Done!" diff --git a/mainroom/soleprint/ctrl/local/status.sh b/mainroom/soleprint/ctrl/local/status.sh deleted file mode 100755 index 8b9483a..0000000 --- a/mainroom/soleprint/ctrl/local/status.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash -# Show git status of all repos -# Usage: ./status.sh - -# Find soleprint bare metal directory from SOLEPRINT_BARE_PATH or default -SOLEPRINT_DIR="${SOLEPRINT_BARE_PATH:-/home/mariano/soleprint}" -REPOS=("$SOLEPRINT_DIR" "$SOLEPRINT_DIR/artery" "$SOLEPRINT_DIR/album" "$SOLEPRINT_DIR/ward") - -for repo in "${REPOS[@]}"; do - name=$(basename "$repo") - [ "$repo" = "$SOLEPRINT_DIR" ] && name="soleprint" - - if [ ! -d "$repo/.git" ]; then - echo "=== $name: not a git repo ===" - continue - fi - - cd "$repo" - branch=$(git branch --show-current) - - # Check for changes - staged=$(git diff --cached --numstat | wc -l) - unstaged=$(git diff --numstat | wc -l) - untracked=$(git ls-files --others --exclude-standard | wc -l) - - if [ "$staged" -eq 0 ] && [ "$unstaged" -eq 0 ] && [ "$untracked" -eq 0 ]; then - echo "=== $name ($branch): clean ===" - else - echo "=== $name ($branch): +$staged staged, ~$unstaged modified, ?$untracked untracked ===" - git status --short - fi - echo -done diff --git a/mainroom/soleprint/ctrl/server/install-deps.sh b/mainroom/soleprint/ctrl/server/install-deps.sh deleted file mode 100755 index 62100c9..0000000 --- a/mainroom/soleprint/ctrl/server/install-deps.sh +++ /dev/null @@ -1,55 +0,0 @@ -#!/bin/bash -# Install/update dependencies for apps -# Usage: ./install-deps.sh [app-name] -# Example: ./install-deps.sh (installs deps for all services) -# ./install-deps.sh artery (installs deps for artery only) - -set -e - -APP_NAME="${1:-all}" - -# Load configuration -CTRL_DIR="$(cd "$(dirname "$0")/../.." SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" pwd)" -source "$CTRL_DIR/.env.soleprint" 2>/dev/null || true - -APP_USER="${SERVER_USER:-mariano}" -SOLEPRINT_PATH="${SERVER_SOLEPRINT_PATH:-/home/mariano/soleprint}" -VENV_BASE="${SERVER_VENV_BASE:-/home/mariano/venvs}" - -# Handle all (default) -if [ "$APP_NAME" = "all" ]; then - echo "=== Installing deps for all services ===" - for app in soleprint artery album ward; do - echo "" - echo "--- $app ---" - "$0" "$app" - done - echo "" - echo "=== All done ===" - exit 0 -fi - -VENV_DIR="$VENV_BASE/$APP_NAME" - -if [ "$APP_NAME" = "soleprint" ]; then - REQ_FILE="$SOLEPRINT_PATH/requirements.txt" -else - REQ_FILE="$SOLEPRINT_PATH/$APP_NAME/requirements.txt" -fi - -if [ ! -f "$REQ_FILE" ]; then - echo "Error: $REQ_FILE not found" - exit 1 -fi - -if [ ! -d "$VENV_DIR" ]; then - echo "Creating venv: $VENV_DIR" - python3 -m venv "$VENV_DIR" -fi - -echo "Installing deps from $REQ_FILE" -source "$VENV_DIR/bin/activate" -pip install -r "$REQ_FILE" -deactivate - -echo "Done!" diff --git a/mainroom/soleprint/ctrl/server/restart.sh b/mainroom/soleprint/ctrl/server/restart.sh deleted file mode 100755 index d742174..0000000 --- a/mainroom/soleprint/ctrl/server/restart.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash -# Restart soleprint services -# Usage: ./restart.sh [service] -# Example: ./restart.sh (restarts all services) -# ./restart.sh artery (restarts only artery) - -set -e - -TARGET="${1:-all}" - -# Handle all (default) -if [ "$TARGET" = "all" ]; then - echo "Restarting all services..." - systemctl restart soleprint artery album ward - echo "Status:" - systemctl status soleprint artery album ward --no-pager | grep -E "●|Active:" - exit 0 -fi - -echo "Restarting $TARGET..." -systemctl restart "$TARGET" - -echo "Status:" -systemctl status "$TARGET" --no-pager | grep -E "●|Active:" diff --git a/mainroom/soleprint/ctrl/server/setup-cert.sh b/mainroom/soleprint/ctrl/server/setup-cert.sh deleted file mode 100755 index a7533cf..0000000 --- a/mainroom/soleprint/ctrl/server/setup-cert.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash -# Install/update SSL certificate for a subdomain -# Usage: ./setup-cert.sh -# Example: ./setup-cert.sh soleprint.mcrn.ar - -set -e - -SUBDOMAIN="${1:?Usage: $0 }" - -echo "=== Setting up SSL cert for $SUBDOMAIN ===" - -# Check if certbot is installed -if ! command -v certbot &> /dev/null; then - echo "Installing certbot..." - apt update - apt install -y certbot python3-certbot-nginx -fi - -# Get/renew certificate -certbot --nginx -d "$SUBDOMAIN" --non-interactive --agree-tos --register-unsafely-without-email - -echo "" -echo "Done! Certificate installed for $SUBDOMAIN" -echo "Auto-renewal is enabled via systemd timer" diff --git a/mainroom/soleprint/ctrl/server/setup-nginx.sh b/mainroom/soleprint/ctrl/server/setup-nginx.sh deleted file mode 100755 index 0cddf2e..0000000 --- a/mainroom/soleprint/ctrl/server/setup-nginx.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/bash -# Creates nginx config for FastAPI app -# Usage: ./setup-nginx.sh -# Example: ./setup-nginx.sh artery artery.mcrn.ar 12001 - -set -e - -APP_NAME="${1:?Usage: $0 }" -SUBDOMAIN="${2:?Usage: $0 }" -PORT="${3:?Usage: $0 }" - -NGINX_CONF="/etc/nginx/sites-available/$APP_NAME" - -echo "Creating nginx config: $NGINX_CONF" - -sudo tee "$NGINX_CONF" > /dev/null << EOF -server { - listen 80; - server_name $SUBDOMAIN; - return 301 https://\$host\$request_uri; -} - -server { - listen 443 ssl; - server_name $SUBDOMAIN; - - ssl_certificate /etc/letsencrypt/live/mcrn.ar/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/mcrn.ar/privkey.pem; - include /etc/letsencrypt/options-ssl-nginx.conf; - ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; - - location / { - proxy_pass http://127.0.0.1:$PORT; - proxy_set_header Host \$host; - proxy_set_header X-Real-IP \$remote_addr; - proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto \$scheme; - proxy_read_timeout 300; - } -} -EOF - -echo "Enabling site..." -sudo ln -sf "$NGINX_CONF" /etc/nginx/sites-enabled/ - -echo "Testing nginx config..." -sudo nginx -t - -echo "Reloading nginx..." -sudo systemctl reload nginx - -echo "" -echo "Done! Site available at https://$SUBDOMAIN" -echo "Note: Make sure DNS points $SUBDOMAIN to this server" diff --git a/mainroom/soleprint/ctrl/server/setup-service.sh b/mainroom/soleprint/ctrl/server/setup-service.sh deleted file mode 100755 index 957e390..0000000 --- a/mainroom/soleprint/ctrl/server/setup-service.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/bash -# Creates systemd service for FastAPI app -# Usage: ./setup-service.sh -# Example: ./setup-service.sh artery 12001 main:app - -set -e - -APP_NAME="${1:?Usage: $0 }" -PORT="${2:?Usage: $0 }" -APP_MODULE="${3:-main:app}" - -APP_USER="mariano" -VENV_DIR="/home/$APP_USER/venvs/$APP_NAME" - -# soleprint root is special case -if [ "$APP_NAME" = "soleprint" ]; then - WORK_DIR="/home/$APP_USER/soleprint" -else - WORK_DIR="/home/$APP_USER/soleprint/$APP_NAME" -fi -SERVICE_FILE="/etc/systemd/system/${APP_NAME}.service" - -echo "Creating systemd service: $SERVICE_FILE" - -sudo tee "$SERVICE_FILE" > /dev/null << EOF -[Unit] -Description=$APP_NAME FastAPI service -After=network.target - -[Service] -User=$APP_USER -Group=$APP_USER -WorkingDirectory=$WORK_DIR -Environment="PATH=$VENV_DIR/bin" -EnvironmentFile=$SOLEPRINT_PATH/.env -ExecStart=$VENV_DIR/bin/uvicorn $APP_MODULE --host 127.0.0.1 --port $PORT -Restart=always -RestartSec=5 - -[Install] -WantedBy=multi-user.target -EOF - -echo "Reloading systemd..." -sudo systemctl daemon-reload - -echo "Enabling service..." -sudo systemctl enable "$APP_NAME" - -echo "" -echo "Done! Service commands:" -echo " sudo systemctl start $APP_NAME" -echo " sudo systemctl status $APP_NAME" -echo " sudo journalctl -u $APP_NAME -f" diff --git a/mainroom/soleprint/ctrl/sync-tests.sh b/mainroom/soleprint/ctrl/sync-tests.sh deleted file mode 100755 index 6ea1893..0000000 --- a/mainroom/soleprint/ctrl/sync-tests.sh +++ /dev/null @@ -1,82 +0,0 @@ -#!/bin/bash -# -# Sync contract tests from amar_django_back_contracts to ward/tools/tester -# -# Usage: ./sync-tests.sh - -set -e - -# Paths -SOURCE_REPO="/home/mariano/wdir/ama/amar_django_back_contracts" -DEST_DIR="/home/mariano/wdir/ama/soleprint/ward/tools/tester/tests" - -# Colors -GREEN='\033[0;32m' -BLUE='\033[0;34m' -NC='\033[0m' # No Color - -echo -e "${BLUE}=== Syncing Contract Tests ===${NC}" -echo "Source: $SOURCE_REPO/tests/contracts" -echo "Dest: $DEST_DIR" -echo - -# Check source exists -if [ ! -d "$SOURCE_REPO/tests/contracts" ]; then - echo "Error: Source directory not found: $SOURCE_REPO/tests/contracts" - exit 1 -fi - -# Create destination if it doesn't exist -mkdir -p "$DEST_DIR" - -# Sync test files (preserve structure) -echo -e "${BLUE}Copying test files...${NC}" - -# Copy the contract test structure -rsync -av --delete \ - --include="*/" \ - --include="test_*.py" \ - --include="__init__.py" \ - --include="base*.py" \ - --include="conftest.py" \ - --include="endpoints.py" \ - --include="helpers.py" \ - --exclude="*" \ - "$SOURCE_REPO/tests/contracts/" \ - "$DEST_DIR/" - -# Remove base_api.py and base_live.py (we only need pure HTTP base.py) -rm -f "$DEST_DIR/base_api.py" "$DEST_DIR/base_live.py" - -# Create a simple base.py that uses tester's base class -cat > "$DEST_DIR/base.py" << 'EOF' -""" -Contract Tests - Base Class - -Uses tester's HTTP base class for framework-agnostic testing. -""" - -# Import from tester's base -import sys -from pathlib import Path - -# Add tester to path if needed -tester_path = Path(__file__).parent.parent -if str(tester_path) not in sys.path: - sys.path.insert(0, str(tester_path)) - -from base import ContractTestCase - -__all__ = ["ContractTestCase"] -EOF - -echo -echo -e "${GREEN}✓ Tests synced successfully${NC}" -echo -echo "Test structure:" -find "$DEST_DIR" -name "test_*.py" -type f | sed 's|'"$DEST_DIR"'||' | sort - -echo -echo -e "${BLUE}Next steps:${NC}" -echo "1. Run tester locally: cd /home/mariano/wdir/ama/soleprint/ward && python -m tools.tester" -echo "2. Deploy to server: cd /home/mariano/wdir/ama/soleprint/deploy && ./deploy.sh"